From 06485f071a19bac0d534705cf43502fd26d997d4 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Tue, 21 Nov 2017 15:44:43 +0000 Subject: [PATCH 01/14] iandroid --- C/c_interface.c | 31 ++- C/text.c | 38 +-- C/yap-args.c | 6 +- CMakeLists.txt | 25 +- CXX/yapi.cpp | 20 +- CXX/yapq.hh | 25 +- CXX/yapt.hh | 18 +- H/YapText.h | 35 ++- H/Yapproto.h | 3 +- cmake/FindGMP.cmake | 29 ++- include/VFS.h | 27 +- include/YapDefs.h | 9 + library/CMakeLists.txt | 10 +- os/assets.c | 150 +++++------ os/charsio.c | 2 +- os/files.c | 1 + os/iopreds.c | 27 +- os/iopreds.h | 2 +- os/mem.c | 9 +- os/sysbits.c | 18 +- os/yapio.h | 8 +- packages/CLPBN/clpbn/horus.yap | 2 +- packages/CLPBN/horus/CMakeLists.txt | 2 +- packages/bdd/CMakeLists.txt | 4 +- packages/bdd/bdd.yap | 2 +- packages/myddas/pl/CMakeLists.txt | 19 +- packages/myddas/pl/myddas_driver.ypp | 6 +- packages/myddas/sqlite3/CMakeLists.txt | 1 - packages/swig/android/CMakeLists.txt | 109 ++++---- packages/swig/yap.i | 341 +------------------------ pl/CMakeLists.txt | 10 +- 31 files changed, 357 insertions(+), 632 deletions(-) diff --git a/C/c_interface.c b/C/c_interface.c index bcab3a4b5..01cd34c3a 100755 --- a/C/c_interface.c +++ b/C/c_interface.c @@ -2304,21 +2304,23 @@ X_API char *YAP_CompileClause(Term t) { static int yap_lineno = 0; /* do initial boot by consulting the file boot.yap */ -static void do_bootfile(const char *bootfilename USES_REGS) { +static void do_bootfile(const char *b_file USES_REGS) { Term t; int bootfile, osno; Functor functor_query = Yap_MkFunctor(Yap_LookupAtom("?-"), 1); Functor functor_command1 = Yap_MkFunctor(Yap_LookupAtom(":-"), 1); - char full[YAP_FILENAME_MAX + 1]; /* consult boot.pl */ + char *full = malloc(YAP_FILENAME_MAX + 1); + full[0] = '\0'; /* the consult mode does not matter here, really */ - bootfile = YAP_InitConsult(YAP_BOOT_MODE, bootfilename, full, &osno); + bootfile = YAP_InitConsult(YAP_BOOT_MODE, b_file, full, &osno); if (bootfile < 0) { fprintf(stderr, "[ FATAL ERROR: could not open bootfile %s ]\n", - bootfilename); + b_file); exit(1); } +free(full); do { CACHE_REGS YAP_Reset(YAP_FULL_RESET); @@ -2329,7 +2331,7 @@ static void do_bootfile(const char *bootfilename USES_REGS) { if (t == 0) { fprintf(stderr, "[ SYNTAX ERROR: while parsing bootfile %s at line %d ]\n", - bootfilename, yap_lineno); + b_file, yap_lineno); } else if (YAP_IsVarTerm(t) || t == TermNil) { fprintf(stderr, "[ line %d: term cannot be compiled ]", yap_lineno); } else if (YAP_IsPairTerm(t)) { @@ -2420,10 +2422,11 @@ static void do_bootfile(const char *bootfilename USES_REGS) { YAP_file_type_t restore_result = yap_init->boot_file_type; bool do_bootstrap = (restore_result & YAP_CONSULT_MODE); CELL Trail = 0, Stack = 0, Heap = 0, Atts = 0; - char boot_file[YAP_FILENAME_MAX + 1]; + char *boot_file; Int rc; const char *yroot; + boot_file = calloc(YAP_FILENAME_MAX + 1, 1); /* ignore repeated calls to YAP_Init */ if (YAP_initialized) return YAP_FOUND_BOOT_ERROR; @@ -2467,9 +2470,10 @@ static void do_bootfile(const char *bootfilename USES_REGS) { if (yap_init->YapPrologBootFile == NULL) yap_init->YapPrologBootFile = BootFile; #else - yap_init->YapPrologBootFile = - Yap_findFile(yap_init->YapPrologBootFile, BootFile, yroot, boot_file, + + const char *s = Yap_findFile(yap_init->YapPrologBootFile, BootFile, yroot, boot_file, true, YAP_BOOT_PL, true, true); + if (s && s[0] != '\0') strcpy(boot_file, s); #endif } @@ -2619,18 +2623,17 @@ static void do_bootfile(const char *bootfilename USES_REGS) { setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, true); rc = YAP_QLY; } else { - if (!yap_init->YapPrologBootFile) - yap_init->YapPrologBootFile = BootFile; - rc = YAP_BOOT_PL; - do_bootfile(yap_init->YapPrologBootFile); + if (boot_file[0] == '\0') + strcpy(boot_file, BootFile); + do_bootfile(boot_file PASS_REGS); setAtomicGlobalPrologFlag( RESOURCE_DATABASE_FLAG, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologBootFile))); + MkAtomTerm(Yap_LookupAtom(boot_file))); setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, false); } start_modules(); YAP_initialized = true; - return rc; + return YAP_BOOT_PL; } #if (DefTrailSpace < MinTrailSpace) diff --git a/C/text.c b/C/text.c index d2becfc00..e88b7bfd9 100644 --- a/C/text.c +++ b/C/text.c @@ -31,6 +31,11 @@ inline static size_t min_size(size_t i, size_t j) { return (i < j ? i : j); } #define wcsnlen(S, N) min_size(N, wcslen(S)) #endif +#ifndef HAVE_STPCPY +inline static void* __stpcpy(void * i, const void * j) { return strcpy(i,j)+strlen(j);} +#define stpcpy __stpcpy +#endif + #ifndef NAN #define NAN (0.0 / 0.0) #endif @@ -993,7 +998,7 @@ bool Yap_Splice_Text(int n, size_t cuts[], seq_tv_t *inp, return false; } b_l0 = strlen((const char *)buf0); - if (bcmp(buf, buf0, b_l0) != 0) { + if (memcmp(buf, buf0, b_l0) != 0) { return false; } u_l0 = strlen_utf8(buf0); @@ -1016,7 +1021,7 @@ bool Yap_Splice_Text(int n, size_t cuts[], seq_tv_t *inp, u_l1 = strlen_utf8(buf1); b_l0 = b_l - b_l1; u_l0 = u_l - u_l1; - if (bcmp(skip_utf8((const unsigned char *)buf, b_l0), buf1, b_l1) != + if (memcmp(skip_utf8((const unsigned char *)buf, b_l0), buf1, b_l1) != 0) { return false; } @@ -1043,35 +1048,6 @@ bool Yap_Splice_Text(int n, size_t cuts[], seq_tv_t *inp, return true; } -/** - * Function to convert a generic text term (string, atom, list of codes, list - of< - atoms) into a buff - er. - * - * @param t the term - * @param buf the buffer, if NULL a buffer is malloced, and the user should - reclai it - * @param len buffer size - * @param enc encoding (UTF-8 is strongly recommended) - * - * @return the buffer, or NULL in case of failure. If so, Yap_Error may be - called. -*/ -const char *Yap_TextTermToText(Term t USES_REGS) { - seq_tv_t inp, out; - inp.val.t = t; - inp.type = Yap_TextType(t); - inp.type = YAP_STRING_ATOM | YAP_STRING_STRING | YAP_STRING_ATOMS_CODES | - YAP_STRING_TERM; - inp.enc = ENC_ISO_UTF8; - out.enc = ENC_ISO_UTF8; - out.type = YAP_STRING_CHARS; - out.val.c = NULL; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return NULL; - return out.val.c; -} /** * Convert from a predicate structure to an UTF-8 string of the form diff --git a/C/yap-args.c b/C/yap-args.c index d3d74c9e1..9efbace59 100755 --- a/C/yap-args.c +++ b/C/yap-args.c @@ -496,11 +496,7 @@ X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[], } else if (!strncmp("-home=", p, strlen("-home="))) { GLOBAL_Home = p + strlen("-home="); } else if (!strncmp("-cwd=", p, strlen("-cwd="))) { -#if __WINDOWS__ - if (_chdir(p + strlen("-cwd=")) < 0) { -#else - if (chdir(p + strlen("-cwd=")) < 0) { -#endif + if (!ChDir(p + strlen("-cwd=")) ) { fprintf(stderr, " [ YAP unrecoverable error in setting cwd: %s ]\n", strerror(errno)); } diff --git a/CMakeLists.txt b/CMakeLists.txt index ad6982a9e..4935f2648 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -249,9 +249,6 @@ if (APPLE) endif () endif () -if (ANDROID) - set(datarootdir /assets) -endif () set(prefix ${CMAKE_INSTALL_PREFIX}) #BINDIR}) set(bindir ${CMAKE_INSTALL_PREFIX}/bin) #BINDIR}) set(includedir ${CMAKE_INSTALL_PREFIX}/include) #INCLUDEDIR}) @@ -259,6 +256,10 @@ set(libdir ${CMAKE_INSTALL_PREFIX}/lib) #LIBDIR}) set(exec_prefix ${CMAKE_INSTALL_PREFIX}/libexec) #LIBEXECDIR}) set(datarootdir ${CMAKE_INSTALL_PREFIX}/share) #DATAROOTDIR}) set(datadir ${CMAKE_INSTALL_PREFIX}/share) #DATADIR}) +if (ANDROID) + set(datarootdir ${YAP_APP_DIR}/src/generated/assets) + set(datadir ${YAP_APP_DIR}/src/generated/assets) +endif () set(mandir ${CMAKE_INSTALL_PREFIX}/share/man) #MANDIR}) set(docdir ${CMAKE_INSTALL_PREFIX}/share/docs) #MANDIR}) @@ -458,7 +459,7 @@ endif () OPTION(WITH_SWIG " Enable SWIG interfaces to foreign languages" ON) -IF (WITH_SWIG OR ANDROID) +IF (WITH_SWIG) find_host_package(SWIG) # macro_log_feature (SWIG_FOUND "Swig" # "Use SWIG Interface Generator " @@ -614,11 +615,6 @@ ADD_SUBDIRECTORY(library) ADD_SUBDIRECTORY(swi/library "swiLibrary") -if (ANDROID) - target_link_libraries(libYap android log) - -endif () - set_target_properties(libYap PROPERTIES OUTPUT_NAME Yap ) @@ -638,8 +634,9 @@ if (PYTHONLIBS_FOUND AND SWIG_FOUND) endif () -IF (SWIG_FOUND OR ANDROID) - add_subDIRECTORY(packages/swig NO_POLICY_SCOPE) +IF ( ANDROID) + add_subDIRECTORY(packages/swig ) + target_link_libraries(libYap android log) ENDIF () @@ -801,9 +798,11 @@ CMAKE_DEPENDENT_OPTION(WITH_SYSTEM_MMAP "Use MMAP for shared memory allocation" CMAKE_DEPENDENT_OPTION(WITH_SYSTEM_SHM "Use SHM for shared memory allocation" ON "NOT WITH_YAPOR_THOR; NOT WITH_SYSTEM_MMAP" OFF) +if (NOT ANDROID) + add_subDIRECTORY(library/lammpi) -if (MPI_C_FOUND) +if (MPI_C_FOUND\D) CMAKE_DEPENDENT_OPTION(WITH_MPI ON "Interface to OpenMPI/MPICH" "MPI_C_FOUND" OFF) @@ -822,6 +821,8 @@ if (MPI_C_FOUND) endif () endif (MPI_C_FOUND) +endif(NOT ANDROID) + ## add_subDIRECTORY(utils) # diff --git a/CXX/yapi.cpp b/CXX/yapi.cpp index 2c7a8ae65..d4fba99d0 100644 --- a/CXX/yapi.cpp +++ b/CXX/yapi.cpp @@ -625,7 +625,7 @@ Term YAPEngine::fun(Term t) return 0; } DBTerm *pt = Yap_StoreTermInDB(Yap_GetFromSlot(o), arity); - __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "out %ld", o); + __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "out %d", o); YAP_LeaveGoal(false, &q); Yap_CloseHandles(q.CurSlot); Term rc = Yap_PopTermFromDB(pt); @@ -751,8 +751,8 @@ bool YAPQuery::next() } if (result) { - __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "vnames %d %s %ld", - q_state, vnames.text(), LOCAL_CurSlot); + __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "vnames %d %s %d", + q_state, names.text(), LOCAL_CurSlot); } else { @@ -892,6 +892,8 @@ static size_t Yap_AndroidMax, Yap_AndroidSz; extern void (*Yap_DisplayWithJava)(int c); +static YAPCallback *cb = new YAPCallback(); + void Yap_displayWithJava(int c) { char *ptr = Yap_AndroidBufp; @@ -914,11 +916,12 @@ void Yap_displayWithJava(int c) if (c == '\n') { Yap_AndroidBufp[Yap_AndroidSz] = '\0'; - curren->run(Yap_AndroidBufp); + cb->run(Yap_AndroidBufp); Yap_AndroidSz = 0; } } + #endif @@ -945,14 +948,14 @@ void YAPEngine::doInit(YAP_file_type_t BootMode) YAPQuery initq = YAPQuery(YAPPredicate(p), nullptr); if (initq.next()) { - initq.cut(); + initq.cut(); } CurrentModule = TermUser; } YAPEngine::YAPEngine(int argc, char *argv[], - YAPCallback *cb) + YAPCallback *cb) : _callback(0) { // a single engine can be active YAP_file_type_t BootMode; @@ -961,10 +964,13 @@ YAPEngine::YAPEngine(int argc, char *argv[], // delYAPCallback()b // if (cb) // setYAPCallback(cb); - doInit(BootMode); + + doInit(BootMode); } + + YAPPredicate::YAPPredicate(YAPAtom at) { CACHE_REGS diff --git a/CXX/yapq.hh b/CXX/yapq.hh index 6b90e6646..0d1cfb849 100644 --- a/CXX/yapq.hh +++ b/CXX/yapq.hh @@ -25,6 +25,10 @@ class X_API YAPPredicate; Queries and engines */ +#if __ANDROID__ + +#endif + /** * @brief Queries * @@ -94,11 +98,11 @@ YAPQuery() { inline YAPQuery(const char *s) : YAPPredicate(s, tgoal, tnames) { CELL *qt = nullptr; - __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "got game %ld", + __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "got game %d", LOCAL_CurSlot); if (!ap) return; - __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "%s", vnames.text()); + __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "%s", names.text()); goal = YAPTerm(tgoal); if (IsPairTerm(tgoal)) { qt = RepPair(tgoal); @@ -151,6 +155,7 @@ void close(); /// query variables. void cut(); Term namedVars() {return names.term(); }; +YAPPairTerm namedVarTerms() {return names; }; /// query variables, but copied out std::vector namedVarsVector() { return names.listToArray(); }; @@ -312,10 +317,18 @@ public: init_args.FastBoot = fl; }; - inline bool getFastBoot( ) - { - return init_args.FastBoot; - }; + inline bool getFastBoot( ) + { + return init_args.FastBoot; + }; + +#if __ANDROID__ + //> export ResoourceManager + inline void setAssetManager( AAssetManager *mgr ) + { + init_args.assetManager = mgr; + }; +#endif inline void setArgc( int fl ) { diff --git a/CXX/yapt.hh b/CXX/yapt.hh index 14818c2f3..f3ce6f5b7 100644 --- a/CXX/yapt.hh +++ b/CXX/yapt.hh @@ -112,7 +112,18 @@ public: inline Term term() { return gt(); } /// from YAPTerm to Term (internal YAP representation) - inline void bind(Term b) { LOCAL_HandleBase[t] = b; } + YAPTerm arg(int i) { + BACKUP_MACHINE_REGS(); + Term t0 = gt(); + YAPTerm tf; + if (!IsApplTerm(t0) && !IsPairTerm(t)) + return (Term)0; + tf = YAPTerm(ArgOfTerm(i, t0) ); + RECOVER_MACHINE_REGS(); + return tf; + }; + + inline void bind(Term b) { LOCAL_HandleBase[t] = b; } inline void bind(YAPTerm *b) { LOCAL_HandleBase[t] = b->term(); } /// from YAPTerm to Term (internal YAP representation) /// fetch a sub-term @@ -324,7 +335,7 @@ public: RECOVER_MACHINE_REGS(); return tf; }; - virtual bool isVar() { return false; } /// type check for unbound + virtual bool isVar() { return false; } /// type check for unbound virtual bool isAtom() { return false; } /// type check for atom virtual bool isInteger() { return false; } /// type check for integer virtual bool isFloat() { return false; } /// type check for floating-point @@ -354,6 +365,9 @@ public: YAPPairTerm(); Term getHead() { return (HeadOfTerm(gt())); } Term getTail() { return (TailOfTerm(gt())); } + YAPTerm car() { return YAPTerm(HeadOfTerm(gt())); } + bool nil() { return gt() == TermNil; } + YAPPairTerm cdr() { return YAPPairTerm(TailOfTerm(gt())); } std::vector listToArray() { Term *tailp; Term t1 = gt(); diff --git a/H/YapText.h b/H/YapText.h index e566894a4..e99edc6a0 100644 --- a/H/YapText.h +++ b/H/YapText.h @@ -1433,6 +1433,38 @@ static inline void Yap_OverwriteUTF8BufferToLowCase(void *buf USES_REGS) { } } +/** + * Function to convert a generic text term (string, atom, list of codes, list + of< + atoms) into a buff + er. + * + * @param t the term + * @param buf the buffer, if NULL a buffer is malloced, and the user should + reclai it + * @param len buffer size + * @param enc encoding (UTF-8 is strongly recommended) + * + * @return the buffer, or NULL in case of failure. If so, Yap_Error may be + called. + * + * notice that it must be called from a push memory. +*/ +static inline const char *Yap_TextTermToText(Term t0 USES_REGS) { + seq_tv_t inp, out; + + inp.val.t = t0; + inp.type = YAP_STRING_ATOM | YAP_STRING_STRING | YAP_STRING_CODES | + YAP_STRING_ATOMS_CODES | YAP_STRING_MALLOC; + out.val.uc = NULL; + out.type = YAP_STRING_CHARS; + out.enc = ENC_ISO_UTF8; + + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return NULL; + return out.val.c0; +} + static inline const unsigned char *Yap_TextToUTF8Buffer(Term t0 USES_REGS) { seq_tv_t inp, out; @@ -1444,7 +1476,7 @@ static inline const unsigned char *Yap_TextToUTF8Buffer(Term t0 USES_REGS) { out.enc = ENC_ISO_UTF8; if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; + return NULL; return out.val.uc0; } @@ -1642,5 +1674,4 @@ static inline Term Yap_SubtractTailString(Term t1, Term th USES_REGS) { #endif // ≈YAP_TEXT_H -extern const char *Yap_TextTermToText(Term t USES_REGS); extern Term Yap_MkTextTerm(const char *s, int guide USES_REGS); diff --git a/H/Yapproto.h b/H/Yapproto.h index 7ffd5c078..183a4e27c 100755 --- a/H/Yapproto.h +++ b/H/Yapproto.h @@ -306,7 +306,6 @@ extern void Yap_CloseReadline(void); extern bool Yap_InitReadline(Term t); extern void Yap_InitItDeepenPreds(void); extern struct AliasDescS *Yap_InitStandardAliases(void); -extern struct vfs *Yap_InitAssetManager(void); /* load_foreign.c */ extern void Yap_InitLoadForeign(void); @@ -436,6 +435,8 @@ extern const char *Yap_AbsoluteFileInBuffer(const char *spec, char *outp, size_t extern const char *Yap_findFile(const char *isource, const char *idef, const char *root, char *result, bool access, YAP_file_type_t ftype, bool expand_root, bool in_lib); +extern bool ChDir(const char *path); + /* threads.c */ extern void Yap_InitThreadPreds(void); extern void Yap_InitFirstWorkerThreadHandle(void); diff --git a/cmake/FindGMP.cmake b/cmake/FindGMP.cmake index 779234e22..9fa56088c 100644 --- a/cmake/FindGMP.cmake +++ b/cmake/FindGMP.cmake @@ -10,12 +10,27 @@ if (ANDROID) -set( GMP_ROOT ${CMAKE_SOURCE_DIR}/../gmp/${ANDROID_ABI} ) - set (GMP_INCLUDE_DIRS ${GMP_ROOT}) - set (GMP_LIBRARIES ${GMP_ROOT}/libgmp.so) -set (GMP_FOUND ON) - set (GMP_LIBRARIES_DIR ${GMP_ROOT}) -elif(MSVC) + + set( GMP_LOC ${CMAKE_SOURCE_DIR}/../gmp/${ANDROID_ABI} ) + if (EXISTS ${GMP_LOC} ) + message("Looking good for ${GMP_LOC}") + set(GMP_INCLUDE_DIRS ${GMP_LOC} CACHE PATH "include search path") + set(GMP_LIBRARIES ${GMP_LOC}/libgmp.so CACHE FILEPATH "include search path") + set(GMP_LIBRARIES_DIR ${GMP_LOC} CACHE PATH "include search path") + else() + message("Bad call: ${GMP_LOC} does not exist") + endif() +find_path(GMP_INCLUDE_DIRS + NAMES gmp.h + HINTS ${GMP_LOC} + NO_SYSTEM_ENVIRONMENT_PATH) + find_library(GMP_LIBRARIES NAMES gmp + PATHS + ${GMP_ROOT} + NO_SYSTEM_ENVIRONMENT_PATH) + + +elseif(MSVC) find_library(GMP_LIBRARIES NAMES mpir mpird PATHS $ENV{GMP_ROOT} @@ -84,6 +99,7 @@ else() ${GMP_LIBRARIES_DIR}/../include ${GMP_LIBRARIES_DIR} ) + endif() get_filename_component(GMP_LIBRARIES_DIR "${GMP_LIBRARIES}" PATH CACHE) @@ -101,5 +117,4 @@ endif() mark_as_advanced(GMP_LIBRARIES GMP_LIBRARIES_DIR GMP_INCLUDE_DIRS) -endif() diff --git a/include/VFS.h b/include/VFS.h index 28894a957..198339c78 100644 --- a/include/VFS.h +++ b/include/VFS.h @@ -33,6 +33,7 @@ #include + typedef struct { dev_t st_dev; /* ID of device containing file */ mode_t st_mode; /* Mode of file (see below) */ @@ -77,10 +78,9 @@ typedef struct vfs { /// a way to identify a file in this VFS: two special cases, prefix and suffix const char *prefix; const char *suffix; - bool (*id)(struct vfs *me, const char *s); + bool (*chDir)(struct vfs *me, const char *s); /** operations */ - void *(*open)(const char *s, - const char *io_mode); /// open an object + void *(*open)(int sno, const char *fname, const char *io_mode); /// open an object /// in this space, usual w,r,a,b flags plus B (store in a buffer) bool (*close)(int sno); /// close the object int (*get_char)(int sno); /// get an octet to the stream @@ -88,15 +88,15 @@ typedef struct vfs { void (*flush)(int sno); /// flush a stream int64_t (*seek)(int sno, int64_t offset, int whence); /// jump around the stream - void *(*opendir)(const char *s); /// open a directory object, if one exists + void *(*opendir)(struct vfs *,const char *s); /// open a directory object, if one exists const char *(*nextdir)(void *d); /// walk to the next entry in a directory object - void (*closedir)(void *d); + bool (*closedir)(void *d); ; /// close access a directory object bool (*stat)(const char *s, vfs_stat *); /// obtain size, age, permissions of a file. - bool (*isdir)(const char *s); /// verify whether is directory. - bool (*exists)(const char *s); /// verify whether a file exists. - bool (*chdir)(const char *s); /// set working directory (may be virtual). + bool (*isdir)(struct vfs *,const char *s); /// verify whether is directory. + bool (*exists)(struct vfs *, const char *s); /// verify whether a file exists. + bool (*chdir)(struct vfs *,const char *s); /// set working directory (may be virtual). encoding_t enc; /// default file encoded. YAP_Term (*parsers)(int sno); // a set of parsers that can read the // stream and generate a YAP_Term @@ -121,12 +121,15 @@ static inline VFS_t *vfs_owner(const char *fname) { size_t sz0 = strlen(fname), sz; while (me) { - if ((me->vflags & VFS_HAS_PREFIX) && strstr(fname, me->prefix) == fname) + bool p = true; + if ((me->vflags & VFS_HAS_PREFIX) && p) { + const char *r = fname, *s = me->prefix; + while (*s && p) p = *s++ == *r++; + if (p && r > fname+1) return me; + } if (me->vflags & VFS_HAS_SUFFIX && (sz = strlen(me->suffix)) && (d = (sz0 - sz)) >= 0 && - strcmp(fname + d, me->suffix) == 0) - return me; - if (me->vflags & VFS_HAS_FUNCTION && (me->id(me, fname))) { + strcmp(fname + d, me->suffix) == 0) { return me; } me = me->next; diff --git a/include/YapDefs.h b/include/YapDefs.h index 634d40361..f02fc29df 100755 --- a/include/YapDefs.h +++ b/include/YapDefs.h @@ -189,6 +189,11 @@ typedef encoding_t YAP_encoding_t; #endif +#if __ANDROID__ +#include +#include +#endif + typedef struct YAP_thread_attr_struct { size_t ssize; size_t tsize; @@ -322,6 +327,10 @@ typedef struct yap_boot_params { int QuietMode; //> 0, maintain default, > 0 use fd-1, < 0 close int inp, out, err; +#if __ANDROID__ + //> android asset support + AAssetManager *assetManager; +#endif /* support nf's ypp preprocessor code */ #define YAP_MAX_YPP_DEFS 100 char *def_var[YAP_MAX_YPP_DEFS]; diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index 7c7c3b500..f39857656 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -76,8 +76,8 @@ MY_add_subdirectory(ytest) add_to_group( LIBRARY_PL pl_library) -if (0) - file(COPY ${LIBRARY_PL} DESTINATION ${libpl}) -else() - install(FILES ${LIBRARY_PL} DESTINATION ${libpl}) -endif() +install(FILES ${LIBRARY_PL} DESTINATION ${libpl}) + +if (ANDROID) +file( INSTALL ${LIBRARY_PL} DESTINATION ${libpl} ) +endif() \ No newline at end of file diff --git a/os/assets.c b/os/assets.c index ace50a1f5..40616e121 100644 --- a/os/assets.c +++ b/os/assets.c @@ -33,107 +33,93 @@ static char SccsId[] = "%W% %G%"; // for native asset manager #include -#if __ANDROID__0 +#if __ANDROID__ +#include +#include -static AAssetManager * getMgr(struct vfs *me) +AAssetManager * Yap_assetManager; + +jboolean Java_pt_up_yap_app_assetAssetManager(JNIEnv* env, jclass clazz, jobject assetManager) { - return me->priv[0].mgr; -} - - -void -Java_pt_up_yap_app_YAPDroid_load(JNIEnv *env, - jobject assetManager) { - - AAssetManager *mgr = AAssetManager_fromJava(env, assetManager); - if (mgr == NULL) { - return; - } - VFS_t *me = GLOBAL_VFS; - while ( strcmp(me->name, "/assets") == 0) - me = me->next; - me->priv[0].mgr = mgr; + Yap_assetManager = AAssetManager_fromJava(env, assetManager); } -static bool -open_asset(struct vfs *me, struct stream_desc *st, const char *fname, const char +static void * +open_asset__ + ( int sno, const char *fname, const char *io_mode) { - AAssetManager *mgr; int mode; const void *buf; + VFS_t *me = GLOBAL_Stream[sno].vfs; if (strstr(fname,"/assets") == fname) { - // we're in - mgr = getMgr(me); - if (mgr == NULL) { - return PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, - "asset manager", - fname); - } - if (strchr(io_mode, 'w') || strchr(io_mode, 'a')) { - return PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, - "%s: no writing but flags are %s", - fname, io_mode); - } - if (strchr(io_mode, 'B')) - mode = AASSET_MODE_BUFFER; - else - { - mode = AASSET_MODE_UNKNOWN; + // we're in + if ( Yap_assetManager == NULL) { + return PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, + "asset manager", + fname); } - AAsset *a = AAssetManager_open(mgr , fname, mode); - // try not to use it as an asset - off64_t sz = AAsset_getLength64(a), sz0 = 0; - int fd; - if ((fd = AAsset_openFileDescriptor64(a, &sz0, &sz)) >= 0) { - // can use it as red-only file - st->file = fdopen( fd, "r"); + if (strchr(io_mode, 'w') || strchr(io_mode, 'a')) { + return PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, + "%s: no writing but flags are %s", + fname, io_mode); + } + if (strchr(io_mode, 'B')) + mode = AASSET_MODE_BUFFER; + else { + mode = AASSET_MODE_UNKNOWN; + } + AAsset *a = AAssetManager_open( Yap_assetManager, fname, mode); + // try not to use it as an asset + off64_t sz = AAsset_getLength64(a), sz0 = 0; + int fd; + StreamDesc *st = GLOBAL_Stream+sno; + if ((fd = AAsset_openFileDescriptor64(a, &sz0, &sz)) >= 0) { + // can use it as red-only file + st->file = fdopen(fd, "r"); + st->vfs = me; + st->vfs_handle = a; + return a; + } else if ((buf = AAsset_getBuffer(a))) { + // copy to memory + bool rc = Yap_set_stream_to_buf(st, buf, sz); + AAsset_close(a); + return rc; + } + // should be done, but if not + GLOBAL_Stream[sno].vfs_handle= a; st->vfs = me; - st->vfs_handle = a; return true; - } else if ((buf = AAsset_getBuffer(a)) ) { - // copy to memory - bool rc = Yap_set_stream_to_buf(st, buf, sz); - AAsset_close(a); - return rc; - } - // should be done, but if not - st->vfs_handle = a; - st->vfs = me; - return true; - } - if (me->next) { - return me->next->open(me->next, st, fname, io_mode); } return NULL; } static bool -close_asset(struct stream_desc *st) +close_asset(int sno) { - AAsset_close(st->vfs_handle); + AAsset_close(GLOBAL_Stream[sno].vfs_handle); return true; } -static int64_t seek64(struct stream_desc *st, int64_t offset, int whence) +static int64_t seek64(int sno, int64_t offset, int whence) { - return AAsset_seek64(st->vfs_handle, offset, whence); + return AAsset_seek64(GLOBAL_Stream[sno].vfs_handle, offset, whence); } -static int getc_asset(struct stream_desc *st) +static int getc_asset(int sno) { int ch; - if ( AAsset_read (st->vfs_handle, &ch, 1) ) + if ( AAsset_read (GLOBAL_Stream[sno].vfs_handle, &ch, 1) ) return ch; return -1; } -static void *opendir_a(struct vfs *me, const char *dirName) +static void *opendir_a( VFS_t *me, const char *dirName) { - return (void *)AAssetManager_openDir (getMgr(me), dirName); + return (void *)AAssetManager_openDir (Yap_assetManager, dirName); } static const char *readdir_a(void *dirHandle) @@ -148,10 +134,10 @@ static bool closedir_a(void *dirHandle) } -static bool stat_a(struct vfs *me, const char *fname, vfs_stat *out) +static bool stat_a(VFS_t *me, const char *fname, vfs_stat *out) { - struct stat64 bf; - if (stat64( "/assets", &bf)) { + struct stat bf; + if (stat( "/assets", &bf)) { out->st_dev = bf.st_dev; out->st_uid = bf.st_uid; @@ -161,8 +147,7 @@ static bool stat_a(struct vfs *me, const char *fname, vfs_stat *out) memcpy(&out->st_ctimespec, (const void *)&out->st_ctimespec, sizeof(struct timespec)); memcpy(&out->st_birthtimespec, (const void *)&out->st_birthtimespec, sizeof(struct timespec)); } - AAssetManager *mgr = getMgr(me); - AAsset *a = AAssetManager_open(mgr , fname, AASSET_MODE_UNKNOWN); + AAsset *a = AAssetManager_open( Yap_assetManager , fname, AASSET_MODE_UNKNOWN); // try not to use it as an asset out->st_size = AAsset_getLength64(a); AAsset_close(a); @@ -171,11 +156,11 @@ static bool stat_a(struct vfs *me, const char *fname, vfs_stat *out) } static -bool is_dir_a(struct vfs *me, const char *dirName) +bool is_dir_a( VFS_t *me,const char *dirName) { bool rc; // try not to use it as an asset - AAssetDir *d = AAssetManager_openDir (getMgr(me), dirName); + AAssetDir *d = AAssetManager_openDir ( Yap_assetManager, dirName); if (d == NULL) return false; rc = (AAssetDir_getNextFileName(d) != NULL); @@ -184,10 +169,10 @@ bool is_dir_a(struct vfs *me, const char *dirName) } static -bool exists_a(struct vfs *me, const char *dirName) +bool exists_a(VFS_t *me, const char *dirName) { // try not to use it as an asset - AAsset *d = AAssetManager_open (getMgr(me), dirName, AASSET_MODE_UNKNOWN); + AAsset *d = AAssetManager_open ( Yap_assetManager, dirName, AASSET_MODE_UNKNOWN); if (d == NULL) return false; AAsset_close(d); @@ -195,11 +180,11 @@ bool exists_a(struct vfs *me, const char *dirName) } -static bool set_cwd (struct vfs *me, const char *dirName) { +static bool set_cwd (VFS_t *me, const char *dirName) { chdir("/assets"); if (me->virtual_cwd) - free(me->virtual_cwd); + free((void*)(me->virtual_cwd)); me->virtual_cwd = malloc( sizeof(dirName) + 1 ); return me!= NULL; } @@ -209,21 +194,22 @@ static bool set_cwd (struct vfs *me, const char *dirName) { /* create a new alias arg for stream sno */ VFS_t * -Yap_InitAssetManager(void) +Yap_InitAssetManager( AAssetManager* mgr ) { -#if __ANDROID__O +#if __ANDROID__ VFS_t *me; + Yap_assetManager = mgr; /* init standard VFS */ me = (VFS_t *)Yap_AllocCodeSpace(sizeof(struct vfs)); me->name = "/assets"; me->vflags = VFS_CAN_EXEC|VFS_CAN_SEEK|VFS_HAS_PREFIX; /// the main flags describing the operation of the Fs. me->prefix = "/assets"; /** operations */ - me->open = open_asset; /// open an object in this space + me->open = open_asset__; /// open an object in this space me->close= close_asset; /// close the object me->get_char = getc_asset; /// get an octet to the stream - me->putc = NULL; /// output an octet to the stream + me->put_char = NULL; /// output an octet to the stream me->seek = seek64; /// jump around the stream me->opendir = opendir_a; /// open a directory object, if one exists me->nextdir = readdir_a; /// open a directory object, if one exists diff --git a/os/charsio.c b/os/charsio.c index 507861ea4..e8266a8db 100644 --- a/os/charsio.c +++ b/os/charsio.c @@ -865,7 +865,7 @@ as those for `put` (see 6.11). static Int skip_1(USES_REGS1) { /* 'skip'(N) */ Int n; Term t1; - int sno; + int sno = LOCAL_c_output_stream; int ch; if (IsVarTerm(t1 = Deref(ARG1))) { diff --git a/os/files.c b/os/files.c index f18cc8141..b579d832d 100644 --- a/os/files.c +++ b/os/files.c @@ -25,6 +25,7 @@ static char SccsId[] = "%W% %G%"; */ #include "sysbits.h" +#include "yapio.h" #if _MSC_VER || defined(__MINGW32__) #define SYSTEM_STAT _stat diff --git a/os/iopreds.c b/os/iopreds.c index dbc7b0990..f84738fcb 100644 --- a/os/iopreds.c +++ b/os/iopreds.c @@ -246,20 +246,18 @@ static void unix_upd_stream_info(StreamDesc *s) { void Yap_DefaultStreamOps(StreamDesc *st) { CACHE_REGS - if (st->vfs) { - st->stream_wputc = st->vfs->put_char; - st->stream_wgetc = st->vfs->get_char; - st->stream_putc = st->vfs->put_char; - st->stream_wgetc = st->vfs->get_char; - return; - } st->stream_wputc = put_wchar; if (st->encoding == ENC_ISO_UTF8) st->stream_wgetc = get_wchar_UTF8; else st->stream_wgetc = get_wchar; - st->stream_putc = FilePutc; - st->stream_getc = PlGetc; + if (st->vfs) { + st->stream_putc = st->vfs->put_char; + st->stream_wgetc = st->vfs->get_char; + } else { + st->stream_putc = FilePutc; + st->stream_getc = PlGetc; + } if (st->status & (Promptable_Stream_f)) { Yap_ConsoleOps(st); } @@ -300,7 +298,7 @@ static void InitStdStream(int sno, SMALLUNSGN flags, FILE *file, VFS_t *vfsp) { INIT_LOCK(s->streamlock); if (vfsp != NULL) { s->u.private_data = - vfsp->open(vfsp->name, (sno == StdInStream ? "read" : "write")); + vfsp->open(sno, vfsp->name, (sno == StdInStream ? "read" : "write")); if (s->u.private_data == NULL) { (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkIntTerm(sno), "%s", vfsp->name)); @@ -1312,7 +1310,7 @@ do_open(Term file_name, Term t2, } struct vfs *vfsp = NULL; if ((vfsp = vfs_owner(fname)) != NULL) { - st->u.private_data = vfsp->open(fname, io_mode); + st->u.private_data = vfsp->open(sno, fname, io_mode); fd = NULL; if (st->u.private_data == NULL) return (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, file_name, "%s", fname)); @@ -1869,8 +1867,11 @@ static Int get_abs_file_parameter(USES_REGS1) { void Yap_InitPlIO(struct yap_boot_params *argi) { Int i; - - if (argi->inp > 0) +#if __ANDROID__ + if (argi->assetManager) + Yap_InitAssetManager( argi->assetManager ); +#endif + if (argi->inp > 0) Yap_stdin = fdopen(argi->inp - 1, "r"); else if (argi->inp) Yap_stdin = NULL; diff --git a/os/iopreds.h b/os/iopreds.h index 7d40ba5b9..5186ddaf3 100644 --- a/os/iopreds.h +++ b/os/iopreds.h @@ -285,6 +285,6 @@ static inline void freeBuffer(const void *ptr) { /** VFS handling */ -VFS_t *Yap_InitAssetManager(void); +VFS_t *Yap_InitAssetManager(AAssetManager *mgr); #endif diff --git a/os/mem.c b/os/mem.c index 66994073a..7e6988073 100644 --- a/os/mem.c +++ b/os/mem.c @@ -24,7 +24,7 @@ static char SccsId[] = "%W% %G%"; */ #include "sysbits.h" - +#include "YapStreams.h" #if !HAVE_FMEMOPEN || !defined(HAVE_FMEMOPEN) @@ -180,7 +180,7 @@ static int MemPutc(int sno, int ch) { return ((int)ch); } -bool Yap_set_stream_to_buf(StreamDesc *st, const char *buf, size_t nchars) { +bool Yap_set_stream_to_buf(StreamDesc *st, const char *buf, size_t nchars USES_REGS) { FILE *f; stream_flags_t flags; @@ -241,14 +241,15 @@ open_mem_read_stream(USES_REGS1) /* $open_mem_read_stream(+List,-Stream) */ { Term t, ti; int sno; - char buf0[YAP_FILENAME_MAX + 1]; + int i = push_text_stack(); const char *buf; ti = Deref(ARG1); - buf = Yap_TextTermToText(ti, buf0, 0, LOCAL_encoding); + buf = Yap_TextTermToText(ti PASS_REGS); if (!buf) { return false; } + buf = pop_output_text_stack(i, buf); sno = Yap_open_buf_read_stream(buf, strlen(buf) + 1, &LOCAL_encoding, MEM_BUF_MALLOC); t = Yap_MkStream(sno); diff --git a/os/sysbits.c b/os/sysbits.c index f671e8c7a..112cc1c11 100644 --- a/os/sysbits.c +++ b/os/sysbits.c @@ -79,7 +79,7 @@ static bool is_directory(const char *FileName) { VFS_t *vfs; if ((vfs = vfs_owner(FileName))) { - return vfs->isdir(FileName); + return vfs->isdir(vfs,FileName); } #ifdef _WIN32 DWORD dwAtts = GetFileAttributes(FileName); @@ -102,10 +102,13 @@ static bool is_directory(const char *FileName) { } bool Yap_Exists(const char *f) { - VFS_t *vfs; + VFS_t *vfs = GLOBAL_VFS; - if ((vfs = vfs_owner(f))) { - return vfs->exists(f); + while(vfs) { + VFS_t *n=vfs->exists(vfs,f); + if (n==vfs) return true; + if (!n) return false; + vfs = n; } #if _WIN32 if (_access(f, 0) == 0) @@ -341,14 +344,14 @@ static char *PrologPath(const char *Y, char *X) { return (char *)Y; } #define HAVE_REALPATH 1 #endif -static bool ChDir(const char *path) { + bool ChDir(const char *path) { bool rc = false; char qp[FILENAME_MAX + 1]; const char *qpath = Yap_AbsoluteFile(path, qp, true); VFS_t *v; if ((v = vfs_owner(path))) { - return v->chdir(path); + return v->chdir(v, path); } #if _WIN32 rc = true; @@ -1242,7 +1245,8 @@ const char *Yap_findFile(const char *isource, const char *idef, if (ftype == YAP_PL) { root = YAP_SHAREDIR; } else if (ftype == YAP_BOOT_PL) { - root = YAP_SHAREDIR; + root = malloc(YAP_FILENAME_MAX+1); + strcpy(root, YAP_SHAREDIR); strcat(root,"/pl"); } else { root = YAP_LIBDIR; diff --git a/os/yapio.h b/os/yapio.h index d8f2827ee..9a19e1a20 100644 --- a/os/yapio.h +++ b/os/yapio.h @@ -22,6 +22,8 @@ #undef HAVE_LIBREADLINE #endif +#include "YapStreams.h" + #include #include @@ -108,8 +110,6 @@ extern Term Yap_StringToNumberTerm(const char *s, encoding_t *encp, extern int Yap_FormatFloat(Float f, char **s, size_t sz); extern int Yap_open_buf_read_stream(const char *buf, size_t nchars, encoding_t *encp, memBufSource src); -extern bool Yap_set_stream_to_buf(struct stream_desc *st, const char *buf, - encoding_t enc, size_t nchars); extern int Yap_open_buf_write_stream(encoding_t enc, memBufSource src); extern Term Yap_BufferToTerm(const unsigned char *s, Term opts); extern X_API Term Yap_BufferToTermWithPrioBindings(const unsigned char *s, @@ -151,4 +151,8 @@ INLINE_ONLY inline EXTERN Term MkCharTerm(Int c) { extern uint64_t Yap_StartOfWTimes; extern bool Yap_HandleSIGINT(void); + + +extern bool Yap_set_stream_to_buf(StreamDesc *st, const char *buf, size_t nchars USES_REGS); + #endif diff --git a/packages/CLPBN/clpbn/horus.yap b/packages/CLPBN/clpbn/horus.yap index 03d5662ff..261f69088 100644 --- a/packages/CLPBN/clpbn/horus.yap +++ b/packages/CLPBN/clpbn/horus.yap @@ -19,7 +19,7 @@ ]). -:- catch(load_foreign_files([horus], [], init_predicates), _, patch_things_up) +:- catch(load_foreign_files([libhorus], [], init_predicates), _, patch_things_up) -> true ; warning. diff --git a/packages/CLPBN/horus/CMakeLists.txt b/packages/CLPBN/horus/CMakeLists.txt index 2723127cd..e8dcf3c8f 100644 --- a/packages/CLPBN/horus/CMakeLists.txt +++ b/packages/CLPBN/horus/CMakeLists.txt @@ -58,7 +58,7 @@ if (CMAKE_MAJOR_VERSION GREATER 2) #set_property(TARGET horus PROPERTY CXX_STANDARD 11) #set_property(TARGET horus PROPERTY CXX_STANDARD_REQUIRED ON) - set_target_properties (horus PROPERTIES PREFIX "" CXX_STANDARD 11 CXX_STANDARD_REQUIRED ON) + set_target_properties (horus PROPERTIES CXX_STANDARD 11 CXX_STANDARD_REQUIRED ON) add_executable (HorusCli HorusCli.cpp) diff --git a/packages/bdd/CMakeLists.txt b/packages/bdd/CMakeLists.txt index 4b4e44d34..e2d1d9039 100644 --- a/packages/bdd/CMakeLists.txt +++ b/packages/bdd/CMakeLists.txt @@ -46,9 +46,7 @@ IF (CUDD_FOUND) ) endif() - set_target_properties (cudd PROPERTIES PREFIX "") - - add_subdirectory(simplecudd) + add_subdirectory(simplecudd) add_subdirectory(simplecudd_lfi) set(YAP_SYSTEM_OPTIONS "cudd " ${YAP_SYSTEM_OPTIONS} PARENT_SCOPE) diff --git a/packages/bdd/bdd.yap b/packages/bdd/bdd.yap index 0544f263d..a2ed5bb1c 100644 --- a/packages/bdd/bdd.yap +++ b/packages/bdd/bdd.yap @@ -52,7 +52,7 @@ The following predicates construct a BDD: tell_warning :- print_message(warning,functionality(cudd)). -:- catch(load_foreign_files([cudd], [], init_cudd),_,fail) -> true ; tell_warning. +:- catch(load_foreign_files([libcudd], [], init_cudd),_,fail) -> true ; tell_warning. /** @pred bdd_new(? _Exp_, - _BddHandle_) diff --git a/packages/myddas/pl/CMakeLists.txt b/packages/myddas/pl/CMakeLists.txt index 6456b54f2..7990e261e 100644 --- a/packages/myddas/pl/CMakeLists.txt +++ b/packages/myddas/pl/CMakeLists.txt @@ -11,18 +11,19 @@ set(MYDDAS_YPP set(MYDDAS_DRIVERS "myddas_driver.ypp" ) -message("libpl ${libpl}") -if (0) - set (PREFIX ${libpl} ) + + + if (ANDROID) + set (MYDDAS_PREFIX ${libpl} ) else() - set (PREFIX ${CMAKE_CURRENT_BINARY_DIR} ) + set (MYDDAS_PREFIX ${CMAKE_CURRENT_BINARY_DIR} ) endif() get_property(MYDDAS_FLAGS GLOBAL PROPERTY COMPILE_DEFINITIONS) function(cpp_compile output filename) get_filename_component(base ${filename} NAME_WE) - set(base_abs ${PREFIX}/${base}) + set(base_abs ${MYDDAS_PREFIX}/${base}) set(outfile ${base_abs}.yap) set(${output} ${${output}} ${outfile} PARENT_SCOPE) IF (MSVC) @@ -40,17 +41,13 @@ function(cpp_compile output filename) endfunction() if (ANDROID) -set (MYDDAS_PL_OUTDIR ${YAP_APP_DIR}/src/generated/assets/Yap} ) +set (MYDDAS_PL_OUTDIR ${YAP_APP_DIR}/src/generated/assets/Yap ) else() set (MYDDAS_PL_OUTDIR ${CMAKE_CURRENT_BINARY_DIR} ) endif() function(cpp_driver output dbms filename) - if (0) - set(outfile ${MYDDAS_PL_OUTDIR}/myddas_${dbms}.yap) - else() - set(outfile ${MYDDAS_PL_OUTDIR}/myddas_${dbms}.yap) - endif() + set(outfile ${MYDDAS_PL_OUTDIR}/myddas_${dbms}.yap) set(${output} ${${output}} ${outfile} PARENT_SCOPE) IF (MSVC) add_custom_command( diff --git a/packages/myddas/pl/myddas_driver.ypp b/packages/myddas/pl/myddas_driver.ypp index 40c3ad71b..ab14beeca 100644 --- a/packages/myddas/pl/myddas_driver.ypp +++ b/packages/myddas/pl/myddas_driver.ypp @@ -18,21 +18,21 @@ #undef sqlite3 #define DBMS(x) sqlite3_##x #define c_DBMS(x) c_sqlite3_##x -#define NAME() 'Yapsqlite3' +#define NAME() 'libYapsqlite3' #define MODULE() myddas_sqlite3 #define INIT() init_sqlite3 #elif defined( odbc ) #undef odbc #define DBMS(x) odbc_##x #define c_DBMS(x) c_odbc_##x -#define NAME() 'Yapodbc' +#define NAME() 'libYapodbc' #define MODULE() myddas_odbc #define INIT() init_odbc #elif defined( postgres ) #undef postgres #define DBMS(x) postgres_##x #define c_DBMS(x) c_postgres_##x -#define NAME() 'Yappostgres' +#define NAME() 'libYappostgres' #define MODULE() myddas_postgres #define INIT() init_odbc #endif diff --git a/packages/myddas/sqlite3/CMakeLists.txt b/packages/myddas/sqlite3/CMakeLists.txt index 91c76b649..c069ab12f 100644 --- a/packages/myddas/sqlite3/CMakeLists.txt +++ b/packages/myddas/sqlite3/CMakeLists.txt @@ -60,7 +60,6 @@ set_target_properties(Yapsqlite3 # RPATH ${libdir} VERSION ${LIBYAPTAI_FULL_VERSION} # SOVERSION ${LIBYAPTAI_MAJOR_VERSION}.${LIBYAPTAI_MINOR_VERSION} POSITION_INDEPENDENT_CODE TRUE - PREFIX "" ) target_link_libraries(Yapsqlite3 libYap) diff --git a/packages/swig/android/CMakeLists.txt b/packages/swig/android/CMakeLists.txt index 95f8d281c..95a1275d0 100644 --- a/packages/swig/android/CMakeLists.txt +++ b/packages/swig/android/CMakeLists.txt @@ -1,72 +1,73 @@ +include (UseSWIG) + +INCLUDE_DIRECTORIES( + ../../../H + ../../../H/generated + ../../../OPTYap + ../../../include + ../../../CXX + . + .. + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ) + +set_property(GLOBAL + APPEND PROPERTY + COMPILE_DEFINITIONS + -Dmmap=mmap64) + # This is a CMake file for SWIG and Android -FILE( MAKE_DIRECTORY ${YAP_APP_DIR}/src/generated/java/pt/up/yap/lib ) -FILE( MAKE_DIRECTORY ${YAP_APP_DIR}/src/generated/assets) set(CMAKE_SWIG_OUTDIR ${YAP_APP_DIR}/src/generated/java/pt/up/yap/lib ) - set( SWIG_MODULE_NAME pt.up.yap.lib ) - set ( pllib ${YAP_APP_DIR}/src/generated/assets/Yap ) - set ( SWIG_SOURCES ${CMAKE_SOURCE_DIR}/packages/swig/yap.i ) - SET_SOURCE_FILES_PROPERTIES(${SWIG_SOURCES} PROPERTIES CPLUSPLUS ON) +FILE( MAKE_DIRECTORY ${YAP_APP_DIR}/src/generated/assets) +FILE( MAKE_DIRECTORY ${CMAKE_SWIG_OUTDIR}) + set(SWIG_OUTFILE_DIR ${CMAKE_CURRENT_BINARY_DIR} ) + set_property(SOURCE ../yap.i PROPERTY CPLUSPLUS ON) + SET_SOURCE_FILES_PROPERTIES(../yap.i PROPERTIES SWIG_FLAGS "-O;-package;pt.up.yap.lib;-D__ANDROID__=1") - include_directories ( - ${CMAKE_SOURCE_DIR}/CXX - ) - set( GMP_ROOT ${CMAKE_SOURCE_DIR}/../gmp/${ANDROID_ABI} ) - set (GMP_INCLUDE_DIRS ${GMP_ROOT}) - set (GMP_LIBRARIES ${GMP_ROOT}/libgmp.so) + set( SWIG_PACKAGE_NAME pt.up.yap.lib ) + +set (SWIG_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/../yap.i ) - add_custom_command (OUTPUT yap_swig.cpp - COMMAND ${CMAKE_COMMAND} -E make_directory ${pllib} - COMMAND ${CMAKE_COMMAND} -E make_directory ${pllib}/pl - COMMAND ${CMAKE_COMMAND} -E make_directory ${pllib}/os + add_custom_command( OUTPUT ${SWIG_OUTFILE_DIR}/yapJAVA.cxx + COMMAND ${SWIG_EXECUTABLE} -c++ -java -O -package "pt.up.yap.lib" -I${CMAKE_SOURCE_DIR}/H -I${CMAKE_SOURCE_DIR}/H/generated -I${CMAKE_SOURCE_DIR}/include + -I${CMAKE_SOURCE_DIR}/OPTYap -I${CMAKE_SOURCE_DIR}/os -I${CMAKE_SOURCE_DIR}/utf8proc -I.././.. -I${CMAKE_SOURCE_DIR}/CXX -I${CMAKE_SOURCE_DIR}/packages/python + -outdir ${CMAKE_SWIG_OUTDIR} -I${GMP_INCLUDE_DIRS} -D__ANDROID__=1 -DX_API="" -o ${SWIG_OUTFILE_DIR}/yapJAVA.cxx -oh ${SWIG_OUTFILE_DIR}/yapJAVA.hh ${CMAKE_CURRENT_SOURCE_DIR}/../yap.i + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + DEPENDS ${SWIG_SOURCES} + ) - COMMAND ${CMAKE_COMMAND} -E copy ${pl_library} ${pllib} - COMMAND ${CMAKE_COMMAND} -E copy ${pl_boot_library} ${pllib}/pl - COMMAND ${CMAKE_COMMAND} -E copy ${pl_os_library} ${pllib}/os - COMMAND ${SWIG_EXECUTABLE} -c++ -java -package ${SWIG_MODULE_NAME} -outdir ${CMAKE_SWIG_OUTDIR} -outcurrentdir -addextern -I${CMAKE_SOURCE_DIR}/CXX -I${CMAKE_SOURCE_DIR}/include -I${CMAKE_SOURCE_DIR}/H -I${CMAKE_SOURCE_DIR}/os -I${CMAKE_SOURCE_DIR}/OPTYap -I${CMAKE_BINARY_DIR} -I${GMP_INCLUDE_DIRS} -DX_API="" -o yap_swig.cpp ${SWIG_SOURCES} - DEPENDS ${SWIG_SOURCES} YAP++ - ) +ADD_LIBRARY(YAPJava + SHARED + ${SWIG_OUTFILE_DIR}/yapJAVA.cxx + ) - add_custom_command (OUTPUT swig_streamer.cpp - COMMAND ${SWIG_EXECUTABLE} -c++ -java -package ${SWIG_MODULE_NAME} -outdir ${CMAKE_SWIG_OUTDIR} -outcurrentdir -addextern -I${CMAKE_CURRENT_SOURCE_DIR} -o swig_streamer.cpp streamer.i - DEPENDS streamer.i - ) +target_link_libraries(YAPJava YAP++ libYap android log) + + set_property(SOURCE streamer.i PROPERTY CPLUSPLUS ON) + SET_SOURCE_FILES_PROPERTIES(streamer.i PROPERTIES SWIG_FLAGS "-O;-package;pt.up.yap.lib;-D__ANDROID__=1") - # GMP_FOUND - true if GMP/MPIR was found - # GMP_INCLUDE_DIRS - include search path - # GMP_LIBRARIES - libraries to link with - #config.h needs this (TODO: change in code latter) - include_directories( .;${GMP_INCLUDE_DIRS};${CMAKE_SOURCE_DIR}/include;${CMAKE_SOURCE_DIR}/H;${CMAKE_SOURCE_DIR}/H/generated;${CMAKE_SOURCE_DIR}/os;${CMAKE_SOURCE_DIR}/OPTYap;${CMAKE_BINARY_DIR};${CMAKE_CURRENT_SOURCE_DIR} ) +set (SWIG_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/streamer.i) + add_custom_command( OUTPUT ${SWIG_OUTFILE_DIR}/streamerJAVA.cxx + COMMAND ${SWIG_EXECUTABLE} -c++ -java -O -package "pt.up.yap.lib" -O -I${CMAKE_SOURCE_DIR}/H -I${CMAKE_SOURCE_DIR}/H/generated -I${CMAKE_SOURCE_DIR}/include + -I${CMAKE_SOURCE_DIR}/OPTYap -I${CMAKE_SOURCE_DIR}/os -I${CMAKE_SOURCE_DIR}/utf8proc -I.././.. -I${CMAKE_SOURCE_DIR}/CXX -I${CMAKE_SOURCE_DIR}/packages/python + -outdir ${CMAKE_SWIG_OUTDIR} -I${GMP_INCLUDE_DIRS} -D__ANDROID__=1 -DX_API="" -o ${SWIG_OUTFILE_DIR}/streamerJAVA.cxx -oh ${SWIG_OUTFILE_DIR}/streamerJAVA.hh ${CMAKE_CURRENT_SOURCE_DIR}/streamer.i + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + DEPENDS ${SWIG_SOURCES} + ) - add_lib(YAPJava - yap_swig.cpp swig_streamer.cpp streamer.cpp streamer.h - ) - target_link_libraries(YAPJava ${GMP_LIBRARIES} ) +ADD_LIBRARY(YAPStreamer + SHARED # [TYPE ] + ${CMAKE_CURRENT_SOURCE_DIR}/streamer.cpp ${SWIG_OUTFILE_DIR}/streamerJAVA.cxx + ) +target_link_libraries(YAPStreamer YAP++ libYap android log) - target_link_libraries( YAPJava YAP++ libYap android log) - - if (FALSE) - - set (SWIG_ADD_MODULE YAPJava SHARED CPLUPLUS ${SWIG_SOURCES} ) - # Define swig module with given name and specified language - - - set (SWIG_LINK_LIBRARIES YAPJava YAP++ libYAP ) - #- Link libraries to swig module - - - add_library (YAPJavaTop SHARED - main.cpp main.h - ) - - target_link_libraries( YAPJavaTop ${SWIG_MODULE_${YAPJava}_REAL_NAME} YAP++ libYap android) - - endif() diff --git a/packages/swig/yap.i b/packages/swig/yap.i index 3bd39b175..ca5af193a 100644 --- a/packages/swig/yap.i +++ b/packages/swig/yap.i @@ -285,346 +285,6 @@ class YAPEngine; #if THREADS #define Yap_regp regcache - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #endif // we cannot consult YapInterface.h, that conflicts with what we @@ -661,6 +321,7 @@ class YAPEngine; //%feature("novaluewrapper") vector; + }; %init %{ diff --git a/pl/CMakeLists.txt b/pl/CMakeLists.txt index c4fa9466f..484fd912d 100644 --- a/pl/CMakeLists.txt +++ b/pl/CMakeLists.txt @@ -58,7 +58,12 @@ set(PL_BOOT_SOURCES add_to_group(PL_BOOT_SOURCES pl_boot_library) -if (CMAKE_CROSSCOMPILING) +if (ANDROID) + add_custom_target(STARTUP + DEPENDS ${PL_BOOT_SOURCES} + ) + file (INSTALL ${PL_BOOT_SOURCES} DESTINATION ${libpl}/pl) +elseif(CMAKE_CROSSCOMPILING) add_custom_target(STARTUP ALL SOURCES DEPENDS ${PL_BOOT_SOURCES} ) @@ -67,7 +72,6 @@ else () DEPENDS ${CMAKE_TOP_BINARY_DIR}/${YAP_STARTUP} ) add_custom_command(OUTPUT ${CMAKE_TOP_BINARY_DIR}/${YAP_STARTUP} - COMMAND ldd yap COMMAND ./yap -B VERBATIM WORKING_DIRECTORY ${CMAKE_TOP_BINARY_DIR} @@ -79,7 +83,7 @@ install(FILES ${CMAKE_TOP_BINARY_DIR}/${YAP_STARTUP} ) endif() + install(FILES ${PL_SOURCES} DESTINATION ${libpl}/pl ) - From 8feca162bf36da91f2d306167d8ce704e93400b7 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Mon, 27 Nov 2017 13:36:19 +0000 Subject: [PATCH 02/14] android --- C/adtdefs.c | 3 +- C/alloc.c | 9 ++-- C/c_interface.c | 46 ++++++++++-------- C/cdmgr.c | 43 ++++++++--------- C/text.c | 2 +- C/yap-args.c | 6 ++- CMakeLists.txt | 2 +- CXX/yapi.cpp | 4 +- CXX/yapq.hh | 91 ++++++++++++++++++------------------ H/YapText.h | 2 +- H/clause.h | 2 +- include/YapDefs.h | 5 +- os/assets.c | 31 ++++++------ os/iopreds.c | 75 +++++++++++++++++++++++++++-- os/iopreds.h | 4 -- os/sysbits.c | 18 +++---- os/yapio.h | 11 ++++- packages/cplint/cplint_yap.c | 8 ++-- 18 files changed, 221 insertions(+), 141 deletions(-) diff --git a/C/adtdefs.c b/C/adtdefs.c index 42b19b309..e79ffb87a 100755 --- a/C/adtdefs.c +++ b/C/adtdefs.c @@ -134,11 +134,12 @@ inline static Atom SearchInInvisible(const unsigned char *atom) { static inline Atom SearchAtom(const unsigned char *p, Atom a) { AtomEntry *ae; + const char *ps = (const char *)p; /* search atom in chain */ while (a != NIL) { ae = RepAtom(a); - if (strcmp(ae->UStrOfAE, p) == 0) { + if (strcmp(ae->StrOfAE, ps) == 0) { return (a); } a = ae->NextOfAE; diff --git a/C/alloc.c b/C/alloc.c index 8c5bc307f..eb457fdf4 100644 --- a/C/alloc.c +++ b/C/alloc.c @@ -77,10 +77,11 @@ void *my_malloc(size_t sz) { p = malloc(sz); // Yap_DebugPuts(stderr,"gof\n"); if (Yap_do_low_level_trace) +#if __ANDROID__ + __android_log_print(ANDROID_LOG_ERROR, "YAPDroid ", "+ %d %p", write_malloc,p); +#else fprintf(stderr, "+s %p\n @%p %ld\n", p, TR, LCL0 - (CELL *)LCL0); - if (sz > 500 && write_malloc++ > 0) - __android_log_print(ANDROID_LOG_ERROR, "YAPDroid ", "+ %d %p", write_malloc, - p); +#endif return p; } @@ -100,7 +101,7 @@ void *my_realloc(void *ptr, size_t sz) { void my_free(void *p) { // printf("f %p\n",p); if (Yap_do_low_level_trace) - fprintf(stderr, "- %p\n @%p %ld\n", p, TR, LCL0 - (CELL *)LCL0); + fprintf(stderr, "- %p\n @%p %ld\n", p, TR, (long int)(LCL0 - (CELL *)B) ); if (write_malloc && write_malloc++ > 0) __android_log_print(ANDROID_LOG_ERROR, "YAPDroid ", "- %d %p", write_malloc, p); diff --git a/C/c_interface.c b/C/c_interface.c index 01cd34c3a..3bb5ea3bc 100755 --- a/C/c_interface.c +++ b/C/c_interface.c @@ -2112,38 +2112,39 @@ X_API void YAP_ClearExceptions(void) { Yap_ResetException(worker_id); } -X_API int YAP_InitConsult(int mode, const char *filename, char *full, +X_API int YAP_InitConsult(int mode, const char *fname, char *full, int *osnop) { CACHE_REGS - FILE *f = NULL; int sno; BACKUP_MACHINE_REGS(); - + int lvl = push_text_stack(); if (mode == YAP_BOOT_MODE) { mode = YAP_CONSULT_MODE; } + char *bfp = Malloc(YAP_FILENAME_MAX+1); + bfp[0] = '\0'; + if(fname != NULL && fname[0] != 0 ) + strcpy( bfp, fname ); bool consulted = (mode == YAP_CONSULT_MODE); - Yap_init_consult(consulted, filename); - const char *fl = Yap_findFile(filename, NULL, BootFilePath, full, true, + const char *fl = Yap_findFile(bfp, NULL, NULL, full, true, YAP_BOOT_PL, true, true); - if (!fl) - return -1; - f = fopen(fl, "r"); - if (!f) - return -1; - if (!f) { + if (!fl || !fl[0]) { + pop_text_stack(lvl); return -1; } - sno = Yap_OpenStream(f, NULL, TermNil, Input_Stream_f); + Yap_init_consult(consulted,bfp); + sno = Yap_OpenStream(fl, "r" ); *osnop = Yap_CheckAlias(AtomLoopStream); if (!Yap_AddAlias(AtomLoopStream, sno)) { Yap_CloseStream(sno); - sno = -1; + pop_text_stack(lvl); + sno = -1; } GLOBAL_Stream[sno].name = Yap_LookupAtom(fl); - GLOBAL_Stream[sno].user_name = MkAtomTerm(Yap_LookupAtom(filename)); - GLOBAL_Stream[sno].encoding = ENC_ISO_UTF8; - RECOVER_MACHINE_REGS(); + GLOBAL_Stream[sno].user_name = MkAtomTerm(Yap_LookupAtom(fname)); + GLOBAL_Stream[sno].encoding = LOCAL_encoding; + pop_text_stack(lvl); + RECOVER_MACHINE_REGS(); UNLOCK(GLOBAL_Stream[sno].streamlock); return sno; } @@ -2181,7 +2182,7 @@ X_API void YAP_EndConsult(int sno, int *osnop) { X_API Term YAP_Read(FILE *f) { Term o; - int sno = Yap_OpenStream(f, NULL, TermNil, Input_Stream_f); + int sno = Yap_FileStream(f, NULL, TermNil, Input_Stream_f); BACKUP_MACHINE_REGS(); o = Yap_read_term(sno, TermNil, 1); @@ -2210,7 +2211,7 @@ X_API Term YAP_ReadClauseFromStream(int sno) { X_API void YAP_Write(Term t, FILE *f, int flags) { BACKUP_MACHINE_REGS(); - int sno = Yap_OpenStream(f, NULL, TermNil, Output_Stream_f); + int sno = Yap_FileStream(f, NULL, TermNil, Output_Stream_f); Yap_plwrite(t, GLOBAL_Stream + sno, 0, flags, GLOBAL_MaxPriority); Yap_ReleaseStream(sno); @@ -2453,7 +2454,12 @@ free(full); if (yap_init->SavedState == NULL) { yap_init->SavedState = YAP_STARTUP; } - + if (!LOCAL_TextBuffer) +LOCAL_TextBuffer = Yap_InitTextAllocator(); +#if __ANDROID__ + //if (yap_init->assetManager) + Yap_InitAssetManager( ); +#endif #if USE_DL_MALLOC if (yap_init->SavedState == NULL) yap_init->SavedState = YAP_STARTUP; @@ -2655,7 +2661,7 @@ free(full); #define DEFAULT_SCHEDULERLOOP 10 #define DEFAULT_DELAYEDRELEASELOAD 3 - X_API YAP_file_type_t YAP_FastInit(char saved_state[], int argc, char *argv[]) { + X_API YAP_file_type_t YAP_FastInit(char *saved_state, int argc, char *argv[]) { YAP_init_args init_args; YAP_file_type_t out; diff --git a/C/cdmgr.c b/C/cdmgr.c index 791998a3e..fbdeb8e46 100644 --- a/C/cdmgr.c +++ b/C/cdmgr.c @@ -1873,8 +1873,6 @@ bool Yap_addclause(Term t, yamop *cp, Term tmode, Term mod, Term *t4ref) } else { tf = Yap_MkStaticRefTerm(ClauseCodeToStaticClause(cp), p); } - __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "add %s/%ld %p", - RepAtom(at)->StrOfAE, Arity); if (mod == PROLOG_MODULE) mod = TermProlog; if (pflags & MultiFileFlag) { @@ -2059,36 +2057,33 @@ Atom Yap_ConsultingFile(USES_REGS1) { if (LOCAL_consult_level == 0) { return (AtomUser); } else { - return (Yap_ULookupAtom(LOCAL_ConsultBase[2].filename)); + return (Yap_ULookupAtom(LOCAL_ConsultBase[2].f_name)); } } /* consult file *file*, *mode* may be one of either consult or reconsult */ -static void init_consult(int mode, const unsigned char *file) { - CACHE_REGS - if (!LOCAL_ConsultSp) { - InitConsultStack(); - } - if (LOCAL_ConsultSp >= LOCAL_ConsultLow + 6) { - expand_consult(); - } - LOCAL_ConsultSp--; - LOCAL_ConsultSp->filename = file; - LOCAL_ConsultSp--; - LOCAL_ConsultSp->mode = mode; - LOCAL_ConsultSp--; - LOCAL_ConsultSp->c = (LOCAL_ConsultBase - LOCAL_ConsultSp); - LOCAL_ConsultBase = LOCAL_ConsultSp; +void Yap_init_consult(int mode, const char *filenam) { + CACHE_REGS + if (!LOCAL_ConsultSp) { + InitConsultStack(); + } + if (LOCAL_ConsultSp >= LOCAL_ConsultLow + 6) { + expand_consult(); + } + LOCAL_ConsultSp--; + LOCAL_ConsultSp->f_name = (const unsigned char *)filenam; + LOCAL_ConsultSp--; + LOCAL_ConsultSp->mode = mode; + LOCAL_ConsultSp--; + LOCAL_ConsultSp->c = (LOCAL_ConsultBase - LOCAL_ConsultSp); + LOCAL_ConsultBase = LOCAL_ConsultSp; #if !defined(YAPOR) && !defined(YAPOR_SBA) /* if (LOCAL_consult_level == 0) do_toggle_static_predicates_in_use(TRUE); */ #endif - LOCAL_consult_level++; - LOCAL_LastAssertedPred = NULL; -} + LOCAL_consult_level++; + LOCAL_LastAssertedPred = NULL; -void Yap_init_consult(int mode, const char *file) { - init_consult(mode, (const unsigned char *)file); } static Int p_startconsult(USES_REGS1) { /* '$start_consult'(+Mode) */ @@ -2097,7 +2092,7 @@ static Int p_startconsult(USES_REGS1) { /* '$start_consult'(+Mode) */ int mode; mode = strcmp("consult", (char *)smode); - init_consult(mode, RepAtom(AtomOfTerm(Deref(ARG2)))->UStrOfAE); + Yap_init_consult(mode, RepAtom(AtomOfTerm(Deref(ARG2)))->StrOfAE); t = MkIntTerm(LOCAL_consult_level); return (Yap_unify_constant(ARG3, t)); } diff --git a/C/text.c b/C/text.c index e88b7bfd9..71ea38488 100644 --- a/C/text.c +++ b/C/text.c @@ -82,7 +82,7 @@ int pop_text_stack__(int i) { return lvl; } -void *pop_output_text_stack__(int i, void *export) { +void *pop_output_text_stack__(int i, const void *export) { int lvl = LOCAL_TextBuffer->lvl; while (lvl >= i) { struct mblock *p = LOCAL_TextBuffer->first[lvl]; diff --git a/C/yap-args.c b/C/yap-args.c index 9efbace59..7e646e8b0 100755 --- a/C/yap-args.c +++ b/C/yap-args.c @@ -147,12 +147,14 @@ static int dump_runtime_variables(void) { return 1; } -YAP_file_type_t Yap_InitDefaults(YAP_init_args *iap, char saved_state[], +YAP_file_type_t Yap_InitDefaults(YAP_init_args *iap, char *saved_state, int argc, char *argv[]) { memset(iap, 0, sizeof(YAP_init_args)); #if __ANDROID__ iap->boot_file_type = YAP_BOOT_PL; - iap->SavedState = NULL; + iap->SavedState = malloc(strlen(saved_state)+1); + strcpy(iap->SavedState, saved_state); + iap->assetManager = true; #else iap->boot_file_type = YAP_QLY; iap->SavedState = saved_state; diff --git a/CMakeLists.txt b/CMakeLists.txt index 4935f2648..f70b7ec6f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -464,7 +464,7 @@ IF (WITH_SWIG) # macro_log_feature (SWIG_FOUND "Swig" # "Use SWIG Interface Generator " # "http://www.swig.org" ON) -ENDIF (WITH_SWIG OR ANDROID) +ENDIF (WITH_SWIG) option(WITH_PYTHON diff --git a/CXX/yapi.cpp b/CXX/yapi.cpp index d4fba99d0..f6fc2f3ea 100644 --- a/CXX/yapi.cpp +++ b/CXX/yapi.cpp @@ -927,7 +927,7 @@ void Yap_displayWithJava(int c) void YAPEngine::doInit(YAP_file_type_t BootMode) { - if ((BootMode = YAP_Init(&engine_args->init_args)) == YAP_FOUND_BOOT_ERROR) + if ((BootMode = YAP_Init(engine_args)) == YAP_FOUND_BOOT_ERROR) { return; throw YAPError(); @@ -960,7 +960,7 @@ YAPEngine::YAPEngine(int argc, char *argv[], YAP_file_type_t BootMode; engine_args = new YAPEngineArgs(); - BootMode = YAP_parse_yap_arguments(argc, argv, &engine_args->init_args); + BootMode = YAP_parse_yap_arguments(argc, argv, engine_args); // delYAPCallback()b // if (cb) // setYAPCallback(cb); diff --git a/CXX/yapq.hh b/CXX/yapq.hh index 0d1cfb849..090d44d0d 100644 --- a/CXX/yapq.hh +++ b/CXX/yapq.hh @@ -185,178 +185,179 @@ public: virtual void run(char *s) {} }; +void YAP_init_args::YAP_init_args() +{ + Yap_InitDefaults(this, NULL, 0, NULL); +} ; /// @brief Setup all arguments to a new engine -class X_API YAPEngineArgs { - +struct X_API YAPEngineArgs: YAP_init_args { public: - YAP_init_args init_args; + YAPEngineArgs(): yap_boot_params() { + #if YAP_PYTHON + Embedded = true; + python_in_python = Py_IsInitialized(); +#endif + }; inline void setEmbedded( bool fl ) { - init_args.Embedded = fl; + Embedded = fl; }; inline bool getEmbedded( ) { - return init_args.Embedded; + return Embedded; }; inline void setStackSize( bool fl ) { - init_args.StackSize = fl; + StackSize = fl; }; inline bool getStackSize( ) { - return init_args.StackSize; + return StackSize; }; inline void setTrailSize( bool fl ) { - init_args.TrailSize = fl; + TrailSize = fl; }; inline bool getTrailSize( ) { - return init_args.TrailSize; + return TrailSize; }; inline bool getMStackSize( ) { - return init_args.StackSize; + return StackSize; }; inline void setMaxTrailSize( bool fl ) { - init_args.MaxTrailSize = fl; + MaxTrailSize = fl; }; inline bool getMaxTrailSize( ) { - return init_args.MaxTrailSize; + return MaxTrailSize; }; inline void setYapLibDir( const char * fl ) { - init_args.YapLibDir = (const char *)malloc(strlen(fl)+1); - strcpy((char *)init_args.YapLibDir, fl); + YapLibDir = (const char *)malloc(strlen(fl)+1); + strcpy((char *)YapLibDir, fl); }; inline const char * getYapLibDir( ) { - return init_args.YapLibDir; + return YapLibDir; }; inline void setYapShareDir( const char * fl ) { - init_args.YapShareDir = (const char *)malloc(strlen(fl)+1); - strcpy((char *)init_args.YapShareDir, fl); + YapShareDir = (const char *)malloc(strlen(fl)+1); + strcpy((char *)YapShareDir, fl); }; inline const char * getYapShareDir( ) { - return init_args.YapShareDir; + return YapShareDir; }; inline void setSavedState( const char * fl ) { - init_args.SavedState = (const char *)malloc(strlen(fl)+1); - strcpy((char *)init_args.SavedState, fl); + SavedState = (const char *)malloc(strlen(fl)+1); + strcpy((char *)SavedState, fl); }; inline const char * getSavedState( ) { - return init_args.SavedState; + return SavedState; }; inline void setYapPrologBootFile( const char * fl ) { - init_args.YapPrologBootFile = (const char *)malloc(strlen(fl)+1); - strcpy((char *)init_args.YapPrologBootFile, fl); + YapPrologBootFile = (const char *)malloc(strlen(fl)+1); + strcpy((char *)YapPrologBootFile, fl); }; inline const char * getYapPrologBootFile( ) { - return init_args.YapPrologBootFile; + return YapPrologBootFile; }; inline void setYapPrologGoal( const char * fl ) { - init_args.YapPrologGoal = fl; + YapPrologGoal = fl; }; inline const char * getYapPrologGoal( ) { - return init_args.YapPrologGoal; + return YapPrologGoal; }; inline void setYapPrologTopLevelGoal( const char * fl ) { - init_args.YapPrologTopLevelGoal = fl; + YapPrologTopLevelGoal = fl; }; inline const char * getYapPrologTopLevelGoal( ) { - return init_args.YapPrologTopLevelGoal; + return YapPrologTopLevelGoal; }; inline void setHaltAfterConsult( bool fl ) { - init_args.HaltAfterConsult = fl; + HaltAfterConsult = fl; }; inline bool getHaltAfterConsult( ) { - return init_args.HaltAfterConsult; + return HaltAfterConsult; }; inline void setFastBoot( bool fl ) { - init_args.FastBoot = fl; + FastBoot = fl; }; inline bool getFastBoot( ) { - return init_args.FastBoot; + return FastBoot; }; #if __ANDROID__ //> export ResoourceManager inline void setAssetManager( AAssetManager *mgr ) { - init_args.assetManager = mgr; + assetManager = mgr; }; #endif inline void setArgc( int fl ) { - init_args.Argc = fl; + Argc = fl; }; inline int getArgc( ) { - return init_args.Argc; + return Argc; }; inline void setArgv( char ** fl ) { - init_args.Argv = fl; + Argv = fl; }; inline char ** getArgv( ) { - return init_args.Argv; + return Argv; }; - YAPEngineArgs() { - Yap_InitDefaults(&init_args, NULL, 0, NULL); -#if YAP_PYTHON - init_args.Embedded = true; - python_in_python = Py_IsInitialized(); -#endif - }; }; @@ -381,7 +382,7 @@ private: YAPEngine(YAPEngineArgs *cargs) { engine_args = cargs; - //doInit(cargs->init_args.boot_file_type); + //doInit(cargs->boot_file_type); doInit(YAP_QLY); }; /// construct a new engine, including aaccess to callbacks /// construct a new engine using argc/argv list of arguments diff --git a/H/YapText.h b/H/YapText.h index e99edc6a0..89f4a4127 100644 --- a/H/YapText.h +++ b/H/YapText.h @@ -67,7 +67,7 @@ extern int pop_text_stack__(int lvl USES_REGS); (/*fprintf(stderr, "v %*c %s:%s:%d\n", AllocLevel(), ' ', __FILE__, \ __FUNCTION__, __LINE__),*/ \ pop_output_text_stack__(lvl,p)) -extern void *pop_output_text_stack__(int lvl, void *ox USES_REGS); +extern void *pop_output_text_stack__(int lvl, const void *ox USES_REGS); /****************** character definition table **************************/ diff --git a/H/clause.h b/H/clause.h index 0472868bc..e5768c202 100644 --- a/H/clause.h +++ b/H/clause.h @@ -24,7 +24,7 @@ /* consulting files */ typedef union CONSULT_OBJ { - const unsigned char *filename; + const unsigned char *f_name; int mode; Prop p; UInt c; diff --git a/include/YapDefs.h b/include/YapDefs.h index f02fc29df..3f11e3218 100755 --- a/include/YapDefs.h +++ b/include/YapDefs.h @@ -351,11 +351,14 @@ typedef struct yap_boot_params { int ErrorNo; //> errorstring char *ErrorCause; +#ifdef __cplusplus +void YAP_init_args(); +#endif } YAP_init_args; #ifdef YAP_H YAP_file_type_t Yap_InitDefaults(YAP_init_args *init_args, char saved_state[], - int Argc, char *Argv[]); + int Argc, char **Argv); #endif /* this should be opaque to the user */ diff --git a/os/assets.c b/os/assets.c index 40616e121..96f713869 100644 --- a/os/assets.c +++ b/os/assets.c @@ -40,16 +40,14 @@ static char SccsId[] = "%W% %G%"; AAssetManager * Yap_assetManager; -jboolean Java_pt_up_yap_app_assetAssetManager(JNIEnv* env, jclass clazz, jobject assetManager) +jboolean Java_pt_up_yap_app_YAPDroid_setAssetManager(JNIEnv* env, jclass clazz, jobject assetManager) { Yap_assetManager = AAssetManager_fromJava(env, assetManager); - +return true; } static void * -open_asset__ - ( int sno, const char *fname, const char - *io_mode) +open_asset__( int sno, const char *fname, const char *io_mode) { int mode; const void *buf; @@ -57,14 +55,16 @@ open_asset__ if (strstr(fname,"/assets") == fname) { // we're in if ( Yap_assetManager == NULL) { - return PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, + PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, "asset manager", fname); + return NULL; } if (strchr(io_mode, 'w') || strchr(io_mode, 'a')) { - return PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, + PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, "%s: no writing but flags are %s", fname, io_mode); + return NULL; } if (strchr(io_mode, 'B')) mode = AASSET_MODE_BUFFER; @@ -85,13 +85,13 @@ open_asset__ } else if ((buf = AAsset_getBuffer(a))) { // copy to memory bool rc = Yap_set_stream_to_buf(st, buf, sz); - AAsset_close(a); - return rc; + if (rc) AAsset_close(a); + return st; } // should be done, but if not GLOBAL_Stream[sno].vfs_handle= a; st->vfs = me; - return true; + return a; } return NULL; } @@ -169,14 +169,14 @@ bool is_dir_a( VFS_t *me,const char *dirName) } static -bool exists_a(VFS_t *me, const char *dirName) +VFS_t *exists_a(VFS_t *me, const char *dirName) { // try not to use it as an asset AAsset *d = AAssetManager_open ( Yap_assetManager, dirName, AASSET_MODE_UNKNOWN); if (d == NULL) - return false; + return NULL; AAsset_close(d); - return true; + return me; } @@ -192,14 +192,13 @@ static bool set_cwd (VFS_t *me, const char *dirName) { #endif -/* create a new alias arg for stream sno */ VFS_t * -Yap_InitAssetManager( AAssetManager* mgr ) +Yap_InitAssetManager( void ) { #if __ANDROID__ VFS_t *me; - Yap_assetManager = mgr; + /* init standard VFS */ me = (VFS_t *)Yap_AllocCodeSpace(sizeof(struct vfs)); me->name = "/assets"; diff --git a/os/iopreds.c b/os/iopreds.c index f84738fcb..c557a46dc 100644 --- a/os/iopreds.c +++ b/os/iopreds.c @@ -1520,7 +1520,56 @@ static Int p_open_null_stream(USES_REGS1) { return (Yap_unify(ARG1, t)); } -int Yap_OpenStream(FILE *fd, char *name, Term file_name, int flags) { +int Yap_OpenStream(const char *fname, const char * io_mode) { + CACHE_REGS + int sno; + StreamDesc *st; + Atom at; + struct vfs *vfsp; + FILE *fd; + int flags; + + sno = GetFreeStreamD(); + if (sno < 0) + return (PlIOError(RESOURCE_ERROR_MAX_STREAMS, MkAtomTerm(Yap_LookupAtom(fname)), + "new stream not available for opening")); + st = GLOBAL_Stream+sno; + vfsp = NULL; + if ((vfsp = vfs_owner(fname)) != NULL) { + st->u.private_data = vfsp->open(sno, fname, io_mode); + UNLOCK(st->streamlock); + fd = NULL; + if (st->u.private_data == NULL) + return (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), "%s", fname)); + st->vfs = vfsp; + } else if ((fd = fopen(fname, io_mode)) == NULL || + (!strchr(io_mode, 'b') && binary_file(fname))) { + UNLOCK(st->streamlock); + if (errno == ENOENT && !strchr(io_mode, 'r')) { + return PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), "%s: %s", fname, + strerror(errno)); + } else { + return PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), "%s: %s", + fname, strerror(errno)); + } + } + if (strchr(io_mode, 'r')) { + if (strchr(io_mode, 'a')) { + at = AtomAppend; + flags = Append_Stream_f | Output_Stream_f; + } else { + at = AtomWrite; + flags = Output_Stream_f; + } + } else { + at = AtomRead; + flags = Input_Stream_f; + } + Yap_initStream(sno, fd, fname, fname, LOCAL_encoding, flags, at, NULL); + return sno; +} + +int Yap_FileStream(FILE *fd, char *name, Term file_name, int flags) { CACHE_REGS int sno; Atom at; @@ -1540,6 +1589,26 @@ int Yap_OpenStream(FILE *fd, char *name, Term file_name, int flags) { return sno; } +int FileStream(FILE* fd, char *name, Term file_name, int flags ) +{ + int sno; + Atom at; + + sno = GetFreeStreamD(); + if (sno < 0) + return (PlIOError(RESOURCE_ERROR_MAX_STREAMS, name, + "new stream not available for opening")); + if (flags & Output_Stream_f) { + if (flags & Append_Stream_f) + at = AtomAppend; + else + at = AtomWrite; + } else + at = AtomRead; + Yap_initStream(sno, fd, name, file_name, LOCAL_encoding, flags, at, NULL); + return sno; +} + #define CheckStream(arg, kind, msg) \ CheckStream__(__FILE__, __FUNCTION__, __LINE__, arg, kind, msg) @@ -1867,10 +1936,6 @@ static Int get_abs_file_parameter(USES_REGS1) { void Yap_InitPlIO(struct yap_boot_params *argi) { Int i; -#if __ANDROID__ - if (argi->assetManager) - Yap_InitAssetManager( argi->assetManager ); -#endif if (argi->inp > 0) Yap_stdin = fdopen(argi->inp - 1, "r"); else if (argi->inp) diff --git a/os/iopreds.h b/os/iopreds.h index 5186ddaf3..012fe39b7 100644 --- a/os/iopreds.h +++ b/os/iopreds.h @@ -283,8 +283,4 @@ static inline void freeBuffer(const void *ptr) { free((void *)ptr); } -/** VFS handling */ - -VFS_t *Yap_InitAssetManager(AAssetManager *mgr); - #endif diff --git a/os/sysbits.c b/os/sysbits.c index 112cc1c11..f1aa12a04 100644 --- a/os/sysbits.c +++ b/os/sysbits.c @@ -102,13 +102,9 @@ static bool is_directory(const char *FileName) { } bool Yap_Exists(const char *f) { - VFS_t *vfs = GLOBAL_VFS; - - while(vfs) { - VFS_t *n=vfs->exists(vfs,f); - if (n==vfs) return true; - if (!n) return false; - vfs = n; + VFS_t *vfs; + if ((vfs = vfs_owner(f))) { + return vfs->exists(vfs,f) != NULL; } #if _WIN32 if (_access(f, 0) == 0) @@ -172,9 +168,10 @@ bool Yap_IsAbsolutePath(const char *p0) { static const char *PlExpandVars(const char *source, const char *root, char *result) { CACHE_REGS + int lvl = push_text_stack(); const char *src = source; if (!result) - result = BaseMalloc(YAP_FILENAME_MAX + 1); + result = Malloc(YAP_FILENAME_MAX + 1); if (strlen(source) >= YAP_FILENAME_MAX) { Yap_Error(SYSTEM_ERROR_OPERATING_SYSTEM, TermNil, @@ -197,6 +194,7 @@ static const char *PlExpandVars(const char *source, const char *root, if (s != NULL) strncpy(result, s, YAP_FILENAME_MAX); strcat(result, src); + result = pop_output_text_stack(lvl, result); return result; } else { #if HAVE_GETPWNAM @@ -211,6 +209,7 @@ static const char *PlExpandVars(const char *source, const char *root, FileError(SYSTEM_ERROR_OPERATING_SYSTEM, MkAtomTerm(Yap_LookupAtom(source)), "User %s does not exist in %s", result, source); + pop_text_stack(lvl); return NULL; } strncpy(result, user_passwd->pw_dir, YAP_FILENAME_MAX); @@ -222,6 +221,7 @@ static const char *PlExpandVars(const char *source, const char *root, return NULL; #endif } + result = pop_output_text_stack(lvl, result); return result; } // do VARIABLE expansion @@ -263,6 +263,7 @@ static const char *PlExpandVars(const char *source, const char *root, if (tocp > YAP_FILENAME_MAX) { Yap_Error(SYSTEM_ERROR_OPERATING_SYSTEM, MkStringTerm(src), "path too long"); + pop_text_stack(lvl); return NULL; } if (root && !Yap_IsAbsolutePath(source)) { @@ -274,6 +275,7 @@ static const char *PlExpandVars(const char *source, const char *root, strncpy(result, source, strlen(src) + 1); } } + result = pop_output_text_stack(lvl, result); return result; } diff --git a/os/yapio.h b/os/yapio.h index 9a19e1a20..f7987c58e 100644 --- a/os/yapio.h +++ b/os/yapio.h @@ -29,6 +29,7 @@ #include "YapIOConfig.h" #include +#include #ifndef _PL_WRITE_ @@ -47,6 +48,13 @@ typedef struct AliasDescS { /* parser stack, used to be AuxSp, now is ASP */ #define ParserAuxSp LOCAL_ScannerStack +/** + * + * @return a new VFS that will support /assets + */ + +extern VFS_t *Yap_InitAssetManager( void ); + /* routines in parser.c */ extern VarEntry *Yap_LookupVar(const char *); extern Term Yap_VarNames(VarEntry *, Term); @@ -78,7 +86,8 @@ extern int Yap_PlGetWchar(void); extern int Yap_PlFGetchar(void); extern int Yap_GetCharForSIGINT(void); extern Int Yap_StreamToFileNo(Term); -extern int Yap_OpenStream(FILE *, char *, Term, int); +extern int Yap_OpenStream(const char*, const char *); +extern int Yap_FileStream(FILE*, char *, Term, int); extern char *Yap_TermToString(Term t, encoding_t encoding, int flags); extern char *Yap_HandleToString(yhandle_t l, size_t sz, size_t *length, encoding_t *encoding, int flags); diff --git a/packages/cplint/cplint_yap.c b/packages/cplint/cplint_yap.c index ec8581e4d..23aada4b0 100644 --- a/packages/cplint/cplint_yap.c +++ b/packages/cplint/cplint_yap.c @@ -19,7 +19,7 @@ for the relative license. -FILE *open_file (char *filename, const char *mode); +FILE *open_file (char *file_name, const char *mode); static YAP_Bool compute_prob(void); variables createVars(YAP_Term t,DdManager * mgr, int create_dot, char inames[1000][20]) @@ -214,14 +214,14 @@ void init_my_predicates() YAP_UserCPredicate("compute_prob",compute_prob,4); } -FILE * open_file(char *filename, const char *mode) +FILE * open_file(char *file_name, const char *mode) /* opens a file */ { FILE *fp; - if ((fp = fopen(filename, mode)) == NULL) + if ((fp = fopen(file_name, mode)) == NULL) { - perror(filename); + perror(file_name); exit(1); } return fp; From 3688819ea268d8e6df2b3c8e4b7812ae4081b8d8 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Wed, 29 Nov 2017 13:47:57 +0000 Subject: [PATCH 03/14] iandroid --- C/blobs.c | 4 +- C/c_interface.c | 2033 ++++++------- C/dbase.c | 8 +- C/errors.c | 4 +- C/exec.c | 6 +- C/scanner.c | 229 +- C/stack.c | 2 +- C/yap-args.c | 12 +- CXX/yapdb.hh | 18 +- CXX/yapi.cpp | 16 +- CXX/yapi.hh | 12 +- CXX/yapq.hh | 12 +- H/Atoms.h | 2 +- H/YapTerm.h | 96 +- H/Yatom.h | 12 +- include/VFS.h | 4 +- include/YapDefs.h | 111 +- include/YapError.h | 60 +- include/YapInterface.h | 13 +- include/YapStreams.h | 6 +- os/CMakeLists.txt | 5 +- os/assets.c | 269 +- os/encoding.h | 5 + os/fmem.c | 16 +- os/fmemopen-android.c | 26 +- os/iopreds.c | 2659 +++++++++-------- os/iopreds.h | 4 +- os/readterm.c | 66 +- os/sysbits.c | 122 +- os/yapio.h | 5 +- .../src/Android/jni/sqlite/JNIHelp.cpp | 4 +- 31 files changed, 2944 insertions(+), 2897 deletions(-) diff --git a/C/blobs.c b/C/blobs.c index 7a5b3b5dc..54c61e38e 100644 --- a/C/blobs.c +++ b/C/blobs.c @@ -209,8 +209,8 @@ bool YAP_get_blob(Term t, void **blob, size_t *len, blob_type_t **type) { return TRUE; } -void *YAP_blob_data(Atom x, size_t *len, blob_type_t **type) { - +void *YAP_blob_data(YAP_Atom at, size_t *len, blob_type_t **type) { +Atom x = at; if (!IsBlob(x)) { if (len) diff --git a/C/c_interface.c b/C/c_interface.c index 3bb5ea3bc..c2c72bcbb 100755 --- a/C/c_interface.c +++ b/C/c_interface.c @@ -33,7 +33,6 @@ #include #endif -#include #include #if HAVE_STDARG_H @@ -62,7 +61,6 @@ #endif /* YAPOR */ #include "cut_c.h" -#include "threads.h" #if HAVE_MALLOC_H @@ -324,7 +322,7 @@ X_API Int YAP_IntOfTerm(Term t) { } } -X_API Term YAP_MkBigNumTerm(void*big) { +X_API Term YAP_MkBigNumTerm(void *big) { #if USE_GMP Term I; BACKUP_H(); @@ -428,16 +426,16 @@ X_API Term YAP_MkFloatTerm(double n) { X_API YAP_Float YAP_FloatOfTerm(YAP_Term t) { return (FloatOfTerm(t)); } -X_API Term YAP_MkAtomTerm(Atom n) { +X_API Term YAP_MkAtomTerm(YAP_Atom n) { Term t; t = MkAtomTerm(n); return t; } -X_API Atom YAP_AtomOfTerm(Term t) { return (AtomOfTerm(t)); } +X_API YAP_Atom YAP_AtomOfTerm(Term t) { return (AtomOfTerm(t)); } -X_API bool YAP_IsWideAtom(Atom a) { +X_API bool YAP_IsWideAtom(YAP_Atom a) { const unsigned char *s = RepAtom(a)->UStrOfAE; int32_t v; while (*s) { @@ -448,14 +446,14 @@ X_API bool YAP_IsWideAtom(Atom a) { return false; } -X_API const char *YAP_AtomName(Atom a) { +X_API const char *YAP_AtomName(YAP_Atom a) { const char *o; o = AtomName(a); return (o); } -X_API const wchar_t *YAP_WideAtomName(Atom a) { +X_API const wchar_t *YAP_WideAtomName(YAP_Atom a) { int32_t v; const unsigned char *s = RepAtom(a)->UStrOfAE; size_t n = strlen_utf8(s); @@ -470,7 +468,7 @@ X_API const wchar_t *YAP_WideAtomName(Atom a) { return dest; } -X_API Atom YAP_LookupAtom(const char *c) { +X_API YAP_Atom YAP_LookupAtom(const char *c) { CACHE_REGS Atom a; @@ -488,7 +486,7 @@ X_API Atom YAP_LookupAtom(const char *c) { return NULL; } -X_API Atom YAP_LookupWideAtom(const wchar_t *c) { +X_API YAP_Atom YAP_LookupWideAtom(const wchar_t *c) { CACHE_REGS Atom a; @@ -506,7 +504,7 @@ X_API Atom YAP_LookupWideAtom(const wchar_t *c) { return NULL; } -X_API Atom YAP_FullLookupAtom(const char *c) { +X_API YAP_Atom YAP_FullLookupAtom(const char *c) { CACHE_REGS Atom at; @@ -524,7 +522,7 @@ X_API Atom YAP_FullLookupAtom(const char *c) { return NULL; } -X_API size_t YAP_AtomNameLength(Atom at) { +X_API size_t YAP_AtomNameLength(YAP_Atom at) { if (IsBlob(at)) { return RepAtom(at)->rep.blob->length; } @@ -648,7 +646,7 @@ X_API Int YAP_SkipList(Term *l, Term **tailp) { return length; } -X_API Term YAP_MkApplTerm(Functor f, UInt arity, Term args[]) { +X_API Term YAP_MkApplTerm(YAP_Functor f, UInt arity, Term args[]) { CACHE_REGS Term t; BACKUP_H(); @@ -662,7 +660,7 @@ X_API Term YAP_MkApplTerm(Functor f, UInt arity, Term args[]) { return t; } -X_API Term YAP_MkNewApplTerm(Functor f, UInt arity) { +X_API Term YAP_MkNewApplTerm(YAP_Functor f, UInt arity) { CACHE_REGS Term t; BACKUP_H(); @@ -676,7 +674,7 @@ X_API Term YAP_MkNewApplTerm(Functor f, UInt arity) { return t; } -X_API Functor YAP_FunctorOfTerm(Term t) { return (FunctorOfTerm(t)); } +X_API YAP_Functor YAP_FunctorOfTerm(Term t) { return (FunctorOfTerm(t)); } X_API Term YAP_ArgOfTerm(UInt n, Term t) { return (ArgOfTerm(n, t)); } @@ -688,11 +686,11 @@ X_API Term *YAP_ArgsOfTerm(Term t) { return NULL; } -X_API Functor YAP_MkFunctor(Atom a, UInt n) { return (Yap_MkFunctor(a, n)); } +X_API YAP_Functor YAP_MkFunctor(YAP_Atom a, UInt n) { return (Yap_MkFunctor(a, n)); } -X_API Atom YAP_NameOfFunctor(Functor f) { return (NameOfFunctor(f)); } +X_API YAP_Atom YAP_NameOfFunctor(YAP_Functor f) { return (NameOfFunctor(f)); } -X_API UInt YAP_ArityOfFunctor(Functor f) { return (ArityOfFunctor(f)); } +X_API UInt YAP_ArityOfFunctor(YAP_Functor f) { return (ArityOfFunctor(f)); } X_API void *YAP_ExtraSpaceCut(void) { CACHE_REGS @@ -1356,9 +1354,9 @@ X_API void YAP_FreeSpaceFromYap(void *ptr) { Yap_FreeCodeSpace(ptr); } */ X_API char * YAP_StringToBuffer(Term t, char *buf, unsigned int bufsize) { CACHE_REGS - BACKUP_MACHINE_REGS(); - seq_tv_t inp, out; - int l = push_text_stack(); + BACKUP_MACHINE_REGS(); + seq_tv_t inp, out; + int l = push_text_stack(); inp.val.t = t; inp.type = YAP_STRING_ATOMS_CODES | YAP_STRING_STRING | YAP_STRING_ATOM | YAP_STRING_TRUNC | YAP_STRING_MALLOC; @@ -1368,15 +1366,15 @@ YAP_StringToBuffer(Term t, char *buf, unsigned int bufsize) { out.enc = ENC_ISO_UTF8; if (!Yap_CVT_Text(&inp, &out PASS_REGS)) { pop_text_stack(l); - RECOVER_MACHINE_REGS(); - return NULL; + RECOVER_MACHINE_REGS(); + return NULL; } else { - RECOVER_MACHINE_REGS(); - if (buf == out.val.c) { - return buf; - } else { - return pop_output_text_stack(l, out.val.c); - } + RECOVER_MACHINE_REGS(); + if (buf == out.val.c) { + return buf; + } else { + return pop_output_text_stack(l, out.val.c); + } } } @@ -1703,21 +1701,21 @@ X_API void YAP_Error(int myerrno, Term t, const char *buf, ...) { Yap_Error(myerrno, t, tmpbuf); } -X_API PredEntry *YAP_FunctorToPred(Functor func) { +X_API YAP_PredEntryPtr YAP_FunctorToPred(YAP_Functor func) { CACHE_REGS return RepPredProp(PredPropByFunc(func, CurrentModule)); } -X_API PredEntry *YAP_AtomToPred(Atom at) { +X_API YAP_PredEntryPtr YAP_AtomToPred(YAP_Atom at) { CACHE_REGS return RepPredProp(PredPropByAtom(at, CurrentModule)); } -X_API PredEntry *YAP_FunctorToPredInModule(Functor func, Term mod) { +X_API YAP_PredEntryPtr YAP_FunctorToPredInModule(YAP_Functor func, Term mod) { return RepPredProp(PredPropByFunc(func, mod)); } -X_API PredEntry *YAP_AtomToPredInModule(Atom at, Term mod) { +X_API YAP_PredEntryPtr YAP_AtomToPredInModule(YAP_Atom at, Term mod) { return RepPredProp(PredPropByAtom(at, mod)); } @@ -1729,8 +1727,9 @@ static int run_emulator(USES_REGS1) { return out; } -X_API bool YAP_EnterGoal(PredEntry *pe, CELL *ptr, YAP_dogoalinfo *dgi) { +X_API bool YAP_EnterGoal(YAP_PredEntryPtr ape, CELL *ptr, YAP_dogoalinfo *dgi) { CACHE_REGS + PredEntry *pe = ape; bool out; BACKUP_MACHINE_REGS(); @@ -1877,8 +1876,8 @@ X_API Int YAP_RunGoal(Term t) { } X_API Term YAP_AllocExternalDataInStack(size_t bytes) { - CELL *pt; - Term t = Yap_AllocExternalDataInStack(EXTERNAL_BLOB, bytes, &pt); + CELL *pt; + Term t = Yap_AllocExternalDataInStack(EXTERNAL_BLOB, bytes, &pt); if (t == TermNil) return 0L; return t; @@ -1896,12 +1895,12 @@ X_API YAP_opaque_tag_t YAP_NewOpaqueType(struct YAP_opaque_handler_struct *f) { int i; if (!GLOBAL_OpaqueHandlersCount) { GLOBAL_OpaqueHandlers = - malloc(sizeof(YAP_opaque_handler_t) *USER_BLOB_END ); + malloc(sizeof(YAP_opaque_handler_t) * USER_BLOB_END); if (!GLOBAL_OpaqueHandlers) { /* no room */ return -1; } - GLOBAL_OpaqueHandlersCount = USER_BLOB_START; + GLOBAL_OpaqueHandlersCount = USER_BLOB_START; } else if (GLOBAL_OpaqueHandlersCount == USER_BLOB_END) { /* all types used */ return -1; @@ -1912,23 +1911,24 @@ X_API YAP_opaque_tag_t YAP_NewOpaqueType(struct YAP_opaque_handler_struct *f) { } X_API Term YAP_NewOpaqueObject(YAP_opaque_tag_t blob_tag, size_t bytes) { - CELL *pt; - Term t = Yap_AllocExternalDataInStack((CELL) blob_tag, bytes, &pt); - if (t == TermNil) - return 0L; - pt = RepAppl(t); - blob_tag = pt[1]; - if (blob_tag < USER_BLOB_START || - blob_tag >= USER_BLOB_END) { - Yap_Error(SYSTEM_ERROR_INTERNAL, AbsAppl(pt), "clean opaque: bad blob with tag " UInt_FORMAT ,blob_tag); - return FALSE; - } - YAP_opaque_tag_t blob_info = blob_tag; + CELL *pt; + Term t = Yap_AllocExternalDataInStack((CELL) blob_tag, bytes, &pt); + if (t == TermNil) + return 0L; + pt = RepAppl(t); + blob_tag = pt[1]; + if (blob_tag < USER_BLOB_START || + blob_tag >= USER_BLOB_END) { + Yap_Error(SYSTEM_ERROR_INTERNAL, AbsAppl(pt), "clean opaque: bad blob with tag " + UInt_FORMAT, blob_tag); + return FALSE; + } + YAP_opaque_tag_t blob_info = blob_tag; if (GLOBAL_OpaqueHandlers[blob_info].cut_handler || - GLOBAL_OpaqueHandlers[blob_info].fail_handler ) { - *HR++ = t; - *HR++ = TermNil; - TrailTerm(TR) = AbsPair(HR-2); + GLOBAL_OpaqueHandlers[blob_info].fail_handler) { + *HR++ = t; + *HR++ = TermNil; + TrailTerm(TR) = AbsPair(HR - 2); } return t; } @@ -2121,10 +2121,10 @@ X_API int YAP_InitConsult(int mode, const char *fname, char *full, if (mode == YAP_BOOT_MODE) { mode = YAP_CONSULT_MODE; } - char *bfp = Malloc(YAP_FILENAME_MAX+1); + char *bfp = Malloc(YAP_FILENAME_MAX + 1); bfp[0] = '\0'; - if(fname != NULL && fname[0] != 0 ) - strcpy( bfp, fname ); + if (fname != NULL && fname[0] != 0) + strcpy(bfp, fname); bool consulted = (mode == YAP_CONSULT_MODE); const char *fl = Yap_findFile(bfp, NULL, NULL, full, true, YAP_BOOT_PL, true, true); @@ -2132,28 +2132,28 @@ X_API int YAP_InitConsult(int mode, const char *fname, char *full, pop_text_stack(lvl); return -1; } - Yap_init_consult(consulted,bfp); - sno = Yap_OpenStream(fl, "r" ); + Yap_init_consult(consulted, bfp); + sno = Yap_OpenStream(fl, AtomRead); *osnop = Yap_CheckAlias(AtomLoopStream); if (!Yap_AddAlias(AtomLoopStream, sno)) { Yap_CloseStream(sno); - pop_text_stack(lvl); - sno = -1; + pop_text_stack(lvl); + sno = -1; + return sno; } GLOBAL_Stream[sno].name = Yap_LookupAtom(fl); GLOBAL_Stream[sno].user_name = MkAtomTerm(Yap_LookupAtom(fname)); GLOBAL_Stream[sno].encoding = LOCAL_encoding; - pop_text_stack(lvl); - RECOVER_MACHINE_REGS(); + pop_text_stack(lvl); + RECOVER_MACHINE_REGS(); UNLOCK(GLOBAL_Stream[sno].streamlock); return sno; } /// given a stream descriptor or stream alias (see open/3), /// return YAP's internal handle. -X_API void *YAP_GetStreamFromId(int no) -{ - return GLOBAL_Stream+no; +X_API void *YAP_GetStreamFromId(int no) { + return GLOBAL_Stream + no; } X_API FILE *YAP_TermToStream(Term t) { @@ -2195,18 +2195,17 @@ X_API Term YAP_ReadFromStream(int sno) { Term o; BACKUP_MACHINE_REGS(); - o = Yap_read_term(sno, TermNil, 1); + o = Yap_read_term(sno, TermNil, false); RECOVER_MACHINE_REGS(); return o; } X_API Term YAP_ReadClauseFromStream(int sno) { - Term o; BACKUP_MACHINE_REGS(); - o = Yap_read_term(sno, TermNil, -1); + Term t = Yap_read_term(sno, TermNil, true); RECOVER_MACHINE_REGS(); - return o; + return t; } X_API void YAP_Write(Term t, FILE *f, int flags) { @@ -2237,23 +2236,24 @@ X_API char *YAP_WriteBuffer(Term t, char *buf, size_t sze, int flags) { BACKUP_MACHINE_REGS(); int l = push_text_stack(); inp.val.t = t; - inp.type = YAP_STRING_TERM|YAP_STRING_DATUM; + inp.type = YAP_STRING_TERM | YAP_STRING_DATUM; out.type = YAP_STRING_CHARS; out.val.c = buf; out.max = sze - 1; out.enc = LOCAL_encoding; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) { - RECOVER_MACHINE_REGS(); + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) { + RECOVER_MACHINE_REGS(); pop_text_stack(l); return NULL; } else { - RECOVER_MACHINE_REGS(); - if (buf == out.val.c) { - return buf; - } else { - return pop_output_text_stack(l, out.val.c); - } - }} + RECOVER_MACHINE_REGS(); + if (buf == out.val.c) { + return buf; + } else { + return pop_output_text_stack(l, out.val.c); + } + } +} /// write a a term to n user-provided buffer: make sure not tp @@ -2271,376 +2271,413 @@ X_API int YAP_WriteDynamicBuffer(YAP_Term t, char *buf, size_t sze, } X_API char *YAP_CompileClause(Term t) { - CACHE_REGS + CACHE_REGS yamop *codeaddr; - Term mod = CurrentModule; - Term tn = TermNil; + Term mod = CurrentModule; + Term tn = TermNil; - BACKUP_MACHINE_REGS(); + BACKUP_MACHINE_REGS(); - /* allow expansion during stack initialization */ - LOCAL_ErrorMessage = NULL; - ARG1 = t; - YAPEnterCriticalSection(); - codeaddr = Yap_cclause(t, 0, mod, t); - if (codeaddr != NULL) { - t = Deref(ARG1); /* just in case there was an heap overflow */ - if (!Yap_addclause(t, codeaddr, TermAssertz, mod, &tn)) { - YAPLeaveCriticalSection(); - return LOCAL_ErrorMessage; + /* allow expansion during stack initialization */ + LOCAL_ErrorMessage = NULL; + ARG1 = t; + YAPEnterCriticalSection(); + codeaddr = Yap_cclause(t, 0, mod, t); + if (codeaddr != NULL) { + t = Deref(ARG1); /* just in case there was an heap overflow */ + if (!Yap_addclause(t, codeaddr, TermAssertz, mod, &tn)) { + YAPLeaveCriticalSection(); + return LOCAL_ErrorMessage; + } } - } - YAPLeaveCriticalSection(); + YAPLeaveCriticalSection(); - if (Yap_get_signal(YAP_CDOVF_SIGNAL)) { - if (!Yap_locked_growheap(FALSE, 0, NULL)) { - Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", - LOCAL_ErrorMessage); + if (Yap_get_signal(YAP_CDOVF_SIGNAL)) { + if (!Yap_locked_growheap(FALSE, 0, NULL)) { + Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", + LOCAL_ErrorMessage); + } } - } - RECOVER_MACHINE_REGS(); - return (LOCAL_ErrorMessage); + RECOVER_MACHINE_REGS(); + return (LOCAL_ErrorMessage); } static int yap_lineno = 0; /* do initial boot by consulting the file boot.yap */ static void do_bootfile(const char *b_file USES_REGS) { - Term t; - int bootfile, osno; - Functor functor_query = Yap_MkFunctor(Yap_LookupAtom("?-"), 1); - Functor functor_command1 = Yap_MkFunctor(Yap_LookupAtom(":-"), 1); + Term t; + int boot_stream, osno; + Functor functor_query = Yap_MkFunctor(Yap_LookupAtom("?-"), 1); + Functor functor_command1 = Yap_MkFunctor(Yap_LookupAtom(":-"), 1); - /* consult boot.pl */ + /* consult boot.pl */ char *full = malloc(YAP_FILENAME_MAX + 1); full[0] = '\0'; - /* the consult mode does not matter here, really */ - bootfile = YAP_InitConsult(YAP_BOOT_MODE, b_file, full, &osno); - if (bootfile < 0) { - fprintf(stderr, "[ FATAL ERROR: could not open bootfile %s ]\n", - b_file); - exit(1); - } -free(full); - do { - CACHE_REGS - YAP_Reset(YAP_FULL_RESET); + /* the consult mode does not matter here, really */ + boot_stream = YAP_InitConsult(YAP_BOOT_MODE, b_file, full, &osno); + if (boot_stream < 0) { + fprintf(stderr, "[ FATAL ERROR: could not open boot_stream %s ]\n", + b_file); + exit(1); + } + free(full); + do { + CACHE_REGS + YAP_Reset(YAP_FULL_RESET); Yap_StartSlots(); - t = YAP_ReadClauseFromStream(bootfile); + t = YAP_ReadClauseFromStream(boot_stream); // Yap_DebugPlWriteln(t); if (t == 0) { - fprintf(stderr, - "[ SYNTAX ERROR: while parsing bootfile %s at line %d ]\n", - b_file, yap_lineno); + fprintf(stderr, + "[ SYNTAX ERROR: while parsing boot_stream %s at line %d ]\n", + b_file, yap_lineno); } else if (YAP_IsVarTerm(t) || t == TermNil) { - fprintf(stderr, "[ line %d: term cannot be compiled ]", yap_lineno); + fprintf(stderr, "[ line %d: term cannot be compiled ]", yap_lineno); } else if (YAP_IsPairTerm(t)) { - fprintf(stderr, "[ SYSTEM ERROR: consult not allowed in boot file ]\n"); - fprintf(stderr, "error found at line %d and pos %d", yap_lineno, - fseek(GLOBAL_Stream[bootfile].file, 0L, SEEK_CUR)); + fprintf(stderr, "[ SYSTEM ERROR: consult not allowed in boot file ]\n"); + fprintf(stderr, "error found at line %d and pos %d", yap_lineno, + fseek(GLOBAL_Stream[boot_stream].file, 0L, SEEK_CUR)); } else if (IsApplTerm(t) && (FunctorOfTerm(t) == functor_query || FunctorOfTerm(t) == functor_command1)) { - YAP_RunGoalOnce(ArgOfTerm(1, t)); + YAP_RunGoalOnce(ArgOfTerm(1, t)); } else { - Term ts[2]; - char *ErrorMessage; - Functor fun = Yap_MkFunctor(Yap_LookupAtom("$prepare_clause"), 2); - PredEntry *pe = RepPredProp(PredPropByFunc(fun, PROLOG_MODULE)); + Term ts[2]; + char *ErrorMessage; + Functor fun = Yap_MkFunctor(Yap_LookupAtom("$prepare_clause"), 2); + PredEntry *pe = RepPredProp(PredPropByFunc(fun, PROLOG_MODULE)); - if (pe->OpcodeOfPred != UNDEF_OPCODE && pe->OpcodeOfPred != FAIL_OPCODE) { - ts[0] = t; - RESET_VARIABLE(ts + 1); - if (YAP_RunGoal(Yap_MkApplTerm(fun, 2, ts))) - t = ts[1]; - } - ErrorMessage = YAP_CompileClause(t); - if (ErrorMessage) { - fprintf(stderr, "%s", ErrorMessage); - } + if (pe->OpcodeOfPred != UNDEF_OPCODE && pe->OpcodeOfPred != FAIL_OPCODE) { + ts[0] = t; + RESET_VARIABLE(ts + 1); + if (YAP_RunGoal(Yap_MkApplTerm(fun, 2, ts))) + t = ts[1]; + } + ErrorMessage = YAP_CompileClause(t); + if (ErrorMessage) { + fprintf(stderr, "%s", ErrorMessage); + } } - } while (t != TermEof); + } while (t != TermEof); - YAP_EndConsult(bootfile, &osno); + YAP_EndConsult(boot_stream, &osno); #if DEBUG - if (Yap_output_msg) + if (Yap_output_msg) fprintf(stderr, "Boot loaded\n"); #endif - } +} - /** - YAP_DelayInit() +/** + YAP_DelayInit() - ensures initialization is done after engine creation. - It receives a pointer to function and a string describing - the module. - */ + ensures initialization is done after engine creation. + It receives a pointer to function and a string describing + the module. +*/ - X_API bool YAP_initialized = false; - static int n_mdelays = 0; - static YAP_delaymodule_t *m_delays; +X_API bool YAP_initialized = false; +static int n_mdelays = 0; +static YAP_delaymodule_t *m_delays; - X_API bool YAP_DelayInit(YAP_ModInit_t f, const char s[]) { - if (m_delays) { +X_API bool YAP_DelayInit(YAP_ModInit_t f, const char s[]) { + if (m_delays) { m_delays = realloc(m_delays, (n_mdelays + 1) * sizeof(YAP_delaymodule_t)); - } else { + } else { m_delays = malloc(sizeof(YAP_delaymodule_t)); - } - m_delays[n_mdelays].f = f; - m_delays[n_mdelays].s = s; - n_mdelays++; - return true; } + m_delays[n_mdelays].f = f; + m_delays[n_mdelays].s = s; + n_mdelays++; + return true; +} - bool Yap_LateInit(const char s[]) { - int i; - for (i = 0; i < n_mdelays; i++) { +bool Yap_LateInit(const char s[]) { + int i; + for (i = 0; i < n_mdelays; i++) { if (!strcmp(m_delays[i].s, s)) { - m_delays[i].f(); - return true; + m_delays[i].f(); + return true; } - } - return false; } + return false; +} - static void start_modules(void) { - Term cm = CurrentModule; - size_t i; - for (i = 0; i < n_mdelays; i++) { +static void start_modules(void) { + Term cm = CurrentModule; + size_t i; + for (i = 0; i < n_mdelays; i++) { CurrentModule = MkAtomTerm(YAP_LookupAtom(m_delays[i].s)); m_delays[i].f(); - } - CurrentModule = cm; } + CurrentModule = cm; +} - /// whether Yap is under control of some other system - bool Yap_embedded = true; +/// whether Yap is under control of some other system +bool Yap_embedded = true; - /* this routine is supposed to be called from an external program - that wants to control Yap */ +/* this routine is supposed to be called from an external program + that wants to control Yap */ - X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { - YAP_file_type_t restore_result = yap_init->boot_file_type; - bool do_bootstrap = (restore_result & YAP_CONSULT_MODE); - CELL Trail = 0, Stack = 0, Heap = 0, Atts = 0; - char *boot_file; - Int rc; - const char *yroot; - - boot_file = calloc(YAP_FILENAME_MAX + 1, 1); - /* ignore repeated calls to YAP_Init */ - if (YAP_initialized) +X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { + YAP_file_type_t restore_result = yap_init->boot_file_type; + bool do_bootstrap = (restore_result & YAP_CONSULT_MODE); + CELL Trail = 0, Stack = 0, Heap = 0, Atts = 0; + char *boot_file; + Int rc; + char *yroot; + if (YAP_initialized) return YAP_FOUND_BOOT_ERROR; - Yap_embedded = yap_init->Embedded; - Yap_page_size = Yap_InitPageSize(); /* init memory page size, required by + if (!LOCAL_TextBuffer) + LOCAL_TextBuffer = Yap_InitTextAllocator(); + + int lvl = push_text_stack(); + yroot = Malloc(YAP_FILENAME_MAX + 1); + boot_file = Malloc(YAP_FILENAME_MAX + 1); + /* ignore repeated calls to YAP_Init */ + Yap_embedded = yap_init->Embedded; + Yap_page_size = Yap_InitPageSize(); /* init memory page size, required by later functions */ #if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) - Yap_init_yapor_global_local_memory(); + Yap_init_yapor_global_local_memory(); #endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA */ - if (!yap_init->Embedded) { + if (!yap_init->Embedded) { GLOBAL_PrologShouldHandleInterrupts = - !yap_init->PrologCannotHandleInterrupts; + !yap_init->PrologCannotHandleInterrupts; Yap_InitSysbits(0); /* init signal handling and time, required by later functions */ GLOBAL_argv = yap_init->Argv; GLOBAL_argc = yap_init->Argc; if (0 && ((YAP_QLY && yap_init->SavedState) || (YAP_BOOT_PL && (yap_init->YapPrologBootFile)))) { - yroot = "."; + strcpy(yroot, "."); } else { - yroot = BootFilePath; + strcpy(yroot, BootFile); } - } - if (yap_init->SavedState == NULL) { - yap_init->SavedState = YAP_STARTUP; - } - if (!LOCAL_TextBuffer) -LOCAL_TextBuffer = Yap_InitTextAllocator(); + } + char *tmp = NULL; + if (yap_init->SavedState == NULL) { + tmp = Malloc(strlen(YAP_STARTUP) + 1); + strncpy(tmp, YAP_STARTUP, strlen(YAP_STARTUP) + 1);; + } + #if __ANDROID__ - //if (yap_init->assetManager) - Yap_InitAssetManager( ); + +//if (yap_init->assetManager) + Yap_InitAssetManager(); + #endif #if USE_DL_MALLOC - if (yap_init->SavedState == NULL) - yap_init->SavedState = YAP_STARTUP; + if (yap_init->SavedState == NULL) + yap_init->SavedState = YAP_STARTUP; #else - yap_init->SavedState = Yap_findFile(yap_init->SavedState, YAP_STARTUP, yap_init->YapLibDir, - boot_file, true, YAP_QLY, true, true); + yap_init->SavedState = Yap_findFile(tmp, YAP_STARTUP, yap_init->YapLibDir, + boot_file, true, YAP_QLY, true, true); #endif - if (yap_init->SavedState == NULL) { + if (yap_init->SavedState == NULL) { restore_result = YAP_BOOT_PL; - } + } - if (restore_result == YAP_BOOT_PL) { + if (restore_result == YAP_BOOT_PL) { #if USE_DL_MALLOC - if (yap_init->YapPrologBootFile == NULL) + if (yap_init->YapPrologBootFile == NULL || + yap_init->YapPrologBootFile[0] == 0) yap_init->YapPrologBootFile = BootFile; -#else - - const char *s = Yap_findFile(yap_init->YapPrologBootFile, BootFile, yroot, boot_file, - true, YAP_BOOT_PL, true, true); - if (s && s[0] != '\0') strcpy(boot_file, s); -#endif - } - - if (yap_init->TrailSize == 0) { - if (Trail == 0) - Trail = DefTrailSpace; - } else { - Trail = yap_init->TrailSize; - } - // Atts = yap_init->AttsSize; - if (yap_init->StackSize == 0) { - Stack = DefStackSpace; - } else { - Stack = yap_init->StackSize; - } -#ifndef USE_SYSTEM_MALLOC - if (yap_init->HeapSize == 0) { - if (Heap == 0) - Heap = DefHeapSpace; - } else { - Heap = yap_init->HeapSize; - } -#endif - - Yap_InitWorkspace(yap_init, Heap, Stack, Trail, Atts, yap_init->MaxTableSpaceSize, - yap_init->NumberWorkers, yap_init->SchedulerLoop, - yap_init->DelayedReleaseLoad); - // - - CACHE_REGS - if (Yap_embedded) - if (yap_init->QuietMode) { - setVerbosity(TermSilent); - } - { - if (yap_init->YapPrologRCFile != NULL) { - /* - This must be done before restore, otherwise - restore will print out messages .... - */ - setBooleanGlobalPrologFlag(HALT_AFTER_CONSULT_FLAG, - yap_init->HaltAfterConsult); + strcpy(boot_file, BootFile); } - /* tell the system who should cope with interrupts */ +#else + strcpy(boot_file, BootFile); + const char *s = Yap_findFile(yap_init->YapPrologBootFile, + BootFile, yroot, boot_file, + true, YAP_BOOT_PL, true, true); + if (s && s[0] != '\0') { + strcpy(boot_file, s); + } +#endif + } + + if (yap_init->TrailSize == 0) { + if (Trail == 0) + Trail = DefTrailSpace; + } else { + Trail = yap_init->TrailSize; + } +// Atts = yap_init->AttsSize; + if (yap_init->StackSize == 0) { + Stack = DefStackSpace; + } else { + Stack = yap_init->StackSize; + } +#ifndef USE_SYSTEM_MALLOC + if (yap_init->HeapSize == 0) { + if (Heap == 0) + Heap = DefHeapSpace; + } else { + Heap = yap_init->HeapSize; + } +#endif + + Yap_InitWorkspace(yap_init, Heap, Stack, Trail, Atts, yap_init + ->MaxTableSpaceSize, + yap_init->NumberWorkers, yap_init->SchedulerLoop, + yap_init->DelayedReleaseLoad); +// + + CACHE_REGS + if (Yap_embedded) + if (yap_init->QuietMode) { + setVerbosity(TermSilent); + } + { + if (yap_init->YapPrologRCFile != NULL) { +/* + This must be done before restore, otherwise + restore will print out messages .... +*/ + setBooleanGlobalPrologFlag(HALT_AFTER_CONSULT_FLAG, + yap_init + ->HaltAfterConsult); + } +/* tell the system who should cope with interrupts */ Yap_ExecutionMode = yap_init->ExecutionMode; if (do_bootstrap) { - restore_result |= YAP_BOOT_PL; + restore_result |= + YAP_BOOT_PL; } else { // try always to boot from the saved state. - if (restore_result == YAP_QLY) { - if (!Yap_SavedInfo(yap_init->SavedState, yap_init->YapLibDir, &Trail, - &Stack, &Heap)) { - restore_result = YAP_BOOT_PL; - } else { - restore_result = - Yap_Restore(yap_init->SavedState, yap_init->YapLibDir); - } - if (restore_result == YAP_FOUND_BOOT_ERROR) { - restore_result = YAP_BOOT_PL; - } - } + if (restore_result == YAP_QLY) { + if (! + Yap_SavedInfo(yap_init + ->SavedState, yap_init->YapLibDir, &Trail, + &Stack, &Heap)) { + restore_result = YAP_BOOT_PL; + } else { + restore_result = + Yap_Restore(yap_init->SavedState, yap_init->YapLibDir); + } + if (restore_result == YAP_FOUND_BOOT_ERROR) { + restore_result = YAP_BOOT_PL; + } + } } GLOBAL_FAST_BOOT_FLAG = yap_init->FastBoot; #if defined(YAPOR) || defined(TABLING) + Yap_init_root_frames(); + #endif /* YAPOR || TABLING */ #ifdef YAPOR Yap_init_yapor_workers(); #if YAPOR_THREADS if (Yap_thread_self() != 0) { #else - if (worker_id != 0) { + if (worker_id != 0) { #endif #if defined(YAPOR_COPY) || defined(YAPOR_SBA) - /* - In the SBA we cannot just happily inherit registers - from the other workers - */ - Yap_InitYaamRegs(worker_id); + /* + In the SBA we cannot just happily inherit registers + from the other workers + */ + Yap_InitYaamRegs(worker_id); #endif /* YAPOR_COPY || YAPOR_SBA */ #ifndef YAPOR_THREADS - Yap_InitPreAllocCodeSpace(0); + Yap_InitPreAllocCodeSpace(0); #endif /* YAPOR_THREADS */ - /* slaves, waiting for work */ - CurrentModule = USER_MODULE; - P = GETWORK_FIRST_TIME; - Yap_exec_absmi(FALSE, YAP_EXEC_ABSMI); - Yap_Error(SYSTEM_ERROR_INTERNAL, TermNil, - "abstract machine unexpected exit (YAP_Init)"); - } + /* slaves, waiting for work */ + CurrentModule = USER_MODULE; + P = GETWORK_FIRST_TIME; + Yap_exec_absmi(FALSE, YAP_EXEC_ABSMI); + Yap_Error(SYSTEM_ERROR_INTERNAL, TermNil, + "abstract machine unexpected exit (YAP_Init)"); + } #endif /* YAPOR */ - RECOVER_MACHINE_REGS(); - } - /* make sure we do this after restore */ - if (yap_init->MaxStackSize) { - GLOBAL_AllowLocalExpansion = FALSE; - } else { - GLOBAL_AllowLocalExpansion = TRUE; - } - if (yap_init->MaxGlobalSize) { - GLOBAL_AllowGlobalExpansion = FALSE; - } else { - GLOBAL_AllowGlobalExpansion = TRUE; - } - if (yap_init->MaxTrailSize) { - GLOBAL_AllowTrailExpansion = FALSE; - } else { - GLOBAL_AllowTrailExpansion = TRUE; - } - if (yap_init->YapPrologRCFile) { - Yap_PutValue(AtomConsultOnBoot, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologRCFile))); - /* - This must be done again after restore, as yap_flags - has been overwritten .... - */ - setBooleanGlobalPrologFlag(HALT_AFTER_CONSULT_FLAG, - yap_init->HaltAfterConsult); - } - if (yap_init->YapPrologTopLevelGoal) { - Yap_PutValue(AtomTopLevelGoal, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologTopLevelGoal))); - } - if (yap_init->YapPrologGoal) { - Yap_PutValue(AtomInitGoal, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologGoal))); - } - if (yap_init->YapPrologAddPath) { - Yap_PutValue(AtomExtendFileSearchPath, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologAddPath))); - } - if (yap_init->YapShareDir) { - setAtomicGlobalPrologFlag(PROLOG_LIBRARY_DIRECTORY_FLAG, - MkAtomTerm(Yap_LookupAtom(yap_init->YapShareDir))); - } - if (yap_init->YapLibDir) { - setAtomicGlobalPrologFlag(PROLOG_FOREIGN_DIRECTORY_FLAG, - MkAtomTerm(Yap_LookupAtom(yap_init->YapLibDir))); - } - if (yap_init->QuietMode) { - setVerbosity(TermSilent); - } - if (restore_result == YAP_QLY) { - setAtomicGlobalPrologFlag(RESOURCE_DATABASE_FLAG, - MkAtomTerm(Yap_LookupAtom(yap_init->SavedState))); - LOCAL_PrologMode &= ~BootMode; - CurrentModule = LOCAL_SourceModule = USER_MODULE; - setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, true); - rc = YAP_QLY; - } else { - if (boot_file[0] == '\0') - strcpy(boot_file, BootFile); - do_bootfile(boot_file PASS_REGS); - setAtomicGlobalPrologFlag( - RESOURCE_DATABASE_FLAG, - MkAtomTerm(Yap_LookupAtom(boot_file))); - setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, false); - } - start_modules(); - YAP_initialized = true; - return YAP_BOOT_PL; - } + RECOVER_MACHINE_REGS(); + } +/* make sure we do this after restore */ + if (yap_init->MaxStackSize) { + GLOBAL_AllowLocalExpansion = FALSE; + } else { + GLOBAL_AllowLocalExpansion = TRUE; + } + if (yap_init->MaxGlobalSize) { + GLOBAL_AllowGlobalExpansion = FALSE; + } else { + GLOBAL_AllowGlobalExpansion = TRUE; + } + if (yap_init->MaxTrailSize) { + GLOBAL_AllowTrailExpansion = FALSE; + } else { + GLOBAL_AllowTrailExpansion = TRUE; + } + if (yap_init->YapPrologRCFile) { + Yap_PutValue(AtomConsultOnBoot, + MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologRCFile)) + ); +/* + This must be done again after restore, as yap_flags + has been overwritten .... +*/ + setBooleanGlobalPrologFlag(HALT_AFTER_CONSULT_FLAG, + yap_init + ->HaltAfterConsult); + } + if (yap_init->YapPrologTopLevelGoal) { + Yap_PutValue(AtomTopLevelGoal, + MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologTopLevelGoal)) + ); + } + if (yap_init->YapPrologGoal) { + Yap_PutValue(AtomInitGoal, + MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologGoal)) + ); + } + if (yap_init->YapPrologAddPath) { + Yap_PutValue(AtomExtendFileSearchPath, + MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologAddPath)) + ); + } + if (yap_init->YapShareDir) { + setAtomicGlobalPrologFlag(PROLOG_LIBRARY_DIRECTORY_FLAG, + MkAtomTerm(Yap_LookupAtom(yap_init->YapShareDir)) + ); + } + if (yap_init->YapLibDir) { + setAtomicGlobalPrologFlag(PROLOG_FOREIGN_DIRECTORY_FLAG, + MkAtomTerm(Yap_LookupAtom(yap_init->YapLibDir)) + ); + } + if (yap_init->QuietMode) { + setVerbosity(TermSilent); + } + if (restore_result == YAP_QLY) { + setAtomicGlobalPrologFlag(RESOURCE_DATABASE_FLAG, + MkAtomTerm(Yap_LookupAtom(yap_init->SavedState)) + ); + LOCAL_PrologMode &= + ~BootMode; + CurrentModule = LOCAL_SourceModule = USER_MODULE; + setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, + true); + rc = YAP_QLY; + } else { + if (boot_file[0] == '\0') + strcpy(boot_file, BootFile + ); + do_bootfile(boot_file PASS_REGS); + setAtomicGlobalPrologFlag( + RESOURCE_DATABASE_FLAG, + MkAtomTerm(Yap_LookupAtom(boot_file)) + ); + setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, + false); + } + + start_modules(); + + YAP_initialized = true; + pop_text_stack(lvl); + return + YAP_BOOT_PL; +} #if (DefTrailSpace < MinTrailSpace) #undef DefTrailSpace @@ -2661,858 +2698,852 @@ LOCAL_TextBuffer = Yap_InitTextAllocator(); #define DEFAULT_SCHEDULERLOOP 10 #define DEFAULT_DELAYEDRELEASELOAD 3 - X_API YAP_file_type_t YAP_FastInit(char *saved_state, int argc, char *argv[]) { - YAP_init_args init_args; - YAP_file_type_t out; +X_API YAP_file_type_t YAP_FastInit(char *saved_state, int argc, char *argv[]) { + YAP_init_args init_args; + YAP_file_type_t out; - if ((out = Yap_InitDefaults(&init_args, saved_state, argc, argv)) != - YAP_FOUND_BOOT_ERROR) - out = YAP_Init(&init_args); - if (out == YAP_FOUND_BOOT_ERROR) { - Yap_Error(init_args.ErrorNo, TermNil, init_args.ErrorCause); - } - return out; - } + if ((out = Yap_InitDefaults(&init_args, saved_state, argc, argv)) != + YAP_FOUND_BOOT_ERROR) + out = YAP_Init(&init_args); + if (out == YAP_FOUND_BOOT_ERROR) { + Yap_Error(init_args.ErrorNo, TermNil, init_args.ErrorCause); + } + return out; +} - X_API void YAP_PutValue(Atom at, Term t) { Yap_PutValue(at, t); } +X_API void YAP_PutValue(YAP_Atom at, Term t) { Yap_PutValue(at, t); } - X_API Term YAP_GetValue(Atom at) { return (Yap_GetValue(at)); } +X_API Term YAP_GetValue(YAP_Atom at) { return (Yap_GetValue(at)); } - X_API int YAP_CompareTerms(Term t1, Term t2) { - return Yap_compare_terms(t1, t2); - } +X_API int YAP_CompareTerms(Term t1, Term t2) { + return Yap_compare_terms(t1, t2); +} - X_API int YAP_Reset(yap_reset_t mode) { - int res = TRUE; - BACKUP_MACHINE_REGS(); - res = Yap_Reset(mode); - RECOVER_MACHINE_REGS(); - return res; - } +X_API int YAP_Reset(yap_reset_t mode) { + int res = TRUE; + BACKUP_MACHINE_REGS(); + res = Yap_Reset(mode); + RECOVER_MACHINE_REGS(); + return res; +} - X_API void YAP_Exit(int retval) { Yap_exit(retval); } +X_API void YAP_Exit(int retval) { Yap_exit(retval); } - X_API int YAP_InitSocks(const char *host, long port) { return 0; } +X_API int YAP_InitSocks(const char *host, long port) { return 0; } - X_API void YAP_SetOutputMessage(void) { +X_API void YAP_SetOutputMessage(void) { #if DEBUG - Yap_output_msg = TRUE; + Yap_output_msg = TRUE; #endif - } +} - X_API int YAP_StreamToFileNo(Term t) { return (Yap_StreamToFileNo(t)); } +X_API int YAP_StreamToFileNo(Term t) { return (Yap_StreamToFileNo(t)); } - X_API void YAP_CloseAllOpenStreams(void) { - BACKUP_H(); +X_API void YAP_CloseAllOpenStreams(void) { + BACKUP_H(); - Yap_CloseStreams(FALSE); + Yap_CloseStreams(FALSE); - RECOVER_H(); - } + RECOVER_H(); +} - X_API void YAP_FlushAllStreams(void) { - BACKUP_H(); +X_API void YAP_FlushAllStreams(void) { + BACKUP_H(); - // VSC?? Yap_FlushStreams(); + // VSC?? Yap_FlushStreams(); - RECOVER_H(); - } + RECOVER_H(); +} - X_API void YAP_Throw(Term t) { - BACKUP_MACHINE_REGS(); - Yap_JumpToEnv(t); - RECOVER_MACHINE_REGS(); - } +X_API void YAP_Throw(Term t) { + BACKUP_MACHINE_REGS(); + Yap_JumpToEnv(t); + RECOVER_MACHINE_REGS(); +} - X_API void YAP_AsyncThrow(Term t) { - CACHE_REGS - BACKUP_MACHINE_REGS(); - LOCAL_PrologMode |= AsyncIntMode; - Yap_JumpToEnv(t); - LOCAL_PrologMode &= ~AsyncIntMode; - RECOVER_MACHINE_REGS(); - } +X_API void YAP_AsyncThrow(Term t) { + CACHE_REGS + BACKUP_MACHINE_REGS(); + LOCAL_PrologMode |= AsyncIntMode; + Yap_JumpToEnv(t); + LOCAL_PrologMode &= ~AsyncIntMode; + RECOVER_MACHINE_REGS(); +} - X_API void YAP_Halt(int i) { Yap_exit(i); } +X_API void YAP_Halt(int i) { Yap_exit(i); } - X_API CELL *YAP_TopOfLocalStack(void) { - CACHE_REGS - return (ASP); - } +X_API CELL *YAP_TopOfLocalStack(void) { + CACHE_REGS + return (ASP); +} - X_API void *YAP_Predicate(Atom a, UInt arity, Term m) { - if (arity == 0) { - return ((void *) RepPredProp(PredPropByAtom(a, m))); - } else { - Functor f = Yap_MkFunctor(a, arity); - return ((void *) RepPredProp(PredPropByFunc(f, m))); - } - } +X_API void *YAP_Predicate(YAP_Atom a, UInt arity, Term m) { + if (arity == 0) { + return ((void *) RepPredProp(PredPropByAtom(a, m))); + } else { + Functor f = Yap_MkFunctor(a, arity); + return ((void *) RepPredProp(PredPropByFunc(f, m))); + } +} - X_API void YAP_PredicateInfo(void *p, Atom *a, UInt *arity, Term *m) { - PredEntry *pd = (PredEntry *) p; - if (pd->ArityOfPE) { - *arity = pd->ArityOfPE; - *a = NameOfFunctor(pd->FunctorOfPred); - } else { - *arity = 0; - *a = (Atom) (pd->FunctorOfPred); - } - if (pd->ModuleOfPred) - *m = pd->ModuleOfPred; - else - *m = TermProlog; - } +X_API void YAP_PredicateInfo(void *p, YAP_Atom *a, UInt *arity, Term *m) { + PredEntry *pd = (PredEntry *) p; + if (pd->ArityOfPE) { + *arity = pd->ArityOfPE; + *a = NameOfFunctor(pd->FunctorOfPred); + } else { + *arity = 0; + *a = (Atom) (pd->FunctorOfPred); + } + if (pd->ModuleOfPred) + *m = pd->ModuleOfPred; + else + *m = TermProlog; +} - X_API void YAP_UserCPredicate(const char *name, CPredicate def, arity_t arity) { - Yap_InitCPred(name, arity, def, UserCPredFlag); - } +X_API void YAP_UserCPredicate(const char *name, YAP_UserCPred def, YAP_Arity arity) { + Yap_InitCPred(name, arity, (CPredicate)def, UserCPredFlag); +} - X_API void YAP_UserBackCPredicate_(const char *name, CPredicate init, - CPredicate cont, arity_t arity, - arity_t extra) { - Yap_InitCPredBackCut(name, arity, extra, init, cont, NULL, UserCPredFlag); - } +X_API void YAP_UserBackCPredicate_(const char *name, YAP_UserCPred init, + YAP_UserCPred cont, YAP_Arity arity, + YAP_Arity extra) { + Yap_InitCPredBackCut(name, arity, extra, (CPredicate)init, (CPredicate)cont, NULL, UserCPredFlag); +} - X_API void YAP_UserBackCutCPredicate(const char *name, CPredicate init, - CPredicate cont, CPredicate cut, - arity_t arity, arity_t extra) { - Yap_InitCPredBackCut(name, arity, extra, init, cont, cut, UserCPredFlag); - } +X_API void YAP_UserBackCutCPredicate(const char *name, YAP_UserCPred init, + YAP_UserCPred cont, YAP_UserCPred cut, + YAP_Arity arity, YAP_Arity extra) { + Yap_InitCPredBackCut(name, arity, extra, (CPredicate)init, + (CPredicate)cont, (CPredicate)cut, UserCPredFlag); +} - X_API void YAP_UserBackCPredicate(const char *name, CPredicate init, - CPredicate cont, arity_t arity, - arity_t extra) { - Yap_InitCPredBackCut(name, arity, extra, init, cont, NULL, UserCPredFlag); - } +X_API void YAP_UserBackCPredicate(const char *name, YAP_UserCPred init, + YAP_UserCPred cont, arity_t arity, + arity_t extra) { + Yap_InitCPredBackCut(name, arity, extra, (CPredicate)init, (CPredicate)cont, NULL, UserCPredFlag); +} - X_API void YAP_UserCPredicateWithArgs(const char *a, CPredicate f, - arity_t arity, Term mod) { - CACHE_REGS - PredEntry *pe; - Term cm = CurrentModule; - CurrentModule = mod; - YAP_UserCPredicate(a, f, arity); - if (arity == 0) { - pe = RepPredProp(PredPropByAtom(Yap_LookupAtom(a), mod)); - } else { - Functor f = Yap_MkFunctor(Yap_LookupAtom(a), arity); - pe = RepPredProp(PredPropByFunc(f, mod)); - } - pe->PredFlags |= CArgsPredFlag; - CurrentModule = cm; - } +X_API void YAP_UserCPredicateWithArgs(const char *a, YAP_UserCPred f, + arity_t arity, Term mod) { + CACHE_REGS + Term cm = CurrentModule; + CurrentModule = mod; + Yap_InitCPred(a, arity, (CPredicate)f, UserCPredFlag|CArgsPredFlag ); + CurrentModule = cm; +} - X_API Term YAP_CurrentModule(void) { - CACHE_REGS - return (CurrentModule); - } +X_API Term YAP_CurrentModule(void) { + CACHE_REGS + return (CurrentModule); +} - X_API Term YAP_SetCurrentModule(Term new) { - CACHE_REGS - Term omod = CurrentModule; - LOCAL_SourceModule = CurrentModule = new; - return omod; - } +X_API Term YAP_SetCurrentModule(Term new) { + CACHE_REGS + Term omod = CurrentModule; + LOCAL_SourceModule = CurrentModule = new; + return omod; +} - X_API Term YAP_CreateModule(Atom at) { - Term t; - WRITE_LOCK(RepAtom(at)->ARWLock); - t = Yap_Module(MkAtomTerm(at)); - WRITE_UNLOCK(RepAtom(at)->ARWLock); - return t; - } +X_API Term YAP_CreateModule(YAP_Atom at) { + Term t; + WRITE_LOCK(RepAtom(at)->ARWLock); + t = Yap_Module(MkAtomTerm(at)); + WRITE_UNLOCK(RepAtom(at)->ARWLock); + return t; +} - X_API Term YAP_StripModule(Term t, Term *modp) { - return Yap_StripModule(t, modp); - } +X_API Term YAP_StripModule(Term t, Term *modp) { + return Yap_StripModule(t, modp); +} - X_API int YAP_ThreadSelf(void) { +X_API int YAP_ThreadSelf(void) { #if THREADS - return Yap_thread_self(); + return Yap_thread_self(); #else - return -2; + return -2; #endif - } +} - X_API int YAP_ThreadCreateEngine(struct YAP_thread_attr_struct *attr) { +X_API int YAP_ThreadCreateEngine(struct YAP_thread_attr_struct *attr) { #if THREADS - return Yap_thread_create_engine(attr); + return Yap_thread_create_engine(attr); #else - return -1; + return -1; #endif - } +} - X_API int YAP_ThreadAttachEngine(int wid) { +X_API int YAP_ThreadAttachEngine(int wid) { #if THREADS - return Yap_thread_attach_engine(wid); + return Yap_thread_attach_engine(wid); #else - return FALSE; + return FALSE; #endif - } +} - X_API int YAP_ThreadDetachEngine(int wid) { +X_API int YAP_ThreadDetachEngine(int wid) { #if THREADS - return Yap_thread_detach_engine(wid); + return Yap_thread_detach_engine(wid); #else - return FALSE; + return FALSE; #endif - } +} - X_API int YAP_ThreadDestroyEngine(int wid) { +X_API int YAP_ThreadDestroyEngine(int wid) { #if THREADS - return Yap_thread_destroy_engine(wid); + return Yap_thread_destroy_engine(wid); #else - return FALSE; + return FALSE; #endif - } +} - X_API Term YAP_TermNil(void) { return TermNil; } +X_API Term YAP_TermNil(void) { return TermNil; } - X_API int YAP_IsTermNil(Term t) { return t == TermNil; } +X_API int YAP_IsTermNil(Term t) { return t == TermNil; } - X_API int YAP_AtomGetHold(Atom at) { return Yap_AtomIncreaseHold(at); } +X_API int YAP_AtomGetHold(YAP_Atom at) { return Yap_AtomIncreaseHold(at); } - X_API int YAP_AtomReleaseHold(Atom at) { return Yap_AtomDecreaseHold(at); } +X_API int YAP_AtomReleaseHold(YAP_Atom at) { return Yap_AtomDecreaseHold(at); } - X_API Agc_hook YAP_AGCRegisterHook(Agc_hook hook) { - Agc_hook old = GLOBAL_AGCHook; - GLOBAL_AGCHook = hook; - return old; - } +X_API YAP_agc_hook YAP_AGCRegisterHook(YAP_agc_hook hook) { + YAP_agc_hook old = (YAP_agc_hook)GLOBAL_AGCHook; + GLOBAL_AGCHook = (Agc_hook)hook; + return old; +} - X_API int YAP_HaltRegisterHook(HaltHookFunc hook, void *closure) { - return Yap_HaltRegisterHook(hook, closure); - } +X_API int YAP_HaltRegisterHook(HaltHookFunc hook, void *closure) { + return Yap_HaltRegisterHook(hook, closure); +} - X_API char *YAP_cwd(void) { - CACHE_REGS - char *buf = NULL; - int len; - if (!Yap_getcwd(LOCAL_FileNameBuf, YAP_FILENAME_MAX)) - return FALSE; - len = strlen(LOCAL_FileNameBuf); - buf = Yap_AllocCodeSpace(len + 1); - if (!buf) - return NULL; - strncpy(buf, LOCAL_FileNameBuf, len); - return buf; - } +X_API char *YAP_cwd(void) { + CACHE_REGS + char *buf = NULL; + int len; + if (!Yap_getcwd(LOCAL_FileNameBuf, YAP_FILENAME_MAX)) + return FALSE; + len = strlen(LOCAL_FileNameBuf); + buf = Yap_AllocCodeSpace(len + 1); + if (!buf) + return NULL; + strncpy(buf, LOCAL_FileNameBuf, len); + return buf; +} - X_API Term YAP_FloatsToList(double *dblp, size_t sz) { - CACHE_REGS - Term t; - CELL *oldH; - BACKUP_H(); +X_API Term YAP_FloatsToList(double *dblp, size_t sz) { + CACHE_REGS + Term t; + CELL *oldH; + BACKUP_H(); - if (!sz) - return TermNil; - while (ASP - 1024 < HR + sz * (2 + 2 + SIZEOF_DOUBLE / SIZEOF_INT_P)) { - if ((CELL *) dblp > H0 && (CELL *) dblp < HR) { + if (!sz) + return TermNil; + while (ASP - 1024 < HR + sz * (2 + 2 + SIZEOF_DOUBLE / SIZEOF_INT_P)) { + if ((CELL *) dblp > H0 && (CELL *) dblp < HR) { /* we are in trouble */ LOCAL_OpenArray = (CELL *) dblp; - } - if (!Yap_dogc(0, NULL PASS_REGS)) { + } + if (!Yap_dogc(0, NULL PASS_REGS)) { RECOVER_H(); return 0L; - } - dblp = (double *) LOCAL_OpenArray; - LOCAL_OpenArray = NULL; - } - t = AbsPair(HR); - while (sz) { - oldH = HR; - HR += 2; - oldH[0] = MkFloatTerm(*dblp++); - oldH[1] = AbsPair(HR); - sz--; - } - oldH[1] = TermNil; - RECOVER_H(); - return t; - } + } + dblp = (double *) LOCAL_OpenArray; + LOCAL_OpenArray = NULL; + } + t = AbsPair(HR); + while (sz) { + oldH = HR; + HR += 2; + oldH[0] = MkFloatTerm(*dblp++); + oldH[1] = AbsPair(HR); + sz--; + } + oldH[1] = TermNil; + RECOVER_H(); + return t; +} - X_API Int YAP_ListToFloats(Term t, double *dblp, size_t sz) { - size_t i = 0; +X_API Int YAP_ListToFloats(Term t, double *dblp, size_t sz) { + size_t i = 0; - t = Deref(t); - do { - Term hd; - if (IsVarTerm(t)) + t = Deref(t); + do { + Term hd; + if (IsVarTerm(t)) return -1; - if (t == TermNil) + if (t == TermNil) return i; - if (!IsPairTerm(t)) + if (!IsPairTerm(t)) return -1; - hd = HeadOfTerm(t); - if (IsFloatTerm(hd)) { + hd = HeadOfTerm(t); + if (IsFloatTerm(hd)) { dblp[i++] = FloatOfTerm(hd); - } else { + } else { extern double Yap_gmp_to_float(Term hd); if (IsIntTerm(hd)) - dblp[i++] = IntOfTerm(hd); + dblp[i++] = IntOfTerm(hd); else if (IsLongIntTerm(hd)) - dblp[i++] = LongIntOfTerm(hd); + dblp[i++] = LongIntOfTerm(hd); #if USE_GMP else if (IsBigIntTerm(hd)) - dblp[i++] = Yap_gmp_to_float(hd); + dblp[i++] = Yap_gmp_to_float(hd); #endif else - return -1; - } - if (i == sz) + return -1; + } + if (i == sz) return sz; - t = TailOfTerm(t); - } while (TRUE); - } + t = TailOfTerm(t); + } while (TRUE); +} - X_API Term YAP_IntsToList(Int *dblp, size_t sz) { - CACHE_REGS - Term t; - CELL *oldH; - BACKUP_H(); +X_API Term YAP_IntsToList(Int *dblp, size_t sz) { + CACHE_REGS + Term t; + CELL *oldH; + BACKUP_H(); - if (!sz) - return TermNil; - while (ASP - 1024 < HR + sz * 3) { - if ((CELL *) dblp > H0 && (CELL *) dblp < HR) { + if (!sz) + return TermNil; + while (ASP - 1024 < HR + sz * 3) { + if ((CELL *) dblp > H0 && (CELL *) dblp < HR) { /* we are in trouble */ LOCAL_OpenArray = (CELL *) dblp; - } - if (!Yap_dogc(0, NULL PASS_REGS)) { + } + if (!Yap_dogc(0, NULL PASS_REGS)) { RECOVER_H(); return 0L; - } - dblp = (Int *) LOCAL_OpenArray; - LOCAL_OpenArray = NULL; - } - t = AbsPair(HR); - while (sz) { - oldH = HR; - HR += 2; - oldH[0] = MkIntegerTerm(*dblp++); - oldH[1] = AbsPair(HR); - sz--; - } - oldH[1] = TermNil; - RECOVER_H(); - return t; - } + } + dblp = (Int *) LOCAL_OpenArray; + LOCAL_OpenArray = NULL; + } + t = AbsPair(HR); + while (sz) { + oldH = HR; + HR += 2; + oldH[0] = MkIntegerTerm(*dblp++); + oldH[1] = AbsPair(HR); + sz--; + } + oldH[1] = TermNil; + RECOVER_H(); + return t; +} - X_API Int YAP_ListToInts(Term t, Int *dblp, size_t sz) { - size_t i = 0; +X_API Int YAP_ListToInts(Term t, Int *dblp, size_t sz) { + size_t i = 0; - t = Deref(t); - do { - Term hd; - if (IsVarTerm(t)) + t = Deref(t); + do { + Term hd; + if (IsVarTerm(t)) return -1; - if (t == TermNil) + if (t == TermNil) return i; - if (!IsPairTerm(t)) + if (!IsPairTerm(t)) return -1; - hd = HeadOfTerm(t); - if (!IsIntTerm(hd)) + hd = HeadOfTerm(t); + if (!IsIntTerm(hd)) return -1; - dblp[i++] = IntOfTerm(hd); - if (i == sz) + dblp[i++] = IntOfTerm(hd); + if (i == sz) return sz; - t = TailOfTerm(t); - } while (TRUE); - } + t = TailOfTerm(t); + } while (TRUE); +} - X_API Term YAP_OpenList(int n) { - CACHE_REGS - Term t; - BACKUP_H(); +X_API Term YAP_OpenList(int n) { + CACHE_REGS + Term t; + BACKUP_H(); - while (HR + 2 * n > ASP - 1024) { - if (!Yap_dogc(0, NULL PASS_REGS)) { + while (HR + 2 * n > ASP - 1024) { + if (!Yap_dogc(0, NULL PASS_REGS)) { RECOVER_H(); return FALSE; - } - } - t = AbsPair(HR); - HR += 2 * n; + } + } + t = AbsPair(HR); + HR += 2 * n; - RECOVER_H(); - return t; - } + RECOVER_H(); + return t; +} - X_API Term YAP_ExtendList(Term t0, Term inp) { - Term t; - CELL *ptr = RepPair(t0); - BACKUP_H(); +X_API Term YAP_ExtendList(Term t0, Term inp) { + Term t; + CELL *ptr = RepPair(t0); + BACKUP_H(); - ptr[0] = inp; - ptr[1] = AbsPair(ptr + 2); - t = AbsPair(ptr + 2); + ptr[0] = inp; + ptr[1] = AbsPair(ptr + 2); + t = AbsPair(ptr + 2); - RECOVER_H(); - return t; - } + RECOVER_H(); + return t; +} - X_API int YAP_CloseList(Term t0, Term tail) { - CELL *ptr = RepPair(t0); +X_API int YAP_CloseList(Term t0, Term tail) { + CELL *ptr = RepPair(t0); - RESET_VARIABLE(ptr - 1); - if (!Yap_unify((Term) (ptr - 1), tail)) - return FALSE; - return TRUE; - } + RESET_VARIABLE(ptr - 1); + if (!Yap_unify((Term) (ptr - 1), tail)) + return FALSE; + return TRUE; +} - X_API int YAP_IsAttVar(Term t) { - CACHE_REGS - t = Deref(t); - if (!IsVarTerm(t)) - return FALSE; - return IsAttVar(VarOfTerm(t)); - } +X_API int YAP_IsAttVar(Term t) { + CACHE_REGS + t = Deref(t); + if (!IsVarTerm(t)) + return FALSE; + return IsAttVar(VarOfTerm(t)); +} - X_API Term YAP_AttsOfVar(Term t) { - CACHE_REGS - attvar_record *attv; +X_API Term YAP_AttsOfVar(Term t) { + CACHE_REGS + attvar_record *attv; - t = Deref(t); - if (!IsVarTerm(t)) - return TermNil; - if (!IsAttVar(VarOfTerm(t))) - return TermNil; - attv = RepAttVar(VarOfTerm(t)); - return attv->Atts; - } + t = Deref(t); + if (!IsVarTerm(t)) + return TermNil; + if (!IsAttVar(VarOfTerm(t))) + return TermNil; + attv = RepAttVar(VarOfTerm(t)); + return attv->Atts; +} - X_API int YAP_FileNoFromStream(Term t) { +X_API int YAP_FileNoFromStream(Term t) { - t = Deref(t); - if (IsVarTerm(t)) - return -1; - return Yap_StreamToFileNo(t); - } + t = Deref(t); + if (IsVarTerm(t)) + return -1; + return Yap_StreamToFileNo(t); +} - X_API void *YAP_FileDescriptorFromStream(Term t) { +X_API void *YAP_FileDescriptorFromStream(Term t) { - t = Deref(t); - if (IsVarTerm(t)) - return NULL; - return Yap_FileDescriptorFromStream(t); - } + t = Deref(t); + if (IsVarTerm(t)) + return NULL; + return Yap_FileDescriptorFromStream(t); +} - X_API void *YAP_Record(Term t) { - DBTerm *dbterm; - DBRecordList *dbt; +X_API void *YAP_Record(Term t) { + DBTerm *dbterm; + DBRecordList *dbt; - dbterm = Yap_StoreTermInDB(Deref(t), 0); - if (dbterm == NULL) - return NULL; - dbt = (struct record_list *) Yap_AllocCodeSpace(sizeof(struct record_list)); - while (dbt == NULL) { - if (!Yap_growheap(FALSE, sizeof(struct record_list), NULL)) { + dbterm = Yap_StoreTermInDB(Deref(t), 0); + if (dbterm == NULL) + return NULL; + dbt = (struct record_list *) Yap_AllocCodeSpace(sizeof(struct record_list)); + while (dbt == NULL) { + if (!Yap_growheap(FALSE, sizeof(struct record_list), NULL)) { /* be a good neighbor */ Yap_FreeCodeSpace((void *) dbterm); Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "using YAP_Record"); return NULL; - } - } - if (Yap_Records) { - Yap_Records->prev_rec = dbt; - } - dbt->next_rec = Yap_Records; - dbt->prev_rec = NULL; - dbt->dbrecord = dbterm; - Yap_Records = dbt; - return dbt; - } + } + } + if (Yap_Records) { + Yap_Records->prev_rec = dbt; + } + dbt->next_rec = Yap_Records; + dbt->prev_rec = NULL; + dbt->dbrecord = dbterm; + Yap_Records = dbt; + return dbt; +} - X_API Term YAP_Recorded(void *handle) { - CACHE_REGS - Term t; - DBTerm *dbterm = ((DBRecordList *) handle)->dbrecord; +X_API Term YAP_Recorded(void *handle) { + CACHE_REGS + Term t; + DBTerm *dbterm = ((DBRecordList *) handle)->dbrecord; - BACKUP_MACHINE_REGS(); - do { - LOCAL_Error_TYPE = YAP_NO_ERROR; - t = Yap_FetchTermFromDB(dbterm); - if (LOCAL_Error_TYPE == YAP_NO_ERROR) { + BACKUP_MACHINE_REGS(); + do { + LOCAL_Error_TYPE = YAP_NO_ERROR; + t = Yap_FetchTermFromDB(dbterm); + if (LOCAL_Error_TYPE == YAP_NO_ERROR) { RECOVER_MACHINE_REGS(); return t; - } else if (LOCAL_Error_TYPE == RESOURCE_ERROR_ATTRIBUTED_VARIABLES) { + } else if (LOCAL_Error_TYPE == RESOURCE_ERROR_ATTRIBUTED_VARIABLES) { LOCAL_Error_TYPE = YAP_NO_ERROR; if (!Yap_growglobal(NULL)) { - Yap_Error(RESOURCE_ERROR_ATTRIBUTED_VARIABLES, TermNil, - LOCAL_ErrorMessage); - RECOVER_MACHINE_REGS(); - return FALSE; + Yap_Error(RESOURCE_ERROR_ATTRIBUTED_VARIABLES, TermNil, + LOCAL_ErrorMessage); + RECOVER_MACHINE_REGS(); + return FALSE; } - } else { + } else { LOCAL_Error_TYPE = YAP_NO_ERROR; if (!Yap_growstack(dbterm->NOfCells * CellSize)) { - Yap_Error(RESOURCE_ERROR_STACK, TermNil, LOCAL_ErrorMessage); - RECOVER_MACHINE_REGS(); - return FALSE; + Yap_Error(RESOURCE_ERROR_STACK, TermNil, LOCAL_ErrorMessage); + RECOVER_MACHINE_REGS(); + return FALSE; } - } - } while (t == (CELL) 0); - RECOVER_MACHINE_REGS(); - return t; - } + } + } while (t == (CELL) 0); + RECOVER_MACHINE_REGS(); + return t; +} - X_API int YAP_Erase(void *handle) { - DBRecordList *dbr = (DBRecordList *) handle; - if (dbr->next_rec) - dbr->next_rec->prev_rec = dbr->prev_rec; - if (dbr->prev_rec) - dbr->prev_rec->next_rec = dbr->next_rec; - else if (Yap_Records == dbr) { - Yap_Records = dbr->next_rec; - } - Yap_ReleaseTermFromDB(dbr->dbrecord); - Yap_FreeCodeSpace(handle); - return 1; - } +X_API int YAP_Erase(void *handle) { + DBRecordList *dbr = (DBRecordList *) handle; + if (dbr->next_rec) + dbr->next_rec->prev_rec = dbr->prev_rec; + if (dbr->prev_rec) + dbr->prev_rec->next_rec = dbr->next_rec; + else if (Yap_Records == dbr) { + Yap_Records = dbr->next_rec; + } + Yap_ReleaseTermFromDB(dbr->dbrecord); + Yap_FreeCodeSpace(handle); + return 1; +} - X_API yhandle_t YAP_ArgsToSlots(int n) { - CACHE_REGS - return Yap_NewSlots(n); - } +X_API yhandle_t YAP_ArgsToSlots(int n) { + CACHE_REGS + return Yap_NewSlots(n); +} - X_API void YAP_SlotsToArgs(int n, yhandle_t slot) { - CACHE_REGS - CELL *ptr0 = Yap_AddressFromSlot(slot), *ptr1 = &ARG1; - while (n--) { - *ptr1++ = *ptr0++; - } - } +X_API void YAP_SlotsToArgs(int n, yhandle_t slot) { + CACHE_REGS + CELL *ptr0 = Yap_AddressFromSlot(slot), *ptr1 = &ARG1; + while (n--) { + *ptr1++ = *ptr0++; + } +} - X_API void YAP_signal(int sig) { Yap_signal(sig); } +X_API void YAP_signal(int sig) { Yap_signal(sig); } - X_API int YAP_SetYAPFlag(Term flag, Term val) { return setYapFlag(flag, val); } +X_API int YAP_SetYAPFlag(Term flag, Term val) { return setYapFlag(flag, val); } - /* yhandle_t YAP_VarSlotToNumber(yhandle_t) */ - X_API yhandle_t YAP_VarSlotToNumber(yhandle_t s) { - CACHE_REGS - Term *t = (CELL *) Deref(Yap_GetFromSlot(s)); - if (t < HR) - return t - H0; - return t - LCL0; - } +/* yhandle_t YAP_VarSlotToNumber(yhandle_t) */ +X_API yhandle_t YAP_VarSlotToNumber(yhandle_t s) { + CACHE_REGS + Term *t = (CELL *) Deref(Yap_GetFromSlot(s)); + if (t < HR) + return t - H0; + return t - LCL0; +} - /* Term YAP_ModuleUser() */ - X_API Term YAP_ModuleUser(void) { return MkAtomTerm(AtomUser); } +/* Term YAP_ModuleUser() */ +X_API Term YAP_ModuleUser(void) { return MkAtomTerm(AtomUser); } - /* int YAP_PredicateHasClauses() */ - X_API yhandle_t YAP_NumberOfClausesForPredicate(PredEntry *pe) { - return pe->cs.p_code.NOfClauses; - } +/* int YAP_PredicateHasClauses() */ +X_API YAP_handle_t YAP_NumberOfClausesForPredicate(YAP_PredEntryPtr ape) { + PredEntry *pe = ape; + return pe->cs.p_code.NOfClauses; +} - X_API int YAP_MaxOpPriority(Atom at, Term module) { - AtomEntry *ae = RepAtom(at); - OpEntry *info; - WRITE_LOCK(ae->ARWLock); - info = Yap_GetOpPropForAModuleHavingALock(ae, module); - if (!info) { - WRITE_UNLOCK(ae->ARWLock); - return 0; - } - int ret = info->Prefix; - if (info->Infix > ret) - ret = info->Infix; - if (info->Posfix > ret) - ret = info->Posfix; - WRITE_UNLOCK(ae->ARWLock); - return ret; - } +X_API int YAP_MaxOpPriority(YAP_Atom at, Term module) { + AtomEntry *ae = RepAtom(at); + OpEntry *info; + WRITE_LOCK(ae->ARWLock); + info = Yap_GetOpPropForAModuleHavingALock(ae, module); + if (!info) { + WRITE_UNLOCK(ae->ARWLock); + return 0; + } + int ret = info->Prefix; + if (info->Infix > ret) + ret = info->Infix; + if (info->Posfix > ret) + ret = info->Posfix; + WRITE_UNLOCK(ae->ARWLock); + return ret; +} - X_API int YAP_OpInfo(Atom at, Term module, int opkind, int *yap_type, int *prio) { - AtomEntry *ae = RepAtom(at); - OpEntry *info; - int n; +X_API int YAP_OpInfo(YAP_Atom at, Term module, int opkind, int *yap_type, int *prio) { + AtomEntry *ae = RepAtom(at); + OpEntry *info; + int n; - WRITE_LOCK(ae->ARWLock); - info = Yap_GetOpPropForAModuleHavingALock(ae, module); - if (!info) { - /* try system operators */ - info = Yap_GetOpPropForAModuleHavingALock(ae, PROLOG_MODULE); - if (!info) { + WRITE_LOCK(ae->ARWLock); + info = Yap_GetOpPropForAModuleHavingALock(ae, module); + if (!info) { + /* try system operators */ + info = Yap_GetOpPropForAModuleHavingALock(ae, PROLOG_MODULE); + if (!info) { WRITE_UNLOCK(ae->ARWLock); return 0; - } - } - if (opkind == PREFIX_OP) { - SMALLUNSGN p = info->Prefix; - if (!p) { + } + } + if (opkind == PREFIX_OP) { + SMALLUNSGN p = info->Prefix; + if (!p) { WRITE_UNLOCK(ae->ARWLock); return FALSE; - } - if (p & DcrrpFlag) { + } + if (p & DcrrpFlag) { n = 6; *prio = (p ^ DcrrpFlag); - } else { + } else { n = 7; *prio = p; - } - } else if (opkind == INFIX_OP) { - SMALLUNSGN p = info->Infix; - if (!p) { + } + } else if (opkind == INFIX_OP) { + SMALLUNSGN p = info->Infix; + if (!p) { WRITE_UNLOCK(ae->ARWLock); return FALSE; - } - if ((p & DcrrpFlag) && (p & DcrlpFlag)) { + } + if ((p & DcrrpFlag) && (p & DcrlpFlag)) { n = 1; *prio = (p ^ (DcrrpFlag | DcrlpFlag)); - } else if (p & DcrrpFlag) { + } else if (p & DcrrpFlag) { n = 3; *prio = (p ^ DcrrpFlag); - } else if (p & DcrlpFlag) { + } else if (p & DcrlpFlag) { n = 2; *prio = (p ^ DcrlpFlag); - } else { + } else { n = 4; *prio = p; - } - } else { - SMALLUNSGN p = info->Posfix; - if (p & DcrlpFlag) { + } + } else { + SMALLUNSGN p = info->Posfix; + if (p & DcrlpFlag) { n = 4; *prio = (p ^ DcrlpFlag); - } else { + } else { n = 5; *prio = p; - } - } - *yap_type = n; - WRITE_UNLOCK(ae->ARWLock); - return 1; - } + } + } + *yap_type = n; + WRITE_UNLOCK(ae->ARWLock); + return 1; +} - X_API int YAP_Argv(char ***argvp) { - if (argvp) { - *argvp = GLOBAL_argv; - } - return GLOBAL_argc; - } +X_API int YAP_Argv(char ***argvp) { + if (argvp) { + *argvp = GLOBAL_argv; + } + return GLOBAL_argc; +} - X_API YAP_tag_t YAP_TagOfTerm(Term t) { - if (IsVarTerm(t)) { - CELL *pt = VarOfTerm(t); - if (IsUnboundVar(pt)) { +X_API YAP_tag_t YAP_TagOfTerm(Term t) { + if (IsVarTerm(t)) { + CELL *pt = VarOfTerm(t); + if (IsUnboundVar(pt)) { CACHE_REGS - if (IsAttVar(pt)) + if (IsAttVar(pt)) return YAP_TAG_ATT; return YAP_TAG_UNBOUND; - } - return YAP_TAG_REF; - } - if (IsPairTerm(t)) - return YAP_TAG_PAIR; - if (IsAtomOrIntTerm(t)) { - if (IsAtomTerm(t)) + } + return YAP_TAG_REF; + } + if (IsPairTerm(t)) + return YAP_TAG_PAIR; + if (IsAtomOrIntTerm(t)) { + if (IsAtomTerm(t)) return YAP_TAG_ATOM; - return YAP_TAG_INT; - } else { - Functor f = FunctorOfTerm(t); + return YAP_TAG_INT; + } else { + Functor f = FunctorOfTerm(t); - if (IsExtensionFunctor(f)) { + if (IsExtensionFunctor(f)) { if (f == FunctorDBRef) { - return YAP_TAG_DBREF; + return YAP_TAG_DBREF; } if (f == FunctorLongInt) { - return YAP_TAG_LONG_INT; + return YAP_TAG_LONG_INT; } if (f == FunctorBigInt) { - big_blob_type bt = RepAppl(t)[1]; - switch (bt) { - case BIG_INT: - return YAP_TAG_BIG_INT; - case BIG_RATIONAL: - return YAP_TAG_RATIONAL; - default: - return YAP_TAG_OPAQUE; - } + big_blob_type bt = RepAppl(t)[1]; + switch (bt) { + case BIG_INT: + return YAP_TAG_BIG_INT; + case BIG_RATIONAL: + return YAP_TAG_RATIONAL; + default: + return YAP_TAG_OPAQUE; + } } - } - return YAP_TAG_APPL; - } - } + } + return YAP_TAG_APPL; + } +} - int YAP_BPROLOG_exception; - Term YAP_BPROLOG_curr_toam_status; +int YAP_BPROLOG_exception; +Term YAP_BPROLOG_curr_toam_status; - /** - * Output the number of bytes needed to represent a string in UTF-8 - * Note that the terminating zero is not included. No error checking - * is performed (the programmer should have that done). - * - * @param t a list of codes, chars, string or atom. - * - * @return a positive number with the size, or 0. - */ - X_API size_t YAP_UTF8_TextLength(Term t) { - utf8proc_uint8_t dst[8]; - size_t sz = 0; +/** + * Output the number of bytes needed to represent a string in UTF-8 + * Note that the terminating zero is not included. No error checking + * is performed (the programmer should have that done). + * + * @param t a list of codes, chars, string or atom. + * + * @return a positive number with the size, or 0. + */ +X_API size_t YAP_UTF8_TextLength(Term t) { + utf8proc_uint8_t dst[8]; + size_t sz = 0; - if (IsPairTerm(t)) { - while (t != TermNil) { + if (IsPairTerm(t)) { + while (t != TermNil) { int c; Term hd = HeadOfTerm(t); if (IsAtomTerm(hd)) { - Atom at = AtomOfTerm(hd); - unsigned char *s = RepAtom(at)->UStrOfAE; - int32_t ch; - get_utf8(s, 1, &ch); - c = ch; + Atom at = AtomOfTerm(hd); + unsigned char *s = RepAtom(at)->UStrOfAE; + int32_t ch; + get_utf8(s, 1, &ch); + c = ch; } else if (IsIntegerTerm(hd)) { - c = IntegerOfTerm(hd); + c = IntegerOfTerm(hd); } else { - c = '\0'; + c = '\0'; } sz += utf8proc_encode_char(c, dst); t = TailOfTerm(t); - } - } else if (IsAtomTerm(t)) { - Atom at = AtomOfTerm(t); - char *s = RepAtom(at)->StrOfAE; - sz = strlen(s); - } else if (IsStringTerm(t)) { - sz = strlen(StringOfTerm(t)); - } - return sz; - } + } + } else if (IsAtomTerm(t)) { + Atom at = AtomOfTerm(t); + char *s = RepAtom(at)->StrOfAE; + sz = strlen(s); + } else if (IsStringTerm(t)) { + sz = strlen(StringOfTerm(t)); + } + return sz; +} - X_API Int YAP_ListLength(Term t) { - Term *aux; +X_API Int YAP_ListLength(Term t) { + Term *aux; - Int n = Yap_SkipList(&t, &aux); - if (IsVarTerm(*aux)) - return -1; - if (*aux == TermNil) - return n; - return -1; - } + Int n = Yap_SkipList(&t, &aux); + if (IsVarTerm(*aux)) + return -1; + if (*aux == TermNil) + return n; + return -1; +} - X_API Int YAP_NumberVars(Term t, Int nbv) { return Yap_NumberVars(t, nbv, FALSE); } +X_API Int YAP_NumberVars(Term t, Int nbv) { return Yap_NumberVars(t, nbv, FALSE); } - X_API Term YAP_UnNumberVars(Term t) { - /* don't allow sharing of ground terms */ - return Yap_UnNumberTerm(t, FALSE); - } +X_API Term YAP_UnNumberVars(Term t) { + /* don't allow sharing of ground terms */ + return Yap_UnNumberTerm(t, FALSE); +} - X_API int YAP_IsNumberedVariable(Term t) { - return IsApplTerm(t) && FunctorOfTerm(t) == FunctorDollarVar && - IsIntegerTerm(ArgOfTerm(1, t)); - } +X_API int YAP_IsNumberedVariable(Term t) { + return IsApplTerm(t) && FunctorOfTerm(t) == FunctorDollarVar && + IsIntegerTerm(ArgOfTerm(1, t)); +} - X_API size_t YAP_ExportTerm(Term inp, char *buf, size_t len) { - if (!len) - return 0; - return Yap_ExportTerm(inp, buf, len, current_arity()); - } +X_API size_t YAP_ExportTerm(Term inp, char *buf, size_t len) { + if (!len) + return 0; + return Yap_ExportTerm(inp, buf, len, current_arity()); +} - X_API size_t YAP_SizeOfExportedTerm(char *buf) { - if (!buf) - return 0; - return Yap_SizeOfExportedTerm(buf); - } +X_API size_t YAP_SizeOfExportedTerm(char *buf) { + if (!buf) + return 0; + return Yap_SizeOfExportedTerm(buf); +} - X_API Term YAP_ImportTerm(char *buf) { return Yap_ImportTerm(buf); } +X_API Term YAP_ImportTerm(char *buf) { return Yap_ImportTerm(buf); } - X_API int YAP_RequiresExtraStack(size_t sz) { - CACHE_REGS +X_API int YAP_RequiresExtraStack(size_t sz) { + CACHE_REGS - if (sz < 16 * 1024) - sz = 16 * 1024; - if (HR <= ASP - sz) { - return FALSE; - } - BACKUP_H(); - while (HR > ASP - sz) { - CACHE_REGS - RECOVER_H(); - if (!Yap_dogc(0, NULL PASS_REGS)) { + if (sz < 16 * 1024) + sz = 16 * 1024; + if (HR <= ASP - sz) { + return FALSE; + } + BACKUP_H(); + while (HR > ASP - sz) { + CACHE_REGS + RECOVER_H(); + if (!Yap_dogc(0, NULL PASS_REGS)) { return -1; - } - BACKUP_H(); - } - RECOVER_H(); - return TRUE; - } + } + BACKUP_H(); + } + RECOVER_H(); + return TRUE; +} - atom_t *TR_Atoms; - functor_t *TR_Functors; - size_t AtomTranslations, MaxAtomTranslations; - size_t FunctorTranslations, MaxFunctorTranslations; +atom_t *TR_Atoms; +functor_t *TR_Functors; +size_t AtomTranslations, MaxAtomTranslations; +size_t FunctorTranslations, MaxFunctorTranslations; - X_API Int YAP_AtomToInt(Atom At) { - TranslationEntry *te = Yap_GetTranslationProp(At, 0); - if (te != NIL) - return te->Translation; - TR_Atoms[AtomTranslations] = At; - Yap_PutAtomTranslation(At, 0, AtomTranslations); - AtomTranslations++; - if (AtomTranslations == MaxAtomTranslations) { - atom_t *ot = TR_Atoms; - atom_t *nt = (atom_t *) malloc(sizeof(atom_t) * 2 * MaxAtomTranslations); - if (nt == NULL) { +X_API Int YAP_AtomToInt(YAP_Atom At) { + TranslationEntry *te = Yap_GetTranslationProp(At, 0); + if (te != NIL) + return te->Translation; + TR_Atoms[AtomTranslations] = At; + Yap_PutAtomTranslation(At, 0, AtomTranslations); + AtomTranslations++; + if (AtomTranslations == MaxAtomTranslations) { + atom_t *ot = TR_Atoms; + atom_t *nt = (atom_t *) malloc(sizeof(atom_t) * 2 * MaxAtomTranslations); + if (nt == NULL) { Yap_Error(SYSTEM_ERROR_INTERNAL, MkAtomTerm(At), "No more room for translations"); return -1; - } - memcpy(nt, ot, sizeof(atom_t) * MaxAtomTranslations); - TR_Atoms = nt; - free(ot); - MaxAtomTranslations *= 2; - } - return AtomTranslations - 1; - } + } + memcpy(nt, ot, sizeof(atom_t) * MaxAtomTranslations); + TR_Atoms = nt; + free(ot); + MaxAtomTranslations *= 2; + } + return AtomTranslations - 1; +} - X_API Atom YAP_IntToAtom(Int i) { return TR_Atoms[i]; } +X_API YAP_Atom YAP_IntToAtom(Int i) { return TR_Atoms[i]; } - X_API Int YAP_FunctorToInt(Functor f) { - Atom At = NameOfFunctor(f); - arity_t arity = ArityOfFunctor(f); - TranslationEntry *te = Yap_GetTranslationProp(At, arity); - if (te != NIL) - return te->Translation; - TR_Functors[FunctorTranslations] = f; - Yap_PutAtomTranslation(At, arity, FunctorTranslations); - FunctorTranslations++; - if (FunctorTranslations == MaxFunctorTranslations) { - functor_t *nt = (functor_t *) malloc(sizeof(functor_t) * 2 * - MaxFunctorTranslations), - *ot = TR_Functors; - if (nt == NULL) { +X_API Int YAP_FunctorToInt(YAP_Functor f) { + YAP_Atom At = NameOfFunctor(f); + arity_t arity = ArityOfFunctor(f); + TranslationEntry *te = Yap_GetTranslationProp(At, arity); + if (te != NIL) + return te->Translation; + TR_Functors[FunctorTranslations] = f; + Yap_PutAtomTranslation(At, arity, FunctorTranslations); + FunctorTranslations++; + if (FunctorTranslations == MaxFunctorTranslations) { + functor_t *nt = (functor_t *) malloc(sizeof(functor_t) * 2 * + MaxFunctorTranslations), + *ot = TR_Functors; + if (nt == NULL) { Yap_Error(SYSTEM_ERROR_INTERNAL, MkAtomTerm(At), "No more room for translations"); return -1; - } - memcpy(nt, ot, sizeof(functor_t) * MaxFunctorTranslations); - TR_Functors = nt; - free(ot); - MaxFunctorTranslations *= 2; - } - return FunctorTranslations - 1; - } + } + memcpy(nt, ot, sizeof(functor_t) * MaxFunctorTranslations); + TR_Functors = nt; + free(ot); + MaxFunctorTranslations *= 2; + } + return FunctorTranslations - 1; +} - X_API void *YAP_foreign_stream(int sno) { return GLOBAL_Stream[sno].u.private_data; } +X_API void *YAP_foreign_stream(int sno) { return GLOBAL_Stream[sno].u.private_data; } - X_API Functor YAP_IntToFunctor(Int i) { return TR_Functors[i]; } +X_API YAP_Functor YAP_IntToFunctor(Int i) { return TR_Functors[i]; } - X_API void *YAP_shared(void) { return LOCAL_shared; } +X_API void *YAP_shared(void) { return LOCAL_shared; } - X_API PredEntry *YAP_TopGoal(void) { - YAP_Functor f = Yap_MkFunctor(Yap_LookupAtom("yap_query"), 3); - Term tmod = MkAtomTerm(Yap_LookupAtom("yapi")); - PredEntry *p = RepPredProp(Yap_GetPredPropByFunc(f, tmod)); - return p; - } +X_API YAP_PredEntryPtr YAP_TopGoal(void) { + Functor f = Yap_MkFunctor(Yap_LookupAtom("yap_query"), 3); + Term tmod = MkAtomTerm(Yap_LookupAtom("yapi")); + PredEntry *p = RepPredProp(Yap_GetPredPropByFunc(f, tmod)); + return p; +} - void yap_init(void) {} +void yap_init(void) {} #endif // C_INTERFACE_C - /** - @} - */ +/** +@} +*/ diff --git a/C/dbase.c b/C/dbase.c index 67b8f7bc8..b776ed244 100644 --- a/C/dbase.c +++ b/C/dbase.c @@ -4911,17 +4911,17 @@ static Int cont_current_key_integer(USES_REGS1) { return Yap_unify(term, ARG1) && Yap_unify(term, ARG2); } -Term Yap_FetchTermFromDB(DBTerm *ref) { +Term Yap_FetchTermFromDB(void *ref) { CACHE_REGS return GetDBTerm(ref, FALSE PASS_REGS); } -Term Yap_FetchClauseTermFromDB(DBTerm *ref) { +Term Yap_FetchClauseTermFromDB(void *ref) { CACHE_REGS return GetDBTerm(ref, TRUE PASS_REGS); } -Term Yap_PopTermFromDB(DBTerm *ref) { +Term Yap_PopTermFromDB(void *ref) { CACHE_REGS Term t = GetDBTerm(ref, FALSE PASS_REGS); @@ -5304,7 +5304,7 @@ static void ReleaseTermFromDB(DBTerm *ref USES_REGS) { FreeDBSpace((char *)ref); } -void Yap_ReleaseTermFromDB(DBTerm *ref) { +void Yap_ReleaseTermFromDB(void *ref) { CACHE_REGS ReleaseTermFromDB(ref PASS_REGS); } diff --git a/C/errors.c b/C/errors.c index 615c6ea10..523282842 100755 --- a/C/errors.c +++ b/C/errors.c @@ -386,10 +386,10 @@ yamop *Yap_Error__(const char *file, const char *function, int lineno, Yap_RestartYap(1); } LOCAL_ActiveError->errorNo = type; - LOCAL_ActiveError->errorAsText = Yap_LookupAtom(Yap_errorName(type)); + LOCAL_ActiveError->errorAsText = Yap_errorName(type); LOCAL_ActiveError->errorClass = Yap_errorClass(type); LOCAL_ActiveError->classAsText = - Yap_LookupAtom(Yap_errorClassName(LOCAL_ActiveError->errorClass)); + Yap_errorClassName(LOCAL_ActiveError->errorClass); LOCAL_ActiveError->errorLine = lineno; LOCAL_ActiveError->errorFunction = function; LOCAL_ActiveError->errorFile = file; diff --git a/C/exec.c b/C/exec.c index c381f158d..0a30836ff 100755 --- a/C/exec.c +++ b/C/exec.c @@ -2039,10 +2039,10 @@ static Int jump_env(USES_REGS1) { // LOCAL_Error_TYPE = ERROR_EVENT; Term t1 = ArgOfTerm(1, t); if (IsApplTerm(t1) && IsAtomTerm((t2 = ArgOfTerm(1, t1)))) { - LOCAL_ActiveError->errorAsText = AtomOfTerm(t2); - LOCAL_ActiveError->classAsText = NameOfFunctor(FunctorOfTerm(t1)); + LOCAL_ActiveError->errorAsText = RepAtom(AtomOfTerm(t2))->StrOfAE; + LOCAL_ActiveError->classAsText = RepAtom(NameOfFunctor(FunctorOfTerm(t1)))->StrOfAE; } else if (IsAtomTerm(t)) { - LOCAL_ActiveError->errorAsText = AtomOfTerm(t1); + LOCAL_ActiveError->errorAsText = RepAtom(AtomOfTerm(t1))->StrOfAE; LOCAL_ActiveError->classAsText = NULL; } } else { diff --git a/C/scanner.c b/C/scanner.c index 48f077858..8efaa55fe 100755 --- a/C/scanner.c +++ b/C/scanner.c @@ -689,12 +689,12 @@ static int send_error_message(char s[]) { } static wchar_t read_quoted_char(int *scan_nextp, - struct stream_desc *inp_stream) { + struct stream_desc *st) { int ch; /* escape sequence */ do_switch: - ch = getchrq(inp_stream); + ch = getchrq(st); switch (ch) { case 10: return 0; @@ -705,7 +705,7 @@ do_switch: case 'b': return '\b'; case 'c': - while (chtype((ch = getchrq(inp_stream))) == BS) + while (chtype((ch = getchrq(st))) == BS) ; { if (ch == '\\') { @@ -732,7 +732,7 @@ do_switch: wchar_t wc = '\0'; for (i = 0; i < 4; i++) { - ch = getchrq(inp_stream); + ch = getchrq(st); if (ch >= '0' && ch <= '9') { wc += (ch - '0') << ((3 - i) * 4); } else if (ch >= 'a' && ch <= 'f') { @@ -750,7 +750,7 @@ do_switch: wchar_t wc = '\0'; for (i = 0; i < 8; i++) { - ch = getchrq(inp_stream); + ch = getchrq(st); if (ch >= '0' && ch <= '9') { wc += (ch - '0') << ((7 - i) * 4); } else if (ch >= 'a' && ch <= 'f') { @@ -777,7 +777,7 @@ do_switch: if (trueGlobalPrologFlag(ISO_FLAG)) { return send_error_message("invalid escape sequence"); } else { - ch = getchrq(inp_stream); + ch = getchrq(st); if (ch == '?') { /* delete character */ return 127; } else if (ch >= 'a' && ch < 'z') { /* hexa */ @@ -800,13 +800,13 @@ do_switch: /* follow ISO */ { unsigned char so_far = ch - '0'; - ch = getchrq(inp_stream); + ch = getchrq(st); if (ch >= '0' && ch < '8') { /* octal */ so_far = so_far * 8 + (ch - '0'); - ch = getchrq(inp_stream); + ch = getchrq(st); if (ch >= '0' && ch < '8') { /* octal */ so_far = so_far * 8 + (ch - '0'); - ch = getchrq(inp_stream); + ch = getchrq(st); if (ch != '\\') { return send_error_message("invalid octal escape sequence"); } @@ -826,19 +826,19 @@ do_switch: /* hexadecimal character (YAP allows empty hexadecimal */ { unsigned char so_far = 0; - ch = getchrq(inp_stream); + ch = getchrq(st); if (my_isxdigit(ch, 'f', 'F')) { /* hexa */ so_far = so_far * 16 + (chtype(ch) == NU ? ch - '0' : (my_isupper(ch) ? ch - 'A' : ch - 'a') + 10); - ch = getchrq(inp_stream); + ch = getchrq(st); if (my_isxdigit(ch, 'f', 'F')) { /* hexa */ so_far = so_far * 16 + (chtype(ch) == NU ? ch - '0' : (my_isupper(ch) ? ch - 'A' : ch - 'a') + 10); - ch = getchrq(inp_stream); + ch = getchrq(st); if (ch == '\\') { return so_far; } else { @@ -890,7 +890,7 @@ static int num_send_error_message(char s[]) { /* reads a number, either integer or float */ -static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { +static Term get_num(int *chp, int *chbuffp, StreamDesc *st, int sign) { int ch = *chp; Int val = 0L, base = ch - '0'; int might_be_float = TRUE, has_overflow = FALSE; @@ -899,7 +899,7 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { int max_size = 254, left = 254; *sp++ = ch; - ch = getchr(inp_stream); + ch = getchr(st); /* * because of things like 00'2, 03'2 and even better 12'2, I need to * do this (have mercy) @@ -909,7 +909,7 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { if (--left == 0) number_overflow(); base = 10 * base + ch - '0'; - ch = getchr(inp_stream); + ch = getchr(st); } if (ch == '\'') { if (base > 36) { @@ -919,7 +919,7 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { if (--left == 0) number_overflow(); *sp++ = ch; - ch = getchr(inp_stream); + ch = getchr(st); if (base == 0) { CACHE_REGS wchar_t ascii = ch; @@ -927,11 +927,11 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { if (ch == '\\' && Yap_GetModuleEntry(CurrentModule)->flags & M_CHARESCAPE) { - ascii = read_quoted_char(&scan_extra, inp_stream); + ascii = read_quoted_char(&scan_extra, st); } /* a quick way to represent ASCII */ if (scan_extra) - *chp = getchr(inp_stream); + *chp = getchr(st); if (sign == -1) { return MkIntegerTerm(-ascii); } @@ -951,7 +951,7 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { val = oval * base + chval; if (oval != (val - chval) / base) /* overflow */ has_overflow = (has_overflow || TRUE); - ch = getchr(inp_stream); + ch = getchr(st); } } } else if (ch == 'x' && base == 0) { @@ -959,7 +959,7 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { if (--left == 0) number_overflow(); *sp++ = ch; - ch = getchr(inp_stream); + ch = getchr(st); while (my_isxdigit(ch, 'F', 'f')) { Int oval = val; int chval = @@ -971,17 +971,17 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { val = val * 16 + chval; if (oval != (val - chval) / 16) /* overflow */ has_overflow = TRUE; - ch = getchr(inp_stream); + ch = getchr(st); } *chp = ch; } else if (ch == 'o' && base == 0) { might_be_float = FALSE; base = 8; - ch = getchr(inp_stream); + ch = getchr(st); } else if (ch == 'b' && base == 0) { might_be_float = FALSE; base = 2; - ch = getchr(inp_stream); + ch = getchr(st); } else { val = base; base = 10; @@ -1002,7 +1002,7 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { val = val * base + ch - '0'; if (val / base != oval || val - oval * base != ch - '0') /* overflow */ has_overflow = TRUE; - ch = getchr(inp_stream); + ch = getchr(st); } if (might_be_float && (ch == '.' || ch == 'e' || ch == 'E')) { int has_dot = (ch == '.'); @@ -1010,7 +1010,7 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { unsigned char *dp; int dc; - if (chtype(ch = getchr(inp_stream)) != NU) { + if (chtype(ch = getchr(st)) != NU) { if (ch == 'e' || ch == 'E') { if (trueGlobalPrologFlag(ISO_FLAG)) return num_send_error_message( @@ -1045,21 +1045,21 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { if (--left == 0) number_overflow(); *sp++ = ch; - } while (chtype(ch = getchr(inp_stream)) == NU); + } while (chtype(ch = getchr(st)) == NU); } } if (ch == 'e' || ch == 'E') { if (--left == 0) number_overflow(); *sp++ = ch; - ch = getchr(inp_stream); + ch = getchr(st); if (ch == '-') { if (--left == 0) number_overflow(); *sp++ = '-'; - ch = getchr(inp_stream); + ch = getchr(st); } else if (ch == '+') { - ch = getchr(inp_stream); + ch = getchr(st); } if (chtype(ch) != NU) { CACHE_REGS @@ -1071,7 +1071,7 @@ static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) { if (--left == 0) number_overflow(); *sp++ = ch; - } while (chtype(ch = getchr(inp_stream)) == NU); + } while (chtype(ch = getchr(st)) == NU); } *sp = '\0'; *chp = ch; @@ -1257,7 +1257,7 @@ const char *Yap_tokText(void *tokptre) { return "."; } -static void open_comment(int ch, StreamDesc *inp_stream USES_REGS) { +static void open_comment(int ch, StreamDesc *st USES_REGS) { CELL *h0 = HR; HR += 5; h0[0] = AbsAppl(h0 + 2); @@ -1272,7 +1272,7 @@ static void open_comment(int ch, StreamDesc *inp_stream USES_REGS) { LOCAL_CommentsTail = h0 + 1; h0 += 2; h0[0] = (CELL)FunctorMinus; - h0[1] = Yap_StreamPosition(inp_stream - GLOBAL_Stream); + h0[1] = Yap_StreamPosition(st - GLOBAL_Stream); h0[2] = TermNil; LOCAL_CommentsNextChar = h0 + 2; LOCAL_CommentsBuff = (wchar_t *)malloc(1024 * sizeof(wchar_t)); @@ -1301,14 +1301,14 @@ static void close_comment(USES_REGS1) { // mark that we reached EOF, // next token will be end_of_file) -static void mark_eof(struct stream_desc *inp_stream) { - inp_stream->status |= Push_Eof_Stream_f; +static void mark_eof(struct stream_desc *st) { + st->status |= Push_Eof_Stream_f; } #define add_ch_to_buff(ch) \ { charp += put_utf8(charp, ch); } -TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, +TokEntry *Yap_tokenizer(struct stream_desc *st, bool store_comments, Term *tposp) { CACHE_REGS @@ -1324,14 +1324,15 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, LOCAL_AnonVarTable = NULL; l = NULL; p = NULL; /* Just to make lint happy */ - ch = getchr(inp_stream); + __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "i %d", st-GLOBAL_Stream); + ch = getchr(st); while (chtype(ch) == BS) { - ch = getchr(inp_stream); + ch = getchr(st); } - *tposp = Yap_StreamPosition(inp_stream - GLOBAL_Stream); - Yap_setCurrentSourceLocation(inp_stream); - LOCAL_StartLineCount = inp_stream->linecount; - LOCAL_StartLinePos = inp_stream->linepos; + *tposp = Yap_StreamPosition(st - GLOBAL_Stream); + Yap_setCurrentSourceLocation(st); + LOCAL_StartLineCount = st->linecount; + LOCAL_StartLinePos = st->linepos; do { int quote, isvar; unsigned char *charp, *mp; @@ -1350,22 +1351,22 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, p = t; restart: while (chtype(ch) == BS) { - ch = getchr(inp_stream); + ch = getchr(st); } - t->TokPos = GetCurInpPos(inp_stream); + t->TokPos = GetCurInpPos(st); switch (chtype(ch)) { case CC: if (store_comments) { - open_comment(ch, inp_stream PASS_REGS); + open_comment(ch, st PASS_REGS); continue_comment: - while ((ch = getchr(inp_stream)) != 10 && chtype(ch) != EF) { + while ((ch = getchr(st)) != 10 && chtype(ch) != EF) { extend_comment(ch PASS_REGS); } extend_comment(ch PASS_REGS); if (chtype(ch) != EF) { - ch = getchr(inp_stream); + ch = getchr(st); if (chtype(ch) == CC) { extend_comment(ch PASS_REGS); goto continue_comment; @@ -1373,7 +1374,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, } close_comment(PASS_REGS1); } else { - while ((ch = getchr(inp_stream)) != 10 && chtype(ch) != EF) + while ((ch = getchr(st)) != 10 && chtype(ch) != EF) ; } if (chtype(ch) != EF) { @@ -1381,15 +1382,15 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, if (t == l) { /* we found a comment before reading characters */ while (chtype(ch) == BS) { - ch = getchr(inp_stream); + ch = getchr(st); } - *tposp = Yap_StreamPosition(inp_stream - GLOBAL_Stream); - Yap_setCurrentSourceLocation(inp_stream); + *tposp = Yap_StreamPosition(st - GLOBAL_Stream); + Yap_setCurrentSourceLocation(st); } goto restart; } else { t->Tok = Ord(kind = eot_tok); - mark_eof(inp_stream); + mark_eof(st); t->TokInfo = TermEof; } break; @@ -1398,14 +1399,14 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, case UL: case LC: { int32_t och = ch; - ch = getchr(inp_stream); + ch = getchr(st); size_t sz = 512; TokImage = Malloc(sz PASS_REGS); scan_name: charp = (unsigned char *)TokImage; isvar = (chtype(och) != LC); add_ch_to_buff(och); - for (; chtype(ch) <= NU; ch = getchr(inp_stream)) { + for (; chtype(ch) <= NU; ch = getchr(st)) { if (charp == TokImage + (sz - 1)) { unsigned char *p0 = TokImage; sz = Yap_Min(sz * 2, sz + MBYTE); @@ -1423,7 +1424,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, return CodeSpaceError(t, p, l); } add_ch_to_buff(ch); - ch = getchr(inp_stream); + ch = getchr(st); } add_ch_to_buff('\0'); if (!isvar) { @@ -1459,7 +1460,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, cha = ch; cherr = 0; CHECK_SPACE(); - if ((t->TokInfo = get_num(&cha, &cherr, inp_stream, sign)) == 0L) { + if ((t->TokInfo = get_num(&cha, &cherr, st, sign)) == 0L) { if (p) { p->Tok = eot_tok; t->TokInfo = TermError; @@ -1471,7 +1472,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, if (cherr) { TokEntry *e; t->Tok = Number_tok; - t->TokPos = GetCurInpPos(inp_stream); + t->TokPos = GetCurInpPos(st); e = (TokEntry *)AllocScannerMemory(sizeof(TokEntry)); if (e == NULL) { return TrailSpaceError(p, l); @@ -1497,7 +1498,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, t->Tok = Ord(Var_tok); t->TokInfo = (Term)Yap_LookupVar("E"); - t->TokPos = GetCurInpPos(inp_stream); + t->TokPos = GetCurInpPos(st); e2 = (TokEntry *)AllocScannerMemory(sizeof(TokEntry)); if (e2 == NULL) { return TrailSpaceError(p, l); @@ -1530,7 +1531,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, if (ch == '(') solo_flag = FALSE; t->TokInfo = MkAtomTerm(AtomE); - t->TokPos = GetCurInpPos(inp_stream); + t->TokPos = GetCurInpPos(st); e2 = (TokEntry *)AllocScannerMemory(sizeof(TokEntry)); if (e2 == NULL) { return TrailSpaceError(p, l); @@ -1557,7 +1558,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, charp = TokImage; quote = ch; len = 0; - ch = getchrq(inp_stream); + ch = getchrq(st); size_t sz = 1024; while (TRUE) { @@ -1577,23 +1578,23 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, break; } if (ch == quote) { - ch = getchrq(inp_stream); + ch = getchrq(st); if (ch != quote) break; add_ch_to_buff(ch); - ch = getchrq(inp_stream); + ch = getchrq(st); } else if (ch == '\\' && Yap_GetModuleEntry(CurrentModule)->flags & M_CHARESCAPE) { int scan_next = TRUE; - if ((ch = read_quoted_char(&scan_next, inp_stream))) { + if ((ch = read_quoted_char(&scan_next, st))) { add_ch_to_buff(ch); } if (scan_next) { - ch = getchrq(inp_stream); + ch = getchrq(st); } } else { add_ch_to_buff(ch); - ch = getchrq(inp_stream); + ch = getchrq(st); } ++len; } @@ -1628,9 +1629,9 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, if (ch == '\0') { int pch; t->Tok = Ord(kind = eot_tok); - pch = Yap_peek(inp_stream - GLOBAL_Stream); + pch = Yap_peek(st - GLOBAL_Stream); if (chtype(pch) == EF) { - mark_eof(inp_stream); + mark_eof(st); t->TokInfo = TermEof; } else { t->TokInfo = TermNewLine; @@ -1638,11 +1639,11 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, t->TokInfo = TermEof; return l; } else - ch = getchr(inp_stream); + ch = getchr(st); break; case SY: { int pch; - if (ch == '.' && (pch = Yap_peek(inp_stream - GLOBAL_Stream)) && + if (ch == '.' && (pch = Yap_peek(st - GLOBAL_Stream)) && (chtype(pch) == BS || chtype(pch) == EF || pch == '%')) { t->Tok = Ord(kind = eot_tok); // consume... @@ -1655,7 +1656,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, if (ch == '`') goto quoted_string; och = ch; - ch = getchr(inp_stream); + ch = getchr(st); if (och == '.') { if (chtype(ch) == BS || chtype(ch) == EF || ch == '%') { t->Tok = Ord(kind = eot_tok); @@ -1664,7 +1665,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, return l; } if (chtype(ch) == EF) { - mark_eof(inp_stream); + mark_eof(st); t->TokInfo = TermEof; } else { t->TokInfo = TermNewLine; @@ -1675,12 +1676,12 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, if (och == '/' && ch == '*') { if (store_comments) { CHECK_SPACE(); - open_comment('/', inp_stream PASS_REGS); + open_comment('/', st PASS_REGS); while ((och != '*' || ch != '/') && chtype(ch) != EF) { och = ch; CHECK_SPACE(); extend_comment(ch PASS_REGS); - ch = getchr(inp_stream); + ch = getchr(st); } if (chtype(ch) != EF) { CHECK_SPACE(); @@ -1690,7 +1691,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, } else { while ((och != '*' || ch != '/') && chtype(ch) != EF) { och = ch; - ch = getchr(inp_stream); + ch = getchr(st); } } if (chtype(ch) == EF) { @@ -1699,15 +1700,15 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, break; } else { /* leave comments */ - ch = getchr(inp_stream); + ch = getchr(st); if (t == l) { /* we found a comment before reading characters */ while (chtype(ch) == BS) { - ch = getchr(inp_stream); + ch = getchr(st); } CHECK_SPACE(); - *tposp = Yap_StreamPosition(inp_stream - GLOBAL_Stream); - Yap_setCurrentSourceLocation(inp_stream); + *tposp = Yap_StreamPosition(st - GLOBAL_Stream); + Yap_setCurrentSourceLocation(st); } } goto restart; @@ -1721,7 +1722,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, return l; } if (chtype(ch) == EF) { - mark_eof(inp_stream); + mark_eof(st); t->TokInfo = TermEof; } else { t->TokInfo = TermNl; @@ -1733,7 +1734,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, TokImage = Malloc(sz); charp = TokImage; add_ch_to_buff(och); - for (; chtype(ch) == SY; ch = getchr(inp_stream)) { + for (; chtype(ch) == SY; ch = getchr(st)) { if (charp >= TokImage + (sz - 10)) { sz = Yap_Min(sz * 2, sz + MBYTE); TokImage = Realloc(TokImage, sz); @@ -1764,7 +1765,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, unsigned char chs[2]; chs[0] = ch; chs[1] = '\0'; - ch = getchr(inp_stream); + ch = getchr(st); t->TokInfo = MkAtomTerm(Yap_ULookupAtom(chs)); t->Tok = Ord(kind = Name_tok); if (ch == '(') @@ -1773,7 +1774,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, case BK: och = ch; - ch = getchr(inp_stream); + ch = getchr(st); { unsigned char chs[10]; TokImage = charp = chs; @@ -1783,12 +1784,12 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, } if (och == '(') { while (chtype(ch) == BS) { - ch = getchr(inp_stream); + ch = getchr(st); } if (ch == ')') { t->TokInfo = TermEmptyBrackets; t->Tok = Ord(kind = Name_tok); - ch = getchr(inp_stream); + ch = getchr(st); solo_flag = FALSE; break; } else if (!solo_flag) { @@ -1797,12 +1798,12 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, } } else if (och == '[') { while (chtype(ch) == BS) { - ch = getchr(inp_stream); + ch = getchr(st); }; if (ch == ']') { t->TokInfo = TermNil; t->Tok = Ord(kind = Name_tok); - ch = getchr(inp_stream); + ch = getchr(st); solo_flag = FALSE; break; } @@ -1827,26 +1828,26 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, cur_qq = qq; } t->TokInfo = (CELL)qq; - if (inp_stream->status & Seekable_Stream_f) { - qq->start.byteno = fseek(inp_stream->file, 0, 0); + if (st->status & Seekable_Stream_f) { + qq->start.byteno = fseek(st->file, 0, 0); } else { - qq->start.byteno = inp_stream->charcount - 1; + qq->start.byteno = st->charcount - 1; } - qq->start.lineno = inp_stream->linecount; - qq->start.linepos = inp_stream->linepos - 1; - qq->start.charno = inp_stream->charcount - 1; + qq->start.lineno = st->linecount; + qq->start.linepos = st->linepos - 1; + qq->start.charno = st->charcount - 1; t->Tok = Ord(kind = QuasiQuotes_tok); - ch = getchr(inp_stream); + ch = getchr(st); solo_flag = FALSE; break; } while (chtype(ch) == BS) { - ch = getchr(inp_stream); + ch = getchr(st); }; if (ch == '}') { t->TokInfo = TermBraces; t->Tok = Ord(kind = Name_tok); - ch = getchr(inp_stream); + ch = getchr(st); solo_flag = FALSE; break; } @@ -1863,16 +1864,16 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, } cur_qq = NULL; t->TokInfo = (CELL)qq; - if (inp_stream->status & Seekable_Stream_f) { - qq->mid.byteno = fseek(inp_stream->file, 0, 0); + if (st->status & Seekable_Stream_f) { + qq->mid.byteno = fseek(st->file, 0, 0); } else { - qq->mid.byteno = inp_stream->charcount - 1; + qq->mid.byteno = st->charcount - 1; } - qq->mid.lineno = inp_stream->linecount; - qq->mid.linepos = inp_stream->linepos - 1; - qq->mid.charno = inp_stream->charcount - 1; + qq->mid.lineno = st->linecount; + qq->mid.linepos = st->linepos - 1; + qq->mid.charno = st->charcount - 1; t->Tok = Ord(kind = QuasiQuotes_tok); - ch = getchr(inp_stream); + ch = getchr(st); sz = 1024; TokImage = Malloc(sz); if (!TokImage) { @@ -1885,11 +1886,11 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, charp = TokImage; quote = ch; len = 0; - ch = getchrq(inp_stream); + ch = getchrq(st); while (TRUE) { if (ch == '|') { - ch = getchrq(inp_stream); + ch = getchrq(st); if (ch != '}') { } else { charp += put_utf8((unsigned char *)charp, och); @@ -1899,13 +1900,13 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, } } else if (chtype(ch) == EF) { Free(TokImage); - mark_eof(inp_stream); + mark_eof(st); t->Tok = Ord(kind = eot_tok); t->TokInfo = TermOutOfHeapError; break; } else { charp += put_utf8(charp, ch); - ch = getchrq(inp_stream); + ch = getchrq(st); } if (charp > (unsigned char *)AuxSp - 1024) { /* Not enough space to read in the string. */ @@ -1925,26 +1926,26 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, strncpy((char *)mp, (const char *)TokImage, len + 1); qq->text = (unsigned char *)mp; Yap_ReleasePreAllocCodeSpace((CODEADDR)TokImage); - if (inp_stream->status & Seekable_Stream_f) { - qq->end.byteno = fseek(inp_stream->file, 0, 0); + if (st->status & Seekable_Stream_f) { + qq->end.byteno = fseek(st->file, 0, 0); } else { - qq->end.byteno = inp_stream->charcount - 1; + qq->end.byteno = st->charcount - 1; } - qq->end.lineno = inp_stream->linecount; - qq->end.linepos = inp_stream->linepos - 1; - qq->end.charno = inp_stream->charcount - 1; + qq->end.lineno = st->linecount; + qq->end.linepos = st->linepos - 1; + qq->end.charno = st->charcount - 1; if (!(t->TokInfo)) { return CodeSpaceError(t, p, l); } Yap_ReleasePreAllocCodeSpace((CODEADDR)TokImage); solo_flag = FALSE; - ch = getchr(inp_stream); + ch = getchr(st); break; } t->Tok = Ord(kind = Ponctuation_tok); break; case EF: - mark_eof(inp_stream); + mark_eof(st); t->Tok = Ord(kind = eot_tok); t->TokInfo = TermEof; return l; @@ -1966,7 +1967,7 @@ TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments, p->TokNext = e; e->Tok = Error_tok; e->TokInfo = MkAtomTerm(Yap_LookupAtom(LOCAL_ErrorMessage)); - e->TokPos = GetCurInpPos(inp_stream); + e->TokPos = GetCurInpPos(st); e->TokNext = NULL; LOCAL_ErrorMessage = NULL; p = e; diff --git a/C/stack.c b/C/stack.c index 8f968dca8..cdd14decc 100644 --- a/C/stack.c +++ b/C/stack.c @@ -1098,7 +1098,7 @@ bool set_clause_info(yamop *codeptr, PredEntry *pp) { LOCAL_ActiveError->prologPredArity = pp->ArityOfPE; } LOCAL_ActiveError->prologPredModule = - (pp->ModuleOfPred ? pp->ModuleOfPred : TermProlog); + (pp->ModuleOfPred ? pp->ModuleOfPred : "prolog"); LOCAL_ActiveError->prologPredFile = pp->src.OwnerFile; if (codeptr->opc == UNDEF_OPCODE) { LOCAL_ActiveError->prologPredFirstLine = 0; diff --git a/C/yap-args.c b/C/yap-args.c index 7e646e8b0..f1a91a702 100755 --- a/C/yap-args.c +++ b/C/yap-args.c @@ -147,14 +147,14 @@ static int dump_runtime_variables(void) { return 1; } -YAP_file_type_t Yap_InitDefaults(YAP_init_args *iap, char *saved_state, +X_API YAP_file_type_t Yap_InitDefaults(void *x, char *saved_state, int argc, char *argv[]) { - memset(iap, 0, sizeof(YAP_init_args)); +YAP_init_args *iap = x; + memset(iap, 0, sizeof(YAP_init_args)); #if __ANDROID__ iap->boot_file_type = YAP_BOOT_PL; - iap->SavedState = malloc(strlen(saved_state)+1); - strcpy(iap->SavedState, saved_state); - iap->assetManager = true; + iap->SavedState = NULL; + iap->assetManager = NULL; #else iap->boot_file_type = YAP_QLY; iap->SavedState = saved_state; @@ -498,7 +498,7 @@ X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[], } else if (!strncmp("-home=", p, strlen("-home="))) { GLOBAL_Home = p + strlen("-home="); } else if (!strncmp("-cwd=", p, strlen("-cwd="))) { - if (!ChDir(p + strlen("-cwd=")) ) { + if (!Yap_ChDir(p + strlen("-cwd=")) ) { fprintf(stderr, " [ YAP unrecoverable error in setting cwd: %s ]\n", strerror(errno)); } diff --git a/CXX/yapdb.hh b/CXX/yapdb.hh index 01ef66dec..f7d132c19 100644 --- a/CXX/yapdb.hh +++ b/CXX/yapdb.hh @@ -88,7 +88,9 @@ protected: PredEntry *ap; /// auxiliary routine to find a predicate in the current module. - PredEntry *getPred(YAPTerm &t, Term *&outp); + + /// auxiliary routine to find a predicate in the current module. + PredEntry *getPred(YAPTerm &t, CELL *& outp); PredEntry *asPred() { return ap; }; @@ -122,7 +124,7 @@ protected: /// /// It is just a call to getPred inline YAPPredicate(Term t) { - CELL *v = NULL; + CELL *v = nullptr; YAPTerm tt = YAPTerm(t); ap = getPred(tt, v); } @@ -131,7 +133,7 @@ protected: /// /// It is just a call to getPred inline YAPPredicate(YAPTerm t) { - Term *v = nullptr; + CELL *v = nullptr; ap = getPred(t, v); } @@ -275,13 +277,13 @@ public: */ class X_API YAPFLIP : public YAPPredicate { public: - YAPFLIP(CPredicate call, YAPAtom name, uintptr_t arity, - YAPModule module = YAPModule(), CPredicate retry = 0, - CPredicate cut = 0, size_t extra = 0, bool test = false) + YAPFLIP(YAP_UserCPred call, YAPAtom name, YAP_Arity arity, + YAPModule module = YAPModule(), YAP_UserCPred retry = 0, + YAP_UserCPred cut = 0, YAP_Arity extra = 0, bool test = false) : YAPPredicate(name, arity, module) { if (retry) { - Yap_InitCPredBackCut(name.getName(), arity, extra, call, retry, cut, - UserCPredFlag); + YAP_UserBackCutCPredicate(name.getName(), call, retry, cut, arity, extra + ); } else { if (test) { YAP_UserCPredicate(name.getName(), call, arity); diff --git a/CXX/yapi.cpp b/CXX/yapi.cpp index f6fc2f3ea..80a6b43a6 100644 --- a/CXX/yapi.cpp +++ b/CXX/yapi.cpp @@ -19,7 +19,7 @@ X_API char *Yap_TermToString(Term t, encoding_t encodingp, X_API void YAP_UserCPredicateWithArgs(const char *, YAP_UserCPred, arity_t, YAP_Term); X_API void YAP_UserBackCPredicate(const char *, YAP_UserCPred, YAP_UserCPred, - arity_t, arity_t); + YAP_Arity, YAP_Arity); #if YAP_PYTHON X_API bool do_init_python(void); @@ -944,7 +944,7 @@ void YAPEngine::doInit(YAP_file_type_t BootMode) #if YAP_PYTHON do_init_python(); #endif - YAP_PredEntryPtr p = YAP_AtomToPred( YAP_LookupAtom("initialize_prolog") ); + YAPPredicate p = YAPPredicate( YAPAtomTerm("initialize_prolog") ); YAPQuery initq = YAPQuery(YAPPredicate(p), nullptr); if (initq.next()) { @@ -992,7 +992,7 @@ YAPEngine::YAPEngine(int argc, char *argv[], } /// auxiliary routine to find a predicate in the current module. - PredEntry *YAPPredicate::getPred(YAPTerm &tt, Term *&outp) + PredEntry *YAPPredicate::getPred(YAPTerm &tt, CELL * &outp) { CACHE_REGS Term m = Yap_CurrentModule(), t = tt.term(); @@ -1110,7 +1110,7 @@ YAPEngine::YAPEngine(int argc, char *argv[], if (LOCAL_ActiveError->prologPredLine) { s += "\n"; - s += LOCAL_ActiveError->prologPredFile->StrOfAE; + s += LOCAL_ActiveError->prologPredFile; s += ":"; sprintf(buf, "%ld", (long int)LOCAL_ActiveError->prologPredLine); s += buf; // std::to_string(LOCAL_ActiveError->prologPredLine) ; @@ -1118,7 +1118,7 @@ YAPEngine::YAPEngine(int argc, char *argv[], s += ":0 "; s += LOCAL_ActiveError->prologPredModule; s += ":"; - s += (LOCAL_ActiveError->prologPredName)->StrOfAE; + s += (LOCAL_ActiveError->prologPredName); s += "/"; sprintf(buf, "%ld", (long int)LOCAL_ActiveError->prologPredArity); s += // std::to_string(LOCAL_ActiveError->prologPredArity); @@ -1126,13 +1126,13 @@ YAPEngine::YAPEngine(int argc, char *argv[], } s += " error "; if (LOCAL_ActiveError->classAsText != nullptr) - s += LOCAL_ActiveError->classAsText->StrOfAE; + s += LOCAL_ActiveError->classAsText; s += "."; - s += LOCAL_ActiveError->errorAsText->StrOfAE; + s += LOCAL_ActiveError->errorAsText; s += ".\n"; if (LOCAL_ActiveError->errorTerm) { - Term t = LOCAL_ActiveError->errorTerm->Entry; + Term t = Yap_PopTermFromDB(LOCAL_ActiveError->errorTerm); if (t) { s += "error term is: "; diff --git a/CXX/yapi.hh b/CXX/yapi.hh index d16c219c0..44bcf5d1c 100644 --- a/CXX/yapi.hh +++ b/CXX/yapi.hh @@ -85,8 +85,16 @@ X_API extern void YAP_UserCPredicate(const char *, YAP_UserCPred, X_API extern void YAP_UserCPredicateWithArgs(const char *, YAP_UserCPred, YAP_Arity, YAP_Term); -X_API extern void UserBackCPredicate(const char *name, int *init(), int *cont(), - int arity, int extra); +X_API extern void YAP_UserBackCPredicate(const char *name, + YAP_UserCPred init, + YAP_UserCPred cont, + YAP_Arity arity, YAP_Arity extra); + +X_API extern void YAP_UserBackCutCPredicate(const char *name, + YAP_UserCPred init, + YAP_UserCPred cont, + YAP_UserCPred cut, + YAP_Arity arity, YAP_Arity extra); X_API extern YAP_Term YAP_ReadBuffer(const char *s, YAP_Term *tp); diff --git a/CXX/yapq.hh b/CXX/yapq.hh index 090d44d0d..ca0d2c519 100644 --- a/CXX/yapq.hh +++ b/CXX/yapq.hh @@ -185,17 +185,15 @@ public: virtual void run(char *s) {} }; -void YAP_init_args::YAP_init_args() -{ - Yap_InitDefaults(this, NULL, 0, NULL); -} ; - /// @brief Setup all arguments to a new engine struct X_API YAPEngineArgs: YAP_init_args { public: - YAPEngineArgs(): yap_boot_params() { - #if YAP_PYTHON + YAPEngineArgs():yap_boot_params() { + char s[32]; + strcpy(s, "startup.yss" ); + Yap_InitDefaults(this,s,0,nullptr); +#if YAP_PYTHON Embedded = true; python_in_python = Py_IsInitialized(); #endif diff --git a/H/Atoms.h b/H/Atoms.h index 0cdcda777..420d0acf3 100644 --- a/H/Atoms.h +++ b/H/Atoms.h @@ -96,7 +96,7 @@ typedef struct ExtraAtomEntryStruct { #define USE_OFFSETS_IN_PROPS 0 #endif -typedef SFLAGS PropFlags; +typedef u_short PropFlags; /* basic property entry structure */ typedef struct PropEntryStruct { diff --git a/H/YapTerm.h b/H/YapTerm.h index 356064a21..eea862360 100644 --- a/H/YapTerm.h +++ b/H/YapTerm.h @@ -17,9 +17,6 @@ #include "YapTermConfig.h" #include "config.h" -typedef void *Functor; -typedef void *Atom; - #endif #if HAVE_STDINT_H @@ -29,6 +26,22 @@ typedef void *Atom; #include #endif +/* truth-values */ +/* stdbool defines the booleam type, bool, + and the constants false and true */ +#if HAVE_STDBOOL_H +#include +#else +#ifndef true +typedef int _Bool; +#define bool _Bool; + +#define false 0 +#define true 1 +#endif +#endif /* HAVE_STDBOOL_H */ + + #define ALIGN_BY_TYPE(X, TYPE) \ (((CELL)(X) + (sizeof(TYPE) - 1)) & ~(sizeof(TYPE) - 1)) @@ -45,59 +58,98 @@ typedef void *Atom; #if defined(PRIdPTR) -typedef intptr_t Int; -typedef uintptr_t UInt; +typedef intptr_t YAP_Int; +typedef uintptr_t YAP_UInt; #elif defined(_WIN64) -typedef int64_t Int; -typedef uint64_t UInt; +typedef int64_t YAP_Int; +typedef uint64_t YAP_UInt; #elif defined(_WIN32) -typedef int32_t Int; -typedef uint32_t UInt; +typedef int32_t YAP_Int; +typedef uint32_t YAP_UInt; #elif SIZEOF_LONG_INT == SIZEOF_INT_P -typedef long int Int; -typedef unsigned long int UInt; +typedef long int YAP_Int; +typedef unsigned long int YAP_UInt; #elif SIZEOF_INT == SIZEOF_INT_P -typedef int Int; -typedef unsigned int UInt; +typedef int YAP_Int; +typedef unsigned int YAP_UInt; #else #error Yap require integer types of the same size as a pointer #endif -/* */ typedef short int Short; -/* */ typedef unsigned short int UShort; +/* */ typedef short int YAP_Short; +/* */ typedef unsigned short int YAP_UShort; -typedef UInt CELL; +typedef YAP_UInt YAP_CELL; +typedef YAP_UInt YAP_Term; + +/* Type definitions */ + + +#ifndef TRUE +#define TRUE true +#endif +#ifndef FALSE +#endif + +typedef bool YAP_Bool; +#define FALSE false + +typedef YAP_Int YAP_handle_t; + + +typedef double YAP_Float; + +typedef void *YAP_Atom; + +typedef void *YAP_Functor; + +#ifdef YAP_H + +typedef YAP_Int Int; +typedef YAP_UInt UInt; +typedef YAP_Short Short; +typedef YAP_UShort UShort; typedef uint16_t BITS16; typedef int16_t SBITS16; typedef uint32_t BITS32; +typedef YAP_CELL CELL; + +typedef YAP_Term Term; + #define WordSize sizeof(BITS16) #define CellSize sizeof(CELL) #define SmallSize sizeof(SMALLUNSGN) +typedef YAP_Int Int; +typedef YAP_Float Float; +typedef YAP_handle_t yhandle_t; + +#endif + +#include "YapError.h" + +#include "../os/encoding.h" + +typedef encoding_t YAP_encoding_t; + #include "YapFormat.h" /************************************************************************************************* type casting macros *************************************************************************************************/ -typedef UInt Term; - -typedef Int yhandle_t; - -typedef double Float; - #if SIZEOF_INT < SIZEOF_INT_P #define SHORT_INTS 1 #else diff --git a/H/Yatom.h b/H/Yatom.h index 3b0c8b4ed..507e9bfbd 100755 --- a/H/Yatom.h +++ b/H/Yatom.h @@ -1306,10 +1306,10 @@ void Yap_UpdateTimestamps(PredEntry *); void Yap_ErDBE(DBRef); DBTerm *Yap_StoreTermInDB(Term, int); DBTerm *Yap_StoreTermInDBPlusExtraSpace(Term, UInt, UInt *); -Term Yap_FetchTermFromDB(DBTerm *); -Term Yap_FetchClauseTermFromDB(DBTerm *); -Term Yap_PopTermFromDB(DBTerm *); -void Yap_ReleaseTermFromDB(DBTerm *); +Term Yap_FetchTermFromDB(void *); +Term Yap_FetchClauseTermFromDB(void *); +Term Yap_PopTermFromDB(void *); +void Yap_ReleaseTermFromDB(void *); /* init.c */ Atom Yap_GetOp(OpEntry *, int *, int); @@ -1598,8 +1598,8 @@ bool Yap_PutException(Term t); INLINE_ONLY inline EXTERN bool Yap_HasException(void) { return LOCAL_BallTerm != NULL; } -INLINE_ONLY inline EXTERN DBTerm *Yap_RefToException(void) { - DBTerm *dbt = LOCAL_BallTerm; +INLINE_ONLY inline EXTERN void *Yap_RefToException(void) { + void *dbt = LOCAL_BallTerm; LOCAL_BallTerm = NULL; return dbt; } diff --git a/include/VFS.h b/include/VFS.h index 198339c78..717f7d961 100644 --- a/include/VFS.h +++ b/include/VFS.h @@ -80,7 +80,7 @@ typedef struct vfs { const char *suffix; bool (*chDir)(struct vfs *me, const char *s); /** operations */ - void *(*open)(int sno, const char *fname, const char *io_mode); /// open an object + void *(*open)(struct vfs *,int sno, const char *fname, const char *io_mode); /// open an object /// in this space, usual w,r,a,b flags plus B (store in a buffer) bool (*close)(int sno); /// close the object int (*get_char)(int sno); /// get an octet to the stream @@ -92,7 +92,7 @@ typedef struct vfs { const char *(*nextdir)(void *d); /// walk to the next entry in a directory object bool (*closedir)(void *d); ; /// close access a directory object - bool (*stat)(const char *s, + bool (*stat)(struct vfs *,const char *s, vfs_stat *); /// obtain size, age, permissions of a file. bool (*isdir)(struct vfs *,const char *s); /// verify whether is directory. bool (*exists)(struct vfs *, const char *s); /// verify whether a file exists. diff --git a/include/YapDefs.h b/include/YapDefs.h index 3f11e3218..cdbee67cc 100755 --- a/include/YapDefs.h +++ b/include/YapDefs.h @@ -50,23 +50,10 @@ #include #include -#ifdef YAP_H /* The YAP main types */ #include "YapTerm.h" -/** - This term can never be constructed as a valid term, so it is - used as a "BAD" term -*/ -#define TermZERO ((Term)0) - -#else - -#include "YapConfig.h" - -#endif /* YAP_H */ - #if HAVE_STDINT_H #include #endif @@ -74,21 +61,6 @@ #include #endif -/* truth-values */ -/* stdbool defines the booleam type, bool, - and the constants false and true */ -#if HAVE_STDBOOL_H -#include -#else -#ifndef true -typedef int _Bool; -#define bool _Bool; - -#define false 0 -#define true 1 -#endif -#endif /* HAVE_STDBOOL_H */ - /** FALSE and TRUE are the pre-standard versions, still widely used. @@ -103,79 +75,26 @@ typedef int _Bool; typedef bool YAP_Bool; #endif -#ifdef YAP_H -/* if Yap.h is available, just reexport */ +/** + This term can never be constructed as a valid term, so it is + used as a "BAD" term +*/ +#define TermZERO ((Term)0) -#define YAP_CELL CELL -#define YAP_Term Term +#include "YapConfig.h" -#define YAP_Arity arity_t -#define YAP_Module Term - -#define YAP_Functor Functor - -#define YAP_Atom Atom - -#define YAP_Int Int - -#define YAP_UInt UInt - -#define YAP_Float Float - -#define YAP_handle_t yhandle_t - -#define YAP_PredEntryPtr struct pred_entry * - -#define YAP_UserCPred CPredicate - -#define YAP_agc_hook Agc_hook - -#define YAP_encoding_t encoding_t - -#else - -/* Type definitions */ -#if defined(PRIdPTR) -typedef uintptr_t YAP_UInt; -typedef intptr_t YAP_Int; -#elif _WIN64 -typedef int64_t YAP_Int; -typedef uint64_t YAP_UInt; -#elif _WIN32 -typedef int32_t YAP_Int; -typedef uint32_t YAP_UInt; -#else -typedef long int YAP_Int; -typedef unsigned long int YAP_UInt; -#endif - -typedef YAP_UInt YAP_CELL; - -typedef YAP_CELL YAP_Term; +typedef void *YAP_PredEntryPtr; typedef size_t YAP_Arity; typedef YAP_Term YAP_Module; -typedef struct FunctorEntry *YAP_Functor; - -typedef struct AtomEntry *YAP_Atom; - -typedef double YAP_Float; - -#ifndef TRUE -#define TRUE 1 -#endif -#ifndef FALSE -#define FALSE 0 -#endif - typedef YAP_Int YAP_handle_t; -typedef struct YAP_pred_entry *YAP_PredEntryPtr; +typedef void *YAP_PredEntryPtr; typedef YAP_Bool (*YAP_UserCPred)(void); @@ -187,8 +106,6 @@ typedef int (*YAP_agc_hook)(void *_Atom); typedef encoding_t YAP_encoding_t; -#endif - #if __ANDROID__ #include #include @@ -257,6 +174,10 @@ typedef enum { #define YAP_RECONSULT_MODE 1 #define YAP_BOOT_MODE 2 + +X_API YAP_file_type_t Yap_InitDefaults(void *init_args, char saved_state[], + int Argc, char *Argv[]); + typedef struct yap_boot_params { //> boot type as suggested by the user YAP_file_type_t boot_file_type; @@ -351,16 +272,8 @@ typedef struct yap_boot_params { int ErrorNo; //> errorstring char *ErrorCause; -#ifdef __cplusplus -void YAP_init_args(); -#endif } YAP_init_args; -#ifdef YAP_H -YAP_file_type_t Yap_InitDefaults(YAP_init_args *init_args, char saved_state[], - int Argc, char **Argv); -#endif - /* this should be opaque to the user */ typedef struct { unsigned long b; //> choice-point at entry diff --git a/include/YapError.h b/include/YapError.h index b89e01eb4..526956b46 100644 --- a/include/YapError.h +++ b/include/YapError.h @@ -176,48 +176,48 @@ INLINE_ONLY extern inline Term Yap_ensure_atom__(const char *fu, const char *fi, /// go back t } yap_error_stage_t; - /// a Prolo goal that caused a bug + /// a Prolog goal that caused a bug typedef struct error_prolog_source { - YAP_Int prologPredCl; - YAP_UInt prologPredLine; - YAP_UInt prologPredFirstLine; - YAP_UInt prologPredLastLine; - YAP_Atom prologPredName; - YAP_UInt prologPredArity; - YAP_Term prologPredModule; - YAP_Atom prologPredFile; - struct DB_TERM *errorGoal; + intptr_t prologPredCl; + uintptr_t prologPredLine; + uintptr_t prologPredFirstLine; + uintptr_t prologPredLastLine; + const char * prologPredName; + uintptr_t prologPredArity; + const char * prologPredModule; + const char * prologPredFile; + void *errorGoal; struct error_prolog_source *errorParent; } error_prolog_source_t; /// all we need to know about an error/throw - typedef struct yap_error_descriptor { + typedef struct error_descriptor { enum yap_error_status status; yap_error_class_number errorClass; - YAP_Atom errorAsText; - YAP_Atom classAsText; + const char * errorAsText; + const char * classAsText; yap_error_number errorNo; - YAP_Int errorLine; + intptr_t errorLine; const char *errorFunction; const char *errorFile; // struct error_prolog_source *errorSource; - YAP_Int prologPredCl; - YAP_UInt prologPredLine; - YAP_UInt prologPredFirstLine; - YAP_UInt prologPredLastLine; - YAP_Atom prologPredName; - YAP_UInt prologPredArity; - YAP_Term prologPredModule; - YAP_Atom prologPredFile; - YAP_UInt prologParserLine; - YAP_UInt prologParserFirstLine; - YAP_UInt prologParserLastLine; - YAP_Atom prologParserName; - YAP_Atom prologParserFile; - YAP_Bool prologConsulting; - struct DB_TERM *errorTerm; - YAP_Term rawErrorTerm, rawExtraErrorTerm; + intptr_t prologPredCl; + uintptr_t prologPredLine; + uintptr_t prologPredFirstLine; + uintptr_t prologPredLastLine; + const char * prologPredName; + uintptr_t prologPredArity; + const char * prologPredModule; + const char * prologPredFile; + uintptr_t prologParserLine; + uintptr_t prologParserFirstLine; + uintptr_t prologParserLastLine; + const char * prologParserName; + const char * prologParserFile; + bool prologConsulting; + void *errorTerm; + uintptr_t rawErrorTerm, rawExtraErrorTerm; char *errorMsg; size_t errorMsgLen; struct yap_error_descriptor *top_error; diff --git a/include/YapInterface.h b/include/YapInterface.h index 547b1e59d..52853a40f 100755 --- a/include/YapInterface.h +++ b/include/YapInterface.h @@ -268,18 +268,19 @@ extern X_API void YAP_UserCPredicateWithArgs(const char *, YAP_UserCPred, extern X_API void YAP_UserBackCPredicate(const char *, YAP_UserCPred, YAP_UserCPred, YAP_Arity, YAP_Arity); -/* YAP_Int YAP_ListLength(YAP_Term t) */ -extern X_API YAP_Int YAP_ListLength(YAP_Term); - -extern X_API size_t YAP_UTF8_TextLength(YAP_Term t); /* void UserBackCPredicate(char *name, int *init(), int *cont(), int *cut(), int arity, int extra) */ -extern X_API void YAP_UserBackCutCPredicate(const char *, YAP_UserCPred, +extern X_API void YAP_UserBackCutCPredicate(const char *name, YAP_UserCPred, YAP_UserCPred, YAP_UserCPred, YAP_Arity, YAP_Arity); +/* YAP_Int YAP_ListLength(YAP_Term t) */ +extern X_API YAP_Int YAP_ListLength(YAP_Term); + +extern X_API size_t YAP_UTF8_TextLength(YAP_Term t); + /* void CallProlog(YAP_Term t) */ extern X_API YAP_Int YAP_CallProlog(YAP_Term t); @@ -399,7 +400,7 @@ extern X_API YAP_Term YAP_ReadFromStream(int s); /// read a Prolog clause from a Prolog opened stream $s$. Similar to /// YAP_ReadFromStream() but takes /// default options from read_clause/3. -extern X_API YAP_Term YAP_ReadFromStream(int s); +extern X_API YAP_Term YAP_ReadClauseFromStream(int s); extern X_API void YAP_Write(YAP_Term t, FILE *s, int); diff --git a/include/YapStreams.h b/include/YapStreams.h index 92ee8d0f7..60e330158 100644 --- a/include/YapStreams.h +++ b/include/YapStreams.h @@ -136,9 +136,9 @@ FILE *open_memstream(char **buf, size_t *len); #endif #if __ANDROID__ - -#undef HAVE_FMEMOPEN -#undef HAVE_OPEN_MEMSTREAM +//extern FILE * fmemopen(void *buf, size_t size, const char *mode); +#define HAVE_FMEMOPEN 1 +#define HAVE_OPEN_MEMSTREAM 1 #endif #if HAVE_FMEMOPEN diff --git a/os/CMakeLists.txt b/os/CMakeLists.txt index 6188d1425..ccc16e8ed 100644 --- a/os/CMakeLists.txt +++ b/os/CMakeLists.txt @@ -7,7 +7,10 @@ set (YAPOS_SOURCES console.c files.c fmem.c - fmemopen.c + # fmemopen.c + #android/fmemopen.c + # android/fopencookie.c + # android/open_memstream.c format.c iopreds.c mem.c diff --git a/os/assets.c b/os/assets.c index 96f713869..aa4623288 100644 --- a/os/assets.c +++ b/os/assets.c @@ -35,197 +35,188 @@ static char SccsId[] = "%W% %G%"; #if __ANDROID__ + #include #include -AAssetManager * Yap_assetManager; +AAssetManager *Yap_assetManager; -jboolean Java_pt_up_yap_app_YAPDroid_setAssetManager(JNIEnv* env, jclass clazz, jobject assetManager) -{ +jboolean +Java_pt_up_yap_app_YAPDroid_setAssetManager(JNIEnv *env, jclass clazz, jobject assetManager) { Yap_assetManager = AAssetManager_fromJava(env, assetManager); -return true; + return true; } static void * -open_asset__( int sno, const char *fname, const char *io_mode) -{ - int mode; - const void *buf; - VFS_t *me = GLOBAL_Stream[sno].vfs; - if (strstr(fname,"/assets") == fname) { - // we're in - if ( Yap_assetManager == NULL) { - PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, - "asset manager", - fname); - return NULL; - } - if (strchr(io_mode, 'w') || strchr(io_mode, 'a')) { - PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, TermNil, - "%s: no writing but flags are %s", - fname, io_mode); - return NULL; - } - if (strchr(io_mode, 'B')) - mode = AASSET_MODE_BUFFER; - else { - mode = AASSET_MODE_UNKNOWN; - } - AAsset *a = AAssetManager_open( Yap_assetManager, fname, mode); - // try not to use it as an asset - off64_t sz = AAsset_getLength64(a), sz0 = 0; - int fd; - StreamDesc *st = GLOBAL_Stream+sno; - if ((fd = AAsset_openFileDescriptor64(a, &sz0, &sz)) >= 0) { - // can use it as red-only file - st->file = fdopen(fd, "r"); - st->vfs = me; - st->vfs_handle = a; - return a; - } else if ((buf = AAsset_getBuffer(a))) { - // copy to memory - bool rc = Yap_set_stream_to_buf(st, buf, sz); - if (rc) AAsset_close(a); - return st; - } - // should be done, but if not - GLOBAL_Stream[sno].vfs_handle= a; - st->vfs = me; - return a; - } - return NULL; +open_asset__(VFS_t *me, int sno, const char *fname, const char *io_mode) { + int mode; + const void *buf; + if (strchr(io_mode, 'B')) + mode = AASSET_MODE_BUFFER; + else { + mode = AASSET_MODE_UNKNOWN; + } + fname += strlen(me->prefix) + 1; + AAsset *a = AAssetManager_open(Yap_assetManager, fname, mode); + if (!a) + return NULL; + // try not to use it as an asset + off64_t sz = AAsset_getLength64(a), sz0 = 0; + int fd; + StreamDesc *st = GLOBAL_Stream + sno; + if ((buf = AAsset_getBuffer(a))) { + // copy to memory + bool rc = Yap_set_stream_to_buf(st, buf, sz); + if (rc) AAsset_close(a); + st->vfs = NULL; + st->vfs_handle = NULL; + st->status = InMemory_Stream_f|Seekable_Stream_f|Input_Stream_f; + return st; + } else if ((fd = AAsset_openFileDescriptor64(a, &sz0, &sz)) >= 0) { + // can use it as read-only file + st->file = fdopen(fd, "r"); + st->vfs = NULL; + st->vfs_handle = NULL; + st->status = Seekable_Stream_f|Input_Stream_f; + return st; + } else { + // should be done, but if not + GLOBAL_Stream[sno].vfs_handle = a; + st->vfs = me; + st->status = Input_Stream_f; + return a; + } } static bool -close_asset(int sno) -{ - AAsset_close(GLOBAL_Stream[sno].vfs_handle); - return true; +close_asset(int sno) { + AAsset_close(GLOBAL_Stream[sno].vfs_handle); + return true; } -static int64_t seek64(int sno, int64_t offset, int whence) -{ - return AAsset_seek64(GLOBAL_Stream[sno].vfs_handle, offset, whence); +static int64_t seek64(int sno, int64_t offset, int whence) { + return AAsset_seek64(GLOBAL_Stream[sno].vfs_handle, offset, whence); } -static int getc_asset(int sno) -{ - int ch; - if ( AAsset_read (GLOBAL_Stream[sno].vfs_handle, &ch, 1) ) - return ch; - return -1; +static int getc_asset(int sno) { + int ch; + if (AAsset_read(GLOBAL_Stream[sno].vfs_handle, &ch, 1)) + return ch; + return -1; } -static void *opendir_a( VFS_t *me, const char *dirName) -{ - return (void *)AAssetManager_openDir (Yap_assetManager, dirName); +static void *opendir_a(VFS_t *me, const char *dirName) { + dirName += strlen(me->prefix) + 1; + return (void *) AAssetManager_openDir(Yap_assetManager, dirName); } -static const char *readdir_a(void *dirHandle) -{ - return AAssetDir_getNextFileName ((AAssetDir *)dirHandle); +static const char *readdir_a(void *dirHandle) { + return AAssetDir_getNextFileName((AAssetDir *) dirHandle); } -static bool closedir_a(void *dirHandle) -{ - AAssetDir_close ((AAssetDir *)dirHandle); - return true; +static bool closedir_a(void *dirHandle) { + AAssetDir_close((AAssetDir *) dirHandle); + return true; } -static bool stat_a(VFS_t *me, const char *fname, vfs_stat *out) -{ - struct stat bf; - if (stat( "/assets", &bf)) { - - out->st_dev = bf.st_dev; - out->st_uid = bf.st_uid; - out->st_gid = bf.st_gid; - memcpy(&out->st_atimespec, (const void *)&out->st_atimespec, sizeof(struct timespec)); - memcpy(&out->st_mtimespec,(const void *) &out->st_mtimespec, sizeof(struct timespec)); - memcpy(&out->st_ctimespec, (const void *)&out->st_ctimespec, sizeof(struct timespec)); - memcpy(&out->st_birthtimespec, (const void *)&out->st_birthtimespec, sizeof(struct timespec)); - } - AAsset *a = AAssetManager_open( Yap_assetManager , fname, AASSET_MODE_UNKNOWN); +static bool stat_a(VFS_t *me, const char *fname, vfs_stat *out) { + struct stat bf; + fname += strlen(me->prefix) + 1; + if (stat("/assets", &bf)) { + + out->st_dev = bf.st_dev; + out->st_uid = bf.st_uid; + out->st_gid = bf.st_gid; + memcpy(&out->st_atimespec, (const void *) &out->st_atimespec, sizeof(struct timespec)); + memcpy(&out->st_mtimespec, (const void *) &out->st_mtimespec, sizeof(struct timespec)); + memcpy(&out->st_ctimespec, (const void *) &out->st_ctimespec, sizeof(struct timespec)); + memcpy(&out->st_birthtimespec, (const void *) &out->st_birthtimespec, + sizeof(struct timespec)); + } + AAsset *a = AAssetManager_open(Yap_assetManager, fname, AASSET_MODE_UNKNOWN); // try not to use it as an asset - out->st_size = AAsset_getLength64(a); - AAsset_close(a); - return true; - + out->st_size = AAsset_getLength64(a); + AAsset_close(a); + return true; + } static -bool is_dir_a( VFS_t *me,const char *dirName) -{ - bool rc; +bool is_dir_a(VFS_t *me, const char *dirName) { + bool rc; + dirName += strlen(me->prefix) + 1; // try not to use it as an asset - AAssetDir *d = AAssetManager_openDir ( Yap_assetManager, dirName); + AAssetDir *d = AAssetManager_openDir(Yap_assetManager, dirName); if (d == NULL) - return false; + return false; rc = (AAssetDir_getNextFileName(d) != NULL); - AAssetDir_close(d); - return rc; + __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "isdir %s <%p>", dirName, d); + AAssetDir_close(d); + return rc; } static -VFS_t *exists_a(VFS_t *me, const char *dirName) -{ +bool exists_a(VFS_t *me, const char *dirName) { + dirName += strlen(me->prefix) + 1; // try not to use it as an asset - AAsset *d = AAssetManager_open ( Yap_assetManager, dirName, AASSET_MODE_UNKNOWN); + AAsset *d = AAssetManager_open(Yap_assetManager, dirName, AASSET_MODE_UNKNOWN); + __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "exists %s <%p>", dirName, d); if (d == NULL) - return NULL; - AAsset_close(d); - return me; + return false; + AAsset_close(d); + return true; } -static bool set_cwd (VFS_t *me, const char *dirName) { +static bool set_cwd(VFS_t *me, const char *dirName) { chdir("/assets"); - if (me->virtual_cwd) - free((void*)(me->virtual_cwd)); - me->virtual_cwd = malloc( sizeof(dirName) + 1 ); - return me!= NULL; + if (!me->virtual_cwd) + me->virtual_cwd = malloc(YAP_FILENAME_MAX + 1); + strcpy(me->virtual_cwd, dirName); + return true; } #endif VFS_t * -Yap_InitAssetManager( void ) -{ +Yap_InitAssetManager(void) { #if __ANDROID__ VFS_t *me; - /* init standard VFS */ - me = (VFS_t *)Yap_AllocCodeSpace(sizeof(struct vfs)); - me->name = "/assets"; - me->vflags = VFS_CAN_EXEC|VFS_CAN_SEEK|VFS_HAS_PREFIX; /// the main flags describing the operation of the Fs. - me->prefix = "/assets"; - /** operations */ - me->open = open_asset__; /// open an object in this space - me->close= close_asset; /// close the object - me->get_char = getc_asset; /// get an octet to the stream - me->put_char = NULL; /// output an octet to the stream - me->seek = seek64; /// jump around the stream - me->opendir = opendir_a; /// open a directory object, if one exists - me->nextdir = readdir_a; /// open a directory object, if one exists - me->closedir = closedir_a; /// close access a directory object - me->stat = stat_a; /// obtain size, age, permissions of a file. - me->isdir = is_dir_a; /// obtain size, age, permissions of a file. - me->exists = exists_a; /// obtain size, age, permissions of a file. - me->chdir = set_cwd; /// chnage working directory. - me->enc = ENC_ISO_UTF8; /// how the file is encoded. - me->parsers = NULL; /// a set of parsers that can read the stream and generate a term - me->writers = NULL; - LOCK(BGL); - me-> next = GLOBAL_VFS; - GLOBAL_VFS = me; - return me; - UNLOCK(BGL); - return me; + /* init standard VFS */ + me = (VFS_t *) Yap_AllocCodeSpace(sizeof(struct vfs)); + me->name = "/assets"; + me->vflags = VFS_CAN_EXEC | VFS_CAN_SEEK | + VFS_HAS_PREFIX; /// the main flags describing the operation of the Fs. + me->prefix = "/assets"; + /** operations */ + me->open = open_asset__; /// open an object in this space + me->close = close_asset; /// close the object + me->get_char = getc_asset; /// get an octet to the stream + me->put_char = NULL; /// output an octet to the stream + me->seek = seek64; /// jump around the stream + me->opendir = opendir_a; /// open a directory object, if one exists + me->nextdir = readdir_a; /// open a directory object, if one exists + me->closedir = closedir_a; /// close access a directory object + me->stat = stat_a; /// obtain size, age, permissions of a file. + me->isdir = is_dir_a; /// obtain size, age, permissions of a file. + me->exists = exists_a; /// obtain size, age, permissions of a file. + me->chdir = set_cwd; /// chnage working directory. + me->enc = ENC_ISO_UTF8; /// how the file is encoded. + me->parsers = NULL; /// a set of parsers that can read the stream and generate a term + me->writers = NULL; + me->virtual_cwd = NULL; + LOCK(BGL); + me->next = GLOBAL_VFS; + GLOBAL_VFS = me; + return me; + UNLOCK(BGL); + return me; #else return NULL; #endif diff --git a/os/encoding.h b/os/encoding.h index f25c4174e..a4141bad5 100644 --- a/os/encoding.h +++ b/os/encoding.h @@ -20,6 +20,11 @@ #define ENCODING_H 1 #include "YapError.h" +#if HAVE_STRING_H + +#include + +#endif typedef enum { ENC_OCTET = 0, /// binary files diff --git a/os/fmem.c b/os/fmem.c index 738281f6b..a07d94812 100644 --- a/os/fmem.c +++ b/os/fmem.c @@ -114,16 +114,18 @@ bool fill_pads(int sno, int sno0, int total, format_info *fg USES_REGS) return true; } -bool Yap_set_stream_to_buf(StreamDesc *st, const char *buf, encoding_t enc, - size_t nchars) { +bool Yap_set_stream_to_buf(StreamDesc *st, const char *buf, + size_t nchars USES_REGS) { FILE *f; // like any file stream. - st->file = f = fmemopen((void *)buf, nchars, "r"); - st->status = Input_Stream_f | InMemory_Stream_f | Seekable_Stream_f; + st->file = f = fmemopen(buf, nchars, "r"); + st->status = Input_Stream_f | Seekable_Stream_f | InMemory_Stream_f; st->vfs = NULL; - st->encoding = enc; + st->encoding = LOCAL_encoding; Yap_DefaultStreamOps(st); + st->linecount = 0; + st->linepos = st->charcount = 0; return true; } @@ -198,9 +200,7 @@ int Yap_open_buf_write_stream(encoding_t enc, memBufSource src) { // setbuf(st->file, NULL); st->status |= Seekable_Stream_f; #else - st->file = fmemopen((void *)buf, nchars, "w"); - st->nsize = nchars; - st->nbuf = buf; + st->file = fmemopen((void *)st->nbuf, st->nsize, "w"); if (!st->nbuf) { return -1; } diff --git a/os/fmemopen-android.c b/os/fmemopen-android.c index 356de464b..a4c9fa823 100644 --- a/os/fmemopen-android.c +++ b/os/fmemopen-android.c @@ -1,10 +1,12 @@ -* Copyright (C) 2007 Eric Blake +/* Copyright (C) 2007 Eric Blake * Permission to use, copy, modify, and distribute this software * is freely granted, provided that this notice is preserved. * * Modifications for Android written Jul 2009 by Alan Viverette */ +#if __ANDROID__ + /* FUNCTION >---open a stream around a fixed-length string @@ -69,7 +71,7 @@ Supporting OS subroutines required: <>. #include #include #include -#include "stdioext.h" +//#include "stdioext.h" /* Describe details of an open memstream. */ typedef struct fmemcookie { @@ -172,13 +174,13 @@ fmemseek(void *cookie, fpos_t pos, int whence) } else { - if (c->writeonly && c->pos < c->eof) + if (c->writeonly && c->pos < c->eof) { c->buf[c->pos] = c->saved; c->saved = '\0'; } c->pos = offset; - if (c->writeonly && c->pos < c->eof) + if (c->writeonly && c->pos < c->eof) { c->saved = c->buf[c->pos]; c->buf[c->pos] = '\0'; @@ -206,9 +208,9 @@ fmemopen(void *buf, size_t size, const char *mode) int flags; int dummy; - if ((flags = __sflags (mode, &dummy)) == 0) + if ((flags = __sflags (mode, &dummy)) == 0) return NULL; - if (!size || !(buf || flags & __SAPP)) + if (!size || !(buf || flags & __SAPP)) { return NULL; } @@ -225,7 +227,7 @@ fmemopen(void *buf, size_t size, const char *mode) c->max = size; /* 9 modes to worry about. */ /* w/a, buf or no buf: Guarantee a NUL after any file writes. */ - c->writeonly = (flags & __SWR) != 0; + c->writeonly = (flags & __SWR) != 0; c->saved = '\0'; if (!buf) { @@ -233,7 +235,7 @@ fmemopen(void *buf, size_t size, const char *mode) c->buf = (char *) (c + 1); *(char *) buf = '\0'; c->pos = c->eof = 0; - c->append = (flags & __SAPP) != 0; + c->append = (flags & __SAPP) != 0; } else { @@ -244,7 +246,7 @@ fmemopen(void *buf, size_t size, const char *mode) /* a/a+ and buf: position and size at first NUL. */ buf = memchr (c->buf, '\0', size); c->eof = c->pos = buf ? (char *) buf - c->buf : size; - if (!buf && c->writeonly) + if (!buf && c->writeonly) /* a: guarantee a NUL within size even if no writes. */ c->buf[size - 1] = '\0'; c->append = 1; @@ -267,10 +269,12 @@ fmemopen(void *buf, size_t size, const char *mode) fp->_file = -1; fp->_flags = flags; fp->_cookie = c; - fp->_read = flags & (__SRD | __SRW) ? fmemread : NULL; - fp->_write = flags & (__SWR | __SRW) ? fmemwrite : NULL; + fp->_read = flags & (__SRD | __SRW) ? fmemread : NULL; + fp->_write = flags & (__SWR | __SRW) ? fmemwrite : NULL; fp->_seek = fmemseek; fp->_close = fmemclose; return fp; } + +#endif diff --git a/os/iopreds.c b/os/iopreds.c index c557a46dc..e6e4498cf 100644 --- a/os/iopreds.c +++ b/os/iopreds.c @@ -39,42 +39,57 @@ static char SccsId[] = "%W% %G%"; #include "Yatom.h" #include "yapio.h" #include + #if HAVE_UNISTD_H + #include + #endif #if HAVE_STDARG_H + #include + #endif #if HAVE_CTYPE_H -#include #endif #if HAVE_WCTYPE_H -#include #endif #if HAVE_SYS_TIME_H + #include + #endif #if HAVE_SYS_TYPES_H + #include + #endif #ifdef HAVE_SYS_STAT_H + #include + #endif #if HAVE_SYS_SELECT_H && !_MSC_VER && !defined(__MINGW32__) + #include + #endif #ifdef HAVE_UNISTD_H -#include #endif #if HAVE_STRING_H + #include + #endif #if HAVE_SIGNAL_H + #include + #endif #if HAVE_FCNTL_H /* for O_BINARY and O_TEXT in WIN32 */ #include + #endif #ifdef _WIN32 #if HAVE_IO_H @@ -109,301 +124,301 @@ FILE *Yap_stdout; FILE *Yap_stderr; static Term gethdir(Term t) { - CACHE_REGS - Atom aref = AtomOfTerm(t); - char *s = RepAtom(aref)->StrOfAE; - size_t nsz; + CACHE_REGS + Atom aref = AtomOfTerm(t); + char *s = RepAtom(aref)->StrOfAE; + size_t nsz; - s = strncpy(LOCAL_FileNameBuf, RepAtom(aref)->StrOfAE, MAXPATHLEN - 1); - if (!s) { - return false; - } - if (TermDot == t) { - return TermEmptyAtom; - } - nsz = strlen(s); - if (!Yap_dir_separator(s[nsz - 1])) { + s = strncpy(LOCAL_FileNameBuf, RepAtom(aref)->StrOfAE, MAXPATHLEN - 1); + if (!s) { + return false; + } + if (TermDot == t) { + return TermEmptyAtom; + } + nsz = strlen(s); + if (!Yap_dir_separator(s[nsz - 1])) { #if _WIN32 - s[nsz] = '\\'; + s[nsz] = '\\'; #else - s[nsz] = '/'; + s[nsz] = '/'; #endif - s[nsz + 1] = '\0'; - } - return MkAtomTerm(Yap_LookupAtom(s)); + s[nsz + 1] = '\0'; + } + return MkAtomTerm(Yap_LookupAtom(s)); } static Term issolutions(Term t) { - if (t == TermFirst || t == TermAll) - return t; + if (t == TermFirst || t == TermAll) + return t; - if (IsVarTerm(t)) { - Yap_Error(INSTANTIATION_ERROR, t, "solutions in {first, all}."); + if (IsVarTerm(t)) { + Yap_Error(INSTANTIATION_ERROR, t, "solutions in {first, all}."); + return TermZERO; + } + if (IsAtomTerm(t)) { + Yap_Error(DOMAIN_ERROR_SOLUTIONS, t, "solutions in {first, all}"); + return TermZERO; + } + Yap_Error(TYPE_ERROR_ATOM, t, "solutions in {first, all}}"); return TermZERO; - } - if (IsAtomTerm(t)) { - Yap_Error(DOMAIN_ERROR_SOLUTIONS, t, "solutions in {first, all}"); - return TermZERO; - } - Yap_Error(TYPE_ERROR_ATOM, t, "solutions in {first, all}}"); - return TermZERO; } static Term is_file_type(Term t) { - if (t == TermTxt || t == TermProlog || t == TermSource || - t == TermExecutable || t == TermQly || t == TermDirectory) - return t; + if (t == TermTxt || t == TermProlog || t == TermSource || + t == TermExecutable || t == TermQly || t == TermDirectory) + return t; - if (IsVarTerm(t)) { - Yap_Error(INSTANTIATION_ERROR, t, - "file_type in {txt,prolog,exe,directory...}"); + if (IsVarTerm(t)) { + Yap_Error(INSTANTIATION_ERROR, t, + "file_type in {txt,prolog,exe,directory...}"); + return TermZERO; + } + if (IsAtomTerm(t)) { + Yap_Error(DOMAIN_ERROR_FILE_TYPE, t, + "file_type in {txt,prolog,exe,directory...}"); + return TermZERO; + } + Yap_Error(TYPE_ERROR_ATOM, t, "file_type in {txt,prolog,exe,directory...}"); return TermZERO; - } - if (IsAtomTerm(t)) { - Yap_Error(DOMAIN_ERROR_FILE_TYPE, t, - "file_type in {txt,prolog,exe,directory...}"); - return TermZERO; - } - Yap_Error(TYPE_ERROR_ATOM, t, "file_type in {txt,prolog,exe,directory...}"); - return TermZERO; } static Term is_file_errors(Term t) { - if (t == TermFail || t == TermError) - return t; + if (t == TermFail || t == TermError) + return t; - if (IsVarTerm(t)) { - Yap_Error(INSTANTIATION_ERROR, t, "file_error in {fail,error}."); + if (IsVarTerm(t)) { + Yap_Error(INSTANTIATION_ERROR, t, "file_error in {fail,error}."); + return TermZERO; + } + if (IsAtomTerm(t)) { + Yap_Error(DOMAIN_ERROR_FILE_ERRORS, t, "file_error in {fail,error}."); + return TermZERO; + } + Yap_Error(TYPE_ERROR_ATOM, t, "file_error in {fail,error}."); return TermZERO; - } - if (IsAtomTerm(t)) { - Yap_Error(DOMAIN_ERROR_FILE_ERRORS, t, "file_error in {fail,error}."); - return TermZERO; - } - Yap_Error(TYPE_ERROR_ATOM, t, "file_error in {fail,error}."); - return TermZERO; } static void unix_upd_stream_info(StreamDesc *s) { - if (s->status & InMemory_Stream_f) { - s->status |= Seekable_Stream_f; - return; - } - Yap_socketStream(s); + if (s->status & InMemory_Stream_f) { + s->status |= Seekable_Stream_f; + return; + } + Yap_socketStream(s); #if _MSC_VER || defined(__MINGW32__) - { - if (_isatty(_fileno(s->file))) { - s->status |= Tty_Stream_f | Reset_Eof_Stream_f | Promptable_Stream_f; - /* make all console descriptors unbuffered */ - setvbuf(s->file, NULL, _IONBF, 0); + { + if (_isatty(_fileno(s->file))) { + s->status |= Tty_Stream_f | Reset_Eof_Stream_f | Promptable_Stream_f; + /* make all console descriptors unbuffered */ + setvbuf(s->file, NULL, _IONBF, 0); + return; + } +#if _MSC_VER + /* standard error stream should never be buffered */ + else if (StdErrStream == s - GLOBAL_Stream) { + setvbuf(s->file, NULL, _IONBF, 0); + } +#endif + s->status |= Seekable_Stream_f; return; } -#if _MSC_VER - /* standard error stream should never be buffered */ - else if (StdErrStream == s - GLOBAL_Stream) { - setvbuf(s->file, NULL, _IONBF, 0); - } -#endif - s->status |= Seekable_Stream_f; - return; - } #else #if HAVE_ISATTY #if __simplescalar__ - /* isatty does not seem to work with simplescar. I'll assume the first - three streams will probably be ttys (pipes are not thatg different) */ - if (s - Stream < 3) { - s->name = AtomTty; - s->status |= Tty_Stream_f | Reset_Eof_Stream_f | Promptable_Stream_f; - } -#else - { - int filedes; /* visualc */ - if (!s->file) { - s->name = AtomNil; - return; - } - filedes = fileno(s->file); - if (isatty(filedes)) { -#if HAVE_TTYNAME - int rc = ttyname_r(filedes, LOCAL_FileNameBuf, YAP_FILENAME_MAX - 1); - if (rc == 0) - s->name = Yap_LookupAtom(LOCAL_FileNameBuf); - else - s->name = AtomTtys; -#else + /* isatty does not seem to work with simplescar. I'll assume the first + three streams will probably be ttys (pipes are not thatg different) */ + if (s - Stream < 3) { s->name = AtomTty; -#endif s->status |= Tty_Stream_f | Reset_Eof_Stream_f | Promptable_Stream_f; - return; } - } +#else + { + int filedes; /* visualc */ + if (!s->file) { + s->name = AtomNil; + return; + } + filedes = fileno(s->file); + if (isatty(filedes)) { +#if HAVE_TTYNAME + int rc = ttyname_r(filedes, LOCAL_FileNameBuf, YAP_FILENAME_MAX - 1); + if (rc == 0) + s->name = Yap_LookupAtom(LOCAL_FileNameBuf); + else + s->name = AtomTtys; +#else + s->name = AtomTty; +#endif + s->status |= Tty_Stream_f | Reset_Eof_Stream_f | Promptable_Stream_f; + return; + } + } #endif #endif /* HAVE_ISATTY */ #endif /* _MSC_VER */ - s->status |= Seekable_Stream_f; + s->status |= Seekable_Stream_f; } void Yap_DefaultStreamOps(StreamDesc *st) { - CACHE_REGS - st->stream_wputc = put_wchar; - if (st->encoding == ENC_ISO_UTF8) - st->stream_wgetc = get_wchar_UTF8; - else - st->stream_wgetc = get_wchar; - if (st->vfs) { - st->stream_putc = st->vfs->put_char; - st->stream_wgetc = st->vfs->get_char; - } else { - st->stream_putc = FilePutc; - st->stream_getc = PlGetc; - } - if (st->status & (Promptable_Stream_f)) { - Yap_ConsoleOps(st); - } + CACHE_REGS + st->stream_wputc = put_wchar; + if (st->encoding == ENC_ISO_UTF8) + st->stream_wgetc = get_wchar_UTF8; + else + st->stream_wgetc = get_wchar; + if (st->vfs) { + st->stream_putc = st->vfs->put_char; + st->stream_wgetc = st->vfs->get_char; + } else { + st->stream_putc = FilePutc; + st->stream_getc = PlGetc; + } + if (st->status & (Promptable_Stream_f)) { + Yap_ConsoleOps(st); + } #ifndef _WIN32 - else if (st->file != NULL && 0 && !(st->status & InMemory_Stream_f)) { - st->stream_wgetc = get_wchar_from_file; - } + else if (st->file != NULL && 0 && !(st->status & InMemory_Stream_f)) { + st->stream_wgetc = get_wchar_from_file; + } #endif - if (GLOBAL_CharConversionTable != NULL) - st->stream_wgetc_for_read = ISOWGetc; - else - st->stream_wgetc_for_read = st->stream_wgetc; - if (st->status & Pipe_Stream_f) { - Yap_PipeOps(st); - } else if (st->status & InMemory_Stream_f) { - Yap_MemOps(st); - } else if (st->status & Tty_Stream_f) { - Yap_ConsoleOps(st); - } else { - unix_upd_stream_info(st); - } + if (GLOBAL_CharConversionTable != NULL) + st->stream_wgetc_for_read = ISOWGetc; + else + st->stream_wgetc_for_read = st->stream_wgetc; + if (st->status & Pipe_Stream_f) { + Yap_PipeOps(st); + } else if (st->status & InMemory_Stream_f) { + Yap_MemOps(st); + } else if (st->status & Tty_Stream_f) { + Yap_ConsoleOps(st); + } else { + unix_upd_stream_info(st); + } } static void InitFileIO(StreamDesc *s) { - CACHE_REGS - Yap_DefaultStreamOps(s); + CACHE_REGS + Yap_DefaultStreamOps(s); } static void InitStdStream(int sno, SMALLUNSGN flags, FILE *file, VFS_t *vfsp) { - StreamDesc *s = &GLOBAL_Stream[sno]; - s->file = file; - s->status = flags; - s->linepos = 0; - s->linecount = 1; - s->charcount = 0; - s->vfs = vfsp; - s->encoding = ENC_ISO_UTF8; - INIT_LOCK(s->streamlock); - if (vfsp != NULL) { - s->u.private_data = - vfsp->open(sno, vfsp->name, (sno == StdInStream ? "read" : "write")); - if (s->u.private_data == NULL) { - (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkIntTerm(sno), "%s", - vfsp->name)); - return; + StreamDesc *s = &GLOBAL_Stream[sno]; + s->file = file; + s->status = flags; + s->linepos = 0; + s->linecount = 1; + s->charcount = 0; + s->vfs = vfsp; + s->encoding = ENC_ISO_UTF8; + INIT_LOCK(s->streamlock); + if (vfsp != NULL) { + s->u.private_data = + vfsp->open(vfsp, sno, vfsp->name, (sno == StdInStream ? "read" : "write")); + if (s->u.private_data == NULL) { + (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkIntTerm(sno), "%s", + vfsp->name)); + return; + } + } else { + unix_upd_stream_info(s); } - } else { - unix_upd_stream_info(s); - } - /* Getting streams to prompt is a mess because we need for cooperation - between readers and writers to the stream :-( - */ - InitFileIO(s); - switch (sno) { - case 0: - s->name = AtomUserIn; - break; - case 1: - s->name = AtomUserOut; - break; - default: - s->name = AtomUserErr; - break; - } - s->user_name = MkAtomTerm(s->name); + /* Getting streams to prompt is a mess because we need for cooperation + between readers and writers to the stream :-( + */ + InitFileIO(s); + switch (sno) { + case 0: + s->name = AtomUserIn; + break; + case 1: + s->name = AtomUserOut; + break; + default: + s->name = AtomUserErr; + break; + } + s->user_name = MkAtomTerm(s->name); #if LIGHT - s->status |= Tty_Stream_f | Promptable_Stream_f; + s->status |= Tty_Stream_f | Promptable_Stream_f; #endif - Yap_DefaultStreamOps(s); + Yap_DefaultStreamOps(s); #if HAVE_SETBUF - if (s->status & Tty_Stream_f && sno == 0) { - /* make sure input is unbuffered if it comes from stdin, this - makes life simpler for interrupt handling */ - setbuf(stdin, NULL); - // fprintf(stderr,"here I am\n"); - } + if (s->status & Tty_Stream_f && sno == 0) { + /* make sure input is unbuffered if it comes from stdin, this + makes life simpler for interrupt handling */ + setbuf(stdin, NULL); + // fprintf(stderr,"here I am\n"); + } #endif /* HAVE_SETBUF */ } void Yap_InitStdStream(int sno, unsigned int flags, FILE *file, VFS_t *vfsp) { - InitStdStream(sno, flags, file, vfsp); + InitStdStream(sno, flags, file, vfsp); } Term Yap_StreamUserName(int sno) { - Term atname; - StreamDesc *s = &GLOBAL_Stream[sno]; - if (s->user_name != 0L) { - return (s->user_name); - } - if ((atname = StreamName(sno))) - return atname; - return TermNil; + Term atname; + StreamDesc *s = &GLOBAL_Stream[sno]; + if (s->user_name != 0L) { + return (s->user_name); + } + if ((atname = StreamName(sno))) + return atname; + return TermNil; } static void InitStdStreams(void) { - CACHE_REGS - if (LOCAL_sockets_io) { - InitStdStream(StdInStream, Input_Stream_f, NULL, NULL); - InitStdStream(StdOutStream, Output_Stream_f, NULL, NULL); - InitStdStream(StdErrStream, Output_Stream_f, NULL, NULL); - } else { - InitStdStream(StdInStream, Input_Stream_f, stdin, NULL); - InitStdStream(StdOutStream, Output_Stream_f, stdout, NULL); - InitStdStream(StdErrStream, Output_Stream_f, stderr, NULL); - } - GLOBAL_Stream[StdInStream].name = Yap_LookupAtom("user_input"); - GLOBAL_Stream[StdOutStream].name = Yap_LookupAtom("user_output"); - GLOBAL_Stream[StdErrStream].name = Yap_LookupAtom("user_error"); + CACHE_REGS + if (LOCAL_sockets_io) { + InitStdStream(StdInStream, Input_Stream_f, NULL, NULL); + InitStdStream(StdOutStream, Output_Stream_f, NULL, NULL); + InitStdStream(StdErrStream, Output_Stream_f, NULL, NULL); + } else { + InitStdStream(StdInStream, Input_Stream_f, stdin, NULL); + InitStdStream(StdOutStream, Output_Stream_f, stdout, NULL); + InitStdStream(StdErrStream, Output_Stream_f, stderr, NULL); + } + GLOBAL_Stream[StdInStream].name = Yap_LookupAtom("user_input"); + GLOBAL_Stream[StdOutStream].name = Yap_LookupAtom("user_output"); + GLOBAL_Stream[StdErrStream].name = Yap_LookupAtom("user_error"); #if USE_READLINE - if (GLOBAL_Stream[StdInStream].status & Tty_Stream_f && - GLOBAL_Stream[StdOutStream].status & Tty_Stream_f && - GLOBAL_Stream[StdErrStream].status & Tty_Stream_f && !Yap_embedded) { - Yap_InitReadline(TermTrue); - } + if (GLOBAL_Stream[StdInStream].status & Tty_Stream_f && + GLOBAL_Stream[StdOutStream].status & Tty_Stream_f && + GLOBAL_Stream[StdErrStream].status & Tty_Stream_f && !Yap_embedded) { + Yap_InitReadline(TermTrue); + } #endif - LOCAL_c_input_stream = StdInStream; - LOCAL_c_output_stream = StdOutStream; - LOCAL_c_error_stream = StdErrStream; + LOCAL_c_input_stream = StdInStream; + LOCAL_c_output_stream = StdOutStream; + LOCAL_c_error_stream = StdErrStream; } void Yap_InitStdStreams(void) { InitStdStreams(); } Int PlIOError__(const char *file, const char *function, int lineno, yap_error_number type, Term culprit, ...) { - if (trueLocalPrologFlag(FILEERRORS_FLAG) || - type == RESOURCE_ERROR_MAX_STREAMS /* do not catch resource errors */) { - va_list args; - const char *format; - char who[1024]; + if (trueLocalPrologFlag(FILEERRORS_FLAG) || + type == RESOURCE_ERROR_MAX_STREAMS /* do not catch resource errors */) { + va_list args; + const char *format; + char who[1024]; - va_start(args, culprit); - format = va_arg(args, char *); - if (format) { - vsnprintf(who, 1023, format, args); + va_start(args, culprit); + format = va_arg(args, char *); + if (format) { + vsnprintf(who, 1023, format, args); + } else { + who[0] = '\0'; + } + va_end(args); + Yap_Error__(file, function, lineno, type, culprit, who); + /* and fail */ + return false; } else { - who[0] = '\0'; + pop_text_stack(0); + memset(LOCAL_ActiveError, 0, sizeof(*LOCAL_ActiveError)); + return false; } - va_end(args); - Yap_Error__(file, function, lineno, type, culprit, who); - /* and fail */ - return false; - } else { - pop_text_stack(0); - memset(LOCAL_ActiveError, 0, sizeof(*LOCAL_ActiveError)); - return false; - } } static int eolflg = 1; @@ -432,244 +447,244 @@ static void InTTYLine(char *line) { #endif void Yap_DebugSetIFile(char *fname) { - if (curfile) - fclose(curfile); - curfile = fopen(fname, "r"); - if (curfile == NULL) { - curfile = stdin; - Yap_Warning("%% YAP open %s for input\n", fname); - } + if (curfile) + fclose(curfile); + curfile = fopen(fname, "r"); + if (curfile == NULL) { + curfile = stdin; + Yap_Warning("%% YAP open %s for input\n", fname); + } } void Yap_DebugEndline() { *lp = 0; } int Yap_DebugGetc() { - int ch; - if (eolflg) { - if (curfile != NULL) { - if (fgets(my_line, 200, curfile) == 0) - curfile = NULL; + int ch; + if (eolflg) { + if (curfile != NULL) { + if (fgets(my_line, 200, curfile) == 0) + curfile = NULL; + } + if (curfile == NULL) + if (fgets(my_line, 200, stdin) == NULL) { + return EOF; + } + eolflg = 0; + lp = my_line; } - if (curfile == NULL) - if (fgets(my_line, 200, stdin) == NULL) { - return EOF; - } - eolflg = 0; - lp = my_line; - } - if ((ch = *lp++) == 0) - ch = '\n', eolflg = 1; - if (Yap_Option['l' - 96]) - putc(ch, Yap_logfile); - return (ch); + if ((ch = *lp++) == 0) + ch = '\n', eolflg = 1; + if (Yap_Option['l' - 96]) + putc(ch, Yap_logfile); + return (ch); } int Yap_DebugPutc(FILE *s, wchar_t ch) { - if (Yap_Option['l' - 96]) - (void)putc(ch, Yap_logfile); - return (putc(ch, s)); + if (Yap_Option['l' - 96]) + (void) putc(ch, Yap_logfile); + return (putc(ch, s)); } int Yap_DebugPuts(FILE *s, const char *sch) { - if (Yap_Option['l' - 96]) - (void)fputs(sch, Yap_logfile); - return fputs(sch, s); + if (Yap_Option['l' - 96]) + (void) fputs(sch, Yap_logfile); + return fputs(sch, s); } void Yap_DebugErrorPuts(const char *s) { Yap_DebugPuts(stderr, s); } void Yap_DebugPlWrite(Term t) { - if (t == 0) - fprintf(stderr, "NULL"); - Yap_plwrite(t, GLOBAL_Stream + 2, 0, 0, GLOBAL_MaxPriority); + if (t == 0) + fprintf(stderr, "NULL"); + Yap_plwrite(t, GLOBAL_Stream + 2, 0, 0, GLOBAL_MaxPriority); } void Yap_DebugPlWriteln(Term t) { - CACHE_REGS - if (t == 0) - fprintf(stderr, "NULL"); - Yap_plwrite(t, NULL, 15, 0, GLOBAL_MaxPriority); - Yap_DebugPutc(GLOBAL_Stream[LOCAL_c_error_stream].file, '.'); - Yap_DebugPutc(GLOBAL_Stream[LOCAL_c_error_stream].file, 10); + CACHE_REGS + if (t == 0) + fprintf(stderr, "NULL"); + Yap_plwrite(t, NULL, 15, 0, GLOBAL_MaxPriority); + Yap_DebugPutc(GLOBAL_Stream[LOCAL_c_error_stream].file, '.'); + Yap_DebugPutc(GLOBAL_Stream[LOCAL_c_error_stream].file, 10); } void Yap_DebugErrorPutc(int c) { - CACHE_REGS - Yap_DebugPutc(GLOBAL_Stream[LOCAL_c_error_stream].file, c); + CACHE_REGS + Yap_DebugPutc(GLOBAL_Stream[LOCAL_c_error_stream].file, c); } void Yap_DebugWriteIndicator(PredEntry *ap) { - CACHE_REGS - Term tmod = ap->ModuleOfPred; - if (!tmod) - tmod = TermProlog; + CACHE_REGS + Term tmod = ap->ModuleOfPred; + if (!tmod) + tmod = TermProlog; #if THREADS - Yap_DebugPlWrite(MkIntegerTerm(worker_id)); - Yap_DebugPutc(stderr, ' '); + Yap_DebugPlWrite(MkIntegerTerm(worker_id)); + Yap_DebugPutc(stderr, ' '); #endif - Yap_DebugPutc(stderr, '>'); - Yap_DebugPutc(stderr, '\t'); - Yap_DebugPlWrite(tmod); - Yap_DebugPutc(stderr, ':'); - if (ap->ModuleOfPred == IDB_MODULE) { - Term t = Deref(ARG1); - if (IsAtomTerm(t)) { - Yap_DebugPlWrite(t); - } else if (IsIntegerTerm(t)) { - Yap_DebugPlWrite(t); + Yap_DebugPutc(stderr, '>'); + Yap_DebugPutc(stderr, '\t'); + Yap_DebugPlWrite(tmod); + Yap_DebugPutc(stderr, ':'); + if (ap->ModuleOfPred == IDB_MODULE) { + Term t = Deref(ARG1); + if (IsAtomTerm(t)) { + Yap_DebugPlWrite(t); + } else if (IsIntegerTerm(t)) { + Yap_DebugPlWrite(t); + } else { + Functor f = FunctorOfTerm(t); + Atom At = NameOfFunctor(f); + Yap_DebugPlWrite(MkAtomTerm(At)); + Yap_DebugPutc(stderr, '/'); + Yap_DebugPlWrite(MkIntegerTerm(ArityOfFunctor(f))); + } } else { - Functor f = FunctorOfTerm(t); - Atom At = NameOfFunctor(f); - Yap_DebugPlWrite(MkAtomTerm(At)); - Yap_DebugPutc(stderr, '/'); - Yap_DebugPlWrite(MkIntegerTerm(ArityOfFunctor(f))); + if (ap->ArityOfPE == 0) { + Atom At = (Atom) ap->FunctorOfPred; + Yap_DebugPlWrite(MkAtomTerm(At)); + } else { + Functor f = ap->FunctorOfPred; + Atom At = NameOfFunctor(f); + Yap_DebugPlWrite(MkAtomTerm(At)); + Yap_DebugPutc(stderr, '/'); + Yap_DebugPlWrite(MkIntegerTerm(ArityOfFunctor(f))); + } } - } else { - if (ap->ArityOfPE == 0) { - Atom At = (Atom)ap->FunctorOfPred; - Yap_DebugPlWrite(MkAtomTerm(At)); - } else { - Functor f = ap->FunctorOfPred; - Atom At = NameOfFunctor(f); - Yap_DebugPlWrite(MkAtomTerm(At)); - Yap_DebugPutc(stderr, '/'); - Yap_DebugPlWrite(MkIntegerTerm(ArityOfFunctor(f))); - } - } - Yap_DebugPutc(stderr, '\n'); + Yap_DebugPutc(stderr, '\n'); } /* static */ int FilePutc(int sno, int ch) { - StreamDesc *s = &GLOBAL_Stream[sno]; + StreamDesc *s = &GLOBAL_Stream[sno]; #if MAC || _MSC_VER - if (ch == 10) { - ch = '\n'; - } + if (ch == 10) { + ch = '\n'; + } #endif - putc(ch, s->file); + putc(ch, s->file); #if MAC || _MSC_VER - if (ch == 10) { - fflush(s->file); - } + if (ch == 10) { + fflush(s->file); + } #endif - count_output_char(ch, s); - return ((int)ch); + count_output_char(ch, s); + return ((int) ch); } static int NullPutc(int sno, int ch) { - StreamDesc *s = &GLOBAL_Stream[sno]; + StreamDesc *s = &GLOBAL_Stream[sno]; #if MAC || _MSC_VER - if (ch == 10) { - ch = '\n'; - } + if (ch == 10) { + ch = '\n'; + } #endif - count_output_char(ch, s); - return ((int)ch); + count_output_char(ch, s); + return ((int) ch); } int ResetEOF(StreamDesc *s) { - if (s->status & Eof_Error_Stream_f) { - Atom name = s->name; - // Yap_CloseStream(s - GLOBAL_Stream); - Yap_Error(PERMISSION_ERROR_INPUT_PAST_END_OF_STREAM, MkAtomTerm(name), - "GetC"); - return FALSE; - } else if (s->status & Reset_Eof_Stream_f) { - s->status &= ~Push_Eof_Stream_f; - /* reset the eof indicator on file */ - if (feof(s->file)) - clearerr(s->file); - /* reset our function for reading input */ - Yap_DefaultStreamOps(s); - /* next, reset our own error indicator */ - s->status &= ~Eof_Stream_f; - /* try reading again */ - return TRUE; - } else { - s->status |= Past_Eof_Stream_f; - return FALSE; - } + if (s->status & Eof_Error_Stream_f) { + Atom name = s->name; + // Yap_CloseStream(s - GLOBAL_Stream); + Yap_Error(PERMISSION_ERROR_INPUT_PAST_END_OF_STREAM, MkAtomTerm(name), + "GetC"); + return FALSE; + } else if (s->status & Reset_Eof_Stream_f) { + s->status &= ~Push_Eof_Stream_f; + /* reset the eof indicator on file */ + if (feof(s->file)) + clearerr(s->file); + /* reset our function for reading input */ + Yap_DefaultStreamOps(s); + /* next, reset our own error indicator */ + s->status &= ~Eof_Stream_f; + /* try reading again */ + return TRUE; + } else { + s->status |= Past_Eof_Stream_f; + return FALSE; + } } /* handle reading from a stream after having found an EOF */ static int EOFWGetc(int sno) { - register StreamDesc *s = &GLOBAL_Stream[sno]; + register StreamDesc *s = &GLOBAL_Stream[sno]; - if (s->status & Push_Eof_Stream_f) { - /* ok, we have pushed an EOF, send it away */ - s->status &= ~Push_Eof_Stream_f; + if (s->status & Push_Eof_Stream_f) { + /* ok, we have pushed an EOF, send it away */ + s->status &= ~Push_Eof_Stream_f; + return EOF; + } + if (ResetEOF(s)) { + Yap_DefaultStreamOps(s); + return (s->stream_wgetc(sno)); + } return EOF; - } - if (ResetEOF(s)) { - Yap_DefaultStreamOps(s); - return (s->stream_wgetc(sno)); - } - return EOF; } static int EOFGetc(int sno) { - register StreamDesc *s = &GLOBAL_Stream[sno]; + register StreamDesc *s = &GLOBAL_Stream[sno]; - if (s->status & Push_Eof_Stream_f) { - /* ok, we have pushed an EOF, send it away */ - s->status &= ~Push_Eof_Stream_f; - ResetEOF(s); + if (s->status & Push_Eof_Stream_f) { + /* ok, we have pushed an EOF, send it away */ + s->status &= ~Push_Eof_Stream_f; + ResetEOF(s); + return EOF; + } + if (ResetEOF(s)) { + Yap_DefaultStreamOps(s); + return s->stream_getc(sno); + } return EOF; - } - if (ResetEOF(s)) { - Yap_DefaultStreamOps(s); - return s->stream_getc(sno); - } - return EOF; } /* check if we read a LOCAL_newline or an EOF */ int console_post_process_eof(StreamDesc *s) { - CACHE_REGS - if (!ResetEOF(s)) { - s->status |= Eof_Stream_f; - s->stream_getc = EOFGetc; - s->stream_wgetc = EOFWGetc; - s->stream_wgetc_for_read = EOFWGetc; - LOCAL_newline = true; - } - return EOFCHAR; + CACHE_REGS + if (!ResetEOF(s)) { + s->status |= Eof_Stream_f; + s->stream_getc = EOFGetc; + s->stream_wgetc = EOFWGetc; + s->stream_wgetc_for_read = EOFWGetc; + LOCAL_newline = true; + } + return EOFCHAR; } /* check if we read a newline or an EOF */ int post_process_read_wchar(int ch, size_t n, StreamDesc *s) { - if (ch == EOF) { - return post_process_weof(s); - } + if (ch == EOF) { + return post_process_weof(s); + } #if DEBUG - if (GLOBAL_Option[1]) { - static int v; - fprintf(stderr, "%d %C\n", v, ch); - v++; - } + if (GLOBAL_Option[1]) { + static int v; + fprintf(stderr, "%d %C\n", v, ch); + v++; + } #endif - s->charcount += n; - s->linepos += n; - if (ch == '\n') { - ++s->linecount; - s->linepos = 0; - /* don't convert if the stream is binary */ - if (!(s->status & Binary_Stream_f)) - ch = 10; - } - return ch; + s->charcount += n; + s->linepos += n; + if (ch == '\n') { + ++s->linecount; + s->linepos = 0; + /* don't convert if the stream is binary */ + if (!(s->status & Binary_Stream_f)) + ch = 10; + } + return ch; } int post_process_weof(StreamDesc *s) { - if (!ResetEOF(s)) { - s->status |= Eof_Stream_f; - s->stream_wgetc = EOFWGetc; - s->stream_getc = EOFGetc; - s->stream_wgetc_for_read = EOFWGetc; - } - return EOFCHAR; + if (!ResetEOF(s)) { + s->status |= Eof_Stream_f; + s->stream_wgetc = EOFWGetc; + s->stream_getc = EOFGetc; + s->stream_wgetc_for_read = EOFWGetc; + } + return EOFCHAR; } /** @@ -689,14 +704,14 @@ int EOFWPeek(int sno) { return EOFCHAR; } It could be made more efficient by doing our own buffering and avoiding post_process_read_char, something to think about */ int PlGetc(int sno) { - StreamDesc *s = &GLOBAL_Stream[sno]; - return fgetc(s->file); + StreamDesc *s = &GLOBAL_Stream[sno]; + return fgetc(s->file); } // layered version static inline int get_wchar_from_file(int sno) { - return post_process_read_wchar(fgetwc(GLOBAL_Stream[sno].file), 1, - GLOBAL_Stream + sno); + return post_process_read_wchar(fgetwc(GLOBAL_Stream[sno].file), 1, + GLOBAL_Stream + sno); } #ifndef MB_LEN_MAX @@ -704,200 +719,200 @@ static inline int get_wchar_from_file(int sno) { #endif static int handle_write_encoding_error(int sno, wchar_t ch) { - if (GLOBAL_Stream[sno].status & RepError_Xml_f) { - /* use HTML/XML encoding in ASCII */ - int i = ch, digits = 1; - GLOBAL_Stream[sno].stream_putc(sno, '&'); - GLOBAL_Stream[sno].stream_putc(sno, '#'); - while (digits < i) - digits *= 10; - if (digits > i) - digits /= 10; - while (i) { - GLOBAL_Stream[sno].stream_putc(sno, i / digits); - i %= 10; - digits /= 10; + if (GLOBAL_Stream[sno].status & RepError_Xml_f) { + /* use HTML/XML encoding in ASCII */ + int i = ch, digits = 1; + GLOBAL_Stream[sno].stream_putc(sno, '&'); + GLOBAL_Stream[sno].stream_putc(sno, '#'); + while (digits < i) + digits *= 10; + if (digits > i) + digits /= 10; + while (i) { + GLOBAL_Stream[sno].stream_putc(sno, i / digits); + i %= 10; + digits /= 10; + } + GLOBAL_Stream[sno].stream_putc(sno, ';'); + return ch; + } else if (GLOBAL_Stream[sno].status & RepError_Prolog_f) { + /* write quoted */ + GLOBAL_Stream[sno].stream_putc(sno, '\\'); + GLOBAL_Stream[sno].stream_putc(sno, 'u'); + GLOBAL_Stream[sno].stream_putc(sno, ch >> 24); + GLOBAL_Stream[sno].stream_putc(sno, 256 & (ch >> 16)); + GLOBAL_Stream[sno].stream_putc(sno, 256 & (ch >> 8)); + GLOBAL_Stream[sno].stream_putc(sno, 256 & ch); + return ch; + } else { + CACHE_REGS + Yap_Error(REPRESENTATION_ERROR_CHARACTER, MkIntegerTerm(ch), + "charater %ld cannot be encoded in stream %d", + (unsigned long int) ch, sno); + return -1; } - GLOBAL_Stream[sno].stream_putc(sno, ';'); - return ch; - } else if (GLOBAL_Stream[sno].status & RepError_Prolog_f) { - /* write quoted */ - GLOBAL_Stream[sno].stream_putc(sno, '\\'); - GLOBAL_Stream[sno].stream_putc(sno, 'u'); - GLOBAL_Stream[sno].stream_putc(sno, ch >> 24); - GLOBAL_Stream[sno].stream_putc(sno, 256 & (ch >> 16)); - GLOBAL_Stream[sno].stream_putc(sno, 256 & (ch >> 8)); - GLOBAL_Stream[sno].stream_putc(sno, 256 & ch); - return ch; - } else { - CACHE_REGS - Yap_Error(REPRESENTATION_ERROR_CHARACTER, MkIntegerTerm(ch), - "charater %ld cannot be encoded in stream %d", - (unsigned long int)ch, sno); - return -1; - } } int put_wchar(int sno, wchar_t ch) { - /* pass the bucck if we can */ - switch (GLOBAL_Stream[sno].encoding) { - case ENC_OCTET: - return GLOBAL_Stream[sno].stream_putc(sno, ch); - case ENC_ISO_LATIN1: - if (ch >= 0xff) { - return handle_write_encoding_error(sno, ch); - } - return GLOBAL_Stream[sno].stream_putc(sno, ch); - case ENC_ISO_ASCII: - if (ch >= 0x80) { - return handle_write_encoding_error(sno, ch); - } - return GLOBAL_Stream[sno].stream_putc(sno, ch); - case ENC_ISO_ANSI: { - char buf[MB_LEN_MAX]; - mbstate_t mbstate; - int n; + /* pass the bucck if we can */ + switch (GLOBAL_Stream[sno].encoding) { + case ENC_OCTET: + return GLOBAL_Stream[sno].stream_putc(sno, ch); + case ENC_ISO_LATIN1: + if (ch >= 0xff) { + return handle_write_encoding_error(sno, ch); + } + return GLOBAL_Stream[sno].stream_putc(sno, ch); + case ENC_ISO_ASCII: + if (ch >= 0x80) { + return handle_write_encoding_error(sno, ch); + } + return GLOBAL_Stream[sno].stream_putc(sno, ch); + case ENC_ISO_ANSI: { + char buf[MB_LEN_MAX]; + mbstate_t mbstate; + int n; - memset((void *)&mbstate, 0, sizeof(mbstate_t)); - if ((n = wcrtomb(buf, ch, &mbstate)) < 0) { - /* error */ - GLOBAL_Stream[sno].stream_putc(sno, ch); - return -1; - } else { - int i; + memset((void *) &mbstate, 0, sizeof(mbstate_t)); + if ((n = wcrtomb(buf, ch, &mbstate)) < 0) { + /* error */ + GLOBAL_Stream[sno].stream_putc(sno, ch); + return -1; + } else { + int i; - for (i = 0; i < n; i++) { - GLOBAL_Stream[sno].stream_putc(sno, buf[i]); - } - return ch; - } - case ENC_ISO_UTF8: - if (ch < 0x80) { - GLOBAL_Stream[sno].stream_putc(sno, ch); - } else if (ch < 0x800) { - GLOBAL_Stream[sno].stream_putc(sno, 0xC0 | ch >> 6); - GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch & 0x3F)); - } else if (ch < 0x10000) { - GLOBAL_Stream[sno].stream_putc(sno, 0xE0 | ch >> 12); - GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch >> 6 & 0x3F)); - GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch & 0x3F)); - } else if (ch < 0x200000) { - GLOBAL_Stream[sno].stream_putc(sno, 0xF0 | ch >> 18); - GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch >> 12 & 0x3F)); - GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch >> 6 & 0x3F)); - GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch & 0x3F)); - } else { - /* should never happen */ - return -1; - } - return ch; - break; - case ENC_UTF16_LE: { - if (ch < 0x10000) { - GLOBAL_Stream[sno].stream_putc(sno, (ch & 0xff)); - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8)); - } else { - // computations - uint16_t ich = ch; - uint16_t lead = LEAD_OFFSET + (ich >> 10); - uint16_t trail = 0xDC00 + (ich & 0x3FF); + for (i = 0; i < n; i++) { + GLOBAL_Stream[sno].stream_putc(sno, buf[i]); + } + return ch; + } + case ENC_ISO_UTF8: + if (ch < 0x80) { + GLOBAL_Stream[sno].stream_putc(sno, ch); + } else if (ch < 0x800) { + GLOBAL_Stream[sno].stream_putc(sno, 0xC0 | ch >> 6); + GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch & 0x3F)); + } else if (ch < 0x10000) { + GLOBAL_Stream[sno].stream_putc(sno, 0xE0 | ch >> 12); + GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch >> 6 & 0x3F)); + GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch & 0x3F)); + } else if (ch < 0x200000) { + GLOBAL_Stream[sno].stream_putc(sno, 0xF0 | ch >> 18); + GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch >> 12 & 0x3F)); + GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch >> 6 & 0x3F)); + GLOBAL_Stream[sno].stream_putc(sno, 0x80 | (ch & 0x3F)); + } else { + /* should never happen */ + return -1; + } + return ch; + break; + case ENC_UTF16_LE: { + if (ch < 0x10000) { + GLOBAL_Stream[sno].stream_putc(sno, (ch & 0xff)); + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8)); + } else { + // computations + uint16_t ich = ch; + uint16_t lead = LEAD_OFFSET + (ich >> 10); + uint16_t trail = 0xDC00 + (ich & 0x3FF); - GLOBAL_Stream[sno].stream_putc(sno, (trail & 0xff)); - GLOBAL_Stream[sno].stream_putc(sno, (trail >> 8)); - GLOBAL_Stream[sno].stream_putc(sno, (lead & 0xff)); - GLOBAL_Stream[sno].stream_putc(sno, (lead >> 8)); - } - return ch; - } - case ENC_UTF16_BE: { - // computations - if (ch < 0x10000) { - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8)); - GLOBAL_Stream[sno].stream_putc(sno, (ch & 0xff)); - } else { - uint16_t lead = (uint16_t)LEAD_OFFSET + ((uint16_t)ch >> 10); - uint16_t trail = 0xDC00 + ((uint16_t)ch & 0x3FF); + GLOBAL_Stream[sno].stream_putc(sno, (trail & 0xff)); + GLOBAL_Stream[sno].stream_putc(sno, (trail >> 8)); + GLOBAL_Stream[sno].stream_putc(sno, (lead & 0xff)); + GLOBAL_Stream[sno].stream_putc(sno, (lead >> 8)); + } + return ch; + } + case ENC_UTF16_BE: { + // computations + if (ch < 0x10000) { + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8)); + GLOBAL_Stream[sno].stream_putc(sno, (ch & 0xff)); + } else { + uint16_t lead = (uint16_t) LEAD_OFFSET + ((uint16_t) ch >> 10); + uint16_t trail = 0xDC00 + ((uint16_t) ch & 0x3FF); - GLOBAL_Stream[sno].stream_putc(sno, (lead >> 8)); - GLOBAL_Stream[sno].stream_putc(sno, (lead & 0xff)); - GLOBAL_Stream[sno].stream_putc(sno, (trail >> 8)); - GLOBAL_Stream[sno].stream_putc(sno, (trail & 0xff)); - } - return ch; - } - case ENC_UCS2_LE: { - if (ch >= 0x10000) { - return 0; - } - GLOBAL_Stream[sno].stream_putc(sno, (ch & 0xff)); - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8)); - return ch; - } - case ENC_UCS2_BE: { - // computations - if (ch < 0x10000) { - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8)); - GLOBAL_Stream[sno].stream_putc(sno, (ch & 0xff)); - return ch; - } else { - return 0; - } - } + GLOBAL_Stream[sno].stream_putc(sno, (lead >> 8)); + GLOBAL_Stream[sno].stream_putc(sno, (lead & 0xff)); + GLOBAL_Stream[sno].stream_putc(sno, (trail >> 8)); + GLOBAL_Stream[sno].stream_putc(sno, (trail & 0xff)); + } + return ch; + } + case ENC_UCS2_LE: { + if (ch >= 0x10000) { + return 0; + } + GLOBAL_Stream[sno].stream_putc(sno, (ch & 0xff)); + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8)); + return ch; + } + case ENC_UCS2_BE: { + // computations + if (ch < 0x10000) { + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8)); + GLOBAL_Stream[sno].stream_putc(sno, (ch & 0xff)); + return ch; + } else { + return 0; + } + } - case ENC_ISO_UTF32_BE: - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 24) & 0xff); - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 16) & 0xff); - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8) & 0xff); - GLOBAL_Stream[sno].stream_putc(sno, ch & 0xff); - return ch; - case ENC_ISO_UTF32_LE: - GLOBAL_Stream[sno].stream_putc(sno, ch & 0xff); - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8) & 0xff); - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 16) & 0xff); - GLOBAL_Stream[sno].stream_putc(sno, (ch >> 24) & 0xff); - return ch; - } - } - return -1; + case ENC_ISO_UTF32_BE: + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 24) & 0xff); + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 16) & 0xff); + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8) & 0xff); + GLOBAL_Stream[sno].stream_putc(sno, ch & 0xff); + return ch; + case ENC_ISO_UTF32_LE: + GLOBAL_Stream[sno].stream_putc(sno, ch & 0xff); + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 8) & 0xff); + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 16) & 0xff); + GLOBAL_Stream[sno].stream_putc(sno, (ch >> 24) & 0xff); + return ch; + } + } + return -1; } /* used by user-code to read characters from the current input stream */ int Yap_PlGetchar(void) { - CACHE_REGS - return ( - GLOBAL_Stream[LOCAL_c_input_stream].stream_getc(LOCAL_c_input_stream)); + CACHE_REGS + return ( + GLOBAL_Stream[LOCAL_c_input_stream].stream_getc(LOCAL_c_input_stream)); } int Yap_PlGetWchar(void) { - CACHE_REGS - return get_wchar(LOCAL_c_input_stream); + CACHE_REGS + return get_wchar(LOCAL_c_input_stream); } /* avoid using a variable to call a function */ int Yap_PlFGetchar(void) { - CACHE_REGS - return (PlGetc(LOCAL_c_input_stream)); + CACHE_REGS + return (PlGetc(LOCAL_c_input_stream)); } Term Yap_MkStream(int n) { - Term t[1]; - t[0] = MkIntTerm(n); - return (Yap_MkApplTerm(FunctorStream, 1, t)); + Term t[1]; + t[0] = MkIntTerm(n); + return (Yap_MkApplTerm(FunctorStream, 1, t)); } /* given a stream index, get the corresponding fd */ Int GetStreamFd(int sno) { #if HAVE_SOCKET - if (GLOBAL_Stream[sno].status & Socket_Stream_f) { - return (GLOBAL_Stream[sno].u.socket.fd); - } else + if (GLOBAL_Stream[sno].status & Socket_Stream_f) { + return (GLOBAL_Stream[sno].u.socket.fd); + } else #endif - if (GLOBAL_Stream[sno].status & Pipe_Stream_f) { - return (GLOBAL_Stream[sno].u.pipe.fd); - } else if (GLOBAL_Stream[sno].status & InMemory_Stream_f) { - return (-1); - } - return (fileno(GLOBAL_Stream[sno].file)); + if (GLOBAL_Stream[sno].status & Pipe_Stream_f) { + return (GLOBAL_Stream[sno].u.pipe.fd); + } else if (GLOBAL_Stream[sno].status & InMemory_Stream_f) { + return (-1); + } + return (fileno(GLOBAL_Stream[sno].file)); } Int Yap_GetStreamFd(int sno) { return GetStreamFd(sno); } @@ -905,229 +920,228 @@ Int Yap_GetStreamFd(int sno) { return GetStreamFd(sno); } static int binary_file(const char *file_name) { #if HAVE_STAT #if _MSC_VER || defined(__MINGW32__) - struct _stat ss; - if (_stat(file_name, &ss) != 0) + struct _stat ss; + if (_stat(file_name, &ss) != 0) #else - struct stat ss; - if (stat(file_name, &ss) != 0) + struct stat ss; + if (stat(file_name, &ss) != 0) #endif - { - /* ignore errors while checking a file */ - return (FALSE); - } - return (S_ISDIR(ss.st_mode)); + { + /* ignore errors while checking a file */ + return (FALSE); + } + return (S_ISDIR(ss.st_mode)); #else - return (FALSE); + return (FALSE); #endif } static int write_bom(int sno, StreamDesc *st) { - /* dump encoding */ - switch (st->encoding) { - case ENC_ISO_UTF8: - if (st->stream_putc(sno, 0xEF) < 0) - return false; - if (st->stream_putc(sno, 0xBB) < 0) - return false; - if (st->stream_putc(sno, 0xBF) < 0) - return false; - st->status |= HAS_BOM_f; - return true; - case ENC_UTF16_BE: - case ENC_UCS2_BE: - if (st->stream_putc(sno, 0xFE) < 0) - return false; - if (st->stream_putc(sno, 0xFF) < 0) - return false; - st->status |= HAS_BOM_f; - return true; - case ENC_UTF16_LE: - case ENC_UCS2_LE: - if (st->stream_putc(sno, 0xFF) < 0) - return false; - if (st->stream_putc(sno, 0xFE) < 0) - return false; - st->status |= HAS_BOM_f; - return true; - case ENC_ISO_UTF32_BE: - if (st->stream_putc(sno, 0x00) < 0) - return false; - if (st->stream_putc(sno, 0x00) < 0) - return false; - if (st->stream_putc(sno, 0xFE) < 0) - return false; - if (st->stream_putc(sno, 0xFF) < 0) - return false; - st->status |= HAS_BOM_f; - return true; - case ENC_ISO_UTF32_LE: - if (st->stream_putc(sno, 0xFF) < 0) - return false; - if (st->stream_putc(sno, 0xFE) < 0) - return false; - if (st->stream_putc(sno, 0x00) < 0) - return false; - if (st->stream_putc(sno, 0x00) < 0) - return false; - st->status |= HAS_BOM_f; - return true; - default: - return true; - } + /* dump encoding */ + switch (st->encoding) { + case ENC_ISO_UTF8: + if (st->stream_putc(sno, 0xEF) < 0) + return false; + if (st->stream_putc(sno, 0xBB) < 0) + return false; + if (st->stream_putc(sno, 0xBF) < 0) + return false; + st->status |= HAS_BOM_f; + return true; + case ENC_UTF16_BE: + case ENC_UCS2_BE: + if (st->stream_putc(sno, 0xFE) < 0) + return false; + if (st->stream_putc(sno, 0xFF) < 0) + return false; + st->status |= HAS_BOM_f; + return true; + case ENC_UTF16_LE: + case ENC_UCS2_LE: + if (st->stream_putc(sno, 0xFF) < 0) + return false; + if (st->stream_putc(sno, 0xFE) < 0) + return false; + st->status |= HAS_BOM_f; + return true; + case ENC_ISO_UTF32_BE: + if (st->stream_putc(sno, 0x00) < 0) + return false; + if (st->stream_putc(sno, 0x00) < 0) + return false; + if (st->stream_putc(sno, 0xFE) < 0) + return false; + if (st->stream_putc(sno, 0xFF) < 0) + return false; + st->status |= HAS_BOM_f; + return true; + case ENC_ISO_UTF32_LE: + if (st->stream_putc(sno, 0xFF) < 0) + return false; + if (st->stream_putc(sno, 0xFE) < 0) + return false; + if (st->stream_putc(sno, 0x00) < 0) + return false; + if (st->stream_putc(sno, 0x00) < 0) + return false; + st->status |= HAS_BOM_f; + return true; + default: + return true; + } } static void check_bom(int sno, StreamDesc *st) { - int ch1, ch2, ch3, ch4; + int ch1, ch2, ch3, ch4; - ch1 = fgetc(st->file); - switch (ch1) { - case 0x00: { - ch2 = fgetc(st->file); - if (ch2 != 0x00) { - ungetc(ch1, st->file); - ungetc(ch2, st->file); - return; - } else { - ch3 = fgetc(st->file); - if (ch3 == EOFCHAR || ch3 != 0xFE) { - ungetc(ch1, st->file); - ungetc(ch2, st->file); - ungetc(ch3, st->file); - return; - } else { - ch4 = fgetc(st->file); - if (ch4 == EOFCHAR || ch3 != 0xFF) { - ungetc(ch1, st->file); - ungetc(ch2, st->file); - ungetc(ch3, st->file); - ungetc(ch4, st->file); - return; - } else { - st->status |= HAS_BOM_f; - st->encoding = ENC_ISO_UTF32_BE; - return; + ch1 = fgetc(st->file); + switch (ch1) { + case 0x00: { + ch2 = fgetc(st->file); + if (ch2 != 0x00) { + ungetc(ch1, st->file); + ungetc(ch2, st->file); + return; + } else { + ch3 = fgetc(st->file); + if (ch3 == EOFCHAR || ch3 != 0xFE) { + ungetc(ch1, st->file); + ungetc(ch2, st->file); + ungetc(ch3, st->file); + return; + } else { + ch4 = fgetc(st->file); + if (ch4 == EOFCHAR || ch3 != 0xFF) { + ungetc(ch1, st->file); + ungetc(ch2, st->file); + ungetc(ch3, st->file); + ungetc(ch4, st->file); + return; + } else { + st->status |= HAS_BOM_f; + st->encoding = ENC_ISO_UTF32_BE; + return; + } + } + } } - } - } - } - case 0xFE: { - ch2 = fgetc(st->file); - if (ch2 != 0xFF) { - ungetc(ch1, st->file); - ungetc(ch2, st->file); - return; - } else { - st->status |= HAS_BOM_f; - st->encoding = ENC_UTF16_BE; - return; - } - } - case 0xFF: { - ch2 = fgetc(st->file); - if (ch2 != 0xFE) { - ungetc(ch1, st->file); - ungetc(ch2, st->file); - return; - } else { - ch3 = fgetc(st->file); - if (ch3 != 0x00) { - ungetc(ch3, st->file); - } else { - ch4 = fgetc(st->file); - if (ch4 == 0x00) { - st->status |= HAS_BOM_f; - st->encoding = ENC_ISO_UTF32_LE; - return; - } else { - ungetc(ch4, st->file); - ungetc(0x00, st->file); + case 0xFE: { + ch2 = fgetc(st->file); + if (ch2 != 0xFF) { + ungetc(ch1, st->file); + ungetc(ch2, st->file); + return; + } else { + st->status |= HAS_BOM_f; + st->encoding = ENC_UTF16_BE; + return; + } } - } + case 0xFF: { + ch2 = fgetc(st->file); + if (ch2 != 0xFE) { + ungetc(ch1, st->file); + ungetc(ch2, st->file); + return; + } else { + ch3 = fgetc(st->file); + if (ch3 != 0x00) { + ungetc(ch3, st->file); + } else { + ch4 = fgetc(st->file); + if (ch4 == 0x00) { + st->status |= HAS_BOM_f; + st->encoding = ENC_ISO_UTF32_LE; + return; + } else { + ungetc(ch4, st->file); + ungetc(0x00, st->file); + } + } + } + st->status |= HAS_BOM_f; + st->encoding = ENC_UTF16_LE; + return; + } + case 0xEF: + ch2 = fgetc(st->file); + if (ch2 != 0xBB) { + ungetc(ch1, st->file); + ungetc(ch2, st->file); + return; + } else { + ch3 = fgetc(st->file); + if (ch3 != 0xBF) { + ungetc(ch1, st->file); + ungetc(ch2, st->file); + ungetc(ch3, st->file); + return; + } else { + st->status |= HAS_BOM_f; + st->encoding = ENC_ISO_UTF8; + return; + } + } + default: + ungetc(ch1, st->file); } - st->status |= HAS_BOM_f; - st->encoding = ENC_UTF16_LE; - return; - } - case 0xEF: - ch2 = fgetc(st->file); - if (ch2 != 0xBB) { - ungetc(ch1, st->file); - ungetc(ch2, st->file); - return; - } else { - ch3 = fgetc(st->file); - if (ch3 != 0xBF) { - ungetc(ch1, st->file); - ungetc(ch2, st->file); - ungetc(ch3, st->file); - return; - } else { - st->status |= HAS_BOM_f; - st->encoding = ENC_ISO_UTF8; - return; - } - } - default: - ungetc(ch1, st->file); - } } bool Yap_initStream(int sno, FILE *fd, const char *name, Term file_name, encoding_t encoding, stream_flags_t flags, Atom open_mode, void *vfs) { - StreamDesc *st = &GLOBAL_Stream[sno]; - st->status = flags; + StreamDesc *st = &GLOBAL_Stream[sno]; + st->status = flags; - st->vfs = vfs; - st->charcount = 0; - st->linecount = 1; - if (flags & Binary_Stream_f) { - st->encoding = ENC_OCTET; - } else { - st->encoding = encoding; - } + st->vfs = vfs; + st->charcount = 0; + st->linecount = 1; + if (flags & Binary_Stream_f) { + st->encoding = ENC_OCTET; + } else { + st->encoding = encoding; + } - if (name == NULL) { - char buf[YAP_FILENAME_MAX + 1]; - memset(buf, 0, YAP_FILENAME_MAX + 1); - name = Yap_guessFileName(fd, sno, buf, YAP_FILENAME_MAX); - if (name) - st->name = Yap_LookupAtom(name); - } - st->user_name = file_name; - st->file = fd; - st->linepos = 0; - Yap_DefaultStreamOps(st); - return true; + if (name == NULL) { + char buf[YAP_FILENAME_MAX + 1]; + memset(buf, 0, YAP_FILENAME_MAX + 1); + name = Yap_guessFileName(fd, sno, buf, YAP_FILENAME_MAX); + if (name) + st->name = Yap_LookupAtom(name); + } + st->user_name = file_name; + st->file = fd; + st->linepos = 0; + Yap_DefaultStreamOps(st); + return true; } static bool open_header(int sno, Atom open_mode) { - if (open_mode == AtomWrite) { - const char *ptr; - const char s[] = "#!"; - int ch; + if (open_mode == AtomWrite) { + const char *ptr; + const char s[] = "#!"; + int ch; - ptr = s; - while ((ch = *ptr++)) - GLOBAL_Stream[sno].stream_wputc(sno, ch); - const char *b = Yap_FindExecutable(); - ptr = b; - while ((ch = *ptr++)) - GLOBAL_Stream[sno].stream_wputc(sno, ch); - const char *l = " -L --\n\n YAP script\n#\n# .\n"; - ptr = l; - while ((ch = *ptr++)) - GLOBAL_Stream[sno].stream_wputc(sno, ch); + ptr = s; + while ((ch = *ptr++)) + GLOBAL_Stream[sno].stream_wputc(sno, ch); + const char *b = Yap_FindExecutable(); + ptr = b; + while ((ch = *ptr++)) + GLOBAL_Stream[sno].stream_wputc(sno, ch); + const char *l = " -L --\n\n YAP script\n#\n# .\n"; + ptr = l; + while ((ch = *ptr++)) + GLOBAL_Stream[sno].stream_wputc(sno, ch); - } else if (open_mode == AtomRead) { - // skip header - int ch; - while ((ch = Yap_peek(sno)) == '#') { - while ((ch = GLOBAL_Stream[sno].stream_wgetc(sno)) != 10 && ch != -1) - ; + } else if (open_mode == AtomRead) { + // skip header + int ch; + while ((ch = Yap_peek(sno)) == '#') { + while ((ch = GLOBAL_Stream[sno].stream_wgetc(sno)) != 10 && ch != -1); + } } - } - return true; + return true; } #define OPEN_DEFS() \ @@ -1147,7 +1161,9 @@ static bool open_header(int sno, Atom open_mode) { PAR("wait", booleanFlag, OPEN_WAIT), PAR(NULL, ok, OPEN_END) #define PAR(x, y, z) z -typedef enum open_enum_choices { OPEN_DEFS() } open_choices_t; +typedef enum open_enum_choices { + OPEN_DEFS() +} open_choices_t; #undef PAR @@ -1160,210 +1176,181 @@ static const param_t open_defs[] = {OPEN_DEFS()}; static Int do_open(Term file_name, Term t2, Term tlist USES_REGS) { /* '$open'(+File,+Mode,?Stream,-ReturnCode) */ - Atom open_mode; - int sno; - SMALLUNSGN s; - char io_mode[8]; - StreamDesc *st; - bool avoid_bom = false, needs_bom = false; - const char *fname; - char fbuf[FILENAME_MAX]; - stream_flags_t flags; - FILE *fd; - const char *s_encoding; - encoding_t encoding; - Term tenc; - // original file name - if (IsVarTerm(file_name)) { - Yap_Error(INSTANTIATION_ERROR, file_name, "open/3"); - return FALSE; - } - if (!IsAtomTerm(file_name)) { - if (IsStringTerm(file_name)) { - fname = (char *)StringOfTerm(file_name); + Atom open_mode; + int sno; + StreamDesc *st; + bool avoid_bom = false, needs_bom = false; + const char *fname; + char fbuf[FILENAME_MAX]; + stream_flags_t flags; + FILE *fd; + const char *s_encoding; + encoding_t encoding; + Term tenc; + char io_mode[8]; + // original file name + if (IsVarTerm(file_name)) { + Yap_Error(INSTANTIATION_ERROR, file_name, "open/3"); + return FALSE; + } + if (!IsAtomTerm(file_name)) { + if (IsStringTerm(file_name)) { + fname = (char *) StringOfTerm(file_name); + } else { + Yap_Error(DOMAIN_ERROR_SOURCE_SINK, file_name, "open/3"); + return FALSE; + } } else { - Yap_Error(DOMAIN_ERROR_SOURCE_SINK, file_name, "open/3"); - return FALSE; + fname = RepAtom(AtomOfTerm(file_name))->StrOfAE; } - } else { - fname = RepAtom(AtomOfTerm(file_name))->StrOfAE; - } - // open mode - if (IsVarTerm(t2)) { - Yap_Error(INSTANTIATION_ERROR, t2, "open/3"); - return FALSE; - } - if (!IsAtomTerm(t2)) { - if (IsStringTerm(t2)) { - open_mode = Yap_LookupAtom(StringOfTerm(t2)); + // open mode + if (IsVarTerm(t2)) { + Yap_Error(INSTANTIATION_ERROR, t2, "open/3"); + return FALSE; + } + if (!IsAtomTerm(t2)) { + if (IsStringTerm(t2)) { + open_mode = Yap_LookupAtom(StringOfTerm(t2)); + } else { + Yap_Error(TYPE_ERROR_ATOM, t2, "open/3"); + return (FALSE); + } } else { - Yap_Error(TYPE_ERROR_ATOM, t2, "open/3"); - return (FALSE); + open_mode = AtomOfTerm(t2); } - } else { - open_mode = AtomOfTerm(t2); - } - // read, write, append - if (open_mode == AtomRead) { - strncpy(io_mode, "rb", 8); - s = Input_Stream_f; - } else if (open_mode == AtomWrite) { - strncpy(io_mode, "w", 8); - s = Output_Stream_f; - } else if (open_mode == AtomAppend) { - strncpy(io_mode, "a", 8); - s = Append_Stream_f | Output_Stream_f; - } else { - Yap_Error(DOMAIN_ERROR_IO_MODE, t2, "open/3"); - return (FALSE); - } - /* get options */ - xarg *args = Yap_ArgListToVector(tlist, open_defs, OPEN_END); - if (args == NULL) { - if (LOCAL_Error_TYPE != YAP_NO_ERROR) { - if (LOCAL_Error_TYPE == DOMAIN_ERROR_PROLOG_FLAG) - LOCAL_Error_TYPE = DOMAIN_ERROR_OPEN_OPTION; - Yap_Error(LOCAL_Error_TYPE, tlist, "option handling in open/3"); + /* get options */ + xarg *args = Yap_ArgListToVector(tlist, open_defs, OPEN_END); + if (args == NULL) { + if (LOCAL_Error_TYPE != YAP_NO_ERROR) { + if (LOCAL_Error_TYPE == DOMAIN_ERROR_PROLOG_FLAG) + LOCAL_Error_TYPE = DOMAIN_ERROR_OPEN_OPTION; + Yap_Error(LOCAL_Error_TYPE, tlist, "option handling in open/3"); + } + return false; } - return false; - } - /* done */ - sno = GetFreeStreamD(); - if (sno < 0) { - free(args); - return PlIOError(RESOURCE_ERROR_MAX_STREAMS, TermNil, "open/3"); - } - st = &GLOBAL_Stream[sno]; - st->user_name = file_name; - flags = s; - // user requested encoding? - if (args[OPEN_ALIAS].used) { - Atom al = AtomOfTerm(args[OPEN_ALIAS].tvalue); - if (!Yap_AddAlias(al, sno)) { - free(args); - return false; + /* done */ + sno = GetFreeStreamD(); + if (sno < 0) { + free(args); + return PlIOError(RESOURCE_ERROR_MAX_STREAMS, TermNil, "open/3"); + } + st = &GLOBAL_Stream[sno]; + st->user_name = file_name; + flags = 0; + // user requested encoding? + if (args[OPEN_ALIAS].used) { + Atom al = AtomOfTerm(args[OPEN_ALIAS].tvalue); + if (!Yap_AddAlias(al, sno)) { + free(args); + return false; + } + } + if (args[OPEN_ENCODING].used) { + tenc = args[OPEN_ENCODING].tvalue; + s_encoding = RepAtom(AtomOfTerm(tenc))->StrOfAE; + } else { + s_encoding = "default"; + } + // default encoding, no bom yet + encoding = enc_id(s_encoding, ENC_OCTET); + // only set encoding after getting BOM + bool ok = (args[OPEN_EXPAND_FILENAME].used + ? args[OPEN_EXPAND_FILENAME].tvalue == TermTrue + : false) || + trueGlobalPrologFlag(OPEN_EXPANDS_FILENAME_FLAG); + // expand file name? + fname = Yap_AbsoluteFile(fname, fbuf, ok); + if (fname) { + st->name = Yap_LookupAtom(fname); + } else { + PlIOError(EXISTENCE_ERROR_SOURCE_SINK, ARG1, NULL); } - } - if (args[OPEN_ENCODING].used) { - tenc = args[OPEN_ENCODING].tvalue; - s_encoding = RepAtom(AtomOfTerm(tenc))->StrOfAE; - } else { - s_encoding = "default"; - } - // default encoding, no bom yet - encoding = enc_id(s_encoding, ENC_OCTET); - // only set encoding after getting BOM - bool ok = (args[OPEN_EXPAND_FILENAME].used - ? args[OPEN_EXPAND_FILENAME].tvalue == TermTrue - : false) || - trueGlobalPrologFlag(OPEN_EXPANDS_FILENAME_FLAG); - // expand file name? - fname = Yap_AbsoluteFile(fname, fbuf, ok); - if (fname) { - st->name = Yap_LookupAtom(fname); - } else { - PlIOError(EXISTENCE_ERROR_SOURCE_SINK, ARG1, NULL); - } - // Skip scripts that start with !#/.. or similar - bool script = - (args[OPEN_SCRIPT].used ? args[OPEN_SCRIPT].tvalue == TermTrue : false); - // binary type - if (args[OPEN_TYPE].used) { - Term t = args[OPEN_TYPE].tvalue; - bool bin = (t == TermBinary); - if (bin) { + // Skip scripts that start with !#/.. or similar + bool script = + (args[OPEN_SCRIPT].used ? args[OPEN_SCRIPT].tvalue == TermTrue : false); + // binary type + if (args[OPEN_TYPE].used) { + Term t = args[OPEN_TYPE].tvalue; + bool bin = (t == TermBinary); + if (bin) { #ifdef _WIN32 - strncat(io_mode, "b", 8); + strncat(io_mode, "b", 8); #endif - flags |= Binary_Stream_f; - encoding = ENC_OCTET; - avoid_bom = true; - needs_bom = false; - } else if (t == TermText) { + flags |= Binary_Stream_f; + encoding = ENC_OCTET; + avoid_bom = true; + needs_bom = false; + } else if (t == TermText) { #ifdef _WIN32 - strncat(io_mode, "t", 8); + strncat(io_mode, "t", 8); #endif - /* note that this matters for UNICODE style conversions */ + /* note that this matters for UNICODE style conversions */ + } else { + Yap_Error(DOMAIN_ERROR_STREAM, tlist, + "type is ~a, must be one of binary or text", t); + } + } + // BOM mess + if (encoding == ENC_UTF16_BE || encoding == ENC_UTF16_LE || + encoding == ENC_UCS2_BE || encoding == ENC_UCS2_LE || + encoding == ENC_ISO_UTF32_BE || encoding == ENC_ISO_UTF32_LE) { + needs_bom = true; + } + if (args[OPEN_BOM].used) { + if (args[OPEN_BOM].tvalue == TermTrue) { + avoid_bom = false; + needs_bom = true; + } else if (args[OPEN_BOM].tvalue == TermFalse) { + avoid_bom = true; + needs_bom = false; + } + } + if (st - GLOBAL_Stream < 3) { + flags |= RepError_Prolog_f; + } + if (open_mode == AtomRead) { + strncpy(io_mode, "rb", 8); + } else if (open_mode == AtomWrite) { + strncpy(io_mode, "w", 8); + } else if (open_mode == AtomAppend) { + strncpy(io_mode, "a", 8); } else { - Yap_Error(DOMAIN_ERROR_STREAM, tlist, - "type is ~a, must be one of binary or text", t); + Yap_Error(DOMAIN_ERROR_IO_MODE, MkAtomTerm(open_mode), "open/3"); + return -2; } - } - // BOM mess - if (encoding == ENC_UTF16_BE || encoding == ENC_UTF16_LE || - encoding == ENC_UCS2_BE || encoding == ENC_UCS2_LE || - encoding == ENC_ISO_UTF32_BE || encoding == ENC_ISO_UTF32_LE) { - needs_bom = true; - } - if (args[OPEN_BOM].used) { - if (args[OPEN_BOM].tvalue == TermTrue) { - avoid_bom = false; - needs_bom = true; - } else if (args[OPEN_BOM].tvalue == TermFalse) { - avoid_bom = true; - needs_bom = false; + if (Yap_OpenStream(RepAtom(AtomOfTerm(file_name))->StrOfAE, io_mode) < 0) { +return false; } - } - if (st - GLOBAL_Stream < 3) { - flags |= RepError_Prolog_f; - } - struct vfs *vfsp = NULL; - if ((vfsp = vfs_owner(fname)) != NULL) { - st->u.private_data = vfsp->open(sno, fname, io_mode); - fd = NULL; - if (st->u.private_data == NULL) - return (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, file_name, "%s", fname)); - st->vfs = vfsp; - } else if ((fd = fopen(fname, io_mode)) == NULL || - (!(flags & Binary_Stream_f) && binary_file(fname))) { - strncpy(LOCAL_FileNameBuf, fname, MAXPATHLEN); - if (fname != fbuf) - freeBuffer((void *)fname); - fname = LOCAL_FileNameBuf; - UNLOCK(st->streamlock); - free(args); - if (errno == ENOENT && !strchr(io_mode, 'r')) { - return (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, file_name, "%s: %s", fname, - strerror(errno))); - } else { - return (PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, file_name, "%s: %s", - fname, strerror(errno))); - } - } #if MAC - if (open_mode == AtomWrite) { - Yap_SetTextFile(RepAtom(AtomOfTerm(file_name))->StrOfAE); - } + if (open_mode == AtomWrite) { + Yap_SetTextFile(RepAtom(AtomOfTerm(file_name))->StrOfAE); + } #endif - // __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "open %s", fname); - flags &= ~(Free_Stream_f); - if (!Yap_initStream(sno, fd, fname, file_name, encoding, flags, open_mode, - vfsp)) - return false; - if (open_mode == AtomWrite) { - if (needs_bom && !write_bom(sno, st)) - return false; - } else if (open_mode == AtomRead && !avoid_bom) { - check_bom(sno, st); // can change encoding - } - // follow declaration unless there is v - if (st->status & HAS_BOM_f) - st->encoding = enc_id(s_encoding, st->encoding); - else - st->encoding = encoding; - Yap_DefaultStreamOps(st); - if (script) - open_header(sno, open_mode); - if (fname != fbuf) - freeBuffer(fname); + // __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "open %s", fname); + flags &= ~(Free_Stream_f); + Yap_DefaultStreamOps(st); + if (needs_bom && !write_bom(sno, st)) { + return false; + } else if (open_mode == AtomRead && !avoid_bom) { + check_bom(sno, st); // can change encoding + } + // follow declaration unless there is v + if (st->status & HAS_BOM_f) + st->encoding = enc_id(s_encoding, st->encoding); + else + st->encoding = encoding; + if (script) + open_header(sno, open_mode); + if (fname != fbuf) + freeBuffer(fname); - free(args); - UNLOCK(st->streamlock); - { - Term t = Yap_MkStream(sno); - return (Yap_unify(ARG3, t)); - } + free(args); + UNLOCK(st->streamlock); + { + Term t = Yap_MkStream(sno); + return (Yap_unify(ARG3, t)); + } } /** @pred open(+ _F_,+ _M_,- _S_) is iso @@ -1387,7 +1374,7 @@ writable. */ static Int open3(USES_REGS1) { /* '$open'(+File,+Mode,?Stream,-ReturnCode) */ - return do_open(Deref(ARG1), Deref(ARG2), TermNil PASS_REGS); + return do_open(Deref(ARG1), Deref(ARG2), TermNil PASS_REGS); } /** @pred open(+ _F_,+ _M_,- _S_,+ _Opts_) is iso @@ -1469,144 +1456,155 @@ open_expands_filename. */ static Int open4(USES_REGS1) { /* '$open'(+File,+Mode,?Stream,-ReturnCode) */ - return do_open(Deref(ARG1), Deref(ARG2), Deref(ARG4) PASS_REGS); + return do_open(Deref(ARG1), Deref(ARG2), Deref(ARG4) PASS_REGS); } static Int p_file_expansion(USES_REGS1) { /* '$file_expansion'(+File,-Name) */ - Term file_name = Deref(ARG1); + Term file_name = Deref(ARG1); - /* we know file_name is bound */ - if (IsVarTerm(file_name)) { - PlIOError(INSTANTIATION_ERROR, file_name, "absolute_file_name/3"); - return (FALSE); - } - if (!Yap_findFile(RepAtom(AtomOfTerm(file_name))->StrOfAE, NULL, NULL, - LOCAL_FileNameBuf, true, YAP_ANY_FILE, true, false)) - return (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, file_name, - "absolute_file_name/3")); - return (Yap_unify(ARG2, MkAtomTerm(Yap_LookupAtom(LOCAL_FileNameBuf)))); + /* we know file_name is bound */ + if (IsVarTerm(file_name)) { + PlIOError(INSTANTIATION_ERROR, file_name, "absolute_file_name/3"); + return (FALSE); + } + if (!Yap_findFile(RepAtom(AtomOfTerm(file_name))->StrOfAE, NULL, NULL, + LOCAL_FileNameBuf, true, YAP_ANY_FILE, true, false)) + return (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, file_name, + "absolute_file_name/3")); + return (Yap_unify(ARG2, MkAtomTerm(Yap_LookupAtom(LOCAL_FileNameBuf)))); } static Int p_open_null_stream(USES_REGS1) { - Term t; - StreamDesc *st; - int sno = GetFreeStreamD(); - if (sno < 0) - return (PlIOError(SYSTEM_ERROR_INTERNAL, TermNil, - "new stream not available for open_null_stream/1")); - st = &GLOBAL_Stream[sno]; - st->status = Append_Stream_f | Output_Stream_f | Null_Stream_f; + Term t; + StreamDesc *st; + int sno = GetFreeStreamD(); + if (sno < 0) + return (PlIOError(SYSTEM_ERROR_INTERNAL, TermNil, + "new stream not available for open_null_stream/1")); + st = &GLOBAL_Stream[sno]; + st->status = Append_Stream_f | Output_Stream_f | Null_Stream_f; #if _WIN32 - st->file = fopen("NUL", "w"); + st->file = fopen("NUL", "w"); #else - st->file = fopen("/dev/null", "w"); + st->file = fopen("/dev/null", "w"); #endif - if (st->file == NULL) { - Yap_Error(SYSTEM_ERROR_INTERNAL, TermNil, - "Could not open NULL stream (/dev/null,NUL)"); - return false; - } - st->linepos = 0; - st->charcount = 0; - st->linecount = 1; - st->stream_putc = NullPutc; - st->stream_wputc = put_wchar; - st->stream_getc = PlGetc; - st->stream_wgetc = get_wchar; - st->stream_wgetc_for_read = get_wchar; - st->user_name = MkAtomTerm(st->name = AtomDevNull); - UNLOCK(st->streamlock); - t = Yap_MkStream(sno); - return (Yap_unify(ARG1, t)); + if (st->file == NULL) { + Yap_Error(SYSTEM_ERROR_INTERNAL, TermNil, + "Could not open NULL stream (/dev/null,NUL)"); + return false; + } + st->linepos = 0; + st->charcount = 0; + st->linecount = 1; + st->stream_putc = NullPutc; + st->stream_wputc = put_wchar; + st->stream_getc = PlGetc; + st->stream_wgetc = get_wchar; + st->stream_wgetc_for_read = get_wchar; + st->user_name = MkAtomTerm(st->name = AtomDevNull); + UNLOCK(st->streamlock); + t = Yap_MkStream(sno); + return (Yap_unify(ARG1, t)); } -int Yap_OpenStream(const char *fname, const char * io_mode) { - CACHE_REGS - int sno; - StreamDesc *st; - Atom at; - struct vfs *vfsp; - FILE *fd; - int flags; +int Yap_OpenStream(const char *fname, const char *io_mode) { + CACHE_REGS + int sno; + StreamDesc *st; + Atom at; + struct vfs *vfsp; + FILE *fd; + int flags; + SMALLUNSGN s; - sno = GetFreeStreamD(); - if (sno < 0) - return (PlIOError(RESOURCE_ERROR_MAX_STREAMS, MkAtomTerm(Yap_LookupAtom(fname)), - "new stream not available for opening")); - st = GLOBAL_Stream+sno; - vfsp = NULL; - if ((vfsp = vfs_owner(fname)) != NULL) { - st->u.private_data = vfsp->open(sno, fname, io_mode); - UNLOCK(st->streamlock); - fd = NULL; - if (st->u.private_data == NULL) - return (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), "%s", fname)); - st->vfs = vfsp; - } else if ((fd = fopen(fname, io_mode)) == NULL || - (!strchr(io_mode, 'b') && binary_file(fname))) { - UNLOCK(st->streamlock); - if (errno == ENOENT && !strchr(io_mode, 'r')) { - return PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), "%s: %s", fname, - strerror(errno)); - } else { - return PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), "%s: %s", - fname, strerror(errno)); + sno = GetFreeStreamD(); + if (sno < 0) { + PlIOError(RESOURCE_ERROR_MAX_STREAMS, MkAtomTerm(Yap_LookupAtom(fname)), + "new stream not available for opening"); + return -1; } - } - if (strchr(io_mode, 'r')) { - if (strchr(io_mode, 'a')) { - at = AtomAppend; - flags = Append_Stream_f | Output_Stream_f; - } else { - at = AtomWrite; - flags = Output_Stream_f; + st = GLOBAL_Stream + sno; + // read, write, append + st->file = NULL; + if ((vfsp = vfs_owner(fname)) != NULL ) { + if (!vfsp->open(vfsp, sno, fname, io_mode)) { + UNLOCK(st->streamlock); + PlIOError(EXISTENCE_ERROR_SOURCE_SINK, + MkAtomTerm(Yap_LookupAtom(fname)), "%s", fname); + return -1; + } + } else if ((fd = fopen(fname, io_mode)) == NULL || + (!strchr(io_mode, 'b') && binary_file(fname))) { + UNLOCK(st->streamlock); + if (errno == ENOENT && !strchr(io_mode, 'r')) { + PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), "%s: %s", + fname, + strerror(errno)); + } else { + PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), + "%s: %s", + fname, strerror(errno)); + } + return -1; } - } else { - at = AtomRead; - flags = Input_Stream_f; - } - Yap_initStream(sno, fd, fname, fname, LOCAL_encoding, flags, at, NULL); - return sno; + flags = st->status; + if (strchr(io_mode, 'w')) { + if (strchr(io_mode, 'a')) { + at = AtomAppend; + flags |= Append_Stream_f | Output_Stream_f; + } else { + at = AtomWrite; + flags |= Output_Stream_f; + } + } else { + at = AtomRead; + flags |= Input_Stream_f; + } + Atom name = Yap_LookupAtom(fname); + Yap_initStream(sno, st->file, name, MkAtomTerm( name ), LOCAL_encoding, st->status, at, NULL); + __android_log_print(ANDROID_LOG_INFO, "YAPDroid", + "exists %s <%d>", fname, sno); + return sno + ; } int Yap_FileStream(FILE *fd, char *name, Term file_name, int flags) { - CACHE_REGS - int sno; - Atom at; + CACHE_REGS + int sno; + Atom at; - sno = GetFreeStreamD(); - if (sno < 0) - return (PlIOError(RESOURCE_ERROR_MAX_STREAMS, file_name, - "new stream not available for opening")); - if (flags & Output_Stream_f) { - if (flags & Append_Stream_f) - at = AtomAppend; - else - at = AtomWrite; - } else - at = AtomRead; - Yap_initStream(sno, fd, name, file_name, LOCAL_encoding, flags, at, NULL); - return sno; + sno = GetFreeStreamD(); + if (sno < 0) + return (PlIOError(RESOURCE_ERROR_MAX_STREAMS, file_name, + "new stream not available for opening")); + if (flags & Output_Stream_f) { + if (flags & Append_Stream_f) + at = AtomAppend; + else + at = AtomWrite; + } else + at = AtomRead; + Yap_initStream(sno, fd, name, file_name, LOCAL_encoding, flags, at, NULL); + return sno; } -int FileStream(FILE* fd, char *name, Term file_name, int flags ) -{ - int sno; - Atom at; +int FileStream(FILE *fd, char *name, Term file_name, int flags) { + int sno; + Atom at; - sno = GetFreeStreamD(); - if (sno < 0) - return (PlIOError(RESOURCE_ERROR_MAX_STREAMS, name, - "new stream not available for opening")); - if (flags & Output_Stream_f) { - if (flags & Append_Stream_f) - at = AtomAppend; - else - at = AtomWrite; - } else - at = AtomRead; - Yap_initStream(sno, fd, name, file_name, LOCAL_encoding, flags, at, NULL); - return sno; + sno = GetFreeStreamD(); + if (sno < 0) + return (PlIOError(RESOURCE_ERROR_MAX_STREAMS, MkAtomTerm(Yap_LookupAtom(name)), + "new stream not available for opening")); + if (flags & Output_Stream_f) { + if (flags & Append_Stream_f) + at = AtomAppend; + else + at = AtomWrite; + } else + at = AtomRead; + Yap_initStream(sno, fd, name, file_name, LOCAL_encoding, flags, at, NULL); + return sno; } #define CheckStream(arg, kind, msg) \ @@ -1614,117 +1612,117 @@ int FileStream(FILE* fd, char *name, Term file_name, int flags ) static int CheckStream__(const char *file, const char *f, int line, Term arg, int kind, const char *msg) { - int sno = -1; - arg = Deref(arg); - if (IsVarTerm(arg)) { - Yap_Error(INSTANTIATION_ERROR, arg, msg); - return -1; - } else if (IsAtomTerm(arg)) { - Atom sname = AtomOfTerm(arg); + int sno = -1; + arg = Deref(arg); + if (IsVarTerm(arg)) { + Yap_Error(INSTANTIATION_ERROR, arg, msg); + return -1; + } else if (IsAtomTerm(arg)) { + Atom sname = AtomOfTerm(arg); - if (sname == AtomUser) { - if (kind & Input_Stream_f) { - if (kind & (Output_Stream_f | Append_Stream_f)) { - PlIOError__(file, f, line, PERMISSION_ERROR_OUTPUT_STREAM, arg, - "ambiguous use of 'user' as a stream"); - return (-1); + if (sname == AtomUser) { + if (kind & Input_Stream_f) { + if (kind & (Output_Stream_f | Append_Stream_f)) { + PlIOError__(file, f, line, PERMISSION_ERROR_OUTPUT_STREAM, arg, + "ambiguous use of 'user' as a stream"); + return (-1); + } + sname = AtomUserIn; + } else { + sname = AtomUserOut; + } + } + if ((sno = Yap_CheckAlias(sname)) < 0) { + UNLOCK(GLOBAL_Stream[sno].streamlock); + PlIOError__(file, f, line, EXISTENCE_ERROR_STREAM, arg, msg); + return -1; + } else { + LOCK(GLOBAL_Stream[sno].streamlock); + } + } else if (IsApplTerm(arg) && FunctorOfTerm(arg) == FunctorStream) { + arg = ArgOfTerm(1, arg); + if (!IsVarTerm(arg) && IsIntegerTerm(arg)) { + sno = IntegerOfTerm(arg); } - sname = AtomUserIn; - } else { - sname = AtomUserOut; - } } - if ((sno = Yap_CheckAlias(sname)) < 0) { - UNLOCK(GLOBAL_Stream[sno].streamlock); - PlIOError__(file, f, line, EXISTENCE_ERROR_STREAM, arg, msg); - return -1; - } else { - LOCK(GLOBAL_Stream[sno].streamlock); + if (sno < 0) { + Yap_Error(DOMAIN_ERROR_STREAM_OR_ALIAS, arg, msg); + return -1; } - } else if (IsApplTerm(arg) && FunctorOfTerm(arg) == FunctorStream) { - arg = ArgOfTerm(1, arg); - if (!IsVarTerm(arg) && IsIntegerTerm(arg)) { - sno = IntegerOfTerm(arg); + if (GLOBAL_Stream[sno].status & Free_Stream_f) { + PlIOError__(file, f, line, EXISTENCE_ERROR_STREAM, arg, msg); + return -1; } - } - if (sno < 0) { - Yap_Error(DOMAIN_ERROR_STREAM_OR_ALIAS, arg, msg); - return -1; - } - if (GLOBAL_Stream[sno].status & Free_Stream_f) { - PlIOError__(file, f, line, EXISTENCE_ERROR_STREAM, arg, msg); - return -1; - } - LOCK(GLOBAL_Stream[sno].streamlock); - if ((GLOBAL_Stream[sno].status & Input_Stream_f) && - !(kind & Input_Stream_f)) { - UNLOCK(GLOBAL_Stream[sno].streamlock); - PlIOError__(file, f, line, PERMISSION_ERROR_OUTPUT_STREAM, arg, msg); - return -1; - } - if ((GLOBAL_Stream[sno].status & (Append_Stream_f | Output_Stream_f)) && - !(kind & Output_Stream_f)) { - UNLOCK(GLOBAL_Stream[sno].streamlock); - PlIOError__(file, f, line, PERMISSION_ERROR_INPUT_STREAM, arg, msg); - return -1; - } - return sno; + LOCK(GLOBAL_Stream[sno].streamlock); + if ((GLOBAL_Stream[sno].status & Input_Stream_f) && + !(kind & Input_Stream_f)) { + UNLOCK(GLOBAL_Stream[sno].streamlock); + PlIOError__(file, f, line, PERMISSION_ERROR_OUTPUT_STREAM, arg, msg); + return -1; + } + if ((GLOBAL_Stream[sno].status & (Append_Stream_f | Output_Stream_f)) && + !(kind & Output_Stream_f)) { + UNLOCK(GLOBAL_Stream[sno].streamlock); + PlIOError__(file, f, line, PERMISSION_ERROR_INPUT_STREAM, arg, msg); + return -1; + } + return sno; } int Yap_CheckStream__(const char *file, const char *f, int line, Term arg, int kind, const char *msg) { - return CheckStream__(file, f, line, arg, kind, msg); + return CheckStream__(file, f, line, arg, kind, msg); } int Yap_CheckTextStream__(const char *file, const char *f, int line, Term arg, int kind, const char *msg) { - int sno; - if ((sno = CheckStream__(file, f, line, arg, kind, msg)) < 0) - return -1; - if ((GLOBAL_Stream[sno].status & Binary_Stream_f)) { - UNLOCK(GLOBAL_Stream[sno].streamlock); - if (kind == Input_Stream_f) - PlIOError__(file, f, line, PERMISSION_ERROR_INPUT_BINARY_STREAM, arg, - msg); - else - PlIOError__(file, f, line, PERMISSION_ERROR_OUTPUT_BINARY_STREAM, arg, - msg); - return -1; - } - return sno; + int sno; + if ((sno = CheckStream__(file, f, line, arg, kind, msg)) < 0) + return -1; + if ((GLOBAL_Stream[sno].status & Binary_Stream_f)) { + UNLOCK(GLOBAL_Stream[sno].streamlock); + if (kind == Input_Stream_f) + PlIOError__(file, f, line, PERMISSION_ERROR_INPUT_BINARY_STREAM, arg, + msg); + else + PlIOError__(file, f, line, PERMISSION_ERROR_OUTPUT_BINARY_STREAM, arg, + msg); + return -1; + } + return sno; } int Yap_CheckBinaryStream__(const char *file, const char *f, int line, Term arg, int kind, const char *msg) { - int sno; - if ((sno = CheckStream__(file, f, line, arg, kind, msg)) < 0) - return -1; - if (!(GLOBAL_Stream[sno].status & Binary_Stream_f)) { - UNLOCK(GLOBAL_Stream[sno].streamlock); - if (kind == Input_Stream_f) - PlIOError__(file, f, line, PERMISSION_ERROR_INPUT_TEXT_STREAM, arg, msg); - else - PlIOError__(file, f, line, PERMISSION_ERROR_OUTPUT_TEXT_STREAM, arg, msg); - return -1; - } - return sno; + int sno; + if ((sno = CheckStream__(file, f, line, arg, kind, msg)) < 0) + return -1; + if (!(GLOBAL_Stream[sno].status & Binary_Stream_f)) { + UNLOCK(GLOBAL_Stream[sno].streamlock); + if (kind == Input_Stream_f) + PlIOError__(file, f, line, PERMISSION_ERROR_INPUT_TEXT_STREAM, arg, msg); + else + PlIOError__(file, f, line, PERMISSION_ERROR_OUTPUT_TEXT_STREAM, arg, msg); + return -1; + } + return sno; } /* used from C-interface */ int Yap_GetFreeStreamDForReading(void) { - int sno = GetFreeStreamD(); - StreamDesc *s; + int sno = GetFreeStreamD(); + StreamDesc *s; - if (sno < 0) + if (sno < 0) + return sno; + s = GLOBAL_Stream + sno; + s->status |= User_Stream_f | Input_Stream_f; + s->charcount = 0; + s->linecount = 1; + s->linepos = 0; + Yap_DefaultStreamOps(s); + UNLOCK(s->streamlock); return sno; - s = GLOBAL_Stream + sno; - s->status |= User_Stream_f | Input_Stream_f; - s->charcount = 0; - s->linecount = 1; - s->linepos = 0; - Yap_DefaultStreamOps(s); - UNLOCK(s->streamlock); - return sno; } /** @@ -1735,11 +1733,11 @@ int Yap_GetFreeStreamDForReading(void) { */ static Int always_prompt_user(USES_REGS1) { - StreamDesc *s = GLOBAL_Stream + StdInStream; + StreamDesc *s = GLOBAL_Stream + StdInStream; - s->status |= Promptable_Stream_f; - Yap_DefaultStreamOps(s); - return (TRUE); + s->status |= Promptable_Stream_f; + Yap_DefaultStreamOps(s); + return (TRUE); } static Int close1 /** @pred close(+ _S_) is iso @@ -1752,18 +1750,18 @@ static Int close1 /** @pred close(+ _S_) is iso */ - (USES_REGS1) { /* '$close'(+GLOBAL_Stream) */ - Int sno = CheckStream( - ARG1, (Input_Stream_f | Output_Stream_f | Socket_Stream_f), "close/2"); - if (sno < 0) - return (FALSE); - if (sno <= StdErrStream) { + (USES_REGS1) { /* '$close'(+GLOBAL_Stream) */ + Int sno = CheckStream( + ARG1, (Input_Stream_f | Output_Stream_f | Socket_Stream_f), "close/2"); + if (sno < 0) + return (FALSE); + if (sno <= StdErrStream) { + UNLOCK(GLOBAL_Stream[sno].streamlock); + return TRUE; + } + Yap_CloseStream(sno); UNLOCK(GLOBAL_Stream[sno].streamlock); - return TRUE; - } - Yap_CloseStream(sno); - UNLOCK(GLOBAL_Stream[sno].streamlock); - return (TRUE); + return (TRUE); } #define CLOSE_DEFS() \ @@ -1771,7 +1769,9 @@ static Int close1 /** @pred close(+ _S_) is iso #define PAR(x, y, z) z -typedef enum close_enum_choices { CLOSE_DEFS() } close_choices_t; +typedef enum close_enum_choices { + CLOSE_DEFS() +} close_choices_t; #undef PAR @@ -1791,45 +1791,46 @@ YAP currently ignores these options. */ static Int close2(USES_REGS1) { /* '$close'(+GLOBAL_Stream) */ - Int sno = CheckStream( - ARG1, (Input_Stream_f | Output_Stream_f | Socket_Stream_f), "close/2"); - Term tlist; - if (sno < 0) - return (FALSE); - if (sno <= StdErrStream) { - UNLOCK(GLOBAL_Stream[sno].streamlock); - return TRUE; - } - xarg *args = - Yap_ArgListToVector((tlist = Deref(ARG2)), close_defs, CLOSE_END); - if (args == NULL) { - if (LOCAL_Error_TYPE != YAP_NO_ERROR) { - if (LOCAL_Error_TYPE == DOMAIN_ERROR_PROLOG_FLAG) - LOCAL_Error_TYPE = DOMAIN_ERROR_CLOSE_OPTION; - Yap_Error(LOCAL_Error_TYPE, tlist, NULL); + Int sno = CheckStream( + ARG1, (Input_Stream_f | Output_Stream_f | Socket_Stream_f), "close/2"); + Term tlist; + if (sno < 0) + return (FALSE); + if (sno <= StdErrStream) { + UNLOCK(GLOBAL_Stream[sno].streamlock); + return TRUE; } - return false; - return FALSE; - } - // if (args[CLOSE_FORCE].used) { - // } - Yap_CloseStream(sno); - UNLOCK(GLOBAL_Stream[sno].streamlock); - return (TRUE); + xarg *args = + Yap_ArgListToVector((tlist = Deref(ARG2)), close_defs, CLOSE_END); + if (args == NULL) { + if (LOCAL_Error_TYPE != YAP_NO_ERROR) { + if (LOCAL_Error_TYPE == DOMAIN_ERROR_PROLOG_FLAG) + LOCAL_Error_TYPE = DOMAIN_ERROR_CLOSE_OPTION; + Yap_Error(LOCAL_Error_TYPE, tlist, NULL); + } + return false; + return FALSE; + } + // if (args[CLOSE_FORCE].used) { + // } + Yap_CloseStream(sno); + UNLOCK(GLOBAL_Stream[sno].streamlock); + return (TRUE); } Term read_line(int sno) { - CACHE_REGS - Term tail; - Int ch; + CACHE_REGS + Term tail; + Int ch; - if ((ch = GLOBAL_Stream[sno].stream_wgetc(sno)) == 10) { - return (TermNil); - } - tail = read_line(sno); - return (MkPairTerm(MkIntTerm(ch), tail)); + if ((ch = GLOBAL_Stream[sno].stream_wgetc(sno)) == 10) { + return (TermNil); + } + tail = read_line(sno); + return (MkPairTerm(MkIntTerm(ch), tail)); } + #define ABSOLUTE_FILE_NAME_DEFS() \ PAR("access", isatom, ABSOLUTE_FILE_NAME_ACCESS) \ , PAR("expand", booleanFlag, ABSOLUTE_FILE_NAME_EXPAND), \ @@ -1846,7 +1847,7 @@ Term read_line(int sno) { #define PAR(x, y, z) z typedef enum ABSOLUTE_FILE_NAME_enum_ { - ABSOLUTE_FILE_NAME_DEFS() + ABSOLUTE_FILE_NAME_DEFS() } absolute_file_name_choices_t; #undef PAR @@ -1855,147 +1856,147 @@ typedef enum ABSOLUTE_FILE_NAME_enum_ { { x, y, z } static const param_t absolute_file_name_search_defs[] = { - ABSOLUTE_FILE_NAME_DEFS()}; + ABSOLUTE_FILE_NAME_DEFS()}; #undef PAR static Int abs_file_parameters(USES_REGS1) { - Term t[ABSOLUTE_FILE_NAME_END]; - Term tlist = Deref(ARG1), tf; - /* get options */ - xarg *args = Yap_ArgListToVector(tlist, absolute_file_name_search_defs, - ABSOLUTE_FILE_NAME_END); - if (args == NULL) { - if (LOCAL_Error_TYPE != YAP_NO_ERROR) { - if (LOCAL_Error_TYPE == DOMAIN_ERROR_PROLOG_FLAG) - LOCAL_Error_TYPE = DOMAIN_ERROR_ABSOLUTE_FILE_NAME_OPTION; - Yap_Error(LOCAL_Error_TYPE, tlist, NULL); + Term t[ABSOLUTE_FILE_NAME_END]; + Term tlist = Deref(ARG1), tf; + /* get options */ + xarg *args = Yap_ArgListToVector(tlist, absolute_file_name_search_defs, + ABSOLUTE_FILE_NAME_END); + if (args == NULL) { + if (LOCAL_Error_TYPE != YAP_NO_ERROR) { + if (LOCAL_Error_TYPE == DOMAIN_ERROR_PROLOG_FLAG) + LOCAL_Error_TYPE = DOMAIN_ERROR_ABSOLUTE_FILE_NAME_OPTION; + Yap_Error(LOCAL_Error_TYPE, tlist, NULL); + } + return false; } - return false; - } - /* done */ - if (args[ABSOLUTE_FILE_NAME_EXTENSIONS].used) { - t[ABSOLUTE_FILE_NAME_EXTENSIONS] = - args[ABSOLUTE_FILE_NAME_EXTENSIONS].tvalue; - } else { - t[ABSOLUTE_FILE_NAME_EXTENSIONS] = TermNil; - } - if (args[ABSOLUTE_FILE_NAME_RELATIVE_TO].used) { - t[ABSOLUTE_FILE_NAME_RELATIVE_TO] = - gethdir(args[ABSOLUTE_FILE_NAME_RELATIVE_TO].tvalue); - } else { - t[ABSOLUTE_FILE_NAME_RELATIVE_TO] = gethdir(TermDot); - } - if (args[ABSOLUTE_FILE_NAME_FILE_TYPE].used) - t[ABSOLUTE_FILE_NAME_FILE_TYPE] = args[ABSOLUTE_FILE_NAME_FILE_TYPE].tvalue; - else - t[ABSOLUTE_FILE_NAME_FILE_TYPE] = TermTxt; - if (args[ABSOLUTE_FILE_NAME_ACCESS].used) - t[ABSOLUTE_FILE_NAME_ACCESS] = args[ABSOLUTE_FILE_NAME_ACCESS].tvalue; - else - t[ABSOLUTE_FILE_NAME_ACCESS] = TermNone; - if (args[ABSOLUTE_FILE_NAME_FILE_ERRORS].used) - t[ABSOLUTE_FILE_NAME_FILE_ERRORS] = - args[ABSOLUTE_FILE_NAME_FILE_ERRORS].tvalue; - else - t[ABSOLUTE_FILE_NAME_FILE_ERRORS] = TermError; - if (args[ABSOLUTE_FILE_NAME_SOLUTIONS].used) - t[ABSOLUTE_FILE_NAME_SOLUTIONS] = args[ABSOLUTE_FILE_NAME_SOLUTIONS].tvalue; - else - t[ABSOLUTE_FILE_NAME_SOLUTIONS] = TermFirst; - if (args[ABSOLUTE_FILE_NAME_EXPAND].used) - t[ABSOLUTE_FILE_NAME_EXPAND] = args[ABSOLUTE_FILE_NAME_EXPAND].tvalue; - else - t[ABSOLUTE_FILE_NAME_EXPAND] = TermFalse; - if (args[ABSOLUTE_FILE_NAME_GLOB].used) { - t[ABSOLUTE_FILE_NAME_GLOB] = args[ABSOLUTE_FILE_NAME_GLOB].tvalue; - t[ABSOLUTE_FILE_NAME_EXPAND] = TermTrue; - } else - t[ABSOLUTE_FILE_NAME_GLOB] = TermEmptyAtom; - if (args[ABSOLUTE_FILE_NAME_VERBOSE_FILE_SEARCH].used) - t[ABSOLUTE_FILE_NAME_VERBOSE_FILE_SEARCH] = - args[ABSOLUTE_FILE_NAME_VERBOSE_FILE_SEARCH].tvalue; - else - t[ABSOLUTE_FILE_NAME_VERBOSE_FILE_SEARCH] = - (trueGlobalPrologFlag(VERBOSE_FILE_SEARCH_FLAG) ? TermTrue : TermFalse); - tf = Yap_MkApplTerm(Yap_MkFunctor(AtomOpt, ABSOLUTE_FILE_NAME_END), - ABSOLUTE_FILE_NAME_END, t); - return (Yap_unify(ARG2, tf)); + /* done */ + if (args[ABSOLUTE_FILE_NAME_EXTENSIONS].used) { + t[ABSOLUTE_FILE_NAME_EXTENSIONS] = + args[ABSOLUTE_FILE_NAME_EXTENSIONS].tvalue; + } else { + t[ABSOLUTE_FILE_NAME_EXTENSIONS] = TermNil; + } + if (args[ABSOLUTE_FILE_NAME_RELATIVE_TO].used) { + t[ABSOLUTE_FILE_NAME_RELATIVE_TO] = + gethdir(args[ABSOLUTE_FILE_NAME_RELATIVE_TO].tvalue); + } else { + t[ABSOLUTE_FILE_NAME_RELATIVE_TO] = gethdir(TermDot); + } + if (args[ABSOLUTE_FILE_NAME_FILE_TYPE].used) + t[ABSOLUTE_FILE_NAME_FILE_TYPE] = args[ABSOLUTE_FILE_NAME_FILE_TYPE].tvalue; + else + t[ABSOLUTE_FILE_NAME_FILE_TYPE] = TermTxt; + if (args[ABSOLUTE_FILE_NAME_ACCESS].used) + t[ABSOLUTE_FILE_NAME_ACCESS] = args[ABSOLUTE_FILE_NAME_ACCESS].tvalue; + else + t[ABSOLUTE_FILE_NAME_ACCESS] = TermNone; + if (args[ABSOLUTE_FILE_NAME_FILE_ERRORS].used) + t[ABSOLUTE_FILE_NAME_FILE_ERRORS] = + args[ABSOLUTE_FILE_NAME_FILE_ERRORS].tvalue; + else + t[ABSOLUTE_FILE_NAME_FILE_ERRORS] = TermError; + if (args[ABSOLUTE_FILE_NAME_SOLUTIONS].used) + t[ABSOLUTE_FILE_NAME_SOLUTIONS] = args[ABSOLUTE_FILE_NAME_SOLUTIONS].tvalue; + else + t[ABSOLUTE_FILE_NAME_SOLUTIONS] = TermFirst; + if (args[ABSOLUTE_FILE_NAME_EXPAND].used) + t[ABSOLUTE_FILE_NAME_EXPAND] = args[ABSOLUTE_FILE_NAME_EXPAND].tvalue; + else + t[ABSOLUTE_FILE_NAME_EXPAND] = TermFalse; + if (args[ABSOLUTE_FILE_NAME_GLOB].used) { + t[ABSOLUTE_FILE_NAME_GLOB] = args[ABSOLUTE_FILE_NAME_GLOB].tvalue; + t[ABSOLUTE_FILE_NAME_EXPAND] = TermTrue; + } else + t[ABSOLUTE_FILE_NAME_GLOB] = TermEmptyAtom; + if (args[ABSOLUTE_FILE_NAME_VERBOSE_FILE_SEARCH].used) + t[ABSOLUTE_FILE_NAME_VERBOSE_FILE_SEARCH] = + args[ABSOLUTE_FILE_NAME_VERBOSE_FILE_SEARCH].tvalue; + else + t[ABSOLUTE_FILE_NAME_VERBOSE_FILE_SEARCH] = + (trueGlobalPrologFlag(VERBOSE_FILE_SEARCH_FLAG) ? TermTrue : TermFalse); + tf = Yap_MkApplTerm(Yap_MkFunctor(AtomOpt, ABSOLUTE_FILE_NAME_END), + ABSOLUTE_FILE_NAME_END, t); + return (Yap_unify(ARG2, tf)); } static Int get_abs_file_parameter(USES_REGS1) { - Term t = Deref(ARG1), topts = Deref(ARG2); - /* get options */ - /* done */ - int i = Yap_ArgKey(AtomOfTerm(t), absolute_file_name_search_defs, - ABSOLUTE_FILE_NAME_END); - if (i >= 0) - return Yap_unify(ARG3, ArgOfTerm(i + 1, topts)); - Yap_Error(DOMAIN_ERROR_ABSOLUTE_FILE_NAME_OPTION, ARG1, NULL); - return false; + Term t = Deref(ARG1), topts = Deref(ARG2); + /* get options */ + /* done */ + int i = Yap_ArgKey(AtomOfTerm(t), absolute_file_name_search_defs, + ABSOLUTE_FILE_NAME_END); + if (i >= 0) + return Yap_unify(ARG3, ArgOfTerm(i + 1, topts)); + Yap_Error(DOMAIN_ERROR_ABSOLUTE_FILE_NAME_OPTION, ARG1, NULL); + return false; } void Yap_InitPlIO(struct yap_boot_params *argi) { - Int i; + Int i; if (argi->inp > 0) - Yap_stdin = fdopen(argi->inp - 1, "r"); - else if (argi->inp) - Yap_stdin = NULL; - else - Yap_stdin = stdin; - if (argi->out > 0) - Yap_stdout = fdopen(argi->out - 1, "a"); - else if (argi->out) - Yap_stdout = NULL; - else - Yap_stdout = stdout; - if (argi->err > 0) - Yap_stderr = fdopen(argi->err - 1, "a"); - else if (argi->out) - Yap_stdout = NULL; - else - Yap_stderr = stderr; - GLOBAL_Stream = - (StreamDesc *)Yap_AllocCodeSpace(sizeof(StreamDesc) * MaxStreams); - for (i = 0; i < MaxStreams; ++i) { - INIT_LOCK(GLOBAL_Stream[i].streamlock); - GLOBAL_Stream[i].status = Free_Stream_f; - } - InitStdStreams(); + Yap_stdin = fdopen(argi->inp - 1, "r"); + else if (argi->inp) + Yap_stdin = NULL; + else + Yap_stdin = stdin; + if (argi->out > 0) + Yap_stdout = fdopen(argi->out - 1, "a"); + else if (argi->out) + Yap_stdout = NULL; + else + Yap_stdout = stdout; + if (argi->err > 0) + Yap_stderr = fdopen(argi->err - 1, "a"); + else if (argi->out) + Yap_stdout = NULL; + else + Yap_stderr = stderr; + GLOBAL_Stream = + (StreamDesc *) Yap_AllocCodeSpace(sizeof(StreamDesc) * MaxStreams); + for (i = 0; i < MaxStreams; ++i) { + INIT_LOCK(GLOBAL_Stream[i].streamlock); + GLOBAL_Stream[i].status = Free_Stream_f; + } + InitStdStreams(); } void Yap_InitIOPreds(void) { - /* here the Input/Output predicates */ - Yap_InitCPred("always_prompt_user", 0, always_prompt_user, - SafePredFlag | SyncPredFlag); - Yap_InitCPred("close", 1, close1, SafePredFlag | SyncPredFlag); - Yap_InitCPred("close", 2, close2, SafePredFlag | SyncPredFlag); - Yap_InitCPred("open", 4, open4, SyncPredFlag); - Yap_InitCPred("open", 3, open3, SyncPredFlag); - Yap_InitCPred("abs_file_parameters", 2, abs_file_parameters, - SyncPredFlag | HiddenPredFlag); - Yap_InitCPred("get_abs_file_parameter", 3, get_abs_file_parameter, - SafePredFlag | SyncPredFlag | HiddenPredFlag); - Yap_InitCPred("$file_expansion", 2, p_file_expansion, - SafePredFlag | SyncPredFlag | HiddenPredFlag); - Yap_InitCPred("$open_null_stream", 1, p_open_null_stream, - SafePredFlag | SyncPredFlag | HiddenPredFlag); - Yap_InitIOStreams(); - Yap_InitCharsio(); - Yap_InitChtypes(); - Yap_InitConsole(); - Yap_InitReadUtil(); - Yap_InitMems(); - Yap_InitPipes(); - Yap_InitFiles(); - Yap_InitWriteTPreds(); - Yap_InitReadTPreds(); - Yap_InitFormat(); - Yap_InitRandomPreds(); + /* here the Input/Output predicates */ + Yap_InitCPred("always_prompt_user", 0, always_prompt_user, + SafePredFlag | SyncPredFlag); + Yap_InitCPred("close", 1, close1, SafePredFlag | SyncPredFlag); + Yap_InitCPred("close", 2, close2, SafePredFlag | SyncPredFlag); + Yap_InitCPred("open", 4, open4, SyncPredFlag); + Yap_InitCPred("open", 3, open3, SyncPredFlag); + Yap_InitCPred("abs_file_parameters", 2, abs_file_parameters, + SyncPredFlag | HiddenPredFlag); + Yap_InitCPred("get_abs_file_parameter", 3, get_abs_file_parameter, + SafePredFlag | SyncPredFlag | HiddenPredFlag); + Yap_InitCPred("$file_expansion", 2, p_file_expansion, + SafePredFlag | SyncPredFlag | HiddenPredFlag); + Yap_InitCPred("$open_null_stream", 1, p_open_null_stream, + SafePredFlag | SyncPredFlag | HiddenPredFlag); + Yap_InitIOStreams(); + Yap_InitCharsio(); + Yap_InitChtypes(); + Yap_InitConsole(); + Yap_InitReadUtil(); + Yap_InitMems(); + Yap_InitPipes(); + Yap_InitFiles(); + Yap_InitWriteTPreds(); + Yap_InitReadTPreds(); + Yap_InitFormat(); + Yap_InitRandomPreds(); #if USE_READLINE - Yap_InitReadlinePreds(); + Yap_InitReadlinePreds(); #endif - Yap_InitSockets(); - Yap_InitSignalPreds(); - Yap_InitSysPreds(); - Yap_InitTimePreds(); + Yap_InitSockets(); + Yap_InitSignalPreds(); + Yap_InitSysPreds(); + Yap_InitTimePreds(); } diff --git a/os/iopreds.h b/os/iopreds.h index 012fe39b7..736901836 100644 --- a/os/iopreds.h +++ b/os/iopreds.h @@ -80,7 +80,7 @@ Int Yap_CloseSocket(int, socket_info, socket_domain); #endif /* USE_SOCKET */ extern bool Yap_clearInput(int sno); -extern Term Yap_read_term(int inp_stream, Term opts, bool clauatse); +extern Term Yap_read_term(int inp_stream, Term opts, bool clause); extern Term Yap_Parse(UInt prio, encoding_t enc, Term cmod); extern void init_read_data(ReadData _PL_rd, struct stream_desc *s); @@ -216,7 +216,7 @@ INLINE_ONLY inline EXTERN void count_output_char(int ch, StreamDesc *s) { inline static Term StreamName(int i) { return (GLOBAL_Stream[i].user_name); } -inline static Atom StreamFullName(int i) { return (GLOBAL_Stream[i].name); } +inline static Atom StreamFullName(int i) { return (Atom)(GLOBAL_Stream[i].name); } inline static void console_count_output_char(int ch, StreamDesc *s) { CACHE_REGS diff --git a/os/readterm.c b/os/readterm.c index bda712c89..fb143e238 100644 --- a/os/readterm.c +++ b/os/readterm.c @@ -829,13 +829,13 @@ static parser_state_t initParser(Term opts, FEnv *fe, REnv *re, int inp_stream, return YAP_SCANNING; } -static parser_state_t scan(REnv *re, FEnv *fe, int inp_stream) { +static parser_state_t scan(REnv *re, FEnv *fe, int sno) { CACHE_REGS /* preserve value of H after scanning: otherwise we may lose strings and floats */ LOCAL_tokptr = LOCAL_toktide = - Yap_tokenizer(GLOBAL_Stream + inp_stream, false, &fe->tpos); + Yap_tokenizer(GLOBAL_Stream + sno, false, &fe->tpos); #if DEBUG if (GLOBAL_Option[2]) { TokEntry *t = LOCAL_tokptr; @@ -857,7 +857,7 @@ static parser_state_t scan(REnv *re, FEnv *fe, int inp_stream) { LOCAL_Error_TYPE = SYNTAX_ERROR; return YAP_PARSING_ERROR; } - return scanEOF(fe, inp_stream); + return scanEOF(fe, sno); } static parser_state_t scanError(REnv *re, FEnv *fe, int inp_stream) { @@ -956,7 +956,7 @@ static parser_state_t parse(REnv *re, FEnv *fe, int inp_stream) { * * */ -Term Yap_read_term(int inp_stream, Term opts, bool clause) { +Term Yap_read_term(int sno, Term opts, bool clause) { FEnv fe; REnv re; #if EMACS @@ -968,23 +968,23 @@ Term Yap_read_term(int inp_stream, Term opts, bool clause) { while (true) { switch (state) { case YAP_START_PARSING: - state = initParser(opts, &fe, &re, inp_stream, clause); + state = initParser(opts, &fe, &re, sno, clause); if (state == YAP_PARSING_FINISHED) { pop_text_stack(lvl); return 0; } break; case YAP_SCANNING: - state = scan(&re, &fe, inp_stream); + state = scan(&re, &fe, sno); break; case YAP_SCANNING_ERROR: - state = scanError(&re, &fe, inp_stream); + state = scanError(&re, &fe, sno); break; case YAP_PARSING: - state = parse(&re, &fe, inp_stream); + state = parse(&re, &fe, sno); break; case YAP_PARSING_ERROR: - state = parseError(&re, &fe, inp_stream); + state = parseError(&re, &fe, sno); break; case YAP_PARSING_FINISHED: { CACHE_REGS @@ -1021,17 +1021,17 @@ static Int static Int read_term( USES_REGS1) { /* '$read2'(+Flag,?Term,?Module,?Vars,-Pos,-Err,+Stream) */ - int inp_stream; + int sno; Term out; /* needs to change LOCAL_output_stream for write */ - inp_stream = Yap_CheckTextStream(ARG1, Input_Stream_f, "read/3"); - if (inp_stream == -1) { + sno = Yap_CheckTextStream(ARG1, Input_Stream_f, "read/3"); + if (sno == -1) { return (FALSE); } - out = Yap_read_term(inp_stream, add_output(ARG2, ARG3), false); - UNLOCK(GLOBAL_Stream[inp_stream].streamlock); + out = Yap_read_term(sno, add_output(ARG2, ARG3), false); + UNLOCK(GLOBAL_Stream[sno].streamlock); return out != 0L; } @@ -1060,7 +1060,7 @@ static const param_t read_clause_defs[] = {READ_CLAUSE_DEFS()}; #undef PAR static xarg *setClauseReadEnv(Term opts, FEnv *fe, struct renv *re, - int inp_stream) { + int sno) { CACHE_REGS xarg *args = Yap_ArgListToVector(opts, read_clause_defs, READ_CLAUSE_END); @@ -1082,7 +1082,7 @@ static xarg *setClauseReadEnv(Term opts, FEnv *fe, struct renv *re, fe->cmod = PROLOG_MODULE; } re->bq = getBackQuotesFlag(); - fe->enc = GLOBAL_Stream[inp_stream].encoding; + fe->enc = GLOBAL_Stream[sno].encoding; fe->sp = 0; fe->qq = 0; if (args[READ_CLAUSE_OUTPUT].used) { @@ -1118,12 +1118,12 @@ static xarg *setClauseReadEnv(Term opts, FEnv *fe, struct renv *re, fe->vp = 0; } fe->ce = Yap_CharacterEscapes(fe->cmod); - re->seekable = (GLOBAL_Stream[inp_stream].status & Seekable_Stream_f) != 0; + re->seekable = (GLOBAL_Stream[sno].status & Seekable_Stream_f) != 0; if (re->seekable) { #if HAVE_FGETPOS - fgetpos(GLOBAL_Stream[inp_stream].file, &re->rpos); + fgetpos(GLOBAL_Stream[sno].file, &re->rpos); #else - re->cpos = GLOBAL_Stream[inp_stream].charcount; + re->cpos = GLOBAL_Stream[sno].charcount; #endif } re->prio = LOCAL_default_priority; @@ -1166,15 +1166,15 @@ static Int read_clause2(USES_REGS1) { */ static Int read_clause( USES_REGS1) { /* '$read2'(+Flag,?Term,?Module,?Vars,-Pos,-Err,+Stream) */ - int inp_stream; + int sno; Term out; /* needs to change LOCAL_output_stream for write */ - inp_stream = Yap_CheckTextStream(ARG1, Input_Stream_f, "read/3"); - if (inp_stream < 0) + sno = Yap_CheckTextStream(ARG1, Input_Stream_f, "read/3"); + if (sno < 0) return false; - out = Yap_read_term(inp_stream, add_output(ARG2, ARG3), true); - UNLOCK(GLOBAL_Stream[inp_stream].streamlock); + out = Yap_read_term(sno, add_output(ARG2, ARG3), true); + UNLOCK(GLOBAL_Stream[sno].streamlock); return out != 0; } @@ -1191,20 +1191,20 @@ static Int read_clause( */ #if 0 static Int start_mega(USES_REGS1) { - int inp_stream; + int sno; Term out; Term t3 = Deref(ARG3); yhandle_t h = Yap_InitSlot(ARG2); TokENtry *tok; arity_t srity = 0; /* needs to change LOCAL_output_stream for write */ - inp_stream = Yap_CheckTextStream(ARG1, Input_Stream_f, "read_exo/3"); - if (inp_stream < 0) + sno = Yap_CheckTextStream(ARG1, Input_Stream_f, "read_exo/3"); + if (sno < 0) return false; /* preserve value of H after scanning: otherwise we may lose strings and floats */ LOCAL_tokptr = LOCAL_toktide = - x Yap_tokenizer(GLOBAL_Stream + inp_stream, false, &tpos); + x Yap_tokenizer(GLOBAL_Stream + sno, false, &tpos); if (tokptr->Tok == Name_tok && (next = tokptr->TokNext) != NULL && next->Tok == Ponctuation_tok && next->TokInfo == TermOpenBracket) { bool start = true; @@ -1253,16 +1253,16 @@ static Int source_location(USES_REGS1) { */ static Int read2( USES_REGS1) { /* '$read2'(+Flag,?Term,?Module,?Vars,-Pos,-Err,+Stream) */ - int inp_stream; + int sno; Int out; /* needs to change LOCAL_output_stream for write */ - inp_stream = Yap_CheckTextStream(ARG1, Input_Stream_f, "read/3"); - if (inp_stream == -1) { + sno = Yap_CheckTextStream(ARG1, Input_Stream_f, "read/3"); + if (sno == -1) { return (FALSE); } - out = Yap_read_term(inp_stream, add_output(ARG2, TermNil), false); - UNLOCK(GLOBAL_Stream[inp_stream].streamlock); + out = Yap_read_term(sno, add_output(ARG2, TermNil), false); + UNLOCK(GLOBAL_Stream[sno].streamlock); return out; } diff --git a/os/sysbits.c b/os/sysbits.c index f1aa12a04..3189d830f 100644 --- a/os/sysbits.c +++ b/os/sysbits.c @@ -52,7 +52,6 @@ static Int p_putenv(USES_REGS1); static Term do_glob(const char *spec, bool ok_to); #ifdef MACYAP -static int chdir(char *); /* #define signal skel_signal */ #endif /* MACYAP */ static const char *expandVars(const char *spec, char *u); @@ -104,7 +103,7 @@ static bool is_directory(const char *FileName) { bool Yap_Exists(const char *f) { VFS_t *vfs; if ((vfs = vfs_owner(f))) { - return vfs->exists(vfs,f) != NULL; + return vfs->exists(vfs,f); } #if _WIN32 if (_access(f, 0) == 0) @@ -346,7 +345,7 @@ static char *PrologPath(const char *Y, char *X) { return (char *)Y; } #define HAVE_REALPATH 1 #endif - bool ChDir(const char *path) { + bool Yap_ChDir(const char *path) { bool rc = false; char qp[FILENAME_MAX + 1]; const char *qpath = Yap_AbsoluteFile(path, qp, true); @@ -1137,6 +1136,14 @@ static int volume_header(char *file) { int Yap_volume_header(char *file) { return volume_header(file); } const char *Yap_getcwd(const char *cwd, size_t cwdlen) { + VFS_t *me = GLOBAL_VFS; + while(me) { + if (me->virtual_cwd) { + strcpy(cwd, me->virtual_cwd); + return cwd; + } + me = me->next; + } #if _WIN32 || defined(__MINGW32__) if (GetCurrentDirectory(cwdlen, (char *)cwd) == 0) { Yap_WinError("GetCurrentDirectory failed"); @@ -1166,7 +1173,7 @@ static Int working_directory(USES_REGS1) { } if (t2 == TermEmptyAtom || t2 == TermDot) return true; - return ChDir(RepAtom(AtomOfTerm(t2))->StrOfAE); + return Yap_ChDir(RepAtom(AtomOfTerm(t2))->StrOfAE); } /** Yap_findFile(): tries to locate a file, no expansion should be performed/ @@ -1188,11 +1195,21 @@ const char *Yap_findFile(const char *isource, const char *idef, YAP_file_type_t ftype, bool expand_root, bool in_lib) { char *save_buffer = NULL; - const char *root = iroot, *source = isource; + char *root = iroot, *source = isource; int rc = FAIL_RESTORE; - int try - = 0; + int try = 0; bool abspath = false; + int lvl = push_text_stack(); + root = Malloc(YAP_FILENAME_MAX+1); + source= Malloc(YAP_FILENAME_MAX+1); + if (iroot && iroot[0]) + strcpy(root, iroot); + else + root[0] = 0; + if (isource && isource[0]) + strcpy(source, isource); + else + source[0] = 0; //__android_log_print(ANDROID_LOG_ERROR, "YAPDroid " __FUNCTION__, // "try=%d %s %s", try, isource, iroot) ; } while (rc == FAIL_RESTORE) { @@ -1201,21 +1218,28 @@ const char *Yap_findFile(const char *isource, const char *idef, // { CACHE_REGS switch (try ++) { case 0: // path or file name is given; - root = iroot; - if (idef || isource) { - source = (isource ? isource : idef); + if (!source[0] && idef && idef[0]) { + strcpy(source, idef); } - if (source) { + if (source[0]) { abspath = Yap_IsAbsolutePath(source); } - if (!abspath && !root && ftype == YAP_BOOT_PL) { + if (!abspath && !root[0] && ftype == YAP_BOOT_PL) { root = YAP_PL_SRCDIR; } break; case 1: // library directory is given in command line if (in_lib && ftype == YAP_SAVED_STATE) { - root = iroot; - source = (isource ? isource : idef); + if (iroot && iroot[0]) + strcpy(root, iroot); + else + root[0] = 0; + if (isource && isource[0]) + strcpy(source, isource); + else if (idef && idef[0]) + strcpy(source, idef); + else + source[0] = 0; } else { done = true; } @@ -1223,35 +1247,45 @@ const char *Yap_findFile(const char *isource, const char *idef, case 2: // use environment variable YAPLIBDIR #if HAVE_GETENV if (in_lib) { + const char *eroot; + if (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ) { - root = getenv("YAPLIBDIR"); + eroot = getenv("YAPLIBDIR"); } else if (ftype == YAP_BOOT_PL) { - root = getenv("YAPSHAREDIR" + eroot = getenv("YAPSHAREDIR" "/pl"); - if (root == NULL) { + if (eroot == NULL) { continue; } else { - save_buffer = getFileNameBuffer(); - strncpy(save_buffer, root, YAP_FILENAME_MAX); - strncat(save_buffer, "/pl", YAP_FILENAME_MAX); + strncpy(root, eroot, YAP_FILENAME_MAX); + strncat(root, "/pl", YAP_FILENAME_MAX); } } - source = (isource ? isource : idef); + if (isource && isource[0]) + strcpy(source, isource); + else if (idef && idef[0]) + strcpy(source, idef); + else + source[0] = 0; } else #endif done = true; break; case 3: // use compilation variable YAPLIBDIR if (in_lib) { - source = (isource ? isource : idef); + if (isource && isource[0]) + strcpy(source, isource); + else if (idef && idef[0]) + strcpy(source, idef); + else + source[0] = 0; if (ftype == YAP_PL) { - root = YAP_SHAREDIR; + strcpy(root,YAP_SHAREDIR); } else if (ftype == YAP_BOOT_PL) { - root = malloc(YAP_FILENAME_MAX+1); strcpy(root, YAP_SHAREDIR); strcat(root,"/pl"); } else { - root = YAP_LIBDIR; + strcpy(root,YAP_LIBDIR); } } else done = true; @@ -1260,9 +1294,9 @@ const char *Yap_findFile(const char *isource, const char *idef, case 4: // WIN stuff: registry #if __WINDOWS if (in_lib) { - source = (ftype == YAP_PL || ftype == YAP_QLY ? "library" : "startup"); - source = Yap_RegistryGetString(source); - root = NULL; + const char *key = (ftype == YAP_PL || ftype == YAP_QLY ? "library" : "startup"); + strcpy( source, Yap_RegistryGetString(source) ); + root[0] = 0; } else #endif done = true; @@ -1280,42 +1314,45 @@ const char *Yap_findFile(const char *isource, const char *idef, if (pt) { if (ftype == YAP_BOOT_PL) { #if __ANDROID__ - root = "../../../files/Yap/pl"; + strcpy(root, "../../../files/Yap/pl"); #else root = "../../share/Yap/pl"; #endif } else { - root = (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ + strcpy(root, (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ ? "../../lib/Yap" - : "../../share/Yap"); + : "../../share/Yap")); } - if (root == iroot) { + if (strcmp(root, iroot)==0) { done = true; continue; } if (!save_buffer) - save_buffer = getFileNameBuffer(); + save_buffer = Malloc(YAP_FILENAME_MAX+1); if (Yap_findFile(source, NULL, root, save_buffer, access, ftype, expand_root, in_lib)) - root = save_buffer; + strcpy(root, save_buffer); else done = true; } else { done = true; } - source = (isource ? isource : idef); + if (isource && isource[0]) + strcpy(source, isource); + else if (idef && idef[0]) + strcpy(source, idef); + else + source[0] = 0; } break; case 6: // default, try current directory if (!isource && ftype == YAP_SAVED_STATE) - source = idef; - root = NULL; + strcpy(source, idef); + root[0] = 0; break; default: - if (save_buffer) - freeFileNameBuffer(save_buffer); - - return false; + pop_text_stack(lvl); + return NULL; } if (done) @@ -1324,12 +1361,11 @@ const char *Yap_findFile(const char *isource, const char *idef, // "root= %s %s ", root, source) ; } const char *work = PlExpandVars(source, root, result); - if (save_buffer) - freeFileNameBuffer(save_buffer); // expand names in case you have // to add a prefix if (!access || Yap_Exists(work)) { + work = pop_output_text_stack(lvl,work); return work; // done } else if (abspath) return NULL; diff --git a/os/yapio.h b/os/yapio.h index f7987c58e..5665b8302 100644 --- a/os/yapio.h +++ b/os/yapio.h @@ -86,7 +86,7 @@ extern int Yap_PlGetWchar(void); extern int Yap_PlFGetchar(void); extern int Yap_GetCharForSIGINT(void); extern Int Yap_StreamToFileNo(Term); -extern int Yap_OpenStream(const char*, const char *); +extern int Yap_OpenStream(const char*, const char*); extern int Yap_FileStream(FILE*, char *, Term, int); extern char *Yap_TermToString(Term t, encoding_t encoding, int flags); extern char *Yap_HandleToString(yhandle_t l, size_t sz, size_t *length, @@ -162,6 +162,7 @@ extern uint64_t Yap_StartOfWTimes; extern bool Yap_HandleSIGINT(void); -extern bool Yap_set_stream_to_buf(StreamDesc *st, const char *buf, size_t nchars USES_REGS); +extern bool Yap_set_stream_to_buf(StreamDesc *st, const char *bufi, + size_t nchars USES_REGS); #endif diff --git a/packages/myddas/sqlite3/src/Android/jni/sqlite/JNIHelp.cpp b/packages/myddas/sqlite3/src/Android/jni/sqlite/JNIHelp.cpp index fd5884a80..54ac77abc 100644 --- a/packages/myddas/sqlite3/src/Android/jni/sqlite/JNIHelp.cpp +++ b/packages/myddas/sqlite3/src/Android/jni/sqlite/JNIHelp.cpp @@ -294,8 +294,8 @@ const char* jniStrError(int errnum, char* buf, size_t buflen) { // char *strerror_r(int errnum, char *buf, size_t n); return strerror_r(errnum, buf, buflen); #else - int rc = strerror_r(errnum, buf, buflen); - if (rc != 0) { + char *rc = strerror_r(errnum, buf, buflen); + if (rc != NULL) { // (POSIX only guarantees a value other than 0. The safest // way to implement this function is to use C++ and overload on the // type of strerror_r to accurately distinguish GNU from POSIX.) From 690f1d38306b2e1eb0cc50de38a13f50ba1ad83b Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Thu, 30 Nov 2017 01:14:26 +0000 Subject: [PATCH 04/14] android --- C/c_interface.c | 2 +- CXX/yapi.cpp | 14 +++++--------- os/assets.c | 12 +++++++----- os/sysbits.c | 20 +++++++------------- 4 files changed, 20 insertions(+), 28 deletions(-) diff --git a/C/c_interface.c b/C/c_interface.c index c2c72bcbb..99e366232 100755 --- a/C/c_interface.c +++ b/C/c_interface.c @@ -2133,7 +2133,7 @@ X_API int YAP_InitConsult(int mode, const char *fname, char *full, return -1; } Yap_init_consult(consulted, bfp); - sno = Yap_OpenStream(fl, AtomRead); + sno = Yap_OpenStream(fl,"r"); *osnop = Yap_CheckAlias(AtomLoopStream); if (!Yap_AddAlias(AtomLoopStream, sno)) { Yap_CloseStream(sno); diff --git a/CXX/yapi.cpp b/CXX/yapi.cpp index 80a6b43a6..9a98aa4c4 100644 --- a/CXX/yapi.cpp +++ b/CXX/yapi.cpp @@ -934,12 +934,6 @@ void YAPEngine::doInit(YAP_file_type_t BootMode) } /* Begin preprocessor code */ /* live */ - __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "initialize_prolog"); -#if __ANDROID__ - Yap_AndroidBufp = (char *)malloc(Yap_AndroidMax = 4096); - Yap_AndroidBufp[0] = '\0'; - Yap_AndroidSz = 0; -#endif //yerror = YAPError(); #if YAP_PYTHON do_init_python(); @@ -1015,9 +1009,11 @@ YAPEngine::YAPEngine(int argc, char *argv[], else if (IsPairTerm(t)) { Term ts[2]; - ts[0] = t; - ts[1] = m; - t = Yap_MkApplTerm(FunctorCsult, 2, ts); + Functor FunctorConsult = Yap_MkFunctor(Yap_LookupAtom("consult"), 1); + ts[1] = t; + ts[0] = m; + t = Yap_MkApplTerm(FunctorModule, 2, ts); + t = Yap_MkApplTerm(FunctorConsult, 1, &t); tt.put(t); outp = RepAppl(t) + 1; } diff --git a/os/assets.c b/os/assets.c index aa4623288..8c0f17694 100644 --- a/os/assets.c +++ b/os/assets.c @@ -170,13 +170,16 @@ bool exists_a(VFS_t *me, const char *dirName) { } +extern char virtual_cwd[YAP_FILENAME_MAX + 1]; + static bool set_cwd(VFS_t *me, const char *dirName) { chdir("/assets"); - if (!me->virtual_cwd) - me->virtual_cwd = malloc(YAP_FILENAME_MAX + 1); - strcpy(me->virtual_cwd, dirName); - return true; + strcpy(virtual_cwd, dirName); + __android_log_print(ANDROID_LOG_INFO, "YAPDroid", + "chdir %s", virtual_cwd); + Yap_do_low_level_trace = true; + return true; } #endif @@ -210,7 +213,6 @@ Yap_InitAssetManager(void) { me->enc = ENC_ISO_UTF8; /// how the file is encoded. me->parsers = NULL; /// a set of parsers that can read the stream and generate a term me->writers = NULL; - me->virtual_cwd = NULL; LOCK(BGL); me->next = GLOBAL_VFS; GLOBAL_VFS = me; diff --git a/os/sysbits.c b/os/sysbits.c index 3189d830f..fae36c733 100644 --- a/os/sysbits.c +++ b/os/sysbits.c @@ -34,13 +34,6 @@ static void FileError(yap_error_number type, Term where, const char *format, } } -/// Allocate a temporary buffer -static char *getFileNameBuffer(void) { - - return Yap_AllocAtomSpace(YAP_FILENAME_MAX); -} - -static void freeFileNameBuffer(char *s) { Yap_FreeCodeSpace(s); } static Int p_sh(USES_REGS1); static Int p_shell(USES_REGS1); @@ -345,6 +338,8 @@ static char *PrologPath(const char *Y, char *X) { return (char *)Y; } #define HAVE_REALPATH 1 #endif +char virtual_cwd[YAP_FILENAME_MAX + 1]; + bool Yap_ChDir(const char *path) { bool rc = false; char qp[FILENAME_MAX + 1]; @@ -1136,13 +1131,12 @@ static int volume_header(char *file) { int Yap_volume_header(char *file) { return volume_header(file); } const char *Yap_getcwd(const char *cwd, size_t cwdlen) { - VFS_t *me = GLOBAL_VFS; - while(me) { - if (me->virtual_cwd) { - strcpy(cwd, me->virtual_cwd); - return cwd; + if (virtual_cwd[0]) { + if (!cwd) { + cwd = malloc(cwdlen+1); } - me = me->next; + strcpy( cwd, virtual_cwd); + return cwd; } #if _WIN32 || defined(__MINGW32__) if (GetCurrentDirectory(cwdlen, (char *)cwd) == 0) { From 2a93f1da9936971f5c0df128154c140bc0a3182e Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Thu, 30 Nov 2017 01:16:52 +0000 Subject: [PATCH 05/14] swig streamer --- packages/swig/android/streamer.cpp | 102 +++++++++++++++++++++++++++++ packages/swig/android/streamer.h | 27 ++++++++ packages/swig/android/streamer.i | 14 ++++ 3 files changed, 143 insertions(+) create mode 100644 packages/swig/android/streamer.cpp create mode 100644 packages/swig/android/streamer.h create mode 100644 packages/swig/android/streamer.i diff --git a/packages/swig/android/streamer.cpp b/packages/swig/android/streamer.cpp new file mode 100644 index 000000000..cd7f6b6f4 --- /dev/null +++ b/packages/swig/android/streamer.cpp @@ -0,0 +1,102 @@ +// +// Created by vsc on 7/6/17. +// +/* File : example.cxx */ + +#include "streamer.h" + + +static AndroidStreamer * streamerInstance = 0; + +void setStreamer(AndroidStreamer* streamer) { + streamerInstance = streamer; +} + +AndroidStreamer& getStreamer() { + return *streamerInstance; +} + +#include + +extern "C" { +#include +#include +#include +#include +#include + +extern void Java_pt_up_yap_lib_streamerJNI_swig_1module_1init__(void); + +static VFS_t andstream; + +void Java_pt_up_yap_lib_streamerJNI_swig_1module_1init__(void) { + streamerInstance = 0; +} ; + +static std::string buff0; + +static void * +and_open(struct vfs *me, int sno, const char *name, const char *io_mode) { + // we assume object is already open, so there is no need to open it. + GLOBAL_Stream[sno].vfs_handle = streamerInstance; + GLOBAL_Stream[sno].vfs = me; + GLOBAL_Stream[sno].status = Append_Stream_f | Output_Stream_f; + buff0.clear(); + return streamerInstance; +} +} +static bool +and_close(int sno) { + return true; +} + +static int +and_put(int sno, int ch) { +buff0 += ch; + if (ch=='\n' || buff0.length() == 128) { //buff0+= '\0'; + streamerInstance->display(buff0); + } + return ch; + } + +static int +and_get(int sno) { + return EOF; +} + +static int64_t and_seek(int sno, int64_t where, int how) { + return EOF; +} + +static void +and_flush(int sno) { + +buff0 += '\0'; +streamerInstance->display(buff0); + + + +// +// Created by vsc on 11-07-2017. +// + +} + +void +AndroidStreamer::bind() { + buff0 = *new std::string[256]; + andstream.name = "/android/user_error"; + andstream.vflags = VFS_CAN_WRITE | VFS_HAS_PREFIX; + andstream.prefix = "/android"; + andstream.suffix = NULL; + andstream.open = and_open; + andstream.close = and_close; + andstream.get_char = and_get; + andstream.put_char = and_put; + andstream.flush = and_flush; + andstream.seek = and_seek; + andstream.next = GLOBAL_VFS; + GLOBAL_VFS = &andstream; + Yap_InitStdStream(StdOutStream, Output_Stream_f | Append_Stream_f, NULL, &andstream); + Yap_InitStdStream(StdErrStream, Output_Stream_f | Append_Stream_f, NULL, &andstream); +} diff --git a/packages/swig/android/streamer.h b/packages/swig/android/streamer.h new file mode 100644 index 000000000..c713696c8 --- /dev/null +++ b/packages/swig/android/streamer.h @@ -0,0 +1,27 @@ +// +// Created by vsc on 7/6/17. +// + +#ifndef YAPDROID_MAIN_H +#define YAPDROID_MAIN_H +#include +#include +#include +#include + +struct AndroidStreamer { + virtual void display(std::string text) const = 0; + virtual ~AndroidStreamer() {} + void bind(); +}; +void setStreamer(AndroidStreamer* streamer); +AndroidStreamer& getStreamer(); + +template AndroidStreamer& operator<<(AndroidStreamer& stream, T const& val) { + std::ostringstream s; + s << val; + stream.display(s.str()); + return stream; +}; + +#endif //YAPDROID_MAIN_H diff --git a/packages/swig/android/streamer.i b/packages/swig/android/streamer.i new file mode 100644 index 000000000..983a2f017 --- /dev/null +++ b/packages/swig/android/streamer.i @@ -0,0 +1,14 @@ +/* File : example.i */ +%module(directors="1") streamer +%{ +#include "streamer.h" + +%} + +%include "std_string.i" + +/* A base class for callbacks from C++ to output text on the Java side */ +%feature("director") AndroidStreamer; + +%include "streamer.h" + From 4f366726c6dc8b7820b96d1b7d72b81b5d81774c Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Thu, 30 Nov 2017 01:53:43 +0000 Subject: [PATCH 06/14] merge --- {H => include}/YapTerm.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {H => include}/YapTerm.h (100%) diff --git a/H/YapTerm.h b/include/YapTerm.h similarity index 100% rename from H/YapTerm.h rename to include/YapTerm.h From c281d73aefcb8590c9dcbe68fde06bd6f131a6cc Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Thu, 30 Nov 2017 01:55:58 +0000 Subject: [PATCH 07/14] warnings --- CMakeLists.txt | 2 +- config.h.cmake | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f70b7ec6f..7d45885a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -802,7 +802,7 @@ if (NOT ANDROID) add_subDIRECTORY(library/lammpi) -if (MPI_C_FOUND\D) +if (MPI_C_FOUND) CMAKE_DEPENDENT_OPTION(WITH_MPI ON "Interface to OpenMPI/MPICH" "MPI_C_FOUND" OFF) diff --git a/config.h.cmake b/config.h.cmake index cfce8fbc6..cbf1cd1b9 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -1360,6 +1360,11 @@ signal. */ #cmakedefine HAVE_STRNLEN ${HAVE_STRNLEN} #endif +/* Define to 1 if you have the `stpcpy' function. */ +#ifndef HAVE_STPCPY +#cmakedefine HAVE_STPCPY ${HAVE_STPCPY} +#endif + /* Define to 1 if you have the header file. */ #ifndef HAVE_STROPTS_H #cmakedefine HAVE_STROPTS_H ${HAVE_STROPTS_H} From 76fb202d7eee0c44a6ec33565113bd103d6a42ef Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Thu, 30 Nov 2017 19:17:41 +0000 Subject: [PATCH 08/14] nugs --- os/sysbits.c | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/os/sysbits.c b/os/sysbits.c index fae36c733..fa9d54a2f 100644 --- a/os/sysbits.c +++ b/os/sysbits.c @@ -1244,16 +1244,10 @@ const char *Yap_findFile(const char *isource, const char *idef, const char *eroot; if (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ) { - eroot = getenv("YAPLIBDIR"); + root = getenv("YAPLIBDIR"); } else if (ftype == YAP_BOOT_PL) { - eroot = getenv("YAPSHAREDIR" + root = getenv("YAPSHAREDIR" "/pl"); - if (eroot == NULL) { - continue; - } else { - strncpy(root, eroot, YAP_FILENAME_MAX); - strncat(root, "/pl", YAP_FILENAME_MAX); - } } if (isource && isource[0]) strcpy(source, isource); @@ -1273,11 +1267,9 @@ const char *Yap_findFile(const char *isource, const char *idef, strcpy(source, idef); else source[0] = 0; - if (ftype == YAP_PL) { - strcpy(root,YAP_SHAREDIR); - } else if (ftype == YAP_BOOT_PL) { - strcpy(root, YAP_SHAREDIR); - strcat(root,"/pl"); + if (ftype == YAP_PL || ftype == YAP_BOOT_PL) { + strcpy(root,YAP_SHAREDIR); + strcat(root,"/pl"); } else { strcpy(root,YAP_LIBDIR); } @@ -1310,12 +1302,12 @@ const char *Yap_findFile(const char *isource, const char *idef, #if __ANDROID__ strcpy(root, "../../../files/Yap/pl"); #else - root = "../../share/Yap/pl"; + root = "../share/Yap/pl"; #endif } else { strcpy(root, (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ - ? "../../lib/Yap" - : "../../share/Yap")); + ? "../lib/Yap" + : "../share/Yap")); } if (strcmp(root, iroot)==0) { done = true; From 876e42d629c6d9ca2fc21e87417fa3595118181b Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Fri, 1 Dec 2017 10:42:10 +0000 Subject: [PATCH 09/14] memory --- C/c_interface.c | 9 ++--- C/text.c | 2 +- C/text.c.new | 2 +- C/tracer.c | 2 +- C/write.c | 2 +- CXX/yapi.cpp | 2 +- CXX/yapt.hh | 2 +- H/Yapproto.h | 2 +- os/assets.c | 2 +- os/files.c | 4 +-- os/fmem.c | 8 ++--- os/iopreds.c | 3 +- os/streams.c | 3 +- os/sysbits.c | 93 +++++++++++++++++++++++++++++-------------------- os/writeterm.c | 4 +-- os/yapio.h | 37 ++++++++++++++++++-- 16 files changed, 111 insertions(+), 66 deletions(-) diff --git a/C/c_interface.c b/C/c_interface.c index 99e366232..f0d9c324d 100755 --- a/C/c_interface.c +++ b/C/c_interface.c @@ -2144,7 +2144,6 @@ X_API int YAP_InitConsult(int mode, const char *fname, char *full, GLOBAL_Stream[sno].name = Yap_LookupAtom(fl); GLOBAL_Stream[sno].user_name = MkAtomTerm(Yap_LookupAtom(fname)); GLOBAL_Stream[sno].encoding = LOCAL_encoding; - pop_text_stack(lvl); RECOVER_MACHINE_REGS(); UNLOCK(GLOBAL_Stream[sno].streamlock); return sno; @@ -2263,7 +2262,7 @@ X_API int YAP_WriteDynamicBuffer(YAP_Term t, char *buf, size_t sze, char *b; BACKUP_MACHINE_REGS(); - b = Yap_TermToString(t, enc, flags); + b = Yap_TermToBuffer(t, enc, flags); strncpy(buf, b, sze); buf[sze] = 0; RECOVER_MACHINE_REGS(); @@ -2431,9 +2430,8 @@ X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { if (!LOCAL_TextBuffer) LOCAL_TextBuffer = Yap_InitTextAllocator(); - int lvl = push_text_stack(); - yroot = Malloc(YAP_FILENAME_MAX + 1); - boot_file = Malloc(YAP_FILENAME_MAX + 1); + yroot = malloc(YAP_FILENAME_MAX + 1); + boot_file = malloc(YAP_FILENAME_MAX + 1); /* ignore repeated calls to YAP_Init */ Yap_embedded = yap_init->Embedded; Yap_page_size = Yap_InitPageSize(); /* init memory page size, required by @@ -2674,7 +2672,6 @@ X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { start_modules(); YAP_initialized = true; - pop_text_stack(lvl); return YAP_BOOT_PL; } diff --git a/C/text.c b/C/text.c index 71ea38488..413551764 100644 --- a/C/text.c +++ b/C/text.c @@ -487,7 +487,7 @@ unsigned char *Yap_readText(seq_tv_t *inp USES_REGS) { #endif if (inp->type & YAP_STRING_TERM) { // Yap_DebugPlWriteln(inp->val.t); - char *s = (char *)Yap_TermToString(inp->val.t, ENC_ISO_UTF8, 0); + char *s = (char *) Yap_TermToBuffer(inp->val.t, ENC_ISO_UTF8, 0); return inp->val.uc = (unsigned char *)s; } if (inp->type & YAP_STRING_CHARS) { diff --git a/C/text.c.new b/C/text.c.new index 9569d2ca4..7c1d67f41 100644 --- a/C/text.c.new +++ b/C/text.c.new @@ -501,7 +501,7 @@ unsigned char *Yap_readText(seq_tv_t *inp, size_t *lengp) { #endif if (inp->type & YAP_STRING_TERM) { // Yap_DebugPlWriteln(inp->val.t); - char *s = (char *)Yap_TermToString(inp->val.t, lengp, ENC_ISO_UTF8, 0); + char *s = (char *) Yap_TermToBuffer(inp->val.t, lengp, ENC_ISO_UTF8, 0); return inp->val.uc = (unsigned char *)s; } if (inp->type & YAP_STRING_CHARS) { diff --git a/C/tracer.c b/C/tracer.c index ab926acc3..d060c5067 100644 --- a/C/tracer.c +++ b/C/tracer.c @@ -87,7 +87,7 @@ static char *send_tracer_message(char *start, char *name, arity_t arity, continue; } } - const char *sn = Yap_TermToString(args[i], LOCAL_encoding, + const char *sn = Yap_TermToBuffer(args[i], LOCAL_encoding, Quote_illegal_f | Handle_vars_f); size_t sz; if (sn == NULL) { diff --git a/C/write.c b/C/write.c index 20ed60bbc..bcf6613a5 100644 --- a/C/write.c +++ b/C/write.c @@ -1255,7 +1255,7 @@ static void wrputref(CODEADDR ref, int Quote_illegal, Yap_CloseSlots(sls); } - char *Yap_TermToString(Term t, encoding_t enc, int flags) { + char *Yap_TermToBuffer(Term t, encoding_t enc, int flags) { CACHE_REGS int sno = Yap_open_buf_write_stream(enc, flags); const char *sf; diff --git a/CXX/yapi.cpp b/CXX/yapi.cpp index 9a98aa4c4..f7fc1e8fb 100644 --- a/CXX/yapi.cpp +++ b/CXX/yapi.cpp @@ -12,7 +12,7 @@ extern "C" { #include "YapInterface.h" #include "blobs.h" -X_API char *Yap_TermToString(Term t, encoding_t encodingp, +X_API char *Yap_TermToBuffer(Term t, encoding_t encodingp, int flags); X_API void YAP_UserCPredicate(const char *, YAP_UserCPred, arity_t arity); diff --git a/CXX/yapt.hh b/CXX/yapt.hh index f3ce6f5b7..c88519dc8 100644 --- a/CXX/yapt.hh +++ b/CXX/yapt.hh @@ -241,7 +241,7 @@ public: char *os; BACKUP_MACHINE_REGS(); - if (!(os = Yap_TermToString(Yap_GetFromSlot(t), enc, Handle_vars_f))) { + if (!(os = Yap_TermToBuffer(Yap_GetFromSlot(t), enc, Handle_vars_f))) { RECOVER_MACHINE_REGS(); return 0; } diff --git a/H/Yapproto.h b/H/Yapproto.h index 183a4e27c..a9a2aaa07 100755 --- a/H/Yapproto.h +++ b/H/Yapproto.h @@ -416,7 +416,7 @@ extern AAssetManager *Yap_assetManager; extern void *Yap_openAssetFile(const char *path); extern bool Yap_isAsset(const char *path); #endif -extern const char *Yap_getcwd(const char *, size_t); +extern const char *Yap_getcwd( char *, size_t); extern void Yap_cputime_interval(Int *, Int *); extern void Yap_systime_interval(Int *, Int *); extern void Yap_InitSysbits(int wid); diff --git a/os/assets.c b/os/assets.c index 8c0f17694..2d8639b73 100644 --- a/os/assets.c +++ b/os/assets.c @@ -178,7 +178,7 @@ static bool set_cwd(VFS_t *me, const char *dirName) { strcpy(virtual_cwd, dirName); __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "chdir %s", virtual_cwd); - Yap_do_low_level_trace = true; + Yap_do_low_level_trace=1; return true; } diff --git a/os/files.c b/os/files.c index b579d832d..0c6841551 100644 --- a/os/files.c +++ b/os/files.c @@ -460,7 +460,7 @@ static Int exists_directory(USES_REGS1) { #if HAVE_STAT struct SYSTEM_STAT ss; - file_name = RepAtom(AtomOfTerm(tname))->StrOfAE; + file_name = Yap_VF(RepAtom(AtomOfTerm(tname))->StrOfAE); if (SYSTEM_STAT(file_name, &ss) != 0) { /* ignore errors while checking a file */ return false; @@ -483,7 +483,7 @@ static Int is_absolute_file_name(USES_REGS1) { /* file_base_name(Stream,N) */ int l = push_text_stack(); const char *buf = Yap_TextTermToText(t PASS_REGS); if (buf) { - rc = Yap_IsAbsolutePath(buf); + rc = Yap_IsAbsolutePath(buf, true); } else { at = AtomOfTerm(t); #if _WIN32 diff --git a/os/fmem.c b/os/fmem.c index a07d94812..66dfb6b24 100644 --- a/os/fmem.c +++ b/os/fmem.c @@ -119,7 +119,7 @@ bool Yap_set_stream_to_buf(StreamDesc *st, const char *buf, FILE *f; // like any file stream. - st->file = f = fmemopen(buf, nchars, "r"); + st->file = f = fmemopen((char *)buf, nchars, "r"); st->status = Input_Stream_f | Seekable_Stream_f | InMemory_Stream_f; st->vfs = NULL; st->encoding = LOCAL_encoding; @@ -292,17 +292,15 @@ void Yap_MemOps(StreamDesc *st) { st->stream_getc = PlGetc; } -static int sssno; bool Yap_CloseMemoryStream(int sno) { - sssno++; - // if (sssno > 1720) Yap_do_low_level_trace=1; - if ((GLOBAL_Stream[sno].status & Output_Stream_f)) { + if ((GLOBAL_Stream[sno].status & Output_Stream_f) && GLOBAL_Stream[sno].file) { fflush(GLOBAL_Stream[sno].file); fclose(GLOBAL_Stream[sno].file); if (GLOBAL_Stream[sno].status & FreeOnClose_Stream_f) free(GLOBAL_Stream[sno].nbuf); } else { + if (GLOBAL_Stream[sno].file) fclose(GLOBAL_Stream[sno].file); if (GLOBAL_Stream[sno].status & FreeOnClose_Stream_f) free(GLOBAL_Stream[sno].nbuf); diff --git a/os/iopreds.c b/os/iopreds.c index e6e4498cf..e8cae80cf 100644 --- a/os/iopreds.c +++ b/os/iopreds.c @@ -1183,7 +1183,6 @@ do_open(Term file_name, Term t2, const char *fname; char fbuf[FILENAME_MAX]; stream_flags_t flags; - FILE *fd; const char *s_encoding; encoding_t encoding; Term tenc; @@ -1515,7 +1514,6 @@ int Yap_OpenStream(const char *fname, const char *io_mode) { struct vfs *vfsp; FILE *fd; int flags; - SMALLUNSGN s; sno = GetFreeStreamD(); if (sno < 0) { @@ -1526,6 +1524,7 @@ int Yap_OpenStream(const char *fname, const char *io_mode) { st = GLOBAL_Stream + sno; // read, write, append st->file = NULL; + fname = Yap_VF(fname); if ((vfsp = vfs_owner(fname)) != NULL ) { if (!vfsp->open(vfsp, sno, fname, io_mode)) { UNLOCK(st->streamlock); diff --git a/os/streams.c b/os/streams.c index f343884af..681c9b5df 100644 --- a/os/streams.c +++ b/os/streams.c @@ -959,7 +959,8 @@ static void CloseStream(int sno) { CACHE_REGS fflush(NULL); - if (!(GLOBAL_Stream[sno].status & + if (GLOBAL_Stream[sno].file && + !(GLOBAL_Stream[sno].status & (Null_Stream_f | Socket_Stream_f | InMemory_Stream_f | Pipe_Stream_f))) fclose(GLOBAL_Stream[sno].file); #if HAVE_SOCKET diff --git a/os/sysbits.c b/os/sysbits.c index fae36c733..8250ad79c 100644 --- a/os/sysbits.c +++ b/os/sysbits.c @@ -95,6 +95,7 @@ static bool is_directory(const char *FileName) { bool Yap_Exists(const char *f) { VFS_t *vfs; + f = Yap_VFAlloc(f); if ((vfs = vfs_owner(f))) { return vfs->exists(vfs,f); } @@ -106,8 +107,9 @@ bool Yap_Exists(const char *f) { } return false; #elif HAVE_ACCESS - if (access(f, F_OK) == 0) - return true; + if (access(f, F_OK) == 0) { + return true; + } if (errno == EINVAL) { Yap_Error(SYSTEM_ERROR_INTERNAL, TermNil, "bad flags to access"); } @@ -139,10 +141,13 @@ int Yap_dir_separator(int ch) { return dir_separator(ch); } char *libdir = NULL; #endif -bool Yap_IsAbsolutePath(const char *p0) { +bool Yap_IsAbsolutePath(const char *p0, bool expand) { // verify first if expansion is needed: ~/ or $HOME/ - const char *p = expandVars(p0, LOCAL_FileNameBuf); + const char *p = p0; bool nrc; + if (expand) { + p = expandVars(p0, LOCAL_FileNameBuf); + } #if _WIN32 || __MINGW32__ nrc = !PathIsRelative(p); #else @@ -258,7 +263,7 @@ static const char *PlExpandVars(const char *source, const char *root, pop_text_stack(lvl); return NULL; } - if (root && !Yap_IsAbsolutePath(source)) { + if (root && !Yap_IsAbsolutePath(source, false)) { strncpy(result, root, YAP_FILENAME_MAX); if (root[strlen(root) - 1] != '/') strncat(result, "/", YAP_FILENAME_MAX); @@ -364,14 +369,15 @@ char virtual_cwd[YAP_FILENAME_MAX + 1]; return rc; } + static const char *myrealpath(const char *path, char *out) { - if (!out) - out = LOCAL_FileNameBuf; -#if _WIN32 + int lvl = push_text_stack(); + #if _WIN32 DWORD retval = 0; // notice that the file does not need to exist retval = GetFullPathName(path, YAP_FILENAME_MAX, out, NULL); + pop_text_stack(lvl); if (retval == 0) { Yap_WinError("Generating a full path name for a file"); return NULL; @@ -382,12 +388,13 @@ static const char *myrealpath(const char *path, char *out) { char *rc = realpath(path, NULL); if (rc) { + pop_text_stack(lvl); return rc; } // rc = NULL; if (errno == ENOENT || errno == EACCES) { - char base[YAP_FILENAME_MAX + 1]; - strncpy(base, path, YAP_FILENAME_MAX - 1); + char *base= Malloc(YAP_FILENAME_MAX + 1); + strncpy(base, path, YAP_FILENAME_MAX ); rc = realpath(dirname(base), out); if (rc) { @@ -411,6 +418,7 @@ static const char *myrealpath(const char *path, char *out) { } #endif strcat(rc, b); + rc = pop_output_text_stack(lvl, rc); return rc; } } @@ -418,6 +426,7 @@ static const char *myrealpath(const char *path, char *out) { #endif out = malloc(strlen(path) + 1); strcpy(out, path); + pop_text_stack(lvl); return out; } @@ -923,7 +932,7 @@ static Int make_directory(USES_REGS1) { #if defined(__MINGW32__) || _MSC_VER if (_mkdir(fd) == -1) { #else - if (mkdir(fd, 0777) == -1) { + if (mkdir(Yap_VFAlloc(fd), 0777) == -1) { #endif /* return an error number */ return false; // errno? @@ -932,7 +941,7 @@ static Int make_directory(USES_REGS1) { } static Int p_rmdir(USES_REGS1) { - const char *fd = AtomName(AtomOfTerm(ARG1)); + const char *fd = Yap_VFAlloc(AtomName(AtomOfTerm(ARG1))); #if defined(__MINGW32__) || _MSC_VER if (_rmdir(fd) == -1) { #else @@ -1130,7 +1139,7 @@ static int volume_header(char *file) { int Yap_volume_header(char *file) { return volume_header(file); } -const char *Yap_getcwd(const char *cwd, size_t cwdlen) { +const char *Yap_getcwd(char *cwd, size_t cwdlen) { if (virtual_cwd[0]) { if (!cwd) { cwd = malloc(cwdlen+1); @@ -1189,7 +1198,7 @@ const char *Yap_findFile(const char *isource, const char *idef, YAP_file_type_t ftype, bool expand_root, bool in_lib) { char *save_buffer = NULL; - char *root = iroot, *source = isource; + char *root, *source; int rc = FAIL_RESTORE; int try = 0; bool abspath = false; @@ -1216,10 +1225,10 @@ const char *Yap_findFile(const char *isource, const char *idef, strcpy(source, idef); } if (source[0]) { - abspath = Yap_IsAbsolutePath(source); + abspath = Yap_IsAbsolutePath(source, expand_root); } if (!abspath && !root[0] && ftype == YAP_BOOT_PL) { - root = YAP_PL_SRCDIR; + strcpy(root, YAP_PL_SRCDIR); } break; case 1: // library directory is given in command line @@ -1246,8 +1255,7 @@ const char *Yap_findFile(const char *isource, const char *idef, if (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ) { eroot = getenv("YAPLIBDIR"); } else if (ftype == YAP_BOOT_PL) { - eroot = getenv("YAPSHAREDIR" - "/pl"); + eroot = getenv("YAPSHAREDIR"); if (eroot == NULL) { continue; } else { @@ -1306,24 +1314,27 @@ const char *Yap_findFile(const char *isource, const char *idef, const char *pt = Yap_FindExecutable(); if (pt) { - if (ftype == YAP_BOOT_PL) { + if (ftype == YAP_BOOT_PL) { #if __ANDROID__ - strcpy(root, "../../../files/Yap/pl"); + strcpy(root, "../../../files/Yap/pl"); #else - root = "../../share/Yap/pl"; + root = "../../share/Yap/pl"; #endif - } else { - strcpy(root, (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ - ? "../../lib/Yap" - : "../../share/Yap")); - } - if (strcmp(root, iroot)==0) { - done = true; - continue; - } - if (!save_buffer) - save_buffer = Malloc(YAP_FILENAME_MAX+1); - if (Yap_findFile(source, NULL, root, save_buffer, access, ftype, + } else { + strcpy(root, (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ + ? "../../lib/Yap" + : "../../share/Yap")); + } + if (strcmp(root, iroot) == 0) { + done = true; + continue; + } + if (!save_buffer) { + save_buffer = Malloc(YAP_FILENAME_MAX + 1); + + save_buffer[0] = 0; + } + if (Yap_findFile(source, NULL, root, save_buffer, access, ftype, expand_root, in_lib)) strcpy(root, save_buffer); else @@ -1361,9 +1372,13 @@ const char *Yap_findFile(const char *isource, const char *idef, if (!access || Yap_Exists(work)) { work = pop_output_text_stack(lvl,work); return work; // done - } else if (abspath) - return NULL; + } else if (abspath) { + pop_text_stack(lvl); + return NULL; + } } + pop_text_stack(lvl); + return NULL; } @@ -1452,7 +1467,7 @@ static Int p_sh(USES_REGS1) { /* sh */ shell = (char *)getenv("SHELL"); if (shell == NULL) shell = "/bin/sh"; - if (system(shell) < 0) { + if (system(Yap_VFAlloc(shell)) < 0) { #if HAVE_STRERROR Yap_Error(SYSTEM_ERROR_OPERATING_SYSTEM, TermNil, "%s in sh/0", strerror(errno)); @@ -1658,10 +1673,12 @@ static Int p_mv(USES_REGS1) { /* rename(+OldName,+NewName) */ } else if (!IsAtomTerm(t2)) { Yap_Error(TYPE_ERROR_ATOM, t2, "second argument to rename/2 not atom"); } else { - oldname = (RepAtom(AtomOfTerm(t1)))->StrOfAE; - newname = (RepAtom(AtomOfTerm(t2)))->StrOfAE; + oldname = Yap_VFAlloc((RepAtom(AtomOfTerm(t1)))->StrOfAE); + newname = Yap_VFAlloc((RepAtom(AtomOfTerm(t2)))->StrOfAE); if ((r = link(oldname, newname)) == 0 && (r = unlink(oldname)) != 0) unlink(newname); + free(oldname); + free(newname); if (r != 0) { #if HAVE_STRERROR Yap_Error(SYSTEM_ERROR_OPERATING_SYSTEM, t2, "%s in rename(%s,%s)", diff --git a/os/writeterm.c b/os/writeterm.c index bc8697446..f61cd85bb 100644 --- a/os/writeterm.c +++ b/os/writeterm.c @@ -678,7 +678,7 @@ static Int term_to_string(USES_REGS1) { Term t2 = Deref(ARG2), rc = false, t1 = Deref(ARG1); const char *s; if (IsVarTerm(t2)) { - s = Yap_TermToString(ARG1,LOCAL_encoding, + s = Yap_TermToBuffer(ARG1, LOCAL_encoding, Quote_illegal_f | Handle_vars_f); if (!s || !MkStringTerm(s)) { Yap_Error(RESOURCE_ERROR_HEAP, t1, @@ -699,7 +699,7 @@ static Int term_to_atom(USES_REGS1) { Term t2 = Deref(ARG2), ctl, rc = false; Atom at; if (IsVarTerm(t2)) { - const char *s = Yap_TermToString(Deref(ARG1), LOCAL_encoding, + const char *s = Yap_TermToBuffer(Deref(ARG1), LOCAL_encoding, Quote_illegal_f | Handle_vars_f); if (!s || !(at = Yap_UTF8ToAtom((const unsigned char *)s))) { Yap_Error(RESOURCE_ERROR_HEAP, t2, diff --git a/os/yapio.h b/os/yapio.h index 5665b8302..8b23eea13 100644 --- a/os/yapio.h +++ b/os/yapio.h @@ -88,7 +88,7 @@ extern int Yap_GetCharForSIGINT(void); extern Int Yap_StreamToFileNo(Term); extern int Yap_OpenStream(const char*, const char*); extern int Yap_FileStream(FILE*, char *, Term, int); -extern char *Yap_TermToString(Term t, encoding_t encoding, int flags); +extern char *Yap_TermToBuffer(Term t, encoding_t encoding, int flags); extern char *Yap_HandleToString(yhandle_t l, size_t sz, size_t *length, encoding_t *encoding, int flags); extern int Yap_GetFreeStreamD(void); @@ -103,7 +103,7 @@ extern int Yap_growheap_in_parser(tr_fr_ptr *, TokEntry **, VarEntry **); extern int Yap_growstack_in_parser(tr_fr_ptr *, TokEntry **, VarEntry **); extern int Yap_growtrail_in_parser(tr_fr_ptr *, TokEntry **, VarEntry **); -extern bool Yap_IsAbsolutePath(const char *p); +extern bool Yap_IsAbsolutePath(const char *p, bool); extern Atom Yap_TemporaryFile(const char *prefix, int *fd); extern const char *Yap_AbsoluteFile(const char *spec, char *obuf, bool expand); @@ -156,6 +156,37 @@ INLINE_ONLY inline EXTERN Term MkCharTerm(Int c) { return MkAtomTerm(Yap_ULookupAtom(cs)); } + + +INLINE_ONLY inline EXTERN char *Yap_VF(const char *path){ + char out[YAP_FILENAME_MAX+1], *p = (char *)path; + extern char virtual_cwd[]; + + if ( virtual_cwd[0] == 0 || Yap_IsAbsolutePath(path, false)) { + return p; + } + strcpy(out, virtual_cwd); + strcat(out, "/" ); + strcat(out, p); + strcpy(p, out); + return p; +} + + +INLINE_ONLY inline EXTERN char *Yap_VFAlloc(const char *path){ + char *out; + extern char virtual_cwd[]; + + out = (char *)malloc(YAP_FILENAME_MAX+1); + if ( virtual_cwd[0] == 0 || !Yap_IsAbsolutePath(path, false)) { + return (char *)path; + } + strcpy(out, virtual_cwd); + strcat(out, "/" ); + strcat(out, path); + return out; +} + /// UT when yap started extern uint64_t Yap_StartOfWTimes; @@ -165,4 +196,6 @@ extern bool Yap_HandleSIGINT(void); extern bool Yap_set_stream_to_buf(StreamDesc *st, const char *bufi, size_t nchars USES_REGS); + + #endif From 645b2c7d93affa1984416edbe5077685f421d635 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Tue, 5 Dec 2017 15:14:57 +0000 Subject: [PATCH 10/14] boot --- C/c_interface.c | 113 +- C/errors.c | 4 +- C/load_dl.c | 3 +- C/qlyr.c | 81 +- C/save.c | 2 +- C/stack.c | 8 +- C/text.c | 2 +- C/yap-args.c | 1137 +- CMakeLists.txt | 70 +- CXX/CMakeLists.txt | 6 +- CXX/yapi.cpp | 3 +- CXX/yapt.hh | 16 +- H/Atoms.h | 2 +- H/Yap.h | 2 + H/YapFlags.h | 2 +- H/Yapproto.h | 3 +- TAGS | 273190 +-------------- cmake/Sources.cmake | 2 +- config.h.cmake | 15 +- console/terminal/CMakeLists.txt | 2 +- console/yap.c | 7 +- gtags.conf | 45 - include/YapDefs.h | 25 +- include/YapInterface.h | 10 + include/YapTerm.h | 169 + info/build.sh | 2 +- info/meta.yaml | 4 +- library/dialect/swi/fli/swi.c | 2 +- library/lammpi/CMakeLists.txt | 6 +- library/matlab/CMakeLists.txt | 4 +- library/matrix/CMakeLists.txt | 6 +- library/random/CMakeLists.txt | 4 +- library/regex/CMakeLists.txt | 6 +- library/rltree/CMakeLists.txt | 4 +- library/system/CMakeLists.txt | 6 +- library/tries/CMakeLists.txt | 12 +- os/iopreds.c | 104 +- os/streams.c | 3 +- os/sysbits.c | 79 +- os/yapio.h | 2 +- packages/CLPBN/horus/CMakeLists.txt | 6 +- packages/CMakeLists.txt | 6 +- packages/bdd/CMakeLists.txt | 6 +- packages/bdd/cmake/FindYAP.cmake | 2 +- packages/bdd/simplecudd/CMakeLists.txt | 4 +- packages/bdd/simplecudd_lfi/CMakeLists.txt | 4 +- packages/cplint/CMakeLists.txt | 12 +- .../approx/simplecuddLPADs/CMakeLists.txt | 4 +- packages/cuda/CMakeLists.txt | 4 +- packages/gecode/CMakeLists.txt | 6 +- packages/jpl/src/c/CMakeLists.txt | 6 +- packages/myddas/myddas_util_connection.c | 15 +- packages/myddas/mysql/CMakeLists.txt | 6 +- packages/myddas/odbc/CMakeLists.txt | 6 +- packages/myddas/postgres/CMakeLists.txt | 6 +- packages/myddas/sqlite3/CMakeLists.txt | 6 +- packages/python/CMakeLists.txt | 12 +- packages/python/python.c | 8 +- packages/python/swig/CMakeLists.txt | 2 +- packages/python/swig/setup.py.cmake | 4 +- packages/raptor/CMakeLists.txt | 8 +- packages/raptor/cmake/FindYAP.cmake | 2 +- packages/real/CMakeLists.txt | 6 +- packages/swi-minisat2/C/CMakeLists.txt | 6 +- packages/swig/java/CMakeLists.txt | 2 +- packages/swig/js/CMakeLists.txt | 2 +- pl/CMakeLists.txt | 2 +- 67 files changed, 1339 insertions(+), 273977 deletions(-) delete mode 100644 gtags.conf create mode 100644 include/YapTerm.h diff --git a/C/c_interface.c b/C/c_interface.c index f0d9c324d..0ea3a2309 100755 --- a/C/c_interface.c +++ b/C/c_interface.c @@ -106,7 +106,6 @@ X_API int YAP_Reset(yap_reset_t mode); #if __ANDROID__ #define BOOT_FROM_SAVED_STATE true #endif -static char BootFile[] = "boot.yap"; /** @defgroup slotInterface Term Handles or Slots @@ -2123,7 +2122,7 @@ X_API int YAP_InitConsult(int mode, const char *fname, char *full, } char *bfp = Malloc(YAP_FILENAME_MAX + 1); bfp[0] = '\0'; - if (fname != NULL && fname[0] != 0) + if (fname != NULL && fname[0] != '\0') strcpy(bfp, fname); bool consulted = (mode == YAP_CONSULT_MODE); const char *fl = Yap_findFile(bfp, NULL, NULL, full, true, @@ -2133,7 +2132,7 @@ X_API int YAP_InitConsult(int mode, const char *fname, char *full, return -1; } Yap_init_consult(consulted, bfp); - sno = Yap_OpenStream(fl,"r"); + sno = Yap_OpenStream(fl,"r", MkAtomTerm(Yap_LookupAtom(fname))); *osnop = Yap_CheckAlias(AtomLoopStream); if (!Yap_AddAlias(AtomLoopStream, sno)) { Yap_CloseStream(sno); @@ -2321,6 +2320,9 @@ static void do_bootfile(const char *b_file USES_REGS) { exit(1); } free(full); + setAtomicGlobalPrologFlag( + RESOURCE_DATABASE_FLAG, + MkAtomTerm(GLOBAL_Stream[boot_stream].name)); do { CACHE_REGS YAP_Reset(YAP_FULL_RESET); @@ -2422,7 +2424,7 @@ X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { YAP_file_type_t restore_result = yap_init->boot_file_type; bool do_bootstrap = (restore_result & YAP_CONSULT_MODE); CELL Trail = 0, Stack = 0, Heap = 0, Atts = 0; - char *boot_file; + char *boot_file, *restore_file; Int rc; char *yroot; if (YAP_initialized) @@ -2430,8 +2432,9 @@ X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { if (!LOCAL_TextBuffer) LOCAL_TextBuffer = Yap_InitTextAllocator(); - yroot = malloc(YAP_FILENAME_MAX + 1); - boot_file = malloc(YAP_FILENAME_MAX + 1); + yroot = Malloc(YAP_FILENAME_MAX + 1); + boot_file = Malloc(YAP_FILENAME_MAX + 1); + restore_file = Malloc(YAP_FILENAME_MAX + 1); /* ignore repeated calls to YAP_Init */ Yap_embedded = yap_init->Embedded; Yap_page_size = Yap_InitPageSize(); /* init memory page size, required by @@ -2446,51 +2449,63 @@ X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { functions */ GLOBAL_argv = yap_init->Argv; GLOBAL_argc = yap_init->Argc; - if (0 && ((YAP_QLY && yap_init->SavedState) || - (YAP_BOOT_PL && (yap_init->YapPrologBootFile)))) { - strcpy(yroot, "."); - } else { - strcpy(yroot, BootFile); - } } - char *tmp = NULL; - if (yap_init->SavedState == NULL) { - tmp = Malloc(strlen(YAP_STARTUP) + 1); - strncpy(tmp, YAP_STARTUP, strlen(YAP_STARTUP) + 1);; + + char *tmp = NULL, *root; + if (yap_init->bootstrapping) { + restore_result = YAP_BOOT_PL; + } else if (restore_result == YAP_QLY){ + if (yap_init->SavedState == NULL) { + tmp = Malloc(strlen(YAP_STARTUP) + 1); + strncpy(tmp, YAP_STARTUP, strlen(YAP_STARTUP) + 1); + root = Malloc(YAP_FILENAME_MAX+1); + if (yap_init->YapLibDir) + strncpy( root, yap_init->YapLibDir,YAP_FILENAME_MAX ); + else + strncpy( root, YAP_LIBDIR, YAP_FILENAME_MAX ); + } else { + root = Malloc(YAP_FILENAME_MAX); + Yap_getcwd(root, YAP_FILENAME_MAX); + tmp = yap_init->SavedState; + } } #if __ANDROID__ -//if (yap_init->assetManager) - Yap_InitAssetManager(); + //if (yap_init->assetManager) + Yap_InitAssetManager(); #endif #if USE_DL_MALLOC - if (yap_init->SavedState == NULL) - yap_init->SavedState = YAP_STARTUP; + if (yap_init->SavedState == NULL) + yap_init->SavedState = YAP_STARTUP; #else - yap_init->SavedState = Yap_findFile(tmp, YAP_STARTUP, yap_init->YapLibDir, - boot_file, true, YAP_QLY, true, true); + yap_init->SavedState = Yap_findFile(tmp, YAP_STARTUP, root, + restore_file, true, YAP_QLY, true, true); #endif - if (yap_init->SavedState == NULL) { - restore_result = YAP_BOOT_PL; - } - if (restore_result == YAP_BOOT_PL) { #if USE_DL_MALLOC if (yap_init->YapPrologBootFile == NULL || yap_init->YapPrologBootFile[0] == 0) - yap_init->YapPrologBootFile = BootFile; - strcpy(boot_file, BootFile); + { + yap_init->YapPrologBootFile = YAP_BOOTFILE; + strcpy(boot_file, YAP_BOOTFILE); } #else - strcpy(boot_file, BootFile); - const char *s = Yap_findFile(yap_init->YapPrologBootFile, - BootFile, yroot, boot_file, - true, YAP_BOOT_PL, true, true); - if (s && s[0] != '\0') { - strcpy(boot_file, s); + if (yap_init->YapPrologBootFile == NULL) { + tmp = Malloc(strlen(YAP_BOOTFILE) + 1); + strncpy(tmp,YAP_BOOTFILE, strlen(YAP_BOOTFILE) + 1); + } else { + tmp = (char*)yap_init->YapPrologBootFile; } + const char *bpath; + if (yap_init->bootstrapping) + bpath = YAP_PL_SRCDIR; + else + bpath = yap_init->YapShareDir; + yap_init->YapPrologBootFile = Yap_findFile(tmp, yap_init->YapPrologBootFile, + bpath, boot_file, + true, YAP_BOOT_PL, true, true); #endif } @@ -2543,7 +2558,7 @@ X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { YAP_BOOT_PL; } else { // try always to boot from the saved state. if (restore_result == YAP_QLY) { - if (! + if (DO_ONLY_CODE != Yap_SavedInfo(yap_init ->SavedState, yap_init->YapLibDir, &Trail, &Stack, &Heap)) { @@ -2633,23 +2648,20 @@ X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologAddPath)) ); } - if (yap_init->YapShareDir) { + if (yap_init->YapPlDir) { setAtomicGlobalPrologFlag(PROLOG_LIBRARY_DIRECTORY_FLAG, - MkAtomTerm(Yap_LookupAtom(yap_init->YapShareDir)) + MkAtomTerm(Yap_LookupAtom(yap_init->YapPlDir)) ); } - if (yap_init->YapLibDir) { + if (yap_init->YapDLLDir) { setAtomicGlobalPrologFlag(PROLOG_FOREIGN_DIRECTORY_FLAG, - MkAtomTerm(Yap_LookupAtom(yap_init->YapLibDir)) + MkAtomTerm(Yap_LookupAtom(yap_init->YapDLLDir)) ); } if (yap_init->QuietMode) { setVerbosity(TermSilent); } if (restore_result == YAP_QLY) { - setAtomicGlobalPrologFlag(RESOURCE_DATABASE_FLAG, - MkAtomTerm(Yap_LookupAtom(yap_init->SavedState)) - ); LOCAL_PrologMode &= ~BootMode; CurrentModule = LOCAL_SourceModule = USER_MODULE; @@ -2658,22 +2670,18 @@ X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { rc = YAP_QLY; } else { if (boot_file[0] == '\0') - strcpy(boot_file, BootFile + strcpy(boot_file, YAP_BOOTFILE ); do_bootfile(boot_file PASS_REGS); - setAtomicGlobalPrologFlag( - RESOURCE_DATABASE_FLAG, - MkAtomTerm(Yap_LookupAtom(boot_file)) - ); setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, false); + rc = YAP_BOOT_PL; } start_modules(); YAP_initialized = true; - return - YAP_BOOT_PL; + return rc; } #if (DefTrailSpace < MinTrailSpace) @@ -2736,6 +2744,13 @@ X_API void YAP_SetOutputMessage(void) { X_API int YAP_StreamToFileNo(Term t) { return (Yap_StreamToFileNo(t)); } +/** + * Obtain a pointer to the YAP representation of a stream. + * @param sno Stream Id + * @return data structure for stream + */ +X_API void *YAP_RepStreamFromId(int sno) { return GLOBAL_Stream+sno; } + X_API void YAP_CloseAllOpenStreams(void) { BACKUP_H(); diff --git a/C/errors.c b/C/errors.c index 523282842..eba50848a 100755 --- a/C/errors.c +++ b/C/errors.c @@ -303,14 +303,14 @@ static char tmpbuf[YAP_BUF_SIZE]; } #include "YapErrors.h" - +// void Yap_pushErrorContext(yap_error_descriptor_t *new_error) { new_error->top_error = LOCAL_ActiveError; LOCAL_ActiveError = new_error; } yap_error_descriptor_t *Yap_popErrorContext(void) { - yap_error_descriptor_t *new_error = LOCAL_ActiveError; + struct yap_error_descriptor_t *new_error = LOCAL_ActiveError; LOCAL_ActiveError = LOCAL_ActiveError->top_error; return new_error; } diff --git a/C/load_dl.c b/C/load_dl.c index 6c1bb7d3a..824a889cf 100755 --- a/C/load_dl.c +++ b/C/load_dl.c @@ -159,7 +159,8 @@ int Yap_CloseForeignFile(void *handle) { * LoadForeign(ofiles,libs,proc_name,init_proc) dynamically loads foreign * code files and libraries and locates an initialization routine */ -static Int LoadForeign(StringList ofiles, StringList libs, char *proc_name, +static Int LoadForeign(StringList + ofiles, StringList libs, char *proc_name, YapInitProc *init_proc) { CACHE_REGS LOCAL_ErrorMessage = NULL; diff --git a/C/qlyr.c b/C/qlyr.c index 0144e1d26..1649b3ea3 100755 --- a/C/qlyr.c +++ b/C/qlyr.c @@ -597,8 +597,32 @@ static void RestoreHashPreds(USES_REGS1) {} static void RestoreAtomList(Atom atm USES_REGS) {} +static bool maybe_read_bytes(FILE *stream, void *ptr, size_t sz) { + do { + size_t count; + if ((count = fread(ptr, 1, sz, stream)) == sz) + return true; + if (feof(stream) || ferror(stream)) + return false; + sz -= count; + ptr += count; + } while (true); +} + static size_t read_bytes(FILE *stream, void *ptr, size_t sz) { - return fread(ptr, sz, 1, stream); + do { + size_t count = fread(ptr, 1, sz, stream); + if (count == sz) + return sz; + if (feof(stream)) { + PlIOError(PERMISSION_ERROR_INPUT_PAST_END_OF_STREAM, TermNil, "read_qly/3: expected %ld bytes got %ld", sz, count); + return 0; + } else if (ferror(stream)) { + PlIOError(PERMISSION_ERROR_INPUT_STREAM, TermNil, "read_qly/3: expected %ld bytes got error %s", sz, strerror(errno)); + return 0; + } + sz -= count; + } while(true); } static unsigned char read_byte(FILE *stream) { return getc(stream); } @@ -632,34 +656,26 @@ static pred_flags_t read_predFlags(FILE *stream) { return v; } -static bool checkChars(FILE *stream, char s[]) { - int ch, c; - char *p = s; - - while ((ch = *p++)) { - if ((c = read_byte(stream)) != ch) { - return false; - } - } - return TRUE; -} static Atom do_header(FILE *stream) { - char s[2048], *p = s, ch; + char s[2049], *p = s, *q; + char h0[] = "#!/bin/sh\nexec_dir=${YAPBINDIR:-"; + char h1[] = "exec $exec_dir/yap $0 \"$@\"\nsaved "; Atom at; - if (!checkChars(stream, "#!/bin/sh\nexec_dir=${YAPBINDIR:-")) + if (!maybe_read_bytes( stream, s, 2048) ) return NIL; - while ((ch = read_byte(stream)) != '\n') - ; - if (!checkChars(stream, "exec $exec_dir/yap $0 \"$@\"\nsaved ")) + if (strstr(s, h0)!= s) return NIL; - while ((ch = read_byte(stream)) != ',') - *p++ = ch; - *p++ = '\0'; - at = Yap_LookupAtom(s); - while ((ch = read_byte(stream))) - ; + if ((p=strstr(s, h1)) == NULL) { + return NIL; + } + p += strlen(h1); + q = strchr(p,','); + if (!q) + return NIL; + q[0] = '\0'; + at = Yap_LookupAtom(p); return at; } @@ -674,13 +690,22 @@ static Int get_header(USES_REGS1) { return FALSE; } if (!(stream = Yap_GetInputStream(t1, "header scanning in qload"))) { - return FALSE; + return false; } - if ((at = do_header(stream)) == NIL) - rc = FALSE; - else + sigjmp_buf signew, *sighold = LOCAL_RestartEnv; + LOCAL_RestartEnv = &signew; + + if (sigsetjmp(signew, 1) != 0) { + LOCAL_RestartEnv = sighold; + return false; + } + if ((at = do_header(stream)) == NIL) + rc = false; + else { rc = Yap_unify(ARG2, MkAtomTerm(at)); - return rc; + } + LOCAL_RestartEnv = sighold; + return rc; } static void ReadHash(FILE *stream) { diff --git a/C/save.c b/C/save.c index 3735b825f..3b84075e7 100755 --- a/C/save.c +++ b/C/save.c @@ -1363,7 +1363,7 @@ static int OpenRestore(const char *inpf, const char *YapLibDir, CELL *Astate, int mode; char fname[YAP_FILENAME_MAX + 1]; - if (!Yap_findFile(inpf, YAP_STARTUP, YapLibDir, fname, true, YAP_SAVED_STATE, + if (!Yap_findFile(inpf, YAP_STARTUP, YapLibDir, fname, true, YAP_QLY, true, true)) return FAIL_RESTORE; if (fname[0] && (mode = try_open(fname, Astate, ATrail, AStack, AHeap, diff --git a/C/stack.c b/C/stack.c index cdd14decc..2a96f5a20 100644 --- a/C/stack.c +++ b/C/stack.c @@ -1091,15 +1091,15 @@ bool set_clause_info(yamop *codeptr, PredEntry *pp) { Term ts[2]; void *begin; if (pp->ArityOfPE == 0) { - LOCAL_ActiveError->prologPredName = (Atom) pp->FunctorOfPred; + LOCAL_ActiveError->prologPredName = RepAtom((Atom) pp->FunctorOfPred)->StrOfAE; LOCAL_ActiveError->prologPredArity = 0; } else { - LOCAL_ActiveError->prologPredName = NameOfFunctor(pp->FunctorOfPred); + LOCAL_ActiveError->prologPredName = RepAtom(NameOfFunctor(pp->FunctorOfPred))->StrOfAE; LOCAL_ActiveError->prologPredArity = pp->ArityOfPE; } LOCAL_ActiveError->prologPredModule = - (pp->ModuleOfPred ? pp->ModuleOfPred : "prolog"); - LOCAL_ActiveError->prologPredFile = pp->src.OwnerFile; + (pp->ModuleOfPred ? RepAtom(AtomOfTerm(pp->ModuleOfPred))->StrOfAE : "prolog"); + LOCAL_ActiveError->prologPredFile = RepAtom(pp->src.OwnerFile->StrOfAE); if (codeptr->opc == UNDEF_OPCODE) { LOCAL_ActiveError->prologPredFirstLine = 0; LOCAL_ActiveError->prologPredLine = 0; diff --git a/C/text.c b/C/text.c index 413551764..8259a5456 100644 --- a/C/text.c +++ b/C/text.c @@ -102,7 +102,7 @@ void *pop_output_text_stack__(int i, const void *export) { lvl--; } LOCAL_TextBuffer->lvl = lvl; - return export; + return (void *)export; } // void pop_text_stack(int i) { LOCAL_TextBuffer->lvl = i; } diff --git a/C/yap-args.c b/C/yap-args.c index f1a91a702..0318baec5 100755 --- a/C/yap-args.c +++ b/C/yap-args.c @@ -1,33 +1,39 @@ /************************************************************************* -* * -* Yap Prolog * -* * -* Yap Prolog Was Developed At Nccup - Universidade Do Porto * -* * -* Copyright L.Damas, V.S.Costa And Universidade Do Porto 1985-1997 * -* * -************************************************************************** -* * -* File: Yap.C * -* Last Rev: * -* Mods: * -* Comments: Yap's Main File: parse arguments * -* * -*************************************************************************/ + * * + * Yap Prolog * + * * + * Yap Prolog Was Developed At Nccup - Universidade Do Porto * + * * + * Copyright L.Damas, V.S.Costa And Universidade Do Porto 1985-1997 * + * * + ************************************************************************** + * * + * File: Yap.C * Last + *Rev: * Mods: + ** Comments: Yap's Main File: parse arguments * + * * + *************************************************************************/ /* static char SccsId[] = "X 4.3.3"; */ #include "Yap.h" #include "YapHeap.h" #include "YapInterface.h" #include "config.h" + #if HAVE_UNISTD_H + #include + #endif #if HAVE_STDINT_H + #include + #endif + #include #include + #ifdef _MSC_VER /* Microsoft's Visual C++ Compiler */ #ifdef HAVE_UNISTD_H #undef HAVE_UNISTD_H @@ -35,549 +41,664 @@ #endif #include + #if HAVE_STRING_H + #include + #endif #if HAVE_ERRNO_H + #include + #endif #if HAVE_DIRECT_H #include #endif - #ifndef YAP_ROOTDIR #include -char - *YAP_BINDIR, - *YAP_ROOTDIR, - *YAP_SHAREDIR, - *YAP_LIBDIR, - *YAP_YAPLIB; #endif +const char *Yap_BINDIR, *Yap_ROOTDIR, *Yap_SHAREDIR, *Yap_LIBDIR, *Yap_DLLDIR, *Yap_PLDIR; + +const char *rootdirs[] = { + YAP_ROOTDIR, + "(EXECUTABLE)..", + "/usr/local", + "~", + NULL +}; + +const char *libdirs[] = { + "$YAPLIBDIR", + "[lib]", +#if __ANDROID__ + "/assets/lib", +#endif + YAP_LIBDIR, + "(root)lib", + NULL +}; + +const char *sharedirs[] = { + "$YAPSHAREDIR", + "[share]", +#if __ANDROID__ + "/assets/share", +#endif + YAP_SHAREDIR, + "(root)share", + NULL +}; + +const char *dlldirs[] = { + "(lib)Yap", + NULL +}; + +const char *pldirs[] = { + "(share)Yap", + NULL +}; + +/** + * @brief find default paths for main YAP variables + * + * This function is called once at boot time to set the main paths; it searches a list of paths to instantiate a number of variables. + * Paths must be directories. + * + * It treats the following variables as : + * ROOTDIR, SHAREDIR, LIBDIR, EXECUTABLE + * + * @return + */ +static const char *find_directory(const char *paths[]) { + int i = 0; + const char *inp; + char *out = malloc(YAP_FILENAME_MAX + 1); + out[0] = '\0'; + while ((inp = paths[i++]) != NULL) { + if (inp[0] == '(') { + if (strstr(inp + 1, "root") == inp + 1) { + strcpy(out, Yap_ROOTDIR); + strcat(out, "/"); + strcat(out, inp+(strlen("(root)")+1)); + } else if (strstr(inp + 1, "lib") == inp + 1) { + strcpy(out, Yap_LIBDIR); + strcat(out, "/"); + strcat(out, inp+(strlen("(lib)")+1)); + } else if (strstr(inp + 1, "share") == inp + 1) { + strcpy(out, Yap_LIBDIR); + strcat(out, "/"); + strcat(out, inp+(strlen("(share)")+1)); + } else if (strstr(inp + 1, "executable") == inp + 1) { + strcpy(out, Yap_LIBDIR); + strcat(out, "/"); + strcat(out, inp+(strlen("(executable)")+1)); + } + } else if (inp[0] == '$') { + char *e; + if ((e = getenv(inp + 1)) != NULL) { + strcpy(out, e); + return out; + } + } else if (inp[0] == '[') { + if (Yap_ROOTDIR && Yap_ROOTDIR[0] && strstr(inp + 1, "root") == inp + 1) { + strcpy(out, Yap_ROOTDIR); + } else if (Yap_LIBDIR && Yap_LIBDIR[0] && strstr(inp + 1, "lib") == inp + 1) { + strcpy(out, Yap_LIBDIR); + } else if (Yap_SHAREDIR && Yap_SHAREDIR[0] && strstr(inp + 1, "share") == inp + 1) { + strcpy(out, Yap_SHAREDIR); + } + } else { + char *e; + if ((e = getenv(inp + 1)) != NULL) { + strcpy(out, e); + } else { + out[0] = '\0'; + } + strcat(out, inp); + } + if (out[0]) { + return out; + } + } + return NULL; + +} + static void print_usage(void) { - fprintf(stderr, "\n[ Valid switches for command line arguments: ]\n"); - fprintf(stderr, " -? Shows this screen\n"); - fprintf(stderr, " -b Boot file \n"); - fprintf(stderr, " -dump-runtime-variables\n"); - fprintf(stderr, " -f initialization file or \"none\"\n"); - fprintf(stderr, " -g Run Goal Before Top-Level \n"); - fprintf(stderr, " -z Run Goal Before Top-Level \n"); - fprintf(stderr, " -q start with informational messages off\n"); - fprintf(stderr, " -l load Prolog file\n"); - fprintf(stderr, " -L run Prolog file and exit\n"); - fprintf(stderr, " -p extra path for file-search-path\n"); - fprintf(stderr, " -hSize Heap area in Kbytes (default: %d, minimum: %d)\n", - DefHeapSpace, MinHeapSpace); - fprintf(stderr, - " -sSize Stack area in Kbytes (default: %d, minimum: %d)\n", - DefStackSpace, MinStackSpace); - fprintf(stderr, - " -tSize Trail area in Kbytes (default: %d, minimum: %d)\n", - DefTrailSpace, MinTrailSpace); - fprintf(stderr, " -GSize Max Area for Global Stack\n"); - fprintf(stderr, - " -LSize Max Area for Local Stack (number must follow L)\n"); - fprintf(stderr, " -TSize Max Area for Trail (number must follow T)\n"); - fprintf(stderr, " -nosignals disable signal handling from Prolog\n"); - fprintf(stderr, "\n[Execution Modes]\n"); - fprintf(stderr, " -J0 Interpreted mode (default)\n"); - fprintf(stderr, " -J1 Mixed mode only for user predicates\n"); - fprintf(stderr, " -J2 Mixed mode for all predicates\n"); - fprintf(stderr, " -J3 Compile all user predicates\n"); - fprintf(stderr, " -J4 Compile all predicates\n"); + fprintf(stderr, "\n[ Valid switches for command line arguments: ]\n"); + fprintf(stderr, " -? Shows this screen\n"); + fprintf(stderr, " -b Boot file \n"); + fprintf(stderr, " -dump-runtime-variables\n"); + fprintf(stderr, " -f initialization file or \"none\"\n"); + fprintf(stderr, " -g Run Goal Before Top-Level \n"); + fprintf(stderr, " -z Run Goal Before Top-Level \n"); + fprintf(stderr, " -q start with informational messages off\n"); + fprintf(stderr, " -l load Prolog file\n"); + fprintf(stderr, " -L run Prolog file and exit\n"); + fprintf(stderr, " -p extra path for file-search-path\n"); + fprintf(stderr, " -hSize Heap area in Kbytes (default: %d, minimum: %d)\n", + DefHeapSpace, MinHeapSpace); + fprintf(stderr, + " -sSize Stack area in Kbytes (default: %d, minimum: %d)\n", + DefStackSpace, MinStackSpace); + fprintf(stderr, + " -tSize Trail area in Kbytes (default: %d, minimum: %d)\n", + DefTrailSpace, MinTrailSpace); + fprintf(stderr, " -GSize Max Area for Global Stack\n"); + fprintf(stderr, + " -LSize Max Area for Local Stack (number must follow L)\n"); + fprintf(stderr, " -TSize Max Area for Trail (number must follow T)\n"); + fprintf(stderr, " -nosignals disable signal handling from Prolog\n"); + fprintf(stderr, "\n[Execution Modes]\n"); + fprintf(stderr, " -J0 Interpreted mode (default)\n"); + fprintf(stderr, " -J1 Mixed mode only for user predicates\n"); + fprintf(stderr, " -J2 Mixed mode for all predicates\n"); + fprintf(stderr, " -J3 Compile all user predicates\n"); + fprintf(stderr, " -J4 Compile all predicates\n"); #ifdef TABLING - fprintf(stderr, - " -ts Maximum table space area in Mbytes (default: unlimited)\n"); + fprintf(stderr, + " -ts Maximum table space area in Mbytes (default: unlimited)\n"); #endif /* TABLING */ -#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ +#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ defined(YAPOR_THREADS) - fprintf(stderr, " -w Number of workers (default: %d)\n", - DEFAULT_NUMBERWORKERS); - fprintf(stderr, " -sl Loop scheduler executions before look for hiden " - "shared work (default: %d)\n", - DEFAULT_SCHEDULERLOOP); - fprintf(stderr, " -d Value of delayed release of load (default: %d)\n", - DEFAULT_DELAYEDRELEASELOAD); + fprintf(stderr, " -w Number of workers (default: %d)\n", + DEFAULT_NUMBERWORKERS); + fprintf(stderr, + " -sl Loop scheduler executions before look for hiden " + "shared work (default: %d)\n", + DEFAULT_SCHEDULERLOOP); + fprintf(stderr, " -d Value of delayed release of load (default: %d)\n", + DEFAULT_DELAYEDRELEASELOAD); #endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA || YAPOR_THREADS */ - /* nf: Preprocessor */ - /* fprintf(stderr," -DVar=Name Persistent definition\n"); */ - fprintf(stderr, "\n"); + /* nf: Preprocessor */ + /* fprintf(stderr," -DVar=Name Persistent definition\n"); */ + fprintf(stderr, "\n"); } static int myisblank(int c) { - switch (c) { - case ' ': - case '\t': - case '\n': - case '\r': - return TRUE; - default: - return FALSE; - } + switch (c) { + case ' ': + case '\t': + case '\n': + case '\r': + return TRUE; + default: + return FALSE; + } } static char *add_end_dot(char arg[]) { - int sz = strlen(arg), i; - i = sz; - while (i && myisblank(arg[--i])) - ; - if (i && arg[i] != ',') { - char *p = (char *)malloc(sz + 2); - if (!p) - return NULL; - strncpy(p, arg, sz); - p[sz] = '.'; - p[sz + 1] = '\0'; - return p; - } - return arg; + int sz = strlen(arg), i; + i = sz; + while (i && myisblank(arg[--i])); + if (i && arg[i] != ',') { + char *p = (char *) malloc(sz + 2); + if (!p) + return NULL; + strncpy(p, arg, sz); + p[sz] = '.'; + p[sz + 1] = '\0'; + return p; + } + return arg; } static int dump_runtime_variables(void) { - fprintf(stdout, "CC=\"%s\"\n", C_CC); - fprintf(stdout, "YAP_ROOTDIR=\"%s\"\n", YAP_ROOTDIR); - fprintf(stdout, "YAP_LIBS=\"%s\"\n", C_LIBS); - fprintf(stdout, "YAP_SHLIB_SUFFIX=\"%s\"\n", SO_EXT); - fprintf(stdout, "YAP_VERSION=%s\n", YAP_NUMERIC_VERSION); - exit(0); - return 1; + fprintf(stdout, "CC=\"%s\"\n", C_CC); + fprintf(stdout, "YAP_ROOTDIR=\"%s\"\n", YAP_ROOTDIR); + fprintf(stdout, "YAP_LIBS=\"%s\"\n", C_LIBS); + fprintf(stdout, "YAP_SHLIB_SUFFIX=\"%s\"\n", SO_EXT); + fprintf(stdout, "YAP_VERSION=%s\n", YAP_NUMERIC_VERSION); + exit(0); + return 1; } -X_API YAP_file_type_t Yap_InitDefaults(void *x, char *saved_state, - int argc, char *argv[]) { -YAP_init_args *iap = x; +X_API YAP_file_type_t Yap_InitDefaults(void *x, char *saved_state, int argc, + char *argv[]) { + YAP_init_args *iap = x; memset(iap, 0, sizeof(YAP_init_args)); #if __ANDROID__ - iap->boot_file_type = YAP_BOOT_PL; - iap->SavedState = NULL; - iap->assetManager = NULL; + iap->boot_file_type = YAP_BOOT_PL; + iap->SavedState = NULL; + iap->assetManager = NULL; #else - iap->boot_file_type = YAP_QLY; - iap->SavedState = saved_state; + iap->boot_file_type = YAP_QLY; + iap->SavedState = saved_state; #endif - iap->Argc = argc; - iap->Argv = argv; - iap->YapLibDir = YAP_YAPLIB; - return iap->boot_file_type; + iap->Argc = argc; + iap->Argv = argv; + Yap_ROOTDIR = find_directory(rootdirs); + Yap_LIBDIR = find_directory(libdirs); + Yap_SHAREDIR = find_directory(sharedirs); + Yap_DLLDIR = find_directory(dlldirs); + Yap_PLDIR = find_directory(pldirs); + return YAP_QLY; } -X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[], - YAP_init_args *iap) { - char *p; - size_t *ssize; - +/** + * @short Paese command line + * @param argc number of arguments + * @param argv arguments + * @param iap options, see YAP_init_args + * @return boot from saved state or restore; error + */ + X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[], + YAP_init_args *iap) { + char *p; + size_t *ssize; #ifndef YAP_ROOTDIR - { - char *b0=Yap_FindExecutable(), *b1, *b2; - char b[YAP_FILENAME_MAX + 1]; + { + char *b0 = Yap_FindExecutable(), *b1, *b2; + char b[YAP_FILENAME_MAX + 1]; - strncpy(b, b0, YAP_FILENAME_MAX); - b1 = dirname(b); - YAP_BINDIR = malloc(strlen(b1)+1); - strcpy(YAP_BINDIR, b1); - b2 = dirname(b1); - YAP_ROOTDIR = malloc(strlen(b2)+1); - strcpy(YAP_ROOTDIR, b2); - strncpy(b, YAP_ROOTDIR, YAP_FILENAME_MAX); - strncat( b, "/share", YAP_FILENAME_MAX); - YAP_SHAREDIR= malloc(strlen(b)+1); - strcpy(YAP_SHAREDIR, b); - strncpy(b, YAP_ROOTDIR, YAP_FILENAME_MAX); - strncat( b, "/lib", YAP_FILENAME_MAX); - YAP_LIBDIR= malloc(strlen(b)+1); - strcpy(YAP_LIBDIR, b); - strncpy(b, YAP_ROOTDIR, YAP_FILENAME_MAX); - strncat( b, "/lib/Yap", YAP_FILENAME_MAX); - YAP_YAPLIB= malloc(strlen(b)+1); - strcpy(YAP_YAPLIB, b); -}; + strncpy(b, b0, YAP_FILENAME_MAX); + b1 = dirname(b); + YAP_BINDIR = malloc(strlen(b1) + 1); + strcpy(YAP_BINDIR, b1); + b2 = dirname(b1); + YAP_ROOTDIR = malloc(strlen(b2) + 1); + strcpy(YAP_ROOTDIR, b2); + strncpy(b, YAP_ROOTDIR, YAP_FILENAME_MAX); + strncat(b, "/share", YAP_FILENAME_MAX); + YAP_SHAREDIR = malloc(strlen(b) + 1); + strcpy(YAP_SHAREDIR, b); + strncpy(b, YAP_ROOTDIR, YAP_FILENAME_MAX); + strncat(b, "/lib", YAP_FILENAME_MAX); + YAP_LIBDIR = malloc(strlen(b) + 1); + strcpy(YAP_LIBDIR, b); + strncpy(b, YAP_ROOTDIR, YAP_FILENAME_MAX); + strncat(b, "/lib/Yap", YAP_FILENAME_MAX); + }; #endif - Yap_InitDefaults(iap, NULL, argc, argv); - while (--argc > 0) { - p = *++argv; - if (*p == '-') - switch (*++p) { - case 'b': - iap->boot_file_type = YAP_PL; - if (p[1]) - iap->YapPrologBootFile = p + 1; - else if (argv[1] && *argv[1] != '-') { - iap->YapPrologBootFile = *++argv; - argc--; - } else { - iap->YapPrologBootFile = "boot.yap"; - } - break; - case 'B': - iap->boot_file_type = YAP_BOOT_PL; - if (p[1]) - iap->YapPrologBootFile = p + 1; - else if (argv[1] && *argv[1] != '-') { - iap->YapPrologBootFile = *++argv; - argc--; - } else { - iap->YapPrologBootFile = "boot.yap"; - } - break; - case '?': - print_usage(); - exit(EXIT_SUCCESS); - case 'q': - iap->QuietMode = TRUE; - break; -#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ + Yap_InitDefaults(iap, NULL, argc, argv); + while (--argc > 0) { + p = *++argv; + if (*p == '-') + switch (*++p) { + case 'b': + iap->boot_file_type = YAP_PL; + if (p[1]) + iap->YapPrologBootFile = p + 1; + else if (argv[1] && *argv[1] != '-') { + iap->YapPrologBootFile = *++argv; + argc--; + } else { + iap->YapPrologBootFile = "boot.yap"; + } + break; + case 'B': + iap->boot_file_type = YAP_BOOT_PL; + if (p[1]) + iap->YapPrologBootFile = p + 1; + else if (argv[1] && *argv[1] != '-') { + iap->YapPrologBootFile = *++argv; + argc--; + } else { + iap->YapPrologBootFile = NULL; + } + iap->bootstrapping = true; + break; + case '?': + print_usage(); + exit(EXIT_SUCCESS); + case 'q': + iap->QuietMode = TRUE; + break; +#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ defined(YAPOR_THREADS) - case 'w': - ssize = &(iap->NumberWorkers); - goto GetSize; - case 'd': - if (!strcmp("dump-runtime-variables", p)) - return dump_runtime_variables(); - ssize = &(iap->DelayedReleaseLoad); - goto GetSize; + case 'w': + ssize = &(iap->NumberWorkers); + goto GetSize; + case 'd': + if (!strcmp("dump-runtime-variables", p)) + return dump_runtime_variables(); + ssize = &(iap->DelayedReleaseLoad); + goto GetSize; #else - case 'd': - if (!strcmp("dump-runtime-variables", p)) - return dump_runtime_variables(); + case 'd': + if (!strcmp("dump-runtime-variables", p)) + return dump_runtime_variables(); #endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA || YAPOR_THREADS */ - case 'F': - /* just ignore for now */ - argc--; - argv++; - break; - case 'f': - iap->FastBoot = TRUE; - if (argc > 1 && argv[1][0] != '-') { - argc--; - argv++; - if (strcmp(*argv, "none")) { - iap->YapPrologRCFile = *argv; - } - break; - } - break; - // execution mode - case 'J': - switch (p[1]) { - case '0': - iap->ExecutionMode = YAPC_INTERPRETED; - break; - case '1': - iap->ExecutionMode = YAPC_MIXED_MODE_USER; - break; - case '2': - iap->ExecutionMode = YAPC_MIXED_MODE_ALL; - break; - case '3': - iap->ExecutionMode = YAPC_COMPILE_USER; - break; - case '4': - iap->ExecutionMode = YAPC_COMPILE_ALL; - break; - default: - fprintf(stderr, "[ YAP unrecoverable error: unknown switch -%c%c ]\n", - *p, p[1]); - exit(EXIT_FAILURE); - } - p++; - break; - case 'G': - ssize = &(iap->MaxGlobalSize); - goto GetSize; - break; - case 's': - case 'S': - ssize = &(iap->StackSize); -#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ + case 'F': + /* just ignore for now */ + argc--; + argv++; + break; + case 'f': + iap->FastBoot = TRUE; + if (argc > 1 && argv[1][0] != '-') { + argc--; + argv++; + if (strcmp(*argv, "none")) { + iap->YapPrologRCFile = *argv; + } + break; + } + break; + // execution mode + case 'J': + switch (p[1]) { + case '0': + iap->ExecutionMode = YAPC_INTERPRETED; + break; + case '1': + iap->ExecutionMode = YAPC_MIXED_MODE_USER; + break; + case '2': + iap->ExecutionMode = YAPC_MIXED_MODE_ALL; + break; + case '3': + iap->ExecutionMode = YAPC_COMPILE_USER; + break; + case '4': + iap->ExecutionMode = YAPC_COMPILE_ALL; + break; + default: + fprintf(stderr, "[ YAP unrecoverable error: unknown switch -%c%c ]\n", + *p, p[1]); + exit(EXIT_FAILURE); + } + p++; + break; + case 'G': + ssize = &(iap->MaxGlobalSize); + goto GetSize; + break; + case 's': + case 'S': + ssize = &(iap->StackSize); +#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ defined(YAPOR_THREADS) - if (p[1] == 'l') { - p++; - ssize = &(iap->SchedulerLoop); - } + if (p[1] == 'l') { + p++; + ssize = &(iap->SchedulerLoop); + } #endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA || YAPOR_THREADS */ - goto GetSize; - case 'a': - case 'A': - ssize = &(iap->AttsSize); - goto GetSize; - case 'T': - ssize = &(iap->MaxTrailSize); - goto get_trail_size; - case 't': - ssize = &(iap->TrailSize); + goto GetSize; + case 'a': + case 'A': + ssize = &(iap->AttsSize); + goto GetSize; + case 'T': + ssize = &(iap->MaxTrailSize); + goto get_trail_size; + case 't': + ssize = &(iap->TrailSize); #ifdef TABLING - if (p[1] == 's') { - p++; - ssize = &(iap->MaxTableSpaceSize); - } + if (p[1] == 's') { + p++; + ssize = &(iap->MaxTableSpaceSize); + } #endif /* TABLING */ - get_trail_size: - if (*++p == '\0') { - if (argc > 1) - --argc, p = *++argv; - else { - fprintf(stderr, - "[ YAP unrecoverable error: missing size in flag %s ]", - argv[0]); - print_usage(); - exit(EXIT_FAILURE); - } - } - { - unsigned long int i = 0, ch; - while ((ch = *p++) >= '0' && ch <= '9') - i = i * 10 + ch - '0'; - switch (ch) { - case 'M': - case 'm': - i *= 1024; - ch = *p++; - break; - case 'g': - i *= 1024 * 1024; - ch = *p++; - break; - case 'k': - case 'K': - ch = *p++; - break; - } - if (ch) { - iap->YapPrologTopLevelGoal = add_end_dot(*argv); - } else { - *ssize = i; - } - } - break; - case 'h': - case 'H': - ssize = &(iap->HeapSize); - GetSize: - if (*++p == '\0') { - if (argc > 1) - --argc, p = *++argv; - else { - fprintf(stderr, - "[ YAP unrecoverable error: missing size in flag %s ]", - argv[0]); - print_usage(); - exit(EXIT_FAILURE); - } - } - { - unsigned long int i = 0, ch; - while ((ch = *p++) >= '0' && ch <= '9') - i = i * 10 + ch - '0'; - switch (ch) { - case 'M': - case 'm': - i *= 1024; - ch = *p++; - break; - case 'g': - case 'G': - i *= 1024 * 1024; - ch = *p++; - break; - case 'k': - case 'K': - ch = *p++; - break; - } - if (ch) { - fprintf( - stderr, - "[ YAP unrecoverable error: illegal size specification %s ]", - argv[-1]); - Yap_exit(1); - } - *ssize = i; - } - break; + get_trail_size: + if (*++p == '\0') { + if (argc > 1) + --argc, p = *++argv; + else { + fprintf(stderr, + "[ YAP unrecoverable error: missing size in flag %s ]", + argv[0]); + print_usage(); + exit(EXIT_FAILURE); + } + } + { + unsigned long int i = 0, ch; + while ((ch = *p++) >= '0' && ch <= '9') + i = i * 10 + ch - '0'; + switch (ch) { + case 'M': + case 'm': + i *= 1024; + ch = *p++; + break; + case 'g': + i *= 1024 * 1024; + ch = *p++; + break; + case 'k': + case 'K': + ch = *p++; + break; + } + if (ch) { + iap->YapPrologTopLevelGoal = add_end_dot(*argv); + } else { + *ssize = i; + } + } + break; + case 'h': + case 'H': + ssize = &(iap->HeapSize); + GetSize: + if (*++p == '\0') { + if (argc > 1) + --argc, p = *++argv; + else { + fprintf(stderr, + "[ YAP unrecoverable error: missing size in flag %s ]", + argv[0]); + print_usage(); + exit(EXIT_FAILURE); + } + } + { + unsigned long int i = 0, ch; + while ((ch = *p++) >= '0' && ch <= '9') + i = i * 10 + ch - '0'; + switch (ch) { + case 'M': + case 'm': + i *= 1024; + ch = *p++; + break; + case 'g': + case 'G': + i *= 1024 * 1024; + ch = *p++; + break; + case 'k': + case 'K': + ch = *p++; + break; + } + if (ch) { + fprintf( + stderr, + "[ YAP unrecoverable error: illegal size specification %s ]", + argv[-1]); + Yap_exit(1); + } + *ssize = i; + } + break; #ifdef DEBUG - case 'P': - if (p[1] != '\0') { - while (p[1] != '\0') { - int ch = p[1]; - if (ch >= 'A' && ch <= 'Z') - ch += ('a' - 'A'); - if (ch >= 'a' && ch <= 'z') - GLOBAL_Option[ch - 96] = 1; - p++; - } - } else { - YAP_SetOutputMessage(); - } - break; + case 'P': + if (p[1] != '\0') { + while (p[1] != '\0') { + int ch = p[1]; + if (ch >= 'A' && ch <= 'Z') + ch += ('a' - 'A'); + if (ch >= 'a' && ch <= 'z') + GLOBAL_Option[ch - 96] = 1; + p++; + } + } else { + YAP_SetOutputMessage(); + } + break; #endif - case 'L': - if (p[1] && p[1] >= '0' && - p[1] <= '9') /* hack to emulate SWI's L local option */ - { - ssize = &(iap->MaxStackSize); - goto GetSize; + case 'L': + if (p[1] && p[1] >= '0' && + p[1] <= '9') /* hack to emulate SWI's L local option */ + { + ssize = &(iap->MaxStackSize); + goto GetSize; + } + iap->QuietMode = TRUE; + iap->HaltAfterConsult = TRUE; + case 'l': + p++; + if (!*++argv) { + fprintf(stderr, + "%% YAP unrecoverable error: missing load file name\n"); + exit(1); + } else if (!strcmp("--", *argv)) { + /* shell script, the next entry should be the file itself */ + iap->YapPrologRCFile = argv[1]; + argc = 1; + break; + } else { + iap->YapPrologRCFile = *argv; + argc--; + } + if (*p) { + /* we have something, usually, of the form: + -L -- + FileName + ExtraArgs + */ + /* being called from a script */ + while (*p && (*p == ' ' || *p == '\t')) + p++; + if (p[0] == '-' && p[1] == '-') { + /* ignore what is next */ + argc = 1; + } + } + break; + /* run goal before top-level */ + case 'g': + if ((*argv)[0] == '\0') + iap->YapPrologGoal = *argv; + else { + argc--; + if (argc == 0) { + fprintf(stderr, " [ YAP unrecoverable error: missing " + "initialization goal for option 'g' ]\n"); + exit(EXIT_FAILURE); + } + argv++; + iap->YapPrologGoal = *argv; + } + break; + /* run goal as top-level */ + case 'z': + if ((*argv)[0] == '\0') + iap->YapPrologTopLevelGoal = *argv; + else { + argc--; + if (argc == 0) { + fprintf( + stderr, + " [ YAP unrecoverable error: missing goal for option 'z' ]\n"); + exit(EXIT_FAILURE); + } + argv++; + iap->YapPrologTopLevelGoal = add_end_dot(*argv); + } + break; + case 'n': + if (!strcmp("nosignals", p)) { + iap->PrologCannotHandleInterrupts = true; + break; + } + break; + case '-': + if (!strcmp("-nosignals", p)) { + iap->PrologCannotHandleInterrupts = true; + break; + } else if (!strncmp("-home=", p, strlen("-home="))) { + GLOBAL_Home = p + strlen("-home="); + } else if (!strncmp("-cwd=", p, strlen("-cwd="))) { + if (!Yap_ChDir(p + strlen("-cwd="))) { + fprintf(stderr, " [ YAP unrecoverable error in setting cwd: %s ]\n", + strerror(errno)); + } + } else if (!strncmp("-stack=", p, strlen("-stack="))) { + ssize = &(iap->StackSize); + p += strlen("-stack="); + goto GetSize; + } else if (!strncmp("-trail=", p, strlen("-trail="))) { + ssize = &(iap->TrailSize); + p += strlen("-trail="); + goto GetSize; + } else if (!strncmp("-heap=", p, strlen("-heap="))) { + ssize = &(iap->HeapSize); + p += strlen("-heap="); + goto GetSize; + } else if (!strncmp("-goal=", p, strlen("-goal="))) { + iap->YapPrologGoal = p + strlen("-goal="); + } else if (!strncmp("-top-level=", p, strlen("-top-level="))) { + iap->YapPrologTopLevelGoal = p + strlen("-top-level="); + } else if (!strncmp("-table=", p, strlen("-table="))) { + ssize = &(iap->MaxTableSpaceSize); + p += strlen("-table="); + goto GetSize; + } else if (!strncmp("-", p, strlen("-="))) { + ssize = &(iap->MaxTableSpaceSize); + p += strlen("-table="); + /* skip remaining arguments */ + argc = 1; + } + break; + case 'p': + if ((*argv)[0] == '\0') + iap->YapPrologAddPath = *argv; + else { + argc--; + if (argc == 0) { + fprintf( + stderr, + " [ YAP unrecoverable error: missing paths for option 'p' ]\n"); + exit(EXIT_FAILURE); + } + argv++; + iap->YapPrologAddPath = *argv; + } + break; + /* nf: Begin preprocessor code */ + case 'D': { + char *var, *value; + ++p; + var = p; + if (var == NULL || *var == '\0') + break; + while (*p != '=' && *p != '\0') + ++p; + if (*p == '\0') + break; + *p = '\0'; + ++p; + value = p; + if (*value == '\0') + break; + if (iap->def_c == YAP_MAX_YPP_DEFS) + break; + iap->def_var[iap->def_c] = var; + iap->def_value[iap->def_c] = value; + ++(iap->def_c); + break; + } + /* End preprocessor code */ + default: { + fprintf(stderr, "[ YAP unrecoverable error: unknown switch -%c ]\n", + *p); + print_usage(); + exit(EXIT_FAILURE); + } + } + else { + iap->SavedState = p; + } } - iap->QuietMode = TRUE; - iap->HaltAfterConsult = TRUE; - case 'l': - p++; - if (!*++argv) { - fprintf(stderr, - "%% YAP unrecoverable error: missing load file name\n"); - exit(1); - } else if (!strcmp("--", *argv)) { - /* shell script, the next entry should be the file itself */ - iap->YapPrologRCFile = argv[1]; - argc = 1; - break; - } else { - iap->YapPrologRCFile = *argv; - argc--; - } - if (*p) { - /* we have something, usually, of the form: - -L -- - FileName - ExtraArgs - */ - /* being called from a script */ - while (*p && (*p == ' ' || *p == '\t')) - p++; - if (p[0] == '-' && p[1] == '-') { - /* ignore what is next */ - argc = 1; - } - } - break; - /* run goal before top-level */ - case 'g': - if ((*argv)[0] == '\0') - iap->YapPrologGoal = *argv; - else { - argc--; - if (argc == 0) { - fprintf(stderr, " [ YAP unrecoverable error: missing " - "initialization goal for option 'g' ]\n"); - exit(EXIT_FAILURE); - } - argv++; - iap->YapPrologGoal = *argv; - } - break; - /* run goal as top-level */ - case 'z': - if ((*argv)[0] == '\0') - iap->YapPrologTopLevelGoal = *argv; - else { - argc--; - if (argc == 0) { - fprintf( - stderr, - " [ YAP unrecoverable error: missing goal for option 'z' ]\n"); - exit(EXIT_FAILURE); - } - argv++; - iap->YapPrologTopLevelGoal = add_end_dot(*argv); - } - break; - case 'n': - if (!strcmp("nosignals", p)) { - iap->PrologCannotHandleInterrupts = true; - break; - } - break; - case '-': - if (!strcmp("-nosignals", p)) { - iap->PrologCannotHandleInterrupts = true; - break; - } else if (!strncmp("-home=", p, strlen("-home="))) { - GLOBAL_Home = p + strlen("-home="); - } else if (!strncmp("-cwd=", p, strlen("-cwd="))) { - if (!Yap_ChDir(p + strlen("-cwd=")) ) { - fprintf(stderr, " [ YAP unrecoverable error in setting cwd: %s ]\n", - strerror(errno)); - } - } else if (!strncmp("-stack=", p, strlen("-stack="))) { - ssize = &(iap->StackSize); - p += strlen("-stack="); - goto GetSize; - } else if (!strncmp("-trail=", p, strlen("-trail="))) { - ssize = &(iap->TrailSize); - p += strlen("-trail="); - goto GetSize; - } else if (!strncmp("-heap=", p, strlen("-heap="))) { - ssize = &(iap->HeapSize); - p += strlen("-heap="); - goto GetSize; - } else if (!strncmp("-goal=", p, strlen("-goal="))) { - iap->YapPrologGoal = p + strlen("-goal="); - } else if (!strncmp("-top-level=", p, strlen("-top-level="))) { - iap->YapPrologTopLevelGoal = p + strlen("-top-level="); - } else if (!strncmp("-table=", p, strlen("-table="))) { - ssize = &(iap->MaxTableSpaceSize); - p += strlen("-table="); - goto GetSize; - } else if (!strncmp("-", p, strlen("-="))) { - ssize = &(iap->MaxTableSpaceSize); - p += strlen("-table="); - /* skip remaining arguments */ - argc = 1; - } - break; - case 'p': - if ((*argv)[0] == '\0') - iap->YapPrologAddPath = *argv; - else { - argc--; - if (argc == 0) { - fprintf( - stderr, - " [ YAP unrecoverable error: missing paths for option 'p' ]\n"); - exit(EXIT_FAILURE); - } - argv++; - iap->YapPrologAddPath = *argv; - } - break; - /* nf: Begin preprocessor code */ - case 'D': { - char *var, *value; - ++p; - var = p; - if (var == NULL || *var == '\0') - break; - while (*p != '=' && *p != '\0') - ++p; - if (*p == '\0') - break; - *p = '\0'; - ++p; - value = p; - if (*value == '\0') - break; - if (iap->def_c == YAP_MAX_YPP_DEFS) - break; - iap->def_var[iap->def_c] = var; - iap->def_value[iap->def_c] = value; - ++(iap->def_c); - break; - } - /* End preprocessor code */ - default: { - fprintf(stderr, "[ YAP unrecoverable error: unknown switch -%c ]\n", - *p); - print_usage(); - exit(EXIT_FAILURE); - } - } - else { - iap->SavedState = p; + return iap->boot_file_type; } - } - return iap->boot_file_type; -} diff --git a/CMakeLists.txt b/CMakeLists.txt index f70b7ec6f..72dcde353 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,11 +7,11 @@ cmake_minimum_required(VERSION 3.4) # value of 3.4.0 or lower. include(CMakeToolsHelpers OPTIONAL) -project(YAP) - include(FeatureSummary) include(GNUInstallDirs) +project(YAP) + set(YAP_APP_DIR "${CMAKE_SOURCE_DIR}/../..") cmake_policy(VERSION 3.4) @@ -219,7 +219,7 @@ if (ANACONDA) #set(CMAKE_LIBRARY_PATH $ENV{SYS_PREFIX}/lib $ENV{SYS_PREFIX}/lib ${CMAKE_LIBRARY_PATH}) # set(ENV{PATH} PATH $ENV{PREFIX}/bin $ENV{SYS_PREFIX}/bin $ENV{PATH}) # set(PATH $ENV{PATH} ${PATH}) - #set( CMAKE_INSTALL_PREFIX $ENV{PREFIX} ) + #set( CMAKE_INSTALL_FULL_PREFIX $ENV{PREFIX} ) set( PYTHON_LIBRARY $ENV{PREFIX}/lib/libpython$ENV{PY_VER}m$ENV{SHLIB_EXT}) set( PYTHON_INCLUDE_DIR $ENV{PREFIX}/include/python$ENV{PY_VER}m) set(YAP_IS_MOVABLE 1) @@ -249,42 +249,28 @@ if (APPLE) endif () endif () -set(prefix ${CMAKE_INSTALL_PREFIX}) #BINDIR}) -set(bindir ${CMAKE_INSTALL_PREFIX}/bin) #BINDIR}) -set(includedir ${CMAKE_INSTALL_PREFIX}/include) #INCLUDEDIR}) -set(libdir ${CMAKE_INSTALL_PREFIX}/lib) #LIBDIR}) -set(exec_prefix ${CMAKE_INSTALL_PREFIX}/libexec) #LIBEXECDIR}) -set(datarootdir ${CMAKE_INSTALL_PREFIX}/share) #DATAROOTDIR}) -set(datadir ${CMAKE_INSTALL_PREFIX}/share) #DATADIR}) -if (ANDROID) - set(datarootdir ${YAP_APP_DIR}/src/generated/assets) - set(datadir ${YAP_APP_DIR}/src/generated/assets) -endif () -set(mandir ${CMAKE_INSTALL_PREFIX}/share/man) #MANDIR}) -set(docdir ${CMAKE_INSTALL_PREFIX}/share/docs) #MANDIR}) - -set(libpl ${datarootdir}/Yap) - -set(dlls ${libdir}/Yap) - -set(YAP_ROOTDIR ${prefix}) +set(YAP_ROOTDIR ${CMAKE_INSTALL_PREFIX}) # erootdir -> rootdir -# bindir defined above # libdir defined above -set(YAP_SHAREDIR ${datarootdir}) -set(YAP_BINDIR ${bindir}) -set(YAP_INCLUDEDIR ${includedir}) -set(YAP_ROOTDIR ${prefix}) -set(YAP_LIBDIR ${dlls}) +set(YAP_DATADIR ${CMAKE_INSTALL_FULL_DATADIR}) +set(YAP_INCLUDEDIR ${CMAKE_INSTALL_FULL_INCLUDEDIR}/Yap) +set(YAP_LIBDIR ${CMAKE_INSTALL_FULL_LIBDIR}) +set(YAP_DLLDIR ${CMAKE_INSTALL_FULL_LIBDIR}/Yap) +set(YAP_PLDIR ${CMAKE_INSTALL_FULL_DATADIR}/Yap) + +set(YAP_INSTALL_DLLDIR ${CMAKE_INSTALL_LIBDIR}/Yap) +set(YAP_INSTALL_PLDIR ${CMAKE_INSTALL_DATADIR}/Yap) + +set(libpl ${YAP_INSTALL_PLDIR}) # # -# include( Sources NO_POLICY_SCOPE ) +# include( Sources ) # -# include( Model NO_POLICY_SCOPE ) +# include( Model ) -include(cudd NO-POLICY-SCOPE) -include(java NO-POLICY-SCOPE) +include(cudd ) +include(java ) set(pl_library "" CACHE INTERNAL "prolog library files") set(pl_os_library "" CACHE INTERNAL "prolog os files") @@ -471,7 +457,7 @@ option(WITH_PYTHON "Allow Python->YAP and YAP->Python" ON) IF (WITH_PYTHON) - include(python NO_POLICY_SCOPE) + include(python ) ENDIF (WITH_PYTHON) @@ -529,6 +515,7 @@ endif () set(YAP_STARTUP startup.yss) +set(YAP_BOOTFILE boot.yap ) ## define system # Optional libraries that affect compilation @@ -555,7 +542,7 @@ set_property(DIRECTORY PROPERTY CXX_STANDARD 11) # (but later on when installing) #SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) -# SET(CMAKE_INSTALL_RPATH ${CMAKE_TOP_BINARY_DIR}) +# SET(CMAKE_INSTALL_FULL_RPATH ${CMAKE_TOP_BINARY_DIR}) # add the automatically determined parts of the RPATH # which point to directories outside the build tree to the install RPATH @@ -786,9 +773,9 @@ set_target_properties(yap-bin PROPERTIES OUTPUT_NAME yap) target_link_libraries(yap-bin libYap) install(TARGETS libYap yap-bin - RUNTIME DESTINATION ${bindir} - LIBRARY DESTINATION ${libdir} - ARCHIVE DESTINATION ${libdir} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) @@ -802,7 +789,7 @@ if (NOT ANDROID) add_subDIRECTORY(library/lammpi) -if (MPI_C_FOUND\D) +if (MPI_C_FOUND) CMAKE_DEPENDENT_OPTION(WITH_MPI ON "Interface to OpenMPI/MPICH" "MPI_C_FOUND" OFF) @@ -827,15 +814,20 @@ endif(NOT ANDROID) # +install(FILES ${INCLUDE_HEADERS} ${CONFIGURATION_HEADERS} DESTINATION ${YAP_INCLUDEDIR} ) + + macro_display_feature_log() if (POLICY CMP0058) cmake_policy(SET CMP0058 NEW) endif (POLICY CMP0058) -include(Config NO_POLICY_SCOPE) +include(Config ) feature_summary(WHAT ENABLED_FEATURES DISABLED_FEATURES INCLUDE_QUIET_PACKAGES ) + + diff --git a/CXX/CMakeLists.txt b/CXX/CMakeLists.txt index ef4572bb7..69da54bfb 100644 --- a/CXX/CMakeLists.txt +++ b/CXX/CMakeLists.txt @@ -18,9 +18,9 @@ else() MY_target_link_libraries(YAP++ ${CMAKE_DL_LIBS} libYap) MY_install(TARGETS YAP++ - LIBRARY DESTINATION ${libdir} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${libdir} + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) endif() diff --git a/CXX/yapi.cpp b/CXX/yapi.cpp index f7fc1e8fb..360310a89 100644 --- a/CXX/yapi.cpp +++ b/CXX/yapi.cpp @@ -938,7 +938,8 @@ void YAPEngine::doInit(YAP_file_type_t BootMode) #if YAP_PYTHON do_init_python(); #endif - YAPPredicate p = YAPPredicate( YAPAtomTerm("initialize_prolog") ); + std::string s = "initialize_prolog"; + YAPPredicate p = YAPPredicate( YAPAtomTerm(s) ); YAPQuery initq = YAPQuery(YAPPredicate(p), nullptr); if (initq.next()) { diff --git a/CXX/yapt.hh b/CXX/yapt.hh index c88519dc8..bab6c9ef5 100644 --- a/CXX/yapt.hh +++ b/CXX/yapt.hh @@ -194,7 +194,7 @@ public: virtual bool isGround() { return Yap_IsGroundTerm(gt()); } /// term is ground virtual bool isList() { return Yap_IsListTerm(gt()); } /// term is a list - /// extract the argument i of the term, where i in 1...arity + /// extract the argument i of the term, where i in 1...arityvoid *Yap_RepStreamFromId(int sno) virtual Term getArg(arity_t i) { BACKUP_MACHINE_REGS(); Term tf = 0; @@ -493,7 +493,7 @@ public: * Term Representation of an Atom */ class X_API YAPAtomTerm : public YAPTerm { - friend class YAPModule; + friend class YAPModule; // Constructor: receives a C-atom; YAPAtomTerm(Term t) : YAPTerm(t) { IsAtomTerm(t); } @@ -501,15 +501,17 @@ public: YAPAtomTerm(Atom a) { mk(MkAtomTerm(a)); } // Constructor: receives an atom; YAPAtomTerm(YAPAtom a) : YAPTerm() { mk(MkAtomTerm(a.a)); } - // Constructor: receives a sequence of ISO-LATIN1 codes; + // Constructor: receives a sequence of UTF-8 codes; YAPAtomTerm(char s[]); - // Constructor: receives a sequence of up to n ISO-LATIN1 codes; + // Constructor: receives a sequence of up to n UTF-8 codes; YAPAtomTerm(char *s, size_t len); // Constructor: receives a sequence of wchar_ts, whatever they may be; YAPAtomTerm(wchar_t *s); - // Constructor: receives a sequence of n wchar_ts, whatever they may be; - YAPAtomTerm(wchar_t *s, size_t len); - bool isVar() { return false; } /// type check for unbound + // Constructor: receives a sequence of n wchar_ts, whatever they may be; + YAPAtomTerm(wchar_t *s, size_t len); +// Constructor: receives a std::string; + YAPAtomTerm(std::string s) { mk(MkAtomTerm(Yap_LookupAtom(s.c_str()))); }; + bool isVar() { return false; } /// type check for unbound bool isAtom() { return true; } /// type check for atom bool isInteger() { return false; } /// type check for integer bool isFloat() { return false; } /// type check for floating-point diff --git a/H/Atoms.h b/H/Atoms.h index 420d0acf3..dbac215d6 100644 --- a/H/Atoms.h +++ b/H/Atoms.h @@ -96,7 +96,7 @@ typedef struct ExtraAtomEntryStruct { #define USE_OFFSETS_IN_PROPS 0 #endif -typedef u_short PropFlags; +typedef CELL PropFlags; /* basic property entry structure */ typedef struct PropEntryStruct { diff --git a/H/Yap.h b/H/Yap.h index c982d55a2..b4a41f99e 100755 --- a/H/Yap.h +++ b/H/Yap.h @@ -151,6 +151,8 @@ typedef void *(*fptr_t)(void); main exports in YapInterface.h *************************************************************************************************/ +extern const char *Yap_BINDIR, *Yap_ROOTDIR, *Yap_SHAREDIR, *Yap_LIBDIR, *Yap_DLLDIR, *Yap_PLDIR; + /* Basic exports */ #include "YapDefs.h" diff --git a/H/YapFlags.h b/H/YapFlags.h index 86c42a45c..406d97a77 100644 --- a/H/YapFlags.h +++ b/H/YapFlags.h @@ -194,7 +194,7 @@ static inline Term options(Term inp) { } static inline Term rootdir(Term inp) { - return MkAtomTerm(Yap_LookupAtom(YAP_ROOTDIR)); + return MkAtomTerm(Yap_LookupAtom(Yap_ROOTDIR)); } // INLINE_ONLY inline EXTERN Term ok( Term inp ); diff --git a/H/Yapproto.h b/H/Yapproto.h index a9a2aaa07..94c1493b6 100755 --- a/H/Yapproto.h +++ b/H/Yapproto.h @@ -435,7 +435,7 @@ extern const char *Yap_AbsoluteFileInBuffer(const char *spec, char *outp, size_t extern const char *Yap_findFile(const char *isource, const char *idef, const char *root, char *result, bool access, YAP_file_type_t ftype, bool expand_root, bool in_lib); -extern bool ChDir(const char *path); +extern bool Yap_ChDir(const char *path); /* threads.c */ extern void Yap_InitThreadPreds(void); @@ -498,6 +498,7 @@ extern int Yap_get_stream_handle(Term, int, int, void *); extern Term Yap_get_stream_position(void *); extern struct AtomEntryStruct *Yap_lookupBlob(void *blob, size_t len, void *type, int *newp); +extern void *Yap_RepStreamFromId(int sno); /* opt.preds.c */ extern void Yap_init_optyap_preds(void); diff --git a/TAGS b/TAGS index a64e4a5a0..24ea552c6 100644 --- a/TAGS +++ b/TAGS @@ -1,273049 +1,141 @@ - -.configure-custom.sh,0 - -.vscode/tags,12458 -!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/format1,0 -AliasManager ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.core.alias import Alias, AliasManager$/;" kind:namespace line:45AliasManager$22,2089 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Unicode24,2385 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Dict24,2385 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Any24,2385 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13default$24,2385 -Any ../ipykernel/ipykernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Dict26,2634 -Any ../ipykernel/ipykernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Any$26,2634 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Type28,2888 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Any28,2888 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10List$28,2888 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Unicode30,3164 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Dict30,3164 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Any30,3164 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13default$30,3164 -Any ../packages/python/yap_kernel/yap_kernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Dict32,3449 -Any ../packages/python/yap_kernel/yap_kernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Any$32,3449 -Any ../packages/python/yap_kernel/yap_kernel/yapkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Type34,3739 -Any ../packages/python/yap_kernel/yap_kernel/yapkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Any34,3739 -Any ../packages/python/yap_kernel/yap_kernel/yapkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10List$34,3739 -BackgroundSocket ../ipykernel/ipykernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18BackgroundSocket50,5572 -BackgroundSocket ../ipykernel/ipykernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18IOPubThread$50,5572 -BackgroundSocket ../packages/python/yap_kernel/yap_kernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18BackgroundSocket52,5837 -BackgroundSocket ../packages/python/yap_kernel/yap_kernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18IOPubThread$52,5837 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode72,9238 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes72,9238 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool72,9238 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict72,9238 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any72,9238 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$72,9238 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode86,10908 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes86,10908 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool86,10908 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict86,10908 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any86,10908 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$86,10908 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict98,12246 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11CBytes98,12246 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$98,12246 -CachingCompiler ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.core.compilerop import CachingCompiler, check_linecache_ipython$/;" kind:namespace line:49check_linecache_ipython$114,13899 -CannedArray ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass116,14190 -CannedArray ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13interactive$116,14190 -CannedArray ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass118,14475 -CannedArray ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13interactive$118,14475 -CannedClass ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass126,15461 -CannedClass ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13interactive$126,15461 -CannedClass ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass128,15746 -CannedClass ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13interactive$128,15746 -CodeMagics ../ipykernel/ipykernel/zmqshell.py /^from IPython.core.magics import MacroToEdit, CodeMagics$/;" kind:namespace line:35CodeMagics$138,16980 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1DEBUG168,20591 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1WARN168,20591 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1ERROR168,20591 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1FATAL$168,20591 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode176,21662 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes176,21662 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool176,21662 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict176,21662 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any176,21662 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$176,21662 -Dict ../ipykernel/ipykernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict178,21938 -Dict ../ipykernel/ipykernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11CBytes178,21938 -Dict ../ipykernel/ipykernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$178,21938 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode180,22170 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes180,22170 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool180,22170 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict180,22170 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any180,22170 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$180,22170 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict182,22482 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11CBytes182,22482 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$182,22482 -DollarFormatter ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.utils.text import format_screen, LSString, SList, DollarFormatter$/;" kind:namespace line:81LSString194,24187 -DollarFormatter ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.utils.text import format_screen, LSString, SList, DollarFormatter$/;" kind:namespace line:81SList194,24187 -DollarFormatter ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.utils.text import format_screen, LSString, SList, DollarFormatter$/;" kind:namespace line:81DollarFormatter$194,24187 -DottedObjectName ../packages/python/yap_kernel/yap_kernel/inprocess/manager.py /^from traitlets import Instance, DottedObjectName, default$/;" kind:namespace line:6DottedObjectName196,24519 -DottedObjectName ../packages/python/yap_kernel/yap_kernel/inprocess/manager.py /^from traitlets import Instance, DottedObjectName, default$/;" kind:namespace line:6default$196,24519 - -Artistic,0 - -autoconf/config.guess,48 - main()main555,17416 - main ()main701,21275 - -autoconf/config.sub,0 - -autoconf/configure,5873 -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :null19,528 - NULLCMD=:NULLCMD21,613 -as_nl='as_nl36,899 - as_echo='print -r --'as_echo47,1433 - as_echo='printf %s\n'as_echo50,1552 - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'as_echo_body54,1686 - PATH_SEPARATOR=:PATH_SEPARATOR76,2268 -if test "x$as_myself" = x; thenest108,3185 - as_myself=$0as_myself109,3217 - _as_can_reexec=no; export _as_can_reexec;_as_can_reexec140,4127 - _as_can_reexec=no; export _as_can_reexec;_as_can_reexec140,4127 - as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :as_bourne_compatible163,4994 - as_have_required=yesas_have_required203,6520 - as_save_IFS=$IFS; IFS=$PATH_SEPARATORas_save_IFS210,6661 - eval enable_$ac_useropt=no ;;enable_$ac_useropt1059,24543 - eval enable_$ac_useropt=\$ac_optarg ;;enable_$ac_useropt1085,25461 - eval with_$ac_useropt=\$ac_optarg ;;with_$ac_useropt1289,33227 - eval with_$ac_useropt=no ;;with_$ac_useropt1305,33827 - eval $ac_envvar=\$ac_optarg$ac_envvar1336,34907 - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2$as_echo1343,35157 - ac_option=--`echo $ac_prev | sed 's/_/-/g'`ac_option1351,35360 - no) ;;no1357,35535 - fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;$1358,35546 - eval ac_val=\$$ac_varac_val1369,35997 - [\\/$]* | ?:[\\/]* ) continue;;continue1378,36251 - NONE | '' ) case $ac_var in *prefix ) continue;; esac;;continue1379,36288 -build=$build_aliasbuild1387,36582 - if test "x$build_alias" = x; thenest1393,36703 - cross_compiling=maybecross_compiling1394,36739 - cross_compiling=yescross_compiling1396,36817 - ac_srcdir_defaulted=yesac_srcdir_defaulted1416,37314 - srcdir=$ac_confdirsrcdir1441,37873 - srcdir=..srcdir1443,37941 - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."test1449,38038 - srcdir=.srcdir1458,38421 -for ac_var in $ac_precious_vars; do$ac_precious_vars1466,38669 -VAR=VALUE. See below for descriptions of some of the useful variables.VAR1485,39298 -#define $2 $22096,61852 -#undef $2$22109,62192 -#define PACKAGE_NAME PACKAGE_NAME2651,75632 -#define PACKAGE_TARNAME PACKAGE_TARNAME2655,75703 -#define PACKAGE_VERSION PACKAGE_VERSION2659,75780 -#define PACKAGE_STRING PACKAGE_STRING2663,75857 -#define PACKAGE_BUGREPORT PACKAGE_BUGREPORT2667,75932 -#define PACKAGE_URL PACKAGE_URL2671,76013 -#define FOO(FOO3542,102232 -#define HOST_ALIAS HOST_ALIAS4311,122923 -#define MAX_WORKERS MAX_WORKERS4821,135508 -#define DefHeapSpace DefHeapSpace4831,135641 -#define DefStackSpace DefStackSpace4836,135716 -#define DefTrailSpace DefTrailSpace4841,135793 -#define MAX_THREADS MAX_THREADS4851,135926 -# define ISLOWER(ISLOWER5133,143436 -# define TOUPPER(TOUPPER5134,143483 -#define XOR(XOR5143,143744 -#define HAVE__BOOL HAVE__BOOL8144,222674 -# define ISLOWER(ISLOWER8228,224342 -# define TOUPPER(TOUPPER8229,224389 -#define XOR(XOR8238,224650 -# define WEXITSTATUS(WEXITSTATUS8279,225651 -# define WIFEXITED(WIFEXITED8282,225740 -#define SIZEOF_INT_P SIZEOF_INT_P8957,243009 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT8990,244100 -#define SIZEOF_INT SIZEOF_INT9023,245139 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT9056,246216 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT9089,247353 -#define SIZEOF_FLOAT SIZEOF_FLOAT9122,248420 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE9155,249481 -#define SIZEOF_VOID_P SIZEOF_VOID_P9188,250544 -#define CELLSIZE CELLSIZE9195,250624 -#define INT64_T_DEFINED INT64_T_DEFINED9234,251534 -#define MALLOC_T MALLOC_T9277,252518 -#define MALLOC_T MALLOC_T9282,252581 -#undef inlineinline9299,252936 - #define timezone timezone9692,259835 -#define RETSIGTYPE RETSIGTYPE9825,262743 -#define HAVE_SOCKLEN_T HAVE_SOCKLEN_T10476,277988 -#define HAVE_SSIZE_T HAVE_SSIZE_T10490,278211 - #define timezone timezone10512,278736 -#define MYDDAS_VERSION MYDDAS_VERSION10580,280177 -#define HAVE_MYSQL_MYSQL_H HAVE_MYSQL_MYSQL_H10773,285066 -#define HAVE_WINDEF_H HAVE_WINDEF_H10989,290320 -#define HAVE_SQL_H HAVE_SQL_H11001,290558 -#define HAVE_SQLITE3_H HAVE_SQLITE3_H11113,293444 -#define HAVE_LIBPQ_FE_H HAVE_LIBPQ_FE_H11177,295024 -#define HAS_GETHOSTNAME HAS_GETHOSTNAME11615,305118 -#define off_t off_t11707,307467 -#define size_t size_t11718,307661 -#define pid_t pid_t11729,307857 -#define RFC2045PKG RFC2045PKG11778,308878 -#define RFC2045VER RFC2045VER11783,308951 -# define ISLOWER(ISLOWER11882,310776 -# define TOUPPER(TOUPPER11883,310823 -#define XOR(XOR11892,311084 -#define size_t size_t12011,314014 -#define SIZEOF_LONG SIZEOF_LONG12715,329823 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG12748,330912 -#define HAVE_R_H HAVE_R_H13885,356842 -#define HAVE_REMBEDDED_H HAVE_REMBEDDED_H13897,357102 -#define HAVE_RINTERFACE_H HAVE_RINTERFACE_H13909,357374 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR215283,392783 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR15328,394021 -#define C_CC C_CC17509,450996 -#define C_CFLAGS C_CFLAGS17514,451051 -#define C_LDFLAGS C_LDFLAGS17519,451243 -#define C_LIBS C_LIBS17524,451308 -#define C_LIBPLSO C_LIBPLSO17529,451367 -#define SO_EXT SO_EXT17534,451450 -#define SO_PATH SO_PATH17539,451507 -#define YAP_ARCH YAP_ARCH17544,451569 -#define YAP_BINDIR YAP_BINDIR17549,451630 -#define YAP_FULL_VERSION YAP_FULL_VERSION17554,451695 -#define YAP_LIBDIR YAP_LIBDIR17559,451799 -#define YAP_STARTUP YAP_STARTUP17564,451872 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION17569,451943 -#define YAP_ROOTDIR YAP_ROOTDIR17574,452021 -#define YAP_SHAREDIR YAP_SHAREDIR17579,452087 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR17584,452159 -#define YAP_TIMESTAMP YAP_TIMESTAMP17589,452239 -#define YAP_VERSION YAP_VERSION17594,452314 -#define YAP_YAPLIB YAP_YAPLIB17599,452385 - -autoconf/install-sh,1399 -if [ x"$src" = x ]x107,2501 - dst=$srcdst116,2619 - instcmd=:instcmd120,2661 -defaultIFS=' defaultIFS165,3609 - pathcomp="${pathcomp}/"pathcomp188,3953 - if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&$dst196,4041 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&x197,4113 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&$dst197,4113 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&x198,4185 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&$dst198,4185 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fix199,4257 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi$dst199,4257 - if [ x"$transformarg" = x ] x204,4406 - if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&$dsttmp237,5151 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&x238,5224 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&$dsttmp238,5224 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&x239,5297 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&$dsttmp239,5297 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&x240,5370 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&$dsttmp240,5370 - -BEAM/eam.h,21301 -#define Print_Code Print_Code12,542 -#define Variavel Variavel24,872 -#define Lista Lista25,892 -#define Estrutura Estrutura26,912 -#define Constante Constante27,932 -typedef unsigned long Cell;Cell29,953 -typedef struct PCODE{PCODE32,983 - struct PCODE *nextInst;nextInst33,1006 - struct PCODE *nextInst;PCODE::nextInst33,1006 - int op, new1; op34,1032 - int op, new1; PCODE::op34,1032 - int op, new1; new134,1032 - int op, new1; PCODE::new134,1032 - unsigned long new4;new435,1049 - unsigned long new4;PCODE::new435,1049 -} CInstr;CInstr36,1071 -struct Clauses {Clauses38,1082 - unsigned int idx; /* info for indexing on first arg */idx39,1099 - unsigned int idx; /* info for indexing on first arg */Clauses::idx39,1099 - Cell val; /* atom or functor in first arg */val40,1166 - Cell val; /* atom or functor in first arg */Clauses::val40,1166 - unsigned int nr_vars; /* nr of local vars */nr_vars41,1233 - unsigned int nr_vars; /* nr of local vars */Clauses::nr_vars41,1233 - struct Predicates *predi; /* predicate struct */predi42,1286 - struct Predicates *predi; /* predicate struct */Clauses::predi42,1286 - int side_effects; /* clause has side effects */side_effects43,1339 - int side_effects; /* clause has side effects */Clauses::side_effects43,1339 - Cell *code;code44,1399 - Cell *code;Clauses::code44,1399 - struct Clauses *next; /* next clause within the same predicate */next46,1414 - struct Clauses *next; /* next clause within the same predicate */Clauses::next46,1414 -struct HASH_TABLE {HASH_TABLE50,1494 - Cell value;value51,1514 - Cell value;HASH_TABLE::value51,1514 - Cell *code;code52,1528 - Cell *code;HASH_TABLE::code52,1528 - struct HASH_TABLE *next;next53,1542 - struct HASH_TABLE *next;HASH_TABLE::next53,1542 -struct Predicates { /* To register information about predicates */Predicates56,1573 - unsigned long id;id57,1650 - unsigned long id;Predicates::id57,1650 - unsigned char *name;name58,1670 - unsigned char *name;Predicates::name58,1670 - unsigned int arity; arity59,1693 - unsigned int arity; Predicates::arity59,1693 - unsigned int nr_alt; /* nr of alternativas */nr_alt60,1724 - unsigned int nr_alt; /* nr of alternativas */Predicates::nr_alt60,1724 - unsigned int calls; /* nr of existent calls to this predicate */calls61,1779 - unsigned int calls; /* nr of existent calls to this predicate */Predicates::calls61,1779 - struct Clauses *first;first62,1854 - struct Clauses *first;Predicates::first62,1854 - struct Clauses *last;last63,1879 - struct Clauses *last;Predicates::last63,1879 - int idx; /* is code indexed ? 0= needs compilation -1= no indexing possible 1= indexed */idx64,1903 - int idx; /* is code indexed ? 0= needs compilation -1= no indexing possible 1= indexed */Predicates::idx64,1903 - unsigned int idx_var; /* nr clauses with 1st argument var */idx_var65,2016 - unsigned int idx_var; /* nr clauses with 1st argument var */Predicates::idx_var65,2016 - unsigned int idx_list; /* nr clauses with 1st argument list */idx_list66,2085 - unsigned int idx_list; /* nr clauses with 1st argument list */Predicates::idx_list66,2085 - unsigned int idx_atom; /* nr clauses with 1st argument atom */idx_atom67,2155 - unsigned int idx_atom; /* nr clauses with 1st argument atom */Predicates::idx_atom67,2155 - unsigned int idx_functor; /* nr clauses with 1st argument functor */idx_functor68,2225 - unsigned int idx_functor; /* nr clauses with 1st argument functor */Predicates::idx_functor68,2225 - short int eager_split; /* allow eager splitting */eager_split69,2298 - short int eager_split; /* allow eager splitting */Predicates::eager_split69,2298 - Cell *code; /* try, retry and trust code or Indexing code */code71,2357 - Cell *code; /* try, retry and trust code or Indexing code */Predicates::code71,2357 - struct HASH_TABLE **atom;atom72,2436 - struct HASH_TABLE **atom;Predicates::atom72,2436 - struct HASH_TABLE **functor;functor73,2464 - struct HASH_TABLE **functor;Predicates::functor73,2464 - Cell *list;list74,2495 - Cell *list;Predicates::list74,2495 - Cell *vars;vars75,2509 - Cell *vars;Predicates::vars75,2509 - struct Predicates *next;next76,2523 - struct Predicates *next;Predicates::next76,2523 -struct SUSPENSIONS {SUSPENSIONS81,2616 - struct AND_BOX *and_box; /* And_box where the variable has suspended */and_box82,2637 - struct AND_BOX *and_box; /* And_box where the variable has suspended */SUSPENSIONS::and_box82,2637 - short int reason; /* suspended before executing call number nr_call */ reason83,2726 - short int reason; /* suspended before executing call number nr_call */ SUSPENSIONS::reason83,2726 - struct SUSPENSIONS *next; /* Pointer to the next suspention */next84,2816 - struct SUSPENSIONS *next; /* Pointer to the next suspention */SUSPENSIONS::next84,2816 - struct SUSPENSIONS *prev;prev85,2905 - struct SUSPENSIONS *prev;SUSPENSIONS::prev85,2905 -struct SUSPENSIONS_VAR {SUSPENSIONS_VAR88,2937 - struct AND_BOX *and_box; /* And_box where the variable has suspended */and_box89,2962 - struct AND_BOX *and_box; /* And_box where the variable has suspended */SUSPENSIONS_VAR::and_box89,2962 - struct SUSPENSIONS_VAR *next; /* Pointer to the next suspention */next90,3044 - struct SUSPENSIONS_VAR *next; /* Pointer to the next suspention */SUSPENSIONS_VAR::next90,3044 -struct PERM_VAR {PERM_VAR93,3130 - Cell value; /* value assigned to the variable */value94,3148 - Cell value; /* value assigned to the variable */PERM_VAR::value94,3148 - struct AND_BOX *home; /* pointer to the goal_box structure of the variable */home95,3239 - struct AND_BOX *home; /* pointer to the goal_box structure of the variable */PERM_VAR::home95,3239 - Cell *yapvar;yapvar96,3330 - Cell *yapvar;PERM_VAR::yapvar96,3330 - struct SUSPENSIONS_VAR *suspensions; /* Pointer to a Suspension List */suspensions97,3346 - struct SUSPENSIONS_VAR *suspensions; /* Pointer to a Suspension List */PERM_VAR::suspensions97,3346 - struct PERM_VAR *next;next98,3437 - struct PERM_VAR *next;PERM_VAR::next98,3437 -struct EXTERNAL_VAR { /* to be used as some kind of trail */EXTERNAL_VAR101,3466 - Cell value; /* value assign to the variable */value102,3540 - Cell value; /* value assign to the variable */EXTERNAL_VAR::value102,3540 - struct PERM_VAR *var; /* pointer to the local_var struct */var103,3614 - struct PERM_VAR *var; /* pointer to the local_var struct */EXTERNAL_VAR::var103,3614 - struct EXTERNAL_VAR *next;next104,3687 - struct EXTERNAL_VAR *next;EXTERNAL_VAR::next104,3687 -struct status_and {status_and107,3720 - struct OR_BOX *call; /* POINTER TO A OR_BOX */call108,3740 - struct OR_BOX *call; /* POINTER TO A OR_BOX */status_and::call108,3740 - Cell *locals; /* temporary vars vector */locals109,3807 - Cell *locals; /* temporary vars vector */status_and::locals109,3807 - Cell *code; /* Pointer to the start code */code110,3874 - Cell *code; /* Pointer to the start code */status_and::code110,3874 - int state; /* State of the OR_BOX */state111,3941 - int state; /* State of the OR_BOX */status_and::state111,3941 - struct status_and *previous;previous112,4002 - struct status_and *previous;status_and::previous112,4002 - struct status_and *next;next113,4033 - struct status_and *next;status_and::next113,4033 -struct status_or {status_or116,4064 - struct AND_BOX *alternative; /* POINTER TO A AND_BOX */alternative117,4083 - struct AND_BOX *alternative; /* POINTER TO A AND_BOX */status_or::alternative117,4083 - Cell *args; /* Saved Arguments */args118,4150 - Cell *args; /* Saved Arguments */status_or::args118,4150 - Cell *code; /* Pointer to Start Code */code119,4217 - Cell *code; /* Pointer to Start Code */status_or::code119,4217 - int state; /* State of the AND_BOX */state120,4284 - int state; /* State of the AND_BOX */status_or::state120,4284 - struct status_or *previous;previous121,4345 - struct status_or *previous;status_or::previous121,4345 - struct status_or *next;next122,4375 - struct status_or *next;status_or::next122,4375 -struct OR_BOX {OR_BOX125,4405 - struct AND_BOX *parent;parent126,4421 - struct AND_BOX *parent;OR_BOX::parent126,4421 - struct status_and *nr_call; /* order of this box */nr_call127,4447 - struct status_and *nr_call; /* order of this box */OR_BOX::nr_call127,4447 - short int nr_all_alternatives; /* number of existing alternatives */nr_all_alternatives128,4519 - short int nr_all_alternatives; /* number of existing alternatives */OR_BOX::nr_all_alternatives128,4519 - struct status_or *alternatives; /* alternatives of the or_box */alternatives129,4592 - struct status_or *alternatives; /* alternatives of the or_box */OR_BOX::alternatives129,4592 - short int eager_split; eager_split130,4665 - short int eager_split; OR_BOX::eager_split130,4665 -struct AND_BOX {AND_BOX133,4695 - struct OR_BOX *parent; /* pointer to the parent or-box */parent134,4712 - struct OR_BOX *parent; /* pointer to the parent or-box */AND_BOX::parent134,4712 - struct status_or *nr_alternative; /* This box is alternative id */nr_alternative135,4792 - struct status_or *nr_alternative; /* This box is alternative id */AND_BOX::nr_alternative135,4792 - short int nr_all_calls; /* numger of all goals */nr_all_calls136,4867 - short int nr_all_calls; /* numger of all goals */AND_BOX::nr_all_calls136,4867 - struct PERM_VAR *perms;perms137,4947 - struct PERM_VAR *perms;AND_BOX::perms137,4947 - struct status_and *calls;calls138,4973 - struct status_and *calls;AND_BOX::calls138,4973 - short int level; /* indicates the level in the tree */level140,5002 - short int level; /* indicates the level in the tree */AND_BOX::level140,5002 - struct EXTERNAL_VAR *externals; /* pointer to a list of external_vars */externals141,5081 - struct EXTERNAL_VAR *externals; /* pointer to a list of external_vars */AND_BOX::externals141,5081 - struct SUSPENSIONS *suspended; /* pointer to a list of suspended boxes */suspended142,5160 - struct SUSPENSIONS *suspended; /* pointer to a list of suspended boxes */AND_BOX::suspended142,5160 - short int side_effects; /* to mark if are calls to builtins with side_efects (like write) */side_effects143,5239 - short int side_effects; /* to mark if are calls to builtins with side_efects (like write) */AND_BOX::side_effects143,5239 -#define ZERO ZERO148,5369 -#define SUCCESS SUCCESS149,5413 -#define FAILS FAILS150,5438 -#define READY READY151,5460 -#define RUNNING RUNNING152,5519 -#define RUNAGAIN RUNAGAIN153,5578 -#define SUSPEND SUSPEND154,5632 -#define WAKE WAKE155,5691 -#define CHANGED CHANGED156,5765 -#define END END157,5865 -#define WAITING WAITING158,5957 -#define FAILED FAILED159,6067 -#define CUT_RIGHT CUT_RIGHT161,6110 -#define SKIP_VAR SKIP_VAR162,6139 -#define LEFTMOST_PARENT LEFTMOST_PARENT163,6168 -#define FIRST FIRST164,6197 -#define LEFTMOST LEFTMOST165,6226 -#define WAITING_TO_BE_FIRST WAITING_TO_BE_FIRST167,6256 -#define WAITING_TO_BE_LEFTMOST WAITING_TO_BE_LEFTMOST168,6314 -#define WAITING_TO_BE_LEFTMOST_PARENT WAITING_TO_BE_LEFTMOST_PARENT169,6375 -#define WAITING_TO_CUT WAITING_TO_CUT170,6443 -#define WAITING_SKIP_VAR WAITING_SKIP_VAR171,6505 -#define SUSPEND_END SUSPEND_END172,6566 -#define WAKE_END WAKE_END173,6620 -#define NORMAL_SUSPENSION NORMAL_SUSPENSION176,6673 -#define LEFTMOST_SUSPENSION LEFTMOST_SUSPENSION177,6704 -#define WAIT_SUSPENSION WAIT_SUSPENSION178,6735 -#define CUT_SUSPENSION CUT_SUSPENSION179,6766 -#define WRITE_SUSPENSION WRITE_SUSPENSION180,6797 -#define VAR_SUSPENSION VAR_SUSPENSION181,6828 -#define YAP_VAR_SUSPENSION YAP_VAR_SUSPENSION182,6859 -#define WRITE WRITE186,6919 -#define COMMIT COMMIT187,6941 -#define VAR VAR188,6963 -#define SEQUENCIAL SEQUENCIAL189,6985 -#define CUT CUT191,7008 -struct EAM_TEMP {EAM_TEMP196,7153 - struct EAM_TEMP *previous;previous200,7176 - struct EAM_TEMP *previous;EAM_TEMP::previous200,7176 - struct EAM_TEMP *next;next201,7205 - struct EAM_TEMP *next;EAM_TEMP::next201,7205 -struct EAM_Global {EAM_Global204,7234 - Cell *pc;pc205,7254 - Cell *pc;EAM_Global::pc205,7254 - Cell *_H;_H206,7266 - Cell *_H;EAM_Global::_H206,7266 - Cell *_S;_S207,7278 - Cell *_S;EAM_Global::_S207,7278 - short _Mode; /* read or write mode */_Mode208,7290 - short _Mode; /* read or write mode */EAM_Global::_Mode208,7290 - short ES; /* goal shoud do Eager Split yes or no ? */ ES209,7361 - short ES; /* goal shoud do Eager Split yes or no ? */ EAM_Global::ES209,7361 - short MemGoing; /* Direction the that stacks use to grow */MemGoing210,7433 - short MemGoing; /* Direction the that stacks use to grow */EAM_Global::MemGoing210,7433 - Cell *varlocals; /* local vars to the working AND-BOX */varlocals211,7503 - Cell *varlocals; /* local vars to the working AND-BOX */EAM_Global::varlocals211,7503 - struct AND_BOX *ABX; /* working AND-BOX */ ABX212,7574 - struct AND_BOX *ABX; /* working AND-BOX */ EAM_Global::ABX212,7574 - struct OR_BOX *OBX; /* working OR-BOX */OBX213,7646 - struct OR_BOX *OBX; /* working OR-BOX */EAM_Global::OBX213,7646 - struct SUSPENSIONS *su; /* list with suspended work */su214,7717 - struct SUSPENSIONS *su; /* list with suspended work */EAM_Global::su214,7717 - struct AND_BOX *top;top215,7788 - struct AND_BOX *top;EAM_Global::top215,7788 - struct status_and *USE_SAME_ANDBOX; /* when only 1 alternative */USE_SAME_ANDBOX217,7813 - struct status_and *USE_SAME_ANDBOX; /* when only 1 alternative */EAM_Global::USE_SAME_ANDBOX217,7813 - struct status_or *nr_alternative; /* working alternative */nr_alternative218,7884 - struct status_or *nr_alternative; /* working alternative */EAM_Global::nr_alternative218,7884 - struct status_and *nr_call; /* working goal */nr_call219,7955 - struct status_and *nr_call; /* working goal */EAM_Global::nr_call219,7955 - Cell *VAR_TRAIL; VAR_TRAIL221,8027 - Cell *VAR_TRAIL; EAM_Global::VAR_TRAIL221,8027 - int VAR_TRAIL_NR;VAR_TRAIL_NR222,8054 - int VAR_TRAIL_NR;EAM_Global::VAR_TRAIL_NR222,8054 - int Mem_FULL; /* if mem_full, then perform GC */Mem_FULL223,8074 - int Mem_FULL; /* if mem_full, then perform GC */EAM_Global::Mem_FULL223,8074 - int nr_call_forking; /* number of splits already performed */nr_call_forking224,8145 - int nr_call_forking; /* number of splits already performed */EAM_Global::nr_call_forking224,8145 - unsigned long START_ADDR_HEAP, START_ADDR_BOXES, END_BOX, END_H;START_ADDR_HEAP225,8216 - unsigned long START_ADDR_HEAP, START_ADDR_BOXES, END_BOX, END_H;EAM_Global::START_ADDR_HEAP225,8216 - unsigned long START_ADDR_HEAP, START_ADDR_BOXES, END_BOX, END_H;START_ADDR_BOXES225,8216 - unsigned long START_ADDR_HEAP, START_ADDR_BOXES, END_BOX, END_H;EAM_Global::START_ADDR_BOXES225,8216 - unsigned long START_ADDR_HEAP, START_ADDR_BOXES, END_BOX, END_H;END_BOX225,8216 - unsigned long START_ADDR_HEAP, START_ADDR_BOXES, END_BOX, END_H;EAM_Global::END_BOX225,8216 - unsigned long START_ADDR_HEAP, START_ADDR_BOXES, END_BOX, END_H;END_H225,8216 - unsigned long START_ADDR_HEAP, START_ADDR_BOXES, END_BOX, END_H;EAM_Global::END_H225,8216 - unsigned int nr_gc_heap;nr_gc_heap226,8283 - unsigned int nr_gc_heap;EAM_Global::nr_gc_heap226,8283 - unsigned int nr_gc_boxed; nr_gc_boxed227,8310 - unsigned int nr_gc_boxed; EAM_Global::nr_gc_boxed227,8310 - Cell **IndexFree;IndexFree228,8339 - Cell **IndexFree;EAM_Global::IndexFree228,8339 - Cell *NextFree;NextFree229,8359 - Cell *NextFree;EAM_Global::NextFree229,8359 - Cell *sp;sp230,8377 - Cell *sp;EAM_Global::sp230,8377 - struct PERM_VAR *NextVar;NextVar231,8389 - struct PERM_VAR *NextVar;EAM_Global::NextVar231,8389 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;TOTAL_MEM234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;EAM_Global::TOTAL_MEM234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;MEM_REUSED234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;EAM_Global::MEM_REUSED234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;TOTAL_TEMPS234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;EAM_Global::TOTAL_TEMPS234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;TEMPS_REUSED234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;EAM_Global::TEMPS_REUSED234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;TOTAL_PERMS234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;EAM_Global::TOTAL_PERMS234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;PERMS_REUSED234,8434 - unsigned long TOTAL_MEM, MEM_REUSED, TOTAL_TEMPS,TEMPS_REUSED, TOTAL_PERMS, PERMS_REUSED;EAM_Global::PERMS_REUSED234,8434 - unsigned long Memory_STAT[5000][5];Memory_STAT235,8527 - unsigned long Memory_STAT[5000][5];EAM_Global::Memory_STAT235,8527 -#define beam_X beam_X240,8578 -#define beam_pc beam_pc242,8640 -#define beam_H beam_H243,8672 -#define beam_S beam_S244,8703 -#define beam_Mode beam_Mode245,8734 -#define beam_ES beam_ES246,8771 -#define beam_MemGoing beam_MemGoing247,8803 -#define beam_varlocals beam_varlocals248,8847 -#define beam_ABX beam_ABX249,8893 -#define beam_OBX beam_OBX250,8927 -#define beam_su beam_su251,8961 -#define beam_top beam_top252,8993 -#define beam_USE_SAME_ANDBOX beam_USE_SAME_ANDBOX253,9027 -#define beam_nr_alternative beam_nr_alternative254,9085 -#define beam_nr_call beam_nr_call255,9141 -#define beam_VAR_TRAIL beam_VAR_TRAIL256,9183 -#define beam_VAR_TRAIL_NR beam_VAR_TRAIL_NR257,9229 -#define beam_Mem_FULL beam_Mem_FULL258,9281 -#define beam_nr_call_forking beam_nr_call_forking259,9325 -#define beam_START_ADDR_HEAP beam_START_ADDR_HEAP260,9383 -#define beam_START_ADDR_BOXES beam_START_ADDR_BOXES261,9441 -#define beam_END_BOX beam_END_BOX262,9501 -#define beam_END_H beam_END_H263,9543 -#define beam_nr_gc_heap beam_nr_gc_heap264,9581 -#define beam_nr_gc_boxed beam_nr_gc_boxed265,9629 -#define beam_IndexFree beam_IndexFree266,9679 -#define beam_NextFree beam_NextFree267,9725 -#define beam_sp beam_sp268,9769 -#define beam_NextVar beam_NextVar269,9801 - #define beam_TOTAL_MEM beam_TOTAL_MEM271,9859 - #define beam_MEM_REUSED beam_MEM_REUSED272,9906 - #define beam_TOTAL_TEMPS beam_TOTAL_TEMPS273,9955 - #define beam_TEMPS_REUSED beam_TEMPS_REUSED274,10006 - #define beam_TOTAL_PERMS beam_TOTAL_PERMS275,10059 - #define beam_PERMS_REUSED beam_PERMS_REUSED276,10110 - #define beam_Memory_STAT beam_Memory_STAT277,10163 -#define arg1 arg1280,10222 -#define arg2 arg2281,10249 -#define arg3 arg3282,10276 -#define arg4 arg4283,10303 -#define CELL_SIZE CELL_SIZE285,10331 -#define POINTER_SIZE POINTER_SIZE286,10365 -#define ANDBOX_SIZE ANDBOX_SIZE287,10403 -#define ORBOX_SIZE ORBOX_SIZE288,10448 -#define PERM_VAR_SIZE PERM_VAR_SIZE289,10491 -#define EXTERNAL_VAR_SIZE EXTERNAL_VAR_SIZE290,10539 -#define SUSPENSIONS_SIZE SUSPENSIONS_SIZE291,10595 -#define SUSPENSIONS_VAR_SIZE SUSPENSIONS_VAR_SIZE292,10649 -#define STATUS_AND_SIZE STATUS_AND_SIZE293,10711 -#define STATUS_OR_SIZE STATUS_OR_SIZE294,10763 - -BEAM/eam_am.c,6671 -#define Debug Debug26,823 -#define Debug_GC Debug_GC27,839 -#define Debug_Dump_State Debug_Dump_State28,858 -#define Debug_MEMORY Debug_MEMORY29,1002 -#define Memory_Stat Memory_Stat30,1025 -#define Clear_MEMORY Clear_MEMORY31,1048 -#define Fast_go Fast_go32,1159 -#define USE_SPLIT USE_SPLIT33,1279 -#define MEM_FOR_BOXES MEM_FOR_BOXES35,1304 -#define MEM_FOR_HEAP MEM_FOR_HEAP36,1343 -#define MEM_FOR_VARS MEM_FOR_VARS37,1382 -#define MEM_BOXES MEM_BOXES38,1421 -#define MEM_H MEM_H39,1468 -#define MEM_VARS MEM_VARS40,1514 -#define INDEX_SIZE INDEX_SIZE41,1560 -#define GARBAGE_COLLECTOR GARBAGE_COLLECTOR43,1640 -#define HYBRID_BOXMEM HYBRID_BOXMEM44,1718 -#define START_ON_NEXT START_ON_NEXT45,1771 -#define USE_LEFTMOST USE_LEFTMOST46,1863 -#define MICRO_TIME MICRO_TIME47,1928 -#define MAX_MEMORYSTAT MAX_MEMORYSTAT48,2020 -#define READ READ49,2048 -#define WRITE WRITE50,2063 -int EAM=0; /* Is EAM enabled ? */EAM55,2120 -Cell *beam_ALTERNATIVES; /* NEEDED FOR ABSMI */beam_ALTERNATIVES56,2192 -PredEntry *bpEntry;bpEntry57,2242 -struct EAM_Global EAMGlobal;EAMGlobal58,2262 -struct EAM_Global *eamGlobal=&EAMGlobal;eamGlobal59,2291 - #define INLINE INLINE62,2344 - #define DIRECT_JUMP DIRECT_JUMP63,2370 - #define INLINEINLINE65,2401 - #define DIRECT_JUMP DIRECT_JUMP66,2419 - void break_top(void); void break_top(void) { };break_top67,2444 - void break_debug(int conta) { break_debug69,2523 -#define push_mode_and_sreg(push_mode_and_sreg77,2721 -#define pop_mode_and_sreg(pop_mode_and_sreg78,2814 -#define isvar(isvar80,2910 -#define isappl(isappl81,2949 -#define ispair(ispair82,2991 -#define isatom(isatom83,3031 -#define reppair(reppair84,3095 -#define repappl(repappl85,3132 -#define abspair(abspair86,3169 -#define absappl(absappl87,3208 -int is_perm_var(Cell *a); inline int is_perm_var(Cell *a) { if (a>=(Cell *) beam_END_BOX && a<(Cell *) (beam_END_BOX+MEM_VARS)) return(1); else return (0); }is_perm_var89,3248 -void conta_memoria_livre(int size){conta_memoria_livre155,6287 -void abort_eam(char *s)abort_eam178,7058 -void exit_eam(char *s)exit_eam184,7118 -void initialize_memory_areas()initialize_memory_areas253,11135 -INLINE int HEAP_MEM_FULL(void)HEAP_MEM_FULL304,12722 -INLINE Cell *request_memory(int size) /* size in bytes */request_memory320,13045 -void free_memory(Cell *mem,int size) { free_memory379,14477 -INLINE void free_memory(Cell *mem,int size) /* size in bytes */free_memory385,14583 -INLINE void get_arguments(int nr, Cell *a)get_arguments406,15043 -INLINE Cell *save_arguments(int nr) /* nr arguments */save_arguments412,15145 -INLINE void remove_memory_arguments(Cell *a)remove_memory_arguments426,15407 -struct PERM_VAR *request_permVar(struct AND_BOX *a) {request_permVar437,15631 -void free_permVar(struct PERM_VAR *v) {free_permVar467,16273 -INLINE Cell *request_memory_locals(int nr)request_memory_locals484,16573 -INLINE Cell *request_memory_locals_noinit(int nr)request_memory_locals_noinit515,17050 -INLINE void free_memory_locals(Cell *l)free_memory_locals541,17489 -void del_andbox_and_sons(struct AND_BOX *andbox )del_andbox_and_sons563,18055 -void del_orbox_and_sons(struct OR_BOX *orbox)del_orbox_and_sons587,18629 -INLINE struct status_and *remove_call_from_andbox(struct status_and *ncall, struct AND_BOX *a) remove_call_from_andbox608,19069 -INLINE void totop_suspensions_list(struct SUSPENSIONS *b)totop_suspensions_list650,20101 -void waking_boxes_suspended_on_var(struct PERM_VAR *v)waking_boxes_suspended_on_var665,20443 -INLINE struct SUSPENSIONS *addto_suspensions_list(struct AND_BOX *a,int r)addto_suspensions_list685,20970 -void delfrom_suspensions_list(struct SUSPENSIONS *b)delfrom_suspensions_list713,21539 -INLINE void change_perm_var_suspensions(struct PERM_VAR *v,struct AND_BOX *andbox,struct AND_BOX *new)change_perm_var_suspensions736,22044 -INLINE void remove_from_perm_var_suspensions(struct PERM_VAR *v,struct AND_BOX *andbox)remove_from_perm_var_suspensions757,22373 -void remove_all_externals_suspensions(struct AND_BOX *andbox)remove_all_externals_suspensions786,23089 -void remove_all_externals(struct AND_BOX *andbox)remove_all_externals797,23308 -void remove_list_perms(struct AND_BOX *a)remove_list_perms811,23623 -INLINE void move_perm_vars(struct AND_BOX *b, struct AND_BOX *a) /* (from b to a) */move_perm_vars825,23821 -void add_to_list_perms(struct PERM_VAR *var,struct AND_BOX *a) add_to_list_perms842,24159 -void change_from_to(struct PERM_VAR *o,struct PERM_VAR *d) {change_from_to850,24351 -void inc_level(struct AND_BOX *andbox,int dif)inc_level896,25443 -INLINE int is_leftmost(struct AND_BOX *a, struct status_and *n)is_leftmost920,25897 -struct AND_BOX *choose_leftmost(void)choose_leftmost929,26138 -INLINE unsigned int index_of_hash_table_atom(Cell c, int nr)index_of_hash_table_atom952,26563 -INLINE unsigned int index_of_hash_table_appl(Cell c, int nr)index_of_hash_table_appl957,26669 -void trail(struct AND_BOX *andbox,struct PERM_VAR *v)trail967,26959 -INLINE int deve_limpar_var(struct EXTERNAL_VAR *e)deve_limpar_var992,27720 -void limpa_trail(struct AND_BOX *andbox)limpa_trail997,27841 -INLINE void limpa_trail_orbox(struct OR_BOX *orbox)limpa_trail_orbox1031,28431 -INLINE Cell deref(Cell a)deref1042,28626 -void UnifyCells(Cell *a, Cell *b) /* a e b variaveis */UnifyCells1054,28772 -int Unify(Cell *a, Cell *b)Unify1081,29284 -int verify_externals(struct AND_BOX *andbox)verify_externals1124,30178 -int exists_var_in(Cell *c) exists_var_in1210,32526 -void give_solution_toyap(void) {give_solution_toyap1238,33043 -void add_vars_to_listperms(struct AND_BOX *a, Cell *arg) {add_vars_to_listperms1252,33298 -PredEntry *prepare_args_torun(void) {prepare_args_torun1285,34033 - #define execute_next(execute_next1327,34938 - Cell *TABLE_OPS=NULL;TABLE_OPS1328,34993 - #define execute_next(execute_next1330,35026 -int eam_am(PredEntry *initPred)eam_am1336,35124 -Cell inst_am(int n)inst_am3574,98744 -Cell am_to_inst(Cell inst)am_to_inst3584,98880 -#define DUMP_BOXES DUMP_BOXES3600,99247 -#define DUMP_STATES DUMP_STATES3601,99269 -#define DUMP_VARS DUMP_VARS3602,99291 -#define SPACE_MULT SPACE_MULT3609,99511 -char *SPACES(int level) {SPACES3610,99532 -void dump_eam_state() {dump_eam_state3621,99709 -void dump_eam_andbox(struct AND_BOX *a, struct OR_BOX *pai, struct status_or *pai2) {dump_eam_andbox3644,100156 -void dump_eam_orbox(struct OR_BOX *o, struct AND_BOX *pai, struct status_and *pai2) {dump_eam_orbox3671,101170 -int showTime(void) /* MORE PRECISION */showTime3705,102194 - -BEAM/eam_gc.c,517 -Cell refresh_structures(Cell c) refresh_structures21,906 -Cell move_structures(Cell c) move_structures53,1468 -void garbage_collector()garbage_collector98,2500 -struct OR_BOX *move_orbox(struct OR_BOX *o,struct AND_BOX *parent,struct status_and *nr_call)move_orbox203,6054 -struct AND_BOX *move_andbox(struct AND_BOX *a,struct OR_BOX *parent, struct status_or *alt )move_andbox264,7805 -void refresh_orbox(struct OR_BOX *o)refresh_orbox417,12037 -void refresh_andbox(struct AND_BOX *a)refresh_andbox448,12555 - -BEAM/eam_showcode.c,162 -void eam_showcode(Cell *code)eam_showcode23,717 -#define carg1 carg126,756 -#define carg2 carg227,780 -#define carg3 carg328,804 -#define carg4 carg429,828 - -BEAM/eam_split.c,442 -void do_forking_andbox(struct AND_BOX *a)do_forking_andbox19,846 -struct OR_BOX *copy_orbox(struct OR_BOX *o,struct AND_BOX *parent,struct status_and *nr_call)copy_orbox164,5711 -struct AND_BOX *copy_andbox(struct AND_BOX *a,struct OR_BOX *parent)copy_andbox196,6624 -void replicate_local_variables(struct AND_BOX *a) /* used by fork -ABX is set*/replicate_local_variables238,7921 -Cell copy_structures(Cell c) copy_structures440,13122 - -BEAM/eamamasm.c,692 -Cell *inst_code;inst_code22,708 -int pass=0;pass23,725 -Cell *labels[1000];labels24,737 -Cell *Code_Start;Code_Start26,758 -Cell Area_Code[200000];Area_Code27,776 -Cell area_code=0;area_code28,800 -void emit_inst(long int i)emit_inst44,1176 -void emit_par(long int i)emit_par50,1258 -void emit_upar(Cell i)emit_upar56,1330 -Cell *get_addr(void)get_addr63,1400 -int Is_P_Var(Ventry *ve)Is_P_Var69,1448 -int Is_X_Var(Ventry *ve)Is_X_Var75,1578 -int X_Var(Ventry *ve)X_Var83,1702 -int Y_Var(Ventry *ve)Y_Var98,1941 -int next_not_nop_inst(CInstr *ppc) {next_not_nop_inst110,2147 -void eam_pass(CInstr *ppc)eam_pass118,2302 -Cell *eam_assemble(CInstr *code)eam_assemble571,14072 - -BEAM/eamamasm.h,4851 -#define _exit_eam _exit_eam12,555 -#define _top_tree _top_tree13,585 -#define _scheduler _scheduler14,615 -#define _prepare_tries _prepare_tries15,645 -#define _prepare_calls _prepare_calls16,675 -#define _first_get _first_get18,706 -#define _get_var_X_op _get_var_X_op19,740 -#define _get_var_Y_op _get_var_Y_op20,781 -#define _get_val_X_op _get_val_X_op21,822 -#define _get_val_Y_op _get_val_Y_op22,863 -#define _get_atom_op _get_atom_op23,904 -#define _get_list_op _get_list_op24,945 -#define _get_struct_op _get_struct_op25,986 -#define _first_unify _first_unify27,1028 -#define _unify_void_op _unify_void_op28,1065 -#define _unify_val_X_op _unify_val_X_op29,1114 -#define _unify_val_Y_op _unify_val_Y_op30,1163 -#define _unify_var_X_op _unify_var_X_op31,1212 -#define _unify_var_Y_op _unify_var_Y_op32,1261 -#define _unify_atom_op _unify_atom_op33,1310 -#define _unify_list_op _unify_list_op34,1359 -#define _unify_last_list_op _unify_last_list_op35,1408 -#define _unify_struct_op _unify_struct_op36,1457 -#define _unify_last_struct_op _unify_last_struct_op37,1506 -#define _unify_last_atom_op _unify_last_atom_op38,1556 -#define _unify_local_X_op _unify_local_X_op39,1606 -#define _unify_local_Y_op _unify_local_Y_op40,1656 -#define _first_put _first_put42,1707 -#define _put_var_X_op _put_var_X_op43,1744 -#define _put_var_Y_op _put_var_Y_op44,1789 -#define _put_val_X_op _put_val_X_op45,1834 -#define _put_val_Y_op _put_val_Y_op46,1879 -#define _put_atom_op _put_atom_op47,1924 -#define _put_list_op _put_list_op48,1969 -#define _put_struct_op _put_struct_op49,2014 -#define _put_unsafe_op _put_unsafe_op50,2059 -#define _put_var_P_op _put_var_P_op51,2104 -#define _first_write _first_write53,2150 -#define _write_void _write_void54,2185 -#define _write_var_X_op _write_var_X_op55,2232 -#define _write_var_Y_op _write_var_Y_op56,2279 -#define _write_val_X_op _write_val_X_op57,2327 -#define _write_val_Y_op _write_val_Y_op58,2374 -#define _write_atom_op _write_atom_op59,2421 -#define _write_list_op _write_list_op60,2468 -#define _write_struct_op _write_struct_op61,2515 -#define _write_last_list_op _write_last_list_op62,2562 -#define _write_last_struct_op _write_last_struct_op63,2609 -#define _write_local_X_op _write_local_X_op64,2657 -#define _write_local_Y_op _write_local_Y_op65,2705 -#define _write_var_P_op _write_var_P_op66,2753 -#define _geral _geral68,2803 -#define _pop_op _pop_op69,2834 -#define _jump_op _jump_op70,2870 -#define _proceed_op _proceed_op71,2906 -#define _call_op _call_op72,2942 -#define _safe_call_op _safe_call_op73,2978 -#define _safe_call_unary_op _safe_call_unary_op74,3014 -#define _safe_call_binary_op _safe_call_binary_op75,3055 -#define _only_1_clause_op _only_1_clause_op76,3096 -#define _try_me_op _try_me_op77,3137 -#define _retry_me_op _retry_me_op78,3178 -#define _trust_me_op _trust_me_op79,3220 -#define _do_nothing_op _do_nothing_op80,3262 -#define _direct_safe_call_op _direct_safe_call_op81,3304 -#define _direct_safe_call_unary_op _direct_safe_call_unary_op82,3346 -#define _direct_safe_call_binary_op _direct_safe_call_binary_op83,3395 -#define _skip_while_var _skip_while_var84,3444 -#define _wait_while_var _wait_while_var85,3486 -#define _force_wait _force_wait86,3528 -#define _write_call _write_call87,3570 -#define _is_call _is_call88,3612 -#define _equal_call _equal_call89,3654 -#define _cut_op _cut_op90,3696 -#define _commit_op _commit_op91,3738 -#define _fail_op _fail_op92,3780 -#define _others _others94,3823 -#define _save_b_X_op _save_b_X_op95,3848 -#define _save_b_Y_op _save_b_Y_op96,3885 -#define _comit_b_X_op _comit_b_X_op97,3922 -#define _comit_b_Y_op _comit_b_Y_op98,3959 -#define _save_appl_X_op _save_appl_X_op99,3996 -#define _save_appl_Y_op _save_appl_Y_op100,4033 -#define _save_pair_X_op _save_pair_X_op101,4070 -#define _save_pair_Y_op _save_pair_Y_op102,4107 -#define _either_op _either_op103,4144 -#define _orelse_op _orelse_op104,4181 -#define _orlast_op _orlast_op105,4219 -#define _std_base _std_base107,4258 -#define _p_atom _p_atom108,4287 -#define _p_atomic _p_atomic109,4318 -#define _p_equal _p_equal110,4350 -#define _p_integer _p_integer111,4381 -#define _p_nonvar _p_nonvar112,4414 -#define _p_number _p_number113,4446 -#define _p_var _p_var114,4478 -#define _p_db_ref _p_db_ref115,4508 -#define _p_primitive _p_primitive116,4540 -#define _p_cut_by _p_cut_by117,4575 -#define _p_save_by _p_save_by118,4608 -#define _p_succ _p_succ119,4642 -#define _p_predc _p_predc120,4674 -#define _p_plus _p_plus121,4706 -#define _p_minus _p_minus122,4738 -#define _p_times _p_times123,4770 -#define _p_div _p_div124,4802 -#define _p_dif _p_dif125,4833 -#define _p_eq _p_eq126,4864 -#define _p_arg _p_arg127,4894 -#define _p_functor _p_functor128,4925 - -BEAM/eamindex.c,931 -CInstr *StartCode,*inter_code;StartCode21,686 -CInstr *StartCode,*inter_code;inter_code21,686 -int exists_on_table(Cell a,struct HASH_TABLE **table, int i)exists_on_table38,1416 -Cell *gera_codigo_try(struct Predicates *predi) /* gerar os try's para o predicado i */gera_codigo_try53,1602 -Cell *gera_codigo_try_list(struct Predicates *predi) /* gerar os try's para o predicado i */gera_codigo_try_list83,2301 -struct HASH_TABLE **gera_codigo_try_atom(struct Predicates *predi)gera_codigo_try_atom117,3131 -struct HASH_TABLE **gera_codigo_try_functor(struct Predicates *predi) /*gerar os try's para o predicado i*/gera_codigo_try_functor183,4765 -Cell *gera_codigo_try_only_vars(struct Predicates *predi) /* gerar os try's de Vars para o predicado i */gera_codigo_try_only_vars249,6362 -void do_eam_indexing(struct Predicates *p)do_eam_indexing282,7168 -void ver_predicados(struct Predicates *p)ver_predicados304,7664 - -BEAM/toeam.c,1239 -compiler_struct *CGLOBS;CGLOBS40,1276 -int labelno;labelno41,1301 -CInstr *inter_code,*StartCode;inter_code43,1332 -CInstr *inter_code,*StartCode;StartCode43,1332 -void anota_predicados(struct Clauses *clause, PredEntry *p, unsigned long a,int b,int info_type,int call)anota_predicados67,2180 -void identify_calls(CInstr *code) {identify_calls111,3427 -void verifica_predicados(struct Clauses *clause)verifica_predicados148,4730 -void ShowCode_new(int i)ShowCode_new218,6651 -void codigo_eam(compiler_struct *cglobs)codigo_eam256,7454 -int is_skip(Cell op)is_skip299,8827 -void eam_instructions(struct Clauses *clause)eam_instructions307,8954 -void delay_prepare_calls(void) {delay_prepare_calls364,10616 -int needs_box(Cell op)needs_box396,11502 -int test_for_side_effects()test_for_side_effects414,11981 -void convert_Yaam(struct Clauses *clause)convert_Yaam440,12438 -CInstr *insert_inst(CInstr *inst, int o,int r1,CELL r4)insert_inst492,14047 -CInstr *emit_new(int o, int r1,CELL r4)emit_new505,14270 -CInstr *new_inst(int o, int r1,CELL r4)new_inst520,14514 -void *alloc_mem(Cell size)alloc_mem533,14703 -void *alloc_mem_temp(Cell size) /* memory that will be discard after compiling */alloc_mem_temp544,14892 - -C/absmi.c,3090 -#define IN_ABSMI_C IN_ABSMI_C42,1122 -#define _INATIVE _INATIVE43,1143 -#define HAS_CACHE_REGS HAS_CACHE_REGS44,1162 -TraceContext **curtrace;curtrace54,1283 -yamop *curpreg;curpreg55,1308 -BlocksContext **globalcurblock;globalcurblock56,1324 -COUNT ineedredefinedest;ineedredefinedest57,1356 -yamop *headoftrace;headoftrace58,1381 -NativeContext *NativeArea;NativeArea60,1402 -IntermediatecodeContext *IntermediatecodeArea;IntermediatecodeArea61,1429 -CELL l;l63,1477 -CELL nnexec;nnexec65,1486 -Environment *Yap_ExpEnvP, Yap_ExpEnv;Yap_ExpEnvP67,1500 -Environment *Yap_ExpEnvP, Yap_ExpEnv;Yap_ExpEnv67,1500 -void **Yap_ABSMI_ControlLabels;Yap_ABSMI_ControlLabels69,1539 -static Int traced_absmi(void) { return Yap_traced_absmi(); }traced_absmi71,1572 -#define YREG YREG76,1655 -void **Yap_ABSMI_OPCODES;Yap_ABSMI_OPCODES79,1681 -Term Yap_XREGS[MaxTemps]; /* 29 */Yap_XREGS86,1764 -static Term push_live_regs(yamop *pco) {push_live_regs104,2259 -#define OPCODE(OPCODE170,3706 -#undef OPCODEOPCODE172,3759 -char *Yap_op_names[] = {Yap_op_names169,3681 -static int check_alarm_fail_int(int CONT USES_REGS) {check_alarm_fail_int177,3785 -static int stack_overflow(PredEntry *pe, CELL *env, yamop *cp,stack_overflow197,4367 -static int code_overflow(CELL *yenv USES_REGS) {code_overflow211,4767 -static int interrupt_handler(PredEntry *pe USES_REGS) {interrupt_handler230,5280 -static int safe_interrupt_handler(PredEntry *pe USES_REGS) {safe_interrupt_handler306,7042 -static int interrupt_handlerc(PredEntry *pe USES_REGS) {interrupt_handlerc396,9169 -static int interrupt_handler_either(Term t_cut, PredEntry *pe USES_REGS) {interrupt_handler_either426,9907 -static int trace_interrupts = true;trace_interrupts463,10772 -static int interrupt_fail(USES_REGS1) {interrupt_fail466,10816 -static int interrupt_execute(USES_REGS1) {interrupt_execute491,11632 -static int interrupt_call(USES_REGS1) {interrupt_call521,12493 -static int interrupt_pexecute(PredEntry *pen USES_REGS) {interrupt_pexecute551,13378 -static void execute_dealloc(USES_REGS1) {execute_dealloc583,14252 -static int interrupt_deallocate(USES_REGS1) {interrupt_deallocate620,15224 -static int interrupt_cut(USES_REGS1) {interrupt_cut676,16895 -static int interrupt_cut_t(USES_REGS1) {interrupt_cut_t697,17559 -static int interrupt_cut_e(USES_REGS1) {interrupt_cut_e718,18226 -static int interrupt_commit_y(USES_REGS1) {interrupt_commit_y738,18862 -static int interrupt_commit_x(USES_REGS1) {interrupt_commit_x760,19513 -static int interrupt_either(USES_REGS1) {interrupt_either794,20438 -static int interrupt_dexecute(USES_REGS1) {interrupt_dexecute831,21457 -static void undef_goal(USES_REGS1) {undef_goal893,23069 -static void spy_goal(USES_REGS1) {spy_goal966,24765 -Int Yap_absmi(int inp) {Yap_absmi1116,28352 -#define I_R I_R1154,29132 -#define OPCODE(OPCODE1202,30872 -#undef OPCODEOPCODE1204,30929 -#undef Yap_REGSYap_REGS1289,32755 -#define Yap_REGS Yap_REGS1290,32771 -#undef REGSREGS1300,32912 -#define REGS REGS1302,32931 - -C/absmi_insts.h,60 -#define OPCODE(OPCODE45,1058 -#undef OPCODEOPCODE47,1115 - -C/adtdefs.c,4348 -static char SccsId[] = "%W% %G%";SccsId18,587 -#define ADTDEFS_CADTDEFS_C21,629 -#define inlineinline24,667 -uint64_t HashFunction(const unsigned char *CHP) {HashFunction37,850 -GetFunctorProp(AtomEntry *ae,GetFunctorProp56,1271 -static inline Functor InlinedUnlockedMkFunctor(AtomEntry *ae, arity_t arity) {InlinedUnlockedMkFunctor71,1653 -Functor Yap_UnlockedMkFunctor(AtomEntry *ae, arity_t arity) {Yap_UnlockedMkFunctor92,2198 -Functor Yap_MkFunctor(Atom ap, arity_t arity) {Yap_MkFunctor97,2378 -void Yap_MkFunctorWithAddress(Atom ap, unsigned int arity, FunctorEntry *p) {Yap_MkFunctorWithAddress108,2652 -inline static Atom SearchInInvisible(const unsigned char *atom) {SearchInInvisible119,2935 -static inline Atom SearchAtom(const unsigned char *p, Atom a) {SearchAtom134,3346 -LookupAtom(const unsigned char *atom) { /* lookup atom in atom table */LookupAtom150,3642 -Atom Yap_LookupAtomWithLength(const char *atom,Yap_LookupAtomWithLength209,5193 -Atom Yap_LookupAtom(const char *atom) { /* lookup atom in atom table */Yap_LookupAtom225,5562 -Atom Yap_ULookupAtom(Yap_ULookupAtom229,5687 -Atom Yap_FullLookupAtom(const char *atom) { /* lookup atom in atom table */Yap_FullLookupAtom235,5816 -void Yap_LookupAtomWithAddress(const char *atom,Yap_LookupAtomWithAddress244,6047 -void Yap_ReleaseAtom(Atom atom) { /* Releases an atom from the hash chain */Yap_ReleaseAtom274,6979 -GetAPropHavingLock(AtomEntry *ae,GetAPropHavingLock305,7838 -Prop Yap_GetAPropHavingLock(Yap_GetAPropHavingLock315,8112 -GetAProp(Atom a, PropFlags kind) { /* look property list of atom a for kind */GetAProp321,8276 -Prop Yap_GetAProp(Atom a,Yap_GetAProp331,8510 -OpEntry *Yap_GetOpPropForAModuleHavingALock(Yap_GetOpPropForAModuleHavingALock336,8648 -int Yap_HasOp(Atom a) { /* look property list of atom a for kind */Yap_HasOp351,9050 -Yap_OpPropForModule(Atom a,Yap_OpPropForModule368,9431 -Yap_GetOpProp(Atom a, op_type type,Yap_GetOpProp406,10407 -inline static Prop GetPredPropByAtomHavingLock(AtomEntry *ae, Term cur_mod)GetPredPropByAtomHavingLock461,11723 -Prop Yap_GetPredPropByAtom(Atom at, Term cur_mod)Yap_GetPredPropByAtom484,12305 -inline static Prop GetPredPropByAtomHavingLockInThisModule(AtomEntry *ae, Term cur_mod)GetPredPropByAtomHavingLockInThisModule496,12599 -Prop Yap_GetPredPropByAtomInThisModule(Atom at, Term cur_mod)Yap_GetPredPropByAtomInThisModule518,13162 -Prop Yap_GetPredPropByFunc(Functor f, Term cur_mod)Yap_GetPredPropByFunc531,13481 -Prop Yap_GetPredPropByFuncInThisModule(Functor f, Term cur_mod)Yap_GetPredPropByFuncInThisModule543,13712 -Prop Yap_GetPredPropHavingLock(Atom ap, unsigned int arity, Term mod)Yap_GetPredPropHavingLock554,13954 -Prop Yap_GetExpProp(Atom at, unsigned int arity) {Yap_GetExpProp572,14406 -Prop Yap_GetExpPropHavingLock(AtomEntry *ae, unsigned int arity) {Yap_GetExpPropHavingLock586,14804 -static int ExpandPredHash(void) {ExpandPredHash597,15063 -Prop Yap_NewPredPropByFunctor(FunctorEntry *fe, Term cur_mod) {Yap_NewPredPropByFunctor628,15805 -Prop Yap_NewThreadPred(PredEntry *ap USES_REGS) {Yap_NewThreadPred720,18600 -Prop Yap_NewPredPropByAtom(AtomEntry *ae, Term cur_mod) {Yap_NewPredPropByAtom768,20248 -Prop Yap_PredPropByFunctorNonThreadLocal(Functor f, Term cur_mod)Yap_PredPropByFunctorNonThreadLocal826,22074 -Prop Yap_PredPropByAtomNonThreadLocal(Atom at, Term cur_mod)Yap_PredPropByAtomNonThreadLocal861,23061 -Term Yap_GetValue(Atom a) {Yap_GetValue885,23736 -void Yap_PutValue(Atom a, Term v) {Yap_PutValue915,24440 -bool Yap_PutAtomTranslation(Atom a, arity_t arity, Int i) {Yap_PutAtomTranslation1033,27498 -bool Yap_PutFunctorTranslation(Atom a, arity_t arity, Int i) {Yap_PutFunctorTranslation1057,28174 -bool Yap_PutAtomMutex(Atom a, void *i) {Yap_PutAtomMutex1081,28853 -Term Yap_ArrayToList(register Term *tp, size_t nof) {Yap_ArrayToList1104,29452 -int Yap_GetName(char *s, UInt max, Term t) {Yap_GetName1122,29771 -Term MkSFTerm(Functor f, int n, Term *a, empty_value) {MkSFTerm1147,30281 -CELL *ArgsOfSFTerm(Term t) {ArgsOfSFTerm1165,30562 -static HoldEntry *InitAtomHold(void) {InitAtomHold1175,30698 -int Yap_AtomIncreaseHold(Atom at) {Yap_AtomIncreaseHold1186,30939 -int Yap_AtomDecreaseHold(Atom at) {Yap_AtomDecreaseHold1211,31482 -const char *IndicatorOfPred(PredEntry *pe) {IndicatorOfPred1235,32005 - -C/agc.c,5251 -static char SccsId[] = "@(#)agc.c 1.3 3/15/90";SccsId18,588 -#define errout errout32,874 -#define AtomMarkedBit AtomMarkedBit39,1094 -MarkAtomEntry(AtomEntry *ae)MarkAtomEntry42,1138 -AtomResetMark(AtomEntry *ae)AtomResetMark50,1271 -CleanAtomMarkedBit(Atom a)CleanAtomMarkedBit62,1474 -FuncAdjust(Functor f)FuncAdjust71,1590 -AtomTermAdjust(Term t)AtomTermAdjust82,1758 -TermToGlobalOrAtomAdjust(Term t)TermToGlobalOrAtomAdjust90,1883 -AtomAdjust(Atom a)AtomAdjust98,2009 -#define IsOldCode(IsOldCode107,2130 -#define IsOldCodeCellPtr(IsOldCodeCellPtr108,2157 -#define IsOldDelay(IsOldDelay109,2191 -#define IsOldDelayPtr(IsOldDelayPtr110,2219 -#define IsOldLocalInTR(IsOldLocalInTR111,2250 -#define IsOldLocalInTRPtr(IsOldLocalInTRPtr112,2282 -#define IsOldGlobal(IsOldGlobal113,2317 -#define IsOldGlobalPtr(IsOldGlobalPtr114,2346 -#define IsOldTrail(IsOldTrail115,2378 -#define IsOldTrailPtr(IsOldTrailPtr116,2406 -#define CharP(CharP118,2438 -#define REINIT_LOCK(REINIT_LOCK120,2470 -#define REINIT_RWLOCK(REINIT_RWLOCK121,2494 -#define BlobTypeAdjust(BlobTypeAdjust122,2520 -#define NoAGCAtomAdjust(NoAGCAtomAdjust123,2550 -#define OrArgAdjust(OrArgAdjust124,2581 -#define TabEntryAdjust(TabEntryAdjust125,2605 -#define IntegerAdjust(IntegerAdjust126,2632 -#define AddrAdjust(AddrAdjust127,2662 -#define MFileAdjust(MFileAdjust128,2688 -#define CodeVarAdjust(CodeVarAdjust129,2715 -#define ConstantAdjust(ConstantAdjust130,2744 -#define ArityAdjust(ArityAdjust131,2774 -#define DoubleInCodeAdjust(DoubleInCodeAdjust132,2801 -#define IntegerInCodeAdjust(IntegerInCodeAdjust133,2832 -#define OpcodeAdjust(OpcodeAdjust134,2864 -#define ModuleAdjust(ModuleAdjust135,2892 -#define ExternalFunctionAdjust(ExternalFunctionAdjust136,2920 -#define DBRecordAdjust(DBRecordAdjust137,2958 -#define PredEntryAdjust(PredEntryAdjust138,2988 -#define ModEntryPtrAdjust(ModEntryPtrAdjust139,3019 -#define AtomEntryAdjust(AtomEntryAdjust140,3052 -#define GlobalEntryAdjust(GlobalEntryAdjust141,3083 -#define BlobTermInCodeAdjust(BlobTermInCodeAdjust142,3116 -#define CellPtoHeapAdjust(CellPtoHeapAdjust143,3152 -#define PtoAtomHashEntryAdjust(PtoAtomHashEntryAdjust144,3185 -#define CellPtoHeapCellAdjust(CellPtoHeapCellAdjust145,3223 -#define CellPtoTRAdjust(CellPtoTRAdjust146,3260 -#define CodeAddrAdjust(CodeAddrAdjust147,3291 -#define ConsultObjAdjust(ConsultObjAdjust148,3321 -#define DelayAddrAdjust(DelayAddrAdjust149,3353 -#define DelayAdjust(DelayAdjust150,3384 -#define GlobalAdjust(GlobalAdjust151,3411 -#define DBRefAdjust(DBRefAdjust152,3439 -#define DBRefPAdjust(DBRefPAdjust153,3470 -#define DBTermAdjust(DBTermAdjust154,3498 -#define LUIndexAdjust(LUIndexAdjust155,3526 -#define SIndexAdjust(SIndexAdjust156,3555 -#define LocalAddrAdjust(LocalAddrAdjust157,3583 -#define GlobalAddrAdjust(GlobalAddrAdjust158,3614 -#define OpListAdjust(OpListAdjust159,3646 -#define PtoLUCAdjust(PtoLUCAdjust160,3674 -#define PtoStCAdjust(PtoStCAdjust161,3702 -#define PtoArrayEAdjust(PtoArrayEAdjust162,3730 -#define PtoArraySAdjust(PtoArraySAdjust163,3761 -#define PtoGlobalEAdjust(PtoGlobalEAdjust164,3792 -#define PtoDelayAdjust(PtoDelayAdjust165,3824 -#define PtoGloAdjust(PtoGloAdjust166,3854 -#define PtoLocAdjust(PtoLocAdjust167,3882 -#define PtoHeapCellAdjust(PtoHeapCellAdjust168,3910 -#define TermToGlobalAdjust(TermToGlobalAdjust169,3943 -#define PtoOpAdjust(PtoOpAdjust170,3977 -#define PtoLUClauseAdjust(PtoLUClauseAdjust171,4004 -#define PtoLUIndexAdjust(PtoLUIndexAdjust172,4037 -#define PtoDBTLAdjust(PtoDBTLAdjust173,4069 -#define PtoPredAdjust(PtoPredAdjust174,4098 -#define PtoPtoPredAdjust(PtoPtoPredAdjust175,4127 -#define OpRTableAdjust(OpRTableAdjust176,4159 -#define OpEntryAdjust(OpEntryAdjust177,4189 -#define PropAdjust(PropAdjust178,4218 -#define TrailAddrAdjust(TrailAddrAdjust179,4244 -#define XAdjust(XAdjust180,4275 -#define YAdjust(YAdjust181,4298 -#define HoldEntryAdjust(HoldEntryAdjust182,4321 -#define CodeCharPAdjust(CodeCharPAdjust183,4352 -#define CodeConstCharPAdjust(CodeConstCharPAdjust184,4383 -#define CodeVoidPAdjust(CodeVoidPAdjust185,4419 -#define HaltHookAdjust(HaltHookAdjust186,4450 -#define recompute_mask(recompute_mask188,4481 -#define rehash(rehash190,4510 -#define RestoreSWIHash(RestoreSWIHash192,4556 -AdjustTermFlag(flag_term *tarr, UInt i)AdjustTermFlag195,4594 -static void RestoreFlags( UInt NFlags )RestoreFlags204,4823 -RestoreHashPreds( USES_REGS1 )RestoreHashPreds223,5155 -static void init_reg_copies(USES_REGS1)init_reg_copies228,5192 -RestoreAtomList(Atom atm USES_REGS)RestoreAtomList244,5549 -mark_trail(USES_REGS1)mark_trail259,5817 -mark_registers(USES_REGS1)mark_registers279,6134 -mark_local(USES_REGS1)mark_local297,6412 -mark_global_cell(CELL *pt)mark_global_cell323,6843 -mark_global(USES_REGS1)mark_global381,8228 -mark_stacks(USES_REGS1)mark_stacks396,8448 -clean_atom_list(AtomHashEntry *HashPtr)clean_atom_list405,8598 -clean_atoms(void)clean_atoms446,9720 -atom_gc(USES_REGS1)atom_gc466,10533 -Yap_atom_gc(USES_REGS1)Yap_atom_gc511,11805 -p_atom_gc(USES_REGS1)p_atom_gc517,11868 -p_inform_agc(USES_REGS1)p_inform_agc526,11992 -Yap_init_agc(void)Yap_init_agc540,12264 - -C/alloc.c,6556 -static char SccsId[] = "%W% %G%";SccsId18,626 -#undef USE_SYSTEM_MMAPUSE_SYSTEM_MMAP54,1168 -#undef USE_SBRKUSE_SBRK57,1214 -#define MASK MASK64,1396 -#undef freefree69,1448 -#undef mallocmalloc70,1460 -#undef reallocrealloc71,1474 -int write_malloc = 0;write_malloc73,1490 -void *my_malloc(size_t sz) {my_malloc75,1513 -void *my_realloc(void *ptr, size_t sz) {my_realloc88,1855 -void my_free(void *p) {my_free101,2230 -#define my_malloc(my_malloc117,2584 -#define my_realloc(my_realloc118,2623 -#define my_free(my_free119,2674 -static char *my_reallocl(char *ptr, UInt sz, UInt osz, int safe) {my_reallocl121,2710 -long long unsigned int mallocs, reallocs, frees;mallocs168,3724 -long long unsigned int mallocs, reallocs, frees;reallocs168,3724 -long long unsigned int mallocs, reallocs, frees;frees168,3724 -long long unsigned int tmalloc;tmalloc169,3773 -#undef INSTRUMENT_MALLOCINSTRUMENT_MALLOC171,3806 -static inline char *call_malloc(size_t size) {call_malloc173,3832 -void *Yap_AllocCodeSpace(size_t size) {Yap_AllocCodeSpace197,4295 -static inline char *call_realloc(char *p, size_t size) {call_realloc202,4393 -void *Yap_ReallocCodeSpace(void *p, size_t size) {Yap_ReallocCodeSpace228,4917 -void Yap_FreeCodeSpace(void *p) {Yap_FreeCodeSpace233,5030 -void *Yap_AllocAtomSpace(size_t size) {Yap_AllocAtomSpace251,5345 -void Yap_FreeAtomSpace(void *p) {Yap_FreeAtomSpace256,5443 -ADDR Yap_InitPreAllocCodeSpace(int wid) {Yap_InitPreAllocCodeSpace278,5865 -ADDR Yap_ExpandPreAllocCodeSpace(UInt sz0, void *cip, int safe) {Yap_ExpandPreAllocCodeSpace331,7084 -struct various_codes *Yap_heap_regs;Yap_heap_regs372,7977 -static void InitHeap(void) {InitHeap374,8015 -void Yap_InitHeap(void *heap_addr) {Yap_InitHeap379,8136 -static void InitExStacks(int wid, int Trail, int Stack) {InitExStacks385,8225 -void Yap_InitExStacks(int wid, int Trail, int Stack) {Yap_InitExStacks428,9528 -void Yap_KillStacks(int wid) {Yap_KillStacks433,9642 -void Yap_KillStacks(int wid) {Yap_KillStacks441,9814 -void Yap_InitMemory(UInt Trail, UInt Heap, UInt Stack) { InitHeap(); }Yap_InitMemory449,9942 -int Yap_ExtendWorkSpace(Int s) {Yap_ExtendWorkSpace451,10014 -size_t Yap_ExtendWorkSpaceThroughHole(size_t s) { return 0; }Yap_ExtendWorkSpaceThroughHole465,10348 -void Yap_AllocHole(UInt actual_request, UInt total_size) {}Yap_AllocHole467,10411 -UInt Yap_givemallinfo(void) {Yap_givemallinfo470,10490 -#define snprintf3(snprintf3479,10612 -#define snprintf4(snprintf4480,10657 -#define snprintf5(snprintf5481,10708 -#define snprintf3(snprintf3483,10771 -#define snprintf4(snprintf4484,10812 -#define snprintf5(snprintf5485,10859 -#define MinHGap MinHGap500,11201 -static void RemoveFromFreeList(BlockHeader *b) {RemoveFromFreeList502,11226 -static void AddToFreeList(BlockHeader *b) {AddToFreeList530,11778 -static void FreeBlock(BlockHeader *b) {FreeBlock555,12335 -GetBlock(unsigned long int n) { /* get free block with size at least n */GetBlock617,13917 -static char *AllocHeap(size_t size) {AllocHeap644,14564 -static void FreeCodeSpace(char *p) {FreeCodeSpace737,17400 -static char *AllocCodeSpace(unsigned long int size) {AllocCodeSpace741,17498 -int vsc_mem_trace;vsc_mem_trace748,17722 -void Yap_FreeCodeSpace(char *p) {Yap_FreeCodeSpace753,17848 -char *Yap_AllocAtomSpace(unsigned long int size) {Yap_AllocAtomSpace761,17973 -void Yap_FreeAtomSpace(char *p) {Yap_FreeAtomSpace770,18151 -char *Yap_AllocCodeSpace(unsigned long int size) {Yap_AllocCodeSpace778,18276 -#undef DEBUG_WIN32_ALLODEBUG_WIN32_ALLO807,19641 -static LPVOID brk;brk811,19688 -static int ExtendWorkSpace(Int s, int fixed_allocation) {ExtendWorkSpace813,19708 -static MALLOC_T InitWorkSpace(Int s) {InitWorkSpace863,21180 -int Yap_FreeWorkSpace(void) { return TRUE; }Yap_FreeWorkSpace875,21410 -#define USE_FIXED USE_FIXED893,21685 -#define MAP_FIXED MAP_FIXED897,21731 -static MALLOC_T WorkSpaceTop;WorkSpaceTop900,21759 -static MALLOC_T InitWorkSpace(Int s) {InitWorkSpace902,21790 -static MALLOC_T mmap_extension(Int s, MALLOC_T base, int fixed_allocation) {mmap_extension1019,25350 -static int ExtendWorkSpace(Int s, int fixed_allocation) {ExtendWorkSpace1120,28421 -int Yap_FreeWorkSpace(void) { return 1; }Yap_FreeWorkSpace1170,29903 -#define MMAP_ADDR MMAP_ADDR1179,30034 -static MALLOC_T WorkSpaceTop;WorkSpaceTop1182,30065 -static MALLOC_T InitWorkSpace(Int s) {InitWorkSpace1184,30096 -static int ExtendWorkSpace(Int s) {ExtendWorkSpace1206,30761 -int Yap_FreeWorkSpace(void) { return TRUE; }Yap_FreeWorkSpace1239,31847 -int in_limbo; /* non-zero when restoring a saved state */in_limbo1255,32358 -#define LIMBO_SIZE LIMBO_SIZE1258,32436 -static char limbo_space[LIMBO_SIZE]; /* temporary malloc space */limbo_space1261,32470 -static char *limbo_p = limbo_space, *limbo_pp = 0;limbo_p1262,32536 -static char *limbo_p = limbo_space, *limbo_pp = 0;limbo_pp1262,32536 -static MALLOC_T InitWorkSpace(Int s) {InitWorkSpace1264,32588 -static int ExtendWorkSpace(Int s) {ExtendWorkSpace1274,32815 -int Yap_FreeWorkSpace(void) { return TRUE; }Yap_FreeWorkSpace1290,33280 -malloc(size_t size) {malloc1293,33335 -void free(MALLOC_T ptr) {free1309,33711 -XX realloc(MALLOC_T ptr, size_t size) {realloc1327,34135 -calloc(size_t n, size_t e) {calloc1337,34287 -int mallopt(cmd, value) { return (value); }mallopt1346,34417 -static struct mallinfo xmall;xmall1348,34462 -struct mallinfo mallinfo(void) {mallinfo1350,34493 -#define MAX_SPACE MAX_SPACE1362,34664 -#define MAX_SPACE MAX_SPACE1364,34706 -static int total_space;total_space1367,34750 -static MALLOC_T InitWorkSpace(Int s) {InitWorkSpace1369,34775 -static int ExtendWorkSpace(Int s) {ExtendWorkSpace1385,35083 -int Yap_FreeWorkSpace(void) { return TRUE; }Yap_FreeWorkSpace1421,36174 -static void InitHeap(void *heap_addr) {InitHeap1424,36227 -void Yap_InitHeap(void *heap_addr) { InitHeap(heap_addr); }Yap_InitHeap1445,36815 -void Yap_InitMemory(UInt Trail, UInt Heap, UInt Stack) {Yap_InitMemory1447,36876 -void Yap_InitExStacks(int wid, int Trail, int Stack) {Yap_InitExStacks1506,38728 -#define WorkSpaceTop WorkSpaceTop1515,38986 -#define MAP_FIXED MAP_FIXED1516,39011 -void Yap_add_memory_hole(ADDR Start, ADDR End) { Yap_HoleSize += Start - End; }Yap_add_memory_hole1521,39074 -int Yap_ExtendWorkSpace(Int s) {Yap_ExtendWorkSpace1524,39162 -size_t Yap_ExtendWorkSpaceThroughHole(size_t s) {Yap_ExtendWorkSpaceThroughHole1534,39362 -void Yap_AllocHole(UInt actual_request, UInt total_size) {Yap_AllocHole1579,40616 - -C/amasm.c,11207 -static char SccsId[] = "@(#)amasm.c 1.3 3/15/90";SccsId185,5363 -#define TYPE_XX TYPE_XX205,5672 -#define TYPE_CX TYPE_CX206,5690 -#define TYPE_XC TYPE_XC207,5708 -typedef struct cmp_op_info_struct {cmp_op_info_struct209,5727 - wamreg x1_arg, x2_arg;x1_arg210,5763 - wamreg x1_arg, x2_arg;cmp_op_info_struct::x1_arg210,5763 - wamreg x1_arg, x2_arg;x2_arg210,5763 - wamreg x1_arg, x2_arg;cmp_op_info_struct::x2_arg210,5763 - Int c_arg;c_arg211,5788 - Int c_arg;cmp_op_info_struct::c_arg211,5788 - int c_type;c_type212,5801 - int c_type;cmp_op_info_struct::c_type212,5801 - struct clause_info_struct *cl_info;cl_info213,5815 - struct clause_info_struct *cl_info;cmp_op_info_struct::cl_info213,5815 -} cmp_op_info;cmp_op_info214,5853 -typedef struct clause_info_struct {clause_info_struct216,5869 - int alloc_found, dealloc_found;alloc_found217,5905 - int alloc_found, dealloc_found;clause_info_struct::alloc_found217,5905 - int alloc_found, dealloc_found;dealloc_found217,5905 - int alloc_found, dealloc_found;clause_info_struct::dealloc_found217,5905 - struct pred_entry *CurrentPred;CurrentPred218,5939 - struct pred_entry *CurrentPred;clause_info_struct::CurrentPred218,5939 -} clause_info;clause_info219,5973 -profile_data *Yap_initProfiler(PredEntry *p) {Yap_initProfiler301,10005 -#define GONEXT(GONEXT317,10389 -inline static yslot emit_y(Ventry *ve) {emit_y319,10458 -inline static OPREG Var_Ref(Ventry *ve, int is_y_var) {Var_Ref327,10672 -#define is_void_var(is_void_var347,11179 -#define is_a_void(is_a_void348,11253 -#define is_temp_var(is_temp_var350,11314 -#define is_atemp_var(is_atemp_var351,11388 -#define no_ref_var(no_ref_var353,11458 -#define no_ref(no_ref354,11523 -inline static yamop *fill_a(CELL a, yamop *code_p, int pass_no) {fill_a356,11573 -inline static wamreg emit_xreg(CELL w) { return (wamreg)w; }emit_xreg364,11733 -inline static yslot emit_yreg(CELL w) { return (yslot)w; }emit_yreg366,11795 -inline static wamreg emit_x(CELL xarg) {emit_x368,11855 -wamreg Yap_emit_x(CELL xarg) { return emit_x(xarg); }Yap_emit_x380,12107 -inline static yamop *emit_a(CELL a) { return ((yamop *)(a)); }emit_a382,12162 -inline static struct pred_entry *emit_pe(struct pred_entry *a) { return a; }emit_pe384,12226 -inline static yamop *emit_ilabel(register CELL addr,emit_ilabel386,12304 -inline static CELL *emit_bmlabel(register CELL addr,emit_bmlabel395,12551 -inline static Functor emit_f(CELL a) { return (Functor)(a); }emit_f400,12748 -inline static CELL emit_c(CELL a) { return a; }emit_c402,12811 -static inline COUNT emit_count(CELL count) { return count; }emit_count404,12860 -inline static void DumpOpCodes(void) {DumpOpCodes407,12943 -static inline OPCODE emit_op(op_numbers op) { return absmadr((Int)op); }emit_op419,13170 -static OPCODE opcode(op_numbers op) { return (emit_op(op)); }opcode421,13244 -Yap_opcode(op_numbers op) { return opcode(op); }Yap_opcode424,13314 -static void add_clref(CELL clause_code, int pass_no) {add_clref426,13364 -static void add_to_dbtermsl(struct intermediates *cip, Term t) {add_to_dbtermsl433,13527 -static yamop *a_lucl(op_numbers opcode, yamop *code_p, int pass_no,a_lucl439,13702 -static yamop *a_cle(op_numbers opcode, yamop *code_p, int pass_no,a_cle457,14290 -inline static yamop *a_e(op_numbers opcode, yamop *code_p, int pass_no) {a_e471,14641 -inline static yamop *a_p0(op_numbers opcode, yamop *code_p, int pass_no,a_p0479,14804 -inline static yamop *a_lp(op_numbers opcode, yamop *code_p, int pass_no,a_lp489,15035 -inline static yamop *a_ue(op_numbers opcode, op_numbers opcodew, yamop *code_p,a_ue500,15353 -inline static yamop *emit_fail(struct intermediates *cip) {emit_fail510,15606 -inline static yamop *a_v(op_numbers opcodex, op_numbers opcodey, yamop *code_p,a_v519,15840 -inline static yamop *a_vp(op_numbers opcodex, op_numbers opcodey, yamop *code_p,a_vp542,16422 -inline static yamop *a_uv(Ventry *ve, op_numbers opcodex, op_numbers opcodexw,a_uv570,17299 -inline static yamop *a_vv(op_numbers opcode, op_numbers opcodew, yamop *code_p,a_vv595,18005 -inline static yamop *a_vr(op_numbers opcodex, op_numbers opcodey, yamop *code_p,a_vr620,18729 -inline static yamop *a_rv(op_numbers opcodex, op_numbers opcodey,a_rv785,24227 -inline static void a_vsf(int opcode, yamop *code_p, int pass_no,a_vsf813,24955 -inline static void a_asf(int opcode, yamop *code_p, int pass_no,a_asf840,25779 -inline static void a_pair(CELL *seq_ptr, int pass_no,a_pair853,26164 -inline static yamop *a_n(op_numbers opcode, int count, yamop *code_p,a_n863,26435 -inline static yamop *a_eam(op_numbers opcode, int pred, long cl, yamop *code_p,a_eam874,26675 -inline static yamop *a_un(op_numbers opcode, op_numbers opcodew, int count,a_un886,26953 -inline static yamop *a_f(CELL rnd1, op_numbers opcode, yamop *code_p,a_f897,27249 -inline static yamop *a_uf(CELL rnd1, op_numbers opcode, op_numbers opcodew,a_uf910,27548 -inline static yamop *a_c(CELL rnd1, op_numbers opcode, yamop *code_p,a_c924,27917 -inline static yamop *a_uc(CELL rnd1, op_numbers opcode, op_numbers opcode_w,a_uc934,28152 -inline static yamop *a_wblob(CELL rnd1, op_numbers opcode,a_wblob945,28457 -static yamop *a_ensure_space(op_numbers opcode, yamop *code_p, int pass_no,a_ensure_space958,28874 -inline static yamop *a_wdbt(CELL rnd1, op_numbers opcode,a_wdbt973,29372 -inline static yamop *a_ublob(CELL rnd1, op_numbers opcode, op_numbers opcode_w,a_ublob986,29757 -inline static yamop *a_ustring(CELL rnd1, op_numbers opcode,a_ustring1001,30263 -inline static yamop *a_udbt(CELL rnd1, op_numbers opcode, op_numbers opcode_w,a_udbt1016,30786 -inline static yamop *a_ud(op_numbers opcode, op_numbers opcode_w, yamop *code_p,a_ud1030,31249 -inline static yamop *a_ui(op_numbers opcode, op_numbers opcode_w, yamop *code_p,a_ui1045,31716 -inline static yamop *a_wd(op_numbers opcode, yamop *code_p, int pass_no,a_wd1057,32090 -inline static yamop *a_wi(op_numbers opcode, yamop *code_p, int pass_no,a_wi1071,32487 -inline static yamop *a_nc(CELL rnd1, op_numbers opcode, int i, yamop *code_p,a_nc1082,32792 -inline static yamop *a_unc(CELL rnd1, op_numbers opcode, op_numbers opcodew,a_unc1093,33064 -inline static yamop *a_rf(op_numbers opcode, yamop *code_p, int pass_no,a_rf1105,33406 -inline static yamop *a_rd(op_numbers opcode, yamop *code_p, int pass_no,a_rd1117,33763 -inline static yamop *a_ri(op_numbers opcode, yamop *code_p, int pass_no,a_ri1132,34206 -static yamop *a_rc(op_numbers opcode, yamop *code_p, int pass_no,a_rc1144,34556 -inline static yamop *a_rb(op_numbers opcode, int *clause_has_blobsp,a_rb1229,37781 -inline static yamop *a_rstring(op_numbers opcode, int *clause_has_blobsp,a_rstring1243,38238 -inline static yamop *a_dbt(op_numbers opcode, int *clause_has_dbtermp,a_dbt1257,38711 -inline static yamop *a_r(CELL arnd2, op_numbers opcode, yamop *code_p,a_r1271,39141 -static yamop *check_alloc(clause_info *clinfo, yamop *code_p, int pass_no,check_alloc1281,39378 -static yamop *a_l(CELL rnd1, op_numbers opcode, yamop *code_p, int pass_no,a_l1292,39770 -static yamop *a_il(CELL rnd1, op_numbers opcode, yamop *code_p, int pass_no,a_il1303,40072 -a_p(op_numbers opcode, clause_info *clinfo, yamop *code_p, int pass_no,a_p1314,40347 -static yamop *a_empty_call(clause_info *clinfo, yamop *code_p, int pass_no,a_empty_call1453,44758 -static yamop *a_pl(op_numbers opcode, PredEntry *pred, yamop *code_p,a_pl1480,45688 -compile_cmp_flags(unsigned char *s0) {compile_cmp_flags1492,45923 -Yap_compile_cmp_flags(PredEntry *pred) {Yap_compile_cmp_flags1524,46860 -static yamop *a_bfunc(CELL a1, CELL a2, PredEntry *pred, clause_info *clinfo,a_bfunc1529,46994 -static yamop *a_igl(CELL rnd1, op_numbers opcode, yamop *code_p, int pass_no,a_igl1602,49532 -static yamop *a_xigl(op_numbers opcode, yamop *code_p, int pass_no,a_xigl1612,49794 -static int is_switch_on_list(op_numbers opcode, struct intermediates *cip) {is_switch_on_list1625,50201 -static yamop *a_4sw(op_numbers opcode, yamop *code_p, int pass_no,a_4sw1666,51648 -static yamop *a_4sw_x(op_numbers opcode, yamop *code_p, int pass_no,a_4sw_x1709,53119 -static yamop *a_4sw_s(op_numbers opcode, yamop *code_p, int pass_no,a_4sw_s1730,53759 -static void init_log_upd_table(LogUpdIndex *ic, union clause_obj *cl_u) {init_log_upd_table1751,54391 -static void init_static_table(StaticIndex *ic, union clause_obj *cl_u) {init_static_table1767,54867 -static yamop *a_hx(op_numbers opcode, union clause_obj *cl_u, int log_update,a_hx1774,55087 -static yamop *a_if(op_numbers opcode, union clause_obj *cl_u, int log_update,a_if1807,55985 -static yamop *a_ifnot(op_numbers opcode, yamop *code_p, int pass_no,a_ifnot1838,56882 -static yamop *a_cut(clause_info *clinfo, yamop *code_p, int pass_no,a_cut1852,57418 -a_try(op_numbers opcode, CELL lab, CELL opr, int nofalts, int hascut,a_try1870,58054 -a_either(op_numbers opcode, CELL opr, CELL lab, int nofalts, yamop *code_p,a_either2007,62021 -static yamop *a_gl(op_numbers opcode, yamop *code_p, int pass_no,a_gl2036,62899 -static yamop *a_ucons(int *do_not_optimise_uatomp, compiler_vm_op opcode,a_ucons2050,63420 -static yamop *a_uvar(yamop *code_p, int pass_no, struct intermediates *cip) {a_uvar2093,64806 -static yamop *a_wvar(yamop *code_p, int pass_no, struct intermediates *cip) {a_wvar2139,66282 -static yamop *a_glist(int *do_not_optimise_uatomp, yamop *code_p, int pass_no,a_glist2163,66849 -#define NEXTOPC NEXTOPC2209,68490 -static yamop *a_deallocate(clause_info *clinfo, yamop *code_p, int pass_no,a_deallocate2211,68532 -static yamop *a_bmap(yamop *code_p, int pass_no, struct PSEUDO *cpc) {a_bmap2226,69060 -static yamop *a_bregs(yamop *code_p, int pass_no, struct PSEUDO *cpc) {a_bregs2234,69327 -static yamop *copy_blob(yamop *code_p, int pass_no, struct PSEUDO *cpc) {copy_blob2243,69642 -static yamop *copy_string(yamop *code_p, int pass_no, struct PSEUDO *cpc) {copy_string2251,69918 -static void a_fetch_vv(cmp_op_info *cmp_info, int pass_no,a_fetch_vv2259,70196 -static void a_fetch_vc(cmp_op_info *cmp_info, int pass_no,a_fetch_vc2287,71050 -static void a_fetch_cv(cmp_op_info *cmp_info, int pass_no,a_fetch_cv2307,71635 -static yamop *a_f2(cmp_op_info *cmp_info, yamop *code_p, int pass_no,a_f22327,72220 -static yamop *a_special_label(yamop *code_p, int pass_no,a_special_label2788,85694 -#define TRYCODE(TRYCODE2826,86626 -#define TABLE_TRYCODE(TABLE_TRYCODE2830,86891 -#define TRYCODE(TRYCODE2834,87130 -#define TABLE_TRYCODE(TABLE_TRYCODE2837,87340 -static yamop *do_pass(int pass_no, yamop **entry_codep, int assembling,do_pass2842,87544 -#define MAX_DISJ_BRANCHES MAX_DISJ_BRANCHES2846,87772 -static DBTerm *fetch_clause_space(Term *tp, UInt size,fetch_clause_space3679,115313 -static DBTermList *init_dbterms_list(yamop *code_p, PredEntry *ap) {init_dbterms_list3732,116775 -#define DEFAULT_NLABELS DEFAULT_NLABELS3747,117150 -yamop *Yap_assemble(int mode, Term t, PredEntry *ap, int is_fact,Yap_assemble3749,117180 -void Yap_InitComma(void) {Yap_InitComma3875,121298 -yamop *Yap_InitCommaContinuation(PredEntry *pe) {Yap_InitCommaContinuation3897,122070 - -C/analyst.c,3410 -static char SccsId[] = "%W% %G%";SccsId18,587 -p_reset_op_counters()p_reset_op_counters39,879 -print_instruction(int inst)print_instruction49,1005 -p_show_op_counters()p_show_op_counters85,1736 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;nxvar292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;__anon1::nxvar292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;nxval292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;__anon1::nxval292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;nyvar292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;__anon1::nyvar292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;nyval292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;__anon1::nyval292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;ncons292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;__anon1::ncons292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;nlist292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;__anon1::nlist292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;nstru292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;__anon1::nstru292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;nmisc292,8613 - int nxvar, nxval, nyvar, nyval, ncons, nlist, nstru, nmisc;__anon1::nmisc292,8613 -} uGLOBAL_opcount;uGLOBAL_opcount293,8675 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;ncalls296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;__anon2::ncalls296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;nexecs296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;__anon2::nexecs296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;nproceeds296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;__anon2::nproceeds296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;ncallbips296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;__anon2::ncallbips296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;ncuts296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;__anon2::ncuts296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;nallocs296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;__anon2::nallocs296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;ndeallocs296,8712 - int ncalls, nexecs, nproceeds, ncallbips, ncuts, nallocs, ndeallocs;__anon2::ndeallocs296,8712 -} cGLOBAL_opcount;cGLOBAL_opcount297,8783 - int ntries, nretries, ntrusts;ntries300,8820 - int ntries, nretries, ntrusts;__anon3::ntries300,8820 - int ntries, nretries, ntrusts;nretries300,8820 - int ntries, nretries, ntrusts;__anon3::nretries300,8820 - int ntries, nretries, ntrusts;ntrusts300,8820 - int ntries, nretries, ntrusts;__anon3::ntrusts300,8820 -} ccpcount;ccpcount301,8853 -p_show_ops_by_group(void)p_show_ops_by_group304,8878 -p_show_sequences(void)p_show_sequences804,26902 -Yap_InitAnalystPreds(void)Yap_InitAnalystPreds853,28095 - -C/args.c,561 -static xarg *matchKey(Atom key, xarg *e0, int n, const param_t *def) {matchKey14,252 -int Yap_ArgKey(Atom key, const param_t *def, int n) {Yap_ArgKey30,567 -#define failed(failed41,780 -static xarg *failed__(yap_error_number e, Term t, xarg *a USES_REGS) {failed__43,833 -xarg *Yap_ArgListToVector(Term listl, const param_t *def, int n) {Yap_ArgListToVector48,933 -static xarg *matchKey2(Atom key, xarg *e0, int n, const param2_t *def) {matchKey2128,3348 -xarg *Yap_ArgList2ToVector(Term listl, const param2_t *def, int n) {Yap_ArgList2ToVector143,3712 - -C/arith0.c,579 -static char SccsId[] = "%W% %G%";SccsId18,590 -eval0(Int fi) {eval0119,2915 -Term Yap_eval_atom(Int f)Yap_eval_atom233,5118 -typedef struct init_const_eval {init_const_eval238,5168 - char *OpName;OpName239,5201 - char *OpName;init_const_eval::OpName239,5201 - arith0_op f;f240,5226 - arith0_op f;init_const_eval::f240,5226 -} InitConstEntry;InitConstEntry241,5246 -static InitConstEntry InitConstTab[] = {InitConstTab243,5265 -Yap_InitConstExps(void)Yap_InitConstExps261,5649 -Yap_ReInitConstExps(void)Yap_ReInitConstExps289,6432 - -C/arith1.c,1590 -static char SccsId[] = "%W% %G%";SccsId18,606 -float_to_int(Float v USES_REGS)float_to_int234,6617 -#define RBIG_FL(RBIG_FL249,6826 -typedef struct init_un_eval {init_un_eval251,6881 - char *OpName;OpName252,6911 - char *OpName;init_un_eval::OpName252,6911 - arith1_op f;f253,6936 - arith1_op f;init_un_eval::f253,6936 -} InitUnEntry;InitUnEntry254,6956 -#undef HAVE_ASINHHAVE_ASINH259,7031 -#undef HAVE_ACOSHHAVE_ACOSH260,7049 -#undef HAVE_ATANHHAVE_ATANH261,7067 -#undef HAVE_FINITEHAVE_FINITE262,7085 -#define asinh(asinh266,7128 -#define acosh(acosh269,7196 -#define atanh(atanh272,7264 -get_float(Term t) {get_float277,7336 -#define my_rint(my_rint297,7707 -double my_rint(double x)my_rint300,7747 -msb(Int inp USES_REGS) /* calculate the most significant bit for an integer */msb323,8055 -Yap_msb(Int inp USES_REGS) /* calculate the most significant bit for an integer */Yap_msb353,8887 -lsb(Int inp USES_REGS) /* calculate the least significant bit for an integer */lsb360,9016 -popcount(Int inp USES_REGS) /* calculate the least significant bit for an integer */popcount384,9720 -eval1(Int fi, Term t USES_REGS) {eval1404,10167 -Term Yap_eval_unary(Int f, Term t)Yap_eval_unary917,20148 -static InitUnEntry InitUnTab[] = {InitUnTab923,20232 -Yap_NameOfUnaryOp(int i)Yap_NameOfUnaryOp965,21153 -p_unary_is( USES_REGS1 )p_unary_is971,21240 -p_unary_op_as_integer( USES_REGS1 )p_unary_op_as_integer1021,22523 -Yap_InitUnaryExps(void)Yap_InitUnaryExps1045,23029 -Yap_ReInitUnaryExps(void)Yap_ReInitUnaryExps1074,23960 - -C/arith2.c,2037 -static char SccsId[] = "%W% %G%";SccsId18,606 -typedef struct init_un_eval {init_un_eval134,2914 - char *OpName;OpName135,2944 - char *OpName;init_un_eval::OpName135,2944 - arith2_op f;f136,2969 - arith2_op f;init_un_eval::f136,2969 -} InitBinEntry;InitBinEntry137,2989 -p_mod(Term t1, Term t2 USES_REGS) {p_mod141,3019 -p_div2(Term t1, Term t2 USES_REGS) {p_div2201,4374 -p_rem(Term t1, Term t2 USES_REGS) {p_rem267,5900 -p_rdiv(Term t1, Term t2 USES_REGS) {p_rdiv319,7136 -p_fdiv(Term t1, Term t2 USES_REGS)p_fdiv370,8367 -p_xor(Term t1, Term t2 USES_REGS)p_xor442,9751 -p_atan2(Term t1, Term t2 USES_REGS)p_atan2486,10658 -p_power(Term t1, Term t2 USES_REGS)p_power565,12074 -ipow(Int x, Int p)ipow651,13732 -p_exp(Term t1, Term t2 USES_REGS)p_exp681,14147 -gcd(Int m11,Int m21 USES_REGS)gcd774,15839 -Int gcdmult(Int m11,Int m21,Int *pm11) /* *pm11 gets multiplier of m11 */gcdmult796,16371 -p_gcd(Term t1, Term t2 USES_REGS)p_gcd824,16945 -p_min(Term t1, Term t2)p_min873,17952 -p_max(Term t1, Term t2)p_max969,19594 -eval2(Int fi, Term t1, Term t2 USES_REGS) {eval21062,21210 -Term Yap_eval_binary(Int f, Term t1, Term t2)Yap_eval_binary1109,22333 -static InitBinEntry InitBinTab[] = {InitBinTab1115,22432 -p_binary_is( USES_REGS1 )p_binary_is1146,23043 -do_arith23(arith2_op op USES_REGS)do_arith231226,25189 -export_p_plus( USES_REGS1 )export_p_plus1258,25932 -export_p_minus( USES_REGS1 )export_p_minus1264,26034 -export_p_times( USES_REGS1 )export_p_times1270,26138 -export_p_div( USES_REGS1 )export_p_div1276,26242 -export_p_and( USES_REGS1 )export_p_and1282,26342 -export_p_or( USES_REGS1 )export_p_or1288,26442 -export_p_slr( USES_REGS1 )export_p_slr1294,26540 -export_p_sll( USES_REGS1 )export_p_sll1300,26640 -p_binary_op_as_integer( USES_REGS1 )p_binary_op_as_integer1306,26740 -Yap_NameOfBinaryOp(int i)Yap_NameOfBinaryOp1330,27246 -Yap_InitBinaryExps(void)Yap_InitBinaryExps1337,27330 -Yap_ReInitBinaryExps(void)Yap_ReInitBinaryExps1375,28795 - -C/arrays.c,3479 -#undef HAVE_MMAPHAVE_MMAP118,4006 -typedef struct MMAP_ARRAY_BLOCK {MMAP_ARRAY_BLOCK219,7027 - Atom name;name220,7061 - Atom name;MMAP_ARRAY_BLOCK::name220,7061 - void *start;start221,7074 - void *start;MMAP_ARRAY_BLOCK::start221,7074 - size_t size;size222,7089 - size_t size;MMAP_ARRAY_BLOCK::size222,7089 - Int items;items223,7104 - Int items;MMAP_ARRAY_BLOCK::items223,7104 - int fd;fd224,7117 - int fd;MMAP_ARRAY_BLOCK::fd224,7117 - struct MMAP_ARRAY_BLOCK *next;next225,7127 - struct MMAP_ARRAY_BLOCK *next;MMAP_ARRAY_BLOCK::next225,7127 -} mmap_array_block;mmap_array_block226,7160 -static Int CloseMmappedArray(StaticArrayEntry *pp, void *area USES_REGS) {CloseMmappedArray228,7181 -static void ResizeMmappedArray(StaticArrayEntry *pp, Int dim,ResizeMmappedArray260,8147 -static Term GetTermFromArray(DBTerm *ref USES_REGS) {GetTermFromArray309,9849 -static Term GetNBTerm(live_term *ar, Int indx USES_REGS) {GetNBTerm326,10267 -static ArrayEntry *GetArrayEntry(Atom at, int owner) {GetArrayEntry359,11050 -static Term AccessNamedArray(Atom a, Int indx USES_REGS) {AccessNamedArray376,11438 -static Int access_array(USES_REGS1) {access_array516,15349 -static Int array_arg(USES_REGS1) {array_arg560,16467 -static void InitNamedArray(ArrayEntry *p, Int dim USES_REGS) {InitNamedArray595,17343 -static void CreateNamedArray(PropEntry *pp, Int dim, AtomEntry *ae USES_REGS) {CreateNamedArray616,17917 -static void AllocateStaticArraySpace(StaticArrayEntry *p,AllocateStaticArraySpace632,18341 -static StaticArrayEntry *CreateStaticArray(AtomEntry *ae, size_t dim,CreateStaticArray684,19866 -StaticArrayEntry *Yap_StaticArray(Atom na, size_t dim, static_array_types type,Yap_StaticArray759,22078 -static void ResizeStaticArray(StaticArrayEntry *pp, size_t dim USES_REGS) {ResizeStaticArray774,22551 -static void ClearStaticArray(StaticArrayEntry *pp) {ClearStaticArray837,24263 -static Int create_array(USES_REGS1) {create_array923,26687 - create_static_array(USES_REGS1) {create_static_array1031,29736 -StaticArrayEntry *Yap_StaticVector(Atom Name, size_t size,Yap_StaticVector1137,32927 -static Int static_array_properties(USES_REGS1) {static_array_properties1158,33561 -static Int resize_static_array(USES_REGS1) {resize_static_array1209,35186 -static Int clear_static_array(USES_REGS1) {clear_static_array1261,36593 -static Int close_static_array(USES_REGS1) {close_static_array1297,37611 -static Int create_mmapped_array(USES_REGS1) {create_mmapped_array1357,39243 -static void replace_array_references_complex(register CELL *pt0,replace_array_references_complex1500,43820 -static Term replace_array_references(Term t0 USES_REGS) {replace_array_references1608,46470 -static Int array_references(USES_REGS1) {array_references1639,47319 -static Int assign_static(USES_REGS1) {assign_static1663,48189 -static Int assign_dynamic(USES_REGS1) {assign_dynamic1975,56468 -static Int add_to_array_element(USES_REGS1) {add_to_array_element2135,60843 -static Int compile_array_refs(USES_REGS1) {compile_array_refs2318,66269 -static Int array_refs_compiled(USES_REGS1) { return compile_arrays; }array_refs_compiled2323,66358 -static Int sync_mmapped_arrays(USES_REGS1) {sync_mmapped_arrays2325,66429 -static Int static_array_to_term(USES_REGS1) {static_array_to_term2347,66874 -static Int static_array_location(USES_REGS1) {static_array_location2502,71235 -void Yap_InitArrayPreds(void) {Yap_InitArrayPreds2529,71933 - -C/atomic.c,4788 -static char SccsId[] = "%W% %G%";SccsId18,647 -#define HAS_CACHE_REGS HAS_CACHE_REGS34,927 -static int AlreadyHidden(unsigned char *name) {AlreadyHidden74,1918 -static Int hide_atom(USES_REGS1) { /* hide(+Atom) */hide_atom95,2468 -static Int hidden_atom(USES_REGS1) { /* '$hidden_atom'(+F) */hidden_atom145,3957 -static Int unhide_atom(USES_REGS1) { /* unhide_atom(+Atom) */unhide_atom175,4703 -static Int char_code(USES_REGS1) {char_code213,5767 -static Int name(USES_REGS1) { /* name(?Atomic,?String) */name272,7353 -static Int string_to_atomic(string_to_atomic311,8408 -static Int string_to_atom(string_to_atom344,9246 -static Int string_to_list(USES_REGS1) {string_to_list378,10091 -static Int atom_string(USES_REGS1) {atom_string406,10822 -static Int atom_chars(USES_REGS1) {atom_chars434,11529 -static Int atom_codes(USES_REGS1) {atom_codes461,12194 -static Int string_codes(USES_REGS1) {string_codes487,12862 -static Int string_chars(USES_REGS1) {string_chars513,13515 -static Int number_chars(USES_REGS1) {number_chars547,14478 -static Int number_atom(USES_REGS1) {number_atom582,15315 -static Int number_string(USES_REGS1) {number_string616,16147 -static Int number_codes(USES_REGS1) {number_codes642,16778 -static Int cont_atom_concat3(USES_REGS1) {cont_atom_concat3668,17410 -static Int atom_concat3(USES_REGS1) {atom_concat3702,18303 -#define CastToNumeric(CastToNumeric751,19452 -static Term CastToNumeric__(Atom at USES_REGS) {CastToNumeric__753,19507 -static Int cont_atomic_concat3(USES_REGS1) {cont_atomic_concat3760,19664 -static Int atomic_concat3(USES_REGS1) {atomic_concat3792,20493 -static Int cont_string_concat3(USES_REGS1) {cont_string_concat3840,21616 -static Int string_concat3(USES_REGS1) {string_concat3870,22361 -static Int cont_string_code3(USES_REGS1) {cont_string_code3917,23467 -static Int string_code3(USES_REGS1) {string_code3955,24532 -static Int get_string_code3(USES_REGS1) {get_string_code31009,25909 -static Int atom_concat2(USES_REGS1) {atom_concat21065,27278 -static Int string_concat2(USES_REGS1) {string_concat21114,28314 -static Int atomic_concat2(USES_REGS1) {atomic_concat21161,29325 -static Int atomics_to_string2(USES_REGS1) {atomics_to_string21210,30523 -static Int atomics_to_string3(USES_REGS1) {atomics_to_string31256,31630 -static Int atom_length(USES_REGS1) {atom_length1307,32966 -static Int atomic_length(USES_REGS1) {atomic_length1342,33936 -static Int string_length(USES_REGS1) {string_length1374,34788 -static Int downcase_text_to_atom(USES_REGS1) {downcase_text_to_atom1409,35720 -static Int upcase_text_to_atom(USES_REGS1) {upcase_text_to_atom1443,36604 -static Int downcase_text_to_string(USES_REGS1) {downcase_text_to_string1477,37494 -static Int upcase_text_to_string(USES_REGS1) {upcase_text_to_string1511,38385 -static Int downcase_text_to_codes(USES_REGS1) {downcase_text_to_codes1545,39284 -static Int upcase_text_to_codes(USES_REGS1) {upcase_text_to_codes1579,40186 -static Int downcase_text_to_chars(USES_REGS1) {downcase_text_to_chars1613,41088 -static Int upcase_text_to_chars(USES_REGS1) {upcase_text_to_chars1647,41993 -static Int atom_split(USES_REGS1) {atom_split1676,42732 -static Int atom_number(USES_REGS1) {atom_number1727,44118 -static Int string_number(USES_REGS1) {string_number1751,44702 -#define SUB_ATOM_HAS_MIN SUB_ATOM_HAS_MIN1775,45282 -#define SUB_ATOM_HAS_SIZE SUB_ATOM_HAS_SIZE1776,45309 -#define SUB_ATOM_HAS_AFTER SUB_ATOM_HAS_AFTER1777,45337 -#define SUB_ATOM_HAS_VAL SUB_ATOM_HAS_VAL1778,45366 -#define SUB_ATOM_HAS_ATOM SUB_ATOM_HAS_ATOM1779,45393 -#define SUB_ATOM_HAS_UTF8 SUB_ATOM_HAS_UTF81780,45422 -static Term build_new_atomic(int mask, const unsigned char *p, size_t minv,build_new_atomic1782,45452 -static int check_sub_atom_at(int minv, Atom at, Atom nat, size_t len) {check_sub_atom_at1818,46328 -static int check_sub_string_at(int minv, const unsigned char *p1,check_sub_string_at1825,46567 -static int check_sub_string_bef(int max, Term at, Term nat) {check_sub_string_bef1833,46842 -static int check_sub_atom_bef(int max, Atom at, Atom nat) {check_sub_atom_bef1849,47219 -static Int cont_sub_atomic(USES_REGS1) {cont_sub_atomic1863,47562 -static Int sub_atomic(bool sub_atom, bool sub_string USES_REGS) {sub_atomic1975,50704 -static Int sub_atom(USES_REGS1) { return (sub_atomic(true, false PASS_REGS)); }sub_atom2189,57538 -static Int sub_string(USES_REGS1) { return sub_atomic(false, true PASS_REGS); }sub_string2206,58120 -static Int cont_current_atom(USES_REGS1) {cont_current_atom2208,58201 -static Int current_atom(USES_REGS1) { /* current_atom(?Atom)current_atom2265,59615 -void Yap_InitBackAtoms(void) {Yap_InitBackAtoms2285,60156 -void Yap_InitAtomPreds(void) {Yap_InitAtomPreds2298,60822 - -C/attvar.c,3451 -static char SccsId[] = "%W% %G%";SccsId18,604 -#define NULL NULL28,757 -#define TermVoidAtt TermVoidAtt41,992 -static CELL *AddToQueue(attvar_record *attv USES_REGS) {AddToQueue43,1026 -static void AddFailToQueue(USES_REGS1) {AddFailToQueue61,1499 -static attvar_record *BuildNewAttVar(USES_REGS1) {BuildNewAttVar74,1830 -static int CopyAttVar(CELL *orig, struct cp_frame **to_visit_ptr,CopyAttVar87,2151 -static Term AttVarToTerm(CELL *orig) {AttVarToTerm113,2839 -static int IsEmptyWakeUp(Term atts) {IsEmptyWakeUp119,2944 -void Yap_MkEmptyWakeUp(Atom mod) {Yap_MkEmptyWakeUp130,3171 -static int TermToAttVar(Term attvar, Term to USES_REGS) {TermToAttVar137,3395 -static void WakeAttVar(CELL *pt1, CELL reg2 USES_REGS) {WakeAttVar146,3633 -void Yap_WakeUp(CELL *pt0) {Yap_WakeUp203,5273 -static void mark_attvar(CELL *orig) { return; }mark_attvar210,5394 -static Term BuildAttTerm(Functor mfun, UInt ar USES_REGS) {BuildAttTerm212,5443 -static Term SearchAttsForModule(Term start, Functor mfun) {SearchAttsForModule230,5774 -static Term SearchAttsForModuleName(Term start, Atom mname) {SearchAttsForModuleName238,5973 -static void AddNewModule(attvar_record *attv, Term t, int new,AddNewModule246,6190 -static void ReplaceAtts(attvar_record *attv, Term oatt, Term att USES_REGS) {ReplaceAtts281,6943 -static void DelAllAtts(attvar_record *attv USES_REGS) {DelAllAtts331,7927 -static void DelAtts(attvar_record *attv, Term oatt USES_REGS) {DelAtts335,8024 -static void PutAtt(Int pos, Term atts, Term att USES_REGS) {PutAtt360,8544 -static Int BindAttVar(attvar_record *attv USES_REGS) {BindAttVar370,8831 -static Int UnBindAttVar(attvar_record *attv) {UnBindAttVar402,9883 -static Term GetAllAtts(attvar_record *attv) {GetAllAtts407,9984 -static Int put_att(USES_REGS1) {put_att412,10092 -static Int put_att_term(USES_REGS1) {put_att_term460,11551 -static Int rm_att(USES_REGS1) {rm_att490,12410 -static Int put_atts(USES_REGS1) {put_atts534,13779 -static Int del_atts(USES_REGS1) {del_atts581,15173 -static Int del_all_atts(USES_REGS1) {del_all_atts608,15743 -static Int get_att(USES_REGS1) {get_att622,16039 -static Int free_att(USES_REGS1) {free_att651,16834 -static Int get_atts(USES_REGS1) {get_atts679,17577 -static Int has_atts(USES_REGS1) {has_atts719,18640 -static Int bind_attvar(USES_REGS1) {bind_attvar743,19290 -static Int unbind_attvar(USES_REGS1) {unbind_attvar760,19735 -static Int get_all_atts(USES_REGS1) {get_all_atts777,20174 -static int ActiveAtt(Term tatt, UInt ar) {ActiveAtt794,20622 -static Int modules_with_atts(USES_REGS1) {modules_with_atts805,20809 -static Int swi_all_atts(USES_REGS1) {swi_all_atts840,21762 -static Term AllAttVars(USES_REGS1) {AllAttVars884,22882 -static Int all_attvars(USES_REGS1) {all_attvars938,23971 -static Int is_attvar(USES_REGS1) {is_attvar961,24392 -static Int attvar_bound(USES_REGS1) {attvar_bound967,24546 -static Int void_term(USES_REGS1) { return Yap_unify(ARG1, TermVoidAtt); }void_term973,24710 -static Int free_term(USES_REGS1) { return Yap_unify(ARG1, TermFreeTerm); }free_term975,24785 -static Int fast_unify(USES_REGS1) {fast_unify977,24861 -static Int all_attvars(USES_REGS1) { return FALSE; }all_attvars1000,25319 -static Int is_attvar(USES_REGS1) { return FALSE; }is_attvar1002,25373 -static Int attvar_bound(USES_REGS1) { return FALSE; }attvar_bound1004,25425 -void Yap_InitAttVarPreds(void) {Yap_InitAttVarPreds1008,25506 - -C/bb.c,994 -static char SccsId[] = "%W% %G%";SccsId18,587 -#define NULL NULL44,1182 -PutBBProp(AtomEntry *ae, Term mod USES_REGS) /* get BBentry for at; */PutBBProp48,1228 -PutIntBBProp(Int key, Term mod USES_REGS) /* get BBentry for at; */PutIntBBProp78,2002 -GetBBProp(AtomEntry *ae, Term mod) /* get BBentry for at; */GetBBProp126,3283 -GetIntBBProp(Int key, Term mod) /* get BBentry for at; */GetIntBBProp145,3674 -resize_bb_int_keys(UInt new_size) {resize_bb_int_keys168,4160 -AddBBProp(Term t1, char *msg, Term mod USES_REGS)AddBBProp209,5122 -FetchBBProp(Term t1, char *msg, Term mod)FetchBBProp239,5847 -BBPut(Term t0, Term t2)BBPut269,6543 -p_bb_put( USES_REGS1 )p_bb_put295,7067 -BBGet(Term t, UInt arity USES_REGS)BBGet314,7476 -p_bb_get( USES_REGS1 )p_bb_get334,7859 -p_bb_delete( USES_REGS1 )p_bb_delete361,8464 -p_bb_update( USES_REGS1 )p_bb_update389,9189 -p_resize_bb_int_keys( USES_REGS1 )p_resize_bb_int_keys410,9646 -Yap_InitBBPreds(void)Yap_InitBBPreds424,9983 - -C/bignum.c,1391 -static char SccsId[] = "%W% %G%";SccsId18,584 -Yap_MkBigIntTerm(MP_INT *big)Yap_MkBigIntTerm37,818 -Yap_BigIntOfTerm(Term t)Yap_BigIntOfTerm71,1620 -Yap_MkBigRatTerm(MP_RAT *big)Yap_MkBigRatTerm80,1750 -Yap_BigRatOfTerm(Term t)Yap_BigRatOfTerm116,2803 -Yap_RatTermToApplTerm(Term t)Yap_RatTermToApplTerm128,3049 -Yap_AllocExternalDataInStack(CELL tag, size_t bytes)Yap_AllocExternalDataInStack141,3284 -int Yap_CleanOpaqueVariable(CELL *pt)Yap_CleanOpaqueVariable166,3783 -Yap_blob_write_handler(Term t)Yap_blob_write_handler193,4561 -Yap_blob_gc_mark_handler(Term t)Yap_blob_gc_mark_handler219,5228 -Yap_blob_gc_relocate_handler(Term t)Yap_blob_gc_relocate_handler243,5787 -extern Int Yap_blob_tag(Term t)Yap_blob_tag267,6440 -Yap_blob_info(Term t)Yap_blob_info282,6709 -Yap_MkULLIntTerm(YAP_ULONG_LONG n)Yap_MkULLIntTerm301,7071 -Yap_HeapStoreOpaqueTerm(Term t)Yap_HeapStoreOpaqueTerm331,7625 -Yap_OpaqueTermToString(Term t, char *str, size_t max)Yap_OpaqueTermToString359,8256 -p_is_bignum( USES_REGS1 )p_is_bignum407,9752 -p_is_string( USES_REGS1 )p_is_string423,9983 -p_nb_set_bit( USES_REGS1 )p_nb_set_bit434,10140 -p_has_bignums( USES_REGS1 )p_has_bignums466,10625 -p_is_opaque( USES_REGS1 )p_is_opaque476,10728 -p_is_rational( USES_REGS1 )p_is_rational494,11052 -p_rational( USES_REGS1 )p_rational516,11463 -Yap_InitBigNums(void)Yap_InitBigNums555,12321 - -C/blobs.c,1040 -#define _WITH_DPRINTF_WITH_DPRINTF18,279 -static blob_type_t unregistered_blob_atom = {unregistered_blob_atom26,369 -char *Yap_blob_to_string(AtomEntry *ref, const char *s0, size_t sz) {Yap_blob_to_string29,486 -int Yap_write_blob(AtomEntry *ref, FILE *stream) {Yap_write_blob73,1562 -bool YAP_is_blob(Term t, blob_type_t **type) {YAP_is_blob91,2034 -AtomEntry *Yap_lookupBlob(void *blob, size_t len, void *type0, int *new) {Yap_lookupBlob121,2615 -bool YAP_unify_blob(Term *t, void *blob, size_t len, blob_type_t *type) {YAP_unify_blob172,3873 -bool YAP_get_blob(Term t, void **blob, size_t *len, blob_type_t **type) {YAP_get_blob188,4186 -void *YAP_blob_data(Atom x, size_t *len, blob_type_t **type) {YAP_blob_data212,4669 -void YAP_register_blob_type(blob_type_t *type) {YAP_register_blob_type229,5026 -blob_type_t *YAP_find_blob_type(const char *name) {YAP_find_blob_type234,5140 -bool YAP_unregister_blob_type(blob_type_t *type) {YAP_unregister_blob_type242,5350 -void Yap_install_blobs(void) {}Yap_install_blobs247,5489 - -C/c_interface.c,21978 -#define C_INTERFACE_C C_INTERFACE_C27,737 -typedef void *atom_t;atom_t64,1440 -typedef void *functor_t;functor_t65,1462 - FRG_FIRST_CALL = 0, /* Initial call */FRG_FIRST_CALL68,1503 - FRG_CUTTED = 1, /* Context was cutted */FRG_CUTTED69,1544 - FRG_REDO = 2 /* Normal redo */FRG_REDO70,1591 -} frg_code;frg_code71,1631 -struct foreign_context {foreign_context73,1644 - uintptr_t context; /* context value */context74,1669 - uintptr_t context; /* context value */foreign_context::context74,1669 - frg_code control; /* FRG_* action */control75,1721 - frg_code control; /* FRG_* action */foreign_context::control75,1721 - struct PL_local_data *engine; /* invoking engine */engine76,1772 - struct PL_local_data *engine; /* invoking engine */foreign_context::engine76,1772 -#define strncpy(strncpy82,1888 -#define strncat(strncat85,1951 -#define X_API X_API89,2036 -#define BootFilePath BootFilePath92,2080 -#define BOOT_FROM_SAVED_STATE BOOT_FROM_SAVED_STATE94,2122 -static char BootFile[] = "boot.yap";BootFile96,2164 -static arity_t current_arity(void) {current_arity180,4851 -static int doexpand(UInt sz) {doexpand189,5053 -X_API YAP_Term YAP_A(int i) {YAP_A204,5350 -X_API YAP_Bool YAP_IsIntTerm(YAP_Term t) { return IsIntegerTerm(t); }YAP_IsIntTerm209,5424 -X_API YAP_Bool YAP_IsNumberTerm(YAP_Term t) {YAP_IsNumberTerm211,5495 -X_API YAP_Bool YAP_IsLongIntTerm(YAP_Term t) { return IsLongIntTerm(t); }YAP_IsLongIntTerm215,5624 -X_API YAP_Bool YAP_IsBigNumTerm(YAP_Term t) {YAP_IsBigNumTerm217,5699 -X_API YAP_Bool YAP_IsRationalTerm(YAP_Term t) {YAP_IsRationalTerm231,5927 -X_API YAP_Bool YAP_IsStringTerm(YAP_Term t) { return (IsStringTerm(t)); }YAP_IsStringTerm245,6162 -X_API YAP_Bool YAP_IsVarTerm(YAP_Term t) { return (IsVarTerm(t)); }YAP_IsVarTerm247,6237 -X_API YAP_Bool YAP_IsNonVarTerm(YAP_Term t) { return (IsNonVarTerm(t)); }YAP_IsNonVarTerm249,6306 -X_API YAP_Bool YAP_IsFloatTerm(Term t) { return (IsFloatTerm(t)); }YAP_IsFloatTerm251,6381 -X_API YAP_Bool YAP_IsDbRefTerm(Term t) { return (IsDBRefTerm(t)); }YAP_IsDbRefTerm253,6450 -X_API YAP_Bool YAP_IsAtomTerm(Term t) { return (IsAtomTerm(t)); }YAP_IsAtomTerm255,6519 -X_API YAP_Bool YAP_IsPairTerm(Term t) { return (IsPairTerm(t)); }YAP_IsPairTerm257,6586 -X_API YAP_Bool YAP_IsApplTerm(Term t) {YAP_IsApplTerm259,6653 -X_API YAP_Bool YAP_IsCompoundTerm(Term t) {YAP_IsCompoundTerm263,6761 -X_API Term YAP_MkIntTerm(Int n) {YAP_MkIntTerm268,6901 -X_API Term YAP_MkStringTerm(const char *n) {YAP_MkStringTerm278,7027 -X_API Term YAP_MkUnsignedStringTerm(const unsigned char *n) {YAP_MkUnsignedStringTerm288,7163 -X_API const char *YAP_StringOfTerm(Term t) { return StringOfTerm(t); }YAP_StringOfTerm298,7317 -X_API const unsigned char *YAP_UnsignedStringOfTerm(Term t) {YAP_UnsignedStringOfTerm300,7389 -X_API Int YAP_IntOfTerm(Term t) {YAP_IntOfTerm304,7481 -X_API Term YAP_MkBigNumTerm(void *big) {YAP_MkBigNumTerm312,7607 -X_API YAP_Bool YAP_BigNumOfTerm(Term t, void *b) {YAP_BigNumOfTerm324,7798 -X_API Term YAP_MkRationalTerm(void *big) {YAP_MkRationalTerm338,8066 -X_API YAP_Bool YAP_RationalOfTerm(Term t, void *b) {YAP_RationalOfTerm350,8259 -X_API Term YAP_MkBlobTerm(unsigned int sz) {YAP_MkBlobTerm364,8529 -X_API void *YAP_BlobOfTerm(Term t) {YAP_BlobOfTerm392,9230 -X_API Term YAP_MkFloatTerm(double n) {YAP_MkFloatTerm403,9428 -X_API YAP_Float YAP_FloatOfTerm(YAP_Term t) { return (FloatOfTerm(t)); }YAP_FloatOfTerm414,9558 -X_API Term YAP_MkAtomTerm(Atom n) {YAP_MkAtomTerm416,9632 -X_API Atom YAP_AtomOfTerm(Term t) { return (AtomOfTerm(t)); }YAP_AtomOfTerm423,9715 -X_API bool YAP_IsWideAtom(Atom a) {YAP_IsWideAtom425,9778 -X_API const char *YAP_AtomName(Atom a) {YAP_AtomName436,9983 -X_API const wchar_t *YAP_WideAtomName(Atom a) {YAP_WideAtomName443,10078 -X_API Atom YAP_LookupAtom(const char *c) {YAP_LookupAtom458,10417 -X_API Atom YAP_LookupWideAtom(const wchar_t *c) {YAP_LookupWideAtom476,10817 -X_API Atom YAP_FullLookupAtom(const char *c) {YAP_FullLookupAtom494,11241 -X_API size_t YAP_AtomNameLength(Atom at) {YAP_AtomNameLength512,11653 -X_API Term YAP_MkVarTerm(void) {YAP_MkVarTerm521,11835 -X_API Term YAP_MkPairTerm(Term t1, Term t2) {YAP_MkPairTerm532,11956 -X_API Term YAP_MkListFromTerms(Term *ta, Int sz) {YAP_MkListFromTerms554,12385 -X_API Term YAP_MkNewPairTerm() {YAP_MkNewPairTerm590,13049 -X_API Term YAP_HeadOfTerm(Term t) { return (HeadOfTerm(t)); }YAP_HeadOfTerm604,13227 -X_API Term YAP_TailOfTerm(Term t) { return (TailOfTerm(t)); }YAP_TailOfTerm606,13290 -X_API Int YAP_SkipList(Term *l, Term **tailp) {YAP_SkipList608,13353 -X_API Term YAP_MkApplTerm(Functor f, UInt arity, Term args[]) {YAP_MkApplTerm636,13899 -X_API Term YAP_MkNewApplTerm(Functor f, UInt arity) {YAP_MkNewApplTerm650,14127 -X_API Functor YAP_FunctorOfTerm(Term t) { return (FunctorOfTerm(t)); }YAP_FunctorOfTerm664,14342 -X_API Term YAP_ArgOfTerm(UInt n, Term t) { return (ArgOfTerm(n, t)); }YAP_ArgOfTerm666,14414 -X_API Term *YAP_ArgsOfTerm(Term t) {YAP_ArgsOfTerm668,14486 -X_API Functor YAP_MkFunctor(Atom a, UInt n) { return (Yap_MkFunctor(a, n)); }YAP_MkFunctor676,14638 -X_API Atom YAP_NameOfFunctor(Functor f) { return (NameOfFunctor(f)); }YAP_NameOfFunctor678,14717 -X_API UInt YAP_ArityOfFunctor(Functor f) { return (ArityOfFunctor(f)); }YAP_ArityOfFunctor680,14789 -X_API void *YAP_ExtraSpaceCut(void) {YAP_ExtraSpaceCut682,14863 -X_API void *YAP_ExtraSpace(void) {YAP_ExtraSpace695,15140 -X_API void YAP_cut_up(void) {YAP_cut_up710,15397 -X_API bool YAP_Unify(Term t1, Term t2) {YAP_Unify748,16154 -X_API int YAP_Unifiable(Term t1, Term t2) {YAP_Unifiable758,16303 -X_API int YAP_ExactlyEqual(Term t1, Term t2) {YAP_ExactlyEqual769,16468 -X_API int YAP_Variant(Term t1, Term t2) {YAP_Variant780,16630 -X_API Int YAP_TermHash(Term t, Int sz, Int depth, int variant) {YAP_TermHash791,16806 -X_API Int YAP_CurrentSlot(void) {YAP_CurrentSlot802,16998 -X_API Int YAP_NewSlots(int n) {YAP_NewSlots807,17076 -X_API Int YAP_InitSlot(Term t) {YAP_InitSlot812,17150 -X_API int YAP_RecoverSlots(int n, Int top_slot) {YAP_RecoverSlots817,17225 -X_API Term YAP_GetFromSlot(Int slot) {YAP_GetFromSlot822,17331 -X_API Term *YAP_AddressFromSlot(Int slot) {YAP_AddressFromSlot827,17418 -X_API Term *YAP_AddressOfTermInSlot(Int slot) {YAP_AddressOfTermInSlot832,17514 -X_API void YAP_PutInSlot(Int slot, Term t) {YAP_PutInSlot848,17789 -typedef Int (*CPredicate0)(void);CPredicate0853,17876 -typedef Int (*CPredicate1)(yhandle_t);CPredicate1854,17910 -typedef Int (*CPredicate2)(yhandle_t, yhandle_t);CPredicate2855,17949 -typedef Int (*CPredicate3)(yhandle_t, yhandle_t, yhandle_t);CPredicate3856,17999 -typedef Int (*CPredicate4)(yhandle_t, yhandle_t, yhandle_t, yhandle_t);CPredicate4857,18060 -typedef Int (*CPredicate5)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CPredicate5858,18132 -typedef Int (*CPredicate6)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CPredicate6860,18242 -typedef Int (*CPredicate7)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CPredicate7862,18363 -typedef Int (*CPredicate8)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CPredicate8864,18495 -typedef Int (*CPredicate9)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CPredicate9866,18638 -typedef Int (*CPredicate10)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CPredicate10869,18819 -typedef Int (*CPredicateV)(yhandle_t, yhandle_t, struct foreign_context *);CPredicateV872,19014 -static Int execute_cargs(PredEntry *pe, CPredicate exec_code USES_REGS) {execute_cargs874,19091 -typedef uintptr_t (*CBPredicate0)(struct foreign_context *);CBPredicate0939,21125 -typedef uintptr_t (*CBPredicate1)(yhandle_t, struct foreign_context *);CBPredicate1940,21186 -typedef uintptr_t (*CBPredicate2)(yhandle_t, yhandle_t,CBPredicate2941,21258 -typedef uintptr_t (*CBPredicate3)(yhandle_t, yhandle_t, yhandle_t,CBPredicate3943,21375 -typedef uintptr_t (*CBPredicate4)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CBPredicate4945,21503 -typedef uintptr_t (*CBPredicate5)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CBPredicate5947,21642 -typedef uintptr_t (*CBPredicate6)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CBPredicate6949,21792 -typedef uintptr_t (*CBPredicate7)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CBPredicate7952,21987 -typedef uintptr_t (*CBPredicate8)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CBPredicate8955,22193 -typedef uintptr_t (*CBPredicate9)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CBPredicate9958,22410 -typedef uintptr_t (*CBPredicate10)(yhandle_t, yhandle_t, yhandle_t, yhandle_t,CBPredicate10961,22638 -static uintptr_t execute_cargs_back(PredEntry *pe, CPredicate exec_code,execute_cargs_back966,22916 -static uintptr_t complete_fail(choiceptr ptr, int has_cp USES_REGS) {complete_fail1033,25158 -static uintptr_t complete_exit(choiceptr ptr, int has_cp,complete_exit1044,25429 -Int YAP_Execute(PredEntry *pe, CPredicate exec_code) {YAP_Execute1082,26734 -#define FRG_REDO_MASK FRG_REDO_MASK1118,27675 -#define FRG_REDO_BITS FRG_REDO_BITS1119,27709 -#define REDO_INT REDO_INT1120,27733 -#define REDO_PTR REDO_PTR1121,27781 -Int YAP_ExecuteFirst(PredEntry *pe, CPredicate exec_code) {YAP_ExecuteFirst1123,27829 -Int YAP_ExecuteOnCut(PredEntry *pe, CPredicate exec_code,YAP_ExecuteOnCut1171,29351 -Int YAP_ExecuteNext(PredEntry *pe, CPredicate exec_code) {YAP_ExecuteNext1219,30638 -X_API void *YAP_ReallocSpaceFromYap(void *ptr, size_t size) {YAP_ReallocSpaceFromYap1265,32077 -X_API void *YAP_AllocSpaceFromYap(size_t size) {YAP_AllocSpaceFromYap1279,32445 -X_API void YAP_FreeSpaceFromYap(void *ptr) { Yap_FreeCodeSpace(ptr); }YAP_FreeSpaceFromYap1294,32782 -YAP_StringToBuffer(Term t, char *buf, unsigned int bufsize) {YAP_StringToBuffer1306,33056 -X_API Term YAP_BufferToString(const char *s) {YAP_BufferToString1322,33508 -X_API Term YAP_NBufferToString(const char *s, size_t len) {YAP_NBufferToString1340,33832 -X_API Term YAP_WideBufferToString(const wchar_t *s) {YAP_WideBufferToString1359,34225 -X_API Term YAP_NWideBufferToString(const wchar_t *s, size_t len) {YAP_NWideBufferToString1377,34557 -X_API Term YAP_ReadBuffer(const char *s, Term *tp) {YAP_ReadBuffer1396,34958 -X_API YAP_Term YAP_BufferToAtomList(const char *s) {YAP_BufferToAtomList1446,36356 -X_API Term YAP_NBufferToAtomList(const char *s, size_t len) {YAP_NBufferToAtomList1464,36698 -X_API Term YAP_WideBufferToAtomList(const wchar_t *s) {YAP_WideBufferToAtomList1483,37093 -X_API Term YAP_NWideBufferToAtomList(const wchar_t *s, size_t len) {YAP_NWideBufferToAtomList1501,37439 -X_API Term YAP_NWideBufferToAtomDiffList(const wchar_t *s, Term t0,YAP_NWideBufferToAtomDiffList1520,37854 -X_API Term YAP_BufferToDiffList(const char *s, Term t0) {YAP_BufferToDiffList1542,38351 -X_API Term YAP_NBufferToDiffList(const char *s, Term t0, size_t len) {YAP_NBufferToDiffList1561,38732 -X_API Term YAP_WideBufferToDiffList(const wchar_t *s, Term t0) {YAP_WideBufferToDiffList1582,39176 -X_API Term YAP_NWideBufferToDiffList(const wchar_t *s, Term t0, size_t len) {YAP_NWideBufferToDiffList1601,39565 -X_API void YAP_Error(int myerrno, Term t, const char *buf, ...) {YAP_Error1621,39985 -#define YAP_BUF_SIZE YAP_BUF_SIZE1622,40051 -X_API PredEntry *YAP_FunctorToPred(Functor func) {YAP_FunctorToPred1644,40459 -X_API PredEntry *YAP_AtomToPred(Atom at) {YAP_AtomToPred1649,40585 -X_API PredEntry *YAP_FunctorToPredInModule(Functor func, Term mod) {YAP_FunctorToPredInModule1654,40701 -X_API PredEntry *YAP_AtomToPredInModule(Atom at, Term mod) {YAP_AtomToPredInModule1658,40822 -static int run_emulator(USES_REGS1) {run_emulator1662,40933 -X_API bool YAP_EnterGoal(PredEntry *pe, CELL *ptr, YAP_dogoalinfo *dgi) {YAP_EnterGoal1670,41059 -X_API bool YAP_RetryGoal(YAP_dogoalinfo *dgi) {YAP_RetryGoal1699,41862 -X_API bool YAP_LeaveGoal(bool backtrack, YAP_dogoalinfo *dgi) {YAP_LeaveGoal1726,42460 -X_API Int YAP_RunGoal(Term t) {YAP_RunGoal1781,43698 -X_API Term YAP_AllocExternalDataInStack(size_t bytes) {YAP_AllocExternalDataInStack1817,44553 -X_API YAP_Bool YAP_IsExternalDataInStackTerm(Term t) {YAP_IsExternalDataInStackTerm1824,44722 -X_API void *YAP_ExternalDataInStackFromTerm(Term t) {YAP_ExternalDataInStackFromTerm1828,44827 -X_API YAP_opaque_tag_t YAP_NewOpaqueType(struct YAP_opaque_handler_struct *f) {YAP_NewOpaqueType1832,44918 -Term YAP_NewOpaqueObject(YAP_opaque_tag_t tag, size_t bytes) {YAP_NewOpaqueObject1850,45479 -X_API YAP_Bool YAP_IsOpaqueObjectTerm(Term t, YAP_opaque_tag_t tag) {YAP_IsOpaqueObjectTerm1857,45651 -X_API void *YAP_OpaqueObjectFromTerm(Term t) { return ExternalBlobFromTerm(t); }YAP_OpaqueObjectFromTerm1861,45767 -X_API CELL *YAP_HeapStoreOpaqueTerm(Term t) {YAP_HeapStoreOpaqueTerm1863,45849 -X_API Int YAP_RunGoalOnce(Term t) {YAP_RunGoalOnce1867,45935 -X_API bool YAP_RestartGoal(void) {YAP_RestartGoal1927,47236 -X_API bool YAP_ShutdownGoal(int backtrack) {YAP_ShutdownGoal1948,47680 -X_API bool YAP_ContinueGoal(void) {YAP_ContinueGoal1989,48571 -X_API void YAP_PruneGoal(YAP_dogoalinfo *gi) {YAP_PruneGoal2002,48817 -X_API bool YAP_GoalHasException(Term *t) {YAP_GoalHasException2022,49157 -X_API void YAP_ClearExceptions(void) {YAP_ClearExceptions2030,49310 -X_API int YAP_InitConsult(int mode, const char *filename, char *full,YAP_InitConsult2036,49399 -X_API FILE *YAP_TermToStream(Term t) {YAP_TermToStream2072,50403 -X_API void YAP_EndConsult(int sno, int *osnop) {YAP_EndConsult2086,50668 -X_API Term YAP_Read(FILE *f) {YAP_Read2096,50877 -X_API Term YAP_ReadFromStream(int sno) {YAP_ReadFromStream2107,51111 -X_API Term YAP_ReadClauseFromStream(int sno) {YAP_ReadClauseFromStream2116,51267 -X_API void YAP_Write(Term t, FILE *f, int flags) {YAP_Write2125,51430 -X_API YAP_Term YAP_CopyTerm(Term t) {YAP_CopyTerm2135,51695 -X_API char *YAP_WriteBuffer(Term t, char *buf, size_t sze, int flags) {YAP_WriteBuffer2146,51840 -X_API int YAP_WriteDynamicBuffer(YAP_Term t, char *buf, size_t sze,YAP_WriteDynamicBuffer2165,52345 -X_API char *YAP_CompileClause(Term t) {YAP_CompileClause2178,52688 -static int yap_lineno = 0;yap_lineno2210,53533 -static void do_bootfile(const char *bootfilename USES_REGS) {do_bootfile2213,53615 -X_API bool YAP_initialized = false;YAP_initialized2282,55887 -static int n_mdelays = 0;n_mdelays2283,55923 -static YAP_delaymodule_t *m_delays;m_delays2284,55949 -X_API bool YAP_DelayInit(YAP_ModInit_t f, const char s[]) {YAP_DelayInit2286,55986 -bool Yap_LateInit(const char s[]) {Yap_LateInit2298,56299 -static void start_modules(void) {start_modules2309,56488 -bool Yap_embedded = true;Yap_embedded2320,56764 -YAP_file_type_t YAP_Init(YAP_init_args *yap_init) {YAP_Init2325,56890 -#undef DefTrailSpaceDefTrailSpace2544,63904 -#define DefTrailSpace DefTrailSpace2545,63925 -#undef DefStackSpaceDefStackSpace2549,64005 -#define DefStackSpace DefStackSpace2550,64026 -#undef DefHeapSpaceDefHeapSpace2554,64104 -#define DefHeapSpace DefHeapSpace2555,64124 -#define DEFAULT_NUMBERWORKERS DEFAULT_NUMBERWORKERS2558,64166 -#define DEFAULT_SCHEDULERLOOP DEFAULT_SCHEDULERLOOP2559,64198 -#define DEFAULT_DELAYEDRELEASELOAD DEFAULT_DELAYEDRELEASELOAD2560,64231 -X_API YAP_file_type_t YAP_FastInit(char saved_state[], int argc, char *argv[]) {YAP_FastInit2562,64269 -X_API void YAP_PutValue(Atom at, Term t) { Yap_PutValue(at, t); }YAP_PutValue2575,64655 -X_API Term YAP_GetValue(Atom at) { return (Yap_GetValue(at)); }YAP_GetValue2577,64722 -X_API int YAP_CompareTerms(Term t1, Term t2) {YAP_CompareTerms2579,64787 -X_API int YAP_Reset(yap_reset_t mode) {YAP_Reset2583,64873 -X_API void YAP_Exit(int retval) { Yap_exit(retval); }YAP_Exit2591,65024 -X_API int YAP_InitSocks(const char *host, long port) { return 0; }YAP_InitSocks2593,65079 -X_API void YAP_SetOutputMessage(void) {YAP_SetOutputMessage2595,65147 -X_API int YAP_StreamToFileNo(Term t) { return (Yap_StreamToFileNo(t)); }YAP_StreamToFileNo2601,65232 -X_API void YAP_CloseAllOpenStreams(void) {YAP_CloseAllOpenStreams2603,65306 -X_API void YAP_FlushAllStreams(void) {YAP_FlushAllStreams2611,65410 -X_API void YAP_Throw(Term t) {YAP_Throw2619,65515 -X_API void YAP_AsyncThrow(Term t) {YAP_AsyncThrow2625,65620 -X_API void YAP_Halt(int i) { Yap_exit(i); }YAP_Halt2634,65816 -X_API CELL *YAP_TopOfLocalStack(void) {YAP_TopOfLocalStack2636,65861 -X_API void *YAP_Predicate(Atom a, UInt arity, Term m) {YAP_Predicate2641,65933 -X_API void YAP_PredicateInfo(void *p, Atom *a, UInt *arity, Term *m) {YAP_PredicateInfo2650,66180 -X_API void YAP_UserCPredicate(const char *name, CPredicate def, arity_t arity) {YAP_UserCPredicate2665,66528 -X_API void YAP_UserBackCPredicate_(const char *name, CPredicate init,YAP_UserBackCPredicate_2669,66662 -X_API void YAP_UserBackCutCPredicate(const char *name, CPredicate init,YAP_UserBackCutCPredicate2675,66931 -X_API void YAP_UserBackCPredicate(const char *name, CPredicate init,YAP_UserBackCPredicate2681,67221 -X_API void YAP_UserCPredicateWithArgs(const char *a, CPredicate f,YAP_UserCPredicateWithArgs2687,67487 -X_API Term YAP_CurrentModule(void) {YAP_CurrentModule2704,67993 -X_API Term YAP_SetCurrentModule(Term new) {YAP_SetCurrentModule2709,68072 -X_API Term YAP_CreateModule(Atom at) {YAP_CreateModule2716,68220 -X_API Term YAP_StripModule(Term t, Term *modp) {YAP_StripModule2724,68392 -X_API int YAP_ThreadSelf(void) {YAP_ThreadSelf2728,68479 -X_API int YAP_ThreadCreateEngine(struct YAP_thread_attr_struct *attr) {YAP_ThreadCreateEngine2736,68581 -X_API int YAP_ThreadAttachEngine(int wid) {YAP_ThreadAttachEngine2744,68735 -X_API int YAP_ThreadDetachEngine(int wid) {YAP_ThreadDetachEngine2752,68863 -X_API int YAP_ThreadDestroyEngine(int wid) {YAP_ThreadDestroyEngine2760,68991 -X_API Term YAP_TermNil(void) { return TermNil; }YAP_TermNil2768,69121 -X_API int YAP_IsTermNil(Term t) { return t == TermNil; }YAP_IsTermNil2770,69171 -X_API int YAP_AtomGetHold(Atom at) { return Yap_AtomIncreaseHold(at); }YAP_AtomGetHold2772,69229 -X_API int YAP_AtomReleaseHold(Atom at) { return Yap_AtomDecreaseHold(at); }YAP_AtomReleaseHold2774,69302 -X_API Agc_hook YAP_AGCRegisterHook(Agc_hook hook) {YAP_AGCRegisterHook2776,69379 -X_API int YAP_HaltRegisterHook(HaltHookFunc hook, void *closure) {YAP_HaltRegisterHook2782,69506 -X_API char *YAP_cwd(void) {YAP_cwd2786,69622 -X_API Term YAP_FloatsToList(double *dblp, size_t sz) {YAP_FloatsToList2800,69926 -X_API Int YAP_ListToFloats(Term t, double *dblp, size_t sz) {YAP_ListToFloats2833,70604 -X_API Term YAP_IntsToList(Int *dblp, size_t sz) {YAP_IntsToList2868,71325 -X_API Int YAP_ListToInts(Term t, Int *dblp, size_t sz) {YAP_ListToInts2901,71960 -X_API Term YAP_OpenList(int n) {YAP_OpenList2923,72362 -X_API Term YAP_ExtendList(Term t0, Term inp) {YAP_ExtendList2941,72623 -X_API int YAP_CloseList(Term t0, Term tail) {YAP_CloseList2954,72822 -X_API int YAP_IsAttVar(Term t) {YAP_IsAttVar2963,73000 -X_API Term YAP_AttsOfVar(Term t) {YAP_AttsOfVar2971,73137 -X_API int YAP_FileNoFromStream(Term t) {YAP_FileNoFromStream2984,73375 -X_API void *YAP_FileDescriptorFromStream(Term t) {YAP_FileDescriptorFromStream2992,73503 -X_API void *YAP_Record(Term t) {YAP_Record3000,73653 -X_API Term YAP_Recorded(void *handle) {YAP_Recorded3026,74321 -X_API int YAP_Erase(void *handle) {YAP_Erase3059,75263 -X_API yhandle_t YAP_ArgsToSlots(int n) {YAP_ArgsToSlots3073,75631 -X_API void YAP_SlotsToArgs(int n, yhandle_t slot) {YAP_SlotsToArgs3078,75714 -X_API void YAP_signal(int sig) { Yap_signal(sig); }YAP_signal3086,75882 -X_API int YAP_SetYAPFlag(Term flag, Term val) { return setYapFlag(flag, val); }YAP_SetYAPFlag3088,75935 -yhandle_t YAP_VarSlotToNumber(yhandle_t s) {YAP_VarSlotToNumber3091,76068 -Term YAP_ModuleUser(void) { return MkAtomTerm(AtomUser); }YAP_ModuleUser3100,76261 -yhandle_t YAP_NumberOfClausesForPredicate(PredEntry *pe) {YAP_NumberOfClausesForPredicate3103,76362 -int YAP_MaxOpPriority(Atom at, Term module) {YAP_MaxOpPriority3107,76459 -int YAP_OpInfo(Atom at, Term module, int opkind, int *yap_type, int *prio) {YAP_OpInfo3125,76871 -int YAP_Argv(char ***argvp) {YAP_Argv3187,78203 -YAP_tag_t YAP_TagOfTerm(Term t) {YAP_TagOfTerm3194,78303 -int YAP_BPROLOG_exception;YAP_BPROLOG_exception3237,79239 -Term YAP_BPROLOG_curr_toam_status;YAP_BPROLOG_curr_toam_status3238,79266 -size_t YAP_UTF8_TextLength(Term t) {YAP_UTF8_TextLength3249,79611 -Int YAP_ListLength(Term t) {YAP_ListLength3281,80332 -Int YAP_NumberVars(Term t, Int nbv) { return Yap_NumberVars(t, nbv, FALSE); }YAP_NumberVars3292,80500 -Term YAP_UnNumberVars(Term t) {YAP_UnNumberVars3294,80579 -int YAP_IsNumberedVariable(Term t) {YAP_IsNumberedVariable3299,80695 -X_API size_t YAP_ExportTerm(Term inp, char *buf, size_t len) {YAP_ExportTerm3304,80842 -X_API size_t YAP_SizeOfExportedTerm(char *buf) {YAP_SizeOfExportedTerm3310,80991 -X_API Term YAP_ImportTerm(char *buf) { return Yap_ImportTerm(buf); }YAP_ImportTerm3316,81107 -X_API int YAP_RequiresExtraStack(size_t sz) {YAP_RequiresExtraStack3318,81177 -atom_t *TR_Atoms;TR_Atoms3339,81513 -functor_t *TR_Functors;TR_Functors3340,81531 -size_t AtomTranslations, MaxAtomTranslations;AtomTranslations3341,81555 -size_t AtomTranslations, MaxAtomTranslations;MaxAtomTranslations3341,81555 -size_t FunctorTranslations, MaxFunctorTranslations;FunctorTranslations3342,81601 -size_t FunctorTranslations, MaxFunctorTranslations;MaxFunctorTranslations3342,81601 -X_API Int YAP_AtomToInt(Atom At) {YAP_AtomToInt3344,81654 -X_API Atom YAP_IntToAtom(Int i) { return TR_Atoms[i]; }YAP_IntToAtom3367,82360 -X_API Int YAP_FunctorToInt(Functor f) {YAP_FunctorToInt3369,82417 -X_API Functor YAP_IntToFunctor(Int i) { return TR_Functors[i]; }YAP_IntToFunctor3395,83293 -X_API void *YAP_shared(void) { return LOCAL_shared; }YAP_shared3397,83359 - X_API PredEntry *YAP_TopGoal(void)YAP_TopGoal3399,83414 - void yap_init(void) {}yap_init3407,83650 - -C/cdmgr.c,13181 -static char SccsId[] = "@(#)cdmgr.c 1.1 05/02/98";SccsId18,614 -#define PredArity(PredArity73,2449 -#define TRYCODE(TRYCODE74,2485 -static void InitConsultStack(void) {InitConsultStack76,2556 -void Yap_ResetConsultStack(void) {Yap_ResetConsultStack89,3029 -PredEntry *Yap_get_pred(Term t, Term tmod, const char *pname) {Yap_get_pred110,3747 -static PredEntry *new_pred(Term t, Term tmod, char *pname) {new_pred153,4990 -#define OrArgAdjust(OrArgAdjust194,6143 -#define TabEntryAdjust(TabEntryAdjust195,6166 -#define DoubleInCodeAdjust(DoubleInCodeAdjust196,6192 -#define IntegerInCodeAdjust(IntegerInCodeAdjust197,6222 -#define IntegerAdjust(IntegerAdjust198,6253 -#define PtoPredAdjust(PtoPredAdjust199,6282 -#define PtoOpAdjust(PtoOpAdjust200,6311 -#define PtoLUClauseAdjust(PtoLUClauseAdjust201,6338 -#define PtoLUIndexAdjust(PtoLUIndexAdjust202,6371 -#define XAdjust(XAdjust203,6403 -#define YAdjust(YAdjust204,6426 -#define AtomTermAdjust(AtomTermAdjust205,6449 -#define CellPtoHeapAdjust(CellPtoHeapAdjust206,6479 -#define FuncAdjust(FuncAdjust207,6512 -#define CodeAddrAdjust(CodeAddrAdjust208,6538 -#define CodeComposedTermAdjust(CodeComposedTermAdjust209,6568 -#define ConstantAdjust(ConstantAdjust210,6606 -#define ArityAdjust(ArityAdjust211,6636 -#define OpcodeAdjust(OpcodeAdjust212,6663 -#define ModuleAdjust(ModuleAdjust213,6691 -#define ExternalFunctionAdjust(ExternalFunctionAdjust214,6719 -#define AdjustSwitchTable(AdjustSwitchTable215,6757 -#define DBGroundTermAdjust(DBGroundTermAdjust216,6792 -#define rehash(rehash217,6826 -static Term BlobTermInCodeAdjust(Term t) {BlobTermInCodeAdjust219,6851 -static Term ConstantTermAdjust(Term t) {ConstantTermAdjust228,6995 -static UInt total_megaclause, total_released, nof_megaclauses;total_megaclause237,7137 -static UInt total_megaclause, total_released, nof_megaclauses;total_released237,7137 -static UInt total_megaclause, total_released, nof_megaclauses;nof_megaclauses237,7137 -void Yap_BuildMegaClause(PredEntry *ap) {Yap_BuildMegaClause240,7208 -static void split_megaclause(PredEntry *ap) {split_megaclause329,9940 -#define ByteAdr(ByteAdr398,12311 -static void IPred(PredEntry *ap, UInt NSlots, yamop *next_pc) {IPred402,12426 -void Yap_IPred(PredEntry *p, UInt NSlots, yamop *next_pc) {Yap_IPred475,14690 -#define GONEXT(GONEXT479,14782 -static void RemoveMainIndex(PredEntry *ap) {RemoveMainIndex481,14851 -static void decrease_ref_counter(yamop *ptr, yamop *b, yamop *e, yamop *sc) {decrease_ref_counter517,15994 -static yamop *release_wcls(yamop *cop, OPCODE ecs) {release_wcls529,16379 -static void cleanup_dangling_indices(yamop *ipc, yamop *beg, yamop *end,cleanup_dangling_indices564,17451 -static void decrease_log_indices(LogUpdIndex *c, yamop *suspend_code) {decrease_log_indices722,22332 -static void kill_static_child_indxs(StaticIndex *indx, int in_use) {kill_static_child_indxs743,22906 -static void kill_children(LogUpdIndex *c, PredEntry *ap) {kill_children766,23545 -static void kill_off_lu_block(LogUpdIndex *c, LogUpdIndex *parent,kill_off_lu_block780,23829 -static void kill_first_log_iblock(LogUpdIndex *c, LogUpdIndex *parent,kill_first_log_iblock816,25002 -static void kill_top_static_iblock(StaticIndex *c, PredEntry *ap) {kill_top_static_iblock864,26510 -void Yap_kill_iblock(ClauseUnion *blk, ClauseUnion *parent_blk, PredEntry *ap) {Yap_kill_iblock869,26663 -void Yap_ErLogUpdIndex(LogUpdIndex *clau) {Yap_ErLogUpdIndex906,27678 -static int RemoveIndexation(PredEntry *ap) {RemoveIndexation937,28656 -int Yap_RemoveIndexation(PredEntry *ap) { return RemoveIndexation(ap); }Yap_RemoveIndexation954,29081 -#define assertz assertz961,29332 -#define consult consult962,29350 -#define asserta asserta963,29368 -static void retract_all(PredEntry *p, int in_use) {retract_all966,29413 -bool Yap_unknown(Term t) {Yap_unknown1039,31540 -static int source_pred(PredEntry *p, yamop *q) {source_pred1058,31998 -static void add_first_static(PredEntry *p, yamop *cp, int spy_flag) {add_first_static1070,32287 -static void add_first_dynamic(PredEntry *p, yamop *cp, int spy_flag) {add_first_dynamic1119,33695 -static void asserta_stat_clause(PredEntry *p, yamop *q, int spy_flag) {asserta_stat_clause1211,37000 -static void asserta_dynam_clause(PredEntry *p, yamop *cp) {asserta_dynam_clause1251,38460 -static void assertz_stat_clause(PredEntry *p, yamop *cp, int spy_flag) {assertz_stat_clause1280,39503 -static void assertz_dynam_clause(PredEntry *p, yamop *cp) {assertz_dynam_clause1325,40918 -void Yap_AssertzClause(PredEntry *p, yamop *cp) {Yap_AssertzClause1350,41717 -static void expand_consult(void) {expand_consult1366,42104 -static int not_was_reconsulted(PredEntry *p, Term t, int mode) {not_was_reconsulted1400,43403 -static void addcl_permission_error(AtomEntry *ap, Int Arity, int in_use) {addcl_permission_error1451,45063 -PredEntry *Yap_PredFromClause(Term t USES_REGS) {Yap_PredFromClause1473,45735 -bool Yap_discontiguous(PredEntry *ap, Term mode USES_REGS) {Yap_discontiguous1516,46885 -static Int p_is_discontiguous(USES_REGS1) { /* '$is_multifile'(+S,+Mod) */p_is_discontiguous1547,47810 - p_new_discontiguous(USES_REGS1) { /* '$new_discontiguous'(+N,+Ar,+Mod) */p_new_discontiguous1561,48137 -bool Yap_multiple(PredEntry *ap, Term mode USES_REGS) {Yap_multiple1597,49016 -static int is_fact(Term t) {is_fact1614,49599 -Int Yap_source_line_no(void) {Yap_source_line_no1627,49830 -Atom Yap_source_file_name(void) {Yap_source_file_name1632,49910 -bool Yap_constPred(PredEntry *p) {Yap_constPred1646,50144 -bool Yap_addclause(Term t, yamop *cp, Term tmode, Term mod, Term *t4ref)Yap_addclause1671,50788 -void Yap_EraseMegaClause(yamop *cl, PredEntry *ap) {Yap_EraseMegaClause1893,57717 -void Yap_EraseStaticClause(StaticClause *cl, PredEntry *ap, Term mod) {Yap_EraseStaticClause1898,57833 -void Yap_add_logupd_clause(PredEntry *pe, LogUpdClause *cl, int mode) {Yap_add_logupd_clause1974,60356 -static Int p_compile(USES_REGS1) { /* '$compile'(+C,+Flags,+C0,-Ref) */p_compile2006,61394 -Atom Yap_ConsultingFile(USES_REGS1) {Yap_ConsultingFile2037,62374 -static void init_consult(int mode, const unsigned char *file) {init_consult2055,62849 -void Yap_init_consult(int mode, const char *file) {Yap_init_consult2078,63481 -static Int p_startconsult(USES_REGS1) { /* '$start_consult'(+Mode) */p_startconsult2082,63587 -static Int p_showconslultlev(USES_REGS1) {p_showconslultlev2093,63930 -static void end_consult(USES_REGS1) {end_consult2100,64065 -void Yap_end_consult(void) {Yap_end_consult2112,64420 -static Int p_endconsult(USES_REGS1) { /* '$end_consult' */p_endconsult2117,64492 -static void purge_clauses(PredEntry *pred) {purge_clauses2122,64600 -void Yap_Abolish(PredEntry *pred) {Yap_Abolish2134,64935 -static Int p_purge_clauses(USES_REGS1) { /* '$purge_clauses'(+Func) */p_purge_clauses2139,65030 -static Int p_sys_export(USES_REGS1) { /* '$set_spy'(+Fun,+M) */p_sys_export2178,66154 -static Int p_is_no_trace(USES_REGS1) { /* '$undefined'(P,Mod) */p_is_no_trace2209,66964 -static Int p_set_no_trace(USES_REGS1) { /* '$set_no_trace'(+Fun,+M) */p_set_no_trace2224,67310 -int Yap_SetNoTrace(char *name, arity_t arity, Term tmod) {Yap_SetNoTrace2236,67595 -static Int p_setspy(USES_REGS1) { /* '$set_spy'(+Fun,+M) */p_setspy2253,68012 -static Int p_rmspy(USES_REGS1) { /* '$rm_spy'(+T,+Mod) */p_rmspy2308,69470 - p_number_of_clauses(USES_REGS1) { /* '$number_of_clauses'(Predicate,M,N) */p_number_of_clauses2375,71365 -static Int p_new_multifile(USES_REGS1) { /* '$new_multifile'(+N,+Ar,+Mod) */p_new_multifile2401,72041 -static Int p_is_multifile(USES_REGS1) { /* '$is_multifile'(+S,+Mod) */p_is_multifile2458,73596 -static Int new_system_predicate(new_system_predicate2471,73901 - p_is_system_predicate(USES_REGS1) { /* '$is_multifile'(+S,+Mod) */p_is_system_predicate2507,74706 -static Int p_is_thread_local(USES_REGS1) { /* '$is_dynamic'(+P) */p_is_thread_local2520,75016 -static Int p_is_log_updatable(USES_REGS1) { /* '$is_dynamic'(+P) */p_is_log_updatable2533,75327 -static Int p_is_source(USES_REGS1) { /* '$is_dynamic'(+P) */p_is_source2546,75637 -static Int p_is_exo(USES_REGS1) { /* '$is_dynamic'(+P) */p_is_exo2564,76100 -static Int owner_file(USES_REGS1) { /* '$owner_file'(+P,M,F) */owner_file2582,76522 -static Int p_set_owner_file(USES_REGS1) { /* '$owner_file'(+P,M,F) */p_set_owner_file2609,77147 -static Int p_mk_d(USES_REGS1) { /* '$make_dynamic'(+P) */p_mk_d2629,77608 -static Int p_is_dynamic(USES_REGS1) { /* '$is_dynamic'(+P) */p_is_dynamic2673,78737 -static Int p_is_metapredicate(USES_REGS1) { /* '$is_metapredicate'(+P) */p_is_metapredicate2686,79055 -static Int p_pred_exists(USES_REGS1) { /* '$pred_exists'(+P,+M) */p_pred_exists2699,79355 -static Int p_set_pred_module(USES_REGS1) { /* '$set_pred_module'(+P,+Mod)p_set_pred_module2716,79735 -static Int p_set_pred_owner(USES_REGS1) { /* '$set_pred_module'(+P,+File)p_set_pred_owner2729,80079 -static Int undefp_handler(USES_REGS1) { /* '$undefp_handler'(P,Mod) */undefp_handler2763,80953 -static Int p_undefined(USES_REGS1) { /* '$undefined'(P,Mod) */p_undefined2779,81306 -static Int p_kill_dynamic(USES_REGS1) { /* '$kill_dynamic'(P,M) */p_kill_dynamic2804,81973 -static Int p_optimizer_on(USES_REGS1) { /* '$optimizer_on' */p_optimizer_on2828,82653 -static Int p_optimizer_off(USES_REGS1) { /* '$optimizer_off' */p_optimizer_off2833,82760 -static Int p_is_profiled(USES_REGS1) {p_is_profiled2838,82870 -static Int p_profile_info(USES_REGS1) {p_profile_info2865,83438 -static Int p_profile_reset(USES_REGS1) {p_profile_reset2902,84520 -static Int p_is_call_counted(USES_REGS1) {p_is_call_counted2932,85327 -static Int p_call_count_info(USES_REGS1) {p_call_count_info2960,85906 -static Int p_call_count_reset(USES_REGS1) {p_call_count_reset2966,86160 -static Int p_call_count_set(USES_REGS1) {p_call_count_set2976,86424 -static Int p_clean_up_dead_clauses(USES_REGS1) {p_clean_up_dead_clauses2993,86939 -void Yap_HidePred(PredEntry *pe) {Yap_HidePred3021,87848 - p_stash_predicate(USES_REGS1) {p_stash_predicate3027,87996 - hide_predicate(USES_REGS1) {hide_predicate3070,89040 - p_hidden_predicate(USES_REGS1) {p_hidden_predicate3113,90132 -static Int fetch_next_lu_clause(PredEntry *pe, yamop *i_code, Term th, Term tb,fetch_next_lu_clause3152,91136 - p_log_update_clause(USES_REGS1) {p_log_update_clause3264,94179 - p_continue_log_update_clause(USES_REGS1) {p_continue_log_update_clause3284,94635 -static Int fetch_next_lu_clause_erase(PredEntry *pe, yamop *i_code, Term th,fetch_next_lu_clause_erase3293,94920 - p_log_update_clause_erase(USES_REGS1) {p_log_update_clause_erase3414,98265 - p_continue_log_update_clause_erase(USES_REGS1) {p_continue_log_update_clause_erase3435,98768 -static void adjust_cl_timestamp(LogUpdClause *cl, UInt *arp, UInt *base) {adjust_cl_timestamp3444,99071 -static Term replace_integer(Term orig, UInt new) {replace_integer3466,99603 -static UInt tree_index_ssz(StaticIndex *x) {tree_index_ssz3486,100120 -static UInt index_ssz(StaticIndex *x, PredEntry *pe) {index_ssz3496,100305 -static Int p_predicate_lu_cps(USES_REGS1) {p_predicate_lu_cps3525,101048 -static Int static_statistics(PredEntry *pe) {static_statistics3533,101325 -static Int p_static_pred_statistics(USES_REGS1) {p_static_pred_statistics3562,102336 -static Int p_predicate_erased_statistics(USES_REGS1) {p_predicate_erased_statistics3581,102849 -void Yap_UpdateTimestamps(PredEntry *ap) {Yap_UpdateTimestamps3613,103676 -static Int fetch_next_static_clause(PredEntry *pe, yamop *i_code, Term th,fetch_next_static_clause3738,107013 - p_static_clause(USES_REGS1) {p_static_clause3876,110839 - p_continue_static_clause(USES_REGS1) {p_continue_static_clause3895,111307 -static UInt compute_dbcl_size(arity_t arity) {compute_dbcl_size3904,111596 -#define DerefAndCheck(DerefAndCheck3929,112116 -static int store_dbcl_size(yamop *pc, arity_t arity, Term t0, PredEntry *pe) {store_dbcl_size3934,112407 - p_dbload_get_space(USES_REGS1) { /* '$number_of_clauses'(Predicate,M,N) */p_dbload_get_space4020,114483 -static Int p_dbassert(USES_REGS1) { /* '$number_of_clauses'(Predicate,M,N) */p_dbassert4101,116701 -#define CL_PROP_ERASED CL_PROP_ERASED4121,117255 -#define CL_PROP_PRED CL_PROP_PRED4122,117280 -#define CL_PROP_FILE CL_PROP_FILE4123,117303 -#define CL_PROP_FACT CL_PROP_FACT4124,117326 -#define CL_PROP_LINE CL_PROP_LINE4125,117349 -#define CL_PROP_STREAM CL_PROP_STREAM4126,117372 -static Int instance_property(USES_REGS1) {instance_property4129,117425 -static Int p_nth_instance(USES_REGS1) {p_nth_instance4293,122772 -static Int including(USES_REGS1) {including4497,128391 -static Int predicate_flags(predicate_flags4505,128552 -static bool pred_flag_clause(Functor f, Term mod, const char *name,pred_flag_clause4566,130158 -struct pred_entry *Yap_MkLogPred(struct pred_entry *pe) {Yap_MkLogPred4600,131046 -static Int init_pred_flag_vals(USES_REGS1) {init_pred_flag_vals4607,131251 -void Yap_InitCdMgr(void) {Yap_InitCdMgr4662,134053 - -C/clause_list.c,728 -static void mk_blob(int sz USES_REGS) {mk_blob11,175 -static CELL *extend_blob(CELL *start, int sz USES_REGS) {extend_blob24,446 - clause_list_t Yap_ClauseListInit(clause_list_t in) {Yap_ClauseListInit40,799 - int Yap_ClauseListExtend(clause_list_t cl, void *clause, void *pred) {Yap_ClauseListExtend50,1004 - void Yap_ClauseListClose(clause_list_t cl) { /* no need to do nothing */Yap_ClauseListClose119,2923 - int Yap_ClauseListDestroy(clause_list_t cl) {Yap_ClauseListDestroy123,3044 - void *Yap_ClauseListToClause(clause_list_t cl) {Yap_ClauseListToClause132,3234 - void *Yap_ClauseListCode(clause_list_t cl) {Yap_ClauseListCode145,3539 - void *Yap_FAILCODE(void) { return (void *)FAILCODE; }Yap_FAILCODE153,3716 - -C/cmppreds.c,1678 -static char SccsId[] = "%W% %G%";SccsId54,1373 -#define rfloat(rfloat83,2019 -static int cmp_atoms(Atom a1, Atom a2) {cmp_atoms85,2074 -static Int compare_complex(register CELL *pt0, register CELL *pt0_end,compare_complex89,2179 -inline static Int compare(Term t1, Term t2) /* compare terms t1 and t2 */compare331,8483 -Int Yap_compare_terms(Term d0, Term d1) {Yap_compare_terms499,12749 -Int p_compare(USES_REGS1) { /* compare(?Op,?T1,?T2) */p_compare517,13104 -static Int a_noteq(Term t1, Term t2) { return (compare(t1, t2) != 0); }a_noteq547,13770 -static Int a_gen_lt(Term t1, Term t2) { return (compare(t1, t2) < 0); }a_gen_lt549,13843 -static Int a_gen_le(Term t1, Term t2) { return (compare(t1, t2) <= 0); }a_gen_le557,14012 -static Int a_gen_gt(Term t1, Term t2) { return compare(t1, t2) > 0; }a_gen_gt564,14179 -static Int a_gen_ge(Term t1, Term t2) { return compare(t1, t2) >= 0; }a_gen_ge570,14345 -inline static Int int_cmp(Int dif) { return dif; }int_cmp586,14635 -inline static Int flt_cmp(Float dif) {flt_cmp588,14687 -static Int a_cmp(Term t1, Term t2 USES_REGS) {a_cmp596,14812 -Int Yap_acmp(Term t1, Term t2 USES_REGS) {Yap_acmp699,17374 -static Int p_acomp(USES_REGS1) { /* $a_compare(?R,+X,+Y) */p_acomp704,17471 -static Int a_eq(Term t1, Term t2) {a_eq720,17816 -static Int a_dif(Term t1, Term t2) {a_dif761,18770 -static Int a_gt(Term t1, Term t2) { /* A > B */a_gt774,19061 -static Int a_ge(Term t1, Term t2) { /* A >= B */a_ge787,19381 -static Int a_lt(Term t1, Term t2) { /* A < B */a_lt801,19692 -static Int a_le(Term t1, Term t2) { /* A <= B */a_le817,20021 -void Yap_InitCmpPreds(void) {Yap_InitCmpPreds827,20168 - -C/compiler.c,7952 -static char SccsId[] = "%W% %G%";SccsId171,4965 -typedef struct branch_descriptor {branch_descriptor188,5264 - int id; /* the branch id */id189,5299 - int id; /* the branch id */branch_descriptor::id189,5299 - Term cm; /* if a banch is associated with a commit */cm190,5330 - Term cm; /* if a banch is associated with a commit */branch_descriptor::cm190,5330 -} branch;branch191,5386 -typedef struct compiler_struct_struct {compiler_struct_struct193,5397 - branch parent_branches[256];parent_branches194,5437 - branch parent_branches[256];compiler_struct_struct::parent_branches194,5437 - branch *branch_pointer;branch_pointer195,5468 - branch *branch_pointer;compiler_struct_struct::branch_pointer195,5468 - PInstr *BodyStart;BodyStart196,5494 - PInstr *BodyStart;compiler_struct_struct::BodyStart196,5494 - Ventry *vtable;vtable197,5515 - Ventry *vtable;compiler_struct_struct::vtable197,5515 - CExpEntry *common_exps;common_exps198,5533 - CExpEntry *common_exps;compiler_struct_struct::common_exps198,5533 - int is_a_fact;is_a_fact199,5559 - int is_a_fact;compiler_struct_struct::is_a_fact199,5559 - int hasdbrefs;hasdbrefs200,5576 - int hasdbrefs;compiler_struct_struct::hasdbrefs200,5576 - int n_common_exps;n_common_exps201,5593 - int n_common_exps;compiler_struct_struct::n_common_exps201,5593 - int goalno;goalno202,5614 - int goalno;compiler_struct_struct::goalno202,5614 - int onlast;onlast203,5628 - int onlast;compiler_struct_struct::onlast203,5628 - int onhead;onhead204,5642 - int onhead;compiler_struct_struct::onhead204,5642 - int onbranch;onbranch205,5656 - int onbranch;compiler_struct_struct::onbranch205,5656 - int curbranch;curbranch206,5672 - int curbranch;compiler_struct_struct::curbranch206,5672 - Int space_used;space_used207,5689 - Int space_used;compiler_struct_struct::space_used207,5689 - PInstr *space_op;space_op208,5707 - PInstr *space_op;compiler_struct_struct::space_op208,5707 - Prop current_p0;current_p0209,5727 - Prop current_p0;compiler_struct_struct::current_p0209,5727 - PInstr *cut_mark;cut_mark211,5772 - PInstr *cut_mark;compiler_struct_struct::cut_mark211,5772 - int pbvars;pbvars214,5837 - int pbvars;compiler_struct_struct::pbvars214,5837 - int nvars;nvars216,5870 - int nvars;compiler_struct_struct::nvars216,5870 - UInt labelno;labelno217,5883 - UInt labelno;compiler_struct_struct::labelno217,5883 - int or_found;or_found218,5899 - int or_found;compiler_struct_struct::or_found218,5899 - UInt max_args;max_args219,5915 - UInt max_args;compiler_struct_struct::max_args219,5915 - int MaxCTemps;MaxCTemps220,5932 - int MaxCTemps;compiler_struct_struct::MaxCTemps220,5932 - UInt tmpreg;tmpreg221,5949 - UInt tmpreg;compiler_struct_struct::tmpreg221,5949 - Int vreg;vreg222,5964 - Int vreg;compiler_struct_struct::vreg222,5964 - Int vadr;vadr223,5976 - Int vadr;compiler_struct_struct::vadr223,5976 - Int *Uses;Uses224,5988 - Int *Uses;compiler_struct_struct::Uses224,5988 - Term *Contents;Contents225,6001 - Term *Contents;compiler_struct_struct::Contents225,6001 - int needs_env;needs_env226,6019 - int needs_env;compiler_struct_struct::needs_env226,6019 - CIntermediates cint;cint227,6036 - CIntermediates cint;compiler_struct_struct::cint227,6036 -} compiler_struct;compiler_struct228,6059 -static void push_branch(int id, Term cmvar, compiler_struct *cglobs) {push_branch262,7496 -static int pop_branch(compiler_struct *cglobs) {pop_branch268,7671 -#define is_tabled(is_tabled274,7805 -static inline int active_branch(int i, int onbranch) {active_branch277,7882 -#define FAIL(FAIL289,8138 -#define IsNewVar(IsNewVar296,8489 -#define IsNewVar(IsNewVar298,8557 -inline static void pop_code(unsigned int level, compiler_struct *cglobs) {pop_code304,8775 -static void adjust_current_commits(compiler_struct *cglobs) {adjust_current_commits314,9014 -static int check_var(Term t, unsigned int level, Int argno,check_var324,9257 -static void tag_var(Term t, int new, compiler_struct *cglobs) {tag_var401,11535 -static void c_var(Term t, Int argno, unsigned int arity, unsigned int level,c_var415,11865 -static void c_2vars(int op, Term t1, Int argno1, Term t2, Int argno2,c_2vars481,13911 -static void reset_vars(Ventry *vtable) {reset_vars498,14438 -static Term optimize_ce(Term t, unsigned int arity, unsigned int level,optimize_ce509,14614 -static void compile_sf_term(Term t, int argno, int level) {compile_sf_term561,15872 -inline static void c_args(Term app, unsigned int level,c_args599,17117 -static int try_store_as_dbterm(Term t, Int argno, unsigned int arity, int level,try_store_as_dbterm620,17757 -static void c_arg(Int argno, Term t, unsigned int arity, unsigned int level,c_arg668,19391 -static void c_eq(Term t1, Term t2, compiler_struct *cglobs) {c_eq889,27999 -static void c_test(Int Op, Term t1, compiler_struct *cglobs) {c_test977,30427 -static void c_bifun(basic_preds Op, Term t1, Term t2, Term t3, Term Goal,c_bifun1036,31767 -static void c_functor(Term Goal, Term mod, compiler_struct *cglobs) {c_functor1364,42852 -static int IsTrueGoal(Term t) {IsTrueGoal1410,44524 -static void emit_special_label(Term Goal, compiler_struct *cglobs) {emit_special_label1427,44975 -static void c_goal(Term Goal, Term mod, compiler_struct *cglobs) {c_goal1475,46415 -static void c_body(Term Body, Term mod, compiler_struct *cglobs) {c_body2063,68038 -static void c_head(Term t, compiler_struct *cglobs) {c_head2097,69012 -inline static bool usesvar(compiler_vm_op ic) {usesvar2148,70526 -inline static bool usesvar2(compiler_vm_op ic) { return ic == bccall_op; }usesvar22184,71251 -#define LOCALISE_VOIDS LOCALISE_VOIDS2190,71409 -typedef struct env_tmp {env_tmp2193,71457 - Ventry *Var;Var2194,71482 - Ventry *Var;env_tmp::Var2194,71482 - struct env_tmp *Next;Next2195,71497 - struct env_tmp *Next;env_tmp::Next2195,71497 -} EnvTmp;EnvTmp2196,71521 -static void tag_use(Ventry *v USES_REGS) {tag_use2199,71539 -static void AssignPerm(PInstr *pc, compiler_struct *cglobs) {AssignPerm2224,72182 -static CELL *init_bvarray(int nperm, compiler_struct *cglobs) {init_bvarray2306,74406 -static void clear_bvarray(int var, CELL *bvarrayclear_bvarray2314,74658 -static void add_bvarray_op(PInstr *cp, CELL *bvarray, int env_size,add_bvarray_op2345,75524 - int lab;lab2360,76018 - int lab;__anon5::lab2360,76018 - int last;last2361,76029 - int last;__anon5::last2361,76029 - PInstr *pc;pc2362,76041 - PInstr *pc;__anon5::pc2362,76041 -} bventry;bventry2363,76055 -#define MAX_DISJUNCTIONS MAX_DISJUNCTIONS2365,76067 -static bventry *bvstack;bvstack2366,76096 -static int bvindex = 0;bvindex2367,76121 -static void push_bvmap(int label, PInstr *pcpc, compiler_struct *cglobs) {push_bvmap2369,76146 -static void reset_bvmap(CELL *bvarray, int nperm, compiler_struct *cglobs) {reset_bvmap2385,76640 -static void pop_bvmap(CELL *bvarray, int nperm, compiler_struct *cglobs) {pop_bvmap2408,77333 - PInstr *p;p2421,77724 - PInstr *p;__anon6::p2421,77724 - Ventry *v;v2422,77737 - Ventry *v;__anon6::v2422,77737 -} UnsafeEntry;UnsafeEntry2423,77750 -static void CheckUnsafe(PInstr *pc, compiler_struct *cglobs) {CheckUnsafe2426,77841 -CheckVoids(compiler_struct *cglobs) { /* establish voids in the head and initialCheckVoids2558,82195 -static int checktemp(Int arg, Int rn, compiler_vm_op ic,checktemp2611,83475 -static Int checkreg(Int arg, Int rn, compiler_vm_op ic, int var_arg,checkreg2718,86637 -static CELL copy_live_temps_bmap(int max, compiler_struct *cglobs) {copy_live_temps_bmap2762,87703 -static void c_layout(compiler_struct *cglobs) {c_layout2783,88239 -static void push_allocate(PInstr *pc, PInstr *oldpc) {push_allocate3123,97609 -static void c_optimize(PInstr *pc) {c_optimize3182,99062 -yamop *Yap_cclause(volatile Term inp_clause, Int NOfArgs, Term mod,Yap_cclause3358,103190 - -C/computils.c,2264 -static char SccsId[] = "%W% %G%";SccsId52,1589 -typedef struct mem_blk {mem_blk77,1972 - struct mem_blk *next;next79,2007 - struct mem_blk *next;mem_blk::__anon7::next79,2007 - double fill;fill80,2033 - double fill;mem_blk::__anon7::fill80,2033 - } ublock;ublock81,2050 - } ublock;mem_blk::ublock81,2050 - char contents[1];contents82,2062 - char contents[1];mem_blk::contents82,2062 -} MemBlk;MemBlk83,2082 -#define CMEM_BLK_SIZE CMEM_BLK_SIZE85,2093 -#define FIRST_CMEM_BLK_SIZE FIRST_CMEM_BLK_SIZE86,2124 -AllocCMem (UInt size, struct intermediates *cip)AllocCMem89,2177 -Yap_ReleaseCMem (struct intermediates *cip)Yap_ReleaseCMem157,3744 -Yap_AllocCMem (UInt size, struct intermediates *cip)Yap_AllocCMem178,4200 -is_a_test(Term arg, Term mod)is_a_test184,4300 -Yap_is_a_test_pred (Term arg, Term mod)Yap_is_a_test_pred227,5286 -Yap_emit (compiler_vm_op o, Int r1, CELL r2, struct intermediates *cip)Yap_emit233,5366 -Yap_emit_3ops (compiler_vm_op o, CELL r1, CELL r2, CELL r3, struct intermediates *cip)Yap_emit_3ops250,5696 -Yap_emit_4ops (compiler_vm_op o, CELL r1, CELL r2, CELL r3, CELL r4, struct intermediates *cip)Yap_emit_4ops269,6075 -Yap_emit_5ops (compiler_vm_op o, CELL r1, CELL r2, CELL r3, CELL r4, CELL r5, struct intermediates *cip)Yap_emit_5ops289,6481 -Yap_emit_6ops (compiler_vm_op o, CELL r1, CELL r2, CELL r3, CELL r4, CELL r5, CELL r6, struct intermediates *cip)Yap_emit_6ops310,6912 -Yap_emit_7ops (compiler_vm_op o, CELL r1, CELL r2, CELL r3, CELL r4, CELL r5, CELL r6, CELL r7, struct intermediates *cip)Yap_emit_7ops332,7368 -Yap_emit_extra_size (compiler_vm_op o, CELL r1, int size, struct intermediates *cip)Yap_emit_extra_size355,7851 -bip_name(Int op, char *s)bip_name373,8227 -Yap_bip_name(Int op, char *s) {Yap_bip_name458,9540 -write_address(CELL address)write_address465,9619 -write_special_label(special_label_op arg, special_label_id rn, UInt lab)write_special_label490,10195 -write_functor(Functor f)write_functor527,11068 -char *opDesc[] = { mklist(f_arr) };opDesc548,11705 -static void send_pred(PredEntry *p)send_pred550,11742 -ShowOp (compiler_vm_op ic, const char *f, struct PSEUDO *cpc)ShowOp569,12282 -Yap_ShowCode (struct intermediates *cint)Yap_ShowCode779,17083 - -C/control_absmi_insts.h,35 -#define NORM_CP(NORM_CP537,14038 - -C/corout.c,1127 -static char SccsId[] = "%W% %G%";SccsId18,586 -#define NULL NULL27,738 -static Term AddVarIfNotThere(Term var, Term dest USES_REGS) {AddVarIfNotThere33,823 -static int can_unify_complex(register CELL *pt0, register CELL *pt0_end,can_unify_complex45,1142 -static int can_unify(Term t1, Term t2, Term *Vars USES_REGS) {can_unify248,6751 -static int non_ground_complex(register CELL *pt0, register CELL *pt0_end,non_ground_complex327,9067 -static int non_ground(Term t, Term *Var USES_REGS) {non_ground443,11707 -static Int p_can_unify(USES_REGS1) {p_can_unify481,12749 -static Int p_non_ground(USES_REGS1) {p_non_ground493,13010 -static Int p_coroutining(USES_REGS1) {p_coroutining505,13273 -static Term ListOfWokenGoals(USES_REGS1) {ListOfWokenGoals514,13398 -Term Yap_ListOfWokenGoals(void) {Yap_ListOfWokenGoals518,13489 -static Int p_awoken_goals(USES_REGS1) {p_awoken_goals525,13621 -static Int p_yap_has_rational_trees(USES_REGS1) {p_yap_has_rational_trees539,13931 -static Int p_yap_has_coroutining(USES_REGS1) {p_yap_has_coroutining547,14047 -void Yap_InitCoroutPreds(void) {Yap_InitCoroutPreds555,14157 - -C/cp_absmi_insts.h,0 - -C/cut_c.c,151 -void cut_c_initialize(int wid){cut_c_initialize5,56 -void cut_c_pop(void){cut_c_pop11,207 -void cut_c_push(cut_c_str_ptr new_top){cut_c_push28,573 - -C/dbase.c,15164 -static char SccsId[] = "%W% %G%";SccsId18,588 -#define DISCONNECT_OLD_ENTRIES DISCONNECT_OLD_ENTRIES142,5071 -#define RegisterRegister145,5122 -#define Register Register147,5145 -#define MkFirst MkFirst152,5268 -#define MkCode MkCode153,5286 -#define MkLast MkLast154,5311 -#define WithRef WithRef155,5328 -#define MkIfNot MkIfNot156,5346 -#define InQueue InQueue157,5365 -#define FrstDBRef(FrstDBRef159,5385 -#define NextDBRef(NextDBRef160,5419 -#define DBLength(DBLength162,5453 -#define AllocDBSpace(AllocDBSpace163,5514 -#define FreeDBSpace(FreeDBSpace164,5569 -#define ToSmall(ToSmall167,5636 -#define ToSmall(ToSmall169,5694 -#define MaxSFs MaxSFs174,5768 - Term SName; /* The culprit */SName177,5805 - Term SName; /* The culprit */__anon8::SName177,5805 - CELL *SFather; /* and his father's position */SFather178,5840 - CELL *SFather; /* and his father's position */__anon8::SFather178,5840 -} SFKeep;SFKeep179,5889 -#define HashFieldMask HashFieldMask182,5907 -#define DualHashFieldMask DualHashFieldMask183,5943 -#define TripleHashFieldMask TripleHashFieldMask184,5985 -#define FourHashFieldMask FourHashFieldMask185,6031 -#define ONE_FIELD_SHIFT ONE_FIELD_SHIFT187,6078 -#define TWO_FIELDS_SHIFT TWO_FIELDS_SHIFT188,6104 -#define THREE_FIELDS_SHIFT THREE_FIELDS_SHIFT189,6132 -#define AtomHash(AtomHash191,6163 -#define FunctorHash(FunctorHash192,6202 -#define NumberHash(NumberHash193,6244 -#define LARGE_IDB_LINK_TABLE LARGE_IDB_LINK_TABLE195,6292 -typedef BITS32 link_entry;link_entry199,6412 -#define SIZEOF_LINK_ENTRY SIZEOF_LINK_ENTRY200,6439 -typedef BITS16 link_entry;link_entry202,6473 -#define SIZEOF_LINK_ENTRY SIZEOF_LINK_ENTRY203,6500 -typedef struct db_globs {db_globs208,6615 - link_entry *lr, *LinkAr;lr209,6641 - link_entry *lr, *LinkAr;db_globs::lr209,6641 - link_entry *lr, *LinkAr;LinkAr209,6641 - link_entry *lr, *LinkAr;db_globs::LinkAr209,6641 - DBRef *tofref; /* place the refs also up */tofref213,6779 - DBRef *tofref; /* place the refs also up */db_globs::tofref213,6779 - CELL *FathersPlace; /* Where the father was going when the termFathersPlace215,6839 - CELL *FathersPlace; /* Where the father was going when the termdb_globs::FathersPlace215,6839 - SFKeep *SFAr, *TopSF; /* Where are we putting our SFunctors */SFAr217,6949 - SFKeep *SFAr, *TopSF; /* Where are we putting our SFunctors */db_globs::SFAr217,6949 - SFKeep *SFAr, *TopSF; /* Where are we putting our SFunctors */TopSF217,6949 - SFKeep *SFAr, *TopSF; /* Where are we putting our SFunctors */db_globs::TopSF217,6949 - DBRef found_one; /* Place where we started recording */found_one219,7021 - DBRef found_one; /* Place where we started recording */db_globs::found_one219,7021 - UInt sz; /* total size */sz220,7079 - UInt sz; /* total size */db_globs::sz220,7079 -} dbglobs;dbglobs221,7115 - CELL key;key225,7171 - CELL key;__anon9::key225,7171 - DBRef entry;entry226,7183 - DBRef entry;__anon9::entry226,7183 -} hash_db_entry;hash_db_entry227,7198 -#define db_check_trail(db_check_trail304,9999 -static UInt new_trail_size(void) {new_trail_size311,10409 -static int recover_from_record_error(int nargs) {recover_from_record_error321,10580 -static void create_hash_table(DBProp p, Int hint) {create_hash_table361,11828 -static void insert_in_table() {}insert_in_table387,12430 -static void remove_from_table() {}remove_from_table389,12464 -inline static CELL *cpcells(CELL *to, CELL *from, Int n) {cpcells392,12507 -static void linkblk(link_entry *r, CELL *c, CELL offs) {linkblk404,12744 -static Int cmpclls(CELL *a, CELL *b, Int n) {cmpclls413,12912 -int Yap_DBTrailOverflow() {Yap_DBTrailOverflow422,13055 -static Prop FindDBPropHavingLock(AtomEntry *ae, int CodeDB, unsigned int arity,FindDBPropHavingLock428,13199 -static Prop FindDBProp(AtomEntry *ae, int CodeDB, unsigned int arity,FindDBProp444,13667 -inline static CELL CalcKey(Term tw) {CalcKey456,14052 -static CELL EvalMasks(register Term tm, CELL *keyp) {EvalMasks477,14698 -CELL Yap_EvalMasks(register Term tm, CELL *keyp) { return EvalMasks(tm, keyp); }Yap_EvalMasks583,17717 -#define MarkThisRef(MarkThisRef586,17877 -typedef struct { CELL *addr; } visitel;addr591,18037 -typedef struct { CELL *addr; } visitel;__anon10::addr591,18037 -typedef struct { CELL *addr; } visitel;visitel591,18037 -#define DB_UNWIND_CUNIF(DB_UNWIND_CUNIF592,18077 -#define CheckDBOverflow(CheckDBOverflow599,18465 -#define CheckVisitOverflow(CheckVisitOverflow605,18772 -static CELL *copy_long_int(CELL *st, CELL *pt) {copy_long_int610,19020 -static CELL *copy_double(CELL *st, CELL *pt) {copy_double619,19251 -static CELL *copy_string(CELL *st, CELL *pt) {copy_string633,19603 -static CELL *copy_big_int(CELL *st, CELL *pt) {copy_big_int642,19836 -#define DB_MARKED(DB_MARKED658,20249 -static CELL *MkDBTerm(register CELL *pt0, register CELL *pt0_end,MkDBTerm661,20377 -#undef Yap_REGSYap_REGS669,20675 -#define Yap_REGS Yap_REGS671,20729 -#undef Yap_REGSYap_REGS1076,31803 -#define Yap_REGS Yap_REGS1077,31819 -static void sf_include(SFKeep *sfp, struct db_globs *dbg) SFKeep *sfp;sfp1087,32109 -inline static DBRef check_if_cons(DBRef p, Term to_compare) {check_if_cons1137,33454 -static DBRef check_if_var(DBRef p) {check_if_var1149,33796 -static DBRef check_if_wvars(DBRef p, unsigned int NOfCells, CELL *BTptr) {check_if_wvars1165,34435 -static int scheckcells(int NOfCells, register CELL *m1, register CELL *m2,scheckcells1183,34889 -static DBRef check_if_nvars(DBRef p, unsigned int NOfCells, CELL *BTptr,check_if_nvars1219,35816 -static DBRef generate_dberror_msg(int errnumb, UInt sz, char *msg) {generate_dberror_msg1239,36355 -static DBRef CreateDBWithDBRef(Term Tm, DBProp p, struct db_globs *dbg) {CreateDBWithDBRef1247,36538 -static DBTerm *CreateDBTermForAtom(Term Tm, UInt extra_size,CreateDBTermForAtom1293,37781 -static DBTerm *CreateDBTermForVar(UInt extra_size, struct db_globs *dbg) {CreateDBTermForVar1317,38399 -static DBRef CreateDBRefForAtom(Term Tm, DBProp p, int InFlag,CreateDBRefForAtom1340,38991 -static DBRef CreateDBRefForVar(Term Tm, DBProp p, int InFlag,CreateDBRefForVar1370,39762 -static DBRef CreateDBStruct(Term Tm, DBProp p, int InFlag, int *pstat,CreateDBStruct1398,40495 -static DBRef record(int Flag, Term key, Term t_data, Term t_code USES_REGS) {record1705,49684 -static DBRef record_at(int Flag, DBRef r0, Term t_data, Term t_code USES_REGS) {record_at1782,51363 -static LogUpdClause *new_lu_db_entry(Term t, PredEntry *pe) {new_lu_db_entry1859,52846 -LogUpdClause *Yap_new_ludbe(Term t, PredEntry *pe, UInt nargs) {Yap_new_ludbe1917,54388 -static LogUpdClause *record_lu(PredEntry *pe, Term t, int position) {record_lu1937,54814 -static LogUpdClause *record_lu_at(int position, LogUpdClause *ocl, Term t) {record_lu_at1951,55184 -static Int p_rcda(USES_REGS1) {p_rcda1996,56343 -static Int p_rcdap(USES_REGS1) {p_rcdap2039,57308 -static Int p_rcda_at(USES_REGS1) {p_rcda_at2069,57982 -static Int p_rcdz(USES_REGS1) {p_rcdz2116,59169 -Int Yap_Recordz(Atom at, Term t2) {Yap_Recordz2160,60100 -static Int p_rcdzp(USES_REGS1) {p_rcdzp2185,60607 -static Int p_rcdz_at(USES_REGS1) {p_rcdz_at2214,61283 -static Int p_rcdstatp(USES_REGS1) {p_rcdstatp2254,62332 -static Int p_drcdap(USES_REGS1) {p_drcdap2285,63156 -static Int p_drcdzp(USES_REGS1) {p_drcdzp2309,63796 -static Int p_still_variant(USES_REGS1) {p_still_variant2332,64390 -static int copy_attachments(CELL *ts USES_REGS) {copy_attachments2403,66120 -static Term GetDBLUKey(PredEntry *ap) {GetDBLUKey2424,66666 -static int UnifyDBKey(DBRef DBSP, PropFlags flags, Term t) {UnifyDBKey2443,67201 -static int UnifyDBNumber(DBRef DBSP, Term t) {UnifyDBNumber2471,67856 -Int Yap_unify_immediate_ref(DBRef ref USES_REGS) {Yap_unify_immediate_ref2492,68239 -static Term GetDBTerm(DBTerm *DBSP, int src USES_REGS) {GetDBTerm2505,68545 -static Term GetDBTermFromDBEntry(DBRef DBSP USES_REGS) {GetDBTermFromDBEntry2563,70095 -static void init_int_keys(void) {init_int_keys2569,70277 -static void init_int_lu_keys(void) {init_int_lu_keys2582,70587 -static int resize_int_keys(UInt new_size) {resize_int_keys2595,70910 -static PredEntry *find_lu_int_key(Int key) {find_lu_int_key2642,72138 -PredEntry *Yap_FindLUIntKey(Int key) { return find_lu_int_key(key); }Yap_FindLUIntKey2662,72581 -static DBProp find_int_key(Int key) {find_int_key2664,72652 -static PredEntry *new_lu_int_key(Int key) {new_lu_int_key2681,72966 -static PredEntry *new_lu_entry(Term t) {new_lu_entry2715,73827 -static DBProp find_entry(Term t) {find_entry2755,74845 -static PredEntry *find_lu_entry(Term t) {find_lu_entry2780,75351 -static DBProp FetchIntDBPropFromKey(Int key, int flag, int new,FetchIntDBPropFromKey2812,76219 -static DBProp FetchDBPropFromKey(Term twork, int flag, int new,FetchDBPropFromKey2854,77296 -static Int lu_nth_recorded(PredEntry *pe, Int Count USES_REGS) {lu_nth_recorded2951,80224 -static Int nth_recorded(DBProp AtProp, Int Count USES_REGS) {nth_recorded2972,80762 -Int Yap_db_nth_recorded(PredEntry *pe, Int Count USES_REGS) {Yap_db_nth_recorded3010,81653 -static Int p_db_key(USES_REGS1) {p_db_key3024,82040 -static Int i_recorded(DBProp AtProp, Term t3 USES_REGS) {i_recorded3036,82386 -static Int c_recorded(int flags USES_REGS) {c_recorded3168,86608 -static Int lu_recorded(PredEntry *pe USES_REGS) {lu_recorded3315,90961 -static Int in_rded_with_key(USES_REGS1) {in_rded_with_key3350,91770 -static Int p_recorded(USES_REGS1) {p_recorded3357,91960 -static Int co_rded(USES_REGS1) { return (c_recorded(0 PASS_REGS)); }co_rded3435,94132 -static Int in_rdedp(USES_REGS1) {in_rdedp3438,94242 -static Int co_rdedp(USES_REGS1) { return (c_recorded(MkCode PASS_REGS)); }co_rdedp3472,95110 -static Int p_somercdedp(USES_REGS1) {p_somercdedp3475,95223 -static Int p_first_instance(USES_REGS1) {p_first_instance3496,95883 -static UInt index_sz(LogUpdIndex *x) {index_sz3558,97617 -static Int lu_statistics(PredEntry *pe USES_REGS) {lu_statistics3598,98675 -static Int p_key_statistics(USES_REGS1) {p_key_statistics3642,99895 -static Int p_lu_statistics(USES_REGS1) {p_lu_statistics3671,100694 -static Int p_total_erased(USES_REGS1) {p_total_erased3696,101394 -static Int lu_erased_statistics(PredEntry *pe USES_REGS) {lu_erased_statistics3719,101933 -static Int p_key_erased_statistics(USES_REGS1) {p_key_erased_statistics3745,102542 -static Int p_heap_space_info(USES_REGS1) {p_heap_space_info3755,102772 -static void ErasePendingRefs(DBTerm *entryref USES_REGS) {ErasePendingRefs3765,103105 -inline static void RemoveDBEntry(DBRef entryref USES_REGS) {RemoveDBEntry3779,103428 -static yamop *find_next_clause(DBRef ref0 USES_REGS) {find_next_clause3810,104427 -static Int p_jump_to_next_dynamic_clause(USES_REGS1) {p_jump_to_next_dynamic_clause3859,105884 -static void complete_lu_erase(LogUpdClause *clau) {complete_lu_erase3876,106376 -static void EraseLogUpdCl(LogUpdClause *clau) {EraseLogUpdCl3924,107517 -static void MyEraseClause(DynamicClause *clau USES_REGS) {MyEraseClause4002,109806 -void Yap_ErLogUpdCl(LogUpdClause *clau) { EraseLogUpdCl(clau); }Yap_ErLogUpdCl4045,110972 -void Yap_ErCl(DynamicClause *clau) {Yap_ErCl4051,111125 -static void PrepareToEraseLogUpdClause(LogUpdClause *clau, DBRef dbr) {PrepareToEraseLogUpdClause4056,111211 -static void PrepareToEraseClause(DynamicClause *clau, DBRef dbr) {}PrepareToEraseClause4134,114038 -static void ErDBE(DBRef entryref USES_REGS) {ErDBE4136,114107 -void Yap_ErDBE(DBRef entryref) {Yap_ErDBE4172,115382 -static void EraseEntry(DBRef entryref) {EraseEntry4177,115460 -static Int p_erase(USES_REGS1) {p_erase4213,116477 -static Int p_increase_reference_counter(USES_REGS1) {p_increase_reference_counter4229,116813 -static Int p_decrease_reference_counter(USES_REGS1) {p_decrease_reference_counter4249,117319 -static Int p_current_reference_counter(USES_REGS1) {p_current_reference_counter4281,118052 -static Int p_erase_clause(USES_REGS1) {p_erase_clause4297,118483 -static Int p_eraseall(USES_REGS1) {p_eraseall4339,119633 -static Int p_erased(USES_REGS1) {p_erased4405,121269 -static Int static_instance(StaticClause *cl, PredEntry *ap USES_REGS) {static_instance4419,121568 -static Int exo_instance(Int i, PredEntry *ap USES_REGS) {exo_instance4471,123104 -static Int mega_instance(yamop *code, PredEntry *ap USES_REGS) {mega_instance4500,123960 -static Int p_instance(USES_REGS1) {p_instance4539,124962 -Term Yap_LUInstance(LogUpdClause *cl, UInt arity) {Yap_LUInstance4661,128810 -static Int p_instance_module(USES_REGS1) {p_instance_module4704,130009 -inline static int NotActiveDB(DBRef my_dbref) {NotActiveDB4731,130573 -inline static DBEntry *NextDBProp(PropEntry *pp) {NextDBProp4737,130747 -static Int init_current_key(USES_REGS1) { /* current_key(+Atom,?key) */init_current_key4744,130995 -static Int cont_current_key(USES_REGS1) {cont_current_key4779,131834 -static Int cont_current_key_integer(USES_REGS1) {cont_current_key_integer4869,134669 -Term Yap_FetchTermFromDB(DBTerm *ref) {Yap_FetchTermFromDB4897,135415 -Term Yap_FetchClauseTermFromDB(DBTerm *ref) {Yap_FetchClauseTermFromDB4902,135513 -Term Yap_PopTermFromDB(DBTerm *ref) {Yap_PopTermFromDB4907,135616 -static DBTerm *StoreTermInDB(Term t, int nargs USES_REGS) {StoreTermInDB4916,135780 -DBTerm *Yap_StoreTermInDB(Term t, int nargs) {Yap_StoreTermInDB4941,136382 -DBTerm *Yap_StoreTermInDBPlusExtraSpace(Term t, UInt extra_size, UInt *sz) {Yap_StoreTermInDBPlusExtraSpace4946,136489 -void Yap_init_tqueue(db_queue *dbq) {Yap_init_tqueue4959,136807 -void Yap_destroy_tqueue(db_queue *dbq USES_REGS) {Yap_destroy_tqueue4966,136975 -bool Yap_enqueue_tqueue(db_queue *father_key, Term t USES_REGS) {Yap_enqueue_tqueue4978,137373 -bool Yap_dequeue_tqueue(db_queue *father_key, Term t, bool first,Yap_dequeue_tqueue5001,138047 -static Int p_init_queue(USES_REGS1) {p_init_queue5066,140048 -static Int p_enqueue(USES_REGS1) {p_enqueue5082,140466 -static Int p_enqueue_unlocked(USES_REGS1) {p_enqueue_unlocked5101,140988 -static void keepdbrefs(DBTerm *entryref USES_REGS) {keepdbrefs5125,141891 -static Int p_dequeue(USES_REGS1) {p_dequeue5145,142301 -static Int p_dequeue_unlocked(USES_REGS1) {p_dequeue_unlocked5172,143087 -static Int p_peek_queue(USES_REGS1) {p_peek_queue5194,143742 -static Int p_clean_queues(USES_REGS1) { return TRUE; }p_clean_queues5222,144603 -static Int p_slu(USES_REGS1) {p_slu5225,144694 -static Int p_hold_index(USES_REGS1) {p_hold_index5240,145087 -static Int p_fetch_reference_from_index(USES_REGS1) {p_fetch_reference_from_index5245,145215 -static Int p_resize_int_keys(USES_REGS1) {p_resize_int_keys5272,145827 -static void ReleaseTermFromDB(DBTerm *ref USES_REGS) {ReleaseTermFromDB5284,146156 -void Yap_ReleaseTermFromDB(DBTerm *ref) {Yap_ReleaseTermFromDB5292,146330 -static Int p_install_thread_local(USES_REGS1) { /* '$is_dynamic'(+P) */p_install_thread_local5297,146424 -void Yap_InitDBPreds(void) {Yap_InitDBPreds5349,147936 -void Yap_InitBackDB(void) {Yap_InitBackDB5430,151817 - -C/depth_bound.c,349 -static char SccsId[] = "%W% %G%";SccsId18,611 -static Int p_get_depth_limit( USES_REGS1 )p_get_depth_limit34,874 -static Int p_set_depth_limit( USES_REGS1 )p_set_depth_limit42,1073 -static Int p_set_depth_limit_for_next_call( USES_REGS1 )p_set_depth_limit_for_next_call65,1547 -void Yap_InitItDeepenPreds(void)Yap_InitItDeepenPreds87,2020 - -C/dlmalloc.c,4018 -ChunkPtrAdjust (struct malloc_chunk *ptr)ChunkPtrAdjust13,174 -Yap_add_memory_hole(ADDR start, ADDR end)Yap_add_memory_hole180,7677 -yapsbrk(long size)yapsbrk193,8093 -static int largebin_index(unsigned int sz) {largebin_index232,9221 -#define bin_index(bin_index268,10077 -#define FIRST_SORTED_BIN_SIZE FIRST_SORTED_BIN_SIZE291,10968 -#define unsorted_chunks(unsorted_chunks305,11515 -#define initial_top(initial_top326,12486 -#define idx2block(idx2block339,12958 -#define idx2bit(idx2bit340,13004 -#define mark_bin(mark_bin342,13072 -#define unmark_bin(unmark_bin343,13140 -#define get_binmap(get_binmap344,13210 -#define FASTBIN_CONSOLIDATION_THRESHOLD FASTBIN_CONSOLIDATION_THRESHOLD374,14470 -#define ANYCHUNKS_BIT ANYCHUNKS_BIT388,14817 -#define have_anychunks(have_anychunks390,14852 -#define set_anychunks(set_anychunks391,14917 -#define clear_anychunks(clear_anychunks392,14981 -#define FASTCHUNKS_BIT FASTCHUNKS_BIT400,15239 -#define have_fastchunks(have_fastchunks402,15275 -#define set_fastchunks(set_fastchunks403,15340 -#define clear_fastchunks(clear_fastchunks404,15420 -#define set_max_fast(set_max_fast411,15558 -#define get_max_fast(get_max_fast415,15708 -#define MORECORE_CONTIGUOUS_BIT MORECORE_CONTIGUOUS_BIT424,15919 -#define contiguous(contiguous426,15958 -#define noncontiguous(noncontiguous428,16046 -#define set_contiguous(set_contiguous430,16142 -#define set_noncontiguous(set_noncontiguous432,16233 -#define get_malloc_state(get_malloc_state455,17075 -static void malloc_init_state(mstate av)malloc_init_state468,17512 -#define check_chunk(check_chunk526,18830 -#define check_free_chunk(check_free_chunk527,18853 -#define check_inuse_chunk(check_inuse_chunk528,18881 -#define check_remalloced_chunk(check_remalloced_chunk529,18910 -#define check_malloced_chunk(check_malloced_chunk530,18946 -#define check_malloc_state(check_malloc_state531,18980 -#define check_chunk(check_chunk534,19016 -#define check_free_chunk(check_free_chunk535,19070 -#define check_inuse_chunk(check_inuse_chunk536,19129 -#define check_remalloced_chunk(check_remalloced_chunk537,19189 -#define check_malloced_chunk(check_malloced_chunk538,19256 -#define check_malloc_state(check_malloc_state539,19321 -static void do_check_chunk(mchunkptr p)do_check_chunk546,19428 -static void do_check_free_chunk(mchunkptr p)do_check_free_chunk598,20743 -static void do_check_inuse_chunk(mchunkptr p)do_check_inuse_chunk642,21734 -static void do_check_remalloced_chunk(mchunkptr p, INTERNAL_SIZE_T s)do_check_remalloced_chunk683,22707 -static void do_check_malloced_chunk(mchunkptr p, INTERNAL_SIZE_T s)do_check_malloced_chunk709,23365 -static void do_check_malloc_state(void)do_check_malloc_state742,24413 -static Void_t* sYSMALLOc(INTERNAL_SIZE_T nb, mstate av)sYSMALLOc863,27524 -static int sYSTRIm(size_t pad, mstate av)sYSTRIm1197,38833 -Void_t* mALLOc(size_t bytes)mALLOc1259,40730 -void fREe(Void_t* mem)fREe1612,51684 -static void malloc_consolidate(mstate av)malloc_consolidate1771,56172 -Void_t* rEALLOc(Void_t* oldmem, size_t bytes)rEALLOc1874,59081 -Void_t* mEMALIGn(size_t alignment, size_t bytes)mEMALIGn2100,65350 -Void_t* cALLOc(size_t n_elements, size_t elem_size)cALLOc2205,68647 -void cFREe(Void_t *mem)cFREe2263,69864 -Void_t** iCALLOc(size_t n_elements, size_t elem_size, Void_t* chunks[])iCALLOc2276,70040 -Void_t** iCOMALLOc(size_t n_elements, size_t sizes[], Void_t* chunks[])iCOMALLOc2291,70507 -static Void_t** iALLOc(size_t n_elements, iALLOc2312,71073 -Void_t* vALLOc(size_t bytes)vALLOc2432,74717 -Void_t* pVALLOc(size_t bytes)pVALLOc2449,75045 -int mTRIm(size_t pad)mTRIm2469,75450 -size_t mUSABLe(Void_t* mem)mUSABLe2491,75804 -struct mallinfo mALLINFo()mALLINFo2511,76164 -Yap_givemallinfo(void)Yap_givemallinfo2573,77422 -void mSTATs(void)mSTATs2580,77508 -int mALLOPt(int param_number, int value)mALLOPt2601,77946 -Yap_initdlmalloc(void)Yap_initdlmalloc2924,90860 -void Yap_RestoreDLMalloc(void)Yap_RestoreDLMalloc2935,91195 - -C/errors.c,3624 -bool Yap_Warning(const char *s, ...) {Yap_Warning35,832 -void Yap_InitError(yap_error_number e, Term t, const char *msg) {Yap_InitError76,1953 -bool Yap_PrintWarning(Term twarning) {Yap_PrintWarning93,2430 -bool Yap_HandleError__(const char *file, const char *function, int lineno,Yap_HandleError__127,3444 -int Yap_SWIHandleError(const char *s, ...) {Yap_SWIHandleError167,4561 -void Yap_RestartYap(int flag) {Yap_RestartYap205,5490 -static void error_exit_yap(int value) {error_exit_yap213,5637 -#define YAP_BUF_SIZE YAP_BUF_SIZE237,6226 -static char tmpbuf[YAP_BUF_SIZE];tmpbuf239,6252 -#undef BEGIN_ERROR_CLASSESBEGIN_ERROR_CLASSES248,6467 -#undef ECLASSECLASS249,6494 -#undef END_ERROR_CLASSESEND_ERROR_CLASSES250,6508 -#undef BEGIN_ERRORSBEGIN_ERRORS251,6533 -#undef E0E0252,6553 -#undef EE253,6563 -#undef E2E2254,6572 -#undef END_ERRORSEND_ERRORS255,6582 -#define BEGIN_ERROR_CLASSES(BEGIN_ERROR_CLASSES257,6601 -#define ECLASS(ECLASS261,6781 -#define END_ERROR_CLASSES(END_ERROR_CLASSES269,7274 -#define BEGIN_ERRORS(BEGIN_ERRORS274,7522 -#define E0(E0278,7702 -#define E(E282,7894 -#define E2(E2288,8248 -#define END_ERRORS(END_ERRORS295,8683 -void Yap_pushErrorContext(yap_error_descriptor_t *new_error) {Yap_pushErrorContext302,8955 -yap_error_descriptor_t *Yap_popErrorContext(void) {Yap_popErrorContext307,9098 -void Yap_ThrowError__(const char *file, const char *function, int lineno,Yap_ThrowError__313,9282 -yamop *Yap_Error__(const char *file, const char *function, int lineno,Yap_Error__367,10995 -static Int is_boolean(USES_REGS1) {is_boolean620,18948 -static Int is_atom(USES_REGS1) {is_atom630,19215 -static Int is_callable(USES_REGS1) {is_callable640,19461 -static Int is_predicate_indicator(USES_REGS1) {is_predicate_indicator677,20369 -static Int close_error(USES_REGS1) {close_error704,21047 -#undef BEGIN_ERROR_CLASSESBEGIN_ERROR_CLASSES709,21137 -#undef ECLASSECLASS710,21164 -#undef END_ERROR_CLASSESEND_ERROR_CLASSES711,21178 -#undef BEGIN_ERRORSBEGIN_ERRORS712,21203 -#undef E0E0713,21223 -#undef EE714,21233 -#undef E2E2715,21242 -#undef END_ERRORSEND_ERRORS716,21252 -#define BEGIN_ERROR_CLASSES(BEGIN_ERROR_CLASSES718,21271 -#define ECLASS(ECLASS720,21327 -#define END_ERROR_CLASSES(END_ERROR_CLASSES722,21361 -#define BEGIN_ERRORS(BEGIN_ERRORS726,21539 -#define E0(E0727,21562 -#define E(E728,21579 -#define E2(E2729,21598 -#define END_ERRORS(END_ERRORS730,21621 -#undef BEGIN_ERROR_CLASSESBEGIN_ERROR_CLASSES734,21667 -#undef ECLASSECLASS735,21694 -#undef END_ERROR_CLASSESEND_ERROR_CLASSES736,21708 -#undef BEGIN_ERRORSBEGIN_ERRORS737,21733 -#undef E0E0738,21753 -#undef EE739,21763 -#undef E2E2740,21772 -#undef END_ERRORSEND_ERRORS741,21782 -#define BEGIN_ERROR_CLASSES(BEGIN_ERROR_CLASSES743,21801 -#define ECLASS(ECLASS745,21876 -#define END_ERROR_CLASSES(END_ERROR_CLASSES747,21905 -typedef struct c_error_info {c_error_info751,22072 - int class;class752,22102 - int class;c_error_info::class752,22102 - const char *name;name753,22115 - const char *name;c_error_info::name753,22115 -} c_error_t;c_error_t754,22135 -#define BEGIN_ERRORS(BEGIN_ERRORS756,22149 -#define E0(E0757,22218 -#define E(E758,22248 -#define E2(E2759,22279 -#define END_ERRORS(END_ERRORS760,22320 -yap_error_class_number Yap_errorClass(yap_error_number e) {Yap_errorClass767,22592 -const char *Yap_errorName(yap_error_number e) { return c_error_list[e].name; }Yap_errorName771,22687 -const char *Yap_errorClassName(yap_error_class_number e) {Yap_errorClassName773,22767 -void Yap_InitErrorPreds(void) {Yap_InitErrorPreds777,22861 - -C/eval.c,867 -static char SccsId[] = "%W% %G%";SccsId18,590 -static Term get_matrix_element(Term t1, Term t2 USES_REGS) {get_matrix_element48,1010 -static Term Eval(Term t USES_REGS) {Eval93,2242 -Term Yap_InnerEval__(Term t USES_REGS) { return Eval(t PASS_REGS); }Yap_InnerEval__164,4616 -Int BEAM_is(void) { /* X is Y */BEAM_is169,4718 -static Int p_is(USES_REGS1) { /* X is Y */p_is198,5355 -static Int p_isnan(USES_REGS1) { /* X isnan Y */p_isnan233,6183 -static Int p_isinf(USES_REGS1) { /* X is Y */p_isinf266,7005 -static Int p_logsum(USES_REGS1) { /* X is Y */p_logsum302,8039 -void Yap_EvalError__(const char *file, const char *function, int lineno,Yap_EvalError__372,9898 -static Int cont_between(USES_REGS1) {cont_between408,10907 -static Int init_between(USES_REGS1) {init_between442,11599 -void Yap_InitEval(void) {Yap_InitEval535,13904 - -C/exec.c,7766 -static char SccsId[] = "@(#)cdmgr.c 1.1 05/02/98";SccsId18,582 -static Term cp_as_integer(choiceptr cp USES_REGS) {cp_as_integer34,1016 -static choiceptr cp_from_integer(Term cpt USES_REGS) {cp_from_integer38,1116 -Term Yap_cp_as_integer(choiceptr cp) {Yap_cp_as_integer49,1481 -static inline bool CallPredicate(PredEntry *pen, choiceptr cut_pt,CallPredicate62,1810 -inline static bool CallMetaCall(Term t, Term mod USES_REGS) {CallMetaCall104,2938 -Term Yap_ExecuteCallMetaCall(Term mod) {Yap_ExecuteCallMetaCall129,3642 -Term Yap_PredicateIndicator(Term t, Term mod) {Yap_PredicateIndicator142,4010 -static bool CallError(yap_error_number err, Term t, Term mod USES_REGS) {CallError166,4671 -static Int current_choice_point(USES_REGS1) {current_choice_point186,5268 -static Int save_env_b(USES_REGS1) {save_env_b199,5519 -static PredEntry *new_pred(Term t, Term tmod, char *pname) {new_pred215,5875 -static bool CommaCall(Term t, Term mod) {CommaCall250,6861 -inline static bool do_execute(Term t, Term mod USES_REGS) {do_execute272,7373 -static Term copy_execn_to_heap(Functor f, CELL *pt, unsigned int n,copy_execn_to_heap353,9950 -inline static bool do_execute_n(Term t, Term mod, unsigned int n USES_REGS) {do_execute_n387,10692 -static bool EnterCreepMode(Term t, Term mod USES_REGS) {EnterCreepMode470,13070 -static Int execute(USES_REGS1) { /* '$execute'(Goal) */execute499,13913 -bool Yap_Execute(Term t USES_REGS) { /* '$execute'(Goal) */Yap_Execute504,14046 -static void heap_store(Term t USES_REGS) {heap_store508,14159 -static Int execute2(USES_REGS1) { /* '$execute'(Goal) */execute2522,14402 -static Int execute3(USES_REGS1) { /* '$execute'(Goal) */execute3528,14578 -static Int execute4(USES_REGS1) { /* '$execute'(Goal) */execute4535,14791 -static Int execute5(USES_REGS1) { /* '$execute'(Goal) */execute5543,15041 -static Int execute6(USES_REGS1) { /* '$execute'(Goal) */execute6552,15328 -static Int execute7(USES_REGS1) { /* '$execute'(Goal) */execute7562,15652 -static Int execute8(USES_REGS1) { /* '$execute'(Goal) */execute8573,16013 -static Int execute9(USES_REGS1) { /* '$execute'(Goal) */execute9585,16411 -static Int execute10(USES_REGS1) { /* '$execute'(Goal) */execute10598,16846 -static Int execute11(USES_REGS1) { /* '$execute'(Goal) */execute11612,17322 -static Int execute12(USES_REGS1) { /* '$execute'(Goal) */execute12627,17837 -static Int execute_clause(USES_REGS1) { /* '$execute_clause'(Goal) */execute_clause644,18391 -static Int execute_in_mod(USES_REGS1) { /* '$execute'(Goal) */execute_in_mod711,20204 - CALLED_FROM_CALL = 0x1,CALLED_FROM_CALL716,20343 - CALLED_FROM_ANSWER = 0x2,CALLED_FROM_ANSWER717,20369 - CALLED_FROM_EXIT = 0x4,CALLED_FROM_EXIT718,20397 - CALLED_FROM_RETRY = 0x8,CALLED_FROM_RETRY719,20423 - CALLED_FROM_FAIL = 0x18,CALLED_FROM_FAIL720,20450 - CALLED_FROM_CUT = 0x20,CALLED_FROM_CUT721,20477 - CALLED_FROM_EXCEPTION = 0x40,CALLED_FROM_EXCEPTION722,20503 - CALLED_FROM_THROW = 0x80CALLED_FROM_THROW723,20535 -} execution_port;execution_port724,20562 -INLINE_ONLY inline bool called_from_forward(execution_port port) {called_from_forward726,20581 -INLINE_ONLY inline bool called_from_backward(execution_port port) {called_from_backward731,20782 -static void prune_inner_computation(choiceptr parent) {prune_inner_computation740,21037 -static void complete_inner_computation(choiceptr old_B) {complete_inner_computation770,21636 -static inline Term *GetTermAddress(CELL a) {GetTermAddress792,22131 -static bool call_cleanup(Term t3, Term t4, Term cleanup,call_cleanup809,22427 -static bool exit_set_call(execution_port exec_result, choiceptr B0, yamop *oCP,exit_set_call843,23305 -static Int protect_stack_from_cut(USES_REGS1) {protect_stack_from_cut938,25489 -static Int protect_stack_from_retry(USES_REGS1) {protect_stack_from_retry958,26117 -static Int protect_stack(USES_REGS1) {protect_stack1017,27636 -static Int setup_call_catcher_cleanup(USES_REGS1) {setup_call_catcher_cleanup1023,27729 -static bool complete_ge(bool out, Term omod, yhandle_t sl, bool creeping) {complete_ge1091,29387 -static Int _user_expand_goal(USES_REGS1) {_user_expand_goal1103,29618 -static Int do_term_expansion(USES_REGS1) {do_term_expansion1155,31640 -static Int execute0(USES_REGS1) { /* '$execute0'(Goal,Mod) */execute01194,33111 -static Int execute_nonstop(USES_REGS1) { /* '$execute_nonstop'(Goal,Mod)execute_nonstop1263,35040 -static Int execute_0(USES_REGS1) { /* '$execute_0'(Goal) */execute_01339,37304 -static bool call_with_args(int i USES_REGS) {call_with_args1347,37517 -static Int execute_1(USES_REGS1) { /* '$execute_0'(Goal) */execute_11359,37803 -static Int execute_2(USES_REGS1) { /* '$execute_2'(Goal) */execute_21363,37905 -static Int execute_3(USES_REGS1) { /* '$execute_3'(Goal) */execute_31367,38007 -static Int execute_4(USES_REGS1) { /* '$execute_4'(Goal) */execute_41371,38109 -static Int execute_5(USES_REGS1) { /* '$execute_5'(Goal) */execute_51375,38211 -static Int execute_6(USES_REGS1) { /* '$execute_6'(Goal) */execute_61379,38313 -static Int execute_7(USES_REGS1) { /* '$execute_7'(Goal) */execute_71383,38415 -static Int execute_8(USES_REGS1) { /* '$execute_8'(Goal) */execute_81387,38517 -static Int execute_9(USES_REGS1) { /* '$execute_9'(Goal) */execute_91391,38619 -static Int execute_10(USES_REGS1) { /* '$execute_10'(Goal) */execute_101395,38721 -static Int execute_depth_limit(USES_REGS1) {execute_depth_limit1400,38845 -static bool exec_absmi(bool top, yap_reset_t reset_mode USES_REGS) {exec_absmi1419,39330 -void Yap_PrepGoal(arity_t arity, CELL *pt, choiceptr saved_b USES_REGS) {Yap_PrepGoal1506,41950 -static bool do_goal(yamop *CodeAdr, int arity, CELL *pt, bool top USES_REGS) {do_goal1550,42998 -bool Yap_exec_absmi(bool top, yap_reset_t has_reset) {Yap_exec_absmi1571,43524 -void Yap_fail_all(choiceptr bb USES_REGS) {Yap_fail_all1581,43757 -bool Yap_execute_pred(PredEntry *ppe, CELL *pt, bool pass_ex USES_REGS) {Yap_execute_pred1625,44753 -bool Yap_execute_goal(Term t, int nargs, Term mod, bool pass_ex) {Yap_execute_goal1712,46845 -void Yap_trust_last(void) {Yap_trust_last1749,47801 -Term Yap_RunTopGoal(Term t, bool handle_errors) {Yap_RunTopGoal1767,48113 -static void do_restore_regs(Term t, int restore_all USES_REGS) {do_restore_regs1843,50192 -static Int restore_regs(USES_REGS1) {restore_regs1862,50751 -static Int restore_regs2(USES_REGS1) {restore_regs21877,51110 -static Int clean_ifcp(USES_REGS1) {clean_ifcp1928,52125 -static int disj_marker(yamop *apc) {disj_marker1960,52769 -static Int cut_up_to_next_disjunction(USES_REGS1) {cut_up_to_next_disjunction1966,52910 -bool Yap_Reset(yap_reset_t mode) {Yap_Reset1990,53398 -bool is_cleanup_cp(choiceptr cp_b) {is_cleanup_cp2015,54028 -static Int JumpToEnv() {JumpToEnv2032,54421 -bool Yap_JumpToEnv(Term t) {Yap_JumpToEnv2089,56185 -static Int jump_env(USES_REGS1) {jump_env2100,56441 -static Int generate_pred_info(USES_REGS1) {generate_pred_info2132,57498 -void Yap_InitYaamRegs(int myworker_id) {Yap_InitYaamRegs2139,57693 -Term Yap_GetException(void) {Yap_GetException2229,60700 -Term Yap_PeekException(void) { return Yap_FetchTermFromDB(LOCAL_BallTerm); }Yap_PeekException2240,60871 -bool Yap_RaiseException(void) {Yap_RaiseException2242,60949 -bool Yap_PutException(Term t) {Yap_PutException2248,61054 -bool Yap_ResetException(int wid) {Yap_ResetException2256,61198 -static Int reset_exception(USES_REGS1) { return Yap_ResetException(worker_id); }reset_exception2264,61403 -static Int get_exception(USES_REGS1) {get_exception2266,61485 -int Yap_dogc(int extra_args, Term *tp USES_REGS) {Yap_dogc2273,61619 -void Yap_InitExecFs(void) {Yap_InitExecFs2297,62135 - -C/exo.c,2305 -#define MAX_ARITY MAX_ARITY49,1295 -#define FNV32_PRIME FNV32_PRIME52,1338 -#define FNV32_OFFSET FNV32_OFFSET53,1371 -#define FNV_PRIME FNV_PRIME54,1407 -#define FNV_OFFSET FNV_OFFSET55,1437 -#define FNV64_PRIME FNV64_PRIME57,1491 -#define FNV64_OFFSET FNV64_OFFSET59,1550 -#define FNV64_OFFSET FNV64_OFFSET61,1603 -#define FNV_PRIME FNV_PRIME63,1656 -#define FNV_OFFSET FNV_OFFSET64,1686 -inline BITS32 rotl32 ( BITS32 x, int8_t r )rotl3270,1834 -#define ROTL32(ROTL3274,1919 -inline BITS32 fmix32 ( BITS32 h )fmix3279,2128 -HASH_MURMUR3_32 (UInt arity, CELL *cl, UInt bnds[], UInt sz)HASH_MURMUR3_3294,2460 -#define DJB2_OFFSET DJB2_OFFSET140,3195 -HASH_DJB2(UInt arity, CELL *cl, UInt bnds[], UInt sz)HASH_DJB2146,3329 -HASH_RS(UInt arity, CELL *cl, UInt bnds[], UInt sz)HASH_RS173,3845 -HASH_FVN_1A(UInt arity, CELL *cl, UInt bnds[], UInt sz)HASH_FVN_1A207,4491 -# define HASH(HASH232,4913 -# define HASH(HASH234,4989 -# define HASH(HASH236,5061 -# define HASH(HASH239,5136 -# define HASH1(HASH1240,5180 -NEXT(UInt arity, CELL *cl, UInt bnds[], UInt sz, BITS32 hash)NEXT244,5251 -MATCH(CELL *clp, CELL *kvp, UInt arity, UInt bnds[])MATCH256,5491 -ADD_TO_TRY_CHAIN(CELL *kvp, CELL *cl, struct index_t *it)ADD_TO_TRY_CHAIN268,5682 -INSERT(CELL *cl, struct index_t *it, UInt arity, UInt base, UInt bnds[])INSERT302,6606 -LOOKUP(struct index_t *it, UInt arity, UInt j, UInt bnds[])LOOKUP334,7403 -fill_hash(UInt bmap, struct index_t *it, UInt bnds[])fill_hash363,8118 -add_index(struct index_t **ip, UInt bmap, PredEntry *ap, UInt count)add_index389,8713 -Yap_ExoLookup(PredEntry *ap USES_REGS)Yap_ExoLookup524,12674 -Yap_NextExo(choiceptr cptr, struct index_t *it)Yap_NextExo573,13732 -exodb_get_space( Term t, Term mod, Term tn )exodb_get_space584,14040 -YAP_NewExo( PredEntry *ap, size_t data, struct udi_info *udi)YAP_NewExo659,16028 -p_exodb_get_space( USES_REGS1 )p_exodb_get_space700,17253 -#define DerefAndCheck(DerefAndCheck710,17497 -store_exo(yamop *pc, UInt arity, Term t0)store_exo714,17644 -YAP_AssertTuples( PredEntry *pe, const Term *ts, size_t offset, size_t m)YAP_AssertTuples732,17960 -exoassert( void *handle, Int n, Term term )exoassert745,18351 -p_exoassert( USES_REGS1 )p_exoassert757,18693 -Yap_InitExoPreds(void)Yap_InitExoPreds778,19163 - -C/exo_udi.c,1736 -compar(const void *ip0, const void *jp0) {compar39,1029 -cmp_extra_args(CELL *si, CELL *sj, struct index_t *it)cmp_extra_args49,1385 -compar2(const void *ip0, const void *jp0) {compar271,1787 -compare(const BITS32 *ip, Int j USES_REGS) {compare84,2171 -static UInt free_args(UInt b[], UInt arity, UInt i) {free_args90,2364 -NEXT_DIFFERENT(BITS32 *pt0, BITS32 *pte, struct index_t *it)NEXT_DIFFERENT102,2553 -PREV_DIFFERENT(BITS32 *pt0, BITS32 *pte, struct index_t *it)PREV_DIFFERENT117,2849 -NEXT_MIN(BITS32 *pt0, BITS32 *pte, Term tmin, Term tmax, struct index_t *it)NEXT_MIN132,3145 -NEXT_MAX(BITS32 *pt0, BITS32 *pte, Term tmin, Term tmax, struct index_t *it)NEXT_MAX162,3767 -IntervalUDIRefitIndex(struct index_t **ip, UInt b[] USES_REGS)IntervalUDIRefitIndex192,4386 - binary_search(BITS32 *start, BITS32 *end, Int x USES_REGS)binary_search274,6771 -Interval(struct index_t *it, Term min, Term max, Term op, BITS32 off USES_REGS)Interval292,7111 -IntervalEnterUDIIndex(struct index_t *it USES_REGS)IntervalEnterUDIIndex474,11896 -IntervalRetryUDIIndex(struct index_t *it USES_REGS)IntervalRetryUDIIndex502,12743 -static struct udi_control_block IntervalCB;IntervalCB539,13571 -typedef struct exo_udi_access_t {exo_udi_access_t541,13616 - CRefitExoIndex refit;refit542,13650 - CRefitExoIndex refit;exo_udi_access_t::refit542,13650 -} exo_udi_encaps_t;exo_udi_encaps_t543,13674 -static struct exo_udi_access_t ExoCB;ExoCB545,13695 -IntervalUdiInit (Term spec, int arg, int arity) {IntervalUdiInit548,13748 -IntervalUdiInsert (void *control,IntervalUdiInsert554,13879 -static int IntervalUdiDestroy(void *control)IntervalUdiDestroy567,14220 -void Yap_udi_Interval_init(void) {Yap_udi_Interval_init574,14287 - -C/fail_absmi_insts.h,0 - -C/flags.c,4041 -#define INIT_FLAGS INIT_FLAGS26,659 -#define YAP_FLAG(YAP_FLAG67,1739 -#define GZERO_FLAG GZERO_FLAG70,1861 -#define LZERO_FLAG LZERO_FLAG72,1978 -static flag_info global_flags_setup[] = {global_flags_setup75,2096 -static flag_info local_flags_setup[] = {local_flags_setup79,2182 -static Term indexer(Term inp) {indexer83,2267 -static bool dqf1(ModEntry *new, Term t2 USES_REGS) {dqf198,2731 -static bool dqf(Term t2) {dqf128,3782 -static bool bqf1(ModEntry *new, Term t2 USES_REGS) {bqf1134,3912 -static Term isaccess(Term inp) {isaccess162,4841 -static Term stream(Term inp) {stream176,5226 -static bool set_error_stream(Term inp) {set_error_stream186,5496 -static bool set_input_stream(Term inp) {set_input_stream194,5767 -static bool set_output_stream(Term inp) {set_output_stream202,6018 -static Term isground(Term inp) {isground210,6292 -static Term flagscope(Term inp) {flagscope214,6377 -static bool mkprompt(Term inp) {mkprompt228,6779 -static bool getenc(Term inp) {getenc242,7140 -static bool typein(Term inp) {typein267,7713 -static Term list_option(Term inp) {list_option437,15409 -static bool agc_threshold(Term t) {agc_threshold480,16556 -static bool gc_margin(Term t) {gc_margin500,17059 -static Term mk_argc_list(USES_REGS1) {mk_argc_list520,17572 -static Term mk_os_argc_list(USES_REGS1) {mk_os_argc_list561,18804 -static Term argv(Term inp) {argv571,19026 -static Term os_argv(Term inp) {os_argv576,19106 -GetFlagProp(Atom a) { /* look property list of atom a for kind */GetFlagProp582,19211 -static void initFlag(flag_info *f, int fnum, bool global) {initFlag596,19528 -static Term executable(Term inp) {executable620,20299 -static Term sys_thread_id(Term inp) {sys_thread_id625,20397 -static Term sys_pid(Term inp) {sys_pid641,20681 -static bool setYapFlagInModule(Term tflag, Term t2, Term mod) {setYapFlagInModule653,20857 -static Term getYapFlagInModule(Term tflag, Term mod) {getYapFlagInModule732,23118 -static Int cont_yap_flag(USES_REGS1) {cont_yap_flag775,24385 -static Int yap_flag(USES_REGS1) {yap_flag820,25716 -static Int cont_prolog_flag(USES_REGS1) {cont_prolog_flag860,26687 -static Int prolog_flag(USES_REGS1) {prolog_flag894,27705 -static Int cont_current_prolog_flag(USES_REGS1) {cont_current_prolog_flag909,28074 -static Int current_prolog_flag(USES_REGS1) {current_prolog_flag932,28741 -static Int current_prolog_flag2(USES_REGS1) {current_prolog_flag2951,29261 -void Yap_setModuleFlags(ModEntry *new, ModEntry *cme) {Yap_setModuleFlags985,30047 -bool setYapFlag(Term tflag, Term t2) {setYapFlag1002,30636 -Term Yap_UnknownFlag(Term mod) {Yap_UnknownFlag1067,32358 -Term getYapFlag(Term tflag) {getYapFlag1081,32677 -static Int set_prolog_flag(USES_REGS1) {set_prolog_flag1135,34092 -static Int source(USES_REGS1) {source1150,34550 -static Int no_source(USES_REGS1) {no_source1161,34734 -static Int source_mode(USES_REGS1) {source_mode1175,35105 -static bool setInitialValue(bool bootstrap, flag_func f, const char *s,setInitialValue1187,35425 -#define PROLOG_FLAG_PROPERTY_DEFS(PROLOG_FLAG_PROPERTY_DEFS1347,39230 -#define PAR(PAR1354,39685 -typedef enum prolog_flag_property_enum_choices {prolog_flag_property_enum_choices1356,39712 - PROLOG_FLAG_PROPERTY_DEFS()PROLOG_FLAG_PROPERTY_DEFS1357,39761 -} prolog_flag_property_choices_t;prolog_flag_property_choices_t1358,39791 -#undef PARPAR1360,39826 -#define PAR(PAR1362,39838 -static const param2_t prolog_flag_property_defs[] = {prolog_flag_property_defs1365,39937 -#undef PARPAR1367,40025 -do_prolog_flag_property(Term tflag,do_prolog_flag_property1370,40048 -static Int cont_prolog_flag_property(USES_REGS1) { /* current_prolog_flag */cont_prolog_flag_property1448,42762 -static Int prolog_flag_property(USES_REGS1) { /* Init current_prolog_flag */prolog_flag_property1491,44122 -static void newFlag(Term fl, Term val) {newFlag1517,44873 -static Int do_create_prolog_flag(USES_REGS1) {do_create_prolog_flag1534,45243 -void Yap_InitFlags(bool bootstrap) {Yap_InitFlags1603,47201 - -C/fli_absmi_insts.h,0 - -C/globals.c,6574 -static char SccsId[] = "%W% %G%";SccsId18,614 -#define QUEUE_FUNCTOR_ARITY QUEUE_FUNCTOR_ARITY128,4488 -#define QUEUE_ARENA QUEUE_ARENA130,4519 -#define QUEUE_HEAD QUEUE_HEAD131,4541 -#define QUEUE_TAIL QUEUE_TAIL132,4562 -#define QUEUE_SIZE QUEUE_SIZE133,4583 -#define HEAP_FUNCTOR_MIN_ARITYHEAP_FUNCTOR_MIN_ARITY135,4605 -#define HEAP_SIZE HEAP_SIZE137,4637 -#define HEAP_MAX HEAP_MAX138,4657 -#define HEAP_ARENA HEAP_ARENA139,4676 -#define HEAP_START HEAP_START140,4697 -#define MIN_ARENA_SIZE MIN_ARENA_SIZE142,4719 -#define MAX_ARENA_SIZE MAX_ARENA_SIZE144,4751 -#define Global_MkIntegerTerm(Global_MkIntegerTerm146,4787 -static UInt big2arena_sz(CELL *arena_base) {big2arena_sz148,4837 -static UInt arena2big_sz(UInt sz) {arena2big_sz154,5045 -static inline CELL *ArenaLimit(Term arena) {ArenaLimit160,5210 -static inline CELL *ArenaPt(Term arena) { return (CELL *)RepAppl(arena); }ArenaPt167,5392 -static inline UInt ArenaSz(Term arena) { return big2arena_sz(RepAppl(arena)); }ArenaSz169,5468 -static Term CreateNewArena(CELL *ptr, UInt size) {CreateNewArena171,5549 -static Term NewArena(UInt size, int wid, UInt arity, CELL *where) {NewArena184,5870 -static Int p_allocate_arena(USES_REGS1) {p_allocate_arena210,6593 -static Int p_default_arena_size(USES_REGS1) {p_default_arena_size222,6945 -void Yap_AllocateDefaultArena(Int gsize, Int attsize, int wid) {Yap_AllocateDefaultArena226,7063 -static void adjust_cps(UInt size USES_REGS) {adjust_cps230,7190 -static int GrowArena(Term arena, CELL *pt, size_t old_size, size_t size,GrowArena239,7406 -CELL *Yap_GetFromArena(Term *arenap, UInt cells, UInt arity) {Yap_GetFromArena288,8850 -static void CloseArena(CELL *oldH, CELL *oldHB, CELL *oldASP, Term *oldArenaP,CloseArena316,9470 -static inline void clean_dirty_tr(tr_fr_ptr TR0 USES_REGS) {clean_dirty_tr329,9790 -static int copy_complex_term(register CELL *pt0, register CELL *pt0_end,copy_complex_term349,10214 -static Term CopyTermToArena(Term t, Term arena, bool share, bool copy_att_vars,CopyTermToArena648,18011 -static Term CreateTermInArena(Term arena, Atom Na, UInt Nar, UInt arity,CreateTermInArena828,22705 -inline static GlobalEntry *FindGlobalEntry(Atom at USES_REGS)FindGlobalEntry887,24221 -inline static GlobalEntry *GetGlobalEntry(Atom at USES_REGS)GetGlobalEntry911,24745 -static UInt garena_overflow_size(CELL *arena USES_REGS) {garena_overflow_size947,25621 -static Int p_nb_setarg(USES_REGS1) {p_nb_setarg956,25904 -static Int p_nb_set_shared_arg(USES_REGS1) {p_nb_set_shared_arg1003,26991 -static Int p_nb_linkarg(USES_REGS1) {p_nb_linkarg1045,28033 -static Int p_nb_linkval(USES_REGS1) {p_nb_linkval1079,28842 -static Int p_nb_create_accumulator(USES_REGS1) {p_nb_create_accumulator1097,29289 -static Int p_nb_add_to_accumulator(USES_REGS1) {p_nb_add_to_accumulator1127,30130 -static Int p_nb_accumulator_value(USES_REGS1) {p_nb_accumulator_value1208,32290 -Term Yap_SetGlobalVal(Atom at, Term t0) {Yap_SetGlobalVal1227,32711 -Term Yap_SaveTerm(Term t0) {Yap_SaveTerm1243,33121 -static Int p_nb_setval(USES_REGS1) {p_nb_setval1254,33387 -static Int p_nb_set_shared_val(USES_REGS1) {p_nb_set_shared_val1266,33698 -static Int p_b_setval(USES_REGS1) {p_b_setval1288,34331 -static int undefined_global(USES_REGS1) {undefined_global1322,35210 -static Int p_nb_getval(USES_REGS1) {p_nb_getval1333,35460 -Term Yap_GetGlobal(Atom at) {Yap_GetGlobal1361,36122 -static Int nbdelete(Atom at USES_REGS) {nbdelete1383,36522 -Int Yap_DeleteGlobal(Atom at) {Yap_DeleteGlobal1419,37363 -static Int p_nb_delete(USES_REGS1) {p_nb_delete1425,37445 -static Int p_nb_create(USES_REGS1) {p_nb_create1438,37747 -static Int p_nb_create2(USES_REGS1) {p_nb_create21482,38953 -static Int nb_queue(UInt arena_sz USES_REGS) {nb_queue1544,40533 -static Int p_nb_queue(USES_REGS1) {p_nb_queue1571,41264 -static Int p_nb_queue_sized(USES_REGS1) {p_nb_queue_sized1582,41569 -static CELL *GetQueue(Term t, char *caller) {GetQueue1595,41885 -static Term GetQueueArena(CELL *qd, char *caller) {GetQueueArena1613,42274 -static void RecoverArena(Term arena USES_REGS) {RecoverArena1631,42668 -static Int p_nb_queue_close(USES_REGS1) {p_nb_queue_close1639,42812 -static Int p_nb_queue_enqueue(USES_REGS1) {p_nb_queue_enqueue1666,43520 -static Int p_nb_queue_dequeue(USES_REGS1) {p_nb_queue_dequeue1731,45274 -static Int p_nb_queue_replace(USES_REGS1) {p_nb_queue_replace1757,45963 -static Int p_nb_queue_peek(USES_REGS1) {p_nb_queue_peek1779,46410 -static Int p_nb_queue_empty(USES_REGS1) {p_nb_queue_empty1791,46666 -static Int p_nb_queue_size(USES_REGS1) {p_nb_queue_size1799,46832 -static Int p_nb_queue_show(USES_REGS1) {p_nb_queue_show1807,46991 -static CELL *GetHeap(Term t, char *caller) {GetHeap1815,47150 -static Term MkZeroApplTerm(Functor f, UInt sz USES_REGS) {MkZeroApplTerm1829,47422 -static Int p_nb_heap(USES_REGS1) {p_nb_heap1846,47700 -static Int p_nb_heap_close(USES_REGS1) {p_nb_heap_close1887,48829 -static void PushHeap(CELL *pt, UInt off) {PushHeap1903,49213 -static void DelHeapRoot(CELL *pt, UInt sz) {DelHeapRoot1920,49617 -static Int p_nb_heap_add_to_heap(USES_REGS1) {p_nb_heap_add_to_heap1955,50497 -static Int p_nb_heap_del(USES_REGS1) {p_nb_heap_del2056,53395 -static Int p_nb_heap_peek(USES_REGS1) {p_nb_heap_peek2083,54041 -static Int p_nb_heap_empty(USES_REGS1) {p_nb_heap_empty2098,54357 -static Int p_nb_heap_size(USES_REGS1) {p_nb_heap_size2106,54519 -static Int p_nb_beam(USES_REGS1) {p_nb_beam2114,54674 -static Int p_nb_beam_close(USES_REGS1) { return p_nb_heap_close(PASS_REGS1); }p_nb_beam_close2154,55802 -static void PushBeam(CELL *pt, CELL *npt, UInt hsize, Term key, Term to) {PushBeam2161,55978 -static void DelBeamMax(CELL *pt, CELL *pt2, UInt sz) {DelBeamMax2205,57193 -static Term DelBeamMin(CELL *pt, CELL *pt2, UInt sz) {DelBeamMin2279,59279 -static Int p_nb_beam_add_to_beam(USES_REGS1) {p_nb_beam_add_to_beam2353,61387 -static Int p_nb_beam_del(USES_REGS1) {p_nb_beam_del2422,63350 -static Int p_nb_beam_check(USES_REGS1) {p_nb_beam_check2450,64057 -static Int p_nb_beam_keys(USES_REGS1) {p_nb_beam_keys2495,65277 -static Int p_nb_beam_peek(USES_REGS1) {p_nb_beam_peek2528,65972 -static Int p_nb_beam_empty(USES_REGS1) {p_nb_beam_empty2546,66375 -static Int p_nb_beam_size(USES_REGS1) {p_nb_beam_size2554,66537 -static Int cont_current_nb(USES_REGS1) {cont_current_nb2564,66700 -static Int init_current_nb(USES_REGS1) { /* current_atom(?Atom) */init_current_nb2581,67069 -void Yap_InitGlobals(void) {Yap_InitGlobals2600,67574 - -C/gmp_support.c,5471 -MkBigAndClose(MP_INT *new)MkBigAndClose30,740 -MkRatAndClose(MP_RAT *new)MkRatAndClose41,934 -Yap_gmp_add_ints(Int i, Int j)Yap_gmp_add_ints53,1157 -Yap_gmp_sub_ints(Int i, Int j)Yap_gmp_sub_ints72,1498 -Yap_gmp_mul_ints(Int i, Int j)Yap_gmp_mul_ints95,1910 -Yap_gmp_sll_ints(Int i, Int j)Yap_gmp_sll_ints105,2053 -Yap_gmp_add_int_big(Int i, Term t)Yap_gmp_add_int_big116,2241 -Yap_gmp_set_bit(Int i, Term t)Yap_gmp_set_bit137,2704 -Yap_gmp_sub_int_big(Int i, Term t)Yap_gmp_sub_int_big145,2844 -Yap_gmp_mul_int_big(Int i, Term t)Yap_gmp_mul_int_big168,3310 -Yap_gmp_sub_big_int(Term t, Int i)Yap_gmp_sub_big_int191,3776 -Yap_gmp_div_int_big(Int i, Term t)Yap_gmp_div_int_big215,4267 -Yap_gmp_div_big_int(Term t, Int i)Yap_gmp_div_big_int234,4629 -Yap_gmp_div2_big_int(Term t, Int i)Yap_gmp_div2_big_int277,5625 -Yap_gmp_and_int_big(Int i, Term t)Yap_gmp_and_int_big308,6335 -Yap_gmp_ior_int_big(Int i, Term t)Yap_gmp_ior_int_big325,6673 -mpz_xor(MP_INT *new, MP_INT *r1, MP_INT *r2)mpz_xor344,7054 -Yap_gmp_xor_int_big(Int i, Term t)Yap_gmp_xor_int_big364,7388 -Yap_gmp_sll_big_int(Term t, Int i)Yap_gmp_sll_big_int381,7720 -Yap_gmp_add_big_big(Term t1, Term t2)Yap_gmp_add_big_big420,8494 -Yap_gmp_sub_big_big(Term t1, Term t2)Yap_gmp_sub_big_big457,9303 -Yap_gmp_mul_big_big(Term t1, Term t2)Yap_gmp_mul_big_big494,10112 -Yap_gmp_div_big_big(Term t1, Term t2)Yap_gmp_div_big_big538,11085 -Yap_gmp_div2_big_big(Term t1, Term t2)Yap_gmp_div2_big_big580,12025 -Yap_gmp_and_big_big(Term t1, Term t2)Yap_gmp_and_big_big617,12838 -Yap_gmp_ior_big_big(Term t1, Term t2)Yap_gmp_ior_big_big638,13339 -Yap_gmp_xor_big_big(Term t1, Term t2)Yap_gmp_xor_big_big659,13842 -Yap_gmp_mod_big_big(Term t1, Term t2)Yap_gmp_mod_big_big680,14345 -Yap_gmp_mod_big_int(Term t, Int i2)Yap_gmp_mod_big_int701,14839 -Yap_gmp_mod_int_big(Int i1, Term t)Yap_gmp_mod_int_big717,15152 -Yap_gmp_rem_big_big(Term t1, Term t2)Yap_gmp_rem_big_big757,15913 -Yap_gmp_rem_big_int(Term t, Int i2)Yap_gmp_rem_big_int778,16407 -Yap_gmp_rem_int_big(Int i1, Term t)Yap_gmp_rem_int_big794,16720 -Yap_gmp_gcd_big_big(Term t1, Term t2)Yap_gmp_gcd_big_big807,16962 -Yap_gmp_gcd_int_big(Int i, Term t)Yap_gmp_gcd_int_big828,17463 -Yap_gmp_float_to_big(Float v)Yap_gmp_float_to_big847,17898 -Yap_gmp_to_float(Term t)Yap_gmp_to_float856,18011 -Yap_gmp_add_float_big(Float d, Term t)Yap_gmp_add_float_big869,18236 -Yap_gmp_sub_float_big(Float d, Term t)Yap_gmp_sub_float_big883,18518 -Yap_gmp_sub_big_float(Term t, Float d)Yap_gmp_sub_big_float897,18800 -Yap_gmp_mul_float_big(Float d, Term t)Yap_gmp_mul_float_big911,19082 -Yap_gmp_fdiv_float_big(Float d, Term t)Yap_gmp_fdiv_float_big925,19364 -Yap_gmp_fdiv_big_float(Term t, Float d)Yap_gmp_fdiv_big_float939,19647 -Yap_gmp_exp_int_int(Int i1, Int i2)Yap_gmp_exp_int_int953,19930 -Yap_gmp_exp_big_int(Term t, Int i)Yap_gmp_exp_big_int963,20102 -Yap_gmp_exp_int_big(Int i, Term t)Yap_gmp_exp_int_big990,20646 -Yap_gmp_exp_big_big(Term t1, Term t2)Yap_gmp_exp_big_big1004,20929 -Yap_gmp_big_from_64bits(YAP_LONG_LONG i)Yap_gmp_big_from_64bits1030,21505 -Yap_gmq_rdiv_int_int(Int i1, Int i2)Yap_gmq_rdiv_int_int1047,21826 -Yap_gmq_rdiv_int_big(Int i1, Term t2)Yap_gmq_rdiv_int_big1062,22043 -Yap_gmq_rdiv_big_int(Term t1, Int i2)Yap_gmq_rdiv_big_int1084,22473 -Yap_gmq_rdiv_big_big(Term t1, Term t2)Yap_gmq_rdiv_big_big1108,22905 -Yap_gmp_fdiv_int_big(Int i1, Term t2)Yap_gmp_fdiv_int_big1139,23509 -Yap_gmp_fdiv_big_int(Term t2, Int i1)Yap_gmp_fdiv_big_int1166,23974 -Yap_gmp_fdiv_big_big(Term t1, Term t2)Yap_gmp_fdiv_big_big1193,24439 -Yap_gmp_cmp_big_int(Term t, Int i)Yap_gmp_cmp_big_int1225,25023 -Yap_gmp_cmp_int_big(Int i, Term t)Yap_gmp_cmp_int_big1238,25266 -Yap_gmp_cmp_big_float(Term t, Float d)Yap_gmp_cmp_big_float1251,25511 -Yap_gmp_cmp_big_big(Term t1, Term t2)Yap_gmp_cmp_big_big1269,25836 -Yap_gmp_tcmp_big_int(Term t, Int i)Yap_gmp_tcmp_big_int1309,26655 -Yap_gmp_tcmp_int_big(Int i, Term t)Yap_gmp_tcmp_int_big1321,26847 -Yap_gmp_tcmp_big_float(Term t, Float d)Yap_gmp_tcmp_big_float1333,27039 -Yap_gmp_tcmp_big_big(Term t1, Term t2)Yap_gmp_tcmp_big_big1339,27101 -Yap_gmp_neg_int(Int i)Yap_gmp_neg_int1371,27746 -Yap_gmp_neg_big(Term t)Yap_gmp_neg_big1381,27881 -Yap_gmp_float_to_rational(Float dbl)Yap_gmp_float_to_rational1400,28245 -#define DBL_EPSILON DBL_EPSILON1420,28922 -Yap_gmp_float_rationalize(Float dbl)Yap_gmp_float_rationalize1424,28978 -Yap_gmp_abs_big(Term t)Yap_gmp_abs_big1450,29518 -Yap_gmp_unot_big(Term t)Yap_gmp_unot_big1469,29882 -Yap_gmp_floor(Term t)Yap_gmp_floor1484,30170 -Yap_gmp_ceiling(Term t)Yap_gmp_ceiling1502,30512 -Yap_gmp_round(Term t)Yap_gmp_round1520,30856 -Yap_gmp_trunc(Term t)Yap_gmp_trunc1547,31340 -Yap_gmp_float_fractional_part(Term t)Yap_gmp_float_fractional_part1570,31712 -Yap_gmp_float_integer_part(Term t)Yap_gmp_float_integer_part1590,32168 -Yap_gmp_sign(Term t)Yap_gmp_sign1608,32541 -Yap_gmp_lsb(Term t)Yap_gmp_lsb1620,32763 -Yap_gmp_msb(Term t)Yap_gmp_msb1637,33145 -Yap_gmp_popcount(Term t)Yap_gmp_popcount1654,33537 -Yap_mpz_to_string( MP_INT *b, char *s, size_t sz, int base)Yap_mpz_to_string1671,33938 -Yap_gmp_to_string(Term t, char *s, size_t sz, int base)Yap_gmp_to_string1684,34169 -Yap_gmp_to_size(Term t, int base)Yap_gmp_to_size1724,35012 -Yap_term_to_existing_big(Term t, MP_INT *b)Yap_term_to_existing_big1740,35352 -Yap_term_to_existing_rat(Term t, MP_RAT *b)Yap_term_to_existing_rat1758,35680 - -C/gprof.c,5732 -static char SccsId[] = "%W% %G%";SccsId86,2429 -#define __USE_GNU__USE_GNU91,2523 -typedef greg_t context_reg;context_reg95,2565 -#define CONTEXT_PC(CONTEXT_PC96,2593 -#define CONTEXT_BP(CONTEXT_BP97,2664 -typedef greg_t context_reg;context_reg104,2807 -#define CONTEXT_PC(CONTEXT_PC105,2835 -#define CONTEXT_BP(CONTEXT_BP106,2906 -#define CONTEXT_REG(CONTEXT_REG114,3178 -#define CONTEXT_REG(CONTEXT_REG116,3209 -#define CONTEXT_STATE(CONTEXT_STATE119,3246 -#define CONTEXT_PC(CONTEXT_PC120,3327 -#define CONTEXT_BP(CONTEXT_BP121,3389 -#define CONTEXT_REG(CONTEXT_REG129,3651 -#define CONTEXT_REG(CONTEXT_REG131,3682 -#define CONTEXT_STATE(CONTEXT_STATE134,3719 -#define CONTEXT_PC(CONTEXT_PC135,3800 -#define CONTEXT_BP(CONTEXT_BP136,3862 -#define CONTEXT_FAULTING_ADDRESS CONTEXT_FAULTING_ADDRESS137,3924 -#define CONTEXT_PC(CONTEXT_PC141,3990 -#define CONTEXT_BP(CONTEXT_BP142,4019 -#undef LOW_PROFLOW_PROF144,4064 -#define TIMER_DEFAULT TIMER_DEFAULT169,4339 -#define PROFILING_FILE PROFILING_FILE170,4365 -#define PROFPREDS_FILE PROFPREDS_FILE171,4390 - char tag;tag174,4433 - char tag;__anon12::tag174,4433 - void *ptr;ptr175,4445 - void *ptr;__anon12::ptr175,4445 -} __attribute__ ((packed)) buf_ptr;buf_ptr176,4458 - gprof_info inf;inf179,4513 - gprof_info inf;__anon13::inf179,4513 - void *end;end180,4531 - void *end;__anon13::end180,4531 - PredEntry *pe;pe181,4545 - PredEntry *pe;__anon13::pe181,4545 -} __attribute__ ((packed)) buf_extra;buf_extra182,4562 -typedef struct RB_red_blk_node {RB_red_blk_node184,4603 - yamop *key; /* first address */key185,4636 - yamop *key; /* first address */RB_red_blk_node::key185,4636 - yamop *lim; /* end address */lim186,4670 - yamop *lim; /* end address */RB_red_blk_node::lim186,4670 - PredEntry *pe; /* parent predicate */pe187,4702 - PredEntry *pe; /* parent predicate */RB_red_blk_node::pe187,4702 - gprof_info source; /* how block was allocated */source188,4742 - gprof_info source; /* how block was allocated */RB_red_blk_node::source188,4742 - UInt pcs; /* counter with total for each clause */pcs189,4793 - UInt pcs; /* counter with total for each clause */RB_red_blk_node::pcs189,4793 - int red; /* if red=0 then the node is black */red190,4847 - int red; /* if red=0 then the node is black */RB_red_blk_node::red190,4847 - struct RB_red_blk_node* left;left191,4896 - struct RB_red_blk_node* left;RB_red_blk_node::left191,4896 - struct RB_red_blk_node* right;right192,4928 - struct RB_red_blk_node* right;RB_red_blk_node::right192,4928 - struct RB_red_blk_node* parent;parent193,4961 - struct RB_red_blk_node* parent;RB_red_blk_node::parent193,4961 -} rb_red_blk_node;rb_red_blk_node194,4995 -RBMalloc(UInt size)RBMalloc199,5042 -RBfree(rb_red_blk_node *ptr)RBfree205,5121 -RBTreeCreate(void) {RBTreeCreate211,5201 -LeftRotate(rb_red_blk_node* x) {LeftRotate253,6587 -RightRotate(rb_red_blk_node* y) {RightRotate309,8550 -TreeInsertHelp(rb_red_blk_node* z) {TreeInsertHelp361,10428 -RBTreeInsert(yamop *key, yamop *lim) {RBTreeInsert412,12055 -RBExactQuery(yamop* q) {RBExactQuery483,13886 -RBLookup(yamop *entry) {RBLookup503,14294 -static void RBDeleteFixUp(rb_red_blk_node* x) {RBDeleteFixUp538,15276 -TreeSuccessor(rb_red_blk_node* x) { TreeSuccessor617,17115 -RBDelete(rb_red_blk_node* z){RBDelete655,18256 -char *set_profile_dir(char *name){set_profile_dir707,19578 -char *profile_names(int k) {profile_names730,20237 -void del_profile_files() {del_profile_files752,20777 -Yap_inform_profiler_of_clause__(void *code_start, void *code_end, PredEntry *pe,gprof_info index_code) {Yap_inform_profiler_of_clause__760,20932 -typedef struct clause_entry {clause_entry774,21285 - yamop *beg, *end;beg775,21315 - yamop *beg, *end;clause_entry::beg775,21315 - yamop *beg, *end;end775,21315 - yamop *beg, *end;clause_entry::end775,21315 - PredEntry *pp;pp776,21335 - PredEntry *pp;clause_entry::pp776,21335 - UInt pcs; /* counter with total for each clause */pcs777,21352 - UInt pcs; /* counter with total for each clause */clause_entry::pcs777,21352 - UInt pca; /* counter with total for each predicate (repeated for each clause)*/ pca778,21406 - UInt pca; /* counter with total for each predicate (repeated for each clause)*/ clause_entry::pca778,21406 - int ts; /* start end timestamp towards retracts, eventually */ts779,21491 - int ts; /* start end timestamp towards retracts, eventually */clause_entry::ts779,21491 -} clauseentry;clauseentry780,21559 -clean_tree(rb_red_blk_node* node) {clean_tree785,21623 -reset_tree(void) {reset_tree794,21808 -InitProfTree(void)InitProfTree802,22096 -static void RemoveCode(CODEADDR clau)RemoveCode815,22386 -showprofres( USES_REGS1 ) { showprofres845,23081 -#define TestMode TestMode931,24853 -prof_alrm(int signo, siginfo_t *si, void *scv)prof_alrm935,24983 -Yap_InformOfRemoval(void *clau)Yap_InformOfRemoval1000,26390 -profnode( USES_REGS1 ) {profnode1019,26743 -profglobs( USES_REGS1 ) {profglobs1055,27742 -do_profinit( USES_REGS1 )do_profinit1067,28179 -static Int profinit( USES_REGS1 )profinit1079,28532 -static Int start_profilers(int msec)start_profilers1090,28746 -static Int profoff( USES_REGS1 ) {profoff1115,29306 -static Int ProfOn( USES_REGS1 ) { ProfOn1130,29607 -static Int ProfOn0( USES_REGS1 ) { ProfOn01137,29738 -static Int profison( USES_REGS1 ) {profison1142,29844 -static Int profalt( USES_REGS1 ) { profalt1146,29917 -static Int profend( USES_REGS1 ) profend1152,30089 -static Int getpredinfo( USES_REGS1 ) getpredinfo1162,30322 -static Int profres0( USES_REGS1 ) { profres01198,31277 -Yap_InitLowProf(void)Yap_InitLowProf1205,31382 - -C/grow.c,4920 -#define strncat(strncat34,881 - STACK_SHIFTING = 0,STACK_SHIFTING38,946 - STACK_COPYING = 1,STACK_COPYING39,968 - STACK_INCREMENTAL_COPYING = 2STACK_INCREMENTAL_COPYING40,989 -} what_stack_copying;what_stack_copying41,1021 -LeaveGrowMode(prolog_exec_mode grow_mode)LeaveGrowMode71,2060 -cpcellsd(register CELL *Dest, register CELL *Org, CELL NOf)cpcellsd79,2167 -SetHeapRegs(bool copying_threads USES_REGS)SetHeapRegs92,2411 -MoveLocalAndTrail( USES_REGS1 )MoveLocalAndTrail184,5067 -CopyLocalAndTrail( USES_REGS1 )CopyLocalAndTrail197,5402 -IncrementalCopyStacksFromWorker( USES_REGS1 )IncrementalCopyStacksFromWorker206,5625 -worker_p_binding(int worker_p, CELL *aux_ptr)worker_p_binding221,6194 -RestoreTrail(int worker_p USES_REGS)RestoreTrail237,6595 -MoveGlobal( USES_REGS1 )MoveGlobal293,8462 -MoveExpandedGlobal( USES_REGS1 )MoveExpandedGlobal303,8704 -MoveGlobalWithHole( USES_REGS1 )MoveGlobalWithHole313,8981 -MoveHalfGlobal(CELL *OldPt USES_REGS)MoveHalfGlobal327,9437 -AdjustAppl(register CELL t0 USES_REGS)AdjustAppl340,9754 -AdjustPair(register CELL t0 USES_REGS)AdjustPair360,10216 -AdjustTrail(bool adjusting_heap, bool thread_copying USES_REGS)AdjustTrail377,10624 -fixPointerCells(CELL *pt, CELL *pt_bot, bool thread_copying USES_REGS)fixPointerCells435,12215 -AdjustSlots(bool thread_copying USES_REGS)AdjustSlots458,12755 -AdjustLocal(bool thread_copying USES_REGS)AdjustLocal466,12951 -AdjustGlobTerm(Term reg USES_REGS)AdjustGlobTerm487,13434 -static volatile CELL *cpt=NULL, *ocpt = NULL;cpt505,13883 -static volatile CELL *cpt=NULL, *ocpt = NULL;ocpt505,13883 -AdjustGlobal(Int sz, bool thread_copying USES_REGS)AdjustGlobal508,13942 -AdjustStacksAndTrail(Int sz, bool copying_threads USES_REGS)AdjustStacksAndTrail658,17869 -Yap_AdjustStacksAndTrail(void)Yap_AdjustStacksAndTrail666,18077 -AdjustGrowStack( USES_REGS1 )AdjustGrowStack677,18314 -AdjustRegs(int n USES_REGS)AdjustRegs684,18450 -AdjustVarTable(VarEntry *ves USES_REGS)AdjustVarTable709,19010 -AdjustScannerStacks(TokEntry **tksp, VarEntry **vep USES_REGS)AdjustScannerStacks731,19632 -Yap_AdjustRegs(int n)Yap_AdjustRegs795,21079 -static_growheap(size_t esize, bool fix_code, struct intermediates *cip, tr_fr_ptr *old_trp, TokEntry **tksp, VarEntry **vep USES_REGS)static_growheap803,21212 -static_growglobal(size_t request, CELL **ptr, CELL *hsplit USES_REGS)static_growglobal885,23843 -fix_compiler_instructions(PInstr *pcpc USES_REGS)fix_compiler_instructions1071,29540 -fix_tabling_info( USES_REGS1 )fix_tabling_info1267,34136 -do_growheap(int fix_code, UInt in_size, struct intermediates *cip, tr_fr_ptr *old_trp, TokEntry **tksp, VarEntry **vep USES_REGS)do_growheap1294,34906 -init_new_table(AtomHashEntry *ntb, UInt nsize)init_new_table1346,36504 -cp_atom_table(AtomHashEntry *ntb, UInt nsize)cp_atom_table1357,36673 -growatomtable( USES_REGS1 )growatomtable1382,37206 -Yap_locked_growheap(bool fix_code, size_t in_size, void *cip)Yap_locked_growheap1437,38919 -Yap_growheap(bool fix_code, size_t in_size, void *cip)Yap_growheap1496,40368 -Yap_growheap_in_parser(tr_fr_ptr *old_trp, TokEntry **tksp, VarEntry **vep)Yap_growheap_in_parser1504,40507 -Yap_locked_growglobal(CELL **ptr)Yap_locked_growglobal1515,40728 -Yap_growglobal(CELL **ptr)Yap_growglobal1540,41358 -Yap_InsertInGlobal(CELL *where, size_t howmuch)Yap_InsertInGlobal1548,41453 -Yap_locked_growstack(size_t size)Yap_locked_growstack1561,41700 -Yap_growstack(size_t size)Yap_growstack1573,41884 -execute_growstack(size_t esize0, bool from_trail, bool in_parser, tr_fr_ptr *old_trp, TokEntry **tksp, VarEntry **vep USES_REGS)execute_growstack1585,42068 -growstack(size_t size USES_REGS)growstack1686,44812 -Yap_growstack_in_parser(tr_fr_ptr *old_trp, TokEntry **tksp, VarEntry **vep)Yap_growstack_in_parser1723,46263 -static int do_growtrail(size_t esize, bool contiguous_only, bool in_parser, tr_fr_ptr *old_trp, TokEntry **tksp, VarEntry **vep USES_REGS)do_growtrail1762,47805 -Yap_growtrail(size_t size, bool contiguous_only)Yap_growtrail1840,50453 -Yap_locked_growtrail(size_t size, bool contiguous_only)Yap_locked_growtrail1850,50682 -Yap_growtrail_in_parser(tr_fr_ptr *old_trp, TokEntry **tksp, VarEntry **vep)Yap_growtrail_in_parser1857,50841 -Yap_shift_visit(CELL **to_visit, CELL ***to_visit_maxp, CELL ***to_visit_base)Yap_shift_visit1864,51013 -p_inform_trail_overflows( USES_REGS1 )p_inform_trail_overflows1906,52467 -p_growheap( USES_REGS1 )p_growheap1916,52708 -p_inform_heap_overflows( USES_REGS1 )p_inform_heap_overflows1936,53191 -Yap_CopyThreadStacks(int worker_q, int worker_p, bool incremental)Yap_CopyThreadStacks1946,53425 -p_growstack( USES_REGS1 )p_growstack2061,58320 -p_inform_stack_overflows( USES_REGS1 )p_inform_stack_overflows2081,58770 -Yap_total_stack_shift_time(void)Yap_total_stack_shift_time2091,58990 -Yap_InitGrowPreds(void)Yap_InitGrowPreds2100,59158 - -C/heapgc.c,8373 -static char SccsId[] = "%W% %G%";SccsId18,611 -#define HYBRID_SCHEME HYBRID_SCHEME29,816 -#define DEBUG_printf0(DEBUG_printf031,841 -#define DEBUG_printf1(DEBUG_printf132,868 -#define DEBUG_printf20(DEBUG_printf2033,897 -#define DEBUG_printf21(DEBUG_printf2134,925 -typedef struct gc_mark_continuation {gc_mark_continuation64,2202 - CELL *v;v65,2240 - CELL *v;gc_mark_continuation::v65,2240 - int nof;nof66,2251 - int nof;gc_mark_continuation::nof66,2251 -} cont;cont67,2262 - db_entry,db_entry73,2375 - cl_entry,cl_entry74,2387 - lcl_entry,lcl_entry75,2399 - li_entry,li_entry76,2412 - dcl_entrydcl_entry77,2424 -} db_entry_type;db_entry_type78,2436 -typedef struct db_entry {db_entry80,2454 - CODEADDR val;val81,2480 - CODEADDR val;db_entry::val81,2480 - db_entry_type db_type;db_type82,2496 - db_entry_type db_type;db_entry::db_type82,2496 - int in_use;in_use83,2521 - int in_use;db_entry::in_use83,2521 - struct db_entry *left;left84,2535 - struct db_entry *left;db_entry::left84,2535 - CODEADDR lim;lim85,2560 - CODEADDR lim;db_entry::lim85,2560 - struct db_entry *right;right86,2576 - struct db_entry *right;db_entry::right86,2576 -} *dbentry;dbentry87,2602 -typedef struct RB_red_blk_node {RB_red_blk_node89,2615 - CODEADDR key;key90,2648 - CODEADDR key;RB_red_blk_node::key90,2648 - CODEADDR lim;lim91,2664 - CODEADDR lim;RB_red_blk_node::lim91,2664 - db_entry_type db_type;db_type92,2680 - db_entry_type db_type;RB_red_blk_node::db_type92,2680 - int in_use;in_use93,2705 - int in_use;RB_red_blk_node::in_use93,2705 - int red; /* if red=0 then the node is black */red94,2719 - int red; /* if red=0 then the node is black */RB_red_blk_node::red94,2719 - struct RB_red_blk_node* left;left95,2768 - struct RB_red_blk_node* left;RB_red_blk_node::left95,2768 - struct RB_red_blk_node* right;right96,2800 - struct RB_red_blk_node* right;RB_red_blk_node::right96,2800 - struct RB_red_blk_node* parent;parent97,2833 - struct RB_red_blk_node* parent;RB_red_blk_node::parent97,2833 -} rb_red_blk_node;rb_red_blk_node98,2867 -#undef LOCAL_cont_top0LOCAL_cont_top0101,2908 -#define LOCAL_cont_top0 LOCAL_cont_top0102,2931 -yamop * Yap_gcP(void) {Yap_gcP107,3033 -gc_growtrail(int committed, tr_fr_ptr begsTR, cont *old_cont_top0 USES_REGS)gc_growtrail115,3158 -PUSH_CONTINUATION(CELL *v, int nof USES_REGS) {PUSH_CONTINUATION142,3853 -#define POP_CONTINUATION(POP_CONTINUATION154,4083 -PUSH_POINTER(CELL *v USES_REGS) {PUSH_POINTER174,4666 -POP_POINTER( USES_REGS1 ) {POP_POINTER181,4811 -POPSWAP_POINTER(CELL_PTR *vp, CELL_PTR v USES_REGS) {POPSWAP_POINTER188,4931 -exchange(CELL_PTR * b, Int i, Int j)exchange203,5274 -partition(CELL *a[], Int p, Int r)partition212,5375 -insort(CELL *a[], Int p, Int q)insort245,5791 -quicksort(CELL *a[], Int p, Int r)quicksort266,6037 -#define PUSH_POINTER(PUSH_POINTER283,6293 -#define POP_POINTER(POP_POINTER284,6327 -#define POPSWAP_POINTER(POPSWAP_POINTER285,6361 -GC_MAVAR_HASH(CELL *addr) {GC_MAVAR_HASH299,6725 -GC_ALLOC_NEW_MASPACE( USES_REGS1 )GC_ALLOC_NEW_MASPACE308,6957 -gc_lookup_ma_var(CELL *addr, tr_fr_ptr trp USES_REGS) {gc_lookup_ma_var324,7383 -GC_NEW_MAHASH(gc_ma_hash_entry *top USES_REGS) {GC_NEW_MAHASH367,8535 -check_pr_trail( tr_fr_ptr rc USES_REGS)check_pr_trail393,9138 -push_registers(Int num_regs, yamop *nextop USES_REGS)push_registers410,9535 -pop_registers(Int num_regs, yamop *nextop USES_REGS)pop_registers509,11990 -count_cells_marked(void)count_cells_marked612,14548 -RBMalloc(UInt size USES_REGS)RBMalloc628,14792 -RBTreeCreate(void) {RBTreeCreate640,15039 -LeftRotate(rb_red_blk_node* x USES_REGS) {LeftRotate677,16299 -RightRotate(rb_red_blk_node* y USES_REGS) {RightRotate733,18260 -TreeInsertHelp(rb_red_blk_node* z USES_REGS) {TreeInsertHelp785,20136 -RBTreeInsert(CODEADDR key, CODEADDR end, db_entry_type db_type USES_REGS) {RBTreeInsert836,21743 -store_in_dbtable(CODEADDR entry, CODEADDR end, db_entry_type db_type USES_REGS)store_in_dbtable897,23168 -find_ref_in_dbtable(CODEADDR entry USES_REGS)find_ref_in_dbtable904,23370 -mark_ref_in_use(DBRef ref USES_REGS)mark_ref_in_use922,23774 -ref_in_use(DBRef ref USES_REGS)ref_in_use929,23918 -mark_db_fixed(CELL *ptr USES_REGS) {mark_db_fixed936,24059 -init_dbtable(tr_fr_ptr trail_ptr USES_REGS) {init_dbtable946,24244 - gc_var,gc_var1030,26773 - gc_ref,gc_ref1031,26783 - gc_atom,gc_atom1032,26793 - gc_int,gc_int1033,26804 - gc_num,gc_num1034,26814 - gc_list,gc_list1035,26824 - gc_appl,gc_appl1036,26835 - gc_func,gc_func1037,26846 - gc_suspgc_susp1038,26857 -} gc_types;gc_types1039,26867 -unsigned long chain[16];chain1040,26879 -unsigned long env_vars;env_vars1041,26904 -unsigned long vars[gc_susp+1];vars1042,26928 -unsigned long num_bs;num_bs1044,26960 -unsigned long old_vars, new_vars;old_vars1045,26982 -unsigned long old_vars, new_vars;new_vars1045,26982 -static CELL *TrueHB;TrueHB1047,27017 -inc_vars_of_type(CELL *curr,gc_types val) {inc_vars_of_type1050,27051 -put_type_info(unsigned long total)put_type_info1062,27265 -inc_var(CELL *current, CELL *next)inc_var1078,27969 -vsc_stop(void) {vsc_stop1110,28502 -check_global(void) {check_global1118,28575 -#define check_global(check_global1189,30423 -mark_variable(CELL_PTR current USES_REGS)mark_variable1195,30552 -Yap_mark_variable(CELL_PTR current)Yap_mark_variable1527,39179 -mark_code(CELL_PTR ptr, CELL *next USES_REGS)mark_code1534,39281 -mark_external_reference(CELL *ptr USES_REGS) {mark_external_reference1553,39787 -Yap_mark_external_reference(CELL *ptr) {Yap_mark_external_reference1574,40270 -mark_regs(tr_fr_ptr old_TR USES_REGS)mark_regs1580,40382 -mark_environments(CELL_PTR gc_ENV, size_t size, CELL *pvbmap USES_REGS)mark_environments1596,40772 -mark_trail(tr_fr_ptr trail_ptr, tr_fr_ptr trail_base, CELL *gc_H, choiceptr gc_B USES_REGS)mark_trail1716,44205 -#define init_substitution_pointer(init_substitution_pointer1947,51612 -youngest_cp(choiceptr gc_B, dep_fr_ptr *depfrp)youngest_cp1961,52157 -mark_choicepoints(register choiceptr gc_B, tr_fr_ptr saved_TR, bool very_verbose USES_REGS)mark_choicepoints1981,52518 -into_relocation_chain(CELL_PTR current, CELL_PTR next USES_REGS)into_relocation_chain2445,66145 -CleanDeadClauses( USES_REGS1 )CleanDeadClauses2462,66445 -sweep_trail(choiceptr gc_B, tr_fr_ptr old_TR USES_REGS)sweep_trail2529,67752 -sweep_environments(CELL_PTR gc_ENV, size_t size, CELL *pvbmap USES_REGS)sweep_environments2895,77402 -sweep_b(choiceptr gc_B, UInt arity USES_REGS)sweep_b2958,78931 -sweep_choicepoints(choiceptr gc_B USES_REGS)sweep_choicepoints2986,79613 -update_relocation_chain(CELL_PTR current, CELL_PTR dest USES_REGS)update_relocation_chain3342,89007 -update_B_H( choiceptr gc_B, CELL *current, CELL *dest, CELL *odestupdate_B_H3363,89456 -set_next_hb(choiceptr gc_B USES_REGS)set_next_hb3394,90171 -compact_heap( USES_REGS1 )compact_heap3408,90420 -icompact_heap( USES_REGS1 )icompact_heap3611,95329 -set_conditionals(tr_fr_ptr str USES_REGS) {set_conditionals3786,99673 -marking_phase(tr_fr_ptr old_TR, CELL *current_env, yamop *curp USES_REGS)marking_phase3804,100033 -sweep_oldgen(CELL *max, CELL *base USES_REGS)sweep_oldgen3832,100918 -compaction_phase(tr_fr_ptr old_TR, CELL *current_env, yamop *curp USES_REGS)compaction_phase3855,101340 -do_gc(Int predarity, CELL *current_env, yamop *nextop USES_REGS)do_gc3926,103315 -is_gc_verbose(void)is_gc_verbose4144,110096 -Yap_is_gc_verbose(void)Yap_is_gc_verbose4159,110365 -is_gc_very_verbose(void)is_gc_very_verbose4165,110432 -Yap_total_gc_time(void)Yap_total_gc_time4174,110572 -p_inform_gc( USES_REGS1 )p_inform_gc4181,110652 -call_gc(UInt gc_lim, Int predarity, CELL *current_env, yamop *nextop USES_REGS)call_gc4193,110931 -LeaveGCMode( USES_REGS1 )LeaveGCMode4254,112740 -Yap_gc(Int predarity, CELL *current_env, yamop *nextop)Yap_gc4267,113053 -Yap_locked_gc(Int predarity, CELL *current_env, yamop *nextop)Yap_locked_gc4275,113196 -Yap_gcl(UInt gc_lim, Int predarity, CELL *current_env, yamop *nextop)Yap_gcl4293,113630 -Yap_locked_gcl(UInt gc_lim, Int predarity, CELL *current_env, yamop *nextop)Yap_locked_gcl4310,113992 -p_gc( USES_REGS1 )p_gc4328,114368 -Yap_init_gc(void)Yap_init_gc4341,114620 -Yap_inc_mark_variable()Yap_inc_mark_variable4348,114734 - -C/index.c,12062 -static char SccsId[] = "%W% %G%";SccsId466,14365 -#define NULL NULL645,20249 -#define SET_JLBL(SET_JLBL653,20383 -#define SET_JLBL(SET_JLBL655,20430 -static UInt cleanup_sw_on_clauses(CELL larg, UInt sz, OPCODE ecls) {cleanup_sw_on_clauses670,21122 -static UInt recover_from_failed_susp_on_cls(struct intermediates *cint,recover_from_failed_susp_on_cls715,22679 -static inline int smaller(Term t1, Term t2) {smaller808,25900 -static inline int smaller_or_eq(Term t1, Term t2) {smaller_or_eq816,26067 -static inline void clcpy(ClauseDef *d, ClauseDef *s) {clcpy824,26241 -static void insort(ClauseDef base[], CELL *p, CELL *q, int my_p) {insort828,26350 -static void msort(ClauseDef *base, CELL *pt, Int size, int my_p) {msort868,27088 -static void copy_back(ClauseDef *dest, CELL *pt, int max) {copy_back940,29175 -static void sort_group(GroupDef *grp, CELL *top, struct intermediates *cint) {sort_group975,29967 -#define M_EVEN M_EVEN1003,30713 -static int init_regcopy(wamreg regs[MAX_REG_COPIES], wamreg copy) {init_regcopy1012,30933 -static int is_regcopy(wamreg regs[MAX_REG_COPIES], int regs_count,is_regcopy1018,31084 -static int delete_regcopy(wamreg regs[MAX_REG_COPIES], int regs_count,delete_regcopy1032,31421 -static int add_regcopy(wamreg regs[MAX_REG_COPIES], int regs_count, Int source,add_regcopy1048,31843 -inline static int link_regcopies(wamreg regs[MAX_REG_COPIES], int regs_count,link_regcopies1067,32396 -static void add_info(ClauseDef *clause, UInt regno) {add_info1083,32881 -static void add_head_info(ClauseDef *clause, UInt regno) {add_head_info1093,33109 -static void move_next(ClauseDef *clause, UInt regno) {move_next1100,33270 -static void add_arg_info(ClauseDef *clause, PredEntry *ap, UInt argno) {add_arg_info1164,34531 -static void skip_to_arg(ClauseDef *clause, PredEntry *ap, UInt argno,skip_to_arg1425,40737 -static UInt groups_in(ClauseDef *min, ClauseDef *max, GroupDef *grp,groups_in1522,42864 -static UInt new_label(struct intermediates *cint) {new_label1595,44749 -static Int has_cut(yamop *pc, PredEntry *ap) {has_cut1601,44872 -static void emit_trust(ClauseDef *cl, struct intermediates *cint, UInt nxtlbl,emit_trust1616,45286 -static void emit_retry(ClauseDef *cl, struct intermediates *cint, int clauses) {emit_retry1641,46128 -static compiler_vm_op emit_optry(int var_group, int first, int clauses,emit_optry1660,46782 -static void emit_try(ClauseDef *cl, struct intermediates *cint, int var_group,emit_try1688,47455 -static TypeSwitch *emit_type_switch(compiler_vm_op op,emit_type_switch1707,48068 -static yamop *emit_switch_space(UInt n, UInt item_size,emit_switch_space1712,48269 -static AtomSwiEntry *emit_cswitch(COUNT n, yamop *fail_l,emit_cswitch1754,49656 -static AtomSwiEntry *lookup_c_hash(Term t, yamop *tab, COUNT entries) {lookup_c_hash1790,50572 -static AtomSwiEntry *fetch_centry(AtomSwiEntry *cebase, Term wt, int i, int n) {fetch_centry1807,50999 -static FuncSwiEntry *emit_fswitch(COUNT n, yamop *fail_l,emit_fswitch1820,51300 -static FuncSwiEntry *lookup_f_hash(Functor f, yamop *tab, COUNT entries) {lookup_f_hash1855,52317 -static FuncSwiEntry *fetch_fentry(FuncSwiEntry *febase, Functor ft, int i,fetch_fentry1873,52772 -static UInt do_var_clauses(ClauseDef *c0, ClauseDef *cf, int var_group,do_var_clauses1888,53173 -static UInt do_var_group(GroupDef *grp, struct intermediates *cint,do_var_group1936,54537 -static UInt count_consts(GroupDef *grp) {count_consts1944,54902 -static UInt count_blobs(GroupDef *grp) {count_blobs1962,55248 -static UInt count_funcs(GroupDef *grp) {count_funcs1978,55565 -static UInt emit_single_switch_case(ClauseDef *min, struct intermediates *cint,emit_single_switch_case1996,55888 -static UInt suspend_indexing(ClauseDef *min, ClauseDef *max, PredEntry *ap,suspend_indexing2018,56575 -static void recover_ecls_block(yamop *ipc) {recover_ecls_block2086,58574 -static UInt do_var_entries(GroupDef *grp, Term t, struct intermediates *cint,do_var_entries2119,59767 -static UInt do_consts(GroupDef *grp, Term t, struct intermediates *cint,do_consts2130,60180 -static void do_blobs(GroupDef *grp, Term t, struct intermediates *cint,do_blobs2182,61861 -static UInt do_funcs(GroupDef *grp, Term t, struct intermediates *cint,do_funcs2212,62759 -static UInt do_pair(GroupDef *grp, Term t, struct intermediates *cint,do_pair2273,64678 -static void group_prologue(int compound_term, UInt argno, int first,group_prologue2306,65727 -static void emit_protection_choicepoint(int first, int clleft, UInt nxtlbl,emit_protection_choicepoint2318,66111 -static ClauseDef *cls_move(ClauseDef *min, PredEntry *ap, ClauseDef *max,cls_move2341,66738 -static void purge_pvar(GroupDef *group) {purge_pvar2369,67346 -static UInt *do_nonvar_group(GroupDef *grp, Term t, UInt compound_term,do_nonvar_group2388,67730 -static UInt do_optims(GroupDef *group, int ngroups, UInt fail_l, ClauseDef *min,do_optims2435,69724 -static int cls_info(ClauseDef *min, ClauseDef *max, UInt argno) {cls_info2456,70600 -static int cls_head_info(ClauseDef *min, ClauseDef *max, UInt argno,cls_head_info2471,70939 -static UInt do_index(ClauseDef *min, ClauseDef *max, struct intermediates *cint,do_index2518,72047 -static ClauseDef *copy_clauses(ClauseDef *max0, ClauseDef *min0, CELL *top,copy_clauses2660,76898 -static int several_tags(ClauseDef *min, ClauseDef *max) {several_tags2675,77416 -static UInt do_compound_index(ClauseDef *min0, ClauseDef *max0, Term *sreg,do_compound_index2686,77669 -static UInt do_dbref_index(ClauseDef *min, ClauseDef *max, Term t,do_dbref_index2769,80470 -static UInt do_blob_index(ClauseDef *min, ClauseDef *max, Term t,do_blob_index2797,81297 -static void init_clauses(ClauseDef *cl, PredEntry *ap) {init_clauses2834,82405 -static void init_log_upd_clauses(ClauseDef *cl, PredEntry *ap) {init_log_upd_clauses2859,83159 -static UInt compile_index(struct intermediates *cint) {compile_index2869,83414 -static void CleanCls(struct intermediates *cint) {CleanCls2922,84991 -yamop *Yap_PredIsIndexable(PredEntry *ap, UInt NSlots, yamop *next_pc) {Yap_PredIsIndexable2931,85157 -static istack_entry *push_stack(istack_entry *sp, Int arg, Term Tag, Term extra,push_stack3020,87863 -static istack_entry *install_clause(ClauseDef *cls, PredEntry *ap,install_clause3035,88231 -static ClauseDef *install_clauses(ClauseDef *cls, PredEntry *ap,install_clauses3085,89674 -static ClauseDef *install_clauseseq(ClauseDef *cls, PredEntry *ap,install_clauseseq3146,91371 -static void reinstall_clauses(ClauseDef *cls, ClauseDef *end, PredEntry *ap,reinstall_clauses3180,92148 -static istack_entry *install_log_upd_clause(ClauseDef *cls, PredEntry *ap,install_log_upd_clause3188,92384 -static ClauseDef *install_log_upd_clauses(ClauseDef *cls, PredEntry *ap,install_log_upd_clauses3235,93674 -static ClauseDef *install_log_upd_clauseseq(ClauseDef *cls, PredEntry *ap,install_log_upd_clauseseq3265,94529 -static void reinstall_log_upd_clauses(ClauseDef *cls, ClauseDef *end,reinstall_log_upd_clauses3299,95337 -#define arg_from_x(arg_from_x3309,95624 -#define arg_from_x(arg_from_x3313,95678 -static AtomSwiEntry *lookup_c(Term t, yamop *tab, COUNT entries) {lookup_c3317,95731 -static FuncSwiEntry *lookup_f(Functor f, yamop *tab, COUNT entries) {lookup_f3329,95970 -static COUNT count_clauses_left(yamop *cl, PredEntry *ap) {count_clauses_left3341,96212 -static ClausePointer index_jmp(ClausePointer cur, ClausePointer parent,index_jmp3374,97098 -static ClausePointer code_to_indexcl(yamop *ipc, int is_lu) {code_to_indexcl3433,98760 -static void increase_expand_depth(yamop *ipc, struct intermediates *cint) {increase_expand_depth3443,99012 -static void zero_expand_depth(PredEntry *ap, struct intermediates *cint) {zero_expand_depth3456,99432 -static yamop **expand_index(struct intermediates *cint) {expand_index3461,99611 -static yamop *ExpandIndex(PredEntry *ap, int ExtraArgs,ExpandIndex4068,118025 -yamop *Yap_ExpandIndex(PredEntry *ap, UInt nargs) {Yap_ExpandIndex4244,123258 -static path_stack_entry *push_path(path_stack_entry *sp, yamop **pipc,push_path4249,123373 -static path_stack_entry *fetch_new_block(path_stack_entry *sp, yamop **pipc,fetch_new_block4265,123881 -static path_stack_entry *init_block_stack(path_stack_entry *sp, yamop *ipc,init_block_stack4284,124528 -static path_stack_entry *cross_block(path_stack_entry *sp, yamop **pipc,cross_block4298,124968 -static yamop *pop_path(path_stack_entry **spp, ClauseDef *clp, PredEntry *ap,pop_path4336,126171 -static int table_fe_overflow(yamop *pc, Functor f) {table_fe_overflow4357,126728 -static int table_ae_overflow(yamop *pc, Term at) {table_ae_overflow4374,127169 -static void replace_index_block(ClauseUnion *parent_block, yamop *cod,replace_index_block4391,127612 -static AtomSwiEntry *expand_ctable(yamop *pc, ClauseUnion *blk,expand_ctable4441,129203 -static FuncSwiEntry *expand_ftable(yamop *pc, ClauseUnion *blk,expand_ftable4504,130949 -static void clean_ref_to_clause(LogUpdClause *tgl) {clean_ref_to_clause4570,132860 -static ClauseUnion *current_block(path_stack_entry *sp) {current_block4579,133095 -static path_stack_entry *kill_block(path_stack_entry *sp, PredEntry *ap) {kill_block4585,133228 -static LogUpdClause *find_last_clause(yamop *start) {find_last_clause4601,133682 -static void remove_clause_from_index(yamop *header, LogUpdClause *cl) {remove_clause_from_index4608,133895 -static void remove_dirty_clauses_from_index(yamop *header) {remove_dirty_clauses_from_index4641,134780 -static path_stack_entry *kill_clause(yamop *ipc, yamop *bg, yamop *lt,kill_clause4727,137393 -static path_stack_entry *expanda_block(path_stack_entry *sp, PredEntry *ap,expanda_block4785,138912 -static path_stack_entry *expandz_block(path_stack_entry *sp, PredEntry *ap,expandz_block4794,139244 -static LogUpdClause *lu_clause(yamop *ipc, PredEntry *ap) {lu_clause4803,139576 -static StaticClause *find_static_clause(PredEntry *ap, yamop *ipc) {find_static_clause4811,139781 -static StaticClause *static_clause(yamop *ipc, PredEntry *ap, int trust) {static_clause4821,140070 -static StaticClause *simple_static_clause(yamop *ipc, PredEntry *ap) {simple_static_clause4873,141390 -static path_stack_entry *kill_unsafe_block(path_stack_entry *sp, op_numbers op,kill_unsafe_block4882,141665 -static int compacta_expand_clauses(yamop *ipc) {compacta_expand_clauses4927,143019 -static int compactz_expand_clauses(yamop *ipc) {compactz_expand_clauses4949,143507 -static yamop *add_to_expand_clauses(path_stack_entry **spp, yamop *ipc,add_to_expand_clauses4974,144100 -static void nullify_expand_clause(yamop *ipc, path_stack_entry *sp,nullify_expand_clause5019,145410 -static yamop *add_try(PredEntry *ap, ClauseDef *cls, yamop *next,add_try5049,146147 -static yamop *add_trust(LogUpdIndex *icl, ClauseDef *cls,add_trust5073,146850 -static void add_to_index(struct intermediates *cint, int first,add_to_index5103,147770 -void Yap_AddClauseToIndex(PredEntry *ap, yamop *beg, int first) {Yap_AddClauseToIndex5536,161279 -static void contract_ftable(yamop *ipc, ClauseUnion *blk, PredEntry *ap,contract_ftable5584,162596 -static void contract_ctable(yamop *ipc, ClauseUnion *blk, PredEntry *ap,contract_ctable5599,162967 -static void remove_from_index(PredEntry *ap, path_stack_entry *sp,remove_from_index5614,163338 -void Yap_RemoveClauseFromIndex(PredEntry *ap, yamop *beg) {Yap_RemoveClauseFromIndex5975,174794 -static void store_clause_choice_point(Term t1, Term tb, Term tr, yamop *ipc,store_clause_choice_point6092,178594 -static void update_clause_choice_point(yamop *ipc, yamop *ap_pc USES_REGS) {update_clause_choice_point6124,179365 -static LogUpdClause *to_clause(yamop *ipc, PredEntry *ap) {to_clause6131,179542 -LogUpdClause *Yap_FollowIndexingCode(PredEntry *ap, yamop *ipc, Term Terms[3],Yap_FollowIndexingCode6140,179821 -LogUpdClause *Yap_NthClause(PredEntry *ap, Int ncls) {Yap_NthClause6746,196394 -void Yap_CleanUpIndex(LogUpdIndex *blk) {Yap_CleanUpIndex6960,202297 - -C/index_absmi_insts.h,40 -#define HASH_SHIFT HASH_SHIFT275,6788 - -C/init.c,4644 -static char SccsId[] = "%W% %G%";SccsId18,586 -#define __INIT_C__ __INIT_C__26,715 -Atom AtomFoundVar, AtomFreeTerm, AtomNil, AtomDot;AtomFoundVar61,1293 -Atom AtomFoundVar, AtomFreeTerm, AtomNil, AtomDot;AtomFreeTerm61,1293 -Atom AtomFoundVar, AtomFreeTerm, AtomNil, AtomDot;AtomNil61,1293 -Atom AtomFoundVar, AtomFreeTerm, AtomNil, AtomDot;AtomDot61,1293 -int Yap_output_msg = FALSE;Yap_output_msg64,1362 -#define LOGFILE LOGFILE68,1402 -ADDR Yap_HeapBase;Yap_HeapBase87,1942 -static char *optypes[] = {"", "xfx", "xfy", "yfx", "xf", "yf", "fx", "fy"};optypes90,2033 -size_t Yap_page_size;Yap_page_size93,2151 -int Yap_Portray_delays = FALSE;Yap_Portray_delays97,2200 -void *YAP_save;YAP_save101,2247 -#define xfx xfx187,4532 -#define xfy xfy188,4546 -#define yfx yfx189,4560 -#define xf xf190,4574 -#define yf yf191,4587 -#define fx fx192,4600 -#define fy fy193,4613 -int Yap_IsOpType(char *type) {Yap_IsOpType195,4627 -static int OpDec(int p, const char *type, Atom a, Term m) {OpDec204,4769 -int Yap_OpDec(int p, char *type, Atom a, Term m) {Yap_OpDec285,6946 -static void SetOp(int p, int type, char *at, Term m) {SetOp289,7033 -bool Yap_dup_op(OpEntry *op, ModEntry *she) {Yap_dup_op297,7247 -Atom Yap_GetOp(OpEntry *pp, int *prio, int fix) {Yap_GetOp312,7704 -typedef struct OPSTRUCT {OPSTRUCT342,8386 - char *opName;opName343,8412 - char *opName;OPSTRUCT::opName343,8412 - short int opType, opPrio;opType344,8428 - short int opType, opPrio;OPSTRUCT::opType344,8428 - short int opType, opPrio;opPrio344,8428 - short int opType, opPrio;OPSTRUCT::opPrio344,8428 -} Opdef;Opdef345,8456 -static Opdef Ops[] = {{":-", xfx, 1200},Ops347,8466 -static void InitOps(void) {InitOps422,11439 -static void InitDebug(void) {InitDebug436,11684 -static UInt update_flags_from_prolog(UInt flags, PredEntry *pe) {update_flags_from_prolog486,12927 -void Yap_InitCPred(const char *Name, arity_t Arity, CPredicate code,Yap_InitCPred502,13438 -bool Yap_AddCallToFli(PredEntry *pe, CPredicate call) {Yap_AddCallToFli604,16453 -bool Yap_AddRetryToFli(PredEntry *pe, CPredicate re) {Yap_AddRetryToFli619,16788 -bool Yap_AddCutToFli(PredEntry *pe, CPredicate CUT) {Yap_AddCutToFli632,17072 -void Yap_InitCmpPred(const char *Name, arity_t Arity, CmpPredicate cmp_code,Yap_InitCmpPred646,17393 -void Yap_InitAsmPred(const char *Name, arity_t Arity, int code, CPredicate def,Yap_InitAsmPred725,19814 -static void CleanBack(PredEntry *pe, CPredicate Start, CPredicate Cont,CleanBack825,23045 -void Yap_InitCPredBack(const char *Name, arity_t Arity, arity_t Extra,Yap_InitCPredBack865,24254 -void Yap_InitCPredBackCut(const char *Name, arity_t Arity, arity_t Extra,Yap_InitCPredBackCut870,24476 -void Yap_InitCPredBack_(const char *Name, arity_t Arity, arity_t Extra,Yap_InitCPredBack_876,24745 -static void InitStdPreds(void) {InitStdPreds983,28044 -static void InitPredHash(void) {InitPredHash994,28228 -static void InitEnvInst(yamop start[2], yamop **instp, op_numbers opc,InitEnvInst1010,28694 -static void InitOtaplInst(yamop start[1], OPCODE opc, PredEntry *pe) {InitOtaplInst1025,29145 -static void InitDBErasedMarker(void) {InitDBErasedMarker1041,29531 -static void InitLogDBErasedMarker(void) {InitLogDBErasedMarker1051,29854 -static void InitEmptyWakeups(void) {}InitEmptyWakeups1067,30555 -static void InitAtoms(void) {InitAtoms1069,30594 -static void InitWideAtoms(void) {InitWideAtoms1100,31610 -static void InitInvisibleAtoms(void) {InitInvisibleAtoms1116,32048 -void Yap_init_yapor_workers(void) {Yap_init_yapor_workers1123,32208 -static void InitThreadHandle(int wid) {InitThreadHandle1172,33502 -int Yap_InitThread(int new_id) {Yap_InitThread1202,34421 -static void InitScratchPad(int wid) {InitScratchPad1223,35082 -static CELL *InitHandles(int wid) {InitHandles1229,35261 -void Yap_CloseScratchPad(void) {Yap_CloseScratchPad1246,35663 -struct global_data *Yap_global;Yap_global1258,35957 -long Yap_worker_area_size;Yap_worker_area_size1259,35989 -struct worker_local *Yap_local[MAX_THREADS];Yap_local1264,36046 -struct worker_local *Yap_local;Yap_local1266,36112 -struct worker_local Yap_local;Yap_local1268,36175 -static void InitCodes(void) {InitCodes1271,36214 -static void InitVersion(void) {InitVersion1309,37392 -const char *Yap_version(void) {Yap_version1313,37508 -void Yap_InitWorkspace(UInt Heap, UInt Stack, UInt Trail, UInt Atts,Yap_InitWorkspace1318,37629 -int Yap_HaltRegisterHook(HaltHookFunc f, void *env) {Yap_HaltRegisterHook1437,41531 -static void run_halt_hooks(int code) {run_halt_hooks1451,41859 -void Yap_exit(int value) {Yap_exit1460,42038 - -C/inlines.c,1100 -#define IN_INLINES_C IN_INLINES_C33,756 -p_atom( USES_REGS1 )p_atom64,1528 -p_atomic( USES_REGS1 )p_atomic92,2020 -p_integer( USES_REGS1 )p_integer120,2515 -p_number( USES_REGS1 )p_number166,3384 -p_db_ref( USES_REGS1 )p_db_ref213,4290 -p_primitive( USES_REGS1 )p_primitive241,4780 -p_float( USES_REGS1 )p_float269,5271 -p_compound( USES_REGS1 )p_compound297,5729 -p_nonvar( USES_REGS1 )p_nonvar331,6320 -p_var( USES_REGS1 )p_var354,6729 -p_equal( USES_REGS1 )p_equal377,7093 -eq(Term t1, Term t2 USES_REGS)eq383,7184 -p_eq( USES_REGS1 )p_eq500,9938 -Yap_eq(Term t1, Term t2)Yap_eq506,10022 -p_dif( USES_REGS1 )p_dif520,10224 -p_arg( USES_REGS1 )p_arg642,13294 -p_functor( USES_REGS1 ) /* functor(?,?,?) */p_functor759,16300 -cp_as_integer(choiceptr cp USES_REGS)cp_as_integer940,20545 -p_cut_by( USES_REGS1 )p_cut_by947,20649 -p_erroneous_call( USES_REGS1 )p_erroneous_call1001,21609 - p_save_cp( USES_REGS1 )p_save_cp1008,21759 - genarg( USES_REGS1 )genarg1048,22408 -cont_genarg( USES_REGS1 )cont_genarg1098,23466 - Yap_InitInlines(void)Yap_InitInlines1123,24021 - -C/learn2,23 -import os, sysos2,27 - -C/load_aix.c,541 -Yap_FindExecutable(void)Yap_FindExecutable30,830 -Yap_LoadForeignFile(char *file, int flags)Yap_LoadForeignFile37,883 -Yap_CallForeignFile(void *handle, char *f)Yap_CallForeignFile44,974 -Yap_CloseForeignFile(void *handle)Yap_CloseForeignFile50,1042 -LoadForeign(StringList ofiles, StringList libs,LoadForeign61,1253 -Yap_LoadForeign(StringList ofiles, StringList libs,Yap_LoadForeign85,2045 -Yap_ShutdownLoadForeign(void)Yap_ShutdownLoadForeign92,2215 -Yap_ReLoadForeign(StringList ofiles, StringList libs,Yap_ReLoadForeign97,2254 - -C/load_aout.c,592 -#define oktox(oktox48,1038 -#define oktow(oktow50,1130 -Yap_FindExecutable(void)Yap_FindExecutable58,1345 -Yap_LoadForeignFile(char *file, int flags)Yap_LoadForeignFile105,2641 -Yap_CallForeignFile(void *handle, char *f)Yap_CallForeignFile112,2732 -Yap_CloseForeignFile(void *handle)Yap_CloseForeignFile118,2800 -LoadForeign(StringList ofiles,LoadForeign129,3011 -Yap_LoadForeign(StringList ofiles, StringList libs,Yap_LoadForeign265,7332 -Yap_ShutdownLoadForeign(void)Yap_ShutdownLoadForeign272,7502 -Yap_ReLoadForeign(StringList ofiles, StringList libs,Yap_ReLoadForeign277,7541 - -C/load_coff.c,666 -#define oktox(oktox31,833 -#define oktow(oktow33,925 -#define MAXSECTIONS MAXSECTIONS37,1030 -#define N_TXTOFF(N_TXTOFF46,1157 -Yap_FindExecutable(void)Yap_FindExecutable54,1373 -Yap_LoadForeignFile(char *file, int flags)Yap_LoadForeignFile102,2577 -Yap_CallForeignFile(void *handle, char *f)Yap_CallForeignFile109,2668 -Yap_CloseForeignFile(void *handle)Yap_CloseForeignFile115,2736 -LoadForeign(StringList ofiles,LoadForeign125,2946 -Yap_LoadForeign(StringList ofiles, StringList libs,Yap_LoadForeign312,8763 -Yap_ShutdownLoadForeign(void)Yap_ShutdownLoadForeign319,8933 -Yap_ReLoadForeign(StringList ofiles, StringList libs,Yap_ReLoadForeign324,8972 - -C/load_dl.c,897 -typedef void (*prismf)(void);prismf38,964 -int Yap_CallFunctionByName(const char *thing_string) {Yap_CallFunctionByName43,1076 -char *Yap_FindExecutable(void) {Yap_FindExecutable68,1733 -void *Yap_LoadForeignFile(char *file, int flags) {Yap_LoadForeignFile111,2761 -int Yap_CallForeignFile(void *handle, char *f) {Yap_CallForeignFile139,3365 -int Yap_CloseForeignFile(void *handle) {Yap_CloseForeignFile149,3614 -static Int LoadForeign(StringList ofiles, StringList libs, char *proc_name,LoadForeign162,3956 -Int Yap_LoadForeign(StringList ofiles, StringList libs, char *proc_name,Yap_LoadForeign237,6193 -void Yap_ShutdownLoadForeign(void) {Yap_ShutdownLoadForeign242,6373 -Int Yap_ReLoadForeign(StringList ofiles, StringList libs, char *proc_name,Yap_ReLoadForeign276,7179 -void dlopen(void) {}dlopen285,7385 -void dlclose(void) {}dlclose287,7407 -void dlsym(void) {}dlsym289,7430 - -C/load_dld.c,546 -Yap_FindExecutable(void)Yap_FindExecutable30,890 -Yap_LoadForeignFile(char *file, int flags)Yap_LoadForeignFile43,1099 -Yap_CallForeignFile(void *handle, char *f)Yap_CallForeignFile50,1190 -Yap_CloseForeignFile(void *handle)Yap_CloseForeignFile56,1258 -LoadForeign(StringList ofiles, StringList libs,LoadForeign66,1468 -Yap_LoadForeign(StringList ofiles, StringList libs,Yap_LoadForeign113,2554 -Yap_ShutdownLoadForeign(void)Yap_ShutdownLoadForeign120,2724 -Yap_ReLoadForeign(StringList ofiles, StringList libs,Yap_ReLoadForeign125,2763 - -C/load_dll.c,546 -Yap_FindExecutable(void)Yap_FindExecutable31,838 -Yap_LoadForeignFile(char *file, int flags)Yap_LoadForeignFile43,1023 -Yap_CallForeignFile(void *handle, char *f)Yap_CallForeignFile57,1343 -Yap_CloseForeignFile(void *handle)Yap_CloseForeignFile67,1524 -LoadForeign(StringList ofiles, StringList libs,LoadForeign77,1760 -Yap_LoadForeign(StringList ofiles, StringList libs,Yap_LoadForeign143,3500 -Yap_ShutdownLoadForeign(void)Yap_ShutdownLoadForeign150,3669 -Yap_ReLoadForeign(StringList ofiles, StringList libs,Yap_ReLoadForeign155,3708 - -C/load_dyld.c,704 -mydlerror(void)mydlerror34,886 -Yap_FindExecutable(void)Yap_FindExecutable66,1667 -mydlopen(char *path)mydlopen84,2013 -mydlsym(char *symbol)mydlsym101,2522 -mydlclose(void *handle)mydlclose119,2891 -Yap_LoadForeignFile(char *file, int flags)Yap_LoadForeignFile126,2997 -Yap_CallForeignFile(void *handle, char *f)Yap_CallForeignFile132,3082 -Yap_CloseForeignFile(void *handle)Yap_CloseForeignFile142,3240 -LoadForeign(StringList ofiles, StringList libs,LoadForeign153,3466 -Yap_LoadForeign(StringList ofiles, StringList libs,Yap_LoadForeign209,4885 -Yap_ShutdownLoadForeign(void)Yap_ShutdownLoadForeign216,5055 -Yap_ReLoadForeign(StringList ofiles, StringList libs,Yap_ReLoadForeign241,5521 - -C/load_foreign.c,592 -static char SccsId[] = "%W% %G%.2";SccsId16,569 -#define SO_EXT SO_EXT34,852 -p_load_foreign( USES_REGS1 )p_load_foreign41,927 -p_open_shared_object( USES_REGS1 ) {p_open_shared_object121,3005 -p_close_shared_object( USES_REGS1 ) {p_close_shared_object156,3925 -p_call_shared_object_function( USES_REGS1 ) {p_call_shared_object_function174,4313 -p_obj_suffix( USES_REGS1 ) {p_obj_suffix222,5631 -p_open_shared_objects( USES_REGS1 ) {p_open_shared_objects227,5757 -Yap_InitLoadForeign( void )Yap_InitLoadForeign236,5861 -Yap_ReOpenLoadForeign(void)Yap_ReOpenLoadForeign253,6500 - -C/load_none.c,542 -Yap_FindExecutable(void)Yap_FindExecutable30,800 -LoadForeign(StringList ofiles, StringList libs,LoadForeign41,988 -Yap_LoadForeignFile(char *file, int flags)Yap_LoadForeignFile49,1195 -Yap_CallForeignFile(void *handle, char *f)Yap_CallForeignFile56,1286 -Yap_CloseForeignFile(void *handle)Yap_CloseForeignFile62,1354 -Yap_LoadForeign(StringList ofiles, StringList libs,Yap_LoadForeign69,1412 -Yap_ShutdownLoadForeign(void)Yap_ShutdownLoadForeign76,1579 -Yap_ReLoadForeign(StringList ofiles, StringList libs,Yap_ReLoadForeign81,1618 - -C/load_shl.c,552 -char * Yap_FindExecutable(void)Yap_FindExecutable19,285 -Yap_LoadForeignFile(char *file, int flags)Yap_LoadForeignFile25,330 -Yap_CallForeignFile(void *handle, char *f)Yap_CallForeignFile32,421 -Yap_CloseForeignFile(void *handle)Yap_CloseForeignFile38,489 -LoadForeign( StringList ofiles, StringList libs,LoadForeign50,701 -Yap_LoadForeign(StringList ofiles, StringList libs,Yap_LoadForeign118,2426 -Yap_ShutdownLoadForeign( void )Yap_ShutdownLoadForeign125,2595 -Yap_ReLoadForeign(StringList ofiles, StringList libs,Yap_ReLoadForeign162,3330 - -C/lu_absmi_insts.h,0 - -C/mavar.c,706 -p_setarg( USES_REGS1 )p_setarg67,1772 -NewTimedVar(CELL val USES_REGS)NewTimedVar156,4292 -Yap_NewTimedVar(CELL val)Yap_NewTimedVar176,4686 -Yap_NewEmptyTimedVar( void )Yap_NewEmptyTimedVar183,4772 -ReadTimedVar(Term inv)ReadTimedVar197,5049 -Yap_ReadTimedVar(Term inv)Yap_ReadTimedVar204,5152 -UpdateTimedVar(Term inv, Term new USES_REGS)UpdateTimedVar212,5267 -Yap_UpdateTimedVar(Term inv, Term new)Yap_UpdateTimedVar247,6069 -p_create_mutable( USES_REGS1 )p_create_mutable261,6288 -p_get_mutable( USES_REGS1 )p_get_mutable275,6517 -p_update_mutable( USES_REGS1 )p_update_mutable303,7069 -p_is_mutable( USES_REGS1 )p_is_mutable330,7605 -Yap_InitMaVarCPreds(void)Yap_InitMaVarCPreds348,7850 - -C/meta_absmi_insts.h,0 - -C/modules.c,2517 -static char SccsId[] = "%W% %G%";SccsId18,596 -static ModEntry *initMod(AtomEntry *toname, AtomEntry *ae) {initMod40,1130 -static ModEntry *GetModuleEntry(Atom at USES_REGS) {GetModuleEntry69,1782 -static ModEntry *FetchModuleEntry(Atom at) {FetchModuleEntry90,2294 -Term Yap_getUnknownModule(ModEntry *m) {Yap_getUnknownModule108,2647 -bool Yap_getUnknown(Term mod) {Yap_getUnknown120,2935 -bool Yap_CharacterEscapes(Term mt) {Yap_CharacterEscapes125,3039 -#define ByteAdr(ByteAdr132,3213 -Term Yap_Module_Name(PredEntry *ap) {Yap_Module_Name133,3247 -static ModEntry *LookupSystemModule(Term a) {LookupSystemModule152,3735 -static ModEntry *LookupModule(Term a) {LookupModule170,4062 -bool Yap_isSystemModule(Term a) {Yap_isSystemModule184,4309 -Term Yap_Module(Term tmod) {Yap_Module189,4425 -ModEntry *Yap_GetModuleEntry(Term mod) {Yap_GetModuleEntry194,4494 -Term Yap_GetModuleFromEntry(ModEntry *me) {Yap_GetModuleFromEntry201,4617 -struct pred_entry *Yap_ModulePred(Term mod) {Yap_ModulePred206,4703 -void Yap_NewModulePred(Term mod, struct pred_entry *ap) {Yap_NewModulePred213,4842 - current_module(USES_REGS1) { /* $current_module(Old,N) */current_module227,5136 -static Int change_module(USES_REGS1) { /* $change_module(N) */change_module251,5687 -static Int current_module1(USES_REGS1) { /* $current_module(Old)current_module1259,5868 -static Int cont_current_module(USES_REGS1) {cont_current_module266,6105 -static Int init_current_module(init_current_module279,6420 -static Int cont_ground_module(USES_REGS1) {cont_ground_module295,6870 -static Int init_ground_module(USES_REGS1) {init_ground_module307,7178 -static Int is_system_module(USES_REGS1) {is_system_module346,8136 -static Int new_system_module(USES_REGS1) {new_system_module358,8378 -static Int strip_module(USES_REGS1) {strip_module374,8749 -static Int yap_strip_clause(USES_REGS1) {yap_strip_clause387,9113 -Term Yap_YapStripModule(Term t, Term *modp) {Yap_YapStripModule428,10829 -static Int yap_strip_module(USES_REGS1) {yap_strip_module468,11577 -static Int context_module(USES_REGS1) {context_module481,11965 -static Int source_module(USES_REGS1) {source_module506,12631 -static Int current_source_module(USES_REGS1) {current_source_module520,12952 -static Int copy_operators(USES_REGS1) {copy_operators547,13557 -Term Yap_StripModule(Term t, Term *modp) {Yap_StripModule564,13891 -void Yap_InitModulesC(void) {Yap_InitModulesC603,14594 -void Yap_InitModules(void) {Yap_InitModules627,15939 - -C/or_absmi_insts.h,0 - -C/other.c,469 -static char SccsId[] = "%W% %G%";SccsId18,581 -REGSTORE Yap_standard_regs;Yap_standard_regs30,804 -pthread_key_t Yap_yaamregs_key;Yap_yaamregs_key37,889 -REGSTORE *Yap_regp;Yap_regp41,929 -REGSTORE Yap_REGS;Yap_REGS47,982 -Yap_MkNewPairTerm(void)Yap_MkNewPairTerm52,1016 -Yap_MkApplTerm(Functor f, arity_t n, const Term *a)Yap_MkApplTerm71,1362 -Yap_MkNewApplTerm(Functor f, arity_t n)Yap_MkNewApplTerm88,1661 -Yap_Globalise(Term t)Yap_Globalise113,2089 - -C/parser.c,2444 -static char SccsId[] = "%W% %G%";SccsId18,560 -#define Volatile Volatile153,4782 -#define VolatileVolatile155,4814 -typedef struct jmp_buff_struct { sigjmp_buf JmpBuff; } JMPBUFF;jmp_buff_struct160,4892 -typedef struct jmp_buff_struct { sigjmp_buf JmpBuff; } JMPBUFF;JmpBuff160,4892 -typedef struct jmp_buff_struct { sigjmp_buf JmpBuff; } JMPBUFF;jmp_buff_struct::JmpBuff160,4892 -typedef struct jmp_buff_struct { sigjmp_buf JmpBuff; } JMPBUFF;JMPBUFF160,4892 -static void syntax_msg(const char *msg, ...) {syntax_msg171,5358 -#define TRY(TRY187,5830 -#define TRY3(TRY3207,7293 -#define FAIL FAIL226,8675 -VarEntry *Yap_LookupVar(const char *var) /* lookup variable in variables tableYap_LookupVar228,8722 -static Term VarNames(VarEntry *p, Term l USES_REGS) {VarNames287,10132 -Term Yap_VarNames(VarEntry *p, Term l) {Yap_VarNames313,10843 -static Term Singletons(VarEntry *p, Term l USES_REGS) {Singletons318,10935 -Term Yap_Singletons(VarEntry *p, Term l) {Yap_Singletons344,11642 -static Term Variables(VarEntry *p, Term l USES_REGS) {Variables349,11738 -Term Yap_Variables(VarEntry *p, Term l) {Yap_Variables365,12089 -static int IsPrefixOp(Atom op, int *pptr, int *rpptr, Term cmod USES_REGS) {IsPrefixOp371,12235 -int Yap_IsPrefixOp(Atom op, int *pptr, int *rpptr) {Yap_IsPrefixOp393,12740 -static int IsInfixOp(Atom op, int *pptr, int *lpptr, int *rpptr,IsInfixOp398,12872 -int Yap_IsInfixOp(Atom op, int *pptr, int *lpptr, int *rpptr) {Yap_IsInfixOp423,13455 -static int IsPosfixOp(Atom op, int *pptr, int *lpptr, Term cmod USES_REGS) {IsPosfixOp428,13604 -int Yap_IsPosfixOp(Atom op, int *pptr, int *lpptr) {Yap_IsPosfixOp450,14113 -inline static void GNextToken(USES_REGS1) {GNextToken455,14245 -inline static void checkfor(Term c, JMPBUFF *FailBuff,checkfor464,14493 -static int is_quasi_quotation_syntax(Term goal, Atom *pat, encoding_t enc,is_quasi_quotation_syntax479,14967 -static int get_quasi_quotation(term_t t, unsigned char **here,get_quasi_quotation496,15335 -static Term ParseArgs(Atom a, Term close, JMPBUFF *FailBuff, Term arg1,ParseArgs532,16390 -static Term MakeAccessor(Term t, Functor f USES_REGS) {MakeAccessor613,18554 -static Term ParseList(JMPBUFF *FailBuff, encoding_t enc, Term cmod USES_REGS) {ParseList626,18858 -static Term ParseTerm(int prio, JMPBUFF *FailBuff, encoding_t enc,ParseTerm662,19883 -Term Yap_Parse(UInt prio, encoding_t enc, Term cmod) {Yap_Parse1023,32149 - -C/prim_absmi_insts.h,0 - -C/qlyr.c,8756 - OUT_OF_TEMP_SPACE = 0,OUT_OF_TEMP_SPACE43,1010 - OUT_OF_ATOM_SPACE = 1,OUT_OF_ATOM_SPACE44,1035 - OUT_OF_CODE_SPACE = 2,OUT_OF_CODE_SPACE45,1060 - UNKNOWN_ATOM = 3,UNKNOWN_ATOM46,1085 - UNKNOWN_FUNCTOR = 4,UNKNOWN_FUNCTOR47,1105 - UNKNOWN_PRED_ENTRY = 5,UNKNOWN_PRED_ENTRY48,1128 - UNKNOWN_OPCODE = 6,UNKNOWN_OPCODE49,1154 - UNKNOWN_DBREF = 7,UNKNOWN_DBREF50,1176 - BAD_ATOM = 8,BAD_ATOM51,1197 - MISMATCH = 9,MISMATCH52,1213 - INCONSISTENT_CPRED = 10,INCONSISTENT_CPRED53,1229 - BAD_READ = 11,BAD_READ54,1256 - BAD_HEADER = 12BAD_HEADER55,1273 -} qlfr_err_t;qlfr_err_t56,1291 -static char *qlyr_error[] = {qlyr_error58,1306 -static char *Yap_AlwaysAllocCodeSpace(UInt size) {Yap_AlwaysAllocCodeSpace72,1788 -static void QLYR_ERROR(qlfr_err_t my_err) {QLYR_ERROR82,1988 -static Atom LookupAtom(Atom oat) {LookupAtom90,2306 -static void InsertAtom(Atom oat, Atom at) {InsertAtom108,2709 -static Functor LookupFunctor(Functor ofun) {LookupFunctor130,3200 -static void InsertFunctor(Functor ofun, Functor fun) {InsertFunctor146,3535 -static PredEntry *LookupPredEntry(PredEntry *op) {LookupPredEntry169,4069 -static void InsertPredEntry(PredEntry *op, PredEntry *pe) {InsertPredEntry188,4488 -static OPCODE LookupOPCODE(OPCODE op) {LookupOPCODE214,5104 -static int OpcodeID(OPCODE op) {OpcodeID230,5426 -static void InsertOPCODE(OPCODE op0, int i, OPCODE op) {InsertOPCODE246,5740 -static DBRef LookupDBRef(DBRef dbr, int inc_ref) {LookupDBRef268,6270 -static LogUpdClause *LookupMayFailDBRef(DBRef dbr) {LookupMayFailDBRef290,6718 -static void InsertDBRef(DBRef dbr0, DBRef dbr) {InsertDBRef309,7125 -static void InitHash(void) {InitHash332,7648 -static void CloseHash(void) {CloseHash340,7914 -static inline Atom AtomAdjust(Atom a) { return LookupAtom(a); }AtomAdjust405,9824 -static inline Functor FuncAdjust(Functor f) {FuncAdjust407,9889 -static inline Term AtomTermAdjust(Term t) {AtomTermAdjust412,9977 -static inline Term TermToGlobalOrAtomAdjust(Term t) {TermToGlobalOrAtomAdjust416,10072 -#define IsOldCode(IsOldCode422,10197 -#define IsOldCodeCellPtr(IsOldCodeCellPtr423,10224 -#define IsOldDelay(IsOldDelay424,10258 -#define IsOldDelayPtr(IsOldDelayPtr425,10286 -#define IsOldLocalInTR(IsOldLocalInTR426,10317 -#define IsOldLocalInTRPtr(IsOldLocalInTRPtr427,10349 -#define IsOldGlobal(IsOldGlobal428,10384 -#define IsOldGlobalPtr(IsOldGlobalPtr429,10413 -#define IsOldTrail(IsOldTrail430,10445 -#define IsOldTrailPtr(IsOldTrailPtr431,10473 -#define CharP(CharP433,10505 -#define REINIT_LOCK(REINIT_LOCK435,10537 -#define REINIT_RWLOCK(REINIT_RWLOCK436,10560 -#define BlobTypeAdjust(BlobTypeAdjust437,10585 -#define NoAGCAtomAdjust(NoAGCAtomAdjust438,10615 -#define OrArgAdjust(OrArgAdjust439,10646 -#define TabEntryAdjust(TabEntryAdjust440,10669 -#define IntegerAdjust(IntegerAdjust441,10695 -#define AddrAdjust(AddrAdjust442,10724 -#define MFileAdjust(MFileAdjust443,10750 -#define CodeVarAdjust(CodeVarAdjust445,10778 -static inline Term CodeVarAdjust__(Term var USES_REGS) {CodeVarAdjust__446,10832 -#define ConstantAdjust(ConstantAdjust452,10968 -#define ArityAdjust(ArityAdjust453,10998 -#define DoubleInCodeAdjust(DoubleInCodeAdjust454,11025 -#define IntegerInCodeAdjust(IntegerInCodeAdjust455,11055 -static inline PredEntry *PtoPredAdjust(PredEntry *p) {PtoPredAdjust457,11089 -static inline PredEntry *PredEntryAdjust(PredEntry *p) {PredEntryAdjust461,11176 -static inline OPCODE OpcodeAdjust(OPCODE OP) { return LookupOPCODE(OP); }OpcodeAdjust465,11265 -static inline Term ModuleAdjust(Term M) {ModuleAdjust467,11340 -#define ExternalFunctionAdjust(ExternalFunctionAdjust473,11437 -#define DBRecordAdjust(DBRecordAdjust474,11475 -#define ModEntryPtrAdjust(ModEntryPtrAdjust475,11505 -#define AtomEntryAdjust(AtomEntryAdjust476,11538 -#define GlobalEntryAdjust(GlobalEntryAdjust477,11569 -#define BlobTermInCodeAdjust(BlobTermInCodeAdjust478,11602 -static inline Term BlobTermInCodeAdjust__(Term t USES_REGS) {BlobTermInCodeAdjust__480,11688 -static inline Term BlobTermInCodeAdjust__(Term t USES_REGS) {BlobTermInCodeAdjust__484,11800 -#define DBTermAdjust(DBTermAdjust488,11915 -static inline DBTerm *DBTermAdjust__(DBTerm *dbtp USES_REGS) {DBTermAdjust__489,11967 -#define CellPtoHeapAdjust(CellPtoHeapAdjust493,12081 -static inline CELL *CellPtoHeapAdjust__(CELL *dbtp USES_REGS) {CellPtoHeapAdjust__494,12143 -#define PtoAtomHashEntryAdjust(PtoAtomHashEntryAdjust498,12256 -#define CellPtoHeapCellAdjust(CellPtoHeapCellAdjust499,12294 -#define CellPtoTRAdjust(CellPtoTRAdjust500,12331 -#define CodeAddrAdjust(CodeAddrAdjust501,12362 -#define ConsultObjAdjust(ConsultObjAdjust502,12392 -#define DelayAddrAdjust(DelayAddrAdjust503,12424 -#define DelayAdjust(DelayAdjust504,12455 -#define GlobalAdjust(GlobalAdjust505,12482 -#define DBRefAdjust(DBRefAdjust507,12511 -static inline DBRef DBRefAdjust__(DBRef dbtp, int do_reference USES_REGS) {DBRefAdjust__508,12571 -#define DBRefPAdjust(DBRefPAdjust512,12692 -static inline DBRef *DBRefPAdjust__(DBRef *dbtp USES_REGS) {DBRefPAdjust__513,12744 -#define LUIndexAdjust(LUIndexAdjust517,12858 -#define SIndexAdjust(SIndexAdjust518,12887 -#define LocalAddrAdjust(LocalAddrAdjust519,12915 -#define GlobalAddrAdjust(GlobalAddrAdjust520,12946 -#define OpListAdjust(OpListAdjust521,12978 -#define PtoLUCAdjust(PtoLUCAdjust523,13007 -#define PtoLUClauseAdjust(PtoLUClauseAdjust524,13059 -static inline LogUpdClause *PtoLUCAdjust__(LogUpdClause *dbtp USES_REGS) {PtoLUCAdjust__525,13116 -#define PtoStCAdjust(PtoStCAdjust529,13251 -#define PtoArrayEAdjust(PtoArrayEAdjust530,13279 -#define PtoArraySAdjust(PtoArraySAdjust531,13310 -#define PtoGlobalEAdjust(PtoGlobalEAdjust532,13341 -#define PtoDelayAdjust(PtoDelayAdjust533,13373 -#define PtoGloAdjust(PtoGloAdjust534,13403 -#define PtoLocAdjust(PtoLocAdjust535,13431 -#define PtoHeapCellAdjust(PtoHeapCellAdjust537,13460 -static inline CELL *PtoHeapCellAdjust__(CELL *ptr USES_REGS) {PtoHeapCellAdjust__538,13522 -#define TermToGlobalAdjust(TermToGlobalAdjust545,13724 -#define PtoOpAdjust(PtoOpAdjust546,13758 -static inline yamop *PtoOpAdjust__(yamop *ptr USES_REGS) {PtoOpAdjust__547,13808 -#define PtoLUIndexAdjust(PtoLUIndexAdjust555,14011 -#define PtoDBTLAdjust(PtoDBTLAdjust556,14043 -#define PtoPtoPredAdjust(PtoPtoPredAdjust557,14072 -#define OpRTableAdjust(OpRTableAdjust558,14104 -#define OpEntryAdjust(OpEntryAdjust559,14134 -#define PropAdjust(PropAdjust560,14163 -#define TrailAddrAdjust(TrailAddrAdjust561,14189 -#define XAdjust(XAdjust563,14246 -static inline wamreg XAdjust__(wamreg reg USES_REGS) {XAdjust__564,14288 -#define XAdjust(XAdjust568,14401 -#define YAdjust(YAdjust570,14431 -#define HoldEntryAdjust(HoldEntryAdjust571,14454 -#define CodeCharPAdjust(CodeCharPAdjust572,14485 -#define CodeConstCharPAdjust(CodeConstCharPAdjust573,14516 -#define CodeVoidPAdjust(CodeVoidPAdjust574,14552 -#define HaltHookAdjust(HaltHookAdjust575,14583 -#define recompute_mask(recompute_mask577,14614 -#define rehash(rehash579,14643 -#define RestoreSWIHash(RestoreSWIHash581,14689 -#define Yap_op_from_opcode(Yap_op_from_opcode583,14715 -static void RestoreFlags(UInt NFlags) {}RestoreFlags585,14760 -static void RestoreHashPreds(USES_REGS1) {}RestoreHashPreds589,14822 -static void RestoreAtomList(Atom atm USES_REGS) {}RestoreAtomList591,14867 -static size_t read_bytes(FILE *stream, void *ptr, size_t sz) {read_bytes593,14919 -static unsigned char read_byte(FILE *stream) { return getc(stream); }read_byte597,15021 -static BITS16 read_bits16(FILE *stream) {read_bits16599,15092 -static UInt read_UInt(FILE *stream) {read_UInt605,15203 -static Int read_Int(FILE *stream) {read_Int611,15306 -static qlf_tag_t read_tag(FILE *stream) {read_tag617,15405 -static pred_flags_t read_predFlags(FILE *stream) {read_predFlags622,15493 -static bool checkChars(FILE *stream, char s[]) {checkChars628,15625 -static Atom do_header(FILE *stream) {do_header640,15816 -static Int get_header(USES_REGS1) {get_header659,16260 -static void ReadHash(FILE *stream) {ReadHash679,16676 -static void read_clauses(FILE *stream, PredEntry *pp, UInt nclauses,read_clauses818,21522 -static void read_pred(FILE *stream, Term mod) {read_pred928,24828 -static void read_ops(FILE *stream) {read_ops984,26856 -static void read_module(FILE *stream) {read_module1002,27331 -static Int p_read_module_preds(USES_REGS1) {p_read_module_preds1021,27766 -static void ReInitProlog(void) {ReInitProlog1040,28188 -static Int qload_program(USES_REGS1) {qload_program1045,28285 -YAP_file_type_t Yap_Restore(const char *s, const char *lib_dir) {Yap_Restore1066,28755 -void Yap_InitQLYR(void) {Yap_InitQLYR1083,29192 - -C/qlyw.c,6118 -GrowAtomTable(void) {GrowAtomTable44,1011 -LookupAtom(Atom at)LookupAtom80,1858 -GrowFunctorTable(void) {GrowFunctorTable110,2492 -LookupFunctor(Functor fun)LookupFunctor145,3359 -GrowPredTable(void) {GrowPredTable178,4128 -LookupPredEntry(PredEntry *pe)LookupPredEntry214,5052 -GrowDBRefTable(void) {GrowDBRefTable272,6540 -LookupDBRef(DBRef ref)LookupDBRef307,7387 -InitHash(void)InitHash338,8074 -CloseHash(void)CloseHash356,9081 -AtomAdjust(Atom a)AtomAdjust374,9597 -FuncAdjust(Functor f)FuncAdjust381,9672 -AtomTermAdjust(Term t)AtomTermAdjust389,9751 -TermToGlobalOrAtomAdjust(Term t)TermToGlobalOrAtomAdjust396,9839 -#define IsOldCode(IsOldCode404,9946 -#define IsOldCodeCellPtr(IsOldCodeCellPtr405,9973 -#define IsOldDelay(IsOldDelay406,10007 -#define IsOldDelayPtr(IsOldDelayPtr407,10035 -#define IsOldLocalInTR(IsOldLocalInTR408,10066 -#define IsOldLocalInTRPtr(IsOldLocalInTRPtr409,10098 -#define IsOldGlobal(IsOldGlobal410,10133 -#define IsOldGlobalPtr(IsOldGlobalPtr411,10162 -#define IsOldTrail(IsOldTrail412,10194 -#define IsOldTrailPtr(IsOldTrailPtr413,10222 -#define CharP(CharP415,10254 -#define REINIT_LOCK(REINIT_LOCK417,10286 -#define REINIT_RWLOCK(REINIT_RWLOCK418,10309 -#define BlobTypeAdjust(BlobTypeAdjust419,10334 -#define NoAGCAtomAdjust(NoAGCAtomAdjust420,10364 -#define OrArgAdjust(OrArgAdjust421,10395 -#define TabEntryAdjust(TabEntryAdjust422,10418 -#define IntegerAdjust(IntegerAdjust423,10444 -#define AddrAdjust(AddrAdjust424,10474 -#define MFileAdjust(MFileAdjust425,10500 -#define CodeVarAdjust(CodeVarAdjust426,10527 -#define ConstantAdjust(ConstantAdjust427,10556 -#define ArityAdjust(ArityAdjust428,10586 -#define DoubleInCodeAdjust(DoubleInCodeAdjust429,10613 -#define IntegerInCodeAdjust(IntegerInCodeAdjust430,10643 -#define OpcodeAdjust(OpcodeAdjust431,10674 -ModuleAdjust(Term t)ModuleAdjust434,10722 -PredEntryAdjust(PredEntry *pe)PredEntryAdjust441,10822 -PtoPredAdjust(PredEntry *pe)PtoPredAdjust448,10920 -#define ExternalFunctionAdjust(ExternalFunctionAdjust455,10991 -#define DBRecordAdjust(DBRecordAdjust456,11029 -#define ModEntryPtrAdjust(ModEntryPtrAdjust457,11059 -#define AtomEntryAdjust(AtomEntryAdjust458,11092 -#define GlobalEntryAdjust(GlobalEntryAdjust459,11123 -#define BlobTermInCodeAdjust(BlobTermInCodeAdjust460,11156 -#define CellPtoHeapAdjust(CellPtoHeapAdjust461,11192 -#define PtoAtomHashEntryAdjust(PtoAtomHashEntryAdjust462,11225 -#define CellPtoHeapCellAdjust(CellPtoHeapCellAdjust463,11263 -#define CellPtoTRAdjust(CellPtoTRAdjust464,11300 -#define CodeAddrAdjust(CodeAddrAdjust465,11331 -#define ConsultObjAdjust(ConsultObjAdjust466,11361 -#define DelayAddrAdjust(DelayAddrAdjust467,11393 -#define DelayAdjust(DelayAdjust468,11424 -#define GlobalAdjust(GlobalAdjust469,11451 -#define DBRefAdjust(DBRefAdjust471,11480 -DBRefAdjust__ (DBRef dbt USES_REGS)DBRefAdjust__473,11556 -#define DBRefPAdjust(DBRefPAdjust479,11631 -#define DBTermAdjust(DBTermAdjust480,11659 -#define LUIndexAdjust(LUIndexAdjust481,11687 -#define SIndexAdjust(SIndexAdjust482,11716 -#define LocalAddrAdjust(LocalAddrAdjust483,11744 -#define GlobalAddrAdjust(GlobalAddrAdjust484,11775 -#define OpListAdjust(OpListAdjust485,11807 -#define PtoLUCAdjust(PtoLUCAdjust486,11835 -#define PtoStCAdjust(PtoStCAdjust487,11863 -#define PtoArrayEAdjust(PtoArrayEAdjust488,11891 -#define PtoArraySAdjust(PtoArraySAdjust489,11922 -#define PtoGlobalEAdjust(PtoGlobalEAdjust490,11953 -#define PtoDelayAdjust(PtoDelayAdjust491,11985 -#define PtoGloAdjust(PtoGloAdjust492,12015 -#define PtoLocAdjust(PtoLocAdjust493,12043 -#define PtoHeapCellAdjust(PtoHeapCellAdjust494,12071 -#define TermToGlobalAdjust(TermToGlobalAdjust495,12104 -#define PtoOpAdjust(PtoOpAdjust496,12138 -#define PtoLUClauseAdjust(PtoLUClauseAdjust497,12165 -#define PtoLUIndexAdjust(PtoLUIndexAdjust498,12198 -#define PtoDBTLAdjust(PtoDBTLAdjust499,12230 -#define PtoPtoPredAdjust(PtoPtoPredAdjust500,12259 -#define OpRTableAdjust(OpRTableAdjust501,12291 -#define OpEntryAdjust(OpEntryAdjust502,12321 -#define PropAdjust(PropAdjust503,12350 -#define TrailAddrAdjust(TrailAddrAdjust504,12376 -#define XAdjust(XAdjust505,12407 -#define YAdjust(YAdjust506,12430 -#define HoldEntryAdjust(HoldEntryAdjust507,12453 -#define CodeCharPAdjust(CodeCharPAdjust508,12484 -#define CodeConstCharPAdjust(CodeConstCharPAdjust509,12515 -#define CodeVoidPAdjust(CodeVoidPAdjust510,12551 -#define HaltHookAdjust(HaltHookAdjust511,12582 -#define recompute_mask(recompute_mask513,12613 -#define rehash(rehash515,12642 -static void RestoreFlags( UInt NFlags )RestoreFlags518,12689 -RestoreHashPreds( USES_REGS1 )RestoreHashPreds525,12766 -RestoreAtomList(Atom atm USES_REGS)RestoreAtomList531,12815 -static size_t save_bytes(FILE *stream, void *ptr, size_t sz)save_bytes535,12856 -static size_t save_byte(FILE *stream, int byte)save_byte540,12959 -static size_t save_bits16(FILE *stream, BITS16 val)save_bits16546,13047 -static size_t save_UInt(FILE *stream, UInt val)save_UInt552,13171 -static size_t save_Int(FILE *stream, Int val)save_Int558,13287 -static size_t save_tag(FILE *stream, qlf_tag_t tag)save_tag564,13399 -static size_t save_predFlags(FILE *stream, pred_flags_t predFlags)save_predFlags569,13489 -SaveHash(FILE *stream)SaveHash576,13657 -save_clauses(FILE *stream, PredEntry *pp) {save_clauses637,15796 -save_pred(FILE *stream, PredEntry *ap) {save_pred700,17575 -clean_pred(PredEntry *pp USES_REGS) {clean_pred712,17952 -mark_pred(PredEntry *ap)mark_pred722,18181 -mark_ops(FILE *stream, Term mod) {mark_ops747,18777 -save_ops(FILE *stream, Term mod) {save_ops761,19035 -save_header(FILE *stream, char type[])save_header779,19492 -save_module(FILE *stream, Term mod) {save_module788,19752 -save_program(FILE *stream) {save_program817,20489 -save_file(FILE *stream, Atom FileName) {save_file862,21554 -qsave_module_preds( USES_REGS1 )qsave_module_preds913,22933 -qsave_program( USES_REGS1 )qsave_program942,23579 -qsave_file( USES_REGS1 )qsave_file954,23784 -void Yap_InitQLY(void)Yap_InitQLY974,24227 - -C/range.c,326 -static char SccsId[] = "%W% %G%";SccsId18,577 -p_in_range( USES_REGS1 ) {p_in_range27,713 -p_in_range2( USES_REGS1 ) {p_in_range259,1618 -p_euc_dist( USES_REGS1 ) {p_euc_dist96,2686 -volatile int loop_counter = 0;loop_counter107,3131 -p_loop( USES_REGS1 ) {p_loop110,3174 -Yap_InitRange(void)Yap_InitRange117,3258 - -C/realpath.c,1992 -static char sccsid[] = "@(#)realpath.c 8.1 (Berkeley) 2/16/94";color44,2197 -static char sccsid[] = "@(#)realpath.c 8.1 (Berkeley) 2/16/94";color44,2197 -static char rcsid[] =color45,2475 -"$FreeBSD: /repoman/r/ncvs/src/lib/libc/stdlib/realpath.c,v 1.6.2.1 2003/08/03 23:47:39 nectar Exp $";color46,2644 -#endif /* LIBC_SCCS and not lint */color47,2814 -#include <sys/stat.h>color50,3028 -#include <errno.h>color52,3131 -#include <fcntl.h>color53,3230 -#include <stdlib.h>color54,3329 -#include <string.h>color55,3429 -#include <unistd.h>color56,3529 -/*color58,3630 - char *resolved;color68,4324 -{color69,4443 - -C/save.c,3811 -static char SccsId[] = "@(#)save.c 1.3 3/15/90";SccsId19,612 -#define strncat(strncat42,1035 -#define strncpy(strncpy45,1095 -static char end_msg[256] ="*** End of YAP saved state *****";end_msg64,1434 -LightBug(s)LightBug157,4298 -do_SYSTEM_ERROR_INTERNAL(yap_error_number etype, const char *msg)do_SYSTEM_ERROR_INTERNAL165,4373 -int myread(FILE *fd, char *buffer, Int len) {myread189,5096 -mywrite(FILE *fd, char *buff, Int len) {mywrite205,5437 -#define FullSaved FullSaved219,5762 -typedef CELL *CELLPOINTER;CELLPOINTER225,5819 -static FILE *splfild = NULL;splfild227,5849 -static FILE *errout;errout232,5915 -#define errout errout234,5945 -static Int OldHeapUsed;OldHeapUsed239,6005 -static CELL which_save;which_save241,6035 -open_file(char *my_file, int flag)open_file245,6116 -close_file(void)close_file277,6626 -putout(CELL l)putout289,6864 -putcellptr(CELL *l)putcellptr296,6992 -get_cell(void)get_cell303,7120 -get_header_cell(void)get_header_cell312,7273 -get_cellptr(void)get_cellptr329,7659 -put_info(int info, int mode USES_REGS)put_info343,7944 -save_regs(int mode USES_REGS)save_regs381,9208 -save_code_info(void)save_code_info488,11843 -save_heap(void)save_heap508,12288 -save_stacks(int mode USES_REGS)save_stacks524,12623 -save_crc(void)save_crc573,13738 -do_save(int mode USES_REGS) {do_save580,13829 -p_save2( USES_REGS1 )p_save2616,14865 -p_save_program( USES_REGS1 )p_save_program650,15680 -check_header(CELL *info, CELL *ATrail, CELL *AStack, CELL *AHeap USES_REGS)check_header660,15881 -get_heap_info(USES_REGS1)get_heap_info765,19150 -get_regs(int flag USES_REGS)get_regs806,20206 -get_insts(OPCODE old_ops[])get_insts939,23560 -get_hash(void)get_hash946,23711 -CopyCode( USES_REGS1 )CopyCode953,23873 -CopyStacks( USES_REGS1 )CopyStacks964,24180 -CopyTrailEntries( USES_REGS1 )CopyTrailEntries985,24830 -get_coded(int flag, OPCODE old_ops[] USES_REGS)get_coded1000,25132 -restore_heap_regs( USES_REGS1 )restore_heap_regs1036,25852 -restore_regs(int flag USES_REGS)restore_regs1048,26111 -recompute_mask(DBRef dbr)recompute_mask1070,26672 -#define HASH_SHIFT HASH_SHIFT1122,28121 -rehash(CELL *oldcode, int NOfE, int KindOfEntries USES_REGS)rehash1131,28413 -static void RestoreFlags( UInt NFlags )RestoreFlags1198,29969 -RestoreIOStructures(void)RestoreIOStructures1206,30110 -RestoreFreeSpace( USES_REGS1 )RestoreFreeSpace1212,30177 -RestoreAtomList(Atom atm USES_REGS)RestoreAtomList1260,31499 -RestoreHashPreds( USES_REGS1 )RestoreHashPreds1275,31732 -restore_heap(void)restore_heap1326,32891 -ShowEntries(pp)ShowEntries1335,32994 -ShowAtoms()ShowAtoms1345,33195 -commit_to_saved_state(char *s, CELL *Astate, CELL *ATrail, CELL *AStack, CELL *AHeap) {commit_to_saved_state1379,34035 -static int try_open(char *inpf, CELL *Astate, CELL *ATrail, CELL *AStack, CELL *AHeap, FILE **streamp) {try_open1402,34718 -OpenRestore(const char *inpf, const char *YapLibDir, CELL *Astate, CELL *ATrail, CELL *AStack, CELL *AHeap, FILE **streamp)OpenRestore1423,35224 -Yap_OpenRestore(const char *inpf, const char *YapLibDir)Yap_OpenRestore1448,36049 -CloseRestore(void)CloseRestore1462,36320 -check_opcodes(OPCODE old_ops[])check_opcodes1474,36482 -RestoreHeap(OPCODE old_ops[] USES_REGS)RestoreHeap1494,36824 -Yap_SavedInfo(const char *FileName, const char *YapLibDir, CELL *ATrail, CELL *AStack, CELL *AHeap)Yap_SavedInfo1538,37943 -UnmarkTrEntries( USES_REGS1 )UnmarkTrEntries1560,38506 -int in_limbo = FALSE;in_limbo1607,39565 -FreeRecords(void) {FreeRecords1611,39679 -Restore(char *s, char *lib_dir USES_REGS)Restore1629,40044 -Yap_SavedStateRestore(char *s, char *lib_dir)Yap_SavedStateRestore1689,41414 -p_restore( USES_REGS1 )p_restore1696,41531 -Yap_InitSavePreds(void)Yap_InitSavePreds1725,42260 - -C/scanner.c,3879 -#undef HAVE_FINITEHAVE_FINITE416,15570 -#define my_isxdigit(my_isxdigit432,15817 -#define my_isupper(my_isupper434,15972 -#define my_islower(my_islower435,16017 -static void Yap_setCurrentSourceLocation(struct stream_desc *s) {Yap_setCurrentSourceLocation440,16163 -char_kind_t Yap_chtype0[NUMBER_OF_CHARS + 1] = {Yap_chtype0457,16656 -typedef struct scanner_internals {scanner_internals521,19334 - StreamDesc *t;t522,19369 - StreamDesc *t;scanner_internals::t522,19369 - TokEntry *ctok;ctok523,19386 - TokEntry *ctok;scanner_internals::ctok523,19386 - char *_ScannerStack; // = (char *)TR;_ScannerStack524,19404 - char *_ScannerStack; // = (char *)TR;scanner_internals::_ScannerStack524,19404 - char *ScannerExtraBlocks;ScannerExtraBlocks525,19444 - char *ScannerExtraBlocks;scanner_internals::ScannerExtraBlocks525,19444 - CELL *CommentsTail;CommentsTail526,19472 - CELL *CommentsTail;scanner_internals::CommentsTail526,19472 - CELL *Comments;Comments527,19494 - CELL *Comments;scanner_internals::Comments527,19494 - CELL *CommentsNextChar;CommentsNextChar528,19512 - CELL *CommentsNextChar;scanner_internals::CommentsNextChar528,19512 - wchar_t *CommentsBuff;CommentsBuff529,19538 - wchar_t *CommentsBuff;scanner_internals::CommentsBuff529,19538 - size_t CommentsBuffLim;CommentsBuffLim530,19563 - size_t CommentsBuffLim;scanner_internals::CommentsBuffLim530,19563 -} scanner_internals;scanner_internals531,19589 -#define getchr(getchr535,19679 -#define getchrq(getchrq538,19823 -#define getchru(getchru541,19952 -typedef struct scanner_extra_alloc {scanner_extra_alloc544,20052 - struct scanner_extra_alloc *next;next545,20089 - struct scanner_extra_alloc *next;scanner_extra_alloc::next545,20089 - void *filler;filler546,20125 - void *filler;scanner_extra_alloc::filler546,20125 -} ScannerExtraBlock;ScannerExtraBlock547,20141 -#define CodeSpaceError(CodeSpaceError549,20163 -static TokEntry *CodeSpaceError__(TokEntry *t, TokEntry *p,CodeSpaceError__550,20231 -#define TrailSpaceError(TrailSpaceError562,20553 -static TokEntry *TrailSpaceError__(TokEntry *t, TokEntry *l USES_REGS) {TrailSpaceError__563,20617 -#define AuxSpaceError(AuxSpaceError573,20864 -static TokEntry *AuxSpaceError__(TokEntry *p, TokEntry *l,AuxSpaceError__574,20934 -static void *InitScannerMemory(void) {InitScannerMemory588,21364 -static char *AllocScannerMemory(unsigned int size) {AllocScannerMemory597,21563 -char *Yap_AllocScannerMemory(unsigned int size) {Yap_AllocScannerMemory634,22578 -static Term float_send(char *s, int sign) {float_send641,22746 -static Term read_int_overflow(const char *s, Int base, Int val, int sign) {read_int_overflow666,23333 -static int send_error_message(char s[]) {send_error_message685,23707 -static wchar_t read_quoted_char(int *scan_nextp,read_quoted_char691,23803 -static int num_send_error_message(char s[]) {num_send_error_message866,28489 -#define number_overflow(number_overflow872,28595 -static Term get_num(int *chp, int *chbuffp, StreamDesc *inp_stream, int sign) {get_num893,30024 -Term Yap_scan_num(StreamDesc *inp, bool error_on) {Yap_scan_num1103,36065 -#define CHECK_SPACE(CHECK_SPACE1161,37400 -Term Yap_tokRep(void *tokptre) {Yap_tokRep1174,38296 -const char *Yap_tokText(void *tokptre) {Yap_tokText1217,39491 -static void open_comment(int ch, StreamDesc *inp_stream USES_REGS) {open_comment1258,40436 -static void extend_comment(int ch USES_REGS) {extend_comment1282,41088 -static void close_comment(USES_REGS1) {close_comment1292,41438 -static void mark_eof(struct stream_desc *inp_stream) {mark_eof1302,41762 -#define add_ch_to_buff(add_ch_to_buff1306,41863 -TokEntry *Yap_tokenizer(struct stream_desc *inp_stream, bool store_comments,Yap_tokenizer1309,41981 -void Yap_clean_tokenizer(TokEntry *tokstart, VarEntry *vartable,Yap_clean_tokenizer1979,61352 - -C/signals.c,1811 -static char SccsId[] = "%W% %G%";SccsId18,588 -#define HAS_CACHE_REGS HAS_CACHE_REGS21,630 -static yap_signals InteractSIGINT(int ch) {InteractSIGINT59,1324 -static yap_signals ProcessSIGINT(void) {ProcessSIGINT119,2846 -inline static void do_signal(int wid, yap_signals sig USES_REGS) {do_signal139,3227 -inline static bool get_signal(yap_signals sig USES_REGS) {get_signal154,3674 -bool Yap_DisableInterrupts(int wid) {Yap_DisableInterrupts191,4612 -bool Yap_EnableInterrupts(int wid) {Yap_EnableInterrupts197,4732 -bool Yap_HandleSIGINT(void) {Yap_HandleSIGINT206,4908 -static Int p_creep(USES_REGS1) {p_creep219,5197 -static Int p_creep_fail(USES_REGS1) {p_creep_fail230,5432 -static Int stop_creeping(USES_REGS1) {stop_creeping241,5673 -static Int disable_debugging(USES_REGS1) {disable_debugging248,5842 -static Int creep_allowed(USES_REGS1) {creep_allowed253,5945 -void Yap_signal(yap_signals sig) {Yap_signal261,6088 -void Yap_external_signal(int wid, yap_signals sig) {Yap_external_signal270,6231 -int Yap_get_signal__(yap_signals sig USES_REGS) {Yap_get_signal__278,6444 -int Yap_has_signals__(yap_signals sig1, yap_signals sig2 USES_REGS) {Yap_has_signals__283,6563 -int Yap_only_has_signals__(yap_signals sig1, yap_signals sig2 USES_REGS) {Yap_only_has_signals__287,6706 -volatile int volat = 0;volat295,6959 -static Int p_debug(USES_REGS1) { /* $debug(+Flag) */p_debug297,6984 -void Yap_loop(void) {Yap_loop308,7245 -void Yap_debug_end_loop(void) { volat = 1; }Yap_debug_end_loop313,7297 -static Int first_signal(USES_REGS1) {first_signal316,7350 -static Int continue_signals(USES_REGS1) { return first_signal(PASS_REGS1); }continue_signals429,9533 -void Yap_InitSignalCPreds(void) {Yap_InitSignalCPreds431,9611 -void *Yap_InitSignals(int wid) {Yap_InitSignals448,10380 - -C/sort.c,622 -#define NULL NULL24,695 -#define M_EVEN M_EVEN28,769 -#define M_ODD M_ODD29,787 -build_new_list(CELL *pt, Term t USES_REGS)build_new_list42,1194 -void simple_mergesort(CELL *pt, Int size, int my_p)simple_mergesort76,1844 -int key_mergesort(CELL *pt, Int size, int my_p, Functor FuncDMinus)key_mergesort147,3763 -Int compact_mergesort(CELL *pt, Int size, int my_p)compact_mergesort239,6383 -adjust_vector(CELL *pt, Int size)adjust_vector332,8737 -p_sort( USES_REGS1 )p_sort346,8980 -p_msort( USES_REGS1 )p_msort371,9600 -p_ksort( USES_REGS1 )p_ksort393,10114 -Yap_InitSortPreds(void)Yap_InitSortPreds416,10658 - -C/stack.c,6214 -#define IN_BLOCK(IN_BLOCK57,1597 -static PredEntry *get_pred(Term t, Term tmod, char *pname) {get_pred60,1754 -static PredEntry *PredForChoicePt(yamop *p_code, op_numbers *opn) {PredForChoicePt95,2753 -PredEntry *Yap_PredForChoicePt(choiceptr cp, op_numbers *op) {Yap_PredForChoicePt206,5731 -static yamop *cur_clause(PredEntry *pe, yamop *codeptr) {cur_clause213,5914 -static yamop *cur_log_upd_clause(PredEntry *pe, yamop *codeptr) {cur_log_upd_clause230,6356 -bool Yap_search_for_static_predicate_in_use(PredEntry *p,Yap_search_for_static_predicate_in_use244,6769 -static void mark_pred(int mark, PredEntry *pe) {mark_pred317,8881 -static void do_toggle_static_predicates_in_use(int mask) {do_toggle_static_predicates_in_use333,9295 -static Int toggle_static_predicates_in_use(USES_REGS1) {toggle_static_predicates_in_use363,10022 -static void clause_was_found(PredEntry *pp, Atom *pat, UInt *parity) {clause_was_found386,10608 -static void code_in_pred_info(PredEntry *pp, Atom *pat, UInt *parity) {code_in_pred_info412,11266 -static int code_in_pred_lu_index(LogUpdIndex *icl, yamop *codeptr,code_in_pred_lu_index416,11378 -static int code_in_pred_s_index(StaticIndex *icl, yamop *codeptr, void **startp,code_in_pred_s_index435,11883 -static Int find_code_in_clause(PredEntry *pp, yamop *codeptr, void **startp,find_code_in_clause454,12385 -static Term clause_loc(void *clcode, PredEntry *pp) {clause_loc526,14346 -static int cl_code_in_pred(PredEntry *pp, yamop *codeptr, void **startp,cl_code_in_pred559,15247 -static Int code_in_pred(PredEntry *pp, Atom *pat, UInt *parity,code_in_pred604,16504 -static Int PredForCode(yamop *codeptr, Atom *pat, UInt *parity, Term *pmodule,PredForCode636,17428 -Int Yap_PredForCode(yamop *codeptr, find_pred_type where_from, Atom *pat,Yap_PredForCode661,18027 -static PredEntry *walk_got_lu_block(LogUpdIndex *cl, void **startp,walk_got_lu_block694,18913 -static PredEntry *walk_got_lu_clause(LogUpdClause *cl, void **startp,walk_got_lu_clause703,19187 -static PredEntry *found_meta_call(void **startp, void **endp) {found_meta_call711,19457 -static PredEntry *walk_found_c_pred(PredEntry *pp, void **startp, void **endp) {walk_found_c_pred719,19721 -static PredEntry *found_mega_clause(PredEntry *pp, void **startp, void **endp) {found_mega_clause727,20019 -static PredEntry *found_idb_clause(yamop *pc, void **startp, void **endp) {found_idb_clause735,20302 -static PredEntry *found_expand_index(yamop *pc, void **startp, void **endp,found_expand_index744,20567 -static PredEntry *found_fail(yamop *pc, void **startp, void **endp USES_REGS) {found_fail755,20922 -static PredEntry *found_owner_op(yamop *pc, void **startp,found_owner_op762,21187 -static PredEntry *found_expand(yamop *pc, void **startp,found_expand772,21605 -static PredEntry *found_ystop(yamop *pc, int clause_code, void **startp, void **endp, PredEntry *pp USES_REGS) {found_ystop782,21987 -static PredEntry *ClauseInfoForCode(yamop *codeptr, void **startp,ClauseInfoForCode829,23539 -PredEntry *Yap_PredEntryForCode(yamop *codeptr, find_pred_type where_from,Yap_PredEntryForCode846,24010 -static Int in_use(USES_REGS1) { /* '$in_use'(+P,+Mod) */in_use873,24749 -static Int pred_for_code(USES_REGS1) {pred_for_code886,25025 -static LogUpdIndex *find_owner_log_index(LogUpdIndex *cl, yamop *code_p) {find_owner_log_index917,25863 -static StaticIndex *find_owner_static_index(StaticIndex *cl, yamop *code_p) {find_owner_static_index935,26297 -ClauseUnion *Yap_find_owner_index(yamop *ipc, PredEntry *ap) {Yap_find_owner_index953,26737 -static Term all_envs(CELL *env_ptr USES_REGS) {all_envs964,27173 -static Term all_cps(choiceptr b_ptr USES_REGS) {all_cps992,27804 -static Int p_all_choicepoints(USES_REGS1) {p_all_choicepoints1024,28596 -static Int p_all_envs(USES_REGS1) {p_all_envs1035,28894 -static Term clause_info(yamop *codeptr, PredEntry *pp) {clause_info1046,29187 -bool set_clause_info(yamop *codeptr, PredEntry *pp) {set_clause_info1072,29992 -static Term error_culprit(bool internal USES_REGS) {error_culprit1120,31817 -bool Yap_find_prolog_culprit(USES_REGS1) {Yap_find_prolog_culprit1144,32446 -static Term all_calls(bool internal USES_REGS) {all_calls1169,33117 -Term Yap_all_calls(void) {Yap_all_calls1198,33841 -static Int current_stack(USES_REGS1) {current_stack1203,33920 -static void add_code_in_lu_index(LogUpdIndex *cl, PredEntry *pp) {add_code_in_lu_index1216,34226 -static void add_code_in_static_index(StaticIndex *cl, PredEntry *pp) {add_code_in_static_index1226,34518 -static void add_code_in_pred(PredEntry *pp) {add_code_in_pred1236,34822 -void Yap_dump_code_area_for_profiler(void) {Yap_dump_code_area_for_profiler1311,37298 -static Int program_continuation(USES_REGS1) {program_continuation1343,38240 -static Term BuildActivePred(PredEntry *ap, CELL *vect) {BuildActivePred1366,38899 -static int UnifyPredInfo(PredEntry *pe, int start_arg USES_REGS) {UnifyPredInfo1387,39345 -static Int ClauseId(yamop *ipc, PredEntry *pe) {ClauseId1420,40305 -static Int env_info(USES_REGS1) {env_info1426,40434 -static Int p_cpc_info(USES_REGS1) {p_cpc_info1442,40878 -static Int p_choicepoint_info(USES_REGS1) {p_choicepoint_info1451,41131 - parent_pred(USES_REGS1) {parent_pred1633,45736 -#define ONLOCAL(ONLOCAL1653,46373 -static int hidden(Atom at) {hidden1656,46529 -static int legal_env(CELL *ep USES_REGS) {legal_env1669,46856 -static bool handled_exception(USES_REGS1) {handled_exception1688,47319 -void Yap_dump_stack(void) {Yap_dump_stack1710,47848 -void DumpActiveGoals(USES_REGS1) {DumpActiveGoals1816,51654 -void Yap_detect_bug_location(yamop *yap_pc, int where_from, int psize) {Yap_detect_bug_location1950,55850 -static Term build_bug_location(yamop *codeptr, PredEntry *pe) {build_bug_location1974,56728 -Term Yap_pc_location(yamop *pc, choiceptr b_ptr, CELL *env) {Yap_pc_location2032,58458 -Term Yap_env_location(yamop *cp, choiceptr b_ptr, CELL *env, Int ignore_first) {Yap_env_location2050,58877 -static Int clause_location(USES_REGS1) {clause_location2075,59554 -static Int ancestor_location(USES_REGS1) {ancestor_location2080,59713 -void Yap_InitStInfo(void) {Yap_InitStInfo2085,59879 - -C/stackinfo.c,581 -PredForChoicePt(yamop *p_code, op_numbers *opn) {PredForChoicePt58,1629 -Yap_PredForChoicePt(choiceptr cp, op_numbers *op) {Yap_PredForChoicePt170,4539 -static yamop *cur_clause(PredEntry *pe, yamop *codeptr)cur_clause177,4711 -static yamop *cur_log_upd_clause(PredEntry *pe, yamop *codeptr)cur_log_upd_clause194,5136 -search_for_static_predicate_in_use(PredEntry *p, int check_everything)search_for_static_predicate_in_use209,5542 -mark_pred(int mark, PredEntry *pe)mark_pred280,7399 -do_toggle_static_predicates_in_use(int mask)do_toggle_static_predicates_in_use298,7812 - -C/stdpreds.c,5290 -static char SccsId[] = "%W% %G%";SccsId19,645 -#define HAS_CACHE_REGS HAS_CACHE_REGS22,687 -void *(*Yap_JitCall)(JIT_Compiler *jc, yamop *p);Yap_JitCall101,2769 -void (*Yap_llvmShutdown)(void);Yap_llvmShutdown102,2819 -Int (*Yap_traced_absmi)(void);Yap_traced_absmi103,2851 -static Int p_jit(USES_REGS1) { /* '$set_value'(+Atom,+Atomic) */p_jit105,2883 -Int start_eam(USES_REGS1) {start_eam133,3533 -Int cont_eam(USES_REGS1) {cont_eam142,3664 -Int use_eam(USES_REGS1) {use_eam151,3794 -Int commit(USES_REGS1) {commit161,3923 -Int skip_while_var(USES_REGS1) {skip_while_var169,4063 -Int wait_while_var(USES_REGS1) {wait_while_var177,4219 -Int force_wait(USES_REGS1) {force_wait185,4375 -Int eager_split(USES_REGS1) {eager_split193,4523 -Int show_time(USES_REGS1) /* MORE PRECISION */show_time201,4673 -static Int p_setval(USES_REGS1) { /* '$set_value'(+Atom,+Atomic) */p_setval234,5396 -static Int p_value(USES_REGS1) { /* '$get_value'(+Atom,?Val) */p_value251,5952 -static Int p_values(USES_REGS1) { /* '$values'(Atom,Old,New) */p_values264,6313 -static Int p_opdec(USES_REGS1) { /* '$opdec'(p,type,atom) */p_opdec289,6883 -double strtod(s, pe) char *s, **pe;strtod306,7330 -#define INFINITY INFINITY348,7837 -static UInt runtime(USES_REGS1) {runtime351,7874 -static Int p_runtime(USES_REGS1) {p_runtime356,8034 -static Int p_cputime(USES_REGS1) {p_cputime375,8627 -static Int p_systime(USES_REGS1) {p_systime382,8847 -static Int p_walltime(USES_REGS1) {p_walltime389,9067 -static Int p_univ(USES_REGS1) { /* A =.. L */p_univ398,9362 -static Int p_abort(USES_REGS1) { /* abort */p_abort567,14070 - p_halt(USES_REGS1) { /* halt */p_halt580,14296 -static bool valid_prop(Prop p, Term task) {valid_prop636,15838 -static PropEntry *followLinkedListOfProps(PropEntry *p, Term task) {followLinkedListOfProps653,16260 -static PropEntry *getPredProp(PropEntry *p, Term task) {getPredProp664,16489 -static PropEntry *nextPredForAtom(PropEntry *p, Term task) {nextPredForAtom682,16938 -static Prop initFunctorSearch(Term t3, Term t2, Term task) {initFunctorSearch704,17548 -static PredEntry *firstModulePred(PredEntry *npp, Term task) {firstModulePred738,18562 -static PredEntry *firstModulesPred(PredEntry *npp, ModEntry *m, Term task) {firstModulesPred747,18767 -static Int cont_current_predicate(USES_REGS1) {cont_current_predicate762,19099 -static Int current_predicate(USES_REGS1) {current_predicate943,23784 -static OpEntry *NextOp(Prop pp USES_REGS) {NextOp949,23971 -int Yap_IsOp(Atom at) {Yap_IsOp958,24224 -int Yap_IsOpMaxPrio(Atom at) {Yap_IsOpMaxPrio964,24351 -static Int unify_op(OpEntry *op USES_REGS) {unify_op979,24677 -static Int cont_current_op(USES_REGS1) {cont_current_op990,25038 -static Int init_current_op(init_current_op1017,25684 -static Int cont_current_atom_op(USES_REGS1) {cont_current_atom_op1024,25892 -static Int init_current_atom_op(init_current_atom_op1050,26505 -void Yap_show_statistics(void) {Yap_show_statistics1091,27530 -static Int p_statistics_heap_max(USES_REGS1) {p_statistics_heap_max1128,29021 -static Int TrailTide = -1, LocalTide = -1, GlobalTide = -1;TrailTide1138,29293 -static Int TrailTide = -1, LocalTide = -1, GlobalTide = -1;LocalTide1138,29293 -static Int TrailTide = -1, LocalTide = -1, GlobalTide = -1;GlobalTide1138,29293 -static Int TrailMax(void) {TrailMax1141,29380 -static Int p_statistics_trail_max(USES_REGS1) {p_statistics_trail_max1168,29941 -static Int GlobalMax(void) {GlobalMax1175,30095 -static Int p_statistics_global_max(USES_REGS1) {p_statistics_global_max1203,30677 -static Int LocalMax(void) {LocalMax1209,30806 -static Int p_statistics_local_max(USES_REGS1) {p_statistics_local_max1237,31388 -static Int p_statistics_heap_info(USES_REGS1) {p_statistics_heap_info1243,31515 -static Int p_statistics_stacks_info(USES_REGS1) {p_statistics_stacks_info1260,32044 -static Int p_statistics_trail_info(USES_REGS1) {p_statistics_trail_info1269,32383 -static Int p_statistics_atom_info(USES_REGS1) {p_statistics_atom_info1277,32659 -static Int p_statistics_db_size(USES_REGS1) {p_statistics_db_size1329,34090 -static Int p_statistics_lu_db_size(USES_REGS1) {p_statistics_lu_db_size1339,34437 -static Int p_executable(USES_REGS1) {p_executable1350,34868 -static Int p_system_mode(USES_REGS1) {p_system_mode1360,35212 -static Int p_lock_system(USES_REGS1) {p_lock_system1378,35623 -static Int p_unlock_system(USES_REGS1) {p_unlock_system1383,35700 -static Int enter_undefp(USES_REGS1) {enter_undefp1388,35781 -static Int exit_undefp(USES_REGS1) {exit_undefp1396,35914 -static Int p_dump_active_goals(USES_REGS1) {p_dump_active_goals1407,36098 -static Int p_euc_dist(USES_REGS1) {p_euc_dist1414,36203 -volatile int loop_counter = 0;loop_counter1427,36740 -static Int p_loop(USES_REGS1) {p_loop1429,36772 -static Int p_break(USES_REGS1) {p_break1436,36865 -void Yap_InitBackCPreds(void) {Yap_InitBackCPreds1449,37093 -typedef void (*Proc)(void);Proc1466,37709 -Proc E_Modules[] = {/* init_fc,*/ (Proc)0};E_Modules1468,37738 -static Int p_parallel_mode(USES_REGS1) { return FALSE; }p_parallel_mode1471,37796 -static Int p_yapor_workers(USES_REGS1) { return FALSE; }p_yapor_workers1473,37854 -void Yap_InitCPreds(void) {Yap_InitCPreds1476,37931 - -C/text.c,4370 -inline static size_t min_size(size_t i, size_t j) { return (i < j ? i : j); }min_size30,833 -#define wcsnlen(wcsnlen31,911 -#define NAN NAN35,976 -#define MAX_PATHNAME MAX_PATHNAME38,1008 -struct mblock {mblock40,1035 - struct mblock *prev, *next;prev41,1051 - struct mblock *prev, *next;mblock::prev41,1051 - struct mblock *prev, *next;next41,1051 - struct mblock *prev, *next;mblock::next41,1051 - int lvl;lvl42,1081 - int lvl;mblock::lvl42,1081 - size_t sz;sz43,1092 - size_t sz;mblock::sz43,1092 -typedef struct TextBuffer_manager {TextBuffer_manager46,1109 - void *buf, *ptr;buf47,1145 - void *buf, *ptr;TextBuffer_manager::buf47,1145 - void *buf, *ptr;ptr47,1145 - void *buf, *ptr;TextBuffer_manager::ptr47,1145 - size_t sz;sz48,1164 - size_t sz;TextBuffer_manager::sz48,1164 - struct mblock *first[16];first49,1177 - struct mblock *first[16];TextBuffer_manager::first49,1177 - struct mblock *last[16];last50,1205 - struct mblock *last[16];TextBuffer_manager::last50,1205 - int lvl;lvl51,1232 - int lvl;TextBuffer_manager::lvl51,1232 -} text_buffer_t;text_buffer_t52,1243 -int push_text_stack(USES_REGS1) { return LOCAL_TextBuffer->lvl++; }push_text_stack54,1261 -int pop_text_stack(int i) {pop_text_stack56,1330 -void *protected_pop_text_stack(int i, void *protected, bool tmp,protected_pop_text_stack73,1696 -void *Malloc(size_t sz USES_REGS) {Malloc102,2417 -void *Realloc(void *pt, size_t sz USES_REGS) {Realloc123,2917 -void Free(void *pt USES_REGS) {Free143,3374 -void *Yap_InitTextAllocator(void) {Yap_InitTextAllocator162,3866 -static size_t MaxTmp(USES_REGS1) {MaxTmp167,4000 -static Term Globalize(Term v USES_REGS) {Globalize173,4145 -static Int SkipListCodes(unsigned char **bufp, Term *l, Term **tailp,SkipListCodes184,4369 -static unsigned char *latin2utf8(seq_tv_t *inp, size_t *lengp) {latin2utf8285,6868 -static unsigned char *wchar2utf8(seq_tv_t *inp, size_t *lengp) {wchar2utf8304,7284 -static unsigned char *to_buffer(unsigned char *buf, Term t, seq_tv_t *inp,to_buffer320,7682 -static unsigned char *Yap_ListOfCodesToBuffer(unsigned char *buf, Term t,Yap_ListOfCodesToBuffer339,8128 -static unsigned char *Yap_ListOfAtomsToBuffer(unsigned char *buf, Term t,Yap_ListOfAtomsToBuffer346,8463 -static unsigned char *Yap_ListToBuffer(unsigned char *buf, Term t,Yap_ListToBuffer353,8806 -static yap_error_number gen_type_error(int flags) {gen_type_error361,9146 -unsigned char *Yap_readText(seq_tv_t *inp, size_t *lengp) {Yap_readText387,10191 -static Term write_strings(unsigned char *s0, seq_tv_t *out,write_strings510,14656 -static Term write_atoms(void *s0, seq_tv_t *out, size_t leng USES_REGS) {write_atoms555,15675 -static Term write_codes(void *s0, seq_tv_t *out, size_t leng USES_REGS) {write_codes604,16751 -static Atom write_atom(void *s0, seq_tv_t *out, size_t leng USES_REGS) {write_atom650,17713 -size_t write_buffer(unsigned char *s0, seq_tv_t *out, size_t leng USES_REGS) {write_buffer666,18098 -static size_t write_length(const unsigned char *s0, seq_tv_t *out,write_length734,19818 -static Term write_number(unsigned char *s, seq_tv_t *out, int size,write_number739,19955 -static Term string_to_term(void *s, seq_tv_t *out, size_t leng USES_REGS) {string_to_term748,20212 -bool write_Text(unsigned char *inp, seq_tv_t *out, size_t leng USES_REGS) {write_Text754,20377 -static size_t upcase(void *s0, seq_tv_t *out USES_REGS) {upcase825,22636 -static size_t downcase(void *s0, seq_tv_t *out USES_REGS) {downcase838,22925 -bool Yap_CVT_Text(seq_tv_t *inp, seq_tv_t *out USES_REGS) {Yap_CVT_Text851,23216 -static int cmp_Text(const unsigned char *s1, const unsigned char *s2, int l) {cmp_Text912,25071 -static unsigned char *concat(int n, void *sv[] USES_REGS) {concat926,25418 -static void *slice(size_t min, size_t max, unsigned char *buf USES_REGS) {slice948,25839 -bool Yap_Concat_Text(int tot, seq_tv_t inp[], seq_tv_t *out USES_REGS) {Yap_Concat_Text964,26243 -bool Yap_Splice_Text(int n, size_t cuts[], seq_tv_t *inp,Yap_Splice_Text989,26781 -const char *Yap_TextTermToText(Term t, char *buf, size_t len, encoding_t enc) {Yap_TextTermToText1068,28690 -const char *Yap_PredIndicatorToUTF8String(PredEntry *ap) {Yap_PredIndicatorToUTF8String1103,29542 -Term Yap_MkTextTerm(const char *s, encoding_t enc, Term tguide) {Yap_MkTextTerm1168,31025 - -C/threads.c,6868 -static char SccsId[] = "%W% %G%";SccsId18,585 -blob_type_t PL_Message_Queue = {PL_Message_Queue47,1008 -bool debug_locks = true, debug_pe_locks = true;debug_locks60,1214 -bool debug_locks = true, debug_pe_locks = true;debug_pe_locks60,1214 -static Int p_debug_locks( USES_REGS1 ) { debug_pe_locks = 1; return TRUE; }p_debug_locks61,1262 -static Int p_nodebug_locks( USES_REGS1 ) { debug_locks = 0; debug_pe_locks = 0; return TRUE; }p_nodebug_locks63,1339 -Yap_ThreadID( void )Yap_ThreadID74,1484 -Yap_NOfThreads(void) {Yap_NOfThreads91,1910 -allocate_new_tid(void)allocate_new_tid97,2013 -mboxCreate( Term namet, mbox_t *mboxp USES_REGS )mboxCreate128,2925 -mboxDestroy( mbox_t *mboxp USES_REGS )mboxDestroy150,3433 -mboxSend( mbox_t *mboxp, Term t USES_REGS )mboxSend171,4023 -mboxReceive( mbox_t *mboxp, Term t USES_REGS )mboxReceive190,4494 -mboxPeek( mbox_t *mboxp, Term t USES_REGS )mboxPeek231,5619 -store_specs(int new_worker_id, UInt ssize, UInt tsize, UInt sysize, Term tgoal, Term tdetach, Term texit)store_specs241,5876 -kill_thread_engine (int wid, int always_die)kill_thread_engine310,8123 -thread_die(int wid, int always_die)thread_die364,9890 -setup_engine(int myworker_id, int init_thread)setup_engine370,9981 -start_thread(int myworker_id)start_thread401,11177 -thread_run(void *widp)thread_run411,11422 -p_thread_new_tid( USES_REGS1 )p_thread_new_tid492,13806 -init_thread_engine(int new_worker_id, UInt ssize, UInt tsize, UInt sysize, Term tgoal, Term tdetach, Term texit)init_thread_engine503,14068 -p_create_thread( USES_REGS1 )p_create_thread509,14279 -p_thread_sleep( USES_REGS1 )p_thread_sleep550,15701 -p_thread_self( USES_REGS1 )p_thread_self585,16785 -p_thread_zombie_self( USES_REGS1 )p_thread_zombie_self594,16982 -p_thread_status_lock( USES_REGS1 )p_thread_status_lock610,17453 -p_thread_status_unlock( USES_REGS1 )p_thread_status_unlock620,17717 -Yap_thread_self(void)Yap_thread_self630,17978 -Yap_thread_create_engine(YAP_thread_attr *ops)Yap_thread_create_engine639,18115 -Yap_thread_attach_engine(int wid)Yap_thread_attach_engine681,19411 -Yap_thread_detach_engine(int wid)Yap_thread_detach_engine701,20025 -Yap_thread_destroy_engine(int wid)Yap_thread_destroy_engine712,20319 -p_thread_join( USES_REGS1 )p_thread_join726,20607 -p_thread_destroy( USES_REGS1 )p_thread_destroy753,21318 -p_thread_detach( USES_REGS1 )p_thread_detach765,21607 -p_thread_detached( USES_REGS1 )p_thread_detached781,22032 -p_thread_detached2( USES_REGS1 )p_thread_detached2790,22194 -p_thread_exit( USES_REGS1 )p_thread_exit800,22409 -p_thread_set_concurrency( USES_REGS1 )p_thread_set_concurrency809,22557 -p_thread_yield( USES_REGS1 )p_thread_yield834,23095 -p_valid_thread( USES_REGS1 )p_valid_thread843,23205 -typedef struct swi_mutex {swi_mutex851,23372 - UInt owners;owners852,23399 - UInt owners;swi_mutex::owners852,23399 - Int tid_own;tid_own853,23414 - Int tid_own;swi_mutex::tid_own853,23414 - MutexEntry *alias;alias854,23429 - MutexEntry *alias;swi_mutex::alias854,23429 - pthread_mutex_t m;m855,23450 - pthread_mutex_t m;swi_mutex::m855,23450 - UInt timestamp;timestamp856,23471 - UInt timestamp;swi_mutex::timestamp856,23471 - struct swi_mutex *backbone; // chain of all mutexesbackbone857,23489 - struct swi_mutex *backbone; // chain of all mutexesswi_mutex::backbone857,23489 - struct swi_mutex *prev, *next; // chain of locked mutexesprev858,23543 - struct swi_mutex *prev, *next; // chain of locked mutexesswi_mutex::prev858,23543 - struct swi_mutex *prev, *next; // chain of locked mutexesnext858,23543 - struct swi_mutex *prev, *next; // chain of locked mutexesswi_mutex::next858,23543 -} SWIMutex;SWIMutex859,23603 -static SWIMutex *NewMutex(void) {NewMutex861,23616 -#define MutexOfTerm(MutexOfTerm907,24841 -static SWIMutex *MutexOfTerm__(Term t USES_REGS){MutexOfTerm__909,24892 -p_new_mutex( USES_REGS1 ){p_new_mutex936,25608 -static Int p_destroy_mutex( USES_REGS1 )p_destroy_mutex967,26548 -LockMutex( SWIMutex *mut USES_REGS)LockMutex991,27069 -UnLockMutex( SWIMutex *mut USES_REGS)UnLockMutex1011,27423 -p_lock_mutex( USES_REGS1 )p_lock_mutex1054,28702 -p_trylock_mutex( USES_REGS1 )p_trylock_mutex1071,29014 -p_unlock_mutex( USES_REGS1 )p_unlock_mutex1094,29464 -p_with_mutex( USES_REGS1 )p_with_mutex1119,30183 -p_with_with_mutex( USES_REGS1 )p_with_with_mutex1191,31863 -p_unlock_with_mutex( USES_REGS1 )p_unlock_with_mutex1203,32139 -p_mutex_info( USES_REGS1 )p_mutex_info1210,32275 - UInt indx;indx1222,32520 - UInt indx;__anon18::indx1222,32520 - mbox_t mbox;mbox1223,32533 - mbox_t mbox;__anon18::mbox1223,32533 -} counted_mbox;counted_mbox1224,32548 - p_mbox_create( USES_REGS1 )p_mbox_create1227,32577 -p_mbox_destroy( USES_REGS1 )p_mbox_destroy1266,33600 - getMbox(Term t)getMbox1298,34259 - p_mbox_send( USES_REGS1 )p_mbox_send1341,35185 - p_mbox_size( USES_REGS1 )p_mbox_size1352,35381 - p_mbox_receive( USES_REGS1 )p_mbox_receive1364,35581 - p_mbox_peek( USES_REGS1 )p_mbox_peek1376,35788 -p_cond_create( USES_REGS1 )p_cond_create1387,35987 - p_cond_destroy( USES_REGS1 )p_cond_destroy1400,36261 - p_cond_signal( USES_REGS1 )p_cond_signal1411,36496 - p_cond_broadcast( USES_REGS1 )p_cond_broadcast1421,36692 - p_cond_wait( USES_REGS1 )p_cond_wait1431,36894 -p_thread_stacks( USES_REGS1 )p_thread_stacks1440,37124 -p_thread_atexit( USES_REGS1 )p_thread_atexit1459,37786 -p_thread_signal( USES_REGS1 )p_thread_signal1494,38732 -p_no_threads( USES_REGS1 )p_no_threads1510,39222 -p_nof_threads( USES_REGS1 )p_nof_threads1516,39313 -p_max_workers( USES_REGS1 )p_max_workers1530,39650 -p_max_threads( USES_REGS1 )p_max_threads1536,39777 -p_nof_threads_created( USES_REGS1 )p_nof_threads_created1542,39904 -p_thread_runtime( USES_REGS1 )p_thread_runtime1548,40048 -p_thread_self_lock( USES_REGS1 )p_thread_self_lock1554,40193 -p_thread_unlock( USES_REGS1 )p_thread_unlock1561,40364 -system_thread_id(void)system_thread_id1569,40541 -Yap_InitFirstWorkerThreadHandle(void)Yap_InitFirstWorkerThreadHandle1588,40902 -void Yap_InitThreadPreds(void)Yap_InitThreadPreds1604,41424 -Yap_NOfThreads(void) {Yap_NOfThreads1684,45307 -p_no_threads(void)p_no_threads1695,45434 -p_nof_threads(void)p_nof_threads1701,45516 -p_max_threads(void)p_max_threads1707,45621 -p_nof_threads_created(void)p_nof_threads_created1713,45726 -p_thread_runtime(void)p_thread_runtime1719,45839 -p_thread_self(void)p_thread_self1725,45950 -p_thread_stacks(void)p_thread_stacks1731,46057 -p_thread_unlock(void)p_thread_unlock1737,46144 -p_max_workers(void)p_max_workers1743,46230 -p_new_mutex(void)p_new_mutex1749,46335 - p_with_mutex( USES_REGS1 )p_with_mutex1756,46478 -Yap_InitFirstWorkerThreadHandle(void)Yap_InitFirstWorkerThreadHandle1826,48172 -void Yap_InitThreadPreds(void)Yap_InitThreadPreds1830,48215 - -C/traced_absmi_insts.h,1660 -#define PASS_REGSPASS_REGS2,17 -#define PASS_REGS PASS_REGS4,43 -#define undef_goal(undef_goal7,83 - check_trail(TR);TR52,1401 -CACHE_Y(YREG);YREG56,1610 - EMIT_SIMPLE_BLOCK_TEST(TRY_ME_YAPOR);TRY_ME_YAPOR68,2031 - SCH_set_load(B_YREG);B_YREG69,2076 - EMIT_MULTIPLE_DESTINY_BLOCK_TEST(TRY_ME_END);TRY_ME_END71,2125 - SET_BB(B_YREG);B_YREG73,2213 - CACHE_Y(B);B81,2407 - EMIT_SIMPLE_BLOCK_TEST(RETRY_ME_FROZEN);RETRY_ME_FROZEN87,2648 - EMIT_SIMPLE_BLOCK_TEST(RETRY_ME_NOFROZEN);RETRY_ME_NOFROZEN91,2787 - EMIT_SIMPLE_BLOCK_TEST(RETRY_ME_END);RETRY_ME_END94,2903 - SET_BB(B_YREG);B_YREG95,2948 - CACHE_Y(B);B104,3182 - EMIT_SIMPLE_BLOCK_TEST(TRUST_ME_IF);TRUST_ME_IF105,3201 - EMIT_SIMPLE_BLOCK_TEST(TRUST_ME_END);TRUST_ME_END127,3818 - SET_BB(B_YREG);B_YREG129,3898 - CACHE_Y(B);B161,5035 - EMIT_SIMPLE_BLOCK(PROFILED_RETRY_ME_FROZEN);PROFILED_RETRY_ME_FROZEN170,5439 - EMIT_SIMPLE_BLOCK(PROFILED_RETRY_ME_NOFROZEN);PROFILED_RETRY_ME_NOFROZEN174,5582 - EMIT_SIMPLE_BLOCK(PROFILED_RETRY_ME_END);PROFILED_RETRY_ME_END177,5702 - SET_BB(B_YREG);B_YREG178,5751 - CACHE_Y(B);B187,6012 - EMIT_SIMPLE_BLOCK(PROFILED_TRUST_ME_IF);PROFILED_TRUST_ME_IF188,6031 - EMIT_SIMPLE_BLOCK(PROFILED_TRUST_ME_END);PROFILED_TRUST_ME_END210,6635 - SET_BB(B_YREG);B_YREG211,6684 - check_trail(TR);TR222,7079 - EMIT_SIMPLE_BLOCK(PROFILED_TRUST_LOGICAL_END);PROFILED_TRUST_LOGICAL_END261,8348 - CACHE_Y(B);B262,8399 - EMIT_MULTIPLE_DESTINY_BLOCK_TEST(EXECUTE_CPRED_END);EXECUTE_CPRED_END6387,175371 - ENDD(d0);d06416,175975 - -C/tracer.c,1505 -static char *send_tracer_message(char *start, char *name, arity_t arity,send_tracer_message31,817 -unsigned long long vsc_count;vsc_count118,2800 -unsigned long vsc_count;vsc_count120,2836 -static int thread_trace;thread_trace124,2881 -volatile int v;v152,3491 -CELL old_value = 0L, old_value2 = 0L;old_value154,3508 -CELL old_value = 0L, old_value2 = 0L;old_value2154,3508 -void jmp_deb2(void) { fprintf(stderr, "Here\n"); }jmp_deb2158,3583 -void jmp_deb(int i) {jmp_deb160,3635 -struct various_codes *sc;sc167,3754 -bool low_level_trace__(yap_low_level_port port, PredEntry *pred, CELL *args) {low_level_trace__197,4274 -void toggle_low_level_trace(void) {toggle_low_level_trace466,12609 -static Int start_low_level_trace(USES_REGS1) {start_low_level_trace470,12700 -static Int total_choicepoints(USES_REGS1) {total_choicepoints475,12800 -static Int reset_total_choicepoints(USES_REGS1) {reset_total_choicepoints479,12914 -static Int show_low_level_trace(USES_REGS1) {show_low_level_trace484,13014 -static Int start_low_level_trace2(USES_REGS1) {start_low_level_trace2490,13148 -static Int stop_low_level_trace(USES_REGS1) {stop_low_level_trace508,13525 -volatile int v_wait;v_wait517,13706 -static Int vsc_wait(USES_REGS1) {vsc_wait519,13728 -static Int vsc_go(USES_REGS1) {vsc_go525,13804 -void Yap_InitLowLevelTrace(void) {Yap_InitLowLevelTrace530,13868 -static null(USES_REGS1) { return true; }null558,14852 -void Yap_InitLowLevelTrace(void) {Yap_InitLowLevelTrace560,14894 - -C/type_absmi_insts.h,2316 - BEGD(d0);d010,238 - BEGP(pt0);pt023,499 - ENDP(pt0);pt027,605 - ENDD(d0);d028,620 - BEGD(d0);d032,670 - BEGP(pt0);pt033,684 - ENDP(pt0);pt050,1055 - ENDD(d0);d051,1070 - BEGD(d0);d055,1122 - BEGP(pt0);pt069,1385 - ENDP(pt0);pt073,1495 - ENDD(d0);d074,1510 - BEGD(d0);d078,1562 - BEGP(pt0);pt079,1576 - ENDP(pt0);pt097,1953 - ENDD(d0);d098,1968 - BEGD(d0);d0102,2021 - BEGP(pt0);pt0138,2728 - ENDP(pt0);pt0142,2840 - ENDD(d0);d0143,2855 - BEGD(d0);d0147,2908 - BEGP(pt0);pt0148,2922 - ENDP(pt0);pt0188,3747 - ENDD(d0);d0189,3762 - BEGD(d0);d0193,3814 - PREG = NEXTOP(PREG, xl);PREG197,3910 - BEGP(pt0);pt0200,3954 - ENDP(pt0);pt0204,4064 - ENDD(d0);d0205,4079 - BEGD(d0);d0209,4131 - BEGP(pt0);pt0210,4145 - PREG = NEXTOP(PREG, yl);PREG215,4259 - ENDP(pt0);pt0221,4399 - ENDD(d0);d0222,4414 - BEGD(d0);d0226,4466 - BEGP(pt0);pt0260,5170 - ENDP(pt0);pt0264,5280 - ENDD(d0);d0265,5295 - BEGD(d0);d0269,5347 - BEGP(pt0);pt0270,5361 - ENDP(pt0);pt0310,6212 - ENDD(d0);d0311,6227 - BEGD(d0);d0315,6276 - PREG = PREG->y_u.xl.F;PREG320,6389 - BEGP(pt0);pt0323,6431 - ENDP(pt0);pt0327,6537 - ENDD(d0);d0328,6552 - BEGD(d0);d0332,6601 - BEGP(pt0);pt0333,6615 - PREG = PREG->y_u.yl.F;PREG339,6746 - ENDP(pt0);pt0345,6880 - ENDD(d0);d0346,6895 - BEGD(d0);d0350,6947 - BEGP(pt0);pt0366,7305 - ENDP(pt0);pt0370,7413 - ENDD(d0);d0371,7428 - BEGD(d0);d0375,7480 - BEGP(pt0);pt0376,7494 - ENDP(pt0);pt0396,7964 - ENDD(d0);d0397,7979 - BEGD(d0);d0401,8034 - BEGP(pt0);pt0415,8298 - ENDP(pt0);pt0419,8406 - ENDD(d0);d0420,8421 - BEGD(d0);d0424,8476 - BEGP(pt0);pt0425,8490 - ENDP(pt0);pt0443,8866 - ENDD(d0);d0444,8881 - BEGD(d0);d0448,8935 - BEGP(pt0);pt0470,9378 - ENDP(pt0);pt0474,9492 - ENDD(d0);d0475,9507 - BEGD(d0);d0479,9561 - BEGP(pt0);pt0480,9575 - ENDP(pt0);pt0506,10136 - ENDD(d0);d0507,10151 - BEGD(d0);d0511,10202 - BEGP(pt0);pt0523,10441 - ENDP(pt0);pt0527,10549 - ENDD(d0);d0528,10564 - BEGD(d0);d0532,10615 - BEGP(pt0);pt0533,10629 - ENDP(pt0);pt0549,10980 - ENDD(d0);d0550,10995 - -C/udi.c,544 -UT_icd udicb_icd = {sizeof(UdiControlBlock), NULL, NULL, NULL};udicb_icd9,184 -UT_array *indexing_structures;indexing_structures10,248 -Yap_UdiRegister(UdiControlBlock cb){Yap_UdiRegister16,323 -p_new_udi( USES_REGS1 )p_new_udi26,550 -p_udi_args_init(Term spec, int arity, UdiInfo blk)p_udi_args_init110,2761 -Yap_udi_init(void)Yap_udi_init153,3768 -Yap_new_udi_clause(PredEntry *p, yamop *cl, Term t)Yap_new_udi_clause170,4132 -Yap_udi_search(PredEntry *p)Yap_udi_search205,4969 -Yap_udi_abolish(PredEntry *p)Yap_udi_abolish252,6033 - -C/unify.c,2199 -#define IN_UNIFY_C IN_UNIFY_C46,1820 -#define HAS_CACHE_REGS HAS_CACHE_REGS48,1842 -#define to_visit_base to_visit_base60,2170 -Yap_rational_tree_loop(CELL *pt0, CELL *pt0_end, CELL **to_visit, CELL **to_visit_max)Yap_rational_tree_loop63,2224 -rational_tree(Term d0) {rational_tree142,3888 -OCUnify_complex(CELL *pt0, CELL *pt0_end, CELL *pt1)OCUnify_complex162,4399 -#undef Yap_REGSYap_REGS166,4480 -#define Yap_REGS Yap_REGS168,4534 -#define unif_base unif_base183,4931 -#undef Yap_REGSYap_REGS346,8717 -#define Yap_REGS Yap_REGS347,8733 -#undef unif_baseunif_base353,8883 -#undef to_visit_baseto_visit_base354,8900 -OCUnify(register CELL d0, register CELL d1)OCUnify358,8936 -p_ocunify( USES_REGS1 )p_ocunify452,11101 -p_cyclic( USES_REGS1 )p_cyclic458,11171 -bool Yap_IsAcyclicTerm(Term t)Yap_IsAcyclicTerm466,11289 -p_acyclic( USES_REGS1 )p_acyclic472,11364 -Yap_IUnify(register CELL d0, register CELL d1)Yap_IUnify481,11488 -#undef Yap_REGSYap_REGS485,11560 -#define Yap_REGS Yap_REGS487,11614 -#undef Yap_REGSYap_REGS579,13663 -#define Yap_REGS Yap_REGS580,13679 -InitReverseLookupOpcode(void)InitReverseLookupOpcode599,14337 -#define UnifyAndTrailGlobalCells(UnifyAndTrailGlobalCells643,15429 -unifiable_complex(CELL *pt0, CELL *pt0_end, CELL *pt1)unifiable_complex653,15953 -#undef Yap_REGSYap_REGS657,16036 -#define Yap_REGS Yap_REGS659,16090 -#define unif_base unif_base674,16487 -#define to_visit_base to_visit_base675,16537 -#undef Yap_REGSYap_REGS833,20113 -#define Yap_REGS Yap_REGS834,20129 -#undef to_visit_baseto_visit_base843,20314 -#undef unif_baseunif_base844,20335 -unifiable(CELL d0, CELL d1)unifiable848,20366 -#undef Yap_REGSYap_REGS852,20419 -#define Yap_REGS Yap_REGS854,20473 -#undef Yap_REGSYap_REGS941,22523 -#define Yap_REGS Yap_REGS942,22539 -p_unifiable( USES_REGS1 )p_unifiable952,22695 -Yap_Unifiable( Term d0, Term d1 )Yap_Unifiable972,23062 -Yap_InitUnify(void)Yap_InitUnify992,23324 -Yap_InitAbsmi(void)Yap_InitAbsmi1036,24428 -Yap_TrimTrail(void)Yap_TrimTrail1046,24591 -#undef saveregssaveregs1050,24642 -#define saveregs(saveregs1051,24658 -#undef setregssetregs1054,24699 -#define setregs(setregs1055,24714 - -C/unify_absmi_insts.h,0 - -C/userpreds.c,1652 -static char SccsId[] = "%W% %G%";SccsId18,596 -static typedef int (*SignalProc)();SignalProc66,1952 -static int occurs_check(V, T) Term V, T;occurs_check102,3240 -static int full_unification(T1, T2) Term T1, T2;full_unification128,3944 -static int p_occurs_check() { /* occurs_check(?,?) */p_occurs_check177,5370 -static int p_unify() { /* unify(?,?) */p_unify182,5534 -static int p_counter() { /* counter(+Atom,?Number,?Next) */p_counter195,6053 -static int p_iconcat() { /* iconcat(+L1,+L2,-L) */p_iconcat236,7195 -static int p_iconcat() { /* iconcat(+L1,+L2,-L) */p_iconcat262,7813 -static int p_clean() /* predicate clean for ets */p_clean286,8253 -static Term *subs_table;subs_table327,9473 -static int subs_entries;subs_entries328,9498 -#define SUBS_TABLE_SIZE SUBS_TABLE_SIZE329,9523 -static int subsumes(T1, T2) Term T1, T2;subsumes331,9552 -static int p_subsumes() {p_subsumes467,13322 -static int p_namelength() {p_namelength474,13481 -static int p_getpid() {p_getpid496,13974 -static int p_exit() {p_exit505,14123 -static int current_pos;current_pos513,14287 -static int p_incrcounter() {p_incrcounter515,14312 -static int p_setcounter() {p_setcounter523,14482 -#define signal(signal535,14748 -#define EOF EOF539,14807 -static int p_trapsignal(void) {p_trapsignal542,14830 -#define varstarter(varstarter549,14928 -#define idstarter(idstarter550,14991 -#define idchar(idchar551,15038 -static int p_grab_tokens() {p_grab_tokens555,15243 -static p_softfunctor() {p_softfunctor633,16929 -void Yap_InitUserCPreds(void) {Yap_InitUserCPreds671,17686 -void Yap_InitUserBacks(void) {}Yap_InitUserBacks698,18874 - -C/utilpreds.c,9130 -static char SccsId[] = "@(#)utilpreds.c 1.3";SccsId18,598 - Term old_var;old_var34,831 - Term old_var;__anon19::old_var34,831 - Term new_var;new_var35,857 - Term new_var;__anon19::new_var35,857 -} *vcell;vcell36,883 -clean_tr(tr_fr_ptr TR0 USES_REGS) {clean_tr54,1542 -clean_dirty_tr(tr_fr_ptr TR0 USES_REGS) {clean_dirty_tr64,1714 -copy_complex_term(CELL *pt0, CELL *pt0_end, int share, int newattvs, CELL *ptf, CELL *HLow USES_REGS)copy_complex_term77,1922 -handle_cp_overflow(int res, tr_fr_ptr TR0, UInt arity, Term t)handle_cp_overflow368,8620 -CopyTerm(Term inp, UInt arity, int share, int newattvs USES_REGS) {CopyTerm405,9556 -Yap_CopyTerm(Term inp) {Yap_CopyTerm490,11371 -Yap_CopyTermNoShare(Term inp) {Yap_CopyTermNoShare496,11466 -p_copy_term( USES_REGS1 ) /* copy term t to a new instance */p_copy_term502,11576 -p_duplicate_term( USES_REGS1 ) /* copy term t to a new instance */p_duplicate_term512,11821 -p_copy_term_no_delays( USES_REGS1 ) /* copy term t to a new instance */p_copy_term_no_delays522,12072 -typedef struct copy_frame {copy_frame534,12326 - CELL *start_cp;start_cp535,12354 - CELL *start_cp;copy_frame::start_cp535,12354 - CELL *end_cp;end_cp536,12372 - CELL *end_cp;copy_frame::end_cp536,12372 - CELL *to;to537,12388 - CELL *to;copy_frame::to537,12388 -} copy_frame_t;copy_frame_t538,12400 -add_to_list( Term *out_e, Term v, Term t USES_REGS)add_to_list541,12431 -break_rationals_complex_term(CELL *pt0, CELL *pt0_end, CELL *ptf, Term *of, Term oi, CELL *HLow USES_REGS)break_rationals_complex_term552,12641 -BreakRational(Term inp, UInt arity, Term *of, Term oi USES_REGS) {BreakRational713,16284 -p_break_rational( USES_REGS1 )p_break_rational743,16837 -p_break_rational3( USES_REGS1 )p_break_rational3752,16994 -CELL *CellDifH(CELL *hptr, CELL *hlow)CellDifH778,17545 -#define AdjustSizeAtom(AdjustSizeAtom783,17635 -CELL *AdjustSize(CELL *x, char *buf)AdjustSize786,17705 -Atom export_atom(Atom at, char **hpp, char *buf, size_t len)export_atom794,17893 -Functor export_functor(Functor f, char **hpp, char *buf, size_t len)export_functor814,18315 -#define export_derefa_body(export_derefa_body830,18796 -export_term_to_buffer(Term inpt, char *buf, char *bptr, CELL *t0 , CELL *tf, size_t len)export_term_to_buffer841,19270 -export_complex_term(Term tf, CELL *pt0, CELL *pt0_end, char * buf, size_t len0, int newattvs, CELL *ptf, CELL *HLow USES_REGS)export_complex_term857,19645 -ExportTerm(Term inp, char * buf, size_t len, UInt arity, int newattvs USES_REGS) {ExportTerm1124,25820 -Yap_ExportTerm(Term inp, char * buf, size_t len, UInt arity) {Yap_ExportTerm1154,26627 -ShiftPtr(CELL t, char *base)ShiftPtr1161,26780 -addAtom(Atom t, char *buf)addAtom1167,26853 -FetchFunctor(CELL *pt, char *buf)FetchFunctor1178,26989 -import_arg(CELL *hp, char *abase, char *buf, CELL *amax)import_arg1197,27458 -import_compound(CELL *hp, char *abase, char *buf, CELL *amax)import_compound1221,28092 -import_pair(CELL *hp, char *abase, char *buf, CELL *amax)import_pair1236,28402 -Yap_ImportTerm(char * buf) {Yap_ImportTerm1244,28573 -Yap_SizeOfExportedTerm(char * buf) {Yap_SizeOfExportedTerm1279,29431 -p_export_term( USES_REGS1 )p_export_term1286,29544 -p_import_term( USES_REGS1 )p_import_term1304,29937 -p_kill_exported_term( USES_REGS1 )p_kill_exported_term1314,30145 -static Term vars_in_complex_term(register CELL *pt0, register CELL *pt0_end, Term inp USES_REGS)vars_in_complex_term1324,30315 -expand_vts( int args USES_REGS )expand_vts1494,34103 -p_variables_in_term( USES_REGS1 ) /* variables in term t */p_variables_in_term1523,34836 -p_term_variables( USES_REGS1 ) /* variables in term t */p_term_variables1581,36130 -Yap_TermVariables( Term t, UInt arity USES_REGS ) /* variables in term t */Yap_TermVariables1624,37220 -static Term attvars_in_complex_term(register CELL *pt0, register CELL *pt0_end, Term inp USES_REGS)attvars_in_complex_term1652,37867 -p_term_attvars( USES_REGS1 ) /* variables in term t */p_term_attvars1851,42396 -p_term_variables3( USES_REGS1 ) /* variables in term t */p_term_variables31881,43134 -static Term vars_within_complex_term(register CELL *pt0, register CELL *pt0_end, Term inp USES_REGS)vars_within_complex_term1915,43899 -p_variables_within_term( USES_REGS1 ) /* variables within term t */p_variables_within_term2083,47602 -static Term new_vars_in_complex_term(register CELL *pt0, register CELL *pt0_end, Term inp USES_REGS)new_vars_in_complex_term2113,48343 -p_new_variables_in_term( USES_REGS1 ) /* variables within term t */p_new_variables_in_term2288,52337 -static Term free_vars_in_complex_term(register CELL *pt0, register CELL *pt0_end, tr_fr_ptr TR0 USES_REGS)free_vars_in_complex_term2318,53080 -static Term bind_vars_in_complex_term(register CELL *pt0, register CELL *pt0_end, tr_fr_ptr TR0 USES_REGS)bind_vars_in_complex_term2476,56720 -p_free_variables_in_term( USES_REGS1 ) /* variables within term t */p_free_variables_in_term2607,59667 -static Term non_singletons_in_complex_term(register CELL *pt0, register CELL *pt0_end USES_REGS)non_singletons_in_complex_term2672,61201 -p_non_singletons_in_term( USES_REGS1 ) /* non_singletons in term t */p_non_singletons_in_term2802,63854 -static Int ground_complex_term(register CELL *pt0, register CELL *pt0_end USES_REGS)ground_complex_term2832,64607 -bool Yap_IsGroundTerm(Term t)Yap_IsGroundTerm2942,66753 -p_ground( USES_REGS1 ) /* ground(+T) */p_ground2980,67572 -SizeOfExtension(Term t)SizeOfExtension2986,67672 -static Int sz_ground_complex_term(register CELL *pt0, register CELL *pt0_end, int ground USES_REGS)sz_ground_complex_term3009,68137 -Yap_SizeGroundTerm(Term t, int ground)Yap_SizeGroundTerm3126,70398 -static Int var_in_complex_term(register CELL *pt0,var_in_complex_term3157,71050 -var_in_term(Term v, Term t USES_REGS) /* variables in term t */var_in_term3287,73637 -p_var_in_term( USES_REGS1 )p_var_in_term3304,74051 -MurmurHashNeutral2 ( const void * key, int len, unsigned int seed )MurmurHashNeutral23329,74756 -addAtomToHash(CELL *st, Atom at)addAtomToHash3374,75365 -typedef struct visited {visited3395,75753 - CELL *start;start3396,75778 - CELL *start;visited::start3396,75778 - CELL *end;end3397,75793 - CELL *end;visited::end3397,75793 - CELL old;old3398,75807 - CELL old;visited::old3398,75807 - UInt vdepth;vdepth3399,75819 - UInt vdepth;visited::vdepth3399,75819 -} visited_t;visited_t3400,75834 -hash_complex_term(register CELL *pt0,hash_complex_term3403,75862 -Yap_TermHash(Term t, Int size, Int depth, int variant)Yap_TermHash3560,79074 -p_term_hash( USES_REGS1 )p_term_hash3592,79932 -p_instantiated_term_hash( USES_REGS1 )p_instantiated_term_hash3650,81449 -static int variant_complex(register CELL *pt0, register CELL *pt0_end, registervariant_complex3707,82967 -is_variant(Term t1, Term t2, int parity USES_REGS)is_variant3895,87050 -Yap_Variant(Term t1, Term t2)Yap_Variant3947,88221 -p_variant( USES_REGS1 ) /* variant terms t1 and t2 */p_variant3954,88322 -static int subsumes_complex(register CELL *pt0, register CELL *pt0_end, registersubsumes_complex3960,88443 -p_subsumes( USES_REGS1 ) /* subsumes terms t1 and t2 */p_subsumes4170,92912 -static int term_subsumer_complex(register CELL *pt0, register CELL *pt0_end, registerterm_subsumer_complex4211,93894 -p_term_subsumer( USES_REGS1 ) /* term_subsumer terms t1 and t2 */p_term_subsumer4436,98501 -p_force_trail_expansion( USES_REGS1 )p_force_trail_expansion4504,100084 -camacho_dum( USES_REGS1 )camacho_dum4519,100301 -Yap_IsListTerm(Term t)Yap_IsListTerm4537,100509 -p_is_list( USES_REGS1 )p_is_list4545,100619 -Yap_IsListOrPartialListTerm(Term t)Yap_IsListOrPartialListTerm4551,100691 -p_is_list_or_partial_list( USES_REGS1 )p_is_list_or_partial_list4560,100854 -numbervar(Int id USES_REGS)numbervar4566,100962 -numbervar_singleton(USES_REGS1)numbervar_singleton4574,101100 -renumbervar(Term t, Int id USES_REGS)renumbervar4582,101242 -static Int numbervars_in_complex_term(register CELL *pt0, register CELL *pt0_end, Int numbv, int singles USES_REGS)numbervars_in_complex_term4589,101340 -Yap_NumberVars( Term inp, Int numbv, bool handle_singles ) /*Yap_NumberVars4754,105074 -p_numbervars( USES_REGS1 )p_numbervars4794,106001 -unnumber_complex_term(CELL *pt0, CELL *pt0_end, CELL *ptf, CELL *HLow, int share USES_REGS)unnumber_complex_term4813,106413 -UnnumberTerm(Term inp, UInt arity, int share USES_REGS) {UnnumberTerm5046,111541 -Yap_UnNumberTerm(Term inp, int share) {Yap_UnNumberTerm5113,112910 -p_unnumbervars( USES_REGS1 ) {p_unnumbervars5119,113025 -Yap_SkipList(Term *l, Term **tailp)Yap_SkipList5125,113197 -p_skip_list( USES_REGS1 ) {p_skip_list5155,113689 -p_skip_list4( USES_REGS1 ) {p_skip_list45164,113864 -p_free_arguments( USES_REGS1 )p_free_arguments5198,114673 -p_freshen_variables( USES_REGS1 )p_freshen_variables5235,115476 -p_reset_variables( USES_REGS1 )p_reset_variables5253,115850 -void Yap_InitUtilCPreds(void)Yap_InitUtilCPreds5267,116105 - -C/write.c,5786 -static char SccsId[] = "%W% %G%";SccsId19,596 - start, /* initialization */start47,1073 - separator, /* the previous term was a separator like ',', ')', ... */separator48,1107 - alphanum, /* the previous term was an atom or number */alphanum49,1179 - symbol /* the previous term was a symbol like +, -, *, .... */symbol50,1238 -} wtype;wtype51,1307 -typedef StreamDesc *wrf;wrf53,1317 -typedef struct union_slots {union_slots55,1343 - Int old;old56,1372 - Int old;union_slots::old56,1372 - Int ptr;ptr57,1383 - Int ptr;union_slots::ptr57,1383 -} uslots;uslots58,1394 -typedef struct union_direct {union_direct60,1405 - Term old;old61,1435 - Term old;union_direct::old61,1435 - CELL *ptr;ptr62,1447 - CELL *ptr;union_direct::ptr62,1447 -} udirect;udirect63,1460 -typedef struct rewind_term {rewind_term65,1472 - struct rewind_term *parent;parent66,1501 - struct rewind_term *parent;rewind_term::parent66,1501 - struct union_slots s;s68,1541 - struct union_slots s;rewind_term::__anon21::s68,1541 - struct union_direct d;d69,1567 - struct union_direct d;rewind_term::__anon21::d69,1567 - } u_sd;u_sd70,1594 - } u_sd;rewind_term::u_sd70,1594 -} rwts;rwts71,1604 -typedef struct write_globs {write_globs73,1613 - StreamDesc *stream;stream74,1642 - StreamDesc *stream;write_globs::stream74,1642 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;Quote_illegal75,1664 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;write_globs::Quote_illegal75,1664 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;Ignore_ops75,1664 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;write_globs::Ignore_ops75,1664 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;Handle_vars75,1664 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;write_globs::Handle_vars75,1664 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;Use_portray75,1664 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;write_globs::Use_portray75,1664 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;Portray_delays75,1664 - int Quote_illegal, Ignore_ops, Handle_vars, Use_portray, Portray_delays;write_globs::Portray_delays75,1664 - int Keep_terms;Keep_terms76,1739 - int Keep_terms;write_globs::Keep_terms76,1739 - int Write_Loops;Write_Loops77,1757 - int Write_Loops;write_globs::Write_Loops77,1757 - int Write_strings;Write_strings78,1776 - int Write_strings;write_globs::Write_strings78,1776 - int last_atom_minus;last_atom_minus79,1797 - int last_atom_minus;write_globs::last_atom_minus79,1797 - UInt MaxDepth, MaxArgs;MaxDepth80,1820 - UInt MaxDepth, MaxArgs;write_globs::MaxDepth80,1820 - UInt MaxDepth, MaxArgs;MaxArgs80,1820 - UInt MaxDepth, MaxArgs;write_globs::MaxArgs80,1820 - wtype lw;lw81,1846 - wtype lw;write_globs::lw81,1846 -} wglbs;wglbs82,1858 -#define lastw lastw84,1868 -#define last_minus last_minus85,1891 -static bool callPortray(Term t, struct DB_TERM **old_EXp, int sno USES_REGS) {callPortray87,1933 -#define wrputc(wrputc120,3182 -static void wropen_bracket(struct write_globs *wglb, int protect) {wropen_bracket127,3388 -static void wrclose_bracket(struct write_globs *wglb, int protect) {wrclose_bracket136,3603 -static int protect_open_number(struct write_globs *wglb, int lm,protect_open_number143,3749 -static void protect_close_number(struct write_globs *wglb, int used_bracket) {protect_close_number156,4117 -static void wrputn(Int n,wrputn165,4313 -inline static void wrputs(char *s, StreamDesc *stream) {wrputs184,4778 -static char *ensure_space(size_t sz) {ensure_space192,4907 -static void write_mpint(MP_INT *big, struct write_globs *wglb) {write_mpint230,5701 -static void writebig(Term t, int p, int depth, int rinfixarg,writebig252,6182 -static void wrputf(Float f, struct write_globs *wglb) /* writes a float */wrputf287,7222 -int Yap_FormatFloat(Float f, char **s, size_t sz) {Yap_FormatFloat379,9078 -static void wrputref(CODEADDR ref, int Quote_illegal,wrputref401,9620 -static int wrputblob(AtomEntry *ref, int Quote_illegal,wrputblob417,10101 -static int legalAtom(unsigned char *s) /* Is this a legal atom ? */legalAtom430,10404 -AtomIsSymbols(unsigned char *s) /* Is this atom just formed by symbols ? */AtomIsSymbols468,11218 -static void write_quoted(wchar_t ch, wchar_t quote, wrf stream) {write_quoted480,11490 -static void write_string(const unsigned char *s,write_string556,13136 -static void putAtom(Atom atom, int Quote_illegal, struct write_globs *wglb) {putAtom582,13707 -void Yap_WriteAtom(StreamDesc *s, Atom atom) {Yap_WriteAtom621,14706 -static int IsCodesTerm(Term string) /* checks whether this is a string */IsCodesTerm628,14859 -static void putString(Term string, struct write_globs *wglb)putString654,15471 -static void putUnquotedString(Term string, struct write_globs *wglb)putUnquotedString669,15806 -static Term from_pointer(CELL *ptr0, struct rewind_term *rwt,from_pointer681,16065 -static CELL *restore_from_write(struct rewind_term *rwt,restore_from_write719,16943 -static void write_var(CELL *t, struct write_globs *wglb,write_var736,17387 -static Term check_infinite_loop(Term t, struct rewind_term *x,check_infinite_loop779,18683 -static void write_list(Term t, int direction, int depth,write_list798,19080 -static void writeTerm(Term t, int p, int depth, int rinfixarg,writeTerm873,21259 -void Yap_plwrite(Term t, StreamDesc *mywrite, int max_depth, int flags,Yap_plwrite1209,31919 -char *Yap_TermToString(Term t, size_t *lengthp, encoding_t enc, int flags) {Yap_TermToString1259,33395 - -C/yap-args.c,478 -#undef HAVE_UNISTD_HHAVE_UNISTD_H33,937 -static void print_usage(void) {print_usage48,1141 -static int myisblank(int c) {myisblank99,3686 -static char *add_end_dot(char arg[]) {add_end_dot111,3847 -static int dump_runtime_variables(void) {dump_runtime_variables128,4177 -YAP_file_type_t Yap_InitDefaults(YAP_init_args *iap, char saved_state[],Yap_InitDefaults138,4515 -X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[],YAP_parse_yap_arguments153,4934 - -ChangeLog,0 - -changes-5.0.html,0 - -changes-5.1.html,0 - -changes-6.0.html,0 - -changes4.3.html,0 - -cmake/CMakeFiles/3.8.0/CompilerIdC/CMakeCCompilerId.c,10631 -# define ID_VOID_MAINID_VOID_MAIN6,98 -# define constconst10,197 -# define volatilevolatile11,212 -# define COMPILER_ID COMPILER_ID19,413 -# define SIMULATE_ID SIMULATE_ID21,465 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,533 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,591 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,691 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,760 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,919 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1041 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1094 -# define COMPILER_ID COMPILER_ID42,1182 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1215 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1263 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1353 -# define COMPILER_ID COMPILER_ID50,1484 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1519 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1591 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1663 -# define COMPILER_ID COMPILER_ID56,1764 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,1824 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,1877 -# define COMPILER_ID COMPILER_ID62,1984 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2042 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2097 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2186 -# define COMPILER_ID COMPILER_ID71,2277 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2346 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2410 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2499 -# define COMPILER_ID COMPILER_ID80,2589 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2674 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2727 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,2786 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,2880 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,2932 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,2990 -# define COMPILER_ID COMPILER_ID94,3080 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3131 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3182 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3237 -# define COMPILER_ID COMPILER_ID101,3315 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3376 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3433 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3495 -# define COMPILER_ID COMPILER_ID108,3613 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3663 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3713 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,3767 -# define COMPILER_ID COMPILER_ID115,3895 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,3944 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,3994 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4048 -# define COMPILER_ID COMPILER_ID122,4175 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4231 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4281 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4335 -# define COMPILER_ID COMPILER_ID129,4411 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4438 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4484 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4570 -# define COMPILER_ID COMPILER_ID137,4659 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4687 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,4739 -# define COMPILER_ID COMPILER_ID142,4831 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,4901 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,4970 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5045 -# define COMPILER_ID COMPILER_ID149,5198 -# define COMPILER_ID COMPILER_ID152,5255 -# define COMPILER_ID COMPILER_ID155,5309 -# define COMPILER_ID COMPILER_ID158,5370 -# define COMPILER_ID COMPILER_ID161,5459 -# define SIMULATE_ID SIMULATE_ID163,5516 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR165,5553 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR166,5606 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH167,5659 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR170,5765 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR171,5818 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK173,5879 -# define COMPILER_ID COMPILER_ID176,5966 -# define SIMULATE_ID SIMULATE_ID178,6018 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR180,6055 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR181,6108 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH182,6161 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR185,6267 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR186,6320 -# define COMPILER_ID COMPILER_ID190,6406 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR191,6433 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR193,6508 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH196,6603 -# define COMPILER_ID COMPILER_ID200,6694 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR202,6746 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR203,6798 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH207,6937 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH210,7042 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK214,7145 -# define COMPILER_ID COMPILER_ID218,7317 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR221,7421 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR222,7483 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH223,7552 -# define COMPILER_ID COMPILER_ID227,7695 -# define COMPILER_ID COMPILER_ID230,7754 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR233,7848 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR234,7911 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH235,7978 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR238,8084 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR239,8146 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH240,8212 -# define COMPILER_ID COMPILER_ID245,8340 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR247,8403 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR248,8462 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH249,8521 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR252,8606 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR253,8653 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH254,8704 -# define COMPILER_ID COMPILER_ID258,8831 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR261,8934 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR262,8998 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH263,9066 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR266,9173 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR267,9233 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH268,9297 -# define COMPILER_ID COMPILER_ID276,9558 -# define COMPILER_ID COMPILER_ID279,9631 -# define COMPILER_ID COMPILER_ID282,9687 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler289,9985 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate291,10072 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto295,10166 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray299,10261 -#define STRINGIFY_HELPER(STRINGIFY_HELPER302,10336 -#define STRINGIFY(STRINGIFY303,10367 -# define PLATFORM_ID PLATFORM_ID307,10511 -# define PLATFORM_ID PLATFORM_ID310,10567 -# define PLATFORM_ID PLATFORM_ID313,10625 -# define PLATFORM_ID PLATFORM_ID316,10680 -# define PLATFORM_ID PLATFORM_ID319,10773 -# define PLATFORM_ID PLATFORM_ID322,10854 -# define PLATFORM_ID PLATFORM_ID325,10933 -# define PLATFORM_ID PLATFORM_ID328,11013 -# define PLATFORM_ID PLATFORM_ID331,11082 -# define PLATFORM_ID PLATFORM_ID334,11208 -# define PLATFORM_ID PLATFORM_ID337,11294 -# define PLATFORM_ID PLATFORM_ID340,11366 -# define PLATFORM_ID PLATFORM_ID343,11421 -# define PLATFORM_ID PLATFORM_ID346,11512 -# define PLATFORM_ID PLATFORM_ID349,11587 -# define PLATFORM_ID PLATFORM_ID352,11679 -# define PLATFORM_ID PLATFORM_ID355,11756 -# define PLATFORM_ID PLATFORM_ID358,11854 -# define PLATFORM_ID PLATFORM_ID361,11911 -# define PLATFORM_ID PLATFORM_ID364,11968 -# define PLATFORM_ID PLATFORM_ID367,12038 -# define PLATFORM_ID PLATFORM_ID370,12110 -# define PLATFORM_ID PLATFORM_ID373,12200 -# define PLATFORM_ID PLATFORM_ID376,12298 -# define PLATFORM_ID PLATFORM_ID379,12391 -# define PLATFORM_ID PLATFORM_ID383,12472 -# define PLATFORM_ID PLATFORM_ID386,12527 -# define PLATFORM_ID PLATFORM_ID389,12580 -# define PLATFORM_ID PLATFORM_ID392,12637 -# define PLATFORM_IDPLATFORM_ID395,12702 -# define PLATFORM_IDPLATFORM_ID399,12762 -# define ARCHITECTURE_ID ARCHITECTURE_ID410,13102 -# define ARCHITECTURE_ID ARCHITECTURE_ID413,13180 -# define ARCHITECTURE_ID ARCHITECTURE_ID416,13237 -# define ARCHITECTURE_ID ARCHITECTURE_ID420,13311 -# define ARCHITECTURE_ID ARCHITECTURE_ID422,13367 -# define ARCHITECTURE_ID ARCHITECTURE_ID424,13411 -# define ARCHITECTURE_ID ARCHITECTURE_ID428,13497 -# define ARCHITECTURE_ID ARCHITECTURE_ID431,13553 -# define ARCHITECTURE_ID ARCHITECTURE_ID434,13620 -# define ARCHITECTURE_ID ARCHITECTURE_ID439,13706 -# define ARCHITECTURE_ID ARCHITECTURE_ID442,13763 -# define ARCHITECTURE_ID ARCHITECTURE_ID445,13830 -# define ARCHITECTURE_IDARCHITECTURE_ID449,13874 -#define DEC(DEC453,13958 -#define HEX(HEX464,14307 -char const info_version[] = {info_version476,14669 -char const info_simulate_version[] = {info_simulate_version494,15166 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform514,15835 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch515,15903 -# define C_DIALECT C_DIALECT522,16040 -# define C_DIALECTC_DIALECT524,16072 -# define C_DIALECT C_DIALECT527,16134 -# define C_DIALECT C_DIALECT529,16192 -# define C_DIALECT C_DIALECT531,16222 -const char* info_language_dialect_default =info_language_dialect_default533,16253 -void main() {}main539,16445 -int main(argc, argv) int argc; char *argv[];main542,16494 - -cmake/CMakeFiles/3.8.0/CompilerIdCXX/CMakeCXXCompilerId.cpp,10024 -# define COMPILER_ID COMPILER_ID13,390 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR15,451 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR16,511 -# define COMPILER_ID COMPILER_ID19,622 -# define SIMULATE_ID SIMULATE_ID21,674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,742 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,900 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,969 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,1128 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1250 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1303 -# define COMPILER_ID COMPILER_ID42,1391 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1424 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1472 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1562 -# define COMPILER_ID COMPILER_ID50,1693 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1728 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1872 -# define COMPILER_ID COMPILER_ID56,1973 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,2033 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,2086 -# define COMPILER_ID COMPILER_ID62,2193 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2251 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2306 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2395 -# define COMPILER_ID COMPILER_ID71,2486 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2555 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2619 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2708 -# define COMPILER_ID COMPILER_ID80,2799 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2886 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2940 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,3000 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,3095 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,3148 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,3207 -# define COMPILER_ID COMPILER_ID94,3299 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3351 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3403 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3459 -# define COMPILER_ID COMPILER_ID101,3540 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3603 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3662 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3726 -# define COMPILER_ID COMPILER_ID108,3848 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3900 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3952 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,4008 -# define COMPILER_ID COMPILER_ID115,4142 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,4193 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,4245 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4301 -# define COMPILER_ID COMPILER_ID122,4434 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4492 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4544 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4600 -# define COMPILER_ID COMPILER_ID129,4678 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4705 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4751 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4837 -# define COMPILER_ID COMPILER_ID137,4926 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4954 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,5006 -# define COMPILER_ID COMPILER_ID142,5098 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,5168 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,5237 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5312 -# define COMPILER_ID COMPILER_ID149,5465 -# define COMPILER_ID COMPILER_ID152,5528 -# define COMPILER_ID COMPILER_ID155,5617 -# define SIMULATE_ID SIMULATE_ID157,5674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR159,5711 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR160,5764 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH161,5817 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR164,5923 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR165,5976 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK167,6037 -# define COMPILER_ID COMPILER_ID170,6124 -# define SIMULATE_ID SIMULATE_ID172,6176 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR174,6213 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR175,6266 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH176,6319 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR179,6425 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR180,6478 -# define COMPILER_ID COMPILER_ID184,6585 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR186,6635 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR188,6689 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR191,6773 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH194,6868 -# define COMPILER_ID COMPILER_ID198,6959 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR200,7011 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR201,7063 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH205,7202 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH208,7307 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK212,7410 -# define COMPILER_ID COMPILER_ID216,7582 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR219,7686 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR220,7748 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH221,7817 -# define COMPILER_ID COMPILER_ID225,7960 -# define COMPILER_ID COMPILER_ID228,8019 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR231,8113 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR232,8176 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH233,8243 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR236,8349 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR237,8411 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH238,8477 -# define COMPILER_ID COMPILER_ID243,8619 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR246,8722 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR247,8786 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH248,8854 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR251,8961 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR252,9021 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH253,9085 -# define COMPILER_ID COMPILER_ID261,9346 -# define COMPILER_ID COMPILER_ID264,9419 -# define COMPILER_ID COMPILER_ID267,9475 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler274,9773 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate276,9860 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto280,9954 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray284,10049 -#define STRINGIFY_HELPER(STRINGIFY_HELPER287,10124 -#define STRINGIFY(STRINGIFY288,10155 -# define PLATFORM_ID PLATFORM_ID292,10299 -# define PLATFORM_ID PLATFORM_ID295,10355 -# define PLATFORM_ID PLATFORM_ID298,10413 -# define PLATFORM_ID PLATFORM_ID301,10468 -# define PLATFORM_ID PLATFORM_ID304,10561 -# define PLATFORM_ID PLATFORM_ID307,10642 -# define PLATFORM_ID PLATFORM_ID310,10721 -# define PLATFORM_ID PLATFORM_ID313,10801 -# define PLATFORM_ID PLATFORM_ID316,10870 -# define PLATFORM_ID PLATFORM_ID319,10996 -# define PLATFORM_ID PLATFORM_ID322,11082 -# define PLATFORM_ID PLATFORM_ID325,11154 -# define PLATFORM_ID PLATFORM_ID328,11209 -# define PLATFORM_ID PLATFORM_ID331,11300 -# define PLATFORM_ID PLATFORM_ID334,11375 -# define PLATFORM_ID PLATFORM_ID337,11467 -# define PLATFORM_ID PLATFORM_ID340,11544 -# define PLATFORM_ID PLATFORM_ID343,11642 -# define PLATFORM_ID PLATFORM_ID346,11699 -# define PLATFORM_ID PLATFORM_ID349,11756 -# define PLATFORM_ID PLATFORM_ID352,11826 -# define PLATFORM_ID PLATFORM_ID355,11898 -# define PLATFORM_ID PLATFORM_ID358,11988 -# define PLATFORM_ID PLATFORM_ID361,12086 -# define PLATFORM_ID PLATFORM_ID364,12179 -# define PLATFORM_ID PLATFORM_ID368,12260 -# define PLATFORM_ID PLATFORM_ID371,12315 -# define PLATFORM_ID PLATFORM_ID374,12368 -# define PLATFORM_ID PLATFORM_ID377,12425 -# define PLATFORM_IDPLATFORM_ID380,12490 -# define PLATFORM_IDPLATFORM_ID384,12550 -# define ARCHITECTURE_ID ARCHITECTURE_ID395,12890 -# define ARCHITECTURE_ID ARCHITECTURE_ID398,12968 -# define ARCHITECTURE_ID ARCHITECTURE_ID401,13025 -# define ARCHITECTURE_ID ARCHITECTURE_ID405,13099 -# define ARCHITECTURE_ID ARCHITECTURE_ID407,13155 -# define ARCHITECTURE_ID ARCHITECTURE_ID409,13199 -# define ARCHITECTURE_ID ARCHITECTURE_ID413,13285 -# define ARCHITECTURE_ID ARCHITECTURE_ID416,13341 -# define ARCHITECTURE_ID ARCHITECTURE_ID419,13408 -# define ARCHITECTURE_ID ARCHITECTURE_ID424,13494 -# define ARCHITECTURE_ID ARCHITECTURE_ID427,13551 -# define ARCHITECTURE_ID ARCHITECTURE_ID430,13618 -# define ARCHITECTURE_IDARCHITECTURE_ID434,13662 -#define DEC(DEC438,13746 -#define HEX(HEX449,14095 -char const info_version[] = {info_version461,14457 -char const info_simulate_version[] = {info_simulate_version479,14954 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform499,15623 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch500,15691 -const char* info_language_dialect_default = "INFO" ":" "dialect_default["info_language_dialect_default505,15759 -int main(int argc, char* argv[])main519,16044 - -cmake/CMakeFiles/CheckTypeSize/CELLSIZE.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,381 -int main(argc, argv) int argc; char *argv[];main31,682 - -cmake/CMakeFiles/CheckTypeSize/RL_COMPLETION_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,392 -int main(argc, argv) int argc; char *argv[];main31,693 - -cmake/CMakeFiles/CheckTypeSize/RL_HOOK_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,386 -int main(argc, argv) int argc; char *argv[];main31,687 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_DOUBLE.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_FLOAT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,377 -int main(argc, argv) int argc; char *argv[];main31,678 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,375 -int main(argc, argv) int argc; char *argv[];main31,676 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_INT_P.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,377 -int main(argc, argv) int argc; char *argv[];main31,678 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_LONG.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,380 -int main(argc, argv) int argc; char *argv[];main31,681 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_LONG_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,380 -int main(argc, argv) int argc; char *argv[];main31,681 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_LONG_LONG.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,385 -int main(argc, argv) int argc; char *argv[];main31,686 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_LONG_LONG_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,385 -int main(argc, argv) int argc; char *argv[];main31,686 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_SHORT_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,381 -int main(argc, argv) int argc; char *argv[];main31,682 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_VOID_P.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_VOIDP.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -cmake/CMakeFiles/CheckTypeSize/SIZEOF_WCHAR_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,379 -int main(argc, argv) int argc; char *argv[];main31,680 - -cmake/CMakeFiles/feature_tests.c,128 - const char features[] = {"\n"features2,1 -int main(int argc, char** argv) { (void)argv; return features[argc]; }main34,657 - -cmake/CMakeFiles/feature_tests.cxx,130 - const char features[] = {"\n"features2,1 -int main(int argc, char** argv) { (void)argv; return features[argc]; }main405,8773 - -cmake/CMakeFiles/git-data/HEAD,0 - -cmake/CMakeFiles/git-data/head-ref,0 - -cmake/CMakeFiles/Makefile2,0 - -cmake/config.h,13659 - #define CONFIG_HCONFIG_H8,340 - #define SYSTEM_OPTIONS SYSTEM_OPTIONS11,424 -#define DEPTH_LIMIT DEPTH_LIMIT20,740 -#define USE_THREADED_CODE USE_THREADED_CODE25,856 -#define TABLING TABLING30,959 -#define LOW_LEVEL_TRACER LOW_LEVEL_TRACER35,1069 -#define ALIGN_LONGS ALIGN_LONGS50,1399 -#define BITNESS BITNESS55,1474 -#define CELLSIZE CELLSIZE65,1662 -#define C_CC C_CC70,1724 -#define C_CFLAGS C_CFLAGS75,1878 -#define C_LDFLAGS C_LDFLAGS80,1947 -#define C_LIBPLSO C_LIBPLSO85,2028 -#define C_LIBS C_LIBS90,2098 -#define FFIEEE FFIEEE95,2211 -#define GC_NO_TAGS GC_NO_TAGS107,2480 -#define HAVE_ACCESS HAVE_ACCESS117,2685 -#define HAVE_ACOSH HAVE_ACOSH122,2786 -#define HAVE_ADD_HISTORY HAVE_ADD_HISTORY127,2898 -#define HAVE_ALLOCA_H HAVE_ALLOCA_H142,3222 -#define HAVE_ARPA_INET_H HAVE_ARPA_INET_H231,6117 -#define HAVE_ASINH HAVE_ASINH236,6223 -#define HAVE_ATANH HAVE_ATANH241,6323 -#define HAVE_BASENAME HAVE_BASENAME246,6429 -#define HAVE_BACKTRACE HAVE_BACKTRACE251,6539 -#define HAVE_CHDIR HAVE_CHDIR256,6643 -#define HAVE_CLOCK HAVE_CLOCK261,6743 -#define HAVE_CLOCK_GETTIME HAVE_CLOCK_GETTIME266,6859 -#define HAVE_CTIME HAVE_CTIME281,7212 -#define HAVE_CTYPE_H HAVE_CTYPE_H286,7319 -#define HAVE_DIRENT_H HAVE_DIRENT_H296,7545 -#define HAVE_DLFCN_H HAVE_DLFCN_H301,7655 -#define HAVE_DLOPEN HAVE_DLOPEN306,7759 -#define HAVE_DUP2 HAVE_DUP2311,7858 -#define HAVE_ENVIRON HAVE_ENVIRON321,8034 -#define HAVE_ERF HAVE_ERF326,8132 -#define HAVE_ERRNO_H HAVE_ERRNO_H331,8237 -#define HAVE_EXECINFO_H HAVE_EXECINFO_H336,8352 -#define HAVE_FCNTL_H HAVE_FCNTL_H341,8464 -#define HAVE_FECLEAREXCEPT HAVE_FECLEAREXCEPT346,8582 -#define HAVE_FENV_H HAVE_FENV_H356,8825 -#define HAVE_FESETEXCEPTFLAG HAVE_FESETEXCEPTFLAG361,8946 -#define HAVE_FESETROUND HAVE_FESETROUND366,9066 -#define HAVE_FETESTEXCEPT HAVE_FETESTEXCEPT376,9318 -#define HAVE_FGETPOS HAVE_FGETPOS391,9632 -#define HAVE_FINITE HAVE_FINITE396,9736 -#define HAVE_FTIME HAVE_FTIME431,10503 -#define HAVE_FTRUNCATE HAVE_FTRUNCATE436,10611 -#define HAVE_FUNOPEN HAVE_FUNOPEN441,10719 -#define HAVE_GCC HAVE_GCC446,10825 -#define HAVE_GETCWD HAVE_GETCWD451,10925 -#define HAVE_GETENV HAVE_GETENV456,11028 -#define HAVE_GETHOSTBYNAME HAVE_GETHOSTBYNAME466,11266 -#define HAVE_GETHOSTENT HAVE_GETHOSTENT471,11384 -#define HAVE_GETHOSTID HAVE_GETHOSTID476,11497 -#define HAVE_GETHOSTNAME HAVE_GETHOSTNAME481,11613 -#define HAVE_GETPAGESIZE HAVE_GETPAGESIZE491,11846 -#define HAVE_GETPID HAVE_GETPID496,11954 -#define HAVE_GETPWNAM HAVE_GETPWNAM501,12061 -#define HAVE_GETRLIMIT HAVE_GETRLIMIT506,12172 -#define HAVE_GETRUSAGE HAVE_GETRUSAGE511,12284 -#define HAVE_GETTIMEOFDAY HAVE_GETTIMEOFDAY516,12402 -#define HAVE_GETWD HAVE_GETWD521,12509 -#define HAVE_GLOB_H HAVE_GLOB_H531,12723 -#define HAVE_GLOB HAVE_GLOB536,12830 -#define HAVE_GMTIME HAVE_GMTIME541,12931 -#define HAVE_H_ERRNO HAVE_H_ERRNO546,13018 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H556,13248 -#define HAVE_ISATTY HAVE_ISATTY566,13458 -#define HAVE_ISINF HAVE_ISINF576,13671 -#define HAVE_ISNAN HAVE_ISNAN581,13771 -#define HAVE_ISWBLANK HAVE_ISWBLANK586,13874 -#define HAVE_ISWSPACE HAVE_ISWSPACE591,13983 -#define HAVE_KILL HAVE_KILL601,14193 -#define HAVE_LABS HAVE_LABS606,14290 -#define HAVE_LIBANDROID HAVE_LIBANDROID616,14513 -#define HAVE_LIBCOMDLG32 HAVE_LIBCOMDLG32621,14638 -#define HAVE_LIBCRYPT HAVE_LIBCRYPT626,14755 -#define HAVE_LIBGEN_H HAVE_LIBGEN_H636,14972 -#define HAVE_LIBGMP HAVE_LIBGMP642,15082 -#define HAVE_LIBJUDY HAVE_LIBJUDY647,15191 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H652,15313 -#define HAVE_LIBLOG HAVE_LIBLOG657,15427 -#define HAVE_LIBM HAVE_LIBM662,15527 -#define HAVE_LIBMPE HAVE_LIBMPE667,15617 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT672,15729 -#define HAVE_LIBNSL HAVE_LIBNSL677,15832 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS682,15950 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES687,16078 -#define HAVE_LIBPSAPI HAVE_LIBPSAPI692,16196 -#define HAVE_LIBGMP HAVE_LIBGMP702,16356 -#define HAVE_LIBJUDY HAVE_LIBJUDY707,16465 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H712,16587 -#define HAVE_LIBLOG HAVE_LIBLOG717,16701 -#define HAVE_LIBM HAVE_LIBM722,16801 -#define HAVE_LIBMPE HAVE_LIBMPE727,16891 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT732,17003 -#define HAVE_LIBNSL HAVE_LIBNSL737,17106 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS742,17224 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES747,17352 -#define HAVE_LIBSHLWAPI HAVE_LIBSHLWAPI752,17476 -#define HAVE_LIBPTHREAD HAVE_LIBPTHREAD757,17598 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR762,17742 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR2767,17863 -#define HAVE_LIBRESOLV HAVE_LIBRESOLV773,17983 -#define HAVE_LIBSHELL32 HAVE_LIBSHELL32778,18104 -#define HAVE_LIBSOCKET HAVE_LIBSOCKET783,18218 -#define HAVE_LIBSTDC__ HAVE_LIBSTDC__788,18336 -#define HAVE_LIBUNICODE HAVE_LIBUNICODE793,18427 -#define HAVE_LIBWS2_32 HAVE_LIBWS2_32798,18546 -#define HAVE_LIBWSOCK32 HAVE_LIBWSOCK32803,18667 -#define HAVE_LIBXNET HAVE_LIBXNET808,18780 -#define HAVE_LIMITS_H HAVE_LIMITS_H813,18890 -#define HAVE_LINK HAVE_LINK818,18991 -#define HAVE_LOCALE_H HAVE_LOCALE_H833,19338 -#define HAVE_LOCALTIME HAVE_LOCALTIME838,19449 -#define HAVE_LSTAT HAVE_LSTAT848,19670 -#define HAVE_MACH_O_DYLD_H HAVE_MACH_O_DYLD_H853,19789 -#define HAVE_MATH_H HAVE_MATH_H868,20129 -#define HAVE_MBSNRTOWCS HAVE_MBSNRTOWCS883,20470 -#define HAVE_MEMCPY HAVE_MEMCPY888,20577 -#define HAVE_MEMMOVE HAVE_MEMMOVE893,20682 -#define HAVE_MEMORY_H HAVE_MEMORY_H898,20793 -#define HAVE_MKSTEMP HAVE_MKSTEMP903,20900 -#define HAVE_MKTEMP HAVE_MKTEMP908,21004 -#define HAVE_MKTIME HAVE_MKTIME913,21107 -#define HAVE_MPI_H HAVE_MPI_H928,21417 -#define HAVE_MYSQL_MYSQL_H HAVE_MYSQL_MYSQL_H938,21635 -#define HAVE_NANOSLEEP HAVE_NANOSLEEP943,21751 -#define HAVE_NETDB_H HAVE_NETDB_H948,21862 -#define HAVE_NETINET_IN_H HAVE_NETINET_IN_H953,21981 -#define HAVE_NETINET_TCP_H HAVE_NETINET_TCP_H958,22107 -#define HAVE_OPENDIR HAVE_OPENDIR978,22554 -#define HAVE_PTHREAD_H HAVE_PTHREAD_H993,22873 -#define HAVE_PUTENV HAVE_PUTENV1013,23468 -#define HAVE_PWD_H HAVE_PWD_H1018,23572 -#define HAVE_PYTHON_H HAVE_PYTHON_H1023,23678 -#define HAVE_RAND HAVE_RAND1028,23779 -#define HAVE_RANDOM HAVE_RANDOM1033,23880 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H1038,24008 -#define HAVE_READLINK HAVE_READLINK1048,24241 -#define HAVE_REALPATH HAVE_REALPATH1053,24350 -#define HAVE_REGEXEC HAVE_REGEXEC1058,24457 -#define HAVE_REGEX_H HAVE_REGEX_H1063,24566 -#define HAVE_RENAME HAVE_RENAME1073,24794 -#define HAVE_RINT HAVE_RINT1084,25062 -#define HAVE_R_H HAVE_R_H1094,25287 -#define HAVE_SBRK HAVE_SBRK1099,25383 -#define HAVE_SELECT HAVE_SELECT1104,25484 -#define HAVE_SETBUF HAVE_SETBUF1109,25587 -#define HAVE_SETITIMER HAVE_SETITIMER1114,25696 -#define HAVE_SETLINEBUF HAVE_SETLINEBUF1119,25810 -#define HAVE_SETLOCALE HAVE_SETLOCALE1124,25923 -#define HAVE_SETSID HAVE_SETSID1129,26029 -#define HAVE_SHMAT HAVE_SHMAT1139,26245 -#define HAVE_SIGACTION HAVE_SIGACTION1144,26353 -#define HAVE_SIGFPE HAVE_SIGFPE1149,26424 -#define HAVE_SIGINFO HAVE_SIGINFO1159,26612 -#define HAVE_SIGINTERRUPT HAVE_SIGINTERRUPT1169,26846 -#define HAVE_SIGNAL HAVE_SIGNAL1174,26955 -#define HAVE_SIGNAL_H HAVE_SIGNAL_H1179,27065 -#define HAVE_SIGPROCMASK HAVE_SIGPROCMASK1184,27180 -#define HAVE_SIGPROF HAVE_SIGPROF1189,27262 -#define HAVE_SIGSEGV HAVE_SIGSEGV1194,27337 -#define HAVE_SIGSETJMP HAVE_SIGSETJMP1199,27419 -#define HAVE_SLEEP HAVE_SLEEP1204,27523 -#define HAVE_SNPRINTF HAVE_SNPRINTF1209,27629 -#define HAVE_SOCKET HAVE_SOCKET1214,27734 -#define HAVE_SQLITE3_H HAVE_SQLITE3_H1224,27963 -#define HAVE_SQL_H HAVE_SQL_H1239,28289 -#define HAVE_SRAND HAVE_SRAND1244,28389 -#define HAVE_SRANDOM HAVE_SRANDOM1249,28493 -#define HAVE_STAT HAVE_STAT1259,28704 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H1269,28929 -#define STDC_HEADERS STDC_HEADERS1274,29027 -#define HAVE_FLOAT_H HAVE_FLOAT_H1277,29074 -#define HAVE_STRING_H HAVE_STRING_H1278,29097 -#define HAVE_STDARG_H HAVE_STDARG_H1279,29121 -#define HAVE_STDLIB_H HAVE_STDLIB_H1280,29145 -#define HAVE_STDINT_H HAVE_STDINT_H1285,29257 -#define HAVE_STRCASECMP HAVE_STRCASECMP1295,29485 -#define HAVE_STRCASESTR HAVE_STRCASESTR1300,29600 -#define HAVE_STRCHR HAVE_STRCHR1305,29707 -#define HAVE_STRERROR HAVE_STRERROR1310,29814 -#define HAVE_STRINGS_H HAVE_STRINGS_H1320,30037 -#define HAVE_STRLCPY HAVE_STRLCPY1330,30260 -#define HAVE_STRNCASECMP HAVE_STRNCASECMP1340,30480 -#define HAVE_STRNCAT HAVE_STRNCAT1345,30590 -#define HAVE_STRNCPY HAVE_STRNCPY1350,30696 -#define HAVE_STRNLEN HAVE_STRNLEN1355,30802 -#define HAVE_STRTOD HAVE_STRTOD1365,31024 -#define HAVE_TCFLUSH HAVE_TCFLUSH1370,31129 -#define HAVE_SYSLOG_H HAVE_SYSLOG_H1380,31363 -#define HAVE_SYSTEM HAVE_SYSTEM1385,31468 -#define HAVE_SYS_CONF_H HAVE_SYS_CONF_H1390,31582 -#define HAVE_SYS_DIR_H HAVE_SYS_DIR_H1395,31698 -#define HAVE_SYS_FILE_H HAVE_SYS_FILE_H1400,31815 -#define HAVE_SYS_MMAN_H HAVE_SYS_MMAN_H1405,31933 -#define HAVE_SYS_PARAM_H HAVE_SYS_PARAM_H1415,32174 -#define HAVE_SYS_RESOURCE_H HAVE_SYS_RESOURCE_H1420,32301 -#define HAVE_SYS_SELECT_H HAVE_SYS_SELECT_H1425,32427 -#define HAVE_SYS_SHM_H HAVE_SYS_SHM_H1430,32545 -#define HAVE_SYS_SOCKET_H HAVE_SYS_SOCKET_H1437,32668 -#define HAVE_SYS_STAT_H HAVE_SYS_STAT_H1442,32788 -#define HAVE_SYS_SYSCALL_H HAVE_SYS_SYSCALL_H1447,32912 -#define HAVE_TERMIOS_H HAVE_TERMIOS_H1452,33031 -#define HAVE_SYS_TIMES_H HAVE_SYS_TIMES_H1457,33150 -#define HAVE_SYS_TIME_H HAVE_SYS_TIME_H1462,33269 -#define HAVE_SYS_TYPES_H HAVE_SYS_TYPES_H1467,33389 -#define HAVE_SYS_UCONTEXT_H HAVE_SYS_UCONTEXT_H1472,33516 -#define HAVE_SYS_UN_H HAVE_SYS_UN_H1477,33634 -#define HAVE_SYS_WAIT_H HAVE_SYS_WAIT_H1482,33750 -#define HAVE_TIME HAVE_TIME1487,33853 -#define HAVE_TIMEGM HAVE_TIMEGM1492,33954 -#define HAVE_TIMES HAVE_TIMES1497,34055 -#define HAVE_TIME_H HAVE_TIME_H1502,34160 -#define TIME_WITH_SYS_TIME_H TIME_WITH_SYS_TIME_H1506,34253 -#define HAVE_TMPNAM HAVE_TMPNAM1512,34372 -#define HAVE_TTYNAME HAVE_TTYNAME1517,34477 -#define HAVE_UNISTD_H HAVE_UNISTD_H1527,34709 -#define HAVE_USLEEP HAVE_USLEEP1532,34814 -#define HAVE_UTIME HAVE_UTIME1537,34915 -#define HAVE_UTIME_H HAVE_UTIME_H1542,35022 -#define HAVE_VAR_TIMEZONE HAVE_VAR_TIMEZONE1547,35124 -#define HAVE_VFORK HAVE_VFORK1552,35231 -#define HAVE_VSNPRINTF HAVE_VSNPRINTF1557,35339 -#define HAVE_WAITPID HAVE_WAITPID1562,35447 -#define HAVE_WCHAR_H HAVE_WCHAR_H1567,35556 -#define HAVE_WCSDUP HAVE_WCSDUP1572,35660 -#define HAVE_WCSNLEN HAVE_WCSNLEN1577,35765 -#define HAVE_WCTYPE_H HAVE_WCTYPE_H1582,35876 -#define HAVE_WORDEXP HAVE_WORDEXP1602,36342 -#define HAVE_WORDEXP_H HAVE_WORDEXP_H1607,36455 -#define HAVE__NSGETENVIRON HAVE__NSGETENVIRON1632,37000 -#define HOST_ALIAS HOST_ALIAS1642,37227 -#define MALLOC_T MALLOC_T1652,37385 -#define MAX_THREADS MAX_THREADS1657,37484 -#define MAX_WORKERS MAX_WORKERS1662,37573 -#define MSHIFTOFFS MSHIFTOFFS1672,37785 -#define MYDDAS_VERSION MYDDAS_VERSION1677,37858 -#define MinHeapSpace MinHeapSpace1682,37958 -#define MinStackSpace MinStackSpace1687,38064 -#define MinTrailSpace MinTrailSpace1692,38170 -#define DefHeapSpace DefHeapSpace1697,38271 -#define DefStackSpace DefStackSpace1702,38358 -#define DefTrailSpace DefTrailSpace1707,38448 -#define YAP_FULL_VERSION YAP_FULL_VERSION1742,39219 -#define YAP_GIT_HEAD YAP_GIT_HEAD1747,39392 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION1752,39505 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE1772,39899 -#define SIZEOF_FLOAT SIZEOF_FLOAT1777,40002 -#define SIZEOF_INT SIZEOF_INT1782,40100 -#define SIZEOF_INT_P SIZEOF_INT_P1787,40200 -#define SIZEOF_LONG SIZEOF_LONG1792,40300 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT1797,40407 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG1802,40520 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT1807,40642 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT1812,40760 -#define SIZEOF_SQLWCHAR SIZEOF_SQLWCHAR1817,40872 -#define SIZEOF_VOIDP SIZEOF_VOIDP1822,40977 -#define SIZEOF_VOID_P SIZEOF_VOID_P1827,41081 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T1832,41188 -#define SO_EXT SO_EXT1837,41260 -#define SO_PATH SO_PATH1843,41354 -#define SO_PATH SO_PATH1845,41403 -#define SO_PATH SO_PATH1847,41441 -#define SO_PATH SO_PATH1849,41481 -#define USE_GMP USE_GMP1865,41815 -#define USE_JUDY USE_JUDY1870,41914 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1910,42862 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1914,42929 -#define YAP_ARCH YAP_ARCH1923,43041 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR1927,43101 -#define YAP_SHAREDIR YAP_SHAREDIR1931,43183 -#define YAP_STARTUP YAP_STARTUP1936,43275 -#define YAP_TIMESTAMP YAP_TIMESTAMP1941,43365 -#define YAP_TVERSION YAP_TVERSION1946,43464 -#define YAP_VAR_TIMEZONE YAP_VAR_TIMEZONE1951,43563 -#define YAP_COMPILED_AT YAP_COMPILED_AT1956,43643 -#define YAP_YAPLIB YAP_YAPLIB1961,43759 -#define YAP_BINDIR YAP_BINDIR1966,43846 -#define YAP_ROOTDIR YAP_ROOTDIR1971,43936 -#define YAP_LIBDIR YAP_LIBDIR1976,44022 -#define YAP_YAPJITLIB YAP_YAPJITLIB1981,44122 -#define MAXPATHLEN MAXPATHLEN2020,44901 -#define MAXPATHLEN MAXPATHLEN2022,44935 -#define USE_DL_MALLOC USE_DL_MALLOC2028,45007 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC2034,45152 -#define strlcpy(strlcpy2039,45217 -#define malloc(malloc2044,45302 -#define realloc(realloc2045,45335 -#define free(free2046,45377 -#define __WINDOWS__ __WINDOWS__2051,45449 -#define X_API X_API2067,45719 -#define X_APIX_API2069,45761 -#define O_APIO_API2071,45782 - -cmake/cudd_config.h,106 -#define HAVE_CUDD_CUDD_H HAVE_CUDD_CUDD_H10,225 -#define HAVE_CUDD_CUDDINT_H HAVE_CUDD_CUDDINT_H20,470 - -cmake/CXX/Makefile,0 - -cmake/EmptyArray.c,43 -int array[0];array3,24 -main ()main6,43 - -cmake/GitSHA1.c,83 -#define GIT_SHA1 GIT_SHA11,0 -const char g_GIT_SHA1[] = GIT_SHA1;g_GIT_SHA12,60 - -cmake/libfind.py,333 -import sysconfigsysconfig2,1 -import os.pathos3,18 -import os.pathpath3,18 -v = sysconfig.get_python_version()v5,34 -p = sysconfig.get_config_var('LIBPL')p6,69 -l = sysconfig.get_config_var('LDLIBRARY')l7,107 -p = sysconfig.get_config_var('DESTDIR')p9,174 -n = '../libpython3.6m.dylib'n10,214 -l = os.path.join(p,n)l11,243 - -cmake/library/clp/Makefile,0 - -cmake/library/dialect/Makefile,0 - -cmake/library/dialect/swi/fli/Makefile,0 - -cmake/library/lammpi/Makefile,0 - -cmake/library/Makefile,0 - -cmake/library/matlab/Makefile,0 - -cmake/library/matrix/Makefile,0 - -cmake/library/random/Makefile,0 - -cmake/library/regex/Makefile,0 - -cmake/library/rltree/Makefile,0 - -cmake/library/system/Makefile,0 - -cmake/library/system/sys_config.h,0 - -cmake/library/tries/Makefile,0 - -cmake/library/ytest/Makefile,0 - -cmake/Makefile,0 - -cmake/OPTYap/Makefile,0 - -cmake/os/Makefile,0 - -cmake/packages/bdd/Makefile,0 - -cmake/packages/bdd/simplecudd/Makefile,0 - -cmake/packages/bdd/simplecudd_lfi/Makefile,0 - -cmake/packages/CLPBN/horus/Makefile,0 - -cmake/packages/CLPBN/Makefile,0 - -cmake/packages/clpqr/Makefile,0 - -cmake/packages/cplint/approx/simplecuddLPADs/Makefile,0 - -cmake/packages/cplint/Makefile,0 - -cmake/packages/gecode/Makefile,0 - -cmake/packages/jpl/Makefile,0 - -cmake/packages/jpl/src/c/Makefile,0 - -cmake/packages/jpl/src/java/CMakeFiles/jpl.dir/java_sources,0 - -cmake/packages/jpl/src/java/Makefile,0 - -cmake/packages/myddas/Makefile,0 - -cmake/packages/myddas/mysql/Makefile,0 - -cmake/packages/myddas/odbc/Makefile,0 - -cmake/packages/myddas/pl/Makefile,0 - -cmake/packages/myddas/postgres/Makefile,0 - -cmake/packages/myddas/sqlite3/Makefile,0 - -cmake/packages/ProbLog/Makefile,0 - -cmake/packages/python/Makefile,0 - -cmake/packages/raptor/Makefile,0 - -cmake/packages/raptor/raptor_config.h,60 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H1,0 - -cmake/packages/real/Makefile,0 - -cmake/packages/real/rconfig.h,174 -#define RCONFIG_HRCONFIG_H7,343 -#define HAVE_R_H HAVE_R_H11,437 -#define HAVE_R_EMBEDDED_H HAVE_R_EMBEDDED_H16,548 -#define HAVE_R_INTERFACE_H HAVE_R_INTERFACE_H21,669 - -cmake/packages/swi-minisat2/C/Makefile,0 - -cmake/packages/swi-minisat2/Makefile,0 - -cmake/packages/swig/Makefile,0 - -cmake/packages/swig/python/Makefile,0 - -cmake/packages/xml/Makefile,0 - -cmake/pl/Makefile,0 - -cmake/swiLibrary/Makefile,0 - -cmake/TestForHighBitCharacters.c,173 -# define ISLOWER(ISLOWER3,48 -# define TOUPPER(TOUPPER4,95 -# define ISLOWER(ISLOWER6,160 -# define TOUPPER(TOUPPER10,284 -#define XOR(XOR13,346 - main ()main15,401 - -cmake/TestSignalType.c,47 -# undef signalsignal4,57 -main ()main13,191 - -cmake/utf8proc/Makefile,0 - -cmake/YapConfig.h,13659 - #define CONFIG_HCONFIG_H8,340 - #define SYSTEM_OPTIONS SYSTEM_OPTIONS11,424 -#define DEPTH_LIMIT DEPTH_LIMIT20,740 -#define USE_THREADED_CODE USE_THREADED_CODE25,856 -#define TABLING TABLING30,959 -#define LOW_LEVEL_TRACER LOW_LEVEL_TRACER35,1069 -#define ALIGN_LONGS ALIGN_LONGS50,1399 -#define BITNESS BITNESS55,1474 -#define CELLSIZE CELLSIZE65,1662 -#define C_CC C_CC70,1724 -#define C_CFLAGS C_CFLAGS75,1878 -#define C_LDFLAGS C_LDFLAGS80,1947 -#define C_LIBPLSO C_LIBPLSO85,2028 -#define C_LIBS C_LIBS90,2098 -#define FFIEEE FFIEEE95,2211 -#define GC_NO_TAGS GC_NO_TAGS107,2480 -#define HAVE_ACCESS HAVE_ACCESS117,2685 -#define HAVE_ACOSH HAVE_ACOSH122,2786 -#define HAVE_ADD_HISTORY HAVE_ADD_HISTORY127,2898 -#define HAVE_ALLOCA_H HAVE_ALLOCA_H142,3222 -#define HAVE_ARPA_INET_H HAVE_ARPA_INET_H231,6117 -#define HAVE_ASINH HAVE_ASINH236,6223 -#define HAVE_ATANH HAVE_ATANH241,6323 -#define HAVE_BASENAME HAVE_BASENAME246,6429 -#define HAVE_BACKTRACE HAVE_BACKTRACE251,6539 -#define HAVE_CHDIR HAVE_CHDIR256,6643 -#define HAVE_CLOCK HAVE_CLOCK261,6743 -#define HAVE_CLOCK_GETTIME HAVE_CLOCK_GETTIME266,6859 -#define HAVE_CTIME HAVE_CTIME281,7212 -#define HAVE_CTYPE_H HAVE_CTYPE_H286,7319 -#define HAVE_DIRENT_H HAVE_DIRENT_H296,7545 -#define HAVE_DLFCN_H HAVE_DLFCN_H301,7655 -#define HAVE_DLOPEN HAVE_DLOPEN306,7759 -#define HAVE_DUP2 HAVE_DUP2311,7858 -#define HAVE_ENVIRON HAVE_ENVIRON321,8034 -#define HAVE_ERF HAVE_ERF326,8132 -#define HAVE_ERRNO_H HAVE_ERRNO_H331,8237 -#define HAVE_EXECINFO_H HAVE_EXECINFO_H336,8352 -#define HAVE_FCNTL_H HAVE_FCNTL_H341,8464 -#define HAVE_FECLEAREXCEPT HAVE_FECLEAREXCEPT346,8582 -#define HAVE_FENV_H HAVE_FENV_H356,8825 -#define HAVE_FESETEXCEPTFLAG HAVE_FESETEXCEPTFLAG361,8946 -#define HAVE_FESETROUND HAVE_FESETROUND366,9066 -#define HAVE_FETESTEXCEPT HAVE_FETESTEXCEPT376,9318 -#define HAVE_FGETPOS HAVE_FGETPOS391,9632 -#define HAVE_FINITE HAVE_FINITE396,9736 -#define HAVE_FTIME HAVE_FTIME431,10503 -#define HAVE_FTRUNCATE HAVE_FTRUNCATE436,10611 -#define HAVE_FUNOPEN HAVE_FUNOPEN441,10719 -#define HAVE_GCC HAVE_GCC446,10825 -#define HAVE_GETCWD HAVE_GETCWD451,10925 -#define HAVE_GETENV HAVE_GETENV456,11028 -#define HAVE_GETHOSTBYNAME HAVE_GETHOSTBYNAME466,11266 -#define HAVE_GETHOSTENT HAVE_GETHOSTENT471,11384 -#define HAVE_GETHOSTID HAVE_GETHOSTID476,11497 -#define HAVE_GETHOSTNAME HAVE_GETHOSTNAME481,11613 -#define HAVE_GETPAGESIZE HAVE_GETPAGESIZE491,11846 -#define HAVE_GETPID HAVE_GETPID496,11954 -#define HAVE_GETPWNAM HAVE_GETPWNAM501,12061 -#define HAVE_GETRLIMIT HAVE_GETRLIMIT506,12172 -#define HAVE_GETRUSAGE HAVE_GETRUSAGE511,12284 -#define HAVE_GETTIMEOFDAY HAVE_GETTIMEOFDAY516,12402 -#define HAVE_GETWD HAVE_GETWD521,12509 -#define HAVE_GLOB_H HAVE_GLOB_H531,12723 -#define HAVE_GLOB HAVE_GLOB536,12830 -#define HAVE_GMTIME HAVE_GMTIME541,12931 -#define HAVE_H_ERRNO HAVE_H_ERRNO546,13018 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H556,13248 -#define HAVE_ISATTY HAVE_ISATTY566,13458 -#define HAVE_ISINF HAVE_ISINF576,13671 -#define HAVE_ISNAN HAVE_ISNAN581,13771 -#define HAVE_ISWBLANK HAVE_ISWBLANK586,13874 -#define HAVE_ISWSPACE HAVE_ISWSPACE591,13983 -#define HAVE_KILL HAVE_KILL601,14193 -#define HAVE_LABS HAVE_LABS606,14290 -#define HAVE_LIBANDROID HAVE_LIBANDROID616,14513 -#define HAVE_LIBCOMDLG32 HAVE_LIBCOMDLG32621,14638 -#define HAVE_LIBCRYPT HAVE_LIBCRYPT626,14755 -#define HAVE_LIBGEN_H HAVE_LIBGEN_H636,14972 -#define HAVE_LIBGMP HAVE_LIBGMP642,15082 -#define HAVE_LIBJUDY HAVE_LIBJUDY647,15191 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H652,15313 -#define HAVE_LIBLOG HAVE_LIBLOG657,15427 -#define HAVE_LIBM HAVE_LIBM662,15527 -#define HAVE_LIBMPE HAVE_LIBMPE667,15617 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT672,15729 -#define HAVE_LIBNSL HAVE_LIBNSL677,15832 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS682,15950 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES687,16078 -#define HAVE_LIBPSAPI HAVE_LIBPSAPI692,16196 -#define HAVE_LIBGMP HAVE_LIBGMP702,16356 -#define HAVE_LIBJUDY HAVE_LIBJUDY707,16465 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H712,16587 -#define HAVE_LIBLOG HAVE_LIBLOG717,16701 -#define HAVE_LIBM HAVE_LIBM722,16801 -#define HAVE_LIBMPE HAVE_LIBMPE727,16891 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT732,17003 -#define HAVE_LIBNSL HAVE_LIBNSL737,17106 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS742,17224 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES747,17352 -#define HAVE_LIBSHLWAPI HAVE_LIBSHLWAPI752,17476 -#define HAVE_LIBPTHREAD HAVE_LIBPTHREAD757,17598 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR762,17742 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR2767,17863 -#define HAVE_LIBRESOLV HAVE_LIBRESOLV773,17983 -#define HAVE_LIBSHELL32 HAVE_LIBSHELL32778,18104 -#define HAVE_LIBSOCKET HAVE_LIBSOCKET783,18218 -#define HAVE_LIBSTDC__ HAVE_LIBSTDC__788,18336 -#define HAVE_LIBUNICODE HAVE_LIBUNICODE793,18427 -#define HAVE_LIBWS2_32 HAVE_LIBWS2_32798,18546 -#define HAVE_LIBWSOCK32 HAVE_LIBWSOCK32803,18667 -#define HAVE_LIBXNET HAVE_LIBXNET808,18780 -#define HAVE_LIMITS_H HAVE_LIMITS_H813,18890 -#define HAVE_LINK HAVE_LINK818,18991 -#define HAVE_LOCALE_H HAVE_LOCALE_H833,19338 -#define HAVE_LOCALTIME HAVE_LOCALTIME838,19449 -#define HAVE_LSTAT HAVE_LSTAT848,19670 -#define HAVE_MACH_O_DYLD_H HAVE_MACH_O_DYLD_H853,19789 -#define HAVE_MATH_H HAVE_MATH_H868,20129 -#define HAVE_MBSNRTOWCS HAVE_MBSNRTOWCS883,20470 -#define HAVE_MEMCPY HAVE_MEMCPY888,20577 -#define HAVE_MEMMOVE HAVE_MEMMOVE893,20682 -#define HAVE_MEMORY_H HAVE_MEMORY_H898,20793 -#define HAVE_MKSTEMP HAVE_MKSTEMP903,20900 -#define HAVE_MKTEMP HAVE_MKTEMP908,21004 -#define HAVE_MKTIME HAVE_MKTIME913,21107 -#define HAVE_MPI_H HAVE_MPI_H928,21417 -#define HAVE_MYSQL_MYSQL_H HAVE_MYSQL_MYSQL_H938,21635 -#define HAVE_NANOSLEEP HAVE_NANOSLEEP943,21751 -#define HAVE_NETDB_H HAVE_NETDB_H948,21862 -#define HAVE_NETINET_IN_H HAVE_NETINET_IN_H953,21981 -#define HAVE_NETINET_TCP_H HAVE_NETINET_TCP_H958,22107 -#define HAVE_OPENDIR HAVE_OPENDIR978,22554 -#define HAVE_PTHREAD_H HAVE_PTHREAD_H993,22873 -#define HAVE_PUTENV HAVE_PUTENV1013,23468 -#define HAVE_PWD_H HAVE_PWD_H1018,23572 -#define HAVE_PYTHON_H HAVE_PYTHON_H1023,23678 -#define HAVE_RAND HAVE_RAND1028,23779 -#define HAVE_RANDOM HAVE_RANDOM1033,23880 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H1038,24008 -#define HAVE_READLINK HAVE_READLINK1048,24241 -#define HAVE_REALPATH HAVE_REALPATH1053,24350 -#define HAVE_REGEXEC HAVE_REGEXEC1058,24457 -#define HAVE_REGEX_H HAVE_REGEX_H1063,24566 -#define HAVE_RENAME HAVE_RENAME1073,24794 -#define HAVE_RINT HAVE_RINT1084,25062 -#define HAVE_R_H HAVE_R_H1094,25287 -#define HAVE_SBRK HAVE_SBRK1099,25383 -#define HAVE_SELECT HAVE_SELECT1104,25484 -#define HAVE_SETBUF HAVE_SETBUF1109,25587 -#define HAVE_SETITIMER HAVE_SETITIMER1114,25696 -#define HAVE_SETLINEBUF HAVE_SETLINEBUF1119,25810 -#define HAVE_SETLOCALE HAVE_SETLOCALE1124,25923 -#define HAVE_SETSID HAVE_SETSID1129,26029 -#define HAVE_SHMAT HAVE_SHMAT1139,26245 -#define HAVE_SIGACTION HAVE_SIGACTION1144,26353 -#define HAVE_SIGFPE HAVE_SIGFPE1149,26424 -#define HAVE_SIGINFO HAVE_SIGINFO1159,26612 -#define HAVE_SIGINTERRUPT HAVE_SIGINTERRUPT1169,26846 -#define HAVE_SIGNAL HAVE_SIGNAL1174,26955 -#define HAVE_SIGNAL_H HAVE_SIGNAL_H1179,27065 -#define HAVE_SIGPROCMASK HAVE_SIGPROCMASK1184,27180 -#define HAVE_SIGPROF HAVE_SIGPROF1189,27262 -#define HAVE_SIGSEGV HAVE_SIGSEGV1194,27337 -#define HAVE_SIGSETJMP HAVE_SIGSETJMP1199,27419 -#define HAVE_SLEEP HAVE_SLEEP1204,27523 -#define HAVE_SNPRINTF HAVE_SNPRINTF1209,27629 -#define HAVE_SOCKET HAVE_SOCKET1214,27734 -#define HAVE_SQLITE3_H HAVE_SQLITE3_H1224,27963 -#define HAVE_SQL_H HAVE_SQL_H1239,28289 -#define HAVE_SRAND HAVE_SRAND1244,28389 -#define HAVE_SRANDOM HAVE_SRANDOM1249,28493 -#define HAVE_STAT HAVE_STAT1259,28704 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H1269,28929 -#define STDC_HEADERS STDC_HEADERS1274,29027 -#define HAVE_FLOAT_H HAVE_FLOAT_H1277,29074 -#define HAVE_STRING_H HAVE_STRING_H1278,29097 -#define HAVE_STDARG_H HAVE_STDARG_H1279,29121 -#define HAVE_STDLIB_H HAVE_STDLIB_H1280,29145 -#define HAVE_STDINT_H HAVE_STDINT_H1285,29257 -#define HAVE_STRCASECMP HAVE_STRCASECMP1295,29485 -#define HAVE_STRCASESTR HAVE_STRCASESTR1300,29600 -#define HAVE_STRCHR HAVE_STRCHR1305,29707 -#define HAVE_STRERROR HAVE_STRERROR1310,29814 -#define HAVE_STRINGS_H HAVE_STRINGS_H1320,30037 -#define HAVE_STRLCPY HAVE_STRLCPY1330,30260 -#define HAVE_STRNCASECMP HAVE_STRNCASECMP1340,30480 -#define HAVE_STRNCAT HAVE_STRNCAT1345,30590 -#define HAVE_STRNCPY HAVE_STRNCPY1350,30696 -#define HAVE_STRNLEN HAVE_STRNLEN1355,30802 -#define HAVE_STRTOD HAVE_STRTOD1365,31024 -#define HAVE_TCFLUSH HAVE_TCFLUSH1370,31129 -#define HAVE_SYSLOG_H HAVE_SYSLOG_H1380,31363 -#define HAVE_SYSTEM HAVE_SYSTEM1385,31468 -#define HAVE_SYS_CONF_H HAVE_SYS_CONF_H1390,31582 -#define HAVE_SYS_DIR_H HAVE_SYS_DIR_H1395,31698 -#define HAVE_SYS_FILE_H HAVE_SYS_FILE_H1400,31815 -#define HAVE_SYS_MMAN_H HAVE_SYS_MMAN_H1405,31933 -#define HAVE_SYS_PARAM_H HAVE_SYS_PARAM_H1415,32174 -#define HAVE_SYS_RESOURCE_H HAVE_SYS_RESOURCE_H1420,32301 -#define HAVE_SYS_SELECT_H HAVE_SYS_SELECT_H1425,32427 -#define HAVE_SYS_SHM_H HAVE_SYS_SHM_H1430,32545 -#define HAVE_SYS_SOCKET_H HAVE_SYS_SOCKET_H1437,32668 -#define HAVE_SYS_STAT_H HAVE_SYS_STAT_H1442,32788 -#define HAVE_SYS_SYSCALL_H HAVE_SYS_SYSCALL_H1447,32912 -#define HAVE_TERMIOS_H HAVE_TERMIOS_H1452,33031 -#define HAVE_SYS_TIMES_H HAVE_SYS_TIMES_H1457,33150 -#define HAVE_SYS_TIME_H HAVE_SYS_TIME_H1462,33269 -#define HAVE_SYS_TYPES_H HAVE_SYS_TYPES_H1467,33389 -#define HAVE_SYS_UCONTEXT_H HAVE_SYS_UCONTEXT_H1472,33516 -#define HAVE_SYS_UN_H HAVE_SYS_UN_H1477,33634 -#define HAVE_SYS_WAIT_H HAVE_SYS_WAIT_H1482,33750 -#define HAVE_TIME HAVE_TIME1487,33853 -#define HAVE_TIMEGM HAVE_TIMEGM1492,33954 -#define HAVE_TIMES HAVE_TIMES1497,34055 -#define HAVE_TIME_H HAVE_TIME_H1502,34160 -#define TIME_WITH_SYS_TIME_H TIME_WITH_SYS_TIME_H1506,34253 -#define HAVE_TMPNAM HAVE_TMPNAM1512,34372 -#define HAVE_TTYNAME HAVE_TTYNAME1517,34477 -#define HAVE_UNISTD_H HAVE_UNISTD_H1527,34709 -#define HAVE_USLEEP HAVE_USLEEP1532,34814 -#define HAVE_UTIME HAVE_UTIME1537,34915 -#define HAVE_UTIME_H HAVE_UTIME_H1542,35022 -#define HAVE_VAR_TIMEZONE HAVE_VAR_TIMEZONE1547,35124 -#define HAVE_VFORK HAVE_VFORK1552,35231 -#define HAVE_VSNPRINTF HAVE_VSNPRINTF1557,35339 -#define HAVE_WAITPID HAVE_WAITPID1562,35447 -#define HAVE_WCHAR_H HAVE_WCHAR_H1567,35556 -#define HAVE_WCSDUP HAVE_WCSDUP1572,35660 -#define HAVE_WCSNLEN HAVE_WCSNLEN1577,35765 -#define HAVE_WCTYPE_H HAVE_WCTYPE_H1582,35876 -#define HAVE_WORDEXP HAVE_WORDEXP1602,36342 -#define HAVE_WORDEXP_H HAVE_WORDEXP_H1607,36455 -#define HAVE__NSGETENVIRON HAVE__NSGETENVIRON1632,37000 -#define HOST_ALIAS HOST_ALIAS1642,37227 -#define MALLOC_T MALLOC_T1652,37385 -#define MAX_THREADS MAX_THREADS1657,37484 -#define MAX_WORKERS MAX_WORKERS1662,37573 -#define MSHIFTOFFS MSHIFTOFFS1672,37785 -#define MYDDAS_VERSION MYDDAS_VERSION1677,37858 -#define MinHeapSpace MinHeapSpace1682,37958 -#define MinStackSpace MinStackSpace1687,38064 -#define MinTrailSpace MinTrailSpace1692,38170 -#define DefHeapSpace DefHeapSpace1697,38271 -#define DefStackSpace DefStackSpace1702,38358 -#define DefTrailSpace DefTrailSpace1707,38448 -#define YAP_FULL_VERSION YAP_FULL_VERSION1742,39219 -#define YAP_GIT_HEAD YAP_GIT_HEAD1747,39392 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION1752,39505 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE1772,39899 -#define SIZEOF_FLOAT SIZEOF_FLOAT1777,40002 -#define SIZEOF_INT SIZEOF_INT1782,40100 -#define SIZEOF_INT_P SIZEOF_INT_P1787,40200 -#define SIZEOF_LONG SIZEOF_LONG1792,40300 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT1797,40407 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG1802,40520 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT1807,40642 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT1812,40760 -#define SIZEOF_SQLWCHAR SIZEOF_SQLWCHAR1817,40872 -#define SIZEOF_VOIDP SIZEOF_VOIDP1822,40977 -#define SIZEOF_VOID_P SIZEOF_VOID_P1827,41081 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T1832,41188 -#define SO_EXT SO_EXT1837,41260 -#define SO_PATH SO_PATH1843,41354 -#define SO_PATH SO_PATH1845,41403 -#define SO_PATH SO_PATH1847,41441 -#define SO_PATH SO_PATH1849,41481 -#define USE_GMP USE_GMP1865,41815 -#define USE_JUDY USE_JUDY1870,41914 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1910,42862 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1914,42929 -#define YAP_ARCH YAP_ARCH1923,43041 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR1927,43101 -#define YAP_SHAREDIR YAP_SHAREDIR1931,43183 -#define YAP_STARTUP YAP_STARTUP1936,43275 -#define YAP_TIMESTAMP YAP_TIMESTAMP1941,43365 -#define YAP_TVERSION YAP_TVERSION1946,43464 -#define YAP_VAR_TIMEZONE YAP_VAR_TIMEZONE1951,43563 -#define YAP_COMPILED_AT YAP_COMPILED_AT1956,43643 -#define YAP_YAPLIB YAP_YAPLIB1961,43759 -#define YAP_BINDIR YAP_BINDIR1966,43846 -#define YAP_ROOTDIR YAP_ROOTDIR1971,43936 -#define YAP_LIBDIR YAP_LIBDIR1976,44022 -#define YAP_YAPJITLIB YAP_YAPJITLIB1981,44122 -#define MAXPATHLEN MAXPATHLEN2020,44901 -#define MAXPATHLEN MAXPATHLEN2022,44935 -#define USE_DL_MALLOC USE_DL_MALLOC2028,45007 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC2034,45152 -#define strlcpy(strlcpy2039,45217 -#define malloc(malloc2044,45302 -#define realloc(realloc2045,45335 -#define free(free2046,45377 -#define __WINDOWS__ __WINDOWS__2051,45449 -#define X_API X_API2067,45719 -#define X_APIX_API2069,45761 -#define O_APIO_API2071,45782 - -cmake/YapTermConfig.h,496 -#define YAP_TERM_CONFIG YAP_TERM_CONFIG4,26 -#define SIZEOF_INT_P SIZEOF_INT_P8,113 -#define SIZEOF_INT SIZEOF_INT13,211 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT18,319 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT23,431 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG28,544 -#define SIZEOF_FLOAT SIZEOF_FLOAT33,650 -#define SIZEOF_FLOAT SIZEOF_FLOAT38,752 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H43,867 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H48,983 -#define HAVE_STDINT_H HAVE_STDINT_H54,1097 - -CMakeFiles/3.8.1/CompilerIdC/CMakeCCompilerId.c,10631 -# define ID_VOID_MAINID_VOID_MAIN6,98 -# define constconst10,197 -# define volatilevolatile11,212 -# define COMPILER_ID COMPILER_ID19,413 -# define SIMULATE_ID SIMULATE_ID21,465 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,533 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,591 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,691 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,760 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,919 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1041 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1094 -# define COMPILER_ID COMPILER_ID42,1182 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1215 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1263 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1353 -# define COMPILER_ID COMPILER_ID50,1484 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1519 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1591 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1663 -# define COMPILER_ID COMPILER_ID56,1764 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,1824 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,1877 -# define COMPILER_ID COMPILER_ID62,1984 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2042 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2097 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2186 -# define COMPILER_ID COMPILER_ID71,2277 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2346 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2410 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2499 -# define COMPILER_ID COMPILER_ID80,2589 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2674 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2727 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,2786 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,2880 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,2932 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,2990 -# define COMPILER_ID COMPILER_ID94,3080 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3131 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3182 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3237 -# define COMPILER_ID COMPILER_ID101,3315 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3376 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3433 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3495 -# define COMPILER_ID COMPILER_ID108,3613 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3663 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3713 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,3767 -# define COMPILER_ID COMPILER_ID115,3895 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,3944 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,3994 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4048 -# define COMPILER_ID COMPILER_ID122,4175 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4231 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4281 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4335 -# define COMPILER_ID COMPILER_ID129,4411 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4438 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4484 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4570 -# define COMPILER_ID COMPILER_ID137,4659 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4687 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,4739 -# define COMPILER_ID COMPILER_ID142,4831 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,4901 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,4970 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5045 -# define COMPILER_ID COMPILER_ID149,5198 -# define COMPILER_ID COMPILER_ID152,5255 -# define COMPILER_ID COMPILER_ID155,5309 -# define COMPILER_ID COMPILER_ID158,5370 -# define COMPILER_ID COMPILER_ID161,5459 -# define SIMULATE_ID SIMULATE_ID163,5516 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR165,5553 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR166,5606 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH167,5659 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR170,5765 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR171,5818 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK173,5879 -# define COMPILER_ID COMPILER_ID176,5966 -# define SIMULATE_ID SIMULATE_ID178,6018 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR180,6055 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR181,6108 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH182,6161 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR185,6267 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR186,6320 -# define COMPILER_ID COMPILER_ID190,6406 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR191,6433 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR193,6508 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH196,6603 -# define COMPILER_ID COMPILER_ID200,6694 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR202,6746 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR203,6798 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH207,6937 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH210,7042 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK214,7145 -# define COMPILER_ID COMPILER_ID218,7317 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR221,7421 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR222,7483 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH223,7552 -# define COMPILER_ID COMPILER_ID227,7695 -# define COMPILER_ID COMPILER_ID230,7754 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR233,7848 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR234,7911 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH235,7978 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR238,8084 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR239,8146 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH240,8212 -# define COMPILER_ID COMPILER_ID245,8340 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR247,8403 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR248,8462 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH249,8521 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR252,8606 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR253,8653 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH254,8704 -# define COMPILER_ID COMPILER_ID258,8831 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR261,8934 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR262,8998 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH263,9066 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR266,9173 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR267,9233 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH268,9297 -# define COMPILER_ID COMPILER_ID276,9558 -# define COMPILER_ID COMPILER_ID279,9631 -# define COMPILER_ID COMPILER_ID282,9687 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler289,9985 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate291,10072 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto295,10166 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray299,10261 -#define STRINGIFY_HELPER(STRINGIFY_HELPER302,10336 -#define STRINGIFY(STRINGIFY303,10367 -# define PLATFORM_ID PLATFORM_ID307,10511 -# define PLATFORM_ID PLATFORM_ID310,10567 -# define PLATFORM_ID PLATFORM_ID313,10625 -# define PLATFORM_ID PLATFORM_ID316,10680 -# define PLATFORM_ID PLATFORM_ID319,10773 -# define PLATFORM_ID PLATFORM_ID322,10854 -# define PLATFORM_ID PLATFORM_ID325,10933 -# define PLATFORM_ID PLATFORM_ID328,11013 -# define PLATFORM_ID PLATFORM_ID331,11082 -# define PLATFORM_ID PLATFORM_ID334,11208 -# define PLATFORM_ID PLATFORM_ID337,11294 -# define PLATFORM_ID PLATFORM_ID340,11366 -# define PLATFORM_ID PLATFORM_ID343,11421 -# define PLATFORM_ID PLATFORM_ID346,11512 -# define PLATFORM_ID PLATFORM_ID349,11587 -# define PLATFORM_ID PLATFORM_ID352,11679 -# define PLATFORM_ID PLATFORM_ID355,11756 -# define PLATFORM_ID PLATFORM_ID358,11854 -# define PLATFORM_ID PLATFORM_ID361,11911 -# define PLATFORM_ID PLATFORM_ID364,11968 -# define PLATFORM_ID PLATFORM_ID367,12038 -# define PLATFORM_ID PLATFORM_ID370,12110 -# define PLATFORM_ID PLATFORM_ID373,12200 -# define PLATFORM_ID PLATFORM_ID376,12298 -# define PLATFORM_ID PLATFORM_ID379,12391 -# define PLATFORM_ID PLATFORM_ID383,12472 -# define PLATFORM_ID PLATFORM_ID386,12527 -# define PLATFORM_ID PLATFORM_ID389,12580 -# define PLATFORM_ID PLATFORM_ID392,12637 -# define PLATFORM_IDPLATFORM_ID395,12702 -# define PLATFORM_IDPLATFORM_ID399,12762 -# define ARCHITECTURE_ID ARCHITECTURE_ID410,13102 -# define ARCHITECTURE_ID ARCHITECTURE_ID413,13180 -# define ARCHITECTURE_ID ARCHITECTURE_ID416,13237 -# define ARCHITECTURE_ID ARCHITECTURE_ID420,13311 -# define ARCHITECTURE_ID ARCHITECTURE_ID422,13367 -# define ARCHITECTURE_ID ARCHITECTURE_ID424,13411 -# define ARCHITECTURE_ID ARCHITECTURE_ID428,13497 -# define ARCHITECTURE_ID ARCHITECTURE_ID431,13553 -# define ARCHITECTURE_ID ARCHITECTURE_ID434,13620 -# define ARCHITECTURE_ID ARCHITECTURE_ID439,13706 -# define ARCHITECTURE_ID ARCHITECTURE_ID442,13763 -# define ARCHITECTURE_ID ARCHITECTURE_ID445,13830 -# define ARCHITECTURE_IDARCHITECTURE_ID449,13874 -#define DEC(DEC453,13958 -#define HEX(HEX464,14307 -char const info_version[] = {info_version476,14669 -char const info_simulate_version[] = {info_simulate_version494,15166 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform514,15835 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch515,15903 -# define C_DIALECT C_DIALECT522,16040 -# define C_DIALECTC_DIALECT524,16072 -# define C_DIALECT C_DIALECT527,16134 -# define C_DIALECT C_DIALECT529,16192 -# define C_DIALECT C_DIALECT531,16222 -const char* info_language_dialect_default =info_language_dialect_default533,16253 -void main() {}main539,16445 -int main(argc, argv) int argc; char *argv[];main542,16494 - -CMakeFiles/3.8.1/CompilerIdCXX/CMakeCXXCompilerId.cpp,10024 -# define COMPILER_ID COMPILER_ID13,390 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR15,451 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR16,511 -# define COMPILER_ID COMPILER_ID19,622 -# define SIMULATE_ID SIMULATE_ID21,674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,742 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,900 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,969 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,1128 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1250 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1303 -# define COMPILER_ID COMPILER_ID42,1391 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1424 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1472 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1562 -# define COMPILER_ID COMPILER_ID50,1693 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1728 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1872 -# define COMPILER_ID COMPILER_ID56,1973 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,2033 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,2086 -# define COMPILER_ID COMPILER_ID62,2193 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2251 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2306 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2395 -# define COMPILER_ID COMPILER_ID71,2486 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2555 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2619 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2708 -# define COMPILER_ID COMPILER_ID80,2799 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2886 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2940 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,3000 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,3095 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,3148 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,3207 -# define COMPILER_ID COMPILER_ID94,3299 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3351 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3403 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3459 -# define COMPILER_ID COMPILER_ID101,3540 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3603 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3662 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3726 -# define COMPILER_ID COMPILER_ID108,3848 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3900 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3952 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,4008 -# define COMPILER_ID COMPILER_ID115,4142 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,4193 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,4245 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4301 -# define COMPILER_ID COMPILER_ID122,4434 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4492 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4544 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4600 -# define COMPILER_ID COMPILER_ID129,4678 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4705 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4751 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4837 -# define COMPILER_ID COMPILER_ID137,4926 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4954 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,5006 -# define COMPILER_ID COMPILER_ID142,5098 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,5168 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,5237 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5312 -# define COMPILER_ID COMPILER_ID149,5465 -# define COMPILER_ID COMPILER_ID152,5528 -# define COMPILER_ID COMPILER_ID155,5617 -# define SIMULATE_ID SIMULATE_ID157,5674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR159,5711 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR160,5764 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH161,5817 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR164,5923 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR165,5976 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK167,6037 -# define COMPILER_ID COMPILER_ID170,6124 -# define SIMULATE_ID SIMULATE_ID172,6176 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR174,6213 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR175,6266 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH176,6319 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR179,6425 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR180,6478 -# define COMPILER_ID COMPILER_ID184,6585 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR186,6635 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR188,6689 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR191,6773 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH194,6868 -# define COMPILER_ID COMPILER_ID198,6959 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR200,7011 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR201,7063 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH205,7202 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH208,7307 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK212,7410 -# define COMPILER_ID COMPILER_ID216,7582 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR219,7686 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR220,7748 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH221,7817 -# define COMPILER_ID COMPILER_ID225,7960 -# define COMPILER_ID COMPILER_ID228,8019 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR231,8113 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR232,8176 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH233,8243 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR236,8349 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR237,8411 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH238,8477 -# define COMPILER_ID COMPILER_ID243,8619 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR246,8722 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR247,8786 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH248,8854 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR251,8961 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR252,9021 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH253,9085 -# define COMPILER_ID COMPILER_ID261,9346 -# define COMPILER_ID COMPILER_ID264,9419 -# define COMPILER_ID COMPILER_ID267,9475 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler274,9773 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate276,9860 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto280,9954 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray284,10049 -#define STRINGIFY_HELPER(STRINGIFY_HELPER287,10124 -#define STRINGIFY(STRINGIFY288,10155 -# define PLATFORM_ID PLATFORM_ID292,10299 -# define PLATFORM_ID PLATFORM_ID295,10355 -# define PLATFORM_ID PLATFORM_ID298,10413 -# define PLATFORM_ID PLATFORM_ID301,10468 -# define PLATFORM_ID PLATFORM_ID304,10561 -# define PLATFORM_ID PLATFORM_ID307,10642 -# define PLATFORM_ID PLATFORM_ID310,10721 -# define PLATFORM_ID PLATFORM_ID313,10801 -# define PLATFORM_ID PLATFORM_ID316,10870 -# define PLATFORM_ID PLATFORM_ID319,10996 -# define PLATFORM_ID PLATFORM_ID322,11082 -# define PLATFORM_ID PLATFORM_ID325,11154 -# define PLATFORM_ID PLATFORM_ID328,11209 -# define PLATFORM_ID PLATFORM_ID331,11300 -# define PLATFORM_ID PLATFORM_ID334,11375 -# define PLATFORM_ID PLATFORM_ID337,11467 -# define PLATFORM_ID PLATFORM_ID340,11544 -# define PLATFORM_ID PLATFORM_ID343,11642 -# define PLATFORM_ID PLATFORM_ID346,11699 -# define PLATFORM_ID PLATFORM_ID349,11756 -# define PLATFORM_ID PLATFORM_ID352,11826 -# define PLATFORM_ID PLATFORM_ID355,11898 -# define PLATFORM_ID PLATFORM_ID358,11988 -# define PLATFORM_ID PLATFORM_ID361,12086 -# define PLATFORM_ID PLATFORM_ID364,12179 -# define PLATFORM_ID PLATFORM_ID368,12260 -# define PLATFORM_ID PLATFORM_ID371,12315 -# define PLATFORM_ID PLATFORM_ID374,12368 -# define PLATFORM_ID PLATFORM_ID377,12425 -# define PLATFORM_IDPLATFORM_ID380,12490 -# define PLATFORM_IDPLATFORM_ID384,12550 -# define ARCHITECTURE_ID ARCHITECTURE_ID395,12890 -# define ARCHITECTURE_ID ARCHITECTURE_ID398,12968 -# define ARCHITECTURE_ID ARCHITECTURE_ID401,13025 -# define ARCHITECTURE_ID ARCHITECTURE_ID405,13099 -# define ARCHITECTURE_ID ARCHITECTURE_ID407,13155 -# define ARCHITECTURE_ID ARCHITECTURE_ID409,13199 -# define ARCHITECTURE_ID ARCHITECTURE_ID413,13285 -# define ARCHITECTURE_ID ARCHITECTURE_ID416,13341 -# define ARCHITECTURE_ID ARCHITECTURE_ID419,13408 -# define ARCHITECTURE_ID ARCHITECTURE_ID424,13494 -# define ARCHITECTURE_ID ARCHITECTURE_ID427,13551 -# define ARCHITECTURE_ID ARCHITECTURE_ID430,13618 -# define ARCHITECTURE_IDARCHITECTURE_ID434,13662 -#define DEC(DEC438,13746 -#define HEX(HEX449,14095 -char const info_version[] = {info_version461,14457 -char const info_simulate_version[] = {info_simulate_version479,14954 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform499,15623 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch500,15691 -const char* info_language_dialect_default = "INFO" ":" "dialect_default["info_language_dialect_default505,15759 -int main(int argc, char* argv[])main519,16044 - -CMakeFiles/CheckTypeSize/RL_COMPLETION_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,392 -int main(argc, argv) int argc; char *argv[];main31,693 - -CMakeFiles/CheckTypeSize/RL_HOOK_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,386 -int main(argc, argv) int argc; char *argv[];main31,687 - -CMakeFiles/CMakeTmp/CheckIncludeFile.c,46 -int main()main4,43 -int main(void)main9,76 - -CMakeFiles/CMakeTmp/CMakeFiles/Makefile2,0 - -CMakeFiles/CMakeTmp/Makefile,0 - -CMakeFiles/feature_tests.c,128 - const char features[] = {"\n"features2,1 -int main(int argc, char** argv) { (void)argv; return features[argc]; }main34,657 - -CMakeFiles/feature_tests.cxx,130 - const char features[] = {"\n"features2,1 -int main(int argc, char** argv) { (void)argv; return features[argc]; }main405,8773 - -CodeBlocks/CMakeFiles/3.6.2/CompilerIdC/CMakeCCompilerId.c,10431 -# define ID_VOID_MAINID_VOID_MAIN6,98 -# define constconst10,197 -# define volatilevolatile11,212 -# define COMPILER_ID COMPILER_ID19,413 -# define SIMULATE_ID SIMULATE_ID21,465 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,533 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,591 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,691 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,760 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,919 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1041 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1094 -# define COMPILER_ID COMPILER_ID42,1182 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1215 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1263 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1353 -# define COMPILER_ID COMPILER_ID50,1484 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1519 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1591 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1663 -# define COMPILER_ID COMPILER_ID56,1764 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,1824 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,1877 -# define COMPILER_ID COMPILER_ID62,1984 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2042 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2097 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2186 -# define COMPILER_ID COMPILER_ID71,2277 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2346 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2410 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2499 -# define COMPILER_ID COMPILER_ID80,2589 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2674 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2727 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,2786 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,2880 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,2932 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,2990 -# define COMPILER_ID COMPILER_ID94,3080 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3131 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3182 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3237 -# define COMPILER_ID COMPILER_ID101,3315 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3376 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3433 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3495 -# define COMPILER_ID COMPILER_ID108,3613 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3663 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3713 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,3767 -# define COMPILER_ID COMPILER_ID115,3895 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,3944 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,3994 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4048 -# define COMPILER_ID COMPILER_ID122,4175 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4231 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4281 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4335 -# define COMPILER_ID COMPILER_ID129,4411 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4438 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4484 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4570 -# define COMPILER_ID COMPILER_ID137,4659 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4687 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,4739 -# define COMPILER_ID COMPILER_ID142,4831 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,4901 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,4970 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5045 -# define COMPILER_ID COMPILER_ID149,5198 -# define COMPILER_ID COMPILER_ID152,5255 -# define COMPILER_ID COMPILER_ID155,5309 -# define COMPILER_ID COMPILER_ID158,5370 -# define COMPILER_ID COMPILER_ID161,5459 -# define SIMULATE_ID SIMULATE_ID163,5516 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR165,5553 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR166,5606 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH167,5659 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR170,5765 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR171,5818 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK173,5879 -# define COMPILER_ID COMPILER_ID176,5966 -# define SIMULATE_ID SIMULATE_ID178,6018 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR180,6055 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR181,6108 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH182,6161 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR185,6267 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR186,6320 -# define COMPILER_ID COMPILER_ID190,6406 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR191,6433 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR193,6508 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH196,6603 -# define COMPILER_ID COMPILER_ID200,6694 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR202,6746 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR203,6798 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH207,6937 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH210,7042 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK214,7145 -# define COMPILER_ID COMPILER_ID218,7317 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR221,7421 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR222,7483 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH223,7552 -# define COMPILER_ID COMPILER_ID227,7695 -# define COMPILER_ID COMPILER_ID230,7754 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR233,7848 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR234,7911 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH235,7978 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR238,8084 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR239,8146 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH240,8212 -# define COMPILER_ID COMPILER_ID245,8307 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR247,8354 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR248,8401 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH249,8452 -# define COMPILER_ID COMPILER_ID252,8571 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR255,8674 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR256,8738 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH257,8806 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR260,8913 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR261,8973 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH262,9037 -# define COMPILER_ID COMPILER_ID270,9298 -# define COMPILER_ID COMPILER_ID273,9371 -# define COMPILER_ID COMPILER_ID276,9427 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler283,9725 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate285,9812 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto289,9906 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray293,10001 -#define STRINGIFY_HELPER(STRINGIFY_HELPER296,10076 -#define STRINGIFY(STRINGIFY297,10107 -# define PLATFORM_ID PLATFORM_ID301,10251 -# define PLATFORM_ID PLATFORM_ID304,10307 -# define PLATFORM_ID PLATFORM_ID307,10365 -# define PLATFORM_ID PLATFORM_ID310,10420 -# define PLATFORM_ID PLATFORM_ID313,10513 -# define PLATFORM_ID PLATFORM_ID316,10594 -# define PLATFORM_ID PLATFORM_ID319,10673 -# define PLATFORM_ID PLATFORM_ID322,10753 -# define PLATFORM_ID PLATFORM_ID325,10822 -# define PLATFORM_ID PLATFORM_ID328,10948 -# define PLATFORM_ID PLATFORM_ID331,11034 -# define PLATFORM_ID PLATFORM_ID334,11106 -# define PLATFORM_ID PLATFORM_ID337,11161 -# define PLATFORM_ID PLATFORM_ID340,11252 -# define PLATFORM_ID PLATFORM_ID343,11327 -# define PLATFORM_ID PLATFORM_ID346,11419 -# define PLATFORM_ID PLATFORM_ID349,11496 -# define PLATFORM_ID PLATFORM_ID352,11594 -# define PLATFORM_ID PLATFORM_ID355,11651 -# define PLATFORM_ID PLATFORM_ID358,11708 -# define PLATFORM_ID PLATFORM_ID361,11778 -# define PLATFORM_ID PLATFORM_ID364,11850 -# define PLATFORM_ID PLATFORM_ID367,11940 -# define PLATFORM_ID PLATFORM_ID370,12038 -# define PLATFORM_ID PLATFORM_ID373,12131 -# define PLATFORM_ID PLATFORM_ID377,12212 -# define PLATFORM_ID PLATFORM_ID380,12267 -# define PLATFORM_ID PLATFORM_ID383,12320 -# define PLATFORM_ID PLATFORM_ID386,12377 -# define PLATFORM_IDPLATFORM_ID389,12442 -# define PLATFORM_IDPLATFORM_ID393,12502 -# define ARCHITECTURE_ID ARCHITECTURE_ID404,12842 -# define ARCHITECTURE_ID ARCHITECTURE_ID407,12920 -# define ARCHITECTURE_ID ARCHITECTURE_ID410,12977 -# define ARCHITECTURE_ID ARCHITECTURE_ID414,13051 -# define ARCHITECTURE_ID ARCHITECTURE_ID416,13107 -# define ARCHITECTURE_ID ARCHITECTURE_ID418,13151 -# define ARCHITECTURE_ID ARCHITECTURE_ID422,13237 -# define ARCHITECTURE_ID ARCHITECTURE_ID425,13293 -# define ARCHITECTURE_ID ARCHITECTURE_ID428,13360 -# define ARCHITECTURE_ID ARCHITECTURE_ID433,13446 -# define ARCHITECTURE_ID ARCHITECTURE_ID436,13503 -# define ARCHITECTURE_ID ARCHITECTURE_ID439,13570 -# define ARCHITECTURE_IDARCHITECTURE_ID443,13614 -#define DEC(DEC447,13698 -#define HEX(HEX458,14047 -char const info_version[] = {info_version470,14409 -char const info_simulate_version[] = {info_simulate_version488,14906 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform508,15575 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch509,15643 -# define C_DIALECT C_DIALECT516,15780 -# define C_DIALECTC_DIALECT518,15812 -# define C_DIALECT C_DIALECT521,15874 -# define C_DIALECT C_DIALECT523,15932 -# define C_DIALECT C_DIALECT525,15962 -const char* info_language_dialect_default =info_language_dialect_default527,15993 -void main() {}main533,16185 -int main(argc, argv) int argc; char *argv[];main536,16234 - -CodeBlocks/CMakeFiles/3.6.2/CompilerIdCXX/CMakeCXXCompilerId.cpp,9956 -# define COMPILER_ID COMPILER_ID13,390 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR15,451 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR16,511 -# define COMPILER_ID COMPILER_ID19,622 -# define SIMULATE_ID SIMULATE_ID21,674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,742 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,900 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,969 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,1128 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1250 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1303 -# define COMPILER_ID COMPILER_ID42,1391 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1424 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1472 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1562 -# define COMPILER_ID COMPILER_ID50,1693 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1728 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1872 -# define COMPILER_ID COMPILER_ID56,1973 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,2033 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,2086 -# define COMPILER_ID COMPILER_ID62,2193 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2251 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2306 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2395 -# define COMPILER_ID COMPILER_ID71,2486 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2555 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2619 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2708 -# define COMPILER_ID COMPILER_ID80,2799 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2886 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2940 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,3000 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,3095 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,3148 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,3207 -# define COMPILER_ID COMPILER_ID94,3299 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3351 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3403 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3459 -# define COMPILER_ID COMPILER_ID101,3540 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3603 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3662 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3726 -# define COMPILER_ID COMPILER_ID108,3848 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3900 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3952 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,4008 -# define COMPILER_ID COMPILER_ID115,4142 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,4193 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,4245 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4301 -# define COMPILER_ID COMPILER_ID122,4434 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4492 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4544 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4600 -# define COMPILER_ID COMPILER_ID129,4678 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4705 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4751 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4837 -# define COMPILER_ID COMPILER_ID137,4926 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4954 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,5006 -# define COMPILER_ID COMPILER_ID142,5098 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,5168 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,5237 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5312 -# define COMPILER_ID COMPILER_ID149,5465 -# define COMPILER_ID COMPILER_ID152,5528 -# define COMPILER_ID COMPILER_ID155,5617 -# define SIMULATE_ID SIMULATE_ID157,5674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR159,5711 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR160,5764 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH161,5817 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR164,5923 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR165,5976 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK167,6037 -# define COMPILER_ID COMPILER_ID170,6124 -# define SIMULATE_ID SIMULATE_ID172,6176 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR174,6213 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR175,6266 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH176,6319 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR179,6425 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR180,6478 -# define COMPILER_ID COMPILER_ID184,6564 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR185,6591 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR187,6666 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH190,6761 -# define COMPILER_ID COMPILER_ID194,6852 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR196,6904 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR197,6956 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH201,7095 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH204,7200 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK208,7303 -# define COMPILER_ID COMPILER_ID212,7475 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR215,7579 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR216,7641 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH217,7710 -# define COMPILER_ID COMPILER_ID221,7853 -# define COMPILER_ID COMPILER_ID224,7912 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR227,8006 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR228,8069 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH229,8136 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR232,8242 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR233,8304 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH234,8370 -# define COMPILER_ID COMPILER_ID239,8512 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR242,8615 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR243,8679 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH244,8747 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR247,8854 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR248,8914 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH249,8978 -# define COMPILER_ID COMPILER_ID257,9239 -# define COMPILER_ID COMPILER_ID260,9312 -# define COMPILER_ID COMPILER_ID263,9368 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler270,9666 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate272,9753 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto276,9847 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray280,9942 -#define STRINGIFY_HELPER(STRINGIFY_HELPER283,10017 -#define STRINGIFY(STRINGIFY284,10048 -# define PLATFORM_ID PLATFORM_ID288,10192 -# define PLATFORM_ID PLATFORM_ID291,10248 -# define PLATFORM_ID PLATFORM_ID294,10306 -# define PLATFORM_ID PLATFORM_ID297,10361 -# define PLATFORM_ID PLATFORM_ID300,10454 -# define PLATFORM_ID PLATFORM_ID303,10535 -# define PLATFORM_ID PLATFORM_ID306,10614 -# define PLATFORM_ID PLATFORM_ID309,10694 -# define PLATFORM_ID PLATFORM_ID312,10763 -# define PLATFORM_ID PLATFORM_ID315,10889 -# define PLATFORM_ID PLATFORM_ID318,10975 -# define PLATFORM_ID PLATFORM_ID321,11047 -# define PLATFORM_ID PLATFORM_ID324,11102 -# define PLATFORM_ID PLATFORM_ID327,11193 -# define PLATFORM_ID PLATFORM_ID330,11268 -# define PLATFORM_ID PLATFORM_ID333,11360 -# define PLATFORM_ID PLATFORM_ID336,11437 -# define PLATFORM_ID PLATFORM_ID339,11535 -# define PLATFORM_ID PLATFORM_ID342,11592 -# define PLATFORM_ID PLATFORM_ID345,11649 -# define PLATFORM_ID PLATFORM_ID348,11719 -# define PLATFORM_ID PLATFORM_ID351,11791 -# define PLATFORM_ID PLATFORM_ID354,11881 -# define PLATFORM_ID PLATFORM_ID357,11979 -# define PLATFORM_ID PLATFORM_ID360,12072 -# define PLATFORM_ID PLATFORM_ID364,12153 -# define PLATFORM_ID PLATFORM_ID367,12208 -# define PLATFORM_ID PLATFORM_ID370,12261 -# define PLATFORM_ID PLATFORM_ID373,12318 -# define PLATFORM_IDPLATFORM_ID376,12383 -# define PLATFORM_IDPLATFORM_ID380,12443 -# define ARCHITECTURE_ID ARCHITECTURE_ID391,12783 -# define ARCHITECTURE_ID ARCHITECTURE_ID394,12861 -# define ARCHITECTURE_ID ARCHITECTURE_ID397,12918 -# define ARCHITECTURE_ID ARCHITECTURE_ID401,12992 -# define ARCHITECTURE_ID ARCHITECTURE_ID403,13048 -# define ARCHITECTURE_ID ARCHITECTURE_ID405,13092 -# define ARCHITECTURE_ID ARCHITECTURE_ID409,13178 -# define ARCHITECTURE_ID ARCHITECTURE_ID412,13234 -# define ARCHITECTURE_ID ARCHITECTURE_ID415,13301 -# define ARCHITECTURE_ID ARCHITECTURE_ID420,13387 -# define ARCHITECTURE_ID ARCHITECTURE_ID423,13444 -# define ARCHITECTURE_ID ARCHITECTURE_ID426,13511 -# define ARCHITECTURE_IDARCHITECTURE_ID430,13555 -#define DEC(DEC434,13639 -#define HEX(HEX445,13988 -char const info_version[] = {info_version457,14350 -char const info_simulate_version[] = {info_simulate_version475,14847 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform495,15516 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch496,15584 -const char* info_language_dialect_default = "INFO" ":" "dialect_default["info_language_dialect_default501,15652 -int main(int argc, char* argv[])main513,15902 - -CodeBlocks/CMakeFiles/CheckTypeSize/CELLSIZE.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,381 -int main(argc, argv) int argc; char *argv[];main31,682 - -CodeBlocks/CMakeFiles/CheckTypeSize/RL_COMPLETION_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,392 -int main(argc, argv) int argc; char *argv[];main31,693 - -CodeBlocks/CMakeFiles/CheckTypeSize/RL_HOOK_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,386 -int main(argc, argv) int argc; char *argv[];main31,687 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_DOUBLE.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_FLOAT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,377 -int main(argc, argv) int argc; char *argv[];main31,678 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,375 -int main(argc, argv) int argc; char *argv[];main31,676 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_INT_P.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,377 -int main(argc, argv) int argc; char *argv[];main31,678 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_LONG.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,380 -int main(argc, argv) int argc; char *argv[];main31,681 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_LONG_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,380 -int main(argc, argv) int argc; char *argv[];main31,681 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_LONG_LONG.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,385 -int main(argc, argv) int argc; char *argv[];main31,686 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_LONG_LONG_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,385 -int main(argc, argv) int argc; char *argv[];main31,686 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_SHORT_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,381 -int main(argc, argv) int argc; char *argv[];main31,682 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_VOID_P.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_VOIDP.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -CodeBlocks/CMakeFiles/CheckTypeSize/SIZEOF_WCHAR_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,379 -int main(argc, argv) int argc; char *argv[];main31,680 - -CodeBlocks/CMakeFiles/feature_tests.c,128 - const char features[] = {"\n"features2,1 -int main(int argc, char** argv) { (void)argv; return features[argc]; }main34,617 - -CodeBlocks/CMakeFiles/feature_tests.cxx,130 - const char features[] = {"\n"features2,1 -int main(int argc, char** argv) { (void)argv; return features[argc]; }main405,9940 - -CodeBlocks/CMakeFiles/git-data/HEAD,0 - -CodeBlocks/CMakeFiles/git-data/head-ref,0 - -CodeBlocks/config.h,12991 - #define CONFIG_HCONFIG_H8,340 - #define SYSTEM_OPTIONS SYSTEM_OPTIONS11,424 -#define DEPTH_LIMIT DEPTH_LIMIT20,740 -#define USE_THREADED_CODE USE_THREADED_CODE25,856 -#define TABLING TABLING30,959 -#define LOW_LEVEL_TRACER LOW_LEVEL_TRACER35,1069 -#define ALIGN_LONGS ALIGN_LONGS50,1399 -#define BITNESS BITNESS55,1474 -#define CELLSIZE CELLSIZE65,1662 -#define C_CC C_CC70,1724 -#define C_CFLAGS C_CFLAGS75,1809 -#define C_LDFLAGS C_LDFLAGS80,1878 -#define C_LIBPLSO C_LIBPLSO85,1959 -#define C_LIBS C_LIBS90,2029 -#define FFIEEE FFIEEE95,2142 -#define GC_NO_TAGS GC_NO_TAGS107,2411 -#define HAVE_ACCESS HAVE_ACCESS117,2616 -#define HAVE_ADD_HISTORY HAVE_ADD_HISTORY127,2832 -#define HAVE_ALLOCA_H HAVE_ALLOCA_H142,3156 -#define HAVE_ARPA_INET_H HAVE_ARPA_INET_H231,6051 -#define HAVE_BASENAME HAVE_BASENAME246,6369 -#define HAVE_BACKTRACE HAVE_BACKTRACE251,6479 -#define HAVE_CHDIR HAVE_CHDIR256,6583 -#define HAVE_CLOCK HAVE_CLOCK261,6683 -#define HAVE_CLOCK_GETTIME HAVE_CLOCK_GETTIME266,6799 -#define HAVE_CTIME HAVE_CTIME281,7152 -#define HAVE_CTYPE_H HAVE_CTYPE_H286,7259 -#define HAVE_DIRENT_H HAVE_DIRENT_H296,7485 -#define HAVE_DLFCN_H HAVE_DLFCN_H301,7595 -#define HAVE_DLOPEN HAVE_DLOPEN306,7699 -#define HAVE_DUP2 HAVE_DUP2311,7798 -#define HAVE_ENVIRON HAVE_ENVIRON321,7974 -#define HAVE_ERRNO_H HAVE_ERRNO_H331,8180 -#define HAVE_EXECINFO_H HAVE_EXECINFO_H336,8295 -#define HAVE_FCNTL_H HAVE_FCNTL_H341,8407 -#define HAVE_FENV_H HAVE_FENV_H356,8771 -#define HAVE_FGETPOS HAVE_FGETPOS391,9587 -#define HAVE_FINITE HAVE_FINITE396,9691 -#define HAVE_FMEMOPEN HAVE_FMEMOPEN416,10113 -#define HAVE_FPU_CONTROL_H HAVE_FPU_CONTROL_H426,10344 -#define HAVE_FTIME HAVE_FTIME431,10452 -#define HAVE_FTRUNCATE HAVE_FTRUNCATE436,10560 -#define HAVE_GCC HAVE_GCC446,10777 -#define HAVE_GETCWD HAVE_GETCWD451,10877 -#define HAVE_GETENV HAVE_GETENV456,10980 -#define HAVE_GETHOSTBYNAME HAVE_GETHOSTBYNAME466,11218 -#define HAVE_GETHOSTENT HAVE_GETHOSTENT471,11336 -#define HAVE_GETHOSTID HAVE_GETHOSTID476,11449 -#define HAVE_GETHOSTNAME HAVE_GETHOSTNAME481,11565 -#define HAVE_GETPAGESIZE HAVE_GETPAGESIZE491,11798 -#define HAVE_GETPID HAVE_GETPID496,11906 -#define HAVE_GETPWNAM HAVE_GETPWNAM501,12013 -#define HAVE_GETRLIMIT HAVE_GETRLIMIT506,12124 -#define HAVE_GETRUSAGE HAVE_GETRUSAGE511,12236 -#define HAVE_GETTIMEOFDAY HAVE_GETTIMEOFDAY516,12354 -#define HAVE_GETWD HAVE_GETWD521,12461 -#define HAVE_GLOB_H HAVE_GLOB_H531,12675 -#define HAVE_GLOB HAVE_GLOB536,12782 -#define HAVE_GMTIME HAVE_GMTIME541,12883 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H556,13203 -#define HAVE_ISATTY HAVE_ISATTY566,13413 -#define HAVE_ISINF HAVE_ISINF576,13626 -#define HAVE_ISNAN HAVE_ISNAN581,13726 -#define HAVE_ISWBLANK HAVE_ISWBLANK586,13829 -#define HAVE_ISWSPACE HAVE_ISWSPACE591,13938 -#define HAVE_KILL HAVE_KILL601,14148 -#define HAVE_LABS HAVE_LABS606,14245 -#define HAVE_LIBANDROID HAVE_LIBANDROID616,14468 -#define HAVE_LIBCOMDLG32 HAVE_LIBCOMDLG32621,14593 -#define HAVE_LIBCRYPT HAVE_LIBCRYPT626,14710 -#define HAVE_LIBGEN_H HAVE_LIBGEN_H636,14928 -#define HAVE_LIBGMP HAVE_LIBGMP642,15038 -#define HAVE_LIBJUDY HAVE_LIBJUDY647,15147 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H652,15269 -#define HAVE_LIBLOG HAVE_LIBLOG657,15383 -#define HAVE_LIBM HAVE_LIBM662,15483 -#define HAVE_LIBMPE HAVE_LIBMPE667,15572 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT672,15684 -#define HAVE_LIBNSL HAVE_LIBNSL677,15787 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS682,15905 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES687,16033 -#define HAVE_LIBPSAPI HAVE_LIBPSAPI692,16151 -#define HAVE_LIBGMP HAVE_LIBGMP702,16311 -#define HAVE_LIBJUDY HAVE_LIBJUDY707,16420 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H712,16542 -#define HAVE_LIBLOG HAVE_LIBLOG717,16656 -#define HAVE_LIBM HAVE_LIBM722,16756 -#define HAVE_LIBMPE HAVE_LIBMPE727,16845 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT732,16957 -#define HAVE_LIBNSL HAVE_LIBNSL737,17060 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS742,17178 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES747,17306 -#define HAVE_LIBSHLWAPI HAVE_LIBSHLWAPI752,17430 -#define HAVE_LIBPTHREAD HAVE_LIBPTHREAD757,17552 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR762,17695 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR2767,17816 -#define HAVE_LIBRESOLV HAVE_LIBRESOLV773,17936 -#define HAVE_LIBSHELL32 HAVE_LIBSHELL32778,18057 -#define HAVE_LIBSOCKET HAVE_LIBSOCKET783,18171 -#define HAVE_LIBSTDC__ HAVE_LIBSTDC__788,18289 -#define HAVE_LIBUNICODE HAVE_LIBUNICODE793,18380 -#define HAVE_LIBWS2_32 HAVE_LIBWS2_32798,18499 -#define HAVE_LIBWSOCK32 HAVE_LIBWSOCK32803,18620 -#define HAVE_LIBXNET HAVE_LIBXNET808,18733 -#define HAVE_LIMITS_H HAVE_LIMITS_H813,18843 -#define HAVE_LINK HAVE_LINK818,18944 -#define HAVE_LOCALE_H HAVE_LOCALE_H833,19291 -#define HAVE_LOCALTIME HAVE_LOCALTIME838,19402 -#define HAVE_LSTAT HAVE_LSTAT848,19623 -#define HAVE_MALLOC_H HAVE_MALLOC_H863,19974 -#define HAVE_MATH_H HAVE_MATH_H868,20082 -#define HAVE_MBSNRTOWCS HAVE_MBSNRTOWCS883,20423 -#define HAVE_MEMCPY HAVE_MEMCPY888,20530 -#define HAVE_MEMMOVE HAVE_MEMMOVE893,20635 -#define HAVE_MEMORY_H HAVE_MEMORY_H898,20746 -#define HAVE_MKSTEMP HAVE_MKSTEMP903,20853 -#define HAVE_MKTEMP HAVE_MKTEMP908,20957 -#define HAVE_MKTIME HAVE_MKTIME913,21060 -#define HAVE_MYSQL_MYSQL_H HAVE_MYSQL_MYSQL_H938,21591 -#define HAVE_NANOSLEEP HAVE_NANOSLEEP943,21707 -#define HAVE_NETDB_H HAVE_NETDB_H948,21818 -#define HAVE_NETINET_IN_H HAVE_NETINET_IN_H953,21937 -#define HAVE_NETINET_TCP_H HAVE_NETINET_TCP_H958,22063 -#define HAVE_OPEN_MEMSTREAM HAVE_OPEN_MEMSTREAM973,22394 -#define HAVE_OPENDIR HAVE_OPENDIR978,22507 -#define HAVE_PTHREAD_H HAVE_PTHREAD_H993,22826 -#define HAVE_PUTENV HAVE_PUTENV1013,23421 -#define HAVE_PWD_H HAVE_PWD_H1018,23525 -#define HAVE_PYTHON_H HAVE_PYTHON_H1023,23631 -#define HAVE_RAND HAVE_RAND1028,23732 -#define HAVE_RANDOM HAVE_RANDOM1033,23833 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H1038,23961 -#define HAVE_READLINK HAVE_READLINK1048,24194 -#define HAVE_REALPATH HAVE_REALPATH1053,24303 -#define HAVE_REGEXEC HAVE_REGEXEC1058,24410 -#define HAVE_REGEX_H HAVE_REGEX_H1063,24519 -#define HAVE_RENAME HAVE_RENAME1073,24747 -#define HAVE_SBRK HAVE_SBRK1099,25342 -#define HAVE_SELECT HAVE_SELECT1104,25443 -#define HAVE_SETBUF HAVE_SETBUF1109,25546 -#define HAVE_SETITIMER HAVE_SETITIMER1114,25655 -#define HAVE_SETLINEBUF HAVE_SETLINEBUF1119,25769 -#define HAVE_SETLOCALE HAVE_SETLOCALE1124,25882 -#define HAVE_SETSID HAVE_SETSID1129,25988 -#define HAVE_SHMAT HAVE_SHMAT1139,26204 -#define HAVE_SIGACTION HAVE_SIGACTION1144,26312 -#define HAVE_SIGFPE HAVE_SIGFPE1149,26383 -#define HAVE_SIGGETMASK HAVE_SIGGETMASK1154,26494 -#define HAVE_SIGINTERRUPT HAVE_SIGINTERRUPT1169,26805 -#define HAVE_SIGNAL HAVE_SIGNAL1174,26914 -#define HAVE_SIGNAL_H HAVE_SIGNAL_H1179,27024 -#define HAVE_SIGPROCMASK HAVE_SIGPROCMASK1184,27139 -#define HAVE_SIGPROF HAVE_SIGPROF1189,27221 -#define HAVE_SIGSEGV HAVE_SIGSEGV1194,27296 -#define HAVE_SIGSETJMP HAVE_SIGSETJMP1199,27378 -#define HAVE_SLEEP HAVE_SLEEP1204,27482 -#define HAVE_SNPRINTF HAVE_SNPRINTF1209,27588 -#define HAVE_SOCKET HAVE_SOCKET1214,27693 -#define HAVE_SQLITE3_H HAVE_SQLITE3_H1224,27922 -#define HAVE_SRAND HAVE_SRAND1244,28351 -#define HAVE_SRANDOM HAVE_SRANDOM1249,28455 -#define HAVE_STAT HAVE_STAT1259,28666 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H1269,28891 -#define STDC_HEADERS STDC_HEADERS1274,28989 -#define HAVE_FLOAT_H HAVE_FLOAT_H1277,29036 -#define HAVE_STRING_H HAVE_STRING_H1278,29059 -#define HAVE_STDARG_H HAVE_STDARG_H1279,29083 -#define HAVE_STDLIB_H HAVE_STDLIB_H1280,29107 -#define HAVE_STDINT_H HAVE_STDINT_H1285,29219 -#define HAVE_STRCASECMP HAVE_STRCASECMP1295,29447 -#define HAVE_STRCASESTR HAVE_STRCASESTR1300,29562 -#define HAVE_STRCHR HAVE_STRCHR1305,29669 -#define HAVE_STRERROR HAVE_STRERROR1310,29776 -#define HAVE_STRINGS_H HAVE_STRINGS_H1320,29999 -#define HAVE_STRNCASECMP HAVE_STRNCASECMP1340,30445 -#define HAVE_STRNCAT HAVE_STRNCAT1345,30555 -#define HAVE_STRNCPY HAVE_STRNCPY1350,30661 -#define HAVE_STRNLEN HAVE_STRNLEN1355,30767 -#define HAVE_STRTOD HAVE_STRTOD1365,30989 -#define HAVE_SYSLOG_H HAVE_SYSLOG_H1375,31222 -#define HAVE_SYSTEM HAVE_SYSTEM1380,31327 -#define HAVE_SYS_DIR_H HAVE_SYS_DIR_H1390,31560 -#define HAVE_SYS_FILE_H HAVE_SYS_FILE_H1395,31677 -#define HAVE_SYS_MMAN_H HAVE_SYS_MMAN_H1400,31795 -#define HAVE_SYS_PARAM_H HAVE_SYS_PARAM_H1410,32036 -#define HAVE_SYS_RESOURCE_H HAVE_SYS_RESOURCE_H1415,32163 -#define HAVE_SYS_SELECT_H HAVE_SYS_SELECT_H1420,32289 -#define HAVE_SYS_SHM_H HAVE_SYS_SHM_H1425,32407 -#define HAVE_SYS_SOCKET_H HAVE_SYS_SOCKET_H1432,32530 -#define HAVE_SYS_STAT_H HAVE_SYS_STAT_H1437,32650 -#define HAVE_SYS_SYSCALL_H HAVE_SYS_SYSCALL_H1442,32774 -#define HAVE_SYS_TIMES_H HAVE_SYS_TIMES_H1447,32897 -#define HAVE_SYS_TIME_H HAVE_SYS_TIME_H1452,33016 -#define HAVE_SYS_TYPES_H HAVE_SYS_TYPES_H1457,33136 -#define HAVE_SYS_UCONTEXT_H HAVE_SYS_UCONTEXT_H1462,33263 -#define HAVE_SYS_UN_H HAVE_SYS_UN_H1467,33381 -#define HAVE_SYS_WAIT_H HAVE_SYS_WAIT_H1472,33497 -#define HAVE_TIME HAVE_TIME1477,33600 -#define HAVE_TIMEGM HAVE_TIMEGM1482,33701 -#define HAVE_TIMES HAVE_TIMES1487,33802 -#define HAVE_TIME_H HAVE_TIME_H1492,33907 -#define TIME_WITH_SYS_TIME_H TIME_WITH_SYS_TIME_H1496,34000 -#define HAVE_TMPNAM HAVE_TMPNAM1502,34119 -#define HAVE_TTYNAME HAVE_TTYNAME1507,34224 -#define HAVE_UCONTEXT_H HAVE_UCONTEXT_H1512,34339 -#define HAVE_UNISTD_H HAVE_UNISTD_H1517,34453 -#define HAVE_USLEEP HAVE_USLEEP1522,34558 -#define HAVE_UTIME HAVE_UTIME1527,34659 -#define HAVE_UTIME_H HAVE_UTIME_H1532,34766 -#define HAVE_VAR_TIMEZONE HAVE_VAR_TIMEZONE1537,34868 -#define HAVE_VFORK HAVE_VFORK1542,34975 -#define HAVE_VSNPRINTF HAVE_VSNPRINTF1547,35083 -#define HAVE_WAITPID HAVE_WAITPID1552,35191 -#define HAVE_WCHAR_H HAVE_WCHAR_H1557,35300 -#define HAVE_WCSDUP HAVE_WCSDUP1562,35404 -#define HAVE_WCSNLEN HAVE_WCSNLEN1567,35509 -#define HAVE_WCTYPE_H HAVE_WCTYPE_H1572,35620 -#define HAVE_WORDEXP HAVE_WORDEXP1592,36086 -#define HAVE_WORDEXP_H HAVE_WORDEXP_H1597,36199 -#define HOST_ALIAS HOST_ALIAS1632,36974 -#define MALLOC_T MALLOC_T1642,37147 -#define MAX_THREADS MAX_THREADS1647,37246 -#define MAX_WORKERS MAX_WORKERS1652,37335 -#define MSHIFTOFFS MSHIFTOFFS1662,37547 -#define MYDDAS_VERSION MYDDAS_VERSION1667,37620 -#define MinHeapSpace MinHeapSpace1672,37720 -#define MinStackSpace MinStackSpace1677,37826 -#define MinTrailSpace MinTrailSpace1682,37932 -#define DefHeapSpace DefHeapSpace1687,38033 -#define DefStackSpace DefStackSpace1692,38120 -#define DefTrailSpace DefTrailSpace1697,38210 -#define YAP_FULL_VERSION YAP_FULL_VERSION1732,38981 -#define YAP_GIT_HEAD YAP_GIT_HEAD1737,39174 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION1742,39287 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE1762,39681 -#define SIZEOF_FLOAT SIZEOF_FLOAT1767,39784 -#define SIZEOF_INT SIZEOF_INT1772,39882 -#define SIZEOF_INT_P SIZEOF_INT_P1777,39982 -#define SIZEOF_LONG SIZEOF_LONG1782,40082 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT1787,40189 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG1792,40302 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT1797,40424 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT1802,40542 -#define SIZEOF_SQLWCHAR SIZEOF_SQLWCHAR1807,40654 -#define SIZEOF_VOIDP SIZEOF_VOIDP1812,40759 -#define SIZEOF_VOID_P SIZEOF_VOID_P1817,40863 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T1822,40970 -#define SO_EXT SO_EXT1827,41042 -#define SO_PATH SO_PATH1833,41133 -#define SO_PATH SO_PATH1835,41182 -#define SO_PATH SO_PATH1837,41220 -#define SO_PATH SO_PATH1839,41260 -#define USE_GMP USE_GMP1855,41594 -#define USE_JUDY USE_JUDY1860,41693 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1900,42641 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1904,42708 -#define YAP_ARCH YAP_ARCH1913,42820 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR1917,42880 -#define YAP_SHAREDIR YAP_SHAREDIR1921,42958 -#define YAP_STARTUP YAP_STARTUP1926,43050 -#define YAP_TIMESTAMP YAP_TIMESTAMP1931,43140 -#define YAP_TVERSION YAP_TVERSION1936,43239 -#define YAP_VAR_TIMEZONE YAP_VAR_TIMEZONE1941,43338 -#define YAP_COMPILED_AT YAP_COMPILED_AT1946,43418 -#define YAP_YAPLIB YAP_YAPLIB1951,43539 -#define YAP_BINDIR YAP_BINDIR1956,43623 -#define YAP_ROOTDIR YAP_ROOTDIR1961,43713 -#define YAP_LIBDIR YAP_LIBDIR1966,43799 -#define YAP_YAPJITLIB YAP_YAPJITLIB1971,43899 -#define MAXPATHLEN MAXPATHLEN2010,44678 -#define MAXPATHLEN MAXPATHLEN2012,44712 -#define USE_DL_MALLOC USE_DL_MALLOC2018,44784 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC2024,44929 -#define strlcpy(strlcpy2029,44994 -#define malloc(malloc2034,45079 -#define realloc(realloc2035,45112 -#define free(free2036,45154 -#define __WINDOWS__ __WINDOWS__2041,45226 -#define X_API X_API2057,45496 -#define X_APIX_API2059,45538 -#define O_APIO_API2061,45559 - -CodeBlocks/cudd_config.h,106 -#define HAVE_CUDD_CUDD_H HAVE_CUDD_CUDD_H10,225 -#define HAVE_CUDD_CUDDINT_H HAVE_CUDD_CUDDINT_H20,470 - -CodeBlocks/GitSHA1.c,83 -#define GIT_SHA1 GIT_SHA11,0 -const char g_GIT_SHA1[] = GIT_SHA1;g_GIT_SHA12,60 - -CodeBlocks/library/lammpi/CMakeFiles/cmake_mpi_test.c,44 -int main(int argc, char **argv) {main2,17 - -CodeBlocks/library/lammpi/CMakeFiles/cmake_mpi_test.cpp,44 -int main(int argc, char **argv) {main2,17 - -CodeBlocks/library/system/sys_config.h,0 - -CodeBlocks/os/YapIOConfig.h,970 -#define HAVE_LIBREADLINE HAVE_LIBREADLINE3,62 -#define HAVE_READLINE_HISTORY_H HAVE_READLINE_HISTORY_H8,198 -#define HAVE_READLINE_READLINE_H HAVE_READLINE_READLINE_H13,342 -#define USE_READLINE USE_READLINE17,454 -#define HAVE_DECL_RL_CATCH_SIGNALS HAVE_DECL_RL_CATCH_SIGNALS23,614 -#define HAVE_RL_BEGIN_UNDO_GROUP HAVE_RL_BEGIN_UNDO_GROUP46,1253 -#define HAVE_RL_CLEAR_PENDING_INPUT HAVE_RL_CLEAR_PENDING_INPUT51,1401 -#define HAVE_RL_DISCARD_ARGUMENT HAVE_RL_DISCARD_ARGUMENT71,1998 -#define HAVE_RL_DONE HAVE_RL_DONE76,2116 -#define HAVE_RL_FILENAME_COMPLETION_FUNCTION HAVE_RL_FILENAME_COMPLETION_FUNCTION81,2269 -#define HAVE_RL_FREE_LINE_STATE HAVE_RL_FREE_LINE_STATE86,2421 -#define HAVE_RL_INSERT_CLOSE HAVE_RL_INSERT_CLOSE96,2686 -#define HAVE_RL_RESET_AFTER_SIGNAL HAVE_RL_RESET_AFTER_SIGNAL101,2828 -#define HAVE_RL_SET_KEYBOARD_INPUT_TIMEOUT HAVE_RL_SET_KEYBOARD_INPUT_TIMEOUT106,2992 -#define HAVE_RL_SET_PROMPT HAVE_RL_SET_PROMPT111,3132 - -CodeBlocks/packages/bdd/simplecudd/simplecudd,0 - -CodeBlocks/packages/bdd/simplecudd_lfi/simplecudd_lfi,0 - -CodeBlocks/packages/CLPBN/horus/hcli,14 -ELFtd1,0 - -CodeBlocks/packages/cplint/approx/simplecuddLPADs/LPADBDD,0 - -CodeBlocks/packages/gecode/gecode.yap,108160 -is_int(X,Y) :- integer(X), Y=X.is_int277,7568 -is_int(X,Y) :- integer(X), Y=X.is_int277,7568 -is_int(X,Y) :- integer(X), Y=X.is_int277,7568 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_bool_(true,true).is_bool_280,7626 -is_bool_(true,true).is_bool_280,7626 -is_bool_(false,false).is_bool_281,7647 -is_bool_(false,false).is_bool_281,7647 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7670 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7670 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7670 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7731 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7731 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7731 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7867 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7867 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7867 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8007 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8007 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8007 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8145 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8145 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8145 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_IntVarArgs_([],[]).is_IntVarArgs_316,8608 -is_IntVarArgs_([],[]).is_IntVarArgs_316,8608 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_BoolVarArgs_([],[]).is_BoolVarArgs_321,8803 -is_BoolVarArgs_([],[]).is_BoolVarArgs_321,8803 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_FloatVarArgs_([],[]).is_FloatVarArgs_326,9006 -is_FloatVarArgs_([],[]).is_FloatVarArgs_326,9006 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatValArgs_([],[]).is_FloatValArgs_331,9217 -is_FloatValArgs_([],[]).is_FloatValArgs_331,9217 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_SetVarArgs_([],[]).is_SetVarArgs_336,9428 -is_SetVarArgs_([],[]).is_SetVarArgs_336,9428 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_IntArgs_([],[]).is_IntArgs_341,9623 -is_IntArgs_([],[]).is_IntArgs_341,9623 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_349,9874 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_349,9874 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_IntSet_('IntSet'(L),L).is_IntSet_354,10085 -is_IntSet_('IntSet'(L),L).is_IntSet_354,10085 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSetArgs_([],[]).is_IntSetArgs_358,10191 -is_IntSetArgs_([],[]).is_IntSetArgs_358,10191 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_TupleSet_('TupleSet'(TS),TS).is_TupleSet_363,10386 -is_TupleSet_('TupleSet'(TS),TS).is_TupleSet_363,10386 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_DFA_('DFA'(TS),TS).is_DFA_367,10506 -is_DFA_('DFA'(TS),TS).is_DFA_367,10506 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -intset(X, I, J) :-intset374,10665 -intset(X, I, J) :-intset374,10665 -intset(X, I, J) :-intset374,10665 -intset(X, L) :-intset378,10732 -intset(X, L) :-intset378,10732 -intset(X, L) :-intset378,10732 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10798 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10798 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10798 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_384,10873 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_384,10873 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10906 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10906 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10906 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -assert_var(X,Y) :-assert_var393,11161 -assert_var(X,Y) :-assert_var393,11161 -assert_var(X,Y) :-assert_var393,11161 -assert_is_int(X,Y) :-assert_is_int395,11232 -assert_is_int(X,Y) :-assert_is_int395,11232 -assert_is_int(X,Y) :-assert_is_int395,11232 -assert_is_float(X,Y) :-assert_is_float397,11311 -assert_is_float(X,Y) :-assert_is_float397,11311 -assert_is_float(X,Y) :-assert_is_float397,11311 -assert_is_Space(X,Y) :-assert_is_Space399,11390 -assert_is_Space(X,Y) :-assert_is_Space399,11390 -assert_is_Space(X,Y) :-assert_is_Space399,11390 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11477 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11477 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11477 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11567 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11567 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11567 -assert_is_DFA(X,Y) :-assert_is_DFA405,11663 -assert_is_DFA(X,Y) :-assert_is_DFA405,11663 -assert_is_DFA(X,Y) :-assert_is_DFA405,11663 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11744 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11744 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11744 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11834 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11834 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11834 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11927 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11927 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11927 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12023 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12023 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12023 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12113 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12113 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12113 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12206 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12206 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12206 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12308 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12308 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12308 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12413 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12413 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12413 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12521 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12521 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12521 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12629 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12629 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12629 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12731 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12731 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12731 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_449,13657 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_449,13657 -is_IntVarBranch_('INT_VAR_RND'(_)).is_IntVarBranch_450,13691 -is_IntVarBranch_('INT_VAR_RND'(_)).is_IntVarBranch_450,13691 -is_IntVarBranch_('INT_VAR_MERIT_MIN'(_)).is_IntVarBranch_451,13727 -is_IntVarBranch_('INT_VAR_MERIT_MIN'(_)).is_IntVarBranch_451,13727 -is_IntVarBranch_('INT_VAR_MERIT_MAX'(_)).is_IntVarBranch_452,13769 -is_IntVarBranch_('INT_VAR_MERIT_MAX'(_)).is_IntVarBranch_452,13769 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_453,13811 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_453,13811 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_454,13851 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_454,13851 -is_IntVarBranch_('INT_VAR_AFC_MIN'(_)).is_IntVarBranch_455,13891 -is_IntVarBranch_('INT_VAR_AFC_MIN'(_)).is_IntVarBranch_455,13891 -is_IntVarBranch_('INT_VAR_AFC_MAX'(_)).is_IntVarBranch_456,13931 -is_IntVarBranch_('INT_VAR_AFC_MAX'(_)).is_IntVarBranch_456,13931 -is_IntVarBranch_('INT_VAR_ACTIVITY_MIN'(_)).is_IntVarBranch_457,13971 -is_IntVarBranch_('INT_VAR_ACTIVITY_MIN'(_)).is_IntVarBranch_457,13971 -is_IntVarBranch_('INT_VAR_ACTIVITY_MAX'(_)).is_IntVarBranch_458,14016 -is_IntVarBranch_('INT_VAR_ACTIVITY_MAX'(_)).is_IntVarBranch_458,14016 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_459,14061 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_459,14061 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_460,14098 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_460,14098 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_461,14135 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_461,14135 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_462,14172 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_462,14172 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_463,14209 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_463,14209 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_464,14247 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_464,14247 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MIN').is_IntVarBranch_465,14285 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MIN').is_IntVarBranch_465,14285 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MAX').is_IntVarBranch_466,14330 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MAX').is_IntVarBranch_466,14330 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MIN'(_)).is_IntVarBranch_467,14375 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MIN'(_)).is_IntVarBranch_467,14375 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MAX'(_)).is_IntVarBranch_468,14420 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MAX'(_)).is_IntVarBranch_468,14420 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MIN'(_)).is_IntVarBranch_469,14465 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MIN'(_)).is_IntVarBranch_469,14465 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MAX'(_)).is_IntVarBranch_470,14515 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MAX'(_)).is_IntVarBranch_470,14515 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_471,14565 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_471,14565 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_472,14609 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_472,14609 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_473,14653 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_473,14653 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_474,14697 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_474,14697 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14742 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14742 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14742 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_482,14894 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_482,14894 -is_SetVarBranch_('SET_VAR_RND'(_)).is_SetVarBranch_483,14928 -is_SetVarBranch_('SET_VAR_RND'(_)).is_SetVarBranch_483,14928 -is_SetVarBranch_('SET_VAR_MERIT_MIN'(_)).is_SetVarBranch_484,14964 -is_SetVarBranch_('SET_VAR_MERIT_MIN'(_)).is_SetVarBranch_484,14964 -is_SetVarBranch_('SET_VAR_MERIT_MAX'(_)).is_SetVarBranch_485,15006 -is_SetVarBranch_('SET_VAR_MERIT_MAX'(_)).is_SetVarBranch_485,15006 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_486,15048 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_486,15048 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_487,15088 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_487,15088 -is_SetVarBranch_('SET_VAR_AFC_MIN'(_)).is_SetVarBranch_488,15128 -is_SetVarBranch_('SET_VAR_AFC_MIN'(_)).is_SetVarBranch_488,15128 -is_SetVarBranch_('SET_VAR_AFC_MAX'(_)).is_SetVarBranch_489,15168 -is_SetVarBranch_('SET_VAR_AFC_MAX'(_)).is_SetVarBranch_489,15168 -is_SetVarBranch_('SET_VAR_ACTIVITY_MIN'(_)).is_SetVarBranch_490,15208 -is_SetVarBranch_('SET_VAR_ACTIVITY_MIN'(_)).is_SetVarBranch_490,15208 -is_SetVarBranch_('SET_VAR_ACTIVITY_MAX'(_)).is_SetVarBranch_491,15253 -is_SetVarBranch_('SET_VAR_ACTIVITY_MAX'(_)).is_SetVarBranch_491,15253 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_492,15298 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_492,15298 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_493,15335 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_493,15335 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_494,15372 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_494,15372 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_495,15409 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_495,15409 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_496,15446 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_496,15446 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_497,15484 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_497,15484 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MIN').is_SetVarBranch_498,15522 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MIN').is_SetVarBranch_498,15522 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MAX').is_SetVarBranch_499,15567 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MAX').is_SetVarBranch_499,15567 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MIN'(_)).is_SetVarBranch_500,15612 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MIN'(_)).is_SetVarBranch_500,15612 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MAX'(_)).is_SetVarBranch_501,15657 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MAX'(_)).is_SetVarBranch_501,15657 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MIN'(_)).is_SetVarBranch_502,15702 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MIN'(_)).is_SetVarBranch_502,15702 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MAX'(_)).is_SetVarBranch_503,15752 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MAX'(_)).is_SetVarBranch_503,15752 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15803 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15803 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15803 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_FloatVarBranch_('FLOAT_VAR_NONE').is_FloatVarBranch_511,15955 -is_FloatVarBranch_('FLOAT_VAR_NONE').is_FloatVarBranch_511,15955 -is_FloatVarBranch_('FLOAT_VAR_RND'(_)).is_FloatVarBranch_512,15993 -is_FloatVarBranch_('FLOAT_VAR_RND'(_)).is_FloatVarBranch_512,15993 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MIN'(_)).is_FloatVarBranch_513,16033 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MIN'(_)).is_FloatVarBranch_513,16033 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MAX'(_)).is_FloatVarBranch_514,16079 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MAX'(_)).is_FloatVarBranch_514,16079 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MIN').is_FloatVarBranch_515,16125 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MIN').is_FloatVarBranch_515,16125 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MAX').is_FloatVarBranch_516,16169 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MAX').is_FloatVarBranch_516,16169 -is_FloatVarBranch_('FLOAT_VAR_AFC_MIN'(_)).is_FloatVarBranch_517,16213 -is_FloatVarBranch_('FLOAT_VAR_AFC_MIN'(_)).is_FloatVarBranch_517,16213 -is_FloatVarBranch_('FLOAT_VAR_AFC_MAX'(_)).is_FloatVarBranch_518,16257 -is_FloatVarBranch_('FLOAT_VAR_AFC_MAX'(_)).is_FloatVarBranch_518,16257 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MIN'(_)).is_FloatVarBranch_519,16301 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MIN'(_)).is_FloatVarBranch_519,16301 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MAX'(_)).is_FloatVarBranch_520,16350 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MAX'(_)).is_FloatVarBranch_520,16350 -is_FloatVarBranch_('FLOAT_VAR_MIN_MIN').is_FloatVarBranch_521,16399 -is_FloatVarBranch_('FLOAT_VAR_MIN_MIN').is_FloatVarBranch_521,16399 -is_FloatVarBranch_('FLOAT_VAR_MIN_MAX').is_FloatVarBranch_522,16440 -is_FloatVarBranch_('FLOAT_VAR_MIN_MAX').is_FloatVarBranch_522,16440 -is_FloatVarBranch_('FLOAT_VAR_MAX_MIN').is_FloatVarBranch_523,16481 -is_FloatVarBranch_('FLOAT_VAR_MAX_MIN').is_FloatVarBranch_523,16481 -is_FloatVarBranch_('FLOAT_VAR_MAX_MAX').is_FloatVarBranch_524,16522 -is_FloatVarBranch_('FLOAT_VAR_MAX_MAX').is_FloatVarBranch_524,16522 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MIN').is_FloatVarBranch_525,16563 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MIN').is_FloatVarBranch_525,16563 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MAX').is_FloatVarBranch_526,16605 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MAX').is_FloatVarBranch_526,16605 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MIN').is_FloatVarBranch_527,16647 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MIN').is_FloatVarBranch_527,16647 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MAX').is_FloatVarBranch_528,16696 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MAX').is_FloatVarBranch_528,16696 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MIN'(_)).is_FloatVarBranch_529,16745 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MIN'(_)).is_FloatVarBranch_529,16745 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MAX'(_)).is_FloatVarBranch_530,16794 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MAX'(_)).is_FloatVarBranch_530,16794 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MIN'(_)).is_FloatVarBranch_531,16843 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MIN'(_)).is_FloatVarBranch_531,16843 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MAX'(_)).is_FloatVarBranch_532,16897 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MAX'(_)).is_FloatVarBranch_532,16897 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16952 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16952 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16952 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_IntValBranch_('INT_VAL_RND'(_)).is_IntValBranch_540,17116 -is_IntValBranch_('INT_VAL_RND'(_)).is_IntValBranch_540,17116 -is_IntValBranch_('INT_VAL'(_,_)).is_IntValBranch_541,17152 -is_IntValBranch_('INT_VAL'(_,_)).is_IntValBranch_541,17152 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_542,17186 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_542,17186 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_543,17219 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_543,17219 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_544,17252 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_544,17252 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_545,17285 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_545,17285 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_546,17324 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_546,17324 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_547,17363 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_547,17363 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_548,17402 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_548,17402 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_549,17441 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_549,17441 -is_IntValBranch_('INT_NEAR_MIN'(_)).is_IntValBranch_550,17477 -is_IntValBranch_('INT_NEAR_MIN'(_)).is_IntValBranch_550,17477 -is_IntValBranch_('INT_NEAR_MAX'(_)).is_IntValBranch_551,17514 -is_IntValBranch_('INT_NEAR_MAX'(_)).is_IntValBranch_551,17514 -is_IntValBranch_('INT_NEAR_INC'(_)).is_IntValBranch_552,17551 -is_IntValBranch_('INT_NEAR_INC'(_)).is_IntValBranch_552,17551 -is_IntValBranch_('INT_NEAR_DEC'(_)).is_IntValBranch_553,17588 -is_IntValBranch_('INT_NEAR_DEC'(_)).is_IntValBranch_553,17588 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_SetValBranch_('SET_VAL_RND_INC'(_)).is_SetValBranch_560,17776 -is_SetValBranch_('SET_VAL_RND_INC'(_)).is_SetValBranch_560,17776 -is_SetValBranch_('SET_VAL_RND_EXC'(_)).is_SetValBranch_561,17816 -is_SetValBranch_('SET_VAL_RND_EXC'(_)).is_SetValBranch_561,17816 -is_SetValBranch_('SET_VAL'(_,_)).is_SetValBranch_562,17856 -is_SetValBranch_('SET_VAL'(_,_)).is_SetValBranch_562,17856 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_563,17890 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_563,17890 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_564,17927 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_564,17927 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_565,17964 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_565,17964 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_566,18001 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_566,18001 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_567,18038 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_567,18038 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_568,18075 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_568,18075 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_FloatValBranch_('FLOAT_VAL'(_,_)).is_FloatValBranch_575,18263 -is_FloatValBranch_('FLOAT_VAL'(_,_)).is_FloatValBranch_575,18263 -is_FloatValBranch_('FLOAT_VAL_SPLIT_RND'(_)).is_FloatValBranch_576,18301 -is_FloatValBranch_('FLOAT_VAL_SPLIT_RND'(_)).is_FloatValBranch_576,18301 -is_FloatValBranch_('FLOAT_VAL_SPLIT_MIN').is_FloatValBranch_577,18347 -is_FloatValBranch_('FLOAT_VAL_SPLIT_MIN').is_FloatValBranch_577,18347 -is_FloatValBranch_('FLOAT_VAL_SLIT_MAX').is_FloatValBranch_578,18390 -is_FloatValBranch_('FLOAT_VAL_SLIT_MAX').is_FloatValBranch_578,18390 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -new_space(Space) :-new_space586,18596 -new_space(Space) :-new_space586,18596 -new_space(Space) :-new_space586,18596 -is_Space_('Space'(X),X) :-is_Space_600,19081 -is_Space_('Space'(X),X) :-is_Space_600,19081 -is_Space_('Space'(X),X) :-is_Space_600,19081 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Reify_('Reify'(X),X).is_Reify_606,19267 -is_Reify_('Reify'(X),X).is_Reify_606,19267 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -new_intvars([], _Space, _Lo, _Hi).new_intvars612,19404 -new_intvars([], _Space, _Lo, _Hi).new_intvars612,19404 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19439 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19439 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19439 -new_intvars([], _Space, _IntSet).new_intvars617,19554 -new_intvars([], _Space, _IntSet).new_intvars617,19554 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19588 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19588 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19588 -new_boolvars([], _Space).new_boolvars622,19703 -new_boolvars([], _Space).new_boolvars622,19703 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19729 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19729 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19729 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5, _X6).new_setvars627,19823 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5, _X6).new_setvars627,19823 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19878 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19878 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19878 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5).new_setvars632,20041 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5).new_setvars632,20041 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20091 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20091 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20091 -new_setvars([], _Space, _X1, _X2, _X3, _X4).new_setvars637,20242 -new_setvars([], _Space, _X1, _X2, _X3, _X4).new_setvars637,20242 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20287 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20287 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20287 -new_setvars([], _Space, _X1, _X2, _X3).new_setvars642,20426 -new_setvars([], _Space, _X1, _X2, _X3).new_setvars642,20426 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20466 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20466 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20466 -new_setvars([], _Space, _X1, _X2).new_setvars647,20593 -new_setvars([], _Space, _X1, _X2).new_setvars647,20593 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20628 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20628 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20628 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20806 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20806 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20806 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21021 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21021 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21021 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21221 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21221 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21221 -new_boolvar(BVar, Space) :- !,new_boolvar678,21439 -new_boolvar(BVar, Space) :- !,new_boolvar678,21439 -new_boolvar(BVar, Space) :- !,new_boolvar678,21439 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22441 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22441 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22441 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23046 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23046 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23046 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23833 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23833 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23833 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24618 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24618 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24618 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25168 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25168 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25168 -new_tupleset( TupleSet, List ) :-new_tupleset797,25383 -new_tupleset( TupleSet, List ) :-new_tupleset797,25383 -new_tupleset( TupleSet, List ) :-new_tupleset797,25383 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25494 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25494 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25494 -minimize(Space,IVar) :-minimize806,25596 -minimize(Space,IVar) :-minimize806,25596 -minimize(Space,IVar) :-minimize806,25596 -maximize(Space,IVar) :-maximize810,25721 -maximize(Space,IVar) :-maximize810,25721 -maximize(Space,IVar) :-maximize810,25721 -minimize(Space,IVar1,IVar2) :-minimize814,25846 -minimize(Space,IVar1,IVar2) :-minimize814,25846 -minimize(Space,IVar1,IVar2) :-minimize814,25846 -maximize(Space,IVar1,IVar2) :-maximize819,26027 -maximize(Space,IVar1,IVar2) :-maximize819,26027 -maximize(Space,IVar1,IVar2) :-maximize819,26027 -reify(Space,BVar,Mode,R) :-reify825,26209 -reify(Space,BVar,Mode,R) :-reify825,26209 -reify(Space,BVar,Mode,R) :-reify825,26209 -gecode_search_options_init(search_options(0,1.0,8,2,'RM_NONE',0,1,0)).gecode_search_options_init833,26412 -gecode_search_options_init(search_options(0,1.0,8,2,'RM_NONE',0,1,0)).gecode_search_options_init833,26412 -gecode_search_options_offset(restart,1).gecode_search_options_offset834,26483 -gecode_search_options_offset(restart,1).gecode_search_options_offset834,26483 -gecode_search_options_offset(threads,2).gecode_search_options_offset835,26524 -gecode_search_options_offset(threads,2).gecode_search_options_offset835,26524 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset836,26565 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset836,26565 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset837,26606 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset837,26606 -gecode_search_options_offset(cutoff, 5).gecode_search_options_offset838,26647 -gecode_search_options_offset(cutoff, 5).gecode_search_options_offset838,26647 -gecode_search_options_offset(nogoods_limit, 6).gecode_search_options_offset839,26688 -gecode_search_options_offset(nogoods_limit, 6).gecode_search_options_offset839,26688 -gecode_search_options_offset(clone, 7).gecode_search_options_offset840,26736 -gecode_search_options_offset(clone, 7).gecode_search_options_offset840,26736 -gecode_search_options_offset(stop, 8). % unimplementedgecode_search_options_offset841,26776 -gecode_search_options_offset(stop, 8). % unimplementedgecode_search_options_offset841,26776 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26832 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26832 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26832 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26926 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26926 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26926 -gecode_search_options_process_alist([], _R).gecode_search_options_process_alist851,27049 -gecode_search_options_process_alist([], _R).gecode_search_options_process_alist851,27049 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27094 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27094 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27094 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27236 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27236 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27236 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27327 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27327 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27327 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27529 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27529 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27529 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27683 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27683 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27683 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27837 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27837 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27837 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28011 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28011 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28011 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28203 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28203 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28203 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28369 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28369 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28369 -search(Space, Solution) :-search886,28465 -search(Space, Solution) :-search886,28465 -search(Space, Solution) :-search886,28465 -search(Space, Solution, Alist) :-search889,28526 -search(Space, Solution, Alist) :-search889,28526 -search(Space, Solution, Alist) :-search889,28526 -get_for_vars([],_Space,[],_F).get_for_vars900,28796 -get_for_vars([],_Space,[],_F).get_for_vars900,28796 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28827 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28827 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28827 -get_assigned(Space, Var) :-get_assigned905,28931 -get_assigned(Space, Var) :-get_assigned905,28931 -get_assigned(Space, Var) :-get_assigned905,28931 -get_min(X, Space, Var) :-get_min917,29294 -get_min(X, Space, Var) :-get_min917,29294 -get_min(X, Space, Var) :-get_min917,29294 -get_max(X, Space, Var) :-get_max927,29593 -get_max(X, Space, Var) :-get_max927,29593 -get_max(X, Space, Var) :-get_max927,29593 -get_med(X, Space, Var) :-get_med937,29892 -get_med(X, Space, Var) :-get_med937,29892 -get_med(X, Space, Var) :-get_med937,29892 -get_val(X, Space, Var) :-get_val947,30191 -get_val(X, Space, Var) :-get_val947,30191 -get_val(X, Space, Var) :-get_val947,30191 -get_size(X, Space, Var) :-get_size957,30490 -get_size(X, Space, Var) :-get_size957,30490 -get_size(X, Space, Var) :-get_size957,30490 -get_width(X, Space, Var) :-get_width965,30727 -get_width(X, Space, Var) :-get_width965,30727 -get_width(X, Space, Var) :-get_width965,30727 -get_regret_min(X, Space, Var) :-get_regret_min973,30968 -get_regret_min(X, Space, Var) :-get_regret_min973,30968 -get_regret_min(X, Space, Var) :-get_regret_min973,30968 -get_regret_max(X, Space, Var) :-get_regret_max981,31229 -get_regret_max(X, Space, Var) :-get_regret_max981,31229 -get_regret_max(X, Space, Var) :-get_regret_max981,31229 -get_glbSize(X, Space, Var) :-get_glbSize989,31490 -get_glbSize(X, Space, Var) :-get_glbSize989,31490 -get_glbSize(X, Space, Var) :-get_glbSize989,31490 -get_lubSize(X, Space, Var) :-get_lubSize995,31669 -get_lubSize(X, Space, Var) :-get_lubSize995,31669 -get_lubSize(X, Space, Var) :-get_lubSize995,31669 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31848 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31848 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31848 -get_cardMin(X, Space, Var) :-get_cardMin1007,32039 -get_cardMin(X, Space, Var) :-get_cardMin1007,32039 -get_cardMin(X, Space, Var) :-get_cardMin1007,32039 -get_cardMax(X, Space, Var) :-get_cardMax1013,32218 -get_cardMax(X, Space, Var) :-get_cardMax1013,32218 -get_cardMax(X, Space, Var) :-get_cardMax1013,32218 -get_lubMin(X, Space, Var) :-get_lubMin1019,32397 -get_lubMin(X, Space, Var) :-get_lubMin1019,32397 -get_lubMin(X, Space, Var) :-get_lubMin1019,32397 -get_lubMax(X, Space, Var) :-get_lubMax1025,32573 -get_lubMax(X, Space, Var) :-get_lubMax1025,32573 -get_lubMax(X, Space, Var) :-get_lubMax1025,32573 -get_glbMin(X, Space, Var) :-get_glbMin1031,32749 -get_glbMin(X, Space, Var) :-get_glbMin1031,32749 -get_glbMin(X, Space, Var) :-get_glbMin1031,32749 -get_glbMax(X, Space, Var) :-get_glbMax1037,32925 -get_glbMax(X, Space, Var) :-get_glbMax1037,32925 -get_glbMax(X, Space, Var) :-get_glbMax1037,32925 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33101 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33101 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33101 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33286 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33286 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33286 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33471 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33471 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33471 -get_glb_values(X, Space, Var) :-get_glb_values1061,33668 -get_glb_values(X, Space, Var) :-get_glb_values1061,33668 -get_glb_values(X, Space, Var) :-get_glb_values1061,33668 -get_lub_values(X, Space, Var) :-get_lub_values1067,33853 -get_lub_values(X, Space, Var) :-get_lub_values1067,33853 -get_lub_values(X, Space, Var) :-get_lub_values1067,33853 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34038 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34038 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34038 -get_ranges(X, Space, Var) :-get_ranges1079,34235 -get_ranges(X, Space, Var) :-get_ranges1079,34235 -get_ranges(X, Space, Var) :-get_ranges1079,34235 -get_values(X, Space, Var) :-get_values1085,34408 -get_values(X, Space, Var) :-get_values1085,34408 -get_values(X, Space, Var) :-get_values1085,34408 -new_disjunctor(X, Space) :-new_disjunctor1091,34581 -new_disjunctor(X, Space) :-new_disjunctor1091,34581 -new_disjunctor(X, Space) :-new_disjunctor1091,34581 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_1096,34696 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_1096,34696 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34826 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34826 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34826 -new_clause(X, Disj) :-new_clause1103,34929 -new_clause(X, Disj) :-new_clause1103,34929 -new_clause(X, Disj) :-new_clause1103,34929 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35034 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35034 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35034 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35226 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35226 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35226 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35317 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35317 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35317 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35380 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35380 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35380 -new_forward(Clause, X, Y) :-new_forward1123,35496 -new_forward(Clause, X, Y) :-new_forward1123,35496 -new_forward(Clause, X, Y) :-new_forward1123,35496 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -keep_(Space, Var) :-keep_1153,36778 -keep_(Space, Var) :-keep_1153,36778 -keep_(Space, Var) :-keep_1153,36778 -keep_list_(_Space, []) :- !.keep_list_1165,37275 -keep_list_(_Space, []) :- !.keep_list_1165,37275 -keep_list_(_Space, []) :- !.keep_list_1165,37275 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37304 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37304 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37304 -keep_list_(_, X) :-keep_list_1168,37376 -keep_list_(_, X) :-keep_list_1168,37376 -keep_list_(_, X) :-keep_list_1168,37376 -is_RestartMode_('RM_NONE').is_RestartMode_1362,48423 -is_RestartMode_('RM_NONE').is_RestartMode_1362,48423 -is_RestartMode_('RM_CONSTANT').is_RestartMode_1363,48451 -is_RestartMode_('RM_CONSTANT').is_RestartMode_1363,48451 -is_RestartMode_('RM_LINEAR').is_RestartMode_1364,48483 -is_RestartMode_('RM_LINEAR').is_RestartMode_1364,48483 -is_RestartMode_('RM_LUBY').is_RestartMode_1365,48513 -is_RestartMode_('RM_LUBY').is_RestartMode_1365,48513 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_1366,48541 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_1366,48541 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_1368,48575 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_1368,48575 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_1369,48613 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_1369,48613 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_1370,48659 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_1370,48659 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_1371,48701 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_1371,48701 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_1372,48739 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_1372,48739 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_FloatRelType_('FRT_EQ').is_FloatRelType_1377,48887 -is_FloatRelType_('FRT_EQ').is_FloatRelType_1377,48887 -is_FloatRelType_('FRT_NQ').is_FloatRelType_1378,48915 -is_FloatRelType_('FRT_NQ').is_FloatRelType_1378,48915 -is_FloatRelType_('FRT_LQ').is_FloatRelType_1379,48943 -is_FloatRelType_('FRT_LQ').is_FloatRelType_1379,48943 -is_FloatRelType_('FRT_LE').is_FloatRelType_1380,48971 -is_FloatRelType_('FRT_LE').is_FloatRelType_1380,48971 -is_FloatRelType_('FRT_GQ').is_FloatRelType_1381,48999 -is_FloatRelType_('FRT_GQ').is_FloatRelType_1381,48999 -is_FloatRelType_('FRT_GR').is_FloatRelType_1382,49027 -is_FloatRelType_('FRT_GR').is_FloatRelType_1382,49027 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_1384,49056 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_1384,49056 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_1385,49093 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_1385,49093 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_1386,49130 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_1386,49130 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_1387,49167 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_1387,49167 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_1388,49204 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_1388,49204 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_1389,49241 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_1389,49241 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_ReifyMode_('RM_EQV').is_ReifyMode_1394,49382 -is_ReifyMode_('RM_EQV').is_ReifyMode_1394,49382 -is_ReifyMode_('RM_IMP').is_ReifyMode_1395,49407 -is_ReifyMode_('RM_IMP').is_ReifyMode_1395,49407 -is_ReifyMode_('RM_PMI').is_ReifyMode_1396,49432 -is_ReifyMode_('RM_PMI').is_ReifyMode_1396,49432 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_1398,49458 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_1398,49458 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_1399,49492 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_1399,49492 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_1400,49526 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_1400,49526 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_IntRelType_('IRT_EQ').is_IntRelType_1405,49652 -is_IntRelType_('IRT_EQ').is_IntRelType_1405,49652 -is_IntRelType_('IRT_NQ').is_IntRelType_1406,49678 -is_IntRelType_('IRT_NQ').is_IntRelType_1406,49678 -is_IntRelType_('IRT_LQ').is_IntRelType_1407,49704 -is_IntRelType_('IRT_LQ').is_IntRelType_1407,49704 -is_IntRelType_('IRT_LE').is_IntRelType_1408,49730 -is_IntRelType_('IRT_LE').is_IntRelType_1408,49730 -is_IntRelType_('IRT_GQ').is_IntRelType_1409,49756 -is_IntRelType_('IRT_GQ').is_IntRelType_1409,49756 -is_IntRelType_('IRT_GR').is_IntRelType_1410,49782 -is_IntRelType_('IRT_GR').is_IntRelType_1410,49782 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_1412,49809 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_1412,49809 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_1413,49844 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_1413,49844 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_1414,49879 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_1414,49879 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_1415,49914 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_1415,49914 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_1416,49949 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_1416,49949 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_1417,49984 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_1417,49984 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_BoolOpType_('BOT_AND').is_BoolOpType_1422,50115 -is_BoolOpType_('BOT_AND').is_BoolOpType_1422,50115 -is_BoolOpType_('BOT_OR').is_BoolOpType_1423,50142 -is_BoolOpType_('BOT_OR').is_BoolOpType_1423,50142 -is_BoolOpType_('BOT_IMP').is_BoolOpType_1424,50168 -is_BoolOpType_('BOT_IMP').is_BoolOpType_1424,50168 -is_BoolOpType_('BOT_EQV').is_BoolOpType_1425,50195 -is_BoolOpType_('BOT_EQV').is_BoolOpType_1425,50195 -is_BoolOpType_('BOT_XOR').is_BoolOpType_1426,50222 -is_BoolOpType_('BOT_XOR').is_BoolOpType_1426,50222 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_1428,50250 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_1428,50250 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_1429,50287 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_1429,50287 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_1430,50322 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_1430,50322 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_1431,50359 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_1431,50359 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_1432,50396 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_1432,50396 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_IntConLevel_('ICL_VAL').is_IntConLevel_1437,50529 -is_IntConLevel_('ICL_VAL').is_IntConLevel_1437,50529 -is_IntConLevel_('ICL_BND').is_IntConLevel_1438,50557 -is_IntConLevel_('ICL_BND').is_IntConLevel_1438,50557 -is_IntConLevel_('ICL_DOM').is_IntConLevel_1439,50585 -is_IntConLevel_('ICL_DOM').is_IntConLevel_1439,50585 -is_IntConLevel_('ICL_DEF').is_IntConLevel_1440,50613 -is_IntConLevel_('ICL_DEF').is_IntConLevel_1440,50613 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_1442,50642 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_1442,50642 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_1443,50680 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_1443,50680 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_1444,50718 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_1444,50718 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_1445,50756 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_1445,50756 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_TaskType_('TT_FIXP').is_TaskType_1450,50894 -is_TaskType_('TT_FIXP').is_TaskType_1450,50894 -is_TaskType_('TT_FIXS').is_TaskType_1451,50919 -is_TaskType_('TT_FIXS').is_TaskType_1451,50919 -is_TaskType_('TT_FIXE').is_TaskType_1452,50944 -is_TaskType_('TT_FIXE').is_TaskType_1452,50944 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_1454,50970 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_1454,50970 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_1455,51005 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_1455,51005 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_1456,51040 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_1456,51040 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_1461,51163 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_1461,51163 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_1462,51199 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_1462,51199 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_1463,51237 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_1463,51237 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_1465,51277 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_1465,51277 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_1466,51323 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_1466,51323 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_1467,51373 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_1467,51373 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_SetRelType_('SRT_EQ').is_SetRelType_1472,51557 -is_SetRelType_('SRT_EQ').is_SetRelType_1472,51557 -is_SetRelType_('SRT_NQ').is_SetRelType_1473,51583 -is_SetRelType_('SRT_NQ').is_SetRelType_1473,51583 -is_SetRelType_('SRT_SUB').is_SetRelType_1474,51609 -is_SetRelType_('SRT_SUB').is_SetRelType_1474,51609 -is_SetRelType_('SRT_SUP').is_SetRelType_1475,51636 -is_SetRelType_('SRT_SUP').is_SetRelType_1475,51636 -is_SetRelType_('SRT_DISJ').is_SetRelType_1476,51663 -is_SetRelType_('SRT_DISJ').is_SetRelType_1476,51663 -is_SetRelType_('SRT_CMPL').is_SetRelType_1477,51691 -is_SetRelType_('SRT_CMPL').is_SetRelType_1477,51691 -is_SetRelType_('SRT_LQ').is_SetRelType_1478,51719 -is_SetRelType_('SRT_LQ').is_SetRelType_1478,51719 -is_SetRelType_('SRT_LE').is_SetRelType_1479,51745 -is_SetRelType_('SRT_LE').is_SetRelType_1479,51745 -is_SetRelType_('SRT_GQ').is_SetRelType_1480,51771 -is_SetRelType_('SRT_GQ').is_SetRelType_1480,51771 -is_SetRelType_('SRT_GR').is_SetRelType_1481,51797 -is_SetRelType_('SRT_GR').is_SetRelType_1481,51797 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_1483,51824 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_1483,51824 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_1484,51859 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_1484,51859 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_1485,51894 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_1485,51894 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_1486,51931 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_1486,51931 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_1487,51968 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_1487,51968 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_1488,52007 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_1488,52007 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_1489,52046 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_1489,52046 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_1490,52081 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_1490,52081 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_1491,52116 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_1491,52116 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_1492,52151 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_1492,52151 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetOpType_('SOT_UNION').is_SetOpType_1497,52282 -is_SetOpType_('SOT_UNION').is_SetOpType_1497,52282 -is_SetOpType_('SOT_DUNION').is_SetOpType_1498,52310 -is_SetOpType_('SOT_DUNION').is_SetOpType_1498,52310 -is_SetOpType_('SOT_INTER').is_SetOpType_1499,52339 -is_SetOpType_('SOT_INTER').is_SetOpType_1499,52339 -is_SetOpType_('SOT_MINUS').is_SetOpType_1500,52367 -is_SetOpType_('SOT_MINUS').is_SetOpType_1500,52367 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_1502,52396 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_1502,52396 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_1503,52436 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_1503,52436 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_1504,52478 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_1504,52478 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_1505,52518 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_1505,52518 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -unary(X0,X1,X2,X3,X4,X5) :-unary1510,52650 -unary(X0,X1,X2,X3,X4,X5) :-unary1510,52650 -unary(X0,X1,X2,X3,X4,X5) :-unary1510,52650 -nvalues(X0,X1,X2,X3,X4) :-nvalues1535,54197 -nvalues(X0,X1,X2,X3,X4) :-nvalues1535,54197 -nvalues(X0,X1,X2,X3,X4) :-nvalues1535,54197 -max(X0,X1,X2,X3) :-max1564,55969 -max(X0,X1,X2,X3) :-max1564,55969 -max(X0,X1,X2,X3) :-max1564,55969 -dom(X0,X1,X2,X3,X4,X5) :-dom1593,57603 -dom(X0,X1,X2,X3,X4,X5) :-dom1593,57603 -dom(X0,X1,X2,X3,X4,X5) :-dom1593,57603 -argmin(X0,X1,X2) :-argmin1618,59076 -argmin(X0,X1,X2) :-argmin1618,59076 -argmin(X0,X1,X2) :-argmin1618,59076 -convex(X0,X1,X2) :-convex1627,59469 -convex(X0,X1,X2) :-convex1627,59469 -convex(X0,X1,X2) :-convex1627,59469 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap1636,59858 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap1636,59858 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap1636,59858 -assign(X0,X1,X2) :-assign1649,60569 -assign(X0,X1,X2) :-assign1649,60569 -assign(X0,X1,X2) :-assign1649,60569 -element(X0,X1,X2,X3) :-element1686,62859 -element(X0,X1,X2,X3) :-element1686,62859 -element(X0,X1,X2,X3) :-element1686,62859 -sequence(X0,X1) :-sequence1729,65532 -sequence(X0,X1) :-sequence1729,65532 -sequence(X0,X1) :-sequence1729,65532 -notMax(X0,X1,X2) :-notMax1736,65810 -notMax(X0,X1,X2) :-notMax1736,65810 -notMax(X0,X1,X2) :-notMax1736,65810 -ite(X0,X1,X2,X3,X4) :-ite1745,66200 -ite(X0,X1,X2,X3,X4) :-ite1745,66200 -ite(X0,X1,X2,X3,X4) :-ite1745,66200 -unary(X0,X1,X2) :-unary1758,66860 -unary(X0,X1,X2) :-unary1758,66860 -unary(X0,X1,X2) :-unary1758,66860 -nroot(X0,X1,X2,X3,X4) :-nroot1767,67250 -nroot(X0,X1,X2,X3,X4) :-nroot1767,67250 -nroot(X0,X1,X2,X3,X4) :-nroot1767,67250 -circuit(X0,X1,X2,X3) :-circuit1780,67925 -circuit(X0,X1,X2,X3) :-circuit1780,67925 -circuit(X0,X1,X2,X3) :-circuit1780,67925 -dom(X0,X1,X2,X3,X4) :-dom1797,68826 -dom(X0,X1,X2,X3,X4) :-dom1797,68826 -dom(X0,X1,X2,X3,X4) :-dom1797,68826 -channel(X0,X1,X2,X3) :-channel1860,72902 -channel(X0,X1,X2,X3) :-channel1860,72902 -channel(X0,X1,X2,X3) :-channel1860,72902 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap1883,74194 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap1883,74194 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap1883,74194 -element(X0,X1,X2,X3,X4,X5,X6) :-element1904,75642 -element(X0,X1,X2,X3,X4,X5,X6) :-element1904,75642 -element(X0,X1,X2,X3,X4,X5,X6) :-element1904,75642 -max(X0,X1,X2) :-max1971,80562 -max(X0,X1,X2) :-max1971,80562 -max(X0,X1,X2) :-max1971,80562 -unshare(X0,X1) :-unshare1988,81389 -unshare(X0,X1) :-unshare1988,81389 -unshare(X0,X1) :-unshare1988,81389 -path(X0,X1,X2,X3,X4) :-path1997,81764 -path(X0,X1,X2,X3,X4) :-path1997,81764 -path(X0,X1,X2,X3,X4) :-path1997,81764 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch2018,82938 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch2018,82938 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch2018,82938 -mult(X0,X1,X2,X3) :-mult2059,85823 -mult(X0,X1,X2,X3) :-mult2059,85823 -mult(X0,X1,X2,X3) :-mult2059,85823 -clause(X0,X1,X2,X3,X4,X5) :-clause2076,86694 -clause(X0,X1,X2,X3,X4,X5) :-clause2076,86694 -clause(X0,X1,X2,X3,X4,X5) :-clause2076,86694 -precede(X0,X1,X2,X3,X4) :-precede2095,87844 -precede(X0,X1,X2,X3,X4) :-precede2095,87844 -precede(X0,X1,X2,X3,X4) :-precede2095,87844 -argmax(X0,X1,X2) :-argmax2108,88534 -argmax(X0,X1,X2) :-argmax2108,88534 -argmax(X0,X1,X2) :-argmax2108,88534 -distinct(X0,X1) :-distinct2117,88927 -distinct(X0,X1) :-distinct2117,88927 -distinct(X0,X1) :-distinct2117,88927 -member(X0,X1,X2,X3) :-member2124,89205 -member(X0,X1,X2,X3) :-member2124,89205 -member(X0,X1,X2,X3) :-member2124,89205 -mod(X0,X1,X2,X3,X4) :-mod2145,90348 -mod(X0,X1,X2,X3,X4) :-mod2145,90348 -mod(X0,X1,X2,X3,X4) :-mod2145,90348 -cardinality(X0,X1,X2) :-cardinality2158,91012 -cardinality(X0,X1,X2) :-cardinality2158,91012 -cardinality(X0,X1,X2) :-cardinality2158,91012 -atmostOne(X0,X1,X2) :-atmostOne2167,91426 -atmostOne(X0,X1,X2) :-atmostOne2167,91426 -atmostOne(X0,X1,X2) :-atmostOne2167,91426 -channelSorted(X0,X1,X2) :-channelSorted2176,91831 -channelSorted(X0,X1,X2) :-channelSorted2176,91831 -channelSorted(X0,X1,X2) :-channelSorted2176,91831 -extensional(X0,X1,X2,X3,X4) :-extensional2185,92259 -extensional(X0,X1,X2,X3,X4) :-extensional2185,92259 -extensional(X0,X1,X2,X3,X4) :-extensional2185,92259 -linear(X0,X1,X2,X3) :-linear2206,93549 -linear(X0,X1,X2,X3) :-linear2206,93549 -linear(X0,X1,X2,X3) :-linear2206,93549 -circuit(X0,X1) :-circuit2235,95213 -circuit(X0,X1) :-circuit2235,95213 -circuit(X0,X1) :-circuit2235,95213 -rel(X0,X1,X2,X3,X4) :-rel2242,95486 -rel(X0,X1,X2,X3,X4) :-rel2242,95486 -rel(X0,X1,X2,X3,X4) :-rel2242,95486 -min(X0,X1,X2,X3) :-min2375,105410 -min(X0,X1,X2,X3) :-min2375,105410 -min(X0,X1,X2,X3) :-min2375,105410 -cardinality(X0,X1,X2,X3) :-cardinality2404,107044 -cardinality(X0,X1,X2,X3) :-cardinality2404,107044 -cardinality(X0,X1,X2,X3) :-cardinality2404,107044 -count(X0,X1,X2,X3) :-count2421,107962 -count(X0,X1,X2,X3) :-count2421,107962 -count(X0,X1,X2,X3) :-count2421,107962 -sqrt(X0,X1,X2) :-sqrt2444,109249 -sqrt(X0,X1,X2) :-sqrt2444,109249 -sqrt(X0,X1,X2) :-sqrt2444,109249 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives2457,109847 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives2457,109847 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives2457,109847 -nvalues(X0,X1,X2,X3) :-nvalues2550,117719 -nvalues(X0,X1,X2,X3) :-nvalues2550,117719 -nvalues(X0,X1,X2,X3) :-nvalues2550,117719 -binpacking(X0,X1,X2,X3) :-binpacking2571,118866 -binpacking(X0,X1,X2,X3) :-binpacking2571,118866 -binpacking(X0,X1,X2,X3) :-binpacking2571,118866 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear2582,119426 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear2582,119426 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear2582,119426 -abs(X0,X1,X2,X3) :-abs2621,122138 -abs(X0,X1,X2,X3) :-abs2621,122138 -abs(X0,X1,X2,X3) :-abs2621,122138 -convex(X0,X1) :-convex2632,122652 -convex(X0,X1) :-convex2632,122652 -convex(X0,X1) :-convex2632,122652 -div(X0,X1,X2,X3) :-div2639,122917 -div(X0,X1,X2,X3) :-div2639,122917 -div(X0,X1,X2,X3) :-div2639,122917 -rel(X0,X1,X2,X3,X4,X5) :-rel2656,123779 -rel(X0,X1,X2,X3,X4,X5) :-rel2656,123779 -rel(X0,X1,X2,X3,X4,X5) :-rel2656,123779 -weights(X0,X1,X2,X3,X4) :-weights2737,129496 -weights(X0,X1,X2,X3,X4) :-weights2737,129496 -weights(X0,X1,X2,X3,X4) :-weights2737,129496 -max(X0,X1,X2,X3,X4) :-max2750,130185 -max(X0,X1,X2,X3,X4) :-max2750,130185 -max(X0,X1,X2,X3,X4) :-max2750,130185 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path2763,130849 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path2763,130849 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path2763,130849 -unary(X0,X1,X2,X3) :-unary2784,132266 -unary(X0,X1,X2,X3) :-unary2784,132266 -unary(X0,X1,X2,X3) :-unary2784,132266 -nroot(X0,X1,X2,X3) :-nroot2807,133560 -nroot(X0,X1,X2,X3) :-nroot2807,133560 -nroot(X0,X1,X2,X3) :-nroot2807,133560 -sorted(X0,X1,X2,X3,X4) :-sorted2824,134432 -sorted(X0,X1,X2,X3,X4) :-sorted2824,134432 -sorted(X0,X1,X2,X3,X4) :-sorted2824,134432 -circuit(X0,X1,X2,X3,X4) :-circuit2837,135129 -circuit(X0,X1,X2,X3,X4) :-circuit2837,135129 -circuit(X0,X1,X2,X3,X4) :-circuit2837,135129 -dom(X0,X1,X2,X3) :-dom2860,136499 -dom(X0,X1,X2,X3) :-dom2860,136499 -dom(X0,X1,X2,X3) :-dom2860,136499 -abs(X0,X1,X2) :-abs2945,142458 -abs(X0,X1,X2) :-abs2945,142458 -abs(X0,X1,X2) :-abs2945,142458 -channel(X0,X1,X2,X3,X4) :-channel2958,143047 -channel(X0,X1,X2,X3,X4) :-channel2958,143047 -channel(X0,X1,X2,X3,X4) :-channel2958,143047 -assign(X0,X1,X2,X3,X4) :-assign2979,144251 -assign(X0,X1,X2,X3,X4) :-assign2979,144251 -assign(X0,X1,X2,X3,X4) :-assign2979,144251 -rel(X0,X1,X2) :-rel3016,146646 -rel(X0,X1,X2) :-rel3016,146646 -rel(X0,X1,X2) :-rel3016,146646 -path(X0,X1,X2,X3) :-path3029,147250 -path(X0,X1,X2,X3) :-path3029,147250 -path(X0,X1,X2,X3) :-path3029,147250 -branch(X0,X1,X2,X3) :-branch3040,147770 -branch(X0,X1,X2,X3) :-branch3040,147770 -branch(X0,X1,X2,X3) :-branch3040,147770 -mult(X0,X1,X2,X3,X4) :-mult3093,151414 -mult(X0,X1,X2,X3,X4) :-mult3093,151414 -mult(X0,X1,X2,X3,X4) :-mult3093,151414 -circuit(X0,X1,X2,X3,X4,X5) :-circuit3106,152085 -circuit(X0,X1,X2,X3,X4,X5) :-circuit3106,152085 -circuit(X0,X1,X2,X3,X4,X5) :-circuit3106,152085 -clause(X0,X1,X2,X3,X4) :-clause3133,153800 -clause(X0,X1,X2,X3,X4) :-clause3133,153800 -clause(X0,X1,X2,X3,X4) :-clause3133,153800 -precede(X0,X1,X2,X3) :-precede3148,154618 -precede(X0,X1,X2,X3) :-precede3148,154618 -precede(X0,X1,X2,X3) :-precede3148,154618 -channel(X0,X1,X2,X3,X4,X5) :-channel3169,155770 -channel(X0,X1,X2,X3,X4,X5) :-channel3169,155770 -channel(X0,X1,X2,X3,X4,X5) :-channel3169,155770 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative3184,156630 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative3184,156630 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative3184,156630 -distinct(X0,X1,X2) :-distinct3257,162173 -distinct(X0,X1,X2) :-distinct3257,162173 -distinct(X0,X1,X2) :-distinct3257,162173 -member(X0,X1,X2,X3,X4) :-member3270,162809 -member(X0,X1,X2,X3,X4) :-member3270,162809 -member(X0,X1,X2,X3,X4) :-member3270,162809 -mod(X0,X1,X2,X3) :-mod3291,164013 -mod(X0,X1,X2,X3) :-mod3291,164013 -mod(X0,X1,X2,X3) :-mod3291,164013 -sqr(X0,X1,X2) :-sqr3302,164523 -sqr(X0,X1,X2) :-sqr3302,164523 -sqr(X0,X1,X2) :-sqr3302,164523 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence3315,165114 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence3315,165114 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence3315,165114 -path(X0,X1,X2,X3,X4,X5,X6) :-path3344,167021 -path(X0,X1,X2,X3,X4,X5,X6) :-path3344,167021 -path(X0,X1,X2,X3,X4,X5,X6) :-path3344,167021 -divmod(X0,X1,X2,X3,X4,X5) :-divmod3375,169078 -divmod(X0,X1,X2,X3,X4,X5) :-divmod3375,169078 -divmod(X0,X1,X2,X3,X4,X5) :-divmod3375,169078 -sorted(X0,X1,X2) :-sorted3390,169929 -sorted(X0,X1,X2) :-sorted3390,169929 -sorted(X0,X1,X2) :-sorted3390,169929 -extensional(X0,X1,X2,X3) :-extensional3399,170327 -extensional(X0,X1,X2,X3) :-extensional3399,170327 -extensional(X0,X1,X2,X3) :-extensional3399,170327 -circuit(X0,X1,X2) :-circuit3424,171814 -circuit(X0,X1,X2) :-circuit3424,171814 -circuit(X0,X1,X2) :-circuit3424,171814 -argmin(X0,X1,X2,X3) :-argmin3437,172437 -argmin(X0,X1,X2,X3) :-argmin3437,172437 -argmin(X0,X1,X2,X3) :-argmin3437,172437 -channel(X0,X1,X2) :-channel3448,172966 -channel(X0,X1,X2) :-channel3448,172966 -channel(X0,X1,X2) :-channel3448,172966 -count(X0,X1,X2,X3,X4) :-count3481,174889 -count(X0,X1,X2,X3,X4) :-count3481,174889 -count(X0,X1,X2,X3,X4) :-count3481,174889 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives3536,178622 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives3536,178622 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives3536,178622 -binpacking(X0,X1,X2,X3,X4) :-binpacking3613,184777 -binpacking(X0,X1,X2,X3,X4) :-binpacking3613,184777 -binpacking(X0,X1,X2,X3,X4) :-binpacking3613,184777 -extensional(X0,X1,X2) :-extensional3626,185498 -extensional(X0,X1,X2) :-extensional3626,185498 -extensional(X0,X1,X2) :-extensional3626,185498 -linear(X0,X1,X2,X3,X4,X5) :-linear3643,186378 -linear(X0,X1,X2,X3,X4,X5) :-linear3643,186378 -linear(X0,X1,X2,X3,X4,X5) :-linear3643,186378 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap3728,192624 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap3728,192624 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap3728,192624 -div(X0,X1,X2,X3,X4) :-div3755,194458 -div(X0,X1,X2,X3,X4) :-div3755,194458 -div(X0,X1,X2,X3,X4) :-div3755,194458 -sqr(X0,X1,X2,X3) :-sqr3768,195122 -sqr(X0,X1,X2,X3) :-sqr3768,195122 -sqr(X0,X1,X2,X3) :-sqr3768,195122 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path3779,195637 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path3779,195637 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path3779,195637 -unary(X0,X1,X2,X3,X4) :-unary3814,198089 -unary(X0,X1,X2,X3,X4) :-unary3814,198089 -unary(X0,X1,X2,X3,X4) :-unary3814,198089 -sorted(X0,X1,X2,X3) :-sorted3845,199989 -sorted(X0,X1,X2,X3) :-sorted3845,199989 -sorted(X0,X1,X2,X3) :-sorted3845,199989 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element3858,200651 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element3858,200651 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element3858,200651 -assign(X0,X1,X2,X3) :-assign3909,204413 -assign(X0,X1,X2,X3) :-assign3909,204413 -assign(X0,X1,X2,X3) :-assign3909,204413 -element(X0,X1,X2,X3,X4) :-element3962,208043 -element(X0,X1,X2,X3,X4) :-element3962,208043 -element(X0,X1,X2,X3,X4) :-element3962,208043 -sequence(X0,X1,X2) :-sequence4033,212983 -sequence(X0,X1,X2) :-sequence4033,212983 -sequence(X0,X1,X2) :-sequence4033,212983 -branch(X0,X1,X2,X3,X4) :-branch4042,213387 -branch(X0,X1,X2,X3,X4) :-branch4042,213387 -branch(X0,X1,X2,X3,X4) :-branch4042,213387 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit4085,216228 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit4085,216228 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit4085,216228 -pow(X0,X1,X2,X3) :-pow4102,217273 -pow(X0,X1,X2,X3) :-pow4102,217273 -pow(X0,X1,X2,X3) :-pow4102,217273 -precede(X0,X1,X2) :-precede4119,218127 -precede(X0,X1,X2) :-precede4119,218127 -precede(X0,X1,X2) :-precede4119,218127 -argmax(X0,X1,X2,X3,X4) :-argmax4132,218752 -argmax(X0,X1,X2,X3,X4) :-argmax4132,218752 -argmax(X0,X1,X2,X3,X4) :-argmax4132,218752 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative4145,219438 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative4145,219438 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative4145,219438 -distinct(X0,X1,X2,X3) :-distinct4202,223506 -distinct(X0,X1,X2,X3) :-distinct4202,223506 -distinct(X0,X1,X2,X3) :-distinct4202,223506 -min(X0,X1,X2) :-min4213,224056 -min(X0,X1,X2) :-min4213,224056 -min(X0,X1,X2) :-min4213,224056 -sqrt(X0,X1,X2,X3) :-sqrt4230,224883 -sqrt(X0,X1,X2,X3) :-sqrt4230,224883 -sqrt(X0,X1,X2,X3) :-sqrt4230,224883 -sequence(X0,X1,X2,X3,X4,X5) :-sequence4241,225404 -sequence(X0,X1,X2,X3,X4,X5) :-sequence4241,225404 -sequence(X0,X1,X2,X3,X4,X5) :-sequence4241,225404 -unshare(X0,X1,X2) :-unshare4266,226938 -unshare(X0,X1,X2) :-unshare4266,226938 -unshare(X0,X1,X2) :-unshare4266,226938 -path(X0,X1,X2,X3,X4,X5) :-path4279,227572 -path(X0,X1,X2,X3,X4,X5) :-path4279,227572 -path(X0,X1,X2,X3,X4,X5) :-path4279,227572 -divmod(X0,X1,X2,X3,X4) :-divmod4304,229074 -divmod(X0,X1,X2,X3,X4) :-divmod4304,229074 -divmod(X0,X1,X2,X3,X4) :-divmod4304,229074 -branch(X0,X1,X2,X3,X4,X5) :-branch4317,229754 -branch(X0,X1,X2,X3,X4,X5) :-branch4317,229754 -branch(X0,X1,X2,X3,X4,X5) :-branch4317,229754 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap4374,233859 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap4374,233859 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap4374,233859 -argmin(X0,X1,X2,X3,X4) :-argmin4395,235354 -argmin(X0,X1,X2,X3,X4) :-argmin4395,235354 -argmin(X0,X1,X2,X3,X4) :-argmin4395,235354 -cumulative(X0,X1,X2,X3,X4) :-cumulative4408,236040 -cumulative(X0,X1,X2,X3,X4) :-cumulative4408,236040 -cumulative(X0,X1,X2,X3,X4) :-cumulative4408,236040 -member(X0,X1,X2) :-member4429,237279 -member(X0,X1,X2) :-member4429,237279 -member(X0,X1,X2) :-member4429,237279 -count(X0,X1,X2,X3,X4,X5) :-count4442,237897 -count(X0,X1,X2,X3,X4,X5) :-count4442,237897 -count(X0,X1,X2,X3,X4,X5) :-count4442,237897 -pow(X0,X1,X2,X3,X4) :-pow4497,241738 -pow(X0,X1,X2,X3,X4) :-pow4497,241738 -pow(X0,X1,X2,X3,X4) :-pow4497,241738 -notMin(X0,X1,X2) :-notMin4510,242399 -notMin(X0,X1,X2) :-notMin4510,242399 -notMin(X0,X1,X2) :-notMin4510,242399 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative4519,242789 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative4519,242789 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative4519,242789 -branch(X0,X1,X2) :-branch4576,247135 -branch(X0,X1,X2) :-branch4576,247135 -branch(X0,X1,X2) :-branch4576,247135 -dom(X0,X1,X2) :-dom4597,248252 -dom(X0,X1,X2) :-dom4597,248252 -dom(X0,X1,X2) :-dom4597,248252 -linear(X0,X1,X2,X3,X4) :-linear4646,251275 -linear(X0,X1,X2,X3,X4) :-linear4646,251275 -linear(X0,X1,X2,X3,X4) :-linear4646,251275 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap4723,256604 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap4723,256604 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap4723,256604 -element(X0,X1,X2,X3,X4,X5) :-element4740,257636 -element(X0,X1,X2,X3,X4,X5) :-element4740,257636 -element(X0,X1,X2,X3,X4,X5) :-element4740,257636 -rel(X0,X1,X2,X3) :-rel4779,260264 -rel(X0,X1,X2,X3) :-rel4779,260264 -rel(X0,X1,X2,X3) :-rel4779,260264 -min(X0,X1,X2,X3,X4) :-min4876,267235 -min(X0,X1,X2,X3,X4) :-min4876,267235 -min(X0,X1,X2,X3,X4) :-min4876,267235 -count(X0,X1,X2) :-count4889,267899 -count(X0,X1,X2) :-count4889,267899 -count(X0,X1,X2) :-count4889,267899 -argmax(X0,X1,X2,X3) :-argmax4900,268401 -argmax(X0,X1,X2,X3) :-argmax4900,268401 -argmax(X0,X1,X2,X3) :-argmax4900,268401 -ite(X0,X1,X2,X3,X4,X5) :-ite4911,268930 -ite(X0,X1,X2,X3,X4,X5) :-ite4911,268930 -ite(X0,X1,X2,X3,X4,X5) :-ite4911,268930 - -CodeBlocks/packages/jpl/src/java/CMakeFiles/jpl.dir/java_class_filelist,0 - -CodeBlocks/packages/jpl/src/java/CMakeFiles/jpl.dir/java_compiled_jpl,0 - -CodeBlocks/packages/jpl/src/java/CMakeFiles/jpl.dir/java_sources,0 - -CodeBlocks/packages/myddas/pl/myddas.yap,6416 -db_open(Interface,HostDb,User,Password):-db_open129,2900 -db_open(Interface,HostDb,User,Password):-db_open129,2900 -db_open(Interface,HostDb,User,Password):-db_open129,2900 -db_open(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open131,2991 -db_open(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open131,2991 -db_open(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open131,2991 -db_open(mysql,Connection,Host/Db/Port,User,Password) :-db_open135,3221 -db_open(mysql,Connection,Host/Db/Port,User,Password) :-db_open135,3221 -db_open(mysql,Connection,Host/Db/Port,User,Password) :-db_open135,3221 -db_open(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_open138,3389 -db_open(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_open138,3389 -db_open(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_open138,3389 -db_open(mysql,Connection,Host/Db,User,Password) :-db_open140,3529 -db_open(mysql,Connection,Host/Db,User,Password) :-db_open140,3529 -db_open(mysql,Connection,Host/Db,User,Password) :-db_open140,3529 -db_open(postgres,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open142,3693 -db_open(postgres,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open142,3693 -db_open(postgres,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open142,3693 -db_open(postgres,Connection,Host/Db/Port,User,Password) :-db_open146,3929 -db_open(postgres,Connection,Host/Db/Port,User,Password) :-db_open146,3929 -db_open(postgres,Connection,Host/Db/Port,User,Password) :-db_open146,3929 -db_open(postgres,Connection,Host/Db/Socket,User,Password) :- !,db_open149,4103 -db_open(postgres,Connection,Host/Db/Socket,User,Password) :- !,db_open149,4103 -db_open(postgres,Connection,Host/Db/Socket,User,Password) :- !,db_open149,4103 -db_open(postgres,Connection,Host/Db,User,Password) :-db_open151,4249 -db_open(postgres,Connection,Host/Db,User,Password) :-db_open151,4249 -db_open(postgres,Connection,Host/Db,User,Password) :-db_open151,4249 -db_close:-db_close158,4561 -db_close(Protocol):-db_close160,4591 -db_close(Protocol):-db_close160,4591 -db_close(Protocol):-db_close160,4591 -db_close(Protocol) :-db_close164,4698 -db_close(Protocol) :-db_close164,4698 -db_close(Protocol) :-db_close164,4698 -db_verbose(X):-db_verbose183,5186 -db_verbose(X):-db_verbose183,5186 -db_verbose(X):-db_verbose183,5186 -db_verbose(N):-!,db_verbose186,5239 -db_verbose(N):-!,db_verbose186,5239 -db_verbose(N):-!,db_verbose186,5239 -db_module(X):-db_module196,5512 -db_module(X):-db_module196,5512 -db_module(X):-db_module196,5512 -db_module(ModuleName):-db_module199,5563 -db_module(ModuleName):-db_module199,5563 -db_module(ModuleName):-db_module199,5563 -db_is_database_predicate(Module,PredName,Arity):-db_is_database_predicate208,5813 -db_is_database_predicate(Module,PredName,Arity):-db_is_database_predicate208,5813 -db_is_database_predicate(Module,PredName,Arity):-db_is_database_predicate208,5813 -db_sql_select(Protocol,SQL,LA):-db_sql_select217,6134 -db_sql_select(Protocol,SQL,LA):-db_sql_select217,6134 -db_sql_select(Protocol,SQL,LA):-db_sql_select217,6134 -db_sql(SQL,LA):-db_sql219,6193 -db_sql(SQL,LA):-db_sql219,6193 -db_sql(SQL,LA):-db_sql219,6193 -db_sql(Connection,SQL,LA):-db_sql221,6234 -db_sql(Connection,SQL,LA):-db_sql221,6234 -db_sql(Connection,SQL,LA):-db_sql221,6234 -db_prolog_select(LA,DbGoal):-db_prolog_select251,7119 -db_prolog_select(LA,DbGoal):-db_prolog_select251,7119 -db_prolog_select(LA,DbGoal):-db_prolog_select251,7119 -db_prolog_select(Connection,LA,DbGoal):-db_prolog_select253,7186 -db_prolog_select(Connection,LA,DbGoal):-db_prolog_select253,7186 -db_prolog_select(Connection,LA,DbGoal):-db_prolog_select253,7186 -db_prolog_select_multi(Connection,DbGoalsList,ListOfResults) :-db_prolog_select_multi287,8268 -db_prolog_select_multi(Connection,DbGoalsList,ListOfResults) :-db_prolog_select_multi287,8268 -db_prolog_select_multi(Connection,DbGoalsList,ListOfResults) :-db_prolog_select_multi287,8268 -db_command(Connection,SQL):-db_command317,9154 -db_command(Connection,SQL):-db_command317,9154 -db_command(Connection,SQL):-db_command317,9154 -db_assert(PredName):-db_assert333,9560 -db_assert(PredName):-db_assert333,9560 -db_assert(PredName):-db_assert333,9560 -db_assert(Connection,PredName):-db_assert335,9611 -db_assert(Connection,PredName):-db_assert335,9611 -db_assert(Connection,PredName):-db_assert335,9611 -db_create_table(Connection,TableName,FieldsInf):-db_create_table361,10547 -db_create_table(Connection,TableName,FieldsInf):-db_create_table361,10547 -db_create_table(Connection,TableName,FieldsInf):-db_create_table361,10547 -db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf):-db_export_view385,11376 -db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf):-db_export_view385,11376 -db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf):-db_export_view385,11376 -db_update(Connection,WherePred-SetPred):-db_update412,12460 -db_update(Connection,WherePred-SetPred):-db_update412,12460 -db_update(Connection,WherePred-SetPred):-db_update412,12460 -db_get_attributes_types(RelationName,TypesList) :-db_get_attributes_types451,13693 -db_get_attributes_types(RelationName,TypesList) :-db_get_attributes_types451,13693 -db_get_attributes_types(RelationName,TypesList) :-db_get_attributes_types451,13693 -db_get_attributes_types(Connection,RelationName,TypesList) :-db_get_attributes_types453,13801 -db_get_attributes_types(Connection,RelationName,TypesList) :-db_get_attributes_types453,13801 -db_get_attributes_types(Connection,RelationName,TypesList) :-db_get_attributes_types453,13801 -db_number_of_fields(RelationName,Arity) :-db_number_of_fields483,14726 -db_number_of_fields(RelationName,Arity) :-db_number_of_fields483,14726 -db_number_of_fields(RelationName,Arity) :-db_number_of_fields483,14726 -db_number_of_fields(Connection,RelationName,Arity) :-db_number_of_fields485,14818 -db_number_of_fields(Connection,RelationName,Arity) :-db_number_of_fields485,14818 -db_number_of_fields(Connection,RelationName,Arity) :-db_number_of_fields485,14818 -db_multi_queries_number(Connection,Number) :-db_multi_queries_number503,15463 -db_multi_queries_number(Connection,Number) :-db_multi_queries_number503,15463 -db_multi_queries_number(Connection,Number) :-db_multi_queries_number503,15463 - -CodeBlocks/packages/myddas/pl/myddas_assert_predicates.yap,3363 -db_import(RelationName,PredName):-db_import66,1804 -db_import(RelationName,PredName):-db_import66,1804 -db_import(RelationName,PredName):-db_import66,1804 -db_import(Connection,RelationName,PredName0) :-db_import68,1881 -db_import(Connection,RelationName,PredName0) :-db_import68,1881 -db_import(Connection,RelationName,PredName0) :-db_import68,1881 -db_view(PredName,DbGoal) :-db_view96,2948 -db_view(PredName,DbGoal) :-db_view96,2948 -db_view(PredName,DbGoal) :-db_view96,2948 -db_view(Connection,PredName,DbGoal) :-db_view98,3010 -db_view(Connection,PredName,DbGoal) :-db_view98,3010 -db_view(Connection,PredName,DbGoal) :-db_view98,3010 -db_insert(RelationName,PredName) :-db_insert120,3804 -db_insert(RelationName,PredName) :-db_insert120,3804 -db_insert(RelationName,PredName) :-db_insert120,3804 -db_insert(Connection,RelationName,PredName) :-db_insert122,3882 -db_insert(Connection,RelationName,PredName) :-db_insert122,3882 -db_insert(Connection,RelationName,PredName) :-db_insert122,3882 -db_abolish(Module:PredName,Arity):-!,db_abolish148,4820 -db_abolish(Module:PredName,Arity):-!,db_abolish148,4820 -db_abolish(Module:PredName,Arity):-!,db_abolish148,4820 -db_abolish(PredName,Arity):-db_abolish152,4991 -db_abolish(PredName,Arity):-db_abolish152,4991 -db_abolish(PredName,Arity):-db_abolish152,4991 -db_abolish(Module:PredName,Arity):-!,db_abolish162,5290 -db_abolish(Module:PredName,Arity):-!,db_abolish162,5290 -db_abolish(Module:PredName,Arity):-!,db_abolish162,5290 -db_abolish(PredName,Arity):-db_abolish166,5461 -db_abolish(PredName,Arity):-db_abolish166,5461 -db_abolish(PredName,Arity):-db_abolish166,5461 -db_listing:-db_listing176,5756 -db_listing(Module:Name/Arity):-!,db_listing187,6001 -db_listing(Module:Name/Arity):-!,db_listing187,6001 -db_listing(Module:Name/Arity):-!,db_listing187,6001 -db_listing(Name/Arity):-!,db_listing191,6128 -db_listing(Name/Arity):-!,db_listing191,6128 -db_listing(Name/Arity):-!,db_listing191,6128 -db_listing(Name):-db_listing195,6248 -db_listing(Name):-db_listing195,6248 -db_listing(Name):-db_listing195,6248 -table_arity( Con, ConType, RelationName, Arity ) :-table_arity203,6518 -table_arity( Con, ConType, RelationName, Arity ) :-table_arity203,6518 -table_arity( Con, ConType, RelationName, Arity ) :-table_arity203,6518 -table_attributes( mysql, Con, RelationName, TypesList ) :-table_attributes219,6995 -table_attributes( mysql, Con, RelationName, TypesList ) :-table_attributes219,6995 -table_attributes( mysql, Con, RelationName, TypesList ) :-table_attributes219,6995 -table_attributes( postgres, Con, RelationName, TypesList ) :-table_attributes221,7113 -table_attributes( postgres, Con, RelationName, TypesList ) :-table_attributes221,7113 -table_attributes( postgres, Con, RelationName, TypesList ) :-table_attributes221,7113 -table_attributes( odbc, Con, RelationName, TypesList ) :-table_attributes223,7244 -table_attributes( odbc, Con, RelationName, TypesList ) :-table_attributes223,7244 -table_attributes( odbc, Con, RelationName, TypesList ) :-table_attributes223,7244 -table_attributes( sqlite3, Con, RelationName, TypesList ) :-table_attributes225,7360 -table_attributes( sqlite3, Con, RelationName, TypesList ) :-table_attributes225,7360 -table_attributes( sqlite3, Con, RelationName, TypesList ) :-table_attributes225,7360 - -CodeBlocks/packages/myddas/pl/myddas_errors.yap,8148 -'$error_checks'(db_abolish(ModulePredName,Arity)):-!,$error_checks9,200 -'$error_checks'(db_abolish(ModulePredName,Arity)):-!,$error_checks9,200 -'$error_checks'(db_abolish(ModulePredName,Arity)):-!,$error_checks9,200 -'$error_checks'(db_show_databases(Connection)):- !,$error_checks17,380 -'$error_checks'(db_show_databases(Connection)):- !,$error_checks17,380 -'$error_checks'(db_show_databases(Connection)):- !,$error_checks17,380 -'$error_checks'(db_show_database(Connection,_)):- !,$error_checks19,451 -'$error_checks'(db_show_database(Connection,_)):- !,$error_checks19,451 -'$error_checks'(db_show_database(Connection,_)):- !,$error_checks19,451 -'$error_checks'(db_my_sql_mode(Connection,_)):- !,$error_checks21,523 -'$error_checks'(db_my_sql_mode(Connection,_)):- !,$error_checks21,523 -'$error_checks'(db_my_sql_mode(Connection,_)):- !,$error_checks21,523 -'$error_checks'(db_change_database(Connection,Database)):- !,$error_checks23,593 -'$error_checks'(db_change_database(Connection,Database)):- !,$error_checks23,593 -'$error_checks'(db_change_database(Connection,Database)):- !,$error_checks23,593 -'$error_checks'(db_prolog_select_multi(Connection,DbGoalsList,_)):- !,$error_checks26,691 -'$error_checks'(db_prolog_select_multi(Connection,DbGoalsList,_)):- !,$error_checks26,691 -'$error_checks'(db_prolog_select_multi(Connection,DbGoalsList,_)):- !,$error_checks26,691 -'$error_checks'(db_multi_queries_number(Connection,Number)):-!,$error_checks29,804 -'$error_checks'(db_multi_queries_number(Connection,Number)):-!,$error_checks29,804 -'$error_checks'(db_multi_queries_number(Connection,Number)):-!,$error_checks29,804 -'$error_checks'(db_command(Connection,SQL)):-!,$error_checks37,966 -'$error_checks'(db_command(Connection,SQL)):-!,$error_checks37,966 -'$error_checks'(db_command(Connection,SQL)):-!,$error_checks37,966 -'$error_checks'(db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf)):-!,$error_checks40,1061 -'$error_checks'(db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf)):-!,$error_checks40,1061 -'$error_checks'(db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf)):-!,$error_checks40,1061 -'$error_checks'(db_create_table(Connection,TableName,FieldsInf)):-!,$error_checks45,1307 -'$error_checks'(db_create_table(Connection,TableName,FieldsInf)):-!,$error_checks45,1307 -'$error_checks'(db_create_table(Connection,TableName,FieldsInf)):-!,$error_checks45,1307 -'$error_checks'(db_insert3(Connection,RelationName,PredName)):-!,$error_checks49,1440 -'$error_checks'(db_insert3(Connection,RelationName,PredName)):-!,$error_checks49,1440 -'$error_checks'(db_insert3(Connection,RelationName,PredName)):-!,$error_checks49,1440 -'$error_checks'(db_insert2(Connection,_,[query(Att,[rel(Relation,_)],_)])) :- !,$error_checks53,1570 -'$error_checks'(db_insert2(Connection,_,[query(Att,[rel(Relation,_)],_)])) :- !,$error_checks53,1570 -'$error_checks'(db_insert2(Connection,_,[query(Att,[rel(Relation,_)],_)])) :- !,$error_checks53,1570 -'$error_checks'(db_open(mysql,Connection,Host/Db/Port/_,User,Password)) :- !,$error_checks77,2448 -'$error_checks'(db_open(mysql,Connection,Host/Db/Port/_,User,Password)) :- !,$error_checks77,2448 -'$error_checks'(db_open(mysql,Connection,Host/Db/Port/_,User,Password)) :- !,$error_checks77,2448 -'$error_checks'(db_open(odbc,Connection,ODBCEntry,User,Password)) :- !,$error_checks85,2705 -'$error_checks'(db_open(odbc,Connection,ODBCEntry,User,Password)) :- !,$error_checks85,2705 -'$error_checks'(db_open(odbc,Connection,ODBCEntry,User,Password)) :- !,$error_checks85,2705 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User,_Password)) :- !,$error_checks91,2937 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User,_Password)) :- !,$error_checks91,2937 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User,_Password)) :- !,$error_checks91,2937 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User)) :- !,$error_checks94,3107 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User)) :- !,$error_checks94,3107 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User)) :- !,$error_checks94,3107 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_)) :- !,$error_checks97,3267 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_)) :- !,$error_checks97,3267 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_)) :- !,$error_checks97,3267 -'$error_checks'(db_open(postgres,Connection)) :- !,$error_checks100,3421 -'$error_checks'(db_open(postgres,Connection)) :- !,$error_checks100,3421 -'$error_checks'(db_open(postgres,Connection)) :- !,$error_checks100,3421 -'$error_checks'(db_open(sqlite3,Connection,File,_User,_Password)) :- !,$error_checks103,3557 -'$error_checks'(db_open(sqlite3,Connection,File,_User,_Password)) :- !,$error_checks103,3557 -'$error_checks'(db_open(sqlite3,Connection,File,_User,_Password)) :- !,$error_checks103,3557 -'$error_checks'(db_view(Connection,Pred,DbGoal)) :- !,$error_checks107,3750 -'$error_checks'(db_view(Connection,Pred,DbGoal)) :- !,$error_checks107,3750 -'$error_checks'(db_view(Connection,Pred,DbGoal)) :- !,$error_checks107,3750 -'$error_checks'(db_import(Connection,RelationName,PredName0)) :- !,$error_checks115,3969 -'$error_checks'(db_import(Connection,RelationName,PredName0)) :- !,$error_checks115,3969 -'$error_checks'(db_import(Connection,RelationName,PredName0)) :- !,$error_checks115,3969 -'$error_checks'(db_get_attributes_types(Connection,RelationName,_)) :- !,$error_checks121,4167 -'$error_checks'(db_get_attributes_types(Connection,RelationName,_)) :- !,$error_checks121,4167 -'$error_checks'(db_get_attributes_types(Connection,RelationName,_)) :- !,$error_checks121,4167 -'$error_checks'(db_call_procedure(_,Procedure,Args,LA)) :- !,$error_checks124,4290 -'$error_checks'(db_call_procedure(_,Procedure,Args,LA)) :- !,$error_checks124,4290 -'$error_checks'(db_call_procedure(_,Procedure,Args,LA)) :- !,$error_checks124,4290 -'$error_checks'(db_sql(Connection,SQL,LA)):- !,$error_checks128,4404 -'$error_checks'(db_sql(Connection,SQL,LA)):- !,$error_checks128,4404 -'$error_checks'(db_sql(Connection,SQL,LA)):- !,$error_checks128,4404 -'$error_checks'(db_number_of_fields(Connection,RelationName,_)) :- !,$error_checks132,4516 -'$error_checks'(db_number_of_fields(Connection,RelationName,_)) :- !,$error_checks132,4516 -'$error_checks'(db_number_of_fields(Connection,RelationName,_)) :- !,$error_checks132,4516 -'$error_checks'(db_close(Connection)) :- !,$error_checks135,4635 -'$error_checks'(db_close(Connection)) :- !,$error_checks135,4635 -'$error_checks'(db_close(Connection)) :- !,$error_checks135,4635 -'$error_checks'(db_datalog_describe(Relation,_)) :- !,$error_checks138,4735 -'$error_checks'(db_datalog_describe(Relation,_)) :- !,$error_checks138,4735 -'$error_checks'(db_datalog_describe(Relation,_)) :- !,$error_checks138,4735 -'$error_checks'(db_describe(Connection,Relation,_)) :- !,$error_checks140,4809 -'$error_checks'(db_describe(Connection,Relation,_)) :- !,$error_checks140,4809 -'$error_checks'(db_describe(Connection,Relation,_)) :- !,$error_checks140,4809 -'$error_checks'(db_my_show_tables(_)):- !.$error_checks143,4905 -'$error_checks'(db_my_show_tables(_)):- !.$error_checks143,4905 -'$error_checks'(db_my_show_tables(_)):- !.$error_checks143,4905 -'$error_checks'(db_is_database_predicate(PredName,Arity,Module)):-!,$error_checks144,4948 -'$error_checks'(db_is_database_predicate(PredName,Arity,Module)):-!,$error_checks144,4948 -'$error_checks'(db_is_database_predicate(PredName,Arity,Module)):-!,$error_checks144,4948 -'$error_checks'(get_value(Connection,Con)) :- !,$error_checks149,5131 -'$error_checks'(get_value(Connection,Con)) :- !,$error_checks149,5131 -'$error_checks'(get_value(Connection,Con)) :- !,$error_checks149,5131 -'$error_checks'(get_value(Conn,Connection)) :- !,$error_checks157,5398 -'$error_checks'(get_value(Conn,Connection)) :- !,$error_checks157,5398 -'$error_checks'(get_value(Conn,Connection)) :- !,$error_checks157,5398 - -CodeBlocks/packages/myddas/pl/myddas_mysql.yap,4004 -db_my_result_set(X):-db_my_result_set43,1047 -db_my_result_set(X):-db_my_result_set43,1047 -db_my_result_set(X):-db_my_result_set43,1047 -db_my_result_set(use_result):-db_my_result_set46,1112 -db_my_result_set(use_result):-db_my_result_set46,1112 -db_my_result_set(use_result):-db_my_result_set46,1112 -db_my_result_set(store_result):-db_my_result_set48,1184 -db_my_result_set(store_result):-db_my_result_set48,1184 -db_my_result_set(store_result):-db_my_result_set48,1184 -db_datalog_describe(Relation):-db_datalog_describe57,1435 -db_datalog_describe(Relation):-db_datalog_describe57,1435 -db_datalog_describe(Relation):-db_datalog_describe57,1435 -db_datalog_describe(Connection,Relation) :-db_datalog_describe59,1506 -db_datalog_describe(Connection,Relation) :-db_datalog_describe59,1506 -db_datalog_describe(Connection,Relation) :-db_datalog_describe59,1506 -db_describe(Relation,TableInfo) :-db_describe72,1984 -db_describe(Relation,TableInfo) :-db_describe72,1984 -db_describe(Relation,TableInfo) :-db_describe72,1984 -db_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-db_describe74,2060 -db_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-db_describe74,2060 -db_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-db_describe74,2060 -db_datalog_show_tables:-db_datalog_show_tables87,2527 -db_datalog_show_tables(Connection) :-db_datalog_show_tables89,2585 -db_datalog_show_tables(Connection) :-db_datalog_show_tables89,2585 -db_datalog_show_tables(Connection) :-db_datalog_show_tables89,2585 -db_show_tables(Table) :-db_show_tables102,3055 -db_show_tables(Table) :-db_show_tables102,3055 -db_show_tables(Table) :-db_show_tables102,3055 -db_show_tables(Connection,table(Table)) :-db_show_tables104,3111 -db_show_tables(Connection,table(Table)) :-db_show_tables104,3111 -db_show_tables(Connection,table(Table)) :-db_show_tables104,3111 -db_show_database(Connection,Database) :-db_show_database116,3510 -db_show_database(Connection,Database) :-db_show_database116,3510 -db_show_database(Connection,Database) :-db_show_database116,3510 -db_show_databases(Connection,database(Databases)) :-db_show_databases125,3804 -db_show_databases(Connection,database(Databases)) :-db_show_databases125,3804 -db_show_databases(Connection,database(Databases)) :-db_show_databases125,3804 -db_show_databases(Connection) :-db_show_databases137,4252 -db_show_databases(Connection) :-db_show_databases137,4252 -db_show_databases(Connection) :-db_show_databases137,4252 -db_change_database(Connection,Database) :-db_change_database149,4648 -db_change_database(Connection,Database) :-db_change_database149,4648 -db_change_database(Connection,Database) :-db_change_database149,4648 -db_call_procedure(Procedure,Args,Result) :-db_call_procedure162,5154 -db_call_procedure(Procedure,Args,Result) :-db_call_procedure162,5154 -db_call_procedure(Procedure,Args,Result) :-db_call_procedure162,5154 -db_call_procedure(Connection,Procedure,Args,LA) :-db_call_procedure164,5248 -db_call_procedure(Connection,Procedure,Args,LA) :-db_call_procedure164,5248 -db_call_procedure(Connection,Procedure,Args,LA) :-db_call_procedure164,5248 -db_sql_mode(SQLMode):-db_sql_mode174,5695 -db_sql_mode(SQLMode):-db_sql_mode174,5695 -db_sql_mode(SQLMode):-db_sql_mode174,5695 -db_sql_mode(Connection,SQLMode):-db_sql_mode176,5744 -db_sql_mode(Connection,SQLMode):-db_sql_mode176,5744 -db_sql_mode(Connection,SQLMode):-db_sql_mode176,5744 -db_my_sql_mode(SQLMode):-db_my_sql_mode178,5815 -db_my_sql_mode(SQLMode):-db_my_sql_mode178,5815 -db_my_sql_mode(SQLMode):-db_my_sql_mode178,5815 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode180,5874 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode180,5874 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode180,5874 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode186,6131 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode186,6131 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode186,6131 - -CodeBlocks/packages/myddas/pl/myddas_odbc.yap,3333 -odbc_result_set(X):-odbc_result_set49,1303 -odbc_result_set(X):-odbc_result_set49,1303 -odbc_result_set(X):-odbc_result_set49,1303 -odbc_result_set(use_result):-odbc_result_set52,1366 -odbc_result_set(use_result):-odbc_result_set52,1366 -odbc_result_set(use_result):-odbc_result_set52,1366 -odbc_result_set(store_result):-odbc_result_set54,1436 -odbc_result_set(store_result):-odbc_result_set54,1436 -odbc_result_set(store_result):-odbc_result_set54,1436 -odbc_datalog_describe(Relation):-odbc_datalog_describe63,1681 -odbc_datalog_describe(Relation):-odbc_datalog_describe63,1681 -odbc_datalog_describe(Relation):-odbc_datalog_describe63,1681 -odbc_datalog_describe(Connection,Relation) :-odbc_datalog_describe65,1756 -odbc_datalog_describe(Connection,Relation) :-odbc_datalog_describe65,1756 -odbc_datalog_describe(Connection,Relation) :-odbc_datalog_describe65,1756 -odbc_describe(Relation,TableInfo) :-odbc_describe78,2239 -odbc_describe(Relation,TableInfo) :-odbc_describe78,2239 -odbc_describe(Relation,TableInfo) :-odbc_describe78,2239 -odbc_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-odbc_describe80,2319 -odbc_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-odbc_describe80,2319 -odbc_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-odbc_describe80,2319 -odbc_datalog_show_tables:-odbc_datalog_show_tables94,2791 -odbc_datalog_show_tables(Connection) :-odbc_datalog_show_tables96,2853 -odbc_datalog_show_tables(Connection) :-odbc_datalog_show_tables96,2853 -odbc_datalog_show_tables(Connection) :-odbc_datalog_show_tables96,2853 -odbc_show_tables(Table) :-odbc_show_tables109,3317 -odbc_show_tables(Table) :-odbc_show_tables109,3317 -odbc_show_tables(Table) :-odbc_show_tables109,3317 -odbc_show_tables(Connection,table(Table)) :-odbc_show_tables111,3377 -odbc_show_tables(Connection,table(Table)) :-odbc_show_tables111,3377 -odbc_show_tables(Connection,table(Table)) :-odbc_show_tables111,3377 -odbc_show_database(Connection,Database) :-odbc_show_database123,3768 -odbc_show_database(Connection,Database) :-odbc_show_database123,3768 -odbc_show_database(Connection,Database) :-odbc_show_database123,3768 -odbc_show_databases(Connection,database(Databases)) :-odbc_show_databases132,4067 -odbc_show_databases(Connection,database(Databases)) :-odbc_show_databases132,4067 -odbc_show_databases(Connection,database(Databases)) :-odbc_show_databases132,4067 -odbc_show_databases(Connection) :-odbc_show_databases144,4518 -odbc_show_databases(Connection) :-odbc_show_databases144,4518 -odbc_show_databases(Connection) :-odbc_show_databases144,4518 -odbc_change_database(Connection,Database) :-odbc_change_database156,4914 -odbc_change_database(Connection,Database) :-odbc_change_database156,4914 -odbc_change_database(Connection,Database) :-odbc_change_database156,4914 -odbc_call_procedure(Procedure,Args,Result) :-odbc_call_procedure169,5429 -odbc_call_procedure(Procedure,Args,Result) :-odbc_call_procedure169,5429 -odbc_call_procedure(Procedure,Args,Result) :-odbc_call_procedure169,5429 -odbc_call_procedure(Connection,Procedure,Args,LA) :-odbc_call_procedure171,5527 -odbc_call_procedure(Connection,Procedure,Args,LA) :-odbc_call_procedure171,5527 -odbc_call_procedure(Connection,Procedure,Args,LA) :-odbc_call_procedure171,5527 - -CodeBlocks/packages/myddas/pl/myddas_postgres.yap,3725 -postgres_result_set(X):-postgres_result_set49,1415 -postgres_result_set(X):-postgres_result_set49,1415 -postgres_result_set(X):-postgres_result_set49,1415 -postgres_result_set(use_result):-postgres_result_set52,1486 -postgres_result_set(use_result):-postgres_result_set52,1486 -postgres_result_set(use_result):-postgres_result_set52,1486 -postgres_result_set(store_result):-postgres_result_set54,1564 -postgres_result_set(store_result):-postgres_result_set54,1564 -postgres_result_set(store_result):-postgres_result_set54,1564 -postgres_datalog_describe(Relation):-postgres_datalog_describe63,1825 -postgres_datalog_describe(Relation):-postgres_datalog_describe63,1825 -postgres_datalog_describe(Relation):-postgres_datalog_describe63,1825 -postgres_datalog_describe(Connection,Relation) :-postgres_datalog_describe65,1908 -postgres_datalog_describe(Connection,Relation) :-postgres_datalog_describe65,1908 -postgres_datalog_describe(Connection,Relation) :-postgres_datalog_describe65,1908 -postgres_describe(Relation,TableInfo) :-postgres_describe78,2419 -postgres_describe(Relation,TableInfo) :-postgres_describe78,2419 -postgres_describe(Relation,TableInfo) :-postgres_describe78,2419 -postgres_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-postgres_describe80,2507 -postgres_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-postgres_describe80,2507 -postgres_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-postgres_describe80,2507 -postgres_datalog_show_tables:-postgres_datalog_show_tables94,3003 -postgres_datalog_show_tables(Connection) :-postgres_datalog_show_tables96,3073 -postgres_datalog_show_tables(Connection) :-postgres_datalog_show_tables96,3073 -postgres_datalog_show_tables(Connection) :-postgres_datalog_show_tables96,3073 -postgres_show_tables(Table) :-postgres_show_tables109,3565 -postgres_show_tables(Table) :-postgres_show_tables109,3565 -postgres_show_tables(Table) :-postgres_show_tables109,3565 -postgres_show_tables(Connection,table(Table)) :-postgres_show_tables111,3633 -postgres_show_tables(Connection,table(Table)) :-postgres_show_tables111,3633 -postgres_show_tables(Connection,table(Table)) :-postgres_show_tables111,3633 -postgres_show_database(Connection,Database) :-postgres_show_database123,4048 -postgres_show_database(Connection,Database) :-postgres_show_database123,4048 -postgres_show_database(Connection,Database) :-postgres_show_database123,4048 -postgres_show_databases(Connection,database(Databases)) :-postgres_show_databases132,4363 -postgres_show_databases(Connection,database(Databases)) :-postgres_show_databases132,4363 -postgres_show_databases(Connection,database(Databases)) :-postgres_show_databases132,4363 -postgres_show_databases(Connection) :-postgres_show_databases144,4838 -postgres_show_databases(Connection) :-postgres_show_databases144,4838 -postgres_show_databases(Connection) :-postgres_show_databases144,4838 -postgres_change_database(Connection,Database) :-postgres_change_database156,5258 -postgres_change_database(Connection,Database) :-postgres_change_database156,5258 -postgres_change_database(Connection,Database) :-postgres_change_database156,5258 -postgres_call_procedure(Procedure,Args,Result) :-postgres_call_procedure169,5797 -postgres_call_procedure(Procedure,Args,Result) :-postgres_call_procedure169,5797 -postgres_call_procedure(Procedure,Args,Result) :-postgres_call_procedure169,5797 -postgres_call_procedure(Connection,Procedure,Args,LA) :-postgres_call_procedure171,5903 -postgres_call_procedure(Connection,Procedure,Args,LA) :-postgres_call_procedure171,5903 -postgres_call_procedure(Connection,Procedure,Args,LA) :-postgres_call_procedure171,5903 - -CodeBlocks/packages/myddas/pl/myddas_prolog2sql.yap,35933 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate56,1955 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate56,1955 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate56,1955 -disjunction(Goal,Disjunction):-disjunction75,3039 -disjunction(Goal,Disjunction):-disjunction75,3039 -disjunction(Goal,Disjunction):-disjunction75,3039 -linearize(((A,B),C),(LinA,(LinB,LinC))):-linearize83,3469 -linearize(((A,B),C),(LinA,(LinB,LinC))):-linearize83,3469 -linearize(((A,B),C),(LinA,(LinB,LinC))):-linearize83,3469 -linearize((A,B),(LinA,LinB)):-linearize88,3662 -linearize((A,B),(LinA,LinB)):-linearize88,3662 -linearize((A,B),(LinA,LinB)):-linearize88,3662 -linearize((A;_),LinA):-linearize95,3868 -linearize((A;_),LinA):-linearize95,3868 -linearize((A;_),LinA):-linearize95,3868 -linearize((_;B),LinB):-linearize99,3945 -linearize((_;B),LinB):-linearize99,3945 -linearize((_;B),LinB):-linearize99,3945 -linearize(not A, not LinA):-linearize101,3991 -linearize(not A, not LinA):-linearize101,3991 -linearize(not A, not LinA):-linearize101,3991 -linearize(Var^A, Var^LinA):-linearize103,4042 -linearize(Var^A, Var^LinA):-linearize103,4042 -linearize(Var^A, Var^LinA):-linearize103,4042 -linearize(A,A):-linearize105,4093 -linearize(A,A):-linearize105,4093 -linearize(A,A):-linearize105,4093 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term125,4794 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term125,4794 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term125,4794 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term129,4951 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term129,4951 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term129,4951 -tokenize_term(Constant,'$const$'(Constant)):-tokenize_term131,5016 -tokenize_term(Constant,'$const$'(Constant)):-tokenize_term131,5016 -tokenize_term(Constant,'$const$'(Constant)):-tokenize_term131,5016 -tokenize_term(Term,TokenizedTerm):-tokenize_term134,5109 -tokenize_term(Term,TokenizedTerm):-tokenize_term134,5109 -tokenize_term(Term,TokenizedTerm):-tokenize_term134,5109 -tokenize_arguments([],[]).tokenize_arguments148,5656 -tokenize_arguments([],[]).tokenize_arguments148,5656 -tokenize_arguments([FirstArg|RestArgs],[TokFirstArg|TokRestArgs]):-tokenize_arguments149,5683 -tokenize_arguments([FirstArg|RestArgs],[TokFirstArg|TokRestArgs]):-tokenize_arguments149,5683 -tokenize_arguments([FirstArg|RestArgs],[TokFirstArg|TokRestArgs]):-tokenize_arguments149,5683 -:- dynamic attribute/4.dynamic187,7761 -:- dynamic attribute/4.dynamic187,7761 -query_generation([],_,[]).query_generation188,7785 -query_generation([],_,[]).query_generation188,7785 -query_generation([Conjunction|Conjunctions],ProjectionTerm,[Query|Queries]):-query_generation189,7812 -query_generation([Conjunction|Conjunctions],ProjectionTerm,[Query|Queries]):-query_generation189,7812 -query_generation([Conjunction|Conjunctions],ProjectionTerm,[Query|Queries]):-query_generation189,7812 -translate_goal(SimpleGoal,[SQLFrom],SQLWhere,Dict,NewDict):-translate_goal213,8914 -translate_goal(SimpleGoal,[SQLFrom],SQLWhere,Dict,NewDict):-translate_goal213,8914 -translate_goal(SimpleGoal,[SQLFrom],SQLWhere,Dict,NewDict):-translate_goal213,8914 -translate_goal(Result is Expression,[],SQLWhere,Dict,NewDict):-translate_goal219,9253 -translate_goal(Result is Expression,[],SQLWhere,Dict,NewDict):-translate_goal219,9253 -translate_goal(Result is Expression,[],SQLWhere,Dict,NewDict):-translate_goal219,9253 -translate_goal(not NegatedGoals,[],SQLNegatedSubquery,Dict,Dict):-translate_goal221,9392 -translate_goal(not NegatedGoals,[],SQLNegatedSubquery,Dict,Dict):-translate_goal221,9392 -translate_goal(not NegatedGoals,[],SQLNegatedSubquery,Dict,Dict):-translate_goal221,9392 -translate_goal(not ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal227,9756 -translate_goal(not ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal227,9756 -translate_goal(not ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal227,9756 -translate_goal(exists(ProjectionTerm,ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal234,10238 -translate_goal(exists(ProjectionTerm,ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal234,10238 -translate_goal(exists(ProjectionTerm,ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal234,10238 -translate_goal(exists(ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal241,10674 -translate_goal(exists(ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal241,10674 -translate_goal(exists(ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal241,10674 -translate_goal(ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal247,11033 -translate_goal(ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal247,11033 -translate_goal(ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal247,11033 -translate_goal(distinct(Goal),List,SQL,Dict,DistinctDict):-!,translate_goal253,11366 -translate_goal(distinct(Goal),List,SQL,Dict,DistinctDict):-!,translate_goal253,11366 -translate_goal(distinct(Goal),List,SQL,Dict,DistinctDict):-!,translate_goal253,11366 -add_distinct_statement(Dict,Dict):-add_distinct_statement257,11527 -add_distinct_statement(Dict,Dict):-add_distinct_statement257,11527 -add_distinct_statement(Dict,Dict):-add_distinct_statement257,11527 -translate_conjunction('$var$'(VarId)^Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction267,12066 -translate_conjunction('$var$'(VarId)^Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction267,12066 -translate_conjunction('$var$'(VarId)^Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction267,12066 -translate_conjunction(Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction271,12352 -translate_conjunction(Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction271,12352 -translate_conjunction(Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction271,12352 -translate_conjunction((Goal,Conjunction),SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction274,12485 -translate_conjunction((Goal,Conjunction),SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction274,12485 -translate_conjunction((Goal,Conjunction),SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction274,12485 -translate_arithmetic_function('$var$'(VarId),Expression,[],Dict,NewDict):-translate_arithmetic_function291,13367 -translate_arithmetic_function('$var$'(VarId),Expression,[],Dict,NewDict):-translate_arithmetic_function291,13367 -translate_arithmetic_function('$var$'(VarId),Expression,[],Dict,NewDict):-translate_arithmetic_function291,13367 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function297,13771 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function297,13771 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function297,13771 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function309,14451 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function309,14451 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function309,14451 -translate_arithmetic_function('$const$'(Constant),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function319,15088 -translate_arithmetic_function('$const$'(Constant),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function319,15088 -translate_arithmetic_function('$const$'(Constant),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function319,15088 -translate_comparison(LeftArg,RightArg,CompOp,Dict,Comparison):-translate_comparison333,15874 -translate_comparison(LeftArg,RightArg,CompOp,Dict,Comparison):-translate_comparison333,15874 -translate_comparison(LeftArg,RightArg,CompOp,Dict,Comparison):-translate_comparison333,15874 -translate_functor(Functor,Arity,rel(TableName,RangeVariable)):-translate_functor345,16499 -translate_functor(Functor,Arity,rel(TableName,RangeVariable)):-translate_functor345,16499 -translate_functor(Functor,Arity,rel(TableName,RangeVariable)):-translate_functor345,16499 -translate_arguments([],_,_,[],Dict,Dict).translate_arguments355,16988 -translate_arguments([],_,_,[],Dict,Dict).translate_arguments355,16988 -translate_arguments([Arg|Args],SQLTable,Position,SQLWhere,Dict,NewDict):-translate_arguments356,17030 -translate_arguments([Arg|Args],SQLTable,Position,SQLWhere,Dict,NewDict):-translate_arguments356,17030 -translate_arguments([Arg|Args],SQLTable,Position,SQLWhere,Dict,NewDict):-translate_arguments356,17030 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,[],Dict,NewDict):-translate_argument370,17848 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,[],Dict,NewDict):-translate_argument370,17848 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,[],Dict,NewDict):-translate_argument370,17848 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,AttComparison,Dict,Dict):-translate_argument373,18051 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,AttComparison,Dict,Dict):-translate_argument373,18051 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,AttComparison,Dict,Dict):-translate_argument373,18051 -translate_argument('$const$'(Constant),rel(SQLTable,RangeVar),Position,ConstComparison,Dict,Dict):-translate_argument379,18441 -translate_argument('$const$'(Constant),rel(SQLTable,RangeVar),Position,ConstComparison,Dict,Dict):-translate_argument379,18441 -translate_argument('$const$'(Constant),rel(SQLTable,RangeVar),Position,ConstComparison,Dict,Dict):-translate_argument379,18441 -projection_term_variables('$const$'(_),[]).projection_term_variables394,19304 -projection_term_variables('$const$'(_),[]).projection_term_variables394,19304 -projection_term_variables('$var$'(VarId),[dict(VarId,_,_,_,existential)]).projection_term_variables395,19348 -projection_term_variables('$var$'(VarId),[dict(VarId,_,_,_,existential)]).projection_term_variables395,19348 -projection_term_variables(ProjectionTerm,ProjectionTermVariables):-projection_term_variables396,19423 -projection_term_variables(ProjectionTerm,ProjectionTermVariables):-projection_term_variables396,19423 -projection_term_variables(ProjectionTerm,ProjectionTermVariables):-projection_term_variables396,19423 -projection_list_vars([],[]).projection_list_vars401,19674 -projection_list_vars([],[]).projection_list_vars401,19674 -projection_list_vars(['$var$'(VarId)|RestArgs],[dict(VarId,_,_,_,existential)|RestVars]):-projection_list_vars402,19703 -projection_list_vars(['$var$'(VarId)|RestArgs],[dict(VarId,_,_,_,existential)|RestVars]):-projection_list_vars402,19703 -projection_list_vars(['$var$'(VarId)|RestArgs],[dict(VarId,_,_,_,existential)|RestVars]):-projection_list_vars402,19703 -projection_list_vars(['$const$'(_)|RestArgs],Vars):-projection_list_vars404,19838 -projection_list_vars(['$const$'(_)|RestArgs],Vars):-projection_list_vars404,19838 -projection_list_vars(['$const$'(_)|RestArgs],Vars):-projection_list_vars404,19838 -translate_projection('$var$'(VarId),Dict,SelectList):-translate_projection416,20380 -translate_projection('$var$'(VarId),Dict,SelectList):-translate_projection416,20380 -translate_projection('$var$'(VarId),Dict,SelectList):-translate_projection416,20380 -translate_projection('$const$'(Const),_,['$const$'(Const)]).translate_projection418,20494 -translate_projection('$const$'(Const),_,['$const$'(Const)]).translate_projection418,20494 -translate_projection(ProjectionTerm,Dict,SelectList):-translate_projection419,20555 -translate_projection(ProjectionTerm,Dict,SelectList):-translate_projection419,20555 -translate_projection(ProjectionTerm,Dict,SelectList):-translate_projection419,20555 -projection_arguments([],[],_).projection_arguments425,20788 -projection_arguments([],[],_).projection_arguments425,20788 -projection_arguments([Arg|RestArgs],[Att|RestAtts],Dict):-projection_arguments426,20819 -projection_arguments([Arg|RestArgs],[Att|RestAtts],Dict):-projection_arguments426,20819 -projection_arguments([Arg|RestArgs],[Att|RestAtts],Dict):-projection_arguments426,20819 -retrieve_argument('$var$'(VarId),Attribute,Dict):-retrieve_argument438,21378 -retrieve_argument('$var$'(VarId),Attribute,Dict):-retrieve_argument438,21378 -retrieve_argument('$var$'(VarId),Attribute,Dict):-retrieve_argument438,21378 -retrieve_argument('$const$'(Constant),'$const$'(Constant),_).retrieve_argument446,21577 -retrieve_argument('$const$'(Constant),'$const$'(Constant),_).retrieve_argument446,21577 -lookup(VarId,Dict,RangeVar,Attribute,Type):-lookup448,21728 -lookup(VarId,Dict,RangeVar,Attribute,Type):-lookup448,21728 -lookup(VarId,Dict,RangeVar,Attribute,Type):-lookup448,21728 -add_to_dictionary(Key,RangeVar,Attribute,Type,_,Dict,Dict):-add_to_dictionary458,22015 -add_to_dictionary(Key,RangeVar,Attribute,Type,_,Dict,Dict):-add_to_dictionary458,22015 -add_to_dictionary(Key,RangeVar,Attribute,Type,_,Dict,Dict):-add_to_dictionary458,22015 -add_to_dictionary(Key,RangeVar,Attribute,Type,Quantifier,Dict,NewDict):-add_to_dictionary460,22139 -add_to_dictionary(Key,RangeVar,Attribute,Type,Quantifier,Dict,NewDict):-add_to_dictionary460,22139 -add_to_dictionary(Key,RangeVar,Attribute,Type,Quantifier,Dict,NewDict):-add_to_dictionary460,22139 -aggregate_function(AggregateFunctionTerm,Dict,AggregateFunctionExpression):-aggregate_function478,23026 -aggregate_function(AggregateFunctionTerm,Dict,AggregateFunctionExpression):-aggregate_function478,23026 -aggregate_function(AggregateFunctionTerm,Dict,AggregateFunctionExpression):-aggregate_function478,23026 -conjunction(Goal,Conjunction):-conjunction483,23345 -conjunction(Goal,Conjunction):-conjunction483,23345 -conjunction(Goal,Conjunction):-conjunction483,23345 -aggregate_query_generation(count,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation497,24105 -aggregate_query_generation(count,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation497,24105 -aggregate_query_generation(count,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation497,24105 -aggregate_query_generation(countdistinct,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation503,24474 -aggregate_query_generation(countdistinct,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation503,24474 -aggregate_query_generation(countdistinct,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation503,24474 -aggregate_query_generation(Function,FunctionVariable,AggGoal,Dict,AggregateQuery):-aggregate_query_generation508,24849 -aggregate_query_generation(Function,FunctionVariable,AggGoal,Dict,AggregateQuery):-aggregate_query_generation508,24849 -aggregate_query_generation(Function,FunctionVariable,AggGoal,Dict,AggregateQuery):-aggregate_query_generation508,24849 -translate_grouping(FunctionVariable,Dict,SQLGroup):-translate_grouping523,25763 -translate_grouping(FunctionVariable,Dict,SQLGroup):-translate_grouping523,25763 -translate_grouping(FunctionVariable,Dict,SQLGroup):-translate_grouping523,25763 -free_vars(FunctionVariable,Dict,FreeVarList):-free_vars543,26661 -free_vars(FunctionVariable,Dict,FreeVarList):-free_vars543,26661 -free_vars(FunctionVariable,Dict,FreeVarList):-free_vars543,26661 -function_variable_list('$var$'(VarId),[VarId]).function_variable_list557,27278 -function_variable_list('$var$'(VarId),[VarId]).function_variable_list557,27278 -translate_free_vars([],[]).translate_free_vars564,27604 -translate_free_vars([],[]).translate_free_vars564,27604 -translate_free_vars([(_,Table,Attribute)|FreeVars],[att(Table,Attribute)|SQLGroups]):-translate_free_vars567,27730 -translate_free_vars([(_,Table,Attribute)|FreeVars],[att(Table,Attribute)|SQLGroups]):-translate_free_vars567,27730 -translate_free_vars([(_,Table,Attribute)|FreeVars],[att(Table,Attribute)|SQLGroups]):-translate_free_vars567,27730 -evaluable_expression(AggregateFunctionTerm,Dictionary,AggregateFunctionExpression,number):-evaluable_expression578,28281 -evaluable_expression(AggregateFunctionTerm,Dictionary,AggregateFunctionExpression,number):-evaluable_expression578,28281 -evaluable_expression(AggregateFunctionTerm,Dictionary,AggregateFunctionExpression,number):-evaluable_expression578,28281 -evaluable_expression(LeftExp + RightExp,Dictionary,LeftAr + RightAr,number):-evaluable_expression580,28458 -evaluable_expression(LeftExp + RightExp,Dictionary,LeftAr + RightAr,number):-evaluable_expression580,28458 -evaluable_expression(LeftExp + RightExp,Dictionary,LeftAr + RightAr,number):-evaluable_expression580,28458 -evaluable_expression(LeftExp - RightExp,Dictionary,LeftAr - RightAr,number):-evaluable_expression583,28656 -evaluable_expression(LeftExp - RightExp,Dictionary,LeftAr - RightAr,number):-evaluable_expression583,28656 -evaluable_expression(LeftExp - RightExp,Dictionary,LeftAr - RightAr,number):-evaluable_expression583,28656 -evaluable_expression(LeftExp * RightExp,Dictionary,LeftAr * RightAr,number):-evaluable_expression586,28854 -evaluable_expression(LeftExp * RightExp,Dictionary,LeftAr * RightAr,number):-evaluable_expression586,28854 -evaluable_expression(LeftExp * RightExp,Dictionary,LeftAr * RightAr,number):-evaluable_expression586,28854 -evaluable_expression(LeftExp / RightExp,Dictionary, LeftAr / RightAr,number):-evaluable_expression589,29052 -evaluable_expression(LeftExp / RightExp,Dictionary, LeftAr / RightAr,number):-evaluable_expression589,29052 -evaluable_expression(LeftExp / RightExp,Dictionary, LeftAr / RightAr,number):-evaluable_expression589,29052 -evaluable_expression('$var$'(VarId),Dictionary,att(RangeVar,Attribute),Type):-evaluable_expression592,29251 -evaluable_expression('$var$'(VarId),Dictionary,att(RangeVar,Attribute),Type):-evaluable_expression592,29251 -evaluable_expression('$var$'(VarId),Dictionary,att(RangeVar,Attribute),Type):-evaluable_expression592,29251 -evaluable_expression('$var$'(VarId),Dictionary,ArithmeticExpression,Type):-evaluable_expression595,29402 -evaluable_expression('$var$'(VarId),Dictionary,ArithmeticExpression,Type):-evaluable_expression595,29402 -evaluable_expression('$var$'(VarId),Dictionary,ArithmeticExpression,Type):-evaluable_expression595,29402 -evaluable_expression('$const$'(Const),_,'$const$'(Const),ConstType):-evaluable_expression597,29536 -evaluable_expression('$const$'(Const),_,'$const$'(Const),ConstType):-evaluable_expression597,29536 -evaluable_expression('$const$'(Const),_,'$const$'(Const),ConstType):-evaluable_expression597,29536 -printqueries([Query]):-printqueries605,29977 -printqueries([Query]):-printqueries605,29977 -printqueries([Query]):-printqueries605,29977 -printqueries([Query|Queries]):-printqueries611,30060 -printqueries([Query|Queries]):-printqueries611,30060 -printqueries([Query|Queries]):-printqueries611,30060 -print_query(query([agg_query(Function,Select,From,Where,Group)],_,_)):-print_query620,30294 -print_query(query([agg_query(Function,Select,From,Where,Group)],_,_)):-print_query620,30294 -print_query(query([agg_query(Function,Select,From,Where,Group)],_,_)):-print_query620,30294 -print_query(query(Select,From,Where)):-print_query624,30511 -print_query(query(Select,From,Where)):-print_query624,30511 -print_query(query(Select,From,Where)):-print_query624,30511 -print_query(agg_query(Function,Select,From,Where,Group)):-print_query631,30682 -print_query(agg_query(Function,Select,From,Where,Group)):-print_query631,30682 -print_query(agg_query(Function,Select,From,Where,Group)):-print_query631,30682 -print_query(negated_existential_subquery(Select,From,Where)):-print_query639,30920 -print_query(negated_existential_subquery(Select,From,Where)):-print_query639,30920 -print_query(negated_existential_subquery(Select,From,Where)):-print_query639,30920 -print_query(existential_subquery(Select,From,Where)):-print_query650,31175 -print_query(existential_subquery(Select,From,Where)):-print_query650,31175 -print_query(existential_subquery(Select,From,Where)):-print_query650,31175 -print_clause(_,[],_).print_clause672,31901 -print_clause(_,[],_).print_clause672,31901 -print_clause(Keyword,[Column|RestColumns],Separator):-print_clause673,31923 -print_clause(Keyword,[Column|RestColumns],Separator):-print_clause673,31923 -print_clause(Keyword,[Column|RestColumns],Separator):-print_clause673,31923 -print_clause(Keyword,Function,[Column],Separator):-print_clause677,32061 -print_clause(Keyword,Function,[Column],Separator):-print_clause677,32061 -print_clause(Keyword,Function,[Column],Separator):-print_clause677,32061 -print_clause([Item],_):-print_clause685,32323 -print_clause([Item],_):-print_clause685,32323 -print_clause([Item],_):-print_clause685,32323 -print_clause([Item,NextItem|RestItems],Separator):-print_clause687,32371 -print_clause([Item,NextItem|RestItems],Separator):-print_clause687,32371 -print_clause([Item,NextItem|RestItems],Separator):-print_clause687,32371 -print_column('*'):-print_column694,32610 -print_column('*'):-print_column694,32610 -print_column('*'):-print_column694,32610 -print_column(att(RangeVar,Attribute)):-print_column696,32645 -print_column(att(RangeVar,Attribute)):-print_column696,32645 -print_column(att(RangeVar,Attribute)):-print_column696,32645 -print_column(rel(Relation,RangeVar)):-print_column700,32741 -print_column(rel(Relation,RangeVar)):-print_column700,32741 -print_column(rel(Relation,RangeVar)):-print_column700,32741 -print_column('$const$'(String)):-print_column704,32835 -print_column('$const$'(String)):-print_column704,32835 -print_column('$const$'(String)):-print_column704,32835 -print_column('$const$'(Number)):-print_column709,32956 -print_column('$const$'(Number)):-print_column709,32956 -print_column('$const$'(Number)):-print_column709,32956 -print_column(comp(LeftArg,Operator,RightArg)):-print_column713,33084 -print_column(comp(LeftArg,Operator,RightArg)):-print_column713,33084 -print_column(comp(LeftArg,Operator,RightArg)):-print_column713,33084 -print_column(LeftExpr * RightExpr):-print_column719,33235 -print_column(LeftExpr * RightExpr):-print_column719,33235 -print_column(LeftExpr * RightExpr):-print_column719,33235 -print_column(LeftExpr / RightExpr):-print_column723,33342 -print_column(LeftExpr / RightExpr):-print_column723,33342 -print_column(LeftExpr / RightExpr):-print_column723,33342 -print_column(LeftExpr + RightExpr):-print_column727,33449 -print_column(LeftExpr + RightExpr):-print_column727,33449 -print_column(LeftExpr + RightExpr):-print_column727,33449 -print_column(LeftExpr - RightExpr):-print_column731,33556 -print_column(LeftExpr - RightExpr):-print_column731,33556 -print_column(LeftExpr - RightExpr):-print_column731,33556 -print_column(agg_query(Function,Select,From,Where,Group)):-print_column735,33663 -print_column(agg_query(Function,Select,From,Where,Group)):-print_column735,33663 -print_column(agg_query(Function,Select,From,Where,Group)):-print_column735,33663 -print_column(negated_existential_subquery(Select,From,Where)):-print_column740,33821 -print_column(negated_existential_subquery(Select,From,Where)):-print_column740,33821 -print_column(negated_existential_subquery(Select,From,Where)):-print_column740,33821 -print_column(existential_subquery(Select,From,Where)):-print_column742,33950 -print_column(existential_subquery(Select,From,Where)):-print_column742,33950 -print_column(existential_subquery(Select,From,Where)):-print_column742,33950 -queries_atom(Queries,QueryAtom):-queries_atom751,34428 -queries_atom(Queries,QueryAtom):-queries_atom751,34428 -queries_atom(Queries,QueryAtom):-queries_atom751,34428 -queries_atom([Query],QueryList,Diff):-queries_atom754,34531 -queries_atom([Query],QueryList,Diff):-queries_atom754,34531 -queries_atom([Query],QueryList,Diff):-queries_atom754,34531 -queries_atom([Query|Queries],QueryList,Diff):-queries_atom756,34607 -queries_atom([Query|Queries],QueryList,Diff):-queries_atom756,34607 -queries_atom([Query|Queries],QueryList,Diff):-queries_atom756,34607 -query_atom(query([agg_query(Function,Select,From,Where,Group)],_,_),QueryList,Diff):-query_atom762,34834 -query_atom(query([agg_query(Function,Select,From,Where,Group)],_,_),QueryList,Diff):-query_atom762,34834 -query_atom(query([agg_query(Function,Select,From,Where,Group)],_,_),QueryList,Diff):-query_atom762,34834 -query_atom(query(Select,From,Where),QueryList,Diff):-query_atom766,35079 -query_atom(query(Select,From,Where),QueryList,Diff):-query_atom766,35079 -query_atom(query(Select,From,Where),QueryList,Diff):-query_atom766,35079 -query_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-query_atom770,35267 -query_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-query_atom770,35267 -query_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-query_atom770,35267 -query_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-query_atom776,35582 -query_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-query_atom776,35582 -query_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-query_atom776,35582 -query_atom(existential_subquery(Select,From,Where),QueryList,Diff):-query_atom782,35857 -query_atom(existential_subquery(Select,From,Where),QueryList,Diff):-query_atom782,35857 -query_atom(existential_subquery(Select,From,Where),QueryList,Diff):-query_atom782,35857 -clause_atom(_,[],_,QueryList,QueryList).clause_atom797,36526 -clause_atom(_,[],_,QueryList,QueryList).clause_atom797,36526 -clause_atom(_,[once],_,QueryList,Diff):-!,clause_atom799,36602 -clause_atom(_,[once],_,QueryList,Diff):-!,clause_atom799,36602 -clause_atom(_,[once],_,QueryList,Diff):-!,clause_atom799,36602 -clause_atom(Keyword,[Column|RestColumns],Junctor,QueryList,Diff):-clause_atom803,36735 -clause_atom(Keyword,[Column|RestColumns],Junctor,QueryList,Diff):-clause_atom803,36735 -clause_atom(Keyword,[Column|RestColumns],Junctor,QueryList,Diff):-clause_atom803,36735 -clause_atom(Keyword,'COUNTDISTINCT',[Column],Junctor,QueryList,Diff):-!,clause_atom809,36950 -clause_atom(Keyword,'COUNTDISTINCT',[Column],Junctor,QueryList,Diff):-!,clause_atom809,36950 -clause_atom(Keyword,'COUNTDISTINCT',[Column],Junctor,QueryList,Diff):-!,clause_atom809,36950 -clause_atom(Keyword,Function,[Column],Junctor,QueryList,Diff):-clause_atom816,37213 -clause_atom(Keyword,Function,[Column],Junctor,QueryList,Diff):-clause_atom816,37213 -clause_atom(Keyword,Function,[Column],Junctor,QueryList,Diff):-clause_atom816,37213 -clause_atom([once],_,QueryList,Diff):-!,clause_atom824,37542 -clause_atom([once],_,QueryList,Diff):-!,clause_atom824,37542 -clause_atom([once],_,QueryList,Diff):-!,clause_atom824,37542 -clause_atom([Item],_,QueryList,Diff):-clause_atom826,37625 -clause_atom([Item],_,QueryList,Diff):-clause_atom826,37625 -clause_atom([Item],_,QueryList,Diff):-clause_atom826,37625 -clause_atom([Item,NextItem|RestItems],Junctor,QueryList,Diff):-clause_atom828,37701 -clause_atom([Item,NextItem|RestItems],Junctor,QueryList,Diff):-clause_atom828,37701 -clause_atom([Item,NextItem|RestItems],Junctor,QueryList,Diff):-clause_atom828,37701 -column_atom(att(RangeVar,Attribute),QueryList,Diff):-column_atom838,37996 -column_atom(att(RangeVar,Attribute),QueryList,Diff):-column_atom838,37996 -column_atom(att(RangeVar,Attribute),QueryList,Diff):-column_atom838,37996 -column_atom(rel(Relation,RangeVar),QueryList,Diff):-column_atom842,38151 -column_atom(rel(Relation,RangeVar),QueryList,Diff):-column_atom842,38151 -column_atom(rel(Relation,RangeVar),QueryList,Diff):-column_atom842,38151 -column_atom('$const$'(String),QueryList,Diff):-column_atom847,38322 -column_atom('$const$'(String),QueryList,Diff):-column_atom847,38322 -column_atom('$const$'(String),QueryList,Diff):-column_atom847,38322 -column_atom('$const$'(Number),QueryList,Diff):-column_atom852,38502 -column_atom('$const$'(Number),QueryList,Diff):-column_atom852,38502 -column_atom('$const$'(Number),QueryList,Diff):-column_atom852,38502 -column_atom(comp(LeftArg,Operator,RightArg),QueryList,Diff):-column_atom856,38665 -column_atom(comp(LeftArg,Operator,RightArg),QueryList,Diff):-column_atom856,38665 -column_atom(comp(LeftArg,Operator,RightArg),QueryList,Diff):-column_atom856,38665 -column_atom(LeftExpr * RightExpr,QueryList,Diff):-column_atom862,38885 -column_atom(LeftExpr * RightExpr,QueryList,Diff):-column_atom862,38885 -column_atom(LeftExpr * RightExpr,QueryList,Diff):-column_atom862,38885 -column_atom(LeftExpr + RightExpr,QueryList,Diff):-column_atom866,39037 -column_atom(LeftExpr + RightExpr,QueryList,Diff):-column_atom866,39037 -column_atom(LeftExpr + RightExpr,QueryList,Diff):-column_atom866,39037 -column_atom(LeftExpr - RightExpr,QueryList,Diff):-column_atom870,39189 -column_atom(LeftExpr - RightExpr,QueryList,Diff):-column_atom870,39189 -column_atom(LeftExpr - RightExpr,QueryList,Diff):-column_atom870,39189 -column_atom(LeftExpr / RightExpr,QueryList,Diff):-column_atom874,39341 -column_atom(LeftExpr / RightExpr,QueryList,Diff):-column_atom874,39341 -column_atom(LeftExpr / RightExpr,QueryList,Diff):-column_atom874,39341 -column_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-column_atom878,39493 -column_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-column_atom878,39493 -column_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-column_atom878,39493 -column_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-column_atom882,39696 -column_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-column_atom882,39696 -column_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-column_atom882,39696 -column_atom(existential_subquery(Select,From,Where),QueryList,Diff):-column_atom884,39853 -column_atom(existential_subquery(Select,From,Where),QueryList,Diff):-column_atom884,39853 -column_atom(existential_subquery(Select,From,Where),QueryList,Diff):-column_atom884,39853 -column_atom(Atom,List,Diff):-column_atom886,39994 -column_atom(Atom,List,Diff):-column_atom886,39994 -column_atom(Atom,List,Diff):-column_atom886,39994 -column_atom(Number,List,Diff) :-column_atom890,40082 -column_atom(Number,List,Diff) :-column_atom890,40082 -column_atom(Number,List,Diff) :-column_atom890,40082 -init_gensym(Atom) :-init_gensym902,40401 -init_gensym(Atom) :-init_gensym902,40401 -init_gensym(Atom) :-init_gensym902,40401 -gensym(Atom,Var) :-gensym904,40444 -gensym(Atom,Var) :-gensym904,40444 -gensym(Atom,Var) :-gensym904,40444 -repeat_n(N):-repeat_n912,40694 -repeat_n(N):-repeat_n912,40694 -repeat_n(N):-repeat_n912,40694 -repeat_1(1):-!.repeat_1916,40749 -repeat_1(1):-!.repeat_1916,40749 -repeat_1(1):-!.repeat_1916,40749 -repeat_1(_).repeat_1917,40765 -repeat_1(_).repeat_1917,40765 -repeat_1(N):-repeat_1918,40778 -repeat_1(N):-repeat_1918,40778 -repeat_1(N):-repeat_1918,40778 -set_difference([],_,[]).set_difference924,40940 -set_difference([],_,[]).set_difference924,40940 -set_difference([Element|RestSet],Set,[Element|RestDifference]):-set_difference925,40965 -set_difference([Element|RestSet],Set,[Element|RestDifference]):-set_difference925,40965 -set_difference([Element|RestSet],Set,[Element|RestDifference]):-set_difference925,40965 -set_difference([Element|RestSet],Set,RestDifference):-set_difference928,41105 -set_difference([Element|RestSet],Set,RestDifference):-set_difference928,41105 -set_difference([Element|RestSet],Set,RestDifference):-set_difference928,41105 -comparison(=,=).comparison932,41320 -comparison(=,=).comparison932,41320 -comparison(<,<).comparison933,41337 -comparison(<,<).comparison933,41337 -comparison(=<,'<=').comparison934,41354 -comparison(=<,'<=').comparison934,41354 -comparison(>=,'>=').comparison935,41375 -comparison(>=,'>=').comparison935,41375 -comparison(>,>).comparison936,41396 -comparison(>,>).comparison936,41396 -comparison(@<,<).comparison937,41413 -comparison(@<,<).comparison937,41413 -comparison(@>,>).comparison938,41431 -comparison(@>,>).comparison938,41431 -negated_comparison(=,'<>').negated_comparison939,41449 -negated_comparison(=,'<>').negated_comparison939,41449 -negated_comparison(\=,=).negated_comparison940,41477 -negated_comparison(\=,=).negated_comparison940,41477 -negated_comparison(>,'<=').negated_comparison941,41503 -negated_comparison(>,'<=').negated_comparison941,41503 -negated_comparison(=<,>).negated_comparison942,41531 -negated_comparison(=<,>).negated_comparison942,41531 -negated_comparison(<,>=).negated_comparison943,41557 -negated_comparison(<,>=).negated_comparison943,41557 -negated_comparison(>=,<).negated_comparison944,41583 -negated_comparison(>=,<).negated_comparison944,41583 -aggregate_functor(avg,'AVG').aggregate_functor946,41679 -aggregate_functor(avg,'AVG').aggregate_functor946,41679 -aggregate_functor(min,'MIN').aggregate_functor947,41709 -aggregate_functor(min,'MIN').aggregate_functor947,41709 -aggregate_functor(max,'MAX').aggregate_functor948,41739 -aggregate_functor(max,'MAX').aggregate_functor948,41739 -aggregate_functor(sum,'SUM').aggregate_functor949,41769 -aggregate_functor(sum,'SUM').aggregate_functor949,41769 -aggregate_functor(count,'COUNT').aggregate_functor950,41799 -aggregate_functor(count,'COUNT').aggregate_functor950,41799 -aggregate_functor(countdistinct,'COUNTDISTINCT').aggregate_functor951,41833 -aggregate_functor(countdistinct,'COUNTDISTINCT').aggregate_functor951,41833 -type_compatible(Type,Type):-type_compatible961,42252 -type_compatible(Type,Type):-type_compatible961,42252 -type_compatible(Type,Type):-type_compatible961,42252 -type_compatible(SubType,Type):-type_compatible963,42299 -type_compatible(SubType,Type):-type_compatible963,42299 -type_compatible(SubType,Type):-type_compatible963,42299 -type_compatible(Type,SubType):-type_compatible965,42357 -type_compatible(Type,SubType):-type_compatible965,42357 -type_compatible(Type,SubType):-type_compatible965,42357 -subtype(SubType,SuperType):-subtype972,42614 -subtype(SubType,SuperType):-subtype972,42614 -subtype(SubType,SuperType):-subtype972,42614 -subtype(SubType,SuperType):-subtype974,42677 -subtype(SubType,SuperType):-subtype974,42677 -subtype(SubType,SuperType):-subtype974,42677 -is_type(number).is_type982,42952 -is_type(number).is_type982,42952 -is_type(integer).is_type983,42969 -is_type(integer).is_type983,42969 -is_type(real).is_type984,42987 -is_type(real).is_type984,42987 -is_type(string).is_type985,43002 -is_type(string).is_type985,43002 -is_type(natural).is_type986,43019 -is_type(natural).is_type986,43019 -is_subtype(integer,number).is_subtype992,43245 -is_subtype(integer,number).is_subtype992,43245 -is_subtype(real,number).is_subtype993,43273 -is_subtype(real,number).is_subtype993,43273 -is_subtype(natural,integer).is_subtype994,43298 -is_subtype(natural,integer).is_subtype994,43298 -get_type('$const$'(Constant),integer):-get_type1001,43589 -get_type('$const$'(Constant),integer):-get_type1001,43589 -get_type('$const$'(Constant),integer):-get_type1001,43589 -get_type('$const$'(Constant),real):-get_type1003,43653 -get_type('$const$'(Constant),real):-get_type1003,43653 -get_type('$const$'(Constant),real):-get_type1003,43653 -get_type('$const$'(Constant),string):-get_type1005,43713 -get_type('$const$'(Constant),string):-get_type1005,43713 -get_type('$const$'(Constant),string):-get_type1005,43713 - -CodeBlocks/packages/myddas/pl/myddas_prolog2sql_optimizer.yap,4860 -optimize_sql([],[]).optimize_sql10,184 -optimize_sql([],[]).optimize_sql10,184 -optimize_sql([query(Proj,From,Where)|Tail],[query(Proj1,From1,Where1)|SQLTerm]):-optimize_sql11,205 -optimize_sql([query(Proj,From,Where)|Tail],[query(Proj1,From1,Where1)|SQLTerm]):-optimize_sql11,205 -optimize_sql([query(Proj,From,Where)|Tail],[query(Proj1,From1,Where1)|SQLTerm]):-optimize_sql11,205 -optimize_subquery(SQLSelect,OptSelectFinal,F,F,W,W):-optimize_subquery26,1042 -optimize_subquery(SQLSelect,OptSelectFinal,F,F,W,W):-optimize_subquery26,1042 -optimize_subquery(SQLSelect,OptSelectFinal,F,F,W,W):-optimize_subquery26,1042 -optimize_subquery(SQLSelect,SQLSelect,SQLFrom,OptFrom,SQLWhere,OptWhere):-optimize_subquery30,1355 -optimize_subquery(SQLSelect,SQLSelect,SQLFrom,OptFrom,SQLWhere,OptWhere):-optimize_subquery30,1355 -optimize_subquery(SQLSelect,SQLSelect,SQLFrom,OptFrom,SQLWhere,OptWhere):-optimize_subquery30,1355 -optimize_subquery(ProjTerm,ProjTerm,From,From,Where,Where).optimize_subquery42,1955 -optimize_subquery(ProjTerm,ProjTerm,From,From,Where,Where).optimize_subquery42,1955 -delete_surplous_tables([negated_existential_subquery(A,_,B)|T],Rel,[negated_existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables43,2015 -delete_surplous_tables([negated_existential_subquery(A,_,B)|T],Rel,[negated_existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables43,2015 -delete_surplous_tables([negated_existential_subquery(A,_,B)|T],Rel,[negated_existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables43,2015 -delete_surplous_tables([existential_subquery(A,_,B)|T],Rel,[existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables44,2129 -delete_surplous_tables([existential_subquery(A,_,B)|T],Rel,[existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables44,2129 -delete_surplous_tables([existential_subquery(A,_,B)|T],Rel,[existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables44,2129 -delete_surplous_tables([H|T],Rel,[H|Final]):-delete_surplous_tables45,2227 -delete_surplous_tables([H|T],Rel,[H|Final]):-delete_surplous_tables45,2227 -delete_surplous_tables([H|T],Rel,[H|Final]):-delete_surplous_tables45,2227 -comparasion_analysis([],From,From,RelTotal,RelTotal).comparasion_analysis47,2311 -comparasion_analysis([],From,From,RelTotal,RelTotal).comparasion_analysis47,2311 -comparasion_analysis([comp(att(Relation,_),_,att(Relation,_))|Tail],From1,[rel(Name,Relation)|FromFinal],RelTotal,RelTotalFinal):-comparasion_analysis48,2365 -comparasion_analysis([comp(att(Relation,_),_,att(Relation,_))|Tail],From1,[rel(Name,Relation)|FromFinal],RelTotal,RelTotalFinal):-comparasion_analysis48,2365 -comparasion_analysis([comp(att(Relation,_),_,att(Relation,_))|Tail],From1,[rel(Name,Relation)|FromFinal],RelTotal,RelTotalFinal):-comparasion_analysis48,2365 -comparasion_analysis([comp(att(Relation1,_),_,att(Relation2,_))|Tail],From1,From4,RelTotal,RelTotal3):-comparasion_analysis52,2653 -comparasion_analysis([comp(att(Relation1,_),_,att(Relation2,_))|Tail],From1,From4,RelTotal,RelTotal3):-comparasion_analysis52,2653 -comparasion_analysis([comp(att(Relation1,_),_,att(Relation2,_))|Tail],From1,From4,RelTotal,RelTotal3):-comparasion_analysis52,2653 -comparasion_analysis([_|Tail],From,FromFinal,RelTotal,RelTotalFinal):-comparasion_analysis69,3205 -comparasion_analysis([_|Tail],From,FromFinal,RelTotal,RelTotalFinal):-comparasion_analysis69,3205 -comparasion_analysis([_|Tail],From,FromFinal,RelTotal,RelTotalFinal):-comparasion_analysis69,3205 -projection_term_analysis([],[],Relation,Relation).projection_term_analysis71,3343 -projection_term_analysis([],[],Relation,Relation).projection_term_analysis71,3343 -projection_term_analysis([att(Relation,_)|Tail],[rel(Name,Relation)|FromFinal],RelTotal,RelTotal1):-projection_term_analysis72,3394 -projection_term_analysis([att(Relation,_)|Tail],[rel(Name,Relation)|FromFinal],RelTotal,RelTotal1):-projection_term_analysis72,3394 -projection_term_analysis([att(Relation,_)|Tail],[rel(Name,Relation)|FromFinal],RelTotal,RelTotal1):-projection_term_analysis72,3394 -projection_term_analysis([_|Tail],FromFinal,RelTotal,RelTotal1):-projection_term_analysis76,3642 -projection_term_analysis([_|Tail],FromFinal,RelTotal,RelTotal1):-projection_term_analysis76,3642 -projection_term_analysis([_|Tail],FromFinal,RelTotal,RelTotal1):-projection_term_analysis76,3642 -add_relation([],Final,Final).add_relation78,3770 -add_relation([],Final,Final).add_relation78,3770 -add_relation([Rel|Tail],RelTotal,RelFinal):-add_relation79,3800 -add_relation([Rel|Tail],RelTotal,RelFinal):-add_relation79,3800 -add_relation([Rel|Tail],RelTotal,RelFinal):-add_relation79,3800 -add_relation([_|Tail],RelTotal,RelFinal):-add_relation83,3951 -add_relation([_|Tail],RelTotal,RelFinal):-add_relation83,3951 -add_relation([_|Tail],RelTotal,RelFinal):-add_relation83,3951 - -CodeBlocks/packages/myddas/pl/myddas_sqlite3.yap,3627 -sqlite3_result_set(X):-sqlite3_result_set49,1390 -sqlite3_result_set(X):-sqlite3_result_set49,1390 -sqlite3_result_set(X):-sqlite3_result_set49,1390 -sqlite3_result_set(use_result):-sqlite3_result_set52,1459 -sqlite3_result_set(use_result):-sqlite3_result_set52,1459 -sqlite3_result_set(use_result):-sqlite3_result_set52,1459 -sqlite3_result_set(store_result):-sqlite3_result_set54,1535 -sqlite3_result_set(store_result):-sqlite3_result_set54,1535 -sqlite3_result_set(store_result):-sqlite3_result_set54,1535 -sqlite3_datalog_describe(Relation):-sqlite3_datalog_describe63,1792 -sqlite3_datalog_describe(Relation):-sqlite3_datalog_describe63,1792 -sqlite3_datalog_describe(Relation):-sqlite3_datalog_describe63,1792 -sqlite3_datalog_describe(Connection,Relation) :-sqlite3_datalog_describe65,1873 -sqlite3_datalog_describe(Connection,Relation) :-sqlite3_datalog_describe65,1873 -sqlite3_datalog_describe(Connection,Relation) :-sqlite3_datalog_describe65,1873 -sqlite3_describe(Relation,TableInfo) :-sqlite3_describe78,2377 -sqlite3_describe(Relation,TableInfo) :-sqlite3_describe78,2377 -sqlite3_describe(Relation,TableInfo) :-sqlite3_describe78,2377 -sqlite3_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-sqlite3_describe80,2463 -sqlite3_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-sqlite3_describe80,2463 -sqlite3_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-sqlite3_describe80,2463 -sqlite3_datalog_show_tables:-sqlite3_datalog_show_tables94,2953 -sqlite3_datalog_show_tables(Connection) :-sqlite3_datalog_show_tables96,3021 -sqlite3_datalog_show_tables(Connection) :-sqlite3_datalog_show_tables96,3021 -sqlite3_datalog_show_tables(Connection) :-sqlite3_datalog_show_tables96,3021 -sqlite3_show_tables(Table) :-sqlite3_show_tables109,3506 -sqlite3_show_tables(Table) :-sqlite3_show_tables109,3506 -sqlite3_show_tables(Table) :-sqlite3_show_tables109,3506 -sqlite3_show_tables(Connection,table(Table)) :-sqlite3_show_tables111,3572 -sqlite3_show_tables(Connection,table(Table)) :-sqlite3_show_tables111,3572 -sqlite3_show_tables(Connection,table(Table)) :-sqlite3_show_tables111,3572 -sqlite3_show_database(Connection,Database) :-sqlite3_show_database123,3981 -sqlite3_show_database(Connection,Database) :-sqlite3_show_database123,3981 -sqlite3_show_database(Connection,Database) :-sqlite3_show_database123,3981 -sqlite3_show_databases(Connection,database(Databases)) :-sqlite3_show_databases132,4292 -sqlite3_show_databases(Connection,database(Databases)) :-sqlite3_show_databases132,4292 -sqlite3_show_databases(Connection,database(Databases)) :-sqlite3_show_databases132,4292 -sqlite3_show_databases(Connection) :-sqlite3_show_databases144,4761 -sqlite3_show_databases(Connection) :-sqlite3_show_databases144,4761 -sqlite3_show_databases(Connection) :-sqlite3_show_databases144,4761 -sqlite3_change_database(Connection,Database) :-sqlite3_change_database156,5175 -sqlite3_change_database(Connection,Database) :-sqlite3_change_database156,5175 -sqlite3_change_database(Connection,Database) :-sqlite3_change_database156,5175 -sqlite3_call_procedure(Procedure,Args,Result) :-sqlite3_call_procedure169,5708 -sqlite3_call_procedure(Procedure,Args,Result) :-sqlite3_call_procedure169,5708 -sqlite3_call_procedure(Procedure,Args,Result) :-sqlite3_call_procedure169,5708 -sqlite3_call_procedure(Connection,Procedure,Args,LA) :-sqlite3_call_procedure171,5812 -sqlite3_call_procedure(Connection,Procedure,Args,LA) :-sqlite3_call_procedure171,5812 -sqlite3_call_procedure(Connection,Procedure,Args,LA) :-sqlite3_call_procedure171,5812 - -CodeBlocks/packages/myddas/pl/myddas_top_level.yap,0 - -CodeBlocks/packages/myddas/pl/myddas_util_predicates.yap,23082 -'$prolog2sql'(ProjTerm,DbGoal,SQL):-$prolog2sql37,897 -'$prolog2sql'(ProjTerm,DbGoal,SQL):-$prolog2sql37,897 -'$prolog2sql'(ProjTerm,DbGoal,SQL):-$prolog2sql37,897 -'$create_multi_query'([ProjTerm],[DbGoal],SQL):- !,$create_multi_query41,1046 -'$create_multi_query'([ProjTerm],[DbGoal],SQL):- !,$create_multi_query41,1046 -'$create_multi_query'([ProjTerm],[DbGoal],SQL):- !,$create_multi_query41,1046 -'$create_multi_query'([ProjTerm|TermList],[DbGoal|GoalList],SQL):-$create_multi_query47,1239 -'$create_multi_query'([ProjTerm|TermList],[DbGoal|GoalList],SQL):-$create_multi_query47,1239 -'$create_multi_query'([ProjTerm|TermList],[DbGoal|GoalList],SQL):-$create_multi_query47,1239 -'$get_multi_results'(_,_,_,[]).$get_multi_results55,1550 -'$get_multi_results'(_,_,_,[])./p,predicate,predicate definition55,1550 -'$get_multi_results'(_,_,_,[]).$get_multi_results55,1550 -'$get_multi_results'(Con,ConType,ResSet,[List|Results]):-$get_multi_results56,1582 -'$get_multi_results'(Con,ConType,ResSet,[List|Results]):-$get_multi_results56,1582 -'$get_multi_results'(Con,ConType,ResSet,[List|Results]):-$get_multi_results56,1582 -'$process_sql_goal'(TableViewName,SQLorDbGoal,TableName,SQL):-$process_sql_goal65,1847 -'$process_sql_goal'(TableViewName,SQLorDbGoal,TableName,SQL):-$process_sql_goal65,1847 -'$process_sql_goal'(TableViewName,SQLorDbGoal,TableName,SQL):-$process_sql_goal65,1847 -'$process_fields'(FieldsInf,FieldString,KeysSQL):-$process_fields77,2284 -'$process_fields'(FieldsInf,FieldString,KeysSQL):-$process_fields77,2284 -'$process_fields'(FieldsInf,FieldString,KeysSQL):-$process_fields77,2284 -'$process_primary_keys'([],'').$process_primary_keys80,2447 -'$process_primary_keys'([],'')./p,predicate,predicate definition80,2447 -'$process_primary_keys'([],'').$process_primary_keys80,2447 -'$process_primary_keys'([FieldName|Fields],KeysSQL):-$process_primary_keys81,2479 -'$process_primary_keys'([FieldName|Fields],KeysSQL):-$process_primary_keys81,2479 -'$process_primary_keys'([FieldName|Fields],KeysSQL):-$process_primary_keys81,2479 -'$process_primary_keys_put_comma'([],''):-!.$process_primary_keys_put_comma84,2670 -'$process_primary_keys_put_comma'([],''):-!.$process_primary_keys_put_comma84,2670 -'$process_primary_keys_put_comma'([],''):-!.$process_primary_keys_put_comma84,2670 -'$process_primary_keys_put_comma'([FieldName|Fields],CommaSQL):-!,$process_primary_keys_put_comma85,2715 -'$process_primary_keys_put_comma'([FieldName|Fields],CommaSQL):-!,$process_primary_keys_put_comma85,2715 -'$process_primary_keys_put_comma'([FieldName|Fields],CommaSQL):-!,$process_primary_keys_put_comma85,2715 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)],FinalSQL,PrimaryKeys):-!,$create_field_list88,2905 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)],FinalSQL,PrimaryKeys):-!,$create_field_list88,2905 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)],FinalSQL,PrimaryKeys):-!,$create_field_list88,2905 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)|T],FinalSQL,PrimaryKeys):-$create_field_list91,3138 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)|T],FinalSQL,PrimaryKeys):-$create_field_list91,3138 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)|T],FinalSQL,PrimaryKeys):-$create_field_list91,3138 -'$field_extra_options'(Name,Null,Key,KeyInfo,DefaultValue,Result,PrimaryKeys):-$field_extra_options96,3461 -'$field_extra_options'(Name,Null,Key,KeyInfo,DefaultValue,Result,PrimaryKeys):-$field_extra_options96,3461 -'$field_extra_options'(Name,Null,Key,KeyInfo,DefaultValue,Result,PrimaryKeys):-$field_extra_options96,3461 -'$where_exists'(SQL,1):-$where_exists116,3924 -'$where_exists'(SQL,1):-$where_exists116,3924 -'$where_exists'(SQL,1):-$where_exists116,3924 -'$where_exists'(_,0).$where_exists121,4138 -'$where_exists'(_,0)./p,predicate,predicate definition121,4138 -'$where_exists'(_,0).$where_exists121,4138 -'$where_exists_aux'([W|TCodes],[W|TWhere]):-$where_exists_aux122,4160 -'$where_exists_aux'([W|TCodes],[W|TWhere]):-$where_exists_aux122,4160 -'$where_exists_aux'([W|TCodes],[W|TWhere]):-$where_exists_aux122,4160 -'$where_exists_aux'([_|TCodes],Where):-$where_exists_aux124,4239 -'$where_exists_aux'([_|TCodes],Where):-$where_exists_aux124,4239 -'$where_exists_aux'([_|TCodes],Where):-$where_exists_aux124,4239 -'$where_found'(_,[]).$where_found126,4315 -'$where_found'(_,[])./p,predicate,predicate definition126,4315 -'$where_found'(_,[]).$where_found126,4315 -'$where_found'([Letter|TCodes],[Letter|TWhere]):-$where_found127,4337 -'$where_found'([Letter|TCodes],[Letter|TWhere]):-$where_found127,4337 -'$where_found'([Letter|TCodes],[Letter|TWhere]):-$where_found127,4337 -'$build_query'(0,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query132,4469 -'$build_query'(0,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query132,4469 -'$build_query'(0,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query132,4469 -'$build_query'(1,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query134,4576 -'$build_query'(1,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query134,4576 -'$build_query'(1,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query134,4576 -'$build_query_aux'(_,SQL,[],[],SQL).$build_query_aux138,4789 -'$build_query_aux'(_,SQL,[],[],SQL)./p,predicate,predicate definition138,4789 -'$build_query_aux'(_,SQL,[],[],SQL).$build_query_aux138,4789 -'$build_query_aux'(Flag,SQL,[CodeArg|CodeT],[LArg|LT],FinalSQL):-$build_query_aux139,4826 -'$build_query_aux'(Flag,SQL,[CodeArg|CodeT],[LArg|LT],FinalSQL):-$build_query_aux139,4826 -'$build_query_aux'(Flag,SQL,[CodeArg|CodeT],[LArg|LT],FinalSQL):-$build_query_aux139,4826 -'$build_query_aux'(Flag,SQL,[_|CodeT],[_|LT],FinalSQL):-$build_query_aux143,5009 -'$build_query_aux'(Flag,SQL,[_|CodeT],[_|LT],FinalSQL):-$build_query_aux143,5009 -'$build_query_aux'(Flag,SQL,[_|CodeT],[_|LT],FinalSQL):-$build_query_aux143,5009 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL147,5213 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL147,5213 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL147,5213 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL157,5545 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL157,5545 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL157,5545 -'$and_or_where'(1,SQL,ConcatSQL):-$and_or_where167,5929 -'$and_or_where'(1,SQL,ConcatSQL):-$and_or_where167,5929 -'$and_or_where'(1,SQL,ConcatSQL):-$and_or_where167,5929 -'$and_or_where'(0,SQL,ConcatSQL):-$and_or_where169,6000 -'$and_or_where'(0,SQL,ConcatSQL):-$and_or_where169,6000 -'$and_or_where'(0,SQL,ConcatSQL):-$and_or_where169,6000 -'$make_a_list'(0,[]) :- !.$make_a_list174,6130 -'$make_a_list'(0,[]) :- !.$make_a_list174,6130 -'$make_a_list'(0,[]) :- !.$make_a_list174,6130 -'$make_a_list'(N,[_|T]) :-$make_a_list175,6157 -'$make_a_list'(N,[_|T]) :-$make_a_list175,6157 -'$make_a_list'(N,[_|T]) :-$make_a_list175,6157 -'$assert_attribute_information'(N,N,_,_) :- !.$assert_attribute_information178,6219 -'$assert_attribute_information'(N,N,_,_) :- !.$assert_attribute_information178,6219 -'$assert_attribute_information'(N,N,_,_) :- !.$assert_attribute_information178,6219 -'$assert_attribute_information'(N,M,Relation,[FieldName,HeadType|TailTypes]) :-$assert_attribute_information179,6266 -'$assert_attribute_information'(N,M,Relation,[FieldName,HeadType|TailTypes]) :-$assert_attribute_information179,6266 -'$assert_attribute_information'(N,M,Relation,[FieldName,HeadType|TailTypes]) :-$assert_attribute_information179,6266 -'$copy_term_nv'(T,Dic,NT,[(T,NT)|Dic]) :-$copy_term_nv189,6622 -'$copy_term_nv'(T,Dic,NT,[(T,NT)|Dic]) :-$copy_term_nv189,6622 -'$copy_term_nv'(T,Dic,NT,[(T,NT)|Dic]) :-$copy_term_nv189,6622 -'$copy_term_nv'(T,Dic,T,Dic) :-$copy_term_nv192,6703 -'$copy_term_nv'(T,Dic,T,Dic) :-$copy_term_nv192,6703 -'$copy_term_nv'(T,Dic,T,Dic) :-$copy_term_nv192,6703 -'$copy_term_nv'(T,Dic,NT,NDic) :-$copy_term_nv194,6754 -'$copy_term_nv'(T,Dic,NT,NDic) :-$copy_term_nv194,6754 -'$copy_term_nv'(T,Dic,NT,NDic) :-$copy_term_nv194,6754 -'$iterate_on_args'(0,_,_,Dic,Dic) :- !.$iterate_on_args198,6861 -'$iterate_on_args'(0,_,_,Dic,Dic) :- !.$iterate_on_args198,6861 -'$iterate_on_args'(0,_,_,Dic,Dic) :- !.$iterate_on_args198,6861 -'$iterate_on_args'(N,T,NT,Dic,NDic2) :-$iterate_on_args199,6901 -'$iterate_on_args'(N,T,NT,Dic,NDic2) :-$iterate_on_args199,6901 -'$iterate_on_args'(N,T,NT,Dic,NDic2) :-$iterate_on_args199,6901 -'$v_member'(T,[],(T,_)).$v_member205,7055 -'$v_member'(T,[],(T,_))./p,predicate,predicate definition205,7055 -'$v_member'(T,[],(T,_)).$v_member205,7055 -'$v_member'(T,[(V,V1)|_],(T,V1)) :-$v_member206,7080 -'$v_member'(T,[(V,V1)|_],(T,V1)) :-$v_member206,7080 -'$v_member'(T,[(V,V1)|_],(T,V1)) :-$v_member206,7080 -'$v_member'(T,[_|R],V) :-$v_member208,7128 -'$v_member'(T,[_|R],V) :-$v_member208,7128 -'$v_member'(T,[_|R],V) :-$v_member208,7128 -'$extract_args'(Predicate,Arity,Arity,[Arg]):-$extract_args212,7273 -'$extract_args'(Predicate,Arity,Arity,[Arg]):-$extract_args212,7273 -'$extract_args'(Predicate,Arity,Arity,[Arg]):-$extract_args212,7273 -'$extract_args'(Predicate,ArgNumber,Arity,[Arg|ArgList]):-$extract_args214,7354 -'$extract_args'(Predicate,ArgNumber,Arity,[Arg|ArgList]):-$extract_args214,7354 -'$extract_args'(Predicate,ArgNumber,Arity,[Arg|ArgList]):-$extract_args214,7354 -'$get_table_name'([query(_,[rel(TableName,_)],_)],TableName).$get_table_name220,7633 -'$get_table_name'([query(_,[rel(TableName,_)],_)],TableName)./p,predicate,predicate definition220,7633 -'$get_table_name'([query(_,[rel(TableName,_)],_)],TableName).$get_table_name220,7633 -'$get_values_for_update'([query(Fields,_,[])],SetArgs,[' SET '|SQLSet],[]):-!,$get_values_for_update224,7865 -'$get_values_for_update'([query(Fields,_,[])],SetArgs,[' SET '|SQLSet],[]):-!,$get_values_for_update224,7865 -'$get_values_for_update'([query(Fields,_,[])],SetArgs,[' SET '|SQLSet],[]):-!,$get_values_for_update224,7865 -'$get_values_for_update'([query(Fields,_,Comp)],SetArgs,[' SET '|SQLSet],[' WHERE '|Where]):-!,$get_values_for_update227,8025 -'$get_values_for_update'([query(Fields,_,Comp)],SetArgs,[' SET '|SQLSet],[' WHERE '|Where]):-!,$get_values_for_update227,8025 -'$get_values_for_update'([query(Fields,_,Comp)],SetArgs,[' SET '|SQLSet],[' WHERE '|Where]):-!,$get_values_for_update227,8025 -'$get_values_for_set'([],[],[]).$get_values_for_set231,8240 -'$get_values_for_set'([],[],[])./p,predicate,predicate definition231,8240 -'$get_values_for_set'([],[],[]).$get_values_for_set231,8240 -'$get_values_for_set'([att(_,Field)|FieldList],[Value|ValueList],[Field,Value|FieldValueList]):-$get_values_for_set232,8273 -'$get_values_for_set'([att(_,Field)|FieldList],[Value|ValueList],[Field,Value|FieldValueList]):-$get_values_for_set232,8273 -'$get_values_for_set'([att(_,Field)|FieldList],[Value|ValueList],[Field,Value|FieldValueList]):-$get_values_for_set232,8273 -'$get_values_for_set'([_|FieldList],[_|ValueList],FieldValueList):-!,$get_values_for_set235,8448 -'$get_values_for_set'([_|FieldList],[_|ValueList],FieldValueList):-!,$get_values_for_set235,8448 -'$get_values_for_set'([_|FieldList],[_|ValueList],FieldValueList):-!,$get_values_for_set235,8448 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))],[' ',Field,' = "',Atom,'" ']).$get_values_for_where237,8578 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))],[' ',Field,' = "',Atom,'" '])./p,predicate,predicate definition237,8578 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))],[' ',Field,' = "',Atom,'" ']).$get_values_for_where'([comp(att(_,Field),'=','$const$237,8578 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))|Comp],[' ',Field,' = "',Atom,'" AND '|Rest]):-$get_values_for_where238,8674 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))|Comp],[' ',Field,' = "',Atom,'" AND '|Rest]):-$get_values_for_where238,8674 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))|Comp],[' ',Field,' = "',Atom,'" AND '|Rest]):-$get_values_for_where'([comp(att(_,Field),'=','$const$238,8674 -'$build_set_condition'([Field,Value|FieldValues],[SQLFirst|SQLRest]):-$build_set_condition240,8822 -'$build_set_condition'([Field,Value|FieldValues],[SQLFirst|SQLRest]):-$build_set_condition240,8822 -'$build_set_condition'([Field,Value|FieldValues],[SQLFirst|SQLRest]):-$build_set_condition240,8822 -'$build_set_condition_with_comma'([],[]).$build_set_condition_with_comma243,9019 -'$build_set_condition_with_comma'([],[])./p,predicate,predicate definition243,9019 -'$build_set_condition_with_comma'([],[]).$build_set_condition_with_comma243,9019 -'$build_set_condition_with_comma'([Field,Value|FieldValues],[SQL|SQLRest]):-$build_set_condition_with_comma244,9061 -'$build_set_condition_with_comma'([Field,Value|FieldValues],[SQL|SQLRest]):-$build_set_condition_with_comma244,9061 -'$build_set_condition_with_comma'([Field,Value|FieldValues],[SQL|SQLRest]):-$build_set_condition_with_comma244,9061 -'$abolish_all'(Con):-$abolish_all248,9295 -'$abolish_all'(Con):-$abolish_all248,9295 -'$abolish_all'(Con):-$abolish_all248,9295 -'$write_or_not'(X) :-$write_or_not252,9438 -'$write_or_not'(X) :-$write_or_not252,9438 -'$write_or_not'(X) :-$write_or_not252,9438 -'$write_or_not'(X) :-$write_or_not255,9502 -'$write_or_not'(X) :-$write_or_not255,9502 -'$write_or_not'(X) :-$write_or_not255,9502 -'$write_or_not'(_).$write_or_not261,9688 -'$write_or_not'(_)./p,predicate,predicate definition261,9688 -'$write_or_not'(_).$write_or_not261,9688 -'$make_atom'([],'').$make_atom262,9708 -'$make_atom'([],'')./p,predicate,predicate definition262,9708 -'$make_atom'([],'').$make_atom262,9708 -'$make_atom'([Atom|T],Final) :-$make_atom263,9729 -'$make_atom'([Atom|T],Final) :-$make_atom263,9729 -'$make_atom'([Atom|T],Final) :-$make_atom263,9729 -'$make_atom'([Number|T],Final) :-$make_atom267,9841 -'$make_atom'([Number|T],Final) :-$make_atom267,9841 -'$make_atom'([Number|T],Final) :-$make_atom267,9841 -'$make_atom_args'([Atom],Atom):-$make_atom_args271,9974 -'$make_atom_args'([Atom],Atom):-$make_atom_args271,9974 -'$make_atom_args'([Atom],Atom):-$make_atom_args271,9974 -'$make_atom_args'([Number],Atom):-$make_atom_args273,10022 -'$make_atom_args'([Number],Atom):-$make_atom_args273,10022 -'$make_atom_args'([Number],Atom):-$make_atom_args273,10022 -'$make_atom_args'([Atom|T],Final) :-$make_atom_args275,10086 -'$make_atom_args'([Atom|T],Final) :-$make_atom_args275,10086 -'$make_atom_args'([Atom|T],Final) :-$make_atom_args275,10086 -'$make_atom_args'([Number|T],Final) :-$make_atom_args280,10233 -'$make_atom_args'([Number|T],Final) :-$make_atom_args280,10233 -'$make_atom_args'([Number|T],Final) :-$make_atom_args280,10233 -'$get_values_for_insert'([_,_],[Value],['NULL',')']):-var(Value),!.$get_values_for_insert287,10505 -'$get_values_for_insert'([_,_],[Value],['NULL',')']):-var(Value),!.$get_values_for_insert287,10505 -'$get_values_for_insert'([_,_],[Value],['NULL',')']):-var(Value),!.$get_values_for_insert287,10505 -'$get_values_for_insert'([_,integer],[Value],[Value,')']):-!.$get_values_for_insert288,10573 -'$get_values_for_insert'([_,integer],[Value],[Value,')']):-!.$get_values_for_insert288,10573 -'$get_values_for_insert'([_,integer],[Value],[Value,')']):-!.$get_values_for_insert288,10573 -'$get_values_for_insert'([_,real],[Value],[Value,')']):-!.$get_values_for_insert289,10635 -'$get_values_for_insert'([_,real],[Value],[Value,')']):-!.$get_values_for_insert289,10635 -'$get_values_for_insert'([_,real],[Value],[Value,')']):-!.$get_values_for_insert289,10635 -'$get_values_for_insert'([_,string],[Value],['"',Value,'")']):-!.$get_values_for_insert290,10694 -'$get_values_for_insert'([_,string],[Value],['"',Value,'")']):-!.$get_values_for_insert290,10694 -'$get_values_for_insert'([_,string],[Value],['"',Value,'")']):-!.$get_values_for_insert290,10694 -'$get_values_for_insert'([_,_|TTypesList],[Value|TValues],['NULL',','|RestValues]):-$get_values_for_insert291,10760 -'$get_values_for_insert'([_,_|TTypesList],[Value|TValues],['NULL',','|RestValues]):-$get_values_for_insert291,10760 -'$get_values_for_insert'([_,_|TTypesList],[Value|TValues],['NULL',','|RestValues]):-$get_values_for_insert291,10760 -'$get_values_for_insert'([_,integer|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert294,10925 -'$get_values_for_insert'([_,integer|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert294,10925 -'$get_values_for_insert'([_,integer|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert294,10925 -'$get_values_for_insert'([_,real|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert296,11082 -'$get_values_for_insert'([_,real|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert296,11082 -'$get_values_for_insert'([_,real|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert296,11082 -'$get_values_for_insert'([_,string|TTypesList],[Value|TValues],['"',Value,'",'|RestValues]):-!,$get_values_for_insert298,11236 -'$get_values_for_insert'([_,string|TTypesList],[Value|TValues],['"',Value,'",'|RestValues]):-!,$get_values_for_insert298,11236 -'$get_values_for_insert'([_,string|TTypesList],[Value|TValues],['"',Value,'",'|RestValues]):-!,$get_values_for_insert298,11236 -'$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],['('|ValuesList],Relation):-$get_values_for_insert301,11418 -'$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],['('|ValuesList],Relation):-$get_values_for_insert301,11418 -'$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],['('|ValuesList],Relation):-$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],[301,11418 -'$get_values_for_insert_make_list'([att(_,_)],['NULL',')']):-!.$get_values_for_insert_make_list303,11565 -'$get_values_for_insert_make_list'([att(_,_)],['NULL',')']):-!.$get_values_for_insert_make_list303,11565 -'$get_values_for_insert_make_list'([att(_,_)],['NULL',')']):-!.$get_values_for_insert_make_list303,11565 -'$get_values_for_insert_make_list'(['$const$'(Value)],[Value,')']):-$get_values_for_insert_make_list304,11629 -'$get_values_for_insert_make_list'(['$const$'(Value)],[Value,')']):-$get_values_for_insert_make_list304,11629 -'$get_values_for_insert_make_list'(['$const$'(Value)],[Value,')']):-$get_values_for_insert_make_list'(['$const$304,11629 -'$get_values_for_insert_make_list'(['$const$'(Value)],['"',Value,'")']):-!.$get_values_for_insert_make_list306,11723 -'$get_values_for_insert_make_list'(['$const$'(Value)],['"',Value,'")']):-!.$get_values_for_insert_make_list306,11723 -'$get_values_for_insert_make_list'(['$const$'(Value)],['"',Value,'")']):-!.$get_values_for_insert_make_list'(['$const$306,11723 -'$get_values_for_insert_make_list'([att(_,_)|TAtt],['NULL',','|TList]):-!,$get_values_for_insert_make_list307,11799 -'$get_values_for_insert_make_list'([att(_,_)|TAtt],['NULL',','|TList]):-!,$get_values_for_insert_make_list307,11799 -'$get_values_for_insert_make_list'([att(_,_)|TAtt],['NULL',','|TList]):-!,$get_values_for_insert_make_list307,11799 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],[Value,','|TList]):-$get_values_for_insert_make_list309,11929 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],[Value,','|TList]):-$get_values_for_insert_make_list309,11929 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],[Value,','|TList]):-$get_values_for_insert_make_list'(['$const$309,11929 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],['"',Value,'"',','|TList]):-$get_values_for_insert_make_list312,12090 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],['"',Value,'"',','|TList]):-$get_values_for_insert_make_list312,12090 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],['"',Value,'"',','|TList]):-$get_values_for_insert_make_list'(['$const$312,12090 -'$get_value'(Connection,Con) :-$get_value316,12305 -'$get_value'(Connection,Con) :-$get_value316,12305 -'$get_value'(Connection,Con) :-$get_value316,12305 -'$check_fields'([],[]).$check_fields319,12410 -'$check_fields'([],[])./p,predicate,predicate definition319,12410 -'$check_fields'([],[]).$check_fields319,12410 -'$check_fields'(['$const$'(_)|TAtt],[_|TFields]):-$check_fields320,12434 -'$check_fields'(['$const$'(_)|TAtt],[_|TFields]):-$check_fields320,12434 -'$check_fields'(['$const$'(_)|TAtt],[_|TFields]):-$check_fields'(['$const$320,12434 -'$check_fields'([att(_,Name)|TAtt],[property(Name,_,1,1)|TFields]):-!,$check_fields324,12622 -'$check_fields'([att(_,Name)|TAtt],[property(Name,_,1,1)|TFields]):-!,$check_fields324,12622 -'$check_fields'([att(_,Name)|TAtt],[property(Name,_,1,1)|TFields]):-!,$check_fields324,12622 -'$check_fields'([att(_,Name)|TAtt],[property(Name,0,_,_)|TFields]):-!,$check_fields326,12732 -'$check_fields'([att(_,Name)|TAtt],[property(Name,0,_,_)|TFields]):-!,$check_fields326,12732 -'$check_fields'([att(_,Name)|TAtt],[property(Name,0,_,_)|TFields]):-!,$check_fields326,12732 -'$assert_facts'(Module,Fact):-$assert_facts332,12946 -'$assert_facts'(Module,Fact):-$assert_facts332,12946 -'$assert_facts'(Module,Fact):-$assert_facts332,12946 -'$assert_facts'(Module,Fact):-$assert_facts334,13000 -'$assert_facts'(Module,Fact):-$assert_facts334,13000 -'$assert_facts'(Module,Fact):-$assert_facts334,13000 -'$lenght'([],0).$lenght336,13060 -'$lenght'([],0)./p,predicate,predicate definition336,13060 -'$lenght'([],0).$lenght336,13060 -'$lenght'([_|T],Sum):-$lenght337,13077 -'$lenght'([_|T],Sum):-$lenght337,13077 -'$lenght'([_|T],Sum):-$lenght337,13077 -'$check_list_on_list'([],_).$check_list_on_list340,13150 -'$check_list_on_list'([],_)./p,predicate,predicate definition340,13150 -'$check_list_on_list'([],_).$check_list_on_list340,13150 -'$check_list_on_list'([H|T],DbGoalArgs) :-$check_list_on_list341,13179 -'$check_list_on_list'([H|T],DbGoalArgs) :-$check_list_on_list341,13179 -'$check_list_on_list'([H|T],DbGoalArgs) :-$check_list_on_list341,13179 -'$member_strick'(Element1, [Element2|_]) :-$member_strick344,13293 -'$member_strick'(Element1, [Element2|_]) :-$member_strick344,13293 -'$member_strick'(Element1, [Element2|_]) :-$member_strick344,13293 -'$member_strick'(Element, [_|Rest]) :-$member_strick346,13362 -'$member_strick'(Element, [_|Rest]) :-$member_strick346,13362 -'$member_strick'(Element, [_|Rest]) :-$member_strick346,13362 -'$make_stats_list'([],[]).$make_stats_list348,13442 -'$make_stats_list'([],[])./p,predicate,predicate definition348,13442 -'$make_stats_list'([],[]).$make_stats_list348,13442 -'$make_stats_list'([Ref|Tail],[Time|Final]):-$make_stats_list349,13469 -'$make_stats_list'([Ref|Tail],[Time|Final]):-$make_stats_list349,13469 -'$make_stats_list'([Ref|Tail],[Time|Final]):-$make_stats_list349,13469 - -CodeBlocks/packages/python/setup.py,227 -from distutils.core import setupsetup1,0 - name = "yapex",name4,41 - version = "0.1",version5,61 -package_dir = {'': '/home/vsc/yap-6.3-new/packages/python' },package_dir6,82 -py_modules = ['yapex']py_modules7,145 - -CodeBlocks/packages/python/yap_kernel/setup.py,1547 -from __future__ import print_functionprint_function7,141 -name = 'yap_kernel'name10,206 -import syssys16,424 -v = sys.version_infov18,436 - error = "ERROR: %s requires Python version 2.7 or 3.3 or above." % nameerror20,508 -PY3 = (sys.version_info[0] >= 3)PY324,635 -import osos30,845 -from glob import globglob31,855 -from distutils.core import setupsetup33,878 -packages = ["/home/vsc/yap-6.3-new/packages/python/yap_kernel"]packages35,912 -version_ns = {}version_ns37,977 -setup_args = dict(setup_args38,993 - name = 'yap_kernel',name39,1012 - version = '0.0.1',version40,1048 - packages = ["yap_kernel"],packages41,1079 - package_dir = {'': '/home/vsc/yap-6.3-new/packages/python' },package_dir42,1117 - description = "YAP Kernel for Jupyter",description43,1184 - long_description="A simple YAP kernel for Jupyter/IPython",long_description44,1232 - url="https://github.com/vscosta/yap-6.3",url45,1296 - author='Vitor Santos Costa, based on the the IPython',author46,1342 - author_email='vsc@dcc.fc.up.pt',author_email47,1401 - license = 'BSD',license48,1438 - platforms = "Linux, Mac OS X, Windows",platforms49,1467 - keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'],keywords50,1517 - data_files=[('share/Yap/js', ['/home/vsc/yap-6.3-new/misc/editors/prolog.js'])],data_files51,1587 - classifiers = [classifiers52,1673 - import setuptoolssetuptools64,2115 -setuptools_args = {}setuptools_args66,2138 - -CodeBlocks/packages/raptor/raptor_config.h,60 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H1,0 - -CodeBlocks/packages/real/rconfig.h,88 -#define RCONFIG_HRCONFIG_H7,343 -#define HAVE_R_INTERFACE_H HAVE_R_INTERFACE_H21,675 - -CodeBlocks/packages/swig/python/setup.py,1231 -from distutils.core import setup, Extensionsetup1,0 -from distutils.core import setup, ExtensionExtension1,0 -import syssys2,44 -import osos3,55 -import platformplatform4,65 - my_extra_link_args = ['-Wl,-rpath','-Wl,/usr/local/lib/Yap']my_extra_link_args7,116 - my_extra_link_args = []my_extra_link_args9,187 -python_sources = ['/home/vsc/yap-6.3-new/packages/swig/python/../yap.i']python_sources11,217 - name = "yap",name14,298 - version = "0.1",version15,316 -ext_modules=[Extension('_yap', python_sources,ext_modules16,337 - define_macros = [('MAJOR_VERSION', '1'),define_macros17,384 - runtime_library_dirs=[,'$(bindir)'],runtime_library_dirs21,632 - swig_opts=['-modern','-outcurrentdir', '-c++', '-py3','-I/home/vsc/yap-6.3-new/CXX'],swig_opts22,697 - library_dirs=["/usr/local/lib/Yap","/usr/local/bin",library_dirs23,790 - extra_link_args=my_extra_link_args,extra_link_args25,883 - libraries=['Yap','{GMP_LIBRARIES}'],libraries26,924 - include_dirs=['../../..',include_dirs27,966 -py_modules = ['yap', '/home/vsc/yap-6.3-new/packages/python/yapex']py_modules36,1523 - -CodeBlocks/packages/swig/python/yap.py,12077 -from sys import version_info as _swig_python_version_info_swig_python_version_info7,204 - new_instancemethod = lambda func, inst, cls: _yap.SWIG_PyInstanceMethod_New(func)new_instancemethod9,305 - from new import instancemethod as new_instancemethodnew_instancemethod11,397 - def swig_import_helper():swig_import_helper13,497 - import importlibimportlib14,527 - _yap = swig_import_helper()_yap21,788 - def swig_import_helper():swig_import_helper24,892 - from os.path import dirnamedirname25,922 - import impimp26,958 - import _yap_yap31,1121 - _yap = swig_import_helper()_yap39,1347 - import _yap_yap42,1412 - _swig_property = property_swig_property46,1464 - import builtins as __builtin____builtin__51,1568 - import __builtin____builtin__53,1623 -def _swig_setattr_nondynamic(self, class_type, name, value, static=1):_swig_setattr_nondynamic55,1647 -def _swig_setattr(self, class_type, name, value):_swig_setattr71,2177 -def _swig_getattr(self, class_type, name):_swig_getattr75,2299 -def _swig_repr(self):_swig_repr84,2598 -def _swig_setattr_nondynamic_method(set):_swig_setattr_nondynamic_method92,2830 - def set_attr(self, name, value):set_attr93,2872 - import weakrefweakref104,3184 - weakref_proxy = weakref.proxyweakref_proxy105,3203 - weakref_proxy = lambda x: xweakref_proxy107,3267 -YAPA_HH = _yap.YAPA_HHYAPA_HH110,3301 -PRED_TAG = _yap.PRED_TAGPRED_TAG111,3324 -DB_TAG = _yap.DB_TAGDB_TAG112,3349 -FUNCTOR_TAG = _yap.FUNCTOR_TAGFUNCTOR_TAG113,3370 -ARITHMETIC_PROPERTY_TAG = _yap.ARITHMETIC_PROPERTY_TAGARITHMETIC_PROPERTY_TAG114,3401 -TRANSLATION_TAG = _yap.TRANSLATION_TAGTRANSLATION_TAG115,3456 -HOLD_TAG = _yap.HOLD_TAGHOLD_TAG116,3495 -MUTEX_TAG = _yap.MUTEX_TAGMUTEX_TAG117,3520 -ARRAY_TAG = _yap.ARRAY_TAGARRAY_TAG118,3547 -MODULE_TAG = _yap.MODULE_TAGMODULE_TAG119,3574 -BLACKBOARD_TAG = _yap.BLACKBOARD_TAGBLACKBOARD_TAG120,3603 -VALUE_TAG = _yap.VALUE_TAGVALUE_TAG121,3640 -GLOBAL_VAR_TAG = _yap.GLOBAL_VAR_TAGGLOBAL_VAR_TAG122,3667 -BLOB_TAG = _yap.BLOB_TAGBLOB_TAG123,3704 -OPERATOR_TAG = _yap.OPERATOR_TAGOPERATOR_TAG124,3729 -class YAPAtom(object):YAPAtom125,3762 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown126,3785 - __repr__ = _swig_repr__repr__127,3893 - def __init__(self, *args):__init__129,3920 - __swig_destroy__ = _yap.delete_YAPAtom__swig_destroy__131,4012 -YAPAtom_swigregister = _yap.YAPAtom_swigregisterYAPAtom_swigregister135,4271 -class YAPProp(object):YAPProp138,4351 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown139,4374 - def __init__(self, *args, **kwargs):__init__141,4483 - __repr__ = _swig_repr__repr__143,4579 - __swig_destroy__ = _yap.delete_YAPProp__swig_destroy__144,4605 -YAPProp_swigregister = _yap.YAPProp_swigregisterYAPProp_swigregister145,4648 -class YAPError(object):YAPError148,4728 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown149,4752 - __repr__ = _swig_repr__repr__150,4860 - def __init__(self):__init__152,4887 - __swig_destroy__ = _yap.delete_YAPError__swig_destroy__154,4969 -YAPError_swigregister = _yap.YAPError_swigregisterYAPError_swigregister160,5400 -YAPT_HH = _yap.YAPT_HHYAPT_HH163,5484 -def YAP_ReadBuffer(s: 'char const *', tp: 'Term *') -> "Term":YAP_ReadBuffer165,5508 -YAP_ReadBuffer = _yap.YAP_ReadBufferYAP_ReadBuffer167,5609 -class YAPTerm(object):YAPTerm168,5646 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown169,5669 - __repr__ = _swig_repr__repr__170,5777 - def __init__(self, *args):__init__172,5804 - __swig_destroy__ = _yap.delete_YAPTerm__swig_destroy__174,5896 -YAPTerm_swigregister = _yap.YAPTerm_swigregisterYAPTerm_swigregister202,7913 -class YAPVarTerm(YAPTerm):YAPVarTerm205,7993 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown206,8020 - __repr__ = _swig_repr__repr__207,8128 - def __init__(self):__init__209,8155 - __swig_destroy__ = _yap.delete_YAPVarTerm__swig_destroy__211,8241 -YAPVarTerm_swigregister = _yap.YAPVarTerm_swigregisterYAPVarTerm_swigregister214,8451 -class YAPApplTerm(YAPTerm):YAPApplTerm217,8543 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown218,8571 - __repr__ = _swig_repr__repr__219,8679 - def __init__(self, f: 'YAPFunctor', ts: 'YAPTerm'):__init__221,8706 - __swig_destroy__ = _yap.delete_YAPApplTerm__swig_destroy__223,8831 -YAPApplTerm_swigregister = _yap.YAPApplTerm_swigregisterYAPApplTerm_swigregister225,8970 -class YAPPairTerm(YAPTerm):YAPPairTerm228,9066 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown229,9094 - __repr__ = _swig_repr__repr__230,9202 - def __init__(self, *args):__init__232,9229 - __swig_destroy__ = _yap.delete_YAPPairTerm__swig_destroy__234,9329 -YAPPairTerm_swigregister = _yap.YAPPairTerm_swigregisterYAPPairTerm_swigregister237,9548 -class YAPNumberTerm(YAPTerm):YAPNumberTerm240,9644 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown241,9674 - __repr__ = _swig_repr__repr__242,9782 - def __init__(self):__init__244,9809 - __swig_destroy__ = _yap.delete_YAPNumberTerm__swig_destroy__246,9901 -YAPNumberTerm_swigregister = _yap.YAPNumberTerm_swigregisterYAPNumberTerm_swigregister248,10044 -class YAPIntegerTerm(YAPNumberTerm):YAPIntegerTerm251,10148 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown252,10185 - __repr__ = _swig_repr__repr__253,10293 - def __init__(self, i: 'intptr_t'):__init__255,10320 - __swig_destroy__ = _yap.delete_YAPIntegerTerm__swig_destroy__257,10430 -YAPIntegerTerm_swigregister = _yap.YAPIntegerTerm_swigregisterYAPIntegerTerm_swigregister259,10581 -class YAPFloatTerm(YAPNumberTerm):YAPFloatTerm262,10689 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown263,10724 - __repr__ = _swig_repr__repr__264,10832 - def __init__(self, dbl: 'double'):__init__266,10859 - __swig_destroy__ = _yap.delete_YAPFloatTerm__swig_destroy__268,10967 -YAPFloatTerm_swigregister = _yap.YAPFloatTerm_swigregisterYAPFloatTerm_swigregister270,11100 -class YAPListTerm(YAPTerm):YAPListTerm273,11200 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown274,11228 - __repr__ = _swig_repr__repr__275,11336 - def __init__(self, *args):__init__277,11363 - __swig_destroy__ = _yap.delete_YAPListTerm__swig_destroy__279,11463 -YAPListTerm_swigregister = _yap.YAPListTerm_swigregisterYAPListTerm_swigregister285,11906 -class YAPStringTerm(YAPTerm):YAPStringTerm288,12002 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown289,12032 - __repr__ = _swig_repr__repr__290,12140 - def __init__(self, *args):__init__292,12167 - __swig_destroy__ = _yap.delete_YAPStringTerm__swig_destroy__294,12271 -YAPStringTerm_swigregister = _yap.YAPStringTerm_swigregisterYAPStringTerm_swigregister296,12416 -class YAPAtomTerm(YAPTerm):YAPAtomTerm299,12520 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown300,12548 - __repr__ = _swig_repr__repr__301,12656 - def __init__(self, *args):__init__303,12683 - __swig_destroy__ = _yap.delete_YAPAtomTerm__swig_destroy__305,12783 -YAPAtomTerm_swigregister = _yap.YAPAtomTerm_swigregisterYAPAtomTerm_swigregister307,12916 -YAP_CPP_DB_INTERFACE = _yap.YAP_CPP_DB_INTERFACEYAP_CPP_DB_INTERFACE310,13012 -class YAPModule(object):YAPModule311,13061 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown312,13086 - __repr__ = _swig_repr__repr__313,13194 - def __init__(self, *args):__init__315,13221 - __swig_destroy__ = _yap.delete_YAPModule__swig_destroy__317,13317 -YAPModule_swigregister = _yap.YAPModule_swigregisterYAPModule_swigregister318,13362 -class YAPModuleProp(YAPProp):YAPModuleProp321,13450 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown322,13480 - __repr__ = _swig_repr__repr__323,13588 - def __init__(self, *args):__init__325,13615 - __swig_destroy__ = _yap.delete_YAPModuleProp__swig_destroy__327,13719 -YAPModuleProp_swigregister = _yap.YAPModuleProp_swigregisterYAPModuleProp_swigregister329,13858 -class YAPFunctor(YAPProp):YAPFunctor332,13962 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown333,13989 - __repr__ = _swig_repr__repr__334,14097 - def __init__(self, *args):__init__336,14124 - __swig_destroy__ = _yap.delete_YAPFunctor__swig_destroy__338,14222 -YAPFunctor_swigregister = _yap.YAPFunctor_swigregisterYAPFunctor_swigregister341,14424 -class YAPPredicate(YAPModuleProp):YAPPredicate344,14516 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown345,14551 - __repr__ = _swig_repr__repr__346,14659 - def __init__(self, *args):__init__348,14686 - __swig_destroy__ = _yap.delete_YAPPredicate__swig_destroy__350,14788 -YAPPredicate_swigregister = _yap.YAPPredicate_swigregisterYAPPredicate_swigregister354,15095 -class YAPPrologPredicate(YAPPredicate):YAPPrologPredicate357,15195 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown358,15235 - __repr__ = _swig_repr__repr__359,15343 - def __init__(self, *args):__init__361,15370 - __swig_destroy__ = _yap.delete_YAPPrologPredicate__swig_destroy__363,15484 -YAPPrologPredicate_swigregister = _yap.YAPPrologPredicate_swigregisterYAPPrologPredicate_swigregister368,16000 -class YAPFLIP(YAPPredicate):YAPFLIP371,16124 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown372,16153 - __repr__ = _swig_repr__repr__373,16261 - def __init__(self, *args):__init__375,16288 - __swig_destroy__ = _yap.delete_YAPFLIP__swig_destroy__377,16380 -YAPFLIP_swigregister = _yap.YAPFLIP_swigregisterYAPFLIP_swigregister381,16645 -YAPQ_HH = _yap.YAPQ_HHYAPQ_HH384,16725 -class YAPQuery(YAPPredicate):YAPQuery385,16748 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown386,16778 - __repr__ = _swig_repr__repr__387,16886 - def __init__(self, *args):__init__389,16913 - __swig_destroy__ = _yap.delete_YAPQuery__swig_destroy__391,17007 -YAPQuery_swigregister = _yap.YAPQuery_swigregisterYAPQuery_swigregister404,17979 -class YAPCallback(object):YAPCallback407,18063 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown408,18090 - __repr__ = _swig_repr__repr__409,18198 - __swig_destroy__ = _yap.delete_YAPCallback__swig_destroy__410,18224 - def __init__(self):__init__412,18272 - def __disown__(self):__disown__418,18473 -YAPCallback_swigregister = _yap.YAPCallback_swigregisterYAPCallback_swigregister423,18677 -class YAPEngine(object):YAPEngine426,18773 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown427,18798 - __repr__ = _swig_repr__repr__428,18906 - def __init__(self, *args):__init__430,18933 - __swig_destroy__ = _yap.delete_YAPEngine__swig_destroy__432,19029 -YAPEngine_swigregister = _yap.YAPEngine_swigregisterYAPEngine_swigregister450,20434 - -CodeBlocks/packages/swig/python/yapPYTHON_wrap.cxx,84093 -#define SWIGPYTHONSWIGPYTHON13,539 -#define SWIG_DIRECTORSSWIG_DIRECTORS16,566 -#define SWIG_PYTHON_NO_BUILD_NONESWIG_PYTHON_NO_BUILD_NONE17,589 -#define SWIG_PYTHON_DIRECTOR_NO_VTABLESWIG_PYTHON_DIRECTOR_NO_VTABLE18,623 -template class SwigValueWrapper {SwigValueWrapper23,731 - struct SwigMovePointer {SwigMovePointer24,777 - struct SwigMovePointer {SwigValueWrapper::SwigMovePointer24,777 - T *ptr;ptr25,804 - T *ptr;SwigValueWrapper::SwigMovePointer::ptr25,804 - SwigMovePointer(T *p) : ptr(p) { }SwigMovePointer26,816 - SwigMovePointer(T *p) : ptr(p) { }SwigValueWrapper::SwigMovePointer::SwigMovePointer26,816 - ~SwigMovePointer() { delete ptr; }~SwigMovePointer27,855 - ~SwigMovePointer() { delete ptr; }SwigValueWrapper::SwigMovePointer::~SwigMovePointer27,855 - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }operator =28,894 - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }SwigValueWrapper::SwigMovePointer::operator =28,894 - } pointer;pointer29,1034 - } pointer;SwigValueWrapper::pointer29,1034 - SwigValueWrapper() : pointer(0) { }SwigValueWrapper33,1170 - SwigValueWrapper() : pointer(0) { }SwigValueWrapper::SwigValueWrapper33,1170 - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; }operator =34,1208 - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; }SwigValueWrapper::operator =34,1208 - operator T&() const { return *pointer.ptr; }operator T&35,1314 - operator T&() const { return *pointer.ptr; }SwigValueWrapper::operator T&35,1314 - T *operator&() { return pointer.ptr; }operator &36,1361 - T *operator&() { return pointer.ptr; }SwigValueWrapper::operator &36,1361 -template T SwigValueInit() {SwigValueInit39,1406 -# define SWIGTEMPLATEDISAMBIGUATOR SWIGTEMPLATEDISAMBIGUATOR52,1945 -# define SWIGTEMPLATEDISAMBIGUATOR SWIGTEMPLATEDISAMBIGUATOR56,2200 -# define SWIGTEMPLATEDISAMBIGUATORSWIGTEMPLATEDISAMBIGUATOR58,2252 -# define SWIGINLINE SWIGINLINE65,2424 -# define SWIGINLINESWIGINLINE67,2460 -# define SWIGUNUSED SWIGUNUSED75,2703 -# define SWIGUNUSEDSWIGUNUSED77,2765 -# define SWIGUNUSED SWIGUNUSED80,2821 -# define SWIGUNUSEDSWIGUNUSED82,2879 -# define SWIGUNUSEDPARM(SWIGUNUSEDPARM94,3118 -# define SWIGUNUSEDPARM(SWIGUNUSEDPARM96,3154 -# define SWIGINTERN SWIGINTERN102,3258 -# define SWIGINTERNINLINE SWIGINTERNINLINE107,3363 -# define GCC_HASCLASSVISIBILITYGCC_HASCLASSVISIBILITY114,3564 -# define SWIGEXPORTSWIGEXPORT122,3744 -# define SWIGEXPORT SWIGEXPORT124,3777 -# define SWIGEXPORT SWIGEXPORT128,3900 -# define SWIGEXPORTSWIGEXPORT130,3973 -# define SWIGSTDCALL SWIGSTDCALL138,4147 -# define SWIGSTDCALLSWIGSTDCALL140,4187 -# define _CRT_SECURE_NO_DEPRECATE_CRT_SECURE_NO_DEPRECATE146,4411 -# define _SCL_SECURE_NO_DEPRECATE_SCL_SECURE_NO_DEPRECATE151,4645 -# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES156,4849 -# undef _DEBUG_DEBUG171,5392 -# define _DEBUG_DEBUG173,5428 -#define SWIG_RUNTIME_VERSION SWIG_RUNTIME_VERSION187,5898 -# define SWIG_QUOTE_STRING(SWIG_QUOTE_STRING191,6010 -# define SWIG_EXPAND_AND_QUOTE_STRING(SWIG_EXPAND_AND_QUOTE_STRING192,6043 -# define SWIG_TYPE_TABLE_NAME SWIG_TYPE_TABLE_NAME193,6105 -# define SWIG_TYPE_TABLE_NAMESWIG_TYPE_TABLE_NAME195,6187 -# define SWIGRUNTIME SWIGRUNTIME208,6554 -# define SWIGRUNTIMEINLINE SWIGRUNTIMEINLINE212,6620 -# define SWIG_BUFFER_SIZE SWIG_BUFFER_SIZE217,6730 -#define SWIG_POINTER_DISOWN SWIG_POINTER_DISOWN221,6805 -#define SWIG_CAST_NEW_MEMORY SWIG_CAST_NEW_MEMORY222,6844 -#define SWIG_POINTER_OWN SWIG_POINTER_OWN225,6920 -#define SWIG_OK SWIG_OK307,9023 -#define SWIG_ERROR SWIG_ERROR308,9062 -#define SWIG_IsOK(SWIG_IsOK309,9102 -#define SWIG_ArgError(SWIG_ArgError310,9146 -#define SWIG_CASTRANKLIMIT SWIG_CASTRANKLIMIT313,9293 -#define SWIG_NEWOBJMASK SWIG_NEWOBJMASK315,9405 -#define SWIG_TMPOBJMASK SWIG_TMPOBJMASK317,9534 -#define SWIG_BADOBJ SWIG_BADOBJ319,9622 -#define SWIG_OLDOBJ SWIG_OLDOBJ320,9670 -#define SWIG_NEWOBJ SWIG_NEWOBJ321,9715 -#define SWIG_TMPOBJ SWIG_TMPOBJ322,9778 -#define SWIG_AddNewMask(SWIG_AddNewMask324,9879 -#define SWIG_DelNewMask(SWIG_DelNewMask325,9957 -#define SWIG_IsNewObj(SWIG_IsNewObj326,10036 -#define SWIG_AddTmpMask(SWIG_AddTmpMask327,10111 -#define SWIG_DelTmpMask(SWIG_DelTmpMask328,10189 -#define SWIG_IsTmpObj(SWIG_IsTmpObj329,10268 -# define SWIG_TypeRank SWIG_TypeRank334,10421 -# define SWIG_MAXCASTRANK SWIG_MAXCASTRANK337,10547 -# define SWIG_CASTRANKMASK SWIG_CASTRANKMASK339,10598 -# define SWIG_CastRank(SWIG_CastRank340,10661 -SWIGINTERNINLINE int SWIG_AddCast(int r) {SWIG_AddCast341,10722 -SWIGINTERNINLINE int SWIG_CheckState(int r) {SWIG_CheckState344,10859 -# define SWIG_AddCast(SWIG_AddCast348,10987 -# define SWIG_CheckState(SWIG_CheckState349,11017 -typedef void *(*swig_converter_func)(void *, int *);swig_converter_func359,11139 -typedef struct swig_type_info *(*swig_dycast_func)(void **);swig_dycast_func360,11192 -typedef struct swig_type_info {swig_type_info363,11303 - const char *name; /* mangled name of this type */name364,11335 - const char *name; /* mangled name of this type */swig_type_info::name364,11335 - const char *str; /* human readable name of this type */str365,11401 - const char *str; /* human readable name of this type */swig_type_info::str365,11401 - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */dcast366,11473 - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */swig_type_info::dcast366,11473 - struct swig_cast_info *cast; /* linked list of types that can cast into this type */cast367,11552 - struct swig_cast_info *cast; /* linked list of types that can cast into this type */swig_type_info::cast367,11552 - void *clientdata; /* language specific type data */clientdata368,11642 - void *clientdata; /* language specific type data */swig_type_info::clientdata368,11642 - int owndata; /* flag if the structure owns the clientdata */owndata369,11715 - int owndata; /* flag if the structure owns the clientdata */swig_type_info::owndata369,11715 -} swig_type_info;swig_type_info370,11798 -typedef struct swig_cast_info {swig_cast_info373,11890 - swig_type_info *type; /* pointer to type that is equivalent to this type */type374,11922 - swig_type_info *type; /* pointer to type that is equivalent to this type */swig_cast_info::type374,11922 - swig_converter_func converter; /* function to cast the void pointers */converter375,12010 - swig_converter_func converter; /* function to cast the void pointers */swig_cast_info::converter375,12010 - struct swig_cast_info *next; /* pointer to next cast in linked list */next376,12089 - struct swig_cast_info *next; /* pointer to next cast in linked list */swig_cast_info::next376,12089 - struct swig_cast_info *prev; /* pointer to the previous cast */prev377,12165 - struct swig_cast_info *prev; /* pointer to the previous cast */swig_cast_info::prev377,12165 -} swig_cast_info;swig_cast_info378,12234 -typedef struct swig_module_info {swig_module_info383,12448 - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */types384,12482 - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */swig_module_info::types384,12482 - size_t size; /* Number of types in this module */size385,12594 - size_t size; /* Number of types in this module */swig_module_info::size385,12594 - struct swig_module_info *next; /* Pointer to next element in circularly linked list */next386,12671 - struct swig_module_info *next; /* Pointer to next element in circularly linked list */swig_module_info::next386,12671 - swig_type_info **type_initial; /* Array of initially generated type structures */type_initial387,12761 - swig_type_info **type_initial; /* Array of initially generated type structures */swig_module_info::type_initial387,12761 - swig_cast_info **cast_initial; /* Array of initially generated casting structures */cast_initial388,12853 - swig_cast_info **cast_initial; /* Array of initially generated casting structures */swig_module_info::cast_initial388,12853 - void *clientdata; /* Language specific module data */clientdata389,12948 - void *clientdata; /* Language specific module data */swig_module_info::clientdata389,12948 -} swig_module_info;swig_module_info390,13024 -SWIG_TypeNameComp(const char *f1, const char *l1,SWIG_TypeNameComp400,13282 -SWIG_TypeCmp(const char *nb, const char *tb) {SWIG_TypeCmp415,13739 -SWIG_TypeEquiv(const char *nb, const char *tb) {SWIG_TypeEquiv434,14170 -SWIG_TypeCheck(const char *c, swig_type_info *ty) {SWIG_TypeCheck442,14322 -SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) {SWIG_TypeCheckStruct469,15021 -SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {SWIG_TypeCast496,15677 -SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) {SWIG_TypeDynamicCast504,15915 -SWIG_TypeName(const swig_type_info *ty) {SWIG_TypeName518,16225 -SWIG_TypePrettyName(const swig_type_info *type) {SWIG_TypePrettyName527,16440 -SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {SWIG_TypeClientData548,16993 -SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {SWIG_TypeNewClientData564,17381 -SWIG_MangledTypeQueryModule(swig_module_info *start,SWIG_MangledTypeQueryModule578,17812 -SWIG_TypeQueryModule(swig_module_info *start,SWIG_TypeQueryModule623,19063 -SWIG_PackData(char *c, void *ptr, size_t sz) {SWIG_PackData652,19838 -SWIG_UnpackData(const char *c, void *ptr, size_t sz) {SWIG_UnpackData668,20224 -SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) {SWIG_PackVoidPtr696,20927 -SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) {SWIG_UnpackVoidPtr707,21239 -SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {SWIG_PackDataName720,21512 -SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {SWIG_UnpackDataName735,21861 -#define SWIG_UnknownError SWIG_UnknownError752,22164 -#define SWIG_IOError SWIG_IOError753,22201 -#define SWIG_RuntimeError SWIG_RuntimeError754,22237 -#define SWIG_IndexError SWIG_IndexError755,22273 -#define SWIG_TypeError SWIG_TypeError756,22309 -#define SWIG_DivisionByZero SWIG_DivisionByZero757,22345 -#define SWIG_OverflowError SWIG_OverflowError758,22381 -#define SWIG_SyntaxError SWIG_SyntaxError759,22417 -#define SWIG_ValueError SWIG_ValueError760,22453 -#define SWIG_SystemError SWIG_SystemError761,22489 -#define SWIG_AttributeError SWIG_AttributeError762,22526 -#define SWIG_MemoryError SWIG_MemoryError763,22563 -#define SWIG_NullReferenceError SWIG_NullReferenceError764,22600 -#define PyClass_Check(PyClass_Check771,22716 -#define PyInt_Check(PyInt_Check772,22794 -#define PyInt_AsLong(PyInt_AsLong773,22833 -#define PyInt_FromLong(PyInt_FromLong774,22874 -#define PyInt_FromSize_t(PyInt_FromSize_t775,22919 -#define PyString_Check(PyString_Check776,22968 -#define PyString_FromString(PyString_FromString777,23017 -#define PyString_Format(PyString_Format778,23072 -#define PyString_AsString(PyString_AsString779,23136 -#define PyString_Size(PyString_Size780,23189 -#define PyString_InternFromString(PyString_InternFromString781,23235 -#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_HAVE_CLASS782,23306 -#define PyString_AS_STRING(PyString_AS_STRING783,23356 -#define _PyLong_FromSsize_t(_PyLong_FromSsize_t784,23409 -# define Py_TYPE(Py_TYPE789,23487 -# define SWIG_Python_str_FromFormat SWIG_Python_str_FromFormat795,23622 -# define SWIG_Python_str_FromFormat SWIG_Python_str_FromFormat797,23686 -SWIG_Python_str_AsChar(PyObject *str)SWIG_Python_str_AsChar805,23905 -# define SWIG_Python_str_DelForPy3(SWIG_Python_str_DelForPy3823,24292 -# define SWIG_Python_str_DelForPy3(SWIG_Python_str_DelForPy3825,24357 -SWIG_Python_str_FromChar(const char *c)SWIG_Python_str_FromChar830,24427 -# define PyOS_snprintf PyOS_snprintf842,24726 -# define PyOS_snprintf PyOS_snprintf844,24767 -# define SWIG_PYBUFFER_SIZE SWIG_PYBUFFER_SIZE852,24941 -PyString_FromFormat(const char *fmt, ...) {PyString_FromFormat856,25000 -# define PyObject_DEL PyObject_DEL868,25295 -# define PyExc_StopIteration PyExc_StopIteration874,25459 -# define PyObject_GenericGetAttr PyObject_GenericGetAttr877,25549 -# define Py_NotImplemented Py_NotImplemented884,25710 -# define PyString_AsStringAndSize(PyString_AsStringAndSize891,25909 -# define PySequence_Size PySequence_Size898,26127 -PyObject *PyBool_FromLong(long ok)PyBool_FromLong905,26264 -typedef int Py_ssize_t;Py_ssize_t917,26595 -# define PY_SSIZE_T_MAX PY_SSIZE_T_MAX918,26619 -# define PY_SSIZE_T_MIN PY_SSIZE_T_MIN919,26651 -typedef inquiry lenfunc;lenfunc920,26683 -typedef intargfunc ssizeargfunc;ssizeargfunc921,26708 -typedef intintargfunc ssizessizeargfunc;ssizessizeargfunc922,26741 -typedef intobjargproc ssizeobjargproc;ssizeobjargproc923,26782 -typedef intintobjargproc ssizessizeobjargproc;ssizessizeobjargproc924,26821 -typedef getreadbufferproc readbufferproc;readbufferproc925,26868 -typedef getwritebufferproc writebufferproc;writebufferproc926,26910 -typedef getsegcountproc segcountproc;segcountproc927,26954 -typedef getcharbufferproc charbufferproc;charbufferproc928,26992 -static long PyNumber_AsSsize_t (PyObject *x, void *SWIGUNUSEDPARM(exc))PyNumber_AsSsize_t929,27034 -#define PyInt_FromSize_t(PyInt_FromSize_t942,27282 -#define Py_VISIT(Py_VISIT946,27374 - PyTypeObject type;type958,27605 - PyTypeObject type;__anon22::type958,27605 - PyNumberMethods as_number;as_number959,27626 - PyNumberMethods as_number;__anon22::as_number959,27626 - PyMappingMethods as_mapping;as_mapping960,27655 - PyMappingMethods as_mapping;__anon22::as_mapping960,27655 - PySequenceMethods as_sequence;as_sequence961,27686 - PySequenceMethods as_sequence;__anon22::as_sequence961,27686 - PyBufferProcs as_buffer;as_buffer962,27719 - PyBufferProcs as_buffer;__anon22::as_buffer962,27719 - PyObject *name, *slots;name963,27746 - PyObject *name, *slots;__anon22::name963,27746 - PyObject *name, *slots;slots963,27746 - PyObject *name, *slots;__anon22::slots963,27746 -} PyHeapTypeObject;PyHeapTypeObject964,27772 -typedef destructor freefunc;freefunc968,27832 -# define SWIGPY_USE_CAPSULESWIGPY_USE_CAPSULE974,28014 -# define SWIGPY_CAPSULE_NAME SWIGPY_CAPSULE_NAME975,28042 -#define PyDescr_TYPE(PyDescr_TYPE979,28206 -#define PyDescr_NAME(PyDescr_NAME980,28263 -#define Py_hash_t Py_hash_t981,28320 -SWIG_Python_ErrorType(int code) {SWIG_Python_ErrorType989,28561 -SWIG_Python_AddErrorMsg(const char* mesg)SWIG_Python_AddErrorMsg1033,29447 -# undef SWIG_PYTHON_THREADSSWIG_PYTHON_THREADS1057,30041 -# define SWIG_PYTHON_USE_GILSWIG_PYTHON_USE_GIL1063,30316 -# define SWIG_PYTHON_INITIALIZE_THREADS SWIG_PYTHON_INITIALIZE_THREADS1068,30483 - class SWIG_Python_Thread_Block {SWIG_Python_Thread_Block1071,30599 - bool status;status1072,30639 - bool status;SWIG_Python_Thread_Block::status1072,30639 - PyGILState_STATE state;state1073,30661 - PyGILState_STATE state;SWIG_Python_Thread_Block::state1073,30661 - void end() { if (status) { PyGILState_Release(state); status = false;} }end1075,30709 - void end() { if (status) { PyGILState_Release(state); status = false;} }SWIG_Python_Thread_Block::end1075,30709 - SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}SWIG_Python_Thread_Block1076,30791 - SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}SWIG_Python_Thread_Block::SWIG_Python_Thread_Block1076,30791 - ~SWIG_Python_Thread_Block() { end(); }~SWIG_Python_Thread_Block1077,30873 - ~SWIG_Python_Thread_Block() { end(); }SWIG_Python_Thread_Block::~SWIG_Python_Thread_Block1077,30873 - class SWIG_Python_Thread_Allow {SWIG_Python_Thread_Allow1079,30931 - bool status;status1080,30971 - bool status;SWIG_Python_Thread_Allow::status1080,30971 - PyThreadState *save;save1081,30993 - PyThreadState *save;SWIG_Python_Thread_Allow::save1081,30993 - void end() { if (status) { PyEval_RestoreThread(save); status = false; }}end1083,31038 - void end() { if (status) { PyEval_RestoreThread(save); status = false; }}SWIG_Python_Thread_Allow::end1083,31038 - SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}SWIG_Python_Thread_Allow1084,31121 - SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}SWIG_Python_Thread_Allow::SWIG_Python_Thread_Allow1084,31121 - ~SWIG_Python_Thread_Allow() { end(); }~SWIG_Python_Thread_Allow1085,31202 - ~SWIG_Python_Thread_Allow() { end(); }SWIG_Python_Thread_Allow::~SWIG_Python_Thread_Allow1085,31202 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_PYTHON_THREAD_BEGIN_BLOCK1087,31260 -# define SWIG_PYTHON_THREAD_END_BLOCK SWIG_PYTHON_THREAD_END_BLOCK1088,31351 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_PYTHON_THREAD_BEGIN_ALLOW1089,31423 -# define SWIG_PYTHON_THREAD_END_ALLOW SWIG_PYTHON_THREAD_END_ALLOW1090,31514 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_PYTHON_THREAD_BEGIN_BLOCK1092,31609 -# define SWIG_PYTHON_THREAD_END_BLOCK SWIG_PYTHON_THREAD_END_BLOCK1093,31714 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_PYTHON_THREAD_BEGIN_ALLOW1094,31800 -# define SWIG_PYTHON_THREAD_END_ALLOW SWIG_PYTHON_THREAD_END_ALLOW1095,31903 -# define SWIG_PYTHON_INITIALIZE_THREADSSWIG_PYTHON_INITIALIZE_THREADS1099,32119 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCKSWIG_PYTHON_THREAD_BEGIN_BLOCK1102,32224 -# define SWIG_PYTHON_THREAD_END_BLOCKSWIG_PYTHON_THREAD_END_BLOCK1105,32327 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOWSWIG_PYTHON_THREAD_BEGIN_ALLOW1108,32430 -# define SWIG_PYTHON_THREAD_END_ALLOWSWIG_PYTHON_THREAD_END_ALLOW1111,32533 -# define SWIG_PYTHON_INITIALIZE_THREADSSWIG_PYTHON_INITIALIZE_THREADS1115,32626 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCKSWIG_PYTHON_THREAD_BEGIN_BLOCK1116,32667 -# define SWIG_PYTHON_THREAD_END_BLOCKSWIG_PYTHON_THREAD_END_BLOCK1117,32708 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOWSWIG_PYTHON_THREAD_BEGIN_ALLOW1118,32747 -# define SWIG_PYTHON_THREAD_END_ALLOWSWIG_PYTHON_THREAD_END_ALLOW1119,32788 -#define SWIG_PY_POINTER SWIG_PY_POINTER1135,33302 -#define SWIG_PY_BINARY SWIG_PY_BINARY1136,33328 -typedef struct swig_const_info {swig_const_info1139,33392 - int type;type1140,33425 - int type;swig_const_info::type1140,33425 - char *name;name1141,33437 - char *name;swig_const_info::name1141,33437 - long lvalue;lvalue1142,33451 - long lvalue;swig_const_info::lvalue1142,33451 - double dvalue;dvalue1143,33466 - double dvalue;swig_const_info::dvalue1143,33466 - void *pvalue;pvalue1144,33483 - void *pvalue;swig_const_info::pvalue1144,33483 - swig_type_info **ptype;ptype1145,33501 - swig_type_info **ptype;swig_const_info::ptype1145,33501 -} swig_const_info;swig_const_info1146,33527 -SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(func))SWIGUNUSEDPARM1159,34006 -#define SWIG_Python_ConvertPtr(SWIG_Python_ConvertPtr1182,34548 -#define SWIG_ConvertPtr(SWIG_ConvertPtr1183,34660 -#define SWIG_ConvertPtrAndOwn(SWIG_ConvertPtrAndOwn1184,34763 -#define SWIG_NewPointerObj(SWIG_NewPointerObj1187,34904 -#define SWIG_NewPointerObj(SWIG_NewPointerObj1189,35016 -#define SWIG_InternalNewPointerObj(SWIG_InternalNewPointerObj1192,35130 -#define SWIG_CheckImplicit(SWIG_CheckImplicit1194,35234 -#define SWIG_AcquirePtr(SWIG_AcquirePtr1195,35321 -#define swig_owntype swig_owntype1196,35410 -#define SWIG_ConvertPacked(SWIG_ConvertPacked1199,35497 -#define SWIG_NewPackedObj(SWIG_NewPackedObj1200,35597 -#define SWIG_ConvertInstance(SWIG_ConvertInstance1203,35729 -#define SWIG_NewInstanceObj(SWIG_NewInstanceObj1204,35825 -#define SWIG_ConvertFunctionPtr(SWIG_ConvertFunctionPtr1207,35956 -#define SWIG_NewFunctionPtrObj(SWIG_NewFunctionPtrObj1208,36060 -#define SWIG_ConvertMember(SWIG_ConvertMember1211,36213 -#define SWIG_NewMemberObj(SWIG_NewMemberObj1212,36313 -#define SWIG_GetModule(SWIG_GetModule1217,36430 -#define SWIG_SetModule(SWIG_SetModule1218,36520 -#define SWIG_NewClientData(SWIG_NewClientData1219,36607 -#define SWIG_SetErrorObj SWIG_SetErrorObj1221,36690 -#define SWIG_SetErrorMsg SWIG_SetErrorMsg1222,36798 -#define SWIG_ErrorType(SWIG_ErrorType1223,36878 -#define SWIG_Error(SWIG_Error1224,36979 -#define SWIG_fail SWIG_fail1225,37074 -SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) {SWIG_Python_SetErrorObj1233,37214 -SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) {SWIG_Python_SetErrorMsg1241,37412 -#define SWIG_Python_Raise(SWIG_Python_Raise1247,37576 -SwigPyBuiltin_AddPublicSymbol(PyObject *seq, const char *key) {SwigPyBuiltin_AddPublicSymbol1254,37760 -SWIG_Python_SetConstant(PyObject *d, PyObject *public_interface, const char *name, PyObject *obj) { SWIG_Python_SetConstant1261,37932 -SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { SWIG_Python_SetConstant1275,38291 -SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) {SWIG_Python_AppendOutput1289,38613 -SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)SWIG_Python_UnpackTuple1334,39572 -#define SWIG_Python_CallFunctor(SWIG_Python_CallFunctor1381,40898 -#define SWIG_Python_CallFunctor(SWIG_Python_CallFunctor1383,41008 -#define SWIG_STATIC_POINTER(SWIG_STATIC_POINTER1391,41284 -#define SWIG_STATIC_POINTER(SWIG_STATIC_POINTER1393,41328 -#define SWIG_POINTER_NOSHADOW SWIG_POINTER_NOSHADOW1401,41619 -#define SWIG_POINTER_NEW SWIG_POINTER_NEW1402,41684 -#define SWIG_POINTER_IMPLICIT_CONV SWIG_POINTER_IMPLICIT_CONV1404,41764 -#define SWIG_BUILTIN_TP_INIT SWIG_BUILTIN_TP_INIT1406,41830 -#define SWIG_BUILTIN_INIT SWIG_BUILTIN_INIT1407,41887 -# define SWIG_PYTHON_BUILD_NONESWIG_PYTHON_BUILD_NONE1417,42165 -# undef Py_NonePy_None1424,42277 -# define Py_None Py_None1425,42295 -_SWIG_Py_None(void)_SWIG_Py_None1428,42368 -SWIG_Py_None(void)SWIG_Py_None1435,42495 -SWIG_Py_Void(void)SWIG_Py_Void1445,42671 - PyObject *klass;klass1455,42798 - PyObject *klass;__anon23::klass1455,42798 - PyObject *newraw;newraw1456,42817 - PyObject *newraw;__anon23::newraw1456,42817 - PyObject *newargs;newargs1457,42837 - PyObject *newargs;__anon23::newargs1457,42837 - PyObject *destroy;destroy1458,42858 - PyObject *destroy;__anon23::destroy1458,42858 - int delargs;delargs1459,42879 - int delargs;__anon23::delargs1459,42879 - int implicitconv;implicitconv1460,42894 - int implicitconv;__anon23::implicitconv1460,42894 - PyTypeObject *pytype;pytype1461,42914 - PyTypeObject *pytype;__anon23::pytype1461,42914 -} SwigPyClientData;SwigPyClientData1462,42938 -SWIG_Python_CheckImplicit(swig_type_info *ty)SWIG_Python_CheckImplicit1465,42982 -SWIG_Python_ExceptionType(swig_type_info *desc) {SWIG_Python_ExceptionType1472,43165 -SwigPyClientData_New(PyObject* obj)SwigPyClientData_New1480,43419 -SwigPyClientData_Del(SwigPyClientData *data) {SwigPyClientData_Del1534,44796 - void *ptr;ptr1544,45022 - void *ptr;__anon24::ptr1544,45022 - swig_type_info *ty;ty1545,45035 - swig_type_info *ty;__anon24::ty1545,45035 - int own;own1546,45057 - int own;__anon24::own1546,45057 - PyObject *next;next1547,45068 - PyObject *next;__anon24::next1547,45068 - PyObject *dict;dict1549,45112 - PyObject *dict;__anon24::dict1549,45112 -} SwigPyObject;SwigPyObject1551,45137 -SwigPyObject_get___dict__(PyObject *v, PyObject *SWIGUNUSEDPARM(args))SwigPyObject_get___dict__1557,45205 -SwigPyObject_long(SwigPyObject *v)SwigPyObject_long1571,45452 -SwigPyObject_format(const char* fmt, SwigPyObject *v)SwigPyObject_format1577,45552 -SwigPyObject_oct(SwigPyObject *v)SwigPyObject_oct1599,46032 -SwigPyObject_hex(SwigPyObject *v)SwigPyObject_hex1605,46132 -SwigPyObject_repr(SwigPyObject *v)SwigPyObject_repr1612,46251 -SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)SwigPyObject_compare1638,46952 -SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op)SwigPyObject_richcompare1647,47185 -static swig_type_info *SwigPyObject_stype = 0;SwigPyObject_stype1662,47562 -SwigPyObject_type(void) {SwigPyObject_type1664,47635 -SwigPyObject_type(void) {SwigPyObject_type1674,47877 -SwigPyObject_Check(PyObject *op) {SwigPyObject_Check1681,48026 -SwigPyObject_dealloc(PyObject *v)SwigPyObject_dealloc1697,48480 -SwigPyObject_append(PyObject* v, PyObject* next)SwigPyObject_append1748,50193 -SwigPyObject_next(PyObject* v)SwigPyObject_next1767,50657 -SwigPyObject_disown(PyObject *v)SwigPyObject_disown1783,50968 -SwigPyObject_acquire(PyObject *v)SwigPyObject_acquire1795,51208 -SwigPyObject_own(PyObject *v, PyObject *args)SwigPyObject_own1806,51446 -swigobject_methods[] = {swigobject_methods1844,52226 -swigobject_methods[] = {swigobject_methods1855,52991 -SwigPyObject_getattr(SwigPyObject *sobj,char *name)SwigPyObject_getattr1868,53798 -SwigPyObject_TypeOnce(void) {SwigPyObject_TypeOnce1875,53956 -SwigPyObject_New(void *ptr, swig_type_info *ty, int own)SwigPyObject_New2022,59906 - void *pack;pack2040,60439 - void *pack;__anon25::pack2040,60439 - swig_type_info *ty;ty2041,60453 - swig_type_info *ty;__anon25::ty2041,60453 - size_t size;size2042,60475 - size_t size;__anon25::size2042,60475 -} SwigPyPacked;SwigPyPacked2043,60490 -SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags))SwigPyPacked_print2046,60523 -SwigPyPacked_repr(SwigPyPacked *v)SwigPyPacked_repr2060,60870 -SwigPyPacked_str(SwigPyPacked *v)SwigPyPacked_str2071,61212 -SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w)SwigPyPacked_compare2082,61506 -SwigPyPacked_type(void) {SwigPyPacked_type2093,61807 -SwigPyPacked_Check(PyObject *op) {SwigPyPacked_Check2099,61949 -SwigPyPacked_dealloc(PyObject *v)SwigPyPacked_dealloc2105,62118 -SwigPyPacked_TypeOnce(void) {SwigPyPacked_TypeOnce2115,62304 -SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty)SwigPyPacked_New2209,66429 -SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size)SwigPyPacked_UnpackData2228,66867 -_SWIG_This(void)_SWIG_This2245,67362 -static PyObject *swig_this = NULL;swig_this2250,67429 -SWIG_This(void)SWIG_This2253,67488 -#define SWIG_PYTHON_SLOW_GETSET_THIS SWIG_PYTHON_SLOW_GETSET_THIS2264,67739 -SWIG_Python_GetSwigThis(PyObject *pyobj) SWIG_Python_GetSwigThis2268,67812 -SWIG_Python_AcquirePtr(PyObject *obj, int own) {SWIG_Python_AcquirePtr2334,69354 -SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {SWIG_Python_ConvertPtrAndOwn2349,69653 -SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) {SWIG_Python_ConvertFunctionPtr2454,72485 -SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) {SWIG_Python_ConvertPacked2486,73388 -SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)SWIG_Python_NewShadowInstance2509,74066 -SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this)SWIG_Python_SetSwigThis2584,76022 -SWIG_Python_InitShadowInstance(PyObject *args) {SWIG_Python_InitShadowInstance2606,76568 -SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags) {SWIG_Python_NewPointerObj2624,77016 -SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) {SWIG_Python_NewPackedObj2678,78473 -SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata)) {SWIG_Python_GetModule2691,78911 -PyModule_AddObject(PyObject *m, char *name, PyObject *o)PyModule_AddObject2717,79745 -SWIG_Python_DestroyModule(PyObject *obj)SWIG_Python_DestroyModule2745,80468 -SWIG_Python_SetModule(swig_module_info *swig_module) {SWIG_Python_SetModule2769,81113 -SWIG_Python_TypeCache(void) {SWIG_Python_TypeCache2796,82184 -SWIG_Python_TypeQuery(const char *type)SWIG_Python_TypeQuery2802,82324 -#define SWIG_POINTER_EXCEPTION SWIG_POINTER_EXCEPTION2834,83186 -#define SWIG_arg_fail(SWIG_arg_fail2835,83220 -#define SWIG_MustGetPtr(SWIG_MustGetPtr2836,83277 -SWIG_Python_AddErrMesg(const char* mesg, int infront)SWIG_Python_AddErrMesg2839,83390 -SWIG_Python_ArgFail(int argnum)SWIG_Python_ArgFail2866,84050 -SwigPyObject_GetDesc(PyObject *self)SwigPyObject_GetDesc2879,84356 -SWIG_Python_TypeError(const char *type, PyObject *obj)SWIG_Python_TypeError2887,84523 -SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags) {SWIG_Python_MustGetPtr2926,85637 -SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {SWIG_Python_NonDynamicSetAttr2942,86051 -#define SWIG_exception_fail(SWIG_exception_fail3000,87301 -#define SWIG_contract_assert(SWIG_contract_assert3002,87392 - #define SWIG_exception(SWIG_exception3006,87505 -#define SwigSwig3021,88086 -#define SWIG_DIRECTOR_PYTHON_HEADER_SWIG_DIRECTOR_PYTHON_HEADER_3031,88435 -#define SWIG_PYTHON_DIRECTOR_VTABLESWIG_PYTHON_DIRECTOR_VTABLE3048,88806 -#define SWIG_DIRECTOR_UEHSWIG_DIRECTOR_UEH3060,89035 -# define SWIG_DIRECTOR_RTDIRSWIG_DIRECTOR_RTDIR3076,89416 -namespace Swig {Swig3078,89446 - SWIGINTERN std::map& get_rtdir_map() {get_rtdir_map3080,89481 - SWIGINTERN std::map& get_rtdir_map() {Swig::get_rtdir_map3080,89481 - SWIGINTERNINLINE void set_rtdir(void *vptr, Director *rtdir) {set_rtdir3085,89620 - SWIGINTERNINLINE void set_rtdir(void *vptr, Director *rtdir) {Swig::set_rtdir3085,89620 - SWIGINTERNINLINE Director *get_rtdir(void *vptr) {get_rtdir3089,89725 - SWIGINTERNINLINE Director *get_rtdir(void *vptr) {Swig::get_rtdir3089,89725 -# define SWIG_DIRECTOR_CAST(SWIG_DIRECTOR_CAST3097,89992 -# define SWIG_DIRECTOR_RGTR(SWIG_DIRECTOR_RGTR3098,90067 -namespace Swig {Swig3111,90350 - struct GCItem {GCItem3114,90391 - struct GCItem {Swig::GCItem3114,90391 - virtual ~GCItem() {}~GCItem3115,90409 - virtual ~GCItem() {}Swig::GCItem::~GCItem3115,90409 - virtual int get_own() const {get_own3117,90435 - virtual int get_own() const {Swig::GCItem::get_own3117,90435 - struct GCItem_var {GCItem_var3122,90497 - struct GCItem_var {Swig::GCItem_var3122,90497 - GCItem_var(GCItem *item = 0) : _item(item) {GCItem_var3123,90519 - GCItem_var(GCItem *item = 0) : _item(item) {Swig::GCItem_var::GCItem_var3123,90519 - GCItem_var& operator=(GCItem *item) {operator =3126,90575 - GCItem_var& operator=(GCItem *item) {Swig::GCItem_var::operator =3126,90575 - ~GCItem_var() {~GCItem_var3133,90709 - ~GCItem_var() {Swig::GCItem_var::~GCItem_var3133,90709 - GCItem * operator->() const {operator ->3137,90756 - GCItem * operator->() const {Swig::GCItem_var::operator ->3137,90756 - GCItem *_item;_item3142,90828 - GCItem *_item;Swig::GCItem_var::_item3142,90828 - struct GCItem_Object : GCItem {GCItem_Object3145,90853 - struct GCItem_Object : GCItem {Swig::GCItem_Object3145,90853 - GCItem_Object(int own) : _own(own) {GCItem_Object3146,90887 - GCItem_Object(int own) : _own(own) {Swig::GCItem_Object::GCItem_Object3146,90887 - virtual ~GCItem_Object() {~GCItem_Object3149,90935 - virtual ~GCItem_Object() {Swig::GCItem_Object::~GCItem_Object3149,90935 - int get_own() const {get_own3152,90973 - int get_own() const {Swig::GCItem_Object::get_own3152,90973 - int _own;_own3157,91036 - int _own;Swig::GCItem_Object::_own3157,91036 - struct GCItem_T : GCItem {GCItem_T3161,91083 - struct GCItem_T : GCItem {Swig::GCItem_T3161,91083 - GCItem_T(Type *ptr) : _ptr(ptr) {GCItem_T3162,91112 - GCItem_T(Type *ptr) : _ptr(ptr) {Swig::GCItem_T::GCItem_T3162,91112 - virtual ~GCItem_T() {~GCItem_T3165,91157 - virtual ~GCItem_T() {Swig::GCItem_T::~GCItem_T3165,91157 - Type *_ptr;_ptr3170,91220 - Type *_ptr;Swig::GCItem_T::_ptr3170,91220 - struct GCArray_T : GCItem {GCArray_T3174,91269 - struct GCArray_T : GCItem {Swig::GCArray_T3174,91269 - GCArray_T(Type *ptr) : _ptr(ptr) {GCArray_T3175,91299 - GCArray_T(Type *ptr) : _ptr(ptr) {Swig::GCArray_T::GCArray_T3175,91299 - virtual ~GCArray_T() {~GCArray_T3178,91345 - virtual ~GCArray_T() {Swig::GCArray_T::~GCArray_T3178,91345 - Type *_ptr;_ptr3183,91411 - Type *_ptr;Swig::GCArray_T::_ptr3183,91411 - class DirectorException : public std::exception {DirectorException3187,91476 - class DirectorException : public std::exception {Swig::DirectorException3187,91476 - std::string swig_msg;swig_msg3189,91541 - std::string swig_msg;Swig::DirectorException::swig_msg3189,91541 - DirectorException(PyObject *error, const char *hdr ="", const char *msg ="") : swig_msg(hdr) {DirectorException3191,91577 - DirectorException(PyObject *error, const char *hdr ="", const char *msg ="") : swig_msg(hdr) {Swig::DirectorException::DirectorException3191,91577 - virtual ~DirectorException() throw() {~DirectorException3203,91914 - virtual ~DirectorException() throw() {Swig::DirectorException::~DirectorException3203,91914 - const char *getMessage() const {getMessage3207,92005 - const char *getMessage() const {Swig::DirectorException::getMessage3207,92005 - const char *what() const throw() {what3211,92070 - const char *what() const throw() {Swig::DirectorException::what3211,92070 - static void raise(PyObject *error, const char *msg) {raise3215,92147 - static void raise(PyObject *error, const char *msg) {Swig::DirectorException::raise3215,92147 - static void raise(const char *msg) {raise3219,92255 - static void raise(const char *msg) {Swig::DirectorException::raise3219,92255 - class UnknownExceptionHandler {UnknownExceptionHandler3225,92381 - class UnknownExceptionHandler {Swig::UnknownExceptionHandler3225,92381 - static void handler() {handler3227,92440 - static void handler() {Swig::UnknownExceptionHandler::handler3227,92440 - std::unexpected_handler old;old3253,93362 - std::unexpected_handler old;Swig::UnknownExceptionHandler::old3253,93362 - UnknownExceptionHandler(std::unexpected_handler nh = handler) {UnknownExceptionHandler3254,93395 - UnknownExceptionHandler(std::unexpected_handler nh = handler) {Swig::UnknownExceptionHandler::UnknownExceptionHandler3254,93395 - ~UnknownExceptionHandler() {~UnknownExceptionHandler3258,93507 - ~UnknownExceptionHandler() {Swig::UnknownExceptionHandler::~UnknownExceptionHandler3258,93507 - class DirectorTypeMismatchException : public DirectorException {DirectorTypeMismatchException3265,93659 - class DirectorTypeMismatchException : public DirectorException {Swig::DirectorTypeMismatchException3265,93659 - DirectorTypeMismatchException(PyObject *error, const char *msg="")DirectorTypeMismatchException3267,93736 - DirectorTypeMismatchException(PyObject *error, const char *msg="")Swig::DirectorTypeMismatchException::DirectorTypeMismatchException3267,93736 - DirectorTypeMismatchException(const char *msg="")DirectorTypeMismatchException3271,93885 - DirectorTypeMismatchException(const char *msg="")Swig::DirectorTypeMismatchException::DirectorTypeMismatchException3271,93885 - static void raise(PyObject *error, const char *msg) {raise3275,94027 - static void raise(PyObject *error, const char *msg) {Swig::DirectorTypeMismatchException::raise3275,94027 - static void raise(const char *msg) {raise3279,94147 - static void raise(const char *msg) {Swig::DirectorTypeMismatchException::raise3279,94147 - class DirectorMethodException : public DirectorException {DirectorMethodException3285,94319 - class DirectorMethodException : public DirectorException {Swig::DirectorMethodException3285,94319 - DirectorMethodException(const char *msg = "")DirectorMethodException3287,94390 - DirectorMethodException(const char *msg = "")Swig::DirectorMethodException::DirectorMethodException3287,94390 - static void raise(const char *msg) {raise3291,94531 - static void raise(const char *msg) {Swig::DirectorMethodException::raise3291,94531 - class DirectorPureVirtualException : public DirectorException {DirectorPureVirtualException3297,94694 - class DirectorPureVirtualException : public DirectorException {Swig::DirectorPureVirtualException3297,94694 - DirectorPureVirtualException(const char *msg = "")DirectorPureVirtualException3299,94770 - DirectorPureVirtualException(const char *msg = "")Swig::DirectorPureVirtualException::DirectorPureVirtualException3299,94770 - static void raise(const char *msg) {raise3303,94929 - static void raise(const char *msg) {Swig::DirectorPureVirtualException::raise3303,94929 -# define __THREAD__ __THREAD__3312,95156 - class Guard {Guard3318,95237 - class Guard {Swig::Guard3318,95237 - PyThread_type_lock &mutex_;mutex_3319,95253 - PyThread_type_lock &mutex_;Swig::Guard::mutex_3319,95253 - Guard(PyThread_type_lock & mutex) : mutex_(mutex) {Guard3322,95296 - Guard(PyThread_type_lock & mutex) : mutex_(mutex) {Swig::Guard::Guard3322,95296 - ~Guard() {~Guard3326,95407 - ~Guard() {Swig::Guard::~Guard3326,95407 -# define SWIG_GUARD(SWIG_GUARD3330,95470 -# define SWIG_GUARD(SWIG_GUARD3332,95523 - class Director {Director3336,95586 - class Director {Swig::Director3336,95586 - PyObject *swig_self;swig_self3339,95663 - PyObject *swig_self;Swig::Director::swig_self3339,95663 - mutable bool swig_disown_flag;swig_disown_flag3341,95759 - mutable bool swig_disown_flag;Swig::Director::swig_disown_flag3341,95759 - void swig_decref() const {swig_decref3344,95864 - void swig_decref() const {Swig::Director::swig_decref3344,95864 - Director(PyObject *self) : swig_self(self), swig_disown_flag(false) {Director3354,96090 - Director(PyObject *self) : swig_self(self), swig_disown_flag(false) {Swig::Director::Director3354,96090 - virtual ~Director() {~Director3358,96218 - virtual ~Director() {Swig::Director::~Director3358,96218 - PyObject *swig_get_self() const {swig_get_self3363,96328 - PyObject *swig_get_self() const {Swig::Director::swig_get_self3363,96328 - void swig_disown() const {swig_disown3368,96493 - void swig_disown() const {Swig::Director::swig_disown3368,96493 - void swig_incref() const {swig_incref3376,96692 - void swig_incref() const {Swig::Director::swig_incref3376,96692 - virtual bool swig_get_inner(const char * /* swig_protected_method_name */) const {swig_get_inner3383,96863 - virtual bool swig_get_inner(const char * /* swig_protected_method_name */) const {Swig::Director::swig_get_inner3383,96863 - virtual void swig_set_inner(const char * /* swig_protected_method_name */, bool /* swig_val */) const {swig_set_inner3387,96976 - virtual void swig_set_inner(const char * /* swig_protected_method_name */, bool /* swig_val */) const {Swig::Director::swig_set_inner3387,96976 - typedef std::map swig_ownership_map;swig_ownership_map3392,97131 - typedef std::map swig_ownership_map;Swig::Director::swig_ownership_map3392,97131 - mutable swig_ownership_map swig_owner;swig_owner3393,97192 - mutable swig_ownership_map swig_owner;Swig::Director::swig_owner3393,97192 - static PyThread_type_lock swig_mutex_own;swig_mutex_own3395,97253 - static PyThread_type_lock swig_mutex_own;Swig::Director::swig_mutex_own3395,97253 - void swig_acquire_ownership_array(Type *vptr) const {swig_acquire_ownership_array3400,97346 - void swig_acquire_ownership_array(Type *vptr) const {Swig::Director::swig_acquire_ownership_array3400,97346 - void swig_acquire_ownership(Type *vptr) const {swig_acquire_ownership3408,97556 - void swig_acquire_ownership(Type *vptr) const {Swig::Director::swig_acquire_ownership3408,97556 - void swig_acquire_ownership_obj(void *vptr, int own) const {swig_acquire_ownership_obj3415,97730 - void swig_acquire_ownership_obj(void *vptr, int own) const {Swig::Director::swig_acquire_ownership_obj3415,97730 - int swig_release_ownership(void *vptr) const {swig_release_ownership3422,97922 - int swig_release_ownership(void *vptr) const {Swig::Director::swig_release_ownership3422,97922 - static PyObject *swig_pyobj_disown(PyObject *pyobj, PyObject *SWIGUNUSEDPARM(args)) {swig_pyobj_disown3436,98300 - static PyObject *swig_pyobj_disown(PyObject *pyobj, PyObject *SWIGUNUSEDPARM(args)) {Swig::Director::swig_pyobj_disown3436,98300 - PyThread_type_lock Director::swig_mutex_own = PyThread_allocate_lock();swig_mutex_own3447,98653 - PyThread_type_lock Director::swig_mutex_own = PyThread_allocate_lock();Swig::Director::swig_mutex_own3447,98653 -#define SWIGTYPE_p_CELL SWIGTYPE_p_CELL3455,98790 -#define SWIGTYPE_p_CPredicate SWIGTYPE_p_CPredicate3456,98828 -#define SWIGTYPE_p_Int SWIGTYPE_p_Int3457,98872 -#define SWIGTYPE_p_Prop SWIGTYPE_p_Prop3458,98909 -#define SWIGTYPE_p_Term SWIGTYPE_p_Term3459,98947 -#define SWIGTYPE_p_YAPApplTerm SWIGTYPE_p_YAPApplTerm3460,98985 -#define SWIGTYPE_p_YAPAtom SWIGTYPE_p_YAPAtom3461,99030 -#define SWIGTYPE_p_YAPAtomTerm SWIGTYPE_p_YAPAtomTerm3462,99071 -#define SWIGTYPE_p_YAPCallback SWIGTYPE_p_YAPCallback3463,99116 -#define SWIGTYPE_p_YAPEngine SWIGTYPE_p_YAPEngine3464,99161 -#define SWIGTYPE_p_YAPError SWIGTYPE_p_YAPError3465,99204 -#define SWIGTYPE_p_YAPFLIP SWIGTYPE_p_YAPFLIP3466,99247 -#define SWIGTYPE_p_YAPFloatTerm SWIGTYPE_p_YAPFloatTerm3467,99289 -#define SWIGTYPE_p_YAPFunctor SWIGTYPE_p_YAPFunctor3468,99336 -#define SWIGTYPE_p_YAPIntegerTerm SWIGTYPE_p_YAPIntegerTerm3469,99381 -#define SWIGTYPE_p_YAPListTerm SWIGTYPE_p_YAPListTerm3470,99430 -#define SWIGTYPE_p_YAPModule SWIGTYPE_p_YAPModule3471,99476 -#define SWIGTYPE_p_YAPModuleProp SWIGTYPE_p_YAPModuleProp3472,99520 -#define SWIGTYPE_p_YAPNumberTerm SWIGTYPE_p_YAPNumberTerm3473,99568 -#define SWIGTYPE_p_YAPPairTerm SWIGTYPE_p_YAPPairTerm3474,99616 -#define SWIGTYPE_p_YAPPredicate SWIGTYPE_p_YAPPredicate3475,99662 -#define SWIGTYPE_p_YAPPrologPredicate SWIGTYPE_p_YAPPrologPredicate3476,99709 -#define SWIGTYPE_p_YAPProp SWIGTYPE_p_YAPProp3477,99762 -#define SWIGTYPE_p_YAPQuery SWIGTYPE_p_YAPQuery3478,99804 -#define SWIGTYPE_p_YAPStringTerm SWIGTYPE_p_YAPStringTerm3479,99847 -#define SWIGTYPE_p_YAPTerm SWIGTYPE_p_YAPTerm3480,99895 -#define SWIGTYPE_p_YAPVarTerm SWIGTYPE_p_YAPVarTerm3481,99937 -#define SWIGTYPE_p_YAP_Term SWIGTYPE_p_YAP_Term3482,99982 -#define SWIGTYPE_p_YAP_tag_t SWIGTYPE_p_YAP_tag_t3483,100025 -#define SWIGTYPE_p_char SWIGTYPE_p_char3484,100069 -#define SWIGTYPE_p_int SWIGTYPE_p_int3485,100108 -#define SWIGTYPE_p_long_long SWIGTYPE_p_long_long3486,100146 -#define SWIGTYPE_p_p_char SWIGTYPE_p_p_char3487,100190 -#define SWIGTYPE_p_short SWIGTYPE_p_short3488,100231 -#define SWIGTYPE_p_signed_char SWIGTYPE_p_signed_char3489,100271 -#define SWIGTYPE_p_unsigned_char SWIGTYPE_p_unsigned_char3490,100317 -#define SWIGTYPE_p_unsigned_int SWIGTYPE_p_unsigned_int3491,100365 -#define SWIGTYPE_p_unsigned_long_long SWIGTYPE_p_unsigned_long_long3492,100412 -#define SWIGTYPE_p_unsigned_short SWIGTYPE_p_unsigned_short3493,100465 -#define SWIGTYPE_p_void SWIGTYPE_p_void3494,100514 -#define SWIGTYPE_p_wchar_t SWIGTYPE_p_wchar_t3495,100553 -#define SWIGTYPE_p_yap_error_class_number SWIGTYPE_p_yap_error_class_number3496,100595 -#define SWIGTYPE_p_yap_error_number SWIGTYPE_p_yap_error_number3497,100652 -#define SWIGTYPE_p_yhandle_t SWIGTYPE_p_yhandle_t3498,100703 -static swig_type_info *swig_types[45];swig_types3499,100747 -static swig_module_info swig_module = {swig_types, 44, 0, 0, 0, 0};swig_module3500,100786 -#define SWIG_TypeQuery(SWIG_TypeQuery3501,100854 -#define SWIG_MangledTypeQuery(SWIG_MangledTypeQuery3502,100938 -# undef SWIG_TypeQuerySWIG_TypeQuery3521,101629 -#define SWIG_TypeQuery SWIG_TypeQuery3523,101659 -# define SWIG_init SWIG_init3529,101875 -# define SWIG_init SWIG_init3532,101917 -#define SWIG_name SWIG_name3535,101957 -#define SWIGVERSION SWIGVERSION3537,101986 -#define SWIG_VERSION SWIG_VERSION3538,102016 -#define SWIG_as_voidptr(SWIG_as_voidptr3541,102051 -#define SWIG_as_voidptrptr(SWIG_as_voidptrptr3542,102132 -namespace swig {swig3548,102246 - class SwigPtr_PyObject {SwigPtr_PyObject3549,102263 - class SwigPtr_PyObject {swig::SwigPtr_PyObject3549,102263 - PyObject *_obj;_obj3551,102303 - PyObject *_obj;swig::SwigPtr_PyObject::_obj3551,102303 - SwigPtr_PyObject() :_obj(0)SwigPtr_PyObject3554,102334 - SwigPtr_PyObject() :_obj(0)swig::SwigPtr_PyObject::SwigPtr_PyObject3554,102334 - SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj)SwigPtr_PyObject3558,102379 - SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj)swig::SwigPtr_PyObject::SwigPtr_PyObject3558,102379 - SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj)SwigPtr_PyObject3565,102569 - SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj)swig::SwigPtr_PyObject::SwigPtr_PyObject3565,102569 - SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) operator =3574,102795 - SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) swig::SwigPtr_PyObject::operator =3574,102795 - ~SwigPtr_PyObject() ~SwigPtr_PyObject3584,103053 - ~SwigPtr_PyObject() swig::SwigPtr_PyObject::~SwigPtr_PyObject3584,103053 - operator PyObject *() constoperator PyObject *3591,103193 - operator PyObject *() constswig::SwigPtr_PyObject::operator PyObject *3591,103193 - PyObject *operator->() constoperator ->3596,103257 - PyObject *operator->() constswig::SwigPtr_PyObject::operator ->3596,103257 -namespace swig {swig3604,103330 - struct SwigVar_PyObject : SwigPtr_PyObject {SwigVar_PyObject3605,103347 - struct SwigVar_PyObject : SwigPtr_PyObject {swig::SwigVar_PyObject3605,103347 - SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { }SwigVar_PyObject3606,103394 - SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { }swig::SwigVar_PyObject::SwigVar_PyObject3606,103394 - SwigVar_PyObject & operator = (PyObject* obj)operator =3608,103474 - SwigVar_PyObject & operator = (PyObject* obj)swig::SwigVar_PyObject::operator =3608,103474 - extern inline PyObject *AtomToPy(const char *s) {AtomToPy3639,104025 -#define Yap_regp Yap_regp3666,104688 - SWIG_From_int (int value)SWIG_From_int3677,104898 -SWIG_pchar_descriptor(void)SWIG_pchar_descriptor3684,104999 -SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc)SWIG_AsCharPtrAndSize3697,105192 -SWIG_AsVal_double (PyObject *obj, double *val)SWIG_AsVal_double3813,108296 -SWIG_CanCastAsInteger(double *d, double min, double max) {SWIG_CanCastAsInteger3865,109306 -SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) SWIG_AsVal_unsigned_SS_long3895,109913 -# define LLONG_MAX LLONG_MAX3945,111067 -# define LLONG_MIN LLONG_MIN3946,111106 -# define ULLONG_MAX ULLONG_MAX3947,111146 -# define SWIG_LONG_LONG_AVAILABLESWIG_LONG_LONG_AVAILABLE3953,111272 -SWIG_AsVal_unsigned_SS_long_SS_long (PyObject *obj, unsigned long long *val)SWIG_AsVal_unsigned_SS_long_SS_long3959,111363 -SWIG_AsVal_size_t (PyObject * obj, size_t *val)SWIG_AsVal_size_t3999,112333 -SWIG_FromCharPtrAndSize(const char* carray, size_t size)SWIG_FromCharPtrAndSize4020,112950 -SWIG_FromCharPtr(const char *cptr)SWIG_FromCharPtr4049,113829 -SWIG_AsVal_long (PyObject *obj, long* val)SWIG_AsVal_long4056,113953 -SWIG_AsVal_int (PyObject * obj, int *val)SWIG_AsVal_int4099,114843 -SWIG_AsVal_bool (PyObject *obj, bool *val)SWIG_AsVal_bool4115,115136 - SWIG_From_bool (bool value)SWIG_From_bool4129,115390 -SWIG_AsVal_unsigned_SS_int (PyObject * obj, unsigned int *val)SWIG_AsVal_unsigned_SS_int4136,115483 - SWIG_From_unsigned_SS_int (unsigned int value)SWIG_From_unsigned_SS_int4152,115825 - #define SWIG_From_double SWIG_From_double4158,115924 - #define SWIG_From_long SWIG_From_long4161,115975 -SWIG_From_unsigned_SS_long (unsigned long value)SWIG_From_unsigned_SS_long4165,116048 -SWIG_From_unsigned_SS_long_SS_long (unsigned long long value)SWIG_From_unsigned_SS_long_SS_long4174,116275 -SWIG_From_size_t (size_t value)SWIG_From_size_t4183,116494 -SwigDirector_YAPCallback::SwigDirector_YAPCallback(PyObject *self): YAPCallback(), Swig::Director(self) {SwigDirector_YAPCallback4205,117084 -SwigDirector_YAPCallback::SwigDirector_YAPCallback(PyObject *self): YAPCallback(), Swig::Director(self) {SwigDirector_YAPCallback::SwigDirector_YAPCallback4205,117084 -SwigDirector_YAPCallback::~SwigDirector_YAPCallback() {~SwigDirector_YAPCallback4212,117246 -SwigDirector_YAPCallback::~SwigDirector_YAPCallback() {SwigDirector_YAPCallback::~SwigDirector_YAPCallback4212,117246 -void SwigDirector_YAPCallback::run() {run4215,117305 -void SwigDirector_YAPCallback::run() {SwigDirector_YAPCallback::run4215,117305 -void SwigDirector_YAPCallback::run(char *s) {run4238,118207 -void SwigDirector_YAPCallback::run(char *s) {SwigDirector_YAPCallback::run4238,118207 -SWIGINTERN PyObject *_wrap_new_YAPAtom__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs4265,119214 -SWIGINTERN PyObject *_wrap_new_YAPAtom__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs4289,120060 -SWIGINTERN PyObject *_wrap_new_YAPAtom__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs4310,120829 -SWIGINTERN PyObject *_wrap_new_YAPAtom(PyObject *self, PyObject *args) {_wrap_new_YAPAtom4342,121972 -SWIGINTERN PyObject *_wrap_new_YAPTerm__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs4772,135460 -SWIGINTERN PyObject *_wrap_new_YAPTerm__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {nobjs4789,135921 -SWIGINTERN PyObject *_wrap_new_YAPTerm__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {SWIGUNUSEDPARM4789,135921 -SWIGINTERN PyObject *_wrap_new_YAPTerm__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs4802,136334 -SWIGINTERN PyObject *_wrap_new_YAPTerm__SWIG_3(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs4821,136996 -SWIGINTERN PyObject *_wrap_new_YAPTerm(PyObject *self, PyObject *args) {_wrap_new_YAPTerm4845,137822 -SWIGINTERN PyObject *_wrap_YAPTerm_numberVars__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs4942,140492 -SWIGINTERN PyObject *_wrap_YAPTerm_numberVars__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs4979,141800 -SWIGINTERN PyObject *_wrap_YAPTerm_numberVars(PyObject *self, PyObject *args) {_wrap_YAPTerm_numberVars5008,142814 -SWIGINTERN PyObject *_wrap_YAPTerm_bind__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs5057,144193 -SWIGINTERN PyObject *_wrap_YAPTerm_bind__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs5081,144885 -SWIGINTERN PyObject *_wrap_YAPTerm_bind(PyObject *self, PyObject *args) {_wrap_YAPTerm_bind5109,145863 -SWIGINTERN PyObject *_wrap_new_YAPPairTerm__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs5912,172210 -SWIGINTERN PyObject *_wrap_new_YAPPairTerm__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {nobjs5957,173850 -SWIGINTERN PyObject *_wrap_new_YAPPairTerm__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {SWIGUNUSEDPARM5957,173850 -SWIGINTERN PyObject *_wrap_new_YAPPairTerm(PyObject *self, PyObject *args) {_wrap_new_YAPPairTerm5970,174283 -SWIGINTERN PyObject *_wrap_new_YAPListTerm__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {nobjs6304,185095 -SWIGINTERN PyObject *_wrap_new_YAPListTerm__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {SWIGUNUSEDPARM6304,185095 -SWIGINTERN PyObject *_wrap_new_YAPListTerm__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6317,185528 -SWIGINTERN PyObject *_wrap_new_YAPListTerm__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6334,186009 -SWIGINTERN PyObject *_wrap_new_YAPListTerm(PyObject *self, PyObject *args) {_wrap_new_YAPListTerm6363,187066 -SWIGINTERN PyObject *_wrap_new_YAPStringTerm__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6545,192569 -SWIGINTERN PyObject *_wrap_new_YAPStringTerm__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6569,193431 -SWIGINTERN PyObject *_wrap_new_YAPStringTerm__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6601,194596 -SWIGINTERN PyObject *_wrap_new_YAPStringTerm__SWIG_3(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6622,195378 -SWIGINTERN PyObject *_wrap_new_YAPStringTerm(PyObject *self, PyObject *args) {_wrap_new_YAPStringTerm6651,196463 -SWIGINTERN PyObject *_wrap_new_YAPAtomTerm__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6757,199727 -SWIGINTERN PyObject *_wrap_new_YAPAtomTerm__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6786,200775 -SWIGINTERN PyObject *_wrap_new_YAPAtomTerm__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6810,201613 -SWIGINTERN PyObject *_wrap_new_YAPAtomTerm__SWIG_3(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6842,202764 -SWIGINTERN PyObject *_wrap_new_YAPAtomTerm__SWIG_4(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs6863,203534 -SWIGINTERN PyObject *_wrap_new_YAPAtomTerm(PyObject *self, PyObject *args) {_wrap_new_YAPAtomTerm6892,204605 -SWIGINTERN PyObject *_wrap_new_YAPModule__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {nobjs7010,208184 -SWIGINTERN PyObject *_wrap_new_YAPModule__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {SWIGUNUSEDPARM7010,208184 -SWIGINTERN PyObject *_wrap_new_YAPModule__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7023,208607 -SWIGINTERN PyObject *_wrap_new_YAPModule(PyObject *self, PyObject *args) {_wrap_new_YAPModule7052,209641 -SWIGINTERN PyObject *_wrap_new_YAPModuleProp__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7109,211398 -SWIGINTERN PyObject *_wrap_new_YAPModuleProp__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {nobjs7138,212452 -SWIGINTERN PyObject *_wrap_new_YAPModuleProp__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {SWIGUNUSEDPARM7138,212452 -SWIGINTERN PyObject *_wrap_new_YAPModuleProp(PyObject *self, PyObject *args) {_wrap_new_YAPModuleProp7151,212895 -SWIGINTERN PyObject *_wrap_new_YAPFunctor__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7231,215546 -SWIGINTERN PyObject *_wrap_new_YAPFunctor__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7268,216911 -SWIGINTERN PyObject *_wrap_new_YAPFunctor__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7308,218389 -SWIGINTERN PyObject *_wrap_new_YAPFunctor__SWIG_3(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7340,219577 -SWIGINTERN PyObject *_wrap_new_YAPFunctor(PyObject *self, PyObject *args) {_wrap_new_YAPFunctor7369,220688 -SWIGINTERN PyObject *_wrap_new_YAPPredicate__SWIG_4(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7497,224692 -SWIGINTERN PyObject *_wrap_new_YAPPredicate__SWIG_5(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7526,225765 -SWIGINTERN PyObject *_wrap_new_YAPPredicate__SWIG_6(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7571,227452 -SWIGINTERN PyObject *_wrap_new_YAPPredicate__SWIG_7(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7616,229121 -SWIGINTERN PyObject *_wrap_new_YAPPredicate__SWIG_8(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7645,230176 -SWIGINTERN PyObject *_wrap_new_YAPPredicate__SWIG_9(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7698,232183 -SWIGINTERN PyObject *_wrap_new_YAPPredicate__SWIG_10(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7735,233564 -SWIGINTERN PyObject *_wrap_new_YAPPredicate__SWIG_11(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7767,234767 -SWIGINTERN PyObject *_wrap_new_YAPPredicate__SWIG_12(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs7815,236584 -SWIGINTERN PyObject *_wrap_new_YAPPredicate(PyObject *self, PyObject *args) {_wrap_new_YAPPredicate7855,238075 -SWIGINTERN PyObject *_wrap_new_YAPPrologPredicate__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8079,244851 -SWIGINTERN PyObject *_wrap_new_YAPPrologPredicate__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8108,245928 -SWIGINTERN PyObject *_wrap_new_YAPPrologPredicate(PyObject *self, PyObject *args) {_wrap_new_YAPPrologPredicate8140,247172 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_assertClause__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8164,247931 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_assertClause__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8225,250313 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_assertClause__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8270,252051 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_assertClause(PyObject *self, PyObject *args) {_wrap_YAPPrologPredicate_assertClause8307,253482 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_assertFact__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8335,254430 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_assertFact__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8372,255884 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_assertFact(PyObject *self, PyObject *args) {_wrap_YAPPrologPredicate_assertFact8401,257033 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_retractClause__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8425,257805 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_retractClause__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8470,259583 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_retractClause(PyObject *self, PyObject *args) {_wrap_YAPPrologPredicate_retractClause8507,261053 -SWIGINTERN PyObject *_wrap_new_YAPFLIP__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8587,263861 -SWIGINTERN PyObject *_wrap_new_YAPFLIP__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8704,268268 -SWIGINTERN PyObject *_wrap_new_YAPFLIP__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8813,272388 -SWIGINTERN PyObject *_wrap_new_YAPFLIP__SWIG_3(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8914,276211 -SWIGINTERN PyObject *_wrap_new_YAPFLIP__SWIG_4(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs8999,279412 -SWIGINTERN PyObject *_wrap_new_YAPFLIP__SWIG_5(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs9068,281991 -SWIGINTERN PyObject *_wrap_new_YAPFLIP__SWIG_6(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs9121,283954 -SWIGINTERN PyObject *_wrap_new_YAPFLIP__SWIG_7(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs9177,286024 -SWIGINTERN PyObject *_wrap_new_YAPFLIP__SWIG_8(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs9225,287807 -SWIGINTERN PyObject *_wrap_new_YAPFLIP(PyObject *self, PyObject *args) {_wrap_new_YAPFLIP9257,288974 -SWIGINTERN PyObject *_wrap_new_YAPQuery__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs9501,297013 -SWIGINTERN PyObject *_wrap_new_YAPQuery__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs9538,298407 -SWIGINTERN PyObject *_wrap_new_YAPQuery__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs9591,300395 -SWIGINTERN PyObject *_wrap_new_YAPQuery__SWIG_3(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs9615,301247 -SWIGINTERN PyObject *_wrap_new_YAPQuery(PyObject *self, PyObject *args) {_wrap_new_YAPQuery9644,302274 -SWIGINTERN PyObject *_wrap_YAPCallback_run__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs10153,318195 -SWIGINTERN PyObject *_wrap_YAPCallback_run__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs10185,319150 -SWIGINTERN PyObject *_wrap_YAPCallback_run(PyObject *self, PyObject *args) {_wrap_YAPCallback_run10228,320542 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_0(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs10312,323010 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_1(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs10444,328060 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_2(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs10568,332726 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_3(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs10684,337091 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_4(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs10792,341155 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_5(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs10892,344917 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_6(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs10981,348247 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_7(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs11059,351145 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_8(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs11126,353611 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_9(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs11185,355778 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_10(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs11236,357646 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_11(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs11279,359216 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_12(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs11314,360487 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_13(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {nobjs11338,361326 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_13(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **SWIGUNUSEDPARM(swig_obj)) {SWIGUNUSEDPARM11338,361326 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_14(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs11351,361750 -SWIGINTERN PyObject *_wrap_new_YAPEngine__SWIG_15(PyObject *SWIGUNUSEDPARM(self), int nobjs, PyObject **swig_obj) {nobjs11388,363144 -SWIGINTERN PyObject *_wrap_new_YAPEngine(PyObject *self, PyObject *args) {_wrap_new_YAPEngine11417,364166 -static PyMethodDef SwigMethods[] = {SwigMethods12048,385070 -static void *_p_YAPApplTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPApplTermTo_p_YAPTerm12237,400310 -static void *_p_YAPVarTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPVarTermTo_p_YAPTerm12240,400450 -static void *_p_YAPIntegerTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPIntegerTermTo_p_YAPTerm12243,400588 -static void *_p_YAPFloatTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFloatTermTo_p_YAPTerm12246,400751 -static void *_p_YAPPairTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPairTermTo_p_YAPTerm12249,400910 -static void *_p_YAPNumberTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPNumberTermTo_p_YAPTerm12252,401050 -static void *_p_YAPListTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPListTermTo_p_YAPTerm12255,401194 -static void *_p_YAPAtomTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPAtomTermTo_p_YAPTerm12258,401334 -static void *_p_YAPStringTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPStringTermTo_p_YAPTerm12261,401474 -static void *_p_YAPFLIPTo_p_YAPModuleProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFLIPTo_p_YAPModuleProp12264,401618 -static void *_p_YAPQueryTo_p_YAPModuleProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPQueryTo_p_YAPModuleProp12267,401778 -static void *_p_YAPPredicateTo_p_YAPModuleProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPredicateTo_p_YAPModuleProp12270,401940 -static void *_p_YAPPrologPredicateTo_p_YAPModuleProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPrologPredicateTo_p_YAPModuleProp12273,402094 -static void *_p_YAPModuleTo_p_YAPAtomTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPModuleTo_p_YAPAtomTerm12276,402276 -static void *_p_YAPIntegerTermTo_p_YAPNumberTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPIntegerTermTo_p_YAPNumberTerm12279,402420 -static void *_p_YAPFloatTermTo_p_YAPNumberTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFloatTermTo_p_YAPNumberTerm12282,402578 -static void *_p_YAPFLIPTo_p_YAPPredicate(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFLIPTo_p_YAPPredicate12285,402732 -static void *_p_YAPQueryTo_p_YAPPredicate(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPQueryTo_p_YAPPredicate12288,402874 -static void *_p_YAPPrologPredicateTo_p_YAPPredicate(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPrologPredicateTo_p_YAPPredicate12291,403018 -static void *_p_YAPFunctorTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFunctorTo_p_YAPProp12294,403182 -static void *_p_YAPFLIPTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFLIPTo_p_YAPProp12297,403320 -static void *_p_YAPQueryTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPQueryTo_p_YAPProp12300,403485 -static void *_p_YAPModulePropTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPModulePropTo_p_YAPProp12303,403652 -static void *_p_YAPPredicateTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPredicateTo_p_YAPProp12306,403796 -static void *_p_YAPPrologPredicateTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPrologPredicateTo_p_YAPProp12309,403955 -static swig_type_info _swigt__p_CELL = {"_p_CELL", "CELL *", 0, 0, (void*)0, 0};_swigt__p_CELL12312,404142 -static swig_type_info _swigt__p_CPredicate = {"_p_CPredicate", "CPredicate *", 0, 0, (void*)0, 0};_swigt__p_CPredicate12313,404223 -static swig_type_info _swigt__p_Int = {"_p_Int", "Int *", 0, 0, (void*)0, 0};_swigt__p_Int12314,404322 -static swig_type_info _swigt__p_Prop = {"_p_Prop", "Prop *", 0, 0, (void*)0, 0};_swigt__p_Prop12315,404400 -static swig_type_info _swigt__p_Term = {"_p_Term", "Term *", 0, 0, (void*)0, 0};_swigt__p_Term12316,404481 -static swig_type_info _swigt__p_YAPApplTerm = {"_p_YAPApplTerm", "YAPApplTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPApplTerm12317,404562 -static swig_type_info _swigt__p_YAPAtom = {"_p_YAPAtom", "YAPAtom *", 0, 0, (void*)0, 0};_swigt__p_YAPAtom12318,404664 -static swig_type_info _swigt__p_YAPAtomTerm = {"_p_YAPAtomTerm", "YAPAtomTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPAtomTerm12319,404754 -static swig_type_info _swigt__p_YAPCallback = {"_p_YAPCallback", "YAPCallback *", 0, 0, (void*)0, 0};_swigt__p_YAPCallback12320,404856 -static swig_type_info _swigt__p_YAPEngine = {"_p_YAPEngine", "YAPEngine *", 0, 0, (void*)0, 0};_swigt__p_YAPEngine12321,404958 -static swig_type_info _swigt__p_YAPError = {"_p_YAPError", "YAPError *", 0, 0, (void*)0, 0};_swigt__p_YAPError12322,405054 -static swig_type_info _swigt__p_YAPFLIP = {"_p_YAPFLIP", "YAPFLIP *", 0, 0, (void*)0, 0};_swigt__p_YAPFLIP12323,405147 -static swig_type_info _swigt__p_YAPFloatTerm = {"_p_YAPFloatTerm", "YAPFloatTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPFloatTerm12324,405237 -static swig_type_info _swigt__p_YAPFunctor = {"_p_YAPFunctor", "YAPFunctor *", 0, 0, (void*)0, 0};_swigt__p_YAPFunctor12325,405342 -static swig_type_info _swigt__p_YAPIntegerTerm = {"_p_YAPIntegerTerm", "YAPIntegerTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPIntegerTerm12326,405441 -static swig_type_info _swigt__p_YAPListTerm = {"_p_YAPListTerm", "YAPListTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPListTerm12327,405552 -static swig_type_info _swigt__p_YAPModule = {"_p_YAPModule", "YAPModule *", 0, 0, (void*)0, 0};_swigt__p_YAPModule12328,405654 -static swig_type_info _swigt__p_YAPModuleProp = {"_p_YAPModuleProp", "YAPModuleProp *", 0, 0, (void*)0, 0};_swigt__p_YAPModuleProp12329,405750 -static swig_type_info _swigt__p_YAPNumberTerm = {"_p_YAPNumberTerm", "YAPNumberTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPNumberTerm12330,405858 -static swig_type_info _swigt__p_YAPPairTerm = {"_p_YAPPairTerm", "YAPPairTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPPairTerm12331,405966 -static swig_type_info _swigt__p_YAPPredicate = {"_p_YAPPredicate", "YAPPredicate *", 0, 0, (void*)0, 0};_swigt__p_YAPPredicate12332,406068 -static swig_type_info _swigt__p_YAPPrologPredicate = {"_p_YAPPrologPredicate", "YAPPrologPredicate *", 0, 0, (void*)0, 0};_swigt__p_YAPPrologPredicate12333,406173 -static swig_type_info _swigt__p_YAPProp = {"_p_YAPProp", "YAPProp *", 0, 0, (void*)0, 0};_swigt__p_YAPProp12334,406296 -static swig_type_info _swigt__p_YAPQuery = {"_p_YAPQuery", "YAPQuery *", 0, 0, (void*)0, 0};_swigt__p_YAPQuery12335,406386 -static swig_type_info _swigt__p_YAPStringTerm = {"_p_YAPStringTerm", "YAPStringTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPStringTerm12336,406479 -static swig_type_info _swigt__p_YAPTerm = {"_p_YAPTerm", "YAPTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPTerm12337,406587 -static swig_type_info _swigt__p_YAPVarTerm = {"_p_YAPVarTerm", "YAPVarTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPVarTerm12338,406677 -static swig_type_info _swigt__p_YAP_Term = {"_p_YAP_Term", "YAP_Term *", 0, 0, (void*)0, 0};_swigt__p_YAP_Term12339,406776 -static swig_type_info _swigt__p_YAP_tag_t = {"_p_YAP_tag_t", "YAP_tag_t *", 0, 0, (void*)0, 0};_swigt__p_YAP_tag_t12340,406869 -static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};_swigt__p_char12341,406965 -static swig_type_info _swigt__p_int = {"_p_int", "intptr_t *|int *|int_least32_t *|int_fast32_t *|int32_t *|int_fast16_t *", 0, 0, (void*)0, 0};_swigt__p_int12342,407046 -static swig_type_info _swigt__p_long_long = {"_p_long_long", "int_least64_t *|int_fast64_t *|int64_t *|long long *|intmax_t *", 0, 0, (void*)0, 0};_swigt__p_long_long12343,407191 -static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0};_swigt__p_p_char12344,407339 -static swig_type_info _swigt__p_short = {"_p_short", "short *|int_least16_t *|int16_t *", 0, 0, (void*)0, 0};_swigt__p_short12345,407425 -static swig_type_info _swigt__p_signed_char = {"_p_signed_char", "signed char *|int_least8_t *|int_fast8_t *|int8_t *", 0, 0, (void*)0, 0};_swigt__p_signed_char12346,407535 -static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "unsigned char *|uint_least8_t *|uint_fast8_t *|uint8_t *", 0, 0, (void*)0, 0};_swigt__p_unsigned_char12347,407675 -static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "uintptr_t *|uint_least32_t *|uint_fast32_t *|uint32_t *|unsigned int *|uint_fast16_t *", 0, 0, (void*)0, 0};_swigt__p_unsigned_int12348,407824 -static swig_type_info _swigt__p_unsigned_long_long = {"_p_unsigned_long_long", "uint_least64_t *|uint_fast64_t *|uint64_t *|unsigned long long *|uintmax_t *", 0, 0, (void*)0, 0};_swigt__p_unsigned_long_long12349,408001 -static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|uint_least16_t *|uint16_t *", 0, 0, (void*)0, 0};_swigt__p_unsigned_short12350,408180 -static swig_type_info _swigt__p_void = {"_p_void", "void *", 0, 0, (void*)0, 0};_swigt__p_void12351,408319 -static swig_type_info _swigt__p_wchar_t = {"_p_wchar_t", "wchar_t *", 0, 0, (void*)0, 0};_swigt__p_wchar_t12352,408400 -static swig_type_info _swigt__p_yap_error_class_number = {"_p_yap_error_class_number", "yap_error_class_number *", 0, 0, (void*)0, 0};_swigt__p_yap_error_class_number12353,408490 -static swig_type_info _swigt__p_yap_error_number = {"_p_yap_error_number", "yap_error_number *", 0, 0, (void*)0, 0};_swigt__p_yap_error_number12354,408625 -static swig_type_info _swigt__p_yhandle_t = {"_p_yhandle_t", "yhandle_t *", 0, 0, (void*)0, 0};_swigt__p_yhandle_t12355,408742 -static swig_type_info *swig_type_initial[] = {swig_type_initial12357,408839 -static swig_cast_info _swigc__p_CELL[] = { {&_swigt__p_CELL, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_CELL12404,409977 -static swig_cast_info _swigc__p_CPredicate[] = { {&_swigt__p_CPredicate, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_CPredicate12405,410063 -static swig_cast_info _swigc__p_Int[] = { {&_swigt__p_Int, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_Int12406,410161 -static swig_cast_info _swigc__p_Prop[] = { {&_swigt__p_Prop, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_Prop12407,410245 -static swig_cast_info _swigc__p_Term[] = { {&_swigt__p_Term, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_Term12408,410331 -static swig_cast_info _swigc__p_YAPApplTerm[] = { {&_swigt__p_YAPApplTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPApplTerm12409,410417 -static swig_cast_info _swigc__p_YAPAtom[] = { {&_swigt__p_YAPAtom, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPAtom12410,410517 -static swig_cast_info _swigc__p_YAPAtomTerm[] = { {&_swigt__p_YAPModule, _p_YAPModuleTo_p_YAPAtomTerm, 0, 0}, {&_swigt__p_YAPAtomTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPAtomTerm12411,410609 -static swig_cast_info _swigc__p_YAPCallback[] = { {&_swigt__p_YAPCallback, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPCallback12412,410770 -static swig_cast_info _swigc__p_YAPEngine[] = { {&_swigt__p_YAPEngine, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPEngine12413,410870 -static swig_cast_info _swigc__p_YAPError[] = { {&_swigt__p_YAPError, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPError12414,410966 -static swig_cast_info _swigc__p_YAPFLIP[] = { {&_swigt__p_YAPFLIP, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPFLIP12415,411060 -static swig_cast_info _swigc__p_YAPFloatTerm[] = { {&_swigt__p_YAPFloatTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPFloatTerm12416,411152 -static swig_cast_info _swigc__p_YAPFunctor[] = { {&_swigt__p_YAPFunctor, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPFunctor12417,411254 -static swig_cast_info _swigc__p_YAPIntegerTerm[] = { {&_swigt__p_YAPIntegerTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPIntegerTerm12418,411352 -static swig_cast_info _swigc__p_YAPListTerm[] = { {&_swigt__p_YAPListTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPListTerm12419,411458 -static swig_cast_info _swigc__p_YAPModule[] = { {&_swigt__p_YAPModule, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPModule12420,411558 -static swig_cast_info _swigc__p_YAPModuleProp[] = { {&_swigt__p_YAPFLIP, _p_YAPFLIPTo_p_YAPModuleProp, 0, 0}, {&_swigt__p_YAPQuery, _p_YAPQueryTo_p_YAPModuleProp, 0, 0}, {&_swigt__p_YAPModuleProp, 0, 0, 0}, {&_swigt__p_YAPPredicate, _p_YAPPredicateTo_p_YAPModuleProp, 0, 0}, {&_swigt__p_YAPPrologPredicate, _p_YAPPrologPredicateTo_p_YAPModuleProp, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPModuleProp12421,411654 -static swig_cast_info _swigc__p_YAPNumberTerm[] = { {&_swigt__p_YAPIntegerTerm, _p_YAPIntegerTermTo_p_YAPNumberTerm, 0, 0}, {&_swigt__p_YAPFloatTerm, _p_YAPFloatTermTo_p_YAPNumberTerm, 0, 0}, {&_swigt__p_YAPNumberTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPNumberTerm12422,412028 -static swig_cast_info _swigc__p_YAPPairTerm[] = { {&_swigt__p_YAPPairTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPPairTerm12423,412274 -static swig_cast_info _swigc__p_YAPPredicate[] = { {&_swigt__p_YAPFLIP, _p_YAPFLIPTo_p_YAPPredicate, 0, 0}, {&_swigt__p_YAPQuery, _p_YAPQueryTo_p_YAPPredicate, 0, 0}, {&_swigt__p_YAPPredicate, 0, 0, 0}, {&_swigt__p_YAPPrologPredicate, _p_YAPPrologPredicateTo_p_YAPPredicate, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPPredicate12424,412374 -static swig_cast_info _swigc__p_YAPPrologPredicate[] = { {&_swigt__p_YAPPrologPredicate, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPPrologPredicate12425,412674 -static swig_cast_info _swigc__p_YAPProp[] = { {&_swigt__p_YAPFunctor, _p_YAPFunctorTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPFLIP, _p_YAPFLIPTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPQuery, _p_YAPQueryTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPProp, 0, 0, 0}, {&_swigt__p_YAPModuleProp, _p_YAPModulePropTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPPredicate, _p_YAPPredicateTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPPrologPredicate, _p_YAPPrologPredicateTo_p_YAPProp, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPProp12426,412788 -static swig_cast_info _swigc__p_YAPQuery[] = { {&_swigt__p_YAPQuery, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPQuery12427,413250 -static swig_cast_info _swigc__p_YAPStringTerm[] = { {&_swigt__p_YAPStringTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPStringTerm12428,413344 -static swig_cast_info _swigc__p_YAPTerm[] = { {&_swigt__p_YAPApplTerm, _p_YAPApplTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPModule, 0, 0, 0}, {&_swigt__p_YAPVarTerm, _p_YAPVarTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPIntegerTerm, _p_YAPIntegerTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPFloatTerm, _p_YAPFloatTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPPairTerm, _p_YAPPairTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPNumberTerm, _p_YAPNumberTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPListTerm, _p_YAPListTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPAtomTerm, _p_YAPAtomTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPStringTerm, _p_YAPStringTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPTerm12429,413448 -static swig_cast_info _swigc__p_YAPVarTerm[] = { {&_swigt__p_YAPVarTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPVarTerm12430,414137 -static swig_cast_info _swigc__p_YAP_Term[] = { {&_swigt__p_YAP_Term, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAP_Term12431,414235 -static swig_cast_info _swigc__p_YAP_tag_t[] = { {&_swigt__p_YAP_tag_t, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAP_tag_t12432,414329 -static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_char12433,414425 -static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_int12434,414511 -static swig_cast_info _swigc__p_long_long[] = { {&_swigt__p_long_long, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_long_long12435,414595 -static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_p_char12436,414691 -static swig_cast_info _swigc__p_short[] = { {&_swigt__p_short, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_short12437,414781 -static swig_cast_info _swigc__p_signed_char[] = { {&_swigt__p_signed_char, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_signed_char12438,414869 -static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_unsigned_char12439,414969 -static swig_cast_info _swigc__p_unsigned_int[] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_unsigned_int12440,415073 -static swig_cast_info _swigc__p_unsigned_long_long[] = { {&_swigt__p_unsigned_long_long, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_unsigned_long_long12441,415175 -static swig_cast_info _swigc__p_unsigned_short[] = { {&_swigt__p_unsigned_short, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_unsigned_short12442,415289 -static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_void12443,415395 -static swig_cast_info _swigc__p_wchar_t[] = { {&_swigt__p_wchar_t, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_wchar_t12444,415481 -static swig_cast_info _swigc__p_yap_error_class_number[] = { {&_swigt__p_yap_error_class_number, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_yap_error_class_number12445,415573 -static swig_cast_info _swigc__p_yap_error_number[] = { {&_swigt__p_yap_error_number, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_yap_error_number12446,415695 -static swig_cast_info _swigc__p_yhandle_t[] = { {&_swigt__p_yhandle_t, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_yhandle_t12447,415805 -static swig_cast_info *swig_cast_initial[] = {swig_cast_initial12449,415902 -static swig_const_info swig_const_table[] = {swig_const_table12499,417066 -SWIG_InitializeModule(void *clientdata) {SWIG_InitializeModule12559,419864 -SWIG_PropagateClientData(void) {SWIG_PropagateClientData12706,424695 -#define SWIG_newvarlink(SWIG_newvarlink12743,425351 -#define SWIG_addvarlink(SWIG_addvarlink12744,425430 -#define SWIG_InstallConstants(SWIG_InstallConstants12745,425536 - typedef struct swig_globalvar {swig_globalvar12751,425843 - char *name; /* Name of global variable */name12752,425877 - char *name; /* Name of global variable */swig_globalvar::name12752,425877 - PyObject *(*get_attr)(void); /* Return the current value */get_attr12753,425946 - PyObject *(*get_attr)(void); /* Return the current value */swig_globalvar::get_attr12753,425946 - int (*set_attr)(PyObject *); /* Set the value */set_attr12754,426016 - int (*set_attr)(PyObject *); /* Set the value */swig_globalvar::set_attr12754,426016 - struct swig_globalvar *next;next12755,426075 - struct swig_globalvar *next;swig_globalvar::next12755,426075 - } swig_globalvar;swig_globalvar12756,426108 - typedef struct swig_varlinkobject {swig_varlinkobject12758,426131 - swig_globalvar *vars;vars12760,426187 - swig_globalvar *vars;swig_varlinkobject::vars12760,426187 - } swig_varlinkobject;swig_varlinkobject12761,426213 - swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) {SWIGUNUSEDPARM12764,426264 - swig_varlink_str(swig_varlinkobject *v) {swig_varlink_str12773,426527 - swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) {swig_varlink_print12811,427649 - swig_varlink_dealloc(swig_varlinkobject *v) {swig_varlink_dealloc12822,427984 - swig_varlink_getattr(swig_varlinkobject *v, char *n) {swig_varlink_getattr12833,428214 - swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) {swig_varlink_setattr12850,428643 - swig_varlink_type(void) {swig_varlink_type12867,429084 - SWIG_Python_newvarlink(void) {SWIG_Python_newvarlink12939,432046 - SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) {SWIG_Python_addvarlink12948,432274 - SWIG_globals(void) {SWIG_globals12965,432820 - SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) {SWIG_Python_InstallConstants12977,433230 - SWIG_Python_FixMethods(PyMethodDef *methods,SWIG_Python_FixMethods13004,434117 -SWIG_init(void) {SWIG_init13065,435827 - -CodeBlocks/packages/swig/python/yapPYTHON_wrap.h,1176 -#define SWIG_yap_WRAP_H_SWIG_yap_WRAP_H_12,544 -class SwigDirector_YAPCallback : public YAPCallback, public Swig::Director {SwigDirector_YAPCallback18,605 - bool swig_get_inner(const char *swig_protected_method_name) const {swig_get_inner28,876 - bool swig_get_inner(const char *swig_protected_method_name) const {SwigDirector_YAPCallback::swig_get_inner28,876 - void swig_set_inner(const char *swig_protected_method_name, bool swig_val) const {swig_set_inner32,1114 - void swig_set_inner(const char *swig_protected_method_name, bool swig_val) const {SwigDirector_YAPCallback::swig_set_inner32,1114 - mutable std::map swig_inner;swig_inner36,1273 - mutable std::map swig_inner;SwigDirector_YAPCallback::swig_inner36,1273 - PyObject *swig_get_method(size_t method_index, const char *method_name) const {swig_get_method40,1395 - PyObject *swig_get_method(size_t method_index, const char *method_name) const {SwigDirector_YAPCallback::swig_get_method40,1395 - mutable swig::SwigVar_PyObject vtable[2];vtable55,1974 - mutable swig::SwigVar_PyObject vtable[2];SwigDirector_YAPCallback::vtable55,1974 - -CodeBlocks/yap,0 - -CodeBlocks/YapConfig.h,12991 - #define CONFIG_HCONFIG_H8,340 - #define SYSTEM_OPTIONS SYSTEM_OPTIONS11,424 -#define DEPTH_LIMIT DEPTH_LIMIT20,740 -#define USE_THREADED_CODE USE_THREADED_CODE25,856 -#define TABLING TABLING30,959 -#define LOW_LEVEL_TRACER LOW_LEVEL_TRACER35,1069 -#define ALIGN_LONGS ALIGN_LONGS50,1399 -#define BITNESS BITNESS55,1474 -#define CELLSIZE CELLSIZE65,1662 -#define C_CC C_CC70,1724 -#define C_CFLAGS C_CFLAGS75,1809 -#define C_LDFLAGS C_LDFLAGS80,1878 -#define C_LIBPLSO C_LIBPLSO85,1959 -#define C_LIBS C_LIBS90,2029 -#define FFIEEE FFIEEE95,2142 -#define GC_NO_TAGS GC_NO_TAGS107,2411 -#define HAVE_ACCESS HAVE_ACCESS117,2616 -#define HAVE_ADD_HISTORY HAVE_ADD_HISTORY127,2832 -#define HAVE_ALLOCA_H HAVE_ALLOCA_H142,3156 -#define HAVE_ARPA_INET_H HAVE_ARPA_INET_H231,6051 -#define HAVE_BASENAME HAVE_BASENAME246,6369 -#define HAVE_BACKTRACE HAVE_BACKTRACE251,6479 -#define HAVE_CHDIR HAVE_CHDIR256,6583 -#define HAVE_CLOCK HAVE_CLOCK261,6683 -#define HAVE_CLOCK_GETTIME HAVE_CLOCK_GETTIME266,6799 -#define HAVE_CTIME HAVE_CTIME281,7152 -#define HAVE_CTYPE_H HAVE_CTYPE_H286,7259 -#define HAVE_DIRENT_H HAVE_DIRENT_H296,7485 -#define HAVE_DLFCN_H HAVE_DLFCN_H301,7595 -#define HAVE_DLOPEN HAVE_DLOPEN306,7699 -#define HAVE_DUP2 HAVE_DUP2311,7798 -#define HAVE_ENVIRON HAVE_ENVIRON321,7974 -#define HAVE_ERRNO_H HAVE_ERRNO_H331,8180 -#define HAVE_EXECINFO_H HAVE_EXECINFO_H336,8295 -#define HAVE_FCNTL_H HAVE_FCNTL_H341,8407 -#define HAVE_FENV_H HAVE_FENV_H356,8771 -#define HAVE_FGETPOS HAVE_FGETPOS391,9587 -#define HAVE_FINITE HAVE_FINITE396,9691 -#define HAVE_FMEMOPEN HAVE_FMEMOPEN416,10113 -#define HAVE_FPU_CONTROL_H HAVE_FPU_CONTROL_H426,10344 -#define HAVE_FTIME HAVE_FTIME431,10452 -#define HAVE_FTRUNCATE HAVE_FTRUNCATE436,10560 -#define HAVE_GCC HAVE_GCC446,10777 -#define HAVE_GETCWD HAVE_GETCWD451,10877 -#define HAVE_GETENV HAVE_GETENV456,10980 -#define HAVE_GETHOSTBYNAME HAVE_GETHOSTBYNAME466,11218 -#define HAVE_GETHOSTENT HAVE_GETHOSTENT471,11336 -#define HAVE_GETHOSTID HAVE_GETHOSTID476,11449 -#define HAVE_GETHOSTNAME HAVE_GETHOSTNAME481,11565 -#define HAVE_GETPAGESIZE HAVE_GETPAGESIZE491,11798 -#define HAVE_GETPID HAVE_GETPID496,11906 -#define HAVE_GETPWNAM HAVE_GETPWNAM501,12013 -#define HAVE_GETRLIMIT HAVE_GETRLIMIT506,12124 -#define HAVE_GETRUSAGE HAVE_GETRUSAGE511,12236 -#define HAVE_GETTIMEOFDAY HAVE_GETTIMEOFDAY516,12354 -#define HAVE_GETWD HAVE_GETWD521,12461 -#define HAVE_GLOB_H HAVE_GLOB_H531,12675 -#define HAVE_GLOB HAVE_GLOB536,12782 -#define HAVE_GMTIME HAVE_GMTIME541,12883 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H556,13203 -#define HAVE_ISATTY HAVE_ISATTY566,13413 -#define HAVE_ISINF HAVE_ISINF576,13626 -#define HAVE_ISNAN HAVE_ISNAN581,13726 -#define HAVE_ISWBLANK HAVE_ISWBLANK586,13829 -#define HAVE_ISWSPACE HAVE_ISWSPACE591,13938 -#define HAVE_KILL HAVE_KILL601,14148 -#define HAVE_LABS HAVE_LABS606,14245 -#define HAVE_LIBANDROID HAVE_LIBANDROID616,14468 -#define HAVE_LIBCOMDLG32 HAVE_LIBCOMDLG32621,14593 -#define HAVE_LIBCRYPT HAVE_LIBCRYPT626,14710 -#define HAVE_LIBGEN_H HAVE_LIBGEN_H636,14928 -#define HAVE_LIBGMP HAVE_LIBGMP642,15038 -#define HAVE_LIBJUDY HAVE_LIBJUDY647,15147 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H652,15269 -#define HAVE_LIBLOG HAVE_LIBLOG657,15383 -#define HAVE_LIBM HAVE_LIBM662,15483 -#define HAVE_LIBMPE HAVE_LIBMPE667,15572 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT672,15684 -#define HAVE_LIBNSL HAVE_LIBNSL677,15787 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS682,15905 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES687,16033 -#define HAVE_LIBPSAPI HAVE_LIBPSAPI692,16151 -#define HAVE_LIBGMP HAVE_LIBGMP702,16311 -#define HAVE_LIBJUDY HAVE_LIBJUDY707,16420 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H712,16542 -#define HAVE_LIBLOG HAVE_LIBLOG717,16656 -#define HAVE_LIBM HAVE_LIBM722,16756 -#define HAVE_LIBMPE HAVE_LIBMPE727,16845 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT732,16957 -#define HAVE_LIBNSL HAVE_LIBNSL737,17060 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS742,17178 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES747,17306 -#define HAVE_LIBSHLWAPI HAVE_LIBSHLWAPI752,17430 -#define HAVE_LIBPTHREAD HAVE_LIBPTHREAD757,17552 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR762,17695 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR2767,17816 -#define HAVE_LIBRESOLV HAVE_LIBRESOLV773,17936 -#define HAVE_LIBSHELL32 HAVE_LIBSHELL32778,18057 -#define HAVE_LIBSOCKET HAVE_LIBSOCKET783,18171 -#define HAVE_LIBSTDC__ HAVE_LIBSTDC__788,18289 -#define HAVE_LIBUNICODE HAVE_LIBUNICODE793,18380 -#define HAVE_LIBWS2_32 HAVE_LIBWS2_32798,18499 -#define HAVE_LIBWSOCK32 HAVE_LIBWSOCK32803,18620 -#define HAVE_LIBXNET HAVE_LIBXNET808,18733 -#define HAVE_LIMITS_H HAVE_LIMITS_H813,18843 -#define HAVE_LINK HAVE_LINK818,18944 -#define HAVE_LOCALE_H HAVE_LOCALE_H833,19291 -#define HAVE_LOCALTIME HAVE_LOCALTIME838,19402 -#define HAVE_LSTAT HAVE_LSTAT848,19623 -#define HAVE_MALLOC_H HAVE_MALLOC_H863,19974 -#define HAVE_MATH_H HAVE_MATH_H868,20082 -#define HAVE_MBSNRTOWCS HAVE_MBSNRTOWCS883,20423 -#define HAVE_MEMCPY HAVE_MEMCPY888,20530 -#define HAVE_MEMMOVE HAVE_MEMMOVE893,20635 -#define HAVE_MEMORY_H HAVE_MEMORY_H898,20746 -#define HAVE_MKSTEMP HAVE_MKSTEMP903,20853 -#define HAVE_MKTEMP HAVE_MKTEMP908,20957 -#define HAVE_MKTIME HAVE_MKTIME913,21060 -#define HAVE_MYSQL_MYSQL_H HAVE_MYSQL_MYSQL_H938,21591 -#define HAVE_NANOSLEEP HAVE_NANOSLEEP943,21707 -#define HAVE_NETDB_H HAVE_NETDB_H948,21818 -#define HAVE_NETINET_IN_H HAVE_NETINET_IN_H953,21937 -#define HAVE_NETINET_TCP_H HAVE_NETINET_TCP_H958,22063 -#define HAVE_OPEN_MEMSTREAM HAVE_OPEN_MEMSTREAM973,22394 -#define HAVE_OPENDIR HAVE_OPENDIR978,22507 -#define HAVE_PTHREAD_H HAVE_PTHREAD_H993,22826 -#define HAVE_PUTENV HAVE_PUTENV1013,23421 -#define HAVE_PWD_H HAVE_PWD_H1018,23525 -#define HAVE_PYTHON_H HAVE_PYTHON_H1023,23631 -#define HAVE_RAND HAVE_RAND1028,23732 -#define HAVE_RANDOM HAVE_RANDOM1033,23833 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H1038,23961 -#define HAVE_READLINK HAVE_READLINK1048,24194 -#define HAVE_REALPATH HAVE_REALPATH1053,24303 -#define HAVE_REGEXEC HAVE_REGEXEC1058,24410 -#define HAVE_REGEX_H HAVE_REGEX_H1063,24519 -#define HAVE_RENAME HAVE_RENAME1073,24747 -#define HAVE_SBRK HAVE_SBRK1099,25342 -#define HAVE_SELECT HAVE_SELECT1104,25443 -#define HAVE_SETBUF HAVE_SETBUF1109,25546 -#define HAVE_SETITIMER HAVE_SETITIMER1114,25655 -#define HAVE_SETLINEBUF HAVE_SETLINEBUF1119,25769 -#define HAVE_SETLOCALE HAVE_SETLOCALE1124,25882 -#define HAVE_SETSID HAVE_SETSID1129,25988 -#define HAVE_SHMAT HAVE_SHMAT1139,26204 -#define HAVE_SIGACTION HAVE_SIGACTION1144,26312 -#define HAVE_SIGFPE HAVE_SIGFPE1149,26383 -#define HAVE_SIGGETMASK HAVE_SIGGETMASK1154,26494 -#define HAVE_SIGINTERRUPT HAVE_SIGINTERRUPT1169,26805 -#define HAVE_SIGNAL HAVE_SIGNAL1174,26914 -#define HAVE_SIGNAL_H HAVE_SIGNAL_H1179,27024 -#define HAVE_SIGPROCMASK HAVE_SIGPROCMASK1184,27139 -#define HAVE_SIGPROF HAVE_SIGPROF1189,27221 -#define HAVE_SIGSEGV HAVE_SIGSEGV1194,27296 -#define HAVE_SIGSETJMP HAVE_SIGSETJMP1199,27378 -#define HAVE_SLEEP HAVE_SLEEP1204,27482 -#define HAVE_SNPRINTF HAVE_SNPRINTF1209,27588 -#define HAVE_SOCKET HAVE_SOCKET1214,27693 -#define HAVE_SQLITE3_H HAVE_SQLITE3_H1224,27922 -#define HAVE_SRAND HAVE_SRAND1244,28351 -#define HAVE_SRANDOM HAVE_SRANDOM1249,28455 -#define HAVE_STAT HAVE_STAT1259,28666 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H1269,28891 -#define STDC_HEADERS STDC_HEADERS1274,28989 -#define HAVE_FLOAT_H HAVE_FLOAT_H1277,29036 -#define HAVE_STRING_H HAVE_STRING_H1278,29059 -#define HAVE_STDARG_H HAVE_STDARG_H1279,29083 -#define HAVE_STDLIB_H HAVE_STDLIB_H1280,29107 -#define HAVE_STDINT_H HAVE_STDINT_H1285,29219 -#define HAVE_STRCASECMP HAVE_STRCASECMP1295,29447 -#define HAVE_STRCASESTR HAVE_STRCASESTR1300,29562 -#define HAVE_STRCHR HAVE_STRCHR1305,29669 -#define HAVE_STRERROR HAVE_STRERROR1310,29776 -#define HAVE_STRINGS_H HAVE_STRINGS_H1320,29999 -#define HAVE_STRNCASECMP HAVE_STRNCASECMP1340,30445 -#define HAVE_STRNCAT HAVE_STRNCAT1345,30555 -#define HAVE_STRNCPY HAVE_STRNCPY1350,30661 -#define HAVE_STRNLEN HAVE_STRNLEN1355,30767 -#define HAVE_STRTOD HAVE_STRTOD1365,30989 -#define HAVE_SYSLOG_H HAVE_SYSLOG_H1375,31222 -#define HAVE_SYSTEM HAVE_SYSTEM1380,31327 -#define HAVE_SYS_DIR_H HAVE_SYS_DIR_H1390,31560 -#define HAVE_SYS_FILE_H HAVE_SYS_FILE_H1395,31677 -#define HAVE_SYS_MMAN_H HAVE_SYS_MMAN_H1400,31795 -#define HAVE_SYS_PARAM_H HAVE_SYS_PARAM_H1410,32036 -#define HAVE_SYS_RESOURCE_H HAVE_SYS_RESOURCE_H1415,32163 -#define HAVE_SYS_SELECT_H HAVE_SYS_SELECT_H1420,32289 -#define HAVE_SYS_SHM_H HAVE_SYS_SHM_H1425,32407 -#define HAVE_SYS_SOCKET_H HAVE_SYS_SOCKET_H1432,32530 -#define HAVE_SYS_STAT_H HAVE_SYS_STAT_H1437,32650 -#define HAVE_SYS_SYSCALL_H HAVE_SYS_SYSCALL_H1442,32774 -#define HAVE_SYS_TIMES_H HAVE_SYS_TIMES_H1447,32897 -#define HAVE_SYS_TIME_H HAVE_SYS_TIME_H1452,33016 -#define HAVE_SYS_TYPES_H HAVE_SYS_TYPES_H1457,33136 -#define HAVE_SYS_UCONTEXT_H HAVE_SYS_UCONTEXT_H1462,33263 -#define HAVE_SYS_UN_H HAVE_SYS_UN_H1467,33381 -#define HAVE_SYS_WAIT_H HAVE_SYS_WAIT_H1472,33497 -#define HAVE_TIME HAVE_TIME1477,33600 -#define HAVE_TIMEGM HAVE_TIMEGM1482,33701 -#define HAVE_TIMES HAVE_TIMES1487,33802 -#define HAVE_TIME_H HAVE_TIME_H1492,33907 -#define TIME_WITH_SYS_TIME_H TIME_WITH_SYS_TIME_H1496,34000 -#define HAVE_TMPNAM HAVE_TMPNAM1502,34119 -#define HAVE_TTYNAME HAVE_TTYNAME1507,34224 -#define HAVE_UCONTEXT_H HAVE_UCONTEXT_H1512,34339 -#define HAVE_UNISTD_H HAVE_UNISTD_H1517,34453 -#define HAVE_USLEEP HAVE_USLEEP1522,34558 -#define HAVE_UTIME HAVE_UTIME1527,34659 -#define HAVE_UTIME_H HAVE_UTIME_H1532,34766 -#define HAVE_VAR_TIMEZONE HAVE_VAR_TIMEZONE1537,34868 -#define HAVE_VFORK HAVE_VFORK1542,34975 -#define HAVE_VSNPRINTF HAVE_VSNPRINTF1547,35083 -#define HAVE_WAITPID HAVE_WAITPID1552,35191 -#define HAVE_WCHAR_H HAVE_WCHAR_H1557,35300 -#define HAVE_WCSDUP HAVE_WCSDUP1562,35404 -#define HAVE_WCSNLEN HAVE_WCSNLEN1567,35509 -#define HAVE_WCTYPE_H HAVE_WCTYPE_H1572,35620 -#define HAVE_WORDEXP HAVE_WORDEXP1592,36086 -#define HAVE_WORDEXP_H HAVE_WORDEXP_H1597,36199 -#define HOST_ALIAS HOST_ALIAS1632,36974 -#define MALLOC_T MALLOC_T1642,37147 -#define MAX_THREADS MAX_THREADS1647,37246 -#define MAX_WORKERS MAX_WORKERS1652,37335 -#define MSHIFTOFFS MSHIFTOFFS1662,37547 -#define MYDDAS_VERSION MYDDAS_VERSION1667,37620 -#define MinHeapSpace MinHeapSpace1672,37720 -#define MinStackSpace MinStackSpace1677,37826 -#define MinTrailSpace MinTrailSpace1682,37932 -#define DefHeapSpace DefHeapSpace1687,38033 -#define DefStackSpace DefStackSpace1692,38120 -#define DefTrailSpace DefTrailSpace1697,38210 -#define YAP_FULL_VERSION YAP_FULL_VERSION1732,38981 -#define YAP_GIT_HEAD YAP_GIT_HEAD1737,39174 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION1742,39287 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE1762,39681 -#define SIZEOF_FLOAT SIZEOF_FLOAT1767,39784 -#define SIZEOF_INT SIZEOF_INT1772,39882 -#define SIZEOF_INT_P SIZEOF_INT_P1777,39982 -#define SIZEOF_LONG SIZEOF_LONG1782,40082 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT1787,40189 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG1792,40302 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT1797,40424 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT1802,40542 -#define SIZEOF_SQLWCHAR SIZEOF_SQLWCHAR1807,40654 -#define SIZEOF_VOIDP SIZEOF_VOIDP1812,40759 -#define SIZEOF_VOID_P SIZEOF_VOID_P1817,40863 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T1822,40970 -#define SO_EXT SO_EXT1827,41042 -#define SO_PATH SO_PATH1833,41133 -#define SO_PATH SO_PATH1835,41182 -#define SO_PATH SO_PATH1837,41220 -#define SO_PATH SO_PATH1839,41260 -#define USE_GMP USE_GMP1855,41594 -#define USE_JUDY USE_JUDY1860,41693 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1900,42641 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1904,42708 -#define YAP_ARCH YAP_ARCH1913,42820 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR1917,42880 -#define YAP_SHAREDIR YAP_SHAREDIR1921,42958 -#define YAP_STARTUP YAP_STARTUP1926,43050 -#define YAP_TIMESTAMP YAP_TIMESTAMP1931,43140 -#define YAP_TVERSION YAP_TVERSION1936,43239 -#define YAP_VAR_TIMEZONE YAP_VAR_TIMEZONE1941,43338 -#define YAP_COMPILED_AT YAP_COMPILED_AT1946,43418 -#define YAP_YAPLIB YAP_YAPLIB1951,43539 -#define YAP_BINDIR YAP_BINDIR1956,43623 -#define YAP_ROOTDIR YAP_ROOTDIR1961,43713 -#define YAP_LIBDIR YAP_LIBDIR1966,43799 -#define YAP_YAPJITLIB YAP_YAPJITLIB1971,43899 -#define MAXPATHLEN MAXPATHLEN2010,44678 -#define MAXPATHLEN MAXPATHLEN2012,44712 -#define USE_DL_MALLOC USE_DL_MALLOC2018,44784 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC2024,44929 -#define strlcpy(strlcpy2029,44994 -#define malloc(malloc2034,45079 -#define realloc(realloc2035,45112 -#define free(free2036,45154 -#define __WINDOWS__ __WINDOWS__2041,45226 -#define X_API X_API2057,45496 -#define X_APIX_API2059,45538 -#define O_APIO_API2061,45559 - -CodeBlocks/YapTermConfig.h,496 -#define YAP_TERM_CONFIG YAP_TERM_CONFIG4,26 -#define SIZEOF_INT_P SIZEOF_INT_P8,113 -#define SIZEOF_INT SIZEOF_INT13,211 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT18,319 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT23,431 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG28,544 -#define SIZEOF_FLOAT SIZEOF_FLOAT33,650 -#define SIZEOF_FLOAT SIZEOF_FLOAT38,752 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H43,867 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H48,983 -#define HAVE_STDINT_H HAVE_STDINT_H54,1097 - -configure,352 -quote() {quote37,1133 -extract_var_string() {extract_var_string41,1205 -set_config_var() {set_config_var61,1717 -prefix_to_offset() {prefix_to_offset139,3758 -print_help() {print_help143,3835 - CMAKE="${1#*=}";;CMAKE226,7052 - LIBDIR="${PREFIX}/lib"LIBDIR363,12724 - for varname in EXE MODULE SHARED STATIC; doSTATIC369,12885 - -console/LGPL/pl-ntcon.c,241 -#define O_CTRLC O_CTRLC45,1732 -#define O_ANSI_COLORS O_ANSI_COLORS48,1782 -static DWORD main_thread_id;main_thread_id56,1930 -consoleHandlerRoutine(DWORD id)consoleHandlerRoutine59,1975 -APP_main(int argc, char **argv)APP_main76,2258 - -console/LGPL/pl-ntconsole.c,2741 -#define _UNICODE _UNICODE26,1038 -#define UNICODE UNICODE27,1057 -#define WINDOWS_LEAN_AND_MEAN WINDOWS_LEAN_AND_MEAN29,1076 -#define ANSI_MAGIC ANSI_MAGIC39,1326 -#define ANSI_BUFFER_SIZE ANSI_BUFFER_SIZE40,1359 -#define ANSI_MAX_ARGC ANSI_MAX_ARGC41,1390 -{ CMD_INITIAL = 0,CMD_INITIAL44,1432 - CMD_ESC,CMD_ESC45,1451 - CMD_ANSICMD_ANSI46,1462 -} astate;astate47,1473 -{ HDL_CONSOLE = 0,HDL_CONSOLE50,1497 - HDL_FILEHDL_FILE51,1516 -} htype;htype52,1527 -{ int magic;magic55,1552 -{ int magic;__anon28::magic55,1552 - HANDLE hConsole;hConsole56,1565 - HANDLE hConsole;__anon28::hConsole56,1565 - IOSTREAM *pStream;pStream57,1584 - IOSTREAM *pStream;__anon28::pStream57,1584 - void *saved_handle;saved_handle58,1605 - void *saved_handle;__anon28::saved_handle58,1605 - wchar_t buffer[ANSI_BUFFER_SIZE];buffer60,1628 - wchar_t buffer[ANSI_BUFFER_SIZE];__anon28::buffer60,1628 - size_t buffered;buffered61,1664 - size_t buffered;__anon28::buffered61,1664 - int argv[ANSI_MAX_ARGC];argv62,1683 - int argv[ANSI_MAX_ARGC];__anon28::argv62,1683 - int argc;argc63,1710 - int argc;__anon28::argc63,1710 - int argstat;argstat64,1722 - int argstat;__anon28::argstat64,1722 - astate cmdstat; /* State for sequence processing */cmdstat65,1737 - astate cmdstat; /* State for sequence processing */__anon28::cmdstat65,1737 - WORD def_attr; /* Default attributes */def_attr66,1793 - WORD def_attr; /* Default attributes */__anon28::def_attr66,1793 - htype handletype; /* Type of stream handle */handletype67,1837 - htype handletype; /* Type of stream handle */__anon28::handletype67,1837 -} ansi_stream;ansi_stream68,1905 -static IOFUNCTIONS con_functions;con_functions71,1922 -static IOFUNCTIONS *saved_functions;saved_functions72,1956 -Message(const char *fm, ...)Message75,2006 -flush_ansi(ansi_stream *as)flush_ansi93,2377 -send_ansi(ansi_stream *as, int chr)send_ansi128,3033 -#define FG_MASK FG_MASK139,3292 -#define BG_MASK BG_MASK140,3358 -set_ansi_attributes(ansi_stream *as)set_ansi_attributes143,3437 -rlc_need_arg(ansi_stream *as, int arg, int def)rlc_need_arg204,4786 -put_ansi(ansi_stream *as, int chr)put_ansi213,4924 -write_ansi(void *handle, char *buffer, size_t size)write_ansi326,7178 -close_ansi(void *handle)close_ansi345,7578 -control_ansi(void *handle, int op, void *data)control_ansi361,7823 -Sread_win32_console(void *handle, char *buffer, size_t size)Sread_win32_console395,8499 -wrap_console(HANDLE h, IOSTREAM *s, IOFUNCTIONS *funcs)wrap_console436,9305 -init_output(void *handle, CONSOLE_SCREEN_BUFFER_INFO *info)init_output462,9773 -PL_w32_wrap_ansi_console(void)PL_w32_wrap_ansi_console470,9906 - -console/LGPL/pl-ntmain.c,4298 -#define _UNICODE _UNICODE24,984 -#define UNICODE UNICODE25,1003 -#define MAX_FILE_NAME MAX_FILE_NAME28,1049 -#define O_PLMT O_PLMT32,1146 -#define streq(streq63,1679 -typedef wint_t _TINT;_TINT67,1744 -__declspec(dllexport) int PL_set_menu_thread(void);PL_set_menu_thread82,2365 -#define RLC_PROLOG_WINDOW RLC_PROLOG_WINDOW86,2547 -#define RLC_PROLOG_INPUT RLC_PROLOG_INPUT87,2613 -#define RLC_PROLOG_OUTPUT RLC_PROLOG_OUTPUT88,2683 -#define RLC_PROLOG_ERROR RLC_PROLOG_ERROR89,2754 -#define RLC_REGISTER RLC_REGISTER90,2824 -build_filter( term_t list, size_t space, TCHAR *fil )build_filter97,3006 -pl_win_file_name( term_t mode, term_t list, term_t tit, term_t cwd, term_t hwnd, term_t file )pl_win_file_name126,3625 -static CRITICAL_SECTION mutex;mutex219,6050 -#define LOCK(LOCK220,6081 -#define UNLOCK(UNLOCK221,6127 -static rlc_console *consoles; /* array of consoles */consoles223,6174 -static int consoles_length; /* size of this array */consoles_length224,6229 -unregisterConsole(uintptr_t data)unregisterConsole227,6296 -registerConsole(rlc_console c)registerConsole244,6541 -Srlc_read(void *handle, char *buffer, size_t size)Srlc_read297,7789 -Srlc_write(void *handle, char *buffer, size_t size)Srlc_write348,9372 -Srlc_close(void *handle)Srlc_close372,9856 -Srlc_control(void *handle, int cmd, void *closure)Srlc_control407,11037 -static IOFUNCTIONS rlc_functions;rlc_functions412,11105 -rlc_bind_terminal(rlc_console c)rlc_bind_terminal415,11152 -process_console_options(rlc_console_attr *attr, term_t options)process_console_options441,11779 -free_stream(uintptr_t handle)free_stream471,12471 -pl_win_open_console(term_t title, term_t input, term_t output, term_t error,pl_win_open_console479,12572 -#define STREAM_COMMON STREAM_COMMON499,13120 -pl_rl_add_history(term_t text)pl_rl_add_history542,14575 -add_line(void *h, int no, const TCHAR *line)add_line567,14965 -pl_rl_history(term_t list)pl_rl_history582,15252 -pl_rl_read_init_file(term_t file)pl_rl_read_init_file596,15509 -static RlcCompleteFunc file_completer;file_completer605,15657 -prolog_complete(RlcCompleteData data)prolog_complete608,15708 -do_complete(RlcCompleteData data)do_complete663,16954 -PL_current_console(void)PL_current_console678,17226 -static rlc_console main_console;main_console686,17354 -PL_set_menu_thread(void)PL_set_menu_thread689,17392 -pl_window_title(term_t old, term_t new)pl_window_title700,17551 -get_chars_arg_ex(int a, term_t t, TCHAR **v)get_chars_arg_ex714,17848 -get_int_arg_ex(int a, term_t t, int *v)get_int_arg_ex726,18078 -get_bool_arg_ex(int a, term_t t, int *v)get_bool_arg_ex738,18263 -pl_window_pos(term_t options)pl_window_pos750,18452 -call_menu(const TCHAR *name)call_menu819,20283 -pl_win_insert_menu_item(term_t menu, term_t label, term_t before)pl_win_insert_menu_item834,20680 -pl_win_insert_menu(term_t label, term_t before)pl_win_insert_menu852,21150 -free_interactor(void *closure)free_interactor872,21566 -run_interactor(void *closure)run_interactor878,21645 -create_interactor(void)create_interactor897,22012 -#define WM_SIGNALLED WM_SIGNALLED911,22279 -#define WM_MENU WM_MENU912,22312 -pl_wnd_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)pl_wnd_proc915,22368 -HiddenFrameClass(void)HiddenFrameClass934,22712 -destroy_hidden_window(uintptr_t hwnd)destroy_hidden_window965,23838 -create_prolog_hidden_window(rlc_console c, int replace)create_prolog_hidden_window971,23921 -fatalSignal(int sig)fatalSignal999,24716 -initSignals(void)initSignals1019,25219 -interrupt(rlc_console c, int sig)interrupt1038,26002 -menu_select(rlc_console c, const TCHAR *name)menu_select1055,26324 -message_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)message_proc1070,26633 -set_window_title(rlc_console c)set_window_title1085,26954 -PL_extension extensions[] =extensions1110,27480 -install_readline(rlc_console c)install_readline1131,28228 -static rlc_console main_console;main_console1151,28924 -closeWin(int s, void *a)closeWin1154,28969 -#define MAX_ARGC MAX_ARGC1167,29128 -utf8_required_len(const wchar_t *s)utf8_required_len1170,29164 -win32main(rlc_console c, int argc, TCHAR **argv)win32main1185,29334 -wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,wWinMain1243,30784 - -console/LGPL/resource.h,334 -#define OEM_RESOURCEOEM_RESOURCE1,0 -#define IDI_APPICON IDI_APPICON3,24 -#define IDR_MAINMENU IDR_MAINMENU4,68 -#define IDR_ACCELERATOR IDR_ACCELERATOR5,112 -#define IDD_ABOUTDIALOG IDD_ABOUTDIALOG6,156 -#define ID_FILE_EXIT ID_FILE_EXIT7,200 -#define ID_HELP_ABOUT ID_HELP_ABOUT8,246 - #define IDC_STATIC IDC_STATIC11,314 - -console/Qt/build-untitled-Desktop_Qt_5_4_2_clang_64bit-Debug/moc_mainwindow.cpp,1508 -struct qt_meta_stringdata_MainWindow_t {qt_meta_stringdata_MainWindow_t21,782 - QByteArrayData data[1];data22,823 - QByteArrayData data[1];qt_meta_stringdata_MainWindow_t::data22,823 - char stringdata[11];stringdata23,851 - char stringdata[11];qt_meta_stringdata_MainWindow_t::stringdata23,851 -#define QT_MOC_LITERAL(QT_MOC_LITERAL25,879 -static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = {qt_meta_stringdata_MainWindow30,1109 -#undef QT_MOC_LITERALQT_MOC_LITERAL37,1263 -static const uint qt_meta_data_MainWindow[] = {qt_meta_data_MainWindow39,1286 -void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)qt_static_metacall55,1637 -void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)MainWindow::qt_static_metacall55,1637 -const QMetaObject MainWindow::staticMetaObject = {staticMetaObject63,1806 -const QMetaObject MainWindow::staticMetaObject = {MainWindow::staticMetaObject63,1806 -const QMetaObject *MainWindow::metaObject() constmetaObject69,2010 -const QMetaObject *MainWindow::metaObject() constMainWindow::metaObject69,2010 -void *MainWindow::qt_metacast(const char *_clname)qt_metacast74,2162 -void *MainWindow::qt_metacast(const char *_clname)MainWindow::qt_metacast74,2162 -int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a)qt_metacall82,2435 -int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a)MainWindow::qt_metacall82,2435 - -console/Qt/build-untitled-Desktop_Qt_5_4_2_clang_64bit-Debug/ui_mainwindow.h,948 -#define UI_MAINWINDOW_HUI_MAINWINDOW_H10,387 -class Ui_MainWindowUi_MainWindow25,744 - QMenuBar *menuBar;menuBar28,774 - QMenuBar *menuBar;Ui_MainWindow::menuBar28,774 - QToolBar *mainToolBar;mainToolBar29,797 - QToolBar *mainToolBar;Ui_MainWindow::mainToolBar29,797 - QWidget *centralWidget;centralWidget30,824 - QWidget *centralWidget;Ui_MainWindow::centralWidget30,824 - QStatusBar *statusBar;statusBar31,852 - QStatusBar *statusBar;Ui_MainWindow::statusBar31,852 - void setupUi(QMainWindow *MainWindow)setupUi33,880 - void setupUi(QMainWindow *MainWindow)Ui_MainWindow::setupUi33,880 - void retranslateUi(QMainWindow *MainWindow)retranslateUi56,1824 - void retranslateUi(QMainWindow *MainWindow)Ui_MainWindow::retranslateUi56,1824 -namespace Ui {Ui63,1998 - class MainWindow: public Ui_MainWindow {};MainWindow64,2013 - class MainWindow: public Ui_MainWindow {};Ui::MainWindow64,2013 - -console/Qt/build-untitled-Desktop_Qt_5_4_2_clang_64bit-Debug/untitled.app/Contents/MacOS/untitled,0 - -console/Qt/build-untitled-Desktop_Qt_5_4_2_clang_64bit-Debug/untitled.app/Contents/PkgInfo,0 - -console/Qt/qtyap.cpp,269 -class Task : public QObjectTask4,31 - Task(QObject *parent = 0) : QObject(parent) {}Task8,82 - Task(QObject *parent = 0) : QObject(parent) {}Task::Task8,82 - void run()run11,148 - void run()Task::run11,148 -int main(int argc, char *argv[])main24,287 - -console/Qt/untitled/main.cpp,269 -class Task : public QObjectTask4,31 - Task(QObject *parent = 0) : QObject(parent) {}Task8,82 - Task(QObject *parent = 0) : QObject(parent) {}Task::Task8,82 - void run()run11,148 - void run()Task::run11,148 -int main(int argc, char *argv[])main24,287 - -console/Qt/untitled/mainwindow.cpp,230 -MainWindow::MainWindow(QWidget *parent) :MainWindow4,52 -MainWindow::MainWindow(QWidget *parent) :MainWindow::MainWindow4,52 -MainWindow::~MainWindow()~MainWindow11,168 -MainWindow::~MainWindow()MainWindow::~MainWindow11,168 - -console/Qt/untitled/mainwindow.h,194 -#define MAINWINDOW_HMAINWINDOW_H2,21 -namespace Ui {Ui6,67 -class MainWindow : public QMainWindowMainWindow10,105 - Ui::MainWindow *ui;ui19,236 - Ui::MainWindow *ui;MainWindow::ui19,236 - -console/Qt/untitled/untitled.pro,0 - -console/terminal/console.cpp,1013 -Console::Console(QWidget *parent)Console41,1726 -Console::Console(QWidget *parent)Console::Console41,1726 -void Console::putData(const QString &data)putData53,2001 -void Console::putData(const QString &data)Console::putData53,2001 -void Console::setLocalEchoEnabled(bool set)setLocalEchoEnabled61,2155 -void Console::setLocalEchoEnabled(bool set)Console::setLocalEchoEnabled61,2155 -void Console::keyPressEvent(QKeyEvent *e)keyPressEvent66,2232 -void Console::keyPressEvent(QKeyEvent *e)Console::keyPressEvent66,2232 -void Console::mousePressEvent(QMouseEvent *e)mousePressEvent82,2565 -void Console::mousePressEvent(QMouseEvent *e)Console::mousePressEvent82,2565 -void Console::mouseDoubleClickEvent(QMouseEvent *e)mouseDoubleClickEvent88,2648 -void Console::mouseDoubleClickEvent(QMouseEvent *e)Console::mouseDoubleClickEvent88,2648 -void Console::contextMenuEvent(QContextMenuEvent *e)contextMenuEvent93,2721 -void Console::contextMenuEvent(QContextMenuEvent *e)Console::contextMenuEvent93,2721 - -console/terminal/console.h,203 -#define CONSOLE_HCONSOLE_H36,1674 -class Console : public QPlainTextEditConsole40,1720 - bool localEchoEnabled;localEchoEnabled61,2186 - bool localEchoEnabled;Console::localEchoEnabled61,2186 - -console/terminal/main.cpp,46 -int main(int argc, char *argv[])main39,1705 - -console/terminal/mainwindow.cpp,1132 -MainWindow::MainWindow(QWidget *parent) :MainWindow43,1788 -MainWindow::MainWindow(QWidget *parent) :MainWindow::MainWindow43,1788 -MainWindow::~MainWindow()~MainWindow69,2355 -MainWindow::~MainWindow()MainWindow::~MainWindow69,2355 -MainWindow::startYAP (YAPEngine *&eng)startYAP77,2435 -MainWindow::startYAP (YAPEngine *&eng)MainWindow::startYAP77,2435 -void MainWindow::stopYAP(YAPEngine *eng)stopYAP87,2609 -void MainWindow::stopYAP(YAPEngine *eng)MainWindow::stopYAP87,2609 -void MainWindow::about()about93,2682 -void MainWindow::about()MainWindow::about93,2682 -void MainWindow::writeData(const QString &data)writeData102,3034 -void MainWindow::writeData(const QString &data)MainWindow::writeData102,3034 -void MainWindow::readData()readData109,3130 -void MainWindow::readData()MainWindow::readData109,3130 -void MainWindow::handleError(YAPError error)handleError117,3252 -void MainWindow::handleError(YAPError error)MainWindow::handleError117,3252 -void MainWindow::initActionsConnections()initActionsConnections130,3620 -void MainWindow::initActionsConnections()MainWindow::initActionsConnections130,3620 - -console/terminal/mainwindow.h,495 -#define MAINWINDOW_HMAINWINDOW_H36,1676 -namespace Ui {Ui46,1790 -class MainWindow : public QMainWindow, public YAPEngineMainWindow57,1884 - Ui::MainWindow *ui;ui78,2289 - Ui::MainWindow *ui;MainWindow::ui78,2289 - Console *console;console79,2313 - Console *console;MainWindow::console79,2313 - SettingsDialog *settings;settings80,2335 - SettingsDialog *settings;MainWindow::settings80,2335 - YAPEngine *eng;eng81,2365 - YAPEngine *eng;MainWindow::eng81,2365 - -console/terminal/moc_console.cpp,1573 -struct qt_meta_stringdata_Console_t {qt_meta_stringdata_Console_t21,761 - QByteArrayData data[4];data22,799 - QByteArrayData data[4];qt_meta_stringdata_Console_t::data22,799 - char stringdata[22];stringdata23,827 - char stringdata[22];qt_meta_stringdata_Console_t::stringdata23,827 -#define QT_MOC_LITERAL(QT_MOC_LITERAL25,855 -static const qt_meta_stringdata_Console_t qt_meta_stringdata_Console = {qt_meta_stringdata_Console30,1082 -#undef QT_MOC_LITERALQT_MOC_LITERAL40,1346 -static const uint qt_meta_data_Console[] = {qt_meta_data_Console42,1369 -void Console::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)qt_static_metacall64,1888 -void Console::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)Console::qt_static_metacall64,1888 -const QMetaObject Console::staticMetaObject = {staticMetaObject84,2595 -const QMetaObject Console::staticMetaObject = {Console::staticMetaObject84,2595 -const QMetaObject *Console::metaObject() constmetaObject90,2793 -const QMetaObject *Console::metaObject() constConsole::metaObject90,2793 -void *Console::qt_metacast(const char *_clname)qt_metacast95,2942 -void *Console::qt_metacast(const char *_clname)Console::qt_metacast95,2942 -int Console::qt_metacall(QMetaObject::Call _c, int _id, void **_a)qt_metacall103,3209 -int Console::qt_metacall(QMetaObject::Call _c, int _id, void **_a)Console::qt_metacall103,3209 -void Console::getData(const QByteArray & _t1)getData121,3697 -void Console::getData(const QByteArray & _t1)Console::getData121,3697 - -console/terminal/moc_mainwindow.cpp,1518 -struct qt_meta_stringdata_MainWindow_t {qt_meta_stringdata_MainWindow_t21,770 - QByteArrayData data[11];data22,811 - QByteArrayData data[11];qt_meta_stringdata_MainWindow_t::data22,811 - char stringdata[120];stringdata23,840 - char stringdata[120];qt_meta_stringdata_MainWindow_t::stringdata23,840 -#define QT_MOC_LITERAL(QT_MOC_LITERAL25,869 -static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = {qt_meta_stringdata_MainWindow30,1099 -#undef QT_MOC_LITERALQT_MOC_LITERAL49,1811 -static const uint qt_meta_data_MainWindow[] = {qt_meta_data_MainWindow51,1834 -void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)qt_static_metacall83,2720 -void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)MainWindow::qt_static_metacall83,2720 -const QMetaObject MainWindow::staticMetaObject = {staticMetaObject99,3333 -const QMetaObject MainWindow::staticMetaObject = {MainWindow::staticMetaObject99,3333 -const QMetaObject *MainWindow::metaObject() constmetaObject105,3537 -const QMetaObject *MainWindow::metaObject() constMainWindow::metaObject105,3537 -void *MainWindow::qt_metacast(const char *_clname)qt_metacast110,3689 -void *MainWindow::qt_metacast(const char *_clname)MainWindow::qt_metacast110,3689 -int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a)qt_metacall118,3962 -int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a)MainWindow::qt_metacall118,3962 - -console/terminal/moc_settingsdialog.cpp,1608 -struct qt_meta_stringdata_SettingsDialog_t {qt_meta_stringdata_SettingsDialog_t21,782 - QByteArrayData data[7];data22,827 - QByteArrayData data[7];qt_meta_stringdata_SettingsDialog_t::data22,827 - char stringdata[93];stringdata23,855 - char stringdata[93];qt_meta_stringdata_SettingsDialog_t::stringdata23,855 -#define QT_MOC_LITERAL(QT_MOC_LITERAL25,883 -static const qt_meta_stringdata_SettingsDialog_t qt_meta_stringdata_SettingsDialog = {qt_meta_stringdata_SettingsDialog30,1117 -#undef QT_MOC_LITERALQT_MOC_LITERAL45,1652 -static const uint qt_meta_data_SettingsDialog[] = {qt_meta_data_SettingsDialog47,1675 -void SettingsDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)qt_static_metacall75,2442 -void SettingsDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)SettingsDialog::qt_static_metacall75,2442 -const QMetaObject SettingsDialog::staticMetaObject = {staticMetaObject89,3009 -const QMetaObject SettingsDialog::staticMetaObject = {SettingsDialog::staticMetaObject89,3009 -const QMetaObject *SettingsDialog::metaObject() constmetaObject95,3221 -const QMetaObject *SettingsDialog::metaObject() constSettingsDialog::metaObject95,3221 -void *SettingsDialog::qt_metacast(const char *_clname)qt_metacast100,3377 -void *SettingsDialog::qt_metacast(const char *_clname)SettingsDialog::qt_metacast100,3377 -int SettingsDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a)qt_metacall108,3658 -int SettingsDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a)SettingsDialog::qt_metacall108,3658 - -console/terminal/qrc_terminal.cpp,1618 -static const unsigned char qt_resource_data[] = {qt_resource_data9,302 -static const unsigned char qt_resource_name[] = {qt_resource_name4420,359197 -static const unsigned char qt_resource_struct[] = {qt_resource_struct4455,360255 -# define QT_RCC_PREPEND_NAMESPACE(QT_RCC_PREPEND_NAMESPACE4474,360920 -# define QT_RCC_MANGLE_NAMESPACE0(QT_RCC_MANGLE_NAMESPACE04475,360982 -# define QT_RCC_MANGLE_NAMESPACE1(QT_RCC_MANGLE_NAMESPACE14476,361022 -# define QT_RCC_MANGLE_NAMESPACE2(QT_RCC_MANGLE_NAMESPACE24477,361071 -# define QT_RCC_MANGLE_NAMESPACE(QT_RCC_MANGLE_NAMESPACE4478,361142 -# define QT_RCC_PREPEND_NAMESPACE(QT_RCC_PREPEND_NAMESPACE4481,361296 -# define QT_RCC_MANGLE_NAMESPACE(QT_RCC_MANGLE_NAMESPACE4482,361343 -namespace QT_NAMESPACE {QT_NAMESPACE4486,361417 -int QT_RCC_MANGLE_NAMESPACE(qInitResources_terminal)()qInitResources_terminal4498,361744 -int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_terminal)()qCleanupResources_terminal4506,362001 - struct initializer {initializer4514,362215 - struct initializer {__anon29::initializer4514,362215 - initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_terminal)(); }initializer4515,362239 - initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_terminal)(); }__anon29::initializer::initializer4515,362239 - ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_terminal)(); }~initializer4516,362316 - ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_terminal)(); }__anon29::initializer::~initializer4516,362316 - } dummy;dummy4517,362397 - } dummy;__anon29::dummy4517,362397 - -console/terminal/settingsdialog.cpp,1644 -static const char blankString[] = QT_TRANSLATE_NOOP("SettingsDialog", "N/A");blankString44,1820 -SettingsDialog::SettingsDialog(QWidget *parent) :SettingsDialog46,1899 -SettingsDialog::SettingsDialog(QWidget *parent) :SettingsDialog::SettingsDialog46,1899 -SettingsDialog::~SettingsDialog()~SettingsDialog71,2670 -SettingsDialog::~SettingsDialog()SettingsDialog::~SettingsDialog71,2670 -SettingsDialog::Settings SettingsDialog::settings() constsettings76,2724 -SettingsDialog::Settings SettingsDialog::settings() constSettingsDialog::settings76,2724 -void SettingsDialog::showPortInfo(int idx)showPortInfo81,2815 -void SettingsDialog::showPortInfo(int idx)SettingsDialog::showPortInfo81,2815 -void SettingsDialog::apply()apply95,3641 -void SettingsDialog::apply()SettingsDialog::apply95,3641 -void SettingsDialog::checkCustomBaudRatePolicy(int idx)checkCustomBaudRatePolicy101,3709 -void SettingsDialog::checkCustomBaudRatePolicy(int idx)SettingsDialog::checkCustomBaudRatePolicy101,3709 -void SettingsDialog::checkCustomDevicePathPolicy(int idx)checkCustomDevicePathPolicy113,4075 -void SettingsDialog::checkCustomDevicePathPolicy(int idx)SettingsDialog::checkCustomDevicePathPolicy113,4075 -void SettingsDialog::fillPortsParameters()fillPortsParameters121,4345 -void SettingsDialog::fillPortsParameters()SettingsDialog::fillPortsParameters121,4345 -void SettingsDialog::fillPortsInfo()fillPortsInfo153,5883 -void SettingsDialog::fillPortsInfo()SettingsDialog::fillPortsInfo153,5883 -void SettingsDialog::updateSettings()updateSettings179,6902 -void SettingsDialog::updateSettings()SettingsDialog::updateSettings179,6902 - -console/terminal/settingsdialog.h,2167 -#define SETTINGSDIALOG_HSETTINGSDIALOG_H36,1680 -namespace Ui {Ui45,1800 -class SettingsDialog : public QDialogSettingsDialog53,1880 - struct Settings {Settings58,1942 - struct Settings {SettingsDialog::Settings58,1942 - QString name;name59,1964 - QString name;SettingsDialog::Settings::name59,1964 - qint32 baudRate;baudRate60,1986 - qint32 baudRate;SettingsDialog::Settings::baudRate60,1986 - QString stringBaudRate;stringBaudRate61,2011 - QString stringBaudRate;SettingsDialog::Settings::stringBaudRate61,2011 - QSerialPort::DataBits dataBits;dataBits62,2043 - QSerialPort::DataBits dataBits;SettingsDialog::Settings::dataBits62,2043 - QString stringDataBits;stringDataBits63,2083 - QString stringDataBits;SettingsDialog::Settings::stringDataBits63,2083 - QSerialPort::Parity parity;parity64,2115 - QSerialPort::Parity parity;SettingsDialog::Settings::parity64,2115 - QString stringParity;stringParity65,2151 - QString stringParity;SettingsDialog::Settings::stringParity65,2151 - QSerialPort::StopBits stopBits;stopBits66,2181 - QSerialPort::StopBits stopBits;SettingsDialog::Settings::stopBits66,2181 - QString stringStopBits;stringStopBits67,2221 - QString stringStopBits;SettingsDialog::Settings::stringStopBits67,2221 - QSerialPort::FlowControl flowControl;flowControl68,2253 - QSerialPort::FlowControl flowControl;SettingsDialog::Settings::flowControl68,2253 - QString stringFlowControl;stringFlowControl69,2299 - QString stringFlowControl;SettingsDialog::Settings::stringFlowControl69,2299 - bool localEchoEnabled;localEchoEnabled70,2334 - bool localEchoEnabled;SettingsDialog::Settings::localEchoEnabled70,2334 - Ui::SettingsDialog *ui;ui90,2741 - Ui::SettingsDialog *ui;SettingsDialog::ui90,2741 - Settings currentSettings;currentSettings91,2769 - Settings currentSettings;SettingsDialog::currentSettings91,2769 - QIntValidator *intValidator;intValidator92,2799 - QIntValidator *intValidator;SettingsDialog::intValidator92,2799 - -console/terminal/terminal.pro,0 - -console/terminal/ui_mainwindow.h,2156 -#define UI_MAINWINDOW_HUI_MAINWINDOW_H10,387 -class Ui_MainWindowUi_MainWindow27,804 - QAction *actionAbout;actionAbout30,834 - QAction *actionAbout;Ui_MainWindow::actionAbout30,834 - QAction *actionAboutQt;actionAboutQt31,860 - QAction *actionAboutQt;Ui_MainWindow::actionAboutQt31,860 - QAction *actionConnect;actionConnect32,888 - QAction *actionConnect;Ui_MainWindow::actionConnect32,888 - QAction *actionDisconnect;actionDisconnect33,916 - QAction *actionDisconnect;Ui_MainWindow::actionDisconnect33,916 - QAction *actionConfigure;actionConfigure34,947 - QAction *actionConfigure;Ui_MainWindow::actionConfigure34,947 - QAction *actionClear;actionClear35,977 - QAction *actionClear;Ui_MainWindow::actionClear35,977 - QAction *actionQuit;actionQuit36,1003 - QAction *actionQuit;Ui_MainWindow::actionQuit36,1003 - QWidget *centralWidget;centralWidget37,1028 - QWidget *centralWidget;Ui_MainWindow::centralWidget37,1028 - QVBoxLayout *verticalLayout;verticalLayout38,1056 - QVBoxLayout *verticalLayout;Ui_MainWindow::verticalLayout38,1056 - QMenuBar *menuBar;menuBar39,1089 - QMenuBar *menuBar;Ui_MainWindow::menuBar39,1089 - QMenu *menuCalls;menuCalls40,1112 - QMenu *menuCalls;Ui_MainWindow::menuCalls40,1112 - QMenu *menuTools;menuTools41,1134 - QMenu *menuTools;Ui_MainWindow::menuTools41,1134 - QMenu *menuHelp;menuHelp42,1156 - QMenu *menuHelp;Ui_MainWindow::menuHelp42,1156 - QToolBar *mainToolBar;mainToolBar43,1177 - QToolBar *mainToolBar;Ui_MainWindow::mainToolBar43,1177 - QStatusBar *statusBar;statusBar44,1204 - QStatusBar *statusBar;Ui_MainWindow::statusBar44,1204 - void setupUi(QMainWindow *MainWindow)setupUi46,1232 - void setupUi(QMainWindow *MainWindow)Ui_MainWindow::setupUi46,1232 - void retranslateUi(QMainWindow *MainWindow)retranslateUi125,5116 - void retranslateUi(QMainWindow *MainWindow)Ui_MainWindow::retranslateUi125,5116 -namespace Ui {Ui163,7383 - class MainWindow: public Ui_MainWindow {};MainWindow164,7398 - class MainWindow: public Ui_MainWindow {};Ui::MainWindow164,7398 - -console/terminal/ui_settingsdialog.h,4043 -#define UI_SETTINGSDIALOG_HUI_SETTINGSDIALOG_H10,395 -class Ui_SettingsDialogUi_SettingsDialog30,917 - QGridLayout *gridLayout_3;gridLayout_333,951 - QGridLayout *gridLayout_3;Ui_SettingsDialog::gridLayout_333,951 - QGroupBox *parametersBox;parametersBox34,982 - QGroupBox *parametersBox;Ui_SettingsDialog::parametersBox34,982 - QGridLayout *gridLayout_2;gridLayout_235,1012 - QGridLayout *gridLayout_2;Ui_SettingsDialog::gridLayout_235,1012 - QLabel *baudRateLabel;baudRateLabel36,1043 - QLabel *baudRateLabel;Ui_SettingsDialog::baudRateLabel36,1043 - QComboBox *baudRateBox;baudRateBox37,1070 - QComboBox *baudRateBox;Ui_SettingsDialog::baudRateBox37,1070 - QLabel *dataBitsLabel;dataBitsLabel38,1098 - QLabel *dataBitsLabel;Ui_SettingsDialog::dataBitsLabel38,1098 - QComboBox *dataBitsBox;dataBitsBox39,1125 - QComboBox *dataBitsBox;Ui_SettingsDialog::dataBitsBox39,1125 - QLabel *parityLabel;parityLabel40,1153 - QLabel *parityLabel;Ui_SettingsDialog::parityLabel40,1153 - QComboBox *parityBox;parityBox41,1178 - QComboBox *parityBox;Ui_SettingsDialog::parityBox41,1178 - QLabel *stopBitsLabel;stopBitsLabel42,1204 - QLabel *stopBitsLabel;Ui_SettingsDialog::stopBitsLabel42,1204 - QComboBox *stopBitsBox;stopBitsBox43,1231 - QComboBox *stopBitsBox;Ui_SettingsDialog::stopBitsBox43,1231 - QLabel *flowControlLabel;flowControlLabel44,1259 - QLabel *flowControlLabel;Ui_SettingsDialog::flowControlLabel44,1259 - QComboBox *flowControlBox;flowControlBox45,1289 - QComboBox *flowControlBox;Ui_SettingsDialog::flowControlBox45,1289 - QGroupBox *selectBox;selectBox46,1320 - QGroupBox *selectBox;Ui_SettingsDialog::selectBox46,1320 - QGridLayout *gridLayout;gridLayout47,1346 - QGridLayout *gridLayout;Ui_SettingsDialog::gridLayout47,1346 - QComboBox *serialPortInfoListBox;serialPortInfoListBox48,1375 - QComboBox *serialPortInfoListBox;Ui_SettingsDialog::serialPortInfoListBox48,1375 - QLabel *descriptionLabel;descriptionLabel49,1413 - QLabel *descriptionLabel;Ui_SettingsDialog::descriptionLabel49,1413 - QLabel *manufacturerLabel;manufacturerLabel50,1443 - QLabel *manufacturerLabel;Ui_SettingsDialog::manufacturerLabel50,1443 - QLabel *serialNumberLabel;serialNumberLabel51,1474 - QLabel *serialNumberLabel;Ui_SettingsDialog::serialNumberLabel51,1474 - QLabel *locationLabel;locationLabel52,1505 - QLabel *locationLabel;Ui_SettingsDialog::locationLabel52,1505 - QLabel *vidLabel;vidLabel53,1532 - QLabel *vidLabel;Ui_SettingsDialog::vidLabel53,1532 - QLabel *pidLabel;pidLabel54,1554 - QLabel *pidLabel;Ui_SettingsDialog::pidLabel54,1554 - QHBoxLayout *horizontalLayout;horizontalLayout55,1576 - QHBoxLayout *horizontalLayout;Ui_SettingsDialog::horizontalLayout55,1576 - QSpacerItem *horizontalSpacer;horizontalSpacer56,1611 - QSpacerItem *horizontalSpacer;Ui_SettingsDialog::horizontalSpacer56,1611 - QPushButton *applyButton;applyButton57,1646 - QPushButton *applyButton;Ui_SettingsDialog::applyButton57,1646 - QGroupBox *additionalOptionsGroupBox;additionalOptionsGroupBox58,1676 - QGroupBox *additionalOptionsGroupBox;Ui_SettingsDialog::additionalOptionsGroupBox58,1676 - QVBoxLayout *verticalLayout;verticalLayout59,1718 - QVBoxLayout *verticalLayout;Ui_SettingsDialog::verticalLayout59,1718 - QCheckBox *localEchoCheckBox;localEchoCheckBox60,1751 - QCheckBox *localEchoCheckBox;Ui_SettingsDialog::localEchoCheckBox60,1751 - void setupUi(QDialog *SettingsDialog)setupUi62,1786 - void setupUi(QDialog *SettingsDialog)Ui_SettingsDialog::setupUi62,1786 - void retranslateUi(QDialog *SettingsDialog)retranslateUi201,7095 - void retranslateUi(QDialog *SettingsDialog)Ui_SettingsDialog::retranslateUi201,7095 -namespace Ui {Ui224,8788 - class SettingsDialog: public Ui_SettingsDialog {};SettingsDialog225,8803 - class SettingsDialog: public Ui_SettingsDialog {};Ui::SettingsDialog225,8803 - -console/yap.c,409 -#undef HAVE_UNISTD_HHAVE_UNISTD_H25,723 -long _stksize = 32000;_stksize69,1452 -static void do_top_goal(YAP_Term Goal) { YAP_RunGoalOnce(Goal); }do_top_goal72,1483 -static int init_standard_system(int argc, char *argv[], YAP_init_args *iap) {init_standard_system74,1550 -static void exec_top_level(int BootMode, YAP_init_args *iap) {exec_top_level89,1928 -int _main(int argc, char **argv)_main115,2623 - -COPYING,0 - -cudd_config.h,106 -#define HAVE_CUDD_CUDD_H HAVE_CUDD_CUDD_H10,225 -#define HAVE_CUDD_CUDDINT_H HAVE_CUDD_CUDDINT_H20,470 - -CVSROOT/checkoutlist,0 - -CVSROOT/commitinfo,0 - -CVSROOT/config,0 - -CVSROOT/cvswrappers,0 - -CVSROOT/editinfo,0 - -CVSROOT/loginfo,0 - -CVSROOT/modules,0 - -CVSROOT/notify,0 - -CVSROOT/rcsinfo,0 - -CVSROOT/syncmail,378 -MAILCMD = '/bin/mail -s "CVS: %(SUBJECT)s" %(PEOPLE)s 2>&1 > /dev/null'MAILCMD71,2201 - file, oldrev, newrev = string.split(filespec, ',')oldrev92,2557 - file, oldrev, newrev = string.split(filespec, ',')newrev92,2557 - lines = ['***** Error reading new file: ',lines107,3108 - opts, args = getopt.getopt(sys.argv[1:], 'hC:cu',args159,4919 - -CVSROOT/taginfo,0 - -CVSROOT/verifymsg,0 - -CXX/yapa.hh,2566 -#define YAPA_HH YAPA_HH6,95 -enum PropTag {PropTag32,809 - PRED_TAG = PEProp, // 0x0000,PRED_TAG34,840 - DB_TAG = DBProperty, // 0x8000,DB_TAG36,936 - FUNCTOR_TAG = FunctorProperty, // 0xBB00,FUNCTOR_TAG38,1039 - ARITHMETIC_PROPERTY_TAG = ExpProperty, // 0xFFE0,ARITHMETIC_PROPERTY_TAG41,1164 - TRANSLATION_TAG = TranslationProperty, // 0xFFF4,TRANSLATION_TAG43,1251 - HOLD_TAG = HoldProperty, // 0xFFF6 HOLD_TAG45,1367 - MUTEX_TAG = MutexProperty, // 0xFFF6,MUTEX_TAG47,1443 - ARRAY_TAG = ArrayProperty, // 0xFFF7, ARRAY_TAG49,1551 - MODULE_TAG = ModProperty, // 0xFFFA,MODULE_TAG51,1624 - BLACKBOARD_TAG = BBProperty, // 0xFFFB,BLACKBOARD_TAG53,1716 - VALUE_TAG = ValProperty, // 0xFFFC,VALUE_TAG55,1815 - GLOBAL_VAR_TAG = GlobalProperty, // 0xFFFDGLOBAL_VAR_TAG57,1914 - BLOB_TAG = BlobProperty, // 0xFFFE,BLOB_TAG59,2001 - OPERATOR_TAG = OpProperty, // 0xFFFF, OPERATOR_TAG61,2087 -class YAPAtom {YAPAtom71,2367 - Atom a;a80,2597 - Atom a;YAPAtom::a80,2597 - YAPAtom( Atom at ) { a = at; }YAPAtom82,2645 - YAPAtom( Atom at ) { a = at; }YAPAtom::YAPAtom82,2645 - YAPAtom( const char * s) { a = Yap_LookupAtom( s ); }YAPAtom85,2732 - YAPAtom( const char * s) { a = Yap_LookupAtom( s ); }YAPAtom::YAPAtom85,2732 - YAPAtom( const wchar_t * s) { CACHE_REGS a = UTF32ToAtom( s PASS_REGS ); }YAPAtom87,2834 - YAPAtom( const wchar_t * s) { CACHE_REGS a = UTF32ToAtom( s PASS_REGS ); }YAPAtom::YAPAtom87,2834 - YAPAtom( const char * s, size_t len) { a = Yap_LookupAtomWithLength( s, len ); }YAPAtom91,3077 - YAPAtom( const char * s, size_t len) { a = Yap_LookupAtomWithLength( s, len ); }YAPAtom::YAPAtom91,3077 - inline const char *text(void) { return getName(); } ;text95,3244 - inline const char *text(void) { return getName(); } ;YAPAtom::text95,3244 - Prop getProp( PropTag tag ) { return Yap_GetAProp( a , (PropFlags)tag ); } getProp97,3324 - Prop getProp( PropTag tag ) { return Yap_GetAProp( a , (PropFlags)tag ); } YAPAtom::getProp97,3324 -class YAPProp {YAPProp107,3598 - YAPProp() { }YAPProp111,3720 - YAPProp() { }YAPProp::YAPProp111,3720 - PropTag tag( Prop p ) { return (PropTag)(p->KindOfPE); }tag113,3759 - PropTag tag( Prop p ) { return (PropTag)(p->KindOfPE); }YAPProp::tag113,3759 - virtual ~YAPProp() {};~YAPProp117,3886 - virtual ~YAPProp() {};YAPProp::~YAPProp117,3886 - -CXX/yapdb.hh,7413 -#define _YAPDB_H_YAPDB_H7,86 -#define YAP_CPP_DB_INTERFACE YAP_CPP_DB_INTERFACE9,104 -class YAPModule : protected YAPAtomTerm {YAPModule46,845 - YAPModule(YAP_Term t) : YAPAtomTerm(t){};YAPModule49,946 - YAPModule(YAP_Term t) : YAPAtomTerm(t){};YAPModule::YAPModule49,946 - Term t() { return gt(); }t50,990 - Term t() { return gt(); }YAPModule::t50,990 - Term curModule() { CACHE_REGS return Yap_CurrentModule(); }curModule51,1018 - Term curModule() { CACHE_REGS return Yap_CurrentModule(); }YAPModule::curModule51,1018 - YAPModule() : YAPAtomTerm(curModule()){};YAPModule54,1089 - YAPModule() : YAPAtomTerm(curModule()){};YAPModule::YAPModule54,1089 - YAPModule(YAPAtom t) : YAPAtomTerm(t){};YAPModule55,1133 - YAPModule(YAPAtom t) : YAPAtomTerm(t){};YAPModule::YAPModule55,1133 -class YAPModuleProp : public YAPProp {YAPModuleProp63,1272 - ModEntry *m;m65,1340 - ModEntry *m;YAPModuleProp::m65,1340 - YAPModuleProp(ModEntry *mod) { m = mod; };YAPModuleProp67,1356 - YAPModuleProp(ModEntry *mod) { m = mod; };YAPModuleProp::YAPModuleProp67,1356 - YAPModuleProp(Term tmod) { m = Yap_GetModuleEntry(tmod); };YAPModuleProp68,1401 - YAPModuleProp(Term tmod) { m = Yap_GetModuleEntry(tmod); };YAPModuleProp::YAPModuleProp68,1401 - YAPModuleProp(YAPModule tmod) { m = Yap_GetModuleEntry(tmod.gt()); };YAPModuleProp71,1472 - YAPModuleProp(YAPModule tmod) { m = Yap_GetModuleEntry(tmod.gt()); };YAPModuleProp::YAPModuleProp71,1472 - YAPModuleProp() { CACHE_REGS m = Yap_GetModuleEntry(Yap_CurrentModule()); };YAPModuleProp72,1544 - YAPModuleProp() { CACHE_REGS m = Yap_GetModuleEntry(Yap_CurrentModule()); };YAPModuleProp::YAPModuleProp72,1544 - virtual YAPModule module() { return YAPModule(m->AtomOfME); };module73,1623 - virtual YAPModule module() { return YAPModule(m->AtomOfME); };YAPModuleProp::module73,1623 -class YAPFunctor : public YAPProp {YAPFunctor79,1759 - Functor f;f84,1901 - Functor f;YAPFunctor::f84,1901 - inline YAPFunctor(Functor ff) { f = ff; }YAPFunctor88,2048 - inline YAPFunctor(Functor ff) { f = ff; }YAPFunctor::YAPFunctor88,2048 - YAPFunctor(YAPAtom at, uintptr_t arity) { f = Yap_MkFunctor(at.a, arity); }YAPFunctor94,2218 - YAPFunctor(YAPAtom at, uintptr_t arity) { f = Yap_MkFunctor(at.a, arity); }YAPFunctor::YAPFunctor94,2218 - inline YAPFunctor(const char *s, uintptr_t arity, bool isutf8 = true) {YAPFunctor101,2499 - inline YAPFunctor(const char *s, uintptr_t arity, bool isutf8 = true) {YAPFunctor::YAPFunctor101,2499 - inline YAPFunctor(const wchar_t *s, uintptr_t arity) {YAPFunctor110,2840 - inline YAPFunctor(const wchar_t *s, uintptr_t arity) {YAPFunctor::YAPFunctor110,2840 - YAPAtom name(void) { return YAPAtom(NameOfFunctor(f)); }name116,3057 - YAPAtom name(void) { return YAPAtom(NameOfFunctor(f)); }YAPFunctor::name116,3057 - uintptr_t arity(void) { return ArityOfFunctor(f); }arity121,3219 - uintptr_t arity(void) { return ArityOfFunctor(f); }YAPFunctor::arity121,3219 -class YAPPredicate : public YAPModuleProp {YAPPredicate129,3359 - PredEntry *ap;ap134,3466 - PredEntry *ap;YAPPredicate::ap134,3466 - PredEntry *asPred() { return ap; };asPred139,3599 - PredEntry *asPred() { return ap; };YAPPredicate::asPred139,3599 - inline YAPPredicate() {YAPPredicate144,3704 - inline YAPPredicate() {YAPPredicate::YAPPredicate144,3704 - YAPPredicate(const char *s0, Term &tout, Term &tnames) {YAPPredicate151,3890 - YAPPredicate(const char *s0, Term &tout, Term &tnames) {YAPPredicate::YAPPredicate151,3890 - inline YAPPredicate(Term t) {YAPPredicate170,4516 - inline YAPPredicate(Term t) {YAPPredicate::YAPPredicate170,4516 - inline YAPPredicate(YAPTerm t) {YAPPredicate179,4706 - inline YAPPredicate(YAPTerm t) {YAPPredicate::YAPPredicate179,4706 - inline YAPPredicate(PredEntry *pe) { ap = pe; }YAPPredicate187,4880 - inline YAPPredicate(PredEntry *pe) { ap = pe; }YAPPredicate::YAPPredicate187,4880 - inline YAPPredicate(Functor f, Term mod) {YAPPredicate191,5048 - inline YAPPredicate(Functor f, Term mod) {YAPPredicate::YAPPredicate191,5048 - YAPPredicate(YAPFunctor f) {YAPPredicate201,5248 - YAPPredicate(YAPFunctor f) {YAPPredicate::YAPPredicate201,5248 - inline YAPPredicate(YAPFunctor f, YAPTerm mod) {YAPPredicate208,5441 - inline YAPPredicate(YAPFunctor f, YAPTerm mod) {YAPPredicate::YAPPredicate208,5441 - inline YAPPredicate(YAPAtom at, YAPTerm mod) {YAPPredicate214,5603 - inline YAPPredicate(YAPAtom at, YAPTerm mod) {YAPPredicate::YAPPredicate214,5603 - inline YAPPredicate(YAPAtom at, uintptr_t arity, YAPModule mod) {YAPPredicate224,5844 - inline YAPPredicate(YAPAtom at, uintptr_t arity, YAPModule mod) {YAPPredicate::YAPPredicate224,5844 - inline YAPPredicate(const char *at, uintptr_t arity) {YAPPredicate239,6263 - inline YAPPredicate(const char *at, uintptr_t arity) {YAPPredicate::YAPPredicate239,6263 - inline YAPPredicate(const char *at, uintptr_t arity, YAPTerm mod) {YAPPredicate246,6511 - inline YAPPredicate(const char *at, uintptr_t arity, YAPTerm mod) {YAPPredicate::YAPPredicate246,6511 - inline YAPPredicate(const char *at, YAPTerm mod) {YAPPredicate253,6741 - inline YAPPredicate(const char *at, YAPTerm mod) {YAPPredicate::YAPPredicate253,6741 - YAPModule module() {module260,6981 - YAPModule module() {YAPPredicate::module260,6981 - YAPAtom name() {name270,7233 - YAPAtom name() {YAPPredicate::name270,7233 - YAPFunctor functor() {functor280,7458 - YAPFunctor functor() {YAPPredicate::functor280,7458 - uintptr_t getArity() { return ap->ArityOfPE; }getArity289,7701 - uintptr_t getArity() { return ap->ArityOfPE; }YAPPredicate::getArity289,7701 - arity_t arity() { return ap->ArityOfPE; }arity290,7750 - arity_t arity() { return ap->ArityOfPE; }YAPPredicate::arity290,7750 -class YAPPrologPredicate : public YAPPredicate {YAPPrologPredicate298,7899 - YAPPrologPredicate(YAPTerm t) : YAPPredicate(t){};YAPPrologPredicate300,7956 - YAPPrologPredicate(YAPTerm t) : YAPPredicate(t){};YAPPrologPredicate::YAPPrologPredicate300,7956 - YAPPrologPredicate(const char *s, arity_t arity) : YAPPredicate(s, arity){};YAPPrologPredicate301,8009 - YAPPrologPredicate(const char *s, arity_t arity) : YAPPredicate(s, arity){};YAPPrologPredicate::YAPPrologPredicate301,8009 - YAPTerm *nextClause() { return nullptr; };nextClause312,8577 - YAPTerm *nextClause() { return nullptr; };YAPPrologPredicate::nextClause312,8577 -class YAPFLIP : public YAPPredicate {YAPFLIP320,8727 - YAPFLIP(CPredicate call, YAPAtom name, uintptr_t arity,YAPFLIP322,8773 - YAPFLIP(CPredicate call, YAPAtom name, uintptr_t arity,YAPFLIP::YAPFLIP322,8773 - YAPFLIP(const char *name, uintptr_t arity, YAPModule module = YAPModule(),YAPFLIP337,9318 - YAPFLIP(const char *name, uintptr_t arity, YAPModule module = YAPModule(),YAPFLIP::YAPFLIP337,9318 - bool addCall(CPredicate call) { return Yap_AddCallToFli(ap, call); }addCall346,9643 - bool addCall(CPredicate call) { return Yap_AddCallToFli(ap, call); }YAPFLIP::addCall346,9643 - bool addRetry(CPredicate call) { return Yap_AddRetryToFli(ap, call); }addRetry347,9714 - bool addRetry(CPredicate call) { return Yap_AddRetryToFli(ap, call); }YAPFLIP::addRetry347,9714 - bool addCut(CPredicate call) { return Yap_AddCutToFli(ap, call); }addCut348,9787 - bool addCut(CPredicate call) { return Yap_AddCutToFli(ap, call); }YAPFLIP::addCut348,9787 - -CXX/yapi.cpp,7918 -#define YAP_CPP_INTERFACE YAP_CPP_INTERFACE2,1 -YAPAtomTerm::YAPAtomTerm(char *s)YAPAtomTerm29,676 -YAPAtomTerm::YAPAtomTerm(char *s)YAPAtomTerm::YAPAtomTerm29,676 -YAPAtomTerm::YAPAtomTerm(char *s, size_t len)YAPAtomTerm45,965 -YAPAtomTerm::YAPAtomTerm(char *s, size_t len)YAPAtomTerm::YAPAtomTerm45,965 -YAPAtomTerm::YAPAtomTerm(wchar_t *s) : YAPTerm()YAPAtomTerm62,1322 -YAPAtomTerm::YAPAtomTerm(wchar_t *s) : YAPTerm()YAPAtomTerm::YAPAtomTerm62,1322 -YAPAtomTerm::YAPAtomTerm(wchar_t *s, size_t len) : YAPTerm()YAPAtomTerm78,1627 -YAPAtomTerm::YAPAtomTerm(wchar_t *s, size_t len) : YAPTerm()YAPAtomTerm::YAPAtomTerm78,1627 -YAPStringTerm::YAPStringTerm(char *s)YAPStringTerm95,2000 -YAPStringTerm::YAPStringTerm(char *s)YAPStringTerm::YAPStringTerm95,2000 -YAPStringTerm::YAPStringTerm(char *s, size_t len)YAPStringTerm111,2283 -YAPStringTerm::YAPStringTerm(char *s, size_t len)YAPStringTerm::YAPStringTerm111,2283 -YAPStringTerm::YAPStringTerm(wchar_t *s) : YAPTerm()YAPStringTerm129,2635 -YAPStringTerm::YAPStringTerm(wchar_t *s) : YAPTerm()YAPStringTerm::YAPStringTerm129,2635 -YAPStringTerm::YAPStringTerm(wchar_t *s, size_t len)YAPStringTerm146,2935 -YAPStringTerm::YAPStringTerm(wchar_t *s, size_t len)YAPStringTerm::YAPStringTerm146,2935 -YAPApplTerm::YAPApplTerm(YAPFunctor f, YAPTerm ts[]) : YAPTerm()YAPApplTerm165,3307 -YAPApplTerm::YAPApplTerm(YAPFunctor f, YAPTerm ts[]) : YAPTerm()YAPApplTerm::YAPApplTerm165,3307 -YAPApplTerm::YAPApplTerm(std::string f, std::vector ts) : YAPTerm()YAPApplTerm177,3592 -YAPApplTerm::YAPApplTerm(std::string f, std::vector ts) : YAPTerm()YAPApplTerm::YAPApplTerm177,3592 -YAPApplTerm::YAPApplTerm(YAPFunctor f) : YAPTerm()YAPApplTerm189,3932 -YAPApplTerm::YAPApplTerm(YAPFunctor f) : YAPTerm()YAPApplTerm::YAPApplTerm189,3932 -YAPFunctor YAPApplTerm::getFunctor() { return YAPFunctor(FunctorOfTerm(gt())); }getFunctor197,4093 -YAPFunctor YAPApplTerm::getFunctor() { return YAPFunctor(FunctorOfTerm(gt())); }YAPApplTerm::getFunctor197,4093 -Term &YAPTerm::operator[](arity_t i)operator []199,4175 -Term &YAPTerm::operator[](arity_t i)YAPTerm::operator []199,4175 -Term &YAPListTerm::operator[](arity_t i)operator []225,4693 -Term &YAPListTerm::operator[](arity_t i)YAPListTerm::operator []225,4693 -YAPPairTerm::YAPPairTerm(YAPTerm th, YAPTerm tl)YAPPairTerm247,5008 -YAPPairTerm::YAPPairTerm(YAPTerm th, YAPTerm tl)YAPPairTerm::YAPPairTerm247,5008 -YAPPairTerm::YAPPairTerm()YAPPairTerm255,5144 -YAPPairTerm::YAPPairTerm()YAPPairTerm::YAPPairTerm255,5144 -YAP_tag_t YAPTerm::tag()tag262,5220 -YAP_tag_t YAPTerm::tag()YAPTerm::tag262,5220 -Term YAPTerm::deepCopy()deepCopy317,6231 -Term YAPTerm::deepCopy()YAPTerm::deepCopy317,6231 -Term YAPListTerm::dup()dup328,6372 -Term YAPListTerm::dup()YAPListTerm::dup328,6372 -intptr_t YAPTerm::numberVars(intptr_t i0, bool skip_singletons)numberVars339,6510 -intptr_t YAPTerm::numberVars(intptr_t i0, bool skip_singletons)YAPTerm::numberVars339,6510 -const char *YAPQuery::text() { return YAPTerm(goal).text(); }text349,6702 -const char *YAPQuery::text() { return YAPTerm(goal).text(); }YAPQuery::text349,6702 -YAPIntegerTerm::YAPIntegerTerm(intptr_t i)YAPIntegerTerm351,6765 -YAPIntegerTerm::YAPIntegerTerm(intptr_t i)YAPIntegerTerm::YAPIntegerTerm351,6765 -YAPTerm::YAPTerm(void *ptr)YAPTerm368,7048 -YAPTerm::YAPTerm(void *ptr)YAPTerm::YAPTerm368,7048 -Term YAPListTerm::car()car374,7125 -Term YAPListTerm::car()YAPListTerm::car374,7125 -YAPListTerm::YAPListTerm(YAPTerm ts[], arity_t n)YAPListTerm387,7314 -YAPListTerm::YAPListTerm(YAPTerm ts[], arity_t n)YAPListTerm::YAPListTerm387,7314 -YAPVarTerm::YAPVarTerm()YAPVarTerm410,7707 -YAPVarTerm::YAPVarTerm()YAPVarTerm::YAPVarTerm410,7707 -const char *YAPAtom::getName(void) { return Yap_AtomToUTF8Text(a, nullptr); }getName416,7769 -const char *YAPAtom::getName(void) { return Yap_AtomToUTF8Text(a, nullptr); }YAPAtom::getName416,7769 -void YAPQuery::openQuery(Term t)openQuery418,7848 -void YAPQuery::openQuery(Term t)YAPQuery::openQuery418,7848 -bool YAPEngine::call(YAPPredicate ap, YAPTerm ts[])call441,8166 -bool YAPEngine::call(YAPPredicate ap, YAPTerm ts[])YAPEngine::call441,8166 -bool YAPEngine::mgoal(Term t, Term tmod)mgoal480,9104 -bool YAPEngine::mgoal(Term t, Term tmod)YAPEngine::mgoal480,9104 -void YAPEngine::release()release537,10263 -void YAPEngine::release()YAPEngine::release537,10263 -Term YAPEngine::fun(Term t)fun545,10374 -Term YAPEngine::fun(Term t)YAPEngine::fun545,10374 -YAPQuery::YAPQuery(YAPFunctor f, YAPTerm mod, YAPTerm ts[])YAPQuery622,12207 -YAPQuery::YAPQuery(YAPFunctor f, YAPTerm mod, YAPTerm ts[])YAPQuery::YAPQuery622,12207 -YAPQuery::YAPQuery(YAPPredicate p, YAPTerm ts[]) : YAPPredicate(p.ap)YAPQuery644,12737 -YAPQuery::YAPQuery(YAPPredicate p, YAPTerm ts[]) : YAPPredicate(p.ap)YAPQuery::YAPQuery644,12737 -bool YAPQuery::next()next653,12984 -bool YAPQuery::next()YAPQuery::next653,12984 -void YAPQuery::cut()cut725,14631 -void YAPQuery::cut()YAPQuery::cut725,14631 -bool YAPQuery::deterministic()deterministic738,14838 -bool YAPQuery::deterministic()YAPQuery::deterministic738,14838 -YAPTerm YAPQuery::getTerm(yhandle_t t) { return YAPTerm(t); }getTerm750,15054 -YAPTerm YAPQuery::getTerm(yhandle_t t) { return YAPTerm(t); }YAPQuery::getTerm750,15054 -void YAPQuery::close()close752,15117 -void YAPQuery::close()YAPQuery::close752,15117 -JNIEnv *Yap_jenv;Yap_jenv776,15533 -JNIEXPORT jint JNICALL JNI_MySQLOnLoad(JavaVM *vm, void *reserved)JNI_MySQLOnLoad780,15628 -char *Yap_AndroidBufp;Yap_AndroidBufp792,15861 -static size_t Yap_AndroidMax, Yap_AndroidSz;Yap_AndroidMax794,15885 -static size_t Yap_AndroidMax, Yap_AndroidSz;Yap_AndroidSz794,15885 -void Yap_displayWithJava(int c)Yap_displayWithJava798,15975 -void YAPEngine::doInit(YAP_file_type_t BootMode)doInit828,16559 -void YAPEngine::doInit(YAP_file_type_t BootMode)YAPEngine::doInit828,16559 -YAPEngine::YAPEngine(int argc, char *argv[],YAPEngine860,17317 -YAPEngine::YAPEngine(int argc, char *argv[],YAPEngine::YAPEngine860,17317 - YAPPredicate::YAPPredicate(YAPAtom at)YAPPredicate874,17701 - YAPPredicate::YAPPredicate(YAPAtom at)YAPPredicate::YAPPredicate874,17701 - YAPPredicate::YAPPredicate(YAPAtom at, uintptr_t arity)YAPPredicate880,17836 - YAPPredicate::YAPPredicate(YAPAtom at, uintptr_t arity)YAPPredicate::YAPPredicate880,17836 - PredEntry *YAPPredicate::getPred(YAPTerm &tt, Term *&outp)getPred895,18207 - PredEntry *YAPPredicate::getPred(YAPTerm &tt, Term *&outp)YAPPredicate::getPred895,18207 - X_API bool YAPPrologPredicate::assertClause(YAPTerm cl, bool last,assertClause937,19134 - X_API bool YAPPrologPredicate::assertClause(YAPTerm cl, bool last,YAPPrologPredicate::assertClause937,19134 - bool YAPPrologPredicate::assertFact(YAPTerm *cl, bool last)assertFact967,19883 - bool YAPPrologPredicate::assertFact(YAPTerm *cl, bool last)YAPPrologPredicate::assertFact967,19883 - void *YAPPrologPredicate::retractClause(YAPTerm skeleton, bool all)retractClause993,20592 - void *YAPPrologPredicate::retractClause(YAPTerm skeleton, bool all)YAPPrologPredicate::retractClause993,20592 - std::string YAPError::text()text998,20693 - std::string YAPError::text()YAPError::text998,20693 - void YAPEngine::reSet()reSet1047,22068 - void YAPEngine::reSet()YAPEngine::reSet1047,22068 - YAPError::YAPError(yap_error_number id, YAPTerm culprit, std::string txt)YAPError1067,22513 - YAPError::YAPError(yap_error_number id, YAPTerm culprit, std::string txt)YAPError::YAPError1067,22513 - Term YAPEngine::top_level( std::string s)top_level1074,22666 - Term YAPEngine::top_level( std::string s)YAPEngine::top_level1074,22666 - Term YAPEngine::next_answer(YAPQuery * &Q) {next_answer1096,23198 - Term YAPEngine::next_answer(YAPQuery * &Q) {YAPEngine::next_answer1096,23198 - -CXX/yapi.hh,50 -#define YAP_CPP_INTERFACE YAP_CPP_INTERFACE9,75 - -CXX/yapie.hh,1102 -#define YAPIE_HHYAPIE_HH24,617 -class YAPError {YAPError30,712 - yap_error_number ID;ID31,729 - yap_error_number ID;YAPError::ID31,729 - std::string goal, info;goal32,752 - std::string goal, info;YAPError::goal32,752 - std::string goal, info;info32,752 - std::string goal, info;YAPError::info32,752 - int swigcode;swigcode33,778 - int swigcode;YAPError::swigcode33,778 - YAPError(){YAPError36,805 - YAPError(){YAPError::YAPError36,805 - yap_error_number getID() { return LOCAL_ActiveError->errorNo; };getID44,1064 - yap_error_number getID() { return LOCAL_ActiveError->errorNo; };YAPError::getID44,1064 - yap_error_class_number getErrorClass() {getErrorClass46,1152 - yap_error_class_number getErrorClass() {YAPError::getErrorClass46,1152 - const char *getFile() { return LOCAL_ActiveError->errorFile; };getFile50,1296 - const char *getFile() { return LOCAL_ActiveError->errorFile; };YAPError::getFile50,1296 - Int getLine() { return LOCAL_ActiveError->errorLine; };getLine52,1395 - Int getLine() { return LOCAL_ActiveError->errorLine; };YAPError::getLine52,1395 - -CXX/yapq.hh,9594 -#define YAPQ_HH YAPQ_HH20,406 -class YAPQuery : public YAPPredicateYAPQuery34,579 - bool q_open;q_open36,618 - bool q_open;YAPQuery::q_open36,618 - int q_state;q_state37,633 - int q_state;YAPQuery::q_state37,633 - yhandle_t q_g, q_handles;q_g38,648 - yhandle_t q_g, q_handles;YAPQuery::q_g38,648 - yhandle_t q_g, q_handles;q_handles38,648 - yhandle_t q_g, q_handles;YAPQuery::q_handles38,648 - struct yami *q_p, *q_cp;q_p39,676 - struct yami *q_p, *q_cp;YAPQuery::q_p39,676 - struct yami *q_p, *q_cp;q_cp39,676 - struct yami *q_p, *q_cp;YAPQuery::q_cp39,676 - sigjmp_buf q_env;q_env40,703 - sigjmp_buf q_env;YAPQuery::q_env40,703 - int q_flags;q_flags41,723 - int q_flags;YAPQuery::q_flags41,723 - YAP_dogoalinfo q_h;q_h42,738 - YAP_dogoalinfo q_h;YAPQuery::q_h42,738 - YAPQuery *oq;oq43,760 - YAPQuery *oq;YAPQuery::oq43,760 - YAPPairTerm names;names44,776 - YAPPairTerm names;YAPQuery::names44,776 - YAPTerm goal;goal45,797 - YAPTerm goal;YAPQuery::goal45,797 - Term tnames, tgoal ;tnames47,830 - Term tnames, tgoal ;YAPQuery::tnames47,830 - Term tnames, tgoal ;tgoal47,830 - Term tnames, tgoal ;YAPQuery::tgoal47,830 - inline void setNext() { // oq = LOCAL_execution;setNext49,854 - inline void setNext() { // oq = LOCAL_execution;YAPQuery::setNext49,854 -YAPQuery() {YAPQuery65,1131 -YAPQuery() {YAPQuery::YAPQuery65,1131 - inline YAPQuery(const char *s) : YAPPredicate(s, tgoal, tnames)YAPQuery90,1986 - inline YAPQuery(const char *s) : YAPPredicate(s, tgoal, tnames)YAPQuery::YAPQuery90,1986 - void setFlag(int flag) { q_flags |= flag; }setFlag118,2927 - void setFlag(int flag) { q_flags |= flag; }YAPQuery::setFlag118,2927 -void resetFlag(int flag) { q_flags &= ~flag; }resetFlag120,3050 -void resetFlag(int flag) { q_flags &= ~flag; }YAPQuery::resetFlag120,3050 -inline bool first() { return next(); }first124,3165 -inline bool first() { return next(); }YAPQuery::first124,3165 -Term namedVars() {return names.term(); };namedVars139,3625 -Term namedVars() {return names.term(); };YAPQuery::namedVars139,3625 -std::vector namedVarsVector() {namedVarsVector141,3704 -std::vector namedVarsVector() {YAPQuery::namedVarsVector141,3704 -inline bool command()command148,3998 -inline bool command()YAPQuery::command148,3998 -class YAPCallbackYAPCallback161,4236 - virtual ~YAPCallback() {}~YAPCallback164,4264 - virtual ~YAPCallback() {}YAPCallback::~YAPCallback164,4264 - virtual void run() { LOG("callback"); }run165,4292 - virtual void run() { LOG("callback"); }YAPCallback::run165,4292 - virtual void run(char *s) {}run166,4334 - virtual void run(char *s) {}YAPCallback::run166,4334 -class YAPEngineArgs {YAPEngineArgs171,4417 - YAP_init_args init_args;init_args175,4449 - YAP_init_args init_args;YAPEngineArgs::init_args175,4449 - inline void setEmbedded( bool fl )setEmbedded177,4477 - inline void setEmbedded( bool fl )YAPEngineArgs::setEmbedded177,4477 - inline bool getEmbedded( )getEmbedded182,4553 - inline bool getEmbedded( )YAPEngineArgs::getEmbedded182,4553 - inline void setStackSize( bool fl )setStackSize187,4624 - inline void setStackSize( bool fl )YAPEngineArgs::setStackSize187,4624 - inline bool getStackSize( )getStackSize192,4702 - inline bool getStackSize( )YAPEngineArgs::getStackSize192,4702 - inline void setTrailSize( bool fl )setTrailSize197,4775 - inline void setTrailSize( bool fl )YAPEngineArgs::setTrailSize197,4775 - inline bool getTrailSize( )getTrailSize202,4853 - inline bool getTrailSize( )YAPEngineArgs::getTrailSize202,4853 - inline bool getMStackSize( )getMStackSize207,4926 - inline bool getMStackSize( )YAPEngineArgs::getMStackSize207,4926 - inline void setMaxTrailSize( bool fl )setMaxTrailSize212,5000 - inline void setMaxTrailSize( bool fl )YAPEngineArgs::setMaxTrailSize212,5000 - inline bool getMaxTrailSize( )getMaxTrailSize217,5084 - inline bool getMaxTrailSize( )YAPEngineArgs::getMaxTrailSize217,5084 - inline void setYapLibDir( const char * fl )setYapLibDir222,5163 - inline void setYapLibDir( const char * fl )YAPEngineArgs::setYapLibDir222,5163 - inline const char * getYapLibDir( )getYapLibDir228,5326 - inline const char * getYapLibDir( )YAPEngineArgs::getYapLibDir228,5326 - inline void setYapShareDir( const char * fl )setYapShareDir233,5407 - inline void setYapShareDir( const char * fl )YAPEngineArgs::setYapShareDir233,5407 - inline const char * getYapShareDir( )getYapShareDir239,5578 - inline const char * getYapShareDir( )YAPEngineArgs::getYapShareDir239,5578 - inline void setSavedState( const char * fl )setSavedState244,5663 - inline void setSavedState( const char * fl )YAPEngineArgs::setSavedState244,5663 - inline const char * getSavedState( )getSavedState250,5829 - inline const char * getSavedState( )YAPEngineArgs::getSavedState250,5829 - inline void setYapPrologBootFile( const char * fl )setYapPrologBootFile255,5912 - inline void setYapPrologBootFile( const char * fl )YAPEngineArgs::setYapPrologBootFile255,5912 - inline const char * getYapPrologBootFile( )getYapPrologBootFile261,6097 - inline const char * getYapPrologBootFile( )YAPEngineArgs::getYapPrologBootFile261,6097 - inline void setYapPrologGoal( const char * fl )setYapPrologGoal266,6194 - inline void setYapPrologGoal( const char * fl )YAPEngineArgs::setYapPrologGoal266,6194 - inline const char * getYapPrologGoal( )getYapPrologGoal271,6288 - inline const char * getYapPrologGoal( )YAPEngineArgs::getYapPrologGoal271,6288 - inline void setYapPrologTopLevelGoal( const char * fl )setYapPrologTopLevelGoal276,6377 - inline void setYapPrologTopLevelGoal( const char * fl )YAPEngineArgs::setYapPrologTopLevelGoal276,6377 - inline const char * getYapPrologTopLevelGoal( )getYapPrologTopLevelGoal281,6487 - inline const char * getYapPrologTopLevelGoal( )YAPEngineArgs::getYapPrologTopLevelGoal281,6487 - inline void setHaltAfterConsult( bool fl )setHaltAfterConsult286,6592 - inline void setHaltAfterConsult( bool fl )YAPEngineArgs::setHaltAfterConsult286,6592 - inline bool getHaltAfterConsult( )getHaltAfterConsult291,6684 - inline bool getHaltAfterConsult( )YAPEngineArgs::getHaltAfterConsult291,6684 - inline void setFastBoot( bool fl )setFastBoot296,6771 - inline void setFastBoot( bool fl )YAPEngineArgs::setFastBoot296,6771 - inline bool getFastBoot( )getFastBoot301,6847 - inline bool getFastBoot( )YAPEngineArgs::getFastBoot301,6847 - inline void setArgc( int fl )setArgc306,6918 - inline void setArgc( int fl )YAPEngineArgs::setArgc306,6918 - inline int getArgc( )getArgc311,6986 - inline int getArgc( )YAPEngineArgs::getArgc311,6986 - inline void setArgv( char ** fl )setArgv316,7048 - inline void setArgv( char ** fl )YAPEngineArgs::setArgv316,7048 - inline char ** getArgv( )getArgv321,7119 - inline char ** getArgv( )YAPEngineArgs::getArgv321,7119 - YAPEngineArgs() {YAPEngineArgs326,7185 - YAPEngineArgs() {YAPEngineArgs::YAPEngineArgs326,7185 - class YAPEngineYAPEngine342,7470 - YAPEngineArgs *engine_args;engine_args345,7499 - YAPEngineArgs *engine_args;YAPEngine::engine_args345,7499 - YAPCallback *_callback;_callback346,7529 - YAPCallback *_callback;YAPEngine::_callback346,7529 - YAPError yerror;yerror347,7555 - YAPError yerror;YAPEngine::yerror347,7555 - YAP_dogoalinfo q;q349,7615 - YAP_dogoalinfo q;YAPEngine::q349,7615 - YAPEngine(YAPEngineArgs *cargs) {YAPEngine353,7713 - YAPEngine(YAPEngineArgs *cargs) {YAPEngine::YAPEngine353,7713 - ~YAPEngine() { delYAPCallback(); };~YAPEngine362,8074 - ~YAPEngine() { delYAPCallback(); };YAPEngine::~YAPEngine362,8074 - void delYAPCallback() { _callback = 0; };delYAPCallback364,8142 - void delYAPCallback() { _callback = 0; };YAPEngine::delYAPCallback364,8142 - void setYAPCallback(YAPCallback *cb)setYAPCallback366,8211 - void setYAPCallback(YAPCallback *cb)YAPEngine::setYAPCallback366,8211 - void run(char *s)run374,8431 - void run(char *s)YAPEngine::run374,8431 - void close() { Yap_exit(0); }close380,8518 - void close() { Yap_exit(0); }YAPEngine::close380,8518 - bool hasError() { return LOCAL_Error_TYPE != YAP_NO_ERROR; }hasError383,8600 - bool hasError() { return LOCAL_Error_TYPE != YAP_NO_ERROR; }YAPEngine::hasError383,8600 - YAPQuery *query(const char *s) { return new YAPQuery(s); };query385,8697 - YAPQuery *query(const char *s) { return new YAPQuery(s); };YAPEngine::query385,8697 - YAPModule currentModule() { return YAPModule(); }currentModule387,8795 - YAPModule currentModule() { return YAPModule(); }YAPEngine::currentModule387,8795 - inline YAPTerm getTerm(yhandle_t h) { return YAPTerm(h); }getTerm389,8898 - inline YAPTerm getTerm(yhandle_t h) { return YAPTerm(h); }YAPEngine::getTerm389,8898 - bool goalt(YAPTerm Yt) { return Yt.term(); };goalt393,9081 - bool goalt(YAPTerm Yt) { return Yt.term(); };YAPEngine::goalt393,9081 - bool goal(Term t)goal398,9241 - bool goal(Term t)YAPEngine::goal398,9241 - const char *currentDir()currentDir408,9456 - const char *currentDir()YAPEngine::currentDir408,9456 - const char *version()version415,9618 - const char *version()YAPEngine::version415,9618 - YAPTerm fun(YAPTerm t) { return YAPTerm(fun(t.term())); };fun423,9857 - YAPTerm fun(YAPTerm t) { return YAPTerm(fun(t.term())); };YAPEngine::fun423,9857 - bool setStringFlag(std::string arg, std::string path)setStringFlag427,9983 - bool setStringFlag(std::string arg, std::string path)YAPEngine::setStringFlag427,9983 - -CXX/yapt.hh,13854 -#define YAPT_HH YAPT_HH26,569 -class YAPTerm {YAPTerm37,707 - yhandle_t t; /// handle to term, equivalent to term_tt47,936 - yhandle_t t; /// handle to term, equivalent to term_tYAPTerm::t47,936 - Term gt() {gt50,1001 - Term gt() {YAPTerm::gt50,1001 - void mk(Term t0) {mk57,1186 - void mk(Term t0) {YAPTerm::mk57,1186 - void put(Term t0) {put62,1326 - void put(Term t0) {YAPTerm::put62,1326 - YAPTerm(Term tn) { mk(tn); };YAPTerm67,1458 - YAPTerm(Term tn) { mk(tn); };YAPTerm::YAPTerm67,1458 - YAPTerm() { t=0; };YAPTerm77,1741 - YAPTerm() { t=0; };YAPTerm::YAPTerm77,1741 - YAPTerm(char *s) {YAPTerm82,1888 - YAPTerm(char *s) {YAPTerm::YAPTerm82,1888 - virtual ~YAPTerm() {~YAPTerm89,2010 - virtual ~YAPTerm() {YAPTerm::~YAPTerm89,2010 - inline Term term() {term116,2950 - inline Term term() {YAPTerm::term116,2950 - inline void bind(Term b) { LOCAL_HandleBase[t] = b; }bind119,3049 - inline void bind(Term b) { LOCAL_HandleBase[t] = b; }YAPTerm::bind119,3049 - inline void bind(YAPTerm *b) { LOCAL_HandleBase[t] = b->term(); }bind120,3105 - inline void bind(YAPTerm *b) { LOCAL_HandleBase[t] = b->term(); }YAPTerm::bind120,3105 - virtual bool exactlyEqual(YAPTerm t1) {exactlyEqual126,3340 - virtual bool exactlyEqual(YAPTerm t1) {YAPTerm::exactlyEqual126,3340 - virtual bool unify(YAPTerm t1) {unify135,3521 - virtual bool unify(YAPTerm t1) {YAPTerm::unify135,3521 - virtual bool unifiable(YAPTerm t1) {unifiable144,3717 - virtual bool unifiable(YAPTerm t1) {YAPTerm::unifiable144,3717 - inline virtual YAP_Term variant(YAPTerm t1) {variant154,3973 - inline virtual YAP_Term variant(YAPTerm t1) {YAPTerm::variant154,3973 - virtual intptr_t hashTerm(size_t sz, size_t depth, bool variant) {hashTerm162,4156 - virtual intptr_t hashTerm(size_t sz, size_t depth, bool variant) {YAPTerm::hashTerm162,4156 - virtual bool isVar() { return IsVarTerm(gt()); } /// type check for unoundisVar171,4387 - virtual bool isVar() { return IsVarTerm(gt()); } /// type check for unoundYAPTerm::isVar171,4387 - virtual bool isAtom() { return IsAtomTerm(gt()); } /// type check for atomisAtom172,4466 - virtual bool isAtom() { return IsAtomTerm(gt()); } /// type check for atomYAPTerm::isAtom172,4466 - virtual bool isInteger() {isInteger173,4544 - virtual bool isInteger() {YAPTerm::isInteger173,4544 - virtual bool isFloat() {isFloat176,4636 - virtual bool isFloat() {YAPTerm::isFloat176,4636 - virtual bool isString() {isString179,4731 - virtual bool isString() {YAPTerm::isString179,4731 - virtual bool isCompound() {isCompound182,4830 - virtual bool isCompound() {YAPTerm::isCompound182,4830 - virtual bool isAppl() { return IsApplTerm(gt()); } /// is a structured termisAppl185,4987 - virtual bool isAppl() { return IsApplTerm(gt()); } /// is a structured termYAPTerm::isAppl185,4987 - virtual bool isPair() { return IsPairTerm(gt()); } /// is a pair termisPair186,5065 - virtual bool isPair() { return IsPairTerm(gt()); } /// is a pair termYAPTerm::isPair186,5065 - virtual bool isGround() { return Yap_IsGroundTerm(gt()); } /// term is groundisGround187,5137 - virtual bool isGround() { return Yap_IsGroundTerm(gt()); } /// term is groundYAPTerm::isGround187,5137 - virtual bool isList() { return Yap_IsListTerm(gt()); } /// term is a listisList188,5217 - virtual bool isList() { return Yap_IsListTerm(gt()); } /// term is a listYAPTerm::isList188,5217 - virtual Term getArg(arity_t i) {getArg191,5361 - virtual Term getArg(arity_t i) {YAPTerm::getArg191,5361 - virtual inline arity_t arity() {arity216,6026 - virtual inline arity_t arity() {YAPTerm::arity216,6026 - virtual const char *text() {text231,6366 - virtual const char *text() {YAPTerm::text231,6366 - inline yhandle_t handle() { return t; };handle251,6860 - inline yhandle_t handle() { return t; };YAPTerm::handle251,6860 - inline bool initialized() { return t != 0; };initialized254,6960 - inline bool initialized() { return t != 0; };YAPTerm::initialized254,6960 -class YAPVarTerm : public YAPTerm {YAPVarTerm260,7044 - YAPVarTerm(Term t) {YAPVarTerm261,7080 - YAPVarTerm(Term t) {YAPVarTerm::YAPVarTerm261,7080 - CELL *getVar() { return VarOfTerm(gt()); }getVar271,7231 - CELL *getVar() { return VarOfTerm(gt()); }YAPVarTerm::getVar271,7231 - bool unbound() { return IsUnboundVar(VarOfTerm(gt())); }unbound273,7319 - bool unbound() { return IsUnboundVar(VarOfTerm(gt())); }YAPVarTerm::unbound273,7319 - virtual bool isVar() { return true; } /// type check for unboundisVar274,7378 - virtual bool isVar() { return true; } /// type check for unboundYAPVarTerm::isVar274,7378 - virtual bool isAtom() { return false; } /// type check for atomisAtom275,7450 - virtual bool isAtom() { return false; } /// type check for atomYAPVarTerm::isAtom275,7450 - virtual bool isInteger() { return false; } /// type check for integerisInteger276,7520 - virtual bool isInteger() { return false; } /// type check for integerYAPVarTerm::isInteger276,7520 - virtual bool isFloat() { return false; } /// type check for floating-pointisFloat277,7592 - virtual bool isFloat() { return false; } /// type check for floating-pointYAPVarTerm::isFloat277,7592 - virtual bool isString() { return false; } /// type check for a string " ... "isString278,7671 - virtual bool isString() { return false; } /// type check for a string " ... "YAPVarTerm::isString278,7671 - virtual bool isCompound() { return false; } /// is a primitive termisCompound279,7752 - virtual bool isCompound() { return false; } /// is a primitive termYAPVarTerm::isCompound279,7752 - virtual bool isAppl() { return false; } /// is a structured termisAppl280,7822 - virtual bool isAppl() { return false; } /// is a structured termYAPVarTerm::isAppl280,7822 - virtual bool isPair() { return false; } /// is a pair termisPair281,7893 - virtual bool isPair() { return false; } /// is a pair termYAPVarTerm::isPair281,7893 - virtual bool isGround() { return false; } /// term is groundisGround282,7958 - virtual bool isGround() { return false; } /// term is groundYAPVarTerm::isGround282,7958 - virtual bool isList() { return false; } /// term is a listisList283,8023 - virtual bool isList() { return false; } /// term is a listYAPVarTerm::isList283,8023 -class YAPApplTerm : public YAPTerm {YAPApplTerm289,8124 - YAPApplTerm(Term t0) { mk(t0); }YAPApplTerm293,8194 - YAPApplTerm(Term t0) { mk(t0); }YAPApplTerm::YAPApplTerm293,8194 - YAPApplTerm(Functor f, Term ts[]) {YAPApplTerm294,8231 - YAPApplTerm(Functor f, Term ts[]) {YAPApplTerm::YAPApplTerm294,8231 - Term getArg(arity_t i) {getArg304,8552 - Term getArg(arity_t i) {YAPApplTerm::getArg304,8552 - virtual bool isVar() { return false; } /// type check for unboundisVar312,8714 - virtual bool isVar() { return false; } /// type check for unboundYAPApplTerm::isVar312,8714 - virtual bool isAtom() { return false; } /// type check for atomisAtom313,8786 - virtual bool isAtom() { return false; } /// type check for atomYAPApplTerm::isAtom313,8786 - virtual bool isInteger() { return false; } /// type check for integerisInteger314,8856 - virtual bool isInteger() { return false; } /// type check for integerYAPApplTerm::isInteger314,8856 - virtual bool isFloat() { return false; } /// type check for floating-pointisFloat315,8928 - virtual bool isFloat() { return false; } /// type check for floating-pointYAPApplTerm::isFloat315,8928 - virtual bool isString() { return false; } /// type check for a string " ... "isString316,9007 - virtual bool isString() { return false; } /// type check for a string " ... "YAPApplTerm::isString316,9007 - virtual bool isCompound() { return true; } /// is a primitive termisCompound317,9088 - virtual bool isCompound() { return true; } /// is a primitive termYAPApplTerm::isCompound317,9088 - virtual bool isAppl() { return true; } /// is a structured termisAppl318,9157 - virtual bool isAppl() { return true; } /// is a structured termYAPApplTerm::isAppl318,9157 - virtual bool isPair() { return false; } /// is a pair termisPair319,9227 - virtual bool isPair() { return false; } /// is a pair termYAPApplTerm::isPair319,9227 - virtual bool isGround() { return true; } /// term is groundisGround320,9291 - virtual bool isGround() { return true; } /// term is groundYAPApplTerm::isGround320,9291 - virtual bool isList() { return false; } /// [] is a listisList321,9355 - virtual bool isList() { return false; } /// [] is a listYAPApplTerm::isList321,9355 -class YAPPairTerm : public YAPTerm {YAPPairTerm327,9461 - YAPPairTerm(Term t0) {YAPPairTerm332,9532 - YAPPairTerm(Term t0) {YAPPairTerm::YAPPairTerm332,9532 - Term getHead() { return (HeadOfTerm(gt())); }getHead341,9778 - Term getHead() { return (HeadOfTerm(gt())); }YAPPairTerm::getHead341,9778 - Term getTail() { return (TailOfTerm(gt())); }getTail342,9826 - Term getTail() { return (TailOfTerm(gt())); }YAPPairTerm::getTail342,9826 - std::vector listToArray() {listToArray343,9874 - std::vector listToArray() {YAPPairTerm::listToArray343,9874 -class YAPNumberTerm : public YAPTerm {YAPNumberTerm365,10287 - YAPNumberTerm(){};YAPNumberTerm367,10334 - YAPNumberTerm(){};YAPNumberTerm::YAPNumberTerm367,10334 - bool isTagged() { return IsIntTerm(gt()); }isTagged368,10355 - bool isTagged() { return IsIntTerm(gt()); }YAPNumberTerm::isTagged368,10355 -class YAPIntegerTerm : public YAPNumberTerm {YAPIntegerTerm375,10437 - intptr_t getInteger() { return IntegerOfTerm(gt()); };getInteger378,10521 - intptr_t getInteger() { return IntegerOfTerm(gt()); };YAPIntegerTerm::getInteger378,10521 -class YAPFloatTerm : public YAPNumberTerm {YAPFloatTerm385,10621 - YAPFloatTerm(double dbl) { mk(MkFloatTerm(dbl)); };YAPFloatTerm387,10673 - YAPFloatTerm(double dbl) { mk(MkFloatTerm(dbl)); };YAPFloatTerm::YAPFloatTerm387,10673 - double getFl() { return FloatOfTerm(gt()); };getFl389,10728 - double getFl() { return FloatOfTerm(gt()); };YAPFloatTerm::getFl389,10728 -class YAPListTerm : public YAPTerm {YAPListTerm392,10780 - YAPListTerm() { mk(TermNil); /* else type_error */ }YAPListTerm397,10934 - YAPListTerm() { mk(TermNil); /* else type_error */ }YAPListTerm::YAPListTerm397,10934 - YAPListTerm(Term t0) { mk(t0); /* else type_error */ }YAPListTerm401,11054 - YAPListTerm(Term t0) { mk(t0); /* else type_error */ }YAPListTerm::YAPListTerm401,11054 - size_t length() {length409,11380 - size_t length() {YAPListTerm::length409,11380 - Term cdr() {cdr423,11704 - Term cdr() {YAPListTerm::cdr423,11704 - inline bool nil() {nil440,12050 - inline bool nil() {YAPListTerm::nil440,12050 -class YAPStringTerm : public YAPTerm {YAPStringTerm450,12143 - const char *getString() { return StringOfTerm(gt()); }getString460,12492 - const char *getString() { return StringOfTerm(gt()); }YAPStringTerm::getString460,12492 -class YAPAtomTerm : public YAPTerm {YAPAtomTerm467,12615 - YAPAtomTerm(Atom a) { mk(MkAtomTerm(a)); }YAPAtomTerm470,12715 - YAPAtomTerm(Atom a) { mk(MkAtomTerm(a)); }YAPAtomTerm::YAPAtomTerm470,12715 - YAPAtomTerm(Term t) : YAPTerm(t) { IsAtomTerm(t); }YAPAtomTerm471,12760 - YAPAtomTerm(Term t) : YAPTerm(t) { IsAtomTerm(t); }YAPAtomTerm::YAPAtomTerm471,12760 - YAPAtomTerm(YAPAtom a) : YAPTerm() { mk(MkAtomTerm(a.a)); }YAPAtomTerm475,12859 - YAPAtomTerm(YAPAtom a) : YAPTerm() { mk(MkAtomTerm(a.a)); }YAPAtomTerm::YAPAtomTerm475,12859 - bool isVar() { return false; } /// type check for unboundisVar484,13322 - bool isVar() { return false; } /// type check for unboundYAPAtomTerm::isVar484,13322 - bool isAtom() { return true; } /// type check for atomisAtom485,13392 - bool isAtom() { return true; } /// type check for atomYAPAtomTerm::isAtom485,13392 - bool isInteger() { return false; } /// type check for integerisInteger486,13460 - bool isInteger() { return false; } /// type check for integerYAPAtomTerm::isInteger486,13460 - bool isFloat() { return false; } /// type check for floating-pointisFloat487,13530 - bool isFloat() { return false; } /// type check for floating-pointYAPAtomTerm::isFloat487,13530 - bool isString() { return false; } /// type check for a string " ... "isString488,13607 - bool isString() { return false; } /// type check for a string " ... "YAPAtomTerm::isString488,13607 - bool isCompound() { return false; } /// is a primitive termisCompound489,13686 - bool isCompound() { return false; } /// is a primitive termYAPAtomTerm::isCompound489,13686 - bool isAppl() { return false; } /// is a structured termisAppl490,13753 - bool isAppl() { return false; } /// is a structured termYAPAtomTerm::isAppl490,13753 - bool isPair() { return false; } /// is a pair termisPair491,13821 - bool isPair() { return false; } /// is a pair termYAPAtomTerm::isPair491,13821 - virtual bool isGround() { return true; } /// term is groundisGround492,13883 - virtual bool isGround() { return true; } /// term is groundYAPAtomTerm::isGround492,13883 - virtual bool isList() { return gt() == TermNil; } /// [] is a listisList493,13945 - virtual bool isList() { return gt() == TermNil; } /// [] is a listYAPAtomTerm::isList493,13945 - YAPAtom getAtom() { return YAPAtom(AtomOfTerm(gt())); }getAtom495,14045 - YAPAtom getAtom() { return YAPAtom(AtomOfTerm(gt())); }YAPAtomTerm::getAtom495,14045 - const char *text() { return (const char *)AtomOfTerm(gt())->StrOfAE; }text497,14168 - const char *text() { return (const char *)AtomOfTerm(gt())->StrOfAE; }YAPAtomTerm::text497,14168 - -distribute,0 - -GPATH,18 -b1h1,0 -b1H1,0 - -GRTAGS,36 -b1L1,0 -b1D1,0 -b1P1,0 -b1H1,0 - -GTAGS,42 - @ h(X@l3989,590004 - -H/#LOCALS#,0 - -H/absmi-interpretrer.h,73 -#define Project_absmi_interpretrer_hProject_absmi_interpretrer_h10,134 - -H/absmi-switch.h,1642 -#define ABSMI_THREADED_HABSMI_THREADED_H36,1206 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH40,1249 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W42,1288 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD44,1329 -#define START_PREFETCH(START_PREFETCH46,1364 -#define START_PREFETCH_W(START_PREFETCH_W48,1396 -#define INIT_PREFETCH(INIT_PREFETCH50,1430 -#define PREFETCH_OP(PREFETCH_OP52,1457 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH56,1488 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W58,1525 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD60,1564 -#define START_PREFETCH(START_PREFETCH62,1597 -#define START_PREFETCH_W(START_PREFETCH_W64,1627 -#define INIT_PREFETCH(INIT_PREFETCH66,1659 -#define PREFETCH_OP(PREFETCH_OP68,1684 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH74,1749 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W76,1782 -#define END_PREFETCH(END_PREFETCH78,1817 -#define END_PREFETCH_W(END_PREFETCH_W80,1843 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH84,1878 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W86,1909 -#define END_PREFETCH(END_PREFETCH88,1942 -#define END_PREFETCH_W(END_PREFETCH_W90,1966 -#define DO_PREFETCH(DO_PREFETCH94,2014 -#define DO_PREFETCH_W(DO_PREFETCH_W96,2041 - #define JMPNext(JMPNext98,2070 - #define JMPNextW(JMPNextW100,2102 - #define baGONext(baGONext102,2142 -#define GONextW(GONextW104,2174 -#define ALWAYS_GONext(ALWAYS_GONext106,2204 -#define ALWAYS_GONextW(ALWAYS_GONextW108,2238 -#define Op(Op110,2274 -#define OpW(OpW112,2338 -#define BOp(BOp114,2405 -#define PBOp(PBOp116,2448 -#define OpRW(OpRW118,2507 - -H/absmi-threaded.h,1829 -#define ABSMI_THREADED_HABSMI_THREADED_H46,1597 -#define DO_PREFETCH(DO_PREFETCH54,1676 -#define DO_PREFETCH_W(DO_PREFETCH_W60,1964 -#define DO_PREFETCH(DO_PREFETCH68,2288 -#define DO_PREFETCH_W(DO_PREFETCH_W70,2356 -#define DO_PREFETCH(DO_PREFETCH76,2476 -#define DO_PREFETCH_W(DO_PREFETCH_W78,2503 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH86,2607 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD90,2704 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD98,3041 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W102,3144 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH107,3240 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W109,3279 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD111,3320 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH119,3457 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD121,3494 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W123,3526 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH127,3572 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W129,3609 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD131,3648 -#define START_PREFETCH(START_PREFETCH141,3786 -#define START_PREFETCH_W(START_PREFETCH_W143,3844 -#define INIT_PREFETCH(INIT_PREFETCH145,3906 -#define PREFETCH_OP(PREFETCH_OP148,3965 -#define START_PREFETCH(START_PREFETCH156,4232 -#define START_PREFETCH_W(START_PREFETCH_W158,4264 -#define INIT_PREFETCH(INIT_PREFETCH160,4298 -#define PREFETCH_OP(PREFETCH_OP162,4325 -#define START_PREFETCH(START_PREFETCH170,4419 -#define START_PREFETCH_W(START_PREFETCH_W172,4477 -#define INIT_PREFETCH(INIT_PREFETCH174,4539 -#define PREFETCH_OP(PREFETCH_OP176,4564 -#define START_PREFETCH(START_PREFETCH180,4595 -#define START_PREFETCH_W(START_PREFETCH_W182,4625 -#define INIT_PREFETCH(INIT_PREFETCH184,4657 -#define PREFETCH_OP(PREFETCH_OP186,4682 - -H/absmi-traced.h,1219 -#define ABSMI_THREADED_HABSMI_THREADED_H44,1448 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH46,1474 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W48,1511 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD50,1550 -#define START_PREFETCH(START_PREFETCH52,1583 -#define START_PREFETCH_W(START_PREFETCH_W54,1613 -#define INIT_PREFETCH(INIT_PREFETCH56,1645 -#define PREFETCH_OP(PREFETCH_OP58,1670 -#define DO_PREFETCH(DO_PREFETCH60,1694 -#define DO_PREFETCH_W(DO_PREFETCH_W62,1721 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH64,1750 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W66,1781 -#define END_PREFETCH(END_PREFETCH68,1814 -#define END_PREFETCH_W(END_PREFETCH_W70,1838 - #define Op(Op75,1885 - #define OpW(OpW81,2111 - #define BOp(BOp87,2336 - #define PBOp(PBOp92,2531 - #define OpRW(OpRW98,2749 -#define JMPNext(JMPNext106,2973 -#define JMPNextW(JMPNextW108,3004 -#define GONext(GONext110,3043 -#define GONextW(GONextW112,3072 -#define ALWAYS_GONext(ALWAYS_GONext114,3102 -#define ALWAYS_GONextW(ALWAYS_GONextW116,3136 - #define Op(Op118,3172 - #define OpW(OpW121,3241 - #define BOp(BOp124,3312 - #define PBOp(PBOp127,3360 - #define OpRW(OpRW130,3424 - -H/absmi.h,16896 -#define ABSMI_H ABSMI_H20,720 -#define EXEC_NATIVE(EXEC_NATIVE25,784 -#define MAX_INVOCATION MAX_INVOCATION26,807 -#define Yapc_Compile(Yapc_Compile27,835 -#define registerregister31,888 -#define SHADOW_P SHADOW_P43,1192 -#define SHADOW_Y SHADOW_Y44,1211 -#define SHADOW_REGS SHADOW_REGS45,1230 -#define USE_PREFETCH USE_PREFETCH46,1252 -#define SHADOW_P SHADOW_P50,1298 -#define SHADOW_Y SHADOW_Y51,1317 -#define SHADOW_REGS SHADOW_REGS52,1336 -#define USE_PREFETCH USE_PREFETCH53,1358 -#define SHADOW_P SHADOW_P56,1432 -#define SHADOW_REGS SHADOW_REGS57,1451 -#define USE_PREFETCH USE_PREFETCH58,1473 -#define Y_IN_MEM Y_IN_MEM62,1516 -#define S_IN_MEM S_IN_MEM63,1535 -#define TR_IN_MEM TR_IN_MEM64,1554 -#define HAVE_FEW_REGS HAVE_FEW_REGS65,1574 -#define LIMITED_PREFETCH LIMITED_PREFETCH66,1598 -#define PREG PREG73,1924 -#define NEEDS_TO_SET_PC NEEDS_TO_SET_PC75,1950 -#define SHADOW_P SHADOW_P80,2029 -#undef BP_FREEBP_FREE82,2063 -#define S_IN_MEM S_IN_MEM84,2085 -#define Y_IN_MEM Y_IN_MEM85,2104 -#define TR_IN_MEM TR_IN_MEM86,2123 -#define SHADOW_P SHADOW_P90,2182 -#undef BP_FREEBP_FREE92,2216 -#define SHADOW_S SHADOW_S94,2238 -#define S_IN_MEM S_IN_MEM96,2284 -#define Y_IN_MEM Y_IN_MEM97,2303 -#define TR_IN_MEM TR_IN_MEM98,2322 -#define LIMITED_PREFETCH LIMITED_PREFETCH99,2342 -#define Y_IN_MEM Y_IN_MEM105,2522 -#define S_IN_MEM S_IN_MEM106,2541 -#define TR_IN_MEM TR_IN_MEM107,2560 -#define HAVE_FEW_REGS HAVE_FEW_REGS108,2580 -#define S_IN_MEM S_IN_MEM113,2641 -#define SHADOW_P SHADOW_P117,2716 -#define SHADOW_REGS SHADOW_REGS118,2735 -#define SHADOW_S SHADOW_S119,2757 -#define Y_IN_MEM Y_IN_MEM123,2796 -#define S_IN_MEM S_IN_MEM124,2815 -#define TR_IN_MEM TR_IN_MEM125,2834 -#define HAVE_FEW_REGS HAVE_FEW_REGS126,2854 -#define SHADOW_P SHADOW_P130,2906 -#define SHADOW_Y SHADOW_Y131,2925 -#define SHADOW_S SHADOW_S132,2944 -#define SHADOW_CP SHADOW_CP133,2963 -#define SHADOW_HB SHADOW_HB134,2983 -#define USE_PREFETCH USE_PREFETCH135,3003 -INLINE_ONLY inline EXTERN void init_absmi_regs(REGSTORE *absmi_regs) {init_absmi_regs180,4139 -INLINE_ONLY inline EXTERN void restore_absmi_regs(REGSTORE *old_regs) {restore_absmi_regs187,4348 -#define BEGP(BEGP207,4862 -#define ENDP(ENDP209,4881 -#define BEGD(BEGD211,4900 -#define ENDD(ENDD213,4919 -#define BEGP(BEGP217,4945 -#define ENDP(ENDP221,5131 -#define BEGD(BEGD223,5152 -#define ENDD(ENDD227,5337 -#define BEGCHO(BEGCHO231,5393 -#define ENDCHO(ENDCHO235,5583 -#define CACHE_Y(CACHE_Y244,5887 -#define ENDCACHE_Y(ENDCACHE_Y248,6092 -#define B_YREG B_YREG252,6259 -#define S_YREG S_YREG256,6304 -#define B_YREG B_YREG258,6327 -#define CACHE_Y(CACHE_Y260,6363 -#define ENDCACHE_Y(ENDCACHE_Y264,6551 -#define CACHE_Y_AS_ENV(CACHE_Y_AS_ENV270,6597 -#define FETCH_Y_FROM_ENV(FETCH_Y_FROM_ENV274,6794 -#define WRITEBACK_Y_AS_ENV(WRITEBACK_Y_AS_ENV276,6838 -#define ENDCACHE_Y_AS_ENV(ENDCACHE_Y_AS_ENV278,6884 -#define saveregs_and_ycache(saveregs_and_ycache280,6915 -#define setregs_and_ycache(setregs_and_ycache284,7091 -#define ENV_YREG ENV_YREG290,7273 -#define WRITEBACK_Y_AS_ENV(WRITEBACK_Y_AS_ENV292,7298 -#define CACHE_Y_AS_ENV(CACHE_Y_AS_ENV294,7328 -#define FETCH_Y_FROM_ENV(FETCH_Y_FROM_ENV298,7506 -#define ENDCACHE_Y_AS_ENV(ENDCACHE_Y_AS_ENV300,7539 -#define saveregs_and_ycache(saveregs_and_ycache302,7570 -#define setregs_and_ycache(setregs_and_ycache304,7612 -#define CACHE_A1(CACHE_A1310,7674 -#define CACHED_A1(CACHED_A1312,7694 -#define CACHE_A1(CACHE_A1318,7744 -#define CACHED_A1(CACHED_A1320,7786 -#define CACHE_A1(CACHE_A1324,7827 -#define CACHED_A1(CACHED_A1326,7873 -#define CACHE_TR(CACHE_TR339,8236 -#define RESTORE_TR(RESTORE_TR341,8287 -#define ENDCACHE_TR(ENDCACHE_TR343,8319 -#define CACHE_TR(CACHE_TR347,8349 -#define RESTORE_TR(RESTORE_TR351,8546 -#define ENDCACHE_TR(ENDCACHE_TR353,8578 -#define CACHE_S(CACHE_S367,8994 -#define ENDCACHE_S(ENDCACHE_S371,9184 -#define READ_IN_S(READ_IN_S375,9225 -#define READ_IN_S(READ_IN_S379,9267 -#define CACHE_S(CACHE_S387,9368 -#define ENDCACHE_S(ENDCACHE_S389,9389 -#define READ_IN_S(READ_IN_S391,9413 -#define S_SREG S_SREG393,9434 -#define WRITEBACK_S(WRITEBACK_S399,9480 -#define WRITEBACK_S(WRITEBACK_S403,9522 -#define DO_PREFETCH(DO_PREFETCH423,10109 -#define DO_PREFETCH_W(DO_PREFETCH_W425,10136 -#define DO_PREFETCH(DO_PREFETCH433,10220 -#define DO_PREFETCH_W(DO_PREFETCH_W440,10673 -#define DO_PREFETCH(DO_PREFETCH450,11235 -#define DO_PREFETCH_W(DO_PREFETCH_W452,11304 -#define DO_PREFETCH(DO_PREFETCH458,11425 -#define DO_PREFETCH_W(DO_PREFETCH_W460,11452 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH468,11558 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD474,11836 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD483,12453 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W488,12680 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH495,12955 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W497,12994 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD499,13035 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH507,13174 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD509,13211 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W511,13243 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH515,13289 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W517,13326 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD519,13365 -#define START_PREFETCH(START_PREFETCH529,13503 -#define START_PREFETCH_W(START_PREFETCH_W531,13561 -#define INIT_PREFETCH(INIT_PREFETCH533,13623 -#define PREFETCH_OP(PREFETCH_OP537,13812 -#define START_PREFETCH(START_PREFETCH546,14257 -#define START_PREFETCH_W(START_PREFETCH_W548,14289 -#define INIT_PREFETCH(INIT_PREFETCH550,14323 -#define PREFETCH_OP(PREFETCH_OP552,14350 -#define START_PREFETCH(START_PREFETCH560,14443 -#define START_PREFETCH_W(START_PREFETCH_W562,14501 -#define INIT_PREFETCH(INIT_PREFETCH564,14563 -#define PREFETCH_OP(PREFETCH_OP566,14588 -#define START_PREFETCH(START_PREFETCH570,14619 -#define START_PREFETCH_W(START_PREFETCH_W572,14649 -#define INIT_PREFETCH(INIT_PREFETCH574,14681 -#define PREFETCH_OP(PREFETCH_OP576,14706 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH586,14827 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W588,14866 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD590,14907 -#define START_PREFETCH(START_PREFETCH592,14942 -#define START_PREFETCH_W(START_PREFETCH_W594,14974 -#define INIT_PREFETCH(INIT_PREFETCH596,15008 -#define PREFETCH_OP(PREFETCH_OP598,15035 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH602,15066 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W604,15103 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD606,15142 -#define START_PREFETCH(START_PREFETCH608,15175 -#define START_PREFETCH_W(START_PREFETCH_W610,15205 -#define INIT_PREFETCH(INIT_PREFETCH612,15237 -#define PREFETCH_OP(PREFETCH_OP614,15262 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH622,15357 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W624,15390 -#define END_PREFETCH(END_PREFETCH626,15425 -#define END_PREFETCH_W(END_PREFETCH_W628,15451 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH632,15486 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W634,15517 -#define END_PREFETCH(END_PREFETCH636,15550 -#define END_PREFETCH_W(END_PREFETCH_W638,15574 -#define JMP(JMP650,15833 -#define JMPNext(JMPNext656,16162 -#define JMPNextW(JMPNextW663,16572 -#define JMP(JMP674,17024 -#define JMPNext(JMPNext678,17066 -#define JMPNextW(JMPNextW684,17419 -#define JMPNext(JMPNext692,17800 -#define JMPNextW(JMPNextW694,17845 -#define SUCCESSBACK(SUCCESSBACK704,17980 -#define BACK(BACK738,20577 -#define SUCCESSBACK(SUCCESSBACK752,21419 -#define BACK(BACK779,23449 -#define SUCCESSBACK(SUCCESSBACK788,23675 -#define BACK(BACK821,26191 -#define SUCCESSBACK(SUCCESSBACK835,27033 -#define BACK(BACK861,28982 -#define JMP(JMP868,29190 -#define JMPNext(JMPNext870,29208 -#define JMPNextW(JMPNextW872,29227 -#define ALWAYS_GONext(ALWAYS_GONext878,29330 -#define ALWAYS_GONextW(ALWAYS_GONextW880,29366 -#define ALWAYS_GONext(ALWAYS_GONext884,29410 -#define ALWAYS_GONextW(ALWAYS_GONextW886,29445 -#define GONext(GONext892,29511 -#define GONextW(GONextW894,29545 -#define GONext(GONext898,29588 -#define GONextW(GONextW900,29616 -#define Op(Op908,29705 -#define OpW(OpW915,30136 -#define BOp(BOp922,30569 -#define PBOp(PBOp928,30945 -#define OpRW(OpRW935,31371 -#define Op(Op943,31768 -#define OpW(OpW948,32037 -#define BOp(BOp953,32308 -#define PBOp(PBOp957,32516 -#define OpRW(OpRW962,32780 -#define Op(Op970,33037 -#define OpW(OpW974,33225 -#define BOp(BOp978,33415 -#define PBOp(PBOp980,33454 -#define OpRW(OpRW984,33637 -#define JMPNext(JMPNext990,33743 -#define JMPNextW(JMPNextW992,33774 -#define GONext(GONext994,33812 -#define GONextW(GONextW996,33840 -#define ALWAYS_GONext(ALWAYS_GONext998,33870 -#define ALWAYS_GONextW(ALWAYS_GONextW1000,33904 -#define Op(Op1002,33940 -#define OpW(OpW1006,34128 -#define BOp(BOp1010,34318 -#define PBOp(PBOp1012,34361 -#define OpRW(OpRW1016,34544 -#define ENDOp(ENDOp1020,34596 -#define ENDOpW(ENDOpW1024,34763 -#define ENDOpRW(ENDOpRW1028,34930 -#define ENDBOp(ENDBOp1030,34951 -#define ENDPBOp(ENDPBOp1032,34971 -typedef CELL label;label1047,35572 -#define ADJ(ADJ1051,35608 -#define pred_entry(pred_entry1058,35692 -#define pred_entry_from_code(pred_entry_from_code1060,35850 -#define PredFromDefCode(PredFromDefCode1062,36007 -#define PredFromExpandCode(PredFromExpandCode1064,36166 -#define PredCode(PredCode1067,36400 -#define PredOpCode(PredOpCode1068,36446 -#define TruePredCode(TruePredCode1069,36496 -#define PredFunctor(PredFunctor1070,36550 -#define PredArity(PredArity1071,36602 -#define FlagOff(FlagOff1073,36649 -#define FlagOn(FlagOn1074,36686 -#define ResetFlag(ResetFlag1075,36721 -#define SetFlag(SetFlag1076,36759 -#define XREG(XREG1086,37184 -#define XREG(XREG1090,37223 -#define SP0 SP01096,37337 -#define SP SP1097,37366 -#define READ_MODE READ_MODE1105,37746 -#define WRITE_MODE WRITE_MODE1106,37766 -#define NEEDS_TO_SET_PC NEEDS_TO_SET_PC1115,38166 -#define set_pc(set_pc1123,38263 -#define save_pc(save_pc1124,38289 -#define set_pc(set_pc1126,38322 -#define save_pc(save_pc1127,38352 -#define set_pc(set_pc1130,38396 -#define save_pc(save_pc1131,38413 -#define PREG PREG1132,38431 -#define set_y(set_y1139,38490 -#define save_y(save_y1140,38518 -#define set_y(set_y1142,38553 -#define save_y(save_y1143,38569 -#define YREG YREG1144,38586 -#define set_cp(set_cp1152,38664 -#define save_cp(save_cp1153,38692 -#define set_cp(set_cp1155,38727 -#define save_cp(save_cp1156,38759 -#define set_cp(set_cp1159,38805 -#define save_cp(save_cp1160,38822 -#define CPREG CPREG1161,38840 -#define setregs(setregs1166,38944 -#define saveregs(saveregs1172,39279 -#define always_save_pc(always_save_pc1181,39718 -#define always_set_pc(always_set_pc1182,39753 -#define always_save_pc(always_save_pc1184,39792 -#define always_set_pc(always_set_pc1185,39817 -#define OS_HANDLES_TR_OVERFLOW OS_HANDLES_TR_OVERFLOW1200,40292 -#define check_trail(check_trail1206,40371 -#define check_trail_in_indexing(check_trail_in_indexing1208,40395 -#define check_trail(check_trail1216,40473 -#define check_trail(check_trail1230,41315 -#define check_trail_in_indexing(check_trail_in_indexing1237,41591 -#define check_trail(check_trail1245,41810 -#define check_trail(check_trail1259,42652 -#define check_trail_in_indexing(check_trail_in_indexing1266,42928 -#define check_stack(check_stack1276,43261 -#define check_stack(check_stack1291,44324 -#define check_stack(check_stack1306,45341 -#define check_stack(check_stack1314,45837 -#define store_args(store_args1335,46788 -#define store_at_least_one_arg(store_at_least_one_arg1346,47530 -#define COUNT_CPS(COUNT_CPS1358,48298 -#define COUNT_CPS(COUNT_CPS1360,48351 -#define store_yaam_reg_cpdepth(store_yaam_reg_cpdepth1372,48781 -#define store_yaam_reg_cpdepth(store_yaam_reg_cpdepth1374,48849 -#define store_yaam_regs(store_yaam_regs1378,48910 -#define store_yaam_regs(store_yaam_regs1393,49987 -#define store_yaam_regs_for_either(store_yaam_regs_for_either1409,51052 -#define set_cut(set_cut1425,52162 -#define restore_yaam_reg_cpdepth(restore_yaam_reg_cpdepth1432,52424 -#define restore_yaam_reg_cpdepth(restore_yaam_reg_cpdepth1434,52494 -#define YAPOR_update_alternative(YAPOR_update_alternative1438,52554 -#define YAPOR_update_alternative(YAPOR_update_alternative1443,52812 -#define SET_BB(SET_BB1447,52940 -#define SET_BB(SET_BB1449,52976 -#define PROTECT_FROZEN_H(PROTECT_FROZEN_H1454,53081 -#define PROTECT_FROZEN_B(PROTECT_FROZEN_B1459,53420 -#define PROTECT_FROZEN_B(PROTECT_FROZEN_B1471,53913 -#define PROTECT_FROZEN_H(PROTECT_FROZEN_H1472,53983 -#define PROTECT_FROZEN_B(PROTECT_FROZEN_B1475,54089 -#define PROTECT_FROZEN_H(PROTECT_FROZEN_H1476,54127 -#define restore_yaam_regs(restore_yaam_regs1480,54215 -#define restore_yaam_regs(restore_yaam_regs1493,55116 -#define restore_args(restore_args1510,56216 -#define restore_at_least_one_arg(restore_at_least_one_arg1527,57443 -#define pop_yaam_reg_cpdepth(pop_yaam_reg_cpdepth1548,58886 -#define pop_yaam_reg_cpdepth(pop_yaam_reg_cpdepth1550,58952 -#define TABLING_close_alt(TABLING_close_alt1554,59010 -#define TABLING_close_alt(TABLING_close_alt1556,59069 -#define pop_yaam_regs(pop_yaam_regs1560,59139 -#define pop_yaam_regs(pop_yaam_regs1571,59878 -#define pop_args(pop_args1583,60619 -#define pop_at_least_one_arg(pop_at_least_one_arg1602,62009 -#define FAIL(FAIL1639,63937 -#define TRACED_FAIL(TRACED_FAIL1651,64752 -#define FAIL(FAIL1666,65675 -#define TRACED_FAIL(TRACED_FAIL1669,65774 -#define FAIL(FAIL1676,65915 -#define UnifyGlobalCells(UnifyGlobalCells1687,66400 -#define UnifyGlobalCellToCell(UnifyGlobalCellToCell1702,67458 -#define UnifyCells(UnifyCells1709,67868 -#define UNWIND_CUNIF(UNWIND_CUNIF1741,69594 -#define UNWIND_CUNIF(UNWIND_CUNIF1749,70010 -#define UnifyBound_TEST_ATTACHED(UnifyBound_TEST_ATTACHED1752,70041 -#define UnifyBound(UnifyBound1761,70613 -#define traced_UnifyBound_TEST_ATTACHED(traced_UnifyBound_TEST_ATTACHED1806,74101 -#define traced_UnifyBound(traced_UnifyBound1815,74673 -#undef HBREGHBREG1864,78197 -#define set_hb(set_hb1865,78210 -#define save_hb(save_hb1866,78238 -#define set_hb(set_hb1868,78273 -#define save_hb(save_hb1869,78290 -typedef struct unif_record {unif_record1872,78316 - CELL *ptr;ptr1873,78345 - CELL *ptr;unif_record::ptr1873,78345 - Term old;old1874,78358 - Term old;unif_record::old1874,78358 -} unif_record;unif_record1875,78370 -typedef struct v_record {v_record1877,78386 - CELL *start0;start01878,78412 - CELL *start0;v_record::start01878,78412 - CELL *end0;end01879,78428 - CELL *end0;v_record::end01879,78428 - CELL *start1;start11880,78442 - CELL *start1;v_record::start11880,78442 - Term old;old1881,78458 - Term old;v_record::old1881,78458 -} v_record;v_record1882,78470 -static int IUnify_complex(CELL *pt0, CELL *pt0_end, CELL *pt1) {IUnify_complex1886,78561 -#undef Yap_REGSYap_REGS1889,78654 -#define Yap_REGS Yap_REGS1891,78708 -#define unif_base unif_base1906,79103 -#define to_visit_base to_visit_base1907,79153 -#undef Yap_REGSYap_REGS2064,83046 -#define Yap_REGS Yap_REGS2065,83062 -#undef to_visit_baseto_visit_base2074,83245 -#undef unif_baseunif_base2075,83266 -static int iequ_complex(register CELL *pt0, register CELL *pt0_end,iequ_complex2082,83427 -#undef Yap_REGSYap_REGS2086,83569 -#define Yap_REGS Yap_REGS2088,83623 -#define unif_base unif_base2103,84018 -#define to_visit_base to_visit_base2104,84068 -#undef Yap_REGSYap_REGS2261,87922 -#define Yap_REGS Yap_REGS2262,87938 -static inline wamreg Yap_regnotoreg(UInt regnbr) {Yap_regnotoreg2272,88097 -static inline UInt Yap_regtoregno(wamreg reg) {Yap_regtoregno2284,88316 -#define check_depth(check_depth2297,88542 -#define check_depth(check_depth2308,89310 -#define copy_jmp_address(copy_jmp_address2312,89388 -#define copy_jmp_addressa(copy_jmp_addressa2313,89435 -#define copy_jmp_address(copy_jmp_address2315,89498 -#define copy_jmp_addressa(copy_jmp_addressa2316,89526 -static inline void prune(choiceptr cp USES_REGS) {prune2319,89563 -#define INITIALIZE_PERMVAR(INITIALIZE_PERMVAR2349,90222 -#define INITIALIZE_PERMVAR(INITIALIZE_PERMVAR2351,90286 -#define UnifyAndTrailCells(UnifyAndTrailCells2355,90385 -#define CHECK_ALARM(CHECK_ALARM2380,92253 -void *(*Yap_JitCall)(JIT_Compiler *jc, yamop *p);Yap_JitCall2401,92536 -void (*Yap_llvmShutdown)(void);Yap_llvmShutdown2402,92586 -Int (*Yap_traced_absmi)(void);Yap_traced_absmi2403,92618 -#define PROCESS_INT(PROCESS_INT2428,93129 -#define PROCESS_INT(PROCESS_INT2443,94200 -#define Yap_AsmError(Yap_AsmError2457,95111 - -H/alloc.h,1256 -typedef CELL YAP_SEG_SIZE;YAP_SEG_SIZE50,984 -typedef struct FREEB {FREEB52,1012 - YAP_SEG_SIZE b_size;b_size53,1035 - YAP_SEG_SIZE b_size;FREEB::b_size53,1035 - struct FREEB *b_next;b_next54,1059 - struct FREEB *b_next;FREEB::b_next54,1059 - struct FREEB *b_next_size;b_next_size55,1084 - struct FREEB *b_next_size;FREEB::b_next_size55,1084 -} BlockHeader;BlockHeader56,1114 -#define K K58,1130 -#define MinBlockSize MinBlockSize60,1155 -#define MaxBlockSize MaxBlockSize61,1219 -#define InUseFlag InUseFlag62,1249 -#define YAP_ALIGN YAP_ALIGN68,1426 -#define YAP_ALIGNMASK YAP_ALIGNMASK69,1447 -#define YAP_ALIGN YAP_ALIGN71,1489 -#define YAP_ALIGNMASK YAP_ALIGNMASK72,1510 -#define AdjustSize(AdjustSize75,1572 -#define ALIGN_SIZE(ALIGN_SIZE78,1661 -#define YAP_ALLOC_SIZE YAP_ALLOC_SIZE83,1878 -#define LGPAGE_SIZE LGPAGE_SIZE84,1911 -#define YAP_ALLOC_SIZE YAP_ALLOC_SIZE87,1953 -#define LGPAGE_SIZE LGPAGE_SIZE88,1990 -#define AdjustPageSize(AdjustPageSize91,2037 -#define AdjustLargePageSize(AdjustLargePageSize92,2123 -#define BlockTrailer(BlockTrailer94,2206 -typedef unsigned size_t;size_t121,2750 -#define SCRATCH_START_SIZE SCRATCH_START_SIZE138,2954 -#define SCRATCH_INC_SIZE SCRATCH_INC_SIZE139,2992 - -H/amidefs.h,55488 -/* */ typedef Int DISPREG;DISPREG69,2228 -/* */ typedef CELL SMALLUNSGN;SMALLUNSGN70,2257 -/* */ typedef Int OPREG;OPREG71,2290 -/* */ typedef CELL UOPREG;UOPREG72,2318 -/* */ typedef Short DISPREG;DISPREG75,2354 -/* */ typedef BITS16 SMALLUNSGN;SMALLUNSGN76,2385 -/* */ typedef SBITS16 OPREG;OPREG77,2420 -/* */ typedef SBITS16 UOPREG;UOPREG78,2451 -typedef struct regstore_t *regstruct_ptr;regstruct_ptr84,2505 -#define CACHE_TYPE1 CACHE_TYPE186,2548 -#define CACHE_TYPE CACHE_TYPE87,2582 -#define CACHE_TYPECACHE_TYPE91,2626 -#define CACHE_TYPE1 CACHE_TYPE192,2645 -typedef Int (*CPredicate)(CACHE_TYPE1);CPredicate96,2679 -typedef Int (*CmpPredicate)(Term, Term);CmpPredicate98,2720 -#define OpRegSize OpRegSize100,2762 -typedef OPREG wamreg;wamreg110,3028 -typedef OPREG yslot;yslot111,3051 -typedef OPREG COUNT;COUNT112,3073 -#define OPCODE(OPCODE117,3170 -#undef OPCODEOPCODE119,3224 -} op_numbers;op_numbers120,3239 -#define _std_top _std_top122,3254 - _atom,_atom130,3438 - _atomic,_atomic131,3447 - _integer,_integer132,3458 - _compound,_compound133,3470 - _float,_float134,3483 - _nonvar,_nonvar135,3493 - _number,_number136,3504 - _var,_var137,3515 - _cut_by,_cut_by138,3523 - _save_by,_save_by139,3534 - _db_ref,_db_ref140,3546 - _primitive,_primitive141,3557 - _dif,_dif142,3571 - _eq,_eq143,3579 - _equal,_equal144,3586 - _plus,_plus145,3596 - _minus,_minus146,3605 - _times,_times147,3615 - _div,_div148,3625 - _and,_and149,3633 - _or,_or150,3641 - _sll,_sll151,3648 - _slr,_slr152,3656 - _arg,_arg153,3664 - _functor,_functor154,3672 - _p_put_fi,_p_put_fi155,3684 - _p_put_i,_p_put_i156,3697 - _p_put_f,_p_put_f157,3709 - _p_a_eq_float,_p_a_eq_float158,3721 - _p_a_eq_int,_p_a_eq_int159,3738 - _p_a_eq,_p_a_eq160,3753 - _p_ltc_float,_p_ltc_float161,3764 - _p_ltc_int,_p_ltc_int162,3780 - _p_lt,_p_lt163,3794 - _p_gtc_float,_p_gtc_float164,3803 - _p_gtc_int,_p_gtc_int165,3819 - _p_get_fi,_p_get_fi166,3833 - _p_get_i,_p_get_i167,3846 - _p_get_f,_p_get_f168,3858 - _p_add_float_c,_p_add_float_c169,3870 - _p_add_int_c,_p_add_int_c170,3888 - _p_add,_p_add171,3904 - _p_sub_float_c,_p_sub_float_c172,3914 - _p_sub_int_c,_p_sub_int_c173,3932 - _p_sub,_p_sub174,3948 - _p_mul_float_c,_p_mul_float_c175,3958 - _p_mul_int_c,_p_mul_int_c176,3976 - _p_mul,_p_mul177,3992 - _p_fdiv_c1,_p_fdiv_c1178,4002 - _p_fdiv_c2,_p_fdiv_c2179,4016 - _p_fdiv,_p_fdiv180,4030 - _p_idiv_c1,_p_idiv_c1181,4041 - _p_idiv_c2,_p_idiv_c2182,4055 - _p_idiv,_p_idiv183,4069 - _p_mod_c1,_p_mod_c1184,4080 - _p_mod_c2,_p_mod_c2185,4093 - _p_mod,_p_mod186,4106 - _p_rem_c1,_p_rem_c1187,4116 - _p_rem_c2,_p_rem_c2188,4129 - _p_rem,_p_rem189,4142 - _p_land_c,_p_land_c190,4152 - _p_land,_p_land191,4165 - _p_lor_c,_p_lor_c192,4176 - _p_lor,_p_lor193,4188 - _p_xor_c,_p_xor_c194,4198 - _p_xor,_p_xor195,4210 - _p_uminus,_p_uminus196,4220 - _p_sr_c1,_p_sr_c1197,4233 - _p_sr_c2,_p_sr_c2198,4245 - _p_sr,_p_sr199,4257 - _p_sl_c1,_p_sl_c1200,4266 - _p_sl_c2,_p_sl_c2201,4278 - _p_sl,_p_sl202,4290 - _p_label_ctl_p_label_ctl203,4299 -} basic_preds;basic_preds204,4314 -/* */ typedef CELL OPCODE;OPCODE209,4369 -/* */ typedef BITS16 OPCODE;OPCODE213,4419 -/* */ typedef CELL OPCODE;OPCODE215,4456 -/* */ typedef op_numbers OPCODE;OPCODE219,4559 -#define OpCodeSize OpCodeSize221,4601 -typedef struct yami {yami259,5725 - OPCODE opc;opc260,5747 - OPCODE opc;yami::opc260,5747 - CELL next_native_r;next_native_r262,5773 - CELL next_native_r;yami::next_native_r262,5773 - CELL next_native_w;next_native_w263,5795 - CELL next_native_w;yami::next_native_w263,5795 - CELL next;next267,5847 - CELL next;yami::__anon32::__anon33::next267,5847 - } e;e268,5864 - } e;yami::__anon32::e268,5864 - Term c;c270,5886 - Term c;yami::__anon32::__anon34::c270,5886 - CELL next;next271,5915 - CELL next;yami::__anon32::__anon34::next271,5915 - } c;c272,5932 - } c;yami::__anon32::c272,5932 - Term D;D274,5954 - Term D;yami::__anon32::__anon35::D274,5954 - CELL next;next275,5983 - CELL next;yami::__anon32::__anon35::next275,5983 - } D;D276,6000 - } D;yami::__anon32::D276,6000 - Term b;b278,6022 - Term b;yami::__anon32::__anon36::b278,6022 - CELL next;next279,6051 - CELL next;yami::__anon32::__anon36::next279,6051 - } N;N280,6068 - } N;yami::__anon32::N280,6068 - Term c1;c1282,6090 - Term c1;yami::__anon32::__anon37::c1282,6090 - Term c2;c2283,6120 - Term c2;yami::__anon32::__anon37::c2283,6120 - CELL next;next284,6150 - CELL next;yami::__anon32::__anon37::next284,6150 - } cc;cc285,6167 - } cc;yami::__anon32::cc285,6167 - Term c1;c1287,6190 - Term c1;yami::__anon32::__anon38::c1287,6190 - Term c2;c2288,6220 - Term c2;yami::__anon32::__anon38::c2288,6220 - Term c3;c3289,6250 - Term c3;yami::__anon32::__anon38::c3289,6250 - CELL next;next290,6280 - CELL next;yami::__anon32::__anon38::next290,6280 - } ccc;ccc291,6297 - } ccc;yami::__anon32::ccc291,6297 - Term c1;c1293,6321 - Term c1;yami::__anon32::__anon39::c1293,6321 - Term c2;c2294,6351 - Term c2;yami::__anon32::__anon39::c2294,6351 - Term c3;c3295,6381 - Term c3;yami::__anon32::__anon39::c3295,6381 - Term c4;c4296,6411 - Term c4;yami::__anon32::__anon39::c4296,6411 - CELL next;next297,6441 - CELL next;yami::__anon32::__anon39::next297,6441 - } cccc;cccc298,6458 - } cccc;yami::__anon32::cccc298,6458 - Term c1;c1300,6483 - Term c1;yami::__anon32::__anon40::c1300,6483 - Term c2;c2301,6513 - Term c2;yami::__anon32::__anon40::c2301,6513 - Term c3;c3302,6543 - Term c3;yami::__anon32::__anon40::c3302,6543 - Term c4;c4303,6573 - Term c4;yami::__anon32::__anon40::c4303,6573 - Term c5;c5304,6603 - Term c5;yami::__anon32::__anon40::c5304,6603 - CELL next;next305,6633 - CELL next;yami::__anon32::__anon40::next305,6633 - } ccccc;ccccc306,6650 - } ccccc;yami::__anon32::ccccc306,6650 - Term c1;c1308,6676 - Term c1;yami::__anon32::__anon41::c1308,6676 - Term c2;c2309,6706 - Term c2;yami::__anon32::__anon41::c2309,6706 - Term c3;c3310,6736 - Term c3;yami::__anon32::__anon41::c3310,6736 - Term c4;c4311,6766 - Term c4;yami::__anon32::__anon41::c4311,6766 - Term c5;c5312,6796 - Term c5;yami::__anon32::__anon41::c5312,6796 - Term c6;c6313,6826 - Term c6;yami::__anon32::__anon41::c6313,6826 - CELL next;next314,6856 - CELL next;yami::__anon32::__anon41::next314,6856 - } cccccc;cccccc315,6873 - } cccccc;yami::__anon32::cccccc315,6873 - Term c;c317,6900 - Term c;yami::__anon32::__anon42::c317,6900 - struct yami *l1;l1318,6929 - struct yami *l1;yami::__anon32::__anon42::l1318,6929 - struct yami *l2;l2319,6959 - struct yami *l2;yami::__anon32::__anon42::l2319,6959 - struct yami *l3;l3320,6989 - struct yami *l3;yami::__anon32::__anon42::l3320,6989 - CELL next;next321,7019 - CELL next;yami::__anon32::__anon42::next321,7019 - } clll;clll322,7036 - } clll;yami::__anon32::clll322,7036 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];d324,7061 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];yami::__anon32::__anon43::d324,7061 - CELL next;next325,7108 - CELL next;yami::__anon32::__anon43::next325,7108 - } d;d326,7125 - } d;yami::__anon32::d326,7125 - struct logic_upd_clause *ClBase;ClBase328,7147 - struct logic_upd_clause *ClBase;yami::__anon32::__anon44::ClBase328,7147 - CELL next;next329,7186 - CELL next;yami::__anon32::__anon44::next329,7186 - } L;L330,7204 - } L;yami::__anon32::L330,7204 - Functor f;f332,7226 - Functor f;yami::__anon32::__anon45::f332,7226 - Int a;a333,7255 - Int a;yami::__anon32::__anon45::a333,7255 - CELL next;next334,7284 - CELL next;yami::__anon32::__anon45::next334,7284 - } fa;fa335,7301 - } fa;yami::__anon32::fa335,7301 - CELL i[2];i337,7324 - CELL i[2];yami::__anon32::__anon46::i337,7324 - CELL next;next338,7344 - CELL next;yami::__anon32::__anon46::next338,7344 - } i;i339,7361 - } i;yami::__anon32::i339,7361 - struct logic_upd_index *I;I341,7383 - struct logic_upd_index *I;yami::__anon32::__anon47::I341,7383 - struct yami *l1;l1342,7417 - struct yami *l1;yami::__anon32::__anon47::l1342,7417 - struct yami *l2;l2343,7452 - struct yami *l2;yami::__anon32::__anon47::l2343,7452 - COUNT s;s344,7487 - COUNT s;yami::__anon32::__anon47::s344,7487 - COUNT e;e345,7521 - COUNT e;yami::__anon32::__anon47::e345,7521 - CELL next;next346,7555 - CELL next;yami::__anon32::__anon47::next346,7555 - } Illss;Illss347,7572 - } Illss;yami::__anon32::Illss347,7572 - struct yami *l;l349,7598 - struct yami *l;yami::__anon32::__anon48::l349,7598 - CELL next;next350,7622 - CELL next;yami::__anon32::__anon48::next350,7622 - } l;l351,7639 - } l;yami::__anon32::l351,7639 - unsigned int or_arg;or_arg354,7674 - unsigned int or_arg;yami::__anon32::__anon49::or_arg354,7674 - struct table_entry *te; /* pointer to table entry */te357,7742 - struct table_entry *te; /* pointer to table entry */yami::__anon32::__anon49::te357,7742 - Int s;s359,7822 - Int s;yami::__anon32::__anon49::s359,7822 - struct pred_entry *p;p360,7849 - struct pred_entry *p;yami::__anon32::__anon49::p360,7849 - struct yami *d;d361,7878 - struct yami *d;yami::__anon32::__anon49::d361,7878 - CELL next;next362,7913 - CELL next;yami::__anon32::__anon49::next362,7913 - } Otapl;Otapl363,7930 - } Otapl;yami::__anon32::Otapl363,7930 - struct jit_handl_context *jh;jh367,7990 - struct jit_handl_context *jh;yami::__anon32::__anon50::jh367,7990 - CELL next;next369,8033 - CELL next;yami::__anon32::__anon50::next369,8033 - } J;J370,8050 - } J;yami::__anon32::J370,8050 - unsigned int or_arg;or_arg378,8317 - unsigned int or_arg;yami::__anon32::__anon51::or_arg378,8317 - struct table_entry *te;te382,8427 - struct table_entry *te;yami::__anon32::__anon51::te382,8427 - COUNT s;s385,8503 - COUNT s;yami::__anon32::__anon51::s385,8503 - struct logic_upd_clause *d;d386,8537 - struct logic_upd_clause *d;yami::__anon32::__anon51::d386,8537 - struct yami *n;n387,8573 - struct yami *n;yami::__anon32::__anon51::n387,8573 - CELL next;next388,8609 - CELL next;yami::__anon32::__anon51::next388,8609 - } OtaLl;OtaLl389,8648 - } OtaLl;yami::__anon32::OtaLl389,8648 - unsigned int or_arg;or_arg392,8687 - unsigned int or_arg;yami::__anon32::__anon52::or_arg392,8687 - struct table_entry *te;te396,8785 - struct table_entry *te;yami::__anon32::__anon52::te396,8785 - struct logic_upd_index *block;block399,8875 - struct logic_upd_index *block;yami::__anon32::__anon52::block399,8875 - struct logic_upd_clause *d;d400,8913 - struct logic_upd_clause *d;yami::__anon32::__anon52::d400,8913 - struct yami *n;n401,8949 - struct yami *n;yami::__anon32::__anon52::n401,8949 - CELL next;next402,8985 - CELL next;yami::__anon32::__anon52::next402,8985 - } OtILl;OtILl403,9024 - } OtILl;yami::__anon32::OtILl403,9024 - unsigned int or_arg;or_arg406,9063 - unsigned int or_arg;yami::__anon32::__anon53::or_arg406,9063 - struct table_entry *te;te410,9155 - struct table_entry *te;yami::__anon32::__anon53::te410,9155 - Int s;s412,9192 - Int s;yami::__anon32::__anon53::s412,9192 - struct pred_entry *p;p413,9219 - struct pred_entry *p;yami::__anon32::__anon53::p413,9219 - CPredicate f;f414,9248 - CPredicate f;yami::__anon32::__anon53::f414,9248 - COUNT extra;extra415,9277 - COUNT extra;yami::__anon32::__anon53::extra415,9277 - CELL next;next416,9310 - CELL next;yami::__anon32::__anon53::next416,9310 - } OtapFs;OtapFs417,9327 - } OtapFs;yami::__anon32::OtapFs417,9327 - struct yami *l1;l1419,9354 - struct yami *l1;yami::__anon32::__anon54::l1419,9354 - struct yami *l2;l2420,9391 - struct yami *l2;yami::__anon32::__anon54::l2420,9391 - struct yami *l3;l3421,9428 - struct yami *l3;yami::__anon32::__anon54::l3421,9428 - CELL next;next422,9465 - CELL next;yami::__anon32::__anon54::next422,9465 - } lll;lll423,9482 - } lll;yami::__anon32::lll423,9482 - struct yami *l1;l1425,9506 - struct yami *l1;yami::__anon32::__anon55::l1425,9506 - struct yami *l2;l2426,9543 - struct yami *l2;yami::__anon32::__anon55::l2426,9543 - struct yami *l3;l3427,9580 - struct yami *l3;yami::__anon32::__anon55::l3427,9580 - struct yami *l4;l4428,9617 - struct yami *l4;yami::__anon32::__anon55::l4428,9617 - CELL next;next429,9654 - CELL next;yami::__anon32::__anon55::next429,9654 - } llll;llll430,9671 - } llll;yami::__anon32::llll430,9671 - wamreg x;x432,9696 - wamreg x;yami::__anon32::__anon56::x432,9696 - struct yami *l1;l1433,9732 - struct yami *l1;yami::__anon32::__anon56::l1433,9732 - struct yami *l2;l2434,9769 - struct yami *l2;yami::__anon32::__anon56::l2434,9769 - struct yami *l3;l3435,9806 - struct yami *l3;yami::__anon32::__anon56::l3435,9806 - struct yami *l4;l4436,9843 - struct yami *l4;yami::__anon32::__anon56::l4436,9843 - CELL next;next437,9880 - CELL next;yami::__anon32::__anon56::next437,9880 - } xllll;xllll438,9897 - } xllll;yami::__anon32::xllll438,9897 - COUNT s;s440,9923 - COUNT s;yami::__anon32::__anon57::s440,9923 - struct yami *l1;l1441,9959 - struct yami *l1;yami::__anon32::__anon57::l1441,9959 - struct yami *l2;l2442,9996 - struct yami *l2;yami::__anon32::__anon57::l2442,9996 - struct yami *l3;l3443,10033 - struct yami *l3;yami::__anon32::__anon57::l3443,10033 - struct yami *l4;l4444,10070 - struct yami *l4;yami::__anon32::__anon57::l4444,10070 - CELL next;next445,10107 - CELL next;yami::__anon32::__anon57::next445,10107 - } sllll;sllll446,10124 - } sllll;yami::__anon32::sllll446,10124 - struct pred_entry *p;p448,10150 - struct pred_entry *p;yami::__anon32::__anon58::p448,10150 - struct yami *f;f449,10181 - struct yami *f;yami::__anon32::__anon58::f449,10181 - wamreg x1;x1450,10212 - wamreg x1;yami::__anon32::__anon58::x1450,10212 - wamreg x2;x2451,10244 - wamreg x2;yami::__anon32::__anon58::x2451,10244 - COUNT flags;flags452,10276 - COUNT flags;yami::__anon32::__anon58::flags452,10276 - CELL next;next453,10310 - CELL next;yami::__anon32::__anon58::next453,10310 - } plxxs;plxxs454,10327 - } plxxs;yami::__anon32::plxxs454,10327 - struct pred_entry *p;p456,10353 - struct pred_entry *p;yami::__anon32::__anon59::p456,10353 - struct yami *f;f457,10384 - struct yami *f;yami::__anon32::__anon59::f457,10384 - wamreg x;x458,10415 - wamreg x;yami::__anon32::__anon59::x458,10415 - yslot y;y459,10446 - yslot y;yami::__anon32::__anon59::y459,10446 - COUNT flags;flags460,10477 - COUNT flags;yami::__anon32::__anon59::flags460,10477 - CELL next;next461,10512 - CELL next;yami::__anon32::__anon59::next461,10512 - } plxys;plxys462,10529 - } plxys;yami::__anon32::plxys462,10529 - struct pred_entry *p;p464,10555 - struct pred_entry *p;yami::__anon32::__anon60::p464,10555 - struct yami *f;f465,10586 - struct yami *f;yami::__anon32::__anon60::f465,10586 - wamreg y1;y1466,10617 - wamreg y1;yami::__anon32::__anon60::y1466,10617 - yslot y2;y2467,10649 - yslot y2;yami::__anon32::__anon60::y2467,10649 - COUNT flags;flags468,10681 - COUNT flags;yami::__anon32::__anon60::flags468,10681 - CELL next;next469,10716 - CELL next;yami::__anon32::__anon60::next469,10716 - } plyys;plyys470,10733 - } plyys;yami::__anon32::plyys470,10733 - OPCODE pop;pop472,10759 - OPCODE pop;yami::__anon32::__anon61::pop472,10759 - struct yami *l1;l1473,10790 - struct yami *l1;yami::__anon32::__anon61::l1473,10790 - struct yami *l2;l2474,10827 - struct yami *l2;yami::__anon32::__anon61::l2474,10827 - struct yami *l3;l3475,10864 - struct yami *l3;yami::__anon32::__anon61::l3475,10864 - struct yami *l4;l4476,10901 - struct yami *l4;yami::__anon32::__anon61::l4476,10901 - CELL next;next477,10938 - CELL next;yami::__anon32::__anon61::next477,10938 - } ollll;ollll478,10955 - } ollll;yami::__anon32::ollll478,10955 - Int i;i480,10981 - Int i;yami::__anon32::__anon62::i480,10981 - struct pred_entry *p;p481,10997 - struct pred_entry *p;yami::__anon32::__anon62::p481,10997 - CELL next;next482,11026 - CELL next;yami::__anon32::__anon62::next482,11026 - } ip;ip483,11043 - } ip;yami::__anon32::ip483,11043 - struct yami *l;l485,11066 - struct yami *l;yami::__anon32::__anon63::l485,11066 - struct pred_entry *p;p486,11095 - struct pred_entry *p;yami::__anon32::__anon63::p486,11095 - CELL next;next487,11124 - CELL next;yami::__anon32::__anon63::next487,11124 - } lp;lp488,11141 - } lp;yami::__anon32::lp488,11141 - OPCODE opcw;opcw490,11164 - OPCODE opcw;yami::__anon32::__anon64::opcw490,11164 - CELL next;next491,11196 - CELL next;yami::__anon32::__anon64::next491,11196 - } o;o492,11213 - } o;yami::__anon32::o492,11213 - OPCODE opcw;opcw494,11235 - OPCODE opcw;yami::__anon32::__anon65::opcw494,11235 - Term c;c495,11267 - Term c;yami::__anon32::__anon65::c495,11267 - CELL next;next496,11296 - CELL next;yami::__anon32::__anon65::next496,11296 - } oc;oc497,11313 - } oc;yami::__anon32::oc497,11313 - OPCODE opcw;opcw499,11336 - OPCODE opcw;yami::__anon32::__anon66::opcw499,11336 - Term b;b500,11368 - Term b;yami::__anon32::__anon66::b500,11368 - CELL next;next501,11397 - CELL next;yami::__anon32::__anon66::next501,11397 - } oN;oN502,11414 - } oN;yami::__anon32::oN502,11414 - OPCODE opcw;opcw504,11437 - OPCODE opcw;yami::__anon32::__anon67::opcw504,11437 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];d505,11469 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];yami::__anon32::__anon67::d505,11469 - CELL next;next506,11516 - CELL next;yami::__anon32::__anon67::next506,11516 - } od;od507,11533 - } od;yami::__anon32::od507,11533 - OPCODE opcw;opcw509,11556 - OPCODE opcw;yami::__anon32::__anon68::opcw509,11556 - Term D;D510,11588 - Term D;yami::__anon32::__anon68::D510,11588 - CELL next;next511,11619 - CELL next;yami::__anon32::__anon68::next511,11619 - } oD;oD512,11636 - } oD;yami::__anon32::oD512,11636 - OPCODE opcw;opcw514,11659 - OPCODE opcw;yami::__anon32::__anon69::opcw514,11659 - Functor f;f515,11691 - Functor f;yami::__anon32::__anon69::f515,11691 - Int a;a516,11720 - Int a;yami::__anon32::__anon69::a516,11720 - CELL next;next517,11749 - CELL next;yami::__anon32::__anon69::next517,11749 - } ofa;ofa518,11766 - } ofa;yami::__anon32::ofa518,11766 - OPCODE opcw;opcw520,11790 - OPCODE opcw;yami::__anon32::__anon70::opcw520,11790 - CELL i[2];i521,11822 - CELL i[2];yami::__anon32::__anon70::i521,11822 - CELL next;next522,11845 - CELL next;yami::__anon32::__anon70::next522,11845 - } oi;oi523,11862 - } oi;yami::__anon32::oi523,11862 - OPCODE opcw;opcw525,11885 - OPCODE opcw;yami::__anon32::__anon71::opcw525,11885 - COUNT s;s526,11917 - COUNT s;yami::__anon32::__anon71::s526,11917 - CELL c;c527,11946 - CELL c;yami::__anon32::__anon71::c527,11946 - CELL next;next528,11975 - CELL next;yami::__anon32::__anon71::next528,11975 - } osc;osc529,11992 - } osc;yami::__anon32::osc529,11992 - OPCODE opcw;opcw531,12016 - OPCODE opcw;yami::__anon32::__anon72::opcw531,12016 - COUNT s;s532,12048 - COUNT s;yami::__anon32::__anon72::s532,12048 - CELL next;next533,12077 - CELL next;yami::__anon32::__anon72::next533,12077 - } os;os534,12094 - } os;yami::__anon32::os534,12094 - OPCODE opcw;opcw536,12117 - OPCODE opcw;yami::__anon32::__anon73::opcw536,12117 - Term ut;ut537,12149 - Term ut;yami::__anon32::__anon73::ut537,12149 - CELL next;next538,12167 - CELL next;yami::__anon32::__anon73::next538,12167 - } ou;ou539,12184 - } ou;yami::__anon32::ou539,12184 - OPCODE opcw;opcw541,12207 - OPCODE opcw;yami::__anon32::__anon74::opcw541,12207 - wamreg x;x542,12239 - wamreg x;yami::__anon32::__anon74::x542,12239 - CELL next;next543,12270 - CELL next;yami::__anon32::__anon74::next543,12270 - } ox;ox544,12287 - } ox;yami::__anon32::ox544,12287 - OPCODE opcw;opcw546,12310 - OPCODE opcw;yami::__anon32::__anon75::opcw546,12310 - wamreg xl;xl547,12342 - wamreg xl;yami::__anon32::__anon75::xl547,12342 - wamreg xr;xr548,12374 - wamreg xr;yami::__anon32::__anon75::xr548,12374 - CELL next;next549,12406 - CELL next;yami::__anon32::__anon75::next549,12406 - } oxx;oxx550,12423 - } oxx;yami::__anon32::oxx550,12423 - OPCODE opcw;opcw552,12447 - OPCODE opcw;yami::__anon32::__anon76::opcw552,12447 - yslot y;y553,12479 - yslot y;yami::__anon32::__anon76::y553,12479 - CELL next;next554,12509 - CELL next;yami::__anon32::__anon76::next554,12509 - } oy;oy555,12526 - } oy;yami::__anon32::oy555,12526 - struct pred_entry *p;p557,12549 - struct pred_entry *p;yami::__anon32::__anon77::p557,12549 - CELL next;next558,12579 - CELL next;yami::__anon32::__anon77::next558,12579 - } p;p559,12596 - } p;yami::__anon32::p559,12596 - struct pred_entry *p;p561,12618 - struct pred_entry *p;yami::__anon32::__anon78::p561,12618 - struct pred_entry *p0;p0562,12648 - struct pred_entry *p0;yami::__anon32::__anon78::p0562,12648 - CELL next;next563,12679 - CELL next;yami::__anon32::__anon78::next563,12679 - } pp;pp564,12696 - } pp;yami::__anon32::pp564,12696 - COUNT s;s566,12719 - COUNT s;yami::__anon32::__anon79::s566,12719 - CELL next;next567,12748 - CELL next;yami::__anon32::__anon79::next567,12748 - } s;s568,12765 - } s;yami::__anon32::s568,12765 - COUNT s1;s1571,12822 - COUNT s1;yami::__anon32::__anon80::s1571,12822 - COUNT s2;s2572,12852 - COUNT s2;yami::__anon32::__anon80::s2572,12852 - COUNT s3;s3573,12882 - COUNT s3;yami::__anon32::__anon80::s3573,12882 - struct yami *sprev;sprev574,12912 - struct yami *sprev;yami::__anon32::__anon80::sprev574,12912 - struct yami *snext;snext575,12939 - struct yami *snext;yami::__anon32::__anon80::snext575,12939 - struct pred_entry *p;p576,12966 - struct pred_entry *p;yami::__anon32::__anon80::p576,12966 - CELL next;next577,12995 - CELL next;yami::__anon32::__anon80::next577,12995 - } sssllp;sssllp578,13012 - } sssllp;yami::__anon32::sssllp578,13012 - COUNT s;s580,13039 - COUNT s;yami::__anon32::__anon81::s580,13039 - CELL c;c581,13068 - CELL c;yami::__anon32::__anon81::c581,13068 - CELL next;next582,13097 - CELL next;yami::__anon32::__anon81::next582,13097 - } sc;sc583,13114 - } sc;yami::__anon32::sc583,13114 - COUNT s;s585,13137 - COUNT s;yami::__anon32::__anon82::s585,13137 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];d586,13166 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];yami::__anon32::__anon82::d586,13166 - struct yami *F;F587,13213 - struct yami *F;yami::__anon32::__anon82::F587,13213 - struct yami *T;T588,13242 - struct yami *T;yami::__anon32::__anon82::T588,13242 - CELL next;next589,13271 - CELL next;yami::__anon32::__anon82::next589,13271 - } sdll;sdll590,13288 - } sdll;yami::__anon32::sdll590,13288 - COUNT s;s592,13313 - COUNT s;yami::__anon32::__anon83::s592,13313 - struct yami *l;l593,13342 - struct yami *l;yami::__anon32::__anon83::l593,13342 - struct pred_entry *p;p594,13371 - struct pred_entry *p;yami::__anon32::__anon83::p594,13371 - struct pred_entry *p0;p0595,13400 - struct pred_entry *p0;yami::__anon32::__anon83::p0595,13400 - CELL next;next596,13430 - CELL next;yami::__anon32::__anon83::next596,13430 - } slpp;slpp597,13447 - } slpp;yami::__anon32::slpp597,13447 - COUNT s;s599,13472 - COUNT s;yami::__anon32::__anon84::s599,13472 - Int I;I600,13501 - Int I;yami::__anon32::__anon84::I600,13501 - struct yami *F;F601,13530 - struct yami *F;yami::__anon32::__anon84::F601,13530 - struct yami *T;T602,13559 - struct yami *T;yami::__anon32::__anon84::T602,13559 - CELL next;next603,13588 - CELL next;yami::__anon32::__anon84::next603,13588 - } snll;snll604,13605 - } snll;yami::__anon32::snll604,13605 - COUNT s0;s0606,13630 - COUNT s0;yami::__anon32::__anon85::s0606,13630 - COUNT s1;s1607,13660 - COUNT s1;yami::__anon32::__anon85::s1607,13660 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];d608,13690 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];yami::__anon32::__anon85::d608,13690 - CELL next;next609,13737 - CELL next;yami::__anon32::__anon85::next609,13737 - } ssd;ssd610,13754 - } ssd;yami::__anon32::ssd610,13754 - COUNT s0;s0612,13778 - COUNT s0;yami::__anon32::__anon86::s0612,13778 - COUNT s1;s1613,13808 - COUNT s1;yami::__anon32::__anon86::s1613,13808 - Int n;n614,13838 - Int n;yami::__anon32::__anon86::n614,13838 - CELL next;next615,13854 - CELL next;yami::__anon32::__anon86::next615,13854 - } ssn;ssn616,13871 - } ssn;yami::__anon32::ssn616,13871 - COUNT s0;s0618,13895 - COUNT s0;yami::__anon32::__anon87::s0618,13895 - COUNT s1;s1619,13925 - COUNT s1;yami::__anon32::__anon87::s1619,13925 - COUNT s2;s2620,13955 - COUNT s2;yami::__anon32::__anon87::s2620,13955 - CELL next;next621,13985 - CELL next;yami::__anon32::__anon87::next621,13985 - } sss;sss622,14002 - } sss;yami::__anon32::sss622,14002 - COUNT s1;s1624,14026 - COUNT s1;yami::__anon32::__anon88::s1624,14026 - COUNT s2;s2625,14056 - COUNT s2;yami::__anon32::__anon88::s2625,14056 - struct yami *F;F626,14086 - struct yami *F;yami::__anon32::__anon88::F626,14086 - struct yami *T;T627,14115 - struct yami *T;yami::__anon32::__anon88::T627,14115 - CELL next;next628,14144 - CELL next;yami::__anon32::__anon88::next628,14144 - } ssll;ssll629,14161 - } ssll;yami::__anon32::ssll629,14161 - COUNT s;s631,14186 - COUNT s;yami::__anon32::__anon89::s631,14186 - wamreg x;x632,14215 - wamreg x;yami::__anon32::__anon89::x632,14215 - struct yami *l;l633,14244 - struct yami *l;yami::__anon32::__anon89::l633,14244 - CELL next;next634,14273 - CELL next;yami::__anon32::__anon89::next634,14273 - } sxl;sxl635,14290 - } sxl;yami::__anon32::sxl635,14290 - COUNT s;s637,14314 - COUNT s;yami::__anon32::__anon90::s637,14314 - wamreg x;x638,14343 - wamreg x;yami::__anon32::__anon90::x638,14343 - struct yami *F;F639,14372 - struct yami *F;yami::__anon32::__anon90::F639,14372 - struct yami *T;T640,14401 - struct yami *T;yami::__anon32::__anon90::T640,14401 - CELL next;next641,14430 - CELL next;yami::__anon32::__anon90::next641,14430 - } sxll;sxll642,14447 - } sxll;yami::__anon32::sxll642,14447 - COUNT s;s644,14472 - COUNT s;yami::__anon32::__anon91::s644,14472 - yslot y;y645,14501 - yslot y;yami::__anon32::__anon91::y645,14501 - struct yami *l;l646,14530 - struct yami *l;yami::__anon32::__anon91::l646,14530 - CELL next;next647,14559 - CELL next;yami::__anon32::__anon91::next647,14559 - } syl;syl648,14576 - } syl;yami::__anon32::syl648,14576 - COUNT s;s650,14600 - COUNT s;yami::__anon32::__anon92::s650,14600 - yslot y;y651,14629 - yslot y;yami::__anon32::__anon92::y651,14629 - struct yami *F;F652,14658 - struct yami *F;yami::__anon32::__anon92::F652,14658 - struct yami *T;T653,14687 - struct yami *T;yami::__anon32::__anon92::T653,14687 - CELL next;next654,14716 - CELL next;yami::__anon32::__anon92::next654,14716 - } syll;syll655,14733 - } syll;yami::__anon32::syll655,14733 - unsigned int or_arg;or_arg661,14988 - unsigned int or_arg;yami::__anon32::__anon93::or_arg661,14988 - COUNT s;s663,15029 - COUNT s;yami::__anon32::__anon93::s663,15029 - CELL *bmap;bmap664,15058 - CELL *bmap;yami::__anon32::__anon93::bmap664,15058 - struct yami *l;l665,15090 - struct yami *l;yami::__anon32::__anon93::l665,15090 - struct pred_entry *p0;p0666,15112 - struct pred_entry *p0;yami::__anon32::__anon93::p0666,15112 - CELL next;next667,15142 - CELL next;yami::__anon32::__anon93::next667,15142 - } Osblp;Osblp668,15159 - } Osblp;yami::__anon32::Osblp668,15159 - unsigned int or_arg;or_arg671,15198 - unsigned int or_arg;yami::__anon32::__anon94::or_arg671,15198 - COUNT s;s673,15239 - COUNT s;yami::__anon32::__anon94::s673,15239 - CELL *bmap;bmap674,15268 - CELL *bmap;yami::__anon32::__anon94::bmap674,15268 - struct pred_entry *p;p675,15300 - struct pred_entry *p;yami::__anon32::__anon94::p675,15300 - Int i;i676,15329 - Int i;yami::__anon32::__anon94::i676,15329 - CELL next;next677,15345 - CELL next;yami::__anon32::__anon94::next677,15345 - } Osbpa;Osbpa678,15362 - } Osbpa;yami::__anon32::Osbpa678,15362 - unsigned int or_arg;or_arg681,15401 - unsigned int or_arg;yami::__anon32::__anon95::or_arg681,15401 - COUNT s;s683,15442 - COUNT s;yami::__anon32::__anon95::s683,15442 - CELL *bmap;bmap684,15471 - CELL *bmap;yami::__anon32::__anon95::bmap684,15471 - struct pred_entry *p;p685,15503 - struct pred_entry *p;yami::__anon32::__anon95::p685,15503 - struct pred_entry *p0;p0686,15532 - struct pred_entry *p0;yami::__anon32::__anon95::p0686,15532 - CELL next;next687,15562 - CELL next;yami::__anon32::__anon95::next687,15562 - } Osbpp;Osbpp688,15579 - } Osbpp;yami::__anon32::Osbpp688,15579 - unsigned int or_arg;or_arg691,15618 - unsigned int or_arg;yami::__anon32::__anon96::or_arg691,15618 - COUNT s;s693,15659 - COUNT s;yami::__anon32::__anon96::s693,15659 - CELL *bmap;bmap694,15688 - CELL *bmap;yami::__anon32::__anon96::bmap694,15688 - Term mod;mod695,15720 - Term mod;yami::__anon32::__anon96::mod695,15720 - struct pred_entry *p0;p0696,15737 - struct pred_entry *p0;yami::__anon32::__anon96::p0696,15737 - CELL next;next697,15767 - CELL next;yami::__anon32::__anon96::next697,15767 - } Osbmp;Osbmp698,15784 - } Osbmp;yami::__anon32::Osbmp698,15784 - COUNT s;s701,15836 - COUNT s;yami::__anon32::__anon97::s701,15836 - COUNT e;e703,15890 - COUNT e;yami::__anon32::__anon97::e703,15890 - COUNT w;w705,15956 - COUNT w;yami::__anon32::__anon97::w705,15956 - struct yami *l;l706,15985 - struct yami *l;yami::__anon32::__anon97::l706,15985 - CELL next;next707,16014 - CELL next;yami::__anon32::__anon97::next707,16014 - } sssl;sssl708,16031 - } sssl;yami::__anon32::sssl708,16031 - wamreg x;x710,16056 - wamreg x;yami::__anon32::__anon98::x710,16056 - CELL next;next711,16087 - CELL next;yami::__anon32::__anon98::next711,16087 - } x;x712,16104 - } x;yami::__anon32::x712,16104 - wamreg x;x714,16126 - wamreg x;yami::__anon32::__anon99::x714,16126 - struct pred_entry *p0;p0715,16157 - struct pred_entry *p0;yami::__anon32::__anon99::p0715,16157 - COUNT s;s716,16189 - COUNT s;yami::__anon32::__anon99::s716,16189 - CELL next;next717,16218 - CELL next;yami::__anon32::__anon99::next717,16218 - } xps;xps718,16235 - } xps;yami::__anon32::xps718,16235 - wamreg x;x720,16259 - wamreg x;yami::__anon32::__anon100::x720,16259 - CELL c;c721,16290 - CELL c;yami::__anon32::__anon100::c721,16290 - CELL next;next722,16321 - CELL next;yami::__anon32::__anon100::next722,16321 - } xc;xc723,16338 - } xc;yami::__anon32::xc723,16338 - wamreg x;x725,16361 - wamreg x;yami::__anon32::__anon101::x725,16361 - Term b;b726,16392 - Term b;yami::__anon32::__anon101::b726,16392 - CELL next;next727,16423 - CELL next;yami::__anon32::__anon101::next727,16423 - } xN;xN728,16440 - } xN;yami::__anon32::xN728,16440 - wamreg x;x730,16463 - wamreg x;yami::__anon32::__anon102::x730,16463 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];d731,16494 - CELL d[1+SIZEOF_DOUBLE/SIZEOF_INT_P];yami::__anon32::__anon102::d731,16494 - CELL next;next732,16541 - CELL next;yami::__anon32::__anon102::next732,16541 - } xd;xd733,16558 - } xd;yami::__anon32::xd733,16558 - wamreg x;x735,16581 - wamreg x;yami::__anon32::__anon103::x735,16581 - Term D;D736,16612 - Term D;yami::__anon32::__anon103::D736,16612 - CELL next;next737,16643 - CELL next;yami::__anon32::__anon103::next737,16643 - } xD;xD738,16660 - } xD;yami::__anon32::xD738,16660 - wamreg x;x740,16683 - wamreg x;yami::__anon32::__anon104::x740,16683 - Functor f;f741,16714 - Functor f;yami::__anon32::__anon104::f741,16714 - Int a;a742,16743 - Int a;yami::__anon32::__anon104::a742,16743 - CELL next;next743,16772 - CELL next;yami::__anon32::__anon104::next743,16772 - } xfa;xfa744,16789 - } xfa;yami::__anon32::xfa744,16789 - wamreg x;x746,16813 - wamreg x;yami::__anon32::__anon105::x746,16813 - struct yami *F;F747,16844 - struct yami *F;yami::__anon32::__anon105::F747,16844 - CELL next;next748,16875 - CELL next;yami::__anon32::__anon105::next748,16875 - } xl;xl749,16892 - } xl;yami::__anon32::xl749,16892 - wamreg x;x751,16915 - wamreg x;yami::__anon32::__anon106::x751,16915 - CELL i[2];i752,16946 - CELL i[2];yami::__anon32::__anon106::i752,16946 - CELL next;next753,16966 - CELL next;yami::__anon32::__anon106::next753,16966 - } xi;xi754,16983 - } xi;yami::__anon32::xi754,16983 - wamreg x;x756,17006 - wamreg x;yami::__anon32::__anon107::x756,17006 - struct yami *l1;l1757,17037 - struct yami *l1;yami::__anon32::__anon107::l1757,17037 - struct yami *l2;l2758,17067 - struct yami *l2;yami::__anon32::__anon107::l2758,17067 - CELL next;next759,17097 - CELL next;yami::__anon32::__anon107::next759,17097 - } xll;xll760,17114 - } xll;yami::__anon32::xll760,17114 - wamreg xl;xl762,17138 - wamreg xl;yami::__anon32::__anon108::xl762,17138 - wamreg xr;xr763,17170 - wamreg xr;yami::__anon32::__anon108::xr763,17170 - CELL next;next764,17202 - CELL next;yami::__anon32::__anon108::next764,17202 - } xx;xx765,17219 - } xx;yami::__anon32::xx765,17219 - wamreg x;x767,17242 - wamreg x;yami::__anon32::__anon109::x767,17242 - Term ut;ut768,17273 - Term ut;yami::__anon32::__anon109::ut768,17273 - CELL next;next769,17305 - CELL next;yami::__anon32::__anon109::next769,17305 - } xu;xu770,17322 - } xu;yami::__anon32::xu770,17322 - wamreg x;x772,17345 - wamreg x;yami::__anon32::__anon110::x772,17345 - wamreg xi;xi773,17376 - wamreg xi;yami::__anon32::__anon110::xi773,17376 - Term c;c774,17408 - Term c;yami::__anon32::__anon110::c774,17408 - CELL next;next775,17439 - CELL next;yami::__anon32::__anon110::next775,17439 - } xxc;xxc776,17456 - } xxc;yami::__anon32::xxc776,17456 - wamreg x;x778,17480 - wamreg x;yami::__anon32::__anon111::x778,17480 - wamreg xi;xi779,17511 - wamreg xi;yami::__anon32::__anon111::xi779,17511 - Int c;c780,17543 - Int c;yami::__anon32::__anon111::c780,17543 - CELL next;next781,17574 - CELL next;yami::__anon32::__anon111::next781,17574 - } xxn;xxn782,17591 - } xxn;yami::__anon32::xxn782,17591 - wamreg x;x784,17615 - wamreg x;yami::__anon32::__anon112::x784,17615 - wamreg x1;x1785,17646 - wamreg x1;yami::__anon32::__anon112::x1785,17646 - wamreg x2;x2786,17678 - wamreg x2;yami::__anon32::__anon112::x2786,17678 - CELL next;next787,17710 - CELL next;yami::__anon32::__anon112::next787,17710 - } xxx;xxx788,17727 - } xxx;yami::__anon32::xxx788,17727 - wamreg xl1;xl1790,17751 - wamreg xl1;yami::__anon32::__anon113::xl1790,17751 - wamreg xl2;xl2791,17784 - wamreg xl2;yami::__anon32::__anon113::xl2791,17784 - wamreg xr1;xr1792,17817 - wamreg xr1;yami::__anon32::__anon113::xr1792,17817 - wamreg xr2;xr2793,17850 - wamreg xr2;yami::__anon32::__anon113::xr2793,17850 - CELL next;next794,17883 - CELL next;yami::__anon32::__anon113::next794,17883 - } xxxx;xxxx795,17900 - } xxxx;yami::__anon32::xxxx795,17900 - wamreg x;x797,17925 - wamreg x;yami::__anon32::__anon114::x797,17925 - wamreg x1;x1798,17956 - wamreg x1;yami::__anon32::__anon114::x1798,17956 - yslot y2;y2799,17988 - yslot y2;yami::__anon32::__anon114::y2799,17988 - CELL next;next800,18019 - CELL next;yami::__anon32::__anon114::next800,18019 - } xxy;xxy801,18036 - } xxy;yami::__anon32::xxy801,18036 - yslot y;y803,18060 - yslot y;yami::__anon32::__anon115::y803,18060 - CELL next;next804,18090 - CELL next;yami::__anon32::__anon115::next804,18090 - } y;y805,18107 - } y;yami::__anon32::y805,18107 - yslot y;y807,18129 - yslot y;yami::__anon32::__anon116::y807,18129 - struct pred_entry *p0;p0808,18159 - struct pred_entry *p0;yami::__anon32::__anon116::p0808,18159 - COUNT s;s809,18190 - COUNT s;yami::__anon32::__anon116::s809,18190 - CELL next;next810,18219 - CELL next;yami::__anon32::__anon116::next810,18219 - } yps;yps811,18236 - } yps;yami::__anon32::yps811,18236 - yslot y;y813,18260 - yslot y;yami::__anon32::__anon117::y813,18260 - struct yami *F;F814,18290 - struct yami *F;yami::__anon32::__anon117::F814,18290 - CELL next;next815,18320 - CELL next;yami::__anon32::__anon117::next815,18320 - } yl;yl816,18337 - } yl;yami::__anon32::yl816,18337 - yslot y;y818,18360 - yslot y;yami::__anon32::__anon118::y818,18360 - wamreg x;x819,18390 - wamreg x;yami::__anon32::__anon118::x819,18390 - CELL next;next820,18421 - CELL next;yami::__anon32::__anon118::next820,18421 - } yx;yx821,18438 - } yx;yami::__anon32::yx821,18438 - yslot y;y823,18461 - yslot y;yami::__anon32::__anon119::y823,18461 - wamreg x1;x1824,18491 - wamreg x1;yami::__anon32::__anon119::x1824,18491 - wamreg x2;x2825,18523 - wamreg x2;yami::__anon32::__anon119::x2825,18523 - CELL next;next826,18555 - CELL next;yami::__anon32::__anon119::next826,18555 - } yxx;yxx827,18572 - } yxx;yami::__anon32::yxx827,18572 - yslot y1;y1829,18596 - yslot y1;yami::__anon32::__anon120::y1829,18596 - yslot y2;y2830,18627 - yslot y2;yami::__anon32::__anon120::y2830,18627 - wamreg x;x831,18658 - wamreg x;yami::__anon32::__anon120::x831,18658 - CELL next;next832,18689 - CELL next;yami::__anon32::__anon120::next832,18689 - } yyx;yyx833,18706 - } yyx;yami::__anon32::yyx833,18706 - yslot y1;y1835,18730 - yslot y1;yami::__anon32::__anon121::y1835,18730 - yslot y2;y2836,18761 - yslot y2;yami::__anon32::__anon121::y2836,18761 - wamreg x1;x1837,18792 - wamreg x1;yami::__anon32::__anon121::x1837,18792 - wamreg x2;x2838,18823 - wamreg x2;yami::__anon32::__anon121::x2838,18823 - CELL next;next839,18854 - CELL next;yami::__anon32::__anon121::next839,18854 - } yyxx;yyxx840,18871 - } yyxx;yami::__anon32::yyxx840,18871 - yslot y;y842,18896 - yslot y;yami::__anon32::__anon122::y842,18896 - yslot y1;y1843,18926 - yslot y1;yami::__anon32::__anon122::y1843,18926 - yslot y2;y2844,18957 - yslot y2;yami::__anon32::__anon122::y2844,18957 - CELL next;next845,18988 - CELL next;yami::__anon32::__anon122::next845,18988 - } yyy;yyy846,19005 - } yyy;yami::__anon32::yyy846,19005 - yslot y;y848,19029 - yslot y;yami::__anon32::__anon123::y848,19029 - wamreg xi;xi849,19059 - wamreg xi;yami::__anon32::__anon123::xi849,19059 - Int c;c850,19090 - Int c;yami::__anon32::__anon123::c850,19090 - CELL next;next851,19120 - CELL next;yami::__anon32::__anon123::next851,19120 - } yxn;yxn852,19137 - } yxn;yami::__anon32::yxn852,19137 - yslot y;y854,19161 - yslot y;yami::__anon32::__anon124::y854,19161 - wamreg xi;xi855,19191 - wamreg xi;yami::__anon32::__anon124::xi855,19191 - Term c;c856,19222 - Term c;yami::__anon32::__anon124::c856,19222 - CELL next;next857,19252 - CELL next;yami::__anon32::__anon124::next857,19252 - } yxc;yxc858,19269 - } yxc;yami::__anon32::yxc858,19269 - } y_u;y_u859,19280 - } y_u;yami::y_u859,19280 -} yamop;yamop860,19289 -typedef yamop yamopp;yamopp862,19299 -#define OPCR OPCR864,19322 -#define OPCW OPCW865,19354 -#define NEXTOP(NEXTOP868,19394 -#define PREVOP(PREVOP870,19456 -typedef struct trail_frame {trail_frame873,19586 - Term term;term874,19615 - Term term;trail_frame::term874,19615 - CELL value;value875,19628 - CELL value;trail_frame::value875,19628 -} *tr_fr_ptr;tr_fr_ptr876,19642 -#define TrailTerm(TrailTerm878,19657 -#define TrailVal(TrailVal879,19692 -typedef Term *tr_fr_ptr;tr_fr_ptr881,19734 -#define TrailTerm(TrailTerm883,19760 -#define TrailVal(TrailVal884,19790 -struct deterministic_choicept {deterministic_choicept895,20005 - yamop *cp_ap;cp_ap896,20037 - yamop *cp_ap;deterministic_choicept::cp_ap896,20037 - struct choicept *cp_b;cp_b897,20053 - struct choicept *cp_b;deterministic_choicept::cp_b897,20053 - tr_fr_ptr cp_tr;cp_tr898,20078 - tr_fr_ptr cp_tr;deterministic_choicept::cp_tr898,20078 - CELL cp_depth;cp_depth900,20116 - CELL cp_depth;deterministic_choicept::cp_depth900,20116 - int cp_lub; /* local untried branches */cp_lub903,20171 - int cp_lub; /* local untried branches */deterministic_choicept::cp_lub903,20171 - struct or_frame *cp_or_fr; /* or-frame pointer */cp_or_fr904,20224 - struct or_frame *cp_or_fr; /* or-frame pointer */deterministic_choicept::cp_or_fr904,20224 - CELL *cp_h; /* necessary, otherwise we get in trouble */cp_h906,20296 - CELL *cp_h; /* necessary, otherwise we get in trouble */deterministic_choicept::cp_h906,20296 -typedef struct choicept {choicept909,20360 - yamop *cp_ap;cp_ap910,20386 - yamop *cp_ap;choicept::cp_ap910,20386 - struct choicept *cp_b;cp_b911,20402 - struct choicept *cp_b;choicept::cp_b911,20402 - tr_fr_ptr cp_tr;cp_tr912,20427 - tr_fr_ptr cp_tr;choicept::cp_tr912,20427 - CELL cp_depth;cp_depth914,20465 - CELL cp_depth;choicept::cp_depth914,20465 - int cp_lub; /* local untried branches */cp_lub917,20520 - int cp_lub; /* local untried branches */choicept::cp_lub917,20520 - struct or_frame *cp_or_fr; /* or-frame pointer */cp_or_fr918,20573 - struct or_frame *cp_or_fr; /* or-frame pointer */choicept::cp_or_fr918,20573 - CELL *cp_h;cp_h920,20645 - CELL *cp_h;choicept::cp_h920,20645 - yamop *cp_cp;cp_cp921,20659 - yamop *cp_cp;choicept::cp_cp921,20659 -typedef struct choicept {choicept923,20681 -typedef struct choicept {choicept::choicept923,20681 - tr_fr_ptr cp_tr;cp_tr924,20707 - tr_fr_ptr cp_tr;choicept::choicept::cp_tr924,20707 - CELL *cp_h;cp_h925,20726 - CELL *cp_h;choicept::choicept::cp_h925,20726 - struct choicept *cp_b;cp_b926,20740 - struct choicept *cp_b;choicept::choicept::cp_b926,20740 - CELL cp_depth;cp_depth928,20784 - CELL cp_depth;choicept::choicept::cp_depth928,20784 - yamop *cp_cp;cp_cp930,20826 - yamop *cp_cp;choicept::choicept::cp_cp930,20826 - int cp_lub; /* local untried branches */cp_lub932,20855 - int cp_lub; /* local untried branches */choicept::choicept::cp_lub932,20855 - struct or_frame *cp_or_fr; /* or-frame pointer */cp_or_fr933,20908 - struct or_frame *cp_or_fr; /* or-frame pointer */choicept::choicept::cp_or_fr933,20908 - yamop *cp_ap;cp_ap935,20980 - yamop *cp_ap;choicept::choicept::cp_ap935,20980 - CELL *cp_env;cp_env938,21050 - CELL *cp_env;choicept::choicept::cp_env938,21050 - CELL cp_args[MIN_ARRAY];cp_args940,21105 - CELL cp_args[MIN_ARRAY];choicept::choicept::cp_args940,21105 - CELL *cp_uenv;cp_uenv944,21218 - CELL *cp_uenv;choicept::choicept::__anon125::cp_uenv944,21218 - CELL cp_xargs[1];cp_xargs945,21237 - CELL cp_xargs[1];choicept::choicept::__anon125::cp_xargs945,21237 - } cp_last;cp_last946,21260 - } cp_last;choicept::choicept::cp_last946,21260 -#define cp_env cp_env947,21273 -#define cp_args cp_args948,21305 -#define cp_a1 cp_a1950,21346 -#define cp_a2 cp_a2951,21372 -#define cp_a3 cp_a3952,21398 -#define cp_a4 cp_a4953,21424 -#define cp_a5 cp_a5954,21450 -#define cp_a6 cp_a6955,21476 -#define cp_a7 cp_a7956,21502 -#define cp_a8 cp_a8957,21528 -#define cp_a9 cp_a9958,21554 -#define cp_a10 cp_a10959,21580 -#define EXTRA_CBACK_ARG(EXTRA_CBACK_ARG960,21607 -} *choiceptr;choiceptr961,21677 -} *choiceptr;choicept::choiceptr961,21677 -#define SHOULD_CUT_UP_TO(SHOULD_CUT_UP_TO964,21736 -#define SHARED_CP(SHARED_CP968,21846 -#define YOUNGER_CP(YOUNGER_CP970,21911 -#define EQUAL_OR_YOUNGER_CP(EQUAL_OR_YOUNGER_CP977,22131 -#define YOUNGER_H(YOUNGER_H984,22361 -#define YOUNGER_CP(YOUNGER_CP988,22436 -#define EQUAL_OR_YOUNGER_CP(EQUAL_OR_YOUNGER_CP989,22492 -#define YOUNGER_H(YOUNGER_H991,22549 -#define YOUNGEST_CP(YOUNGEST_CP995,22640 -#define YOUNGEST_H(YOUNGEST_H997,22719 -#define E_CP E_CP1005,22920 -#define E_E E_E1006,22937 -#define E_CB E_CB1007,22953 -#define E_B E_B1009,22985 -#define E_DEPTH E_DEPTH1011,23021 -#define EnvSizeInCells EnvSizeInCells1012,23048 -#define EnvSizeInCells EnvSizeInCells1014,23081 -#define E_DEPTH E_DEPTH1018,23176 -#define EnvSizeInCells EnvSizeInCells1019,23203 -#define EnvSizeInCells EnvSizeInCells1021,23236 -#define FixedEnvSize FixedEnvSize1026,23327 -#define FixedEnvSize FixedEnvSize1028,23370 -#define RealEnvSize RealEnvSize1030,23429 -CELL *ENV_Parent(CELL *env)ENV_Parent1033,23494 -CELL *ENV_Parent(CELL *env)choicept::ENV_Parent1033,23494 -Int ENV_Size(yamop *cp)ENV_Size1039,23568 -Int ENV_Size(yamop *cp)choicept::ENV_Size1039,23568 -struct pred_entry *ENV_ToP(yamop *cp)ENV_ToP1045,23700 -struct pred_entry *ENV_ToP(yamop *cp)choicept::ENV_ToP1045,23700 -OPCODE ENV_ToOp(yamop *cp)ENV_ToOp1051,23846 -OPCODE ENV_ToOp(yamop *cp)choicept::ENV_ToOp1051,23846 -int64_t EnvSize(yamop *cp)EnvSize1057,23973 -int64_t EnvSize(yamop *cp)choicept::EnvSize1057,23973 -CELL *EnvBMap(yamop *p)EnvBMap1063,24058 -CELL *EnvBMap(yamop *p)choicept::EnvBMap1063,24058 -struct pred_entry *EnvPreg(yamop *p)EnvPreg1069,24192 -struct pred_entry *EnvPreg(yamop *p)choicept::EnvPreg1069,24192 -#define absmadr(absmadr1079,24409 -#define absmadr(absmadr1081,24469 -#define RESET_DEPTH(RESET_DEPTH1091,24668 - -H/amijit.h,53999 -#define AMIJIT_H_AMIJIT_H_9,89 - e_createAAEvalPass, //Exhaustive Alias Analysis Precision Evaluatore_createAAEvalPass14,181 - e_createAliasAnalysisCounterPass, //Count Alias Analysis Query Responsese_createAliasAnalysisCounterPass15,251 - e_createBasicAliasAnalysisPass, //Basic Alias Analysis (stateless AA impl)e_createBasicAliasAnalysisPass16,326 - e_createCFGOnlyPrinterPass, //Print CFG of function to 'dot' file (with no function bodies)e_createCFGOnlyPrinterPass17,403 - e_createCFGPrinterPass, //Print CFG of function to 'dot' filee_createCFGPrinterPass18,497 - e_createDbgInfoPrinterPass, //Print debug info in human readable forme_createDbgInfoPrinterPass19,561 - e_createDomOnlyPrinterPass, //Print dominance tree of function to 'dot' file (with no function bodies)e_createDomOnlyPrinterPass20,633 - e_createDomPrinterPass, //Print dominance tree of function to 'dot' filee_createDomPrinterPass21,738 - e_createGlobalsModRefPass, //Simple mod/ref analysis for globalse_createGlobalsModRefPass22,813 - e_createInstCountPass, //Counts the various types of Instructionse_createInstCountPass23,880 - e_createIVUsersPass, //Induction Variable Userse_createIVUsersPass24,948 - e_createLazyValueInfoPass, //Lazy Value Information Analysise_createLazyValueInfoPass25,998 - e_createLibCallAliasAnalysisPass, //LibCall Alias Analysise_createLibCallAliasAnalysisPass26,1061 - e_createLintPass, //Statically lint-checks LLVM IRe_createLintPass27,1122 - e_createLoopDependenceAnalysisPass, //Loop Dependence Analysise_createLoopDependenceAnalysisPass28,1175 - e_createMemDepPrinter, //Memory Dependence Analysise_createMemDepPrinter29,1240 - e_createModuleDebugInfoPrinterPass, //Decodes module-level debug infoe_createModuleDebugInfoPrinterPass30,1294 - e_createNoAAPass, //No Alias Analysis (always returns 'may' alias)e_createNoAAPass31,1366 - e_createNoPathProfileInfoPass, //No Path Profile Informatione_createNoPathProfileInfoPass32,1435 - e_createNoProfileInfoPass, //No Profile Informatione_createNoProfileInfoPass33,1498 - e_createObjCARCAliasAnalysisPass, //ObjC-ARC-Based Alias Analysise_createObjCARCAliasAnalysisPass34,1552 - e_createPathProfileLoaderPass, //Loads information from a path profile dump filee_createPathProfileLoaderPass35,1620 - e_createPathProfileVerifierPass, //Verifies path profiling informatione_createPathProfileVerifierPass36,1703 - e_createPostDomOnlyPrinterPass, //Print postdominance tree of function to 'dot' file (with no function bodies)e_createPostDomOnlyPrinterPass37,1776 - e_createPostDomPrinterPass, //Print postdominance tree of function to 'dot' filee_createPostDomPrinterPass38,1889 - e_createProfileEstimatorPass, //Estimate profiling informatione_createProfileEstimatorPass39,1972 - e_createProfileLoaderPass, //Load profile information from llvmprof.oute_createProfileLoaderPass40,2037 - e_createProfileVerifierPass, //Verify profiling informatione_createProfileVerifierPass41,2111 - e_createRegionInfoPass, //Detect single entry single exit regionse_createRegionInfoPass42,2173 - e_createRegionOnlyPrinterPass, //Print regions of function to 'dot' file (with no function bodies)e_createRegionOnlyPrinterPass43,2241 - e_createRegionPrinterPass, //Print regions of function to 'dot' filee_createRegionPrinterPass44,2342 - e_createScalarEvolutionAliasAnalysisPass, //ScalarEvolution-based Alias Analysise_createScalarEvolutionAliasAnalysisPass45,2413 - e_createTypeBasedAliasAnalysisPass //Type-Based Alias Analysise_createTypeBasedAliasAnalysisPass46,2496 -} enumAnalysisPasses;enumAnalysisPasses47,2561 - t_createAggressiveDCEPass, //This pass uses the SSA based Aggressive DCE algorithmt_createAggressiveDCEPass51,2645 - t_createArgumentPromotionPass, //Promotes "by reference" arguments to be passed by value if the number of elements passed is smaller or equal to maxElementt_createArgumentPromotionPass52,2730 - t_createBBVectorizePass, //A basic-block vectorization passt_createBBVectorizePass53,2888 - t_createBlockExtractorPass, //Extracts all blocks (except those specified in the argument list) from the functions in the modulet_createBlockExtractorPass54,2950 - t_createBlockPlacementPass, //This pass reorders basic blocks in order to increase the number of fall-through conditional branchest_createBlockPlacementPass55,3081 - t_createBreakCriticalEdgesPass, //Break all of the critical edges in the CFG by inserting a dummy basic blockt_createBreakCriticalEdgesPass56,3214 - t_createCFGSimplificationPass, //Merge basic blocks, eliminate unreachable blocks, simplify terminator instructions, etc...t_createCFGSimplificationPass57,3326 - t_createCodeGenPreparePass, //Prepares a function for instruction selectiont_createCodeGenPreparePass58,3452 - t_createConstantMergePass, //Returns a new pass that merges duplicate global constants together into a single constant that is sharedt_createConstantMergePass59,3530 - t_createConstantPropagationPass, //A worklist driven constant propagation passt_createConstantPropagationPass60,3666 - t_createCorrelatedValuePropagationPass, //Propagate CFG-derived value informationt_createCorrelatedValuePropagationPass61,3747 - t_createDeadArgEliminationPass, //This pass removes arguments from functions which are not used by the body of the functiont_createDeadArgEliminationPass62,3831 - t_createDeadArgHackingPass, //Same as DAE, but delete arguments of external functions as wellt_createDeadArgHackingPass63,3957 - t_createDeadCodeEliminationPass, //This pass is more powerful than DeadInstEliminationt_createDeadCodeEliminationPass64,4053 - t_createDeadInstEliminationPass, //Removes trivially dead instructions without modifying the CFG of the functiont_createDeadInstEliminationPass65,4142 - t_createDeadStoreEliminationPass, //Deletes stores that are post-dominated by must-aliased stores and are not loaded used between the storest_createDeadStoreEliminationPass66,4257 - t_createDemoteRegisterToMemoryPass, //This pass is used to demote registers to memory referencest_createDemoteRegisterToMemoryPass67,4400 - t_createEarlyCSEPass, //This pass performs a simple and fast CSE pass over the dominator treet_createEarlyCSEPass68,4499 - t_createFunctionAttrsPass, //Discovers functions that do not access memory, or only read memory, and gives them the readnone/readonly attributet_createFunctionAttrsPass69,4595 - t_createFunctionInliningPass,t_createFunctionInliningPass70,4741 - t_createGlobalDCEPass, //This transform is designed to eliminate unreachable internal globals (functions or global variables)t_createGlobalDCEPass71,4773 - t_createGlobalOptimizerPass, //Returns a new pass that optimizes non-address taken internal globalst_createGlobalOptimizerPass72,4901 - t_createGVExtractionPass, //Deletes as much of the module as possible, except for the global values specifiedt_createGVExtractionPass73,5003 - t_createGVNPass, //Performs global value numbering and redundant load elimination cotemporaneouslyt_createGVNPass74,5115 - t_createIndVarSimplifyPass, //Transform induction variables in a program to all use a single canonical induction variable per loopt_createIndVarSimplifyPass75,5216 - t_createInstructionCombiningPass, //Combine instructions to form fewer, simple instructionst_createInstructionCombiningPass76,5349 - t_createInstructionNamerPass, //Give any unnamed non-void instructions "tmp" namest_createInstructionNamerPass77,5443 - t_createInstructionSimplifierPass, //Remove redundant instructionst_createInstructionSimplifierPass78,5528 - t_createInternalizePass, //Loops over all of the functions in the input module, internalizing all globalst_createInternalizePass79,5597 - t_createIPConstantPropagationPass, //Propagates constants from call sites into the bodies of functionst_createIPConstantPropagationPass80,5705 - t_createIPSCCPPass, //Propagates constants from call sites into the bodies of functions, and keeps track of whether basic blocks are executable in the processt_createIPSCCPPass81,5810 - t_createJumpThreadingPass, //Thread control through mult-pred/multi-succ blocks where some preds always go to some succt_createJumpThreadingPass82,5971 - t_createLCSSAPass, //This pass inserts phi nodes at loop boundaries to simplify other loop optimizationst_createLCSSAPass83,6093 - t_createLICMPass, //Loop invariant code motion and memory promotion passt_createLICMPass84,6200 - t_createLoopDeletionPass, //Performs DCE of non-infinite loops that it can prove are deadt_createLoopDeletionPass85,6275 - t_createLoopExtractorPass, //Extracts all natural loops from the program into a function if it cant_createLoopExtractorPass86,6367 - t_createLoopIdiomPass, //Recognizes and replaces idioms in loopst_createLoopIdiomPass87,6468 - t_createLoopInstSimplifyPass, //Simplifies instructions in a loop's bodyt_createLoopInstSimplifyPass88,6535 - t_createLoopRotatePass, //Simple loop rotating passt_createLoopRotatePass89,6610 - t_createLoopSimplifyPass, //Insert Pre-header blocks into the CFG for every function in the modulet_createLoopSimplifyPass90,6664 - t_createLoopStrengthReducePass, //This pass is strength reduces GEP instructions that use a loop's canonical induction variable as one of their indicest_createLoopStrengthReducePass91,6765 - t_createLoopUnrollPass, //Simple loop unrolling passt_createLoopUnrollPass92,6919 - t_createLoopUnswitchPass, //Simple loop unswitching passt_createLoopUnswitchPass93,6974 - t_createLowerAtomicPass, //Lower atomic intrinsics to non-atomic formt_createLowerAtomicPass94,7033 - t_createLowerExpectIntrinsicPass, //Removes llvm.expect intrinsics and creates "block_weights" metadatat_createLowerExpectIntrinsicPass95,7105 - t_createLowerInvokePass, //Converts invoke and unwind instructions to use sjlj exception handling mechanismst_createLowerInvokePass96,7211 - t_createLowerSwitchPass, //Converts SwitchInst instructions into a sequence of chained binary branch instructionst_createLowerSwitchPass97,7322 - t_createMemCpyOptPass, //Performs optimizations related to eliminating memcpy calls and/or combining multiple stores into memset'st_createMemCpyOptPass98,7438 - t_createMergeFunctionsPass, //Discovers identical functions and collapses themt_createMergeFunctionsPass99,7571 - t_createObjCARCAPElimPass, //ObjC ARC autorelease pool eliminationt_createObjCARCAPElimPass100,7652 - t_createObjCARCContractPass, //Late ObjC ARC cleanupst_createObjCARCContractPass101,7721 - t_createObjCARCExpandPass, //ObjC ARC preliminary simplificationst_createObjCARCExpandPass102,7777 - t_createObjCARCOptPass, //ObjC ARC optimizationt_createObjCARCOptPass103,7845 - t_createPartialInliningPass, //Inlines parts of functionst_createPartialInliningPass104,7895 - t_createPromoteMemoryToRegisterPass, //This pass is used to promote memory references to be register referencest_createPromoteMemoryToRegisterPass105,7955 - t_createPruneEHPass, //Return a new pass object which transforms invoke instructions into calls, if the callee can _no t_ unwind the stackt_createPruneEHPass106,8069 - t_createReassociatePass, //This pass reassociates commutative expressions in an order that is designed to promote better constant propagation, GCSE, LICM, PRE...t_createReassociatePass107,8211 - t_createScalarReplAggregatesPass, //Break up alloca's of aggregates into multiple allocas if possible.t_createScalarReplAggregatesPass108,8375 - t_createSCCPPass, //Sparse conditional constant propagationt_createSCCPPass109,8480 - t_createSimplifyLibCallsPass, //Optimizes specific calls to specific well-known (library) functionst_createSimplifyLibCallsPass110,8542 - t_createSingleLoopExtractorPass, //Extracts one natural loop from the program into a function if it cant_createSingleLoopExtractorPass111,8644 - t_createSinkingPass, //Code Sinkingt_createSinkingPass112,8750 - t_createStripDeadDebugInfoPass, //Removes unused symbols' debug infot_createStripDeadDebugInfoPass113,8788 - t_createStripDeadPrototypesPass, //Removes any function declarations (prototypes) that are not usedt_createStripDeadPrototypesPass114,8859 - t_createStripDebugDeclarePass, //Removes llvm.dbg.declare intrinsicst_createStripDebugDeclarePass115,8961 - t_createStripNonDebugSymbolsPass, //Strips symbols from functions and modulest_createStripNonDebugSymbolsPass116,9032 - t_createStripSymbolsPass, //Removes symbols from functions and modulest_createStripSymbolsPass117,9112 - t_createTailCallEliminationPass //Eliminates call instructions to the current function which occur immediately before return instructionst_createTailCallEliminationPass118,9185 -} enumTransformPasses;enumTransformPasses119,9325 - NOPOINT, // no point -- module will not be verifiedNOPOINT123,9422 - BEFORE, // before optimize -- module will be verified before transform passesBEFORE124,9476 - AFTER, // after optimize -- module will be verified after transform passesAFTER125,9557 - BOTH // both -- module will be verified both before and after transform passesBOTH126,9636 -} enumPointToVerifiy;enumPointToVerifiy127,9721 - JUST_INTERPRETED,JUST_INTERPRETED131,9807 - SMART_JIT,SMART_JIT132,9827 - CONTINUOUS_COMPILATION,CONTINUOUS_COMPILATION133,9840 - JUST_COMPILEDJUST_COMPILED134,9866 -} enumExecModes;enumExecModes135,9882 - NO_FREQ, // without frequency (used on 'JUST_INTERPRETED' and 'JUST_COMPILED' modes)NO_FREQ139,9984 - COUNTER, // unity countersCOUNTER140,10071 - TIME // unity execution timesTIME141,10100 -} enumFrequencyType;enumFrequencyType142,10136 - UNUSED, // not usedUNUSED146,10239 - JUST_HOT, // enumFrequencyType associated to clause must reach thresholdJUST_HOT147,10270 - HOT_AND_CALLEE, // JUST_HOT + clause must contain a callee opcode (fcall or call)HOT_AND_CALLEE148,10352 - HOT_AND_GREATER, // JUST_HOT + clause size must be greater than othersHOT_AND_GREATER149,10437 - HOT_AND_FEWER // JUST_HOT + clause's backtracks must be smaller than othersHOT_AND_FEWER150,10510 -} enumMainClauseType;enumMainClauseType151,10591 - REG_ALLOC_BASIC, // BasicREG_ALLOC_BASIC155,10687 - REG_ALLOC_FAST, // FastREG_ALLOC_FAST156,10716 - REG_ALLOC_GREEDY, // GreedyREG_ALLOC_GREEDY157,10744 - REG_ALLOC_PBQP // PBQPREG_ALLOC_PBQP158,10774 -} enumRegAllocator;enumRegAllocator159,10802 - NO_PLACE = 0, // no placeNO_PLACE165,10951 - ON_INTERPRETER = 1, // on interpreted opcodesON_INTERPRETER166,10995 - ON_PROFILED_INTERPRETER = 2, // on profiled opcodesON_PROFILED_INTERPRETER167,11053 - ON_NATIVE = 4 // on native codeON_NATIVE168,11108 -} enumPlace;enumPlace169,11158 -typedef struct printt_struc {printt_struc173,11283 - Int print; // Should I print?print174,11313 - Int print; // Should I print?printt_struc::print174,11313 - CELL msg_before; // If I print, what message should come before?msg_before175,11350 - CELL msg_before; // If I print, what message should come before?printt_struc::msg_before175,11350 - CELL msg_after; // If I print, what message should come after?msg_after176,11416 - CELL msg_after; // If I print, what message should come after?printt_struc::msg_after176,11416 -} PrinttStruc;PrinttStruc177,11481 -typedef struct environment {environment181,11564 - CELL outfile; // Where will analysis results be printed?outfile184,11712 - CELL outfile; // Where will analysis results be printed?environment::__anon134::outfile184,11712 - Int stats_enabled; // Should llvm stats be printed on 'shutdown_llvm()'?stats_enabled185,11773 - Int stats_enabled; // Should llvm stats be printed on 'shutdown_llvm()'?environment::__anon134::stats_enabled185,11773 - Int time_pass_enabled; // Should llvm time passes be printed on 'shutdown_llvm()'?time_pass_enabled186,11850 - Int time_pass_enabled; // Should llvm time passes be printed on 'shutdown_llvm()'?environment::__anon134::time_pass_enabled186,11850 - enumPointToVerifiy pointtoverifymodule; // What point of code will llvm modules be verified?pointtoverifymodule187,11937 - enumPointToVerifiy pointtoverifymodule; // What point of code will llvm modules be verified?environment::__anon134::pointtoverifymodule187,11937 - COUNT n; // Number of elements on 'act_an'n188,12034 - COUNT n; // Number of elements on 'act_an'environment::__anon134::n188,12034 - enumAnalysisPasses *act_an; // List of analysis passesact_an189,12081 - enumAnalysisPasses *act_an; // List of analysis passesenvironment::__anon134::act_an189,12081 - } analysis_struc;analysis_struc190,12140 - } analysis_struc;environment::analysis_struc190,12140 - Int optlevel; // Optimization level -- 'act_tr' only will be used if 'optlevel' is '-1'optlevel194,12283 - Int optlevel; // Optimization level -- 'act_tr' only will be used if 'optlevel' is '-1'environment::__anon135::optlevel194,12283 - COUNT n; // Number of elements on 'act_tr'n195,12375 - COUNT n; // Number of elements on 'act_tr'environment::__anon135::n195,12375 - enumTransformPasses *act_tr; // List of transform passesact_tr196,12422 - enumTransformPasses *act_tr; // List of transform passesenvironment::__anon135::act_tr196,12422 - CELL arg_promotion_max_elements; // Max elements on 'Argument Promotion Pass'arg_promotion_max_elements198,12496 - CELL arg_promotion_max_elements; // Max elements on 'Argument Promotion Pass'environment::__anon135::__anon136::arg_promotion_max_elements198,12496 - CELL strip_symbols_pass_type; // Argument for 'Strip Symbols Pass' -- if true, only debugging information is removed from the modulestrip_symbols_pass_type199,12580 - CELL strip_symbols_pass_type; // Argument for 'Strip Symbols Pass' -- if true, only debugging information is removed from the moduleenvironment::__anon135::__anon136::strip_symbols_pass_type199,12580 - CELL scalar_replace_aggregates_threshold; // Threshold for 'Scalar Repl Aggregates Pass'scalar_replace_aggregates_threshold200,12722 - CELL scalar_replace_aggregates_threshold; // Threshold for 'Scalar Repl Aggregates Pass'environment::__anon135::__anon136::scalar_replace_aggregates_threshold200,12722 - CELL loop_unswitch_optimize_for_size; // Argument for 'Loop Unswitch Pass' -- Should I optimize for size?loop_unswitch_optimize_for_size201,12817 - CELL loop_unswitch_optimize_for_size; // Argument for 'Loop Unswitch Pass' -- Should I optimize for size?environment::__anon135::__anon136::loop_unswitch_optimize_for_size201,12817 - CELL loop_unroll_threshold; // Threshold for 'Loop Unroll Pass'loop_unroll_threshold202,12929 - CELL loop_unroll_threshold; // Threshold for 'Loop Unroll Pass'environment::__anon135::__anon136::loop_unroll_threshold202,12929 - CELL inline_threshold; // Threshold for 'Function Inlining Pass'inline_threshold203,12999 - CELL inline_threshold; // Threshold for 'Function Inlining Pass'environment::__anon135::__anon136::inline_threshold203,12999 - } opt_args;opt_args204,13070 - } opt_args;environment::__anon135::opt_args204,13070 - Int unit_at_time_enabled; // Should I enable IPO?unit_at_time_enabled205,13086 - Int unit_at_time_enabled; // Should I enable IPO?environment::__anon135::unit_at_time_enabled205,13086 - Int simplify_libcalls_enabled; // Should I simplify libcalls?simplify_libcalls_enabled206,13140 - Int simplify_libcalls_enabled; // Should I simplify libcalls?environment::__anon135::simplify_libcalls_enabled206,13140 - Int enabled; // Should I enable link-time optimizations?enabled208,13219 - Int enabled; // Should I enable link-time optimizations?environment::__anon135::__anon137::enabled208,13219 - CELL internalize; // Should I run 'Internalize Pass' on link-time optimization?internalize209,13282 - CELL internalize; // Should I run 'Internalize Pass' on link-time optimization?environment::__anon135::__anon137::internalize209,13282 - CELL runinliner; // Should I run 'Inline Pass' on link-time optimization?runinliner210,13368 - CELL runinliner; // Should I run 'Inline Pass' on link-time optimization?environment::__anon135::__anon137::runinliner210,13368 - } link_time_opt;link_time_opt211,13448 - } link_time_opt;environment::__anon135::link_time_opt211,13448 - } transform_struc;transform_struc212,13469 - } transform_struc;environment::transform_struc212,13469 - Int noframepointerelim; // Should I use frame pointer elimination opt?noframepointerelim217,13620 - Int noframepointerelim; // Should I use frame pointer elimination opt?environment::__anon138::__anon139::noframepointerelim217,13620 - Int lessprecisefpmadoption; // Should I allow to generate multiply add if the result is "less precise"?lessprecisefpmadoption218,13697 - Int lessprecisefpmadoption; // Should I allow to generate multiply add if the result is "less precise"?environment::__anon138::__anon139::lessprecisefpmadoption218,13697 - Int noexcessfpprecision; // Should I enable excess fp precision?noexcessfpprecision219,13807 - Int noexcessfpprecision; // Should I enable excess fp precision?environment::__anon138::__anon139::noexcessfpprecision219,13807 - Int unsafefpmath; // Should I allow to produce results that are "less precise" than IEEE allows?unsafefpmath220,13878 - Int unsafefpmath; // Should I allow to produce results that are "less precise" than IEEE allows?environment::__anon138::__anon139::unsafefpmath220,13878 - Int honorsigndependentroundingfpmathoption; // Which rounding mode should I use?honorsigndependentroundingfpmathoption221,13981 - Int honorsigndependentroundingfpmathoption; // Which rounding mode should I use?environment::__anon138::__anon139::honorsigndependentroundingfpmathoption221,13981 - Int usesoftfloat; // Should I use libcalls or FP instructions to treat floating point libraries?usesoftfloat222,14068 - Int usesoftfloat; // Should I use libcalls or FP instructions to treat floating point libraries?environment::__anon138::__anon139::usesoftfloat222,14068 - Int jitexceptionhandling; // Should JIT emit exception handling info?jitexceptionhandling223,14171 - Int jitexceptionhandling; // Should JIT emit exception handling info?environment::__anon138::__anon139::jitexceptionhandling223,14171 - Int jitemitdebuginfo; // Should JIT emit debug information?jitemitdebuginfo224,14247 - Int jitemitdebuginfo; // Should JIT emit debug information?environment::__anon138::__anon139::jitemitdebuginfo224,14247 - Int jitemitdebuginfotodisk; // Should JIT write debug information to disk?jitemitdebuginfotodisk225,14313 - Int jitemitdebuginfotodisk; // Should JIT write debug information to disk?environment::__anon138::__anon139::jitemitdebuginfotodisk225,14313 - Int guaranteedtailcallopt; // Should I perform tail call optimization on calls which use fastcc calling convention?guaranteedtailcallopt226,14394 - Int guaranteedtailcallopt; // Should I perform tail call optimization on calls which use fastcc calling convention?environment::__anon138::__anon139::guaranteedtailcallopt226,14394 - Int disabletailcalls; // Should I use tail calls?disabletailcalls227,14516 - Int disabletailcalls; // Should I use tail calls?environment::__anon138::__anon139::disabletailcalls227,14516 - Int fastisel; // Should I use 'fast-path instruction selection' to reduce compilation time? If 'yes' native code won't have best qualityfastisel228,14572 - Int fastisel; // Should I use 'fast-path instruction selection' to reduce compilation time? If 'yes' native code won't have best qualityenvironment::__anon138::__anon139::fastisel228,14572 - Int floatabitype; /* 0 = Default, 1 = Soft, 2 = Hard */floatabitype229,14715 - Int floatabitype; /* 0 = Default, 1 = Soft, 2 = Hard */environment::__anon138::__anon139::floatabitype229,14715 - } struc_targetopt;struc_targetopt230,14777 - } struc_targetopt;environment::__anon138::struc_targetopt230,14777 - Int engineoptlevel; /* 0 = None, 1 = Less, 2 = Default, 3 = Agressive */engineoptlevel232,14813 - Int engineoptlevel; /* 0 = None, 1 = Less, 2 = Default, 3 = Agressive */environment::__anon138::__anon140::engineoptlevel232,14813 - Int relocmodel; /* 0 = Default, 1 = Static, 2 = PIC, 3 = DynamicNoPIC */relocmodel233,14892 - Int relocmodel; /* 0 = Default, 1 = Static, 2 = PIC, 3 = DynamicNoPIC */environment::__anon138::__anon140::relocmodel233,14892 - Int codemodel; /* 0 = Default, 1 = JITDefault, 2 = Small, 3 = Kernel, 4 = Medium, 5 = Large */codemodel234,14971 - Int codemodel; /* 0 = Default, 1 = JITDefault, 2 = Small, 3 = Kernel, 4 = Medium, 5 = Large */environment::__anon138::__anon140::codemodel234,14971 - Int usemcjit; // Should I use MC-JIT implementation (experimental)?usemcjit235,15072 - Int usemcjit; // Should I use MC-JIT implementation (experimental)?environment::__anon138::__anon140::usemcjit235,15072 - enumRegAllocator regallocator; // Active register allocator (predicate register_allocator/1)regallocator236,15146 - enumRegAllocator regallocator; // Active register allocator (predicate register_allocator/1)environment::__anon138::__anon140::regallocator236,15146 - } struc_enginebuilder;struc_enginebuilder237,15245 - } struc_enginebuilder;environment::__anon138::struc_enginebuilder237,15245 - } codegen_struc;codegen_struc238,15272 - } codegen_struc;environment::codegen_struc238,15272 - enumExecModes execution_mode; // Active execution modeexecution_mode242,15419 - enumExecModes execution_mode; // Active execution modeenvironment::__anon141::execution_mode242,15419 - enumFrequencyType frequency_type; // Active frequency typefrequency_type243,15478 - enumFrequencyType frequency_type; // Active frequency typeenvironment::__anon141::frequency_type243,15478 - Float frequency_bound; // Bound to become clauses as hotfrequency_bound244,15541 - Float frequency_bound; // Bound to become clauses as hotenvironment::__anon141::frequency_bound244,15541 - Float profiling_startp; // Bound to init monitoring and trace buildingprofiling_startp245,15602 - Float profiling_startp; // Bound to init monitoring and trace buildingenvironment::__anon141::profiling_startp245,15602 - enumMainClauseType mainclause_ty; // Types of clauses that can be head on tracesmainclause_ty246,15677 - enumMainClauseType mainclause_ty; // Types of clauses that can be head on tracesenvironment::__anon141::mainclause_ty246,15677 - COUNT ncores; // Number of cores on processor -- used to determine default 'compilation_threads' (compilation_threads = ncores - 1)ncores247,15762 - COUNT ncores; // Number of cores on processor -- used to determine default 'compilation_threads' (compilation_threads = ncores - 1)environment::__anon141::ncores247,15762 - COUNT compilation_threads; // Number of compilation threads (used only if 'execution_mode' is 'CONTINUOUS_COMPILATION')compilation_threads248,15898 - COUNT compilation_threads; // Number of compilation threads (used only if 'execution_mode' is 'CONTINUOUS_COMPILATION')environment::__anon141::compilation_threads248,15898 - pthread_t* threaded_compiler_threads; // List of threads (size = 'compilation_threads'). Used by function 'pthread_create'. Used on 'CONTINUOUS_COMPILATION' modethreaded_compiler_threads249,16022 - pthread_t* threaded_compiler_threads; // List of threads (size = 'compilation_threads'). Used by function 'pthread_create'. Used on 'CONTINUOUS_COMPILATION' modeenvironment::__anon141::threaded_compiler_threads249,16022 - CELL* posthreads; // Used to determine which threads are free/busyposthreads250,16188 - CELL* posthreads; // Used to determine which threads are free/busyenvironment::__anon141::posthreads250,16188 - Int torecompile; // Should I recompile traces?torecompile251,16259 - Int torecompile; // Should I recompile traces?environment::__anon141::torecompile251,16259 - Int current_displacement; // Jump displacement to run yaam opcodes on absmi. Zero is the default value and will make standard yaam opcodes are executed. 'TOTAL_OF_OPCODES' is the value after any clause become critical and will make 'traced_' yaam opcodes are executed.current_displacement252,16310 - Int current_displacement; // Jump displacement to run yaam opcodes on absmi. Zero is the default value and will make standard yaam opcodes are executed. 'TOTAL_OF_OPCODES' is the value after any clause become critical and will make 'traced_' yaam opcodes are executed.environment::__anon141::current_displacement252,16310 - COUNT TOTAL_OF_OPCODES; // Total of yaam opcodes. I must determine this dynamically due to several '#define' statements. Used to determine 'current_displacement' after any clause become critical.TOTAL_OF_OPCODES253,16583 - COUNT TOTAL_OF_OPCODES; // Total of yaam opcodes. I must determine this dynamically due to several '#define' statements. Used to determine 'current_displacement' after any clause become critical.environment::__anon141::TOTAL_OF_OPCODES253,16583 - Int useonlypi; // Execute only 'traced_' yaam opcodes. Don't compile. WARNING: if you enable this field (predicate only_profiled_interpreter/0), the system performance will decrease considerably. Use only to determine the actual cost of running such opcodes.useonlypi254,16783 - Int useonlypi; // Execute only 'traced_' yaam opcodes. Don't compile. WARNING: if you enable this field (predicate only_profiled_interpreter/0), the system performance will decrease considerably. Use only to determine the actual cost of running such opcodes.environment::__anon141::useonlypi254,16783 - } config_struc;config_struc255,17046 - } config_struc;environment::config_struc255,17046 - int papi_initialized; // Was PAPI initialized? Used on predicate 'statistics_jit/0' -- if 1, PAPI results will be emittedpapi_initialized260,17206 - int papi_initialized; // Was PAPI initialized? Used on predicate 'statistics_jit/0' -- if 1, PAPI results will be emittedenvironment::__anon142::papi_initialized260,17206 - int papi_eventset; // PAPI event setpapi_eventset261,17332 - int papi_eventset; // PAPI event setenvironment::__anon142::papi_eventset261,17332 - long long *papi_values; // List of collected performance counter valuespapi_values262,17373 - long long *papi_values; // List of collected performance counter valuesenvironment::__anon142::papi_values262,17373 - short *papi_valid_values; // List of performance counters that will be collectedpapi_valid_values263,17449 - short *papi_valid_values; // List of performance counters that will be collectedenvironment::__anon142::papi_valid_values263,17449 - int papi_event_type; // Type of event that will be collected -- 'papi_event_type' involves what performance counters will be within 'papi_valid_values'papi_event_type264,17534 - int papi_event_type; // Type of event that will be collected -- 'papi_event_type' involves what performance counters will be within 'papi_valid_values'environment::__anon142::papi_event_type264,17534 - } stats_struc;stats_struc265,17690 - } stats_struc;environment::stats_struc265,17690 - #define OPCODE(OPCODE272,17925 - #undef OPCODEOPCODE275,18018 - #define BBLOCK(BBLOCK278,18118 - #undef BBLOCKBBLOCK281,18210 - PrinttStruc pmainclause_on_head;pmainclause_on_head284,18321 - PrinttStruc pmainclause_on_head;environment::__anon143::pmainclause_on_head284,18321 - Int print_to_std; // Should intermediate code be printed on std (stdout, stderr)? Default:: print_to_std = 0 (don't print to stdout nor stderr)print_to_std288,18415 - Int print_to_std; // Should intermediate code be printed on std (stdout, stderr)? Default:: print_to_std = 0 (don't print to stdout nor stderr)environment::__anon143::__anon144::print_to_std288,18415 - Int print_to_file; // Should intermediate code be printed on file? Default:: print_to_file = 0 (don't print to file)print_to_file289,18565 - Int print_to_file; // Should intermediate code be printed on file? Default:: print_to_file = 0 (don't print to file)environment::__anon143::__anon144::print_to_file289,18565 - CELL std_name; // if 'print_to_std' = 'yes', where should intermediate code be printed?std_name290,18688 - CELL std_name; // if 'print_to_std' = 'yes', where should intermediate code be printed?environment::__anon143::__anon144::std_name290,18688 - CELL file_name; // if 'print_to_file' = 'yes', what file should intermediate code be printed?file_name291,18782 - CELL file_name; // if 'print_to_file' = 'yes', what file should intermediate code be printed?environment::__anon143::__anon144::file_name291,18782 - } pprint_intermediate;pprint_intermediate292,18882 - } pprint_intermediate;environment::__anon143::pprint_intermediate292,18882 - Int print_llva_before; // Should llva code be printed before optimizing module?print_llva_before296,18959 - Int print_llva_before; // Should llva code be printed before optimizing module?environment::__anon143::__anon145::print_llva_before296,18959 - Int print_llva_after; // Shoud llva code be printed after optimizing module?print_llva_after297,19045 - Int print_llva_after; // Shoud llva code be printed after optimizing module?environment::__anon143::__anon145::print_llva_after297,19045 - } pprint_llva;pprint_llva298,19128 - } pprint_llva;environment::__anon143::pprint_llva298,19128 - CELL interpreted_backtrack; // msg to print when backtrack on standard yaam opcodes occurinterpreted_backtrack302,19203 - CELL interpreted_backtrack; // msg to print when backtrack on standard yaam opcodes occurenvironment::__anon143::__anon146::interpreted_backtrack302,19203 - CELL profiled_interpreted_backtrack; // msg to print when backtrack on 'traced_' yaam opcodes occurprofiled_interpreted_backtrack303,19299 - CELL profiled_interpreted_backtrack; // msg to print when backtrack on 'traced_' yaam opcodes occurenvironment::__anon143::__anon146::profiled_interpreted_backtrack303,19299 - CELL native_backtrack; // msg to print when backtrack on native code occurnative_backtrack304,19405 - CELL native_backtrack; // msg to print when backtrack on native code occurenvironment::__anon143::__anon146::native_backtrack304,19405 - CELL interpreted_treat_heap; // msg to print when heap is treated on interpreter (standard and 'traced_' yaam opcodes)interpreted_treat_heap305,19486 - CELL interpreted_treat_heap; // msg to print when heap is treated on interpreter (standard and 'traced_' yaam opcodes)environment::__anon143::__anon146::interpreted_treat_heap305,19486 - CELL native_treat_heap; // msg to print when heap is treated on native codenative_treat_heap306,19611 - CELL native_treat_heap; // msg to print when heap is treated on native codeenvironment::__anon143::__anon146::native_treat_heap306,19611 - CELL interpreted_treat_trail; // msg to print when trail is treated on interpreter (standard and 'traced_' yaam opcodes)interpreted_treat_trail307,19693 - CELL interpreted_treat_trail; // msg to print when trail is treated on interpreter (standard and 'traced_' yaam opcodes)environment::__anon143::__anon146::interpreted_treat_trail307,19693 - CELL native_treat_trail; // msg to print when trail is treated on native codenative_treat_trail308,19820 - CELL native_treat_trail; // msg to print when trail is treated on native codeenvironment::__anon143::__anon146::native_treat_trail308,19820 - CELL criticals; // msg to print when any clause becomes criticalcriticals309,19904 - CELL criticals; // msg to print when any clause becomes criticalenvironment::__anon143::__anon146::criticals309,19904 - CELL at_compilation; // msg to print before compilationat_compilation310,19975 - CELL at_compilation; // msg to print before compilationenvironment::__anon143::__anon146::at_compilation310,19975 - CELL at_recompilation; // msg to print before recompilationat_recompilation311,20037 - CELL at_recompilation; // msg to print before recompilationenvironment::__anon143::__anon146::at_recompilation311,20037 - CELL nativerun_init; // msg to print when native code is about to be runnativerun_init312,20103 - CELL nativerun_init; // msg to print when native code is about to be runenvironment::__anon143::__anon146::nativerun_init312,20103 - CELL nativerun_exit_by_success; // msg to print when native code exits by success, ie., basic block nonexistent in native code (allows rebuilding and recompilation of traces)nativerun_exit_by_success313,20182 - CELL nativerun_exit_by_success; // msg to print when native code exits by success, ie., basic block nonexistent in native code (allows rebuilding and recompilation of traces)environment::__anon143::__anon146::nativerun_exit_by_success313,20182 - CELL nativerun_exit_by_fail; // msg to print when native code exits byfail, ie., exits to treat trail or heap (don't allow rebuilding and recompilation of traces)nativerun_exit_by_fail314,20363 - CELL nativerun_exit_by_fail; // msg to print when native code exits byfail, ie., exits to treat trail or heap (don't allow rebuilding and recompilation of traces)environment::__anon143::__anon146::nativerun_exit_by_fail314,20363 - } pprint_me;pprint_me315,20532 - } pprint_me;environment::__anon143::pprint_me315,20532 - Int info_msgs; // Should I allow info messages?info_msgs319,20600 - Int info_msgs; // Should I allow info messages?environment::__anon143::__anon147::info_msgs319,20600 - Int success_msgs; // Should I allow success messages?success_msgs320,20654 - Int success_msgs; // Should I allow success messages?environment::__anon143::__anon147::success_msgs320,20654 - Int warning_msgs; // Should I allow warning messages?warning_msgs321,20714 - Int warning_msgs; // Should I allow warning messages?environment::__anon143::__anon147::warning_msgs321,20714 - Int error_msgs; // Should I allow error messages?error_msgs322,20774 - Int error_msgs; // Should I allow error messages?environment::__anon143::__anon147::error_msgs322,20774 - } act_predicate_msgs;act_predicate_msgs323,20830 - } act_predicate_msgs;environment::__anon143::act_predicate_msgs323,20830 - Int exit_on_warning; // Should I exit when any warning occur?exit_on_warning327,20906 - Int exit_on_warning; // Should I exit when any warning occur?environment::__anon143::__anon148::exit_on_warning327,20906 - Int disable_on_warning; // Shouldn't I adjust appropriate values when any warning occur (implies 'exit_on_warning' = 'false')disable_on_warning328,20974 - Int disable_on_warning; // Shouldn't I adjust appropriate values when any warning occur (implies 'exit_on_warning' = 'false')environment::__anon143::__anon148::disable_on_warning328,20974 - Int exit_on_error; // Should I exit when any error occur?exit_on_error329,21106 - Int exit_on_error; // Should I exit when any error occur?environment::__anon143::__anon148::exit_on_error329,21106 - } act_predicate_actions;act_predicate_actions330,21170 - } act_predicate_actions;environment::__anon143::act_predicate_actions330,21170 - } debug_struc;debug_struc331,21199 - } debug_struc;environment::debug_struc331,21199 -} Environment;Environment334,21224 -typedef enum block_try {block_try337,21314 - NONE, // untypedNONE338,21339 - SIMPLE_ENTRY, // first basic block of any yaam opcodeSIMPLE_ENTRY339,21372 - SIMPLE, // any other basic block of any yaam opcodeSIMPLE340,21434 - CONDITIONAL_HEADER, // basic block of any 'if' statement of any yaam opcodeCONDITIONAL_HEADER341,21500 - MULTIPLE_DESTINY // basic block of many destinations (elementary block). Returns from native code to interpreter always will occur hereMULTIPLE_DESTINY342,21578 -} BlockTy;BlockTy343,21719 -typedef struct blocks_context {blocks_context346,21795 - UInt id; // block identifier (Yap_BasicBlocks.h)id350,21891 - UInt id; // block identifier (Yap_BasicBlocks.h)blocks_context::__anon149::__anon150::id350,21891 - char *label_entry; // entry label -- destinations of jumps from others 'SIMPLE_ENTRY' or 'SIMPLE' blockslabel_entry351,21946 - char *label_entry; // entry label -- destinations of jumps from others 'SIMPLE_ENTRY' or 'SIMPLE' blocksblocks_context::__anon149::__anon150::label_entry351,21946 - char *label_destiny; // destiny label -- where should I jump after I run?label_destiny352,22057 - char *label_destiny; // destiny label -- where should I jump after I run?blocks_context::__anon149::__anon150::label_destiny352,22057 - } eb;eb353,22137 - } eb;blocks_context::__anon149::eb353,22137 - UInt id; // block identifier (Yap_BasicBlocks.h)id357,22196 - UInt id; // block identifier (Yap_BasicBlocks.h)blocks_context::__anon149::__anon151::id357,22196 - char *label_destiny; // destiny label -- where should I jump after I run?label_destiny358,22251 - char *label_destiny; // destiny label -- where should I jump after I run?blocks_context::__anon149::__anon151::label_destiny358,22251 - } sb;sb359,22331 - } sb;blocks_context::__anon149::sb359,22331 - char *exp; // expression of 'if' statementexp363,22402 - char *exp; // expression of 'if' statementblocks_context::__anon149::__anon152::exp363,22402 - struct blocks_context *_if; // destination if 'exp' is true_if364,22451 - struct blocks_context *_if; // destination if 'exp' is trueblocks_context::__anon149::__anon152::_if364,22451 - struct blocks_context *_else; // destination if 'exp' is false_else365,22517 - struct blocks_context *_else; // destination if 'exp' is falseblocks_context::__anon149::__anon152::_else365,22517 - } kb;kb366,22586 - } kb;blocks_context::__anon149::kb366,22586 - UInt id; // block identifier (Yap_BasicBlocks.h)id370,22655 - UInt id; // block identifier (Yap_BasicBlocks.h)blocks_context::__anon149::__anon153::id370,22655 - COUNT nfaillabels; // number of destinations caused by backtrack on native codenfaillabels371,22710 - COUNT nfaillabels; // number of destinations caused by backtrack on native codeblocks_context::__anon149::__anon153::nfaillabels371,22710 - UInt *p;p373,22811 - UInt *p;blocks_context::__anon149::__anon153::__anon154::p373,22811 - char **labels;labels374,22828 - char **labels;blocks_context::__anon149::__anon153::__anon154::labels374,22828 - } faildestiny; // destinations caused by backtrack on native codefaildestiny375,22851 - } faildestiny; // destinations caused by backtrack on native codeblocks_context::__anon149::__anon153::faildestiny375,22851 - COUNT ndest; // number of destinations that not be backtrackndest376,22923 - COUNT ndest; // number of destinations that not be backtrackblocks_context::__anon149::__anon153::ndest376,22923 - UInt *p;p378,23005 - UInt *p;blocks_context::__anon149::__anon153::__anon155::p378,23005 - char **labels;labels379,23022 - char **labels;blocks_context::__anon149::__anon153::__anon155::labels379,23022 - } destiny; // destinations that not be backtrackdestiny380,23045 - } destiny; // destinations that not be backtrackblocks_context::__anon149::__anon153::destiny380,23045 - } mdb;mdb381,23100 - } mdb;blocks_context::__anon149::mdb381,23100 - CELL header; // just for aiding after treating 'CONDITIONAL_HEADER' blocksheader385,23161 - CELL header; // just for aiding after treating 'CONDITIONAL_HEADER' blocksblocks_context::__anon149::__anon156::header385,23161 - } xb;xb386,23242 - } xb;blocks_context::__anon149::xb386,23242 - } u;u387,23252 - } u;blocks_context::u387,23252 - BlockTy blockty; // Basic block typeblockty388,23259 - BlockTy blockty; // Basic block typeblocks_context::blockty388,23259 - CELL thisp; // Value of PREG. Inside traces, basic blocks are only different from each other if 'id' and 'blockty' are differentthisp389,23298 - CELL thisp; // Value of PREG. Inside traces, basic blocks are only different from each other if 'id' and 'blockty' are differentblocks_context::thisp389,23298 - CELL prev; // Previous basic blockprev390,23429 - CELL prev; // Previous basic blockblocks_context::prev390,23429 - CELL next; // Next basic blocknext391,23466 - CELL next; // Next basic blockblocks_context::next391,23466 -} BlocksContext;BlocksContext392,23499 -typedef struct trace_context {trace_context395,23556 - COUNT n; // number of basic blocksn396,23587 - COUNT n; // number of basic blockstrace_context::n396,23587 - CELL tracesize; // For statistics... list of size (bytes) of each tracetracesize397,23624 - CELL tracesize; // For statistics... list of size (bytes) of each tracetrace_context::tracesize397,23624 - BlocksContext *bc; // basic blocks contextbc398,23698 - BlocksContext *bc; // basic blocks contexttrace_context::bc398,23698 -} TraceContext;TraceContext399,23743 -typedef struct intermediatecode_context {intermediatecode_context402,23808 - COUNT n; // Total of traces storedn403,23850 - COUNT n; // Total of traces storedintermediatecode_context::n403,23850 - TraceContext** t; // List of pointers to traces -- total of 'n't405,23898 - TraceContext** t; // List of pointers to traces -- total of 'n'intermediatecode_context::__anon157::t405,23898 - COUNT* ok; // List of traces ok (traces constructed and compiled at least once)ok406,23966 - COUNT* ok; // List of traces ok (traces constructed and compiled at least once)intermediatecode_context::__anon157::ok406,23966 - COUNT* isactive; // List of active traces (traces under construction). Initialized to zeroisactive407,24050 - COUNT* isactive; // List of active traces (traces under construction). Initialized to zerointermediatecode_context::__anon157::isactive407,24050 - BlocksContext** lastblock; // List of last block added on each tracelastblock408,24145 - BlocksContext** lastblock; // List of last block added on each traceintermediatecode_context::__anon157::lastblock408,24145 - double* profiling_time; // For statistics... list of profiling time of each traceprofiling_time410,24237 - double* profiling_time; // For statistics... list of profiling time of each traceintermediatecode_context::__anon157::profiling_time410,24237 - } area;area412,24330 - } area;intermediatecode_context::area412,24330 -} IntermediatecodeContext;IntermediatecodeContext413,24340 -typedef struct native_context {native_context416,24410 - COUNT n; // Total of traces compiled (is not necessarily equal to 'IntermediatecodeContext.n')n417,24442 - COUNT n; // Total of traces compiled (is not necessarily equal to 'IntermediatecodeContext.n')native_context::n417,24442 - void** p; // List of pointers to compiled codes -- total of 'n'p419,24550 - void** p; // List of pointers to compiled codes -- total of 'n'native_context::__anon158::p419,24550 - COUNT* ok; // List of compiled codes ok (traces constructed and compiled at least once)ok420,24618 - COUNT* ok; // List of compiled codes ok (traces constructed and compiled at least once)native_context::__anon158::ok420,24618 - CELL* pc; // List of first heads of each compiled codepc421,24711 - CELL* pc; // List of first heads of each compiled codenative_context::__anon158::pc421,24711 - COUNT *nrecomp; // For statistics... number of recompilations of each compiled code (max '1' if recompilation is disabled)nrecomp423,24789 - COUNT *nrecomp; // For statistics... number of recompilations of each compiled code (max '1' if recompilation is disabled)native_context::__anon158::nrecomp423,24789 - double **compilation_time; // For statistics... list of compilation time of each compiled code on each recompilationcompilation_time424,24916 - double **compilation_time; // For statistics... list of compilation time of each compiled code on each recompilationnative_context::__anon158::compilation_time424,24916 - CELL **native_size_bytes; // For statistics... list of native size (bytes) of each compiled code on each recompilationnative_size_bytes425,25037 - CELL **native_size_bytes; // For statistics... list of native size (bytes) of each compiled code on each recompilationnative_context::__anon158::native_size_bytes425,25037 - CELL **trace_size_bytes; // For statistics... list of trace size (bytes) of each trace on each recompilationtrace_size_bytes426,25160 - CELL **trace_size_bytes; // For statistics... list of trace size (bytes) of each trace on each recompilationnative_context::__anon158::trace_size_bytes426,25160 - } area;area428,25280 - } area;native_context::area428,25280 - COUNT *runs; // List of calls of each compiled coderuns430,25309 - COUNT *runs; // List of calls of each compiled codenative_context::runs430,25309 - double *t_runs; // List of execution time of each compiled codet_runs431,25363 - double *t_runs; // List of execution time of each compiled codenative_context::t_runs431,25363 - COUNT *success; // List of exit by success of each compiled codesuccess432,25429 - COUNT *success; // List of exit by success of each compiled codenative_context::success432,25429 -} NativeContext;NativeContext434,25503 -typedef struct control_flags_context {control_flags_context442,25713 - COUNT nemited;nemited443,25752 - COUNT nemited;control_flags_context::nemited443,25752 - char** emited_blocks;emited_blocks444,25769 - char** emited_blocks;control_flags_context::emited_blocks444,25769 - short emit;emit445,25793 - short emit;control_flags_context::emit445,25793 - short leastonce;leastonce446,25807 - short leastonce;control_flags_context::leastonce446,25807 - char* clabel;clabel447,25826 - char* clabel;control_flags_context::clabel447,25826 - COUNT labelidx;labelidx448,25842 - COUNT labelidx;control_flags_context::labelidx448,25842 - COUNT printlabel;printlabel449,25860 - COUNT printlabel;control_flags_context::printlabel449,25860 - char** entries;entries450,25880 - char** entries;control_flags_context::entries450,25880 - COUNT nentries;nentries451,25898 - COUNT nentries;control_flags_context::nentries451,25898 -} ControlFlagsContext;ControlFlagsContext452,25916 -typedef struct jit_handl_context {jit_handl_context456,25989 - CELL isground; // Does clause whose head is this 'jit_handler' have calls ('fcall' or 'call' opcode)? If 'yes', isground is '0'. Used when 'main_clause_ty(hot_and_callee)'isground459,26109 - CELL isground; // Does clause whose head is this 'jit_handler' have calls ('fcall' or 'call' opcode)? If 'yes', isground is '0'. Used when 'main_clause_ty(hot_and_callee)'jit_handl_context::__anon159::isground459,26109 - CELL clausesize; // Is clause whose head is this 'jit_handler' greater than other clauses? Used when ''main_clause_ty(hot_and_greater)'clausesize460,26285 - CELL clausesize; // Is clause whose head is this 'jit_handler' greater than other clauses? Used when ''main_clause_ty(hot_and_greater)'jit_handl_context::__anon159::clausesize460,26285 - CELL backtrack_counter; // Does clause whose head is this 'jit_handler' have fewer backtracks on history than other clauses? Used when ''main_clause_ty(hot_and_fewer)'backtrack_counter461,26426 - CELL backtrack_counter; // Does clause whose head is this 'jit_handler' have fewer backtracks on history than other clauses? Used when ''main_clause_ty(hot_and_fewer)'jit_handl_context::__anon159::backtrack_counter461,26426 - } mf;mf462,26598 - } mf;jit_handl_context::mf462,26598 - COUNT c; // counterc467,26682 - COUNT c; // counterjit_handl_context::__anon160::__anon161::c467,26682 - CELL t; // timet468,26708 - CELL t; // timejit_handl_context::__anon160::__anon161::t468,26708 - } bcst; // balance, counter, crossover, timebcst469,26731 - } bcst; // balance, counter, crossover, timejit_handl_context::__anon160::bcst469,26731 - } fi;fi470,26780 - } fi;jit_handl_context::fi470,26780 - COUNT taddress; // intermediatecode areataddress474,26883 - COUNT taddress; // intermediatecode areajit_handl_context::__anon162::taddress474,26883 - COUNT naddress; // native areanaddress475,26928 - COUNT naddress; // native areajit_handl_context::__anon162::naddress475,26928 - } caa;caa476,26963 - } caa;jit_handl_context::caa476,26963 - char *cmd; // Argument to program 'echo' (called by fork on JIT_Compiler.cpp). Its value is C code that represent traces that will be compiled. Its value is freed after compilation.cmd480,27045 - char *cmd; // Argument to program 'echo' (called by fork on JIT_Compiler.cpp). Its value is C code that represent traces that will be compiled. Its value is freed after compilation.jit_handl_context::__anon163::cmd480,27045 - ControlFlagsContext* cf; // Pointer to ControlFlagsContext. Just used here.cf481,27231 - ControlFlagsContext* cf; // Pointer to ControlFlagsContext. Just used here.jit_handl_context::__anon163::cf481,27231 - } tcc;tcc482,27311 - } tcc;jit_handl_context::tcc482,27311 - CELL used_thread;used_thread486,27393 - CELL used_thread;jit_handl_context::__anon164::used_thread486,27393 - CELL torecomp;torecomp487,27415 - CELL torecomp;jit_handl_context::__anon164::torecomp487,27415 - }jitman;jitman488,27434 - }jitman;jit_handl_context::jitman488,27434 -} JitHandlContext;JitHandlContext489,27445 -#define ExpEnv ExpEnv495,27539 - -H/amiops.h,2921 -static char SccsId[] = "%W% %G%";SccsId20,681 -#define IsArrayReference(IsArrayReference25,764 -#define profiled_deref_head_TEST(profiled_deref_head_TEST39,1110 -#define deref_head(deref_head48,1712 -#define profiled_deref_body(profiled_deref_body50,1771 -#define deref_body(deref_body64,2701 -#define do_derefa(do_derefa72,3114 -#define profiled_derefa_body(profiled_derefa_body84,3605 -#define derefa_body(derefa_body98,4619 -#define deref_list_head(deref_list_head116,5291 -#define deref_list_body(deref_list_body118,5357 -#define RESET_VARIABLE(RESET_VARIABLE138,6002 -#define DO_TRAIL(DO_TRAIL142,6080 -#define TRAIL(TRAIL153,6285 -#define TRAIL_LOCAL(TRAIL_LOCAL158,6496 -#define TRAIL(TRAIL164,6687 -#define TRAIL_LOCAL(TRAIL_LOCAL168,6838 -#define TRAIL_GLOBAL(TRAIL_GLOBAL175,7038 -#define DO_MATRAIL(DO_MATRAIL178,7132 -#define MATRAIL(MATRAIL187,7569 -#define DO_TRAIL(DO_TRAIL195,7781 -#define TRAIL(TRAIL203,7916 -#define TRAIL_GLOBAL(TRAIL_GLOBAL206,8000 -#define TRAIL_LOCAL(TRAIL_LOCAL208,8059 -#define TRAIL(TRAIL215,8271 -#define TRAIL(TRAIL219,8459 -#define TRAIL_GLOBAL(TRAIL_GLOBAL223,8630 -#define TRAIL_LOCAL(TRAIL_LOCAL225,8698 -#define DO_TRAIL(DO_TRAIL229,8807 -#define TRAIL(TRAIL231,8862 -#define TRAIL_AND_JUMP(TRAIL_AND_JUMP234,8970 -#define TRAIL_GLOBAL(TRAIL_GLOBAL237,9089 -#define TRAIL_LOCAL(TRAIL_LOCAL239,9147 -#define DO_TRAIL(DO_TRAIL243,9218 -#define TRAIL(TRAIL245,9273 -#define TrailAndJump(TrailAndJump248,9381 -#define TRAIL_GLOBAL(TRAIL_GLOBAL251,9465 -#define TRAIL_LOCAL(TRAIL_LOCAL253,9523 -#define DO_MATRAIL(DO_MATRAIL263,9772 -#define MATRAIL(MATRAIL269,10051 -#define REF_TO_TRENTRY(REF_TO_TRENTRY275,10192 -#define CLREF_TO_TRENTRY(CLREF_TO_TRENTRY276,10258 -#define TRAIL_REF(TRAIL_REF279,10345 -#define TRAIL_CLREF(TRAIL_CLREF280,10445 -#define TRAIL_LINK(TRAIL_LINK281,10547 -#define TRAIL_REF(TRAIL_REF283,10656 -#define TRAIL_CLREF(TRAIL_CLREF284,10725 -#define TRAIL_LINK(TRAIL_LINK285,10796 -#define TRAIL_FRAME(TRAIL_FRAME287,10875 -#define Bind_Local(Bind_Local291,10990 -#define Bind_Global(Bind_Global292,11051 -#define YapBind(YapBind293,11182 -#define Bind_NonAtt(Bind_NonAtt294,11361 -#define Bind_Global_NonAtt(Bind_Global_NonAtt295,11421 -#define Bind_and_Trail(Bind_and_Trail296,11494 -#define MaBind(MaBind299,11626 -reset_trail(tr_fr_ptr TR0) {reset_trail310,11933 -reset_attvars(CELL *dvarsmin, CELL *dvarsmax) {reset_attvars342,12627 -close_attvar_chain(CELL *dvarsmin, CELL *dvarsmax) {close_attvar_chain360,13045 -Int Yap_unify(Term t0, Term t1)Yap_unify380,13458 -Yap_unify_constant(Term a, Term cons)Yap_unify_constant396,13732 -#define EQ_OK_IN_CMP EQ_OK_IN_CMP445,14646 -#define LT_OK_IN_CMP LT_OK_IN_CMP446,14669 -#define GT_OK_IN_CMP GT_OK_IN_CMP447,14692 -do_cut(int i) {do_cut450,14734 -#define cut_succeed(cut_succeed460,14868 -#define cut_fail(cut_fail462,14911 - -H/arith2.h,1147 -inline static int sub_overflow(Int x, Int i, Int j) {sub_overflow22,649 -inline static Term sub_int(Int i, Int j USES_REGS) {sub_int26,751 -inline static Int SLR(Int i, Int shift) {SLR43,1085 -inline static int mul_overflow(Int z, Int i1, Int i2) {mul_overflow47,1203 -#define DO_MULTI(DO_MULTI55,1388 -#define OPTIMIZE_MULTIPLI OPTIMIZE_MULTIPLI65,2121 -#define DO_MULTI(DO_MULTI67,2206 -#define DO_MULTI(DO_MULTI79,3066 -#define DO_MULTI(DO_MULTI84,3353 -#define DO_MULTI(DO_MULTI97,4254 -inline static Term times_int(Int i1, Int i2 USES_REGS) {times_int111,5157 -static int clrsb(Int i) {clrsb124,5379 -inline static Term do_sll(Int i, Int j USES_REGS) /* j > 0 */do_sll161,5886 -static Term p_minus(Term t1, Term t2 USES_REGS) {p_minus182,6212 -static Term p_times(Term t1, Term t2 USES_REGS) {p_times238,7496 -static Term p_div(Term t1, Term t2 USES_REGS) {p_div294,8802 -static Term p_and(Term t1, Term t2 USES_REGS) {p_and350,10225 -static Term p_or(Term t1, Term t2 USES_REGS) {p_or390,11181 -static Term p_sll(Term t1, Term t2 USES_REGS) {p_sll430,12136 -static Term p_slr(Term t1, Term t2 USES_REGS) {p_slr478,13274 - -H/arrays.h,1061 -static char SccsId[]="%W% %G%";SccsId18,584 - array_of_ints,array_of_ints24,668 - array_of_chars,array_of_chars25,685 - array_of_uchars,array_of_uchars26,703 - array_of_doubles,array_of_doubles27,722 - array_of_ptrs,array_of_ptrs28,742 - array_of_atoms,array_of_atoms29,759 - array_of_dbrefs,array_of_dbrefs30,777 - array_of_nb_terms,array_of_nb_terms31,796 - array_of_termsarray_of_terms32,817 -} static_array_types;static_array_types33,834 -typedef struct array_access_struct {array_access_struct36,899 - Functor array_access_func; /* identifier of array access */array_access_func37,936 - Functor array_access_func; /* identifier of array access */array_access_struct::array_access_func37,936 - Term ArrayT; /* term that references the array */ArrayT38,1001 - Term ArrayT; /* term that references the array */array_access_struct::ArrayT38,1001 - Term indx; /* index in array, for nowindx39,1056 - Term indx; /* index in array, for nowarray_access_struct::indx39,1056 -} array_access;array_access41,1133 - -H/ATOMS,0 - -H/Atoms.h,4895 -#define ATOMS_H ATOMS_H19,606 -#define EXTERN EXTERN23,658 -#define EXTERNEXTERN25,686 -typedef struct atom_blob {atom_blob31,736 - size_t length;length32,763 - size_t length;atom_blob::length32,763 - char data[MIN_ARRAY];data33,780 - char data[MIN_ARRAY];atom_blob::data33,780 -} atom_blob_t;atom_blob_t34,804 -typedef struct AtomEntryStruct *Atom;Atom46,1180 -typedef struct PropEntryStruct *Prop;Prop47,1218 -typedef struct AtomEntryStruct {AtomEntryStruct52,1356 - Atom NextOfAE; /* used to build hash chains */NextOfAE53,1389 - Atom NextOfAE; /* used to build hash chains */AtomEntryStruct::NextOfAE53,1389 - Prop PropsOfAE; /* property list for this atom */PropsOfAE54,1458 - Prop PropsOfAE; /* property list for this atom */AtomEntryStruct::PropsOfAE54,1458 - rwlock_t ARWLock;ARWLock56,1566 - rwlock_t ARWLock;AtomEntryStruct::ARWLock56,1566 - unsigned char uUStrOfAE[MIN_ARRAY]; /* representation of atom as a string */uUStrOfAE60,1604 - unsigned char uUStrOfAE[MIN_ARRAY]; /* representation of atom as a string */AtomEntryStruct::__anon166::uUStrOfAE60,1604 - char uStrOfAE[MIN_ARRAY]; /* representation of atom as a string */uStrOfAE61,1685 - char uStrOfAE[MIN_ARRAY]; /* representation of atom as a string */AtomEntryStruct::__anon166::uStrOfAE61,1685 - struct atom_blob blob[MIN_ARRAY];blob62,1766 - struct atom_blob blob[MIN_ARRAY];AtomEntryStruct::__anon166::blob62,1766 - } rep;rep63,1804 - } rep;AtomEntryStruct::rep63,1804 -} AtomEntry;AtomEntry64,1813 -typedef struct ExtraAtomEntryStruct {ExtraAtomEntryStruct67,1857 - Atom NextOfAE; /* used to build hash chains */NextOfAE68,1895 - Atom NextOfAE; /* used to build hash chains */ExtraAtomEntryStruct::NextOfAE68,1895 - Prop PropsOfAE; /* property list for this atom */PropsOfAE69,1964 - Prop PropsOfAE; /* property list for this atom */ExtraAtomEntryStruct::PropsOfAE69,1964 - rwlock_t ARWLock;ARWLock71,2072 - rwlock_t ARWLock;ExtraAtomEntryStruct::ARWLock71,2072 - unsigned char uUStrOfAE[4]; /* representation of atom as a string */uUStrOfAE75,2110 - unsigned char uUStrOfAE[4]; /* representation of atom as a string */ExtraAtomEntryStruct::__anon167::uUStrOfAE75,2110 - char uStrOfAE[4]; /* representation of atom as a string */uStrOfAE76,2183 - char uStrOfAE[4]; /* representation of atom as a string */ExtraAtomEntryStruct::__anon167::uStrOfAE76,2183 - struct atom_blob blob[2];blob77,2260 - struct atom_blob blob[2];ExtraAtomEntryStruct::__anon167::blob77,2260 - } rep;rep78,2290 - } rep;ExtraAtomEntryStruct::rep78,2290 -} ExtraAtomEntry;ExtraAtomEntry79,2299 -#define UStrOfAE UStrOfAE81,2318 -#define StrOfAE StrOfAE82,2349 -#define EndOfPAEntr(EndOfPAEntr86,2460 -#define EndOfPAEntr(EndOfPAEntr88,2511 -#define USE_OFFSETS_IN_PROPS USE_OFFSETS_IN_PROPS94,2659 -#define USE_OFFSETS_IN_PROPS USE_OFFSETS_IN_PROPS96,2696 -typedef SFLAGS PropFlags;PropFlags99,2735 -typedef struct PropEntryStruct {PropEntryStruct102,2806 - Prop NextOfPE; /* used to chain properties */NextOfPE103,2839 - Prop NextOfPE; /* used to chain properties */PropEntryStruct::NextOfPE103,2839 - PropFlags KindOfPE; /* kind of property */KindOfPE104,2912 - PropFlags KindOfPE; /* kind of property */PropEntryStruct::KindOfPE104,2912 -} PropEntry;PropEntry105,2985 -#define MaxArity MaxArity115,3273 -typedef size_t arity_t;arity_t117,3295 -#define FunctorProperty FunctorProperty119,3320 -typedef struct FunctorEntryStruct {FunctorEntryStruct122,3390 - Prop NextOfPE; /* used to chain properties */NextOfPE123,3426 - Prop NextOfPE; /* used to chain properties */FunctorEntryStruct::NextOfPE123,3426 - PropFlags KindOfPE; /* kind of property */KindOfPE124,3483 - PropFlags KindOfPE; /* kind of property */FunctorEntryStruct::KindOfPE124,3483 - arity_t ArityOfFE; /* arity of functor */ArityOfFE125,3540 - arity_t ArityOfFE; /* arity of functor */FunctorEntryStruct::ArityOfFE125,3540 - Atom NameOfFE; /* back pointer to owner atom */NameOfFE126,3597 - Atom NameOfFE; /* back pointer to owner atom */FunctorEntryStruct::NameOfFE126,3597 - Prop PropsOfFE; /* pointer to list of properties for this functor */PropsOfFE127,3654 - Prop PropsOfFE; /* pointer to list of properties for this functor */FunctorEntryStruct::PropsOfFE127,3654 - rwlock_t FRWLock;FRWLock129,3768 - rwlock_t FRWLock;FunctorEntryStruct::FRWLock129,3768 -} FunctorEntry;FunctorEntry131,3795 -typedef FunctorEntry *Functor;Functor133,3812 - -H/attvar.h,881 -static char SccsId[]="%W% %G%";SccsId18,586 -typedef struct attvar_struct {attvar_struct44,1167 - Functor AttFunc; /* functor for attvar */AttFunc45,1198 - Functor AttFunc; /* functor for attvar */attvar_struct::AttFunc45,1198 - Term Done; /* if unbound suspension active, if bound terminated */Done46,1247 - Term Done; /* if unbound suspension active, if bound terminated */attvar_struct::Done46,1247 - Term Value; /* value the variable will take */Value47,1317 - Term Value; /* value the variable will take */attvar_struct::Value47,1317 - Term Atts; /* actual data */Atts48,1376 - Term Atts; /* actual data */attvar_struct::Atts48,1376 -} attvar_record;attvar_record49,1407 -#define ATT_RECORD_ARITY ATT_RECORD_ARITY51,1425 -AbsAttVar(attvar_record *attvar_ptr) {AbsAttVar56,1520 -RepAttVar(Term *var_ptr) {RepAttVar61,1619 - -H/blobs.h,2543 -#define BLOBS_HBLOBS_H12,236 -#define X_API X_API16,365 -#define X_APIX_API18,407 -#define YAP_BLOB_MAGIC_B YAP_BLOB_MAGIC_B26,523 -#define PL_BLOB_VERSION PL_BLOB_VERSION27,595 -#define PL_BLOB_UNIQUE PL_BLOB_UNIQUE29,655 -#define PL_BLOB_TEXT PL_BLOB_TEXT30,713 -#define PL_BLOB_NOCOPY PL_BLOB_NOCOPY31,767 -#define PL_BLOB_WCHAR PL_BLOB_WCHAR32,823 -typedef struct YAP_blob_tYAP_blob_t34,880 -{ uintptr_t magic; /* YAP_BLOB_MAGIC */magic35,906 -{ uintptr_t magic; /* YAP_BLOB_MAGIC */YAP_blob_t::magic35,906 - uintptr_t flags; /* YAP_BLOB_* */flags36,948 - uintptr_t flags; /* YAP_BLOB_* */YAP_blob_t::flags36,948 - char * name; /* name of the type */name37,988 - char * name; /* name of the type */YAP_blob_t::name37,988 - int (*release)(Atom a);release38,1030 - int (*release)(Atom a);YAP_blob_t::release38,1030 - int (*compare)(Atom a, Atom b);compare39,1060 - int (*compare)(Atom a, Atom b);YAP_blob_t::compare39,1060 - int (*write)(FILE *s, Atom a, int flags);write41,1115 - int (*write)(FILE *s, Atom a, int flags);YAP_blob_t::write41,1115 - int (*write)(void *s, Atom a, int flags);write43,1169 - int (*write)(void *s, Atom a, int flags);YAP_blob_t::write43,1169 - void (*acquire)(Atom a);acquire45,1224 - void (*acquire)(Atom a);YAP_blob_t::acquire45,1224 - int (*save)(Atom a, FILE *s);save47,1272 - int (*save)(Atom a, FILE *s);YAP_blob_t::save47,1272 - Atom (*load)(FILE *s);load48,1308 - Atom (*load)(FILE *s);YAP_blob_t::load48,1308 - int (*save)(Atom a, void*);save50,1342 - int (*save)(Atom a, void*);YAP_blob_t::save50,1342 - Atom (*load)(void *s);load51,1376 - Atom (*load)(void *s);YAP_blob_t::load51,1376 - void * reserved[10]; /* for future extension */reserved54,1429 - void * reserved[10]; /* for future extension */YAP_blob_t::reserved54,1429 - int registered; /* Already registered? */registered55,1482 - int registered; /* Already registered? */YAP_blob_t::registered55,1482 - int rank; /* Rank for ordering atoms */rank56,1530 - int rank; /* Rank for ordering atoms */YAP_blob_t::rank56,1530 - struct YAP_blob_t * next; /* next in registered type-chain */next57,1577 - struct YAP_blob_t * next; /* next in registered type-chain */YAP_blob_t::next57,1577 - Atom atom_name; /* Name as atom */atom_name58,1647 - Atom atom_name; /* Name as atom */YAP_blob_t::atom_name58,1647 -} blob_type_t;blob_type_t59,1687 - -H/clause.h,13762 -#define CLAUSE_H CLAUSE_H19,579 -typedef union CONSULT_OBJ {CONSULT_OBJ26,664 - const unsigned char *filename;filename27,692 - const unsigned char *filename;CONSULT_OBJ::filename27,692 - int mode;mode28,725 - int mode;CONSULT_OBJ::mode28,725 - Prop p;p29,737 - Prop p;CONSULT_OBJ::p29,737 - UInt c;c30,747 - UInt c;CONSULT_OBJ::c30,747 - Term r;r31,757 - Term r;CONSULT_OBJ::r31,757 -} consult_obj;consult_obj32,767 -#define ASSEMBLING_CLAUSE ASSEMBLING_CLAUSE36,840 -#define ASSEMBLING_INDEX ASSEMBLING_INDEX37,868 -#define ASSEMBLING_EINDEX ASSEMBLING_EINDEX38,895 -#define NextDynamicClause(NextDynamicClause40,924 -#define PredFirstClause PredFirstClause42,982 -#define PredMiddleClause PredMiddleClause43,1008 -#define PredLastClause PredLastClause44,1035 -typedef struct logic_upd_index {logic_upd_index46,1061 - CELL ClFlags;ClFlags47,1094 - CELL ClFlags;logic_upd_index::ClFlags47,1094 - UInt ClRefCount;ClRefCount48,1110 - UInt ClRefCount;logic_upd_index::ClRefCount48,1110 - UInt ClSize;ClSize53,1245 - UInt ClSize;logic_upd_index::ClSize53,1245 - struct logic_upd_index *ParentIndex;ParentIndex54,1260 - struct logic_upd_index *ParentIndex;logic_upd_index::ParentIndex54,1260 - struct logic_upd_index *SiblingIndex;SiblingIndex55,1299 - struct logic_upd_index *SiblingIndex;logic_upd_index::SiblingIndex55,1299 - struct logic_upd_index *PrevSiblingIndex;PrevSiblingIndex56,1339 - struct logic_upd_index *PrevSiblingIndex;logic_upd_index::PrevSiblingIndex56,1339 - struct logic_upd_index *ChildIndex;ChildIndex57,1383 - struct logic_upd_index *ChildIndex;logic_upd_index::ChildIndex57,1383 - PredEntry *ClPred;ClPred59,1475 - PredEntry *ClPred;logic_upd_index::ClPred59,1475 - yamop ClCode[MIN_ARRAY];ClCode60,1496 - yamop ClCode[MIN_ARRAY];logic_upd_index::ClCode60,1496 -} LogUpdIndex;LogUpdIndex61,1523 -typedef struct logic_upd_clause {logic_upd_clause64,1613 - Functor Id; /* allow pointers to this struct to id */Id65,1647 - Functor Id; /* allow pointers to this struct to id */logic_upd_clause::Id65,1647 - CELL ClFlags;ClFlags69,1867 - CELL ClFlags;logic_upd_clause::ClFlags69,1867 - UInt ClSize;ClSize74,1999 - UInt ClSize;logic_upd_clause::ClSize74,1999 - UInt ClRefCount;ClRefCount77,2140 - UInt ClRefCount;logic_upd_clause::ClRefCount77,2140 - yamop *ClExt;ClExt79,2203 - yamop *ClExt;logic_upd_clause::ClExt79,2203 - DBTerm *ClSource;ClSource81,2229 - DBTerm *ClSource;logic_upd_clause::__anon168::ClSource81,2229 - Int ClLine;ClLine82,2251 - Int ClLine;logic_upd_clause::__anon168::ClLine82,2251 - } lusl;lusl83,2267 - } lusl;logic_upd_clause::lusl83,2267 - struct logic_upd_clause *ClPrev, *ClNext;ClPrev85,2315 - struct logic_upd_clause *ClPrev, *ClNext;logic_upd_clause::ClPrev85,2315 - struct logic_upd_clause *ClPrev, *ClNext;ClNext85,2315 - struct logic_upd_clause *ClPrev, *ClNext;logic_upd_clause::ClNext85,2315 - PredEntry *ClPred;ClPred87,2382 - PredEntry *ClPred;logic_upd_clause::ClPred87,2382 - UInt ClTimeStart, ClTimeEnd;ClTimeStart88,2403 - UInt ClTimeStart, ClTimeEnd;logic_upd_clause::ClTimeStart88,2403 - UInt ClTimeStart, ClTimeEnd;ClTimeEnd88,2403 - UInt ClTimeStart, ClTimeEnd;logic_upd_clause::ClTimeEnd88,2403 - yamop ClCode[MIN_ARRAY];ClCode90,2488 - yamop ClCode[MIN_ARRAY];logic_upd_clause::ClCode90,2488 -} LogUpdClause;LogUpdClause91,2515 -INLINE_ONLY inline EXTERN int VALID_TIMESTAMP(UInt timestamp,VALID_TIMESTAMP96,2638 -typedef struct dynamic_clause {dynamic_clause101,2844 - CELL ClFlags;ClFlags103,2929 - CELL ClFlags;dynamic_clause::ClFlags103,2929 - lockvar ClLock;ClLock106,3027 - lockvar ClLock;dynamic_clause::ClLock106,3027 - UInt ClSize;ClSize108,3052 - UInt ClSize;dynamic_clause::ClSize108,3052 - Int ClLine;ClLine109,3067 - Int ClLine;dynamic_clause::ClLine109,3067 - UInt ClRefCount;ClRefCount110,3081 - UInt ClRefCount;dynamic_clause::ClRefCount110,3081 - yamop *ClPrevious; /* immediate update clause */ClPrevious111,3100 - yamop *ClPrevious; /* immediate update clause */dynamic_clause::ClPrevious111,3100 - yamop ClCode[MIN_ARRAY];ClCode113,3205 - yamop ClCode[MIN_ARRAY];dynamic_clause::ClCode113,3205 -} DynamicClause;DynamicClause114,3232 -typedef struct static_index {static_index116,3250 - CELL ClFlags;ClFlags118,3333 - CELL ClFlags;static_index::ClFlags118,3333 - UInt ClSize;ClSize119,3349 - UInt ClSize;static_index::ClSize119,3349 - struct static_index *SiblingIndex;SiblingIndex120,3364 - struct static_index *SiblingIndex;static_index::SiblingIndex120,3364 - struct static_index *ChildIndex;ChildIndex121,3401 - struct static_index *ChildIndex;static_index::ChildIndex121,3401 - PredEntry *ClPred;ClPred123,3490 - PredEntry *ClPred;static_index::ClPred123,3490 - yamop ClCode[MIN_ARRAY];ClCode124,3511 - yamop ClCode[MIN_ARRAY];static_index::ClCode124,3511 -} StaticIndex;StaticIndex125,3538 -typedef struct static_clause {static_clause127,3554 - CELL ClFlags;ClFlags129,3638 - CELL ClFlags;static_clause::ClFlags129,3638 - UInt ClSize;ClSize130,3654 - UInt ClSize;static_clause::ClSize130,3654 - DBTerm *ClSource;ClSource132,3679 - DBTerm *ClSource;static_clause::__anon169::ClSource132,3679 - Int ClLine;ClLine133,3701 - Int ClLine;static_clause::__anon169::ClLine133,3701 - } usc;usc134,3717 - } usc;static_clause::usc134,3717 - struct static_clause *ClNext;ClNext135,3726 - struct static_clause *ClNext;static_clause::ClNext135,3726 - yamop ClCode[MIN_ARRAY];ClCode137,3812 - yamop ClCode[MIN_ARRAY];static_clause::ClCode137,3812 -} StaticClause;StaticClause138,3839 -typedef struct static_mega_clause {static_mega_clause140,3856 - CELL ClFlags;ClFlags142,3945 - CELL ClFlags;static_mega_clause::ClFlags142,3945 - UInt ClSize;ClSize143,3961 - UInt ClSize;static_mega_clause::ClSize143,3961 - PredEntry *ClPred;ClPred144,3976 - PredEntry *ClPred;static_mega_clause::ClPred144,3976 - UInt ClItemSize;ClItemSize145,3997 - UInt ClItemSize;static_mega_clause::ClItemSize145,3997 - Int ClLine;ClLine146,4016 - Int ClLine;static_mega_clause::ClLine146,4016 - struct static_mega_clause *ClNext;ClNext147,4030 - struct static_mega_clause *ClNext;static_mega_clause::ClNext147,4030 - yamop ClCode[MIN_ARRAY];ClCode149,4121 - yamop ClCode[MIN_ARRAY];static_mega_clause::ClCode149,4121 -} MegaClause;MegaClause150,4148 -typedef union clause_obj {clause_obj152,4163 - struct logic_upd_clause luc;luc153,4190 - struct logic_upd_clause luc;clause_obj::luc153,4190 - struct logic_upd_index lui;lui154,4221 - struct logic_upd_index lui;clause_obj::lui154,4221 - struct dynamic_clause ic;ic155,4251 - struct dynamic_clause ic;clause_obj::ic155,4251 - struct static_clause sc;sc156,4279 - struct static_clause sc;clause_obj::sc156,4279 - struct static_mega_clause mc;mc157,4306 - struct static_mega_clause mc;clause_obj::mc157,4306 - struct static_index si;si158,4338 - struct static_index si;clause_obj::si158,4338 -} ClauseUnion;ClauseUnion159,4364 -typedef union clause_ptr {clause_ptr161,4380 - struct logic_upd_clause *luc;luc162,4407 - struct logic_upd_clause *luc;clause_ptr::luc162,4407 - struct logic_upd_index *lui;lui163,4439 - struct logic_upd_index *lui;clause_ptr::lui163,4439 - struct dynamic_clause *ic;ic164,4470 - struct dynamic_clause *ic;clause_ptr::ic164,4470 - struct static_clause *sc;sc165,4499 - struct static_clause *sc;clause_ptr::sc165,4499 - struct static_mega_clause *mc;mc166,4527 - struct static_mega_clause *mc;clause_ptr::mc166,4527 - struct static_index *si;si167,4560 - struct static_index *si;clause_ptr::si167,4560 -} ClausePointer;ClausePointer168,4587 -typedef struct index_t {index_t170,4605 - struct index_t *next, *prev;next171,4630 - struct index_t *next, *prev;index_t::next171,4630 - struct index_t *next, *prev;prev171,4630 - struct index_t *next, *prev;index_t::prev171,4630 - UInt nels;nels172,4661 - UInt nels;index_t::nels172,4661 - UInt arity;arity173,4674 - UInt arity;index_t::arity173,4674 - PredEntry *ap;ap174,4688 - PredEntry *ap;index_t::ap174,4688 - CELL bmap;bmap175,4705 - CELL bmap;index_t::bmap175,4705 - int is_key;is_key176,4718 - int is_key;index_t::is_key176,4718 - int is_udi;is_udi177,4732 - int is_udi;index_t::is_udi177,4732 - UInt ncollisions;ncollisions178,4746 - UInt ncollisions;index_t::ncollisions178,4746 - UInt max_col_count;max_col_count179,4766 - UInt max_col_count;index_t::max_col_count179,4766 - UInt ntrys;ntrys180,4788 - UInt ntrys;index_t::ntrys180,4788 - UInt nentries;nentries181,4802 - UInt nentries;index_t::nentries181,4802 - UInt hsize;hsize182,4819 - UInt hsize;index_t::hsize182,4819 - BITS32 *key;key183,4833 - BITS32 *key;index_t::key183,4833 - CELL *cls, *bcls;cls184,4848 - CELL *cls, *bcls;index_t::cls184,4848 - CELL *cls, *bcls;bcls184,4848 - CELL *cls, *bcls;index_t::bcls184,4848 - BITS32 *links;links185,4868 - BITS32 *links;index_t::links185,4868 - size_t size;size186,4885 - size_t size;index_t::size186,4885 - yamop *code;code187,4900 - yamop *code;index_t::code187,4900 - BITS32 *udi_data;udi_data188,4915 - BITS32 *udi_data;index_t::udi_data188,4915 - void *udi_first, *udi_next;udi_first189,4935 - void *udi_first, *udi_next;index_t::udi_first189,4935 - void *udi_first, *udi_next;udi_next189,4935 - void *udi_first, *udi_next;index_t::udi_next189,4935 - UInt udi_free_args;udi_free_args190,4965 - UInt udi_free_args;index_t::udi_free_args190,4965 - UInt udi_arg;udi_arg191,4987 - UInt udi_arg;index_t::udi_arg191,4987 -} Index_t;Index_t192,5003 -INLINE_ONLY EXTERN inline BITS32 EXO_ADDRESS_TO_OFFSET(struct index_t *it,EXO_ADDRESS_TO_OFFSET197,5158 -INLINE_ONLY EXTERN inline CELL *EXO_OFFSET_TO_ADDRESS(struct index_t *it,EXO_OFFSET_TO_ADDRESS205,5488 -INLINE_ONLY EXTERN inline BITS32 ADDRESS_TO_LINK(struct index_t *it,ADDRESS_TO_LINK215,5852 -INLINE_ONLY EXTERN inline BITS32 *LINK_TO_ADDRESS(struct index_t *it,LINK_TO_ADDRESS223,6148 -typedef void (*CRefitExoIndex)(struct index_t **ip, UInt b[] USES_REGS);CRefitExoIndex228,6311 -typedef yamop *(*CEnterExoIndex)(struct index_t *it USES_REGS);CEnterExoIndex229,6384 -typedef int (*CRetryExoIndex)(struct index_t *it USES_REGS);CRetryExoIndex230,6448 -typedef struct dbterm_list {dbterm_list232,6510 - DBTerm *dbterms;dbterms234,6590 - DBTerm *dbterms;dbterm_list::dbterms234,6590 - yamop *clause_code;clause_code235,6609 - yamop *clause_code;dbterm_list::clause_code235,6609 - PredEntry *p;p236,6631 - PredEntry *p;dbterm_list::p236,6631 - struct dbterm_list *next_dbl;next_dbl237,6647 - struct dbterm_list *next_dbl;dbterm_list::next_dbl237,6647 -} DBTermList;DBTermList238,6679 -#define ClauseCodeToDynamicClause(ClauseCodeToDynamicClause240,6694 -#define ClauseCodeToStaticClause(ClauseCodeToStaticClause242,6854 -#define ClauseCodeToLogUpdClause(ClauseCodeToLogUpdClause244,7012 -#define ClauseCodeToMegaClause(ClauseCodeToMegaClause246,7170 -#define ClauseCodeToLogUpdIndex(ClauseCodeToLogUpdIndex248,7324 -#define ClauseCodeToStaticIndex(ClauseCodeToStaticIndex250,7480 -#define ClauseFlagsToDynamicClause(ClauseFlagsToDynamicClause253,7637 -#define ClauseFlagsToLogUpdClause(ClauseFlagsToLogUpdClause254,7698 -#define ClauseFlagsToLogUpdIndex(ClauseFlagsToLogUpdIndex256,7860 -#define ClauseFlagsToStaticClause(ClauseFlagsToStaticClause258,8020 -#define DynamicFlags(DynamicFlags260,8080 -#define DynamicLock(DynamicLock262,8145 -#define INIT_CLREF_COUNT(INIT_CLREF_COUNT265,8228 -#define INC_CLREF_COUNT(INC_CLREF_COUNT266,8276 -#define DEC_CLREF_COUNT(DEC_CLREF_COUNT267,8321 -#define CL_IN_USE(CL_IN_USE269,8367 -#define INIT_CLREF_COUNT(INIT_CLREF_COUNT271,8412 -#define INC_CLREF_COUNT(INC_CLREF_COUNT272,8440 -#define DEC_CLREF_COUNT(DEC_CLREF_COUNT273,8467 -#define CL_IN_USE(CL_IN_USE274,8494 -#define OP_HASH_SIZE OP_HASH_SIZE320,10014 -INLINE_ONLY inline EXTERN int rtable_hash_op(OPCODE opc, int hash_mask) {rtable_hash_op324,10115 -INLINE_ONLY inline EXTERN op_numbers Yap_op_from_opcode(OPCODE opc) {Yap_op_from_opcode332,10420 -static inline op_numbers Yap_op_from_opcode(OPCODE opc) {Yap_op_from_opcode347,10741 -static inline int same_lu_block(yamop **paddr, yamop *p) {same_lu_block355,10953 -#define Yap_MkStaticRefTerm(Yap_MkStaticRefTerm372,11267 -static inline Term __Yap_MkStaticRefTerm(StaticClause *cp,__Yap_MkStaticRefTerm374,11347 -static inline StaticClause *Yap_ClauseFromTerm(Term t) {Yap_ClauseFromTerm382,11608 -#define Yap_MkMegaRefTerm(Yap_MkMegaRefTerm386,11725 -static inline Term __Yap_MkMegaRefTerm(PredEntry *ap, yamop *ipc USES_REGS) {__Yap_MkMegaRefTerm388,11803 -static inline yamop *Yap_MegaClauseFromTerm(Term t) {Yap_MegaClauseFromTerm395,12014 -static inline PredEntry *Yap_MegaClausePredicateFromTerm(Term t) {Yap_MegaClausePredicateFromTerm399,12121 -#define Yap_MkExoRefTerm(Yap_MkExoRefTerm403,12245 -static inline Term __Yap_MkExoRefTerm(PredEntry *ap, Int i USES_REGS) {__Yap_MkExoRefTerm405,12317 -static inline Int Yap_ExoClauseFromTerm(Term t) {Yap_ExoClauseFromTerm412,12519 -static inline PredEntry *Yap_ExoClausePredicateFromTerm(Term t) {Yap_ExoClausePredicateFromTerm416,12613 -static inline bool Yap_static_in_use(PredEntry *p, bool check_everything) {Yap_static_in_use429,13051 -#define DEAD_REF(DEAD_REF445,13538 - FIND_PRED_FROM_ANYWHERE,FIND_PRED_FROM_ANYWHERE449,13584 - FIND_PRED_FROM_CP,FIND_PRED_FROM_CP450,13611 - FIND_PRED_FROM_ENVFIND_PRED_FROM_ENV451,13632 -} find_pred_type;find_pred_type452,13653 -#define Yap_InformOfRemoval(Yap_InformOfRemoval471,14326 - -H/corout.h,1307 -static char SccsId[]="%W% %G%";SccsId18,586 -typedef struct sus_record_struct {sus_record_struct21,626 - Functor f;f22,661 - Functor f;sus_record_struct::f22,661 - Term NR; /* next record for same variable */NR23,674 - Term NR; /* next record for same variable */sus_record_struct::NR23,674 - Term SG; /* actual suspended goal */SG24,722 - Term SG; /* actual suspended goal */sus_record_struct::SG24,722 - Term NS; /* other suspended goals */NS25,762 - Term NS; /* other suspended goals */sus_record_struct::NS25,762 -} sus_record;sus_record26,809 -typedef struct sus_tag_struct {sus_tag_struct28,824 - Term ActiveSus; /* if unbound suspension active, if bound terminated */ActiveSus29,856 - Term ActiveSus; /* if unbound suspension active, if bound terminated */sus_tag_struct::ActiveSus29,856 - CELL sus_id;sus_id30,933 - CELL sus_id;sus_tag_struct::sus_id30,933 - Term TimeStamp; /* actual suspended goal */TimeStamp31,948 - Term TimeStamp; /* actual suspended goal */sus_tag_struct::TimeStamp31,948 - Term SG; /* list of suspended goals */SG32,994 - Term SG; /* list of suspended goals */sus_tag_struct::SG32,994 -} sus_tag;sus_tag33,1036 -#define AbsSuspendedVar(AbsSuspendedVar37,1113 -#define RepSuspendedVar(RepSuspendedVar38,1181 - -H/cut_c.h,782 -#define __CUT_C_H____CUT_C_H__2,20 -#define Choice_Point_Type Choice_Point_Type5,64 -#define NULL NULL9,148 -typedef struct cut_c_str *cut_c_str_ptr;cut_c_str_ptr12,173 -struct cut_c_str {cut_c_str13,214 - cut_c_str_ptr before;before14,233 - cut_c_str_ptr before;cut_c_str::before14,233 - void *try_userc_cut_yamop;try_userc_cut_yamop15,257 - void *try_userc_cut_yamop;cut_c_str::try_userc_cut_yamop15,257 -#define CUT_C_STR_SIZE CUT_C_STR_SIZE18,290 -#define EXTRA_CBACK_CUT_ARG(EXTRA_CBACK_CUT_ARG20,360 -#define CBACK_CUT_ARG(CBACK_CUT_ARG22,442 -#define CUT_C_PUSH(CUT_C_PUSH24,496 -#define POP_CHOICE_POINT(POP_CHOICE_POINT34,1149 -#define POP_EXECUTE(POP_EXECUTE38,1360 -#define POP_FAIL(POP_FAIL47,1943 -#define POP_FAIL_EXECUTE(POP_FAIL_EXECUTE57,2659 - -H/dlmalloc.h,9104 -#define MORECORE MORECORE85,2946 -#define MORECORE_CONTIGUOUS MORECORE_CONTIGUOUS86,2971 -#define USE_DL_PREFIX USE_DL_PREFIX87,3001 -#define __STD_C __STD_C105,3364 -#define __STD_C __STD_C107,3392 -#define Void_t Void_t118,3561 -#define Void_t Void_t120,3592 -#define DEBUG_DLMALLOC DEBUG_DLMALLOC179,5441 -#define assert(assert184,5526 -#define CHUNK_SIZE_T CHUNK_SIZE_T194,5736 -#define PTR_UINT PTR_UINT203,5971 -#define INTERNAL_SIZE_T INTERNAL_SIZE_T239,7493 -#define SIZE_SZ SIZE_SZ243,7566 -#define MALLOC_ALIGNMENT MALLOC_ALIGNMENT257,7979 -#define MALLOC_ALIGN_MASK MALLOC_ALIGN_MASK261,8071 -#define TRIM_FASTBINS TRIM_FASTBINS291,9155 -#define cALLOc cALLOc312,9651 -#define fREe fREe313,9682 -#define cFREe cFREe314,9711 -#define mALLOc mALLOc315,9741 -#define mEMALIGn mEMALIGn316,9772 -#define rEALLOc rEALLOc317,9805 -#define vALLOc vALLOc318,9837 -#define pVALLOc pVALLOc319,9868 -#define mALLINFo mALLINFo320,9900 -#define mALLOPt mALLOPt321,9933 -#define mTRIm mTRIm322,9965 -#define mSTATs mSTATs323,10001 -#define mUSABLe mUSABLe324,10038 -#define iCALLOc iCALLOc325,10081 -#define iCOMALLOc iCOMALLOc326,10124 -#define MALLOC_FAILURE_ACTION MALLOC_FAILURE_ACTION338,10481 -#define MALLOC_FAILURE_ACTIONMALLOC_FAILURE_ACTION342,10539 -#define MORECORE MORECORE369,11111 -#define MORECORE_FAILURE MORECORE_FAILURE380,11406 -#define MORECORE_CONTIGUOUS MORECORE_CONTIGUOUS394,11921 -#define malloc_getpagesize malloc_getpagesize419,12799 -# define _SC_PAGE_SIZE _SC_PAGE_SIZE429,13021 -# define malloc_getpagesize malloc_getpagesize434,13106 -# define malloc_getpagesize malloc_getpagesize438,13271 -# define malloc_getpagesize malloc_getpagesize441,13391 -# define malloc_getpagesize malloc_getpagesize447,13564 -# define malloc_getpagesize malloc_getpagesize451,13678 -# define malloc_getpagesize malloc_getpagesize453,13742 -# define malloc_getpagesize malloc_getpagesize457,13858 -# define malloc_getpagesize malloc_getpagesize460,13952 -# define malloc_getpagesize malloc_getpagesize462,14041 -#define HAVE_USR_INCLUDE_MALLOC_H HAVE_USR_INCLUDE_MALLOC_H500,15661 -struct mallinfo {mallinfo509,15801 - int arena; /* non-mmapped space allocated from system */arena510,15819 - int arena; /* non-mmapped space allocated from system */mallinfo::arena510,15819 - int ordblks; /* number of free chunks */ordblks511,15881 - int ordblks; /* number of free chunks */mallinfo::ordblks511,15881 - int smblks; /* number of fastbin blocks */smblks512,15925 - int smblks; /* number of fastbin blocks */mallinfo::smblks512,15925 - int hblks; /* number of mmapped regions */hblks513,15972 - int hblks; /* number of mmapped regions */mallinfo::hblks513,15972 - int hblkhd; /* space in mmapped regions */hblkhd514,16020 - int hblkhd; /* space in mmapped regions */mallinfo::hblkhd514,16020 - int usmblks; /* maximum total allocated space */usmblks515,16067 - int usmblks; /* maximum total allocated space */mallinfo::usmblks515,16067 - int fsmblks; /* space available in freed fastbin blocks */fsmblks516,16119 - int fsmblks; /* space available in freed fastbin blocks */mallinfo::fsmblks516,16119 - int uordblks; /* total allocated space */uordblks517,16181 - int uordblks; /* total allocated space */mallinfo::uordblks517,16181 - int fordblks; /* total free space */fordblks518,16225 - int fordblks; /* total free space */mallinfo::fordblks518,16225 - int keepcost; /* top-most, releasable (via malloc_trim) space */keepcost519,16264 - int keepcost; /* top-most, releasable (via malloc_trim) space */mallinfo::keepcost519,16264 -#define M_MXFAST M_MXFAST960,32064 -#define DEFAULT_MXFAST DEFAULT_MXFAST964,32129 -#define M_TRIM_THRESHOLD M_TRIM_THRESHOLD1028,35073 -#define DEFAULT_TRIM_THRESHOLD DEFAULT_TRIM_THRESHOLD1031,35139 -#define M_TOP_PAD M_TOP_PAD1061,36235 -#define DEFAULT_TOP_PAD DEFAULT_TOP_PAD1064,36294 -struct malloc_chunk {malloc_chunk1082,36682 - INTERNAL_SIZE_T prev_size; /* Size of previous chunk (if free). */prev_size1084,36705 - INTERNAL_SIZE_T prev_size; /* Size of previous chunk (if free). */malloc_chunk::prev_size1084,36705 - INTERNAL_SIZE_T size; /* Size in bytes, including overhead. */size1085,36781 - INTERNAL_SIZE_T size; /* Size in bytes, including overhead. */malloc_chunk::size1085,36781 - struct malloc_chunk* fd; /* double links -- used only if free. */fd1087,36858 - struct malloc_chunk* fd; /* double links -- used only if free. */malloc_chunk::fd1087,36858 - struct malloc_chunk* bk;bk1088,36934 - struct malloc_chunk* bk;malloc_chunk::bk1088,36934 -typedef struct malloc_chunk* mchunkptr;mchunkptr1092,36966 -#define chunk2mem(chunk2mem1187,41805 -#define mem2chunk(mem2chunk1188,41864 -#define MIN_CHUNK_SIZE MIN_CHUNK_SIZE1191,41962 -#define MINSIZE MINSIZE1195,42090 -#define aligned_OK(aligned_OK1200,42229 -#define REQUEST_OUT_OF_RANGE(REQUEST_OUT_OF_RANGE1209,42518 -#define request2size(request2size1215,42772 -#define checked_request2size(checked_request2size1222,43089 -#define PREV_INUSE PREV_INUSE1235,43650 -#define prev_inuse(prev_inuse1238,43716 -#define IS_MMAPPED IS_MMAPPED1242,43851 -#define chunk_is_mmapped(chunk_is_mmapped1245,43907 -#define SIZE_BITS SIZE_BITS1255,44258 -#define chunksize(chunksize1258,44335 -#define next_chunk(next_chunk1262,44434 -#define prev_chunk(prev_chunk1265,44559 -#define chunk_at_offset(chunk_at_offset1268,44676 -#define inuse(inuse1271,44770 -#define set_inuse(set_inuse1275,44932 -#define clear_inuse(clear_inuse1278,45031 -#define inuse_bit_at_offset(inuse_bit_at_offset1283,45185 -#define set_inuse_bit_at_offset(set_inuse_bit_at_offset1286,45277 -#define clear_inuse_bit_at_offset(clear_inuse_bit_at_offset1289,45374 -#define set_head_size(set_head_size1294,45532 -#define set_head(set_head1297,45634 -#define set_foot(set_foot1300,45739 -typedef struct malloc_chunk* mbinptr;mbinptr1354,48133 -#define bin_at(bin_at1357,48227 -#define next_bin(next_bin1360,48327 -#define first(first1363,48452 -#define last(last1364,48483 -#define dl_unlink(dl_unlink1367,48549 -#define NBINS NBINS1392,49376 -#define NSMALLBINS NSMALLBINS1393,49406 -#define SMALLBIN_WIDTH SMALLBIN_WIDTH1394,49436 -#define MIN_LARGE_SIZE MIN_LARGE_SIZE1395,49466 -#define in_smallbin_range(in_smallbin_range1397,49497 -#define smallbin_index(smallbin_index1400,49585 -#define BINMAPSHIFT BINMAPSHIFT1418,50209 -#define BITSPERMAP BITSPERMAP1419,50236 -#define BINMAPSIZE BINMAPSIZE1420,50281 -typedef struct malloc_chunk* mfastbinptr;mfastbinptr1439,51004 -#define MAX_FAST_SIZE MAX_FAST_SIZE1442,51097 -#define fastbin_index(fastbin_index1445,51184 -#define NFASTBINS NFASTBINS1447,51252 -struct malloc_state {malloc_state1449,51319 - INTERNAL_SIZE_T max_fast; /* low 2 bits used as flags */max_fast1452,51400 - INTERNAL_SIZE_T max_fast; /* low 2 bits used as flags */malloc_state::max_fast1452,51400 - mfastbinptr fastbins[NFASTBINS];fastbins1455,51480 - mfastbinptr fastbins[NFASTBINS];malloc_state::fastbins1455,51480 - mchunkptr top;top1458,51586 - mchunkptr top;malloc_state::top1458,51586 - mchunkptr last_remainder;last_remainder1461,51679 - mchunkptr last_remainder;malloc_state::last_remainder1461,51679 - mchunkptr bins[NBINS * 2];bins1464,51761 - mchunkptr bins[NBINS * 2];malloc_state::bins1464,51761 - unsigned int binmap[BINMAPSIZE+1];binmap1467,51877 - unsigned int binmap[BINMAPSIZE+1];malloc_state::binmap1467,51877 - CHUNK_SIZE_T trim_threshold;trim_threshold1470,51946 - CHUNK_SIZE_T trim_threshold;malloc_state::trim_threshold1470,51946 - INTERNAL_SIZE_T top_pad;top_pad1471,51981 - INTERNAL_SIZE_T top_pad;malloc_state::top_pad1471,51981 - INTERNAL_SIZE_T mmap_threshold;mmap_threshold1472,52009 - INTERNAL_SIZE_T mmap_threshold;malloc_state::mmap_threshold1472,52009 - unsigned int pagesize; pagesize1475,52078 - unsigned int pagesize; malloc_state::pagesize1475,52078 - unsigned int morecore_properties;morecore_properties1478,52149 - unsigned int morecore_properties;malloc_state::morecore_properties1478,52149 - INTERNAL_SIZE_T mmapped_mem;mmapped_mem1481,52209 - INTERNAL_SIZE_T mmapped_mem;malloc_state::mmapped_mem1481,52209 - INTERNAL_SIZE_T sbrked_mem;sbrked_mem1482,52241 - INTERNAL_SIZE_T sbrked_mem;malloc_state::sbrked_mem1482,52241 - INTERNAL_SIZE_T max_sbrked_mem;max_sbrked_mem1483,52272 - INTERNAL_SIZE_T max_sbrked_mem;malloc_state::max_sbrked_mem1483,52272 - INTERNAL_SIZE_T max_mmapped_mem;max_mmapped_mem1484,52307 - INTERNAL_SIZE_T max_mmapped_mem;malloc_state::max_mmapped_mem1484,52307 - INTERNAL_SIZE_T max_total_mem;max_total_mem1485,52343 - INTERNAL_SIZE_T max_total_mem;malloc_state::max_total_mem1485,52343 -typedef struct malloc_state *mstate;mstate1488,52381 - -H/fields.h,2173 -#define _FIELDS_H_ _FIELDS_H_3,20 -#undef HMHM5,42 -#undef HSPACEHSPACE6,52 -#undef HSPACENHSPACEN7,66 -#undef HIHI8,81 -#undef H_RH_R9,91 -#undef HLOCKHLOCK10,102 -#undef HRWLOCKHRWLOCK11,115 -#undef HMOPCODEHMOPCODE12,130 -#undef HPROCHPROC13,146 -#undef HATOMTHATOMT14,159 -#undef HAROPHAROP15,173 -#undef HFOPHFOP16,186 -#undef HYOPHYOP17,198 -#undef HENVYOPHENVYOP18,210 -#undef HCPYOPHCPYOP19,225 -#define HM(HM20,239 -#define HSPACE(HSPACE21,309 -#define HSPACEN(HSPACEN22,368 -#define HI(HI23,431 -#define H_R(H_R24,492 -#define HLOCK(HLOCK25,554 -#define HRWLOCK(HRWLOCK26,612 -#define HMOPCODE(HMOPCODE27,672 -#define HPROC(HPROC28,731 -#define HPROCN(HPROCN29,804 -#define HATOMT(HATOMT30,881 -#define HAROP(HAROP31,940 -#define HFOP(HFOP32,1013 -#define HYOP(HYOP33,1078 -#define HENVYOP(HENVYOP34,1140 -#define HCPYOP(HCPYOP35,1218 -#undef HMHM39,1305 -#undef HSPACEHSPACE40,1315 -#undef HSPACENHSPACEN41,1329 -#undef HIHI42,1344 -#undef H_RH_R43,1354 -#undef HLOCKHLOCK44,1365 -#undef HRWLOCKHRWLOCK45,1378 -#undef HMOPCODEHMOPCODE46,1393 -#undef HPROCHPROC47,1409 -#undef HATOMTHATOMT48,1422 -#undef HAROPHAROP49,1436 -#undef HFOPHFOP50,1449 -#undef HYOPHYOP51,1461 -#undef HENVYOPHENVYOP52,1473 -#undef HCPYOPHCPYOP53,1488 -#define HM(HM54,1502 -#define HSPACE(HSPACE55,1581 -#define HSPACEN(HSPACEN56,1649 -#define HI(HI57,1721 -#define H_R(H_R58,1791 -#define HLOCK(HLOCK59,1862 -#define HRWLOCK(HRWLOCK60,1929 -#define HMOPCODE(HMOPCODE61,1998 -#define HPROC(HPROC62,2066 -#define HPROCN(HPROCN64,2190 -#define HATOMT(HATOMT66,2314 -#define HAROP(HAROP67,2382 -#define HFOP(HFOP69,2506 -#define HYOP(HYOP70,2580 -#define HENVYOP(HENVYOP71,2651 -#define HCPYOP(HCPYOP73,2775 -#undef LOCLOC77,2871 -#undef LOCLLOCL78,2882 -#undef LOCNLOCN79,2894 -#undef LOCLRLOCLR80,2906 -#define LOC(LOC81,2919 -#define LOCL(LOCL82,2972 -#define LOCN(LOCN83,3032 -#define LOCLR(LOCLR84,3089 -#undef LOCLOC88,3181 -#undef LOCLLOCL89,3192 -#undef LOCLRLOCLR90,3204 -#undef LOCNLOCN91,3217 -#define LOC(LOC92,3229 -#define LOCL(LOCL93,3294 -#define LOCN(LOCN94,3366 -#define LOCLR(LOCLR95,3435 - -H/findclause.h,0 - -H/Foreign.h,1667 -#define NO_DYN NO_DYN15,533 -#define FOREIGN_HFOREIGN_H18,569 -#undef NO_DYNNO_DYN50,1335 -#define LOAD_DL LOAD_DL54,1388 -#undef NO_DYNNO_DYN56,1420 -#undef NO_DYNNO_DYN61,1502 -#define A_OUT A_OUT63,1561 -#define NO_DYN NO_DYN66,1597 -#define LOAD_DL LOAD_DL68,1620 -#undef NO_DYNNO_DYN75,1694 -#define LOAD_DLL LOAD_DLL76,1708 -#undef LOAD_DLLOAD_DL79,1746 -#undef NO_DYNNO_DYN85,1804 -#define LOAD_SHL LOAD_SHL87,1825 -#undef NO_DYNNO_DYN92,1891 -#define LOAD_DYLD LOAD_DYLD95,1929 -#define LOAD_SUCCEEDED LOAD_SUCCEEDED99,1980 -#define LOAD_FAILLED LOAD_FAILLED100,2007 -typedef struct StringListItem {StringListItem102,2035 - Atom name;name103,2067 - Atom name;StringListItem::name103,2067 - void *handle;handle104,2080 - void *handle;StringListItem::handle104,2080 - struct StringListItem *next;next105,2096 - struct StringListItem *next;StringListItem::next105,2096 -} StringListItem, *StringList;StringListItem106,2127 -} StringListItem, *StringList;StringList106,2127 -typedef struct ForeignLoadItem {ForeignLoadItem108,2159 - StringList objs;objs109,2192 - StringList objs;ForeignLoadItem::objs109,2192 - StringList libs;libs110,2211 - StringList libs;ForeignLoadItem::libs110,2211 - Atom f;f111,2230 - Atom f;ForeignLoadItem::f111,2230 - Term module;module112,2240 - Term module;ForeignLoadItem::module112,2240 - struct ForeignLoadItem *next;next113,2255 - struct ForeignLoadItem *next;ForeignLoadItem::next113,2255 -} ForeignObj;ForeignObj114,2287 -typedef void (*YapInitProc)(void);YapInitProc116,2302 -#define EAGER_LOADING EAGER_LOADING127,2681 -#define GLOBAL_LOADING GLOBAL_LOADING128,2706 - -H/generated/dglobals.h,3716 -#define GLOBAL_Initialised GLOBAL_Initialised23,165 -#define GLOBAL_InitialisedFromPL GLOBAL_InitialisedFromPL24,217 -#define GLOBAL_PL_Argc GLOBAL_PL_Argc25,281 -#define GLOBAL_PL_Argv GLOBAL_PL_Argv26,325 -#define GLOBAL_FAST_BOOT_FLAG GLOBAL_FAST_BOOT_FLAG27,369 -#define GLOBAL_HaltHooks GLOBAL_HaltHooks29,428 -#define GLOBAL_JIT_finalizer GLOBAL_JIT_finalizer30,476 -#define GLOBAL_AllowLocalExpansion GLOBAL_AllowLocalExpansion32,533 -#define GLOBAL_AllowGlobalExpansion GLOBAL_AllowGlobalExpansion33,601 -#define GLOBAL_AllowTrailExpansion GLOBAL_AllowTrailExpansion34,671 -#define GLOBAL_SizeOfOverflow GLOBAL_SizeOfOverflow35,739 -#define GLOBAL_AGcThreshold GLOBAL_AGcThreshold37,798 -#define GLOBAL_AGCHook GLOBAL_AGCHook38,852 -#define GLOBAL_NOfThreads GLOBAL_NOfThreads42,910 -#define GLOBAL_NOfThreadsCreated GLOBAL_NOfThreadsCreated44,961 -#define GLOBAL_ThreadsTotalTime GLOBAL_ThreadsTotalTime46,1026 -#define GLOBAL_ThreadHandlesLock GLOBAL_ThreadHandlesLock48,1089 -#define GLOBAL_BGL GLOBAL_BGL52,1200 -#define GLOBAL_optyap_data GLOBAL_optyap_data55,1282 -#define GLOBAL_PrologShouldHandleInterrupts GLOBAL_PrologShouldHandleInterrupts58,1365 -#define GLOBAL_master_thread GLOBAL_master_thread61,1473 -#define GLOBAL_named_mboxes GLOBAL_named_mboxes62,1529 -#define GLOBAL_mboxq_lock GLOBAL_mboxq_lock63,1583 -#define GLOBAL_mbox_count GLOBAL_mbox_count64,1633 -#define GLOBAL_WithMutex GLOBAL_WithMutex65,1683 -#define GLOBAL_Stream GLOBAL_Stream68,1753 -#define GLOBAL_StreamDescLock GLOBAL_StreamDescLock70,1832 -#define GLOBAL_argv GLOBAL_argv73,1898 -#define GLOBAL_argc GLOBAL_argc74,1936 -#define GLOBAL_attas GLOBAL_attas78,1995 -#define GLOBAL_agc_calls GLOBAL_agc_calls81,2043 -#define GLOBAL_agc_collected GLOBAL_agc_collected82,2091 -#define GLOBAL_tot_agc_time GLOBAL_tot_agc_time84,2148 -#define GLOBAL_tot_agc_recovered GLOBAL_tot_agc_recovered86,2203 -#define GLOBAL_mmap_arrays GLOBAL_mmap_arrays89,2282 -#define GLOBAL_Option GLOBAL_Option93,2355 -#define GLOBAL_logfile GLOBAL_logfile94,2397 -#define GLOBAL_Executable GLOBAL_Executable100,2488 -#define GLOBAL_OpaqueHandlersCount GLOBAL_OpaqueHandlersCount102,2545 -#define GLOBAL_OpaqueHandlers GLOBAL_OpaqueHandlers103,2613 -#define GLOBAL_pwd GLOBAL_pwd105,2693 -#define GLOBAL_RestoreFile GLOBAL_RestoreFile109,2738 -#define GLOBAL_ProfCalls GLOBAL_ProfCalls111,2791 -#define GLOBAL_ProfGCs GLOBAL_ProfGCs112,2839 -#define GLOBAL_ProfHGrows GLOBAL_ProfHGrows113,2883 -#define GLOBAL_ProfSGrows GLOBAL_ProfSGrows114,2933 -#define GLOBAL_ProfMallocs GLOBAL_ProfMallocs115,2983 -#define GLOBAL_ProfIndexing GLOBAL_ProfIndexing116,3035 -#define GLOBAL_ProfOn GLOBAL_ProfOn117,3089 -#define GLOBAL_ProfOns GLOBAL_ProfOns118,3131 -#define GLOBAL_ProfilerRoot GLOBAL_ProfilerRoot119,3175 -#define GLOBAL_ProfilerNil GLOBAL_ProfilerNil120,3229 -#define GLOBAL_DIRNAME GLOBAL_DIRNAME121,3281 -#define GLOBAL_ProfilerOn GLOBAL_ProfilerOn123,3338 -#define GLOBAL_FProf GLOBAL_FProf124,3388 -#define GLOBAL_FPreds GLOBAL_FPreds125,3428 -#define GLOBAL_FreeMutexes GLOBAL_FreeMutexes129,3505 -#define GLOBAL_mutex_backbone GLOBAL_mutex_backbone130,3557 -#define GLOBAL_MUT_ACCESS GLOBAL_MUT_ACCESS131,3615 -#define GLOBAL_Home GLOBAL_Home133,3672 -#define GLOBAL_CharConversionTable GLOBAL_CharConversionTable135,3711 -#define GLOBAL_CharConversionTable2 GLOBAL_CharConversionTable2136,3779 -#define GLOBAL_MaxPriority GLOBAL_MaxPriority138,3850 -#define GLOBAL_FileAliases GLOBAL_FileAliases140,3903 -#define GLOBAL_NOfFileAliases GLOBAL_NOfFileAliases141,3955 -#define GLOBAL_SzOfFileAliases GLOBAL_SzOfFileAliases142,4013 -#define GLOBAL_VFS GLOBAL_VFS143,4073 - -H/generated/dhstruct.h,7748 -#define DLMallocLock DLMallocLock35,235 -#define HeapUsed HeapUsed40,375 -#define NotHeapUsed NotHeapUsed42,420 -#define HeapUsed HeapUsed44,474 -#define HeapMax HeapMax46,523 -#define HeapTop HeapTop47,563 -#define HeapLim HeapLim48,603 -#define FreeBlocks FreeBlocks49,643 -#define FreeBlocksLock FreeBlocksLock51,728 -#define HeapUsedLock HeapUsedLock52,782 -#define HeapTopLock HeapTopLock53,832 -#define HeapTopOwner HeapTopOwner54,880 -#define MaxStack MaxStack56,937 -#define MaxTrail MaxTrail57,979 -#define OP_RTABLE OP_RTABLE61,1045 -#define EXECUTE_CPRED_OP_CODE EXECUTE_CPRED_OP_CODE64,1097 -#define EXPAND_OP_CODE EXPAND_OP_CODE65,1165 -#define FAIL_OPCODE FAIL_OPCODE66,1219 -#define INDEX_OPCODE INDEX_OPCODE67,1267 -#define LOCKPRED_OPCODE LOCKPRED_OPCODE68,1317 -#define ORLAST_OPCODE ORLAST_OPCODE69,1373 -#define UNDEF_OPCODE UNDEF_OPCODE70,1425 -#define RETRY_USERC_OPCODE RETRY_USERC_OPCODE71,1475 -#define EXECUTE_CPRED_OPCODE EXECUTE_CPRED_OPCODE72,1537 -#define NOfAtoms NOfAtoms74,1604 -#define AtomHashTableSize AtomHashTableSize75,1646 -#define WideAtomHashTableSize WideAtomHashTableSize76,1706 -#define NOfWideAtoms NOfWideAtoms77,1774 -#define INVISIBLECHAIN INVISIBLECHAIN78,1824 -#define WideHashChain WideHashChain79,1878 -#define HashChain HashChain80,1930 -#define TermDollarU TermDollarU84,1991 -#define TermAnswer TermAnswer86,2046 -#define USER_MODULE USER_MODULE88,2093 -#define IDB_MODULE IDB_MODULE89,2141 -#define ATTRIBUTES_MODULE ATTRIBUTES_MODULE90,2187 -#define CHARSIO_MODULE CHARSIO_MODULE91,2247 -#define CHTYPE_MODULE CHTYPE_MODULE92,2301 -#define TERMS_MODULE TERMS_MODULE93,2353 -#define SYSTEM_MODULE SYSTEM_MODULE94,2403 -#define READUTIL_MODULE READUTIL_MODULE95,2455 -#define HACKS_MODULE HACKS_MODULE96,2511 -#define ARG_MODULE ARG_MODULE97,2561 -#define GLOBALS_MODULE GLOBALS_MODULE98,2607 -#define SWI_MODULE SWI_MODULE99,2661 -#define DBLOAD_MODULE DBLOAD_MODULE100,2707 -#define RANGE_MODULE RANGE_MODULE101,2759 -#define ERROR_MODULE ERROR_MODULE102,2809 -#define CurrentModules CurrentModules106,2862 -#define HIDDEN_PREDICATES HIDDEN_PREDICATES111,2920 -#define GLOBAL_Flags GLOBAL_Flags115,2983 -#define GLOBAL_flagCount GLOBAL_flagCount116,3033 -#define Yap_ExecutionMode Yap_ExecutionMode118,3092 -#define PredsInHashTable PredsInHashTable120,3153 -#define PredHashTableSize PredHashTableSize121,3211 -#define PredHash PredHash122,3271 -#define PredHashRWLock PredHashRWLock124,3352 -#define CreepCode CreepCode127,3414 -#define UndefCode UndefCode128,3458 -#define SpyCode SpyCode129,3502 -#define PredFail PredFail130,3542 -#define PredTrue PredTrue131,3584 -#define WakeUpCode WakeUpCode133,3645 -#define PredDollarCatch PredDollarCatch135,3698 -#define PredGetwork PredGetwork137,3767 -#define PredGoalExpansion PredGoalExpansion139,3834 -#define PredHandleThrow PredHandleThrow140,3894 -#define PredIs PredIs141,3950 -#define PredLogUpdClause PredLogUpdClause142,3988 -#define PredLogUpdClauseErase PredLogUpdClauseErase143,4046 -#define PredLogUpdClause0 PredLogUpdClause0144,4114 -#define PredMetaCall PredMetaCall145,4174 -#define PredProtectStack PredProtectStack146,4224 -#define PredRecordedWithKey PredRecordedWithKey147,4282 -#define PredRestoreRegs PredRestoreRegs148,4346 -#define PredSafeCallCleanup PredSafeCallCleanup149,4402 -#define PredStaticClause PredStaticClause150,4466 -#define PredThrow PredThrow151,4524 -#define PredTraceMetaCall PredTraceMetaCall152,4568 -#define PredCommentHook PredCommentHook153,4628 -#define PredProcedure PredProcedure154,4684 -#define Yap_do_low_level_trace Yap_do_low_level_trace157,4761 -#define Yap_low_level_trace_lock Yap_low_level_trace_lock159,4870 -#define Yap_ClauseSpace Yap_ClauseSpace163,4959 -#define Yap_IndexSpace_Tree Yap_IndexSpace_Tree164,5015 -#define Yap_IndexSpace_EXT Yap_IndexSpace_EXT165,5079 -#define Yap_IndexSpace_SW Yap_IndexSpace_SW166,5141 -#define Yap_LUClauseSpace Yap_LUClauseSpace167,5201 -#define Yap_LUIndexSpace_Tree Yap_LUIndexSpace_Tree168,5261 -#define Yap_LUIndexSpace_CP Yap_LUIndexSpace_CP169,5329 -#define Yap_LUIndexSpace_EXT Yap_LUIndexSpace_EXT170,5393 -#define Yap_LUIndexSpace_SW Yap_LUIndexSpace_SW171,5459 -#define COMMA_CODE COMMA_CODE173,5524 -#define DUMMYCODE DUMMYCODE174,5570 -#define FAILCODE FAILCODE175,5614 -#define NOCODE NOCODE176,5656 -#define ENV_FOR_TRUSTFAIL ENV_FOR_TRUSTFAIL177,5694 -#define TRUSTFAILCODE TRUSTFAILCODE178,5754 -#define ENV_FOR_YESCODE ENV_FOR_YESCODE179,5806 -#define YESCODE YESCODE180,5862 -#define RTRYCODE RTRYCODE181,5902 -#define BEAM_RETRY_CODE BEAM_RETRY_CODE183,5956 -#define GETWORK GETWORK186,6043 -#define GETWORK_SEQ GETWORK_SEQ187,6083 -#define GETWORK_FIRST_TIME GETWORK_FIRST_TIME188,6131 -#define LOAD_ANSWER LOAD_ANSWER191,6227 -#define TRY_ANSWER TRY_ANSWER192,6275 -#define ANSWER_RESOLUTION ANSWER_RESOLUTION193,6321 -#define COMPLETION COMPLETION194,6381 -#define ANSWER_RESOLUTION_COMPLETION ANSWER_RESOLUTION_COMPLETION196,6459 -#define P_before_spy P_before_spy203,6604 -#define RETRY_C_RECORDEDP_CODE RETRY_C_RECORDEDP_CODE205,6655 -#define RETRY_C_RECORDED_K_CODE RETRY_C_RECORDED_K_CODE206,6725 -#define PROFILING PROFILING208,6798 -#define CALL_COUNTING CALL_COUNTING209,6842 -#define optimizer_on optimizer_on210,6894 -#define compile_mode compile_mode211,6944 -#define profiling profiling212,6994 -#define call_counting call_counting213,7038 -#define compile_arrays compile_arrays215,7091 -#define DBTermsListLock DBTermsListLock218,7185 -#define DBTermsList DBTermsList220,7248 -#define ExpandClausesFirst ExpandClausesFirst222,7297 -#define ExpandClausesLast ExpandClausesLast223,7359 -#define Yap_ExpandClauses Yap_ExpandClauses224,7419 -#define ExpandClausesListLock ExpandClausesListLock226,7518 -#define OpListLock OpListLock227,7586 -#define Yap_NewCps Yap_NewCps231,7653 -#define Yap_LiveCps Yap_LiveCps232,7699 -#define Yap_DirtyCps Yap_DirtyCps233,7747 -#define Yap_FreedCps Yap_FreedCps234,7797 -#define Yap_expand_clauses_sz Yap_expand_clauses_sz236,7854 -#define UdiControlBlocks UdiControlBlocks238,7923 -#define STATIC_PREDICATES_MARKED STATIC_PREDICATES_MARKED241,7983 -#define INT_KEYS INT_KEYS243,8058 -#define INT_LU_KEYS INT_LU_KEYS244,8100 -#define INT_BB_KEYS INT_BB_KEYS245,8148 -#define INT_KEYS_SIZE INT_KEYS_SIZE247,8197 -#define INT_KEYS_TIMESTAMP INT_KEYS_TIMESTAMP248,8249 -#define INT_BB_KEYS_SIZE INT_BB_KEYS_SIZE249,8311 -#define UPDATE_MODE UPDATE_MODE251,8370 -#define DBErasedMarker DBErasedMarker253,8419 -#define LogDBErasedMarker LogDBErasedMarker254,8473 -#define DeadStaticClauses DeadStaticClauses256,8534 -#define DeadMegaClauses DeadMegaClauses257,8594 -#define DeadStaticIndices DeadStaticIndices258,8650 -#define DBErasedList DBErasedList259,8710 -#define DBErasedIList DBErasedIList260,8760 -#define DeadStaticClausesLock DeadStaticClausesLock262,8851 -#define DeadMegaClausesLock DeadMegaClausesLock263,8919 -#define DeadStaticIndicesLock DeadStaticIndicesLock264,8983 -#define NUM_OF_ATTS NUM_OF_ATTS268,9078 -#define Yap_AttsSize Yap_AttsSize270,9127 -#define OpList OpList273,9185 -#define ForeignCodeLoaded ForeignCodeLoaded275,9224 -#define ForeignCodeBase ForeignCodeBase276,9284 -#define ForeignCodeTop ForeignCodeTop277,9340 -#define ForeignCodeMax ForeignCodeMax278,9394 -#define Yap_Records Yap_Records280,9449 -#define EmptyWakeups EmptyWakeups281,9497 -#define MaxEmptyWakeups MaxEmptyWakeups282,9547 -#define BlobTypes BlobTypes284,9604 -#define Blobs Blobs285,9648 -#define NOfBlobs NOfBlobs286,9684 -#define NOfBlobsMax NOfBlobsMax287,9726 -#define Blobs_Lock Blobs_Lock289,9813 - -H/generated/dlocals.h,24134 -#define LOCAL_c_input_stream LOCAL_c_input_stream8,148 -#define REMOTE_c_input_stream(REMOTE_c_input_stream9,200 -#define LOCAL_c_output_stream LOCAL_c_output_stream10,264 -#define REMOTE_c_output_stream(REMOTE_c_output_stream11,318 -#define LOCAL_c_error_stream LOCAL_c_error_stream12,384 -#define REMOTE_c_error_stream(REMOTE_c_error_stream13,436 -#define LOCAL_sockets_io LOCAL_sockets_io14,500 -#define REMOTE_sockets_io(REMOTE_sockets_io15,544 -#define LOCAL_within_print_message LOCAL_within_print_message16,600 -#define REMOTE_within_print_message(REMOTE_within_print_message17,664 -#define LOCAL_newline LOCAL_newline22,744 -#define REMOTE_newline(REMOTE_newline23,782 -#define LOCAL_AtPrompt LOCAL_AtPrompt24,832 -#define REMOTE_AtPrompt(REMOTE_AtPrompt25,872 -#define LOCAL_Prompt LOCAL_Prompt26,924 -#define REMOTE_Prompt(REMOTE_Prompt27,960 -#define LOCAL_encoding LOCAL_encoding28,1008 -#define REMOTE_encoding(REMOTE_encoding29,1048 -#define LOCAL_quasi_quotations LOCAL_quasi_quotations30,1100 -#define REMOTE_quasi_quotations(REMOTE_quasi_quotations31,1156 -#define LOCAL_default_priority LOCAL_default_priority32,1224 -#define REMOTE_default_priority(REMOTE_default_priority33,1280 -#define LOCAL_eot_before_eof LOCAL_eot_before_eof34,1348 -#define REMOTE_eot_before_eof(REMOTE_eot_before_eof35,1400 -#define LOCAL_max_depth LOCAL_max_depth36,1464 -#define REMOTE_max_depth(REMOTE_max_depth37,1506 -#define LOCAL_max_list LOCAL_max_list38,1560 -#define REMOTE_max_list(REMOTE_max_list39,1600 -#define LOCAL_max_write_args LOCAL_max_write_args40,1652 -#define REMOTE_max_write_args(REMOTE_max_write_args41,1704 -#define LOCAL_OldASP LOCAL_OldASP43,1769 -#define REMOTE_OldASP(REMOTE_OldASP44,1805 -#define LOCAL_OldLCL0 LOCAL_OldLCL045,1853 -#define REMOTE_OldLCL0(REMOTE_OldLCL046,1891 -#define LOCAL_OldTR LOCAL_OldTR47,1941 -#define REMOTE_OldTR(REMOTE_OldTR48,1975 -#define LOCAL_OldGlobalBase LOCAL_OldGlobalBase49,2021 -#define REMOTE_OldGlobalBase(REMOTE_OldGlobalBase50,2071 -#define LOCAL_OldH LOCAL_OldH51,2133 -#define REMOTE_OldH(REMOTE_OldH52,2165 -#define LOCAL_OldH0 LOCAL_OldH053,2209 -#define REMOTE_OldH0(REMOTE_OldH054,2243 -#define LOCAL_OldTrailBase LOCAL_OldTrailBase55,2289 -#define REMOTE_OldTrailBase(REMOTE_OldTrailBase56,2337 -#define LOCAL_OldTrailTop LOCAL_OldTrailTop57,2397 -#define REMOTE_OldTrailTop(REMOTE_OldTrailTop58,2443 -#define LOCAL_OldHeapBase LOCAL_OldHeapBase59,2501 -#define REMOTE_OldHeapBase(REMOTE_OldHeapBase60,2547 -#define LOCAL_OldHeapTop LOCAL_OldHeapTop61,2605 -#define REMOTE_OldHeapTop(REMOTE_OldHeapTop62,2649 -#define LOCAL_ClDiff LOCAL_ClDiff63,2705 -#define REMOTE_ClDiff(REMOTE_ClDiff64,2741 -#define LOCAL_GDiff LOCAL_GDiff65,2789 -#define REMOTE_GDiff(REMOTE_GDiff66,2823 -#define LOCAL_HDiff LOCAL_HDiff67,2869 -#define REMOTE_HDiff(REMOTE_HDiff68,2903 -#define LOCAL_GDiff0 LOCAL_GDiff069,2949 -#define REMOTE_GDiff0(REMOTE_GDiff070,2985 -#define LOCAL_GSplit LOCAL_GSplit71,3033 -#define REMOTE_GSplit(REMOTE_GSplit72,3069 -#define LOCAL_LDiff LOCAL_LDiff73,3117 -#define REMOTE_LDiff(REMOTE_LDiff74,3151 -#define LOCAL_TrDiff LOCAL_TrDiff75,3197 -#define REMOTE_TrDiff(REMOTE_TrDiff76,3233 -#define LOCAL_XDiff LOCAL_XDiff77,3281 -#define REMOTE_XDiff(REMOTE_XDiff78,3315 -#define LOCAL_DelayDiff LOCAL_DelayDiff79,3361 -#define REMOTE_DelayDiff(REMOTE_DelayDiff80,3403 -#define LOCAL_BaseDiff LOCAL_BaseDiff81,3457 -#define REMOTE_BaseDiff(REMOTE_BaseDiff82,3497 -#define LOCAL_ReductionsCounter LOCAL_ReductionsCounter84,3550 -#define REMOTE_ReductionsCounter(REMOTE_ReductionsCounter85,3608 -#define LOCAL_PredEntriesCounter LOCAL_PredEntriesCounter86,3678 -#define REMOTE_PredEntriesCounter(REMOTE_PredEntriesCounter87,3738 -#define LOCAL_RetriesCounter LOCAL_RetriesCounter88,3810 -#define REMOTE_RetriesCounter(REMOTE_RetriesCounter89,3862 -#define LOCAL_ReductionsCounterOn LOCAL_ReductionsCounterOn90,3926 -#define REMOTE_ReductionsCounterOn(REMOTE_ReductionsCounterOn91,3988 -#define LOCAL_PredEntriesCounterOn LOCAL_PredEntriesCounterOn92,4062 -#define REMOTE_PredEntriesCounterOn(REMOTE_PredEntriesCounterOn93,4126 -#define LOCAL_RetriesCounterOn LOCAL_RetriesCounterOn94,4202 -#define REMOTE_RetriesCounterOn(REMOTE_RetriesCounterOn95,4258 -#define LOCAL_ConsultSp LOCAL_ConsultSp98,4328 -#define REMOTE_ConsultSp(REMOTE_ConsultSp99,4370 -#define LOCAL_ConsultCapacity LOCAL_ConsultCapacity101,4425 -#define REMOTE_ConsultCapacity(REMOTE_ConsultCapacity102,4479 -#define LOCAL_ConsultBase LOCAL_ConsultBase104,4546 -#define REMOTE_ConsultBase(REMOTE_ConsultBase105,4592 -#define LOCAL_ConsultLow LOCAL_ConsultLow107,4651 -#define REMOTE_ConsultLow(REMOTE_ConsultLow108,4695 -#define LOCAL_VarNames LOCAL_VarNames109,4751 -#define REMOTE_VarNames(REMOTE_VarNames110,4791 -#define LOCAL_SourceFileName LOCAL_SourceFileName111,4843 -#define REMOTE_SourceFileName(REMOTE_SourceFileName112,4895 -#define LOCAL_SourceFileLineno LOCAL_SourceFileLineno113,4959 -#define REMOTE_SourceFileLineno(REMOTE_SourceFileLineno114,5015 -#define LOCAL_GlobalArena LOCAL_GlobalArena116,5084 -#define REMOTE_GlobalArena(REMOTE_GlobalArena117,5130 -#define LOCAL_GlobalArenaOverflows LOCAL_GlobalArenaOverflows118,5188 -#define REMOTE_GlobalArenaOverflows(REMOTE_GlobalArenaOverflows119,5252 -#define LOCAL_ArenaOverflows LOCAL_ArenaOverflows120,5328 -#define REMOTE_ArenaOverflows(REMOTE_ArenaOverflows121,5380 -#define LOCAL_DepthArenas LOCAL_DepthArenas122,5444 -#define REMOTE_DepthArenas(REMOTE_DepthArenas123,5490 -#define LOCAL_LastAssertedPred LOCAL_LastAssertedPred124,5548 -#define REMOTE_LastAssertedPred(REMOTE_LastAssertedPred125,5604 -#define LOCAL_TmpPred LOCAL_TmpPred126,5672 -#define REMOTE_TmpPred(REMOTE_TmpPred127,5710 -#define LOCAL_ScannerStack LOCAL_ScannerStack128,5760 -#define REMOTE_ScannerStack(REMOTE_ScannerStack129,5808 -#define LOCAL_ScannerExtraBlocks LOCAL_ScannerExtraBlocks130,5868 -#define REMOTE_ScannerExtraBlocks(REMOTE_ScannerExtraBlocks131,5928 -#define LOCAL_CBorder LOCAL_CBorder134,6002 -#define REMOTE_CBorder(REMOTE_CBorder135,6040 -#define LOCAL_MaxActiveSignals LOCAL_MaxActiveSignals137,6091 -#define REMOTE_MaxActiveSignals(REMOTE_MaxActiveSignals138,6147 -#define LOCAL_Signals LOCAL_Signals140,6216 -#define REMOTE_Signals(REMOTE_Signals141,6254 -#define LOCAL_IPredArity LOCAL_IPredArity143,6305 -#define REMOTE_IPredArity(REMOTE_IPredArity144,6349 -#define LOCAL_ProfEnd LOCAL_ProfEnd145,6405 -#define REMOTE_ProfEnd(REMOTE_ProfEnd146,6443 -#define LOCAL_DoingUndefp LOCAL_DoingUndefp147,6493 -#define REMOTE_DoingUndefp(REMOTE_DoingUndefp148,6539 -#define LOCAL_StartCharCount LOCAL_StartCharCount149,6597 -#define REMOTE_StartCharCount(REMOTE_StartCharCount150,6649 -#define LOCAL_StartLineCount LOCAL_StartLineCount151,6713 -#define REMOTE_StartLineCount(REMOTE_StartLineCount152,6765 -#define LOCAL_StartLinePos LOCAL_StartLinePos153,6829 -#define REMOTE_StartLinePos(REMOTE_StartLinePos154,6877 -#define LOCAL_ScratchPad LOCAL_ScratchPad155,6937 -#define REMOTE_ScratchPad(REMOTE_ScratchPad156,6981 -#define LOCAL_WokenGoals LOCAL_WokenGoals158,7057 -#define REMOTE_WokenGoals(REMOTE_WokenGoals159,7101 -#define LOCAL_AttsMutableList LOCAL_AttsMutableList160,7157 -#define REMOTE_AttsMutableList(REMOTE_AttsMutableList161,7211 -#define LOCAL_GcGeneration LOCAL_GcGeneration164,7285 -#define REMOTE_GcGeneration(REMOTE_GcGeneration165,7333 -#define LOCAL_GcPhase LOCAL_GcPhase166,7393 -#define REMOTE_GcPhase(REMOTE_GcPhase167,7431 -#define LOCAL_GcCurrentPhase LOCAL_GcCurrentPhase168,7481 -#define REMOTE_GcCurrentPhase(REMOTE_GcCurrentPhase169,7533 -#define LOCAL_GcCalls LOCAL_GcCalls170,7597 -#define REMOTE_GcCalls(REMOTE_GcCalls171,7635 -#define LOCAL_TotGcTime LOCAL_TotGcTime172,7685 -#define REMOTE_TotGcTime(REMOTE_TotGcTime173,7727 -#define LOCAL_TotGcRecovered LOCAL_TotGcRecovered174,7781 -#define REMOTE_TotGcRecovered(REMOTE_TotGcRecovered175,7833 -#define LOCAL_LastGcTime LOCAL_LastGcTime176,7897 -#define REMOTE_LastGcTime(REMOTE_LastGcTime177,7941 -#define LOCAL_LastSSTime LOCAL_LastSSTime178,7997 -#define REMOTE_LastSSTime(REMOTE_LastSSTime179,8041 -#define LOCAL_OpenArray LOCAL_OpenArray180,8097 -#define REMOTE_OpenArray(REMOTE_OpenArray181,8139 -#define LOCAL_total_marked LOCAL_total_marked183,8194 -#define REMOTE_total_marked(REMOTE_total_marked184,8242 -#define LOCAL_total_oldies LOCAL_total_oldies185,8302 -#define REMOTE_total_oldies(REMOTE_total_oldies186,8350 -#define LOCAL_current_B LOCAL_current_B187,8410 -#define REMOTE_current_B(REMOTE_current_B188,8452 -#define LOCAL_prev_HB LOCAL_prev_HB189,8506 -#define REMOTE_prev_HB(REMOTE_prev_HB190,8544 -#define LOCAL_HGEN LOCAL_HGEN191,8594 -#define REMOTE_HGEN(REMOTE_HGEN192,8626 -#define LOCAL_iptop LOCAL_iptop193,8670 -#define REMOTE_iptop(REMOTE_iptop194,8704 -#define LOCAL_bp LOCAL_bp196,8774 -#define REMOTE_bp(REMOTE_bp197,8802 -#define LOCAL_sTR LOCAL_sTR199,8849 -#define REMOTE_sTR(REMOTE_sTR200,8879 -#define LOCAL_sTR0 LOCAL_sTR0201,8921 -#define REMOTE_sTR0(REMOTE_sTR0202,8953 -#define LOCAL_new_TR LOCAL_new_TR203,8997 -#define REMOTE_new_TR(REMOTE_new_TR204,9033 -#define LOCAL_cont_top0 LOCAL_cont_top0205,9081 -#define REMOTE_cont_top0(REMOTE_cont_top0206,9123 -#define LOCAL_cont_top LOCAL_cont_top207,9177 -#define REMOTE_cont_top(REMOTE_cont_top208,9217 -#define LOCAL_discard_trail_entries LOCAL_discard_trail_entries209,9269 -#define REMOTE_discard_trail_entries(REMOTE_discard_trail_entries210,9335 -#define LOCAL_gc_ma_hash_table LOCAL_gc_ma_hash_table211,9413 -#define REMOTE_gc_ma_hash_table(REMOTE_gc_ma_hash_table212,9469 -#define LOCAL_gc_ma_h_top LOCAL_gc_ma_h_top213,9537 -#define REMOTE_gc_ma_h_top(REMOTE_gc_ma_h_top214,9583 -#define LOCAL_gc_ma_h_list LOCAL_gc_ma_h_list215,9641 -#define REMOTE_gc_ma_h_list(REMOTE_gc_ma_h_list216,9689 -#define LOCAL_gc_timestamp LOCAL_gc_timestamp217,9749 -#define REMOTE_gc_timestamp(REMOTE_gc_timestamp218,9797 -#define LOCAL_db_vec LOCAL_db_vec219,9857 -#define REMOTE_db_vec(REMOTE_db_vec220,9893 -#define LOCAL_db_vec0 LOCAL_db_vec0221,9941 -#define REMOTE_db_vec0(REMOTE_db_vec0222,9979 -#define LOCAL_db_root LOCAL_db_root223,10029 -#define REMOTE_db_root(REMOTE_db_root224,10067 -#define LOCAL_db_nil LOCAL_db_nil225,10117 -#define REMOTE_db_nil(REMOTE_db_nil226,10153 -#define LOCAL_gc_restore LOCAL_gc_restore227,10201 -#define REMOTE_gc_restore(REMOTE_gc_restore228,10245 -#define LOCAL_extra_gc_cells LOCAL_extra_gc_cells229,10301 -#define REMOTE_extra_gc_cells(REMOTE_extra_gc_cells230,10353 -#define LOCAL_extra_gc_cells_base LOCAL_extra_gc_cells_base231,10417 -#define REMOTE_extra_gc_cells_base(REMOTE_extra_gc_cells_base232,10479 -#define LOCAL_extra_gc_cells_top LOCAL_extra_gc_cells_top233,10553 -#define REMOTE_extra_gc_cells_top(REMOTE_extra_gc_cells_top234,10613 -#define LOCAL_extra_gc_cells_size LOCAL_extra_gc_cells_size235,10685 -#define REMOTE_extra_gc_cells_size(REMOTE_extra_gc_cells_size236,10747 -#define LOCAL_DynamicArrays LOCAL_DynamicArrays237,10821 -#define REMOTE_DynamicArrays(REMOTE_DynamicArrays238,10871 -#define LOCAL_StaticArrays LOCAL_StaticArrays239,10933 -#define REMOTE_StaticArrays(REMOTE_StaticArrays240,10981 -#define LOCAL_GlobalVariables LOCAL_GlobalVariables241,11041 -#define REMOTE_GlobalVariables(REMOTE_GlobalVariables242,11095 -#define LOCAL_AllowRestart LOCAL_AllowRestart243,11161 -#define REMOTE_AllowRestart(REMOTE_AllowRestart244,11209 -#define LOCAL_CMemFirstBlock LOCAL_CMemFirstBlock246,11270 -#define REMOTE_CMemFirstBlock(REMOTE_CMemFirstBlock247,11322 -#define LOCAL_CMemFirstBlockSz LOCAL_CMemFirstBlockSz248,11386 -#define REMOTE_CMemFirstBlockSz(REMOTE_CMemFirstBlockSz249,11442 -#define LOCAL_nperm LOCAL_nperm251,11511 -#define REMOTE_nperm(REMOTE_nperm252,11545 -#define LOCAL_jMP LOCAL_jMP253,11591 -#define REMOTE_jMP(REMOTE_jMP254,11621 -#define LOCAL_LabelFirstArray LOCAL_LabelFirstArray256,11664 -#define REMOTE_LabelFirstArray(REMOTE_LabelFirstArray257,11718 -#define LOCAL_LabelFirstArraySz LOCAL_LabelFirstArraySz258,11784 -#define REMOTE_LabelFirstArraySz(REMOTE_LabelFirstArraySz259,11842 -#define LOCAL_ThreadHandle LOCAL_ThreadHandle263,11929 -#define REMOTE_ThreadHandle(REMOTE_ThreadHandle264,11977 -#define LOCAL_optyap_data LOCAL_optyap_data267,12097 -#define REMOTE_optyap_data(REMOTE_optyap_data268,12143 -#define LOCAL_TabMode LOCAL_TabMode269,12201 -#define REMOTE_TabMode(REMOTE_TabMode270,12239 -#define LOCAL_InterruptsDisabled LOCAL_InterruptsDisabled272,12319 -#define REMOTE_InterruptsDisabled(REMOTE_InterruptsDisabled273,12379 -#define LOCAL_execution LOCAL_execution274,12451 -#define REMOTE_execution(REMOTE_execution275,12493 -#define LOCAL_total_choicepoints LOCAL_total_choicepoints277,12568 -#define REMOTE_total_choicepoints(REMOTE_total_choicepoints278,12628 -#define LOCAL_consult_level LOCAL_consult_level280,12707 -#define REMOTE_consult_level(REMOTE_consult_level281,12757 -#define LOCAL_LocalBase LOCAL_LocalBase283,12820 -#define REMOTE_LocalBase(REMOTE_LocalBase284,12862 -#define LOCAL_GlobalBase LOCAL_GlobalBase285,12916 -#define REMOTE_GlobalBase(REMOTE_GlobalBase286,12960 -#define LOCAL_TrailBase LOCAL_TrailBase287,13016 -#define REMOTE_TrailBase(REMOTE_TrailBase288,13058 -#define LOCAL_TrailTop LOCAL_TrailTop289,13112 -#define REMOTE_TrailTop(REMOTE_TrailTop290,13152 -#define LOCAL_ActiveError LOCAL_ActiveError292,13205 -#define REMOTE_ActiveError(REMOTE_ActiveError293,13251 -#define LOCAL_IOBotch LOCAL_IOBotch295,13310 -#define REMOTE_IOBotch(REMOTE_IOBotch296,13348 -#define LOCAL_tokptr LOCAL_tokptr297,13398 -#define REMOTE_tokptr(REMOTE_tokptr298,13434 -#define LOCAL_toktide LOCAL_toktide299,13482 -#define REMOTE_toktide(REMOTE_toktide300,13520 -#define LOCAL_VarTable LOCAL_VarTable301,13570 -#define REMOTE_VarTable(REMOTE_VarTable302,13610 -#define LOCAL_AnonVarTable LOCAL_AnonVarTable303,13662 -#define REMOTE_AnonVarTable(REMOTE_AnonVarTable304,13710 -#define LOCAL_Comments LOCAL_Comments305,13770 -#define REMOTE_Comments(REMOTE_Comments306,13810 -#define LOCAL_CommentsTail LOCAL_CommentsTail307,13862 -#define REMOTE_CommentsTail(REMOTE_CommentsTail308,13910 -#define LOCAL_CommentsNextChar LOCAL_CommentsNextChar309,13970 -#define REMOTE_CommentsNextChar(REMOTE_CommentsNextChar310,14026 -#define LOCAL_CommentsBuff LOCAL_CommentsBuff311,14094 -#define REMOTE_CommentsBuff(REMOTE_CommentsBuff312,14142 -#define LOCAL_CommentsBuffPos LOCAL_CommentsBuffPos313,14202 -#define REMOTE_CommentsBuffPos(REMOTE_CommentsBuffPos314,14256 -#define LOCAL_CommentsBuffLim LOCAL_CommentsBuffLim315,14322 -#define REMOTE_CommentsBuffLim(REMOTE_CommentsBuffLim316,14376 -#define LOCAL_RestartEnv LOCAL_RestartEnv317,14442 -#define REMOTE_RestartEnv(REMOTE_RestartEnv318,14486 -#define LOCAL_FileNameBuf LOCAL_FileNameBuf319,14542 -#define REMOTE_FileNameBuf(REMOTE_FileNameBuf320,14588 -#define LOCAL_FileNameBuf2 LOCAL_FileNameBuf2321,14646 -#define REMOTE_FileNameBuf2(REMOTE_FileNameBuf2322,14694 -#define LOCAL_TextBuffer LOCAL_TextBuffer323,14754 -#define REMOTE_TextBuffer(REMOTE_TextBuffer324,14798 -#define LOCAL_BreakLevel LOCAL_BreakLevel326,14855 -#define REMOTE_BreakLevel(REMOTE_BreakLevel327,14899 -#define LOCAL_PrologMode LOCAL_PrologMode328,14955 -#define REMOTE_PrologMode(REMOTE_PrologMode329,14999 -#define LOCAL_CritLocks LOCAL_CritLocks330,15055 -#define REMOTE_CritLocks(REMOTE_CritLocks331,15097 -#define LOCAL_Flags LOCAL_Flags333,15152 -#define REMOTE_Flags(REMOTE_Flags334,15186 -#define LOCAL_flagCount LOCAL_flagCount335,15232 -#define REMOTE_flagCount(REMOTE_flagCount336,15274 -#define LOCAL_opcount LOCAL_opcount340,15345 -#define REMOTE_opcount(REMOTE_opcount341,15383 -#define LOCAL_2opcount LOCAL_2opcount342,15433 -#define REMOTE_2opcount(REMOTE_2opcount343,15473 -#define LOCAL_s_dbg LOCAL_s_dbg346,15547 -#define REMOTE_s_dbg(REMOTE_s_dbg347,15581 -#define LOCAL_mathtt LOCAL_mathtt349,15628 -#define REMOTE_mathtt(REMOTE_mathtt350,15664 -#define LOCAL_mathstring LOCAL_mathstring351,15712 -#define REMOTE_mathstring(REMOTE_mathstring352,15756 -#define LOCAL_heap_overflows LOCAL_heap_overflows354,15813 -#define REMOTE_heap_overflows(REMOTE_heap_overflows355,15865 -#define LOCAL_total_heap_overflow_time LOCAL_total_heap_overflow_time356,15929 -#define REMOTE_total_heap_overflow_time(REMOTE_total_heap_overflow_time357,16001 -#define LOCAL_stack_overflows LOCAL_stack_overflows358,16085 -#define REMOTE_stack_overflows(REMOTE_stack_overflows359,16139 -#define LOCAL_total_stack_overflow_time LOCAL_total_stack_overflow_time360,16205 -#define REMOTE_total_stack_overflow_time(REMOTE_total_stack_overflow_time361,16279 -#define LOCAL_delay_overflows LOCAL_delay_overflows362,16365 -#define REMOTE_delay_overflows(REMOTE_delay_overflows363,16419 -#define LOCAL_total_delay_overflow_time LOCAL_total_delay_overflow_time364,16485 -#define REMOTE_total_delay_overflow_time(REMOTE_total_delay_overflow_time365,16559 -#define LOCAL_trail_overflows LOCAL_trail_overflows366,16645 -#define REMOTE_trail_overflows(REMOTE_trail_overflows367,16699 -#define LOCAL_total_trail_overflow_time LOCAL_total_trail_overflow_time368,16765 -#define REMOTE_total_trail_overflow_time(REMOTE_total_trail_overflow_time369,16839 -#define LOCAL_atom_table_overflows LOCAL_atom_table_overflows370,16925 -#define REMOTE_atom_table_overflows(REMOTE_atom_table_overflows371,16989 -#define LOCAL_total_atom_table_overflow_time LOCAL_total_atom_table_overflow_time372,17065 -#define REMOTE_total_atom_table_overflow_time(REMOTE_total_atom_table_overflow_time373,17149 -#define LOCAL_dl_errno LOCAL_dl_errno376,17263 -#define REMOTE_dl_errno(REMOTE_dl_errno377,17303 -#define LOCAL_do_trace_primitives LOCAL_do_trace_primitives381,17387 -#define REMOTE_do_trace_primitives(REMOTE_do_trace_primitives382,17449 -#define LOCAL_ExportAtomHashChain LOCAL_ExportAtomHashChain385,17531 -#define REMOTE_ExportAtomHashChain(REMOTE_ExportAtomHashChain386,17593 -#define LOCAL_ExportAtomHashTableSize LOCAL_ExportAtomHashTableSize387,17667 -#define REMOTE_ExportAtomHashTableSize(REMOTE_ExportAtomHashTableSize388,17737 -#define LOCAL_ExportAtomHashTableNum LOCAL_ExportAtomHashTableNum389,17819 -#define REMOTE_ExportAtomHashTableNum(REMOTE_ExportAtomHashTableNum390,17887 -#define LOCAL_ExportFunctorHashChain LOCAL_ExportFunctorHashChain391,17967 -#define REMOTE_ExportFunctorHashChain(REMOTE_ExportFunctorHashChain392,18035 -#define LOCAL_ExportFunctorHashTableSize LOCAL_ExportFunctorHashTableSize393,18115 -#define REMOTE_ExportFunctorHashTableSize(REMOTE_ExportFunctorHashTableSize394,18191 -#define LOCAL_ExportFunctorHashTableNum LOCAL_ExportFunctorHashTableNum395,18279 -#define REMOTE_ExportFunctorHashTableNum(REMOTE_ExportFunctorHashTableNum396,18353 -#define LOCAL_ExportPredEntryHashChain LOCAL_ExportPredEntryHashChain397,18439 -#define REMOTE_ExportPredEntryHashChain(REMOTE_ExportPredEntryHashChain398,18511 -#define LOCAL_ExportPredEntryHashTableSize LOCAL_ExportPredEntryHashTableSize399,18595 -#define REMOTE_ExportPredEntryHashTableSize(REMOTE_ExportPredEntryHashTableSize400,18675 -#define LOCAL_ExportPredEntryHashTableNum LOCAL_ExportPredEntryHashTableNum401,18767 -#define REMOTE_ExportPredEntryHashTableNum(REMOTE_ExportPredEntryHashTableNum402,18845 -#define LOCAL_ExportDBRefHashChain LOCAL_ExportDBRefHashChain403,18935 -#define REMOTE_ExportDBRefHashChain(REMOTE_ExportDBRefHashChain404,18999 -#define LOCAL_ExportDBRefHashTableSize LOCAL_ExportDBRefHashTableSize405,19075 -#define REMOTE_ExportDBRefHashTableSize(REMOTE_ExportDBRefHashTableSize406,19147 -#define LOCAL_ExportDBRefHashTableNum LOCAL_ExportDBRefHashTableNum407,19231 -#define REMOTE_ExportDBRefHashTableNum(REMOTE_ExportDBRefHashTableNum408,19301 -#define LOCAL_ImportAtomHashChain LOCAL_ImportAtomHashChain409,19383 -#define REMOTE_ImportAtomHashChain(REMOTE_ImportAtomHashChain410,19445 -#define LOCAL_ImportAtomHashTableSize LOCAL_ImportAtomHashTableSize411,19519 -#define REMOTE_ImportAtomHashTableSize(REMOTE_ImportAtomHashTableSize412,19589 -#define LOCAL_ImportAtomHashTableNum LOCAL_ImportAtomHashTableNum413,19671 -#define REMOTE_ImportAtomHashTableNum(REMOTE_ImportAtomHashTableNum414,19739 -#define LOCAL_ImportFunctorHashChain LOCAL_ImportFunctorHashChain415,19819 -#define REMOTE_ImportFunctorHashChain(REMOTE_ImportFunctorHashChain416,19887 -#define LOCAL_ImportFunctorHashTableSize LOCAL_ImportFunctorHashTableSize417,19967 -#define REMOTE_ImportFunctorHashTableSize(REMOTE_ImportFunctorHashTableSize418,20043 -#define LOCAL_ImportFunctorHashTableNum LOCAL_ImportFunctorHashTableNum419,20131 -#define REMOTE_ImportFunctorHashTableNum(REMOTE_ImportFunctorHashTableNum420,20205 -#define LOCAL_ImportOPCODEHashChain LOCAL_ImportOPCODEHashChain421,20291 -#define REMOTE_ImportOPCODEHashChain(REMOTE_ImportOPCODEHashChain422,20357 -#define LOCAL_ImportOPCODEHashTableSize LOCAL_ImportOPCODEHashTableSize423,20435 -#define REMOTE_ImportOPCODEHashTableSize(REMOTE_ImportOPCODEHashTableSize424,20509 -#define LOCAL_ImportPredEntryHashChain LOCAL_ImportPredEntryHashChain425,20595 -#define REMOTE_ImportPredEntryHashChain(REMOTE_ImportPredEntryHashChain426,20667 -#define LOCAL_ImportPredEntryHashTableSize LOCAL_ImportPredEntryHashTableSize427,20751 -#define REMOTE_ImportPredEntryHashTableSize(REMOTE_ImportPredEntryHashTableSize428,20831 -#define LOCAL_ImportPredEntryHashTableNum LOCAL_ImportPredEntryHashTableNum429,20923 -#define REMOTE_ImportPredEntryHashTableNum(REMOTE_ImportPredEntryHashTableNum430,21001 -#define LOCAL_ImportDBRefHashChain LOCAL_ImportDBRefHashChain431,21091 -#define REMOTE_ImportDBRefHashChain(REMOTE_ImportDBRefHashChain432,21155 -#define LOCAL_ImportDBRefHashTableSize LOCAL_ImportDBRefHashTableSize433,21231 -#define REMOTE_ImportDBRefHashTableSize(REMOTE_ImportDBRefHashTableSize434,21303 -#define LOCAL_ImportDBRefHashTableNum LOCAL_ImportDBRefHashTableNum435,21387 -#define REMOTE_ImportDBRefHashTableNum(REMOTE_ImportDBRefHashTableNum436,21457 -#define LOCAL_ImportFAILCODE LOCAL_ImportFAILCODE437,21539 -#define REMOTE_ImportFAILCODE(REMOTE_ImportFAILCODE438,21591 -#define LOCAL_ibnds LOCAL_ibnds440,21656 -#define REMOTE_ibnds(REMOTE_ibnds441,21690 -#define LOCAL_exo_it LOCAL_exo_it442,21736 -#define REMOTE_exo_it(REMOTE_exo_it443,21772 -#define LOCAL_exo_base LOCAL_exo_base444,21820 -#define REMOTE_exo_base(REMOTE_exo_base445,21860 -#define LOCAL_exo_arity LOCAL_exo_arity446,21912 -#define REMOTE_exo_arity(REMOTE_exo_arity447,21954 -#define LOCAL_exo_arg LOCAL_exo_arg448,22008 -#define REMOTE_exo_arg(REMOTE_exo_arg449,22046 -#define LOCAL_search_atoms LOCAL_search_atoms451,22097 -#define REMOTE_search_atoms(REMOTE_search_atoms452,22145 -#define LOCAL_SearchPreds LOCAL_SearchPreds453,22205 -#define REMOTE_SearchPreds(REMOTE_SearchPreds454,22251 -#define LOCAL_CurSlot LOCAL_CurSlot456,22310 -#define REMOTE_CurSlot(REMOTE_CurSlot457,22348 -#define LOCAL_FrozenHandles LOCAL_FrozenHandles458,22398 -#define REMOTE_FrozenHandles(REMOTE_FrozenHandles459,22448 -#define LOCAL_NSlots LOCAL_NSlots460,22510 -#define REMOTE_NSlots(REMOTE_NSlots461,22546 -#define LOCAL_SlotBase LOCAL_SlotBase462,22594 -#define REMOTE_SlotBase(REMOTE_SlotBase463,22634 -#define LOCAL_Mutexes LOCAL_Mutexes465,22687 -#define REMOTE_Mutexes(REMOTE_Mutexes466,22725 -#define LOCAL_SourceModule LOCAL_SourceModule467,22775 -#define REMOTE_SourceModule(REMOTE_SourceModule468,22823 -#define LOCAL_Including LOCAL_Including469,22883 -#define REMOTE_Including(REMOTE_Including470,22925 -#define LOCAL_MAX_SIZE LOCAL_MAX_SIZE471,22979 -#define REMOTE_MAX_SIZE(REMOTE_MAX_SIZE472,23019 -#define LOCAL_LastWTime LOCAL_LastWTime474,23072 -#define REMOTE_LastWTime(REMOTE_LastWTime475,23114 -#define LOCAL_shared LOCAL_shared476,23168 -#define REMOTE_shared(REMOTE_shared477,23204 - -H/generated/h0globals.h,4585 -EXTERNAL int GLOBAL_Initialised;GLOBAL_Initialised23,744 -EXTERNAL int GLOBAL_InitialisedFromPL;GLOBAL_InitialisedFromPL24,779 -EXTERNAL int GLOBAL_PL_Argc;GLOBAL_PL_Argc25,820 -EXTERNAL char** GLOBAL_PL_Argv;GLOBAL_PL_Argv26,851 -EXTERNAL bool GLOBAL_FAST_BOOT_FLAG;GLOBAL_FAST_BOOT_FLAG27,885 -EXTERNAL struct halt_hook* GLOBAL_HaltHooks;GLOBAL_HaltHooks29,938 -EXTERNAL fptr_t GLOBAL_JIT_finalizer;GLOBAL_JIT_finalizer30,987 -EXTERNAL int GLOBAL_AllowLocalExpansion;GLOBAL_AllowLocalExpansion32,1066 -EXTERNAL int GLOBAL_AllowGlobalExpansion;GLOBAL_AllowGlobalExpansion33,1109 -EXTERNAL int GLOBAL_AllowTrailExpansion;GLOBAL_AllowTrailExpansion34,1153 -EXTERNAL UInt GLOBAL_SizeOfOverflow;GLOBAL_SizeOfOverflow35,1196 -EXTERNAL UInt GLOBAL_AGcThreshold;GLOBAL_AGcThreshold37,1291 -EXTERNAL Agc_hook GLOBAL_AGCHook;GLOBAL_AGCHook38,1328 -EXTERNAL UInt GLOBAL_NOfThreads;GLOBAL_NOfThreads42,1451 -EXTERNAL UInt GLOBAL_NOfThreadsCreated;GLOBAL_NOfThreadsCreated44,1530 -EXTERNAL UInt GLOBAL_ThreadsTotalTime;GLOBAL_ThreadsTotalTime46,1610 -EXTERNAL lockvar GLOBAL_ThreadHandlesLock;GLOBAL_ThreadHandlesLock48,1668 -EXTERNAL lockvar GLOBAL_BGL;GLOBAL_BGL52,1792 -EXTERNAL struct global_optyap_data GLOBAL_optyap_data;GLOBAL_optyap_data55,1869 -EXTERNAL int GLOBAL_PrologShouldHandleInterrupts;GLOBAL_PrologShouldHandleInterrupts58,2008 -EXTERNAL pthread_t GLOBAL_master_thread;GLOBAL_master_thread61,2170 -EXTERNAL struct thread_mbox* GLOBAL_named_mboxes;GLOBAL_named_mboxes62,2213 -EXTERNAL lockvar GLOBAL_mboxq_lock;GLOBAL_mboxq_lock63,2267 -EXTERNAL UInt GLOBAL_mbox_count;GLOBAL_mbox_count64,2305 -EXTERNAL struct swi_mutex* GLOBAL_WithMutex;GLOBAL_WithMutex65,2340 -EXTERNAL struct stream_desc* GLOBAL_Stream;GLOBAL_Stream68,2421 -EXTERNAL lockvar GLOBAL_StreamDescLock;GLOBAL_StreamDescLock70,2506 -EXTERNAL char** GLOBAL_argv;GLOBAL_argv73,2590 -EXTERNAL int GLOBAL_argc;GLOBAL_argc74,2621 -EXTERNAL ext_op GLOBAL_attas[attvars_ext+1];GLOBAL_attas78,2746 -EXTERNAL int GLOBAL_agc_calls;GLOBAL_agc_calls81,2809 -EXTERNAL YAP_ULONG_LONG GLOBAL_agc_collected;GLOBAL_agc_collected82,2842 -EXTERNAL Int GLOBAL_tot_agc_time;GLOBAL_tot_agc_time84,2919 -EXTERNAL Int GLOBAL_tot_agc_recovered;GLOBAL_tot_agc_recovered86,3011 -EXTERNAL struct MMAP_ARRAY_BLOCK* GLOBAL_mmap_arrays;GLOBAL_mmap_arrays89,3077 -EXTERNAL char GLOBAL_Option[20];GLOBAL_Option93,3169 -EXTERNAL YP_FILE* GLOBAL_logfile;GLOBAL_logfile94,3204 -EXTERNAL char GLOBAL_Executable[YAP_FILENAME_MAX];GLOBAL_Executable100,3357 -EXTERNAL int GLOBAL_OpaqueHandlersCount;GLOBAL_OpaqueHandlersCount102,3417 -EXTERNAL struct opaque_handler_struct* GLOBAL_OpaqueHandlers;GLOBAL_OpaqueHandlers103,3460 -EXTERNAL char GLOBAL_pwd[YAP_FILENAME_MAX];GLOBAL_pwd105,3548 -EXTERNAL const char* GLOBAL_RestoreFile;GLOBAL_RestoreFile109,3654 -EXTERNAL Int GLOBAL_ProfCalls;GLOBAL_ProfCalls111,3709 -EXTERNAL Int GLOBAL_ProfGCs;GLOBAL_ProfGCs112,3742 -EXTERNAL Int GLOBAL_ProfHGrows;GLOBAL_ProfHGrows113,3773 -EXTERNAL Int GLOBAL_ProfSGrows;GLOBAL_ProfSGrows114,3807 -EXTERNAL Int GLOBAL_ProfMallocs;GLOBAL_ProfMallocs115,3841 -EXTERNAL Int GLOBAL_ProfIndexing;GLOBAL_ProfIndexing116,3876 -EXTERNAL Int GLOBAL_ProfOn;GLOBAL_ProfOn117,3912 -EXTERNAL Int GLOBAL_ProfOns;GLOBAL_ProfOns118,3942 -EXTERNAL struct RB_red_blk_node* GLOBAL_ProfilerRoot;GLOBAL_ProfilerRoot119,3973 -EXTERNAL struct RB_red_blk_node* GLOBAL_ProfilerNil;GLOBAL_ProfilerNil120,4031 -EXTERNAL char* GLOBAL_DIRNAME;GLOBAL_DIRNAME121,4088 -EXTERNAL int GLOBAL_ProfilerOn;GLOBAL_ProfilerOn123,4134 -EXTERNAL FILE* GLOBAL_FProf;GLOBAL_FProf124,4168 -EXTERNAL FILE* GLOBAL_FPreds;GLOBAL_FPreds125,4199 -EXTERNAL struct swi_mutex* GLOBAL_FreeMutexes;GLOBAL_FreeMutexes129,4276 -EXTERNAL struct swi_mutex* GLOBAL_mutex_backbone;GLOBAL_mutex_backbone130,4327 -EXTERNAL lockvar GLOBAL_MUT_ACCESS;GLOBAL_MUT_ACCESS131,4381 -EXTERNAL char* GLOBAL_Home;GLOBAL_Home133,4426 -EXTERNAL char* GLOBAL_CharConversionTable;GLOBAL_CharConversionTable135,4507 -EXTERNAL char* GLOBAL_CharConversionTable2;GLOBAL_CharConversionTable2136,4552 -EXTERNAL int GLOBAL_MaxPriority;GLOBAL_MaxPriority138,4617 -EXTERNAL struct AliasDescS* GLOBAL_FileAliases;GLOBAL_FileAliases140,4675 -EXTERNAL int GLOBAL_NOfFileAliases;GLOBAL_NOfFileAliases141,4727 -EXTERNAL int GLOBAL_SzOfFileAliases;GLOBAL_SzOfFileAliases142,4765 -EXTERNAL struct vfs* GLOBAL_VFS;GLOBAL_VFS143,4804 - -H/generated/h0struct.h,10244 -EXTERNAL UInt Yap_HoleSize;Yap_HoleSize33,912 -EXTERNAL struct malloc_state *Yap_av;Yap_av35,960 -EXTERNAL struct memory_hole Yap_MemoryHoles[MAX_DLMALLOC_HOLES];Yap_MemoryHoles36,1002 -EXTERNAL UInt Yap_NOfMemoryHoles;Yap_NOfMemoryHoles37,1071 -EXTERNAL lockvar DLMallocLock;DLMallocLock39,1146 -#define HeapUsed HeapUsed44,1269 -EXTERNAL Int NotHeapUsed;NotHeapUsed46,1314 -EXTERNAL Int HeapUsed;HeapUsed48,1348 -EXTERNAL Int HeapMax;HeapMax50,1380 -EXTERNAL ADDR HeapTop;HeapTop51,1404 -EXTERNAL ADDR HeapLim;HeapLim52,1429 -EXTERNAL struct FREEB *FreeBlocks;FreeBlocks53,1454 -EXTERNAL lockvar FreeBlocksLock;FreeBlocksLock55,1532 -EXTERNAL lockvar HeapUsedLock;HeapUsedLock56,1567 -EXTERNAL lockvar HeapTopLock;HeapTopLock57,1600 -EXTERNAL int HeapTopOwner;HeapTopOwner58,1632 -EXTERNAL UInt MaxStack;MaxStack60,1668 -EXTERNAL UInt MaxTrail;MaxTrail61,1694 -EXTERNAL op_entry *OP_RTABLE;OP_RTABLE65,1819 -EXTERNAL OPCODE EXECUTE_CPRED_OP_CODE;EXECUTE_CPRED_OP_CODE68,1880 -EXTERNAL OPCODE EXPAND_OP_CODE;EXPAND_OP_CODE69,1921 -EXTERNAL OPCODE FAIL_OPCODE;FAIL_OPCODE70,1955 -EXTERNAL OPCODE INDEX_OPCODE;INDEX_OPCODE71,1986 -EXTERNAL OPCODE LOCKPRED_OPCODE;LOCKPRED_OPCODE72,2018 -EXTERNAL OPCODE ORLAST_OPCODE;ORLAST_OPCODE73,2053 -EXTERNAL OPCODE UNDEF_OPCODE;UNDEF_OPCODE74,2086 -EXTERNAL OPCODE RETRY_USERC_OPCODE;RETRY_USERC_OPCODE75,2118 -EXTERNAL OPCODE EXECUTE_CPRED_OPCODE;EXECUTE_CPRED_OPCODE76,2156 -EXTERNAL UInt NOfAtoms;NOfAtoms78,2214 -EXTERNAL UInt AtomHashTableSize;AtomHashTableSize79,2240 -EXTERNAL UInt WideAtomHashTableSize;WideAtomHashTableSize80,2275 -EXTERNAL UInt NOfWideAtoms;NOfWideAtoms81,2314 -EXTERNAL AtomHashEntry INVISIBLECHAIN;INVISIBLECHAIN82,2344 -EXTERNAL AtomHashEntry *WideHashChain;WideHashChain83,2385 -EXTERNAL AtomHashEntry *HashChain;HashChain84,2426 -EXTERNAL Term TermDollarU;TermDollarU88,2523 -EXTERNAL Term TermAnswer;TermAnswer90,2559 -EXTERNAL Term USER_MODULE;USER_MODULE92,2597 -EXTERNAL Term IDB_MODULE;IDB_MODULE93,2626 -EXTERNAL Term ATTRIBUTES_MODULE;ATTRIBUTES_MODULE94,2654 -EXTERNAL Term CHARSIO_MODULE;CHARSIO_MODULE95,2689 -EXTERNAL Term CHTYPE_MODULE;CHTYPE_MODULE96,2721 -EXTERNAL Term TERMS_MODULE;TERMS_MODULE97,2752 -EXTERNAL Term SYSTEM_MODULE;SYSTEM_MODULE98,2782 -EXTERNAL Term READUTIL_MODULE;READUTIL_MODULE99,2813 -EXTERNAL Term HACKS_MODULE;HACKS_MODULE100,2846 -EXTERNAL Term ARG_MODULE;ARG_MODULE101,2876 -EXTERNAL Term GLOBALS_MODULE;GLOBALS_MODULE102,2904 -EXTERNAL Term SWI_MODULE;SWI_MODULE103,2936 -EXTERNAL Term DBLOAD_MODULE;DBLOAD_MODULE104,2964 -EXTERNAL Term RANGE_MODULE;RANGE_MODULE105,2995 -EXTERNAL Term ERROR_MODULE;ERROR_MODULE106,3025 -EXTERNAL struct mod_entry *CurrentModules;CurrentModules110,3076 -EXTERNAL Prop HIDDEN_PREDICATES;HIDDEN_PREDICATES115,3238 -EXTERNAL union flagTerm* GLOBAL_Flags;GLOBAL_Flags119,3368 -EXTERNAL UInt GLOBAL_flagCount;GLOBAL_flagCount120,3411 -EXTERNAL yap_exec_mode Yap_ExecutionMode;Yap_ExecutionMode122,3466 -EXTERNAL UInt PredsInHashTable;PredsInHashTable124,3570 -EXTERNAL uint64_t PredHashTableSize;PredHashTableSize125,3604 -EXTERNAL struct pred_entry **PredHash;PredHash126,3643 -EXTERNAL rwlock_t PredHashRWLock;PredHashRWLock128,3725 -EXTERNAL struct pred_entry *CreepCode;CreepCode131,3796 -EXTERNAL struct pred_entry *UndefCode;UndefCode132,3839 -EXTERNAL struct pred_entry *SpyCode;SpyCode133,3882 -EXTERNAL struct pred_entry *PredFail;PredFail134,3923 -EXTERNAL struct pred_entry *PredTrue;PredTrue135,3965 -EXTERNAL struct pred_entry *WakeUpCode;WakeUpCode137,4026 -EXTERNAL struct pred_entry *PredDollarCatch;PredDollarCatch139,4077 -EXTERNAL struct pred_entry *PredGetwork;PredGetwork141,4139 -EXTERNAL struct pred_entry *PredGoalExpansion;PredGoalExpansion143,4203 -EXTERNAL struct pred_entry *PredHandleThrow;PredHandleThrow144,4254 -EXTERNAL struct pred_entry *PredIs;PredIs145,4303 -EXTERNAL struct pred_entry *PredLogUpdClause;PredLogUpdClause146,4343 -EXTERNAL struct pred_entry *PredLogUpdClauseErase;PredLogUpdClauseErase147,4393 -EXTERNAL struct pred_entry *PredLogUpdClause0;PredLogUpdClause0148,4448 -EXTERNAL struct pred_entry *PredMetaCall;PredMetaCall149,4499 -EXTERNAL struct pred_entry *PredProtectStack;PredProtectStack150,4545 -EXTERNAL struct pred_entry *PredRecordedWithKey;PredRecordedWithKey151,4595 -EXTERNAL struct pred_entry *PredRestoreRegs;PredRestoreRegs152,4648 -EXTERNAL struct pred_entry *PredSafeCallCleanup;PredSafeCallCleanup153,4697 -EXTERNAL struct pred_entry *PredStaticClause;PredStaticClause154,4750 -EXTERNAL struct pred_entry *PredThrow;PredThrow155,4800 -EXTERNAL struct pred_entry *PredTraceMetaCall;PredTraceMetaCall156,4843 -EXTERNAL struct pred_entry *PredCommentHook;PredCommentHook157,4894 -EXTERNAL struct pred_entry *PredProcedure;PredProcedure158,4943 -EXTERNAL int Yap_do_low_level_trace;Yap_do_low_level_trace161,5037 -EXTERNAL lockvar Yap_low_level_trace_lock;Yap_low_level_trace_lock163,5115 -EXTERNAL UInt Yap_ClauseSpace;Yap_ClauseSpace167,5201 -EXTERNAL UInt Yap_IndexSpace_Tree;Yap_IndexSpace_Tree168,5234 -EXTERNAL UInt Yap_IndexSpace_EXT;Yap_IndexSpace_EXT169,5271 -EXTERNAL UInt Yap_IndexSpace_SW;Yap_IndexSpace_SW170,5307 -EXTERNAL UInt Yap_LUClauseSpace;Yap_LUClauseSpace171,5342 -EXTERNAL UInt Yap_LUIndexSpace_Tree;Yap_LUIndexSpace_Tree172,5377 -EXTERNAL UInt Yap_LUIndexSpace_CP;Yap_LUIndexSpace_CP173,5416 -EXTERNAL UInt Yap_LUIndexSpace_EXT;Yap_LUIndexSpace_EXT174,5453 -EXTERNAL UInt Yap_LUIndexSpace_SW;Yap_LUIndexSpace_SW175,5491 -EXTERNAL yamop COMMA_CODE[5];COMMA_CODE177,5613 -EXTERNAL yamop DUMMYCODE[1];DUMMYCODE178,5645 -EXTERNAL yamop FAILCODE[1];FAILCODE179,5676 -EXTERNAL yamop NOCODE[1];NOCODE180,5706 -EXTERNAL yamop ENV_FOR_TRUSTFAIL[2];ENV_FOR_TRUSTFAIL181,5734 -EXTERNAL yamop *TRUSTFAILCODE;TRUSTFAILCODE182,5773 -EXTERNAL yamop ENV_FOR_YESCODE[2];ENV_FOR_YESCODE183,5806 -EXTERNAL yamop *YESCODE;YESCODE184,5843 -EXTERNAL yamop RTRYCODE[1];RTRYCODE185,5870 -EXTERNAL yamop BEAM_RETRY_CODE[1];BEAM_RETRY_CODE187,5912 -EXTERNAL yamop GETWORK[1];GETWORK190,5980 -EXTERNAL yamop GETWORK_SEQ[1];GETWORK_SEQ191,6009 -EXTERNAL yamop GETWORK_FIRST_TIME[1];GETWORK_FIRST_TIME192,6042 -EXTERNAL yamop LOAD_ANSWER[1];LOAD_ANSWER195,6116 -EXTERNAL yamop TRY_ANSWER[1];TRY_ANSWER196,6149 -EXTERNAL yamop ANSWER_RESOLUTION[1];ANSWER_RESOLUTION197,6181 -EXTERNAL yamop COMPLETION[1];COMPLETION198,6220 -EXTERNAL yamop ANSWER_RESOLUTION_COMPLETION[1];ANSWER_RESOLUTION_COMPLETION200,6284 -EXTERNAL yamop *P_before_spy;P_before_spy207,6531 -EXTERNAL yamop *RETRY_C_RECORDEDP_CODE;RETRY_C_RECORDEDP_CODE209,6589 -EXTERNAL yamop *RETRY_C_RECORDED_K_CODE;RETRY_C_RECORDED_K_CODE210,6631 -EXTERNAL int PROFILING;PROFILING212,6695 -EXTERNAL int CALL_COUNTING;CALL_COUNTING213,6721 -EXTERNAL int optimizer_on;optimizer_on214,6751 -EXTERNAL int compile_mode;compile_mode215,6780 -EXTERNAL int profiling;profiling216,6809 -EXTERNAL int call_counting;call_counting217,6835 -EXTERNAL int compile_arrays;compile_arrays219,6946 -EXTERNAL lockvar DBTermsListLock;DBTermsListLock222,7057 -EXTERNAL struct dbterm_list *DBTermsList;DBTermsList224,7100 -EXTERNAL yamop *ExpandClausesFirst;ExpandClausesFirst226,7165 -EXTERNAL yamop *ExpandClausesLast;ExpandClausesLast227,7203 -EXTERNAL UInt Yap_ExpandClauses;Yap_ExpandClauses228,7240 -EXTERNAL lockvar ExpandClausesListLock;ExpandClausesListLock230,7314 -EXTERNAL lockvar OpListLock;OpListLock231,7356 -EXTERNAL UInt Yap_NewCps;Yap_NewCps235,7429 -EXTERNAL UInt Yap_LiveCps;Yap_LiveCps236,7457 -EXTERNAL UInt Yap_DirtyCps;Yap_DirtyCps237,7486 -EXTERNAL UInt Yap_FreedCps;Yap_FreedCps238,7516 -EXTERNAL UInt Yap_expand_clauses_sz;Yap_expand_clauses_sz240,7553 -EXTERNAL struct udi_info *UdiControlBlocks;UdiControlBlocks242,7610 -EXTERNAL Int STATIC_PREDICATES_MARKED;STATIC_PREDICATES_MARKED245,7720 -EXTERNAL Prop *INT_KEYS;INT_KEYS247,7785 -EXTERNAL Prop *INT_LU_KEYS;INT_LU_KEYS248,7812 -EXTERNAL Prop *INT_BB_KEYS;INT_BB_KEYS249,7842 -EXTERNAL UInt INT_KEYS_SIZE;INT_KEYS_SIZE251,7907 -EXTERNAL UInt INT_KEYS_TIMESTAMP;INT_KEYS_TIMESTAMP252,7938 -EXTERNAL UInt INT_BB_KEYS_SIZE;INT_BB_KEYS_SIZE253,7974 -EXTERNAL int UPDATE_MODE;UPDATE_MODE255,8041 -EXTERNAL struct DB_STRUCT *DBErasedMarker;DBErasedMarker257,8091 -EXTERNAL struct logic_upd_clause *LogDBErasedMarker;LogDBErasedMarker258,8138 -EXTERNAL struct static_clause *DeadStaticClauses;DeadStaticClauses260,8230 -EXTERNAL struct static_mega_clause *DeadMegaClauses;DeadMegaClauses261,8284 -EXTERNAL struct static_index *DeadStaticIndices;DeadStaticIndices262,8341 -EXTERNAL struct logic_upd_clause *DBErasedList;DBErasedList263,8394 -EXTERNAL struct logic_upd_index *DBErasedIList;DBErasedIList264,8446 -EXTERNAL lockvar DeadStaticClausesLock;DeadStaticClausesLock266,8537 -EXTERNAL lockvar DeadMegaClausesLock;DeadMegaClausesLock267,8579 -EXTERNAL lockvar DeadStaticIndicesLock;DeadStaticIndicesLock268,8619 -EXTERNAL int NUM_OF_ATTS;NUM_OF_ATTS272,8721 -EXTERNAL UInt Yap_AttsSize;Yap_AttsSize274,8787 -EXTERNAL struct operator_entry *OpList;OpList277,8840 -EXTERNAL struct ForeignLoadItem *ForeignCodeLoaded;ForeignCodeLoaded279,8910 -EXTERNAL ADDR ForeignCodeBase;ForeignCodeBase280,8966 -EXTERNAL ADDR ForeignCodeTop;ForeignCodeTop281,8999 -EXTERNAL ADDR ForeignCodeMax;ForeignCodeMax282,9031 -EXTERNAL struct record_list *Yap_Records;Yap_Records284,9084 -EXTERNAL Atom EmptyWakeups[MAX_EMPTY_WAKEUPS];EmptyWakeups285,9130 -EXTERNAL int MaxEmptyWakeups;MaxEmptyWakeups286,9179 -EXTERNAL struct YAP_blob_t *BlobTypes;BlobTypes288,9227 -EXTERNAL struct AtomEntryStruct *Blobs;Blobs289,9270 -EXTERNAL UInt NOfBlobs;NOfBlobs290,9314 -EXTERNAL UInt NOfBlobsMax;NOfBlobsMax291,9340 -EXTERNAL lockvar Blobs_Lock;Blobs_Lock293,9408 - -H/generated/hglobals.h,7377 -typedef struct global_data {global_data21,666 - int Initialised_;Initialised_23,772 - int Initialised_;global_data::Initialised_23,772 - int InitialisedFromPL_;InitialisedFromPL_24,793 - int InitialisedFromPL_;global_data::InitialisedFromPL_24,793 - int PL_Argc_;PL_Argc_25,820 - int PL_Argc_;global_data::PL_Argc_25,820 - char** PL_Argv_;PL_Argv_26,837 - char** PL_Argv_;global_data::PL_Argv_26,837 - bool FAST_BOOT_FLAG_;FAST_BOOT_FLAG_27,857 - bool FAST_BOOT_FLAG_;global_data::FAST_BOOT_FLAG_27,857 - struct halt_hook* HaltHooks_;HaltHooks_29,896 - struct halt_hook* HaltHooks_;global_data::HaltHooks_29,896 - fptr_t JIT_finalizer_;JIT_finalizer_30,929 - fptr_t JIT_finalizer_;global_data::JIT_finalizer_30,929 - int AllowLocalExpansion_;AllowLocalExpansion_32,994 - int AllowLocalExpansion_;global_data::AllowLocalExpansion_32,994 - int AllowGlobalExpansion_;AllowGlobalExpansion_33,1023 - int AllowGlobalExpansion_;global_data::AllowGlobalExpansion_33,1023 - int AllowTrailExpansion_;AllowTrailExpansion_34,1053 - int AllowTrailExpansion_;global_data::AllowTrailExpansion_34,1053 - UInt SizeOfOverflow_;SizeOfOverflow_35,1082 - UInt SizeOfOverflow_;global_data::SizeOfOverflow_35,1082 - UInt AGcThreshold_;AGcThreshold_37,1163 - UInt AGcThreshold_;global_data::AGcThreshold_37,1163 - Agc_hook AGCHook_;AGCHook_38,1186 - Agc_hook AGCHook_;global_data::AGCHook_38,1186 - UInt NOfThreads_;NOfThreads_42,1295 - UInt NOfThreads_;global_data::NOfThreads_42,1295 - UInt NOfThreadsCreated_;NOfThreadsCreated_44,1360 - UInt NOfThreadsCreated_;global_data::NOfThreadsCreated_44,1360 - UInt ThreadsTotalTime_;ThreadsTotalTime_46,1426 - UInt ThreadsTotalTime_;global_data::ThreadsTotalTime_46,1426 - lockvar ThreadHandlesLock_;ThreadHandlesLock_48,1470 - lockvar ThreadHandlesLock_;global_data::ThreadHandlesLock_48,1470 - lockvar BGL_;BGL_52,1580 - lockvar BGL_;global_data::BGL_52,1580 - struct global_optyap_data optyap_data_;optyap_data_55,1643 - struct global_optyap_data optyap_data_;global_data::optyap_data_55,1643 - int PrologShouldHandleInterrupts_;PrologShouldHandleInterrupts_58,1766 - int PrologShouldHandleInterrupts_;global_data::PrologShouldHandleInterrupts_58,1766 - pthread_t master_thread_;master_thread_61,1914 - pthread_t master_thread_;global_data::master_thread_61,1914 - struct thread_mbox* named_mboxes_;named_mboxes_62,1943 - struct thread_mbox* named_mboxes_;global_data::named_mboxes_62,1943 - lockvar mboxq_lock_;mboxq_lock_63,1981 - lockvar mboxq_lock_;global_data::mboxq_lock_63,1981 - UInt mbox_count_;mbox_count_64,2005 - UInt mbox_count_;global_data::mbox_count_64,2005 - struct swi_mutex* WithMutex_;WithMutex_65,2026 - struct swi_mutex* WithMutex_;global_data::WithMutex_65,2026 - struct stream_desc* Stream_;Stream_68,2091 - struct stream_desc* Stream_;global_data::Stream_68,2091 - lockvar StreamDescLock_;StreamDescLock_70,2160 - lockvar StreamDescLock_;global_data::StreamDescLock_70,2160 - char** argv_;argv_73,2230 - char** argv_;global_data::argv_73,2230 - int argc_;argc_74,2247 - int argc_;global_data::argc_74,2247 - ext_op attas_[attvars_ext+1];attas_78,2358 - ext_op attas_[attvars_ext+1];global_data::attas_78,2358 - int agc_calls_;agc_calls_81,2407 - int agc_calls_;global_data::agc_calls_81,2407 - YAP_ULONG_LONG agc_collected_;agc_collected_82,2426 - YAP_ULONG_LONG agc_collected_;global_data::agc_collected_82,2426 - Int tot_agc_time_;tot_agc_time_84,2489 - Int tot_agc_time_;global_data::tot_agc_time_84,2489 - Int tot_agc_recovered_;tot_agc_recovered_86,2567 - Int tot_agc_recovered_;global_data::tot_agc_recovered_86,2567 - struct MMAP_ARRAY_BLOCK* mmap_arrays_;mmap_arrays_89,2619 - struct MMAP_ARRAY_BLOCK* mmap_arrays_;global_data::mmap_arrays_89,2619 - char Option_[20];Option_93,2695 - char Option_[20];global_data::Option_93,2695 - YP_FILE* logfile_;logfile_94,2716 - YP_FILE* logfile_;global_data::logfile_94,2716 - char Executable_[YAP_FILENAME_MAX];Executable_100,2855 - char Executable_[YAP_FILENAME_MAX];global_data::Executable_100,2855 - int OpaqueHandlersCount_;OpaqueHandlersCount_102,2901 - int OpaqueHandlersCount_;global_data::OpaqueHandlersCount_102,2901 - struct opaque_handler_struct* OpaqueHandlers_;OpaqueHandlers_103,2930 - struct opaque_handler_struct* OpaqueHandlers_;global_data::OpaqueHandlers_103,2930 - char pwd_[YAP_FILENAME_MAX];pwd_105,3002 - char pwd_[YAP_FILENAME_MAX];global_data::pwd_105,3002 -const char* RestoreFile_;RestoreFile_109,3094 -const char* RestoreFile_;global_data::RestoreFile_109,3094 - Int ProfCalls_;ProfCalls_111,3131 - Int ProfCalls_;global_data::ProfCalls_111,3131 - Int ProfGCs_;ProfGCs_112,3150 - Int ProfGCs_;global_data::ProfGCs_112,3150 - Int ProfHGrows_;ProfHGrows_113,3167 - Int ProfHGrows_;global_data::ProfHGrows_113,3167 - Int ProfSGrows_;ProfSGrows_114,3187 - Int ProfSGrows_;global_data::ProfSGrows_114,3187 - Int ProfMallocs_;ProfMallocs_115,3207 - Int ProfMallocs_;global_data::ProfMallocs_115,3207 - Int ProfIndexing_;ProfIndexing_116,3228 - Int ProfIndexing_;global_data::ProfIndexing_116,3228 - Int ProfOn_;ProfOn_117,3250 - Int ProfOn_;global_data::ProfOn_117,3250 - Int ProfOns_;ProfOns_118,3266 - Int ProfOns_;global_data::ProfOns_118,3266 - struct RB_red_blk_node* ProfilerRoot_;ProfilerRoot_119,3283 - struct RB_red_blk_node* ProfilerRoot_;global_data::ProfilerRoot_119,3283 - struct RB_red_blk_node* ProfilerNil_;ProfilerNil_120,3325 - struct RB_red_blk_node* ProfilerNil_;global_data::ProfilerNil_120,3325 - char* DIRNAME_;DIRNAME_121,3366 - char* DIRNAME_;global_data::DIRNAME_121,3366 - int ProfilerOn_;ProfilerOn_123,3398 - int ProfilerOn_;global_data::ProfilerOn_123,3398 - FILE* FProf_;FProf_124,3418 - FILE* FProf_;global_data::FProf_124,3418 - FILE* FPreds_;FPreds_125,3435 - FILE* FPreds_;global_data::FPreds_125,3435 - struct swi_mutex* FreeMutexes_;FreeMutexes_129,3498 - struct swi_mutex* FreeMutexes_;global_data::FreeMutexes_129,3498 - struct swi_mutex* mutex_backbone_;mutex_backbone_130,3533 - struct swi_mutex* mutex_backbone_;global_data::mutex_backbone_130,3533 - lockvar MUT_ACCESS_;MUT_ACCESS_131,3571 - lockvar MUT_ACCESS_;global_data::MUT_ACCESS_131,3571 - char* Home_;Home_133,3602 - char* Home_;global_data::Home_133,3602 - char* CharConversionTable_;CharConversionTable_135,3669 - char* CharConversionTable_;global_data::CharConversionTable_135,3669 - char* CharConversionTable2_;CharConversionTable2_136,3700 - char* CharConversionTable2_;global_data::CharConversionTable2_136,3700 - int MaxPriority_;MaxPriority_138,3751 - int MaxPriority_;global_data::MaxPriority_138,3751 - struct AliasDescS* FileAliases_;FileAliases_140,3795 - struct AliasDescS* FileAliases_;global_data::FileAliases_140,3795 - int NOfFileAliases_;NOfFileAliases_141,3831 - int NOfFileAliases_;global_data::NOfFileAliases_141,3831 - int SzOfFileAliases_;SzOfFileAliases_142,3855 - int SzOfFileAliases_;global_data::SzOfFileAliases_142,3855 - struct vfs* VFS_;VFS_143,3880 - struct vfs* VFS_;global_data::VFS_143,3880 -} w_shared;w_shared144,3901 - -H/generated/hlocals.h,24315 -typedef struct worker_local {worker_local6,206 - int c_input_stream_;c_input_stream_8,247 - int c_input_stream_;worker_local::c_input_stream_8,247 - int c_output_stream_;c_output_stream_9,271 - int c_output_stream_;worker_local::c_output_stream_9,271 - int c_error_stream_;c_error_stream_10,296 - int c_error_stream_;worker_local::c_error_stream_10,296 - bool sockets_io_;sockets_io_11,320 - bool sockets_io_;worker_local::sockets_io_11,320 - bool within_print_message_;within_print_message_12,341 - bool within_print_message_;worker_local::within_print_message_12,341 - bool newline_;newline_17,516 - bool newline_;worker_local::newline_17,516 - Atom AtPrompt_;AtPrompt_18,534 - Atom AtPrompt_;worker_local::AtPrompt_18,534 - char Prompt_[MAX_PROMPT+1];Prompt_19,553 - char Prompt_[MAX_PROMPT+1];worker_local::Prompt_19,553 - encoding_t encoding_;encoding_20,584 - encoding_t encoding_;worker_local::encoding_20,584 - bool quasi_quotations_;quasi_quotations_21,609 - bool quasi_quotations_;worker_local::quasi_quotations_21,609 - UInt default_priority_;default_priority_22,636 - UInt default_priority_;worker_local::default_priority_22,636 - bool eot_before_eof_;eot_before_eof_23,663 - bool eot_before_eof_;worker_local::eot_before_eof_23,663 - UInt max_depth_;max_depth_24,688 - UInt max_depth_;worker_local::max_depth_24,688 - UInt max_list_;max_list_25,708 - UInt max_list_;worker_local::max_list_25,708 - UInt max_write_args_;max_write_args_26,727 - UInt max_write_args_;worker_local::max_write_args_26,727 - CELL* OldASP_;OldASP_28,768 - CELL* OldASP_;worker_local::OldASP_28,768 - CELL* OldLCL0_;OldLCL0_29,786 - CELL* OldLCL0_;worker_local::OldLCL0_29,786 - tr_fr_ptr OldTR_;OldTR_30,805 - tr_fr_ptr OldTR_;worker_local::OldTR_30,805 - CELL* OldGlobalBase_;OldGlobalBase_31,826 - CELL* OldGlobalBase_;worker_local::OldGlobalBase_31,826 - CELL* OldH_;OldH_32,851 - CELL* OldH_;worker_local::OldH_32,851 - CELL* OldH0_;OldH0_33,867 - CELL* OldH0_;worker_local::OldH0_33,867 - ADDR OldTrailBase_;OldTrailBase_34,884 - ADDR OldTrailBase_;worker_local::OldTrailBase_34,884 - ADDR OldTrailTop_;OldTrailTop_35,907 - ADDR OldTrailTop_;worker_local::OldTrailTop_35,907 - ADDR OldHeapBase_;OldHeapBase_36,929 - ADDR OldHeapBase_;worker_local::OldHeapBase_36,929 - ADDR OldHeapTop_;OldHeapTop_37,951 - ADDR OldHeapTop_;worker_local::OldHeapTop_37,951 - Int ClDiff_;ClDiff_38,972 - Int ClDiff_;worker_local::ClDiff_38,972 - Int GDiff_;GDiff_39,988 - Int GDiff_;worker_local::GDiff_39,988 - Int HDiff_;HDiff_40,1003 - Int HDiff_;worker_local::HDiff_40,1003 - Int GDiff0_;GDiff0_41,1018 - Int GDiff0_;worker_local::GDiff0_41,1018 - CELL* GSplit_;GSplit_42,1034 - CELL* GSplit_;worker_local::GSplit_42,1034 - Int LDiff_;LDiff_43,1052 - Int LDiff_;worker_local::LDiff_43,1052 - Int TrDiff_;TrDiff_44,1067 - Int TrDiff_;worker_local::TrDiff_44,1067 - Int XDiff_;XDiff_45,1083 - Int XDiff_;worker_local::XDiff_45,1083 - Int DelayDiff_;DelayDiff_46,1098 - Int DelayDiff_;worker_local::DelayDiff_46,1098 - Int BaseDiff_;BaseDiff_47,1117 - Int BaseDiff_;worker_local::BaseDiff_47,1117 - YAP_ULONG_LONG ReductionsCounter_;ReductionsCounter_49,1157 - YAP_ULONG_LONG ReductionsCounter_;worker_local::ReductionsCounter_49,1157 - YAP_ULONG_LONG PredEntriesCounter_;PredEntriesCounter_50,1195 - YAP_ULONG_LONG PredEntriesCounter_;worker_local::PredEntriesCounter_50,1195 - YAP_ULONG_LONG RetriesCounter_;RetriesCounter_51,1234 - YAP_ULONG_LONG RetriesCounter_;worker_local::RetriesCounter_51,1234 - int ReductionsCounterOn_;ReductionsCounterOn_52,1269 - int ReductionsCounterOn_;worker_local::ReductionsCounterOn_52,1269 - int PredEntriesCounterOn_;PredEntriesCounterOn_53,1298 - int PredEntriesCounterOn_;worker_local::PredEntriesCounterOn_53,1298 - int RetriesCounterOn_;RetriesCounterOn_54,1328 - int RetriesCounterOn_;worker_local::RetriesCounterOn_54,1328 - union CONSULT_OBJ* ConsultSp_;ConsultSp_57,1414 - union CONSULT_OBJ* ConsultSp_;worker_local::ConsultSp_57,1414 - UInt ConsultCapacity_;ConsultCapacity_59,1503 - UInt ConsultCapacity_;worker_local::ConsultCapacity_59,1503 - union CONSULT_OBJ* ConsultBase_;ConsultBase_61,1557 - union CONSULT_OBJ* ConsultBase_;worker_local::ConsultBase_61,1557 - union CONSULT_OBJ* ConsultLow_;ConsultLow_63,1627 - union CONSULT_OBJ* ConsultLow_;worker_local::ConsultLow_63,1627 - Term VarNames_;VarNames_64,1662 - Term VarNames_;worker_local::VarNames_64,1662 - Atom SourceFileName_;SourceFileName_65,1681 - Atom SourceFileName_;worker_local::SourceFileName_65,1681 - UInt SourceFileLineno_;SourceFileLineno_66,1706 - UInt SourceFileLineno_;worker_local::SourceFileLineno_66,1706 - Term GlobalArena_;GlobalArena_68,1752 - Term GlobalArena_;worker_local::GlobalArena_68,1752 - UInt GlobalArenaOverflows_;GlobalArenaOverflows_69,1774 - UInt GlobalArenaOverflows_;worker_local::GlobalArenaOverflows_69,1774 - Int ArenaOverflows_;ArenaOverflows_70,1805 - Int ArenaOverflows_;worker_local::ArenaOverflows_70,1805 - Int DepthArenas_;DepthArenas_71,1829 - Int DepthArenas_;worker_local::DepthArenas_71,1829 - struct pred_entry* LastAssertedPred_;LastAssertedPred_72,1850 - struct pred_entry* LastAssertedPred_;worker_local::LastAssertedPred_72,1850 - struct pred_entry* TmpPred_;TmpPred_73,1891 - struct pred_entry* TmpPred_;worker_local::TmpPred_73,1891 - char* ScannerStack_;ScannerStack_74,1923 - char* ScannerStack_;worker_local::ScannerStack_74,1923 - struct scanner_extra_alloc* ScannerExtraBlocks_;ScannerExtraBlocks_75,1947 - struct scanner_extra_alloc* ScannerExtraBlocks_;worker_local::ScannerExtraBlocks_75,1947 - Int CBorder_;CBorder_78,2090 - Int CBorder_;worker_local::CBorder_78,2090 - UInt MaxActiveSignals_;MaxActiveSignals_80,2144 - UInt MaxActiveSignals_;worker_local::MaxActiveSignals_80,2144 - uint64_t Signals_;Signals_82,2195 - uint64_t Signals_;worker_local::Signals_82,2195 - UInt IPredArity_;IPredArity_84,2241 - UInt IPredArity_;worker_local::IPredArity_84,2241 - yamop* ProfEnd_;ProfEnd_85,2262 - yamop* ProfEnd_;worker_local::ProfEnd_85,2262 - int DoingUndefp_;DoingUndefp_86,2282 - int DoingUndefp_;worker_local::DoingUndefp_86,2282 - Int StartCharCount_;StartCharCount_87,2303 - Int StartCharCount_;worker_local::StartCharCount_87,2303 - Int StartLineCount_;StartLineCount_88,2327 - Int StartLineCount_;worker_local::StartLineCount_88,2327 - Int StartLinePos_;StartLinePos_89,2351 - Int StartLinePos_;worker_local::StartLinePos_89,2351 - scratch_block ScratchPad_;ScratchPad_90,2373 - scratch_block ScratchPad_;worker_local::ScratchPad_90,2373 - Term WokenGoals_;WokenGoals_92,2423 - Term WokenGoals_;worker_local::WokenGoals_92,2423 - Term AttsMutableList_;AttsMutableList_93,2444 - Term AttsMutableList_;worker_local::AttsMutableList_93,2444 - Term GcGeneration_;GcGeneration_96,2489 - Term GcGeneration_;worker_local::GcGeneration_96,2489 - Term GcPhase_;GcPhase_97,2512 - Term GcPhase_;worker_local::GcPhase_97,2512 - UInt GcCurrentPhase_;GcCurrentPhase_98,2530 - UInt GcCurrentPhase_;worker_local::GcCurrentPhase_98,2530 - UInt GcCalls_;GcCalls_99,2555 - UInt GcCalls_;worker_local::GcCalls_99,2555 - Int TotGcTime_;TotGcTime_100,2573 - Int TotGcTime_;worker_local::TotGcTime_100,2573 - YAP_ULONG_LONG TotGcRecovered_;TotGcRecovered_101,2592 - YAP_ULONG_LONG TotGcRecovered_;worker_local::TotGcRecovered_101,2592 - Int LastGcTime_;LastGcTime_102,2627 - Int LastGcTime_;worker_local::LastGcTime_102,2627 - Int LastSSTime_;LastSSTime_103,2647 - Int LastSSTime_;worker_local::LastSSTime_103,2647 - CELL* OpenArray_;OpenArray_104,2667 - CELL* OpenArray_;worker_local::OpenArray_104,2667 - Int total_marked_;total_marked_106,2709 - Int total_marked_;worker_local::total_marked_106,2709 - Int total_oldies_;total_oldies_107,2731 - Int total_oldies_;worker_local::total_oldies_107,2731 - struct choicept* current_B_;current_B_108,2753 - struct choicept* current_B_;worker_local::current_B_108,2753 - CELL* prev_HB_;prev_HB_109,2785 - CELL* prev_HB_;worker_local::prev_HB_109,2785 - CELL* HGEN_;HGEN_110,2804 - CELL* HGEN_;worker_local::HGEN_110,2804 - CELL** iptop_;iptop_111,2820 - CELL** iptop_;worker_local::iptop_111,2820 - char* bp_;bp_113,2862 - char* bp_;worker_local::bp_113,2862 - tr_fr_ptr sTR_;sTR_115,2883 - tr_fr_ptr sTR_;worker_local::sTR_115,2883 - tr_fr_ptr sTR0_;sTR0_116,2902 - tr_fr_ptr sTR0_;worker_local::sTR0_116,2902 - tr_fr_ptr new_TR_;new_TR_117,2922 - tr_fr_ptr new_TR_;worker_local::new_TR_117,2922 - struct gc_mark_continuation* cont_top0_;cont_top0_118,2944 - struct gc_mark_continuation* cont_top0_;worker_local::cont_top0_118,2944 - struct gc_mark_continuation* cont_top_;cont_top_119,2988 - struct gc_mark_continuation* cont_top_;worker_local::cont_top_119,2988 - int discard_trail_entries_;discard_trail_entries_120,3031 - int discard_trail_entries_;worker_local::discard_trail_entries_120,3031 - gc_ma_hash_entry gc_ma_hash_table_[GC_MAVARS_HASH_SIZE];gc_ma_hash_table_121,3062 - gc_ma_hash_entry gc_ma_hash_table_[GC_MAVARS_HASH_SIZE];worker_local::gc_ma_hash_table_121,3062 - gc_ma_hash_entry* gc_ma_h_top_;gc_ma_h_top_122,3122 - gc_ma_hash_entry* gc_ma_h_top_;worker_local::gc_ma_h_top_122,3122 - gc_ma_hash_entry* gc_ma_h_list_;gc_ma_h_list_123,3157 - gc_ma_hash_entry* gc_ma_h_list_;worker_local::gc_ma_h_list_123,3157 - UInt gc_timestamp_;gc_timestamp_124,3193 - UInt gc_timestamp_;worker_local::gc_timestamp_124,3193 - ADDR db_vec_;db_vec_125,3216 - ADDR db_vec_;worker_local::db_vec_125,3216 - ADDR db_vec0_;db_vec0_126,3233 - ADDR db_vec0_;worker_local::db_vec0_126,3233 - struct RB_red_blk_node* db_root_;db_root_127,3251 - struct RB_red_blk_node* db_root_;worker_local::db_root_127,3251 - struct RB_red_blk_node* db_nil_;db_nil_128,3288 - struct RB_red_blk_node* db_nil_;worker_local::db_nil_128,3288 - sigjmp_buf* gc_restore_;gc_restore_129,3324 - sigjmp_buf* gc_restore_;worker_local::gc_restore_129,3324 - CELL* extra_gc_cells_;extra_gc_cells_130,3352 - CELL* extra_gc_cells_;worker_local::extra_gc_cells_130,3352 - CELL* extra_gc_cells_base_;extra_gc_cells_base_131,3378 - CELL* extra_gc_cells_base_;worker_local::extra_gc_cells_base_131,3378 - CELL* extra_gc_cells_top_;extra_gc_cells_top_132,3409 - CELL* extra_gc_cells_top_;worker_local::extra_gc_cells_top_132,3409 - UInt extra_gc_cells_size_;extra_gc_cells_size_133,3439 - UInt extra_gc_cells_size_;worker_local::extra_gc_cells_size_133,3439 - struct array_entry* DynamicArrays_;DynamicArrays_134,3469 - struct array_entry* DynamicArrays_;worker_local::DynamicArrays_134,3469 - struct static_array_entry* StaticArrays_;StaticArrays_135,3508 - struct static_array_entry* StaticArrays_;worker_local::StaticArrays_135,3508 - struct global_entry* GlobalVariables_;GlobalVariables_136,3553 - struct global_entry* GlobalVariables_;worker_local::GlobalVariables_136,3553 - int AllowRestart_;AllowRestart_137,3595 - int AllowRestart_;worker_local::AllowRestart_137,3595 - struct mem_blk* CMemFirstBlock_;CMemFirstBlock_139,3685 - struct mem_blk* CMemFirstBlock_;worker_local::CMemFirstBlock_139,3685 - UInt CMemFirstBlockSz_;CMemFirstBlockSz_140,3721 - UInt CMemFirstBlockSz_;worker_local::CMemFirstBlockSz_140,3721 - int nperm_;nperm_142,3827 - int nperm_;worker_local::nperm_142,3827 - int jMP_;jMP_143,3842 - int jMP_;worker_local::jMP_143,3842 - Int* LabelFirstArray_;LabelFirstArray_145,3887 - Int* LabelFirstArray_;worker_local::LabelFirstArray_145,3887 - UInt LabelFirstArraySz_;LabelFirstArraySz_146,3913 - UInt LabelFirstArraySz_;worker_local::LabelFirstArraySz_146,3913 - struct thandle ThreadHandle_;ThreadHandle_150,4080 - struct thandle ThreadHandle_;worker_local::ThreadHandle_150,4080 - struct local_optyap_data optyap_data_;optyap_data_153,4173 - struct local_optyap_data optyap_data_;worker_local::optyap_data_153,4173 - UInt TabMode_;TabMode_154,4215 - UInt TabMode_;worker_local::TabMode_154,4215 - int InterruptsDisabled_;InterruptsDisabled_156,4263 - int InterruptsDisabled_;worker_local::InterruptsDisabled_156,4263 - struct open_query_struct* execution_;execution_157,4291 - struct open_query_struct* execution_;worker_local::execution_157,4291 - Int total_choicepoints_;total_choicepoints_159,4353 - Int total_choicepoints_;worker_local::total_choicepoints_159,4353 - int consult_level_;consult_level_161,4388 - int consult_level_;worker_local::consult_level_161,4388 - ADDR LocalBase_;LocalBase_163,4453 - ADDR LocalBase_;worker_local::LocalBase_163,4453 - ADDR GlobalBase_;GlobalBase_164,4473 - ADDR GlobalBase_;worker_local::GlobalBase_164,4473 - ADDR TrailBase_;TrailBase_165,4494 - ADDR TrailBase_;worker_local::TrailBase_165,4494 - ADDR TrailTop_;TrailTop_166,4514 - ADDR TrailTop_;worker_local::TrailTop_166,4514 - yap_error_descriptor_t* ActiveError_;ActiveError_168,4609 - yap_error_descriptor_t* ActiveError_;worker_local::ActiveError_168,4609 - jmp_buf* IOBotch_;IOBotch_170,4695 - jmp_buf* IOBotch_;worker_local::IOBotch_170,4695 - TokEntry* tokptr_;tokptr_171,4717 - TokEntry* tokptr_;worker_local::tokptr_171,4717 - TokEntry* toktide_;toktide_172,4739 - TokEntry* toktide_;worker_local::toktide_172,4739 - VarEntry* VarTable_;VarTable_173,4762 - VarEntry* VarTable_;worker_local::VarTable_173,4762 - VarEntry* AnonVarTable_;AnonVarTable_174,4786 - VarEntry* AnonVarTable_;worker_local::AnonVarTable_174,4786 - Term Comments_;Comments_175,4814 - Term Comments_;worker_local::Comments_175,4814 - CELL* CommentsTail_;CommentsTail_176,4833 - CELL* CommentsTail_;worker_local::CommentsTail_176,4833 - CELL* CommentsNextChar_;CommentsNextChar_177,4857 - CELL* CommentsNextChar_;worker_local::CommentsNextChar_177,4857 - wchar_t* CommentsBuff_;CommentsBuff_178,4885 - wchar_t* CommentsBuff_;worker_local::CommentsBuff_178,4885 - size_t CommentsBuffPos_;CommentsBuffPos_179,4912 - size_t CommentsBuffPos_;worker_local::CommentsBuffPos_179,4912 - size_t CommentsBuffLim_;CommentsBuffLim_180,4940 - size_t CommentsBuffLim_;worker_local::CommentsBuffLim_180,4940 - sigjmp_buf* RestartEnv_;RestartEnv_181,4968 - sigjmp_buf* RestartEnv_;worker_local::RestartEnv_181,4968 - char FileNameBuf_[YAP_FILENAME_MAX+1];FileNameBuf_182,4996 - char FileNameBuf_[YAP_FILENAME_MAX+1];worker_local::FileNameBuf_182,4996 - char FileNameBuf2_[YAP_FILENAME_MAX+1];FileNameBuf2_183,5038 - char FileNameBuf2_[YAP_FILENAME_MAX+1];worker_local::FileNameBuf2_183,5038 - struct TextBuffer_manager* TextBuffer_;TextBuffer_184,5081 - struct TextBuffer_manager* TextBuffer_;worker_local::TextBuffer_184,5081 - UInt BreakLevel_;BreakLevel_186,5140 - UInt BreakLevel_;worker_local::BreakLevel_186,5140 - Int PrologMode_;PrologMode_187,5161 - Int PrologMode_;worker_local::PrologMode_187,5161 - int CritLocks_;CritLocks_188,5181 - int CritLocks_;worker_local::CritLocks_188,5181 - union flagTerm* Flags_;Flags_190,5236 - union flagTerm* Flags_;worker_local::Flags_190,5236 - UInt flagCount_;flagCount_191,5263 - UInt flagCount_;worker_local::flagCount_191,5263 - YAP_ULONG_LONG opcount_[_std_top+1];opcount_195,5381 - YAP_ULONG_LONG opcount_[_std_top+1];worker_local::opcount_195,5381 - YAP_ULONG_LONG 2opcount[_std_top+1][_std_top+1]_;_196,5421 - YAP_ULONG_LONG 2opcount[_std_top+1][_std_top+1]_;worker_local::_196,5421 - struct db_globs* s_dbg_;s_dbg_199,5505 - struct db_globs* s_dbg_;worker_local::s_dbg_199,5505 - Term mathtt_;mathtt_201,5542 - Term mathtt_;worker_local::mathtt_201,5542 - char* mathstring_;mathstring_202,5559 - char* mathstring_;worker_local::mathstring_202,5559 - int heap_overflows_;heap_overflows_204,5590 - int heap_overflows_;worker_local::heap_overflows_204,5590 - Int total_heap_overflow_time_;total_heap_overflow_time_205,5614 - Int total_heap_overflow_time_;worker_local::total_heap_overflow_time_205,5614 - int stack_overflows_;stack_overflows_206,5648 - int stack_overflows_;worker_local::stack_overflows_206,5648 - Int total_stack_overflow_time_;total_stack_overflow_time_207,5673 - Int total_stack_overflow_time_;worker_local::total_stack_overflow_time_207,5673 - int delay_overflows_;delay_overflows_208,5708 - int delay_overflows_;worker_local::delay_overflows_208,5708 - Int total_delay_overflow_time_;total_delay_overflow_time_209,5733 - Int total_delay_overflow_time_;worker_local::total_delay_overflow_time_209,5733 - int trail_overflows_;trail_overflows_210,5768 - int trail_overflows_;worker_local::trail_overflows_210,5768 - Int total_trail_overflow_time_;total_trail_overflow_time_211,5793 - Int total_trail_overflow_time_;worker_local::total_trail_overflow_time_211,5793 - int atom_table_overflows_;atom_table_overflows_212,5828 - int atom_table_overflows_;worker_local::atom_table_overflows_212,5828 - Int total_atom_table_overflow_time_;total_atom_table_overflow_time_213,5858 - Int total_atom_table_overflow_time_;worker_local::total_atom_table_overflow_time_213,5858 - int dl_errno_;dl_errno_216,5927 - int dl_errno_;worker_local::dl_errno_216,5927 - int do_trace_primitives_;do_trace_primitives_220,5987 - int do_trace_primitives_;worker_local::do_trace_primitives_220,5987 - struct export_atom_hash_entry_struct *ExportAtomHashChain_;ExportAtomHashChain_223,6038 - struct export_atom_hash_entry_struct *ExportAtomHashChain_;worker_local::ExportAtomHashChain_223,6038 - UInt ExportAtomHashTableSize_;ExportAtomHashTableSize_224,6101 - UInt ExportAtomHashTableSize_;worker_local::ExportAtomHashTableSize_224,6101 - UInt ExportAtomHashTableNum_;ExportAtomHashTableNum_225,6135 - UInt ExportAtomHashTableNum_;worker_local::ExportAtomHashTableNum_225,6135 - struct export_functor_hash_entry_struct *ExportFunctorHashChain_;ExportFunctorHashChain_226,6168 - struct export_functor_hash_entry_struct *ExportFunctorHashChain_;worker_local::ExportFunctorHashChain_226,6168 - UInt ExportFunctorHashTableSize_;ExportFunctorHashTableSize_227,6237 - UInt ExportFunctorHashTableSize_;worker_local::ExportFunctorHashTableSize_227,6237 - UInt ExportFunctorHashTableNum_;ExportFunctorHashTableNum_228,6274 - UInt ExportFunctorHashTableNum_;worker_local::ExportFunctorHashTableNum_228,6274 - struct export_pred_entry_hash_entry_struct *ExportPredEntryHashChain_;ExportPredEntryHashChain_229,6310 - struct export_pred_entry_hash_entry_struct *ExportPredEntryHashChain_;worker_local::ExportPredEntryHashChain_229,6310 - UInt ExportPredEntryHashTableSize_;ExportPredEntryHashTableSize_230,6384 - UInt ExportPredEntryHashTableSize_;worker_local::ExportPredEntryHashTableSize_230,6384 - UInt ExportPredEntryHashTableNum_;ExportPredEntryHashTableNum_231,6423 - UInt ExportPredEntryHashTableNum_;worker_local::ExportPredEntryHashTableNum_231,6423 - struct export_dbref_hash_entry_struct *ExportDBRefHashChain_;ExportDBRefHashChain_232,6461 - struct export_dbref_hash_entry_struct *ExportDBRefHashChain_;worker_local::ExportDBRefHashChain_232,6461 - UInt ExportDBRefHashTableSize_;ExportDBRefHashTableSize_233,6526 - UInt ExportDBRefHashTableSize_;worker_local::ExportDBRefHashTableSize_233,6526 - UInt ExportDBRefHashTableNum_;ExportDBRefHashTableNum_234,6561 - UInt ExportDBRefHashTableNum_;worker_local::ExportDBRefHashTableNum_234,6561 - struct import_atom_hash_entry_struct **ImportAtomHashChain_;ImportAtomHashChain_235,6595 - struct import_atom_hash_entry_struct **ImportAtomHashChain_;worker_local::ImportAtomHashChain_235,6595 - UInt ImportAtomHashTableSize_;ImportAtomHashTableSize_236,6659 - UInt ImportAtomHashTableSize_;worker_local::ImportAtomHashTableSize_236,6659 - UInt ImportAtomHashTableNum_;ImportAtomHashTableNum_237,6693 - UInt ImportAtomHashTableNum_;worker_local::ImportAtomHashTableNum_237,6693 - struct import_functor_hash_entry_struct **ImportFunctorHashChain_;ImportFunctorHashChain_238,6726 - struct import_functor_hash_entry_struct **ImportFunctorHashChain_;worker_local::ImportFunctorHashChain_238,6726 - UInt ImportFunctorHashTableSize_;ImportFunctorHashTableSize_239,6796 - UInt ImportFunctorHashTableSize_;worker_local::ImportFunctorHashTableSize_239,6796 - UInt ImportFunctorHashTableNum_;ImportFunctorHashTableNum_240,6833 - UInt ImportFunctorHashTableNum_;worker_local::ImportFunctorHashTableNum_240,6833 - struct import_opcode_hash_entry_struct **ImportOPCODEHashChain_;ImportOPCODEHashChain_241,6869 - struct import_opcode_hash_entry_struct **ImportOPCODEHashChain_;worker_local::ImportOPCODEHashChain_241,6869 - UInt ImportOPCODEHashTableSize_;ImportOPCODEHashTableSize_242,6937 - UInt ImportOPCODEHashTableSize_;worker_local::ImportOPCODEHashTableSize_242,6937 - struct import_pred_entry_hash_entry_struct **ImportPredEntryHashChain_;ImportPredEntryHashChain_243,6973 - struct import_pred_entry_hash_entry_struct **ImportPredEntryHashChain_;worker_local::ImportPredEntryHashChain_243,6973 - UInt ImportPredEntryHashTableSize_;ImportPredEntryHashTableSize_244,7048 - UInt ImportPredEntryHashTableSize_;worker_local::ImportPredEntryHashTableSize_244,7048 - UInt ImportPredEntryHashTableNum_;ImportPredEntryHashTableNum_245,7087 - UInt ImportPredEntryHashTableNum_;worker_local::ImportPredEntryHashTableNum_245,7087 - struct import_dbref_hash_entry_struct **ImportDBRefHashChain_;ImportDBRefHashChain_246,7125 - struct import_dbref_hash_entry_struct **ImportDBRefHashChain_;worker_local::ImportDBRefHashChain_246,7125 - UInt ImportDBRefHashTableSize_;ImportDBRefHashTableSize_247,7191 - UInt ImportDBRefHashTableSize_;worker_local::ImportDBRefHashTableSize_247,7191 - UInt ImportDBRefHashTableNum_;ImportDBRefHashTableNum_248,7226 - UInt ImportDBRefHashTableNum_;worker_local::ImportDBRefHashTableNum_248,7226 - yamop *ImportFAILCODE_;ImportFAILCODE_249,7260 - yamop *ImportFAILCODE_;worker_local::ImportFAILCODE_249,7260 - UInt ibnds_[256];ibnds_251,7303 - UInt ibnds_[256];worker_local::ibnds_251,7303 - struct index_t* exo_it_;exo_it_252,7324 - struct index_t* exo_it_;worker_local::exo_it_252,7324 - CELL* exo_base_;exo_base_253,7352 - CELL* exo_base_;worker_local::exo_base_253,7352 - UInt exo_arity_;exo_arity_254,7372 - UInt exo_arity_;worker_local::exo_arity_254,7372 - UInt exo_arg_;exo_arg_255,7392 - UInt exo_arg_;worker_local::exo_arg_255,7392 - struct scan_atoms* search_atoms_;search_atoms_257,7429 - struct scan_atoms* search_atoms_;worker_local::search_atoms_257,7429 - struct pred_entry* SearchPreds_;SearchPreds_258,7466 - struct pred_entry* SearchPreds_;worker_local::SearchPreds_258,7466 - yhandle_t CurSlot_;CurSlot_260,7519 - yhandle_t CurSlot_;worker_local::CurSlot_260,7519 - yhandle_t FrozenHandles_;FrozenHandles_261,7542 - yhandle_t FrozenHandles_;worker_local::FrozenHandles_261,7542 - yhandle_t NSlots_;NSlots_262,7571 - yhandle_t NSlots_;worker_local::NSlots_262,7571 - CELL* SlotBase_;SlotBase_263,7593 - CELL* SlotBase_;worker_local::SlotBase_263,7593 - struct swi_mutex* Mutexes_;Mutexes_265,7624 - struct swi_mutex* Mutexes_;worker_local::Mutexes_265,7624 - Term SourceModule_;SourceModule_266,7655 - Term SourceModule_;worker_local::SourceModule_266,7655 - Term Including_;Including_267,7678 - Term Including_;worker_local::Including_267,7678 - size_t MAX_SIZE_;MAX_SIZE_268,7698 - size_t MAX_SIZE_;worker_local::MAX_SIZE_268,7698 - uint64_t LastWTime_;LastWTime_270,7748 - uint64_t LastWTime_;worker_local::LastWTime_270,7748 - void* shared_;shared_271,7772 - void* shared_;worker_local::shared_271,7772 -} w_local;w_local272,7790 - -H/generated/hstruct.h,9126 - UInt Yap_HoleSize_;Yap_HoleSize_33,910 - struct malloc_state *Yap_av_;Yap_av_35,951 - struct memory_hole Yap_MemoryHoles[MAX_DLMALLOC_HOLES]_;_36,984 - UInt Yap_NOfMemoryHoles_;Yap_NOfMemoryHoles_37,1044 - lockvar DLMallocLock_;DLMallocLock_39,1112 -#define HeapUsed HeapUsed44,1228 - Int NotHeapUsed_;NotHeapUsed_46,1273 - Int HeapUsed_;HeapUsed_48,1300 - Int HeapMax_;HeapMax_50,1325 - ADDR HeapTop_;HeapTop_51,1342 - ADDR HeapLim_;HeapLim_52,1360 - struct FREEB *FreeBlocks_;FreeBlocks_53,1378 - lockvar FreeBlocksLock_;FreeBlocksLock_55,1447 - lockvar HeapUsedLock_;HeapUsedLock_56,1475 - lockvar HeapTopLock_;HeapTopLock_57,1501 - int HeapTopOwner_;HeapTopOwner_58,1526 - UInt MaxStack_;MaxStack_60,1555 - UInt MaxTrail_;MaxTrail_61,1574 - op_entry *OP_RTABLE_;OP_RTABLE_65,1692 - OPCODE EXECUTE_CPRED_OP_CODE_;EXECUTE_CPRED_OP_CODE_68,1746 - OPCODE EXPAND_OP_CODE_;EXPAND_OP_CODE_69,1780 - OPCODE FAIL_OPCODE_;FAIL_OPCODE_70,1807 - OPCODE INDEX_OPCODE_;INDEX_OPCODE_71,1831 - OPCODE LOCKPRED_OPCODE_;LOCKPRED_OPCODE_72,1856 - OPCODE ORLAST_OPCODE_;ORLAST_OPCODE_73,1884 - OPCODE UNDEF_OPCODE_;UNDEF_OPCODE_74,1910 - OPCODE RETRY_USERC_OPCODE_;RETRY_USERC_OPCODE_75,1935 - OPCODE EXECUTE_CPRED_OPCODE_;EXECUTE_CPRED_OPCODE_76,1966 - UInt NOfAtoms_;NOfAtoms_78,2017 - UInt AtomHashTableSize_;AtomHashTableSize_79,2036 - UInt WideAtomHashTableSize_;WideAtomHashTableSize_80,2064 - UInt NOfWideAtoms_;NOfWideAtoms_81,2096 - AtomHashEntry INVISIBLECHAIN_;INVISIBLECHAIN_82,2119 - AtomHashEntry *WideHashChain_;WideHashChain_83,2153 - AtomHashEntry *HashChain_;HashChain_84,2187 - Term TermDollarU_;TermDollarU_88,2277 - Term TermAnswer_;TermAnswer_90,2306 - Term USER_MODULE_;USER_MODULE_92,2337 - Term IDB_MODULE_;IDB_MODULE_93,2359 - Term ATTRIBUTES_MODULE_;ATTRIBUTES_MODULE_94,2380 - Term CHARSIO_MODULE_;CHARSIO_MODULE_95,2408 - Term CHTYPE_MODULE_;CHTYPE_MODULE_96,2433 - Term TERMS_MODULE_;TERMS_MODULE_97,2457 - Term SYSTEM_MODULE_;SYSTEM_MODULE_98,2480 - Term READUTIL_MODULE_;READUTIL_MODULE_99,2504 - Term HACKS_MODULE_;HACKS_MODULE_100,2530 - Term ARG_MODULE_;ARG_MODULE_101,2553 - Term GLOBALS_MODULE_;GLOBALS_MODULE_102,2574 - Term SWI_MODULE_;SWI_MODULE_103,2599 - Term DBLOAD_MODULE_;DBLOAD_MODULE_104,2620 - Term RANGE_MODULE_;RANGE_MODULE_105,2644 - Term ERROR_MODULE_;ERROR_MODULE_106,2667 - struct mod_entry *CurrentModules_;CurrentModules_110,2711 - Prop HIDDEN_PREDICATES_;HIDDEN_PREDICATES_115,2864 - union flagTerm* GLOBAL_Flags_;GLOBAL_Flags_119,2987 - UInt GLOBAL_flagCount_;GLOBAL_flagCount_120,3021 - yap_exec_mode Yap_ExecutionMode_;Yap_ExecutionMode_122,3069 - UInt PredsInHashTable_;PredsInHashTable_124,3166 - uint64_t PredHashTableSize_;PredHashTableSize_125,3193 - struct pred_entry **PredHash_;PredHash_126,3225 - rwlock_t PredHashRWLock_;PredHashRWLock_128,3298 - struct pred_entry *CreepCode_;CreepCode_131,3362 - struct pred_entry *UndefCode_;UndefCode_132,3396 - struct pred_entry *SpyCode_;SpyCode_133,3430 - struct pred_entry *PredFail_;PredFail_134,3462 - struct pred_entry *PredTrue_;PredTrue_135,3495 - struct pred_entry *WakeUpCode_;WakeUpCode_137,3547 - struct pred_entry *PredDollarCatch_;PredDollarCatch_139,3589 - struct pred_entry *PredGetwork_;PredGetwork_141,3642 - struct pred_entry *PredGoalExpansion_;PredGoalExpansion_143,3697 - struct pred_entry *PredHandleThrow_;PredHandleThrow_144,3739 - struct pred_entry *PredIs_;PredIs_145,3779 - struct pred_entry *PredLogUpdClause_;PredLogUpdClause_146,3810 - struct pred_entry *PredLogUpdClauseErase_;PredLogUpdClauseErase_147,3851 - struct pred_entry *PredLogUpdClause0_;PredLogUpdClause0_148,3897 - struct pred_entry *PredMetaCall_;PredMetaCall_149,3939 - struct pred_entry *PredProtectStack_;PredProtectStack_150,3976 - struct pred_entry *PredRecordedWithKey_;PredRecordedWithKey_151,4017 - struct pred_entry *PredRestoreRegs_;PredRestoreRegs_152,4061 - struct pred_entry *PredSafeCallCleanup_;PredSafeCallCleanup_153,4101 - struct pred_entry *PredStaticClause_;PredStaticClause_154,4145 - struct pred_entry *PredThrow_;PredThrow_155,4186 - struct pred_entry *PredTraceMetaCall_;PredTraceMetaCall_156,4220 - struct pred_entry *PredCommentHook_;PredCommentHook_157,4262 - struct pred_entry *PredProcedure_;PredProcedure_158,4302 - int Yap_do_low_level_trace_;Yap_do_low_level_trace_161,4387 - lockvar Yap_low_level_trace_lock_;Yap_low_level_trace_lock_163,4458 - UInt Yap_ClauseSpace_;Yap_ClauseSpace_167,4537 - UInt Yap_IndexSpace_Tree_;Yap_IndexSpace_Tree_168,4563 - UInt Yap_IndexSpace_EXT_;Yap_IndexSpace_EXT_169,4593 - UInt Yap_IndexSpace_SW_;Yap_IndexSpace_SW_170,4622 - UInt Yap_LUClauseSpace_;Yap_LUClauseSpace_171,4650 - UInt Yap_LUIndexSpace_Tree_;Yap_LUIndexSpace_Tree_172,4678 - UInt Yap_LUIndexSpace_CP_;Yap_LUIndexSpace_CP_173,4710 - UInt Yap_LUIndexSpace_EXT_;Yap_LUIndexSpace_EXT_174,4740 - UInt Yap_LUIndexSpace_SW_;Yap_LUIndexSpace_SW_175,4771 - yamop COMMA_CODE_[5];COMMA_CODE_177,4886 - yamop DUMMYCODE_[1];DUMMYCODE_178,4911 - yamop FAILCODE_[1];FAILCODE_179,4935 - yamop NOCODE_[1];NOCODE_180,4958 - yamop ENV_FOR_TRUSTFAIL_[2];ENV_FOR_TRUSTFAIL_181,4979 - yamop *TRUSTFAILCODE_;TRUSTFAILCODE_182,5011 - yamop ENV_FOR_YESCODE_[2];ENV_FOR_YESCODE_183,5037 - yamop *YESCODE_;YESCODE_184,5067 - yamop RTRYCODE_[1];RTRYCODE_185,5087 - yamop BEAM_RETRY_CODE_[1];BEAM_RETRY_CODE_187,5122 - yamop GETWORK_[1];GETWORK_190,5183 - yamop GETWORK_SEQ_[1];GETWORK_SEQ_191,5205 - yamop GETWORK_FIRST_TIME_[1];GETWORK_FIRST_TIME_192,5231 - yamop LOAD_ANSWER_[1];LOAD_ANSWER_195,5298 - yamop TRY_ANSWER_[1];TRY_ANSWER_196,5324 - yamop ANSWER_RESOLUTION_[1];ANSWER_RESOLUTION_197,5349 - yamop COMPLETION_[1];COMPLETION_198,5381 - yamop ANSWER_RESOLUTION_COMPLETION_[1];ANSWER_RESOLUTION_COMPLETION_200,5438 - yamop *P_before_spy_;P_before_spy_207,5678 - yamop *RETRY_C_RECORDEDP_CODE_;RETRY_C_RECORDEDP_CODE_209,5729 - yamop *RETRY_C_RECORDED_K_CODE_;RETRY_C_RECORDED_K_CODE_210,5764 - int PROFILING_;PROFILING_212,5821 - int CALL_COUNTING_;CALL_COUNTING_213,5840 - int optimizer_on_;optimizer_on_214,5863 - int compile_mode_;compile_mode_215,5885 - int profiling_;profiling_216,5907 - int call_counting_;call_counting_217,5926 - int compile_arrays_;compile_arrays_219,6030 - lockvar DBTermsListLock_;DBTermsListLock_222,6134 - struct dbterm_list *DBTermsList_;DBTermsList_224,6170 - yamop *ExpandClausesFirst_;ExpandClausesFirst_226,6226 - yamop *ExpandClausesLast_;ExpandClausesLast_227,6257 - UInt Yap_ExpandClauses_;Yap_ExpandClauses_228,6287 - lockvar ExpandClausesListLock_;ExpandClausesListLock_230,6354 - lockvar OpListLock_;OpListLock_231,6389 - UInt Yap_NewCps_;Yap_NewCps_235,6455 - UInt Yap_LiveCps_;Yap_LiveCps_236,6476 - UInt Yap_DirtyCps_;Yap_DirtyCps_237,6498 - UInt Yap_FreedCps_;Yap_FreedCps_238,6521 - UInt Yap_expand_clauses_sz_;Yap_expand_clauses_sz_240,6551 - struct udi_info *UdiControlBlocks_;UdiControlBlocks_242,6601 - Int STATIC_PREDICATES_MARKED_;STATIC_PREDICATES_MARKED_245,6702 - Prop *INT_KEYS_;INT_KEYS_247,6760 - Prop *INT_LU_KEYS_;INT_LU_KEYS_248,6780 - Prop *INT_BB_KEYS_;INT_BB_KEYS_249,6803 - UInt INT_KEYS_SIZE_;INT_KEYS_SIZE_251,6861 - UInt INT_KEYS_TIMESTAMP_;INT_KEYS_TIMESTAMP_252,6885 - UInt INT_BB_KEYS_SIZE_;INT_BB_KEYS_SIZE_253,6914 - int UPDATE_MODE_;UPDATE_MODE_255,6974 - struct DB_STRUCT *DBErasedMarker_;DBErasedMarker_257,7017 - struct logic_upd_clause *LogDBErasedMarker_;LogDBErasedMarker_258,7055 - struct static_clause *DeadStaticClauses_;DeadStaticClauses_260,7138 - struct static_mega_clause *DeadMegaClauses_;DeadMegaClauses_261,7183 - struct static_index *DeadStaticIndices_;DeadStaticIndices_262,7231 - struct logic_upd_clause *DBErasedList_;DBErasedList_263,7275 - struct logic_upd_index *DBErasedIList_;DBErasedIList_264,7318 - lockvar DeadStaticClausesLock_;DeadStaticClausesLock_266,7400 - lockvar DeadMegaClausesLock_;DeadMegaClausesLock_267,7435 - lockvar DeadStaticIndicesLock_;DeadStaticIndicesLock_268,7468 - int NUM_OF_ATTS_;NUM_OF_ATTS_272,7563 - UInt Yap_AttsSize_;Yap_AttsSize_274,7622 - struct operator_entry *OpList_;OpList_277,7668 - struct ForeignLoadItem *ForeignCodeLoaded_;ForeignCodeLoaded_279,7729 - ADDR ForeignCodeBase_;ForeignCodeBase_280,7776 - ADDR ForeignCodeTop_;ForeignCodeTop_281,7802 - ADDR ForeignCodeMax_;ForeignCodeMax_282,7827 - struct record_list *Yap_Records_;Yap_Records_284,7873 - Atom EmptyWakeups_[MAX_EMPTY_WAKEUPS];EmptyWakeups_285,7910 - int MaxEmptyWakeups_;MaxEmptyWakeups_286,7952 - struct YAP_blob_t *BlobTypes_;BlobTypes_288,7993 - struct AtomEntryStruct *Blobs_;Blobs_289,8027 - UInt NOfBlobs_;NOfBlobs_290,8062 - UInt NOfBlobsMax_;NOfBlobsMax_291,8081 - lockvar Blobs_Lock_;Blobs_Lock_293,8142 - -H/generated/i0globals.h,0 - -H/generated/iatoms.h,0 - -H/generated/iglobals.h,49 -static void InitGlobal(void) {InitGlobal21,163 - -H/generated/ihstruct.h,744 - INIT_LOCK(DLMallocLock);DLMallocLock35,235 -#define HeapUsed HeapUsed40,352 - INIT_LOCK(FreeBlocksLock);FreeBlocksLock51,455 - INIT_LOCK(HeapUsedLock);HeapUsedLock52,484 - INIT_LOCK(HeapTopLock);HeapTopLock53,511 - Yap_InitFlags(true);true116,1956 - INIT_LOCK(Yap_low_level_trace_lock);Yap_low_level_trace_lock159,4266 - INIT_LOCK(DBTermsListLock);DBTermsListLock218,5876 - INIT_LOCK(ExpandClausesListLock);ExpandClausesListLock226,6057 - INIT_LOCK(OpListLock);OpListLock227,6093 - INIT_LOCK(DeadStaticClausesLock);DeadStaticClausesLock262,6759 - INIT_LOCK(DeadMegaClausesLock);DeadMegaClausesLock263,6795 - INIT_LOCK(DeadStaticIndicesLock);DeadStaticIndicesLock264,6829 - INIT_LOCK(Blobs_Lock);Blobs_Lock289,7224 - -H/generated/ilocals.h,51 -static void InitWorker(int wid) {InitWorker6,146 - -H/generated/ratoms.h,0 - -H/generated/rglobals.h,55 -static void RestoreGlobal(void) {RestoreGlobal21,166 - -H/generated/rhstruct.h,791 - REINIT_LOCK(DLMallocLock);DLMallocLock35,235 -#define HeapUsed HeapUsed40,354 - REINIT_LOCK(FreeBlocksLock);FreeBlocksLock51,457 - REINIT_LOCK(HeapUsedLock);HeapUsedLock52,488 - REINIT_LOCK(HeapTopLock);HeapTopLock53,517 - RestoreFlags(GLOBAL_flagCount);GLOBAL_flagCount116,2052 - REINIT_LOCK(Yap_low_level_trace_lock);Yap_low_level_trace_lock159,3451 - REINIT_LOCK(DBTermsListLock);DBTermsListLock218,4795 - REINIT_LOCK(ExpandClausesListLock);ExpandClausesListLock226,4923 - REINIT_LOCK(OpListLock);OpListLock227,4961 - REINIT_LOCK(DeadStaticClausesLock);DeadStaticClausesLock262,5362 - REINIT_LOCK(DeadMegaClausesLock);DeadMegaClausesLock263,5400 - REINIT_LOCK(DeadStaticIndicesLock);DeadStaticIndicesLock264,5436 - REINIT_LOCK(Blobs_Lock);Blobs_Lock289,5705 - -H/generated/rlocals.h,67 -static void RestoreWorker(int wid USES_REGS) {RestoreWorker6,146 - -H/generated/tatoms.h,59246 -X_API EXTERNAL Atom Atom3Dots;Atom3Dots5,140 -X_API EXTERNAL Atom AtomAbol;AtomAbol6,172 -X_API EXTERNAL Term TermAbol;TermAbol7,203 -X_API EXTERNAL Atom AtomAccess;AtomAccess8,234 -X_API EXTERNAL Term TermAccess;TermAccess9,267 -X_API EXTERNAL Atom AtomAfInet;AtomAfInet10,300 -X_API EXTERNAL Term TermAfInet;TermAfInet11,333 -X_API EXTERNAL Atom AtomAfLocal;AtomAfLocal12,366 -X_API EXTERNAL Term TermAfLocal;TermAfLocal13,400 -X_API EXTERNAL Atom AtomAfUnix;AtomAfUnix14,434 -X_API EXTERNAL Term TermAfUnix;TermAfUnix15,467 -X_API EXTERNAL Atom AtomAlarm;AtomAlarm16,500 -X_API EXTERNAL Term TermAlarm;TermAlarm17,532 -X_API EXTERNAL Atom AtomAlias;AtomAlias18,564 -X_API EXTERNAL Term TermAlias;TermAlias19,596 -X_API EXTERNAL Atom AtomAll;AtomAll20,628 -X_API EXTERNAL Term TermAll;TermAll21,658 -X_API EXTERNAL Atom AtomAltNot;AtomAltNot22,688 -X_API EXTERNAL Term TermAltNot;TermAltNot23,721 -X_API EXTERNAL Atom AtomAnswer;AtomAnswer24,754 -X_API EXTERNAL Term TermAnswer;TermAnswer25,787 -X_API EXTERNAL Atom AtomAny;AtomAny26,820 -X_API EXTERNAL Term TermAny;TermAny27,850 -X_API EXTERNAL Atom AtomAppend;AtomAppend28,880 -X_API EXTERNAL Term TermAppend;TermAppend29,913 -X_API EXTERNAL Atom AtomArg;AtomArg30,946 -X_API EXTERNAL Term TermArg;TermArg31,976 -X_API EXTERNAL Atom AtomArray;AtomArray32,1006 -X_API EXTERNAL Term TermArray;TermArray33,1038 -X_API EXTERNAL Atom AtomArrayAccess;AtomArrayAccess34,1070 -X_API EXTERNAL Term TermArrayAccess;TermArrayAccess35,1108 -X_API EXTERNAL Atom AtomArrayOverflow;AtomArrayOverflow36,1146 -X_API EXTERNAL Term TermArrayOverflow;TermArrayOverflow37,1186 -X_API EXTERNAL Atom AtomArrayType;AtomArrayType38,1226 -X_API EXTERNAL Term TermArrayType;TermArrayType39,1262 -X_API EXTERNAL Atom AtomArrow;AtomArrow40,1298 -X_API EXTERNAL Term TermArrow;TermArrow41,1330 -X_API EXTERNAL Atom AtomAttributedModule;AtomAttributedModule42,1362 -X_API EXTERNAL Term TermAttributedModule;TermAttributedModule43,1405 -X_API EXTERNAL Atom AtomDoubleArrow;AtomDoubleArrow44,1448 -X_API EXTERNAL Term TermDoubleArrow;TermDoubleArrow45,1486 -X_API EXTERNAL Atom AtomAssert;AtomAssert46,1524 -X_API EXTERNAL Term TermAssert;TermAssert47,1557 -X_API EXTERNAL Atom AtomBeginBracket;AtomBeginBracket48,1590 -X_API EXTERNAL Term TermBeginBracket;TermBeginBracket49,1629 -X_API EXTERNAL Atom AtomEndBracket;AtomEndBracket50,1668 -X_API EXTERNAL Term TermEndBracket;TermEndBracket51,1705 -X_API EXTERNAL Atom AtomBeginSquareBracket;AtomBeginSquareBracket52,1742 -X_API EXTERNAL Term TermBeginSquareBracket;TermBeginSquareBracket53,1787 -X_API EXTERNAL Atom AtomEndSquareBracket;AtomEndSquareBracket54,1832 -X_API EXTERNAL Term TermEndSquareBracket;TermEndSquareBracket55,1875 -X_API EXTERNAL Atom AtomBeginCurlyBracket;AtomBeginCurlyBracket56,1918 -X_API EXTERNAL Term TermBeginCurlyBracket;TermBeginCurlyBracket57,1962 -X_API EXTERNAL Atom AtomEndCurlyBracket;AtomEndCurlyBracket58,2006 -X_API EXTERNAL Term TermEndCurlyBracket;TermEndCurlyBracket59,2048 -X_API EXTERNAL Atom AtomEmptyBrackets;AtomEmptyBrackets60,2090 -X_API EXTERNAL Term TermEmptyBrackets;TermEmptyBrackets61,2130 -X_API EXTERNAL Atom AtomEmptySquareBrackets;AtomEmptySquareBrackets62,2170 -X_API EXTERNAL Term TermEmptySquareBrackets;TermEmptySquareBrackets63,2216 -X_API EXTERNAL Atom AtomAsserta;AtomAsserta64,2262 -X_API EXTERNAL Term TermAsserta;TermAsserta65,2296 -X_API EXTERNAL Atom AtomAssertaStatic;AtomAssertaStatic66,2330 -X_API EXTERNAL Term TermAssertaStatic;TermAssertaStatic67,2370 -X_API EXTERNAL Atom AtomAssertz;AtomAssertz68,2410 -X_API EXTERNAL Term TermAssertz;TermAssertz69,2444 -X_API EXTERNAL Atom AtomAssertzStatic;AtomAssertzStatic70,2478 -X_API EXTERNAL Term TermAssertzStatic;TermAssertzStatic71,2518 -X_API EXTERNAL Atom AtomAt;AtomAt72,2558 -X_API EXTERNAL Term TermAt;TermAt73,2587 -X_API EXTERNAL Atom AtomAtom;AtomAtom74,2616 -X_API EXTERNAL Term TermAtom;TermAtom75,2647 -X_API EXTERNAL Atom AtomAtomic;AtomAtomic76,2678 -X_API EXTERNAL Term TermAtomic;TermAtomic77,2711 -X_API EXTERNAL Atom AtomAtt;AtomAtt78,2744 -X_API EXTERNAL Term TermAtt;TermAtt79,2774 -X_API EXTERNAL Atom AtomAtt1;AtomAtt180,2804 -X_API EXTERNAL Term TermAtt1;TermAtt181,2835 -X_API EXTERNAL Atom AtomAttDo;AtomAttDo82,2866 -X_API EXTERNAL Term TermAttDo;TermAttDo83,2898 -X_API EXTERNAL Atom AtomAttributes;AtomAttributes84,2930 -X_API EXTERNAL Term TermAttributes;TermAttributes85,2967 -X_API EXTERNAL Atom AtomB;AtomB86,3004 -X_API EXTERNAL Term TermB;TermB87,3032 -X_API EXTERNAL Atom AtomBatched;AtomBatched88,3060 -X_API EXTERNAL Term TermBatched;TermBatched89,3094 -X_API EXTERNAL Atom AtomBetween;AtomBetween90,3128 -X_API EXTERNAL Term TermBetween;TermBetween91,3162 -X_API EXTERNAL Atom AtomBinary;AtomBinary92,3196 -X_API EXTERNAL Term TermBinary;TermBinary93,3229 -X_API EXTERNAL Atom AtomBigNum;AtomBigNum94,3262 -X_API EXTERNAL Term TermBigNum;TermBigNum95,3295 -X_API EXTERNAL Atom AtomBinaryStream;AtomBinaryStream96,3328 -X_API EXTERNAL Term TermBinaryStream;TermBinaryStream97,3367 -X_API EXTERNAL Atom AtomBoolean;AtomBoolean98,3406 -X_API EXTERNAL Term TermBoolean;TermBoolean99,3440 -X_API EXTERNAL Atom AtomBraces;AtomBraces100,3474 -X_API EXTERNAL Term TermBraces;TermBraces101,3507 -X_API EXTERNAL Atom AtomBreak;AtomBreak102,3540 -X_API EXTERNAL Term TermBreak;TermBreak103,3572 -X_API EXTERNAL Atom AtomByte;AtomByte104,3604 -X_API EXTERNAL Term TermByte;TermByte105,3635 -X_API EXTERNAL Atom AtomCArith;AtomCArith106,3666 -X_API EXTERNAL Term TermCArith;TermCArith107,3699 -X_API EXTERNAL Atom AtomCall;AtomCall108,3732 -X_API EXTERNAL Term TermCall;TermCall109,3763 -X_API EXTERNAL Atom AtomCallAndRetryCounter;AtomCallAndRetryCounter110,3794 -X_API EXTERNAL Term TermCallAndRetryCounter;TermCallAndRetryCounter111,3840 -X_API EXTERNAL Atom AtomCallCounter;AtomCallCounter112,3886 -X_API EXTERNAL Term TermCallCounter;TermCallCounter113,3924 -X_API EXTERNAL Atom AtomCallable;AtomCallable114,3962 -X_API EXTERNAL Term TermCallable;TermCallable115,3997 -X_API EXTERNAL Atom AtomCatch;AtomCatch116,4032 -X_API EXTERNAL Term TermCatch;TermCatch117,4064 -X_API EXTERNAL Atom AtomChangeModule;AtomChangeModule118,4096 -X_API EXTERNAL Term TermChangeModule;TermChangeModule119,4135 -X_API EXTERNAL Atom AtomChar;AtomChar120,4174 -X_API EXTERNAL Term TermChar;TermChar121,4205 -X_API EXTERNAL Atom AtomCharsio;AtomCharsio122,4236 -X_API EXTERNAL Term TermCharsio;TermCharsio123,4270 -X_API EXTERNAL Atom AtomCharacter;AtomCharacter124,4304 -X_API EXTERNAL Term TermCharacter;TermCharacter125,4340 -X_API EXTERNAL Atom AtomCharacterCode;AtomCharacterCode126,4376 -X_API EXTERNAL Term TermCharacterCode;TermCharacterCode127,4416 -X_API EXTERNAL Atom AtomChars;AtomChars128,4456 -X_API EXTERNAL Term TermChars;TermChars129,4488 -X_API EXTERNAL Atom AtomCharset;AtomCharset130,4520 -X_API EXTERNAL Term TermCharset;TermCharset131,4554 -X_API EXTERNAL Atom AtomChType;AtomChType132,4588 -X_API EXTERNAL Term TermChType;TermChType133,4621 -X_API EXTERNAL Atom AtomCleanCall;AtomCleanCall134,4654 -X_API EXTERNAL Term TermCleanCall;TermCleanCall135,4690 -X_API EXTERNAL Atom AtomClose;AtomClose136,4726 -X_API EXTERNAL Term TermClose;TermClose137,4758 -X_API EXTERNAL Atom AtomColon;AtomColon138,4790 -X_API EXTERNAL Term TermColon;TermColon139,4822 -X_API EXTERNAL Atom AtomCodeSpace;AtomCodeSpace140,4854 -X_API EXTERNAL Term TermCodeSpace;TermCodeSpace141,4890 -X_API EXTERNAL Atom AtomCodes;AtomCodes142,4926 -X_API EXTERNAL Term TermCodes;TermCodes143,4958 -X_API EXTERNAL Atom AtomCoInductive;AtomCoInductive144,4990 -X_API EXTERNAL Term TermCoInductive;TermCoInductive145,5028 -X_API EXTERNAL Atom AtomComma;AtomComma146,5066 -X_API EXTERNAL Term TermComma;TermComma147,5098 -X_API EXTERNAL Atom AtomCommentHook;AtomCommentHook148,5130 -X_API EXTERNAL Term TermCommentHook;TermCommentHook149,5168 -X_API EXTERNAL Atom AtomCompact;AtomCompact150,5206 -X_API EXTERNAL Term TermCompact;TermCompact151,5240 -X_API EXTERNAL Atom AtomCompound;AtomCompound152,5274 -X_API EXTERNAL Term TermCompound;TermCompound153,5309 -X_API EXTERNAL Atom AtomConsistencyError;AtomConsistencyError154,5344 -X_API EXTERNAL Term TermConsistencyError;TermConsistencyError155,5387 -X_API EXTERNAL Atom AtomConsult;AtomConsult156,5430 -X_API EXTERNAL Term TermConsult;TermConsult157,5464 -X_API EXTERNAL Atom AtomConsultOnBoot;AtomConsultOnBoot158,5498 -X_API EXTERNAL Term TermConsultOnBoot;TermConsultOnBoot159,5538 -X_API EXTERNAL Atom AtomContext;AtomContext160,5578 -X_API EXTERNAL Term TermContext;TermContext161,5612 -X_API EXTERNAL Atom AtomCputime;AtomCputime162,5646 -X_API EXTERNAL Term TermCputime;TermCputime163,5680 -X_API EXTERNAL Atom AtomCreate;AtomCreate164,5714 -X_API EXTERNAL Term TermCreate;TermCreate165,5747 -X_API EXTERNAL Atom AtomCreep;AtomCreep166,5780 -X_API EXTERNAL Term TermCreep;TermCreep167,5812 -X_API EXTERNAL Atom AtomCryptAtoms;AtomCryptAtoms168,5844 -X_API EXTERNAL Term TermCryptAtoms;TermCryptAtoms169,5881 -X_API EXTERNAL Atom AtomCurly;AtomCurly170,5918 -X_API EXTERNAL Term TermCurly;TermCurly171,5950 -X_API EXTERNAL Atom AtomCsult;AtomCsult172,5982 -X_API EXTERNAL Term TermCsult;TermCsult173,6014 -X_API EXTERNAL Atom AtomCurrentModule;AtomCurrentModule174,6046 -X_API EXTERNAL Term TermCurrentModule;TermCurrentModule175,6086 -X_API EXTERNAL Atom AtomCut;AtomCut176,6126 -X_API EXTERNAL Term TermCut;TermCut177,6156 -X_API EXTERNAL Atom AtomCutBy;AtomCutBy178,6186 -X_API EXTERNAL Term TermCutBy;TermCutBy179,6218 -X_API EXTERNAL Atom AtomDAbort;AtomDAbort180,6250 -X_API EXTERNAL Term TermDAbort;TermDAbort181,6283 -X_API EXTERNAL Atom AtomDBLoad;AtomDBLoad182,6316 -X_API EXTERNAL Term TermDBLoad;TermDBLoad183,6349 -X_API EXTERNAL Atom AtomDBREF;AtomDBREF184,6382 -X_API EXTERNAL Term TermDBREF;TermDBREF185,6414 -X_API EXTERNAL Atom AtomDBReference;AtomDBReference186,6446 -X_API EXTERNAL Term TermDBReference;TermDBReference187,6484 -X_API EXTERNAL Atom AtomDBTerm;AtomDBTerm188,6522 -X_API EXTERNAL Term TermDBTerm;TermDBTerm189,6555 -X_API EXTERNAL Atom AtomDBref;AtomDBref190,6588 -X_API EXTERNAL Term TermDBref;TermDBref191,6620 -X_API EXTERNAL Atom AtomDInteger;AtomDInteger192,6652 -X_API EXTERNAL Term TermDInteger;TermDInteger193,6687 -X_API EXTERNAL Atom AtomDebugMeta;AtomDebugMeta194,6722 -X_API EXTERNAL Term TermDebugMeta;TermDebugMeta195,6758 -X_API EXTERNAL Atom AtomDebuggerInput;AtomDebuggerInput196,6794 -X_API EXTERNAL Term TermDebuggerInput;TermDebuggerInput197,6834 -X_API EXTERNAL Atom AtomDec10;AtomDec10198,6874 -X_API EXTERNAL Term TermDec10;TermDec10199,6906 -X_API EXTERNAL Atom AtomDefault;AtomDefault200,6938 -X_API EXTERNAL Term TermDefault;TermDefault201,6972 -X_API EXTERNAL Atom AtomDevNull;AtomDevNull202,7006 -X_API EXTERNAL Term TermDevNull;TermDevNull203,7040 -X_API EXTERNAL Atom AtomDiff;AtomDiff204,7074 -X_API EXTERNAL Term TermDiff;TermDiff205,7105 -X_API EXTERNAL Atom AtomDirectory;AtomDirectory206,7136 -X_API EXTERNAL Term TermDirectory;TermDirectory207,7172 -X_API EXTERNAL Atom AtomDiscontiguous;AtomDiscontiguous208,7208 -X_API EXTERNAL Term TermDiscontiguous;TermDiscontiguous209,7248 -X_API EXTERNAL Atom AtomDiscontiguousWarnings;AtomDiscontiguousWarnings210,7288 -X_API EXTERNAL Term TermDiscontiguousWarnings;TermDiscontiguousWarnings211,7336 -X_API EXTERNAL Atom AtomDollar;AtomDollar212,7384 -X_API EXTERNAL Term TermDollar;TermDollar213,7417 -X_API EXTERNAL Atom AtomDoLogUpdClause;AtomDoLogUpdClause214,7450 -X_API EXTERNAL Term TermDoLogUpdClause;TermDoLogUpdClause215,7491 -X_API EXTERNAL Atom AtomDoLogUpdClause0;AtomDoLogUpdClause0216,7532 -X_API EXTERNAL Term TermDoLogUpdClause0;TermDoLogUpdClause0217,7574 -X_API EXTERNAL Atom AtomDoLogUpdClauseErase;AtomDoLogUpdClauseErase218,7616 -X_API EXTERNAL Term TermDoLogUpdClauseErase;TermDoLogUpdClauseErase219,7662 -X_API EXTERNAL Atom AtomDollarU;AtomDollarU220,7708 -X_API EXTERNAL Term TermDollarU;TermDollarU221,7742 -X_API EXTERNAL Atom AtomDollarUndef;AtomDollarUndef222,7776 -X_API EXTERNAL Term TermDollarUndef;TermDollarUndef223,7814 -X_API EXTERNAL Atom AtomDomainError;AtomDomainError224,7852 -X_API EXTERNAL Term TermDomainError;TermDomainError225,7890 -X_API EXTERNAL Atom AtomDoStaticClause;AtomDoStaticClause226,7928 -X_API EXTERNAL Term TermDoStaticClause;TermDoStaticClause227,7969 -X_API EXTERNAL Atom AtomDots;AtomDots228,8010 -X_API EXTERNAL Term TermDots;TermDots229,8041 -X_API EXTERNAL Atom AtomDOUBLE;AtomDOUBLE230,8072 -X_API EXTERNAL Term TermDOUBLE;TermDOUBLE231,8105 -X_API EXTERNAL Atom AtomDoubleSlash;AtomDoubleSlash232,8138 -X_API EXTERNAL Term TermDoubleSlash;TermDoubleSlash233,8176 -X_API EXTERNAL Atom AtomE;AtomE234,8214 -X_API EXTERNAL Term TermE;TermE235,8242 -X_API EXTERNAL Atom AtomEOFBeforeEOT;AtomEOFBeforeEOT236,8270 -X_API EXTERNAL Term TermEOFBeforeEOT;TermEOFBeforeEOT237,8309 -X_API EXTERNAL Atom AtomEQ;AtomEQ238,8348 -X_API EXTERNAL Term TermEQ;TermEQ239,8377 -X_API EXTERNAL Atom AtomEmptyAtom;AtomEmptyAtom240,8406 -X_API EXTERNAL Term TermEmptyAtom;TermEmptyAtom241,8442 -X_API EXTERNAL Atom AtomEncoding;AtomEncoding242,8478 -X_API EXTERNAL Term TermEncoding;TermEncoding243,8513 -X_API EXTERNAL Atom AtomEndOfStream;AtomEndOfStream244,8548 -X_API EXTERNAL Term TermEndOfStream;TermEndOfStream245,8586 -X_API EXTERNAL Atom AtomEof;AtomEof246,8624 -X_API EXTERNAL Term TermEof;TermEof247,8654 -X_API EXTERNAL Atom AtomEOfCode;AtomEOfCode248,8684 -X_API EXTERNAL Term TermEOfCode;TermEOfCode249,8718 -X_API EXTERNAL Atom AtomEq;AtomEq250,8752 -X_API EXTERNAL Term TermEq;TermEq251,8781 -X_API EXTERNAL Atom AtomError;AtomError252,8810 -X_API EXTERNAL Term TermError;TermError253,8842 -X_API EXTERNAL Atom AtomException;AtomException254,8874 -X_API EXTERNAL Term TermException;TermException255,8910 -X_API EXTERNAL Atom AtomExtensions;AtomExtensions256,8946 -X_API EXTERNAL Term TermExtensions;TermExtensions257,8983 -X_API EXTERNAL Atom AtomEvaluable;AtomEvaluable258,9020 -X_API EXTERNAL Term TermEvaluable;TermEvaluable259,9056 -X_API EXTERNAL Atom AtomEvaluationError;AtomEvaluationError260,9092 -X_API EXTERNAL Term TermEvaluationError;TermEvaluationError261,9134 -X_API EXTERNAL Atom AtomExecutable;AtomExecutable262,9176 -X_API EXTERNAL Term TermExecutable;TermExecutable263,9213 -X_API EXTERNAL Atom AtomExecute;AtomExecute264,9250 -X_API EXTERNAL Term TermExecute;TermExecute265,9284 -X_API EXTERNAL Atom AtomExecAnswers;AtomExecAnswers266,9318 -X_API EXTERNAL Term TermExecAnswers;TermExecAnswers267,9356 -X_API EXTERNAL Atom AtomExecuteInMod;AtomExecuteInMod268,9394 -X_API EXTERNAL Term TermExecuteInMod;TermExecuteInMod269,9433 -X_API EXTERNAL Atom AtomExecuteWithin;AtomExecuteWithin270,9472 -X_API EXTERNAL Term TermExecuteWithin;TermExecuteWithin271,9512 -X_API EXTERNAL Atom AtomExecuteWoMod;AtomExecuteWoMod272,9552 -X_API EXTERNAL Term TermExecuteWoMod;TermExecuteWoMod273,9591 -X_API EXTERNAL Atom AtomExist;AtomExist274,9630 -X_API EXTERNAL Term TermExist;TermExist275,9662 -X_API EXTERNAL Atom AtomExists;AtomExists276,9694 -X_API EXTERNAL Term TermExists;TermExists277,9727 -X_API EXTERNAL Atom AtomExit;AtomExit278,9760 -X_API EXTERNAL Term TermExit;TermExit279,9791 -X_API EXTERNAL Atom AtomExistenceError;AtomExistenceError280,9822 -X_API EXTERNAL Term TermExistenceError;TermExistenceError281,9863 -X_API EXTERNAL Atom AtomExoClause;AtomExoClause282,9904 -X_API EXTERNAL Term TermExoClause;TermExoClause283,9940 -X_API EXTERNAL Atom AtomExpectedNumber;AtomExpectedNumber284,9976 -X_API EXTERNAL Term TermExpectedNumber;TermExpectedNumber285,10017 -X_API EXTERNAL Atom AtomExpand;AtomExpand286,10058 -X_API EXTERNAL Term TermExpand;TermExpand287,10091 -X_API EXTERNAL Atom AtomExtendFileSearchPath;AtomExtendFileSearchPath288,10124 -X_API EXTERNAL Term TermExtendFileSearchPath;TermExtendFileSearchPath289,10171 -X_API EXTERNAL Atom AtomExtendsions;AtomExtendsions290,10218 -X_API EXTERNAL Term TermExtendsions;TermExtendsions291,10256 -X_API EXTERNAL Atom AtomFB;AtomFB292,10294 -X_API EXTERNAL Term TermFB;TermFB293,10323 -X_API EXTERNAL Atom AtomFail;AtomFail294,10352 -X_API EXTERNAL Term TermFail;TermFail295,10383 -X_API EXTERNAL Atom AtomFalse;AtomFalse296,10414 -X_API EXTERNAL Term TermFalse;TermFalse297,10446 -X_API EXTERNAL Atom AtomFast;AtomFast298,10478 -X_API EXTERNAL Term TermFast;TermFast299,10509 -X_API EXTERNAL Atom AtomFastFail;AtomFastFail300,10540 -X_API EXTERNAL Term TermFastFail;TermFastFail301,10575 -X_API EXTERNAL Atom AtomFileErrors;AtomFileErrors302,10610 -X_API EXTERNAL Term TermFileErrors;TermFileErrors303,10647 -X_API EXTERNAL Atom AtomFileerrors;AtomFileerrors304,10684 -X_API EXTERNAL Term TermFileerrors;TermFileerrors305,10721 -X_API EXTERNAL Atom AtomFileType;AtomFileType306,10758 -X_API EXTERNAL Term TermFileType;TermFileType307,10793 -X_API EXTERNAL Atom AtomFirst;AtomFirst308,10828 -X_API EXTERNAL Term TermFirst;TermFirst309,10860 -X_API EXTERNAL Atom AtomFloat;AtomFloat310,10892 -X_API EXTERNAL Term TermFloat;TermFloat311,10924 -X_API EXTERNAL Atom AtomFloatFormat;AtomFloatFormat312,10956 -X_API EXTERNAL Term TermFloatFormat;TermFloatFormat313,10994 -X_API EXTERNAL Atom AtomFloatOverflow;AtomFloatOverflow314,11032 -X_API EXTERNAL Term TermFloatOverflow;TermFloatOverflow315,11072 -X_API EXTERNAL Atom AtomFloatUnderflow;AtomFloatUnderflow316,11112 -X_API EXTERNAL Term TermFloatUnderflow;TermFloatUnderflow317,11153 -X_API EXTERNAL Atom AtomFormat;AtomFormat318,11194 -X_API EXTERNAL Term TermFormat;TermFormat319,11227 -X_API EXTERNAL Atom AtomFormatAt;AtomFormatAt320,11260 -X_API EXTERNAL Term TermFormatAt;TermFormatAt321,11295 -X_API EXTERNAL Atom AtomFull;AtomFull322,11330 -X_API EXTERNAL Term TermFull;TermFull323,11361 -X_API EXTERNAL Atom AtomFunctor;AtomFunctor324,11392 -X_API EXTERNAL Term TermFunctor;TermFunctor325,11426 -X_API EXTERNAL Atom AtomGT;AtomGT326,11460 -X_API EXTERNAL Term TermGT;TermGT327,11489 -X_API EXTERNAL Atom AtomGVar;AtomGVar328,11518 -X_API EXTERNAL Term TermGVar;TermGVar329,11549 -X_API EXTERNAL Atom AtomGc;AtomGc330,11580 -X_API EXTERNAL Term TermGc;TermGc331,11609 -X_API EXTERNAL Atom AtomGcMargin;AtomGcMargin332,11638 -X_API EXTERNAL Term TermGcMargin;TermGcMargin333,11673 -X_API EXTERNAL Atom AtomGcTrace;AtomGcTrace334,11708 -X_API EXTERNAL Term TermGcTrace;TermGcTrace335,11742 -X_API EXTERNAL Atom AtomGcVerbose;AtomGcVerbose336,11776 -X_API EXTERNAL Term TermGcVerbose;TermGcVerbose337,11812 -X_API EXTERNAL Atom AtomGcVeryVerbose;AtomGcVeryVerbose338,11848 -X_API EXTERNAL Term TermGcVeryVerbose;TermGcVeryVerbose339,11888 -X_API EXTERNAL Atom AtomGeneratePredInfo;AtomGeneratePredInfo340,11928 -X_API EXTERNAL Term TermGeneratePredInfo;TermGeneratePredInfo341,11971 -X_API EXTERNAL Atom AtomGetwork;AtomGetwork342,12014 -X_API EXTERNAL Term TermGetwork;TermGetwork343,12048 -X_API EXTERNAL Atom AtomGetworkSeq;AtomGetworkSeq344,12082 -X_API EXTERNAL Term TermGetworkSeq;TermGetworkSeq345,12119 -X_API EXTERNAL Atom AtomGlob;AtomGlob346,12156 -X_API EXTERNAL Term TermGlob;TermGlob347,12187 -X_API EXTERNAL Atom AtomGlobal;AtomGlobal348,12218 -X_API EXTERNAL Term TermGlobal;TermGlobal349,12251 -X_API EXTERNAL Atom AtomGlobalSp;AtomGlobalSp350,12284 -X_API EXTERNAL Term TermGlobalSp;TermGlobalSp351,12319 -X_API EXTERNAL Atom AtomGlobalTrie;AtomGlobalTrie352,12354 -X_API EXTERNAL Term TermGlobalTrie;TermGlobalTrie353,12391 -X_API EXTERNAL Atom AtomGoalExpansion;AtomGoalExpansion354,12428 -X_API EXTERNAL Term TermGoalExpansion;TermGoalExpansion355,12468 -X_API EXTERNAL Atom AtomHat;AtomHat356,12508 -X_API EXTERNAL Term TermHat;TermHat357,12538 -X_API EXTERNAL Atom AtomHERE;AtomHERE358,12568 -X_API EXTERNAL Term TermHERE;TermHERE359,12599 -X_API EXTERNAL Atom AtomHandleThrow;AtomHandleThrow360,12630 -X_API EXTERNAL Term TermHandleThrow;TermHandleThrow361,12668 -X_API EXTERNAL Atom AtomHeap;AtomHeap362,12706 -X_API EXTERNAL Term TermHeap;TermHeap363,12737 -X_API EXTERNAL Atom AtomHeapUsed;AtomHeapUsed364,12768 -X_API EXTERNAL Term TermHeapUsed;TermHeapUsed365,12803 -X_API EXTERNAL Atom AtomHugeInt;AtomHugeInt366,12838 -X_API EXTERNAL Term TermHugeInt;TermHugeInt367,12872 -X_API EXTERNAL Atom AtomIDB;AtomIDB368,12906 -X_API EXTERNAL Term TermIDB;TermIDB369,12936 -X_API EXTERNAL Atom AtomIOMode;AtomIOMode370,12966 -X_API EXTERNAL Term TermIOMode;TermIOMode371,12999 -X_API EXTERNAL Atom AtomI;AtomI372,13032 -X_API EXTERNAL Term TermI;TermI373,13060 -X_API EXTERNAL Atom AtomId;AtomId374,13088 -X_API EXTERNAL Term TermId;TermId375,13117 -X_API EXTERNAL Atom AtomIgnore;AtomIgnore376,13146 -X_API EXTERNAL Term TermIgnore;TermIgnore377,13179 -X_API EXTERNAL Atom AtomInf;AtomInf378,13212 -X_API EXTERNAL Term TermInf;TermInf379,13242 -X_API EXTERNAL Atom AtomInfinity;AtomInfinity380,13272 -X_API EXTERNAL Term TermInfinity;TermInfinity381,13307 -X_API EXTERNAL Atom AtomInfo;AtomInfo382,13342 -X_API EXTERNAL Term TermInfo;TermInfo383,13373 -X_API EXTERNAL Atom AtomInitGoal;AtomInitGoal384,13404 -X_API EXTERNAL Term TermInitGoal;TermInitGoal385,13439 -X_API EXTERNAL Atom AtomInitProlog;AtomInitProlog386,13474 -X_API EXTERNAL Term TermInitProlog;TermInitProlog387,13511 -X_API EXTERNAL Atom AtomInStackExpansion;AtomInStackExpansion388,13548 -X_API EXTERNAL Term TermInStackExpansion;TermInStackExpansion389,13591 -X_API EXTERNAL Atom AtomInput;AtomInput390,13634 -X_API EXTERNAL Term TermInput;TermInput391,13666 -X_API EXTERNAL Atom AtomInstantiationError;AtomInstantiationError392,13698 -X_API EXTERNAL Term TermInstantiationError;TermInstantiationError393,13743 -X_API EXTERNAL Atom AtomInt;AtomInt394,13788 -X_API EXTERNAL Term TermInt;TermInt395,13818 -X_API EXTERNAL Atom AtomIntOverflow;AtomIntOverflow396,13848 -X_API EXTERNAL Term TermIntOverflow;TermIntOverflow397,13886 -X_API EXTERNAL Atom AtomInteger;AtomInteger398,13924 -X_API EXTERNAL Term TermInteger;TermInteger399,13958 -X_API EXTERNAL Atom AtomInternalCompilerError;AtomInternalCompilerError400,13992 -X_API EXTERNAL Term TermInternalCompilerError;TermInternalCompilerError401,14040 -X_API EXTERNAL Atom AtomIs;AtomIs402,14088 -X_API EXTERNAL Term TermIs;TermIs403,14117 -X_API EXTERNAL Atom AtomJ;AtomJ404,14146 -X_API EXTERNAL Term TermJ;TermJ405,14174 -X_API EXTERNAL Atom Atoml;Atoml406,14202 -X_API EXTERNAL Term Terml;Terml407,14230 -X_API EXTERNAL Atom AtomKey;AtomKey408,14258 -X_API EXTERNAL Term TermKey;TermKey409,14288 -X_API EXTERNAL Atom AtomLDLibraryPath;AtomLDLibraryPath410,14318 -X_API EXTERNAL Term TermLDLibraryPath;TermLDLibraryPath411,14358 -X_API EXTERNAL Atom AtomLONGINT;AtomLONGINT412,14398 -X_API EXTERNAL Term TermLONGINT;TermLONGINT413,14432 -X_API EXTERNAL Atom AtomLOOP;AtomLOOP414,14466 -X_API EXTERNAL Term TermLOOP;TermLOOP415,14497 -X_API EXTERNAL Atom AtomLoopStream;AtomLoopStream416,14528 -X_API EXTERNAL Term TermLoopStream;TermLoopStream417,14565 -X_API EXTERNAL Atom AtomLT;AtomLT418,14602 -X_API EXTERNAL Term TermLT;TermLT419,14631 -X_API EXTERNAL Atom AtomLastExecuteWithin;AtomLastExecuteWithin420,14660 -X_API EXTERNAL Term TermLastExecuteWithin;TermLastExecuteWithin421,14704 -X_API EXTERNAL Atom AtomLeash;AtomLeash422,14748 -X_API EXTERNAL Term TermLeash;TermLeash423,14780 -X_API EXTERNAL Atom AtomLeast;AtomLeast424,14812 -X_API EXTERNAL Term TermLeast;TermLeast425,14844 -X_API EXTERNAL Atom AtomLength;AtomLength426,14876 -X_API EXTERNAL Term TermLength;TermLength427,14909 -X_API EXTERNAL Atom AtomList;AtomList428,14942 -X_API EXTERNAL Term TermList;TermList429,14973 -X_API EXTERNAL Atom AtomLine;AtomLine430,15004 -X_API EXTERNAL Term TermLine;TermLine431,15035 -X_API EXTERNAL Atom AtomLive;AtomLive432,15066 -X_API EXTERNAL Term TermLive;TermLive433,15097 -X_API EXTERNAL Atom AtomLoadAnswers;AtomLoadAnswers434,15128 -X_API EXTERNAL Term TermLoadAnswers;TermLoadAnswers435,15166 -X_API EXTERNAL Atom AtomLocal;AtomLocal436,15204 -X_API EXTERNAL Term TermLocal;TermLocal437,15236 -X_API EXTERNAL Atom AtomLocalSp;AtomLocalSp438,15268 -X_API EXTERNAL Term TermLocalSp;TermLocalSp439,15302 -X_API EXTERNAL Atom AtomLocalTrie;AtomLocalTrie440,15336 -X_API EXTERNAL Term TermLocalTrie;TermLocalTrie441,15372 -X_API EXTERNAL Atom AtomMax;AtomMax442,15408 -X_API EXTERNAL Term TermMax;TermMax443,15438 -X_API EXTERNAL Atom AtomMaximum;AtomMaximum444,15468 -X_API EXTERNAL Term TermMaximum;TermMaximum445,15502 -X_API EXTERNAL Atom AtomMaxArity;AtomMaxArity446,15536 -X_API EXTERNAL Term TermMaxArity;TermMaxArity447,15571 -X_API EXTERNAL Atom AtomMaxFiles;AtomMaxFiles448,15606 -X_API EXTERNAL Term TermMaxFiles;TermMaxFiles449,15641 -X_API EXTERNAL Atom AtomMegaClause;AtomMegaClause450,15676 -X_API EXTERNAL Term TermMegaClause;TermMegaClause451,15713 -X_API EXTERNAL Atom AtomMetaCall;AtomMetaCall452,15750 -X_API EXTERNAL Term TermMetaCall;TermMetaCall453,15785 -X_API EXTERNAL Atom AtomMfClause;AtomMfClause454,15820 -X_API EXTERNAL Term TermMfClause;TermMfClause455,15855 -X_API EXTERNAL Atom AtomMin;AtomMin456,15890 -X_API EXTERNAL Term TermMin;TermMin457,15920 -X_API EXTERNAL Atom AtomMinimum;AtomMinimum458,15950 -X_API EXTERNAL Term TermMinimum;TermMinimum459,15984 -X_API EXTERNAL Atom AtomMinus;AtomMinus460,16018 -X_API EXTERNAL Term TermMinus;TermMinus461,16050 -X_API EXTERNAL Atom AtomModify;AtomModify462,16082 -X_API EXTERNAL Term TermModify;TermModify463,16115 -X_API EXTERNAL Atom AtomModule;AtomModule464,16148 -X_API EXTERNAL Term TermModule;TermModule465,16181 -X_API EXTERNAL Atom AtomMost;AtomMost466,16214 -X_API EXTERNAL Term TermMost;TermMost467,16245 -X_API EXTERNAL Atom AtomMulti;AtomMulti468,16276 -X_API EXTERNAL Term TermMulti;TermMulti469,16308 -X_API EXTERNAL Atom AtomMultiFile;AtomMultiFile470,16340 -X_API EXTERNAL Term TermMultiFile;TermMultiFile471,16376 -X_API EXTERNAL Atom AtomMultiple;AtomMultiple472,16412 -X_API EXTERNAL Term TermMultiple;TermMultiple473,16447 -X_API EXTERNAL Atom AtomMutable;AtomMutable474,16482 -X_API EXTERNAL Term TermMutable;TermMutable475,16516 -X_API EXTERNAL Atom AtomMutableVariable;AtomMutableVariable476,16550 -X_API EXTERNAL Term TermMutableVariable;TermMutableVariable477,16592 -X_API EXTERNAL Atom AtomMutex;AtomMutex478,16634 -X_API EXTERNAL Term TermMutex;TermMutex479,16666 -X_API EXTERNAL Atom AtomMyddasDB;AtomMyddasDB480,16698 -X_API EXTERNAL Term TermMyddasDB;TermMyddasDB481,16733 -X_API EXTERNAL Atom AtomMyddasGoal;AtomMyddasGoal482,16768 -X_API EXTERNAL Term TermMyddasGoal;TermMyddasGoal483,16805 -X_API EXTERNAL Atom AtomMyddasHost;AtomMyddasHost484,16842 -X_API EXTERNAL Term TermMyddasHost;TermMyddasHost485,16879 -X_API EXTERNAL Atom AtomMyddasPass;AtomMyddasPass486,16916 -X_API EXTERNAL Term TermMyddasPass;TermMyddasPass487,16953 -X_API EXTERNAL Atom AtomMyddasUser;AtomMyddasUser488,16990 -X_API EXTERNAL Term TermMyddasUser;TermMyddasUser489,17027 -X_API EXTERNAL Atom AtomMyddasVersionName;AtomMyddasVersionName490,17064 -X_API EXTERNAL Term TermMyddasVersionName;TermMyddasVersionName491,17108 -X_API EXTERNAL Atom AtomNan;AtomNan492,17152 -X_API EXTERNAL Term TermNan;TermNan493,17182 -X_API EXTERNAL Atom AtomNb;AtomNb494,17212 -X_API EXTERNAL Term TermNb;TermNb495,17241 -X_API EXTERNAL Atom AtomNbTerm;AtomNbTerm496,17270 -X_API EXTERNAL Term TermNbTerm;TermNbTerm497,17303 -X_API EXTERNAL Atom AtomNew;AtomNew498,17336 -X_API EXTERNAL Term TermNew;TermNew499,17366 -X_API EXTERNAL Atom AtomNewLine;AtomNewLine500,17396 -X_API EXTERNAL Term TermNewLine;TermNewLine501,17430 -X_API EXTERNAL Atom AtomNl;AtomNl502,17464 -X_API EXTERNAL Term TermNl;TermNl503,17493 -X_API EXTERNAL Atom AtomNoEffect;AtomNoEffect504,17522 -X_API EXTERNAL Term TermNoEffect;TermNoEffect505,17557 -X_API EXTERNAL Atom AtomNoMemory;AtomNoMemory506,17592 -X_API EXTERNAL Term TermNoMemory;TermNoMemory507,17627 -X_API EXTERNAL Atom AtomNone;AtomNone508,17662 -X_API EXTERNAL Term TermNone;TermNone509,17693 -X_API EXTERNAL Atom AtomNonEmptyList;AtomNonEmptyList510,17724 -X_API EXTERNAL Term TermNonEmptyList;TermNonEmptyList511,17763 -X_API EXTERNAL Atom AtomNot;AtomNot512,17802 -X_API EXTERNAL Term TermNot;TermNot513,17832 -X_API EXTERNAL Atom AtomNotImplemented;AtomNotImplemented514,17862 -X_API EXTERNAL Term TermNotImplemented;TermNotImplemented515,17903 -X_API EXTERNAL Atom AtomNotLessThanZero;AtomNotLessThanZero516,17944 -X_API EXTERNAL Term TermNotLessThanZero;TermNotLessThanZero517,17986 -X_API EXTERNAL Atom AtomNotNewline;AtomNotNewline518,18028 -X_API EXTERNAL Term TermNotNewline;TermNotNewline519,18065 -X_API EXTERNAL Atom AtomNotZero;AtomNotZero520,18102 -X_API EXTERNAL Term TermNotZero;TermNotZero521,18136 -X_API EXTERNAL Atom AtomNumber;AtomNumber522,18170 -X_API EXTERNAL Term TermNumber;TermNumber523,18203 -X_API EXTERNAL Atom AtomObj;AtomObj524,18236 -X_API EXTERNAL Term TermObj;TermObj525,18266 -X_API EXTERNAL Atom AtomOff;AtomOff526,18296 -X_API EXTERNAL Term TermOff;TermOff527,18326 -X_API EXTERNAL Atom AtomOffline;AtomOffline528,18356 -X_API EXTERNAL Term TermOffline;TermOffline529,18390 -X_API EXTERNAL Atom AtomOn;AtomOn530,18424 -X_API EXTERNAL Term TermOn;TermOn531,18453 -X_API EXTERNAL Atom AtomOnline;AtomOnline532,18482 -X_API EXTERNAL Term TermOnline;TermOnline533,18515 -X_API EXTERNAL Atom AtomOpen;AtomOpen534,18548 -X_API EXTERNAL Term TermOpen;TermOpen535,18579 -X_API EXTERNAL Atom AtomOperatingSystemError;AtomOperatingSystemError536,18610 -X_API EXTERNAL Term TermOperatingSystemError;TermOperatingSystemError537,18657 -X_API EXTERNAL Atom AtomOperatingSystemSupport;AtomOperatingSystemSupport538,18704 -X_API EXTERNAL Term TermOperatingSystemSupport;TermOperatingSystemSupport539,18753 -X_API EXTERNAL Atom AtomOperator;AtomOperator540,18802 -X_API EXTERNAL Term TermOperator;TermOperator541,18837 -X_API EXTERNAL Atom AtomOperatorPriority;AtomOperatorPriority542,18872 -X_API EXTERNAL Term TermOperatorPriority;TermOperatorPriority543,18915 -X_API EXTERNAL Atom AtomOperatorSpecifier;AtomOperatorSpecifier544,18958 -X_API EXTERNAL Term TermOperatorSpecifier;TermOperatorSpecifier545,19002 -X_API EXTERNAL Atom AtomOpt;AtomOpt546,19046 -X_API EXTERNAL Term TermOpt;TermOpt547,19076 -X_API EXTERNAL Atom AtomOtherwise;AtomOtherwise548,19106 -X_API EXTERNAL Term TermOtherwise;TermOtherwise549,19142 -X_API EXTERNAL Atom AtomOutOfAttvarsError;AtomOutOfAttvarsError550,19178 -X_API EXTERNAL Term TermOutOfAttvarsError;TermOutOfAttvarsError551,19222 -X_API EXTERNAL Atom AtomOutOfAuxspaceError;AtomOutOfAuxspaceError552,19266 -X_API EXTERNAL Term TermOutOfAuxspaceError;TermOutOfAuxspaceError553,19311 -X_API EXTERNAL Atom AtomOutOfHeapError;AtomOutOfHeapError554,19356 -X_API EXTERNAL Term TermOutOfHeapError;TermOutOfHeapError555,19397 -X_API EXTERNAL Atom AtomOutOfRange;AtomOutOfRange556,19438 -X_API EXTERNAL Term TermOutOfRange;TermOutOfRange557,19475 -X_API EXTERNAL Atom AtomOutOfStackError;AtomOutOfStackError558,19512 -X_API EXTERNAL Term TermOutOfStackError;TermOutOfStackError559,19554 -X_API EXTERNAL Atom AtomOutOfTrailError;AtomOutOfTrailError560,19596 -X_API EXTERNAL Term TermOutOfTrailError;TermOutOfTrailError561,19638 -X_API EXTERNAL Atom AtomOutput;AtomOutput562,19680 -X_API EXTERNAL Term TermOutput;TermOutput563,19713 -X_API EXTERNAL Atom AtomParameter;AtomParameter564,19746 -X_API EXTERNAL Term TermParameter;TermParameter565,19782 -X_API EXTERNAL Atom AtomPrologCommonsDir;AtomPrologCommonsDir566,19818 -X_API EXTERNAL Term TermPrologCommonsDir;TermPrologCommonsDir567,19861 -X_API EXTERNAL Atom AtomPast;AtomPast568,19904 -X_API EXTERNAL Term TermPast;TermPast569,19935 -X_API EXTERNAL Atom AtomPastEndOfStream;AtomPastEndOfStream570,19966 -X_API EXTERNAL Term TermPastEndOfStream;TermPastEndOfStream571,20008 -X_API EXTERNAL Atom AtomPermissionError;AtomPermissionError572,20050 -X_API EXTERNAL Term TermPermissionError;TermPermissionError573,20092 -X_API EXTERNAL Atom AtomPi;AtomPi574,20134 -X_API EXTERNAL Term TermPi;TermPi575,20163 -X_API EXTERNAL Atom AtomPipe;AtomPipe576,20192 -X_API EXTERNAL Term TermPipe;TermPipe577,20223 -X_API EXTERNAL Atom AtomPriority;AtomPriority578,20254 -X_API EXTERNAL Term TermPriority;TermPriority579,20289 -X_API EXTERNAL Atom AtomPlus;AtomPlus580,20324 -X_API EXTERNAL Term TermPlus;TermPlus581,20355 -X_API EXTERNAL Atom AtomPointer;AtomPointer582,20386 -X_API EXTERNAL Term TermPointer;TermPointer583,20420 -X_API EXTERNAL Atom AtomPortray;AtomPortray584,20454 -X_API EXTERNAL Term TermPortray;TermPortray585,20488 -X_API EXTERNAL Atom AtomPredicateIndicator;AtomPredicateIndicator586,20522 -X_API EXTERNAL Term TermPredicateIndicator;TermPredicateIndicator587,20567 -X_API EXTERNAL Atom AtomPrimitive;AtomPrimitive588,20612 -X_API EXTERNAL Term TermPrimitive;TermPrimitive589,20648 -X_API EXTERNAL Atom AtomPrintMessage;AtomPrintMessage590,20684 -X_API EXTERNAL Term TermPrintMessage;TermPrintMessage591,20723 -X_API EXTERNAL Atom AtomPrivateProcedure;AtomPrivateProcedure592,20762 -X_API EXTERNAL Term TermPrivateProcedure;TermPrivateProcedure593,20805 -X_API EXTERNAL Atom AtomProcedure;AtomProcedure594,20848 -X_API EXTERNAL Term TermProcedure;TermProcedure595,20884 -X_API EXTERNAL Atom AtomProfile;AtomProfile596,20920 -X_API EXTERNAL Term TermProfile;TermProfile597,20954 -X_API EXTERNAL Atom AtomProlog;AtomProlog598,20988 -X_API EXTERNAL Term TermProlog;TermProlog599,21021 -X_API EXTERNAL Atom AtomProtectStack;AtomProtectStack600,21054 -X_API EXTERNAL Term TermProtectStack;TermProtectStack601,21093 -X_API EXTERNAL Atom AtomQly;AtomQly602,21132 -X_API EXTERNAL Term TermQly;TermQly603,21162 -X_API EXTERNAL Atom AtomQuery;AtomQuery604,21192 -X_API EXTERNAL Term TermQuery;TermQuery605,21224 -X_API EXTERNAL Atom AtomQueue;AtomQueue606,21256 -X_API EXTERNAL Term TermQueue;TermQueue607,21288 -X_API EXTERNAL Atom AtomQuiet;AtomQuiet608,21320 -X_API EXTERNAL Term TermQuiet;TermQuiet609,21352 -X_API EXTERNAL Atom AtomRadix;AtomRadix610,21384 -X_API EXTERNAL Term TermRadix;TermRadix611,21416 -X_API EXTERNAL Atom AtomRandom;AtomRandom612,21448 -X_API EXTERNAL Term TermRandom;TermRandom613,21481 -X_API EXTERNAL Atom AtomRange;AtomRange614,21514 -X_API EXTERNAL Term TermRange;TermRange615,21546 -X_API EXTERNAL Atom AtomRDiv;AtomRDiv616,21578 -X_API EXTERNAL Term TermRDiv;TermRDiv617,21609 -X_API EXTERNAL Atom AtomRead;AtomRead618,21640 -X_API EXTERNAL Term TermRead;TermRead619,21671 -X_API EXTERNAL Atom AtomReadOnly;AtomReadOnly620,21702 -X_API EXTERNAL Term TermReadOnly;TermReadOnly621,21737 -X_API EXTERNAL Atom AtomReadWrite;AtomReadWrite622,21772 -X_API EXTERNAL Term TermReadWrite;TermReadWrite623,21808 -X_API EXTERNAL Atom AtomReadutil;AtomReadutil624,21844 -X_API EXTERNAL Term TermReadutil;TermReadutil625,21879 -X_API EXTERNAL Atom AtomReconsult;AtomReconsult626,21914 -X_API EXTERNAL Term TermReconsult;TermReconsult627,21950 -X_API EXTERNAL Atom AtomRecordedP;AtomRecordedP628,21986 -X_API EXTERNAL Term TermRecordedP;TermRecordedP629,22022 -X_API EXTERNAL Atom AtomRecordedWithKey;AtomRecordedWithKey630,22058 -X_API EXTERNAL Term TermRecordedWithKey;TermRecordedWithKey631,22100 -X_API EXTERNAL Atom AtomRedefineWarnings;AtomRedefineWarnings632,22142 -X_API EXTERNAL Term TermRedefineWarnings;TermRedefineWarnings633,22185 -X_API EXTERNAL Atom AtomRedoFreeze;AtomRedoFreeze634,22228 -X_API EXTERNAL Term TermRedoFreeze;TermRedoFreeze635,22265 -X_API EXTERNAL Atom AtomRefoundVar;AtomRefoundVar636,22302 -X_API EXTERNAL Term TermRefoundVar;TermRefoundVar637,22339 -X_API EXTERNAL Atom AtomRelativeTo;AtomRelativeTo638,22376 -X_API EXTERNAL Term TermRelativeTo;TermRelativeTo639,22413 -X_API EXTERNAL Atom AtomRepeat;AtomRepeat640,22450 -X_API EXTERNAL Term TermRepeat;TermRepeat641,22483 -X_API EXTERNAL Atom AtomRepeatSpace;AtomRepeatSpace642,22516 -X_API EXTERNAL Term TermRepeatSpace;TermRepeatSpace643,22554 -X_API EXTERNAL Atom AtomReposition;AtomReposition644,22592 -X_API EXTERNAL Term TermReposition;TermReposition645,22629 -X_API EXTERNAL Atom AtomRepresentationError;AtomRepresentationError646,22666 -X_API EXTERNAL Term TermRepresentationError;TermRepresentationError647,22712 -X_API EXTERNAL Atom AtomReset;AtomReset648,22758 -X_API EXTERNAL Term TermReset;TermReset649,22790 -X_API EXTERNAL Atom AtomResize;AtomResize650,22822 -X_API EXTERNAL Term TermResize;TermResize651,22855 -X_API EXTERNAL Atom AtomResourceError;AtomResourceError652,22888 -X_API EXTERNAL Term TermResourceError;TermResourceError653,22928 -X_API EXTERNAL Atom AtomRestoreRegs;AtomRestoreRegs654,22968 -X_API EXTERNAL Term TermRestoreRegs;TermRestoreRegs655,23006 -X_API EXTERNAL Atom AtomRetry;AtomRetry656,23044 -X_API EXTERNAL Term TermRetry;TermRetry657,23076 -X_API EXTERNAL Atom AtomRetryCounter;AtomRetryCounter658,23108 -X_API EXTERNAL Term TermRetryCounter;TermRetryCounter659,23147 -X_API EXTERNAL Atom AtomRTree;AtomRTree660,23186 -X_API EXTERNAL Term TermRTree;TermRTree661,23218 -X_API EXTERNAL Atom AtomSafe;AtomSafe662,23250 -X_API EXTERNAL Term TermSafe;TermSafe663,23281 -X_API EXTERNAL Atom AtomSafeCallCleanup;AtomSafeCallCleanup664,23312 -X_API EXTERNAL Term TermSafeCallCleanup;TermSafeCallCleanup665,23354 -X_API EXTERNAL Atom AtomSame;AtomSame666,23396 -X_API EXTERNAL Term TermSame;TermSame667,23427 -X_API EXTERNAL Atom AtomSemic;AtomSemic668,23458 -X_API EXTERNAL Term TermSemic;TermSemic669,23490 -X_API EXTERNAL Atom AtomShiftCountOverflow;AtomShiftCountOverflow670,23522 -X_API EXTERNAL Term TermShiftCountOverflow;TermShiftCountOverflow671,23567 -X_API EXTERNAL Atom AtomSigAlarm;AtomSigAlarm672,23612 -X_API EXTERNAL Term TermSigAlarm;TermSigAlarm673,23647 -X_API EXTERNAL Atom AtomSigBreak;AtomSigBreak674,23682 -X_API EXTERNAL Term TermSigBreak;TermSigBreak675,23717 -X_API EXTERNAL Atom AtomSigCreep;AtomSigCreep676,23752 -X_API EXTERNAL Term TermSigCreep;TermSigCreep677,23787 -X_API EXTERNAL Atom AtomSigDebug;AtomSigDebug678,23822 -X_API EXTERNAL Term TermSigDebug;TermSigDebug679,23857 -X_API EXTERNAL Atom AtomSigDelayCreep;AtomSigDelayCreep680,23892 -X_API EXTERNAL Term TermSigDelayCreep;TermSigDelayCreep681,23932 -X_API EXTERNAL Atom AtomSigFPE;AtomSigFPE682,23972 -X_API EXTERNAL Term TermSigFPE;TermSigFPE683,24005 -X_API EXTERNAL Atom AtomSigHup;AtomSigHup684,24038 -X_API EXTERNAL Term TermSigHup;TermSigHup685,24071 -X_API EXTERNAL Atom AtomSigInt;AtomSigInt686,24104 -X_API EXTERNAL Term TermSigInt;TermSigInt687,24137 -X_API EXTERNAL Atom AtomSigIti;AtomSigIti688,24170 -X_API EXTERNAL Term TermSigIti;TermSigIti689,24203 -X_API EXTERNAL Atom AtomSigPending;AtomSigPending690,24236 -X_API EXTERNAL Term TermSigPending;TermSigPending691,24273 -X_API EXTERNAL Atom AtomSigPipe;AtomSigPipe692,24310 -X_API EXTERNAL Term TermSigPipe;TermSigPipe693,24344 -X_API EXTERNAL Atom AtomSigStackDump;AtomSigStackDump694,24378 -X_API EXTERNAL Term TermSigStackDump;TermSigStackDump695,24417 -X_API EXTERNAL Atom AtomSigStatistics;AtomSigStatistics696,24456 -X_API EXTERNAL Term TermSigStatistics;TermSigStatistics697,24496 -X_API EXTERNAL Atom AtomSigTrace;AtomSigTrace698,24536 -X_API EXTERNAL Term TermSigTrace;TermSigTrace699,24571 -X_API EXTERNAL Atom AtomSigUsr1;AtomSigUsr1700,24606 -X_API EXTERNAL Term TermSigUsr1;TermSigUsr1701,24640 -X_API EXTERNAL Atom AtomSigUsr2;AtomSigUsr2702,24674 -X_API EXTERNAL Term TermSigUsr2;TermSigUsr2703,24708 -X_API EXTERNAL Atom AtomSigVTAlarm;AtomSigVTAlarm704,24742 -X_API EXTERNAL Term TermSigVTAlarm;TermSigVTAlarm705,24779 -X_API EXTERNAL Atom AtomSigWakeUp;AtomSigWakeUp706,24816 -X_API EXTERNAL Term TermSigWakeUp;TermSigWakeUp707,24852 -X_API EXTERNAL Atom AtomSilent;AtomSilent708,24888 -X_API EXTERNAL Term TermSilent;TermSilent709,24921 -X_API EXTERNAL Atom AtomSingle;AtomSingle710,24954 -X_API EXTERNAL Term TermSingle;TermSingle711,24987 -X_API EXTERNAL Atom AtomSingleVarWarnings;AtomSingleVarWarnings712,25020 -X_API EXTERNAL Term TermSingleVarWarnings;TermSingleVarWarnings713,25064 -X_API EXTERNAL Atom AtomSingleton;AtomSingleton714,25108 -X_API EXTERNAL Term TermSingleton;TermSingleton715,25144 -X_API EXTERNAL Atom AtomSlash;AtomSlash716,25180 -X_API EXTERNAL Term TermSlash;TermSlash717,25212 -X_API EXTERNAL Atom AtomSocket;AtomSocket718,25244 -X_API EXTERNAL Term TermSocket;TermSocket719,25277 -X_API EXTERNAL Atom AtomSolutions;AtomSolutions720,25310 -X_API EXTERNAL Term TermSolutions;TermSolutions721,25346 -X_API EXTERNAL Atom AtomSource;AtomSource722,25382 -X_API EXTERNAL Term TermSource;TermSource723,25415 -X_API EXTERNAL Atom AtomSourceSink;AtomSourceSink724,25448 -X_API EXTERNAL Term TermSourceSink;TermSourceSink725,25485 -X_API EXTERNAL Atom AtomSpy;AtomSpy726,25522 -X_API EXTERNAL Term TermSpy;TermSpy727,25552 -X_API EXTERNAL Atom AtomStack;AtomStack728,25582 -X_API EXTERNAL Term TermStack;TermStack729,25614 -X_API EXTERNAL Atom AtomStackFree;AtomStackFree730,25646 -X_API EXTERNAL Term TermStackFree;TermStackFree731,25682 -X_API EXTERNAL Atom AtomStartupSavedState;AtomStartupSavedState732,25718 -X_API EXTERNAL Term TermStartupSavedState;TermStartupSavedState733,25762 -X_API EXTERNAL Atom AtomStaticClause;AtomStaticClause734,25806 -X_API EXTERNAL Term TermStaticClause;TermStaticClause735,25845 -X_API EXTERNAL Atom AtomStaticProcedure;AtomStaticProcedure736,25884 -X_API EXTERNAL Term TermStaticProcedure;TermStaticProcedure737,25926 -X_API EXTERNAL Atom AtomStream;AtomStream738,25968 -X_API EXTERNAL Term TermStream;TermStream739,26001 -X_API EXTERNAL Atom AtomSWIStream;AtomSWIStream740,26034 -X_API EXTERNAL Term TermSWIStream;TermSWIStream741,26070 -X_API EXTERNAL Atom AtomVStream;AtomVStream742,26106 -X_API EXTERNAL Term TermVStream;TermVStream743,26140 -X_API EXTERNAL Atom AtomStreams;AtomStreams744,26174 -X_API EXTERNAL Term TermStreams;TermStreams745,26208 -X_API EXTERNAL Atom AtomStreamOrAlias;AtomStreamOrAlias746,26242 -X_API EXTERNAL Term TermStreamOrAlias;TermStreamOrAlias747,26282 -X_API EXTERNAL Atom AtomStreamPos;AtomStreamPos748,26322 -X_API EXTERNAL Term TermStreamPos;TermStreamPos749,26358 -X_API EXTERNAL Atom AtomStreamPosition;AtomStreamPosition750,26394 -X_API EXTERNAL Term TermStreamPosition;TermStreamPosition751,26435 -X_API EXTERNAL Atom AtomString;AtomString752,26476 -X_API EXTERNAL Term TermString;TermString753,26509 -X_API EXTERNAL Atom AtomStyleCheck;AtomStyleCheck754,26542 -X_API EXTERNAL Term TermStyleCheck;TermStyleCheck755,26579 -X_API EXTERNAL Atom AtomSTRING;AtomSTRING756,26616 -X_API EXTERNAL Term TermSTRING;TermSTRING757,26649 -X_API EXTERNAL Atom AtomSwi;AtomSwi758,26682 -X_API EXTERNAL Term TermSwi;TermSwi759,26712 -X_API EXTERNAL Atom AtomSymbolChar;AtomSymbolChar760,26742 -X_API EXTERNAL Term TermSymbolChar;TermSymbolChar761,26779 -X_API EXTERNAL Atom AtomSyntaxError;AtomSyntaxError762,26816 -X_API EXTERNAL Term TermSyntaxError;TermSyntaxError763,26854 -X_API EXTERNAL Atom AtomSyntaxErrors;AtomSyntaxErrors764,26892 -X_API EXTERNAL Term TermSyntaxErrors;TermSyntaxErrors765,26931 -X_API EXTERNAL Atom AtomSyntaxErrorHandler;AtomSyntaxErrorHandler766,26970 -X_API EXTERNAL Term TermSyntaxErrorHandler;TermSyntaxErrorHandler767,27015 -X_API EXTERNAL Atom AtomSystem;AtomSystem768,27060 -X_API EXTERNAL Term TermSystem;TermSystem769,27093 -X_API EXTERNAL Atom AtomSystemError;AtomSystemError770,27126 -X_API EXTERNAL Term TermSystemError;TermSystemError771,27164 -X_API EXTERNAL Atom AtomSystemLibraryDir;AtomSystemLibraryDir772,27202 -X_API EXTERNAL Term TermSystemLibraryDir;TermSystemLibraryDir773,27245 -X_API EXTERNAL Atom AtomT;AtomT774,27288 -X_API EXTERNAL Term TermT;TermT775,27316 -X_API EXTERNAL Atom AtomTerm;AtomTerm776,27344 -X_API EXTERNAL Term TermTerm;TermTerm777,27375 -X_API EXTERNAL Atom AtomTermExpansion;AtomTermExpansion778,27406 -X_API EXTERNAL Term TermTermExpansion;TermTermExpansion779,27446 -X_API EXTERNAL Atom AtomTerms;AtomTerms780,27486 -X_API EXTERNAL Term TermTerms;TermTerms781,27518 -X_API EXTERNAL Atom AtomText;AtomText782,27550 -X_API EXTERNAL Term TermText;TermText783,27581 -X_API EXTERNAL Atom AtomTextStream;AtomTextStream784,27612 -X_API EXTERNAL Term TermTextStream;TermTextStream785,27649 -X_API EXTERNAL Atom AtomThread;AtomThread786,27686 -X_API EXTERNAL Term TermThread;TermThread787,27719 -X_API EXTERNAL Atom AtomThreads;AtomThreads788,27752 -X_API EXTERNAL Term TermThreads;TermThreads789,27786 -X_API EXTERNAL Atom AtomThrow;AtomThrow790,27820 -X_API EXTERNAL Term TermThrow;TermThrow791,27852 -X_API EXTERNAL Atom AtomTimeOutSpec;AtomTimeOutSpec792,27884 -X_API EXTERNAL Term TermTimeOutSpec;TermTimeOutSpec793,27922 -X_API EXTERNAL Atom AtomTimeoutError;AtomTimeoutError794,27960 -X_API EXTERNAL Term TermTimeoutError;TermTimeoutError795,27999 -X_API EXTERNAL Atom AtomTopLevelGoal;AtomTopLevelGoal796,28038 -X_API EXTERNAL Term TermTopLevelGoal;TermTopLevelGoal797,28077 -X_API EXTERNAL Atom AtomTopThreadGoal;AtomTopThreadGoal798,28116 -X_API EXTERNAL Term TermTopThreadGoal;TermTopThreadGoal799,28156 -X_API EXTERNAL Atom AtomTraceMetaCall;AtomTraceMetaCall800,28196 -X_API EXTERNAL Term TermTraceMetaCall;TermTraceMetaCall801,28236 -X_API EXTERNAL Atom AtomTrail;AtomTrail802,28276 -X_API EXTERNAL Atom AtomTrue;AtomTrue803,28308 -X_API EXTERNAL Term TermTrue;TermTrue804,28339 -X_API EXTERNAL Atom AtomTty;AtomTty805,28370 -X_API EXTERNAL Term TermTty;TermTty806,28400 -X_API EXTERNAL Atom AtomTtys;AtomTtys807,28430 -X_API EXTERNAL Term TermTtys;TermTtys808,28461 -X_API EXTERNAL Atom AtomTuple;AtomTuple809,28492 -X_API EXTERNAL Term TermTuple;TermTuple810,28524 -X_API EXTERNAL Atom AtomTxt;AtomTxt811,28556 -X_API EXTERNAL Term TermTxt;TermTxt812,28586 -X_API EXTERNAL Atom AtomTypeError;AtomTypeError813,28616 -X_API EXTERNAL Term TermTypeError;TermTypeError814,28652 -X_API EXTERNAL Atom AtomUndefined;AtomUndefined815,28688 -X_API EXTERNAL Term TermUndefined;TermUndefined816,28724 -X_API EXTERNAL Atom AtomUndefp;AtomUndefp817,28760 -X_API EXTERNAL Term TermUndefp;TermUndefp818,28793 -X_API EXTERNAL Atom AtomUndefp0;AtomUndefp0819,28826 -X_API EXTERNAL Term TermUndefp0;TermUndefp0820,28860 -X_API EXTERNAL Atom AtomUnderflow;AtomUnderflow821,28894 -X_API EXTERNAL Term TermUnderflow;TermUnderflow822,28930 -X_API EXTERNAL Atom AtomUnificationStack;AtomUnificationStack823,28966 -X_API EXTERNAL Term TermUnificationStack;TermUnificationStack824,29009 -X_API EXTERNAL Atom AtomUnique;AtomUnique825,29052 -X_API EXTERNAL Term TermUnique;TermUnique826,29085 -X_API EXTERNAL Atom AtomUnsignedByte;AtomUnsignedByte827,29118 -X_API EXTERNAL Term TermUnsignedByte;TermUnsignedByte828,29157 -X_API EXTERNAL Atom AtomUnsignedChar;AtomUnsignedChar829,29196 -X_API EXTERNAL Term TermUnsignedChar;TermUnsignedChar830,29235 -X_API EXTERNAL Atom AtomUser;AtomUser831,29274 -X_API EXTERNAL Term TermUser;TermUser832,29305 -X_API EXTERNAL Atom AtomUserErr;AtomUserErr833,29336 -X_API EXTERNAL Term TermUserErr;TermUserErr834,29370 -X_API EXTERNAL Atom AtomUserIn;AtomUserIn835,29404 -X_API EXTERNAL Term TermUserIn;TermUserIn836,29437 -X_API EXTERNAL Atom AtomUserOut;AtomUserOut837,29470 -X_API EXTERNAL Term TermUserOut;TermUserOut838,29504 -X_API EXTERNAL Atom AtomDollarVar;AtomDollarVar839,29538 -X_API EXTERNAL Term TermDollarVar;TermDollarVar840,29574 -X_API EXTERNAL Atom AtomVBar;AtomVBar841,29610 -X_API EXTERNAL Term TermVBar;TermVBar842,29641 -X_API EXTERNAL Atom AtomVarBranches;AtomVarBranches843,29672 -X_API EXTERNAL Term TermVarBranches;TermVarBranches844,29710 -X_API EXTERNAL Atom AtomVariableNames;AtomVariableNames845,29748 -X_API EXTERNAL Term TermVariableNames;TermVariableNames846,29788 -X_API EXTERNAL Atom AtomHiddenVar;AtomHiddenVar847,29828 -X_API EXTERNAL Term TermHiddenVar;TermHiddenVar848,29864 -X_API EXTERNAL Atom AtomVariable;AtomVariable849,29900 -X_API EXTERNAL Term TermVariable;TermVariable850,29935 -X_API EXTERNAL Atom AtomVerbose;AtomVerbose851,29970 -X_API EXTERNAL Term TermVerbose;TermVerbose852,30004 -X_API EXTERNAL Atom AtomVerboseFileSearch;AtomVerboseFileSearch853,30038 -X_API EXTERNAL Term TermVerboseFileSearch;TermVerboseFileSearch854,30082 -X_API EXTERNAL Atom AtomVersionNumber;AtomVersionNumber855,30126 -X_API EXTERNAL Term TermVersionNumber;TermVersionNumber856,30166 -X_API EXTERNAL Atom AtomVeryVerbose;AtomVeryVerbose857,30206 -X_API EXTERNAL Term TermVeryVerbose;TermVeryVerbose858,30244 -X_API EXTERNAL Atom AtomWakeUpGoal;AtomWakeUpGoal859,30282 -X_API EXTERNAL Term TermWakeUpGoal;TermWakeUpGoal860,30319 -X_API EXTERNAL Atom AtomWarning;AtomWarning861,30356 -X_API EXTERNAL Term TermWarning;TermWarning862,30390 -X_API EXTERNAL Atom AtomWhen;AtomWhen863,30424 -X_API EXTERNAL Term TermWhen;TermWhen864,30455 -X_API EXTERNAL Atom AtomWrite;AtomWrite865,30486 -X_API EXTERNAL Term TermWrite;TermWrite866,30518 -X_API EXTERNAL Atom AtomWriteTerm;AtomWriteTerm867,30550 -X_API EXTERNAL Term TermWriteTerm;TermWriteTerm868,30586 -X_API EXTERNAL Atom AtomXml;AtomXml869,30622 -X_API EXTERNAL Term TermXml;TermXml870,30652 -X_API EXTERNAL Atom AtomYapHacks;AtomYapHacks871,30682 -X_API EXTERNAL Term TermYapHacks;TermYapHacks872,30717 -X_API EXTERNAL Atom AtomZeroDivisor;AtomZeroDivisor873,30752 -X_API EXTERNAL Term TermZeroDivisor;TermZeroDivisor874,30790 -X_API EXTERNAL Functor FunctorAfInet;FunctorAfInet875,30828 -X_API EXTERNAL Functor FunctorAfLocal;FunctorAfLocal877,30869 -X_API EXTERNAL Functor FunctorAfUnix;FunctorAfUnix879,30911 -X_API EXTERNAL Functor FunctorAltNot;FunctorAltNot881,30952 -X_API EXTERNAL Functor FunctorArg;FunctorArg883,30993 -X_API EXTERNAL Functor FunctorArrayEntry;FunctorArrayEntry885,31031 -X_API EXTERNAL Functor FunctorArrow;FunctorArrow887,31076 -X_API EXTERNAL Functor FunctorDoubleArrow;FunctorDoubleArrow889,31116 -X_API EXTERNAL Functor FunctorAssert1;FunctorAssert1891,31162 -X_API EXTERNAL Functor FunctorAssert;FunctorAssert893,31204 -X_API EXTERNAL Functor FunctorAtFoundOne;FunctorAtFoundOne895,31245 -X_API EXTERNAL Functor FunctorAtom;FunctorAtom897,31290 -X_API EXTERNAL Functor FunctorAtt1;FunctorAtt1899,31329 -X_API EXTERNAL Functor FunctorAttGoal;FunctorAttGoal901,31368 -X_API EXTERNAL Functor FunctorBraces;FunctorBraces903,31410 -X_API EXTERNAL Functor FunctorCall;FunctorCall905,31451 -X_API EXTERNAL Functor FunctorCatch;FunctorCatch907,31490 -X_API EXTERNAL Functor FunctorChangeModule;FunctorChangeModule909,31530 -X_API EXTERNAL Functor FunctorChars;FunctorChars911,31577 -X_API EXTERNAL Functor FunctorChars1;FunctorChars1913,31617 -X_API EXTERNAL Functor FunctorCleanCall;FunctorCleanCall915,31658 -X_API EXTERNAL Functor FunctorClist;FunctorClist917,31702 -X_API EXTERNAL Functor FunctorCodes;FunctorCodes919,31742 -X_API EXTERNAL Functor FunctorCodes1;FunctorCodes1921,31782 -X_API EXTERNAL Functor FunctorColon;FunctorColon923,31823 -X_API EXTERNAL Functor FunctorComma;FunctorComma925,31863 -X_API EXTERNAL Functor FunctorCommentHook;FunctorCommentHook927,31903 -X_API EXTERNAL Functor FunctorContext2;FunctorContext2929,31949 -X_API EXTERNAL Functor FunctorConsistencyError;FunctorConsistencyError931,31992 -X_API EXTERNAL Functor FunctorCreep;FunctorCreep933,32043 -X_API EXTERNAL Functor FunctorCsult;FunctorCsult935,32083 -X_API EXTERNAL Functor FunctorCurrentModule;FunctorCurrentModule937,32123 -X_API EXTERNAL Functor FunctorCutBy;FunctorCutBy939,32171 -X_API EXTERNAL Functor FunctorDBREF;FunctorDBREF941,32211 -X_API EXTERNAL Functor FunctorDiff;FunctorDiff943,32251 -X_API EXTERNAL Functor FunctorDoLogUpdClause;FunctorDoLogUpdClause945,32290 -X_API EXTERNAL Functor FunctorDoLogUpdClause0;FunctorDoLogUpdClause0947,32339 -X_API EXTERNAL Functor FunctorDoLogUpdClauseErase;FunctorDoLogUpdClauseErase949,32389 -X_API EXTERNAL Functor FunctorDoStaticClause;FunctorDoStaticClause951,32443 -X_API EXTERNAL Functor FunctorDollar;FunctorDollar953,32492 -X_API EXTERNAL Functor FunctorDollarVar;FunctorDollarVar955,32533 -X_API EXTERNAL Functor FunctorDomainError;FunctorDomainError957,32577 -X_API EXTERNAL Functor FunctorDot;FunctorDot959,32623 -X_API EXTERNAL Functor FunctorDot10;FunctorDot10961,32661 -X_API EXTERNAL Functor FunctorDot11;FunctorDot11963,32701 -X_API EXTERNAL Functor FunctorDot12;FunctorDot12965,32741 -X_API EXTERNAL Functor FunctorDot2;FunctorDot2967,32781 -X_API EXTERNAL Functor FunctorDot3;FunctorDot3969,32820 -X_API EXTERNAL Functor FunctorDot4;FunctorDot4971,32859 -X_API EXTERNAL Functor FunctorDot5;FunctorDot5973,32898 -X_API EXTERNAL Functor FunctorDot6;FunctorDot6975,32937 -X_API EXTERNAL Functor FunctorDot7;FunctorDot7977,32976 -X_API EXTERNAL Functor FunctorDot8;FunctorDot8979,33015 -X_API EXTERNAL Functor FunctorDot9;FunctorDot9981,33054 -X_API EXTERNAL Functor FunctorDoubleArrow;FunctorDoubleArrow983,33093 -X_API EXTERNAL Functor FunctorDoubleSlash;FunctorDoubleSlash985,33139 -X_API EXTERNAL Functor FunctorEmptySquareBrackets;FunctorEmptySquareBrackets987,33185 -X_API EXTERNAL Functor FunctorEq;FunctorEq989,33239 -X_API EXTERNAL Functor FunctorError;FunctorError991,33276 -X_API EXTERNAL Functor FunctorEvaluationError;FunctorEvaluationError993,33316 -X_API EXTERNAL Functor FunctorException;FunctorException995,33366 -X_API EXTERNAL Functor FunctorExecute2InMod;FunctorExecute2InMod997,33410 -X_API EXTERNAL Functor FunctorExecuteInMod;FunctorExecuteInMod999,33458 -X_API EXTERNAL Functor FunctorExecuteWithin;FunctorExecuteWithin1001,33505 -X_API EXTERNAL Functor FunctorExistenceError;FunctorExistenceError1003,33553 -X_API EXTERNAL Functor FunctorExoClause;FunctorExoClause1005,33602 -X_API EXTERNAL Functor FunctorFunctor;FunctorFunctor1007,33646 -X_API EXTERNAL Functor FunctorGAtom;FunctorGAtom1009,33688 -X_API EXTERNAL Functor FunctorGAtomic;FunctorGAtomic1011,33728 -X_API EXTERNAL Functor FunctorGCompound;FunctorGCompound1013,33770 -X_API EXTERNAL Functor FunctorGFloat;FunctorGFloat1015,33814 -X_API EXTERNAL Functor FunctorGFormatAt;FunctorGFormatAt1017,33855 -X_API EXTERNAL Functor FunctorGInteger;FunctorGInteger1019,33899 -X_API EXTERNAL Functor FunctorGNumber;FunctorGNumber1021,33942 -X_API EXTERNAL Functor FunctorGPrimitive;FunctorGPrimitive1023,33984 -X_API EXTERNAL Functor FunctorGVar;FunctorGVar1025,34029 -X_API EXTERNAL Functor FunctorGeneratePredInfo;FunctorGeneratePredInfo1027,34068 -X_API EXTERNAL Functor FunctorGoalExpansion2;FunctorGoalExpansion21029,34119 -X_API EXTERNAL Functor FunctorGoalExpansion;FunctorGoalExpansion1031,34168 -X_API EXTERNAL Functor FunctorHandleThrow;FunctorHandleThrow1033,34216 -X_API EXTERNAL Functor FunctorHat;FunctorHat1035,34262 -X_API EXTERNAL Functor FunctorI;FunctorI1037,34300 -X_API EXTERNAL Functor FunctorId;FunctorId1039,34336 -X_API EXTERNAL Functor FunctorInfo1;FunctorInfo11041,34373 -X_API EXTERNAL Functor FunctorInfo2;FunctorInfo21043,34413 -X_API EXTERNAL Functor FunctorInfo3;FunctorInfo31045,34453 -X_API EXTERNAL Functor FunctorInfo4;FunctorInfo41047,34493 -X_API EXTERNAL Functor FunctorIs;FunctorIs1049,34533 -X_API EXTERNAL Functor FunctorJ;FunctorJ1051,34570 -X_API EXTERNAL Functor FunctorLastExecuteWithin;FunctorLastExecuteWithin1053,34606 -X_API EXTERNAL Functor FunctorList;FunctorList1055,34658 -X_API EXTERNAL Functor FunctorLOOP;FunctorLOOP1057,34697 -X_API EXTERNAL Functor FunctorMegaClause;FunctorMegaClause1059,34736 -X_API EXTERNAL Functor FunctorMetaCall;FunctorMetaCall1061,34781 -X_API EXTERNAL Functor FunctorMinus;FunctorMinus1063,34824 -X_API EXTERNAL Functor FunctorModule;FunctorModule1065,34864 -X_API EXTERNAL Functor FunctorMultiFileClause;FunctorMultiFileClause1067,34905 -X_API EXTERNAL Functor FunctorMutable;FunctorMutable1069,34955 -X_API EXTERNAL Functor FunctorMutex;FunctorMutex1071,34997 -X_API EXTERNAL Functor FunctorNotImplemented;FunctorNotImplemented1073,35037 -X_API EXTERNAL Functor FunctorNBQueue;FunctorNBQueue1075,35086 -X_API EXTERNAL Functor FunctorNot;FunctorNot1077,35128 -X_API EXTERNAL Functor FunctorObj;FunctorObj1079,35166 -X_API EXTERNAL Functor FunctorOr;FunctorOr1081,35204 -X_API EXTERNAL Functor FunctorOutput;FunctorOutput1083,35241 -X_API EXTERNAL Functor FunctorPermissionError;FunctorPermissionError1085,35282 -X_API EXTERNAL Functor FunctorPlus;FunctorPlus1087,35332 -X_API EXTERNAL Functor FunctorPortray;FunctorPortray1089,35371 -X_API EXTERNAL Functor FunctorPrintMessage;FunctorPrintMessage1091,35413 -X_API EXTERNAL Functor FunctorProcedure;FunctorProcedure1093,35460 -X_API EXTERNAL Functor FunctorPriority;FunctorPriority1095,35504 -X_API EXTERNAL Functor FunctorPrologConstraint;FunctorPrologConstraint1097,35547 -X_API EXTERNAL Functor FunctorProtectStack;FunctorProtectStack1099,35598 -X_API EXTERNAL Functor FunctorQuery;FunctorQuery1101,35645 -X_API EXTERNAL Functor FunctorRecordedWithKey;FunctorRecordedWithKey1103,35685 -X_API EXTERNAL Functor FunctorRDiv;FunctorRDiv1105,35735 -X_API EXTERNAL Functor FunctorRedoFreeze;FunctorRedoFreeze1107,35774 -X_API EXTERNAL Functor FunctorRepresentationError;FunctorRepresentationError1109,35819 -X_API EXTERNAL Functor FunctorResourceError;FunctorResourceError1111,35873 -X_API EXTERNAL Functor FunctorRestoreRegs;FunctorRestoreRegs1113,35921 -X_API EXTERNAL Functor FunctorRestoreRegs1;FunctorRestoreRegs11115,35967 -X_API EXTERNAL Functor FunctorSafe;FunctorSafe1117,36014 -X_API EXTERNAL Functor FunctorSafeCallCleanup;FunctorSafeCallCleanup1119,36053 -X_API EXTERNAL Functor FunctorSame;FunctorSame1121,36103 -X_API EXTERNAL Functor FunctorSlash;FunctorSlash1123,36142 -X_API EXTERNAL Functor FunctorStaticClause;FunctorStaticClause1125,36182 -X_API EXTERNAL Functor FunctorStream;FunctorStream1127,36229 -X_API EXTERNAL Functor FunctorStreamEOS;FunctorStreamEOS1129,36270 -X_API EXTERNAL Functor FunctorStreamPos;FunctorStreamPos1131,36314 -X_API EXTERNAL Functor FunctorString1;FunctorString11133,36358 -X_API EXTERNAL Functor FunctorStyleCheck;FunctorStyleCheck1135,36400 -X_API EXTERNAL Functor FunctorSyntaxError;FunctorSyntaxError1137,36445 -X_API EXTERNAL Functor FunctorShortSyntaxError;FunctorShortSyntaxError1139,36491 -X_API EXTERNAL Functor FunctorTermExpansion;FunctorTermExpansion1141,36542 -X_API EXTERNAL Functor FunctorThreadRun;FunctorThreadRun1143,36590 -X_API EXTERNAL Functor FunctorThrow;FunctorThrow1145,36634 -X_API EXTERNAL Functor FunctorTimeoutError;FunctorTimeoutError1147,36674 -X_API EXTERNAL Functor FunctorTraceMetaCall;FunctorTraceMetaCall1149,36721 -X_API EXTERNAL Functor FunctorTypeError;FunctorTypeError1151,36769 -X_API EXTERNAL Functor FunctorUMinus;FunctorUMinus1153,36813 -X_API EXTERNAL Functor FunctorUPlus;FunctorUPlus1155,36854 -X_API EXTERNAL Functor FunctorVBar;FunctorVBar1157,36894 -X_API EXTERNAL Functor FunctorWriteTerm;FunctorWriteTerm1159,36933 -X_API EXTERNAL Functor FunctorHiddenVar;FunctorHiddenVar1161,36977 - -H/GLOBALS,0 - -H/headclause.h,0 - -H/heap.h,35 -#define HeapUsed HeapUsed49,1410 - -H/HEAPFIELDS,36 -#define HeapUsed HeapUsed42,1090 - -H/heapgc.h,2149 -#define MaskAdr MaskAdr23,657 -#define GET_NEXT(GET_NEXT28,789 -#define GET_NEXT(GET_NEXT41,1615 -#define GET_NEXT(GET_NEXT43,1677 -#define ONHEAP(ONHEAP48,1780 -#define ONCODE(ONCODE52,1904 -#define ONCODE(ONCODE54,1991 -#define GCIsPrimitiveTerm(GCIsPrimitiveTerm60,2126 -#define HEAP_PTR(HEAP_PTR63,2265 -#define HEAP_TRAIL_ENTRY(HEAP_TRAIL_ENTRY74,2682 -#define MARK_BIT MARK_BIT82,2945 -#define RMARK_BIT RMARK_BIT83,2978 -#define MARKED_PTR(MARKED_PTR85,3012 -#define UNMARKED_CELL(UNMARKED_CELL86,3061 -#define UNMARKED_MARK(UNMARKED_MARK87,3113 -#define MARK(MARK88,3176 -#define UNMARK(UNMARK89,3213 -#define RMARK(RMARK90,3254 -#define RMARKED(RMARKED91,3293 -#define UNRMARK(UNRMARK92,3336 -MARKED_PTR__(CELL* ptr USES_REGS)MARKED_PTR__95,3398 -UNMARKED_MARK__(CELL* ptr, char *bp USES_REGS)UNMARKED_MARK__101,3486 -MARK__(CELL* ptr USES_REGS)MARK__112,3656 -UNMARK__(CELL* ptr USES_REGS)UNMARK__119,3748 -#define MAY_UNMARK(MAY_UNMARK125,3834 -#define UNMARK_CELL(UNMARK_CELL127,3857 -RMARK__(CELL* ptr USES_REGS)RMARK__130,3904 -UNRMARK__(CELL* ptr USES_REGS)UNRMARK__136,3979 -RMARKED__(CELL* ptr USES_REGS)RMARKED__142,4056 -#define MARK_BIT MARK_BIT149,4126 -#define RMARK_BIT RMARK_BIT150,4154 -#define mcell(mcell152,4183 -#define MARKED_PTR(MARKED_PTR154,4241 -#define UNMARKED_MARK(UNMARKED_MARK155,4290 -#define MARK(MARK156,4353 -#define UNMARK(UNMARK157,4390 -#define RMARK(RMARK158,4431 -#define RMARKED(RMARKED159,4470 -#define UNRMARK(UNRMARK160,4513 -MARKED_PTR__(CELL* ptr USES_REGS)MARKED_PTR__163,4575 -UNMARKED_MARK__(CELL* ptr, char *bp USES_REGS)UNMARKED_MARK__169,4664 -MARK__(CELL* ptr USES_REGS)MARK__181,4884 -UNMARK__(CELL* ptr USES_REGS)UNMARK__189,5038 -#define MAY_UNMARK(MAY_UNMARK195,5141 -#define UNMARK_CELL(UNMARK_CELL197,5164 -RMARK__(CELL* ptr USES_REGS)RMARK__200,5211 -UNRMARK__(CELL* ptr USES_REGS)UNRMARK__206,5304 -RMARKED__(CELL* ptr USES_REGS)RMARKED__212,5399 -#define TAG(TAG223,5590 -#define TAG(TAG226,5656 -#define TAG(TAG228,5708 -#define TAG(TAG232,5771 -typedef CELL *CELL_PTR;CELL_PTR235,5822 -#define ENVSIZE(ENVSIZE237,5849 - -H/index.h,5262 -typedef enum clause_type_enum {clause_type_enum19,595 - pair_clause = 0x01,pair_clause20,627 - struct_clause = 0x02,struct_clause21,649 - atom_clause = 0x04,atom_clause22,673 - int_clause = 0x08,int_clause23,695 - flt_clause = 0x10,flt_clause24,716 - lgint_clause = 0x20,lgint_clause25,737 - dbref_clause = 0x40dbref_clause26,760 -} clause_type;clause_type27,782 -#define MaxOptions MaxOptions30,826 -#define MIN_HASH_ENTRIES MIN_HASH_ENTRIES34,939 -#define HASH_SHIFT HASH_SHIFT36,967 -typedef struct StructClauseDef {StructClauseDef42,1122 - Term Tag; /* if nonvar or nonlist, first argument */Tag44,1156 - Term Tag; /* if nonvar or nonlist, first argument */StructClauseDef::Tag44,1156 - yamop *Code; /* start of code for clause */Code45,1221 - yamop *Code; /* start of code for clause */StructClauseDef::Code45,1221 - yamop *CurrentCode; /* start of code for clause */CurrentCode46,1274 - yamop *CurrentCode; /* start of code for clause */StructClauseDef::CurrentCode46,1274 - yamop *WorkPC; /* start of code for clause */WorkPC48,1337 - yamop *WorkPC; /* start of code for clause */StructClauseDef::__anon171::WorkPC48,1337 - Term t_ptr;t_ptr49,1387 - Term t_ptr;StructClauseDef::__anon171::t_ptr49,1387 - CELL *c_sreg;c_sreg50,1403 - CELL *c_sreg;StructClauseDef::__anon171::c_sreg50,1403 - } ucd;ucd51,1421 - } ucd;StructClauseDef::ucd51,1421 -} ClauseDef;ClauseDef52,1430 - ClauseDef *FirstClause;FirstClause56,1499 - ClauseDef *FirstClause;__anon172::FirstClause56,1499 - ClauseDef *LastClause;LastClause57,1525 - ClauseDef *LastClause;__anon172::LastClause57,1525 - UInt VarClauses;VarClauses58,1550 - UInt VarClauses;__anon172::VarClauses58,1550 - UInt AtomClauses;AtomClauses59,1569 - UInt AtomClauses;__anon172::AtomClauses59,1569 - UInt PairClauses;PairClauses60,1589 - UInt PairClauses;__anon172::PairClauses60,1589 - UInt StructClauses;StructClauses61,1609 - UInt StructClauses;__anon172::StructClauses61,1609 - UInt TestClauses;TestClauses62,1631 - UInt TestClauses;__anon172::TestClauses62,1631 -} GroupDef;GroupDef63,1651 - Term Tag;Tag67,1702 - Term Tag;__anon173::Tag67,1702 - UInt Label;Label69,1724 - UInt Label;__anon173::__anon174::Label69,1724 - yamop *labp;labp70,1740 - yamop *labp;__anon173::__anon174::labp70,1740 - } u_a;u_a71,1757 - } u_a;__anon173::u_a71,1757 -} AtomSwiEntry;AtomSwiEntry72,1766 - Functor Tag;Tag76,1821 - Functor Tag;__anon175::Tag76,1821 - UInt Label;Label78,1846 - UInt Label;__anon175::__anon176::Label78,1846 - yamop *labp;labp79,1862 - yamop *labp;__anon175::__anon176::labp79,1862 - } u_f;u_f80,1879 - } u_f;__anon175::u_f80,1879 -} FuncSwiEntry;FuncSwiEntry81,1888 - UInt PairEntry;PairEntry85,1943 - UInt PairEntry;__anon177::PairEntry85,1943 - UInt ConstEntry;ConstEntry86,1961 - UInt ConstEntry;__anon177::ConstEntry86,1961 - UInt FuncEntry;FuncEntry87,1980 - UInt FuncEntry;__anon177::FuncEntry87,1980 - UInt VarEntry;VarEntry88,1998 - UInt VarEntry;__anon177::VarEntry88,1998 -} TypeSwitch;TypeSwitch89,2015 -#define MAX_REG_COPIES MAX_REG_COPIES91,2030 - Int pos;pos94,2074 - Int pos;__anon178::pos94,2074 - Term val;val95,2085 - Term val;__anon178::val95,2085 - Term extra;extra96,2097 - Term extra;__anon178::extra96,2097 -} istack_entry;istack_entry97,2111 -typedef enum { pc_entry, block_entry } add2index_entries;pc_entry99,2128 -typedef enum { pc_entry, block_entry } add2index_entries;block_entry99,2128 -typedef enum { pc_entry, block_entry } add2index_entries;add2index_entries99,2128 - add2index_entries flag;flag102,2204 - add2index_entries flag;__anon180::flag102,2204 - yamop **pi_pc;pi_pc105,2253 - yamop **pi_pc;__anon180::__anon181::__anon182::pi_pc105,2253 - yamop *code, *current_code, *work_pc;code106,2274 - yamop *code, *current_code, *work_pc;__anon180::__anon181::__anon182::code106,2274 - yamop *code, *current_code, *work_pc;current_code106,2274 - yamop *code, *current_code, *work_pc;__anon180::__anon181::__anon182::current_code106,2274 - yamop *code, *current_code, *work_pc;work_pc106,2274 - yamop *code, *current_code, *work_pc;__anon180::__anon181::__anon182::work_pc106,2274 - Term tag;tag107,2318 - Term tag;__anon180::__anon181::__anon182::tag107,2318 - } pce;pce108,2334 - } pce;__anon180::__anon181::pce108,2334 - ClauseUnion *block;block110,2358 - ClauseUnion *block;__anon180::__anon181::__anon183::block110,2358 - yamop **entry_code;entry_code111,2384 - yamop **entry_code;__anon180::__anon181::__anon183::entry_code111,2384 - } cle;cle112,2410 - } cle;__anon180::__anon181::cle112,2410 - } uip;uip113,2421 - } uip;__anon180::uip113,2421 -} path_stack_entry;path_stack_entry114,2430 -#define MAX_ISTACK_DEPTH MAX_ISTACK_DEPTH116,2451 -typedef enum { REFRESH, RECORDA, RECORDZ } expand_values;REFRESH118,2480 -typedef enum { REFRESH, RECORDA, RECORDZ } expand_values;RECORDA118,2480 -typedef enum { REFRESH, RECORDA, RECORDZ } expand_values;RECORDZ118,2480 -typedef enum { REFRESH, RECORDA, RECORDZ } expand_values;expand_values118,2480 - -H/inline-only.h,130 -#define _YAP_INLINE_ONLY_H__YAP_INLINE_ONLY_H_2,28 -#define INLINE_ONLY INLINE_ONLY5,73 -#define INLINE_ONLY INLINE_ONLY8,163 - -H/iswiatoms.h,0 - -H/LOCALS,0 - -H/locals.h,0 - -H/nolocks.h,483 -#define INIT_LOCK(INIT_LOCK5,109 -#define LOCK(LOCK6,137 -#define UNLOCK(UNLOCK7,160 -#define IS_LOCKED(IS_LOCKED8,185 -#define IS_UNLOCKED(IS_UNLOCKED9,213 -#define READ_LOCK(READ_LOCK11,244 -#define READ_UNLOCK(READ_UNLOCK12,274 -#define WRITE_LOCK(WRITE_LOCK13,306 -#define WRITE_UNLOCK(WRITE_UNLOCK14,370 -#define INIT_RWLOCK(INIT_RWLOCK15,434 -#define MUTEX_LOCK(MUTEX_LOCK18,471 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK19,500 -#define MUTEX_UNLOCK(MUTEX_UNLOCK20,532 - -H/qly.h,5880 -#define EXPORT_ATOM_TABLE_SIZE EXPORT_ATOM_TABLE_SIZE31,757 -#define EXPORT_FUNCTOR_TABLE_SIZE EXPORT_FUNCTOR_TABLE_SIZE32,800 -#define EXPORT_OPCODE_TABLE_SIZE EXPORT_OPCODE_TABLE_SIZE33,846 -#define EXPORT_PRED_ENTRY_TABLE_SIZE EXPORT_PRED_ENTRY_TABLE_SIZE34,886 -#define EXPORT_DBREF_TABLE_SIZE EXPORT_DBREF_TABLE_SIZE35,929 -typedef struct export_atom_hash_entry_struct {export_atom_hash_entry_struct37,968 - Atom val;val38,1015 - Atom val;export_atom_hash_entry_struct::val38,1015 -} export_atom_hash_entry_t;export_atom_hash_entry_t39,1027 -typedef struct import_atom_hash_entry_struct {import_atom_hash_entry_struct41,1056 - Atom oval;oval42,1103 - Atom oval;import_atom_hash_entry_struct::oval42,1103 - Atom val;val43,1116 - Atom val;import_atom_hash_entry_struct::val43,1116 - struct import_atom_hash_entry_struct *next;next44,1128 - struct import_atom_hash_entry_struct *next;import_atom_hash_entry_struct::next44,1128 -} import_atom_hash_entry_t;import_atom_hash_entry_t45,1174 -typedef struct export_functor_hash_entry_struct {export_functor_hash_entry_struct47,1203 - Functor val;val48,1253 - Functor val;export_functor_hash_entry_struct::val48,1253 - Atom name;name49,1268 - Atom name;export_functor_hash_entry_struct::name49,1268 - UInt arity;arity50,1281 - UInt arity;export_functor_hash_entry_struct::arity50,1281 -} export_functor_hash_entry_t;export_functor_hash_entry_t51,1295 -typedef struct import_functor_hash_entry_struct {import_functor_hash_entry_struct53,1327 - Functor val;val54,1377 - Functor val;import_functor_hash_entry_struct::val54,1377 - Functor oval;oval55,1392 - Functor oval;import_functor_hash_entry_struct::oval55,1392 - struct import_functor_hash_entry_struct *next;next56,1408 - struct import_functor_hash_entry_struct *next;import_functor_hash_entry_struct::next56,1408 -} import_functor_hash_entry_t;import_functor_hash_entry_t57,1457 -typedef struct import_opcode_hash_entry_struct {import_opcode_hash_entry_struct59,1489 - OPCODE val;val60,1538 - OPCODE val;import_opcode_hash_entry_struct::val60,1538 - int id;id61,1552 - int id;import_opcode_hash_entry_struct::id61,1552 - OPCODE oval;oval62,1562 - OPCODE oval;import_opcode_hash_entry_struct::oval62,1562 - struct import_opcode_hash_entry_struct *next;next63,1577 - struct import_opcode_hash_entry_struct *next;import_opcode_hash_entry_struct::next63,1577 -} import_opcode_hash_entry_t;import_opcode_hash_entry_t64,1625 -typedef struct export_pred_entry_hash_entry_struct {export_pred_entry_hash_entry_struct66,1656 - PredEntry *val;val67,1709 - PredEntry *val;export_pred_entry_hash_entry_struct::val67,1709 - Functor f;f69,1737 - Functor f;export_pred_entry_hash_entry_struct::__anon185::f69,1737 - Atom a;a70,1752 - Atom a;export_pred_entry_hash_entry_struct::__anon185::a70,1752 - } u_af;u_af71,1764 - } u_af;export_pred_entry_hash_entry_struct::u_af71,1764 - Atom module;module72,1774 - Atom module;export_pred_entry_hash_entry_struct::module72,1774 - UInt arity;arity73,1789 - UInt arity;export_pred_entry_hash_entry_struct::arity73,1789 -} export_pred_entry_hash_entry_t;export_pred_entry_hash_entry_t74,1803 -typedef struct import_pred_entry_hash_entry_struct {import_pred_entry_hash_entry_struct76,1838 - PredEntry *val;val77,1891 - PredEntry *val;import_pred_entry_hash_entry_struct::val77,1891 - PredEntry *oval;oval78,1909 - PredEntry *oval;import_pred_entry_hash_entry_struct::oval78,1909 - struct import_pred_entry_hash_entry_struct *next;next79,1928 - struct import_pred_entry_hash_entry_struct *next;import_pred_entry_hash_entry_struct::next79,1928 -} import_pred_entry_hash_entry_t;import_pred_entry_hash_entry_t80,1980 -typedef struct export_dbref_hash_entry_struct {export_dbref_hash_entry_struct82,2015 - DBRef val;val83,2063 - DBRef val;export_dbref_hash_entry_struct::val83,2063 - UInt sz;sz84,2076 - UInt sz;export_dbref_hash_entry_struct::sz84,2076 - UInt refs;refs85,2087 - UInt refs;export_dbref_hash_entry_struct::refs85,2087 -} export_dbref_hash_entry_t;export_dbref_hash_entry_t86,2100 -typedef struct import_dbref_hash_entry_struct {import_dbref_hash_entry_struct88,2130 - DBRef val;val89,2178 - DBRef val;import_dbref_hash_entry_struct::val89,2178 - DBRef oval;oval90,2191 - DBRef oval;import_dbref_hash_entry_struct::oval90,2191 - int count;count91,2205 - int count;import_dbref_hash_entry_struct::count91,2205 - struct import_dbref_hash_entry_struct *next;next92,2218 - struct import_dbref_hash_entry_struct *next;import_dbref_hash_entry_struct::next92,2218 -} import_dbref_hash_entry_t;import_dbref_hash_entry_t93,2265 - QLY_START_X = 0,QLY_START_X96,2310 - QLY_START_OPCODES = 1,QLY_START_OPCODES97,2329 - QLY_START_ATOMS = 2,QLY_START_ATOMS98,2354 - QLY_START_FUNCTORS = 3,QLY_START_FUNCTORS99,2377 - QLY_START_PRED_ENTRIES = 4,QLY_START_PRED_ENTRIES100,2403 - QLY_START_DBREFS = 5,QLY_START_DBREFS101,2433 - QLY_START_MODULE = 6,QLY_START_MODULE102,2457 - QLY_END_MODULES = 7,QLY_END_MODULES103,2481 - QLY_START_LU_CLAUSE = 8,QLY_START_LU_CLAUSE104,2504 - QLY_END_LU_CLAUSES = 9,QLY_END_LU_CLAUSES105,2531 - QLY_NEW_OP = 10,QLY_NEW_OP106,2557 - QLY_END_OPS = 11,QLY_END_OPS107,2576 - QLY_START_PREDICATE = 12,QLY_START_PREDICATE108,2596 - QLY_END_PREDICATES = 13,QLY_END_PREDICATES109,2624 - QLY_FAILCODE = 15,QLY_FAILCODE110,2651 - QLY_ATOM = 16,QLY_ATOM111,2672 - QLY_ATOM_BLOB = 14QLY_ATOM_BLOB112,2689 -} qlf_tag_t;qlf_tag_t113,2710 -#define STATIC_PRED_FLAGS STATIC_PRED_FLAGS115,2724 -#define EXTRA_PRED_FLAGS EXTRA_PRED_FLAGS121,3075 -#define SYSTEM_PRED_FLAGS SYSTEM_PRED_FLAGS124,3218 -#define CHECK(CHECK128,3400 -#define RCHECK(RCHECK134,3809 -#define AllocTempSpace(AllocTempSpace140,4138 -#define EnoughTempSpace(EnoughTempSpace141,4168 - -H/rclause.h,71 -restore_opcodes(yamop *pc, yamop *max USES_REGS)restore_opcodes7,114 - -H/Regs.h,7694 -#define REGS_H REGS_H17,618 -#define MaxTemps MaxTemps24,751 -#define MaxArithms MaxArithms25,772 -#define PUSH_REGS PUSH_REGS28,807 -#undef PUSH_XPUSH_X29,827 -#define PUSH_REGS PUSH_REGS33,863 -#undef PUSH_XPUSH_X34,883 -#define PUSH_REGS PUSH_REGS38,924 -#undef PUSH_XPUSH_X39,945 -#undef PUSH_REGSPUSH_REGS43,983 -#undef PUSH_XPUSH_X44,1001 -#undef PUSH_REGSPUSH_REGS48,1068 -#undef PUSH_XPUSH_X49,1086 -#undef PUSH_REGSPUSH_REGS53,1121 -#undef PUSH_XPUSH_X54,1139 -#define PUSH_REGS PUSH_REGS61,1262 -#define PUSH_X PUSH_X64,1304 -#define __builtin_expect(__builtin_expect70,1384 -#define CACHE_REGSCACHE_REGS82,1761 -#define REFRESH_CACHE_REGSREFRESH_CACHE_REGS83,1780 -#define INIT_REGSINIT_REGS84,1807 -#define PASS_REGS1PASS_REGS185,1825 -#define PASS_REGSPASS_REGS86,1844 -#define USES_REGS1 USES_REGS187,1862 -#define USES_REGSUSES_REGS88,1886 -#define WORKER_REGS(WORKER_REGS89,1904 -typedef struct regstore_tregstore_t91,1930 - CELL EventFlag_; /* 13 */EventFlag_93,1960 - CELL EventFlag_; /* 13 */regstore_t::EventFlag_93,1960 - CELL CreepFlag_; /* 13 */CreepFlag_94,2034 - CELL CreepFlag_; /* 13 */regstore_t::CreepFlag_94,2034 - yamop *P_; /* 7 prolog machine program counter */P_95,2108 - yamop *P_; /* 7 prolog machine program counter */regstore_t::P_95,2108 - CELL *HB_; /* 4 heap (global) stack top at latest c.p. */HB_96,2174 - CELL *HB_; /* 4 heap (global) stack top at latest c.p. */regstore_t::HB_96,2174 - choiceptr BB_; /* 4 local stack top at latest c.p. */BB_98,2284 - choiceptr BB_; /* 4 local stack top at latest c.p. */regstore_t::BB_98,2284 - CELL *H0_; /* 2 base of heap (global) stack */H0_100,2379 - CELL *H0_; /* 2 base of heap (global) stack */regstore_t::H0_100,2379 - tr_fr_ptr TR_; /* 24 top of trail */TR_101,2446 - tr_fr_ptr TR_; /* 24 top of trail */regstore_t::TR_101,2446 - CELL *H_; /* 25 top of heap (global) stack */H_102,2515 - CELL *H_; /* 25 top of heap (global) stack */regstore_t::H_102,2515 - choiceptr B_; /* 26 latest choice point */B_103,2582 - choiceptr B_; /* 26 latest choice point */regstore_t::B_103,2582 - CELL DEPTH_; /* 27 */DEPTH_105,2670 - CELL DEPTH_; /* 27 */regstore_t::DEPTH_105,2670 - yamop *CP_; /* 28 continuation program counter */CP_107,2765 - yamop *CP_; /* 28 continuation program counter */regstore_t::CP_107,2765 - CELL *ENV_; /* 1 current environment */ENV_108,2832 - CELL *ENV_; /* 1 current environment */regstore_t::ENV_108,2832 - struct cut_c_str *CUT_C_TOP;CUT_C_TOP109,2899 - struct cut_c_str *CUT_C_TOP;regstore_t::CUT_C_TOP109,2899 - CELL *YENV_; /* 5 current environment (may differ from ENV)*/YENV_111,2933 - CELL *YENV_; /* 5 current environment (may differ from ENV)*/regstore_t::YENV_111,2933 - CELL *S_; /* 6 structure pointer */S_112,3001 - CELL *S_; /* 6 structure pointer */regstore_t::S_112,3001 - CELL *ASP_; /* 8 top of local stack */ASP_113,3067 - CELL *ASP_; /* 8 top of local stack */regstore_t::ASP_113,3067 - CELL *LCL0_; /* 3 local stack base */LCL0_114,3134 - CELL *LCL0_; /* 3 local stack base */regstore_t::LCL0_114,3134 - tr_fr_ptr CurrentTrailTop_; /* 10 Auxiliary stack top */CurrentTrailTop_115,3202 - tr_fr_ptr CurrentTrailTop_; /* 10 Auxiliary stack top */regstore_t::CurrentTrailTop_115,3202 - ADDR AuxBase_; /* 9 Auxiliary base pointer */AuxBase_116,3285 - ADDR AuxBase_; /* 9 Auxiliary base pointer */regstore_t::AuxBase_116,3285 - CELL *AuxSp_; /* 9 Auxiliary stack pointer */AuxSp_117,3356 - CELL *AuxSp_; /* 9 Auxiliary stack pointer */regstore_t::AuxSp_117,3356 - ADDR AuxTop_; /* 10 Auxiliary stack top */AuxTop_118,3425 - ADDR AuxTop_; /* 10 Auxiliary stack top */regstore_t::AuxTop_118,3425 - Term CurrentModule_;CurrentModule_120,3508 - Term CurrentModule_;regstore_t::CurrentModule_120,3508 - struct myddas_global *MYDDAS_GLOBAL_POINTER;MYDDAS_GLOBAL_POINTER121,3534 - struct myddas_global *MYDDAS_GLOBAL_POINTER;regstore_t::MYDDAS_GLOBAL_POINTER121,3534 - CELL *H_FZ_;H_FZ_123,3626 - CELL *H_FZ_;regstore_t::H_FZ_123,3626 - choiceptr B_FZ_;B_FZ_124,3643 - choiceptr B_FZ_;regstore_t::B_FZ_124,3643 - tr_fr_ptr TR_FZ_;TR_FZ_125,3664 - tr_fr_ptr TR_FZ_;regstore_t::TR_FZ_125,3664 - struct pred_entry *PP_;PP_127,3720 - struct pred_entry *PP_;regstore_t::PP_127,3720 - unsigned int worker_id_;worker_id_129,3787 - unsigned int worker_id_;regstore_t::worker_id_129,3787 - struct worker_local *worker_local_;worker_local_130,3816 - struct worker_local *worker_local_;regstore_t::worker_local_130,3816 - yamop **PREG_ADDR_;PREG_ADDR_132,3902 - yamop **PREG_ADDR_;regstore_t::PREG_ADDR_132,3902 - choiceptr BSEG_;BSEG_134,3943 - choiceptr BSEG_;regstore_t::BSEG_134,3943 - struct or_frame *frame_head_, *frame_tail_;frame_head_135,3964 - struct or_frame *frame_head_, *frame_tail_;regstore_t::frame_head_135,3964 - struct or_frame *frame_head_, *frame_tail_;frame_tail_135,3964 - struct or_frame *frame_head_, *frame_tail_;regstore_t::frame_tail_135,3964 - char *binding_array_;binding_array_136,4012 - char *binding_array_;regstore_t::binding_array_136,4012 - int sba_offset_;sba_offset_137,4038 - int sba_offset_;regstore_t::sba_offset_137,4038 - int sba_end_;sba_end_138,4060 - int sba_end_;regstore_t::sba_end_138,4060 - int sba_size_;sba_size_139,4079 - int sba_size_;regstore_t::sba_size_139,4079 - Term XTERMS[MaxTemps]; /* 29 */XTERMS153,4580 - Term XTERMS[MaxTemps]; /* 29 */regstore_t::XTERMS153,4580 - yamop *ARITH_EXCEPTION_;ARITH_EXCEPTION_155,4658 - yamop *ARITH_EXCEPTION_;regstore_t::ARITH_EXCEPTION_155,4658 -REGSTORE;REGSTORE157,4691 -#define XREGS XREGS163,4745 -#define XREGS XREGS171,4900 -#undef CACHE_REGSCACHE_REGS179,4989 -#undef REFRESH_CACHE_REGSREFRESH_CACHE_REGS180,5007 -#undef INIT_REGSINIT_REGS181,5033 -#undef CACHE_REGSCACHE_REGS182,5050 -#undef PASS_REGSPASS_REGS183,5068 -#undef PASS_REGS1PASS_REGS1184,5085 -#undef USES_REGSUSES_REGS185,5103 -#undef USES_REGS1USES_REGS1186,5120 -#undef WORKER_REGSWORKER_REGS187,5138 -#define CACHE_REGS CACHE_REGS188,5157 -#define REFRESH_CACHE_REGS REFRESH_CACHE_REGS189,5250 -#define INIT_REGS INIT_REGS190,5341 -#define WORKER_REGS(WORKER_REGS191,5413 -#define PASS_REGS1 PASS_REGS1192,5504 -#define PASS_REGS PASS_REGS193,5532 -#define USES_REGS1 USES_REGS1194,5561 -#define USES_REGS USES_REGS195,5608 -#define Yap_regp Yap_regp196,5656 -#define Yap_REGS Yap_REGS200,5691 - Term X[MaxTemps]; /* 29 */X204,5745 -#define XREGS XREGS206,5814 - -H/rheap.h,5735 -static char SccsId[] = "@(#)rheap.c 1.3 3/15/90";SccsId238,6967 -#define Atomics Atomics241,7025 -#define Funcs Funcs242,7043 -#define ConstantTermAdjust(ConstantTermAdjust244,7060 -#define DBGroundTermAdjust(DBGroundTermAdjust245,7124 -#define AdjustDBTerm(AdjustDBTerm246,7188 -#define AdjustSwitchTable(AdjustSwitchTable247,7258 -#define RestoreOtaplInst(RestoreOtaplInst249,7385 -#define RestoreDBErasedMarker(RestoreDBErasedMarker251,7513 -#define RestoreLogDBErasedMarker(RestoreLogDBErasedMarker252,7581 -#define RestoreForeignCode(RestoreForeignCode253,7655 -#define RestoreEmptyWakeups(RestoreEmptyWakeups254,7717 -#define RestoreAtoms(RestoreAtoms255,7781 -#define RestoreWideAtoms(RestoreWideAtoms256,7831 -#define RestoreSWIBlobs(RestoreSWIBlobs257,7889 -#define RestoreSWIBlobTypes(RestoreSWIBlobTypes258,7945 -#define RestoreInvisibleAtoms(RestoreInvisibleAtoms259,8009 -#define RestorePredHash(RestorePredHash260,8077 -#define RestoreHiddenPredicates(RestoreHiddenPredicates261,8133 -#define RestoreDBTermsList(RestoreDBTermsList262,8205 -#define RestoreExpandList(RestoreExpandList263,8267 -#define RestoreIntKeys(RestoreIntKeys264,8327 -#define RestoreIntLUKeys(RestoreIntLUKeys265,8381 -#define RestoreIntBBKeys(RestoreIntBBKeys266,8439 -#define RestoreDeadStaticClauses(RestoreDeadStaticClauses267,8497 -#define RestoreDeadMegaClauses(RestoreDeadMegaClauses268,8571 -#define RestoreDeadStaticIndices(RestoreDeadStaticIndices269,8641 -#define RestoreDBErasedList(RestoreDBErasedList270,8715 -#define RestoreDBErasedIList(RestoreDBErasedIList271,8779 -#define RestoreYapRecords(RestoreYapRecords272,8845 -static Term ConstantTermAdjust__(Term t USES_REGS) {ConstantTermAdjust__273,8905 -static Term DBGroundTermAdjust__(Term t USES_REGS) {DBGroundTermAdjust__279,9024 -static void do_clean_susp_clauses(yamop *ipc USES_REGS) {do_clean_susp_clauses290,9338 -static void AdjustSwitchTable__(op_numbers op, yamop *table,AdjustSwitchTable__309,9859 -static void RestoreAtoms__(USES_REGS1) {RestoreAtoms__406,12604 -static void RestoreWideAtoms__(USES_REGS1) {RestoreWideAtoms__419,12929 -static void RestoreInvisibleAtoms__(USES_REGS1) {RestoreInvisibleAtoms__432,13269 -static Term AdjustDBTerm__(Term trm, Term *p_base, Term *p_lim,AdjustDBTerm__442,13623 -static void RestoreDBTerm(DBTerm *dbr, bool src, int attachments USES_REGS) {RestoreDBTerm501,15236 -static void RestoreEmptyWakeups__(USES_REGS1) {RestoreEmptyWakeups__529,16016 -static void RestoreStaticClause(StaticClause *cl USES_REGS)RestoreStaticClause537,16226 -static void RestoreMegaClause(MegaClause *cl USES_REGS)RestoreMegaClause554,16750 -static void RestoreDynamicClause(DynamicClause *cl, PredEntry *pp USES_REGS)RestoreDynamicClause588,17713 -static void RestoreLUClause(LogUpdClause *cl, PredEntry *pp USES_REGS)RestoreLUClause602,18123 -static void RestoreDBTermEntry(struct dbterm_list *dbl USES_REGS) {RestoreDBTermEntry626,18803 -static void CleanLUIndex(LogUpdIndex *idx, int recurse USES_REGS) {CleanLUIndex643,19232 -static void CleanSIndex(StaticIndex *idx, int recurse USES_REGS) {CleanSIndex666,19969 -#define RestoreBlobTypes(RestoreBlobTypes687,20572 -#define RestoreBlobs(RestoreBlobs688,20630 -static void RestoreBlobTypes__(USES_REGS1) {}RestoreBlobTypes__690,20682 -static void RestoreBlobs__(USES_REGS1) {RestoreBlobs__692,20729 -static void RestoreHiddenPredicates__(USES_REGS1) {RestoreHiddenPredicates__697,20838 -static void RestorePredHash__(USES_REGS1) {RestorePredHash__702,20999 -static void RestoreEnvInst(yamop start[2], yamop **instp, op_numbers opc,RestoreEnvInst712,21317 -static void RestoreOtaplInst__(yamop start[1], OPCODE opc,RestoreOtaplInst__726,21697 -static void RestoreDBTermsList__(USES_REGS1) {RestoreDBTermsList__744,22180 -static void RestoreExpandList__(USES_REGS1) {RestoreExpandList__755,22428 -static void RestoreUdiControlBlocks(void) {}RestoreUdiControlBlocks769,22790 -static void RestoreIntKeys__(USES_REGS1) {RestoreIntKeys__771,22836 -static void RestoreIntLUKeys__(USES_REGS1) {RestoreIntLUKeys__786,23201 -static void RestoreIntBBKeys__(USES_REGS1) {RestoreIntBBKeys__808,23752 -static void RestoreDBErasedMarker__(USES_REGS1) {RestoreDBErasedMarker__823,24140 -static void RestoreLogDBErasedMarker__(USES_REGS1) {RestoreLogDBErasedMarker__832,24423 -static void RestoreDeadStaticClauses__(USES_REGS1) {RestoreDeadStaticClauses__847,25040 -static void RestoreDeadMegaClauses__(USES_REGS1) {RestoreDeadMegaClauses__858,25298 -static void RestoreDeadStaticIndices__(USES_REGS1) {RestoreDeadStaticIndices__869,25564 -static void RestoreDBErasedList__(USES_REGS1) {RestoreDBErasedList__880,25847 -static void RestoreDBErasedIList__(USES_REGS1) {RestoreDBErasedIList__890,26085 -static void RestoreForeignCode__(USES_REGS1) {RestoreForeignCode__900,26330 -static void RestoreBallTerm(int wid) {RestoreBallTerm937,27459 -static void RestoreYapRecords__(USES_REGS1) {RestoreYapRecords__945,27648 -static void restore_codes(void) {restore_codes967,28190 -static void RestoreDBEntry(DBRef dbr USES_REGS) {RestoreDBEntry976,28344 -static void RestoreDB(DBEntry *pp USES_REGS) {RestoreDB1007,29287 -static void CleanClauses(yamop *First, yamop *Last, PredEntry *pp USES_REGS) {CleanClauses1039,30237 -static void RestoreBB(BlackBoardEntry *pp, int int_key USES_REGS) {RestoreBB1074,31196 -static void restore_static_array(StaticArrayEntry *ae USES_REGS) {restore_static_array1095,31690 -static void CleanCode(PredEntry *pp USES_REGS) {CleanCode1228,35258 -static void RestoreEntries(PropEntry *pp, int int_key USES_REGS) {RestoreEntries1314,38178 -static void RestoreAtom(AtomEntry *at USES_REGS) {RestoreAtom1480,43579 - -H/saveclause.h,0 - -H/ScannerTypes.h,1330 -typedef enum TokenKinds {TokenKinds1,0 - Name_tok,Name_tok2,26 - Number_tok,Number_tok3,38 - Var_tok,Var_tok4,52 - String_tok,String_tok5,63 - BQString_tok,BQString_tok6,77 - Ponctuation_tok,Ponctuation_tok7,93 - Error_tok,Error_tok8,112 - QuasiQuotes_tok,QuasiQuotes_tok9,125 - eot_tokeot_tok10,144 -} tkinds;tkinds11,154 -typedef struct TOKEN {TOKEN13,165 - enum TokenKinds Tok;Tok14,188 - enum TokenKinds Tok;TOKEN::Tok14,188 - Term TokInfo;TokInfo15,211 - Term TokInfo;TOKEN::TokInfo15,211 - int TokPos;TokPos16,227 - int TokPos;TOKEN::TokPos16,227 - struct TOKEN *TokNext;TokNext17,241 - struct TOKEN *TokNext;TOKEN::TokNext17,241 -} TokEntry;TokEntry18,266 -#define Ord(Ord20,279 -#define NextToken NextToken22,318 -typedef struct VARSTRUCT {VARSTRUCT24,360 - Term VarAdr;VarAdr25,387 - Term VarAdr;VARSTRUCT::VarAdr25,387 - CELL hv;hv26,402 - CELL hv;VARSTRUCT::hv26,402 - UInt refs;refs27,413 - UInt refs;VARSTRUCT::refs27,413 - struct VARSTRUCT *VarLeft, *VarRight;VarLeft28,426 - struct VARSTRUCT *VarLeft, *VarRight;VARSTRUCT::VarLeft28,426 - struct VARSTRUCT *VarLeft, *VarRight;VarRight28,426 - struct VARSTRUCT *VarLeft, *VarRight;VARSTRUCT::VarRight28,426 - Atom VarRep;VarRep29,466 - Atom VarRep;VARSTRUCT::VarRep29,466 -} VarEntry;VarEntry30,481 - -H/sig.h,0 - -H/sshift.h,11318 -#define REINIT_LOCK(REINIT_LOCK18,588 -#define REINIT_RWLOCK(REINIT_RWLOCK19,625 -#define CharP(CharP22,668 -#define CodeAdjust(CodeAdjust25,706 -#define PtoTRAdjust(PtoTRAdjust26,758 -#define BaseAddrAdjust(BaseAddrAdjust27,812 -#define CutCAdjust(CutCAdjust28,872 -#define ChoicePtrAdjust(ChoicePtrAdjust29,924 -#define FuncAdjust(FuncAdjust30,986 -#define AtomTermAdjust(AtomTermAdjust31,1038 -#define TermToGlobalOrAtomAdjust(TermToGlobalOrAtomAdjust32,1098 -#define AtomAdjust(AtomAdjust33,1178 -#define IsOldCode(IsOldCode34,1230 -#define IsOldLocal(IsOldLocal35,1280 -#define IsOldLocalPtr(IsOldLocalPtr36,1332 -#define IsOldCodeCellPtr(IsOldCodeCellPtr37,1390 -#define IsOldDelay(IsOldDelay38,1454 -#define IsOldDelayPtr(IsOldDelayPtr39,1506 -#define IsOldLocalInTR(IsOldLocalInTR40,1564 -#define IsOldLocalInTRPtr(IsOldLocalInTRPtr41,1624 -#define IsOldGlobal(IsOldGlobal42,1690 -#define IsOldGlobalPtr(IsOldGlobalPtr43,1744 -#define IsOldTrail(IsOldTrail44,1804 -#define IsOldTrailPtr(IsOldTrailPtr45,1856 -#define NoAGCAtomAdjust(NoAGCAtomAdjust46,1914 -#define AddrAdjust(AddrAdjust50,2157 -#define BlockAdjust(BlockAdjust51,2209 -#define CodeVarAdjust(CodeVarAdjust52,2263 -#define ConstantAdjust(ConstantAdjust53,2321 -#define ArityAdjust(ArityAdjust54,2381 -#define OpcodeAdjust(OpcodeAdjust57,2579 -#define ModuleAdjust(ModuleAdjust58,2635 -#define DBRecordAdjust(DBRecordAdjust60,2770 -#define PredEntryAdjust(PredEntryAdjust61,2830 -#define ModEntryPtrAdjust(ModEntryPtrAdjust62,2892 -#define AtomEntryAdjust(AtomEntryAdjust63,2958 -#define GlobalEntryAdjust(GlobalEntryAdjust64,3020 -#define BlobTermInCodeAdjust(BlobTermInCodeAdjust65,3086 -#define CellPtoHeapAdjust(CellPtoHeapAdjust66,3158 -#define PtoAtomHashEntryAdjust(PtoAtomHashEntryAdjust67,3224 -#define CellPtoHeapCellAdjust(CellPtoHeapCellAdjust68,3300 -#define CellPtoTRAdjust(CellPtoTRAdjust69,3374 -#define CodeAddrAdjust(CodeAddrAdjust70,3436 -#define ConsultObjAdjust(ConsultObjAdjust71,3496 -#define DelayAddrAdjust(DelayAddrAdjust72,3560 -#define DelayAdjust(DelayAdjust73,3622 -#define GlobalAdjust(GlobalAdjust74,3676 -#define DBRefAdjust(DBRefAdjust75,3732 -#define DBRefPAdjust(DBRefPAdjust76,3788 -#define DBTermAdjust(DBTermAdjust77,3844 -#define LUIndexAdjust(LUIndexAdjust78,3900 -#define SIndexAdjust(SIndexAdjust79,3958 -#define LocalAddrAdjust(LocalAddrAdjust80,4014 -#define GlobalAddrAdjust(GlobalAddrAdjust81,4076 -#define OpListAdjust(OpListAdjust82,4140 -#define PtoLUCAdjust(PtoLUCAdjust83,4196 -#define PtoStCAdjust(PtoStCAdjust84,4252 -#define PtoArrayEAdjust(PtoArrayEAdjust85,4308 -#define PtoArraySAdjust(PtoArraySAdjust86,4370 -#define PtoGlobalEAdjust(PtoGlobalEAdjust87,4432 -#define PtoDelayAdjust(PtoDelayAdjust88,4496 -#define PtoGloAdjust(PtoGloAdjust89,4556 -#define PtoLocAdjust(PtoLocAdjust90,4612 -#define PtoHeapCellAdjust(PtoHeapCellAdjust91,4668 -#define TermToGlobalAdjust(TermToGlobalAdjust92,4734 -#define PtoOpAdjust(PtoOpAdjust93,4802 -#define PtoLUClauseAdjust(PtoLUClauseAdjust94,4856 -#define PtoLUIndexAdjust(PtoLUIndexAdjust95,4922 -#define PtoDBTLAdjust(PtoDBTLAdjust96,4986 -#define PtoPredAdjust(PtoPredAdjust97,5044 -#define PtoPtoPredAdjust(PtoPtoPredAdjust98,5102 -#define OpRTableAdjust(OpRTableAdjust99,5166 -#define OpEntryAdjust(OpEntryAdjust100,5226 -#define PropAdjust(PropAdjust101,5284 -#define BlobTypeAdjust(BlobTypeAdjust102,5336 -#define TrailAddrAdjust(TrailAddrAdjust103,5396 -#define XAdjust(XAdjust104,5458 -#define YAdjust(YAdjust105,5504 -#define LocalAdjust(LocalAdjust106,5550 -#define TrailAdjust(TrailAdjust107,5604 -#define HoldEntryAdjust(HoldEntryAdjust108,5658 -#define CodeCharPAdjust(CodeCharPAdjust109,5720 -#define CodeConstCharPAdjust(CodeConstCharPAdjust110,5782 -#define CodeVoidPAdjust(CodeVoidPAdjust111,5854 -#define HaltHookAdjust(HaltHookAdjust112,5916 -#define TokEntryAdjust(TokEntryAdjust113,5976 -#define VarEntryAdjust(VarEntryAdjust114,6036 -#define ConsumerChoicePtrAdjust(ConsumerChoicePtrAdjust115,6096 -#define GeneratorChoicePtrAdjust(GeneratorChoicePtrAdjust116,6174 -#define IsHeapP(IsHeapP117,6254 -#define IsOldVarTableTrailPtr(IsOldVarTableTrailPtr118,6300 -#define IsOldTokenTrailPtr(IsOldTokenTrailPtr119,6374 -IsHeapP__ (CELL * ptr USES_REGS)IsHeapP__125,6560 -#define OrArgAdjust(OrArgAdjust134,6794 -#define TabEntryAdjust(TabEntryAdjust135,6820 -PtoGloAdjust__ (CELL * ptr USES_REGS)PtoGloAdjust__142,6997 -PtoDelayAdjust__ (CELL * ptr USES_REGS)PtoDelayAdjust__159,7412 -PtoBaseAdjust__ (CELL * ptr USES_REGS)PtoBaseAdjust__170,7739 -PtoTRAdjust__ (tr_fr_ptr ptr USES_REGS)PtoTRAdjust__180,7961 -CellPtoTRAdjust__ (CELL * ptr USES_REGS)CellPtoTRAdjust__190,8180 -PtoLocAdjust__ (CELL * ptr USES_REGS)PtoLocAdjust__200,8391 -CutCAdjust__ (struct cut_c_str * ptr USES_REGS)CutCAdjust__209,8631 -ChoicePtrAdjust__ (choiceptr ptr USES_REGS)ChoicePtrAdjust__219,8861 -ConsumerChoicePtrAdjust__ (choiceptr ptr USES_REGS)ConsumerChoicePtrAdjust__230,9116 -GeneratorChoicePtrAdjust__ (choiceptr ptr USES_REGS)GeneratorChoicePtrAdjust__240,9365 -GlobalAdjust__ (CELL val USES_REGS)GlobalAdjust__252,9610 -DelayAdjust__ (CELL val USES_REGS)DelayAdjust__269,9962 -GlobalAddrAdjust__ (ADDR ptr USES_REGS)GlobalAddrAdjust__281,10245 -DelayAddrAdjust__ (ADDR ptr USES_REGS)DelayAddrAdjust__299,10610 -BaseAddrAdjust__ (ADDR ptr USES_REGS)BaseAddrAdjust__311,10899 -LocalAdjust__ (CELL val USES_REGS)LocalAdjust__321,11082 -LocalAddrAdjust__ (ADDR ptr USES_REGS)LocalAddrAdjust__331,11263 -TrailAdjust__ (CELL val USES_REGS)TrailAdjust__341,11444 -TrailAddrAdjust__ (ADDR ptr USES_REGS)TrailAddrAdjust__351,11626 -TokEntryAdjust__ (TokEntry * ptr USES_REGS)TokEntryAdjust__361,11828 -VarEntryAdjust__ (VarEntry * ptr USES_REGS)VarEntryAdjust__371,12048 -FuncAdjust__ (Functor f USES_REGS)FuncAdjust__382,12283 -CellPtoHeapAdjust__ (CELL * ptr USES_REGS)CellPtoHeapAdjust__392,12523 -HoldEntryAdjust__ (HoldEntry * ptr USES_REGS)HoldEntryAdjust__402,12779 -DBRecordAdjust__ (struct record_list * ptr USES_REGS)DBRecordAdjust__410,13046 -AtomAdjust__ (Atom at USES_REGS)AtomAdjust__423,13307 -NoAGCAtomAdjust__ (Atom at USES_REGS)NoAGCAtomAdjust__431,13469 -PropAdjust__ (Prop p USES_REGS)PropAdjust__441,13633 -AtomAdjust__ (Atom at USES_REGS)AtomAdjust__451,13795 -NoAGCAtomAdjust__ (Atom at USES_REGS)NoAGCAtomAdjust__459,14008 -PropAdjust__ (Prop p USES_REGS)PropAdjust__469,14223 -BlobTypeAdjust__ (struct YAP_blob_t *at USES_REGS)BlobTypeAdjust__480,14483 -PredEntryAdjust__ (PredEntry *p USES_REGS)PredEntryAdjust__488,14764 -ModEntryPtrAdjust__ (struct mod_entry *p USES_REGS)ModEntryPtrAdjust__496,15041 -ConstantAdjust__ (COUNT val USES_REGS)ConstantAdjust__504,15300 -ArityAdjust__ (Int val USES_REGS)ArityAdjust__512,15451 -OpcodeAdjust__ (OPCODE val USES_REGS)OpcodeAdjust__520,15607 -#define DoubleInCodeAdjust(DoubleInCodeAdjust525,15696 -#define IntegerInCodeAdjust(IntegerInCodeAdjust527,15727 -#define IntegerAdjust(IntegerAdjust529,15760 -#define ExternalFunctionAdjust(ExternalFunctionAdjust531,15791 -AtomTermAdjust__ (Term at USES_REGS)AtomTermAdjust__536,15930 -ModuleAdjust__ (Term t USES_REGS)ModuleAdjust__546,16142 -CodeVarAdjust__ (Term var USES_REGS)CodeVarAdjust__554,16307 -BlobTermInCodeAdjust__ (Term t USES_REGS)BlobTermInCodeAdjust__567,16550 -CodeComposedTermAdjust__ (Term t USES_REGS)CodeComposedTermAdjust__576,16747 -BlobTermInCodeAdjust__ (Term t USES_REGS)BlobTermInCodeAdjust__587,16951 -CodeComposedTermAdjust__ (Term t USES_REGS)CodeComposedTermAdjust__595,17147 -AtomEntryAdjust__ (AtomEntry * at USES_REGS)AtomEntryAdjust__606,17367 -GlobalEntryAdjust__ (GlobalEntry * at USES_REGS)GlobalEntryAdjust__614,17612 -ConsultObjAdjust__ (union CONSULT_OBJ *co USES_REGS)ConsultObjAdjust__624,17884 -DBRefAdjust__ (DBRef dbr USES_REGS)DBRefAdjust__634,18126 -DBRefPAdjust__ (DBRef * dbrp USES_REGS)DBRefPAdjust__644,18330 -DBTermAdjust__ (DBTerm * dbtp USES_REGS)DBTermAdjust__654,18546 -SIndexAdjust__ (struct static_index *si USES_REGS)SIndexAdjust__664,18804 -LUIndexAdjust__ (struct logic_upd_index *lui USES_REGS)LUIndexAdjust__677,19116 -CodeAdjust__ (Term dbr USES_REGS)CodeAdjust__688,19371 -AddrAdjust__ (ADDR addr USES_REGS)AddrAdjust__698,19551 -CodeAddrAdjust__ (CODEADDR addr USES_REGS)CodeAddrAdjust__708,19759 -CodeCharPAdjust__ (char * addr USES_REGS)CodeCharPAdjust__717,19977 -CodeConstCharPAdjust__ (const char * addr USES_REGS)CodeConstCharPAdjust__727,20212 -CodeVoidPAdjust__ (void * addr USES_REGS)CodeVoidPAdjust__737,20435 -HaltHookAdjust__ (struct halt_hook * addr USES_REGS)HaltHookAdjust__747,20699 -BlockAdjust__ (BlockHeader * addr USES_REGS)BlockAdjust__757,20970 -PtoOpAdjust__ (yamop * ptr USES_REGS)PtoOpAdjust__765,21197 -OpListAdjust__ (struct operator_entry * ptr USES_REGS)OpListAdjust__775,21468 -PtoLUClauseAdjust__ (struct logic_upd_clause * ptr USES_REGS)PtoLUClauseAdjust__786,21785 -PtoLUIndexAdjust__ (struct logic_upd_index * ptr USES_REGS)PtoLUIndexAdjust__794,22078 -PtoHeapCellAdjust__ (CELL * ptr USES_REGS)PtoHeapCellAdjust__804,22317 -PtoAtomHashEntryAdjust__ (AtomHashEntry * ptr USES_REGS)PtoAtomHashEntryAdjust__812,22564 -TermToGlobalAdjust__ (Term t USES_REGS)TermToGlobalAdjust__820,22807 -TermToGlobalOrAtomAdjust__ (Term t USES_REGS)TermToGlobalOrAtomAdjust__830,23034 -OpRTableAdjust__ (op_entry * ptr USES_REGS)OpRTableAdjust__848,23450 -OpEntryAdjust__ (OpEntry * ptr USES_REGS)OpEntryAdjust__858,23708 -PtoPredAdjust__ (PredEntry * ptr USES_REGS)PtoPredAdjust__866,23939 -PtoPtoPredAdjust__ (PredEntry **ptr USES_REGS)PtoPtoPredAdjust__874,24182 -PtoArrayEAdjust__ (ArrayEntry * ptr USES_REGS)PtoArrayEAdjust__886,24460 -PtoGlobalEAdjust__ (GlobalEntry * ptr USES_REGS)PtoGlobalEAdjust__897,24741 -PtoArraySAdjust__ (StaticArrayEntry * ptr USES_REGS)PtoArraySAdjust__908,25040 -PtoLUCAdjust__ (struct logic_upd_clause *ptr USES_REGS)PtoLUCAdjust__920,25371 -PtoStCAdjust__ (struct static_clause *ptr USES_REGS)PtoStCAdjust__931,25685 -PtoDBTLAdjust__ (struct dbterm_list * addr USES_REGS)PtoDBTLAdjust__941,25988 -XAdjust__ (wamreg reg USES_REGS)XAdjust__952,26244 -XAdjust__ (wamreg reg USES_REGS)XAdjust__963,26440 -YAdjust__ (yslot reg USES_REGS)YAdjust__974,26609 -IsOldLocal__ (CELL reg USES_REGS)IsOldLocal__984,26767 -IsOldLocalPtr__ (CELL * ptr USES_REGS)IsOldLocalPtr__994,26970 -IsOldLocalInTR__ (CELL reg USES_REGS)IsOldLocalInTR__1006,27242 -IsOldLocalInTRPtr__ (CELL * ptr USES_REGS)IsOldLocalInTRPtr__1016,27451 -IsOldH__ (CELL reg USES_REGS)IsOldH__1027,27653 -IsOldGlobal__ (CELL reg USES_REGS)IsOldGlobal__1039,27840 -IsOldDelay__ (CELL reg USES_REGS)IsOldDelay__1048,28042 -IsOldGlobalPtr__ (CELL * ptr USES_REGS)IsOldGlobalPtr__1058,28251 -IsOldTrail__ (CELL reg USES_REGS)IsOldTrail__1068,28459 -IsOldTrailPtr__ (CELL * ptr USES_REGS)IsOldTrailPtr__1078,28666 -IsOldVarTableTrailPtr__ (struct VARSTRUCT *ptr USES_REGS)IsOldVarTableTrailPtr__1088,28898 -IsOldTokenTrailPtr__ (struct TOKEN *ptr USES_REGS)IsOldTokenTrailPtr__1098,29142 -IsOldCode__ (CELL reg USES_REGS)IsOldCode__1108,29360 -IsOldCodeCellPtr__ (CELL * ptr USES_REGS)IsOldCodeCellPtr__1122,29684 -IsGlobal__ (CELL reg USES_REGS)IsGlobal__1132,29896 - -H/Tags_24bits.h,1366 -#define AllTagBits AllTagBits37,1188 -#define TagBits TagBits38,1220 -#define MaskAdr MaskAdr39,1252 -#define AdrHiBit AdrHiBit40,1284 -#define NumberTag NumberTag41,1316 -#define FloatTag FloatTag42,1348 -#define AtomTag AtomTag43,1380 -#define PairTag PairTag44,1412 -#define ApplTag ApplTag45,1444 -#define RefTag RefTag46,1476 -#define MaskBits MaskBits48,1508 -#define PairBit PairBit50,1531 -#define ApplBit ApplBit51,1567 -#define CompBits CompBits52,1603 -#define NumberMask NumberMask53,1632 -#define MAX_ABS_INT MAX_ABS_INT54,1663 -#define TagOf(TagOf56,1741 -#define LowTagOf(LowTagOf57,1782 -#define NonTagPart(NonTagPart58,1826 -#define TAGGEDA(TAGGEDA59,1870 -#define TAGGED(TAGGED60,1913 -#define NONTAGGED(NONTAGGED61,1969 -#define BitOn(BitOn62,2020 -#define CHKTAG(CHKTAG63,2064 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK66,2169 -IsVarTerm (Term t)IsVarTerm73,2288 -IsNonVarTerm (Term t)IsNonVarTerm83,2396 -RepPair (Term t)RepPair93,2504 -AbsPair (Term * p)AbsPair103,2617 -IsPairTerm (Term t)IsPairTerm113,2739 -RepAppl (Term t)RepAppl123,2851 -AbsAppl (Term * p)AbsAppl133,2964 -IsApplTerm (Term t)IsApplTerm143,3086 -IsAtomOrIntTerm (Term t)IsAtomOrIntTerm153,3203 -AdjustPtr (Term t, Term off)AdjustPtr164,3338 -AdjustIDBPtr (Term t, Term off)AdjustIDBPtr174,3471 -IntOfTerm (Term t)IntOfTerm182,3557 - -H/Tags_32bits.h,1314 -#define SHIFT_HIGH_TAG SHIFT_HIGH_TAG42,1193 -#define MKTAG(MKTAG44,1221 -#define TagBits TagBits46,1284 -#define LowTagBits LowTagBits47,1335 -#define HighTagBits HighTagBits48,1386 -#define AdrHiBit AdrHiBit49,1437 -#define MaskAdr MaskAdr50,1509 -#define MaskPrim MaskPrim51,1581 -#define NumberTag NumberTag52,1655 -#define AtomTag AtomTag53,1706 -#define PairTag PairTag54,1757 -#define ApplTag ApplTag55,1808 -#define MAX_ABS_INT MAX_ABS_INT56,1859 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK59,1976 -#define MaskBits MaskBits61,2016 -#define PairBit PairBit63,2039 -#define ApplBit ApplBit64,2079 -#define NonTagPart(NonTagPart66,2120 -#define TAGGEDA(TAGGEDA67,2165 -#define TAGGED(TAGGED68,2208 -#define NONTAGGED(NONTAGGED69,2267 -#define BitOn(BitOn70,2321 -#define CHKTAG(CHKTAG71,2365 -IsVarTerm (Term t)IsVarTerm77,2522 -IsNonVarTerm (Term t)IsNonVarTerm87,2664 -RepPair (Term t)RepPair97,2808 -AbsPair (Term * p)AbsPair107,2949 -IsPairTerm (Term t)IsPairTerm117,3097 -RepAppl (Term t)RepAppl127,3245 -AbsAppl (Term * p)AbsAppl137,3386 -IsApplTerm (Term t)IsApplTerm147,3534 -IsAtomOrIntTerm (Term t)IsAtomOrIntTerm157,3685 -AdjustPtr (Term t, Term off)AdjustPtr168,3864 -AdjustIDBPtr (Term t, Term off)AdjustIDBPtr178,4025 -IntOfTerm (Term t)IntOfTerm189,4173 - -H/Tags_32LowTag.h,1446 -#define TAG_LOW_BITS_32 TAG_LOW_BITS_3219,714 -#define SHIFT_LOW_TAG SHIFT_LOW_TAG37,1353 -#define SHIFT_HIGH_TAG SHIFT_HIGH_TAG38,1377 -#define MKTAG(MKTAG40,1403 -#define TagBits TagBits42,1466 -#define LowTagBits LowTagBits43,1517 -#define LowBit LowBit44,1568 -#define HighTagBits HighTagBits45,1618 -#define NumberTag NumberTag46,1669 -#define AtomTag AtomTag47,1720 -#define MAX_ABS_INT MAX_ABS_INT53,1854 -#define UNIQUE_TAG_FOR_PAIRS UNIQUE_TAG_FOR_PAIRS62,2020 -#define PairBits PairBits64,2052 -#define ApplBit ApplBit65,2103 -#define PrimiBits PrimiBits66,2154 -#define NumberBits NumberBits67,2205 -#define NumberMask NumberMask68,2256 -#define TagOf(TagOf70,2308 -#define LowTagOf(LowTagOf71,2352 -#define NonTagPart(NonTagPart72,2399 -#define TAGGED(TAGGED73,2454 -#define NONTAGGED(NONTAGGED74,2537 -#define TAGGEDA(TAGGEDA75,2615 -#define CHKTAG(CHKTAG76,2665 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK79,2770 -IsVarTerm (Term t)IsVarTerm85,2914 -IsNonVarTerm (Term t)IsNonVarTerm95,3060 -RepPair (Term t)RepPair105,3208 -AbsPair (Term * p)AbsPair115,3349 -IsPairTerm (Term t)IsPairTerm125,3498 -RepAppl (Term t)RepAppl135,3658 -AbsAppl (Term * p)AbsAppl145,3800 -IsApplTerm (Term t)IsApplTerm155,3948 -IsAtomOrIntTerm (Term t)IsAtomOrIntTerm165,4110 -AdjustPtr (Term t, Term off)AdjustPtr176,4280 -AdjustIDBPtr (Term t, Term off)AdjustIDBPtr186,4441 -IntOfTerm (Term t)IntOfTerm197,4589 - -H/Tags_32Ops.h,1841 -#define TAGS_FAST_OPS TAGS_FAST_OPS54,1627 -#define SHIFT_HIGH_TAG SHIFT_HIGH_TAG56,1652 -#define MKTAG(MKTAG58,1680 -#define TagBits TagBits60,1743 -#define LowTagBits LowTagBits61,1794 -#define LowBit LowBit62,1845 -#define HighTagBits HighTagBits63,1895 -#define AdrHiBit AdrHiBit64,1946 -#define MaskAdr MaskAdr65,2018 -#define MaskPrim MaskPrim66,2092 -#define NumberTag NumberTag67,2166 -#define AtomTag AtomTag68,2217 -#define MAX_ABS_INT MAX_ABS_INT69,2268 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK72,2378 -#define MaskBits MaskBits74,2418 -#define UNIQUE_TAG_FOR_PAIRS UNIQUE_TAG_FOR_PAIRS84,2666 -#define PairBit PairBit88,2730 -#define ApplBit ApplBit89,2770 -#define PairBit PairBit91,2816 -#define ApplBit ApplBit92,2856 -#define TagOf(TagOf95,2904 -#define LowTagOf(LowTagOf96,2944 -#define NonTagPart(NonTagPart97,2987 -#define TAGGEDA(TAGGEDA98,3032 -#define TAGGED(TAGGED99,3075 -#define NONTAGGED(NONTAGGED100,3134 -#define BitOn(BitOn101,3188 -#define CHKTAG(CHKTAG102,3232 -IsVarTerm (Term t)IsVarTerm110,3454 -IsNonVarTerm (Term t)IsNonVarTerm120,3596 -RepPair (Term t)RepPair131,3765 -AbsPair (Term * p)AbsPair141,3898 -IsPairTerm (Term t)IsPairTerm151,4039 -RepAppl (Term t)RepAppl161,4182 -AbsAppl (Term * p)AbsAppl171,4322 -IsApplTerm (Term t)IsApplTerm181,4461 -RepPair (Term t)RepPair192,4616 -AbsPair (Term * p)AbsPair202,4756 -IsPairTerm (Term t)IsPairTerm212,4904 -RepAppl (Term t)RepAppl222,5053 -AbsAppl (Term * p)AbsAppl232,5186 -IsApplTerm (Term t)IsApplTerm242,5327 -IsAtomOrIntTerm (Term t)IsAtomOrIntTerm253,5480 -IntOfTerm (Term t)IntOfTerm264,5647 -AdjustPtr (Term t, Term off)AdjustPtr276,5841 -AdjustIDBPtr (Term t, Term off)AdjustIDBPtr290,6163 -AdjustPtr (Term t, Term off)AdjustPtr301,6362 -AdjustIDBPtr (Term t, Term off)AdjustIDBPtr315,6684 - -H/Tags_64bits.h,1427 -#define TAG_64BITS TAG_64BITS20,692 -#define SHIFT_HIGH_TAG SHIFT_HIGH_TAG39,1238 -#define MKTAG(MKTAG41,1266 -#define TagBits TagBits43,1329 -#define LowTagBits LowTagBits44,1380 -#define HighTagBits HighTagBits45,1431 -#define AdrHiBit AdrHiBit46,1482 -#define MaskPrim MaskPrim47,1554 -#define NumberTag NumberTag48,1635 -#define AtomTag AtomTag49,1686 -#define MAX_ABS_INT MAX_ABS_INT50,1737 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK53,1858 -#define UNIQUE_TAG_FOR_PAIRS UNIQUE_TAG_FOR_PAIRS55,1906 -#define PrimiBit PrimiBit57,1938 -#define PairBits PairBits58,1978 -#define ApplBits ApplBits59,2018 -#define PrimiBits PrimiBits60,2058 -#define NumberMask NumberMask61,2109 -#define TagOf(TagOf63,2161 -#define LowTagOf(LowTagOf64,2201 -#define NonTagPart(NonTagPart65,2247 -#define TAGGEDA(TAGGEDA66,2292 -#define TAGGED(TAGGED67,2345 -#define NONTAGGED(NONTAGGED68,2428 -#define CHKTAG(CHKTAG69,2496 -IsVarTerm (Term t)IsVarTerm75,2653 -IsNonVarTerm (Term t)IsNonVarTerm85,2794 -RepPair (Term t)RepPair95,2935 -AbsPair (Term * p)AbsPair105,3078 -IsPairTerm (Term t)IsPairTerm115,3227 -RepAppl (Term t)RepAppl125,3366 -AbsAppl (Term * p)AbsAppl135,3509 -IsApplTerm (Term t)IsApplTerm145,3658 -IsAtomOrIntTerm (Term t)IsAtomOrIntTerm155,3802 -AdjustPtr (Term t, Term off)AdjustPtr166,3974 -AdjustIDBPtr (Term t, Term off)AdjustIDBPtr176,4137 -IntOfTerm (Term t)IntOfTerm187,4285 - -H/TermExt.h,9014 -#define SF_STORE SF_STORE23,665 -#define SF_STORE SF_STORE25,714 -#define AtomFoundVar AtomFoundVar32,868 -#define AtomFreeTerm AtomFreeTerm33,943 -#define AtomNil AtomNil34,1018 -#define AtomDot AtomDot35,1083 -#define AtomFoundVar AtomFoundVar37,1178 -#define AtomFreeTerm AtomFreeTerm38,1245 -#define AtomNil AtomNil39,1312 -#define AtomDot AtomDot40,1369 -#define AtomFoundVar AtomFoundVar42,1432 -#define AtomFreeTerm AtomFreeTerm43,1483 -#define AtomNil AtomNil44,1534 -#define AtomDot AtomDot45,1575 -#define TermFoundVar TermFoundVar48,1624 -#define TermFreeTerm TermFreeTerm49,1670 -#define TermNil TermNil50,1716 -#define TermDot TermDot51,1752 - db_ref_e = sizeof(Functor *),db_ref_e54,1804 - attvar_e = 2 * sizeof(Functor *),attvar_e55,1836 - double_e = 3 * sizeof(Functor *),double_e56,1872 - long_int_e = 4 * sizeof(Functor *),long_int_e57,1908 - big_int_e = 5 * sizeof(Functor *),big_int_e58,1946 - string_e = 6 * sizeof(Functor *)string_e59,1983 -} blob_type;blob_type60,2018 -#define FunctorDBRef FunctorDBRef62,2032 -#define FunctorAttVar FunctorAttVar63,2075 -#define FunctorDouble FunctorDouble64,2119 -#define FunctorLongInt FunctorLongInt65,2163 -#define FunctorBigInt FunctorBigInt66,2210 -#define FunctorString FunctorString67,2255 -#define EndSpecials EndSpecials68,2299 -#define IsAttVar(IsAttVar72,2377 -INLINE_ONLY inline EXTERN int __IsAttVar(CELL *pt USES_REGS) {__IsAttVar76,2488 -INLINE_ONLY inline EXTERN int GlobalIsAttVar(CELL *pt) {GlobalIsAttVar86,2722 - BIG_INT = 0x01,BIG_INT91,2834 - BIG_RATIONAL = 0x02,BIG_RATIONAL92,2852 - BIG_FLOAT = 0x04,BIG_FLOAT93,2875 - EMPTY_ARENA = 0x10,EMPTY_ARENA94,2895 - ARRAY_INT = 0x21,ARRAY_INT95,2917 - ARRAY_FLOAT = 0x22,ARRAY_FLOAT96,2937 - CLAUSE_LIST = 0x40,CLAUSE_LIST97,2959 - EXTERNAL_BLOB = 0x100, /* generic data */EXTERNAL_BLOB98,2981 - USER_BLOB_START = 0x1000, /* user defined blob */USER_BLOB_START99,3028 - USER_BLOB_END = 0x1100 /* end of user defined blob */USER_BLOB_END100,3080 -} big_blob_type;big_blob_type101,3139 -INLINE_ONLY inline EXTERN blob_type BlobOfFunctor(Functor f) {BlobOfFunctor105,3220 -typedef struct cp_frame {cp_frame109,3317 - CELL *start_cp;start_cp110,3343 - CELL *start_cp;cp_frame::start_cp110,3343 - CELL *end_cp;end_cp111,3361 - CELL *end_cp;cp_frame::end_cp111,3361 - CELL *to;to112,3377 - CELL *to;cp_frame::to112,3377 - CELL oldv;oldv114,3411 - CELL oldv;cp_frame::oldv114,3411 - int ground;ground115,3424 - int ground;cp_frame::ground115,3424 -} copy_frame;copy_frame117,3445 - void (*bind_op)(Term *, Term CACHE_TYPE);bind_op124,3601 - void (*bind_op)(Term *, Term CACHE_TYPE);__anon189::bind_op124,3601 - int (*copy_term_op)(CELL *, struct cp_frame **, CELL *CACHE_TYPE);copy_term_op126,3704 - int (*copy_term_op)(CELL *, struct cp_frame **, CELL *CACHE_TYPE);__anon189::copy_term_op126,3704 - Term (*to_term_op)(CELL *);to_term_op128,3822 - Term (*to_term_op)(CELL *);__anon189::to_term_op128,3822 - int (*term_to_op)(Term, Term CACHE_TYPE);term_to_op129,3852 - int (*term_to_op)(Term, Term CACHE_TYPE);__anon189::term_to_op129,3852 - void (*mark_op)(CELL *);mark_op131,3934 - void (*mark_op)(CELL *);__anon189::mark_op131,3934 -} ext_op;ext_op132,3961 - empty_ext = 0 * sizeof(ext_op), /* default op, this should never be called */empty_ext136,4006 - attvars_ext = 1 * sizeof(ext_op) /* support for attributed variables */attvars_ext137,4087 -} exts;exts140,4286 -typedef struct special_functors_struct {special_functors_struct147,4441 - struct AtomEntryStruct *AtFoundVar;AtFoundVar155,4653 - struct AtomEntryStruct *AtFoundVar;special_functors_struct::AtFoundVar155,4653 - struct AtomEntryStruct *AtFreeTerm;AtFreeTerm156,4691 - struct AtomEntryStruct *AtFreeTerm;special_functors_struct::AtFreeTerm156,4691 - struct AtomEntryStruct *AtNil;AtNil157,4729 - struct AtomEntryStruct *AtNil;special_functors_struct::AtNil157,4729 - struct AtomEntryStruct *AtDot;AtDot158,4762 - struct AtomEntryStruct *AtDot;special_functors_struct::AtDot158,4762 -} special_functors;special_functors160,4802 -#define MkFloatTerm(MkFloatTerm165,4904 -INLINE_ONLY inline EXTERN Term __MkFloatTerm(Float dbl USES_REGS) {__MkFloatTerm173,5111 -INLINE_ONLY inline EXTERN Float FloatOfTerm(Term t) {FloatOfTerm178,5320 -#define InitUnalignedFloat(InitUnalignedFloat182,5423 -INLINE_ONLY inline EXTERN Float CpFloatUnaligned(CELL *ptr) {CpFloatUnaligned184,5453 -#define DOUBLE_ALIGNED(DOUBLE_ALIGNED192,5590 -INLINE_ONLY EXTERN inline void AlignGlobalForDouble(USES_REGS1) {AlignGlobalForDouble196,5705 -INLINE_ONLY inline EXTERN Float CpFloatUnaligned(CELL *ptr) {CpFloatUnaligned206,5947 -INLINE_ONLY inline EXTERN Float CpFloatUnaligned(CELL *ptr) {CpFloatUnaligned212,6101 -INLINE_ONLY inline EXTERN Term __MkFloatTerm(Float dbl USES_REGS) {__MkFloatTerm224,6273 -INLINE_ONLY inline EXTERN Float FloatOfTerm(Term t) {FloatOfTerm230,6533 -INLINE_ONLY inline EXTERN bool IsFloatTerm(Term t) {IsFloatTerm251,7008 -#define MkLongIntTerm(MkLongIntTerm257,7170 -INLINE_ONLY inline EXTERN Term __MkLongIntTerm(Int i USES_REGS) {__MkLongIntTerm261,7290 -INLINE_ONLY inline EXTERN Int LongIntOfTerm(Term t) {LongIntOfTerm271,7526 -INLINE_ONLY inline EXTERN bool IsLongIntTerm(Term t) {IsLongIntTerm277,7667 -#define MkStringTerm(MkStringTerm290,7967 -INLINE_ONLY inline EXTERN Term __MkStringTerm(const char *s USES_REGS) {__MkStringTerm294,8094 -#define MkUStringTerm(MkUStringTerm305,8404 -__MkUStringTerm(const unsigned char *s USES_REGS) {__MkUStringTerm311,8574 -INLINE_ONLY inline EXTERN const unsigned char *UStringOfTerm(Term t) {UStringOfTerm324,8934 -INLINE_ONLY inline EXTERN const char *StringOfTerm(Term t) {StringOfTerm330,9119 -INLINE_ONLY inline EXTERN bool IsStringTerm(Term t) {IsStringTerm336,9276 -typedef UInt mp_limb_t;mp_limb_t353,9554 - Int _mp_size, _mp_alloc;_mp_size356,9596 - Int _mp_size, _mp_alloc;__anon191::_mp_size356,9596 - Int _mp_size, _mp_alloc;_mp_alloc356,9596 - Int _mp_size, _mp_alloc;__anon191::_mp_alloc356,9596 - mp_limb_t *_mp_d;_mp_d357,9623 - mp_limb_t *_mp_d;__anon191::_mp_d357,9623 -} MP_INT;MP_INT358,9643 - MP_INT _mp_num;_mp_num361,9671 - MP_INT _mp_num;__anon192::_mp_num361,9671 - MP_INT _mp_den;_mp_den362,9689 - MP_INT _mp_den;__anon192::_mp_den362,9689 -} MP_RAT;MP_RAT363,9707 -INLINE_ONLY inline EXTERN bool IsBigIntTerm(Term t) {IsBigIntTerm369,9778 -INLINE_ONLY inline EXTERN void MPZ_SET(mpz_t dest, MP_INT *src) {MPZ_SET384,10112 -INLINE_ONLY inline EXTERN bool IsLargeIntTerm(Term t) {IsLargeIntTerm392,10333 -INLINE_ONLY inline EXTERN UInt Yap_SizeOfBigInt(Term t) {Yap_SizeOfBigInt400,10574 -INLINE_ONLY inline EXTERN int IsLargeIntTerm(Term t) {IsLargeIntTerm411,10842 -INLINE_ONLY inline EXTERN bool IsLargeNumTerm(Term t) {IsLargeNumTerm421,11069 -INLINE_ONLY inline EXTERN bool IsExternalBlobTerm(Term t, CELL tag) {IsExternalBlobTerm429,11317 -INLINE_ONLY inline EXTERN void *ExternalBlobFromTerm(Term t) {ExternalBlobFromTerm437,11556 -INLINE_ONLY inline EXTERN bool IsNumTerm(Term t) {IsNumTerm444,11745 -INLINE_ONLY inline EXTERN bool IsAtomicTerm(Term t) {IsAtomicTerm450,11897 -INLINE_ONLY inline EXTERN bool IsExtensionFunctor(Functor f) {IsExtensionFunctor458,12104 -INLINE_ONLY inline EXTERN bool IsBlobFunctor(Functor f) {IsBlobFunctor464,12255 -INLINE_ONLY inline EXTERN bool IsPrimitiveTerm(Term t) {IsPrimitiveTerm471,12433 -INLINE_ONLY inline EXTERN bool IsAttachFunc(Functor f) { return (Int)(FALSE); }IsAttachFunc481,12685 -#define IsAttachedTerm(IsAttachedTerm483,12766 -INLINE_ONLY inline EXTERN bool __IsAttachedTerm(Term t USES_REGS) {__IsAttachedTerm487,12889 -INLINE_ONLY inline EXTERN bool GlobalIsAttachedTerm(Term t) {GlobalIsAttachedTerm494,13081 -#define SafeIsAttachedTerm(SafeIsAttachedTerm499,13213 -INLINE_ONLY inline EXTERN bool __SafeIsAttachedTerm(Term t USES_REGS) {__SafeIsAttachedTerm503,13349 -INLINE_ONLY inline EXTERN exts ExtFromCell(CELL *pt) { return attvars_ext; }ExtFromCell509,13526 -INLINE_ONLY inline EXTERN Int IsAttachFunc(Functor f) { return (Int)(FALSE); }IsAttachFunc515,13665 -INLINE_ONLY inline EXTERN Int IsAttachedTerm(Term t) { return (Int)(FALSE); }IsAttachedTerm519,13798 -INLINE_ONLY inline EXTERN Int Yap_BlobTag(Term t) {Yap_BlobTag525,13937 -INLINE_ONLY inline EXTERN void *Yap_BlobInfo(Term t) {Yap_BlobInfo533,14089 -INLINE_ONLY inline EXTERN bool unify_extension(Functor f, CELL d0, CELL *pt0,unify_extension549,14440 -static inline CELL Yap_IntP_key(CELL *pt) {Yap_IntP_key578,15155 -static inline CELL Yap_Int_key(Term t) { return Yap_IntP_key(RepAppl(t) + 1); }Yap_Int_key590,15488 -static inline CELL Yap_DoubleP_key(CELL *pt) {Yap_DoubleP_key592,15569 -static inline CELL Yap_Double_key(Term t) {Yap_Double_key601,15764 -static inline CELL Yap_StringP_key(CELL *pt) {Yap_StringP_key605,15853 -static inline CELL Yap_String_key(Term t) {Yap_String_key614,16043 - -H/threads.h,34 -#define THREADS_H THREADS_H4,20 - -H/tracer.h,414 - enter_pred,enter_pred21,637 - try_or,try_or22,651 - retry_or,retry_or23,661 - retry_pred,retry_pred24,673 - retry_table_generator,retry_table_generator25,687 - retry_table_consumer,retry_table_consumer26,712 - retry_table_loaderretry_table_loader27,736 -} yap_low_level_port;yap_low_level_port28,757 -#define low_level_trace(low_level_trace31,796 -#define low_level_trace(low_level_trace38,1211 - -H/trim_trail.h,0 - -H/udi_private.h,1817 -struct udi_p_args {udi_p_args7,103 - int arg; //indexed argarg8,123 - int arg; //indexed argudi_p_args::arg8,123 - void *idxstr; //user indexing structureidxstr9,163 - void *idxstr; //user indexing structureudi_p_args::idxstr9,163 - UdiControlBlock control; //user indexing structure functionscontrol10,215 - UdiControlBlock control; //user indexing structure functionsudi_p_args::control10,215 -typedef struct udi_p_args *UdiPArg;UdiPArg12,280 -UT_icd arg_icd = {sizeof(struct udi_p_args), NULL, NULL, NULL };arg_icd13,316 -UT_icd cl_icd = {sizeof(yamop *), NULL, NULL, NULL };cl_icd16,399 -struct udi_infoudi_info22,534 - PredEntry *p; //predicate (need to identify asserts)p24,552 - PredEntry *p; //predicate (need to identify asserts)udi_info::p24,552 - UT_array *clauselist; //clause list used on returnsclauselist25,615 - UT_array *clauselist; //clause list used on returnsudi_info::clauselist25,615 - UT_array *args; //indexed argsargs26,669 - UT_array *args; //indexed argsudi_info::args26,669 - UT_hash_handle hh; //uthash handlehh27,708 - UT_hash_handle hh; //uthash handleudi_info::hh27,708 -typedef struct udi_info *UdiInfo;UdiInfo29,751 -#define HASH_FIND_UdiInfo(HASH_FIND_UdiInfo32,829 -#define HASH_ADD_UdiInfo(HASH_ADD_UdiInfo34,932 -struct si_callback_hsi_callback_h47,1327 - clause_list_t cl;cl49,1350 - clause_list_t cl;si_callback_h::cl49,1350 - UT_array *clauselist;clauselist50,1370 - UT_array *clauselist;si_callback_h::clauselist50,1370 - void * pred;pred51,1394 - void * pred;si_callback_h::pred51,1394 -typedef struct si_callback_h * si_callback_h_t;si_callback_h_t53,1412 -static inline int si_callback(void *key, void *data, void *arg)si_callback55,1461 - -H/utarray.h,2938 -#define UTARRAY_HUTARRAY_H28,1253 -#define UTARRAY_VERSION UTARRAY_VERSION30,1272 -#define _UNUSED_ _UNUSED_33,1319 -#define _UNUSED_ _UNUSED_35,1372 -#define oom(oom42,1504 -typedef void (ctor_f)(void *dst, const void *src);ctor_f44,1528 -typedef void (dtor_f)(void *elt);dtor_f45,1579 -typedef void (init_f)(void *elt);init_f46,1613 - size_t sz;sz48,1664 - size_t sz;__anon194::sz48,1664 - init_f *init;init49,1679 - init_f *init;__anon194::init49,1679 - ctor_f *copy;copy50,1697 - ctor_f *copy;__anon194::copy50,1697 - dtor_f *dtor;dtor51,1715 - dtor_f *dtor;__anon194::dtor51,1715 -} UT_icd;UT_icd52,1733 - unsigned i,n;/* i: index of next available slot, n: num slots */i55,1761 - unsigned i,n;/* i: index of next available slot, n: num slots */__anon195::i55,1761 - unsigned i,n;/* i: index of next available slot, n: num slots */n55,1761 - unsigned i,n;/* i: index of next available slot, n: num slots */__anon195::n55,1761 - UT_icd icd; /* initializer, copy and destructor functions */icd56,1830 - UT_icd icd; /* initializer, copy and destructor functions */__anon195::icd56,1830 - char *d; /* n slots of size icd->sz*/d57,1896 - char *d; /* n slots of size icd->sz*/__anon195::d57,1896 -} UT_array;UT_array58,1942 -#define utarray_init(utarray_init60,1955 -#define utarray_done(utarray_done65,2207 -#define utarray_new(utarray_new78,3099 -#define utarray_free(utarray_free83,3351 -#define utarray_reserve(utarray_reserve88,3603 -#define utarray_push_back(utarray_push_back95,4015 -#define utarray_pop_back(utarray_pop_back101,4347 -#define utarray_extend_back(utarray_extend_back106,4599 -#define utarray_len(utarray_len113,5011 -#define utarray_eltptr(utarray_eltptr115,5044 -#define _utarray_eltptr(_utarray_eltptr116,5119 -#define utarray_insert(utarray_insert118,5188 -#define utarray_inserta(utarray_inserta130,6000 -#define utarray_resize(utarray_resize151,7532 -#define utarray_concat(utarray_concat172,9064 -#define utarray_erase(utarray_erase176,9236 -#define utarray_renew(utarray_renew190,10208 -#define utarray_clear(utarray_clear195,10363 -#define utarray_sort(utarray_sort207,11175 -#define utarray_find(utarray_find211,11347 -#define utarray_front(utarray_front213,11421 -#define utarray_next(utarray_next214,11489 -#define utarray_prev(utarray_prev215,11639 -#define utarray_back(utarray_back216,11777 -#define utarray_eltidx(utarray_eltidx217,11851 -static void utarray_str_cpy(void *dst, const void *src) {utarray_str_cpy220,12041 -static void utarray_str_dtor(void *elt) {utarray_str_dtor224,12202 -static const UT_icd ut_str_icd _UNUSED_ = {sizeof(char*),NULL,utarray_str_cpy,utarray_str_dtor};_UNUSED_228,12301 -static const UT_icd ut_int_icd _UNUSED_ = {sizeof(int),NULL,NULL,NULL};_UNUSED_229,12398 -static const UT_icd ut_ptr_icd _UNUSED_ = {sizeof(void*),NULL,NULL,NULL};_UNUSED_230,12470 - -H/uthash.h,8330 -#define UTHASH_H UTHASH_H25,1157 -#define DECLTYPE(DECLTYPE37,1700 -#define NO_DECLTYPENO_DECLTYPE39,1802 -#define DECLTYPE(DECLTYPE40,1822 -#define DECLTYPE(DECLTYPE43,1908 -#define DECLTYPE_ASSIGN(DECLTYPE_ASSIGN47,1969 -#define DECLTYPE_ASSIGN(DECLTYPE_ASSIGN53,2319 -typedef unsigned int uint32_t;uint32_t61,2681 -typedef unsigned char uint8_t;uint8_t62,2712 -#define UTHASH_VERSION UTHASH_VERSION67,2796 -#define uthash_fatal(uthash_fatal70,2847 -#define uthash_malloc(uthash_malloc73,2956 -#define uthash_free(uthash_free76,3063 -#define uthash_noexpand_fyi(uthash_noexpand_fyi80,3179 -#define uthash_expand_fyi(uthash_expand_fyi83,3292 -#define HASH_INITIAL_NUM_BUCKETS HASH_INITIAL_NUM_BUCKETS87,3412 -#define HASH_INITIAL_NUM_BUCKETS_LOG2 HASH_INITIAL_NUM_BUCKETS_LOG288,3492 -#define HASH_BKT_CAPACITY_THRESH HASH_BKT_CAPACITY_THRESH89,3572 -#define ELMT_FROM_HH(ELMT_FROM_HH92,3714 -#define HASH_FIND(HASH_FIND94,3786 -#define HASH_BLOOM_BITLEN HASH_BLOOM_BITLEN108,4730 -#define HASH_BLOOM_BYTELEN HASH_BLOOM_BYTELEN109,4777 -#define HASH_BLOOM_MAKE(HASH_BLOOM_MAKE110,4858 -#define HASH_BLOOM_FREE(HASH_BLOOM_FREE119,5453 -#define HASH_BLOOM_BITSET(HASH_BLOOM_BITSET124,5716 -#define HASH_BLOOM_BITTEST(HASH_BLOOM_BITTEST125,5785 -#define HASH_BLOOM_ADD(HASH_BLOOM_ADD127,5855 -#define HASH_BLOOM_TEST(HASH_BLOOM_TEST130,6032 -#define HASH_BLOOM_MAKE(HASH_BLOOM_MAKE134,6216 -#define HASH_BLOOM_FREE(HASH_BLOOM_FREE135,6246 -#define HASH_BLOOM_ADD(HASH_BLOOM_ADD136,6276 -#define HASH_BLOOM_TEST(HASH_BLOOM_TEST137,6311 -#define HASH_MAKE_TABLE(HASH_MAKE_TABLE140,6358 -#define HASH_ADD(HASH_ADD159,7781 -#define HASH_ADD_KEYPTR(HASH_ADD_KEYPTR162,7933 -#define HASH_TO_BKT(HASH_TO_BKT187,9864 -#define HASH_DELETE(HASH_DELETE204,10801 -#define HASH_FIND_STR(HASH_FIND_STR241,13609 -#define HASH_ADD_STR(HASH_ADD_STR243,13743 -#define HASH_FIND_INT(HASH_FIND_INT245,13883 -#define HASH_ADD_INT(HASH_ADD_INT247,14013 -#define HASH_FIND_PTR(HASH_FIND_PTR249,14143 -#define HASH_ADD_PTR(HASH_ADD_PTR251,14276 -#define HASH_DEL(HASH_DEL253,14409 -#define HASH_OOPS(HASH_OOPS260,14714 -#define HASH_FSCK(HASH_FSCK261,14793 -#define HASH_FSCK(HASH_FSCK313,18961 -#define HASH_EMIT_KEY(HASH_EMIT_KEY320,19248 -#define HASH_EMIT_KEY(HASH_EMIT_KEY327,19682 -#define HASH_FCN HASH_FCN332,19857 -#define HASH_FCN HASH_FCN334,19894 -#define HASH_BER(HASH_BER338,19990 -#define HASH_SAX(HASH_SAX350,20732 -#define HASH_FNV(HASH_FNV360,21409 -#define HASH_OAT(HASH_OAT370,22087 -#define HASH_JEN_MIX(HASH_JEN_MIX386,23261 -#define HASH_JEN(HASH_JEN399,24187 -#undef get16bitsget16bits441,27481 -#define get16bits(get16bits444,27654 -#define get16bits(get16bits448,27736 -#define HASH_SFH(HASH_SFH451,27890 -#define MUR_GETBLOCK(MUR_GETBLOCK506,31934 -#define MUR_PLUS0_ALIGNED(MUR_PLUS0_ALIGNED508,31987 -#define MUR_PLUS1_ALIGNED(MUR_PLUS1_ALIGNED509,32048 -#define MUR_PLUS2_ALIGNED(MUR_PLUS2_ALIGNED510,32109 -#define MUR_PLUS3_ALIGNED(MUR_PLUS3_ALIGNED511,32170 -#define WP(WP512,32231 -#define MUR_THREE_ONE(MUR_THREE_ONE514,32376 -#define MUR_TWO_TWO(MUR_TWO_TWO515,32468 -#define MUR_ONE_THREE(MUR_ONE_THREE516,32560 -#define MUR_THREE_ONE(MUR_THREE_ONE518,32695 -#define MUR_TWO_TWO(MUR_TWO_TWO519,32787 -#define MUR_ONE_THREE(MUR_ONE_THREE520,32879 -#define MUR_GETBLOCK(MUR_GETBLOCK522,32978 -#define MUR_ROTL32(MUR_ROTL32527,33278 -#define MUR_FMIX(MUR_FMIX528,33339 -#define HASH_MUR(HASH_MUR537,33512 -#define HASH_KEYCMP(HASH_KEYCMP577,36256 -#define HASH_FIND_IN_BKT(HASH_FIND_IN_BKT580,36367 -#define HASH_ADD_TO_BKT(HASH_ADD_TO_BKT594,37331 -#define HASH_DEL_IN_BKT(HASH_DEL_IN_BKT608,38297 -#define HASH_EXPAND_BUCKETS(HASH_EXPAND_BUCKETS649,40647 -#define HASH_SORT(HASH_SORT701,44681 -#define HASH_SRT(HASH_SRT702,44737 -#define HASH_SELECT(HASH_SELECT786,51453 -#define HASH_CLEAR(HASH_CLEAR824,54454 -#define HASH_ITER(HASH_ITER836,55232 -#define HASH_ITER(HASH_ITER840,55478 -#define HASH_COUNT(HASH_COUNT846,55758 -#define HASH_CNT(HASH_CNT847,55802 -typedef struct UT_hash_bucket {UT_hash_bucket849,55868 - struct UT_hash_handle *hh_head;hh_head850,55900 - struct UT_hash_handle *hh_head;UT_hash_bucket::hh_head850,55900 - unsigned count;count851,55935 - unsigned count;UT_hash_bucket::count851,55935 - unsigned expand_mult;expand_mult865,56796 - unsigned expand_mult;UT_hash_bucket::expand_mult865,56796 -} UT_hash_bucket;UT_hash_bucket867,56822 -#define HASH_SIGNATURE HASH_SIGNATURE870,56915 -#define HASH_BLOOM_SIGNATURE HASH_BLOOM_SIGNATURE871,56949 -typedef struct UT_hash_table {UT_hash_table873,56990 - UT_hash_bucket *buckets;buckets874,57021 - UT_hash_bucket *buckets;UT_hash_table::buckets874,57021 - unsigned num_buckets, log2_num_buckets;num_buckets875,57049 - unsigned num_buckets, log2_num_buckets;UT_hash_table::num_buckets875,57049 - unsigned num_buckets, log2_num_buckets;log2_num_buckets875,57049 - unsigned num_buckets, log2_num_buckets;UT_hash_table::log2_num_buckets875,57049 - unsigned num_items;num_items876,57092 - unsigned num_items;UT_hash_table::num_items876,57092 - struct UT_hash_handle *tail; /* tail hh in app order, for fast append */tail877,57115 - struct UT_hash_handle *tail; /* tail hh in app order, for fast append */UT_hash_table::tail877,57115 - ptrdiff_t hho; /* hash handle offset (byte pos of hash handle in element */hho878,57194 - ptrdiff_t hho; /* hash handle offset (byte pos of hash handle in element */UT_hash_table::hho878,57194 - unsigned ideal_chain_maxlen;ideal_chain_maxlen882,57430 - unsigned ideal_chain_maxlen;UT_hash_table::ideal_chain_maxlen882,57430 - unsigned nonideal_items;nonideal_items887,57702 - unsigned nonideal_items;UT_hash_table::nonideal_items887,57702 - unsigned ineff_expands, noexpand;ineff_expands895,58180 - unsigned ineff_expands, noexpand;UT_hash_table::ineff_expands895,58180 - unsigned ineff_expands, noexpand;noexpand895,58180 - unsigned ineff_expands, noexpand;UT_hash_table::noexpand895,58180 - uint32_t signature; /* used only to find hash tables in external analysis */signature897,58218 - uint32_t signature; /* used only to find hash tables in external analysis */UT_hash_table::signature897,58218 - uint32_t bloom_sig; /* used only to test bloom exists in external analysis */bloom_sig899,58316 - uint32_t bloom_sig; /* used only to test bloom exists in external analysis */UT_hash_table::bloom_sig899,58316 - uint8_t *bloom_bv;bloom_bv900,58397 - uint8_t *bloom_bv;UT_hash_table::bloom_bv900,58397 - char bloom_nbits;bloom_nbits901,58419 - char bloom_nbits;UT_hash_table::bloom_nbits901,58419 -} UT_hash_table;UT_hash_table904,58448 -typedef struct UT_hash_handle {UT_hash_handle906,58466 - struct UT_hash_table *tbl;tbl907,58498 - struct UT_hash_table *tbl;UT_hash_handle::tbl907,58498 - void *prev; /* prev element in app order */prev908,58528 - void *prev; /* prev element in app order */UT_hash_handle::prev908,58528 - void *next; /* next element in app order */next909,58602 - void *next; /* next element in app order */UT_hash_handle::next909,58602 - struct UT_hash_handle *hh_prev; /* previous hh in bucket order */hh_prev910,58676 - struct UT_hash_handle *hh_prev; /* previous hh in bucket order */UT_hash_handle::hh_prev910,58676 - struct UT_hash_handle *hh_next; /* next hh in bucket order */hh_next911,58750 - struct UT_hash_handle *hh_next; /* next hh in bucket order */UT_hash_handle::hh_next911,58750 - void *key; /* ptr to enclosing struct's key */key912,58824 - void *key; /* ptr to enclosing struct's key */UT_hash_handle::key912,58824 - unsigned keylen; /* enclosing struct's key len */keylen913,58898 - unsigned keylen; /* enclosing struct's key len */UT_hash_handle::keylen913,58898 - unsigned hashv; /* result of hash-fcn(key) */hashv914,58972 - unsigned hashv; /* result of hash-fcn(key) */UT_hash_handle::hashv914,58972 -} UT_hash_handle;UT_hash_handle915,59046 - -H/walkclause.h,0 - -H/Yap.h,15542 -#define YAP_H YAP_H18,612 -#define USE_MYDDAS USE_MYDDAS20,629 -#define USE_MYDDAS_SQLITE3 USE_MYDDAS_SQLITE321,650 -#define YAPOR YAPOR38,1402 -#define FIXED_STACKS FIXED_STACKS39,1418 -#define COROUTINING COROUTINING56,2099 -#define RATIONAL_TREES RATIONAL_TREES60,2152 -#define CUT_C CUT_C64,2199 -#define FunAdr(FunAdr67,2223 -#define MULTI_ASSIGNMENT_VARIABLES MULTI_ASSIGNMENT_VARIABLES86,2504 -#define MULTIPLE_STACKS MULTIPLE_STACKS89,2581 -#define PARALLEL_YAP PARALLEL_YAP90,2607 -#undef TRAILING_REQUIRES_BRANCHTRAILING_REQUIRES_BRANCH94,2700 -#define FROZEN_STACKS FROZEN_STACKS98,2806 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC102,2913 -#undef USE_THREADED_CODEUSE_THREADED_CODE106,3033 -#define TERM_EXTENSIONS TERM_EXTENSIONS110,3155 -#define nullptr nullptr122,3528 -#define nullptr nullptr124,3573 -#define nullptr nullptr126,3618 -#define nullptr nullptr128,3644 -#define _WIN32 _WIN32135,3741 -#define MIN_ARRAY MIN_ARRAY140,3842 -#define DUMMY_FILLER_FOR_ABS_TYPEDUMMY_FILLER_FOR_ABS_TYPE141,3862 -#define MIN_ARRAY MIN_ARRAY143,3902 -#define DUMMY_FILLER_FOR_ABS_TYPE DUMMY_FILLER_FOR_ABS_TYPE144,3922 -typedef void *(*fptr_t)(void);fptr_t148,4036 -#define likely(likely161,4449 -#define unlikely(unlikely162,4492 -#define likely(likely164,4543 -#define unlikely(unlikely165,4565 -#define _XOPEN_SOURCE _XOPEN_SOURCE171,4658 -#define NIL NIL178,4807 -#define LOW_PROF LOW_PROF182,4903 -INLINE_ONLY inline EXTERN size_t strnlen(const char *s, size_t maxlen) {strnlen188,5030 -#define IN_SECOND_QUADRANT IN_SECOND_QUADRANT202,5282 -#define MMAP_ADDR MMAP_ADDR203,5311 -#define MMAP_ADDR MMAP_ADDR212,5631 -#define MMAP_ADDR MMAP_ADDR214,5680 -#define MMAP_ADDR MMAP_ADDR216,5733 -#define MMAP_ADDR MMAP_ADDR218,5789 -#define MMAP_ADDR MMAP_ADDR220,5845 -#define MMAP_ADDR MMAP_ADDR222,5880 -#define MMAP_ADDR MMAP_ADDR225,5973 -#define HEAP_INIT_BASE HEAP_INIT_BASE236,6321 -#define AtomBase AtomBase237,6347 -#define HEAP_INIT_BASE HEAP_INIT_BASE241,6549 -#define AtomBase AtomBase242,6584 -#define HEAP_INIT_BASE HEAP_INIT_BASE245,6740 -#define AtomBase AtomBase246,6784 -#define ALIGN_LONGS ALIGN_LONGS252,6987 -#define K1 K1255,7017 -#define K16 K16256,7041 -#define K64 K64257,7073 -#define M1 M1258,7105 -#define M2 M2259,7138 -typedef CELL SFLAGS;SFLAGS262,7188 -typedef BITS16 SFLAGS;SFLAGS264,7215 -typedef char *ADDR;ADDR267,7246 -typedef CELL OFFSET;OFFSET268,7266 -typedef unsigned char *CODEADDR;CODEADDR269,7287 -#define TermPtr(TermPtr271,7321 -#define Addr(Addr272,7354 -#define CodePtr(CodePtr274,7383 -#define CellPtr(CellPtr275,7418 -#define OpCodePtr(OpCodePtr276,7451 -#define OpRegPtr(OpRegPtr277,7488 -#define SmallPtr(SmallPtr278,7523 -#define WordPtr(WordPtr279,7563 -#define DisplPtr(DisplPtr280,7598 -#define _XOPEN_SOURCE _XOPEN_SOURCE287,7727 -typedef pthread_mutex_t lockvar;lockvar291,7788 -typedef pthread_rwlock_t rwlock_t;rwlock_t292,7821 -#define FUNC_READ_LOCK(FUNC_READ_LOCK311,8202 -#define FUNC_READ_UNLOCK(FUNC_READ_UNLOCK312,8252 -#define FUNC_WRITE_LOCK(FUNC_WRITE_LOCK313,8306 -#define FUNC_WRITE_UNLOCK(FUNC_WRITE_UNLOCK314,8358 -#define IN_BETWEEN(IN_BETWEEN321,8697 -#define OUTSIDE(OUTSIDE324,8852 -#define IN_BETWEEN(IN_BETWEEN327,9011 -#define OUTSIDE(OUTSIDE330,9158 -#define sigjmp_buf sigjmp_buf377,10947 -#define sigsetjmp(sigsetjmp378,10974 -#define siglongjmp(siglongjmp379,11014 - GPROF_NO_EVENT,GPROF_NO_EVENT388,11153 - GPROF_NEW_PRED_FUNC,GPROF_NEW_PRED_FUNC389,11171 - GPROF_NEW_PRED_THREAD,GPROF_NEW_PRED_THREAD390,11194 - GPROF_NEW_PRED_ATOM,GPROF_NEW_PRED_ATOM391,11219 - GPROF_INDEX,GPROF_INDEX392,11242 - GPROF_INDEX_EXPAND,GPROF_INDEX_EXPAND393,11257 - GPROF_CLAUSE,GPROF_CLAUSE394,11279 - GPROF_MEGA,GPROF_MEGA395,11295 - GPROF_LU_INDEX,GPROF_LU_INDEX396,11309 - GPROF_STATIC_INDEX,GPROF_STATIC_INDEX397,11327 - GPROF_INIT_OPCODE,GPROF_INIT_OPCODE398,11349 - GPROF_INIT_SYSTEM_CODE,GPROF_INIT_SYSTEM_CODE399,11370 - GPROF_INIT_EXPAND,GPROF_INIT_EXPAND400,11396 - GPROF_INIT_LOG_UPD_CLAUSE,GPROF_INIT_LOG_UPD_CLAUSE401,11417 - GPROF_INIT_DYNAMIC_CLAUSE,GPROF_INIT_DYNAMIC_CLAUSE402,11446 - GPROF_INIT_STATIC_CLAUSE,GPROF_INIT_STATIC_CLAUSE403,11475 - GPROF_INIT_COMMA,GPROF_INIT_COMMA404,11503 - GPROF_INIT_FAIL,GPROF_INIT_FAIL405,11523 - GPROF_NEW_LU_CLAUSE,GPROF_NEW_LU_CLAUSE406,11542 - GPROF_NEW_LU_SWITCH,GPROF_NEW_LU_SWITCH407,11565 - GPROF_NEW_STATIC_SWITCH,GPROF_NEW_STATIC_SWITCH408,11588 - GPROF_NEW_EXPAND_BLOCKGPROF_NEW_EXPAND_BLOCK409,11615 -} gprof_info;gprof_info410,11640 -#define MAX_EMPTY_WAKEUPS MAX_EMPTY_WAKEUPS412,11655 -#define TermSize TermSize422,11983 -#define YAP_FILENAME_MAX YAP_FILENAME_MAX432,12391 -#define __android_log_print(__android_log_print461,13198 -#define MaxHash MaxHash469,13508 -#define MaxWideHash MaxWideHash470,13529 -typedef enum e_restore_t {e_restore_t472,13569 - FAIL_RESTORE = 0,FAIL_RESTORE473,13596 - DO_EVERYTHING = 1,DO_EVERYTHING474,13616 - DO_ONLY_CODE = 2,DO_ONLY_CODE475,13637 - YAP_BOOT_FROM_PROLOG = 4YAP_BOOT_FROM_PROLOG476,13657 -} restore_t;restore_t477,13684 -#define MAX_PROMPT MAX_PROMPT483,13958 -typedef struct opcode_tab_entry {opcode_tab_entry490,14269 - OPCODE opc;opc491,14303 - OPCODE opc;opcode_tab_entry::opc491,14303 - op_numbers opnum;opnum492,14317 - op_numbers opnum;opcode_tab_entry::opnum492,14317 -} op_entry;op_entry493,14337 - BootMode = 0x1, /** if booting or restoring */BootMode502,14638 - UserMode = 0x2, /** Normal mode */UserMode503,14698 - CritMode = 0x4, /** If we are meddling with the heap */CritMode504,14746 - AbortMode = 0x8, /** expecting to abort */AbortMode505,14815 - InterruptMode = 0x10, /*8 under an interrupt */InterruptMode506,14870 - InErrorMode = 0x20, /** error handling */InErrorMode507,14925 - ConsoleGetcMode = 0x40, /** blocked reading from console */ConsoleGetcMode508,14976 - ExtendStackMode = 0x80, /** trying to extend stack */ExtendStackMode509,15041 - GrowHeapMode = 0x100, /** extending Heap */GrowHeapMode510,15100 - GrowStackMode = 0x200, /** extending Stack */GrowStackMode511,15152 - GCMode = 0x400, /** doing Garbage Collecting */GCMode512,15204 - ErrorHandlingMode = 0x800, /** doing error handling */ErrorHandlingMode513,15265 - CCallMode = 0x1000, /** In c Call */CCallMode514,15322 - UnifyMode = 0x2000, /** In Unify Code */UnifyMode515,15368 - UserCCallMode = 0x4000, /** In User C-call Code */UserCCallMode516,15418 - MallocMode = 0x8000, /** Doing malloc, realloc, free */MallocMode517,15474 - SystemMode = 0x10000, /** in system mode */SystemMode518,15538 - AsyncIntMode = 0x20000, /** YAP has just been interrupted from the outside */AsyncIntMode519,15589 - InReadlineMode =InReadlineMode520,15669 - TopGoalMode = 0x40000 /** creating a new autonomous goal */TopGoalMode522,15766 -} prolog_exec_mode;prolog_exec_mode523,15828 -#define DefaultMaxModules DefaultMaxModules529,16103 -#define YAPEnterCriticalSection(YAPEnterCriticalSection535,16402 -#define YAPLeaveCriticalSection(YAPLeaveCriticalSection544,17054 -#define YAPEnterCriticalSection(YAPEnterCriticalSection558,18053 -#define YAPLeaveCriticalSection(YAPLeaveCriticalSection563,18381 -#define YAPEnterCriticalSection(YAPEnterCriticalSection574,19120 -#define YAPLeaveCriticalSection(YAPLeaveCriticalSection581,19610 -#define AT_BOOT AT_BOOT596,20576 -#define AT_RESTORE AT_RESTORE597,20594 -typedef struct TIMED_MAVAR {TIMED_MAVAR605,20959 - CELL value;value606,20988 - CELL value;TIMED_MAVAR::value606,20988 - CELL clock;clock607,21002 - CELL clock;TIMED_MAVAR::clock607,21002 -} timed_var;timed_var608,21016 - INTERPRETED = 0x1, /* interpreted */INTERPRETED615,21298 - MIXED_MODE_USER = 0x2, /* mixed mode only for user predicates */MIXED_MODE_USER616,21341 - MIXED_MODE_ALL = 0x4, /* mixed mode for all predicates */MIXED_MODE_ALL617,21408 - COMPILE_USER = 0x8, /* compile all user predicates*/COMPILE_USER618,21469 - COMPILE_ALL = 0x10 /* compile all predicates */COMPILE_ALL619,21527 -} yap_exec_mode;yap_exec_mode620,21581 -#define MIXED_MODE MIXED_MODE622,21599 -#define COMPILED COMPILED624,21654 -typedef struct queue_entry {queue_entry628,21782 - struct queue_entry *next;next629,21811 - struct queue_entry *next;queue_entry::next629,21811 - struct DB_TERM *DBT;DBT630,21839 - struct DB_TERM *DBT;queue_entry::DBT630,21839 -} QueueEntry;QueueEntry631,21862 -typedef struct idb_queue {idb_queue633,21877 - *id; /* identify this as being pointed to by a DBRef */id635,21932 - *id; /* identify this as being pointed to by a DBRef */idb_queue::id635,21932 - SMALLUNSGN Flags; /* always required */Flags636,22003 - SMALLUNSGN Flags; /* always required */idb_queue::Flags636,22003 - rwlock_t QRWLock; /* a simple lock to protect this entry */QRWLock638,22062 - rwlock_t QRWLock; /* a simple lock to protect this entry */idb_queue::QRWLock638,22062 - QueueEntry *FirstInQueue, *LastInQueue;FirstInQueue640,22131 - QueueEntry *FirstInQueue, *LastInQueue;idb_queue::FirstInQueue640,22131 - QueueEntry *FirstInQueue, *LastInQueue;LastInQueue640,22131 - QueueEntry *FirstInQueue, *LastInQueue;idb_queue::LastInQueue640,22131 -} db_queue;db_queue641,22173 -typedef struct thread_mbox {thread_mbox651,22470 - Term name;name652,22499 - Term name;thread_mbox::name652,22499 - pthread_mutex_t mutex;mutex653,22512 - pthread_mutex_t mutex;thread_mbox::mutex653,22512 - pthread_cond_t cond;cond654,22537 - pthread_cond_t cond;thread_mbox::cond654,22537 - struct idb_queue msgs;msgs655,22560 - struct idb_queue msgs;thread_mbox::msgs655,22560 - int nmsgs, nclients; // if nclients < 0 mailbox has been closed.nmsgs656,22585 - int nmsgs, nclients; // if nclients < 0 mailbox has been closed.thread_mbox::nmsgs656,22585 - int nmsgs, nclients; // if nclients < 0 mailbox has been closed.nclients656,22585 - int nmsgs, nclients; // if nclients < 0 mailbox has been closed.thread_mbox::nclients656,22585 - bool open;open657,22652 - bool open;thread_mbox::open657,22652 - struct thread_mbox *next;next658,22665 - struct thread_mbox *next;thread_mbox::next658,22665 -} mbox_t;mbox_t659,22693 -typedef struct thandle {thandle661,22704 - int in_use;in_use662,22729 - int in_use;thandle::in_use662,22729 - int zombie;zombie663,22743 - int zombie;thandle::zombie663,22743 - UInt ssize;ssize664,22757 - UInt ssize;thandle::ssize664,22757 - UInt tsize;tsize665,22771 - UInt tsize;thandle::tsize665,22771 - UInt sysize;sysize666,22785 - UInt sysize;thandle::sysize666,22785 - void *stack_address;stack_address667,22800 - void *stack_address;thandle::stack_address667,22800 - Term tdetach;tdetach668,22823 - Term tdetach;thandle::tdetach668,22823 - Term cmod, texit_mod;cmod669,22839 - Term cmod, texit_mod;thandle::cmod669,22839 - Term cmod, texit_mod;texit_mod669,22839 - Term cmod, texit_mod;thandle::texit_mod669,22839 - struct DB_TERM *tgoal, *texit;tgoal670,22863 - struct DB_TERM *tgoal, *texit;thandle::tgoal670,22863 - struct DB_TERM *tgoal, *texit;texit670,22863 - struct DB_TERM *tgoal, *texit;thandle::texit670,22863 - int id;id671,22896 - int id;thandle::id671,22896 - int ret;ret672,22906 - int ret;thandle::ret672,22906 - REGSTORE *default_yaam_regs;default_yaam_regs673,22917 - REGSTORE *default_yaam_regs;thandle::default_yaam_regs673,22917 - REGSTORE *current_yaam_regs;current_yaam_regs674,22948 - REGSTORE *current_yaam_regs;thandle::current_yaam_regs674,22948 - struct pred_entry *local_preds;local_preds675,22979 - struct pred_entry *local_preds;thandle::local_preds675,22979 - pthread_t pthread_handle;pthread_handle676,23013 - pthread_t pthread_handle;thandle::pthread_handle676,23013 - mbox_t mbox_handle;mbox_handle677,23041 - mbox_t mbox_handle;thandle::mbox_handle677,23041 - int ref_count;ref_count678,23063 - int ref_count;thandle::ref_count678,23063 - long long int thread_inst_count;thread_inst_count680,23104 - long long int thread_inst_count;thandle::thread_inst_count680,23104 - int been_here1;been_here1681,23139 - int been_here1;thandle::been_here1681,23139 - int been_here2;been_here2682,23157 - int been_here2;thandle::been_here2682,23157 - int been_here;been_here685,23195 - int been_here;thandle::been_here685,23195 - pthread_mutex_t tlock;tlock687,23219 - pthread_mutex_t tlock;thandle::tlock687,23219 - pthread_mutex_t tlock_status;tlock_status688,23244 - pthread_mutex_t tlock_status;thandle::tlock_status688,23244 - hrtime_t start_of_w_times;start_of_w_times690,23295 - hrtime_t start_of_w_times;thandle::start_of_w_times690,23295 - hrtime_t last_w_time;last_w_time691,23324 - hrtime_t last_w_time;thandle::last_w_time691,23324 - struct timeval *start_of_timesp;start_of_timesp694,23374 - struct timeval *start_of_timesp;thandle::start_of_timesp694,23374 - struct timeval *last_timep;last_timep695,23409 - struct timeval *last_timep;thandle::last_timep695,23409 - struct timeval *start_of_times_sysp;start_of_times_sysp696,23439 - struct timeval *start_of_times_sysp;thandle::start_of_times_sysp696,23439 - struct timeval *last_time_sysp;last_time_sysp697,23478 - struct timeval *last_time_sysp;thandle::last_time_sysp697,23478 - win64_time_t *start_of_timesp;start_of_timesp699,23525 - win64_time_t *start_of_timesp;thandle::start_of_timesp699,23525 - win64_time_t *last_timep;last_timep700,23558 - win64_time_t *last_timep;thandle::last_timep700,23558 - win64_time_t *start_of_times_sysp;start_of_times_sysp701,23586 - win64_time_t *start_of_times_sysp;thandle::start_of_times_sysp701,23586 - win64_time_t *last_time_sysp;last_time_sysp702,23623 - win64_time_t *last_time_sysp;thandle::last_time_sysp702,23623 -} yap_thandle;yap_thandle704,23662 -#define GC_MAVARS_HASH_SIZE GC_MAVARS_HASH_SIZE707,23699 -typedef struct gc_ma_hash_entry_struct {gc_ma_hash_entry_struct708,23731 - UInt timestmp;timestmp709,23772 - UInt timestmp;gc_ma_hash_entry_struct::timestmp709,23772 - tr_fr_ptr loc;loc711,23804 - tr_fr_ptr loc;gc_ma_hash_entry_struct::loc711,23804 - struct gc_ma_hash_entry_struct *more;more712,23821 - struct gc_ma_hash_entry_struct *more;gc_ma_hash_entry_struct::more712,23821 - CELL *addr;addr714,23868 - CELL *addr;gc_ma_hash_entry_struct::addr714,23868 - struct gc_ma_hash_entry_struct *next;next715,23882 - struct gc_ma_hash_entry_struct *next;gc_ma_hash_entry_struct::next715,23882 -} gc_ma_hash_entry;gc_ma_hash_entry716,23922 -typedef int (*Agc_hook)(Atom);Agc_hook718,23943 -typedef struct scratch_block_struct {scratch_block_struct720,23975 - char *ptr;ptr721,24013 - char *ptr;scratch_block_struct::ptr721,24013 - UInt sz, msz;sz722,24026 - UInt sz, msz;scratch_block_struct::sz722,24026 - UInt sz, msz;msz722,24026 - UInt sz, msz;scratch_block_struct::msz722,24026 -} scratch_block;scratch_block723,24042 -#define Yap_global Yap_global737,24552 -#define REMOTE(REMOTE742,24666 -#define REMOTE(REMOTE745,24763 -#define REMOTE(REMOTE748,24870 -#define YP_FILE YP_FILE754,24953 -inline static void LOG0(const char *f, int l, const char *fmt, ...) {LOG0794,26082 -#define LOG(LOG809,26425 -#define REGS_LOG(REGS_LOG811,26481 -#define LOG(LOG814,26559 -#define REGS_LOG(REGS_LOG816,26577 - -H/YapAppliedOpcodes.h,0 - -H/YapCompile.h,9276 -#define mklist0(mklist021,673 -#define mklist1(mklist1224,331257 -#define mklist1(mklist1226,331312 -#define mklist2(mklist2229,331376 -#define mklist2(mklist2233,331601 -#define mklist3(mklist3236,331678 -#define mklist3(mklist3238,331755 -#define mklist4(mklist4241,331829 -#define mklist4(mklist4263,333528 -#define mklist(mklist266,333578 -#define mklist(mklist281,334716 -#define f_enum(f_enum284,334753 -#define f_arr(f_arr285,334777 -enum compiler_op { mklist(f_enum) };compiler_op287,334801 -enum compiler_op { mklist(f_enum) };mklist287,334801 -typedef enum compiler_op compiler_vm_op;compiler_vm_op289,334839 -typedef struct PSEUDO {PSEUDO291,334881 - struct PSEUDO *nextInst;nextInst292,334905 - struct PSEUDO *nextInst;PSEUDO::nextInst292,334905 - enum compiler_op op;op293,334932 - enum compiler_op op;PSEUDO::op293,334932 - CELL rnd1;rnd1294,334955 - CELL rnd1;PSEUDO::rnd1294,334955 - Int oprnd2;oprnd2296,334978 - Int oprnd2;PSEUDO::__anon199::oprnd2296,334978 - CELL opseqt[MIN_ARRAY];opseqt298,335013 - CELL opseqt[MIN_ARRAY];PSEUDO::__anon199::opseqt298,335013 - CELL opseqt[1];opseqt300,335047 - CELL opseqt[1];PSEUDO::__anon199::opseqt300,335047 - } ops;ops302,335074 - } ops;PSEUDO::ops302,335074 -} PInstr;PInstr303,335083 -#define arnds arnds305,335094 -#define rnd2 rnd2306,335119 -#define rnd3 rnd3307,335143 -#define rnd4 rnd4308,335170 -#define rnd5 rnd5309,335197 -#define rnd6 rnd6310,335224 -#define rnd7 rnd7311,335251 -#define rnd8 rnd8312,335278 -typedef struct VENTRY {VENTRY314,335306 - CELL SelfOfVE;SelfOfVE315,335330 - CELL SelfOfVE;VENTRY::SelfOfVE315,335330 - Term AdrsOfVE;AdrsOfVE316,335347 - Term AdrsOfVE;VENTRY::AdrsOfVE316,335347 - Int KindOfVE;KindOfVE317,335364 - Int KindOfVE;VENTRY::KindOfVE317,335364 - CELL NoOfVE;NoOfVE318,335380 - CELL NoOfVE;VENTRY::NoOfVE318,335380 - PInstr *FirstOpForV;FirstOpForV319,335395 - PInstr *FirstOpForV;VENTRY::FirstOpForV319,335395 - PInstr *LastOpForV;LastOpForV320,335418 - PInstr *LastOpForV;VENTRY::LastOpForV320,335418 - BITS16 AgeOfVE;AgeOfVE321,335440 - BITS16 AgeOfVE;VENTRY::AgeOfVE321,335440 - BITS16 BranchOfVE;BranchOfVE322,335458 - BITS16 BranchOfVE;VENTRY::BranchOfVE322,335458 - BITS16 LastBranchOfVE;LastBranchOfVE323,335479 - BITS16 LastBranchOfVE;VENTRY::LastBranchOfVE323,335479 - BITS16 FirstOfVE;FirstOfVE324,335504 - BITS16 FirstOfVE;VENTRY::FirstOfVE324,335504 - BITS16 RCountOfVE;RCountOfVE325,335524 - BITS16 RCountOfVE;VENTRY::RCountOfVE325,335524 - BITS16 FlagsOfVE;FlagsOfVE326,335545 - BITS16 FlagsOfVE;VENTRY::FlagsOfVE326,335545 - struct VENTRY *NextOfVE;NextOfVE327,335565 - struct VENTRY *NextOfVE;VENTRY::NextOfVE327,335565 -} Ventry;Ventry328,335592 -typedef struct CEXPENTRY {CEXPENTRY330,335603 - Term TermOfCE;TermOfCE331,335630 - Term TermOfCE;CEXPENTRY::TermOfCE331,335630 - PInstr *CodeOfCE;CodeOfCE332,335647 - PInstr *CodeOfCE;CEXPENTRY::CodeOfCE332,335647 - Term VarOfCE;VarOfCE333,335667 - Term VarOfCE;CEXPENTRY::VarOfCE333,335667 - struct CEXPENTRY *NextCE;NextCE334,335683 - struct CEXPENTRY *NextCE;CEXPENTRY::NextCE334,335683 -} CExpEntry;CExpEntry335,335711 -#define COMPILER_ERR_BOTCH COMPILER_ERR_BOTCH337,335725 -#define OUT_OF_HEAP_BOTCH OUT_OF_HEAP_BOTCH338,335754 -#define OUT_OF_STACK_BOTCH OUT_OF_STACK_BOTCH339,335782 -#define OUT_OF_TEMPS_BOTCH OUT_OF_TEMPS_BOTCH340,335811 -#define OUT_OF_AUX_BOTCH OUT_OF_AUX_BOTCH341,335840 -#define OUT_OF_TRAIL_BOTCH OUT_OF_TRAIL_BOTCH342,335867 -typedef struct intermediates {intermediates344,335897 - char *freep;freep345,335928 - char *freep;intermediates::freep345,335928 - char *freep0;freep0346,335943 - char *freep0;intermediates::freep0346,335943 - struct mem_blk *blks;blks347,335959 - struct mem_blk *blks;intermediates::blks347,335959 - char *blk_cur, *blk_top;blk_cur348,335983 - char *blk_cur, *blk_top;intermediates::blk_cur348,335983 - char *blk_cur, *blk_top;blk_top348,335983 - char *blk_cur, *blk_top;intermediates::blk_top348,335983 - struct PSEUDO *cpc;cpc349,336010 - struct PSEUDO *cpc;intermediates::cpc349,336010 - struct PSEUDO *CodeStart;CodeStart350,336032 - struct PSEUDO *CodeStart;intermediates::CodeStart350,336032 - struct PSEUDO *icpc;icpc351,336060 - struct PSEUDO *icpc;intermediates::icpc351,336060 - struct PSEUDO *BlobsStart;BlobsStart352,336083 - struct PSEUDO *BlobsStart;intermediates::BlobsStart352,336083 - struct dbterm_list *dbterml;dbterml353,336112 - struct dbterm_list *dbterml;intermediates::dbterml353,336112 - Int *label_offset;label_offset354,336143 - Int *label_offset;intermediates::label_offset354,336143 - Int *uses;uses355,336164 - Int *uses;intermediates::uses355,336164 - Term *contents;contents356,336177 - Term *contents;intermediates::contents356,336177 - struct pred_entry *CurrentPred;CurrentPred357,336195 - struct pred_entry *CurrentPred;intermediates::CurrentPred357,336195 - sigjmp_buf CompilerBotch;CompilerBotch358,336229 - sigjmp_buf CompilerBotch;intermediates::CompilerBotch358,336229 - yamop *code_addr;code_addr359,336257 - yamop *code_addr;intermediates::code_addr359,336257 - yamop *expand_block;expand_block360,336277 - yamop *expand_block;intermediates::expand_block360,336277 - UInt i_labelno;i_labelno361,336300 - UInt i_labelno;intermediates::i_labelno361,336300 - UInt exception_handler, success_handler, failure_handler;exception_handler362,336318 - UInt exception_handler, success_handler, failure_handler;intermediates::exception_handler362,336318 - UInt exception_handler, success_handler, failure_handler;success_handler362,336318 - UInt exception_handler, success_handler, failure_handler;intermediates::success_handler362,336318 - UInt exception_handler, success_handler, failure_handler;failure_handler362,336318 - UInt exception_handler, success_handler, failure_handler;intermediates::failure_handler362,336318 - yamop **current_try_lab, **current_trust_lab;current_try_lab364,336405 - yamop **current_try_lab, **current_trust_lab;intermediates::current_try_lab364,336405 - yamop **current_try_lab, **current_trust_lab;current_trust_lab364,336405 - yamop **current_try_lab, **current_trust_lab;intermediates::current_trust_lab364,336405 - yamop *try_instructions;try_instructions365,336453 - yamop *try_instructions;intermediates::try_instructions365,336453 - struct StructClauseDef *cls;cls366,336480 - struct StructClauseDef *cls;intermediates::cls366,336480 - int clause_has_cut;clause_has_cut367,336511 - int clause_has_cut;intermediates::clause_has_cut367,336511 - UInt term_depth, last_index_at_depth;term_depth368,336533 - UInt term_depth, last_index_at_depth;intermediates::term_depth368,336533 - UInt term_depth, last_index_at_depth;last_index_at_depth368,336533 - UInt term_depth, last_index_at_depth;intermediates::last_index_at_depth368,336533 - UInt last_index_new_depth, last_depth_size;last_index_new_depth369,336573 - UInt last_index_new_depth, last_depth_size;intermediates::last_index_new_depth369,336573 - UInt last_index_new_depth, last_depth_size;last_depth_size369,336573 - UInt last_index_new_depth, last_depth_size;intermediates::last_depth_size369,336573 - struct static_index *si;si372,336656 - struct static_index *si;intermediates::__anon200::si372,336656 - struct logic_upd_index *lui;lui373,336685 - struct logic_upd_index *lui;intermediates::__anon200::lui373,336685 - } current_cl;current_cl374,336718 - } current_cl;intermediates::current_cl374,336718 -} CIntermediates;CIntermediates375,336734 -typedef enum special_label_id_enum {special_label_id_enum377,336753 - SPECIAL_LABEL_SUCCESS = 0,SPECIAL_LABEL_SUCCESS378,336790 - SPECIAL_LABEL_FAILURE = 1,SPECIAL_LABEL_FAILURE379,336819 - SPECIAL_LABEL_EXCEPTION = 2SPECIAL_LABEL_EXCEPTION380,336848 -} special_label_id;special_label_id381,336878 -typedef enum special_label_op_enum {special_label_op_enum383,336899 - SPECIAL_LABEL_INIT = 0,SPECIAL_LABEL_INIT384,336936 - SPECIAL_LABEL_SET = 1,SPECIAL_LABEL_SET385,336962 - SPECIAL_LABEL_CLEAR = 2SPECIAL_LABEL_CLEAR386,336987 -} special_label_op;special_label_op387,337013 -#define SafeVar SafeVar389,337034 -#define PermFlag PermFlag390,337055 -#define GlobalVal GlobalVal391,337077 -#define OnHeadFlag OnHeadFlag392,337100 -#define NonVoid NonVoid393,337124 -#define BranchVar BranchVar394,337145 -#define OnLastGoal OnLastGoal395,337168 -#define MaskVarClass MaskVarClass397,337193 -#define MaskVarAdrs MaskVarAdrs398,337226 -#define Unassigned Unassigned399,337258 -#define VoidVar VoidVar400,337289 -#define TempVar TempVar401,337317 -#define PermVar PermVar402,337345 -#define save_b_flag save_b_flag404,337374 -#define commit_b_flag commit_b_flag405,337402 -#define save_appl_flag save_appl_flag406,337432 -#define save_pair_flag save_pair_flag407,337463 -#define f_flag f_flag408,337494 -#define bt_flag bt_flag409,337517 -#define bt2_flag bt2_flag410,337541 -#define patch_b_flag patch_b_flag411,337576 -#define init_v_flag init_v_flag412,337605 -#define Zero Zero414,337634 -#define One One415,337649 -#define Two Two416,337663 - -H/YapCompoundTerm.h,635 -#define YAPCOMPOUNDTERM_H YAPCOMPOUNDTERM_H22,895 -INLINE_ONLY EXTERN inline Term Deref(Term a) {Deref30,1036 -INLINE_ONLY EXTERN inline Term Derefa(CELL *b) {Derefa45,1312 -INLINE_ONLY inline EXTERN Term ArgOfTerm(int i, Term t)ArgOfTerm61,1594 -INLINE_ONLY inline EXTERN Term HeadOfTerm(Term t) {HeadOfTerm69,1749 -INLINE_ONLY inline EXTERN Term TailOfTerm(Term t) {TailOfTerm75,1891 -INLINE_ONLY inline EXTERN Term ArgOfTermCell(int i, Term t) {ArgOfTermCell81,2049 -INLINE_ONLY inline EXTERN Term HeadOfTermCell(Term t) {HeadOfTermCell87,2211 -INLINE_ONLY inline EXTERN Term TailOfTermCell(Term t) {TailOfTermCell93,2361 - -H/YapEval.h,4502 -#define EVAL_H EVAL_H112,3853 -#define Int_MAX Int_MAX140,4293 -#define Int_MAX Int_MAX142,4324 -#define Int_MIN Int_MIN145,4390 -#define Int_MIN Int_MIN147,4421 -#define PLMAXTAGGEDINT PLMAXTAGGEDINT150,4466 -#define PLMINTAGGEDINT PLMINTAGGEDINT151,4515 -#define PLMAXINT PLMAXINT153,4554 -#define PLMININT PLMININT154,4579 -#define INFINITY INFINITY157,4622 -#define NAN NAN161,4671 - op_pi,op_pi176,5005 - op_e,op_e183,5122 - op_epsilon,op_epsilon190,5247 - op_inf,op_inf202,5572 - op_nan,op_nan203,5582 - op_random,op_random204,5592 - op_cputime,op_cputime205,5605 - op_heapused,op_heapused206,5619 - op_localsp,op_localsp207,5634 - op_globalsp,op_globalsp208,5648 - op_b,op_b209,5663 - op_env,op_env210,5671 - op_tr,op_tr211,5681 - op_stackfreeop_stackfree212,5690 -} arith0_op;arith0_op213,5705 - op_uplus,op_uplus227,6017 - op_uminus,op_uminus234,6180 - op_unot,op_unot244,6462 - op_exp,op_exp252,6668 - op_log,op_log260,6874 - op_log10,op_log10281,7325 - op_sqrt,op_sqrt282,7337 - op_sin,op_sin283,7348 - op_cos,op_cos284,7358 - op_tan,op_tan285,7368 - op_sinh,op_sinh286,7378 - op_cosh,op_cosh287,7389 - op_tanh,op_tanh288,7400 - op_asin,op_asin289,7411 - op_acos,op_acos290,7422 - op_atan,op_atan291,7433 - op_asinh,op_asinh292,7444 - op_acosh,op_acosh293,7456 - op_atanh,op_atanh294,7468 - op_floor,op_floor295,7480 - op_ceiling,op_ceiling296,7492 - op_round,op_round297,7506 - op_truncate,op_truncate298,7518 - op_integer,op_integer299,7533 - op_float,op_float300,7547 - op_abs,op_abs301,7559 - op_lsb,op_lsb302,7569 - op_msb,op_msb303,7579 - op_popcount,op_popcount304,7589 - op_ffracp,op_ffracp305,7604 - op_fintp,op_fintp306,7617 - op_sign,op_sign307,7629 - op_lgamma,op_lgamma308,7640 - op_erf,op_erf309,7653 - op_erfc,op_erfc310,7663 - op_rational,op_rational311,7674 - op_rationalize,op_rationalize312,7689 - op_random1op_random1313,7707 -} arith1_op;arith1_op314,7720 - op_plus,op_plus322,7890 - op_minus,op_minus323,7901 - op_times,op_times324,7913 - op_fdiv,op_fdiv325,7925 - op_mod,op_mod326,7936 - op_rem,op_rem327,7946 - op_div,op_div328,7956 - op_idiv,op_idiv329,7966 - op_sll,op_sll330,7977 - op_slr,op_slr331,7987 - op_and,op_and332,7997 - op_or,op_or333,8007 - op_xor,op_xor334,8016 - op_atan2,op_atan2335,8026 - op_power,op_power337,8070 - op_power2,op_power2340,8135 - op_gcd,op_gcd343,8197 - op_min,op_min344,8207 - op_max,op_max345,8217 - op_rdivop_rdiv346,8227 -} arith2_op;arith2_op347,8237 -#define FlIsInt(FlIsInt356,8448 -#define FlIsInt(FlIsInt358,8508 -#define MkEvalFl(MkEvalFl362,8561 -#define MkEvalFl(MkEvalFl364,8602 -#define REvalInt(REvalInt368,8730 -#define REvalFl(REvalFl373,9058 -#define REvalError(REvalError379,9387 -#define FL(FL385,9628 -#define FL(FL387,9664 -#define Yap_EvalError(Yap_EvalError404,10023 -#define Yap_ArithError(Yap_ArithError409,10284 -#define Yap_BinError(Yap_BinError411,10438 -#define Yap_AbsmiError(Yap_AbsmiError413,10579 -#define Yap_MathException(Yap_MathException419,10748 -#define Yap_InnerEval(Yap_InnerEval421,10809 -#define Yap_Eval(Yap_Eval422,10863 -#define Yap_FoundArithError(Yap_FoundArithError423,10907 -INLINE_ONLY inline EXTERN Term Yap_Eval__(Term t USES_REGS) {Yap_Eval__427,11034 -inline static void Yap_ClearExs(void) { feclearexcept(FE_ALL_EXCEPT); }Yap_ClearExs434,11213 -inline static void Yap_ClearExs(void) {}Yap_ClearExs436,11291 -inline static yap_error_number Yap_FoundArithError__(USES_REGS1) {Yap_FoundArithError__439,11340 -static inline Term takeIndicator(Term t) {takeIndicator448,11631 -#define RINT(RINT467,12090 -#define RFLOAT(RFLOAT468,12132 -#define RBIG(RBIG469,12174 -#define RERROR(RERROR470,12219 -static inline blob_type ETypeOfTerm(Term t) {ETypeOfTerm475,12467 -#define Yap_gmp_cmp_float_big(Yap_gmp_cmp_float_big554,14993 -#define Yap_gmp_tcmp_float_big(Yap_gmp_tcmp_float_big560,15213 -#define Yap_Mk64IntegerTerm(Yap_Mk64IntegerTerm587,15949 -__Yap_Mk64IntegerTerm(YAP_LONG_LONG i USES_REGS) {__Yap_Mk64IntegerTerm592,16128 -#define DO_ADD(DO_ADD605,16403 -inline static Term add_int(Int i, Int j USES_REGS) {add_int611,16658 -static inline Term p_plus(Term t1, Term t2 USES_REGS) {p_plus633,17114 -#define PI PI689,18423 -#define PI PI691,18445 -#define M_E M_E696,18506 -#define INFINITY INFINITY700,18565 -#define NAN NAN704,18614 -#define DBL_EPSILON DBL_EPSILON709,18731 - -H/YapFlags.h,4807 -#define YAP_FLAGS_H YAP_FLAGS_H24,637 -#define SYSTEM_OPTION_0 SYSTEM_OPTION_028,713 -#define SYSTEM_OPTION_1 SYSTEM_OPTION_130,788 -#define SYSTEM_OPTION_3 SYSTEM_OPTION_333,842 -#define SYSTEM_OPTION_4 SYSTEM_OPTION_436,904 -#define SYSTEM_OPTION_5 SYSTEM_OPTION_539,970 -#define SYSTEM_OPTION_6 SYSTEM_OPTION_642,1031 -#define SYSTEM_OPTION_7 SYSTEM_OPTION_745,1097 -#define SYSTEM_OPTION_8 SYSTEM_OPTION_848,1152 -static inline Term nat(Term inp) {nat51,1195 -static inline Term at2n(Term inp) {at2n70,1723 -static inline Term isfloat(Term inp) {isfloat76,1887 -static inline Term ro(Term inp) {ro93,2284 -INLINE_ONLY inline EXTERN Term aro(Term inp) {aro104,2596 -static inline Term booleanFlag(Term inp) {booleanFlag119,2982 -static Term synerr(Term inp) {synerr139,3556 -static inline Term filler(Term inp) { return inp; }filler154,3967 -static inline Term list_filler(Term inp) {list_filler156,4020 -static Term bqs(Term inp) {bqs165,4234 -static inline Term isatom(Term inp) {isatom180,4647 -static inline Term options(Term inp) {options192,4949 -static inline Term ok(Term inp) { return inp; }ok198,5092 -typedef struct x_el {x_el201,5181 - bool used;used202,5203 - bool used;x_el::used202,5203 - Term tvalue;tvalue203,5216 - Term tvalue;x_el::tvalue203,5216 -} xarg;xarg204,5231 -typedef struct struct_param {struct_param206,5240 - const char *name;name207,5270 - const char *name;struct_param::name207,5270 - flag_func type;type208,5290 - flag_func type;struct_param::type208,5290 - int id;id209,5308 - int id;struct_param::id209,5308 -} param_t;param_t210,5318 -typedef struct struct_param2 {struct_param2212,5330 - char *name;name213,5361 - char *name;struct_param2::name213,5361 - flag_func type;type214,5375 - flag_func type;struct_param2::type214,5375 - int id;id215,5393 - int id;struct_param2::id215,5393 - const char *scope;scope216,5403 - const char *scope;struct_param2::scope216,5403 -} param2_t;param2_t217,5424 - char *name;name220,5454 - char *name;__anon204::name220,5454 - bool writable;writable221,5468 - bool writable;__anon204::writable221,5468 - flag_func def;def222,5485 - flag_func def;__anon204::def222,5485 - const char *init;init223,5502 - const char *init;__anon204::init223,5502 - flag_helper_func helper;helper224,5522 - flag_helper_func helper;__anon204::helper224,5522 -} flag_info;flag_info225,5549 - char *name;name228,5580 - char *name;__anon205::name228,5580 - flag_func def;def229,5594 - flag_func def;__anon205::def229,5594 - const char *init;init230,5611 - const char *init;__anon205::init230,5611 -} arg_info;arg_info231,5631 -typedef union flagTerm {flagTerm233,5644 - Term at;at234,5669 - Term at;flagTerm::at234,5669 - struct DB_TERM *DBT;DBT235,5680 - struct DB_TERM *DBT;flagTerm::DBT235,5680 -} flag_term;flag_term236,5703 -#define YAP_FLAG(YAP_FLAG240,5744 -} global_flag_t;global_flag_t244,5843 -} local_flag_t;local_flag_t248,5902 -#undef YAP_FLAGYAP_FLAG249,5918 -static inline bool check_refs_to_ltable(void) { return true; }check_refs_to_ltable256,6057 -static inline void setAtomicGlobalPrologFlag(int id, Term v) {setAtomicGlobalPrologFlag258,6121 -static inline Term getAtomicGlobalPrologFlag(int id) {getAtomicGlobalPrologFlag262,6214 -static inline void setAtomicLocalPrologFlag(int id, Term v) {setAtomicLocalPrologFlag266,6302 -static inline void setBooleanLocalPrologFlag(int id, bool v) {setBooleanLocalPrologFlag272,6432 -static inline void setBooleanGlobalPrologFlag(int id, bool v) {setBooleanGlobalPrologFlag282,6635 -static inline bool trueGlobalPrologFlag(int id) {trueGlobalPrologFlag290,6801 -static inline bool falseGlobalPrologFlag(int id) {falseGlobalPrologFlag294,6896 -static inline bool trueLocalPrologFlag(int id) {trueLocalPrologFlag298,6993 -static inline bool falsePrologFlag(int id) {falsePrologFlag303,7099 -static inline bool isoLanguageFlag(void) {isoLanguageFlag308,7202 -static inline bool strictISOFlag(void) {strictISOFlag312,7296 -static inline bool silentMode(void) {silentMode316,7395 -static inline void setVerbosity(Term val) {setVerbosity320,7490 -static inline bool setSyntaxErrorsFlag(Term val) {setSyntaxErrorsFlag324,7576 -static inline Term getSyntaxErrorsFlag(void) {getSyntaxErrorsFlag332,7759 -static inline bool setBackQuotesFlag(Term val) {setBackQuotesFlag337,7867 -static inline Term getBackQuotesFlag(void) {getBackQuotesFlag346,8069 -static inline Term indexingMode(void) { return GLOBAL_Flags[INDEX_FLAG].at; }indexingMode350,8167 -static inline const char *floatFormat(void) {floatFormat352,8246 -static inline size_t indexingDepth(void) {indexingDepth356,8375 -static inline Term gcTrace(void) { return GLOBAL_Flags[GC_TRACE_FLAG].at; }gcTrace360,8492 - -H/YapGFlagInfo.h,0 - -H/YapHandles.h,3337 -#define YAP_HANDLES_H YAP_HANDLES_H17,633 -#define LOCAL_CurHandle LOCAL_CurHandle22,696 -#define REMOTE_CurHandle REMOTE_CurHandle23,734 -#define LOCAL_NHandles LOCAL_NHandles24,774 -#define REMOTE_NHandles REMOTE_NHandles25,810 -#define LOCAL_HandleBase LOCAL_HandleBase26,848 -#define REMOTE_HanvdleBase REMOTE_HanvdleBase27,888 -#define Yap_RebootHandles(Yap_RebootHandles71,2397 -#define Yap_RebootSlots(Yap_RebootSlots72,2463 -static inline void Yap_RebootHandles__(int wid USES_REGS) {Yap_RebootHandles__74,2528 -#define Yap_StartHandles(Yap_StartHandles85,2960 -#define Yap_StartSlots(Yap_StartSlots86,3018 -INLINE_ONLY inline EXTERN yhandle_t Yap_StartHandles__(USES_REGS1) {Yap_StartHandles__89,3143 -#define Yap_CloseHandles(Yap_CloseHandles105,3811 -#define Yap_CloseSlots(Yap_CloseSlots106,3877 -INLINE_ONLY inline EXTERN void Yap_CloseHandles__(yhandle_t slot USES_REGS) {Yap_CloseHandles__109,4019 -#define Yap_CurrentHandle(Yap_CurrentHandle114,4181 -#define Yap_CurrentSlot(Yap_CurrentSlot115,4241 -INLINE_ONLY inline EXTERN yhandle_t Yap_CurrentHandle__(USES_REGS1) {Yap_CurrentHandle__120,4474 -#define Yap_GetFromHandle(Yap_GetFromHandle124,4573 -#define Yap_GetFromSlot(Yap_GetFromSlot125,4641 -INLINE_ONLY inline EXTERN Term Yap_GetFromHandle__(yhandle_t slot USES_REGS) {Yap_GetFromHandle__129,4815 -#define Yap_GetDerefedFromHandle(Yap_GetDerefedFromHandle134,4994 -#define Yap_GetDerefedFromSlot(Yap_GetDerefedFromSlot136,5120 -Yap_GetDerefedFromHandle__(yhandle_t slot USES_REGS) {Yap_GetDerefedFromHandle__142,5388 -#define Yap_GetPtrFromHandle(Yap_GetPtrFromHandle147,5535 -#define Yap_GetPtrFromSlot(Yap_GetPtrFromSlot148,5609 -Yap_GetPtrFromHandle__(yhandle_t slot USES_REGS) {Yap_GetPtrFromHandle__154,5876 -#define Yap_AddressFromHandle(Yap_AddressFromHandle159,6027 -#define Yap_AddressFromSlot(Yap_AddressFromSlot160,6103 -Yap_AddressFromHandle__(yhandle_t slot USES_REGS) {Yap_AddressFromHandle__165,6295 -#define Yap_PutInSlot(Yap_PutInSlot171,6431 -#define Yap_PutInHandle(Yap_PutInHandle172,6499 -INLINE_ONLY inline EXTERN void Yap_PutInHandle__(yhandle_t slot,Yap_PutInHandle__176,6735 -#define max(max183,6969 -#define ensure_handles ensure_handles186,7011 -INLINE_ONLY inline EXTERN void ensure_slots(int N USES_REGS) {ensure_slots187,7047 -#define Yap_InitHandle(Yap_InitHandle210,7958 -#define Yap_PushHandle(Yap_PushHandle211,8014 -#define Yap_InitSlot(Yap_InitSlot212,8070 -INLINE_ONLY inline EXTERN yhandle_t Yap_InitHandle__(Term t USES_REGS) {Yap_InitHandle__215,8197 -#define Yap_NewHandles(Yap_NewHandles231,8701 -#define Yap_NewSlots(Yap_NewSlots232,8757 -INLINE_ONLY inline EXTERN yhandle_t Yap_NewHandles__(int n USES_REGS) {Yap_NewHandles__235,8883 -#define Yap_InitHandles(Yap_InitHandles253,9402 -#define Yap_InitSlots(Yap_InitSlots254,9468 -INLINE_ONLY inline EXTERN yhandle_t Yap_InitHandles__(int n,Yap_InitHandles__259,9715 -#define Yap_RecoverHandles(Yap_RecoverHandles270,10049 -#define Yap_RecoverSlots(Yap_RecoverSlots271,10121 -static inline bool Yap_RecoverHandles__(int n, yhandle_t topHandle USES_REGS) {Yap_RecoverHandles__276,10382 -#define Yap_PopSlot(Yap_PopSlot291,10816 -#define Yap_PopHandle(Yap_PopHandle292,10870 -static inline Term Yap_PopHandle__(yhandle_t topHandle USES_REGS) {Yap_PopHandle__296,11072 - -H/YapHeap.h,4653 -#define HEAP_H HEAP_H19,669 -typedef int (*SWI_PutFunction)(int, void *);SWI_PutFunction25,727 -typedef int (*SWI_GetFunction)(void *);SWI_GetFunction26,772 -typedef int (*SWI_PutWideFunction)(int, void *);SWI_PutWideFunction27,812 -typedef int (*SWI_GetWideFunction)(void *);SWI_GetWideFunction28,861 -typedef int (*SWI_CloseFunction)(void *);SWI_CloseFunction29,905 -typedef int (*SWI_FlushFunction)(void *);SWI_FlushFunction30,947 -typedef int (*SWI_PLGetStreamFunction)(void *);SWI_PLGetStreamFunction31,989 -typedef int (*SWI_PLGetStreamPositionFunction)(void *);SWI_PLGetStreamPositionFunction32,1037 -typedef int (*Opaque_CallOnFail)(void *);Opaque_CallOnFail34,1094 -typedef int (*Opaque_CallOnWrite)(FILE *, int, void *, int);Opaque_CallOnWrite35,1136 -typedef Int (*Opaque_CallOnGCMark)(int, void *, Term *, Int);Opaque_CallOnGCMark36,1197 -typedef int (*Opaque_CallOnGCRelocate)(int, void *, Term *, Int);Opaque_CallOnGCRelocate37,1259 -typedef struct opaque_handler_struct {opaque_handler_struct39,1326 - Opaque_CallOnFail fail_handler;fail_handler40,1365 - Opaque_CallOnFail fail_handler;opaque_handler_struct::fail_handler40,1365 - Opaque_CallOnWrite write_handler;write_handler41,1399 - Opaque_CallOnWrite write_handler;opaque_handler_struct::write_handler41,1399 - Opaque_CallOnGCMark gc_mark_handler;gc_mark_handler42,1435 - Opaque_CallOnGCMark gc_mark_handler;opaque_handler_struct::gc_mark_handler42,1435 - Opaque_CallOnGCRelocate gc_relocate_handler;gc_relocate_handler43,1474 - Opaque_CallOnGCRelocate gc_relocate_handler;opaque_handler_struct::gc_relocate_handler43,1474 -} opaque_handler_t;opaque_handler_t44,1521 -#define INT_KEYS_DEFAULT_SIZE INT_KEYS_DEFAULT_SIZE53,1866 -#define MAX_DLMALLOC_HOLES MAX_DLMALLOC_HOLES58,1927 -typedef struct memory_hole {memory_hole60,1958 - ADDR start;start61,1987 - ADDR start;memory_hole::start61,1987 - ADDR end;end62,2001 - ADDR end;memory_hole::end62,2001 -} memory_hole_type;memory_hole_type63,2013 -typedef struct swi_reverse_hash {swi_reverse_hash66,2058 - ADDR key;key67,2092 - ADDR key;swi_reverse_hash::key67,2092 - Int pos;pos68,2104 - Int pos;swi_reverse_hash::pos68,2104 -} swi_rev_hash;swi_rev_hash69,2115 -typedef void (*HaltHookFunc)(int, void *);HaltHookFunc83,2400 -typedef struct halt_hook {halt_hook85,2444 - void *environment;environment86,2471 - void *environment;halt_hook::environment86,2471 - HaltHookFunc hook;hook87,2492 - HaltHookFunc hook;halt_hook::hook87,2492 - struct halt_hook *next;next88,2513 - struct halt_hook *next;halt_hook::next88,2513 -} halt_hook_entry;halt_hook_entry89,2539 -typedef struct atom_hash_entry {atom_hash_entry93,2608 - rwlock_t AERWLock;AERWLock95,2680 - rwlock_t AERWLock;atom_hash_entry::AERWLock95,2680 - Atom Entry;Entry97,2708 - Atom Entry;atom_hash_entry::Entry97,2708 -} AtomHashEntry;AtomHashEntry98,2722 -typedef struct record_list {record_list105,2834 - struct DB_TERM *dbrecord;dbrecord107,2914 - struct DB_TERM *dbrecord;record_list::dbrecord107,2914 - struct record_list *next_rec, *prev_rec;next_rec108,2942 - struct record_list *next_rec, *prev_rec;record_list::next_rec108,2942 - struct record_list *next_rec, *prev_rec;prev_rec108,2942 - struct record_list *next_rec, *prev_rec;record_list::prev_rec108,2942 -} DBRecordList;DBRecordList109,2985 -#define SWI_BUF_SIZE SWI_BUF_SIZE112,3022 -#define SWI_TMP_BUF_SIZE SWI_TMP_BUF_SIZE113,3047 -#define SWI_BUF_RINGS SWI_BUF_RINGS114,3089 -#define EXTERNALEXTERNAL158,4012 -#define EXTERNAL EXTERNAL160,4035 -typedef struct various_codes {various_codes166,4079 - special_functors funcs;funcs168,4151 - special_functors funcs;various_codes::funcs168,4151 -} all_heap_codes;all_heap_codes172,4199 -typedef struct various_codes {various_codes179,4291 - special_functors funcs;funcs181,4363 - special_functors funcs;various_codes::funcs181,4363 -} all_heap_codes;all_heap_codes184,4391 -#define Yap_heap_regs Yap_heap_regs226,5163 -static inline yamop *gc_P(yamop *p, yamop *cp) {gc_P233,5293 -#define Yap_CurrentModule(Yap_CurrentModule242,5487 -INLINE_ONLY inline EXTERN Term Yap_CurrentModule__(USES_REGS1) {Yap_CurrentModule__246,5613 -#define UPDATE_MODE_IMMEDIATE UPDATE_MODE_IMMEDIATE256,5856 -#define UPDATE_MODE_LOGICAL UPDATE_MODE_LOGICAL257,5888 -#define UPDATE_MODE_LOGICAL_ASSERT UPDATE_MODE_LOGICAL_ASSERT258,5918 -#define InitialConsultCapacity InitialConsultCapacity262,6059 -#define Yap_ReleasePreAllocCodeSpace(Yap_ReleasePreAllocCodeSpace269,6267 -INLINE_ONLY EXTERN inline ADDR Yap_PreAllocCodeSpace(void) {Yap_PreAllocCodeSpace275,6438 - -H/YapLFlagInfo.h,0 - -H/YapOpcodes.h,0 - -H/Yapproto.h,276 -#define Yap_HandleError(Yap_HandleError178,6414 -#define Yap_inform_profiler_of_clause(Yap_inform_profiler_of_clause216,7758 -#define Yap_inform_profiler_of_clause(Yap_inform_profiler_of_clause222,8092 -#define strncat(strncat510,17080 -#define strncpy(strncpy513,17143 - -H/YapSignals.h,2828 - YAP_NO_SIGNAL = 0, /* received an alarm */YAP_NO_SIGNAL29,747 - YAP_ALARM_SIGNAL = SIGALRM, /* received an alarm */YAP_ALARM_SIGNAL31,809 - YAP_HUP_SIGNAL = SIGHUP, /* received SIGHUP */YAP_HUP_SIGNAL34,887 - YAP_USR1_SIGNAL = SIGUSR1, /* received SIGUSR1 */YAP_USR1_SIGNAL37,961 - YAP_USR2_SIGNAL = SIGUSR2, /* received SIGUSR2 */YAP_USR2_SIGNAL40,1038 - YAP_INT_SIGNAL = SIGINT, /* received SIGINT (unused for now) */YAP_INT_SIGNAL43,1114 - YAP_PIPE_SIGNAL = SIGPIPE, /* call atom garbage collector asap */YAP_PIPE_SIGNAL46,1205 - YAP_VTALARM_SIGNAL = SIGVTALRM, /* received SIGVTALARM */YAP_VTALARM_SIGNAL49,1300 - YAP_FPE_SIGNAL = SIGFPE, /* received SIGFPE */YAP_FPE_SIGNAL52,1384 -#define PROLOG_SIG PROLOG_SIG54,1443 - YAP_WAKEUP_SIGNAL = (PROLOG_SIG+1), /* goals to wake up */YAP_WAKEUP_SIGNAL55,1466 - YAP_ITI_SIGNAL = (PROLOG_SIG+2), /* received inter thread signal */YAP_ITI_SIGNAL56,1528 - YAP_TROVF_SIGNAL = (PROLOG_SIG+3), /* received trail overflow */YAP_TROVF_SIGNAL57,1599 - YAP_CDOVF_SIGNAL = (PROLOG_SIG+4), /* received code overflow */YAP_CDOVF_SIGNAL58,1667 - YAP_STOVF_SIGNAL = (PROLOG_SIG+5), /* received stack overflow */YAP_STOVF_SIGNAL59,1734 - YAP_TRACE_SIGNAL = (PROLOG_SIG+6), /* received start trace */YAP_TRACE_SIGNAL60,1802 - YAP_DEBUG_SIGNAL = (PROLOG_SIG+7), /* received start debug */YAP_DEBUG_SIGNAL61,1867 - YAP_BREAK_SIGNAL = (PROLOG_SIG+8), /* received break signal */YAP_BREAK_SIGNAL62,1932 - YAP_STACK_DUMP_SIGNAL = (PROLOG_SIG+9), /* received stack dump signal */YAP_STACK_DUMP_SIGNAL63,1998 - YAP_STATISTICS_SIGNAL = (PROLOG_SIG+10), /* received statistics */YAP_STATISTICS_SIGNAL64,2074 - YAP_AGC_SIGNAL = (PROLOG_SIG+11), /* call atom garbage collector asap */YAP_AGC_SIGNAL65,2144 - YAP_WINTIMER_SIGNAL = (PROLOG_SIG+12), /* windows alarm */YAP_WINTIMER_SIGNAL66,2220 - YAP_FAIL_SIGNAL = (PROLOG_SIG+13), /* P = FAILCODE */YAP_FAIL_SIGNAL67,2282 - YAP_ABORT_SIGNAL = (PROLOG_SIG+14), /* P = FAILCODE */YAP_ABORT_SIGNAL68,2339 - YAP_EXIT_SIGNAL = (PROLOG_SIG+15), /* P = FAILCODE */YAP_EXIT_SIGNAL69,2397 - YAP_CREEP_SIGNAL = (PROLOG_SIG+16) /* received a creep, make sure it is the last signal */YAP_CREEP_SIGNAL70,2454 -} yap_signals;yap_signals71,2548 -#define Yap_get_signal(Yap_get_signal73,2566 -#define Yap_has_a_signal(Yap_has_a_signal74,2623 -#define Yap_has_signals(Yap_has_signals75,2682 -#define Yap_only_has_signals(Yap_only_has_signals76,2751 -#define Yap_has_signal(Yap_has_signal77,2830 -#define Yap_only_has_signal(Yap_only_has_signal78,2887 -SIGNAL_TO_BIT( yap_signals sig)SIGNAL_TO_BIT83,3063 -Yap_has_a_signal__ (USES_REGS1)Yap_has_a_signal__96,3405 -Yap_has_signal__(yap_signals sig USES_REGS)Yap_has_signal__102,3519 -Yap_only_has_signal__(yap_signals sig USES_REGS)Yap_only_has_signal__108,3668 - -H/YapTags.h,2467 -#define YAPTAGS_H YAPTAGS_H18,617 -#define EXTERN EXTERN21,653 -#define LONG_ADDRESSES LONG_ADDRESSES27,733 -#define LONG_ADDRESSES LONG_ADDRESSES29,764 -#undef USE_DL_MALLOCUSE_DL_MALLOC95,2725 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC97,2772 -#define USE_LOW32_TAGS USE_LOW32_TAGS102,2837 -#define MBIT MBIT127,3296 -#define RBIT RBIT128,3320 -#define INVERT_RBIT INVERT_RBIT131,3368 -#define MBIT MBIT139,3519 -#define RBIT RBIT141,3584 -#define MBIT MBIT142,3655 -#define MkVarTerm(MkVarTerm152,4004 -#define MkPairTerm(MkPairTerm153,4048 -INLINE_ONLY inline EXTERN Term *VarOfTerm(Term t) { return (Term *)(t); }VarOfTerm161,4418 -#define RESET_VARIABLE(RESET_VARIABLE165,4511 -inline EXTERN Term MkVarTerm__(USES_REGS1) {MkVarTerm__170,4626 -inline EXTERN bool IsUnboundVar(Term *t) { return (int)(*(t) ==IsUnboundVar177,4774 -#define RESET_VARIABLE(RESET_VARIABLE182,4852 -inline EXTERN Term MkVarTerm__(USES_REGS1) {MkVarTerm__187,4977 - inline EXTERN bool IsUnboundVar(Term *t) {IsUnboundVar194,5132 - inline EXTERN CELL *PtrOfTerm(Term t) {PtrOfTerm203,5277 - inline EXTERN Functor FunctorOfTerm(Term t) {FunctorOfTerm210,5422 - inline EXTERN Term MkAtomTerm(Atom a) {MkAtomTerm219,5587 - inline EXTERN Atom AtomOfTerm(Term t) {AtomOfTerm226,5733 - inline EXTERN Term MkAtomTerm(Atom at) {MkAtomTerm235,5887 - inline EXTERN Atom AtomOfTerm(Term t) {AtomOfTerm242,6049 - inline EXTERN bool IsAtomTerm(Term t) {IsAtomTerm251,6195 - inline EXTERN Term MkIntTerm(Int n) {MkIntTerm258,6330 - inline EXTERN Term MkIntConstant(Int n) {MkIntConstant270,6584 - inline EXTERN bool IsIntTerm(Term t) {IsIntTerm277,6735 - EXTERN inline Term MkPairTerm__(Term head, Term tail USES_REGS) {MkPairTerm__284,6901 -#define IntInBnd(IntInBnd297,7179 -#define IntInBnd(IntInBnd300,7233 -#define IntInBnd(IntInBnd302,7303 -#define IsAccessFunc(IsAccessFunc318,7588 -#define MkIntegerTerm(MkIntegerTerm322,7656 - inline EXTERN Term __MkIntegerTerm(Int n USES_REGS) {__MkIntegerTerm327,7787 - inline EXTERN bool IsIntegerTerm(Term t) {IsIntegerTerm335,7981 - inline EXTERN Int IntegerOfTerm(Term t) {IntegerOfTerm342,8142 -#define MkAddressTerm(MkAddressTerm349,8267 - inline EXTERN Term __MkAddressTerm(void *n USES_REGS) {__MkAddressTerm354,8400 - inline EXTERN bool IsAddressTerm(Term t) {IsAddressTerm363,8577 - inline EXTERN void *AddressOfTerm(Term t) {AddressOfTerm370,8723 -IsPairOrNilTerm (Term t)IsPairOrNilTerm379,8925 - -H/YapTerm.h,1405 -typedef void *Functor;Functor20,667 -typedef void *Atom;Atom21,690 -#define ALIGN_BY_TYPE(ALIGN_BY_TYPE32,814 -#define EXTERNEXTERN37,985 -#define EXTERN EXTERN39,1006 -typedef intptr_t Int;Int48,1213 -typedef uintptr_t UInt;UInt49,1235 -typedef int64_t Int;Int54,1284 -typedef uint64_t UInt;UInt55,1305 -typedef int32_t Int;Int59,1352 -typedef uint32_t UInt;UInt60,1373 -typedef long int Int;Int64,1436 -typedef unsigned long int UInt;UInt65,1458 -typedef int Int;Int69,1525 -typedef unsigned int UInt;UInt70,1542 -/* */ typedef short int Short;Short76,1647 -/* */ typedef unsigned short int UShort;UShort77,1680 -typedef UInt CELL;CELL79,1724 -typedef uint16_t BITS16;BITS1681,1744 -typedef int16_t SBITS16;SBITS1682,1769 -typedef uint32_t BITS32;BITS3283,1794 -#define WordSize WordSize85,1820 -#define CellSize CellSize86,1852 -#define SmallSize SmallSize87,1882 -typedef UInt Term;Term95,2203 -typedef Int yhandle_t;yhandle_t97,2223 -typedef double Float;Float99,2247 -#define SHORT_INTS SHORT_INTS102,2300 -#define SHORT_INTS SHORT_INTS104,2327 -typedef long long int YAP_LONG_LONG;YAP_LONG_LONG108,2372 -typedef unsigned long long int YAP_ULONG_LONG;YAP_ULONG_LONG109,2409 -typedef long int YAP_LONG_LONG;YAP_LONG_LONG111,2462 -typedef unsigned long int YAP_ULONG_LONG;YAP_ULONG_LONG112,2494 -#define Unsigned(Unsigned115,2544 -#define Signed(Signed116,2576 - -H/YapText.h,15191 -#define YAP_TEXT_HYAP_TEXT_H18,610 -#define CHARCODE_MAX CHARCODE_MAX21,654 -#define CHARCODE_MAX CHARCODE_MAX23,688 -#define ReleaseAndReturn(ReleaseAndReturn34,864 -#define release_cut_fail(release_cut_fail39,1192 -#define release_cut_succeed(release_cut_succeed44,1520 -#define min(min63,2254 -#define MBYTE MBYTE66,2296 -#define NUMBER_OF_CHARS NUMBER_OF_CHARS72,2450 -#define Yap_strlen(Yap_strlen75,2504 - BG = 0, /* initial state */BG78,2562 - UC = 1, /* Upper case */UC79,2593 - UL = 2, /* Underline */UL80,2621 - LC = 3, /* Lower case */LC81,2648 - NU = 4, /* digit */NU82,2676 - QT = 5, /* single quote */QT83,2699 - DC = 6, /* double quote */DC84,2729 - SY = 7, /* Symbol character */SY85,2759 - SL = 8, /* Solo character */SL86,2793 - BK = 9, /* Brackets & friends */BK87,2825 - BS = 10, /* Blank */BS88,2861 - EF = 11, /* End of File marker */EF89,2884 - CC = 12 /* comment,char % */CC90,2920 -} char_kind_t;char_kind_t91,2952 -#define Yap_chtype Yap_chtype95,3003 -INLINE_ONLY EXTERN inline char_kind_t Yap_wide_chtype(int ch) {Yap_wide_chtype99,3079 -INLINE_ONLY EXTERN inline char_kind_t chtype(Int ch) {chtype170,5398 -#define __android_log_print(__android_log_print177,5561 -INLINE_ONLY inline EXTERN utf8proc_ssize_t get_utf8(const utf8proc_uint8_t *ptr,get_utf8184,5823 -INLINE_ONLY inline EXTERN utf8proc_ssize_t put_utf8(utf8proc_uint8_t *ptr,put_utf8193,6239 -inline static const utf8proc_uint8_t *skip_utf8(const utf8proc_uint8_t *pt,skip_utf8198,6434 -inline static utf8proc_ssize_t utf8_nof(utf8proc_int32_t val) {utf8_nof211,6773 -inline static utf8proc_ssize_t strlen_utf8(const utf8proc_uint8_t *pt) {strlen_utf8215,6874 -inline static utf8proc_ssize_t strlen_latin_utf8(const unsigned char *pt) {strlen_latin_utf8232,7201 -inline static utf8proc_ssize_t strnlen_latin_utf8(const unsigned char *pt,strnlen_latin_utf8245,7475 -inline static utf8proc_ssize_t strlen_ucs2_utf8(const wchar_t *pt) {strlen_ucs2_utf8261,7849 -inline static utf8proc_ssize_t strnlen_ucs2_utf8(const wchar_t *pt,strnlen_ucs2_utf8274,8116 -inline static int cmpn_utf8(const utf8proc_uint8_t *pt1,cmpn_utf8290,8482 -#define LEAD_OFFSET LEAD_OFFSET316,9113 -#define SURROGATE_OFFSET SURROGATE_OFFSET317,9180 - YAP_STRING_STRING = 0x1, /// target is a string termYAP_STRING_STRING326,9451 - YAP_STRING_CODES = 0x2, /// target is a list of integer codesYAP_STRING_CODES327,9511 - YAP_STRING_ATOMS = 0x4, /// target is a list of kength-1 atomYAP_STRING_ATOMS328,9581 - YAP_STRING_ATOMS_CODES = 0x6, /// targt is list of atoms or codesYAP_STRING_ATOMS_CODES329,9651 - YAP_STRING_CHARS = 0x8, /// target is a buffer, with byte-sized unitsYAP_STRING_CHARS330,9719 - YAP_STRING_WCHARS = 0x10, /// target is a buffer of wide charsYAP_STRING_WCHARS331,9797 - YAP_STRING_ATOM = 0x20, /// tarfet is an ayomYAP_STRING_ATOM332,9866 - YAP_STRING_INT = 0x40, /// target is an integer termYAP_STRING_INT333,9920 - YAP_STRING_FLOAT = 0x80, /// target is a floar termYAP_STRING_FLOAT334,9982 - YAP_STRING_BIG = 0x100, /// target is an big num termYAP_STRING_BIG335,10041 - YAP_STRING_DATUM =YAP_STRING_DATUM336,10103 - YAP_STRING_LENGTH =YAP_STRING_LENGTH338,10205 - YAP_STRING_NTH = 0x800, /// input: ignored; output: nth charYAP_STRING_NTH340,10303 - YAP_STRING_TERM = 0x1000, // Generic term, if nothing else givenYAP_STRING_TERM341,10377 - YAP_STRING_DIFF = 0x2000, // difference listYAP_STRING_DIFF342,10452 - YAP_STRING_NCHARS = 0x4000, // size of input/resultYAP_STRING_NCHARS343,10507 - YAP_STRING_TRUNC = 0x8000, // truncate on maximum size of input/resultYAP_STRING_TRUNC344,10567 - YAP_STRING_WQ = 0x10000, // output with write_quoteYAP_STRING_WQ345,10647 - YAP_STRING_WC = 0x20000, // output with write_canonicalYAP_STRING_WC346,10710 - YAP_STRING_WITH_BUFFER = 0x40000, // output on existing bufferYAP_STRING_WITH_BUFFER347,10777 - YAP_STRING_MALLOC = 0x80000, // output on malloced bufferYAP_STRING_MALLOC348,10842 - YAP_STRING_UPCASE = 0x100000, // output on malloced bufferYAP_STRING_UPCASE349,10907 - YAP_STRING_DOWNCASE = 0x200000, // output on malloced bufferYAP_STRING_DOWNCASE350,10972 - YAP_STRING_IN_TMP = 0x400000, // temporary space has been allocatedYAP_STRING_IN_TMP351,11037 - YAP_STRING_OUTPUT_TERM = 0x800000 // when we're not sureYAP_STRING_OUTPUT_TERM352,11111 -} enum_seq_type_t;enum_seq_type_t353,11170 -typedef UInt seq_type_t;seq_type_t355,11190 -#define YAP_TYPE_MASK YAP_TYPE_MASK357,11216 - Float f;f360,11262 - Float f;__anon211::f360,11262 - Int i;i361,11273 - Int i;__anon211::i361,11273 - MP_INT *b;b362,11282 - MP_INT *b;__anon211::b362,11282 - const char *c0;c0363,11295 - const char *c0;__anon211::c0363,11295 - const wchar_t *w0;w0364,11313 - const wchar_t *w0;__anon211::w0364,11313 - char *c;c365,11334 - char *c;__anon211::c365,11334 - unsigned char *uc;uc366,11345 - unsigned char *uc;__anon211::uc366,11345 - const unsigned char *uc0;uc0367,11366 - const unsigned char *uc0;__anon211::uc0367,11366 - wchar_t *w;w368,11394 - wchar_t *w;__anon211::w368,11394 - Atom a;a369,11408 - Atom a;__anon211::a369,11408 - size_t l;l370,11418 - size_t l;__anon211::l370,11418 - int d;d371,11430 - int d;__anon211::d371,11430 - Term t; // depends on other flagst372,11439 - Term t; // depends on other flags__anon211::t372,11439 -} seq_val_t;seq_val_t373,11475 -typedef struct text_cvt {text_cvt375,11489 - seq_type_t type;type376,11515 - seq_type_t type;text_cvt::type376,11515 - seq_val_t val;val377,11534 - seq_val_t val;text_cvt::val377,11534 - Term mod; // optionalmod378,11551 - Term mod; // optionaltext_cvt::mod378,11551 - Term dif; // diff-list, usually TermNildif379,11577 - Term dif; // diff-list, usually TermNiltext_cvt::dif379,11577 - size_t max; // max_sizemax380,11621 - size_t max; // max_sizetext_cvt::max380,11621 - encoding_t enc;enc381,11647 - encoding_t enc;text_cvt::enc381,11647 -} seq_tv_t;seq_tv_t382,11665 -static inline Term init_tstring(USES_REGS1) {init_tstring386,11711 -static inline unsigned char *buf_from_tstring(CELL *p) {buf_from_tstring393,11828 -static inline void close_tstring(unsigned char *p USES_REGS) {close_tstring398,11951 -static inline seq_type_t mod_to_type(Term mod USES_REGS) {mod_to_type407,12174 -static inline seq_type_t mod_to_bqtype(Term mod USES_REGS) {mod_to_bqtype422,12593 -static inline Atom Yap_AtomicToLowAtom(Term t0 USES_REGS) {Yap_AtomicToLowAtom448,13464 -static inline Atom Yap_AtomicToUpAtom(Term t0 USES_REGS) {Yap_AtomicToUpAtom460,13881 -static inline Term Yap_AtomicToLowString(Term t0 USES_REGS) {Yap_AtomicToLowString472,14295 -static inline Term Yap_AtomicToUpString(Term t0 USES_REGS) {Yap_AtomicToUpString484,14716 -static inline Term Yap_AtomicToLowListOfCodes(Term t0 USES_REGS) {Yap_AtomicToLowListOfCodes496,15134 -static inline Term Yap_AtomicToUpListOfCodes(Term t0 USES_REGS) {Yap_AtomicToUpListOfCodes508,15559 -static inline Term Yap_AtomicToLowListOfAtoms(Term t0 USES_REGS) {Yap_AtomicToLowListOfAtoms520,15981 -static inline Term Yap_AtomicToUpListOfAtoms(Term t0 USES_REGS) {Yap_AtomicToUpListOfAtoms532,16406 -static inline size_t Yap_AtomicToLength(Term t0 USES_REGS) {Yap_AtomicToLength544,16828 -static inline Term Yap_AtomicToListOfAtoms(Term t0 USES_REGS) {Yap_AtomicToListOfAtoms556,17226 -static inline Term Yap_AtomicToListOfCodes(Term t0 USES_REGS) {Yap_AtomicToListOfCodes567,17575 -static inline Atom Yap_AtomicToAtom(Term t0 USES_REGS) {Yap_AtomicToAtom579,17945 -static inline size_t Yap_AtomToLength(Term t0 USES_REGS) {Yap_AtomToLength591,18307 -static inline Term Yap_AtomToListOfAtoms(Term t0 USES_REGS) {Yap_AtomToListOfAtoms602,18580 -static inline Term Yap_AtomSWIToListOfAtoms(Term t0 USES_REGS) {Yap_AtomSWIToListOfAtoms613,18844 -static inline Term Yap_AtomToListOfCodes(Term t0 USES_REGS) {Yap_AtomToListOfCodes628,19255 -static inline Term Yap_AtomToNumber(Term t0 USES_REGS) {Yap_AtomToNumber639,19519 -static inline Term Yap_AtomToString(Term t0 USES_REGS) {Yap_AtomToString650,19812 -static inline Term Yap_AtomSWIToString(Term t0 USES_REGS) {Yap_AtomSWIToString663,20074 -static inline Term Yap_AtomicToString(Term t0 USES_REGS) {Yap_AtomicToString677,20450 -static inline Term Yap_AtomicToTDQ(Term t0, Term mod USES_REGS) {Yap_AtomicToTDQ691,20818 -static inline wchar_t *Yap_AtomToWide(Atom at USES_REGS) {Yap_AtomToWide705,21202 -static inline Term Yap_AtomicToTBQ(Term t0, Term mod USES_REGS) {Yap_AtomicToTBQ716,21465 -static inline Atom Yap_CharsToAtom(const char *s, encoding_t enc USES_REGS) {Yap_CharsToAtom730,21851 -static inline Term Yap_CharsToListOfAtoms(const char *s,Yap_CharsToListOfAtoms743,22149 -static inline Term Yap_CharsToListOfCodes(const char *s,Yap_CharsToListOfCodes757,22497 -static inline Term Yap_UTF8ToListOfCodes(const char *s USES_REGS) {Yap_UTF8ToListOfCodes771,22845 -static inline Atom Yap_UTF8ToAtom(const unsigned char *s USES_REGS) {Yap_UTF8ToAtom783,23122 -static inline Term Yap_CharsToDiffListOfCodes(const char *s, Term tail,Yap_CharsToDiffListOfCodes795,23401 -static inline Term Yap_UTF8ToDiffListOfCodes(const char *s,Yap_UTF8ToDiffListOfCodes810,23804 -static inline Term Yap_WCharsToDiffListOfCodes(const wchar_t *s,Yap_WCharsToDiffListOfCodes825,24198 -static inline Term Yap_CharsToString(const char *s, encoding_t enc USES_REGS) {Yap_CharsToString840,24575 -static inline char *Yap_AtomToUTF8Text(Atom at, const char *s USES_REGS) {Yap_AtomToUTF8Text853,24877 -static inline Term Yap_CharsToTDQ(const char *s, Term mod,Yap_CharsToTDQ873,25324 -static inline Term Yap_CharsToTBQ(const char *s, Term mod,Yap_CharsToTBQ888,25693 -static inline Atom Yap_ListOfAtomsToAtom(Term t0 USES_REGS) {Yap_ListOfAtomsToAtom903,26064 -static inline Term Yap_ListOfAtomsToNumber(Term t0 USES_REGS) {Yap_ListOfAtomsToNumber914,26336 -static inline Term Yap_ListOfAtomsToString(Term t0 USES_REGS) {Yap_ListOfAtomsToString926,26661 -static inline Atom Yap_ListOfCodesToAtom(Term t0 USES_REGS) {Yap_ListOfCodesToAtom937,26929 -static inline Term Yap_ListOfCodesToNumber(Term t0 USES_REGS) {Yap_ListOfCodesToNumber948,27201 -static inline Term Yap_ListOfCodesToString(Term t0 USES_REGS) {Yap_ListOfCodesToString959,27502 -static inline Atom Yap_ListToAtom(Term t0 USES_REGS) {Yap_ListToAtom970,27770 -static inline Term Yap_ListToAtomic(Term t0 USES_REGS) {Yap_ListToAtomic981,28033 -static inline Term Yap_ListToNumber(Term t0 USES_REGS) {Yap_ListToNumber993,28427 -static inline Term Yap_ListToString(Term t0 USES_REGS) {Yap_ListToString1006,28749 -static inline Term Yap_ListSWIToString(Term t0 USES_REGS) {Yap_ListSWIToString1019,29056 -static inline Term YapListToTDQ(Term t0, Term mod USES_REGS) {YapListToTDQ1034,29470 -static inline Term YapListToTBQ(Term t0, Term mod USES_REGS) {YapListToTBQ1047,29792 -static inline Atom Yap_NCharsToAtom(const char *s, size_t len,Yap_NCharsToAtom1060,30116 -static inline Term Yap_CharsToDiffListOfAtoms(const char *s, encoding_t enc,Yap_CharsToDiffListOfAtoms1075,30500 -static inline Term Yap_NCharsToListOfCodes(const char *s, size_t len,Yap_NCharsToListOfCodes1089,30882 -static inline Term Yap_NCharsToString(const char *s, size_t len,Yap_NCharsToString1103,31260 -static inline Term Yap_NCharsToTDQ(const char *s, size_t len, encoding_t enc,Yap_NCharsToTDQ1117,31629 -static inline Term Yap_NCharsToTBQ(const char *s, size_t len, encoding_t enc,Yap_NCharsToTBQ1132,32028 -static inline Atom Yap_NumberToAtom(Term t0 USES_REGS) {Yap_NumberToAtom1147,32413 -static inline Term Yap_NumberToListOfAtoms(Term t0 USES_REGS) {Yap_NumberToListOfAtoms1158,32709 -static inline Term Yap_NumberToListOfCodes(Term t0 USES_REGS) {Yap_NumberToListOfCodes1169,33013 -static inline Term Yap_NumberToString(Term t0 USES_REGS) {Yap_NumberToString1180,33317 -static inline Atom Yap_NWCharsToAtom(const wchar_t *s, size_t len USES_REGS) {Yap_NWCharsToAtom1191,33617 -static inline Term Yap_NWCharsToListOfAtoms(const wchar_t *s,Yap_NWCharsToListOfAtoms1203,33916 -static inline Term Yap_NWCharsToListOfCodes(const wchar_t *s,Yap_NWCharsToListOfCodes1216,34267 -static inline Term Yap_NWCharsToString(const wchar_t *s, size_t len USES_REGS) {Yap_NWCharsToString1230,34639 -static inline Atom Yap_StringToAtom(Term t0 USES_REGS) {Yap_StringToAtom1243,34963 -static inline Atom Yap_StringSWIToAtom(Term t0 USES_REGS) {Yap_StringSWIToAtom1254,35223 -static inline size_t Yap_StringToAtomic(Term t0 USES_REGS) {Yap_StringToAtomic1267,35626 -static inline size_t Yap_StringToLength(Term t0 USES_REGS) {Yap_StringToLength1279,35949 -static inline size_t Yap_StringToListOfAtoms(Term t0 USES_REGS) {Yap_StringToListOfAtoms1290,36226 -static inline size_t Yap_StringSWIToListOfAtoms(Term t0 USES_REGS) {Yap_StringSWIToListOfAtoms1301,36496 -static inline size_t Yap_StringToListOfCodes(Term t0 USES_REGS) {Yap_StringToListOfCodes1314,36909 -static inline size_t Yap_StringSWIToListOfCodes(Term t0 USES_REGS) {Yap_StringSWIToListOfCodes1325,37179 -static inline Term Yap_StringToNumber(Term t0 USES_REGS) {Yap_StringToNumber1338,37592 -static inline Atom Yap_TextToAtom(Term t0 USES_REGS) {Yap_TextToAtom1350,37913 -static inline Term Yap_TextToString(Term t0 USES_REGS) {Yap_TextToString1364,38248 -static inline void Yap_OverwriteUTF8BufferToLowCase(void *buf USES_REGS) {Yap_OverwriteUTF8BufferToLowCase1378,38587 -static inline const unsigned char *Yap_TextToUTF8Buffer(Term t0 USES_REGS) {Yap_TextToUTF8Buffer1389,38895 -static inline Term Yap_UTF8ToString(const char *s USES_REGS) {Yap_UTF8ToString1404,39301 -static inline Atom UTF32ToAtom(const wchar_t *s USES_REGS) {UTF32ToAtom1408,39393 -static inline Term Yap_WCharsToListOfCodes(const wchar_t *s USES_REGS) {Yap_WCharsToListOfCodes1420,39653 -static inline Term Yap_WCharsToTDQ(wchar_t *s, Term mod USES_REGS) {Yap_WCharsToTDQ1431,39930 -static inline Term Yap_WCharsToTBQ(wchar_t *s, Term mod USES_REGS) {Yap_WCharsToTBQ1445,40232 -static inline Term Yap_WCharsToString(const wchar_t *s USES_REGS) {Yap_WCharsToString1458,40534 -static inline Atom Yap_ConcatAtoms(Term t1, Term t2 USES_REGS) {Yap_ConcatAtoms1469,40807 -static inline Atom Yap_ConcatAtomics(Term t1, Term t2 USES_REGS) {Yap_ConcatAtomics1482,41155 -static inline Term Yap_ConcatStrings(Term t1, Term t2 USES_REGS) {Yap_ConcatStrings1497,41721 -static inline Atom Yap_SpliceAtom(Term t1, Atom ats[], size_t cut,Yap_SpliceAtom1510,42049 -static inline Atom Yap_SubtractHeadAtom(Term t1, Term th USES_REGS) {Yap_SubtractHeadAtom1527,42517 -static inline Atom Yap_SubtractTailAtom(Term t1, Term th USES_REGS) {Yap_SubtractTailAtom1540,42886 -static inline Term Yap_SpliceString(Term t1, Term ts[], size_t cut,Yap_SpliceString1553,43255 -static inline Term Yap_SubtractHeadString(Term t1, Term th USES_REGS) {Yap_SubtractHeadString1570,43721 -static inline Term Yap_SubtractTailString(Term t1, Term th USES_REGS) {Yap_SubtractTailString1583,44090 - -H/Yatom.h,46613 -#define YATOM_H YATOM_H21,671 -INLINE_ONLY inline EXTERN Atom AbsAtom(AtomEntry *p) {AbsAtom27,765 -INLINE_ONLY inline EXTERN AtomEntry *RepAtom(Atom a) {RepAtom33,915 -INLINE_ONLY inline EXTERN Atom AbsAtom(AtomEntry *p) { return (Atom)(p); }AbsAtom41,1084 -INLINE_ONLY inline EXTERN AtomEntry *RepAtom(Atom a) {RepAtom45,1215 -INLINE_ONLY inline EXTERN Prop AbsProp(PropEntry *p) {AbsProp55,1389 -INLINE_ONLY inline EXTERN PropEntry *RepProp(Prop p) {RepProp61,1539 -INLINE_ONLY inline EXTERN Prop AbsProp(PropEntry *p) { return (Prop)(p); }AbsProp69,1707 -INLINE_ONLY inline EXTERN PropEntry *RepProp(Prop p) {RepProp73,1838 -INLINE_ONLY inline EXTERN FunctorEntry *RepFunctorProp(Prop p) {RepFunctorProp83,2022 -INLINE_ONLY inline EXTERN Prop AbsFunctorProp(FunctorEntry *p) {AbsFunctorProp89,2206 -INLINE_ONLY inline EXTERN FunctorEntry *RepFunctorProp(Prop p) {RepFunctorProp97,2383 -INLINE_ONLY inline EXTERN Prop AbsFunctorProp(FunctorEntry *p) {AbsFunctorProp103,2546 - INLINE_ONLY inline EXTERN arity_t ArityOfFunctor(Functor Fun) {ArityOfFunctor111,2703 - INLINE_ONLY inline EXTERN Atom NameOfFunctor(Functor Fun) {NameOfFunctor117,2884 - INLINE_ONLY inline EXTERN PropFlags IsFunctorProperty(int flags) {IsFunctorProperty123,3062 - typedef struct global_entry {global_entry148,3640 - Prop NextOfPE; /* used to chain properties */NextOfPE149,3671 - Prop NextOfPE; /* used to chain properties */global_entry::NextOfPE149,3671 - PropFlags KindOfPE; /* kind of property */KindOfPE150,3737 - PropFlags KindOfPE; /* kind of property */global_entry::KindOfPE150,3737 - rwlock_t GRWLock; /* a simple lock to protect this entry */GRWLock152,3842 - rwlock_t GRWLock; /* a simple lock to protect this entry */global_entry::GRWLock152,3842 - unsigned int owner_id; /* owner thread */owner_id154,3917 - unsigned int owner_id; /* owner thread */global_entry::owner_id154,3917 - struct AtomEntryStruct *AtomOfGE; /* parent atom for deletion */AtomOfGE157,3976 - struct AtomEntryStruct *AtomOfGE; /* parent atom for deletion */global_entry::AtomOfGE157,3976 - struct global_entry *NextGE; /* linked list of global entries */NextGE158,4044 - struct global_entry *NextGE; /* linked list of global entries */global_entry::NextGE158,4044 - Term global; /* index in module table */global159,4117 - Term global; /* index in module table */global_entry::global159,4117 - Term AttChain; /* index in module table */AttChain160,4197 - Term AttChain; /* index in module table */global_entry::AttChain160,4197 - } GlobalEntry;GlobalEntry161,4277 - INLINE_ONLY inline EXTERN GlobalEntry *RepGlobalProp(Prop p) {RepGlobalProp167,4384 - INLINE_ONLY inline EXTERN Prop AbsGlobalProp(GlobalEntry *p) {AbsGlobalProp173,4567 -INLINE_ONLY inline EXTERN GlobalEntry *RepGlobalProp(Prop p) {RepGlobalProp181,4743 -INLINE_ONLY inline EXTERN Prop AbsGlobalProp(GlobalEntry *p) {AbsGlobalProp187,4901 -#define GlobalProperty GlobalProperty193,4995 -INLINE_ONLY inline EXTERN PropFlags IsGlobalProperty(int flags) {IsGlobalProperty197,5099 -typedef struct mod_entry {mod_entry206,5365 - Prop NextOfPE; /** chain of atom properties */NextOfPE207,5392 - Prop NextOfPE; /** chain of atom properties */mod_entry::NextOfPE207,5392 - PropFlags KindOfPE; /** kind of property */KindOfPE208,5469 - PropFlags KindOfPE; /** kind of property */mod_entry::KindOfPE208,5469 - struct pred_entry *PredForME; /** index in module table */PredForME209,5546 - struct pred_entry *PredForME; /** index in module table */mod_entry::PredForME209,5546 - struct operator_entry *OpForME; /** index in operator table */OpForME210,5623 - struct operator_entry *OpForME; /** index in operator table */mod_entry::OpForME210,5623 - Atom AtomOfME; /** module's name */AtomOfME211,5702 - Atom AtomOfME; /** module's name */mod_entry::AtomOfME211,5702 - Atom OwnerFile; /** module's owner file */OwnerFile212,5773 - Atom OwnerFile; /** module's owner file */mod_entry::OwnerFile212,5773 - rwlock_t ModRWLock; /** a read-write lock to protect the entry */ModRWLock214,5889 - rwlock_t ModRWLock; /** a read-write lock to protect the entry */mod_entry::ModRWLock214,5889 - unsigned int flags; /** Module local flags (from SWI compat) */flags216,5964 - unsigned int flags; /** Module local flags (from SWI compat) */mod_entry::flags216,5964 - struct mod_entry *NextME; /** next module */NextME217,6036 - struct mod_entry *NextME; /** next module */mod_entry::NextME217,6036 -} ModEntry;ModEntry218,6107 -INLINE_ONLY inline EXTERN ModEntry *RepModProp(Prop p) {RepModProp224,6203 -INLINE_ONLY inline EXTERN Prop AbsModProp(ModEntry *p) {AbsModProp230,6367 -INLINE_ONLY inline EXTERN ModEntry *RepModProp(Prop p) {RepModProp238,6528 -INLINE_ONLY inline EXTERN Prop AbsModProp(ModEntry *p) { return (Prop)(p); }AbsModProp244,6671 -#define ModToTerm(ModToTerm246,6749 -#define ModProperty ModProperty250,6817 -INLINE_ONLY inline EXTERN bool IsModProperty(int flags) {IsModProperty254,6910 -#define M_SYSTEM M_SYSTEM261,7094 -#define M_CHARESCAPE M_CHARESCAPE262,7144 -#define DBLQ_CHARS DBLQ_CHARS263,7187 -#define DBLQ_ATOM DBLQ_ATOM264,7243 -#define DBLQ_STRING DBLQ_STRING265,7293 -#define DBLQ_CODES DBLQ_CODES266,7343 -#define DBLQ_MASK DBLQ_MASK267,7399 -#define BCKQ_CHARS BCKQ_CHARS268,7469 -#define BCKQ_ATOM BCKQ_ATOM269,7524 -#define BCKQ_STRING BCKQ_STRING270,7573 -#define BCKQ_CODES BCKQ_CODES271,7622 -#define BCKQ_MASK BCKQ_MASK272,7677 -#define UNKNOWN_FAIL UNKNOWN_FAIL273,7747 -#define UNKNOWN_WARNING UNKNOWN_WARNING274,7795 -#define UNKNOWN_ERROR UNKNOWN_ERROR275,7843 -#define UNKNOWN_FAST_FAIL UNKNOWN_FAST_FAIL276,7891 -#define UNKNOWN_ABORT UNKNOWN_ABORT277,7939 -#define UNKNOWN_HALT UNKNOWN_HALT278,7987 -#define UNKNOWN_MASK UNKNOWN_MASK279,8035 -typedef struct operator_entry {operator_entry287,8370 - Prop NextOfPE; /* used to chain properties */NextOfPE288,8402 - Prop NextOfPE; /* used to chain properties */operator_entry::NextOfPE288,8402 - PropFlags KindOfPE; /* kind of property */KindOfPE289,8459 - PropFlags KindOfPE; /* kind of property */operator_entry::KindOfPE289,8459 - rwlock_t OpRWLock; /* a read-write lock to protect the entry */OpRWLock291,8555 - rwlock_t OpRWLock; /* a read-write lock to protect the entry */operator_entry::OpRWLock291,8555 - Atom OpName; /* atom name */OpName293,8628 - Atom OpName; /* atom name */operator_entry::OpName293,8628 - Term OpModule; /* module of predicate */OpModule294,8689 - Term OpModule; /* module of predicate */operator_entry::OpModule294,8689 - struct operator_entry *OpNext; /* next in list of operators */OpNext295,8760 - struct operator_entry *OpNext; /* next in list of operators */operator_entry::OpNext295,8760 - struct operator_entry *NextForME; /* next in list of module operators */NextForME296,8829 - struct operator_entry *NextForME; /* next in list of module operators */operator_entry::NextForME296,8829 - BITS16 Prefix, Infix, Posfix; /**o precedences */Prefix297,8905 - BITS16 Prefix, Infix, Posfix; /**o precedences */operator_entry::Prefix297,8905 - BITS16 Prefix, Infix, Posfix; /**o precedences */Infix297,8905 - BITS16 Prefix, Infix, Posfix; /**o precedences */operator_entry::Infix297,8905 - BITS16 Prefix, Infix, Posfix; /**o precedences */Posfix297,8905 - BITS16 Prefix, Infix, Posfix; /**o precedences */operator_entry::Posfix297,8905 -} OpEntry;OpEntry298,8978 -INLINE_ONLY inline EXTERN OpEntry *RepOpProp(Prop p) {RepOpProp303,9070 -INLINE_ONLY inline EXTERN Prop AbsOpProp(OpEntry *p) {AbsOpProp309,9229 -INLINE_ONLY inline EXTERN OpEntry *RepOpProp(Prop p) { return (OpEntry *)(p); }RepOpProp317,9386 -INLINE_ONLY inline EXTERN Prop AbsOpProp(OpEntry *p) { return (Prop)(p); }AbsOpProp321,9522 -#define OpProperty OpProperty324,9605 -INLINE_ONLY inline EXTERN bool IsOpProperty(PropFlags flags) {IsOpProperty328,9702 -typedef enum { INFIX_OP = 0, POSFIX_OP = 1, PREFIX_OP = 2 } op_type;INFIX_OP332,9798 -typedef enum { INFIX_OP = 0, POSFIX_OP = 1, PREFIX_OP = 2 } op_type;POSFIX_OP332,9798 -typedef enum { INFIX_OP = 0, POSFIX_OP = 1, PREFIX_OP = 2 } op_type;PREFIX_OP332,9798 -typedef enum { INFIX_OP = 0, POSFIX_OP = 1, PREFIX_OP = 2 } op_type;op_type332,9798 -#define MaskPrio MaskPrio343,10169 -#define DcrlpFlag DcrlpFlag344,10193 -#define DcrrpFlag DcrrpFlag345,10218 -typedef union arith_ret *eval_ret;eval_ret347,10244 - Prop NextOfPE; /* used to chain properties */NextOfPE351,10345 - Prop NextOfPE; /* used to chain properties */__anon213::NextOfPE351,10345 - PropFlags KindOfPE; /* kind of property */KindOfPE352,10410 - PropFlags KindOfPE; /* kind of property */__anon213::KindOfPE352,10410 - unsigned int ArityOfEE;ArityOfEE353,10475 - unsigned int ArityOfEE;__anon213::ArityOfEE353,10475 - BITS16 ENoOfEE;ENoOfEE354,10501 - BITS16 ENoOfEE;__anon213::ENoOfEE354,10501 - BITS16 FlagsOfEE;FlagsOfEE355,10519 - BITS16 FlagsOfEE;__anon213::FlagsOfEE355,10519 - int FOfEE;FOfEE357,10588 - int FOfEE;__anon213::FOfEE357,10588 -} ExpEntry;ExpEntry358,10601 -INLINE_ONLY inline EXTERN ExpEntry *RepExpProp(Prop p) {RepExpProp363,10696 -INLINE_ONLY inline EXTERN Prop AbsExpProp(ExpEntry *p) {AbsExpProp369,10860 -INLINE_ONLY inline EXTERN ExpEntry *RepExpProp(Prop p) {RepExpProp377,11021 -INLINE_ONLY inline EXTERN Prop AbsExpProp(ExpEntry *p) { return (Prop)(p); }AbsExpProp383,11164 -#define ExpProperty ExpProperty386,11249 -INLINE_ONLY inline EXTERN PropFlags IsExpProperty(int flags) {IsExpProperty392,11390 - Prop NextOfPE; /* used to chain properties */NextOfPE398,11560 - Prop NextOfPE; /* used to chain properties */__anon214::NextOfPE398,11560 - PropFlags KindOfPE; /* kind of property */KindOfPE399,11625 - PropFlags KindOfPE; /* kind of property */__anon214::KindOfPE399,11625 - rwlock_t VRWLock; /* a read-write lock to protect the entry */VRWLock401,11729 - rwlock_t VRWLock; /* a read-write lock to protect the entry */__anon214::VRWLock401,11729 - Term ValueOfVE; /* (atomic) value associated with the atom */ValueOfVE403,11801 - Term ValueOfVE; /* (atomic) value associated with the atom */__anon214::ValueOfVE403,11801 -} ValEntry;ValEntry404,11865 -INLINE_ONLY inline EXTERN ValEntry *RepValProp(Prop p) {RepValProp409,11960 -INLINE_ONLY inline EXTERN Prop AbsValProp(ValEntry *p) {AbsValProp415,12124 -INLINE_ONLY inline EXTERN ValEntry *RepValProp(Prop p) {RepValProp423,12285 -INLINE_ONLY inline EXTERN Prop AbsValProp(ValEntry *p) { return (Prop)(p); }AbsValProp429,12428 -#define ValProperty ValProperty432,12513 -typedef uint64_t pred_flags_t;pred_flags_t444,13036 -#define ProfiledPredFlag ProfiledPredFlag446,13068 -#define DiscontiguousPredFlag DiscontiguousPredFlag448,13211 -#define SysExportPredFlag SysExportPredFlag451,13422 -#define NoTracePredFlag NoTracePredFlag453,13518 -#define NoSpyPredFlag NoSpyPredFlag455,13663 -#define QuasiQuotationPredFlag QuasiQuotationPredFlag457,13806 -#define MegaClausePredFlag MegaClausePredFlag459,13949 -#define ThreadLocalPredFlag ThreadLocalPredFlag461,14107 -#define MultiFileFlag MultiFileFlag462,14186 -#define UserCPredFlag UserCPredFlag463,14261 -#define LogUpdatePredFlag LogUpdatePredFlag466,14458 -#define InUsePredFlag InUsePredFlag468,14612 -#define CountPredFlag CountPredFlag469,14688 -#define HiddenPredFlag HiddenPredFlag470,14764 -#define CArgsPredFlag CArgsPredFlag471,14840 -#define SourcePredFlag SourcePredFlag473,14983 -#define MetaPredFlag MetaPredFlag475,15140 -#define SyncPredFlag SyncPredFlag477,15296 -#define NumberDBPredFlag NumberDBPredFlag479,15447 -#define AtomDBPredFlag AtomDBPredFlag482,15665 -#define TestPredFlag TestPredFlag485,15848 -#define AsmPredFlag AsmPredFlag486,15927 -#define StandardPredFlag StandardPredFlag487,15988 -#define DynamicPredFlag DynamicPredFlag488,16063 -#define CPredFlag CPredFlag489,16139 -#define SafePredFlag SafePredFlag490,16210 -#define CompiledPredFlag CompiledPredFlag491,16289 -#define IndexedPredFlag IndexedPredFlag492,16357 -#define SpiedPredFlag SpiedPredFlag493,16433 -#define BinaryPredFlag BinaryPredFlag494,16506 -#define TabledPredFlag TabledPredFlag495,16579 -#define SequentialPredFlag SequentialPredFlag496,16647 -#define BackCPredFlag BackCPredFlag498,16802 -#define ModuleTransparentPredFlag ModuleTransparentPredFlag501,16999 -#define SWIEnvPredFlag SWIEnvPredFlag503,17160 -#define UDIPredFlag UDIPredFlag504,17234 -#define SystemPredFlags SystemPredFlags506,17313 -#define ForeignPredFlags ForeignPredFlags508,17474 -#define StatePredFlags StatePredFlags512,17702 -#define is_system(is_system514,17851 -#define is_dynamic(is_dynamic515,17907 -#define is_foreign(is_foreign516,17964 -#define is_static(is_static517,18022 -#define is_logupd(is_logupd518,18079 -#define is_tabled(is_tabled520,18152 - UInt NOfEntries; /* nbr of times head unification succeeded */NOfEntries525,18265 - UInt NOfEntries; /* nbr of times head unification succeeded */__anon215::NOfEntries525,18265 - UInt NOfHeadSuccesses; /* nbr of times head unification succeeded */NOfHeadSuccesses526,18336 - UInt NOfHeadSuccesses; /* nbr of times head unification succeeded */__anon215::NOfHeadSuccesses526,18336 - UInt NOfRetries; /* nbr of times a clause for the predNOfRetries527,18407 - UInt NOfRetries; /* nbr of times a clause for the pred__anon215::NOfRetries527,18407 - lockvar lock; /* a simple lock to protect this entry */lock530,18560 - lockvar lock; /* a simple lock to protect this entry */__anon215::lock530,18560 -} profile_data;profile_data532,18625 -typedef enum { LUCALL_EXEC, LUCALL_ASSERT, LUCALL_RETRACT } timestamp_type;LUCALL_EXEC534,18642 -typedef enum { LUCALL_EXEC, LUCALL_ASSERT, LUCALL_RETRACT } timestamp_type;LUCALL_ASSERT534,18642 -typedef enum { LUCALL_EXEC, LUCALL_ASSERT, LUCALL_RETRACT } timestamp_type;LUCALL_RETRACT534,18642 -typedef enum { LUCALL_EXEC, LUCALL_ASSERT, LUCALL_RETRACT } timestamp_type;timestamp_type534,18642 -#define TIMESTAMP_EOT TIMESTAMP_EOT536,18719 -#define TIMESTAMP_RESET TIMESTAMP_RESET537,18755 -typedef struct pred_entry {pred_entry539,18803 - Prop NextOfPE; /* used to chain properties */NextOfPE540,18831 - Prop NextOfPE; /* used to chain properties */pred_entry::NextOfPE540,18831 - PropFlags KindOfPE; /* kind of property */KindOfPE541,18896 - PropFlags KindOfPE; /* kind of property */pred_entry::KindOfPE541,18896 - struct yami *CodeOfPred;CodeOfPred542,18961 - struct yami *CodeOfPred;pred_entry::CodeOfPred542,18961 - OPCODE OpcodeOfPred; /* undefcode, indexcode, spycode, .... */OpcodeOfPred543,18988 - OPCODE OpcodeOfPred; /* undefcode, indexcode, spycode, .... */pred_entry::OpcodeOfPred543,18988 - pred_flags_t PredFlags;PredFlags544,19054 - pred_flags_t PredFlags;pred_entry::PredFlags544,19054 - UInt ArityOfPE; /* arity of property */ArityOfPE545,19080 - UInt ArityOfPE; /* arity of property */pred_entry::ArityOfPE545,19080 - struct yami *TrueCodeOfPred; /* code address */TrueCodeOfPred548,19164 - struct yami *TrueCodeOfPred; /* code address */pred_entry::__anon217::__anon218::TrueCodeOfPred548,19164 - struct yami *FirstClause;FirstClause549,19242 - struct yami *FirstClause;pred_entry::__anon217::__anon218::FirstClause549,19242 - struct yami *LastClause;LastClause550,19274 - struct yami *LastClause;pred_entry::__anon217::__anon218::LastClause550,19274 - UInt NOfClauses;NOfClauses551,19305 - UInt NOfClauses;pred_entry::__anon217::__anon218::NOfClauses551,19305 - OPCODE ExpandCode;ExpandCode552,19328 - OPCODE ExpandCode;pred_entry::__anon217::__anon218::ExpandCode552,19328 - } p_code;p_code553,19353 - } p_code;pred_entry::__anon217::p_code553,19353 - CPredicate f_code;f_code554,19367 - CPredicate f_code;pred_entry::__anon217::f_code554,19367 - CmpPredicate d_code;d_code555,19390 - CmpPredicate d_code;pred_entry::__anon217::d_code555,19390 - } cs; /* if needing to spy or to lock */cs556,19415 - } cs; /* if needing to spy or to lock */pred_entry::cs556,19415 - Functor FunctorOfPred; /* functor for Predicate */FunctorOfPred557,19483 - Functor FunctorOfPred; /* functor for Predicate */pred_entry::FunctorOfPred557,19483 - Atom OwnerFile; /* File where the predicate was defined */OwnerFile559,19561 - Atom OwnerFile; /* File where the predicate was defined */pred_entry::__anon219::OwnerFile559,19561 - Int IndxId; /* Index for a certain key */IndxId560,19624 - Int IndxId; /* Index for a certain key */pred_entry::__anon219::IndxId560,19624 - } src;src561,19674 - } src;pred_entry::src561,19674 - lockvar PELock; /* a simple lock to protect expansion */PELock563,19722 - lockvar PELock; /* a simple lock to protect expansion */pred_entry::PELock563,19722 - tab_ent_ptr TableOfPred;TableOfPred566,19803 - tab_ent_ptr TableOfPred;pred_entry::TableOfPred566,19803 - struct Predicates *beamTable;beamTable569,19863 - struct Predicates *beamTable;pred_entry::beamTable569,19863 - struct yami *MetaEntryOfPred; /* allow direct access from meta-calls */MetaEntryOfPred571,19902 - struct yami *MetaEntryOfPred; /* allow direct access from meta-calls */pred_entry::MetaEntryOfPred571,19902 - Term ModuleOfPred; /* module for this definition */ModuleOfPred572,19976 - Term ModuleOfPred; /* module for this definition */pred_entry::ModuleOfPred572,19976 - UInt TimeStampOfPred;TimeStampOfPred573,20051 - UInt TimeStampOfPred;pred_entry::TimeStampOfPred573,20051 - timestamp_type LastCallOfPred;LastCallOfPred574,20075 - timestamp_type LastCallOfPred;pred_entry::LastCallOfPred574,20075 - profile_data *StatisticsForPred; /* enable profiling for predicate */StatisticsForPred577,20211 - profile_data *StatisticsForPred; /* enable profiling for predicate */pred_entry::StatisticsForPred577,20211 - struct pred_entry *NextPredOfModule; /* next pred for same module */NextPredOfModule578,20288 - struct pred_entry *NextPredOfModule; /* next pred for same module */pred_entry::NextPredOfModule578,20288 - struct pred_entry *NextPredOfHash; /* next pred for same module */NextPredOfHash579,20361 - struct pred_entry *NextPredOfHash; /* next pred for same module */pred_entry::NextPredOfHash579,20361 -} PredEntry;PredEntry580,20434 -#define PEProp PEProp581,20447 -INLINE_ONLY inline EXTERN PredEntry *RepPredProp(Prop p) {RepPredProp587,20570 -INLINE_ONLY inline EXTERN Prop AbsPredProp(PredEntry *p) {AbsPredProp593,20739 -INLINE_ONLY inline EXTERN PredEntry *RepPredProp(Prop p) {RepPredProp601,20904 -INLINE_ONLY inline EXTERN Prop AbsPredProp(PredEntry *p) { return (Prop)(p); }AbsPredProp608,21053 -INLINE_ONLY inline EXTERN PropFlags IsPredProperty(int flags) {IsPredProperty614,21199 -INLINE_ONLY inline EXTERN Atom NameOfPred(PredEntry *pe) {NameOfPred620,21366 - ExoMask = 0x1000000, /* is exo code */ExoMask640,21917 - FuncSwitchMask = 0x800000, /* is a switch of functors */FuncSwitchMask641,21965 - HasDBTMask = 0x400000, /* includes a pointer to a DBTerm */HasDBTMask642,22024 - MegaMask = 0x200000, /* mega clause */MegaMask643,22090 - FactMask = 0x100000, /* a fact */FactMask644,22137 - SwitchRootMask = 0x80000, /* root for the index tree */SwitchRootMask645,22179 - SwitchTableMask = 0x40000, /* switch table */SwitchTableMask646,22238 - HasBlobsMask = 0x20000, /* blobs which may be in use */HasBlobsMask647,22286 - ProfFoundMask = 0x10000, /* clause is being counted by profiler */ProfFoundMask648,22347 - DynamicMask = 0x8000, /* dynamic predicate */DynamicMask649,22418 - InUseMask = 0x4000, /* this block is being used */InUseMask650,22471 - ErasedMask = 0x2000, /* this block has been erased */ErasedMask651,22531 - IndexMask = 0x1000, /* indexing code */IndexMask652,22593 - DBClMask = 0x0800, /* data base structure */DBClMask653,22642 - LogUpdRuleMask = 0x0400, /* code is for a log upd rule with env */LogUpdRuleMask654,22697 - LogUpdMask = 0x0200, /* logic update index. */LogUpdMask655,22768 - StaticMask = 0x0100, /* static predicates */StaticMask656,22823 - DirtyMask = 0x0080, /* LUIndices */DirtyMask657,22876 - HasCutMask = 0x0040, /* ! */HasCutMask658,22922 - SrcMask = 0x0020, /* has a source term, only for static references */SrcMask659,22959 -} dbentry_flags;dbentry_flags661,23073 -typedef struct DB_TERM {DB_TERM681,24081 - CELL attachments; /* attached terms */attachments684,24135 - CELL attachments; /* attached terms */DB_TERM::__anon221::attachments684,24135 - Int line_number;line_number685,24178 - Int line_number;DB_TERM::__anon221::line_number685,24178 - struct DB_TERM *NextDBT;NextDBT686,24199 - struct DB_TERM *NextDBT;DB_TERM::__anon221::NextDBT686,24199 - } ag;ag687,24228 - } ag;DB_TERM::ag687,24228 - struct DB_STRUCT **DBRefs; /* pointer to other references */DBRefs689,24243 - struct DB_STRUCT **DBRefs; /* pointer to other references */DB_TERM::DBRefs689,24243 - CELL NOfCells; /* Size of Term */NOfCells690,24310 - CELL NOfCells; /* Size of Term */DB_TERM::NOfCells690,24310 - CELL Entry; /* entry point */Entry691,24382 - CELL Entry; /* entry point */DB_TERM::Entry691,24382 - Term Contents[MIN_ARRAY]; /* stored term */Contents692,24454 - Term Contents[MIN_ARRAY]; /* stored term */DB_TERM::Contents692,24454 -} DBTerm;DBTerm693,24522 -INLINE_ONLY inline EXTERN DBTerm *TermToDBTerm(Term X) {TermToDBTerm697,24588 -typedef struct DB_STRUCT {DB_STRUCT708,24992 - Functor id; /* allow pointers to this struct to id */id709,25019 - Functor id; /* allow pointers to this struct to id */DB_STRUCT::id709,25019 - CELL Flags; /* Term Flags */Flags711,25121 - CELL Flags; /* Term Flags */DB_STRUCT::Flags711,25121 - lockvar lock; /* a simple lock to protect this entry */lock713,25217 - lockvar lock; /* a simple lock to protect this entry */DB_STRUCT::lock713,25217 - Int ref_count; /* how many branches are using this entry */ref_count716,25302 - Int ref_count; /* how many branches are using this entry */DB_STRUCT::ref_count716,25302 - CELL NOfRefsTo; /* Number of references pointing here */NOfRefsTo718,25371 - CELL NOfRefsTo; /* Number of references pointing here */DB_STRUCT::NOfRefsTo718,25371 - struct struct_dbentry *Parent; /* key of DBase reference */Parent719,25447 - struct struct_dbentry *Parent; /* key of DBase reference */DB_STRUCT::Parent719,25447 - struct yami *Code; /* pointer to code if this is a clause */Code720,25523 - struct yami *Code; /* pointer to code if this is a clause */DB_STRUCT::Code720,25523 - struct DB_STRUCT *Prev; /* Previous element in chain */Prev721,25599 - struct DB_STRUCT *Prev; /* Previous element in chain */DB_STRUCT::Prev721,25599 - struct DB_STRUCT *Next; /* Next element in chain */Next722,25675 - struct DB_STRUCT *Next; /* Next element in chain */DB_STRUCT::Next722,25675 - struct DB_STRUCT *p, *n; /* entry's age, negative if from recorda,p723,25751 - struct DB_STRUCT *p, *n; /* entry's age, negative if from recorda,DB_STRUCT::p723,25751 - struct DB_STRUCT *p, *n; /* entry's age, negative if from recorda,n723,25751 - struct DB_STRUCT *p, *n; /* entry's age, negative if from recorda,DB_STRUCT::n723,25751 - CELL Mask; /* parts that should be cleared */Mask725,25893 - CELL Mask; /* parts that should be cleared */DB_STRUCT::Mask725,25893 - CELL Key; /* A mask that can be used to check beforeKey726,25969 - CELL Key; /* A mask that can be used to check beforeDB_STRUCT::Key726,25969 - DBTerm DBT;DBT728,26094 - DBTerm DBT;DB_STRUCT::DBT728,26094 -} DBStruct;DBStruct729,26108 -#define DBStructFlagsToDBStruct(DBStructFlagsToDBStruct731,26121 -#define INIT_DBREF_COUNT(INIT_DBREF_COUNT735,26291 -#define INC_DBREF_COUNT(INC_DBREF_COUNT736,26338 -#define DEC_DBREF_COUNT(DEC_DBREF_COUNT737,26382 -#define DBREF_IN_USE(DBREF_IN_USE738,26426 -#define INIT_DBREF_COUNT(INIT_DBREF_COUNT740,26478 -#define INC_DBREF_COUNT(INC_DBREF_COUNT741,26506 -#define DEC_DBREF_COUNT(DEC_DBREF_COUNT742,26533 -#define DBREF_IN_USE(DBREF_IN_USE743,26560 -typedef DBStruct *DBRef;DBRef746,26617 -INLINE_ONLY inline EXTERN int IsDBRefTerm(Term t) {IsDBRefTerm752,26729 -INLINE_ONLY inline EXTERN Term MkDBRefTerm(DBRef p) {MkDBRefTerm758,26903 -INLINE_ONLY inline EXTERN DBRef DBRefOfTerm(Term t) {DBRefOfTerm764,27057 -INLINE_ONLY inline EXTERN int IsRefTerm(Term t) {IsRefTerm770,27203 -INLINE_ONLY inline EXTERN CODEADDR RefOfTerm(Term t) {RefOfTerm776,27378 -typedef struct struct_dbentry {struct_dbentry780,27473 - Prop NextOfPE; /* used to chain properties */NextOfPE781,27505 - Prop NextOfPE; /* used to chain properties */struct_dbentry::NextOfPE781,27505 - PropFlags KindOfPE; /* kind of property */KindOfPE782,27574 - PropFlags KindOfPE; /* kind of property */struct_dbentry::KindOfPE782,27574 - unsigned int ArityOfDB; /* kind of property */ArityOfDB783,27643 - unsigned int ArityOfDB; /* kind of property */struct_dbentry::ArityOfDB783,27643 - Functor FunctorOfDB; /* functor for this property */FunctorOfDB784,27712 - Functor FunctorOfDB; /* functor for this property */struct_dbentry::FunctorOfDB784,27712 - rwlock_t DBRWLock; /* a simple lock to protect this entry */DBRWLock786,27820 - rwlock_t DBRWLock; /* a simple lock to protect this entry */struct_dbentry::DBRWLock786,27820 - DBRef First; /* first DBase entry */First788,27890 - DBRef First; /* first DBase entry */struct_dbentry::First788,27890 - DBRef Last; /* last DBase entry */Last789,27952 - DBRef Last; /* last DBase entry */struct_dbentry::Last789,27952 - Term ModuleOfDB; /* module for this definition */ModuleOfDB790,28014 - Term ModuleOfDB; /* module for this definition */struct_dbentry::ModuleOfDB790,28014 - DBRef F0, L0; /* everyone */F0791,28076 - DBRef F0, L0; /* everyone */struct_dbentry::F0791,28076 - DBRef F0, L0; /* everyone */L0791,28076 - DBRef F0, L0; /* everyone */struct_dbentry::L0791,28076 -} DBEntry;DBEntry792,28135 -typedef DBEntry *DBProp;DBProp793,28146 -#define DBProperty DBProperty794,28171 - Prop NextOfPE; /* used to chain properties */NextOfPE797,28228 - Prop NextOfPE; /* used to chain properties */__anon222::NextOfPE797,28228 - PropFlags KindOfPE; /* kind of property */KindOfPE798,28297 - PropFlags KindOfPE; /* kind of property */__anon222::KindOfPE798,28297 - unsigned int ArityOfDB; /* kind of property */ArityOfDB799,28366 - unsigned int ArityOfDB; /* kind of property */__anon222::ArityOfDB799,28366 - Functor FunctorOfDB; /* functor for this property */FunctorOfDB800,28435 - Functor FunctorOfDB; /* functor for this property */__anon222::FunctorOfDB800,28435 - rwlock_t DBRWLock; /* a simple lock to protect this entry */DBRWLock802,28543 - rwlock_t DBRWLock; /* a simple lock to protect this entry */__anon222::DBRWLock802,28543 - DBRef First; /* first DBase entry */First804,28613 - DBRef First; /* first DBase entry */__anon222::First804,28613 - DBRef Last; /* last DBase entry */Last805,28675 - DBRef Last; /* last DBase entry */__anon222::Last805,28675 - Term ModuleOfDB; /* module for this definition */ModuleOfDB806,28737 - Term ModuleOfDB; /* module for this definition */__anon222::ModuleOfDB806,28737 - Int NOfEntries; /* age counter */NOfEntries807,28799 - Int NOfEntries; /* age counter */__anon222::NOfEntries807,28799 - DBRef Index; /* age counter */Index808,28861 - DBRef Index; /* age counter */__anon222::Index808,28861 -} LogUpdDBEntry;LogUpdDBEntry809,28923 -typedef LogUpdDBEntry *LogUpdDBProp;LogUpdDBProp810,28940 -#define CodeDBBit CodeDBBit811,28977 -#define CodeDBProperty CodeDBProperty813,29000 -INLINE_ONLY inline EXTERN PropFlags IsDBProperty(int flags) {IsDBProperty817,29105 -INLINE_ONLY inline EXTERN DBProp RepDBProp(Prop p) {RepDBProp825,29307 -INLINE_ONLY inline EXTERN Prop AbsDBProp(DBProp p) {AbsDBProp831,29459 -INLINE_ONLY inline EXTERN DBProp RepDBProp(Prop p) { return (DBProp)(p); }RepDBProp839,29612 -INLINE_ONLY inline EXTERN Prop AbsDBProp(DBProp p) { return (Prop)(p); }AbsDBProp843,29741 - DBAtomic = 0x1,DBAtomic849,29890 - DBVar = 0x2,DBVar850,29908 - DBNoVars = 0x4,DBNoVars851,29923 - DBComplex = 0x8,DBComplex852,29941 - DBCode = 0x10,DBCode853,29960 - DBNoCode = 0x20,DBNoCode854,29977 - DBWithRefs = 0x40DBWithRefs855,29996 -} db_term_flags;db_term_flags856,30016 - Prop NextOfPE; /* used to chain properties */NextOfPE859,30051 - Prop NextOfPE; /* used to chain properties */__anon224::NextOfPE859,30051 - PropFlags KindOfPE; /* kind of property */KindOfPE860,30119 - PropFlags KindOfPE; /* kind of property */__anon224::KindOfPE860,30119 - Atom KeyOfBB; /* functor for this property */KeyOfBB861,30187 - Atom KeyOfBB; /* functor for this property */__anon224::KeyOfBB861,30187 - Term Element; /* blackboard element */Element862,30255 - Term Element; /* blackboard element */__anon224::Element862,30255 - rwlock_t BBRWLock; /* a read-write lock to protect the entry */BBRWLock864,30362 - rwlock_t BBRWLock; /* a read-write lock to protect the entry */__anon224::BBRWLock864,30362 - Term ModuleOfBB; /* module for this definition */ModuleOfBB866,30435 - Term ModuleOfBB; /* module for this definition */__anon224::ModuleOfBB866,30435 -} BlackBoardEntry;BlackBoardEntry867,30499 -typedef BlackBoardEntry *BBProp;BBProp868,30518 -INLINE_ONLY inline EXTERN BlackBoardEntry *RepBBProp(Prop p) {RepBBProp874,30641 -INLINE_ONLY inline EXTERN Prop AbsBBProp(BlackBoardEntry *p) {AbsBBProp880,30824 -INLINE_ONLY inline EXTERN BlackBoardEntry *RepBBProp(Prop p) {RepBBProp888,30997 -INLINE_ONLY inline EXTERN Prop AbsBBProp(BlackBoardEntry *p) {AbsBBProp894,31159 -#define BBProperty BBProperty900,31253 -INLINE_ONLY inline EXTERN PropFlags IsBBProperty(int flags) {IsBBProperty904,31349 -typedef struct hold_entry {hold_entry909,31499 - Prop NextOfPE; /* used to chain properties */NextOfPE910,31527 - Prop NextOfPE; /* used to chain properties */hold_entry::NextOfPE910,31527 - PropFlags KindOfPE; /* kind of property */KindOfPE911,31592 - PropFlags KindOfPE; /* kind of property */hold_entry::KindOfPE911,31592 - UInt RefsOfPE; /* used to count the number of holds */RefsOfPE912,31657 - UInt RefsOfPE; /* used to count the number of holds */hold_entry::RefsOfPE912,31657 -} HoldEntry;HoldEntry913,31722 -INLINE_ONLY inline EXTERN HoldEntry *RepHoldProp(Prop p) {RepHoldProp919,31821 -INLINE_ONLY inline EXTERN Prop AbsHoldProp(HoldEntry *p) {AbsHoldProp925,31990 -INLINE_ONLY inline EXTERN HoldEntry *RepHoldProp(Prop p) {RepHoldProp933,32155 -INLINE_ONLY inline EXTERN Prop AbsHoldProp(HoldEntry *p) { return (Prop)(p); }AbsHoldProp939,32303 -#define HoldProperty HoldProperty943,32391 -typedef struct translation_entry {translation_entry946,32464 - Prop NextOfPE; /* used to chain properties */NextOfPE947,32499 - Prop NextOfPE; /* used to chain properties */translation_entry::NextOfPE947,32499 - PropFlags KindOfPE; /* kind of property */KindOfPE948,32564 - PropFlags KindOfPE; /* kind of property */translation_entry::KindOfPE948,32564 - arity_t arity; /* refers to atom (0) or functor(N > 0) */arity949,32629 - arity_t arity; /* refers to atom (0) or functor(N > 0) */translation_entry::arity949,32629 - Int Translation; /* used to hash the atom as an integer; */Translation950,32694 - Int Translation; /* used to hash the atom as an integer; */translation_entry::Translation950,32694 -} TranslationEntry;TranslationEntry951,32759 -INLINE_ONLY inline EXTERN TranslationEntry *RepTranslationProp(Prop p) {RepTranslationProp957,32879 -INLINE_ONLY inline EXTERN Prop AbsTranslationProp(TranslationEntry *p) {AbsTranslationProp963,33083 -INLINE_ONLY inline EXTERN TranslationEntry *RepTranslationProp(Prop p) {RepTranslationProp971,33276 -INLINE_ONLY inline EXTERN Prop AbsTranslationProp(TranslationEntry *p) {AbsTranslationProp977,33459 -#define TranslationProperty TranslationProperty982,33562 -static inline TranslationEntry *Yap_GetTranslationProp(Atom at, arity_t arity) {Yap_GetTranslationProp987,33709 -INLINE_ONLY inline EXTERN bool IsTranslationProperty(PropFlags flags) {IsTranslationProperty1005,34231 -typedef struct mutex_entry {mutex_entry1012,34431 - Prop NextOfPE; /* used to chain properties */NextOfPE1013,34460 - Prop NextOfPE; /* used to chain properties */mutex_entry::NextOfPE1013,34460 - PropFlags KindOfPE; /* kind of property */KindOfPE1014,34525 - PropFlags KindOfPE; /* kind of property */mutex_entry::KindOfPE1014,34525 - void *Mutex; /* used to hash the atom as an integer; */Mutex1015,34590 - void *Mutex; /* used to hash the atom as an integer; */mutex_entry::Mutex1015,34590 -} MutexEntry;MutexEntry1016,34655 -INLINE_ONLY inline EXTERN MutexEntry *RepMutexProp(Prop p) {RepMutexProp1022,34757 -INLINE_ONLY inline EXTERN Prop AbsMutexProp(MutexEntry *p) {AbsMutexProp1028,34931 -INLINE_ONLY inline EXTERN MutexEntry *RepMutexProp(Prop p) {RepMutexProp1036,35100 -INLINE_ONLY inline EXTERN Prop AbsMutexProp(MutexEntry *p) { return (Prop)(p); }AbsMutexProp1042,35253 -#define MutexProperty MutexProperty1045,35342 -static inline void *Yap_GetMutexFromProp(Atom at) {Yap_GetMutexFromProp1050,35460 -INLINE_ONLY inline EXTERN bool IsMutexProperty(PropFlags flags) {IsMutexProperty1067,35867 - STATIC_ARRAY = 1,STATIC_ARRAY1074,36036 - DYNAMIC_ARRAY = 2,DYNAMIC_ARRAY1075,36056 - MMAP_ARRAY = 4,MMAP_ARRAY1076,36077 - FIXED_ARRAY = 8FIXED_ARRAY1077,36095 -} array_type;array_type1078,36113 -typedef struct array_entry {array_entry1082,36209 - Prop NextOfPE; /* used to chain properties */NextOfPE1083,36238 - Prop NextOfPE; /* used to chain properties */array_entry::NextOfPE1083,36238 - PropFlags KindOfPE; /* kind of property */KindOfPE1084,36303 - PropFlags KindOfPE; /* kind of property */array_entry::KindOfPE1084,36303 - Int ArrayEArity; /* Arity of Array (positive) */ArrayEArity1085,36368 - Int ArrayEArity; /* Arity of Array (positive) */array_entry::ArrayEArity1085,36368 - array_type TypeOfAE;TypeOfAE1086,36433 - array_type TypeOfAE;array_entry::TypeOfAE1086,36433 - rwlock_t ArRWLock; /* a read-write lock to protect the entry */ArRWLock1088,36495 - rwlock_t ArRWLock; /* a read-write lock to protect the entry */array_entry::ArRWLock1088,36495 - unsigned int owner_id;owner_id1090,36573 - unsigned int owner_id;array_entry::owner_id1090,36573 - struct array_entry *NextAE;NextAE1093,36612 - struct array_entry *NextAE;array_entry::NextAE1093,36612 - Term ValueOfVE; /* Pointer to the actual array */ValueOfVE1094,36642 - Term ValueOfVE; /* Pointer to the actual array */array_entry::ValueOfVE1094,36642 -} ArrayEntry;ArrayEntry1095,36703 - Term tlive;tlive1100,36775 - Term tlive;__anon226::tlive1100,36775 - Term tstore;tstore1101,36789 - Term tstore;__anon226::tstore1101,36789 -} live_term;live_term1102,36804 - Int *ints;ints1105,36834 - Int *ints;__anon227::ints1105,36834 - char *chars;chars1106,36847 - char *chars;__anon227::chars1106,36847 - unsigned char *uchars;uchars1107,36862 - unsigned char *uchars;__anon227::uchars1107,36862 - Float *floats;floats1108,36887 - Float *floats;__anon227::floats1108,36887 - AtomEntry **ptrs;ptrs1109,36904 - AtomEntry **ptrs;__anon227::ptrs1109,36904 - Term *atoms;atoms1110,36924 - Term *atoms;__anon227::atoms1110,36924 - Term *dbrefs;dbrefs1111,36939 - Term *dbrefs;__anon227::dbrefs1111,36939 - DBTerm **terms;terms1112,36955 - DBTerm **terms;__anon227::terms1112,36955 - live_term *lterms;lterms1113,36973 - live_term *lterms;__anon227::lterms1113,36973 -} statarray_elements;statarray_elements1114,36994 -typedef struct static_array_entry {static_array_entry1117,37055 - Prop NextOfPE; /* used to chain properties */NextOfPE1118,37091 - Prop NextOfPE; /* used to chain properties */static_array_entry::NextOfPE1118,37091 - PropFlags KindOfPE; /* kind of property */KindOfPE1119,37156 - PropFlags KindOfPE; /* kind of property */static_array_entry::KindOfPE1119,37156 - Int ArrayEArity; /* Arity of Array (negative) */ArrayEArity1120,37221 - Int ArrayEArity; /* Arity of Array (negative) */static_array_entry::ArrayEArity1120,37221 - array_type TypeOfAE;TypeOfAE1121,37286 - array_type TypeOfAE;static_array_entry::TypeOfAE1121,37286 - rwlock_t ArRWLock; /* a read-write lock to protect the entry */ArRWLock1123,37348 - rwlock_t ArRWLock; /* a read-write lock to protect the entry */static_array_entry::ArRWLock1123,37348 - struct static_array_entry *NextAE;NextAE1125,37421 - struct static_array_entry *NextAE;static_array_entry::NextAE1125,37421 - static_array_types ArrayType; /* Type of Array Elements. */ArrayType1126,37458 - static_array_types ArrayType; /* Type of Array Elements. */static_array_entry::ArrayType1126,37458 - statarray_elements ValueOfVE; /* Pointer to the Array itself */ValueOfVE1127,37533 - statarray_elements ValueOfVE; /* Pointer to the Array itself */static_array_entry::ValueOfVE1127,37533 -} StaticArrayEntry;StaticArrayEntry1128,37600 -INLINE_ONLY inline EXTERN ArrayEntry *RepArrayProp(Prop p) {RepArrayProp1134,37708 -INLINE_ONLY inline EXTERN Prop AbsArrayProp(ArrayEntry *p) {AbsArrayProp1140,37882 -INLINE_ONLY inline EXTERN StaticArrayEntry *RepStaticArrayProp(Prop p) {RepStaticArrayProp1146,38056 -INLINE_ONLY inline EXTERN Prop AbsStaticArrayProp(StaticArrayEntry *p) {AbsStaticArrayProp1152,38260 -INLINE_ONLY inline EXTERN ArrayEntry *RepArrayProp(Prop p) {RepArrayProp1160,38441 -INLINE_ONLY inline EXTERN Prop AbsArrayProp(ArrayEntry *p) { return (Prop)(p); }AbsArrayProp1166,38594 -INLINE_ONLY inline EXTERN StaticArrayEntry *RepStaticArrayProp(Prop p) {RepStaticArrayProp1170,38749 -INLINE_ONLY inline EXTERN Prop AbsStaticArrayProp(StaticArrayEntry *p) {AbsStaticArrayProp1176,38932 -#define ArrayProperty ArrayProperty1181,39035 -INLINE_ONLY inline EXTERN bool ArrayIsDynamic(ArrayEntry *are) {ArrayIsDynamic1185,39140 -INLINE_ONLY inline EXTERN bool IsArrayProperty(PropFlags flags) {IsArrayProperty1191,39317 -typedef struct YAP_blob_prop_entry {YAP_blob_prop_entry1196,39449 - Prop NextOfPE; /* used to chain properties */NextOfPE1197,39486 - Prop NextOfPE; /* used to chain properties */YAP_blob_prop_entry::NextOfPE1197,39486 - PropFlags KindOfPE; /* kind of property */KindOfPE1198,39561 - PropFlags KindOfPE; /* kind of property */YAP_blob_prop_entry::KindOfPE1198,39561 - struct YAP_blob_t *blob_type; /* type of blob */blob_type1199,39636 - struct YAP_blob_t *blob_type; /* type of blob */YAP_blob_prop_entry::blob_type1199,39636 -} YAP_BlobPropEntry;YAP_BlobPropEntry1200,39687 -INLINE_ONLY inline EXTERN YAP_BlobPropEntry *RepBlobProp(Prop p) {RepBlobProp1206,39802 -INLINE_ONLY inline EXTERN Prop AbsBlobProp(YAP_BlobPropEntry *p) {AbsBlobProp1212,39997 -INLINE_ONLY inline EXTERN YAP_BlobPropEntry *RepBlobProp(Prop p) {RepBlobProp1220,40178 -INLINE_ONLY inline EXTERN Prop AbsBlobProp(YAP_BlobPropEntry *p) {AbsBlobProp1226,40350 -#define BlobProperty BlobProperty1232,40448 -INLINE_ONLY inline EXTERN bool IsBlobProperty(PropFlags flags) {IsBlobProperty1236,40549 -INLINE_ONLY inline EXTERN bool IsBlob(Atom at) {IsBlob1242,40695 -INLINE_ONLY inline EXTERN bool IsValProperty(PropFlags flags) {IsValProperty1249,40919 -typedef Term (*flag_func)(Term);flag_func1255,41058 -typedef bool (*flag_helper_func)(Term);flag_helper_func1256,41091 - Prop NextOfPE; /* used to chain properties */NextOfPE1259,41149 - Prop NextOfPE; /* used to chain properties */__anon228::NextOfPE1259,41149 - PropFlags KindOfPE; /* kind of property */KindOfPE1260,41214 - PropFlags KindOfPE; /* kind of property */__anon228::KindOfPE1260,41214 - rwlock_t VRWLock; /* a read-write lock to protect the entry */VRWLock1262,41318 - rwlock_t VRWLock; /* a read-write lock to protect the entry */__anon228::VRWLock1262,41318 - int FlagOfVE; /* (atomic) value associated with the atom */FlagOfVE1264,41390 - int FlagOfVE; /* (atomic) value associated with the atom */__anon228::FlagOfVE1264,41390 - bool global, atomic, rw;global1265,41452 - bool global, atomic, rw;__anon228::global1265,41452 - bool global, atomic, rw;atomic1265,41452 - bool global, atomic, rw;__anon228::atomic1265,41452 - bool global, atomic, rw;rw1265,41452 - bool global, atomic, rw;__anon228::rw1265,41452 - flag_func type;type1266,41479 - flag_func type;__anon228::type1266,41479 - flag_helper_func helper;helper1267,41497 - flag_helper_func helper;__anon228::helper1267,41497 -} FlagEntry;FlagEntry1268,41524 -INLINE_ONLY inline EXTERN FlagEntry *RepFlagProp(Prop p) {RepFlagProp1273,41622 -INLINE_ONLY inline EXTERN Prop AbsValProp(FlagEntry *p) {AbsValProp1279,41791 -INLINE_ONLY inline EXTERN FlagEntry *RepFlagProp(Prop p) {RepFlagProp1287,41955 -INLINE_ONLY inline EXTERN Prop AbsFlagProp(FlagEntry *p) { return (Prop)(p); }AbsFlagProp1293,42103 -#define FlagProperty FlagProperty1296,42190 -INLINE_ONLY inline EXTERN bool IsFlagProperty(PropFlags flags) {IsFlagProperty1300,42291 -#define PROLOG_MODULE PROLOG_MODULE1326,43012 -#define PredHashInitialSize PredHashInitialSize1330,43059 -#define PredHashIncrement PredHashIncrement1331,43100 -INLINE_ONLY EXTERN inline UInt PRED_HASH(FunctorEntry *fe, Term cur_mod,PRED_HASH1340,43484 -Yap_GetThreadPred(struct pred_entry *ap USES_REGS) {Yap_GetThreadPred1362,44497 -INLINE_ONLY EXTERN inline Prop GetPredPropByFuncHavingLock(FunctorEntry *fe,GetPredPropByFuncHavingLock1377,44892 -INLINE_ONLY EXTERN inline Prop PredPropByFunc(Functor fe, Term cur_mod)PredPropByFunc1417,45985 -GetPredPropByFuncAndModHavingLock(FunctorEntry *fe, Term cur_mod) {GetPredPropByFuncAndModHavingLock1432,46361 -INLINE_ONLY EXTERN inline Prop PredPropByFuncAndMod(Functor fe, Term cur_mod)PredPropByFuncAndMod1471,47346 -INLINE_ONLY EXTERN inline Prop PredPropByAtom(Atom at, Term cur_mod)PredPropByAtom1485,47703 -INLINE_ONLY EXTERN inline Prop PredPropByAtomAndMod(Atom at, Term cur_mod)PredPropByAtomAndMod1512,48436 -#define PELOCK(PELOCK1539,49166 -#define UNLOCKPE(UNLOCKPE1545,49575 -#define PELOCK(PELOCK1548,49745 -#define UNLOCKPE(UNLOCKPE1549,49786 -#define PELOCK(PELOCK1551,49837 -#define UNLOCKPE(UNLOCKPE1552,49858 -INLINE_ONLY EXTERN inline void AddPropToAtom(AtomEntry *ae, PropEntry *p) {AddPropToAtom1557,49963 -INLINE_ONLY inline EXTERN const char *AtomName(Atom at) {AtomName1576,50477 -INLINE_ONLY inline EXTERN const char *AtomTermName(Term t) {AtomTermName1593,50903 -INLINE_ONLY inline EXTERN bool Yap_HasException(void) {Yap_HasException1602,51167 -INLINE_ONLY inline EXTERN DBTerm *Yap_RefToException(void) {Yap_RefToException1605,51258 -INLINE_ONLY inline EXTERN void Yap_CopyException(DBTerm *dbt) {Yap_CopyException1610,51392 - -H/yerror.h,160 -#define CONTINUE_AFTER_ERROR CONTINUE_AFTER_ERROR28,872 -#define ABORT_AFTER_ERROR ABORT_AFTER_ERROR29,903 -#define EXIT_AFTER_ERROR EXIT_AFTER_ERROR30,931 - -include/c_interface.h,5750 -#define _c_interface_h _c_interface_h23,720 -#define CELL CELL27,773 -#define Bool Bool30,809 -#define Int Int33,839 -#define flt flt35,861 -#define Term Term37,881 -#define Functor Functor39,904 -#define Atom Atom41,933 -#define yap_init_args yap_init_args43,956 -#define A(A45,993 -#define ARG1 ARG146,1015 -#define ARG2 ARG247,1037 -#define ARG3 ARG348,1059 -#define ARG4 ARG449,1081 -#define ARG5 ARG550,1103 -#define ARG6 ARG651,1125 -#define ARG7 ARG752,1147 -#define ARG8 ARG853,1169 -#define ARG9 ARG954,1191 -#define ARG10 ARG1055,1213 -#define ARG11 ARG1156,1237 -#define ARG12 ARG1257,1261 -#define ARG13 ARG1358,1285 -#define ARG14 ARG1459,1309 -#define ARG15 ARG1560,1333 -#define ARG16 ARG1661,1357 -#define Deref(Deref64,1415 -#define YapDeref(YapDeref65,1446 -#define IsVarTerm(IsVarTerm68,1517 -#define YapIsVarTerm(YapIsVarTerm69,1556 -#define IsNonVarTerm(IsNonVarTerm72,1638 -#define YapIsNonVarTerm(YapIsNonVarTerm73,1683 -#define MkVarTerm(MkVarTerm76,1762 -#define YapMkVarTerm(YapMkVarTerm77,1799 -#define IsIntTerm(IsIntTerm80,1877 -#define YapIsIntTerm(YapIsIntTerm81,1916 -#define IsFloatTerm(IsFloatTerm84,1998 -#define YapIsFloatTerm(YapIsFloatTerm85,2041 -#define IsDbRefTerm(IsDbRefTerm88,2127 -#define YapIsDbRefTerm(YapIsDbRefTerm89,2170 -#define IsAtomTerm(IsAtomTerm92,2255 -#define YapIsAtomTerm(YapIsAtomTerm93,2296 -#define IsPairTerm(IsPairTerm96,2379 -#define YapIsPairTerm(YapIsPairTerm97,2420 -#define IsApplTerm(IsApplTerm100,2503 -#define YapIsApplTerm(YapIsApplTerm101,2544 -#define MkIntTerm(MkIntTerm104,2623 -#define YapMkIntTerm(YapMkIntTerm105,2662 -#define IntOfTerm(IntOfTerm108,2739 -#define YapIntOfTerm(YapIntOfTerm109,2778 -#define MkFloatTerm(MkFloatTerm112,2857 -#define YapMkFloatTerm(YapMkFloatTerm113,2900 -#define FloatOfTerm(FloatOfTerm116,2987 -#define YapFloatOfTerm(YapFloatOfTerm117,3030 -#define MkAtomTerm(MkAtomTerm120,3109 -#define YapMkAtomTerm(YapMkAtomTerm121,3150 -#define AtomOfTerm(AtomOfTerm124,3231 -#define YapAtomOfTerm(YapAtomOfTerm125,3272 -#define LookupAtom(LookupAtom128,3355 -#define YapLookupAtom(YapLookupAtom129,3396 -#define FullLookupAtom(FullLookupAtom132,3483 -#define YapFullLookupAtom(YapFullLookupAtom133,3532 -#define AtomName(AtomName136,3619 -#define YapAtomName(YapAtomName137,3656 -#define MkPairTerm(MkPairTerm140,3757 -#define YapMkPairTerm(YapMkPairTerm141,3802 -#define MkNewPairTerm(MkNewPairTerm144,3890 -#define YapMkNewPairTerm(YapMkNewPairTerm145,3935 -#define HeadOfTerm(HeadOfTerm148,4017 -#define YapHeadOfTerm(YapHeadOfTerm149,4058 -#define TailOfTerm(TailOfTerm152,4136 -#define YapTailOfTerm(YapTailOfTerm153,4177 -#define MkApplTerm(MkApplTerm156,4294 -#define YapMkApplTerm(YapMkApplTerm157,4345 -#define MkNewApplTerm(MkNewApplTerm160,4458 -#define YapMkNewApplTerm(YapMkNewApplTerm161,4509 -#define FunctorOfTerm(FunctorOfTerm164,4611 -#define YapFunctorOfTerm(YapFunctorOfTerm165,4658 -#define ArgOfTerm(ArgOfTerm168,4763 -#define YapArgOfTerm(YapArgOfTerm169,4806 -#define MkFunctor(MkFunctor172,4907 -#define YapMkFunctor(YapMkFunctor173,4950 -#define NameOfFunctor(NameOfFunctor176,5042 -#define YapNameOfFunctor(YapNameOfFunctor177,5089 -#define ArityOfFunctor(ArityOfFunctor180,5188 -#define YapArityOfFunctor(YapArityOfFunctor181,5237 -#define PRESERVE_DATA(PRESERVE_DATA183,5290 -#define PRESERVED_DATA(PRESERVED_DATA184,5356 -#define PRESERVED_DATA_CUT(PRESERVED_DATA_CUT185,5423 -#define unify(unify188,5548 -#define YapUnify(YapUnify189,5588 -#define UserCPredicate(UserCPredicate192,5693 -#define UserBackCPredicate(UserBackCPredicate196,5847 -#define UserCPredicateWithArgs(UserCPredicateWithArgs199,5988 -#define CallProlog(CallProlog201,6104 -#define YapCallProlog(YapCallProlog202,6145 -#define cut_fail(cut_fail205,6217 -#define cut_succeed(cut_succeed208,6283 -#define AllocSpaceFromYap(AllocSpaceFromYap211,6361 -#define FreeSpaceFromYap(FreeSpaceFromYap214,6454 -#define RunGoal(RunGoal217,6541 -#define YapRunGoal(YapRunGoal218,6576 -#define RestartGoal(RestartGoal221,6648 -#define YapRestartGoal(YapRestartGoal222,6689 -#define ContinueGoal(ContinueGoal225,6768 -#define YapContinueGoal(YapContinueGoal226,6811 -#define PruneGoal(PruneGoal229,6890 -#define YapPruneGoal(YapPruneGoal230,6927 -#define GoalHasException(GoalHasException233,7006 -#define YapGoalHasException(YapGoalHasException234,7061 -#define YapReset(YapReset237,7147 -#define YapError(YapError240,7210 -#define YapRead(YapRead243,7285 -#define YapWrite(YapWrite246,7369 -#define CompileClause(CompileClause249,7450 -#define YapCompileClause(YapCompileClause250,7497 -#define YapInit(YapInit253,7585 -#define YapFastInit(YapFastInit256,7652 -#define YapInitConsult(YapInitConsult259,7733 -#define YapEndConsult(YapEndConsult262,7825 -#define YapExit(YapExit265,7894 -#define PutValue(PutValue268,7978 -#define YapPutValue(YapPutValue269,8017 -#define GetValue(GetValue272,8099 -#define YapGetValue(YapGetValue273,8136 -#define StringToBuffer(StringToBuffer276,8233 -#define YapStringToBuffer(YapStringToBuffer277,8290 -#define BufferToString(BufferToString280,8385 -#define YapBufferToString(YapBufferToString281,8434 -#define BufferToAtomList(BufferToAtomList284,8523 -#define YapBufferToAtomList(YapBufferToAtomList285,8576 -#define InitSocks(InitSocks288,8672 -#define YapInitSocks(YapInitSocks289,8715 -#define SFArity SFArity293,8777 -#define ArgsOfSFTerm(ArgsOfSFTerm294,8796 -#define YapSetOutputMessage(YapSetOutputMessage301,8943 -#define YapStreamToFileNo(YapStreamToFileNo304,9041 -#define YapCloseAllOpenStreams(YapCloseAllOpenStreams307,9137 -#define YapOpenStream(YapOpenStream310,9233 - -include/clause_list.h,332 -struct ClauseListClauseList3,2 - int n; /*counter*/n5,22 - int n; /*counter*/ClauseList::n5,22 - void *start;start6,42 - void *start;ClauseList::start6,42 - void *end;end7,56 - void *end;ClauseList::end7,56 -typedef struct ClauseList *clause_list_t;clause_list_t9,71 -#define Yap_ClauseListCount(Yap_ClauseListCount20,495 - -include/GitSHA1.h,0 - -include/pl-types.h,1127 -#define PL_TYPES_HPL_TYPES_H4,21 -#define INT64_T_DEFINED INT64_T_DEFINED13,236 -typedef __int64 int64_t;int64_t14,262 -typedef unsigned __int64 uint64_t;uint64_t15,287 -typedef long intptr_t;intptr_t17,369 -typedef unsigned long uintptr_t;uintptr_t18,392 -#define PL_HAVE_TERM_TPL_HAVE_TERM_T27,535 -typedef intptr_t term_t;term_t28,558 -typedef struct mod_entry *module_t;module_t30,593 -typedef struct DB_STRUCT *record_t;record_t31,629 -typedef uintptr_t atom_t;atom_t32,665 -typedef struct pred_entry *predicate_t;predicate_t33,691 -typedef struct open_query_struct *qid_t;qid_t34,734 -typedef uintptr_t functor_t;functor_t35,776 -typedef int (*PL_agc_hook_t)(atom_t);PL_agc_hook_t36,808 -typedef uintptr_t foreign_t; /* return type of foreign functions */foreign_t37,850 -typedef wchar_t pl_wchar_t; /* wide character support */pl_wchar_t38,918 -typedef uintptr_t PL_fid_t; /* opaque foreign context handle */PL_fid_t40,1045 -typedef int (*PL_dispatch_hook_t)(int fd);PL_dispatch_hook_t41,1109 -typedef void *pl_function_t;pl_function_t42,1153 -#define fid_t fid_t44,1183 - -include/SWI-Prolog.h,18451 -#define _FLI_H_INCLUDED_FLI_H_INCLUDED14,285 -typedef int _Bool;_Bool64,999 -#define bool bool66,1019 -#define true true68,1039 -#define false false70,1055 -#define __WINDOWS__ __WINDOWS__75,1145 -#define PL_EXPORT(PL_EXPORT94,1541 -#define PL_EXPORT_DATA(PL_EXPORT_DATA95,1584 -#define install_t install_t96,1634 -#define WUNUSED WUNUSED103,1847 -#define WUNUSEDWUNUSED105,1905 -typedef struct _PL_extension_PL_extension110,1952 -{ const char *predicate_name; /* Name of the predicate */predicate_name111,1981 -{ const char *predicate_name; /* Name of the predicate */_PL_extension::predicate_name111,1981 - short arity; /* Arity of the predicate */arity112,2041 - short arity; /* Arity of the predicate */_PL_extension::arity112,2041 - pl_function_t function; /* Implementing functions */function113,2088 - pl_function_t function; /* Implementing functions */_PL_extension::function113,2088 - short flags; /* Or of PL_FA_... */flags114,2144 - short flags; /* Or of PL_FA_... */_PL_extension::flags114,2144 -} PL_extension;PL_extension115,2184 -#define PL_THREAD_NO_DEBUG PL_THREAD_NO_DEBUG117,2201 -{ unsigned long local_size; /* Stack sizes */local_size120,2284 -{ unsigned long local_size; /* Stack sizes */__anon229::local_size120,2284 - unsigned long global_size;global_size121,2335 - unsigned long global_size;__anon229::global_size121,2335 - unsigned long trail_size;trail_size122,2368 - unsigned long trail_size;__anon229::trail_size122,2368 - unsigned long argument_size;argument_size123,2400 - unsigned long argument_size;__anon229::argument_size123,2400 - char * alias; /* alias name */alias124,2435 - char * alias; /* alias name */__anon229::alias124,2435 - int (*cancel)(int id); /* cancel function */cancel125,2473 - int (*cancel)(int id); /* cancel function */__anon229::cancel125,2473 - intptr_t flags; /* PL_THREAD_* flags */flags126,2523 - intptr_t flags; /* PL_THREAD_* flags */__anon229::flags126,2523 - void * reserved[5]; /* reserved for extensions */reserved127,2568 - void * reserved[5]; /* reserved for extensions */__anon229::reserved127,2568 -} PL_thread_attr_t;PL_thread_attr_t128,2624 -typedef void *PL_engine_t;PL_engine_t130,2645 -#define PL_FA_NOTRACE PL_FA_NOTRACE133,2674 -#define PL_FA_TRANSPARENT PL_FA_TRANSPARENT134,2735 -#define PL_FA_NONDETERMINISTIC PL_FA_NONDETERMINISTIC135,2804 -#define PL_FA_VARARGS PL_FA_VARARGS136,2877 -#define PL_FA_CREF PL_FA_CREF137,2936 -#define PL_FA_ISO PL_FA_ISO138,3000 -#define PL_VARIABLE PL_VARIABLE141,3088 -#define PL_ATOM PL_ATOM142,3142 -#define PL_INTEGER PL_INTEGER143,3201 -#define PL_FLOAT PL_FLOAT144,3251 -#define PL_STRING PL_STRING145,3304 -#define PL_TERM PL_TERM146,3363 -#define PL_FUNCTOR PL_FUNCTOR149,3455 -#define PL_LIST PL_LIST150,3520 -#define PL_CHARS PL_CHARS151,3582 -#define PL_POINTER PL_POINTER152,3641 -#define PL_CODE_LIST PL_CODE_LIST154,3765 -#define PL_CHAR_LIST PL_CHAR_LIST155,3822 -#define PL_BOOL PL_BOOL156,3880 -#define PL_FUNCTOR_CHARS PL_FUNCTOR_CHARS157,3943 -#define PL_PREDICATE_INDICATOR PL_PREDICATE_INDICATOR158,4005 -#define PL_SHORT PL_SHORT159,4074 -#define PL_INT PL_INT160,4126 -#define PL_LONG PL_LONG161,4176 -#define PL_DOUBLE PL_DOUBLE162,4227 -#define PL_NCHARS PL_NCHARS163,4280 -#define PL_UTF8_CHARS PL_UTF8_CHARS164,4334 -#define PL_UTF8_STRING PL_UTF8_STRING165,4382 -#define PL_INT64 PL_INT64166,4431 -#define PL_NUTF8_CHARS PL_NUTF8_CHARS167,4469 -#define PL_NUTF8_CODES PL_NUTF8_CODES168,4528 -#define PL_NUTF8_STRING PL_NUTF8_STRING169,4587 -#define PL_NWCHARS PL_NWCHARS170,4647 -#define PL_NWCODES PL_NWCODES171,4705 -#define PL_NWSTRING PL_NWSTRING172,4763 -#define PL_MBCHARS PL_MBCHARS173,4822 -#define PL_MBCODES PL_MBCODES174,4867 -#define PL_MBSTRING PL_MBSTRING175,4912 -#define PL_INTPTR PL_INTPTR176,4958 -#define PL_CHAR PL_CHAR177,5013 -#define PL_CODE PL_CODE178,5063 -#define PL_BYTE PL_BYTE179,5113 -#define PL_PARTIAL_LIST PL_PARTIAL_LIST181,5189 -#define PL_CYCLIC_TERM PL_CYCLIC_TERM182,5241 -#define PL_NOT_A_LIST PL_NOT_A_LIST183,5296 -#define FF_READONLY FF_READONLY187,5427 -#define FF_KEEP FF_KEEP188,5495 -#define FF_NOCREATE FF_NOCREATE190,5574 -#define FF_MASK FF_MASK191,5649 -#define CVT_ATOM CVT_ATOM194,5683 -#define CVT_STRING CVT_STRING195,5707 -#define CVT_LIST CVT_LIST196,5733 -#define CVT_INTEGER CVT_INTEGER197,5757 -#define CVT_FLOAT CVT_FLOAT198,5784 -#define CVT_VARIABLE CVT_VARIABLE199,5809 -#define CVT_NUMBER CVT_NUMBER200,5837 -#define CVT_ATOMIC CVT_ATOMIC201,5880 -#define CVT_WRITE CVT_WRITE202,5932 -#define CVT_WRITE_CANONICAL CVT_WRITE_CANONICAL203,5985 -#define CVT_WRITEQ CVT_WRITEQ204,6048 -#define CVT_ALL CVT_ALL205,6074 -#define CVT_MASK CVT_MASK206,6113 -#define CVT_EXCEPTION CVT_EXCEPTION208,6138 -#define CVT_VARNOFAIL CVT_VARNOFAIL209,6168 -#define BUF_DISCARDABLE BUF_DISCARDABLE211,6238 -#define BUF_RING BUF_RING212,6269 -#define BUF_MALLOC BUF_MALLOC213,6293 -#define PL_ENGINE_MAIN PL_ENGINE_MAIN215,6320 -#define PL_ENGINE_CURRENT PL_ENGINE_CURRENT216,6367 -#define PL_ENGINE_SET PL_ENGINE_SET218,6415 -#define PL_ENGINE_INVAL PL_ENGINE_INVAL219,6485 -#define PL_ENGINE_INUSE PL_ENGINE_INUSE220,6552 -#define PL_ACTION_TRACE PL_ACTION_TRACE222,6616 -#define PL_ACTION_DEBUG PL_ACTION_DEBUG223,6670 -#define PL_ACTION_BACKTRACE PL_ACTION_BACKTRACE224,6724 -#define PL_ACTION_BREAK PL_ACTION_BREAK225,6790 -#define PL_ACTION_HALT PL_ACTION_HALT226,6850 -#define PL_ACTION_ABORT PL_ACTION_ABORT227,6904 -#define PL_ACTION_WRITE PL_ACTION_WRITE229,7005 -#define PL_ACTION_FLUSH PL_ACTION_FLUSH230,7066 -#define PL_ACTION_GUIAPP PL_ACTION_GUIAPP231,7123 -#define PL_ACTION_ATTACH_CONSOLE PL_ACTION_ATTACH_CONSOLE232,7187 -{ FRG_FIRST_CALL = 0, /* Initial call */FRG_FIRST_CALL236,7265 - FRG_CUTTED = 1, /* Context was cutted */FRG_CUTTED237,7307 - FRG_REDO = 2 /* Normal redo */FRG_REDO238,7355 -} frg_code;frg_code239,7390 -struct foreign_contextforeign_context241,7403 -{ uintptr_t context; /* context value */context242,7426 -{ uintptr_t context; /* context value */foreign_context::context242,7426 - frg_code control; /* FRG_* action */control243,7468 - frg_code control; /* FRG_* action */foreign_context::control243,7468 - struct PL_local_data *engine; /* invoking engine */engine244,7508 - struct PL_local_data *engine; /* invoking engine */foreign_context::engine244,7508 -typedef struct foreign_context *control_t;control_t247,7567 -#define PRED_IMPL(PRED_IMPL249,7611 -#define CTX_CNTRL CTX_CNTRL253,7762 -#define CTX_PTR CTX_PTR254,7804 -#define CTX_INT CTX_INT255,7849 -#define CTX_ARITY CTX_ARITY256,7894 -#define BeginPredDefs(BeginPredDefs258,7920 -#define PRED_DEF(PRED_DEF260,8007 -#define EndPredDefs EndPredDefs262,8125 -#define FRG_REDO_MASK FRG_REDO_MASK266,8190 -#define FRG_REDO_BITS FRG_REDO_BITS267,8224 -#define REDO_INT REDO_INT268,8248 -#define REDO_PTR REDO_PTR269,8297 -#define ForeignRedoIntVal(ForeignRedoIntVal271,8346 -#define ForeignRedoPtrVal(ForeignRedoPtrVal272,8418 -#define ForeignRedoInt(ForeignRedoInt274,8476 -#define ForeignRedoPtr(ForeignRedoPtr275,8530 -#define ForeignControl(ForeignControl277,8585 -#define ForeignContextInt(ForeignContextInt278,8626 -#define ForeignContextPtr(ForeignContextPtr279,8680 -#define ForeignEngine(ForeignEngine280,8732 -#define FRG(FRG282,8772 -#define LFRG(LFRG283,8819 -#define REP_ISO_LATIN_1 REP_ISO_LATIN_1294,9291 -#define REP_UTF8 REP_UTF8295,9351 -#define REP_MB REP_MB296,9376 -#define REP_FN REP_FN298,9418 -#define REP_FN REP_FN300,9449 -#define PL_DIFF_LIST PL_DIFF_LIST303,9480 -#define PL_open_stream PL_open_stream312,9721 -PL_EXPORT(int) PL_release_stream(IOSTREAM *s);s315,9901 -#define Suser_input Suser_input323,10160 -#define Suser_output Suser_output324,10200 -#define Suser_error Suser_error325,10240 -#define PL_WRT_QUOTED PL_WRT_QUOTED328,10288 -#define PL_WRT_IGNOREOPS PL_WRT_IGNOREOPS329,10334 -#define PL_WRT_NUMBERVARS PL_WRT_NUMBERVARS330,10392 -#define PL_WRT_PORTRAY PL_WRT_PORTRAY331,10457 -#define PL_WRT_CHARESCAPES PL_WRT_CHARESCAPES332,10505 -#define PL_WRT_BACKQUOTED_STRING PL_WRT_BACKQUOTED_STRING333,10571 -#define PL_WRT_ATTVAR_IGNORE PL_WRT_ATTVAR_IGNORE335,10676 -#define PL_WRT_ATTVAR_DOTS PL_WRT_ATTVAR_DOTS336,10745 -#define PL_WRT_ATTVAR_WRITE PL_WRT_ATTVAR_WRITE337,10802 -#define PL_WRT_ATTVAR_PORTRAY PL_WRT_ATTVAR_PORTRAY338,10867 -#define PL_WRT_ATTVAR_MASK PL_WRT_ATTVAR_MASK339,10936 -#define PL_WRT_BLOB_PORTRAY PL_WRT_BLOB_PORTRAY344,11068 -#define PL_WRT_NO_CYCLES PL_WRT_NO_CYCLES345,11143 -#define PL_WRT_LIST PL_WRT_LIST346,11218 -#define PL_WRT_NEWLINE PL_WRT_NEWLINE347,11297 -#define PL_WRT_VARNAMES PL_WRT_VARNAMES348,11357 -#define PL_NOTTY PL_NOTTY356,11576 -#define PL_RAWTTY PL_RAWTTY357,11617 -#define PL_COOKEDTTY PL_COOKEDTTY358,11662 -PL_EXPORT(int) PL_ttymode(IOSTREAM *s);s360,11706 -#define PL_Q_DEBUG PL_Q_DEBUG373,11955 -#define PL_Q_NORMAL PL_Q_NORMAL375,12027 -#define PL_Q_NODEBUG PL_Q_NODEBUG376,12072 -#define PL_Q_CATCH_EXCEPTION PL_Q_CATCH_EXCEPTION377,12118 -#define PL_Q_PASS_EXCEPTION PL_Q_PASS_EXCEPTION378,12181 -#define PL_Q_DETERMINISTIC PL_Q_DETERMINISTIC380,12264 -#define PL_fail PL_fail383,12333 -#define PL_succeed PL_succeed384,12374 - PL_EXPORT( PL_agc_hook_t ) PL_agc_hook(PL_agc_hook_t);PL_agc_hook_t386,12420 - PL_EXPORT( char* ) PL_atom_chars(atom_t);atom_t387,12477 - PL_EXPORT( term_t ) PL_copy_term_ref(term_t);term_t389,12576 - PL_EXPORT( void ) PL_reset_term_refs(term_t);term_t392,12714 - PL_EXPORT( atom_t ) PL_module_name(module_t);module_t415,14037 - PL_EXPORT( module_t ) PL_new_module(atom_t);atom_t416,14085 - PL_EXPORT( int ) PL_get_nil(term_t);term_t418,14195 - PL_EXPORT( atom_t ) PL_functor_name(functor_t);functor_t431,14916 - PL_EXPORT( int ) PL_functor_arity(functor_t);functor_t432,14966 - PL_EXPORT( int ) PL_put_list(term_t);term_t446,15747 - PL_EXPORT( void ) PL_put_nil(term_t);term_t448,15847 - PL_EXPORT( int ) PL_put_variable(term_t);term_t453,16119 - PL_EXPORT( int ) PL_unify_nil(term_t);term_t473,17256 - PL_EXPORT( int ) PL_is_atom(term_t);term_t492,18193 - PL_EXPORT( int ) PL_is_atomic(term_t);term_t493,18233 - PL_EXPORT( int ) PL_is_compound(term_t);term_t494,18275 - PL_EXPORT( int ) PL_is_float(term_t);term_t495,18319 - PL_EXPORT( int ) PL_is_ground(term_t);term_t497,18414 - PL_EXPORT( int ) PL_is_callable(term_t);term_t498,18456 - PL_EXPORT( int ) PL_is_integer(term_t);term_t499,18500 - PL_EXPORT( int ) PL_is_pair(term_t);term_t500,18543 - PL_EXPORT( int ) PL_is_list(term_t);term_t501,18583 - PL_EXPORT( int ) PL_is_pair(term_t);term_t502,18623 - PL_EXPORT( int ) PL_is_number(term_t);term_t503,18663 - PL_EXPORT( int ) PL_is_string(term_t);term_t504,18705 - PL_EXPORT( int ) PL_is_variable(term_t);term_t505,18747 - PL_EXPORT( int ) PL_term_type(term_t);term_t506,18791 - PL_EXPORT( int ) PL_is_inf(term_t);term_t507,18833 - PL_EXPORT( int ) PL_is_acyclic(term_t t);t508,18872 - PL_EXPORT( void ) PL_close_foreign_frame(fid_t);fid_t513,19115 - PL_EXPORT( void ) PL_discard_foreign_frame(fid_t);fid_t514,19166 - PL_EXPORT( void ) PL_rewind_foreign_frame(fid_t);fid_t515,19219 - PL_EXPORT( int ) PL_raise_exception(term_t);term_t517,19321 - PL_EXPORT( int ) PL_throw(term_t);term_t518,19368 - PL_EXPORT( void ) PL_register_atom(atom_t);atom_t520,19451 - PL_EXPORT( void ) PL_unregister_atom(atom_t);atom_t521,19497 -#define GP_NAMEARITY GP_NAMEARITY524,19676 - PL_EXPORT( int ) PL_next_solution(qid_t);qid_t528,19953 - PL_EXPORT( void ) PL_cut_query(qid_t);qid_t529,19997 - PL_EXPORT( void ) PL_close_query(qid_t);qid_t530,20038 - PL_EXPORT( term_t ) PL_exception(qid_t);qid_t532,20119 - PL_EXPORT( term_t ) PL_exception(qid_t);qid_t533,20162 - PL_EXPORT( int ) PL_destroy_engine(PL_engine_t);PL_engine_t549,21187 - PL_EXPORT( record_t ) PL_record(term_t);term_t553,21427 - PL_EXPORT( record_t ) PL_duplicate_record(record_t);record_t555,21520 - PL_EXPORT( void ) PL_erase(record_t);record_t556,21575 - PL_EXPORT( void *) PL_malloc(size_t);size_t563,21997 - PL_EXPORT( void *) PL_malloc_uncollectable(size_t s);s564,22037 -#define PL_SIGSYNC PL_SIGSYNC580,22562 -#define PL_SIGNOFRAME PL_SIGNOFRAME581,22625 -#define PL_FILE_ABSOLUTE PL_FILE_ABSOLUTE593,23056 -#define PL_FILE_OSPATH PL_FILE_OSPATH594,23123 -#define PL_FILE_SEARCH PL_FILE_SEARCH595,23196 -#define PL_FILE_EXIST PL_FILE_EXIST596,23263 -#define PL_FILE_READ PL_FILE_READ597,23330 -#define PL_FILE_WRITE PL_FILE_WRITE598,23395 -#define PL_FILE_EXECUTE PL_FILE_EXECUTE599,23461 -#define PL_FILE_NOERRORS PL_FILE_NOERRORS600,23529 -#define PL_DISPATCH_NOWAIT PL_DISPATCH_NOWAIT615,24382 -#define PL_DISPATCH_WAIT PL_DISPATCH_WAIT616,24440 -#define PL_DISPATCH_INSTALLED PL_DISPATCH_INSTALLED617,24509 -PL_EXPORT(PL_dispatch_hook_t) PL_dispatch_hook(PL_dispatch_hook_t);PL_dispatch_hook_t620,24624 -#define PL_MSG_EXCEPTION_RAISED PL_MSG_EXCEPTION_RAISED636,25278 -#define PL_MSG_IGNORED PL_MSG_IGNORED637,25313 -#define PL_MSG_HANDLED PL_MSG_HANDLED638,25338 -#undef BindBind641,25376 -#define PL_QUERY_ARGC PL_QUERY_ARGC656,25674 -#define PL_QUERY_ARGV PL_QUERY_ARGV657,25724 -#define PL_QUERY_GETC PL_QUERY_GETC660,25862 -#define PL_QUERY_MAX_INTEGER PL_QUERY_MAX_INTEGER661,25922 -#define PL_QUERY_MIN_INTEGER PL_QUERY_MIN_INTEGER662,25975 -#define PL_QUERY_MAX_TAGGED_INT PL_QUERY_MAX_TAGGED_INT663,26029 -#define PL_QUERY_MIN_TAGGED_INT PL_QUERY_MIN_TAGGED_INT664,26092 -#define PL_QUERY_VERSION PL_QUERY_VERSION665,26156 -#define PL_QUE_MAX_THREADS PL_QUE_MAX_THREADS666,26212 -#define PL_QUERY_ENCODING PL_QUERY_ENCODING667,26269 -#define PL_QUERY_USER_CPU PL_QUERY_USER_CPU668,26317 -#define PL_QUERY_HALTING PL_QUERY_HALTING669,26377 -PL_EXPORT(int) PL_unify_nil_ex(term_t l);l689,27277 -PL_EXPORT(int) PL_get_nil_ex(term_t l);l691,27384 -PL_EXPORT(int) PL_instantiation_error(term_t culprit);culprit693,27427 -PL_EXPORT(int) PL_uninstantiation_error(term_t culprit);culprit694,27483 -#define PL_set_feature PL_set_feature708,28073 -#define PL_BLOB_MAGIC_B PL_BLOB_MAGIC_B716,28316 -#define PL_BLOB_VERSION PL_BLOB_VERSION717,28387 -#define PL_BLOB_MAGIC PL_BLOB_MAGIC718,28436 -#define PL_BLOB_UNIQUE PL_BLOB_UNIQUE720,28493 -#define PL_BLOB_TEXT PL_BLOB_TEXT721,28551 -#define PL_BLOB_NOCOPY PL_BLOB_NOCOPY722,28603 -#define PL_BLOB_WCHAR PL_BLOB_WCHAR723,28659 -typedef struct PL_blob_tPL_blob_t725,28716 -{ uintptr_t magic; /* PL_BLOB_MAGIC */magic726,28741 -{ uintptr_t magic; /* PL_BLOB_MAGIC */PL_blob_t::magic726,28741 - uintptr_t flags; /* PL_BLOB_* */flags727,28782 - uintptr_t flags; /* PL_BLOB_* */PL_blob_t::flags727,28782 - char * name; /* name of the type */name728,28819 - char * name; /* name of the type */PL_blob_t::name728,28819 - int (*release)(atom_t a);release729,28859 - int (*release)(atom_t a);PL_blob_t::release729,28859 - int (*compare)(atom_t a, atom_t b);compare730,28889 - int (*compare)(atom_t a, atom_t b);PL_blob_t::compare730,28889 - int (*write)(IOSTREAM *s, atom_t a, int flags);write732,28946 - int (*write)(IOSTREAM *s, atom_t a, int flags);PL_blob_t::write732,28946 - int (*write)(void *s, atom_t a, int flags);write734,29004 - int (*write)(void *s, atom_t a, int flags);PL_blob_t::write734,29004 - void (*acquire)(atom_t a);acquire736,29059 - void (*acquire)(atom_t a);PL_blob_t::acquire736,29059 - int (*save)(atom_t a, IOSTREAM *s);save738,29107 - int (*save)(atom_t a, IOSTREAM *s);PL_blob_t::save738,29107 - atom_t (*load)(IOSTREAM *s);load739,29147 - atom_t (*load)(IOSTREAM *s);PL_blob_t::load739,29147 - int (*save)(atom_t a, void*);save741,29185 - int (*save)(atom_t a, void*);PL_blob_t::save741,29185 - atom_t (*load)(void *s);load742,29219 - atom_t (*load)(void *s);PL_blob_t::load742,29219 - void * reserved[10]; /* for future extension */reserved745,29273 - void * reserved[10]; /* for future extension */PL_blob_t::reserved745,29273 - int registered; /* Already registered? */registered746,29324 - int registered; /* Already registered? */PL_blob_t::registered746,29324 - int rank; /* Rank for ordering atoms */rank747,29370 - int rank; /* Rank for ordering atoms */PL_blob_t::rank747,29370 - struct PL_blob_t * next; /* next in registered type-chain */next748,29415 - struct PL_blob_t * next; /* next in registered type-chain */PL_blob_t::next748,29415 - atom_t atom_name; /* Name as atom */atom_name749,29482 - atom_t atom_name; /* Name as atom */PL_blob_t::atom_name749,29482 -} PL_blob_t;PL_blob_t750,29522 -PL_EXPORT(void) PL_register_blob_type(PL_blob_t *type);type764,29962 -PL_EXPORT(PL_blob_t*) YAP_find_blob_type(YAP_Atom at);at766,30078 -PL_EXPORT(int) PL_unr1egister_blob_type(PL_blob_t *type);type767,30133 -#define PL_FIRST_CALL PL_FIRST_CALL800,30984 -#define PL_CUTTED PL_CUTTED801,31011 -#define PL_PRUNED PL_PRUNED802,31051 -#define PL_REDO PL_REDO803,31074 -#define PL_retry(PL_retry805,31097 -#define PL_retry_address(PL_retry_address806,31138 -PL_EXPORT(foreign_t) _PL_retry(intptr_t);intptr_t808,31195 -PL_EXPORT(int) PL_foreign_control(control_t);control_t810,31285 -PL_EXPORT(intptr_t) PL_foreign_context(control_t);control_t811,31333 -PL_EXPORT(void *) PL_foreign_context_address(control_t);control_t812,31384 -typedef struct SWI_IO {SWI_IO814,31442 - functor_t f; f815,31466 - functor_t f; SWI_IO::f815,31466 - void *get_c;get_c816,31482 - void *get_c;SWI_IO::get_c816,31482 - void *put_c;put_c817,31497 - void *put_c;SWI_IO::put_c817,31497 - void *get_w;get_w818,31512 - void *get_w;SWI_IO::get_w818,31512 - void *put_w;put_w819,31527 - void *put_w;SWI_IO::put_w819,31527 - void *flush_s;flush_s820,31542 - void *flush_s;SWI_IO::flush_s820,31542 - void *close_s;close_s821,31559 - void *close_s;SWI_IO::close_s821,31559 - void *get_stream_handle;get_stream_handle822,31576 - void *get_stream_handle;SWI_IO::get_stream_handle822,31576 - void *get_stream_position;get_stream_position823,31603 - void *get_stream_position;SWI_IO::get_stream_position823,31603 -} swi_io_struct;swi_io_struct824,31632 - -include/udi.h,947 -typedef void * (* Yap_UdiInit)Yap_UdiInit31,1101 -typedef void * (* Yap_UdiInsert)Yap_UdiInsert39,1307 -typedef int (* Yap_UdiCallback)Yap_UdiCallback48,1664 -typedef int (* Yap_UdiSearch)Yap_UdiSearch61,2070 -typedef int (* Yap_UdiDestroy)Yap_UdiDestroy70,2429 -typedef struct udi_control_block {udi_control_block76,2518 - YAP_Atom decl; //atom that triggers this indexing structuredecl77,2553 - YAP_Atom decl; //atom that triggers this indexing structureudi_control_block::decl77,2553 - Yap_UdiInit init;init78,2621 - Yap_UdiInit init;udi_control_block::init78,2621 - Yap_UdiInsert insert;insert79,2644 - Yap_UdiInsert insert;udi_control_block::insert79,2644 - Yap_UdiSearch search;search80,2669 - Yap_UdiSearch search;udi_control_block::search80,2669 - Yap_UdiDestroy destroy;destroy81,2694 - Yap_UdiDestroy destroy;udi_control_block::destroy81,2694 -} * UdiControlBlock;UdiControlBlock82,2720 - -include/VFS.h,6037 -#define VFS_H VFS_H18,602 -#define uid_t uid_t27,736 -#define gid_t gid_t30,775 - dev_t st_dev; /* ID of device containing file */st_dev35,825 - dev_t st_dev; /* ID of device containing file */__anon231::st_dev35,825 - mode_t st_mode; /* Mode of file (see below) */st_mode36,896 - mode_t st_mode; /* Mode of file (see below) */__anon231::st_mode36,896 - uid_t st_uid; /* User ID of the file */st_uid37,963 - uid_t st_uid; /* User ID of the file */__anon231::st_uid37,963 - gid_t st_gid; /* Group ID of the file */st_gid38,1025 - gid_t st_gid; /* Group ID of the file */__anon231::st_gid38,1025 - struct timespec st_atimespec; /* time of last access */st_atimespec39,1088 - struct timespec st_atimespec; /* time of last access */__anon231::st_atimespec39,1088 - struct timespec st_mtimespec; /* time of last data modification */st_mtimespec40,1150 - struct timespec st_mtimespec; /* time of last data modification */__anon231::st_mtimespec40,1150 - struct timespec st_ctimespec; /* time of last status change */st_ctimespec41,1223 - struct timespec st_ctimespec; /* time of last status change */__anon231::st_ctimespec41,1223 - struct timespec st_birthtimespec; /* time of file creation(birth) */st_birthtimespec42,1292 - struct timespec st_birthtimespec; /* time of file creation(birth) */__anon231::st_birthtimespec42,1292 - off64_t st_size; /* file size, in bytes */st_size44,1379 - off64_t st_size; /* file size, in bytes */__anon231::st_size44,1379 - off_t st_size; /* file size, in bytes */st_size46,1430 - off_t st_size; /* file size, in bytes */__anon231::st_size46,1430 -} vfs_stat;vfs_stat48,1480 -typedef enum vfs_flags {vfs_flags50,1493 - VFS_CAN_WRITE = 0x1, /// we can write to files in this spaceVFS_CAN_WRITE51,1518 - VFS_CAN_EXEC = 0x2, /// we can execute files in this spaceVFS_CAN_EXEC52,1585 - VFS_CAN_SEEK = 0x4, /// we can seek within files in this spaceVFS_CAN_SEEK53,1651 - VFS_HAS_PREFIX = 0x8, /// has a prefix that identifies a file in this spaceVFS_HAS_PREFIX54,1721 - VFS_HAS_SUFFIX = 0x10, /// has a suffix that describes the file.VFS_HAS_SUFFIX55,1802 - VFS_HAS_FUNCTION = 0x10, /// has a suffix that describes the file.VFS_HAS_FUNCTION56,1871 -} vfs_flags_t;vfs_flags_t57,1940 - struct vfs *vfs;vfs60,1972 - struct vfs *vfs;__anon232::vfs60,1972 - uintptr_t cell;cell61,1991 - uintptr_t cell;__anon232::cell61,1991 - size_t sz;sz62,2009 - size_t sz;__anon232::sz62,2009 - void *pt;pt63,2022 - void *pt;__anon232::pt63,2022 - uintptr_t scalar;scalar64,2034 - uintptr_t scalar;__anon232::scalar64,2034 - AAssetManager *mgr;mgr66,2070 - AAssetManager *mgr;__anon232::mgr66,2070 - AAsset *asset;asset67,2092 - AAsset *asset;__anon232::asset67,2092 -} cell_size_t;cell_size_t69,2116 -typedef struct vfs {vfs71,2132 - const char *name; /// A text that explains the file systemname72,2153 - const char *name; /// A text that explains the file systemvfs::name72,2153 - uintptr_t vflags; /// the main flags describing the operation of the Fs.vflags73,2214 - uintptr_t vflags; /// the main flags describing the operation of the Fs.vfs::vflags73,2214 - const char *prefix;prefix75,2370 - const char *prefix;vfs::prefix75,2370 - const char *suffix;suffix76,2392 - const char *suffix;vfs::suffix76,2392 - bool (*id)(struct vfs *me, const char *s);id77,2414 - bool (*id)(struct vfs *me, const char *s);vfs::id77,2414 - bool (*open)(struct vfs *me, struct stream_desc *st, const char *s,open79,2479 - bool (*open)(struct vfs *me, struct stream_desc *st, const char *s,vfs::open79,2479 - bool (*close)(struct stream_desc *stream); /// close the objectclose83,2677 - bool (*close)(struct stream_desc *stream); /// close the objectvfs::close83,2677 - int (*get_char)(struct stream_desc *stream); /// get an octet to the streamget_char84,2745 - int (*get_char)(struct stream_desc *stream); /// get an octet to the streamvfs::get_char84,2745 - int (*putc)(int ch,putc85,2823 - int (*putc)(int ch,vfs::putc85,2823 - int64_t (*seek)(struct stream_desc *stream, int64_t offset,seek87,2922 - int64_t (*seek)(struct stream_desc *stream, int64_t offset,vfs::seek87,2922 - void *(*opendir)(struct vfs *me,opendir89,3042 - void *(*opendir)(struct vfs *me,vfs::opendir89,3042 - const char *(*nextdir)(nextdir91,3155 - const char *(*nextdir)(vfs::nextdir91,3155 - void (*closedir)(void *d);closedir93,3246 - void (*closedir)(void *d);vfs::closedir93,3246 - bool (*stat)(struct vfs *me, const char *s,stat95,3315 - bool (*stat)(struct vfs *me, const char *s,vfs::stat95,3315 - bool (*isdir)(struct vfs *me, const char *s); /// verify whether is directory.isdir97,3434 - bool (*isdir)(struct vfs *me, const char *s); /// verify whether is directory.vfs::isdir97,3434 - bool (*exists)(struct vfs *me,exists98,3515 - bool (*exists)(struct vfs *me,vfs::exists98,3515 - bool (*chdir)(struct vfs *me,chdir100,3615 - bool (*chdir)(struct vfs *me,vfs::chdir100,3615 - encoding_t enc; /// how the file is encoded.enc102,3728 - encoding_t enc; /// how the file is encoded.vfs::enc102,3728 - YAP_Term (*parsers)(void *stream); // a set of parsers that can read theparsers103,3794 - YAP_Term (*parsers)(void *stream); // a set of parsers that can read thevfs::parsers103,3794 - int (*writers)(int ch, void *stream);writers105,3940 - int (*writers)(int ch, void *stream);vfs::writers105,3940 - const char *virtual_cwd;virtual_cwd107,4023 - const char *virtual_cwd;vfs::virtual_cwd107,4023 - cell_size_t priv[4];priv110,4085 - cell_size_t priv[4];vfs::priv110,4085 - struct vfs *next;next111,4108 - struct vfs *next;vfs::next111,4108 -} VFS_t;VFS_t112,4128 -static inline VFS_t *vfs_owner(const char *fname) {vfs_owner116,4165 - -include/YapDefs.h,16082 -#define _YAPDEFS_H _YAPDEFS_H19,631 -#define TermZERO TermZERO34,867 -typedef int _Bool;_Bool56,1201 -#define bool bool57,1220 -#define false false59,1241 -#define true true60,1257 -#define TRUE TRUE69,1399 -#define FALSE FALSE72,1438 -typedef bool YAP_Bool;YAP_Bool75,1482 -#define YAP_CELL YAP_CELL82,1571 -#define YAP_Term YAP_Term84,1594 -#define YAP_Arity YAP_Arity86,1617 -#define YAP_Module YAP_Module88,1644 -#define YAP_Functor YAP_Functor90,1669 -#define YAP_Atom YAP_Atom92,1698 -#define YAP_Int YAP_Int94,1721 -#define YAP_UInt YAP_UInt96,1742 -#define YAP_Float YAP_Float98,1765 -#define YAP_handle_t YAP_handle_t100,1790 -#define YAP_PredEntryPtr YAP_PredEntryPtr102,1822 -#define YAP_UserCPred YAP_UserCPred104,1868 -#define YAP_agc_hook YAP_agc_hook106,1902 -#define YAP_encoding_t YAP_encoding_t108,1933 -typedef uintptr_t YAP_UInt;YAP_UInt114,2019 -typedef intptr_t YAP_Int;YAP_Int115,2047 -typedef int64_t YAP_Int;YAP_Int117,2086 -typedef uint64_t YAP_UInt;YAP_UInt118,2111 -typedef int32_t YAP_Int;YAP_Int120,2151 -typedef uint32_t YAP_UInt;YAP_UInt121,2176 -typedef long int YAP_Int;YAP_Int123,2209 -typedef unsigned long int YAP_UInt;YAP_UInt124,2235 -typedef YAP_UInt YAP_CELL;YAP_CELL127,2279 -typedef YAP_CELL YAP_Term;YAP_Term129,2307 -typedef size_t YAP_Arity;YAP_Arity131,2335 -typedef YAP_Term YAP_Module;YAP_Module133,2362 -typedef struct FunctorEntry *YAP_Functor;YAP_Functor135,2392 -typedef struct AtomEntry *YAP_Atom;YAP_Atom137,2435 -typedef double YAP_Float;YAP_Float139,2472 -#define TRUE TRUE142,2512 -#define FALSE FALSE145,2548 -typedef YAP_Int YAP_handle_t;YAP_handle_t148,2572 -typedef struct YAP_pred_entry *YAP_PredEntryPtr;YAP_PredEntryPtr150,2603 -typedef YAP_Bool (*YAP_UserCPred)(void);YAP_UserCPred152,2653 -typedef int (*YAP_agc_hook)(void *_Atom);YAP_agc_hook154,2695 -typedef encoding_t YAP_encoding_t;YAP_encoding_t160,2790 -typedef struct YAP_thread_attr_struct {YAP_thread_attr_struct164,2834 - size_t ssize;ssize165,2874 - size_t ssize;YAP_thread_attr_struct::ssize165,2874 - size_t tsize;tsize166,2890 - size_t tsize;YAP_thread_attr_struct::tsize166,2890 - size_t sysize;sysize167,2906 - size_t sysize;YAP_thread_attr_struct::sysize167,2906 - int (*cancel)(int thread);cancel168,2923 - int (*cancel)(int thread);YAP_thread_attr_struct::cancel168,2923 - YAP_Term egoal, alias;egoal169,2952 - YAP_Term egoal, alias;YAP_thread_attr_struct::egoal169,2952 - YAP_Term egoal, alias;alias169,2952 - YAP_Term egoal, alias;YAP_thread_attr_struct::alias169,2952 -} YAP_thread_attr;YAP_thread_attr170,2977 - YAP_BIN = 0x0001,YAP_BIN177,3054 - YAP_TEXT = 0x0002,YAP_TEXT178,3074 - YAP_SAVED_STATE = 0x0004,YAP_SAVED_STATE179,3095 - YAP_OBJ = 0x0008,YAP_OBJ180,3123 - YAP_PL = 0x0010,YAP_PL181,3143 - YAP_BOOT_PL = 0x0030,YAP_BOOT_PL182,3162 - YAP_QLY = 0x0040,YAP_QLY183,3186 - YAP_EXE = 0x0080,YAP_EXE184,3206 - YAP_FOUND_BOOT_ERROR = 0x0100YAP_FOUND_BOOT_ERROR185,3226 -} YAP_file_type_t;YAP_file_type_t186,3258 -#define YAP_ANY_FILE YAP_ANY_FILE188,3278 - YAP_TAG_ATT = 0x1,YAP_TAG_ATT191,3324 - YAP_TAG_UNBOUND = 0x2,YAP_TAG_UNBOUND192,3345 - YAP_TAG_REF = 0x4,YAP_TAG_REF193,3370 - YAP_TAG_PAIR = 0x8,YAP_TAG_PAIR194,3391 - YAP_TAG_ATOM = 0x10,YAP_TAG_ATOM195,3413 - YAP_TAG_INT = 0x20,YAP_TAG_INT196,3436 - YAP_TAG_LONG_INT = 0x40,YAP_TAG_LONG_INT197,3458 - YAP_TAG_BIG_INT = 0x80,YAP_TAG_BIG_INT198,3485 - YAP_TAG_RATIONAL = 0x100,YAP_TAG_RATIONAL199,3511 - YAP_TAG_FLOAT = 0x200,YAP_TAG_FLOAT200,3539 - YAP_TAG_OPAQUE = 0x400,YAP_TAG_OPAQUE201,3564 - YAP_TAG_APPL = 0x800,YAP_TAG_APPL202,3590 - YAP_TAG_DBREF = 0x1000,YAP_TAG_DBREF203,3614 - YAP_TAG_STRING = 0x2000,YAP_TAG_STRING204,3640 - YAP_TAG_ARRAY = 0x4000YAP_TAG_ARRAY205,3667 -} YAP_tag_t;YAP_tag_t206,3692 -#define YAP_BOOT_FROM_SAVED_CODE YAP_BOOT_FROM_SAVED_CODE208,3706 -#define YAP_BOOT_FROM_SAVED_STACKS YAP_BOOT_FROM_SAVED_STACKS209,3741 -#define YAP_BOOT_ERROR YAP_BOOT_ERROR210,3778 -#define YAP_WRITE_QUOTED YAP_WRITE_QUOTED212,3805 -#define YAP_WRITE_IGNORE_OPS YAP_WRITE_IGNORE_OPS213,3832 -#define YAP_WRITE_HANDLE_VARS YAP_WRITE_HANDLE_VARS214,3863 -#define YAP_WRITE_USE_PORTRAY YAP_WRITE_USE_PORTRAY215,3895 -#define YAP_WRITE_HANDLE_CYCLES YAP_WRITE_HANDLE_CYCLES216,3927 -#define YAP_WRITE_BACKQUOTE_STRING YAP_WRITE_BACKQUOTE_STRING217,3964 -#define YAP_WRITE_ATTVAR_NONE YAP_WRITE_ATTVAR_NONE218,4004 -#define YAP_WRITE_ATTVAR_DOTS YAP_WRITE_ATTVAR_DOTS219,4040 -#define YAP_WRITE_ATTVAR_PORTRAY YAP_WRITE_ATTVAR_PORTRAY220,4076 -#define YAP_WRITE_BLOB_PORTRAY YAP_WRITE_BLOB_PORTRAY221,4115 -#define YAP_CONSULT_MODE YAP_CONSULT_MODE223,4153 -#define YAP_RECONSULT_MODE YAP_RECONSULT_MODE224,4180 -#define YAP_BOOT_MODE YAP_BOOT_MODE225,4209 -typedef struct yap_boot_params {yap_boot_params227,4234 - YAP_file_type_t boot_file_type;boot_file_type229,4309 - YAP_file_type_t boot_file_type;yap_boot_params::boot_file_type229,4309 - const char *SavedState;SavedState231,4402 - const char *SavedState;yap_boot_params::SavedState231,4402 - size_t HeapSize;HeapSize233,4480 - size_t HeapSize;yap_boot_params::HeapSize233,4480 - size_t MaxHeapSize;MaxHeapSize235,4551 - size_t MaxHeapSize;yap_boot_params::MaxHeapSize235,4551 - size_t StackSize;StackSize237,4626 - size_t StackSize;yap_boot_params::StackSize237,4626 - size_t MaxStackSize;MaxStackSize239,4699 - size_t MaxStackSize;yap_boot_params::MaxStackSize239,4699 - size_t MaxGlobalSize;MaxGlobalSize241,4742 - size_t MaxGlobalSize;yap_boot_params::MaxGlobalSize241,4742 - size_t TrailSize;TrailSize243,4806 - size_t TrailSize;yap_boot_params::TrailSize243,4806 - size_t MaxTrailSize;MaxTrailSize245,4865 - size_t MaxTrailSize;yap_boot_params::MaxTrailSize245,4865 - size_t AttsSize;AttsSize247,4940 - size_t AttsSize;yap_boot_params::AttsSize247,4940 - size_t MaxAttsSize;MaxAttsSize249,5011 - size_t MaxAttsSize;yap_boot_params::MaxAttsSize249,5011 - const char *YapLibDir;YapLibDir251,5075 - const char *YapLibDir;yap_boot_params::YapLibDir251,5075 - const char *YapShareDir;YapShareDir253,5185 - const char *YapShareDir;yap_boot_params::YapShareDir253,5185 - const char *YapPrologBootFile;YapPrologBootFile255,5280 - const char *YapPrologBootFile;yap_boot_params::YapPrologBootFile255,5280 - const char *YapPrologInitGoal;YapPrologInitGoal257,5382 - const char *YapPrologInitGoal;yap_boot_params::YapPrologInitGoal257,5382 - const char *YapPrologRCFile;YapPrologRCFile259,5495 - const char *YapPrologRCFile;yap_boot_params::YapPrologRCFile259,5495 - const char *YapPrologGoal;YapPrologGoal261,5578 - const char *YapPrologGoal;yap_boot_params::YapPrologGoal261,5578 - const char *YapPrologTopLevelGoal;YapPrologTopLevelGoal263,5655 - const char *YapPrologTopLevelGoal;yap_boot_params::YapPrologTopLevelGoal263,5655 - const char *YapPrologAddPath;YapPrologAddPath265,5748 - const char *YapPrologAddPath;yap_boot_params::YapPrologAddPath265,5748 - bool HaltAfterConsult;HaltAfterConsult267,5851 - bool HaltAfterConsult;yap_boot_params::HaltAfterConsult267,5851 - bool FastBoot;FastBoot269,5924 - bool FastBoot;yap_boot_params::FastBoot269,5924 - size_t MaxTableSpaceSize;MaxTableSpaceSize272,6030 - size_t MaxTableSpaceSize;yap_boot_params::MaxTableSpaceSize272,6030 - unsigned long int NumberWorkers;NumberWorkers276,6258 - unsigned long int NumberWorkers;yap_boot_params::NumberWorkers276,6258 - unsigned long int SchedulerLoop;SchedulerLoop278,6357 - unsigned long int SchedulerLoop;yap_boot_params::SchedulerLoop278,6357 - unsigned long int DelayedReleaseLoad;DelayedReleaseLoad280,6450 - unsigned long int DelayedReleaseLoad;yap_boot_params::DelayedReleaseLoad280,6450 - bool PrologCannotHandleInterrupts;PrologCannotHandleInterrupts284,6633 - bool PrologCannotHandleInterrupts;yap_boot_params::PrologCannotHandleInterrupts284,6633 - int ExecutionMode;ExecutionMode286,6695 - int ExecutionMode;yap_boot_params::ExecutionMode286,6695 - int Argc;Argc288,6764 - int Argc;yap_boot_params::Argc288,6764 - char **Argv;Argv290,6820 - char **Argv;yap_boot_params::Argv290,6820 - bool Embedded;Embedded292,6899 - bool Embedded;yap_boot_params::Embedded292,6899 - int QuietMode;QuietMode294,6933 - int QuietMode;yap_boot_params::QuietMode294,6933 -#define YAP_MAX_YPP_DEFS YAP_MAX_YPP_DEFS297,6989 - char *def_var[YAP_MAX_YPP_DEFS];def_var298,7018 - char *def_var[YAP_MAX_YPP_DEFS];yap_boot_params::def_var298,7018 - char *def_value[YAP_MAX_YPP_DEFS];def_value299,7053 - char *def_value[YAP_MAX_YPP_DEFS];yap_boot_params::def_value299,7053 - int def_c;def_c300,7090 - int def_c;yap_boot_params::def_c300,7090 - short myddas;myddas305,7190 - short myddas;yap_boot_params::myddas305,7190 - char *myddas_user;myddas_user307,7227 - char *myddas_user;yap_boot_params::myddas_user307,7227 - char *myddas_pass;myddas_pass308,7248 - char *myddas_pass;yap_boot_params::myddas_pass308,7248 - char *myddas_db;myddas_db309,7269 - char *myddas_db;yap_boot_params::myddas_db309,7269 - char *myddas_host;myddas_host310,7288 - char *myddas_host;yap_boot_params::myddas_host310,7288 - int ErrorNo;ErrorNo313,7336 - int ErrorNo;yap_boot_params::ErrorNo313,7336 - char *ErrorCause;ErrorCause315,7370 - char *ErrorCause;yap_boot_params::ErrorCause315,7370 -} YAP_init_args;YAP_init_args316,7390 - unsigned long b; //> choice-point at entryb325,7623 - unsigned long b; //> choice-point at entry__anon235::b325,7623 - YAP_handle_t CurSlot; //> variables at entryCurSlot326,7673 - YAP_handle_t CurSlot; //> variables at entry__anon235::CurSlot326,7673 - YAP_handle_t EndSlot; //> variables at successful executionEndSlot327,7720 - YAP_handle_t EndSlot; //> variables at successful execution__anon235::EndSlot327,7720 - struct yami *p; //> Program Counter at entryp328,7782 - struct yami *p; //> Program Counter at entry__anon235::p328,7782 - struct yami *cp; //> Continuation PC at entrycp329,7835 - struct yami *cp; //> Continuation PC at entry__anon235::cp329,7835 -} YAP_dogoalinfo;YAP_dogoalinfo330,7888 -typedef struct open_query_struct {open_query_struct334,7938 - int q_open;q_open335,7973 - int q_open;open_query_struct::q_open335,7973 - int q_state;q_state336,7987 - int q_state;open_query_struct::q_state336,7987 - YAP_handle_t q_g;q_g337,8002 - YAP_handle_t q_g;open_query_struct::q_g337,8002 - struct pred_entry *q_pe;q_pe338,8022 - struct pred_entry *q_pe;open_query_struct::q_pe338,8022 - struct yami *q_p, *q_cp;q_p339,8049 - struct yami *q_p, *q_cp;open_query_struct::q_p339,8049 - struct yami *q_p, *q_cp;q_cp339,8049 - struct yami *q_p, *q_cp;open_query_struct::q_cp339,8049 - jmp_buf q_env;q_env340,8076 - jmp_buf q_env;open_query_struct::q_env340,8076 - int q_flags;q_flags341,8093 - int q_flags;open_query_struct::q_flags341,8093 - YAP_dogoalinfo q_h;q_h342,8108 - YAP_dogoalinfo q_h;open_query_struct::q_h342,8108 - struct open_query_struct *oq;oq343,8130 - struct open_query_struct *oq;open_query_struct::oq343,8130 -} YAP_openQuery;YAP_openQuery344,8162 -typedef void (*YAP_halt_hook)(int exit_code, void *closure);YAP_halt_hook346,8180 -typedef YAP_Int YAP_opaque_tag_t;YAP_opaque_tag_t348,8242 -typedef YAP_Bool (*YAP_Opaque_CallOnFail)(void *);YAP_Opaque_CallOnFail350,8277 -typedef YAP_Bool (*YAP_Opaque_CallOnWrite)(FILE *, YAP_opaque_tag_t, void *,YAP_Opaque_CallOnWrite351,8328 -typedef YAP_Int (*YAP_Opaque_CallOnGCMark)(YAP_opaque_tag_t, void *, YAP_Term *,YAP_Opaque_CallOnGCMark353,8454 -typedef YAP_Bool (*YAP_Opaque_CallOnGCRelocate)(YAP_opaque_tag_t, void *,YAP_Opaque_CallOnGCRelocate355,8588 -typedef struct YAP_opaque_handler_struct {YAP_opaque_handler_struct358,8733 - YAP_Opaque_CallOnFail fail_handler;fail_handler359,8776 - YAP_Opaque_CallOnFail fail_handler;YAP_opaque_handler_struct::fail_handler359,8776 - YAP_Opaque_CallOnWrite write_handler;write_handler360,8814 - YAP_Opaque_CallOnWrite write_handler;YAP_opaque_handler_struct::write_handler360,8814 - YAP_Opaque_CallOnGCMark mark_handler;mark_handler361,8854 - YAP_Opaque_CallOnGCMark mark_handler;YAP_opaque_handler_struct::mark_handler361,8854 - YAP_Opaque_CallOnGCRelocate relocate_handler;relocate_handler362,8894 - YAP_Opaque_CallOnGCRelocate relocate_handler;YAP_opaque_handler_struct::relocate_handler362,8894 -} YAP_opaque_handler_t;YAP_opaque_handler_t363,8942 - YAPC_INTERPRETED, /* interpreted */YAPC_INTERPRETED368,9034 - YAPC_MIXED_MODE_USER, /* mixed mode only for user predicates */YAPC_MIXED_MODE_USER369,9076 - YAPC_MIXED_MODE_ALL, /* mixed mode for all predicates */YAPC_MIXED_MODE_ALL370,9142 - YAPC_COMPILE_USER, /* compile all user predicates*/YAPC_COMPILE_USER371,9202 - YAPC_COMPILE_ALL /* compile all predicates */YAPC_COMPILE_ALL372,9259 -} yapc_exec_mode;yapc_exec_mode373,9312 -typedef enum stream_f {stream_f376,9352 - Free_Stream_f = 0x000001, /**< Free YAP Stream */Free_Stream_f377,9376 - Input_Stream_f = 0x000002, /**< Input Stream */Input_Stream_f378,9430 - Output_Stream_f = 0x000004, /**< Output Stream in Truncate Mode */Output_Stream_f379,9481 - Append_Stream_f = 0x000008, /**< Output Stream in Append Mod */Append_Stream_f380,9550 - Eof_Stream_f = 0x000010, /**< Stream found an EOF */Eof_Stream_f381,9616 - Null_Stream_f = 0x000020, /**< Stream is /dev/null, or equivant */Null_Stream_f382,9674 - Tty_Stream_f = 0x000040, /**< Stream is a terminal */Tty_Stream_f383,9745 - Socket_Stream_f = 0x000080, /**< Socket Stream */Socket_Stream_f384,9804 - Binary_Stream_f = 0x000100, /**< Stream is not eof */Binary_Stream_f385,9856 - Eof_Error_Stream_f =Eof_Error_Stream_f386,9912 - Reset_Eof_Stream_f =Reset_Eof_Stream_f388,10016 - Past_Eof_Stream_f = 0x000800, /**< Read EOF from stream */Past_Eof_Stream_f390,10120 - Push_Eof_Stream_f = 0x001000, /**< keep on sending EOFs */Push_Eof_Stream_f391,10181 - Seekable_Stream_f =Seekable_Stream_f392,10242 - Promptable_Stream_f = 0x004000, /**< Interactive line-by-line stream */Promptable_Stream_f394,10338 - Client_Socket_Stream_f = 0x008000, /**< socket in client mode */Client_Socket_Stream_f395,10415 - Server_Socket_Stream_f = 0x010000, /**< socket in server mode */Server_Socket_Stream_f396,10482 - InMemory_Stream_f = 0x020000, /**< buffer */InMemory_Stream_f397,10549 - Pipe_Stream_f = 0x040000, /**< FIFO buffer */Pipe_Stream_f398,10601 - Popen_Stream_f = 0x080000, /**< popen open, pipes mosylyn */Popen_Stream_f399,10658 - User_Stream_f = 0x100000, /**< usually user_ipiy */User_Stream_f400,10729 - HAS_BOM_f = 0x200000, /**< media for streamhas a BOM mar. */HAS_BOM_f401,10793 - RepError_Prolog_f =RepError_Prolog_f402,10869 - RepError_Xml_f = 0x800000, /**< handle representation error as XML objects */RepError_Xml_f404,10972 - DoNotCloseOnAbort_Stream_f =DoNotCloseOnAbort_Stream_f405,11052 - Readline_Stream_f = 0x2000000, /**< the stream is a readline stream */Readline_Stream_f407,11153 - FreeOnClose_Stream_f =FreeOnClose_Stream_f408,11226 -} estream_f;estream_f410,11320 -typedef uint64_t stream_flags_t;stream_flags_t412,11334 - YAPC_ENABLE_GC, /* enable or disable garbage collection */YAPC_ENABLE_GC417,11432 - YAPC_ENABLE_AGC /* enable or disable atom garbage collection */YAPC_ENABLE_AGC418,11493 -} yap_flag_gc_t;yap_flag_gc_t419,11559 -typedef enum yap_enum_reset_t {yap_enum_reset_t421,11577 - YAP_EXEC_ABSMI = 0,YAP_EXEC_ABSMI422,11609 - YAP_FULL_RESET = 1,YAP_FULL_RESET423,11631 - YAP_RESET_FROM_RESTORE = 3YAP_RESET_FROM_RESTORE424,11653 -} yap_reset_t;yap_reset_t425,11682 -typedef bool (*YAP_ModInit_t)(void);YAP_ModInit_t427,11698 - YAP_ModInit_t f;f430,11753 - YAP_ModInit_t f;__anon238::f430,11753 - const char *s;s431,11772 - const char *s;__anon238::s431,11772 -} YAP_delaymodule_t;YAP_delaymodule_t432,11789 - -include/YapError.h,1449 -#define YAP_ERROR_H YAP_ERROR_H17,623 -#define ECLASS(ECLASS19,646 -#define E0(E021,676 -#define E(E22,696 -#define E2(E223,718 -#define BEGIN_ERRORS(BEGIN_ERRORS25,745 -#define END_ERRORS(END_ERRORS27,784 -#define BEGIN_ERROR_CLASSES(BEGIN_ERROR_CLASSES31,966 -#define END_ERROR_CLASSES(END_ERROR_CLASSES33,1012 -#define MAX_ERROR_MSG_SIZE MAX_ERROR_MSG_SIZE39,1224 -#define Yap_NilError(Yap_NilError52,1660 -#define Yap_Error(Yap_Error55,1816 -#define Yap_ThrowError(Yap_ThrowError58,1966 -#define Yap_ensure_atom(Yap_ensure_atom66,2217 -INLINE_ONLY extern inline Term Yap_ensure_atom__(const char *fu, const char *fi,Yap_ensure_atom__70,2418 -#define JMP_LOCAL_ERROR(JMP_LOCAL_ERROR87,2894 -#define LOCAL_ERROR(LOCAL_ERROR94,3304 -#define LOCAL_TERM_ERROR(LOCAL_TERM_ERROR101,3714 -#define AUX_ERROR(AUX_ERROR108,4124 -#define AUX_TERM_ERROR(AUX_TERM_ERROR115,4534 -#define JMP_AUX_ERROR(JMP_AUX_ERROR122,4944 -#define HEAP_ERROR(HEAP_ERROR129,5354 -#define HEAP_TERM_ERROR(HEAP_TERM_ERROR136,5764 -#define JMP_HEAP_ERROR(JMP_HEAP_ERROR143,6174 -#define LOCAL_Error_TYPE LOCAL_Error_TYPE226,8973 -#define LOCAL_Error_File LOCAL_Error_File227,9025 -#define LOCAL_Error_Function LOCAL_Error_Function228,9079 -#define LOCAL_Error_Lineno LOCAL_Error_Lineno229,9141 -#define LOCAL_Error_Size LOCAL_Error_Size230,9197 -#define LOCAL_BallTerm LOCAL_BallTerm231,9253 -#define LOCAL_ErrorMessage LOCAL_ErrorMessage232,9305 - -include/YapErrors.h,0 - -include/YapFormat.h,1407 -typedef int64_t Int;Int6,47 -typedef uint64_t UInt;UInt7,69 -#define Int_FORMAT Int_FORMAT8,93 -#define UInt_FORMAT UInt_FORMAT9,121 -#define Int_F Int_F10,150 -#define UInt_F UInt_F11,172 -#define UXInt_F UXInt_F12,195 -#define Sizet_F Sizet_F13,220 -typedef int32_t Int;Int17,269 -typedef uint32_t UInt;UInt18,291 -#define Int_FORMAT Int_FORMAT19,315 -#define UInt_FORMAT UInt_FORMAT20,343 -#define Int_F Int_F21,372 -#define UInt_F UInt_F22,394 -#define UInt_FORMAT UInt_FORMAT23,417 -#define UXInt_FORMAT UXInt_FORMAT24,446 -#define Sizet_F Sizet_F25,477 -#define Int_FORMAT Int_FORMAT28,525 -#define Int_ANYFORMAT Int_ANYFORMAT29,557 -#define UInt_FORMAT UInt_FORMAT30,592 -#define Int_F Int_F31,625 -#define Int_ANYF Int_ANYF32,648 -#define UInt_F UInt_F33,674 -#define UXInt_F UXInt_F34,698 -#define Sizet_F Sizet_F35,723 -typedef long int Int;Int39,788 -typedef unsigned long int UInt;UInt40,811 -#define Int_FORMAT Int_FORMAT41,844 -#define UInt_FORMAT UInt_FORMAT42,870 -#define Int_F Int_F43,898 -#define UInt_F UInt_F44,918 -#define UXInt_F UXInt_F45,940 -#define Sizet_F Sizet_F46,964 -typedef int Int;Int50,1025 -typedef unsigned int UInt;UInt51,1043 -#define Int_FORMAT Int_FORMAT52,1071 -#define UInt_FORMAT UInt_FORMAT53,1096 -#define Int_F Int_F54,1123 -#define UInt_F UInt_F55,1142 -#define UXInt_F UXInt_F56,1163 -#define Sizet_F Sizet_F57,1186 - -include/YapInterface.h,1497 -#define _yap_c_interface_h _yap_c_interface_h33,749 -#define __YAP_PROLOG__ __YAP_PROLOG__35,779 -#define YAPVERSION YAPVERSION38,824 -#undef __BEGIN_DECLS__BEGIN_DECLS58,1176 -#undef __END_DECLS__END_DECLS59,1197 -#define __BEGIN_DECLS __BEGIN_DECLS61,1235 -#define __END_DECLS __END_DECLS62,1270 -#define __BEGIN_DECLS __BEGIN_DECLS64,1298 -#define __END_DECLS __END_DECLS65,1332 -#define YAP_Deref(YAP_Deref85,1542 -#define YAP_ARG1 YAP_ARG189,1602 -#define YAP_ARG2 YAP_ARG290,1628 -#define YAP_ARG3 YAP_ARG391,1654 -#define YAP_ARG4 YAP_ARG492,1680 -#define YAP_ARG5 YAP_ARG593,1706 -#define YAP_ARG6 YAP_ARG694,1732 -#define YAP_ARG7 YAP_ARG795,1758 -#define YAP_ARG8 YAP_ARG896,1784 -#define YAP_ARG9 YAP_ARG997,1810 -#define YAP_ARG10 YAP_ARG1098,1836 -#define YAP_ARG11 YAP_ARG1199,1864 -#define YAP_ARG12 YAP_ARG12100,1892 -#define YAP_ARG13 YAP_ARG13101,1920 -#define YAP_ARG14 YAP_ARG14102,1948 -#define YAP_ARG15 YAP_ARG15103,1976 -#define YAP_ARG16 YAP_ARG16104,2004 -#define YAP_PRESERVE_DATA(YAP_PRESERVE_DATA253,6510 -#define YAP_PRESERVED_DATA(YAP_PRESERVED_DATA254,6580 -#define YAP_PRESERVED_DATA_CUT(YAP_PRESERVED_DATA_CUT255,6651 -#define YAP_cut_succeed(YAP_cut_succeed290,8014 -#define YAP_cut_fail(YAP_cut_fail296,8353 -#define IOSTREAM IOSTREAM390,11719 -#define SFArity SFArity467,14447 -#define YAP_LookupModule(YAP_LookupModule516,15742 -#define YAP_ModuleName(YAP_ModuleName518,15775 -#define YAP_InitCPred(YAP_InitCPred689,21182 - -include/YapRegs.h,510 -#define YAP_REGS_H YAP_REGS_H3,20 -#define _XOPEN_SOURCE _XOPEN_SOURCE8,103 -typedef struct trail_frame {trail_frame15,263 - Term term;term16,292 - Term term;trail_frame::term16,292 - CELL value;value17,305 - CELL value;trail_frame::value17,305 -} *tr_fr_ptr;tr_fr_ptr18,319 -#define TrailTerm(TrailTerm20,334 -typedef Term *tr_fr_ptr;tr_fr_ptr22,375 -#define TrailTerm(TrailTerm24,401 -typedef void *choiceptr;choiceptr27,446 -typedef void *yamop;yamop29,472 -typedef char *ADDR;ADDR31,494 - -include/YapStreams.h,13373 -static char SccsId[] = "%W% %G%";SccsId10,310 -#define YAPSTREAMS_H YAPSTREAMS_H16,375 -#define YAP_ERROR YAP_ERROR26,505 -#define MaxStreams MaxStreams28,528 -#define EXPAND_FILENAME EXPAND_FILENAME30,551 -#define StdInStream StdInStream32,585 -#define StdOutStream StdOutStream33,607 -#define StdErrStream StdErrStream34,630 -#define ALIASES_BLOCK_SIZE ALIASES_BLOCK_SIZE36,654 -#define USE_SOCKET USE_SOCKET40,714 -#define HAVE_SOCKET HAVE_SOCKET42,742 -typedef struct yap_io_position {yap_io_position65,1087 - int64_t byteno; /* byte-position in file */byteno66,1120 - int64_t byteno; /* byte-position in file */yap_io_position::byteno66,1120 - int64_t charno; /* character position in file */charno67,1172 - int64_t charno; /* character position in file */yap_io_position::charno67,1172 - long int lineno; /* lineno in file */lineno68,1229 - long int lineno; /* lineno in file */yap_io_position::lineno68,1229 - long int linepos; /* position in line */linepos69,1274 - long int linepos; /* position in line */yap_io_position::linepos69,1274 - intptr_t reserved[2]; /* future extensions */reserved70,1321 - intptr_t reserved[2]; /* future extensions */yap_io_position::reserved70,1321 -} yapIOPOS;yapIOPOS71,1369 - YAP_Atom file; /* current source file */file75,1420 - YAP_Atom file; /* current source file */__anon239::file75,1420 - yapIOPOS position; /* Line, line pos, char and byte */position76,1471 - yapIOPOS position; /* Line, line pos, char and byte */__anon239::position76,1471 -} yapSourceLocation;yapSourceLocation77,1528 -#define RD_MAGIC RD_MAGIC80,1557 -typedef struct vlist_struct_t {vlist_struct_t82,1586 - struct VARSTRUCT *ve;ve83,1618 - struct VARSTRUCT *ve;vlist_struct_t::ve83,1618 - struct vlist_struct_t *next;next84,1642 - struct vlist_struct_t *next;vlist_struct_t::next84,1642 -} vlist_t;vlist_t85,1673 -typedef struct qq_struct_t {qq_struct_t87,1685 - unsigned char *text;text88,1714 - unsigned char *text;qq_struct_t::text88,1714 - yapIOPOS start, mid, end;start89,1737 - yapIOPOS start, mid, end;qq_struct_t::start89,1737 - yapIOPOS start, mid, end;mid89,1737 - yapIOPOS start, mid, end;qq_struct_t::mid89,1737 - yapIOPOS start, mid, end;end89,1737 - yapIOPOS start, mid, end;qq_struct_t::end89,1737 - vlist_t *vlist;vlist90,1765 - vlist_t *vlist;qq_struct_t::vlist90,1765 - struct qq_struct_t *next;next91,1783 - struct qq_struct_t *next;qq_struct_t::next91,1783 -} qq_t;qq_t92,1811 -typedef struct read_data_t {read_data_t94,1820 - unsigned char *here; /* current character */here95,1849 - unsigned char *here; /* current character */read_data_t::here95,1849 - unsigned char *base; /* base of clause */base96,1903 - unsigned char *base; /* base of clause */read_data_t::base96,1903 - unsigned char *end; /* end of the clause */end97,1954 - unsigned char *end; /* end of the clause */read_data_t::end97,1954 - unsigned char *token_start; /* start of most recent read token */token_start98,2008 - unsigned char *token_start; /* start of most recent read token */read_data_t::token_start98,2008 - int magic; /* RD_MAGIC */magic100,2077 - int magic; /* RD_MAGIC */read_data_t::magic100,2077 - struct stream_desc *stream;stream101,2105 - struct stream_desc *stream;read_data_t::stream101,2105 - FILE *f; /* file. of known */f102,2135 - FILE *f; /* file. of known */read_data_t::f102,2135 - YAP_Term position; /* Line, line pos, char and byte */position103,2173 - YAP_Term position; /* Line, line pos, char and byte */read_data_t::position103,2173 - void *posp; /* position pointer */posp104,2230 - void *posp; /* position pointer */read_data_t::posp104,2230 - size_t posi; /* position number */posi105,2270 - size_t posi; /* position number */read_data_t::posi105,2270 - YAP_Term subtpos; /* Report Subterm positions */subtpos107,2310 - YAP_Term subtpos; /* Report Subterm positions */read_data_t::subtpos107,2310 - bool cycles; /* Re-establish cycles */cycles108,2380 - bool cycles; /* Re-establish cycles */read_data_t::cycles108,2380 - yapSourceLocation start_of_term; /* Position of start of term */start_of_term109,2441 - yapSourceLocation start_of_term; /* Position of start of term */read_data_t::start_of_term109,2441 - struct mod_entry *module; /* Current source module */module110,2508 - struct mod_entry *module; /* Current source module */read_data_t::module110,2508 - unsigned int flags; /* Module syntax flags */flags111,2571 - unsigned int flags; /* Module syntax flags */read_data_t::flags111,2571 - int styleCheck; /* style-checking mask */styleCheck112,2632 - int styleCheck; /* style-checking mask */read_data_t::styleCheck112,2632 - bool backquoted_string; /* Read `hello` as string */backquoted_string113,2693 - bool backquoted_string; /* Read `hello` as string */read_data_t::backquoted_string113,2693 - int *char_conversion_table; /* active conversion table */char_conversion_table115,2758 - int *char_conversion_table; /* active conversion table */read_data_t::char_conversion_table115,2758 - YAP_Atom on_error; /* Handling of syntax errors */on_error117,2819 - YAP_Atom on_error; /* Handling of syntax errors */read_data_t::on_error117,2819 - int has_exception; /* exception is raised */has_exception118,2876 - int has_exception; /* exception is raised */read_data_t::has_exception118,2876 - YAP_Term exception; /* raised exception */exception120,2924 - YAP_Term exception; /* raised exception */read_data_t::exception120,2924 - YAP_Term variables; /* report variables */variables121,2969 - YAP_Term variables; /* report variables */read_data_t::variables121,2969 - YAP_Term singles; /* Report singleton variables */singles122,3014 - YAP_Term singles; /* Report singleton variables */read_data_t::singles122,3014 - YAP_Term varnames; /* Report variables+names */varnames123,3069 - YAP_Term varnames; /* Report variables+names */read_data_t::varnames123,3069 - int strictness; /* Strictness level */strictness124,3120 - int strictness; /* Strictness level */read_data_t::strictness124,3120 - YAP_Term quasi_quotations; /* User option quasi_quotations(QQ) */quasi_quotations127,3187 - YAP_Term quasi_quotations; /* User option quasi_quotations(QQ) */read_data_t::quasi_quotations127,3187 - YAP_Term qq; /* Quasi quoted list */qq128,3255 - YAP_Term qq; /* Quasi quoted list */read_data_t::qq128,3255 - YAP_Term qq_tail; /* Tail of the quoted stuff */qq_tail129,3308 - YAP_Term qq_tail; /* Tail of the quoted stuff */read_data_t::qq_tail129,3308 - YAP_Term comments; /* Report comments */comments132,3376 - YAP_Term comments; /* Report comments */read_data_t::comments132,3376 -} read_data, *ReadData;read_data134,3420 -} read_data, *ReadData;ReadData134,3420 -#define HAVE_FMEMOPEN HAVE_FMEMOPEN139,3482 -#define HAVE_OPEN_MEMSTREAM HAVE_OPEN_MEMSTREAM140,3506 -#undef HAVE_FMEMOPENHAVE_FMEMOPEN146,3608 -#undef HAVE_OPEN_MEMSTREAMHAVE_OPEN_MEMSTREAM147,3629 -#define MAY_READ MAY_READ151,3682 -#define MAY_READ MAY_READ155,3733 -#define MAY_WRITE MAY_WRITE156,3752 -#undef MAY_WRITEMAY_WRITE160,3791 -#undef MAY_READMAY_READ161,3808 -typedef struct mem_desc {mem_desc164,3832 - char *buf; /* where the file is being read from/written to */buf165,3858 - char *buf; /* where the file is being read from/written to */mem_desc::buf165,3858 - int src; /* where the space comes from, 0 code space, 1 malloc */src166,3925 - int src; /* where the space comes from, 0 code space, 1 malloc */mem_desc::src166,3925 - YAP_Int max_size; /* maximum buffer size (may be changed dynamically) */max_size167,3998 - YAP_Int max_size; /* maximum buffer size (may be changed dynamically) */mem_desc::max_size167,3998 - YAP_UInt pos; /* cursor */pos168,4073 - YAP_UInt pos; /* cursor */mem_desc::pos168,4073 - volatile void *error_handler;error_handler169,4106 - volatile void *error_handler;mem_desc::error_handler169,4106 -} memHandle;memHandle170,4138 - new_socket,new_socket174,4240 - server_socket,server_socket175,4264 - client_socket,client_socket176,4283 - server_session_socket,server_session_socket177,4302 - closed_socketclosed_socket178,4329 -} socket_info;socket_info179,4347 - af_inet, /* IPV4 */af_inet182,4438 - af_unix /* or AF_FILE */af_unix183,4470 -} socket_domain;socket_domain184,4508 -#define Quote_illegal_f Quote_illegal_f188,4534 -#define Ignore_ops_f Ignore_ops_f189,4563 -#define Handle_vars_f Handle_vars_f190,4589 -#define Use_portray_f Use_portray_f191,4616 -#define To_heap_f To_heap_f192,4643 -#define Unfold_cyclics_f Unfold_cyclics_f193,4666 -#define Use_SWI_Stream_f Use_SWI_Stream_f194,4696 -#define BackQuote_String_f BackQuote_String_f195,4726 -#define AttVar_None_f AttVar_None_f196,4758 -#define AttVar_Dots_f AttVar_Dots_f197,4786 -#define AttVar_Portray_f AttVar_Portray_f198,4814 -#define Blob_Portray_f Blob_Portray_f199,4845 -#define No_Escapes_f No_Escapes_f200,4874 -#define No_Brace_Terms_f No_Brace_Terms_f201,4902 -#define Fullstop_f Fullstop_f202,4934 -#define New_Line_f New_Line_f203,4960 -typedef struct stream_desc {stream_desc205,4987 - YAP_Atom name;name206,5016 - YAP_Atom name;stream_desc::name206,5016 - YAP_Term user_name;user_name207,5033 - YAP_Term user_name;stream_desc::user_name207,5033 - FILE *file;file208,5055 - FILE *file;stream_desc::file208,5055 - char *nbuf;nbuf210,5099 - char *nbuf;stream_desc::nbuf210,5099 - size_t nsize;nsize211,5113 - size_t nsize;stream_desc::nsize211,5113 -#define PLGETC_BUF_SIZE PLGETC_BUF_SIZE214,5152 - unsigned char *buf, *ptr;buf215,5181 - unsigned char *buf, *ptr;stream_desc::__anon242::__anon243::buf215,5181 - unsigned char *buf, *ptr;ptr215,5181 - unsigned char *buf, *ptr;stream_desc::__anon242::__anon243::ptr215,5181 - int left;left216,5213 - int left;stream_desc::__anon242::__anon243::left216,5213 - } file;file217,5229 - } file;stream_desc::__anon242::file217,5229 - memHandle mem_string;mem_string218,5241 - memHandle mem_string;stream_desc::__anon242::mem_string218,5241 - int fd;fd220,5280 - int fd;stream_desc::__anon242::__anon244::fd220,5280 - } pipe;pipe221,5294 - } pipe;stream_desc::__anon242::pipe221,5294 - socket_domain domain;domain224,5335 - socket_domain domain;stream_desc::__anon242::__anon245::domain224,5335 - socket_info flags;flags225,5363 - socket_info flags;stream_desc::__anon242::__anon245::flags225,5363 - int fd;fd226,5388 - int fd;stream_desc::__anon242::__anon245::fd226,5388 - } socket;socket227,5402 - } socket;stream_desc::__anon242::socket227,5402 - const unsigned char *buf, *ptr;buf230,5436 - const unsigned char *buf, *ptr;stream_desc::__anon242::__anon246::buf230,5436 - const unsigned char *buf, *ptr;ptr230,5436 - const unsigned char *buf, *ptr;stream_desc::__anon242::__anon246::ptr230,5436 - } irl;irl231,5474 - } irl;stream_desc::__anon242::irl231,5474 - } u;u232,5485 - } u;stream_desc::u232,5485 - YAP_Int charcount, linecount, linepos;charcount234,5493 - YAP_Int charcount, linecount, linepos;stream_desc::charcount234,5493 - YAP_Int charcount, linecount, linepos;linecount234,5493 - YAP_Int charcount, linecount, linepos;stream_desc::linecount234,5493 - YAP_Int charcount, linecount, linepos;linepos234,5493 - YAP_Int charcount, linecount, linepos;stream_desc::linepos234,5493 - stream_flags_t status;status235,5534 - stream_flags_t status;stream_desc::status235,5534 - lockvar streamlock; /* protect stream access */streamlock237,5598 - lockvar streamlock; /* protect stream access */stream_desc::streamlock237,5598 - int (*stream_putc)(stream_putc239,5655 - int (*stream_putc)(stream_desc::stream_putc239,5655 - int (*stream_wputc)(stream_wputc241,5753 - int (*stream_wputc)(stream_desc::stream_wputc241,5753 - int (*stream_getc)(int); /** function the stream uses for reading an octet. */stream_getc243,5853 - int (*stream_getc)(int); /** function the stream uses for reading an octet. */stream_desc::stream_getc243,5853 - int (*stream_wgetc)(stream_wgetc244,5934 - int (*stream_wgetc)(stream_desc::stream_wgetc244,5934 - struct vfs *vfs; /** stream belongs to a space */vfs246,6034 - struct vfs *vfs; /** stream belongs to a space */stream_desc::vfs246,6034 - void *vfs_handle; /** direct handle to stream in that space. */vfs_handle247,6087 - void *vfs_handle; /** direct handle to stream in that space. */stream_desc::vfs_handle247,6087 - int (*stream_wgetc_for_read)(stream_wgetc_for_read248,6153 - int (*stream_wgetc_for_read)(stream_desc::stream_wgetc_for_read248,6153 - encoding_t encoding; /** current encoding for stream */encoding251,6325 - encoding_t encoding; /** current encoding for stream */stream_desc::encoding251,6325 -} StreamDesc;StreamDesc252,6383 - -interactive.py,0 - -ipykernel/examples/embedding/inprocess_qtconsole.py,407 -from __future__ import print_functionprint_function1,0 -import osos2,38 -from IPython.qt.console.rich_ipython_widget import RichIPythonWidgetRichIPythonWidget4,49 -from IPython.qt.inprocess import QtInProcessKernelManagerQtInProcessKernelManager5,118 -from IPython.lib import guisupportguisupport6,176 -def print_process_id():print_process_id9,213 -def main():main13,280 - def stop():stop31,805 - -ipykernel/examples/embedding/inprocess_terminal.py,350 -from __future__ import print_functionprint_function1,0 -import osos2,38 -from IPython.kernel.inprocess import InProcessKernelManagerInProcessKernelManager4,49 -from IPython.terminal.console.interactiveshell import ZMQTerminalInteractiveShellZMQTerminalInteractiveShell5,109 -def print_process_id():print_process_id8,193 -def main():main12,260 - -ipykernel/examples/embedding/internal_ipkernel.py,559 -import syssys5,169 -from IPython.lib.kernel import connect_qtconsoleconnect_qtconsole7,181 -from IPython.kernel.zmq.kernelapp import IPKernelAppIPKernelApp8,230 -def mpl_kernel(gui):mpl_kernel13,466 -class InternalIPKernel(object):InternalIPKernel23,763 - def init_ipkernel(self, backend):init_ipkernel25,796 - def print_namespace(self, evt=None):print_namespace39,1405 - def new_qt_console(self, evt=None):new_qt_console46,1652 - def count(self, evt=None):count50,1852 - def cleanup_consoles(self, evt=None):cleanup_consoles53,1927 - -ipykernel/examples/embedding/ipkernel_qtapp.py,349 -from PyQt4 import QtQt21,873 -from internal_ipkernel import InternalIPKernelInternalIPKernel23,895 -class SimpleWindow(Qt.QWidget, InternalIPKernel):SimpleWindow28,1125 - def __init__(self, app):__init__30,1176 - def add_widgets(self):add_widgets36,1323 - app = Qt.QApplication([]) app68,2564 - win = SimpleWindow(app)win70,2619 - -ipykernel/examples/embedding/ipkernel_wxapp.py,422 -import syssys22,947 -import wxwx24,959 -from internal_ipkernel import InternalIPKernelInternalIPKernel26,970 -class MyFrame(wx.Frame, InternalIPKernel):MyFrame32,1201 - def __init__(self, parent, title):__init__38,1353 - def OnTimeToClose(self, evt):OnTimeToClose91,3333 -class MyApp(wx.App):MyApp102,3684 - def OnInit(self):OnInit103,3705 - app = MyApp(redirect=False, clearSigInt=False)app115,4098 - -ipykernel/ipykernel/__init__.py,506 -from ._version import version_info, __version__, kernel_protocol_version_info, kernel_protocol_versionversion_info1,0 -from ._version import version_info, __version__, kernel_protocol_version_info, kernel_protocol_version__version__1,0 -from ._version import version_info, __version__, kernel_protocol_version_info, kernel_protocol_versionkernel_protocol_version_info1,0 -from ._version import version_info, __version__, kernel_protocol_version_info, kernel_protocol_versionkernel_protocol_version1,0 - -ipykernel/ipykernel/__main__.py,52 - from ipykernel import kernelapp as appapp2,27 - -ipykernel/ipykernel/_version.py,280 -version_info = (4, 7, 0, 'dev')version_info1,0 -__version__ = '.'.join(map(str, version_info))__version__2,32 -kernel_protocol_version_info = (5, 1)kernel_protocol_version_info4,80 -kernel_protocol_version = '%s.%s' % kernel_protocol_version_infokernel_protocol_version5,118 - -ipykernel/ipykernel/codeutil.py,341 -import warningswarnings16,540 -import syssys19,688 -import typestypes20,699 - import copyreg # Py 3copyreg22,717 - import copyreg # Py 3Py22,717 - import copy_reg as copyreg # Py 2copyreg24,764 - import copy_reg as copyreg # Py 2Py24,764 -def code_ctor(*args):code_ctor26,804 -def reduce_code(co):reduce_code29,860 - -ipykernel/ipykernel/comm/__init__.py,0 - -ipykernel/ipykernel/comm/comm.py,2371 -import uuiduuid6,131 -from traitlets.config import LoggingConfigurableLoggingConfigurable8,144 -from ipykernel.kernelbase import KernelKernel9,193 -from ipykernel.jsonutil import json_cleanjson_clean11,234 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultInstance12,276 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultUnicode12,276 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultBytes12,276 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultBool12,276 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultDict12,276 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultAny12,276 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultdefault12,276 -class Comm(LoggingConfigurable):Comm15,351 - kernel = Instance('ipykernel.kernelbase.Kernel', allow_none=True)kernel17,450 - def _default_kernel(self):_default_kernel20,544 - comm_id = Unicode()comm_id24,646 - def _default_comm_id(self):_default_comm_id27,695 - primary = Bool(True, help="Am I the primary or secondary Comm?")primary30,760 - target_name = Unicode('comm')target_name32,830 - topic = Bytes()topic36,985 - def _default_topic(self):_default_topic39,1028 - _open_data = Dict(help="data dict, if any, to be included in comm_open")_open_data42,1117 - _close_data = Dict(help="data dict, if any, to be included in comm_close")_close_data43,1194 - _msg_callback = Any()_msg_callback45,1274 - _close_callback = Any()_close_callback46,1300 - _closed = Bool(True)_closed48,1329 - def __init__(self, target_name='', data=None, metadata=None, buffers=None, **kwargs):__init__50,1355 - def _publish_msg(self, msg_type, data=None, metadata=None, buffers=None, **keys):_publish_msg61,1790 - def __del__(self):__del__74,2359 - def open(self, data=None, metadata=None, buffers=None):open80,2465 - def close(self, data=None, metadata=None, buffers=None):close101,3333 - def send(self, data=None, metadata=None, buffers=None):send118,3924 - def on_close(self, callback):on_close126,4192 - def on_msg(self, callback):on_msg135,4451 - def handle_close(self, msg):handle_close146,4743 - def handle_msg(self, msg):handle_msg152,4956 -__all__ = ['Comm']__all__164,5347 - -ipykernel/ipykernel/comm/manager.py,1342 -import syssys6,136 -import logginglogging7,147 -from traitlets.config import LoggingConfigurableLoggingConfigurable9,163 -from ipython_genutils.py3compat import string_typesstring_types12,267 -from traitlets import Instance, Unicode, Dict, Any, defaultInstance13,319 -from traitlets import Instance, Unicode, Dict, Any, defaultUnicode13,319 -from traitlets import Instance, Unicode, Dict, Any, defaultDict13,319 -from traitlets import Instance, Unicode, Dict, Any, defaultAny13,319 -from traitlets import Instance, Unicode, Dict, Any, defaultdefault13,319 -from .comm import CommComm15,380 -class CommManager(LoggingConfigurable):CommManager18,405 - kernel = Instance('ipykernel.kernelbase.Kernel')kernel21,488 - comms = Dict()comms22,541 - targets = Dict()targets23,560 - def register_target(self, target_name, f):register_target27,601 - def unregister_target(self, target_name, f):unregister_target42,1061 - def register_comm(self, comm):register_comm46,1224 - def unregister_comm(self, comm):unregister_comm53,1417 - def get_comm(self, comm_id):get_comm58,1614 - def comm_open(self, stream, ident, msg):comm_open75,2218 - def comm_msg(self, stream, ident, msg):comm_msg102,3183 - def comm_close(self, stream, ident, msg):comm_close115,3580 -__all__ = ['CommManager']__all__130,4018 - -ipykernel/ipykernel/connect.py,1285 -from __future__ import absolute_importabsolute_import6,158 -import jsonjson8,198 -import syssys9,210 -from subprocess import Popen, PIPEPopen10,221 -from subprocess import Popen, PIPEPIPE10,221 -import warningswarnings11,256 -from IPython.core.profiledir import ProfileDirProfileDir13,273 -from IPython.paths import get_ipython_dirget_ipython_dir14,320 -from ipython_genutils.path import filefindfilefind15,362 -from ipython_genutils.py3compat import str_to_bytesstr_to_bytes16,405 -import jupyter_clientjupyter_client18,458 -from jupyter_client import write_connection_filewrite_connection_file19,480 -def get_connection_file(app=None):get_connection_file23,532 - from ipykernel.kernelapp import IPKernelAppIPKernelApp32,787 -def find_connection_file(filename='kernel-*.json', profile=None):find_connection_file40,1070 - import warningswarnings58,1666 - from IPython.core.application import BaseIPythonApplication as IPAppIPApp61,1839 -def _find_connection_file(connection_file, profile=None):_find_connection_file84,2695 -def get_connection_info(connection_file=None, unpack=False, profile=None):get_connection_info106,3580 -def connect_qtconsole(connection_file=None, argv=None, profile=None):connect_qtconsole140,4667 -__all__ = [__all__177,5849 - -ipykernel/ipykernel/datapub.py,1099 -import warningswarnings4,55 -from traitlets.config import ConfigurableConfigurable10,280 -from traitlets import Instance, Dict, CBytes, AnyInstance11,322 -from traitlets import Instance, Dict, CBytes, AnyDict11,322 -from traitlets import Instance, Dict, CBytes, AnyCBytes11,322 -from traitlets import Instance, Dict, CBytes, AnyAny11,322 -from ipykernel.jsonutil import json_cleanjson_clean12,372 -from ipykernel.serialize import serialize_objectserialize_object13,414 -from jupyter_client.session import Session, extract_headerSession14,463 -from jupyter_client.session import Session, extract_headerextract_header14,463 -class ZMQDataPublisher(Configurable):ZMQDataPublisher17,524 - session = Instance(Session, allow_none=True)session20,602 - pub_socket = Any(allow_none=True)pub_socket21,651 - parent_header = Dict({})parent_header22,689 - def set_parent(self, parent):set_parent24,719 - def publish_data(self, data):publish_data28,858 -def publish_data(data):publish_data50,1513 - from ipykernel.zmqshell import ZMQInteractiveShellZMQInteractiveShell61,1821 - -ipykernel/ipykernel/displayhook.py,1451 -import syssys6,165 -from IPython.core.displayhook import DisplayHookDisplayHook8,177 -from ipykernel.jsonutil import encode_imagesencode_images9,226 -from ipython_genutils.py3compat import builtin_modbuiltin_mod10,271 -from traitlets import Instance, Dict, AnyInstance11,322 -from traitlets import Instance, Dict, AnyDict11,322 -from traitlets import Instance, Dict, AnyAny11,322 -from jupyter_client.session import extract_header, Sessionextract_header12,364 -from jupyter_client.session import extract_header, SessionSession12,364 -class ZMQDisplayHook(object):ZMQDisplayHook15,425 - topic = b'execute_result'topic18,545 - def __init__(self, session, pub_socket):__init__20,576 - def get_execution_count(self):get_execution_count25,722 - def __call__(self, obj):__call__29,826 - def set_parent(self, parent):set_parent42,1286 -class ZMQShellDisplayHook(DisplayHook):ZMQShellDisplayHook46,1374 - topic=Nonetopic50,1609 - session = Instance(Session, allow_none=True)session52,1625 - pub_socket = Any(allow_none=True)pub_socket53,1674 - parent_header = Dict({})parent_header54,1712 - def set_parent(self, parent):set_parent56,1742 - def start_displayhook(self):start_displayhook60,1881 - def write_output_prompt(self):write_output_prompt66,2062 - def write_format_data(self, format_dict, md_dict=None):write_format_data70,2204 - def finish_displayhook(self):finish_displayhook74,2380 - -ipykernel/ipykernel/embed.py,233 -import syssys7,224 -from IPython.utils.frame import extract_module_localsextract_module_locals9,236 -from .kernelapp import IPKernelAppIPKernelApp11,291 -def embed_kernel(module=None, local_ns=None, **kwargs):embed_kernel17,493 - -ipykernel/ipykernel/eventloops.py,2427 -import osos7,180 -import syssys8,190 -import platformplatform9,201 -import zmqzmq11,218 -from distutils.version import LooseVersion as VV13,230 -from traitlets.config.application import ApplicationApplication14,278 -from IPython.utils import ioio15,331 -def _use_appnope():_use_appnope17,361 -def _notify_stream_qt(kernel, stream):_notify_stream_qt24,575 - from IPython.external.qt_for_kernel import QtCoreQtCore26,615 - from appnope import nope_scope as contextcontext29,720 - from contextlib import contextmanagercontextmanager31,780 - def context():context33,850 - def process_stream_events():process_stream_events36,892 -loop_map = {loop_map46,1263 -def register_integration(*toolkitnames):register_integration54,1377 - def decorator(func):decorator67,1989 -def _loop_qt(app):_loop_qt75,2126 -def loop_qt4(kernel):loop_qt488,2510 - from IPython.lib.guisupport import get_app_qt4get_app_qt491,2593 -def loop_qt5(kernel):loop_qt5103,2859 -def _loop_wx(app):_loop_wx109,3006 -def loop_wx(kernel):loop_wx122,3386 - import wxwx125,3461 - from appnope import nopenope130,3614 - class TimerFrame(wx.Frame):TimerFrame139,3923 - def __init__(self, func):__init__140,3955 - def on_timer(self, event):on_timer148,4254 - class IPWxApp(wx.App):IPWxApp153,4430 - def OnInit(self):OnInit154,4457 - import signalsignal166,4906 -def loop_tk(kernel):loop_tk174,5099 - from tkinter import Tk # Py 3Tk178,5179 - from tkinter import Tk # Py 3Py178,5179 - from Tkinter import Tk # Py 2Tk180,5242 - from Tkinter import Tk # Py 2Py180,5242 - class Timer(object):Timer185,5465 - def __init__(self, func):__init__186,5490 - def on_timer(self):on_timer191,5614 - def start(self):start195,5724 -def loop_gtk(kernel):loop_gtk204,5933 - from .gui.gtkembed import GTKEmbedGTKEmbed206,6020 -def loop_gtk3(kernel):loop_gtk3213,6149 - from .gui.gtk3embed import GTKEmbedGTKEmbed215,6237 -def loop_cocoa(kernel):loop_cocoa222,6366 - import matplotlibmatplotlib226,6511 - from matplotlib.backends.backend_macosx import TimerMac, showTimerMac237,6979 - from matplotlib.backends.backend_macosx import TimerMac, showshow237,6979 - def handle_int(etype, value, tb):handle_int243,7169 - def doi():doi251,7478 -def enable_gui(gui, kernel=None):enable_gui294,8961 - -ipykernel/ipykernel/gui/__init__.py,0 - -ipykernel/ipykernel/gui/gtk3embed.py,498 -import syssys14,605 -import gigi17,631 -from gi.repository import GObject, GtkGObject20,709 -from gi.repository import GObject, GtkGtk20,709 -class GTKEmbed(object):GTKEmbed26,932 - def __init__(self, kernel):__init__29,1027 - def start(self):start35,1232 - def _wire_kernel(self):_wire_kernel42,1477 - def iterate_kernel(self):iterate_kernel53,1903 - def stop(self):stop62,2217 - def _hijack_gtk(self):_hijack_gtk69,2480 - def dummy(*args, **kw):dummy83,2973 - -ipykernel/ipykernel/gui/gtkembed.py,425 -import syssys14,605 -import gobjectgobject17,631 -import gtkgtk18,646 -class GTKEmbed(object):GTKEmbed24,841 - def __init__(self, kernel):__init__27,936 - def start(self):start33,1141 - def _wire_kernel(self):_wire_kernel40,1386 - def iterate_kernel(self):iterate_kernel51,1812 - def stop(self):stop60,2126 - def _hijack_gtk(self):_hijack_gtk67,2389 - def dummy(*args, **kw):dummy81,2882 - -ipykernel/ipykernel/heartbeat.py,342 -import errnoerrno15,590 -import osos16,603 -import socketsocket17,613 -from threading import ThreadThread18,627 -import zmqzmq20,657 -from jupyter_client.localinterfaces import localhostlocalhost22,669 -class Heartbeat(Thread):Heartbeat29,890 - def __init__(self, context, addr=None):__init__32,980 - def run(self):run54,1860 - -ipykernel/ipykernel/inprocess/__init__.py,230 -from .client import InProcessKernelClientInProcessKernelClient6,73 -from .manager import InProcessKernelManagerInProcessKernelManager7,115 -from .blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient8,159 - -ipykernel/ipykernel/inprocess/blocking.py,1405 - from queue import Queue, Empty # Py 3Queue13,465 - from queue import Queue, Empty # Py 3Empty13,465 - from queue import Queue, Empty # Py 3Py13,465 - from Queue import Queue, Empty # Py 2Queue15,528 - from Queue import Queue, Empty # Py 2Empty15,528 - from Queue import Queue, Empty # Py 2Py15,528 -from IPython.utils.io import raw_printraw_print18,590 -from traitlets import TypeType19,629 -from .client import InProcessKernelClientInProcessKernelClient25,721 -class BlockingInProcessChannel(InProcessChannel):BlockingInProcessChannel27,764 - def __init__(self, *args, **kwds):__init__29,815 - def call_handlers(self, msg):call_handlers33,958 - def get_msg(self, block=True, timeout=None):get_msg36,1025 - def get_msgs(self):get_msgs44,1359 - def msg_ready(self):msg_ready54,1621 -class BlockingInProcessStdInChannel(BlockingInProcessChannel):BlockingInProcessStdInChannel59,1749 - def call_handlers(self, msg):call_handlers60,1812 -class BlockingInProcessKernelClient(InProcessKernelClient):BlockingInProcessKernelClient72,2237 - shell_channel_class = Type(BlockingInProcessChannel)shell_channel_class75,2349 - iopub_channel_class = Type(BlockingInProcessChannel)iopub_channel_class76,2406 - stdin_channel_class = Type(BlockingInProcessStdInChannel)stdin_channel_class77,2463 - def wait_for_ready(self):wait_for_ready79,2526 - -ipykernel/ipykernel/inprocess/channels.py,1001 -from jupyter_client.channelsabc import HBChannelABCHBChannelABC6,149 -from .socket import DummySocketDummySocket8,202 -class InProcessChannel(object):InProcessChannel14,412 - proxy_methods = []proxy_methods16,490 - def __init__(self, client=None):__init__18,514 - def is_alive(self):is_alive23,661 - def start(self):start26,716 - def stop(self):stop29,768 - def call_handlers(self, msg):call_handlers32,820 - def flush(self, timeout=1.0):flush39,1103 - def call_handlers_later(self, *args, **kwds):call_handlers_later43,1152 - def process_events(self):process_events52,1532 -class InProcessHBChannel(object):InProcessHBChannel62,1775 - time_to_dead = 3.0time_to_dead70,2068 - def __init__(self, client=None):__init__72,2092 - def is_alive(self):is_alive78,2268 - def start(self):start81,2323 - def stop(self):stop84,2375 - def pause(self):pause87,2427 - def unpause(self):unpause90,2476 - def is_beating(self):is_beating93,2528 - -ipykernel/ipykernel/inprocess/client.py,2068 -from ipykernel.inprocess.socket import DummySocketDummySocket15,574 -from traitlets import Type, Instance, defaultType16,625 -from traitlets import Type, Instance, defaultInstance16,625 -from traitlets import Type, Instance, defaultdefault16,625 -from jupyter_client.clientabc import KernelClientABCKernelClientABC17,671 -from jupyter_client.client import KernelClientKernelClient18,724 -class InProcessKernelClient(KernelClient):InProcessKernelClient30,1047 - shell_channel_class = Type(InProcessChannel)shell_channel_class41,1434 - iopub_channel_class = Type(InProcessChannel)iopub_channel_class42,1483 - stdin_channel_class = Type(InProcessChannel)stdin_channel_class43,1532 - hb_channel_class = Type(InProcessHBChannel)hb_channel_class44,1581 - kernel = Instance('ipykernel.inprocess.ipkernel.InProcessKernel',kernel46,1630 - allow_none=True)allow_none47,1700 - def _default_blocking_class(self):_default_blocking_class54,1965 - from .blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient55,2004 - def get_connection_info(self):get_connection_info58,2110 - def start_channels(self, *args, **kwargs):start_channels63,2266 - def shell_channel(self):shell_channel68,2431 - def iopub_channel(self):iopub_channel74,2615 - def stdin_channel(self):stdin_channel80,2799 - def hb_channel(self):hb_channel86,2983 - def execute(self, code, silent=False, store_history=True,execute94,3227 - def complete(self, code, cursor_pos=None):complete105,3741 - def inspect(self, code, cursor_pos=None, detail_level=0):inspect113,4049 - def history(self, raw=True, output=False, hist_access_type='range', **kwds):history123,4420 - def shutdown(self, restart=False):shutdown130,4751 - def kernel_info(self):kernel_info134,4896 - def comm_info(self, target_name=None):comm_info140,5090 - def input(self, string):input150,5464 - def is_complete(self, code):is_complete155,5646 - def _dispatch_to_kernel(self, msg):_dispatch_to_kernel160,5827 - -ipykernel/ipykernel/inprocess/constants.py,49 -INPROCESS_KEY = b'inprocess'INPROCESS_KEY8,274 - -ipykernel/ipykernel/inprocess/ipkernel.py,3510 -from contextlib import contextmanagercontextmanager6,130 -import logginglogging7,168 -import syssys8,183 -from IPython.core.interactiveshell import InteractiveShellABCInteractiveShellABC10,195 -from ipykernel.jsonutil import json_cleanjson_clean11,257 -from traitlets import Any, Enum, Instance, List, Type, defaultAny12,299 -from traitlets import Any, Enum, Instance, List, Type, defaultEnum12,299 -from traitlets import Any, Enum, Instance, List, Type, defaultInstance12,299 -from traitlets import Any, Enum, Instance, List, Type, defaultList12,299 -from traitlets import Any, Enum, Instance, List, Type, defaultType12,299 -from traitlets import Any, Enum, Instance, List, Type, defaultdefault12,299 -from ipykernel.ipkernel import IPythonKernelIPythonKernel13,362 -from ipykernel.zmqshell import ZMQInteractiveShellZMQInteractiveShell14,407 -from .constants import INPROCESS_KEYINPROCESS_KEY16,459 -from .socket import DummySocketDummySocket17,496 -from ..iostream import OutStream, BackgroundSocket, IOPubThreadOutStream18,528 -from ..iostream import OutStream, BackgroundSocket, IOPubThreadBackgroundSocket18,528 -from ..iostream import OutStream, BackgroundSocket, IOPubThreadIOPubThread18,528 -class InProcessKernel(IPythonKernel):InProcessKernel24,772 - frontends = List(frontends31,1048 - allow_none=True)allow_none33,1139 - gui = Enum(('tk', 'gtk', 'wx', 'qt', 'qt4', 'inline'),gui40,1454 - default_value='inline')default_value41,1513 - raw_input_str = Any()raw_input_str43,1553 - stdout = Any()stdout44,1579 - stderr = Any()stderr45,1598 - shell_class = Type(allow_none=True)shell_class51,1800 - shell_streams = List()shell_streams52,1840 - control_stream = Any()control_stream53,1867 - _underlying_iopub_socket = Instance(DummySocket, ())_underlying_iopub_socket54,1894 - iopub_thread = Instance(IOPubThread)iopub_thread55,1951 - def _default_iopub_thread(self):_default_iopub_thread58,2022 - iopub_socket = Instance(BackgroundSocket)iopub_socket63,2165 - def _default_iopub_socket(self):_default_iopub_socket66,2241 - stdin_socket = Instance(DummySocket, ())stdin_socket69,2330 - def __init__(self, **traits):__init__71,2376 - def execute_request(self, stream, ident, parent):execute_request77,2590 - def start(self):start82,2816 - def _abort_queue(self, stream):_abort_queue86,2940 - def _input_request(self, prompt, ident, parent, password=False):_input_request90,3052 - def _redirected_io(self):_redirected_io117,4092 - def _io_dispatch(self, change):_io_dispatch127,4450 - def _default_log(self):_default_log137,4823 - def _default_session(self):_default_session141,4919 - from jupyter_client.session import SessionSession142,4951 - def _default_shell_class(self):_default_shell_class146,5086 - def _default_stdout(self):_default_stdout150,5187 - def _default_stderr(self):_default_stderr154,5311 -class InProcessInteractiveShell(ZMQInteractiveShell):InProcessInteractiveShell161,5600 - kernel = Instance('ipykernel.inprocess.ipkernel.InProcessKernel',kernel163,5655 - allow_none=True)allow_none164,5725 - def enable_gui(self, gui=None):enable_gui170,5957 - from ipykernel.eventloops import enable_guienable_gui172,6046 - def enable_matplotlib(self, gui=None):enable_matplotlib179,6234 - def enable_pylab(self, gui=None, import_all=True, welcome_message=False):enable_pylab185,6469 - -ipykernel/ipykernel/inprocess/manager.py,1610 -from traitlets import Instance, DottedObjectName, defaultInstance6,150 -from traitlets import Instance, DottedObjectName, defaultDottedObjectName6,150 -from traitlets import Instance, DottedObjectName, defaultdefault6,150 -from jupyter_client.managerabc import KernelManagerABCKernelManagerABC7,208 -from jupyter_client.manager import KernelManagerKernelManager8,263 -from jupyter_client.session import SessionSession9,312 -from .constants import INPROCESS_KEYINPROCESS_KEY11,356 -class InProcessKernelManager(KernelManager):InProcessKernelManager14,395 - kernel = Instance('ipykernel.inprocess.ipkernel.InProcessKernel',kernel25,822 - allow_none=True)allow_none26,892 - client_class = DottedObjectName('ipykernel.inprocess.BlockingInProcessKernelClient')client_class28,979 - def _default_blocking_class(self):_default_blocking_class31,1100 - from .blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient32,1139 - def _default_session(self):_default_session36,1269 - def start_kernel(self, **kwds):start_kernel44,1591 - from ipykernel.inprocess.ipkernel import InProcessKernelInProcessKernel45,1627 - def shutdown_kernel(self):shutdown_kernel48,1766 - def restart_kernel(self, now=False, **kwds):restart_kernel52,1866 - def has_kernel(self):has_kernel57,1995 - def _kill_kernel(self):_kill_kernel60,2061 - def interrupt_kernel(self):interrupt_kernel63,2117 - def signal_kernel(self, signum):signal_kernel66,2223 - def is_alive(self):is_alive69,2331 - def client(self, **kwargs):client72,2395 - -ipykernel/ipykernel/inprocess/socket.py,1281 -import abcabc6,183 -import warningswarnings7,194 - from queue import Queue # Py 3Queue9,215 - from queue import Queue # Py 3Py9,215 - from Queue import Queue # Py 2Queue11,271 - from Queue import Queue # Py 2Py11,271 -import zmqzmq13,308 -from traitlets import HasTraits, Instance, IntHasTraits15,320 -from traitlets import HasTraits, Instance, IntInstance15,320 -from traitlets import HasTraits, Instance, IntInt15,320 -from ipython_genutils.py3compat import with_metaclasswith_metaclass16,367 -class SocketABC(with_metaclass(abc.ABCMeta, object)):SocketABC22,608 - def recv_multipart(self, flags=0, copy=True, track=False):recv_multipart25,691 - def send_multipart(self, msg_parts, flags=0, copy=True, track=False):send_multipart29,813 - def register(cls, other_cls):register33,943 -class DummySocket(HasTraits):DummySocket43,1382 - queue = Instance(Queue, ())queue46,1489 - message_sent = Int(0) # Should be an Eventmessage_sent47,1521 - context = Instance(zmq.Context)context48,1568 - def _context_default(self):_context_default49,1604 - def recv_multipart(self, flags=0, copy=True, track=False):recv_multipart56,1857 - def send_multipart(self, msg_parts, flags=0, copy=True, track=False):send_multipart59,1960 - -ipykernel/ipykernel/inprocess/tests/__init__.py,0 - -ipykernel/ipykernel/inprocess/tests/test_kernel.py,1092 -from __future__ import print_functionprint_function4,102 -import syssys6,141 -import unittestunittest7,152 -from ipykernel.inprocess.blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient9,169 -from ipykernel.inprocess.manager import InProcessKernelManagerInProcessKernelManager10,240 -from ipykernel.inprocess.ipkernel import InProcessKernelInProcessKernel11,303 -from ipykernel.tests.utils import assemble_outputassemble_output12,360 -from IPython.testing.decorators import skipif_not_matplotlibskipif_not_matplotlib13,410 -from IPython.utils.io import capture_outputcapture_output14,471 -from ipython_genutils import py3compatpy3compat15,515 - from io import StringIOStringIO18,573 - from StringIO import StringIOStringIO20,607 -class InProcessKernelTestCase(unittest.TestCase):InProcessKernelTestCase23,643 - def setUp(self):setUp25,694 - def test_pylab(self):test_pylab33,918 - def test_raw_input(self):test_raw_input40,1146 - def test_stdout(self):test_stdout55,1627 - def test_getpass_stream(self):test_getpass_stream70,2142 - -ipykernel/ipykernel/inprocess/tests/test_kernelmanager.py,708 -from __future__ import print_functionprint_function4,102 -import unittestunittest6,141 -from ipykernel.inprocess.blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient8,158 -from ipykernel.inprocess.manager import InProcessKernelManagerInProcessKernelManager9,229 -class InProcessKernelManagerTestCase(unittest.TestCase):InProcessKernelManagerTestCase15,464 - def setUp(self):setUp17,522 - def tearDown(self):tearDown20,587 - def test_interface(self):test_interface24,681 - def test_execute(self):test_execute54,1549 - def test_complete(self):test_complete65,1871 - def test_inspect(self):test_inspect80,2412 - def test_history(self):test_history97,2976 - -ipykernel/ipykernel/iostream.py,3037 -from __future__ import print_functionprint_function7,172 -import atexitatexit8,210 -from binascii import b2a_hexb2a_hex9,224 -import osos10,253 -import syssys11,263 -import threadingthreading12,274 -import warningswarnings13,291 -from io import StringIO, UnsupportedOperation, TextIOBaseStringIO14,307 -from io import StringIO, UnsupportedOperation, TextIOBaseUnsupportedOperation14,307 -from io import StringIO, UnsupportedOperation, TextIOBaseTextIOBase14,307 -import zmqzmq16,366 -from zmq.eventloop.ioloop import IOLoopIOLoop17,377 -from zmq.eventloop.zmqstream import ZMQStreamZMQStream18,417 -from jupyter_client.session import extract_headerextract_header20,464 -from ipython_genutils import py3compatpy3compat22,515 -from ipython_genutils.py3compat import unicode_typeunicode_type23,554 -MASTER = 0MASTER29,776 -CHILD = 1CHILD30,787 -class IOPubThread(object):IOPubThread36,970 - def __init__(self, socket, pipe=False):__init__45,1265 - def _thread_main(self):_thread_main70,2037 - def _setup_event_pipe(self):_setup_event_pipe75,2197 - def _event_pipe(self):_event_pipe88,2704 - def _handle_event(self, msg):_handle_event101,3209 - def _setup_pipe_in(self):_setup_pipe_in107,3385 - def _handle_pipe_msg(self, msg):_handle_pipe_msg129,4149 - def _setup_pipe_out(self):_setup_pipe_out138,4487 - def _is_master_process(self):_is_master_process146,4815 - def _check_mp_mode(self):_check_mp_mode149,4897 - def start(self):start156,5129 - def stop(self):stop163,5401 - def close(self):close172,5690 - def closed(self):closed177,5781 - def schedule(self, f):schedule180,5839 - def send_multipart(self, *args, **kwargs):send_multipart194,6270 - def _really_send(self, msg, *args, **kwargs):_really_send201,6552 -class BackgroundSocket(object):BackgroundSocket218,7223 - io_thread = Noneio_thread220,7328 - def __init__(self, io_thread):__init__222,7354 - def __getattr__(self, attr):__getattr__225,7429 - def __setattr__(self, attr, value):__setattr__236,7990 - def send(self, msg, *args, **kwargs):send244,8393 - def send_multipart(self, *args, **kwargs):send_multipart247,8495 -class OutStream(TextIOBase):OutStream252,8647 - flush_interval = 0.2flush_interval259,8867 - topic = Nonetopic260,8892 - encoding = 'UTF-8'encoding261,8909 - def __init__(self, session, pub_thread, name, pipe=None):__init__263,8933 - def _is_master_process(self):_is_master_process284,9901 - def set_parent(self, parent):set_parent287,9983 - def close(self):close290,10070 - def closed(self):closed294,10137 - def _schedule_flush(self):_schedule_flush297,10199 - def _schedule_in_thread():_schedule_in_thread307,10528 - def flush(self):flush311,10689 - def _flush(self):_flush325,11116 - def write(self, string):write342,11834 - def writelines(self, sequence):writelines362,12655 - def _flush_buffer(self):_flush_buffer369,12874 - def _new_buffer(self):_new_buffer382,13246 - -ipykernel/ipykernel/ipkernel.py,3470 -import getpassgetpass3,41 -import syssys4,56 -import tracebacktraceback5,67 -from IPython.core import releaserelease7,85 -from ipython_genutils.py3compat import builtin_mod, PY3, unicode_type, safe_unicodebuiltin_mod8,118 -from ipython_genutils.py3compat import builtin_mod, PY3, unicode_type, safe_unicodePY38,118 -from ipython_genutils.py3compat import builtin_mod, PY3, unicode_type, safe_unicodeunicode_type8,118 -from ipython_genutils.py3compat import builtin_mod, PY3, unicode_type, safe_unicodesafe_unicode8,118 -from IPython.utils.tokenutil import token_at_cursor, line_at_cursortoken_at_cursor9,202 -from IPython.utils.tokenutil import token_at_cursor, line_at_cursorline_at_cursor9,202 -from traitlets import Instance, Type, Any, ListInstance10,270 -from traitlets import Instance, Type, Any, ListType10,270 -from traitlets import Instance, Type, Any, ListAny10,270 -from traitlets import Instance, Type, Any, ListList10,270 -from .comm import CommManagerCommManager12,319 -from .kernelbase import Kernel as KernelBaseKernelBase13,349 -from .zmqshell import ZMQInteractiveShellZMQInteractiveShell14,394 -class IPythonKernel(KernelBase):IPythonKernel17,438 - shell = Instance('IPython.core.interactiveshell.InteractiveShellABC',shell18,471 - allow_none=True)allow_none19,545 - shell_class = Type(ZMQInteractiveShell)shell_class20,583 - user_module = Any()user_module22,628 - def _user_module_changed(self, name, old, new):_user_module_changed23,652 - user_ns = Instance(dict, args=None, allow_none=True)user_ns27,781 - def _user_ns_changed(self, name, old, new):_user_ns_changed28,838 - _sys_raw_input = Any()_sys_raw_input35,1139 - _sys_eval_input = Any()_sys_eval_input36,1166 - def __init__(self, **kwargs):__init__38,1195 - help_links = List([help_links61,2182 - implementation = 'ipython'implementation93,3066 - implementation_version = release.versionimplementation_version94,3097 - language_info = {language_info95,3142 - def banner(self):banner109,3536 - def start(self):start112,3592 - def set_parent(self, ident, parent):set_parent116,3693 - def init_metadata(self, parent):init_metadata123,3958 - def finish_metadata(self, parent, metadata, reply_content):finish_metadata137,4392 - def _forward_input(self, allow_stdin=False):_forward_input150,4895 - def _restore_input(self):_restore_input168,5543 - def execution_count(self):execution_count179,5866 - def execution_count(self, value):execution_count183,5968 - def do_execute(self, code, silent, store_history=True,do_execute188,6129 - def do_complete(self, code, cursor_pos):do_complete248,8510 - def do_inspect(self, code, cursor_pos, detail_level=0):do_inspect264,9177 - def do_history(self, hist_access_type, output, raw, session=0, start=0,do_history281,9739 - def do_shutdown(self, restart):do_shutdown302,10581 - def do_is_complete(self, code):do_is_complete306,10703 - def do_apply(self, content, bufs, msg_id, reply_metadata):do_apply313,10959 - from .serialize import serialize_object, unpack_apply_messageserialize_object314,11022 - from .serialize import serialize_object, unpack_apply_messageunpack_apply_message314,11022 - def do_clear(self):do_clear368,13080 -class Kernel(IPythonKernel):Kernel375,13247 - def __init__(self, *args, **kwargs):__init__376,13276 - import warningswarnings377,13317 - -ipykernel/ipykernel/jsonutil.py,1073 -import mathmath6,147 -import rere7,159 -import typestypes8,169 -from datetime import datetimedatetime9,182 -import numbersnumbers10,212 - from base64 import encodebytesencodebytes14,287 - from base64 import encodestring as encodebytesencodebytes17,359 -from ipython_genutils import py3compatpy3compat19,411 -from ipython_genutils.py3compat import unicode_type, iteritemsunicode_type20,450 -from ipython_genutils.py3compat import unicode_type, iteritemsiteritems20,450 -from ipython_genutils.encoding import DEFAULT_ENCODINGDEFAULT_ENCODING21,513 -next_attr_name = '__next__' if py3compat.PY3 else 'next'next_attr_name22,568 -ISO8601 = "%Y-%m-%dT%H:%M:%S.%f"ISO860129,829 -ISO8601_PAT=re.compile(r"^(\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2})(\.\d{1,6})?Z?([\+\-]\d{2}:?\d{2})?$")ISO8601_PAT30,862 -PNG = b'\x89PNG\r\n\x1a\n'PNG42,1305 -PNG64 = b'iVBORw0KG'PNG6444,1362 -JPEG = b'\xff\xd8'JPEG45,1383 -JPEG64 = b'/9'JPEG6447,1433 -PDF64 = b'JVBER'PDF6449,1478 -def encode_images(format_dict):encode_images51,1496 -def json_clean(obj):json_clean97,2816 - -ipykernel/ipykernel/kernelapp.py,4626 -from __future__ import print_functionprint_function6,147 -import atexitatexit8,186 -import osos9,200 -import syssys10,210 -import signalsignal11,221 -import tracebacktraceback12,235 -import logginglogging13,252 -from tornado import ioloopioloop15,268 -import zmqzmq16,295 -from zmq.eventloop import ioloop as zmq_ioloopzmq_ioloop17,306 -from zmq.eventloop.zmqstream import ZMQStreamZMQStream18,353 -from IPython.core.profiledir import ProfileDirProfileDir23,514 -from IPython.utils import ioio27,651 -from ipython_genutils.path import filefind, ensure_dir_existsfilefind28,680 -from ipython_genutils.path import filefind, ensure_dir_existsensure_dir_exists28,680 -from jupyter_core.paths import jupyter_runtime_dirjupyter_runtime_dir33,903 -from jupyter_client import write_connection_filewrite_connection_file34,954 -from jupyter_client.connect import ConnectionFileMixinConnectionFileMixin35,1003 -from .iostream import IOPubThreadIOPubThread38,1075 -from .heartbeat import HeartbeatHeartbeat39,1109 -from .ipkernel import IPythonKernelIPythonKernel40,1142 -from .parentpoller import ParentPollerUnix, ParentPollerWindowsParentPollerUnix41,1178 -from .parentpoller import ParentPollerUnix, ParentPollerWindowsParentPollerWindows41,1178 -from .zmqshell import ZMQInteractiveShellZMQInteractiveShell45,1326 -kernel_aliases = dict(base_aliases)kernel_aliases51,1548 -kernel_flags = dict(base_flags)kernel_flags63,1922 - ConnectionFileMixin):IPKernelApp100,3226 - name='ipython-kernel'name101,3256 - aliases = Dict(kernel_aliases)aliases102,3282 - flags = Dict(kernel_flags)flags103,3317 - classes = [IPythonKernel, ZMQInteractiveShell, ProfileDir, Session]classes104,3348 - kernel_class = Type('ipykernel.ipkernel.IPythonKernel',kernel_class106,3463 - klass='ipykernel.kernelbase.Kernel',klass107,3523 - kernel = Any()kernel113,3782 - poller = Any() # don't restrict this even though current pollers are all Threadspoller114,3801 - heartbeat = Instance(Heartbeat, allow_none=True)heartbeat115,3886 - ports = Dict()ports116,3939 - subcommands = {subcommands118,3959 - connection_dir = Unicode()connection_dir126,4146 - def _default_connection_dir(self):_default_connection_dir129,4209 - def abs_connection_file(self):abs_connection_file133,4300 - no_stdout = Bool(False, help="redirect stdout to the null device").tag(config=True)no_stdout140,4560 - no_stderr = Bool(False, help="redirect stderr to the null device").tag(config=True)no_stderr141,4648 - outstream_class = DottedObjectName('ipykernel.iostream.OutStream',outstream_class142,4736 - displayhook_class = DottedObjectName('ipykernel.displayhook.ZMQDisplayHook',displayhook_class144,4883 - parent_handle = Integer(int(os.environ.get('JPY_PARENT_PID') or 0),parent_handle148,5057 - interrupt = Integer(int(os.environ.get('JPY_INTERRUPT_EVENT') or 0),interrupt152,5323 - def init_crash_handler(self):init_crash_handler157,5524 - def excepthook(self, etype, evalue, tb):excepthook160,5600 - def init_poller(self):init_poller164,5791 - def _bind_socket(self, s, port):_bind_socket174,6266 - def write_connection_file(self):write_connection_file193,6942 - def cleanup_connection_file(self):cleanup_connection_file201,7373 - def init_connection_file(self):init_connection_file211,7638 - def init_sockets(self):init_sockets229,8465 - def init_iopub(self, context):init_iopub253,9567 - def init_heartbeat(self):init_heartbeat264,10127 - def log_connection_info(self):log_connection_info274,10615 - def init_blackhole(self):init_blackhole304,11858 - def init_io(self):init_io313,12216 - def patch_io(self):patch_io326,12845 - import faulthandlerfaulthandler329,12962 - def enable(file=sys.__stderr__, all_threads=True, **kwargs):enable339,13450 - def register(signum, file=sys.__stderr__, all_threads=True, chain=False, **kwargs):register346,13767 - def init_signal(self):init_signal351,14082 - def init_kernel(self):init_kernel354,14163 - def init_gui_pylab(self):init_gui_pylab378,15186 - def print_tb(etype, evalue, stb):print_tb398,16126 - def init_shell(self):init_shell407,16524 - def init_extensions(self):init_extensions412,16681 - def configure_tornado_logger(self):configure_tornado_logger424,17220 - def initialize(self, argv=None):initialize439,17849 - def start(self):start470,19019 -launch_new_instance = IPKernelApp.launch_instancelaunch_new_instance481,19321 -def main():main483,19372 - -ipykernel/ipykernel/kernelbase.py,6132 -from __future__ import print_functionprint_function6,167 -import syssys8,206 -import timetime9,217 -import logginglogging10,229 -import uuiduuid11,244 -from datetime import datetimedatetime13,257 - from jupyter_client.session import utcnow as nownow16,336 - now = datetime.nownow19,451 -from signal import signal, default_int_handler, SIGINTsignal21,475 -from signal import signal, default_int_handler, SIGINTdefault_int_handler21,475 -from signal import signal, default_int_handler, SIGINTSIGINT21,475 -import zmqzmq23,531 -from tornado import ioloopioloop24,542 -from zmq.eventloop.zmqstream import ZMQStreamZMQStream25,569 -from traitlets.config.configurable import SingletonConfigurableSingletonConfigurable27,616 -from IPython.core.error import StdinNotImplementedErrorStdinNotImplementedError28,680 -from ipython_genutils import py3compatpy3compat29,736 -from ipython_genutils.py3compat import unicode_type, string_typesunicode_type30,775 -from ipython_genutils.py3compat import unicode_type, string_typesstring_types30,775 -from ipykernel.jsonutil import json_cleanjson_clean31,841 -from jupyter_client.session import SessionSession36,994 -from ._version import kernel_protocol_versionkernel_protocol_version38,1038 -class Kernel(SingletonConfigurable):Kernel40,1085 - eventloop = Any(None)eventloop47,1348 - def _update_eventloop(self, change):_update_eventloop50,1401 - session = Instance(Session, allow_none=True)session55,1584 - profile_dir = Instance('IPython.core.profiledir.ProfileDir', allow_none=True)profile_dir56,1633 - shell_streams = List()shell_streams57,1715 - control_stream = Instance(ZMQStream, allow_none=True)control_stream58,1742 - iopub_socket = Any()iopub_socket59,1800 - iopub_thread = Any()iopub_thread60,1825 - stdin_socket = Any()stdin_socket61,1850 - log = Instance(logging.Logger, allow_none=True)log62,1875 - int_id = Integer(-1)int_id65,1946 - ident = Unicode()ident66,1971 - def _default_ident(self):_default_ident69,2016 - language_info = {}language_info74,2180 - help_links = List()help_links77,2252 - _darwin_app_nap = Bool(True,_darwin_app_nap81,2302 - _allow_stdin = Bool(False)_allow_stdin89,2528 - _parent_header = Dict()_parent_header90,2559 - _parent_ident = Any(b'')_parent_ident91,2587 - _execute_sleep = Float(0.0005).tag(config=True)_execute_sleep99,3083 - _poll_interval = Float(0.05).tag(config=True)_poll_interval104,3284 - _shutdown_message = None_shutdown_message111,3668 - _recorded_ports = Dict()_recorded_ports115,3828 - aborted = Set()aborted118,3887 - execution_count = 0execution_count122,4028 - msg_types = [msg_types124,4053 - control_msg_types = msg_types + ['clear_request', 'abort_request']control_msg_types134,4397 - def __init__(self, **kwargs):__init__136,4469 - def dispatch_control(self, msg):dispatch_control148,4898 - def should_handle(self, stream, msg, idents):should_handle179,5937 - def dispatch_shell(self, stream, msg):dispatch_shell198,6741 - def pre_handler_hook(self):pre_handler_hook245,8415 - def post_handler_hook(self):post_handler_hook250,8638 - def enter_eventloop(self):enter_eventloop254,8782 - def start(self):start276,9651 - def make_dispatcher(stream):make_dispatcher281,9827 - def dispatcher(msg):dispatcher282,9864 - def do_one_iteration(self):do_one_iteration292,10148 - def record_ports(self, ports):record_ports301,10467 - def _publish_execute_input(self, code, parent, execution_count):_publish_execute_input313,10951 - def _publish_status(self, status, parent=None):_publish_status321,11314 - def set_parent(self, ident, parent):set_parent330,11699 - def send_response(self, stream, msg_or_type, content=None, ident=None,send_response342,12096 - def init_metadata(self, parent):init_metadata355,12691 - def finish_metadata(self, parent, metadata, reply_content):finish_metadata366,12968 - def execute_request(self, stream, ident, parent):execute_request373,13160 - def do_execute(self, code, silent, store_history=True,do_execute423,15119 - def complete_request(self, stream, ident, parent):complete_request429,15351 - def do_complete(self, code, cursor_pos):do_complete440,15790 - def inspect_request(self, stream, ident, parent):inspect_request449,16089 - def do_inspect(self, code, cursor_pos, detail_level=0):do_inspect460,16606 - def history_request(self, stream, ident, parent):history_request465,16813 - def do_history(self, hist_access_type, output, raw, session=None, start=None,do_history475,17160 - def connect_request(self, stream, ident, parent):connect_request481,17422 - def kernel_info(self):kernel_info492,17805 - def kernel_info_request(self, stream, ident, parent):kernel_info_request502,18162 - def comm_info_request(self, stream, ident, parent):comm_info_request509,18448 - def shutdown_request(self, stream, ident, parent):shutdown_request527,19150 - def do_shutdown(self, restart):do_shutdown540,19736 - def is_complete_request(self, stream, ident, parent):is_complete_request546,19933 - def do_is_complete(self, code):do_is_complete556,20340 - def apply_request(self, stream, ident, parent):apply_request566,20697 - def do_apply(self, content, bufs, msg_id, reply_metadata):do_apply589,21492 - def abort_request(self, stream, ident, parent):abort_request597,21814 - def clear_request(self, stream, idents, parent):clear_request613,22471 - def do_clear(self):do_clear620,22812 - def _topic(self, topic):_topic628,23085 - def _abort_queues(self):_abort_queues634,23265 - def _abort_queue(self, stream):_abort_queue639,23402 - def _no_raw_input(self):_no_raw_input664,24428 - def getpass(self, prompt='', stream=None):getpass670,24699 - import warningswarnings682,25114 - def raw_input(self, prompt=''):raw_input691,25449 - def _input_request(self, prompt, ident, parent, password=False):_input_request708,25978 - def _at_shutdown(self):_at_shutdown748,27379 - -ipykernel/ipykernel/kernelspec.py,1208 -from __future__ import print_functionprint_function6,145 -import errnoerrno8,184 -import jsonjson9,197 -import osos10,209 -import shutilshutil11,219 -import syssys12,233 -import tempfiletempfile13,244 -from jupyter_client.kernelspec import KernelSpecManagerKernelSpecManager15,261 -pjoin = os.path.joinpjoin17,318 -KERNEL_NAME = 'python%i' % sys.version_info[0]KERNEL_NAME19,340 -RESOURCES = os.path.relpath(pjoin(os.path.dirname(__file__), 'resources'))RESOURCES22,419 -def make_ipkernel_cmd(mod='ipykernel_launcher', executable=None, extra_arguments=None, **kw):make_ipkernel_cmd25,496 -def get_kernel_dict(extra_arguments=None):get_kernel_dict53,1335 -def write_kernel_spec(path=None, overrides=None, extra_arguments=None):write_kernel_spec62,1597 -def install(kernel_spec_manager=None, user=False, kernel_name=KERNEL_NAME, display_name=None,install86,2326 -from traitlets.config import ApplicationApplication140,4340 -class InstallIPythonKernelSpecApp(Application):InstallIPythonKernelSpecApp143,4383 - name = 'ipython-kernel-install'name145,4469 - def initialize(self, argv=None):initialize147,4506 - def start(self):start152,4626 - import argparseargparse153,4647 - -ipykernel/ipykernel/log.py,592 -from logging import INFO, DEBUG, WARN, ERROR, FATALINFO1,0 -from logging import INFO, DEBUG, WARN, ERROR, FATALDEBUG1,0 -from logging import INFO, DEBUG, WARN, ERROR, FATALWARN1,0 -from logging import INFO, DEBUG, WARN, ERROR, FATALERROR1,0 -from logging import INFO, DEBUG, WARN, ERROR, FATALFATAL1,0 -from zmq.log.handlers import PUBHandlerPUBHandler3,53 -import warningswarnings5,94 -class EnginePUBHandler(PUBHandler):EnginePUBHandler8,216 - engine=Noneengine10,312 - def __init__(self, engine, *args, **kwargs):__init__12,329 - def root_topic(self):root_topic17,472 - -ipykernel/ipykernel/parentpoller.py,1203 - import ctypesctypes5,107 - ctypes = Nonectypes7,133 -import osos8,151 -import platformplatform9,161 -import signalsignal10,177 -import timetime11,191 - from _thread import interrupt_main # Py 3interrupt_main13,208 - from _thread import interrupt_main # Py 3Py13,208 - from thread import interrupt_main # Py 2interrupt_main15,275 - from thread import interrupt_main # Py 2Py15,275 -from threading import ThreadThread16,321 -from traitlets.log import get_loggerget_logger18,351 -import warningswarnings20,389 -class ParentPollerUnix(Thread):ParentPollerUnix22,406 - def __init__(self):__init__27,571 - def run(self):run31,672 - from errno import EINTREINTR33,769 -class ParentPollerWindows(Thread):ParentPollerWindows46,1153 - def __init__(self, interrupt_handle=None, parent_handle=None):__init__52,1399 - def run(self):run74,2244 - from _winapi import WAIT_OBJECT_0, INFINITEWAIT_OBJECT_078,2346 - from _winapi import WAIT_OBJECT_0, INFINITEINFINITE78,2346 - from _subprocess import WAIT_OBJECT_0, INFINITEWAIT_OBJECT_080,2430 - from _subprocess import WAIT_OBJECT_0, INFINITEINFINITE80,2430 - -ipykernel/ipykernel/pickleutil.py,4001 -import warningswarnings7,190 -import copycopy10,309 -import syssys11,321 -from types import FunctionTypeFunctionType12,332 - import cPickle as picklepickle15,369 - import picklepickle17,418 -from ipython_genutils import py3compatpy3compat19,437 -from ipython_genutils.py3compat import string_types, iteritems, buffer_to_bytes, buffer_to_bytes_py2string_types21,530 -from ipython_genutils.py3compat import string_types, iteritems, buffer_to_bytes, buffer_to_bytes_py2iteritems21,530 -from ipython_genutils.py3compat import string_types, iteritems, buffer_to_bytes, buffer_to_bytes_py2buffer_to_bytes21,530 -from ipython_genutils.py3compat import string_types, iteritems, buffer_to_bytes, buffer_to_bytes_py2buffer_to_bytes_py221,530 - from ipyparallel.serialize import codeutilcodeutil26,720 - from ipykernel import codeutilcodeutil29,826 -from traitlets.log import get_loggerget_logger31,862 - buffer = memoryviewbuffer34,918 - class_type = typeclass_type35,942 - from types import ClassTypeClassType37,970 - class_type = (type, ClassType)class_type38,1002 - PICKLE_PROTOCOL = pickle.DEFAULT_PROTOCOLPICKLE_PROTOCOL41,1043 - PICKLE_PROTOCOL = pickle.HIGHEST_PROTOCOLPICKLE_PROTOCOL43,1112 -def _get_cell_type(a=None):_get_cell_type45,1159 - def inner():inner49,1283 -cell_type = _get_cell_type()cell_type53,1367 -def interactive(f):interactive60,1573 -def use_dill():use_dill78,2196 - import dilldill84,2383 - from ipykernel import serializeserialize93,2549 -def use_cloudpickle():use_cloudpickle102,2776 - import cloudpicklecloudpickle107,2934 - from ipykernel import serializeserialize113,3015 -class CannedObject(object):CannedObject128,3431 - def __init__(self, obj, keys=[], hook=None):__init__129,3459 - def get_object(self, g=None):get_object154,4236 -class Reference(CannedObject):Reference167,4558 - def __init__(self, name):__init__169,4647 - def __repr__(self):__repr__175,4829 - def get_object(self, g=None):get_object178,4897 -class CannedCell(CannedObject):CannedCell185,5017 - def __init__(self, cell):__init__187,5078 - def get_object(self, g=None):get_object190,5166 - def inner():inner192,5253 -class CannedFunction(CannedObject):CannedFunction197,5356 - def __init__(self, f):__init__199,5393 - def _check_type(self, obj):_check_type217,5922 - def get_object(self, g=None):get_object220,6023 -class CannedClass(CannedObject):CannedClass239,6658 - def __init__(self, cls):__init__241,6692 - def _check_type(self, obj):_check_type257,7183 - def get_object(self, g=None):get_object260,7279 -class CannedArray(CannedObject):CannedArray264,7449 - def __init__(self, obj):__init__265,7482 - from numpy import ascontiguousarrayascontiguousarray266,7511 - def get_object(self, g=None):get_object285,8263 - from numpy import frombufferfrombuffer286,8297 -class CannedBytes(CannedObject):CannedBytes299,8800 - wrap = staticmethod(buffer_to_bytes)wrap300,8833 - def __init__(self, obj):__init__302,8875 - def get_object(self, g=None):get_object305,8938 -class CannedBuffer(CannedBytes):CannedBuffer309,9035 - wrap = bufferwrap310,9068 -class CannedMemoryView(CannedBytes):CannedMemoryView312,9087 - wrap = memoryviewwrap313,9124 -def _import_mapping(mapping, original=None):_import_mapping319,9322 -def istype(obj, check):istype337,9958 -def can(obj):can350,10261 -def can_class(obj):can_class370,10768 -def can_dict(obj):can_dict376,10919 -sequence_types = (list, tuple, set)sequence_types386,11140 -def can_sequence(obj):can_sequence388,11177 -def uncan(obj, g=None):uncan396,11369 -def uncan_dict(obj, g=None):uncan_dict415,11889 -def uncan_sequence(obj, g=None):uncan_sequence424,12087 -can_map = {can_map437,12505 -uncan_map = {uncan_map448,12770 -_original_can_map = can_map.copy()_original_can_map454,12893 -_original_uncan_map = uncan_map.copy()_original_uncan_map455,12928 - -ipykernel/ipykernel/pylab/__init__.py,0 - -ipykernel/ipykernel/pylab/backend_inline.py,1297 -from __future__ import print_functionprint_function6,170 -import matplotlibmatplotlib8,209 -from matplotlib.backends.backend_agg import new_figure_manager, FigureCanvasAgg # analysis: ignorenew_figure_manager9,227 -from matplotlib.backends.backend_agg import new_figure_manager, FigureCanvasAgg # analysis: ignoreFigureCanvasAgg9,227 -from matplotlib.backends.backend_agg import new_figure_manager, FigureCanvasAgg # analysis: ignoreanalysis9,227 -from matplotlib.backends.backend_agg import new_figure_manager, FigureCanvasAgg # analysis: ignoreignore9,227 -from matplotlib._pylab_helpers import GcfGcf10,326 -from IPython.core.getipython import get_ipythonget_ipython12,369 -from IPython.core.display import displaydisplay13,417 -from .config import InlineBackendInlineBackend15,459 -def show(close=None, block=None):show18,495 -def draw_if_interactive():draw_if_interactive51,1638 -def flush_figures():flush_figures96,3386 -FigureCanvas = FigureCanvasAggFigureCanvas145,5157 -def _enable_matplotlib_integration():_enable_matplotlib_integration147,5189 - from matplotlib import get_backendget_backend149,5327 - from IPython.core.pylabtools import configure_inline_supportconfigure_inline_support153,5468 - def configure_once(*args):configure_once158,5687 - -ipykernel/ipykernel/pylab/config.py,1106 -from traitlets.config.configurable import SingletonConfigurableSingletonConfigurable16,638 -def pil_available():pil_available25,981 - from PIL import ImageImage29,1069 -class InlineBackendConfig(SingletonConfigurable):InlineBackendConfig36,1219 -class InlineBackend(InlineBackendConfig):InlineBackend39,1279 - rc = Dict({'figure.figsize': (6.0,4.0),rc45,1538 - figure_formats = Set({'png'},figure_formats61,2196 - def _update_figure_formatters(self):_update_figure_formatters65,2386 - from IPython.core.pylabtools import select_figure_formatsselect_figure_formats67,2462 - def _figure_formats_changed(self, name, old, new):_figure_formats_changed70,2628 - def _figure_format_changed(self, name, old, new):_figure_format_changed79,3044 - print_figure_kwargs = Dict({'bbox_inches' : 'tight'},print_figure_kwargs83,3155 - _print_figure_kwargs_changed = _update_figure_formatters_print_figure_kwargs_changed89,3399 - close_figures = Bool(True,close_figures91,3461 - shell = Instance('IPython.core.interactiveshell.InteractiveShellABC',shell108,4372 - -ipykernel/ipykernel/serialize.py,1068 -import warningswarnings6,152 - import cPicklecPickle10,284 - pickle = cPicklepickle11,303 - cPickle = NonecPickle13,332 - import picklepickle14,351 -from itertools import chainchain16,370 -from ipython_genutils.py3compat import PY3, buffer_to_bytes_py2PY318,399 -from ipython_genutils.py3compat import PY3, buffer_to_bytes_py2buffer_to_bytes_py218,399 -from jupyter_client.session import MAX_ITEMS, MAX_BYTESMAX_ITEMS23,605 -from jupyter_client.session import MAX_ITEMS, MAX_BYTESMAX_BYTES23,605 - buffer = memoryviewbuffer27,671 -def _extract_buffers(obj, threshold=MAX_BYTES):_extract_buffers34,882 -def _restore_buffers(obj, buffers):_restore_buffers51,1623 -def serialize_object(obj, buffer_threshold=MAX_BYTES, item_threshold=MAX_ITEMS):serialize_object58,1875 -def deserialize_object(buffers, g=None):deserialize_object96,3120 -def pack_apply_message(f, args, kwargs, buffer_threshold=MAX_BYTES, item_threshold=MAX_ITEMS):pack_apply_message130,4057 -def unpack_apply_message(bufs, g=None, copy=True):unpack_apply_message162,5206 - -ipykernel/ipykernel/tests/__init__.py,492 -import osos4,102 -import shutilshutil5,112 -import syssys6,126 -import tempfiletempfile7,137 - from unittest.mock import patchpatch10,159 - from mock import patchpatch12,215 -from jupyter_core import paths as jpathsjpaths14,243 -from IPython import paths as ipathsipaths15,284 -from ipykernel.kernelspec import installinstall16,320 -pjoin = os.path.joinpjoin18,362 -tmp = Nonetmp20,384 -patchers = []patchers21,395 -def setup():setup23,410 -def teardown():teardown41,838 - -ipykernel/ipykernel/tests/test_connect.py,873 -import jsonjson6,147 -import osos7,159 -import nose.tools as ntnose9,170 -import nose.tools as ntnt9,170 -from traitlets.config import ConfigConfig11,195 -from ipython_genutils.tempdir import TemporaryDirectory, TemporaryWorkingDirectoryTemporaryDirectory12,231 -from ipython_genutils.tempdir import TemporaryDirectory, TemporaryWorkingDirectoryTemporaryWorkingDirectory12,231 -from ipython_genutils.py3compat import str_to_bytesstr_to_bytes13,314 -from ipykernel import connectconnect14,366 -from ipykernel.kernelapp import IPKernelAppIPKernelApp15,396 -sample_info = dict(ip='1.2.3.4', transport='ipc',sample_info18,442 -class DummyKernelApp(IPKernelApp):DummyKernelApp24,629 - def initialize(self, argv=[]):initialize25,664 -def test_get_connection_file():test_get_connection_file30,769 -def test_get_connection_info():test_get_connection_info49,1426 - -ipykernel/ipykernel/tests/test_embed_kernel.py,978 -import osos6,137 -import shutilshutil7,147 -import syssys8,161 -import tempfiletempfile9,172 -import timetime10,188 -from contextlib import contextmanagercontextmanager12,201 -from subprocess import Popen, PIPEPopen13,239 -from subprocess import Popen, PIPEPIPE13,239 -import nose.tools as ntnose15,275 -import nose.tools as ntnt15,275 -from jupyter_client import BlockingKernelClientBlockingKernelClient17,300 -from jupyter_core import pathspaths18,348 -from IPython.paths import get_ipython_dirget_ipython_dir19,379 -from ipython_genutils import py3compatpy3compat20,421 -from ipython_genutils.py3compat import unicode_typeunicode_type21,460 -SETUP_TIMEOUT = 60SETUP_TIMEOUT24,514 -TIMEOUT = 15TIMEOUT25,533 -def setup_kernel(cmd):setup_kernel29,564 -def test_embed_kernel_basic():test_embed_kernel_basic69,1789 -def test_embed_kernel_namespace():test_embed_kernel_namespace101,2791 -def test_embed_kernel_reentrant():test_embed_kernel_reentrant136,3894 - -ipykernel/ipykernel/tests/test_io.py,344 -import ioio3,39 -import zmqzmq5,50 -from jupyter_client.session import SessionSession7,62 -from ipykernel.iostream import IOPubThread, OutStreamIOPubThread8,105 -from ipykernel.iostream import IOPubThread, OutStreamOutStream8,105 -import nose.tools as ntnose10,160 -import nose.tools as ntnt10,160 -def test_io_api():test_io_api12,185 - -ipykernel/ipykernel/tests/test_jsonutil.py,1153 -import jsonjson7,160 -import syssys8,172 - from base64 import decodestring as decodebytesdecodebytes11,212 - from base64 import decodebytesdecodebytes13,269 -from datetime import datetimedatetime15,305 -import numbersnumbers16,335 -import nose.tools as ntnose18,351 -import nose.tools as ntnt18,351 -from .. import jsonutiljsonutil20,376 -from ..jsonutil import json_clean, encode_imagesjson_clean21,400 -from ..jsonutil import json_clean, encode_imagesencode_images21,400 -from ipython_genutils.py3compat import unicode_to_str, str_to_bytes, iteritemsunicode_to_str22,449 -from ipython_genutils.py3compat import unicode_to_str, str_to_bytes, iteritemsstr_to_bytes22,449 -from ipython_genutils.py3compat import unicode_to_str, str_to_bytes, iteritemsiteritems22,449 -class MyInt(object):MyInt24,529 - def __int__(self):__int__25,550 -class MyFloat(object):MyFloat29,626 - def __float__(self):__float__30,649 -def test():test35,727 -def test_encode_images():test_encode_images68,1791 -def test_lambda():test_lambda97,2899 -def test_exception():test_exception102,2990 -def test_unicode_dict():test_unicode_dict110,3203 - -ipykernel/ipykernel/tests/test_kernel.py,2679 -import ioio7,149 -import os.pathos8,159 -import os.pathpath8,159 -import syssys9,174 -import timetime10,185 -import nose.tools as ntnose12,198 -import nose.tools as ntnt12,198 -from IPython.testing import decorators as dec, tools as ttdec14,223 -from IPython.testing import decorators as dec, tools as tttt14,223 -from ipython_genutils import py3compatpy3compat15,282 -from IPython.paths import locate_profilelocate_profile16,321 -from ipython_genutils.tempdir import TemporaryDirectoryTemporaryDirectory17,362 -def _check_master(kc, expected=True, stream="stdout"):_check_master24,536 - execute(kc=kc, code="import sys")sys25,591 -def _check_status(content):_check_status32,851 -def test_simple_print():test_simple_print40,1052 -def test_sys_path():test_sys_path51,1407 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")sys54,1515 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")print54,1515 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")repr54,1515 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")sys54,1515 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")path54,1515 -def test_sys_path_profile_dir():test_sys_path_profile_dir58,1702 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")sys62,1894 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")print62,1894 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")repr62,1894 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")sys62,1894 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")path62,1894 -def test_subprocess_print():test_subprocess_print67,2155 -def test_subprocess_noprint():test_subprocess_noprint95,3123 -def test_subprocess_error():test_subprocess_error118,3889 -def test_raw_input():test_raw_input140,4524 -def test_eval_input():test_eval_input162,5351 -def test_save_history():test_save_history182,6124 -def test_smoke_faulthandler():test_smoke_faulthandler200,6779 -def test_help_output():test_help_output214,7288 -def test_is_complete():test_is_complete219,7394 -def test_complete():test_complete238,8135 - cell = 'import IPython\nb = a.'IPython242,8240 - cell = 'import IPython\nb = a.'nb242,8240 - cell = 'import IPython\nb = a.'a242,8240 -def test_matplotlib_inline_on_import():test_matplotlib_inline_on_import256,8745 -def test_shutdown():test_shutdown271,9269 - -ipykernel/ipykernel/tests/test_kernelspec.py,1257 -import jsonjson4,102 -import ioio5,114 -import osos6,124 -import shutilshutil7,134 -import syssys8,148 -import tempfiletempfile9,159 - from unittest import mockmock12,185 - import mock # py2mock14,235 - import mock # py2py214,235 -from jupyter_core.paths import jupyter_data_dirjupyter_data_dir16,258 -import nose.tools as ntnose28,490 -import nose.tools as ntnt28,490 -pjoin = os.path.joinpjoin30,515 -def test_make_ipkernel_cmd():test_make_ipkernel_cmd33,538 -def assert_kernel_dict(d):assert_kernel_dict44,744 -def test_get_kernel_dict():test_get_kernel_dict50,944 -def assert_kernel_dict_with_profile(d):assert_kernel_dict_with_profile55,1026 -def test_get_kernel_dict_with_profile():test_get_kernel_dict_with_profile62,1285 -def assert_is_spec(path):assert_is_spec67,1414 -def test_write_kernel_spec():test_write_kernel_spec77,1708 -def test_write_kernel_spec_path():test_write_kernel_spec_path83,1820 -def test_install_kernelspec():test_install_kernelspec91,2032 -def test_install_user():test_install_user102,2331 -def test_install():test_install112,2582 -def test_install_profile():test_install_profile122,2857 -def test_install_display_name_overrides_profile():test_install_display_name_overrides_profile136,3337 - -ipykernel/ipykernel/tests/test_message_spec.py,6736 -import rere6,164 -import syssys7,174 -from distutils.version import LooseVersion as VV8,185 - from queue import Empty # Py 3Empty10,238 - from queue import Empty # Py 3Py10,238 - from Queue import Empty # Py 2Empty12,294 - from Queue import Empty # Py 2Py12,294 -import nose.tools as ntnose14,331 -import nose.tools as ntnt14,331 -from nose.plugins.skip import SkipTestSkipTest15,355 -from ipython_genutils.py3compat import string_types, iteritemsstring_types20,489 -from ipython_genutils.py3compat import string_types, iteritemsiteritems20,489 -from .utils import TIMEOUT, start_global_kernel, flush_channels, executeTIMEOUT22,553 -from .utils import TIMEOUT, start_global_kernel, flush_channels, executestart_global_kernel22,553 -from .utils import TIMEOUT, start_global_kernel, flush_channels, executeflush_channels22,553 -from .utils import TIMEOUT, start_global_kernel, flush_channels, executeexecute22,553 -KC = NoneKC27,795 -def setup():setup29,806 -class Reference(HasTraits):Reference37,1050 - def check(self, d):check49,1393 -class Version(Unicode):Version62,1794 - def __init__(self, *args, **kwargs):__init__63,1818 - def validate(self, obj, value):validate69,2044 -class RMessage(Reference):RMessage76,2326 - msg_id = Unicode()msg_id77,2353 - msg_type = Unicode()msg_type78,2376 - header = Dict()header79,2401 - parent_header = Dict()parent_header80,2421 - content = Dict()content81,2448 - def check(self, d):check83,2470 -class RHeader(Reference):RHeader89,2650 - msg_id = Unicode()msg_id90,2676 - msg_type = Unicode()msg_type91,2699 - session = Unicode()session92,2724 - username = Unicode()username93,2748 - version = Version(min='5.0')version94,2773 -mime_pat = re.compile(r'^[\w\-\+\.]+/[\w\-\+\.]+$')mime_pat96,2807 -class MimeBundle(Reference):MimeBundle98,2860 - metadata = Dict()metadata99,2889 - data = Dict()data100,2911 - def _data_changed(self, name, old, new):_data_changed101,2929 -class Reply(Reference):Reply108,3115 - status = Enum((u'ok', u'error'), default_value=u'ok')status109,3139 -class ExecuteReply(Reply):ExecuteReply112,3199 - execution_count = Integer()execution_count113,3226 - def check(self, d):check115,3259 -class ExecuteReplyOkay(Reply):ExecuteReplyOkay123,3468 - status = Enum(('ok',))status124,3499 - user_expressions = Dict()user_expressions125,3526 -class ExecuteReplyError(Reply):ExecuteReplyError128,3558 - ename = Unicode()ename129,3590 - evalue = Unicode()evalue130,3612 - traceback = List(Unicode())traceback131,3635 -class InspectReply(Reply, MimeBundle):InspectReply134,3669 - found = Bool()found135,3708 -class ArgSpec(Reference):ArgSpec138,3729 - args = List(Unicode())args139,3755 - varargs = Unicode()varargs140,3782 - varkw = Unicode()varkw141,3806 - defaults = List()defaults142,3828 -class Status(Reference):Status145,3852 - execution_state = Enum((u'busy', u'idle', u'starting'), default_value=u'busy')execution_state146,3877 -class CompleteReply(Reply):CompleteReply149,3962 - matches = List(Unicode())matches150,3990 - cursor_start = Integer()cursor_start151,4020 - cursor_end = Integer()cursor_end152,4049 - status = Unicode()status153,4076 -class LanguageInfo(Reference):LanguageInfo156,4101 - name = Unicode('python')name157,4132 - version = Unicode(sys.version.split()[0])version158,4161 -class KernelInfoReply(Reply):KernelInfoReply161,4209 - protocol_version = Version(min='5.0')protocol_version162,4239 - implementation = Unicode('ipython')implementation163,4281 - implementation_version = Version(min='2.1')implementation_version164,4321 - language_info = Dict()language_info165,4369 - banner = Unicode()banner166,4396 - def check(self, d):check168,4420 -class ConnectReply(Reference):ConnectReply173,4528 - shell_port = Integer()shell_port174,4559 - control_port = Integer()control_port175,4586 - stdin_port = Integer()stdin_port176,4615 - iopub_port = Integer()iopub_port177,4642 - hb_port = Integer()hb_port178,4669 -class CommInfoReply(Reply):CommInfoReply181,4695 - comms = Dict()comms182,4723 -class IsCompleteReply(Reference):IsCompleteReply185,4744 - status = Enum((u'complete', u'incomplete', u'invalid', u'unknown'), default_value=u'complete')status186,4778 - def check(self, d):check188,4878 -class IsCompleteReplyIncomplete(Reference):IsCompleteReplyIncomplete194,5026 - indent = Unicode()indent195,5070 -class ExecuteInput(Reference):ExecuteInput200,5113 - code = Unicode()code201,5144 - execution_count = Integer()execution_count202,5165 -class Error(ExecuteReplyError):Error205,5199 - status = None # no status fieldstatus207,5297 -class Stream(Reference):Stream210,5335 - name = Enum((u'stdout', u'stderr'), default_value=u'stdout')name211,5360 - text = Unicode()text212,5425 -class DisplayData(MimeBundle):DisplayData215,5448 -class ExecuteResult(MimeBundle):ExecuteResult219,5490 - execution_count = Integer()execution_count220,5523 -class HistoryReply(Reply):HistoryReply223,5557 - history = List(List())history224,5584 -references = {references227,5613 -def validate_message(msg, msg_type=None, parent=None):validate_message249,6228 -def test_execute():test_execute274,6972 -def test_execute_silent():test_execute_silent282,7151 -def test_execute_error():test_execute_error306,7942 -def test_execute_inc():test_execute_inc317,8235 -def test_execute_stop_on_error():test_execute_stop_on_error330,8558 -def test_user_expressions():test_user_expressions355,9362 -def test_user_expressions_fail():test_user_expressions_fail367,9686 -def test_oinfo():test_oinfo377,9999 -def test_oinfo_found():test_oinfo_found385,10169 -def test_oinfo_detail():test_oinfo_detail400,10555 -def test_oinfo_not_found():test_oinfo_not_found415,11004 -def test_complete():test_complete425,11255 -def test_kernel_info_request():test_kernel_info_request438,11605 -def test_connect_request():test_connect_request446,11794 -def test_comm_info_request():test_comm_info_request457,12085 -def test_single_payload():test_single_payload466,12329 -def test_is_complete():test_is_complete474,12640 -def test_history_range():test_history_range481,12827 -def test_history_tail():test_history_tail493,13282 -def test_history_search():test_history_search505,13721 -def test_stream():test_stream520,14197 -def test_display_data():test_display_data531,14464 - msg_id, reply = execute("from IPython.core.display import display; display(1)")display534,14511 - msg_id, reply = execute("from IPython.core.display import display; display(1)")display534,14511 - -ipykernel/ipykernel/tests/test_pickleutil.py,794 -import osos2,1 -import picklepickle3,11 -import nose.tools as ntnose5,26 -import nose.tools as ntnt5,26 -from ipykernel.pickleutil import can, uncan, codeutilcan7,51 -from ipykernel.pickleutil import can, uncan, codeutiluncan7,51 -from ipykernel.pickleutil import can, uncan, codeutilcodeutil7,51 -def interactive(f):interactive9,106 -def dumps(obj):dumps13,170 -def loads(obj):loads16,221 -def test_no_closure():test_no_closure19,274 - def foo():foo21,314 -def test_generator_closure():test_generator_closure29,444 - def foo():foo32,537 -def test_nested_closure():test_nested_closure41,702 - def foo():foo43,746 - def g():g45,777 -def test_closure():test_closure53,918 - def foo():foo56,967 -def test_uncan_bytes_buffer():test_uncan_bytes_buffer63,1083 - -ipykernel/ipykernel/tests/test_serialize.py,2415 -import picklepickle6,134 -from collections import namedtuplenamedtuple7,148 -import nose.tools as ntnose9,184 -import nose.tools as ntnt9,184 -from ipykernel.serialize import serialize_object, deserialize_objectserialize_object11,209 -from ipykernel.serialize import serialize_object, deserialize_objectdeserialize_object11,209 -from IPython.testing import decorators as decdec12,278 -from ipykernel.pickleutil import CannedArray, CannedClass, interactiveCannedArray13,324 -from ipykernel.pickleutil import CannedArray, CannedClass, interactiveCannedClass13,324 -from ipykernel.pickleutil import CannedArray, CannedClass, interactiveinteractive13,324 -from ipython_genutils.py3compat import iteritemsiteritems14,395 -def roundtrip(obj):roundtrip20,632 -SHAPES = ((100,), (1024,10), (10,8,6,5), (), (0,))SHAPES28,838 -DTYPES = ('uint8', 'float64', 'int32', [('g', 'float32')], '|S10')DTYPES29,889 -def new_array(shape, dtype):new_array35,1128 - import numpynumpy36,1157 -def test_roundtrip_simple():test_roundtrip_simple39,1227 -def test_roundtrip_nested():test_roundtrip_nested49,1437 -def test_roundtrip_buffered():test_roundtrip_buffered57,1644 -def test_roundtrip_memoryview():test_roundtrip_memoryview69,1979 -def test_numpy():test_numpy79,2273 - import numpynumpy80,2291 - from numpy.testing.utils import assert_array_equalassert_array_equal81,2308 -def test_recarray():test_recarray94,2786 - import numpynumpy95,2807 - from numpy.testing.utils import assert_array_equalassert_array_equal96,2824 -def test_numpy_in_seq():test_numpy_in_seq112,3359 - import numpynumpy113,3384 - from numpy.testing.utils import assert_array_equalassert_array_equal114,3401 -def test_numpy_in_dict():test_numpy_in_dict129,3971 - import numpynumpy130,3997 - from numpy.testing.utils import assert_array_equalassert_array_equal131,4014 -def test_class():test_class145,4566 - class C(object):C147,4601 - a=5a148,4622 -def test_class_oldstyle():test_class_oldstyle156,4844 - class C:C158,4888 - a=5a159,4901 -def test_tuple():test_tuple168,5124 -point = namedtuple('point', 'x y')point176,5365 -def test_namedtuple():test_namedtuple178,5401 -def test_list():test_list187,5661 -def test_class_inheritance():test_class_inheritance195,5900 - class C(object):C197,5947 - a=5a198,5968 - class D(C):D201,5998 - b=10b202,6014 - -ipykernel/ipykernel/tests/test_start_kernel.py,317 -import nose.tools as ntnose1,0 -import nose.tools as ntnt1,0 -from .test_embed_kernel import setup_kernelsetup_kernel3,25 -TIMEOUT = 15TIMEOUT5,70 -def test_ipython_start_kernel_userns():test_ipython_start_kernel_userns7,84 -def test_ipython_start_kernel_no_userns():test_ipython_start_kernel_no_userns32,1064 - -ipykernel/ipykernel/tests/test_zmq_shell.py,1484 -import osos7,176 - from queue import QueueQueue9,191 - from Queue import QueueQueue12,249 -from threading import ThreadThread13,277 -import unittestunittest14,306 -from traitlets import IntInt16,323 -import zmqzmq17,349 -from ipykernel.zmqshell import ZMQDisplayPublisherZMQDisplayPublisher19,361 -from jupyter_client.session import SessionSession20,412 -class NoReturnDisplayHook(object):NoReturnDisplayHook23,457 - call_count = 0call_count29,665 - def __call__(self, obj):__call__31,685 -class ReturnDisplayHook(NoReturnDisplayHook):ReturnDisplayHook35,745 - def __call__(self, obj):__call__41,948 -class CounterSession(Session):CounterSession46,1051 - send_count = Int(0)send_count52,1220 - def send(self, *args, **kwargs):send54,1245 -class ZMQDisplayPublisherTests(unittest.TestCase):ZMQDisplayPublisherTests63,1503 - def setUp(self):setUp68,1620 - def tearDown(self):tearDown78,1899 - def test_display_publisher_creation(self):test_display_publisher_creation89,2223 - def test_thread_local_hooks(self):test_thread_local_hooks98,2569 - def hook(msg):hook104,2806 - def set_thread_hooks():set_thread_hooks110,2970 - def test_publish(self):test_publish117,3189 - def test_display_hook_halts_send(self):test_display_hook_halts_send128,3502 - def test_display_hook_return_calls_send(self):test_display_hook_return_calls_send147,4136 - def test_unregister_hook(self):test_unregister_hook166,4767 - -ipykernel/ipykernel/tests/utils.py,1344 -import atexitatexit6,147 -import osos7,161 -from contextlib import contextmanagercontextmanager9,172 -from subprocess import PIPE, STDOUTPIPE10,210 -from subprocess import PIPE, STDOUTSTDOUT10,210 - from queue import Empty # Py 3Empty12,251 - from queue import Empty # Py 3Py12,251 - from Queue import Empty # Py 2Empty14,307 - from Queue import Empty # Py 2Py14,307 -import nosenose16,344 -import nose.tools as ntnose17,356 -import nose.tools as ntnt17,356 -from jupyter_client import managermanager19,381 -STARTUP_TIMEOUT = 60STARTUP_TIMEOUT25,590 -TIMEOUT = 15TIMEOUT26,611 -KM = NoneKM28,625 -KC = NoneKC29,635 -def start_new_kernel(**kwargs):start_new_kernel34,815 -def flush_channels(kc=None):flush_channels46,1222 - from .test_message_spec import validate_messagevalidate_message48,1301 -def execute(code='', kc=None, **kwargs):execute62,1652 - from .test_message_spec import validate_messagevalidate_message64,1770 -def start_global_kernel():start_global_kernel81,2414 -def kernel():kernel92,2704 -def uses_kernel(test_f):uses_kernel103,2931 - def wrapped_test():wrapped_test105,3013 -def stop_global_kernel():stop_global_kernel112,3200 -def new_kernel(argv=None):new_kernel122,3426 -def assemble_output(iopub):assemble_output137,3894 -def wait_for_idle(kc):wait_for_idle160,4673 - -ipykernel/ipykernel/zmqshell.py,5081 -from __future__ import print_functionprint_function18,753 -import osos20,792 -import syssys21,802 -import timetime22,813 -import warningswarnings23,825 -from threading import locallocal24,841 -from tornado import ioloopioloop26,870 -from IPython.core import pagepage31,986 -from IPython.core.autocall import ZMQExitAutocallZMQExitAutocall32,1016 -from IPython.core.displaypub import DisplayPublisherDisplayPublisher33,1066 -from IPython.core.error import UsageErrorUsageError34,1119 -from IPython.core.magics import MacroToEdit, CodeMagicsMacroToEdit35,1161 -from IPython.core.magics import MacroToEdit, CodeMagicsCodeMagics35,1161 -from IPython.core.magic import magics_class, line_magic, Magicsmagics_class36,1217 -from IPython.core.magic import magics_class, line_magic, Magicsline_magic36,1217 -from IPython.core.magic import magics_class, line_magic, MagicsMagics36,1217 -from IPython.core import payloadpagepayloadpage37,1281 -from IPython.core.usage import default_bannerdefault_banner38,1318 -from IPython.display import display, Javascriptdisplay39,1364 -from IPython.display import display, JavascriptJavascript39,1364 -from IPython.utils import openpyopenpy43,1502 -from ipykernel.jsonutil import json_clean, encode_imagesjson_clean44,1535 -from ipykernel.jsonutil import json_clean, encode_imagesencode_images44,1535 -from IPython.utils.process import arg_splitarg_split45,1592 -from ipython_genutils import py3compatpy3compat46,1636 -from ipython_genutils.py3compat import unicode_typeunicode_type47,1675 -from ipykernel.displayhook import ZMQShellDisplayHookZMQShellDisplayHook51,1816 -from jupyter_core.paths import jupyter_runtime_dirjupyter_runtime_dir53,1871 -from jupyter_client.session import extract_header, Sessionextract_header54,1922 -from jupyter_client.session import extract_header, SessionSession54,1922 -from .interactiveshell import YAPInteractionYAPInteraction56,1982 -class ZMQDisplayPublisher(DisplayPublisher):ZMQDisplayPublisher62,2211 - session = Instance(Session, allow_none=True)session65,2334 - pub_socket = Any(allow_none=True)pub_socket66,2383 - parent_header = Dict({})parent_header67,2421 - topic = CBytes(b'display_data')topic68,2450 - _thread_local = Any()_thread_local73,2631 - def set_parent(self, parent):set_parent75,2658 - def _flush_streams(self):_flush_streams79,2797 - def _default_thread_local(self):_default_thread_local85,2960 - def _hooks(self):_hooks90,3085 - def publish(self, data, metadata=None, source=None, transient=None,publish96,3290 - def clear_output(self, wait=False):clear_output147,5007 - def register_hook(self, hook):register_hook165,5621 - def unregister_hook(self, hook):unregister_hook185,6205 -class KernelMagics(Magics):KernelMagics207,6725 - _find_edit_target = CodeMagics._find_edit_target_find_edit_target216,7206 - def edit(self, parameter_s='', last_call=['','']):edit219,7276 - def clear(self, arg_s):clear320,11800 - def less(self, arg_s):less334,12185 - more = line_magic('more')(less)more347,12591 - def man(self, arg_s):man352,12731 - def connect_info(self, arg_s):connect_info358,12985 - def qtconsole(self, arg_s):qtconsole396,14334 - from ipyparallel import bind_kernelbind_kernel406,14681 - def autosave(self, arg_s):autosave416,14970 -class ZMQInteractiveShell(InteractiveShell):ZMQInteractiveShell442,15830 - displayhook_class = Type(ZMQShellDisplayHook)displayhook_class445,15926 - display_pub_class = Type(ZMQDisplayPublisher)display_pub_class446,15976 - data_pub_class = Type('ipykernel.datapub.ZMQDataPublisher')data_pub_class447,16026 - kernel = Any()kernel448,16090 - parent_header = Any()parent_header449,16109 - def _default_banner1(self):_default_banner1452,16160 - colors_force = CBool(True)colors_force458,16413 - readline_use = CBool(False)readline_use459,16444 - autoindent = CBool(False)autoindent462,16606 - exiter = Instance(ZMQExitAutocall)exiter464,16637 - def _default_exiter(self):_default_exiter467,16700 - def _update_exit_now(self, change):_update_exit_now471,16794 - keepkernel_on_exit = Nonekeepkernel_on_exit477,17013 - def enable_gui(self, gui):enable_gui481,17199 - from .eventloops import enable_gui as real_enable_guireal_enable_gui482,17230 - def init_environment(self):init_environment489,17450 - def init_hooks(self):init_hooks503,18016 - def init_data_pub(self):init_data_pub507,18172 - def data_pub(self):data_pub512,18302 - def data_pub(self, pub):data_pub523,18759 - def ask_exit(self):ask_exit526,18818 - def run_cell(self, *args, **kwargs):run_cell535,19105 - def _showtraceback(self, etype, evalue, stb):_showtraceback540,19309 - def set_next_input(self, text, replace=False):set_next_input565,20228 - def set_parent(self, parent):set_parent575,20557 - def get_parent(self):get_parent591,21091 - def init_magics(self):init_magics594,21152 - def init_virtualenv(self):init_virtualenv599,21335 - -ipykernel/ipykernel_launcher.py,75 -import syssys7,172 - from ipykernel import kernelapp as appapp15,378 - -ipykernel/setup.py,2036 -from __future__ import print_functionprint_function7,141 -name = 'yap_kernel'name10,206 -import syssys16,424 -v = sys.version_infov18,436 - error = "ERROR: %s requires Python version 2.7 or 3.3 or above." % nameerror20,508 -PY3 = (sys.version_info[0] >= 3)PY324,635 -from glob import globglob30,845 -import osos31,867 -import shutilshutil32,877 -from distutils.core import setupsetup34,892 -pjoin = os.path.joinpjoin36,926 -here = os.path.abspath(os.path.dirname(__file__))here37,947 -pkg_root = pjoin(here, name)pkg_root38,997 -packages = []packages40,1027 -package_data = {package_data45,1200 -version_ns = {}version_ns49,1257 -setup_args = dict(setup_args54,1360 - name = name,name55,1379 - version = version_ns['__version__'],version56,1407 - scripts = glob(pjoin('scripts', '*')),scripts57,1456 - packages = packages,packages58,1507 - py_modules = ['yapkernel_launcher'],py_modules59,1539 - description = "YAP Kernel for Jupyter",description61,1622 - author = 'IPython Development Team/Vitor Santos Costa',author62,1670 - author_email = 'vsc@dcc.fc.up.pt',author_email63,1739 - url = 'http://ipython.org',url64,1781 - license = 'BSD',license65,1825 - platforms = "Linux, Mac OS X, Windows",platforms66,1854 - keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'],keywords67,1904 - classifiers = [classifiers68,1974 - import setuptoolssetuptools78,2317 -setuptools_args = {}setuptools_args80,2340 - from yap_kernel.kernelspec import write_kernel_spec, make_ipkernel_cmd, KERNEL_NAMEwrite_kernel_spec89,2582 - from yap_kernel.kernelspec import write_kernel_spec, make_ipkernel_cmd, KERNEL_NAMEmake_ipkernel_cmd89,2582 - from yap_kernel.kernelspec import write_kernel_spec, make_ipkernel_cmd, KERNEL_NAMEKERNEL_NAME89,2582 - argv = make_ipkernel_cmd(executable='python')argv91,2671 - dest = os.path.join(here, 'data_kernelspec')dest92,2721 - -JIT/a.sh,0 - -JIT/examples/append.pl,537 -generate(L, N) :-generate5,59 -generate(L, N) :-generate5,59 -generate(L, N) :-generate5,59 -generate(L, L, 0) :- !.generate8,102 -generate(L, L, 0) :- !.generate8,102 -generate(L, L, 0) :- !.generate8,102 -generate(L, X, N) :-generate9,126 -generate(L, X, N) :-generate9,126 -generate(L, X, N) :-generate9,126 -append_([],L,L).append_14,218 -append_([],L,L).append_14,218 -append_([X|L1],L2,[X|L3]) :-append_15,235 -append_([X|L1],L2,[X|L3]) :-append_15,235 -append_([X|L1],L2,[X|L3]) :-append_15,235 -main :-main18,288 - -JIT/examples/binary_trees.pl,1921 -main :-main13,356 -set_limits(N, MinDepth, MaxDepth, StretchDepth) :-set_limits35,887 -set_limits(N, MinDepth, MaxDepth, StretchDepth) :-set_limits35,887 -set_limits(N, MinDepth, MaxDepth, StretchDepth) :-set_limits35,887 -descend_trees(CurrentDepth, MinDepth, MaxDepth) :-descend_trees42,1100 -descend_trees(CurrentDepth, MinDepth, MaxDepth) :-descend_trees42,1100 -descend_trees(CurrentDepth, MinDepth, MaxDepth) :-descend_trees42,1100 -sum_trees(0, _, AccSum, AccSum) :- !.sum_trees55,1506 -sum_trees(0, _, AccSum, AccSum) :- !.sum_trees55,1506 -sum_trees(0, _, AccSum, AccSum) :- !.sum_trees55,1506 -sum_trees(N, CurrentDepth, AccSum, Sum) :-sum_trees57,1545 -sum_trees(N, CurrentDepth, AccSum, Sum) :-sum_trees57,1545 -sum_trees(N, CurrentDepth, AccSum, Sum) :-sum_trees57,1545 -make_tree(Item, Left, Right, tree(Item, Left, Right)).make_tree66,1914 -make_tree(Item, Left, Right, tree(Item, Left, Right)).make_tree66,1914 -bottom_up_tree(Item, 0, tree(Item, nil, nil)) :- !.bottom_up_tree70,1989 -bottom_up_tree(Item, 0, tree(Item, nil, nil)) :- !.bottom_up_tree70,1989 -bottom_up_tree(Item, 0, tree(Item, nil, nil)) :- !.bottom_up_tree70,1989 -bottom_up_tree(Item, Depth, Tree) :-bottom_up_tree72,2042 -bottom_up_tree(Item, Depth, Tree) :-bottom_up_tree72,2042 -bottom_up_tree(Item, Depth, Tree) :-bottom_up_tree72,2042 -check_tree(tree(Item, nil, _), Item) :- !.check_tree81,2353 -check_tree(tree(Item, nil, _), Item) :- !.check_tree81,2353 -check_tree(tree(Item, nil, _), Item) :- !.check_tree81,2353 -check_tree(tree(Item, _, nil), Item) :- !.check_tree82,2396 -check_tree(tree(Item, _, nil), Item) :- !.check_tree82,2396 -check_tree(tree(Item, _, nil), Item) :- !.check_tree82,2396 -check_tree(tree(Item, Left, Right), ItemNew) :-check_tree84,2440 -check_tree(tree(Item, Left, Right), ItemNew) :-check_tree84,2440 -check_tree(tree(Item, Left, Right), ItemNew) :-check_tree84,2440 - -JIT/examples/fannkuch.pl,3658 -main :-main15,371 -f_permutations(N, MaxFlips) :-f_permutations26,574 -f_permutations(N, MaxFlips) :-f_permutations26,574 -f_permutations(N, MaxFlips) :-f_permutations26,574 -f_permutations_(L, N, I, MaxFlips0, MaxFlips, PermN0, PermN) :-f_permutations_32,692 -f_permutations_(L, N, I, MaxFlips0, MaxFlips, PermN0, PermN) :-f_permutations_32,692 -f_permutations_(L, N, I, MaxFlips0, MaxFlips, PermN0, PermN) :-f_permutations_32,692 -flips(L, Flips) :- flips_(L, 0, Flips).flips50,1165 -flips(L, Flips) :- flips_(L, 0, Flips).flips50,1165 -flips(L, Flips) :- flips_(L, 0, Flips).flips50,1165 -flips(L, Flips) :- flips_(L, 0, Flips).flips50,1165 -flips(L, Flips) :- flips_(L, 0, Flips).flips50,1165 -flips_([1|_], Fla, Fla) :- !.flips_52,1206 -flips_([1|_], Fla, Fla) :- !.flips_52,1206 -flips_([1|_], Fla, Fla) :- !.flips_52,1206 -flips_([N|T], Fla, Flips) :-flips_54,1237 -flips_([N|T], Fla, Flips) :-flips_54,1237 -flips_([N|T], Fla, Flips) :-flips_54,1237 -rotateLeft([H|T], RL) :- append(T, [H], RL).rotateLeft60,1400 -rotateLeft([H|T], RL) :- append(T, [H], RL).rotateLeft60,1400 -rotateLeft([H|T], RL) :- append(T, [H], RL).rotateLeft60,1400 -rotateLeft([H|T], RL) :- append(T, [H], RL).rotateLeft60,1400 -rotateLeft([H|T], RL) :- append(T, [H], RL).rotateLeft60,1400 -rotateLeft([], []).rotateLeft61,1445 -rotateLeft([], []).rotateLeft61,1445 -numlist(N, M, [N|Ls]) :- N < M, !, N1 is N + 1, numlist(N1, M, Ls).numlist65,1503 -numlist(N, M, [N|Ls]) :- N < M, !, N1 is N + 1, numlist(N1, M, Ls).numlist65,1503 -numlist(N, M, [N|Ls]) :- N < M, !, N1 is N + 1, numlist(N1, M, Ls).numlist65,1503 -numlist(N, M, [N|Ls]) :- N < M, !, N1 is N + 1, numlist(N1, M, Ls).numlist65,1503 -numlist(N, M, [N|Ls]) :- N < M, !, N1 is N + 1, numlist(N1, M, Ls).numlist65,1503 -numlist(M, M, [M]).numlist66,1571 -numlist(M, M, [M]).numlist66,1571 -printPerm([L|Ls]) :- write(L), printPerm(Ls).printPerm70,1629 -printPerm([L|Ls]) :- write(L), printPerm(Ls).printPerm70,1629 -printPerm([L|Ls]) :- write(L), printPerm(Ls).printPerm70,1629 -printPerm([L|Ls]) :- write(L), printPerm(Ls).printPerm70,1629 -printPerm([L|Ls]) :- write(L), printPerm(Ls).printPerm70,1629 -printPerm([]) :- nl.printPerm71,1675 -printPerm([]) :- nl.printPerm71,1675 -printPerm([]) :- nl.printPerm71,1675 -processPerm(L, MaxFlips0, MaxFlips, PermN0, PermN) :-processPerm75,1734 -processPerm(L, MaxFlips0, MaxFlips, PermN0, PermN) :-processPerm75,1734 -processPerm(L, MaxFlips0, MaxFlips, PermN0, PermN) :-processPerm75,1734 -split_list([L|Ls], N, [L|Hs], Ts) :-split_list93,2001 -split_list([L|Ls], N, [L|Hs], Ts) :-split_list93,2001 -split_list([L|Ls], N, [L|Hs], Ts) :-split_list93,2001 -split_list(Ls, 0, [], Ls) :- !.split_list97,2092 -split_list(Ls, 0, [], Ls) :- !.split_list97,2092 -split_list(Ls, 0, [], Ls) :- !.split_list97,2092 -take_drop(L, N, Taken, Rest) :- take_drop_(L, N, 0, [], Taken, Rest).take_drop101,2162 -take_drop(L, N, Taken, Rest) :- take_drop_(L, N, 0, [], Taken, Rest).take_drop101,2162 -take_drop(L, N, Taken, Rest) :- take_drop_(L, N, 0, [], Taken, Rest).take_drop101,2162 -take_drop(L, N, Taken, Rest) :- take_drop_(L, N, 0, [], Taken, Rest).take_drop101,2162 -take_drop(L, N, Taken, Rest) :- take_drop_(L, N, 0, [], Taken, Rest).take_drop101,2162 -take_drop_(L, N, N, Ta, Ta, L) :- !.take_drop_103,2233 -take_drop_(L, N, N, Ta, Ta, L) :- !.take_drop_103,2233 -take_drop_(L, N, N, Ta, Ta, L) :- !.take_drop_103,2233 -take_drop_([H|T], N, Nc, Ta, Taken, Rest) :-take_drop_105,2271 -take_drop_([H|T], N, Nc, Ta, Taken, Rest) :-take_drop_105,2271 -take_drop_([H|T], N, Nc, Ta, Taken, Rest) :-take_drop_105,2271 - -JIT/examples/fasta.pl,3730 -main :-main12,354 -init_fasta(ALU, IUB, HOMOSAP, RAND) :-init_fasta36,854 -init_fasta(ALU, IUB, HOMOSAP, RAND) :-init_fasta36,854 -init_fasta(ALU, IUB, HOMOSAP, RAND) :-init_fasta36,854 -repeat_fasta(Id, Desc, N, ALU) :-repeat_fasta47,1508 -repeat_fasta(Id, Desc, N, ALU) :-repeat_fasta47,1508 -repeat_fasta(Id, Desc, N, ALU) :-repeat_fasta47,1508 -repeat_fasta_(N, _, _, _, _) :- N =< 0, !.repeat_fasta_55,1713 -repeat_fasta_(N, _, _, _, _) :- N =< 0, !.repeat_fasta_55,1713 -repeat_fasta_(N, _, _, _, _) :- N =< 0, !.repeat_fasta_55,1713 -repeat_fasta_(N, Q, L, ALU, ALULength) :-repeat_fasta_57,1757 -repeat_fasta_(N, Q, L, ALU, ALULength) :-repeat_fasta_57,1757 -repeat_fasta_(N, Q, L, ALU, ALULength) :-repeat_fasta_57,1757 -random_fasta(Id, Desc, N, CumTbl, RAND0, RAND) :-random_fasta72,2226 -random_fasta(Id, Desc, N, CumTbl, RAND0, RAND) :-random_fasta72,2226 -random_fasta(Id, Desc, N, CumTbl, RAND0, RAND) :-random_fasta72,2226 -random_fasta_(N, _, _, RAND, RAND) :- N =< 0, !.random_fasta_79,2418 -random_fasta_(N, _, _, RAND, RAND) :- N =< 0, !.random_fasta_79,2418 -random_fasta_(N, _, _, RAND, RAND) :- N =< 0, !.random_fasta_79,2418 -random_fasta_(N, L, CumTbl, RAND0, RAND) :-random_fasta_81,2468 -random_fasta_(N, L, CumTbl, RAND0, RAND) :-random_fasta_81,2468 -random_fasta_(N, L, CumTbl, RAND0, RAND) :-random_fasta_81,2468 -gen_line(0, _, [], RAND, RAND).gen_line89,2726 -gen_line(0, _, [], RAND, RAND).gen_line89,2726 -gen_line(N, CumTbl, K, RAND0, RAND) :-gen_line90,2758 -gen_line(N, CumTbl, K, RAND0, RAND) :-gen_line90,2758 -gen_line(N, CumTbl, K, RAND0, RAND) :-gen_line90,2758 -make_cumulative(L, RL) :- make_cumulative_(L, RL, 0).make_cumulative97,2967 -make_cumulative(L, RL) :- make_cumulative_(L, RL, 0).make_cumulative97,2967 -make_cumulative(L, RL) :- make_cumulative_(L, RL, 0).make_cumulative97,2967 -make_cumulative(L, RL) :- make_cumulative_(L, RL, 0).make_cumulative97,2967 -make_cumulative(L, RL) :- make_cumulative_(L, RL, 0).make_cumulative97,2967 -make_cumulative_([], [], _) :- !.make_cumulative_99,3022 -make_cumulative_([], [], _) :- !.make_cumulative_99,3022 -make_cumulative_([], [], _) :- !.make_cumulative_99,3022 -make_cumulative_([K:V|T], L, CV) :-make_cumulative_100,3056 -make_cumulative_([K:V|T], L, CV) :-make_cumulative_100,3056 -make_cumulative_([K:V|T], L, CV) :-make_cumulative_100,3056 -select_random(L, RK, RAND0, RAND) :-select_random105,3177 -select_random(L, RK, RAND0, RAND) :-select_random105,3177 -select_random(L, RK, RAND0, RAND) :-select_random105,3177 -select_random_([], _, _) :- !.select_random_109,3276 -select_random_([], _, _) :- !.select_random_109,3276 -select_random_([], _, _) :- !.select_random_109,3276 -select_random_([K:V|T], R, RK) :-select_random_110,3307 -select_random_([K:V|T], R, RK) :-select_random_110,3307 -select_random_([K:V|T], R, RK) :-select_random_110,3307 -init_gen_random(Seed, [3877, 29573, 139968, Seed]).init_gen_random115,3429 -init_gen_random(Seed, [3877, 29573, 139968, Seed]).init_gen_random115,3429 -gen_random(UB, R, RAND0, RAND) :-gen_random119,3501 -gen_random(UB, R, RAND0, RAND) :-gen_random119,3501 -gen_random(UB, R, RAND0, RAND) :-gen_random119,3501 -sub_atom(_,_,0,'') :- !.sub_atom128,3740 -sub_atom(_,_,0,'') :- !.sub_atom128,3740 -sub_atom(_,_,0,'') :- !.sub_atom128,3740 -sub_atom(A,Bef,Size,Aout) :- sub_atom(A,Bef,Size,_,Aout).sub_atom129,3765 -sub_atom(A,Bef,Size,Aout) :- sub_atom(A,Bef,Size,_,Aout).sub_atom129,3765 -sub_atom(A,Bef,Size,Aout) :- sub_atom(A,Bef,Size,_,Aout).sub_atom129,3765 -sub_atom(A,Bef,Size,Aout) :- sub_atom(A,Bef,Size,_,Aout).sub_atom129,3765 -sub_atom(A,Bef,Size,Aout) :- sub_atom(A,Bef,Size,_,Aout).sub_atom129,3765 - -JIT/examples/hanoi.pl,215 -han(N,_,_,_) :- N =< 0.han3,26 -han(N,_,_,_) :- N =< 0.han3,26 -han(N,_,_,_) :- N =< 0.han3,26 -han(N,A,B,C) :- N > 0,han5,51 -han(N,A,B,C) :- N > 0,han5,51 -han(N,A,B,C) :- N > 0,han5,51 -main :-main10,140 - -JIT/examples/k_nucleotide.pl,6102 -main :-main17,453 -print_frequencies(Seq, KeyLen) :-print_frequencies32,822 -print_frequencies(Seq, KeyLen) :-print_frequencies32,822 -print_frequencies(Seq, KeyLen) :-print_frequencies32,822 -sum_counts_([_-C|T], Acc, Sum) :- Acc1 is Acc + C, !, sum_counts_(T, Acc1, Sum).sum_counts_41,1110 -sum_counts_([_-C|T], Acc, Sum) :- Acc1 is Acc + C, !, sum_counts_(T, Acc1, Sum).sum_counts_41,1110 -sum_counts_([_-C|T], Acc, Sum) :- Acc1 is Acc + C, !, sum_counts_(T, Acc1, Sum).sum_counts_41,1110 -sum_counts_([_-C|T], Acc, Sum) :- Acc1 is Acc + C, !, sum_counts_(T, Acc1, Sum).sum_counts_41,1110 -sum_counts_([_-C|T], Acc, Sum) :- Acc1 is Acc + C, !, sum_counts_(T, Acc1, Sum).sum_counts_41,1110 -sum_counts_([], Acc, Acc).sum_counts_42,1191 -sum_counts_([], Acc, Acc).sum_counts_42,1191 -make_freq_table_([K-C|T], SumCounts, FTA, FreqTable) :-make_freq_table_46,1238 -make_freq_table_([K-C|T], SumCounts, FTA, FreqTable) :-make_freq_table_46,1238 -make_freq_table_([K-C|T], SumCounts, FTA, FreqTable) :-make_freq_table_46,1238 -make_freq_table_([], _, FTA, FTA).make_freq_table_49,1406 -make_freq_table_([], _, FTA, FTA).make_freq_table_49,1406 -print_freq_table_([F-K|T]) :-print_freq_table_53,1461 -print_freq_table_([F-K|T]) :-print_freq_table_53,1461 -print_freq_table_([F-K|T]) :-print_freq_table_53,1461 -print_freq_table_([]).print_freq_table_56,1550 -print_freq_table_([]).print_freq_table_56,1550 -print_count(Seq, Fragment) :-print_count60,1611 -print_count(Seq, Fragment) :-print_count60,1611 -print_count(Seq, Fragment) :-print_count60,1611 -generate_counts(Seq, Length, CountTable) :-generate_counts73,1891 -generate_counts(Seq, Length, CountTable) :-generate_counts73,1891 -generate_counts(Seq, Length, CountTable) :-generate_counts73,1891 -make_count_table(Length, Last, Seq, CountTable) :-make_count_table79,2078 -make_count_table(Length, Last, Seq, CountTable) :-make_count_table79,2078 -make_count_table(Length, Last, Seq, CountTable) :-make_count_table79,2078 -mct_i_loop_(I, Length, Last, Seq, CTA, CountTable) :-mct_i_loop_86,2249 -mct_i_loop_(I, Length, Last, Seq, CTA, CountTable) :-mct_i_loop_86,2249 -mct_i_loop_(I, Length, Last, Seq, CTA, CountTable) :-mct_i_loop_86,2249 -mct_i_loop_(Length, Length, _, _, CTA, CTA).mct_i_loop_92,2479 -mct_i_loop_(Length, Length, _, _, CTA, CTA).mct_i_loop_92,2479 -mct_j_loop_(Last, Length, Seq, CTA, CountTable) :-mct_j_loop_97,2545 -mct_j_loop_(Last, Length, Seq, CTA, CountTable) :-mct_j_loop_97,2545 -mct_j_loop_(Last, Length, Seq, CTA, CountTable) :-mct_j_loop_97,2545 -mct_j_loop_(Last, _, _, CTA, CTA) :- Last =< 0, !.mct_j_loop_108,2909 -mct_j_loop_(Last, _, _, CTA, CTA) :- Last =< 0, !.mct_j_loop_108,2909 -mct_j_loop_(Last, _, _, CTA, CTA) :- Last =< 0, !.mct_j_loop_108,2909 -load_sequence(S, Seq) :- load_sequence_(S, fail, "", Seq).load_sequence112,2998 -load_sequence(S, Seq) :- load_sequence_(S, fail, "", Seq).load_sequence112,2998 -load_sequence(S, Seq) :- load_sequence_(S, fail, "", Seq).load_sequence112,2998 -load_sequence(S, Seq) :- load_sequence_(S, fail, "", Seq).load_sequence112,2998 -load_sequence(S, Seq) :- load_sequence_(S, fail, "", Seq).load_sequence112,2998 -load_sequence_(S, Loading, Seq, RetSeq) :-load_sequence_116,3077 -load_sequence_(S, Loading, Seq, RetSeq) :-load_sequence_116,3077 -load_sequence_(S, Loading, Seq, RetSeq) :-load_sequence_116,3077 -load_sequence_(S, _, Seq, Seq).load_sequence_124,3296 -load_sequence_(S, _, Seq, Seq).load_sequence_124,3296 -ignore_sequence([62,84,72,82,69,69|_], S, Seq, RetSeq) :- !,ignore_sequence128,3348 -ignore_sequence([62,84,72,82,69,69|_], S, Seq, RetSeq) :- !,ignore_sequence128,3348 -ignore_sequence([62,84,72,82,69,69|_], S, Seq, RetSeq) :- !,ignore_sequence128,3348 -ignore_sequence(_, S, Seq, RetSeq) :- !,ignore_sequence130,3450 -ignore_sequence(_, S, Seq, RetSeq) :- !,ignore_sequence130,3450 -ignore_sequence(_, S, Seq, RetSeq) :- !,ignore_sequence130,3450 -process_sequence([62|_], _, Seq, Seq) :- !.process_sequence133,3533 -process_sequence([62|_], _, Seq, Seq) :- !.process_sequence133,3533 -process_sequence([62|_], _, Seq, Seq) :- !.process_sequence133,3533 -process_sequence([59|_], S, Seq, RetSeq) :- !,process_sequence134,3577 -process_sequence([59|_], S, Seq, RetSeq) :- !,process_sequence134,3577 -process_sequence([59|_], S, Seq, RetSeq) :- !,process_sequence134,3577 -process_sequence(L, S, Seq, RetSeq) :-process_sequence137,3666 -process_sequence(L, S, Seq, RetSeq) :-process_sequence137,3666 -process_sequence(L, S, Seq, RetSeq) :-process_sequence137,3666 -to_upper(L, U) :- to_upper_(L, [], U).to_upper144,3838 -to_upper(L, U) :- to_upper_(L, [], U).to_upper144,3838 -to_upper(L, U) :- to_upper_(L, [], U).to_upper144,3838 -to_upper(L, U) :- to_upper_(L, [], U).to_upper144,3838 -to_upper(L, U) :- to_upper_(L, [], U).to_upper144,3838 -to_upper_([], UA, U) :- reverse(UA, U), !.to_upper_148,3897 -to_upper_([], UA, U) :- reverse(UA, U), !.to_upper_148,3897 -to_upper_([], UA, U) :- reverse(UA, U), !.to_upper_148,3897 -to_upper_([C|T], UA, U) :-to_upper_150,3941 -to_upper_([C|T], UA, U) :-to_upper_150,3941 -to_upper_([C|T], UA, U) :-to_upper_150,3941 -to_upper_([C|T], UA, U) :-to_upper_154,4031 -to_upper_([C|T], UA, U) :-to_upper_154,4031 -to_upper_([C|T], UA, U) :-to_upper_154,4031 -is_lower(C) :- C >= 97, C =< 122.is_lower159,4109 -is_lower(C) :- C >= 97, C =< 122.is_lower159,4109 -is_lower(C) :- C >= 97, C =< 122.is_lower159,4109 -forall(Gen, Proc) :- findall(_,(Gen, Proc), _).forall163,4181 -forall(Gen, Proc) :- findall(_,(Gen, Proc), _).forall163,4181 -forall(Gen, Proc) :- findall(_,(Gen, Proc), _).forall163,4181 -forall(Gen, Proc) :- findall(_,(Gen, Proc), _).forall163,4181 -forall(Gen, Proc) :- findall(_,(Gen, Proc), _).forall163,4181 -sub_list_([S|Seq], L, [S|Ks], Rs) :- L > 0, !,sub_list_167,4249 -sub_list_([S|Seq], L, [S|Ks], Rs) :- L > 0, !,sub_list_167,4249 -sub_list_([S|Seq], L, [S|Ks], Rs) :- L > 0, !,sub_list_167,4249 -sub_list_(Rs, 0, [], Rs).sub_list_170,4343 -sub_list_(Rs, 0, [], Rs).sub_list_170,4343 - -JIT/examples/mandelbrot.pl,1376 -main :-main12,325 -pointsY(_, _, _, _, _, _, _) :- !.pointsY37,793 -pointsY(_, _, _, _, _, _, _) :- !.pointsY37,793 -pointsY(_, _, _, _, _, _, _) :- !.pointsY37,793 -pointsX(_, _, _, _, OUTFLAG, OUTFLAG, BYTEOUT, BYTEOUT, BITN, BITN) :- !.pointsX68,1462 -pointsX(_, _, _, _, OUTFLAG, OUTFLAG, BYTEOUT, BYTEOUT, BITN, BITN) :- !.pointsX68,1462 -pointsX(_, _, _, _, OUTFLAG, OUTFLAG, BYTEOUT, BYTEOUT, BITN, BITN) :- !.pointsX68,1462 -mandel(Height, Width, Y, X, Repetitions) :-mandel72,1556 -mandel(Height, Width, Y, X, Repetitions) :-mandel72,1556 -mandel(Height, Width, Y, X, Repetitions) :-mandel72,1556 -mandel_(_, _, Zr, Zi, Repetitions, Repetitions) :- !,mandel_76,1709 -mandel_(_, _, Zr, Zi, Repetitions, Repetitions) :- !,mandel_76,1709 -mandel_(_, _, Zr, Zi, Repetitions, Repetitions) :- !,mandel_76,1709 -mandel_(Cr, Ci, Zr, Zi, Repetitions, N) :-mandel_79,1806 -mandel_(Cr, Ci, Zr, Zi, Repetitions, N) :-mandel_79,1806 -mandel_(Cr, Ci, Zr, Zi, Repetitions, N) :-mandel_79,1806 -mandel_(_, _, _, _, _, _) :- !.mandel_86,2019 -mandel_(_, _, _, _, _, _) :- !.mandel_86,2019 -mandel_(_, _, _, _, _, _) :- !.mandel_86,2019 -output(OUTFLAG0, OUTFLAG, BYTEOUT0, BYTEOUT, BITN0, BITN) :-output90,2071 -output(OUTFLAG0, OUTFLAG, BYTEOUT0, BYTEOUT, BITN0, BITN) :-output90,2071 -output(OUTFLAG0, OUTFLAG, BYTEOUT0, BYTEOUT, BITN0, BITN) :-output90,2071 - -JIT/examples/n-body.pl,2440 -main :-main12,354 -energy(Bodies, Energy) :- energy_(Bodies, 0.0, Energy).energy30,668 -energy(Bodies, Energy) :- energy_(Bodies, 0.0, Energy).energy30,668 -energy(Bodies, Energy) :- energy_(Bodies, 0.0, Energy).energy30,668 -energy(Bodies, Energy) :- energy_(Bodies, 0.0, Energy).energy30,668 -energy(Bodies, Energy) :- energy_(Bodies, 0.0, Energy).energy30,668 -energy_([ _:B | Bs], Energy0, Energy) :-energy_32,725 -energy_([ _:B | Bs], Energy0, Energy) :-energy_32,725 -energy_([ _:B | Bs], Energy0, Energy) :-energy_32,725 -energy_([], Energy, Energy).energy_38,954 -energy_([], Energy, Energy).energy_38,954 -energy_diff_(Planet, [_:B | Bs], Energy0, Energy) :-energy_diff_40,984 -energy_diff_(Planet, [_:B | Bs], Energy0, Energy) :-energy_diff_40,984 -energy_diff_(Planet, [_:B | Bs], Energy0, Energy) :-energy_diff_40,984 -energy_diff_(_, [], Energy, Energy).energy_diff_48,1320 -energy_diff_(_, [], Energy, Energy).energy_diff_48,1320 -loop_advance(N, Dt, Bodies0, Bodies) :-loop_advance52,1395 -loop_advance(N, Dt, Bodies0, Bodies) :-loop_advance52,1395 -loop_advance(N, Dt, Bodies0, Bodies) :-loop_advance52,1395 -loop_advance(_, _, Bodies, Bodies).loop_advance58,1541 -loop_advance(_, _, Bodies, Bodies).loop_advance58,1541 -advance(Dt, Bodies0, Bodies) :-advance60,1578 -advance(Dt, Bodies0, Bodies) :-advance60,1578 -advance(Dt, Bodies0, Bodies) :-advance60,1578 -advance(_, Bodies, Bodies).advance71,1868 -advance(_, Bodies, Bodies).advance71,1868 -advance_(Dt, Planet0, Planet, Bodies0, Bodies) :-advance_73,1897 -advance_(Dt, Planet0, Planet, Bodies0, Bodies) :-advance_73,1897 -advance_(Dt, Planet0, Planet, Bodies0, Bodies) :-advance_73,1897 -advance_(_, P, P, Bs, Bs).advance_95,2577 -advance_(_, P, P, Bs, Bs).advance_95,2577 -make_bodies(Bodies) :-make_bodies99,2642 -make_bodies(Bodies) :-make_bodies99,2642 -make_bodies(Bodies) :-make_bodies99,2642 -offset_momentum(Sun0, Sun, Bodies, SOLAR_MASS) :-offset_momentum127,3764 -offset_momentum(Sun0, Sun, Bodies, SOLAR_MASS) :-offset_momentum127,3764 -offset_momentum(Sun0, Sun, Bodies, SOLAR_MASS) :-offset_momentum127,3764 -offset_momentum_([_:E|Bs], Pt0, Pt) :-offset_momentum_135,4049 -offset_momentum_([_:E|Bs], Pt0, Pt) :-offset_momentum_135,4049 -offset_momentum_([_:E|Bs], Pt0, Pt) :-offset_momentum_135,4049 -offset_momentum_([], Pt, Pt).offset_momentum_143,4275 -offset_momentum_([], Pt, Pt).offset_momentum_143,4275 - -JIT/examples/nreverse.pl,591 -nreverse([],[]).nreverse3,26 -nreverse([],[]).nreverse3,26 -nreverse([X|L0],L):- nreverse(L0,L1),nreverse4,43 -nreverse([X|L0],L):- nreverse(L0,L1),nreverse4,43 -nreverse([X|L0],L):- nreverse(L0,L1),nreverse4,43 -append([],L,L).append7,104 -append([],L,L).append7,104 -append([X|L1],L2,[X|L3]) :- append(L1,L2,L3).append8,120 -append([X|L1],L2,[X|L3]) :- append(L1,L2,L3).append8,120 -append([X|L1],L2,[X|L3]) :- append(L1,L2,L3).append8,120 -append([X|L1],L2,[X|L3]) :- append(L1,L2,L3).append8,120 -append([X|L1],L2,[X|L3]) :- append(L1,L2,L3).append8,120 -main :-main10,167 - -JIT/examples/nsieve.pl,2469 -main :-main26,1010 -calcAndshowSieve(N) :-calcAndshowSieve42,1285 -calcAndshowSieve(N) :-calcAndshowSieve42,1285 -calcAndshowSieve(N) :-calcAndshowSieve42,1285 -nsieve(ASize, ASize, R, R) :- !.nsieve49,1443 -nsieve(ASize, ASize, R, R) :- !.nsieve49,1443 -nsieve(ASize, ASize, R, R) :- !.nsieve49,1443 -nsieve(N, ASize, A, R) :-nsieve50,1476 -nsieve(N, ASize, A, R) :-nsieve50,1476 -nsieve(N, ASize, A, R) :-nsieve50,1476 -clear_sieve(N, M, ASize) :-clear_sieve62,1664 -clear_sieve(N, M, ASize) :-clear_sieve62,1664 -clear_sieve(N, M, ASize) :-clear_sieve62,1664 -clear_sieve_(N, _, ASize) :- ASize < N, !.clear_sieve_67,1756 -clear_sieve_(N, _, ASize) :- ASize < N, !.clear_sieve_67,1756 -clear_sieve_(N, _, ASize) :- ASize < N, !.clear_sieve_67,1756 -clear_sieve_(N, M, ASize) :-clear_sieve_69,1800 -clear_sieve_(N, M, ASize) :-clear_sieve_69,1800 -clear_sieve_(N, M, ASize) :-clear_sieve_69,1800 -make_array(N, V) :- fill_array(N, V).make_array75,1932 -make_array(N, V) :- fill_array(N, V).make_array75,1932 -make_array(N, V) :- fill_array(N, V).make_array75,1932 -make_array(N, V) :- fill_array(N, V).make_array75,1932 -make_array(N, V) :- fill_array(N, V).make_array75,1932 -fill_array(0, _) :- !.fill_array79,1990 -fill_array(0, _) :- !.fill_array79,1990 -fill_array(0, _) :- !.fill_array79,1990 -fill_array(N, V) :- bb_put(N, V), N1 is N - 1, !, fill_array(N1, V).fill_array80,2013 -fill_array(N, V) :- bb_put(N, V), N1 is N - 1, !, fill_array(N1, V).fill_array80,2013 -fill_array(N, V) :- bb_put(N, V), N1 is N - 1, !, fill_array(N1, V).fill_array80,2013 -fill_array(N, V) :- bb_put(N, V), N1 is N - 1, !, fill_array(N1, V).fill_array80,2013 -fill_array(N, V) :- bb_put(N, V), N1 is N - 1, !, fill_array(N1, V).fill_array80,2013 -set_slot(N) :- bb_put(N, 1).set_slot84,2102 -set_slot(N) :- bb_put(N, 1).set_slot84,2102 -set_slot(N) :- bb_put(N, 1).set_slot84,2102 -set_slot(N) :- bb_put(N, 1).set_slot84,2102 -set_slot(N) :- bb_put(N, 1).set_slot84,2102 -clear_slot(N) :- bb_put(N, 0).clear_slot85,2131 -clear_slot(N) :- bb_put(N, 0).clear_slot85,2131 -clear_slot(N) :- bb_put(N, 0).clear_slot85,2131 -clear_slot(N) :- bb_put(N, 0).clear_slot85,2131 -clear_slot(N) :- bb_put(N, 0).clear_slot85,2131 -is_slot(N) :- bb_get(N, 1).is_slot86,2162 -is_slot(N) :- bb_get(N, 1).is_slot86,2162 -is_slot(N) :- bb_get(N, 1).is_slot86,2162 -is_slot(N) :- bb_get(N, 1).is_slot86,2162 -is_slot(N) :- bb_get(N, 1).is_slot86,2162 - -JIT/examples/nsieve_bits.pl,1884 -main :-main27,1007 -calcAndshowSieve(N) :-calcAndshowSieve43,1273 -calcAndshowSieve(N) :-calcAndshowSieve43,1273 -calcAndshowSieve(N) :-calcAndshowSieve43,1273 -nsieve(ASize, _, ASize, R, R) :- !.nsieve50,1458 -nsieve(ASize, _, ASize, R, R) :- !.nsieve50,1458 -nsieve(ASize, _, ASize, R, R) :- !.nsieve50,1458 -nsieve(N, Array, ASize, A, R) :-nsieve52,1495 -nsieve(N, Array, ASize, A, R) :-nsieve52,1495 -nsieve(N, Array, ASize, A, R) :-nsieve52,1495 -clear_sieve(N, M, Array, ASize) :-clear_sieve64,1710 -clear_sieve(N, M, Array, ASize) :-clear_sieve64,1710 -clear_sieve(N, M, Array, ASize) :-clear_sieve64,1710 -clear_sieve_(N, _, _, ASize) :- ASize < N, !.clear_sieve_69,1816 -clear_sieve_(N, _, _, ASize) :- ASize < N, !.clear_sieve_69,1816 -clear_sieve_(N, _, _, ASize) :- ASize < N, !.clear_sieve_69,1816 -clear_sieve_(N, M, Array, ASize) :-clear_sieve_71,1863 -clear_sieve_(N, M, Array, ASize) :-clear_sieve_71,1863 -clear_sieve_(N, M, Array, ASize) :-clear_sieve_71,1863 -array_slots(N, Slots) :- Slots is ((N + 15) >> 4) + 1.array_slots77,2015 -array_slots(N, Slots) :- Slots is ((N + 15) >> 4) + 1.array_slots77,2015 -array_slots(N, Slots) :- Slots is ((N + 15) >> 4) + 1.array_slots77,2015 -make_array(Name, N, V, Array) :-make_array81,2090 -make_array(Name, N, V, Array) :-make_array81,2090 -make_array(Name, N, V, Array) :-make_array81,2090 -fill_array(0, _, _) :- !.fill_array88,2233 -fill_array(0, _, _) :- !.fill_array88,2233 -fill_array(0, _, _) :- !.fill_array88,2233 -fill_array(N, V, Array) :-fill_array90,2260 -fill_array(N, V, Array) :-fill_array90,2260 -fill_array(N, V, Array) :-fill_array90,2260 -clear_arg(N, Array) :-clear_arg96,2376 -clear_arg(N, Array) :-clear_arg96,2376 -clear_arg(N, Array) :-clear_arg96,2376 -is_arg(N, Array) :-is_arg103,2579 -is_arg(N, Array) :-is_arg103,2579 -is_arg(N, Array) :-is_arg103,2579 - -JIT/examples/partial_sum.pl,665 -main :-main14,410 -compute_sums(N, SUMS) :-compute_sums24,575 -compute_sums(N, SUMS) :-compute_sums24,575 -compute_sums(N, SUMS) :-compute_sums24,575 -compute_sums_(D, N, _, SUMS, SUMS) :- D > N, !.compute_sums_30,720 -compute_sums_(D, N, _, SUMS, SUMS) :- D > N, !.compute_sums_30,720 -compute_sums_(D, N, _, SUMS, SUMS) :- D > N, !.compute_sums_30,720 -compute_sums_(D, N, ALT, SUMS0, SUMS) :-compute_sums_32,769 -compute_sums_(D, N, ALT, SUMS0, SUMS) :-compute_sums_32,769 -compute_sums_(D, N, ALT, SUMS0, SUMS) :-compute_sums_32,769 -print_sums(SUMS) :-print_sums53,1357 -print_sums(SUMS) :-print_sums53,1357 -print_sums(SUMS) :-print_sums53,1357 - -JIT/examples/pidigits.pl,2068 -main :-main12,354 -pidigits(N) :- pidigits_(1, [1, 0, 0, 1], N, 0, 0).pidigits22,511 -pidigits(N) :- pidigits_(1, [1, 0, 0, 1], N, 0, 0).pidigits22,511 -pidigits(N) :- pidigits_(1, [1, 0, 0, 1], N, 0, 0).pidigits22,511 -pidigits(N) :- pidigits_(1, [1, 0, 0, 1], N, 0, 0).pidigits22,511 -pidigits(N) :- pidigits_(1, [1, 0, 0, 1], N, 0, 0).pidigits22,511 -pidigits_(K, Z, N, Row, Col) :-pidigits_26,583 -pidigits_(K, Z, N, Row, Col) :-pidigits_26,583 -pidigits_(K, Z, N, Row, Col) :-pidigits_26,583 -next([Q, R, S, T], RV) :- RV is (3 * Q + R) // (3 * S + T).next44,1074 -next([Q, R, S, T], RV) :- RV is (3 * Q + R) // (3 * S + T).next44,1074 -next([Q, R, S, T], RV) :- RV is (3 * Q + R) // (3 * S + T).next44,1074 -next([Q, R, S, T], RV) :- RV is (3 * Q + R) // (3 * S + T).next44,1074 -next([Q, R, S, T], RV) :- RV is (3 * Q + R) // (3 * S + T).next44,1074 -safe([Q, R, S, T], N, RV) :-safe46,1135 -safe([Q, R, S, T], N, RV) :-safe46,1135 -safe([Q, R, S, T], N, RV) :-safe46,1135 -comp([Q1, R1, S1, T1], [Q2, R2, S2, T2], [QO, RO, SO, TO]) :-comp49,1238 -comp([Q1, R1, S1, T1], [Q2, R2, S2, T2], [QO, RO, SO, TO]) :-comp49,1238 -comp([Q1, R1, S1, T1], [Q2, R2, S2, T2], [QO, RO, SO, TO]) :-comp49,1238 -prod(Z, N, RL) :- A2 is -10 * N, comp([10, A2, 0, 1], Z, RL).prod53,1405 -prod(Z, N, RL) :- A2 is -10 * N, comp([10, A2, 0, 1], Z, RL).prod53,1405 -prod(Z, N, RL) :- A2 is -10 * N, comp([10, A2, 0, 1], Z, RL).prod53,1405 -prod(Z, N, RL) :- A2 is -10 * N, comp([10, A2, 0, 1], Z, RL).prod53,1405 -prod(Z, N, RL) :- A2 is -10 * N, comp([10, A2, 0, 1], Z, RL).prod53,1405 -cons(Z, K, RL) :- A2 is 4 * K + 2, A4 is 2 * K + 1, comp(Z, [K, A2, 0, A4], RL).cons55,1468 -cons(Z, K, RL) :- A2 is 4 * K + 2, A4 is 2 * K + 1, comp(Z, [K, A2, 0, A4], RL).cons55,1468 -cons(Z, K, RL) :- A2 is 4 * K + 2, A4 is 2 * K + 1, comp(Z, [K, A2, 0, A4], RL).cons55,1468 -cons(Z, K, RL) :- A2 is 4 * K + 2, A4 is 2 * K + 1, comp(Z, [K, A2, 0, A4], RL).cons55,1468 -cons(Z, K, RL) :- A2 is 4 * K + 2, A4 is 2 * K + 1, comp(Z, [K, A2, 0, A4], RL).cons55,1468 - -JIT/examples/query.pl,3642 -q:- statistics(runtime,[S|_]), q11,207 -test :- query.test17,328 -query :- query(_), fail.query19,344 -query([C1,D1,C2,D2]) :- query22,377 -query([C1,D1,C2,D2]) :- query22,377 -query([C1,D1,C2,D2]) :- query22,377 -density(C,D) :- density30,504 -density(C,D) :- density30,504 -density(C,D) :- density30,504 -pop(china, 8250).pop36,598 -pop(china, 8250).pop36,598 -pop(india, 5863).pop37,616 -pop(india, 5863).pop37,616 -pop(ussr, 2521).pop38,634 -pop(ussr, 2521).pop38,634 -pop(usa, 2119).pop39,651 -pop(usa, 2119).pop39,651 -pop(indonesia, 1276).pop40,667 -pop(indonesia, 1276).pop40,667 -pop(japan, 1097).pop41,689 -pop(japan, 1097).pop41,689 -pop(brazil, 1042).pop42,707 -pop(brazil, 1042).pop42,707 -pop(bangladesh, 750).pop43,726 -pop(bangladesh, 750).pop43,726 -pop(pakistan, 682).pop44,749 -pop(pakistan, 682).pop44,749 -pop(w_germany, 620).pop45,770 -pop(w_germany, 620).pop45,770 -pop(nigeria, 613).pop46,792 -pop(nigeria, 613).pop46,792 -pop(mexico, 581).pop47,812 -pop(mexico, 581).pop47,812 -pop(uk, 559).pop48,831 -pop(uk, 559).pop48,831 -pop(italy, 554).pop49,847 -pop(italy, 554).pop49,847 -pop(france, 525).pop50,865 -pop(france, 525).pop50,865 -pop(philippines, 415).pop51,884 -pop(philippines, 415).pop51,884 -pop(thailand, 410).pop52,907 -pop(thailand, 410).pop52,907 -pop(turkey, 383).pop53,928 -pop(turkey, 383).pop53,928 -pop(egypt, 364).pop54,947 -pop(egypt, 364).pop54,947 -pop(spain, 352).pop55,965 -pop(spain, 352).pop55,965 -pop(poland, 337).pop56,983 -pop(poland, 337).pop56,983 -pop(s_korea, 335).pop57,1002 -pop(s_korea, 335).pop57,1002 -pop(iran, 320).pop58,1022 -pop(iran, 320).pop58,1022 -pop(ethiopia, 272).pop59,1039 -pop(ethiopia, 272).pop59,1039 -pop(argentina, 251).pop60,1060 -pop(argentina, 251).pop60,1060 -area(china, 3380).area63,1117 -area(china, 3380).area63,1117 -area(india, 1139).area64,1140 -area(india, 1139).area64,1140 -area(ussr, 8708).area65,1163 -area(ussr, 8708).area65,1163 -area(usa, 3609).area66,1186 -area(usa, 3609).area66,1186 -area(indonesia, 570).area67,1209 -area(indonesia, 570).area67,1209 -area(japan, 148).area68,1232 -area(japan, 148).area68,1232 -area(brazil, 3288).area69,1255 -area(brazil, 3288).area69,1255 -area(bangladesh, 55).area70,1278 -area(bangladesh, 55).area70,1278 -area(pakistan, 311).area71,1301 -area(pakistan, 311).area71,1301 -area(w_germany, 96).area72,1324 -area(w_germany, 96).area72,1324 -area(nigeria, 373).area73,1347 -area(nigeria, 373).area73,1347 -area(mexico, 764).area74,1370 -area(mexico, 764).area74,1370 -area(uk, 86).area75,1393 -area(uk, 86).area75,1393 -area(italy, 116).area76,1416 -area(italy, 116).area76,1416 -area(france, 213).area77,1439 -area(france, 213).area77,1439 -area(philippines, 90).area78,1462 -area(philippines, 90).area78,1462 -area(thailand, 200).area79,1485 -area(thailand, 200).area79,1485 -area(turkey, 296).area80,1508 -area(turkey, 296).area80,1508 -area(egypt, 386).area81,1531 -area(egypt, 386).area81,1531 -area(spain, 190).area82,1554 -area(spain, 190).area82,1554 -area(poland, 121).area83,1577 -area(poland, 121).area83,1577 -area(s_korea, 37).area84,1600 -area(s_korea, 37).area84,1600 -area(iran, 628).area85,1623 -area(iran, 628).area85,1623 -area(ethiopia, 350).area86,1646 -area(ethiopia, 350).area86,1646 -area(argentina, 1080).area87,1669 -area(argentina, 1080).area87,1669 - -JIT/examples/recursive.pl,1186 -ack(0, N, Val) :- Val is N + 1, !.ack9,197 -ack(0, N, Val) :- Val is N + 1, !.ack9,197 -ack(0, N, Val) :- Val is N + 1, !.ack9,197 -ack(M, 0, Val) :- M1 is M - 1, ack(M1, 1, Val), !.ack10,232 -ack(M, 0, Val) :- M1 is M - 1, ack(M1, 1, Val), !.ack10,232 -ack(M, 0, Val) :- M1 is M - 1, ack(M1, 1, Val), !.ack10,232 -ack(M, N, Val) :-ack11,283 -ack(M, N, Val) :-ack11,283 -ack(M, N, Val) :-ack11,283 -fib(0, 1) :- !.fib16,371 -fib(0, 1) :- !.fib16,371 -fib(0, 1) :- !.fib16,371 -fib(1, 1) :- !.fib17,387 -fib(1, 1) :- !.fib17,387 -fib(1, 1) :- !.fib17,387 -fib(N, Val) :-fib18,403 -fib(N, Val) :-fib18,403 -fib(N, Val) :-fib18,403 -fib_float(1.0, 1.0) :- !.fib_float26,541 -fib_float(1.0, 1.0) :- !.fib_float26,541 -fib_float(1.0, 1.0) :- !.fib_float26,541 -fib_float(0.0, 1.0) :- !.fib_float27,567 -fib_float(0.0, 1.0) :- !.fib_float27,567 -fib_float(0.0, 1.0) :- !.fib_float27,567 -fib_float(N, Val) :-fib_float28,593 -fib_float(N, Val) :-fib_float28,593 -fib_float(N, Val) :-fib_float28,593 -tak(X, Y, Z, R) :-tak37,750 -tak(X, Y, Z, R) :-tak37,750 -tak(X, Y, Z, R) :-tak37,750 -tak(_, _, Z, Z).tak47,908 -tak(_, _, Z, Z).tak47,908 -main :-main50,927 - -JIT/examples/spectral_norm.pl,4318 -main :-main12,345 -approximate(N, R) :-approximate22,515 -approximate(N, R) :-approximate22,515 -approximate(N, R) :-approximate22,515 -approx_(I, N, U, V) :-approx_31,711 -approx_(I, N, U, V) :-approx_31,711 -approx_(I, N, U, V) :-approx_31,711 -approx_(0, _, _, _).approx_36,826 -approx_(0, _, _, _).approx_36,826 -vbv_loop(N, U, V, VbV) :- vbv_loop_(N, U, V, 0.0, VbV).vbv_loop40,867 -vbv_loop(N, U, V, VbV) :- vbv_loop_(N, U, V, 0.0, VbV).vbv_loop40,867 -vbv_loop(N, U, V, VbV) :- vbv_loop_(N, U, V, 0.0, VbV).vbv_loop40,867 -vbv_loop(N, U, V, VbV) :- vbv_loop_(N, U, V, 0.0, VbV).vbv_loop40,867 -vbv_loop(N, U, V, VbV) :- vbv_loop_(N, U, V, 0.0, VbV).vbv_loop40,867 -vbv_loop_(0, _, _, VAcc, VAcc) :- !.vbv_loop_42,924 -vbv_loop_(0, _, _, VAcc, VAcc) :- !.vbv_loop_42,924 -vbv_loop_(0, _, _, VAcc, VAcc) :- !.vbv_loop_42,924 -vbv_loop_(N, U, V, VAcc, VbV) :-vbv_loop_44,962 -vbv_loop_(N, U, V, VAcc, VbV) :-vbv_loop_44,962 -vbv_loop_(N, U, V, VAcc, VbV) :-vbv_loop_44,962 -vv_loop(N, U, V, Vv) :- vv_loop_(N, U, V, 0.0, Vv).vv_loop51,1144 -vv_loop(N, U, V, Vv) :- vv_loop_(N, U, V, 0.0, Vv).vv_loop51,1144 -vv_loop(N, U, V, Vv) :- vv_loop_(N, U, V, 0.0, Vv).vv_loop51,1144 -vv_loop(N, U, V, Vv) :- vv_loop_(N, U, V, 0.0, Vv).vv_loop51,1144 -vv_loop(N, U, V, Vv) :- vv_loop_(N, U, V, 0.0, Vv).vv_loop51,1144 -vv_loop_(0, _, _, VAcc, VAcc) :- !.vv_loop_53,1197 -vv_loop_(0, _, _, VAcc, VAcc) :- !.vv_loop_53,1197 -vv_loop_(0, _, _, VAcc, VAcc) :- !.vv_loop_53,1197 -vv_loop_(N, U, V, VAcc, Vv) :-vv_loop_55,1234 -vv_loop_(N, U, V, VAcc, Vv) :-vv_loop_55,1234 -vv_loop_(N, U, V, VAcc, Vv) :-vv_loop_55,1234 -a(I, J, AResult) :-a62,1411 -a(I, J, AResult) :-a62,1411 -a(I, J, AResult) :-a62,1411 -mulAv(N, V, Av) :- mulAv_(N, N, N, V, Av).mulAv68,1570 -mulAv(N, V, Av) :- mulAv_(N, N, N, V, Av).mulAv68,1570 -mulAv(N, V, Av) :- mulAv_(N, N, N, V, Av).mulAv68,1570 -mulAv(N, V, Av) :- mulAv_(N, N, N, V, Av).mulAv68,1570 -mulAv(N, V, Av) :- mulAv_(N, N, N, V, Av).mulAv68,1570 -mulAv_(0, _, _, _, _) :- !.mulAv_72,1634 -mulAv_(0, _, _, _, _) :- !.mulAv_72,1634 -mulAv_(0, _, _, _, _) :- !.mulAv_72,1634 -mulAv_(I, J, N, V, Av) :-mulAv_74,1663 -mulAv_(I, J, N, V, Av) :-mulAv_74,1663 -mulAv_(I, J, N, V, Av) :-mulAv_74,1663 -mulAvJ_(_, 0, _, _, _) :- !.mulAvJ_79,1785 -mulAvJ_(_, 0, _, _, _) :- !.mulAvJ_79,1785 -mulAvJ_(_, 0, _, _, _) :- !.mulAvJ_79,1785 -mulAvJ_(I, J, N, V, Av) :-mulAvJ_81,1815 -mulAvJ_(I, J, N, V, Av) :-mulAvJ_81,1815 -mulAvJ_(I, J, N, V, Av) :-mulAvJ_81,1815 -mulAtV(N, V, Atv) :- mulAtV_(N, N, N, V, Atv).mulAtV89,2051 -mulAtV(N, V, Atv) :- mulAtV_(N, N, N, V, Atv).mulAtV89,2051 -mulAtV(N, V, Atv) :- mulAtV_(N, N, N, V, Atv).mulAtV89,2051 -mulAtV(N, V, Atv) :- mulAtV_(N, N, N, V, Atv).mulAtV89,2051 -mulAtV(N, V, Atv) :- mulAtV_(N, N, N, V, Atv).mulAtV89,2051 -mulAtV_(0, _, _, _, _) :- !.mulAtV_93,2119 -mulAtV_(0, _, _, _, _) :- !.mulAtV_93,2119 -mulAtV_(0, _, _, _, _) :- !.mulAtV_93,2119 -mulAtV_(I, J, N, V, Atv) :-mulAtV_95,2149 -mulAtV_(I, J, N, V, Atv) :-mulAtV_95,2149 -mulAtV_(I, J, N, V, Atv) :-mulAtV_95,2149 -mulAtVJ_(_, 0, _, _, _) :- !.mulAtVJ_100,2278 -mulAtVJ_(_, 0, _, _, _) :- !.mulAtVJ_100,2278 -mulAtVJ_(_, 0, _, _, _) :- !.mulAtVJ_100,2278 -mulAtVJ_(I, J, N, V, Atv) :-mulAtVJ_102,2309 -mulAtVJ_(I, J, N, V, Atv) :-mulAtVJ_102,2309 -mulAtVJ_(I, J, N, V, Atv) :-mulAtVJ_102,2309 -mulAtAv(N, V, AtAv) :-mulAtAv110,2555 -mulAtAv(N, V, AtAv) :-mulAtAv110,2555 -mulAtAv(N, V, AtAv) :-mulAtAv110,2555 -make_array(Name, N, V, Array) :- functor(Array, Name, N), fill_array(N, V, Array).make_array116,2688 -make_array(Name, N, V, Array) :- functor(Array, Name, N), fill_array(N, V, Array).make_array116,2688 -make_array(Name, N, V, Array) :- functor(Array, Name, N), fill_array(N, V, Array).make_array116,2688 -make_array(Name, N, V, Array) :- functor(Array, Name, N), fill_array(N, V, Array).make_array116,2688 -make_array(Name, N, V, Array) :- functor(Array, Name, N), fill_array(N, V, Array).make_array116,2688 -fill_array(0, _, _) :- !.fill_array120,2791 -fill_array(0, _, _) :- !.fill_array120,2791 -fill_array(0, _, _) :- !.fill_array120,2791 -fill_array(N, V, Array) :-fill_array122,2818 -fill_array(N, V, Array) :-fill_array122,2818 -fill_array(N, V, Array) :-fill_array122,2818 - -JIT/examples/tak.pl,221 -tak(X,Y,Z,A) :- X =< Y, tak3,26 -tak(X,Y,Z,A) :- X =< Y, tak3,26 -tak(X,Y,Z,A) :- X =< Y, tak3,26 -tak(X,Y,Z,A) :- X > Y, tak6,75 -tak(X,Y,Z,A) :- X > Y, tak6,75 -tak(X,Y,Z,A) :- X > Y, tak6,75 -main :-main15,322 - -JIT/examples/zebra.pl,928 -right_of(A, B, [B, A | _]).right_of10,152 -right_of(A, B, [B, A | _]).right_of10,152 -right_of(A, B, [_ | Y]) :-right_of12,181 -right_of(A, B, [_ | Y]) :-right_of12,181 -right_of(A, B, [_ | Y]) :-right_of12,181 -next_to(A, B, [A, B | _]).next_to16,230 -next_to(A, B, [A, B | _]).next_to16,230 -next_to(A, B, [B, A | _]).next_to18,258 -next_to(A, B, [B, A | _]).next_to18,258 -next_to(A, B, [_ | Y]) :-next_to20,286 -next_to(A, B, [_ | Y]) :-next_to20,286 -next_to(A, B, [_ | Y]) :-next_to20,286 -my_member(X, [X|_]).my_member24,333 -my_member(X, [X|_]).my_member24,333 -my_member(X, [_|Y]) :-my_member26,355 -my_member(X, [_|Y]) :-my_member26,355 -my_member(X, [_|Y]) :-my_member26,355 -print_houses([]).print_houses30,398 -print_houses([]).print_houses30,398 -print_houses([A|B]) :-print_houses32,417 -print_houses([A|B]) :-print_houses32,417 -print_houses([A|B]) :-print_houses32,417 -main:-main36,474 - -JIT/HPP/debug_printers.h,335 -print_main_when_head(yamop* p, enumPlace place)print_main_when_head4,59 -print_instruction(yamop* p, enumPlace place)print_instruction17,484 - #define OPCODE(OPCODE21,592 - #undef OPCODEOPCODE43,1339 -print_block(YAP_BBs block, enumPlace place)print_block52,1437 - #define BBLOCK(BBLOCK55,1501 - #undef BBLOCKBBLOCK69,2020 - -JIT/HPP/EnvironmentInit.h,556 -#define X_API X_API7,135 -#define X_APIX_API9,179 -IntGet_N_Cores() {IntGet_N_Cores33,693 -Init_Analysis_Struc()Init_Analysis_Struc58,1217 -Init_Transform_Struc()Init_Transform_Struc71,1621 -Init_Codegen_Struc()Init_Codegen_Struc91,2471 -Init_Config_Struc()Init_Config_Struc116,3682 -Init_Stats_Struc()Init_Stats_Struc147,4767 -Init_Debug_Struc()Init_Debug_Struc159,4966 - #define OPCODE(OPCODE161,4989 - #undef OPCODEOPCODE166,5209 - #define BBLOCK(BBLOCK168,5228 - #undef BBLOCKBBLOCK173,5445 -YAP_Init_ExpEnv()YAP_Init_ExpEnv215,7211 - -JIT/HPP/fprintblock.h,48 -fprint_block(YAP_BBs block) {fprint_block2,19 - -JIT/HPP/indexing_ext.h,2105 -p #define USER_SWITCH_INSTINIT BLOCKADDRESS = (CELL)(*_PREG);BLOCKADDRESS1,0 -#define USER_SWITCH_END USER_SWITCH_END13,228 -#define SWITCH_ON_TYPE_INSTINIT SWITCH_ON_TYPE_INSTINIT15,284 -#define SWITCH_ON_TYPE_END SWITCH_ON_TYPE_END58,3610 -#define SWITCH_LIST_NL_INSTINIT SWITCH_LIST_NL_INSTINIT61,3697 -#define SWITCH_LIST_NL_INSTINIT SWITCH_LIST_NL_INSTINIT114,7838 -#define SWITCH_LIST_NL_END SWITCH_LIST_NL_END164,11657 -#define SWITCH_ON_ARG_TYPE_INSTINIT SWITCH_ON_ARG_TYPE_INSTINIT166,11719 -#define SWITCH_ON_ARG_TYPE_END SWITCH_ON_ARG_TYPE_END209,15045 -#define SWITCH_ON_SUB_ARG_TYPE_INSTINIT SWITCH_ON_SUB_ARG_TYPE_INSTINIT211,15115 -#define SWITCH_ON_SUB_ARG_TYPE_END SWITCH_ON_SUB_ARG_TYPE_END254,18441 -#define JUMP_IF_VAR_INSTINIT JUMP_IF_VAR_INSTINIT256,18519 -#define JUMP_IF_VAR_END JUMP_IF_VAR_END285,20711 -#define JUMP_IF_NONVAR_INSTINIT JUMP_IF_NONVAR_INSTINIT287,20767 -#define JUMP_IF_NONVAR_END JUMP_IF_NONVAR_END315,22878 -#define IF_NOT_THEN_INSTINIT IF_NOT_THEN_INSTINIT317,22940 -#define IF_NOT_THEN_END IF_NOT_THEN_END353,25699 -#define HRASH_SHIFT HRASH_SHIFT355,25755 -#define SWITCH_ON_FUNC_INSTINIT SWITCH_ON_FUNC_INSTINIT357,25778 -#define SWITCH_ON_FUNC_END SWITCH_ON_FUNC_END388,28132 -#define SWITCH_ON_CONS_INSTINIT SWITCH_ON_CONS_INSTINIT390,28194 -#define SWITCH_ON_CONS_END SWITCH_ON_CONS_END421,30548 -#define GO_ON_FUNC_INSTINIT GO_ON_FUNC_INSTINIT423,30610 -#define GO_ON_FUNC_END GO_ON_FUNC_END440,31830 -#define GO_ON_CONS_INSTINIT GO_ON_CONS_INSTINIT442,31884 -#define GO_ON_CONS_END GO_ON_CONS_END459,33104 -#define IF_FUNC_INSTINIT IF_FUNC_INSTINIT461,33158 -#define IF_FUNC_END IF_FUNC_END474,34063 -#define IF_CONS_INSTINIT IF_CONS_INSTINIT476,34111 -#define IF_CONS_END IF_CONS_END489,35016 -#define INDEX_DBREF_INSTINIT INDEX_DBREF_INSTINIT491,35064 -#define INDEX_DBREF_END INDEX_DBREF_END497,35401 -#define INDEX_BLOB_INSTINIT INDEX_BLOB_INSTINIT499,35457 -#define INDEX_BLOB_END INDEX_BLOB_END505,35794 -#define INDEX_LONG_INSTINIT INDEX_LONG_INSTINIT507,35848 -#define INDEX_LONG_END INDEX_LONG_END513,36185 - -JIT/HPP/indexing_ext_d.h,2071 -#define USER_SWITCH_INSTINIT USER_SWITCH_INSTINIT1,0 -#define USER_SWITCH_END USER_SWITCH_END16,323 -#define SWITCH_ON_TYPE_INSTINIT SWITCH_ON_TYPE_INSTINIT19,387 -#define SWITCH_ON_TYPE_END SWITCH_ON_TYPE_END65,1626 -#define SWITCH_LIST_NL_INSTINIT SWITCH_LIST_NL_INSTINIT69,1721 -#define SWITCH_LIST_NL_INSTINIT SWITCH_LIST_NL_INSTINIT123,3216 -#define SWITCH_LIST_NL_END SWITCH_LIST_NL_END175,4641 -#define SWITCH_ON_ARG_TYPE_INSTINIT SWITCH_ON_ARG_TYPE_INSTINIT178,4711 -#define SWITCH_ON_ARG_TYPE_END SWITCH_ON_ARG_TYPE_END224,5973 -#define SWITCH_ON_SUB_ARG_TYPE_INSTINIT SWITCH_ON_SUB_ARG_TYPE_INSTINIT227,6051 -#define SWITCH_ON_SUB_ARG_TYPE_END SWITCH_ON_SUB_ARG_TYPE_END273,7321 -#define JUMP_IF_VAR_INSTINIT JUMP_IF_VAR_INSTINIT276,7407 -#define JUMP_IF_VAR_END JUMP_IF_VAR_END306,8211 -#define JUMP_IF_NONVAR_INSTINIT JUMP_IF_NONVAR_INSTINIT309,8275 -#define JUMP_IF_NONVAR_END JUMP_IF_NONVAR_END338,9078 -#define IF_NOT_THEN_INSTINIT IF_NOT_THEN_INSTINIT341,9148 -#define IF_NOT_THEN_END IF_NOT_THEN_END379,10174 -#define HRASH_SHIFT HRASH_SHIFT382,10238 -#define SWITCH_ON_FUNC_INSTINIT SWITCH_ON_FUNC_INSTINIT384,10261 -#define SWITCH_ON_FUNC_END SWITCH_ON_FUNC_END418,11086 -#define SWITCH_ON_CONS_INSTINIT SWITCH_ON_CONS_INSTINIT421,11156 -#define SWITCH_ON_CONS_END SWITCH_ON_CONS_END455,11973 -#define GO_ON_FUNC_INSTINIT GO_ON_FUNC_INSTINIT458,12043 -#define GO_ON_FUNC_END GO_ON_FUNC_END476,12467 -#define GO_ON_CONS_INSTINIT GO_ON_CONS_INSTINIT479,12529 -#define GO_ON_CONS_END GO_ON_CONS_END497,12945 -#define IF_FUNC_INSTINIT IF_FUNC_INSTINIT500,13007 -#define IF_FUNC_END IF_FUNC_END514,13414 -#define IF_CONS_INSTINIT IF_CONS_INSTINIT517,13470 -#define IF_CONS_END IF_CONS_END531,13861 -#define INDEX_DBREF_INSTINIT INDEX_DBREF_INSTINIT534,13917 -#define INDEX_DBREF_END INDEX_DBREF_END541,14127 -#define INDEX_BLOB_INSTINIT INDEX_BLOB_INSTINIT544,14191 -#define INDEX_BLOB_END INDEX_BLOB_END551,14406 -#define INDEX_LONG_INSTINIT INDEX_LONG_INSTINIT554,14468 -#define INDEX_LONG_END INDEX_LONG_END561,14680 - -JIT/HPP/indexing_std.h,6391 -#define TRY_ME_INSTINIT TRY_ME_INSTINIT1,0 -#define TRY_ME_YAPOR TRY_ME_YAPOR11,288 -#define TRY_ME_END TRY_ME_END15,351 -#define RETRY_ME_INSTINIT RETRY_ME_INSTINIT22,520 -#define RETRY_ME_FROZEN RETRY_ME_FROZEN28,700 -#define RETRY_ME_NOFROZEN RETRY_ME_NOFROZEN32,820 -#define RETRY_ME_END RETRY_ME_END36,897 -#define TRUST_ME_INSTINIT TRUST_ME_INSTINIT42,1033 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF47,1122 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF62,1573 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF77,1970 -#define TRUST_ME_IF TRUST_ME_IF85,2186 -#define TRUST_ME_END TRUST_ME_END94,2371 -#define ENTER_PROFILING_INSTINIT ENTER_PROFILING_INSTINIT100,2507 -#define RETRY_PROFILED_INSTINIT RETRY_PROFILED_INSTINIT107,2778 -#define PROFILED_RETRY_ME_INSTINIT PROFILED_RETRY_ME_INSTINIT114,3048 -#define PROFILED_RETRY_ME_FROZEN PROFILED_RETRY_ME_FROZEN123,3412 -#define PROFILED_RETRY_ME_NOFROZEN PROFILED_RETRY_ME_NOFROZEN127,3541 -#define PROFILED_RETRY_ME_END PROFILED_RETRY_ME_END131,3627 -#define PROFILED_TRUST_ME_INSTINIT PROFILED_TRUST_ME_INSTINIT137,3772 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF142,3870 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF157,4307 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF172,4683 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF180,4890 -#define PROFILED_TRUST_ME_END PROFILED_TRUST_ME_END189,5072 -#define PROFILED_RETRY_LOGICAL_INSTINIT PROFILED_RETRY_LOGICAL_INSTINIT198,5404 -#define PROFILED_RETRY_LOGICAL_THREADS PROFILED_RETRY_LOGICAL_THREADS217,6036 -#define PROFILED_RETRY_LOGICAL_POST_THREADS PROFILED_RETRY_LOGICAL_POST_THREADS221,6124 -#define PROFILED_RETRY_LOGICAL_FROZEN PROFILED_RETRY_LOGICAL_FROZEN225,6238 -#define PROFILED_RETRY_LOGICAL_NOFROZEN PROFILED_RETRY_LOGICAL_NOFROZEN229,6362 -#define PROFILED_RETRY_LOGICAL_END PROFILED_RETRY_LOGICAL_END233,6448 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT244,6703 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT301,8265 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT359,9783 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT410,11139 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT465,12548 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT527,14280 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT589,15964 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT644,17486 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT703,19044 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT763,20744 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT824,22400 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT878,23894 -#define PROFILED_TRUST_LOGICAL_END PROFILED_TRUST_LOGICAL_END935,25418 -#define TRY_CLAUSE_INSTINIT TRY_CLAUSE_INSTINIT938,25507 -#define TRY_CLAUSE_YAPOR TRY_CLAUSE_YAPOR949,25844 -#define TRY_CLAUSE_END TRY_CLAUSE_END953,25911 -#define TRY_CLAUSE2_INSTINIT TRY_CLAUSE2_INSTINIT959,26044 -#define TRY_CLAUSE2_YAPOR TRY_CLAUSE2_YAPOR976,26445 -#define TRY_CLAUSE2_END TRY_CLAUSE2_END980,26513 -#define TRY_CLAUSE3_INSTINIT TRY_CLAUSE3_INSTINIT986,26648 -#define TRY_CLAUSE3_YAPOR TRY_CLAUSE3_YAPOR1001,27016 -#define TRY_CLAUSE3_END TRY_CLAUSE3_END1005,27084 -#define TRY_CLAUSE4_INSTINIT TRY_CLAUSE4_INSTINIT1011,27219 -#define TRY_CLAUSE4_YAPOR TRY_CLAUSE4_YAPOR1027,27616 -#define TRY_CLAUSE4_END TRY_CLAUSE4_END1031,27684 -#define RETRY_INSTINIT RETRY_INSTINIT1037,27819 -#define RETRY_FROZEN RETRY_FROZEN1044,28040 -#define RETRY_NOFROZEN RETRY_NOFROZEN1048,28157 -#define RETRY_END RETRY_END1052,28231 -#define RETRY2_INSTINIT RETRY2_INSTINIT1059,28395 -#define RETRY2_FROZEN RETRY2_FROZEN1068,28656 -#define RETRY2_NOFROZEN RETRY2_NOFROZEN1072,28774 -#define RETRY2_END RETRY2_END1076,28849 -#define RETRY3_INSTINIT RETRY3_INSTINIT1082,28974 -#define RETRY3_FROZEN RETRY3_FROZEN1092,29266 -#define RETRY3_NOFROZEN RETRY3_NOFROZEN1096,29384 -#define RETRY3_END RETRY3_END1100,29459 -#define RETRY4_INSTINIT RETRY4_INSTINIT1106,29584 -#define RETRY4_FROZEN RETRY4_FROZEN1117,29907 -#define RETRY4_NOFROZEN RETRY4_NOFROZEN1121,30025 -#define RETRY4_END RETRY4_END1125,30100 -#define TRUST_INSTINIT TRUST_INSTINIT1131,30225 -#define TRUST_IFOK_INIT TRUST_IFOK_INIT1136,30329 -#define TRUST_IFOK_FROZEN TRUST_IFOK_FROZEN1141,30508 -#define TRUST_IFOK_END TRUST_IFOK_END1144,30598 -#define TRUST_NOIF_INIT TRUST_NOIF_INIT1150,30687 -#define TRUST_NOIF_FROZEN TRUST_NOIF_FROZEN1156,30816 -#define TRUST_END TRUST_END1160,30908 -#define TRY_IN_INSTINIT TRY_IN_INSTINIT1169,31107 -#define TRY_IN_END TRY_IN_END1175,31275 -#define SPY_OR_TRYMARK_INSTINIT SPY_OR_TRYMARK_INSTINIT1178,31332 -#define TRY_AND_MARK_INSTINIT TRY_AND_MARK_INSTINIT1184,31603 -#define TRY_AND_MARK_YAPOR_THREADS_YAPOR TRY_AND_MARK_YAPOR_THREADS_YAPOR1190,31756 -#define TRY_AND_MARK_YAPOR_THREADS_NOYAPOR_IF TRY_AND_MARK_YAPOR_THREADS_NOYAPOR_IF1194,31838 -#define TRY_AND_MARK_NOYAPOR_NOTHREADS TRY_AND_MARK_NOYAPOR_NOTHREADS1209,32300 -#define TRY_AND_MARK_SET_LOAD TRY_AND_MARK_SET_LOAD1223,32709 -#define TRY_AND_MARK_POST_SET_LOAD TRY_AND_MARK_POST_SET_LOAD1227,32781 -#define TRY_AND_MARK_MULTIPLE_STACKS TRY_AND_MARK_MULTIPLE_STACKS1232,32891 -#define TRY_AND_MARK_NOMULTIPLE_STACKS_IF TRY_AND_MARK_NOMULTIPLE_STACKS_IF1237,33098 -#define TRY_AND_MARK_END TRY_AND_MARK_END1244,33323 -#define COUNT_RETRY_AND_MARK_INSTINIT COUNT_RETRY_AND_MARK_INSTINIT1248,33415 -#define PROFILED_RETRY_AND_MARK_INSTINIT PROFILED_RETRY_AND_MARK_INSTINIT1266,33866 -#define RETRY_AND_MARK_INSTINITRETRY_AND_MARK_INSTINIT1271,34150 -#define RETRY_AND_MARK_YAPOR RETRY_AND_MARK_YAPOR1274,34202 -#define RETRY_AND_MARK_POST_YAPOR RETRY_AND_MARK_POST_YAPOR1278,34272 -#define RETRY_AND_MARK_FROZEN RETRY_AND_MARK_FROZEN1288,34602 -#define RETRY_AND_MARK_NOFROZEN RETRY_AND_MARK_NOFROZEN1292,34728 -#define RETRY_AND_MARK_POST_FROZEN RETRY_AND_MARK_POST_FROZEN1296,34811 -#define RETRY_AND_MARK_MULTIPLE_STACKS RETRY_AND_MARK_MULTIPLE_STACKS1301,34921 -#define RETRY_AND_MARK_NOMULTIPLE_STACKS_IF RETRY_AND_MARK_NOMULTIPLE_STACKS_IF1306,35130 -#define RETRY_AND_MARK_END RETRY_AND_MARK_END1313,35357 - -JIT/HPP/indexing_std_d.h,6394 -#define TRY_ME_INSTINIT TRY_ME_INSTINIT1,0 -#define TRY_ME_YAPOR TRY_ME_YAPOR12,337 -#define TRY_ME_END TRY_ME_END16,400 -#define RETRY_ME_INSTINIT RETRY_ME_INSTINIT23,569 -#define RETRY_ME_FROZEN RETRY_ME_FROZEN30,798 -#define RETRY_ME_NOFROZEN RETRY_ME_NOFROZEN34,918 -#define RETRY_ME_END RETRY_ME_END38,995 -#define TRUST_ME_INSTINIT TRUST_ME_INSTINIT44,1131 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF50,1269 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF65,1720 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF80,2117 -#define TRUST_ME_IF TRUST_ME_IF88,2333 -#define TRUST_ME_END TRUST_ME_END97,2518 -#define ENTER_PROFILING_INSTINIT ENTER_PROFILING_INSTINIT103,2654 -#define RETRY_PROFILED_INSTINIT RETRY_PROFILED_INSTINIT111,2974 -#define PROFILED_RETRY_ME_INSTINIT PROFILED_RETRY_ME_INSTINIT119,3293 -#define PROFILED_RETRY_ME_FROZEN PROFILED_RETRY_ME_FROZEN129,3706 -#define PROFILED_RETRY_ME_NOFROZEN PROFILED_RETRY_ME_NOFROZEN133,3835 -#define PROFILED_RETRY_ME_END PROFILED_RETRY_ME_END137,3921 -#define PROFILED_TRUST_ME_INSTINIT PROFILED_TRUST_ME_INSTINIT143,4066 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF149,4213 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF164,4650 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF179,5026 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF187,5233 -#define PROFILED_TRUST_ME_END PROFILED_TRUST_ME_END196,5415 -#define PROFILED_RETRY_LOGICAL_INSTINIT PROFILED_RETRY_LOGICAL_INSTINIT205,5747 -#define PROFILED_RETRY_LOGICAL_THREADS PROFILED_RETRY_LOGICAL_THREADS225,6428 -#define PROFILED_RETRY_LOGICAL_POST_THREADS PROFILED_RETRY_LOGICAL_POST_THREADS229,6516 -#define PROFILED_RETRY_LOGICAL_FROZEN PROFILED_RETRY_LOGICAL_FROZEN233,6630 -#define PROFILED_RETRY_LOGICAL_NOFROZEN PROFILED_RETRY_LOGICAL_NOFROZEN237,6754 -#define PROFILED_RETRY_LOGICAL_END PROFILED_RETRY_LOGICAL_END241,6840 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT252,7095 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT310,8706 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT369,10273 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT421,11678 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT477,13136 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT540,14917 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT603,16650 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT659,18221 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT719,19828 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT780,21577 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT842,23282 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT897,24825 -#define PROFILED_TRUST_LOGICAL_END PROFILED_TRUST_LOGICAL_END955,26398 -#define TRY_CLAUSE_INSTINIT TRY_CLAUSE_INSTINIT958,26487 -#define TRY_CLAUSE_YAPOR TRY_CLAUSE_YAPOR970,26873 -#define TRY_CLAUSE_END TRY_CLAUSE_END974,26940 -#define TRY_CLAUSE2_INSTINIT TRY_CLAUSE2_INSTINIT980,27073 -#define TRY_CLAUSE2_YAPOR TRY_CLAUSE2_YAPOR998,27523 -#define TRY_CLAUSE2_END TRY_CLAUSE2_END1002,27591 -#define TRY_CLAUSE3_INSTINIT TRY_CLAUSE3_INSTINIT1008,27726 -#define TRY_CLAUSE3_YAPOR TRY_CLAUSE3_YAPOR1024,28143 -#define TRY_CLAUSE3_END TRY_CLAUSE3_END1028,28211 -#define TRY_CLAUSE4_INSTINIT TRY_CLAUSE4_INSTINIT1034,28346 -#define TRY_CLAUSE4_YAPOR TRY_CLAUSE4_YAPOR1051,28792 -#define TRY_CLAUSE4_END TRY_CLAUSE4_END1055,28860 -#define RETRY_INSTINIT RETRY_INSTINIT1061,28995 -#define RETRY_FROZEN RETRY_FROZEN1069,29265 -#define RETRY_NOFROZEN RETRY_NOFROZEN1073,29382 -#define RETRY_END RETRY_END1077,29456 -#define RETRY2_INSTINIT RETRY2_INSTINIT1084,29620 -#define RETRY2_FROZEN RETRY2_FROZEN1094,29930 -#define RETRY2_NOFROZEN RETRY2_NOFROZEN1098,30048 -#define RETRY2_END RETRY2_END1102,30123 -#define RETRY3_INSTINIT RETRY3_INSTINIT1108,30248 -#define RETRY3_FROZEN RETRY3_FROZEN1119,30589 -#define RETRY3_NOFROZEN RETRY3_NOFROZEN1123,30707 -#define RETRY3_END RETRY3_END1127,30782 -#define RETRY4_INSTINIT RETRY4_INSTINIT1133,30907 -#define RETRY4_FROZEN RETRY4_FROZEN1145,31279 -#define RETRY4_NOFROZEN RETRY4_NOFROZEN1149,31397 -#define RETRY4_END RETRY4_END1153,31472 -#define TRUST_INSTINIT TRUST_INSTINIT1159,31597 -#define TRUST_IFOK_INIT TRUST_IFOK_INIT1165,31750 -#define TRUST_IFOK_FROZEN TRUST_IFOK_FROZEN1170,31929 -#define TRUST_IFOK_END TRUST_IFOK_END1173,32019 -#define TRUST_NOIF_INIT TRUST_NOIF_INIT1179,32108 -#define TRUST_NOIF_FROZEN TRUST_NOIF_FROZEN1185,32237 -#define TRUST_END TRUST_END1189,32329 -#define TRY_IN_INSTINIT TRY_IN_INSTINIT1198,32528 -#define TRY_IN_END TRY_IN_END1205,32745 -#define SPY_OR_TRYMARK_INSTINIT SPY_OR_TRYMARK_INSTINIT1208,32802 -#define TRY_AND_MARK_INSTINIT TRY_AND_MARK_INSTINIT1215,33122 -#define TRY_AND_MARK_YAPOR_THREADS_YAPOR TRY_AND_MARK_YAPOR_THREADS_YAPOR1222,33324 -#define TRY_AND_MARK_YAPOR_THREADS_NOYAPOR_IF TRY_AND_MARK_YAPOR_THREADS_NOYAPOR_IF1226,33406 -#define TRY_AND_MARK_NOYAPOR_NOTHREADS TRY_AND_MARK_NOYAPOR_NOTHREADS1241,33868 -#define TRY_AND_MARK_SET_LOAD TRY_AND_MARK_SET_LOAD1255,34277 -#define TRY_AND_MARK_POST_SET_LOAD TRY_AND_MARK_POST_SET_LOAD1259,34349 -#define TRY_AND_MARK_MULTIPLE_STACKS TRY_AND_MARK_MULTIPLE_STACKS1264,34459 -#define TRY_AND_MARK_NOMULTIPLE_STACKS_IF TRY_AND_MARK_NOMULTIPLE_STACKS_IF1269,34666 -#define TRY_AND_MARK_END TRY_AND_MARK_END1276,34891 -#define COUNT_RETRY_AND_MARK_INSTINIT COUNT_RETRY_AND_MARK_INSTINIT1280,34983 -#define PROFILED_RETRY_AND_MARK_INSTINIT PROFILED_RETRY_AND_MARK_INSTINIT1299,35483 -#define RETRY_AND_MARK_INSTINITRETRY_AND_MARK_INSTINIT1305,35816 -#define RETRY_AND_MARK_YAPOR RETRY_AND_MARK_YAPOR1308,35868 -#define RETRY_AND_MARK_POST_YAPOR RETRY_AND_MARK_POST_YAPOR1312,35938 -#define RETRY_AND_MARK_FROZEN RETRY_AND_MARK_FROZEN1322,36268 -#define RETRY_AND_MARK_NOFROZEN RETRY_AND_MARK_NOFROZEN1326,36394 -#define RETRY_AND_MARK_POST_FROZEN RETRY_AND_MARK_POST_FROZEN1330,36477 -#define RETRY_AND_MARK_MULTIPLE_STACKS RETRY_AND_MARK_MULTIPLE_STACKS1335,36587 -#define RETRY_AND_MARK_NOMULTIPLE_STACKS_IF RETRY_AND_MARK_NOMULTIPLE_STACKS_IF1340,36796 -#define RETRY_AND_MARK_END RETRY_AND_MARK_END1347,37023 - -JIT/HPP/IsGround.h,36 -IsGround(yamop* _p) {IsGround4,34 - -JIT/HPP/JIT.hpp,29 -#define JIT_HPPJIT_HPP3,17 - -JIT/HPP/JIT_Compiler.hpp,507 -#define JIT_COMPILER_HPPJIT_COMPILER_HPP2,25 -class JIT_Compiler {JIT_Compiler84,2789 -typedef struct jit_compiler JIT_Compiler;JIT_Compiler109,3773 -EXTERN void* (*Yap_JitCall)(JIT_Compiler* jc, yamop* p);Yap_JitCall111,3816 -INLINE_ONLY inline EXTERN void* call_JIT_Compiler(JIT_Compiler* jc, yamop* p) {call_JIT_Compiler115,3954 -EXTERN void (* Yap_llvmShutdown)(void ) ;Yap_llvmShutdown120,4121 -INLINE_ONLY inline EXTERN void shutdown_llvm(void ) { Yap_llvmShutdown (); }shutdown_llvm122,4164 - -JIT/HPP/jit_predicates.hpp,74 -#define UPPER_ENTRY(UPPER_ENTRY13,185 -Environment ExpEnv;ExpEnv37,788 - -JIT/HPP/lastop.h,38 -lastop_of(yamop* _p) {lastop_of4,34 - -JIT/HPP/native_header.h,0 - -JIT/HPP/native_header_d.h,0 - -JIT/HPP/nextof.hh,33 -NextOf(yamop** _p) {NextOf4,28 - -JIT/HPP/nextof.hpp,33 -NextOf(yamop** _p) {NextOf4,28 - -JIT/HPP/PassPrinters.h,104 -#define LLVM_TOOLS_OPT_PASSPRINTERS_HLLVM_TOOLS_OPT_PASSPRINTERS_H15,551 -namespace llvm {llvm17,590 - -JIT/HPP/PassPrinters.hh,6107 -struct CallGraphSCCPassPrinter : public CallGraphSCCPass {CallGraphSCCPassPrinter28,1803 - static char ID;ID29,1863 - static char ID;CallGraphSCCPassPrinter::ID29,1863 - const PassInfo *PassToPrint;PassToPrint30,1882 - const PassInfo *PassToPrint;CallGraphSCCPassPrinter::PassToPrint30,1882 - std::string PassName;PassName31,1914 - std::string PassName;CallGraphSCCPassPrinter::PassName31,1914 - CallGraphSCCPassPrinter(const PassInfo *PassInfo) :CallGraphSCCPassPrinter33,1941 - CallGraphSCCPassPrinter(const PassInfo *PassInfo) :CallGraphSCCPassPrinter::CallGraphSCCPassPrinter33,1941 - virtual bool runOnSCC(CallGraphSCC &SCC) {runOnSCC39,2188 - virtual bool runOnSCC(CallGraphSCC &SCC) {CallGraphSCCPassPrinter::runOnSCC39,2188 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName52,2664 - virtual const char *getPassName() const { return PassName.c_str(); }CallGraphSCCPassPrinter::getPassName52,2664 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage54,2738 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {CallGraphSCCPassPrinter::getAnalysisUsage54,2738 -char CallGraphSCCPassPrinter::ID = 0;ID60,2887 -char CallGraphSCCPassPrinter::ID = 0;CallGraphSCCPassPrinter::ID60,2887 -struct ModulePassPrinter : public ModulePass {ModulePassPrinter62,2928 - static char ID;ID63,2976 - static char ID;ModulePassPrinter::ID63,2976 - const PassInfo *PassToPrint;PassToPrint64,2995 - const PassInfo *PassToPrint;ModulePassPrinter::PassToPrint64,2995 - std::string PassName;PassName65,3027 - std::string PassName;ModulePassPrinter::PassName65,3027 - ModulePassPrinter(const PassInfo *PassInfo)ModulePassPrinter67,3054 - ModulePassPrinter(const PassInfo *PassInfo)ModulePassPrinter::ModulePassPrinter67,3054 - virtual bool runOnModule(Module &M) {runOnModule73,3283 - virtual bool runOnModule(Module &M) {ModulePassPrinter::runOnModule73,3283 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName81,3532 - virtual const char *getPassName() const { return PassName.c_str(); }ModulePassPrinter::getPassName81,3532 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage83,3606 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {ModulePassPrinter::getAnalysisUsage83,3606 -char ModulePassPrinter::ID = 0;ID89,3755 -char ModulePassPrinter::ID = 0;ModulePassPrinter::ID89,3755 -struct FunctionPassPrinter : public FunctionPass {FunctionPassPrinter91,3790 - const PassInfo *PassToPrint;PassToPrint92,3841 - const PassInfo *PassToPrint;FunctionPassPrinter::PassToPrint92,3841 - static char ID;ID93,3872 - static char ID;FunctionPassPrinter::ID93,3872 - std::string PassName;PassName94,3890 - std::string PassName;FunctionPassPrinter::PassName94,3890 - FunctionPassPrinter(const PassInfo *PassInfo)FunctionPassPrinter96,3915 - FunctionPassPrinter(const PassInfo *PassInfo)FunctionPassPrinter::FunctionPassPrinter96,3915 - virtual bool runOnFunction(Function &F) {runOnFunction102,4144 - virtual bool runOnFunction(Function &F) {FunctionPassPrinter::runOnFunction102,4144 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName112,4459 - virtual const char *getPassName() const { return PassName.c_str(); }FunctionPassPrinter::getPassName112,4459 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage114,4531 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {FunctionPassPrinter::getAnalysisUsage114,4531 -char FunctionPassPrinter::ID = 0;ID120,4674 -char FunctionPassPrinter::ID = 0;FunctionPassPrinter::ID120,4674 -struct LoopPassPrinter : public LoopPass {LoopPassPrinter122,4709 - static char ID;ID123,4752 - static char ID;LoopPassPrinter::ID123,4752 - const PassInfo *PassToPrint;PassToPrint124,4770 - const PassInfo *PassToPrint;LoopPassPrinter::PassToPrint124,4770 - std::string PassName;PassName125,4801 - std::string PassName;LoopPassPrinter::PassName125,4801 - LoopPassPrinter(const PassInfo *PassInfo) :LoopPassPrinter127,4826 - LoopPassPrinter(const PassInfo *PassInfo) :LoopPassPrinter::LoopPassPrinter127,4826 - virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {runOnLoop134,5044 - virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {LoopPassPrinter::runOnLoop134,5044 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName143,5363 - virtual const char *getPassName() const { return PassName.c_str(); }LoopPassPrinter::getPassName143,5363 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage145,5435 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {LoopPassPrinter::getAnalysisUsage145,5435 -char LoopPassPrinter::ID = 0;ID151,5578 -char LoopPassPrinter::ID = 0;LoopPassPrinter::ID151,5578 -struct RegionPassPrinter : public RegionPass {RegionPassPrinter153,5609 - static char ID;ID154,5656 - static char ID;RegionPassPrinter::ID154,5656 - const PassInfo *PassToPrint;PassToPrint155,5674 - const PassInfo *PassToPrint;RegionPassPrinter::PassToPrint155,5674 - std::string PassName;PassName156,5705 - std::string PassName;RegionPassPrinter::PassName156,5705 - RegionPassPrinter(const PassInfo *PassInfo) : RegionPass(ID),RegionPassPrinter158,5730 - RegionPassPrinter(const PassInfo *PassInfo) : RegionPass(ID),RegionPassPrinter::RegionPassPrinter158,5730 - virtual bool runOnRegion(Region *R, RGPassManager &RGM) {runOnRegion164,5947 - virtual bool runOnRegion(Region *R, RGPassManager &RGM) {RegionPassPrinter::runOnRegion164,5947 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName175,6391 - virtual const char *getPassName() const { return PassName.c_str(); }RegionPassPrinter::getPassName175,6391 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage177,6463 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {RegionPassPrinter::getAnalysisUsage177,6463 -char RegionPassPrinter::ID = 0;ID183,6606 -char RegionPassPrinter::ID = 0;RegionPassPrinter::ID183,6606 - -JIT/HPP/PassPrinters.hpp,6077 -struct CallGraphSCCPassPrinter : public CallGraphSCCPass {CallGraphSCCPassPrinter28,1802 - static char ID;ID29,1862 - static char ID;CallGraphSCCPassPrinter::ID29,1862 - const PassInfo *PassToPrint;PassToPrint30,1881 - const PassInfo *PassToPrint;CallGraphSCCPassPrinter::PassToPrint30,1881 - std::string PassName;PassName31,1913 - std::string PassName;CallGraphSCCPassPrinter::PassName31,1913 - CallGraphSCCPassPrinter(const PassInfo *PInfo) :CallGraphSCCPassPrinter33,1940 - CallGraphSCCPassPrinter(const PassInfo *PInfo) :CallGraphSCCPassPrinter::CallGraphSCCPassPrinter33,1940 - virtual bool runOnSCC(CallGraphSCC &SCC) {runOnSCC39,2181 - virtual bool runOnSCC(CallGraphSCC &SCC) {CallGraphSCCPassPrinter::runOnSCC39,2181 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName52,2657 - virtual const char *getPassName() const { return PassName.c_str(); }CallGraphSCCPassPrinter::getPassName52,2657 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage54,2731 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {CallGraphSCCPassPrinter::getAnalysisUsage54,2731 -char CallGraphSCCPassPrinter::ID = 0;ID60,2880 -char CallGraphSCCPassPrinter::ID = 0;CallGraphSCCPassPrinter::ID60,2880 -struct ModulePassPrinter : public ModulePass {ModulePassPrinter62,2921 - static char ID;ID63,2969 - static char ID;ModulePassPrinter::ID63,2969 - const PassInfo *PassToPrint;PassToPrint64,2988 - const PassInfo *PassToPrint;ModulePassPrinter::PassToPrint64,2988 - std::string PassName;PassName65,3020 - std::string PassName;ModulePassPrinter::PassName65,3020 - ModulePassPrinter(const PassInfo *PInfo)ModulePassPrinter67,3047 - ModulePassPrinter(const PassInfo *PInfo)ModulePassPrinter::ModulePassPrinter67,3047 - virtual bool runOnModule(Module &M) {runOnModule73,3270 - virtual bool runOnModule(Module &M) {ModulePassPrinter::runOnModule73,3270 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName81,3519 - virtual const char *getPassName() const { return PassName.c_str(); }ModulePassPrinter::getPassName81,3519 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage83,3593 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {ModulePassPrinter::getAnalysisUsage83,3593 -char ModulePassPrinter::ID = 0;ID89,3742 -char ModulePassPrinter::ID = 0;ModulePassPrinter::ID89,3742 -struct FunctionPassPrinter : public FunctionPass {FunctionPassPrinter91,3777 - const PassInfo *PassToPrint;PassToPrint92,3829 - const PassInfo *PassToPrint;FunctionPassPrinter::PassToPrint92,3829 - static char ID;ID93,3861 - static char ID;FunctionPassPrinter::ID93,3861 - std::string PassName;PassName94,3880 - std::string PassName;FunctionPassPrinter::PassName94,3880 - FunctionPassPrinter(const PassInfo *PInfo)FunctionPassPrinter96,3907 - FunctionPassPrinter(const PassInfo *PInfo)FunctionPassPrinter::FunctionPassPrinter96,3907 - virtual bool runOnFunction(Function &F) {runOnFunction102,4136 - virtual bool runOnFunction(Function &F) {FunctionPassPrinter::runOnFunction102,4136 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName112,4461 - virtual const char *getPassName() const { return PassName.c_str(); }FunctionPassPrinter::getPassName112,4461 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage114,4535 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {FunctionPassPrinter::getAnalysisUsage114,4535 -char FunctionPassPrinter::ID = 0;ID120,4684 -char FunctionPassPrinter::ID = 0;FunctionPassPrinter::ID120,4684 -struct LoopPassPrinter : public LoopPass {LoopPassPrinter122,4721 - static char ID;ID123,4765 - static char ID;LoopPassPrinter::ID123,4765 - const PassInfo *PassToPrint;PassToPrint124,4784 - const PassInfo *PassToPrint;LoopPassPrinter::PassToPrint124,4784 - std::string PassName;PassName125,4816 - std::string PassName;LoopPassPrinter::PassName125,4816 - LoopPassPrinter(const PassInfo *PInfo) :LoopPassPrinter127,4843 - LoopPassPrinter(const PassInfo *PInfo) :LoopPassPrinter::LoopPassPrinter127,4843 - virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {runOnLoop134,5062 - virtual bool runOnLoop(Loop *L, LPPassManager &LPM) {LoopPassPrinter::runOnLoop134,5062 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName143,5390 - virtual const char *getPassName() const { return PassName.c_str(); }LoopPassPrinter::getPassName143,5390 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage145,5464 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {LoopPassPrinter::getAnalysisUsage145,5464 -char LoopPassPrinter::ID = 0;ID151,5613 -char LoopPassPrinter::ID = 0;LoopPassPrinter::ID151,5613 -struct RegionPassPrinter : public RegionPass {RegionPassPrinter153,5646 - static char ID;ID154,5694 - static char ID;RegionPassPrinter::ID154,5694 - const PassInfo *PassToPrint;PassToPrint155,5713 - const PassInfo *PassToPrint;RegionPassPrinter::PassToPrint155,5713 - std::string PassName;PassName156,5745 - std::string PassName;RegionPassPrinter::PassName156,5745 - RegionPassPrinter(const PassInfo *PInfo) : RegionPass(ID),RegionPassPrinter158,5772 - RegionPassPrinter(const PassInfo *PInfo) : RegionPass(ID),RegionPassPrinter::RegionPassPrinter158,5772 - virtual bool runOnRegion(Region *R, RGPassManager &RGM) {runOnRegion164,5989 - virtual bool runOnRegion(Region *R, RGPassManager &RGM) {RegionPassPrinter::runOnRegion164,5989 - virtual const char *getPassName() const { return PassName.c_str(); }getPassName175,6444 - virtual const char *getPassName() const { return PassName.c_str(); }RegionPassPrinter::getPassName175,6444 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {getAnalysisUsage177,6518 - virtual void getAnalysisUsage(AnalysisUsage &AU) const {RegionPassPrinter::getAnalysisUsage177,6518 -char RegionPassPrinter::ID = 0;ID183,6667 -char RegionPassPrinter::ID = 0;RegionPassPrinter::ID183,6667 - -JIT/HPP/print_op.hh,128 -print_op(char* prepend_term, op_numbers op, char* append_term) {print_op4,47 -print_nop(op_numbers op) {print_nop3179,107890 - -JIT/HPP/print_op.hpp,128 -print_op(char* prepend_term, op_numbers op, char* append_term) {print_op4,47 -print_nop(op_numbers op) {print_nop3179,107890 - -JIT/HPP/print_preg.h,40 -print_preg(yamop* _p) {print_preg4,34 - -JIT/HPP/printblock.h,46 -print_block(YAP_BBs block) {print_block2,19 - -JIT/HPP/processa.cpp,73 -#define NFILES NFILES9,127 -int main(int argc, char **argv)main25,512 - -JIT/HPP/singlecode_basics.h,483 -#define check_stack_on_fail check_stack_on_fail2,63 -#define check_stack_on_fail check_stack_on_fail5,258 -#define GONEXT(GONEXT9,435 -#define GONEXTW(GONEXTW13,517 -#define YAAM_UnifyBound_TEST_ATTACHED(YAAM_UnifyBound_TEST_ATTACHED17,600 -#define YAAM_UnifyBound(YAAM_UnifyBound25,1050 -#define _native_me_instinit _native_me_instinit53,2814 -#define _op_fail_instinit _op_fail_instinit58,2914 -#define _op_fail_instinit _op_fail_instinit68,3133 -#define I_R I_R76,3266 - -JIT/HPP/singlecode_call.h,5771 -#define check_stack_on_call check_stack_on_call2,64 -#define check_stack_on_call check_stack_on_call5,261 -#define check_stack_on_execute check_stack_on_execute10,505 -#define check_stack_on_execute check_stack_on_execute13,705 -#define check_stack_on_dexecute check_stack_on_dexecute18,952 -#define check_stack_on_dexecute check_stack_on_dexecute21,1153 -#define check_stack_on_deallocate check_stack_on_deallocate26,1401 -#define check_stack_on_deallocate check_stack_on_deallocate29,1604 -#define _procceed_instinit _procceed_instinit34,1810 -#define _procceed_instinit _procceed_instinit44,2086 -#define _fcall_instinit _fcall_instinit55,2349 -#define _fcall_instinit _fcall_instinit63,2602 -#define _call_instinit _call_instinit77,2941 -#define _call_instinit _call_instinit115,3937 -#define _call_instinit _call_instinit153,4939 -#define _call_instinit _call_instinit191,5918 -#define _call_instinit _call_instinit231,6937 -#define _call_instinit _call_instinit266,7843 -#define _call_instinit _call_instinit305,8831 -#define _call_instinit _call_instinit332,9564 -#define _call_instinit _call_instinit359,10303 -#define _call_instinit _call_instinit386,11019 -#define _call_instinit _call_instinit415,11775 -#define _call_instinit _call_instinit439,12418 -#define _call_instinit _call_instinit469,13189 -#define _call_instinit _call_instinit508,14210 -#define _call_instinit _call_instinit547,15237 -#define _call_instinit _call_instinit586,16241 -#define _call_instinit _call_instinit627,17285 -#define _call_instinit _call_instinit663,18216 -#define _call_instinit _call_instinit703,19229 -#define _call_instinit _call_instinit731,19987 -#define _call_instinit _call_instinit759,20751 -#define _call_instinit _call_instinit787,21492 -#define _call_instinit _call_instinit817,22273 -#define _call_instinit _call_instinit842,22941 -#define _call_instinit _call_instinit875,23788 -#define _call_instinit _call_instinit910,24673 -#define _call_instinit _call_instinit945,25564 -#define _call_instinit _call_instinit980,26432 -#define _call_instinit _call_instinit1017,27340 -#define _call_instinit _call_instinit1049,28135 -#define _call_instinit _call_instinit1085,29012 -#define _call_instinit _call_instinit1109,29634 -#define _call_instinit _call_instinit1133,30262 -#define _call_instinit _call_instinit1157,30867 -#define _call_instinit _call_instinit1183,31512 -#define _call_instinit _call_instinit1204,32044 -#define _call_instinit _call_instinit1231,32704 -#define _call_instinit _call_instinit1267,33614 -#define _call_instinit _call_instinit1303,34530 -#define _call_instinit _call_instinit1339,35423 -#define _call_instinit _call_instinit1377,36356 -#define _call_instinit _call_instinit1410,37176 -#define _call_instinit _call_instinit1447,38078 -#define _call_instinit _call_instinit1472,38725 -#define _call_instinit _call_instinit1497,39378 -#define _call_instinit _call_instinit1522,40008 -#define _call_instinit _call_instinit1549,40678 -#define _call_instinit _call_instinit1571,41235 -#define _execute_instinit _execute_instinit1600,41945 -#define _execute_instinit _execute_instinit1631,42638 -#define _execute_instinit _execute_instinit1652,43092 -#define _execute_instinit _execute_instinit1684,43813 -#define _execute_instinit _execute_instinit1708,44346 -#define _execute_instinit _execute_instinit1736,44952 -#define _execute_instinit _execute_instinit1754,45319 -#define _execute_instinit _execute_instinit1783,45953 -#define _dexecute_instinit _dexecute_instinit1808,46467 -#define _dexecute_instinit _dexecute_instinit1848,47483 -#define _dexecute_instinit _dexecute_instinit1889,48507 -#define _dexecute_instinit _dexecute_instinit1929,49496 -#define _dexecute_instinit _dexecute_instinit1957,50250 -#define _dexecute_instinit _dexecute_instinit1986,51012 -#define _dexecute_instinit _dexecute_instinit2016,51785 -#define _dexecute_instinit _dexecute_instinit2057,52830 -#define _dexecute_instinit _dexecute_instinit2099,53883 -#define _dexecute_instinit _dexecute_instinit2140,54901 -#define _dexecute_instinit _dexecute_instinit2169,55684 -#define _dexecute_instinit _dexecute_instinit2199,56475 -#define _dexecute_instinit _dexecute_instinit2232,57328 -#define _dexecute_instinit _dexecute_instinit2269,58239 -#define _dexecute_instinit _dexecute_instinit2307,59158 -#define _dexecute_instinit _dexecute_instinit2344,60042 -#define _dexecute_instinit _dexecute_instinit2369,60691 -#define _dexecute_instinit _dexecute_instinit2395,61348 -#define _dexecute_instinit _dexecute_instinit2422,62016 -#define _dexecute_instinit _dexecute_instinit2460,62956 -#define _dexecute_instinit _dexecute_instinit2499,63904 -#define _dexecute_instinit _dexecute_instinit2537,64817 -#define _dexecute_instinit _dexecute_instinit2563,65495 -#define _dexecute_instinit _dexecute_instinit2590,66181 -#define _allocate_instinit _allocate_instinit2618,66872 -#define _allocate_instinit _allocate_instinit2628,67188 -#define _deallocate_instinit _deallocate_instinit2642,67551 -#define _deallocate_instinit _deallocate_instinit2661,68170 -#define _deallocate_instinit _deallocate_instinit2683,68869 -#define _deallocate_instinit _deallocate_instinit2702,69471 -#define _deallocate_instinit _deallocate_instinit2725,70181 -#define _deallocate_instinit _deallocate_instinit2741,70715 -#define _deallocate_instinit _deallocate_instinit2763,71399 -#define _deallocate_instinit _deallocate_instinit2781,71982 -#define _deallocate_instinit _deallocate_instinit2802,72645 -#define _deallocate_instinit _deallocate_instinit2820,73211 -#define _deallocate_instinit _deallocate_instinit2842,73885 -#define _deallocate_instinit _deallocate_instinit2857,74383 - -JIT/HPP/singlecode_cpred.h,4383 -#define _call_cpred_instinit _call_cpred_instinit5,78 -#define _call_cpred_instinit _call_cpred_instinit37,953 -#define _call_cpred_instinit _call_cpred_instinit70,1842 -#define _call_cpred_instinit _call_cpred_instinit98,2627 -#define _call_cpred_instinit _call_cpred_instinit127,3394 -#define _call_cpred_instinit _call_cpred_instinit157,4175 -#define _call_cpred_instinit _call_cpred_instinit184,4898 -#define _call_cpred_instinit _call_cpred_instinit215,5741 -#define _call_cpred_instinit _call_cpred_instinit247,6598 -#define _call_cpred_instinit _call_cpred_instinit274,7351 -#define _call_cpred_instinit _call_cpred_instinit302,8086 -#define _call_cpred_instinit _call_cpred_instinit331,8835 -#define _execute_cpred_instinit _execute_cpred_instinit361,9582 -#define _execute_cpred_instinit _execute_cpred_instinit422,10842 -#define _execute_cpred_instinit _execute_cpred_instinit484,12116 -#define _execute_cpred_instinit _execute_cpred_instinit540,13296 -#define _execute_cpred_instinit _execute_cpred_instinit588,14264 -#define _execute_cpred_instinit _execute_cpred_instinit637,15246 -#define _execute_cpred_instinit _execute_cpred_instinit682,16178 -#define _execute_cpred_instinit _execute_cpred_instinit744,17465 -#define _execute_cpred_instinit _execute_cpred_instinit807,18766 -#define _execute_cpred_instinit _execute_cpred_instinit864,19973 -#define _execute_cpred_instinit _execute_cpred_instinit913,20968 -#define _execute_cpred_instinit _execute_cpred_instinit963,21977 -#define _execute_cpred_instinit _execute_cpred_instinit1011,22977 -#define _execute_cpred_instinit _execute_cpred_instinit1071,24208 -#define _execute_cpred_instinit _execute_cpred_instinit1132,25453 -#define _execute_cpred_instinit _execute_cpred_instinit1187,26604 -#define _execute_cpred_instinit _execute_cpred_instinit1234,27543 -#define _execute_cpred_instinit _execute_cpred_instinit1282,28496 -#define _execute_cpred_instinit _execute_cpred_instinit1326,29399 -#define _execute_cpred_instinit _execute_cpred_instinit1387,30657 -#define _execute_cpred_instinit _execute_cpred_instinit1449,31929 -#define _execute_cpred_instinit _execute_cpred_instinit1505,33107 -#define _execute_cpred_instinit _execute_cpred_instinit1553,34073 -#define _execute_cpred_instinit _execute_cpred_instinit1602,35053 -#define _execute_cpred_instinit _execute_cpred_instinit1651,36070 -#define _execute_cpred_instinit _execute_cpred_instinit1709,37246 -#define _execute_cpred_instinit _execute_cpred_instinit1768,38436 -#define _execute_cpred_instinit _execute_cpred_instinit1821,39532 -#define _execute_cpred_instinit _execute_cpred_instinit1866,40416 -#define _execute_cpred_instinit _execute_cpred_instinit1912,41314 -#define _execute_cpred_instinit _execute_cpred_instinit1954,42162 -#define _execute_cpred_instinit _execute_cpred_instinit2013,43365 -#define _execute_cpred_instinit _execute_cpred_instinit2073,44582 -#define _execute_cpred_instinit _execute_cpred_instinit2127,45705 -#define _execute_cpred_instinit _execute_cpred_instinit2173,46616 -#define _execute_cpred_instinit _execute_cpred_instinit2220,47541 -#define _execute_cpred_instinit _execute_cpred_instinit2265,48457 -#define _execute_cpred_instinit _execute_cpred_instinit2322,49604 -#define _execute_cpred_instinit _execute_cpred_instinit2380,50765 -#define _execute_cpred_instinit _execute_cpred_instinit2432,51832 -#define _execute_cpred_instinit _execute_cpred_instinit2476,52687 -#define _execute_cpred_instinit _execute_cpred_instinit2521,53556 -#define _execute_cpred_instinit _execute_cpred_instinit2562,54375 -#define _execute_cpred_instinit _execute_cpred_instinit2620,55549 -#define _execute_cpred_instinit _execute_cpred_instinit2679,56737 -#define _execute_cpred_instinit _execute_cpred_instinit2732,57831 -#define _execute_cpred_instinit _execute_cpred_instinit2777,58713 -#define _execute_cpred_instinit _execute_cpred_instinit2823,59609 -#define _call_usercpred_instinit _call_usercpred_instinit2868,60514 -#define _call_usercpred_instinit _call_usercpred_instinit2912,61627 -#define _call_usercpred_instinit _call_usercpred_instinit2957,62757 -#define _call_usercpred_instinit _call_usercpred_instinit2998,63783 -#define _call_usercpred_instinit _call_usercpred_instinit3039,64796 -#define _call_usercpred_instinit _call_usercpred_instinit3081,65826 - -JIT/HPP/singlecode_cut.h,1556 -#define check_stack_on_cut check_stack_on_cut2,64 -#define check_stack_on_cut check_stack_on_cut5,260 -#define check_stack_on_cutt check_stack_on_cutt10,503 -#define check_stack_on_cutt check_stack_on_cutt13,700 -#define check_stack_on_commitx check_stack_on_commitx18,944 -#define check_stack_on_commitx check_stack_on_commitx21,1145 -#define _cut_instinit _cut_instinit26,1349 -#define _cut_instinit _cut_instinit40,1725 -#define _cut_t_instinit _cut_t_instinit50,2001 -#define _cut_t_instinit _cut_t_instinit64,2382 -#define CUT_E_INSTINITCUT_E_INSTINIT73,2640 -#define CUT_E_COROUTINING CUT_E_COROUTINING76,2686 -#define CUT_E_NOCOROUTINING CUT_E_NOCOROUTINING82,2808 -#define _save_b_x_instinit _save_b_x_instinit91,3098 -#define _save_b_x_instinit _save_b_x_instinit99,3356 -#define _save_b_y_instinit _save_b_y_instinit109,3652 -#define _save_b_y_instinit _save_b_y_instinit114,3845 -#define _commit_b_x_instinit _commit_b_x_instinit122,4121 -#define _commit_b_x_instinit _commit_b_x_instinit148,4848 -#define _commit_b_x_instinit _commit_b_x_instinit176,5658 -#define _commit_b_x_instinit _commit_b_x_instinit198,6269 -#define COMMIT_B_Y_INSTINIT COMMIT_B_Y_INSTINIT222,6916 -#define COMMIT_B_Y_DO_COMMIT_B_Y COMMIT_B_Y_DO_COMMIT_B_Y226,7003 -#define COMMIT_B_Y_COMMIT_B_Y_NVAR COMMIT_B_Y_COMMIT_B_Y_NVAR229,7078 -#define COMMIT_B_Y_YSBA_FROZEN COMMIT_B_Y_YSBA_FROZEN235,7296 -#define COMMIT_B_Y_NOYSBA_NOFROZEN COMMIT_B_Y_NOYSBA_NOFROZEN238,7375 -#define COMMIT_B_Y_POST_YSBA_FROZEN COMMIT_B_Y_POST_YSBA_FROZEN242,7468 - -JIT/HPP/singlecode_get.h,6134 -#define _get_x_var_instinit _get_x_var_instinit1,0 -#define _get_y_var_instinit _get_y_var_instinit8,197 -#define _get_yy_var_instinit _get_yy_var_instinit17,460 -#define _get_x_val_instinit _get_x_val_instinit31,913 -#define _get_y_val_instinit _get_y_val_instinit74,2037 -#define _get_atom_instinit _get_atom_instinit115,3139 -#define _get_2atoms_instinit _get_2atoms_instinit140,3686 -#define _get_3atoms_instinit _get_3atoms_instinit181,4575 -#define GET_4ATOMS_INSTINIT GET_4ATOMS_INSTINIT238,5824 -#define GET_4ATOMS_GATOM_4UNK GET_4ATOMS_GATOM_4UNK243,5929 -#define GET_4ATOMS_GATOM_4B GET_4ATOMS_GATOM_4B246,6003 -#define GET_4ATOMS_GATOM_4BUNK GET_4ATOMS_GATOM_4BUNK249,6054 -#define GET_4ATOMS_GATOM_4C GET_4ATOMS_GATOM_4C252,6129 -#define GET_4ATOMS_GATOM_4CUNK GET_4ATOMS_GATOM_4CUNK255,6180 -#define GET_4ATOMS_GATOM_4D GET_4ATOMS_GATOM_4D258,6255 -#define GET_4ATOMS_EQUALS GET_4ATOMS_EQUALS262,6341 -#define GET_4ATOMS_GATOM_4DUNK GET_4ATOMS_GATOM_4DUNK266,6423 -#define GET_5ATOMS_INSTINIT GET_5ATOMS_INSTINIT271,6544 -#define GET_5ATOMS_GATOM_5UNK GET_5ATOMS_GATOM_5UNK276,6649 -#define GET_5ATOMS_GATOM_5B GET_5ATOMS_GATOM_5B279,6724 -#define GET_5ATOMS_GATOM_5BUNK GET_5ATOMS_GATOM_5BUNK282,6775 -#define GET_5ATOMS_GATOM_5C GET_5ATOMS_GATOM_5C285,6851 -#define GET_5ATOMS_GATOM_5CUNK GET_5ATOMS_GATOM_5CUNK288,6902 -#define GET_5ATOMS_GATOM_5D GET_5ATOMS_GATOM_5D291,6978 -#define GET_5ATOMS_GATOM_5DUNK GET_5ATOMS_GATOM_5DUNK294,7029 -#define GET_5ATOMS_GATOM_5E GET_5ATOMS_GATOM_5E297,7105 -#define GET_5ATOMS_EQUALS GET_5ATOMS_EQUALS301,7192 -#define GET_5ATOMS_GATOM_5EUNK GET_5ATOMS_GATOM_5EUNK305,7275 -#define GET_6ATOMS_INSTINIT GET_6ATOMS_INSTINIT310,7397 -#define GET_6ATOMS_GATOM_6UNK GET_6ATOMS_GATOM_6UNK315,7502 -#define GET_6ATOMS_GATOM_6B GET_6ATOMS_GATOM_6B318,7578 -#define GET_6ATOMS_GATOM_6BUNK GET_6ATOMS_GATOM_6BUNK321,7629 -#define GET_6ATOMS_GATOM_6C GET_6ATOMS_GATOM_6C324,7706 -#define GET_6ATOMS_GATOM_6CUNK GET_6ATOMS_GATOM_6CUNK327,7757 -#define GET_6ATOMS_GATOM_6D GET_6ATOMS_GATOM_6D330,7834 -#define GET_6ATOMS_GATOM_6DUNK GET_6ATOMS_GATOM_6DUNK333,7885 -#define GET_6ATOMS_GATOM_6E GET_6ATOMS_GATOM_6E336,7962 -#define GET_6ATOMS_GATOM_6EUNK GET_6ATOMS_GATOM_6EUNK339,8013 -#define GET_6ATOMS_GATOM_6F GET_6ATOMS_GATOM_6F342,8090 -#define GET_6ATOMS_EQUALS GET_6ATOMS_EQUALS346,8178 -#define GET_6ATOMS_GATOM_6FUNK GET_6ATOMS_GATOM_6FUNK350,8262 -#define _get_list_instinit _get_list_instinit355,8385 -#define _get_struct_instinit _get_struct_instinit385,9099 -#define _get_float_instinit _get_float_instinit422,10030 -#define _get_float_instinit _get_float_instinit460,10928 -#define GET_LONGINT_INSTINIT GET_LONGINT_INSTINIT498,11803 -#define GET_LONGINT_GLONGINT_NONVAR_INIT GET_LONGINT_GLONGINT_NONVAR_INIT503,11927 -#define GET_LONGINT_GLONGINT_NONVAR_END GET_LONGINT_GLONGINT_NONVAR_END507,12028 -#define GET_LONGINT_GLONGINT_UNK GET_LONGINT_GLONGINT_UNK512,12157 -#define GET_BIGINT_INSTINIT GET_BIGINT_INSTINIT521,12389 -#define GET_BIGINT_GBIGINT_NONVAR_INIT GET_BIGINT_GBIGINT_NONVAR_INIT526,12512 -#define GET_BIGINT_GBIGINT_NONVAR_END GET_BIGINT_GBIGINT_NONVAR_END530,12611 -#define GET_BIGINT_GBIGINT_UNK GET_BIGINT_GBIGINT_UNK535,12738 -#define GET_DBTERM_INSTINIT GET_DBTERM_INSTINIT544,12951 -#define GET_DBTERM_GDBTERM_NONVAR GET_DBTERM_GDBTERM_NONVAR549,13074 -#define GET_DBTERM_GDBTERM_UNK GET_DBTERM_GDBTERM_UNK555,13261 -#define _glist_valx_instinit _glist_valx_instinit563,13466 -#define GLIST_VALY_INSTINIT GLIST_VALY_INSTINIT629,15289 -#define GLIST_VALY_GLIST_VALY_READ GLIST_VALY_GLIST_VALY_READ634,15418 -#define GLIST_VALY_GLIST_VALY_NONVAR GLIST_VALY_GLIST_VALY_NONVAR643,15621 -#define GLIST_VALY_GLIST_VALY_NONVAR_NONVAR GLIST_VALY_GLIST_VALY_NONVAR_NONVAR648,15763 -#define GLIST_VALY_GLIST_VALY_NONVAR_UNK GLIST_VALY_GLIST_VALY_NONVAR_UNK653,15925 -#define GLIST_VALY_GLIST_VALY_UNK GLIST_VALY_GLIST_VALY_UNK657,16012 -#define GLIST_VALY_GLIST_VALY_VAR_NONVAR GLIST_VALY_GLIST_VALY_VAR_NONVAR661,16107 -#define GLIST_VALY_GLIST_VALY_VAR_UNK GLIST_VALY_GLIST_VALY_VAR_UNK666,16243 -#define GLIST_VALY_GLIST_VALY_WRITE GLIST_VALY_GLIST_VALY_WRITE672,16412 -#define _gl_void_varx_instinit _gl_void_varx_instinit685,16754 -#define GL_VOID_VARY_INSTINIT GL_VOID_VARY_INSTINIT720,17656 -#define GL_VOID_VARY_GLIST_VOID_VARY_READ GL_VOID_VARY_GLIST_VOID_VARY_READ726,17823 -#define GL_VOID_VARY_GLIST_VOID_VARY_WRITE GL_VOID_VARY_GLIST_VOID_VARY_WRITE740,18206 -#define GL_VOID_VALX_INSTINIT GL_VOID_VALX_INSTINIT751,18539 -#define GL_VOID_VALX_GLIST_VOID_VALX_READ GL_VOID_VALX_GLIST_VOID_VALX_READ757,18711 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR768,18960 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR771,19046 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK776,19235 -#define GL_VOID_VALX_GLIST_VOID_VALX_UNK GL_VOID_VALX_GLIST_VOID_VALX_UNK781,19371 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR784,19454 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK789,19597 -#define GL_VOID_VALX_GLIST_VOID_VALX_WRITE GL_VOID_VALX_GLIST_VOID_VALX_WRITE794,19748 -#define GL_VOID_VALY_INSTINIT GL_VOID_VALY_INSTINIT806,20059 -#define GL_VOID_VALY_GLIST_VOID_VALY_READ GL_VOID_VALY_GLIST_VOID_VALY_READ812,20230 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR823,20479 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR827,20584 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK832,20776 -#define GL_VOID_VALY_GLIST_VOID_VALY_UNK GL_VOID_VALY_GLIST_VOID_VALY_UNK837,20912 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR841,21014 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK846,21160 -#define GL_VOID_VALY_GLIST_VOID_VALY_WRITE GL_VOID_VALY_GLIST_VOID_VALY_WRITE851,21311 - -JIT/HPP/singlecode_misc.h,9398 -#define check_stack_on_either check_stack_on_either2,64 -#define check_stack_on_either check_stack_on_either5,263 -#define LUCK_LU_INSTINITLUCK_LU_INSTINIT9,445 -#define LOCK_LU_PARALLEL_PP LOCK_LU_PARALLEL_PP12,491 -#define LOCK_LU_PARALLEL LOCK_LU_PARALLEL15,536 -#define LOCK_LU_END LOCK_LU_END20,627 -#define UNLOCK_LU_INSTINITUNLOCK_LU_INSTINIT24,710 -#define UNLOCK_LU_YAPOR_THREADS UNLOCK_LU_YAPOR_THREADS27,780 -#define UNLOCK_LU_END UNLOCK_LU_END32,868 -#define ALLOC_FOR_LOGICAL_PRED_INSTINITALLOC_FOR_LOGICAL_PRED_INSTINIT36,953 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS39,1017 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL42,1128 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END45,1225 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT51,1365 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IFOK ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IFOK54,1483 -#define ALLOC_FOR_LOGICAL_PRED_END ALLOC_FOR_LOGICAL_PRED_END59,1603 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT66,1783 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT120,3212 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT175,4673 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT229,6120 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT286,7653 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT336,9002 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT387,10367 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT437,11734 -#define COPY_IDB_TERM_END COPY_IDB_TERM_END489,13149 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT492,13220 -#define UNIFY_IDB_TERM_NOUNIFYARG2_INIT UNIFY_IDB_TERM_NOUNIFYARG2_INIT496,13330 -#define UNIFY_IDB_TERM_NOUNIFYARG2_YAPOR_THREADS UNIFY_IDB_TERM_NOUNIFYARG2_YAPOR_THREADS501,13455 -#define UNIFY_IDB_TERM_NOUNIFYARG3_INIT UNIFY_IDB_TERM_NOUNIFYARG3_INIT505,13532 -#define UNIFY_IDB_TERM_NOUNIFYARG3_YAPOR_THREADS UNIFY_IDB_TERM_NOUNIFYARG3_YAPOR_THREADS510,13657 -#define UNIFY_IDB_TERM_SETREGS UNIFY_IDB_TERM_SETREGS514,13734 -#define UNIFY_IDB_TERM_MULTIPLE_STACKS UNIFY_IDB_TERM_MULTIPLE_STACKS518,13804 -#define UNIFY_IDB_TERM_NOMULTIPLE_STACKS_IFOK UNIFY_IDB_TERM_NOMULTIPLE_STACKS_IFOK524,13933 -#define UNIFY_IDB_TERM_POST_MULTIPLE UNIFY_IDB_TERM_POST_MULTIPLE529,14045 -#define UNIFY_IDB_TERM_DEPTH UNIFY_IDB_TERM_DEPTH534,14160 -#define UNIFY_IDB_TERM_END UNIFY_IDB_TERM_END538,14232 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT541,14282 -#define ENSURE_SPACE_FIRSTIFOK_INIT ENSURE_SPACE_FIRSTIFOK_INIT545,14399 -#define ENSURE_SPACE_FIRSTIFOK_DEPTH ENSURE_SPACE_FIRSTIFOK_DEPTH550,14528 -#define ENSURE_SPACE_FIRSTIFOK_END ENSURE_SPACE_FIRSTIFOK_END554,14605 -#define ENSURE_SPACE_SECONDIFOK ENSURE_SPACE_SECONDIFOK559,14744 -#define ENSURE_SPACE_NOSECONDIF ENSURE_SPACE_NOSECONDIF564,14877 -#define ENSURE_SPACE_NOFIRSTIF ENSURE_SPACE_NOFIRSTIF567,14931 -#define ENSURE_SPACE_END ENSURE_SPACE_END570,15006 -#define _jump_instinit _jump_instinit573,15054 -#define MOVE_BACK_INSTINIT MOVE_BACK_INSTINIT577,15134 -#define SKIP_INSTINIT SKIP_INSTINIT581,15270 -#define _either_instinit _either_instinit590,15454 -#define _either_instinit _either_instinit616,16317 -#define _either_instinit _either_instinit643,17186 -#define _either_instinit _either_instinit671,18054 -#define _either_instinit _either_instinit694,18809 -#define _either_instinit _either_instinit718,19570 -#define _either_instinit _either_instinit745,20381 -#define _either_instinit _either_instinit767,21127 -#define _either_instinit _either_instinit790,21879 -#define _either_instinit _either_instinit814,22630 -#define _either_instinit _either_instinit833,23268 -#define _either_instinit _either_instinit853,23912 -#define _either_instinit _either_instinit878,24646 -#define _either_instinit _either_instinit903,25481 -#define _either_instinit _either_instinit929,26322 -#define _either_instinit _either_instinit956,27162 -#define _either_instinit _either_instinit978,27889 -#define _either_instinit _either_instinit1001,28622 -#define _either_instinit _either_instinit1027,29405 -#define _either_instinit _either_instinit1048,30123 -#define _either_instinit _either_instinit1070,30847 -#define _either_instinit _either_instinit1093,31570 -#define _either_instinit _either_instinit1111,32180 -#define _either_instinit _either_instinit1130,32796 -#define OR_ELSE_INSTINIT OR_ELSE_INSTINIT1151,33420 -#define OR_ELSE_DEPTH OR_ELSE_DEPTH1157,33571 -#define OR_ELSE_POST_DEPTH OR_ELSE_POST_DEPTH1161,33634 -#define OR_ELSE_YAPOR OR_ELSE_YAPOR1165,33719 -#define OR_ELSE_END OR_ELSE_END1169,33808 -#define OR_LAST_INSTINIT OR_LAST_INSTINIT1175,33971 -#define OR_LAST_IFOK_INIT OR_LAST_IFOK_INIT1180,34064 -#define OR_LAST_IFOK_DEPTH OR_LAST_IFOK_DEPTH1186,34209 -#define OR_LAST_IFOK_END OR_LAST_IFOK_END1190,34274 -#define OR_LAST_NOIF_INIT OR_LAST_NOIF_INIT1194,34358 -#define OR_LAST_NOIF_DEPTH OR_LAST_NOIF_DEPTH1201,34513 -#define OR_LAST_NOIF_END OR_LAST_NOIF_END1205,34578 -#define OR_LAST_YAPOR OR_LAST_YAPOR1209,34653 -#define OR_LAST_NOYAPOR OR_LAST_NOYAPOR1213,34730 -#define OR_LAST_END OR_LAST_END1217,34806 -#define LOCK_PRED_INSTINIT LOCK_PRED_INSTINIT1221,34886 -#define LOCK_PRED_FIRSTIFOK LOCK_PRED_FIRSTIFOK1226,34996 -#define LOCK_PRED_SECONDTIFOK LOCK_PRED_SECONDTIFOK1230,35064 -#define LOCK_PRED_END LOCK_PRED_END1238,35235 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT1243,35365 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT1273,36015 -#define INDEX_PRED_END INDEX_PRED_END1291,36435 -#define THREAD_LOCAL_INSTINIT THREAD_LOCAL_INSTINIT1295,36513 -#define EXPAND_INDEX_INSTINIT EXPAND_INDEX_INSTINIT1303,36709 -#define EXPAND_INDEX_YAPOR_THREADS_NOPP EXPAND_INDEX_YAPOR_THREADS_NOPP1309,36887 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT1312,36951 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK1315,37028 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_END EXPAND_INDEX_YAPOR_THREADS_IFOK_END1318,37101 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS1323,37190 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS1327,37263 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG1333,37399 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG1337,37475 -#define EXPAND_INDEX_UNLOCK EXPAND_INDEX_UNLOCK1341,37592 -#define EXPAND_INDEX_END EXPAND_INDEX_END1345,37654 -#define EXPAND_CLAUSES_INSTINIT EXPAND_CLAUSES_INSTINIT1348,37697 -#define EXPAND_CLAUSES_YAPOR_THREADS_NOPP EXPAND_CLAUSES_YAPOR_THREADS_NOPP1354,37869 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT1357,37935 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK1360,38014 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END1363,38089 -#define EXPAND_CLAUSES_NOYAPOR_NOTHREADS EXPAND_CLAUSES_NOYAPOR_NOTHREADS1367,38163 -#define EXPAND_CLAUSES_UNLOCK EXPAND_CLAUSES_UNLOCK1375,38356 -#define EXPAND_CLAUSES_END EXPAND_CLAUSES_END1379,38420 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT1384,38530 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT1447,40179 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT1509,41800 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT1572,43453 -#define UNDEF_P_END UNDEF_P_END1634,45056 -#define SPY_PRED_INSTINIT SPY_PRED_INSTINIT1637,45115 -#define SPY_PRED_FIRSTIFOK SPY_PRED_FIRSTIFOK1643,45267 -#define SPY_PRED_SECONDIFOK_INIT SPY_PRED_SECONDIFOK_INIT1649,45400 -#define SPY_PRED_SECONDIFOK_FIRSTIFOK SPY_PRED_SECONDIFOK_FIRSTIFOK1655,45596 -#define SPY_PRED_SECONDIFOK_POST_FIRSTIF SPY_PRED_SECONDIFOK_POST_FIRSTIF1662,45769 -#define SPY_PRED_SECONDIFOK_SECONDIFOK SPY_PRED_SECONDIFOK_SECONDIFOK1665,45847 -#define SPY_PRED_SECONDIFOK_THIRDIFOK SPY_PRED_SECONDIFOK_THIRDIFOK1672,46027 -#define SPY_PRED_THIRDIFOK_INIT SPY_PRED_THIRDIFOK_INIT1677,46161 -#define SPY_PRED_THIRDIFOK_FIRSTIFOK SPY_PRED_THIRDIFOK_FIRSTIFOK1682,46326 -#define SPY_PRED_FOURTHIFOK SPY_PRED_FOURTHIFOK1687,46459 -#define SPY_PRED_POST_FOURTHIF SPY_PRED_POST_FOURTHIF1692,46577 -#define SPY_PRED_D0ISZERO SPY_PRED_D0ISZERO1696,46656 -#define SPY_PRED_D0ISNOZERO_INIT SPY_PRED_D0ISNOZERO_INIT1699,46738 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT1705,46878 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR1709,46964 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR1712,47037 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR1715,47114 -#define SPY_PRED_POST_IFS SPY_PRED_POST_IFS1721,47274 -#define SPY_PRED_THREADS_LOCK SPY_PRED_THREADS_LOCK1728,47426 -#define SPY_PRED_POST_LOCK SPY_PRED_POST_LOCK1732,47503 -#define SPY_PRED_THREADS_UNLOCK SPY_PRED_THREADS_UNLOCK1738,47630 -#define SPY_PRED_POST_UNLOCK SPY_PRED_POST_UNLOCK1742,47711 -#define SPY_PRED_LOW_LEVEL_TRACER SPY_PRED_LOW_LEVEL_TRACER1747,47800 -#define SPY_PRED_END SPY_PRED_END1751,47892 - -JIT/HPP/singlecode_pop.h,115 -#define POP_N_INIT POP_N_INIT1,0 -#define POP_N_END POP_N_END20,440 -#define _pop_instinit _pop_instinit23,495 - -JIT/HPP/singlecode_primitive_predicates.h,2947 -#define _p_integer_x_instinit _p_integer_x_instinit1,0 -#define _p_plus_vv_instinit _p_plus_vv_instinit34,828 -#define _p_plus_vc_instinit _p_plus_vc_instinit79,2054 -#define _p_plus_y_vv_instinit _p_plus_y_vv_instinit114,2970 -#define _p_plus_y_vc_instinit _p_plus_y_vc_instinit162,4287 -#define _p_minus_vv_instinit _p_minus_vv_instinit200,5292 -#define _p_times_vv_instinit _p_times_vv_instinit245,6528 -#define _p_times_vc_instinit _p_times_vc_instinit290,7753 -#define _p_div_vv_instinit _p_div_vv_instinit325,8669 -#define _p_and_vv_instinit _p_and_vv_instinit377,10036 -#define _p_and_vc_instinit _p_and_vc_instinit422,11256 -#define _p_sll_cv_instinit _p_sll_cv_instinit457,12169 -#define _p_slr_vc_instinit _p_slr_vc_instinit496,13130 -#define _call_bfunc_xx_instinit _call_bfunc_xx_instinit531,14004 -#define _call_bfunc_yx_instinit _call_bfunc_yx_instinit612,15997 -#define _call_bfunc_xy_instinit _call_bfunc_xy_instinit683,17821 -#define _call_bfunc_yy_instinit _call_bfunc_yy_instinit754,19645 -#define _p_dif_instinit _p_dif_instinit833,21677 -#define _p_dif_instinit _p_dif_instinit914,23678 -#define _p_dif_instinit _p_dif_instinit997,25735 -#define _p_dif_instinit _p_dif_instinit1078,27753 -#define _p_dif_instinit _p_dif_instinit1153,29536 -#define _p_dif_instinit _p_dif_instinit1230,31375 -#define _p_dif_instinit _p_dif_instinit1307,33246 -#define _p_dif_instinit _p_dif_instinit1384,35100 -#define _p_dif_instinit _p_dif_instinit1463,37010 -#define _p_dif_instinit _p_dif_instinit1540,38881 -#define _p_dif_instinit _p_dif_instinit1611,40517 -#define _p_dif_instinit _p_dif_instinit1684,42209 -#define _p_dif_instinit _p_dif_instinit1759,44006 -#define _p_dif_instinit _p_dif_instinit1837,45871 -#define _p_dif_instinit _p_dif_instinit1917,47792 -#define _p_dif_instinit _p_dif_instinit1995,49674 -#define _p_dif_instinit _p_dif_instinit2067,51321 -#define _p_dif_instinit _p_dif_instinit2141,53024 -#define _p_dif_instinit _p_dif_instinit2215,54759 -#define _p_dif_instinit _p_dif_instinit2289,56477 -#define _p_dif_instinit _p_dif_instinit2365,58251 -#define _p_dif_instinit _p_dif_instinit2439,59986 -#define _p_dif_instinit _p_dif_instinit2507,61486 -#define _p_dif_instinit _p_dif_instinit2577,63042 -#define _p_eq_instinit _p_eq_instinit2648,64634 -#define _p_eq_instinit _p_eq_instinit2770,67803 -#define _p_eq_instinit _p_eq_instinit2883,70714 -#define _p_eq_instinit _p_eq_instinit3002,73744 -#define _p_arg_vv_instinit _p_arg_vv_instinit3113,76528 -#define _p_arg_vv_instinit _p_arg_vv_instinit3194,78607 -#define _p_arg_cv_instinit _p_arg_cv_instinit3271,80480 -#define _p_arg_cv_instinit _p_arg_cv_instinit3334,82082 -#define _p_arg_y_vv_instinit _p_arg_y_vv_instinit3390,83421 -#define _p_arg_y_vv_instinit _p_arg_y_vv_instinit3478,85682 -#define _p_functor_instinit _p_functor_instinit3562,87703 -#define _p_functor_instinit _p_functor_instinit3717,91533 - -JIT/HPP/singlecode_put.h,978 -#define _put_x_var_instinit _put_x_var_instinit1,0 -#define _put_y_var_instinit _put_y_var_instinit12,343 -#define _put_y_var_instinit _put_y_var_instinit24,790 -#define _put_x_val_instinit _put_x_val_instinit33,1096 -#define _put_xx_val_instinit _put_xx_val_instinit40,1293 -#define _put_y_val_instinit _put_y_val_instinit50,1605 -#define _put_y_val_instinit _put_y_val_instinit60,1916 -#define _put_y_vals_instinit _put_y_vals_instinit69,2148 -#define _put_y_vals_instinit _put_y_vals_instinit84,2692 -#define _put_unsafe_instinit _put_unsafe_instinit94,3022 -#define _put_atom_instinit _put_atom_instinit122,3747 -#define PUT_DBTERM_INSTINIT PUT_DBTERM_INSTINIT129,3935 -#define PUT_BIGINT_INSTINIT PUT_BIGINT_INSTINIT136,4124 -#define _put_float_instinit _put_float_instinit143,4313 -#define PUT_LONGINT_INSTINIT PUT_LONGINT_INSTINIT150,4511 -#define _put_list_instinit _put_list_instinit157,4710 -#define _put_struct_instinit _put_struct_instinit170,5030 - -JIT/HPP/singlecode_unify.h,9529 -#define _unify_x_var_instinit _unify_x_var_instinit2,18 -#define _unify_x_var_instinit _unify_x_var_instinit17,382 -#define _unify_x_var_write_instinit _unify_x_var_write_instinit30,696 -#define _unify_l_x_var_instinit _unify_l_x_var_instinit43,1045 -#define _unify_l_x_var_instinit _unify_l_x_var_instinit57,1379 -#define _unify_l_x_var_write_instinit _unify_l_x_var_write_instinit69,1664 -#define _unify_x_var2_instinit _unify_x_var2_instinit81,1981 -#define _unify_x_var2_instinit _unify_x_var2_instinit106,2573 -#define _unify_x_var2_write_instinit _unify_x_var2_write_instinit126,3058 -#define _unify_l_x_var2_instinit _unify_l_x_var2_instinit142,3511 -#define _unify_l_x_var2_instinit _unify_l_x_var2_instinit162,4043 -#define _unify_l_x_var2_write_instinit _unify_l_x_var2_write_instinit181,4469 -#define _unify_y_var_instinit _unify_y_var_instinit196,4894 -#define _unify_y_var_instinit _unify_y_var_instinit205,5169 -#define _unify_y_var_write_instinit _unify_y_var_write_instinit213,5391 -#define _unify_l_y_var_instinit _unify_l_y_var_instinit224,5706 -#define _unify_l_y_var_instinit _unify_l_y_var_instinit233,5979 -#define _unify_l_y_var_write_instinit _unify_l_y_var_write_instinit241,6203 -#define _unify_x_val_instinit _unify_x_val_instinit250,6469 -#define _unify_x_val_write_instinit _unify_x_val_write_instinit296,7664 -#define _unify_l_x_val_instinit _unify_l_x_val_instinit301,7812 -#define _unify_l_x_val_write_instinit _unify_l_x_val_write_instinit343,8937 -#define UNIFY_Y_VAL_INSTINIT UNIFY_Y_VAL_INSTINIT348,9086 -#define UNIFY_Y_VAL_UVALY_NONVAR UNIFY_Y_VAL_UVALY_NONVAR354,9224 -#define UNIFY_Y_VAL_UVALY_NONVAR_NONVAR UNIFY_Y_VAL_UVALY_NONVAR_NONVAR358,9318 -#define UNIFY_Y_VAL_UVALY_NONVAR_UNK UNIFY_Y_VAL_UVALY_NONVAR_UNK364,9506 -#define UNIFY_Y_VAL_UVALY_UNK UNIFY_Y_VAL_UVALY_UNK370,9655 -#define UNIFY_Y_VAL_UVALY_VAR_NONVAR UNIFY_Y_VAL_UVALY_VAR_NONVAR374,9746 -#define UNIFY_Y_VAL_UVALY_VAR_UNK UNIFY_Y_VAL_UVALY_VAR_UNK380,9899 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT387,10078 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT397,10371 -#define UNIFY_L_Y_VAL_INSTINIT UNIFY_L_Y_VAL_INSTINIT405,10583 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR411,10722 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR415,10819 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK420,10992 -#define UNIFY_L_Y_VAL_ULVALY_UNK UNIFY_L_Y_VAL_ULVALY_UNK425,11120 -#define UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR429,11214 -#define UNIFY_L_Y_VAL_ULVALY_VAR_UNK UNIFY_L_Y_VAL_ULVALY_VAR_UNK434,11349 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT440,11510 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT450,11804 -#define _unify_x_loc_instinit _unify_x_loc_instinit458,12019 -#define _unify_x_loc_write_instinit _unify_x_loc_write_instinit504,13251 -#define _unify_l_x_loc_instinit _unify_l_x_loc_instinit532,13947 -#define _unify_l_x_loc_write_instinit _unify_l_x_loc_write_instinit572,15080 -#define UNIFY_Y_LOC_INSTINIT UNIFY_Y_LOC_INSTINIT596,15706 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR602,15843 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR606,15942 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK612,16138 -#define UNIFY_Y_LOC_UVALY_LOC_UNK UNIFY_Y_LOC_UVALY_LOC_UNK618,16288 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR622,16383 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_UNK UNIFY_Y_LOC_UVALY_LOC_VAR_UNK628,16540 -#define UNIFY_Y_LOC_WRITE_INSTINIT UNIFY_Y_LOC_WRITE_INSTINIT634,16694 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR640,16840 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK645,16977 -#define UNIFY_L_Y_LOC_INSTINIT UNIFY_L_Y_LOC_INSTINIT661,17334 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR667,17473 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR671,17574 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK676,17758 -#define UNIFY_L_Y_LOC_ULVALY_LOC_UNK UNIFY_L_Y_LOC_ULVALY_LOC_UNK681,17890 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR685,17988 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK690,18130 -#define UNIFY_L_Y_LOC_WRITE_INSTINIT UNIFY_L_Y_LOC_WRITE_INSTINIT695,18277 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR701,18425 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK706,18565 -#define _unify_void_instinit _unify_void_instinit721,18897 -#define _unify_void_write_instinit _unify_void_write_instinit726,19016 -#define UNIFY_L_VOID_INSTINIT UNIFY_L_VOID_INSTINIT735,19245 -#define UNIFY_L_VOID_WRITE_INSTINIT UNIFY_L_VOID_WRITE_INSTINIT739,19338 -#define _unify_n_voids_instinit _unify_n_voids_instinit744,19472 -#define _unify_n_voids_write_instinit _unify_n_voids_write_instinit749,19607 -#define _unify_l_n_voids_instinit _unify_l_n_voids_instinit763,19949 -#define _unify_l_n_voids_write_instinit _unify_l_n_voids_write_instinit767,20047 -#define _unify_atom_instinit _unify_atom_instinit780,20360 -#define _unify_atom_write_instinit _unify_atom_write_instinit801,20881 -#define _unify_l_atom_instinit _unify_l_atom_instinit806,21023 -#define _unify_l_atom_write_instinit _unify_l_atom_write_instinit827,21553 -#define UNIFY_N_ATOMS_INSTINIT UNIFY_N_ATOMS_INSTINIT832,21695 -#define UNIFY_N_ATOMS_WRITE_INSTINIT UNIFY_N_ATOMS_WRITE_INSTINIT866,22448 -#define UNIFY_FLOAT_INSTINIT UNIFY_FLOAT_INSTINIT880,22803 -#define UNIFY_FLOAT_UFLOAT_NONVAR_INIT UNIFY_FLOAT_UFLOAT_NONVAR_INIT886,22942 -#define UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR890,23032 -#define UNIFY_FLOAT_UFLOAT_NONVAR_END UNIFY_FLOAT_UFLOAT_NONVAR_END894,23156 -#define UNIFY_FLOAT_UFLOAT_UNK UNIFY_FLOAT_UFLOAT_UNK897,23216 -#define UNIFY_FLOAT_WRITE_INSTINIT UNIFY_FLOAT_WRITE_INSTINIT903,23383 -#define _unify_l_float_instinit _unify_l_float_instinit909,23571 -#define _unify_l_float_instinit _unify_l_float_instinit950,24553 -#define _unify_l_float_write_instinit _unify_l_float_write_instinit991,25512 -#define UNIFY_LONGINT_INSTINIT UNIFY_LONGINT_INSTINIT996,25664 -#define UNIFY_LONGINT_D0ISAPPL UNIFY_LONGINT_D0ISAPPL1002,25805 -#define UNIFY_LONGINT_D0ISFUNC UNIFY_LONGINT_D0ISFUNC1006,25887 -#define UNIFY_LONGINT_EQUALS UNIFY_LONGINT_EQUALS1010,25996 -#define UNIFY_LONGINT_ULONGINT_UNK UNIFY_LONGINT_ULONGINT_UNK1013,26047 -#define UNIFY_LONGINT_WRITE_INSTINIT UNIFY_LONGINT_WRITE_INSTINIT1019,26218 -#define UNIFY_L_LONGINT_INSTINIT UNIFY_L_LONGINT_INSTINIT1024,26371 -#define UNIFY_L_LONGINT_D0ISAPPL UNIFY_L_LONGINT_D0ISAPPL1031,26532 -#define UNIFY_L_LONGINT_D0ISFUNC UNIFY_L_LONGINT_D0ISFUNC1035,26616 -#define UNIFY_L_LONGINT_EQUALS UNIFY_L_LONGINT_EQUALS1039,26727 -#define UNIFY_L_LONGINT_ULLONGINT_UNK UNIFY_L_LONGINT_ULLONGINT_UNK1042,26780 -#define UNIFY_L_LONGINT_WRITE_INSTINIT UNIFY_L_LONGINT_WRITE_INSTINIT1048,26957 -#define UNIFY_BIGINT_INSTINIT UNIFY_BIGINT_INSTINIT1054,27126 -#define UNIFY_BIGINT_D0ISAPPL UNIFY_BIGINT_D0ISAPPL1060,27260 -#define UNIFY_BIGINT_D1ISFUNC_GMP UNIFY_BIGINT_D1ISFUNC_GMP1064,27341 -#define UNIFY_BIGINT_UBIGINT_UNK UNIFY_BIGINT_UBIGINT_UNK1068,27439 -#define UNIFY_L_BIGINT_INSTINIT UNIFY_L_BIGINT_INSTINIT1076,27623 -#define UNIFY_L_BIGINT_D0ISAPPL UNIFY_L_BIGINT_D0ISAPPL1083,27777 -#define UNIFY_L_BIGINT_D0ISFUNC_GMP UNIFY_L_BIGINT_D0ISFUNC_GMP1087,27860 -#define UNIFY_L_BIGINT_ULBIGINT_UNK UNIFY_L_BIGINT_ULBIGINT_UNK1091,27960 -#define UNIFY_DBTERM_INSTINIT UNIFY_DBTERM_INSTINIT1099,28154 -#define UNIFY_DBTERM_UDBTERM_NONVAR UNIFY_DBTERM_UDBTERM_NONVAR1105,28288 -#define UNIFY_DBTERM_UDBTERM_UNK UNIFY_DBTERM_UDBTERM_UNK1111,28482 -#define UNIFY_L_DBTERM_INSTINIT UNIFY_L_DBTERM_INSTINIT1117,28642 -#define UNIFY_L_DBTERM_ULDBTERM_NONVAR UNIFY_L_DBTERM_ULDBTERM_NONVAR1124,28799 -#define UNIFY_L_DBTERM_ULDBTERM_UNK UNIFY_L_DBTERM_ULDBTERM_UNK1130,28996 -#define UNIFY_LIST_INSTINIT UNIFY_LIST_INSTINIT1137,29185 -#define UNIFY_LIST_READMODE UNIFY_LIST_READMODE1146,29420 -#define UNIFY_LIST_WRITEMODE UNIFY_LIST_WRITEMODE1158,29691 -#define UNIFY_LIST_WRITE_INSTINIT UNIFY_LIST_WRITE_INSTINIT1172,30046 -#define _unify_l_list_instinit _unify_l_list_instinit1188,30452 -#define _unify_l_list_write_instinit _unify_l_list_write_instinit1216,31144 -#define _unify_struct_instinit _unify_struct_instinit1229,31467 -#define _unify_struct_write_instinit _unify_struct_write_instinit1268,32464 -#define _unify_l_struc_instinit _unify_l_struc_instinit1286,32951 -#define _unify_l_struc_write_instinit _unify_l_struc_write_instinit1319,33793 -#define _save_pair_x_instinit _save_pair_x_instinit1334,34202 -#define _save_pair_x_write_instinit _save_pair_x_write_instinit1339,34349 -#define SAVE_PAIR_Y_INSTINIT SAVE_PAIR_Y_INSTINIT1344,34503 -#define SAVE_PAIR_Y_WRITE_INSTINIT SAVE_PAIR_Y_WRITE_INSTINIT1349,34666 -#define _save_appl_x_instinit _save_appl_x_instinit1354,34836 -#define _save_appl_x_write_instinit _save_appl_x_write_instinit1359,34990 -#define SAVE_APPL_Y_INSTINIT SAVE_APPL_Y_INSTINIT1364,35148 -#define SAVE_APPL_Y_WRITE_INSTINIT SAVE_APPL_Y_WRITE_INSTINIT1369,35313 - -JIT/HPP/singlecode_write.h,1535 -#define WRITE_X_VAR_INSTINIT WRITE_X_VAR_INSTINIT1,0 -#define WRITE_VOID_INSTINIT WRITE_VOID_INSTINIT8,201 -#define WRITE_N_VOIDS_INSTINIT WRITE_N_VOIDS_INSTINIT14,348 -#define _write_y_var_instinit _write_y_var_instinit24,589 -#define _write_x_val_instinit _write_x_val_instinit31,808 -#define _write_x_loc_instinit _write_x_loc_instinit40,1064 -#define _write_x_loc_instinit _write_x_loc_instinit64,1661 -#define _write_x_loc_instinit _write_x_loc_instinit91,2371 -#define _write_x_loc_instinit _write_x_loc_instinit115,2948 -#define _write_y_val_instinit _write_y_val_instinit143,3637 -#define _write_y_val_instinit _write_y_val_instinit153,3921 -#define _write_y_loc_instinit _write_y_loc_instinit163,4196 -#define _write_y_loc_instinit _write_y_loc_instinit191,4890 -#define _write_y_loc_instinit _write_y_loc_instinit222,5697 -#define _write_y_loc_instinit _write_y_loc_instinit249,6365 -#define _write_atom_instinit _write_atom_instinit279,7127 -#define WRITE_BIGINT_INSTINIT WRITE_BIGINT_INSTINIT286,7304 -#define _write_dbterm_instinit _write_dbterm_instinit293,7482 -#define _write_float_instinit _write_float_instinit300,7661 -#define WRITE_LONGIT_INSTINIT WRITE_LONGIT_INSTINIT307,7848 -#define WRITE_N_ATOMS_INSTINIT WRITE_N_ATOMS_INSTINIT314,8035 -#define WRITE_LIST_INSTINIT WRITE_LIST_INSTINIT324,8287 -#define _write_l_list_instinit _write_l_list_instinit336,8578 -#define _write_struct_instinit _write_struct_instinit348,8860 -#define _write_l_struc_instinit _write_l_struc_instinit363,9249 - -JIT/HPP/sprint_op.hh,92 -sprint_op(char *out, char* prepend_term, op_numbers op, char* append_term) {sprint_op4,55 - -JIT/HPP/sprint_op.hpp,92 -sprint_op(char *out, char* prepend_term, op_numbers op, char* append_term) {sprint_op4,55 - -JIT/HPP/sprintblock.h,141 -linear_sprint_block(YAP_BBs block, char **buf) {linear_sprint_block2,19 -sprint_block(YAP_BBs block, char **buf) {sprint_block4019,142001 - -JIT/HPP/yaam_basics.h,1530 -#define JIT_HANDLER_INSTINIT JIT_HANDLER_INSTINIT1,0 -#define I_R I_R4,67 -#define YAAM_CHECK_TRAIL_TR YAAM_CHECK_TRAIL_TR6,91 -#define YAAM_DEREF_BODY_D0PT0 YAAM_DEREF_BODY_D0PT08,142 -#define YAAM_DEREF_BODY_D0PT1 YAAM_DEREF_BODY_D0PT113,263 -#define YAAM_DEREF_BODY_D1PT0 YAAM_DEREF_BODY_D1PT018,384 -#define YAAM_DEREF_BODY_D1PT1 YAAM_DEREF_BODY_D1PT123,505 -#define YAAM_UNIFYBOUND YAAM_UNIFYBOUND28,626 -#define NoStackDeallocate_Exception NoStackDeallocate_Exception91,1995 -#define NoStackCall_Exception NoStackCall_Exception96,2235 -#define NoStackDExecute_Exception NoStackDExecute_Exception103,2520 -#define NoStackExecute_Exception NoStackExecute_Exception108,2758 -#define NoStackFail_Exception NoStackFail_Exception115,3046 -#define NoStackEither_Exception NoStackEither_Exception122,3332 -#define NoStackCommitY_Exception NoStackCommitY_Exception129,3619 -#define NoStackCommitX_Exception NoStackCommitX_Exception136,3907 -#define NoStackDeallocate_Exception NoStackDeallocate_Exception144,4202 -#define NoStackCall_Exception NoStackCall_Exception149,4398 -#define NoStackDExecute_Exception NoStackDExecute_Exception156,4639 -#define NoStackExecute_Exception NoStackExecute_Exception161,4833 -#define NoStackFail_Exception NoStackFail_Exception168,5077 -#define NoStackEither_Exception NoStackEither_Exception175,5319 -#define NoStackCommitY_Exception NoStackCommitY_Exception182,5562 -#define NoStackCommitX_Exception NoStackCommitX_Exception189,5806 -#define YAAM_FAIL YAAM_FAIL197,6083 - -JIT/HPP/yaam_basics_d.h,1536 -#define JIT_HANDLER_INSTINIT JIT_HANDLER_INSTINIT1,0 -#define I_R I_R6,171 -#define YAAM_CHECK_TRAIL_TR YAAM_CHECK_TRAIL_TR8,195 -#define YAAM_DEREF_BODY_D0PT0 YAAM_DEREF_BODY_D0PT010,246 -#define YAAM_DEREF_BODY_D0PT1 YAAM_DEREF_BODY_D0PT115,367 -#define YAAM_DEREF_BODY_D1PT0 YAAM_DEREF_BODY_D1PT020,488 -#define YAAM_DEREF_BODY_D1PT1 YAAM_DEREF_BODY_D1PT125,609 -#define YAAM_UNIFYBOUND YAAM_UNIFYBOUND30,730 -#define NoStackDeallocate_Exception NoStackDeallocate_Exception93,2099 -#define NoStackCall_Exception NoStackCall_Exception102,2628 -#define NoStackDExecute_Exception NoStackDExecute_Exception113,3202 -#define NoStackExecute_Exception NoStackExecute_Exception122,3729 -#define NoStackFail_Exception NoStackFail_Exception133,4306 -#define NoStackEither_Exception NoStackEither_Exception144,4881 -#define NoStackCommitY_Exception NoStackCommitY_Exception155,5457 -#define NoStackCommitX_Exception NoStackCommitX_Exception166,6034 -#define NoStackDeallocate_Exception NoStackDeallocate_Exception178,6618 -#define NoStackCall_Exception NoStackCall_Exception187,7103 -#define NoStackDExecute_Exception NoStackDExecute_Exception198,7633 -#define NoStackExecute_Exception NoStackExecute_Exception207,8116 -#define NoStackFail_Exception NoStackFail_Exception218,8649 -#define NoStackEither_Exception NoStackEither_Exception229,9180 -#define NoStackCommitY_Exception NoStackCommitY_Exception240,9712 -#define NoStackCommitX_Exception NoStackCommitX_Exception251,10245 -#define YAAM_FAIL YAAM_FAIL263,10811 - -JIT/HPP/yaam_call.h,2480 -#define EXECUTE_INSTINIT EXECUTE_INSTINIT1,0 -#define EXECUTE_LOW_LEVEL_TRACER EXECUTE_LOW_LEVEL_TRACER9,209 -#define EXECUTE_POST_LOW_LEVEL_TRACER EXECUTE_POST_LOW_LEVEL_TRACER13,300 -#define EXECUTE_POST_NOCHECKING EXECUTE_POST_NOCHECKING18,417 -#define EXECUTE_DEPTH_MINOR EXECUTE_DEPTH_MINOR24,545 -#define EXECUTE_DEPTH_MOFPRED EXECUTE_DEPTH_MOFPRED35,777 -#define EXECUTE_DEPTH_END EXECUTE_DEPTH_END39,867 -#define EXECUTE_END_END EXECUTE_END_END43,925 -#define DEXECUTE_INSTINIT DEXECUTE_INSTINIT49,1048 -#define DEXECUTE_LOW_LEVEL_TRACER DEXECUTE_LOW_LEVEL_TRACER53,1147 -#define DEXECUTE_POST_LOW_LEVEL_TRACER DEXECUTE_POST_LOW_LEVEL_TRACER57,1250 -#define DEXECUTE_DEPTH_MINOR DEXECUTE_DEPTH_MINOR64,1407 -#define DEXECUTE_DEPTH_MOFPRED DEXECUTE_DEPTH_MOFPRED75,1625 -#define DEXECUTE_DEPTH_END DEXECUTE_DEPTH_END79,1722 -#define DEXECUTE_END_END DEXECUTE_END_END85,1821 -#define DEXECUTE_END_END DEXECUTE_END_END105,2429 -#define DEXECUTE_END_END DEXECUTE_END_END126,3045 -#define FCALL_INST FCALL_INST147,3607 -#define FCALL_INST FCALL_INST154,3830 -#define CALL_INSTINIT CALL_INSTINIT161,4023 -#define CALL_LOW_LEVEL_TRACER CALL_LOW_LEVEL_TRACER168,4204 -#define CALL_POST_LOW_LEVEL_TRACER CALL_POST_LOW_LEVEL_TRACER172,4306 -#define CALL_POST_NO_CHECKING CALL_POST_NO_CHECKING178,4451 -#define CALL_DEPTH_MINOR CALL_DEPTH_MINOR186,4683 -#define CALL_DEPTH_MOFPRED CALL_DEPTH_MOFPRED196,4894 -#define CALL_DEPTH_END CALL_DEPTH_END200,4984 -#define CALL_END_END CALL_END_END207,5093 -#define CALL_END_END CALL_END_END222,5460 -#define CALL_END_END CALL_END_END238,5838 -#define CALL_END_END CALL_END_END253,6179 -#define CALL_END_END CALL_END_END267,6520 -#define CALL_END_END CALL_END_END282,6872 -#define PROCCEED_INSTINIT PROCCEED_INSTINIT295,7150 -#define PROCCEED_DEPTH PROCCEED_DEPTH303,7349 -#define PROCCEED_END PROCCEED_END307,7419 -#define ALLOCATE_INSTINIT ALLOCATE_INSTINIT313,7567 -#define ALLOCATE_DEPTH ALLOCATE_DEPTH320,7772 -#define ALLOCATE_END ALLOCATE_END324,7842 -#define DEALLOCATE_INSTINITDEALLOCATE_INSTINIT329,7940 -#define DEALLOCATE_POST_CHECK DEALLOCATE_POST_CHECK331,7971 -#define DEALLOCATE_DEPTH DEALLOCATE_DEPTH339,8222 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN345,8334 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN352,8585 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN360,8847 -#define DEALLOCATE_POST_FROZEN DEALLOCATE_POST_FROZEN367,9043 -#define DEALLOCATE_END DEALLOCATE_END370,9108 - -JIT/HPP/yaam_call_count.h,2292 -#define COUNT_CALL_INSTINIT COUNT_CALL_INSTINIT1,0 -#define COUNT_CALL_MIDDLE COUNT_CALL_MIDDLE7,242 -#define COUNT_CALL_END COUNT_CALL_END24,741 -#define COUNT_RETRY_INSTINIT COUNT_RETRY_INSTINIT28,827 -#define COUNT_RETRY_MIDDLE COUNT_RETRY_MIDDLE34,1067 -#define COUNT_RETRY_END COUNT_RETRY_END53,1614 -#define COUNT_RETRY_ME_INSTINIT COUNT_RETRY_ME_INSTINIT57,1701 -#define COUNT_RETRY_ME_MIDDLE COUNT_RETRY_ME_MIDDLE63,1875 -#define COUNT_RETRY_ME_MIDDLE COUNT_RETRY_ME_MIDDLE86,2738 -#define COUNT_RETRY_ME_END COUNT_RETRY_ME_END109,3556 -#define COUNT_TRUST_ME_INSTINIT COUNT_TRUST_ME_INSTINIT113,3650 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE118,3745 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE149,4606 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE180,5406 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE204,6037 -#define COUNT_TRUST_ME_END COUNT_TRUST_ME_END229,6643 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT238,7015 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT277,8254 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT317,9496 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT355,10697 -#define COUNT_RETRY_LOGICAL_END COUNT_RETRY_LOGICAL_END394,11882 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT400,12022 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT471,13967 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT543,15868 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT608,17607 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT677,19399 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT751,21506 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT826,23569 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT894,25470 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT965,27403 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT1038,29482 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT1112,31517 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT1179,33390 -#define COUNT_TRUST_LOGICAL_END COUNT_TRUST_LOGICAL_END1249,35292 - -JIT/HPP/yaam_call_count_d.h,2292 -#define COUNT_CALL_INSTINIT COUNT_CALL_INSTINIT1,0 -#define COUNT_CALL_MIDDLE COUNT_CALL_MIDDLE8,291 -#define COUNT_CALL_END COUNT_CALL_END25,790 -#define COUNT_RETRY_INSTINIT COUNT_RETRY_INSTINIT29,876 -#define COUNT_RETRY_MIDDLE COUNT_RETRY_MIDDLE36,1165 -#define COUNT_RETRY_END COUNT_RETRY_END55,1712 -#define COUNT_RETRY_ME_INSTINIT COUNT_RETRY_ME_INSTINIT59,1799 -#define COUNT_RETRY_ME_MIDDLE COUNT_RETRY_ME_MIDDLE66,2022 -#define COUNT_RETRY_ME_MIDDLE COUNT_RETRY_ME_MIDDLE89,2885 -#define COUNT_RETRY_ME_END COUNT_RETRY_ME_END112,3703 -#define COUNT_TRUST_ME_INSTINIT COUNT_TRUST_ME_INSTINIT116,3797 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE122,3941 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE153,4802 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE184,5602 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE208,6233 -#define COUNT_TRUST_ME_END COUNT_TRUST_ME_END233,6839 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT242,7211 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT282,8499 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT323,9790 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT362,11040 -#define COUNT_RETRY_LOGICAL_END COUNT_RETRY_LOGICAL_END402,12274 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT408,12414 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT480,14408 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT553,16358 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT619,18146 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT689,19987 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT764,22143 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT840,24255 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT909,26205 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT981,28187 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT1055,30315 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT1130,32399 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT1198,34321 -#define COUNT_TRUST_LOGICAL_END COUNT_TRUST_LOGICAL_END1269,36272 - -JIT/HPP/yaam_call_d.h,2482 -#define EXECUTE_INSTINIT EXECUTE_INSTINIT1,0 -#define EXECUTE_LOW_LEVEL_TRACER EXECUTE_LOW_LEVEL_TRACER10,258 -#define EXECUTE_POST_LOW_LEVEL_TRACER EXECUTE_POST_LOW_LEVEL_TRACER14,349 -#define EXECUTE_POST_NOCHECKING EXECUTE_POST_NOCHECKING19,466 -#define EXECUTE_DEPTH_MINOR EXECUTE_DEPTH_MINOR25,594 -#define EXECUTE_DEPTH_MOFPRED EXECUTE_DEPTH_MOFPRED36,826 -#define EXECUTE_DEPTH_END EXECUTE_DEPTH_END40,916 -#define EXECUTE_END_END EXECUTE_END_END44,974 -#define DEXECUTE_INSTINIT DEXECUTE_INSTINIT50,1097 -#define DEXECUTE_LOW_LEVEL_TRACER DEXECUTE_LOW_LEVEL_TRACER55,1245 -#define DEXECUTE_POST_LOW_LEVEL_TRACER DEXECUTE_POST_LOW_LEVEL_TRACER59,1348 -#define DEXECUTE_DEPTH_MINOR DEXECUTE_DEPTH_MINOR66,1505 -#define DEXECUTE_DEPTH_MOFPRED DEXECUTE_DEPTH_MOFPRED77,1723 -#define DEXECUTE_DEPTH_END DEXECUTE_DEPTH_END81,1820 -#define DEXECUTE_END_END DEXECUTE_END_END87,1919 -#define DEXECUTE_END_END DEXECUTE_END_END107,2527 -#define DEXECUTE_END_END DEXECUTE_END_END128,3143 -#define FCALL_INST FCALL_INST149,3705 -#define FCALL_INST FCALL_INST156,3928 -#define CALL_INSTINIT CALL_INSTINIT163,4121 -#define CALL_LOW_LEVEL_TRACER CALL_LOW_LEVEL_TRACER171,4351 -#define CALL_POST_LOW_LEVEL_TRACER CALL_POST_LOW_LEVEL_TRACER175,4453 -#define CALL_POST_NO_CHECKING CALL_POST_NO_CHECKING181,4598 -#define CALL_DEPTH_MINOR CALL_DEPTH_MINOR189,4830 -#define CALL_DEPTH_MOFPRED CALL_DEPTH_MOFPRED199,5041 -#define CALL_DEPTH_END CALL_DEPTH_END203,5131 -#define CALL_END_END CALL_END_END210,5240 -#define CALL_END_END CALL_END_END225,5607 -#define CALL_END_END CALL_END_END241,5985 -#define CALL_END_END CALL_END_END256,6326 -#define CALL_END_END CALL_END_END270,6667 -#define CALL_END_END CALL_END_END285,7019 -#define PROCCEED_INSTINIT PROCCEED_INSTINIT298,7297 -#define PROCCEED_DEPTH PROCCEED_DEPTH307,7545 -#define PROCCEED_END PROCCEED_END311,7615 -#define ALLOCATE_INSTINIT ALLOCATE_INSTINIT317,7763 -#define ALLOCATE_DEPTH ALLOCATE_DEPTH325,8017 -#define ALLOCATE_END ALLOCATE_END329,8087 -#define DEALLOCATE_INSTINIT DEALLOCATE_INSTINIT334,8185 -#define DEALLOCATE_POST_CHECK DEALLOCATE_POST_CHECK337,8267 -#define DEALLOCATE_DEPTH DEALLOCATE_DEPTH345,8518 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN351,8630 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN358,8881 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN366,9143 -#define DEALLOCATE_POST_FROZEN DEALLOCATE_POST_FROZEN373,9339 -#define DEALLOCATE_END DEALLOCATE_END376,9404 - -JIT/HPP/yaam_cpred.h,2277 -#define CALL_CPRED_INSTINIT CALL_CPRED_INSTINIT1,0 -#define CALL_CPRED_TEST_STACK CALL_CPRED_TEST_STACK6,161 -#define CALL_CPRED_TEST_STACK CALL_CPRED_TEST_STACK13,501 -#define CALL_CPRED_FROZEN_INIT CALL_CPRED_FROZEN_INIT22,818 -#define CALL_CPRED_TOPB CALL_CPRED_TOPB26,909 -#define CALL_CPRED_TOPB CALL_CPRED_TOPB32,1096 -#define CALL_CPRED_NOFROZEN CALL_CPRED_NOFROZEN40,1278 -#define CALL_CPRED_LOW_LEVEL_TRACER CALL_CPRED_LOW_LEVEL_TRACER45,1382 -#define CALL_CPRED_POST_LOW_LEVEL_TRACER CALL_CPRED_POST_LOW_LEVEL_TRACER49,1486 -#define CALL_CPRED_SETSREG CALL_CPRED_SETSREG57,1712 -#define CALL_CPRED_END CALL_CPRED_END61,1779 -#define EXECUTE_CPRED_INSTINIT EXECUTE_CPRED_INSTINIT72,1964 -#define EXECUTE_CPRED_POST_CHECK_TRAIL EXECUTE_CPRED_POST_CHECK_TRAIL75,2037 -#define EXECUTE_CPRED_FROZEN EXECUTE_CPRED_FROZEN81,2161 -#define EXECUTE_CPRED_TOPB EXECUTE_CPRED_TOPB85,2252 -#define EXECUTE_CPRED_TOPB EXECUTE_CPRED_TOPB93,2415 -#define EXECUTE_CPRED_NOFROZEN EXECUTE_CPRED_NOFROZEN103,2573 -#define EXECUTE_CPRED_POST_FROZEN EXECUTE_CPRED_POST_FROZEN107,2649 -#define EXECUTE_CPRED_LOW_LEVEL_TRACER EXECUTE_CPRED_LOW_LEVEL_TRACER111,2735 -#define EXECUTE_CPRED_POST_LOW_LEVEL_TRACER EXECUTE_CPRED_POST_LOW_LEVEL_TRACER115,2828 -#define EXECUTE_CPRED_SAVE_PC EXECUTE_CPRED_SAVE_PC120,2926 -#define EXECUTE_CPRED_DEPTH_MINOR EXECUTE_CPRED_DEPTH_MINOR125,3015 -#define EXECUTE_CPRED_DEPTH_MOFPRED EXECUTE_CPRED_DEPTH_MOFPRED136,3230 -#define EXECUTE_CPRED_DEPTH_END EXECUTE_CPRED_DEPTH_END140,3319 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END146,3414 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END172,4003 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END199,4597 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END224,5157 -#define CALL_USERCPRED_INSTINIT CALL_USERCPRED_INSTINIT251,5768 -#define CALL_USERCPRED_INSTINIT CALL_USERCPRED_INSTINIT257,6058 -#define CALL_USERCPRED_LOW_LEVEL_TRACER CALL_USERCPRED_LOW_LEVEL_TRACER265,6328 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN271,6476 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN278,6711 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN286,6963 -#define CALL_USERCPRED_POST_FROZEN CALL_USERCPRED_POST_FROZEN290,7065 -#define CALL_USERCPRED_END CALL_USERCPRED_END308,7531 - -JIT/HPP/yaam_cpred_d.h,2277 -#define CALL_CPRED_INSTINIT CALL_CPRED_INSTINIT1,0 -#define CALL_CPRED_TEST_STACK CALL_CPRED_TEST_STACK7,209 -#define CALL_CPRED_TEST_STACK CALL_CPRED_TEST_STACK14,549 -#define CALL_CPRED_FROZEN_INIT CALL_CPRED_FROZEN_INIT23,866 -#define CALL_CPRED_TOPB CALL_CPRED_TOPB27,957 -#define CALL_CPRED_TOPB CALL_CPRED_TOPB33,1144 -#define CALL_CPRED_NOFROZEN CALL_CPRED_NOFROZEN41,1326 -#define CALL_CPRED_LOW_LEVEL_TRACER CALL_CPRED_LOW_LEVEL_TRACER46,1430 -#define CALL_CPRED_POST_LOW_LEVEL_TRACER CALL_CPRED_POST_LOW_LEVEL_TRACER50,1534 -#define CALL_CPRED_SETSREG CALL_CPRED_SETSREG58,1760 -#define CALL_CPRED_END CALL_CPRED_END62,1827 -#define EXECUTE_CPRED_INSTINIT EXECUTE_CPRED_INSTINIT73,2012 -#define EXECUTE_CPRED_POST_CHECK_TRAIL EXECUTE_CPRED_POST_CHECK_TRAIL77,2133 -#define EXECUTE_CPRED_FROZEN EXECUTE_CPRED_FROZEN83,2257 -#define EXECUTE_CPRED_TOPB EXECUTE_CPRED_TOPB87,2348 -#define EXECUTE_CPRED_TOPB EXECUTE_CPRED_TOPB95,2511 -#define EXECUTE_CPRED_NOFROZEN EXECUTE_CPRED_NOFROZEN105,2669 -#define EXECUTE_CPRED_POST_FROZEN EXECUTE_CPRED_POST_FROZEN109,2745 -#define EXECUTE_CPRED_LOW_LEVEL_TRACER EXECUTE_CPRED_LOW_LEVEL_TRACER113,2831 -#define EXECUTE_CPRED_POST_LOW_LEVEL_TRACER EXECUTE_CPRED_POST_LOW_LEVEL_TRACER117,2924 -#define EXECUTE_CPRED_SAVE_PC EXECUTE_CPRED_SAVE_PC122,3022 -#define EXECUTE_CPRED_DEPTH_MINOR EXECUTE_CPRED_DEPTH_MINOR127,3111 -#define EXECUTE_CPRED_DEPTH_MOFPRED EXECUTE_CPRED_DEPTH_MOFPRED138,3326 -#define EXECUTE_CPRED_DEPTH_END EXECUTE_CPRED_DEPTH_END142,3415 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END148,3510 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END174,4099 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END201,4693 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END226,5253 -#define CALL_USERCPRED_INSTINIT CALL_USERCPRED_INSTINIT253,5864 -#define CALL_USERCPRED_INSTINIT CALL_USERCPRED_INSTINIT260,6202 -#define CALL_USERCPRED_LOW_LEVEL_TRACER CALL_USERCPRED_LOW_LEVEL_TRACER269,6520 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN275,6668 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN282,6903 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN290,7155 -#define CALL_USERCPRED_POST_FROZEN CALL_USERCPRED_POST_FROZEN294,7257 -#define CALL_USERCPRED_END CALL_USERCPRED_END312,7723 - -JIT/HPP/yaam_cut.h,1711 -#define CUT_INSTINITCUT_INSTINIT1,0 -#define CUT_COROUTINING CUT_COROUTINING4,44 -#define CUT_NOCOROUTINING CUT_NOCOROUTINING10,142 -#define CUT_T_INSTINITCUT_T_INSTINIT18,376 -#define CUT_T_COROUTINING CUT_T_COROUTINING21,422 -#define CUT_T_NOCOROUTINING CUT_T_NOCOROUTINING27,523 -#define CUT_E_INSTINITCUT_E_INSTINIT35,759 -#define CUT_E_COROUTINING CUT_E_COROUTINING38,805 -#define CUT_E_NOCOROUTINING CUT_E_NOCOROUTINING44,906 -#define SAVE_B_X_INSTINIT SAVE_B_X_INSTINIT52,1146 -#define SAVE_B_X_YSBA_FROZEN SAVE_B_X_YSBA_FROZEN57,1286 -#define SAVE_B_X_NOYSBA_NOFROZEN SAVE_B_X_NOYSBA_NOFROZEN60,1366 -#define SAVE_B_X_END SAVE_B_X_END64,1464 -#define SAVE_B_Y_INSTINITSAVE_B_Y_INSTINIT68,1548 -#define SAVE_B_Y_YSBA SAVE_B_Y_YSBA71,1604 -#define SAVE_B_Y_NOYSBA SAVE_B_Y_NOYSBA74,1707 -#define SAVE_B_Y_END SAVE_B_Y_END78,1825 -#define COMMIT_B_X_INSTINIT COMMIT_B_X_INSTINIT82,1909 -#define COMMIT_B_X_DO_COMMIT_B_X COMMIT_B_X_DO_COMMIT_B_X86,1996 -#define COMMIT_B_X_COMMIT_B_X_NVAR COMMIT_B_X_COMMIT_B_X_NVAR89,2071 -#define COMMIT_B_X_YSBA_FROZEN COMMIT_B_X_YSBA_FROZEN95,2289 -#define COMMIT_B_X_NOYSBA_NOFROZEN COMMIT_B_X_NOYSBA_NOFROZEN98,2368 -#define COMMIT_B_X_POST_YSBA_FROZEN COMMIT_B_X_POST_YSBA_FROZEN102,2461 -#define COMMIT_B_X_ENDCOMMIT_B_X_END108,2566 -#define COMMIT_B_Y_INSTINIT COMMIT_B_Y_INSTINIT110,2592 -#define COMMIT_B_Y_DO_COMMIT_B_Y COMMIT_B_Y_DO_COMMIT_B_Y114,2679 -#define COMMIT_B_Y_COMMIT_B_Y_NVAR COMMIT_B_Y_COMMIT_B_Y_NVAR117,2754 -#define COMMIT_B_Y_YSBA_FROZEN COMMIT_B_Y_YSBA_FROZEN123,2972 -#define COMMIT_B_Y_NOYSBA_NOFROZEN COMMIT_B_Y_NOYSBA_NOFROZEN126,3051 -#define COMMIT_B_Y_POST_YSBA_FROZEN COMMIT_B_Y_POST_YSBA_FROZEN130,3144 - -JIT/HPP/yaam_cut_d.h,1717 -#define CUT_INSTINIT CUT_INSTINIT1,0 -#define CUT_COROUTINING CUT_COROUTINING5,95 -#define CUT_NOCOROUTINING CUT_NOCOROUTINING11,193 -#define CUT_T_INSTINIT CUT_T_INSTINIT19,427 -#define CUT_T_COROUTINING CUT_T_COROUTINING23,524 -#define CUT_T_NOCOROUTINING CUT_T_NOCOROUTINING29,625 -#define CUT_E_INSTINIT CUT_E_INSTINIT37,861 -#define CUT_E_COROUTINING CUT_E_COROUTINING41,958 -#define CUT_E_NOCOROUTINING CUT_E_NOCOROUTINING47,1059 -#define SAVE_B_X_INSTINIT SAVE_B_X_INSTINIT55,1299 -#define SAVE_B_X_YSBA_FROZEN SAVE_B_X_YSBA_FROZEN61,1488 -#define SAVE_B_X_NOYSBA_NOFROZEN SAVE_B_X_NOYSBA_NOFROZEN64,1568 -#define SAVE_B_X_END SAVE_B_X_END68,1666 -#define SAVE_B_Y_INSTINITSAVE_B_Y_INSTINIT72,1750 -#define SAVE_B_Y_YSBA SAVE_B_Y_YSBA75,1806 -#define SAVE_B_Y_NOYSBA SAVE_B_Y_NOYSBA78,1909 -#define SAVE_B_Y_END SAVE_B_Y_END82,2027 -#define COMMIT_B_X_INSTINIT COMMIT_B_X_INSTINIT86,2111 -#define COMMIT_B_X_DO_COMMIT_B_X COMMIT_B_X_DO_COMMIT_B_X91,2247 -#define COMMIT_B_X_COMMIT_B_X_NVAR COMMIT_B_X_COMMIT_B_X_NVAR94,2322 -#define COMMIT_B_X_YSBA_FROZEN COMMIT_B_X_YSBA_FROZEN100,2540 -#define COMMIT_B_X_NOYSBA_NOFROZEN COMMIT_B_X_NOYSBA_NOFROZEN103,2619 -#define COMMIT_B_X_POST_YSBA_FROZEN COMMIT_B_X_POST_YSBA_FROZEN107,2712 -#define COMMIT_B_X_ENDCOMMIT_B_X_END113,2817 -#define COMMIT_B_Y_INSTINIT COMMIT_B_Y_INSTINIT115,2843 -#define COMMIT_B_Y_DO_COMMIT_B_Y COMMIT_B_Y_DO_COMMIT_B_Y120,2979 -#define COMMIT_B_Y_COMMIT_B_Y_NVAR COMMIT_B_Y_COMMIT_B_Y_NVAR123,3054 -#define COMMIT_B_Y_YSBA_FROZEN COMMIT_B_Y_YSBA_FROZEN129,3272 -#define COMMIT_B_Y_NOYSBA_NOFROZEN COMMIT_B_Y_NOYSBA_NOFROZEN132,3351 -#define COMMIT_B_Y_POST_YSBA_FROZEN COMMIT_B_Y_POST_YSBA_FROZEN136,3444 - -JIT/HPP/yaam_failure.h,2702 -#define TRUST_FAIL_INSTINITTRUST_FAIL_INSTINIT1,0 -#define TRUST_FAIL_CUT_C TRUST_FAIL_CUT_C4,45 -#define TRUST_FAIL_YAPOR TRUST_FAIL_YAPOR10,156 -#define TRUST_FAIL_NOYAPOR TRUST_FAIL_NOYAPOR16,287 -#define LBL_SHARED_FAIL LBL_SHARED_FAIL22,394 -#define OP_FAIL_INSTINIT OP_FAIL_INSTINIT27,500 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT35,662 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT52,1027 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT67,1400 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT84,1770 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER103,2215 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER171,4717 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER238,7160 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER305,9606 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER371,11990 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER453,13930 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER470,14304 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER487,14644 -#define LBL_FAIL_VARTERM LBL_FAIL_VARTERM500,14908 -#define LBL_FAIL_VARTERM LBL_FAIL_VARTERM513,15257 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT527,15620 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT558,16437 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT590,17328 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT614,18031 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT638,18584 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT663,19211 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT682,19776 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT712,20569 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT743,21436 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT766,22115 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT789,22644 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT813,23247 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL833,23825 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL908,25743 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL982,27660 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1052,29522 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1123,31322 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1195,33169 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1264,34991 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1303,35960 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1343,36976 -#define LBL_FAIL_END LBL_FAIL_END1378,37886 - -JIT/HPP/yaam_failure_d.h,2705 -#define TRUST_FAIL_INSTINITTRUST_FAIL_INSTINIT1,0 -#define TRUST_FAIL_CUT_C TRUST_FAIL_CUT_C4,45 -#define TRUST_FAIL_YAPOR TRUST_FAIL_YAPOR10,156 -#define TRUST_FAIL_NOYAPOR TRUST_FAIL_NOYAPOR16,287 -#define LBL_SHARED_FAIL LBL_SHARED_FAIL22,394 -#define OP_FAIL_INSTINIT OP_FAIL_INSTINIT27,500 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT36,711 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT58,1415 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT78,2124 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT100,2833 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER124,3617 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER192,6119 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER259,8562 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER326,11008 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER392,13392 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER474,15332 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER491,15706 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER508,16046 -#define LBL_FAIL_VARTERM LBL_FAIL_VARTERM521,16310 -#define LBL_FAIL_VARTERM LBL_FAIL_VARTERM534,16659 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT548,17022 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT579,17839 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT611,18730 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT635,19433 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT659,19986 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT684,20613 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT703,21178 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT733,21971 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT764,22838 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT787,23517 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT810,24046 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT834,24649 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL854,25227 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL929,27145 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1003,29062 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1073,30924 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1144,32724 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1216,34571 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1285,36393 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1324,37362 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL1364,38378 -#define LBL_FAIL_END LBL_FAIL_END1399,39288 - -JIT/HPP/yaam_get.h,8725 -#define GET_X_VAR_INSTINIT GET_X_VAR_INSTINIT1,0 -#define GET_Y_VAR_INSTINIT GET_Y_VAR_INSTINIT8,196 -#define GET_YY_VAR_INSTINIT GET_YY_VAR_INSTINIT17,458 -#define GET_X_VAL_INSTINIT GET_X_VAL_INSTINIT31,910 -#define GET_X_VAL_GVALX_NONVAR GET_X_VAL_GVALX_NONVAR37,1079 -#define GET_X_VAL_GVALX_NONVAR_NONVAR GET_X_VAL_GVALX_NONVAR_NONVAR40,1152 -#define GET_X_VAL_GVALX_NONVAR_UNK GET_X_VAL_GVALX_NONVAR_UNK45,1315 -#define GET_X_VAL_GVALX_UNK GET_X_VAL_GVALX_UNK50,1438 -#define GET_X_VAL_GVALX_VAR_NONVAR GET_X_VAL_GVALX_VAR_NONVAR53,1508 -#define GET_X_VAL_GVALX_VAR_UNK GET_X_VAL_GVALX_VAR_UNK58,1631 -#define GET_Y_VAL_INSTINIT GET_Y_VAL_INSTINIT63,1758 -#define GET_Y_VAL_GVALY_NONVAR GET_Y_VAL_GVALY_NONVAR69,1908 -#define GET_Y_VAL_GVALY_NONVAR_NONVAR GET_Y_VAL_GVALY_NONVAR_NONVAR72,1980 -#define GET_Y_VAL_GVALY_NONVAR_UNK GET_Y_VAL_GVALY_NONVAR_UNK77,2143 -#define GET_Y_VAL_GVALY_UNK GET_Y_VAL_GVALY_UNK82,2266 -#define GET_Y_VAL_GVALY_VAR_NONVAR GET_Y_VAL_GVALY_VAR_NONVAR85,2335 -#define GET_Y_VAL_GVALY_VAR_UNK GET_Y_VAL_GVALY_VAR_UNK90,2458 -#define GET_ATOM_INSTINIT GET_ATOM_INSTINIT95,2585 -#define GET_ATOM_GATOM_NONVAR GET_ATOM_GATOM_NONVAR102,2778 -#define GET_ATOM_GATOM_UNK GET_ATOM_GATOM_UNK113,3007 -#define GET_2ATOMS_INSTINIT GET_2ATOMS_INSTINIT118,3122 -#define GET_2ATOMS_GATOM_2UNK GET_2ATOMS_GATOM_2UNK123,3227 -#define GET_2ATOMS_GATOM_2B GET_2ATOMS_GATOM_2B126,3299 -#define GET_2ATOMS_GATOM_2BNONVAR GET_2ATOMS_GATOM_2BNONVAR130,3383 -#define GET_2ATOMS_GATOM_2BUNK GET_2ATOMS_GATOM_2BUNK141,3620 -#define GET_3ATOMS_INSTINIT GET_3ATOMS_INSTINIT146,3739 -#define GET_3ATOMS_GATOM_3UNK GET_3ATOMS_GATOM_3UNK151,3844 -#define GET_3ATOMS_GATOM_3B GET_3ATOMS_GATOM_3B154,3917 -#define GET_3ATOMS_GATOM_3BUNK GET_3ATOMS_GATOM_3BUNK157,3968 -#define GET_3ATOMS_GATOM_3C GET_3ATOMS_GATOM_3C160,4042 -#define GET_3ATOMS_GATOM_3CNONVAR GET_3ATOMS_GATOM_3CNONVAR164,4127 -#define GET_3ATOMS_GATOM_3CUNK GET_3ATOMS_GATOM_3CUNK175,4365 -#define GET_4ATOMS_INSTINIT GET_4ATOMS_INSTINIT180,4485 -#define GET_4ATOMS_GATOM_4UNK GET_4ATOMS_GATOM_4UNK185,4590 -#define GET_4ATOMS_GATOM_4B GET_4ATOMS_GATOM_4B188,4664 -#define GET_4ATOMS_GATOM_4BUNK GET_4ATOMS_GATOM_4BUNK191,4715 -#define GET_4ATOMS_GATOM_4C GET_4ATOMS_GATOM_4C194,4790 -#define GET_4ATOMS_GATOM_4CUNK GET_4ATOMS_GATOM_4CUNK197,4841 -#define GET_4ATOMS_GATOM_4D GET_4ATOMS_GATOM_4D200,4916 -#define GET_4ATOMS_GATOM_4DNONVAR GET_4ATOMS_GATOM_4DNONVAR204,5002 -#define GET_4ATOMS_GATOM_4DUNK GET_4ATOMS_GATOM_4DUNK215,5241 -#define GET_5ATOMS_INSTINIT GET_5ATOMS_INSTINIT220,5362 -#define GET_5ATOMS_GATOM_5UNK GET_5ATOMS_GATOM_5UNK225,5467 -#define GET_5ATOMS_GATOM_5B GET_5ATOMS_GATOM_5B228,5542 -#define GET_5ATOMS_GATOM_5BUNK GET_5ATOMS_GATOM_5BUNK231,5593 -#define GET_5ATOMS_GATOM_5C GET_5ATOMS_GATOM_5C234,5669 -#define GET_5ATOMS_GATOM_5CUNK GET_5ATOMS_GATOM_5CUNK237,5720 -#define GET_5ATOMS_GATOM_5D GET_5ATOMS_GATOM_5D240,5796 -#define GET_5ATOMS_GATOM_5DUNK GET_5ATOMS_GATOM_5DUNK243,5847 -#define GET_5ATOMS_GATOM_5E GET_5ATOMS_GATOM_5E246,5923 -#define GET_5ATOMS_GATOM_5ENONVAR GET_5ATOMS_GATOM_5ENONVAR250,6010 -#define GET_5ATOMS_GATOM_5EUNK GET_5ATOMS_GATOM_5EUNK261,6250 -#define GET_6ATOMS_INSTINIT GET_6ATOMS_INSTINIT266,6372 -#define GET_6ATOMS_GATOM_6UNK GET_6ATOMS_GATOM_6UNK271,6477 -#define GET_6ATOMS_GATOM_6B GET_6ATOMS_GATOM_6B274,6553 -#define GET_6ATOMS_GATOM_6BUNK GET_6ATOMS_GATOM_6BUNK277,6604 -#define GET_6ATOMS_GATOM_6C GET_6ATOMS_GATOM_6C280,6681 -#define GET_6ATOMS_GATOM_6CUNK GET_6ATOMS_GATOM_6CUNK283,6732 -#define GET_6ATOMS_GATOM_6D GET_6ATOMS_GATOM_6D286,6809 -#define GET_6ATOMS_GATOM_6DUNK GET_6ATOMS_GATOM_6DUNK289,6860 -#define GET_6ATOMS_GATOM_6E GET_6ATOMS_GATOM_6E292,6937 -#define GET_6ATOMS_GATOM_6EUNK GET_6ATOMS_GATOM_6EUNK295,6988 -#define GET_6ATOMS_GATOM_6F GET_6ATOMS_GATOM_6F298,7065 -#define GET_6ATOMS_GATOM_6FNONVAR GET_6ATOMS_GATOM_6FNONVAR302,7153 -#define GET_6ATOMS_GATOM_6FUNK GET_6ATOMS_GATOM_6FUNK313,7394 -#define GET_LIST_INSTINIT GET_LIST_INSTINIT318,7517 -#define GET_LIST_GLIST_NONVAR GET_LIST_GLIST_NONVAR324,7673 -#define GET_LIST_GLIST_UNK GET_LIST_GLIST_UNK336,7955 -#define GET_STRUCT_INSTINIT GET_STRUCT_INSTINIT350,8301 -#define GET_STRUCT_GSTRUCT_NONVAR GET_STRUCT_GSTRUCT_NONVAR356,8465 -#define GET_STRUCT_GSTRUCT_UNK GET_STRUCT_GSTRUCT_UNK376,8951 -#define GET_FLOAT_INSTINIT GET_FLOAT_INSTINIT389,9305 -#define GET_FLOAT_GFLOAT_NONVAR GET_FLOAT_GFLOAT_NONVAR396,9510 -#define GET_FLOAT_GFLOAT_NONVAR GET_FLOAT_GFLOAT_NONVAR422,10112 -#define GET_FLOAT_GFLOAT_UNK GET_FLOAT_GFLOAT_UNK448,10690 -#define GET_LONGINT_INSTINIT GET_LONGINT_INSTINIT456,10902 -#define GET_LONGINT_GLONGINT_NONVAR GET_LONGINT_GLONGINT_NONVAR461,11026 -#define GET_LONGINT_GLONGINT_UNK GET_LONGINT_GLONGINT_UNK481,11504 -#define GET_BIGINT_INSTINIT GET_BIGINT_INSTINIT490,11736 -#define GET_BIGINT_GBIGINT_NONVAR GET_BIGINT_GBIGINT_NONVAR495,11859 -#define GET_BIGINT_GBIGINT_UNK GET_BIGINT_GBIGINT_UNK515,12335 -#define GET_DBTERM_INSTINIT GET_DBTERM_INSTINIT524,12548 -#define GET_DBTERM_GDBTERM_NONVAR GET_DBTERM_GDBTERM_NONVAR529,12671 -#define GET_DBTERM_GDBTERM_UNK GET_DBTERM_GDBTERM_UNK535,12858 -#define GLIST_VALX_INSTINIT GLIST_VALX_INSTINIT543,13063 -#define GLIST_VALX_GLIST_VALX_READ GLIST_VALX_GLIST_VALX_READ553,13325 -#define GLIST_VALX_GLIST_VALX_NONVAR GLIST_VALX_GLIST_VALX_NONVAR565,13611 -#define GLIST_VALX_GLIST_VALX_NONVAR_NONVAR GLIST_VALX_GLIST_VALX_NONVAR_NONVAR568,13690 -#define GLIST_VALX_GLIST_VALX_NONVAR_UNK GLIST_VALX_GLIST_VALX_NONVAR_UNK573,13865 -#define GLIST_VALX_GLIST_VALX_UNK GLIST_VALX_GLIST_VALX_UNK578,13994 -#define GLIST_VALX_GLIST_VALX_VAR_NONVAR GLIST_VALX_GLIST_VALX_VAR_NONVAR581,14070 -#define GLIST_VALX_GLIST_VALX_VAR_UNK GLIST_VALX_GLIST_VALX_VAR_UNK586,14206 -#define GLIST_VALX_GLIST_VALX_WRITE GLIST_VALX_GLIST_VALX_WRITE591,14352 -#define GLIST_VALY_INSTINIT GLIST_VALY_INSTINIT606,14774 -#define GLIST_VALY_GLIST_VALY_READ GLIST_VALY_GLIST_VALY_READ611,14903 -#define GLIST_VALY_GLIST_VALY_NONVAR GLIST_VALY_GLIST_VALY_NONVAR620,15106 -#define GLIST_VALY_GLIST_VALY_NONVAR_NONVAR GLIST_VALY_GLIST_VALY_NONVAR_NONVAR625,15248 -#define GLIST_VALY_GLIST_VALY_NONVAR_UNK GLIST_VALY_GLIST_VALY_NONVAR_UNK630,15410 -#define GLIST_VALY_GLIST_VALY_UNK GLIST_VALY_GLIST_VALY_UNK634,15497 -#define GLIST_VALY_GLIST_VALY_VAR_NONVAR GLIST_VALY_GLIST_VALY_VAR_NONVAR638,15592 -#define GLIST_VALY_GLIST_VALY_VAR_UNK GLIST_VALY_GLIST_VALY_VAR_UNK643,15728 -#define GLIST_VALY_GLIST_VALY_WRITE GLIST_VALY_GLIST_VALY_WRITE649,15897 -#define GL_VOID_VARX_INSTINIT GL_VOID_VARX_INSTINIT662,16239 -#define GL_VOID_VARX_GLIST_VOID_VARX_READ GL_VOID_VARX_GLIST_VOID_VARX_READ668,16407 -#define GL_VOID_VARX_GLIST_VOID_VAR_WRITE GL_VOID_VARX_GLIST_VOID_VAR_WRITE682,16754 -#define GL_VOID_VARY_INSTINIT GL_VOID_VARY_INSTINIT694,17074 -#define GL_VOID_VARY_GLIST_VOID_VARY_READ GL_VOID_VARY_GLIST_VOID_VARY_READ700,17241 -#define GL_VOID_VARY_GLIST_VOID_VARY_WRITE GL_VOID_VARY_GLIST_VOID_VARY_WRITE714,17624 -#define GL_VOID_VALX_INSTINIT GL_VOID_VALX_INSTINIT725,17957 -#define GL_VOID_VALX_GLIST_VOID_VALX_READ GL_VOID_VALX_GLIST_VOID_VALX_READ731,18129 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR742,18378 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR745,18464 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK750,18653 -#define GL_VOID_VALX_GLIST_VOID_VALX_UNK GL_VOID_VALX_GLIST_VOID_VALX_UNK755,18789 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR758,18872 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK763,19015 -#define GL_VOID_VALX_GLIST_VOID_VALX_WRITE GL_VOID_VALX_GLIST_VOID_VALX_WRITE768,19166 -#define GL_VOID_VALY_INSTINIT GL_VOID_VALY_INSTINIT780,19477 -#define GL_VOID_VALY_GLIST_VOID_VALY_READ GL_VOID_VALY_GLIST_VOID_VALY_READ786,19648 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR797,19897 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR801,20002 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK806,20194 -#define GL_VOID_VALY_GLIST_VOID_VALY_UNK GL_VOID_VALY_GLIST_VOID_VALY_UNK811,20330 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR815,20432 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK820,20578 -#define GL_VOID_VALY_GLIST_VOID_VALY_WRITE GL_VOID_VALY_GLIST_VOID_VALY_WRITE825,20729 - -JIT/HPP/yaam_get_d.h,8728 -#define GET_X_VAR_INSTINIT GET_X_VAR_INSTINIT1,0 -#define GET_Y_VAR_INSTINIT GET_Y_VAR_INSTINIT9,245 -#define GET_YY_VAR_INSTINIT GET_YY_VAR_INSTINIT19,556 -#define GET_X_VAL_INSTINIT GET_X_VAL_INSTINIT34,1057 -#define GET_X_VAL_GVALX_NONVAR GET_X_VAL_GVALX_NONVAR41,1275 -#define GET_X_VAL_GVALX_NONVAR_NONVAR GET_X_VAL_GVALX_NONVAR_NONVAR44,1348 -#define GET_X_VAL_GVALX_NONVAR_UNK GET_X_VAL_GVALX_NONVAR_UNK49,1511 -#define GET_X_VAL_GVALX_UNK GET_X_VAL_GVALX_UNK54,1634 -#define GET_X_VAL_GVALX_VAR_NONVAR GET_X_VAL_GVALX_VAR_NONVAR57,1704 -#define GET_X_VAL_GVALX_VAR_UNK GET_X_VAL_GVALX_VAR_UNK62,1827 -#define GET_Y_VAL_INSTINIT GET_Y_VAL_INSTINIT67,1954 -#define GET_Y_VAL_GVALY_NONVAR GET_Y_VAL_GVALY_NONVAR74,2153 -#define GET_Y_VAL_GVALY_NONVAR_NONVAR GET_Y_VAL_GVALY_NONVAR_NONVAR77,2225 -#define GET_Y_VAL_GVALY_NONVAR_UNK GET_Y_VAL_GVALY_NONVAR_UNK82,2388 -#define GET_Y_VAL_GVALY_UNK GET_Y_VAL_GVALY_UNK87,2511 -#define GET_Y_VAL_GVALY_VAR_NONVAR GET_Y_VAL_GVALY_VAR_NONVAR90,2580 -#define GET_Y_VAL_GVALY_VAR_UNK GET_Y_VAL_GVALY_VAR_UNK95,2703 -#define GET_ATOM_INSTINIT GET_ATOM_INSTINIT100,2830 -#define GET_ATOM_GATOM_NONVAR GET_ATOM_GATOM_NONVAR108,3072 -#define GET_ATOM_GATOM_UNK GET_ATOM_GATOM_UNK119,3301 -#define GET_2ATOMS_INSTINIT GET_2ATOMS_INSTINIT124,3416 -#define GET_2ATOMS_GATOM_2UNK GET_2ATOMS_GATOM_2UNK130,3570 -#define GET_2ATOMS_GATOM_2B GET_2ATOMS_GATOM_2B133,3642 -#define GET_2ATOMS_GATOM_2BNONVAR GET_2ATOMS_GATOM_2BNONVAR137,3726 -#define GET_2ATOMS_GATOM_2BUNK GET_2ATOMS_GATOM_2BUNK148,3963 -#define GET_3ATOMS_INSTINIT GET_3ATOMS_INSTINIT153,4082 -#define GET_3ATOMS_GATOM_3UNK GET_3ATOMS_GATOM_3UNK159,4236 -#define GET_3ATOMS_GATOM_3B GET_3ATOMS_GATOM_3B162,4309 -#define GET_3ATOMS_GATOM_3BUNK GET_3ATOMS_GATOM_3BUNK165,4360 -#define GET_3ATOMS_GATOM_3C GET_3ATOMS_GATOM_3C168,4434 -#define GET_3ATOMS_GATOM_3CNONVAR GET_3ATOMS_GATOM_3CNONVAR172,4519 -#define GET_3ATOMS_GATOM_3CUNK GET_3ATOMS_GATOM_3CUNK183,4757 -#define GET_4ATOMS_INSTINIT GET_4ATOMS_INSTINIT188,4877 -#define GET_4ATOMS_GATOM_4UNK GET_4ATOMS_GATOM_4UNK194,5031 -#define GET_4ATOMS_GATOM_4B GET_4ATOMS_GATOM_4B197,5105 -#define GET_4ATOMS_GATOM_4BUNK GET_4ATOMS_GATOM_4BUNK200,5156 -#define GET_4ATOMS_GATOM_4C GET_4ATOMS_GATOM_4C203,5231 -#define GET_4ATOMS_GATOM_4CUNK GET_4ATOMS_GATOM_4CUNK206,5282 -#define GET_4ATOMS_GATOM_4D GET_4ATOMS_GATOM_4D209,5357 -#define GET_4ATOMS_GATOM_4DNONVAR GET_4ATOMS_GATOM_4DNONVAR213,5443 -#define GET_4ATOMS_GATOM_4DUNK GET_4ATOMS_GATOM_4DUNK224,5682 -#define GET_5ATOMS_INSTINIT GET_5ATOMS_INSTINIT229,5803 -#define GET_5ATOMS_GATOM_5UNK GET_5ATOMS_GATOM_5UNK235,5957 -#define GET_5ATOMS_GATOM_5B GET_5ATOMS_GATOM_5B238,6032 -#define GET_5ATOMS_GATOM_5BUNK GET_5ATOMS_GATOM_5BUNK241,6083 -#define GET_5ATOMS_GATOM_5C GET_5ATOMS_GATOM_5C244,6159 -#define GET_5ATOMS_GATOM_5CUNK GET_5ATOMS_GATOM_5CUNK247,6210 -#define GET_5ATOMS_GATOM_5D GET_5ATOMS_GATOM_5D250,6286 -#define GET_5ATOMS_GATOM_5DUNK GET_5ATOMS_GATOM_5DUNK253,6337 -#define GET_5ATOMS_GATOM_5E GET_5ATOMS_GATOM_5E256,6413 -#define GET_5ATOMS_GATOM_5ENONVAR GET_5ATOMS_GATOM_5ENONVAR260,6500 -#define GET_5ATOMS_GATOM_5EUNK GET_5ATOMS_GATOM_5EUNK271,6740 -#define GET_6ATOMS_INSTINIT GET_6ATOMS_INSTINIT276,6862 -#define GET_6ATOMS_GATOM_6UNK GET_6ATOMS_GATOM_6UNK282,7016 -#define GET_6ATOMS_GATOM_6B GET_6ATOMS_GATOM_6B285,7092 -#define GET_6ATOMS_GATOM_6BUNK GET_6ATOMS_GATOM_6BUNK288,7143 -#define GET_6ATOMS_GATOM_6C GET_6ATOMS_GATOM_6C291,7220 -#define GET_6ATOMS_GATOM_6CUNK GET_6ATOMS_GATOM_6CUNK294,7271 -#define GET_6ATOMS_GATOM_6D GET_6ATOMS_GATOM_6D297,7348 -#define GET_6ATOMS_GATOM_6DUNK GET_6ATOMS_GATOM_6DUNK300,7399 -#define GET_6ATOMS_GATOM_6E GET_6ATOMS_GATOM_6E303,7476 -#define GET_6ATOMS_GATOM_6EUNK GET_6ATOMS_GATOM_6EUNK306,7527 -#define GET_6ATOMS_GATOM_6F GET_6ATOMS_GATOM_6F309,7604 -#define GET_6ATOMS_GATOM_6FNONVAR GET_6ATOMS_GATOM_6FNONVAR313,7692 -#define GET_6ATOMS_GATOM_6FUNK GET_6ATOMS_GATOM_6FUNK324,7933 -#define GET_LIST_INSTINIT GET_LIST_INSTINIT329,8056 -#define GET_LIST_GLIST_NONVAR GET_LIST_GLIST_NONVAR336,8261 -#define GET_LIST_GLIST_UNK GET_LIST_GLIST_UNK348,8543 -#define GET_STRUCT_INSTINIT GET_STRUCT_INSTINIT362,8889 -#define GET_STRUCT_GSTRUCT_NONVAR GET_STRUCT_GSTRUCT_NONVAR369,9102 -#define GET_STRUCT_GSTRUCT_UNK GET_STRUCT_GSTRUCT_UNK389,9588 -#define GET_FLOAT_INSTINIT GET_FLOAT_INSTINIT402,9942 -#define GET_FLOAT_GFLOAT_NONVAR GET_FLOAT_GFLOAT_NONVAR410,10196 -#define GET_FLOAT_GFLOAT_NONVAR GET_FLOAT_GFLOAT_NONVAR436,10798 -#define GET_FLOAT_GFLOAT_UNK GET_FLOAT_GFLOAT_UNK462,11376 -#define GET_LONGINT_INSTINIT GET_LONGINT_INSTINIT470,11588 -#define GET_LONGINT_GLONGINT_NONVAR GET_LONGINT_GLONGINT_NONVAR476,11761 -#define GET_LONGINT_GLONGINT_UNK GET_LONGINT_GLONGINT_UNK496,12239 -#define GET_BIGINT_INSTINIT GET_BIGINT_INSTINIT505,12471 -#define GET_BIGINT_GBIGINT_NONVAR GET_BIGINT_GBIGINT_NONVAR511,12643 -#define GET_BIGINT_GBIGINT_UNK GET_BIGINT_GBIGINT_UNK531,13119 -#define GET_DBTERM_INSTINIT GET_DBTERM_INSTINIT540,13332 -#define GET_DBTERM_GDBTERM_NONVAR GET_DBTERM_GDBTERM_NONVAR546,13504 -#define GET_DBTERM_GDBTERM_UNK GET_DBTERM_GDBTERM_UNK552,13691 -#define GLIST_VALX_INSTINIT GLIST_VALX_INSTINIT560,13896 -#define GLIST_VALX_GLIST_VALX_READ GLIST_VALX_GLIST_VALX_READ571,14207 -#define GLIST_VALX_GLIST_VALX_NONVAR GLIST_VALX_GLIST_VALX_NONVAR583,14493 -#define GLIST_VALX_GLIST_VALX_NONVAR_NONVAR GLIST_VALX_GLIST_VALX_NONVAR_NONVAR586,14572 -#define GLIST_VALX_GLIST_VALX_NONVAR_UNK GLIST_VALX_GLIST_VALX_NONVAR_UNK591,14747 -#define GLIST_VALX_GLIST_VALX_UNK GLIST_VALX_GLIST_VALX_UNK596,14876 -#define GLIST_VALX_GLIST_VALX_VAR_NONVAR GLIST_VALX_GLIST_VALX_VAR_NONVAR599,14952 -#define GLIST_VALX_GLIST_VALX_VAR_UNK GLIST_VALX_GLIST_VALX_VAR_UNK604,15088 -#define GLIST_VALX_GLIST_VALX_WRITE GLIST_VALX_GLIST_VALX_WRITE609,15234 -#define GLIST_VALY_INSTINIT GLIST_VALY_INSTINIT624,15656 -#define GLIST_VALY_GLIST_VALY_READ GLIST_VALY_GLIST_VALY_READ630,15834 -#define GLIST_VALY_GLIST_VALY_NONVAR GLIST_VALY_GLIST_VALY_NONVAR639,16037 -#define GLIST_VALY_GLIST_VALY_NONVAR_NONVAR GLIST_VALY_GLIST_VALY_NONVAR_NONVAR644,16179 -#define GLIST_VALY_GLIST_VALY_NONVAR_UNK GLIST_VALY_GLIST_VALY_NONVAR_UNK649,16341 -#define GLIST_VALY_GLIST_VALY_UNK GLIST_VALY_GLIST_VALY_UNK653,16428 -#define GLIST_VALY_GLIST_VALY_VAR_NONVAR GLIST_VALY_GLIST_VALY_VAR_NONVAR657,16523 -#define GLIST_VALY_GLIST_VALY_VAR_UNK GLIST_VALY_GLIST_VALY_VAR_UNK662,16659 -#define GLIST_VALY_GLIST_VALY_WRITE GLIST_VALY_GLIST_VALY_WRITE668,16828 -#define GL_VOID_VARX_INSTINIT GL_VOID_VARX_INSTINIT681,17170 -#define GL_VOID_VARX_GLIST_VOID_VARX_READ GL_VOID_VARX_GLIST_VOID_VARX_READ688,17387 -#define GL_VOID_VARX_GLIST_VOID_VAR_WRITE GL_VOID_VARX_GLIST_VOID_VAR_WRITE702,17734 -#define GL_VOID_VARY_INSTINIT GL_VOID_VARY_INSTINIT714,18054 -#define GL_VOID_VARY_GLIST_VOID_VARY_READ GL_VOID_VARY_GLIST_VOID_VARY_READ721,18270 -#define GL_VOID_VARY_GLIST_VOID_VARY_WRITE GL_VOID_VARY_GLIST_VOID_VARY_WRITE735,18653 -#define GL_VOID_VALX_INSTINIT GL_VOID_VALX_INSTINIT746,18986 -#define GL_VOID_VALX_GLIST_VOID_VALX_READ GL_VOID_VALX_GLIST_VOID_VALX_READ753,19207 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR764,19456 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR767,19542 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK772,19731 -#define GL_VOID_VALX_GLIST_VOID_VALX_UNK GL_VOID_VALX_GLIST_VOID_VALX_UNK777,19867 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR780,19950 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK785,20093 -#define GL_VOID_VALX_GLIST_VOID_VALX_WRITE GL_VOID_VALX_GLIST_VOID_VALX_WRITE790,20244 -#define GL_VOID_VALY_INSTINIT GL_VOID_VALY_INSTINIT802,20555 -#define GL_VOID_VALY_GLIST_VOID_VALY_READ GL_VOID_VALY_GLIST_VOID_VALY_READ809,20775 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR820,21024 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR824,21129 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK829,21321 -#define GL_VOID_VALY_GLIST_VOID_VALY_UNK GL_VOID_VALY_GLIST_VOID_VALY_UNK834,21457 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR838,21559 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK843,21705 -#define GL_VOID_VALY_GLIST_VOID_VALY_WRITE GL_VOID_VALY_GLIST_VOID_VALY_WRITE848,21856 - -JIT/HPP/yaam_macros.hh,8166 -} YAP_BBs;YAP_BBs3,46 -set_last_deeply(BlocksContext* b, BlocksContext** last) {set_last_deeply11,139 -#define FUNCTOR_LARGE_INT FUNCTOR_LARGE_INT34,709 -#define FUNCTOR_LARGE_INT FUNCTOR_LARGE_INT36,811 -#define SET_DEPTH(SET_DEPTH39,880 -#define BACK_TO_HEADER(BACK_TO_HEADER47,1029 -#define FREE(FREE55,1243 -#define YAAM_BLOCK_IS_DEEPB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_DEEPB_MULTIPLE_DESTINY65,1378 -#define EMIT_CONDITIONAL2_BLOCK(EMIT_CONDITIONAL2_BLOCK73,1794 -#define EMIT_CONDITIONAL1_BLOCK(EMIT_CONDITIONAL1_BLOCK82,2071 -#define YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY92,2370 -#define YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY101,2799 -#define PRINT_BLOCK_MAC(PRINT_BLOCK_MAC111,3143 -#define PRINT_BLOCK_MAC(PRINT_BLOCK_MAC113,3255 -#define INIT_SPENT_PROF_TIME_FOR_HEAD(INIT_SPENT_PROF_TIME_FOR_HEAD117,3338 -#define COMPLETE_SPENT_PROF_TIME_FOR_HEAD(COMPLETE_SPENT_PROF_TIME_FOR_HEAD122,3504 -#define INIT_SPENT_PROF_TIME(INIT_SPENT_PROF_TIME129,3876 -#define COMPLETE_SPENT_PROF_TIME(COMPLETE_SPENT_PROF_TIME134,4032 -#define INIT_SPENT_PROF_TIME_FOR_HEAD(INIT_SPENT_PROF_TIME_FOR_HEAD142,4421 -#define COMPLETE_SPENT_PROF_TIME_FOR_HEAD(COMPLETE_SPENT_PROF_TIME_FOR_HEAD144,4463 -#define INIT_SPENT_PROF_TIME(INIT_SPENT_PROF_TIME146,4509 -#define COMPLETE_SPENT_PROF_TIME(COMPLETE_SPENT_PROF_TIME148,4541 -EMIT_MULTIPLE_DESTINY_BLOCK_TEST(YAP_BBs yaam_block) {EMIT_MULTIPLE_DESTINY_BLOCK_TEST155,4674 -EMIT_SIMPLE_BLOCK_TEST(YAP_BBs yaam_block) {EMIT_SIMPLE_BLOCK_TEST208,6872 -#define EMIT_3DEEP_BLOCK(EMIT_3DEEP_BLOCK253,8780 -#define EMIT_2DEEP_BLOCK(EMIT_2DEEP_BLOCK262,9116 -#define EMIT_1DEEP_BLOCK(EMIT_1DEEP_BLOCK271,9442 -#define EMIT_SIMPLE_BLOCK(EMIT_SIMPLE_BLOCK280,9759 -#define REDEFINE_DESTINY(REDEFINE_DESTINY288,10038 -#define SET_FAILDESTINY_AS_MULTIPLE(SET_FAILDESTINY_AS_MULTIPLE296,10305 -#define SET_DESTINY_AS_MULTIPLE(SET_DESTINY_AS_MULTIPLE311,11708 -#define SET_DESTINY(SET_DESTINY326,13027 -EMIT_HEAD_BLOCK(yamop* __P) {EMIT_HEAD_BLOCK355,14376 -EMIT_ENTRY_BLOCK(yamop* __P, YAP_BBs yaam_block) {EMIT_ENTRY_BLOCK384,15558 -#define EMIT_CONDITIONAL_FAIL(EMIT_CONDITIONAL_FAIL448,18058 -#define EMIT_CONDITIONAL_SUCCESS(EMIT_CONDITIONAL_SUCCESS501,20348 -#define EMIT_CONDITIONAL(EMIT_CONDITIONAL554,22636 -#define IF(IF604,24513 -#define ELSEIF(ELSEIF605,24557 -#define ELSE(ELSE606,24609 -#define ENDBLOCK(ENDBLOCK607,24651 -#define SIMPLE_VBLOCK_ND0(SIMPLE_VBLOCK_ND0610,24703 -#define MULTIPLE_DESTINY_VBLOCK_ND0(MULTIPLE_DESTINY_VBLOCK_ND0633,25733 -#define MULTIPLE_DESTINY_VBLOCK_ND1(MULTIPLE_DESTINY_VBLOCK_ND1647,26346 -#define MULTIPLE_DESTINY_VBLOCK_ND0_ND1(MULTIPLE_DESTINY_VBLOCK_ND0_ND1650,26443 -#define MULTIPLE_DESTINY_VBLOCK_D0_ND1(MULTIPLE_DESTINY_VBLOCK_D0_ND1662,27022 -found_entry(char* key, yamop* p) {found_entry668,27225 -emit_blocks_buf (BlocksContext* mt, short nident, char buf[], yamop* p) {emit_blocks_buf678,27466 -fill_entries(BlocksContext* mt, yamop** p) {fill_entries902,36472 -const char* cfile_header_for_trace = "#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HREADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\nNativeArea->runs[(*_PREG)->u.jhc.jh->caa.naddress] += 1;\n\n\0";cfile_header_for_trace916,37054 -const char* cfile_header_for_trace = "#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HREADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\nNativeArea->runs[(*_PREG)->u.jhc.jh->caa.naddress] += 1;\n\n\0";cfile_header_for_trace918,37756 -const char* cfile_header_for_trace = "#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HREADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\n\n\0";cfile_header_for_trace922,38502 -const char* cfile_header_for_trace = "#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HREADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\n\n\0";cfile_header_for_trace924,39146 -const char* cfile_end_for_trace = " | clang -O0 -DCUT_C=1 -DCOROUTINING=1 -DRATIONAL_TREES=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DTABLING=1 -DHAVE_CONFIG_H -D_YAP_NOT_INSTALLED_=1 -D_NATIVE=1 -I. -I./H -I./include -I./os -I./OPTYap -I./BEAM -I./MYDDAS -I./HPP -xc -c - -o - -emit-llvm\0";cfile_end_for_trace927,39817 -emit_intermediate_for_trace (TraceContext *tt, CELL *tsize, char **cmd, yamop* p) {emit_intermediate_for_trace931,40392 -emit_intermediate_for_trace_dbg (TraceContext *tt, yamop* p) {emit_intermediate_for_trace_dbg1008,43167 -const char* cfile_header_for_clause = "#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HREADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\n\0";cfile_header_for_clause1017,43389 -const char* cfile_end_for_clause = " | clang -O0 -DCUT_C=1 -DCOROUTINING=1 -DRATIONAL_TREES=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DTABLING=1 -DHAVE_CONFIG_H -D_YAP_NOT_INSTALLED_=1 -D_NATIVE=1 -I. -I./H -I./include -I./os -I./OPTYap -I./BEAM -I./MYDDAS -I./HPP -xc -c - -o - -emit-llvm\0";cfile_end_for_clause1018,44484 -#define ENTRY_HAS_WRITED_CPART(ENTRY_HAS_WRITED_CPART1021,45042 -#define SET_ADDRESS_R(SET_ADDRESS_R1043,45801 -#define SET_ADDRESS_W(SET_ADDRESS_W1056,46195 -fe(op_numbers k, op_numbers* e, COUNT n) {fe1070,46615 -emit_intermediate_for_clause (yamop *p, char **cmd) {emit_intermediate_for_clause1078,46759 -recompile(void *pt)recompile1217,51589 -compile(void *pt)compile1252,53605 - -JIT/HPP/yaam_macros.hpp,8161 -} YAP_BBs;YAP_BBs3,46 -set_last_deeply(BlocksContext* b, BlocksContext** last) {set_last_deeply12,164 -#define FUNCTOR_LARGE_INT FUNCTOR_LARGE_INT35,734 -#define FUNCTOR_LARGE_INT FUNCTOR_LARGE_INT37,836 -#define SET_DEPTH(SET_DEPTH40,905 -#define BACK_TO_HEADER(BACK_TO_HEADER48,1054 -#define FREE(FREE56,1268 -#define YAAM_BLOCK_IS_DEEPB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_DEEPB_MULTIPLE_DESTINY66,1403 -#define EMIT_CONDITIONAL2_BLOCK(EMIT_CONDITIONAL2_BLOCK74,1819 -#define EMIT_CONDITIONAL1_BLOCK(EMIT_CONDITIONAL1_BLOCK83,2096 -#define YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY93,2395 -#define YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY102,2819 -#define PRINT_BLOCK_MAC(PRINT_BLOCK_MAC112,3163 -#define PRINT_BLOCK_MAC(PRINT_BLOCK_MAC114,3275 -#define INIT_SPENT_PROF_TIME_FOR_HEAD(INIT_SPENT_PROF_TIME_FOR_HEAD118,3358 -#define COMPLETE_SPENT_PROF_TIME_FOR_HEAD(COMPLETE_SPENT_PROF_TIME_FOR_HEAD123,3524 -#define INIT_SPENT_PROF_TIME(INIT_SPENT_PROF_TIME130,3896 -#define COMPLETE_SPENT_PROF_TIME(COMPLETE_SPENT_PROF_TIME135,4052 -#define INIT_SPENT_PROF_TIME_FOR_HEAD(INIT_SPENT_PROF_TIME_FOR_HEAD143,4441 -#define COMPLETE_SPENT_PROF_TIME_FOR_HEAD(COMPLETE_SPENT_PROF_TIME_FOR_HEAD145,4483 -#define INIT_SPENT_PROF_TIME(INIT_SPENT_PROF_TIME147,4529 -#define COMPLETE_SPENT_PROF_TIME(COMPLETE_SPENT_PROF_TIME149,4561 -EMIT_MULTIPLE_DESTINY_BLOCK_TEST(YAP_BBs yaam_block) {EMIT_MULTIPLE_DESTINY_BLOCK_TEST156,4694 -EMIT_SIMPLE_BLOCK_TEST(YAP_BBs yaam_block) {EMIT_SIMPLE_BLOCK_TEST209,6892 -#define EMIT_3DEEP_BLOCK(EMIT_3DEEP_BLOCK254,8800 -#define EMIT_2DEEP_BLOCK(EMIT_2DEEP_BLOCK263,9136 -#define EMIT_1DEEP_BLOCK(EMIT_1DEEP_BLOCK272,9462 -#define EMIT_SIMPLE_BLOCK(EMIT_SIMPLE_BLOCK281,9779 -#define REDEFINE_DESTINY(REDEFINE_DESTINY289,10058 -#define SET_FAILDESTINY_AS_MULTIPLE(SET_FAILDESTINY_AS_MULTIPLE297,10325 -#define SET_DESTINY_AS_MULTIPLE(SET_DESTINY_AS_MULTIPLE312,11728 -#define SET_DESTINY(SET_DESTINY327,13047 -EMIT_HEAD_BLOCK(yamop* __P) {EMIT_HEAD_BLOCK356,14396 -EMIT_ENTRY_BLOCK(yamop* __P, YAP_BBs yaam_block) {EMIT_ENTRY_BLOCK385,15582 -#define EMIT_CONDITIONAL_FAIL(EMIT_CONDITIONAL_FAIL449,18082 -#define EMIT_CONDITIONAL_SUCCESS(EMIT_CONDITIONAL_SUCCESS502,20372 -#define EMIT_CONDITIONAL(EMIT_CONDITIONAL555,22660 -#define IF(IF605,24537 -#define ELSEIF(ELSEIF606,24581 -#define ELSE(ELSE607,24633 -#define ENDBLOCK(ENDBLOCK608,24675 -#define SIMPLE_VBLOCK_ND0(SIMPLE_VBLOCK_ND0611,24727 -#define MULTIPLE_DESTINY_VBLOCK_ND0(MULTIPLE_DESTINY_VBLOCK_ND0634,25757 -#define MULTIPLE_DESTINY_VBLOCK_ND1(MULTIPLE_DESTINY_VBLOCK_ND1648,26370 -#define MULTIPLE_DESTINY_VBLOCK_ND0_ND1(MULTIPLE_DESTINY_VBLOCK_ND0_ND1651,26467 -#define MULTIPLE_DESTINY_VBLOCK_D0_ND1(MULTIPLE_DESTINY_VBLOCK_D0_ND1663,27046 -found_entry(char* key, yamop* p) {found_entry669,27249 -emit_blocks_buf (BlocksContext* mt, short nident, char buf[], yamop* p) {emit_blocks_buf679,27490 -fill_entries(BlocksContext* mt, yamop** p) {fill_entries903,36496 -const char* cfile_header_for_trace = "#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HEADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\nNativeArea->runs[(*_PREG)->y_u.J.jh->caa.naddress] += 1;\n\n\0";cfile_header_for_trace917,37078 -const char* cfile_header_for_trace = "#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HEADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\nNativeArea->runs[(*_PREG)->y_u.J.jh->caa.naddress] += 1;\n\n\0";cfile_header_for_trace919,37779 -const char* cfile_header_for_trace = "#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HEADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\n\n\0";cfile_header_for_trace923,38524 -const char* cfile_header_for_trace = "#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HEADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\n\n\0";cfile_header_for_trace925,39167 -const char* cfile_end_for_trace = " | clang -O0 -DCUT_C=1 -DCOROUTINING=1 -DRATIONAL_TREES=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DTABLING=1 -DHAVE_CONFIG_H -D_YAP_NOT_INSTALLED_=1 -D_NATIVE=1 -I. -I./H -I./include -I./os -I./OPTYap -I./BEAM -I./MYDDAS -I./HPP -xc -c - -o - -emit-llvm\0";cfile_end_for_trace928,39837 -emit_intermediate_for_trace (TraceContext *tt, CELL *tsize, char **cmd, yamop* p) {emit_intermediate_for_trace932,40412 -emit_intermediate_for_trace_dbg (TraceContext *tt, yamop* p) {emit_intermediate_for_trace_dbg1009,43187 -const char* cfile_header_for_clause = "#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n\nextern CELL nnexec;\nextern int IUnify_complex(CELL*, CELL*, CELL*);\nextern int iequ_complex(CELL*, CELL*, CELL*);\nextern void print_preg(yamop*);\nextern NativeContext* NativeArea;\nextern yamop* HEADPREG;\nextern CELL BLOCK;\nextern CELL BLOCKADDRESS;\nextern CELL FAILED;\n\nvoid* clause(yamop**, yamop**, CELL**, void*[], void*[]);\n\nvoid* clause(yamop** _PREG, yamop** _CPREG, CELL** _SREG, void* external_labels[], void* OpAddress[]) {\n\0";cfile_header_for_clause1018,43409 -const char* cfile_end_for_clause = " | clang -O0 -DCUT_C=1 -DCOROUTINING=1 -DRATIONAL_TREES=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DTABLING=1 -DHAVE_CONFIG_H -D_YAP_NOT_INSTALLED_=1 -D_NATIVE=1 -I. -I./H -I./include -I./os -I./OPTYap -I./BEAM -I./MYDDAS -I./HPP -xc -c - -o - -emit-llvm\0";cfile_end_for_clause1019,44503 -#define ENTRY_HAS_WRITED_CPART(ENTRY_HAS_WRITED_CPART1022,45061 -#define SET_ADDRESS_R(SET_ADDRESS_R1044,45820 -#define SET_ADDRESS_W(SET_ADDRESS_W1057,46214 -fe(op_numbers k, op_numbers* e, COUNT n) {fe1071,46634 -emit_intermediate_for_clause (yamop *p, char **cmd) {emit_intermediate_for_clause1079,46778 -recompile(void *pt)recompile1219,51621 -compile(void *pt)compile1254,53637 - -JIT/HPP/yaam_misc.h,7756 -#define LUCK_LU_INSTINIT LUCK_LU_INSTINIT2,18 -#define LUCK_LU_INSTINIT LUCK_LU_INSTINIT14,284 -#define LOCK_LU_END LOCK_LU_END19,399 -#define UNLOCK_LU_INSTINITUNLOCK_LU_INSTINIT22,458 -#define UNLOCK_LU_YAPOR_THREADS UNLOCK_LU_YAPOR_THREADS25,528 -#define UNLOCK_LU_END UNLOCK_LU_END30,616 -#define ALLOC_FOR_LOGICAL_PRED_INSTINITALLOC_FOR_LOGICAL_PRED_INSTINIT34,701 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS37,765 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL40,876 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END43,973 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT49,1113 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IF ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IF52,1231 -#define ALLOC_FOR_LOGICAL_PRED_END ALLOC_FOR_LOGICAL_PRED_END59,1393 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT67,1636 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT100,2484 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT134,3348 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT167,4214 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT203,5166 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT234,5976 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT266,6802 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT297,7630 -#define COPY_IDB_TERM_END COPY_IDB_TERM_END330,8506 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT336,8663 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT364,9316 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT393,10005 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT421,10675 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT452,11434 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT478,12053 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT505,12691 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT531,13327 -#define UNIFY_IDB_TERM_END UNIFY_IDB_TERM_END559,14013 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT563,14106 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT581,14622 -#define ENSURE_SPACE_ENDENSURE_SPACE_END599,15112 -#define JUMP_INSTINIT JUMP_INSTINIT601,15140 -#define MOVE_BACK_INSTINIT MOVE_BACK_INSTINIT605,15222 -#define SKIP_INSTINIT SKIP_INSTINIT609,15358 -#define EITHER_INSTINITEITHER_INSTINIT613,15443 -#define EITHER_LOW_LEVEL_TRACER EITHER_LOW_LEVEL_TRACER616,15495 -#define EITHER_POST_COROUTINING EITHER_POST_COROUTINING620,15596 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA628,15825 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA633,15981 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA639,16143 -#define EITHER_POST_FROZEN_YSBA EITHER_POST_FROZEN_YSBA644,16236 -#define EITHER_YAPOR EITHER_YAPOR651,16474 -#define EITHER_END EITHER_END655,16534 -#define OR_ELSE_INSTINIT OR_ELSE_INSTINIT660,16652 -#define OR_ELSE_DEPTH OR_ELSE_DEPTH666,16803 -#define OR_ELSE_POST_DEPTH OR_ELSE_POST_DEPTH670,16866 -#define OR_ELSE_YAPOR OR_ELSE_YAPOR674,16951 -#define OR_ELSE_END OR_ELSE_END678,17040 -#define OR_LAST_INSTINIT OR_LAST_INSTINIT684,17203 -#define OR_LAST_IFOK_INIT OR_LAST_IFOK_INIT689,17296 -#define OR_LAST_IFOK_DEPTH OR_LAST_IFOK_DEPTH695,17441 -#define OR_LAST_IFOK_END OR_LAST_IFOK_END699,17506 -#define OR_LAST_NOIF_INIT OR_LAST_NOIF_INIT703,17590 -#define OR_LAST_NOIF_DEPTH OR_LAST_NOIF_DEPTH710,17745 -#define OR_LAST_NOIF_END OR_LAST_NOIF_END714,17810 -#define OR_LAST_YAPOR OR_LAST_YAPOR718,17885 -#define OR_LAST_NOYAPOR OR_LAST_NOYAPOR722,17962 -#define OR_LAST_END OR_LAST_END726,18038 -#define LOCK_PRED_INSTINIT LOCK_PRED_INSTINIT730,18118 -#define LOCK_PRED_FIRSTIFOK LOCK_PRED_FIRSTIFOK735,18228 -#define LOCK_PRED_SECONDTIFOK LOCK_PRED_SECONDTIFOK739,18296 -#define LOCK_PRED_END LOCK_PRED_END747,18467 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT752,18597 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT782,19247 -#define INDEX_PRED_END INDEX_PRED_END800,19667 -#define THREAD_LOCAL_INSTINIT THREAD_LOCAL_INSTINIT804,19745 -#define EXPAND_INDEX_INSTINIT EXPAND_INDEX_INSTINIT812,19941 -#define EXPAND_INDEX_YAPOR_THREADS_NOPP EXPAND_INDEX_YAPOR_THREADS_NOPP818,20119 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT821,20183 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK824,20260 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_END EXPAND_INDEX_YAPOR_THREADS_IFOK_END827,20333 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS832,20422 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS836,20495 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG842,20631 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG846,20707 -#define EXPAND_INDEX_UNLOCK EXPAND_INDEX_UNLOCK850,20824 -#define EXPAND_INDEX_END EXPAND_INDEX_END854,20886 -#define EXPAND_CLAUSES_INSTINIT EXPAND_CLAUSES_INSTINIT857,20929 -#define EXPAND_CLAUSES_YAPOR_THREADS_NOPP EXPAND_CLAUSES_YAPOR_THREADS_NOPP863,21101 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT866,21167 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK869,21246 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END872,21321 -#define EXPAND_CLAUSES_NOYAPOR_NOTHREADS EXPAND_CLAUSES_NOYAPOR_NOTHREADS876,21395 -#define EXPAND_CLAUSES_UNLOCK EXPAND_CLAUSES_UNLOCK884,21588 -#define EXPAND_CLAUSES_END EXPAND_CLAUSES_END888,21652 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT893,21762 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT956,23411 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT1018,25032 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT1081,26685 -#define UNDEF_P_END UNDEF_P_END1143,28288 -#define SPY_PRED_INSTINIT SPY_PRED_INSTINIT1146,28347 -#define SPY_PRED_FIRSTIFOK SPY_PRED_FIRSTIFOK1152,28499 -#define SPY_PRED_SECONDIFOK_INIT SPY_PRED_SECONDIFOK_INIT1158,28632 -#define SPY_PRED_SECONDIFOK_FIRSTIFOK SPY_PRED_SECONDIFOK_FIRSTIFOK1164,28828 -#define SPY_PRED_SECONDIFOK_POST_FIRSTIF SPY_PRED_SECONDIFOK_POST_FIRSTIF1171,29001 -#define SPY_PRED_SECONDIFOK_SECONDIFOK SPY_PRED_SECONDIFOK_SECONDIFOK1174,29079 -#define SPY_PRED_SECONDIFOK_THIRDIFOK SPY_PRED_SECONDIFOK_THIRDIFOK1181,29265 -#define SPY_PRED_THIRDIFOK_INIT SPY_PRED_THIRDIFOK_INIT1186,29399 -#define SPY_PRED_THIRDIFOK_FIRSTIFOK SPY_PRED_THIRDIFOK_FIRSTIFOK1191,29564 -#define SPY_PRED_FOURTHIFOK SPY_PRED_FOURTHIFOK1196,29697 -#define SPY_PRED_POST_FOURTHIF SPY_PRED_POST_FOURTHIF1201,29815 -#define SPY_PRED_D0ISZERO SPY_PRED_D0ISZERO1205,29894 -#define SPY_PRED_D0ISNOZERO_INIT SPY_PRED_D0ISNOZERO_INIT1208,29976 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT1214,30116 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR1218,30202 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR1221,30275 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR1224,30352 -#define SPY_PRED_POST_IFS SPY_PRED_POST_IFS1230,30512 -#define SPY_PRED_THREADS_LOCK SPY_PRED_THREADS_LOCK1237,30664 -#define SPY_PRED_POST_LOCK SPY_PRED_POST_LOCK1241,30741 -#define SPY_PRED_THREADS_UNLOCK SPY_PRED_THREADS_UNLOCK1247,30868 -#define SPY_PRED_POST_UNLOCK SPY_PRED_POST_UNLOCK1251,30949 -#define SPY_PRED_LOW_LEVEL_TRACER SPY_PRED_LOW_LEVEL_TRACER1256,31038 -#define SPY_PRED_END SPY_PRED_END1260,31130 - -JIT/HPP/yaam_misc_d.h,7761 -#define LUCK_LU_INSTINIT LUCK_LU_INSTINIT2,18 -#define LUCK_LU_INSTINIT LUCK_LU_INSTINIT15,333 -#define LOCK_LU_END LOCK_LU_END21,497 -#define UNLOCK_LU_INSTINIT UNLOCK_LU_INSTINIT24,556 -#define UNLOCK_LU_YAPOR_THREADS UNLOCK_LU_YAPOR_THREADS28,677 -#define UNLOCK_LU_END UNLOCK_LU_END33,765 -#define ALLOC_FOR_LOGICAL_PRED_INSTINIT ALLOC_FOR_LOGICAL_PRED_INSTINIT37,850 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS41,965 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL44,1076 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END47,1173 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT53,1313 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IF ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IF56,1431 -#define ALLOC_FOR_LOGICAL_PRED_END ALLOC_FOR_LOGICAL_PRED_END63,1593 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT71,1836 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT105,2733 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT140,3646 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT174,4561 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT211,5562 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT243,6421 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT276,7296 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT308,8173 -#define COPY_IDB_TERM_END COPY_IDB_TERM_END342,9098 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT348,9255 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT377,9957 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT407,10695 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT436,11414 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT468,12222 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT495,12890 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT523,13577 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT550,14262 -#define UNIFY_IDB_TERM_END UNIFY_IDB_TERM_END579,14997 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT583,15090 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT602,15655 -#define ENSURE_SPACE_ENDENSURE_SPACE_END621,16194 -#define JUMP_INSTINIT JUMP_INSTINIT623,16222 -#define MOVE_BACK_INSTINIT MOVE_BACK_INSTINIT628,16353 -#define SKIP_INSTINIT SKIP_INSTINIT633,16538 -#define EITHER_INSTINIT EITHER_INSTINIT638,16672 -#define EITHER_LOW_LEVEL_TRACER EITHER_LOW_LEVEL_TRACER642,16775 -#define EITHER_POST_COROUTINING EITHER_POST_COROUTINING646,16876 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA654,17105 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA659,17261 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA665,17423 -#define EITHER_POST_FROZEN_YSBA EITHER_POST_FROZEN_YSBA670,17516 -#define EITHER_YAPOR EITHER_YAPOR677,17754 -#define EITHER_END EITHER_END681,17814 -#define OR_ELSE_INSTINIT OR_ELSE_INSTINIT686,17932 -#define OR_ELSE_DEPTH OR_ELSE_DEPTH693,18132 -#define OR_ELSE_POST_DEPTH OR_ELSE_POST_DEPTH697,18195 -#define OR_ELSE_YAPOR OR_ELSE_YAPOR701,18280 -#define OR_ELSE_END OR_ELSE_END705,18369 -#define OR_LAST_INSTINIT OR_LAST_INSTINIT711,18532 -#define OR_LAST_IFOK_INIT OR_LAST_IFOK_INIT717,18674 -#define OR_LAST_IFOK_DEPTH OR_LAST_IFOK_DEPTH723,18819 -#define OR_LAST_IFOK_END OR_LAST_IFOK_END727,18884 -#define OR_LAST_NOIF_INIT OR_LAST_NOIF_INIT731,18968 -#define OR_LAST_NOIF_DEPTH OR_LAST_NOIF_DEPTH738,19123 -#define OR_LAST_NOIF_END OR_LAST_NOIF_END742,19188 -#define OR_LAST_YAPOR OR_LAST_YAPOR746,19263 -#define OR_LAST_NOYAPOR OR_LAST_NOYAPOR750,19340 -#define OR_LAST_END OR_LAST_END754,19416 -#define LOCK_PRED_INSTINIT LOCK_PRED_INSTINIT758,19496 -#define LOCK_PRED_FIRSTIFOK LOCK_PRED_FIRSTIFOK764,19655 -#define LOCK_PRED_SECONDTIFOK LOCK_PRED_SECONDTIFOK768,19723 -#define LOCK_PRED_END LOCK_PRED_END776,19894 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT781,20024 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT812,20723 -#define INDEX_PRED_END INDEX_PRED_END831,21192 -#define THREAD_LOCAL_INSTINIT THREAD_LOCAL_INSTINIT835,21270 -#define EXPAND_INDEX_INSTINIT EXPAND_INDEX_INSTINIT844,21515 -#define EXPAND_INDEX_YAPOR_THREADS_NOPP EXPAND_INDEX_YAPOR_THREADS_NOPP851,21742 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT854,21806 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK857,21883 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_END EXPAND_INDEX_YAPOR_THREADS_IFOK_END860,21956 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS865,22045 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS869,22118 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG875,22254 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG879,22330 -#define EXPAND_INDEX_UNLOCK EXPAND_INDEX_UNLOCK883,22447 -#define EXPAND_INDEX_END EXPAND_INDEX_END887,22509 -#define EXPAND_CLAUSES_INSTINIT EXPAND_CLAUSES_INSTINIT890,22552 -#define EXPAND_CLAUSES_YAPOR_THREADS_NOPP EXPAND_CLAUSES_YAPOR_THREADS_NOPP897,22773 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT900,22839 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK903,22918 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END906,22993 -#define EXPAND_CLAUSES_NOYAPOR_NOTHREADS EXPAND_CLAUSES_NOYAPOR_NOTHREADS910,23067 -#define EXPAND_CLAUSES_UNLOCK EXPAND_CLAUSES_UNLOCK918,23260 -#define EXPAND_CLAUSES_END EXPAND_CLAUSES_END922,23324 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT927,23434 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT991,25132 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT1054,26802 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT1118,28504 -#define UNDEF_P_END UNDEF_P_END1181,30156 -#define SPY_PRED_INSTINIT SPY_PRED_INSTINIT1184,30215 -#define SPY_PRED_FIRSTIFOK SPY_PRED_FIRSTIFOK1191,30416 -#define SPY_PRED_SECONDIFOK_INIT SPY_PRED_SECONDIFOK_INIT1197,30549 -#define SPY_PRED_SECONDIFOK_FIRSTIFOK SPY_PRED_SECONDIFOK_FIRSTIFOK1203,30745 -#define SPY_PRED_SECONDIFOK_POST_FIRSTIF SPY_PRED_SECONDIFOK_POST_FIRSTIF1210,30918 -#define SPY_PRED_SECONDIFOK_SECONDIFOK SPY_PRED_SECONDIFOK_SECONDIFOK1213,30996 -#define SPY_PRED_SECONDIFOK_THIRDIFOK SPY_PRED_SECONDIFOK_THIRDIFOK1220,31182 -#define SPY_PRED_THIRDIFOK_INIT SPY_PRED_THIRDIFOK_INIT1225,31316 -#define SPY_PRED_THIRDIFOK_FIRSTIFOK SPY_PRED_THIRDIFOK_FIRSTIFOK1230,31481 -#define SPY_PRED_FOURTHIFOK SPY_PRED_FOURTHIFOK1235,31614 -#define SPY_PRED_POST_FOURTHIF SPY_PRED_POST_FOURTHIF1240,31732 -#define SPY_PRED_D0ISZERO SPY_PRED_D0ISZERO1244,31811 -#define SPY_PRED_D0ISNOZERO_INIT SPY_PRED_D0ISNOZERO_INIT1247,31893 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT1253,32033 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR1257,32119 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR1260,32192 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR1263,32269 -#define SPY_PRED_POST_IFS SPY_PRED_POST_IFS1269,32429 -#define SPY_PRED_THREADS_LOCK SPY_PRED_THREADS_LOCK1276,32581 -#define SPY_PRED_POST_LOCK SPY_PRED_POST_LOCK1280,32658 -#define SPY_PRED_THREADS_UNLOCK SPY_PRED_THREADS_UNLOCK1286,32785 -#define SPY_PRED_POST_UNLOCK SPY_PRED_POST_UNLOCK1290,32866 -#define SPY_PRED_LOW_LEVEL_TRACER SPY_PRED_LOW_LEVEL_TRACER1295,32955 -#define SPY_PRED_END SPY_PRED_END1299,33047 - -JIT/HPP/yaam_pop.h,153 -#define POP_N_INSTINIT POP_N_INSTINIT1,0 -#define POP_N_END POP_N_END20,444 -#define POP_INSTINIT POP_INSTINIT23,499 -#define POP_END POP_END38,825 - -JIT/HPP/yaam_pop_d.h,153 -#define POP_N_INSTINIT POP_N_INSTINIT1,0 -#define POP_N_END POP_N_END21,493 -#define POP_INSTINIT POP_INSTINIT24,548 -#define POP_END POP_END40,923 - -JIT/HPP/yaam_primitive_predicates.h,36734 -#define P_ATOM_X_INSTINIT P_ATOM_X_INSTINIT1,0 -#define P_ATOM_X_ATOM P_ATOM_X_ATOM6,120 -#define P_ATOM_X_NOATOM P_ATOM_X_NOATOM10,201 -#define P_ATOM_Y_INSTINIT P_ATOM_Y_INSTINIT14,275 -#define P_ATOM_Y_IFOK P_ATOM_Y_IFOK20,420 -#define P_ATOM_Y_NOIF P_ATOM_Y_NOIF24,499 -#define P_ATOM_Y_END P_ATOM_Y_END28,573 -#define P_ATOMIC_X_INSTINIT P_ATOMIC_X_INSTINIT32,654 -#define P_ATOMIC_X_NONVAR P_ATOMIC_X_NONVAR37,779 -#define P_ATOMIC_X_VAR P_ATOMIC_X_VAR41,862 -#define P_ATOMIC_X_END P_ATOMIC_X_END45,938 -#define P_ATOMIC_Y_INSTINIT P_ATOMIC_Y_INSTINIT49,1021 -#define P_ATOMIC_Y_NONVAR P_ATOMIC_Y_NONVAR55,1168 -#define P_ATOMIC_Y_VAR P_ATOMIC_Y_VAR59,1251 -#define P_ATOMIC_Y_END P_ATOMIC_Y_END63,1327 -#define P_INTEGER_X_INSTINIT P_INTEGER_X_INSTINIT67,1410 -#define P_INTEGER_X_INTEGER_X_NVAR_OK P_INTEGER_X_INTEGER_X_NVAR_OK73,1575 -#define P_INTEGER_X_INTEGER_X_NVAR_NOOK P_INTEGER_X_INTEGER_X_NVAR_NOOK77,1668 -#define P_INTEGER_X_INTEGER_X_UNK P_INTEGER_X_INTEGER_X_UNK81,1766 -#define P_INTEGER_Y_INSTINIT P_INTEGER_Y_INSTINIT85,1860 -#define P_INTEGER_Y_INTEGER_Y_NVAR_OK P_INTEGER_Y_INTEGER_Y_NVAR_OK91,2005 -#define P_INTEGER_Y_INTEGER_Y_NVAR_NOOK P_INTEGER_Y_INTEGER_Y_NVAR_NOOK95,2100 -#define P_INTEGER_Y_INTEGER_Y_UNK P_INTEGER_Y_INTEGER_Y_UNK99,2200 -#define P_NONVAR_X_INSTINIT P_NONVAR_X_INSTINIT103,2292 -#define P_NONVAR_X_NONVAR P_NONVAR_X_NONVAR108,2415 -#define P_NONVAR_X_NONONVAR P_NONVAR_X_NONONVAR112,2508 -#define P_NONVAR_Y_INSTINIT P_NONVAR_Y_INSTINIT116,2596 -#define P_NONVAR_Y_NONVAR P_NONVAR_Y_NONVAR122,2740 -#define P_NONVAR_Y_NONONVAR P_NONVAR_Y_NONONVAR126,2830 -#define P_NUMBER_X_INSTINIT P_NUMBER_X_INSTINIT130,2918 -#define P_NUMBER_X_INT P_NUMBER_X_INT135,3043 -#define P_NUMBER_X_FUNCTORINT P_NUMBER_X_FUNCTORINT139,3120 -#define P_NUMBER_X_FUNCTORDEFAULT P_NUMBER_X_FUNCTORDEFAULT143,3212 -#define P_NUMBER_X_POST_IF P_NUMBER_X_POST_IF147,3304 -#define P_NUMBER_X_NUMBER_X_UNK P_NUMBER_X_NUMBER_X_UNK151,3391 -#define P_NUMBER_Y_INSTINIT P_NUMBER_Y_INSTINIT155,3483 -#define P_NUMBER_Y_INT P_NUMBER_Y_INT161,3624 -#define P_NUMBER_Y_FUNCTORINT P_NUMBER_Y_FUNCTORINT165,3701 -#define P_NUMBER_Y_FUNCTORDEFAULT P_NUMBER_Y_FUNCTORDEFAULT169,3793 -#define P_NUMBER_Y_POST_IF P_NUMBER_Y_POST_IF173,3885 -#define P_NUMBER_Y_NUMBER_Y_UNK P_NUMBER_Y_NUMBER_Y_UNK177,3972 -#define P_VAR_X_INSTINIT P_VAR_X_INSTINIT181,4064 -#define P_VAR_X_NONVAR P_VAR_X_NONVAR186,4180 -#define P_VAR_X_VAR P_VAR_X_VAR190,4263 -#define P_VAR_Y_INSTINIT P_VAR_Y_INSTINIT194,4347 -#define P_VAR_Y_NONVAR P_VAR_Y_NONVAR200,4485 -#define P_VAR_Y_VAR P_VAR_Y_VAR204,4568 -#define P_DB_REF_X_INSTINIT P_DB_REF_X_INSTINIT208,4652 -#define P_DB_REF_X_DBREF P_DB_REF_X_DBREF213,4774 -#define P_DB_REF_X_NODBREF P_DB_REF_X_NODBREF217,4853 -#define P_DB_REF_X_DBREF_X_UNK P_DB_REF_X_DBREF_X_UNK221,4930 -#define P_DB_REF_Y_INSTINIT P_DB_REF_Y_INSTINIT225,5021 -#define P_DB_REF_Y_DBREF P_DB_REF_Y_DBREF231,5165 -#define P_DB_REF_Y_NODBREF P_DB_REF_Y_NODBREF235,5247 -#define P_DB_REF_Y_DBREF_Y_UNK P_DB_REF_Y_DBREF_Y_UNK239,5324 -#define P_PRIMITIVE_X_INSTINIT P_PRIMITIVE_X_INSTINIT243,5415 -#define P_PRIMITIVE_X_PRIMITIVE P_PRIMITIVE_X_PRIMITIVE248,5537 -#define P_PRIMITIVE_X_NOPRIMITIVE P_PRIMITIVE_X_NOPRIMITIVE252,5623 -#define P_PRIMITIVE_X_PRIMI_X_UNK P_PRIMITIVE_X_PRIMI_X_UNK256,5707 -#define P_PRIMITIVE_Y_INSTINIT P_PRIMITIVE_Y_INSTINIT260,5801 -#define P_PRIMITIVE_Y_PRIMITIVE P_PRIMITIVE_Y_PRIMITIVE266,5945 -#define P_PRIMITIVE_Y_NOPRIMITIVE P_PRIMITIVE_Y_NOPRIMITIVE270,6031 -#define P_PRIMITIVE_Y_PRIMI_Y_UNK P_PRIMITIVE_Y_PRIMI_Y_UNK274,6115 -#define P_COMPOUND_X_INSTINIT P_COMPOUND_X_INSTINIT278,6209 -#define P_COMPOUND_X_PAIR P_COMPOUND_X_PAIR283,6330 -#define P_COMPOUND_X_APPL_IFOK P_COMPOUND_X_APPL_IFOK287,6410 -#define P_COMPOUND_X_APPL P_COMPOUND_X_APPL291,6495 -#define P_COMPOUND_X_NOAPPL P_COMPOUND_X_NOAPPL295,6578 -#define P_COMPOUND_X_COMPOUND_X_UNK P_COMPOUND_X_COMPOUND_X_UNK299,6656 -#define P_COMPOUND_Y_INSTINIT P_COMPOUND_Y_INSTINIT303,6752 -#define P_COMPOUND_Y_PAIR P_COMPOUND_Y_PAIR309,6895 -#define P_COMPOUND_Y_APPL_IFOK P_COMPOUND_Y_APPL_IFOK313,6975 -#define P_COMPOUND_Y_APPL P_COMPOUND_Y_APPL317,7060 -#define P_COMPOUND_Y_NOAPPL P_COMPOUND_Y_NOAPPL321,7141 -#define P_COMPOUND_Y_COMPOUND_Y_UNK P_COMPOUND_Y_COMPOUND_Y_UNK325,7219 -#define P_FLOAT_X_INSTINIT P_FLOAT_X_INSTINIT329,7315 -#define P_FLOAT_X_FLOAT P_FLOAT_X_FLOAT334,7436 -#define P_FLOAT_X_POST_IF P_FLOAT_X_POST_IF338,7514 -#define P_FLOAT_X_FLOAT_X_UNK P_FLOAT_X_FLOAT_X_UNK342,7600 -#define P_FLOAT_Y_INSTINIT P_FLOAT_Y_INSTINIT346,7690 -#define P_FLOAT_Y_FLOAT P_FLOAT_Y_FLOAT352,7830 -#define P_FLOAT_Y_POST_IF P_FLOAT_Y_POST_IF356,7908 -#define P_FLOAT_Y_FLOAT_Y_UNK P_FLOAT_Y_FLOAT_Y_UNK360,7994 -#define P_PLUS_VV_INSTINIT P_PLUS_VV_INSTINIT364,8084 -#define P_PLUS_VV_PLUS_VV_NVAR P_PLUS_VV_PLUS_VV_NVAR370,8248 -#define P_PLUS_VV_PLUS_VV_NVAR_NVAR_INT P_PLUS_VV_PLUS_VV_NVAR_NVAR_INT373,8325 -#define P_PLUS_VV_PLUS_VV_NVAR_NVAR_NOINT P_PLUS_VV_PLUS_VV_NVAR_NVAR_NOINT380,8578 -#define P_PLUS_VV_PLUS_VV_UNK P_PLUS_VV_PLUS_VV_UNK388,8797 -#define P_PLUS_VV_PLUS_VV_NVAR_UNK P_PLUS_VV_PLUS_VV_NVAR_UNK394,8944 -#define P_PLUS_VC_INSTINIT P_PLUS_VC_INSTINIT400,9096 -#define P_PLUS_VC_PLUS_VC_NVAR_INT P_PLUS_VC_PLUS_VC_NVAR_INT407,9293 -#define P_PLUS_VC_PLUS_VC_NVAR_NOINT P_PLUS_VC_PLUS_VC_NVAR_NOINT413,9476 -#define P_PLUS_VC_PLUS_VC_UNK P_PLUS_VC_PLUS_VC_UNK421,9695 -#define P_PLUS_Y_VV_INSTINIT P_PLUS_Y_VV_INSTINIT427,9873 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR P_PLUS_Y_VV_PLUS_Y_VV_NVAR433,10039 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_INT P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_INT436,10120 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_NOINT P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_NOINT444,10420 -#define P_PLUS_Y_VV_PLUS_Y_VV_UNK P_PLUS_Y_VV_PLUS_Y_VV_UNK453,10685 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_UNK P_PLUS_Y_VV_PLUS_Y_VV_NVAR_UNK459,10836 -#define P_PLUS_Y_VC_INSTINIT P_PLUS_Y_VC_INSTINIT465,10992 -#define P_PLUS_Y_VC_PLUS_Y_VC_NVAR_INT P_PLUS_Y_VC_PLUS_Y_VC_NVAR_INT472,11188 -#define P_PLUS_Y_VC_PLUS_Y_VC_NVAR_NOINT P_PLUS_Y_VC_PLUS_Y_VC_NVAR_NOINT479,11417 -#define P_PLUS_Y_VC_PLUS_Y_VC_UNK P_PLUS_Y_VC_PLUS_Y_VC_UNK488,11682 -#define P_MINUS_VV_INSTINIT P_MINUS_VV_INSTINIT494,11864 -#define P_MINUS_VV_MINUS_VV_NVAR P_MINUS_VV_MINUS_VV_NVAR500,12029 -#define P_MINUS_VV_MINUS_VV_NVAR_NVAR_INT P_MINUS_VV_MINUS_VV_NVAR_NVAR_INT503,12105 -#define P_MINUS_VV_MINUS_VV_NVAR_NVAR_NOINT P_MINUS_VV_MINUS_VV_NVAR_NVAR_NOINT510,12363 -#define P_MINUS_VV_MINUS_VV_UNK P_MINUS_VV_MINUS_VV_UNK518,12585 -#define P_MINUS_VV_MINUS_VV_NVAR_UNK P_MINUS_VV_MINUS_VV_NVAR_UNK524,12734 -#define P_MINUS_CV_INSTINIT P_MINUS_CV_INSTINIT530,12888 -#define P_MINUS_CV_MINUS_CV_NVAR_INT P_MINUS_CV_MINUS_CV_NVAR_INT536,13043 -#define P_MINUS_CV_MINUS_CV_NVAR_NOINT P_MINUS_CV_MINUS_CV_NVAR_NOINT542,13226 -#define P_MINUS_CV_MINUS_CV_UNK P_MINUS_CV_MINUS_CV_UNK550,13447 -#define P_MINUS_Y_VV_INSTINIT P_MINUS_Y_VV_INSTINIT556,13628 -#define P_MINUS_Y_VV_MINUS_Y_VV_NVAR P_MINUS_Y_VV_MINUS_Y_VV_NVAR561,13755 -#define P_MINUS_Y_VV_INTTERM P_MINUS_Y_VV_INTTERM564,13835 -#define P_MINUS_Y_VV_NOINTTERM P_MINUS_Y_VV_NOINTTERM567,13922 -#define P_MINUS_Y_VV_D0EQUALS0L P_MINUS_Y_VV_D0EQUALS0L572,14033 -#define P_MINUS_Y_VV_NVAR_END P_MINUS_Y_VV_NVAR_END578,14193 -#define P_MINUS_Y_VV_MINUS_Y_VV_UNK P_MINUS_Y_VV_MINUS_Y_VV_UNK584,14366 -#define P_MINUS_Y_VV_MINUS_Y_VV_NVAR_UNK P_MINUS_Y_VV_MINUS_Y_VV_NVAR_UNK590,14519 -#define P_MINUS_Y_CV_INSTINIT P_MINUS_Y_CV_INSTINIT596,14677 -#define P_MINUS_Y_CV_MINUS_Y_CV_NVAR P_MINUS_Y_CV_MINUS_Y_CV_NVAR601,14800 -#define P_MINUS_Y_CV_INTTERM P_MINUS_Y_CV_INTTERM604,14872 -#define P_MINUS_Y_CV_NOINTTERM P_MINUS_Y_CV_NOINTTERM607,14950 -#define P_MINUS_Y_CV_D0EQUALS0L P_MINUS_Y_CV_D0EQUALS0L612,15072 -#define P_MINUS_Y_CV_NVAR_END P_MINUS_Y_CV_NVAR_END618,15237 -#define P_MINUS_Y_CV_MINUS_Y_CV_UNK P_MINUS_Y_CV_MINUS_Y_CV_UNK624,15410 -#define P_TIMES_VV_INSTINIT P_TIMES_VV_INSTINIT630,15595 -#define P_TIMES_VV_TIMES_VV_NVAR P_TIMES_VV_TIMES_VV_NVAR636,15766 -#define P_TIMES_VV_TIMES_VV_NVAR_NVAR_INT P_TIMES_VV_TIMES_VV_NVAR_NVAR_INT639,15844 -#define P_TIMES_VV_TIMES_VV_NVAR_NVAR_NOINT P_TIMES_VV_TIMES_VV_NVAR_NVAR_NOINT646,16097 -#define P_TIMES_VV_TIMES_VV_UNK P_TIMES_VV_TIMES_VV_UNK654,16324 -#define P_TIMES_VV_TIMES_VV_NVAR_UNK P_TIMES_VV_TIMES_VV_NVAR_UNK660,16473 -#define P_TIMES_VC_INSTINIT P_TIMES_VC_INSTINIT666,16627 -#define P_TIMES_VC_TIMES_VC_NVAR_INT P_TIMES_VC_TIMES_VC_NVAR_INT673,16826 -#define P_TIMES_VC_TIMES_VC_NVAR_NOINT P_TIMES_VC_TIMES_VC_NVAR_NOINT679,17009 -#define P_TIMES_VC_TIMES_VC_UNK P_TIMES_VC_TIMES_VC_UNK687,17234 -#define P_TIMES_Y_VV_INSTINIT P_TIMES_Y_VV_INSTINIT693,17413 -#define P_TIMES_Y_VV_TIMES_Y_VV_NVAR P_TIMES_Y_VV_TIMES_Y_VV_NVAR698,17540 -#define P_TIMES_Y_VV_INTTERM P_TIMES_Y_VV_INTTERM701,17620 -#define P_TIMES_Y_VV_NOINTTERM P_TIMES_Y_VV_NOINTTERM704,17702 -#define P_TIMES_Y_VV_D0EQUALS0L P_TIMES_Y_VV_D0EQUALS0L709,17813 -#define P_TIMES_Y_VV_NVAR_END P_TIMES_Y_VV_NVAR_END715,17970 -#define P_TIMES_Y_VV_TIMES_Y_VV_UNK P_TIMES_Y_VV_TIMES_Y_VV_UNK721,18143 -#define P_TIMES_Y_VV_TIMES_Y_VV_NVAR_UNK P_TIMES_Y_VV_TIMES_Y_VV_NVAR_UNK727,18299 -#define P_TIMES_Y_VC_INSTINIT P_TIMES_Y_VC_INSTINIT733,18457 -#define P_TIMES_Y_VC_TIMES_Y_VC_NVAR_INT P_TIMES_Y_VC_TIMES_Y_VC_NVAR_INT740,18654 -#define P_TIMES_Y_VC_TIMES_Y_VC_NVAR_NOINT P_TIMES_Y_VC_TIMES_Y_VC_NVAR_NOINT747,18880 -#define P_TIMES_Y_VC_NVAR_END P_TIMES_Y_VC_NVAR_END756,19145 -#define P_TIMES_Y_VC_TIMES_Y_VC_UNK P_TIMES_Y_VC_TIMES_Y_VC_UNK762,19318 -#define P_DIV_VV_INSTINIT P_DIV_VV_INSTINIT768,19501 -#define P_DIV_VV_DIV_VV_NVAR P_DIV_VV_DIV_VV_NVAR774,19664 -#define P_DIV_VV_DIV_VV_NVAR_NVAR_INT P_DIV_VV_DIV_VV_NVAR_NVAR_INT777,19736 -#define P_DIV_VV_DIV_VV_NVAR_NVAR_NOINT P_DIV_VV_DIV_VV_NVAR_NVAR_NOINT795,20264 -#define P_DIV_VV_DIV_VV_UNK P_DIV_VV_DIV_VV_UNK803,20495 -#define P_DIV_VV_DIV_VV_NVAR_UNK P_DIV_VV_DIV_VV_NVAR_UNK809,20641 -#define P_DIV_VC_INSTINIT P_DIV_VC_INSTINIT815,20792 -#define P_DIV_VC_DIV_VC_NVAR P_DIV_VC_DIV_VC_NVAR820,20911 -#define P_DIV_VC_INTTERM P_DIV_VC_INTTERM823,20975 -#define P_DIV_VC_NOINTTERM P_DIV_VC_NOINTTERM826,21045 -#define P_DIV_VC_D0EQUALS0L P_DIV_VC_D0EQUALS0L831,21160 -#define P_DIV_VC_NVAR_END P_DIV_VC_NVAR_END837,21321 -#define P_DIV_VC_DIV_VC_UNK P_DIV_VC_DIV_VC_UNK842,21454 -#define P_DIV_CV_INSTINIT P_DIV_CV_INSTINIT848,21600 -#define P_DIV_CV_DIV_CV_NVAR P_DIV_CV_DIV_CV_NVAR853,21719 -#define P_DIV_CV_INTTERM_INIT P_DIV_CV_INTTERM_INIT856,21783 -#define P_DIV_CV_INTTERM_DIVEQUALS0 P_DIV_CV_INTTERM_DIVEQUALS0859,21847 -#define P_DIV_CV_INTTERM_END P_DIV_CV_INTTERM_END865,22002 -#define P_DIV_CV_NOINTTERM P_DIV_CV_NOINTTERM868,22070 -#define P_DIV_CV_D0EQUALS0L P_DIV_CV_D0EQUALS0L872,22168 -#define P_DIV_CV_NVAR_END P_DIV_CV_NVAR_END878,22329 -#define P_DIV_CV_DIV_CV_UNK P_DIV_CV_DIV_CV_UNK883,22459 -#define P_DIV_Y_VV_INSTINIT P_DIV_Y_VV_INSTINIT889,22638 -#define P_DIV_Y_VV_DIV_Y_VV_NVAR P_DIV_Y_VV_DIV_Y_VV_NVAR894,22763 -#define P_DIV_Y_VV_INTTERM_INIT P_DIV_Y_VV_INTTERM_INIT897,22839 -#define P_DIV_Y_VV_INTTERM_DIVEQUALS0 P_DIV_Y_VV_INTTERM_DIVEQUALS0900,22904 -#define P_DIV_Y_VV_INTTERM_END P_DIV_Y_VV_INTTERM_END906,23053 -#define P_DIV_Y_VV_NOINTTERM P_DIV_Y_VV_NOINTTERM909,23128 -#define P_DIV_Y_VV_D0EQUALS0L P_DIV_Y_VV_D0EQUALS0L914,23235 -#define P_DIV_Y_VV_NVAR_END P_DIV_Y_VV_NVAR_END920,23390 -#define P_DIV_Y_VV_DIV_Y_VV_UNK P_DIV_Y_VV_DIV_Y_VV_UNK926,23561 -#define P_DIV_Y_VV_DIV_Y_VV_NVAR_UNK P_DIV_Y_VV_DIV_Y_VV_NVAR_UNK932,23711 -#define P_DIV_Y_VC_INSTINIT P_DIV_Y_VC_INSTINIT938,23866 -#define P_DIV_Y_VC_DIV_Y_VC_NVAR P_DIV_Y_VC_DIV_Y_VC_NVAR943,23987 -#define P_DIV_Y_VC_INTTERM P_DIV_Y_VC_INTTERM946,24055 -#define P_DIV_Y_VC_NOINTTERM P_DIV_Y_VC_NOINTTERM949,24125 -#define P_DIV_Y_VC_D0EQUALS0L P_DIV_Y_VC_D0EQUALS0L954,24242 -#define P_DIV_Y_VC_NVAR_END P_DIV_Y_VC_NVAR_END960,24405 -#define P_DIV_Y_VC_DIV_Y_VC_UNK P_DIV_Y_VC_DIV_Y_VC_UNK966,24576 -#define P_DIV_Y_CV_INSTINIT P_DIV_Y_CV_INSTINIT972,24726 -#define P_DIV_Y_CV_DIV_Y_CV_NVAR P_DIV_Y_CV_DIV_Y_CV_NVAR977,24847 -#define P_DIV_Y_CV_INTTERM_INIT P_DIV_Y_CV_INTTERM_INIT980,24915 -#define P_DIV_Y_CV_INTTERM_DIVEQUALS0 P_DIV_Y_CV_INTTERM_DIVEQUALS0983,24981 -#define P_DIV_Y_CV_INTTERM_END P_DIV_Y_CV_INTTERM_END989,25138 -#define P_DIV_Y_CV_NOINTTERM P_DIV_Y_CV_NOINTTERM992,25208 -#define P_DIV_Y_CV_D0EQUALS0L P_DIV_Y_CV_D0EQUALS0L997,25326 -#define P_DIV_Y_CV_NVAR_END P_DIV_Y_CV_NVAR_END1003,25489 -#define P_DIV_Y_CV_DIV_Y_CV_UNK P_DIV_Y_CV_DIV_Y_CV_UNK1009,25660 -#define P_AND_VV_INSTINIT P_AND_VV_INSTINIT1015,25843 -#define P_AND_VV_AND_VV_NVAR P_AND_VV_AND_VV_NVAR1021,26006 -#define P_AND_VV_AND_VV_NVAR_NVAR_INT P_AND_VV_AND_VV_NVAR_NVAR_INT1024,26084 -#define P_AND_VV_AND_VV_NVAR_NVAR_NOINT P_AND_VV_AND_VV_NVAR_NVAR_NOINT1031,26338 -#define P_AND_VV_AND_VV_UNK P_AND_VV_AND_VV_UNK1039,26557 -#define P_AND_VV_AND_VV_NVAR_UNK P_AND_VV_AND_VV_NVAR_UNK1045,26704 -#define P_AND_VC_INSTINIT P_AND_VC_INSTINIT1051,26856 -#define P_AND_VC_AND_VC_NVAR_INT P_AND_VC_AND_VC_NVAR_INT1058,27049 -#define P_AND_VC_AND_VC_NVAR_NOINT P_AND_VC_AND_VC_NVAR_NOINT1064,27233 -#define P_AND_VC_AND_VC_UNK P_AND_VC_AND_VC_UNK1072,27452 -#define P_AND_Y_VV_INSTINIT P_AND_Y_VV_INSTINIT1078,27631 -#define P_AND_Y_VV_AND_Y_VV_NVAR P_AND_Y_VV_AND_Y_VV_NVAR1083,27756 -#define P_AND_Y_VV_INTTERM P_AND_Y_VV_INTTERM1086,27832 -#define P_AND_Y_VV_NOINTTERM P_AND_Y_VV_NOINTTERM1089,27917 -#define P_AND_Y_VV_D0EQUALS0L P_AND_Y_VV_D0EQUALS0L1094,28024 -#define P_AND_Y_VV_NVAR_END P_AND_Y_VV_NVAR_END1100,28179 -#define P_AND_Y_VV_AND_Y_VV_UNK P_AND_Y_VV_AND_Y_VV_UNK1106,28350 -#define P_AND_Y_VV_AND_Y_VV_NVAR_UNK P_AND_Y_VV_AND_Y_VV_NVAR_UNK1112,28501 -#define P_AND_Y_VC_INSTINIT P_AND_Y_VC_INSTINIT1118,28657 -#define P_AND_Y_VC_AND_Y_VC_NVAR P_AND_Y_VC_AND_Y_VC_NVAR1123,28778 -#define P_AND_Y_VC_INTTERM P_AND_Y_VC_INTTERM1126,28846 -#define P_AND_Y_VC_NOINTTERM P_AND_Y_VC_NOINTTERM1129,28922 -#define P_AND_Y_VC_D0EQUALS0L P_AND_Y_VC_D0EQUALS0L1134,29040 -#define P_AND_Y_VC_NVAR_END P_AND_Y_VC_NVAR_END1140,29203 -#define P_AND_Y_VC_AND_Y_VC_UNK P_AND_Y_VC_AND_Y_VC_UNK1146,29374 -#define P_OR_VV_INSTINIT P_OR_VV_INSTINIT1152,29557 -#define P_OR_VV_OR_VV_NVAR P_OR_VV_OR_VV_NVAR1157,29679 -#define P_OR_VV_INTTERM P_OR_VV_INTTERM1160,29749 -#define P_OR_VV_NOINTTERM P_OR_VV_NOINTTERM1163,29831 -#define P_OR_VV_D0EQUALS0L P_OR_VV_D0EQUALS0L1168,29934 -#define P_OR_VV_NVAR_END P_OR_VV_NVAR_END1174,30086 -#define P_OR_VV_OR_VV_UNK P_OR_VV_OR_VV_UNK1179,30215 -#define P_OR_VV_OR_VV_NVAR_UNK P_OR_VV_OR_VV_NVAR_UNK1185,30360 -#define P_OR_VC_INSTINIT P_OR_VC_INSTINIT1191,30510 -#define P_OR_VC_OR_VC_NVAR P_OR_VC_OR_VC_NVAR1196,30628 -#define P_OR_VC_INTTERM P_OR_VC_INTTERM1199,30690 -#define P_OR_VC_NOINTTERM P_OR_VC_NOINTTERM1202,30763 -#define P_OR_VC_D0EQUALS0L P_OR_VC_D0EQUALS0L1206,30860 -#define P_OR_VC_NVAR_END P_OR_VC_NVAR_END1212,31020 -#define P_OR_VC_OR_VC_UNK P_OR_VC_OR_VC_UNK1217,31149 -#define P_OR_Y_VV_INSTINIT P_OR_Y_VV_INSTINIT1223,31326 -#define P_OR_Y_VV_OR_Y_VV_NVAR P_OR_Y_VV_OR_Y_VV_NVAR1228,31450 -#define P_OR_Y_VV_INTTERM P_OR_Y_VV_INTTERM1231,31524 -#define P_OR_Y_VV_NOINTTERM P_OR_Y_VV_NOINTTERM1234,31608 -#define P_OR_Y_VV_D0EQUALS0L P_OR_Y_VV_D0EQUALS0L1239,31713 -#define P_OR_Y_VV_NVAR_END P_OR_Y_VV_NVAR_END1245,31867 -#define P_OR_Y_VV_OR_Y_VV_UNK P_OR_Y_VV_OR_Y_VV_UNK1251,32037 -#define P_OR_Y_VV_OR_Y_VV_NVAR_UNK P_OR_Y_VV_OR_Y_VV_NVAR_UNK1257,32186 -#define P_OR_Y_VC_INSTINIT P_OR_Y_VC_INSTINIT1263,32340 -#define P_OR_Y_VC_OR_Y_VC_NVAR P_OR_Y_VC_OR_Y_VC_NVAR1268,32460 -#define P_OR_Y_VC_INTTERM P_OR_Y_VC_INTTERM1271,32526 -#define P_OR_Y_VC_NOINTTERM P_OR_Y_VC_NOINTTERM1274,32601 -#define P_OR_Y_VC_D0EQUALS0L P_OR_Y_VC_D0EQUALS0L1279,32717 -#define P_OR_Y_VC_NVAR_END P_OR_Y_VC_NVAR_END1285,32879 -#define P_OR_Y_VC_OR_Y_VC_UNK P_OR_Y_VC_OR_Y_VC_UNK1291,33049 -#define P_SLL_VV_INSTINIT P_SLL_VV_INSTINIT1297,33230 -#define P_SLL_VV_SLL_VV_NVAR P_SLL_VV_SLL_VV_NVAR1302,33353 -#define P_SLL_VV_INTTERM_INIT P_SLL_VV_INTTERM_INIT1305,33425 -#define P_SLL_VV_INTTERM_LESS P_SLL_VV_INTTERM_LESS1308,33486 -#define P_SLL_VV_INTTERM_GREATER P_SLL_VV_INTTERM_GREATER1311,33570 -#define P_SLL_VV_NOINTTERM P_SLL_VV_NOINTTERM1314,33646 -#define P_SLL_VV_D0EQUALS0L P_SLL_VV_D0EQUALS0L1319,33751 -#define P_SLL_VV_NVAR_END P_SLL_VV_NVAR_END1325,33896 -#define P_SLL_VV_SLL_VV_UNK P_SLL_VV_SLL_VV_UNK1330,34026 -#define P_SLL_VV_SLL_VV_NVAR_UNK P_SLL_VV_SLL_VV_NVAR_UNK1336,34172 -#define P_SLL_VC_INSTINIT P_SLL_VC_INSTINIT1342,34323 -#define P_SLL_VC_SLL_VC_NVAR P_SLL_VC_SLL_VC_NVAR1347,34442 -#define P_SLL_VC_INTTERM P_SLL_VC_INTTERM1350,34506 -#define P_SLL_VC_NOINTTERM P_SLL_VC_NOINTTERM1353,34577 -#define P_SLL_VC_D0EQUALS0L P_SLL_VC_D0EQUALS0L1358,34693 -#define P_SLL_VC_NVAR_END P_SLL_VC_NVAR_END1364,34838 -#define P_SLL_VC_SLL_VC_UNK P_SLL_VC_SLL_VC_UNK1369,34968 -#define P_SLL_CV_INSTINIT P_SLL_CV_INSTINIT1375,35114 -#define P_SLL_CV_SLL_CV_NVAR_INT P_SLL_CV_SLL_CV_NVAR_INT1382,35307 -#define P_SLL_CV_SLL_CV_NVAR_NOINT P_SLL_CV_SLL_CV_NVAR_NOINT1393,35581 -#define P_SLL_CV_SLL_CV_UNK P_SLL_CV_SLL_CV_UNK1401,35800 -#define P_SLL_Y_VV_INSTINIT P_SLL_Y_VV_INSTINIT1407,35946 -#define P_SLL_Y_VV_SLL_Y_VV_NVAR P_SLL_Y_VV_SLL_Y_VV_NVAR1412,36071 -#define P_SLL_Y_VV_INTTERM_INIT P_SLL_Y_VV_INTTERM_INIT1415,36147 -#define P_SLL_Y_VV_INTERM_LESS P_SLL_Y_VV_INTERM_LESS1418,36210 -#define P_SLL_Y_VV_INTTERM_GREATER P_SLL_Y_VV_INTTERM_GREATER1421,36295 -#define P_SLL_Y_VV_NOINTTERM P_SLL_Y_VV_NOINTTERM1424,36370 -#define P_SLL_Y_VV_D0EQUALS0L P_SLL_Y_VV_D0EQUALS0L1429,36477 -#define P_SLL_Y_VV_NVAR_END P_SLL_Y_VV_NVAR_END1435,36627 -#define P_SLL_Y_VV_SLL_Y_VV_UNK P_SLL_Y_VV_SLL_Y_VV_UNK1441,36798 -#define P_SLL_Y_VV_SLL_Y_VV_NVAR_UNK P_SLL_Y_VV_SLL_Y_VV_NVAR_UNK1447,36948 -#define P_SLL_Y_VC_INSTINIT P_SLL_Y_VC_INSTINIT1453,37103 -#define P_SLL_Y_VC_SLL_Y_VC_NVAR P_SLL_Y_VC_SLL_Y_VC_NVAR1458,37224 -#define P_SLL_Y_VC_INTTERM P_SLL_Y_VC_INTTERM1461,37292 -#define P_SLL_Y_VC_NOINTTERM P_SLL_Y_VC_NOINTTERM1464,37370 -#define P_SLL_Y_VC_D0EQUALS0L P_SLL_Y_VC_D0EQUALS0L1469,37488 -#define P_SLL_Y_VC_NVAR_END P_SLL_Y_VC_NVAR_END1475,37635 -#define P_SLL_Y_VC_SLL_Y_VC_UNK P_SLL_Y_VC_SLL_Y_VC_UNK1481,37809 -#define P_SLL_Y_CV_INSTINIT P_SLL_Y_CV_INSTINIT1487,37959 -#define P_SLL_Y_CV_SLL_Y_CV_NVAR P_SLL_Y_CV_SLL_Y_CV_NVAR1492,38080 -#define P_SLL_Y_CV_INTTERM_INIT P_SLL_Y_CV_INTTERM_INIT1495,38149 -#define P_SLL_Y_CV_INTTERM_LESS P_SLL_Y_CV_INTTERM_LESS1498,38214 -#define P_SLL_Y_CV_INTTERM_GREATER P_SLL_Y_CV_INTTERM_GREATER1501,38291 -#define P_SLL_Y_CV_NOINTTERM P_SLL_Y_CV_NOINTTERM1504,38357 -#define P_SLL_Y_CV_D0EQUALS0L P_SLL_Y_CV_D0EQUALS0L1509,38474 -#define P_SLL_Y_CV_NVAR_END P_SLL_Y_CV_NVAR_END1515,38621 -#define P_SLL_Y_CV_SLL_Y_CV_UNK P_SLL_Y_CV_SLL_Y_CV_UNK1521,38792 -#define P_SLR_VV_INSTINIT P_SLR_VV_INSTINIT1527,38942 -#define P_SLR_VV_SLR_VV_NVAR P_SLR_VV_SLR_VV_NVAR1532,39065 -#define P_SLR_VV_INTTERM_INIT P_SLR_VV_INTTERM_INIT1535,39137 -#define P_SLR_VV_INTTERM_LESS P_SLR_VV_INTTERM_LESS1538,39198 -#define P_SLR_VV_INTTERM_GREATER P_SLR_VV_INTTERM_GREATER1541,39270 -#define P_SLR_VV_NOINTTERM P_SLR_VV_NOINTTERM1544,39352 -#define P_SLR_VV_D0EQUALS0L P_SLR_VV_D0EQUALS0L1549,39457 -#define P_SLR_VV_NVAR_END P_SLR_VV_NVAR_END1555,39602 -#define P_SLR_VV_SRL_VV_UNK P_SLR_VV_SRL_VV_UNK1560,39732 -#define P_SLR_VV_SRL_VV_NVAR_UNK P_SLR_VV_SRL_VV_NVAR_UNK1566,39878 -#define P_SLR_VC_INSTINIT P_SLR_VC_INSTINIT1572,40029 -#define P_SLR_VC_SLR_VC_NVAR_INT P_SLR_VC_SLR_VC_NVAR_INT1579,40222 -#define P_SLR_VC_SLR_VC_NVAR_NOINT P_SLR_VC_SLR_VC_NVAR_NOINT1585,40406 -#define P_SLR_VC_SRL_VC_UNK P_SLR_VC_SRL_VC_UNK1593,40628 -#define P_SLR_CV_INSTINIT P_SLR_CV_INSTINIT1599,40774 -#define P_SLR_CV_SLR_CV_NVAR P_SLR_CV_SLR_CV_NVAR1604,40893 -#define P_SLR_CV_INTTERM_INIT P_SLR_CV_INTTERM_INIT1607,40957 -#define P_SLR_CV_INTTERM_LESS P_SLR_CV_INTTERM_LESS1610,41019 -#define P_SLR_CV_INTTERM_GREATER P_SLR_CV_INTTERM_GREATER1613,41081 -#define P_SLR_CV_NOINTTERM P_SLR_CV_NOINTTERM1616,41157 -#define P_SLR_CV_D0EQUALS0L P_SLR_CV_D0EQUALS0L1621,41273 -#define P_SLR_CV_NVAR_END P_SLR_CV_NVAR_END1627,41418 -#define P_SLR_CV_SLR_CV_UNK P_SLR_CV_SLR_CV_UNK1632,41548 -#define P_SLR_Y_VV_INSTINIT P_SLR_Y_VV_INSTINIT1638,41694 -#define P_SLR_Y_VV_SLR_Y_VV_NVAR P_SLR_Y_VV_SLR_Y_VV_NVAR1643,41819 -#define P_SLR_Y_VV_INTTERM_INIT P_SLR_Y_VV_INTTERM_INIT1646,41895 -#define P_SLR_Y_VV_INTTERM_LESS P_SLR_Y_VV_INTTERM_LESS1649,41959 -#define P_SLR_Y_VV_INTTERM_GREATER P_SLR_Y_VV_INTTERM_GREATER1652,42034 -#define P_SLR_Y_VV_NOINTTERM P_SLR_Y_VV_NOINTTERM1655,42119 -#define P_SLR_Y_VV_D0EQUALS0L P_SLR_Y_VV_D0EQUALS0L1660,42226 -#define P_SLR_Y_VV_NVAR_END P_SLR_Y_VV_NVAR_END1666,42373 -#define P_SLR_Y_VV_SLR_Y_VV_UNK P_SLR_Y_VV_SLR_Y_VV_UNK1672,42544 -#define P_SLR_Y_VV_SLR_Y_VV_NVAR_UNK P_SLR_Y_VV_SLR_Y_VV_NVAR_UNK1678,42694 -#define P_SLR_Y_VC_INSTINIT P_SLR_Y_VC_INSTINIT1684,42849 -#define P_SLR_Y_VC_SLR_Y_VC_NVAR P_SLR_Y_VC_SLR_Y_VC_NVAR1689,42970 -#define P_SLR_Y_VC_INTTERM P_SLR_Y_VC_INTTERM1692,43038 -#define P_SLR_Y_VC_NOINTTERM P_SLR_Y_VC_NOINTTERM1695,43114 -#define P_SLR_Y_VC_D0EQUALS0L P_SLR_Y_VC_D0EQUALS0L1700,43232 -#define P_SLR_Y_VC_NVAR_END P_SLR_Y_VC_NVAR_END1706,43395 -#define P_SLR_Y_VC_SLR_Y_VC_UNK P_SLR_Y_VC_SLR_Y_VC_UNK1712,43566 -#define P_SLR_Y_CV_INSTINIT P_SLR_Y_CV_INSTINIT1717,43699 -#define P_SLR_Y_CV_SLR_Y_CV_NVAR P_SLR_Y_CV_SLR_Y_CV_NVAR1722,43820 -#define P_SLR_Y_CV_INTTERM_INIT P_SLR_Y_CV_INTTERM_INIT1725,43888 -#define P_SLR_Y_CV_INTTERM_LESS P_SLR_Y_CV_INTTERM_LESS1728,43952 -#define P_SLR_Y_CV_INTTERM_GREATER P_SLR_Y_CV_INTTERM_GREATER1731,44016 -#define P_SLR_Y_CV_NOINTTERM P_SLR_Y_CV_NOINTTERM1734,44094 -#define P_SLR_Y_CV_D0EQUALS0L P_SLR_Y_CV_D0EQUALS0L1739,44212 -#define P_SLR_Y_CV_NVAR_END P_SLR_Y_CV_NVAR_END1745,44359 -#define P_SLR_Y_CV_SLR_Y_CV_UNK P_SLR_Y_CV_SLR_Y_CV_UNK1751,44530 -#define CALL_BFUNC_XX_INSTINIT CALL_BFUNC_XX_INSTINIT1757,44680 -#define CALL_BFUNC_XX_CALL_BFUNC_XX_NVAR CALL_BFUNC_XX_CALL_BFUNC_XX_NVAR1763,44850 -#define CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_INT CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_INT1766,44936 -#define CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_NOINT CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_NOINT1810,46212 -#define CALL_BFUNC_XX_CALL_BFUNC_XX_UNK CALL_BFUNC_XX_CALL_BFUNC_XX_UNK1828,46736 -#define CALL_BFUNC_YX_INSTINIT CALL_BFUNC_YX_INSTINIT1831,46804 -#define CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_INT CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_INT1839,47036 -#define CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_NOINT CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_NOINT1872,48009 -#define CALL_BFUNC_YX_CALL_BFUNC_YX_UNK CALL_BFUNC_YX_CALL_BFUNC_YX_UNK1889,48531 -#define CALL_BFUNC_XY_INSTINIT CALL_BFUNC_XY_INSTINIT1892,48599 -#define CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_INT CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_INT1900,48831 -#define CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_NOINT CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_NOINT1933,49804 -#define CALL_BFUNC_XY_CALL_BFUNC_XY_UNK CALL_BFUNC_XY_CALL_BFUNC_XY_UNK1950,50326 -#define CALL_BFUNC_YY_INSTINIT CALL_BFUNC_YY_INSTINIT1953,50394 -#define CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_INT CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_INT1962,50656 -#define CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_NOINT CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_NOINT1995,51629 -#define CALL_BFUNC_YY_NOINTTERM_NOFAILCODE CALL_BFUNC_YY_NOINTTERM_NOFAILCODE2012,52151 -#define CALL_BFUNC_YY_NOINTTERM_NOD0 CALL_BFUNC_YY_NOINTTERM_NOD02015,52235 -#define CALL_BFUNC_YY_NOINTTERM_END CALL_BFUNC_YY_NOINTTERM_END2018,52290 -#define CALL_BFUNC_YY_CALL_BFUNC_YY_UNK CALL_BFUNC_YY_CALL_BFUNC_YY_UNK2022,52394 -#define P_EQUAL_INSTINIT P_EQUAL_INSTINIT2025,52462 -#define P_EQUAL_END P_EQUAL_END2028,52510 -#define P_ARG_VV_INSTINIT P_ARG_VV_INSTINIT2036,52636 -#define P_ARG_VV_LOW_LEVEL_TRACER P_ARG_VV_LOW_LEVEL_TRACER2040,52732 -#define P_ARG_VV_TEST_D0 P_ARG_VV_TEST_D02047,52961 -#define P_ARG_VV_ARG_ARG1_NVAR P_ARG_VV_ARG_ARG1_NVAR2052,53089 -#define P_ARG_VV_TEST_D1 P_ARG_VV_TEST_D12065,53397 -#define P_ARG_VV_ARG_ARG2_NVAR P_ARG_VV_ARG_ARG2_NVAR2069,53493 -#define P_ARG_VV_ARG_ARG2_UNK P_ARG_VV_ARG_ARG2_UNK2109,54393 -#define P_ARG_VV_ARG_ARG1_UNK P_ARG_VV_ARG_ARG1_UNK2115,54546 -#define P_ARG_CV_INSTINIT P_ARG_CV_INSTINIT2121,54700 -#define P_ARG_CV_LOW_LEVEL_TRACER P_ARG_CV_LOW_LEVEL_TRACER2125,54796 -#define P_ARG_CV_TEST_D1 P_ARG_CV_TEST_D12135,55082 -#define P_ARG_CV_ARG_ARG2_VC_NVAR P_ARG_CV_ARG_ARG2_VC_NVAR2141,55237 -#define P_ARG_CV_ARG_ARG2_VC_UNK P_ARG_CV_ARG_ARG2_VC_UNK2181,56156 -#define P_ARG_Y_VV_INSTINIT P_ARG_Y_VV_INSTINIT2187,56312 -#define P_ARG_Y_VV_LOW_LEVEL_TRACER P_ARG_Y_VV_LOW_LEVEL_TRACER2191,56410 -#define P_ARG_Y_VV_TEST_D0 P_ARG_Y_VV_TEST_D02199,56677 -#define P_ARG_Y_VV_ARG_Y_ARG1_NVAR P_ARG_Y_VV_ARG_Y_ARG1_NVAR2204,56807 -#define P_ARG_Y_VV_TEST_D1 P_ARG_Y_VV_TEST_D12217,57117 -#define P_ARG_Y_VV_ARG_Y_ARG2_NVAR P_ARG_Y_VV_ARG_Y_ARG2_NVAR2221,57209 -#define P_ARG_Y_VV_ARG_Y_ARG2_UNK P_ARG_Y_VV_ARG_Y_ARG2_UNK2263,58194 -#define P_ARG_Y_VV_ARG_Y_ARG1_UNK P_ARG_Y_VV_ARG_Y_ARG1_UNK2269,58351 -#define P_ARG_Y_CV_INSTINITP_ARG_Y_CV_INSTINIT2275,58509 -#define P_ARG_Y_CV_LOW_LEVEL_TRACER P_ARG_Y_CV_LOW_LEVEL_TRACER2278,58565 -#define P_ARG_Y_CV_TEST_D1 P_ARG_Y_CV_TEST_D12289,58889 -#define P_ARG_Y_CV_D1APPL_INIT P_ARG_Y_CV_D1APPL_INIT2295,59052 -#define P_ARG_Y_CV_D1APPL_END P_ARG_Y_CV_D1APPL_END2299,59124 -#define P_ARG_Y_CV_D1PAIR_INIT P_ARG_Y_CV_D1PAIR_INIT2305,59282 -#define P_ARG_Y_CV_D1PAIR_LESS0 P_ARG_Y_CV_D1PAIR_LESS02308,59339 -#define P_ARG_Y_CV_D1PAIR_END P_ARG_Y_CV_D1PAIR_END2314,59508 -#define P_ARG_Y_CV_ARG_Y_ARG2_VC_UNK P_ARG_Y_CV_ARG_Y_ARG2_VC_UNK2320,59668 -#define P_FUNC2S_VV_INSTINITP_FUNC2S_VV_INSTINIT2326,59828 -#define P_FUNC2S_VV_LOW_LEVEL_TRACER P_FUNC2S_VV_LOW_LEVEL_TRACER2329,59888 -#define P_FUNC2S_TEST_D0 P_FUNC2S_TEST_D02336,60122 -#define P_FUNC2S_VV_TEST_D1 P_FUNC2S_VV_TEST_D12341,60250 -#define P_FUNC2S_VV_D1INT P_FUNC2S_VV_D1INT2344,60321 -#define P_FUNC2S_VV_D1NOTINT P_FUNC2S_VV_D1NOTINT2347,60379 -#define P_FUNC2S_VV_D1BIGINT P_FUNC2S_VV_D1BIGINT2350,60427 -#define P_FUNC2S_VV_D1NOTBIGINT P_FUNC2S_VV_D1NOTBIGINT2353,60515 -#define P_FUNC2S_VV_D1NOTINT_END P_FUNC2S_VV_D1NOTINT_END2356,60604 -#define P_FUNC2S_VV_D0NOTATOMIC P_FUNC2S_VV_D0NOTATOMIC2360,60667 -#define P_FUNC2S_VV_FIRSTIFOK P_FUNC2S_VV_FIRSTIFOK2366,60792 -#define P_FUNC2S_VV_SECONDIFOK_D0NOTATOM P_FUNC2S_VV_SECONDIFOK_D0NOTATOM2375,61019 -#define P_FUNC2S_VV_SECONDIFOK_D0ATOM P_FUNC2S_VV_SECONDIFOK_D0ATOM2381,61161 -#define P_FUNC2S_VV_SECONDIFOK_POST_D0ATOM P_FUNC2S_VV_SECONDIFOK_POST_D0ATOM2384,61261 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_INIT P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_INIT2389,61360 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_IFOK P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_IFOK2392,61427 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_NOIF P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_NOIF2397,61577 -#define P_FUNC2S_VV_SECONDIFOK_INSIDEWHILE P_FUNC2S_VV_SECONDIFOK_INSIDEWHILE2400,61645 -#define P_FUNC2S_VV_SECONDIFOK_END P_FUNC2S_VV_SECONDIFOK_END2404,61731 -#define P_FUNC2S_VV_THIRDIFOK P_FUNC2S_VV_THIRDIFOK2410,61892 -#define P_FUNC2S_VV_ELSE P_FUNC2S_VV_ELSE2415,62035 -#define P_FUNC2S_VV_FUNC2S_UNK2 P_FUNC2S_VV_FUNC2S_UNK22421,62184 -#define P_FUNC2S_VV_FUNC2S_UNK P_FUNC2S_VV_FUNC2S_UNK2427,62335 -#define P_FUNC2S_CV_INSTINITP_FUNC2S_CV_INSTINIT2433,62485 -#define P_FUNC2S_CV_LOW_LEVEL_TRACER P_FUNC2S_CV_LOW_LEVEL_TRACER2436,62542 -#define P_FUNC2S_CV_TEST_D1 P_FUNC2S_CV_TEST_D12443,62769 -#define P_FUNC2S_CV_D1INT P_FUNC2S_CV_D1INT2449,62933 -#define P_FUNC2S_CV_D1NOTINT P_FUNC2S_CV_D1NOTINT2452,62991 -#define P_FUNC2S_CV_D1NOINT_D1BIGINT P_FUNC2S_CV_D1NOINT_D1BIGINT2455,63039 -#define P_FUNC2S_CV_D1NOTBIGINT P_FUNC2S_CV_D1NOTBIGINT2458,63135 -#define P_FUNC2S_CV_POST_IF P_FUNC2S_CV_POST_IF2461,63222 -#define P_FUNC2S_CV_FIRSTIFOK P_FUNC2S_CV_FIRSTIFOK2465,63280 -#define P_FUNC2S_CV_D1GREATER_D0NOTATOM P_FUNC2S_CV_D1GREATER_D0NOTATOM2474,63507 -#define P_FUNC2S_CV_D1GREATER_D0ATOM P_FUNC2S_CV_D1GREATER_D0ATOM2480,63648 -#define P_FUNC2S_CV_D1GREATER_POST_IF P_FUNC2S_CV_D1GREATER_POST_IF2483,63747 -#define P_FUNC2S_CV_D1GREATER_IFOK_INIT P_FUNC2S_CV_D1GREATER_IFOK_INIT2488,63841 -#define P_FUNC2S_CV_D1GREATER_IFOK_IFOK P_FUNC2S_CV_D1GREATER_IFOK_IFOK2491,63902 -#define P_FUNC2S_CV_D1GREATER_IFOK_NOIF P_FUNC2S_CV_D1GREATER_IFOK_NOIF2496,64046 -#define P_FUNC2S_CV_D1GREATER_INSIDEWHILE P_FUNC2S_CV_D1GREATER_INSIDEWHILE2499,64108 -#define P_FUNC2S_CV_D1GREATER_END P_FUNC2S_CV_D1GREATER_END2503,64193 -#define P_FUNC2S_CV_D1ISZERO P_FUNC2S_CV_D1ISZERO2509,64353 -#define P_FUNC2S_CV_ELSE P_FUNC2S_CV_ELSE2514,64495 -#define P_FUNC2S_CV_END P_FUNC2S_CV_END2520,64644 -#define P_FUNC2S_VC_INSTINITP_FUNC2S_VC_INSTINIT2526,64787 -#define P_FUNC2S_VC_LOW_LEVEL_TRACER P_FUNC2S_VC_LOW_LEVEL_TRACER2529,64844 -#define P_FUNC2S_VC_TEST_D0 P_FUNC2S_VC_TEST_D02540,65143 -#define P_FUNC2S_VC_FUNC2S_NVAR_VC P_FUNC2S_VC_FUNC2S_NVAR_VC2545,65274 -#define P_FUNC2S_VC_D0NOATOMIC P_FUNC2S_VC_D0NOATOMIC2548,65345 -#define P_FUNC2S_VC_EQUALS P_FUNC2S_VC_EQUALS2554,65469 -#define P_FUNC2S_VC_D1ISZERO P_FUNC2S_VC_D1ISZERO2563,65693 -#define P_FUNC2S_VC_D0NOATOM P_FUNC2S_VC_D0NOATOM2568,65835 -#define P_FUNC2S_VC_D0ATOM P_FUNC2S_VC_D0ATOM2574,65957 -#define P_FUNC2S_VC_POST_ELSE P_FUNC2S_VC_POST_ELSE2577,66044 -#define P_FUNC2S_VC_IFOK_INIT P_FUNC2S_VC_IFOK_INIT2582,66145 -#define P_FUNC2S_VC_IFOK_IFOK P_FUNC2S_VC_IFOK_IFOK2585,66194 -#define P_FUNC2S_VC_IFOK_NOIF P_FUNC2S_VC_IFOK_NOIF2590,66322 -#define P_FUNC2S_VC_INSIDEWHILE P_FUNC2S_VC_INSIDEWHILE2593,66372 -#define P_FUNC2S_VC_END1 P_FUNC2S_VC_END12597,66443 -#define P_FUNC2S_VC_END2 P_FUNC2S_VC_END22603,66615 -#define P_FUNC2S_Y_VV_INSTINITP_FUNC2S_Y_VV_INSTINIT2609,66759 -#define P_FUNC2S_Y_VV_LOW_LEVEL_TRACER P_FUNC2S_Y_VV_LOW_LEVEL_TRACER2612,66818 -#define P_FUNC2S_Y_VV_TEST_D0 P_FUNC2S_Y_VV_TEST_D02619,67054 -#define P_FUNC2S_Y_VV_TEST_D1 P_FUNC2S_Y_VV_TEST_D12624,67187 -#define P_FUNC2S_Y_VV_D1INT P_FUNC2S_Y_VV_D1INT2627,67260 -#define P_FUNC2S_Y_VV_D1NOTINT P_FUNC2S_Y_VV_D1NOTINT2630,67319 -#define P_FUNC2S_Y_VV_D1BIGINT P_FUNC2S_Y_VV_D1BIGINT2633,67369 -#define P_FUNC2S_Y_VV_D1NOTBIGINT P_FUNC2S_Y_VV_D1NOTBIGINT2636,67459 -#define P_FUNC2S_Y_VV_POST_IF P_FUNC2S_Y_VV_POST_IF2639,67548 -#define P_FUNC2S_Y_VV_D0NOATOMIC P_FUNC2S_Y_VV_D0NOATOMIC2643,67608 -#define P_FUNC2S_Y_VV_EQUALS P_FUNC2S_Y_VV_EQUALS2649,67734 -#define P_FUNC2S_Y_VV_D1GREATER_D0NOATOM P_FUNC2S_Y_VV_D1GREATER_D0NOATOM2659,67994 -#define P_FUNC2S_Y_VV_D1GREATER_D0ATOM P_FUNC2S_Y_VV_D1GREATER_D0ATOM2665,68136 -#define P_FUNC2S_Y_VV_D1GREATER_POST_ELSE P_FUNC2S_Y_VV_D1GREATER_POST_ELSE2668,68237 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_INIT P_FUNC2S_Y_VV_D1GREATER_IFOK_INIT2673,68335 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_IFOK P_FUNC2S_Y_VV_D1GREATER_IFOK_IFOK2676,68398 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_NOIF P_FUNC2S_Y_VV_D1GREATER_IFOK_NOIF2681,68544 -#define P_FUNC2S_Y_VV_D1GREATER_INSIDEWHILE P_FUNC2S_Y_VV_D1GREATER_INSIDEWHILE2684,68608 -#define P_FUNC2S_Y_VV_D1GREATER_END P_FUNC2S_Y_VV_D1GREATER_END2688,68695 -#define P_FUNC2S_Y_VV_D1ISZERO P_FUNC2S_Y_VV_D1ISZERO2695,68891 -#define P_FUNC2S_Y_VV_ELSE P_FUNC2S_Y_VV_ELSE2701,69069 -#define P_FUNC2S_Y_VV_END1 P_FUNC2S_Y_VV_END12707,69220 -#define P_FUNC2S_Y_VV_END2 P_FUNC2S_Y_VV_END22713,69366 -#define P_FUNC2S_Y_CV_INSTINITP_FUNC2S_Y_CV_INSTINIT2719,69512 -#define P_FUNC2S_Y_CV_LOW_LEVEL_TRACER P_FUNC2S_Y_CV_LOW_LEVEL_TRACER2722,69571 -#define P_FUNC2S_Y_CV_TEST_D1 P_FUNC2S_Y_CV_TEST_D12729,69800 -#define P_FUNC2S_Y_CV_D1INT P_FUNC2S_Y_CV_D1INT2735,69966 -#define P_FUNC2S_Y_CV_D1NOTINT P_FUNC2S_Y_CV_D1NOTINT2738,70025 -#define P_FUNC2S_Y_CV_D1BIGINT P_FUNC2S_Y_CV_D1BIGINT2741,70075 -#define P_FUNC2S_Y_CV_D1NOTBIGINT P_FUNC2S_Y_CV_D1NOTBIGINT2744,70165 -#define P_FUNC2S_Y_CV_POST_IF P_FUNC2S_Y_CV_POST_IF2747,70254 -#define P_FUNC2S_Y_CV_EQUALS P_FUNC2S_Y_CV_EQUALS2751,70314 -#define P_FUNC2S_Y_CV_D1GREATER_D0NOATOM P_FUNC2S_Y_CV_D1GREATER_D0NOATOM2761,70574 -#define P_FUNC2S_Y_CV_D1GREATER_D0ATOM P_FUNC2S_Y_CV_D1GREATER_D0ATOM2767,70716 -#define P_FUNC2S_Y_CV_D1GREATER_POST_ELSE P_FUNC2S_Y_CV_D1GREATER_POST_ELSE2770,70817 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_INIT P_FUNC2S_Y_CV_D1GREATER_IFOK_INIT2775,70915 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_IFOK P_FUNC2S_Y_CV_D1GREATER_IFOK_IFOK2778,70978 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_NOIF P_FUNC2S_Y_CV_D1GREATER_IFOK_NOIF2783,71124 -#define P_FUNC2S_Y_CV_D1GREATER_INSIDEWHILE P_FUNC2S_Y_CV_D1GREATER_INSIDEWHILE2786,71188 -#define P_FUNC2S_Y_CV_D1GREATER_END P_FUNC2S_Y_CV_D1GREATER_END2790,71275 -#define P_FUNC2S_Y_CV_D1ISZERO P_FUNC2S_Y_CV_D1ISZERO2797,71471 -#define P_FUNC2S_Y_CV_ELSE P_FUNC2S_Y_CV_ELSE2803,71649 -#define P_FUNC2S_Y_CV_END P_FUNC2S_Y_CV_END2809,71800 -#define P_FUNC2S_Y_VC_INSTINITP_FUNC2S_Y_VC_INSTINIT2815,71945 -#define P_FUNC2S_Y_VC_LOW_LEVEL_TRACER P_FUNC2S_Y_VC_LOW_LEVEL_TRACER2818,72004 -#define P_FUNC2S_Y_VC_TEST_D0 P_FUNC2S_Y_VC_TEST_D02829,72312 -#define P_FUNC2S_Y_VC_FUNC2S_Y_NVAR_VC P_FUNC2S_Y_VC_FUNC2S_Y_NVAR_VC2834,72445 -#define P_FUNC2S_Y_VC_D0NOATOMIC P_FUNC2S_Y_VC_D0NOATOMIC2837,72523 -#define P_FUNC2S_Y_VC_EQUALS P_FUNC2S_Y_VC_EQUALS2843,72649 -#define P_FUNC2S_Y_VC_D1ISZERO P_FUNC2S_Y_VC_D1ISZERO2853,72909 -#define P_FUNC2S_Y_VC_D0NOATOM1 P_FUNC2S_Y_VC_D0NOATOM12859,73087 -#define P_FUNC2S_Y_VC_D0NOATOM2 P_FUNC2S_Y_VC_D0NOATOM22865,73212 -#define P_FUNC2S_Y_VC_D0ATOM P_FUNC2S_Y_VC_D0ATOM2871,73337 -#define P_FUNC2S_Y_VC_POST_ELSE P_FUNC2S_Y_VC_POST_ELSE2874,73426 -#define P_FUNC2S_Y_VC_IFOK_INIT P_FUNC2S_Y_VC_IFOK_INIT2879,73529 -#define P_FUNC2S_Y_VC_IFOK_IFOK P_FUNC2S_Y_VC_IFOK_IFOK2882,73580 -#define P_FUNC2S_Y_VC_IFOK_NOIF P_FUNC2S_Y_VC_IFOK_NOIF2887,73710 -#define P_FUNC2S_Y_VC_INSIDEWHILE P_FUNC2S_Y_VC_INSIDEWHILE2890,73762 -#define P_FUNC2S_Y_VC_END1 P_FUNC2S_Y_VC_END12894,73835 -#define P_FUNC2S_Y_VC_END2 P_FUNC2S_Y_VC_END22901,74048 -#define P_FUNC2F_XX_INSTINITP_FUNC2F_XX_INSTINIT2907,74194 -#define P_FUNC2F_XX_LOW_LEVEL_TRACER P_FUNC2F_XX_LOW_LEVEL_TRACER2910,74251 -#define P_FUNC2F_XX_TEST_D0 P_FUNC2F_XX_TEST_D02917,74475 -#define P_FUNC2F_XX_D0APPL P_FUNC2F_XX_D0APPL2922,74595 -#define P_FUNC2F_XX_D0APPL_D1EXTFUNC P_FUNC2F_XX_D0APPL_D1EXTFUNC2925,74661 -#define P_FUNC2F_XX_D0APPL_END P_FUNC2F_XX_D0APPL_END2931,74841 -#define P_FUNC2F_XX_D0PAIR P_FUNC2F_XX_D0PAIR2938,75057 -#define P_FUNC2F_XX_D0NOCOMPOUND P_FUNC2F_XX_D0NOCOMPOUND2944,75224 -#define P_FUNC2F_XX_END P_FUNC2F_XX_END2950,75392 -#define P_FUNC2F_XY_INSTINITP_FUNC2F_XY_INSTINIT2956,75535 -#define P_FUNC2F_XY_LOW_LEVEL_TRACER P_FUNC2F_XY_LOW_LEVEL_TRACER2959,75592 -#define P_FUNC2F_XY_TEST_D0 P_FUNC2F_XY_TEST_D02966,75816 -#define P_FUNC2F_XY_D0APPL P_FUNC2F_XY_D0APPL2971,75936 -#define P_FUNC2F_XY_D0APPL_D1EXTFUNC P_FUNC2F_XY_D0APPL_D1EXTFUNC2975,76043 -#define P_FUNC2F_XY_D0APPL_END P_FUNC2F_XY_D0APPL_END2981,76221 -#define P_FUNC2F_XY_D0PAIR P_FUNC2F_XY_D0PAIR2987,76433 -#define P_FUNC2F_XY_D0NOCOMPOUND P_FUNC2F_XY_D0NOCOMPOUND2994,76639 -#define P_FUNC2F_XY_END P_FUNC2F_XY_END3001,76846 -#define P_FUNC2F_YX_INSTINITP_FUNC2F_YX_INSTINIT3007,76989 -#define P_FUNC2F_YX_LOW_LEVEL_TRACER P_FUNC2F_YX_LOW_LEVEL_TRACER3010,77046 -#define P_FUNC2F_YX_TEST_D0 P_FUNC2F_YX_TEST_D03017,77271 -#define P_FUNC2F_YX_D0APPL P_FUNC2F_YX_D0APPL3022,77392 -#define P_FUNC2F_YX_D0APPL_D1EXTFUNC P_FUNC2F_YX_D0APPL_D1EXTFUNC3026,77498 -#define P_FUNC2F_YX_D0APPL_END P_FUNC2F_YX_D0APPL_END3032,77676 -#define P_FUNC2F_YX_D0PAIR P_FUNC2F_YX_D0PAIR3038,77889 -#define P_FUNC2F_YX_D0NOCOMPOUND P_FUNC2F_YX_D0NOCOMPOUND3045,78097 -#define P_FUNC2F_YX_END P_FUNC2F_YX_END3052,78303 -#define P_FUNC2F_YY_INSTINITP_FUNC2F_YY_INSTINIT3058,78446 -#define P_FUNC2F_YY_LOW_LEVEL_TRACER P_FUNC2F_YY_LOW_LEVEL_TRACER3061,78503 -#define P_FUNC2F_YY_TEST_D0 P_FUNC2F_YY_TEST_D03068,78727 -#define P_FUNC2F_YY_D0APPL P_FUNC2F_YY_D0APPL3072,78821 -#define P_FUNC2F_YY_D0APPL_D1EXTFUNC P_FUNC2F_YY_D0APPL_D1EXTFUNC3077,78969 -#define P_FUNC2F_YY_D0APPL_END P_FUNC2F_YY_D0APPL_END3083,79146 -#define P_FUNC2F_YY_D0PAIR P_FUNC2F_YY_D0PAIR3089,79356 -#define P_FUNC2F_YY_D0NOCOMPOUND P_FUNC2F_YY_D0NOCOMPOUND3097,79601 -#define P_FUNC2F_YY_END P_FUNC2F_YY_END3105,79847 - -JIT/HPP/yaam_primitive_predicates_d.h,36761 -#define P_ATOM_X_INSTINIT P_ATOM_X_INSTINIT1,0 -#define P_ATOM_X_ATOM P_ATOM_X_ATOM7,169 -#define P_ATOM_X_NOATOM P_ATOM_X_NOATOM11,250 -#define P_ATOM_Y_INSTINIT P_ATOM_Y_INSTINIT15,324 -#define P_ATOM_Y_IFOK P_ATOM_Y_IFOK22,518 -#define P_ATOM_Y_NOIF P_ATOM_Y_NOIF26,597 -#define P_ATOM_Y_END P_ATOM_Y_END30,671 -#define P_ATOMIC_X_INSTINIT P_ATOMIC_X_INSTINIT34,752 -#define P_ATOMIC_X_NONVAR P_ATOMIC_X_NONVAR40,926 -#define P_ATOMIC_X_VAR P_ATOMIC_X_VAR44,1009 -#define P_ATOMIC_X_END P_ATOMIC_X_END48,1085 -#define P_ATOMIC_Y_INSTINIT P_ATOMIC_Y_INSTINIT52,1168 -#define P_ATOMIC_Y_NONVAR P_ATOMIC_Y_NONVAR59,1364 -#define P_ATOMIC_Y_VAR P_ATOMIC_Y_VAR63,1447 -#define P_ATOMIC_Y_END P_ATOMIC_Y_END67,1523 -#define P_INTEGER_X_INSTINIT P_INTEGER_X_INSTINIT71,1606 -#define P_INTEGER_X_INTEGER_X_NVAR_OK P_INTEGER_X_INTEGER_X_NVAR_OK78,1820 -#define P_INTEGER_X_INTEGER_X_NVAR_NOOK P_INTEGER_X_INTEGER_X_NVAR_NOOK82,1913 -#define P_INTEGER_X_INTEGER_X_UNK P_INTEGER_X_INTEGER_X_UNK86,2011 -#define P_INTEGER_Y_INSTINIT P_INTEGER_Y_INSTINIT90,2105 -#define P_INTEGER_Y_INTEGER_Y_NVAR_OK P_INTEGER_Y_INTEGER_Y_NVAR_OK97,2299 -#define P_INTEGER_Y_INTEGER_Y_NVAR_NOOK P_INTEGER_Y_INTEGER_Y_NVAR_NOOK101,2394 -#define P_INTEGER_Y_INTEGER_Y_UNK P_INTEGER_Y_INTEGER_Y_UNK105,2494 -#define P_NONVAR_X_INSTINIT P_NONVAR_X_INSTINIT109,2586 -#define P_NONVAR_X_NONVAR P_NONVAR_X_NONVAR115,2758 -#define P_NONVAR_X_NONONVAR P_NONVAR_X_NONONVAR119,2851 -#define P_NONVAR_Y_INSTINIT P_NONVAR_Y_INSTINIT123,2939 -#define P_NONVAR_Y_NONVAR P_NONVAR_Y_NONVAR130,3132 -#define P_NONVAR_Y_NONONVAR P_NONVAR_Y_NONONVAR134,3222 -#define P_NUMBER_X_INSTINIT P_NUMBER_X_INSTINIT138,3310 -#define P_NUMBER_X_INT P_NUMBER_X_INT144,3484 -#define P_NUMBER_X_FUNCTORINT P_NUMBER_X_FUNCTORINT148,3561 -#define P_NUMBER_X_FUNCTORDEFAULT P_NUMBER_X_FUNCTORDEFAULT152,3653 -#define P_NUMBER_X_POST_IF P_NUMBER_X_POST_IF156,3745 -#define P_NUMBER_X_NUMBER_X_UNK P_NUMBER_X_NUMBER_X_UNK160,3832 -#define P_NUMBER_Y_INSTINIT P_NUMBER_Y_INSTINIT164,3924 -#define P_NUMBER_Y_INT P_NUMBER_Y_INT171,4114 -#define P_NUMBER_Y_FUNCTORINT P_NUMBER_Y_FUNCTORINT175,4191 -#define P_NUMBER_Y_FUNCTORDEFAULT P_NUMBER_Y_FUNCTORDEFAULT179,4283 -#define P_NUMBER_Y_POST_IF P_NUMBER_Y_POST_IF183,4375 -#define P_NUMBER_Y_NUMBER_Y_UNK P_NUMBER_Y_NUMBER_Y_UNK187,4462 -#define P_VAR_X_INSTINIT P_VAR_X_INSTINIT191,4554 -#define P_VAR_X_NONVAR P_VAR_X_NONVAR197,4719 -#define P_VAR_X_VAR P_VAR_X_VAR201,4802 -#define P_VAR_Y_INSTINIT P_VAR_Y_INSTINIT205,4886 -#define P_VAR_Y_NONVAR P_VAR_Y_NONVAR212,5073 -#define P_VAR_Y_VAR P_VAR_Y_VAR216,5156 -#define P_DB_REF_X_INSTINIT P_DB_REF_X_INSTINIT220,5240 -#define P_DB_REF_X_DBREF P_DB_REF_X_DBREF226,5411 -#define P_DB_REF_X_NODBREF P_DB_REF_X_NODBREF230,5490 -#define P_DB_REF_X_DBREF_X_UNK P_DB_REF_X_DBREF_X_UNK234,5567 -#define P_DB_REF_Y_INSTINIT P_DB_REF_Y_INSTINIT238,5658 -#define P_DB_REF_Y_DBREF P_DB_REF_Y_DBREF245,5851 -#define P_DB_REF_Y_NODBREF P_DB_REF_Y_NODBREF249,5933 -#define P_DB_REF_Y_DBREF_Y_UNK P_DB_REF_Y_DBREF_Y_UNK253,6010 -#define P_PRIMITIVE_X_INSTINIT P_PRIMITIVE_X_INSTINIT257,6101 -#define P_PRIMITIVE_X_PRIMITIVE P_PRIMITIVE_X_PRIMITIVE263,6272 -#define P_PRIMITIVE_X_NOPRIMITIVE P_PRIMITIVE_X_NOPRIMITIVE267,6358 -#define P_PRIMITIVE_X_PRIMI_X_UNK P_PRIMITIVE_X_PRIMI_X_UNK271,6442 -#define P_PRIMITIVE_Y_INSTINIT P_PRIMITIVE_Y_INSTINIT275,6536 -#define P_PRIMITIVE_Y_PRIMITIVE P_PRIMITIVE_Y_PRIMITIVE282,6729 -#define P_PRIMITIVE_Y_NOPRIMITIVE P_PRIMITIVE_Y_NOPRIMITIVE286,6815 -#define P_PRIMITIVE_Y_PRIMI_Y_UNK P_PRIMITIVE_Y_PRIMI_Y_UNK290,6899 -#define P_COMPOUND_X_INSTINIT P_COMPOUND_X_INSTINIT294,6993 -#define P_COMPOUND_X_PAIR P_COMPOUND_X_PAIR300,7163 -#define P_COMPOUND_X_APPL_IFOK P_COMPOUND_X_APPL_IFOK304,7243 -#define P_COMPOUND_X_APPL P_COMPOUND_X_APPL308,7328 -#define P_COMPOUND_X_NOAPPL P_COMPOUND_X_NOAPPL312,7411 -#define P_COMPOUND_X_COMPOUND_X_UNK P_COMPOUND_X_COMPOUND_X_UNK316,7489 -#define P_COMPOUND_Y_INSTINIT P_COMPOUND_Y_INSTINIT320,7585 -#define P_COMPOUND_Y_PAIR P_COMPOUND_Y_PAIR327,7777 -#define P_COMPOUND_Y_APPL_IFOK P_COMPOUND_Y_APPL_IFOK331,7857 -#define P_COMPOUND_Y_APPL P_COMPOUND_Y_APPL335,7942 -#define P_COMPOUND_Y_NOAPPL P_COMPOUND_Y_NOAPPL339,8023 -#define P_COMPOUND_Y_COMPOUND_Y_UNK P_COMPOUND_Y_COMPOUND_Y_UNK343,8101 -#define P_FLOAT_X_INSTINIT P_FLOAT_X_INSTINIT347,8197 -#define P_FLOAT_X_FLOAT P_FLOAT_X_FLOAT353,8367 -#define P_FLOAT_X_POST_IF P_FLOAT_X_POST_IF357,8445 -#define P_FLOAT_X_FLOAT_X_UNK P_FLOAT_X_FLOAT_X_UNK361,8531 -#define P_FLOAT_Y_INSTINIT P_FLOAT_Y_INSTINIT365,8621 -#define P_FLOAT_Y_FLOAT P_FLOAT_Y_FLOAT372,8810 -#define P_FLOAT_Y_POST_IF P_FLOAT_Y_POST_IF376,8888 -#define P_FLOAT_Y_FLOAT_Y_UNK P_FLOAT_Y_FLOAT_Y_UNK380,8974 -#define P_PLUS_VV_INSTINIT P_PLUS_VV_INSTINIT384,9064 -#define P_PLUS_VV_PLUS_VV_NVAR P_PLUS_VV_PLUS_VV_NVAR391,9277 -#define P_PLUS_VV_PLUS_VV_NVAR_NVAR_INT P_PLUS_VV_PLUS_VV_NVAR_NVAR_INT394,9354 -#define P_PLUS_VV_PLUS_VV_NVAR_NVAR_NOINT P_PLUS_VV_PLUS_VV_NVAR_NVAR_NOINT401,9607 -#define P_PLUS_VV_PLUS_VV_UNK P_PLUS_VV_PLUS_VV_UNK409,9826 -#define P_PLUS_VV_PLUS_VV_NVAR_UNK P_PLUS_VV_PLUS_VV_NVAR_UNK415,9973 -#define P_PLUS_VC_INSTINIT P_PLUS_VC_INSTINIT421,10125 -#define P_PLUS_VC_PLUS_VC_NVAR_INT P_PLUS_VC_PLUS_VC_NVAR_INT429,10371 -#define P_PLUS_VC_PLUS_VC_NVAR_NOINT P_PLUS_VC_PLUS_VC_NVAR_NOINT435,10554 -#define P_PLUS_VC_PLUS_VC_UNK P_PLUS_VC_PLUS_VC_UNK443,10773 -#define P_PLUS_Y_VV_INSTINIT P_PLUS_Y_VV_INSTINIT449,10951 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR P_PLUS_Y_VV_PLUS_Y_VV_NVAR456,11166 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_INT P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_INT459,11247 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_NOINT P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_NOINT467,11547 -#define P_PLUS_Y_VV_PLUS_Y_VV_UNK P_PLUS_Y_VV_PLUS_Y_VV_UNK476,11812 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_UNK P_PLUS_Y_VV_PLUS_Y_VV_NVAR_UNK482,11963 -#define P_PLUS_Y_VC_INSTINIT P_PLUS_Y_VC_INSTINIT488,12119 -#define P_PLUS_Y_VC_PLUS_Y_VC_NVAR_INT P_PLUS_Y_VC_PLUS_Y_VC_NVAR_INT496,12364 -#define P_PLUS_Y_VC_PLUS_Y_VC_NVAR_NOINT P_PLUS_Y_VC_PLUS_Y_VC_NVAR_NOINT503,12593 -#define P_PLUS_Y_VC_PLUS_Y_VC_UNK P_PLUS_Y_VC_PLUS_Y_VC_UNK512,12858 -#define P_MINUS_VV_INSTINIT P_MINUS_VV_INSTINIT518,13040 -#define P_MINUS_VV_MINUS_VV_NVAR P_MINUS_VV_MINUS_VV_NVAR525,13254 -#define P_MINUS_VV_MINUS_VV_NVAR_NVAR_INT P_MINUS_VV_MINUS_VV_NVAR_NVAR_INT528,13330 -#define P_MINUS_VV_MINUS_VV_NVAR_NVAR_NOINT P_MINUS_VV_MINUS_VV_NVAR_NVAR_NOINT535,13588 -#define P_MINUS_VV_MINUS_VV_UNK P_MINUS_VV_MINUS_VV_UNK543,13810 -#define P_MINUS_VV_MINUS_VV_NVAR_UNK P_MINUS_VV_MINUS_VV_NVAR_UNK549,13959 -#define P_MINUS_CV_INSTINIT P_MINUS_CV_INSTINIT555,14113 -#define P_MINUS_CV_MINUS_CV_NVAR_INT P_MINUS_CV_MINUS_CV_NVAR_INT562,14317 -#define P_MINUS_CV_MINUS_CV_NVAR_NOINT P_MINUS_CV_MINUS_CV_NVAR_NOINT568,14500 -#define P_MINUS_CV_MINUS_CV_UNK P_MINUS_CV_MINUS_CV_UNK576,14721 -#define P_MINUS_Y_VV_INSTINIT P_MINUS_Y_VV_INSTINIT582,14902 -#define P_MINUS_Y_VV_MINUS_Y_VV_NVAR P_MINUS_Y_VV_MINUS_Y_VV_NVAR588,15078 -#define P_MINUS_Y_VV_INTTERM P_MINUS_Y_VV_INTTERM591,15158 -#define P_MINUS_Y_VV_NOINTTERM P_MINUS_Y_VV_NOINTTERM594,15245 -#define P_MINUS_Y_VV_D0EQUALS0L P_MINUS_Y_VV_D0EQUALS0L599,15356 -#define P_MINUS_Y_VV_NVAR_END P_MINUS_Y_VV_NVAR_END605,15516 -#define P_MINUS_Y_VV_MINUS_Y_VV_UNK P_MINUS_Y_VV_MINUS_Y_VV_UNK611,15689 -#define P_MINUS_Y_VV_MINUS_Y_VV_NVAR_UNK P_MINUS_Y_VV_MINUS_Y_VV_NVAR_UNK617,15842 -#define P_MINUS_Y_CV_INSTINIT P_MINUS_Y_CV_INSTINIT623,16000 -#define P_MINUS_Y_CV_MINUS_Y_CV_NVAR P_MINUS_Y_CV_MINUS_Y_CV_NVAR629,16172 -#define P_MINUS_Y_CV_INTTERM P_MINUS_Y_CV_INTTERM632,16244 -#define P_MINUS_Y_CV_NOINTTERM P_MINUS_Y_CV_NOINTTERM635,16322 -#define P_MINUS_Y_CV_D0EQUALS0L P_MINUS_Y_CV_D0EQUALS0L640,16444 -#define P_MINUS_Y_CV_NVAR_END P_MINUS_Y_CV_NVAR_END646,16609 -#define P_MINUS_Y_CV_MINUS_Y_CV_UNK P_MINUS_Y_CV_MINUS_Y_CV_UNK652,16782 -#define P_TIMES_VV_INSTINIT P_TIMES_VV_INSTINIT658,16967 -#define P_TIMES_VV_TIMES_VV_NVAR P_TIMES_VV_TIMES_VV_NVAR665,17187 -#define P_TIMES_VV_TIMES_VV_NVAR_NVAR_INT P_TIMES_VV_TIMES_VV_NVAR_NVAR_INT668,17265 -#define P_TIMES_VV_TIMES_VV_NVAR_NVAR_NOINT P_TIMES_VV_TIMES_VV_NVAR_NVAR_NOINT675,17518 -#define P_TIMES_VV_TIMES_VV_UNK P_TIMES_VV_TIMES_VV_UNK683,17745 -#define P_TIMES_VV_TIMES_VV_NVAR_UNK P_TIMES_VV_TIMES_VV_NVAR_UNK689,17894 -#define P_TIMES_VC_INSTINIT P_TIMES_VC_INSTINIT695,18048 -#define P_TIMES_VC_TIMES_VC_NVAR_INT P_TIMES_VC_TIMES_VC_NVAR_INT703,18296 -#define P_TIMES_VC_TIMES_VC_NVAR_NOINT P_TIMES_VC_TIMES_VC_NVAR_NOINT709,18479 -#define P_TIMES_VC_TIMES_VC_UNK P_TIMES_VC_TIMES_VC_UNK717,18704 -#define P_TIMES_Y_VV_INSTINIT P_TIMES_Y_VV_INSTINIT723,18883 -#define P_TIMES_Y_VV_TIMES_Y_VV_NVAR P_TIMES_Y_VV_TIMES_Y_VV_NVAR729,19059 -#define P_TIMES_Y_VV_INTTERM P_TIMES_Y_VV_INTTERM732,19139 -#define P_TIMES_Y_VV_NOINTTERM P_TIMES_Y_VV_NOINTTERM735,19221 -#define P_TIMES_Y_VV_D0EQUALS0L P_TIMES_Y_VV_D0EQUALS0L740,19332 -#define P_TIMES_Y_VV_NVAR_END P_TIMES_Y_VV_NVAR_END746,19489 -#define P_TIMES_Y_VV_TIMES_Y_VV_UNK P_TIMES_Y_VV_TIMES_Y_VV_UNK752,19662 -#define P_TIMES_Y_VV_TIMES_Y_VV_NVAR_UNK P_TIMES_Y_VV_TIMES_Y_VV_NVAR_UNK758,19818 -#define P_TIMES_Y_VC_INSTINIT P_TIMES_Y_VC_INSTINIT764,19976 -#define P_TIMES_Y_VC_TIMES_Y_VC_NVAR_INT P_TIMES_Y_VC_TIMES_Y_VC_NVAR_INT772,20222 -#define P_TIMES_Y_VC_TIMES_Y_VC_NVAR_NOINT P_TIMES_Y_VC_TIMES_Y_VC_NVAR_NOINT779,20448 -#define P_TIMES_Y_VC_NVAR_END P_TIMES_Y_VC_NVAR_END788,20713 -#define P_TIMES_Y_VC_TIMES_Y_VC_UNK P_TIMES_Y_VC_TIMES_Y_VC_UNK794,20886 -#define P_DIV_VV_INSTINIT P_DIV_VV_INSTINIT800,21069 -#define P_DIV_VV_DIV_VV_NVAR P_DIV_VV_DIV_VV_NVAR807,21281 -#define P_DIV_VV_DIV_VV_NVAR_NVAR_INT P_DIV_VV_DIV_VV_NVAR_NVAR_INT810,21353 -#define P_DIV_VV_DIV_VV_NVAR_NVAR_NOINT P_DIV_VV_DIV_VV_NVAR_NVAR_NOINT828,21881 -#define P_DIV_VV_DIV_VV_UNK P_DIV_VV_DIV_VV_UNK836,22112 -#define P_DIV_VV_DIV_VV_NVAR_UNK P_DIV_VV_DIV_VV_NVAR_UNK842,22258 -#define P_DIV_VC_INSTINIT P_DIV_VC_INSTINIT848,22409 -#define P_DIV_VC_DIV_VC_NVAR P_DIV_VC_DIV_VC_NVAR854,22577 -#define P_DIV_VC_INTTERM P_DIV_VC_INTTERM857,22641 -#define P_DIV_VC_NOINTTERM P_DIV_VC_NOINTTERM860,22711 -#define P_DIV_VC_D0EQUALS0L P_DIV_VC_D0EQUALS0L865,22826 -#define P_DIV_VC_NVAR_END P_DIV_VC_NVAR_END871,22987 -#define P_DIV_VC_DIV_VC_UNK P_DIV_VC_DIV_VC_UNK876,23120 -#define P_DIV_CV_INSTINIT P_DIV_CV_INSTINIT882,23266 -#define P_DIV_CV_DIV_CV_NVAR P_DIV_CV_DIV_CV_NVAR888,23434 -#define P_DIV_CV_INTTERM_INIT P_DIV_CV_INTTERM_INIT891,23498 -#define P_DIV_CV_INTTERM_DIVEQUALS0 P_DIV_CV_INTTERM_DIVEQUALS0894,23562 -#define P_DIV_CV_INTTERM_END P_DIV_CV_INTTERM_END900,23717 -#define P_DIV_CV_NOINTTERM P_DIV_CV_NOINTTERM903,23785 -#define P_DIV_CV_D0EQUALS0L P_DIV_CV_D0EQUALS0L907,23883 -#define P_DIV_CV_NVAR_END P_DIV_CV_NVAR_END913,24044 -#define P_DIV_CV_DIV_CV_UNK P_DIV_CV_DIV_CV_UNK918,24174 -#define P_DIV_Y_VV_INSTINIT P_DIV_Y_VV_INSTINIT924,24353 -#define P_DIV_Y_VV_DIV_Y_VV_NVAR P_DIV_Y_VV_DIV_Y_VV_NVAR930,24527 -#define P_DIV_Y_VV_INTTERM_INIT P_DIV_Y_VV_INTTERM_INIT933,24603 -#define P_DIV_Y_VV_INTTERM_DIVEQUALS0 P_DIV_Y_VV_INTTERM_DIVEQUALS0936,24668 -#define P_DIV_Y_VV_INTTERM_END P_DIV_Y_VV_INTTERM_END942,24817 -#define P_DIV_Y_VV_NOINTTERM P_DIV_Y_VV_NOINTTERM945,24892 -#define P_DIV_Y_VV_D0EQUALS0L P_DIV_Y_VV_D0EQUALS0L950,24999 -#define P_DIV_Y_VV_NVAR_END P_DIV_Y_VV_NVAR_END956,25154 -#define P_DIV_Y_VV_DIV_Y_VV_UNK P_DIV_Y_VV_DIV_Y_VV_UNK962,25325 -#define P_DIV_Y_VV_DIV_Y_VV_NVAR_UNK P_DIV_Y_VV_DIV_Y_VV_NVAR_UNK968,25475 -#define P_DIV_Y_VC_INSTINIT P_DIV_Y_VC_INSTINIT974,25630 -#define P_DIV_Y_VC_DIV_Y_VC_NVAR P_DIV_Y_VC_DIV_Y_VC_NVAR980,25800 -#define P_DIV_Y_VC_INTTERM P_DIV_Y_VC_INTTERM983,25868 -#define P_DIV_Y_VC_NOINTTERM P_DIV_Y_VC_NOINTTERM986,25938 -#define P_DIV_Y_VC_D0EQUALS0L P_DIV_Y_VC_D0EQUALS0L991,26055 -#define P_DIV_Y_VC_NVAR_END P_DIV_Y_VC_NVAR_END997,26218 -#define P_DIV_Y_VC_DIV_Y_VC_UNK P_DIV_Y_VC_DIV_Y_VC_UNK1003,26389 -#define P_DIV_Y_CV_INSTINIT P_DIV_Y_CV_INSTINIT1009,26539 -#define P_DIV_Y_CV_DIV_Y_CV_NVAR P_DIV_Y_CV_DIV_Y_CV_NVAR1015,26709 -#define P_DIV_Y_CV_INTTERM_INIT P_DIV_Y_CV_INTTERM_INIT1018,26777 -#define P_DIV_Y_CV_INTTERM_DIVEQUALS0 P_DIV_Y_CV_INTTERM_DIVEQUALS01021,26843 -#define P_DIV_Y_CV_INTTERM_END P_DIV_Y_CV_INTTERM_END1027,27000 -#define P_DIV_Y_CV_NOINTTERM P_DIV_Y_CV_NOINTTERM1030,27070 -#define P_DIV_Y_CV_D0EQUALS0L P_DIV_Y_CV_D0EQUALS0L1035,27188 -#define P_DIV_Y_CV_NVAR_END P_DIV_Y_CV_NVAR_END1041,27351 -#define P_DIV_Y_CV_DIV_Y_CV_UNK P_DIV_Y_CV_DIV_Y_CV_UNK1047,27522 -#define P_AND_VV_INSTINIT P_AND_VV_INSTINIT1053,27705 -#define P_AND_VV_AND_VV_NVAR P_AND_VV_AND_VV_NVAR1060,27917 -#define P_AND_VV_AND_VV_NVAR_NVAR_INT P_AND_VV_AND_VV_NVAR_NVAR_INT1063,27995 -#define P_AND_VV_AND_VV_NVAR_NVAR_NOINT P_AND_VV_AND_VV_NVAR_NVAR_NOINT1070,28249 -#define P_AND_VV_AND_VV_UNK P_AND_VV_AND_VV_UNK1078,28468 -#define P_AND_VV_AND_VV_NVAR_UNK P_AND_VV_AND_VV_NVAR_UNK1084,28615 -#define P_AND_VC_INSTINIT P_AND_VC_INSTINIT1090,28767 -#define P_AND_VC_AND_VC_NVAR_INT P_AND_VC_AND_VC_NVAR_INT1098,29009 -#define P_AND_VC_AND_VC_NVAR_NOINT P_AND_VC_AND_VC_NVAR_NOINT1104,29193 -#define P_AND_VC_AND_VC_UNK P_AND_VC_AND_VC_UNK1112,29412 -#define P_AND_Y_VV_INSTINIT P_AND_Y_VV_INSTINIT1118,29591 -#define P_AND_Y_VV_AND_Y_VV_NVAR P_AND_Y_VV_AND_Y_VV_NVAR1124,29765 -#define P_AND_Y_VV_INTTERM P_AND_Y_VV_INTTERM1127,29841 -#define P_AND_Y_VV_NOINTTERM P_AND_Y_VV_NOINTTERM1130,29926 -#define P_AND_Y_VV_D0EQUALS0L P_AND_Y_VV_D0EQUALS0L1135,30033 -#define P_AND_Y_VV_NVAR_END P_AND_Y_VV_NVAR_END1141,30188 -#define P_AND_Y_VV_AND_Y_VV_UNK P_AND_Y_VV_AND_Y_VV_UNK1147,30359 -#define P_AND_Y_VV_AND_Y_VV_NVAR_UNK P_AND_Y_VV_AND_Y_VV_NVAR_UNK1153,30510 -#define P_AND_Y_VC_INSTINIT P_AND_Y_VC_INSTINIT1159,30666 -#define P_AND_Y_VC_AND_Y_VC_NVAR P_AND_Y_VC_AND_Y_VC_NVAR1165,30836 -#define P_AND_Y_VC_INTTERM P_AND_Y_VC_INTTERM1168,30904 -#define P_AND_Y_VC_NOINTTERM P_AND_Y_VC_NOINTTERM1171,30980 -#define P_AND_Y_VC_D0EQUALS0L P_AND_Y_VC_D0EQUALS0L1176,31098 -#define P_AND_Y_VC_NVAR_END P_AND_Y_VC_NVAR_END1182,31261 -#define P_AND_Y_VC_AND_Y_VC_UNK P_AND_Y_VC_AND_Y_VC_UNK1188,31432 -#define P_OR_VV_INSTINIT P_OR_VV_INSTINIT1194,31615 -#define P_OR_VV_OR_VV_NVAR P_OR_VV_OR_VV_NVAR1200,31786 -#define P_OR_VV_INTTERM P_OR_VV_INTTERM1203,31856 -#define P_OR_VV_NOINTTERM P_OR_VV_NOINTTERM1206,31938 -#define P_OR_VV_D0EQUALS0L P_OR_VV_D0EQUALS0L1211,32041 -#define P_OR_VV_NVAR_END P_OR_VV_NVAR_END1217,32193 -#define P_OR_VV_OR_VV_UNK P_OR_VV_OR_VV_UNK1222,32322 -#define P_OR_VV_OR_VV_NVAR_UNK P_OR_VV_OR_VV_NVAR_UNK1228,32467 -#define P_OR_VC_INSTINIT P_OR_VC_INSTINIT1234,32617 -#define P_OR_VC_OR_VC_NVAR P_OR_VC_OR_VC_NVAR1240,32784 -#define P_OR_VC_INTTERM P_OR_VC_INTTERM1243,32846 -#define P_OR_VC_NOINTTERM P_OR_VC_NOINTTERM1246,32919 -#define P_OR_VC_D0EQUALS0L P_OR_VC_D0EQUALS0L1250,33016 -#define P_OR_VC_NVAR_END P_OR_VC_NVAR_END1256,33176 -#define P_OR_VC_OR_VC_UNK P_OR_VC_OR_VC_UNK1261,33305 -#define P_OR_Y_VV_INSTINIT P_OR_Y_VV_INSTINIT1267,33482 -#define P_OR_Y_VV_OR_Y_VV_NVAR P_OR_Y_VV_OR_Y_VV_NVAR1273,33655 -#define P_OR_Y_VV_INTTERM P_OR_Y_VV_INTTERM1276,33729 -#define P_OR_Y_VV_NOINTTERM P_OR_Y_VV_NOINTTERM1279,33813 -#define P_OR_Y_VV_D0EQUALS0L P_OR_Y_VV_D0EQUALS0L1284,33918 -#define P_OR_Y_VV_NVAR_END P_OR_Y_VV_NVAR_END1290,34072 -#define P_OR_Y_VV_OR_Y_VV_UNK P_OR_Y_VV_OR_Y_VV_UNK1296,34242 -#define P_OR_Y_VV_OR_Y_VV_NVAR_UNK P_OR_Y_VV_OR_Y_VV_NVAR_UNK1302,34391 -#define P_OR_Y_VC_INSTINIT P_OR_Y_VC_INSTINIT1308,34545 -#define P_OR_Y_VC_OR_Y_VC_NVAR P_OR_Y_VC_OR_Y_VC_NVAR1314,34714 -#define P_OR_Y_VC_INTTERM P_OR_Y_VC_INTTERM1317,34780 -#define P_OR_Y_VC_NOINTTERM P_OR_Y_VC_NOINTTERM1320,34855 -#define P_OR_Y_VC_D0EQUALS0L P_OR_Y_VC_D0EQUALS0L1325,34971 -#define P_OR_Y_VC_NVAR_END P_OR_Y_VC_NVAR_END1331,35133 -#define P_OR_Y_VC_OR_Y_VC_UNK P_OR_Y_VC_OR_Y_VC_UNK1337,35303 -#define P_SLL_VV_INSTINIT P_SLL_VV_INSTINIT1343,35484 -#define P_SLL_VV_SLL_VV_NVAR P_SLL_VV_SLL_VV_NVAR1349,35656 -#define P_SLL_VV_INTTERM_INIT P_SLL_VV_INTTERM_INIT1352,35728 -#define P_SLL_VV_INTTERM_LESS P_SLL_VV_INTTERM_LESS1355,35789 -#define P_SLL_VV_INTTERM_GREATER P_SLL_VV_INTTERM_GREATER1358,35873 -#define P_SLL_VV_NOINTTERM P_SLL_VV_NOINTTERM1361,35949 -#define P_SLL_VV_D0EQUALS0L P_SLL_VV_D0EQUALS0L1366,36054 -#define P_SLL_VV_NVAR_END P_SLL_VV_NVAR_END1372,36199 -#define P_SLL_VV_SLL_VV_UNK P_SLL_VV_SLL_VV_UNK1377,36329 -#define P_SLL_VV_SLL_VV_NVAR_UNK P_SLL_VV_SLL_VV_NVAR_UNK1383,36475 -#define P_SLL_VC_INSTINIT P_SLL_VC_INSTINIT1389,36626 -#define P_SLL_VC_SLL_VC_NVAR P_SLL_VC_SLL_VC_NVAR1395,36794 -#define P_SLL_VC_INTTERM P_SLL_VC_INTTERM1398,36858 -#define P_SLL_VC_NOINTTERM P_SLL_VC_NOINTTERM1401,36929 -#define P_SLL_VC_D0EQUALS0L P_SLL_VC_D0EQUALS0L1406,37045 -#define P_SLL_VC_NVAR_END P_SLL_VC_NVAR_END1412,37190 -#define P_SLL_VC_SLL_VC_UNK P_SLL_VC_SLL_VC_UNK1417,37320 -#define P_SLL_CV_INSTINIT P_SLL_CV_INSTINIT1423,37466 -#define P_SLL_CV_SLL_CV_NVAR_INT P_SLL_CV_SLL_CV_NVAR_INT1431,37708 -#define P_SLL_CV_SLL_CV_NVAR_NOINT P_SLL_CV_SLL_CV_NVAR_NOINT1442,37982 -#define P_SLL_CV_SLL_CV_UNK P_SLL_CV_SLL_CV_UNK1450,38201 -#define P_SLL_Y_VV_INSTINIT P_SLL_Y_VV_INSTINIT1456,38347 -#define P_SLL_Y_VV_SLL_Y_VV_NVAR P_SLL_Y_VV_SLL_Y_VV_NVAR1462,38521 -#define P_SLL_Y_VV_INTTERM_INIT P_SLL_Y_VV_INTTERM_INIT1465,38597 -#define P_SLL_Y_VV_INTERM_LESS P_SLL_Y_VV_INTERM_LESS1468,38660 -#define P_SLL_Y_VV_INTTERM_GREATER P_SLL_Y_VV_INTTERM_GREATER1471,38745 -#define P_SLL_Y_VV_NOINTTERM P_SLL_Y_VV_NOINTTERM1474,38820 -#define P_SLL_Y_VV_D0EQUALS0L P_SLL_Y_VV_D0EQUALS0L1479,38927 -#define P_SLL_Y_VV_NVAR_END P_SLL_Y_VV_NVAR_END1485,39077 -#define P_SLL_Y_VV_SLL_Y_VV_UNK P_SLL_Y_VV_SLL_Y_VV_UNK1491,39248 -#define P_SLL_Y_VV_SLL_Y_VV_NVAR_UNK P_SLL_Y_VV_SLL_Y_VV_NVAR_UNK1497,39398 -#define P_SLL_Y_VC_INSTINIT P_SLL_Y_VC_INSTINIT1503,39553 -#define P_SLL_Y_VC_SLL_Y_VC_NVAR P_SLL_Y_VC_SLL_Y_VC_NVAR1509,39723 -#define P_SLL_Y_VC_INTTERM P_SLL_Y_VC_INTTERM1512,39791 -#define P_SLL_Y_VC_NOINTTERM P_SLL_Y_VC_NOINTTERM1515,39869 -#define P_SLL_Y_VC_D0EQUALS0L P_SLL_Y_VC_D0EQUALS0L1520,39987 -#define P_SLL_Y_VC_NVAR_END P_SLL_Y_VC_NVAR_END1526,40134 -#define P_SLL_Y_VC_SLL_Y_VC_UNK P_SLL_Y_VC_SLL_Y_VC_UNK1532,40308 -#define P_SLL_Y_CV_INSTINIT P_SLL_Y_CV_INSTINIT1538,40458 -#define P_SLL_Y_CV_SLL_Y_CV_NVAR P_SLL_Y_CV_SLL_Y_CV_NVAR1544,40628 -#define P_SLL_Y_CV_INTTERM_INIT P_SLL_Y_CV_INTTERM_INIT1547,40697 -#define P_SLL_Y_CV_INTTERM_LESS P_SLL_Y_CV_INTTERM_LESS1550,40762 -#define P_SLL_Y_CV_INTTERM_GREATER P_SLL_Y_CV_INTTERM_GREATER1553,40839 -#define P_SLL_Y_CV_NOINTTERM P_SLL_Y_CV_NOINTTERM1556,40905 -#define P_SLL_Y_CV_D0EQUALS0L P_SLL_Y_CV_D0EQUALS0L1561,41022 -#define P_SLL_Y_CV_NVAR_END P_SLL_Y_CV_NVAR_END1567,41169 -#define P_SLL_Y_CV_SLL_Y_CV_UNK P_SLL_Y_CV_SLL_Y_CV_UNK1573,41340 -#define P_SLR_VV_INSTINIT P_SLR_VV_INSTINIT1579,41490 -#define P_SLR_VV_SLR_VV_NVAR P_SLR_VV_SLR_VV_NVAR1585,41662 -#define P_SLR_VV_INTTERM_INIT P_SLR_VV_INTTERM_INIT1588,41734 -#define P_SLR_VV_INTTERM_LESS P_SLR_VV_INTTERM_LESS1591,41795 -#define P_SLR_VV_INTTERM_GREATER P_SLR_VV_INTTERM_GREATER1594,41867 -#define P_SLR_VV_NOINTTERM P_SLR_VV_NOINTTERM1597,41949 -#define P_SLR_VV_D0EQUALS0L P_SLR_VV_D0EQUALS0L1602,42054 -#define P_SLR_VV_NVAR_END P_SLR_VV_NVAR_END1608,42199 -#define P_SLR_VV_SRL_VV_UNK P_SLR_VV_SRL_VV_UNK1613,42329 -#define P_SLR_VV_SRL_VV_NVAR_UNK P_SLR_VV_SRL_VV_NVAR_UNK1619,42475 -#define P_SLR_VC_INSTINIT P_SLR_VC_INSTINIT1625,42626 -#define P_SLR_VC_SLR_VC_NVAR_INT P_SLR_VC_SLR_VC_NVAR_INT1633,42868 -#define P_SLR_VC_SLR_VC_NVAR_NOINT P_SLR_VC_SLR_VC_NVAR_NOINT1639,43052 -#define P_SLR_VC_SRL_VC_UNK P_SLR_VC_SRL_VC_UNK1647,43274 -#define P_SLR_CV_INSTINIT P_SLR_CV_INSTINIT1653,43420 -#define P_SLR_CV_SLR_CV_NVAR P_SLR_CV_SLR_CV_NVAR1659,43588 -#define P_SLR_CV_INTTERM_INIT P_SLR_CV_INTTERM_INIT1662,43652 -#define P_SLR_CV_INTTERM_LESS P_SLR_CV_INTTERM_LESS1665,43714 -#define P_SLR_CV_INTTERM_GREATER P_SLR_CV_INTTERM_GREATER1668,43776 -#define P_SLR_CV_NOINTTERM P_SLR_CV_NOINTTERM1671,43852 -#define P_SLR_CV_D0EQUALS0L P_SLR_CV_D0EQUALS0L1676,43968 -#define P_SLR_CV_NVAR_END P_SLR_CV_NVAR_END1682,44113 -#define P_SLR_CV_SLR_CV_UNK P_SLR_CV_SLR_CV_UNK1687,44243 -#define P_SLR_Y_VV_INSTINIT P_SLR_Y_VV_INSTINIT1693,44389 -#define P_SLR_Y_VV_SLR_Y_VV_NVAR P_SLR_Y_VV_SLR_Y_VV_NVAR1699,44563 -#define P_SLR_Y_VV_INTTERM_INIT P_SLR_Y_VV_INTTERM_INIT1702,44639 -#define P_SLR_Y_VV_INTTERM_LESS P_SLR_Y_VV_INTTERM_LESS1705,44703 -#define P_SLR_Y_VV_INTTERM_GREATER P_SLR_Y_VV_INTTERM_GREATER1708,44778 -#define P_SLR_Y_VV_NOINTTERM P_SLR_Y_VV_NOINTTERM1711,44863 -#define P_SLR_Y_VV_D0EQUALS0L P_SLR_Y_VV_D0EQUALS0L1716,44970 -#define P_SLR_Y_VV_NVAR_END P_SLR_Y_VV_NVAR_END1722,45117 -#define P_SLR_Y_VV_SLR_Y_VV_UNK P_SLR_Y_VV_SLR_Y_VV_UNK1728,45288 -#define P_SLR_Y_VV_SLR_Y_VV_NVAR_UNK P_SLR_Y_VV_SLR_Y_VV_NVAR_UNK1734,45438 -#define P_SLR_Y_VC_INSTINIT P_SLR_Y_VC_INSTINIT1740,45593 -#define P_SLR_Y_VC_SLR_Y_VC_NVAR P_SLR_Y_VC_SLR_Y_VC_NVAR1746,45763 -#define P_SLR_Y_VC_INTTERM P_SLR_Y_VC_INTTERM1749,45831 -#define P_SLR_Y_VC_NOINTTERM P_SLR_Y_VC_NOINTTERM1752,45907 -#define P_SLR_Y_VC_D0EQUALS0L P_SLR_Y_VC_D0EQUALS0L1757,46025 -#define P_SLR_Y_VC_NVAR_END P_SLR_Y_VC_NVAR_END1763,46188 -#define P_SLR_Y_VC_SLR_Y_VC_UNK P_SLR_Y_VC_SLR_Y_VC_UNK1769,46359 -#define P_SLR_Y_CV_INSTINIT P_SLR_Y_CV_INSTINIT1774,46492 -#define P_SLR_Y_CV_SLR_Y_CV_NVAR P_SLR_Y_CV_SLR_Y_CV_NVAR1780,46662 -#define P_SLR_Y_CV_INTTERM_INIT P_SLR_Y_CV_INTTERM_INIT1783,46730 -#define P_SLR_Y_CV_INTTERM_LESS P_SLR_Y_CV_INTTERM_LESS1786,46794 -#define P_SLR_Y_CV_INTTERM_GREATER P_SLR_Y_CV_INTTERM_GREATER1789,46858 -#define P_SLR_Y_CV_NOINTTERM P_SLR_Y_CV_NOINTTERM1792,46936 -#define P_SLR_Y_CV_D0EQUALS0L P_SLR_Y_CV_D0EQUALS0L1797,47054 -#define P_SLR_Y_CV_NVAR_END P_SLR_Y_CV_NVAR_END1803,47201 -#define P_SLR_Y_CV_SLR_Y_CV_UNK P_SLR_Y_CV_SLR_Y_CV_UNK1809,47372 -#define CALL_BFUNC_XX_INSTINIT CALL_BFUNC_XX_INSTINIT1815,47522 -#define CALL_BFUNC_XX_CALL_BFUNC_XX_NVAR CALL_BFUNC_XX_CALL_BFUNC_XX_NVAR1822,47741 -#define CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_INT CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_INT1825,47827 -#define CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_NOINT CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_NOINT1869,49103 -#define CALL_BFUNC_XX_CALL_BFUNC_XX_UNK CALL_BFUNC_XX_CALL_BFUNC_XX_UNK1887,49627 -#define CALL_BFUNC_YX_INSTINIT CALL_BFUNC_YX_INSTINIT1890,49695 -#define CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_INT CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_INT1899,49976 -#define CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_NOINT CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_NOINT1932,50949 -#define CALL_BFUNC_YX_CALL_BFUNC_YX_UNK CALL_BFUNC_YX_CALL_BFUNC_YX_UNK1949,51471 -#define CALL_BFUNC_XY_INSTINIT CALL_BFUNC_XY_INSTINIT1952,51539 -#define CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_INT CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_INT1961,51820 -#define CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_NOINT CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_NOINT1994,52793 -#define CALL_BFUNC_XY_CALL_BFUNC_XY_UNK CALL_BFUNC_XY_CALL_BFUNC_XY_UNK2011,53315 -#define CALL_BFUNC_YY_INSTINIT CALL_BFUNC_YY_INSTINIT2014,53383 -#define CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_INT CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_INT2024,53694 -#define CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_NOINT CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_NOINT2057,54667 -#define CALL_BFUNC_YY_NOINTTERM_NOFAILCODE CALL_BFUNC_YY_NOINTTERM_NOFAILCODE2074,55189 -#define CALL_BFUNC_YY_NOINTTERM_NOD0 CALL_BFUNC_YY_NOINTTERM_NOD02077,55273 -#define CALL_BFUNC_YY_NOINTTERM_END CALL_BFUNC_YY_NOINTTERM_END2080,55328 -#define CALL_BFUNC_YY_CALL_BFUNC_YY_UNK CALL_BFUNC_YY_CALL_BFUNC_YY_UNK2084,55432 -#define P_EQUAL_INSTINIT P_EQUAL_INSTINIT2087,55500 -#define P_EQUAL_END P_EQUAL_END2091,55597 -#define P_ARG_VV_INSTINIT P_ARG_VV_INSTINIT2099,55723 -#define P_ARG_VV_LOW_LEVEL_TRACER P_ARG_VV_LOW_LEVEL_TRACER2104,55868 -#define P_ARG_VV_TEST_D0 P_ARG_VV_TEST_D02111,56097 -#define P_ARG_VV_ARG_ARG1_NVAR P_ARG_VV_ARG_ARG1_NVAR2116,56225 -#define P_ARG_VV_TEST_D1 P_ARG_VV_TEST_D12129,56533 -#define P_ARG_VV_ARG_ARG2_NVAR P_ARG_VV_ARG_ARG2_NVAR2133,56629 -#define P_ARG_VV_ARG_ARG2_UNK P_ARG_VV_ARG_ARG2_UNK2173,57529 -#define P_ARG_VV_ARG_ARG1_UNK P_ARG_VV_ARG_ARG1_UNK2179,57682 -#define P_ARG_CV_INSTINIT P_ARG_CV_INSTINIT2185,57836 -#define P_ARG_CV_LOW_LEVEL_TRACER P_ARG_CV_LOW_LEVEL_TRACER2190,57981 -#define P_ARG_CV_TEST_D1 P_ARG_CV_TEST_D12200,58267 -#define P_ARG_CV_ARG_ARG2_VC_NVAR P_ARG_CV_ARG_ARG2_VC_NVAR2206,58422 -#define P_ARG_CV_ARG_ARG2_VC_UNK P_ARG_CV_ARG_ARG2_VC_UNK2246,59341 -#define P_ARG_Y_VV_INSTINIT P_ARG_Y_VV_INSTINIT2252,59497 -#define P_ARG_Y_VV_LOW_LEVEL_TRACER P_ARG_Y_VV_LOW_LEVEL_TRACER2257,59644 -#define P_ARG_Y_VV_TEST_D0 P_ARG_Y_VV_TEST_D02265,59911 -#define P_ARG_Y_VV_ARG_Y_ARG1_NVAR P_ARG_Y_VV_ARG_Y_ARG1_NVAR2270,60041 -#define P_ARG_Y_VV_TEST_D1 P_ARG_Y_VV_TEST_D12283,60351 -#define P_ARG_Y_VV_ARG_Y_ARG2_NVAR P_ARG_Y_VV_ARG_Y_ARG2_NVAR2287,60443 -#define P_ARG_Y_VV_ARG_Y_ARG2_UNK P_ARG_Y_VV_ARG_Y_ARG2_UNK2329,61428 -#define P_ARG_Y_VV_ARG_Y_ARG1_UNK P_ARG_Y_VV_ARG_Y_ARG1_UNK2335,61585 -#define P_ARG_Y_CV_INSTINIT P_ARG_Y_CV_INSTINIT2341,61743 -#define P_ARG_Y_CV_LOW_LEVEL_TRACER P_ARG_Y_CV_LOW_LEVEL_TRACER2345,61850 -#define P_ARG_Y_CV_TEST_D1 P_ARG_Y_CV_TEST_D12356,62174 -#define P_ARG_Y_CV_D1APPL_INIT P_ARG_Y_CV_D1APPL_INIT2362,62337 -#define P_ARG_Y_CV_D1APPL_END P_ARG_Y_CV_D1APPL_END2366,62409 -#define P_ARG_Y_CV_D1PAIR_INIT P_ARG_Y_CV_D1PAIR_INIT2372,62567 -#define P_ARG_Y_CV_D1PAIR_LESS0 P_ARG_Y_CV_D1PAIR_LESS02375,62624 -#define P_ARG_Y_CV_D1PAIR_END P_ARG_Y_CV_D1PAIR_END2381,62793 -#define P_ARG_Y_CV_ARG_Y_ARG2_VC_UNK P_ARG_Y_CV_ARG_Y_ARG2_VC_UNK2387,62953 -#define P_FUNC2S_VV_INSTINITP_FUNC2S_VV_INSTINIT2393,63113 -#define P_FUNC2S_VV_LOW_LEVEL_TRACER P_FUNC2S_VV_LOW_LEVEL_TRACER2396,63173 -#define P_FUNC2S_TEST_D0 P_FUNC2S_TEST_D02403,63407 -#define P_FUNC2S_VV_TEST_D1 P_FUNC2S_VV_TEST_D12408,63535 -#define P_FUNC2S_VV_D1INT P_FUNC2S_VV_D1INT2411,63606 -#define P_FUNC2S_VV_D1NOTINT P_FUNC2S_VV_D1NOTINT2414,63664 -#define P_FUNC2S_VV_D1BIGINT P_FUNC2S_VV_D1BIGINT2417,63712 -#define P_FUNC2S_VV_D1NOTBIGINT P_FUNC2S_VV_D1NOTBIGINT2420,63800 -#define P_FUNC2S_VV_D1NOTINT_END P_FUNC2S_VV_D1NOTINT_END2423,63889 -#define P_FUNC2S_VV_D0NOTATOMIC P_FUNC2S_VV_D0NOTATOMIC2427,63952 -#define P_FUNC2S_VV_FIRSTIFOK P_FUNC2S_VV_FIRSTIFOK2433,64077 -#define P_FUNC2S_VV_SECONDIFOK_D0NOTATOM P_FUNC2S_VV_SECONDIFOK_D0NOTATOM2442,64304 -#define P_FUNC2S_VV_SECONDIFOK_D0ATOM P_FUNC2S_VV_SECONDIFOK_D0ATOM2448,64446 -#define P_FUNC2S_VV_SECONDIFOK_POST_D0ATOM P_FUNC2S_VV_SECONDIFOK_POST_D0ATOM2451,64546 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_INIT P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_INIT2456,64645 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_IFOK P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_IFOK2459,64712 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_NOIF P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_NOIF2464,64862 -#define P_FUNC2S_VV_SECONDIFOK_INSIDEWHILE P_FUNC2S_VV_SECONDIFOK_INSIDEWHILE2467,64930 -#define P_FUNC2S_VV_SECONDIFOK_END P_FUNC2S_VV_SECONDIFOK_END2471,65016 -#define P_FUNC2S_VV_THIRDIFOK P_FUNC2S_VV_THIRDIFOK2477,65177 -#define P_FUNC2S_VV_ELSE P_FUNC2S_VV_ELSE2482,65320 -#define P_FUNC2S_VV_FUNC2S_UNK2 P_FUNC2S_VV_FUNC2S_UNK22488,65469 -#define P_FUNC2S_VV_FUNC2S_UNK P_FUNC2S_VV_FUNC2S_UNK2494,65620 -#define P_FUNC2S_CV_INSTINIT P_FUNC2S_CV_INSTINIT2500,65770 -#define P_FUNC2S_CV_LOW_LEVEL_TRACER P_FUNC2S_CV_LOW_LEVEL_TRACER2504,65878 -#define P_FUNC2S_CV_TEST_D1 P_FUNC2S_CV_TEST_D12511,66105 -#define P_FUNC2S_CV_D1INT P_FUNC2S_CV_D1INT2517,66269 -#define P_FUNC2S_CV_D1NOTINT P_FUNC2S_CV_D1NOTINT2520,66327 -#define P_FUNC2S_CV_D1NOINT_D1BIGINT P_FUNC2S_CV_D1NOINT_D1BIGINT2523,66375 -#define P_FUNC2S_CV_D1NOTBIGINT P_FUNC2S_CV_D1NOTBIGINT2526,66471 -#define P_FUNC2S_CV_POST_IF P_FUNC2S_CV_POST_IF2529,66558 -#define P_FUNC2S_CV_FIRSTIFOK P_FUNC2S_CV_FIRSTIFOK2533,66616 -#define P_FUNC2S_CV_D1GREATER_D0NOTATOM P_FUNC2S_CV_D1GREATER_D0NOTATOM2542,66843 -#define P_FUNC2S_CV_D1GREATER_D0ATOM P_FUNC2S_CV_D1GREATER_D0ATOM2548,66984 -#define P_FUNC2S_CV_D1GREATER_POST_IF P_FUNC2S_CV_D1GREATER_POST_IF2551,67083 -#define P_FUNC2S_CV_D1GREATER_IFOK_INIT P_FUNC2S_CV_D1GREATER_IFOK_INIT2556,67177 -#define P_FUNC2S_CV_D1GREATER_IFOK_IFOK P_FUNC2S_CV_D1GREATER_IFOK_IFOK2559,67238 -#define P_FUNC2S_CV_D1GREATER_IFOK_NOIF P_FUNC2S_CV_D1GREATER_IFOK_NOIF2564,67382 -#define P_FUNC2S_CV_D1GREATER_INSIDEWHILE P_FUNC2S_CV_D1GREATER_INSIDEWHILE2567,67444 -#define P_FUNC2S_CV_D1GREATER_END P_FUNC2S_CV_D1GREATER_END2571,67529 -#define P_FUNC2S_CV_D1ISZERO P_FUNC2S_CV_D1ISZERO2577,67689 -#define P_FUNC2S_CV_ELSE P_FUNC2S_CV_ELSE2582,67831 -#define P_FUNC2S_CV_END P_FUNC2S_CV_END2588,67980 -#define P_FUNC2S_VC_INSTINIT P_FUNC2S_VC_INSTINIT2594,68123 -#define P_FUNC2S_VC_LOW_LEVEL_TRACER P_FUNC2S_VC_LOW_LEVEL_TRACER2598,68231 -#define P_FUNC2S_VC_TEST_D0 P_FUNC2S_VC_TEST_D02609,68530 -#define P_FUNC2S_VC_FUNC2S_NVAR_VC P_FUNC2S_VC_FUNC2S_NVAR_VC2614,68661 -#define P_FUNC2S_VC_D0NOATOMIC P_FUNC2S_VC_D0NOATOMIC2617,68732 -#define P_FUNC2S_VC_EQUALS P_FUNC2S_VC_EQUALS2623,68856 -#define P_FUNC2S_VC_D1ISZERO P_FUNC2S_VC_D1ISZERO2632,69080 -#define P_FUNC2S_VC_D0NOATOM P_FUNC2S_VC_D0NOATOM2637,69222 -#define P_FUNC2S_VC_D0ATOM P_FUNC2S_VC_D0ATOM2643,69344 -#define P_FUNC2S_VC_POST_ELSE P_FUNC2S_VC_POST_ELSE2646,69431 -#define P_FUNC2S_VC_IFOK_INIT P_FUNC2S_VC_IFOK_INIT2651,69532 -#define P_FUNC2S_VC_IFOK_IFOK P_FUNC2S_VC_IFOK_IFOK2654,69581 -#define P_FUNC2S_VC_IFOK_NOIF P_FUNC2S_VC_IFOK_NOIF2659,69709 -#define P_FUNC2S_VC_INSIDEWHILE P_FUNC2S_VC_INSIDEWHILE2662,69759 -#define P_FUNC2S_VC_END1 P_FUNC2S_VC_END12666,69830 -#define P_FUNC2S_VC_END2 P_FUNC2S_VC_END22672,70002 -#define P_FUNC2S_Y_VV_INSTINIT P_FUNC2S_Y_VV_INSTINIT2678,70146 -#define P_FUNC2S_Y_VV_LOW_LEVEL_TRACER P_FUNC2S_Y_VV_LOW_LEVEL_TRACER2682,70256 -#define P_FUNC2S_Y_VV_TEST_D0 P_FUNC2S_Y_VV_TEST_D02689,70492 -#define P_FUNC2S_Y_VV_TEST_D1 P_FUNC2S_Y_VV_TEST_D12694,70625 -#define P_FUNC2S_Y_VV_D1INT P_FUNC2S_Y_VV_D1INT2697,70698 -#define P_FUNC2S_Y_VV_D1NOTINT P_FUNC2S_Y_VV_D1NOTINT2700,70757 -#define P_FUNC2S_Y_VV_D1BIGINT P_FUNC2S_Y_VV_D1BIGINT2703,70807 -#define P_FUNC2S_Y_VV_D1NOTBIGINT P_FUNC2S_Y_VV_D1NOTBIGINT2706,70897 -#define P_FUNC2S_Y_VV_POST_IF P_FUNC2S_Y_VV_POST_IF2709,70986 -#define P_FUNC2S_Y_VV_D0NOATOMIC P_FUNC2S_Y_VV_D0NOATOMIC2713,71046 -#define P_FUNC2S_Y_VV_EQUALS P_FUNC2S_Y_VV_EQUALS2719,71172 -#define P_FUNC2S_Y_VV_D1GREATER_D0NOATOM P_FUNC2S_Y_VV_D1GREATER_D0NOATOM2729,71432 -#define P_FUNC2S_Y_VV_D1GREATER_D0ATOM P_FUNC2S_Y_VV_D1GREATER_D0ATOM2735,71574 -#define P_FUNC2S_Y_VV_D1GREATER_POST_ELSE P_FUNC2S_Y_VV_D1GREATER_POST_ELSE2738,71675 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_INIT P_FUNC2S_Y_VV_D1GREATER_IFOK_INIT2743,71773 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_IFOK P_FUNC2S_Y_VV_D1GREATER_IFOK_IFOK2746,71836 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_NOIF P_FUNC2S_Y_VV_D1GREATER_IFOK_NOIF2751,71982 -#define P_FUNC2S_Y_VV_D1GREATER_INSIDEWHILE P_FUNC2S_Y_VV_D1GREATER_INSIDEWHILE2754,72046 -#define P_FUNC2S_Y_VV_D1GREATER_END P_FUNC2S_Y_VV_D1GREATER_END2758,72133 -#define P_FUNC2S_Y_VV_D1ISZERO P_FUNC2S_Y_VV_D1ISZERO2765,72329 -#define P_FUNC2S_Y_VV_ELSE P_FUNC2S_Y_VV_ELSE2771,72507 -#define P_FUNC2S_Y_VV_END1 P_FUNC2S_Y_VV_END12777,72658 -#define P_FUNC2S_Y_VV_END2 P_FUNC2S_Y_VV_END22783,72804 -#define P_FUNC2S_Y_CV_INSTINIT P_FUNC2S_Y_CV_INSTINIT2789,72950 -#define P_FUNC2S_Y_CV_LOW_LEVEL_TRACER P_FUNC2S_Y_CV_LOW_LEVEL_TRACER2793,73060 -#define P_FUNC2S_Y_CV_TEST_D1 P_FUNC2S_Y_CV_TEST_D12800,73289 -#define P_FUNC2S_Y_CV_D1INT P_FUNC2S_Y_CV_D1INT2806,73455 -#define P_FUNC2S_Y_CV_D1NOTINT P_FUNC2S_Y_CV_D1NOTINT2809,73514 -#define P_FUNC2S_Y_CV_D1BIGINT P_FUNC2S_Y_CV_D1BIGINT2812,73564 -#define P_FUNC2S_Y_CV_D1NOTBIGINT P_FUNC2S_Y_CV_D1NOTBIGINT2815,73654 -#define P_FUNC2S_Y_CV_POST_IF P_FUNC2S_Y_CV_POST_IF2818,73743 -#define P_FUNC2S_Y_CV_EQUALS P_FUNC2S_Y_CV_EQUALS2822,73803 -#define P_FUNC2S_Y_CV_D1GREATER_D0NOATOM P_FUNC2S_Y_CV_D1GREATER_D0NOATOM2832,74063 -#define P_FUNC2S_Y_CV_D1GREATER_D0ATOM P_FUNC2S_Y_CV_D1GREATER_D0ATOM2838,74205 -#define P_FUNC2S_Y_CV_D1GREATER_POST_ELSE P_FUNC2S_Y_CV_D1GREATER_POST_ELSE2841,74306 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_INIT P_FUNC2S_Y_CV_D1GREATER_IFOK_INIT2846,74404 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_IFOK P_FUNC2S_Y_CV_D1GREATER_IFOK_IFOK2849,74467 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_NOIF P_FUNC2S_Y_CV_D1GREATER_IFOK_NOIF2854,74613 -#define P_FUNC2S_Y_CV_D1GREATER_INSIDEWHILE P_FUNC2S_Y_CV_D1GREATER_INSIDEWHILE2857,74677 -#define P_FUNC2S_Y_CV_D1GREATER_END P_FUNC2S_Y_CV_D1GREATER_END2861,74764 -#define P_FUNC2S_Y_CV_D1ISZERO P_FUNC2S_Y_CV_D1ISZERO2868,74960 -#define P_FUNC2S_Y_CV_ELSE P_FUNC2S_Y_CV_ELSE2874,75138 -#define P_FUNC2S_Y_CV_END P_FUNC2S_Y_CV_END2880,75289 -#define P_FUNC2S_Y_VC_INSTINIT P_FUNC2S_Y_VC_INSTINIT2886,75434 -#define P_FUNC2S_Y_VC_LOW_LEVEL_TRACER P_FUNC2S_Y_VC_LOW_LEVEL_TRACER2890,75544 -#define P_FUNC2S_Y_VC_TEST_D0 P_FUNC2S_Y_VC_TEST_D02901,75852 -#define P_FUNC2S_Y_VC_FUNC2S_Y_NVAR_VC P_FUNC2S_Y_VC_FUNC2S_Y_NVAR_VC2906,75985 -#define P_FUNC2S_Y_VC_D0NOATOMIC P_FUNC2S_Y_VC_D0NOATOMIC2909,76063 -#define P_FUNC2S_Y_VC_EQUALS P_FUNC2S_Y_VC_EQUALS2915,76189 -#define P_FUNC2S_Y_VC_D1ISZERO P_FUNC2S_Y_VC_D1ISZERO2925,76449 -#define P_FUNC2S_Y_VC_D0NOATOM1 P_FUNC2S_Y_VC_D0NOATOM12931,76627 -#define P_FUNC2S_Y_VC_D0NOATOM2 P_FUNC2S_Y_VC_D0NOATOM22937,76752 -#define P_FUNC2S_Y_VC_D0ATOM P_FUNC2S_Y_VC_D0ATOM2943,76877 -#define P_FUNC2S_Y_VC_POST_ELSE P_FUNC2S_Y_VC_POST_ELSE2946,76966 -#define P_FUNC2S_Y_VC_IFOK_INIT P_FUNC2S_Y_VC_IFOK_INIT2951,77069 -#define P_FUNC2S_Y_VC_IFOK_IFOK P_FUNC2S_Y_VC_IFOK_IFOK2954,77120 -#define P_FUNC2S_Y_VC_IFOK_NOIF P_FUNC2S_Y_VC_IFOK_NOIF2959,77250 -#define P_FUNC2S_Y_VC_INSIDEWHILE P_FUNC2S_Y_VC_INSIDEWHILE2962,77302 -#define P_FUNC2S_Y_VC_END1 P_FUNC2S_Y_VC_END12966,77375 -#define P_FUNC2S_Y_VC_END2 P_FUNC2S_Y_VC_END22973,77588 -#define P_FUNC2F_XX_INSTINIT P_FUNC2F_XX_INSTINIT2979,77734 -#define P_FUNC2F_XX_LOW_LEVEL_TRACER P_FUNC2F_XX_LOW_LEVEL_TRACER2983,77842 -#define P_FUNC2F_XX_TEST_D0 P_FUNC2F_XX_TEST_D02990,78066 -#define P_FUNC2F_XX_D0APPL P_FUNC2F_XX_D0APPL2995,78186 -#define P_FUNC2F_XX_D0APPL_D1EXTFUNC P_FUNC2F_XX_D0APPL_D1EXTFUNC2998,78252 -#define P_FUNC2F_XX_D0APPL_END P_FUNC2F_XX_D0APPL_END3004,78432 -#define P_FUNC2F_XX_D0PAIR P_FUNC2F_XX_D0PAIR3011,78648 -#define P_FUNC2F_XX_D0NOCOMPOUND P_FUNC2F_XX_D0NOCOMPOUND3017,78815 -#define P_FUNC2F_XX_END P_FUNC2F_XX_END3023,78983 -#define P_FUNC2F_XY_INSTINIT P_FUNC2F_XY_INSTINIT3029,79126 -#define P_FUNC2F_XY_LOW_LEVEL_TRACER P_FUNC2F_XY_LOW_LEVEL_TRACER3033,79234 -#define P_FUNC2F_XY_TEST_D0 P_FUNC2F_XY_TEST_D03040,79458 -#define P_FUNC2F_XY_D0APPL P_FUNC2F_XY_D0APPL3045,79578 -#define P_FUNC2F_XY_D0APPL_D1EXTFUNC P_FUNC2F_XY_D0APPL_D1EXTFUNC3049,79685 -#define P_FUNC2F_XY_D0APPL_END P_FUNC2F_XY_D0APPL_END3055,79863 -#define P_FUNC2F_XY_D0PAIR P_FUNC2F_XY_D0PAIR3061,80075 -#define P_FUNC2F_XY_D0NOCOMPOUND P_FUNC2F_XY_D0NOCOMPOUND3068,80281 -#define P_FUNC2F_XY_END P_FUNC2F_XY_END3075,80488 -#define P_FUNC2F_YX_INSTINIT P_FUNC2F_YX_INSTINIT3081,80631 -#define P_FUNC2F_YX_LOW_LEVEL_TRACER P_FUNC2F_YX_LOW_LEVEL_TRACER3085,80739 -#define P_FUNC2F_YX_TEST_D0 P_FUNC2F_YX_TEST_D03092,80964 -#define P_FUNC2F_YX_D0APPL P_FUNC2F_YX_D0APPL3097,81085 -#define P_FUNC2F_YX_D0APPL_D1EXTFUNC P_FUNC2F_YX_D0APPL_D1EXTFUNC3101,81191 -#define P_FUNC2F_YX_D0APPL_END P_FUNC2F_YX_D0APPL_END3107,81369 -#define P_FUNC2F_YX_D0PAIR P_FUNC2F_YX_D0PAIR3113,81582 -#define P_FUNC2F_YX_D0NOCOMPOUND P_FUNC2F_YX_D0NOCOMPOUND3120,81790 -#define P_FUNC2F_YX_END P_FUNC2F_YX_END3127,81996 -#define P_FUNC2F_YY_INSTINIT P_FUNC2F_YY_INSTINIT3133,82139 -#define P_FUNC2F_YY_LOW_LEVEL_TRACER P_FUNC2F_YY_LOW_LEVEL_TRACER3137,82247 -#define P_FUNC2F_YY_TEST_D0 P_FUNC2F_YY_TEST_D03144,82471 -#define P_FUNC2F_YY_D0APPL P_FUNC2F_YY_D0APPL3148,82565 -#define P_FUNC2F_YY_D0APPL_D1EXTFUNC P_FUNC2F_YY_D0APPL_D1EXTFUNC3153,82713 -#define P_FUNC2F_YY_D0APPL_END P_FUNC2F_YY_D0APPL_END3159,82890 -#define P_FUNC2F_YY_D0PAIR P_FUNC2F_YY_D0PAIR3165,83100 -#define P_FUNC2F_YY_D0NOCOMPOUND P_FUNC2F_YY_D0NOCOMPOUND3173,83345 -#define P_FUNC2F_YY_END P_FUNC2F_YY_END3181,83591 - -JIT/HPP/yaam_put.h,1084 -#define PUT_X_VAR_INSTINIT PUT_X_VAR_INSTINIT1,0 -#define PUT_Y_VAR_INSTINIT PUT_Y_VAR_INSTINIT12,342 -#define PUT_Y_VAR_INSTINIT PUT_Y_VAR_INSTINIT24,788 -#define PUT_X_VAL_INSTINIT PUT_X_VAL_INSTINIT33,1093 -#define PUT_XX_VAL_INSTINIT PUT_XX_VAL_INSTINIT40,1289 -#define PUT_Y_VAL_INSTINIT PUT_Y_VAL_INSTINIT50,1600 -#define PUT_Y_VAL_INSTINIT PUT_Y_VAL_INSTINIT60,1910 -#define PUT_Y_VALS_INSTINIT PUT_Y_VALS_INSTINIT69,2141 -#define PUT_Y_VALS_INSTINIT PUT_Y_VALS_INSTINIT86,2761 -#define PUT_UNSAFE_INSTINIT PUT_UNSAFE_INSTINIT98,3167 -#define PUT_UNSAFE_PUNSAFE_NONVAR PUT_UNSAFE_PUNSAFE_NONVAR104,3309 -#define PUT_UNSAFE_PUNSAFE_UNK PUT_UNSAFE_PUNSAFE_UNK109,3451 -#define PUT_ATOM_INSTINIT PUT_ATOM_INSTINIT124,3818 -#define PUT_DBTERM_INSTINIT PUT_DBTERM_INSTINIT131,4005 -#define PUT_BIGINT_INSTINIT PUT_BIGINT_INSTINIT138,4194 -#define PUT_FLOAT_INSTINIT PUT_FLOAT_INSTINIT145,4383 -#define PUT_LONGINT_INSTINIT PUT_LONGINT_INSTINIT152,4580 -#define PUT_LIST_INSTINIT PUT_LIST_INSTINIT159,4779 -#define PUT_STRUCT_INSTINIT PUT_STRUCT_INSTINIT172,5098 - -JIT/HPP/yaam_put_d.h,1085 -#define PUT_X_VAR_INSTINIT PUT_X_VAR_INSTINIT1,0 -#define PUT_Y_VAR_INSTINIT PUT_Y_VAR_INSTINIT13,391 -#define PUT_Y_VAR_INSTINIT PUT_Y_VAR_INSTINIT26,886 -#define PUT_X_VAL_INSTINIT PUT_X_VAL_INSTINIT36,1240 -#define PUT_XX_VAL_INSTINIT PUT_XX_VAL_INSTINIT44,1485 -#define PUT_Y_VAL_INSTINIT PUT_Y_VAL_INSTINIT55,1845 -#define PUT_Y_VAL_INSTINIT PUT_Y_VAL_INSTINIT66,2204 -#define PUT_Y_VALS_INSTINIT PUT_Y_VALS_INSTINIT76,2484 -#define PUT_Y_VALS_INSTINIT PUT_Y_VALS_INSTINIT94,3153 -#define PUT_UNSAFE_INSTINIT PUT_UNSAFE_INSTINIT107,3608 -#define PUT_UNSAFE_PUNSAFE_NONVAR PUT_UNSAFE_PUNSAFE_NONVAR114,3799 -#define PUT_UNSAFE_PUNSAFE_UNK PUT_UNSAFE_PUNSAFE_UNK119,3941 -#define PUT_ATOM_INSTINIT PUT_ATOM_INSTINIT134,4308 -#define PUT_DBTERM_INSTINIT PUT_DBTERM_INSTINIT142,4544 -#define PUT_BIGINT_INSTINIT PUT_BIGINT_INSTINIT150,4782 -#define PUT_FLOAT_INSTINIT PUT_FLOAT_INSTINIT158,5020 -#define PUT_LONGINT_INSTINIT PUT_LONGINT_INSTINIT166,5266 -#define PUT_LIST_INSTINIT PUT_LIST_INSTINIT174,5514 -#define PUT_STRUCT_INSTINIT PUT_STRUCT_INSTINIT188,5882 - -JIT/HPP/yaam_unify.h,12700 -#define UNIFY_X_VAR_INSTINIT UNIFY_X_VAR_INSTINIT1,0 -#define UNIFY_X_VAR_YAPOR_SBA UNIFY_X_VAR_YAPOR_SBA8,142 -#define UNIFY_X_VAR_END UNIFY_X_VAR_END14,236 -#define UNIFY_X_VAR_WRITE_INSTINIT UNIFY_X_VAR_WRITE_INSTINIT23,492 -#define UNIFY_L_X_VAR_INSTINIT UNIFY_L_X_VAR_INSTINIT35,822 -#define UNIFY_L_X_VAR_YAPOR_SBA UNIFY_L_X_VAR_YAPOR_SBA44,1072 -#define UNIFY_L_X_VAR_END UNIFY_L_X_VAR_END50,1175 -#define UNIFY_L_X_VAR_WRITE_INSTINIT UNIFY_L_X_VAR_WRITE_INSTINIT55,1282 -#define UNIFY_X_VAR2_INSTINIT UNIFY_X_VAR2_INSTINIT68,1655 -#define UNIFY_X_VAR2_YAPOR_SBA UNIFY_X_VAR2_YAPOR_SBA79,1934 -#define UNIFY_X_VAR2_END UNIFY_X_VAR2_END88,2086 -#define UNIFY_X_VAR2_WRITE_INSTINIT UNIFY_X_VAR2_WRITE_INSTINIT97,2330 -#define UNIFY_L_X_VAR2_INSTINIT UNIFY_L_X_VAR2_INSTINIT113,2782 -#define UNIFY_L_X_VAR2_INSTINIT UNIFY_L_X_VAR2_INSTINIT133,3320 -#define UNIFY_L_X_VAR2_WRITE_INSTINIT UNIFY_L_X_VAR2_WRITE_INSTINIT152,3752 -#define UNIFY_Y_VAR_INSTINIT UNIFY_Y_VAR_INSTINIT167,4176 -#define UNIFY_Y_VAR_INSTINIT UNIFY_Y_VAR_INSTINIT176,4450 -#define UNIFY_Y_VAR_WRITE_INSTINIT UNIFY_Y_VAR_WRITE_INSTINIT184,4671 -#define UNIFY_L_Y_VAR_INSTINIT UNIFY_L_Y_VAR_INSTINIT195,4985 -#define UNIFY_L_Y_VAR_INSTINIT UNIFY_L_Y_VAR_INSTINIT204,5257 -#define UNIFY_L_Y_VAR_WRITE_INSTINIT UNIFY_L_Y_VAR_WRITE_INSTINIT212,5480 -#define UNIFY_X_VAL_INSTINIT UNIFY_X_VAL_INSTINIT221,5745 -#define UNIFY_X_VAL_UVALX_NONVAR UNIFY_X_VAL_UVALX_NONVAR227,5882 -#define UNIFY_X_VAL_UVALX_NONVAR_NONVAR UNIFY_X_VAL_UVALX_NONVAR_NONVAR230,5956 -#define UNIFY_X_VAL_UVALX_NONVAR_UNK UNIFY_X_VAL_UVALX_NONVAR_UNK236,6144 -#define UNIFY_X_VAL_UVALX_UNK UNIFY_X_VAL_UVALX_UNK242,6290 -#define UNIFY_X_VAL_UVALX_VAR_NONVAR UNIFY_X_VAL_UVALX_VAR_NONVAR245,6361 -#define UNIFY_X_VAL_UVALX_VAR_UNK UNIFY_X_VAL_UVALX_VAR_UNK251,6514 -#define UNIFY_X_VAL_WRITE_INSTINIT UNIFY_X_VAL_WRITE_INSTINIT257,6675 -#define UNIFY_L_X_VAL_INSTINIT UNIFY_L_X_VAL_INSTINIT262,6822 -#define UNIFY_L_X_VAL_ULVALX_NONVAR UNIFY_L_X_VAL_ULVALX_NONVAR268,6964 -#define UNIFY_L_X_VAL_ULVALX_NONVAR_NONVAR UNIFY_L_X_VAL_ULVALX_NONVAR_NONVAR271,7041 -#define UNIFY_L_X_VAL_ULVALX_NONVAR_UNK UNIFY_L_X_VAL_ULVALX_NONVAR_UNK276,7214 -#define UNIFY_L_X_VAL_ULVALX_UNK UNIFY_L_X_VAL_ULVALX_UNK281,7342 -#define UNIFY_L_X_VAL_ULVALX_VAR_NONVAR UNIFY_L_X_VAL_ULVALX_VAR_NONVAR284,7416 -#define UNIFY_L_X_VAL_ULVALX_VAR_UNK UNIFY_L_X_VAL_ULVALX_VAR_UNK289,7551 -#define UNIFY_L_X_VAL_WRITE_INSTINIT UNIFY_L_X_VAL_WRITE_INSTINIT294,7694 -#define UNIFY_Y_VAL_INSTINIT UNIFY_Y_VAL_INSTINIT299,7842 -#define UNIFY_Y_VAL_UVALY_NONVAR UNIFY_Y_VAL_UVALY_NONVAR305,7980 -#define UNIFY_Y_VAL_UVALY_NONVAR_NONVAR UNIFY_Y_VAL_UVALY_NONVAR_NONVAR309,8074 -#define UNIFY_Y_VAL_UVALY_NONVAR_UNK UNIFY_Y_VAL_UVALY_NONVAR_UNK315,8262 -#define UNIFY_Y_VAL_UVALY_UNK UNIFY_Y_VAL_UVALY_UNK321,8411 -#define UNIFY_Y_VAL_UVALY_VAR_NONVAR UNIFY_Y_VAL_UVALY_VAR_NONVAR325,8502 -#define UNIFY_Y_VAL_UVALY_VAR_UNK UNIFY_Y_VAL_UVALY_VAR_UNK331,8655 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT338,8834 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT348,9127 -#define UNIFY_L_Y_VAL_INSTINIT UNIFY_L_Y_VAL_INSTINIT356,9339 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR362,9478 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR366,9575 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK371,9748 -#define UNIFY_L_Y_VAL_ULVALY_UNK UNIFY_L_Y_VAL_ULVALY_UNK376,9876 -#define UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR380,9970 -#define UNIFY_L_Y_VAL_ULVALY_VAR_UNK UNIFY_L_Y_VAL_ULVALY_VAR_UNK385,10105 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT391,10266 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT401,10560 -#define UNIFY_X_LOC_INSTINIT UNIFY_X_LOC_INSTINIT409,10775 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR UNIFY_X_LOC_UVALX_LOC_NONVAR415,10915 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR_NONVAR UNIFY_X_LOC_UVALX_LOC_NONVAR_NONVAR418,10993 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR_UNK UNIFY_X_LOC_UVALX_LOC_NONVAR_UNK424,11189 -#define UNIFY_X_LOC_UVALX_LOC_UNK UNIFY_X_LOC_UVALX_LOC_UNK430,11339 -#define UNIFY_X_LOC_UVALX_LOC_VAR_NONVAR UNIFY_X_LOC_UVALX_LOC_VAR_NONVAR433,11414 -#define UNIFY_X_LOC_UVALX_LOC_VAR_UNK UNIFY_X_LOC_UVALX_LOC_VAR_UNK439,11571 -#define UNIFY_X_LOC_WRITE_INSTINIT UNIFY_X_LOC_WRITE_INSTINIT445,11725 -#define UNIFY_X_LOC_WRITE_UNIFY_X_LOC_NONVAR UNIFY_X_LOC_WRITE_UNIFY_X_LOC_NONVAR450,11851 -#define UNIFY_X_LOC_WRITE_UNIFY_X_LOC_UNK UNIFY_X_LOC_WRITE_UNIFY_X_LOC_UNK455,11988 -#define UNIFY_L_X_LOC_INSTINIT UNIFY_L_X_LOC_INSTINIT471,12345 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_NONVAR477,12484 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_NONVAR480,12565 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_UNK UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_UNK485,12746 -#define UNIFY_L_X_LOC_ULVALX_LOC_UNK UNIFY_L_X_LOC_ULVALX_LOC_UNK490,12878 -#define UNIFY_L_X_LOC_ULVALX_LOC_VAR_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_VAR_NONVAR493,12956 -#define UNIFY_L_X_LOC_ULVALX_LOC_VAR_UNK UNIFY_L_X_LOC_ULVALX_LOC_VAR_UNK498,13095 -#define UNIFY_L_X_LOC_WRITE_INSTINIT UNIFY_L_X_LOC_WRITE_INSTINIT503,13242 -#define UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_NONVAR UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_NONVAR508,13380 -#define UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_UNK UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_UNK513,13519 -#define UNIFY_Y_LOC_INSTINIT UNIFY_Y_LOC_INSTINIT525,13804 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR531,13941 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR535,14040 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK541,14236 -#define UNIFY_Y_LOC_UVALY_LOC_UNK UNIFY_Y_LOC_UVALY_LOC_UNK547,14386 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR551,14481 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_UNK UNIFY_Y_LOC_UVALY_LOC_VAR_UNK557,14638 -#define UNIFY_Y_LOC_WRITE_INSTINIT UNIFY_Y_LOC_WRITE_INSTINIT563,14792 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR569,14938 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK574,15075 -#define UNIFY_L_Y_LOC_INSTINIT UNIFY_L_Y_LOC_INSTINIT590,15432 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR596,15571 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR600,15672 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK605,15856 -#define UNIFY_L_Y_LOC_ULVALY_LOC_UNK UNIFY_L_Y_LOC_ULVALY_LOC_UNK610,15988 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR614,16086 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK619,16228 -#define UNIFY_L_Y_LOC_WRITE_INSTINIT UNIFY_L_Y_LOC_WRITE_INSTINIT624,16375 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR630,16523 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK635,16663 -#define UNIFY_VOID_INSTINIT UNIFY_VOID_INSTINIT650,16995 -#define UNIFY_VOID_WRITE_INSTINIT UNIFY_VOID_WRITE_INSTINIT657,17160 -#define UNIFY_L_VOID_INSTINIT UNIFY_L_VOID_INSTINIT666,17388 -#define UNIFY_L_VOID_WRITE_INSTINIT UNIFY_L_VOID_WRITE_INSTINIT670,17481 -#define UNIFY_N_VOIDS_INSTINIT UNIFY_N_VOIDS_INSTINIT675,17615 -#define UNIFY_N_VOIDS_WRITE_INSTINIT UNIFY_N_VOIDS_WRITE_INSTINIT680,17749 -#define UNIFY_L_N_VOIDS_INSTINIT UNIFY_L_N_VOIDS_INSTINIT694,18090 -#define UNIFY_L_N_VOIDS_WRITE_INSTINIT UNIFY_L_N_VOIDS_WRITE_INSTINIT698,18187 -#define UNIFY_ATOM_INSTINIT UNIFY_ATOM_INSTINIT711,18499 -#define UNIFY_ATOM_UATOM_NONVAR UNIFY_ATOM_UATOM_NONVAR718,18670 -#define UNIFY_ATOM_UATOM_UNK UNIFY_ATOM_UATOM_UNK729,18925 -#define UNIFY_ATOM_WRITE_INSTINIT UNIFY_ATOM_WRITE_INSTINIT735,19081 -#define UNIFY_L_ATOM_INSTINIT UNIFY_L_ATOM_INSTINIT740,19222 -#define UNIFY_L_ATOM_ULATOM_NONVAR UNIFY_L_ATOM_ULATOM_NONVAR747,19398 -#define UNIFY_L_ATOM_ULATOM_UNK UNIFY_L_ATOM_ULATOM_UNK758,19654 -#define UNIFY_L_ATOM_WRITE_INSTINIT UNIFY_L_ATOM_WRITE_INSTINIT764,19813 -#define UNIFY_N_ATOMS_INSTINIT UNIFY_N_ATOMS_INSTINIT769,19954 -#define UNIFY_N_ATOMS_WRITE_INSTINIT UNIFY_N_ATOMS_WRITE_INSTINIT803,20707 -#define UNIFY_FLOAT_INSTINIT UNIFY_FLOAT_INSTINIT817,21062 -#define UNIFY_FLOAT_UFLOAT_NONVAR_INIT UNIFY_FLOAT_UFLOAT_NONVAR_INIT823,21201 -#define UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR827,21291 -#define UNIFY_FLOAT_UFLOAT_NONVAR_END UNIFY_FLOAT_UFLOAT_NONVAR_END831,21415 -#define UNIFY_FLOAT_UFLOAT_UNK UNIFY_FLOAT_UFLOAT_UNK834,21475 -#define UNIFY_FLOAT_WRITE_INSTINIT UNIFY_FLOAT_WRITE_INSTINIT840,21642 -#define UNIFY_L_FLOAT_INSTINIT UNIFY_L_FLOAT_INSTINIT845,21793 -#define UNIFY_L_FLOAT_D0ISAPPL UNIFY_L_FLOAT_D0ISAPPL852,21951 -#define UNIFY_L_FLOAT_D0ISFUNC UNIFY_L_FLOAT_D0ISFUNC856,22033 -#define UNIFY_L_FLOAT_EQUALS UNIFY_L_FLOAT_EQUALS860,22142 -#define UNIFY_L_FLOAT_ULFLOAT_UNK UNIFY_L_FLOAT_ULFLOAT_UNK863,22196 -#define UNIFY_L_FLOAT_WRITE_INSTINIT UNIFY_L_FLOAT_WRITE_INSTINIT870,22392 -#define UNIFY_LONGINT_INSTINIT UNIFY_LONGINT_INSTINIT875,22543 -#define UNIFY_LONGINT_D0ISAPPL UNIFY_LONGINT_D0ISAPPL881,22684 -#define UNIFY_LONGINT_D0ISFUNC UNIFY_LONGINT_D0ISFUNC885,22766 -#define UNIFY_LONGINT_EQUALS UNIFY_LONGINT_EQUALS889,22875 -#define UNIFY_LONGINT_ULONGINT_UNK UNIFY_LONGINT_ULONGINT_UNK892,22926 -#define UNIFY_LONGINT_WRITE_INSTINIT UNIFY_LONGINT_WRITE_INSTINIT898,23097 -#define UNIFY_L_LONGINT_INSTINIT UNIFY_L_LONGINT_INSTINIT903,23250 -#define UNIFY_L_LONGINT_D0ISAPPL UNIFY_L_LONGINT_D0ISAPPL910,23411 -#define UNIFY_L_LONGINT_D0ISFUNC UNIFY_L_LONGINT_D0ISFUNC914,23495 -#define UNIFY_L_LONGINT_EQUALS UNIFY_L_LONGINT_EQUALS918,23606 -#define UNIFY_L_LONGINT_ULLONGINT_UNK UNIFY_L_LONGINT_ULLONGINT_UNK921,23659 -#define UNIFY_L_LONGINT_WRITE_INSTINIT UNIFY_L_LONGINT_WRITE_INSTINIT927,23836 -#define UNIFY_BIGINT_INSTINIT UNIFY_BIGINT_INSTINIT933,24005 -#define UNIFY_BIGINT_D0ISAPPL UNIFY_BIGINT_D0ISAPPL939,24139 -#define UNIFY_BIGINT_D1ISFUNC_GMP UNIFY_BIGINT_D1ISFUNC_GMP943,24220 -#define UNIFY_BIGINT_UBIGINT_UNK UNIFY_BIGINT_UBIGINT_UNK947,24318 -#define UNIFY_L_BIGINT_INSTINIT UNIFY_L_BIGINT_INSTINIT955,24502 -#define UNIFY_L_BIGINT_D0ISAPPL UNIFY_L_BIGINT_D0ISAPPL962,24656 -#define UNIFY_L_BIGINT_D0ISFUNC_GMP UNIFY_L_BIGINT_D0ISFUNC_GMP966,24739 -#define UNIFY_L_BIGINT_ULBIGINT_UNK UNIFY_L_BIGINT_ULBIGINT_UNK970,24839 -#define UNIFY_DBTERM_INSTINIT UNIFY_DBTERM_INSTINIT978,25033 -#define UNIFY_DBTERM_UDBTERM_NONVAR UNIFY_DBTERM_UDBTERM_NONVAR984,25167 -#define UNIFY_DBTERM_UDBTERM_UNK UNIFY_DBTERM_UDBTERM_UNK990,25361 -#define UNIFY_L_DBTERM_INSTINIT UNIFY_L_DBTERM_INSTINIT996,25521 -#define UNIFY_L_DBTERM_ULDBTERM_NONVAR UNIFY_L_DBTERM_ULDBTERM_NONVAR1003,25678 -#define UNIFY_L_DBTERM_ULDBTERM_UNK UNIFY_L_DBTERM_ULDBTERM_UNK1009,25875 -#define UNIFY_LIST_INSTINIT UNIFY_LIST_INSTINIT1016,26064 -#define UNIFY_LIST_READMODE UNIFY_LIST_READMODE1025,26299 -#define UNIFY_LIST_WRITEMODE UNIFY_LIST_WRITEMODE1037,26570 -#define UNIFY_LIST_WRITE_INSTINIT UNIFY_LIST_WRITE_INSTINIT1051,26925 -#define UNIFY_L_LIST_INSTINIT UNIFY_L_LIST_INSTINIT1067,27331 -#define UNIFY_L_LIST_READMODE UNIFY_L_LIST_READMODE1074,27502 -#define UNIFY_L_LIST_WRITEMODE UNIFY_L_LIST_WRITEMODE1086,27779 -#define UNIFY_L_LIST_WRITE_INSTINIT UNIFY_L_LIST_WRITE_INSTINIT1100,28136 -#define UNIFY_STRUCT_INSTINIT UNIFY_STRUCT_INSTINIT1113,28458 -#define UNIFY_STRUCT_READMODE UNIFY_STRUCT_READMODE1122,28699 -#define UNIFY_STRUCT_WRITEMODE UNIFY_STRUCT_WRITEMODE1144,29198 -#define UNIFY_STRUCT_WRITE_INSTINIT UNIFY_STRUCT_WRITE_INSTINIT1157,29559 -#define UNIFY_L_STRUC_INSTINIT UNIFY_L_STRUC_INSTINIT1174,30034 -#define UNIFY_L_STRUC_READMODE UNIFY_L_STRUC_READMODE1181,30207 -#define UNIFY_L_STRUC_WRITEMODE UNIFY_L_STRUC_WRITEMODE1199,30614 -#define UNIFY_L_STRUC_WRITE_INSTINIT UNIFY_L_STRUC_WRITE_INSTINIT1212,30976 -#define SAVE_PAIR_X_INSTINIT SAVE_PAIR_X_INSTINIT1227,31384 -#define SAVE_PAIR_X_WRITE_INSTINIT SAVE_PAIR_X_WRITE_INSTINIT1232,31530 -#define SAVE_PAIR_Y_INSTINIT SAVE_PAIR_Y_INSTINIT1237,31683 -#define SAVE_PAIR_Y_WRITE_INSTINIT SAVE_PAIR_Y_WRITE_INSTINIT1242,31846 -#define SAVE_APPL_X_INSTINIT SAVE_APPL_X_INSTINIT1247,32016 -#define SAVE_APPL_X_WRITE_INSTINIT SAVE_APPL_X_WRITE_INSTINIT1252,32169 -#define SAVE_APPL_Y_INSTINIT SAVE_APPL_Y_INSTINIT1257,32326 -#define SAVE_APPL_Y_WRITE_INSTINIT SAVE_APPL_Y_WRITE_INSTINIT1262,32491 - -JIT/HPP/yaam_unify_d.h,12717 -#define UNIFY_X_VAR_INSTINIT UNIFY_X_VAR_INSTINIT1,0 -#define UNIFY_X_VAR_YAPOR_SBA UNIFY_X_VAR_YAPOR_SBA9,191 -#define UNIFY_X_VAR_END UNIFY_X_VAR_END15,285 -#define UNIFY_X_VAR_WRITE_INSTINIT UNIFY_X_VAR_WRITE_INSTINIT24,541 -#define UNIFY_L_X_VAR_INSTINIT UNIFY_L_X_VAR_INSTINIT37,920 -#define UNIFY_L_X_VAR_YAPOR_SBA UNIFY_L_X_VAR_YAPOR_SBA47,1219 -#define UNIFY_L_X_VAR_END UNIFY_L_X_VAR_END53,1322 -#define UNIFY_L_X_VAR_WRITE_INSTINIT UNIFY_L_X_VAR_WRITE_INSTINIT58,1429 -#define UNIFY_X_VAR2_INSTINIT UNIFY_X_VAR2_INSTINIT72,1851 -#define UNIFY_X_VAR2_YAPOR_SBA UNIFY_X_VAR2_YAPOR_SBA84,2179 -#define UNIFY_X_VAR2_END UNIFY_X_VAR2_END93,2331 -#define UNIFY_X_VAR2_WRITE_INSTINIT UNIFY_X_VAR2_WRITE_INSTINIT102,2575 -#define UNIFY_L_X_VAR2_INSTINIT UNIFY_L_X_VAR2_INSTINIT119,3076 -#define UNIFY_L_X_VAR2_INSTINIT UNIFY_L_X_VAR2_INSTINIT140,3663 -#define UNIFY_L_X_VAR2_WRITE_INSTINIT UNIFY_L_X_VAR2_WRITE_INSTINIT160,4144 -#define UNIFY_Y_VAR_INSTINIT UNIFY_Y_VAR_INSTINIT176,4617 -#define UNIFY_Y_VAR_INSTINIT UNIFY_Y_VAR_INSTINIT186,4940 -#define UNIFY_Y_VAR_WRITE_INSTINIT UNIFY_Y_VAR_WRITE_INSTINIT195,5210 -#define UNIFY_L_Y_VAR_INSTINIT UNIFY_L_Y_VAR_INSTINIT207,5573 -#define UNIFY_L_Y_VAR_INSTINIT UNIFY_L_Y_VAR_INSTINIT217,5894 -#define UNIFY_L_Y_VAR_WRITE_INSTINIT UNIFY_L_Y_VAR_WRITE_INSTINIT226,6166 -#define UNIFY_X_VAL_INSTINIT UNIFY_X_VAL_INSTINIT236,6480 -#define UNIFY_X_VAL_UVALX_NONVAR UNIFY_X_VAL_UVALX_NONVAR243,6666 -#define UNIFY_X_VAL_UVALX_NONVAR_NONVAR UNIFY_X_VAL_UVALX_NONVAR_NONVAR246,6740 -#define UNIFY_X_VAL_UVALX_NONVAR_UNK UNIFY_X_VAL_UVALX_NONVAR_UNK252,6928 -#define UNIFY_X_VAL_UVALX_UNK UNIFY_X_VAL_UVALX_UNK258,7074 -#define UNIFY_X_VAL_UVALX_VAR_NONVAR UNIFY_X_VAL_UVALX_VAR_NONVAR261,7145 -#define UNIFY_X_VAL_UVALX_VAR_UNK UNIFY_X_VAL_UVALX_VAR_UNK267,7298 -#define UNIFY_X_VAL_WRITE_INSTINIT UNIFY_X_VAL_WRITE_INSTINIT273,7459 -#define UNIFY_L_X_VAL_INSTINIT UNIFY_L_X_VAL_INSTINIT279,7655 -#define UNIFY_L_X_VAL_ULVALX_NONVAR UNIFY_L_X_VAL_ULVALX_NONVAR286,7846 -#define UNIFY_L_X_VAL_ULVALX_NONVAR_NONVAR UNIFY_L_X_VAL_ULVALX_NONVAR_NONVAR289,7923 -#define UNIFY_L_X_VAL_ULVALX_NONVAR_UNK UNIFY_L_X_VAL_ULVALX_NONVAR_UNK294,8096 -#define UNIFY_L_X_VAL_ULVALX_UNK UNIFY_L_X_VAL_ULVALX_UNK299,8224 -#define UNIFY_L_X_VAL_ULVALX_VAR_NONVAR UNIFY_L_X_VAL_ULVALX_VAR_NONVAR302,8298 -#define UNIFY_L_X_VAL_ULVALX_VAR_UNK UNIFY_L_X_VAL_ULVALX_VAR_UNK307,8433 -#define UNIFY_L_X_VAL_WRITE_INSTINIT UNIFY_L_X_VAL_WRITE_INSTINIT312,8576 -#define UNIFY_Y_VAL_INSTINIT UNIFY_Y_VAL_INSTINIT318,8773 -#define UNIFY_Y_VAL_UVALY_NONVAR UNIFY_Y_VAL_UVALY_NONVAR325,8960 -#define UNIFY_Y_VAL_UVALY_NONVAR_NONVAR UNIFY_Y_VAL_UVALY_NONVAR_NONVAR329,9054 -#define UNIFY_Y_VAL_UVALY_NONVAR_UNK UNIFY_Y_VAL_UVALY_NONVAR_UNK335,9242 -#define UNIFY_Y_VAL_UVALY_UNK UNIFY_Y_VAL_UVALY_UNK341,9391 -#define UNIFY_Y_VAL_UVALY_VAR_NONVAR UNIFY_Y_VAL_UVALY_VAR_NONVAR345,9482 -#define UNIFY_Y_VAL_UVALY_VAR_UNK UNIFY_Y_VAL_UVALY_VAR_UNK351,9635 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT358,9814 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT369,10156 -#define UNIFY_L_Y_VAL_INSTINIT UNIFY_L_Y_VAL_INSTINIT378,10417 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR385,10605 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR389,10702 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK394,10875 -#define UNIFY_L_Y_VAL_ULVALY_UNK UNIFY_L_Y_VAL_ULVALY_UNK399,11003 -#define UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR403,11097 -#define UNIFY_L_Y_VAL_ULVALY_VAR_UNK UNIFY_L_Y_VAL_ULVALY_VAR_UNK408,11232 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT414,11393 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT425,11736 -#define UNIFY_X_LOC_INSTINIT UNIFY_X_LOC_INSTINIT434,12000 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR UNIFY_X_LOC_UVALX_LOC_NONVAR441,12189 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR_NONVAR UNIFY_X_LOC_UVALX_LOC_NONVAR_NONVAR444,12267 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR_UNK UNIFY_X_LOC_UVALX_LOC_NONVAR_UNK450,12463 -#define UNIFY_X_LOC_UVALX_LOC_UNK UNIFY_X_LOC_UVALX_LOC_UNK456,12613 -#define UNIFY_X_LOC_UVALX_LOC_VAR_NONVAR UNIFY_X_LOC_UVALX_LOC_VAR_NONVAR459,12688 -#define UNIFY_X_LOC_UVALX_LOC_VAR_UNK UNIFY_X_LOC_UVALX_LOC_VAR_UNK465,12845 -#define UNIFY_X_LOC_WRITE_INSTINIT UNIFY_X_LOC_WRITE_INSTINIT471,12999 -#define UNIFY_X_LOC_WRITE_UNIFY_X_LOC_NONVAR UNIFY_X_LOC_WRITE_UNIFY_X_LOC_NONVAR477,13174 -#define UNIFY_X_LOC_WRITE_UNIFY_X_LOC_UNK UNIFY_X_LOC_WRITE_UNIFY_X_LOC_UNK482,13311 -#define UNIFY_L_X_LOC_INSTINIT UNIFY_L_X_LOC_INSTINIT498,13668 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_NONVAR505,13856 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_NONVAR508,13937 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_UNK UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_UNK513,14118 -#define UNIFY_L_X_LOC_ULVALX_LOC_UNK UNIFY_L_X_LOC_ULVALX_LOC_UNK518,14250 -#define UNIFY_L_X_LOC_ULVALX_LOC_VAR_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_VAR_NONVAR521,14328 -#define UNIFY_L_X_LOC_ULVALX_LOC_VAR_UNK UNIFY_L_X_LOC_ULVALX_LOC_VAR_UNK526,14467 -#define UNIFY_L_X_LOC_WRITE_INSTINIT UNIFY_L_X_LOC_WRITE_INSTINIT531,14614 -#define UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_NONVAR UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_NONVAR537,14801 -#define UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_UNK UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_UNK542,14940 -#define UNIFY_Y_LOC_INSTINIT UNIFY_Y_LOC_INSTINIT554,15225 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR561,15411 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR565,15510 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK571,15706 -#define UNIFY_Y_LOC_UVALY_LOC_UNK UNIFY_Y_LOC_UVALY_LOC_UNK577,15856 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR581,15951 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_UNK UNIFY_Y_LOC_UVALY_LOC_VAR_UNK587,16108 -#define UNIFY_Y_LOC_WRITE_INSTINIT UNIFY_Y_LOC_WRITE_INSTINIT593,16262 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR600,16457 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK605,16594 -#define UNIFY_L_Y_LOC_INSTINIT UNIFY_L_Y_LOC_INSTINIT621,16951 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR628,17139 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR632,17240 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK637,17424 -#define UNIFY_L_Y_LOC_ULVALY_LOC_UNK UNIFY_L_Y_LOC_ULVALY_LOC_UNK642,17556 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR646,17654 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK651,17796 -#define UNIFY_L_Y_LOC_WRITE_INSTINIT UNIFY_L_Y_LOC_WRITE_INSTINIT656,17943 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR663,18140 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK668,18280 -#define UNIFY_VOID_INSTINIT UNIFY_VOID_INSTINIT683,18612 -#define UNIFY_VOID_WRITE_INSTINIT UNIFY_VOID_WRITE_INSTINIT691,18826 -#define UNIFY_L_VOID_INSTINIT UNIFY_L_VOID_INSTINIT701,19103 -#define UNIFY_L_VOID_WRITE_INSTINIT UNIFY_L_VOID_WRITE_INSTINIT706,19245 -#define UNIFY_N_VOIDS_INSTINIT UNIFY_N_VOIDS_INSTINIT712,19428 -#define UNIFY_N_VOIDS_WRITE_INSTINIT UNIFY_N_VOIDS_WRITE_INSTINIT718,19611 -#define UNIFY_L_N_VOIDS_INSTINIT UNIFY_L_N_VOIDS_INSTINIT733,20001 -#define UNIFY_L_N_VOIDS_WRITE_INSTINIT UNIFY_L_N_VOIDS_WRITE_INSTINIT738,20147 -#define UNIFY_ATOM_INSTINIT UNIFY_ATOM_INSTINIT752,20508 -#define UNIFY_ATOM_UATOM_NONVAR UNIFY_ATOM_UATOM_NONVAR760,20728 -#define UNIFY_ATOM_UATOM_UNK UNIFY_ATOM_UATOM_UNK771,20983 -#define UNIFY_ATOM_WRITE_INSTINIT UNIFY_ATOM_WRITE_INSTINIT777,21139 -#define UNIFY_L_ATOM_INSTINIT UNIFY_L_ATOM_INSTINIT783,21329 -#define UNIFY_L_ATOM_ULATOM_NONVAR UNIFY_L_ATOM_ULATOM_NONVAR791,21554 -#define UNIFY_L_ATOM_ULATOM_UNK UNIFY_L_ATOM_ULATOM_UNK802,21810 -#define UNIFY_L_ATOM_WRITE_INSTINIT UNIFY_L_ATOM_WRITE_INSTINIT808,21969 -#define UNIFY_N_ATOMS_INSTINIT UNIFY_N_ATOMS_INSTINIT814,22159 -#define UNIFY_N_ATOMS_WRITE_INSTINIT UNIFY_N_ATOMS_WRITE_INSTINIT849,22961 -#define UNIFY_FLOAT_INSTINIT UNIFY_FLOAT_INSTINIT864,23365 -#define UNIFY_FLOAT_UFLOAT_NONVAR_INIT UNIFY_FLOAT_UFLOAT_NONVAR_INIT871,23553 -#define UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR875,23643 -#define UNIFY_FLOAT_UFLOAT_NONVAR_END UNIFY_FLOAT_UFLOAT_NONVAR_END879,23767 -#define UNIFY_FLOAT_UFLOAT_UNK UNIFY_FLOAT_UFLOAT_UNK882,23827 -#define UNIFY_FLOAT_WRITE_INSTINIT UNIFY_FLOAT_WRITE_INSTINIT888,23994 -#define UNIFY_L_FLOAT_INSTINIT UNIFY_L_FLOAT_INSTINIT894,24194 -#define UNIFY_L_FLOAT_D0ISAPPL UNIFY_L_FLOAT_D0ISAPPL902,24401 -#define UNIFY_L_FLOAT_D0ISFUNC UNIFY_L_FLOAT_D0ISFUNC906,24483 -#define UNIFY_L_FLOAT_EQUALS UNIFY_L_FLOAT_EQUALS910,24592 -#define UNIFY_L_FLOAT_ULFLOAT_UNK UNIFY_L_FLOAT_ULFLOAT_UNK913,24646 -#define UNIFY_L_FLOAT_WRITE_INSTINIT UNIFY_L_FLOAT_WRITE_INSTINIT920,24842 -#define UNIFY_LONGINT_INSTINIT UNIFY_LONGINT_INSTINIT926,25042 -#define UNIFY_LONGINT_D0ISAPPL UNIFY_LONGINT_D0ISAPPL933,25232 -#define UNIFY_LONGINT_D0ISFUNC UNIFY_LONGINT_D0ISFUNC937,25314 -#define UNIFY_LONGINT_EQUALS UNIFY_LONGINT_EQUALS941,25423 -#define UNIFY_LONGINT_ULONGINT_UNK UNIFY_LONGINT_ULONGINT_UNK944,25474 -#define UNIFY_LONGINT_WRITE_INSTINIT UNIFY_LONGINT_WRITE_INSTINIT950,25645 -#define UNIFY_L_LONGINT_INSTINIT UNIFY_L_LONGINT_INSTINIT956,25847 -#define UNIFY_L_LONGINT_D0ISAPPL UNIFY_L_LONGINT_D0ISAPPL964,26057 -#define UNIFY_L_LONGINT_D0ISFUNC UNIFY_L_LONGINT_D0ISFUNC968,26141 -#define UNIFY_L_LONGINT_EQUALS UNIFY_L_LONGINT_EQUALS972,26252 -#define UNIFY_L_LONGINT_ULLONGINT_UNK UNIFY_L_LONGINT_ULLONGINT_UNK975,26305 -#define UNIFY_L_LONGINT_WRITE_INSTINIT UNIFY_L_LONGINT_WRITE_INSTINIT981,26482 -#define UNIFY_BIGINT_INSTINIT UNIFY_BIGINT_INSTINIT988,26700 -#define UNIFY_BIGINT_D0ISAPPL UNIFY_BIGINT_D0ISAPPL995,26883 -#define UNIFY_BIGINT_D1ISFUNC_GMP UNIFY_BIGINT_D1ISFUNC_GMP999,26964 -#define UNIFY_BIGINT_UBIGINT_UNK UNIFY_BIGINT_UBIGINT_UNK1003,27062 -#define UNIFY_L_BIGINT_INSTINIT UNIFY_L_BIGINT_INSTINIT1011,27246 -#define UNIFY_L_BIGINT_D0ISAPPL UNIFY_L_BIGINT_D0ISAPPL1019,27449 -#define UNIFY_L_BIGINT_D0ISFUNC_GMP UNIFY_L_BIGINT_D0ISFUNC_GMP1023,27532 -#define UNIFY_L_BIGINT_ULBIGINT_UNK UNIFY_L_BIGINT_ULBIGINT_UNK1027,27632 -#define UNIFY_DBTERM_INSTINIT UNIFY_DBTERM_INSTINIT1035,27826 -#define UNIFY_DBTERM_UDBTERM_NONVAR UNIFY_DBTERM_UDBTERM_NONVAR1042,28009 -#define UNIFY_DBTERM_UDBTERM_UNK UNIFY_DBTERM_UDBTERM_UNK1048,28203 -#define UNIFY_L_DBTERM_INSTINIT UNIFY_L_DBTERM_INSTINIT1054,28363 -#define UNIFY_L_DBTERM_ULDBTERM_NONVAR UNIFY_L_DBTERM_ULDBTERM_NONVAR1062,28569 -#define UNIFY_L_DBTERM_ULDBTERM_UNK UNIFY_L_DBTERM_ULDBTERM_UNK1068,28766 -#define UNIFY_LIST_INSTINIT UNIFY_LIST_INSTINIT1075,28955 -#define UNIFY_LIST_READMODE UNIFY_LIST_READMODE1085,29239 -#define UNIFY_LIST_WRITEMODE UNIFY_LIST_WRITEMODE1097,29510 -#define UNIFY_LIST_WRITE_INSTINIT UNIFY_LIST_WRITE_INSTINIT1111,29865 -#define UNIFY_L_LIST_INSTINIT UNIFY_L_LIST_INSTINIT1128,30320 -#define UNIFY_L_LIST_READMODE UNIFY_L_LIST_READMODE1136,30540 -#define UNIFY_L_LIST_WRITEMODE UNIFY_L_LIST_WRITEMODE1148,30817 -#define UNIFY_L_LIST_WRITE_INSTINIT UNIFY_L_LIST_WRITE_INSTINIT1162,31174 -#define UNIFY_STRUCT_INSTINIT UNIFY_STRUCT_INSTINIT1176,31545 -#define UNIFY_STRUCT_READMODE UNIFY_STRUCT_READMODE1186,31835 -#define UNIFY_STRUCT_WRITEMODE UNIFY_STRUCT_WRITEMODE1208,32334 -#define UNIFY_STRUCT_WRITE_INSTINIT UNIFY_STRUCT_WRITE_INSTINIT1221,32695 -#define UNIFY_L_STRUC_INSTINIT UNIFY_L_STRUC_INSTINIT1239,33219 -#define UNIFY_L_STRUC_READMODE UNIFY_L_STRUC_READMODE1247,33441 -#define UNIFY_L_STRUC_WRITEMODE UNIFY_L_STRUC_WRITEMODE1265,33848 -#define UNIFY_L_STRUC_WRITE_INSTINIT UNIFY_L_STRUC_WRITE_INSTINIT1278,34210 -#define SAVE_PAIR_X_INSTINIT SAVE_PAIR_X_INSTINIT1294,34667 -#define SAVE_PAIR_X_WRITE_INSTINIT SAVE_PAIR_X_WRITE_INSTINIT1300,34862 -#define SAVE_PAIR_Y_INSTINIT SAVE_PAIR_Y_INSTINIT1306,35064 -#define SAVE_PAIR_Y_WRITE_INSTINIT SAVE_PAIR_Y_WRITE_INSTINIT1312,35276 -#define SAVE_APPL_X_INSTINIT SAVE_APPL_X_INSTINIT1318,35495 -#define SAVE_APPL_X_WRITE_INSTINIT SAVE_APPL_X_WRITE_INSTINIT1324,35697 -#define SAVE_APPL_Y_INSTINIT SAVE_APPL_Y_INSTINIT1330,35903 -#define SAVE_APPL_Y_WRITE_INSTINIT SAVE_APPL_Y_WRITE_INSTINIT1336,36117 - -JIT/HPP/yaam_write.h,1723 -#define WRITE_X_VAR_INSTINIT WRITE_X_VAR_INSTINIT1,0 -#define WRITE_VOID_INSTINIT WRITE_VOID_INSTINIT8,201 -#define WRITE_N_VOIDS_INSTINIT WRITE_N_VOIDS_INSTINIT14,348 -#define WRITE_Y_VAR_INSTINIT WRITE_Y_VAR_INSTINIT24,589 -#define WRITE_X_VAL_INSTINIT WRITE_X_VAL_INSTINIT31,807 -#define WRITE_X_LOC_INSTINIT WRITE_X_LOC_INSTINIT38,990 -#define WRITE_X_LOC_W_X_BOUND WRITE_X_LOC_W_X_BOUND44,1153 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK50,1304 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK62,1591 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK77,1991 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK89,2258 -#define WRITE_Y_VAL_INSTINIT WRITE_Y_VAL_INSTINIT105,2636 -#define WRITE_Y_VAL_INSTINIT WRITE_Y_VAL_INSTINIT115,2919 -#define WRITE_Y_LOC_INSTINIT WRITE_Y_LOC_INSTINIT123,3121 -#define WRITE_Y_LOC_W_Y_BOUND WRITE_Y_LOC_W_Y_BOUND129,3263 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK136,3455 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK151,3818 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK169,4294 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK183,4631 -#define WRITE_ATOM_INSTINIT WRITE_ATOM_INSTINIT200,5062 -#define WRITE_BIGINT_INSTINIT WRITE_BIGINT_INSTINIT207,5238 -#define WRITE_DBTERM_INSTINIT WRITE_DBTERM_INSTINIT214,5416 -#define WRITE_FLOAT_INSTINIT WRITE_FLOAT_INSTINIT221,5594 -#define WRITE_LONGIT_INSTINIT WRITE_LONGIT_INSTINIT228,5780 -#define WRITE_N_ATOMS_INSTINIT WRITE_N_ATOMS_INSTINIT235,5967 -#define WRITE_LIST_INSTINIT WRITE_LIST_INSTINIT245,6219 -#define WRITE_L_LIST_INSTINIT WRITE_L_LIST_INSTINIT257,6510 -#define WRITE_STRUCT_INSTINIT WRITE_STRUCT_INSTINIT271,6863 -#define WRITE_L_STRUC_INSTINIT WRITE_L_STRUC_INSTINIT286,7251 - -JIT/HPP/yaam_write_d.h,1725 -#define WRITE_X_VAR_INSTINIT WRITE_X_VAR_INSTINIT1,0 -#define WRITE_VOID_INSTINIT WRITE_VOID_INSTINIT9,250 -#define WRITE_N_VOIDS_INSTINIT WRITE_N_VOIDS_INSTINIT16,446 -#define WRITE_Y_VAR_INSTINIT WRITE_Y_VAR_INSTINIT27,736 -#define WRITE_X_VAL_INSTINIT WRITE_X_VAL_INSTINIT35,1003 -#define WRITE_X_LOC_INSTINIT WRITE_X_LOC_INSTINIT43,1235 -#define WRITE_X_LOC_W_X_BOUND WRITE_X_LOC_W_X_BOUND50,1447 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK56,1598 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK68,1885 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK83,2285 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK95,2552 -#define WRITE_Y_VAL_INSTINIT WRITE_Y_VAL_INSTINIT111,2930 -#define WRITE_Y_VAL_INSTINIT WRITE_Y_VAL_INSTINIT122,3262 -#define WRITE_Y_LOC_INSTINIT WRITE_Y_LOC_INSTINIT131,3513 -#define WRITE_Y_LOC_W_Y_BOUND WRITE_Y_LOC_W_Y_BOUND138,3704 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK145,3896 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK160,4259 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK178,4735 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK192,5072 -#define WRITE_ATOM_INSTINIT WRITE_ATOM_INSTINIT209,5503 -#define WRITE_BIGINT_INSTINIT WRITE_BIGINT_INSTINIT217,5728 -#define WRITE_DBTERM_INSTINIT WRITE_DBTERM_INSTINIT225,5955 -#define WRITE_FLOAT_INSTINIT WRITE_FLOAT_INSTINIT233,6182 -#define WRITE_LONGIT_INSTINIT WRITE_LONGIT_INSTINIT241,6417 -#define WRITE_N_ATOMS_INSTINIT WRITE_N_ATOMS_INSTINIT249,6653 -#define WRITE_LIST_INSTINIT WRITE_LIST_INSTINIT260,6954 -#define WRITE_L_LIST_INSTINIT WRITE_L_LIST_INSTINIT273,7294 -#define WRITE_STRUCT_INSTINIT WRITE_STRUCT_INSTINIT288,7696 -#define WRITE_L_STRUC_INSTINIT WRITE_L_STRUC_INSTINIT304,8133 - -JIT/HPP/Yap_AppliedBasicBlocks.h,0 - -JIT/HPP/Yap_BasicBlocks.h,0 - -JIT/jit_analysispreds.c,1408 -#define N_ANALYSIS_PASSES N_ANALYSIS_PASSES21,748 -#define JIT_CODE JIT_CODE81,2937 -p_disable_analysis_pass( USES_REGS1 )p_disable_analysis_pass84,2968 -p_analysis_pass( USES_REGS1 )p_analysis_pass186,8494 -p_enable_analysis_pass( USES_REGS1 )p_enable_analysis_pass274,13881 -p_analysis_passes( USES_REGS1 )p_analysis_passes280,13974 -p_enable_all_analysis_passes( USES_REGS1 )p_enable_all_analysis_passes420,21544 -p_disable_all_analysis_passes( USES_REGS1 )p_disable_all_analysis_passes439,22237 -p_enable_stats( USES_REGS1 )p_enable_stats449,22501 -p_enable_time_passes( USES_REGS1 )p_enable_time_passes456,22604 -p_enable_module_correctness( USES_REGS1 )p_enable_module_correctness463,22717 -p_enable_module_correctness1( USES_REGS1 )p_enable_module_correctness1470,22843 -p_verify_module_nopoint( USES_REGS1 )p_verify_module_nopoint504,23988 -p_verify_module_before( USES_REGS1 )p_verify_module_before512,24162 -p_verify_module_after( USES_REGS1 )p_verify_module_after520,24333 -p_verify_module_both( USES_REGS1 )p_verify_module_both528,24501 -p_disable_stats( USES_REGS1 )p_disable_stats536,24666 -p_disable_time_passes( USES_REGS1 )p_disable_time_passes543,24770 -p_disable_module_correctness( USES_REGS1 )p_disable_module_correctness550,24884 -p_analysis_output_file( USES_REGS1 )p_analysis_output_file557,25013 -Yap_InitJitAnalysisPreds(void)Yap_InitJitAnalysisPreds596,26471 - -JIT/jit_codegenpreds.c,2621 -p_enable_framepointer_elimination( USES_REGS1 )p_enable_framepointer_elimination74,3091 -p_more_precise_fp_mad_option( USES_REGS1 )p_more_precise_fp_mad_option81,3244 -p_excess_fp_precision( USES_REGS1 )p_excess_fp_precision88,3396 -p_safe_fp_math( USES_REGS1 )p_safe_fp_math95,3538 -p_rounding_mode_not_changed( USES_REGS1 )p_rounding_mode_not_changed102,3666 -p_no_use_soft_float( USES_REGS1 )p_no_use_soft_float109,3833 -p_disable_jit_exception_handling( USES_REGS1 )p_disable_jit_exception_handling116,3966 -p_disable_jit_emit_debug_info( USES_REGS1 )p_disable_jit_emit_debug_info123,4120 -p_disable_jit_emit_debug_info_to_disk( USES_REGS1 )p_disable_jit_emit_debug_info_to_disk130,4267 -p_no_guaranteed_tail_call_opt( USES_REGS1 )p_no_guaranteed_tail_call_opt137,4428 -p_enable_tail_calls( USES_REGS1 )p_enable_tail_calls144,4580 -p_disable_fast_isel( USES_REGS1 )p_disable_fast_isel151,4717 -p_disable_framepointer_elimination( USES_REGS1 )p_disable_framepointer_elimination158,4846 -p_less_precise_fp_mad_option( USES_REGS1 )p_less_precise_fp_mad_option165,4999 -p_no_excess_fp_precision( USES_REGS1 )p_no_excess_fp_precision172,5150 -p_unsafe_fp_math( USES_REGS1 )p_unsafe_fp_math179,5294 -p_rounding_mode_dynamically_changed( USES_REGS1 )p_rounding_mode_dynamically_changed186,5423 -p_use_soft_float( USES_REGS1 )p_use_soft_float193,5597 -p_enable_jit_exception_handling( USES_REGS1 )p_enable_jit_exception_handling200,5726 -p_enable_jit_emit_debug_info( USES_REGS1 )p_enable_jit_emit_debug_info207,5878 -p_enable_jit_emit_debug_info_to_disk( USES_REGS1 )p_enable_jit_emit_debug_info_to_disk214,6023 -p_guaranteed_tail_call_opt( USES_REGS1 )p_guaranteed_tail_call_opt221,6182 -p_disable_tail_calls( USES_REGS1 )p_disable_tail_calls228,6330 -p_enable_fast_isel( USES_REGS1 )p_enable_fast_isel235,6467 -p_fp_abitype( USES_REGS1 )p_fp_abitype242,6594 -p_default_fp_abitype( USES_REGS1 )p_default_fp_abitype288,8028 -p_engine_opt_level( USES_REGS1 )p_engine_opt_level295,8158 -p_reset_engine_opt_level( USES_REGS1 )p_reset_engine_opt_level342,9691 -p_relocmodel( USES_REGS1 )p_relocmodel349,9831 -p_reset_relocmodel( USES_REGS1 )p_reset_relocmodel396,11335 -p_codemodel( USES_REGS1 )p_codemodel403,11465 -p_reset_codemodel( USES_REGS1 )p_reset_codemodel452,13076 -p_enable_mcjit( USES_REGS1 )p_enable_mcjit459,13204 -p_disable_mcjit( USES_REGS1 )p_disable_mcjit466,13328 -p_register_allocator( USES_REGS1 )p_register_allocator473,13453 -p_reset_register_allocator( USES_REGS1 )p_reset_register_allocator520,15072 -Yap_InitJitCodegenPreds( void )Yap_InitJitCodegenPreds529,15251 - -JIT/JIT_Compiler.cpp,997 -#define FREE_ALLOCATED(FREE_ALLOCATED19,422 -#define ADD_PASS_ACCORDING_TO_KIND(ADD_PASS_ACCORDING_TO_KIND27,581 -#define TREAT_CASE_FOR(TREAT_CASE_FOR49,1225 -void JIT_Compiler::analyze_module(llvm::Module* &M)analyze_module54,1407 -void JIT_Compiler::analyze_module(llvm::Module* &M)JIT_Compiler::analyze_module54,1407 -void JIT_Compiler::optimize_module(llvm::Module* &M)optimize_module223,7789 -void JIT_Compiler::optimize_module(llvm::Module* &M)JIT_Compiler::optimize_module223,7789 -void JIT_Compiler::set_regalloc_pass(PassManager &PM) {set_regalloc_pass509,18308 -void JIT_Compiler::set_regalloc_pass(PassManager &PM) {JIT_Compiler::set_regalloc_pass509,18308 -void* JIT_Compiler::compile_all(LLVMContext* &Context, yamop* p)compile_all527,18869 -void* JIT_Compiler::compile_all(LLVMContext* &Context, yamop* p)JIT_Compiler::compile_all527,18869 -void* JIT_Compiler::compile(yamop* p) {compile917,31327 -void* JIT_Compiler::compile(yamop* p) {JIT_Compiler::compile917,31327 - -JIT/jit_configpreds.c,1088 -#define JIT_CODE JIT_CODE18,700 -p_execution_mode( USES_REGS1 )p_execution_mode82,2884 -p_interpreted_mode( USES_REGS1 )p_interpreted_mode222,7956 -p_smartjit_mode( USES_REGS1 )p_smartjit_mode247,9036 -p_continuouscompilation_mode( USES_REGS1 )p_continuouscompilation_mode278,10305 -p_justcompiled_mode( USES_REGS1 )p_justcompiled_mode315,12201 -p_frequencyty1( USES_REGS1 )p_frequencyty1342,13419 -p_frequencyty2( USES_REGS1 )p_frequencyty2389,15134 -p_frequency_bound( USES_REGS1 )p_frequency_bound461,17761 -p_profiling_start_point( USES_REGS1 )p_profiling_start_point507,19313 -p_main_clause_ty( USES_REGS1 )p_main_clause_ty538,20258 -p_compilation_threads( USES_REGS1 )p_compilation_threads633,23690 -p_enable_recompilation( USES_REGS1 )p_enable_recompilation686,25771 -p_disable_recompilation( USES_REGS1 )p_disable_recompilation693,25878 -p_only_profiled_interpreter( USES_REGS1 )p_only_profiled_interpreter700,25986 -p_noonly_profiled_interpreter( USES_REGS1 )p_noonly_profiled_interpreter707,26096 -Yap_InitJitConfigPreds( void )Yap_InitJitConfigPreds716,26230 - -JIT/jit_debugpreds.c,9795 -#define JIT_CODE JIT_CODE18,684 -p_no_print_instruction( USES_REGS1 )p_no_print_instruction129,6204 - #define OPCODE(OPCODE143,6618 - #undef OPCODEOPCODE154,7196 -p_no_print_basic_instruction( USES_REGS1 )p_no_print_basic_instruction179,7875 -p_no_print_std_instruction( USES_REGS1 )p_no_print_std_instruction185,7969 -p_no_print_standard_instruction( USES_REGS1 )p_no_print_standard_instruction191,8061 -p_print_instruction( USES_REGS1 )p_print_instruction197,8158 - #define OPCODE(OPCODE211,8571 - #undef OPCODEOPCODE225,9288 -p_print_basic_instruction( USES_REGS1 )p_print_basic_instruction250,9943 -p_print_std_instruction( USES_REGS1 )p_print_std_instruction256,10031 -p_print_standard_instruction( USES_REGS1 )p_print_standard_instruction262,10117 -p_print_instruction_msg_before( USES_REGS1 )p_print_instruction_msg_before268,10208 - #define OPCODE(OPCODE293,11032 - #undef OPCODEOPCODE307,11768 -p_print_basic_instruction_msg_before( USES_REGS1 )p_print_basic_instruction_msg_before332,12511 -p_print_std_instruction_msg_before( USES_REGS1 )p_print_std_instruction_msg_before338,12621 -p_print_standard_instruction_msg_before( USES_REGS1 )p_print_standard_instruction_msg_before344,12729 -p_print_instruction_msg_after( USES_REGS1 )p_print_instruction_msg_after350,12842 - #define OPCODE(OPCODE375,13661 - #undef OPCODEOPCODE390,14463 -p_print_basic_instruction_msg_after( USES_REGS1 )p_print_basic_instruction_msg_after415,15198 -p_print_std_instruction_msg_after( USES_REGS1 )p_print_std_instruction_msg_after421,15306 -p_print_standard_instruction_msg_after( USES_REGS1 )p_print_standard_instruction_msg_after427,15412 -p_print_instruction3( USES_REGS1 )p_print_instruction3433,15523 - #define OPCODE(OPCODE469,16649 - #undef OPCODEOPCODE484,17470 -p_print_basic_instruction3( USES_REGS1 )p_print_basic_instruction3509,18125 -p_print_std_instruction3( USES_REGS1 )p_print_std_instruction3515,18215 -p_print_standard_instruction3( USES_REGS1 )p_print_standard_instruction3521,18303 -p_print_profiled_instruction( USES_REGS1 )p_print_profiled_instruction527,18396 - #define OPCODE(OPCODE541,18818 - #undef OPCODEOPCODE555,19553 -p_print_traced_instruction( USES_REGS1 )p_print_traced_instruction580,20170 -p_print_pfd_instruction( USES_REGS1 )p_print_pfd_instruction586,20268 -p_print_profiled_instruction_msg_before( USES_REGS1 )p_print_profiled_instruction_msg_before592,20363 - #define OPCODE(OPCODE617,21166 - #undef OPCODEOPCODE631,21920 -p_print_traced_instruction_msg_before( USES_REGS1 )p_print_traced_instruction_msg_before656,22603 -p_print_pfd_instruction_msg_before( USES_REGS1 )p_print_pfd_instruction_msg_before662,22723 -p_print_profiled_instruction_msg_after( USES_REGS1 )p_print_profiled_instruction_msg_after668,22840 - #define OPCODE(OPCODE693,23639 - #undef OPCODEOPCODE708,24459 -p_print_traced_instruction_msg_after( USES_REGS1 )p_print_traced_instruction_msg_after733,25136 -p_print_pfd_instruction_msg_after( USES_REGS1 )p_print_pfd_instruction_msg_after739,25254 -p_print_profiled_instruction3( USES_REGS1 )p_print_profiled_instruction3745,25369 - #define OPCODE(OPCODE781,26464 - #undef OPCODEOPCODE796,27303 -p_print_traced_instruction3( USES_REGS1 )p_print_traced_instruction3821,27918 -p_print_pfd_instruction3( USES_REGS1 )p_print_pfd_instruction3827,28018 -p_print_native_instruction( USES_REGS1 )p_print_native_instruction833,28115 - #define OPCODE(OPCODE847,28535 - #undef OPCODEOPCODE861,29242 -p_print_ntv_instruction( USES_REGS1 )p_print_ntv_instruction886,29801 -p_print_native_instruction_msg_before( USES_REGS1 )p_print_native_instruction_msg_before892,29894 - #define OPCODE(OPCODE917,30655 - #undef OPCODEOPCODE931,31381 -p_print_ntv_instruction_msg_before( USES_REGS1 )p_print_ntv_instruction_msg_before956,31984 -p_print_native_instruction_msg_after( USES_REGS1 )p_print_native_instruction_msg_after962,32099 - #define OPCODE(OPCODE987,32857 - #undef OPCODEOPCODE1002,33649 -p_print_ntv_instruction_msg_after( USES_REGS1 )p_print_ntv_instruction_msg_after1027,34248 -p_print_native_instruction3( USES_REGS1 )p_print_native_instruction31033,34361 - #define OPCODE(OPCODE1069,35398 - #undef OPCODEOPCODE1084,36209 -p_print_ntv_instruction3( USES_REGS1 )p_print_ntv_instruction31109,36768 -p_no_print_basic_block( USES_REGS1 )p_no_print_basic_block1115,36863 - #define BBLOCK(BBLOCK1129,37279 - #undef BBLOCKBBLOCK1140,37856 -p_no_print_basicblock( USES_REGS1 )p_no_print_basicblock1165,38431 -p_no_print_bb( USES_REGS1 )p_no_print_bb1171,38518 -p_print_basic_block( USES_REGS1 )p_print_basic_block1177,38597 - #define BBLOCK(BBLOCK1191,39010 - #undef BBLOCKBBLOCK1205,39786 -p_print_basicblock( USES_REGS1 )p_print_basicblock1230,40343 -p_print_bb( USES_REGS1 )p_print_bb1236,40424 -p_print_basic_block_msg_before( USES_REGS1 )p_print_basic_block_msg_before1242,40497 - #define BBLOCK(BBLOCK1267,41261 - #undef BBLOCKBBLOCK1281,42037 -p_print_basicblock_msg_before( USES_REGS1 )p_print_basicblock_msg_before1306,42660 -p_print_bb_msg_before( USES_REGS1 )p_print_bb_msg_before1312,42763 -p_print_basic_block_msg_after( USES_REGS1 )p_print_basic_block_msg_after1318,42858 - #define BBLOCK(BBLOCK1343,43618 - #undef BBLOCKBBLOCK1357,44394 -p_print_basicblock_msg_after( USES_REGS1 )p_print_basicblock_msg_after1382,45011 -p_print_bb_msg_after( USES_REGS1 )p_print_bb_msg_after1388,45112 -p_print_basic_block3( USES_REGS1 )p_print_basic_block31394,45205 - #define BBLOCK(BBLOCK1430,46233 - #undef BBLOCKBBLOCK1444,47009 -p_print_basicblock3( USES_REGS1 )p_print_basicblock31469,47566 -p_print_bb3( USES_REGS1 )p_print_bb31475,47649 -p_print_native_basic_block( USES_REGS1 )p_print_native_basic_block1481,47724 - #define BBLOCK(BBLOCK1491,48026 - #undef BBLOCKBBLOCK1501,48577 - #define BBLOCK(BBLOCK1518,49047 - #undef BBLOCKBBLOCK1532,49747 -p_print_native_basicblock( USES_REGS1 )p_print_native_basicblock1557,50346 -p_print_native_bb( USES_REGS1 )p_print_native_bb1563,50441 -p_print_native_basic_block_msg_before( USES_REGS1 )p_print_native_basic_block_msg_before1569,50528 - #define BBLOCK(BBLOCK1594,51320 - #undef BBLOCKBBLOCK1608,52020 -p_print_native_basicblock_msg_before( USES_REGS1 )p_print_native_basicblock_msg_before1633,52685 -p_print_native_bb_msg_before( USES_REGS1 )p_print_native_bb_msg_before1639,52802 -p_print_native_basic_block_msg_after( USES_REGS1 )p_print_native_basic_block_msg_after1645,52911 - #define BBLOCK(BBLOCK1670,53699 - #undef BBLOCKBBLOCK1684,54399 -p_print_native_basicblock_msg_after( USES_REGS1 )p_print_native_basicblock_msg_after1709,55058 -p_print_native_bb_msg_after( USES_REGS1 )p_print_native_bb_msg_after1715,55173 -p_print_native_basic_block3( USES_REGS1 )p_print_native_basic_block31721,55280 - #define BBLOCK(BBLOCK1757,56357 - #undef BBLOCKBBLOCK1771,57057 -p_print_native_basicblock3( USES_REGS1 )p_print_native_basicblock31796,57656 -p_print_native_bb3( USES_REGS1 )p_print_native_bb31802,57753 -p_no_print_clause( USES_REGS1 )p_no_print_clause1808,57842 -p_print_clause( USES_REGS1 )p_print_clause1819,58322 -p_no_print_intermediate( USES_REGS1 )p_no_print_intermediate1886,61253 -p_print_intermediate( USES_REGS1 )p_print_intermediate1898,61788 -p_print_intermediate_to_std( USES_REGS1 )p_print_intermediate_to_std1907,62073 -p_print_intermediate_to_std1( USES_REGS1 )p_print_intermediate_to_std11916,62365 -p_print_intermediate_to_file( USES_REGS1 )p_print_intermediate_to_file1941,63133 -p_print_intermediate_to_file1( USES_REGS1 )p_print_intermediate_to_file11953,63557 -p_no_print_llva( USES_REGS1 )p_no_print_llva1971,64135 -p_print_llva_before( USES_REGS1 )p_print_llva_before1979,64307 -p_print_llva_after( USES_REGS1 )p_print_llva_after1986,64428 -p_no_print_me( USES_REGS1 )p_no_print_me1993,64547 -p_print_me( USES_REGS1 )p_print_me2045,66705 -p_default_debug( USES_REGS1 )p_default_debug2135,70745 - #define OPCODE(OPCODE2137,70777 - #undef OPCODEOPCODE2142,70992 - #define BBLOCK(BBLOCK2144,71009 - #undef BBLOCKBBLOCK2149,71221 -p_print_default_predicate_msgs( USES_REGS1 )p_print_default_predicate_msgs2190,72939 -p_print_all_predicate_msgs( USES_REGS1 )p_print_all_predicate_msgs2200,73242 -p_print_info_predicate_msgs( USES_REGS1 )p_print_info_predicate_msgs2210,73541 -p_print_success_predicate_msgs( USES_REGS1 )p_print_success_predicate_msgs2217,73669 -p_print_warning_predicate_msgs( USES_REGS1 )p_print_warning_predicate_msgs2224,73803 -p_print_error_predicate_msgs( USES_REGS1 )p_print_error_predicate_msgs2231,73937 -p_no_print_all_predicate_msgs( USES_REGS1 )p_no_print_all_predicate_msgs2238,74067 -p_no_print_info_predicate_msgs( USES_REGS1 )p_no_print_info_predicate_msgs2248,74369 -p_no_print_success_predicate_msgs( USES_REGS1 )p_no_print_success_predicate_msgs2255,74500 -p_no_print_warning_predicate_msgs( USES_REGS1 )p_no_print_warning_predicate_msgs2262,74637 -p_no_print_error_predicate_msgs( USES_REGS1 )p_no_print_error_predicate_msgs2269,74774 -p_print_predicate_msgs( USES_REGS1 )p_print_predicate_msgs2276,74907 -p_exit_on_warning( USES_REGS1 )p_exit_on_warning2336,76772 -p_disable_on_warning( USES_REGS1 )p_disable_on_warning2343,76899 -p_exit_on_error( USES_REGS1 )p_exit_on_error2350,77032 -p_no_exit_on_warning( USES_REGS1 )p_no_exit_on_warning2357,77155 -p_enable_on_warning( USES_REGS1 )p_enable_on_warning2364,77285 -p_no_exit_on_error( USES_REGS1 )p_no_exit_on_error2371,77417 -Yap_InitJitDebugPreds( void )Yap_InitJitDebugPreds2382,77573 - -JIT/JIT_Init.cpp,403 -extern "C" void* (*Yap_JitCall)(JIT_Compiler* jc, yamop* p);Yap_JitCall21,516 -extern "C" void (* Yap_llvmShutdown)( ) ;Yap_llvmShutdown22,577 -extern "C" void* call_JIT_Compiler(JIT_Compiler* jc, yamop* p) {call_JIT_Compiler27,680 -extern "C" void shutdown_llvm() { llvm_shutdown(); }shutdown_llvm30,773 -#define JIT_CODE JIT_CODE34,859 -initJit(void)initJit37,891 -init_jit() {init_jit56,1269 - -JIT/JIT_interface.cpp,54162 -#define AMIJIT_H_AMIJIT_H_9,89 - e_createAAEvalPass, //Exhaustive Alias Analysis Precision Evaluatore_createAAEvalPass14,181 - e_createAliasAnalysisCounterPass, //Count Alias Analysis Query Responsese_createAliasAnalysisCounterPass15,251 - e_createBasicAliasAnalysisPass, //Basic Alias Analysis (stateless AA impl)e_createBasicAliasAnalysisPass16,326 - e_createCFGOnlyPrinterPass, //Print CFG of function to 'dot' file (with no function bodies)e_createCFGOnlyPrinterPass17,403 - e_createCFGPrinterPass, //Print CFG of function to 'dot' filee_createCFGPrinterPass18,497 - e_createDbgInfoPrinterPass, //Print debug info in human readable forme_createDbgInfoPrinterPass19,561 - e_createDomOnlyPrinterPass, //Print dominance tree of function to 'dot' file (with no function bodies)e_createDomOnlyPrinterPass20,633 - e_createDomPrinterPass, //Print dominance tree of function to 'dot' filee_createDomPrinterPass21,738 - e_createGlobalsModRefPass, //Simple mod/ref analysis for globalse_createGlobalsModRefPass22,813 - e_createInstCountPass, //Counts the various types of Instructionse_createInstCountPass23,880 - e_createIVUsersPass, //Induction Variable Userse_createIVUsersPass24,948 - e_createLazyValueInfoPass, //Lazy Value Information Analysise_createLazyValueInfoPass25,998 - e_createLibCallAliasAnalysisPass, //LibCall Alias Analysise_createLibCallAliasAnalysisPass26,1061 - e_createLintPass, //Statically lint-checks LLVM IRe_createLintPass27,1122 - e_createLoopDependenceAnalysisPass, //Loop Dependence Analysise_createLoopDependenceAnalysisPass28,1175 - e_createMemDepPrinter, //Memory Dependence Analysise_createMemDepPrinter29,1240 - e_createModuleDebugInfoPrinterPass, //Decodes module-level debug infoe_createModuleDebugInfoPrinterPass30,1294 - e_createNoAAPass, //No Alias Analysis (always returns 'may' alias)e_createNoAAPass31,1366 - e_createNoPathProfileInfoPass, //No Path Profile Informatione_createNoPathProfileInfoPass32,1435 - e_createNoProfileInfoPass, //No Profile Informatione_createNoProfileInfoPass33,1498 - e_createObjCARCAliasAnalysisPass, //ObjC-ARC-Based Alias Analysise_createObjCARCAliasAnalysisPass34,1552 - e_createPathProfileLoaderPass, //Loads information from a path profile dump filee_createPathProfileLoaderPass35,1620 - e_createPathProfileVerifierPass, //Verifies path profiling informatione_createPathProfileVerifierPass36,1703 - e_createPostDomOnlyPrinterPass, //Print postdominance tree of function to 'dot' file (with no function bodies)e_createPostDomOnlyPrinterPass37,1776 - e_createPostDomPrinterPass, //Print postdominance tree of function to 'dot' filee_createPostDomPrinterPass38,1889 - e_createProfileEstimatorPass, //Estimate profiling informatione_createProfileEstimatorPass39,1972 - e_createProfileLoaderPass, //Load profile information from llvmprof.oute_createProfileLoaderPass40,2037 - e_createProfileVerifierPass, //Verify profiling informatione_createProfileVerifierPass41,2111 - e_createRegionInfoPass, //Detect single entry single exit regionse_createRegionInfoPass42,2173 - e_createRegionOnlyPrinterPass, //Print regions of function to 'dot' file (with no function bodies)e_createRegionOnlyPrinterPass43,2241 - e_createRegionPrinterPass, //Print regions of function to 'dot' filee_createRegionPrinterPass44,2342 - e_createScalarEvolutionAliasAnalysisPass, //ScalarEvolution-based Alias Analysise_createScalarEvolutionAliasAnalysisPass45,2413 - e_createTypeBasedAliasAnalysisPass //Type-Based Alias Analysise_createTypeBasedAliasAnalysisPass46,2496 -} enumAnalysisPasses;enumAnalysisPasses47,2561 - t_createAggressiveDCEPass, //This pass uses the SSA based Aggressive DCE algorithmt_createAggressiveDCEPass51,2645 - t_createArgumentPromotionPass, //Promotes "by reference" arguments to be passed by value if the number of elements passed is smaller or equal to maxElementt_createArgumentPromotionPass52,2730 - t_createBBVectorizePass, //A basic-block vectorization passt_createBBVectorizePass53,2888 - t_createBlockExtractorPass, //Extracts all blocks (except those specified in the argument list) from the functions in the modulet_createBlockExtractorPass54,2950 - t_createBlockPlacementPass, //This pass reorders basic blocks in order to increase the number of fall-through conditional branchest_createBlockPlacementPass55,3081 - t_createBreakCriticalEdgesPass, //Break all of the critical edges in the CFG by inserting a dummy basic blockt_createBreakCriticalEdgesPass56,3214 - t_createCFGSimplificationPass, //Merge basic blocks, eliminate unreachable blocks, simplify terminator instructions, etc...t_createCFGSimplificationPass57,3326 - t_createCodeGenPreparePass, //Prepares a function for instruction selectiont_createCodeGenPreparePass58,3452 - t_createConstantMergePass, //Returns a new pass that merges duplicate global constants together into a single constant that is sharedt_createConstantMergePass59,3530 - t_createConstantPropagationPass, //A worklist driven constant propagation passt_createConstantPropagationPass60,3666 - t_createCorrelatedValuePropagationPass, //Propagate CFG-derived value informationt_createCorrelatedValuePropagationPass61,3747 - t_createDeadArgEliminationPass, //This pass removes arguments from functions which are not used by the body of the functiont_createDeadArgEliminationPass62,3831 - t_createDeadArgHackingPass, //Same as DAE, but delete arguments of external functions as wellt_createDeadArgHackingPass63,3957 - t_createDeadCodeEliminationPass, //This pass is more powerful than DeadInstEliminationt_createDeadCodeEliminationPass64,4053 - t_createDeadInstEliminationPass, //Removes trivially dead instructions without modifying the CFG of the functiont_createDeadInstEliminationPass65,4142 - t_createDeadStoreEliminationPass, //Deletes stores that are post-dominated by must-aliased stores and are not loaded used between the storest_createDeadStoreEliminationPass66,4257 - t_createDemoteRegisterToMemoryPass, //This pass is used to demote registers to memory referencest_createDemoteRegisterToMemoryPass67,4400 - t_createEarlyCSEPass, //This pass performs a simple and fast CSE pass over the dominator treet_createEarlyCSEPass68,4499 - t_createFunctionAttrsPass, //Discovers functions that do not access memory, or only read memory, and gives them the readnone/readonly attributet_createFunctionAttrsPass69,4595 - t_createFunctionInliningPass,t_createFunctionInliningPass70,4741 - t_createGlobalDCEPass, //This transform is designed to eliminate unreachable internal globals (functions or global variables)t_createGlobalDCEPass71,4773 - t_createGlobalOptimizerPass, //Returns a new pass that optimizes non-address taken internal globalst_createGlobalOptimizerPass72,4901 - t_createGVExtractionPass, //Deletes as much of the module as possible, except for the global values specifiedt_createGVExtractionPass73,5003 - t_createGVNPass, //Performs global value numbering and redundant load elimination cotemporaneouslyt_createGVNPass74,5115 - t_createIndVarSimplifyPass, //Transform induction variables in a program to all use a single canonical induction variable per loopt_createIndVarSimplifyPass75,5216 - t_createInstructionCombiningPass, //Combine instructions to form fewer, simple instructionst_createInstructionCombiningPass76,5349 - t_createInstructionNamerPass, //Give any unnamed non-void instructions "tmp" namest_createInstructionNamerPass77,5443 - t_createInstructionSimplifierPass, //Remove redundant instructionst_createInstructionSimplifierPass78,5528 - t_createInternalizePass, //Loops over all of the functions in the input module, internalizing all globalst_createInternalizePass79,5597 - t_createIPConstantPropagationPass, //Propagates constants from call sites into the bodies of functionst_createIPConstantPropagationPass80,5705 - t_createIPSCCPPass, //Propagates constants from call sites into the bodies of functions, and keeps track of whether basic blocks are executable in the processt_createIPSCCPPass81,5810 - t_createJumpThreadingPass, //Thread control through mult-pred/multi-succ blocks where some preds always go to some succt_createJumpThreadingPass82,5971 - t_createLCSSAPass, //This pass inserts phi nodes at loop boundaries to simplify other loop optimizationst_createLCSSAPass83,6093 - t_createLICMPass, //Loop invariant code motion and memory promotion passt_createLICMPass84,6200 - t_createLoopDeletionPass, //Performs DCE of non-infinite loops that it can prove are deadt_createLoopDeletionPass85,6275 - t_createLoopExtractorPass, //Extracts all natural loops from the program into a function if it cant_createLoopExtractorPass86,6367 - t_createLoopIdiomPass, //Recognizes and replaces idioms in loopst_createLoopIdiomPass87,6468 - t_createLoopInstSimplifyPass, //Simplifies instructions in a loop's bodyt_createLoopInstSimplifyPass88,6535 - t_createLoopRotatePass, //Simple loop rotating passt_createLoopRotatePass89,6610 - t_createLoopSimplifyPass, //Insert Pre-header blocks into the CFG for every function in the modulet_createLoopSimplifyPass90,6664 - t_createLoopStrengthReducePass, //This pass is strength reduces GEP instructions that use a loop's canonical induction variable as one of their indicest_createLoopStrengthReducePass91,6765 - t_createLoopUnrollPass, //Simple loop unrolling passt_createLoopUnrollPass92,6919 - t_createLoopUnswitchPass, //Simple loop unswitching passt_createLoopUnswitchPass93,6974 - t_createLowerAtomicPass, //Lower atomic intrinsics to non-atomic formt_createLowerAtomicPass94,7033 - t_createLowerExpectIntrinsicPass, //Removes llvm.expect intrinsics and creates "block_weights" metadatat_createLowerExpectIntrinsicPass95,7105 - t_createLowerInvokePass, //Converts invoke and unwind instructions to use sjlj exception handling mechanismst_createLowerInvokePass96,7211 - t_createLowerSwitchPass, //Converts SwitchInst instructions into a sequence of chained binary branch instructionst_createLowerSwitchPass97,7322 - t_createMemCpyOptPass, //Performs optimizations related to eliminating memcpy calls and/or combining multiple stores into memset'st_createMemCpyOptPass98,7438 - t_createMergeFunctionsPass, //Discovers identical functions and collapses themt_createMergeFunctionsPass99,7571 - t_createObjCARCAPElimPass, //ObjC ARC autorelease pool eliminationt_createObjCARCAPElimPass100,7652 - t_createObjCARCContractPass, //Late ObjC ARC cleanupst_createObjCARCContractPass101,7721 - t_createObjCARCExpandPass, //ObjC ARC preliminary simplificationst_createObjCARCExpandPass102,7777 - t_createObjCARCOptPass, //ObjC ARC optimizationt_createObjCARCOptPass103,7845 - t_createPartialInliningPass, //Inlines parts of functionst_createPartialInliningPass104,7895 - t_createPromoteMemoryToRegisterPass, //This pass is used to promote memory references to be register referencest_createPromoteMemoryToRegisterPass105,7955 - t_createPruneEHPass, //Return a new pass object which transforms invoke instructions into calls, if the callee can _no t_ unwind the stackt_createPruneEHPass106,8069 - t_createReassociatePass, //This pass reassociates commutative expressions in an order that is designed to promote better constant propagation, GCSE, LICM, PRE...t_createReassociatePass107,8211 - t_createScalarReplAggregatesPass, //Break up alloca's of aggregates into multiple allocas if possible.t_createScalarReplAggregatesPass108,8375 - t_createSCCPPass, //Sparse conditional constant propagationt_createSCCPPass109,8480 - t_createSimplifyLibCallsPass, //Optimizes specific calls to specific well-known (library) functionst_createSimplifyLibCallsPass110,8542 - t_createSingleLoopExtractorPass, //Extracts one natural loop from the program into a function if it cant_createSingleLoopExtractorPass111,8644 - t_createSinkingPass, //Code Sinkingt_createSinkingPass112,8750 - t_createStripDeadDebugInfoPass, //Removes unused symbols' debug infot_createStripDeadDebugInfoPass113,8788 - t_createStripDeadPrototypesPass, //Removes any function declarations (prototypes) that are not usedt_createStripDeadPrototypesPass114,8859 - t_createStripDebugDeclarePass, //Removes llvm.dbg.declare intrinsicst_createStripDebugDeclarePass115,8961 - t_createStripNonDebugSymbolsPass, //Strips symbols from functions and modulest_createStripNonDebugSymbolsPass116,9032 - t_createStripSymbolsPass, //Removes symbols from functions and modulest_createStripSymbolsPass117,9112 - t_createTailCallEliminationPass //Eliminates call instructions to the current function which occur immediately before return instructionst_createTailCallEliminationPass118,9185 -} enumTransformPasses;enumTransformPasses119,9325 - NOPOINT, // no point -- module will not be verifiedNOPOINT123,9422 - BEFORE, // before optimize -- module will be verified before transform passesBEFORE124,9476 - AFTER, // after optimize -- module will be verified after transform passesAFTER125,9557 - BOTH // both -- module will be verified both before and after transform passesBOTH126,9636 -} enumPointToVerifiy;enumPointToVerifiy127,9721 - JUST_INTERPRETED,JUST_INTERPRETED131,9807 - SMART_JIT,SMART_JIT132,9827 - CONTINUOUS_COMPILATION,CONTINUOUS_COMPILATION133,9840 - JUST_COMPILEDJUST_COMPILED134,9866 -} enumExecModes;enumExecModes135,9882 - NO_FREQ, // without frequency (used on 'JUST_INTERPRETED' and 'JUST_COMPILED' modes)NO_FREQ139,9984 - COUNTER, // unity countersCOUNTER140,10071 - TIME // unity execution timesTIME141,10100 -} enumFrequencyType;enumFrequencyType142,10136 - UNUSED, // not usedUNUSED146,10239 - JUST_HOT, // enumFrequencyType associated to clause must reach thresholdJUST_HOT147,10270 - HOT_AND_CALLEE, // JUST_HOT + clause must contain a callee opcode (fcall or call)HOT_AND_CALLEE148,10352 - HOT_AND_GREATER, // JUST_HOT + clause size must be greater than othersHOT_AND_GREATER149,10437 - HOT_AND_FEWER // JUST_HOT + clause's backtracks must be smaller than othersHOT_AND_FEWER150,10510 -} enumMainClauseType;enumMainClauseType151,10591 - REG_ALLOC_BASIC, // BasicREG_ALLOC_BASIC155,10687 - REG_ALLOC_FAST, // FastREG_ALLOC_FAST156,10716 - REG_ALLOC_GREEDY, // GreedyREG_ALLOC_GREEDY157,10744 - REG_ALLOC_PBQP // PBQPREG_ALLOC_PBQP158,10774 -} enumRegAllocator;enumRegAllocator159,10802 - NO_PLACE = 0, // no placeNO_PLACE165,10951 - ON_INTERPRETER = 1, // on interpreted opcodesON_INTERPRETER166,10995 - ON_PROFILED_INTERPRETER = 2, // on profiled opcodesON_PROFILED_INTERPRETER167,11053 - ON_NATIVE = 4 // on native codeON_NATIVE168,11108 -} enumPlace;enumPlace169,11158 -typedef struct printt_struc {printt_struc173,11283 - Int print; // Should I print?print174,11313 - Int print; // Should I print?printt_struc::print174,11313 - CELL msg_before; // If I print, what message should come before?msg_before175,11350 - CELL msg_before; // If I print, what message should come before?printt_struc::msg_before175,11350 - CELL msg_after; // If I print, what message should come after?msg_after176,11416 - CELL msg_after; // If I print, what message should come after?printt_struc::msg_after176,11416 -} PrinttStruc;PrinttStruc177,11481 -typedef struct environment {environment181,11564 - CELL outfile; // Where will analysis results be printed?outfile184,11712 - CELL outfile; // Where will analysis results be printed?environment::__anon257::outfile184,11712 - Int stats_enabled; // Should llvm stats be printed on 'shutdown_llvm()'?stats_enabled185,11773 - Int stats_enabled; // Should llvm stats be printed on 'shutdown_llvm()'?environment::__anon257::stats_enabled185,11773 - Int time_pass_enabled; // Should llvm time passes be printed on 'shutdown_llvm()'?time_pass_enabled186,11850 - Int time_pass_enabled; // Should llvm time passes be printed on 'shutdown_llvm()'?environment::__anon257::time_pass_enabled186,11850 - enumPointToVerifiy pointtoverifymodule; // What point of code will llvm modules be verified?pointtoverifymodule187,11937 - enumPointToVerifiy pointtoverifymodule; // What point of code will llvm modules be verified?environment::__anon257::pointtoverifymodule187,11937 - COUNT n; // Number of elements on 'act_an'n188,12034 - COUNT n; // Number of elements on 'act_an'environment::__anon257::n188,12034 - enumAnalysisPasses *act_an; // List of analysis passesact_an189,12081 - enumAnalysisPasses *act_an; // List of analysis passesenvironment::__anon257::act_an189,12081 - } analysis_struc;analysis_struc190,12140 - } analysis_struc;environment::analysis_struc190,12140 - Int optlevel; // Optimization level -- 'act_tr' only will be used if 'optlevel' is '-1'optlevel194,12283 - Int optlevel; // Optimization level -- 'act_tr' only will be used if 'optlevel' is '-1'environment::__anon258::optlevel194,12283 - COUNT n; // Number of elements on 'act_tr'n195,12375 - COUNT n; // Number of elements on 'act_tr'environment::__anon258::n195,12375 - enumTransformPasses *act_tr; // List of transform passesact_tr196,12422 - enumTransformPasses *act_tr; // List of transform passesenvironment::__anon258::act_tr196,12422 - CELL arg_promotion_max_elements; // Max elements on 'Argument Promotion Pass'arg_promotion_max_elements198,12496 - CELL arg_promotion_max_elements; // Max elements on 'Argument Promotion Pass'environment::__anon258::__anon259::arg_promotion_max_elements198,12496 - CELL strip_symbols_pass_type; // Argument for 'Strip Symbols Pass' -- if true, only debugging information is removed from the modulestrip_symbols_pass_type199,12580 - CELL strip_symbols_pass_type; // Argument for 'Strip Symbols Pass' -- if true, only debugging information is removed from the moduleenvironment::__anon258::__anon259::strip_symbols_pass_type199,12580 - CELL scalar_replace_aggregates_threshold; // Threshold for 'Scalar Repl Aggregates Pass'scalar_replace_aggregates_threshold200,12722 - CELL scalar_replace_aggregates_threshold; // Threshold for 'Scalar Repl Aggregates Pass'environment::__anon258::__anon259::scalar_replace_aggregates_threshold200,12722 - CELL loop_unswitch_optimize_for_size; // Argument for 'Loop Unswitch Pass' -- Should I optimize for size?loop_unswitch_optimize_for_size201,12817 - CELL loop_unswitch_optimize_for_size; // Argument for 'Loop Unswitch Pass' -- Should I optimize for size?environment::__anon258::__anon259::loop_unswitch_optimize_for_size201,12817 - CELL loop_unroll_threshold; // Threshold for 'Loop Unroll Pass'loop_unroll_threshold202,12929 - CELL loop_unroll_threshold; // Threshold for 'Loop Unroll Pass'environment::__anon258::__anon259::loop_unroll_threshold202,12929 - CELL inline_threshold; // Threshold for 'Function Inlining Pass'inline_threshold203,12999 - CELL inline_threshold; // Threshold for 'Function Inlining Pass'environment::__anon258::__anon259::inline_threshold203,12999 - } opt_args;opt_args204,13070 - } opt_args;environment::__anon258::opt_args204,13070 - Int unit_at_time_enabled; // Should I enable IPO?unit_at_time_enabled205,13086 - Int unit_at_time_enabled; // Should I enable IPO?environment::__anon258::unit_at_time_enabled205,13086 - Int simplify_libcalls_enabled; // Should I simplify libcalls?simplify_libcalls_enabled206,13140 - Int simplify_libcalls_enabled; // Should I simplify libcalls?environment::__anon258::simplify_libcalls_enabled206,13140 - Int enabled; // Should I enable link-time optimizations?enabled208,13219 - Int enabled; // Should I enable link-time optimizations?environment::__anon258::__anon260::enabled208,13219 - CELL internalize; // Should I run 'Internalize Pass' on link-time optimization?internalize209,13282 - CELL internalize; // Should I run 'Internalize Pass' on link-time optimization?environment::__anon258::__anon260::internalize209,13282 - CELL runinliner; // Should I run 'Inline Pass' on link-time optimization?runinliner210,13368 - CELL runinliner; // Should I run 'Inline Pass' on link-time optimization?environment::__anon258::__anon260::runinliner210,13368 - } link_time_opt;link_time_opt211,13448 - } link_time_opt;environment::__anon258::link_time_opt211,13448 - } transform_struc;transform_struc212,13469 - } transform_struc;environment::transform_struc212,13469 - Int noframepointerelim; // Should I use frame pointer elimination opt?noframepointerelim217,13620 - Int noframepointerelim; // Should I use frame pointer elimination opt?environment::__anon261::__anon262::noframepointerelim217,13620 - Int lessprecisefpmadoption; // Should I allow to generate multiply add if the result is "less precise"?lessprecisefpmadoption218,13697 - Int lessprecisefpmadoption; // Should I allow to generate multiply add if the result is "less precise"?environment::__anon261::__anon262::lessprecisefpmadoption218,13697 - Int noexcessfpprecision; // Should I enable excess fp precision?noexcessfpprecision219,13807 - Int noexcessfpprecision; // Should I enable excess fp precision?environment::__anon261::__anon262::noexcessfpprecision219,13807 - Int unsafefpmath; // Should I allow to produce results that are "less precise" than IEEE allows?unsafefpmath220,13878 - Int unsafefpmath; // Should I allow to produce results that are "less precise" than IEEE allows?environment::__anon261::__anon262::unsafefpmath220,13878 - Int honorsigndependentroundingfpmathoption; // Which rounding mode should I use?honorsigndependentroundingfpmathoption221,13981 - Int honorsigndependentroundingfpmathoption; // Which rounding mode should I use?environment::__anon261::__anon262::honorsigndependentroundingfpmathoption221,13981 - Int usesoftfloat; // Should I use libcalls or FP instructions to treat floating point libraries?usesoftfloat222,14068 - Int usesoftfloat; // Should I use libcalls or FP instructions to treat floating point libraries?environment::__anon261::__anon262::usesoftfloat222,14068 - Int jitexceptionhandling; // Should JIT emit exception handling info?jitexceptionhandling223,14171 - Int jitexceptionhandling; // Should JIT emit exception handling info?environment::__anon261::__anon262::jitexceptionhandling223,14171 - Int jitemitdebuginfo; // Should JIT emit debug information?jitemitdebuginfo224,14247 - Int jitemitdebuginfo; // Should JIT emit debug information?environment::__anon261::__anon262::jitemitdebuginfo224,14247 - Int jitemitdebuginfotodisk; // Should JIT write debug information to disk?jitemitdebuginfotodisk225,14313 - Int jitemitdebuginfotodisk; // Should JIT write debug information to disk?environment::__anon261::__anon262::jitemitdebuginfotodisk225,14313 - Int guaranteedtailcallopt; // Should I perform tail call optimization on calls which use fastcc calling convention?guaranteedtailcallopt226,14394 - Int guaranteedtailcallopt; // Should I perform tail call optimization on calls which use fastcc calling convention?environment::__anon261::__anon262::guaranteedtailcallopt226,14394 - Int disabletailcalls; // Should I use tail calls?disabletailcalls227,14516 - Int disabletailcalls; // Should I use tail calls?environment::__anon261::__anon262::disabletailcalls227,14516 - Int fastisel; // Should I use 'fast-path instruction selection' to reduce compilation time? If 'yes' native code won't have best qualityfastisel228,14572 - Int fastisel; // Should I use 'fast-path instruction selection' to reduce compilation time? If 'yes' native code won't have best qualityenvironment::__anon261::__anon262::fastisel228,14572 - Int floatabitype; /* 0 = Default, 1 = Soft, 2 = Hard */floatabitype229,14715 - Int floatabitype; /* 0 = Default, 1 = Soft, 2 = Hard */environment::__anon261::__anon262::floatabitype229,14715 - } struc_targetopt;struc_targetopt230,14777 - } struc_targetopt;environment::__anon261::struc_targetopt230,14777 - Int engineoptlevel; /* 0 = None, 1 = Less, 2 = Default, 3 = Agressive */engineoptlevel232,14813 - Int engineoptlevel; /* 0 = None, 1 = Less, 2 = Default, 3 = Agressive */environment::__anon261::__anon263::engineoptlevel232,14813 - Int relocmodel; /* 0 = Default, 1 = Static, 2 = PIC, 3 = DynamicNoPIC */relocmodel233,14892 - Int relocmodel; /* 0 = Default, 1 = Static, 2 = PIC, 3 = DynamicNoPIC */environment::__anon261::__anon263::relocmodel233,14892 - Int codemodel; /* 0 = Default, 1 = JITDefault, 2 = Small, 3 = Kernel, 4 = Medium, 5 = Large */codemodel234,14971 - Int codemodel; /* 0 = Default, 1 = JITDefault, 2 = Small, 3 = Kernel, 4 = Medium, 5 = Large */environment::__anon261::__anon263::codemodel234,14971 - Int usemcjit; // Should I use MC-JIT implementation (experimental)?usemcjit235,15072 - Int usemcjit; // Should I use MC-JIT implementation (experimental)?environment::__anon261::__anon263::usemcjit235,15072 - enumRegAllocator regallocator; // Active register allocator (predicate register_allocator/1)regallocator236,15146 - enumRegAllocator regallocator; // Active register allocator (predicate register_allocator/1)environment::__anon261::__anon263::regallocator236,15146 - } struc_enginebuilder;struc_enginebuilder237,15245 - } struc_enginebuilder;environment::__anon261::struc_enginebuilder237,15245 - } codegen_struc;codegen_struc238,15272 - } codegen_struc;environment::codegen_struc238,15272 - enumExecModes execution_mode; // Active execution modeexecution_mode242,15419 - enumExecModes execution_mode; // Active execution modeenvironment::__anon264::execution_mode242,15419 - enumFrequencyType frequency_type; // Active frequency typefrequency_type243,15478 - enumFrequencyType frequency_type; // Active frequency typeenvironment::__anon264::frequency_type243,15478 - Float frequency_bound; // Bound to become clauses as hotfrequency_bound244,15541 - Float frequency_bound; // Bound to become clauses as hotenvironment::__anon264::frequency_bound244,15541 - Float profiling_startp; // Bound to init monitoring and trace buildingprofiling_startp245,15602 - Float profiling_startp; // Bound to init monitoring and trace buildingenvironment::__anon264::profiling_startp245,15602 - enumMainClauseType mainclause_ty; // Types of clauses that can be head on tracesmainclause_ty246,15677 - enumMainClauseType mainclause_ty; // Types of clauses that can be head on tracesenvironment::__anon264::mainclause_ty246,15677 - COUNT ncores; // Number of cores on processor -- used to determine default 'compilation_threads' (compilation_threads = ncores - 1)ncores247,15762 - COUNT ncores; // Number of cores on processor -- used to determine default 'compilation_threads' (compilation_threads = ncores - 1)environment::__anon264::ncores247,15762 - COUNT compilation_threads; // Number of compilation threads (used only if 'execution_mode' is 'CONTINUOUS_COMPILATION')compilation_threads248,15898 - COUNT compilation_threads; // Number of compilation threads (used only if 'execution_mode' is 'CONTINUOUS_COMPILATION')environment::__anon264::compilation_threads248,15898 - pthread_t* threaded_compiler_threads; // List of threads (size = 'compilation_threads'). Used by function 'pthread_create'. Used on 'CONTINUOUS_COMPILATION' modethreaded_compiler_threads249,16022 - pthread_t* threaded_compiler_threads; // List of threads (size = 'compilation_threads'). Used by function 'pthread_create'. Used on 'CONTINUOUS_COMPILATION' modeenvironment::__anon264::threaded_compiler_threads249,16022 - CELL* posthreads; // Used to determine which threads are free/busyposthreads250,16188 - CELL* posthreads; // Used to determine which threads are free/busyenvironment::__anon264::posthreads250,16188 - Int torecompile; // Should I recompile traces?torecompile251,16259 - Int torecompile; // Should I recompile traces?environment::__anon264::torecompile251,16259 - Int current_displacement; // Jump displacement to run yaam opcodes on absmi. Zero is the default value and will make standard yaam opcodes are executed. 'TOTAL_OF_OPCODES' is the value after any clause become critical and will make 'traced_' yaam opcodes are executed.current_displacement252,16310 - Int current_displacement; // Jump displacement to run yaam opcodes on absmi. Zero is the default value and will make standard yaam opcodes are executed. 'TOTAL_OF_OPCODES' is the value after any clause become critical and will make 'traced_' yaam opcodes are executed.environment::__anon264::current_displacement252,16310 - COUNT TOTAL_OF_OPCODES; // Total of yaam opcodes. I must determine this dynamically due to several '#define' statements. Used to determine 'current_displacement' after any clause become critical.TOTAL_OF_OPCODES253,16583 - COUNT TOTAL_OF_OPCODES; // Total of yaam opcodes. I must determine this dynamically due to several '#define' statements. Used to determine 'current_displacement' after any clause become critical.environment::__anon264::TOTAL_OF_OPCODES253,16583 - Int useonlypi; // Execute only 'traced_' yaam opcodes. Don't compile. WARNING: if you enable this field (predicate only_profiled_interpreter/0), the system performance will decrease considerably. Use only to determine the actual cost of running such opcodes.useonlypi254,16783 - Int useonlypi; // Execute only 'traced_' yaam opcodes. Don't compile. WARNING: if you enable this field (predicate only_profiled_interpreter/0), the system performance will decrease considerably. Use only to determine the actual cost of running such opcodes.environment::__anon264::useonlypi254,16783 - } config_struc;config_struc255,17046 - } config_struc;environment::config_struc255,17046 - int papi_initialized; // Was PAPI initialized? Used on predicate 'statistics_jit/0' -- if 1, PAPI results will be emittedpapi_initialized260,17206 - int papi_initialized; // Was PAPI initialized? Used on predicate 'statistics_jit/0' -- if 1, PAPI results will be emittedenvironment::__anon265::papi_initialized260,17206 - int papi_eventset; // PAPI event setpapi_eventset261,17332 - int papi_eventset; // PAPI event setenvironment::__anon265::papi_eventset261,17332 - long long *papi_values; // List of collected performance counter valuespapi_values262,17373 - long long *papi_values; // List of collected performance counter valuesenvironment::__anon265::papi_values262,17373 - short *papi_valid_values; // List of performance counters that will be collectedpapi_valid_values263,17449 - short *papi_valid_values; // List of performance counters that will be collectedenvironment::__anon265::papi_valid_values263,17449 - int papi_event_type; // Type of event that will be collected -- 'papi_event_type' involves what performance counters will be within 'papi_valid_values'papi_event_type264,17534 - int papi_event_type; // Type of event that will be collected -- 'papi_event_type' involves what performance counters will be within 'papi_valid_values'environment::__anon265::papi_event_type264,17534 - } stats_struc;stats_struc265,17690 - } stats_struc;environment::stats_struc265,17690 - #define OPCODE(OPCODE272,17925 - #undef OPCODEOPCODE275,18018 - #define BBLOCK(BBLOCK278,18118 - #undef BBLOCKBBLOCK281,18210 - PrinttStruc pmainclause_on_head;pmainclause_on_head284,18321 - PrinttStruc pmainclause_on_head;environment::__anon266::pmainclause_on_head284,18321 - Int print_to_std; // Should intermediate code be printed on std (stdout, stderr)? Default:: print_to_std = 0 (don't print to stdout nor stderr)print_to_std288,18415 - Int print_to_std; // Should intermediate code be printed on std (stdout, stderr)? Default:: print_to_std = 0 (don't print to stdout nor stderr)environment::__anon266::__anon267::print_to_std288,18415 - Int print_to_file; // Should intermediate code be printed on file? Default:: print_to_file = 0 (don't print to file)print_to_file289,18565 - Int print_to_file; // Should intermediate code be printed on file? Default:: print_to_file = 0 (don't print to file)environment::__anon266::__anon267::print_to_file289,18565 - CELL std_name; // if 'print_to_std' = 'yes', where should intermediate code be printed?std_name290,18688 - CELL std_name; // if 'print_to_std' = 'yes', where should intermediate code be printed?environment::__anon266::__anon267::std_name290,18688 - CELL file_name; // if 'print_to_file' = 'yes', what file should intermediate code be printed?file_name291,18782 - CELL file_name; // if 'print_to_file' = 'yes', what file should intermediate code be printed?environment::__anon266::__anon267::file_name291,18782 - } pprint_intermediate;pprint_intermediate292,18882 - } pprint_intermediate;environment::__anon266::pprint_intermediate292,18882 - Int print_llva_before; // Should llva code be printed before optimizing module?print_llva_before296,18959 - Int print_llva_before; // Should llva code be printed before optimizing module?environment::__anon266::__anon268::print_llva_before296,18959 - Int print_llva_after; // Shoud llva code be printed after optimizing module?print_llva_after297,19045 - Int print_llva_after; // Shoud llva code be printed after optimizing module?environment::__anon266::__anon268::print_llva_after297,19045 - } pprint_llva;pprint_llva298,19128 - } pprint_llva;environment::__anon266::pprint_llva298,19128 - CELL interpreted_backtrack; // msg to print when backtrack on standard yaam opcodes occurinterpreted_backtrack302,19203 - CELL interpreted_backtrack; // msg to print when backtrack on standard yaam opcodes occurenvironment::__anon266::__anon269::interpreted_backtrack302,19203 - CELL profiled_interpreted_backtrack; // msg to print when backtrack on 'traced_' yaam opcodes occurprofiled_interpreted_backtrack303,19299 - CELL profiled_interpreted_backtrack; // msg to print when backtrack on 'traced_' yaam opcodes occurenvironment::__anon266::__anon269::profiled_interpreted_backtrack303,19299 - CELL native_backtrack; // msg to print when backtrack on native code occurnative_backtrack304,19405 - CELL native_backtrack; // msg to print when backtrack on native code occurenvironment::__anon266::__anon269::native_backtrack304,19405 - CELL interpreted_treat_heap; // msg to print when heap is treated on interpreter (standard and 'traced_' yaam opcodes)interpreted_treat_heap305,19486 - CELL interpreted_treat_heap; // msg to print when heap is treated on interpreter (standard and 'traced_' yaam opcodes)environment::__anon266::__anon269::interpreted_treat_heap305,19486 - CELL native_treat_heap; // msg to print when heap is treated on native codenative_treat_heap306,19611 - CELL native_treat_heap; // msg to print when heap is treated on native codeenvironment::__anon266::__anon269::native_treat_heap306,19611 - CELL interpreted_treat_trail; // msg to print when trail is treated on interpreter (standard and 'traced_' yaam opcodes)interpreted_treat_trail307,19693 - CELL interpreted_treat_trail; // msg to print when trail is treated on interpreter (standard and 'traced_' yaam opcodes)environment::__anon266::__anon269::interpreted_treat_trail307,19693 - CELL native_treat_trail; // msg to print when trail is treated on native codenative_treat_trail308,19820 - CELL native_treat_trail; // msg to print when trail is treated on native codeenvironment::__anon266::__anon269::native_treat_trail308,19820 - CELL criticals; // msg to print when any clause becomes criticalcriticals309,19904 - CELL criticals; // msg to print when any clause becomes criticalenvironment::__anon266::__anon269::criticals309,19904 - CELL at_compilation; // msg to print before compilationat_compilation310,19975 - CELL at_compilation; // msg to print before compilationenvironment::__anon266::__anon269::at_compilation310,19975 - CELL at_recompilation; // msg to print before recompilationat_recompilation311,20037 - CELL at_recompilation; // msg to print before recompilationenvironment::__anon266::__anon269::at_recompilation311,20037 - CELL nativerun_init; // msg to print when native code is about to be runnativerun_init312,20103 - CELL nativerun_init; // msg to print when native code is about to be runenvironment::__anon266::__anon269::nativerun_init312,20103 - CELL nativerun_exit_by_success; // msg to print when native code exits by success, ie., basic block nonexistent in native code (allows rebuilding and recompilation of traces)nativerun_exit_by_success313,20182 - CELL nativerun_exit_by_success; // msg to print when native code exits by success, ie., basic block nonexistent in native code (allows rebuilding and recompilation of traces)environment::__anon266::__anon269::nativerun_exit_by_success313,20182 - CELL nativerun_exit_by_fail; // msg to print when native code exits byfail, ie., exits to treat trail or heap (don't allow rebuilding and recompilation of traces)nativerun_exit_by_fail314,20363 - CELL nativerun_exit_by_fail; // msg to print when native code exits byfail, ie., exits to treat trail or heap (don't allow rebuilding and recompilation of traces)environment::__anon266::__anon269::nativerun_exit_by_fail314,20363 - } pprint_me;pprint_me315,20532 - } pprint_me;environment::__anon266::pprint_me315,20532 - Int info_msgs; // Should I allow info messages?info_msgs319,20600 - Int info_msgs; // Should I allow info messages?environment::__anon266::__anon270::info_msgs319,20600 - Int success_msgs; // Should I allow success messages?success_msgs320,20654 - Int success_msgs; // Should I allow success messages?environment::__anon266::__anon270::success_msgs320,20654 - Int warning_msgs; // Should I allow warning messages?warning_msgs321,20714 - Int warning_msgs; // Should I allow warning messages?environment::__anon266::__anon270::warning_msgs321,20714 - Int error_msgs; // Should I allow error messages?error_msgs322,20774 - Int error_msgs; // Should I allow error messages?environment::__anon266::__anon270::error_msgs322,20774 - } act_predicate_msgs;act_predicate_msgs323,20830 - } act_predicate_msgs;environment::__anon266::act_predicate_msgs323,20830 - Int exit_on_warning; // Should I exit when any warning occur?exit_on_warning327,20906 - Int exit_on_warning; // Should I exit when any warning occur?environment::__anon266::__anon271::exit_on_warning327,20906 - Int disable_on_warning; // Shouldn't I adjust appropriate values when any warning occur (implies 'exit_on_warning' = 'false')disable_on_warning328,20974 - Int disable_on_warning; // Shouldn't I adjust appropriate values when any warning occur (implies 'exit_on_warning' = 'false')environment::__anon266::__anon271::disable_on_warning328,20974 - Int exit_on_error; // Should I exit when any error occur?exit_on_error329,21106 - Int exit_on_error; // Should I exit when any error occur?environment::__anon266::__anon271::exit_on_error329,21106 - } act_predicate_actions;act_predicate_actions330,21170 - } act_predicate_actions;environment::__anon266::act_predicate_actions330,21170 - } debug_struc;debug_struc331,21199 - } debug_struc;environment::debug_struc331,21199 -} Environment;Environment334,21224 -typedef enum block_try {block_try337,21314 - NONE, // untypedNONE338,21339 - SIMPLE_ENTRY, // first basic block of any yaam opcodeSIMPLE_ENTRY339,21372 - SIMPLE, // any other basic block of any yaam opcodeSIMPLE340,21434 - CONDITIONAL_HEADER, // basic block of any 'if' statement of any yaam opcodeCONDITIONAL_HEADER341,21500 - MULTIPLE_DESTINY // basic block of many destinations (elementary block). Returns from native code to interpreter always will occur hereMULTIPLE_DESTINY342,21578 -} BlockTy;BlockTy343,21719 -typedef struct blocks_context {blocks_context346,21795 - UInt id; // block identifier (Yap_BasicBlocks.h)id350,21891 - UInt id; // block identifier (Yap_BasicBlocks.h)blocks_context::__anon272::__anon273::id350,21891 - char *label_entry; // entry label -- destinations of jumps from others 'SIMPLE_ENTRY' or 'SIMPLE' blockslabel_entry351,21946 - char *label_entry; // entry label -- destinations of jumps from others 'SIMPLE_ENTRY' or 'SIMPLE' blocksblocks_context::__anon272::__anon273::label_entry351,21946 - char *label_destiny; // destiny label -- where should I jump after I run?label_destiny352,22057 - char *label_destiny; // destiny label -- where should I jump after I run?blocks_context::__anon272::__anon273::label_destiny352,22057 - } eb;eb353,22137 - } eb;blocks_context::__anon272::eb353,22137 - UInt id; // block identifier (Yap_BasicBlocks.h)id357,22196 - UInt id; // block identifier (Yap_BasicBlocks.h)blocks_context::__anon272::__anon274::id357,22196 - char *label_destiny; // destiny label -- where should I jump after I run?label_destiny358,22251 - char *label_destiny; // destiny label -- where should I jump after I run?blocks_context::__anon272::__anon274::label_destiny358,22251 - } sb;sb359,22331 - } sb;blocks_context::__anon272::sb359,22331 - char *exp; // expression of 'if' statementexp363,22402 - char *exp; // expression of 'if' statementblocks_context::__anon272::__anon275::exp363,22402 - struct blocks_context *_if; // destination if 'exp' is true_if364,22451 - struct blocks_context *_if; // destination if 'exp' is trueblocks_context::__anon272::__anon275::_if364,22451 - struct blocks_context *_else; // destination if 'exp' is false_else365,22517 - struct blocks_context *_else; // destination if 'exp' is falseblocks_context::__anon272::__anon275::_else365,22517 - } kb;kb366,22586 - } kb;blocks_context::__anon272::kb366,22586 - UInt id; // block identifier (Yap_BasicBlocks.h)id370,22655 - UInt id; // block identifier (Yap_BasicBlocks.h)blocks_context::__anon272::__anon276::id370,22655 - COUNT nfaillabels; // number of destinations caused by backtrack on native codenfaillabels371,22710 - COUNT nfaillabels; // number of destinations caused by backtrack on native codeblocks_context::__anon272::__anon276::nfaillabels371,22710 - UInt *p;p373,22811 - UInt *p;blocks_context::__anon272::__anon276::__anon277::p373,22811 - char **labels;labels374,22828 - char **labels;blocks_context::__anon272::__anon276::__anon277::labels374,22828 - } faildestiny; // destinations caused by backtrack on native codefaildestiny375,22851 - } faildestiny; // destinations caused by backtrack on native codeblocks_context::__anon272::__anon276::faildestiny375,22851 - COUNT ndest; // number of destinations that not be backtrackndest376,22923 - COUNT ndest; // number of destinations that not be backtrackblocks_context::__anon272::__anon276::ndest376,22923 - UInt *p;p378,23005 - UInt *p;blocks_context::__anon272::__anon276::__anon278::p378,23005 - char **labels;labels379,23022 - char **labels;blocks_context::__anon272::__anon276::__anon278::labels379,23022 - } destiny; // destinations that not be backtrackdestiny380,23045 - } destiny; // destinations that not be backtrackblocks_context::__anon272::__anon276::destiny380,23045 - } mdb;mdb381,23100 - } mdb;blocks_context::__anon272::mdb381,23100 - CELL header; // just for aiding after treating 'CONDITIONAL_HEADER' blocksheader385,23161 - CELL header; // just for aiding after treating 'CONDITIONAL_HEADER' blocksblocks_context::__anon272::__anon279::header385,23161 - } xb;xb386,23242 - } xb;blocks_context::__anon272::xb386,23242 - } u;u387,23252 - } u;blocks_context::u387,23252 - BlockTy blockty; // Basic block typeblockty388,23259 - BlockTy blockty; // Basic block typeblocks_context::blockty388,23259 - CELL thisp; // Value of PREG. Inside traces, basic blocks are only different from each other if 'id' and 'blockty' are differentthisp389,23298 - CELL thisp; // Value of PREG. Inside traces, basic blocks are only different from each other if 'id' and 'blockty' are differentblocks_context::thisp389,23298 - CELL prev; // Previous basic blockprev390,23429 - CELL prev; // Previous basic blockblocks_context::prev390,23429 - CELL next; // Next basic blocknext391,23466 - CELL next; // Next basic blockblocks_context::next391,23466 -} BlocksContext;BlocksContext392,23499 -typedef struct trace_context {trace_context395,23556 - COUNT n; // number of basic blocksn396,23587 - COUNT n; // number of basic blockstrace_context::n396,23587 - CELL tracesize; // For statistics... list of size (bytes) of each tracetracesize397,23624 - CELL tracesize; // For statistics... list of size (bytes) of each tracetrace_context::tracesize397,23624 - BlocksContext *bc; // basic blocks contextbc398,23698 - BlocksContext *bc; // basic blocks contexttrace_context::bc398,23698 -} TraceContext;TraceContext399,23743 -typedef struct intermediatecode_context {intermediatecode_context402,23808 - COUNT n; // Total of traces storedn403,23850 - COUNT n; // Total of traces storedintermediatecode_context::n403,23850 - TraceContext** t; // List of pointers to traces -- total of 'n't405,23898 - TraceContext** t; // List of pointers to traces -- total of 'n'intermediatecode_context::__anon280::t405,23898 - COUNT* ok; // List of traces ok (traces constructed and compiled at least once)ok406,23966 - COUNT* ok; // List of traces ok (traces constructed and compiled at least once)intermediatecode_context::__anon280::ok406,23966 - COUNT* isactive; // List of active traces (traces under construction). Initialized to zeroisactive407,24050 - COUNT* isactive; // List of active traces (traces under construction). Initialized to zerointermediatecode_context::__anon280::isactive407,24050 - BlocksContext** lastblock; // List of last block added on each tracelastblock408,24145 - BlocksContext** lastblock; // List of last block added on each traceintermediatecode_context::__anon280::lastblock408,24145 - double* profiling_time; // For statistics... list of profiling time of each traceprofiling_time410,24237 - double* profiling_time; // For statistics... list of profiling time of each traceintermediatecode_context::__anon280::profiling_time410,24237 - } area;area412,24330 - } area;intermediatecode_context::area412,24330 -} IntermediatecodeContext;IntermediatecodeContext413,24340 -typedef struct native_context {native_context416,24410 - COUNT n; // Total of traces compiled (is not necessarily equal to 'IntermediatecodeContext.n')n417,24442 - COUNT n; // Total of traces compiled (is not necessarily equal to 'IntermediatecodeContext.n')native_context::n417,24442 - void** p; // List of pointers to compiled codes -- total of 'n'p419,24550 - void** p; // List of pointers to compiled codes -- total of 'n'native_context::__anon281::p419,24550 - COUNT* ok; // List of compiled codes ok (traces constructed and compiled at least once)ok420,24618 - COUNT* ok; // List of compiled codes ok (traces constructed and compiled at least once)native_context::__anon281::ok420,24618 - CELL* pc; // List of first heads of each compiled codepc421,24711 - CELL* pc; // List of first heads of each compiled codenative_context::__anon281::pc421,24711 - COUNT *nrecomp; // For statistics... number of recompilations of each compiled code (max '1' if recompilation is disabled)nrecomp423,24789 - COUNT *nrecomp; // For statistics... number of recompilations of each compiled code (max '1' if recompilation is disabled)native_context::__anon281::nrecomp423,24789 - double **compilation_time; // For statistics... list of compilation time of each compiled code on each recompilationcompilation_time424,24916 - double **compilation_time; // For statistics... list of compilation time of each compiled code on each recompilationnative_context::__anon281::compilation_time424,24916 - CELL **native_size_bytes; // For statistics... list of native size (bytes) of each compiled code on each recompilationnative_size_bytes425,25037 - CELL **native_size_bytes; // For statistics... list of native size (bytes) of each compiled code on each recompilationnative_context::__anon281::native_size_bytes425,25037 - CELL **trace_size_bytes; // For statistics... list of trace size (bytes) of each trace on each recompilationtrace_size_bytes426,25160 - CELL **trace_size_bytes; // For statistics... list of trace size (bytes) of each trace on each recompilationnative_context::__anon281::trace_size_bytes426,25160 - } area;area428,25280 - } area;native_context::area428,25280 - COUNT *runs; // List of calls of each compiled coderuns430,25309 - COUNT *runs; // List of calls of each compiled codenative_context::runs430,25309 - double *t_runs; // List of execution time of each compiled codet_runs431,25363 - double *t_runs; // List of execution time of each compiled codenative_context::t_runs431,25363 - COUNT *success; // List of exit by success of each compiled codesuccess432,25429 - COUNT *success; // List of exit by success of each compiled codenative_context::success432,25429 -} NativeContext;NativeContext434,25503 -typedef struct control_flags_context {control_flags_context442,25713 - COUNT nemited;nemited443,25752 - COUNT nemited;control_flags_context::nemited443,25752 - char** emited_blocks;emited_blocks444,25769 - char** emited_blocks;control_flags_context::emited_blocks444,25769 - short emit;emit445,25793 - short emit;control_flags_context::emit445,25793 - short leastonce;leastonce446,25807 - short leastonce;control_flags_context::leastonce446,25807 - char* clabel;clabel447,25826 - char* clabel;control_flags_context::clabel447,25826 - COUNT labelidx;labelidx448,25842 - COUNT labelidx;control_flags_context::labelidx448,25842 - COUNT printlabel;printlabel449,25860 - COUNT printlabel;control_flags_context::printlabel449,25860 - char** entries;entries450,25880 - char** entries;control_flags_context::entries450,25880 - COUNT nentries;nentries451,25898 - COUNT nentries;control_flags_context::nentries451,25898 -} ControlFlagsContext;ControlFlagsContext452,25916 -typedef struct jit_handl_context {jit_handl_context456,25989 - CELL isground; // Does clause whose head is this 'jit_handler' have calls ('fcall' or 'call' opcode)? If 'yes', isground is '0'. Used when 'main_clause_ty(hot_and_callee)'isground459,26109 - CELL isground; // Does clause whose head is this 'jit_handler' have calls ('fcall' or 'call' opcode)? If 'yes', isground is '0'. Used when 'main_clause_ty(hot_and_callee)'jit_handl_context::__anon282::isground459,26109 - CELL clausesize; // Is clause whose head is this 'jit_handler' greater than other clauses? Used when ''main_clause_ty(hot_and_greater)'clausesize460,26285 - CELL clausesize; // Is clause whose head is this 'jit_handler' greater than other clauses? Used when ''main_clause_ty(hot_and_greater)'jit_handl_context::__anon282::clausesize460,26285 - CELL backtrack_counter; // Does clause whose head is this 'jit_handler' have fewer backtracks on history than other clauses? Used when ''main_clause_ty(hot_and_fewer)'backtrack_counter461,26426 - CELL backtrack_counter; // Does clause whose head is this 'jit_handler' have fewer backtracks on history than other clauses? Used when ''main_clause_ty(hot_and_fewer)'jit_handl_context::__anon282::backtrack_counter461,26426 - } mf;mf462,26598 - } mf;jit_handl_context::mf462,26598 - COUNT c; // counterc467,26682 - COUNT c; // counterjit_handl_context::__anon283::__anon284::c467,26682 - CELL t; // timet468,26708 - CELL t; // timejit_handl_context::__anon283::__anon284::t468,26708 - } bcst; // balance, counter, crossover, timebcst469,26731 - } bcst; // balance, counter, crossover, timejit_handl_context::__anon283::bcst469,26731 - } fi;fi470,26780 - } fi;jit_handl_context::fi470,26780 - COUNT taddress; // intermediatecode areataddress474,26883 - COUNT taddress; // intermediatecode areajit_handl_context::__anon285::taddress474,26883 - COUNT naddress; // native areanaddress475,26928 - COUNT naddress; // native areajit_handl_context::__anon285::naddress475,26928 - } caa;caa476,26963 - } caa;jit_handl_context::caa476,26963 - char *cmd; // Argument to program 'echo' (called by fork on JIT_Compiler.cpp). Its value is C code that represent traces that will be compiled. Its value is freed after compilation.cmd480,27045 - char *cmd; // Argument to program 'echo' (called by fork on JIT_Compiler.cpp). Its value is C code that represent traces that will be compiled. Its value is freed after compilation.jit_handl_context::__anon286::cmd480,27045 - ControlFlagsContext* cf; // Pointer to ControlFlagsContext. Just used here.cf481,27231 - ControlFlagsContext* cf; // Pointer to ControlFlagsContext. Just used here.jit_handl_context::__anon286::cf481,27231 - } tcc;tcc482,27311 - } tcc;jit_handl_context::tcc482,27311 - CELL used_thread;used_thread486,27393 - CELL used_thread;jit_handl_context::__anon287::used_thread486,27393 - CELL torecomp;torecomp487,27415 - CELL torecomp;jit_handl_context::__anon287::torecomp487,27415 - }jitman;jitman488,27434 - }jitman;jit_handl_context::jitman488,27434 -} JitHandlContext;JitHandlContext489,27445 -typedef void *(*call_jitc_t)(struct JIT_Compiler*, yamop *);call_jitc_t502,27659 -initJit(void)initJit509,27792 -init_jit(void) {init_jit533,28282 -Environment Yap_ExpEnv;Yap_ExpEnv537,28317 - -JIT/jit_statisticpreds.c,227 -#define JIT_CODE JIT_CODE18,700 -p_init_low_level_stats( USES_REGS1 )p_init_low_level_stats33,990 -p_statistics_jit( USES_REGS1 )p_statistics_jit522,28655 -Yap_InitJitStatisticPreds(void)Yap_InitJitStatisticPreds843,50206 - -JIT/jit_traced.c,1141 -#define IN_TRACED_ABSMI_C IN_TRACED_ABSMI_C43,1068 -#define HAS_CACHE_REGS HAS_CACHE_REGS47,1117 -Term Yap_XREGS[MaxTemps]; /* 29 */Yap_XREGS60,1279 -interrupt_pexecute( PredEntry *pen USES_REGS ) {interrupt_pexecute70,1453 -JIT_Compiler *J;J83,1669 -CELL nnexec;nnexec91,1793 -short global;global95,1834 -yamop* HEADPREG;HEADPREG96,1848 -CELL BLOCK;BLOCK97,1865 -CELL BLOCKADDRESS;BLOCKADDRESS98,1877 -CELL FAILED;FAILED99,1896 -#undef SHADOW_PSHADOW_P101,1910 -#undef SHADOW_CPSHADOW_CP102,1926 -#undef SHADOW_HBSHADOW_HB103,1943 -#undef SHADOW_YSHADOW_Y104,1960 -#undef SHADOW_SSHADOW_S105,1976 -#undef PREGPREG107,1993 -#define PREG PREG108,2006 -#undef CPREGCPREG110,2022 -#define CPREG CPREG111,2036 -#undef SREGSREG113,2054 -#define SREG SREG114,2067 -#undef YREGYREG116,2083 -#define YREG YREG117,2096 -#undef setregssetregs119,2115 -#define setregs(setregs120,2130 -#undef saveregssaveregs122,2149 -#define saveregs(saveregs123,2165 -traced_absmi(void)traced_absmi128,2210 -#define OPCODE(OPCODE134,2282 -#undef OPCODEOPCODE136,2339 -#define I_R I_R141,2441 - -JIT/jit_transformpreds.c,1999 -#define JIT_CODE JIT_CODE18,703 -#define N_TRANSFORM_PASSES N_TRANSFORM_PASSES22,754 -p_disable_transform_pass( USES_REGS1 )p_disable_transform_pass119,3952 -p_transform_pass( USES_REGS1 )p_transform_pass255,12717 -p_enable_transform_pass( USES_REGS1 )p_enable_transform_pass380,21426 -p_transform_passes( USES_REGS1 )p_transform_passes386,21521 -p_enable_all_transform_passes( USES_REGS1 )p_enable_all_transform_passes562,32573 -p_disable_all_transform_passes( USES_REGS1 )p_disable_all_transform_passes582,33361 -p_n_transform_passes( USES_REGS1 )p_n_transform_passes592,33630 -p_transform_level( USES_REGS1 )p_transform_level656,35959 -p_argument_promotion_max_elements( USES_REGS1 )p_argument_promotion_max_elements687,37013 -p_scalar_replace_aggregates_threshold( USES_REGS1 )p_scalar_replace_aggregates_threshold715,37821 -p_loop_unroll_threshold( USES_REGS1 )p_loop_unroll_threshold739,38512 -p_inline_threshold( USES_REGS1 )p_inline_threshold763,39150 -p_strip_symbols_pass_type( USES_REGS1 )p_strip_symbols_pass_type787,39779 -p_loop_unswitch_optimize_for_size( USES_REGS1 )p_loop_unswitch_optimize_for_size825,41052 -p_default_optimization_args( USES_REGS1 )p_default_optimization_args863,42365 -p_reset_optimization_args( USES_REGS1 )p_reset_optimization_args891,43597 -p_enable_unit_at_time( USES_REGS1 )p_enable_unit_at_time899,43756 -p_enable_simplify_libcalls( USES_REGS1 )p_enable_simplify_libcalls907,43890 -p_disable_unit_at_time( USES_REGS1 )p_disable_unit_at_time915,44054 -p_disable_simplify_libcalls( USES_REGS1 )p_disable_simplify_libcalls923,44190 -p_link_time_opt1( USES_REGS1 )p_link_time_opt1931,44356 -p_link_time_opt3( USES_REGS1 )p_link_time_opt3981,46179 -p_enable_link_time_opt( USES_REGS1 )p_enable_link_time_opt1090,50368 -p_enable_link_time_opt2( USES_REGS1 )p_enable_link_time_opt21100,50634 -p_disable_link_time_opt( USES_REGS1 )p_disable_link_time_opt1177,53484 -Yap_InitJitTransformPreds( void )Yap_InitJitTransformPreds1188,53738 - -kernel,0 - -LGPL/pillow/Copyright,573 -% License as published by the Free Software Foundation; eitherFoundation5,174 -% version 2 of the License, or (at your option) any later version.License6,237 -% but WITHOUT ANY WARRANTY; without even the implied warranty ofWARRANTY9,373 -% Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.Foundation15,689 -% Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.Ave15,689 -% Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.Cambridge15,689 -% Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.MA15,689 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc.html,1864 -
  • SummaryTOC124,952 -
  • IntroductionTOC225,1013 -
  • Installing PiLLoWTOC327,1084 -
  • Usage and interface (pillow)TOC428,1155 -
  • HTML/XML/CGI programmingTOC530,1256 -
  • Usage and interface (html)TOC632,1339 -
  • Documentation on exports (html)TOC733,1432 -
  • Documentation on multifiles (html)TOC834,1530 -
  • Other information (html)TOC935,1631 -
  • HTTP conectivityTOC1037,1728 -
  • Usage and interface (http)TOC1139,1805 -
  • Documentation on exports (http)TOC1240,1900 -
  • PiLLoW typesTOC1342,2006 -
  • Usage and interface (pillow_types)TOC1444,2079 -
  • Documentation on exports (pillow_types)TOC1545,2182 -
  • ReferencesTOC1647,2296 -
  • Predicate/Method Definition IndexTOC1748,2362 -
  • Regular Type Definition IndexTOC1849,2451 -
  • Global IndexTOC1950,2536 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_1.html,113 -

    Summary

    SEC113,495 -IDX225,1712 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_2.html,692 -

    Introduction

    SEC213,564 -IDX316,642 -IDX417,662 -IDX521,688 -IDX625,714 -IDX729,740 -IDX831,1114 -IDX933,1355 -

    Installing PiLLoW

    SEC345,1793 -IDX1057,2261 -IDX1162,2484 -IDX1264,2533 -

    Usage and interface (pillow)

    SEC471,2661 -IDX1387,2962 -IDX1489,3012 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_3.html,3802 -

    HTML/XML/CGI programming

    SEC513,576 -IDX1529,965 -IDX1631,992 -IDX1733,1042 -

    Usage and interface (html)

    SEC647,1481 -IDX1864,1758 -IDX1966,1808 -IDX2068,1857 -IDX2170,1905 -IDX2272,1957 -IDX2374,2013 -IDX2476,2066 -IDX2578,2119 -IDX2680,2174 -IDX2782,2225 -IDX2884,2274 -IDX2986,2324 -IDX3088,2372 -IDX3190,2417 -IDX3292,2464 -IDX3394,2520 -IDX3496,2578 -IDX3598,2629 -IDX36100,2680 -IDX37105,2755 -

    Documentation on exports (html)

    SEC7116,2850 -IDX38118,2959 -IDX39119,2980 -
    IDX40122,3071 -IDX41131,3193 -IDX42148,3470 -IDX43149,3491 -
    IDX44152,3581 -IDX45205,4876 -IDX46206,4897 -
    IDX47209,4986 -IDX48262,6270 -IDX49263,6291 -
    IDX50266,6384 -IDX51357,8906 -IDX52358,8927 -
    IDX53361,9024 -IDX54375,9226 -IDX55376,9247 -
    IDX56379,9341 -IDX57388,9846 -IDX58409,10270 -IDX59410,10291 -
    IDX60413,10385 -IDX61448,11310 -IDX62449,11331 -
    IDX63452,11427 -IDX64466,11685 -IDX65467,11706 -
    IDX66470,11798 -IDX67494,12535 -IDX68495,12556 -
    IDX69498,12646 -IDX70525,13141 -IDX71526,13162 -
    IDX72529,13253 -IDX73557,13820 -IDX74558,13841 -
    IDX75561,13930 -IDX76592,14607 -IDX77593,14628 -
    IDX78596,14714 -IDX79624,15211 -IDX80625,15232 -
    IDX81628,15320 -IDX82695,16801 -IDX83696,16822 -
    IDX84699,16919 -IDX85708,17245 -IDX86765,18479 -IDX87766,18500 -
    IDX88769,18599 -IDX89787,18974 -IDX90788,18995 -
    IDX91791,19087 -IDX92825,19617 -IDX93826,19638 -
    IDX94829,19730 -IDX95857,20293 -IDX96858,20314 -
    IDX97861,20404 -

    Documentation on multifiles (html)

    SEC8886,21118 -IDX98888,21230 -IDX99889,21251 -
    IDX100892,21345 -IDX101905,21626 -

    Other information (html)

    SEC9913,21743 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_4.html,517 -

    HTTP conectivity

    SEC1013,568 -IDX10229,872 -

    Usage and interface (http)

    SEC1141,1117 -IDX10358,1396 -

    Documentation on exports (http)

    SEC1269,1487 -IDX10471,1598 -IDX10572,1620 -
    IDX10675,1710 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_5.html,2924 -

    PiLLoW types

    SEC1313,564 -

    Usage and interface (pillow_types)

    SEC1431,971 -IDX10748,1269 -IDX10850,1326 -IDX10952,1382 -IDX11054,1431 -IDX11156,1480 -IDX11258,1535 -IDX11360,1585 -IDX11462,1635 -IDX11564,1683 -IDX11666,1741 -IDX11768,1800 -IDX11870,1849 -IDX11972,1896 -IDX12074,1941 -

    Documentation on exports (pillow_types)

    SEC1585,2031 -IDX12187,2150 -IDX12288,2172 -
    IDX12391,2268 -IDX124174,4379 -IDX125175,4401 -
    IDX126178,4496 -IDX127183,4650 -IDX128185,4713 -IDX129204,5165 -IDX130239,6100 -IDX131240,6122 -
    IDX132243,6210 -IDX133248,6346 -IDX134250,6405 -IDX135317,9919 -IDX136428,15297 -IDX137429,15319 -
    IDX138432,15407 -IDX139446,15661 -IDX140447,15683 -
    IDX141450,15777 -IDX142482,16206 -IDX143483,16228 -
    IDX144486,16317 -IDX145500,16504 -IDX146501,16526 -
    IDX147504,16615 -IDX148518,16852 -IDX149519,16874 -
    IDX150522,16961 -IDX151546,17433 -IDX152547,17455 -
    IDX153550,17552 -IDX154563,18011 -IDX155585,18798 -IDX156586,18820 -
    IDX157589,18918 -IDX158603,19571 -IDX159622,20890 -IDX160627,21114 -IDX161647,21568 -IDX162648,21590 -
    IDX163651,21678 -IDX164685,22118 -IDX165686,22140 -
    IDX166689,22226 -IDX167712,22476 -IDX168713,22498 -
    IDX169716,22582 -IDX170744,22897 -IDX171745,22919 -
    IDX172748,23006 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_6.html,86 -

    References

    SEC1613,562 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_7.html,585 -

    Predicate/Method Definition Index

    SEC1713,585 -

    f

    pdindex_f35,958 -

    g

    pdindex_g42,1243 -

    h

    pdindex_h48,1465 -

    i

    pdindex_i57,1859 -

    m

    pdindex_m61,1964 -

    o

    pdindex_o65,2063 -

    s

    pdindex_s69,2167 -

    u

    pdindex_u73,2270 -

    x

    pdindex_x79,2487 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_8.html,475 -

    Regular Type Definition Index

    SEC1813,581 -

    c

    teindex_c31,892 -

    f

    teindex_f36,1065 -

    h

    teindex_h42,1285 -

    m

    teindex_m50,1626 -

    u

    teindex_u54,1725 -

    v

    teindex_v58,1827 -

    w

    teindex_w62,1931 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_9.html,1001 -

    Global Index

    SEC1913,500 -

    $

    glindex_$59,1415 -

    c

    glindex_c64,1555 -

    f

    glindex_f70,2174 -

    g

    glindex_g80,3019 -

    h

    glindex_h87,3553 -

    i

    glindex_i103,5286 -

    l

    glindex_l108,5613 -

    m

    glindex_m112,5721 -

    n

    glindex_n117,5967 -

    o

    glindex_o121,6064 -

    p

    glindex_p125,6275 -

    s

    glindex_s130,6440 -

    t

    glindex_t134,6595 -

    u

    glindex_u138,6699 -

    v

    glindex_v145,7231 -

    w

    glindex_w149,7388 -

    x

    glindex_x154,7602 - -LGPL/pillow/doc/pillow_doc_html/pillow_doc_toc.html,1864 -
  • SummaryTOC124,952 -
  • IntroductionTOC225,1013 -
  • Installing PiLLoWTOC327,1084 -
  • Usage and interface (pillow)TOC428,1155 -
  • HTML/XML/CGI programmingTOC530,1256 -
  • Usage and interface (html)TOC632,1339 -
  • Documentation on exports (html)TOC733,1432 -
  • Documentation on multifiles (html)TOC834,1530 -
  • Other information (html)TOC935,1631 -
  • HTTP conectivityTOC1037,1728 -
  • Usage and interface (http)TOC1139,1805 -
  • Documentation on exports (http)TOC1240,1900 -
  • PiLLoW typesTOC1342,2006 -
  • Usage and interface (pillow_types)TOC1444,2079 -
  • Documentation on exports (pillow_types)TOC1545,2182 -
  • ReferencesTOC1647,2296 -
  • Predicate/Method Definition IndexTOC1748,2362 -
  • Regular Type Definition IndexTOC1849,2451 -
  • Global IndexTOC1950,2536 - -LGPL/pillow/examples/check_links.pl,2129 -main([URL]) :- !,main4,76 -main([URL]) :- !,main4,76 -main([URL]) :- !,main4,76 -main(_) :-main7,165 -main(_) :-main7,165 -main(_) :-main7,165 -check_links(URL,BadLinks) :-check_links10,230 -check_links(URL,BadLinks) :-check_links10,230 -check_links(URL,BadLinks) :-check_links10,230 -check_source_links([],_,BL,BL).check_source_links18,516 -check_source_links([],_,BL,BL).check_source_links18,516 -check_source_links([E|Es],BaseURL,BL0,BL) :-check_source_links19,548 -check_source_links([E|Es],BaseURL,BL0,BL) :-check_source_links19,548 -check_source_links([E|Es],BaseURL,BL0,BL) :-check_source_links19,548 -check_source_links1(env(a,AnchorAtts,_),BaseURL,BL0,BL) :-check_source_links123,689 -check_source_links1(env(a,AnchorAtts,_),BaseURL,BL0,BL) :-check_source_links123,689 -check_source_links1(env(a,AnchorAtts,_),BaseURL,BL0,BL) :-check_source_links123,689 -check_source_links1(env(_Name,_Atts,Env_html),BaseURL,BL0,BL) :- !,check_source_links126,830 -check_source_links1(env(_Name,_Atts,Env_html),BaseURL,BL0,BL) :- !,check_source_links126,830 -check_source_links1(env(_Name,_Atts,Env_html),BaseURL,BL0,BL) :- !,check_source_links126,830 -check_source_links1(_,_,BL,BL).check_source_links128,951 -check_source_links1(_,_,BL,BL).check_source_links128,951 -check_link(URL,BaseURL,BL0,BL) :-check_link30,984 -check_link(URL,BaseURL,BL0,BL) :-check_link30,984 -check_link(URL,BaseURL,BL0,BL) :-check_link30,984 -check_link(_,_,BL,BL).check_link39,1275 -check_link(_,_,BL,BL).check_link39,1275 -fetch_url_status(URL,Status,Phrase) :-fetch_url_status41,1299 -fetch_url_status(URL,Status,Phrase) :-fetch_url_status41,1299 -fetch_url_status(URL,Status,Phrase) :-fetch_url_status41,1299 -fetch_url_status(_,timeout,timeout).fetch_url_status44,1443 -fetch_url_status(_,timeout,timeout).fetch_url_status44,1443 -report_bad_links([]).report_bad_links46,1481 -report_bad_links([]).report_bad_links46,1481 -report_bad_links([badlink(U,P)|BLs]) :-report_bad_links47,1503 -report_bad_links([badlink(U,P)|BLs]) :-report_bad_links47,1503 -report_bad_links([badlink(U,P)|BLs]) :-report_bad_links47,1503 - -LGPL/pillow/examples/html_demo.pl,19 -main :- main4,58 - -LGPL/pillow/examples/html_forms.pl,2029 -main :-main8,114 -compute_reply('',_,_,_,_,_,_,_,'') :- !.compute_reply55,1624 -compute_reply('',_,_,_,_,_,_,_,'') :- !.compute_reply55,1624 -compute_reply('',_,_,_,_,_,_,_,'') :- !.compute_reply55,1624 -compute_reply(Mood,Potatoes,Pizza,Coke,Passwd0,Text0,Number,Colors0,Reply) :-compute_reply56,1665 -compute_reply(Mood,Potatoes,Pizza,Coke,Passwd0,Text0,Number,Colors0,Reply) :-compute_reply56,1665 -compute_reply(Mood,Potatoes,Pizza,Coke,Passwd0,Text0,Number,Colors0,Reply) :-compute_reply56,1665 -compute_food('','','','no food.').compute_food71,2182 -compute_food('','','','no food.').compute_food71,2182 -compute_food(on,'','','potatoes.').compute_food72,2217 -compute_food(on,'','','potatoes.').compute_food72,2217 -compute_food('',on,'','pizza.').compute_food73,2253 -compute_food('',on,'','pizza.').compute_food73,2253 -compute_food('','',on,'coke.').compute_food74,2286 -compute_food('','',on,'coke.').compute_food74,2286 -compute_food(on,on,'','potatoes and pizza.').compute_food75,2318 -compute_food(on,on,'','potatoes and pizza.').compute_food75,2318 -compute_food('',on,on,'pizza with coke.').compute_food76,2364 -compute_food('',on,on,'pizza with coke.').compute_food76,2364 -compute_food(on,'',on,'potatoes with coke.').compute_food77,2407 -compute_food(on,'',on,'potatoes with coke.').compute_food77,2407 -compute_food(on,on,on,'potatoes and pizza with coke.').compute_food78,2453 -compute_food(on,on,on,'potatoes and pizza with coke.').compute_food78,2453 -compute_text(T0,T) :-compute_text80,2510 -compute_text(T0,T) :-compute_text80,2510 -compute_text(T0,T) :-compute_text80,2510 -compute_text(T,preformatted(T)).compute_text83,2580 -compute_text(T,preformatted(T)).compute_text83,2580 -compute_password(P0,P) :-compute_password85,2614 -compute_password(P0,P) :-compute_password85,2614 -compute_password(P0,P) :-compute_password85,2614 -compute_colors(C0,C) :-compute_colors88,2682 -compute_colors(C0,C) :-compute_colors88,2682 -compute_colors(C0,C) :-compute_colors88,2682 - -LGPL/pillow/examples/phones.pl,390 -main :-main3,25 -response(Name, Response) :-response21,476 -response(Name, Response) :-response21,476 -response(Name, Response) :-response21,476 -phone(daniel, '336-7448').phone28,715 -phone(daniel, '336-7448').phone28,715 -phone(manuel, '336-7435').phone29,742 -phone(manuel, '336-7435').phone29,742 -phone(sacha, '543-5316').phone30,769 -phone(sacha, '543-5316').phone30,769 - -LGPL/pillow/examples/phones.yap,390 -main :-main3,36 -response(Name, Response) :-response21,487 -response(Name, Response) :-response21,487 -response(Name, Response) :-response21,487 -phone(daniel, '336-7448').phone28,726 -phone(daniel, '336-7448').phone28,726 -phone(manuel, '336-7435').phone29,753 -phone(manuel, '336-7435').phone29,753 -phone(sacha, '543-5316').phone30,780 -phone(sacha, '543-5316').phone30,780 - -LGPL/pillow/examples/README,160 -Source files in this directory are prepared to run in the Ciao system, insystem1,0 -other systems they need minor changes, notably in the header.changes2,74 - -LGPL/pillow/examples/template.html,0 - -LGPL/pillow/icon_address.pl,138 -icon_base_address('http://localhost/images/').icon_base_address1,0 -icon_base_address('http://localhost/images/').icon_base_address1,0 - -LGPL/pillow/INSTALL,159 - To correctly install PiLLoW, first, make sure you downloaded thePiLLoW6,89 - To correctly install PiLLoW, first, make sure you downloaded thefirst6,89 - -LGPL/pillow/pillow.pl,84990 -icon_address(Img, IAddress):-icon_address58,2229 -icon_address(Img, IAddress):-icon_address58,2229 -icon_address(Img, IAddress):-icon_address58,2229 -icon_img(warning,'warning_large.gif').icon_img63,2374 -icon_img(warning,'warning_large.gif').icon_img63,2374 -icon_img(dot,'redball.gif').icon_img64,2413 -icon_img(dot,'redball.gif').icon_img64,2413 -icon_img(clip,'clip.gif').icon_img65,2442 -icon_img(clip,'clip.gif').icon_img65,2442 -icon_img(pillow,'pillow_d.gif').icon_img66,2469 -icon_img(pillow,'pillow_d.gif').icon_img66,2469 -:- multifile html_expansion/2.multifile79,2995 -:- multifile html_expansion/2.multifile79,2995 -html_expansion(bf(X),b(X)).html_expansion81,3027 -html_expansion(bf(X),b(X)).html_expansion81,3027 -html_expansion(it(X),i(X)).html_expansion82,3055 -html_expansion(it(X),i(X)).html_expansion82,3055 -output_html(F) :-output_html95,3530 -output_html(F) :-output_html95,3530 -output_html(F) :-output_html95,3530 -html_report_error(X) :-html_report_error103,3725 -html_report_error(X) :-html_report_error103,3725 -html_report_error(X) :-html_report_error103,3725 -html2terms(Chars, Terms) :-html2terms129,4495 -html2terms(Chars, Terms) :-html2terms129,4495 -html2terms(Chars, Terms) :-html2terms129,4495 -html2terms(Chars, Terms) :-html2terms132,4583 -html2terms(Chars, Terms) :-html2terms132,4583 -html2terms(Chars, Terms) :-html2terms132,4583 -xml2terms(Chars, Terms) :-xml2terms146,5081 -xml2terms(Chars, Terms) :-xml2terms146,5081 -xml2terms(Chars, Terms) :-xml2terms146,5081 -xml2terms(Chars, Terms) :-xml2terms149,5192 -xml2terms(Chars, Terms) :-xml2terms149,5192 -xml2terms(Chars, Terms) :-xml2terms149,5192 -html_term(X) --> {var(X)}, !,html_term154,5302 -html_term(X) --> {var(X)}, !,html_term154,5302 -html_term(X) --> {var(X)}, !,html_term154,5302 -html_term(T) --> {html_expansion(T,NT)}, !,html_term156,5376 -html_term(T) --> {html_expansion(T,NT)}, !,html_term156,5376 -html_term(T) --> {html_expansion(T,NT)}, !,html_term156,5376 -html_term(start) --> !, "".html_term158,5443 -html_term(start) --> !, "".html_term158,5443 -html_term(start) --> !, "".html_term158,5443 -html_term(end) --> !, "".html_term159,5477 -html_term(end) --> !, "".html_term159,5477 -html_term(end) --> !, "".html_term159,5477 -html_term(--) --> !, newline, "
    ", newline.html_term160,5512 -html_term(--) --> !, newline, "
    ", newline.html_term160,5512 -html_term(--) --> !, newline, "
    ", newline.html_term160,5512 -html_term(\\) --> !, "
    ", newline.html_term161,5560 -html_term(\\) --> !, "
    ", newline.html_term161,5560 -html_term(\\) --> !, "
    ", newline.html_term161,5560 -html_term($) --> !, newline, "

    ".html_term162,5598 -html_term($) --> !, newline, "

    ".html_term162,5598 -html_term($) --> !, newline, "

    ".html_term162,5598 -html_term(comment(C)) --> !,html_term163,5635 -html_term(comment(C)) --> !,html_term163,5635 -html_term(comment(C)) --> !,html_term163,5635 -html_term(declare(C)) --> !,html_term166,5725 -html_term(declare(C)) --> !,html_term166,5725 -html_term(declare(C)) --> !,html_term166,5725 -html_term(xmldecl(Atts)) --> !,html_term170,5827 -html_term(xmldecl(Atts)) --> !,html_term170,5827 -html_term(xmldecl(Atts)) --> !,html_term170,5827 -html_term(image(Addr)) --> !,html_term174,5915 -html_term(image(Addr)) --> !,html_term174,5915 -html_term(image(Addr)) --> !,html_term174,5915 -html_term(image(Addr,Atts)) --> !,html_term178,6005 -html_term(image(Addr,Atts)) --> !,html_term178,6005 -html_term(image(Addr,Atts)) --> !,html_term178,6005 -html_term(ref(Addr,Text)) --> !,html_term182,6105 -html_term(ref(Addr,Text)) --> !,html_term182,6105 -html_term(ref(Addr,Text)) --> !,html_term182,6105 -html_term(label(Label,Text)) --> !,html_term188,6238 -html_term(label(Label,Text)) --> !,html_term188,6238 -html_term(label(Label,Text)) --> !,html_term188,6238 -html_term(heading(L,X)) -->html_term194,6375 -html_term(heading(L,X)) -->html_term194,6375 -html_term(heading(L,X)) -->html_term194,6375 -html_term(itemize(L)) --> !,html_term198,6483 -html_term(itemize(L)) --> !,html_term198,6483 -html_term(itemize(L)) --> !,html_term198,6483 -html_term(enumerate(L)) --> !,html_term203,6585 -html_term(enumerate(L)) --> !,html_term203,6585 -html_term(enumerate(L)) --> !,html_term203,6585 -html_term(description(L)) --> !,html_term208,6689 -html_term(description(L)) --> !,html_term208,6689 -html_term(description(L)) --> !,html_term208,6689 -html_term(nice_itemize(Dot, L)) --> !,html_term213,6802 -html_term(nice_itemize(Dot, L)) --> !,html_term213,6802 -html_term(nice_itemize(Dot, L)) --> !,html_term213,6802 -html_term(preformatted(X)) --> !,html_term219,6974 -html_term(preformatted(X)) --> !,html_term219,6974 -html_term(preformatted(X)) --> !,html_term219,6974 -html_term(entity(Name)) --> !,html_term224,7091 -html_term(entity(Name)) --> !,html_term224,7091 -html_term(entity(Name)) --> !,html_term224,7091 -html_term(start_form) --> !,html_term227,7170 -html_term(start_form) --> !,html_term227,7170 -html_term(start_form) --> !,html_term227,7170 -html_term(start_form(Addr)) --> !, html_term232,7282 -html_term(start_form(Addr)) --> !, html_term232,7282 -html_term(start_form(Addr)) --> !, html_term232,7282 -html_term(start_form(Addr,Atts)) --> !, html_term237,7414 -html_term(start_form(Addr,Atts)) --> !, html_term237,7414 -html_term(start_form(Addr,Atts)) --> !, html_term237,7414 -html_term(end_form) --> !,html_term242,7541 -html_term(end_form) --> !,html_term242,7541 -html_term(end_form) --> !,html_term242,7541 -html_term(checkbox(Name,on)) --> !,html_term244,7596 -html_term(checkbox(Name,on)) --> !,html_term244,7596 -html_term(checkbox(Name,on)) --> !,html_term244,7596 -html_term(checkbox(Name,_)) --> !,html_term248,7717 -html_term(checkbox(Name,_)) --> !,html_term248,7717 -html_term(checkbox(Name,_)) --> !,html_term248,7717 -html_term(radio(Name,Value,Value)) --> !,html_term252,7829 -html_term(radio(Name,Value,Value)) --> !,html_term252,7829 -html_term(radio(Name,Value,Value)) --> !,html_term252,7829 -html_term(radio(Name,Value,_)) --> !,html_term256,7965 -html_term(radio(Name,Value,_)) --> !,html_term256,7965 -html_term(radio(Name,Value,_)) --> !,html_term256,7965 -html_term(input(Type,Atts)) --> !,html_term260,8089 -html_term(input(Type,Atts)) --> !,html_term260,8089 -html_term(input(Type,Atts)) --> !,html_term260,8089 -html_term(textinput(Name,Atts,Text)) --> !,html_term264,8192 -html_term(textinput(Name,Atts,Text)) --> !,html_term264,8192 -html_term(textinput(Name,Atts,Text)) --> !,html_term264,8192 -html_term(menu(Name,Atts,Items)) --> !,html_term270,8359 -html_term(menu(Name,Atts,Items)) --> !,html_term270,8359 -html_term(menu(Name,Atts,Items)) --> !,html_term270,8359 -html_term(option(Name,Val,Options)) --> !,html_term276,8527 -html_term(option(Name,Val,Options)) --> !,html_term276,8527 -html_term(option(Name,Val,Options)) --> !,html_term276,8527 -html_term(form_reply) --> !,html_term282,8703 -html_term(form_reply) --> !,html_term282,8703 -html_term(form_reply) --> !,html_term282,8703 -html_term(cgi_reply) --> !,html_term286,8801 -html_term(cgi_reply) --> !,html_term286,8801 -html_term(cgi_reply) --> !,html_term286,8801 -html_term(prolog_term(T)) --> !,html_term290,8898 -html_term(prolog_term(T)) --> !,html_term290,8898 -html_term(prolog_term(T)) --> !,html_term290,8898 -html_term(verbatim(Text)) --> !,html_term293,8968 -html_term(verbatim(Text)) --> !,html_term293,8968 -html_term(verbatim(Text)) --> !,html_term293,8968 -html_term(nl) --> !, newline. % Just to improve HTML source readabilityhtml_term295,9028 -html_term(nl) --> !, newline. % Just to improve HTML source readabilityhtml_term295,9028 -html_term(nl) --> !, newline. % Just to improve HTML source readabilityhtml_term295,9028 -html_term([]) --> !.html_term296,9100 -html_term([]) --> !.html_term296,9100 -html_term([]) --> !.html_term296,9100 -html_term([E|Es]) --> !,html_term297,9121 -html_term([E|Es]) --> !,html_term297,9121 -html_term([E|Es]) --> !,html_term297,9121 -html_term(begin(T)) --> {atom(T), atom_codes(T,TS)}, !,html_term300,9191 -html_term(begin(T)) --> {atom(T), atom_codes(T,TS)}, !,html_term300,9191 -html_term(begin(T)) --> {atom(T), atom_codes(T,TS)}, !,html_term300,9191 -html_term(begin(T,Atts)) --> {atom(T), atom_codes(T,TS)}, !,html_term302,9275 -html_term(begin(T,Atts)) --> {atom(T), atom_codes(T,TS)}, !,html_term302,9275 -html_term(begin(T,Atts)) --> {atom(T), atom_codes(T,TS)}, !,html_term302,9275 -html_term(end(T)) --> {atom(T), atom_codes(T,TS)}, !,html_term306,9398 -html_term(end(T)) --> {atom(T), atom_codes(T,TS)}, !,html_term306,9398 -html_term(end(T)) --> {atom(T), atom_codes(T,TS)}, !,html_term306,9398 -html_term(env(Name,Atts,Text)) --> {atom(Name), atom_codes(Name,NS)}, !,html_term308,9481 -html_term(env(Name,Atts,Text)) --> {atom(Name), atom_codes(Name,NS)}, !,html_term308,9481 -html_term(env(Name,Atts,Text)) --> {atom(Name), atom_codes(Name,NS)}, !,html_term308,9481 -html_term(T$Atts) --> {atom(T), atom_codes(T,TS)}, !,html_term310,9591 -html_term(T$Atts) --> {atom(T), atom_codes(T,TS)}, !,html_term310,9591 -html_term(T$Atts) --> {atom(T), atom_codes(T,TS)}, !,html_term310,9591 -html_term(elem(N,Atts)) --> {atom(N), atom_codes(N,NS)}, !,html_term315,9727 -html_term(elem(N,Atts)) --> {atom(N), atom_codes(N,NS)}, !,html_term315,9727 -html_term(elem(N,Atts)) --> {atom(N), atom_codes(N,NS)}, !,html_term315,9727 -html_term(F) --> {F =.. [Env,X], atom_codes(Env, ES)}, !,html_term319,9850 -html_term(F) --> {F =.. [Env,X], atom_codes(Env, ES)}, !,html_term319,9850 -html_term(F) --> {F =.. [Env,X], atom_codes(Env, ES)}, !,html_term319,9850 -html_term(F) --> {F =.. [Env,Atts,X], atom_codes(Env, ES)}, !,html_term321,9932 -html_term(F) --> {F =.. [Env,Atts,X], atom_codes(Env, ES)}, !,html_term321,9932 -html_term(F) --> {F =.. [Env,Atts,X], atom_codes(Env, ES)}, !,html_term321,9932 -html_term(C) --> {integer(C), C >= 0, C =< 255}, !, [C].html_term323,10029 -html_term(C) --> {integer(C), C >= 0, C =< 255}, !, [C].html_term323,10029 -html_term(C) --> {integer(C), C >= 0, C =< 255}, !, [C].html_term323,10029 -html_term(T) -->html_term324,10086 -html_term(T) -->html_term324,10086 -html_term(T) -->html_term324,10086 -newline --> [10].newline327,10128 -html_atts([]) --> [].html_atts329,10147 -html_atts([]) --> [].html_atts329,10147 -html_atts([]) --> [].html_atts329,10147 -html_atts([A|As]) -->html_atts330,10169 -html_atts([A|As]) -->html_atts330,10169 -html_atts([A|As]) -->html_atts330,10169 -html_att(A=V) --> {atom_codes(A,AS)}, !,html_att335,10249 -html_att(A=V) --> {atom_codes(A,AS)}, !,html_att335,10249 -html_att(A=V) --> {atom_codes(A,AS)}, !,html_att335,10249 -html_att(A) --> {atom_codes(A,AS)},html_att337,10341 -html_att(A) --> {atom_codes(A,AS)},html_att337,10341 -html_att(A) --> {atom_codes(A,AS)},html_att337,10341 -html_env(E,I) -->html_env340,10399 -html_env(E,I) -->html_env340,10399 -html_env(E,I) -->html_env340,10399 -html_env_atts(E,Atts,I) -->html_env_atts345,10495 -html_env_atts(E,Atts,I) -->html_env_atts345,10495 -html_env_atts(E,Atts,I) -->html_env_atts345,10495 -html_items([]) --> [].html_items352,10635 -html_items([]) --> [].html_items352,10635 -html_items([]) --> [].html_items352,10635 -html_items([It|Its]) -->html_items353,10658 -html_items([It|Its]) -->html_items353,10658 -html_items([It|Its]) -->html_items353,10658 -html_descriptions([]) --> [].html_descriptions360,10782 -html_descriptions([]) --> [].html_descriptions360,10782 -html_descriptions([]) --> [].html_descriptions360,10782 -html_descriptions([D|Ds]) -->html_descriptions361,10812 -html_descriptions([D|Ds]) -->html_descriptions361,10812 -html_descriptions([D|Ds]) -->html_descriptions361,10812 -html_description((T,D)) --> !,html_description365,10903 -html_description((T,D)) --> !,html_description365,10903 -html_description((T,D)) --> !,html_description365,10903 -html_description(D) -->html_description371,11035 -html_description(D) -->html_description371,11035 -html_description(D) -->html_description371,11035 -html_nice_items([],_) --> [].html_nice_items377,11132 -html_nice_items([],_) --> [].html_nice_items377,11132 -html_nice_items([],_) --> [].html_nice_items377,11132 -html_nice_items([It|Its],Dot) -->html_nice_items378,11162 -html_nice_items([It|Its],Dot) -->html_nice_items378,11162 -html_nice_items([It|Its],Dot) -->html_nice_items378,11162 -preformatted_lines([]) --> [].preformatted_lines387,11379 -preformatted_lines([]) --> [].preformatted_lines387,11379 -preformatted_lines([]) --> [].preformatted_lines387,11379 -preformatted_lines([X|Xs]) -->preformatted_lines388,11410 -preformatted_lines([X|Xs]) -->preformatted_lines388,11410 -preformatted_lines([X|Xs]) -->preformatted_lines388,11410 -html_options([]) --> [].html_options393,11513 -html_options([]) --> [].html_options393,11513 -html_options([]) --> [].html_options393,11513 -html_options([Op|Ops]) -->html_options394,11538 -html_options([Op|Ops]) -->html_options394,11538 -html_options([Op|Ops]) -->html_options394,11538 -html_option($Op) --> !,html_option399,11635 -html_option($Op) --> !,html_option399,11635 -html_option($Op) --> !,html_option399,11635 -html_option(Op) -->html_option401,11721 -html_option(Op) -->html_option401,11721 -html_option(Op) -->html_option401,11721 -html_one_option([], _) --> [].html_one_option404,11795 -html_one_option([], _) --> [].html_one_option404,11795 -html_one_option([], _) --> [].html_one_option404,11795 -html_one_option([Op|Ops], Sel) -->html_one_option405,11826 -html_one_option([Op|Ops], Sel) -->html_one_option405,11826 -html_one_option([Op|Ops], Sel) -->html_one_option405,11826 -html_one_option_sel(Op, Op) --> !, " selected".html_one_option_sel412,12017 -html_one_option_sel(Op, Op) --> !, " selected".html_one_option_sel412,12017 -html_one_option_sel(Op, Op) --> !, " selected".html_one_option_sel412,12017 -html_one_option_sel(_, _) --> "".html_one_option_sel413,12065 -html_one_option_sel(_, _) --> "".html_one_option_sel413,12065 -html_one_option_sel(_, _) --> "".html_one_option_sel413,12065 -html_quoted(T) -->html_quoted415,12100 -html_quoted(T) -->html_quoted415,12100 -html_quoted(T) -->html_quoted415,12100 -html_quoted_chars([]) --> [].html_quoted_chars419,12199 -html_quoted_chars([]) --> [].html_quoted_chars419,12199 -html_quoted_chars([]) --> [].html_quoted_chars419,12199 -html_quoted_chars([C|T]) -->html_quoted_chars420,12229 -html_quoted_chars([C|T]) -->html_quoted_chars420,12229 -html_quoted_chars([C|T]) -->html_quoted_chars420,12229 -html_quoted_char(0'>) --> !, ">".html_quoted_char424,12318 -html_quoted_char(0'>) --> !, ">".html_quoted_char424,12318 -html_quoted_char(0'>) --> !, ">".html_quoted_char424,12318 -html_quoted_char(0'<) --> !, "<".html_quoted_char425,12355 -html_quoted_char(0'<) --> !, "<".html_quoted_char425,12355 -html_quoted_char(0'<) --> !, "<".html_quoted_char425,12355 -html_quoted_char(0'&) --> !, "&".html_quoted_char426,12392 -html_quoted_char(0'&) --> !, "&".html_quoted_char426,12392 -html_quoted_char(0'&) --> !, "&".html_quoted_char426,12392 -html_quoted_char(0'") --> !, """.html_quoted_char427,12430 -html_quoted_char(0'") --> !, """.html_quoted_char427,12430 -html_quoted_char(0'") --> !, """.html_quoted_char427,12430 -html_quoted_char(0' ) --> !, " ".html_quoted_char428,12469 -html_quoted_char(0' ) --> !, " ".html_quoted_char428,12469 -html_quoted_char(0' ) --> !, " ".html_quoted_char428,12469 -html_quoted_char(C) --> [C].html_quoted_char429,12508 -html_quoted_char(C) --> [C].html_quoted_char429,12508 -html_quoted_char(C) --> [C].html_quoted_char429,12508 -prolog_term(V) -->prolog_term431,12540 -prolog_term(V) -->prolog_term431,12540 -prolog_term(V) -->prolog_term431,12540 -prolog_term(T) -->prolog_term433,12585 -prolog_term(T) -->prolog_term433,12585 -prolog_term(T) -->prolog_term433,12585 -prolog_term_maybe_args(0,_) --> !, "".prolog_term_maybe_args437,12692 -prolog_term_maybe_args(0,_) --> !, "".prolog_term_maybe_args437,12692 -prolog_term_maybe_args(0,_) --> !, "".prolog_term_maybe_args437,12692 -prolog_term_maybe_args(A,T) -->prolog_term_maybe_args438,12731 -prolog_term_maybe_args(A,T) -->prolog_term_maybe_args438,12731 -prolog_term_maybe_args(A,T) -->prolog_term_maybe_args438,12731 -prolog_term_args(N, N, T) --> !,prolog_term_args443,12823 -prolog_term_args(N, N, T) --> !,prolog_term_args443,12823 -prolog_term_args(N, N, T) --> !,prolog_term_args443,12823 -prolog_term_args(N, M, T) -->prolog_term_args446,12902 -prolog_term_args(N, M, T) -->prolog_term_args446,12902 -prolog_term_args(N, M, T) -->prolog_term_args446,12902 -html_template(Chars, Terms, Dict) :-html_template513,15101 -html_template(Chars, Terms, Dict) :-html_template513,15101 -html_template(Chars, Terms, Dict) :-html_template513,15101 -parse_html(Stack,NStack,Dict) -->parse_html517,15215 -parse_html(Stack,NStack,Dict) -->parse_html517,15215 -parse_html(Stack,NStack,Dict) -->parse_html517,15215 -parse_html([Elem|Stack],NStack,Dict) -->parse_html523,15408 -parse_html([Elem|Stack],NStack,Dict) -->parse_html523,15408 -parse_html([Elem|Stack],NStack,Dict) -->parse_html523,15408 -parse_html(Stack,NStack,Dict) -->parse_html529,15605 -parse_html(Stack,NStack,Dict) -->parse_html529,15605 -parse_html(Stack,NStack,Dict) -->parse_html529,15605 -parse_html(Stack,NStack,_Dict) --> "",parse_html533,15745 -parse_html(Stack,NStack,_Dict) --> "",parse_html533,15745 -parse_html(Stack,NStack,_Dict) --> "",parse_html533,15745 -html_unit(S,NS,Dict) -->html_unit538,15873 -html_unit(S,NS,Dict) -->html_unit538,15873 -html_unit(S,NS,Dict) -->html_unit538,15873 -html_unit(S,[comment(Text)|S],_Dict) -->html_unit546,16027 -html_unit(S,[comment(Text)|S],_Dict) -->html_unit546,16027 -html_unit(S,[comment(Text)|S],_Dict) -->html_unit546,16027 -html_unit(S,[declare(Text)|S],_Dict) -->html_unit552,16145 -html_unit(S,[declare(Text)|S],_Dict) -->html_unit552,16145 -html_unit(S,[declare(Text)|S],_Dict) -->html_unit552,16145 -html_unit(S,[N$A|S],Dict) -->html_unit558,16253 -html_unit(S,[N$A|S],Dict) -->html_unit558,16253 -html_unit(S,[N$A|S],Dict) -->html_unit558,16253 -html_tag(N) -->html_tag565,16381 -html_tag(N) -->html_tag565,16381 -html_tag(N) -->html_tag565,16381 -html_tag_rest([C|Cs]) -->html_tag_rest570,16481 -html_tag_rest([C|Cs]) -->html_tag_rest570,16481 -html_tag_rest([C|Cs]) -->html_tag_rest570,16481 -html_tag_rest([]) --> "".html_tag_rest573,16563 -html_tag_rest([]) --> "".html_tag_rest573,16563 -html_tag_rest([]) --> "".html_tag_rest573,16563 -html_tag_char(C) --> loupalpha(C).html_tag_char575,16590 -html_tag_char(C) --> loupalpha(C).html_tag_char575,16590 -html_tag_char(C) --> loupalpha(C).html_tag_char575,16590 -html_tag_char(C) --> loupalpha(C).html_tag_char575,16590 -html_tag_char(C) --> loupalpha(C).html_tag_char575,16590 -html_tag_char(C) --> digit(C).html_tag_char576,16625 -html_tag_char(C) --> digit(C).html_tag_char576,16625 -html_tag_char(C) --> digit(C).html_tag_char576,16625 -html_tag_char(C) --> digit(C).html_tag_char576,16625 -html_tag_char(C) --> digit(C).html_tag_char576,16625 -html_tag_char(0'.) --> ".".html_tag_char577,16656 -html_tag_char(0'.) --> ".".html_tag_char577,16656 -html_tag_char(0'.) --> ".".html_tag_char577,16656 -html_tag_char(0'-) --> "-".html_tag_char578,16684 -html_tag_char(0'-) --> "-".html_tag_char578,16684 -html_tag_char(0'-) --> "-".html_tag_char578,16684 -html_tag_atts([],_Dict) --> "".html_tag_atts581,16714 -html_tag_atts([],_Dict) --> "".html_tag_atts581,16714 -html_tag_atts([],_Dict) --> "".html_tag_atts581,16714 -html_tag_atts([A|As],Dict) -->html_tag_atts582,16746 -html_tag_atts([A|As],Dict) -->html_tag_atts582,16746 -html_tag_atts([A|As],Dict) -->html_tag_atts582,16746 -html_tag_att(A,Dict) -->html_tag_att588,16880 -html_tag_att(A,Dict) -->html_tag_att588,16880 -html_tag_att(A,Dict) -->html_tag_att588,16880 -html_tag_att(A,Dict) -->html_tag_att592,17007 -html_tag_att(A,Dict) -->html_tag_att592,17007 -html_tag_att(A,Dict) -->html_tag_att592,17007 -html_opt_value(N = V, N, Dict) -->html_opt_value596,17090 -html_opt_value(N = V, N, Dict) -->html_opt_value596,17090 -html_opt_value(N = V, N, Dict) -->html_opt_value596,17090 -html_opt_value(N, N,_Dict) --> "".html_opt_value601,17212 -html_opt_value(N, N,_Dict) --> "".html_opt_value601,17212 -html_opt_value(N, N,_Dict) --> "".html_opt_value601,17212 -html_value(V, Dict) -->html_value604,17268 -html_value(V, Dict) -->html_value604,17268 -html_value(V, Dict) -->html_value604,17268 -html_value(V,_Dict) --> http_quoted_string(V).html_value609,17447 -html_value(V,_Dict) --> http_quoted_string(V).html_value609,17447 -html_value(V,_Dict) --> http_quoted_string(V).html_value609,17447 -html_value(V,_Dict) --> http_quoted_string(V).html_value609,17447 -html_value(V,_Dict) --> http_quoted_string(V).html_value609,17447 -html_value(V,_Dict) --> html_lax_value(V).html_value610,17494 -html_value(V,_Dict) --> html_lax_value(V).html_value610,17494 -html_value(V,_Dict) --> html_lax_value(V).html_value610,17494 -html_value(V,_Dict) --> html_lax_value(V).html_value610,17494 -html_value(V,_Dict) --> html_lax_value(V).html_value610,17494 -html_lax_value([C|Cs]) --> [C], { C \== 0'> , C > 32 },html_lax_value612,17538 -html_lax_value([C|Cs]) --> [C], { C \== 0'> , C > 32 },html_lax_value612,17538 -html_lax_value([C|Cs]) --> [C], { C \== 0'> , C > 32 },html_lax_value612,17538 -html_lax_value([]) --> "".html_lax_value614,17622 -html_lax_value([]) --> "".html_lax_value614,17622 -html_lax_value([]) --> "".html_lax_value614,17622 -poptokenstack(EnvTag,Stack,NStack,Dict) :-poptokenstack616,17650 -poptokenstack(EnvTag,Stack,NStack,Dict) :-poptokenstack616,17650 -poptokenstack(EnvTag,Stack,NStack,Dict) :-poptokenstack616,17650 -poptokenstack(EnvTag,Stack,[SlashEnvTag$[]|Stack],_) :-poptokenstack619,17749 -poptokenstack(EnvTag,Stack,[SlashEnvTag$[]|Stack],_) :-poptokenstack619,17749 -poptokenstack(EnvTag,Stack,[SlashEnvTag$[]|Stack],_) :-poptokenstack619,17749 -pop_ts(EnvTag,[Elem|S],Insides,NS,Dict) :-pop_ts622,17851 -pop_ts(EnvTag,[Elem|S],Insides,NS,Dict) :-pop_ts622,17851 -pop_ts(EnvTag,[Elem|S],Insides,NS,Dict) :-pop_ts622,17851 -elem_or_template_var('v',_,[NameS],Var,Dict) :-elem_or_template_var629,18087 -elem_or_template_var('v',_,[NameS],Var,Dict) :-elem_or_template_var629,18087 -elem_or_template_var('v',_,[NameS],Var,Dict) :-elem_or_template_var629,18087 -elem_or_template_var(EnvTag,Atts,Insides,env(EnvTag,Atts,Insides),_).elem_or_template_var632,18230 -elem_or_template_var(EnvTag,Atts,Insides,env(EnvTag,Atts,Insides),_).elem_or_template_var632,18230 -tidy_string([Elem|Stack],[L|Stack]) :-tidy_string634,18301 -tidy_string([Elem|Stack],[L|Stack]) :-tidy_string634,18301 -tidy_string([Elem|Stack],[L|Stack]) :-tidy_string634,18301 -tidy_string(Stack,Stack).tidy_string636,18393 -tidy_string(Stack,Stack).tidy_string636,18393 -parse_xml(Stack,NStack,Dict) -->parse_xml640,18452 -parse_xml(Stack,NStack,Dict) -->parse_xml640,18452 -parse_xml(Stack,NStack,Dict) -->parse_xml640,18452 -parse_xml([Elem|Stack],NStack,Dict) -->parse_xml646,18642 -parse_xml([Elem|Stack],NStack,Dict) -->parse_xml646,18642 -parse_xml([Elem|Stack],NStack,Dict) -->parse_xml646,18642 -parse_xml(Stack,NStack,Dict) -->parse_xml652,18837 -parse_xml(Stack,NStack,Dict) -->parse_xml652,18837 -parse_xml(Stack,NStack,Dict) -->parse_xml652,18837 -parse_xml(Stack,NStack,_Dict) --> "",parse_xml656,18975 -parse_xml(Stack,NStack,_Dict) --> "",parse_xml656,18975 -parse_xml(Stack,NStack,_Dict) --> "",parse_xml656,18975 -xml_unit(S,NS,Dict) -->xml_unit661,19102 -xml_unit(S,NS,Dict) -->xml_unit661,19102 -xml_unit(S,NS,Dict) -->xml_unit661,19102 -xml_unit(S,[comment(Text)|S],_Dict) -->xml_unit669,19254 -xml_unit(S,[comment(Text)|S],_Dict) -->xml_unit669,19254 -xml_unit(S,[comment(Text)|S],_Dict) -->xml_unit669,19254 -xml_unit(S,[declare(Text)|S],_Dict) -->xml_unit675,19371 -xml_unit(S,[declare(Text)|S],_Dict) -->xml_unit675,19371 -xml_unit(S,[declare(Text)|S],_Dict) -->xml_unit675,19371 -xml_unit(S,[xmldecl(Ats)|S],Dict) -->xml_unit681,19489 -xml_unit(S,[xmldecl(Ats)|S],Dict) -->xml_unit681,19489 -xml_unit(S,[xmldecl(Ats)|S],Dict) -->xml_unit681,19489 -xml_unit(S,[El|S],Dict) -->xml_unit688,19650 -xml_unit(S,[El|S],Dict) -->xml_unit688,19650 -xml_unit(S,[El|S],Dict) -->xml_unit688,19650 -elem_envbeg(elem(N,A), N, A) -->elem_envbeg696,19805 -elem_envbeg(elem(N,A), N, A) -->elem_envbeg696,19805 -elem_envbeg(elem(N,A), N, A) -->elem_envbeg696,19805 -elem_envbeg(N$A,N, A) --> "".elem_envbeg698,19854 -elem_envbeg(N$A,N, A) --> "".elem_envbeg698,19854 -elem_envbeg(N$A,N, A) --> "".elem_envbeg698,19854 -xml_tag(N) -->xml_tag700,19885 -xml_tag(N) -->xml_tag700,19885 -xml_tag(N) -->xml_tag700,19885 -xml_tag_atts([],_Dict) --> "".xml_tag_atts705,19987 -xml_tag_atts([],_Dict) --> "".xml_tag_atts705,19987 -xml_tag_atts([],_Dict) --> "".xml_tag_atts705,19987 -xml_tag_atts([A|As],Dict) -->xml_tag_atts706,20018 -xml_tag_atts([A|As],Dict) -->xml_tag_atts706,20018 -xml_tag_atts([A|As],Dict) -->xml_tag_atts706,20018 -xml_tag_att(N=V,Dict) -->xml_tag_att711,20129 -xml_tag_att(N=V,Dict) -->xml_tag_att711,20129 -xml_tag_att(N=V,Dict) -->xml_tag_att711,20129 -xml_value(V, Dict) -->xml_value718,20259 -xml_value(V, Dict) -->xml_value718,20259 -xml_value(V, Dict) -->xml_value718,20259 -xml_value(V,_Dict) -->xml_value722,20356 -xml_value(V,_Dict) -->xml_value722,20356 -xml_value(V,_Dict) -->xml_value722,20356 -xml_value(V,_Dict) -->xml_value725,20427 -xml_value(V,_Dict) -->xml_value725,20427 -xml_value(V,_Dict) -->xml_value725,20427 -xml_value(V,_Dict) --> % This is not correct syntaxxml_value728,20497 -xml_value(V,_Dict) --> % This is not correct syntaxxml_value728,20497 -xml_value(V,_Dict) --> % This is not correct syntaxxml_value728,20497 -xml_quoted_string(Q, []) --> [Q], !.xml_quoted_string731,20576 -xml_quoted_string(Q, []) --> [Q], !.xml_quoted_string731,20576 -xml_quoted_string(Q, []) --> [Q], !.xml_quoted_string731,20576 -xml_quoted_string(Q, [0'&,0'q,0'u,0'o,0't,0';|Cs]) -->xml_quoted_string732,20613 -xml_quoted_string(Q, [0'&,0'q,0'u,0'o,0't,0';|Cs]) -->xml_quoted_string732,20613 -xml_quoted_string(Q, [0'&,0'q,0'u,0'o,0't,0';|Cs]) -->xml_quoted_string732,20613 -xml_quoted_string(Q, [C|Cs]) -->xml_quoted_string735,20716 -xml_quoted_string(Q, [C|Cs]) -->xml_quoted_string735,20716 -xml_quoted_string(Q, [C|Cs]) -->xml_quoted_string735,20716 -xml_bad_value([]) --> "".xml_bad_value739,20797 -xml_bad_value([]) --> "".xml_bad_value739,20797 -xml_bad_value([]) --> "".xml_bad_value739,20797 -xml_bad_value([C|Cs]) -->xml_bad_value740,20823 -xml_bad_value([C|Cs]) -->xml_bad_value740,20823 -xml_bad_value([C|Cs]) -->xml_bad_value740,20823 -xml_tag_start(C) --> loalpha(C).xml_tag_start744,20890 -xml_tag_start(C) --> loalpha(C).xml_tag_start744,20890 -xml_tag_start(C) --> loalpha(C).xml_tag_start744,20890 -xml_tag_start(C) --> loalpha(C).xml_tag_start744,20890 -xml_tag_start(C) --> loalpha(C).xml_tag_start744,20890 -xml_tag_start(C) --> upalpha(C).xml_tag_start745,20923 -xml_tag_start(C) --> upalpha(C).xml_tag_start745,20923 -xml_tag_start(C) --> upalpha(C).xml_tag_start745,20923 -xml_tag_start(C) --> upalpha(C).xml_tag_start745,20923 -xml_tag_start(C) --> upalpha(C).xml_tag_start745,20923 -xml_tag_start(0'_) --> "_".xml_tag_start746,20956 -xml_tag_start(0'_) --> "_".xml_tag_start746,20956 -xml_tag_start(0'_) --> "_".xml_tag_start746,20956 -xml_tag_start(0':) --> ":".xml_tag_start747,20984 -xml_tag_start(0':) --> ":".xml_tag_start747,20984 -xml_tag_start(0':) --> ":".xml_tag_start747,20984 -xml_tag_rest([C|Cs]) -->xml_tag_rest749,21013 -xml_tag_rest([C|Cs]) -->xml_tag_rest749,21013 -xml_tag_rest([C|Cs]) -->xml_tag_rest749,21013 -xml_tag_rest([]) --> "".xml_tag_rest752,21092 -xml_tag_rest([]) --> "".xml_tag_rest752,21092 -xml_tag_rest([]) --> "".xml_tag_rest752,21092 -xml_tag_char(C) --> loalpha(C).xml_tag_char754,21118 -xml_tag_char(C) --> loalpha(C).xml_tag_char754,21118 -xml_tag_char(C) --> loalpha(C).xml_tag_char754,21118 -xml_tag_char(C) --> loalpha(C).xml_tag_char754,21118 -xml_tag_char(C) --> loalpha(C).xml_tag_char754,21118 -xml_tag_char(C) --> upalpha(C).xml_tag_char755,21150 -xml_tag_char(C) --> upalpha(C).xml_tag_char755,21150 -xml_tag_char(C) --> upalpha(C).xml_tag_char755,21150 -xml_tag_char(C) --> upalpha(C).xml_tag_char755,21150 -xml_tag_char(C) --> upalpha(C).xml_tag_char755,21150 -xml_tag_char(C) --> digit(C).xml_tag_char756,21182 -xml_tag_char(C) --> digit(C).xml_tag_char756,21182 -xml_tag_char(C) --> digit(C).xml_tag_char756,21182 -xml_tag_char(C) --> digit(C).xml_tag_char756,21182 -xml_tag_char(C) --> digit(C).xml_tag_char756,21182 -xml_tag_char(0'_) --> "_".xml_tag_char757,21212 -xml_tag_char(0'_) --> "_".xml_tag_char757,21212 -xml_tag_char(0'_) --> "_".xml_tag_char757,21212 -xml_tag_char(0':) --> ":".xml_tag_char758,21239 -xml_tag_char(0':) --> ":".xml_tag_char758,21239 -xml_tag_char(0':) --> ":".xml_tag_char758,21239 -xml_tag_char(0'.) --> ".".xml_tag_char759,21266 -xml_tag_char(0'.) --> ".".xml_tag_char759,21266 -xml_tag_char(0'.) --> ".".xml_tag_char759,21266 -xml_tag_char(0'-) --> "-".xml_tag_char760,21293 -xml_tag_char(0'-) --> "-".xml_tag_char760,21293 -xml_tag_char(0'-) --> "-".xml_tag_char760,21293 -get_form_input(Dic) :-get_form_input775,21898 -get_form_input(Dic) :-get_form_input775,21898 -get_form_input(Dic) :-get_form_input775,21898 -get_form_input([]).get_form_input778,21995 -get_form_input([]).get_form_input778,21995 -get_form_input_method('GET', Dic) :-get_form_input_method780,22016 -get_form_input_method('GET', Dic) :-get_form_input_method780,22016 -get_form_input_method('GET', Dic) :-get_form_input_method780,22016 -get_form_input_method('POST', Dic) :-get_form_input_method785,22198 -get_form_input_method('POST', Dic) :-get_form_input_method785,22198 -get_form_input_method('POST', Dic) :-get_form_input_method785,22198 -get_form_input_method(M, _) :-get_form_input_method789,22402 -get_form_input_method(M, _) :-get_form_input_method789,22402 -get_form_input_method(M, _) :-get_form_input_method789,22402 -get_form_input_of_type(application, 'x-www-form-urlencoded', _, Dic) :-get_form_input_of_type793,22544 -get_form_input_of_type(application, 'x-www-form-urlencoded', _, Dic) :-get_form_input_of_type793,22544 -get_form_input_of_type(application, 'x-www-form-urlencoded', _, Dic) :-get_form_input_of_type793,22544 -get_form_input_of_type(multipart, 'form-data', Params, Dic) :-get_form_input_of_type801,22815 -get_form_input_of_type(multipart, 'form-data', Params, Dic) :-get_form_input_of_type801,22815 -get_form_input_of_type(multipart, 'form-data', Params, Dic) :-get_form_input_of_type801,22815 -get_form_input_of_type(Type,Subtype,_,_) :-get_form_input_of_type807,23072 -get_form_input_of_type(Type,Subtype,_,_) :-get_form_input_of_type807,23072 -get_form_input_of_type(Type,Subtype,_,_) :-get_form_input_of_type807,23072 -read_all(0) --> !, "".read_all812,23274 -read_all(0) --> !, "".read_all812,23274 -read_all(0) --> !, "".read_all812,23274 -read_all(N) -->read_all813,23297 -read_all(N) -->read_all813,23297 -read_all(N) -->read_all813,23297 -form_urlencoded_to_dic([]) --> "".form_urlencoded_to_dic823,23597 -form_urlencoded_to_dic([]) --> "".form_urlencoded_to_dic823,23597 -form_urlencoded_to_dic([]) --> "".form_urlencoded_to_dic823,23597 -form_urlencoded_to_dic([N1=V1|NVs]) -->form_urlencoded_to_dic824,23632 -form_urlencoded_to_dic([N1=V1|NVs]) -->form_urlencoded_to_dic824,23632 -form_urlencoded_to_dic([N1=V1|NVs]) -->form_urlencoded_to_dic824,23632 -chars_to([],C) --> [C].chars_to833,23883 -chars_to([],C) --> [C].chars_to833,23883 -chars_to([],C) --> [C].chars_to833,23883 -chars_to([C|Cs],D) -->chars_to834,23907 -chars_to([C|Cs],D) -->chars_to834,23907 -chars_to([C|Cs],D) -->chars_to834,23907 -expand_esc_plus([]) --> "".expand_esc_plus840,24057 -expand_esc_plus([]) --> "".expand_esc_plus840,24057 -expand_esc_plus([]) --> "".expand_esc_plus840,24057 -expand_esc_plus([0'+|Cs]) --> !,expand_esc_plus841,24085 -expand_esc_plus([0'+|Cs]) --> !,expand_esc_plus841,24085 -expand_esc_plus([0'+|Cs]) --> !,expand_esc_plus841,24085 -expand_esc_plus([0'%,C1,C2|Cs]) --> !,expand_esc_plus844,24160 -expand_esc_plus([0'%,C1,C2|Cs]) --> !,expand_esc_plus844,24160 -expand_esc_plus([0'%,C1,C2|Cs]) --> !,expand_esc_plus844,24160 -expand_esc_plus([C|Cs]) -->expand_esc_plus850,24324 -expand_esc_plus([C|Cs]) -->expand_esc_plus850,24324 -expand_esc_plus([C|Cs]) -->expand_esc_plus850,24324 -hex_digit(C, D) :-hex_digit854,24395 -hex_digit(C, D) :-hex_digit854,24395 -hex_digit(C, D) :-hex_digit854,24395 -to_value([L|Ls], V) :-to_value861,24541 -to_value([L|Ls], V) :-to_value861,24541 -to_value([L|Ls], V) :-to_value861,24541 -to_value_([], [], '$empty') :- !.to_value_864,24594 -to_value_([], [], '$empty') :- !.to_value_864,24594 -to_value_([], [], '$empty') :- !.to_value_864,24594 -to_value_([], L, V) :- !,to_value_865,24628 -to_value_([], L, V) :- !,to_value_865,24628 -to_value_([], L, V) :- !,to_value_865,24628 -to_value_(Ls, L, [L|Ls]). % else, return the list of linesto_value_867,24724 -to_value_(Ls, L, [L|Ls]). % else, return the list of linesto_value_867,24724 -http_lines([L|Ls]) -->http_lines876,25151 -http_lines([L|Ls]) -->http_lines876,25151 -http_lines([L|Ls]) -->http_lines876,25151 -http_lines([]) --> "".http_lines879,25223 -http_lines([]) --> "".http_lines879,25223 -http_lines([]) --> "".http_lines879,25223 -get_multipart_form_data(end, _, []).get_multipart_form_data884,25328 -get_multipart_form_data(end, _, []).get_multipart_form_data884,25328 -get_multipart_form_data(continue, Boundary, [N=V|NVs]) :-get_multipart_form_data885,25365 -get_multipart_form_data(continue, Boundary, [N=V|NVs]) :-get_multipart_form_data885,25365 -get_multipart_form_data(continue, Boundary, [N=V|NVs]) :-get_multipart_form_data885,25365 -get_lines_to_boundary(Boundary, Lines, End) :-get_lines_to_boundary890,25571 -get_lines_to_boundary(Boundary, Lines, End) :-get_lines_to_boundary890,25571 -get_lines_to_boundary(Boundary, Lines, End) :-get_lines_to_boundary890,25571 -get_lines_to_boundary_(Line, Boundary, Lines, End) :-get_lines_to_boundary_894,25703 -get_lines_to_boundary_(Line, Boundary, Lines, End) :-get_lines_to_boundary_894,25703 -get_lines_to_boundary_(Line, Boundary, Lines, End) :-get_lines_to_boundary_894,25703 -get_lines_to_boundary_(Line, Boundary, [Line|Lines], End) :-get_lines_to_boundary_898,25842 -get_lines_to_boundary_(Line, Boundary, [Line|Lines], End) :-get_lines_to_boundary_898,25842 -get_lines_to_boundary_(Line, Boundary, [Line|Lines], End) :-get_lines_to_boundary_898,25842 -check_end([], continue).check_end902,25998 -check_end([], continue).check_end902,25998 -check_end("--", end).check_end903,26023 -check_end("--", end).check_end903,26023 -extract_name_value([L|Ls], N, V) :-extract_name_value905,26046 -extract_name_value([L|Ls], N, V) :-extract_name_value905,26046 -extract_name_value([L|Ls], N, V) :-extract_name_value905,26046 -head_and_body_lines([], BLs, [], BLs) :- !.head_and_body_lines910,26201 -head_and_body_lines([], BLs, [], BLs) :- !.head_and_body_lines910,26201 -head_and_body_lines([], BLs, [], BLs) :- !.head_and_body_lines910,26201 -head_and_body_lines(HL, [L|Ls], [HL|HLs], BLs) :-head_and_body_lines911,26245 -head_and_body_lines(HL, [L|Ls], [HL|HLs], BLs) :-head_and_body_lines911,26245 -head_and_body_lines(HL, [L|Ls], [HL|HLs], BLs) :-head_and_body_lines911,26245 -extract_name_type(HLs, N, T) :-extract_name_type914,26342 -extract_name_type(HLs, N, T) :-extract_name_type914,26342 -extract_name_type(HLs, N, T) :-extract_name_type914,26342 -content_disposition_header(Params) -->content_disposition_header920,26518 -content_disposition_header(Params) -->content_disposition_header920,26518 -content_disposition_header(Params) -->content_disposition_header920,26518 -extract_name(Params, N) :-extract_name924,26634 -extract_name(Params, N) :-extract_name924,26634 -extract_name(Params, N) :-extract_name924,26634 -extract_type(Params, T) :-extract_type928,26727 -extract_type(Params, T) :-extract_type928,26727 -extract_type(Params, T) :-extract_type928,26727 -extract_value(data, [L|Ls], V) :-extract_value936,26897 -extract_value(data, [L|Ls], V) :-extract_value936,26897 -extract_value(data, [L|Ls], V) :-extract_value936,26897 -extract_value(file(F), Ls, file(F,Ls)).extract_value938,26960 -extract_value(file(F), Ls, file(F,Ls)).extract_value938,26960 -get_form_value([],_Var,'').get_form_value951,27515 -get_form_value([],_Var,'').get_form_value951,27515 -get_form_value([Var=Val|_],Var,Val) :- !.get_form_value952,27543 -get_form_value([Var=Val|_],Var,Val) :- !.get_form_value952,27543 -get_form_value([Var=Val|_],Var,Val) :- !.get_form_value952,27543 -get_form_value([_|Dic],Var,Val) :- get_form_value953,27585 -get_form_value([_|Dic],Var,Val) :- get_form_value953,27585 -get_form_value([_|Dic],Var,Val) :- get_form_value953,27585 -text_lines('$empty', []) :- !.text_lines963,27949 -text_lines('$empty', []) :- !.text_lines963,27949 -text_lines('$empty', []) :- !.text_lines963,27949 -text_lines(A, [L]) :-text_lines964,27980 -text_lines(A, [L]) :-text_lines964,27980 -text_lines(A, [L]) :-text_lines964,27980 -text_lines(T,T).text_lines967,28043 -text_lines(T,T).text_lines967,28043 -form_empty_value(T) :-form_empty_value975,28340 -form_empty_value(T) :-form_empty_value975,28340 -form_empty_value(T) :-form_empty_value975,28340 -empty_lines([]).empty_lines979,28416 -empty_lines([]).empty_lines979,28416 -empty_lines([L|Ls]) :-empty_lines980,28433 -empty_lines([L|Ls]) :-empty_lines980,28433 -empty_lines([L|Ls]) :-empty_lines980,28433 -form_default(Val,Default,NewVal) :- form_default991,28852 -form_default(Val,Default,NewVal) :- form_default991,28852 -form_default(Val,Default,NewVal) :- form_default991,28852 -form_request_method(M) :-form_request_method998,29121 -form_request_method(M) :-form_request_method998,29121 -form_request_method(M) :-form_request_method998,29121 -my_url(URL) :-my_url1007,29374 -my_url(URL) :-my_url1007,29374 -my_url(URL) :-my_url1007,29374 -set_cookie(Name,Value) :-set_cookie1031,30057 -set_cookie(Name,Value) :-set_cookie1031,30057 -set_cookie(Name,Value) :-set_cookie1031,30057 -get_cookies(Cs) :-get_cookies1044,30488 -get_cookies(Cs) :-get_cookies1044,30488 -get_cookies(Cs) :-get_cookies1044,30488 -get_cookies([]).get_cookies1047,30586 -get_cookies([]).get_cookies1047,30586 -cookies([]) --> "".cookies1049,30604 -cookies([]) --> "".cookies1049,30604 -cookies([]) --> "".cookies1049,30604 -cookies([C=V|Cs]) -->cookies1050,30624 -cookies([C=V|Cs]) -->cookies1050,30624 -cookies([C=V|Cs]) -->cookies1050,30624 -cookie_str([C]) -->cookie_str1061,30772 -cookie_str([C]) -->cookie_str1061,30772 -cookie_str([C]) -->cookie_str1061,30772 -cookie_str([C|Cs]) -->cookie_str1063,30815 -cookie_str([C|Cs]) -->cookie_str1063,30815 -cookie_str([C|Cs]) -->cookie_str1063,30815 -legal_cookie_char(C) -->legal_cookie_char1067,30879 -legal_cookie_char(C) -->legal_cookie_char1067,30879 -legal_cookie_char(C) -->legal_cookie_char1067,30879 -url_query(Args, URLArgs) :-url_query1082,31357 -url_query(Args, URLArgs) :-url_query1082,31357 -url_query(Args, URLArgs) :-url_query1082,31357 -params_to_string([], _, "").params_to_string1085,31432 -params_to_string([], _, "").params_to_string1085,31432 -params_to_string([N=V|NVs], C, [C|String]) :-params_to_string1086,31461 -params_to_string([N=V|NVs], C, [C|String]) :-params_to_string1086,31461 -params_to_string([N=V|NVs], C, [C|String]) :-params_to_string1086,31461 -encoded_value([]) --> "".encoded_value1093,31663 -encoded_value([]) --> "".encoded_value1093,31663 -encoded_value([]) --> "".encoded_value1093,31663 -encoded_value([32|Cs]) --> !, % " " = [32]encoded_value1094,31689 -encoded_value([32|Cs]) --> !, % " " = [32]encoded_value1094,31689 -encoded_value([32|Cs]) --> !, % " " = [32]encoded_value1094,31689 -encoded_value([C|Cs]) -->encoded_value1097,31772 -encoded_value([C|Cs]) -->encoded_value1097,31772 -encoded_value([C|Cs]) -->encoded_value1097,31772 -encoded_value([C|Cs]) -->encoded_value1101,31869 -encoded_value([C|Cs]) -->encoded_value1101,31869 -encoded_value([C|Cs]) -->encoded_value1101,31869 -no_conversion(0'*).no_conversion1106,31974 -no_conversion(0'*).no_conversion1106,31974 -no_conversion(0'-).no_conversion1107,31994 -no_conversion(0'-).no_conversion1107,31994 -no_conversion(0'.).no_conversion1108,32014 -no_conversion(0'.).no_conversion1108,32014 -no_conversion(0'_).no_conversion1109,32034 -no_conversion(0'_).no_conversion1109,32034 -no_conversion(C) :- C >= 0'0, C =< 0'9.no_conversion1110,32054 -no_conversion(C) :- C >= 0'0, C =< 0'9.no_conversion1110,32054 -no_conversion(C) :- C >= 0'0, C =< 0'9.no_conversion1110,32054 -no_conversion(C) :- C >= 0'@, C =< 0'Z.no_conversion1111,32094 -no_conversion(C) :- C >= 0'@, C =< 0'Z.no_conversion1111,32094 -no_conversion(C) :- C >= 0'@, C =< 0'Z.no_conversion1111,32094 -no_conversion(C) :- C >= 0'a, C =< 0'z.no_conversion1112,32134 -no_conversion(C) :- C >= 0'a, C =< 0'z.no_conversion1112,32134 -no_conversion(C) :- C >= 0'a, C =< 0'z.no_conversion1112,32134 -hex_chars(C, H, L) :-hex_chars1114,32175 -hex_chars(C, H, L) :-hex_chars1114,32175 -hex_chars(C, H, L) :-hex_chars1114,32175 -hex_char(N,C) :- N < 10, !, C is N+0'0.hex_char1120,32291 -hex_char(N,C) :- N < 10, !, C is N+0'0.hex_char1120,32291 -hex_char(N,C) :- N < 10, !, C is N+0'0.hex_char1120,32291 -hex_char(N,C) :- C is N-10+0'A.hex_char1121,32331 -hex_char(N,C) :- C is N-10+0'A.hex_char1121,32331 -hex_char(N,C) :- C is N-10+0'A.hex_char1121,32331 -url_info(Url, Info) :-url_info1134,32744 -url_info(Url, Info) :-url_info1134,32744 -url_info(Url, Info) :-url_info1134,32744 -url_info(Url, Info) :-url_info1138,32857 -url_info(Url, Info) :-url_info1138,32857 -url_info(Url, Info) :-url_info1138,32857 -url_info(Url, Info) :-url_info1141,32949 -url_info(Url, Info) :-url_info1141,32949 -url_info(Url, Info) :-url_info1141,32949 -url_to_info(Url, http(Host,Port,Document)) :-url_to_info1144,33005 -url_to_info(Url, http(Host,Port,Document)) :-url_to_info1144,33005 -url_to_info(Url, http(Host,Port,Document)) :-url_to_info1144,33005 -http_url(Host,Port,Doc) -->http_url1148,33142 -http_url(Host,Port,Doc) -->http_url1148,33142 -http_url(Host,Port,Doc) -->http_url1148,33142 -internet_host(Host) -->internet_host1154,33276 -internet_host(Host) -->internet_host1154,33276 -internet_host(Host) -->internet_host1154,33276 -internet_host_char_rest([C|Cs]) -->internet_host_char_rest1161,33427 -internet_host_char_rest([C|Cs]) -->internet_host_char_rest1161,33427 -internet_host_char_rest([C|Cs]) -->internet_host_char_rest1161,33427 -internet_host_char_rest([]) --> "".internet_host_char_rest1164,33531 -internet_host_char_rest([]) --> "".internet_host_char_rest1164,33531 -internet_host_char_rest([]) --> "".internet_host_char_rest1164,33531 -internet_host_char(C) --> digit(C).internet_host_char1166,33568 -internet_host_char(C) --> digit(C).internet_host_char1166,33568 -internet_host_char(C) --> digit(C).internet_host_char1166,33568 -internet_host_char(C) --> digit(C).internet_host_char1166,33568 -internet_host_char(C) --> digit(C).internet_host_char1166,33568 -internet_host_char(C) --> loupalpha(C).internet_host_char1167,33604 -internet_host_char(C) --> loupalpha(C).internet_host_char1167,33604 -internet_host_char(C) --> loupalpha(C).internet_host_char1167,33604 -internet_host_char(C) --> loupalpha(C).internet_host_char1167,33604 -internet_host_char(C) --> loupalpha(C).internet_host_char1167,33604 -internet_host_char(0'-) --> "-".internet_host_char1168,33644 -internet_host_char(0'-) --> "-".internet_host_char1168,33644 -internet_host_char(0'-) --> "-".internet_host_char1168,33644 -internet_host_char(0'.) --> ".".internet_host_char1169,33677 -internet_host_char(0'.) --> ".".internet_host_char1169,33677 -internet_host_char(0'.) --> ".".internet_host_char1169,33677 -optional_port(Port) -->optional_port1171,33711 -optional_port(Port) -->optional_port1171,33711 -optional_port(Port) -->optional_port1171,33711 -optional_port(80) --> "".optional_port1174,33780 -optional_port(80) --> "".optional_port1174,33780 -optional_port(80) --> "".optional_port1174,33780 -http_document([0'/|Doc]) -->http_document1176,33807 -http_document([0'/|Doc]) -->http_document1176,33807 -http_document([0'/|Doc]) -->http_document1176,33807 -http_document("/") --> "".http_document1179,33871 -http_document("/") --> "".http_document1179,33871 -http_document("/") --> "".http_document1179,33871 -rest(S, S, []).rest1181,33899 -rest(S, S, []).rest1181,33899 -instantiated_string(S) :- var(S), !, fail.instantiated_string1183,33916 -instantiated_string(S) :- var(S), !, fail.instantiated_string1183,33916 -instantiated_string(S) :- var(S), !, fail.instantiated_string1183,33916 -instantiated_string([]).instantiated_string1184,33959 -instantiated_string([]).instantiated_string1184,33959 -instantiated_string([C|Cs]) :-instantiated_string1185,33984 -instantiated_string([C|Cs]) :-instantiated_string1185,33984 -instantiated_string([C|Cs]) :-instantiated_string1185,33984 -info_to_url(http(Host,Port,Document), Info) :- !,info_to_url1189,34069 -info_to_url(http(Host,Port,Document), Info) :- !,info_to_url1189,34069 -info_to_url(http(Host,Port,Document), Info) :- !,info_to_url1189,34069 -port_codes(80, "") :- !.port_codes1197,34327 -port_codes(80, "") :- !.port_codes1197,34327 -port_codes(80, "") :- !.port_codes1197,34327 -port_codes(Port, [0':|PortS]) :-port_codes1198,34352 -port_codes(Port, [0':|PortS]) :-port_codes1198,34352 -port_codes(Port, [0':|PortS]) :-port_codes1198,34352 -url_info_relative(URL, Base, Info) :-url_info_relative1221,35364 -url_info_relative(URL, Base, Info) :-url_info_relative1221,35364 -url_info_relative(URL, Base, Info) :-url_info_relative1221,35364 -url_info_relative(URL, _Base, Info) :-url_info_relative1225,35504 -url_info_relative(URL, _Base, Info) :-url_info_relative1225,35504 -url_info_relative(URL, _Base, Info) :-url_info_relative1225,35504 -url_info_relative(Path, http(Host,Port,_), http(Host,Port,Path)) :-url_info_relative1227,35575 -url_info_relative(Path, http(Host,Port,_), http(Host,Port,Path)) :-url_info_relative1227,35575 -url_info_relative(Path, http(Host,Port,_), http(Host,Port,Path)) :-url_info_relative1227,35575 -url_info_relative(File, http(Host,Port,BaseDoc), http(Host,Port,Document)) :-url_info_relative1229,35670 -url_info_relative(File, http(Host,Port,BaseDoc), http(Host,Port,Document)) :-url_info_relative1229,35670 -url_info_relative(File, http(Host,Port,BaseDoc), http(Host,Port,Document)) :-url_info_relative1229,35670 -atomic_or_string(X) -->atomic_or_string1235,35949 -atomic_or_string(X) -->atomic_or_string1235,35949 -atomic_or_string(X) -->atomic_or_string1235,35949 -atomic_or_string(S) -->atomic_or_string1238,36027 -atomic_or_string(S) -->atomic_or_string1238,36027 -atomic_or_string(S) -->atomic_or_string1238,36027 -textarea_data('$empty') --> [].textarea_data1241,36071 -textarea_data('$empty') --> [].textarea_data1241,36071 -textarea_data('$empty') --> [].textarea_data1241,36071 -textarea_data(X) -->textarea_data1242,36103 -textarea_data(X) -->textarea_data1242,36103 -textarea_data(X) -->textarea_data1242,36103 -textarea_data(L) -->textarea_data1245,36178 -textarea_data(L) -->textarea_data1245,36178 -textarea_data(L) -->textarea_data1245,36178 -textarea_data(S) -->textarea_data1247,36225 -textarea_data(S) -->textarea_data1247,36225 -textarea_data(S) -->textarea_data1247,36225 -html_protect(Goal) :-html_protect1259,36599 -html_protect(Goal) :-html_protect1259,36599 -html_protect(Goal) :-html_protect1259,36599 -html_protect(_) :-html_protect1261,36665 -html_protect(_) :-html_protect1261,36665 -html_protect(_) :-html_protect1261,36665 -mappend([], []).mappend1267,36802 -mappend([], []).mappend1267,36802 -mappend([S|Ss], R) :-mappend1268,36819 -mappend([S|Ss], R) :-mappend1268,36819 -mappend([S|Ss], R) :-mappend1268,36819 -pillow_version("1.1").pillow_version1284,37354 -pillow_version("1.1").pillow_version1284,37354 -fetch_url(http(Host, Port, Document), Request, Response) :-fetch_url1304,38247 -fetch_url(http(Host, Port, Document), Request, Response) :-fetch_url1304,38247 -fetch_url(http(Host, Port, Document), Request, Response) :-fetch_url1304,38247 -timeout_option(Options, Timeout, RestOptions) :-timeout_option1313,38655 -timeout_option(Options, Timeout, RestOptions) :-timeout_option1313,38655 -timeout_option(Options, Timeout, RestOptions) :-timeout_option1313,38655 -timeout_option(Options, 300, Options).timeout_option1315,38763 -timeout_option(Options, 300, Options).timeout_option1315,38763 -http_request(Document,Options) -->http_request1324,39203 -http_request(Document,Options) -->http_request1324,39203 -http_request(Document,Options) -->http_request1324,39203 -http_request_method(Options,Options1) -->http_request_method1332,39396 -http_request_method(Options,Options1) -->http_request_method1332,39396 -http_request_method(Options,Options1) -->http_request_method1332,39396 -http_request_method(Options, Options) -->http_request_method1337,39522 -http_request_method(Options, Options) -->http_request_method1337,39522 -http_request_method(Options, Options) -->http_request_method1337,39522 -http_req([]) --> http_crlf.http_req1340,39580 -http_req([]) --> http_crlf.http_req1340,39580 -http_req([]) --> http_crlf.http_req1340,39580 -http_req([Option|Options]) -->http_req1341,39609 -http_req([Option|Options]) -->http_req1341,39609 -http_req([Option|Options]) -->http_req1341,39609 -http_request_option(user_agent(A)) --> !,http_request_option1345,39708 -http_request_option(user_agent(A)) --> !,http_request_option1345,39708 -http_request_option(user_agent(A)) --> !,http_request_option1345,39708 -http_request_option(if_modified_since(date(WkDay,Day,Month,Year,Time))) --> !,http_request_option1355,39941 -http_request_option(if_modified_since(date(WkDay,Day,Month,Year,Time))) --> !,http_request_option1355,39941 -http_request_option(if_modified_since(date(WkDay,Day,Month,Year,Time))) --> !,http_request_option1355,39941 -http_request_option(authorization(Scheme, Params)) --> !,http_request_option1359,40125 -http_request_option(authorization(Scheme, Params)) --> !,http_request_option1359,40125 -http_request_option(authorization(Scheme, Params)) --> !,http_request_option1359,40125 -http_request_option(O) -->http_request_option1363,40271 -http_request_option(O) -->http_request_option1363,40271 -http_request_option(O) -->http_request_option1363,40271 -http_request_option(O) --> "",http_request_option1374,40506 -http_request_option(O) --> "",http_request_option1374,40506 -http_request_option(O) --> "",http_request_option1374,40506 -http_credentials(basic, Cookie) --> !,http_credentials1377,40592 -http_credentials(basic, Cookie) --> !,http_credentials1377,40592 -http_credentials(basic, Cookie) --> !,http_credentials1377,40592 -http_credentials(Scheme,Params) --> !,http_credentials1380,40673 -http_credentials(Scheme,Params) --> !,http_credentials1380,40673 -http_credentials(Scheme,Params) --> !,http_credentials1380,40673 -http_credential_params([]) --> "".http_credential_params1387,40832 -http_credential_params([]) --> "".http_credential_params1387,40832 -http_credential_params([]) --> "".http_credential_params1387,40832 -http_credential_params([P|Ps]) -->http_credential_params1388,40867 -http_credential_params([P|Ps]) -->http_credential_params1388,40867 -http_credential_params([P|Ps]) -->http_credential_params1388,40867 -http_credential_params_rest([]) --> "".http_credential_params_rest1391,40977 -http_credential_params_rest([]) --> "".http_credential_params_rest1391,40977 -http_credential_params_rest([]) --> "".http_credential_params_rest1391,40977 -http_credential_params_rest([P|Ps]) -->http_credential_params_rest1392,41017 -http_credential_params_rest([P|Ps]) -->http_credential_params_rest1392,41017 -http_credential_params_rest([P|Ps]) -->http_credential_params_rest1392,41017 -http_credential_param(P=V) -->http_credential_param1397,41147 -http_credential_param(P=V) -->http_credential_param1397,41147 -http_credential_param(P=V) -->http_credential_param1397,41147 -http_response(R) -->http_response1410,41496 -http_response(R) -->http_response1410,41496 -http_response(R) -->http_response1410,41496 -http_response(R) -->http_response1412,41544 -http_response(R) -->http_response1412,41544 -http_response(R) -->http_response1412,41544 -http_full_response([Status|Head_Body]) -->http_full_response1415,41592 -http_full_response([Status|Head_Body]) -->http_full_response1415,41592 -http_full_response([Status|Head_Body]) -->http_full_response1415,41592 -http_simple_response(Body) -->http_simple_response1421,41768 -http_simple_response(Body) -->http_simple_response1421,41768 -http_simple_response(Body) -->http_simple_response1421,41768 -http_response_headers([H|Hs], Hs_) -->http_response_headers1424,41832 -http_response_headers([H|Hs], Hs_) -->http_response_headers1424,41832 -http_response_headers([H|Hs], Hs_) -->http_response_headers1424,41832 -http_response_headers(Hs, Hs) --> "".http_response_headers1427,41947 -http_response_headers(Hs, Hs) --> "".http_response_headers1427,41947 -http_response_headers(Hs, Hs) --> "".http_response_headers1427,41947 -http_entity_body([content(B)],B,[]).http_entity_body1429,41986 -http_entity_body([content(B)],B,[]).http_entity_body1429,41986 -http_status_line(status(Ty,SC,RP)) -->http_status_line1433,42104 -http_status_line(status(Ty,SC,RP)) -->http_status_line1433,42104 -http_status_line(status(Ty,SC,RP)) -->http_status_line1433,42104 -http_status_code(Ty,SC) -->http_status_code1440,42305 -http_status_code(Ty,SC) -->http_status_code1440,42305 -http_status_code(Ty,SC) -->http_status_code1440,42305 -type_of_status_code(0'1, informational).type_of_status_code1447,42451 -type_of_status_code(0'1, informational).type_of_status_code1447,42451 -type_of_status_code(0'2, success).type_of_status_code1448,42492 -type_of_status_code(0'2, success).type_of_status_code1448,42492 -type_of_status_code(0'3, redirection).type_of_status_code1449,42527 -type_of_status_code(0'3, redirection).type_of_status_code1449,42527 -type_of_status_code(0'4, request_error).type_of_status_code1450,42566 -type_of_status_code(0'4, request_error).type_of_status_code1450,42566 -type_of_status_code(0'5, server_error).type_of_status_code1451,42607 -type_of_status_code(0'5, server_error).type_of_status_code1451,42607 -type_of_status_code(_, extension_code).type_of_status_code1452,42647 -type_of_status_code(_, extension_code).type_of_status_code1452,42647 -http_response_header(P) --> http_pragma(P).http_response_header1457,42785 -http_response_header(P) --> http_pragma(P).http_response_header1457,42785 -http_response_header(P) --> http_pragma(P).http_response_header1457,42785 -http_response_header(P) --> http_pragma(P).http_response_header1457,42785 -http_response_header(P) --> http_pragma(P).http_response_header1457,42785 -http_response_header(D) --> http_message_date(D).http_response_header1458,42829 -http_response_header(D) --> http_message_date(D).http_response_header1458,42829 -http_response_header(D) --> http_message_date(D).http_response_header1458,42829 -http_response_header(D) --> http_message_date(D).http_response_header1458,42829 -http_response_header(D) --> http_message_date(D).http_response_header1458,42829 -http_response_header(L) --> http_location(L).http_response_header1460,42897 -http_response_header(L) --> http_location(L).http_response_header1460,42897 -http_response_header(L) --> http_location(L).http_response_header1460,42897 -http_response_header(L) --> http_location(L).http_response_header1460,42897 -http_response_header(L) --> http_location(L).http_response_header1460,42897 -http_response_header(S) --> http_server(S).http_response_header1461,42943 -http_response_header(S) --> http_server(S).http_response_header1461,42943 -http_response_header(S) --> http_server(S).http_response_header1461,42943 -http_response_header(S) --> http_server(S).http_response_header1461,42943 -http_response_header(S) --> http_server(S).http_response_header1461,42943 -http_response_header(A) --> http_authenticate(A).http_response_header1462,42987 -http_response_header(A) --> http_authenticate(A).http_response_header1462,42987 -http_response_header(A) --> http_authenticate(A).http_response_header1462,42987 -http_response_header(A) --> http_authenticate(A).http_response_header1462,42987 -http_response_header(A) --> http_authenticate(A).http_response_header1462,42987 -http_response_header(A) --> http_allow(A).http_response_header1464,43053 -http_response_header(A) --> http_allow(A).http_response_header1464,43053 -http_response_header(A) --> http_allow(A).http_response_header1464,43053 -http_response_header(A) --> http_allow(A).http_response_header1464,43053 -http_response_header(A) --> http_allow(A).http_response_header1464,43053 -http_response_header(E) --> http_content_encoding(E).http_response_header1465,43096 -http_response_header(E) --> http_content_encoding(E).http_response_header1465,43096 -http_response_header(E) --> http_content_encoding(E).http_response_header1465,43096 -http_response_header(E) --> http_content_encoding(E).http_response_header1465,43096 -http_response_header(E) --> http_content_encoding(E).http_response_header1465,43096 -http_response_header(L) --> http_content_length(L).http_response_header1466,43150 -http_response_header(L) --> http_content_length(L).http_response_header1466,43150 -http_response_header(L) --> http_content_length(L).http_response_header1466,43150 -http_response_header(L) --> http_content_length(L).http_response_header1466,43150 -http_response_header(L) --> http_content_length(L).http_response_header1466,43150 -http_response_header(T) --> http_content_type(T).http_response_header1467,43202 -http_response_header(T) --> http_content_type(T).http_response_header1467,43202 -http_response_header(T) --> http_content_type(T).http_response_header1467,43202 -http_response_header(T) --> http_content_type(T).http_response_header1467,43202 -http_response_header(T) --> http_content_type(T).http_response_header1467,43202 -http_response_header(X) --> http_expires(X).http_response_header1468,43252 -http_response_header(X) --> http_expires(X).http_response_header1468,43252 -http_response_header(X) --> http_expires(X).http_response_header1468,43252 -http_response_header(X) --> http_expires(X).http_response_header1468,43252 -http_response_header(X) --> http_expires(X).http_response_header1468,43252 -http_response_header(M) --> http_last_modified(M).http_response_header1469,43297 -http_response_header(M) --> http_last_modified(M).http_response_header1469,43297 -http_response_header(M) --> http_last_modified(M).http_response_header1469,43297 -http_response_header(M) --> http_last_modified(M).http_response_header1469,43297 -http_response_header(M) --> http_last_modified(M).http_response_header1469,43297 -http_response_header(E) --> http_extension_header(E).http_response_header1470,43348 -http_response_header(E) --> http_extension_header(E).http_response_header1470,43348 -http_response_header(E) --> http_extension_header(E).http_response_header1470,43348 -http_response_header(E) --> http_extension_header(E).http_response_header1470,43348 -http_response_header(E) --> http_extension_header(E).http_response_header1470,43348 -http_pragma(pragma(P)) -->http_pragma1474,43483 -http_pragma(pragma(P)) -->http_pragma1474,43483 -http_pragma(pragma(P)) -->http_pragma1474,43483 -http_message_date(message_date(D)) -->http_message_date1478,43563 -http_message_date(message_date(D)) -->http_message_date1478,43563 -http_message_date(message_date(D)) -->http_message_date1478,43563 -http_location(location(URL)) -->http_location1483,43672 -http_location(location(URL)) -->http_location1483,43672 -http_location(location(URL)) -->http_location1483,43672 -http_server(http_server(S)) -->http_server1490,43821 -http_server(http_server(S)) -->http_server1490,43821 -http_server(http_server(S)) -->http_server1490,43821 -http_authenticate(authenticate(C)) -->http_authenticate1494,43906 -http_authenticate(authenticate(C)) -->http_authenticate1494,43906 -http_authenticate(authenticate(C)) -->http_authenticate1494,43906 -http_allow(allow(Methods)) -->http_allow1498,44014 -http_allow(allow(Methods)) -->http_allow1498,44014 -http_allow(allow(Methods)) -->http_allow1498,44014 -http_content_encoding(content_encoding(E)) -->http_content_encoding1503,44128 -http_content_encoding(content_encoding(E)) -->http_content_encoding1503,44128 -http_content_encoding(content_encoding(E)) -->http_content_encoding1503,44128 -http_content_length(content_length(L)) -->http_content_length1509,44283 -http_content_length(content_length(L)) -->http_content_length1509,44283 -http_content_length(content_length(L)) -->http_content_length1509,44283 -http_content_type(content_type(Type,SubType,Params)) -->http_content_type1515,44429 -http_content_type(content_type(Type,SubType,Params)) -->http_content_type1515,44429 -http_content_type(content_type(Type,SubType,Params)) -->http_content_type1515,44429 -http_expires(expires(D)) -->http_expires1520,44588 -http_expires(expires(D)) -->http_expires1520,44588 -http_expires(expires(D)) -->http_expires1520,44588 -http_last_modified(last_modified(D)) -->http_last_modified1525,44690 -http_last_modified(last_modified(D)) -->http_last_modified1525,44690 -http_last_modified(last_modified(D)) -->http_last_modified1525,44690 -http_extension_header(T) -->http_extension_header1530,44810 -http_extension_header(T) -->http_extension_header1530,44810 -http_extension_header(T) -->http_extension_header1530,44810 -http_date(date(WeekDay,Day,Month,Year,Time)) -->http_date1541,45068 -http_date(date(WeekDay,Day,Month,Year,Time)) -->http_date1541,45068 -http_date(date(WeekDay,Day,Month,Year,Time)) -->http_date1541,45068 -http_internet_date(WeekDay,Day,Month,Year,Time) -->http_internet_date1546,45233 -http_internet_date(WeekDay,Day,Month,Year,Time) -->http_internet_date1546,45233 -http_internet_date(WeekDay,Day,Month,Year,Time) -->http_internet_date1546,45233 -http_asctime_date(WeekDay,Day,Month,Year,Time) -->http_asctime_date1560,45546 -http_asctime_date(WeekDay,Day,Month,Year,Time) -->http_asctime_date1560,45546 -http_asctime_date(WeekDay,Day,Month,Year,Time) -->http_asctime_date1560,45546 -http_weekday('Monday') --> "Mon".http_weekday1571,45797 -http_weekday('Monday') --> "Mon".http_weekday1571,45797 -http_weekday('Monday') --> "Mon".http_weekday1571,45797 -http_weekday('Tuesday') --> "Tue".http_weekday1572,45831 -http_weekday('Tuesday') --> "Tue".http_weekday1572,45831 -http_weekday('Tuesday') --> "Tue".http_weekday1572,45831 -http_weekday('Wednesday') --> "Wed".http_weekday1573,45866 -http_weekday('Wednesday') --> "Wed".http_weekday1573,45866 -http_weekday('Wednesday') --> "Wed".http_weekday1573,45866 -http_weekday('Thursday') --> "Thu".http_weekday1574,45903 -http_weekday('Thursday') --> "Thu".http_weekday1574,45903 -http_weekday('Thursday') --> "Thu".http_weekday1574,45903 -http_weekday('Friday') --> "Fri".http_weekday1575,45939 -http_weekday('Friday') --> "Fri".http_weekday1575,45939 -http_weekday('Friday') --> "Fri".http_weekday1575,45939 -http_weekday('Saturday') --> "Sat".http_weekday1576,45973 -http_weekday('Saturday') --> "Sat".http_weekday1576,45973 -http_weekday('Saturday') --> "Sat".http_weekday1576,45973 -http_weekday('Sunday') --> "Sun".http_weekday1577,46009 -http_weekday('Sunday') --> "Sun".http_weekday1577,46009 -http_weekday('Sunday') --> "Sun".http_weekday1577,46009 -http_weekday('Monday') --> "Monday".http_weekday1578,46043 -http_weekday('Monday') --> "Monday".http_weekday1578,46043 -http_weekday('Monday') --> "Monday".http_weekday1578,46043 -http_weekday('Tuesday') --> "Tuesday".http_weekday1579,46080 -http_weekday('Tuesday') --> "Tuesday".http_weekday1579,46080 -http_weekday('Tuesday') --> "Tuesday".http_weekday1579,46080 -http_weekday('Wednesday') --> "Wednesday".http_weekday1580,46119 -http_weekday('Wednesday') --> "Wednesday".http_weekday1580,46119 -http_weekday('Wednesday') --> "Wednesday".http_weekday1580,46119 -http_weekday('Thursday') --> "Thursday".http_weekday1581,46162 -http_weekday('Thursday') --> "Thursday".http_weekday1581,46162 -http_weekday('Thursday') --> "Thursday".http_weekday1581,46162 -http_weekday('Friday') --> "Friday".http_weekday1582,46203 -http_weekday('Friday') --> "Friday".http_weekday1582,46203 -http_weekday('Friday') --> "Friday".http_weekday1582,46203 -http_weekday('Saturday') --> "Saturday".http_weekday1583,46240 -http_weekday('Saturday') --> "Saturday".http_weekday1583,46240 -http_weekday('Saturday') --> "Saturday".http_weekday1583,46240 -http_weekday('Sunday') --> "Sunday".http_weekday1584,46281 -http_weekday('Sunday') --> "Sunday".http_weekday1584,46281 -http_weekday('Sunday') --> "Sunday".http_weekday1584,46281 -http_day(Day) -->http_day1586,46319 -http_day(Day) -->http_day1586,46319 -http_day(Day) -->http_day1586,46319 -http_day(Day) -->http_day1591,46413 -http_day(Day) -->http_day1591,46413 -http_day(Day) -->http_day1591,46413 -http_day(Day) -->http_day1596,46505 -http_day(Day) -->http_day1596,46505 -http_day(Day) -->http_day1596,46505 -http_month('January') --> "Jan".http_month1603,46610 -http_month('January') --> "Jan".http_month1603,46610 -http_month('January') --> "Jan".http_month1603,46610 -http_month('February') --> "Feb".http_month1604,46643 -http_month('February') --> "Feb".http_month1604,46643 -http_month('February') --> "Feb".http_month1604,46643 -http_month('March') --> "Mar".http_month1605,46677 -http_month('March') --> "Mar".http_month1605,46677 -http_month('March') --> "Mar".http_month1605,46677 -http_month('April') --> "Apr".http_month1606,46708 -http_month('April') --> "Apr".http_month1606,46708 -http_month('April') --> "Apr".http_month1606,46708 -http_month('May') --> "May".http_month1607,46739 -http_month('May') --> "May".http_month1607,46739 -http_month('May') --> "May".http_month1607,46739 -http_month('June') --> "Jun".http_month1608,46768 -http_month('June') --> "Jun".http_month1608,46768 -http_month('June') --> "Jun".http_month1608,46768 -http_month('July') --> "Jul".http_month1609,46798 -http_month('July') --> "Jul".http_month1609,46798 -http_month('July') --> "Jul".http_month1609,46798 -http_month('August') --> "Aug".http_month1610,46828 -http_month('August') --> "Aug".http_month1610,46828 -http_month('August') --> "Aug".http_month1610,46828 -http_month('September') --> "Sep".http_month1611,46860 -http_month('September') --> "Sep".http_month1611,46860 -http_month('September') --> "Sep".http_month1611,46860 -http_month('October') --> "Oct".http_month1612,46895 -http_month('October') --> "Oct".http_month1612,46895 -http_month('October') --> "Oct".http_month1612,46895 -http_month('November') --> "Nov".http_month1613,46928 -http_month('November') --> "Nov".http_month1613,46928 -http_month('November') --> "Nov".http_month1613,46928 -http_month('December') --> "Dec".http_month1614,46962 -http_month('December') --> "Dec".http_month1614,46962 -http_month('December') --> "Dec".http_month1614,46962 -http_year(Year) -->http_year1617,47018 -http_year(Year) -->http_year1617,47018 -http_year(Year) -->http_year1617,47018 -http_year(Year) -->http_year1622,47127 -http_year(Year) -->http_year1622,47127 -http_year(Year) -->http_year1622,47127 -http_time(Time) -->http_time1629,47282 -http_time(Time) -->http_time1629,47282 -http_time(Time) -->http_time1629,47282 -http_challenges([C|CS]) -->http_challenges1638,47499 -http_challenges([C|CS]) -->http_challenges1638,47499 -http_challenges([C|CS]) -->http_challenges1638,47499 -http_more_challenges([C|CS]) -->http_more_challenges1643,47616 -http_more_challenges([C|CS]) -->http_more_challenges1643,47616 -http_more_challenges([C|CS]) -->http_more_challenges1643,47616 -http_more_challenges([]) --> http_lws0, http_crlf.http_more_challenges1647,47731 -http_more_challenges([]) --> http_lws0, http_crlf.http_more_challenges1647,47731 -http_more_challenges([]) --> http_lws0, http_crlf.http_more_challenges1647,47731 -http_challenge(challenge(Scheme,Realm,Params)) -->http_challenge1649,47783 -http_challenge(challenge(Scheme,Realm,Params)) -->http_challenge1649,47783 -http_challenge(challenge(Scheme,Realm,Params)) -->http_challenge1649,47783 -http_auth_params([P|Ps]) -->http_auth_params1656,48004 -http_auth_params([P|Ps]) -->http_auth_params1656,48004 -http_auth_params([P|Ps]) -->http_auth_params1656,48004 -http_auth_params([]) --> "".http_auth_params1660,48126 -http_auth_params([]) --> "".http_auth_params1660,48126 -http_auth_params([]) --> "".http_auth_params1660,48126 -http_auth_param(P=V) -->http_auth_param1662,48156 -http_auth_param(P=V) -->http_auth_param1662,48156 -http_auth_param(P=V) -->http_auth_param1662,48156 -http_token_list([T|Ts]) -->http_token_list1669,48335 -http_token_list([T|Ts]) -->http_token_list1669,48335 -http_token_list([T|Ts]) -->http_token_list1669,48335 -http_token_list0([T|Ts]) -->http_token_list01674,48444 -http_token_list0([T|Ts]) -->http_token_list01674,48444 -http_token_list0([T|Ts]) -->http_token_list01674,48444 -http_token_list0([]) -->http_token_list01678,48547 -http_token_list0([]) -->http_token_list01678,48547 -http_token_list0([]) -->http_token_list01678,48547 -http_commas -->http_commas1681,48600 -http_maybe_commas --> "".http_maybe_commas1685,48677 -http_maybe_commas -->http_maybe_commas1686,48703 -http_field([C|Cs]) -->http_field1694,48859 -http_field([C|Cs]) -->http_field1694,48859 -http_field([C|Cs]) -->http_field1694,48859 -http_media_type(Type,SubType,Params) -->http_media_type1711,49346 -http_media_type(Type,SubType,Params) -->http_media_type1711,49346 -http_media_type(Type,SubType,Params) -->http_media_type1711,49346 -http_type_params([P|Ps]) -->http_type_params1718,49521 -http_type_params([P|Ps]) -->http_type_params1718,49521 -http_type_params([P|Ps]) -->http_type_params1718,49521 -http_type_params([]) --> "".http_type_params1722,49643 -http_type_params([]) --> "".http_type_params1722,49643 -http_type_params([]) --> "".http_type_params1722,49643 -http_type_param(A = V) -->http_type_param1724,49673 -http_type_param(A = V) -->http_type_param1724,49673 -http_type_param(A = V) -->http_type_param1724,49673 -http_token_or_quoted(V) --> http_token(V).http_token_or_quoted1729,49776 -http_token_or_quoted(V) --> http_token(V).http_token_or_quoted1729,49776 -http_token_or_quoted(V) --> http_token(V).http_token_or_quoted1729,49776 -http_token_or_quoted(V) --> http_token(V).http_token_or_quoted1729,49776 -http_token_or_quoted(V) --> http_token(V).http_token_or_quoted1729,49776 -http_token_or_quoted(V) --> http_quoted_string(V).http_token_or_quoted1730,49819 -http_token_or_quoted(V) --> http_quoted_string(V).http_token_or_quoted1730,49819 -http_token_or_quoted(V) --> http_quoted_string(V).http_token_or_quoted1730,49819 -http_token_or_quoted(V) --> http_quoted_string(V).http_token_or_quoted1730,49819 -http_token_or_quoted(V) --> http_quoted_string(V).http_token_or_quoted1730,49819 -http_token(T) -->http_token1732,49871 -http_token(T) -->http_token1732,49871 -http_token(T) -->http_token1732,49871 -http_token_rest([C|Cs]) -->http_token_rest1739,50002 -http_token_rest([C|Cs]) -->http_token_rest1739,50002 -http_token_rest([C|Cs]) -->http_token_rest1739,50002 -http_token_rest([]) --> "".http_token_rest1742,50087 -http_token_rest([]) --> "".http_token_rest1742,50087 -http_token_rest([]) --> "".http_token_rest1742,50087 -http_token_char(C) --> loalpha(C).http_token_char1744,50116 -http_token_char(C) --> loalpha(C).http_token_char1744,50116 -http_token_char(C) --> loalpha(C).http_token_char1744,50116 -http_token_char(C) --> loalpha(C).http_token_char1744,50116 -http_token_char(C) --> loalpha(C).http_token_char1744,50116 -http_token_char(C) --> upalpha(C).http_token_char1745,50151 -http_token_char(C) --> upalpha(C).http_token_char1745,50151 -http_token_char(C) --> upalpha(C).http_token_char1745,50151 -http_token_char(C) --> upalpha(C).http_token_char1745,50151 -http_token_char(C) --> upalpha(C).http_token_char1745,50151 -http_token_char(C) --> digit(C).http_token_char1746,50186 -http_token_char(C) --> digit(C).http_token_char1746,50186 -http_token_char(C) --> digit(C).http_token_char1746,50186 -http_token_char(C) --> digit(C).http_token_char1746,50186 -http_token_char(C) --> digit(C).http_token_char1746,50186 -http_token_char(C) --> http_token_symb(C).http_token_char1747,50219 -http_token_char(C) --> http_token_symb(C).http_token_char1747,50219 -http_token_char(C) --> http_token_symb(C).http_token_char1747,50219 -http_token_char(C) --> http_token_symb(C).http_token_char1747,50219 -http_token_char(C) --> http_token_symb(C).http_token_char1747,50219 -http_token_symb(0'!) --> "!".http_token_symb1749,50263 -http_token_symb(0'!) --> "!".http_token_symb1749,50263 -http_token_symb(0'!) --> "!".http_token_symb1749,50263 -http_token_symb(0'#) --> "#".http_token_symb1750,50293 -http_token_symb(0'#) --> "#".http_token_symb1750,50293 -http_token_symb(0'#) --> "#".http_token_symb1750,50293 -http_token_symb(0'$) --> "$".http_token_symb1751,50323 -http_token_symb(0'$) --> "$".http_token_symb1751,50323 -http_token_symb(0'$) --> "$".http_token_symb1751,50323 -http_token_symb(0'%) --> "%".http_token_symb1752,50353 -http_token_symb(0'%) --> "%".http_token_symb1752,50353 -http_token_symb(0'%) --> "%".http_token_symb1752,50353 -http_token_symb(0'&) --> "&".http_token_symb1753,50383 -http_token_symb(0'&) --> "&".http_token_symb1753,50383 -http_token_symb(0'&) --> "&".http_token_symb1753,50383 -http_token_symb(0'') --> "'".http_token_symb1754,50413 -http_token_symb(0'') --> "'".http_token_symb1754,50413 -http_token_symb(0'') --> "'".http_token_symb1754,50413 -http_token_symb(0'*) --> "*".http_token_symb1755,50443 -http_token_symb(0'*) --> "*".http_token_symb1755,50443 -http_token_symb(0'*) --> "*".http_token_symb1755,50443 -http_token_symb(0'+) --> "+".http_token_symb1756,50473 -http_token_symb(0'+) --> "+".http_token_symb1756,50473 -http_token_symb(0'+) --> "+".http_token_symb1756,50473 -http_token_symb(0'-) --> "-".http_token_symb1757,50503 -http_token_symb(0'-) --> "-".http_token_symb1757,50503 -http_token_symb(0'-) --> "-".http_token_symb1757,50503 -http_token_symb(0'.) --> ".".http_token_symb1758,50533 -http_token_symb(0'.) --> ".".http_token_symb1758,50533 -http_token_symb(0'.) --> ".".http_token_symb1758,50533 -http_token_symb(0'^) --> "^".http_token_symb1759,50563 -http_token_symb(0'^) --> "^".http_token_symb1759,50563 -http_token_symb(0'^) --> "^".http_token_symb1759,50563 -http_token_symb(0'_) --> "_".http_token_symb1760,50593 -http_token_symb(0'_) --> "_".http_token_symb1760,50593 -http_token_symb(0'_) --> "_".http_token_symb1760,50593 -http_token_symb(0'`) --> "`".http_token_symb1761,50623 -http_token_symb(0'`) --> "`".http_token_symb1761,50623 -http_token_symb(0'`) --> "`".http_token_symb1761,50623 -http_token_symb(0'|) --> "|".http_token_symb1762,50653 -http_token_symb(0'|) --> "|".http_token_symb1762,50653 -http_token_symb(0'|) --> "|".http_token_symb1762,50653 -http_token_symb(0'~) --> "~".http_token_symb1763,50683 -http_token_symb(0'~) --> "~".http_token_symb1763,50683 -http_token_symb(0'~) --> "~".http_token_symb1763,50683 -http_quoted_string(S) -->http_quoted_string1765,50714 -http_quoted_string(S) -->http_quoted_string1765,50714 -http_quoted_string(S) -->http_quoted_string1765,50714 -http_qs_text([]) -->http_qs_text1769,50780 -http_qs_text([]) -->http_qs_text1769,50780 -http_qs_text([]) -->http_qs_text1769,50780 -http_qs_text([X|T]) -->http_qs_text1771,50818 -http_qs_text([X|T]) -->http_qs_text1771,50818 -http_qs_text([X|T]) -->http_qs_text1771,50818 -parse_integer(N) -->parse_integer1777,50961 -parse_integer(N) -->parse_integer1777,50961 -parse_integer(N) -->parse_integer1777,50961 -parse_integer_rest([D|Ds]) -->parse_integer_rest1784,51089 -parse_integer_rest([D|Ds]) -->parse_integer_rest1784,51089 -parse_integer_rest([D|Ds]) -->parse_integer_rest1784,51089 -parse_integer_rest([]) --> "".parse_integer_rest1787,51170 -parse_integer_rest([]) --> "".parse_integer_rest1787,51170 -parse_integer_rest([]) --> "".parse_integer_rest1787,51170 -http_lo_up_token(T) -->http_lo_up_token1789,51202 -http_lo_up_token(T) -->http_lo_up_token1789,51202 -http_lo_up_token(T) -->http_lo_up_token1789,51202 -http_lo_up_token_rest([C|Cs]) -->http_lo_up_token_rest1796,51351 -http_lo_up_token_rest([C|Cs]) -->http_lo_up_token_rest1796,51351 -http_lo_up_token_rest([C|Cs]) -->http_lo_up_token_rest1796,51351 -http_lo_up_token_rest([]) --> "".http_lo_up_token_rest1799,51454 -http_lo_up_token_rest([]) --> "".http_lo_up_token_rest1799,51454 -http_lo_up_token_rest([]) --> "".http_lo_up_token_rest1799,51454 -http_lo_up_token_char(C) --> loupalpha(C).http_lo_up_token_char1801,51489 -http_lo_up_token_char(C) --> loupalpha(C).http_lo_up_token_char1801,51489 -http_lo_up_token_char(C) --> loupalpha(C).http_lo_up_token_char1801,51489 -http_lo_up_token_char(C) --> loupalpha(C).http_lo_up_token_char1801,51489 -http_lo_up_token_char(C) --> loupalpha(C).http_lo_up_token_char1801,51489 -http_lo_up_token_char(C) --> digit(C).http_lo_up_token_char1802,51532 -http_lo_up_token_char(C) --> digit(C).http_lo_up_token_char1802,51532 -http_lo_up_token_char(C) --> digit(C).http_lo_up_token_char1802,51532 -http_lo_up_token_char(C) --> digit(C).http_lo_up_token_char1802,51532 -http_lo_up_token_char(C) --> digit(C).http_lo_up_token_char1802,51532 -http_lo_up_token_char(C) --> http_token_symb(C).http_lo_up_token_char1803,51571 -http_lo_up_token_char(C) --> http_token_symb(C).http_lo_up_token_char1803,51571 -http_lo_up_token_char(C) --> http_token_symb(C).http_lo_up_token_char1803,51571 -http_lo_up_token_char(C) --> http_token_symb(C).http_lo_up_token_char1803,51571 -http_lo_up_token_char(C) --> http_token_symb(C).http_lo_up_token_char1803,51571 -loupalpha(C) --> loalpha(C), !.loupalpha1805,51621 -loupalpha(C) --> loalpha(C), !.loupalpha1805,51621 -loupalpha(C) --> loalpha(C), !.loupalpha1805,51621 -loupalpha(C) --> upalpha(CU), { C is CU+0'a-0'A }.loupalpha1806,51653 -loupalpha(C) --> upalpha(CU), { C is CU+0'a-0'A }.loupalpha1806,51653 -loupalpha(C) --> upalpha(CU), { C is CU+0'a-0'A }.loupalpha1806,51653 -loalpha(C) --> [C], {C >= 0'a, C =< 0'z}.loalpha1808,51705 -loalpha(C) --> [C], {C >= 0'a, C =< 0'z}.loalpha1808,51705 -loalpha(C) --> [C], {C >= 0'a, C =< 0'z}.loalpha1808,51705 -upalpha(C) --> [C], {C >= 0'A, C =< 0'Z}.upalpha1810,51748 -upalpha(C) --> [C], {C >= 0'A, C =< 0'Z}.upalpha1810,51748 -upalpha(C) --> [C], {C >= 0'A, C =< 0'Z}.upalpha1810,51748 -digit(C) --> [C], {C >= 0'0, C =< 0'9}.digit1812,51791 -digit(C) --> [C], {C >= 0'0, C =< 0'9}.digit1812,51791 -digit(C) --> [C], {C >= 0'0, C =< 0'9}.digit1812,51791 -http_line([]) -->http_line1814,51832 -http_line([]) -->http_line1814,51832 -http_line([]) -->http_line1814,51832 -http_line([X|T]) -->http_line1816,51872 -http_line([X|T]) -->http_line1816,51872 -http_line([X|T]) -->http_line1816,51872 -http_sp -->http_sp1820,51929 -http_sp -->http_sp1823,51976 -http_sp0 --> [].http_sp01827,52020 -http_sp0 --> http_sp.http_sp01828,52037 -http_lws -->http_lws1830,52060 -http_lws -->http_lws1832,52090 -http_lws0 --> "".http_lws01836,52140 -http_lws0 --> http_lws.http_lws01837,52158 -http_crlf -->http_crlf1840,52184 -http_crlf -->http_crlf1842,52218 -display_list([M|Ms]) :- !,display_list1845,52247 -display_list([M|Ms]) :- !,display_list1845,52247 -display_list([M|Ms]) :- !,display_list1845,52247 -display_list([]) :- !.display_list1848,52320 -display_list([]) :- !.display_list1848,52320 -display_list([]) :- !.display_list1848,52320 -display_list(M) :-display_list1849,52343 -display_list(M) :-display_list1849,52343 -display_list(M) :-display_list1849,52343 -warning(Mess) :-warning1852,52383 -warning(Mess) :-warning1852,52383 -warning(Mess) :-warning1852,52383 -write_string(Stream, S) :-write_string1858,52535 -write_string(Stream, S) :-write_string1858,52535 -write_string(Stream, S) :-write_string1858,52535 -write_string([]).write_string1864,52676 -write_string([]).write_string1864,52676 -write_string([C|Cs]) :- put_code(C), write_string(Cs).write_string1865,52694 -write_string([C|Cs]) :- put_code(C), write_string(Cs).write_string1865,52694 -write_string([C|Cs]) :- put_code(C), write_string(Cs).write_string1865,52694 -write_string([C|Cs]) :- put_code(C), write_string(Cs).write_string1865,52694 -write_string([C|Cs]) :- put_code(C), write_string(Cs).write_string1865,52694 -get_line(Line) :-get_line1867,52750 -get_line(Line) :-get_line1867,52750 -get_line(Line) :-get_line1867,52750 -get_line_after(-1,[]) :- !. % EOFget_line_after1872,52840 -get_line_after(-1,[]) :- !. % EOFget_line_after1872,52840 -get_line_after(-1,[]) :- !. % EOFget_line_after1872,52840 -get_line_after(10,[]) :- !. % Newlineget_line_after1873,52874 -get_line_after(10,[]) :- !. % Newlineget_line_after1873,52874 -get_line_after(10,[]) :- !. % Newlineget_line_after1873,52874 -get_line_after(13, R) :- !, % Return, delete if at end of lineget_line_after1874,52912 -get_line_after(13, R) :- !, % Return, delete if at end of lineget_line_after1874,52912 -get_line_after(13, R) :- !, % Return, delete if at end of lineget_line_after1874,52912 -get_line_after(C, [C|Cs]) :-get_line_after1881,53102 -get_line_after(C, [C|Cs]) :-get_line_after1881,53102 -get_line_after(C, [C|Cs]) :-get_line_after1881,53102 -whitespace --> whitespace_char, whitespace0.whitespace1885,53186 -whitespace0 --> whitespace_char, whitespace0.whitespace01887,53232 -whitespace0 --> [].whitespace01888,53278 -whitespace_char --> [10]. % newlinewhitespace_char1890,53299 -whitespace_char --> [13]. % returnwhitespace_char1891,53335 -whitespace_char --> [32]. % spacewhitespace_char1892,53370 -whitespace_char --> [9]. % tabwhitespace_char1893,53404 -string([]) --> "".string1895,53437 -string([]) --> "".string1895,53437 -string([]) --> "".string1895,53437 -string([C|Cs]) -->string1896,53456 -string([C|Cs]) -->string1896,53456 -string([C|Cs]) -->string1896,53456 -getenvstr(Var,ValStr) :-getenvstr1900,53509 -getenvstr(Var,ValStr) :-getenvstr1900,53509 -getenvstr(Var,ValStr) :-getenvstr1900,53509 -list_lookup(List, Functor, Key, Value) :-list_lookup1906,53625 -list_lookup(List, Functor, Key, Value) :-list_lookup1906,53625 -list_lookup(List, Functor, Key, Value) :-list_lookup1906,53625 -list_lookup([Pair|_], Functor, Key, Value) :-list_lookup1912,53789 -list_lookup([Pair|_], Functor, Key, Value) :-list_lookup1912,53789 -list_lookup([Pair|_], Functor, Key, Value) :-list_lookup1912,53789 -list_lookup([_|List], Functor, Key, Value) :-list_lookup1917,53942 -list_lookup([_|List], Functor, Key, Value) :-list_lookup1917,53942 -list_lookup([_|List], Functor, Key, Value) :-list_lookup1917,53942 -http_transaction(Host, Port, Request, Timeout, Response) :-http_transaction1920,54030 -http_transaction(Host, Port, Request, Timeout, Response) :-http_transaction1920,54030 -http_transaction(Host, Port, Request, Timeout, Response) :-http_transaction1920,54030 -stream_to_string(Stream, String) :-stream_to_string1929,54382 -stream_to_string(Stream, String) :-stream_to_string1929,54382 -stream_to_string(Stream, String) :-stream_to_string1929,54382 -read_to_close(L) :-read_to_close1936,54556 -read_to_close(L) :-read_to_close1936,54556 -read_to_close(L) :-read_to_close1936,54556 -read_to_close1(-1, []) :- !.read_to_close11940,54628 -read_to_close1(-1, []) :- !.read_to_close11940,54628 -read_to_close1(-1, []) :- !.read_to_close11940,54628 -read_to_close1(C, [C|L]) :-read_to_close11941,54657 -read_to_close1(C, [C|L]) :-read_to_close11941,54657 -read_to_close1(C, [C|L]) :-read_to_close11941,54657 - -LGPL/pillow/README,120 -Getting the PackagePackage26,843 - system, but easily adaptable to other Logic Programming systems.system52,1824 - -LGPL/README,0 - -library/apply.yap,0 - -library/apply_macros.yap,0 - -library/arg.yap,1504 -arg0(0,T,A) :- !,arg064,1063 -arg0(0,T,A) :- !,arg064,1063 -arg0(0,T,A) :- !,arg064,1063 -arg0(I,T,A) :-arg066,1098 -arg0(I,T,A) :-arg066,1098 -arg0(I,T,A) :-arg066,1098 -genarg0(I,T,A) :-genarg084,1368 -genarg0(I,T,A) :-genarg084,1368 -genarg0(I,T,A) :-genarg084,1368 -genarg0(0,T,A) :-genarg087,1415 -genarg0(0,T,A) :-genarg087,1415 -genarg0(0,T,A) :-genarg087,1415 -genarg0(I,T,A) :-genarg089,1450 -genarg0(I,T,A) :-genarg089,1450 -genarg0(I,T,A) :-genarg089,1450 -args( I, Ts, As) :-args99,1715 -args( I, Ts, As) :-args99,1715 -args( I, Ts, As) :-args99,1715 -args(_,[],[]).args112,1940 -args(_,[],[]).args112,1940 -args(I,[T|List],[A|ArgList]) :-args113,1955 -args(I,[T|List],[A|ArgList]) :-args113,1955 -args(I,[T|List],[A|ArgList]) :-args113,1955 -args( I, Ts, As) :-args124,2264 -args( I, Ts, As) :-args124,2264 -args( I, Ts, As) :-args124,2264 -args0(_,[],[]).args0137,2490 -args0(_,[],[]).args0137,2490 -args0(I,[T|List],[A|ArgList]) :-args0138,2506 -args0(I,[T|List],[A|ArgList]) :-args0138,2506 -args0(I,[T|List],[A|ArgList]) :-args0138,2506 -project(Terms, Index, Args) :-project149,2822 -project(Terms, Index, Args) :-project149,2822 -project(Terms, Index, Args) :-project149,2822 -path_arg([], Term, Term).path_arg160,3230 -path_arg([], Term, Term).path_arg160,3230 -path_arg([Index|Indices], Term, SubTerm) :-path_arg161,3256 -path_arg([Index|Indices], Term, SubTerm) :-path_arg161,3256 -path_arg([Index|Indices], Term, SubTerm) :-path_arg161,3256 - -library/assoc.yap,3754 -empty_assoc(t).empty_assoc85,1624 -empty_assoc(t).empty_assoc85,1624 -assoc_to_list(t, L) :- !, L = [].assoc_to_list96,1829 -assoc_to_list(t, L) :- !, L = [].assoc_to_list96,1829 -assoc_to_list(t, L) :- !, L = [].assoc_to_list96,1829 -assoc_to_list(T, L) :-assoc_to_list97,1863 -assoc_to_list(T, L) :-assoc_to_list97,1863 -assoc_to_list(T, L) :-assoc_to_list97,1863 -is_assoc(t) :- !.is_assoc105,2020 -is_assoc(t) :- !.is_assoc105,2020 -is_assoc(t) :- !.is_assoc105,2020 -is_assoc(T) :-is_assoc106,2038 -is_assoc(T) :-is_assoc106,2038 -is_assoc(T) :-is_assoc106,2038 -min_assoc(T,K,V) :-min_assoc118,2239 -min_assoc(T,K,V) :-min_assoc118,2239 -min_assoc(T,K,V) :-min_assoc118,2239 -max_assoc(T,K,V) :-max_assoc130,2445 -max_assoc(T,K,V) :-max_assoc130,2445 -max_assoc(T,K,V) :-max_assoc130,2445 -gen_assoc(K, T, V) :-gen_assoc140,2697 -gen_assoc(K, T, V) :-gen_assoc140,2697 -gen_assoc(K, T, V) :-gen_assoc140,2697 -get_assoc(K,T,V) :-get_assoc149,2887 -get_assoc(K,T,V) :-get_assoc149,2887 -get_assoc(K,T,V) :-get_assoc149,2887 -get_assoc(K,T,V,NT,NV) :-get_assoc161,3191 -get_assoc(K,T,V,NT,NV) :-get_assoc161,3191 -get_assoc(K,T,V,NT,NV) :-get_assoc161,3191 -get_next_assoc(K,T,KN,VN) :-get_next_assoc171,3435 -get_next_assoc(K,T,KN,VN) :-get_next_assoc171,3435 -get_next_assoc(K,T,KN,VN) :-get_next_assoc171,3435 -get_prev_assoc(K,T,KP,VP) :-get_prev_assoc182,3684 -get_prev_assoc(K,T,KP,VP) :-get_prev_assoc182,3684 -get_prev_assoc(K,T,KP,VP) :-get_prev_assoc182,3684 -list_to_assoc(L, T) :-list_to_assoc194,3954 -list_to_assoc(L, T) :-list_to_assoc194,3954 -list_to_assoc(L, T) :-list_to_assoc194,3954 -ord_list_to_assoc(L, T) :-ord_list_to_assoc205,4228 -ord_list_to_assoc(L, T) :-ord_list_to_assoc205,4228 -ord_list_to_assoc(L, T) :-ord_list_to_assoc205,4228 -map_assoc(t, _) :- !.map_assoc216,4434 -map_assoc(t, _) :- !.map_assoc216,4434 -map_assoc(t, _) :- !.map_assoc216,4434 -map_assoc(P, T) :-map_assoc217,4456 -map_assoc(P, T) :-map_assoc217,4456 -map_assoc(P, T) :-map_assoc217,4456 -map_assoc(t, T, T) :- !.map_assoc229,4862 -map_assoc(t, T, T) :- !.map_assoc229,4862 -map_assoc(t, T, T) :- !.map_assoc229,4862 -map_assoc(P, T, NT) :-map_assoc230,4887 -map_assoc(P, T, NT) :-map_assoc230,4887 -map_assoc(P, T, NT) :-map_assoc230,4887 -extract_mod(G,_,_) :- var(G), !, fail.extract_mod237,5015 -extract_mod(G,_,_) :- var(G), !, fail.extract_mod237,5015 -extract_mod(G,_,_) :- var(G), !, fail.extract_mod237,5015 -extract_mod(M:G, _, FM, FG ) :- !,extract_mod238,5054 -extract_mod(M:G, _, FM, FG ) :- !,extract_mod238,5054 -extract_mod(M:G, _, FM, FG ) :- !,extract_mod238,5054 -extract_mod(G, M, M, G ).extract_mod240,5118 -extract_mod(G, M, M, G ).extract_mod240,5118 -put_assoc(K, T, V, NT) :-put_assoc249,5349 -put_assoc(K, T, V, NT) :-put_assoc249,5349 -put_assoc(K, T, V, NT) :-put_assoc249,5349 -put_assoc(K, t, V, NT) :- !,put_assoc251,5403 -put_assoc(K, t, V, NT) :- !,put_assoc251,5403 -put_assoc(K, t, V, NT) :- !,put_assoc251,5403 -put_assoc(K, T, V, NT) :-put_assoc253,5457 -put_assoc(K, T, V, NT) :-put_assoc253,5457 -put_assoc(K, T, V, NT) :-put_assoc253,5457 -del_assoc(K, T, V, NT) :-del_assoc264,5709 -del_assoc(K, T, V, NT) :-del_assoc264,5709 -del_assoc(K, T, V, NT) :-del_assoc264,5709 -del_min_assoc(T, K, V, NT) :-del_min_assoc275,5986 -del_min_assoc(T, K, V, NT) :-del_min_assoc275,5986 -del_min_assoc(T, K, V, NT) :-del_min_assoc275,5986 -del_max_assoc(T, K, V, NT) :-del_max_assoc286,6267 -del_max_assoc(T, K, V, NT) :-del_max_assoc286,6267 -del_max_assoc(T, K, V, NT) :-del_max_assoc286,6267 -assoc_to_keys(T, Ks) :-assoc_to_keys290,6325 -assoc_to_keys(T, Ks) :-assoc_to_keys290,6325 -assoc_to_keys(T, Ks) :-assoc_to_keys290,6325 - -library/atts.yap,9814 -:- dynamic existing_attribute/4.dynamic63,1303 -:- dynamic existing_attribute/4.dynamic63,1303 -:- dynamic modules_with_attributes/1.dynamic64,1336 -:- dynamic modules_with_attributes/1.dynamic64,1336 -:- dynamic attributed_module/3.dynamic65,1374 -:- dynamic attributed_module/3.dynamic65,1374 -modules_with_attributes([]).modules_with_attributes67,1407 -modules_with_attributes([]).modules_with_attributes67,1407 -new_attribute(V) :- var(V), !,new_attribute73,1536 -new_attribute(V) :- var(V), !,new_attribute73,1536 -new_attribute(V) :- var(V), !,new_attribute73,1536 -new_attribute((At1,At2)) :-new_attribute75,1616 -new_attribute((At1,At2)) :-new_attribute75,1616 -new_attribute((At1,At2)) :-new_attribute75,1616 -new_attribute(Na/Ar) :-new_attribute78,1686 -new_attribute(Na/Ar) :-new_attribute78,1686 -new_attribute(Na/Ar) :-new_attribute78,1686 -new_attribute(Na/Ar) :-new_attribute82,1786 -new_attribute(Na/Ar) :-new_attribute82,1786 -new_attribute(Na/Ar) :-new_attribute82,1786 -store_new_module(Mod,Ar,ArgPosition) :-store_new_module88,1936 -store_new_module(Mod,Ar,ArgPosition) :-store_new_module88,1936 -store_new_module(Mod,Ar,ArgPosition) :-store_new_module88,1936 -user:goal_expansion(get_atts(Var,AccessSpec), Mod, Goal) :-goal_expansion121,2991 -user:goal_expansion(get_atts(Var,AccessSpec), Mod, Goal) :-goal_expansion121,2991 -user:goal_expansion(put_atts(Var,AccessSpec), Mod, Goal) :-goal_expansion140,3586 -user:goal_expansion(put_atts(Var,AccessSpec), Mod, Goal) :-goal_expansion140,3586 -expand_get_attributes(V,_,_,_) :- var(V), !, fail.expand_get_attributes144,3700 -expand_get_attributes(V,_,_,_) :- var(V), !, fail.expand_get_attributes144,3700 -expand_get_attributes(V,_,_,_) :- var(V), !, fail.expand_get_attributes144,3700 -expand_get_attributes([],_,_,true) :- !.expand_get_attributes145,3751 -expand_get_attributes([],_,_,true) :- !.expand_get_attributes145,3751 -expand_get_attributes([],_,_,true) :- !.expand_get_attributes145,3751 -expand_get_attributes([-G1],Mod,V,attributes:free_att(V,Mod,Pos)) :-expand_get_attributes146,3792 -expand_get_attributes([-G1],Mod,V,attributes:free_att(V,Mod,Pos)) :-expand_get_attributes146,3792 -expand_get_attributes([-G1],Mod,V,attributes:free_att(V,Mod,Pos)) :-expand_get_attributes146,3792 -expand_get_attributes([+G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes148,3899 -expand_get_attributes([+G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes148,3899 -expand_get_attributes([+G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes148,3899 -expand_get_attributes([G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes151,4021 -expand_get_attributes([G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes151,4021 -expand_get_attributes([G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes151,4021 -expand_get_attributes(Atts,Mod,Var,attributes:get_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_get_attributes154,4142 -expand_get_attributes(Atts,Mod,Var,attributes:get_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_get_attributes154,4142 -expand_get_attributes(Atts,Mod,Var,attributes:get_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_get_attributes154,4142 -expand_get_attributes(Att,Mod,Var,Goal) :-expand_get_attributes161,4435 -expand_get_attributes(Att,Mod,Var,Goal) :-expand_get_attributes161,4435 -expand_get_attributes(Att,Mod,Var,Goal) :-expand_get_attributes161,4435 -build_att_term(NOfAtts,NOfAtts,[],_,_) :- !.build_att_term164,4523 -build_att_term(NOfAtts,NOfAtts,[],_,_) :- !.build_att_term164,4523 -build_att_term(NOfAtts,NOfAtts,[],_,_) :- !.build_att_term164,4523 -build_att_term(I0,NOfAtts,[I-Info|SortedLAtts],Void,AccessTerm) :-build_att_term165,4568 -build_att_term(I0,NOfAtts,[I-Info|SortedLAtts],Void,AccessTerm) :-build_att_term165,4568 -build_att_term(I0,NOfAtts,[I-Info|SortedLAtts],Void,AccessTerm) :-build_att_term165,4568 -build_att_term(I0,NOfAtts,SortedLAtts,Void,AccessTerm) :-build_att_term169,4746 -build_att_term(I0,NOfAtts,SortedLAtts,Void,AccessTerm) :-build_att_term169,4746 -build_att_term(I0,NOfAtts,SortedLAtts,Void,AccessTerm) :-build_att_term169,4746 -cvt_atts(V,_,_,_) :- var(V), !, fail.cvt_atts174,4898 -cvt_atts(V,_,_,_) :- var(V), !, fail.cvt_atts174,4898 -cvt_atts(V,_,_,_) :- var(V), !, fail.cvt_atts174,4898 -cvt_atts([],_,_,[]).cvt_atts175,4936 -cvt_atts([],_,_,[]).cvt_atts175,4936 -cvt_atts([V|_],_,_,_) :- var(V), !, fail.cvt_atts176,4957 -cvt_atts([V|_],_,_,_) :- var(V), !, fail.cvt_atts176,4957 -cvt_atts([V|_],_,_,_) :- var(V), !, fail.cvt_atts176,4957 -cvt_atts([+Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts177,4999 -cvt_atts([+Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts177,4999 -cvt_atts([+Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts177,4999 -cvt_atts([-Att|Atts],Mod,Void,[Pos-LVoids|Read]) :- !,cvt_atts181,5167 -cvt_atts([-Att|Atts],Mod,Void,[Pos-LVoids|Read]) :- !,cvt_atts181,5167 -cvt_atts([-Att|Atts],Mod,Void,[Pos-LVoids|Read]) :- !,cvt_atts181,5167 -cvt_atts([Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts192,5388 -cvt_atts([Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts192,5388 -cvt_atts([Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts192,5388 -copy_att_args([],I,I,_).copy_att_args197,5556 -copy_att_args([],I,I,_).copy_att_args197,5556 -copy_att_args([V|Info],I,NI,AccessTerm) :-copy_att_args198,5581 -copy_att_args([V|Info],I,NI,AccessTerm) :-copy_att_args198,5581 -copy_att_args([V|Info],I,NI,AccessTerm) :-copy_att_args198,5581 -void_vars([],_,[]).void_vars203,5699 -void_vars([],_,[]).void_vars203,5699 -void_vars([_|LAtts],Void,[Void|LVoids]) :-void_vars204,5719 -void_vars([_|LAtts],Void,[Void|LVoids]) :-void_vars204,5719 -void_vars([_|LAtts],Void,[Void|LVoids]) :-void_vars204,5719 -expand_put_attributes(V,_,_,_) :- var(V), !, fail.expand_put_attributes207,5794 -expand_put_attributes(V,_,_,_) :- var(V), !, fail.expand_put_attributes207,5794 -expand_put_attributes(V,_,_,_) :- var(V), !, fail.expand_put_attributes207,5794 -expand_put_attributes([-G1],Mod,V,attributes:rm_att(V,Mod,NOfAtts,Pos)) :-expand_put_attributes208,5845 -expand_put_attributes([-G1],Mod,V,attributes:rm_att(V,Mod,NOfAtts,Pos)) :-expand_put_attributes208,5845 -expand_put_attributes([-G1],Mod,V,attributes:rm_att(V,Mod,NOfAtts,Pos)) :-expand_put_attributes208,5845 -expand_put_attributes([+G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes211,5993 -expand_put_attributes([+G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes211,5993 -expand_put_attributes([+G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes211,5993 -expand_put_attributes([G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes215,6158 -expand_put_attributes([G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes215,6158 -expand_put_attributes([G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes215,6158 -expand_put_attributes(Atts,Mod,Var,attributes:put_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_put_attributes219,6322 -expand_put_attributes(Atts,Mod,Var,attributes:put_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_put_attributes219,6322 -expand_put_attributes(Atts,Mod,Var,attributes:put_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_put_attributes219,6322 -expand_put_attributes(Att,Mod,Var,Goal) :-expand_put_attributes226,6615 -expand_put_attributes(Att,Mod,Var,Goal) :-expand_put_attributes226,6615 -expand_put_attributes(Att,Mod,Var,Goal) :-expand_put_attributes226,6615 -woken_att_do(AttVar, Binding, NGoals, DoNotBind) :-woken_att_do229,6703 -woken_att_do(AttVar, Binding, NGoals, DoNotBind) :-woken_att_do229,6703 -woken_att_do(AttVar, Binding, NGoals, DoNotBind) :-woken_att_do229,6703 -process_goals([], [], _).process_goals237,7030 -process_goals([], [], _).process_goals237,7030 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals(G.Goals, G.NGoals, Do) :-process_goals240,7167 -process_goals(G.Goals, G.NGoals, Do) :-process_goals240,7167 -process_goals(G.Goals, G.NGoals, Do) :-process_goals240,7167 -find_used([],_,L,L).find_used243,7243 -find_used([],_,L,L).find_used243,7243 -find_used([M|Mods],Mods0,L0,Lf) :-find_used244,7264 -find_used([M|Mods],Mods0,L0,Lf) :-find_used244,7264 -find_used([M|Mods],Mods0,L0,Lf) :-find_used244,7264 -find_used([_|Mods],Mods0,L0,Lf) :-find_used247,7361 -find_used([_|Mods],Mods0,L0,Lf) :-find_used247,7361 -find_used([_|Mods],Mods0,L0,Lf) :-find_used247,7361 -do_verify_attributes([], _, _, []).do_verify_attributes270,8299 -do_verify_attributes([], _, _, []).do_verify_attributes270,8299 -do_verify_attributes([Mod|Mods], AttVar, Binding, [Mod:Goal|Goals]) :-do_verify_attributes271,8335 -do_verify_attributes([Mod|Mods], AttVar, Binding, [Mod:Goal|Goals]) :-do_verify_attributes271,8335 -do_verify_attributes([Mod|Mods], AttVar, Binding, [Mod:Goal|Goals]) :-do_verify_attributes271,8335 -do_verify_attributes([_|Mods], AttVar, Binding, Goals) :-do_verify_attributes275,8577 -do_verify_attributes([_|Mods], AttVar, Binding, Goals) :-do_verify_attributes275,8577 -do_verify_attributes([_|Mods], AttVar, Binding, Goals) :-do_verify_attributes275,8577 - -library/autoloader.yap,3052 -:- dynamic exported/3, loaded/1.dynamic6,91 -:- dynamic exported/3, loaded/1.dynamic6,91 -make_library_index :-make_library_index8,125 -scan_library_exports :-scan_library_exports12,190 -scan_exports(Library, CallName) :-scan_exports48,1624 -scan_exports(Library, CallName) :-scan_exports48,1624 -scan_exports(Library, CallName) :-scan_exports48,1624 -scan_exports(Library) :-scan_exports61,1939 -scan_exports(Library) :-scan_exports61,1939 -scan_exports(Library) :-scan_exports61,1939 -scan_swi_exports :-scan_swi_exports67,2088 -get_exports(O, Exports, Module) :-get_exports82,2484 -get_exports(O, Exports, Module) :-get_exports82,2484 -get_exports(O, Exports, Module) :-get_exports82,2484 -get_exports(O, Exports, Module) :-get_exports84,2561 -get_exports(O, Exports, Module) :-get_exports84,2561 -get_exports(O, Exports, Module) :-get_exports84,2561 -get_reexports(O, Exports, ExportsL) :-get_reexports87,2631 -get_reexports(O, Exports, ExportsL) :-get_reexports87,2631 -get_reexports(O, Exports, ExportsL) :-get_reexports87,2631 -get_reexports(_, Exports, Exports).get_reexports91,2791 -get_reexports(_, Exports, Exports).get_reexports91,2791 -publish_exports([], _, _, _).publish_exports93,2828 -publish_exports([], _, _, _).publish_exports93,2828 -publish_exports([F/A|Exports], W, Path, Module) :-publish_exports94,2858 -publish_exports([F/A|Exports], W, Path, Module) :-publish_exports94,2858 -publish_exports([F/A|Exports], W, Path, Module) :-publish_exports94,2858 -publish_exports([F//A0|Exports], W, Path, Module) :-publish_exports97,2993 -publish_exports([F//A0|Exports], W, Path, Module) :-publish_exports97,2993 -publish_exports([F//A0|Exports], W, Path, Module) :-publish_exports97,2993 -publish_exports([op(_,_,_)|Exports], W, Path, Module) :-publish_exports101,3142 -publish_exports([op(_,_,_)|Exports], W, Path, Module) :-publish_exports101,3142 -publish_exports([op(_,_,_)|Exports], W, Path, Module) :-publish_exports101,3142 -publish_export(F, A, _, _, Module) :-publish_export104,3244 -publish_export(F, A, _, _, Module) :-publish_export104,3244 -publish_export(F, A, _, _, Module) :-publish_export104,3244 -publish_export(F, A, W, Path, Module) :-publish_export107,3406 -publish_export(F, A, W, Path, Module) :-publish_export107,3406 -publish_export(F, A, W, Path, Module) :-publish_export107,3406 -find_predicate(G,ExportingModI) :-find_predicate111,3531 -find_predicate(G,ExportingModI) :-find_predicate111,3531 -find_predicate(G,ExportingModI) :-find_predicate111,3531 -find_predicate(G,ExportingModI) :-find_predicate116,3673 -find_predicate(G,ExportingModI) :-find_predicate116,3673 -find_predicate(G,ExportingModI) :-find_predicate116,3673 -ensure_file_loaded(File) :-ensure_file_loaded122,3820 -ensure_file_loaded(File) :-ensure_file_loaded122,3820 -ensure_file_loaded(File) :-ensure_file_loaded122,3820 -ensure_file_loaded(File) :-ensure_file_loaded124,3866 -ensure_file_loaded(File) :-ensure_file_loaded124,3866 -ensure_file_loaded(File) :-ensure_file_loaded124,3866 - -library/avl.yap,3288 -avl_new([]).avl_new73,1742 -avl_new([]).avl_new73,1742 -avl_insert(Key, Value, T0, TF) :-avl_insert84,1949 -avl_insert(Key, Value, T0, TF) :-avl_insert84,1949 -avl_insert(Key, Value, T0, TF) :-avl_insert84,1949 -insert([], Key, Value, avl([],Key,Value,-,[]), yes).insert87,2016 -insert([], Key, Value, avl([],Key,Value,-,[]), yes).insert87,2016 -insert(avl(L,Root,RVal,Bl,R), E, Value, NewTree, WhatHasChanged) :-insert88,2069 -insert(avl(L,Root,RVal,Bl,R), E, Value, NewTree, WhatHasChanged) :-insert88,2069 -insert(avl(L,Root,RVal,Bl,R), E, Value, NewTree, WhatHasChanged) :-insert88,2069 -insert(avl(L,Root,RVal,Bl,R), E, Val, NewTree, WhatHasChanged) :-insert92,2278 -insert(avl(L,Root,RVal,Bl,R), E, Val, NewTree, WhatHasChanged) :-insert92,2278 -insert(avl(L,Root,RVal,Bl,R), E, Val, NewTree, WhatHasChanged) :-insert92,2278 -adjust(Oldtree, no, _, Oldtree, no).adjust98,2576 -adjust(Oldtree, no, _, Oldtree, no).adjust98,2576 -adjust(avl(L,Root,RVal,Bl,R), yes, Lor, NewTree, WhatHasChanged) :-adjust99,2613 -adjust(avl(L,Root,RVal,Bl,R), yes, Lor, NewTree, WhatHasChanged) :-adjust99,2613 -adjust(avl(L,Root,RVal,Bl,R), yes, Lor, NewTree, WhatHasChanged) :-adjust99,2613 -table(- , left , < , yes , no ).table105,2914 -table(- , left , < , yes , no ).table105,2914 -table(- , right , > , yes , no ).table106,2969 -table(- , right , > , yes , no ).table106,2969 -table(< , left , - , no , yes ).table107,3024 -table(< , left , - , no , yes ).table107,3024 -table(< , right , - , no , no ).table108,3079 -table(< , right , - , no , no ).table108,3079 -table(> , left , - , no , no ).table109,3134 -table(> , left , - , no , no ).table109,3134 -table(> , right , - , no , yes ).table110,3189 -table(> , right , - , no , yes ).table110,3189 -rebalance(avl(Lst, Root, RVal, _Bl, Rst), Bl1, no, avl(Lst, Root, RVal, Bl1,Rst)).rebalance112,3245 -rebalance(avl(Lst, Root, RVal, _Bl, Rst), Bl1, no, avl(Lst, Root, RVal, Bl1,Rst)).rebalance112,3245 -rebalance(OldTree, _, yes, NewTree) :-rebalance113,3328 -rebalance(OldTree, _, yes, NewTree) :-rebalance113,3328 -rebalance(OldTree, _, yes, NewTree) :-rebalance113,3328 -table2(< ,- ,> ).table2127,3918 -table2(< ,- ,> ).table2127,3918 -table2(> ,< ,- ).table2128,3936 -table2(> ,< ,- ).table2128,3936 -table2(- ,- ,- ).table2129,3954 -table2(- ,- ,- ).table2129,3954 -avl_lookup(Key, Value, avl(L,Key0,KVal,_,R)) :-avl_lookup139,4113 -avl_lookup(Key, Value, avl(L,Key0,KVal,_,R)) :-avl_lookup139,4113 -avl_lookup(Key, Value, avl(L,Key0,KVal,_,R)) :-avl_lookup139,4113 -avl_lookup(=, Value, _, _, _, Value).avl_lookup143,4230 -avl_lookup(=, Value, _, _, _, Value).avl_lookup143,4230 -avl_lookup(<, Value, L, _, Key, _) :-avl_lookup144,4268 -avl_lookup(<, Value, L, _, Key, _) :-avl_lookup144,4268 -avl_lookup(<, Value, L, _, Key, _) :-avl_lookup144,4268 -avl_lookup(>, Value, _, R, Key, _) :-avl_lookup146,4334 -avl_lookup(>, Value, _, R, Key, _) :-avl_lookup146,4334 -avl_lookup(>, Value, _, R, Key, _) :-avl_lookup146,4334 - -library/bhash.yap,7886 -array_default_size(2048).array_default_size55,1040 -array_default_size(2048).array_default_size55,1040 -is_b_hash(V) :- var(V), !, fail.is_b_hash61,1129 -is_b_hash(V) :- var(V), !, fail.is_b_hash61,1129 -is_b_hash(V) :- var(V), !, fail.is_b_hash61,1129 -is_b_hash(hash(_,_,_,_,_)).is_b_hash62,1162 -is_b_hash(hash(_,_,_,_,_)).is_b_hash62,1162 -b_hash_new(hash(Keys, Vals, Size, N, _, _)) :-b_hash_new68,1289 -b_hash_new(hash(Keys, Vals, Size, N, _, _)) :-b_hash_new68,1289 -b_hash_new(hash(Keys, Vals, Size, N, _, _)) :-b_hash_new68,1289 -b_hash_new(hash(Keys, Vals, Size, N, _, _), Size) :-b_hash_new78,1528 -b_hash_new(hash(Keys, Vals, Size, N, _, _), Size) :-b_hash_new78,1528 -b_hash_new(hash(Keys, Vals, Size, N, _, _), Size) :-b_hash_new78,1528 -b_hash_new(hash(Keys,Vals, Size, N, HashF, CmpF), Size, HashF, CmpF) :-b_hash_new88,1841 -b_hash_new(hash(Keys,Vals, Size, N, HashF, CmpF), Size, HashF, CmpF) :-b_hash_new88,1841 -b_hash_new(hash(Keys,Vals, Size, N, HashF, CmpF), Size, HashF, CmpF) :-b_hash_new88,1841 -b_hash_size(hash(_, _, Size, _, _, _), Size).b_hash_size98,2081 -b_hash_size(hash(_, _, Size, _, _, _), Size).b_hash_size98,2081 -b_hash_lookup(Key, Val, hash(Keys, Vals, Size, _, F, CmpF)):-b_hash_lookup105,2273 -b_hash_lookup(Key, Val, hash(Keys, Vals, Size, _, F, CmpF)):-b_hash_lookup105,2273 -b_hash_lookup(Key, Val, hash(Keys, Vals, Size, _, F, CmpF)):-b_hash_lookup105,2273 -fetch_key(Keys, Index, Size, Key, CmpF, ActualIndex) :-fetch_key111,2493 -fetch_key(Keys, Index, Size, Key, CmpF, ActualIndex) :-fetch_key111,2493 -fetch_key(Keys, Index, Size, Key, CmpF, ActualIndex) :-fetch_key111,2493 -b_hash_update(Hash, Key, NewVal):-b_hash_update128,2892 -b_hash_update(Hash, Key, NewVal):-b_hash_update128,2892 -b_hash_update(Hash, Key, NewVal):-b_hash_update128,2892 -b_hash_update(Hash, Key, OldVal, NewVal):-b_hash_update140,3331 -b_hash_update(Hash, Key, OldVal, NewVal):-b_hash_update140,3331 -b_hash_update(Hash, Key, OldVal, NewVal):-b_hash_update140,3331 -b_hash_insert(Hash, Key, NewVal, NewHash):-b_hash_insert152,3802 -b_hash_insert(Hash, Key, NewVal, NewHash):-b_hash_insert152,3802 -b_hash_insert(Hash, Key, NewVal, NewHash):-b_hash_insert152,3802 -find_or_insert(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert157,3997 -find_or_insert(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert157,3997 -find_or_insert(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert157,3997 -b_hash_insert_new(Hash, Key, NewVal, NewHash):-b_hash_insert_new180,4669 -b_hash_insert_new(Hash, Key, NewVal, NewHash):-b_hash_insert_new180,4669 -b_hash_insert_new(Hash, Key, NewVal, NewHash):-b_hash_insert_new180,4669 -find_or_insert_new(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert_new185,4872 -find_or_insert_new(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert_new185,4872 -find_or_insert_new(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert_new185,4872 -add_element(Keys, Index, Size, N, Vals, Key, NewVal, Hash, NewHash) :-add_element200,5254 -add_element(Keys, Index, Size, N, Vals, Key, NewVal, Hash, NewHash) :-add_element200,5254 -add_element(Keys, Index, Size, N, Vals, Key, NewVal, Hash, NewHash) :-add_element200,5254 -expand_array(Hash, NewHash) :-expand_array216,5602 -expand_array(Hash, NewHash) :-expand_array216,5602 -expand_array(Hash, NewHash) :-expand_array216,5602 -expand_array(Hash, hash(NewKeys, NewVals, NewSize, X, F, CmpF)) :-expand_array228,5952 -expand_array(Hash, hash(NewKeys, NewVals, NewSize, X, F, CmpF)) :-expand_array228,5952 -expand_array(Hash, hash(NewKeys, NewVals, NewSize, X, F, CmpF)) :-expand_array228,5952 -new_size(Size, NewSize) :-new_size235,6208 -new_size(Size, NewSize) :-new_size235,6208 -new_size(Size, NewSize) :-new_size235,6208 -new_size(Size, NewSize) :-new_size238,6281 -new_size(Size, NewSize) :-new_size238,6281 -new_size(Size, NewSize) :-new_size238,6281 -copy_hash_table(0, _, _, _, _, _, _) :- !.copy_hash_table241,6329 -copy_hash_table(0, _, _, _, _, _, _) :- !.copy_hash_table241,6329 -copy_hash_table(0, _, _, _, _, _, _) :- !.copy_hash_table241,6329 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table242,6372 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table242,6372 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table242,6372 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table249,6632 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table249,6632 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table249,6632 -insert_el(Key, Val, Size, F, NewKeys, NewVals) :-insert_el253,6767 -insert_el(Key, Val, Size, F, NewKeys, NewVals) :-insert_el253,6767 -insert_el(Key, Val, Size, F, NewKeys, NewVals) :-insert_el253,6767 -find_free(Index, Size, Keys, NewIndex) :-find_free259,6973 -find_free(Index, Size, Keys, NewIndex) :-find_free259,6973 -find_free(Index, Size, Keys, NewIndex) :-find_free259,6973 -hash_f(Key, Size, Index, F) :-hash_f270,7170 -hash_f(Key, Size, Index, F) :-hash_f270,7170 -hash_f(Key, Size, Index, F) :-hash_f270,7170 -hash_f(Key, Size, Index, F) :-hash_f273,7244 -hash_f(Key, Size, Index, F) :-hash_f273,7244 -hash_f(Key, Size, Index, F) :-hash_f273,7244 -cmp_f(F, A, B) :-cmp_f276,7304 -cmp_f(F, A, B) :-cmp_f276,7304 -cmp_f(F, A, B) :-cmp_f276,7304 -cmp_f(F, A, B) :-cmp_f279,7343 -cmp_f(F, A, B) :-cmp_f279,7343 -cmp_f(F, A, B) :-cmp_f279,7343 -b_hash_to_list(hash(Keys, Vals, _, _, _, _), LKeyVals) :-b_hash_to_list287,7528 -b_hash_to_list(hash(Keys, Vals, _, _, _, _), LKeyVals) :-b_hash_to_list287,7528 -b_hash_to_list(hash(Keys, Vals, _, _, _, _), LKeyVals) :-b_hash_to_list287,7528 -b_hash_keys_to_list(hash(Keys, _, _, _, _, _), LKeys) :-b_hash_keys_to_list297,7789 -b_hash_keys_to_list(hash(Keys, _, _, _, _, _), LKeys) :-b_hash_keys_to_list297,7789 -b_hash_keys_to_list(hash(Keys, _, _, _, _, _), LKeys) :-b_hash_keys_to_list297,7789 -b_hash_values_to_list(hash(_, Vals, _, _, _, _), LVals) :-b_hash_values_to_list306,8023 -b_hash_values_to_list(hash(_, Vals, _, _, _, _), LVals) :-b_hash_values_to_list306,8023 -b_hash_values_to_list(hash(_, Vals, _, _, _, _), LVals) :-b_hash_values_to_list306,8023 -mklistpairs([], [], []).mklistpairs310,8127 -mklistpairs([], [], []).mklistpairs310,8127 -mklistpairs(V.LKs, _.LVs, KeyVals) :- var(V), !,mklistpairs311,8152 -mklistpairs(V.LKs, _.LVs, KeyVals) :- var(V), !,mklistpairs311,8152 -mklistpairs(V.LKs, _.LVs, KeyVals) :- var(V), !,mklistpairs311,8152 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistels([], []).mklistels317,8342 -mklistels([], []).mklistels317,8342 -mklistels(V.Els, NEls) :- var(V), !,mklistels318,8362 -mklistels(V.Els, NEls) :- var(V), !,mklistels318,8362 -mklistels(V.Els, NEls) :- var(V), !,mklistels318,8362 -mklistels(K.Els, K.NEls) :- mklistels320,8422 -mklistels(K.Els, K.NEls) :- mklistels320,8422 -mklistels(K.Els, K.NEls) :- mklistels320,8422 -mklistvals([], []).mklistvals323,8475 -mklistvals([], []).mklistvals323,8475 -mklistvals(V.Vals, NVals) :- var(V), !,mklistvals324,8496 -mklistvals(V.Vals, NVals) :- var(V), !,mklistvals324,8496 -mklistvals(V.Vals, NVals) :- var(V), !,mklistvals324,8496 -mklistvals(K.Vals, KK.NVals) :- mklistvals326,8562 -mklistvals(K.Vals, KK.NVals) :- mklistvals326,8562 -mklistvals(K.Vals, KK.NVals) :- mklistvals326,8562 - -library/block_diagram.yap,11273 -parameter(texts((+inf))).parameter241,10602 -parameter(texts((+inf))).parameter241,10602 -parameter(depth((+inf))).parameter242,10628 -parameter(depth((+inf))).parameter242,10628 -parameter(default_ext('.yap')).parameter243,10654 -parameter(default_ext('.yap')).parameter243,10654 -make_diagram(InputFile, OutputFile):-make_diagram255,10974 -make_diagram(InputFile, OutputFile):-make_diagram255,10974 -make_diagram(InputFile, OutputFile):-make_diagram255,10974 -make_diagram(InputFile, OutputFile, Texts, Depth, Ext):-make_diagram271,11574 -make_diagram(InputFile, OutputFile, Texts, Depth, Ext):-make_diagram271,11574 -make_diagram(InputFile, OutputFile, Texts, Depth, Ext):-make_diagram271,11574 -path_seperator('\\'):-path_seperator284,11992 -path_seperator('\\'):-path_seperator284,11992 -path_seperator('\\'):-path_seperator284,11992 -path_seperator('/').path_seperator286,12046 -path_seperator('/').path_seperator286,12046 -split_path_file(PathFile, Path, File):-split_path_file288,12068 -split_path_file(PathFile, Path, File):-split_path_file288,12068 -split_path_file(PathFile, Path, File):-split_path_file288,12068 -split_file_ext(FileExt, File, Ext):-split_file_ext295,12290 -split_file_ext(FileExt, File, Ext):-split_file_ext295,12290 -split_file_ext(FileExt, File, Ext):-split_file_ext295,12290 -parse_module_directive(':-'(module(Name)), _):-parse_module_directive304,12503 -parse_module_directive(':-'(module(Name)), _):-parse_module_directive304,12503 -parse_module_directive(':-'(module(Name)), _):-parse_module_directive304,12503 -parse_module_directive(':-'(module(Name, _Exported)), _):-parse_module_directive306,12581 -parse_module_directive(':-'(module(Name, _Exported)), _):-parse_module_directive306,12581 -parse_module_directive(':-'(module(Name, _Exported)), _):-parse_module_directive306,12581 -parse_module_directive(':-'(module(Name, Exported)), Shape):-parse_module_directive308,12670 -parse_module_directive(':-'(module(Name, Exported)), Shape):-parse_module_directive308,12670 -parse_module_directive(':-'(module(Name, Exported)), Shape):-parse_module_directive308,12670 -parse_module_directive(':-'(module(Name)), Shape):-parse_module_directive314,12981 -parse_module_directive(':-'(module(Name)), Shape):-parse_module_directive314,12981 -parse_module_directive(':-'(module(Name)), Shape):-parse_module_directive314,12981 -extract_name_file(PathFile, Name, FinalFile):-extract_name_file320,13210 -extract_name_file(PathFile, Name, FinalFile):-extract_name_file320,13210 -extract_name_file(PathFile, Name, FinalFile):-extract_name_file320,13210 -extract_name_file(File, Name, File):-extract_name_file324,13399 -extract_name_file(File, Name, File):-extract_name_file324,13399 -extract_name_file(File, Name, File):-extract_name_file324,13399 -extract_name_file(Name, Name, File):-extract_name_file326,13473 -extract_name_file(Name, Name, File):-extract_name_file326,13473 -extract_name_file(Name, Name, File):-extract_name_file326,13473 -read_use_module_directive(':-'(ensure_loaded(library(Name))), Name, library(Name), []):- !.read_use_module_directive330,13575 -read_use_module_directive(':-'(ensure_loaded(library(Name))), Name, library(Name), []):- !.read_use_module_directive330,13575 -read_use_module_directive(':-'(ensure_loaded(library(Name))), Name, library(Name), []):- !.read_use_module_directive330,13575 -read_use_module_directive(':-'(ensure_loaded(Path)), Name, FinalFile, []):-read_use_module_directive331,13667 -read_use_module_directive(':-'(ensure_loaded(Path)), Name, FinalFile, []):-read_use_module_directive331,13667 -read_use_module_directive(':-'(ensure_loaded(Path)), Name, FinalFile, []):-read_use_module_directive331,13667 -read_use_module_directive(':-'(use_module(library(Name))), Name, library(Name), []):- !.read_use_module_directive333,13790 -read_use_module_directive(':-'(use_module(library(Name))), Name, library(Name), []):- !.read_use_module_directive333,13790 -read_use_module_directive(':-'(use_module(library(Name))), Name, library(Name), []):- !.read_use_module_directive333,13790 -read_use_module_directive(':-'(use_module(Path)), Name, FinalFile, []):-read_use_module_directive334,13879 -read_use_module_directive(':-'(use_module(Path)), Name, FinalFile, []):-read_use_module_directive334,13879 -read_use_module_directive(':-'(use_module(Path)), Name, FinalFile, []):-read_use_module_directive334,13879 -read_use_module_directive(':-'(use_module(library(Name), Import)), Name, library(Name), Import):- !.read_use_module_directive336,13999 -read_use_module_directive(':-'(use_module(library(Name), Import)), Name, library(Name), Import):- !.read_use_module_directive336,13999 -read_use_module_directive(':-'(use_module(library(Name), Import)), Name, library(Name), Import):- !.read_use_module_directive336,13999 -read_use_module_directive(':-'(use_module(Path, Import)), Name, FinalFile, Import):-read_use_module_directive337,14100 -read_use_module_directive(':-'(use_module(Path, Import)), Name, FinalFile, Import):-read_use_module_directive337,14100 -read_use_module_directive(':-'(use_module(Path, Import)), Name, FinalFile, Import):-read_use_module_directive337,14100 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive339,14232 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive339,14232 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive339,14232 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive342,14383 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive342,14383 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive342,14383 -parse_use_module_directive(Module, Directive):-parse_use_module_directive346,14532 -parse_use_module_directive(Module, Directive):-parse_use_module_directive346,14532 -parse_use_module_directive(Module, Directive):-parse_use_module_directive346,14532 -parse_use_module_directive(Module, Name, _File, _Imported):-parse_use_module_directive349,14702 -parse_use_module_directive(Module, Name, _File, _Imported):-parse_use_module_directive349,14702 -parse_use_module_directive(Module, Name, _File, _Imported):-parse_use_module_directive349,14702 -parse_use_module_directive(Module, Name, File, Imported):-parse_use_module_directive351,14801 -parse_use_module_directive(Module, Name, File, Imported):-parse_use_module_directive351,14801 -parse_use_module_directive(Module, Name, File, Imported):-parse_use_module_directive351,14801 -list_to_message(List, Message):-list_to_message359,15141 -list_to_message(List, Message):-list_to_message359,15141 -list_to_message(List, Message):-list_to_message359,15141 -list_to_message([], Message, Message).list_to_message371,15413 -list_to_message([], Message, Message).list_to_message371,15413 -list_to_message([H|T], '', FinalMessage):-list_to_message372,15452 -list_to_message([H|T], '', FinalMessage):-list_to_message372,15452 -list_to_message([H|T], '', FinalMessage):-list_to_message372,15452 -list_to_message([H|T], AccMessage, FinalMessage):-list_to_message375,15567 -list_to_message([H|T], AccMessage, FinalMessage):-list_to_message375,15567 -list_to_message([H|T], AccMessage, FinalMessage):-list_to_message375,15567 -read_module_file(library(Module), Module):-read_module_file380,15748 -read_module_file(library(Module), Module):-read_module_file380,15748 -read_module_file(library(Module), Module):-read_module_file380,15748 -read_module_file(File, Module):-read_module_file382,15858 -read_module_file(File, Module):-read_module_file382,15858 -read_module_file(File, Module):-read_module_file382,15858 -read_module_file(_, _).read_module_file395,16333 -read_module_file(_, _).read_module_file395,16333 -process(_, end_of_file):-!.process406,16486 -process(_, end_of_file):-!.process406,16486 -process(_, end_of_file):-!.process406,16486 -process(_, Term):-process407,16514 -process(_, Term):-process407,16514 -process(_, Term):-process407,16514 -process(Module, Term):-process409,16579 -process(Module, Term):-process409,16579 -process(Module, Term):-process409,16579 -process(Module, Term):-process411,16656 -process(Module, Term):-process411,16656 -process(Module, Term):-process411,16656 -find_explicit_qualification(OwnerModule, ':-'(Module:Goal)):-find_explicit_qualification414,16732 -find_explicit_qualification(OwnerModule, ':-'(Module:Goal)):-find_explicit_qualification414,16732 -find_explicit_qualification(OwnerModule, ':-'(Module:Goal)):-find_explicit_qualification414,16732 -find_explicit_qualification(OwnerModule, ':-'(_Head, Body)):-find_explicit_qualification416,16850 -find_explicit_qualification(OwnerModule, ':-'(_Head, Body)):-find_explicit_qualification416,16850 -find_explicit_qualification(OwnerModule, ':-'(_Head, Body)):-find_explicit_qualification416,16850 -find_explicit_qualification(OwnerModule, (Module:Goal, RestBody)):-find_explicit_qualification418,16962 -find_explicit_qualification(OwnerModule, (Module:Goal, RestBody)):-find_explicit_qualification418,16962 -find_explicit_qualification(OwnerModule, (Module:Goal, RestBody)):-find_explicit_qualification418,16962 -find_explicit_qualification(OwnerModule, (_Goal, RestBody)):-find_explicit_qualification421,17140 -find_explicit_qualification(OwnerModule, (_Goal, RestBody)):-find_explicit_qualification421,17140 -find_explicit_qualification(OwnerModule, (_Goal, RestBody)):-find_explicit_qualification421,17140 -find_explicit_qualification(OwnerModule, Module:Goal):-find_explicit_qualification423,17259 -find_explicit_qualification(OwnerModule, Module:Goal):-find_explicit_qualification423,17259 -find_explicit_qualification(OwnerModule, Module:Goal):-find_explicit_qualification423,17259 -find_explicit_qualification(_OwnerModule, _Goal).find_explicit_qualification425,17371 -find_explicit_qualification(_OwnerModule, _Goal).find_explicit_qualification425,17371 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification427,17422 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification427,17422 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification427,17422 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification433,17688 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification433,17688 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification433,17688 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification438,17898 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification438,17898 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification438,17898 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification444,18163 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification444,18163 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification444,18163 -write_explicit:-write_explicit449,18369 - -library/c_alarms.yap,5093 -local_init:-local_init243,10623 -get_next_identity(ID):-get_next_identity247,10682 -get_next_identity(ID):-get_next_identity247,10682 -get_next_identity(ID):-get_next_identity247,10682 -set_alarm(Seconds, Execute, ID):-set_alarm252,10773 -set_alarm(Seconds, Execute, ID):-set_alarm252,10773 -set_alarm(Seconds, Execute, ID):-set_alarm252,10773 -set_alarm(Seconds, Execute, ID):-set_alarm265,11270 -set_alarm(Seconds, Execute, ID):-set_alarm265,11270 -set_alarm(Seconds, Execute, ID):-set_alarm265,11270 -set_alarm(Seconds, Execute, ID):-set_alarm274,11815 -set_alarm(Seconds, Execute, ID):-set_alarm274,11815 -set_alarm(Seconds, Execute, ID):-set_alarm274,11815 -subtract(Elapsed, alarm(Seconds, ID, Execute), alarm(NewSeconds, ID, Execute)):-subtract277,11967 -subtract(Elapsed, alarm(Seconds, ID, Execute), alarm(NewSeconds, ID, Execute)):-subtract277,11967 -subtract(Elapsed, alarm(Seconds, ID, Execute), alarm(NewSeconds, ID, Execute)):-subtract277,11967 -unset_alarm(ID):-unset_alarm285,12190 -unset_alarm(ID):-unset_alarm285,12190 -unset_alarm(ID):-unset_alarm285,12190 -unset_alarm(ID):-unset_alarm288,12300 -unset_alarm(ID):-unset_alarm288,12300 -unset_alarm(ID):-unset_alarm288,12300 -unset_alarm(ID):-unset_alarm292,12481 -unset_alarm(ID):-unset_alarm292,12481 -unset_alarm(ID):-unset_alarm292,12481 -delete_alarm(Alarms, ID, NewAlarms):-delete_alarm306,12854 -delete_alarm(Alarms, ID, NewAlarms):-delete_alarm306,12854 -delete_alarm(Alarms, ID, NewAlarms):-delete_alarm306,12854 -alarm_handler:-alarm_handler310,13001 -alarm_handler:-alarm_handler314,13115 -find_zeros([], []).find_zeros327,13578 -find_zeros([], []).find_zeros327,13578 -find_zeros([alarm(0, ID, E)|T], [alarm(0, ID, E)|R]):-find_zeros328,13598 -find_zeros([alarm(0, ID, E)|T], [alarm(0, ID, E)|R]):-find_zeros328,13598 -find_zeros([alarm(0, ID, E)|T], [alarm(0, ID, E)|R]):-find_zeros328,13598 -find_zeros([alarm(S, _, _)|T], R):-find_zeros330,13673 -find_zeros([alarm(S, _, _)|T], R):-find_zeros330,13673 -find_zeros([alarm(S, _, _)|T], R):-find_zeros330,13673 -execute([]).execute334,13739 -execute([]).execute334,13739 -execute([alarm(_, _, Execute)|R]):-execute335,13752 -execute([alarm(_, _, Execute)|R]):-execute335,13752 -execute([alarm(_, _, Execute)|R]):-execute335,13752 -time_out_call_once(Seconds, Goal, Return):-time_out_call_once343,14013 -time_out_call_once(Seconds, Goal, Return):-time_out_call_once343,14013 -time_out_call_once(Seconds, Goal, Return):-time_out_call_once343,14013 -prove_once(Goal, success):-prove_once357,14323 -prove_once(Goal, success):-prove_once357,14323 -prove_once(Goal, success):-prove_once357,14323 -prove_once(_Goal, failure).prove_once359,14368 -prove_once(_Goal, failure).prove_once359,14368 -timer_start(Name):-timer_start361,14397 -timer_start(Name):-timer_start361,14397 -timer_start(Name):-timer_start361,14397 -timer_start(Name):-timer_start364,14513 -timer_start(Name):-timer_start364,14513 -timer_start(Name):-timer_start364,14513 -timer_start(Name):-timer_start367,14650 -timer_start(Name):-timer_start367,14650 -timer_start(Name):-timer_start367,14650 -timer_restart(Name):-timer_restart371,14758 -timer_restart(Name):-timer_restart371,14758 -timer_restart(Name):-timer_restart371,14758 -timer_restart(Name):-timer_restart374,14876 -timer_restart(Name):-timer_restart374,14876 -timer_restart(Name):-timer_restart374,14876 -timer_restart(Name):-timer_restart378,15015 -timer_restart(Name):-timer_restart378,15015 -timer_restart(Name):-timer_restart378,15015 -timer_restart(Name):-timer_restart382,15166 -timer_restart(Name):-timer_restart382,15166 -timer_restart(Name):-timer_restart382,15166 -timer_stop(Name, Elapsed):-timer_stop388,15354 -timer_stop(Name, Elapsed):-timer_stop388,15354 -timer_stop(Name, Elapsed):-timer_stop388,15354 -timer_stop(Name, Elapsed):-timer_stop391,15501 -timer_stop(Name, Elapsed):-timer_stop391,15501 -timer_stop(Name, Elapsed):-timer_stop391,15501 -timer_stop(Name, Elapsed):-timer_stop395,15651 -timer_stop(Name, Elapsed):-timer_stop395,15651 -timer_stop(Name, Elapsed):-timer_stop395,15651 -timer_elapsed(Name, Elapsed):-timer_elapsed398,15724 -timer_elapsed(Name, Elapsed):-timer_elapsed398,15724 -timer_elapsed(Name, Elapsed):-timer_elapsed398,15724 -timer_elapsed(Name, Elapsed):-timer_elapsed401,15877 -timer_elapsed(Name, Elapsed):-timer_elapsed401,15877 -timer_elapsed(Name, Elapsed):-timer_elapsed401,15877 -timer_elapsed(Name, Elapsed):-timer_elapsed405,16021 -timer_elapsed(Name, Elapsed):-timer_elapsed405,16021 -timer_elapsed(Name, Elapsed):-timer_elapsed405,16021 -timer_pause(Name, Elapsed):-timer_pause408,16088 -timer_pause(Name, Elapsed):-timer_pause408,16088 -timer_pause(Name, Elapsed):-timer_pause408,16088 -timer_pause(Name, Elapsed):-timer_pause411,16237 -timer_pause(Name, Elapsed):-timer_pause411,16237 -timer_pause(Name, Elapsed):-timer_pause411,16237 -timer_pause(Name, Elapsed):-timer_pause414,16389 -timer_pause(Name, Elapsed):-timer_pause414,16389 -timer_pause(Name, Elapsed):-timer_pause414,16389 - -library/charsio.yap,3558 -format_to_chars(Format, Args, Codes) :-format_to_chars85,2031 -format_to_chars(Format, Args, Codes) :-format_to_chars85,2031 -format_to_chars(Format, Args, Codes) :-format_to_chars85,2031 -format_to_chars(Format, Args, OUT, L0) :-format_to_chars95,2348 -format_to_chars(Format, Args, OUT, L0) :-format_to_chars95,2348 -format_to_chars(Format, Args, OUT, L0) :-format_to_chars95,2348 -write_to_chars(Term, Codes) :-write_to_chars103,2610 -write_to_chars(Term, Codes) :-write_to_chars103,2610 -write_to_chars(Term, Codes) :-write_to_chars103,2610 -write_to_chars(Term, Out, Tail) :-write_to_chars112,2887 -write_to_chars(Term, Out, Tail) :-write_to_chars112,2887 -write_to_chars(Term, Out, Tail) :-write_to_chars112,2887 -atom_to_chars(Atom, OUT) :-atom_to_chars120,3081 -atom_to_chars(Atom, OUT) :-atom_to_chars120,3081 -atom_to_chars(Atom, OUT) :-atom_to_chars120,3081 -atom_to_chars(Atom, L0, OUT) :-atom_to_chars128,3283 -atom_to_chars(Atom, L0, OUT) :-atom_to_chars128,3283 -atom_to_chars(Atom, L0, OUT) :-atom_to_chars128,3283 -number_to_chars(Number, OUT) :-number_to_chars136,3483 -number_to_chars(Number, OUT) :-number_to_chars136,3483 -number_to_chars(Number, OUT) :-number_to_chars136,3483 -number_to_chars(Number, L0, OUT) :-number_to_chars144,3700 -number_to_chars(Number, L0, OUT) :-number_to_chars144,3700 -number_to_chars(Number, L0, OUT) :-number_to_chars144,3700 -number_to_chars(Number, L0, OUT) :-number_to_chars147,3822 -number_to_chars(Number, L0, OUT) :-number_to_chars147,3822 -number_to_chars(Number, L0, OUT) :-number_to_chars147,3822 -number_to_chars(Number, L0, OUT) :-number_to_chars150,3919 -number_to_chars(Number, L0, OUT) :-number_to_chars150,3919 -number_to_chars(Number, L0, OUT) :-number_to_chars150,3919 -open_chars_stream(Codes, Stream) :-open_chars_stream157,4152 -open_chars_stream(Codes, Stream) :-open_chars_stream157,4152 -open_chars_stream(Codes, Stream) :-open_chars_stream157,4152 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream160,4228 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream160,4228 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream160,4228 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream169,4552 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream169,4552 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream169,4552 -with_output_to_chars(Goal, Codes) :-with_output_to_chars179,4937 -with_output_to_chars(Goal, Codes) :-with_output_to_chars179,4937 -with_output_to_chars(Goal, Codes) :-with_output_to_chars179,4937 -with_output_to_chars(Goal, Codes, L0) :-with_output_to_chars189,5302 -with_output_to_chars(Goal, Codes, L0) :-with_output_to_chars189,5302 -with_output_to_chars(Goal, Codes, L0) :-with_output_to_chars189,5302 -with_output_to_chars(Goal, Stream, Codes, Tail) :-with_output_to_chars206,5911 -with_output_to_chars(Goal, Stream, Codes, Tail) :-with_output_to_chars206,5911 -with_output_to_chars(Goal, Stream, Codes, Tail) :-with_output_to_chars206,5911 -with_stream(Stream, Goal) :-with_stream209,6027 -with_stream(Stream, Goal) :-with_stream209,6027 -with_stream(Stream, Goal) :-with_stream209,6027 -read_from_chars("", end_of_file) :- !.read_from_chars224,6515 -read_from_chars("", end_of_file) :- !.read_from_chars224,6515 -read_from_chars("", end_of_file) :- !.read_from_chars224,6515 -read_from_chars(List, Term) :-read_from_chars225,6554 -read_from_chars(List, Term) :-read_from_chars225,6554 -read_from_chars(List, Term) :-read_from_chars225,6554 - -library/clauses.yap,2333 -conj2list( M:Conj, List ) :-conj2list34,721 -conj2list( M:Conj, List ) :-conj2list34,721 -conj2list( M:Conj, List ) :-conj2list34,721 -conj2list( Conj, List ) :-conj2list37,785 -conj2list( Conj, List ) :-conj2list37,785 -conj2list( Conj, List ) :-conj2list37,785 -conj2list_( C ) -->conj2list_41,845 -conj2list_( C ) -->conj2list_41,845 -conj2list_( C ) -->conj2list_41,845 -conj2list_( true ) --> !.conj2list_45,888 -conj2list_( true ) --> !.conj2list_45,888 -conj2list_( true ) --> !.conj2list_45,888 -conj2list_( (C1, C2) ) -->conj2list_46,915 -conj2list_( (C1, C2) ) -->conj2list_46,915 -conj2list_( (C1, C2) ) -->conj2list_46,915 -conj2list_( C ) -->conj2list_50,984 -conj2list_( C ) -->conj2list_50,984 -conj2list_( C ) -->conj2list_50,984 -conj2list_( C, M ) -->conj2list_53,1018 -conj2list_( C, M ) -->conj2list_53,1018 -conj2list_( C, M ) -->conj2list_53,1018 -conj2list_( true , _) --> !.conj2list_57,1067 -conj2list_( true , _) --> !.conj2list_57,1067 -conj2list_( true , _) --> !.conj2list_57,1067 -conj2list_( (C1, C2), M ) -->conj2list_58,1097 -conj2list_( (C1, C2), M ) -->conj2list_58,1097 -conj2list_( (C1, C2), M ) -->conj2list_58,1097 -conj2list_( C, M ) -->conj2list_62,1176 -conj2list_( C, M ) -->conj2list_62,1176 -conj2list_( C, M ) -->conj2list_62,1176 -list2conj([], true).list2conj72,1432 -list2conj([], true).list2conj72,1432 -list2conj([Last], Last).list2conj73,1453 -list2conj([Last], Last).list2conj73,1453 -list2conj([Head,Next|Tail], (Head,Goals)) :-list2conj74,1478 -list2conj([Head,Next|Tail], (Head,Goals)) :-list2conj74,1478 -list2conj([Head,Next|Tail], (Head,Goals)) :-list2conj74,1478 -clauselength( (_Head :- Conj), Length ) :-clauselength82,1739 -clauselength( (_Head :- Conj), Length ) :-clauselength82,1739 -clauselength( (_Head :- Conj), Length ) :-clauselength82,1739 -clauselength( C, I1, I ) :-clauselength86,1818 -clauselength( C, I1, I ) :-clauselength86,1818 -clauselength( C, I1, I ) :-clauselength86,1818 -clauselength( (C1, C2), I2, I ) :- !,clauselength90,1875 -clauselength( (C1, C2), I2, I ) :- !,clauselength90,1875 -clauselength( (C1, C2), I2, I ) :- !,clauselength90,1875 -clauselength( _C, I1, I ) :-clauselength93,1970 -clauselength( _C, I1, I ) :-clauselength93,1970 -clauselength( _C, I1, I ) :-clauselength93,1970 - -library/cleanup.yap,3558 -:- multifile user:goal_expansion/3.multifile63,1869 -:- multifile user:goal_expansion/3.multifile63,1869 -init_cleanup :-init_cleanup77,2137 -call_cleanup(G,CL) :-call_cleanup86,2416 -call_cleanup(G,CL) :-call_cleanup86,2416 -call_cleanup(G,CL) :-call_cleanup86,2416 -call_cleanup(G) :-call_cleanup97,2579 -call_cleanup(G) :-call_cleanup97,2579 -call_cleanup(G) :-call_cleanup97,2579 -needs_cleanup(CL) :-needs_cleanup107,2705 -needs_cleanup(CL) :-needs_cleanup107,2705 -needs_cleanup(CL) :-needs_cleanup107,2705 -cleanup_context(CL) :-cleanup_context113,2795 -cleanup_context(CL) :-cleanup_context113,2795 -cleanup_context(CL) :-cleanup_context113,2795 -do_cleanup(CL) :-do_cleanup118,2915 -do_cleanup(CL) :-do_cleanup118,2915 -do_cleanup(CL) :-do_cleanup118,2915 -next_cleanup(CL) :-next_cleanup123,2995 -next_cleanup(CL) :-next_cleanup123,2995 -next_cleanup(CL) :-next_cleanup123,2995 -cleanup_all :-cleanup_all142,3560 -on_cleanup(G) :-on_cleanup156,4051 -on_cleanup(G) :-on_cleanup156,4051 -on_cleanup(G) :-on_cleanup156,4051 -on_cleanup(L,G) :-on_cleanup160,4113 -on_cleanup(L,G) :-on_cleanup160,4113 -on_cleanup(L,G) :-on_cleanup160,4113 -on_cleanup(L,G) :-on_cleanup163,4199 -on_cleanup(L,G) :-on_cleanup163,4199 -on_cleanup(L,G) :-on_cleanup163,4199 -on_cleanupz(G) :-on_cleanupz169,4331 -on_cleanupz(G) :-on_cleanupz169,4331 -on_cleanupz(G) :-on_cleanupz169,4331 -on_cleanupz(L,G) :-on_cleanupz173,4395 -on_cleanupz(L,G) :-on_cleanupz173,4395 -on_cleanupz(L,G) :-on_cleanupz173,4395 -on_cleanupz(L,G) :-on_cleanupz176,4455 -on_cleanupz(L,G) :-on_cleanupz176,4455 -on_cleanupz(L,G) :-on_cleanupz176,4455 -cleanup_expansion(X) :-cleanup_expansion181,4534 -cleanup_expansion(X) :-cleanup_expansion181,4534 -cleanup_expansion(X) :-cleanup_expansion181,4534 -cleanup_expansion((H,T)) :- !,cleanup_expansion(H),cleanup_expansion(T).cleanup_expansion183,4614 -cleanup_expansion((H,T)) :- !,cleanup_expansion(H),cleanup_expansion(T).cleanup_expansion183,4614 -cleanup_expansion((H,T)) :- !,cleanup_expansion(H),cleanup_expansion(T).cleanup_expansion183,4614 -cleanup_expansion((H,T)) :- !,cleanup_expansion(H),cleanup_expansion(T).cleanup_expansion183,4614 -cleanup_expansion((H,T)) :- !,cleanup_expansion(H),cleanup_expansion(T).cleanup_expansion183,4614 -cleanup_expansion([H,T]) :- !, cleanup_expansion(H),cleanup_expansion184,4687 -cleanup_expansion([H,T]) :- !, cleanup_expansion(H),cleanup_expansion184,4687 -cleanup_expansion([H,T]) :- !, cleanup_expansion(H),cleanup_expansion184,4687 -cleanup_expansion(M:G/A) :-cleanup_expansion186,4784 -cleanup_expansion(M:G/A) :-cleanup_expansion186,4784 -cleanup_expansion(M:G/A) :-cleanup_expansion186,4784 -cleanup_expansion(G/A) :-cleanup_expansion196,5124 -cleanup_expansion(G/A) :-cleanup_expansion196,5124 -cleanup_expansion(G/A) :-cleanup_expansion196,5124 -cleanup_expansion(X) :-cleanup_expansion198,5214 -cleanup_expansion(X) :-cleanup_expansion198,5214 -cleanup_expansion(X) :-cleanup_expansion198,5214 -compose_var_goal(G/A,NG) :-compose_var_goal201,5288 -compose_var_goal(G/A,NG) :-compose_var_goal201,5288 -compose_var_goal(G/A,NG) :-compose_var_goal201,5288 -arity_to_vars(N,L) :-arity_to_vars204,5352 -arity_to_vars(N,L) :-arity_to_vars204,5352 -arity_to_vars(N,L) :-arity_to_vars204,5352 -arity_to_vars(N,L1,L2) :-arity_to_vars206,5398 -arity_to_vars(N,L1,L2) :-arity_to_vars206,5398 -arity_to_vars(N,L1,L2) :-arity_to_vars206,5398 -arity_to_vars(0,L,L).arity_to_vars211,5484 -arity_to_vars(0,L,L).arity_to_vars211,5484 - -library/clp/clp_distinct.pl,4300 -vars_in(Xs, From, To) :-vars_in71,2494 -vars_in(Xs, From, To) :-vars_in71,2494 -vars_in(Xs, From, To) :-vars_in71,2494 -vars_in(Xs, Dom) :-vars_in75,2579 -vars_in(Xs, Dom) :-vars_in75,2579 -vars_in(Xs, Dom) :-vars_in75,2579 -vars_in_([], _).vars_in_79,2658 -vars_in_([], _).vars_in_79,2658 -vars_in_([V|Vs], Bitvec) :-vars_in_80,2675 -vars_in_([V|Vs], Bitvec) :-vars_in_80,2675 -vars_in_([V|Vs], Bitvec) :-vars_in_80,2675 -domain_bitvector([], Bitvec, Bitvec).domain_bitvector102,3138 -domain_bitvector([], Bitvec, Bitvec).domain_bitvector102,3138 -domain_bitvector([D|Ds], Bitvec0, Bitvec) :-domain_bitvector103,3176 -domain_bitvector([D|Ds], Bitvec0, Bitvec) :-domain_bitvector103,3176 -domain_bitvector([D|Ds], Bitvec0, Bitvec) :-domain_bitvector103,3176 -all_distinct(Ls) :-all_distinct108,3296 -all_distinct(Ls) :-all_distinct108,3296 -all_distinct(Ls) :-all_distinct108,3296 -outof_reducer([]).outof_reducer112,3360 -outof_reducer([]).outof_reducer112,3360 -outof_reducer([X|Xs]) :-outof_reducer113,3379 -outof_reducer([X|Xs]) :-outof_reducer113,3379 -outof_reducer([X|Xs]) :-outof_reducer113,3379 -queens(N, Queens) :-queens131,3839 -queens(N, Queens) :-queens131,3839 -queens(N, Queens) :-queens131,3839 -inc(_, I0, I0, I) :-inc141,4126 -inc(_, I0, I0, I) :-inc141,4126 -inc(_, I0, I0, I) :-inc141,4126 -dec(_, I0, I0, I) :-dec144,4163 -dec(_, I0, I0, I) :-dec144,4163 -dec(_, I0, I0, I) :-dec144,4163 -all_distinct([], _).all_distinct158,4463 -all_distinct([], _).all_distinct158,4463 -all_distinct([X|Right], Left) :-all_distinct159,4484 -all_distinct([X|Right], Left) :-all_distinct159,4484 -all_distinct([X|Right], Left) :-all_distinct159,4484 -outof(X, Left, Right) :-outof165,4604 -outof(X, Left, Right) :-outof165,4604 -outof(X, Left, Right) :-outof165,4604 -exclude_fire(Lefts, Rights, E) :-exclude_fire174,4820 -exclude_fire(Lefts, Rights, E) :-exclude_fire174,4820 -exclude_fire(Lefts, Rights, E) :-exclude_fire174,4820 -exclude_fire([], [], _, _).exclude_fire178,4916 -exclude_fire([], [], _, _).exclude_fire178,4916 -exclude_fire([Left|Ls], [Right|Rs], E, Mask) :-exclude_fire179,4944 -exclude_fire([Left|Ls], [Right|Rs], E, Mask) :-exclude_fire179,4944 -exclude_fire([Left|Ls], [Right|Rs], E, Mask) :-exclude_fire179,4944 -exclude_list([], _, _).exclude_list185,5087 -exclude_list([], _, _).exclude_list185,5087 -exclude_list([V|Vs], Val, Mask) :-exclude_list186,5111 -exclude_list([V|Vs], Val, Mask) :-exclude_list186,5111 -exclude_list([V|Vs], Val, Mask) :-exclude_list186,5111 -attr_unify_hook(dom_neq(Dom,Lefts,Rights), Y) :-attr_unify_hook201,5426 -attr_unify_hook(dom_neq(Dom,Lefts,Rights), Y) :-attr_unify_hook201,5426 -attr_unify_hook(dom_neq(Dom,Lefts,Rights), Y) :-attr_unify_hook201,5426 -lists_contain([X|Xs], Y) :-lists_contain224,5991 -lists_contain([X|Xs], Y) :-lists_contain224,5991 -lists_contain([X|Xs], Y) :-lists_contain224,5991 -list_contains([X|Xs], Y) :-list_contains231,6083 -list_contains([X|Xs], Y) :-list_contains231,6083 -list_contains([X|Xs], Y) :-list_contains231,6083 -outof_reducer([], [], _, _).outof_reducer239,6163 -outof_reducer([], [], _, _).outof_reducer239,6163 -outof_reducer([L|Ls], [R|Rs], Var, Dom) :-outof_reducer240,6192 -outof_reducer([L|Ls], [R|Rs], Var, Dom) :-outof_reducer240,6192 -outof_reducer([L|Ls], [R|Rs], Var, Dom) :-outof_reducer240,6192 -reduce_from_others([], _).reduce_from_others254,6442 -reduce_from_others([], _).reduce_from_others254,6442 -reduce_from_others([X|Xs], Dom) :-reduce_from_others255,6469 -reduce_from_others([X|Xs], Dom) :-reduce_from_others255,6469 -reduce_from_others([X|Xs], Dom) :-reduce_from_others255,6469 -num_subsets([], _Dom, Num, Num).num_subsets274,6824 -num_subsets([], _Dom, Num, Num).num_subsets274,6824 -num_subsets([S|Ss], Dom, Num0, Num) :-num_subsets275,6857 -num_subsets([S|Ss], Dom, Num0, Num) :-num_subsets275,6857 -num_subsets([S|Ss], Dom, Num0, Num) :-num_subsets275,6857 -is_subset(Dom, S) :-is_subset291,7161 -is_subset(Dom, S) :-is_subset291,7161 -is_subset(Dom, S) :-is_subset291,7161 -attr_portray_hook(dom_neq(Dom,_,_), _) :-attr_portray_hook305,7504 -attr_portray_hook(dom_neq(Dom,_,_), _) :-attr_portray_hook305,7504 -attr_portray_hook(dom_neq(Dom,_,_), _) :-attr_portray_hook305,7504 - -library/clp/clpfd.pl,174828 -is_bound(n(N)) :- integer(N).is_bound218,7854 -is_bound(n(N)) :- integer(N).is_bound218,7854 -is_bound(n(N)) :- integer(N).is_bound218,7854 -is_bound(n(N)) :- integer(N).is_bound218,7854 -is_bound(n(N)) :- integer(N).is_bound218,7854 -is_bound(inf).is_bound219,7884 -is_bound(inf).is_bound219,7884 -is_bound(sup).is_bound220,7899 -is_bound(sup).is_bound220,7899 -defaulty_to_bound(D, P) :- ( integer(D) -> P = n(D) ; P = D ).defaulty_to_bound222,7915 -defaulty_to_bound(D, P) :- ( integer(D) -> P = n(D) ; P = D ).defaulty_to_bound222,7915 -defaulty_to_bound(D, P) :- ( integer(D) -> P = n(D) ; P = D ).defaulty_to_bound222,7915 -defaulty_to_bound(D, P) :- ( integer(D) -> P = n(D) ; P = D ).defaulty_to_bound222,7915 -defaulty_to_bound(D, P) :- ( integer(D) -> P = n(D) ; P = D ).defaulty_to_bound222,7915 -cis_gt(n(N), B) :- cis_gt_numeric(B, N).cis_gt230,8327 -cis_gt(n(N), B) :- cis_gt_numeric(B, N).cis_gt230,8327 -cis_gt(n(N), B) :- cis_gt_numeric(B, N).cis_gt230,8327 -cis_gt(n(N), B) :- cis_gt_numeric(B, N).cis_gt230,8327 -cis_gt(n(N), B) :- cis_gt_numeric(B, N).cis_gt230,8327 -cis_gt(sup, B0) :- B0 \== sup.cis_gt231,8368 -cis_gt(sup, B0) :- B0 \== sup.cis_gt231,8368 -cis_gt(sup, B0) :- B0 \== sup.cis_gt231,8368 -cis_gt_numeric(n(B), A) :- A > B.cis_gt_numeric233,8400 -cis_gt_numeric(n(B), A) :- A > B.cis_gt_numeric233,8400 -cis_gt_numeric(n(B), A) :- A > B.cis_gt_numeric233,8400 -cis_gt_numeric(inf, _).cis_gt_numeric234,8434 -cis_gt_numeric(inf, _).cis_gt_numeric234,8434 -cis_geq(A, B) :-cis_geq236,8459 -cis_geq(A, B) :-cis_geq236,8459 -cis_geq(A, B) :-cis_geq236,8459 -cis_geq_zero(sup).cis_geq_zero241,8540 -cis_geq_zero(sup).cis_geq_zero241,8540 -cis_geq_zero(n(N)) :- N >= 0.cis_geq_zero242,8559 -cis_geq_zero(n(N)) :- N >= 0.cis_geq_zero242,8559 -cis_geq_zero(n(N)) :- N >= 0.cis_geq_zero242,8559 -cis_lt(A, B) :- cis_gt(B, A).cis_lt244,8590 -cis_lt(A, B) :- cis_gt(B, A).cis_lt244,8590 -cis_lt(A, B) :- cis_gt(B, A).cis_lt244,8590 -cis_lt(A, B) :- cis_gt(B, A).cis_lt244,8590 -cis_lt(A, B) :- cis_gt(B, A).cis_lt244,8590 -cis_leq(A, B) :- cis_geq(B, A).cis_leq246,8622 -cis_leq(A, B) :- cis_geq(B, A).cis_leq246,8622 -cis_leq(A, B) :- cis_geq(B, A).cis_leq246,8622 -cis_leq(A, B) :- cis_geq(B, A).cis_leq246,8622 -cis_leq(A, B) :- cis_geq(B, A).cis_leq246,8622 -cis_min(inf, _, inf).cis_min248,8655 -cis_min(inf, _, inf).cis_min248,8655 -cis_min(sup, B, B).cis_min249,8677 -cis_min(sup, B, B).cis_min249,8677 -cis_min(n(N), B, Min) :- cis_min_(B, N, Min).cis_min250,8697 -cis_min(n(N), B, Min) :- cis_min_(B, N, Min).cis_min250,8697 -cis_min(n(N), B, Min) :- cis_min_(B, N, Min).cis_min250,8697 -cis_min(n(N), B, Min) :- cis_min_(B, N, Min).cis_min250,8697 -cis_min(n(N), B, Min) :- cis_min_(B, N, Min).cis_min250,8697 -cis_min_(inf, _, inf).cis_min_252,8744 -cis_min_(inf, _, inf).cis_min_252,8744 -cis_min_(sup, N, n(N)).cis_min_253,8767 -cis_min_(sup, N, n(N)).cis_min_253,8767 -cis_min_(n(B), A, n(M)) :- M is min(A,B).cis_min_254,8791 -cis_min_(n(B), A, n(M)) :- M is min(A,B).cis_min_254,8791 -cis_min_(n(B), A, n(M)) :- M is min(A,B).cis_min_254,8791 -cis_min_(n(B), A, n(M)) :- M is min(A,B).cis_min_254,8791 -cis_min_(n(B), A, n(M)) :- M is min(A,B).cis_min_254,8791 -cis_max(sup, _, sup).cis_max256,8834 -cis_max(sup, _, sup).cis_max256,8834 -cis_max(inf, B, B).cis_max257,8856 -cis_max(inf, B, B).cis_max257,8856 -cis_max(n(N), B, Max) :- cis_max_(B, N, Max).cis_max258,8876 -cis_max(n(N), B, Max) :- cis_max_(B, N, Max).cis_max258,8876 -cis_max(n(N), B, Max) :- cis_max_(B, N, Max).cis_max258,8876 -cis_max(n(N), B, Max) :- cis_max_(B, N, Max).cis_max258,8876 -cis_max(n(N), B, Max) :- cis_max_(B, N, Max).cis_max258,8876 -cis_max_(inf, N, n(N)).cis_max_260,8923 -cis_max_(inf, N, n(N)).cis_max_260,8923 -cis_max_(sup, _, sup).cis_max_261,8947 -cis_max_(sup, _, sup).cis_max_261,8947 -cis_max_(n(B), A, n(M)) :- M is max(A,B).cis_max_262,8970 -cis_max_(n(B), A, n(M)) :- M is max(A,B).cis_max_262,8970 -cis_max_(n(B), A, n(M)) :- M is max(A,B).cis_max_262,8970 -cis_max_(n(B), A, n(M)) :- M is max(A,B).cis_max_262,8970 -cis_max_(n(B), A, n(M)) :- M is max(A,B).cis_max_262,8970 -cis_plus(inf, _, inf).cis_plus264,9013 -cis_plus(inf, _, inf).cis_plus264,9013 -cis_plus(sup, _, sup).cis_plus265,9036 -cis_plus(sup, _, sup).cis_plus265,9036 -cis_plus(n(A), B, Plus) :- cis_plus_(B, A, Plus).cis_plus266,9059 -cis_plus(n(A), B, Plus) :- cis_plus_(B, A, Plus).cis_plus266,9059 -cis_plus(n(A), B, Plus) :- cis_plus_(B, A, Plus).cis_plus266,9059 -cis_plus(n(A), B, Plus) :- cis_plus_(B, A, Plus).cis_plus266,9059 -cis_plus(n(A), B, Plus) :- cis_plus_(B, A, Plus).cis_plus266,9059 -cis_plus_(sup, _, sup).cis_plus_268,9110 -cis_plus_(sup, _, sup).cis_plus_268,9110 -cis_plus_(inf, _, inf).cis_plus_269,9134 -cis_plus_(inf, _, inf).cis_plus_269,9134 -cis_plus_(n(B), A, n(S)) :- S is A + B.cis_plus_270,9158 -cis_plus_(n(B), A, n(S)) :- S is A + B.cis_plus_270,9158 -cis_plus_(n(B), A, n(S)) :- S is A + B.cis_plus_270,9158 -cis_minus(inf, _, inf).cis_minus272,9199 -cis_minus(inf, _, inf).cis_minus272,9199 -cis_minus(sup, _, sup).cis_minus273,9223 -cis_minus(sup, _, sup).cis_minus273,9223 -cis_minus(n(A), B, M) :- cis_minus_(B, A, M).cis_minus274,9247 -cis_minus(n(A), B, M) :- cis_minus_(B, A, M).cis_minus274,9247 -cis_minus(n(A), B, M) :- cis_minus_(B, A, M).cis_minus274,9247 -cis_minus(n(A), B, M) :- cis_minus_(B, A, M).cis_minus274,9247 -cis_minus(n(A), B, M) :- cis_minus_(B, A, M).cis_minus274,9247 -cis_minus_(inf, _, sup).cis_minus_276,9294 -cis_minus_(inf, _, sup).cis_minus_276,9294 -cis_minus_(sup, _, inf).cis_minus_277,9319 -cis_minus_(sup, _, inf).cis_minus_277,9319 -cis_minus_(n(B), A, n(M)) :- M is A - B.cis_minus_278,9344 -cis_minus_(n(B), A, n(M)) :- M is A - B.cis_minus_278,9344 -cis_minus_(n(B), A, n(M)) :- M is A - B.cis_minus_278,9344 -cis_uminus(inf, sup).cis_uminus280,9386 -cis_uminus(inf, sup).cis_uminus280,9386 -cis_uminus(sup, inf).cis_uminus281,9408 -cis_uminus(sup, inf).cis_uminus281,9408 -cis_uminus(n(A), n(B)) :- B is -A.cis_uminus282,9430 -cis_uminus(n(A), n(B)) :- B is -A.cis_uminus282,9430 -cis_uminus(n(A), n(B)) :- B is -A.cis_uminus282,9430 -cis_abs(inf, sup).cis_abs284,9466 -cis_abs(inf, sup).cis_abs284,9466 -cis_abs(sup, sup).cis_abs285,9485 -cis_abs(sup, sup).cis_abs285,9485 -cis_abs(n(A), n(B)) :- B is abs(A).cis_abs286,9504 -cis_abs(n(A), n(B)) :- B is abs(A).cis_abs286,9504 -cis_abs(n(A), n(B)) :- B is abs(A).cis_abs286,9504 -cis_abs(n(A), n(B)) :- B is abs(A).cis_abs286,9504 -cis_abs(n(A), n(B)) :- B is abs(A).cis_abs286,9504 -cis_times(inf, B, P) :-cis_times288,9541 -cis_times(inf, B, P) :-cis_times288,9541 -cis_times(inf, B, P) :-cis_times288,9541 -cis_times(sup, B, P) :-cis_times293,9671 -cis_times(sup, B, P) :-cis_times293,9671 -cis_times(sup, B, P) :-cis_times293,9671 -cis_times(n(N), B, P) :- cis_times_(B, N, P).cis_times298,9801 -cis_times(n(N), B, P) :- cis_times_(B, N, P).cis_times298,9801 -cis_times(n(N), B, P) :- cis_times_(B, N, P).cis_times298,9801 -cis_times(n(N), B, P) :- cis_times_(B, N, P).cis_times298,9801 -cis_times(n(N), B, P) :- cis_times_(B, N, P).cis_times298,9801 -cis_times_(inf, A, P) :- cis_times(inf, n(A), P).cis_times_300,9848 -cis_times_(inf, A, P) :- cis_times(inf, n(A), P).cis_times_300,9848 -cis_times_(inf, A, P) :- cis_times(inf, n(A), P).cis_times_300,9848 -cis_times_(inf, A, P) :- cis_times(inf, n(A), P).cis_times_300,9848 -cis_times_(inf, A, P) :- cis_times(inf, n(A), P).cis_times_300,9848 -cis_times_(sup, A, P) :- cis_times(sup, n(A), P).cis_times_301,9902 -cis_times_(sup, A, P) :- cis_times(sup, n(A), P).cis_times_301,9902 -cis_times_(sup, A, P) :- cis_times(sup, n(A), P).cis_times_301,9902 -cis_times_(sup, A, P) :- cis_times(sup, n(A), P).cis_times_301,9902 -cis_times_(sup, A, P) :- cis_times(sup, n(A), P).cis_times_301,9902 -cis_times_(n(B), A, n(P)) :- P is A * B.cis_times_302,9956 -cis_times_(n(B), A, n(P)) :- P is A * B.cis_times_302,9956 -cis_times_(n(B), A, n(P)) :- P is A * B.cis_times_302,9956 -cis_exp(inf, Y, R) :-cis_exp304,9998 -cis_exp(inf, Y, R) :-cis_exp304,9998 -cis_exp(inf, Y, R) :-cis_exp304,9998 -cis_exp(sup, _, sup).cis_exp308,10088 -cis_exp(sup, _, sup).cis_exp308,10088 -cis_exp(n(N), Y, n(R)) :- R is N^Y.cis_exp309,10110 -cis_exp(n(N), Y, n(R)) :- R is N^Y.cis_exp309,10110 -cis_exp(n(N), Y, n(R)) :- R is N^Y.cis_exp309,10110 -goal_expansion(A cis B, Expansion) :-goal_expansion313,10196 -goal_expansion(A cis B, Expansion) :-goal_expansion313,10196 -goal_expansion(A cis B, Expansion) :-goal_expansion313,10196 -cis_goals(V, V) --> { var(V) }, !.cis_goals317,10312 -cis_goals(V, V) --> { var(V) }, !.cis_goals317,10312 -cis_goals(V, V) --> { var(V) }, !.cis_goals317,10312 -cis_goals(n(N), n(N)) --> [].cis_goals318,10356 -cis_goals(n(N), n(N)) --> [].cis_goals318,10356 -cis_goals(n(N), n(N)) --> [].cis_goals318,10356 -cis_goals(inf, inf) --> [].cis_goals319,10389 -cis_goals(inf, inf) --> [].cis_goals319,10389 -cis_goals(inf, inf) --> [].cis_goals319,10389 -cis_goals(sup, sup) --> [].cis_goals320,10422 -cis_goals(sup, sup) --> [].cis_goals320,10422 -cis_goals(sup, sup) --> [].cis_goals320,10422 -cis_goals(sign(A0), R) --> cis_goals(A0, A), [cis_sign(A, R)].cis_goals321,10455 -cis_goals(sign(A0), R) --> cis_goals(A0, A), [cis_sign(A, R)].cis_goals321,10455 -cis_goals(sign(A0), R) --> cis_goals(A0, A), [cis_sign(A, R)].cis_goals321,10455 -cis_goals(abs(A0), R) --> cis_goals(A0, A), [cis_abs(A, R)].cis_goals322,10520 -cis_goals(abs(A0), R) --> cis_goals(A0, A), [cis_abs(A, R)].cis_goals322,10520 -cis_goals(abs(A0), R) --> cis_goals(A0, A), [cis_abs(A, R)].cis_goals322,10520 -cis_goals(-A0, R) --> cis_goals(A0, A), [cis_uminus(A, R)].cis_goals323,10584 -cis_goals(-A0, R) --> cis_goals(A0, A), [cis_uminus(A, R)].cis_goals323,10584 -cis_goals(-A0, R) --> cis_goals(A0, A), [cis_uminus(A, R)].cis_goals323,10584 -cis_goals(A0+B0, R) -->cis_goals324,10651 -cis_goals(A0+B0, R) -->cis_goals324,10651 -cis_goals(A0+B0, R) -->cis_goals324,10651 -cis_goals(A0-B0, R) -->cis_goals328,10761 -cis_goals(A0-B0, R) -->cis_goals328,10761 -cis_goals(A0-B0, R) -->cis_goals328,10761 -cis_goals(min(A0,B0), R) -->cis_goals332,10872 -cis_goals(min(A0,B0), R) -->cis_goals332,10872 -cis_goals(min(A0,B0), R) -->cis_goals332,10872 -cis_goals(max(A0,B0), R) -->cis_goals336,10981 -cis_goals(max(A0,B0), R) -->cis_goals336,10981 -cis_goals(max(A0,B0), R) -->cis_goals336,10981 -cis_goals(A0*B0, R) -->cis_goals340,11090 -cis_goals(A0*B0, R) -->cis_goals340,11090 -cis_goals(A0*B0, R) -->cis_goals340,11090 -cis_goals(div(A0,B0), R) -->cis_goals344,11201 -cis_goals(div(A0,B0), R) -->cis_goals344,11201 -cis_goals(div(A0,B0), R) -->cis_goals344,11201 -cis_goals(A0//B0, R) -->cis_goals348,11310 -cis_goals(A0//B0, R) -->cis_goals348,11310 -cis_goals(A0//B0, R) -->cis_goals348,11310 -cis_goals(A0^B0, R) -->cis_goals352,11421 -cis_goals(A0^B0, R) -->cis_goals352,11421 -cis_goals(A0^B0, R) -->cis_goals352,11421 -list_goal([], true).list_goal357,11531 -list_goal([], true).list_goal357,11531 -list_goal([C|Cs], Goal) :- list_goal_(Cs, C, Goal).list_goal358,11552 -list_goal([C|Cs], Goal) :- list_goal_(Cs, C, Goal).list_goal358,11552 -list_goal([C|Cs], Goal) :- list_goal_(Cs, C, Goal).list_goal358,11552 -list_goal([C|Cs], Goal) :- list_goal_(Cs, C, Goal).list_goal358,11552 -list_goal([C|Cs], Goal) :- list_goal_(Cs, C, Goal).list_goal358,11552 -list_goal_([], G, G).list_goal_360,11605 -list_goal_([], G, G).list_goal_360,11605 -list_goal_([C|Cs], G0, G) :- list_goal_(Cs, (G0,C), G).list_goal_361,11627 -list_goal_([C|Cs], G0, G) :- list_goal_(Cs, (G0,C), G).list_goal_361,11627 -list_goal_([C|Cs], G0, G) :- list_goal_(Cs, (G0,C), G).list_goal_361,11627 -list_goal_([C|Cs], G0, G) :- list_goal_(Cs, (G0,C), G).list_goal_361,11627 -list_goal_([C|Cs], G0, G) :- list_goal_(Cs, (G0,C), G).list_goal_361,11627 -cis_sign(sup, n(1)).cis_sign364,11685 -cis_sign(sup, n(1)).cis_sign364,11685 -cis_sign(inf, n(-1)).cis_sign365,11706 -cis_sign(inf, n(-1)).cis_sign365,11706 -cis_sign(n(N), n(S)) :-cis_sign366,11728 -cis_sign(n(N), n(S)) :-cis_sign366,11728 -cis_sign(n(N), n(S)) :-cis_sign366,11728 -cis_div(sup, Y, Z) :- ( cis_geq_zero(Y) -> Z = sup ; Z = inf ).cis_div372,11837 -cis_div(sup, Y, Z) :- ( cis_geq_zero(Y) -> Z = sup ; Z = inf ).cis_div372,11837 -cis_div(sup, Y, Z) :- ( cis_geq_zero(Y) -> Z = sup ; Z = inf ).cis_div372,11837 -cis_div(sup, Y, Z) :- ( cis_geq_zero(Y) -> Z = sup ; Z = inf ).cis_div372,11837 -cis_div(sup, Y, Z) :- ( cis_geq_zero(Y) -> Z = sup ; Z = inf ).cis_div372,11837 -cis_div(inf, Y, Z) :- ( cis_geq_zero(Y) -> Z = inf ; Z = sup ).cis_div373,11902 -cis_div(inf, Y, Z) :- ( cis_geq_zero(Y) -> Z = inf ; Z = sup ).cis_div373,11902 -cis_div(inf, Y, Z) :- ( cis_geq_zero(Y) -> Z = inf ; Z = sup ).cis_div373,11902 -cis_div(inf, Y, Z) :- ( cis_geq_zero(Y) -> Z = inf ; Z = sup ).cis_div373,11902 -cis_div(inf, Y, Z) :- ( cis_geq_zero(Y) -> Z = inf ; Z = sup ).cis_div373,11902 -cis_div(n(X), Y, Z) :- cis_div_(Y, X, Z).cis_div374,11967 -cis_div(n(X), Y, Z) :- cis_div_(Y, X, Z).cis_div374,11967 -cis_div(n(X), Y, Z) :- cis_div_(Y, X, Z).cis_div374,11967 -cis_div(n(X), Y, Z) :- cis_div_(Y, X, Z).cis_div374,11967 -cis_div(n(X), Y, Z) :- cis_div_(Y, X, Z).cis_div374,11967 -cis_div_(sup, _, n(0)).cis_div_376,12010 -cis_div_(sup, _, n(0)).cis_div_376,12010 -cis_div_(inf, _, n(0)).cis_div_377,12034 -cis_div_(inf, _, n(0)).cis_div_377,12034 -cis_div_(n(Y), X, Z) :-cis_div_378,12058 -cis_div_(n(Y), X, Z) :-cis_div_378,12058 -cis_div_(n(Y), X, Z) :-cis_div_378,12058 -cis_slash(sup, _, sup).cis_slash383,12186 -cis_slash(sup, _, sup).cis_slash383,12186 -cis_slash(inf, _, inf).cis_slash384,12210 -cis_slash(inf, _, inf).cis_slash384,12210 -cis_slash(n(N), B, S) :- cis_slash_(B, N, S).cis_slash385,12234 -cis_slash(n(N), B, S) :- cis_slash_(B, N, S).cis_slash385,12234 -cis_slash(n(N), B, S) :- cis_slash_(B, N, S).cis_slash385,12234 -cis_slash(n(N), B, S) :- cis_slash_(B, N, S).cis_slash385,12234 -cis_slash(n(N), B, S) :- cis_slash_(B, N, S).cis_slash385,12234 -cis_slash_(sup, _, n(0)).cis_slash_387,12281 -cis_slash_(sup, _, n(0)).cis_slash_387,12281 -cis_slash_(inf, _, n(0)).cis_slash_388,12307 -cis_slash_(inf, _, n(0)).cis_slash_388,12307 -cis_slash_(n(B), A, n(S)) :- S is A // B.cis_slash_389,12333 -cis_slash_(n(B), A, n(S)) :- S is A // B.cis_slash_389,12333 -cis_slash_(n(B), A, n(S)) :- S is A // B.cis_slash_389,12333 -check_domain(D) :-check_domain413,13241 -check_domain(D) :-check_domain413,13241 -check_domain(D) :-check_domain413,13241 -is_domain(empty).is_domain419,13392 -is_domain(empty).is_domain419,13392 -is_domain(from_to(From,To)) :-is_domain420,13410 -is_domain(from_to(From,To)) :-is_domain420,13410 -is_domain(from_to(From,To)) :-is_domain420,13410 -is_domain(split(S, Left, Right)) :-is_domain423,13504 -is_domain(split(S, Left, Right)) :-is_domain423,13504 -is_domain(split(S, Left, Right)) :-is_domain423,13504 -all_less_than(empty, _).all_less_than429,13672 -all_less_than(empty, _).all_less_than429,13672 -all_less_than(from_to(From,To), S) :-all_less_than430,13697 -all_less_than(from_to(From,To), S) :-all_less_than430,13697 -all_less_than(from_to(From,To), S) :-all_less_than430,13697 -all_less_than(split(S0,Left,Right), S) :-all_less_than432,13777 -all_less_than(split(S0,Left,Right), S) :-all_less_than432,13777 -all_less_than(split(S0,Left,Right), S) :-all_less_than432,13777 -all_greater_than(empty, _).all_greater_than437,13901 -all_greater_than(empty, _).all_greater_than437,13901 -all_greater_than(from_to(From,To), S) :-all_greater_than438,13929 -all_greater_than(from_to(From,To), S) :-all_greater_than438,13929 -all_greater_than(from_to(From,To), S) :-all_greater_than438,13929 -all_greater_than(split(S0,Left,Right), S) :-all_greater_than440,14012 -all_greater_than(split(S0,Left,Right), S) :-all_greater_than440,14012 -all_greater_than(split(S0,Left,Right), S) :-all_greater_than440,14012 -default_domain(from_to(inf,sup)).default_domain445,14145 -default_domain(from_to(inf,sup)).default_domain445,14145 -domain_infimum(from_to(I, _), I).domain_infimum447,14180 -domain_infimum(from_to(I, _), I).domain_infimum447,14180 -domain_infimum(split(_, Left, _), I) :- domain_infimum(Left, I).domain_infimum448,14214 -domain_infimum(split(_, Left, _), I) :- domain_infimum(Left, I).domain_infimum448,14214 -domain_infimum(split(_, Left, _), I) :- domain_infimum(Left, I).domain_infimum448,14214 -domain_infimum(split(_, Left, _), I) :- domain_infimum(Left, I).domain_infimum448,14214 -domain_infimum(split(_, Left, _), I) :- domain_infimum(Left, I).domain_infimum448,14214 -domain_supremum(from_to(_, S), S).domain_supremum450,14280 -domain_supremum(from_to(_, S), S).domain_supremum450,14280 -domain_supremum(split(_, _, Right), S) :- domain_supremum(Right, S).domain_supremum451,14315 -domain_supremum(split(_, _, Right), S) :- domain_supremum(Right, S).domain_supremum451,14315 -domain_supremum(split(_, _, Right), S) :- domain_supremum(Right, S).domain_supremum451,14315 -domain_supremum(split(_, _, Right), S) :- domain_supremum(Right, S).domain_supremum451,14315 -domain_supremum(split(_, _, Right), S) :- domain_supremum(Right, S).domain_supremum451,14315 -domain_num_elements(empty, n(0)).domain_num_elements453,14385 -domain_num_elements(empty, n(0)).domain_num_elements453,14385 -domain_num_elements(from_to(From,To), Num) :- Num cis To - From + n(1).domain_num_elements454,14419 -domain_num_elements(from_to(From,To), Num) :- Num cis To - From + n(1).domain_num_elements454,14419 -domain_num_elements(from_to(From,To), Num) :- Num cis To - From + n(1).domain_num_elements454,14419 -domain_num_elements(from_to(From,To), Num) :- Num cis To - From + n(1).domain_num_elements454,14419 -domain_num_elements(from_to(From,To), Num) :- Num cis To - From + n(1).domain_num_elements454,14419 -domain_num_elements(split(_, Left, Right), Num) :-domain_num_elements455,14491 -domain_num_elements(split(_, Left, Right), Num) :-domain_num_elements455,14491 -domain_num_elements(split(_, Left, Right), Num) :-domain_num_elements455,14491 -domain_direction_element(from_to(n(From), n(To)), Dir, E) :-domain_direction_element460,14647 -domain_direction_element(from_to(n(From), n(To)), Dir, E) :-domain_direction_element460,14647 -domain_direction_element(from_to(n(From), n(To)), Dir, E) :-domain_direction_element460,14647 -domain_direction_element(split(_, D1, D2), Dir, E) :-domain_direction_element465,14834 -domain_direction_element(split(_, D1, D2), Dir, E) :-domain_direction_element465,14834 -domain_direction_element(split(_, D1, D2), Dir, E) :-domain_direction_element465,14834 -domain_contains(from_to(From,To), I) :-domain_contains479,15369 -domain_contains(from_to(From,To), I) :-domain_contains479,15369 -domain_contains(from_to(From,To), I) :-domain_contains479,15369 -domain_contains(split(S, Left, Right), I) :-domain_contains482,15483 -domain_contains(split(S, Left, Right), I) :-domain_contains482,15483 -domain_contains(split(S, Left, Right), I) :-domain_contains482,15483 -domain_contains_from(inf, _).domain_contains_from487,15633 -domain_contains_from(inf, _).domain_contains_from487,15633 -domain_contains_from(n(L), I) :- L =< I.domain_contains_from488,15663 -domain_contains_from(n(L), I) :- L =< I.domain_contains_from488,15663 -domain_contains_from(n(L), I) :- L =< I.domain_contains_from488,15663 -domain_contains_to(sup, _).domain_contains_to490,15705 -domain_contains_to(sup, _).domain_contains_to490,15705 -domain_contains_to(n(U), I) :- I =< U.domain_contains_to491,15733 -domain_contains_to(n(U), I) :- I =< U.domain_contains_to491,15733 -domain_contains_to(n(U), I) :- I =< U.domain_contains_to491,15733 -domain_subdomain(Dom, Sub) :- domain_subdomain(Dom, Dom, Sub).domain_subdomain497,15978 -domain_subdomain(Dom, Sub) :- domain_subdomain(Dom, Dom, Sub).domain_subdomain497,15978 -domain_subdomain(Dom, Sub) :- domain_subdomain(Dom, Dom, Sub).domain_subdomain497,15978 -domain_subdomain(Dom, Sub) :- domain_subdomain(Dom, Dom, Sub).domain_subdomain497,15978 -domain_subdomain(Dom, Sub) :- domain_subdomain(Dom, Dom, Sub).domain_subdomain497,15978 -domain_subdomain(from_to(_,_), Dom, Sub) :-domain_subdomain499,16042 -domain_subdomain(from_to(_,_), Dom, Sub) :-domain_subdomain499,16042 -domain_subdomain(from_to(_,_), Dom, Sub) :-domain_subdomain499,16042 -domain_subdomain(split(_, _, _), Dom, Sub) :-domain_subdomain501,16129 -domain_subdomain(split(_, _, _), Dom, Sub) :-domain_subdomain501,16129 -domain_subdomain(split(_, _, _), Dom, Sub) :-domain_subdomain501,16129 -domain_subdomain_split(empty, _, _).domain_subdomain_split504,16223 -domain_subdomain_split(empty, _, _).domain_subdomain_split504,16223 -domain_subdomain_split(from_to(From,To), split(S,Left0,Right0), Sub) :-domain_subdomain_split505,16260 -domain_subdomain_split(from_to(From,To), split(S,Left0,Right0), Sub) :-domain_subdomain_split505,16260 -domain_subdomain_split(from_to(From,To), split(S,Left0,Right0), Sub) :-domain_subdomain_split505,16260 -domain_subdomain_split(split(_,Left,Right), Dom, _) :-domain_subdomain_split509,16479 -domain_subdomain_split(split(_,Left,Right), Dom, _) :-domain_subdomain_split509,16479 -domain_subdomain_split(split(_,Left,Right), Dom, _) :-domain_subdomain_split509,16479 -domain_subdomain_fromto(empty, _).domain_subdomain_fromto513,16620 -domain_subdomain_fromto(empty, _).domain_subdomain_fromto513,16620 -domain_subdomain_fromto(from_to(From,To), from_to(From0,To0)) :-domain_subdomain_fromto514,16655 -domain_subdomain_fromto(from_to(From,To), from_to(From0,To0)) :-domain_subdomain_fromto514,16655 -domain_subdomain_fromto(from_to(From,To), from_to(From0,To0)) :-domain_subdomain_fromto514,16655 -domain_subdomain_fromto(split(_,Left,Right), Dom) :-domain_subdomain_fromto516,16764 -domain_subdomain_fromto(split(_,Left,Right), Dom) :-domain_subdomain_fromto516,16764 -domain_subdomain_fromto(split(_,Left,Right), Dom) :-domain_subdomain_fromto516,16764 -domain_remove(empty, _, empty).domain_remove526,17247 -domain_remove(empty, _, empty).domain_remove526,17247 -domain_remove(from_to(L0, U0), X, D) :- domain_remove_(L0, U0, X, D).domain_remove527,17279 -domain_remove(from_to(L0, U0), X, D) :- domain_remove_(L0, U0, X, D).domain_remove527,17279 -domain_remove(from_to(L0, U0), X, D) :- domain_remove_(L0, U0, X, D).domain_remove527,17279 -domain_remove(from_to(L0, U0), X, D) :- domain_remove_(L0, U0, X, D).domain_remove527,17279 -domain_remove(from_to(L0, U0), X, D) :- domain_remove_(L0, U0, X, D).domain_remove527,17279 -domain_remove(split(S, Left0, Right0), X, D) :-domain_remove528,17349 -domain_remove(split(S, Left0, Right0), X, D) :-domain_remove528,17349 -domain_remove(split(S, Left0, Right0), X, D) :-domain_remove528,17349 -domain_remove_(inf, U0, X, D) :-domain_remove_543,17823 -domain_remove_(inf, U0, X, D) :-domain_remove_543,17823 -domain_remove_(inf, U0, X, D) :-domain_remove_543,17823 -domain_remove_(n(N), U0, X, D) :- domain_remove_upper(U0, N, X, D).domain_remove_549,18083 -domain_remove_(n(N), U0, X, D) :- domain_remove_upper(U0, N, X, D).domain_remove_549,18083 -domain_remove_(n(N), U0, X, D) :- domain_remove_upper(U0, N, X, D).domain_remove_549,18083 -domain_remove_(n(N), U0, X, D) :- domain_remove_upper(U0, N, X, D).domain_remove_549,18083 -domain_remove_(n(N), U0, X, D) :- domain_remove_upper(U0, N, X, D).domain_remove_549,18083 -domain_remove_upper(sup, L0, X, D) :-domain_remove_upper551,18152 -domain_remove_upper(sup, L0, X, D) :-domain_remove_upper551,18152 -domain_remove_upper(sup, L0, X, D) :-domain_remove_upper551,18152 -domain_remove_upper(n(U0), L0, X, D) :-domain_remove_upper557,18411 -domain_remove_upper(n(U0), L0, X, D) :-domain_remove_upper557,18411 -domain_remove_upper(n(U0), L0, X, D) :-domain_remove_upper557,18411 -domain_remove_greater_than(empty, _, empty).domain_remove_greater_than571,19029 -domain_remove_greater_than(empty, _, empty).domain_remove_greater_than571,19029 -domain_remove_greater_than(from_to(From0,To0), G, D) :-domain_remove_greater_than572,19074 -domain_remove_greater_than(from_to(From0,To0), G, D) :-domain_remove_greater_than572,19074 -domain_remove_greater_than(from_to(From0,To0), G, D) :-domain_remove_greater_than572,19074 -domain_remove_greater_than(split(S,Left0,Right0), G, D) :-domain_remove_greater_than576,19240 -domain_remove_greater_than(split(S,Left0,Right0), G, D) :-domain_remove_greater_than576,19240 -domain_remove_greater_than(split(S,Left0,Right0), G, D) :-domain_remove_greater_than576,19240 -domain_remove_smaller_than(empty, _, empty).domain_remove_smaller_than585,19544 -domain_remove_smaller_than(empty, _, empty).domain_remove_smaller_than585,19544 -domain_remove_smaller_than(from_to(From0,To0), V, D) :-domain_remove_smaller_than586,19589 -domain_remove_smaller_than(from_to(From0,To0), V, D) :-domain_remove_smaller_than586,19589 -domain_remove_smaller_than(from_to(From0,To0), V, D) :-domain_remove_smaller_than586,19589 -domain_remove_smaller_than(split(S,Left0,Right0), V, D) :-domain_remove_smaller_than590,19757 -domain_remove_smaller_than(split(S,Left0,Right0), V, D) :-domain_remove_smaller_than590,19757 -domain_remove_smaller_than(split(S,Left0,Right0), V, D) :-domain_remove_smaller_than590,19757 -domain_subtract(Dom0, Sub, Dom) :- domain_subtract(Dom0, Dom0, Sub, Dom).domain_subtract604,20280 -domain_subtract(Dom0, Sub, Dom) :- domain_subtract(Dom0, Dom0, Sub, Dom).domain_subtract604,20280 -domain_subtract(Dom0, Sub, Dom) :- domain_subtract(Dom0, Dom0, Sub, Dom).domain_subtract604,20280 -domain_subtract(Dom0, Sub, Dom) :- domain_subtract(Dom0, Dom0, Sub, Dom).domain_subtract604,20280 -domain_subtract(Dom0, Sub, Dom) :- domain_subtract(Dom0, Dom0, Sub, Dom).domain_subtract604,20280 -domain_subtract(empty, _, _, empty).domain_subtract606,20355 -domain_subtract(empty, _, _, empty).domain_subtract606,20355 -domain_subtract(from_to(From0,To0), Dom, Sub, D) :-domain_subtract607,20392 -domain_subtract(from_to(From0,To0), Dom, Sub, D) :-domain_subtract607,20392 -domain_subtract(from_to(From0,To0), Dom, Sub, D) :-domain_subtract607,20392 -domain_subtract(split(S, Left0, Right0), _, Sub, D) :-domain_subtract633,21469 -domain_subtract(split(S, Left0, Right0), _, Sub, D) :-domain_subtract633,21469 -domain_subtract(split(S, Left0, Right0), _, Sub, D) :-domain_subtract633,21469 -domain_complement(D, C) :-domain_complement645,21936 -domain_complement(D, C) :-domain_complement645,21936 -domain_complement(D, C) :-domain_complement645,21936 -domain_intervals(D, Is) :- phrase(domain_intervals(D), Is).domain_intervals653,22251 -domain_intervals(D, Is) :- phrase(domain_intervals(D), Is).domain_intervals653,22251 -domain_intervals(D, Is) :- phrase(domain_intervals(D), Is).domain_intervals653,22251 -domain_intervals(D, Is) :- phrase(domain_intervals(D), Is).domain_intervals653,22251 -domain_intervals(D, Is) :- phrase(domain_intervals(D), Is).domain_intervals653,22251 -domain_intervals(split(_, Left, Right)) -->domain_intervals655,22312 -domain_intervals(split(_, Left, Right)) -->domain_intervals655,22312 -domain_intervals(split(_, Left, Right)) -->domain_intervals655,22312 -domain_intervals(empty) --> [].domain_intervals657,22413 -domain_intervals(empty) --> [].domain_intervals657,22413 -domain_intervals(empty) --> [].domain_intervals657,22413 -domain_intervals(from_to(From,To)) --> [From-To].domain_intervals658,22461 -domain_intervals(from_to(From,To)) --> [From-To].domain_intervals658,22461 -domain_intervals(from_to(From,To)) --> [From-To].domain_intervals658,22461 -domains_intersection(D1, D2, Intersection) :-domains_intersection666,22859 -domains_intersection(D1, D2, Intersection) :-domains_intersection666,22859 -domains_intersection(D1, D2, Intersection) :-domains_intersection666,22859 -domains_intersection_(empty, _, empty).domains_intersection_670,22991 -domains_intersection_(empty, _, empty).domains_intersection_670,22991 -domains_intersection_(from_to(L0,U0), D2, Dom) :-domains_intersection_671,23031 -domains_intersection_(from_to(L0,U0), D2, Dom) :-domains_intersection_671,23031 -domains_intersection_(from_to(L0,U0), D2, Dom) :-domains_intersection_671,23031 -domains_intersection_(split(S,Left0,Right0), D2, Dom) :-domains_intersection_673,23114 -domains_intersection_(split(S,Left0,Right0), D2, Dom) :-domains_intersection_673,23114 -domains_intersection_(split(S,Left0,Right0), D2, Dom) :-domains_intersection_673,23114 -narrow(empty, _, _, empty).narrow681,23411 -narrow(empty, _, _, empty).narrow681,23411 -narrow(from_to(L0,U0), From0, To0, Dom) :-narrow682,23439 -narrow(from_to(L0,U0), From0, To0, Dom) :-narrow682,23439 -narrow(from_to(L0,U0), From0, To0, Dom) :-narrow682,23439 -narrow(split(S, Left0, Right0), From0, To0, Dom) :-narrow687,23628 -narrow(split(S, Left0, Right0), From0, To0, Dom) :-narrow687,23628 -narrow(split(S, Left0, Right0), From0, To0, Dom) :-narrow687,23628 -domains_union(D1, D2, Union) :-domains_union702,24245 -domains_union(D1, D2, Union) :-domains_union702,24245 -domains_union(D1, D2, Union) :-domains_union702,24245 -domain_shift(empty, _, empty).domain_shift713,24648 -domain_shift(empty, _, empty).domain_shift713,24648 -domain_shift(from_to(From0,To0), O, from_to(From,To)) :-domain_shift714,24679 -domain_shift(from_to(From0,To0), O, from_to(From,To)) :-domain_shift714,24679 -domain_shift(from_to(From0,To0), O, from_to(From,To)) :-domain_shift714,24679 -domain_shift(split(S0, Left0, Right0), O, split(S, Left, Right)) :-domain_shift716,24786 -domain_shift(split(S0, Left0, Right0), O, split(S, Left, Right)) :-domain_shift716,24786 -domain_shift(split(S0, Left0, Right0), O, split(S, Left, Right)) :-domain_shift716,24786 -domain_expand(D0, M, D) :-domain_expand726,25206 -domain_expand(D0, M, D) :-domain_expand726,25206 -domain_expand(D0, M, D) :-domain_expand726,25206 -domain_expand_(empty, _, empty).domain_expand_735,25432 -domain_expand_(empty, _, empty).domain_expand_735,25432 -domain_expand_(from_to(From0, To0), M, from_to(From,To)) :-domain_expand_736,25465 -domain_expand_(from_to(From0, To0), M, from_to(From,To)) :-domain_expand_736,25465 -domain_expand_(from_to(From0, To0), M, from_to(From,To)) :-domain_expand_736,25465 -domain_expand_(split(S0, Left0, Right0), M, split(S, Left, Right)) :-domain_expand_739,25579 -domain_expand_(split(S0, Left0, Right0), M, split(S, Left, Right)) :-domain_expand_739,25579 -domain_expand_(split(S0, Left0, Right0), M, split(S, Left, Right)) :-domain_expand_739,25579 -domain_expand_more(D0, M, D) :-domain_expand_more750,26104 -domain_expand_more(D0, M, D) :-domain_expand_more750,26104 -domain_expand_more(D0, M, D) :-domain_expand_more750,26104 -domain_expand_more_(empty, _, empty).domain_expand_more_758,26359 -domain_expand_more_(empty, _, empty).domain_expand_more_758,26359 -domain_expand_more_(from_to(From0, To0), M, from_to(From,To)) :-domain_expand_more_759,26397 -domain_expand_more_(from_to(From0, To0), M, from_to(From,To)) :-domain_expand_more_759,26397 -domain_expand_more_(from_to(From0, To0), M, from_to(From,To)) :-domain_expand_more_759,26397 -domain_expand_more_(split(S0, Left0, Right0), M, D) :-domain_expand_more_768,26696 -domain_expand_more_(split(S0, Left0, Right0), M, D) :-domain_expand_more_768,26696 -domain_expand_more_(split(S0, Left0, Right0), M, D) :-domain_expand_more_768,26696 -domain_contract(D0, M, D) :-domain_contract785,27385 -domain_contract(D0, M, D) :-domain_contract785,27385 -domain_contract(D0, M, D) :-domain_contract785,27385 -domain_contract_(empty, _, empty).domain_contract_792,27599 -domain_contract_(empty, _, empty).domain_contract_792,27599 -domain_contract_(from_to(From0, To0), M, from_to(From,To)) :-domain_contract_793,27634 -domain_contract_(from_to(From0, To0), M, from_to(From,To)) :-domain_contract_793,27634 -domain_contract_(from_to(From0, To0), M, from_to(From,To)) :-domain_contract_793,27634 -domain_contract_(split(S0,Left0,Right0), M, D) :-domain_contract_802,27950 -domain_contract_(split(S0,Left0,Right0), M, D) :-domain_contract_802,27950 -domain_contract_(split(S0,Left0,Right0), M, D) :-domain_contract_802,27950 -domain_contract_less(D0, M, D) :-domain_contract_less829,29113 -domain_contract_less(D0, M, D) :-domain_contract_less829,29113 -domain_contract_less(D0, M, D) :-domain_contract_less829,29113 -domain_contract_less_(empty, _, empty).domain_contract_less_835,29286 -domain_contract_less_(empty, _, empty).domain_contract_less_835,29286 -domain_contract_less_(from_to(From0, To0), M, from_to(From,To)) :-domain_contract_less_836,29326 -domain_contract_less_(from_to(From0, To0), M, from_to(From,To)) :-domain_contract_less_836,29326 -domain_contract_less_(from_to(From0, To0), M, from_to(From,To)) :-domain_contract_less_836,29326 -domain_contract_less_(split(S0,Left0,Right0), M, D) :-domain_contract_less_838,29445 -domain_contract_less_(split(S0,Left0,Right0), M, D) :-domain_contract_less_838,29445 -domain_contract_less_(split(S0,Left0,Right0), M, D) :-domain_contract_less_838,29445 -domain_negate(empty, empty).domain_negate865,30631 -domain_negate(empty, empty).domain_negate865,30631 -domain_negate(from_to(From0, To0), from_to(To,From)) :-domain_negate866,30660 -domain_negate(from_to(From0, To0), from_to(To,From)) :-domain_negate866,30660 -domain_negate(from_to(From0, To0), from_to(To,From)) :-domain_negate866,30660 -domain_negate(split(S0, Left0, Right0), split(S, Left, Right)) :-domain_negate868,30754 -domain_negate(split(S0, Left0, Right0), split(S, Left, Right)) :-domain_negate868,30754 -domain_negate(split(S0, Left0, Right0), split(S, Left, Right)) :-domain_negate868,30754 -list_to_disjoint_intervals([], []).list_to_disjoint_intervals877,31134 -list_to_disjoint_intervals([], []).list_to_disjoint_intervals877,31134 -list_to_disjoint_intervals([N|Ns], Is) :-list_to_disjoint_intervals878,31170 -list_to_disjoint_intervals([N|Ns], Is) :-list_to_disjoint_intervals878,31170 -list_to_disjoint_intervals([N|Ns], Is) :-list_to_disjoint_intervals878,31170 -list_to_disjoint_intervals([], M, N, [n(M)-n(N)]).list_to_disjoint_intervals881,31263 -list_to_disjoint_intervals([], M, N, [n(M)-n(N)]).list_to_disjoint_intervals881,31263 -list_to_disjoint_intervals([B|Bs], M, N, Is) :-list_to_disjoint_intervals882,31314 -list_to_disjoint_intervals([B|Bs], M, N, Is) :-list_to_disjoint_intervals882,31314 -list_to_disjoint_intervals([B|Bs], M, N, Is) :-list_to_disjoint_intervals882,31314 -list_to_domain(List0, D) :-list_to_domain889,31544 -list_to_domain(List0, D) :-list_to_domain889,31544 -list_to_domain(List0, D) :-list_to_domain889,31544 -intervals_to_domain([], empty) :- !.intervals_to_domain896,31741 -intervals_to_domain([], empty) :- !.intervals_to_domain896,31741 -intervals_to_domain([], empty) :- !.intervals_to_domain896,31741 -intervals_to_domain([M-N], from_to(M,N)) :- !.intervals_to_domain897,31778 -intervals_to_domain([M-N], from_to(M,N)) :- !.intervals_to_domain897,31778 -intervals_to_domain([M-N], from_to(M,N)) :- !.intervals_to_domain897,31778 -intervals_to_domain(Is, D) :-intervals_to_domain898,31825 -intervals_to_domain(Is, D) :-intervals_to_domain898,31825 -intervals_to_domain(Is, D) :-intervals_to_domain898,31825 -fd_variable(V) :-fd_variable931,32827 -fd_variable(V) :-fd_variable931,32827 -fd_variable(V) :-fd_variable931,32827 -indomain(Var) :- label([Var]).indomain952,33286 -indomain(Var) :- label([Var]).indomain952,33286 -indomain(Var) :- label([Var]).indomain952,33286 -indomain(Var) :- label([Var]).indomain952,33286 -indomain(Var) :- label([Var]).indomain952,33286 -order_dom_next(up, Dom, Next) :- domain_infimum(Dom, n(Next)).order_dom_next954,33318 -order_dom_next(up, Dom, Next) :- domain_infimum(Dom, n(Next)).order_dom_next954,33318 -order_dom_next(up, Dom, Next) :- domain_infimum(Dom, n(Next)).order_dom_next954,33318 -order_dom_next(up, Dom, Next) :- domain_infimum(Dom, n(Next)).order_dom_next954,33318 -order_dom_next(up, Dom, Next) :- domain_infimum(Dom, n(Next)).order_dom_next954,33318 -order_dom_next(down, Dom, Next) :- domain_supremum(Dom, n(Next)).order_dom_next955,33383 -order_dom_next(down, Dom, Next) :- domain_supremum(Dom, n(Next)).order_dom_next955,33383 -order_dom_next(down, Dom, Next) :- domain_supremum(Dom, n(Next)).order_dom_next955,33383 -order_dom_next(down, Dom, Next) :- domain_supremum(Dom, n(Next)).order_dom_next955,33383 -order_dom_next(down, Dom, Next) :- domain_supremum(Dom, n(Next)).order_dom_next955,33383 -order_dom_next(random_value(_), Dom, Next) :-order_dom_next956,33449 -order_dom_next(random_value(_), Dom, Next) :-order_dom_next956,33449 -order_dom_next(random_value(_), Dom, Next) :-order_dom_next956,33449 -label(Vs) :- labeling([], Vs).label967,33659 -label(Vs) :- labeling([], Vs).label967,33659 -label(Vs) :- labeling([], Vs).label967,33659 -label(Vs) :- labeling([], Vs).label967,33659 -label(Vs) :- labeling([], Vs).label967,33659 -labeling(Options, Vars) :-labeling1054,36324 -labeling(Options, Vars) :-labeling1054,36324 -labeling(Options, Vars) :-labeling1054,36324 -finite_domain(Var) :-finite_domain1060,36554 -finite_domain(Var) :-finite_domain1060,36554 -finite_domain(Var) :-finite_domain1060,36554 -label([O|Os], Options, Selection, Order, Choice, Optim, Consistency, Vars) :-label1070,36824 -label([O|Os], Options, Selection, Order, Choice, Optim, Consistency, Vars) :-label1070,36824 -label([O|Os], Options, Selection, Order, Choice, Optim, Consistency, Vars) :-label1070,36824 -label([], _, Selection, Order, Choice, Optim0, Consistency, Vars) :-label1084,37635 -label([], _, Selection, Order, Choice, Optim0, Consistency, Vars) :-label1084,37635 -label([], _, Selection, Order, Choice, Optim0, Consistency, Vars) :-label1084,37635 -exprs_singlevars([], []).exprs_singlevars1096,38076 -exprs_singlevars([], []).exprs_singlevars1096,38076 -exprs_singlevars([E|Es], [SV|SVs]) :-exprs_singlevars1097,38102 -exprs_singlevars([E|Es], [SV|SVs]) :-exprs_singlevars1097,38102 -exprs_singlevars([E|Es], [SV|SVs]) :-exprs_singlevars1097,38102 -all_dead(fd_props(Bs,Gs,Os)) :-all_dead1103,38251 -all_dead(fd_props(Bs,Gs,Os)) :-all_dead1103,38251 -all_dead(fd_props(Bs,Gs,Os)) :-all_dead1103,38251 -all_dead_([]).all_dead_1108,38353 -all_dead_([]).all_dead_1108,38353 -all_dead_([propagator(_, S)|Ps]) :- S == dead, all_dead_(Ps).all_dead_1109,38368 -all_dead_([propagator(_, S)|Ps]) :- S == dead, all_dead_(Ps).all_dead_1109,38368 -all_dead_([propagator(_, S)|Ps]) :- S == dead, all_dead_(Ps).all_dead_1109,38368 -all_dead_([propagator(_, S)|Ps]) :- S == dead, all_dead_(Ps).all_dead_1109,38368 -all_dead_([propagator(_, S)|Ps]) :- S == dead, all_dead_(Ps).all_dead_1109,38368 -label([], _, _, _, Consistency) :- !,label1111,38431 -label([], _, _, _, Consistency) :- !,label1111,38431 -label([], _, _, _, Consistency) :- !,label1111,38431 -label(Vars, Selection, Order, Choice, Consistency) :-label1115,38547 -label(Vars, Selection, Order, Choice, Consistency) :-label1115,38547 -label(Vars, Selection, Order, Choice, Consistency) :-label1115,38547 -choice_order_variable(step, Order, Var, Vars, Vars0, Selection, Consistency) :-choice_order_variable1131,39367 -choice_order_variable(step, Order, Var, Vars, Vars0, Selection, Consistency) :-choice_order_variable1131,39367 -choice_order_variable(step, Order, Var, Vars, Vars0, Selection, Consistency) :-choice_order_variable1131,39367 -choice_order_variable(enum, Order, Var, Vars, _, Selection, Consistency) :-choice_order_variable1140,39730 -choice_order_variable(enum, Order, Var, Vars, _, Selection, Consistency) :-choice_order_variable1140,39730 -choice_order_variable(enum, Order, Var, Vars, _, Selection, Consistency) :-choice_order_variable1140,39730 -choice_order_variable(bisect, Order, Var, _, Vars0, Selection, Consistency) :-choice_order_variable1144,39946 -choice_order_variable(bisect, Order, Var, _, Vars0, Selection, Consistency) :-choice_order_variable1144,39946 -choice_order_variable(bisect, Order, Var, _, Vars0, Selection, Consistency) :-choice_order_variable1144,39946 -override(What, Prev, Value, Options, Result) :-override1156,40402 -override(What, Prev, Value, Options, Result) :-override1156,40402 -override(What, Prev, Value, Options, Result) :-override1156,40402 -override_(default(_), Value, _, user(Value)).override_1160,40527 -override_(default(_), Value, _, user(Value)).override_1160,40527 -override_(user(Prev), Value, Options, _) :-override_1161,40573 -override_(user(Prev), Value, Options, _) :-override_1161,40573 -override_(user(Prev), Value, Options, _) :-override_1161,40573 -selection(ff).selection1167,40786 -selection(ff).selection1167,40786 -selection(ffc).selection1168,40801 -selection(ffc).selection1168,40801 -selection(min).selection1169,40817 -selection(min).selection1169,40817 -selection(max).selection1170,40833 -selection(max).selection1170,40833 -selection(leftmost).selection1171,40849 -selection(leftmost).selection1171,40849 -selection(random_variable(Seed)) :-selection1172,40870 -selection(random_variable(Seed)) :-selection1172,40870 -selection(random_variable(Seed)) :-selection1172,40870 -choice(step).choice1176,40971 -choice(step).choice1176,40971 -choice(enum).choice1177,40985 -choice(enum).choice1177,40985 -choice(bisect).choice1178,40999 -choice(bisect).choice1178,40999 -order(up).order1180,41016 -order(up).order1180,41016 -order(down).order1181,41027 -order(down).order1181,41027 -order(random_value(Seed)) :-order1184,41167 -order(random_value(Seed)) :-order1184,41167 -order(random_value(Seed)) :-order1184,41167 -consistency(upto_in(I), upto_in(1, I)).consistency1188,41261 -consistency(upto_in(I), upto_in(1, I)).consistency1188,41261 -consistency(upto_in, upto_in).consistency1189,41301 -consistency(upto_in, upto_in).consistency1189,41301 -consistency(upto_ground, upto_ground).consistency1190,41332 -consistency(upto_ground, upto_ground).consistency1190,41332 -optimisation(min(_)).optimisation1192,41372 -optimisation(min(_)).optimisation1192,41372 -optimisation(max(_)).optimisation1193,41394 -optimisation(max(_)).optimisation1193,41394 -select_var(leftmost, [Var|Vars], Var, Vars).select_var1195,41417 -select_var(leftmost, [Var|Vars], Var, Vars).select_var1195,41417 -select_var(min, [V|Vs], Var, RVars) :-select_var1196,41462 -select_var(min, [V|Vs], Var, RVars) :-select_var1196,41462 -select_var(min, [V|Vs], Var, RVars) :-select_var1196,41462 -select_var(max, [V|Vs], Var, RVars) :-select_var1199,41570 -select_var(max, [V|Vs], Var, RVars) :-select_var1199,41570 -select_var(max, [V|Vs], Var, RVars) :-select_var1199,41570 -select_var(ff, [V|Vs], Var, RVars) :-select_var1202,41678 -select_var(ff, [V|Vs], Var, RVars) :-select_var1202,41678 -select_var(ff, [V|Vs], Var, RVars) :-select_var1202,41678 -select_var(ffc, [V|Vs], Var, RVars) :-select_var1206,41814 -select_var(ffc, [V|Vs], Var, RVars) :-select_var1206,41814 -select_var(ffc, [V|Vs], Var, RVars) :-select_var1206,41814 -select_var(random_variable(_), Vars0, Var, Vars) :-select_var1209,41922 -select_var(random_variable(_), Vars0, Var, Vars) :-select_var1209,41922 -select_var(random_variable(_), Vars0, Var, Vars) :-select_var1209,41922 -find_min([], Var, Var).find_min1215,42091 -find_min([], Var, Var).find_min1215,42091 -find_min([V|Vs], CM, Min) :-find_min1216,42115 -find_min([V|Vs], CM, Min) :-find_min1216,42115 -find_min([V|Vs], CM, Min) :-find_min1216,42115 -find_max([], Var, Var).find_max1222,42252 -find_max([], Var, Var).find_max1222,42252 -find_max([V|Vs], CM, Max) :-find_max1223,42276 -find_max([V|Vs], CM, Max) :-find_max1223,42276 -find_max([V|Vs], CM, Max) :-find_max1223,42276 -find_ff([], Var, _, Var).find_ff1229,42413 -find_ff([], Var, _, Var).find_ff1229,42413 -find_ff([V|Vs], CM, S0, FF) :-find_ff1230,42439 -find_ff([V|Vs], CM, S0, FF) :-find_ff1230,42439 -find_ff([V|Vs], CM, S0, FF) :-find_ff1230,42439 -find_ffc([], Var, Var).find_ffc1238,42671 -find_ffc([], Var, Var).find_ffc1238,42671 -find_ffc([V|Vs], Prev, FFC) :-find_ffc1239,42695 -find_ffc([V|Vs], Prev, FFC) :-find_ffc1239,42695 -find_ffc([V|Vs], Prev, FFC) :-find_ffc1239,42695 -ffc_lt(X, Y) :-ffc_lt1246,42839 -ffc_lt(X, Y) :-ffc_lt1246,42839 -ffc_lt(X, Y) :-ffc_lt1246,42839 -min_lt(X,Y) :- bounds(X,LX,_), bounds(Y,LY,_), LX < LY.min_lt1262,43258 -min_lt(X,Y) :- bounds(X,LX,_), bounds(Y,LY,_), LX < LY.min_lt1262,43258 -min_lt(X,Y) :- bounds(X,LX,_), bounds(Y,LY,_), LX < LY.min_lt1262,43258 -max_gt(X,Y) :- bounds(X,_,UX), bounds(Y,_,UY), UX > UY.max_gt1264,43315 -max_gt(X,Y) :- bounds(X,_,UX), bounds(Y,_,UY), UX > UY.max_gt1264,43315 -max_gt(X,Y) :- bounds(X,_,UX), bounds(Y,_,UY), UX > UY.max_gt1264,43315 -bounds(X, L, U) :-bounds1266,43372 -bounds(X, L, U) :-bounds1266,43372 -bounds(X, L, U) :-bounds1266,43372 -delete_eq([], _, []).delete_eq1273,43539 -delete_eq([], _, []).delete_eq1273,43539 -delete_eq([X|Xs], Y, List) :-delete_eq1274,43561 -delete_eq([X|Xs], Y, List) :-delete_eq1274,43561 -delete_eq([X|Xs], Y, List) :-delete_eq1274,43561 -contracting(Vs) :-contracting1287,44008 -contracting(Vs) :-contracting1287,44008 -contracting(Vs) :-contracting1287,44008 -contracting([], Repeat, Vars) :-contracting1292,44126 -contracting([], Repeat, Vars) :-contracting1292,44126 -contracting([], Repeat, Vars) :-contracting1292,44126 -contracting([V|Vs], Repeat, Vars) :-contracting1296,44239 -contracting([V|Vs], Repeat, Vars) :-contracting1296,44239 -contracting([V|Vs], Repeat, Vars) :-contracting1296,44239 -fds_sespsize(Vs, S) :-fds_sespsize1316,44875 -fds_sespsize(Vs, S) :-fds_sespsize1316,44875 -fds_sespsize(Vs, S) :-fds_sespsize1316,44875 -fd_size_(V, S) :-fd_size_1322,45026 -fd_size_(V, S) :-fd_size_1322,45026 -fd_size_(V, S) :-fd_size_1322,45026 -fds_sespsize([], S, S).fds_sespsize1328,45146 -fds_sespsize([], S, S).fds_sespsize1328,45146 -fds_sespsize([V|Vs], S0, S) :-fds_sespsize1329,45170 -fds_sespsize([V|Vs], S0, S) :-fds_sespsize1329,45170 -fds_sespsize([V|Vs], S0, S) :-fds_sespsize1329,45170 -optimise(Vars, Options, Whats) :-optimise1347,45837 -optimise(Vars, Options, Whats) :-optimise1347,45837 -optimise(Vars, Options, Whats) :-optimise1347,45837 -store_extremum(Vars, Options, What, Extremum) :-store_extremum1363,46365 -store_extremum(Vars, Options, What, Extremum) :-store_extremum1363,46365 -store_extremum(Vars, Options, What, Extremum) :-store_extremum1363,46365 -optimise(Direction, Options, Vars, Expr0, Expr, Extremum) :-optimise1369,46646 -optimise(Direction, Options, Vars, Expr0, Expr, Extremum) :-optimise1369,46646 -optimise(Direction, Options, Vars, Expr0, Expr, Extremum) :-optimise1369,46646 -tighten(min, E, V) :- E #< V.tighten1377,46986 -tighten(min, E, V) :- E #< V.tighten1377,46986 -tighten(min, E, V) :- E #< V.tighten1377,46986 -tighten(max, E, V) :- E #> V.tighten1378,47016 -tighten(max, E, V) :- E #> V.tighten1378,47016 -tighten(max, E, V) :- E #> V.tighten1378,47016 -all_different(Ls) :-all_different1386,47185 -all_different(Ls) :-all_different1386,47185 -all_different(Ls) :-all_different1386,47185 -all_different([], _, _).all_different1393,47382 -all_different([], _, _).all_different1393,47382 -all_different([X|Right], Left, Orig) :-all_different1394,47407 -all_different([X|Right], Left, Orig) :-all_different1394,47407 -all_different([X|Right], Left, Orig) :-all_different1394,47407 -sum(Vs, Op, Value) :-sum1416,47934 -sum(Vs, Op, Value) :-sum1416,47934 -sum(Vs, Op, Value) :-sum1416,47934 -vars_plusterm([], _, T, T).vars_plusterm1423,48106 -vars_plusterm([], _, T, T).vars_plusterm1423,48106 -vars_plusterm([C|Cs], [V|Vs], T0, T) :- vars_plusterm(Cs, Vs, T0+(C*V), T).vars_plusterm1424,48134 -vars_plusterm([C|Cs], [V|Vs], T0, T) :- vars_plusterm(Cs, Vs, T0+(C*V), T).vars_plusterm1424,48134 -vars_plusterm([C|Cs], [V|Vs], T0, T) :- vars_plusterm(Cs, Vs, T0+(C*V), T).vars_plusterm1424,48134 -vars_plusterm([C|Cs], [V|Vs], T0, T) :- vars_plusterm(Cs, Vs, T0+(C*V), T).vars_plusterm1424,48134 -vars_plusterm([C|Cs], [V|Vs], T0, T) :- vars_plusterm(Cs, Vs, T0+(C*V), T).vars_plusterm1424,48134 -scalar_product(Cs, Vs, Op, Value) :-scalar_product1431,48393 -scalar_product(Cs, Vs, Op, Value) :-scalar_product1431,48393 -scalar_product(Cs, Vs, Op, Value) :-scalar_product1431,48393 -sum([], _, Sum, Op, Value) :- call(Op, Sum, Value).sum1446,48920 -sum([], _, Sum, Op, Value) :- call(Op, Sum, Value).sum1446,48920 -sum([], _, Sum, Op, Value) :- call(Op, Sum, Value).sum1446,48920 -sum([], _, Sum, Op, Value) :- call(Op, Sum, Value).sum1446,48920 -sum([], _, Sum, Op, Value) :- call(Op, Sum, Value).sum1446,48920 -sum([C|Cs], [X|Xs], Acc, Op, Value) :-sum1447,48972 -sum([C|Cs], [X|Xs], Acc, Op, Value) :-sum1447,48972 -sum([C|Cs], [X|Xs], Acc, Op, Value) :-sum1447,48972 -scalar_product_(#=, Cs, Vs, C) :-scalar_product_1451,49077 -scalar_product_(#=, Cs, Vs, C) :-scalar_product_1451,49077 -scalar_product_(#=, Cs, Vs, C) :-scalar_product_1451,49077 -scalar_product_(#\=, Cs, Vs, C) :-scalar_product_1453,49178 -scalar_product_(#\=, Cs, Vs, C) :-scalar_product_1453,49178 -scalar_product_(#\=, Cs, Vs, C) :-scalar_product_1453,49178 -scalar_product_(#=<, Cs, Vs, C) :-scalar_product_1455,49281 -scalar_product_(#=<, Cs, Vs, C) :-scalar_product_1455,49281 -scalar_product_(#=<, Cs, Vs, C) :-scalar_product_1455,49281 -scalar_product_(#<, Cs, Vs, C) :-scalar_product_1457,49384 -scalar_product_(#<, Cs, Vs, C) :-scalar_product_1457,49384 -scalar_product_(#<, Cs, Vs, C) :-scalar_product_1457,49384 -scalar_product_(#>, Cs, Vs, C) :-scalar_product_1460,49481 -scalar_product_(#>, Cs, Vs, C) :-scalar_product_1460,49481 -scalar_product_(#>, Cs, Vs, C) :-scalar_product_1460,49481 -scalar_product_(#>=, Cs, Vs, C) :-scalar_product_1463,49578 -scalar_product_(#>=, Cs, Vs, C) :-scalar_product_1463,49578 -scalar_product_(#>=, Cs, Vs, C) :-scalar_product_1463,49578 -negative(X0, X) :- X is -X0.negative1468,49711 -negative(X0, X) :- X is -X0.negative1468,49711 -negative(X0, X) :- X is -X0.negative1468,49711 -coeffs_variables_const([], [], [], [], I, I).coeffs_variables_const1470,49741 -coeffs_variables_const([], [], [], [], I, I).coeffs_variables_const1470,49741 -coeffs_variables_const([C|Cs], [V|Vs], Cs1, Vs1, I0, I) :-coeffs_variables_const1471,49787 -coeffs_variables_const([C|Cs], [V|Vs], Cs1, Vs1, I0, I) :-coeffs_variables_const1471,49787 -coeffs_variables_const([C|Cs], [V|Vs], Cs1, Vs1, I0, I) :-coeffs_variables_const1471,49787 -sum_finite_domains([], [], [], [], Inf, Sup, Inf, Sup).sum_finite_domains1479,50060 -sum_finite_domains([], [], [], [], Inf, Sup, Inf, Sup).sum_finite_domains1479,50060 -sum_finite_domains([C|Cs], [V|Vs], Infs, Sups, Inf0, Sup0, Inf, Sup) :-sum_finite_domains1480,50116 -sum_finite_domains([C|Cs], [V|Vs], Infs, Sups, Inf0, Sup0, Inf, Sup) :-sum_finite_domains1480,50116 -sum_finite_domains([C|Cs], [V|Vs], Infs, Sups, Inf0, Sup0, Inf, Sup) :-sum_finite_domains1480,50116 -remove_dist_upper_lower([], _, _, _).remove_dist_upper_lower1516,51174 -remove_dist_upper_lower([], _, _, _).remove_dist_upper_lower1516,51174 -remove_dist_upper_lower([C|Cs], [V|Vs], D1, D2) :-remove_dist_upper_lower1517,51212 -remove_dist_upper_lower([C|Cs], [V|Vs], D1, D2) :-remove_dist_upper_lower1517,51212 -remove_dist_upper_lower([C|Cs], [V|Vs], D1, D2) :-remove_dist_upper_lower1517,51212 -remove_dist_upper_leq([], _, _).remove_dist_upper_leq1539,51988 -remove_dist_upper_leq([], _, _).remove_dist_upper_leq1539,51988 -remove_dist_upper_leq([C|Cs], [V|Vs], D1) :-remove_dist_upper_leq1540,52021 -remove_dist_upper_leq([C|Cs], [V|Vs], D1) :-remove_dist_upper_leq1540,52021 -remove_dist_upper_leq([C|Cs], [V|Vs], D1) :-remove_dist_upper_leq1540,52021 -remove_dist_upper([], _).remove_dist_upper1556,52512 -remove_dist_upper([], _).remove_dist_upper1556,52512 -remove_dist_upper([C*V|CVs], D) :-remove_dist_upper1557,52538 -remove_dist_upper([C*V|CVs], D) :-remove_dist_upper1557,52538 -remove_dist_upper([C*V|CVs], D) :-remove_dist_upper1557,52538 -remove_dist_lower([], _).remove_dist_lower1576,53130 -remove_dist_lower([], _).remove_dist_lower1576,53130 -remove_dist_lower([C*V|CVs], D) :-remove_dist_lower1577,53156 -remove_dist_lower([C*V|CVs], D) :-remove_dist_lower1577,53156 -remove_dist_lower([C*V|CVs], D) :-remove_dist_lower1577,53156 -remove_upper([], _).remove_upper1596,53748 -remove_upper([], _).remove_upper1596,53748 -remove_upper([C*X|CXs], Max) :-remove_upper1597,53769 -remove_upper([C*X|CXs], Max) :-remove_upper1597,53769 -remove_upper([C*X|CXs], Max) :-remove_upper1597,53769 -remove_lower([], _).remove_lower1609,54103 -remove_lower([], _).remove_lower1609,54103 -remove_lower([C*X|CXs], Min) :-remove_lower1610,54124 -remove_lower([C*X|CXs], Min) :-remove_lower1610,54124 -remove_lower([C*X|CXs], Min) :-remove_lower1610,54124 -make_queue :- nb_setval('$clpfd_queue', fast_slow(Q-Q, L-L)).make_queue1635,55089 -push_fast_queue(E) :-push_fast_queue1637,55152 -push_fast_queue(E) :-push_fast_queue1637,55152 -push_fast_queue(E) :-push_fast_queue1637,55152 -push_slow_queue(E) :-push_slow_queue1641,55285 -push_slow_queue(E) :-push_slow_queue1641,55285 -push_slow_queue(E) :-push_slow_queue1641,55285 -pop_queue(E) :-pop_queue1645,55418 -pop_queue(E) :-pop_queue1645,55418 -pop_queue(E) :-pop_queue1645,55418 -fetch_propagator(Prop) :-fetch_propagator1656,55735 -fetch_propagator(Prop) :-fetch_propagator1656,55735 -fetch_propagator(Prop) :-fetch_propagator1656,55735 -constrain_to_integer(Var) :-constrain_to_integer1669,56291 -constrain_to_integer(Var) :-constrain_to_integer1669,56291 -constrain_to_integer(Var) :-constrain_to_integer1669,56291 -power_var_num(P, X, N) :-power_var_num1675,56428 -power_var_num(P, X, N) :-power_var_num1675,56428 -power_var_num(P, X, N) :-power_var_num1675,56428 -make_parse_clpfd(Clauses) :-make_parse_clpfd1717,58472 -make_parse_clpfd(Clauses) :-make_parse_clpfd1717,58472 -make_parse_clpfd(Clauses) :-make_parse_clpfd1717,58472 -goals_goal((Head :- Goals), (Head :- Body)) :-goals_goal1721,58589 -goals_goal((Head :- Goals), (Head :- Body)) :-goals_goal1721,58589 -goals_goal((Head :- Goals), (Head :- Body)) :-goals_goal1721,58589 -parse_clpfd_clauses(Clauses) :-parse_clpfd_clauses1724,58669 -parse_clpfd_clauses(Clauses) :-parse_clpfd_clauses1724,58669 -parse_clpfd_clauses(Clauses) :-parse_clpfd_clauses1724,58669 -parse_matcher(E, R, Matcher, Clause) :-parse_matcher1728,58796 -parse_matcher(E, R, Matcher, Clause) :-parse_matcher1728,58796 -parse_matcher(E, R, Matcher, Clause) :-parse_matcher1728,58796 -parse_condition(g(Goal), E, E) --> [Goal, !].parse_condition1734,59029 -parse_condition(g(Goal), E, E) --> [Goal, !].parse_condition1734,59029 -parse_condition(g(Goal), E, E) --> [Goal, !].parse_condition1734,59029 -parse_condition(m(Match), _, Match0) -->parse_condition1735,59075 -parse_condition(m(Match), _, Match0) -->parse_condition1735,59075 -parse_condition(m(Match), _, Match0) -->parse_condition1735,59075 -parse_match_variables([], []) --> [].parse_match_variables1743,59294 -parse_match_variables([], []) --> [].parse_match_variables1743,59294 -parse_match_variables([], []) --> [].parse_match_variables1743,59294 -parse_match_variables([V0|Vs0], [V|Vs]) -->parse_match_variables1744,59332 -parse_match_variables([V0|Vs0], [V|Vs]) -->parse_match_variables1744,59332 -parse_match_variables([V0|Vs0], [V|Vs]) -->parse_match_variables1744,59332 -parse_goals([]) --> [].parse_goals1748,59447 -parse_goals([]) --> [].parse_goals1748,59447 -parse_goals([]) --> [].parse_goals1748,59447 -parse_goals([G|Gs]) --> parse_goal(G), parse_goals(Gs).parse_goals1749,59471 -parse_goals([G|Gs]) --> parse_goal(G), parse_goals(Gs).parse_goals1749,59471 -parse_goals([G|Gs]) --> parse_goal(G), parse_goals(Gs).parse_goals1749,59471 -parse_goals([G|Gs]) --> parse_goal(G), parse_goals(Gs).parse_goals1749,59471 -parse_goals([G|Gs]) --> parse_goal(G), parse_goals(Gs).parse_goals1749,59471 -parse_goal(g(Goal)) --> [Goal].parse_goal1751,59528 -parse_goal(g(Goal)) --> [Goal].parse_goal1751,59528 -parse_goal(g(Goal)) --> [Goal].parse_goal1751,59528 -parse_goal(p(Prop)) -->parse_goal1752,59560 -parse_goal(p(Prop)) -->parse_goal1752,59560 -parse_goal(p(Prop)) -->parse_goal1752,59560 -parse_init([], _) --> [].parse_init1758,59713 -parse_init([], _) --> [].parse_init1758,59713 -parse_init([], _) --> [].parse_init1758,59713 -parse_init([V|Vs], P) --> [init_propagator(V, P)], parse_init(Vs, P).parse_init1759,59743 -parse_init([V|Vs], P) --> [init_propagator(V, P)], parse_init(Vs, P).parse_init1759,59743 -parse_init([V|Vs], P) --> [init_propagator(V, P)], parse_init(Vs, P).parse_init1759,59743 -parse_init([V|Vs], P) --> [init_propagator(V, P)], parse_init(Vs, P).parse_init1759,59743 -parse_init([V|Vs], P) --> [init_propagator(V, P)], parse_init(Vs, P).parse_init1759,59743 -trigger_once(Prop) :- trigger_prop(Prop), do_queue.trigger_once1768,60113 -trigger_once(Prop) :- trigger_prop(Prop), do_queue.trigger_once1768,60113 -trigger_once(Prop) :- trigger_prop(Prop), do_queue.trigger_once1768,60113 -neq(A, B) :- propagator_init_trigger(pneq(A, B)).neq1770,60166 -neq(A, B) :- propagator_init_trigger(pneq(A, B)).neq1770,60166 -neq(A, B) :- propagator_init_trigger(pneq(A, B)).neq1770,60166 -neq(A, B) :- propagator_init_trigger(pneq(A, B)).neq1770,60166 -neq(A, B) :- propagator_init_trigger(pneq(A, B)).neq1770,60166 -propagator_init_trigger(P) -->propagator_init_trigger1772,60217 -propagator_init_trigger(P) -->propagator_init_trigger1772,60217 -propagator_init_trigger(P) -->propagator_init_trigger1772,60217 -propagator_init_trigger(Vs, P) -->propagator_init_trigger1776,60324 -propagator_init_trigger(Vs, P) -->propagator_init_trigger1776,60324 -propagator_init_trigger(Vs, P) -->propagator_init_trigger1776,60324 -propagator_init_trigger(P) :-propagator_init_trigger1782,60487 -propagator_init_trigger(P) :-propagator_init_trigger1782,60487 -propagator_init_trigger(P) :-propagator_init_trigger1782,60487 -propagator_init_trigger(Vs, P) :-propagator_init_trigger1785,60565 -propagator_init_trigger(Vs, P) :-propagator_init_trigger1785,60565 -propagator_init_trigger(Vs, P) :-propagator_init_trigger1785,60565 -prop_init(Prop, V) :- init_propagator(V, Prop).prop_init1788,60651 -prop_init(Prop, V) :- init_propagator(V, Prop).prop_init1788,60651 -prop_init(Prop, V) :- init_propagator(V, Prop).prop_init1788,60651 -prop_init(Prop, V) :- init_propagator(V, Prop).prop_init1788,60651 -prop_init(Prop, V) :- init_propagator(V, Prop).prop_init1788,60651 -geq(A, B) :-geq1790,60700 -geq(A, B) :-geq1790,60700 -geq(A, B) :-geq1790,60700 -match_expand(#>=, clpfd_geq_).match_expand1834,62743 -match_expand(#>=, clpfd_geq_).match_expand1834,62743 -match_expand(#=, clpfd_equal_).match_expand1835,62774 -match_expand(#=, clpfd_equal_).match_expand1835,62774 -match_expand(#\=, clpfd_neq).match_expand1836,62806 -match_expand(#\=, clpfd_neq).match_expand1836,62806 -symmetric(#=).symmetric1838,62837 -symmetric(#=).symmetric1838,62837 -symmetric(#\=).symmetric1839,62852 -symmetric(#\=).symmetric1839,62852 -make_matches(Clauses) :-make_matches1907,66725 -make_matches(Clauses) :-make_matches1907,66725 -make_matches(Clauses) :-make_matches1907,66725 -sort_by_predicate(Clauses, ByPred) :-sort_by_predicate1917,67143 -sort_by_predicate(Clauses, ByPred) :-sort_by_predicate1917,67143 -sort_by_predicate(Clauses, ByPred) :-sort_by_predicate1917,67143 -predname((H:-_), Key) :- !, predname(H, Key).predname1922,67315 -predname((H:-_), Key) :- !, predname(H, Key).predname1922,67315 -predname((H:-_), Key) :- !, predname(H, Key).predname1922,67315 -predname((H:-_), Key) :- !, predname(H, Key).predname1922,67315 -predname((H:-_), Key) :- !, predname(H, Key).predname1922,67315 -predname(M:H, M:Key) :- !, predname(H, Key).predname1923,67363 -predname(M:H, M:Key) :- !, predname(H, Key).predname1923,67363 -predname(M:H, M:Key) :- !, predname(H, Key).predname1923,67363 -predname(M:H, M:Key) :- !, predname(H, Key).predname1923,67363 -predname(M:H, M:Key) :- !, predname(H, Key).predname1923,67363 -predname(H, Name/Arity) :- !, functor(H, Name, Arity).predname1924,67411 -predname(H, Name/Arity) :- !, functor(H, Name, Arity).predname1924,67411 -predname(H, Name/Arity) :- !, functor(H, Name, Arity).predname1924,67411 -predname(H, Name/Arity) :- !, functor(H, Name, Arity).predname1924,67411 -predname(H, Name/Arity) :- !, functor(H, Name, Arity).predname1924,67411 -prevent_cyclic_argument(F0, Clause) :-prevent_cyclic_argument1926,67467 -prevent_cyclic_argument(F0, Clause) :-prevent_cyclic_argument1926,67467 -prevent_cyclic_argument(F0, Clause) :-prevent_cyclic_argument1926,67467 -matchers([]) --> [].matchers1936,67852 -matchers([]) --> [].matchers1936,67852 -matchers([]) --> [].matchers1936,67852 -matchers([(Condition->Goals)|Ms]) -->matchers1937,67873 -matchers([(Condition->Goals)|Ms]) -->matchers1937,67873 -matchers([(Condition->Goals)|Ms]) -->matchers1937,67873 -matcher(m(M), Gs) --> matcher(m_c(M,true), Gs).matcher1941,67969 -matcher(m(M), Gs) --> matcher(m_c(M,true), Gs).matcher1941,67969 -matcher(m(M), Gs) --> matcher(m_c(M,true), Gs).matcher1941,67969 -matcher(m(M), Gs) --> matcher(m_c(M,true), Gs).matcher1941,67969 -matcher(m(M), Gs) --> matcher(m_c(M,true), Gs).matcher1941,67969 -matcher(m_c(Matcher,Cond), Gs) -->matcher1942,68017 -matcher(m_c(Matcher,Cond), Gs) -->matcher1942,68017 -matcher(m_c(Matcher,Cond), Gs) -->matcher1942,68017 -match(any(A), T) --> [A = T].match1955,68479 -match(any(A), T) --> [A = T].match1955,68479 -match(any(A), T) --> [A = T].match1955,68479 -match(var(V), T) --> [v_or_i(T), V = T].match1956,68513 -match(var(V), T) --> [v_or_i(T), V = T].match1956,68513 -match(var(V), T) --> [v_or_i(T), V = T].match1956,68513 -match(integer(I), T) --> [integer(T), I = T].match1957,68558 -match(integer(I), T) --> [integer(T), I = T].match1957,68558 -match(integer(I), T) --> [integer(T), I = T].match1957,68558 -match(-X, T) --> [nonvar(T), T = -A], match(X, A).match1958,68604 -match(-X, T) --> [nonvar(T), T = -A], match(X, A).match1958,68604 -match(-X, T) --> [nonvar(T), T = -A], match(X, A).match1958,68604 -match(-X, T) --> [nonvar(T), T = -A], match(X, A).match1958,68604 -match(-X, T) --> [nonvar(T), T = -A], match(X, A).match1958,68604 -match(abs(X), T) --> [nonvar(T), T = abs(A)], match(X, A).match1959,68663 -match(abs(X), T) --> [nonvar(T), T = abs(A)], match(X, A).match1959,68663 -match(abs(X), T) --> [nonvar(T), T = abs(A)], match(X, A).match1959,68663 -match(abs(X), T) --> [nonvar(T), T = abs(A)], match(X, A).match1959,68663 -match(abs(X), T) --> [nonvar(T), T = abs(A)], match(X, A).match1959,68663 -match(X+Y, T) --> [nonvar(T), T = A + B], match(X, A), match(Y, B).match1960,68726 -match(X+Y, T) --> [nonvar(T), T = A + B], match(X, A), match(Y, B).match1960,68726 -match(X+Y, T) --> [nonvar(T), T = A + B], match(X, A), match(Y, B).match1960,68726 -match(X+Y, T) --> [nonvar(T), T = A + B], match(X, A), match(Y, B).match1960,68726 -match(X+Y, T) --> [nonvar(T), T = A + B], match(X, A), match(Y, B).match1960,68726 -match(X-Y, T) --> [nonvar(T), T = A - B], match(X, A), match(Y, B).match1961,68801 -match(X-Y, T) --> [nonvar(T), T = A - B], match(X, A), match(Y, B).match1961,68801 -match(X-Y, T) --> [nonvar(T), T = A - B], match(X, A), match(Y, B).match1961,68801 -match(X-Y, T) --> [nonvar(T), T = A - B], match(X, A), match(Y, B).match1961,68801 -match(X-Y, T) --> [nonvar(T), T = A - B], match(X, A), match(Y, B).match1961,68801 -match(X*Y, T) --> [nonvar(T), T = A * B], match(X, A), match(Y, B).match1962,68876 -match(X*Y, T) --> [nonvar(T), T = A * B], match(X, A), match(Y, B).match1962,68876 -match(X*Y, T) --> [nonvar(T), T = A * B], match(X, A), match(Y, B).match1962,68876 -match(X*Y, T) --> [nonvar(T), T = A * B], match(X, A), match(Y, B).match1962,68876 -match(X*Y, T) --> [nonvar(T), T = A * B], match(X, A), match(Y, B).match1962,68876 -match_goals([], _) --> [].match_goals1964,68952 -match_goals([], _) --> [].match_goals1964,68952 -match_goals([], _) --> [].match_goals1964,68952 -match_goals([G|Gs], F) --> match_goal(G, F), match_goals(Gs, F).match_goals1965,68983 -match_goals([G|Gs], F) --> match_goal(G, F), match_goals(Gs, F).match_goals1965,68983 -match_goals([G|Gs], F) --> match_goal(G, F), match_goals(Gs, F).match_goals1965,68983 -match_goals([G|Gs], F) --> match_goal(G, F), match_goals(Gs, F).match_goals1965,68983 -match_goals([G|Gs], F) --> match_goal(G, F), match_goals(Gs, F).match_goals1965,68983 -match_goal(r(X,Y), F) --> { G =.. [F,X,Y] }, [G].match_goal1967,69049 -match_goal(r(X,Y), F) --> { G =.. [F,X,Y] }, [G].match_goal1967,69049 -match_goal(r(X,Y), F) --> { G =.. [F,X,Y] }, [G].match_goal1967,69049 -match_goal(d(X,Y), _) --> [parse_clpfd(X, Y)].match_goal1968,69100 -match_goal(d(X,Y), _) --> [parse_clpfd(X, Y)].match_goal1968,69100 -match_goal(d(X,Y), _) --> [parse_clpfd(X, Y)].match_goal1968,69100 -match_goal(g(Goal), _) --> [Goal].match_goal1969,69148 -match_goal(g(Goal), _) --> [Goal].match_goal1969,69148 -match_goal(g(Goal), _) --> [Goal].match_goal1969,69148 -match_goal(p(Prop), _) -->match_goal1970,69183 -match_goal(p(Prop), _) -->match_goal1970,69183 -match_goal(p(Prop), _) -->match_goal1970,69183 -clpfd_geq(X, Y) :- clpfd_geq_(X, Y), reinforce(X), reinforce(Y).clpfd_geq1987,69503 -clpfd_geq(X, Y) :- clpfd_geq_(X, Y), reinforce(X), reinforce(Y).clpfd_geq1987,69503 -clpfd_geq(X, Y) :- clpfd_geq_(X, Y), reinforce(X), reinforce(Y).clpfd_geq1987,69503 -clpfd_geq(X, Y) :- clpfd_geq_(X, Y), reinforce(X), reinforce(Y).clpfd_geq1987,69503 -clpfd_geq(X, Y) :- clpfd_geq_(X, Y), reinforce(X), reinforce(Y).clpfd_geq1987,69503 -clpfd_equal(X, Y) :- clpfd_equal_(X, Y), reinforce(X).clpfd_equal2001,69697 -clpfd_equal(X, Y) :- clpfd_equal_(X, Y), reinforce(X).clpfd_equal2001,69697 -clpfd_equal(X, Y) :- clpfd_equal_(X, Y), reinforce(X).clpfd_equal2001,69697 -clpfd_equal(X, Y) :- clpfd_equal_(X, Y), reinforce(X).clpfd_equal2001,69697 -clpfd_equal(X, Y) :- clpfd_equal_(X, Y), reinforce(X).clpfd_equal2001,69697 -expr_conds(E, E) --> { var(E) }, !, [integer(E)].expr_conds2008,70017 -expr_conds(E, E) --> { var(E) }, !, [integer(E)].expr_conds2008,70017 -expr_conds(E, E) --> { var(E) }, !, [integer(E)].expr_conds2008,70017 -expr_conds(E, E) --> { integer(E) }, !, [].expr_conds2009,70083 -expr_conds(E, E) --> { integer(E) }, !, [].expr_conds2009,70083 -expr_conds(E, E) --> { integer(E) }, !, [].expr_conds2009,70083 -expr_conds(-E0, -E) --> expr_conds(E0, E).expr_conds2010,70143 -expr_conds(-E0, -E) --> expr_conds(E0, E).expr_conds2010,70143 -expr_conds(-E0, -E) --> expr_conds(E0, E).expr_conds2010,70143 -expr_conds(-E0, -E) --> expr_conds(E0, E).expr_conds2010,70143 -expr_conds(-E0, -E) --> expr_conds(E0, E).expr_conds2010,70143 -expr_conds(abs(E0), abs(E)) --> expr_conds(E0, E).expr_conds2011,70199 -expr_conds(abs(E0), abs(E)) --> expr_conds(E0, E).expr_conds2011,70199 -expr_conds(abs(E0), abs(E)) --> expr_conds(E0, E).expr_conds2011,70199 -expr_conds(abs(E0), abs(E)) --> expr_conds(E0, E).expr_conds2011,70199 -expr_conds(abs(E0), abs(E)) --> expr_conds(E0, E).expr_conds2011,70199 -expr_conds(A0+B0, A+B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2012,70255 -expr_conds(A0+B0, A+B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2012,70255 -expr_conds(A0+B0, A+B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2012,70255 -expr_conds(A0+B0, A+B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2012,70255 -expr_conds(A0+B0, A+B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2012,70255 -expr_conds(A0*B0, A*B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2013,70330 -expr_conds(A0*B0, A*B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2013,70330 -expr_conds(A0*B0, A*B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2013,70330 -expr_conds(A0*B0, A*B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2013,70330 -expr_conds(A0*B0, A*B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2013,70330 -expr_conds(A0-B0, A-B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2014,70405 -expr_conds(A0-B0, A-B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2014,70405 -expr_conds(A0-B0, A-B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2014,70405 -expr_conds(A0-B0, A-B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2014,70405 -expr_conds(A0-B0, A-B) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2014,70405 -expr_conds(A0/B0, A//B) --> % "/" becomes "//"expr_conds2015,70480 -expr_conds(A0/B0, A//B) --> % "/" becomes "//"expr_conds2015,70480 -expr_conds(A0/B0, A//B) --> % "/" becomes "//"expr_conds2015,70480 -expr_conds(min(A0,B0), min(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2018,70601 -expr_conds(min(A0,B0), min(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2018,70601 -expr_conds(min(A0,B0), min(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2018,70601 -expr_conds(min(A0,B0), min(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2018,70601 -expr_conds(min(A0,B0), min(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2018,70601 -expr_conds(max(A0,B0), max(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2019,70676 -expr_conds(max(A0,B0), max(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2019,70676 -expr_conds(max(A0,B0), max(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2019,70676 -expr_conds(max(A0,B0), max(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2019,70676 -expr_conds(max(A0,B0), max(A,B)) --> expr_conds(A0, A), expr_conds(B0, B).expr_conds2019,70676 -expr_conds(A0 mod B0, A mod B) -->expr_conds2020,70751 -expr_conds(A0 mod B0, A mod B) -->expr_conds2020,70751 -expr_conds(A0 mod B0, A mod B) -->expr_conds2020,70751 -expr_conds(A0^B0, A^B) -->expr_conds2023,70853 -expr_conds(A0^B0, A^B) -->expr_conds2023,70853 -expr_conds(A0^B0, A^B) -->expr_conds2023,70853 -user:goal_expansion(X0 #= Y0, Equal) :-goal_expansion2032,71055 -user:goal_expansion(X0 #= Y0, Equal) :-goal_expansion2032,71055 -user:goal_expansion(X0 #>= Y0, Geq) :-goal_expansion2049,71727 -user:goal_expansion(X0 #>= Y0, Geq) :-goal_expansion2049,71727 -user:goal_expansion(X #=< Y, Leq) :- user:goal_expansion(Y #>= X, Leq).goal_expansion2062,72248 -user:goal_expansion(X #=< Y, Leq) :- user:goal_expansion(Y #>= X, Leq).goal_expansion2062,72248 -user:goal_expansion(X #=< Y, Leq) :- user:goal_expansion(Y #>= X, Leq).goal_expansion2062,72248 -user:goal_expansion(X #> Y, Gt) :- user:goal_expansion(X #>= Y+1, Gt).goal_expansion2063,72321 -user:goal_expansion(X #> Y, Gt) :- user:goal_expansion(X #>= Y+1, Gt).goal_expansion2063,72321 -user:goal_expansion(X #> Y, Gt) :- user:goal_expansion(X #>= Y+1, Gt).goal_expansion2063,72321 -user:goal_expansion(X #< Y, Lt) :- user:goal_expansion(Y #> X, Lt).goal_expansion2064,72395 -user:goal_expansion(X #< Y, Lt) :- user:goal_expansion(Y #> X, Lt).goal_expansion2064,72395 -user:goal_expansion(X #< Y, Lt) :- user:goal_expansion(Y #> X, Lt).goal_expansion2064,72395 -linsum(X, S, S) --> { var(X) }, !, [vn(X,1)].linsum2068,72539 -linsum(X, S, S) --> { var(X) }, !, [vn(X,1)].linsum2068,72539 -linsum(X, S, S) --> { var(X) }, !, [vn(X,1)].linsum2068,72539 -linsum(I, S0, S) --> { integer(I), !, S is S0 + I }.linsum2069,72588 -linsum(I, S0, S) --> { integer(I), !, S is S0 + I }.linsum2069,72588 -linsum(I, S0, S) --> { integer(I), !, S is S0 + I }.linsum2069,72588 -linsum(-A, S0, S) --> mulsum(A, -1, S0, S).linsum2070,72643 -linsum(-A, S0, S) --> mulsum(A, -1, S0, S).linsum2070,72643 -linsum(-A, S0, S) --> mulsum(A, -1, S0, S).linsum2070,72643 -linsum(-A, S0, S) --> mulsum(A, -1, S0, S).linsum2070,72643 -linsum(-A, S0, S) --> mulsum(A, -1, S0, S).linsum2070,72643 -linsum(N*A, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2071,72688 -linsum(N*A, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2071,72688 -linsum(N*A, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2071,72688 -linsum(N*A, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2071,72688 -linsum(N*A, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2071,72688 -linsum(A*N, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2072,72751 -linsum(A*N, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2072,72751 -linsum(A*N, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2072,72751 -linsum(A*N, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2072,72751 -linsum(A*N, S0, S) --> { integer(N) }, !, mulsum(A, N, S0, S).linsum2072,72751 -linsum(A+B, S0, S) --> linsum(A, S0, S1), linsum(B, S1, S).linsum2073,72814 -linsum(A+B, S0, S) --> linsum(A, S0, S1), linsum(B, S1, S).linsum2073,72814 -linsum(A+B, S0, S) --> linsum(A, S0, S1), linsum(B, S1, S).linsum2073,72814 -linsum(A+B, S0, S) --> linsum(A, S0, S1), linsum(B, S1, S).linsum2073,72814 -linsum(A+B, S0, S) --> linsum(A, S0, S1), linsum(B, S1, S).linsum2073,72814 -linsum(A-B, S0, S) --> linsum(A, S0, S1), mulsum(B, -1, S1, S).linsum2074,72874 -linsum(A-B, S0, S) --> linsum(A, S0, S1), mulsum(B, -1, S1, S).linsum2074,72874 -linsum(A-B, S0, S) --> linsum(A, S0, S1), mulsum(B, -1, S1, S).linsum2074,72874 -linsum(A-B, S0, S) --> linsum(A, S0, S1), mulsum(B, -1, S1, S).linsum2074,72874 -linsum(A-B, S0, S) --> linsum(A, S0, S1), mulsum(B, -1, S1, S).linsum2074,72874 -mulsum(A, M, S0, S) -->mulsum2076,72939 -mulsum(A, M, S0, S) -->mulsum2076,72939 -mulsum(A, M, S0, S) -->mulsum2076,72939 -lin_mul([], _) --> [].lin_mul2080,73046 -lin_mul([], _) --> [].lin_mul2080,73046 -lin_mul([], _) --> [].lin_mul2080,73046 -lin_mul([vn(X,N0)|VNs], M) --> { N is N0*M }, [vn(X,N)], lin_mul(VNs, M).lin_mul2081,73081 -lin_mul([vn(X,N0)|VNs], M) --> { N is N0*M }, [vn(X,N)], lin_mul(VNs, M).lin_mul2081,73081 -lin_mul([vn(X,N0)|VNs], M) --> { N is N0*M }, [vn(X,N)], lin_mul(VNs, M).lin_mul2081,73081 -lin_mul([vn(X,N0)|VNs], M) --> { N is N0*M }, [vn(X,N)], lin_mul(VNs, M).lin_mul2081,73081 -lin_mul([vn(X,N0)|VNs], M) --> { N is N0*M }, [vn(X,N)], lin_mul(VNs, M).lin_mul2081,73081 -v_or_i(V) :- var(V), !.v_or_i2083,73156 -v_or_i(V) :- var(V), !.v_or_i2083,73156 -v_or_i(V) :- var(V), !.v_or_i2083,73156 -v_or_i(I) :- integer(I).v_or_i2084,73180 -v_or_i(I) :- integer(I).v_or_i2084,73180 -v_or_i(I) :- integer(I).v_or_i2084,73180 -v_or_i(I) :- integer(I).v_or_i2084,73180 -v_or_i(I) :- integer(I).v_or_i2084,73180 -left_right_linsum_const(Left, Right, Cs, Vs, Const) :-left_right_linsum_const2086,73206 -left_right_linsum_const(Left, Right, Cs, Vs, Const) :-left_right_linsum_const2086,73206 -left_right_linsum_const(Left, Right, Cs, Vs, Const) :-left_right_linsum_const2086,73206 -linterm_negate(vn(V,N0), vn(V,N)) :- N is -N0.linterm_negate2097,73669 -linterm_negate(vn(V,N0), vn(V,N)) :- N is -N0.linterm_negate2097,73669 -linterm_negate(vn(V,N0), vn(V,N)) :- N is -N0.linterm_negate2097,73669 -vns_coeffs_variables([], N, V, [N], [V]).vns_coeffs_variables2099,73717 -vns_coeffs_variables([], N, V, [N], [V]).vns_coeffs_variables2099,73717 -vns_coeffs_variables([vn(V,N)|VNs], N0, V0, Ns, Vs) :-vns_coeffs_variables2100,73759 -vns_coeffs_variables([vn(V,N)|VNs], N0, V0, Ns, Vs) :-vns_coeffs_variables2100,73759 -vns_coeffs_variables([vn(V,N)|VNs], N0, V0, Ns, Vs) :-vns_coeffs_variables2100,73759 -filter_linsum([], [], [], []).filter_linsum2109,74045 -filter_linsum([], [], [], []).filter_linsum2109,74045 -filter_linsum([C0|Cs0], [V0|Vs0], Cs, Vs) :-filter_linsum2110,74076 -filter_linsum([C0|Cs0], [V0|Vs0], Cs, Vs) :-filter_linsum2110,74076 -filter_linsum([C0|Cs0], [V0|Vs0], Cs, Vs) :-filter_linsum2110,74076 -gcd([], G, G).gcd2118,74327 -gcd([], G, G).gcd2118,74327 -gcd([N|Ns], G0, G) :-gcd2119,74342 -gcd([N|Ns], G0, G) :-gcd2119,74342 -gcd([N|Ns], G0, G) :-gcd2119,74342 -even(N) :- N mod 2 =:= 0.even2123,74415 -even(N) :- N mod 2 =:= 0.even2123,74415 -even(N) :- N mod 2 =:= 0.even2123,74415 -odd(N) :- \+ even(N).odd2125,74442 -odd(N) :- \+ even(N).odd2125,74442 -odd(N) :- \+ even(N).odd2125,74442 -odd(N) :- \+ even(N).odd2125,74442 -odd(N) :- \+ even(N).odd2125,74442 -integer_kth_root(N, K, R) :-integer_kth_root2133,74725 -integer_kth_root(N, K, R) :-integer_kth_root2133,74725 -integer_kth_root(N, K, R) :-integer_kth_root2133,74725 -integer_kroot(L, U, N, K, R) :-integer_kroot2144,74959 -integer_kroot(L, U, N, K, R) :-integer_kroot2144,74959 -integer_kroot(L, U, N, K, R) :-integer_kroot2144,74959 -integer_kth_root_leq(N, K, R) :-integer_kth_root_leq2164,75595 -integer_kth_root_leq(N, K, R) :-integer_kth_root_leq2164,75595 -integer_kth_root_leq(N, K, R) :-integer_kth_root_leq2164,75595 -integer_kroot_leq(L, U, N, K, R) :-integer_kroot_leq2175,75841 -integer_kroot_leq(L, U, N, K, R) :-integer_kroot_leq2175,75841 -integer_kroot_leq(L, U, N, K, R) :-integer_kroot_leq2175,75841 -x_neq_y_plus_z(X, Y, Z) :-x_neq_y_plus_z2196,76275 -x_neq_y_plus_z(X, Y, Z) :-x_neq_y_plus_z2196,76275 -x_neq_y_plus_z(X, Y, Z) :-x_neq_y_plus_z2196,76275 -neq_num(X, N) :-neq_num2202,76464 -neq_num(X, N) :-neq_num2202,76464 -neq_num(X, N) :-neq_num2202,76464 -make_parse_reified(Clauses) :-make_parse_reified2385,82493 -make_parse_reified(Clauses) :-make_parse_reified2385,82493 -make_parse_reified(Clauses) :-make_parse_reified2385,82493 -goals_goal_dcg((Head --> Goals), Clause) :-goals_goal_dcg2389,82618 -goals_goal_dcg((Head --> Goals), Clause) :-goals_goal_dcg2389,82618 -goals_goal_dcg((Head --> Goals), Clause) :-goals_goal_dcg2389,82618 -parse_reified_clauses(Clauses) :-parse_reified_clauses2393,82741 -parse_reified_clauses(Clauses) :-parse_reified_clauses2393,82741 -parse_reified_clauses(Clauses) :-parse_reified_clauses2393,82741 -parse_reified(E, R, D, Matcher, Clause) :-parse_reified2397,82878 -parse_reified(E, R, D, Matcher, Clause) :-parse_reified2397,82878 -parse_reified(E, R, D, Matcher, Clause) :-parse_reified2397,82878 -reified_condition(g(Goal), E, E, []) --> [{Goal}, !].reified_condition2403,83146 -reified_condition(g(Goal), E, E, []) --> [{Goal}, !].reified_condition2403,83146 -reified_condition(g(Goal), E, E, []) --> [{Goal}, !].reified_condition2403,83146 -reified_condition(m(Match), _, Match0, Ds) -->reified_condition2404,83200 -reified_condition(m(Match), _, Match0, Ds) -->reified_condition2404,83200 -reified_condition(m(Match), _, Match0, Ds) -->reified_condition2404,83200 -reified_variables([], [], []) --> [].reified_variables2412,83425 -reified_variables([], [], []) --> [].reified_variables2412,83425 -reified_variables([], [], []) --> [].reified_variables2412,83425 -reified_variables([V0|Vs0], [V|Vs], [D|Ds]) -->reified_variables2413,83463 -reified_variables([V0|Vs0], [V|Vs], [D|Ds]) -->reified_variables2413,83463 -reified_variables([V0|Vs0], [V|Vs], [D|Ds]) -->reified_variables2413,83463 -reified_goals([], _) --> [].reified_goals2417,83593 -reified_goals([], _) --> [].reified_goals2417,83593 -reified_goals([], _) --> [].reified_goals2417,83593 -reified_goals([G|Gs], Ds) --> reified_goal(G, Ds), reified_goals(Gs, Ds).reified_goals2418,83622 -reified_goals([G|Gs], Ds) --> reified_goal(G, Ds), reified_goals(Gs, Ds).reified_goals2418,83622 -reified_goals([G|Gs], Ds) --> reified_goal(G, Ds), reified_goals(Gs, Ds).reified_goals2418,83622 -reified_goals([G|Gs], Ds) --> reified_goal(G, Ds), reified_goals(Gs, Ds).reified_goals2418,83622 -reified_goals([G|Gs], Ds) --> reified_goal(G, Ds), reified_goals(Gs, Ds).reified_goals2418,83622 -reified_goal(d(D), Ds) -->reified_goal2420,83697 -reified_goal(d(D), Ds) -->reified_goal2420,83697 -reified_goal(d(D), Ds) -->reified_goal2420,83697 -reified_goal(g(Goal), _) --> [{Goal}].reified_goal2428,84017 -reified_goal(g(Goal), _) --> [{Goal}].reified_goal2428,84017 -reified_goal(g(Goal), _) --> [{Goal}].reified_goal2428,84017 -reified_goal(p(Vs, Prop), _) -->reified_goal2429,84056 -reified_goal(p(Vs, Prop), _) -->reified_goal2429,84056 -reified_goal(p(Vs, Prop), _) -->reified_goal2429,84056 -reified_goal(p(Prop), Ds) -->reified_goal2434,84244 -reified_goal(p(Prop), Ds) -->reified_goal2434,84244 -reified_goal(p(Prop), Ds) -->reified_goal2434,84244 -reified_goal(a(V), _) --> [a(V)].reified_goal2437,84350 -reified_goal(a(V), _) --> [a(V)].reified_goal2437,84350 -reified_goal(a(V), _) --> [a(V)].reified_goal2437,84350 -reified_goal(a(X,V), _) --> [a(X,V)].reified_goal2438,84388 -reified_goal(a(X,V), _) --> [a(X,V)].reified_goal2438,84388 -reified_goal(a(X,V), _) --> [a(X,V)].reified_goal2438,84388 -reified_goal(a(X,Y,V), _) --> [a(X,Y,V)].reified_goal2439,84428 -reified_goal(a(X,Y,V), _) --> [a(X,Y,V)].reified_goal2439,84428 -reified_goal(a(X,Y,V), _) --> [a(X,Y,V)].reified_goal2439,84428 -reified_goal(l(L), _) --> [[L]].reified_goal2440,84470 -reified_goal(l(L), _) --> [[L]].reified_goal2440,84470 -reified_goal(l(L), _) --> [[L]].reified_goal2440,84470 -parse_init_dcg([], _) --> [].parse_init_dcg2442,84508 -parse_init_dcg([], _) --> [].parse_init_dcg2442,84508 -parse_init_dcg([], _) --> [].parse_init_dcg2442,84508 -parse_init_dcg([V|Vs], P) --> [{init_propagator(V, P)}], parse_init_dcg(Vs, P).parse_init_dcg2443,84542 -parse_init_dcg([V|Vs], P) --> [{init_propagator(V, P)}], parse_init_dcg(Vs, P).parse_init_dcg2443,84542 -parse_init_dcg([V|Vs], P) --> [{init_propagator(V, P)}], parse_init_dcg(Vs, P).parse_init_dcg2443,84542 -parse_init_dcg([V|Vs], P) --> [{init_propagator(V, P)}], parse_init_dcg(Vs, P).parse_init_dcg2443,84542 -parse_init_dcg([V|Vs], P) --> [{init_propagator(V, P)}], parse_init_dcg(Vs, P).parse_init_dcg2443,84542 -reify(E, B) :- reify(E, B, _).reify2448,84752 -reify(E, B) :- reify(E, B, _).reify2448,84752 -reify(E, B) :- reify(E, B, _).reify2448,84752 -reify(E, B) :- reify(E, B, _).reify2448,84752 -reify(E, B) :- reify(E, B, _).reify2448,84752 -reify(Expr, B, Ps) :- phrase(reify(Expr, B), Ps).reify2450,84784 -reify(Expr, B, Ps) :- phrase(reify(Expr, B), Ps).reify2450,84784 -reify(Expr, B, Ps) :- phrase(reify(Expr, B), Ps).reify2450,84784 -reify(Expr, B, Ps) :- phrase(reify(Expr, B), Ps).reify2450,84784 -reify(Expr, B, Ps) :- phrase(reify(Expr, B), Ps).reify2450,84784 -reify(E, B) --> { B in 0..1 }, reify_(E, B).reify2452,84835 -reify(E, B) --> { B in 0..1 }, reify_(E, B).reify2452,84835 -reify(E, B) --> { B in 0..1 }, reify_(E, B).reify2452,84835 -reify(E, B) --> { B in 0..1 }, reify_(E, B).reify2452,84835 -reify(E, B) --> { B in 0..1 }, reify_(E, B).reify2452,84835 -reify_(E, _) -->reify_2454,84881 -reify_(E, _) -->reify_2454,84881 -reify_(E, _) -->reify_2454,84881 -reify_(E, B) --> { var(E), !, E = B }.reify_2456,84974 -reify_(E, B) --> { var(E), !, E = B }.reify_2456,84974 -reify_(E, B) --> { var(E), !, E = B }.reify_2456,84974 -reify_(E, B) --> { integer(E), !, E = B }.reify_2457,85013 -reify_(E, B) --> { integer(E), !, E = B }.reify_2457,85013 -reify_(E, B) --> { integer(E), !, E = B }.reify_2457,85013 -reify_(V in Drep, B) --> !,reify_2458,85056 -reify_(V in Drep, B) --> !,reify_2458,85056 -reify_(V in Drep, B) --> !,reify_2458,85056 -reify_(tuples_in(Tuples, Relation), B) --> !,reify_2462,85207 -reify_(tuples_in(Tuples, Relation), B) --> !,reify_2462,85207 -reify_(tuples_in(Tuples, Relation), B) --> !,reify_2462,85207 -reify_(finite_domain(V), B) --> !,reify_2475,85648 -reify_(finite_domain(V), B) --> !,reify_2475,85648 -reify_(finite_domain(V), B) --> !,reify_2475,85648 -reify_(L #>= R, B) --> !,reify_2479,85775 -reify_(L #>= R, B) --> !,reify_2479,85775 -reify_(L #>= R, B) --> !,reify_2479,85775 -reify_(L #> R, B) --> !, reify_(L #>= (R+1), B).reify_2485,86022 -reify_(L #> R, B) --> !, reify_(L #>= (R+1), B).reify_2485,86022 -reify_(L #> R, B) --> !, reify_(L #>= (R+1), B).reify_2485,86022 -reify_(L #> R, B) --> !, reify_(L #>= (R+1), B).reify_2485,86022 -reify_(L #> R, B) --> !, reify_(L #>= (R+1), B).reify_2485,86022 -reify_(L #=< R, B) --> !, reify_(R #>= L, B).reify_2486,86072 -reify_(L #=< R, B) --> !, reify_(R #>= L, B).reify_2486,86072 -reify_(L #=< R, B) --> !, reify_(R #>= L, B).reify_2486,86072 -reify_(L #=< R, B) --> !, reify_(R #>= L, B).reify_2486,86072 -reify_(L #=< R, B) --> !, reify_(R #>= L, B).reify_2486,86072 -reify_(L #< R, B) --> !, reify_(R #>= (L+1), B).reify_2487,86118 -reify_(L #< R, B) --> !, reify_(R #>= (L+1), B).reify_2487,86118 -reify_(L #< R, B) --> !, reify_(R #>= (L+1), B).reify_2487,86118 -reify_(L #< R, B) --> !, reify_(R #>= (L+1), B).reify_2487,86118 -reify_(L #< R, B) --> !, reify_(R #>= (L+1), B).reify_2487,86118 -reify_(L #= R, B) --> !,reify_2488,86168 -reify_(L #= R, B) --> !,reify_2488,86168 -reify_(L #= R, B) --> !,reify_2488,86168 -reify_(L #\= R, B) --> !,reify_2494,86414 -reify_(L #\= R, B) --> !,reify_2494,86414 -reify_(L #\= R, B) --> !,reify_2494,86414 -reify_(L #==> R, B) --> !, reify_((#\ L) #\/ R, B).reify_2500,86661 -reify_(L #==> R, B) --> !, reify_((#\ L) #\/ R, B).reify_2500,86661 -reify_(L #==> R, B) --> !, reify_((#\ L) #\/ R, B).reify_2500,86661 -reify_(L #==> R, B) --> !, reify_((#\ L) #\/ R, B).reify_2500,86661 -reify_(L #==> R, B) --> !, reify_((#\ L) #\/ R, B).reify_2500,86661 -reify_(L #<== R, B) --> !, reify_(R #==> L, B).reify_2501,86714 -reify_(L #<== R, B) --> !, reify_(R #==> L, B).reify_2501,86714 -reify_(L #<== R, B) --> !, reify_(R #==> L, B).reify_2501,86714 -reify_(L #<== R, B) --> !, reify_(R #==> L, B).reify_2501,86714 -reify_(L #<== R, B) --> !, reify_(R #==> L, B).reify_2501,86714 -reify_(L #<==> R, B) --> !, reify_((L #==> R) #/\ (R #==> L), B).reify_2502,86763 -reify_(L #<==> R, B) --> !, reify_((L #==> R) #/\ (R #==> L), B).reify_2502,86763 -reify_(L #<==> R, B) --> !, reify_((L #==> R) #/\ (R #==> L), B).reify_2502,86763 -reify_(L #<==> R, B) --> !, reify_((L #==> R) #/\ (R #==> L), B).reify_2502,86763 -reify_(L #<==> R, B) --> !, reify_((L #==> R) #/\ (R #==> L), B).reify_2502,86763 -reify_(L #/\ R, B) --> !,reify_2503,86829 -reify_(L #/\ R, B) --> !,reify_2503,86829 -reify_(L #/\ R, B) --> !,reify_2503,86829 -reify_(L #\/ R, B) --> !,reify_2509,87043 -reify_(L #\/ R, B) --> !,reify_2509,87043 -reify_(L #\/ R, B) --> !,reify_2509,87043 -reify_(#\ Q, B) --> !,reify_2515,87254 -reify_(#\ Q, B) --> !,reify_2515,87254 -reify_(#\ Q, B) --> !,reify_2515,87254 -reify_(E, _) --> !, { domain_error(clpfd_reifiable_expression, E) }.reify_2519,87365 -reify_(E, _) --> !, { domain_error(clpfd_reifiable_expression, E) }.reify_2519,87365 -reify_(E, _) --> !, { domain_error(clpfd_reifiable_expression, E) }.reify_2519,87365 -list([]) --> [].list2521,87435 -list([]) --> [].list2521,87435 -list([]) --> [].list2521,87435 -list([L|Ls]) --> [L], list(Ls).list2522,87456 -list([L|Ls]) --> [L], list(Ls).list2522,87456 -list([L|Ls]) --> [L], list(Ls).list2522,87456 -list([L|Ls]) --> [L], list(Ls).list2522,87456 -list([L|Ls]) --> [L], list(Ls).list2522,87456 -a(X,Y,B) -->a2524,87489 -a(X,Y,B) -->a2524,87489 -a(X,Y,B) -->a2524,87489 -a(X, B) -->a2530,87611 -a(X, B) -->a2530,87611 -a(X, B) -->a2530,87611 -a(B) -->a2535,87688 -a(B) -->a2535,87688 -a(B) -->a2535,87688 -as([]) --> [].as2540,87757 -as([]) --> [].as2540,87757 -as([]) --> [].as2540,87757 -as([B|Bs]) --> a(B), as(Bs).as2541,87776 -as([B|Bs]) --> a(B), as(Bs).as2541,87776 -as([B|Bs]) --> a(B), as(Bs).as2541,87776 -as([B|Bs]) --> a(B), as(Bs).as2541,87776 -as([B|Bs]) --> a(B), as(Bs).as2541,87776 -bs_and([], A, A).bs_and2543,87806 -bs_and([], A, A).bs_and2543,87806 -bs_and([B|Bs], A0, A) :-bs_and2544,87824 -bs_and([B|Bs], A0, A) :-bs_and2544,87824 -bs_and([B|Bs], A0, A) :-bs_and2544,87824 -relation_tuple_b_prop(Relation, Tuple, B, p(Prop)) :-relation_tuple_b_prop2547,87881 -relation_tuple_b_prop(Relation, Tuple, B, p(Prop)) :-relation_tuple_b_prop2547,87881 -relation_tuple_b_prop(Relation, Tuple, B, p(Prop)) :-relation_tuple_b_prop2547,87881 -skeleton(Vs, Vs-Prop) :-skeleton2555,88161 -skeleton(Vs, Vs-Prop) :-skeleton2555,88161 -skeleton(Vs, Vs-Prop) :-skeleton2555,88161 -is_drep(V) :- var(V), !, instantiation_error(V).is_drep2564,88535 -is_drep(V) :- var(V), !, instantiation_error(V).is_drep2564,88535 -is_drep(V) :- var(V), !, instantiation_error(V).is_drep2564,88535 -is_drep(V) :- var(V), !, instantiation_error(V).is_drep2564,88535 -is_drep(V) :- var(V), !, instantiation_error(V).is_drep2564,88535 -is_drep(N) :- integer(N), !.is_drep2565,88589 -is_drep(N) :- integer(N), !.is_drep2565,88589 -is_drep(N) :- integer(N), !.is_drep2565,88589 -is_drep(N..M) :- !, drep_bound(N), drep_bound(M), N \== sup, M \== inf.is_drep2566,88623 -is_drep(N..M) :- !, drep_bound(N), drep_bound(M), N \== sup, M \== inf.is_drep2566,88623 -is_drep(N..M) :- !, drep_bound(N), drep_bound(M), N \== sup, M \== inf.is_drep2566,88623 -is_drep(D1\/D2) :- !, is_drep(D1), is_drep(D2).is_drep2567,88697 -is_drep(D1\/D2) :- !, is_drep(D1), is_drep(D2).is_drep2567,88697 -is_drep(D1\/D2) :- !, is_drep(D1), is_drep(D2).is_drep2567,88697 -is_drep(D1\/D2) :- !, is_drep(D1), is_drep(D2).is_drep2567,88697 -is_drep(D1\/D2) :- !, is_drep(D1), is_drep(D2).is_drep2567,88697 -drep_bound(V) :- var(V), !, instantiation_error(V).drep_bound2569,88746 -drep_bound(V) :- var(V), !, instantiation_error(V).drep_bound2569,88746 -drep_bound(V) :- var(V), !, instantiation_error(V).drep_bound2569,88746 -drep_bound(V) :- var(V), !, instantiation_error(V).drep_bound2569,88746 -drep_bound(V) :- var(V), !, instantiation_error(V).drep_bound2569,88746 -drep_bound(sup) :- !. % should infinities be accessible?drep_bound2570,88800 -drep_bound(sup) :- !. % should infinities be accessible?drep_bound2570,88800 -drep_bound(sup) :- !. % should infinities be accessible?drep_bound2570,88800 -drep_bound(inf) :- !.drep_bound2571,88857 -drep_bound(inf) :- !.drep_bound2571,88857 -drep_bound(inf) :- !.drep_bound2571,88857 -drep_bound(I) :- integer(I), !.drep_bound2572,88879 -drep_bound(I) :- integer(I), !.drep_bound2572,88879 -drep_bound(I) :- integer(I), !.drep_bound2572,88879 -drep_to_intervals(I) --> { integer(I) }, !, [n(I)-n(I)].drep_to_intervals2574,88914 -drep_to_intervals(I) --> { integer(I) }, !, [n(I)-n(I)].drep_to_intervals2574,88914 -drep_to_intervals(I) --> { integer(I) }, !, [n(I)-n(I)].drep_to_intervals2574,88914 -drep_to_intervals(N..M) -->drep_to_intervals2575,88978 -drep_to_intervals(N..M) -->drep_to_intervals2575,88978 -drep_to_intervals(N..M) -->drep_to_intervals2575,88978 -drep_to_intervals(D1 \/ D2) -->drep_to_intervals2580,89142 -drep_to_intervals(D1 \/ D2) -->drep_to_intervals2580,89142 -drep_to_intervals(D1 \/ D2) -->drep_to_intervals2580,89142 -drep_to_domain(DR, D) :-drep_to_domain2583,89229 -drep_to_domain(DR, D) :-drep_to_domain2583,89229 -drep_to_domain(DR, D) :-drep_to_domain2583,89229 -merge_intervals(Is0, Is) :-merge_intervals2591,89457 -merge_intervals(Is0, Is) :-merge_intervals2591,89457 -merge_intervals(Is0, Is) :-merge_intervals2591,89457 -merge_overlapping([], []).merge_overlapping2595,89549 -merge_overlapping([], []).merge_overlapping2595,89549 -merge_overlapping([A-B0|ABs0], [A-B|ABs]) :-merge_overlapping2596,89576 -merge_overlapping([A-B0|ABs0], [A-B|ABs]) :-merge_overlapping2596,89576 -merge_overlapping([A-B0|ABs0], [A-B|ABs]) :-merge_overlapping2596,89576 -merge_remaining([], B, B, []).merge_remaining2600,89704 -merge_remaining([], B, B, []).merge_remaining2600,89704 -merge_remaining([N-M|NMs], B0, B, Rest) :-merge_remaining2601,89735 -merge_remaining([N-M|NMs], B0, B, Rest) :-merge_remaining2601,89735 -merge_remaining([N-M|NMs], B0, B, Rest) :-merge_remaining2601,89735 -domain(V, Dom) :-domain2608,89948 -domain(V, Dom) :-domain2608,89948 -domain(V, Dom) :-domain2608,89948 -domains([], _).domains2618,90258 -domains([], _).domains2618,90258 -domains([V|Vs], D) :- domain(V, D), domains(Vs, D).domains2619,90274 -domains([V|Vs], D) :- domain(V, D), domains(Vs, D).domains2619,90274 -domains([V|Vs], D) :- domain(V, D), domains(Vs, D).domains2619,90274 -domains([V|Vs], D) :- domain(V, D), domains(Vs, D).domains2619,90274 -domains([V|Vs], D) :- domain(V, D), domains(Vs, D).domains2619,90274 -props_number(fd_props(Gs,Bs,Os), N) :-props_number2621,90327 -props_number(fd_props(Gs,Bs,Os), N) :-props_number2621,90327 -props_number(fd_props(Gs,Bs,Os), N) :-props_number2621,90327 -fd_get(X, Dom, Ps) :-fd_get2627,90466 -fd_get(X, Dom, Ps) :-fd_get2627,90466 -fd_get(X, Dom, Ps) :-fd_get2627,90466 -fd_get(X, Dom, Inf, Sup, Ps) :-fd_get2632,90639 -fd_get(X, Dom, Inf, Sup, Ps) :-fd_get2632,90639 -fd_get(X, Dom, Inf, Sup, Ps) :-fd_get2632,90639 -fd_put(X, Dom, Ps) :-fd_put2651,91556 -fd_put(X, Dom, Ps) :-fd_put2651,91556 -fd_put(X, Dom, Ps) :-fd_put2651,91556 -put_terminating(X, Dom, Ps) :-put_terminating2657,91723 -put_terminating(X, Dom, Ps) :-put_terminating2657,91723 -put_terminating(X, Dom, Ps) :-put_terminating2657,91723 -domain_spread(Dom, Spread) :-domain_spread2702,93773 -domain_spread(Dom, Spread) :-domain_spread2702,93773 -domain_spread(Dom, Spread) :-domain_spread2702,93773 -smallest_finite(inf, Y, Y).smallest_finite2707,93909 -smallest_finite(inf, Y, Y).smallest_finite2707,93909 -smallest_finite(n(N), _, n(N)).smallest_finite2708,93937 -smallest_finite(n(N), _, n(N)).smallest_finite2708,93937 -domain_smallest_finite(from_to(F,T), S) :- smallest_finite(F, T, S).domain_smallest_finite2710,93970 -domain_smallest_finite(from_to(F,T), S) :- smallest_finite(F, T, S).domain_smallest_finite2710,93970 -domain_smallest_finite(from_to(F,T), S) :- smallest_finite(F, T, S).domain_smallest_finite2710,93970 -domain_smallest_finite(from_to(F,T), S) :- smallest_finite(F, T, S).domain_smallest_finite2710,93970 -domain_smallest_finite(from_to(F,T), S) :- smallest_finite(F, T, S).domain_smallest_finite2710,93970 -domain_smallest_finite(split(_, L, _), S) :- domain_smallest_finite(L, S).domain_smallest_finite2711,94041 -domain_smallest_finite(split(_, L, _), S) :- domain_smallest_finite(L, S).domain_smallest_finite2711,94041 -domain_smallest_finite(split(_, L, _), S) :- domain_smallest_finite(L, S).domain_smallest_finite2711,94041 -domain_smallest_finite(split(_, L, _), S) :- domain_smallest_finite(L, S).domain_smallest_finite2711,94041 -domain_smallest_finite(split(_, L, _), S) :- domain_smallest_finite(L, S).domain_smallest_finite2711,94041 -largest_finite(sup, Y, Y).largest_finite2713,94117 -largest_finite(sup, Y, Y).largest_finite2713,94117 -largest_finite(n(N), _, n(N)).largest_finite2714,94144 -largest_finite(n(N), _, n(N)).largest_finite2714,94144 -domain_largest_finite(from_to(F,T), L) :- largest_finite(T, F, L).domain_largest_finite2716,94176 -domain_largest_finite(from_to(F,T), L) :- largest_finite(T, F, L).domain_largest_finite2716,94176 -domain_largest_finite(from_to(F,T), L) :- largest_finite(T, F, L).domain_largest_finite2716,94176 -domain_largest_finite(from_to(F,T), L) :- largest_finite(T, F, L).domain_largest_finite2716,94176 -domain_largest_finite(from_to(F,T), L) :- largest_finite(T, F, L).domain_largest_finite2716,94176 -domain_largest_finite(split(_, _, R), L) :- domain_largest_finite(R, L).domain_largest_finite2717,94245 -domain_largest_finite(split(_, _, R), L) :- domain_largest_finite(R, L).domain_largest_finite2717,94245 -domain_largest_finite(split(_, _, R), L) :- domain_largest_finite(R, L).domain_largest_finite2717,94245 -domain_largest_finite(split(_, _, R), L) :- domain_largest_finite(R, L).domain_largest_finite2717,94245 -domain_largest_finite(split(_, _, R), L) :- domain_largest_finite(R, L).domain_largest_finite2717,94245 -reinforce(X) :-reinforce2724,94602 -reinforce(X) :-reinforce2724,94602 -reinforce(X) :-reinforce2724,94602 -collect_variables(X, Vs0, Vs) :-collect_variables2733,94865 -collect_variables(X, Vs0, Vs) :-collect_variables2733,94865 -collect_variables(X, Vs0, Vs) :-collect_variables2733,94865 -all_collect([], Vs, Vs).all_collect2741,95068 -all_collect([], Vs, Vs).all_collect2741,95068 -all_collect([X|Xs], Vs0, Vs) :-all_collect2742,95093 -all_collect([X|Xs], Vs0, Vs) :-all_collect2742,95093 -all_collect([X|Xs], Vs0, Vs) :-all_collect2742,95093 -reinforce_(X) :-reinforce_2748,95281 -reinforce_(X) :-reinforce_2748,95281 -reinforce_(X) :-reinforce_2748,95281 -put_full(X, Dom, Ps) :-put_full2754,95405 -put_full(X, Dom, Ps) :-put_full2754,95405 -put_full(X, Dom, Ps) :-put_full2754,95405 -make_propagator(C, propagator(C, _)).make_propagator2778,96482 -make_propagator(C, propagator(C, _)).make_propagator2778,96482 -trigger_props(fd_props(Gs,Bs,Os), X, D0, D) :-trigger_props2780,96521 -trigger_props(fd_props(Gs,Bs,Os), X, D0, D) :-trigger_props2780,96521 -trigger_props(fd_props(Gs,Bs,Os), X, D0, D) :-trigger_props2780,96521 -trigger_props(fd_props(Gs,Bs,Os), X) :-trigger_props2800,97058 -trigger_props(fd_props(Gs,Bs,Os), X) :-trigger_props2800,97058 -trigger_props(fd_props(Gs,Bs,Os), X) :-trigger_props2800,97058 -trigger_props(fd_props(Gs,Bs,Os)) :-trigger_props2808,97239 -trigger_props(fd_props(Gs,Bs,Os)) :-trigger_props2808,97239 -trigger_props(fd_props(Gs,Bs,Os)) :-trigger_props2808,97239 -trigger_props_([]).trigger_props_2813,97361 -trigger_props_([]).trigger_props_2813,97361 -trigger_props_([P|Ps]) :- trigger_prop(P), trigger_props_(Ps).trigger_props_2814,97381 -trigger_props_([P|Ps]) :- trigger_prop(P), trigger_props_(Ps).trigger_props_2814,97381 -trigger_props_([P|Ps]) :- trigger_prop(P), trigger_props_(Ps).trigger_props_2814,97381 -trigger_props_([P|Ps]) :- trigger_prop(P), trigger_props_(Ps).trigger_props_2814,97381 -trigger_props_([P|Ps]) :- trigger_prop(P), trigger_props_(Ps).trigger_props_2814,97381 -trigger_prop(Propagator) :-trigger_prop2816,97445 -trigger_prop(Propagator) :-trigger_prop2816,97445 -trigger_prop(Propagator) :-trigger_prop2816,97445 -kill(State) :- del_attr(State, clpfd_aux), State = dead.kill2830,97991 -kill(State) :- del_attr(State, clpfd_aux), State = dead.kill2830,97991 -kill(State) :- del_attr(State, clpfd_aux), State = dead.kill2830,97991 -kill(State, Ps) :-kill2832,98049 -kill(State, Ps) :-kill2832,98049 -kill(State, Ps) :-kill2832,98049 -kill_entailed(p(Prop)) :-kill_entailed2836,98126 -kill_entailed(p(Prop)) :-kill_entailed2836,98126 -kill_entailed(p(Prop)) :-kill_entailed2836,98126 -kill_entailed(a(V)) :-kill_entailed2839,98202 -kill_entailed(a(V)) :-kill_entailed2839,98202 -kill_entailed(a(V)) :-kill_entailed2839,98202 -kill_entailed(a(X,B)) :-kill_entailed2841,98253 -kill_entailed(a(X,B)) :-kill_entailed2841,98253 -kill_entailed(a(X,B)) :-kill_entailed2841,98253 -kill_entailed(a(X,Y,B)) :-kill_entailed2845,98347 -kill_entailed(a(X,Y,B)) :-kill_entailed2845,98347 -kill_entailed(a(X,Y,B)) :-kill_entailed2845,98347 -no_reactivation(rel_tuple(_,_)).no_reactivation2851,98471 -no_reactivation(rel_tuple(_,_)).no_reactivation2851,98471 -activate_propagator(propagator(P,State)) :-activate_propagator2854,98548 -activate_propagator(propagator(P,State)) :-activate_propagator2854,98548 -activate_propagator(propagator(P,State)) :-activate_propagator2854,98548 -disable_queue :- b_setval('$clpfd_queue_status', disabled).disable_queue2864,98901 -enable_queue :- b_setval('$clpfd_queue_status', enabled).enable_queue2865,98961 -portray_propagator(propagator(P,_), F) :- functor(P, F, _).portray_propagator2867,99021 -portray_propagator(propagator(P,_), F) :- functor(P, F, _).portray_propagator2867,99021 -portray_propagator(propagator(P,_), F) :- functor(P, F, _).portray_propagator2867,99021 -portray_propagator(propagator(P,_), F) :- functor(P, F, _).portray_propagator2867,99021 -portray_propagator(propagator(P,_), F) :- functor(P, F, _).portray_propagator2867,99021 -portray_queue(V, []) :- var(V), !.portray_queue2869,99082 -portray_queue(V, []) :- var(V), !.portray_queue2869,99082 -portray_queue(V, []) :- var(V), !.portray_queue2869,99082 -portray_queue([P|Ps], [F|Fs]) :-portray_queue2870,99117 -portray_queue([P|Ps], [F|Fs]) :-portray_queue2870,99117 -portray_queue([P|Ps], [F|Fs]) :-portray_queue2870,99117 -do_queue :-do_queue2874,99216 -init_propagator(Var, Prop) :-init_propagator2887,99586 -init_propagator(Var, Prop) :-init_propagator2887,99586 -init_propagator(Var, Prop) :-init_propagator2887,99586 -constraint_wake(pneq, ground).constraint_wake2894,99761 -constraint_wake(pneq, ground).constraint_wake2894,99761 -constraint_wake(x_neq_y_plus_z, ground).constraint_wake2895,99792 -constraint_wake(x_neq_y_plus_z, ground).constraint_wake2895,99792 -constraint_wake(absdiff_neq, ground).constraint_wake2896,99833 -constraint_wake(absdiff_neq, ground).constraint_wake2896,99833 -constraint_wake(pdifferent, ground).constraint_wake2897,99871 -constraint_wake(pdifferent, ground).constraint_wake2897,99871 -constraint_wake(pexclude, ground).constraint_wake2898,99908 -constraint_wake(pexclude, ground).constraint_wake2898,99908 -constraint_wake(scalar_product_neq, ground).constraint_wake2899,99943 -constraint_wake(scalar_product_neq, ground).constraint_wake2899,99943 -constraint_wake(x_leq_y_plus_c, bounds).constraint_wake2901,99989 -constraint_wake(x_leq_y_plus_c, bounds).constraint_wake2901,99989 -constraint_wake(scalar_product_eq, bounds).constraint_wake2902,100030 -constraint_wake(scalar_product_eq, bounds).constraint_wake2902,100030 -constraint_wake(scalar_product_leq, bounds).constraint_wake2903,100074 -constraint_wake(scalar_product_leq, bounds).constraint_wake2903,100074 -constraint_wake(pplus, bounds).constraint_wake2904,100119 -constraint_wake(pplus, bounds).constraint_wake2904,100119 -constraint_wake(pgeq, bounds).constraint_wake2905,100151 -constraint_wake(pgeq, bounds).constraint_wake2905,100151 -constraint_wake(pgcc_single, bounds).constraint_wake2906,100182 -constraint_wake(pgcc_single, bounds).constraint_wake2906,100182 -constraint_wake(pgcc_check_single, bounds).constraint_wake2907,100220 -constraint_wake(pgcc_check_single, bounds).constraint_wake2907,100220 -global_constraint(pdistinct).global_constraint2909,100265 -global_constraint(pdistinct).global_constraint2909,100265 -global_constraint(pgcc).global_constraint2910,100295 -global_constraint(pgcc).global_constraint2910,100295 -global_constraint(pgcc_single).global_constraint2911,100320 -global_constraint(pgcc_single).global_constraint2911,100320 -global_constraint(pcircuit).global_constraint2912,100352 -global_constraint(pcircuit).global_constraint2912,100352 -insert_propagator(Prop, Ps0, Ps) :-insert_propagator2916,100452 -insert_propagator(Prop, Ps0, Ps) :-insert_propagator2916,100452 -insert_propagator(Prop, Ps0, Ps) :-insert_propagator2916,100452 -lex_chain(Lss) :-lex_chain2933,100973 -lex_chain(Lss) :-lex_chain2933,100973 -lex_chain(Lss) :-lex_chain2933,100973 -lex_chain_([], _).lex_chain_2939,101159 -lex_chain_([], _).lex_chain_2939,101159 -lex_chain_([Ls|Lss], Prop) :-lex_chain_2940,101178 -lex_chain_([Ls|Lss], Prop) :-lex_chain_2940,101178 -lex_chain_([Ls|Lss], Prop) :-lex_chain_2940,101178 -lex_chain_lag([], _).lex_chain_lag2945,101310 -lex_chain_lag([], _).lex_chain_lag2945,101310 -lex_chain_lag([Ls|Lss], Ls0) :-lex_chain_lag2946,101332 -lex_chain_lag([Ls|Lss], Ls0) :-lex_chain_lag2946,101332 -lex_chain_lag([Ls|Lss], Ls0) :-lex_chain_lag2946,101332 -lex_le([], []).lex_le2950,101422 -lex_le([], []).lex_le2950,101422 -lex_le([V1|V1s], [V2|V2s]) :-lex_le2951,101438 -lex_le([V1|V1s], [V2|V2s]) :-lex_le2951,101438 -lex_le([V1|V1s], [V2|V2s]) :-lex_le2951,101438 -tuples_in(Tuples, Relation) :-tuples_in3003,102979 -tuples_in(Tuples, Relation) :-tuples_in3003,102979 -tuples_in(Tuples, Relation) :-tuples_in3003,102979 -relation_tuple(Relation, Tuple) :-relation_tuple3011,103221 -relation_tuple(Relation, Tuple) :-relation_tuple3011,103221 -relation_tuple(Relation, Tuple) :-relation_tuple3011,103221 -tuple_domain([], _).tuple_domain3020,103510 -tuple_domain([], _).tuple_domain3020,103510 -tuple_domain([T|Ts], Relation0) :-tuple_domain3021,103531 -tuple_domain([T|Ts], Relation0) :-tuple_domain3021,103531 -tuple_domain([T|Ts], Relation0) :-tuple_domain3021,103531 -tuple_freeze(Tuple, Relation) :-tuple_freeze3034,103951 -tuple_freeze(Tuple, Relation) :-tuple_freeze3034,103951 -tuple_freeze(Tuple, Relation) :-tuple_freeze3034,103951 -tuple_freeze([], _, _).tuple_freeze3039,104126 -tuple_freeze([], _, _).tuple_freeze3039,104126 -tuple_freeze([T|Ts], Tuple, Prop) :-tuple_freeze3040,104151 -tuple_freeze([T|Ts], Tuple, Prop) :-tuple_freeze3040,104151 -tuple_freeze([T|Ts], Tuple, Prop) :-tuple_freeze3040,104151 -relation_unifiable([], _, [], Changed, Changed).relation_unifiable3048,104345 -relation_unifiable([], _, [], Changed, Changed).relation_unifiable3048,104345 -relation_unifiable([R|Rs], Tuple, Us, Changed0, Changed) :-relation_unifiable3049,104394 -relation_unifiable([R|Rs], Tuple, Us, Changed0, Changed) :-relation_unifiable3049,104394 -relation_unifiable([R|Rs], Tuple, Us, Changed0, Changed) :-relation_unifiable3049,104394 -all_in_domain([], []).all_in_domain3056,104660 -all_in_domain([], []).all_in_domain3056,104660 -all_in_domain([A|As], [T|Ts]) :-all_in_domain3057,104683 -all_in_domain([A|As], [T|Ts]) :-all_in_domain3057,104683 -all_in_domain([A|As], [T|Ts]) :-all_in_domain3057,104683 -run_propagator(presidual(_), _).run_propagator3067,104994 -run_propagator(presidual(_), _).run_propagator3067,104994 -run_propagator(pdifferent(Left,Right,X,_), _MState) :-run_propagator3070,105108 -run_propagator(pdifferent(Left,Right,X,_), _MState) :-run_propagator3070,105108 -run_propagator(pdifferent(Left,Right,X,_), _MState) :-run_propagator3070,105108 -run_propagator(weak_distinct(Left,Right,X,_), _MState) :-run_propagator3078,105311 -run_propagator(weak_distinct(Left,Right,X,_), _MState) :-run_propagator3078,105311 -run_propagator(weak_distinct(Left,Right,X,_), _MState) :-run_propagator3078,105311 -run_propagator(pexclude(Left,Right,X), _) :-run_propagator3089,105647 -run_propagator(pexclude(Left,Right,X), _) :-run_propagator3089,105647 -run_propagator(pexclude(Left,Right,X), _) :-run_propagator3089,105647 -run_propagator(pdistinct(Ls), _MState) :-run_propagator3097,105840 -run_propagator(pdistinct(Ls), _MState) :-run_propagator3097,105840 -run_propagator(pdistinct(Ls), _MState) :-run_propagator3097,105840 -run_propagator(check_distinct(Left,Right,X), _) :-run_propagator3100,105905 -run_propagator(check_distinct(Left,Right,X), _) :-run_propagator3100,105905 -run_propagator(check_distinct(Left,Right,X), _) :-run_propagator3100,105905 -run_propagator(pelement(N, Is, V), MState) :-run_propagator3106,106109 -run_propagator(pelement(N, Is, V), MState) :-run_propagator3106,106109 -run_propagator(pelement(N, Is, V), MState) :-run_propagator3106,106109 -run_propagator(pgcc_single(Vs, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3119,106557 -run_propagator(pgcc_single(Vs, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3119,106557 -run_propagator(pgcc_single(Vs, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3119,106557 -run_propagator(pgcc_single(Vs, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3119,106557 -run_propagator(pgcc_single(Vs, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3119,106557 -run_propagator(pgcc_check_single(Pairs), _) :- gcc_check(Pairs).run_propagator3121,106626 -run_propagator(pgcc_check_single(Pairs), _) :- gcc_check(Pairs).run_propagator3121,106626 -run_propagator(pgcc_check_single(Pairs), _) :- gcc_check(Pairs).run_propagator3121,106626 -run_propagator(pgcc_check_single(Pairs), _) :- gcc_check(Pairs).run_propagator3121,106626 -run_propagator(pgcc_check_single(Pairs), _) :- gcc_check(Pairs).run_propagator3121,106626 -run_propagator(pgcc_check(Pairs), _) :- gcc_check(Pairs).run_propagator3123,106692 -run_propagator(pgcc_check(Pairs), _) :- gcc_check(Pairs).run_propagator3123,106692 -run_propagator(pgcc_check(Pairs), _) :- gcc_check(Pairs).run_propagator3123,106692 -run_propagator(pgcc_check(Pairs), _) :- gcc_check(Pairs).run_propagator3123,106692 -run_propagator(pgcc_check(Pairs), _) :- gcc_check(Pairs).run_propagator3123,106692 -run_propagator(pgcc(Vs, _, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3125,106751 -run_propagator(pgcc(Vs, _, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3125,106751 -run_propagator(pgcc(Vs, _, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3125,106751 -run_propagator(pgcc(Vs, _, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3125,106751 -run_propagator(pgcc(Vs, _, Pairs), _) :- gcc_global(Vs, Pairs).run_propagator3125,106751 -run_propagator(pcircuit(Vs), _MState) :-run_propagator3129,106897 -run_propagator(pcircuit(Vs), _MState) :-run_propagator3129,106897 -run_propagator(pcircuit(Vs), _MState) :-run_propagator3129,106897 -run_propagator(pneq(A, B), MState) :-run_propagator3134,107072 -run_propagator(pneq(A, B), MState) :-run_propagator3134,107072 -run_propagator(pneq(A, B), MState) :-run_propagator3134,107072 -run_propagator(pgeq(A,B), MState) :-run_propagator3152,107711 -run_propagator(pgeq(A,B), MState) :-run_propagator3152,107711 -run_propagator(pgeq(A,B), MState) :-run_propagator3152,107711 -run_propagator(rel_tuple(R, Tuple), MState) :-run_propagator3185,108889 -run_propagator(rel_tuple(R, Tuple), MState) :-run_propagator3185,108889 -run_propagator(rel_tuple(R, Tuple), MState) :-run_propagator3185,108889 -run_propagator(pserialized(S_I, D_I, S_J, D_J, _), MState) :-run_propagator3206,109656 -run_propagator(pserialized(S_I, D_I, S_J, D_J, _), MState) :-run_propagator3206,109656 -run_propagator(pserialized(S_I, D_I, S_J, D_J, _), MState) :-run_propagator3206,109656 -run_propagator(absdiff_neq(X,Y,C), MState) :-run_propagator3220,110137 -run_propagator(absdiff_neq(X,Y,C), MState) :-run_propagator3220,110137 -run_propagator(absdiff_neq(X,Y,C), MState) :-run_propagator3220,110137 -run_propagator(absdiff_geq(X,Y,C), MState) :-run_propagator3235,110583 -run_propagator(absdiff_geq(X,Y,C), MState) :-run_propagator3235,110583 -run_propagator(absdiff_geq(X,Y,C), MState) :-run_propagator3235,110583 -run_propagator(x_neq_y_plus_z(X,Y,Z), MState) :-run_propagator3251,111022 -run_propagator(x_neq_y_plus_z(X,Y,Z), MState) :-run_propagator3251,111022 -run_propagator(x_neq_y_plus_z(X,Y,Z), MState) :-run_propagator3251,111022 -run_propagator(x_leq_y_plus_c(X,Y,C), MState) :-run_propagator3271,111657 -run_propagator(x_leq_y_plus_c(X,Y,C), MState) :-run_propagator3271,111657 -run_propagator(x_leq_y_plus_c(X,Y,C), MState) :-run_propagator3271,111657 -run_propagator(scalar_product_neq(Cs0,Vs0,P0), MState) :-run_propagator3311,113033 -run_propagator(scalar_product_neq(Cs0,Vs0,P0), MState) :-run_propagator3311,113033 -run_propagator(scalar_product_neq(Cs0,Vs0,P0), MState) :-run_propagator3311,113033 -run_propagator(scalar_product_leq(Cs0,Vs0,P0), MState) :-run_propagator3331,113845 -run_propagator(scalar_product_leq(Cs0,Vs0,P0), MState) :-run_propagator3331,113845 -run_propagator(scalar_product_leq(Cs0,Vs0,P0), MState) :-run_propagator3331,113845 -run_propagator(scalar_product_eq(Cs0,Vs0,P0), MState) :-run_propagator3352,114606 -run_propagator(scalar_product_eq(Cs0,Vs0,P0), MState) :-run_propagator3352,114606 -run_propagator(scalar_product_eq(Cs0,Vs0,P0), MState) :-run_propagator3352,114606 -run_propagator(pplus(X,Y,Z), MState) :-run_propagator3385,116142 -run_propagator(pplus(X,Y,Z), MState) :-run_propagator3385,116142 -run_propagator(pplus(X,Y,Z), MState) :-run_propagator3385,116142 -run_propagator(ptimes(X,Y,Z), MState) :-run_propagator3456,119012 -run_propagator(ptimes(X,Y,Z), MState) :-run_propagator3456,119012 -run_propagator(ptimes(X,Y,Z), MState) :-run_propagator3456,119012 -run_propagator(pdiv(X,Y,Z), MState) :-run_propagator3547,122807 -run_propagator(pdiv(X,Y,Z), MState) :-run_propagator3547,122807 -run_propagator(pdiv(X,Y,Z), MState) :-run_propagator3547,122807 -run_propagator(pabs(X,Y), MState) :-run_propagator3648,127166 -run_propagator(pabs(X,Y), MState) :-run_propagator3648,127166 -run_propagator(pabs(X,Y), MState) :-run_propagator3648,127166 -run_propagator(pmod(X,M,K), MState) :-run_propagator3673,128027 -run_propagator(pmod(X,M,K), MState) :-run_propagator3673,128027 -run_propagator(pmod(X,M,K), MState) :-run_propagator3673,128027 -run_propagator(pmax(X,Y,Z), MState) :-run_propagator3724,129842 -run_propagator(pmax(X,Y,Z), MState) :-run_propagator3724,129842 -run_propagator(pmax(X,Y,Z), MState) :-run_propagator3724,129842 -run_propagator(pmin(X,Y,Z), MState) :-run_propagator3759,131087 -run_propagator(pmin(X,Y,Z), MState) :-run_propagator3759,131087 -run_propagator(pmin(X,Y,Z), MState) :-run_propagator3759,131087 -run_propagator(pexp(X,Y,Z), MState) :-run_propagator3793,132328 -run_propagator(pexp(X,Y,Z), MState) :-run_propagator3793,132328 -run_propagator(pexp(X,Y,Z), MState) :-run_propagator3793,132328 -run_propagator(pzcompare(Order, A, B), MState) :-run_propagator3863,134937 -run_propagator(pzcompare(Order, A, B), MState) :-run_propagator3863,134937 -run_propagator(pzcompare(Order, A, B), MState) :-run_propagator3863,134937 -run_propagator(reified_in(V,Dom,B), MState) :-run_propagator3898,136186 -run_propagator(reified_in(V,Dom,B), MState) :-run_propagator3898,136186 -run_propagator(reified_in(V,Dom,B), MState) :-run_propagator3898,136186 -run_propagator(reified_tuple_in(Tuple, R, B), MState) :-run_propagator3915,136735 -run_propagator(reified_tuple_in(Tuple, R, B), MState) :-run_propagator3915,136735 -run_propagator(reified_tuple_in(Tuple, R, B), MState) :-run_propagator3915,136735 -run_propagator(reified_fd(V,B), MState) :-run_propagator3930,137250 -run_propagator(reified_fd(V,B), MState) :-run_propagator3930,137250 -run_propagator(reified_fd(V,B), MState) :-run_propagator3930,137250 -run_propagator(reified_div(X,Y,D,Skel,Z), MState) :-run_propagator3944,137623 -run_propagator(reified_div(X,Y,D,Skel,Z), MState) :-run_propagator3944,137623 -run_propagator(reified_div(X,Y,D,Skel,Z), MState) :-run_propagator3944,137623 -run_propagator(reified_mod(X,Y,D,Skel,Z), MState) :-run_propagator3954,138030 -run_propagator(reified_mod(X,Y,D,Skel,Z), MState) :-run_propagator3954,138030 -run_propagator(reified_mod(X,Y,D,Skel,Z), MState) :-run_propagator3954,138030 -run_propagator(reified_geq(DX,X,DY,Y,Ps,B), MState) :-run_propagator3966,138518 -run_propagator(reified_geq(DX,X,DY,Y,Ps,B), MState) :-run_propagator3966,138518 -run_propagator(reified_geq(DX,X,DY,Y,Ps,B), MState) :-run_propagator3966,138518 -run_propagator(reified_eq(DX,X,DY,Y,Ps,B), MState) :-run_propagator4003,140016 -run_propagator(reified_eq(DX,X,DY,Y,Ps,B), MState) :-run_propagator4003,140016 -run_propagator(reified_eq(DX,X,DY,Y,Ps,B), MState) :-run_propagator4003,140016 -run_propagator(reified_neq(DX,X,DY,Y,Ps,B), MState) :-run_propagator4033,141256 -run_propagator(reified_neq(DX,X,DY,Y,Ps,B), MState) :-run_propagator4033,141256 -run_propagator(reified_neq(DX,X,DY,Y,Ps,B), MState) :-run_propagator4033,141256 -run_propagator(reified_and(X,Ps1,Y,Ps2,B), MState) :-run_propagator4064,142512 -run_propagator(reified_and(X,Ps1,Y,Ps2,B), MState) :-run_propagator4064,142512 -run_propagator(reified_and(X,Ps1,Y,Ps2,B), MState) :-run_propagator4064,142512 -run_propagator(reified_or(X,Ps1,Y,Ps2,B), MState) :-run_propagator4076,142949 -run_propagator(reified_or(X,Ps1,Y,Ps2,B), MState) :-run_propagator4076,142949 -run_propagator(reified_or(X,Ps1,Y,Ps2,B), MState) :-run_propagator4076,142949 -run_propagator(reified_not(X,Y), MState) :-run_propagator4088,143384 -run_propagator(reified_not(X,Y), MState) :-run_propagator4088,143384 -run_propagator(reified_not(X,Y), MState) :-run_propagator4088,143384 -run_propagator(pimpl(X, Y, Ps), MState) :-run_propagator4097,143705 -run_propagator(pimpl(X, Y, Ps), MState) :-run_propagator4097,143705 -run_propagator(pimpl(X, Y, Ps), MState) :-run_propagator4097,143705 -min_times(L1,U1,L2,U2,Min) :-min_times4114,144220 -min_times(L1,U1,L2,U2,Min) :-min_times4114,144220 -min_times(L1,U1,L2,U2,Min) :-min_times4114,144220 -max_times(L1,U1,L2,U2,Max) :-max_times4116,144306 -max_times(L1,U1,L2,U2,Max) :-max_times4116,144306 -max_times(L1,U1,L2,U2,Max) :-max_times4116,144306 -min_divide_less(L1,U1,L2,U2,Min) :-min_divide_less4120,144394 -min_divide_less(L1,U1,L2,U2,Min) :-min_divide_less4120,144394 -min_divide_less(L1,U1,L2,U2,Min) :-min_divide_less4120,144394 -max_divide_less(L1,U1,L2,U2,Max) :-max_divide_less4124,144579 -max_divide_less(L1,U1,L2,U2,Max) :-max_divide_less4124,144579 -max_divide_less(L1,U1,L2,U2,Max) :-max_divide_less4124,144579 -finite(n(_)).finite4129,144765 -finite(n(_)).finite4129,144765 -min_divide(L1,U1,L2,U2,Min) :-min_divide4131,144780 -min_divide(L1,U1,L2,U2,Min) :-min_divide4131,144780 -min_divide(L1,U1,L2,U2,Min) :-min_divide4131,144780 -max_divide(L1,U1,L2,U2,Max) :-max_divide4146,145512 -max_divide(L1,U1,L2,U2,Max) :-max_divide4146,145512 -max_divide(L1,U1,L2,U2,Max) :-max_divide4146,145512 -distinct_attach([], _, _).distinct_attach4171,146675 -distinct_attach([], _, _).distinct_attach4171,146675 -distinct_attach([X|Xs], Prop, Right) :-distinct_attach4172,146702 -distinct_attach([X|Xs], Prop, Right) :-distinct_attach4172,146702 -distinct_attach([X|Xs], Prop, Right) :-distinct_attach4172,146702 -difference_arcs(Vars, FreeLeft, FreeRight) :-difference_arcs4197,147802 -difference_arcs(Vars, FreeLeft, FreeRight) :-difference_arcs4197,147802 -difference_arcs(Vars, FreeLeft, FreeRight) :-difference_arcs4197,147802 -domain_to_list(Domain, List) :- phrase(domain_to_list(Domain), List).domain_to_list4203,148021 -domain_to_list(Domain, List) :- phrase(domain_to_list(Domain), List).domain_to_list4203,148021 -domain_to_list(Domain, List) :- phrase(domain_to_list(Domain), List).domain_to_list4203,148021 -domain_to_list(Domain, List) :- phrase(domain_to_list(Domain), List).domain_to_list4203,148021 -domain_to_list(Domain, List) :- phrase(domain_to_list(Domain), List).domain_to_list4203,148021 -domain_to_list(split(_, Left, Right)) -->domain_to_list4205,148092 -domain_to_list(split(_, Left, Right)) -->domain_to_list4205,148092 -domain_to_list(split(_, Left, Right)) -->domain_to_list4205,148092 -domain_to_list(empty) --> [].domain_to_list4207,148187 -domain_to_list(empty) --> [].domain_to_list4207,148187 -domain_to_list(empty) --> [].domain_to_list4207,148187 -domain_to_list(from_to(n(F),n(T))) --> { numlist(F, T, Ns) }, list(Ns).domain_to_list4208,148233 -domain_to_list(from_to(n(F),n(T))) --> { numlist(F, T, Ns) }, list(Ns).domain_to_list4208,148233 -domain_to_list(from_to(n(F),n(T))) --> { numlist(F, T, Ns) }, list(Ns).domain_to_list4208,148233 -domain_to_list(from_to(n(F),n(T))) --> { numlist(F, T, Ns) }, list(Ns).domain_to_list4208,148233 -domain_to_list(from_to(n(F),n(T))) --> { numlist(F, T, Ns) }, list(Ns).domain_to_list4208,148233 -difference_arcs([], []) --> [].difference_arcs4210,148309 -difference_arcs([], []) --> [].difference_arcs4210,148309 -difference_arcs([], []) --> [].difference_arcs4210,148309 -difference_arcs([V|Vs], FL0) -->difference_arcs4211,148341 -difference_arcs([V|Vs], FL0) -->difference_arcs4211,148341 -difference_arcs([V|Vs], FL0) -->difference_arcs4211,148341 -enumerate([], _) --> [].enumerate4219,148581 -enumerate([], _) --> [].enumerate4219,148581 -enumerate([], _) --> [].enumerate4219,148581 -enumerate([N|Ns], V) -->enumerate4220,148606 -enumerate([N|Ns], V) -->enumerate4220,148606 -enumerate([N|Ns], V) -->enumerate4220,148606 -append_edge(V, Attr, E) :-append_edge4231,148976 -append_edge(V, Attr, E) :-append_edge4231,148976 -append_edge(V, Attr, E) :-append_edge4231,148976 -clear_parent(V) :- del_attr(V, parent).clear_parent4242,149412 -clear_parent(V) :- del_attr(V, parent).clear_parent4242,149412 -clear_parent(V) :- del_attr(V, parent).clear_parent4242,149412 -clear_parent(V) :- del_attr(V, parent).clear_parent4242,149412 -clear_parent(V) :- del_attr(V, parent).clear_parent4242,149412 -maximum_matching([]).maximum_matching4244,149453 -maximum_matching([]).maximum_matching4244,149453 -maximum_matching([FL|FLs]) :-maximum_matching4245,149475 -maximum_matching([FL|FLs]) :-maximum_matching4245,149475 -maximum_matching([FL|FLs]) :-maximum_matching4245,149475 -reachables([]) --> [].reachables4253,149745 -reachables([]) --> [].reachables4253,149745 -reachables([]) --> [].reachables4253,149745 -reachables([V|Vs]) -->reachables4254,149768 -reachables([V|Vs]) -->reachables4254,149768 -reachables([V|Vs]) -->reachables4254,149768 -reachables_([], _) --> [].reachables_4259,149880 -reachables_([], _) --> [].reachables_4259,149880 -reachables_([], _) --> [].reachables_4259,149880 -reachables_([E|Es], V) -->reachables_4260,149907 -reachables_([E|Es], V) -->reachables_4260,149907 -reachables_([E|Es], V) -->reachables_4260,149907 -edge_reachable(flow_to(F,To), V) -->edge_reachable4264,149993 -edge_reachable(flow_to(F,To), V) -->edge_reachable4264,149993 -edge_reachable(flow_to(F,To), V) -->edge_reachable4264,149993 -edge_reachable(flow_from(F,From), V) -->edge_reachable4271,150198 -edge_reachable(flow_from(F,From), V) -->edge_reachable4271,150198 -edge_reachable(flow_from(F,From), V) -->edge_reachable4271,150198 -augmenting_path_to(Level, Levels0, Levels, Right) :-augmenting_path_to4279,150414 -augmenting_path_to(Level, Levels0, Levels, Right) :-augmenting_path_to4279,150414 -augmenting_path_to(Level, Levels0, Levels, Right) :-augmenting_path_to4279,150414 -augmenting_path(N, To) -->augmenting_path4290,150808 -augmenting_path(N, To) -->augmenting_path4290,150808 -augmenting_path(N, To) -->augmenting_path4290,150808 -adjust_alternate_1([A|Arcs]) :-adjust_alternate_14297,150971 -adjust_alternate_1([A|Arcs]) :-adjust_alternate_14297,150971 -adjust_alternate_1([A|Arcs]) :-adjust_alternate_14297,150971 -adjust_alternate_0([]).adjust_alternate_04301,151068 -adjust_alternate_0([]).adjust_alternate_04301,151068 -adjust_alternate_0([A|Arcs]) :-adjust_alternate_04302,151092 -adjust_alternate_0([A|Arcs]) :-adjust_alternate_04302,151092 -adjust_alternate_0([A|Arcs]) :-adjust_alternate_04302,151092 -remove_ground([], _).remove_ground4306,151189 -remove_ground([], _).remove_ground4306,151189 -remove_ground([V|Vs], R) :-remove_ground4307,151211 -remove_ground([V|Vs], R) :-remove_ground4307,151211 -remove_ground([V|Vs], R) :-remove_ground4307,151211 -g_g0(V) :-g_g04315,151476 -g_g0(V) :-g_g04315,151476 -g_g0(V) :-g_g04315,151476 -g_g0_(V, flow_to(F,To)) :-g_g0_4319,151551 -g_g0_(V, flow_to(F,To)) :-g_g0_4319,151551 -g_g0_(V, flow_to(F,To)) :-g_g0_4319,151551 -g0_successors(V, Tos) :-g0_successors4326,151731 -g0_successors(V, Tos) :-g0_successors4326,151731 -g0_successors(V, Tos) :-g0_successors4326,151731 -put_free(F) :- put_attr(F, free, true).put_free4332,151871 -put_free(F) :- put_attr(F, free, true).put_free4332,151871 -put_free(F) :- put_attr(F, free, true).put_free4332,151871 -put_free(F) :- put_attr(F, free, true).put_free4332,151871 -put_free(F) :- put_attr(F, free, true).put_free4332,151871 -free_node(F) :-free_node4334,151912 -free_node(F) :-free_node4334,151912 -free_node(F) :-free_node4334,151912 -distinct(Vars) :-distinct4338,151989 -distinct(Vars) :-distinct4338,151989 -distinct(Vars) :-distinct4338,151989 -distinct_clear_attributes(V) :-distinct_clear_attributes4355,152573 -distinct_clear_attributes(V) :-distinct_clear_attributes4355,152573 -distinct_clear_attributes(V) :-distinct_clear_attributes4355,152573 -clear_edge(flow_to(F, To)) :-clear_edge4369,152996 -clear_edge(flow_to(F, To)) :-clear_edge4369,152996 -clear_edge(flow_to(F, To)) :-clear_edge4369,152996 -clear_edge(flow_from(X, Y)) :- clear_edge(flow_to(X, Y)).clear_edge4373,153119 -clear_edge(flow_from(X, Y)) :- clear_edge(flow_to(X, Y)).clear_edge4373,153119 -clear_edge(flow_from(X, Y)) :- clear_edge(flow_to(X, Y)).clear_edge4373,153119 -clear_edge(flow_from(X, Y)) :- clear_edge(flow_to(X, Y)).clear_edge4373,153119 -clear_edge(flow_from(X, Y)) :- clear_edge(flow_to(X, Y)).clear_edge4373,153119 -distinct_goals([]) --> [].distinct_goals4376,153179 -distinct_goals([]) --> [].distinct_goals4376,153179 -distinct_goals([]) --> [].distinct_goals4376,153179 -distinct_goals([V|Vs]) -->distinct_goals4377,153206 -distinct_goals([V|Vs]) -->distinct_goals4377,153206 -distinct_goals([V|Vs]) -->distinct_goals4377,153206 -distinct_edges([], _) --> [].distinct_edges4382,153329 -distinct_edges([], _) --> [].distinct_edges4382,153329 -distinct_edges([], _) --> [].distinct_edges4382,153329 -distinct_edges([flow_to(F,To)|Es], V) -->distinct_edges4383,153359 -distinct_edges([flow_to(F,To)|Es], V) -->distinct_edges4383,153359 -distinct_edges([flow_to(F,To)|Es], V) -->distinct_edges4383,153359 -dfs_used(V) :-dfs_used4399,153890 -dfs_used(V) :-dfs_used4399,153890 -dfs_used(V) :-dfs_used4399,153890 -dfs_used_edges([]).dfs_used_edges4408,154119 -dfs_used_edges([]).dfs_used_edges4408,154119 -dfs_used_edges([flow_to(F,To)|Es]) :-dfs_used_edges4409,154139 -dfs_used_edges([flow_to(F,To)|Es]) :-dfs_used_edges4409,154139 -dfs_used_edges([flow_to(F,To)|Es]) :-dfs_used_edges4409,154139 -scc([]) --> [].scc4421,154595 -scc([]) --> [].scc4421,154595 -scc([]) --> [].scc4421,154595 -scc([V|Vs]) -->scc4422,154615 -scc([V|Vs]) -->scc4422,154615 -scc([V|Vs]) -->scc4422,154615 -vindex_defined(V) --> { get_attr(V, index, _) }.vindex_defined4427,154713 -vindex_defined(V) --> { get_attr(V, index, _) }.vindex_defined4427,154713 -vindex_defined(V) --> { get_attr(V, index, _) }.vindex_defined4427,154713 -vindex_is_index(V) -->vindex_is_index4429,154763 -vindex_is_index(V) -->vindex_is_index4429,154763 -vindex_is_index(V) -->vindex_is_index4429,154763 -vlowlink_is_index(V) -->vlowlink_is_index4433,154855 -vlowlink_is_index(V) -->vlowlink_is_index4433,154855 -vlowlink_is_index(V) -->vlowlink_is_index4433,154855 -index_plus_one -->index_plus_one4437,154951 -s_push(V) -->s_push4441,155044 -s_push(V) -->s_push4441,155044 -s_push(V) -->s_push4441,155044 -vlowlink_min_lowlink(V, VP) -->vlowlink_min_lowlink4445,155154 -vlowlink_min_lowlink(V, VP) -->vlowlink_min_lowlink4445,155154 -vlowlink_min_lowlink(V, VP) -->vlowlink_min_lowlink4445,155154 -successors(V, Tos) --> state(s(_,_,Succ)), { call(Succ, V, Tos) }.successors4451,155331 -successors(V, Tos) --> state(s(_,_,Succ)), { call(Succ, V, Tos) }.successors4451,155331 -successors(V, Tos) --> state(s(_,_,Succ)), { call(Succ, V, Tos) }.successors4451,155331 -scc_(V) -->scc_4453,155399 -scc_(V) -->scc_4453,155399 -scc_(V) -->scc_4453,155399 -pop_stack_to(V, N) -->pop_stack_to4465,155696 -pop_stack_to(V, N) -->pop_stack_to4465,155696 -pop_stack_to(V, N) -->pop_stack_to4465,155696 -each_edge([], _) --> [].each_edge4473,155936 -each_edge([], _) --> [].each_edge4473,155936 -each_edge([], _) --> [].each_edge4473,155936 -each_edge([VP|VPs], V) -->each_edge4474,155961 -each_edge([VP|VPs], V) -->each_edge4474,155961 -each_edge([VP|VPs], V) -->each_edge4474,155961 -v_in_stack(V) --> { get_attr(V, in_stack, true) }.v_in_stack4489,156287 -v_in_stack(V) --> { get_attr(V, in_stack, true) }.v_in_stack4489,156287 -v_in_stack(V) --> { get_attr(V, in_stack, true) }.v_in_stack4489,156287 -all_distinct(Ls) :-all_distinct4502,156652 -all_distinct(Ls) :-all_distinct4502,156652 -all_distinct(Ls) :-all_distinct4502,156652 -weak_arc_all_distinct(Ls) :-weak_arc_all_distinct4519,157315 -weak_arc_all_distinct(Ls) :-weak_arc_all_distinct4519,157315 -weak_arc_all_distinct(Ls) :-weak_arc_all_distinct4519,157315 -all_distinct([], _, _).all_distinct4525,157487 -all_distinct([], _, _).all_distinct4525,157487 -all_distinct([X|Right], Left, Orig) :-all_distinct4526,157511 -all_distinct([X|Right], Left, Orig) :-all_distinct4526,157511 -all_distinct([X|Right], Left, Orig) :-all_distinct4526,157511 -exclude_fire(Left, Right, E) :-exclude_fire4540,158027 -exclude_fire(Left, Right, E) :-exclude_fire4540,158027 -exclude_fire(Left, Right, E) :-exclude_fire4540,158027 -list_contains([X|Xs], Y) :-list_contains4544,158125 -list_contains([X|Xs], Y) :-list_contains4544,158125 -list_contains([X|Xs], Y) :-list_contains4544,158125 -kill_if_isolated(Left, Right, X, MState) :-kill_if_isolated4549,158225 -kill_if_isolated(Left, Right, X, MState) :-kill_if_isolated4549,158225 -kill_if_isolated(Left, Right, X, MState) :-kill_if_isolated4549,158225 -all_empty_intersection([], _).all_empty_intersection4556,158428 -all_empty_intersection([], _).all_empty_intersection4556,158428 -all_empty_intersection([V|Vs], XDom) :-all_empty_intersection4557,158459 -all_empty_intersection([V|Vs], XDom) :-all_empty_intersection4557,158459 -all_empty_intersection([V|Vs], XDom) :-all_empty_intersection4557,158459 -outof_reducer(Left, Right, Var) :-outof_reducer4564,158689 -outof_reducer(Left, Right, Var) :-outof_reducer4564,158689 -outof_reducer(Left, Right, Var) :-outof_reducer4564,158689 -reduce_from_others([], _).reduce_from_others4579,159173 -reduce_from_others([], _).reduce_from_others4579,159173 -reduce_from_others([X|Xs], Dom) :-reduce_from_others4580,159200 -reduce_from_others([X|Xs], Dom) :-reduce_from_others4580,159200 -reduce_from_others([X|Xs], Dom) :-reduce_from_others4580,159200 -num_subsets([], _Dom, Num, Num, []).num_subsets4588,159418 -num_subsets([], _Dom, Num, Num, []).num_subsets4588,159418 -num_subsets([S|Ss], Dom, Num0, Num, NonSubs) :-num_subsets4589,159455 -num_subsets([S|Ss], Dom, Num0, Num, NonSubs) :-num_subsets4589,159455 -num_subsets([S|Ss], Dom, Num0, Num, NonSubs) :-num_subsets4589,159455 -serialized(Starts, Durations) :-serialized4621,160576 -serialized(Starts, Durations) :-serialized4621,160576 -serialized(Starts, Durations) :-serialized4621,160576 -serialize([], _).serialize4627,160805 -serialize([], _).serialize4627,160805 -serialize([S-D|SDs], Orig) :-serialize4628,160823 -serialize([S-D|SDs], Orig) :-serialize4628,160823 -serialize([S-D|SDs], Orig) :-serialize4628,160823 -serialize([], _, _, _).serialize4633,160936 -serialize([], _, _, _).serialize4633,160936 -serialize([S-D|Rest], S0, D0, Orig) :-serialize4634,160960 -serialize([S-D|Rest], S0, D0, Orig) :-serialize4634,160960 -serialize([S-D|Rest], S0, D0, Orig) :-serialize4634,160960 -earliest_start_time(Start, EST) :-earliest_start_time4642,161199 -earliest_start_time(Start, EST) :-earliest_start_time4642,161199 -earliest_start_time(Start, EST) :-earliest_start_time4642,161199 -latest_start_time(Start, LST) :-latest_start_time4648,161343 -latest_start_time(Start, LST) :-latest_start_time4648,161343 -latest_start_time(Start, LST) :-latest_start_time4648,161343 -serialize_lower_upper(S_I, D_I, S_J, D_J, MState) :-serialize_lower_upper4654,161486 -serialize_lower_upper(S_I, D_I, S_J, D_J, MState) :-serialize_lower_upper4654,161486 -serialize_lower_upper(S_I, D_I, S_J, D_J, MState) :-serialize_lower_upper4654,161486 -serialize_lower_bound(I, D_I, J, D_J, MState) :-serialize_lower_bound4663,161768 -serialize_lower_bound(I, D_I, J, D_J, MState) :-serialize_lower_bound4663,161768 -serialize_lower_bound(I, D_I, J, D_J, MState) :-serialize_lower_bound4663,161768 -serialize_upper_bound(I, D_I, J, D_J, MState) :-serialize_upper_bound4678,162243 -serialize_upper_bound(I, D_I, J, D_J, MState) :-serialize_upper_bound4678,162243 -serialize_upper_bound(I, D_I, J, D_J, MState) :-serialize_upper_bound4678,162243 -element(N, Is, V) :-element4700,162928 -element(N, Is, V) :-element4700,162928 -element(N, Is, V) :-element4700,162928 -element_domain(V, VD) :-element_domain4707,163109 -element_domain(V, VD) :-element_domain4707,163109 -element_domain(V, VD) :-element_domain4707,163109 -element_([], _, _, _).element_4712,163220 -element_([], _, _, _).element_4712,163220 -element_([I|Is], N0, N, V) :-element_4713,163243 -element_([I|Is], N0, N, V) :-element_4713,163243 -element_([I|Is], N0, N, V) :-element_4713,163243 -integers_remaining([], _, _, D, D).integers_remaining4718,163359 -integers_remaining([], _, _, D, D).integers_remaining4718,163359 -integers_remaining([V|Vs], N0, Dom, D0, D) :-integers_remaining4719,163395 -integers_remaining([V|Vs], N0, Dom, D0, D) :-integers_remaining4719,163395 -integers_remaining([V|Vs], N0, Dom, D0, D) :-integers_remaining4719,163395 -global_cardinality(Xs, Pairs) :-global_cardinality4747,164261 -global_cardinality(Xs, Pairs) :-global_cardinality4747,164261 -global_cardinality(Xs, Pairs) :-global_cardinality4747,164261 -gcc_pairs([], _, []).gcc_pairs4779,165600 -gcc_pairs([], _, []).gcc_pairs4779,165600 -gcc_pairs([Key-Num0|KNs], Vs, [Key-Num|Rest]) :-gcc_pairs4780,165622 -gcc_pairs([Key-Num0|KNs], Vs, [Key-Num|Rest]) :-gcc_pairs4780,165622 -gcc_pairs([Key-Num0|KNs], Vs, [Key-Num|Rest]) :-gcc_pairs4780,165622 -gcc_global(Vs, KNs) :-gcc_global4791,166124 -gcc_global(Vs, KNs) :-gcc_global4791,166124 -gcc_global(Vs, KNs) :-gcc_global4791,166124 -gcc_consistent(T) :-gcc_consistent4813,166952 -gcc_consistent(T) :-gcc_consistent4813,166952 -gcc_consistent(T) :-gcc_consistent4813,166952 -saturated_arc(arc_from(_,U,_,Flow)) :- get_attr(Flow, flow, U).saturated_arc4817,167042 -saturated_arc(arc_from(_,U,_,Flow)) :- get_attr(Flow, flow, U).saturated_arc4817,167042 -saturated_arc(arc_from(_,U,_,Flow)) :- get_attr(Flow, flow, U).saturated_arc4817,167042 -saturated_arc(arc_from(_,U,_,Flow)) :- get_attr(Flow, flow, U).saturated_arc4817,167042 -saturated_arc(arc_from(_,U,_,Flow)) :- get_attr(Flow, flow, U).saturated_arc4817,167042 -gcc_goals([]) --> [].gcc_goals4819,167107 -gcc_goals([]) --> [].gcc_goals4819,167107 -gcc_goals([]) --> [].gcc_goals4819,167107 -gcc_goals([Val|Vals]) -->gcc_goals4820,167129 -gcc_goals([Val|Vals]) -->gcc_goals4820,167129 -gcc_goals([Val|Vals]) -->gcc_goals4820,167129 -gcc_edges_goals([], _) --> [].gcc_edges_goals4825,167253 -gcc_edges_goals([], _) --> [].gcc_edges_goals4825,167253 -gcc_edges_goals([], _) --> [].gcc_edges_goals4825,167253 -gcc_edges_goals([E|Es], Val) -->gcc_edges_goals4826,167284 -gcc_edges_goals([E|Es], Val) -->gcc_edges_goals4826,167284 -gcc_edges_goals([E|Es], Val) -->gcc_edges_goals4826,167284 -gcc_edge_goal(arc_from(_,_,_,_), _) --> [].gcc_edge_goal4830,167383 -gcc_edge_goal(arc_from(_,_,_,_), _) --> [].gcc_edge_goal4830,167383 -gcc_edge_goal(arc_from(_,_,_,_), _) --> [].gcc_edge_goal4830,167383 -gcc_edge_goal(arc_to(_,_,V,F), Val) -->gcc_edge_goal4831,167427 -gcc_edge_goal(arc_to(_,_,V,F), Val) -->gcc_edge_goal4831,167427 -gcc_edge_goal(arc_to(_,_,V,F), Val) -->gcc_edge_goal4831,167427 -maximum_flow(S, T) :-maximum_flow4846,167979 -maximum_flow(S, T) :-maximum_flow4846,167979 -maximum_flow(S, T) :-maximum_flow4846,167979 -feasible_flow([], _, _).feasible_flow4857,168354 -feasible_flow([], _, _).feasible_flow4857,168354 -feasible_flow([A|As], S, T) :-feasible_flow4858,168379 -feasible_flow([A|As], S, T) :-feasible_flow4858,168379 -feasible_flow([A|As], S, T) :-feasible_flow4858,168379 -make_arc_feasible(A, S, T) :-make_arc_feasible4862,168480 -make_arc_feasible(A, S, T) :-make_arc_feasible4862,168480 -make_arc_feasible(A, S, T) :-make_arc_feasible4862,168480 -gcc_augmenting_path(Levels0, Levels, T) :-gcc_augmenting_path4876,168981 -gcc_augmenting_path(Levels0, Levels, T) :-gcc_augmenting_path4876,168981 -gcc_augmenting_path(Levels0, Levels, T) :-gcc_augmenting_path4876,168981 -gcc_reachables([]) --> [].gcc_reachables4885,169266 -gcc_reachables([]) --> [].gcc_reachables4885,169266 -gcc_reachables([]) --> [].gcc_reachables4885,169266 -gcc_reachables([V|Vs]) -->gcc_reachables4886,169297 -gcc_reachables([V|Vs]) -->gcc_reachables4886,169297 -gcc_reachables([V|Vs]) -->gcc_reachables4886,169297 -gcc_reachables_([], _) --> [].gcc_reachables_4891,169421 -gcc_reachables_([], _) --> [].gcc_reachables_4891,169421 -gcc_reachables_([], _) --> [].gcc_reachables_4891,169421 -gcc_reachables_([E|Es], V) -->gcc_reachables_4892,169456 -gcc_reachables_([E|Es], V) -->gcc_reachables_4892,169456 -gcc_reachables_([E|Es], V) -->gcc_reachables_4892,169456 -gcc_reachable(arc_from(_,_,V,F), P) -->gcc_reachable4896,169549 -gcc_reachable(arc_from(_,_,V,F), P) -->gcc_reachable4896,169549 -gcc_reachable(arc_from(_,_,V,F), P) -->gcc_reachable4896,169549 -gcc_reachable(arc_to(_L,U,V,F), P) -->gcc_reachable4904,169797 -gcc_reachable(arc_to(_L,U,V,F), P) -->gcc_reachable4904,169797 -gcc_reachable(arc_to(_L,U,V,F), P) -->gcc_reachable4904,169797 -path_minimum([], Min, Min).path_minimum4915,170078 -path_minimum([], Min, Min).path_minimum4915,170078 -path_minimum([augment(_,A,_)|As], Min0, Min) :-path_minimum4916,170106 -path_minimum([augment(_,A,_)|As], Min0, Min) :-path_minimum4916,170106 -path_minimum([augment(_,A,_)|As], Min0, Min) :-path_minimum4916,170106 -gcc_augment(Min, augment(F,_,Sign)) :-gcc_augment4920,170221 -gcc_augment(Min, augment(F,_,Sign)) :-gcc_augment4920,170221 -gcc_augment(Min, augment(F,_,Sign)) :-gcc_augment4920,170221 -gcc_flow_(+, F0, A, F) :- F is F0 + A.gcc_flow_4925,170371 -gcc_flow_(+, F0, A, F) :- F is F0 + A.gcc_flow_4925,170371 -gcc_flow_(+, F0, A, F) :- F is F0 + A.gcc_flow_4925,170371 -gcc_flow_(-, F0, A, F) :- F is F0 - A.gcc_flow_4926,170410 -gcc_flow_(-, F0, A, F) :- F is F0 - A.gcc_flow_4926,170410 -gcc_flow_(-, F0, A, F) :- F is F0 - A.gcc_flow_4926,170410 -gcc_augmenting_path(S, V) -->gcc_augmenting_path4928,170450 -gcc_augmenting_path(S, V) -->gcc_augmenting_path4928,170450 -gcc_augmenting_path(S, V) -->gcc_augmenting_path4928,170450 -gcc_arcs([], _, []).gcc_arcs4939,170845 -gcc_arcs([], _, []).gcc_arcs4939,170845 -gcc_arcs([Key-Num0|KNs], S, Vals) :-gcc_arcs4940,170866 -gcc_arcs([Key-Num0|KNs], S, Vals) :-gcc_arcs4940,170866 -gcc_arcs([Key-Num0|KNs], S, Vals) :-gcc_arcs4940,170866 -variables_with_num_occurrences(Vs0, VNs) :-variables_with_num_occurrences4959,171594 -variables_with_num_occurrences(Vs0, VNs) :-variables_with_num_occurrences4959,171594 -variables_with_num_occurrences(Vs0, VNs) :-variables_with_num_occurrences4959,171594 -variables_with_num_occurrences([], Prev, Count, [Prev-Count]).variables_with_num_occurrences4967,171826 -variables_with_num_occurrences([], Prev, Count, [Prev-Count]).variables_with_num_occurrences4967,171826 -variables_with_num_occurrences([V|Vs], Prev, Count0, VNs) :-variables_with_num_occurrences4968,171889 -variables_with_num_occurrences([V|Vs], Prev, Count0, VNs) :-variables_with_num_occurrences4968,171889 -variables_with_num_occurrences([V|Vs], Prev, Count0, VNs) :-variables_with_num_occurrences4968,171889 -target_to_v(T, V-Count) :-target_to_v4977,172185 -target_to_v(T, V-Count) :-target_to_v4977,172185 -target_to_v(T, V-Count) :-target_to_v4977,172185 -val_to_v(Val, V-Count) :-val_to_v4982,172355 -val_to_v(Val, V-Count) :-val_to_v4982,172355 -val_to_v(Val, V-Count) :-val_to_v4982,172355 -gcc_clear(V) :-gcc_clear4988,172529 -gcc_clear(V) :-gcc_clear4988,172529 -gcc_clear(V) :-gcc_clear4988,172529 -gcc_clear_edge(arc_to(_,_,V,F)) :-gcc_clear_edge4995,172715 -gcc_clear_edge(arc_to(_,_,V,F)) :-gcc_clear_edge4995,172715 -gcc_clear_edge(arc_to(_,_,V,F)) :-gcc_clear_edge4995,172715 -gcc_clear_edge(arc_from(L,U,V,F)) :- gcc_clear_edge(arc_to(L,U,V,F)).gcc_clear_edge4998,172799 -gcc_clear_edge(arc_from(L,U,V,F)) :- gcc_clear_edge(arc_to(L,U,V,F)).gcc_clear_edge4998,172799 -gcc_clear_edge(arc_from(L,U,V,F)) :- gcc_clear_edge(arc_to(L,U,V,F)).gcc_clear_edge4998,172799 -gcc_clear_edge(arc_from(L,U,V,F)) :- gcc_clear_edge(arc_to(L,U,V,F)).gcc_clear_edge4998,172799 -gcc_clear_edge(arc_from(L,U,V,F)) :- gcc_clear_edge(arc_to(L,U,V,F)).gcc_clear_edge4998,172799 -gcc_successors(V, Tos) :-gcc_successors5001,172871 -gcc_successors(V, Tos) :-gcc_successors5001,172871 -gcc_successors(V, Tos) :-gcc_successors5001,172871 -gcc_successors_([]) --> [].gcc_successors_5005,172976 -gcc_successors_([]) --> [].gcc_successors_5005,172976 -gcc_successors_([]) --> [].gcc_successors_5005,172976 -gcc_successors_([E|Es]) --> gcc_succ_edge(E), gcc_successors_(Es).gcc_successors_5006,173008 -gcc_successors_([E|Es]) --> gcc_succ_edge(E), gcc_successors_(Es).gcc_successors_5006,173008 -gcc_successors_([E|Es]) --> gcc_succ_edge(E), gcc_successors_(Es).gcc_successors_5006,173008 -gcc_successors_([E|Es]) --> gcc_succ_edge(E), gcc_successors_(Es).gcc_successors_5006,173008 -gcc_successors_([E|Es]) --> gcc_succ_edge(E), gcc_successors_(Es).gcc_successors_5006,173008 -gcc_succ_edge(arc_to(_,U,V,F)) -->gcc_succ_edge5008,173076 -gcc_succ_edge(arc_to(_,U,V,F)) -->gcc_succ_edge5008,173076 -gcc_succ_edge(arc_to(_,U,V,F)) -->gcc_succ_edge5008,173076 -gcc_succ_edge(arc_from(_,_,V,F)) -->gcc_succ_edge5013,173208 -gcc_succ_edge(arc_from(_,_,V,F)) -->gcc_succ_edge5013,173208 -gcc_succ_edge(arc_from(_,_,V,F)) -->gcc_succ_edge5013,173208 -gcc_done(Num) :-gcc_done5024,173622 -gcc_done(Num) :-gcc_done5024,173622 -gcc_done(Num) :-gcc_done5024,173622 -gcc_check(Pairs) :-gcc_check5029,173758 -gcc_check(Pairs) :-gcc_check5029,173758 -gcc_check(Pairs) :-gcc_check5029,173758 -gcc_check_([]).gcc_check_5034,173851 -gcc_check_([]).gcc_check_5034,173851 -gcc_check_([Key-Num0|KNs]) :-gcc_check_5035,173867 -gcc_check_([Key-Num0|KNs]) :-gcc_check_5035,173867 -gcc_check_([Key-Num0|KNs]) :-gcc_check_5035,173867 -vs_key_min_others([], _, Min, Min, []).vs_key_min_others5069,175156 -vs_key_min_others([], _, Min, Min, []).vs_key_min_others5069,175156 -vs_key_min_others([V|Vs], Key, Min0, Min, Others) :-vs_key_min_others5070,175196 -vs_key_min_others([V|Vs], Key, Min0, Min, Others) :-vs_key_min_others5070,175196 -vs_key_min_others([V|Vs], Key, Min0, Min, Others) :-vs_key_min_others5070,175196 -all_neq([], _).all_neq5084,175709 -all_neq([], _).all_neq5084,175709 -all_neq([X|Xs], C) :-all_neq5085,175725 -all_neq([X|Xs], C) :-all_neq5085,175725 -all_neq([X|Xs], C) :-all_neq5085,175725 -gcc_pair(Pair) :-gcc_pair5089,175795 -gcc_pair(Pair) :-gcc_pair5089,175795 -gcc_pair(Pair) :-gcc_pair5089,175795 -global_cardinality(Xs, Pairs, Options) :-global_cardinality5109,176485 -global_cardinality(Xs, Pairs, Options) :-global_cardinality5109,176485 -global_cardinality(Xs, Pairs, Options) :-global_cardinality5109,176485 -keys_costs(Keys, X, Row, C) :-keys_costs5117,176780 -keys_costs(Keys, X, Row, C) :-keys_costs5117,176780 -keys_costs(Keys, X, Row, C) :-keys_costs5117,176780 -circuit(Vs) :-circuit5139,177362 -circuit(Vs) :-circuit5139,177362 -circuit(Vs) :-circuit5139,177362 -all_circuit([], _).all_circuit5152,177699 -all_circuit([], _).all_circuit5152,177699 -all_circuit([X|Xs], N) :-all_circuit5153,177719 -all_circuit([X|Xs], N) :-all_circuit5153,177719 -all_circuit([X|Xs], N) :-all_circuit5153,177719 -propagate_circuit(Vs) :-propagate_circuit5169,178283 -propagate_circuit(Vs) :-propagate_circuit5169,178283 -propagate_circuit(Vs) :-propagate_circuit5169,178283 -single_component(V) :- get_attr(V, lowlink, 0).single_component5180,178611 -single_component(V) :- get_attr(V, lowlink, 0).single_component5180,178611 -single_component(V) :- get_attr(V, lowlink, 0).single_component5180,178611 -single_component(V) :- get_attr(V, lowlink, 0).single_component5180,178611 -single_component(V) :- get_attr(V, lowlink, 0).single_component5180,178611 -circuit_graph([], _, _).circuit_graph5182,178660 -circuit_graph([], _, _).circuit_graph5182,178660 -circuit_graph([V|Vs], Ts0, [T|Ts]) :-circuit_graph5183,178685 -circuit_graph([V|Vs], Ts0, [T|Ts]) :-circuit_graph5183,178685 -circuit_graph([V|Vs], Ts0, [T|Ts]) :-circuit_graph5183,178685 -circuit_edges([], _) --> [].circuit_edges5193,178983 -circuit_edges([], _) --> [].circuit_edges5193,178983 -circuit_edges([], _) --> [].circuit_edges5193,178983 -circuit_edges([N|Ns], Ts) -->circuit_edges5194,179012 -circuit_edges([N|Ns], Ts) -->circuit_edges5194,179012 -circuit_edges([N|Ns], Ts) -->circuit_edges5194,179012 -circuit_successors(V, Tos) :-circuit_successors5199,179123 -circuit_successors(V, Tos) :-circuit_successors5199,179123 -circuit_successors(V, Tos) :-circuit_successors5199,179123 -automaton(Sigs, Ns, As) :- automaton(_, _, Sigs, Ns, As, [], [], _).automaton5225,179934 -automaton(Sigs, Ns, As) :- automaton(_, _, Sigs, Ns, As, [], [], _).automaton5225,179934 -automaton(Sigs, Ns, As) :- automaton(_, _, Sigs, Ns, As, [], [], _).automaton5225,179934 -automaton(Sigs, Ns, As) :- automaton(_, _, Sigs, Ns, As, [], [], _).automaton5225,179934 -automaton(Sigs, Ns, As) :- automaton(_, _, Sigs, Ns, As, [], [], _).automaton5225,179934 -template_var_path(V, Var, []) :- var(V), !, V == Var.template_var_path5289,182633 -template_var_path(V, Var, []) :- var(V), !, V == Var.template_var_path5289,182633 -template_var_path(V, Var, []) :- var(V), !, V == Var.template_var_path5289,182633 -template_var_path(T, Var, [N|Ns]) :-template_var_path5290,182687 -template_var_path(T, Var, [N|Ns]) :-template_var_path5290,182687 -template_var_path(T, Var, [N|Ns]) :-template_var_path5290,182687 -path_term_variable([], V, V).path_term_variable5294,182790 -path_term_variable([], V, V).path_term_variable5294,182790 -path_term_variable([P|Ps], T, V) :-path_term_variable5295,182820 -path_term_variable([P|Ps], T, V) :-path_term_variable5295,182820 -path_term_variable([P|Ps], T, V) :-path_term_variable5295,182820 -initial_expr(_, []-1).initial_expr5299,182921 -initial_expr(_, []-1).initial_expr5299,182921 -automaton(Seqs, Template, Sigs, Ns, As0, Cs, Is, Fs) :-automaton5301,182945 -automaton(Seqs, Template, Sigs, Ns, As0, Cs, Is, Fs) :-automaton5301,182945 -automaton(Seqs, Template, Sigs, Ns, As0, Cs, Is, Fs) :-automaton5301,182945 -expr0_expr(Es0-_, Es) :-expr0_expr5322,183801 -expr0_expr(Es0-_, Es) :-expr0_expr5322,183801 -expr0_expr(Es0-_, Es) :-expr0_expr5322,183801 -transitions([], _, [], S, S, _, _, Cs, Cs) --> [].transitions5326,183893 -transitions([], _, [], S, S, _, _, Cs, Cs) --> [].transitions5326,183893 -transitions([], _, [], S, S, _, _, Cs, Cs) --> [].transitions5326,183893 -transitions([Seq|Seqs], Template, [Sig|Sigs], S0, S, Exprs, Counters, Cs0, Cs) -->transitions5327,183944 -transitions([Seq|Seqs], Template, [Sig|Sigs], S0, S, Exprs, Counters, Cs0, Cs) -->transitions5327,183944 -transitions([Seq|Seqs], Template, [Sig|Sigs], S0, S, Exprs, Counters, Cs0, Cs) -->transitions5327,183944 -exprs_next([], [], []) --> [].exprs_next5332,184213 -exprs_next([], [], []) --> [].exprs_next5332,184213 -exprs_next([], [], []) --> [].exprs_next5332,184213 -exprs_next([Es|Ess], [I|Is], [C|Cs]) -->exprs_next5333,184244 -exprs_next([Es|Ess], [I|Is], [C|Cs]) -->exprs_next5333,184244 -exprs_next([Es|Ess], [I|Is], [C|Cs]) -->exprs_next5333,184244 -exprs_values([], []) --> [].exprs_values5338,184380 -exprs_values([], []) --> [].exprs_values5338,184380 -exprs_values([], []) --> [].exprs_values5338,184380 -exprs_values([E0|Es], [V|Vs]) -->exprs_values5339,184409 -exprs_values([E0|Es], [V|Vs]) -->exprs_values5339,184409 -exprs_values([E0|Es], [V|Vs]) -->exprs_values5339,184409 -match_variables([], _) --> [].match_variables5347,184628 -match_variables([], _) --> [].match_variables5347,184628 -match_variables([], _) --> [].match_variables5347,184628 -match_variables([V0|Vs0], [V|Vs]) -->match_variables5348,184659 -match_variables([V0|Vs0], [V|Vs]) -->match_variables5348,184659 -match_variables([V0|Vs0], [V|Vs]) -->match_variables5348,184659 -nodes_nums([], []) --> [].nodes_nums5358,185055 -nodes_nums([], []) --> [].nodes_nums5358,185055 -nodes_nums([], []) --> [].nodes_nums5358,185055 -nodes_nums([Node|Nodes], [Num|Nums]) -->nodes_nums5359,185082 -nodes_nums([Node|Nodes], [Num|Nums]) -->nodes_nums5359,185082 -nodes_nums([Node|Nodes], [Num|Nums]) -->nodes_nums5359,185082 -arcs_relation([], []) --> [].arcs_relation5363,185186 -arcs_relation([], []) --> [].arcs_relation5363,185186 -arcs_relation([], []) --> [].arcs_relation5363,185186 -arcs_relation([arc(S0,L,S1,Es)|As], [[From,L,To|Ns]|Rs]) -->arcs_relation5364,185216 -arcs_relation([arc(S0,L,S1,Es)|As], [[From,L,To|Ns]|Rs]) -->arcs_relation5364,185216 -arcs_relation([arc(S0,L,S1,Es)|As], [[From,L,To|Ns]|Rs]) -->arcs_relation5364,185216 -exprs_nums([], [], [], []).exprs_nums5371,185460 -exprs_nums([], [], [], []).exprs_nums5371,185460 -exprs_nums([E|Es], [N|Ns], [Ex0-C0|Exs0], [Ex-C|Exs]) :-exprs_nums5372,185488 -exprs_nums([E|Es], [N|Ns], [Ex0-C0|Exs0], [Ex-C|Exs]) :-exprs_nums5372,185488 -exprs_nums([E|Es], [N|Ns], [Ex0-C0|Exs0], [Ex-C|Exs]) :-exprs_nums5372,185488 -node_num(Node, Num) -->node_num5378,185706 -node_num(Node, Num) -->node_num5378,185706 -node_num(Node, Num) -->node_num5378,185706 -sink(sink(_)).sink5385,185944 -sink(sink(_)).sink5385,185944 -arc_normalized(Cs, Arc0, Arc) :- arc_normalized_(Arc0, Cs, Arc).arc_normalized5387,185960 -arc_normalized(Cs, Arc0, Arc) :- arc_normalized_(Arc0, Cs, Arc).arc_normalized5387,185960 -arc_normalized(Cs, Arc0, Arc) :- arc_normalized_(Arc0, Cs, Arc).arc_normalized5387,185960 -arc_normalized(Cs, Arc0, Arc) :- arc_normalized_(Arc0, Cs, Arc).arc_normalized5387,185960 -arc_normalized(Cs, Arc0, Arc) :- arc_normalized_(Arc0, Cs, Arc).arc_normalized5387,185960 -arc_normalized_(arc(S0,L,S,Cs), _, arc(S0,L,S,Cs)).arc_normalized_5389,186026 -arc_normalized_(arc(S0,L,S,Cs), _, arc(S0,L,S,Cs)).arc_normalized_5389,186026 -arc_normalized_(arc(S0,L,S), Cs, arc(S0,L,S,Cs)).arc_normalized_5390,186078 -arc_normalized_(arc(S0,L,S), Cs, arc(S0,L,S,Cs)).arc_normalized_5390,186078 -transpose(Ms, Ts) :-transpose5449,187798 -transpose(Ms, Ts) :-transpose5449,187798 -transpose(Ms, Ts) :-transpose5449,187798 -transpose([], _, []).transpose5456,187952 -transpose([], _, []).transpose5456,187952 -transpose([_|Rs], Ms, [Ts|Tss]) :-transpose5457,187974 -transpose([_|Rs], Ms, [Ts|Tss]) :-transpose5457,187974 -transpose([_|Rs], Ms, [Ts|Tss]) :-transpose5457,187974 -lists_firsts_rests([], [], []).lists_firsts_rests5461,188084 -lists_firsts_rests([], [], []).lists_firsts_rests5461,188084 -lists_firsts_rests([[F|Os]|Rest], [F|Fs], [Os|Oss]) :-lists_firsts_rests5462,188116 -lists_firsts_rests([[F|Os]|Rest], [F|Fs], [Os|Oss]) :-lists_firsts_rests5462,188116 -lists_firsts_rests([[F|Os]|Rest], [F|Fs], [Os|Oss]) :-lists_firsts_rests5462,188116 -zcompare(Order, A, B) :-zcompare5488,188706 -zcompare(Order, A, B) :-zcompare5488,188706 -zcompare(Order, A, B) :-zcompare5488,188706 -zcompare_(=, A, B) :- A #= B.zcompare_5497,188974 -zcompare_(=, A, B) :- A #= B.zcompare_5497,188974 -zcompare_(=, A, B) :- A #= B.zcompare_5497,188974 -zcompare_(<, A, B) :- A #< B.zcompare_5498,189004 -zcompare_(<, A, B) :- A #< B.zcompare_5498,189004 -zcompare_(<, A, B) :- A #< B.zcompare_5498,189004 -zcompare_(>, A, B) :- A #> B.zcompare_5499,189034 -zcompare_(>, A, B) :- A #> B.zcompare_5499,189034 -zcompare_(>, A, B) :- A #> B.zcompare_5499,189034 -chain(Zs, Relation) :-chain5513,189348 -chain(Zs, Relation) :-chain5513,189348 -chain(Zs, Relation) :-chain5513,189348 -chain_relation(#=).chain_relation5525,189674 -chain_relation(#=).chain_relation5525,189674 -chain_relation(#<).chain_relation5526,189694 -chain_relation(#<).chain_relation5526,189694 -chain_relation(#=<).chain_relation5527,189714 -chain_relation(#=<).chain_relation5527,189714 -chain_relation(#>).chain_relation5528,189735 -chain_relation(#>).chain_relation5528,189735 -chain_relation(#>=).chain_relation5529,189755 -chain_relation(#>=).chain_relation5529,189755 -chain([], _, _).chain5531,189777 -chain([], _, _).chain5531,189777 -chain([X|Xs], Prev, Relation) :-chain5532,189794 -chain([X|Xs], Prev, Relation) :-chain5532,189794 -chain([X|Xs], Prev, Relation) :-chain5532,189794 -fd_var(X) :- get_attr(X, clpfd, _).fd_var5545,190211 -fd_var(X) :- get_attr(X, clpfd, _).fd_var5545,190211 -fd_var(X) :- get_attr(X, clpfd, _).fd_var5545,190211 -fd_var(X) :- get_attr(X, clpfd, _).fd_var5545,190211 -fd_var(X) :- get_attr(X, clpfd, _).fd_var5545,190211 -fd_inf(X, Inf) :-fd_inf5551,190325 -fd_inf(X, Inf) :-fd_inf5551,190325 -fd_inf(X, Inf) :-fd_inf5551,190325 -fd_sup(X, Sup) :-fd_sup5563,190593 -fd_sup(X, Sup) :-fd_sup5563,190593 -fd_sup(X, Sup) :-fd_sup5563,190593 -fd_size(X, S) :-fd_size5576,190924 -fd_size(X, S) :-fd_size5576,190924 -fd_size(X, S) :-fd_size5576,190924 -fd_dom(X, Drep) :-fd_dom5592,191437 -fd_dom(X, Drep) :-fd_dom5592,191437 -fd_dom(X, Drep) :-fd_dom5592,191437 -goals_entail(Goals, E) :-goals_entail5620,192293 -goals_entail(Goals, E) :-goals_entail5620,192293 -goals_entail(Goals, E) :-goals_entail5620,192293 -attr_unify_hook(clpfd_attr(_,_,_,Dom,Ps), Other) :-attr_unify_hook5631,192677 -attr_unify_hook(clpfd_attr(_,_,_,Dom,Ps), Other) :-attr_unify_hook5631,192677 -attr_unify_hook(clpfd_attr(_,_,_,Dom,Ps), Other) :-attr_unify_hook5631,192677 -append_propagators(fd_props(Gs0,Bs0,Os0), fd_props(Gs1,Bs1,Os1), fd_props(Gs,Bs,Os)) :-append_propagators5647,193182 -append_propagators(fd_props(Gs0,Bs0,Os0), fd_props(Gs1,Bs1,Os1), fd_props(Gs,Bs,Os)) :-append_propagators5647,193182 -append_propagators(fd_props(Gs0,Bs0,Os0), fd_props(Gs1,Bs1,Os1), fd_props(Gs,Bs,Os)) :-append_propagators5647,193182 -bound_portray(inf, inf).bound_portray5652,193361 -bound_portray(inf, inf).bound_portray5652,193361 -bound_portray(sup, sup).bound_portray5653,193386 -bound_portray(sup, sup).bound_portray5653,193386 -bound_portray(n(N), N).bound_portray5654,193411 -bound_portray(n(N), N).bound_portray5654,193411 -domain_to_drep(Dom, Drep) :-domain_to_drep5656,193436 -domain_to_drep(Dom, Drep) :-domain_to_drep5656,193436 -domain_to_drep(Dom, Drep) :-domain_to_drep5656,193436 -intervals_to_drep([], Drep, Drep).intervals_to_drep5665,193685 -intervals_to_drep([], Drep, Drep).intervals_to_drep5665,193685 -intervals_to_drep([A0-B0|Rest], Drep0, Drep) :-intervals_to_drep5666,193720 -intervals_to_drep([A0-B0|Rest], Drep0, Drep) :-intervals_to_drep5666,193720 -intervals_to_drep([A0-B0|Rest], Drep0, Drep) :-intervals_to_drep5666,193720 -attribute_goals(X) -->attribute_goals5674,193943 -attribute_goals(X) -->attribute_goals5674,193943 -attribute_goals(X) -->attribute_goals5674,193943 -clpfd_aux:attribute_goals(_) --> [].attribute_goals5685,194340 -clpfd_aux:attribute_goals(_) --> [].attribute_goals5685,194340 -clpfd_aux:attr_unify_hook(_,_) :- false.attr_unify_hook5686,194377 -clpfd_aux:attr_unify_hook(_,_) :- false.attr_unify_hook5686,194377 -clpfd_gcc_vs:attribute_goals(_) --> [].attribute_goals5688,194419 -clpfd_gcc_vs:attribute_goals(_) --> [].attribute_goals5688,194419 -clpfd_gcc_vs:attr_unify_hook(_,_) :- false.attr_unify_hook5689,194459 -clpfd_gcc_vs:attr_unify_hook(_,_) :- false.attr_unify_hook5689,194459 -clpfd_gcc_num:attribute_goals(_) --> [].attribute_goals5691,194504 -clpfd_gcc_num:attribute_goals(_) --> [].attribute_goals5691,194504 -clpfd_gcc_num:attr_unify_hook(_,_) :- false.attr_unify_hook5692,194545 -clpfd_gcc_num:attr_unify_hook(_,_) :- false.attr_unify_hook5692,194545 -clpfd_gcc_occurred:attribute_goals(_) --> [].attribute_goals5694,194591 -clpfd_gcc_occurred:attribute_goals(_) --> [].attribute_goals5694,194591 -clpfd_gcc_occurred:attr_unify_hook(_,_) :- false.attr_unify_hook5695,194637 -clpfd_gcc_occurred:attr_unify_hook(_,_) :- false.attr_unify_hook5695,194637 -clpfd_relation:attribute_goals(_) --> [].attribute_goals5697,194688 -clpfd_relation:attribute_goals(_) --> [].attribute_goals5697,194688 -clpfd_relation:attr_unify_hook(_,_) :- false.attr_unify_hook5698,194730 -clpfd_relation:attr_unify_hook(_,_) :- false.attr_unify_hook5698,194730 -clpfd_original:attribute_goals(_) --> [].attribute_goals5700,194777 -clpfd_original:attribute_goals(_) --> [].attribute_goals5700,194777 -clpfd_original:attr_unify_hook(_,_) :- false.attr_unify_hook5701,194819 -clpfd_original:attr_unify_hook(_,_) :- false.attr_unify_hook5701,194819 -attributes_goals([]) --> [].attributes_goals5703,194866 -attributes_goals([]) --> [].attributes_goals5703,194866 -attributes_goals([]) --> [].attributes_goals5703,194866 -attributes_goals([propagator(P, State)|As]) -->attributes_goals5704,194895 -attributes_goals([propagator(P, State)|As]) -->attributes_goals5704,194895 -attributes_goals([propagator(P, State)|As]) -->attributes_goals5704,194895 -with_clpfd([]) --> [].with_clpfd5713,195212 -with_clpfd([]) --> [].with_clpfd5713,195212 -with_clpfd([]) --> [].with_clpfd5713,195212 -with_clpfd([G|Gs]) --> [clpfd:G], with_clpfd(Gs).with_clpfd5714,195239 -with_clpfd([G|Gs]) --> [clpfd:G], with_clpfd(Gs).with_clpfd5714,195239 -with_clpfd([G|Gs]) --> [clpfd:G], with_clpfd(Gs).with_clpfd5714,195239 -with_clpfd([G|Gs]) --> [clpfd:G], with_clpfd(Gs).with_clpfd5714,195239 -with_clpfd([G|Gs]) --> [clpfd:G], with_clpfd(Gs).with_clpfd5714,195239 -attribute_goal_(presidual(Goal)) --> [Goal].attribute_goal_5716,195290 -attribute_goal_(presidual(Goal)) --> [Goal].attribute_goal_5716,195290 -attribute_goal_(presidual(Goal)) --> [Goal].attribute_goal_5716,195290 -attribute_goal_(pgeq(A,B)) --> [A #>= B].attribute_goal_5717,195341 -attribute_goal_(pgeq(A,B)) --> [A #>= B].attribute_goal_5717,195341 -attribute_goal_(pgeq(A,B)) --> [A #>= B].attribute_goal_5717,195341 -attribute_goal_(pplus(X,Y,Z)) --> [X + Y #= Z].attribute_goal_5718,195395 -attribute_goal_(pplus(X,Y,Z)) --> [X + Y #= Z].attribute_goal_5718,195395 -attribute_goal_(pplus(X,Y,Z)) --> [X + Y #= Z].attribute_goal_5718,195395 -attribute_goal_(pneq(A,B)) --> [A #\= B].attribute_goal_5719,195452 -attribute_goal_(pneq(A,B)) --> [A #\= B].attribute_goal_5719,195452 -attribute_goal_(pneq(A,B)) --> [A #\= B].attribute_goal_5719,195452 -attribute_goal_(ptimes(X,Y,Z)) --> [X*Y #= Z].attribute_goal_5720,195506 -attribute_goal_(ptimes(X,Y,Z)) --> [X*Y #= Z].attribute_goal_5720,195506 -attribute_goal_(ptimes(X,Y,Z)) --> [X*Y #= Z].attribute_goal_5720,195506 -attribute_goal_(absdiff_neq(X,Y,C)) --> [abs(X-Y) #\= C].attribute_goal_5721,195561 -attribute_goal_(absdiff_neq(X,Y,C)) --> [abs(X-Y) #\= C].attribute_goal_5721,195561 -attribute_goal_(absdiff_neq(X,Y,C)) --> [abs(X-Y) #\= C].attribute_goal_5721,195561 -attribute_goal_(absdiff_geq(X,Y,C)) --> [abs(X-Y) #>= C].attribute_goal_5722,195622 -attribute_goal_(absdiff_geq(X,Y,C)) --> [abs(X-Y) #>= C].attribute_goal_5722,195622 -attribute_goal_(absdiff_geq(X,Y,C)) --> [abs(X-Y) #>= C].attribute_goal_5722,195622 -attribute_goal_(x_neq_y_plus_z(X,Y,Z)) --> [X #\= Y + Z].attribute_goal_5723,195683 -attribute_goal_(x_neq_y_plus_z(X,Y,Z)) --> [X #\= Y + Z].attribute_goal_5723,195683 -attribute_goal_(x_neq_y_plus_z(X,Y,Z)) --> [X #\= Y + Z].attribute_goal_5723,195683 -attribute_goal_(x_leq_y_plus_c(X,Y,C)) --> [X #=< Y + C].attribute_goal_5724,195741 -attribute_goal_(x_leq_y_plus_c(X,Y,C)) --> [X #=< Y + C].attribute_goal_5724,195741 -attribute_goal_(x_leq_y_plus_c(X,Y,C)) --> [X #=< Y + C].attribute_goal_5724,195741 -attribute_goal_(pdiv(X,Y,Z)) --> [X/Y #= Z].attribute_goal_5725,195799 -attribute_goal_(pdiv(X,Y,Z)) --> [X/Y #= Z].attribute_goal_5725,195799 -attribute_goal_(pdiv(X,Y,Z)) --> [X/Y #= Z].attribute_goal_5725,195799 -attribute_goal_(pexp(X,Y,Z)) --> [X^Y #= Z].attribute_goal_5726,195854 -attribute_goal_(pexp(X,Y,Z)) --> [X^Y #= Z].attribute_goal_5726,195854 -attribute_goal_(pexp(X,Y,Z)) --> [X^Y #= Z].attribute_goal_5726,195854 -attribute_goal_(pabs(X,Y)) --> [Y #= abs(X)].attribute_goal_5727,195909 -attribute_goal_(pabs(X,Y)) --> [Y #= abs(X)].attribute_goal_5727,195909 -attribute_goal_(pabs(X,Y)) --> [Y #= abs(X)].attribute_goal_5727,195909 -attribute_goal_(pmod(X,M,K)) --> [X mod M #= K].attribute_goal_5728,195967 -attribute_goal_(pmod(X,M,K)) --> [X mod M #= K].attribute_goal_5728,195967 -attribute_goal_(pmod(X,M,K)) --> [X mod M #= K].attribute_goal_5728,195967 -attribute_goal_(pmax(X,Y,Z)) --> [Z #= max(X,Y)].attribute_goal_5729,196026 -attribute_goal_(pmax(X,Y,Z)) --> [Z #= max(X,Y)].attribute_goal_5729,196026 -attribute_goal_(pmax(X,Y,Z)) --> [Z #= max(X,Y)].attribute_goal_5729,196026 -attribute_goal_(pmin(X,Y,Z)) --> [Z #= min(X,Y)].attribute_goal_5730,196086 -attribute_goal_(pmin(X,Y,Z)) --> [Z #= min(X,Y)].attribute_goal_5730,196086 -attribute_goal_(pmin(X,Y,Z)) --> [Z #= min(X,Y)].attribute_goal_5730,196086 -attribute_goal_(scalar_product_neq([FC|Cs],[FV|Vs],C)) -->attribute_goal_5731,196146 -attribute_goal_(scalar_product_neq([FC|Cs],[FV|Vs],C)) -->attribute_goal_5731,196146 -attribute_goal_(scalar_product_neq([FC|Cs],[FV|Vs],C)) -->attribute_goal_5731,196146 -attribute_goal_(scalar_product_eq([FC|Cs],[FV|Vs],C)) -->attribute_goal_5734,196299 -attribute_goal_(scalar_product_eq([FC|Cs],[FV|Vs],C)) -->attribute_goal_5734,196299 -attribute_goal_(scalar_product_eq([FC|Cs],[FV|Vs],C)) -->attribute_goal_5734,196299 -attribute_goal_(scalar_product_leq([FC|Cs],[FV|Vs],C)) -->attribute_goal_5737,196450 -attribute_goal_(scalar_product_leq([FC|Cs],[FV|Vs],C)) -->attribute_goal_5737,196450 -attribute_goal_(scalar_product_leq([FC|Cs],[FV|Vs],C)) -->attribute_goal_5737,196450 -attribute_goal_(pdifferent(_,_,_,O)) --> original_goal(O).attribute_goal_5740,196603 -attribute_goal_(pdifferent(_,_,_,O)) --> original_goal(O).attribute_goal_5740,196603 -attribute_goal_(pdifferent(_,_,_,O)) --> original_goal(O).attribute_goal_5740,196603 -attribute_goal_(pdifferent(_,_,_,O)) --> original_goal(O).attribute_goal_5740,196603 -attribute_goal_(pdifferent(_,_,_,O)) --> original_goal(O).attribute_goal_5740,196603 -attribute_goal_(weak_distinct(_,_,_,O)) --> original_goal(O).attribute_goal_5741,196665 -attribute_goal_(weak_distinct(_,_,_,O)) --> original_goal(O).attribute_goal_5741,196665 -attribute_goal_(weak_distinct(_,_,_,O)) --> original_goal(O).attribute_goal_5741,196665 -attribute_goal_(weak_distinct(_,_,_,O)) --> original_goal(O).attribute_goal_5741,196665 -attribute_goal_(weak_distinct(_,_,_,O)) --> original_goal(O).attribute_goal_5741,196665 -attribute_goal_(pdistinct(Vs)) --> [all_distinct(Vs)].attribute_goal_5742,196727 -attribute_goal_(pdistinct(Vs)) --> [all_distinct(Vs)].attribute_goal_5742,196727 -attribute_goal_(pdistinct(Vs)) --> [all_distinct(Vs)].attribute_goal_5742,196727 -attribute_goal_(pexclude(_,_,_)) --> [].attribute_goal_5743,196791 -attribute_goal_(pexclude(_,_,_)) --> [].attribute_goal_5743,196791 -attribute_goal_(pexclude(_,_,_)) --> [].attribute_goal_5743,196791 -attribute_goal_(pelement(N,Is,V)) --> [element(N, Is, V)].attribute_goal_5744,196833 -attribute_goal_(pelement(N,Is,V)) --> [element(N, Is, V)].attribute_goal_5744,196833 -attribute_goal_(pelement(N,Is,V)) --> [element(N, Is, V)].attribute_goal_5744,196833 -attribute_goal_(pgcc(Vs, Pairs, _)) --> [global_cardinality(Vs, Pairs)].attribute_goal_5745,196892 -attribute_goal_(pgcc(Vs, Pairs, _)) --> [global_cardinality(Vs, Pairs)].attribute_goal_5745,196892 -attribute_goal_(pgcc(Vs, Pairs, _)) --> [global_cardinality(Vs, Pairs)].attribute_goal_5745,196892 -attribute_goal_(pgcc_single(_,_)) --> [].attribute_goal_5746,196967 -attribute_goal_(pgcc_single(_,_)) --> [].attribute_goal_5746,196967 -attribute_goal_(pgcc_single(_,_)) --> [].attribute_goal_5746,196967 -attribute_goal_(pgcc_check_single(_)) --> [].attribute_goal_5747,197013 -attribute_goal_(pgcc_check_single(_)) --> [].attribute_goal_5747,197013 -attribute_goal_(pgcc_check_single(_)) --> [].attribute_goal_5747,197013 -attribute_goal_(pgcc_check(_)) --> [].attribute_goal_5748,197059 -attribute_goal_(pgcc_check(_)) --> [].attribute_goal_5748,197059 -attribute_goal_(pgcc_check(_)) --> [].attribute_goal_5748,197059 -attribute_goal_(pcircuit(Vs)) --> [circuit(Vs)].attribute_goal_5749,197105 -attribute_goal_(pcircuit(Vs)) --> [circuit(Vs)].attribute_goal_5749,197105 -attribute_goal_(pcircuit(Vs)) --> [circuit(Vs)].attribute_goal_5749,197105 -attribute_goal_(pserialized(_,_,_,_,O)) --> original_goal(O).attribute_goal_5750,197160 -attribute_goal_(pserialized(_,_,_,_,O)) --> original_goal(O).attribute_goal_5750,197160 -attribute_goal_(pserialized(_,_,_,_,O)) --> original_goal(O).attribute_goal_5750,197160 -attribute_goal_(pserialized(_,_,_,_,O)) --> original_goal(O).attribute_goal_5750,197160 -attribute_goal_(pserialized(_,_,_,_,O)) --> original_goal(O).attribute_goal_5750,197160 -attribute_goal_(rel_tuple(R, Tuple)) -->attribute_goal_5751,197222 -attribute_goal_(rel_tuple(R, Tuple)) -->attribute_goal_5751,197222 -attribute_goal_(rel_tuple(R, Tuple)) -->attribute_goal_5751,197222 -attribute_goal_(pzcompare(O,A,B)) --> [zcompare(O,A,B)].attribute_goal_5754,197344 -attribute_goal_(pzcompare(O,A,B)) --> [zcompare(O,A,B)].attribute_goal_5754,197344 -attribute_goal_(pzcompare(O,A,B)) --> [zcompare(O,A,B)].attribute_goal_5754,197344 -attribute_goal_(reified_in(V, D, B)) -->attribute_goal_5756,197423 -attribute_goal_(reified_in(V, D, B)) -->attribute_goal_5756,197423 -attribute_goal_(reified_in(V, D, B)) -->attribute_goal_5756,197423 -attribute_goal_(reified_tuple_in(Tuple, R, B)) -->attribute_goal_5759,197530 -attribute_goal_(reified_tuple_in(Tuple, R, B)) -->attribute_goal_5759,197530 -attribute_goal_(reified_tuple_in(Tuple, R, B)) -->attribute_goal_5759,197530 -attribute_goal_(reified_fd(V,B)) --> [finite_domain(V) #<==> B].attribute_goal_5762,197670 -attribute_goal_(reified_fd(V,B)) --> [finite_domain(V) #<==> B].attribute_goal_5762,197670 -attribute_goal_(reified_fd(V,B)) --> [finite_domain(V) #<==> B].attribute_goal_5762,197670 -attribute_goal_(reified_neq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X#\=Y, B).attribute_goal_5763,197735 -attribute_goal_(reified_neq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X#\=Y, B).attribute_goal_5763,197735 -attribute_goal_(reified_neq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X#\=Y, B).attribute_goal_5763,197735 -attribute_goal_(reified_neq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X#\=Y, B).attribute_goal_5763,197735 -attribute_goal_(reified_neq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X#\=Y, B).attribute_goal_5763,197735 -attribute_goal_(reified_eq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #= Y, B).attribute_goal_5764,197814 -attribute_goal_(reified_eq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #= Y, B).attribute_goal_5764,197814 -attribute_goal_(reified_eq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #= Y, B).attribute_goal_5764,197814 -attribute_goal_(reified_eq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #= Y, B).attribute_goal_5764,197814 -attribute_goal_(reified_eq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #= Y, B).attribute_goal_5764,197814 -attribute_goal_(reified_geq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #>= Y, B).attribute_goal_5765,197894 -attribute_goal_(reified_geq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #>= Y, B).attribute_goal_5765,197894 -attribute_goal_(reified_geq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #>= Y, B).attribute_goal_5765,197894 -attribute_goal_(reified_geq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #>= Y, B).attribute_goal_5765,197894 -attribute_goal_(reified_geq(DX,X,DY,Y,_,B)) --> conjunction(DX, DY, X #>= Y, B).attribute_goal_5765,197894 -attribute_goal_(reified_div(X,Y,D,_,Z)) -->attribute_goal_5766,197975 -attribute_goal_(reified_div(X,Y,D,_,Z)) -->attribute_goal_5766,197975 -attribute_goal_(reified_div(X,Y,D,_,Z)) -->attribute_goal_5766,197975 -attribute_goal_(reified_mod(X,Y,D,_,Z)) -->attribute_goal_5768,198074 -attribute_goal_(reified_mod(X,Y,D,_,Z)) -->attribute_goal_5768,198074 -attribute_goal_(reified_mod(X,Y,D,_,Z)) -->attribute_goal_5768,198074 -attribute_goal_(reified_and(X,_,Y,_,B)) --> [X #/\ Y #<==> B].attribute_goal_5770,198175 -attribute_goal_(reified_and(X,_,Y,_,B)) --> [X #/\ Y #<==> B].attribute_goal_5770,198175 -attribute_goal_(reified_and(X,_,Y,_,B)) --> [X #/\ Y #<==> B].attribute_goal_5770,198175 -attribute_goal_(reified_or(X, _, Y, _, B)) --> [X #\/ Y #<==> B].attribute_goal_5771,198241 -attribute_goal_(reified_or(X, _, Y, _, B)) --> [X #\/ Y #<==> B].attribute_goal_5771,198241 -attribute_goal_(reified_or(X, _, Y, _, B)) --> [X #\/ Y #<==> B].attribute_goal_5771,198241 -attribute_goal_(reified_not(X, Y)) --> [#\ X #<==> Y].attribute_goal_5772,198307 -attribute_goal_(reified_not(X, Y)) --> [#\ X #<==> Y].attribute_goal_5772,198307 -attribute_goal_(reified_not(X, Y)) --> [#\ X #<==> Y].attribute_goal_5772,198307 -attribute_goal_(pimpl(X, Y, _)) --> [X #==> Y].attribute_goal_5773,198370 -attribute_goal_(pimpl(X, Y, _)) --> [X #==> Y].attribute_goal_5773,198370 -attribute_goal_(pimpl(X, Y, _)) --> [X #==> Y].attribute_goal_5773,198370 -conjunction(A, B, G, D) -->conjunction5775,198430 -conjunction(A, B, G, D) -->conjunction5775,198430 -conjunction(A, B, G, D) -->conjunction5775,198430 -coeff_var_term(C, V, T) :- ( C =:= 1 -> T = V ; T = C*V ).coeff_var_term5782,198646 -coeff_var_term(C, V, T) :- ( C =:= 1 -> T = V ; T = C*V ).coeff_var_term5782,198646 -coeff_var_term(C, V, T) :- ( C =:= 1 -> T = V ; T = C*V ).coeff_var_term5782,198646 -coeff_var_term(C, V, T) :- ( C =:= 1 -> T = V ; T = C*V ).coeff_var_term5782,198646 -coeff_var_term(C, V, T) :- ( C =:= 1 -> T = V ; T = C*V ).coeff_var_term5782,198646 -fold_product([], [], P, P).fold_product5784,198706 -fold_product([], [], P, P).fold_product5784,198706 -fold_product([C|Cs], [V|Vs], P0, P) :-fold_product5785,198734 -fold_product([C|Cs], [V|Vs], P0, P) :-fold_product5785,198734 -fold_product([C|Cs], [V|Vs], P0, P) :-fold_product5785,198734 -original_goal(V) -->original_goal5789,198848 -original_goal(V) -->original_goal5789,198848 -original_goal(V) -->original_goal5789,198848 -term_expansion(make_parse_clpfd, Clauses) :- make_parse_clpfd(Clauses).term_expansion5818,199694 -term_expansion(make_parse_clpfd, Clauses) :- make_parse_clpfd(Clauses).term_expansion5818,199694 -term_expansion(make_parse_clpfd, Clauses) :- make_parse_clpfd(Clauses).term_expansion5818,199694 -term_expansion(make_parse_clpfd, Clauses) :- make_parse_clpfd(Clauses).term_expansion5818,199694 -term_expansion(make_parse_clpfd, Clauses) :- make_parse_clpfd(Clauses).term_expansion5818,199694 -term_expansion(make_parse_reified, Clauses) :- make_parse_reified(Clauses).term_expansion5819,199768 -term_expansion(make_parse_reified, Clauses) :- make_parse_reified(Clauses).term_expansion5819,199768 -term_expansion(make_parse_reified, Clauses) :- make_parse_reified(Clauses).term_expansion5819,199768 -term_expansion(make_parse_reified, Clauses) :- make_parse_reified(Clauses).term_expansion5819,199768 -term_expansion(make_parse_reified, Clauses) :- make_parse_reified(Clauses).term_expansion5819,199768 -term_expansion(make_matches, Clauses) :- make_matches(Clauses).term_expansion5820,199844 -term_expansion(make_matches, Clauses) :- make_matches(Clauses).term_expansion5820,199844 -term_expansion(make_matches, Clauses) :- make_matches(Clauses).term_expansion5820,199844 -term_expansion(make_matches, Clauses) :- make_matches(Clauses).term_expansion5820,199844 -term_expansion(make_matches, Clauses) :- make_matches(Clauses).term_expansion5820,199844 -make_clpfd_var('$clpfd_queue') :-make_clpfd_var5830,200143 -make_clpfd_var('$clpfd_queue') :-make_clpfd_var5830,200143 -make_clpfd_var('$clpfd_queue') :-make_clpfd_var5830,200143 -make_clpfd_var('$clpfd_current_propagator') :-make_clpfd_var5832,200197 -make_clpfd_var('$clpfd_current_propagator') :-make_clpfd_var5832,200197 -make_clpfd_var('$clpfd_current_propagator') :-make_clpfd_var5832,200197 -make_clpfd_var('$clpfd_queue_status') :-make_clpfd_var5834,200296 -make_clpfd_var('$clpfd_queue_status') :-make_clpfd_var5834,200296 -make_clpfd_var('$clpfd_queue_status') :-make_clpfd_var5834,200296 -:- multifile user:exception/3.multifile5837,200389 -:- multifile user:exception/3.multifile5837,200389 -user:exception(undefined_global_variable, Name, retry) :-exception5839,200421 -user:exception(undefined_global_variable, Name, retry) :-exception5839,200421 -warn_if_bounded_arithmetic :-warn_if_bounded_arithmetic5842,200513 -:- multifile prolog:message//1.multifile5855,200889 -:- multifile prolog:message//1.multifile5855,200889 -prolog:message(clpfd(bounded)) -->message5857,200922 -prolog:message(clpfd(bounded)) -->message5857,200922 - -library/clp/simplex.pl,44950 -gen_state_clpr(State) :- gen_state_clpr([], State).gen_state_clpr67,2428 -gen_state_clpr(State) :- gen_state_clpr([], State).gen_state_clpr67,2428 -gen_state_clpr(State) :- gen_state_clpr([], State).gen_state_clpr67,2428 -gen_state_clpr(State) :- gen_state_clpr([], State).gen_state_clpr67,2428 -gen_state_clpr(State) :- gen_state_clpr([], State).gen_state_clpr67,2428 -gen_state_clpr(Options, State) :-gen_state_clpr69,2481 -gen_state_clpr(Options, State) :-gen_state_clpr69,2481 -gen_state_clpr(Options, State) :-gen_state_clpr69,2481 -clpr_state_options(clpr_state(Os, _, _), Os).clpr_state_options75,2673 -clpr_state_options(clpr_state(Os, _, _), Os).clpr_state_options75,2673 -clpr_state_constraints(clpr_state(_, Cs, _), Cs).clpr_state_constraints76,2719 -clpr_state_constraints(clpr_state(_, Cs, _), Cs).clpr_state_constraints76,2719 -clpr_state_integrals(clpr_state(_, _, Is), Is).clpr_state_integrals77,2769 -clpr_state_integrals(clpr_state(_, _, Is), Is).clpr_state_integrals77,2769 -clpr_state_add_integral(I, clpr_state(Os, Cs, Is), clpr_state(Os, Cs, [I|Is])).clpr_state_add_integral78,2817 -clpr_state_add_integral(I, clpr_state(Os, Cs, Is), clpr_state(Os, Cs, [I|Is])).clpr_state_add_integral78,2817 -clpr_state_add_constraint(C, clpr_state(Os, Cs, Is), clpr_state(Os, [C|Cs], Is)).clpr_state_add_constraint79,2897 -clpr_state_add_constraint(C, clpr_state(Os, Cs, Is), clpr_state(Os, [C|Cs], Is)).clpr_state_add_constraint79,2897 -clpr_state_set_constraints(Cs, clpr_state(Os,_,Is), clpr_state(Os, Cs, Is)).clpr_state_set_constraints80,2979 -clpr_state_set_constraints(Cs, clpr_state(Os,_,Is), clpr_state(Os, Cs, Is)).clpr_state_set_constraints80,2979 -clpr_constraint(Name, Constraint, S0, S) :-clpr_constraint82,3057 -clpr_constraint(Name, Constraint, S0, S) :-clpr_constraint82,3057 -clpr_constraint(Name, Constraint, S0, S) :-clpr_constraint82,3057 -clpr_constraint(Constraint, S0, S) :-clpr_constraint89,3343 -clpr_constraint(Constraint, S0, S) :-clpr_constraint89,3343 -clpr_constraint(Constraint, S0, S) :-clpr_constraint89,3343 -clpr_shadow_price(clpr_solved(_,_,Duals,_), Name, Value) :-clpr_shadow_price92,3429 -clpr_shadow_price(clpr_solved(_,_,Duals,_), Name, Value) :-clpr_shadow_price92,3429 -clpr_shadow_price(clpr_solved(_,_,Duals,_), Name, Value) :-clpr_shadow_price92,3429 -clpr_make_variables(Cs, Aliases) :-clpr_make_variables103,3663 -clpr_make_variables(Cs, Aliases) :-clpr_make_variables103,3663 -clpr_make_variables(Cs, Aliases) :-clpr_make_variables103,3663 -clpr_constraints_variables([]) --> [].clpr_constraints_variables108,3837 -clpr_constraints_variables([]) --> [].clpr_constraints_variables108,3837 -clpr_constraints_variables([]) --> [].clpr_constraints_variables108,3837 -clpr_constraints_variables([c(_, Left, _, _)|Cs]) -->clpr_constraints_variables109,3876 -clpr_constraints_variables([c(_, Left, _, _)|Cs]) -->clpr_constraints_variables109,3876 -clpr_constraints_variables([c(_, Left, _, _)|Cs]) -->clpr_constraints_variables109,3876 -clpr_aliases([], []).clpr_aliases113,3996 -clpr_aliases([], []).clpr_aliases113,3996 -clpr_aliases([Var|Vars], [Var-_|Rest]) :-clpr_aliases114,4018 -clpr_aliases([Var|Vars], [Var-_|Rest]) :-clpr_aliases114,4018 -clpr_aliases([Var|Vars], [Var-_|Rest]) :-clpr_aliases114,4018 -clpr_set_up([], _).clpr_set_up117,4095 -clpr_set_up([], _).clpr_set_up117,4095 -clpr_set_up([C|Cs], Aliases) :-clpr_set_up118,4115 -clpr_set_up([C|Cs], Aliases) :-clpr_set_up118,4115 -clpr_set_up([C|Cs], Aliases) :-clpr_set_up118,4115 -clpr_set_up_noneg([], _).clpr_set_up_noneg125,4356 -clpr_set_up_noneg([], _).clpr_set_up_noneg125,4356 -clpr_set_up_noneg([Var|Vs], Aliases) :-clpr_set_up_noneg126,4382 -clpr_set_up_noneg([Var|Vs], Aliases) :-clpr_set_up_noneg126,4382 -clpr_set_up_noneg([Var|Vs], Aliases) :-clpr_set_up_noneg126,4382 -clpr_translate_linsum([], _, 0).clpr_translate_linsum131,4528 -clpr_translate_linsum([], _, 0).clpr_translate_linsum131,4528 -clpr_translate_linsum([Coeff*Var|Ls], Aliases, LinSum) :-clpr_translate_linsum132,4561 -clpr_translate_linsum([Coeff*Var|Ls], Aliases, LinSum) :-clpr_translate_linsum132,4561 -clpr_translate_linsum([Coeff*Var|Ls], Aliases, LinSum) :-clpr_translate_linsum132,4561 -clpr_dual(Objective0, S0, DualValues) :-clpr_dual137,4754 -clpr_dual(Objective0, S0, DualValues) :-clpr_dual137,4754 -clpr_dual(Objective0, S0, DualValues) :-clpr_dual137,4754 -clpr_dual_objective([], _, []).clpr_dual_objective159,5703 -clpr_dual_objective([], _, []).clpr_dual_objective159,5703 -clpr_dual_objective([C|Cs], [Name|Names], [Right*Name|Os]) :-clpr_dual_objective160,5735 -clpr_dual_objective([C|Cs], [Name|Names], [Right*Name|Os]) :-clpr_dual_objective160,5735 -clpr_dual_objective([C|Cs], [Name|Names], [Right*Name|Os]) :-clpr_dual_objective160,5735 -clpr_nonneg_constraints([], _, Nons, Nons).clpr_nonneg_constraints164,5873 -clpr_nonneg_constraints([], _, Nons, Nons).clpr_nonneg_constraints164,5873 -clpr_nonneg_constraints([C|Cs], [Name|Names], Nons0, Nons) :-clpr_nonneg_constraints165,5917 -clpr_nonneg_constraints([C|Cs], [Name|Names], Nons0, Nons) :-clpr_nonneg_constraints165,5917 -clpr_nonneg_constraints([C|Cs], [Name|Names], Nons0, Nons) :-clpr_nonneg_constraints165,5917 -clpr_dual_constraints([], [], _, []).clpr_dual_constraints173,6166 -clpr_dual_constraints([], [], _, []).clpr_dual_constraints173,6166 -clpr_dual_constraints([Coeffs|Cs], [O*_|Os], Names, [Constraint|Constraints]) :-clpr_dual_constraints174,6204 -clpr_dual_constraints([Coeffs|Cs], [O*_|Os], Names, [Constraint|Constraints]) :-clpr_dual_constraints174,6204 -clpr_dual_constraints([Coeffs|Cs], [O*_|Os], Names, [Constraint|Constraints]) :-clpr_dual_constraints174,6204 -clpr_dual_linsum([], [], []).clpr_dual_linsum180,6439 -clpr_dual_linsum([], [], []).clpr_dual_linsum180,6439 -clpr_dual_linsum([Coeff|Coeffs], [Name|Names], [Coeff*Name|Rest]) :-clpr_dual_linsum181,6469 -clpr_dual_linsum([Coeff|Coeffs], [Name|Names], [Coeff*Name|Rest]) :-clpr_dual_linsum181,6469 -clpr_dual_linsum([Coeff|Coeffs], [Name|Names], [Coeff*Name|Rest]) :-clpr_dual_linsum181,6469 -clpr_constraints_coefficients([], []).clpr_constraints_coefficients185,6587 -clpr_constraints_coefficients([], []).clpr_constraints_coefficients185,6587 -clpr_constraints_coefficients([C|Cs], [Coeff|Coeffs]) :-clpr_constraints_coefficients186,6626 -clpr_constraints_coefficients([C|Cs], [Coeff|Coeffs]) :-clpr_constraints_coefficients186,6626 -clpr_constraints_coefficients([C|Cs], [Coeff|Coeffs]) :-clpr_constraints_coefficients186,6626 -all_coeffs([], []).all_coeffs191,6798 -all_coeffs([], []).all_coeffs191,6798 -all_coeffs([Coeff*_|Cs], [Coeff|Rest]) :-all_coeffs192,6818 -all_coeffs([Coeff*_|Cs], [Coeff|Rest]) :-all_coeffs192,6818 -all_coeffs([Coeff*_|Cs], [Coeff|Rest]) :-all_coeffs192,6818 -clpr_unique_names([], _, []).clpr_unique_names196,6892 -clpr_unique_names([], _, []).clpr_unique_names196,6892 -clpr_unique_names([C0|Cs0], Num, [N|Ns]) :-clpr_unique_names197,6922 -clpr_unique_names([C0|Cs0], Num, [N|Ns]) :-clpr_unique_names197,6922 -clpr_unique_names([C0|Cs0], Num, [N|Ns]) :-clpr_unique_names197,6922 -clpr_include_all_vars([], _, []).clpr_include_all_vars204,7134 -clpr_include_all_vars([], _, []).clpr_include_all_vars204,7134 -clpr_include_all_vars([C0|Cs0], Variables, [C|Cs]) :-clpr_include_all_vars205,7168 -clpr_include_all_vars([C0|Cs0], Variables, [C|Cs]) :-clpr_include_all_vars205,7168 -clpr_include_all_vars([C0|Cs0], Variables, [C|Cs]) :-clpr_include_all_vars205,7168 -clpr_merge_into([], _, Ls, Ls).clpr_merge_into211,7405 -clpr_merge_into([], _, Ls, Ls).clpr_merge_into211,7405 -clpr_merge_into([V|Vs], Left, Ls0, Ls) :-clpr_merge_into212,7437 -clpr_merge_into([V|Vs], Left, Ls0, Ls) :-clpr_merge_into212,7437 -clpr_merge_into([V|Vs], Left, Ls0, Ls) :-clpr_merge_into212,7437 -clpr_maximize(Expr0, S0, S) :-clpr_maximize223,7654 -clpr_maximize(Expr0, S0, S) :-clpr_maximize223,7654 -clpr_maximize(Expr0, S0, S) :-clpr_maximize223,7654 -clpr_minimize(Expr0, S0, S) :-clpr_minimize249,8678 -clpr_minimize(Expr0, S0, S) :-clpr_minimize249,8678 -clpr_minimize(Expr0, S0, S) :-clpr_minimize249,8678 -clpr_merge_vars([], [], []).clpr_merge_vars257,8940 -clpr_merge_vars([], [], []).clpr_merge_vars257,8940 -clpr_merge_vars([I|Is], [V|Vs], [I-V|Rest]) :-clpr_merge_vars258,8969 -clpr_merge_vars([I|Is], [V|Vs], [I-V|Rest]) :-clpr_merge_vars258,8969 -clpr_merge_vars([I|Is], [V|Vs], [I-V|Rest]) :-clpr_merge_vars258,8969 -clpr_fetch_vars([], _, []).clpr_fetch_vars261,9056 -clpr_fetch_vars([], _, []).clpr_fetch_vars261,9056 -clpr_fetch_vars([Var|Vars], Aliases, [X|Xs]) :-clpr_fetch_vars262,9084 -clpr_fetch_vars([Var|Vars], Aliases, [X|Xs]) :-clpr_fetch_vars262,9084 -clpr_fetch_vars([Var|Vars], Aliases, [X|Xs]) :-clpr_fetch_vars262,9084 -clpr_variable_value(clpr_solved(_, Aliases, _, _), Variable, Value) :-clpr_variable_value266,9212 -clpr_variable_value(clpr_solved(_, Aliases, _, _), Variable, Value) :-clpr_variable_value266,9212 -clpr_variable_value(clpr_solved(_, Aliases, _, _), Variable, Value) :-clpr_variable_value266,9212 -clpr_objective(clpr_solved(Obj, _, _, _), Obj).clpr_objective275,9461 -clpr_objective(clpr_solved(Obj, _, _, _), Obj).clpr_objective275,9461 -clpr_standard_form([], []).clpr_standard_form277,9510 -clpr_standard_form([], []).clpr_standard_form277,9510 -clpr_standard_form([c(Name, Left, Op, Right)|Cs], [S|Ss]) :-clpr_standard_form278,9538 -clpr_standard_form([c(Name, Left, Op, Right)|Cs], [S|Ss]) :-clpr_standard_form278,9538 -clpr_standard_form([c(Name, Left, Op, Right)|Cs], [S|Ss]) :-clpr_standard_form278,9538 -clpr_standard_form_((=), Name, Left, Right, c(Name, Left, (=), Right)).clpr_standard_form_282,9691 -clpr_standard_form_((=), Name, Left, Right, c(Name, Left, (=), Right)).clpr_standard_form_282,9691 -clpr_standard_form_((>=), Name, Left, Right, c(Name, Left1, (=<), Right1)) :-clpr_standard_form_283,9763 -clpr_standard_form_((>=), Name, Left, Right, c(Name, Left1, (=<), Right1)) :-clpr_standard_form_283,9763 -clpr_standard_form_((>=), Name, Left, Right, c(Name, Left1, (=<), Right1)) :-clpr_standard_form_283,9763 -clpr_standard_form_((=<), Name, Left, Right, c(Name, Left, (=<), Right)).clpr_standard_form_286,9905 -clpr_standard_form_((=<), Name, Left, Right, c(Name, Left, (=<), Right)).clpr_standard_form_286,9905 -clpr_all_negate([], []).clpr_all_negate288,9980 -clpr_all_negate([], []).clpr_all_negate288,9980 -clpr_all_negate([Coeff0*Var|As], [Coeff1*Var|Ns]) :-clpr_all_negate289,10005 -clpr_all_negate([Coeff0*Var|As], [Coeff1*Var|Ns]) :-clpr_all_negate289,10005 -clpr_all_negate([Coeff0*Var|As], [Coeff1*Var|Ns]) :-clpr_all_negate289,10005 -find_row(Variable, [Row|Rows], R) :-find_row312,10754 -find_row(Variable, [Row|Rows], R) :-find_row312,10754 -find_row(Variable, [Row|Rows], R) :-find_row312,10754 -variable_value(State, Variable, Value) :-variable_value319,10909 -variable_value(State, Variable, Value) :-variable_value319,10909 -variable_value(State, Variable, Value) :-variable_value319,10909 -all_vars_zero([], _).all_vars_zero330,11293 -all_vars_zero([], _).all_vars_zero330,11293 -all_vars_zero([_Coeff*Var|Vars], State) :-all_vars_zero331,11315 -all_vars_zero([_Coeff*Var|Vars], State) :-all_vars_zero331,11315 -all_vars_zero([_Coeff*Var|Vars], State) :-all_vars_zero331,11315 -list_first(Ls, F, Index) :- once(nth0(Index, Ls, F)).list_first335,11434 -list_first(Ls, F, Index) :- once(nth0(Index, Ls, F)).list_first335,11434 -list_first(Ls, F, Index) :- once(nth0(Index, Ls, F)).list_first335,11434 -list_first(Ls, F, Index) :- once(nth0(Index, Ls, F)).list_first335,11434 -list_first(Ls, F, Index) :- once(nth0(Index, Ls, F)).list_first335,11434 -shadow_price(State, Name, Value) :-shadow_price337,11489 -shadow_price(State, Name, Value) :-shadow_price337,11489 -shadow_price(State, Name, Value) :-shadow_price337,11489 -objective(State, Obj) :-objective350,11982 -objective(State, Obj) :-objective350,11982 -objective(State, Obj) :-objective350,11982 -tableau_objective(tableau(Obj, _, _, _), Obj).tableau_objective361,12306 -tableau_objective(tableau(Obj, _, _, _), Obj).tableau_objective361,12306 -tableau_rows(tableau(_, _, _, Rows), Rows).tableau_rows362,12353 -tableau_rows(tableau(_, _, _, Rows), Rows).tableau_rows362,12353 -tableau_indicators(tableau(_, _, Inds, _), Inds).tableau_indicators363,12397 -tableau_indicators(tableau(_, _, Inds, _), Inds).tableau_indicators363,12397 -tableau_variables(tableau(_, Vars, _, _), Vars).tableau_variables364,12447 -tableau_variables(tableau(_, Vars, _, _), Vars).tableau_variables364,12447 -constraint_name(c(Name, _, _, _), Name).constraint_name385,13388 -constraint_name(c(Name, _, _, _), Name).constraint_name385,13388 -constraint_op(c(_, _, Op, _), Op).constraint_op386,13429 -constraint_op(c(_, _, Op, _), Op).constraint_op386,13429 -constraint_left(c(_, Left, _, _), Left).constraint_left387,13464 -constraint_left(c(_, Left, _, _), Left).constraint_left387,13464 -constraint_right(c(_, _, _, Right), Right).constraint_right388,13505 -constraint_right(c(_, _, _, Right), Right).constraint_right388,13505 -gen_state(state(0,[],[],[])).gen_state390,13550 -gen_state(state(0,[],[],[])).gen_state390,13550 -state_add_constraint(C, S0, S) :-state_add_constraint392,13581 -state_add_constraint(C, S0, S) :-state_add_constraint392,13581 -state_add_constraint(C, S0, S) :-state_add_constraint392,13581 -state_add_constraint_(C, state(VID,Ns,Cs,Is), state(VID,Ns,[C|Cs],Is)).state_add_constraint_398,13788 -state_add_constraint_(C, state(VID,Ns,Cs,Is), state(VID,Ns,[C|Cs],Is)).state_add_constraint_398,13788 -state_merge_constraint(C, S0, S) :-state_merge_constraint400,13861 -state_merge_constraint(C, S0, S) :-state_merge_constraint400,13861 -state_merge_constraint(C, S0, S) :-state_merge_constraint400,13861 -state_add_integral(Var, state(VID,Ns,Cs,Is), state(VID,Ns,Cs,[Var|Is])).state_add_integral431,15080 -state_add_integral(Var, state(VID,Ns,Cs,Is), state(VID,Ns,Cs,[Var|Is])).state_add_integral431,15080 -state_constraints(state(_, _, Cs, _), Cs).state_constraints433,15154 -state_constraints(state(_, _, Cs, _), Cs).state_constraints433,15154 -state_names(state(_,Names,_,_), Names).state_names434,15197 -state_names(state(_,Names,_,_), Names).state_names434,15197 -state_integrals(state(_,_,_,Is), Is).state_integrals435,15237 -state_integrals(state(_,_,_,Is), Is).state_integrals435,15237 -state_set_constraints(Cs, state(VID,Ns,_,Is), state(VID,Ns,Cs,Is)).state_set_constraints436,15275 -state_set_constraints(Cs, state(VID,Ns,_,Is), state(VID,Ns,Cs,Is)).state_set_constraints436,15275 -state_set_integrals(Is, state(VID,Ns,Cs,_), state(VID,Ns,Cs,Is)).state_set_integrals437,15343 -state_set_integrals(Is, state(VID,Ns,Cs,_), state(VID,Ns,Cs,Is)).state_set_integrals437,15343 -solved_tableau(solved(Tableau, _, _), Tableau).solved_tableau444,15539 -solved_tableau(solved(Tableau, _, _), Tableau).solved_tableau444,15539 -solved_names(solved(_, Names,_), Names).solved_names445,15587 -solved_names(solved(_, Names,_), Names).solved_names445,15587 -solved_integrals(solved(_,_,Is), Is).solved_integrals446,15628 -solved_integrals(solved(_,_,Is), Is).solved_integrals446,15628 -constraint(C, S0, S) :-constraint451,15758 -constraint(C, S0, S) :-constraint451,15758 -constraint(C, S0, S) :-constraint451,15758 -constraint(Name, C, S0, S) :- constraint_(user(Name), C, S0, S).constraint460,16027 -constraint(Name, C, S0, S) :- constraint_(user(Name), C, S0, S).constraint460,16027 -constraint(Name, C, S0, S) :- constraint_(user(Name), C, S0, S).constraint460,16027 -constraint(Name, C, S0, S) :- constraint_(user(Name), C, S0, S).constraint460,16027 -constraint(Name, C, S0, S) :- constraint_(user(Name), C, S0, S).constraint460,16027 -constraint_(Name, C, S0, S) :-constraint_462,16093 -constraint_(Name, C, S0, S) :-constraint_462,16093 -constraint_(Name, C, S0, S) :-constraint_462,16093 -constraint_add(Name, A, S0, S) :-constraint_add475,16562 -constraint_add(Name, A, S0, S) :-constraint_add475,16562 -constraint_add(Name, A, S0, S) :-constraint_add475,16562 -add_left([c(Name,Left0,Op,Right)|Cs], V, A, [c(Name,Left,Op,Right)|Rest]) :-add_left488,16959 -add_left([c(Name,Left0,Op,Right)|Cs], V, A, [c(Name,Left,Op,Right)|Rest]) :-add_left488,16959 -add_left([c(Name,Left0,Op,Right)|Cs], V, A, [c(Name,Left,Op,Right)|Rest]) :-add_left488,16959 -branching_variable(State, Variable) :-branching_variable493,17158 -branching_variable(State, Variable) :-branching_variable493,17158 -branching_variable(State, Variable) :-branching_variable493,17158 -worth_investigating(ZStar0, _, _) :- var(ZStar0).worth_investigating500,17355 -worth_investigating(ZStar0, _, _) :- var(ZStar0).worth_investigating500,17355 -worth_investigating(ZStar0, _, _) :- var(ZStar0).worth_investigating500,17355 -worth_investigating(ZStar0, _, _) :- var(ZStar0).worth_investigating500,17355 -worth_investigating(ZStar0, _, _) :- var(ZStar0).worth_investigating500,17355 -worth_investigating(ZStar0, AllInt, Z) :-worth_investigating501,17405 -worth_investigating(ZStar0, AllInt, Z) :-worth_investigating501,17405 -worth_investigating(ZStar0, AllInt, Z) :-worth_investigating501,17405 -branch_and_bound(Objective, Solved, AllInt, ZStar0, ZStar, S0, S, Found) :-branch_and_bound509,17567 -branch_and_bound(Objective, Solved, AllInt, ZStar0, ZStar, S0, S, Found) :-branch_and_bound509,17567 -branch_and_bound(Objective, Solved, AllInt, ZStar0, ZStar, S0, S, Found) :-branch_and_bound509,17567 -maximize(Z0, S0, S) :-maximize560,20032 -maximize(Z0, S0, S) :-maximize560,20032 -maximize(Z0, S0, S) :-maximize560,20032 -maximize_mip(Z, S0, S) :-maximize_mip567,20227 -maximize_mip(Z, S0, S) :-maximize_mip567,20227 -maximize_mip(Z, S0, S) :-maximize_mip567,20227 -all_integers([], _).all_integers581,20747 -all_integers([], _).all_integers581,20747 -all_integers([Coeff*V|Rest], Is) :-all_integers582,20768 -all_integers([Coeff*V|Rest], Is) :-all_integers582,20768 -all_integers([Coeff*V|Rest], Is) :-all_integers582,20768 -minimize(Z0, S0, S) :-minimize588,20888 -minimize(Z0, S0, S) :-minimize588,20888 -minimize(Z0, S0, S) :-minimize588,20888 -op_pendant(>=, =<).op_pendant605,21488 -op_pendant(>=, =<).op_pendant605,21488 -op_pendant(=<, >=).op_pendant606,21508 -op_pendant(=<, >=).op_pendant606,21508 -constraints_collapse([], []).constraints_collapse608,21529 -constraints_collapse([], []).constraints_collapse608,21529 -constraints_collapse([C|Cs], Colls) :-constraints_collapse609,21559 -constraints_collapse([C|Cs], Colls) :-constraints_collapse609,21559 -constraints_collapse([C|Cs], Colls) :-constraints_collapse609,21559 -maximize_(Z, S0, S) :-maximize_626,22116 -maximize_(Z, S0, S) :-maximize_626,22116 -maximize_(Z, S0, S) :-maximize_626,22116 -make_tableau(Z, Cs, Tableau) :-make_tableau642,22672 -make_tableau(Z, Cs, Tableau) :-make_tableau642,22672 -make_tableau(Z, Cs, Tableau) :-make_tableau642,22672 -all_one([]).all_one654,23108 -all_one([]).all_one654,23108 -all_one([1|Os]) :- all_one(Os).all_one655,23121 -all_one([1|Os]) :- all_one(Os).all_one655,23121 -all_one([1|Os]) :- all_one(Os).all_one655,23121 -all_one([1|Os]) :- all_one(Os).all_one655,23121 -all_one([1|Os]) :- all_one(Os).all_one655,23121 -proper_form([], _, _, Obj, Obj).proper_form657,23154 -proper_form([], _, _, Obj, Obj).proper_form657,23154 -proper_form([_Coeff*A|As], Variables, Rows, Obj0, Obj) :-proper_form658,23187 -proper_form([_Coeff*A|As], Variables, Rows, Obj0, Obj) :-proper_form658,23187 -proper_form([_Coeff*A|As], Variables, Rows, Obj0, Obj) :-proper_form658,23187 -two_phase_simplex(Z, Cs, As, Names, Is, S) :-two_phase_simplex667,23474 -two_phase_simplex(Z, Cs, As, Names, Is, S) :-two_phase_simplex667,23474 -two_phase_simplex(Z, Cs, As, Names, Is, S) :-two_phase_simplex667,23474 -eliminate_artificial([], _, _, Rows, Rows).eliminate_artificial691,24711 -eliminate_artificial([], _, _, Rows, Rows).eliminate_artificial691,24711 -eliminate_artificial([_Coeff*A|Rest], As, Variables, Rows0, Rows) :-eliminate_artificial692,24755 -eliminate_artificial([_Coeff*A|Rest], As, Variables, Rows0, Rows) :-eliminate_artificial692,24755 -eliminate_artificial([_Coeff*A|Rest], As, Variables, Rows0, Rows) :-eliminate_artificial692,24755 -nths_to_zero([], Inds, Inds).nths_to_zero707,25345 -nths_to_zero([], Inds, Inds).nths_to_zero707,25345 -nths_to_zero([Nth|Nths], Inds0, Inds) :-nths_to_zero708,25375 -nths_to_zero([Nth|Nths], Inds0, Inds) :-nths_to_zero708,25375 -nths_to_zero([Nth|Nths], Inds0, Inds) :-nths_to_zero708,25375 -nth_to_zero([], _, _, []).nth_to_zero712,25501 -nth_to_zero([], _, _, []).nth_to_zero712,25501 -nth_to_zero([I|Is], Curr, Nth, [Z|Zs]) :-nth_to_zero713,25528 -nth_to_zero([I|Is], Curr, Nth, [Z|Zs]) :-nth_to_zero713,25528 -nth_to_zero([I|Is], Curr, Nth, [Z|Zs]) :-nth_to_zero713,25528 -list_nths([], _, []).list_nths721,25719 -list_nths([], _, []).list_nths721,25719 -list_nths([_Coeff*A|As], Variables, [Nth|Nths]) :-list_nths722,25741 -list_nths([_Coeff*A|As], Variables, [Nth|Nths]) :-list_nths722,25741 -list_nths([_Coeff*A|As], Variables, [Nth|Nths]) :-list_nths722,25741 -linsum_negate([], []).linsum_negate727,25873 -linsum_negate([], []).linsum_negate727,25873 -linsum_negate([Coeff0*Var|Ls], [Coeff*Var|Ns]) :-linsum_negate728,25896 -linsum_negate([Coeff0*Var|Ls], [Coeff*Var|Ns]) :-linsum_negate728,25896 -linsum_negate([Coeff0*Var|Ls], [Coeff*Var|Ns]) :-linsum_negate728,25896 -linsum_row([], _, []).linsum_row733,26011 -linsum_row([], _, []).linsum_row733,26011 -linsum_row([V|Vs], Ls, [C|Cs]) :-linsum_row734,26034 -linsum_row([V|Vs], Ls, [C|Cs]) :-linsum_row734,26034 -linsum_row([V|Vs], Ls, [C|Cs]) :-linsum_row734,26034 -constraints_rows([], _, []).constraints_rows740,26189 -constraints_rows([], _, []).constraints_rows740,26189 -constraints_rows([C|Cs], Vars, [R|Rs]) :-constraints_rows741,26218 -constraints_rows([C|Cs], Vars, [R|Rs]) :-constraints_rows741,26218 -constraints_rows([C|Cs], Vars, [R|Rs]) :-constraints_rows741,26218 -constraints_normalize([], [], []) --> [].constraints_normalize747,26409 -constraints_normalize([], [], []) --> [].constraints_normalize747,26409 -constraints_normalize([], [], []) --> [].constraints_normalize747,26409 -constraints_normalize([C0|Cs0], [C|Cs], [A|As]) -->constraints_normalize748,26451 -constraints_normalize([C0|Cs0], [C|Cs], [A|As]) -->constraints_normalize748,26451 -constraints_normalize([C0|Cs0], [C|Cs], [A|As]) -->constraints_normalize748,26451 -constraint_normalize(As0 =< B0, Name, c(Slack, [1*Slack|As0], B0), []) -->constraint_normalize757,26780 -constraint_normalize(As0 =< B0, Name, c(Slack, [1*Slack|As0], B0), []) -->constraint_normalize757,26780 -constraint_normalize(As0 =< B0, Name, c(Slack, [1*Slack|As0], B0), []) -->constraint_normalize757,26780 -constraint_normalize(As0 = B0, Name, c(AID, [1*AID|As0], B0), [-1*AID]) -->constraint_normalize760,26923 -constraint_normalize(As0 = B0, Name, c(AID, [1*AID|As0], B0), [-1*AID]) -->constraint_normalize760,26923 -constraint_normalize(As0 = B0, Name, c(AID, [1*AID|As0], B0), [-1*AID]) -->constraint_normalize760,26923 -constraint_normalize(As0 >= B0, Name, c(AID, [-1*Slack,1*AID|As0], B0), [-1*AID]) -->constraint_normalize763,27063 -constraint_normalize(As0 >= B0, Name, c(AID, [-1*Slack,1*AID|As0], B0), [-1*AID]) -->constraint_normalize763,27063 -constraint_normalize(As0 >= B0, Name, c(AID, [-1*Slack,1*AID|As0], B0), [-1*AID]) -->constraint_normalize763,27063 -coeff_one([], []).coeff_one768,27245 -coeff_one([], []).coeff_one768,27245 -coeff_one([L|Ls], [Coeff*Var|Rest]) :-coeff_one769,27264 -coeff_one([L|Ls], [Coeff*Var|Rest]) :-coeff_one769,27264 -coeff_one([L|Ls], [Coeff*Var|Rest]) :-coeff_one769,27264 -tableau_optimal(Tableau) :-tableau_optimal776,27418 -tableau_optimal(Tableau) :-tableau_optimal776,27418 -tableau_optimal(Tableau) :-tableau_optimal776,27418 -all_nonnegative([], []).all_nonnegative782,27623 -all_nonnegative([], []).all_nonnegative782,27623 -all_nonnegative([Coeff|As], [I|Is]) :-all_nonnegative783,27648 -all_nonnegative([Coeff|As], [I|Is]) :-all_nonnegative783,27648 -all_nonnegative([Coeff|As], [I|Is]) :-all_nonnegative783,27648 -pivot_column(Tableau, PCol) :-pivot_column789,27783 -pivot_column(Tableau, PCol) :-pivot_column789,27783 -pivot_column(Tableau, PCol) :-pivot_column789,27783 -first_negative([L|Ls], [I|Is], Index0, N, Val, RestL, RestI) :-first_negative796,28082 -first_negative([L|Ls], [I|Is], Index0, N, Val, RestL, RestI) :-first_negative796,28082 -first_negative([L|Ls], [I|Is], Index0, N, Val, RestL, RestI) :-first_negative796,28082 -pivot_column([], _, _, _, N, N).pivot_column805,28417 -pivot_column([], _, _, _, N, N).pivot_column805,28417 -pivot_column([L|Ls], [I|Is], Coeff0, Index0, N0, N) :-pivot_column806,28450 -pivot_column([L|Ls], [I|Is], Coeff0, Index0, N0, N) :-pivot_column806,28450 -pivot_column([L|Ls], [I|Is], Coeff0, Index0, N0, N) :-pivot_column806,28450 -pivot_row(Tableau, PCol, PRow) :-pivot_row816,28758 -pivot_row(Tableau, PCol, PRow) :-pivot_row816,28758 -pivot_row(Tableau, PCol, PRow) :-pivot_row816,28758 -pivot_row([], _, Bounded, _, _, Row, Row) :- Bounded.pivot_row820,28883 -pivot_row([], _, Bounded, _, _, Row, Row) :- Bounded.pivot_row820,28883 -pivot_row([], _, Bounded, _, _, Row, Row) :- Bounded.pivot_row820,28883 -pivot_row([Row|Rows], PCol, Bounded0, Min0, Index0, PRow0, PRow) :-pivot_row821,28937 -pivot_row([Row|Rows], PCol, Bounded0, Min0, Index0, PRow0, PRow) :-pivot_row821,28937 -pivot_row([Row|Rows], PCol, Bounded0, Min0, Index0, PRow0, PRow) :-pivot_row821,28937 -row_divide(row(Var, Left0, Right0), Div, row(Var, Left, Right)) :-row_divide839,29540 -row_divide(row(Var, Left0, Right0), Div, row(Var, Left, Right)) :-row_divide839,29540 -row_divide(row(Var, Left0, Right0), Div, row(Var, Left, Right)) :-row_divide839,29540 -all_divide([], _, []).all_divide844,29681 -all_divide([], _, []).all_divide844,29681 -all_divide([R|Rs], Div, [DR|DRs]) :-all_divide845,29704 -all_divide([R|Rs], Div, [DR|DRs]) :-all_divide845,29704 -all_divide([R|Rs], Div, [DR|DRs]) :-all_divide845,29704 -gauss_elimination([], _, _, []).gauss_elimination849,29802 -gauss_elimination([], _, _, []).gauss_elimination849,29802 -gauss_elimination([Row0|Rows0], PivotRow, Col, [Row|Rows]) :-gauss_elimination850,29835 -gauss_elimination([Row0|Rows0], PivotRow, Col, [Row|Rows]) :-gauss_elimination850,29835 -gauss_elimination([Row0|Rows0], PivotRow, Col, [Row|Rows]) :-gauss_elimination850,29835 -row_eliminate(row(Var, Ls0, R0), row(_, PLs, PR), Col, row(Var, Ls, R)) :-row_eliminate858,30125 -row_eliminate(row(Var, Ls0, R0), row(_, PLs, PR), Col, row(Var, Ls, R)) :-row_eliminate858,30125 -row_eliminate(row(Var, Ls0, R0), row(_, PLs, PR), Col, row(Var, Ls, R)) :-row_eliminate858,30125 -all_times_plus([], _, _, []).all_times_plus865,30380 -all_times_plus([], _, _, []).all_times_plus865,30380 -all_times_plus([A|As], T, [B|Bs], [AT|ATs]) :-all_times_plus866,30410 -all_times_plus([A|As], T, [B|Bs], [AT|ATs]) :-all_times_plus866,30410 -all_times_plus([A|As], T, [B|Bs], [AT|ATs]) :-all_times_plus866,30410 -all_times([], _, []).all_times870,30523 -all_times([], _, []).all_times870,30523 -all_times([A|As], T, [AT|ATs]) :-all_times871,30545 -all_times([A|As], T, [AT|ATs]) :-all_times871,30545 -all_times([A|As], T, [AT|ATs]) :-all_times871,30545 -simplex(Tableau0, Tableau) :-simplex875,30632 -simplex(Tableau0, Tableau) :-simplex875,30632 -simplex(Tableau0, Tableau) :-simplex875,30632 -swap_basic([Row0|Rows0], Old, New, Matrix) :-swap_basic890,31309 -swap_basic([Row0|Rows0], Old, New, Matrix) :-swap_basic890,31309 -swap_basic([Row0|Rows0], Old, New, Matrix) :-swap_basic890,31309 -constraints_variables([]) --> [].constraints_variables897,31550 -constraints_variables([]) --> [].constraints_variables897,31550 -constraints_variables([]) --> [].constraints_variables897,31550 -constraints_variables([c(_,Left,_)|Cs]) -->constraints_variables898,31584 -constraints_variables([c(_,Left,_)|Cs]) -->constraints_variables898,31584 -constraints_variables([c(_,Left,_)|Cs]) -->constraints_variables898,31584 -variables([]) --> [].variables902,31689 -variables([]) --> [].variables902,31689 -variables([]) --> [].variables902,31689 -variables([_Coeff*Var|Rest]) --> [Var], variables(Rest).variables903,31711 -variables([_Coeff*Var|Rest]) --> [Var], variables(Rest).variables903,31711 -variables([_Coeff*Var|Rest]) --> [Var], variables(Rest).variables903,31711 -variables([_Coeff*Var|Rest]) --> [Var], variables(Rest).variables903,31711 -variables([_Coeff*Var|Rest]) --> [Var], variables(Rest).variables903,31711 -arcs([], Assoc, Assoc).arcs924,32702 -arcs([], Assoc, Assoc).arcs924,32702 -arcs([arc(From0,To0,C)|As], Assoc0, Assoc) :-arcs925,32726 -arcs([arc(From0,To0,C)|As], Assoc0, Assoc) :-arcs925,32726 -arcs([arc(From0,To0,C)|As], Assoc0, Assoc) :-arcs925,32726 -edmonds_karp(Arcs0, Arcs) :-edmonds_karp946,33416 -edmonds_karp(Arcs0, Arcs) :-edmonds_karp946,33416 -edmonds_karp(Arcs0, Arcs) :-edmonds_karp946,33416 -flow_to_arcs(V) -->flow_to_arcs958,33785 -flow_to_arcs(V) -->flow_to_arcs958,33785 -flow_to_arcs(V) -->flow_to_arcs958,33785 -flow_to_arcs_([], _) --> [].flow_to_arcs_966,33985 -flow_to_arcs_([], _) --> [].flow_to_arcs_966,33985 -flow_to_arcs_([], _) --> [].flow_to_arcs_966,33985 -flow_to_arcs_([E|Es], Name) -->flow_to_arcs_967,34014 -flow_to_arcs_([E|Es], Name) -->flow_to_arcs_967,34014 -flow_to_arcs_([E|Es], Name) -->flow_to_arcs_967,34014 -edge_to_arc(arc_from(_,_,_), _) --> [].edge_to_arc971,34110 -edge_to_arc(arc_from(_,_,_), _) --> [].edge_to_arc971,34110 -edge_to_arc(arc_from(_,_,_), _) --> [].edge_to_arc971,34110 -edge_to_arc(arc_to(To,F,C), Name) -->edge_to_arc972,34150 -edge_to_arc(arc_to(To,F,C), Name) -->edge_to_arc972,34150 -edge_to_arc(arc_to(To,F,C), Name) -->edge_to_arc972,34150 -arcs_assoc(Arcs, Hash) :-arcs_assoc978,34319 -arcs_assoc(Arcs, Hash) :-arcs_assoc978,34319 -arcs_assoc(Arcs, Hash) :-arcs_assoc978,34319 -arcs_assoc([], Hs, Hs).arcs_assoc982,34405 -arcs_assoc([], Hs, Hs).arcs_assoc982,34405 -arcs_assoc([arc(From,To,F,C)|Rest], Hs0, Hs) :-arcs_assoc983,34429 -arcs_assoc([arc(From,To,F,C)|Rest], Hs0, Hs) :-arcs_assoc983,34429 -arcs_assoc([arc(From,To,F,C)|Rest], Hs0, Hs) :-arcs_assoc983,34429 -maximum_flow(S, T) :-maximum_flow998,35023 -maximum_flow(S, T) :-maximum_flow998,35023 -maximum_flow(S, T) :-maximum_flow998,35023 -clear_parent(V) :- del_attr(V, parent).clear_parent1010,35440 -clear_parent(V) :- del_attr(V, parent).clear_parent1010,35440 -clear_parent(V) :- del_attr(V, parent).clear_parent1010,35440 -clear_parent(V) :- del_attr(V, parent).clear_parent1010,35440 -clear_parent(V) :- del_attr(V, parent).clear_parent1010,35440 -augmenting_path(Levels0, Levels, T) :-augmenting_path1012,35481 -augmenting_path(Levels0, Levels, T) :-augmenting_path1012,35481 -augmenting_path(Levels0, Levels, T) :-augmenting_path1012,35481 -reachables([]) --> [].reachables1021,35754 -reachables([]) --> [].reachables1021,35754 -reachables([]) --> [].reachables1021,35754 -reachables([V|Vs]) -->reachables1022,35781 -reachables([V|Vs]) -->reachables1022,35781 -reachables([V|Vs]) -->reachables1022,35781 -reachables_([], _) --> [].reachables_1027,35893 -reachables_([], _) --> [].reachables_1027,35893 -reachables_([], _) --> [].reachables_1027,35893 -reachables_([E|Es], V) -->reachables_1028,35924 -reachables_([E|Es], V) -->reachables_1028,35924 -reachables_([E|Es], V) -->reachables_1028,35924 -reachable(arc_from(V,F,_), P) -->reachable1032,36005 -reachable(arc_from(V,F,_), P) -->reachable1032,36005 -reachable(arc_from(V,F,_), P) -->reachable1032,36005 -reachable(arc_to(V,F,C), P) -->reachable1040,36247 -reachable(arc_to(V,F,C), P) -->reachable1040,36247 -reachable(arc_to(V,F,C), P) -->reachable1040,36247 -path_minimum([], Min, Min).path_minimum1053,36596 -path_minimum([], Min, Min).path_minimum1053,36596 -path_minimum([augment(_,A,_)|As], Min0, Min) :-path_minimum1054,36624 -path_minimum([augment(_,A,_)|As], Min0, Min) :-path_minimum1054,36624 -path_minimum([augment(_,A,_)|As], Min0, Min) :-path_minimum1054,36624 -augment(Min, augment(F,_,Sign)) :-augment1060,36789 -augment(Min, augment(F,_,Sign)) :-augment1060,36789 -augment(Min, augment(F,_,Sign)) :-augment1060,36789 -flow_(+, F0, A, F) :- F is F0 + A.flow_1065,36931 -flow_(+, F0, A, F) :- F is F0 + A.flow_1065,36931 -flow_(+, F0, A, F) :- F is F0 + A.flow_1065,36931 -flow_(-, F0, A, F) :- F is F0 - A.flow_1066,36966 -flow_(-, F0, A, F) :- F is F0 - A.flow_1066,36966 -flow_(-, F0, A, F) :- F is F0 - A.flow_1066,36966 -augmenting_path(S, V) -->augmenting_path1068,37002 -augmenting_path(S, V) -->augmenting_path1068,37002 -augmenting_path(S, V) -->augmenting_path1068,37002 -naive_init(Supplies, _, Costs, Alphas, Betas) :-naive_init1077,37257 -naive_init(Supplies, _, Costs, Alphas, Betas) :-naive_init1077,37257 -naive_init(Supplies, _, Costs, Alphas, Betas) :-naive_init1077,37257 -naive_init_betas([], []).naive_init_betas1084,37467 -naive_init_betas([], []).naive_init_betas1084,37467 -naive_init_betas([Ls|Lss], [B|Bs]) :-naive_init_betas1085,37493 -naive_init_betas([Ls|Lss], [B|Bs]) :-naive_init_betas1085,37493 -naive_init_betas([Ls|Lss], [B|Bs]) :-naive_init_betas1085,37493 -list_min([F|Rest], Min) :-list_min1089,37592 -list_min([F|Rest], Min) :-list_min1089,37592 -list_min([F|Rest], Min) :-list_min1089,37592 -list_min([], Min, Min).list_min1092,37652 -list_min([], Min, Min).list_min1092,37652 -list_min([L|Ls], Min0, Min) :-list_min1093,37676 -list_min([L|Ls], Min0, Min) :-list_min1093,37676 -list_min([L|Ls], Min0, Min) :-list_min1093,37676 -transpose(Ms, Ts) :- Ms = [F|_], transpose(F, Ms, Ts).transpose1099,37851 -transpose(Ms, Ts) :- Ms = [F|_], transpose(F, Ms, Ts).transpose1099,37851 -transpose(Ms, Ts) :- Ms = [F|_], transpose(F, Ms, Ts).transpose1099,37851 -transpose(Ms, Ts) :- Ms = [F|_], transpose(F, Ms, Ts).transpose1099,37851 -transpose(Ms, Ts) :- Ms = [F|_], transpose(F, Ms, Ts).transpose1099,37851 -transpose([], _, []).transpose1101,37907 -transpose([], _, []).transpose1101,37907 -transpose([_|Rs], Ms, [Ts|Tss]) :-transpose1102,37929 -transpose([_|Rs], Ms, [Ts|Tss]) :-transpose1102,37929 -transpose([_|Rs], Ms, [Ts|Tss]) :-transpose1102,37929 -lists_firsts_rests([], [], []).lists_firsts_rests1106,38039 -lists_firsts_rests([], [], []).lists_firsts_rests1106,38039 -lists_firsts_rests([[F|Os]|Rest], [F|Fs], [Os|Oss]) :-lists_firsts_rests1107,38071 -lists_firsts_rests([[F|Os]|Rest], [F|Fs], [Os|Oss]) :-lists_firsts_rests1107,38071 -lists_firsts_rests([[F|Os]|Rest], [F|Fs], [Os|Oss]) :-lists_firsts_rests1107,38071 -transportation(Supplies, Demands, Costs, Transport) :-transportation1115,38450 -transportation(Supplies, Demands, Costs, Transport) :-transportation1115,38450 -transportation(Supplies, Demands, Costs, Transport) :-transportation1115,38450 -flow_transport([], _, _, _, []).flow_transport1128,39000 -flow_transport([], _, _, _, []).flow_transport1128,39000 -flow_transport([_|Rest], N, Demands, Flow, [Line|Lines]) :-flow_transport1129,39033 -flow_transport([_|Rest], N, Demands, Flow, [Line|Lines]) :-flow_transport1129,39033 -flow_transport([_|Rest], N, Demands, Flow, [Line|Lines]) :-flow_transport1129,39033 -transport_line([], _, _, _, []).transport_line1134,39222 -transport_line([], _, _, _, []).transport_line1134,39222 -transport_line([_|Rest], I, J, Flow, [L|Ls]) :-transport_line1135,39255 -transport_line([_|Rest], I, J, Flow, [L|Ls]) :-transport_line1135,39255 -transport_line([_|Rest], I, J, Flow, [L|Ls]) :-transport_line1135,39255 -make_sink(N, p(N)).make_sink1143,39484 -make_sink(N, p(N)).make_sink1143,39484 -network_head([], _) --> [].network_head1145,39505 -network_head([], _) --> [].network_head1145,39505 -network_head([], _) --> [].network_head1145,39505 -network_head([S|Ss], N) -->network_head1146,39533 -network_head([S|Ss], N) -->network_head1146,39533 -network_head([S|Ss], N) -->network_head1146,39533 -network_tail([], _) --> [].network_tail1151,39639 -network_tail([], _) --> [].network_tail1151,39639 -network_tail([], _) --> [].network_tail1151,39639 -network_tail([D|Ds], N) -->network_tail1152,39667 -network_tail([D|Ds], N) -->network_tail1152,39667 -network_tail([D|Ds], N) -->network_tail1152,39667 -network_connections([], _, _, _) --> [].network_connections1157,39776 -network_connections([], _, _, _) --> [].network_connections1157,39776 -network_connections([], _, _, _) --> [].network_connections1157,39776 -network_connections([A|As], Betas, [Cs|Css], N) -->network_connections1158,39817 -network_connections([A|As], Betas, [Cs|Css], N) -->network_connections1158,39817 -network_connections([A|As], Betas, [Cs|Css], N) -->network_connections1158,39817 -network_connections([], _, _, _, _) --> [].network_connections1163,39993 -network_connections([], _, _, _, _) --> [].network_connections1163,39993 -network_connections([], _, _, _, _) --> [].network_connections1163,39993 -network_connections([B|Bs], [C|Cs], A, N, PN) -->network_connections1164,40037 -network_connections([B|Bs], [C|Cs], A, N, PN) -->network_connections1164,40037 -network_connections([B|Bs], [C|Cs], A, N, PN) -->network_connections1164,40037 -alpha_beta(Torso, Sources, Sinks, Costs, Alphas, Betas, Flow) :-alpha_beta1171,40239 -alpha_beta(Torso, Sources, Sinks, Costs, Alphas, Betas, Flow) :-alpha_beta1171,40239 -alpha_beta(Torso, Sources, Sinks, Costs, Alphas, Betas, Flow) :-alpha_beta1171,40239 -mark_hashes(MaxFlow, Arcs, RevArcs) :-mark_hashes1194,41419 -mark_hashes(MaxFlow, Arcs, RevArcs) :-mark_hashes1194,41419 -mark_hashes(MaxFlow, Arcs, RevArcs) :-mark_hashes1194,41419 -un_arc(_-Ls0, Ls) :-un_arc1202,41694 -un_arc(_-Ls0, Ls) :-un_arc1202,41694 -un_arc(_-Ls0, Ls) :-un_arc1202,41694 -un_arc_(_-Ls, Ls).un_arc_1206,41784 -un_arc_(_-Ls, Ls).un_arc_1206,41784 -mark_arcs([], Arcs, Arcs).mark_arcs1208,41804 -mark_arcs([], Arcs, Arcs).mark_arcs1208,41804 -mark_arcs([arc(From,To,F,C)|Rest], Arcs0, Arcs) :-mark_arcs1209,41831 -mark_arcs([arc(From,To,F,C)|Rest], Arcs0, Arcs) :-mark_arcs1209,41831 -mark_arcs([arc(From,To,F,C)|Rest], Arcs0, Arcs) :-mark_arcs1209,41831 -mark_revarcs([], Arcs, Arcs).mark_revarcs1220,42148 -mark_revarcs([], Arcs, Arcs).mark_revarcs1220,42148 -mark_revarcs([arc(From,To,F,_)|Rest], Arcs0, Arcs) :-mark_revarcs1221,42178 -mark_revarcs([arc(From,To,F,_)|Rest], Arcs0, Arcs) :-mark_revarcs1221,42178 -mark_revarcs([arc(From,To,F,_)|Rest], Arcs0, Arcs) :-mark_revarcs1221,42178 -un_p(p(N), N).un_p1232,42462 -un_p(p(N), N).un_p1232,42462 -duals_add([], Alphas, _, Alphas).duals_add1234,42478 -duals_add([], Alphas, _, Alphas).duals_add1234,42478 -duals_add([S|Ss], Alphas0, Theta, Alphas) :-duals_add1235,42512 -duals_add([S|Ss], Alphas0, Theta, Alphas) :-duals_add1235,42512 -duals_add([S|Ss], Alphas0, Theta, Alphas) :-duals_add1235,42512 -add_to_nth(N, N, [A0|As], Theta, [A|As]) :- !,add_to_nth1239,42656 -add_to_nth(N, N, [A0|As], Theta, [A|As]) :- !,add_to_nth1239,42656 -add_to_nth(N, N, [A0|As], Theta, [A|As]) :- !,add_to_nth1239,42656 -add_to_nth(N0, N, [A|As0], Theta, [A|As]) :-add_to_nth1241,42728 -add_to_nth(N0, N, [A|As0], Theta, [A|As]) :-add_to_nth1241,42728 -add_to_nth(N0, N, [A|As0], Theta, [A|As]) :-add_to_nth1241,42728 -theta(Source, Sink, Costs, Alphas, Betas, Theta) :-theta1246,42840 -theta(Source, Sink, Costs, Alphas, Betas, Theta) :-theta1246,42840 -theta(Source, Sink, Costs, Alphas, Betas, Theta) :-theta1246,42840 -theta([], _, _, _, _, Theta, Theta).theta1253,43055 -theta([], _, _, _, _, Theta, Theta).theta1253,43055 -theta([Source|Sources], Sinks, Costs, Alphas, Betas, Theta0, Theta) :-theta1254,43092 -theta([Source|Sources], Sinks, Costs, Alphas, Betas, Theta0, Theta) :-theta1254,43092 -theta([Source|Sources], Sinks, Costs, Alphas, Betas, Theta0, Theta) :-theta1254,43092 -theta_([], _, _, _, _, Theta, Theta).theta_1258,43301 -theta_([], _, _, _, _, Theta, Theta).theta_1258,43301 -theta_([Sink|Sinks], Source, Costs, Alphas, Betas, Theta0, Theta) :-theta_1259,43339 -theta_([Sink|Sinks], Source, Costs, Alphas, Betas, Theta0, Theta) :-theta_1259,43339 -theta_([Sink|Sinks], Source, Costs, Alphas, Betas, Theta0, Theta) :-theta_1259,43339 -mark_unmark(Nodes, Hash, Mark, Unmark) :-mark_unmark1265,43576 -mark_unmark(Nodes, Hash, Mark, Unmark) :-mark_unmark1265,43576 -mark_unmark(Nodes, Hash, Mark, Unmark) :-mark_unmark1265,43576 -mark_unmark([], _, Mark, Mark, Unmark, Unmark).mark_unmark1268,43675 -mark_unmark([], _, Mark, Mark, Unmark, Unmark).mark_unmark1268,43675 -mark_unmark([Node|Nodes], Markable, Mark0, Mark, Unmark0, Unmark) :-mark_unmark1269,43723 -mark_unmark([Node|Nodes], Markable, Mark0, Mark, Unmark0, Unmark) :-mark_unmark1269,43723 -mark_unmark([Node|Nodes], Markable, Mark0, Mark, Unmark0, Unmark) :-mark_unmark1269,43723 -all_markable(Flow, RevArcs, Markable) :-all_markable1278,44041 -all_markable(Flow, RevArcs, Markable) :-all_markable1278,44041 -all_markable(Flow, RevArcs, Markable) :-all_markable1278,44041 -all_markable([], Visited, Visited, _, _) --> [].all_markable1281,44144 -all_markable([], Visited, Visited, _, _) --> [].all_markable1281,44144 -all_markable([], Visited, Visited, _, _) --> [].all_markable1281,44144 -all_markable([To|Tos], Visited0, Visited, Arcs, RevArcs) -->all_markable1282,44193 -all_markable([To|Tos], Visited0, Visited, Arcs, RevArcs) -->all_markable1282,44193 -all_markable([To|Tos], Visited0, Visited, Arcs, RevArcs) -->all_markable1282,44193 -markable(Current, Visited0, Visited, Arcs, RevArcs) -->markable1288,44459 -markable(Current, Visited0, Visited, Arcs, RevArcs) -->markable1288,44459 -markable(Current, Visited0, Visited, Arcs, RevArcs) -->markable1288,44459 -input(Ss, Ds, Costs) -->input1314,45207 -input(Ss, Ds, Costs) -->input1314,45207 -input(Ss, Ds, Costs) -->input1314,45207 -n_kvectors(0, _, []) --> !.n_kvectors1321,45366 -n_kvectors(0, _, []) --> !.n_kvectors1321,45366 -n_kvectors(0, _, []) --> !.n_kvectors1321,45366 -n_kvectors(N, K, [V|Vs]) -->n_kvectors1322,45394 -n_kvectors(N, K, [V|Vs]) -->n_kvectors1322,45394 -n_kvectors(N, K, [V|Vs]) -->n_kvectors1322,45394 -n_integers(0, []) --> !.n_integers1327,45506 -n_integers(0, []) --> !.n_integers1327,45506 -n_integers(0, []) --> !.n_integers1327,45506 -n_integers(N, [I|Is]) --> integer(I), { N1 is N - 1 }, n_integers(N1, Is).n_integers1328,45531 -n_integers(N, [I|Is]) --> integer(I), { N1 is N - 1 }, n_integers(N1, Is).n_integers1328,45531 -n_integers(N, [I|Is]) --> integer(I), { N1 is N - 1 }, n_integers(N1, Is).n_integers1328,45531 -n_integers(N, [I|Is]) --> integer(I), { N1 is N - 1 }, n_integers(N1, Is).n_integers1328,45531 -n_integers(N, [I|Is]) --> integer(I), { N1 is N - 1 }, n_integers(N1, Is).n_integers1328,45531 -number([D|Ds]) --> digit(D), number(Ds).number1331,45608 -number([D|Ds]) --> digit(D), number(Ds).number1331,45608 -number([D|Ds]) --> digit(D), number(Ds).number1331,45608 -number([D|Ds]) --> digit(D), number(Ds).number1331,45608 -number([D|Ds]) --> digit(D), number(Ds).number1331,45608 -number([D]) --> digit(D).number1332,45649 -number([D]) --> digit(D).number1332,45649 -number([D]) --> digit(D).number1332,45649 -number([D]) --> digit(D).number1332,45649 -number([D]) --> digit(D).number1332,45649 -digit(D) --> [D], { between(0'0, 0'9, D) }.digit1334,45679 -digit(D) --> [D], { between(0'0, 0'9, D) }.digit1334,45679 -digit(D) --> [D], { between(0'0, 0'9, D) }.digit1334,45679 -integer(N) --> number(Ds), !, ws, { name(N, Ds) }.integer1336,45724 -integer(N) --> number(Ds), !, ws, { name(N, Ds) }.integer1336,45724 -integer(N) --> number(Ds), !, ws, { name(N, Ds) }.integer1336,45724 -ws --> [W], { W =< 0' }, !, ws. % closing quote for syntax highlighting: 'ws1338,45776 -ws --> [].ws1339,45852 -solve(File) :-solve1341,45864 -solve(File) :-solve1341,45864 -solve(File) :-solve1341,45864 -print_row(R) :- maplist(print_row_, R), nl.print_row1347,46073 -print_row(R) :- maplist(print_row_, R), nl.print_row1347,46073 -print_row(R) :- maplist(print_row_, R), nl.print_row1347,46073 -print_row_(N) :- format("~w ", [N]).print_row_1349,46118 -print_row_(N) :- format("~w ", [N]).print_row_1349,46118 -print_row_(N) :- format("~w ", [N]).print_row_1349,46118 -print_row_(N) :- format("~w ", [N]).print_row_1349,46118 -print_row_(N) :- format("~w ", [N]).print_row_1349,46118 -assignment(Costs, Assignment) :-assignment1367,46680 -assignment(Costs, Assignment) :-assignment1367,46680 -assignment(Costs, Assignment) :-assignment1367,46680 - -library/coinduction.yap,3850 -:- dynamic coinductive/3.dynamic89,2405 -:- dynamic coinductive/3.dynamic89,2405 -coinductive(Spec) :-coinductive94,2489 -coinductive(Spec) :-coinductive94,2489 -coinductive(Spec) :-coinductive94,2489 -coinductive(Module:Spec) :-coinductive98,2580 -coinductive(Module:Spec) :-coinductive98,2580 -coinductive(Module:Spec) :-coinductive98,2580 -coinductive(Spec) :-coinductive100,2681 -coinductive(Spec) :-coinductive100,2681 -coinductive(Spec) :-coinductive100,2681 -coinductive_declaration(Spec, _M, G) :-coinductive_declaration104,2815 -coinductive_declaration(Spec, _M, G) :-coinductive_declaration104,2815 -coinductive_declaration(Spec, _M, G) :-coinductive_declaration104,2815 -coinductive_declaration((A,B), M, G) :- !,coinductive_declaration108,2909 -coinductive_declaration((A,B), M, G) :- !,coinductive_declaration108,2909 -coinductive_declaration((A,B), M, G) :- !,coinductive_declaration108,2909 -coinductive_declaration(M:Spec, _, G) :- !,coinductive_declaration111,3022 -coinductive_declaration(M:Spec, _, G) :- !,coinductive_declaration111,3022 -coinductive_declaration(M:Spec, _, G) :- !,coinductive_declaration111,3022 -coinductive_declaration(Spec, M, _G) :-coinductive_declaration113,3104 -coinductive_declaration(Spec, M, _G) :-coinductive_declaration113,3104 -coinductive_declaration(Spec, M, _G) :-coinductive_declaration113,3104 -valid_pi(Name/Arity, Name, Arity) :-valid_pi135,3542 -valid_pi(Name/Arity, Name, Arity) :-valid_pi135,3542 -valid_pi(Name/Arity, Name, Arity) :-valid_pi135,3542 -match_args(0,_,_) :- !.match_args139,3642 -match_args(0,_,_) :- !.match_args139,3642 -match_args(0,_,_) :- !.match_args139,3642 -match_args(I,S1,S2) :-match_args140,3666 -match_args(I,S1,S2) :-match_args140,3666 -match_args(I,S1,S2) :-match_args140,3666 -co_term_expansion((M:H :- B), _, (M:NH :- B)) :- !,co_term_expansion148,3809 -co_term_expansion((M:H :- B), _, (M:NH :- B)) :- !,co_term_expansion148,3809 -co_term_expansion((M:H :- B), _, (M:NH :- B)) :- !,co_term_expansion148,3809 -co_term_expansion((H :- B), M, (NH :- B)) :- !,co_term_expansion150,3905 -co_term_expansion((H :- B), M, (NH :- B)) :- !,co_term_expansion150,3905 -co_term_expansion((H :- B), M, (NH :- B)) :- !,co_term_expansion150,3905 -co_term_expansion(H, M, NH) :-co_term_expansion152,3980 -co_term_expansion(H, M, NH) :-co_term_expansion152,3980 -co_term_expansion(H, M, NH) :-co_term_expansion152,3980 -user:term_expansion(M:Cl,M:NCl ) :- !,term_expansion155,4039 -user:term_expansion(M:Cl,M:NCl ) :- !,term_expansion155,4039 -user:term_expansion(G, NG) :-term_expansion158,4111 -user:term_expansion(G, NG) :-term_expansion158,4111 -in_stack(_, V, V) :- var(V), !.in_stack165,4279 -in_stack(_, V, V) :- var(V), !.in_stack165,4279 -in_stack(_, V, V) :- var(V), !.in_stack165,4279 -in_stack(G, [G|_], [G|_]) :- !.in_stack166,4311 -in_stack(G, [G|_], [G|_]) :- !.in_stack166,4311 -in_stack(G, [G|_], [G|_]) :- !.in_stack166,4311 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -writeG_val(G_var) :- writeG_val169,4392 -writeG_val(G_var) :- writeG_val169,4392 -writeG_val(G_var) :- writeG_val169,4392 -stream([H|T]) :- i(H), stream(T).stream181,4686 -stream([H|T]) :- i(H), stream(T).stream181,4686 -stream([H|T]) :- i(H), stream(T).stream181,4686 -stream([H|T]) :- i(H), stream(T).stream181,4686 -stream([H|T]) :- i(H), stream(T).stream181,4686 -i(0).i184,4733 -i(0).i184,4733 -i(s(N)) :- i(N).i185,4739 -i(s(N)) :- i(N).i185,4739 -i(s(N)) :- i(N).i185,4739 -i(s(N)) :- i(N).i185,4739 -i(s(N)) :- i(N).i185,4739 - -library/dbqueues.yap,1566 -nb_enqueue(Name,El) :- var(Name),nb_enqueue33,548 -nb_enqueue(Name,El) :- var(Name),nb_enqueue33,548 -nb_enqueue(Name,El) :- var(Name),nb_enqueue33,548 -nb_enqueue(Name,El) :- \+ atom(Name), !,nb_enqueue35,644 -nb_enqueue(Name,El) :- \+ atom(Name), !,nb_enqueue35,644 -nb_enqueue(Name,El) :- \+ atom(Name), !,nb_enqueue35,644 -nb_enqueue(Name,El) :-nb_enqueue37,743 -nb_enqueue(Name,El) :-nb_enqueue37,743 -nb_enqueue(Name,El) :-nb_enqueue37,743 -nb_enqueue(Name,El) :-nb_enqueue40,838 -nb_enqueue(Name,El) :-nb_enqueue40,838 -nb_enqueue(Name,El) :-nb_enqueue40,838 -nb_dequeue(Name,El) :- var(Name),nb_dequeue46,961 -nb_dequeue(Name,El) :- var(Name),nb_dequeue46,961 -nb_dequeue(Name,El) :- var(Name),nb_dequeue46,961 -nb_dequeue(Name,El) :- \+ atom(Name), !,nb_dequeue48,1057 -nb_dequeue(Name,El) :- \+ atom(Name), !,nb_dequeue48,1057 -nb_dequeue(Name,El) :- \+ atom(Name), !,nb_dequeue48,1057 -nb_dequeue(Name,El) :-nb_dequeue50,1156 -nb_dequeue(Name,El) :-nb_dequeue50,1156 -nb_dequeue(Name,El) :-nb_dequeue50,1156 -nb_clean_queue(Name) :-nb_clean_queue59,1295 -nb_clean_queue(Name) :-nb_clean_queue59,1295 -nb_clean_queue(Name) :-nb_clean_queue59,1295 -nb_clean_queue(_).nb_clean_queue63,1392 -nb_clean_queue(_).nb_clean_queue63,1392 -nb_dequeue_all(Ref) :-nb_dequeue_all65,1412 -nb_dequeue_all(Ref) :-nb_dequeue_all65,1412 -nb_dequeue_all(Ref) :-nb_dequeue_all65,1412 -nb_dequeue_size(Ref, Size) :-nb_dequeue_size68,1501 -nb_dequeue_size(Ref, Size) :-nb_dequeue_size68,1501 -nb_dequeue_size(Ref, Size) :-nb_dequeue_size68,1501 - -library/dbusage.yap,1907 -db_usage :-db_usage32,626 -db_usage:-db_usage92,2523 -db_static :-db_static103,2638 -db_static(Min) :-db_static113,2808 -db_static(Min) :-db_static113,2808 -db_static(Min) :-db_static113,2808 -db_dynamic :-db_dynamic131,3227 -db_dynamic(Min) :-db_dynamic143,3403 -db_dynamic(Min) :-db_dynamic143,3403 -db_dynamic(Min) :-db_dynamic143,3403 -display_preds([]).display_preds156,3819 -display_preds([]).display_preds156,3819 -display_preds([p(Sz,M:P,Cls,CSz,ISz)|_]) :-display_preds157,3838 -display_preds([p(Sz,M:P,Cls,CSz,ISz)|_]) :-display_preds157,3838 -display_preds([p(Sz,M:P,Cls,CSz,ISz)|_]) :-display_preds157,3838 -display_preds([_|All]) :-display_preds165,4109 -display_preds([_|All]) :-display_preds165,4109 -display_preds([_|All]) :-display_preds165,4109 -display_dpreds([]).display_dpreds169,4158 -display_dpreds([]).display_dpreds169,4158 -display_dpreds([p(Sz,M:P,Cls,CSz,ISz,ECls,ECSz,EISz)|_]) :-display_dpreds170,4178 -display_dpreds([p(Sz,M:P,Cls,CSz,ISz,ECls,ECSz,EISz)|_]) :-display_dpreds170,4178 -display_dpreds([p(Sz,M:P,Cls,CSz,ISz,ECls,ECSz,EISz)|_]) :-display_dpreds170,4178 -display_dpreds([_|All]) :-display_dpreds192,4738 -display_dpreds([_|All]) :-display_dpreds192,4738 -display_dpreds([_|All]) :-display_dpreds192,4738 -sumall(LEDAll, TEDCls, TEDCSz, TEDISz) :-sumall196,4789 -sumall(LEDAll, TEDCls, TEDCSz, TEDISz) :-sumall196,4789 -sumall(LEDAll, TEDCls, TEDCSz, TEDISz) :-sumall196,4789 -sumall([], TEDCls, TEDCls, TEDCSz, TEDCSz, TEDISz, TEDISz).sumall199,4882 -sumall([], TEDCls, TEDCls, TEDCSz, TEDCSz, TEDISz, TEDISz).sumall199,4882 -sumall([p(Cls,CSz,ISz)|LEDAll], TEDCls0, TEDCls, TEDCSz0, TEDCSz, TEDISz0, TEDISz) :-sumall200,4942 -sumall([p(Cls,CSz,ISz)|LEDAll], TEDCls0, TEDCls, TEDCSz0, TEDCSz, TEDISz0, TEDISz) :-sumall200,4942 -sumall([p(Cls,CSz,ISz)|LEDAll], TEDCls0, TEDCls, TEDCSz0, TEDCSz, TEDISz0, TEDISz) :-sumall200,4942 - -library/dgraphs.yap,21352 -dgraph_add_edge(Vs0,V1,V2,Vs2) :-dgraph_add_edge104,2175 -dgraph_add_edge(Vs0,V1,V2,Vs2) :-dgraph_add_edge104,2175 -dgraph_add_edge(Vs0,V1,V2,Vs2) :-dgraph_add_edge104,2175 -dgraph_add_edges(V0, Edges, VF) :-dgraph_add_edges117,2453 -dgraph_add_edges(V0, Edges, VF) :-dgraph_add_edges117,2453 -dgraph_add_edges(V0, Edges, VF) :-dgraph_add_edges117,2453 -dgraph_add_edges(G0, Edges, GF) :-dgraph_add_edges124,2695 -dgraph_add_edges(G0, Edges, GF) :-dgraph_add_edges124,2695 -dgraph_add_edges(G0, Edges, GF) :-dgraph_add_edges124,2695 -all_vertices_in_edges([],[]).all_vertices_in_edges130,2890 -all_vertices_in_edges([],[]).all_vertices_in_edges130,2890 -all_vertices_in_edges([V1-V2|Edges],[V1,V2|Vertices]) :-all_vertices_in_edges131,2920 -all_vertices_in_edges([V1-V2|Edges],[V1,V2|Vertices]) :-all_vertices_in_edges131,2920 -all_vertices_in_edges([V1-V2|Edges],[V1,V2|Vertices]) :-all_vertices_in_edges131,2920 -edges2graphl([], [], []).edges2graphl134,3020 -edges2graphl([], [], []).edges2graphl134,3020 -edges2graphl([V|Vertices], [VV-V1|SortedEdges], [V-[V1|Children]|GraphL]) :-edges2graphl135,3046 -edges2graphl([V|Vertices], [VV-V1|SortedEdges], [V-[V1|Children]|GraphL]) :-edges2graphl135,3046 -edges2graphl([V|Vertices], [VV-V1|SortedEdges], [V-[V1|Children]|GraphL]) :-edges2graphl135,3046 -edges2graphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2graphl139,3234 -edges2graphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2graphl139,3234 -edges2graphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2graphl139,3234 -dgraph_add_edges([],[]) --> [].dgraph_add_edges143,3340 -dgraph_add_edges([],[]) --> [].dgraph_add_edges143,3340 -dgraph_add_edges([],[]) --> [].dgraph_add_edges143,3340 -dgraph_add_edges([V|Vs],[V0-V1|Es]) --> { V == V0 }, !,dgraph_add_edges144,3372 -dgraph_add_edges([V|Vs],[V0-V1|Es]) --> { V == V0 }, !,dgraph_add_edges144,3372 -dgraph_add_edges([V|Vs],[V0-V1|Es]) --> { V == V0 }, !,dgraph_add_edges144,3372 -dgraph_add_edges([V|Vs],Es) --> !,dgraph_add_edges148,3539 -dgraph_add_edges([V|Vs],Es) --> !,dgraph_add_edges148,3539 -dgraph_add_edges([V|Vs],Es) --> !,dgraph_add_edges148,3539 -get_extra_children([V-C|Es],VV,[C|Children],REs) :- V == VV, !,get_extra_children152,3630 -get_extra_children([V-C|Es],VV,[C|Children],REs) :- V == VV, !,get_extra_children152,3630 -get_extra_children([V-C|Es],VV,[C|Children],REs) :- V == VV, !,get_extra_children152,3630 -get_extra_children(Es,_,[],Es).get_extra_children154,3735 -get_extra_children(Es,_,[],Es).get_extra_children154,3735 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex156,3768 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex156,3768 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex156,3768 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex158,3860 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex158,3860 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex158,3860 -add_edges(E0,E1,E) :-add_edges161,3937 -add_edges(E0,E1,E) :-add_edges161,3937 -add_edges(E0,E1,E) :-add_edges161,3937 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge164,3981 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge164,3981 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge164,3981 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge166,4058 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge166,4058 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge166,4058 -insert_edge(V2, Children0, Children) :-insert_edge169,4120 -insert_edge(V2, Children0, Children) :-insert_edge169,4120 -insert_edge(V2, Children0, Children) :-insert_edge169,4120 -dgraph_add_vertices(G, [], G).dgraph_add_vertices180,4385 -dgraph_add_vertices(G, [], G).dgraph_add_vertices180,4385 -dgraph_add_vertices(G0, [V|Vs], GF) :-dgraph_add_vertices181,4416 -dgraph_add_vertices(G0, [V|Vs], GF) :-dgraph_add_vertices181,4416 -dgraph_add_vertices(G0, [V|Vs], GF) :-dgraph_add_vertices181,4416 -dgraph_add_vertex(Vs0, V, Vs0) :-dgraph_add_vertex193,4689 -dgraph_add_vertex(Vs0, V, Vs0) :-dgraph_add_vertex193,4689 -dgraph_add_vertex(Vs0, V, Vs0) :-dgraph_add_vertex193,4689 -dgraph_add_vertex(Vs0, V, Vs) :-dgraph_add_vertex195,4747 -dgraph_add_vertex(Vs0, V, Vs) :-dgraph_add_vertex195,4747 -dgraph_add_vertex(Vs0, V, Vs) :-dgraph_add_vertex195,4747 -dgraph_edges(Vs,Edges) :-dgraph_edges207,4923 -dgraph_edges(Vs,Edges) :-dgraph_edges207,4923 -dgraph_edges(Vs,Edges) :-dgraph_edges207,4923 -dgraph_vertices(Vs,Vertices) :-dgraph_vertices218,5114 -dgraph_vertices(Vs,Vertices) :-dgraph_vertices218,5114 -dgraph_vertices(Vs,Vertices) :-dgraph_vertices218,5114 -cvt2edges([],[]).cvt2edges221,5170 -cvt2edges([],[]).cvt2edges221,5170 -cvt2edges([V-Children|L0],Edges) :-cvt2edges222,5188 -cvt2edges([V-Children|L0],Edges) :-cvt2edges222,5188 -cvt2edges([V-Children|L0],Edges) :-cvt2edges222,5188 -children2edges([],_,Edges,Edges).children2edges226,5290 -children2edges([],_,Edges,Edges).children2edges226,5290 -children2edges([Child|L0],V,[V-Child|EdgesF],Edges0) :-children2edges227,5324 -children2edges([Child|L0],V,[V-Child|EdgesF],Edges0) :-children2edges227,5324 -children2edges([Child|L0],V,[V-Child|EdgesF],Edges0) :-children2edges227,5324 -dgraph_neighbours(V,Vertices,Children) :-dgraph_neighbours238,5571 -dgraph_neighbours(V,Vertices,Children) :-dgraph_neighbours238,5571 -dgraph_neighbours(V,Vertices,Children) :-dgraph_neighbours238,5571 -dgraph_neighbors(V,Vertices,Children) :-dgraph_neighbors249,5839 -dgraph_neighbors(V,Vertices,Children) :-dgraph_neighbors249,5839 -dgraph_neighbors(V,Vertices,Children) :-dgraph_neighbors249,5839 -add_vertices(Graph, [], Graph).add_vertices252,5914 -add_vertices(Graph, [], Graph).add_vertices252,5914 -add_vertices(Graph, [V|Vertices], NewGraph) :-add_vertices253,5946 -add_vertices(Graph, [V|Vertices], NewGraph) :-add_vertices253,5946 -add_vertices(Graph, [V|Vertices], NewGraph) :-add_vertices253,5946 -dgraph_complement(Vs0,VsF) :-dgraph_complement264,6197 -dgraph_complement(Vs0,VsF) :-dgraph_complement264,6197 -dgraph_complement(Vs0,VsF) :-dgraph_complement264,6197 -complement(Vs,Children,NewChildren) :-complement268,6299 -complement(Vs,Children,NewChildren) :-complement268,6299 -complement(Vs,Children,NewChildren) :-complement268,6299 -dgraph_del_edge(Vs0,V1,V2,Vs1) :-dgraph_del_edge280,6608 -dgraph_del_edge(Vs0,V1,V2,Vs1) :-dgraph_del_edge280,6608 -dgraph_del_edge(Vs0,V1,V2,Vs1) :-dgraph_del_edge280,6608 -dgraph_del_edges(G0, Edges, Gf) :-dgraph_del_edges292,6902 -dgraph_del_edges(G0, Edges, Gf) :-dgraph_del_edges292,6902 -dgraph_del_edges(G0, Edges, Gf) :-dgraph_del_edges292,6902 -continue_del_edges([]) --> [].continue_del_edges296,7006 -continue_del_edges([]) --> [].continue_del_edges296,7006 -continue_del_edges([]) --> [].continue_del_edges296,7006 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges297,7037 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges297,7037 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges297,7037 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex302,7180 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex302,7180 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex302,7180 -del_edges(ToRemove,E0,E) :-del_edges305,7265 -del_edges(ToRemove,E0,E) :-del_edges305,7265 -del_edges(ToRemove,E0,E) :-del_edges305,7265 -dgraph_del_vertex(Vs0, V, Vsf) :-dgraph_del_vertex317,7547 -dgraph_del_vertex(Vs0, V, Vsf) :-dgraph_del_vertex317,7547 -dgraph_del_vertex(Vs0, V, Vsf) :-dgraph_del_vertex317,7547 -delete_edge(Edges0, V, Edges) :-delete_edge321,7642 -delete_edge(Edges0, V, Edges) :-delete_edge321,7642 -delete_edge(Edges0, V, Edges) :-delete_edge321,7642 -dgraph_del_vertices(G0, Vs, GF) :-dgraph_del_vertices333,7969 -dgraph_del_vertices(G0, Vs, GF) :-dgraph_del_vertices333,7969 -dgraph_del_vertices(G0, Vs, GF) :-dgraph_del_vertices333,7969 -delete_all([]) --> [].delete_all340,8205 -delete_all([]) --> [].delete_all340,8205 -delete_all([]) --> [].delete_all340,8205 -delete_all([V|Vs],Vs0,Vsf) :-delete_all341,8228 -delete_all([V|Vs],Vs0,Vsf) :-delete_all341,8228 -delete_all([V|Vs],Vs0,Vsf) :-delete_all341,8228 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges345,8309 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges345,8309 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges345,8309 -dgraph_transpose(Graph, TGraph) :-dgraph_transpose357,8590 -dgraph_transpose(Graph, TGraph) :-dgraph_transpose357,8590 -dgraph_transpose(Graph, TGraph) :-dgraph_transpose357,8590 -transpose([], []) --> [].transpose365,8847 -transpose([], []) --> [].transpose365,8847 -transpose([], []) --> [].transpose365,8847 -transpose([V-Edges|MoreVs], [V|Vs]) -->transpose366,8873 -transpose([V-Edges|MoreVs], [V|Vs]) -->transpose366,8873 -transpose([V-Edges|MoreVs], [V|Vs]) -->transpose366,8873 -transpose_edges([], _V) --> [].transpose_edges370,8966 -transpose_edges([], _V) --> [].transpose_edges370,8966 -transpose_edges([], _V) --> [].transpose_edges370,8966 -transpose_edges(E.Edges, V) -->transpose_edges371,8998 -transpose_edges(E.Edges, V) -->transpose_edges371,8998 -transpose_edges(E.Edges, V) -->transpose_edges371,8998 -dgraph_compose(T1,T2,CT) :-dgraph_compose375,9067 -dgraph_compose(T1,T2,CT) :-dgraph_compose375,9067 -dgraph_compose(T1,T2,CT) :-dgraph_compose375,9067 -compose([],_,[]).compose381,9200 -compose([],_,[]).compose381,9200 -compose([V-Children|Nodes],T2,NewNodes) :-compose382,9218 -compose([V-Children|Nodes],T2,NewNodes) :-compose382,9218 -compose([V-Children|Nodes],T2,NewNodes) :-compose382,9218 -compose2([],_,_,NewNodes,NewNodes).compose2386,9337 -compose2([],_,_,NewNodes,NewNodes).compose2386,9337 -compose2([C|Children],V,T2,NewNodes,NewNodes0) :-compose2387,9373 -compose2([C|Children],V,T2,NewNodes,NewNodes0) :-compose2387,9373 -compose2([C|Children],V,T2,NewNodes,NewNodes0) :-compose2387,9373 -compose3([], _, NewNodes, NewNodes).compose3392,9553 -compose3([], _, NewNodes, NewNodes).compose3392,9553 -compose3([GC|GrandChildren], V, [V-GC|NewNodes], NewNodes0) :-compose3393,9590 -compose3([GC|GrandChildren], V, [V-GC|NewNodes], NewNodes0) :-compose3393,9590 -compose3([GC|GrandChildren], V, [V-GC|NewNodes], NewNodes0) :-compose3393,9590 -dgraph_transitive_closure(G,Closure) :-dgraph_transitive_closure403,9837 -dgraph_transitive_closure(G,Closure) :-dgraph_transitive_closure403,9837 -dgraph_transitive_closure(G,Closure) :-dgraph_transitive_closure403,9837 -continue_closure([], Closure, Closure) :- !.continue_closure407,9938 -continue_closure([], Closure, Closure) :- !.continue_closure407,9938 -continue_closure([], Closure, Closure) :- !.continue_closure407,9938 -continue_closure(Edges, G, Closure) :-continue_closure408,9983 -continue_closure(Edges, G, Closure) :-continue_closure408,9983 -continue_closure(Edges, G, Closure) :-continue_closure408,9983 -transit_graph([],_,[]).transit_graph413,10135 -transit_graph([],_,[]).transit_graph413,10135 -transit_graph([V-V1|Edges],G,NewEdges) :-transit_graph414,10159 -transit_graph([V-V1|Edges],G,NewEdges) :-transit_graph414,10159 -transit_graph([V-V1|Edges],G,NewEdges) :-transit_graph414,10159 -transit_graph2([], _, _, NewEdges, NewEdges).transit_graph2419,10332 -transit_graph2([], _, _, NewEdges, NewEdges).transit_graph2419,10332 -transit_graph2([GC|GrandChildren], V, G, NewEdges, MoreEdges) :-transit_graph2420,10378 -transit_graph2([GC|GrandChildren], V, G, NewEdges, MoreEdges) :-transit_graph2420,10378 -transit_graph2([GC|GrandChildren], V, G, NewEdges, MoreEdges) :-transit_graph2420,10378 -transit_graph2([GC|GrandChildren], V, G, [V-GC|NewEdges], MoreEdges) :-transit_graph2423,10523 -transit_graph2([GC|GrandChildren], V, G, [V-GC|NewEdges], MoreEdges) :-transit_graph2423,10523 -transit_graph2([GC|GrandChildren], V, G, [V-GC|NewEdges], MoreEdges) :-transit_graph2423,10523 -is_edge(V1,V2,G) :-is_edge426,10655 -is_edge(V1,V2,G) :-is_edge426,10655 -is_edge(V1,V2,G) :-is_edge426,10655 -dgraph_symmetric_closure(G,S) :-dgraph_symmetric_closure439,10950 -dgraph_symmetric_closure(G,S) :-dgraph_symmetric_closure439,10950 -dgraph_symmetric_closure(G,S) :-dgraph_symmetric_closure439,10950 -invert_edges([], []).invert_edges444,11086 -invert_edges([], []).invert_edges444,11086 -invert_edges([V1-V2|Edges], [V2-V1|InvertedEdges]) :-invert_edges445,11108 -invert_edges([V1-V2|Edges], [V2-V1|InvertedEdges]) :-invert_edges445,11108 -invert_edges([V1-V2|Edges], [V2-V1|InvertedEdges]) :-invert_edges445,11108 -dgraph_top_sort(G, Q) :-dgraph_top_sort455,11323 -dgraph_top_sort(G, Q) :-dgraph_top_sort455,11323 -dgraph_top_sort(G, Q) :-dgraph_top_sort455,11323 -dgraph_top_sort(G, Q, RQ0) :-dgraph_top_sort465,11546 -dgraph_top_sort(G, Q, RQ0) :-dgraph_top_sort465,11546 -dgraph_top_sort(G, Q, RQ0) :-dgraph_top_sort465,11546 -invert_and_link([], [], [], [], []).invert_and_link479,11887 -invert_and_link([], [], [], [], []).invert_and_link479,11887 -invert_and_link([V-Vs|Edges], [V-NVs|ExtraEdges], UnsortedInvertedEdges, [V|AllVs],[_|Q]) :-invert_and_link480,11924 -invert_and_link([V-Vs|Edges], [V-NVs|ExtraEdges], UnsortedInvertedEdges, [V|AllVs],[_|Q]) :-invert_and_link480,11924 -invert_and_link([V-Vs|Edges], [V-NVs|ExtraEdges], UnsortedInvertedEdges, [V|AllVs],[_|Q]) :-invert_and_link480,11924 -inv_links([],[],_,UnsortedInvertedEdges,UnsortedInvertedEdges).inv_links484,12160 -inv_links([],[],_,UnsortedInvertedEdges,UnsortedInvertedEdges).inv_links484,12160 -inv_links([V2|Vs],[l(V2,A,B,S,E)|VLnks],V1,[V2-e(A,B,S,E)|UnsortedInvertedEdges],UnsortedInvertedEdges0) :-inv_links485,12224 -inv_links([V2|Vs],[l(V2,A,B,S,E)|VLnks],V1,[V2-e(A,B,S,E)|UnsortedInvertedEdges],UnsortedInvertedEdges0) :-inv_links485,12224 -inv_links([V2|Vs],[l(V2,A,B,S,E)|VLnks],V1,[V2-e(A,B,S,E)|UnsortedInvertedEdges],UnsortedInvertedEdges0) :-inv_links485,12224 -dup([], []).dup488,12403 -dup([], []).dup488,12403 -dup([_|AllVs], [_|Q]) :-dup489,12416 -dup([_|AllVs], [_|Q]) :-dup489,12416 -dup([_|AllVs], [_|Q]) :-dup489,12416 -start_queue([], [], RQ, RQ).start_queue492,12458 -start_queue([], [], RQ, RQ).start_queue492,12458 -start_queue([V|AllVs], [VV-e(S,B,S,E)|InvertedEdges], Q, RQ) :- V == VV, !,start_queue493,12487 -start_queue([V|AllVs], [VV-e(S,B,S,E)|InvertedEdges], Q, RQ) :- V == VV, !,start_queue493,12487 -start_queue([V|AllVs], [VV-e(S,B,S,E)|InvertedEdges], Q, RQ) :- V == VV, !,start_queue493,12487 -start_queue([V|AllVs], InvertedEdges, [V|Q], RQ) :-start_queue496,12664 -start_queue([V|AllVs], InvertedEdges, [V|Q], RQ) :-start_queue496,12664 -start_queue([V|AllVs], InvertedEdges, [V|Q], RQ) :-start_queue496,12664 -link_edges([V-e(A,B,S,E)|InvertedEdges], VV, A, S, E, RemEdges) :- V == VV, !,link_edges499,12760 -link_edges([V-e(A,B,S,E)|InvertedEdges], VV, A, S, E, RemEdges) :- V == VV, !,link_edges499,12760 -link_edges([V-e(A,B,S,E)|InvertedEdges], VV, A, S, E, RemEdges) :- V == VV, !,link_edges499,12760 -link_edges(RemEdges, _, A, _, A, RemEdges).link_edges501,12890 -link_edges(RemEdges, _, A, _, A, RemEdges).link_edges501,12890 -continue_queue([], _, RQ0, RQ0).continue_queue503,12935 -continue_queue([], _, RQ0, RQ0).continue_queue503,12935 -continue_queue([V|Q], LinkedG, RQ, RQ0) :-continue_queue504,12968 -continue_queue([V|Q], LinkedG, RQ, RQ0) :-continue_queue504,12968 -continue_queue([V|Q], LinkedG, RQ, RQ0) :-continue_queue504,12968 -close_links([], RQ, RQ).close_links510,13165 -close_links([], RQ, RQ).close_links510,13165 -close_links([l(V,A,A,S,E)|Links], RQ, RQ0) :-close_links511,13190 -close_links([l(V,A,A,S,E)|Links], RQ, RQ0) :-close_links511,13190 -close_links([l(V,A,A,S,E)|Links], RQ, RQ0) :-close_links511,13190 -ugraph_to_dgraph(UG, DG) :-ugraph_to_dgraph523,13502 -ugraph_to_dgraph(UG, DG) :-ugraph_to_dgraph523,13502 -ugraph_to_dgraph(UG, DG) :-ugraph_to_dgraph523,13502 -dgraph_to_ugraph(DG, UG) :-dgraph_to_ugraph535,13810 -dgraph_to_ugraph(DG, UG) :-dgraph_to_ugraph535,13810 -dgraph_to_ugraph(DG, UG) :-dgraph_to_ugraph535,13810 -dgraph_edge(N1, N2, G) :-dgraph_edge545,13972 -dgraph_edge(N1, N2, G) :-dgraph_edge545,13972 -dgraph_edge(N1, N2, G) :-dgraph_edge545,13972 -dgraph_min_path(V1, V2, Graph, Path, Cost) :-dgraph_min_path558,14259 -dgraph_min_path(V1, V2, Graph, Path, Cost) :-dgraph_min_path558,14259 -dgraph_min_path(V1, V2, Graph, Path, Cost) :-dgraph_min_path558,14259 -dgraph_max_path(V1, V2, Graph, Path, Cost) :-dgraph_max_path571,14601 -dgraph_max_path(V1, V2, Graph, Path, Cost) :-dgraph_max_path571,14601 -dgraph_max_path(V1, V2, Graph, Path, Cost) :-dgraph_max_path571,14601 -dgraph_min_paths(V1, Graph, Paths) :-dgraph_min_paths583,14896 -dgraph_min_paths(V1, Graph, Paths) :-dgraph_min_paths583,14896 -dgraph_min_paths(V1, Graph, Paths) :-dgraph_min_paths583,14896 -dgraph_path(V1, V2, Graph, Path) :-dgraph_path594,15189 -dgraph_path(V1, V2, Graph, Path) :-dgraph_path594,15189 -dgraph_path(V1, V2, Graph, Path) :-dgraph_path594,15189 -dgraph_path_children([V1|_], V2, _E1, _Graph, []) :- V1 == V2.dgraph_path_children599,15326 -dgraph_path_children([V1|_], V2, _E1, _Graph, []) :- V1 == V2.dgraph_path_children599,15326 -dgraph_path_children([V1|_], V2, _E1, _Graph, []) :- V1 == V2.dgraph_path_children599,15326 -dgraph_path_children([V1|_], V2, E1, Graph, [V1|Path]) :-dgraph_path_children600,15389 -dgraph_path_children([V1|_], V2, E1, Graph, [V1|Path]) :-dgraph_path_children600,15389 -dgraph_path_children([V1|_], V2, E1, Graph, [V1|Path]) :-dgraph_path_children600,15389 -dgraph_path_children([_|Children], V2, E1, Graph, Path) :-dgraph_path_children606,15600 -dgraph_path_children([_|Children], V2, E1, Graph, Path) :-dgraph_path_children606,15600 -dgraph_path_children([_|Children], V2, E1, Graph, Path) :-dgraph_path_children606,15600 -do_path([], _, _, []).do_path610,15715 -do_path([], _, _, []).do_path610,15715 -do_path([C|Children], G, SoFar, Path) :-do_path611,15738 -do_path([C|Children], G, SoFar, Path) :-do_path611,15738 -do_path([C|Children], G, SoFar, Path) :-do_path611,15738 -do_children([V|_], G, SoFar, [V|Path]) :-do_children614,15824 -do_children([V|_], G, SoFar, [V|Path]) :-do_children614,15824 -do_children([V|_], G, SoFar, [V|Path]) :-do_children614,15824 -do_children([_|Children], G, SoFar, Path) :-do_children619,15998 -do_children([_|Children], G, SoFar, Path) :-do_children619,15998 -do_children([_|Children], G, SoFar, Path) :-do_children619,15998 -dgraph_path(V, G, [V|P]) :-dgraph_path630,16223 -dgraph_path(V, G, [V|P]) :-dgraph_path630,16223 -dgraph_path(V, G, [V|P]) :-dgraph_path630,16223 -dgraph_isomorphic(Vs, Vs2, G1, G2) :-dgraph_isomorphic644,16523 -dgraph_isomorphic(Vs, Vs2, G1, G2) :-dgraph_isomorphic644,16523 -dgraph_isomorphic(Vs, Vs2, G1, G2) :-dgraph_isomorphic644,16523 -mapping([],[],Map,Map).mapping653,16752 -mapping([],[],Map,Map).mapping653,16752 -mapping([V1|Vs],[V2|Vs2],Map0,Map) :-mapping654,16776 -mapping([V1|Vs],[V2|Vs2],Map0,Map) :-mapping654,16776 -mapping([V1|Vs],[V2|Vs2],Map0,Map) :-mapping654,16776 -translate_edges([],_,[]).translate_edges660,16874 -translate_edges([],_,[]).translate_edges660,16874 -translate_edges([V1-V2|Edges],Map,[NV1-NV2|TEdges]) :-translate_edges661,16900 -translate_edges([V1-V2|Edges],Map,[NV1-NV2|TEdges]) :-translate_edges661,16900 -translate_edges([V1-V2|Edges],Map,[NV1-NV2|TEdges]) :-translate_edges661,16900 -dgraph_reachable(V, G, Edges) :-dgraph_reachable674,17185 -dgraph_reachable(V, G, Edges) :-dgraph_reachable674,17185 -dgraph_reachable(V, G, Edges) :-dgraph_reachable674,17185 -reachable([], Done, Done, _, Edges, Edges).reachable679,17328 -reachable([], Done, Done, _, Edges, Edges).reachable679,17328 -reachable([V|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable680,17372 -reachable([V|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable680,17372 -reachable([V|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable680,17372 -reachable([V|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable683,17514 -reachable([V|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable683,17514 -reachable([V|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable683,17514 -dgraph_leaves(Graph, Vertices) :-dgraph_leaves697,17866 -dgraph_leaves(Graph, Vertices) :-dgraph_leaves697,17866 -dgraph_leaves(Graph, Vertices) :-dgraph_leaves697,17866 -vertices_without_children([], []).vertices_without_children701,17971 -vertices_without_children([], []).vertices_without_children701,17971 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children(_V-[_|_].Pairs, Vertices) :-vertices_without_children704,18106 -vertices_without_children(_V-[_|_].Pairs, Vertices) :-vertices_without_children704,18106 -vertices_without_children(_V-[_|_].Pairs, Vertices) :-vertices_without_children704,18106 - -library/dialect/bprolog/actionrules.pl,15689 -:- dynamic ar_term/2, extra_ar_term/2.dynamic46,1682 -:- dynamic ar_term/2, extra_ar_term/2.dynamic46,1682 -register_event(event(X,_),G) :- add_attr(X,'$$event',G).register_event52,1918 -register_event(event(X,_),G) :- add_attr(X,'$$event',G).register_event52,1918 -register_event(event(X,_),G) :- add_attr(X,'$$event',G).register_event52,1918 -register_event(event(X,_),G) :- add_attr(X,'$$event',G).register_event52,1918 -register_event(event(X,_),G) :- add_attr(X,'$$event',G).register_event52,1918 -register_event(ins(X),G) :- add_attr(X,'$$ins',G).register_event53,1975 -register_event(ins(X),G) :- add_attr(X,'$$ins',G).register_event53,1975 -register_event(ins(X),G) :- add_attr(X,'$$ins',G).register_event53,1975 -register_event(ins(X),G) :- add_attr(X,'$$ins',G).register_event53,1975 -register_event(ins(X),G) :- add_attr(X,'$$ins',G).register_event53,1975 -register_event(generated,_). % ignoreregister_event54,2026 -register_event(generated,_). % ignoreregister_event54,2026 -add_attr(X,Mod,A) :-add_attr56,2068 -add_attr(X,Mod,A) :-add_attr56,2068 -add_attr(X,Mod,A) :-add_attr56,2068 -post(event(X,Mes)) :- !,post64,2178 -post(event(X,Mes)) :- !,post64,2178 -post(event(X,Mes)) :- !,post64,2178 -post(ins(X)) :- !,post74,2360 -post(ins(X)) :- !,post74,2360 -post(ins(X)) :- !,post74,2360 -post(Event) :-post84,2522 -post(Event) :-post84,2522 -post(Event) :-post84,2522 -post_event(X,Mes) :-post_event87,2577 -post_event(X,Mes) :-post_event87,2577 -post_event(X,Mes) :-post_event87,2577 -post_event(X,_) :-post_event89,2657 -post_event(X,_) :-post_event89,2657 -post_event(X,_) :-post_event89,2657 -post_event_df(X,Mes) :-post_event_df96,2765 -post_event_df(X,Mes) :-post_event_df96,2765 -post_event_df(X,Mes) :-post_event_df96,2765 -post_event_df(_,_).post_event_df98,2845 -post_event_df(_,_).post_event_df98,2845 -post_event_df(X,Alive,Mes) :-post_event_df100,2866 -post_event_df(X,Alive,Mes) :-post_event_df100,2866 -post_event_df(X,Alive,Mes) :-post_event_df100,2866 -post_event_df(_,_,_).post_event_df102,2957 -post_event_df(_,_,_).post_event_df102,2957 -'$$ins':attr_unify_hook(AttrX,Y) :-attr_unify_hook104,2980 -'$$event':attr_unify_hook(_,_).attr_unify_hook117,3196 -call_list_rev(Goals) :-call_list_rev119,3229 -call_list_rev(Goals) :-call_list_rev119,3229 -call_list_rev(Goals) :-call_list_rev119,3229 -call_list([]).call_list123,3290 -call_list([]).call_list123,3290 -call_list([G|Gs]) :-call_list124,3305 -call_list([G|Gs]) :-call_list124,3305 -call_list([G|Gs]) :-call_list124,3305 -activate_agents_rev(Goals,M) :-activate_agents_rev128,3353 -activate_agents_rev(Goals,M) :-activate_agents_rev128,3353 -activate_agents_rev(Goals,M) :-activate_agents_rev128,3353 -activate_agents([],_).activate_agents132,3430 -activate_agents([],_).activate_agents132,3430 -activate_agents([G|Gs],Mes) :-activate_agents133,3453 -activate_agents([G|Gs],Mes) :-activate_agents133,3453 -activate_agents([G|Gs],Mes) :-activate_agents133,3453 -activate_agents([],_,_).activate_agents139,3561 -activate_agents([],_,_).activate_agents139,3561 -activate_agents([G|Gs],Alive,Mes) :-activate_agents140,3586 -activate_agents([G|Gs],Alive,Mes) :-activate_agents140,3586 -activate_agents([G|Gs],Alive,Mes) :-activate_agents140,3586 -ars2p(ARs,Det,Head,Program,Errors,TailProgram,TailErrors) :-ars2p154,3872 -ars2p(ARs,Det,Head,Program,Errors,TailProgram,TailErrors) :-ars2p154,3872 -ars2p(ARs,Det,Head,Program,Errors,TailProgram,TailErrors) :-ars2p154,3872 -genfirstclause(NewARs,Det,NewSkel,Skel,Program,Errors,TailProgram,TailErrors) :-genfirstclause164,4273 -genfirstclause(NewARs,Det,NewSkel,Skel,Program,Errors,TailProgram,TailErrors) :-genfirstclause164,4273 -genfirstclause(NewARs,Det,NewSkel,Skel,Program,Errors,TailProgram,TailErrors) :-genfirstclause164,4273 -build_conditional(det, Guard, B, (Guard -> B)).build_conditional170,4497 -build_conditional(det, Guard, B, (Guard -> B)).build_conditional170,4497 -build_conditional(nondet, Guard, B, (Guard, B)).build_conditional171,4545 -build_conditional(nondet, Guard, B, (Guard, B)).build_conditional171,4545 -makefirstbody([ar(Head,Guard,Events,B)|R],Det,Closure,Bodys,Errors,TailErrors) :-makefirstbody173,4595 -makefirstbody([ar(Head,Guard,Events,B)|R],Det,Closure,Bodys,Errors,TailErrors) :-makefirstbody173,4595 -makefirstbody([ar(Head,Guard,Events,B)|R],Det,Closure,Bodys,Errors,TailErrors) :-makefirstbody173,4595 -gensecondclause(NewARs,Det,NewSkel,Alive,Program,Errors,TailProgram,Errors) :-gensecondclause194,5185 -gensecondclause(NewARs,Det,NewSkel,Alive,Program,Errors,TailProgram,Errors) :-gensecondclause194,5185 -gensecondclause(NewARs,Det,NewSkel,Alive,Program,Errors,TailProgram,Errors) :-gensecondclause194,5185 -makesecondbody([ar(_,Guard,Events,B)|R],Det,NewSkel,Bodys,Alive) :-makesecondbody199,5407 -makesecondbody([ar(_,Guard,Events,B)|R],Det,NewSkel,Bodys,Alive) :-makesecondbody199,5407 -makesecondbody([ar(_,Guard,Events,B)|R],Det,NewSkel,Bodys,Alive) :-makesecondbody199,5407 -check_events([],_,E,E).check_events212,5723 -check_events([],_,E,E).check_events212,5723 -check_events([Event|R],S,E,TailE) :-check_events213,5747 -check_events([Event|R],S,E,TailE) :-check_events213,5747 -check_events([Event|R],S,E,TailE) :-check_events213,5747 -okevent(ins(X)) :- !, var(X).okevent221,5904 -okevent(ins(X)) :- !, var(X).okevent221,5904 -okevent(ins(X)) :- !, var(X).okevent221,5904 -okevent(ins(X)) :- !, var(X).okevent221,5904 -okevent(ins(X)) :- !, var(X).okevent221,5904 -okevent(event(X,M)) :- !, var(X), var(M).okevent222,5934 -okevent(event(X,M)) :- !, var(X), var(M).okevent222,5934 -okevent(event(X,M)) :- !, var(X), var(M).okevent222,5934 -okevent(event(X,M)) :- !, var(X), var(M).okevent222,5934 -okevent(event(X,M)) :- !, var(X), var(M).okevent222,5934 -okevent(generated).okevent223,5976 -okevent(generated).okevent223,5976 -findmess([],_).findmess225,5997 -findmess([],_).findmess225,5997 -findmess([ar(_,_,Events,_)|R],Mes) :-findmess226,6013 -findmess([ar(_,_,Events,_)|R],Mes) :-findmess226,6013 -findmess([ar(_,_,Events,_)|R],Mes) :-findmess226,6013 -findmess2([],_).findmess2230,6094 -findmess2([],_).findmess2230,6094 -findmess2([A|R],Mes) :-findmess2231,6111 -findmess2([A|R],Mes) :-findmess2231,6111 -findmess2([A|R],Mes) :-findmess2231,6111 -copyskel(T1,T2) :-copyskel239,6205 -copyskel(T1,T2) :-copyskel239,6205 -copyskel(T1,T2) :-copyskel239,6205 -cleanheads([],[],_).cleanheads243,6261 -cleanheads([],[],_).cleanheads243,6261 -cleanheads([ar(Head,Conds,Events,Body)|R],[ar(NewHead,NewConds,Events,Body)|S],Skel) :-cleanheads244,6282 -cleanheads([ar(Head,Conds,Events,Body)|R],[ar(NewHead,NewConds,Events,Body)|S],Skel) :-cleanheads244,6282 -cleanheads([ar(Head,Conds,Events,Body)|R],[ar(NewHead,NewConds,Events,Body)|S],Skel) :-cleanheads244,6282 -conds_to_goals([], true) :- !.conds_to_goals252,6564 -conds_to_goals([], true) :- !.conds_to_goals252,6564 -conds_to_goals([], true) :- !.conds_to_goals252,6564 -conds_to_goals(C.LNewConds, (C,NewConds0)) :- !,conds_to_goals253,6595 -conds_to_goals(C.LNewConds, (C,NewConds0)) :- !,conds_to_goals253,6595 -conds_to_goals(C.LNewConds, (C,NewConds0)) :- !,conds_to_goals253,6595 -conds_to_goals(C,C).conds_to_goals255,6690 -conds_to_goals(C,C).conds_to_goals255,6690 -makenewhead(Head,NewHead,Unies) :-makenewhead257,6712 -makenewhead(Head,NewHead,Unies) :-makenewhead257,6712 -makenewhead(Head,NewHead,Unies) :-makenewhead257,6712 -makeunies([],_,[]).makeunies264,6869 -makeunies([],_,[]).makeunies264,6869 -makeunies([X|R],[Y|S],Us) :-makeunies265,6889 -makeunies([X|R],[Y|S],Us) :-makeunies265,6889 -makeunies([X|R],[Y|S],Us) :-makeunies265,6889 -get_arinfo(AR,ARInfo,Head) :-get_arinfo275,7056 -get_arinfo(AR,ARInfo,Head) :-get_arinfo275,7056 -get_arinfo(AR,ARInfo,Head) :-get_arinfo275,7056 -get_arinfo(AR,ARInfo,Head) :-get_arinfo283,7275 -get_arinfo(AR,ARInfo,Head) :-get_arinfo283,7275 -get_arinfo(AR,ARInfo,Head) :-get_arinfo283,7275 -get_arinfo(AR,ARInfo,Head) :-get_arinfo291,7495 -get_arinfo(AR,ARInfo,Head) :-get_arinfo291,7495 -get_arinfo(AR,ARInfo,Head) :-get_arinfo291,7495 -findcondevents((A,B),(A,As),Ts) :- !,findcondevents296,7630 -findcondevents((A,B),(A,As),Ts) :- !,findcondevents296,7630 -findcondevents((A,B),(A,As),Ts) :- !,findcondevents296,7630 -findcondevents({Trs},true,Ts) :- !,findcondevents298,7694 -findcondevents({Trs},true,Ts) :- !,findcondevents298,7694 -findcondevents({Trs},true,Ts) :- !,findcondevents298,7694 -findcondevents(A,A,[]).findcondevents300,7751 -findcondevents(A,A,[]).findcondevents300,7751 -makeevents((A,B),[A|R]) :- !, makeevents(B,R).makeevents302,7776 -makeevents((A,B),[A|R]) :- !, makeevents(B,R).makeevents302,7776 -makeevents((A,B),[A|R]) :- !, makeevents(B,R).makeevents302,7776 -makeevents((A,B),[A|R]) :- !, makeevents(B,R).makeevents302,7776 -makeevents((A,B),[A|R]) :- !, makeevents(B,R).makeevents302,7776 -makeevents(A,[A]).makeevents303,7823 -makeevents(A,[A]).makeevents303,7823 -samehead(A,B) :-samehead305,7843 -samehead(A,B) :-samehead305,7843 -samehead(A,B) :-samehead305,7843 -makeagentname(N,Out) :-makeagentname309,7895 -makeagentname(N,Out) :-makeagentname309,7895 -makeagentname(N,Out) :-makeagentname309,7895 -mkregistergoals([],true,_).mkregistergoals315,7993 -mkregistergoals([],true,_).mkregistergoals315,7993 -mkregistergoals([X|R],Register,Skel) :-mkregistergoals316,8021 -mkregistergoals([X|R],Register,Skel) :-mkregistergoals316,8021 -mkregistergoals([X|R],Register,Skel) :-mkregistergoals316,8021 -removetrue(true,true) :- !.removetrue324,8202 -removetrue(true,true) :- !.removetrue324,8202 -removetrue(true,true) :- !.removetrue324,8202 -removetrue((true,A),AA) :- !, removetrue(A,AA).removetrue325,8230 -removetrue((true,A),AA) :- !, removetrue(A,AA).removetrue325,8230 -removetrue((true,A),AA) :- !, removetrue(A,AA).removetrue325,8230 -removetrue((true,A),AA) :- !, removetrue(A,AA).removetrue325,8230 -removetrue((true,A),AA) :- !, removetrue(A,AA).removetrue325,8230 -removetrue((A,true),AA) :- !, removetrue(A,AA).removetrue326,8278 -removetrue((A,true),AA) :- !, removetrue(A,AA).removetrue326,8278 -removetrue((A,true),AA) :- !, removetrue(A,AA).removetrue326,8278 -removetrue((A,true),AA) :- !, removetrue(A,AA).removetrue326,8278 -removetrue((A,true),AA) :- !, removetrue(A,AA).removetrue326,8278 -removetrue((A,B),(AA,BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue327,8326 -removetrue((A,B),(AA,BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue327,8326 -removetrue((A,B),(AA,BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue327,8326 -removetrue((A,B),(AA,BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue327,8326 -removetrue((A,B),(AA,BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue327,8326 -removetrue((A->B),(AA->BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue328,8394 -removetrue((A->B),(AA->BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue328,8394 -removetrue((A->B),(AA->BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue328,8394 -removetrue((A->B),(AA->BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue328,8394 -removetrue((A->B),(AA->BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue328,8394 -removetrue((A;B),(AA;BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue329,8464 -removetrue((A;B),(AA;BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue329,8464 -removetrue((A;B),(AA;BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue329,8464 -removetrue((A;B),(AA;BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue329,8464 -removetrue((A;B),(AA;BB)) :- !, removetrue(A,AA), removetrue(B,BB).removetrue329,8464 -removetrue(X,X).removetrue330,8532 -removetrue(X,X).removetrue330,8532 -ar_translate([],_,[],[]).ar_translate333,8551 -ar_translate([],_,[],[]).ar_translate333,8551 -ar_translate([AR|ARs],Module,Program,Errors) :-ar_translate334,8577 -ar_translate([AR|ARs],Module,Program,Errors) :-ar_translate334,8577 -ar_translate([AR|ARs],Module,Program,Errors) :-ar_translate334,8577 -nondet_ar_translate([],_,Program,Program,[]).nondet_ar_translate341,8890 -nondet_ar_translate([],_,Program,Program,[]).nondet_ar_translate341,8890 -nondet_ar_translate([AR|ARs],Module,Program,EndProgram,Errors) :-nondet_ar_translate342,8936 -nondet_ar_translate([AR|ARs],Module,Program,EndProgram,Errors) :-nondet_ar_translate342,8936 -nondet_ar_translate([AR|ARs],Module,Program,EndProgram,Errors) :-nondet_ar_translate342,8936 -collect_ars_same_head([],_,[],[]).collect_ars_same_head348,9238 -collect_ars_same_head([],_,[],[]).collect_ars_same_head348,9238 -collect_ars_same_head([AR1|ARs],Head,SameHeadARs,RestARs) :-collect_ars_same_head349,9273 -collect_ars_same_head([AR1|ARs],Head,SameHeadARs,RestARs) :-collect_ars_same_head349,9273 -collect_ars_same_head([AR1|ARs],Head,SameHeadARs,RestARs) :-collect_ars_same_head349,9273 -get_head(ar(Head,_Conds,_Events,_Body),Head).get_head359,9589 -get_head(ar(Head,_Conds,_Events,_Body),Head).get_head359,9589 -same_head(T1,T2) :-same_head361,9636 -same_head(T1,T2) :-same_head361,9636 -same_head(T1,T2) :-same_head361,9636 -ar_expand(Term, []) :-ar_expand367,9767 -ar_expand(Term, []) :-ar_expand367,9767 -ar_expand(Term, []) :-ar_expand367,9767 -ar_expand(Term, []) :-ar_expand372,9903 -ar_expand(Term, []) :-ar_expand372,9903 -ar_expand(Term, []) :-ar_expand372,9903 -ar_expand(Term, []) :-ar_expand377,10045 -ar_expand(Term, []) :-ar_expand377,10045 -ar_expand(Term, []) :-ar_expand377,10045 -ar_expand(Term, []) :-ar_expand382,10190 -ar_expand(Term, []) :-ar_expand382,10190 -ar_expand(Term, []) :-ar_expand382,10190 -ar_expand(Head, []) :-ar_expand389,10421 -ar_expand(Head, []) :-ar_expand389,10421 -ar_expand(Head, []) :-ar_expand389,10421 -ar_expand(end_of_file, FinalProgram) :-ar_expand396,10628 -ar_expand(end_of_file, FinalProgram) :-ar_expand396,10628 -ar_expand(end_of_file, FinalProgram) :-ar_expand396,10628 -compile_ar(File, FinalProgram) :-compile_ar402,10822 -compile_ar(File, FinalProgram) :-compile_ar402,10822 -compile_ar(File, FinalProgram) :-compile_ar402,10822 -compile_ar(_File, []).compile_ar414,11157 -compile_ar(_File, []).compile_ar414,11157 -compile_nondet_ar(File, FinalProgram, StartProgram) :-compile_nondet_ar416,11181 -compile_nondet_ar(File, FinalProgram, StartProgram) :-compile_nondet_ar416,11181 -compile_nondet_ar(File, FinalProgram, StartProgram) :-compile_nondet_ar416,11181 -compile_nondet_ar(_File, FinalProgram, FinalProgram).compile_nondet_ar427,11527 -compile_nondet_ar(_File, FinalProgram, FinalProgram).compile_nondet_ar427,11527 -report_errors(Errors) :- throw(action_rule_error(Errors)). % for nowreport_errors430,11583 -report_errors(Errors) :- throw(action_rule_error(Errors)). % for nowreport_errors430,11583 -report_errors(Errors) :- throw(action_rule_error(Errors)). % for nowreport_errors430,11583 -report_errors(Errors) :- throw(action_rule_error(Errors)). % for nowreport_errors430,11583 -report_errors(Errors) :- throw(action_rule_error(Errors)). % for nowreport_errors430,11583 -extra_ars(ar(Head,_,_,_), LF, L0) :-extra_ars432,11653 -extra_ars(ar(Head,_,_,_), LF, L0) :-extra_ars432,11653 -extra_ars(ar(Head,_,_,_), LF, L0) :-extra_ars432,11653 -:- multifile user:term_expansion/2.multifile442,11918 -:- multifile user:term_expansion/2.multifile442,11918 -:- dynamic user:term_expansion/2.dynamic443,11954 -:- dynamic user:term_expansion/2.dynamic443,11954 -user:term_expansion(In, Out) :-term_expansion445,11991 -user:term_expansion(In, Out) :-term_expansion445,11991 - -library/dialect/bprolog/arrays.yap,1423 -new_array(X, Dim.Dims) :-new_array6,126 -new_array(X, Dim.Dims) :-new_array6,126 -new_array(X, Dim.Dims) :-new_array6,126 -recurse_new_array(_, _, [], _X) :- !.recurse_new_array10,224 -recurse_new_array(_, _, [], _X) :- !.recurse_new_array10,224 -recurse_new_array(_, _, [], _X) :- !.recurse_new_array10,224 -recurse_new_array(Dim, Dim, _Dims, _X) :- !.recurse_new_array11,262 -recurse_new_array(Dim, Dim, _Dims, _X) :- !.recurse_new_array11,262 -recurse_new_array(Dim, Dim, _Dims, _X) :- !.recurse_new_array11,262 -recurse_new_array(I0, Dim, Dims, X) :-recurse_new_array12,307 -recurse_new_array(I0, Dim, Dims, X) :-recurse_new_array12,307 -recurse_new_array(I0, Dim, Dims, X) :-recurse_new_array12,307 -a2_new(X, Dim1, Dim2) :-a2_new18,466 -a2_new(X, Dim1, Dim2) :-a2_new18,466 -a2_new(X, Dim1, Dim2) :-a2_new18,466 -a2_new(X, Dim1, Dim2, Dim3) :-a2_new22,570 -a2_new(X, Dim1, Dim2, Dim3) :-a2_new22,570 -a2_new(X, Dim1, Dim2, Dim3) :-a2_new22,570 -is_array(X) :-is_array26,681 -is_array(X) :-is_array26,681 -is_array(X) :-is_array26,681 -'$aget'(A,[],A).$aget29,727 -'$aget'(A,[],A)./p,predicate,predicate definition29,727 -'$aget'(A,[],A).$aget29,727 -'$aget'(A,I.Is,A) :-$aget30,744 -'$aget'(A,I.Is,A) :-$aget30,744 -'$aget'(A,I.Is,A) :-$aget30,744 -array_to_list(A, List) :-array_to_list34,816 -array_to_list(A, List) :-array_to_list34,816 -array_to_list(A, List) :-array_to_list34,816 - -library/dialect/bprolog/compile_foreach.pl,6277 -test:-test21,758 -compile_foreach(File):-compile_foreach38,1656 -compile_foreach(File):-compile_foreach38,1656 -compile_foreach(File):-compile_foreach38,1656 -compile_foreach(Cls,NCls):-compile_foreach43,1831 -compile_foreach(Cls,NCls):-compile_foreach43,1831 -compile_foreach(Cls,NCls):-compile_foreach43,1831 -retrieve_new_cls([],[]).retrieve_new_cls49,2013 -retrieve_new_cls([],[]).retrieve_new_cls49,2013 -retrieve_new_cls([pred(_,_,_,_,_,Cls)|Preds],NCls):-retrieve_new_cls50,2038 -retrieve_new_cls([pred(_,_,_,_,_,Cls)|Preds],NCls):-retrieve_new_cls50,2038 -retrieve_new_cls([pred(_,_,_,_,_,Cls)|Preds],NCls):-retrieve_new_cls50,2038 -goal_contains_foreach(G):-goal_contains_foreach69,2756 -goal_contains_foreach(G):-goal_contains_foreach69,2756 -goal_contains_foreach(G):-goal_contains_foreach69,2756 -'$change_list_comprehension_to_foreach_cmptime'(T,I,Is,CallForeach,L):-$change_list_comprehension_to_foreach_cmptime144,5525 -'$change_list_comprehension_to_foreach_cmptime'(T,I,Is,CallForeach,L):-$change_list_comprehension_to_foreach_cmptime144,5525 -'$change_list_comprehension_to_foreach_cmptime'(T,I,Is,CallForeach,L):-$change_list_comprehension_to_foreach_cmptime144,5525 -compile_foreach_goal(G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_goal220,9127 -compile_foreach_goal(G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_goal220,9127 -compile_foreach_goal(G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_goal220,9127 -compile_foreach(Iterators,LocalVars,ACs,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach228,9424 -compile_foreach(Iterators,LocalVars,ACs,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach228,9424 -compile_foreach(Iterators,LocalVars,ACs,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach228,9424 -compile_foreach_range_upto_1(I,LExp,UExp,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_range_upto_1247,10731 -compile_foreach_range_upto_1(I,LExp,UExp,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_range_upto_1247,10731 -compile_foreach_range_upto_1(I,LExp,UExp,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_range_upto_1247,10731 -compile_foreach_range_downto_1(I,UExp,LExp,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_range_downto_1279,12180 -compile_foreach_range_downto_1(I,UExp,LExp,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_range_downto_1279,12180 -compile_foreach_range_downto_1(I,UExp,LExp,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_range_downto_1279,12180 -compile_foreach_range_step(I,B1,B2,Step,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_range_step311,13632 -compile_foreach_range_step(I,B1,B2,Step,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_range_step311,13632 -compile_foreach_range_step(I,B1,B2,Step,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_range_step311,13632 -compile_foreach_lst(I,Lst,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_lst350,15309 -compile_foreach_lst(I,Lst,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_lst350,15309 -compile_foreach_lst(I,Lst,IteratorsR,LocalVars,ACMap,G,NG,PrefixName,ProgTab,DumNo,DumNoR):-compile_foreach_lst350,15309 -extract_arg_vars([Var|Vars],I,Iterators,LocalVars,ACMap,Args,ArgsR):-true ?extract_arg_vars406,17768 -extract_arg_vars([Var|Vars],I,Iterators,LocalVars,ACMap,Args,ArgsR):-true ?extract_arg_vars406,17768 -extract_arg_vars([Var|Vars],I,Iterators,LocalVars,ACMap,Args,ArgsR):-true ?extract_arg_vars406,17768 -is_a_loop_var(Var,(I in _)):-true ? '$occur'(Var,I),!.is_a_loop_var417,18246 -is_a_loop_var(Var,(I in _)):-true ? '$occur'(Var,I),!.is_a_loop_var417,18246 -is_a_loop_var(Var,(I in _)):-true ? '$occur'(Var,I),!.is_a_loop_var417,18246 -is_a_loop_var(Var,(Iterators1,_)):-true ?is_a_loop_var418,18301 -is_a_loop_var(Var,(Iterators1,_)):-true ?is_a_loop_var418,18301 -is_a_loop_var(Var,(Iterators1,_)):-true ?is_a_loop_var418,18301 -initial_acs_map([AC|ACs],[Triplet|ACMap],InitCode,FinCode):-initial_acs_map427,18654 -initial_acs_map([AC|ACs],[Triplet|ACMap],InitCode,FinCode):-initial_acs_map427,18654 -initial_acs_map([AC|ACs],[Triplet|ACMap],InitCode,FinCode):-initial_acs_map427,18654 -initial_ac_map(ac(Name,InitVal),ac_inout(Name,NameIn,NameOut),(NameIn=InitVal),(Name=NameOut)).initial_ac_map436,19003 -initial_ac_map(ac(Name,InitVal),ac_inout(Name,NameIn,NameOut),(NameIn=InitVal),(Name=NameOut)).initial_ac_map436,19003 -initial_ac_map(ac1(Name,FinVal),ac_inout(Name,NameIn,NameOut),(Name=NameIn),(NameOut=FinVal)).initial_ac_map437,19099 -initial_ac_map(ac1(Name,FinVal),ac_inout(Name,NameIn,NameOut),(Name=NameIn),(NameOut=FinVal)).initial_ac_map437,19099 -substitute_accumulators(Term,NTerm,_ACMap):-var(Term) :substitute_accumulators440,19272 -substitute_accumulators(Term,NTerm,_ACMap):-var(Term) :substitute_accumulators440,19272 -substitute_accumulators(Term,NTerm,_ACMap):-var(Term) :substitute_accumulators440,19272 -substitute_accumulators(Term,NTerm,_ACMap):-atomic(Term) :substitute_accumulators442,19344 -substitute_accumulators(Term,NTerm,_ACMap):-atomic(Term) :substitute_accumulators442,19344 -substitute_accumulators(Term,NTerm,_ACMap):-atomic(Term) :substitute_accumulators442,19344 -substitute_accumulators(Term,NTerm,ACMap):-Term=(Var^Tail) :substitute_accumulators444,19419 -substitute_accumulators(Term,NTerm,ACMap):-Term=(Var^Tail) :substitute_accumulators444,19419 -substitute_accumulators(Term,NTerm,ACMap):-Term=(Var^Tail) :substitute_accumulators444,19419 -new_pred_name_foreach(PrefixName,DumNo,NewPredName):-new_pred_name_foreach470,20338 -new_pred_name_foreach(PrefixName,DumNo,NewPredName):-new_pred_name_foreach470,20338 -new_pred_name_foreach(PrefixName,DumNo,NewPredName):-new_pred_name_foreach470,20338 -cmp_foreach_check_lvars([X|Xs]) => var(X),cmp_foreach_check_lvars(Xs).cmp_foreach_check_lvars499,21410 -cmp_foreach_check_lvars([X|Xs]) => var(X),cmp_foreach_check_lvars(Xs).cmp_foreach_check_lvars499,21410 - -library/dialect/bprolog/fli/bprolog.h,1985 -#define BPROLOG_H BPROLOG_H4,20 -typedef YAP_Term TERM;TERM10,111 -typedef YAP_Int BPLONG;BPLONG11,134 -typedef YAP_UInt BPULONG;BPULONG12,158 -typedef BPLONG *BPLONG_PTR;BPLONG_PTR13,184 -#define BP_TRUE BP_TRUE15,213 -#define BP_FALSE BP_FALSE16,231 -#define bp_get_call_arg(bp_get_call_arg19,300 -#define bp_is_atom(bp_is_atom22,378 -#define bp_is_integer(bp_is_integer25,454 -#define bp_is_float(bp_is_float28,530 -#define bp_is_nil(bp_is_nil31,604 -#define bp_is_list(bp_is_list34,675 -#define bp_is_structure(bp_is_structure37,753 -#define bp_is_compound(bp_is_compound40,835 -#define bp_is_unifiable(bp_is_unifiable43,932 -#define bp_is_identical(bp_is_identical46,1034 -#define bp_get_integer(bp_get_integer49,1122 -#define bp_get_float(bp_get_float52,1197 -bp_get_name(TERM t)bp_get_name56,1298 -bp_get_arity(TERM t)bp_get_arity71,1594 -#define bp_unify(bp_unify84,1842 -#define bp_get_arg(bp_get_arg87,1919 -#define bp_get_car(bp_get_car90,1991 -#define bp_get_cdr(bp_get_cdr93,2058 -#define bp_write(bp_write96,2124 -#define bp_build_var(bp_build_var99,2194 -#define bp_build_integer(bp_build_integer102,2267 -#define bp_build_float(bp_build_float105,2346 -#define bp_build_atom(bp_build_atom108,2426 -#define bp_build_nil(bp_build_nil111,2517 -#define bp_build_list(bp_build_list114,2579 -#define bp_build_structure(bp_build_structure117,2674 -#define bp_insert_pred(bp_insert_pred120,2844 -bp_call_string(const char *goal) {bp_call_string129,3222 -bp_call_term(TERM t) {bp_call_term135,3371 -#define TOAM_NOTSET TOAM_NOTSET139,3422 -#define curr_out curr_out141,3446 -#define BP_ERROR BP_ERROR143,3471 -#define INTERRUPT INTERRUPT145,3494 -#define exception exception147,3518 -#define curr_toam_status curr_toam_status148,3559 -INLINE_ONLY extern inline int bp_next_solution(void) bp_next_solution154,3727 -#define bp_mount_query_string(bp_mount_query_string165,3986 -bp_mount_query_term(TERM goal)bp_mount_query_term169,4140 - -library/dialect/bprolog/foreach.pl,16796 -test:-test15,417 -test:-test17,472 -test:-test19,525 -test:-test21,594 -test:-test23,665 -test:-test25,726 -test:-test27,803 -test:-test29,902 -test:-test31,980 -test:-test33,1066 -test:-test35,1153 -test:-test37,1208 -test:-test39,1270 -test:-test41,1320 -test:-test43,1373 -test:-test45,1427 -test:-test47,1475 -test:-test49,1524 -test:-test51,1573 -test:-test53,1626 -test:-test55,1689 -test:-test57,1755 -test:-test59,1818 -'$change_list_comprehension_to_foreach'(T,I,Is,CallForeach,L):-$change_list_comprehension_to_foreach84,2433 -'$change_list_comprehension_to_foreach'(T,I,Is,CallForeach,L):-$change_list_comprehension_to_foreach84,2433 -'$change_list_comprehension_to_foreach'(T,I,Is,CallForeach,L):-$change_list_comprehension_to_foreach84,2433 -foreach(A1,A2,A3,A4,A5,A6,A7,A8,A9,A10):-foreach122,3938 -foreach(A1,A2,A3,A4,A5,A6,A7,A8,A9,A10):-foreach122,3938 -foreach(A1,A2,A3,A4,A5,A6,A7,A8,A9,A10):-foreach122,3938 -foreach(A1,A2,A3,A4,A5,A6,A7,A8,A9):-foreach125,4032 -foreach(A1,A2,A3,A4,A5,A6,A7,A8,A9):-foreach125,4032 -foreach(A1,A2,A3,A4,A5,A6,A7,A8,A9):-foreach125,4032 -foreach(A1,A2,A3,A4,A5,A6,A7,A8):-foreach128,4118 -foreach(A1,A2,A3,A4,A5,A6,A7,A8):-foreach128,4118 -foreach(A1,A2,A3,A4,A5,A6,A7,A8):-foreach128,4118 -foreach(A1,A2,A3,A4,A5,A6,A7):-foreach131,4198 -foreach(A1,A2,A3,A4,A5,A6,A7):-foreach131,4198 -foreach(A1,A2,A3,A4,A5,A6,A7):-foreach131,4198 -foreach(A1,A2,A3,A4,A5,A6):-foreach134,4272 -foreach(A1,A2,A3,A4,A5,A6):-foreach134,4272 -foreach(A1,A2,A3,A4,A5,A6):-foreach134,4272 -foreach(A1,A2,A3,A4,A5):-foreach137,4340 -foreach(A1,A2,A3,A4,A5):-foreach137,4340 -foreach(A1,A2,A3,A4,A5):-foreach137,4340 -foreach(A1,A2,A3,A4):-foreach146,4524 -foreach(A1,A2,A3,A4):-foreach146,4524 -foreach(A1,A2,A3,A4):-foreach146,4524 -foreach_aux(A1,A2,A3,A4):-foreach_aux149,4578 -foreach_aux(A1,A2,A3,A4):-foreach_aux149,4578 -foreach_aux(A1,A2,A3,A4):-foreach_aux149,4578 -foreach_aux(A1,A2,A3,A4):-foreach_aux152,4679 -foreach_aux(A1,A2,A3,A4):-foreach_aux152,4679 -foreach_aux(A1,A2,A3,A4):-foreach_aux152,4679 -foreach_aux(A1,A2,A3,A4):-foreach_aux155,4787 -foreach_aux(A1,A2,A3,A4):-foreach_aux155,4787 -foreach_aux(A1,A2,A3,A4):-foreach_aux155,4787 -foreach_aux(A1,A2,A3,A4):-foreach_aux158,4895 -foreach_aux(A1,A2,A3,A4):-foreach_aux158,4895 -foreach_aux(A1,A2,A3,A4):-foreach_aux158,4895 -foreach(A1,A2,A3):-foreach161,4979 -foreach(A1,A2,A3):-foreach161,4979 -foreach(A1,A2,A3):-foreach161,4979 -foreach_aux(A1,A2,A3):-foreach_aux164,5027 -foreach_aux(A1,A2,A3):-foreach_aux164,5027 -foreach_aux(A1,A2,A3):-foreach_aux164,5027 -foreach_aux(A1,A2,A3):-foreach_aux167,5130 -foreach_aux(A1,A2,A3):-foreach_aux167,5130 -foreach_aux(A1,A2,A3):-foreach_aux167,5130 -foreach_aux(A1,A2,A3):-foreach_aux170,5235 -foreach_aux(A1,A2,A3):-foreach_aux170,5235 -foreach_aux(A1,A2,A3):-foreach_aux170,5235 -foreach(Iterators,Goal):-foreach223,6876 -foreach(Iterators,Goal):-foreach223,6876 -foreach(Iterators,Goal):-foreach223,6876 -interp_foreach_with_acs(Iterators,LVars,Accumulators,Goal):-interp_foreach_with_acs226,6955 -interp_foreach_with_acs(Iterators,LVars,Accumulators,Goal):-interp_foreach_with_acs226,6955 -interp_foreach_with_acs(Iterators,LVars,Accumulators,Goal):-interp_foreach_with_acs226,6955 -interp_foreach_with_acs(Iterators,LVars,Accumulators,Goal):-interp_foreach_with_acs230,7164 -interp_foreach_with_acs(Iterators,LVars,Accumulators,Goal):-interp_foreach_with_acs230,7164 -interp_foreach_with_acs(Iterators,LVars,Accumulators,Goal):-interp_foreach_with_acs230,7164 -interp_foreach((I,Is),IsRest,LVars,Goal,Map,ACs0,ACs):-!,interp_foreach233,7300 -interp_foreach((I,Is),IsRest,LVars,Goal,Map,ACs0,ACs):-!,interp_foreach233,7300 -interp_foreach((I,Is),IsRest,LVars,Goal,Map,ACs0,ACs):-!,interp_foreach233,7300 -interp_foreach(Pattern in D,IsRest,LVars,Goal,Map,ACs0,ACs):-interp_foreach236,7466 -interp_foreach(Pattern in D,IsRest,LVars,Goal,Map,ACs0,ACs):-interp_foreach236,7466 -interp_foreach(Pattern in D,IsRest,LVars,Goal,Map,ACs0,ACs):-interp_foreach236,7466 -interp_foreach(true,true,LVars,Goal,Map,ACs0,ACs):-!,interp_foreach240,7705 -interp_foreach(true,true,LVars,Goal,Map,ACs0,ACs):-!,interp_foreach240,7705 -interp_foreach(true,true,LVars,Goal,Map,ACs0,ACs):-!,interp_foreach240,7705 -interp_foreach(true,Is,LVars,Goal,Map,ACs0,ACs):-interp_foreach244,7884 -interp_foreach(true,Is,LVars,Goal,Map,ACs0,ACs):-interp_foreach244,7884 -interp_foreach(true,Is,LVars,Goal,Map,ACs0,ACs):-interp_foreach244,7884 -interp_foreach_in(E,D,IsRest,LVars,Goal,Map,ACs0,ACs):-true :::interp_foreach_in262,8660 -interp_foreach_in(E,D,IsRest,LVars,Goal,Map,ACs0,ACs):-true :::interp_foreach_in262,8660 -interp_foreach_in(E,D,IsRest,LVars,Goal,Map,ACs0,ACs):-true :::interp_foreach_in262,8660 -foreach_pattern_in_list(_Pattern,Lst,_IsRest,_LVars,_Goal,_Map,_ACs0,_ACs):-true :::foreach_pattern_in_list294,10280 -foreach_pattern_in_list(_Pattern,Lst,_IsRest,_LVars,_Goal,_Map,_ACs0,_ACs):-true :::foreach_pattern_in_list294,10280 -foreach_pattern_in_list(_Pattern,Lst,_IsRest,_LVars,_Goal,_Map,_ACs0,_ACs):-true :::foreach_pattern_in_list294,10280 -foreach_update_map(Var,E,Map0,Map):-var(Var),!,Map=[(Var,E)|Map0].foreach_update_map297,10418 -foreach_update_map(Var,E,Map0,Map):-var(Var),!,Map=[(Var,E)|Map0].foreach_update_map297,10418 -foreach_update_map(Var,E,Map0,Map):-var(Var),!,Map=[(Var,E)|Map0].foreach_update_map297,10418 -foreach_update_map(Pattern,E,Map0,Map):-atomic(Pattern),!,E==Pattern,Map=Map0.foreach_update_map298,10485 -foreach_update_map(Pattern,E,Map0,Map):-atomic(Pattern),!,E==Pattern,Map=Map0.foreach_update_map298,10485 -foreach_update_map(Pattern,E,Map0,Map):-atomic(Pattern),!,E==Pattern,Map=Map0.foreach_update_map298,10485 -foreach_update_map(Pattern,E,Map0,Map):-nonvar(E),foreach_update_map299,10564 -foreach_update_map(Pattern,E,Map0,Map):-nonvar(E),foreach_update_map299,10564 -foreach_update_map(Pattern,E,Map0,Map):-nonvar(E),foreach_update_map299,10564 -foreach_update_map(_Pattern,_E,Map0,Map,I,N):-I>N,!,Map=Map0.foreach_update_map304,10710 -foreach_update_map(_Pattern,_E,Map0,Map,I,N):-I>N,!,Map=Map0.foreach_update_map304,10710 -foreach_update_map(_Pattern,_E,Map0,Map,I,N):-I>N,!,Map=Map0.foreach_update_map304,10710 -foreach_update_map(Pattern,E,Map0,Map,I,N):-foreach_update_map305,10772 -foreach_update_map(Pattern,E,Map0,Map,I,N):-foreach_update_map305,10772 -foreach_update_map(Pattern,E,Map0,Map,I,N):-foreach_update_map305,10772 -interp_foreach_term_instance(Term,Term1,Map):-interp_foreach_term_instance312,10963 -interp_foreach_term_instance(Term,Term1,Map):-interp_foreach_term_instance312,10963 -interp_foreach_term_instance(Term,Term1,Map):-interp_foreach_term_instance312,10963 -interp_foreach_term_instance(Term,NTerm,LVars,Map,NMap,_ACs0,_ACs):-var(Term),!,interp_foreach_term_instance317,11216 -interp_foreach_term_instance(Term,NTerm,LVars,Map,NMap,_ACs0,_ACs):-var(Term),!,interp_foreach_term_instance317,11216 -interp_foreach_term_instance(Term,NTerm,LVars,Map,NMap,_ACs0,_ACs):-var(Term),!,interp_foreach_term_instance317,11216 -interp_foreach_term_instance(Term,NTerm,_LVars,Map,NMap,_ACs0,_ACs):-atomic(Term),!,interp_foreach_term_instance321,11423 -interp_foreach_term_instance(Term,NTerm,_LVars,Map,NMap,_ACs0,_ACs):-atomic(Term),!,interp_foreach_term_instance321,11423 -interp_foreach_term_instance(Term,NTerm,_LVars,Map,NMap,_ACs0,_ACs):-atomic(Term),!,interp_foreach_term_instance321,11423 -interp_foreach_term_instance(Term^Tail,NTerm,_LVars,Map,NMap,ACs0,_ACs):-interp_foreach_term_instance323,11533 -interp_foreach_term_instance(Term^Tail,NTerm,_LVars,Map,NMap,ACs0,_ACs):-interp_foreach_term_instance323,11533 -interp_foreach_term_instance(Term^Tail,NTerm,_LVars,Map,NMap,ACs0,_ACs):-interp_foreach_term_instance323,11533 -interp_foreach_term_instance(Term^Tail,NTerm,_LVars,Map,NMap,_ACs0,ACs):-interp_foreach_term_instance327,11687 -interp_foreach_term_instance(Term^Tail,NTerm,_LVars,Map,NMap,_ACs0,ACs):-interp_foreach_term_instance327,11687 -interp_foreach_term_instance(Term^Tail,NTerm,_LVars,Map,NMap,_ACs0,ACs):-interp_foreach_term_instance327,11687 -interp_foreach_term_instance([E|Es],Lst,LVars,Map,NMap,ACs0,ACs):-!,interp_foreach_term_instance331,11840 -interp_foreach_term_instance([E|Es],Lst,LVars,Map,NMap,ACs0,ACs):-!,interp_foreach_term_instance331,11840 -interp_foreach_term_instance([E|Es],Lst,LVars,Map,NMap,ACs0,ACs):-!,interp_foreach_term_instance331,11840 -interp_foreach_term_instance(Term,NTerm,_LVars,Map,NMap,_ACs0,_ACs):-interp_foreach_term_instance335,12058 -interp_foreach_term_instance(Term,NTerm,_LVars,Map,NMap,_ACs0,_ACs):-interp_foreach_term_instance335,12058 -interp_foreach_term_instance(Term,NTerm,_LVars,Map,NMap,_ACs0,_ACs):-interp_foreach_term_instance335,12058 -interp_foreach_term_instance(Term,NTerm,_LVars,Map,NMap,_ACs0,_ACs):-interp_foreach_term_instance338,12175 -interp_foreach_term_instance(Term,NTerm,_LVars,Map,NMap,_ACs0,_ACs):-interp_foreach_term_instance338,12175 -interp_foreach_term_instance(Term,NTerm,_LVars,Map,NMap,_ACs0,_ACs):-interp_foreach_term_instance338,12175 -interp_foreach_term_instance(Term,NTerm,LVars,Map,NMap,ACs0,ACs):-interp_foreach_term_instance341,12296 -interp_foreach_term_instance(Term,NTerm,LVars,Map,NMap,ACs0,ACs):-interp_foreach_term_instance341,12296 -interp_foreach_term_instance(Term,NTerm,LVars,Map,NMap,ACs0,ACs):-interp_foreach_term_instance341,12296 -interp_foreach_term_instance(_Term,_NTerm,_LVars,Map,NMap,I,N,_,_):-I>N,!,interp_foreach_term_instance346,12485 -interp_foreach_term_instance(_Term,_NTerm,_LVars,Map,NMap,I,N,_,_):-I>N,!,interp_foreach_term_instance346,12485 -interp_foreach_term_instance(_Term,_NTerm,_LVars,Map,NMap,I,N,_,_):-I>N,!,interp_foreach_term_instance346,12485 -interp_foreach_term_instance(Term,NTerm,LVars,Map,NMap,I,N,ACs0,ACs):-interp_foreach_term_instance348,12574 -interp_foreach_term_instance(Term,NTerm,LVars,Map,NMap,I,N,ACs0,ACs):-interp_foreach_term_instance348,12574 -interp_foreach_term_instance(Term,NTerm,LVars,Map,NMap,I,N,ACs0,ACs):-interp_foreach_term_instance348,12574 -init_accumulators(ac1(Name,_),ACs):-!, ACs=[(Name,_)].init_accumulators355,12846 -init_accumulators(ac1(Name,_),ACs):-!, ACs=[(Name,_)].init_accumulators355,12846 -init_accumulators(ac1(Name,_),ACs):-!, ACs=[(Name,_)].init_accumulators355,12846 -init_accumulators(ac(Name,Init),ACs):-!, ACs=[(Name,Init)].init_accumulators356,12901 -init_accumulators(ac(Name,Init),ACs):-!, ACs=[(Name,Init)].init_accumulators356,12901 -init_accumulators(ac(Name,Init),ACs):-!, ACs=[(Name,Init)].init_accumulators356,12901 -init_accumulators(Accumulators,ACs):-Accumulators=[_|_],init_accumulators357,12961 -init_accumulators(Accumulators,ACs):-Accumulators=[_|_],init_accumulators357,12961 -init_accumulators(Accumulators,ACs):-Accumulators=[_|_],init_accumulators357,12961 -init_accumulator_lst([],ACs):-!,ACs=[].init_accumulator_lst360,13063 -init_accumulator_lst([],ACs):-!,ACs=[].init_accumulator_lst360,13063 -init_accumulator_lst([],ACs):-!,ACs=[].init_accumulator_lst360,13063 -init_accumulator_lst([ac1(Name,_)|Accumulators],ACs):-!,init_accumulator_lst361,13103 -init_accumulator_lst([ac1(Name,_)|Accumulators],ACs):-!,init_accumulator_lst361,13103 -init_accumulator_lst([ac1(Name,_)|Accumulators],ACs):-!,init_accumulator_lst361,13103 -init_accumulator_lst([ac(Name,Init)|Accumulators],ACs):-init_accumulator_lst364,13230 -init_accumulator_lst([ac(Name,Init)|Accumulators],ACs):-init_accumulator_lst364,13230 -init_accumulator_lst([ac(Name,Init)|Accumulators],ACs):-init_accumulator_lst364,13230 -fin_accumulators(ac1(Name,Fin),[(_,Init)],[(_,Val)]):-!,fin_accumulators368,13361 -fin_accumulators(ac1(Name,Fin),[(_,Init)],[(_,Val)]):-!,fin_accumulators368,13361 -fin_accumulators(ac1(Name,Fin),[(_,Init)],[(_,Val)]):-!,fin_accumulators368,13361 -fin_accumulators(ac(Name,_),_,[(_,Val)]):-!, Name=Val.fin_accumulators370,13441 -fin_accumulators(ac(Name,_),_,[(_,Val)]):-!, Name=Val.fin_accumulators370,13441 -fin_accumulators(ac(Name,_),_,[(_,Val)]):-!, Name=Val.fin_accumulators370,13441 -fin_accumulators(Accumulators,ACs0,ACs):-Accumulators=[_|_],fin_accumulators371,13496 -fin_accumulators(Accumulators,ACs0,ACs):-Accumulators=[_|_],fin_accumulators371,13496 -fin_accumulators(Accumulators,ACs0,ACs):-Accumulators=[_|_],fin_accumulators371,13496 -fin_accumulator_lst([],_,_).fin_accumulator_lst374,13606 -fin_accumulator_lst([],_,_).fin_accumulator_lst374,13606 -fin_accumulator_lst([ac1(Name,Fin)|Accumulators],[(_,Init)|ACs0],[(_,Val)|ACs]):-!,fin_accumulator_lst375,13635 -fin_accumulator_lst([ac1(Name,Fin)|Accumulators],[(_,Init)|ACs0],[(_,Val)|ACs]):-!,fin_accumulator_lst375,13635 -fin_accumulator_lst([ac1(Name,Fin)|Accumulators],[(_,Init)|ACs0],[(_,Val)|ACs]):-!,fin_accumulator_lst375,13635 -fin_accumulator_lst([ac(Name,_)|Accumulators],[_|ACs0],[(_,Val)|ACs]):-fin_accumulator_lst379,13795 -fin_accumulator_lst([ac(Name,_)|Accumulators],[_|ACs0],[(_,Val)|ACs]):-fin_accumulator_lst379,13795 -fin_accumulator_lst([ac(Name,_)|Accumulators],[_|ACs0],[(_,Val)|ACs]):-fin_accumulator_lst379,13795 -foreach_copy_accumulators([],ACs):-!, ACs=[].foreach_copy_accumulators383,13930 -foreach_copy_accumulators([],ACs):-!, ACs=[].foreach_copy_accumulators383,13930 -foreach_copy_accumulators([],ACs):-!, ACs=[].foreach_copy_accumulators383,13930 -foreach_copy_accumulators([(Name,_)|ACs0],ACs):-foreach_copy_accumulators384,13976 -foreach_copy_accumulators([(Name,_)|ACs0],ACs):-foreach_copy_accumulators384,13976 -foreach_copy_accumulators([(Name,_)|ACs0],ACs):-foreach_copy_accumulators384,13976 -foreach_check_lvars([]):-true ::: true.foreach_check_lvars388,14093 -foreach_check_lvars([]):-true ::: true.foreach_check_lvars388,14093 -foreach_check_lvars([]):-true ::: true.foreach_check_lvars388,14093 -foreach_check_lvars([X|Xs]):- var(X) ::: foreach_check_lvars(Xs).foreach_check_lvars389,14133 -foreach_check_lvars([X|Xs]):- var(X) ::: foreach_check_lvars(Xs).foreach_check_lvars389,14133 -foreach_check_lvars([X|Xs]):- var(X) ::: foreach_check_lvars(Xs).foreach_check_lvars389,14133 -foreach_check_lvars([X|Xs]):- var(X) ::: foreach_check_lvars(Xs).foreach_check_lvars389,14133 -foreach_check_lvars([X|Xs]):- var(X) ::: foreach_check_lvars(Xs).foreach_check_lvars389,14133 -foreach_check_lvars(Xs):-true :::foreach_check_lvars390,14199 -foreach_check_lvars(Xs):-true :::foreach_check_lvars390,14199 -foreach_check_lvars(Xs):-true :::foreach_check_lvars390,14199 -foreach_check_accumulators(ac1(_,_)):-!.foreach_check_accumulators393,14274 -foreach_check_accumulators(ac1(_,_)):-!.foreach_check_accumulators393,14274 -foreach_check_accumulators(ac1(_,_)):-!.foreach_check_accumulators393,14274 -foreach_check_accumulators(ac(_,_)):-!.foreach_check_accumulators394,14315 -foreach_check_accumulators(ac(_,_)):-!.foreach_check_accumulators394,14315 -foreach_check_accumulators(ac(_,_)):-!.foreach_check_accumulators394,14315 -foreach_check_accumulators(Accumulators):-Accumulators=[_|_],foreach_check_accumulators395,14355 -foreach_check_accumulators(Accumulators):-Accumulators=[_|_],foreach_check_accumulators395,14355 -foreach_check_accumulators(Accumulators):-Accumulators=[_|_],foreach_check_accumulators395,14355 -foreach_check_accumulator_lst([]).foreach_check_accumulator_lst398,14467 -foreach_check_accumulator_lst([]).foreach_check_accumulator_lst398,14467 -foreach_check_accumulator_lst([X|_]):-var(X),!,fail.foreach_check_accumulator_lst399,14502 -foreach_check_accumulator_lst([X|_]):-var(X),!,fail.foreach_check_accumulator_lst399,14502 -foreach_check_accumulator_lst([X|_]):-var(X),!,fail.foreach_check_accumulator_lst399,14502 -foreach_check_accumulator_lst([ac(_,_)|L]):-!,foreach_check_accumulator_lst400,14555 -foreach_check_accumulator_lst([ac(_,_)|L]):-!,foreach_check_accumulator_lst400,14555 -foreach_check_accumulator_lst([ac(_,_)|L]):-!,foreach_check_accumulator_lst400,14555 -foreach_check_accumulator_lst([ac1(_,_)|L]):-foreach_check_accumulator_lst402,14640 -foreach_check_accumulator_lst([ac1(_,_)|L]):-foreach_check_accumulator_lst402,14640 -foreach_check_accumulator_lst([ac1(_,_)|L]):-foreach_check_accumulator_lst402,14640 -foreach_lookup_map(Term,NTerm,[(Term1,NTerm1)|_]):-Term==Term1,!,foreach_lookup_map405,14725 -foreach_lookup_map(Term,NTerm,[(Term1,NTerm1)|_]):-Term==Term1,!,foreach_lookup_map405,14725 -foreach_lookup_map(Term,NTerm,[(Term1,NTerm1)|_]):-Term==Term1,!,foreach_lookup_map405,14725 -foreach_lookup_map(Term,NTerm,[_|Map]):-foreach_lookup_map407,14809 -foreach_lookup_map(Term,NTerm,[_|Map]):-foreach_lookup_map407,14809 -foreach_lookup_map(Term,NTerm,[_|Map]):-foreach_lookup_map407,14809 - -library/dialect/bprolog/hashtable.yap,2306 -new_hashtable(Hash) :-new_hashtable23,468 -new_hashtable(Hash) :-new_hashtable23,468 -new_hashtable(Hash) :-new_hashtable23,468 -new_hashtable(Hash, Size) :-new_hashtable26,514 -new_hashtable(Hash, Size) :-new_hashtable26,514 -new_hashtable(Hash, Size) :-new_hashtable26,514 -is_hashtable(Hash) :-is_hashtable29,569 -is_hashtable(Hash) :-is_hashtable29,569 -is_hashtable(Hash) :-is_hashtable29,569 -hashtable_get(Hash, Key, Value) :-hashtable_get32,610 -hashtable_get(Hash, Key, Value) :-hashtable_get32,610 -hashtable_get(Hash, Key, Value) :-hashtable_get32,610 -hashtable_put(Hash, Key, Value) :-hashtable_put35,680 -hashtable_put(Hash, Key, Value) :-hashtable_put35,680 -hashtable_put(Hash, Key, Value) :-hashtable_put35,680 -hashtable_register(Hash, Key, Value) :-hashtable_register38,756 -hashtable_register(Hash, Key, Value) :-hashtable_register38,756 -hashtable_register(Hash, Key, Value) :-hashtable_register38,756 -hashtable_register(Hash, Key, Value) :-hashtable_register41,851 -hashtable_register(Hash, Key, Value) :-hashtable_register41,851 -hashtable_register(Hash, Key, Value) :-hashtable_register41,851 -hashtable_size(Hash, Size) :-hashtable_size44,932 -hashtable_size(Hash, Size) :-hashtable_size44,932 -hashtable_size(Hash, Size) :-hashtable_size44,932 -hashtable_to_list(Hash, List) :-hashtable_to_list47,989 -hashtable_to_list(Hash, List) :-hashtable_to_list47,989 -hashtable_to_list(Hash, List) :-hashtable_to_list47,989 -hashtable_keys_to_list(Hash, List) :-hashtable_keys_to_list51,1082 -hashtable_keys_to_list(Hash, List) :-hashtable_keys_to_list51,1082 -hashtable_keys_to_list(Hash, List) :-hashtable_keys_to_list51,1082 -hashtable_values_to_list(Hash, List) :-hashtable_values_to_list54,1155 -hashtable_values_to_list(Hash, List) :-hashtable_values_to_list54,1155 -hashtable_values_to_list(Hash, List) :-hashtable_values_to_list54,1155 -keylist_to_bp([], []).keylist_to_bp57,1232 -keylist_to_bp([], []).keylist_to_bp57,1232 -keylist_to_bp((X-Y).List0, (X=Y).List) :-keylist_to_bp58,1255 -keylist_to_bp((X-Y).List0, (X=Y).List) :-keylist_to_bp58,1255 -keylist_to_bp((X-Y).List0, (X=Y).List) :-keylist_to_bp58,1255 -keylist_to_bp((X-Y).List0, (X=Y).List) :-keylist_to_bp58,1255 -keylist_to_bp((X-Y).List0, (X=Y).List) :-keylist_to_bp58,1255 - -library/dialect/bprolog.yap,12460 -global_set(F,N,Value) :-global_set23,484 -global_set(F,N,Value) :-global_set23,484 -global_set(F,N,Value) :-global_set23,484 -global_set(F,Value) :-global_set27,565 -global_set(F,Value) :-global_set27,565 -global_set(F,Value) :-global_set27,565 -global_get(F,Arity,Value) :-global_get31,641 -global_get(F,Arity,Value) :-global_get31,641 -global_get(F,Arity,Value) :-global_get31,641 -global_get(F,Value) :-global_get35,730 -global_get(F,Value) :-global_get35,730 -global_get(F,Value) :-global_get35,730 -global_del(F,Arity) :-global_del39,806 -global_del(F,Arity) :-global_del39,806 -global_del(F,Arity) :-global_del39,806 -global_del(F) :-global_del43,896 -global_del(F) :-global_del43,896 -global_del(F) :-global_del43,896 -getclauses1(File, Prog, _Opts) :-getclauses147,973 -getclauses1(File, Prog, _Opts) :-getclauses147,973 -getclauses1(File, Prog, _Opts) :-getclauses147,973 -'$bpe_open_file'(File, Dir, S) :-$bpe_open_file51,1108 -'$bpe_open_file'(File, Dir, S) :-$bpe_open_file51,1108 -'$bpe_open_file'(File, Dir, S) :-$bpe_open_file51,1108 -'$bpe_get_clause_from_file'(File, Clause) :-$bpe_get_clause_from_file56,1257 -'$bpe_get_clause_from_file'(File, Clause) :-$bpe_get_clause_from_file56,1257 -'$bpe_get_clause_from_file'(File, Clause) :-$bpe_get_clause_from_file56,1257 -'$bpe_get_preds'(Decl.Prog0, pred(F,N,Modes,Delay,Tabled,Cls).NProg) :-$bpe_get_preds74,1697 -'$bpe_get_preds'(Decl.Prog0, pred(F,N,Modes,Delay,Tabled,Cls).NProg) :-$bpe_get_preds74,1697 -'$bpe_get_preds'(Decl.Prog0, pred(F,N,Modes,Delay,Tabled,Cls).NProg) :-$bpe_get_preds74,1697 -'$bpe_get_preds'(Decl.Prog0, pred(F,N,Modes,Delay,Tabled,Cls).NProg) :-/p,predicate,predicate definition74,1697 -'$bpe_get_preds'(Decl.Prog0, pred(F,N,Modes,Delay,Tabled,Cls).NProg) :-$bpe_get_preds74,1697 -'$bpe_get_preds'(Decl.Prog0, pred(F,N,Modes,Delay,Tabled,Cls).NProg) :-$bpe_get_preds74,1697 -'$bpe_get_preds'(_Decl.Prog0, NProg) :-$bpe_get_preds78,1947 -'$bpe_get_preds'(_Decl.Prog0, NProg) :-$bpe_get_preds78,1947 -'$bpe_get_preds'(_Decl.Prog0, NProg) :-$bpe_get_preds78,1947 -'$bpe_get_preds'([], []).$bpe_get_preds80,2020 -'$bpe_get_preds'([], [])./p,predicate,predicate definition80,2020 -'$bpe_get_preds'([], []).$bpe_get_preds80,2020 -'$bpe_process_pred'([], _F, N, Mode, _Delay, _Tabled, []) -->$bpe_process_pred82,2047 -'$bpe_process_pred'([], _F, N, Mode, _Delay, _Tabled, []) -->$bpe_process_pred82,2047 -'$bpe_process_pred'([], _F, N, Mode, _Delay, _Tabled, []) -->$bpe_process_pred82,2047 -'$bpe_process_pred'([Call|Prog0], F,N, Modes, Delay, Tabled, Cls0) -->$bpe_process_pred84,2137 -'$bpe_process_pred'([Call|Prog0], F,N, Modes, Delay, Tabled, Cls0) -->$bpe_process_pred84,2137 -'$bpe_process_pred'([Call|Prog0], F,N, Modes, Delay, Tabled, Cls0) -->$bpe_process_pred84,2137 -'$bpe_process_pred'([Call|Prog0], F, N, Modes, Delay, Tabled, Cls0) -->$bpe_process_pred87,2339 -'$bpe_process_pred'([Call|Prog0], F, N, Modes, Delay, Tabled, Cls0) -->$bpe_process_pred87,2339 -'$bpe_process_pred'([Call|Prog0], F, N, Modes, Delay, Tabled, Cls0) -->$bpe_process_pred87,2339 -'$init_mode'(_N, Mode) :- nonvar(Mode), !.$init_mode91,2482 -'$init_mode'(_N, Mode) :- nonvar(Mode), !.$init_mode91,2482 -'$init_mode'(_N, Mode) :- nonvar(Mode), !.$init_mode91,2482 -'$init_mode'(0, []) :- !.$init_mode92,2525 -'$init_mode'(0, []) :- !.$init_mode92,2525 -'$init_mode'(0, []) :- !.$init_mode92,2525 -'$init_mode'(I, [d|Mode]) :- !,$init_mode93,2551 -'$init_mode'(I, [d|Mode]) :- !,$init_mode93,2551 -'$init_mode'(I, [d|Mode]) :- !,$init_mode93,2551 -'$get_pred'((P :- Q), F, N, _Modes, _Delay, _Tabled) -->$get_pred97,2621 -'$get_pred'((P :- Q), F, N, _Modes, _Delay, _Tabled) -->$get_pred97,2621 -'$get_pred'((P :- Q), F, N, _Modes, _Delay, _Tabled) -->$get_pred97,2621 -'$get_pred'((:- mode Q), F, N, Modes, _Delay, _Tabled) -->$get_pred100,2724 -'$get_pred'((:- mode Q), F, N, Modes, _Delay, _Tabled) -->$get_pred100,2724 -'$get_pred'((:- mode Q), F, N, Modes, _Delay, _Tabled) -->$get_pred100,2724 -'$get_pred'((:- Q), '$damon_load', 0, _Modes, _Delay, _Tabled) --> $get_pred108,3009 -'$get_pred'((:- Q), '$damon_load', 0, _Modes, _Delay, _Tabled) --> $get_pred108,3009 -'$get_pred'((:- Q), '$damon_load', 0, _Modes, _Delay, _Tabled) --> $get_pred108,3009 -'$get_pred'((P), F, N, _Modes, _Delay, _Tabled) -->$get_pred110,3116 -'$get_pred'((P), F, N, _Modes, _Delay, _Tabled) -->$get_pred110,3116 -'$get_pred'((P), F, N, _Modes, _Delay, _Tabled) -->$get_pred110,3116 -'$bpe_cvt_modes'([Mode|Modes0]) --> [NewMode],$bpe_cvt_modes115,3213 -'$bpe_cvt_modes'([Mode|Modes0]) --> [NewMode],$bpe_cvt_modes115,3213 -'$bpe_cvt_modes'([Mode|Modes0]) --> [NewMode],$bpe_cvt_modes115,3213 -'$bpe_cvt_modes'([]) --> [].$bpe_cvt_modes118,3324 -'$bpe_cvt_modes'([]) --> [].$bpe_cvt_modes118,3324 -'$bpe_cvt_modes'([]) --> [].$bpe_cvt_modes118,3324 -'$bpe_cvt_mode'(Mode, Mode).$bpe_cvt_mode120,3354 -'$bpe_cvt_mode'(Mode, Mode)./p,predicate,predicate definition120,3354 -'$bpe_cvt_mode'(Mode, Mode).$bpe_cvt_mode120,3354 -list_to_and([], true).list_to_and122,3384 -list_to_and([], true).list_to_and122,3384 -list_to_and([G], G).list_to_and123,3407 -list_to_and([G], G).list_to_and123,3407 -list_to_and([G1,G2|Gs], (G1, NGs)) :-list_to_and124,3428 -list_to_and([G1,G2|Gs], (G1, NGs)) :-list_to_and124,3428 -list_to_and([G1,G2|Gs], (G1, NGs)) :-list_to_and124,3428 -preprocess_cl(Cl, Cl, _, _, _, _).preprocess_cl127,3495 -preprocess_cl(Cl, Cl, _, _, _, _).preprocess_cl127,3495 -phase_1_process(Prog, Prog).phase_1_process129,3531 -phase_1_process(Prog, Prog).phase_1_process129,3531 -compileProgToFile(_, _File, []).compileProgToFile131,3561 -compileProgToFile(_, _File, []).compileProgToFile131,3561 -compileProgToFile(_, File, [Pred|Prog2]) :-compileProgToFile132,3594 -compileProgToFile(_, File, [Pred|Prog2]) :-compileProgToFile132,3594 -compileProgToFile(_, File, [Pred|Prog2]) :-compileProgToFile132,3594 -consult_preds([], L) :- !,consult_preds136,3696 -consult_preds([], L) :- !,consult_preds136,3696 -consult_preds([], L) :- !,consult_preds136,3696 -consult_preds(L0, L) :-consult_preds138,3742 -consult_preds(L0, L) :-consult_preds138,3742 -consult_preds(L0, L) :-consult_preds138,3742 -consult_preds([]).consult_preds141,3798 -consult_preds([]).consult_preds141,3798 -consult_preds([P|L]) :-consult_preds142,3817 -consult_preds([P|L]) :-consult_preds142,3817 -consult_preds([P|L]) :-consult_preds142,3817 -consult_pred(pred(F,N,_Mode,_Delay,Tabled,Clauses)) :-consult_pred146,3879 -consult_pred(pred(F,N,_Mode,_Delay,Tabled,Clauses)) :-consult_pred146,3879 -consult_pred(pred(F,N,_Mode,_Delay,Tabled,Clauses)) :-consult_pred146,3879 -add_pred(Name, Arity, _Mode, _Delay, Tabled, Clauses) :-add_pred153,4066 -add_pred(Name, Arity, _Mode, _Delay, Tabled, Clauses) :-add_pred153,4066 -add_pred(Name, Arity, _Mode, _Delay, Tabled, Clauses) :-add_pred153,4066 -'$assert_clauses'([]).$assert_clauses156,4153 -'$assert_clauses'([])./p,predicate,predicate definition156,4153 -'$assert_clauses'([]).$assert_clauses156,4153 -'$assert_clauses'([Cl|Clauses]) :-$assert_clauses157,4176 -'$assert_clauses'([Cl|Clauses]) :-$assert_clauses157,4176 -'$assert_clauses'([Cl|Clauses]) :-$assert_clauses157,4176 -'$myload'(_F) :-$myload161,4261 -'$myload'(_F) :-$myload161,4261 -'$myload'(_F) :-$myload161,4261 -'$query'(G) :- call(G).$query164,4295 -'$query'(G) :- call(G).$query164,4295 -'$query'(G) :- call(G).$query164,4295 -'$query'(G) :- call(G)./p,predicate,predicate definition164,4295 -'$query'(G) :- call(G).$query164,4295 -'$query'(G) :- call(G).$query164,4295 -initialize_table :- abolish_all_tables.initialize_table166,4320 -:- dynamic b_IS_DEBUG_MODE/0.dynamic168,4361 -:- dynamic b_IS_DEBUG_MODE/0.dynamic168,4361 -'_$savecp'(B) :- current_choicepoint(B)._$savecp170,4392 -'_$savecp'(B) :- current_choicepoint(B)._$savecp170,4392 -'_$savecp'(B) :- current_choicepoint(B)._$savecp170,4392 -'_$savecp'(B) :- current_choicepoint(B)./p,predicate,predicate definition170,4392 -'_$savecp'(B) :- current_choicepoint(B)._$savecp170,4392 -'_$savecp'(B) :- current_choicepoint(B)._$savecp170,4392 -'_$cutto'(B) :- cut_by(B)._$cutto171,4433 -'_$cutto'(B) :- cut_by(B)._$cutto171,4433 -'_$cutto'(B) :- cut_by(B)._$cutto171,4433 -'_$cutto'(B) :- cut_by(B)./p,predicate,predicate definition171,4433 -'_$cutto'(B) :- cut_by(B)._$cutto171,4433 -'_$cutto'(B) :- cut_by(B)._$cutto171,4433 -cputime(X) :- statistics(cputime,[X,_]).cputime175,4491 -cputime(X) :- statistics(cputime,[X,_]).cputime175,4491 -cputime(X) :- statistics(cputime,[X,_]).cputime175,4491 -cputime(X) :- statistics(cputime,[X,_]).cputime175,4491 -cputime(X) :- statistics(cputime,[X,_]).cputime175,4491 -vars_set(Term, Vars) :-vars_set177,4533 -vars_set(Term, Vars) :-vars_set177,4533 -vars_set(Term, Vars) :-vars_set177,4533 -sort(=<, L, R) :-sort180,4587 -sort(=<, L, R) :-sort180,4587 -sort(=<, L, R) :-sort180,4587 -sort(>=, L, R) :-sort184,4665 -sort(>=, L, R) :-sort184,4665 -sort(>=, L, R) :-sort184,4665 -sort(<, L, R) :-sort188,4743 -sort(<, L, R) :-sort188,4743 -sort(<, L, R) :-sort188,4743 -sort(>, L, R) :-sort192,4820 -sort(>, L, R) :-sort192,4820 -sort(>, L, R) :-sort192,4820 -'$bp_sort'(P, 2, [X1, X2|L], L, R) :- !, $bp_sort197,4898 -'$bp_sort'(P, 2, [X1, X2|L], L, R) :- !, $bp_sort197,4898 -'$bp_sort'(P, 2, [X1, X2|L], L, R) :- !, $bp_sort197,4898 -'$bp_sort'(_, 1, [X|L], L, [X]) :- !.$bp_sort204,5008 -'$bp_sort'(_, 1, [X|L], L, [X]) :- !.$bp_sort204,5008 -'$bp_sort'(_, 1, [X|L], L, [X]) :- !.$bp_sort204,5008 -'$bp_sort'(_, 0, L, L, []) :- !.$bp_sort205,5046 -'$bp_sort'(_, 0, L, L, []) :- !.$bp_sort205,5046 -'$bp_sort'(_, 0, L, L, []) :- !.$bp_sort205,5046 -'$bp_sort'(P, N, L1, L3, R) :-$bp_sort206,5079 -'$bp_sort'(P, N, L1, L3, R) :-$bp_sort206,5079 -'$bp_sort'(P, N, L1, L3, R) :-$bp_sort206,5079 -'$bp_predmerge'(_, [], R, R) :- !.$bp_predmerge213,5244 -'$bp_predmerge'(_, [], R, R) :- !.$bp_predmerge213,5244 -'$bp_predmerge'(_, [], R, R) :- !.$bp_predmerge213,5244 -'$bp_predmerge'(_, R, [], R) :- !.$bp_predmerge214,5279 -'$bp_predmerge'(_, R, [], R) :- !.$bp_predmerge214,5279 -'$bp_predmerge'(_, R, [], R) :- !.$bp_predmerge214,5279 -'$bp_predmerge'(P, [H1|T1], [H2|T2], [H1|Result]) :-$bp_predmerge215,5314 -'$bp_predmerge'(P, [H1|T1], [H2|T2], [H1|Result]) :-$bp_predmerge215,5314 -'$bp_predmerge'(P, [H1|T1], [H2|T2], [H1|Result]) :-$bp_predmerge215,5314 -'$bp_predmerge'(P, [H1|T1], [H2|T2], [H2|Result]) :-$bp_predmerge218,5430 -'$bp_predmerge'(P, [H1|T1], [H2|T2], [H2|Result]) :-$bp_predmerge218,5430 -'$bp_predmerge'(P, [H1|T1], [H2|T2], [H2|Result]) :-$bp_predmerge218,5430 -'$bp_sort2'(P, 2, [X1, X2|L], L, R) :- !, $bp_sort2221,5526 -'$bp_sort2'(P, 2, [X1, X2|L], L, R) :- !, $bp_sort2221,5526 -'$bp_sort2'(P, 2, [X1, X2|L], L, R) :- !, $bp_sort2221,5526 -'$bp_sort2'(_, 1, [X|L], L, [X]) :- !.$bp_sort2232,5672 -'$bp_sort2'(_, 1, [X|L], L, [X]) :- !.$bp_sort2232,5672 -'$bp_sort2'(_, 1, [X|L], L, [X]) :- !.$bp_sort2232,5672 -'$bp_sort2'(_, 0, L, L, []) :- !.$bp_sort2233,5711 -'$bp_sort2'(_, 0, L, L, []) :- !.$bp_sort2233,5711 -'$bp_sort2'(_, 0, L, L, []) :- !.$bp_sort2233,5711 -'$bp_sort2'(P, N, L1, L3, R) :-$bp_sort2234,5745 -'$bp_sort2'(P, N, L1, L3, R) :-$bp_sort2234,5745 -'$bp_sort2'(P, N, L1, L3, R) :-$bp_sort2234,5745 -'$bp_predmerge2'(_, [], R, R) :- !.$bp_predmerge2241,5911 -'$bp_predmerge2'(_, [], R, R) :- !.$bp_predmerge2241,5911 -'$bp_predmerge2'(_, [], R, R) :- !.$bp_predmerge2241,5911 -'$bp_predmerge2'(_, R, [], R) :- !.$bp_predmerge2242,5947 -'$bp_predmerge2'(_, R, [], R) :- !.$bp_predmerge2242,5947 -'$bp_predmerge2'(_, R, [], R) :- !.$bp_predmerge2242,5947 -'$bp_predmerge2'(P, [H1|T1], [H2|T2], [H1|Result]) :-$bp_predmerge2243,5983 -'$bp_predmerge2'(P, [H1|T1], [H2|T2], [H1|Result]) :-$bp_predmerge2243,5983 -'$bp_predmerge2'(P, [H1|T1], [H2|T2], [H1|Result]) :-$bp_predmerge2243,5983 -'$bp_predmerge2'(P, [H1|T1], [H2|T2], [H1|Result]) :-$bp_predmerge2246,6100 -'$bp_predmerge2'(P, [H1|T1], [H2|T2], [H1|Result]) :-$bp_predmerge2246,6100 -'$bp_predmerge2'(P, [H1|T1], [H2|T2], [H1|Result]) :-$bp_predmerge2246,6100 -'$bp_predmerge2'(P, [H1|T1], [H2|T2], [H2|Result]) :-$bp_predmerge2249,6205 -'$bp_predmerge2'(P, [H1|T1], [H2|T2], [H2|Result]) :-$bp_predmerge2249,6205 -'$bp_predmerge2'(P, [H1|T1], [H2|T2], [H2|Result]) :-$bp_predmerge2249,6205 - -library/dialect/commons.yap,0 - -library/dialect/hprolog.yap,6808 -empty_ds(DS) :- empty_assoc(DS).empty_ds75,2595 -empty_ds(DS) :- empty_assoc(DS).empty_ds75,2595 -empty_ds(DS) :- empty_assoc(DS).empty_ds75,2595 -empty_ds(DS) :- empty_assoc(DS).empty_ds75,2595 -empty_ds(DS) :- empty_assoc(DS).empty_ds75,2595 -ds_to_list(DS,LIST) :- assoc_to_list(DS,LIST).ds_to_list76,2628 -ds_to_list(DS,LIST) :- assoc_to_list(DS,LIST).ds_to_list76,2628 -ds_to_list(DS,LIST) :- assoc_to_list(DS,LIST).ds_to_list76,2628 -ds_to_list(DS,LIST) :- assoc_to_list(DS,LIST).ds_to_list76,2628 -ds_to_list(DS,LIST) :- assoc_to_list(DS,LIST).ds_to_list76,2628 -get_ds(A,B,C) :- get_assoc(A,B,C).get_ds77,2675 -get_ds(A,B,C) :- get_assoc(A,B,C).get_ds77,2675 -get_ds(A,B,C) :- get_assoc(A,B,C).get_ds77,2675 -get_ds(A,B,C) :- get_assoc(A,B,C).get_ds77,2675 -get_ds(A,B,C) :- get_assoc(A,B,C).get_ds77,2675 -put_ds(A,B,C,D) :- put_assoc(A,B,C,D).put_ds78,2710 -put_ds(A,B,C,D) :- put_assoc(A,B,C,D).put_ds78,2710 -put_ds(A,B,C,D) :- put_assoc(A,B,C,D).put_ds78,2710 -put_ds(A,B,C,D) :- put_assoc(A,B,C,D).put_ds78,2710 -put_ds(A,B,C,D) :- put_assoc(A,B,C,D).put_ds78,2710 -init_store(Name,Value) :- nb_setval(Name,Value).init_store81,2751 -init_store(Name,Value) :- nb_setval(Name,Value).init_store81,2751 -init_store(Name,Value) :- nb_setval(Name,Value).init_store81,2751 -init_store(Name,Value) :- nb_setval(Name,Value).init_store81,2751 -init_store(Name,Value) :- nb_setval(Name,Value).init_store81,2751 -get_store(Name,Value) :- nb_getval(Name,Value).get_store83,2801 -get_store(Name,Value) :- nb_getval(Name,Value).get_store83,2801 -get_store(Name,Value) :- nb_getval(Name,Value).get_store83,2801 -get_store(Name,Value) :- nb_getval(Name,Value).get_store83,2801 -get_store(Name,Value) :- nb_getval(Name,Value).get_store83,2801 -update_store(Name,Value) :- b_setval(Name,Value).update_store85,2850 -update_store(Name,Value) :- b_setval(Name,Value).update_store85,2850 -update_store(Name,Value) :- b_setval(Name,Value).update_store85,2850 -update_store(Name,Value) :- b_setval(Name,Value).update_store85,2850 -update_store(Name,Value) :- b_setval(Name,Value).update_store85,2850 -make_init_store_goal(Name,Value,Goal) :- Goal = nb_setval(Name,Value).make_init_store_goal87,2901 -make_init_store_goal(Name,Value,Goal) :- Goal = nb_setval(Name,Value).make_init_store_goal87,2901 -make_init_store_goal(Name,Value,Goal) :- Goal = nb_setval(Name,Value).make_init_store_goal87,2901 -make_init_store_goal(Name,Value,Goal) :- Goal = nb_setval(Name,Value).make_init_store_goal87,2901 -make_init_store_goal(Name,Value,Goal) :- Goal = nb_setval(Name,Value).make_init_store_goal87,2901 -make_get_store_goal(Name,Value,Goal) :- Goal = nb_getval(Name,Value).make_get_store_goal89,2973 -make_get_store_goal(Name,Value,Goal) :- Goal = nb_getval(Name,Value).make_get_store_goal89,2973 -make_get_store_goal(Name,Value,Goal) :- Goal = nb_getval(Name,Value).make_get_store_goal89,2973 -make_get_store_goal(Name,Value,Goal) :- Goal = nb_getval(Name,Value).make_get_store_goal89,2973 -make_get_store_goal(Name,Value,Goal) :- Goal = nb_getval(Name,Value).make_get_store_goal89,2973 -make_update_store_goal(Name,Value,Goal) :- Goal = b_setval(Name,Value).make_update_store_goal91,3044 -make_update_store_goal(Name,Value,Goal) :- Goal = b_setval(Name,Value).make_update_store_goal91,3044 -make_update_store_goal(Name,Value,Goal) :- Goal = b_setval(Name,Value).make_update_store_goal91,3044 -make_update_store_goal(Name,Value,Goal) :- Goal = b_setval(Name,Value).make_update_store_goal91,3044 -make_update_store_goal(Name,Value,Goal) :- Goal = b_setval(Name,Value).make_update_store_goal91,3044 -substitute_eq(_, [], _, []) :- ! .substitute_eq103,3360 -substitute_eq(_, [], _, []) :- ! .substitute_eq103,3360 -substitute_eq(_, [], _, []) :- ! .substitute_eq103,3360 -substitute_eq(X, [U|Us], Y, [V|Vs]) :-substitute_eq104,3395 -substitute_eq(X, [U|Us], Y, [V|Vs]) :-substitute_eq104,3395 -substitute_eq(X, [U|Us], Y, [V|Vs]) :-substitute_eq104,3395 -memberchk_eq(X, [Y|Ys]) :-memberchk_eq117,3680 -memberchk_eq(X, [Y|Ys]) :-memberchk_eq117,3680 -memberchk_eq(X, [Y|Ys]) :-memberchk_eq117,3680 -list_difference_eq([],_,[]).list_difference_eq130,3977 -list_difference_eq([],_,[]).list_difference_eq130,3977 -list_difference_eq([X|Xs],Ys,L) :-list_difference_eq131,4006 -list_difference_eq([X|Xs],Ys,L) :-list_difference_eq131,4006 -list_difference_eq([X|Xs],Ys,L) :-list_difference_eq131,4006 -intersect_eq([], _, []).intersect_eq142,4269 -intersect_eq([], _, []).intersect_eq142,4269 -intersect_eq([X|Xs], Ys, L) :-intersect_eq143,4294 -intersect_eq([X|Xs], Ys, L) :-intersect_eq143,4294 -intersect_eq([X|Xs], Ys, L) :-intersect_eq143,4294 -take(0, _, []) :- !.take157,4647 -take(0, _, []) :- !.take157,4647 -take(0, _, []) :- !.take157,4647 -take(N, [H|TA], [H|TB]) :-take158,4668 -take(N, [H|TA], [H|TB]) :-take158,4668 -take(N, [H|TA], [H|TB]) :-take158,4668 -drop(0,LastElements,LastElements) :- !.drop168,4870 -drop(0,LastElements,LastElements) :- !.drop168,4870 -drop(0,LastElements,LastElements) :- !.drop168,4870 -drop(N,[_|Tail],LastElements) :-drop169,4910 -drop(N,[_|Tail],LastElements) :-drop169,4910 -drop(N,[_|Tail],LastElements) :-drop169,4910 -split_at(0,L,[],L) :- !.split_at178,5080 -split_at(0,L,[],L) :- !.split_at178,5080 -split_at(0,L,[],L) :- !.split_at178,5080 -split_at(N,[H|T],[H|L1],L2) :-split_at179,5105 -split_at(N,[H|T],[H|L1],L2) :-split_at179,5105 -split_at(N,[H|T],[H|L1],L2) :-split_at179,5105 -max_go_list([H|T], Max) :-max_go_list187,5263 -max_go_list([H|T], Max) :-max_go_list187,5263 -max_go_list([H|T], Max) :-max_go_list187,5263 -max_go_list([], Max, Max).max_go_list190,5316 -max_go_list([], Max, Max).max_go_list190,5316 -max_go_list([H|T], X, Max) :-max_go_list191,5343 -max_go_list([H|T], X, Max) :-max_go_list191,5343 -max_go_list([H|T], X, Max) :-max_go_list191,5343 -or_list(L, Or) :-or_list201,5573 -or_list(L, Or) :-or_list201,5573 -or_list(L, Or) :-or_list201,5573 -or_list([], Or, Or).or_list204,5612 -or_list([], Or, Or).or_list204,5612 -or_list([H|T], Or0, Or) :-or_list205,5633 -or_list([H|T], Or0, Or) :-or_list205,5633 -or_list([H|T], Or0, Or) :-or_list205,5633 -bounded_sublist(Sublist,_,_) :-bounded_sublist241,6407 -bounded_sublist(Sublist,_,_) :-bounded_sublist241,6407 -bounded_sublist(Sublist,_,_) :-bounded_sublist241,6407 -bounded_sublist(Sublist,[H|List],Bound) :-bounded_sublist243,6454 -bounded_sublist(Sublist,[H|List],Bound) :-bounded_sublist243,6454 -bounded_sublist(Sublist,[H|List],Bound) :-bounded_sublist243,6454 -chr_delete([], _, []).chr_delete261,6845 -chr_delete([], _, []).chr_delete261,6845 -chr_delete([H|T], X, L) :-chr_delete262,6868 -chr_delete([H|T], X, L) :-chr_delete262,6868 -chr_delete([H|T], X, L) :-chr_delete262,6868 - -library/dialect/swi/fli/blobs.c,742 -#define _WITH_DPRINTF_WITH_DPRINTF36,810 -static PL_blob_t unregistered_blob_atom = {unregistered_blob_atom44,922 -int PL_is_blob(term_t t, PL_blob_t **type) {PL_is_blob47,1034 -PL_unify_blob(term_t t, void *blob, size_t len, PL_blob_t *type) {PL_unify_blob68,1438 -PL_put_blob(term_t t, void *blob, size_t len, PL_blob_t *type) {PL_put_blob85,1805 -PL_get_blob(term_t t, void **blob, size_t *len, PL_blob_t **type) {PL_get_blob104,2175 -PL_blob_data(atom_t a, size_t *len, struct PL_blob_t **type) {PL_blob_data129,2690 -PL_register_blob_type(PL_blob_t *type) {PL_register_blob_type148,3112 -PL_find_blob_type(const char *name) {PL_find_blob_type154,3259 -PL_unregister_blob_type(PL_blob_t *type) {PL_unregister_blob_type161,3401 - -library/dialect/swi/fli/swi.c,17641 -#define PL_KERNEL PL_KERNEL22,338 -#define snprintf(snprintf54,849 -#define PL_KERNEL PL_KERNEL57,903 -static atom_t ATOM_nil;ATOM_nil70,1047 -static int do_gc(UInt sz) {do_gc77,1225 -X_API extern Atom YAP_AtomFromSWIAtom(atom_t at) { return SWIAtomToAtom(at); }YAP_AtomFromSWIAtom93,1570 -X_API extern atom_t YAP_SWIAtomFromAtom(Atom at) { return AtomToSWIAtom(at); }YAP_SWIAtomFromAtom95,1650 -X_API Int YAP_PLArityOfSWIFunctor(functor_t f) {YAP_PLArityOfSWIFunctor100,1844 -static void UserCPredicate(char *a, CPredicate def, unsigned long int arity,UserCPredicate106,1968 -static UInt cvtFlags(unsigned flags) {cvtFlags124,2436 -X_API PL_agc_hook_t PL_agc_hook(PL_agc_hook_t entry) {PL_agc_hook160,3246 -X_API int PL_get_nchars(term_t l, size_t *lengthp, char **s, unsigned flags) {PL_get_nchars202,5258 -int PL_get_chars(term_t t, char **s, unsigned flags) {PL_get_chars236,6129 -int PL_get_wchars(term_t l, size_t *lengthp, wchar_t **s, unsigned flags) {PL_get_wchars240,6230 -X_API int PL_unify_chars(term_t l, int flags, size_t length, const char *s) {PL_unify_chars263,6776 -X_API char *PL_atom_chars(atom_t a) /* SAM check type */PL_atom_chars292,7523 -X_API char *PL_atom_nchars(atom_t a, size_t *len) /* SAM check type */PL_atom_nchars301,7726 -X_API term_t PL_new_term_ref(void) {PL_new_term_ref319,8029 -X_API term_t PL_copy_term_ref(term_t from) {PL_copy_term_ref328,8169 -X_API term_t PL_new_term_refs(int n) {PL_new_term_refs337,8364 -X_API void PL_reset_term_refs(term_t after) {PL_reset_term_refs346,8530 -X_API int PL_get_name_arity(term_t ts, atom_t *name, int *arity) {PL_get_name_arity369,8920 -X_API int PL_get_arg(int index, term_t ts, term_t a) {PL_get_arg403,9620 -X_API int PL_get_compound_name_arity(term_t ts, atom_t *ap, int *ip) {PL_get_compound_name_arity433,10301 -X_API int PL_get_atom(term_t ts, atom_t *a) {PL_get_atom460,10876 -X_API int PL_get_integer(term_t ts, int *i) {PL_get_integer474,11213 -X_API int PL_get_long(term_t ts, long *i) {PL_get_long487,11513 -X_API int PL_get_bool(term_t ts, int *i) {PL_get_bool506,11929 -X_API int PL_get_int64(term_t ts, int64_t *i) {PL_get_int64528,12299 -X_API int PL_get_int64_ex(term_t ts, int64_t *i) { return PL_get_int64(ts, i); }PL_get_int64_ex574,13237 -X_API int PL_get_intptr(term_t ts, intptr_t *a) {PL_get_intptr579,13399 -X_API int PL_get_uintptr(term_t ts, uintptr_t *a) {PL_get_uintptr591,13666 -X_API int _PL_get_arg(int index, term_t ts, term_t a) {_PL_get_arg603,13934 -X_API int PL_get_atom_chars(term_t ts, char **a) /* SAM check type */PL_get_atom_chars627,14502 -X_API int PL_get_atom_nchars(term_t ts, size_t *len,PL_get_atom_nchars649,14954 -X_API int PL_get_functor(term_t ts, functor_t *f) {PL_get_functor697,16699 -X_API int PL_get_float(term_t ts, double *f) /* SAM type check*/PL_get_float714,17078 -X_API int PL_get_string_chars(term_t t, char **s, size_t *len) {PL_get_string_chars736,17549 -X_API int PL_get_string(term_t t, char **s, size_t *len) {PL_get_string744,17781 -X_API int PL_get_list(term_t ts, term_t h, term_t tl) {PL_get_list767,18211 -X_API int PL_get_head(term_t ts, term_t h) {PL_get_head781,18544 -X_API int PL_unify_bool(term_t t, int a) {PL_unify_bool805,18916 -X_API int PL_get_mpz(term_t t, mpz_t mpz) {PL_get_mpz817,19186 -X_API int PL_unify_mpz(term_t t, mpz_t mpz) {PL_unify_mpz824,19323 -X_API int PL_get_mpq(term_t t, mpq_t mpz) {PL_get_mpq830,19470 -X_API int PL_unify_mpq(term_t t, mpq_t mpq) {PL_unify_mpq837,19607 -X_API int PL_get_module(term_t ts, module_t *m) {PL_get_module846,19810 -X_API module_t PL_new_module(atom_t swiat) {PL_new_module856,20045 -X_API int PL_get_nil(term_t ts) {PL_get_nil868,20359 -X_API int PL_get_pointer(term_t ts, void **i) {PL_get_pointer877,20545 -X_API int PL_get_tail(term_t ts, term_t tl) {PL_get_tail886,20745 -X_API atom_t PL_new_atom(const char *c) {PL_new_atom905,21217 -X_API atom_t PL_new_atom_nchars(size_t len, const char *c) {PL_new_atom_nchars919,21501 -X_API atom_t PL_new_atom_wchars(size_t len, const wchar_t *c) {PL_new_atom_wchars933,21844 -X_API wchar_t *PL_atom_wchars(atom_t name, size_t *sp) {PL_atom_wchars947,22175 -X_API functor_t PL_new_functor(atom_t name, int arity) {PL_new_functor961,22516 -X_API atom_t PL_functor_name(functor_t f) {PL_functor_name972,22780 -X_API int PL_functor_arity(functor_t f) {PL_functor_arity980,22998 -X_API int PL_cons_functor(term_t d, functor_t f, ...) {PL_cons_functor992,23266 -X_API int PL_cons_functor_v(term_t d, functor_t f, term_t a0) {PL_cons_functor_v1025,24005 -X_API int PL_cons_list(term_t d, term_t h, term_t t) {PL_cons_list1057,24673 -X_API int PL_put_atom(term_t t, atom_t a) {PL_put_atom1068,24932 -X_API int PL_put_atom_chars(term_t t, const char *s) {PL_put_atom_chars1074,25057 -X_API int PL_put_atom_nchars(term_t t, size_t len, const char *s) {PL_put_atom_nchars1087,25386 -X_API int PL_put_float(term_t t, double fl) {PL_put_float1099,25733 -X_API int PL_put_functor(term_t t, functor_t f) {PL_put_functor1105,25851 -X_API int PL_put_integer(term_t t, long n) {PL_put_integer1126,26357 -X_API int PL_put_boolean(term_t t, uintptr_t n) {PL_put_boolean1132,26471 -X_API int PL_put_int64(term_t t, int64_t n) {PL_put_int641138,26605 -X_API int PL_put_intptr(term_t t, intptr_t n) {PL_put_intptr1173,27313 -X_API int PL_put_uintptr(term_t t, uintptr_t n) {PL_put_uintptr1179,27430 -X_API int PL_put_list(term_t t) {PL_put_list1185,27549 -X_API int PL_put_list_chars(term_t t, const char *s) {PL_put_list_chars1196,27756 -X_API void PL_put_nil(term_t t) {PL_put_nil1207,28051 -X_API int PL_put_pointer(term_t t, void *ptr) {PL_put_pointer1215,28214 -X_API int PL_put_string_chars(term_t t, const char *chars) {PL_put_string_chars1222,28366 -X_API int PL_put_string_nchars(term_t t, size_t len, const char *chars) {PL_put_string_nchars1233,28671 -X_API int PL_put_term(term_t d, term_t s) {PL_put_term1245,29004 -X_API int PL_put_variable(term_t t) {PL_put_variable1251,29119 -X_API int PL_raise_exception(term_t exception) {PL_raise_exception1263,29364 -X_API int PL_throw(term_t exception) {PL_throw1271,29548 -X_API void PL_fatal_error(const char *msg) {PL_fatal_error1279,29719 -X_API int PL_warning(const char *msg, ...) {PL_warning1284,29831 -X_API int PL_unify(term_t t1, term_t t2) {PL_unify1297,30144 -X_API int PL_unify_atom(term_t t, atom_t at) {PL_unify_atom1304,30354 -X_API int PL_unify_atom_chars(term_t t, const char *s) {PL_unify_atom_chars1312,30617 -X_API int PL_unify_atom_nchars(term_t t, size_t len, const char *s) {PL_unify_atom_nchars1325,31055 -X_API int PL_unify_float(term_t t, double f) {PL_unify_float1338,31498 -X_API int PL_unify_integer(term_t t, long n) {PL_unify_integer1346,31728 -X_API int PL_unify_intptr(term_t t, intptr_t n) {PL_unify_intptr1352,31871 -X_API int PL_unify_uintptr(term_t t, uintptr_t n) {PL_unify_uintptr1358,32017 -X_API int PL_unify_boolean(term_t t, int n) {PL_unify_boolean1364,32165 -X_API int PL_unify_functor(term_t t, functor_t f) {PL_unify_functor1372,32411 -X_API int PL_unify_int64(term_t t, int64_t n) {PL_unify_int641393,32993 -X_API int PL_unify_list(term_t tt, term_t h, term_t tail) {PL_unify_list1430,33857 -X_API int PL_unify_arg(int index, term_t tt, term_t arg) {PL_unify_arg1454,34458 -X_API int PL_unify_list_chars(term_t t, const char *chars) {PL_unify_list_chars1481,35160 -X_API int PL_unify_list_ncodes(term_t t, size_t len, const char *chars) {PL_unify_list_ncodes1494,35590 -X_API int PL_unify_list_codes(term_t t, const char *chars) {PL_unify_list_codes1505,35974 -X_API int PL_unify_nil(term_t t) {PL_unify_nil1518,36381 -X_API int PL_unify_pointer(term_t t, void *ptr) {PL_unify_pointer1526,36566 -X_API int PL_unify_string_chars(term_t t, const char *chars) {PL_unify_string_chars1534,36831 -X_API int PL_unify_string_nchars(term_t t, size_t len, const char *chars) {PL_unify_string_nchars1544,37150 -X_API int PL_unify_wchars(term_t t, int type, size_t len,PL_unify_wchars1557,37579 - int type;type1600,38743 - int type;__anon288::type1600,38743 - functor_t f;f1602,38765 - functor_t f;__anon288::__anon289::f1602,38765 - term_t t;t1603,38782 - term_t t;__anon288::__anon289::t1603,38782 - atom_t a;a1604,38796 - atom_t a;__anon288::__anon289::a1604,38796 - long l;l1605,38810 - long l;__anon288::__anon289::l1605,38810 - int i;i1606,38822 - int i;__anon288::__anon289::i1606,38822 - double dbl;dbl1607,38833 - double dbl;__anon288::__anon289::dbl1607,38833 - char *s;s1608,38849 - char *s;__anon288::__anon289::s1608,38849 - size_t n;n1610,38875 - size_t n;__anon288::__anon289::__anon290::n1610,38875 - char *s;s1611,38891 - char *s;__anon288::__anon289::__anon290::s1611,38891 - } ns;ns1612,38906 - } ns;__anon288::__anon289::ns1612,38906 - size_t n;n1614,38929 - size_t n;__anon288::__anon289::__anon291::n1614,38929 - wchar_t *w;w1615,38945 - wchar_t *w;__anon288::__anon289::__anon291::w1615,38945 - } nw;nw1616,38963 - } nw;__anon288::__anon289::nw1616,38963 - void *p;p1617,38973 - void *p;__anon288::__anon289::p1617,38973 - wchar_t *w;w1618,38986 - wchar_t *w;__anon288::__anon289::w1618,38986 - } arg;arg1619,39002 - } arg;__anon288::arg1619,39002 -} arg_types;arg_types1620,39011 -static YAP_Term MkBoolTerm(int b) {MkBoolTerm1622,39025 -#define MAX_DEPTH MAX_DEPTH1629,39147 - int nels;nels1632,39186 - int nels;__anon292::nels1632,39186 - CELL *ptr;ptr1633,39198 - CELL *ptr;__anon292::ptr1633,39198 -} stack_el;stack_el1634,39211 -int PL_unify_termv(term_t l, va_list ap) {PL_unify_termv1638,39319 -int PL_unify_term(term_t t, ...) {PL_unify_term1872,45817 -X_API void PL_register_atom(atom_t atom) {PL_register_atom1886,46074 -X_API void PL_unregister_atom(atom_t atom) {PL_unregister_atom1891,46209 -X_API int PL_term_type(term_t t) {PL_term_type1895,46302 -X_API int PL_is_atom(term_t t) {PL_is_atom1914,46740 -X_API int PL_is_ground(term_t t) {PL_is_ground1919,46830 -X_API int PL_is_acyclic(term_t t) {PL_is_acyclic1924,46928 -X_API int PL_is_callable(term_t t) {PL_is_callable1929,47028 -X_API int PL_is_atomic(term_t ts) {PL_is_atomic1941,47310 -X_API int PL_is_compound(term_t ts) {PL_is_compound1947,47458 -X_API int PL_is_functor(term_t ts, functor_t f) {PL_is_functor1953,47591 -X_API int PL_is_float(term_t ts) {PL_is_float1965,47889 -X_API int PL_is_integer(term_t ts) {PL_is_integer1971,48018 -X_API int PL_is_list(term_t ts) {PL_is_list1990,48408 -X_API int PL_is_pair(term_t ts) {PL_is_pair1996,48553 -X_API int PL_skip_list(term_t list, term_t tail, size_t *len) {PL_skip_list2002,48680 -X_API int PL_is_number(term_t ts) {PL_is_number2028,49167 -X_API int PL_is_string(term_t ts) {PL_is_string2034,49319 -X_API int PL_is_variable(term_t ts) {PL_is_variable2040,49429 -X_API int PL_compare(term_t ts1, term_t ts2) {PL_compare2046,49546 -X_API char *PL_record_external(term_t ts, size_t *sz) {PL_record_external2053,49720 -X_API int PL_recorded_external(const char *tp, term_t ts) {PL_recorded_external2081,50284 -X_API int PL_erase_external(char *tp) {PL_erase_external2090,50470 -X_API record_t PL_record(term_t ts) {PL_record2095,50553 -X_API int PL_recorded(record_t db, term_t ts) {PL_recorded2101,50673 -X_API record_t PL_duplicate_record(record_t db) {PL_duplicate_record2110,50853 -X_API void PL_erase(record_t db) { YAP_Erase((void *)db); }PL_erase2117,51017 -X_API void PL_halt(int e) { YAP_Halt(e); }PL_halt2119,51078 -X_API int PL_action(int action, ...) {PL_action2121,51122 -X_API term_t PL_exception(qid_t q) {PL_exception2162,52185 -X_API void PL_clear_exception(void) {PL_clear_exception2174,52392 -X_API int PL_initialise(int myargc, char **myargv) {PL_initialise2179,52479 -X_API int PL_is_initialised(int *argcp, char ***argvp) {PL_is_initialised2209,53320 -X_API module_t PL_context(void) {PL_context2219,53545 -X_API int PL_strip_module(term_t raw, module_t *m, term_t plain) {PL_strip_module2224,53644 -X_API atom_t PL_module_name(module_t m) {PL_module_name2242,54029 -X_API predicate_t PL_pred(functor_t f, module_t m) {PL_pred2247,54127 -X_API predicate_t PL_predicate(const char *name, int arity, const char *m) {PL_predicate2258,54441 -X_API int PL_unify_predicate(term_t head, predicate_t pred, int how) {PL_unify_predicate2285,55127 -X_API void PL_predicate_info(predicate_t p, atom_t *name, int *arity,PL_predicate_info2314,55930 -#undef S_YREGS_YREG2336,56474 -X_API fid_t PL_open_foreign_frame(void) {PL_open_foreign_frame2338,56489 -X_API void PL_close_foreign_frame(fid_t f) {PL_close_foreign_frame2359,56958 -static void backtrack(void) {backtrack2376,57336 -X_API void PL_rewind_foreign_frame(fid_t f) {PL_rewind_foreign_frame2383,57431 -X_API void PL_discard_foreign_frame(fid_t f) {PL_discard_foreign_frame2396,57721 -X_API qid_t PL_open_query(module_t ctx, int flags, predicate_t p, term_t t0) {PL_open_query2417,58188 -X_API int PL_next_solution(qid_t qi) {PL_next_solution2432,58578 -X_API void PL_cut_query(qid_t qi) {PL_cut_query2455,59152 -X_API void PL_close_query(qid_t qi) {PL_close_query2466,59373 -X_API int PL_call_predicate(module_t ctx, int flags, predicate_t p, term_t t0) {PL_call_predicate2482,59756 -X_API int PL_toplevel(void) {PL_toplevel2491,60021 -X_API int PL_call(term_t tp, module_t m) {PL_call2500,60179 -X_API void PL_register_foreign_in_module(const char *module, const char *name,PL_register_foreign_in_module2518,60468 -X_API void PL_register_extensions(const PL_extension *ptr) {PL_register_extensions2558,61744 -X_API void PL_register_extensions_in_module(const char *module,PL_register_extensions_in_module2564,61919 -X_API void PL_register_foreign(const char *name, int arity,PL_register_foreign2575,62301 -X_API void PL_load_extensions(const PL_extension *ptr) {PL_load_extensions2580,62501 -X_API int PL_is_inf(term_t st) {PL_is_inf2589,62780 -X_API int PL_thread_self(void) {PL_thread_self2609,63161 -int PL_thread_raise(int tid, int sig) {PL_thread_raise2646,63905 -X_API int PL_unify_thread_id(term_t t, int i) {PL_unify_thread_id2657,64034 -static int pl_thread_self(void) {pl_thread_self2663,64178 -X_API int PL_thread_attach_engine(const PL_thread_attr_t *attr) {PL_thread_attach_engine2674,64354 -X_API int PL_thread_destroy_engine(void) {PL_thread_destroy_engine2702,65021 -X_API int PL_thread_at_exit(void (*function)(void *), void *closure,PL_thread_at_exit2713,65242 -X_API PL_engine_t PL_create_engine(const PL_thread_attr_t *attr) {PL_create_engine2720,65480 -X_API int PL_destroy_engine(PL_engine_t e) {PL_destroy_engine2741,65937 -X_API int PL_set_engine(PL_engine_t engine, PL_engine_t *old) {PL_set_engine2750,66140 -X_API void *PL_malloc(size_t sz) {PL_malloc2798,67225 -X_API void *PL_realloc(void *ptr, size_t sz) {PL_realloc2804,67343 -X_API void PL_free(void *obj) {PL_free2817,67574 -X_API int PL_eval_expression_to_int64_ex(term_t t, int64_t *val) {PL_eval_expression_to_int64_ex2822,67635 -foreign_t _PL_retry(intptr_t v) {_PL_retry2854,68419 -foreign_t _PL_retry_address(void *addr) {_PL_retry_address2858,68513 -X_API int PL_foreign_control(control_t ctx) {PL_foreign_control2862,68601 -X_API intptr_t PL_foreign_context(control_t ctx) {PL_foreign_context2873,68799 -X_API void *PL_foreign_context_address(control_t ctx) {PL_foreign_context_address2882,68969 -X_API int PL_get_signum_ex(term_t sig, int *n) {PL_get_signum_ex2891,69144 -typedef struct blob {blob2914,69696 - Functor f;f2915,69718 - Functor f;blob::f2915,69718 - CELL type;type2916,69731 - CELL type;blob::type2916,69731 - MP_INT blinfo; /* total size should go here */blinfo2917,69744 - MP_INT blinfo; /* total size should go here */blob::blinfo2917,69744 - PL_blob_t *blb;blb2918,69793 - PL_blob_t *blb;blob::blb2918,69793 - size_t size;size2919,69811 - size_t size;blob::size2919,69811 - CELL blob_data[1];blob_data2920,69826 - CELL blob_data[1];blob::blob_data2920,69826 -} blob_t;blob_t2921,69847 -X_API intptr_t PL_query(int query) {PL_query2923,69858 -X_API void PL_cleanup_fork(void) {}PL_cleanup_fork2939,70242 -X_API void (*PL_signal(int sig, void (*func)(int)))(int) {PL_signal2941,70279 -X_API void PL_on_halt(int (*f)(int, void *), void *closure) {PL_on_halt2946,70392 -#define is_signalled(is_signalled2950,70507 -static pthread_key_t atomgen_key;atomgen_key2954,70606 -typedef struct scan_atoms {scan_atoms2957,70648 - Int pos;pos2958,70676 - Int pos;scan_atoms::pos2958,70676 - Atom atom;atom2959,70687 - Atom atom;scan_atoms::atom2959,70687 -} scan_atoms_t;scan_atoms_t2960,70700 -static inline int str_prefix(const char *p0, char *s) {str_prefix2962,70717 -static int atom_generator(const char *prefix, char **hit, int state) {atom_generator2971,70872 -char *PL_atom_generator(const char *prefix, int state) {PL_atom_generator3019,72068 -X_API pl_wchar_t *PL_atom_generator_w(const pl_wchar_t *pref,PL_atom_generator_w3027,72228 -const char *Yap_GetCurrentPredName(void) {Yap_GetCurrentPredName3036,72510 -Int Yap_GetCurrentPredArity(void) {Yap_GetCurrentPredArity3045,72726 -void Yap_swi_install(void) { Yap_install_blobs(); }Yap_swi_install3052,72832 -X_API int PL_raise(int sig) {PL_raise3054,72885 -int raiseSignal(void *ld, int sig) {raiseSignal3061,72997 -void Yap_LockStream(void *s) {Yap_LockStream3073,73223 -void Yap_UnLockStream(void *s) {Yap_UnLockStream3077,73309 -term_t Yap_CvtTerm(term_t ts) {Yap_CvtTerm3084,73445 -char *PL_cwd(char *cwd, size_t cwdlen) {PL_cwd3136,74740 - -library/dialect/swi/fli/swi.h,352 -#define SWI_H SWI_H39,1144 -SWIModuleToModule(module_t m)SWIModuleToModule47,1264 -AtomToSWIAtom(Atom at)AtomToSWIAtom61,1464 -SWIAtomToAtom(atom_t at)SWIAtomToAtom69,1540 -FunctorToSWIFunctor(Functor f)FunctorToSWIFunctor75,1613 -SWIFunctorToFunctor(functor_t f)SWIFunctorToFunctor81,1694 -#define isDefinedProcedure(isDefinedProcedure86,1753 - -library/dialect/swi/INDEX.pl,7646 -index(write_to_chars,2,system,library(dialect/swi)).index1,0 -index(write_to_chars,2,system,library(dialect/swi)).index1,0 -index(read_from_chars,2,system,library(dialect/swi)).index2,53 -index(read_from_chars,2,system,library(dialect/swi)).index2,53 -index(append,2,system,library(dialect/swi)).index3,107 -index(append,2,system,library(dialect/swi)).index3,107 -index(append,3,system,library(dialect/swi)).index4,152 -index(append,3,system,library(dialect/swi)).index4,152 -index(delete,3,system,library(dialect/swi)).index5,197 -index(delete,3,system,library(dialect/swi)).index5,197 -index(member,2,system,library(dialect/swi)).index6,242 -index(member,2,system,library(dialect/swi)).index6,242 -index(flatten,2,system,library(dialect/swi)).index7,287 -index(flatten,2,system,library(dialect/swi)).index7,287 -index(intersection,3,system,library(dialect/swi)).index8,333 -index(intersection,3,system,library(dialect/swi)).index8,333 -index(last,2,system,library(dialect/swi)).index9,384 -index(last,2,system,library(dialect/swi)).index9,384 -index(memberchk,2,system,library(dialect/swi)).index10,427 -index(memberchk,2,system,library(dialect/swi)).index10,427 -index(max_list,2,system,library(dialect/swi)).index11,475 -index(max_list,2,system,library(dialect/swi)).index11,475 -index(min_list,2,system,library(dialect/swi)).index12,522 -index(min_list,2,system,library(dialect/swi)).index12,522 -index(nextto,3,system,library(dialect/swi)).index13,569 -index(nextto,3,system,library(dialect/swi)).index13,569 -index(permutation,2,system,library(dialect/swi)).index14,614 -index(permutation,2,system,library(dialect/swi)).index14,614 -index(reverse,2,system,library(dialect/swi)).index15,664 -index(reverse,2,system,library(dialect/swi)).index15,664 -index(select,3,system,library(dialect/swi)).index16,710 -index(select,3,system,library(dialect/swi)).index16,710 -index(selectchk,3,system,library(dialect/swi)).index17,755 -index(selectchk,3,system,library(dialect/swi)).index17,755 -index(sublist,2,system,library(dialect/swi)).index18,803 -index(sublist,2,system,library(dialect/swi)).index18,803 -index(sumlist,2,system,library(dialect/swi)).index19,849 -index(sumlist,2,system,library(dialect/swi)).index19,849 -index(nth1,3,system,library(dialect/swi)).index20,895 -index(nth1,3,system,library(dialect/swi)).index20,895 -index(nth1,4,system,library(dialect/swi)).index21,938 -index(nth1,4,system,library(dialect/swi)).index21,938 -index(nth0,3,system,library(dialect/swi)).index22,981 -index(nth0,3,system,library(dialect/swi)).index22,981 -index(nth0,4,system,library(dialect/swi)).index23,1024 -index(nth0,4,system,library(dialect/swi)).index23,1024 -index(maplist,2,system,library(dialect/swi)).index24,1067 -index(maplist,2,system,library(dialect/swi)).index24,1067 -index(maplist,3,system,library(dialect/swi)).index25,1113 -index(maplist,3,system,library(dialect/swi)).index25,1113 -index(maplist,4,system,library(dialect/swi)).index26,1159 -index(maplist,4,system,library(dialect/swi)).index26,1159 -index(maplist,5,system,library(dialect/swi)).index27,1205 -index(maplist,5,system,library(dialect/swi)).index27,1205 -index(include,3,system,library(dialect/swi)).index28,1251 -index(include,3,system,library(dialect/swi)).index28,1251 -index(exclude,3,system,library(dialect/swi)).index29,1297 -index(exclude,3,system,library(dialect/swi)).index29,1297 -index(partition,4,system,library(dialect/swi)).index30,1343 -index(partition,4,system,library(dialect/swi)).index30,1343 -index(partition,5,system,library(dialect/swi)).index31,1391 -index(partition,5,system,library(dialect/swi)).index31,1391 -index(datime,1,system,library(dialect/swi)).index32,1439 -index(datime,1,system,library(dialect/swi)).index32,1439 -index(mktime,2,system,library(dialect/swi)).index33,1484 -index(mktime,2,system,library(dialect/swi)).index33,1484 -index(file_property,2,system,library(dialect/swi)).index34,1529 -index(file_property,2,system,library(dialect/swi)).index34,1529 -index(delete_file,1,system,library(dialect/swi)).index35,1581 -index(delete_file,1,system,library(dialect/swi)).index35,1581 -index(genarg,3,system,library(dialect/swi)).index36,1631 -index(genarg,3,system,library(dialect/swi)).index36,1631 -index(subsumes,2,system,library(dialect/swi)).index37,1676 -index(subsumes,2,system,library(dialect/swi)).index37,1676 -index(subsumes_chk,2,system,library(dialect/swi)).index38,1723 -index(subsumes_chk,2,system,library(dialect/swi)).index38,1723 -index(term_hash,2,system,library(dialect/swi)).index39,1774 -index(term_hash,2,system,library(dialect/swi)).index39,1774 -index(unifiable,3,system,library(dialect/swi)).index40,1822 -index(unifiable,3,system,library(dialect/swi)).index40,1822 -index(cyclic_term,1,system,library(dialect/swi)).index41,1870 -index(cyclic_term,1,system,library(dialect/swi)).index41,1870 -index(variant,2,system,library(dialect/swi)).index42,1920 -index(variant,2,system,library(dialect/swi)).index42,1920 -index(concat_atom,2,system,library(dialect/swi)).index43,1966 -index(concat_atom,2,system,library(dialect/swi)).index43,1966 -index(concat_atom,3,system,library(dialect/swi)).index44,2016 -index(concat_atom,3,system,library(dialect/swi)).index44,2016 -index(setenv,2,system,library(dialect/swi)).index45,2066 -index(setenv,2,system,library(dialect/swi)).index45,2066 -index(read_clause,1,system,library(dialect/swi)).index46,2111 -index(read_clause,1,system,library(dialect/swi)).index46,2111 -index(string,1,system,library(dialect/swi)).index47,2161 -index(string,1,system,library(dialect/swi)).index47,2161 -index(chdir,1,system,library(dialect/swi)).index48,2206 -index(chdir,1,system,library(dialect/swi)).index48,2206 -index(compile_aux_clauses,1,system,library(dialect/swi)).index49,2250 -index(compile_aux_clauses,1,system,library(dialect/swi)).index49,2250 -index(convert_time,2,system,library(dialect/swi)).index50,2308 -index(convert_time,2,system,library(dialect/swi)).index50,2308 -index('$set_source_module',2,system,library(dialect/swi)).index51,2359 -index('$set_source_module',2,system,library(dialect/swi)).index51,2359 -index('$declare_module',5,system,library(dialect/swi)).index52,2418 -index('$declare_module',5,system,library(dialect/swi)).index52,2418 -index('$set_predicate_attribute',3,system,library(dialect/swi)).index53,2474 -index('$set_predicate_attribute',3,system,library(dialect/swi)).index53,2474 -index(stamp_date_time,3,system,library(dialect/swi)).index54,2539 -index(stamp_date_time,3,system,library(dialect/swi)).index54,2539 -index(date_time_stamp,2,system,library(dialect/swi)).index55,2593 -index(date_time_stamp,2,system,library(dialect/swi)).index55,2593 -index(format_time,3,system,library(dialect/swi)).index56,2647 -index(format_time,3,system,library(dialect/swi)).index56,2647 -index(format_time,4,system,library(dialect/swi)).index57,2697 -index(format_time,4,system,library(dialect/swi)).index57,2697 -index(time_file,2,system,library(dialect/swi)).index58,2747 -index(time_file,2,system,library(dialect/swi)).index58,2747 -index(flag,3,system,library(dialect/swi)).index59,2795 -index(flag,3,system,library(dialect/swi)).index59,2795 -index(require,1,system,library(dialect/swi)).index60,2838 -index(require,1,system,library(dialect/swi)).index60,2838 -index(normalize_space,2,system,library(dialect/swi)).index61,2884 -index(normalize_space,2,system,library(dialect/swi)).index61,2884 -index(current_flag,1,system,library(dialect/swi)).index62,2938 -index(current_flag,1,system,library(dialect/swi)).index62,2938 - -library/dialect/swi/listing.pl,0 - -library/dialect/swi/os/dtoa.c,10181 -#define Long Long183,9944 -typedef unsigned Long ULong;ULong186,9983 -#define Bug(Bug191,10052 -#define MALLOC MALLOC214,10386 -#define PRIVATE_MEM PRIVATE_MEM219,10464 -#define PRIVATE_mem PRIVATE_mem221,10496 -static double private_mem[PRIVATE_mem], *pmem_next = private_mem;private_mem222,10564 -static double private_mem[PRIVATE_mem], *pmem_next = private_mem;pmem_next222,10564 -#undef IEEE_ArithIEEE_Arith225,10638 -#undef Avoid_UnderflowAvoid_Underflow226,10656 -#define IEEE_ArithIEEE_Arith228,10697 -#define IEEE_ArithIEEE_Arith231,10740 -#undef INFNAN_CHECKINFNAN_CHECK236,10809 -#define INFNAN_CHECKINFNAN_CHECK237,10829 -#undef INFNAN_CHECKINFNAN_CHECK240,10863 -#define NO_STRTOD_BIGCOMPNO_STRTOD_BIGCOMP241,10883 -#define DBL_DIG DBL_DIG249,10975 -#define DBL_MAX_10_EXP DBL_MAX_10_EXP250,10994 -#define DBL_MAX_EXP DBL_MAX_EXP251,11021 -#define FLT_RADIX FLT_RADIX252,11046 -#define DBL_DIG DBL_DIG256,11100 -#define DBL_MAX_10_EXP DBL_MAX_10_EXP257,11119 -#define DBL_MAX_EXP DBL_MAX_EXP258,11145 -#define FLT_RADIX FLT_RADIX259,11168 -#define DBL_MAX DBL_MAX260,11189 -#define DBL_DIG DBL_DIG264,11247 -#define DBL_MAX_10_EXP DBL_MAX_10_EXP265,11266 -#define DBL_MAX_EXP DBL_MAX_EXP266,11292 -#define FLT_RADIX FLT_RADIX267,11316 -#define DBL_MAX DBL_MAX268,11336 -#define LONG_MAX LONG_MAX272,11400 -#define CONST CONST289,11629 -#define CONST CONST291,11661 -Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined.IEEE_8087296,11776 -Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined.IEEE_MC68k296,11776 -Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined.VAX296,11776 -typedef union { double d; ULong L[2]; } U;d299,11853 -typedef union { double d; ULong L[2]; } U;__anon295::d299,11853 -typedef union { double d; ULong L[2]; } U;L299,11853 -typedef union { double d; ULong L[2]; } U;__anon295::L299,11853 -typedef union { double d; ULong L[2]; } U;U299,11853 -#define word0(word0302,11914 -#define word1(word1303,11941 -#define word0(word0305,11974 -#define word1(word1306,12001 -#define dval(dval308,12035 -#define STRTOD_DIGLIM STRTOD_DIGLIM311,12081 -#define strtod_diglim strtod_diglim317,12166 -#define Storeinc(Storeinc325,12444 -#define Storeinc(Storeinc328,12574 -#define Exp_shift Exp_shift339,12962 -#define Exp_shift1 Exp_shift1340,12984 -#define Exp_msk1 Exp_msk1341,13006 -#define Exp_msk11 Exp_msk11342,13035 -#define Exp_mask Exp_mask343,13064 -#define P P344,13093 -#define Nbits Nbits345,13106 -#define Bias Bias346,13123 -#define Emax Emax347,13141 -#define Emin Emin348,13159 -#define Exp_1 Exp_1349,13180 -#define Exp_11 Exp_11350,13206 -#define Ebits Ebits351,13232 -#define Frac_mask Frac_mask352,13249 -#define Frac_mask1 Frac_mask1353,13276 -#define Ten_pmax Ten_pmax354,13303 -#define Bletch Bletch355,13323 -#define Bndry_mask Bndry_mask356,13343 -#define Bndry_mask1 Bndry_mask1357,13371 -#define LSB LSB358,13399 -#define Sign_bit Sign_bit359,13413 -#define Log2P Log2P360,13441 -#define Tiny0 Tiny0361,13457 -#define Tiny1 Tiny1362,13473 -#define Quick_max Quick_max363,13489 -#define Int_max Int_max364,13510 -#define Avoid_UnderflowAvoid_Underflow366,13551 -#undef Sudden_UnderflowSudden_Underflow368,13618 -#define Flt_Rounds Flt_Rounds374,13694 -#define Flt_Rounds Flt_Rounds376,13730 -#undef Check_FLT_ROUNDSCheck_FLT_ROUNDS381,13805 -#define Check_FLT_ROUNDSCheck_FLT_ROUNDS382,13829 -#define Rounding Rounding384,13860 -#undef Check_FLT_ROUNDSCheck_FLT_ROUNDS388,13926 -#undef Honor_FLT_ROUNDSHonor_FLT_ROUNDS389,13950 -#undef SET_INEXACTSET_INEXACT390,13974 -#undef Sudden_UnderflowSudden_Underflow391,13993 -#define Sudden_UnderflowSudden_Underflow392,14018 -#undef Flt_RoundsFlt_Rounds394,14054 -#define Flt_Rounds Flt_Rounds395,14072 -#define Exp_shift Exp_shift396,14093 -#define Exp_shift1 Exp_shift1397,14115 -#define Exp_msk1 Exp_msk1398,14137 -#define Exp_msk11 Exp_msk11399,14166 -#define Exp_mask Exp_mask400,14195 -#define P P401,14224 -#define Nbits Nbits402,14237 -#define Bias Bias403,14254 -#define Emax Emax404,14270 -#define Emin Emin405,14287 -#define Exp_1 Exp_1406,14307 -#define Exp_11 Exp_11407,14333 -#define Ebits Ebits408,14359 -#define Frac_mask Frac_mask409,14434 -#define Frac_mask1 Frac_mask1410,14462 -#define Bletch Bletch411,14490 -#define Ten_pmax Ten_pmax412,14507 -#define Bndry_mask Bndry_mask413,14527 -#define Bndry_mask1 Bndry_mask1414,14556 -#define LSB LSB415,14585 -#define Sign_bit Sign_bit416,14599 -#define Log2P Log2P417,14627 -#define Tiny0 Tiny0418,14643 -#define Tiny1 Tiny1419,14666 -#define Quick_max Quick_max420,14682 -#define Int_max Int_max421,14703 -#undef Flt_RoundsFlt_Rounds423,14738 -#define Flt_Rounds Flt_Rounds424,14756 -#define Exp_shift Exp_shift425,14777 -#define Exp_shift1 Exp_shift1426,14799 -#define Exp_msk1 Exp_msk1427,14820 -#define Exp_msk11 Exp_msk11428,14845 -#define Exp_mask Exp_mask429,14874 -#define P P430,14899 -#define Nbits Nbits431,14912 -#define Bias Bias432,14929 -#define Emax Emax433,14946 -#define Emin Emin434,14963 -#define Exp_1 Exp_1435,14983 -#define Exp_11 Exp_11436,15009 -#define Ebits Ebits437,15031 -#define Frac_mask Frac_mask438,15047 -#define Frac_mask1 Frac_mask1439,15075 -#define Ten_pmax Ten_pmax440,15105 -#define Bletch Bletch441,15125 -#define Bndry_mask Bndry_mask442,15142 -#define Bndry_mask1 Bndry_mask1443,15173 -#define LSB LSB444,15204 -#define Sign_bit Sign_bit445,15224 -#define Log2P Log2P446,15248 -#define Tiny0 Tiny0447,15264 -#define Tiny1 Tiny1448,15283 -#define Quick_max Quick_max449,15299 -#define Int_max Int_max450,15320 -#define ROUND_BIASEDROUND_BIASED455,15405 -#define rounded_product(rounded_product459,15454 -#define rounded_quotient(rounded_quotient460,15502 -#define rounded_product(rounded_product467,15692 -#define rounded_quotient(rounded_quotient468,15728 -#define Big0 Big0471,15773 -#define Big1 Big1472,15831 -#define Pack_32Pack_32475,15872 -typedef struct BCinfo BCinfo;BCinfo478,15896 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };dp0480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::dp0480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };dp1480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::dp1480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };dplen480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::dplen480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };dsign480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::dsign480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };e0480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::e0480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };inexact480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::inexact480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };nd480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::nd480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };nd0480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::nd0480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };rounding480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::rounding480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };scale480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::scale480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };uflchk480,15934 -BCinfo { int dp0, dp1, dplen, dsign, e0, inexact, nd, nd0, rounding, scale, uflchk; };BCinfo::uflchk480,15934 -#define FFFFFFFF FFFFFFFF483,16040 -#define FFFFFFFF FFFFFFFF485,16117 -#undef ULLongULLong489,16175 -#undef Pack_32Pack_32491,16204 -#define Llong Llong500,16540 -#define ULLong ULLong503,16586 -#define ACQUIRE_DTOA_LOCK(ACQUIRE_DTOA_LOCK508,16675 -#define FREE_DTOA_LOCK(FREE_DTOA_LOCK509,16716 -#define Kmax Kmax512,16762 -Bigint {Bigint521,16961 - struct Bigint *next;next522,16970 - struct Bigint *next;Bigint::next522,16970 - int k, maxwds, sign, wds;k523,16992 - int k, maxwds, sign, wds;Bigint::k523,16992 - int k, maxwds, sign, wds;maxwds523,16992 - int k, maxwds, sign, wds;Bigint::maxwds523,16992 - int k, maxwds, sign, wds;sign523,16992 - int k, maxwds, sign, wds;Bigint::sign523,16992 - int k, maxwds, sign, wds;wds523,16992 - int k, maxwds, sign, wds;Bigint::wds523,16992 - ULong x[1];x524,17019 - ULong x[1];Bigint::x524,17019 - typedef struct Bigint Bigint;Bigint527,17037 - static Bigint *freelist[Kmax+1];freelist529,17069 -BallocBalloc532,17121 -BfreeBfree573,17943 -#define Bcopy(Bcopy596,18224 -multaddmultadd600,18343 -s2bs2b657,19202 -hi0bitshi0bits695,19831 -lo0bitslo0bits729,20218 -i2bi2b777,20723 -multmult793,20869 -#undef d0d01392,30225 -#undef d1d11393,30235 -#define Scale_Bit Scale_Bit1459,31492 -#define n_bigtens n_bigtens1460,31515 -#undef Need_HexdigNeed_Hexdig1473,31784 -#define Need_HexdigNeed_Hexdig1476,31842 -#define Need_HexdigNeed_Hexdig1482,31915 -#define USC USC1508,32315 -#define NAN_WORD0 NAN_WORD01518,32540 -#define NAN_WORD1 NAN_WORD11522,32595 -#define ULbits ULbits1617,34156 -#define kshift kshift1618,34174 -#define kmask kmask1619,34191 - -library/dialect/swi/os/libtai/BLURB,176 -can convert struct caldate, under the Gregorian calendar, to a modifiedcalendar14,677 -UTC, accounting for leap seconds, for accurate date and time display. Itseconds19,935 - -library/dialect/swi/os/libtai/caldate.h,224 -#define CALDATE_HCALDATE_H2,18 -struct caldate {caldate4,37 - long year;year5,54 - long year;caldate::year5,54 - int month;month6,67 - int month;caldate::month6,67 - int day;day7,80 - int day;caldate::day7,80 - -library/dialect/swi/os/libtai/caldate_fmjd.c,99 -void caldate_frommjd(struct caldate *cd, int64_t day, int *pwday, int *pyday)caldate_frommjd4,39 - -library/dialect/swi/os/libtai/caldate_fmt.c,71 -unsigned int caldate_fmt(char *s, struct caldate *cd)caldate_fmt4,39 - -library/dialect/swi/os/libtai/caldate_mjd.c,265 -static unsigned long times365[4] = { 0, 365, 730, 1095 } ;times3654,39 -static unsigned long times36524[4] = { 0, 36524UL, 73048UL, 109572UL } ;times365245,98 -static unsigned long montab[12] =montab6,171 -long caldate_mjd(struct caldate *cd)caldate_mjd10,322 - -library/dialect/swi/os/libtai/caldate_norm.c,66 -void caldate_normalize(struct caldate *cd)caldate_normalize4,39 - -library/dialect/swi/os/libtai/caldate_scan.c,73 -unsigned int caldate_scan(char *s, struct caldate *cd)caldate_scan4,39 - -library/dialect/swi/os/libtai/caldate_ster.c,60 -void caldate_easter(struct caldate *cd)caldate_easter4,39 - -library/dialect/swi/os/libtai/caltime.h,386 -#define CALTIME_HCALTIME_H2,18 -struct caltime {caltime6,59 - struct caldate date;date7,76 - struct caldate date;caltime::date7,76 - int hour;hour8,99 - int hour;caltime::hour8,99 - int minute;minute9,111 - int minute;caltime::minute9,111 - int second;second10,125 - int second;caltime::second10,125 - long offset;offset11,139 - long offset;caltime::offset11,139 - -library/dialect/swi/os/libtai/caltime_fmt.c,71 -unsigned int caltime_fmt(char *s, struct caltime *ct)caltime_fmt5,60 - -library/dialect/swi/os/libtai/caltime_scan.c,73 -unsigned int caltime_scan(char *s, struct caltime *ct)caltime_scan4,39 - -library/dialect/swi/os/libtai/caltime_tai.c,70 -void caltime_tai(struct caltime *ct, struct tai *t)caltime_tai8,119 - -library/dialect/swi/os/libtai/caltime_utc.c,94 -void caltime_utc(struct caltime *ct, struct tai *t, int *pwday, int *pyday)caltime_utc8,119 - -library/dialect/swi/os/libtai/CHANGES,0 - -library/dialect/swi/os/libtai/check.c,208 -char line[100];line8,118 -char *dayname[7] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" } ;dayname10,135 -char out[101];out12,209 -char x[TAI_PACK];x13,224 -main(int argc, char **argv)main16,247 - -library/dialect/swi/os/libtai/easter.c,151 -char *dayname[7] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" } ;dayname5,61 -char out[101];out7,135 -main(int argc, char **argv)main10,155 - -library/dialect/swi/os/libtai/FILES,0 - -library/dialect/swi/os/libtai/INSTALL,210 -Then, as root, enable leap second support:root13,253 -To use another compiler, edit conf-cc and conf-ld.compiler18,370 -The fifth is nowutc, which prints the current time in UTC. Your system'snowutc50,1316 - -library/dialect/swi/os/libtai/leapsecs.c,67 -char line[100];line11,206 -main(int argc, char**argv)main14,227 - -library/dialect/swi/os/libtai/leapsecs.h,155 -#define LEAPSECS_HLEAPSECS_H2,19 -#define GLOBAL GLOBAL11,222 -GLOBAL struct tai *leapsecs;leapsecs14,252 -GLOBAL int leapsecs_num;leapsecs_num15,281 - -library/dialect/swi/os/libtai/leapsecs_add.c,60 -void leapsecs_add(struct tai *t, int hit)leapsecs_add6,77 - -library/dialect/swi/os/libtai/leapsecs_init.c,82 -static int flaginit = 0;flaginit4,40 -int leapsecs_init(void)leapsecs_init6,66 - -library/dialect/swi/os/libtai/leapsecs_read.c,154 -#define GLOBALGLOBAL13,189 -#define O_BINARY O_BINARY17,244 -#define O_NDELAY O_NDELAY20,287 -int leapsecs_read(const char *file)leapsecs_read23,314 - -library/dialect/swi/os/libtai/leapsecs_sub.c,50 -int leapsecs_sub(struct tai *t)leapsecs_sub6,77 - -library/dialect/swi/os/libtai/Makefile.mak,74 -LIBOBJ= tai_add.obj tai_now.obj tai_pack.obj tai_sub.obj \LIBOBJ10,236 - -library/dialect/swi/os/libtai/nowutc.c,153 -struct taia now;now8,118 -struct tai sec;sec9,135 -struct caltime ct;ct10,151 -char x[TAIA_FMTFRAC];x12,171 -main(int argc, char **argv)main15,198 - -library/dialect/swi/os/libtai/README,0 - -library/dialect/swi/os/libtai/tai.h,385 -#define TAI_HTAI_H2,14 -typedef __int64 int64_t;int64_t5,48 -typedef unsigned __int64 uint64_t;uint64_t6,73 -#define LL(LL12,227 -#define ULL(ULL13,251 -#define LL(LL15,282 -#define ULL(ULL16,305 -struct tai {tai19,337 - uint64_t x;x20,350 - uint64_t x;tai::x20,350 -#define tai_approx(tai_approx26,459 -#define tai_less(tai_less30,643 -#define TAI_PACK TAI_PACK32,684 - -library/dialect/swi/os/libtai/tai_add.c,71 -void tai_add(struct tai *t, struct tai *u, struct tai *v)tai_add3,18 - -library/dialect/swi/os/libtai/tai_now.c,41 -void tai_now(struct tai *t)tai_now4,36 - -library/dialect/swi/os/libtai/tai_pack.c,52 -void tai_pack(char *s, struct tai *t)tai_pack3,18 - -library/dialect/swi/os/libtai/tai_sub.c,71 -void tai_sub(struct tai *t, struct tai *u, struct tai *v)tai_sub3,18 - -library/dialect/swi/os/libtai/tai_unpack.c,56 -void tai_unpack(char *s, struct tai *t)tai_unpack3,18 - -library/dialect/swi/os/libtai/taia.h,411 -#define TAIA_HTAIA_H2,15 -struct taia {taia6,49 - struct tai sec;sec7,63 - struct tai sec;taia::sec7,63 - unsigned long nano; /* 0...999999999 */nano8,81 - unsigned long nano; /* 0...999999999 */taia::nano8,81 - unsigned long atto; /* 0...999999999 */atto9,123 - unsigned long atto; /* 0...999999999 */taia::atto9,123 -#define TAIA_PACK TAIA_PACK24,599 -#define TAIA_FMTFRAC TAIA_FMTFRAC28,719 - -library/dialect/swi/os/libtai/taia_add.c,76 -void taia_add(struct taia *t, struct taia *u, struct taia *v)taia_add5,56 - -library/dialect/swi/os/libtai/taia_approx.c,52 -double taia_approx(struct taia *t)taia_approx3,19 - -library/dialect/swi/os/libtai/taia_fmtfrac.c,69 -unsigned int taia_fmtfrac(char *s, struct taia *t)taia_fmtfrac3,19 - -library/dialect/swi/os/libtai/taia_frac.c,48 -double taia_frac(struct taia *t)taia_frac3,19 - -library/dialect/swi/os/libtai/taia_half.c,62 -void taia_half(struct taia *t, struct taia *u)taia_half5,56 - -library/dialect/swi/os/libtai/taia_less.c,61 -int taia_less(struct taia *t, struct taia *u)taia_less5,56 - -library/dialect/swi/os/libtai/taia_now.c,104 -#define WINDOWS_LEAN_AND_MEAN WINDOWS_LEAN_AND_MEAN3,42 -void taia_now(struct taia *t)taia_now19,610 - -library/dialect/swi/os/libtai/taia_pack.c,55 -void taia_pack(char *s, struct taia *t)taia_pack3,19 - -library/dialect/swi/os/libtai/taia_sub.c,76 -void taia_sub(struct taia *t, struct taia *u, struct taia *v)taia_sub5,56 - -library/dialect/swi/os/libtai/taia_tai.c,60 -void taia_tai(struct taia *ta, struct tai *t)taia_tai3,19 - -library/dialect/swi/os/libtai/taia_unpack.c,59 -void taia_unpack(char *s, struct taia *t)taia_unpack3,19 - -library/dialect/swi/os/libtai/THANKS,0 - -library/dialect/swi/os/libtai/TODO,29 -test, test, test!test5,129 - -library/dialect/swi/os/libtai/VERSION,0 - -library/dialect/swi/os/libtai/yearcal.c,75 -char *montab[] = {montab5,61 -int main(int argc, char **argv)main20,219 - -library/dialect/swi/os/pl-buffer.c,352 -growBuffer(Buffer b, size_t minfree)growBuffer28,984 -#define discardable_buffer discardable_buffer63,1668 -#define buffer_ring buffer_ring64,1725 -#define current_buffer_id current_buffer_id65,1769 -findBuffer(int flags)findBuffer68,1832 -buffer_string(const char *s, int flags)buffer_string88,2141 -unfindBuffer(int flags)unfindBuffer99,2317 - -library/dialect/swi/os/pl-buffer.h,1975 -#define BUFFER_H_INCLUDEDBUFFER_H_INCLUDED26,984 -#define STATIC_BUFFER_SIZE STATIC_BUFFER_SIZE28,1011 -{ char * base; /* allocated base */base31,1060 -{ char * base; /* allocated base */__anon296::base31,1060 - char * top; /* pointer to top */top32,1098 - char * top; /* pointer to top */__anon296::top32,1098 - char * max; /* current location */max33,1135 - char * max; /* current location */__anon296::max33,1135 - char static_buffer[STATIC_BUFFER_SIZE];static_buffer34,1174 - char static_buffer[STATIC_BUFFER_SIZE];__anon296::static_buffer34,1174 -} tmp_buffer, *TmpBuffer;tmp_buffer35,1217 -} tmp_buffer, *TmpBuffer;TmpBuffer35,1217 -{ char * base; /* allocated base */base38,1259 -{ char * base; /* allocated base */__anon297::base38,1259 - char * top; /* pointer to top */top39,1297 - char * top; /* pointer to top */__anon297::top39,1297 - char * max; /* current location */max40,1334 - char * max; /* current location */__anon297::max40,1334 - char static_buffer[sizeof(char *)];static_buffer41,1373 - char static_buffer[sizeof(char *)];__anon297::static_buffer41,1373 -} MAY_ALIAS buffer, *Buffer;buffer42,1412 -} MAY_ALIAS buffer, *Buffer;Buffer42,1412 -#define addBuffer(addBuffer46,1485 -#define addMultipleBuffer(addMultipleBuffer56,1735 -#define allocFromBuffer(allocFromBuffer71,2144 -f__allocFromBuffer(Buffer b, size_t bytes)f__allocFromBuffer75,2243 -#define baseBuffer(baseBuffer89,2438 -#define topBuffer(topBuffer90,2488 -#define inBuffer(inBuffer91,2541 -#define fetchBuffer(fetchBuffer93,2644 -#define seekBuffer(seekBuffer95,2703 -#define sizeOfBuffer(sizeOfBuffer96,2782 -#define freeSpaceBuffer(freeSpaceBuffer97,2838 -#define entriesBuffer(entriesBuffer98,2888 -#define initBuffer(initBuffer99,2954 -#define emptyBuffer(emptyBuffer102,3098 -#define isEmptyBuffer(isEmptyBuffer103,3155 -#define popBuffer(popBuffer104,3212 -#define discardBuffer(discardBuffer107,3287 - -library/dialect/swi/os/pl-codelist.c,118 -codes_or_chars_to_buffer(term_t l, unsigned int flags, int wide, CVT_result *result)codes_or_chars_to_buffer41,1516 - -library/dialect/swi/os/pl-codelist.h,304 -#define PL_CODELIST_HPL_CODELIST_H2,22 -INIT_SEQ_STRING(size_t n)INIT_SEQ_STRING6,65 -EXTEND_SEQ_CODES(Word ptr, int c) {EXTEND_SEQ_CODES13,170 -EXTEND_SEQ_CHARS(Word ptr, int c) {EXTEND_SEQ_CHARS22,314 -CLOSE_SEQ_STRING(Word p, Word p0, term_t tail, term_t term, term_t l) {CLOSE_SEQ_STRING30,441 - -library/dialect/swi/os/pl-cstack.c,5512 -#define _WIN32_WINNT _WIN32_WINNT26,973 -#define SAVE_TRACES SAVE_TRACES40,1559 -#define BTRACE_DONE BTRACE_DONE47,1733 -#define UNW_LOCAL_ONLYUNW_LOCAL_ONLY48,1755 -#define MAX_DEPTH MAX_DEPTH51,1802 -{ char name[32]; /* function called */name54,1839 -{ char name[32]; /* function called */__anon298::name54,1839 - unw_word_t offset; /* offset in function */offset55,1881 - unw_word_t offset; /* offset in function */__anon298::offset55,1881 -} frame_info;frame_info56,1930 -{ const char *name; /* label of the backtrace */name59,1960 -{ const char *name; /* label of the backtrace */__anon299::name59,1960 - int depth; /* # frames collectec */depth60,2012 - int depth; /* # frames collectec */__anon299::depth60,2012 - frame_info frame[MAX_DEPTH]; /* per-frame info */frame61,2054 - frame_info frame[MAX_DEPTH]; /* per-frame info */__anon299::frame61,2054 -} btrace_stack;btrace_stack62,2108 -typedef struct btracebtrace64,2125 -{ btrace_stack dumps[SAVE_TRACES]; /* ring of buffers */dumps65,2147 -{ btrace_stack dumps[SAVE_TRACES]; /* ring of buffers */btrace::dumps65,2147 - int current; /* next to fill */current66,2205 - int current; /* next to fill */btrace::current66,2205 -} btrace;btrace67,2243 -btrace_destroy(struct btrace *bt)btrace_destroy71,2260 -get_trace_store(void)get_trace_store77,2326 -next_btrace_id(btrace *bt)next_btrace_id102,3130 -save_backtrace(const char *why)save_backtrace125,3523 -print_trace(btrace *bt, int me)print_trace150,4063 -print_backtrace(int last) /* 1..SAVE_TRACES */print_backtrace169,4440 -print_backtrace_named(const char *why)print_backtrace_named185,4696 -#define BTRACE_DONE BTRACE_DONE214,5279 -typedef struct btracebtrace225,5688 -{ char **symbols[SAVE_TRACES];symbols226,5710 -{ char **symbols[SAVE_TRACES];btrace::symbols226,5710 - const char *why[SAVE_TRACES];why227,5747 - const char *why[SAVE_TRACES];btrace::why227,5747 - size_t sizes[SAVE_TRACES];sizes228,5781 - size_t sizes[SAVE_TRACES];btrace::sizes228,5781 - int current;current229,5810 - int current;btrace::current229,5810 -} btrace;btrace230,5826 -btrace_destroy(struct btrace *bt)btrace_destroy234,5843 -get_trace_store(void)get_trace_store247,6009 -next_btrace_id(btrace *bt)next_btrace_id267,6345 -save_backtrace(const char *why)save_backtrace290,6738 -print_trace(btrace *bt, int me)print_trace309,7166 -print_backtrace(int last) /* 1..SAVE_TRACES */print_backtrace323,7437 -print_backtrace_named(const char *why)print_backtrace_named339,7693 -crashHandler(int sig)crashHandler371,8224 -initBackTrace(void)initBackTrace380,8444 -#define MAX_SYMBOL_LEN MAX_SYMBOL_LEN407,8933 -#define MAX_DEPTH MAX_DEPTH408,8961 -#define BTRACE_DONE BTRACE_DONE409,8982 -#define MAX_FUNCTION_NAME_LENGTH MAX_FUNCTION_NAME_LENGTH411,9005 -#define MAX_MODULE_NAME_LENGTH MAX_MODULE_NAME_LENGTH416,9198 -#define LOCK(LOCK418,9233 -#define UNLOCK(UNLOCK419,9268 -{ char name[MAX_FUNCTION_NAME_LENGTH]; /* function called */name422,9321 -{ char name[MAX_FUNCTION_NAME_LENGTH]; /* function called */__anon300::name422,9321 - DWORD64 offset; /* offset in function */offset423,9382 - DWORD64 offset; /* offset in function */__anon300::offset423,9382 - char module[MAX_MODULE_NAME_LENGTH]; /* module of function */module424,9427 - char module[MAX_MODULE_NAME_LENGTH]; /* module of function */__anon300::module424,9427 - DWORD module_reason; /* reason for module being absent */module_reason425,9491 - DWORD module_reason; /* reason for module being absent */__anon300::module_reason425,9491 -} frame_info;frame_info426,9568 -{ const char *name; /* label of the backtrace */name429,9598 -{ const char *name; /* label of the backtrace */__anon301::name429,9598 - int depth; /* # frames collectec */depth430,9649 - int depth; /* # frames collectec */__anon301::depth430,9649 - frame_info frame[MAX_DEPTH]; /* per-frame info */frame431,9690 - frame_info frame[MAX_DEPTH]; /* per-frame info */__anon301::frame431,9690 -} btrace_stack;btrace_stack432,9743 -typedef struct btracebtrace434,9760 -{ btrace_stack dumps[SAVE_TRACES]; /* ring of buffers */dumps435,9782 -{ btrace_stack dumps[SAVE_TRACES]; /* ring of buffers */btrace::dumps435,9782 - int current; /* next to fill */current436,9839 - int current; /* next to fill */btrace::current436,9839 -} btrace;btrace437,9876 -btrace_destroy(struct btrace *bt)btrace_destroy440,9892 -get_trace_store(void)get_trace_store446,9958 -next_btrace_id(btrace *bt)next_btrace_id465,10293 -int backtrace(btrace_stack* trace, PEXCEPTION_POINTERS pExceptionInfo)backtrace486,10680 -win_save_backtrace(const char *why, PEXCEPTION_POINTERS pExceptionInfo)win_save_backtrace614,14612 -void save_backtrace(const char *why)save_backtrace627,14909 -print_trace(btrace *bt, int me)print_trace633,14995 -print_backtrace(int last) /* 1..SAVE_TRACES */print_backtrace654,15471 -print_backtrace_named(const char *why)print_backtrace_named670,15727 -static LONG WINAPI crashHandler(PEXCEPTION_POINTERS pExceptionInfo)crashHandler691,16113 -initBackTrace(void)initBackTrace700,16326 -save_backtrace(const char *why)save_backtrace715,16559 -btrace_destroy(struct btrace *bt)btrace_destroy720,16601 -print_backtrace(int last)print_backtrace725,16645 -print_backtrace_named(const char *why)print_backtrace_named731,16775 -initBackTrace(void)initBackTrace737,16918 - -library/dialect/swi/os/pl-cstack.h,57 -#define PL_CSTACK_H_INCLUDEDPL_CSTACK_H_INCLUDED26,988 - -library/dialect/swi/os/pl-ctype.c,3284 -#define CTX_CHAR CTX_CHAR46,1479 -#define CTX_CODE CTX_CODE47,1518 -{ atom_t name; /* name of the class */name50,1572 -{ atom_t name; /* name of the class */__anon302::name50,1572 - int (*test)(wint_t chr); /* boolean */test51,1613 - int (*test)(wint_t chr); /* boolean */__anon302::test51,1613 - int (*reverse)(wint_t chr); /* reverse mapping */reverse52,1655 - int (*reverse)(wint_t chr); /* reverse mapping */__anon302::reverse52,1655 - short arity; /* arity of class (i.e. lower('A')) */arity53,1708 - short arity; /* arity of class (i.e. lower('A')) */__anon302::arity53,1708 - short ctx_type; /* CTX_* */ctx_type54,1765 - short ctx_type; /* CTX_* */__anon302::ctx_type54,1765 -} char_type;char_type55,1797 -#define ENUM_NONE ENUM_NONE57,1811 -#define ENUM_CHAR ENUM_CHAR58,1834 -#define ENUM_CLASS ENUM_CLASS59,1857 -#define ENUM_BOTH ENUM_BOTH60,1881 -{ int current; /* current character */current63,1920 -{ int current; /* current character */__anon303::current63,1920 - const char_type *class; /* current class */class64,1961 - const char_type *class; /* current class */__anon303::class64,1961 - int do_enum; /* what to enumerate */do_enum65,2010 - int do_enum; /* what to enumerate */__anon303::do_enum65,2010 -} generator;generator66,2051 -iswhite(wint_t chr)iswhite70,2077 -fiscsym(wint_t chr)fiscsym76,2148 -fiscsymf(wint_t chr)fiscsymf82,2221 -iseof(wint_t chr)iseof87,2294 -iseol(wint_t chr)iseol92,2354 -isnl(wint_t chr)isnl97,2419 -isperiod(wint_t chr)isperiod102,2472 -isquote(wint_t chr)isquote107,2551 -fupper(wint_t chr)fupper112,2630 -flower(wint_t chr)flower117,2713 -ftoupper(wint_t chr)ftoupper122,2796 -ftolower(wint_t chr)ftolower127,2855 -fparen(wint_t chr)fparen132,2914 -rparen(wint_t chr)rparen147,3092 -fdigit(wint_t chr)fdigit162,3270 -rdigit(wint_t d)rdigit170,3376 -fxdigit(wint_t chr)fxdigit178,3470 -rxdigit(wint_t d)rxdigit192,3719 -#define mkfunction(mkfunction202,3853 -static const char_type char_types[] =char_types216,4147 -char_type_by_name(atom_t name, int arity)char_type_by_name252,5558 -advanceGen(generator *gen)advanceGen265,5765 -unify_char_type(term_t type, const char_type *ct, int context, int how)unify_char_type280,5970 -do_char_type(term_t chr, term_t class, control_t h, int how)do_char_type303,6452 -init_tout(PL_chars_t *t, size_t len)init_tout589,13281 -get_chr_from_text(const PL_chars_t *t, size_t index)get_chr_from_text617,13898 -modify_case_atom(term_t in, term_t out, int down)modify_case_atom631,14157 -write_normalize_space(IOSTREAM *out, term_t in)write_normalize_space757,16862 -init_locale(void)init_locale847,19064 -{ int category;category865,19441 -{ int category;__anon304::category865,19441 - const char *name;name866,19457 - const char *name;__anon304::name866,19457 -} lccat;lccat867,19477 -static lccat lccats[] =lccats869,19487 -#define init_locale(init_locale932,20721 -{ const char *name;name993,23378 -{ const char *name;__anon305::name993,23378 - IOENC encoding;encoding994,23398 - IOENC encoding;__anon305::encoding994,23398 -} enc_map;enc_map995,23416 -static const enc_map map[] =map997,23428 -initEncoding(void)initEncoding1008,23692 -initCharTypes(void)initCharTypes1059,24574 - -library/dialect/swi/os/pl-ctype.h,1274 -#define CT CT26,1049 -#define SP SP27,1089 -#define SO SO28,1117 -#define SY SY29,1154 -#define PU PU30,1193 -#define DQ DQ31,1237 -#define SQ SQ32,1272 -#define BQ BQ33,1307 -#define UC UC34,1340 -#define LC LC35,1382 -#define DI DI36,1424 -#define isControl(isControl38,1453 -#define isBlank(isBlank39,1519 -#define isGraph(isGraph40,1583 -#define isDigit(isDigit41,1647 -#define isLower(isLower42,1711 -#define isUpper(isUpper43,1775 -#define isSymbol(isSymbol44,1839 -#define isPunct(isPunct45,1904 -#define isSolo(isSolo46,1968 -#define isAlpha(isAlpha47,2031 -#define isLetter(isLetter48,2095 -#define isSign(isSign49,2142 -#define toLower(toLower51,2188 -#define makeLower(makeLower52,2225 -#define matchingBracket(matchingBracket54,2293 -#define Control(Control57,2395 -#define PlCharType(PlCharType67,2594 -#define isControlW(isControlW70,2695 -#define isBlankW(isBlankW71,2759 -#define isDigitW(isDigitW72,2821 -#define isLowerW(isLowerW73,2869 -#define isUpperW(isUpperW74,2931 -#define isSymbolW(isSymbolW75,2993 -#define isPunctW(isPunctW76,3042 -#define isSoloW(isSoloW77,3090 -#define isAlphaW(isAlphaW78,3137 -#define isLetterW(isLetterW79,3199 -#define toLowerW(toLowerW82,3302 -#define makeLowerW(makeLowerW83,3377 - -library/dialect/swi/os/pl-dtoa.c,459 -#define IEEE_MC68k IEEE_MC68k29,1025 -#define IEEE_8087 IEEE_808731,1052 -#define MALLOC MALLOC34,1080 -#define FREE FREE35,1105 -#define Long Long42,1399 -#define MULTIPLE_THREADSMULTIPLE_THREADS45,1451 -static pthread_mutex_t mutex_0 = PTHREAD_MUTEX_INITIALIZER;mutex_050,1546 -static pthread_mutex_t mutex_1 = PTHREAD_MUTEX_INITIALIZER;mutex_151,1606 -ACQUIRE_DTOA_LOCK(int n)ACQUIRE_DTOA_LOCK54,1686 -FREE_DTOA_LOCK(int n)FREE_DTOA_LOCK62,1824 - -library/dialect/swi/os/pl-dtoa.h,165 -#define PL_DTOA_H_INCLUDEDPL_DTOA_H_INCLUDED26,986 -#undef dtoadtoa29,1026 -#define dtoa dtoa31,1045 -#undef strtodstrtod33,1151 -#define strtod strtod35,1172 - -library/dialect/swi/os/pl-error.c,2262 -void fatalError(const char *fm, ...) {exit(1);}fatalError9,105 -PL_get_nchars_ex(term_t t, size_t *len, char **s, unsigned int flags)PL_get_nchars_ex17,308 -PL_get_chars_ex(term_t t, char **s, unsigned int flags)PL_get_chars_ex23,442 -#undef PL_get_atom_exPL_get_atom_ex28,559 -PL_get_atom_ex__LD(term_t t, atom_t *a ARG_LD)PL_get_atom_ex__LD31,586 -PL_get_atom_ex(term_t t, atom_t *a)PL_get_atom_ex39,739 -PL_get_integer_ex(term_t t, int *i)PL_get_integer_ex49,891 -PL_get_long_ex(term_t t, long *i)PL_get_long_ex61,1133 -PL_get_int64_ex(term_t t, int64_t *i)PL_get_int64_ex73,1371 -PL_get_intptr_ex(term_t t, intptr_t *i)PL_get_intptr_ex85,1617 -PL_get_pointer_ex(term_t t, void **i)PL_get_pointer_ex95,1815 -PL_get_size_ex(term_t t, size_t *i)PL_get_size_ex106,2012 -PL_get_bool_ex(term_t t, int *ip)PL_get_bool_ex128,2437 -PL_get_float_ex(term_t t, double *f)PL_get_float_ex137,2579 -PL_get_char_ex(term_t t, int *p, int eof)PL_get_char_ex146,2725 -PL_unify_list_ex(term_t l, term_t h, term_t t)PL_unify_list_ex155,2884 -PL_unify_nil_ex(term_t l)PL_unify_nil_ex167,3077 -PL_get_list_ex(term_t l, term_t h, term_t t)PL_get_list_ex179,3242 -PL_get_nil_ex(term_t l)PL_get_nil_ex190,3430 -PL_get_module_ex(term_t name, module_t *m)PL_get_module_ex202,3591 -PL_unify_bool_ex(term_t t, int val)PL_unify_bool_ex210,3749 -PL_instantiation_error(term_t actual)PL_instantiation_error230,4148 -PL_uninstantiation_error(term_t actual)PL_uninstantiation_error235,4246 -PL_representation_error(const char *resource)PL_representation_error240,4359 -PL_type_error(const char *expected, term_t actual)PL_type_error250,4541 -PL_domain_error(const char *expected, term_t actual)PL_domain_error256,4668 -PL_existence_error(const char *type, term_t actual)PL_existence_error266,4863 -PL_permission_error(const char *op, const char *type, term_t obj)PL_permission_error276,5056 -PL_resource_error(const char *resource)PL_resource_error289,5320 -PL_no_memory(void)PL_no_memory299,5496 -notImplemented(char *name, int arity)notImplemented306,5586 -#define OK_RECURSIVE OK_RECURSIVE318,6097 -printMessage(atom_t severity, ...)printMessage321,6126 -int PL_error(const char *pred, int arity, const char *msg, PL_error_code id, ...)PL_error363,7245 - -library/dialect/swi/os/pl-error.h,2951 -#define PL_ERROR_H PL_ERROR_H26,977 -#define COMMON(COMMON29,1014 -{ ERR_NO_ERROR = 0,ERR_NO_ERROR33,1068 - ERR_DOMAIN, /* atom_t domain, term_t value */ERR_DOMAIN35,1139 - ERR_EXISTENCE, /* atom_t type, term_t obj */ERR_EXISTENCE36,1189 - ERR_FILE_OPERATION, /* atom_t action, atom_t type, term_t */ERR_FILE_OPERATION37,1237 - ERR_FORMAT, /* message */ERR_FORMAT38,1301 - ERR_FORMAT_ARG, /* seq, term */ERR_FORMAT_ARG39,1331 - ERR_INSTANTIATION, /* void */ERR_INSTANTIATION40,1366 - ERR_NOMEM, /* void */ERR_NOMEM41,1399 - ERR_NOT_IMPLEMENTED, /* const char *what */ERR_NOT_IMPLEMENTED42,1425 - ERR_PERMISSION, /* atom_t type, atom_t op, term_t obj*/ERR_PERMISSION43,1472 - ERR_REPRESENTATION, /* atom_t what */ERR_REPRESENTATION44,1531 - ERR_RESOURCE, /* atom_t resource */ERR_RESOURCE45,1572 - ERR_SHELL_FAILED, /* term_t command */ERR_SHELL_FAILED46,1612 - ERR_SHELL_SIGNALLED, /* term_t command, int signal */ERR_SHELL_SIGNALLED47,1654 - ERR_STREAM_OP, /* atom_t action, term_t obj */ERR_STREAM_OP48,1711 - ERR_SYSCALL, /* void */ERR_SYSCALL49,1761 - ERR_TIMEOUT, /* op, object */ERR_TIMEOUT50,1789 - ERR_TYPE, /* atom_t expected, term_t value */ERR_TYPE51,1823 - ERR_UNINSTANTIATION, /* int argn, term_t term */ERR_UNINSTANTIATION52,1873 - ERR_AR_OVERFLOW, /* void */ERR_AR_OVERFLOW55,1967 - ERR_AR_TYPE, /* atom_t expected, Number value */ERR_AR_TYPE56,1998 - ERR_AR_DOMAIN, /* atom_t domain, Number value */ERR_AR_DOMAIN57,2051 - ERR_AR_UNDEF, /* void */ERR_AR_UNDEF58,2103 - ERR_AR_UNDERFLOW, /* void */ERR_AR_UNDERFLOW59,2132 - ERR_PTR_TYPE, /* atom_t expected, Word value */ERR_PTR_TYPE60,2164 - ERR_BUSY, /* mutexes */ERR_BUSY61,2216 - ERR_CHARS_TYPE, /* char *, term */ERR_CHARS_TYPE62,2244 - ERR_CLOSED_STREAM, /* IOSTREAM * */ERR_CLOSED_STREAM63,2282 - ERR_DDE_OP, /* op, error */ERR_DDE_OP64,2321 - ERR_DIV_BY_ZERO, /* void */ERR_DIV_BY_ZERO65,2353 - ERR_EVALUATION, /* atom_t what */ERR_EVALUATION66,2384 - ERR_FAILED, /* predicate_t proc */ERR_FAILED67,2421 - ERR_MODIFY_STATIC_PROC, /* predicate_t proc */ERR_MODIFY_STATIC_PROC68,2460 - ERR_MODIFY_THREAD_LOCAL_PROC, /* Procedure proc */ERR_MODIFY_THREAD_LOCAL_PROC69,2509 - ERR_NOT_EVALUABLE, /* functor_t func */ERR_NOT_EVALUABLE70,2562 - ERR_NOT_IMPLEMENTED_PROC, /* name, arity */ERR_NOT_IMPLEMENTED_PROC71,2605 - ERR_IMPORT_PROC, /* proc, dest, [already-from] */ERR_IMPORT_PROC72,2651 - ERR_OCCURS_CHECK, /* Word, Word */ERR_OCCURS_CHECK73,2704 - ERR_PERMISSION_PROC, /* op, type, Definition */ERR_PERMISSION_PROC74,2742 - ERR_SHARED_OBJECT_OP, /* op, error */ERR_SHARED_OBJECT_OP75,2793 - ERR_SIGNALLED, /* int sig, char *name */ERR_SIGNALLED76,2834 - ERR_SYNTAX, /* what */ERR_SYNTAX77,2878 - ERR_UNDEFINED_PROC /* Definition def */ERR_UNDEFINED_PROC78,2905 -} PL_error_code;PL_error_code79,2948 -#define MSG_ERRNO MSG_ERRNO81,2966 - -library/dialect/swi/os/pl-file.c,15990 -#define NEEDS_SWINSOCKNEEDS_SWINSOCK44,1733 -#define LOCK(LOCK74,2237 -#define UNLOCK(UNLOCK75,2287 -#undef LD LD77,2323 -#define LD LD78,2369 -typedef int (*property0_t)(IOSTREAM *s ARG_LD);property0_t82,2521 -typedef int (*property_t)(IOSTREAM *s, term_t prop ARG_LD);property_t83,2569 -static PL_blob_t stream_blob;stream_blob87,2714 -const atom_t standardStreams[] =standardStreams89,2745 -standardStreamIndexFromName(atom_t name)standardStreamIndexFromName101,2986 -standardStreamIndexFromStream(IOSTREAM *s)standardStreamIndexFromStream114,3183 -static Table streamAliases; /* alias --> stream */streamAliases139,3647 -static Table streamContext; /* stream --> extra data */streamContext140,3699 -typedef struct _alias_alias142,3757 -{ struct _alias *next;next143,3779 -{ struct _alias *next;_alias::next143,3779 - atom_t name;name144,3802 - atom_t name;_alias::name144,3802 -} alias;alias145,3817 -#define IO_TELL IO_TELL148,3828 -#define IO_SEE IO_SEE149,3875 -{ alias *alias_head;alias_head152,3937 -{ alias *alias_head;__anon307::alias_head152,3937 - alias *alias_tail;alias_tail153,3958 - alias *alias_tail;__anon307::alias_tail153,3958 - atom_t filename; /* associated filename */filename154,3979 - atom_t filename; /* associated filename */__anon307::filename154,3979 - unsigned flags;flags155,4026 - unsigned flags;__anon307::flags155,4026 -} stream_context;stream_context156,4044 -getStreamContext(IOSTREAM *s)getStreamContext160,4088 -getExistingStreamContext(IOSTREAM *s)getExistingStreamContext177,4491 -aliasStream(IOSTREAM *s, atom_t name)aliasStream185,4616 -unaliasStream(IOSTREAM *s, atom_t name)unaliasStream214,5203 -freeStream(IOSTREAM *s)freeStream268,6214 -setFileNameStream_unlocked(IOSTREAM *s, atom_t name)setFileNameStream_unlocked316,7248 -setFileNameStream(IOSTREAM *s, atom_t name)setFileNameStream329,7525 -fileNameStream(IOSTREAM *s)fileNameStream340,7683 -initIO(void)initIO355,7868 -getStream(IOSTREAM *s)getStream411,9177 -tryGetStream(IOSTREAM *s)tryGetStream424,9402 -releaseStream(IOSTREAM *s)releaseStream437,9627 -#define getStream(getStream444,9722 -#define tryGetStream(tryGetStream445,9747 -#define releaseStream(releaseStream446,9775 -PL_release_stream(IOSTREAM *s)PL_release_stream451,9824 -no_stream(term_t t, atom_t name)no_stream467,10093 -not_a_stream(term_t t)not_a_stream475,10260 -symbol_no_stream(atom_t symbol)symbol_no_stream480,10368 -symbol_not_a_stream(atom_t symbol)symbol_not_a_stream492,10552 -typedef struct stream_refstream_ref505,10782 -{ IOSTREAM *read;read506,10808 -{ IOSTREAM *read;stream_ref::read506,10808 - IOSTREAM *write;write507,10826 - IOSTREAM *write;stream_ref::write507,10826 -} stream_ref;stream_ref508,10845 -write_stream_ref(IOSTREAM *s, atom_t aref, int flags)write_stream_ref512,10872 -acquire_stream_ref(atom_t aref)acquire_stream_ref528,11238 -release_stream_ref(atom_t aref)release_stream_ref539,11436 -save_stream_ref(atom_t aref, IOSTREAM *fd)save_stream_ref556,11788 -load_stream_ref(IOSTREAM *fd)load_stream_ref566,12008 -static PL_blob_t stream_blob =stream_blob573,12099 -#define SH_ERRORS SH_ERRORS586,12291 -#define SH_ALIAS SH_ALIAS587,12339 -#define SH_UNLOCKED SH_UNLOCKED588,12383 -#define SH_OUTPUT SH_OUTPUT589,12437 -#define SH_INPUT SH_INPUT590,12494 -get_stream_handle__LD(atom_t a, IOSTREAM **sp, int flags ARG_LD)get_stream_handle__LD593,12562 -#define get_stream_handle(get_stream_handle667,14025 -term_stream_handle(term_t t, IOSTREAM **s, int flags ARG_LD)term_stream_handle672,14125 -PL_get_stream_handle(term_t t, IOSTREAM **s)PL_get_stream_handle683,14306 -unify_stream_ref(term_t t, IOSTREAM *s)unify_stream_ref691,14439 -PL_unify_stream_or_alias(term_t t, IOSTREAM *s)PL_unify_stream_or_alias712,14824 -PL_unify_stream(term_t t, IOSTREAM *s)PL_unify_stream735,15231 -_PL_streams(void) /* Suser_output and Suser_error */_PL_streams745,15445 -{ S_DONTCARE = 0,S_DONTCARE765,16206 - S_TEXT,S_TEXT766,16224 - S_BINARYS_BINARY767,16234 -} s_type;s_type768,16245 -checkStreamType(s_type text, IOSTREAM *s, atom_t *error ARG_LD)checkStreamType772,16268 -getOutputStream__LD(term_t t, s_type text, IOSTREAM **stream ARG_LD)getOutputStream__LD796,16885 -getTextOutputStream__LD(term_t t, IOSTREAM **stream ARG_LD)getTextOutputStream__LD840,17780 -getBinaryOutputStream__LD(term_t t, IOSTREAM **stream ARG_LD)getBinaryOutputStream__LD846,17893 -getInputStream__LD(term_t t, s_type text, IOSTREAM **stream ARG_LD)getInputStream__LD852,18017 -getTextInputStream__LD(term_t t, IOSTREAM **stream ARG_LD)getTextInputStream__LD895,18903 -getBinaryInputStream__LD(term_t t, IOSTREAM **stream ARG_LD)getBinaryInputStream__LD900,19025 -isConsoleStream(IOSTREAM *s)isConsoleStream966,20912 -#define isConsoleStream(isConsoleStream972,21048 -reportStreamError(IOSTREAM *s)reportStreamError977,21094 -streamStatus(IOSTREAM *s)streamStatus1056,22775 -ttybuf ttytab; /* saved terminal status on entry */ttytab1072,23057 -int ttymode; /* Current tty mode */ttymode1073,23112 -typedef struct input_context * InputContext;InputContext1075,23151 -typedef struct output_context * OutputContext;OutputContext1076,23196 -struct input_contextinput_context1078,23244 -{ IOSTREAM * stream; /* pushed input */stream1079,23265 -{ IOSTREAM * stream; /* pushed input */input_context::stream1079,23265 - atom_t type; /* Type of input */type1080,23324 - atom_t type; /* Type of input */input_context::type1080,23324 - atom_t term_file; /* old term_position file */term_file1081,23361 - atom_t term_file; /* old term_position file */input_context::term_file1081,23361 - int term_line; /* old term_position line */term_line1082,23430 - int term_line; /* old term_position line */input_context::term_line1082,23430 - InputContext previous; /* previous context */previous1083,23499 - InputContext previous; /* previous context */input_context::previous1083,23499 -struct output_contextoutput_context1087,23567 -{ IOSTREAM * stream; /* pushed output */stream1088,23589 -{ IOSTREAM * stream; /* pushed output */output_context::stream1088,23589 - OutputContext previous; /* previous context */previous1089,23649 - OutputContext previous; /* previous context */output_context::previous1089,23649 -#define input_context_stack input_context_stack1092,23716 -#define output_context_stack output_context_stack1093,23766 -dieIO()dieIO1098,23895 -closeStream(IOSTREAM *s)closeStream1116,24434 -closeFiles(int all)closeFiles1139,24857 -protocol(const char *str, size_t n)protocol1171,25411 -push_input_context(atom_t type)push_input_context1190,25759 -pop_input_context(void)pop_input_context1208,26128 -pushOutputContext(void)pushOutputContext1281,27639 -popOutputContext(void)popOutputContext1292,27859 -setupOutputRedirect(term_t to, redir_context *ctx, int redir)setupOutputRedirect1311,28229 -closeOutputRedirect(redir_context *ctx)closeOutputRedirect1379,30078 -discardOutputRedirect(redir_context *ctx)discardOutputRedirect1429,31342 -PL_write_prompt(int dowrite)PL_write_prompt1503,33380 -Sgetcode_intr(IOSTREAM *s, int signals)Sgetcode_intr1534,34127 -getSingleChar(IOSTREAM *stream, int signals)getSingleChar1557,34496 -#define DEL DEL1601,35617 -readLine(IOSTREAM *in, IOSTREAM *out, char *buffer)readLine1605,35646 -PL_current_input()PL_current_input1648,36420 -PL_current_output()PL_current_output1655,36491 -openProtocol(term_t f, int appnd)openProtocol1662,36564 -noprotocol(void)noprotocol1685,36978 -setCloseOnExec(IOSTREAM *s, int val)setCloseOnExec1729,37615 -set_stream(IOSTREAM *s, term_t stream, atom_t aname, term_t a ARG_LD)set_stream1764,38259 -#define SIO_ABUF SIO_ABUF1786,38804 -typedef struct set_stream_infoset_stream_info2007,44228 -{ atom_t name;name2008,44259 -{ atom_t name;set_stream_info::name2008,44259 - int flags;flags2009,44274 - int flags;set_stream_info::flags2009,44274 -} set_stream_info;set_stream_info2010,44290 -#define SS_READ SS_READ2012,44310 -#define SS_WRITE SS_WRITE2013,44332 -#define SS_BOTH SS_BOTH2014,44354 -#define SS_NOPAIR SS_NOPAIR2015,44390 -#define SS_INFO(SS_INFO2017,44423 -static const set_stream_info ss_info[] =ss_info2019,44469 -#define HAVE_FTRUNCATEHAVE_FTRUNCATE2109,47079 -tellString(char **s, size_t *size, IOENC enc)tellString2155,47959 -toldString(void)toldString2169,48164 -typedef int SOCKET;SOCKET2217,49473 -#define INVALID_SOCKET INVALID_SOCKET2218,49493 -#define Swinsock(Swinsock2219,49519 -#define NFDS(NFDS2220,49550 -#define NFDS(NFDS2222,49609 -typedef struct fdentryfdentry2225,49635 -{ SOCKET fd;fd2226,49658 -{ SOCKET fd;fdentry::fd2226,49658 - term_t stream;stream2227,49671 - term_t stream;fdentry::stream2227,49671 - struct fdentry *next;next2228,49688 - struct fdentry *next;fdentry::next2228,49688 -} fdentry;fdentry2229,49712 -#define MAX_PENDING MAX_PENDING2370,52796 -re_buffer(IOSTREAM *s, const char *from, size_t len)re_buffer2373,52853 -mbsnrtowcs(wchar_t *dest, const char **src,mbsnrtowcs2391,53212 -skip_cr(IOSTREAM *s)skip_cr2427,54000 -put_byte(term_t stream, term_t byte ARG_LD)put_byte2679,59060 -put_code(term_t stream, term_t chr ARG_LD)put_code2721,59814 -get_nonblank(term_t in, term_t chr ARG_LD)get_nonblank2816,61441 -skip(term_t in, term_t chr ARG_LD)skip2875,62451 -get_byte2(term_t in, term_t chr ARG_LD)get_byte22957,63884 -get_code2(term_t in, term_t chr ARG_LD)get_code23015,64886 -get_char2(term_t in, term_t chr ARG_LD)get_char23067,65844 -prompt1(atom_t prompt)prompt13213,68513 -PrologPrompt()PrologPrompt3244,69064 -tab(term_t out, term_t spaces ARG_LD)tab3261,69349 -static struct encnameencname3311,70065 -{ IOENC code;code3312,70087 -{ IOENC code;encname::code3312,70087 - atom_t name;name3313,70102 - atom_t name;encname::name3313,70102 -} encoding_names[] =encoding_names3314,70117 -atom_to_encoding(atom_t a)atom_to_encoding3329,70505 -encoding_to_atom(IOENC enc)encoding_to_atom3342,70682 -bad_encoding(const char *msg, atom_t name)bad_encoding3348,70760 -fn_to_atom(const char *fn)fn_to_atom3365,71348 -static const opt_spec open4_options[] =open4_options3387,71833 -openStream(term_t file, term_t mode, term_t options)openStream3409,72378 -findStreamFromFile(atom_t name, unsigned int flags)findStreamFromFile3744,81007 -pl_see(term_t f)pl_see3766,81366 -pl_seen(void)pl_seen3807,82025 -do_tell(term_t f, atom_t m)do_tell3880,83518 -Swrite_null(void *handle, char *buf, size_t size)Swrite_null4005,86071 -Sread_null(void *handle, char *buf, size_t size)Sread_null4014,86185 -Sseek_null(void *handle, long offset, int whence)Sseek_null4024,86306 -Sclose_null(void *handle)Sclose_null4039,86526 -static const IOFUNCTIONS nullFunctions =nullFunctions4046,86585 -do_close(IOSTREAM *s, int force)do_close4069,87003 -pl_close(term_t stream, int force ARG_LD)pl_close4094,87401 -static const opt_spec close2_options[] =close2_options4139,88252 -stream_file_name_propery(IOSTREAM *s, term_t prop ARG_LD)stream_file_name_propery4171,88861 -stream_mode_property(IOSTREAM *s, term_t prop ARG_LD)stream_mode_property4185,89095 -stream_input_prop(IOSTREAM *s ARG_LD)stream_input_prop4206,89473 -stream_output_prop(IOSTREAM *s ARG_LD)stream_output_prop4214,89587 -stream_alias_prop(IOSTREAM *s, term_t prop ARG_LD)stream_alias_prop4226,89934 -stream_position_prop(IOSTREAM *s, term_t prop ARG_LD)stream_position_prop4257,90561 -stream_end_of_stream_prop(IOSTREAM *s, term_t prop ARG_LD)stream_end_of_stream_prop4274,90904 -stream_eof_action_prop(IOSTREAM *s, term_t prop ARG_LD)stream_eof_action_prop4293,91227 -#define S_ISREG(S_ISREG4312,91573 -stream_reposition_prop(IOSTREAM *s, term_t prop ARG_LD)stream_reposition_prop4316,91635 -stream_close_on_abort_prop(IOSTREAM *s, term_t prop ARG_LD)stream_close_on_abort_prop4340,92043 -stream_type_prop(IOSTREAM *s, term_t prop ARG_LD)stream_type_prop4348,92191 -stream_file_no_prop(IOSTREAM *s, term_t prop ARG_LD)stream_file_no_prop4354,92333 -stream_tty_prop(IOSTREAM *s, term_t prop ARG_LD)stream_tty_prop4365,92500 -stream_bom_prop(IOSTREAM *s, term_t prop ARG_LD)stream_bom_prop4376,92668 -stream_newline_prop(IOSTREAM *s, term_t prop ARG_LD)stream_newline_prop4387,92833 -stream_encoding_prop(IOSTREAM *s, term_t prop ARG_LD)stream_encoding_prop4401,93104 -stream_locale_prop(IOSTREAM *s, term_t prop ARG_LD)stream_locale_prop4408,93250 -stream_reperror_prop(IOSTREAM *s, term_t prop ARG_LD)stream_reperror_prop4416,93405 -stream_buffer_prop(IOSTREAM *s, term_t prop ARG_LD)stream_buffer_prop4431,93657 -stream_buffer_size_prop(IOSTREAM *s, term_t prop ARG_LD)stream_buffer_size_prop4446,93930 -stream_timeout_prop(IOSTREAM *s, term_t prop ARG_LD)stream_timeout_prop4455,94097 -stream_nlink_prop(IOSTREAM *s, term_t prop ARG_LD)stream_nlink_prop4464,94297 -stream_close_on_exec_prop(IOSTREAM *s, term_t prop ARG_LD)stream_close_on_exec_prop4479,94537 -{ functor_t functor; /* functor of property */functor4511,95146 -{ functor_t functor; /* functor of property */__anon309::functor4511,95146 - property_t function; /* function to generate */function4512,95195 - property_t function; /* function to generate */__anon309::function4512,95195 -} sprop;sprop4513,95245 -static const sprop sprop_list [] =sprop_list4516,95256 -{ TableEnum e; /* Enumerator on stream-table */e4547,96532 -{ TableEnum e; /* Enumerator on stream-table */__anon310::e4547,96532 - IOSTREAM *s; /* Stream we are enumerating */s4548,96583 - IOSTREAM *s; /* Stream we are enumerating */__anon310::s4548,96583 - const sprop *p; /* Pointer in properties */p4549,96633 - const sprop *p; /* Pointer in properties */__anon310::p4549,96633 - int fixed_p; /* Propety is given */fixed_p4550,96681 - int fixed_p; /* Propety is given */__anon310::fixed_p4550,96681 -} prop_enum;prop_enum4551,96722 -flush_output(term_t out ARG_LD)flush_output4874,103289 -getStreamWithPosition(term_t stream, IOSTREAM **sp)getStreamWithPosition4923,103934 -getRepositionableStream(term_t stream, IOSTREAM **sp)getRepositionableStream4943,104292 -at_end_of_stream(term_t stream ARG_LD)at_end_of_stream5255,110063 -peek(term_t stream, term_t chr, int how ARG_LD)peek5307,111089 -typedef struct wrappedIOwrappedIO5460,114422 -{ void *wrapped_handle; /* original handle */wrapped_handle5461,114447 -{ void *wrapped_handle; /* original handle */wrappedIO::wrapped_handle5461,114447 - IOFUNCTIONS *wrapped_functions; /* original functions */wrapped_functions5462,114497 - IOFUNCTIONS *wrapped_functions; /* original functions */wrappedIO::wrapped_functions5462,114497 - IOSTREAM *wrapped_stream; /* stream we wrapped */wrapped_stream5463,114561 - IOSTREAM *wrapped_stream; /* stream we wrapped */wrappedIO::wrapped_stream5463,114561 - IOFUNCTIONS functions; /* new function block */functions5464,114616 - IOFUNCTIONS functions; /* new function block */wrappedIO::functions5464,114616 -} wrappedIO;wrappedIO5465,114673 -Sread_user(void *handle, char *buf, size_t size)Sread_user5469,114696 -closeWrappedIO(void *handle)closeWrappedIO5493,115253 -wrapIO(IOSTREAM *s,wrapIO5511,115609 -copy_stream_data(term_t in, term_t out, term_t len ARG_LD)copy_stream_data5619,118176 -pl_get_time(term_t t)pl_get_time5788,123518 -pl_sleep(term_t time)pl_sleep5793,123595 -static const PL_extension foreigns[] = {foreigns5803,123699 -struct PL_local_data *Yap_InitThreadIO(int wid)Yap_InitThreadIO5837,124960 -#define COUNT_MUTEX_INITIALIZER(COUNT_MUTEX_INITIALIZER5856,125366 -counting_mutex _PL_mutexes[] =_PL_mutexes5863,125462 -initMutexes( void )initMutexes5894,126447 -init_yap(void)init_yap5908,126638 - -library/dialect/swi/os/pl-file.h,970 -#define PL_FILE_H_INCLUDEDPL_FILE_H_INCLUDED26,986 -{ ST_FALSE = -1, /* Do not check stream types */ST_FALSE29,1027 - ST_LOOSE = 0, /* Default: accept latin-1 for binary */ST_LOOSE30,1078 - ST_TRUE = 1 /* Strict checking */ST_TRUE31,1138 -} st_check;st_check32,1178 -COMMON(int) reportStreamError(IOSTREAM *s);s44,1688 -COMMON(int) streamStatus(IOSTREAM *s);s45,1740 -COMMON(atom_t) fileNameStream(IOSTREAM *s);s47,1838 -COMMON(int) pl_see(term_t f);f54,2155 -COMMON(void) prompt1(atom_t prompt);prompt61,2410 -COMMON(void) release_stream_handle(term_t spec);spec64,2530 -COMMON(word) pl_make_fat_filemap(term_t dir);dir67,2646 -COMMON(IOENC) atom_to_encoding(atom_t a);a72,2839 -COMMON(atom_t) encoding_to_atom(IOENC enc);enc73,2882 -COMMON(int) closeOutputRedirect(redir_context *ctx);ctx77,3021 -COMMON(void) discardOutputRedirect(redir_context *ctx);ctx78,3075 -COMMON(int) push_input_context(atom_t type);type79,3132 - -library/dialect/swi/os/pl-files.c,1796 -#define statstruct statstruct35,1122 -#define statstruct statstruct37,1163 -#define statfunc statfunc38,1194 -#undef LDLD41,1224 -#define LD LD42,1234 -set_posix_error(int win_error)set_posix_error50,1487 -LastModifiedFile(const char *name, double *tp)LastModifiedFile79,2192 -#define nano nano85,2306 -#define ntick ntick86,2333 -#define SEC_TO_UNIX_EPOCH SEC_TO_UNIX_EPOCH87,2353 -LastModifiedFile64(const char *name, int64_t *tp)LastModifiedFile64144,3426 -#define nano nano150,3543 -#define ntick ntick151,3570 -#define SEC_TO_UNIX_EPOCH SEC_TO_UNIX_EPOCH152,3590 -SizeFile(const char *path)SizeFile219,4935 -#define F_OK F_OK243,5429 -AccessFile(const char *path, int mode)AccessFile247,5456 -ExistsFile(const char *path)ExistsFile275,6006 -ExistsDirectory(const char *path)ExistsDirectory298,6383 -ReadLink(const char *f, char *buf)ReadLink324,6805 -DeRefLink1(const char *f, char *lbuf)DeRefLink1340,7000 -DeRefLink(const char *link, char *buf)DeRefLink375,7689 -SameFile(const char *f1, const char *f2)SameFile392,7955 -RemoveFile(const char *path)RemoveFile433,8939 -RenameFile(const char *old, const char *new)RenameFile445,9152 -MarkExecutable(const char *name)MarkExecutable473,9636 -unifyTime(term_t t, time_t time)unifyTime513,10525 -add_option(term_t options, functor_t f, atom_t val)add_option519,10606 -#define CVT_FILENAME CVT_FILENAME533,10895 -get_file_name(term_t n, char **namep, char *tmp, int flags)get_file_name536,10959 -PL_get_file_name(term_t n, char **namep, int flags)PL_get_file_name629,13624 -PL_get_file_nameW(term_t n, wchar_t **namep, int flags)PL_get_file_nameW647,13974 -has_extension(const char *name, const char *ext)has_extension1085,22133 -name_too_long(void)name_too_long1108,22579 -initFiles(void)initFiles1250,26153 - -library/dialect/swi/os/pl-files.h,229 -#define PL_FILES_H_INCLUDEDPL_FILES_H_INCLUDED26,987 -#define ACCESS_EXIST ACCESS_EXIST28,1016 -#define ACCESS_EXECUTE ACCESS_EXECUTE29,1065 -#define ACCESS_READ ACCESS_READ30,1090 -#define ACCESS_WRITE ACCESS_WRITE31,1112 - -library/dialect/swi/os/pl-fmt.c,3470 -#define MAXRUBBER MAXRUBBER45,1636 -struct rubberrubber47,1659 -{ size_t where; /* where is rubber in output */where48,1673 -{ size_t where; /* where is rubber in output */rubber::where48,1673 - size_t size; /* how big should it be */size49,1724 - size_t size; /* how big should it be */rubber::size49,1724 - pl_wchar_t pad; /* padding character */pad50,1769 - pl_wchar_t pad; /* padding character */rubber::pad50,1769 -{ IOSTREAM *out; /* our output stream */out54,1832 -{ IOSTREAM *out; /* our output stream */__anon312::out54,1832 - int column; /* current column */column55,1875 - int column; /* current column */__anon312::column55,1875 - tmp_buffer buffer; /* bin for characters with tabs */buffer56,1913 - tmp_buffer buffer; /* bin for characters with tabs */__anon312::buffer56,1913 - size_t buffered; /* characters in buffer */buffered57,1971 - size_t buffered; /* characters in buffer */__anon312::buffered57,1971 - int pending_rubber; /* number of not-filled ~t's */pending_rubber58,2019 - int pending_rubber; /* number of not-filled ~t's */__anon312::pending_rubber58,2019 - struct rubber rub[MAXRUBBER];rub59,2075 - struct rubber rub[MAXRUBBER];__anon312::rub59,2075 -} format_state;format_state60,2107 -#define BUFSIZE BUFSIZE62,2124 -#define DEFAULT DEFAULT63,2146 -#define SHIFT SHIFT64,2168 -#define NEED_ARG NEED_ARG65,2203 -#define FMT_ERROR(FMT_ERROR69,2299 -#define FMT_ARG(FMT_ARG71,2396 -#define FMT_EXEPTION(FMT_EXEPTION74,2509 -static PL_locale prolog_locale =prolog_locale77,2566 -update_column(int col, int c)update_column84,2650 -outchr(format_state *state, int chr)outchr102,3225 -outstring(format_state *state, const char *s, size_t len)outstring135,4003 -oututf8(format_state *state, const char *s, size_t len)oututf8157,4438 -oututf80(format_state *state, const char *s)oututf80173,4667 -outtext(format_state *state, PL_chars_t *txt)outtext179,4766 -#define format_predicates format_predicates204,5268 -pl_format_predicate(term_t chr, term_t descr)pl_format_predicate218,5657 -pl_current_format_predicate(term_t chr, term_t descr, control_t h)pl_current_format_predicate248,6307 -format_impl(IOSTREAM *out, term_t format, term_t Args, Module m)format_impl291,7166 -pl_format3(term_t out, term_t format, term_t args)pl_format3342,8195 -pl_format(term_t fmt, term_t args)pl_format567,13091 -get_chr_from_text(const PL_chars_t *t, int index)get_chr_from_text573,13183 -do_format(IOSTREAM *fd, PL_chars_t *fmt, int argc, term_t argv, Module m)do_format593,13608 -distribute_rubber(struct rubber *r, int rn, int space)distribute_rubber1092,24554 -emit_rubber(format_state *state)emit_rubber1114,25005 -lappend(const wchar_t *l, int def, Buffer out)lappend1161,26149 -revert_string(char *s, size_t len)revert_string1186,26598 -formatInteger(PL_locale *locale, int div, int radix, bool smll, Number i,formatInteger1198,26742 -countGroups(const char *grouping, int len)countGroups1338,29736 -ths_to_utf8(char *u8, const wchar_t *s, size_t len)ths_to_utf81363,30140 -same_decimal_point(PL_locale *l1, PL_locale *l2)same_decimal_point1374,30318 -utf8_dp(PL_locale *l, char *s, int *len)utf8_dp1385,30590 -localizeDecimalPoint(PL_locale *locale, Buffer b)localizeDecimalPoint1407,31104 -groupDigits(PL_locale *locale, Buffer b)groupDigits1446,32023 -formatFloat(PL_locale *locale, int how, int arg, Number f, Buffer out)formatFloat1514,33709 - -library/dialect/swi/os/pl-glob.c,2216 -# define dirent dirent39,1180 -#define O_EXPANDS_TESTS_EXISTS O_EXPANDS_TESTS_EXISTS59,1484 -#define IS_DIR_SEPARATOR(IS_DIR_SEPARATOR62,1543 -#define char_to_int(char_to_int65,1592 -#define MAXCODE MAXCODE89,2456 -#define ANY ANY91,2478 -#define STAR STAR92,2494 -#define ALT ALT93,2511 -#define JMP JMP94,2527 -#define ANYOF ANYOF95,2543 -#define EXIT EXIT96,2561 -#define NOCURL NOCURL98,2579 -#define CURL CURL99,2596 -typedef unsigned char matchcode;matchcode101,2612 -{ int size;size104,2661 -{ int size;__anon313::size104,2661 - matchcode code[MAXCODE];code105,2674 - matchcode code[MAXCODE];__anon313::code105,2674 -} compiled_pattern;compiled_pattern106,2701 -#define Output(Output111,2834 -setMap(matchcode *map, int c)setMap119,3024 -compilePattern(char *p, compiled_pattern *cbuf)compilePattern130,3178 -compile_pattern(compiled_pattern *Out, char *p, int curl)compile_pattern140,3343 -matchPattern(char *s, compiled_pattern *cbuf)matchPattern260,5418 -match_pattern(matchcode *p, char *str)match_pattern266,5519 -{ tmp_buffer files; /* our files */files366,8037 -{ tmp_buffer files; /* our files */__anon314::files366,8037 - tmp_buffer strings; /* our strings */strings367,8075 - tmp_buffer strings; /* our strings */__anon314::strings367,8075 - int start; /* 1-st valid entry of files */start368,8116 - int start; /* 1-st valid entry of files */__anon314::start368,8116 - int end; /* last valid entry of files */end369,8164 - int end; /* last valid entry of files */__anon314::end369,8164 -} glob_info, *GlobInfo;glob_info370,8210 -} glob_info, *GlobInfo;GlobInfo370,8210 -#undef isspecial isspecial372,8235 -#define isspecial(isspecial373,8270 -free_expand_info(GlobInfo info)free_expand_info377,8362 -add_path(const char *path, GlobInfo info)add_path384,8474 -expand_str(GlobInfo info, int at)expand_str395,8728 -expand_entry(GlobInfo info, int idx)expand_entry403,8865 -un_escape(char *to, const char *from, const char *end)un_escape411,8998 -expand(const char *pattern, GlobInfo info)expand422,9210 -compareBagEntries(const void *a1, const void *a2)compareBagEntries555,12084 -sort_expand(GlobInfo info)sort_expand573,12430 - -library/dialect/swi/os/pl-global.h,30945 -#define PL_GLOBAL_HPL_GLOBAL_H4,22 - { DBG_OFF = 0, /* no debugging */DBG_OFF9,77 - DBG_ON, /* switch on in current environment */DBG_ON10,138 - DBG_ALL /* switch on globally */DBG_ALL11,219 - } debug_type;debug_type12,286 -typedef struct debuginfodebuginfo14,303 -{ size_t skiplevel; /* current skip level */skiplevel15,328 -{ size_t skiplevel; /* current skip level */debuginfo::skiplevel15,328 - bool tracing; /* are we tracing? */tracing16,393 - bool tracing; /* are we tracing? */debuginfo::tracing16,393 - debug_type debugging; /* are we debugging? */debugging17,455 - debug_type debugging; /* are we debugging? */debuginfo::debugging17,455 - int leashing; /* ports we are leashing */leashing18,519 - int leashing; /* ports we are leashing */debuginfo::leashing18,519 - int visible; /* ports that are visible */visible19,587 - int visible; /* ports that are visible */debuginfo::visible19,587 - bool showContext; /* tracer shows context module */showContext20,656 - bool showContext; /* tracer shows context module */debuginfo::showContext20,656 - int styleCheck; /* source style checking */styleCheck21,730 - int styleCheck; /* source style checking */debuginfo::styleCheck21,730 - int suspendTrace; /* tracing is suspended now */suspendTrace22,798 - int suspendTrace; /* tracing is suspended now */debuginfo::suspendTrace22,798 -} pl_debugstatus_t;pl_debugstatus_t24,932 -typedef struct find_data_tag * FindData; /* pl-trace.c */FindData27,954 -{ LDATA_IDLE = 0,LDATA_IDLE30,1033 - LDATA_SIGNALLED,LDATA_SIGNALLED31,1051 - LDATA_ANSWERING,LDATA_ANSWERING32,1070 - LDATA_ANSWEREDLDATA_ANSWERED33,1089 -} ldata_status_t;ldata_status_t34,1106 -{ CLN_NORMAL = 0, /* Normal mode */CLN_NORMAL37,1138 - CLN_ACTIVE, /* Started cleanup */CLN_ACTIVE38,1176 - CLN_FOREIGN, /* Foreign hooks */CLN_FOREIGN39,1215 - CLN_PROLOG, /* Prolog hooks */CLN_PROLOG40,1253 - CLN_SHARED, /* Unload shared objects */CLN_SHARED41,1289 - CLN_DATA /* Remaining data */CLN_DATA42,1334 -} cleanup_status;cleanup_status43,1369 -typedef struct free_chunk *FreeChunk; /* left-over chunk */FreeChunk47,1404 -struct free_chunkfree_chunk49,1467 -{ FreeChunk next; /* next of chain */next50,1485 -{ FreeChunk next; /* next of chain */free_chunk::next50,1485 - size_t size; /* size of free bit */size51,1545 - size_t size; /* size of free bit */free_chunk::size51,1545 -typedef struct _PL_thread_info_t_PL_thread_info_t54,1612 -{ int pl_tid; /* Prolog thread id */pl_tid55,1645 -{ int pl_tid; /* Prolog thread id */_PL_thread_info_t::pl_tid55,1645 - size_t local_size; /* Stack sizes */local_size56,1688 - size_t local_size; /* Stack sizes */_PL_thread_info_t::local_size56,1688 - size_t global_size;global_size57,1732 - size_t global_size;_PL_thread_info_t::global_size57,1732 - size_t trail_size;trail_size58,1758 - size_t trail_size;_PL_thread_info_t::trail_size58,1758 - size_t stack_size; /* system (C-) stack */stack_size59,1783 - size_t stack_size; /* system (C-) stack */_PL_thread_info_t::stack_size59,1783 - int (*cancel)(int id); /* cancel function */cancel60,1833 - int (*cancel)(int id); /* cancel function */_PL_thread_info_t::cancel60,1833 - int open_count; /* for PL_thread_detach_engine() */open_count61,1885 - int open_count; /* for PL_thread_detach_engine() */_PL_thread_info_t::open_count61,1885 - bool detached; /* detached thread */detached62,1945 - bool detached; /* detached thread */_PL_thread_info_t::detached62,1945 - int status; /* PL_THREAD_* */status63,1990 - int status; /* PL_THREAD_* */_PL_thread_info_t::status63,1990 - pthread_t tid; /* Thread identifier */tid64,2028 - pthread_t tid; /* Thread identifier */_PL_thread_info_t::tid64,2028 - int has_tid; /* TRUE: tid = valid */has_tid65,2074 - int has_tid; /* TRUE: tid = valid */_PL_thread_info_t::has_tid65,2074 - pid_t pid; /* for identifying */pid67,2136 - pid_t pid; /* for identifying */_PL_thread_info_t::pid67,2136 - unsigned long w32id; /* Win32 thread HANDLE */w32id70,2203 - unsigned long w32id; /* Win32 thread HANDLE */_PL_thread_info_t::w32id70,2203 - struct PL_local_data *thread_data; /* The thread-local data */thread_data72,2264 - struct PL_local_data *thread_data; /* The thread-local data */_PL_thread_info_t::thread_data72,2264 - module_t module; /* Module for starting goal */module73,2331 - module_t module; /* Module for starting goal */_PL_thread_info_t::module73,2331 - record_t goal; /* Goal to start thread */goal74,2386 - record_t goal; /* Goal to start thread */_PL_thread_info_t::goal74,2386 - record_t return_value; /* Value (term) returned */return_value75,2435 - record_t return_value; /* Value (term) returned */_PL_thread_info_t::return_value75,2435 - atom_t name; /* Name of the thread */name76,2492 - atom_t name; /* Name of the thread */_PL_thread_info_t::name76,2492 - ldata_status_t ldata_status; /* status of forThreadLocalData() */ldata_status77,2537 - ldata_status_t ldata_status; /* status of forThreadLocalData() */_PL_thread_info_t::ldata_status77,2537 -} PL_thread_info_t;PL_thread_info_t78,2608 -{ unsigned long flags; /* Fast access to some boolean Prolog flags */flags86,2754 -{ unsigned long flags; /* Fast access to some boolean Prolog flags */__anon318::flags86,2754 -} pl_features_t;pl_features_t87,2841 -{ OCCURS_CHECK_FALSE = 0,OCCURS_CHECK_FALSE90,2872 - OCCURS_CHECK_TRUE,OCCURS_CHECK_TRUE91,2898 - OCCURS_CHECK_ERROROCCURS_CHECK_ERROR92,2919 -} occurs_check_t;occurs_check_t93,2940 -{ ACCESS_LEVEL_USER = 0, /* Default user view */ACCESS_LEVEL_USER96,2972 - ACCESS_LEVEL_SYSTEM /* Allow low-level access */ACCESS_LEVEL_SYSTEM97,3028 -} access_level_t;access_level_t98,3089 -typedef struct exception_frame /* PL_throw exception environments */exception_frame100,3108 -{ struct exception_frame *parent; /* parent frame */parent101,3178 -{ struct exception_frame *parent; /* parent frame */exception_frame::parent101,3178 - jmp_buf exception_jmp_env; /* longjmp environment */exception_jmp_env102,3231 - jmp_buf exception_jmp_env; /* longjmp environment */exception_frame::exception_jmp_env102,3231 -} exception_frame;exception_frame103,3286 -{ atom_t file; /* current source file */file106,3321 -{ atom_t file; /* current source file */__anon321::file106,3321 - IOPOS position; /* Line, line pos, char and byte */position107,3364 - IOPOS position; /* Line, line pos, char and byte */__anon321::position107,3364 -} source_location;source_location108,3440 -{ size_t localSize; /* size of local stack */localSize111,3475 -{ size_t localSize; /* size of local stack */__anon322::localSize111,3475 - size_t globalSize; /* size of global stack */globalSize112,3541 - size_t globalSize; /* size of global stack */__anon322::globalSize112,3541 - size_t trailSize; /* size of trail stack */trailSize113,3608 - size_t trailSize; /* size of trail stack */__anon322::trailSize113,3608 - char * goal; /* initial goal */goal114,3674 - char * goal; /* initial goal */__anon322::goal114,3674 - char * topLevel; /* toplevel goal */topLevel115,3733 - char * topLevel; /* toplevel goal */__anon322::topLevel115,3733 - char * initFile; /* -f initialisation file */initFile116,3793 - char * initFile; /* -f initialisation file */__anon322::initFile116,3793 - char * systemInitFile; /* -F initialisation file */systemInitFile117,3862 - char * systemInitFile; /* -F initialisation file */__anon322::systemInitFile117,3862 - char * pldoc_server; /* --pldoc=Server */pldoc_server120,4021 - char * pldoc_server; /* --pldoc=Server */__anon322::pldoc_server120,4021 - char * compileOut; /* file to store compiler output */compileOut121,4082 - char * compileOut; /* file to store compiler output */__anon322::compileOut121,4082 - char * saveclass; /* Type of saved state */saveclass122,4158 - char * saveclass; /* Type of saved state */__anon322::saveclass122,4158 - bool silent; /* -q: quiet operation */silent123,4224 - bool silent; /* -q: quiet operation */__anon322::silent123,4224 - bool win_app; /* --win_app: be Windows application */win_app125,4309 - bool win_app; /* --win_app: be Windows application */__anon322::win_app125,4309 -} pl_options_t;pl_options_t127,4396 - pl_options_t options; /* command-line options */options132,4460 - pl_options_t options; /* command-line options */__anon323::options132,4460 - int io_initialised;io_initialised133,4527 - int io_initialised;__anon323::io_initialised133,4527 - cleanup_status cleaning; /* Inside PL_cleanup() */cleaning134,4549 - cleanup_status cleaning; /* Inside PL_cleanup() */__anon323::cleaning134,4549 - pl_defaults_t defaults; /* system default settings */defaults136,4604 - pl_defaults_t defaults; /* system default settings */__anon323::defaults136,4604 - { Table table; /* global (read-only) features */table139,4670 - { Table table; /* global (read-only) features */__anon323::__anon324::table139,4670 - } prolog_flag;prolog_flag140,4744 - } prolog_flag;__anon323::prolog_flag140,4744 - { Table tmp_files; /* Known temporary files */tmp_files143,4771 - { Table tmp_files; /* Known temporary files */__anon323::__anon325::tmp_files143,4771 - CanonicalDir _canonical_dirlist;_canonical_dirlist144,4821 - CanonicalDir _canonical_dirlist;__anon323::__anon325::_canonical_dirlist144,4821 - char * myhome; /* expansion of ~ */myhome145,4858 - char * myhome; /* expansion of ~ */__anon323::__anon325::myhome145,4858 - char * fred; /* last expanded ~user */fred146,4900 - char * fred; /* last expanded ~user */__anon323::__anon325::fred146,4900 - char * fredshome; /* home of fred */fredshome147,4945 - char * fredshome; /* home of fred */__anon323::__anon325::fredshome147,4945 - OnHalt on_halt_list; /* list of onhalt hooks */on_halt_list148,4987 - OnHalt on_halt_list; /* list of onhalt hooks */__anon323::__anon325::on_halt_list148,4987 - int halting; /* process is shutting down */halting149,5040 - int halting; /* process is shutting down */__anon323::__anon325::halting149,5040 - int gui_app; /* Win32: Application is a gui app */gui_app150,5090 - int gui_app; /* Win32: Application is a gui app */__anon323::__anon325::gui_app150,5090 - IOFUNCTIONS iofunctions; /* initial IO functions */iofunctions151,5147 - IOFUNCTIONS iofunctions; /* initial IO functions */__anon323::__anon325::iofunctions151,5147 - IOFUNCTIONS org_terminal; /* IO+Prolog terminal functions */org_terminal152,5204 - IOFUNCTIONS org_terminal; /* IO+Prolog terminal functions */__anon323::__anon325::org_terminal152,5204 - IOFUNCTIONS rl_functions; /* IO+Terminal+Readline functions */rl_functions153,5270 - IOFUNCTIONS rl_functions; /* IO+Terminal+Readline functions */__anon323::__anon325::rl_functions153,5270 - } os;os154,5338 - } os;__anon323::os154,5338 - { size_t heap; /* heap in use */heap157,5356 - { size_t heap; /* heap in use */__anon323::__anon326::heap157,5356 - size_t atoms; /* No. of atoms defined */atoms158,5393 - size_t atoms; /* No. of atoms defined */__anon323::__anon326::atoms158,5393 - size_t atomspace; /* # bytes used to store atoms */atomspace159,5440 - size_t atomspace; /* # bytes used to store atoms */__anon323::__anon326::atomspace159,5440 - size_t stack_space; /* # bytes on stacks */stack_space160,5497 - size_t stack_space; /* # bytes on stacks */__anon323::__anon326::stack_space160,5497 - size_t atomspacefreed; /* Freed atom-space */atomspacefreed162,5562 - size_t atomspacefreed; /* Freed atom-space */__anon323::__anon326::atomspacefreed162,5562 - int functors; /* No. of functors defined */functors164,5620 - int functors; /* No. of functors defined */__anon323::__anon326::functors164,5620 - int predicates; /* No. of predicates defined */predicates165,5670 - int predicates; /* No. of predicates defined */__anon323::__anon326::predicates165,5670 - int modules; /* No. of modules in the system */modules166,5724 - int modules; /* No. of modules in the system */__anon323::__anon326::modules166,5724 - intptr_t codes; /* No. of byte codes generated */codes167,5778 - intptr_t codes; /* No. of byte codes generated */__anon323::__anon326::codes167,5778 - int threads_created; /* # threads created */threads_created169,5848 - int threads_created; /* # threads created */__anon323::__anon326::threads_created169,5848 - int threads_finished; /* # finished threads */threads_finished170,5898 - int threads_finished; /* # finished threads */__anon323::__anon326::threads_finished170,5898 - double thread_cputime; /* Total CPU time of threads */thread_cputime171,5950 - double thread_cputime; /* Total CPU time of threads */__anon323::__anon326::thread_cputime171,5950 - double start_time; /* When Prolog was started */start_time173,6017 - double start_time; /* When Prolog was started */__anon323::__anon326::start_time173,6017 - } statistics;statistics174,6071 - } statistics;__anon323::statistics174,6071 - { atom_t * array; /* index --> atom */array177,6097 - { atom_t * array; /* index --> atom */__anon323::__anon327::array177,6097 - size_t count; /* elements in array */count178,6140 - size_t count; /* elements in array */__anon323::__anon327::count178,6140 - atom_t *for_code[256]; /* code --> one-char-atom */for_code179,6184 - atom_t *for_code[256]; /* code --> one-char-atom */__anon323::__anon327::for_code179,6184 - } atoms;atoms180,6245 - } atoms;__anon323::atoms180,6245 - { int os_argc; /* main(int argc, char **argv) */os_argc183,6266 - { int os_argc; /* main(int argc, char **argv) */__anon323::__anon328::os_argc183,6266 - char ** os_argv;os_argv184,6340 - char ** os_argv;__anon323::__anon328::os_argv184,6340 - int appl_argc; /* Application options */appl_argc185,6365 - int appl_argc; /* Application options */__anon323::__anon328::appl_argc185,6365 - char ** appl_argv;appl_argv186,6431 - char ** appl_argv;__anon323::__anon328::appl_argv186,6431 - int notty; /* -tty: donot use ioctl() */notty187,6458 - int notty; /* -tty: donot use ioctl() */__anon323::__anon328::notty187,6458 - int optimise; /* -O: optimised compilation */optimise188,6528 - int optimise; /* -O: optimised compilation */__anon323::__anon328::optimise188,6528 - } cmdline;cmdline189,6580 - } cmdline;__anon323::cmdline189,6580 - { ExtensionCell _ext_head; /* head of registered extensions */_ext_head203,6850 - { ExtensionCell _ext_head; /* head of registered extensions */__anon323::__anon329::_ext_head203,6850 - ExtensionCell _ext_tail; /* tail of this chain */_ext_tail204,6916 - ExtensionCell _ext_tail; /* tail of this chain */__anon323::__anon329::_ext_tail204,6916 - InitialiseHandle initialise_head; /* PL_initialise_hook() */initialise_head206,6972 - InitialiseHandle initialise_head; /* PL_initialise_hook() */__anon323::__anon329::initialise_head206,6972 - InitialiseHandle initialise_tail;initialise_tail207,7037 - InitialiseHandle initialise_tail;__anon323::__anon329::initialise_tail207,7037 - PL_dispatch_hook_t dispatch_events; /* PL_dispatch_hook() */dispatch_events208,7075 - PL_dispatch_hook_t dispatch_events; /* PL_dispatch_hook() */__anon323::__anon329::dispatch_events208,7075 - int _loaded; /* system extensions are loaded */_loaded210,7141 - int _loaded; /* system extensions are loaded */__anon323::__anon329::_loaded210,7141 - } foreign;foreign211,7197 - } foreign;__anon323::foreign211,7197 - FreeChunk left_over_pool; /* Left-over from threads */left_over_pool214,7225 - FreeChunk left_over_pool; /* Left-over from threads */__anon323::left_over_pool214,7225 - { struct _at_exit_goal *exit_goals; /* Global thread_at_exit/1 goals */exit_goals217,7296 - { struct _at_exit_goal *exit_goals; /* Global thread_at_exit/1 goals */__anon323::__anon330::exit_goals217,7296 - int enabled; /* threads are enabled */enabled218,7370 - int enabled; /* threads are enabled */__anon323::__anon330::enabled218,7370 - Table mutexTable; /* Name --> mutex table */mutexTable219,7419 - Table mutexTable; /* Name --> mutex table */__anon323::__anon330::mutexTable219,7419 - int mutex_next_id; /* next id for anonymous mutexes */mutex_next_id220,7469 - int mutex_next_id; /* next id for anonymous mutexes */__anon323::__anon330::mutex_next_id220,7469 - struct pl_mutex* MUTEX_load; /* The $load mutex */MUTEX_load221,7530 - struct pl_mutex* MUTEX_load; /* The $load mutex */__anon323::__anon330::MUTEX_load221,7530 - HINSTANCE instance; /* Win32 process instance */instance223,7604 - HINSTANCE instance; /* Win32 process instance */__anon323::__anon330::instance223,7604 - counting_mutex *mutexes; /* Registered mutexes */mutexes225,7669 - counting_mutex *mutexes; /* Registered mutexes */__anon323::__anon330::mutexes225,7669 - int thread_max; /* Maximum # threads */thread_max226,7727 - int thread_max; /* Maximum # threads */__anon323::__anon330::thread_max226,7727 - PL_thread_info_t *threads[MAX_THREADS]; /* Pointers to thread-info */threads227,7773 - PL_thread_info_t *threads[MAX_THREADS]; /* Pointers to thread-info */__anon323::__anon330::threads227,7773 - } thread;thread228,7848 - } thread;__anon323::thread228,7848 - { Table predicates;predicates232,7909 - { Table predicates;__anon323::__anon331::predicates232,7909 - } format;format233,7931 - } format;__anon323::format233,7931 - predicate_t portray; /* portray/1 */portray248,8430 - predicate_t portray; /* portray/1 */__anon323::__anon332::portray248,8430 - predicate_t portray_attvar1; /* $attvar:portray_attvar/1 */portray_attvar1256,8875 - predicate_t portray_attvar1; /* $attvar:portray_attvar/1 */__anon323::__anon332::portray_attvar1256,8875 - } procedures;procedures269,9382 - } procedures;__anon323::procedures269,9382 - { Table localeTable; /* Name --> locale table */localeTable273,9424 - { Table localeTable; /* Name --> locale table */__anon323::__anon333::localeTable273,9424 - PL_locale *default_locale; /* System wide default */default_locale274,9492 - PL_locale *default_locale; /* System wide default */__anon323::__anon333::default_locale274,9492 - } locale;locale275,9558 - } locale;__anon323::locale275,9558 -} gds_t;gds_t278,9578 -#define GD GD282,9607 -typedef struct PL_local_data {PL_local_data285,9651 - { IOSTREAM *streams[6]; /* handles for standard streams */streams288,9716 - { IOSTREAM *streams[6]; /* handles for standard streams */PL_local_data::__anon334::streams288,9716 - struct input_context *input_stack; /* maintain input stream info */input_stack289,9778 - struct input_context *input_stack; /* maintain input stream info */PL_local_data::__anon334::input_stack289,9778 - struct output_context *output_stack; /* maintain output stream info */output_stack290,9850 - struct output_context *output_stack; /* maintain output stream info */PL_local_data::__anon334::output_stack290,9850 - st_check stream_type_check; /* Check bin/text streams? */stream_type_check291,9925 - st_check stream_type_check; /* Check bin/text streams? */PL_local_data::__anon334::stream_type_check291,9925 - } IO;IO292,9988 - } IO;PL_local_data::IO292,9988 - { Table table; /* Feature table */table295,10006 - { Table table; /* Feature table */PL_local_data::__anon335::table295,10006 - pl_features_t mask; /* Masked access to booleans */mask296,10046 - pl_features_t mask; /* Masked access to booleans */PL_local_data::__anon335::mask296,10046 - int write_attributes; /* how to write attvars? */write_attributes297,10104 - int write_attributes; /* how to write attvars? */PL_local_data::__anon335::write_attributes297,10104 - occurs_check_t occurs_check; /* Unify and occurs check */occurs_check298,10161 - occurs_check_t occurs_check; /* Unify and occurs check */PL_local_data::__anon335::occurs_check298,10161 - } feature;feature299,10223 - } feature;PL_local_data::feature299,10223 - source_location read_source; /* file, line, char of last term */read_source302,10238 - source_location read_source; /* file, line, char of last term */PL_local_data::read_source302,10238 - term_t read_varnames; /* varnames of last term */read_varnames304,10307 - term_t read_varnames; /* varnames of last term */PL_local_data::read_varnames304,10307 - { int active; /* doing pipe I/O */active307,10378 - { int active; /* doing pipe I/O */PL_local_data::__anon336::active307,10378 - jmp_buf context; /* context of longjmp() */context308,10418 - jmp_buf context; /* context of longjmp() */PL_local_data::__anon336::context308,10418 - } pipe;pipe309,10467 - } pipe;PL_local_data::pipe309,10467 - { atom_t current; /* current global prompt */current312,10487 - { atom_t current; /* current global prompt */PL_local_data::__anon337::current312,10487 - atom_t first; /* how to prompt first line */first313,10536 - atom_t first; /* how to prompt first line */PL_local_data::__anon337::first313,10536 - int first_used; /* did we do the first line? */first_used314,10587 - int first_used; /* did we do the first line? */PL_local_data::__anon337::first_used314,10587 - int next; /* prompt on next read operation */next315,10641 - int next; /* prompt on next read operation */PL_local_data::__anon337::next315,10641 - } prompt;prompt316,10694 - } prompt;PL_local_data::prompt316,10694 - { Table table; /* Feature table */table319,10716 - { Table table; /* Feature table */PL_local_data::__anon338::table319,10716 - pl_features_t mask; /* Masked access to booleans */mask320,10776 - pl_features_t mask; /* Masked access to booleans */PL_local_data::__anon338::mask320,10776 - int write_attributes; /* how to write attvars? */write_attributes321,10848 - int write_attributes; /* how to write attvars? */PL_local_data::__anon338::write_attributes321,10848 - occurs_check_t occurs_check; /* Unify and occurs check */occurs_check322,10916 - occurs_check_t occurs_check; /* Unify and occurs check */PL_local_data::__anon338::occurs_check322,10916 - access_level_t access_level; /* Current access level */access_level323,10985 - access_level_t access_level; /* Current access level */PL_local_data::__anon338::access_level323,10985 - } prolog_flag;prolog_flag324,11052 - } prolog_flag;PL_local_data::prolog_flag324,11052 - int break_level; /* break */break_level326,11070 - int break_level; /* break */PL_local_data::break_level326,11070 - void * glob_info; /* pl-glob.c */glob_info327,11122 - void * glob_info; /* pl-glob.c */PL_local_data::glob_info327,11122 - IOENC encoding; /* default I/O encoding */encoding328,11178 - IOENC encoding; /* default I/O encoding */PL_local_data::encoding328,11178 - { char * _CWDdir;_CWDdir331,11235 - { char * _CWDdir;PL_local_data::__anon339::_CWDdir331,11235 - size_t _CWDlen;_CWDlen332,11255 - size_t _CWDlen;PL_local_data::__anon339::_CWDlen332,11255 - status_t dl_error; /* dlopen() emulation in pl-beos.c */dl_error334,11291 - status_t dl_error; /* dlopen() emulation in pl-beos.c */PL_local_data::__anon339::dl_error334,11291 - int rand_initialised; /* have we initialised random? */rand_initialised336,11360 - int rand_initialised; /* have we initialised random? */PL_local_data::__anon339::rand_initialised336,11360 - } os;os337,11421 - } os;PL_local_data::os337,11421 - { int64_t pending; /* PL_raise() pending signals */pending340,11438 - { int64_t pending; /* PL_raise() pending signals */PL_local_data::__anon340::pending340,11438 - int current; /* currently processing signal */current341,11511 - int current; /* currently processing signal */PL_local_data::__anon340::current341,11511 - int is_sync; /* current signal is synchronous */is_sync342,11585 - int is_sync; /* current signal is synchronous */PL_local_data::__anon340::is_sync342,11585 - record_t exception; /* Pending exception from signal */exception343,11661 - record_t exception; /* Pending exception from signal */PL_local_data::__anon340::exception343,11661 - simpleMutex sig_lock; /* lock delivery and processing */sig_lock345,11751 - simpleMutex sig_lock; /* lock delivery and processing */PL_local_data::__anon340::sig_lock345,11751 - } signal;signal347,11833 - } signal;PL_local_data::signal347,11833 - int critical; /* heap is being modified */critical349,11846 - int critical; /* heap is being modified */PL_local_data::critical349,11846 - { term_t term; /* exception term */term352,11903 - { term_t term; /* exception term */PL_local_data::__anon341::term352,11903 - term_t bin; /* temporary handle for exception */bin353,11943 - term_t bin; /* temporary handle for exception */PL_local_data::__anon341::bin353,11943 - term_t printed; /* already printed exception */printed354,11998 - term_t printed; /* already printed exception */PL_local_data::__anon341::printed354,11998 - term_t tmp; /* tmp for errors */tmp355,12051 - term_t tmp; /* tmp for errors */PL_local_data::__anon341::tmp355,12051 - term_t pending; /* used by the debugger */pending356,12090 - term_t pending; /* used by the debugger */PL_local_data::__anon341::pending356,12090 - int in_hook; /* inside exception_hook() */in_hook357,12138 - int in_hook; /* inside exception_hook() */PL_local_data::__anon341::in_hook357,12138 - int processing; /* processing an exception */processing358,12187 - int processing; /* processing an exception */PL_local_data::__anon341::processing358,12187 - exception_frame *throw_environment; /* PL_throw() environments */throw_environment359,12239 - exception_frame *throw_environment; /* PL_throw() environments */PL_local_data::__anon341::throw_environment359,12239 - } exception;exception360,12309 - } exception;PL_local_data::exception360,12309 - const char *float_format; /* floating point format */float_format361,12324 - const char *float_format; /* floating point format */PL_local_data::float_format361,12324 - { FindData find; /* / in tracer */find364,12393 - { FindData find; /* / in tracer */PL_local_data::__anon342::find364,12393 - } trace;trace365,12465 - } trace;PL_local_data::trace365,12465 - pl_debugstatus_t _debugstatus; /* status of the debugger */_debugstatus367,12477 - pl_debugstatus_t _debugstatus; /* status of the debugger */PL_local_data::_debugstatus367,12477 - struct _PL_thread_info_t *info; /* info structure */info372,12629 - struct _PL_thread_info_t *info; /* info structure */PL_local_data::__anon343::info372,12629 - } thread;thread380,13097 - } thread;PL_local_data::thread380,13097 - buffer _discardable_buffer; /* PL_*() character buffers */_discardable_buffer384,13128 - buffer _discardable_buffer; /* PL_*() character buffers */PL_local_data::__anon344::_discardable_buffer384,13128 - buffer _buffer_ring[BUFFER_RING_SIZE];_buffer_ring385,13191 - buffer _buffer_ring[BUFFER_RING_SIZE];PL_local_data::__anon344::_buffer_ring385,13191 - int _current_buffer_id;_current_buffer_id386,13234 - int _current_buffer_id;PL_local_data::__anon344::_current_buffer_id386,13234 - } fli;fli387,13263 - } fli;PL_local_data::fli387,13263 - { fid_t numbervars_frame; /* Numbervars choice-point */numbervars_frame390,13282 - { fid_t numbervars_frame; /* Numbervars choice-point */PL_local_data::__anon345::numbervars_frame390,13282 - } var_names;var_names391,13340 - } var_names;PL_local_data::var_names391,13340 - int persistent; /* do persistent operations */persistent396,13382 - int persistent; /* do persistent operations */PL_local_data::__anon346::persistent396,13382 - } gmp;gmp397,13435 - } gmp;PL_local_data::gmp397,13435 - int in_print_message;in_print_message400,13452 - int in_print_message;PL_local_data::in_print_message400,13452 - struct regstore_t *reg_cache; /* pointer to YAP registers */reg_cache402,13477 - struct regstore_t *reg_cache; /* pointer to YAP registers */PL_local_data::reg_cache402,13477 - { PL_locale *current; /* Current locale */current406,13574 - { PL_locale *current; /* Current locale */PL_local_data::__anon347::current406,13574 - } locale;locale407,13635 - } locale;PL_local_data::locale407,13635 -} PL_local_data_t;PL_local_data_t410,13655 - -library/dialect/swi/os/pl-incl.h,13492 -#define PL_INCL_H PL_INCL_H5,21 -#define __WINDOWS__ __WINDOWS__9,129 -#define _PL_EMULATION_LAYER _PL_EMULATION_LAYER34,486 -#define PLVERSION PLVERSION39,589 -#define PLNAME PLNAME40,627 -#define SWIP SWIP42,649 -typedef word * Word;Word45,694 -typedef struct pred_entry * Procedure; /* predicate */Procedure48,758 -#undef PP54,887 -#undef BB57,912 -#undef SS60,937 -#undef HH63,962 -#undef DEBUGDEBUG71,1070 -#define DEBUG(DEBUG73,1090 -do_startCritical(void) {do_startCritical77,1197 -do_endCritical(void) {do_endCritical83,1296 -#define startCritical startCritical88,1375 -#define endCritical endCritical89,1417 -#undef LOCKLOCK92,1467 -#undef UNLOCKUNLOCK95,1500 -typedef int Char; /* char that can pass EOF */Char105,1617 -#define usedStack(usedStack107,1668 -#define exception_term exception_term109,1692 -#undef Suser_inputSuser_input112,1764 -#undef Suser_outputSuser_output115,1810 -#undef Suser_errorSuser_error118,1856 -#define Suser_input Suser_input121,1883 -#define Suser_output Suser_output122,1935 -#define Suser_error Suser_error123,1987 -#define Scurin Scurin124,2039 -#define Scurout Scurout125,2091 -#define Sprotocol Sprotocol126,2143 -#define Sdin Sdin127,2195 -#define Sdout Sdout128,2274 -#define source_file_name source_file_name130,2320 -#define source_line_no source_line_no131,2368 -#define source_line_pos source_line_pos132,2434 -#define source_char_no source_char_no133,2501 -#define source_byte_no source_byte_no134,2567 -#define WORDS_PER_DOUBLE WORDS_PER_DOUBLE137,2664 -#define WORDS_PER_DOUBLE WORDS_PER_DOUBLE139,2697 -#define allocForeignState(allocForeignState142,2732 -#define freeForeignState(freeForeignState143,2815 -{ V_INTEGER, /* integer (64-bit) value */V_INTEGER148,2921 - V_MPZ, /* mpz_t */V_MPZ150,2979 - V_MPQ, /* mpq_t */V_MPQ151,3003 - V_FLOAT /* Floating point number (double) */V_FLOAT153,3034 -} numtype;numtype154,3084 -{ numtype type; /* type of number */type157,3111 -{ numtype type; /* type of number */__anon349::type157,3111 - union { double f; /* value as real */f158,3151 - union { double f; /* value as real */__anon349::__anon350::f158,3151 - int64_t i; /* value as integer */i159,3193 - int64_t i; /* value as integer */__anon349::__anon350::i159,3193 - word w[WORDS_PER_DOUBLE]; /* for packing/unpacking the double */w160,3232 - word w[WORDS_PER_DOUBLE]; /* for packing/unpacking the double */__anon349::__anon350::w160,3232 - mpz_t mpz; /* GMP integer */mpz162,3314 - mpz_t mpz; /* GMP integer */__anon349::__anon350::mpz162,3314 - mpq_t mpq; /* GMP rational */mpq163,3348 - mpq_t mpq; /* GMP rational */__anon349::__anon350::mpq163,3348 - } value;value165,3390 - } value;__anon349::value165,3390 -} number, *Number;number166,3400 -} number, *Number;Number166,3400 -#define TOINT_CONVERT_FLOAT TOINT_CONVERT_FLOAT168,3420 -#define TOINT_TRUNCATE TOINT_TRUNCATE169,3484 -#define intNumber(intNumber172,3534 -#define intNumber(intNumber174,3586 -#define floatNumber(floatNumber176,3640 -{ NUM_ERROR = FALSE, /* Syntax error */NUM_ERROR179,3701 - NUM_OK = TRUE, /* Ok */NUM_OK180,3760 - NUM_FUNDERFLOW = -1, /* Float underflow */NUM_FUNDERFLOW181,3809 - NUM_FOVERFLOW = -2, /* Float overflow */NUM_FOVERFLOW182,3871 - NUM_IOVERFLOW = -3 /* Integer overflow */NUM_IOVERFLOW183,3932 -} strnumstat;strnumstat184,3995 -#define Arg(Arg187,4011 -#define A1 A1188,4044 -#define A2 A2189,4069 -#define A3 A3190,4096 -#define A3 A3191,4123 -#define A4 A4192,4150 -#define A5 A5193,4177 -#define A6 A6194,4204 -#define A7 A7195,4231 -#define A8 A8196,4258 -#define A9 A9197,4285 -#define A10 A10198,4312 -#define NULL_ATOM NULL_ATOM202,4366 -#define __WINDOWS__ __WINDOWS__227,4790 - typedef Term PL_atomic_t; /* same size as a word */PL_atomic_t232,4853 -typedef struct record * Record;Record234,4908 -#define MAXSIGNAL MAXSIGNAL236,4942 -#define LOCAL_OVERFLOW LOCAL_OVERFLOW238,4964 -#define GLOBAL_OVERFLOW GLOBAL_OVERFLOW239,4995 -#define TRAIL_OVERFLOW TRAIL_OVERFLOW240,5026 -#define ARGUMENT_OVERFLOW ARGUMENT_OVERFLOW241,5057 -#define NOTRACE NOTRACE249,5419 -#define METAP METAP250,5449 -#define NDET NDET251,5484 -#define VA VA252,5520 -#define CREF CREF253,5545 -#define ISO ISO254,5569 -#define WM_SIGNALLED WM_SIGNALLED267,5883 -#define ROUND(ROUND274,6077 -#define isDefinedProcedure(isDefinedProcedure280,6234 -{ CVT_ok = 0, /* Conversion ok */CVT_ok300,6659 - CVT_wide, /* Conversion needs wide characters */CVT_wide301,6696 - CVT_partial, /* Input list is partial */CVT_partial302,6750 - CVT_nolist, /* Input list is not a list */CVT_nolist303,6796 - CVT_nocode, /* List contains a non-code */CVT_nocode304,6844 - CVT_nochar /* List contains a non-char */CVT_nochar305,6892 -} CVT_status;CVT_status306,6939 -{ CVT_status status;status309,6969 -{ CVT_status status;__anon353::status309,6969 - word culprit; /* for CVT_nocode/CVT_nochar */culprit310,6990 - word culprit; /* for CVT_nocode/CVT_nochar */__anon353::culprit310,6990 -} CVT_result;CVT_result311,7041 -#define OP_MAXPRIORITY OP_MAXPRIORITY317,7282 -#define OP_PREFIX OP_PREFIX319,7344 -#define OP_INFIX OP_INFIX320,7365 -#define OP_POSTFIX OP_POSTFIX321,7386 -#define OP_MASK OP_MASK322,7407 -#define OP_FX OP_FX324,7431 -#define OP_FY OP_FY325,7462 -#define OP_XF OP_XF326,7493 -#define OP_YF OP_YF327,7525 -#define OP_XFX OP_XFX328,7557 -#define OP_XFY OP_XFY329,7588 -#define OP_YFX OP_YFX330,7619 -#define CMP_ERROR CMP_ERROR338,7824 -#define CMP_LESS CMP_LESS339,7876 -#define CMP_EQUAL CMP_EQUAL340,7908 -#define CMP_GREATER CMP_GREATER341,7941 -#define CMP_NOTEQ CMP_NOTEQ342,7973 -{ AV_BIND,AV_BIND349,8118 - AV_SKIP,AV_SKIP350,8129 - AV_ERRORAV_ERROR351,8140 -} av_action;av_action352,8151 -{ functor_t functor; /* Functor to use ($VAR/1) */functor355,8180 -{ functor_t functor; /* Functor to use ($VAR/1) */__anon355::functor355,8180 - av_action on_attvar; /* How to handle attvars */on_attvar356,8233 - av_action on_attvar; /* How to handle attvars */__anon355::on_attvar356,8233 - int singletons; /* Write singletons as $VAR('_') */singletons357,8286 - int singletons; /* Write singletons as $VAR('_') */__anon355::singletons357,8286 - int numbered_check; /* Check for already numbered */numbered_check358,8346 - int numbered_check; /* Check for already numbered */__anon355::numbered_check358,8346 -} nv_options;nv_options359,8419 -#define GP_FIND GP_FIND366,8532 -#define GP_FINDHERE GP_FINDHERE367,8572 -#define GP_CREATE GP_CREATE368,8621 -#define GP_DEFINE GP_DEFINE369,8672 -#define GP_RESOLVE GP_RESOLVE370,8718 -#define GP_HOW_MASK GP_HOW_MASK372,8763 -#define GP_NAMEARITY GP_NAMEARITY373,8789 -#define GP_HIDESYSTEM GP_HIDESYSTEM374,8834 -#define GP_TYPE_QUIET GP_TYPE_QUIET375,8888 -#define GP_EXISTENCE_ERROR GP_EXISTENCE_ERROR376,8957 -#define GP_QUALIFY GP_QUALIFY377,9029 -#define GF_EXISTING GF_EXISTING380,9110 -#define GF_PROCEDURE GF_PROCEDURE381,9132 -#define FT_ATOM FT_ATOM394,9359 -#define FT_BOOL FT_BOOL395,9418 -#define FT_INTEGER FT_INTEGER396,9494 -#define FT_FLOAT FT_FLOAT397,9556 -#define FT_TERM FT_TERM398,9616 -#define FT_INT64 FT_INT64399,9675 -#define FT_FROM_VALUE FT_FROM_VALUE400,9739 -#define FT_MASK FT_MASK401,9811 -#define SYSTEM_MODE SYSTEM_MODE403,9875 -#define PL_malloc_atomic PL_malloc_atomic405,9958 -#define EXCEPTION_GUARDED(EXCEPTION_GUARDED407,9991 -#define TRUE TRUE430,10840 -#define FALSE FALSE431,10857 -#define succeed succeed433,10882 -#define fail fail434,10912 -#define TRY(TRY435,10940 -#define M_SYSTEM M_SYSTEM441,11079 -#define M_CHARESCAPE M_CHARESCAPE442,11140 -#define DBLQ_CHARS DBLQ_CHARS443,11194 -#define DBLQ_ATOM DBLQ_ATOM444,11261 -#define DBLQ_STRING DBLQ_STRING445,11322 -#undef DBLQ_MASKDBLQ_MASK447,11400 -#define DBLQ_MASK DBLQ_MASK449,11424 -#define UNKNOWN_FAIL UNKNOWN_FAIL450,11491 -#define UNKNOWN_WARNING UNKNOWN_WARNING451,11545 -#define UNKNOWN_ERROR UNKNOWN_ERROR452,11599 -#define UNKNOWN_MASK UNKNOWN_MASK453,11653 -#define CHARESCAPE_FEATURE CHARESCAPE_FEATURE461,11778 -#define GC_FEATURE GC_FEATURE462,11839 -#define TRACE_GC_FEATURE TRACE_GC_FEATURE463,11881 -#define TTY_CONTROL_FEATURE TTY_CONTROL_FEATURE464,11933 -#define READLINE_FEATURE READLINE_FEATURE465,11999 -#define DEBUG_ON_ERROR_FEATURE DEBUG_ON_ERROR_FEATURE466,12059 -#define REPORT_ERROR_FEATURE REPORT_ERROR_FEATURE467,12128 -#define FILE_CASE_FEATURE FILE_CASE_FEATURE468,12193 -#define FILE_CASE_PRESERVING_FEATURE FILE_CASE_PRESERVING_FEATURE469,12265 -#define DOS_FILE_NAMES_FEATURE DOS_FILE_NAMES_FEATURE470,12342 -#define ISO_FEATURE ISO_FEATURE471,12411 -#define OPTIMISE_FEATURE OPTIMISE_FEATURE472,12470 -#define FILEVARS_FEATURE FILEVARS_FEATURE473,12537 -#define AUTOLOAD_FEATURE AUTOLOAD_FEATURE474,12608 -#define CHARCONVERSION_FEATURE CHARCONVERSION_FEATURE475,12664 -#define LASTCALL_FEATURE LASTCALL_FEATURE476,12735 -#define EX_ABORT_FEATURE EX_ABORT_FEATURE477,12808 -#define BACKQUOTED_STRING_FEATURE BACKQUOTED_STRING_FEATURE478,12870 -#define SIGNALS_FEATURE SIGNALS_FEATURE479,12929 -#define DEBUGINFO_FEATURE DEBUGINFO_FEATURE480,12985 -#define WAKEUP_STATE_WAKEUP WAKEUP_STATE_WAKEUP490,13218 -#define WAKEUP_STATE_EXCEPTION WAKEUP_STATE_EXCEPTION491,13253 -#define WAKEUP_STATE_SKIP_EXCEPTION WAKEUP_STATE_SKIP_EXCEPTION492,13288 -typedef struct wakeup_statewakeup_state494,13329 -{ fid_t fid; /* foreign frame reference */fid495,13357 -{ fid_t fid; /* foreign frame reference */wakeup_state::fid495,13357 - int flags;flags496,13403 - int flags;wakeup_state::flags496,13403 -} wakeup_state;wakeup_state497,13417 -#define ESC ESC505,13644 -#define streq(streq506,13670 -#define CHAR_MODE CHAR_MODE508,13718 -#define CODE_MODE CODE_MODE509,13765 -#define BYTE_MODE BYTE_MODE510,13785 -#define PL_FILE_ABSOLUTE PL_FILE_ABSOLUTE526,14120 -#define PL_FILE_OSPATH PL_FILE_OSPATH527,14177 -#define PL_FILE_SEARCH PL_FILE_SEARCH528,14239 -#define PL_FILE_EXIST PL_FILE_EXIST529,14295 -#define PL_FILE_READ PL_FILE_READ530,14350 -#define PL_FILE_WRITE PL_FILE_WRITE531,14402 -#define PL_FILE_EXECUTE PL_FILE_EXECUTE532,14456 -#define PL_FILE_NOERRORS PL_FILE_NOERRORS533,14514 -#define PL_FA_ISO PL_FA_ISO536,14576 -#define ReadingSource ReadingSource542,14748 -typedef double real;real548,14859 -#define forwards forwards550,14883 -#define __WINDOWS__ __WINDOWS__556,15048 -COMMON(word) textToString(PL_chars_t *text);text622,17327 -COMMON(int) reportStreamError(IOSTREAM *s);s624,17373 -PL_EXPORT(int) PL_release_stream(IOSTREAM *s);s632,17682 -COMMON(atom_t) fileNameStream(IOSTREAM *s);s635,17733 -COMMON(int) streamStatus(IOSTREAM *s);s636,17779 -#define getOutputStream(getOutputStream638,17821 -#define getTextOutputStream(getTextOutputStream639,17891 -#define getBinaryOutputStream(getBinaryOutputStream640,17969 -#define getInputStream(getInputStream642,18050 -#define getTextInputStream(getTextInputStream643,18125 -#define getBinaryInputStream(getBinaryInputStream644,18201 -COMMON(void) prompt1(atom_t prompt);prompt655,18698 -COMMON(atom_t) encoding_to_atom(IOENC enc);enc656,18737 -COMMON(int) pl_see(term_t f);f657,18782 -COMMON(int) unicode_separator(pl_wchar_t c);c660,18844 -COMMON(word) pl_raw_read(term_t term);term661,18890 -COMMON(access_level_t) setAccessLevel(access_level_t new_level);new_level664,18989 -#define BaseName BaseName714,20769 -#define DirName DirName715,20795 -#define DeleteTemporaryFile(DeleteTemporaryFile722,20880 -PL_EXPORT(int) promoteToFloatNumber(Number n);n725,21003 -COMMON(word) pl_nl1(term_t stream);stream765,22723 -COMMON(int) writeAttributeMask(atom_t name);name767,22789 -COMMON(word) pl_print(term_t term);term771,22980 -COMMON(word) pl_writeln(term_t term);term775,23181 -COMMON(void) restoreWakeup(wakeup_state *state ARG_LD);ARG_LD786,23546 -COMMON(bool) systemMode(bool accept);accept796,23932 -setBoolean(bool *flag, term_t old, term_t new)setBoolean806,24173 -#define BEGIN_NUMBERVARS(BEGIN_NUMBERVARS814,24346 -#define END_NUMBERVARS(END_NUMBERVARS820,24535 -COMMON(int) f_is_prolog_var_start(wint_t c);c828,24716 -COMMON(int) f_is_prolog_atom_start(wint_t c);c829,24773 -COMMON(int) f_is_prolog_identifier_continue(wint_t c);c830,24831 -COMMON(int) f_is_prolog_symbol(wint_t c);c831,24898 -COMMON(int) PL_is_atom__LD(term_t t ARG_LD);ARG_LD838,25220 -COMMON(int) PL_is_variable__LD(term_t t ARG_LD);ARG_LD839,25267 -COMMON(term_t) PL_new_term_ref__LD(ARG1_LD);ARG1_LD840,25318 -#define PL_unify(PL_unify857,26162 -#define PL_unify_int64(PL_unify_int64858,26216 -#define PL_unify_int64_ex(PL_unify_int64_ex859,26278 -PL_unify_time(term_t t, time_t time) {PL_unify_time862,26365 -skip_list(Word l, Word *tailp ARG_LD) {skip_list869,26513 -valHandle__LD(term_t r ARG_LD)valHandle__LD874,26618 -static inline void *allocHeap__LD(size_t n ARG_LD)allocHeap__LD879,26694 -static inline void *allocHeapOrHalt(size_t n)allocHeapOrHalt884,26785 -static inline void freeHeap(void *mem, size_t n)freeHeap891,26915 -#define enableThreads(enableThreads940,28462 - -library/dialect/swi/os/pl-locale.c,3986 -#undef HAVE_WCSDUP HAVE_WCSDUP35,1286 -#define LOCK(LOCK42,1395 -#define UNLOCK(UNLOCK43,1447 -#undef LD LD45,1485 -#define LD LD46,1531 -#define LSTR_MAX LSTR_MAX48,1552 -{ char *decimal_point;decimal_point52,1612 -{ char *decimal_point;__anon356::decimal_point52,1612 - char *thousands_sep;thousands_sep53,1635 - char *thousands_sep;__anon356::thousands_sep53,1635 - char *grouping;grouping54,1658 - char *grouping;__anon356::grouping54,1658 -} lconv;lconv55,1676 -static struct lconv defl =defl57,1686 -localeconv(void)localeconv64,1767 -my_wcsdup(const wchar_t *in)my_wcsdup73,1850 -#define wcsdup(wcsdup81,1999 -ls_to_wcs(const char *in, const wchar_t *on_error)ls_to_wcs86,2058 -init_locale_strings(PL_locale *l, struct lconv *conv)init_locale_strings102,2381 -new_locale(PL_locale *proto)new_locale120,2804 -free_locale_strings(PL_locale *l)free_locale_strings141,3238 -free_locale(PL_locale *l)free_locale148,3360 -update_locale(PL_locale *l, int category, const char *locale)update_locale160,3518 -alias_locale(PL_locale *l, atom_t alias)alias_locale167,3661 -typedef struct locale_reflocale_ref197,4261 -{ PL_locale *data;data198,4287 -{ PL_locale *data;locale_ref::data198,4287 -} locale_ref;locale_ref199,4306 -write_locale_ref(IOSTREAM *s, atom_t aref, int flags)write_locale_ref203,4333 -acquire_locale_ref(atom_t aref)acquire_locale_ref214,4529 -release_locale_ref(atom_t aref)release_locale_ref222,4642 -save_locale_ref(atom_t aref, IOSTREAM *fd)save_locale_ref237,4878 -load_locale_ref(IOSTREAM *fd)load_locale_ref246,5077 -static PL_blob_t locale_blob =locale_blob253,5168 -unifyLocale(term_t t, PL_locale *l, int alias)unifyLocale271,5461 -getLocale(term_t t, PL_locale **lp)getLocale293,5853 -getLocaleEx(term_t t, PL_locale **lp)getLocaleEx327,6460 -locale_alias_property(PL_locale *l, term_t prop ARG_LD)locale_alias_property345,6820 -locale_decimal_point_property(PL_locale *l, term_t prop ARG_LD)locale_decimal_point_property353,7019 -locale_thousands_sep_property(PL_locale *l, term_t prop ARG_LD)locale_thousands_sep_property361,7288 -locale_grouping_property(PL_locale *l, term_t prop ARG_LD)locale_grouping_property369,7552 -{ functor_t functor; /* functor of property */functor395,8174 -{ functor_t functor; /* functor of property */__anon357::functor395,8174 - int (*function)(); /* function to generate */function396,8223 - int (*function)(); /* function to generate */__anon357::function396,8223 -} lprop;lprop397,8274 -static const lprop lprop_list [] =lprop_list399,8284 -{ TableEnum e; /* Enumerator on mutex-table */e408,8585 -{ TableEnum e; /* Enumerator on mutex-table */__anon358::e408,8585 - PL_locale *l; /* current locale */l409,8635 - PL_locale *l; /* current locale */__anon358::l409,8635 - const lprop *p; /* Pointer in properties */p410,8675 - const lprop *p; /* Pointer in properties */__anon358::p410,8675 - int enum_properties; /* Enumerate the properties */enum_properties411,8723 - int enum_properties; /* Enumerate the properties */__anon358::enum_properties411,8723 -} lprop_enum;lprop_enum412,8779 -get_prop_def(term_t t, atom_t expected, const lprop *list, const lprop **def)get_prop_def416,8806 -advance_lstate(lprop_enum *state)advance_lstate443,9274 -free_lstate(lprop_enum *state)free_lstate466,9603 -get_atom_arg(term_t t, atom_t *a)get_atom_arg477,9792 -set_chars(term_t t, wchar_t **valp)set_chars614,12649 -#define MAX_GROUPING MAX_GROUPING628,12879 -get_group_size_ex(term_t t, int *s)get_group_size_ex631,12915 -set_grouping(term_t t, char **valp)set_grouping647,13154 -initDefaultsStreamsLocale(PL_locale *l)initDefaultsStreamsLocale854,17287 -initLocale(void)initLocale866,17463 -updateLocale(int category, const char *locale)updateLocale886,17836 -initStreamLocale(IOSTREAM *s)initStreamLocale892,17953 -acquireLocale(PL_locale *l)acquireLocale909,18195 -releaseLocale(PL_locale *l)releaseLocale919,18286 - -library/dialect/swi/os/pl-locale.h,1388 -#define PL_LOCALE_H_INCLUDEDPL_LOCALE_H_INCLUDED24,972 -#define LOCALE_MAGIC LOCALE_MAGIC26,1002 -typedef struct PL_localePL_locale28,1033 -{ atom_t alias; /* named alias (if any) */alias29,1058 -{ atom_t alias; /* named alias (if any) */PL_locale::alias29,1058 - atom_t symbol; /* blob handle */symbol30,1102 - atom_t symbol; /* blob handle */PL_locale::symbol30,1102 - int magic; /* LOCALE_MAGIC */magic31,1138 - int magic; /* LOCALE_MAGIC */PL_locale::magic31,1138 - int references; /* Reference count */references32,1172 - int references; /* Reference count */PL_locale::references32,1172 - wchar_t *decimal_point; /* Radix character */decimal_point34,1247 - wchar_t *decimal_point; /* Radix character */PL_locale::decimal_point34,1247 - wchar_t *thousands_sep; /* Separator for digit group left of radix character */thousands_sep35,1300 - wchar_t *thousands_sep; /* Separator for digit group left of radix character */PL_locale::thousands_sep35,1300 - char *grouping; /* Grouping */grouping36,1387 - char *grouping; /* Grouping */PL_locale::grouping36,1387 -} PL_locale;PL_locale37,1428 -#define PL_HAVE_PL_LOCALE PL_HAVE_PL_LOCALE39,1442 -COMMON(PL_locale *) acquireLocale(PL_locale *l);l43,1565 -COMMON(void) releaseLocale(PL_locale *l);l44,1614 -COMMON(int) initStreamLocale(IOSTREAM *s);s45,1657 - -library/dialect/swi/os/pl-nt.c,4067 -#define __WINDOWS__ __WINDOWS__26,977 -#define WINVER WINVER36,1121 -#define _WIN32_IE _WIN32_IE47,1368 -#define PL_MSG_EXCEPTION_RAISED PL_MSG_EXCEPTION_RAISED50,1449 -#define PL_MSG_IGNORED PL_MSG_IGNORED51,1484 -#define PL_MSG_HANDLED PL_MSG_HANDLED52,1509 -hasConsole(void)hasConsole91,2352 -PL_wait_for_console_input(void *handle)PL_wait_for_console_input111,2677 -PlMessage(const char *fm, ...)PlMessage143,3316 -WinError(void)WinError169,3767 -Pause(double t)Pause211,4650 -ftruncate(int fileno, int64_t length)ftruncate268,5689 -#define nano nano285,5935 -#define ntick ntick286,5960 -CpuTime(cputime_kind which)CpuTime289,6016 -CpuCount(void)CpuCount319,6614 -setOSPrologFlags(void)setOSPrologFlags329,6714 -findExecutable(const char *module, char *exe)findExecutable335,6807 -{ const char *name;name371,7646 -{ const char *name;__anon359::name371,7646 - UINT id;id372,7666 - UINT id;__anon359::id372,7666 -} showtype;showtype373,7684 -get_showCmd(term_t show, UINT *cmd)get_showCmd376,7708 -win_exec(size_t len, const wchar_t *cmd, UINT show)win_exec419,8708 -utf8towcs(wchar_t *o, const char *src)utf8towcs462,9617 -System(char *command) /* command is a UTF-8 string */System474,9758 -pl_win_exec(term_t cmd, term_t how)pl_win_exec528,11018 -{ int eno;eno541,11254 -{ int eno;__anon360::eno541,11254 - const char *message;message542,11267 - const char *message;__anon360::message542,11267 -} shell_error;shell_error543,11290 -static const shell_error se_errors[] =se_errors545,11306 -win_shell(term_t op, term_t file, term_t how)win_shell566,12113 -pl_win_module_file(term_t module, term_t file)pl_win_module_file618,13497 -PL_win_message_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)PL_win_message_proc636,13857 -#define LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR670,14753 -#define LOAD_LIBRARY_SEARCH_DEFAULT_DIRS LOAD_LIBRARY_SEARCH_DEFAULT_DIRS673,14853 -typedef void * DLL_DIRECTORY_COOKIE;DLL_DIRECTORY_COOKIE675,14912 -static const char *dlmsg;dlmsg678,14957 -static DLL_DIRECTORY_COOKIE WINAPI (*f_AddDllDirectoryW)(wchar_t* dir);f_AddDllDirectoryW679,14983 -static BOOL WINAPI (*f_RemoveDllDirectory)(DLL_DIRECTORY_COOKIE);f_RemoveDllDirectory680,15055 -load_library_search_flags(void)load_library_search_flags683,15135 -is_windows_abs_path(const wchar_t *path)is_windows_abs_path743,16676 -dlopen(const char *file, int flags) /* file is in UTF-8, POSIX path */dlopen753,16911 -dlerror(void)dlerror783,17528 -dlsym(void *handle, char *symbol)dlsym789,17569 -dlclose(void *handle)dlclose803,17756 -ms_snprintf(char *buffer, size_t count, const char *fmt, ...)ms_snprintf840,19026 -typedef struct folderidfolderid868,19480 -{ KNOWNFOLDERID *csidl;csidl869,19504 -{ KNOWNFOLDERID *csidl;folderid::csidl869,19504 - char *name;name870,19528 - char *name;folderid::name870,19528 -} folderid;folderid871,19542 -static folderid *folderids;folderids873,19555 -in(REFKNOWNFOLDERID idp, char *name, int i)in877,19625 -j(int i)j888,19882 -init_folderids(void)init_folderids1005,25868 -unify_csidl_path(term_t t, REFKNOWNFOLDERID csidl)unify_csidl_path1013,25989 -typedef struct folderidfolderid1032,26356 -{ int csidl;csidl1033,26380 -{ int csidl;folderid::csidl1033,26380 - const char *name;name1034,26393 - const char *name;folderid::name1034,26393 -} folderid;folderid1035,26413 -static const folderid folderids[] =folderids1037,26426 -unify_csidl_path(term_t t, int csidl)unify_csidl_path1083,28132 -#define wstreq(wstreq1180,30478 -reg_open_key(const wchar_t *which, int create)reg_open_key1183,30535 -#define MAXREGSTRLEN MAXREGSTRLEN1235,31660 -static struct regdefregdef1348,35161 -{ const char *name;name1349,35182 -{ const char *name;regdef::name1349,35182 - int *address;address1350,35202 - int *address;regdef::address1350,35202 -} const regdefs[] =regdefs1351,35225 -setStacksFromKey(HKEY key)setStacksFromKey1360,35419 -getDefaultsFromRegistry(void)getDefaultsFromRegistry1380,35791 - -library/dialect/swi/os/pl-option.c,1055 -#define MAXOPTIONS MAXOPTIONS35,1249 -{ int *b; /* boolean value */b38,1286 -{ int *b; /* boolean value */__anon361::b38,1286 - long *l; /* long value */l39,1319 - long *l; /* long value */__anon361::l39,1319 - int *i; /* integer value */i40,1350 - int *i; /* integer value */__anon361::i40,1350 - uintptr_t *sz; /* size_t value */sz41,1384 - uintptr_t *sz; /* size_t value */__anon361::sz41,1384 - double *f; /* double value */f42,1422 - double *f; /* double value */__anon361::f42,1422 - char **s; /* string value */s43,1457 - char **s; /* string value */__anon361::s43,1457 - word *a; /* atom value */a44,1491 - word *a; /* atom value */__anon361::a44,1491 - term_t *t; /* term-reference */t45,1522 - term_t *t; /* term-reference */__anon361::t45,1522 - void *ptr; /* anonymous pointer */ptr46,1559 - void *ptr; /* anonymous pointer */__anon361::ptr46,1559 -} optvalue;optvalue47,1599 -scan_options(term_t options, int flags, atom_t optype,scan_options51,1618 - -library/dialect/swi/os/pl-option.h,827 -#define OPTION_H_INCLUDEDOPTION_H_INCLUDED26,985 -#define OPT_BOOL OPT_BOOL28,1012 -#define OPT_INT OPT_INT29,1046 -#define OPT_STRING OPT_STRING30,1067 -#define OPT_ATOM OPT_ATOM31,1090 -#define OPT_TERM OPT_TERM32,1111 -#define OPT_LONG OPT_LONG33,1154 -#define OPT_NATLONG OPT_NATLONG34,1175 -#define OPT_SIZE OPT_SIZE35,1210 -#define OPT_DOUBLE OPT_DOUBLE36,1245 -#define OPT_LOCALE OPT_LOCALE37,1268 -#define OPT_TYPE_MASK OPT_TYPE_MASK38,1291 -#define OPT_INF OPT_INF39,1318 -#define OPT_ALL OPT_ALL41,1361 -{ atom_t name; /* Name of option */name44,1411 -{ atom_t name; /* Name of option */__anon362::name44,1411 - int type; /* Type of option */type45,1449 - int type; /* Type of option */__anon362::type45,1449 -} opt_spec, *OptSpec;opt_spec46,1485 -} opt_spec, *OptSpec;OptSpec46,1485 - -library/dialect/swi/os/pl-os.c,4351 -#define _POSIX_PTHREAD_SEMANTICS _POSIX_PTHREAD_SEMANTICS40,1459 -#define __MINGW_USE_VC2005_COMPAT __MINGW_USE_VC2005_COMPAT43,1502 -#define statstruct statstruct70,2001 -#define statstruct statstruct72,2042 -#define statfunc statfunc73,2073 -static double initial_time;initial_time105,2590 -#define LOCK(LOCK108,2636 -#define UNLOCK(UNLOCK109,2667 -#define DEFAULT_PATH DEFAULT_PATH114,2754 -initOs(void)initOs147,3447 -cleanupOs(void)cleanupOs168,3761 -OsError(void)OsError183,4142 -#define timespec_to_double(timespec_to_double226,5316 -#define Hz Hz236,5539 -# define Hz Hz239,5594 -# define Hz Hz241,5616 -CpuTime(cputime_kind which)CpuTime248,5727 -#define CPU_TIME_DONECPU_TIME_DONE251,5826 -#define CPU_TIME_DONECPU_TIME_DONE261,6053 -WallTime(void)WallTime299,6690 -CpuCount()CpuCount336,7375 -CpuCount()CpuCount344,7470 -CpuCount(void)CpuCount385,8110 -#define CpuCount(CpuCount397,8273 -setOSPrologFlags(void)setOSPrologFlags407,8390 -UsedMemory(void)UsedMemory420,8642 -FreeMemory(void)FreeMemory439,8973 -setRandom(unsigned int *seedp)setRandom476,9955 -_PL_Random(void)_PL_Random504,10411 -PL_localtime_r(const time_t *t, struct tm *r)PL_localtime_r571,12184 -PL_asctime_r(const struct tm *tm, char *buf)PL_asctime_r594,12510 -#define O_HAVE_TERMIO O_HAVE_TERMIO620,12906 -#define termios termios624,13004 -#define O_HAVE_TERMIO O_HAVE_TERMIO625,13027 -#define O_HAVE_TERMIO O_HAVE_TERMIO629,13108 -typedef struct tty_statetty_state634,13173 - struct termios tab;tab637,13227 - struct termios tab;tty_state::tab637,13227 -} tty_state;tty_state643,13351 -#define TTY_STATE(TTY_STATE645,13365 -ResetStdin(void)ResetStdin663,13905 -Sread_terminal(void *handle, char *buf, size_t size)Sread_terminal670,14071 -ResetTty(void)ResetTty700,14744 -#define TIOCGETA TIOCGETA724,15251 -PushTty(IOSTREAM *s, ttybuf *buf, int mode)PushTty729,15295 -PopTty(IOSTREAM *s, ttybuf *buf, int do_free)PopTty800,16798 -PushTty(IOSTREAM *s, ttybuf *buf, int mode)PushTty834,17347 -PopTty(IOSTREAM *s, ttybuf *buf, int do_free)PopTty876,18163 -PushTty(IOSTREAM *s, ttybuf *buf, int mode)PushTty899,18522 -PopTty(IOSTREAM *s, ttybuf *buf, int do_free)PopTty908,18628 -getenv3(const char *name, char *buf, size_t len)getenv3946,19761 -Getenv(const char *name, char *buf, size_t len)Getenv969,20127 -Setenv(char *name, char *value)Setenv982,20340 -Unsetenv(char *name)Unsetenv1009,20952 -initEnviron()initEnviron1029,21246 -growEnviron(char **e, int amount)growEnviron1047,21756 -initEnviron(void)initEnviron1089,22510 -matchName(const char *e, const char *name)matchName1095,22573 -setEntry(char **e, char *name, char *value)setEntry1107,22791 -Setenv(char *name, char *value)Setenv1118,22988 -Unsetenv(char *name)Unsetenv1139,23365 -#define SPECIFIC_SYSTEM SPECIFIC_SYSTEM1177,24265 -#undef UNION_WAITUNION_WAIT1186,24635 -#define wait_t wait_t1188,24675 -# define WEXITSTATUS(WEXITSTATUS1191,24715 -# define WIFEXITED(WIFEXITED1194,24799 -#define wait_t wait_t1201,24956 -#define WEXITSTATUS(WEXITSTATUS1204,25003 -#define WTERMSIG(WTERMSIG1207,25065 -typedef void (*sigf_t)(int sig);sigf_t1213,25158 -System(char *cmd)System1216,25196 -#define SPECIFIC_SYSTEM SPECIFIC_SYSTEM1291,26887 -System(char *command)System1294,26918 -#define SPECIFIC_SYSTEM SPECIFIC_SYSTEM1330,28058 -System(command)System1342,28380 -findExecutable(const char *av0, char *buffer)findExecutable1364,28849 -okToExec(const char *s)okToExec1408,29720 -#define PATHSEP PATHSEP1418,29977 -#define EXEC_EXTENSIONS EXEC_EXTENSIONS1422,30081 -#define PATHSEP PATHSEP1423,30146 -okToExec(const char *s)okToExec1429,30212 -#define isRelativePath(isRelativePath1451,30696 -Which(const char *program, char *fullname)Which1454,30753 -#define PAUSE_DONE PAUSE_DONE1526,32500 -#define PAUSE_DONE PAUSE_DONE1530,32601 -Pause(double t)Pause1533,32627 -#define PAUSE_DONE PAUSE_DONE1557,33035 -Pause(double t)Pause1560,33061 -#define PAUSE_DONE PAUSE_DONE1573,33248 -Pause(double time)Pause1576,33274 -#define PAUSE_DONE PAUSE_DONE1608,33904 -Pause(double time) /* the EMX function sleep uses seconds */Pause1611,33967 -#define PAUSE_DONE PAUSE_DONE1623,34245 -Pause(double t)Pause1626,34271 -#define PAUSE_DONE PAUSE_DONE1638,34430 -Pause(double t)Pause1641,34456 -Pause(double t)Pause1651,34563 - -library/dialect/swi/os/pl-os.h,936 -#define STREAM_OPEN_BIN_READ STREAM_OPEN_BIN_READ44,1375 -#define STREAM_OPEN_BIN_WRITE STREAM_OPEN_BIN_WRITE48,1447 -#define PIPE PIPE52,1508 -#define Popen(Popen53,1523 -#define Pclose(Pclose54,1574 -#define MAXPATHLEN MAXPATHLEN59,1647 -#define MAXPATHLEN MAXPATHLEN62,1697 -{ CPU_USER,CPU_USER75,1916 - CPU_SYSTEMCPU_SYSTEM76,1928 -} cputime_kind;cputime_kind77,1941 -#define FD_ZERO(FD_ZERO99,2405 -#define FD_SET(FD_SET100,2456 -#define FD_ISSET(FD_ISSET101,2529 -#define TTY_COOKED TTY_COOKED109,2734 -#define TTY_RAW TTY_RAW110,2782 -#define TTY_OUTPUT TTY_OUTPUT111,2832 -#define TTY_SAVE TTY_SAVE112,2884 -{ void *state; /* Saved state */state115,2944 -{ void *state; /* Saved state */__anon364::state115,2944 - int mode; /* Prolog;'s view on mode */mode116,2980 - int mode; /* Prolog;'s view on mode */__anon364::mode116,2980 -} ttybuf;ttybuf117,3026 -#define IsaTty(IsaTty122,3129 - -library/dialect/swi/os/pl-privitf.c,724 -#undef LDLD26,975 -#define LD LD27,985 -#define setHandle(setHandle31,1029 -#define valHandleP(valHandleP32,1077 -#define valHandle(valHandle34,1115 -valHandle__LD(term_t r ARG_LD)valHandle__LD37,1181 -PL_get_char(term_t c, int *p, int eof)PL_get_char66,1980 -PL_unify_char(term_t chr, int c, int how)PL_unify_char104,2840 -allocList(size_t maxcells, list_ctx *ctx)allocList134,3378 -unifyList(term_t term, list_ctx *ctx)unifyList142,3531 -unifyDiffList(term_t head, term_t tail, list_ctx *ctx)unifyDiffList151,3704 -allocList(size_t maxcells, list_ctx *ctx)allocList162,3915 -unifyList(term_t term, list_ctx *ctx)unifyList170,4042 -unifyDiffList(term_t head, term_t tail, list_ctx *ctx)unifyDiffList188,4301 - -library/dialect/swi/os/pl-privitf.h,591 -#define PL_PRIVITF_H_INCLUDEDPL_PRIVITF_H_INCLUDED26,984 -typedef struct list_ctxlist_ctx61,2262 - Term gstore;gstore63,2288 - Term gstore;list_ctx::gstore63,2288 - Term start;start64,2303 - Term start;list_ctx::start64,2303 -} list_ctx;list_ctx65,2317 -addSmallIntList(list_ctx *ctx, int value)addSmallIntList68,2349 -typedef struct list_ctxlist_ctx75,2461 -{ Word lp;lp76,2485 -{ Word lp;list_ctx::lp76,2485 - Word gstore;gstore77,2496 - Word gstore;list_ctx::gstore77,2496 -} list_ctx;list_ctx78,2511 -addSmallIntList(list_ctx *ctx, int value)addSmallIntList81,2543 - -library/dialect/swi/os/pl-prologflag.c,3328 -#define LOCK(LOCK44,1310 -#define UNLOCK(UNLOCK45,1345 -typedef struct _prolog_flag_prolog_flag86,3325 -{ short flags; /* Type | Flags */flags87,3353 -{ short flags; /* Type | Flags */_prolog_flag::flags87,3353 - short index; /* index in PLFLAG_ mask */index88,3390 - short index; /* index in PLFLAG_ mask */_prolog_flag::index88,3390 - { atom_t a; /* value as atom */a90,3444 - { atom_t a; /* value as atom */_prolog_flag::__anon365::a90,3444 - int64_t i; /* value as integer */i91,3480 - int64_t i; /* value as integer */_prolog_flag::__anon365::i91,3480 - double f; /* value as float */f92,3520 - double f; /* value as float */_prolog_flag::__anon365::f92,3520 - record_t t; /* value as term */t93,3557 - record_t t; /* value as term */_prolog_flag::__anon365::t93,3557 - } value;value94,3595 - } value;_prolog_flag::value94,3595 -} prolog_flag;prolog_flag95,3606 -indexOfBoolMask(unsigned int mask)indexOfBoolMask111,4049 -setPrologFlag(const char *name, int flags, ...)setPrologFlag126,4200 -freePrologFlag(prolog_flag *f)freePrologFlag221,6350 -copySymbolPrologFlagTable(Symbol s)copySymbolPrologFlagTable231,6506 -freeSymbolPrologFlagTable(Symbol s)freeSymbolPrologFlagTable243,6769 -setDoubleQuotes(atom_t a, unsigned int *flagp)setDoubleQuotes250,6848 -setUnknown(term_t value, atom_t a, Module m)setUnknown278,7358 -setWriteAttributes(atom_t a)setWriteAttributes314,8188 -setAccessLevelFromAtom(atom_t a)setAccessLevelFromAtom331,8507 -getOccursCheckMask(atom_t a, occurs_check_t *val)getOccursCheckMask346,8793 -setOccursCheck(atom_t a)setOccursCheck361,9069 -setEncoding(atom_t a)setEncoding376,9347 -setStreamTypeCheck(atom_t a)setStreamTypeCheck394,9632 -set_prolog_flag_unlocked(term_t key, term_t value, int flags)set_prolog_flag_unlocked418,10063 -static const opt_spec prolog_flag_options[] =prolog_flag_options686,16301 -lookupFlag(atom_t key)lookupFlag740,17541 -PL_current_prolog_flag(atom_t name, int type, void *value)PL_current_prolog_flag760,17866 -unify_prolog_flag_value(Module m, atom_t key, prolog_flag *f, term_t val)unify_prolog_flag_value803,18636 -unify_prolog_flag_access(prolog_flag *f, term_t access)unify_prolog_flag_access889,20743 -unify_prolog_flag_type(prolog_flag *f, term_t type)unify_prolog_flag_type900,20954 -{ TableEnum table_enum;table_enum930,21427 -{ TableEnum table_enum;__anon366::table_enum930,21427 - atom_t scope;scope931,21451 - atom_t scope;__anon366::scope931,21451 - int explicit_scope;explicit_scope932,21467 - int explicit_scope;__anon366::explicit_scope932,21467 - Module module;module933,21489 - Module module;__anon366::module933,21489 -} prolog_flag_enum;prolog_flag_enum934,21506 -pl_prolog_flag5(term_t key, term_t value,pl_prolog_flag5937,21532 -pl_prolog_flag(term_t name, term_t value, control_t h)pl_prolog_flag1058,24415 -#define SO_EXT SO_EXT1068,24640 -#define SO_PATH SO_PATH1071,24683 -initPrologFlagTable(void)initPrologFlagTable1075,24737 -initPrologFlags(void)initPrologFlags1088,24954 -setArgvPrologFlag(const char *flag, int argc, char **argv)setArgvPrologFlag1255,31879 -setTZPrologFlag(void)setTZPrologFlag1276,32381 -setVersionPrologFlag(void)setVersionPrologFlag1284,32494 -cleanupPrologFlags(void)cleanupPrologFlags1308,33028 - -library/dialect/swi/os/pl-read.c,3787 -static bool isStringStream(IOSTREAM *s) {isStringStream16,256 -void init_read_data(ReadData _PL_rd, IOSTREAM *in ARG_LD) {init_read_data20,345 -void free_read_data(ReadData _PL_rd) {}free_read_data37,916 -static int read_term(term_t t, ReadData _PL_rd ARG_LD) {read_term39,957 -static void addUTF8Buffer(Buffer b, int c) {addUTF8Buffer45,1108 -#define CharTypeW(CharTypeW63,1466 -#define PlBlankW(PlBlankW67,1676 -#define PlUpperW(PlUpperW68,1729 -#define PlIdStartW(PlIdStartW69,1782 -#define PlIdContW(PlIdContW71,1944 -#define PlSymbolW(PlSymbolW72,2000 -#define PlPunctW(PlPunctW73,2051 -#define PlSoloW(PlSoloW74,2094 -#define PlInvalidW(PlInvalidW75,2142 -int f_is_prolog_var_start(wint_t c) {f_is_prolog_var_start77,2183 -int f_is_prolog_atom_start(wint_t c) { return PlIdStartW(c) != 0; }f_is_prolog_atom_start81,2277 -int f_is_prolog_identifier_continue(wint_t c) {f_is_prolog_identifier_continue83,2346 -int f_is_prolog_symbol(wint_t c) { return PlSymbolW(c) != 0; }f_is_prolog_symbol87,2432 -int unicode_separator(pl_wchar_t c) { return PlBlankW(c); }unicode_separator89,2496 -static int reportReadError(ReadData rd) {reportReadError96,2750 -#define syntaxError(syntaxError137,4032 -static term_t makeErrorTerm(const char *id_str, term_t id_term,makeErrorTerm143,4361 -static bool errorWarning(const char *id_str, term_t id_term, ReadData _PL_rd) {errorWarning218,6346 -static void clearBuffer(ReadData _PL_rd) {clearBuffer240,6799 -static void growToBuffer(int c, ReadData _PL_rd) {growToBuffer252,7031 -static inline void addByteToBuffer(int c, ReadData _PL_rd) {addByteToBuffer270,7536 -static void addToBuffer(int c, ReadData _PL_rd) {addToBuffer279,7695 -void Yap_setCurrentSourceLocation(void *rd) {Yap_setCurrentSourceLocation293,7965 -static inline int getchr__(ReadData _PL_rd) {getchr__299,8070 -#define getchr(getchr308,8268 -#define getchrq(getchrq309,8302 -#define ensure_space(ensure_space311,8341 -#define set_start_line set_start_line316,8669 -static int parse_quasi_quotations(ReadData _PL_rd ARG_LD) {parse_quasi_quotations359,10107 -#define rawSyntaxError(rawSyntaxError394,11080 -static int raw_read_quoted(int q, ReadData _PL_rd) {raw_read_quoted401,11490 -static int add_comment(Buffer b, IOPOS *pos, ReadData _PL_rd ARG_LD) {add_comment472,13187 -static void setErrorLocation(IOPOS *pos, ReadData _PL_rd) {setErrorLocation494,13928 -static unsigned char *raw_read2(ReadData _PL_rd ARG_LD) {raw_read2505,14176 -static unsigned char *raw_read(ReadData _PL_rd, unsigned char **endp ARG_LD) {raw_read876,24228 -static void callCommentHook(term_t comments, term_t tpos, term_t term) {callCommentHook896,24699 -static unsigned char *backSkipUTF8(unsigned const char *start,backSkipUTF8925,25441 -static unsigned char *backSkipBlanks(const unsigned char *start,backSkipBlanks936,25727 -static inline ucharp skipSpaces(cucharp in) {skipSpaces955,26195 -word pl_raw_read2(term_t from, term_t term) {pl_raw_read2969,26402 -static int unify_read_term_position(term_t tpos ARG_LD) {unify_read_term_position1017,27400 -static const opt_spec read_clause_options[] = {read_clause_options1027,27750 -static int read_clause(IOSTREAM *s, term_t term, term_t options ARG_LD) {read_clause1048,28354 -word pl_raw_read(term_t term) { return pl_raw_read2(0, term); }pl_raw_read1150,31288 -static const opt_spec read_term_options[] = {read_term_options1152,31353 -static foreign_t read_term_from_stream(IOSTREAM *s, term_t term,read_term_from_stream1171,31957 -static int atom_to_term(term_t atom, term_t term, term_t bindings) {atom_to_term1364,36764 -Term Yap_CharsToTerm(const char *s, size_t *lenp, Term *bindingsp) {Yap_CharsToTerm1424,38161 -int PL_chars_to_term(const char *s, term_t t) {PL_chars_to_term1492,40019 - -library/dialect/swi/os/pl-read.h,6734 -typedef struct vlist_struct_t {vlist_struct_t2,1 - struct VARSTRUCT *ve;ve3,33 - struct VARSTRUCT *ve;vlist_struct_t::ve3,33 - struct vlist_struct_t *next;next4,57 - struct vlist_struct_t *next;vlist_struct_t::next4,57 -} vlist_t;vlist_t5,88 -typedef struct qq_struct_t {qq_struct_t7,100 - unsigned char *text;text8,129 - unsigned char *text;qq_struct_t::text8,129 - IOPOS start, mid, end;start9,152 - IOPOS start, mid, end;qq_struct_t::start9,152 - IOPOS start, mid, end;mid9,152 - IOPOS start, mid, end;qq_struct_t::mid9,152 - IOPOS start, mid, end;end9,152 - IOPOS start, mid, end;qq_struct_t::end9,152 - vlist_t *vlist;vlist10,177 - vlist_t *vlist;qq_struct_t::vlist10,177 - struct qq_struct_t *next;next11,195 - struct qq_struct_t *next;qq_struct_t::next11,195 -} qq_t;qq_t12,223 -typedef unsigned char * ucharp;ucharp14,232 -typedef const unsigned char * cucharp;cucharp15,270 -#define utf8_get_uchar(utf8_get_uchar17,310 -#define FASTBUFFERSIZE FASTBUFFERSIZE19,382 -struct read_bufferread_buffer21,444 -{ int size; /* current size of read buffer */size22,463 -{ int size; /* current size of read buffer */read_buffer::size22,463 - unsigned char *base; /* base of read buffer */base23,511 - unsigned char *base; /* base of read buffer */read_buffer::base23,511 - unsigned char *here; /* current position in read buffer */here24,561 - unsigned char *here; /* current position in read buffer */read_buffer::here24,561 - unsigned char *end; /* end of the valid buffer */end25,623 - unsigned char *end; /* end of the valid buffer */read_buffer::end25,623 - IOSTREAM *stream; /* stream we are reading from */stream27,677 - IOSTREAM *stream; /* stream we are reading from */read_buffer::stream27,677 - unsigned char fast[FASTBUFFERSIZE]; /* Quick internal buffer */fast28,731 - unsigned char fast[FASTBUFFERSIZE]; /* Quick internal buffer */read_buffer::fast28,731 -#define RD_MAGIC RD_MAGIC31,801 -typedef struct read_data_tread_data_t33,830 -{ unsigned char *here; /* current character */here34,857 -{ unsigned char *here; /* current character */read_data_t::here34,857 - unsigned char *base; /* base of clause */base35,906 - unsigned char *base; /* base of clause */read_data_t::base35,906 - unsigned char *end; /* end of the clause */end36,952 - unsigned char *end; /* end of the clause */read_data_t::end36,952 - unsigned char *token_start; /* start of most recent read token */token_start37,1000 - unsigned char *token_start; /* start of most recent read token */read_data_t::token_start37,1000 - int magic; /* RD_MAGIC */magic39,1070 - int magic; /* RD_MAGIC */read_data_t::magic39,1070 - IOPOS position; /* Line, line pos, char and byte */position40,1101 - IOPOS position; /* Line, line pos, char and byte */read_data_t::position40,1101 - unsigned char *posp; /* position pointer */posp41,1177 - unsigned char *posp; /* position pointer */read_data_t::posp41,1177 - size_t posi; /* position number */posi42,1225 - size_t posi; /* position number */read_data_t::posi42,1225 - term_t subtpos; /* Report Subterm positions */subtpos44,1265 - term_t subtpos; /* Report Subterm positions */read_data_t::subtpos44,1265 - bool cycles; /* Re-establish cycles */cycles45,1315 - bool cycles; /* Re-establish cycles */read_data_t::cycles45,1315 - source_location start_of_term; /* Position of start of term */start_of_term46,1359 - source_location start_of_term; /* Position of start of term */read_data_t::start_of_term46,1359 - module_t module; /* Current source module */module47,1431 - module_t module; /* Current source module */read_data_t::module47,1431 - unsigned int flags; /* Module syntax flags */flags48,1480 - unsigned int flags; /* Module syntax flags */read_data_t::flags48,1480 - int styleCheck; /* style-checking mask */styleCheck49,1530 - int styleCheck; /* style-checking mask */read_data_t::styleCheck49,1530 - bool backquoted_string; /* Read `hello` as string */backquoted_string50,1576 - bool backquoted_string; /* Read `hello` as string */read_data_t::backquoted_string50,1576 - int *char_conversion_table; /* active conversion table */char_conversion_table52,1633 - int *char_conversion_table; /* active conversion table */read_data_t::char_conversion_table52,1633 - atom_t on_error; /* Handling of syntax errors */on_error54,1701 - atom_t on_error; /* Handling of syntax errors */read_data_t::on_error54,1701 - int has_exception; /* exception is raised */has_exception55,1753 - int has_exception; /* exception is raised */read_data_t::has_exception55,1753 - term_t exception; /* raised exception */exception57,1803 - term_t exception; /* raised exception */read_data_t::exception57,1803 - term_t variables; /* report variables */variables58,1847 - term_t variables; /* report variables */read_data_t::variables58,1847 - term_t singles; /* Report singleton variables */singles59,1891 - term_t singles; /* Report singleton variables */read_data_t::singles59,1891 - term_t varnames; /* Report variables+names */varnames60,1943 - term_t varnames; /* Report variables+names */read_data_t::varnames60,1943 - int strictness; /* Strictness level */strictness61,1992 - int strictness; /* Strictness level */read_data_t::strictness61,1992 - term_t quasi_quotations; /* User option quasi_quotations(QQ) */quasi_quotations64,2061 - term_t quasi_quotations; /* User option quasi_quotations(QQ) */read_data_t::quasi_quotations64,2061 - term_t qq; /* Quasi quoted list */qq65,2140 - term_t qq; /* Quasi quoted list */read_data_t::qq65,2140 - term_t qq_tail; /* Tail of the quoted stuff */qq_tail66,2204 - term_t qq_tail; /* Tail of the quoted stuff */read_data_t::qq_tail66,2204 - term_t comments; /* Report comments */comments69,2283 - term_t comments; /* Report comments */read_data_t::comments69,2283 - struct read_buffer _rb; /* keep read characters here */_rb71,2326 - struct read_buffer _rb; /* keep read characters here */read_data_t::_rb71,2326 -} read_data, *ReadData;read_data72,2385 -} read_data, *ReadData;ReadData72,2385 -#define rdhere rdhere74,2410 -#define rdbase rdbase75,2443 -#define rdend rdend76,2476 -#define last_token_start last_token_start77,2507 -#define rb rb78,2555 -#define DO_CHARESCAPE DO_CHARESCAPE80,2584 -#define NULL_ATOM NULL_ATOM85,2690 -setCurrentSourceLocation(ReadData _PL_rd ARG_LD)setCurrentSourceLocation89,2737 - -library/dialect/swi/os/pl-rl.c,2008 -#define PAREN_MATCHING PAREN_MATCHING87,2401 -#undef ESC ESC90,2434 -#undef META META92,2488 -#define savestring(savestring96,2609 -int rl_readline_state = 0;rl_readline_state107,2956 -#define RL_STATE_INITIALIZED RL_STATE_INITIALIZED108,2983 -#define rl_set_prompt(rl_set_prompt111,3048 -#define rl_clear_pending_input(rl_clear_pending_input114,3119 -#define rl_cleanup_after_signal(rl_cleanup_after_signal117,3199 -int rl_done;rl_done125,3477 -pl_rl_read_init_file(term_t file)pl_rl_read_init_file130,3516 -pl_rl_add_history(term_t text)pl_rl_add_history156,4150 -pl_rl_write_history(term_t fn)pl_rl_write_history184,4572 -pl_rl_read_history(term_t fn)pl_rl_read_history202,4862 -static char *my_prompt = NULL;my_prompt219,5132 -static int in_readline = 0;in_readline220,5166 -static int sig_at_level = -1;sig_at_level221,5197 -{ int signo; /* number of the signal */signo248,6513 -{ int signo; /* number of the signal */__anon367::signo248,6513 - struct sigaction old_state; /* old state for the signal */old_state249,6556 - struct sigaction old_state; /* old state for the signal */__anon367::old_state249,6556 -} sigstate;sigstate250,6617 -static sigstate signals[] =signals254,6667 -prepare_signals(void)prepare_signals269,6848 -restore_signals(void)restore_signals283,7087 -rl_sighandler(int sig)rl_sighandler293,7229 -pl_readline(const char *prompt)pl_readline331,7982 -input_on_fd(int fd)input_on_fd350,8483 -event_hook(void)event_hook363,8681 -reset_readline(void)reset_readline386,9116 -Sread_readline(void *handle, char *buf, size_t size)Sread_readline399,9293 -prolog_complete(int ignore, int key)prolog_complete510,11450 -atom_generator(const char *prefix, int state)atom_generator532,11950 -prolog_completion(const char *text, int start, int end)prolog_completion548,12220 -#undef read read562,12637 -PL_install_readline(void)PL_install_readline573,13144 -#define PRED(PRED615,14408 -PL_install_readline(void)PL_install_readline631,14971 - -library/dialect/swi/os/pl-shared.h,8244 -#define PL_SHARED_HPL_SHARED_H4,22 -#define __WINDOWS__ __WINDOWS__10,153 -#define LOCAL_LD LOCAL_LD16,231 -#define LD LD17,260 -#define ARG1_LD ARG1_LD18,283 -#define ARG_LDARG_LD19,306 -#define GET_LDGET_LD20,321 -#define PRED_LDPRED_LD21,336 -#define PASS_LDPASS_LD22,352 -#define PASS_LD1 PASS_LD123,368 -#define IGNORE_LDIGNORE_LD24,386 -#define REGS_FROM_LDREGS_FROM_LD26,405 -#define LD_FROM_REGSLD_FROM_REGS27,426 -#define LOCAL_LD LOCAL_LD31,455 -#define LD LD32,482 -#define GET_LD GET_LD34,506 -#define ARG1_LD ARG1_LD35,578 -#define ARG_LD ARG_LD37,627 -#define PASS_LD1 PASS_LD138,655 -#define PASS_LD PASS_LD39,676 -#define PRED_LD PRED_LD40,699 -#define IGNORE_LD IGNORE_LD41,724 -#define REGS_FROM_LD REGS_FROM_LD43,758 -#define LD_FROM_REGS LD_FROM_REGS44,830 -OpenList(int n USES_REGS)OpenList53,1042 -ExtendList(Term t0, Term inp)ExtendList72,1306 -CloseList(Term t0, Term tail)CloseList87,1504 -#define __unix__ __unix__105,1869 -#define PL_KERNEL PL_KERNEL110,1922 -#define O_STRING O_STRING115,1966 -#define O_QUASIQUOTATIONS O_QUASIQUOTATIONS116,1986 -#define O_GMP O_GMP123,2143 -#define NOTTYCONTROL NOTTYCONTROL126,2187 -#define O_DDE O_DDE127,2223 -#define O_DLL O_DLL128,2239 -#define O_HASDRIVES O_HASDRIVES129,2255 -#define O_HASSHARES O_HASSHARES130,2277 -#define O_XOS O_XOS131,2299 -#define O_RLC O_RLC132,2315 -#define EMULATE_DLOPEN EMULATE_DLOPEN133,2331 -#define O_PLMT O_PLMT137,2380 -#undef _REENTRANT_REENTRANT140,2421 -#define COMMON(COMMON147,2505 -#define MAY_ALIAS MAY_ALIAS150,2578 -#define MAY_ALIASMAY_ALIAS152,2634 -#define PL_HAVE_TERM_TPL_HAVE_TERM_T156,2683 -typedef uintptr_t term_t;term_t157,2706 -typedef int pthread_t;pthread_t163,2793 -typedef uintptr_t word; /* Anonymous 4 byte object */word169,2839 -#define GLOBAL_LD GLOBAL_LD172,2897 -#define REDIR_MAGIC REDIR_MAGIC180,3038 -typedef struct redir_contextredir_context182,3070 -{ int magic; /* REDIR_MAGIC */magic183,3099 -{ int magic; /* REDIR_MAGIC */redir_context::magic183,3099 - struct io_stream *stream; /* temporary output */stream184,3133 - struct io_stream *stream; /* temporary output */redir_context::stream184,3133 - int is_stream; /* redirect to stream */is_stream185,3190 - int is_stream; /* redirect to stream */redir_context::is_stream185,3190 - int redirected; /* output is redirected */redirected186,3234 - int redirected; /* output is redirected */redir_context::redirected186,3234 - term_t term; /* redirect target */term187,3281 - term_t term; /* redirect target */redir_context::term187,3281 - int out_format; /* output type */out_format188,3320 - int out_format; /* output type */redir_context::out_format188,3320 - int out_arity; /* 2 for difference-list versions */out_arity189,3358 - int out_arity; /* 2 for difference-list versions */redir_context::out_arity189,3358 - size_t size; /* size of I/O buffer */size190,3414 - size_t size; /* size of I/O buffer */redir_context::size190,3414 - char *data; /* data written */data191,3456 - char *data; /* data written */redir_context::data191,3456 - char buffer[1024]; /* fast temporary buffer */buffer192,3498 - char buffer[1024]; /* fast temporary buffer */redir_context::buffer192,3498 -} redir_context;redir_context193,3549 -#define EOS EOS197,3589 -#define BUFFER_RING_SIZE BUFFER_RING_SIZE209,3850 -typedef struct canonical_dir * CanonicalDir; /* pl-os.c */CanonicalDir213,3941 -{ char *state; /* system's boot file */state216,4016 -{ char *state; /* system's boot file */__anon368::state216,4016 - char *startup; /* default user startup file */startup217,4059 - char *startup; /* default user startup file */__anon368::startup217,4059 - int local; /* default local stack size (K) */local218,4110 - int local; /* default local stack size (K) */__anon368::local218,4110 - int global; /* default global stack size (K) */global219,4162 - int global; /* default global stack size (K) */__anon368::global219,4162 - int trail; /* default trail stack size (K) */trail220,4216 - int trail; /* default trail stack size (K) */__anon368::trail220,4216 - char *goal; /* default initialisation goal */goal221,4268 - char *goal; /* default initialisation goal */__anon368::goal221,4268 - char *toplevel; /* default top level goal */toplevel222,4319 - char *toplevel; /* default top level goal */__anon368::toplevel222,4319 - bool notty; /* use tty? */notty223,4368 - bool notty; /* use tty? */__anon368::notty223,4368 - char *arch; /* machine/OS we are using */arch224,4400 - char *arch; /* machine/OS we are using */__anon368::arch224,4400 - char *home; /* systems home directory */home225,4447 - char *home; /* systems home directory */__anon368::home225,4447 -} pl_defaults_t;pl_defaults_t226,4493 -typedef struct on_halt * OnHalt; /* pl-os.c */OnHalt228,4511 -typedef struct extension_cell * ExtensionCell; /* pl-ext.c */ExtensionCell230,4560 -typedef struct tempfile * TempFile; /* pl-os.c */TempFile232,4624 -typedef struct initialise_handle * InitialiseHandle;InitialiseHandle234,4676 -#define True(True264,5347 -#define False(False265,5386 -#define set(set266,5425 -#define clear(clear267,5464 -#define P_QUASI_QUOTATION_SYNTAX P_QUASI_QUOTATION_SYNTAX270,5514 -#define PLFLAG_CHARESCAPE PLFLAG_CHARESCAPE271,5589 -#define PLFLAG_GC PLFLAG_GC272,5658 -#define PLFLAG_TRACE_GC PLFLAG_TRACE_GC273,5715 -#define PLFLAG_TTY_CONTROL PLFLAG_TTY_CONTROL274,5777 -#define PLFLAG_READLINE PLFLAG_READLINE275,5850 -#define PLFLAG_DEBUG_ON_ERROR PLFLAG_DEBUG_ON_ERROR276,5920 -#define PLFLAG_REPORT_ERROR PLFLAG_REPORT_ERROR277,5993 -#define PLFLAG_FILE_CASE PLFLAG_FILE_CASE278,6064 -#define PLFLAG_FILE_CASE_PRESERVING PLFLAG_FILE_CASE_PRESERVING279,6145 -#define PLFLAG_DOS_FILE_NAMES PLFLAG_DOS_FILE_NAMES280,6223 -#define ALLOW_VARNAME_FUNCTOR ALLOW_VARNAME_FUNCTOR281,6295 -#define PLFLAG_ISO PLFLAG_ISO282,6370 -#define PLFLAG_OPTIMISE PLFLAG_OPTIMISE283,6443 -#define PLFLAG_FILEVARS PLFLAG_FILEVARS284,6520 -#define PLFLAG_AUTOLOAD PLFLAG_AUTOLOAD285,6601 -#define PLFLAG_CHARCONVERSION PLFLAG_CHARCONVERSION286,6667 -#define PLFLAG_LASTCALL PLFLAG_LASTCALL287,6742 -#define PLFLAG_EX_ABORT PLFLAG_EX_ABORT288,6826 -#define PLFLAG_BACKQUOTED_STRING PLFLAG_BACKQUOTED_STRING289,6898 -#define PLFLAG_SIGNALS PLFLAG_SIGNALS290,6960 -#define PLFLAG_DEBUGINFO PLFLAG_DEBUGINFO291,7026 -#define PLFLAG_FILEERRORS PLFLAG_FILEERRORS292,7097 -#define PLFLAG_WARN_OVERRIDE_IMPLICIT_IMPORT PLFLAG_WARN_OVERRIDE_IMPLICIT_IMPORT293,7170 -#define PLFLAG_QUASI_QUOTES PLFLAG_QUASI_QUOTES294,7259 -#define M_SYSTEM M_SYSTEM300,7437 -#define M_CHARESCAPE M_CHARESCAPE301,7484 -#define DBLQ_CHARS DBLQ_CHARS302,7528 -#define DBLQ_ATOM DBLQ_ATOM303,7583 -#define DBLQ_STRING DBLQ_STRING304,7631 -#define DBLQ_MASK DBLQ_MASK305,7681 -#define UNKNOWN_FAIL UNKNOWN_FAIL306,7735 -#define UNKNOWN_WARNING UNKNOWN_WARNING307,7779 -#define UNKNOWN_ERROR UNKNOWN_ERROR308,7826 -#define UNKNOWN_MASK UNKNOWN_MASK309,7871 -#define LONGATOM_CHECK LONGATOM_CHECK316,8051 -#define SINGLETON_CHECK SINGLETON_CHECK317,8129 -#define MULTITON_CHECK MULTITON_CHECK318,8204 -#define DISCONTIGUOUS_STYLE DISCONTIGUOUS_STYLE319,8278 -#define DYNAMIC_STYLE DYNAMIC_STYLE320,8357 -#define CHARSET_CHECK CHARSET_CHECK321,8433 -#define SEMSINGLETON_CHECK SEMSINGLETON_CHECK322,8507 -#define NOEFFECT_CHECK NOEFFECT_CHECK323,8581 -#define VARBRANCH_CHECK VARBRANCH_CHECK324,8660 -#define MULTIPLE_CHECK MULTIPLE_CHECK325,8735 -#define MAXNEWLINES MAXNEWLINES326,8831 -#define debugstatus debugstatus328,8908 -#define truePrologFlag(truePrologFlag330,8959 -#define setPrologFlagMask(setPrologFlagMask331,9027 -#define clearPrologFlagMask(clearPrologFlagMask332,9094 -#define SIG_PROLOG_OFFSET SIG_PROLOG_OFFSET340,9370 -#define SIG_EXCEPTION SIG_EXCEPTION342,9430 -#define SIG_ATOM_GC SIG_ATOM_GC344,9492 -#define SIG_GC SIG_GC346,9543 -#define SIG_THREAD_SIGNAL SIG_THREAD_SIGNAL348,9597 -#define SIG_FREECLAUSES SIG_FREECLAUSES350,9652 -#define SIG_PLABORT SIG_PLABORT351,9700 - -library/dialect/swi/os/pl-stream.c,10030 -#define CRLF_MAPPING CRLF_MAPPING37,1236 -#define LOG(LOG50,1466 -#define __android_log_print(__android_log_print52,1554 -#define ANDROID_LOG_INFO ANDROID_LOG_INFO53,1597 -#define ANDROID_LOG_ERROR ANDROID_LOG_ERROR54,1624 -#define ANDROID_LOG_DEBUG ANDROID_LOG_DEBUG55,1652 -#define LOG(LOG56,1680 -#define O_LARGEFILES O_LARGEFILES73,2296 -#undef O_LARGEFILESO_LARGEFILES75,2367 -#define PL_KERNEL PL_KERNEL78,2395 -#define NEEDS_SWINSOCKNEEDS_SWINSOCK83,2498 -#define O_PLMT O_PLMT122,3212 -#define ROUND(ROUND125,3237 -#define UNDO_SIZE UNDO_SIZE126,3290 -#define FALSE FALSE129,3361 -#define TRUE TRUE132,3397 -#define char_to_int(char_to_int135,3420 -#define TMPBUFSIZE TMPBUFSIZE137,3462 -int Slinesize = SIO_LINESIZE; /* Sgets() buffer size */Slinesize139,3525 -#define SLOCK(SLOCK147,3756 -#define SUNLOCK(SUNLOCK148,3821 -STRYLOCK(IOSTREAM *s)STRYLOCK150,3906 -#define SLOCK(SLOCK158,4039 -#define SUNLOCK(SUNLOCK159,4056 -#define STRYLOCK(STRYLOCK160,4075 -S__setbuf(IOSTREAM *s, char *buffer, size_t size)S__setbuf189,5014 -Ssetbuffer(IOSTREAM *s, char *buffer, size_t size)Ssetbuffer260,6518 -S__removebuf(IOSTREAM *s)S__removebuf267,6664 -#define DEBUG_IO_LOCKS DEBUG_IO_LOCKS286,7010 -Sname(IOSTREAM *s)Sname290,7078 -print_trace(void)print_trace302,7283 -Slock(IOSTREAM *s)Slock323,7637 -StryLock(IOSTREAM *s)StryLock348,8074 -Sunlock(IOSTREAM *s)Sunlock367,8374 -typedef int SOCKET;SOCKET398,8909 -#define INVALID_SOCKET INVALID_SOCKET399,8929 -#define Swinsock(Swinsock400,8955 -#define NFDS(NFDS401,8986 -#define NFDS(NFDS403,9014 -S__wait(IOSTREAM *s)S__wait408,9091 -S__flushbuf(IOSTREAM *s)S__flushbuf461,10073 -S__flushbufc(int c, IOSTREAM *s)S__flushbufc516,10996 -S__fillbuf(IOSTREAM *s)S__fillbuf548,11741 -update_linepos(IOSTREAM *s, int c)update_linepos636,13540 -S__fcheckpasteeof(IOSTREAM *s, int c)S__fcheckpasteeof671,14093 -S__fupdatefilepos_getc(IOSTREAM *s, int c)S__fupdatefilepos_getc679,14178 -S__updatefilepos(IOSTREAM *s, int c)S__updatefilepos691,14337 -get_byte(IOSTREAM *s)get_byte705,14519 -put_byte(int c, IOSTREAM *s)put_byte716,14640 -Sputc(int c, IOSTREAM *s)Sputc736,14894 -Sfgetc(IOSTREAM *s)Sfgetc754,15132 -unget_byte(int c, IOSTREAM *s)unget_byte760,15194 -Sungetc(int c, IOSTREAM *s)Sungetc775,15409 -reperror(int c, IOSTREAM *s)reperror788,15540 - char *Yap_AndroidBufp = NULL;Yap_AndroidBufp815,16050 - void( *Yap_DisplayWithJava)(int c);Yap_DisplayWithJava816,16083 -put_code(int c, IOSTREAM *s)put_code820,16141 -Sputcode(int c, IOSTREAM *s)Sputcode934,18248 -Scanrepresent(int c, IOSTREAM *s)Scanrepresent953,18590 -Sgetcode(IOSTREAM *s)Sgetcode992,19298 -Speekcode(IOSTREAM *s)Speekcode1158,22819 -Sputw(int w, IOSTREAM *s)Sputw1209,23758 -Sgetw(IOSTREAM *s)Sgetw1223,23946 -Sfread(void *data, size_t size, size_t elms, IOSTREAM *s)Sfread1244,24268 -Sfwrite(const void *data, size_t size, size_t elms, IOSTREAM *s)Sfwrite1289,24988 -Sread_pending(IOSTREAM *s, char *buf, size_t limit, int flags)Sread_pending1307,25333 -{ IOENC encoding;encoding1348,26240 -{ IOENC encoding;__anon369::encoding1348,26240 - unsigned int bomlen;bomlen1349,26258 - unsigned int bomlen;__anon369::bomlen1349,26258 - const char *bom;bom1350,26281 - const char *bom;__anon369::bom1350,26281 -} bomdef;bomdef1351,26300 -static const bomdef bomdefs[] =bomdefs1353,26311 -ScheckBOM(IOSTREAM *s)ScheckBOM1361,26555 -SwriteBOM(IOSTREAM *s)SwriteBOM1394,27171 -Sfeof(IOSTREAM *s)Sfeof1417,27538 -S__seterror(IOSTREAM *s)S__seterror1438,27812 -Sferror(IOSTREAM *s)Sferror1459,28174 -Sfpasteof(IOSTREAM *s)Sfpasteof1465,28240 -Sclearerr(IOSTREAM *s)Sclearerr1471,28348 -Sseterr(IOSTREAM *s, int flag, const char *message)Sseterr1479,28502 -Sset_exception(IOSTREAM *s, term_t ex)Sset_exception1495,28772 -Ssetenc(IOSTREAM *s, IOENC enc, IOENC *old)Ssetenc1510,29253 -Ssetlocale(IOSTREAM *s, PL_locale *new, PL_locale **old)Ssetlocale1534,29668 -Sflush(IOSTREAM *s)Sflush1558,30064 -Sunit_size(IOSTREAM *s)Sunit_size1575,30411 -Ssize(IOSTREAM *s)Ssize1601,31022 -Sseek64(IOSTREAM *s, int64_t pos, int whence)Sseek641640,31926 -Sseek(IOSTREAM *s, long pos, int whence)Sseek1712,33418 -Stell64(IOSTREAM *s)Stell641723,33596 -Stell(IOSTREAM *s)Stell1753,34179 -unallocStream(IOSTREAM *s)unallocStream1772,34461 -Sclose(IOSTREAM *s)Sclose1800,35128 -Sfgets(char *buf, int n, IOSTREAM *s)Sfgets1877,36613 -Sgets(char *buf)Sgets1904,36944 -Sfputs(const char *q, IOSTREAM *s)Sfputs1919,37157 -Sputs(const char *q)Sputs1930,37289 -Sfprintf(IOSTREAM *s, const char *fm, ...)Sfprintf1940,37442 -Sprintf(const char *fm, ...)Sprintf1953,37609 -Svprintf(const char *fm, va_list args)Svprintf1966,37768 -#define NEXTCHR(NEXTCHR1971,37850 -#define OUTCHR(OUTCHR1990,38243 -#define valdigit(valdigit1993,38351 -#define A_LEFT A_LEFT1994,38383 -#define A_RIGHT A_RIGHT1995,38427 -#define SNPRINTF3(SNPRINTF31997,38474 -#define SNPRINTF4(SNPRINTF42007,38762 -Svfprintf(IOSTREAM *s, const char *fm, va_list args)Svfprintf2020,39068 -Ssprintf(char *buf, const char *fm, ...)Ssprintf2310,44177 -Svsprintf(char *buf, const char *fm, va_list args)Svsprintf2323,44344 -Svdprintf(const char *fm, va_list args)Svdprintf2342,44685 -Sdprintf(const char *fm, ...)Sdprintf2362,45015 -Sset_filter(IOSTREAM *parent, IOSTREAM *filter)Sset_filter2660,50492 -Sread_file(void *handle, char *buf, size_t size)Sread_file2686,50938 -Swrite_file(void *handle, char *buf, size_t size)Swrite_file2714,51371 -Sseek_file(void *handle, long pos, int whence)Sseek_file2740,51790 -Sseek_file64(void *handle, int64_t pos, int whence)Sseek_file642750,51992 -Sclose_file(void *handle)Sclose_file2760,52182 -Scontrol_file(void *handle, int action, void *arg)Scontrol_file2773,52354 -IOFUNCTIONS Sfilefunctions =Sfilefunctions2802,52848 -IOFUNCTIONS Sttyfunctions =Sttyfunctions2816,53012 -#define FD_CLOEXEC FD_CLOEXEC2842,53816 -Snew(void *handle, int flags, IOFUNCTIONS *functions)Snew2846,53856 -#define O_BINARY O_BINARY2907,55097 -Sopen_file(const char *path, const char *how)Sopen_file2922,55722 -Sfdopen(int fd, const char *type)Sfdopen3101,59356 -Sfileno(IOSTREAM *s)Sfileno3134,59946 -Swinsock(IOSTREAM *s)Swinsock3163,60757 -#undef popenpopen3186,61158 -#undef pclosepclose3187,61171 -#define popen(popen3188,61185 -#define pclose(pclose3189,61228 -Sread_pipe(void *handle, char *buf, size_t size)Sread_pipe3193,61284 -Swrite_pipe(void *handle, char *buf, size_t size)Swrite_pipe3205,61496 -Sclose_pipe(void *handle)Sclose_pipe3217,61707 -Scontrol_pipe(void *handle, int action, void *arg)Scontrol_pipe3226,61796 -IOFUNCTIONS Spipefunctions =Spipefunctions3244,62083 -Sopen_pipe(const char *command, const char *type)Sopen_pipe3254,62209 -Swrite_asset(void *handle, char *buf, size_t size)Swrite_asset3295,63094 -Sread_asset(void *handle, char *buf, size_t size)Sread_asset3302,63180 -Sseek_asset(void *handle, long offset, int whence)Sseek_asset3313,63388 -Sseek64_asset(void *handle, int64_t offset, int whence)Sseek64_asset3322,63610 -Scontrol_asset(void *handle, int action, void *arg)Scontrol_asset3331,63843 -Sclose_asset(void *handle)Sclose_asset3358,64391 -IOFUNCTIONS Sassetfunctions =Sassetfunctions3367,64472 -{ size_t here; /* `here' location */here3400,65462 -{ size_t here; /* `here' location */__anon370::here3400,65462 - size_t size; /* size of buffer */size3401,65501 - size_t size; /* size of buffer */__anon370::size3401,65501 - size_t *sizep; /* pointer to size */sizep3402,65539 - size_t *sizep; /* pointer to size */__anon370::sizep3402,65539 - size_t allocated; /* allocated size */allocated3403,65586 - size_t allocated; /* allocated size */__anon370::allocated3403,65586 - char *buffer; /* allocated buffer */buffer3404,65628 - char *buffer; /* allocated buffer */__anon370::buffer3404,65628 - char **bufferp; /* Write-back location */bufferp3405,65676 - char **bufferp; /* Write-back location */__anon370::bufferp3405,65676 - int malloced; /* malloc() maintained */malloced3406,65727 - int malloced; /* malloc() maintained */__anon370::malloced3406,65727 -} memfile;memfile3407,65771 -Sfree(void *ptr) /* Windows: must free from same */Sfree3411,65789 -S__memfile_nextsize(size_t needed)S__memfile_nextsize3417,65887 -Swrite_memfile(void *handle, char *buf, size_t size)Swrite_memfile3428,66020 -Sread_memfile(void *handle, char *buf, size_t size)Sread_memfile3471,66908 -Sseek_memfile(void *handle, long offset, int whence)Sseek_memfile3489,67212 -Sclose_memfile(void *handle)Sclose_memfile3516,67719 -IOFUNCTIONS Smemfunctions =Smemfunctions3529,67872 -Sopenmem(char **bufp, size_t *sizep, const char *mode)Sopenmem3567,69073 -Sread_string(void *handle, char *buf, size_t size)Sread_string3622,70224 -Swrite_string(void *handle, char *buf, size_t size)Swrite_string3631,70369 -Sclose_string(void *handle)Sclose_string3641,70531 -IOFUNCTIONS Sstringfunctions =Sstringfunctions3656,70812 -Sopen_string(IOSTREAM *s, char *buf, size_t size, const char *mode)Sopen_string3665,70929 -#define STDIO(STDIO3710,71875 -#define SIO_STDIO SIO_STDIO3720,72129 -#define STDIO_STREAMS STDIO_STREAMS3721,72201 -IOSTREAM S__iob[] =S__iob3727,72429 -static const IOSTREAM S__iob0[] =S__iob03732,72470 -static int S__initialised = FALSE;S__initialised3737,72525 -SinitStreams(void)SinitStreams3740,72566 -S__getiob(void)S__getiob3782,73453 -typedef struct _close_hook_close_hook3796,73824 -{ struct _close_hook *next;next3797,73851 -{ struct _close_hook *next;_close_hook::next3797,73851 - void (*hook)(IOSTREAM *s);hook3798,73879 - void (*hook)(IOSTREAM *s);_close_hook::hook3798,73879 -} close_hook;close_hook3799,73908 -static close_hook *close_hooks;close_hooks3801,73923 -run_close_hooks(IOSTREAM *s)run_close_hooks3804,73968 -Sclosehook(void (*hook)(IOSTREAM *s))Sclosehook3815,74136 -Sreset(void)Sreset3833,74420 -Scleanup(void)Scleanup3849,74693 - -library/dialect/swi/os/pl-string.c,974 -store_string(const char *s)store_string38,1346 -remove_string(char *s)remove_string51,1518 -digitName(int n, int smll)digitName65,1803 -digitValue(int b, int c)digitValue78,2094 -strprefix(const char *string, const char *prefix)strprefix108,2558 -strpostfix(const char *string, const char *postfix)strpostfix118,2724 -strcasecmp(const char *s1, const char *s2)strcasecmp130,2936 -strlwr(char *s)strlwr146,3186 -stripostfix(const char *s, const char *e)stripostfix158,3287 -{ wchar_t *wcp;wcp174,3574 -{ wchar_t *wcp;__anon371::wcp174,3574 - int len;len175,3590 - int len;__anon371::len175,3590 - int malloced;malloced176,3604 - int malloced;__anon371::malloced176,3604 -} wbuf;wbuf177,3623 -wstolower(wchar_t *w, size_t len)wstolower182,3702 -int_mbscoll(const char *s1, const char *s2, int icase)int_mbscoll190,3818 -mbscoll(const char *s1, const char *s2)mbscoll243,4759 -mbscasecoll(const char *s1, const char *s2)mbscasecoll251,4876 - -library/dialect/swi/os/pl-string.h,57 -#define PL_STRING_H_INCLUDEDPL_STRING_H_INCLUDED26,988 - -library/dialect/swi/os/pl-table.c,1055 -#define LOCK_TABLE(LOCK_TABLE27,1038 -#define UNLOCK_TABLE(UNLOCK_TABLE28,1104 -#define LOCK_TABLE(LOCK_TABLE30,1178 -#define UNLOCK_TABLE(UNLOCK_TABLE31,1208 -allocHTableEntries(int buckets)allocHTableEntries56,2371 -newHTable(int buckets)newHTable68,2536 -destroyHTable(Table ht)destroyHTable92,3012 -static int lookups;lookups109,3312 -static int cmps;cmps110,3332 -exitTables(int status, void *arg)exitTables113,3354 -initTables(void)initTables126,3540 -lookupHTable(Table ht, void *name)lookupHTable138,3689 -checkHTable(Table ht)checkHTable153,3968 -rehashHTable(Table ht, Symbol map)rehashHTable174,4257 -addHTable(Table ht, void *name, void *value)addHTable244,5699 -deleteSymbolHTable(Table ht, Symbol s)deleteSymbolHTable277,6501 -clearHTable(Table ht)clearHTable310,7052 -copyHTable(Table org)copyHTable350,7994 -newTableEnum(Table ht)newTableEnum396,8855 -freeTableEnum(TableEnum e)freeTableEnum417,9206 -rawAdvanceTableEnum(TableEnum e)rawAdvanceTableEnum439,9522 -advanceTableEnum(TableEnum e)advanceTableEnum462,9819 - -library/dialect/swi/os/pl-table.h,2700 -#define TABLE_H_INCLUDEDTABLE_H_INCLUDED26,984 -typedef struct table * Table; /* (numeric) hash table */Table28,1010 -typedef struct symbol * Symbol; /* symbol of hash table */Symbol29,1069 -typedef struct table_enum * TableEnum; /* Enumerate table entries */TableEnum30,1130 -struct tabletable32,1200 -{ int buckets; /* size of hash table */buckets33,1213 -{ int buckets; /* size of hash table */table::buckets33,1213 - int size; /* # symbols in the table */size34,1254 - int size; /* # symbols in the table */table::size34,1254 - TableEnum enumerators; /* Handles for enumeration */enumerators35,1297 - TableEnum enumerators; /* Handles for enumeration */table::enumerators35,1297 - simpleMutex *mutex; /* Mutex to guard table */mutex37,1366 - simpleMutex *mutex; /* Mutex to guard table */table::mutex37,1366 - void (*copy_symbol)(Symbol s);copy_symbol39,1424 - void (*copy_symbol)(Symbol s);table::copy_symbol39,1424 - void (*free_symbol)(Symbol s);free_symbol40,1458 - void (*free_symbol)(Symbol s);table::free_symbol40,1458 - Symbol *entries; /* array of hash symbols */entries41,1492 - Symbol *entries; /* array of hash symbols */table::entries41,1492 -struct symbolsymbol44,1543 -{ Symbol next; /* next in chain */next45,1557 -{ Symbol next; /* next in chain */symbol::next45,1557 - void * name; /* name entry of symbol */name46,1593 - void * name; /* name entry of symbol */symbol::name46,1593 - void * value; /* associated value with name */value47,1636 - void * value; /* associated value with name */symbol::value47,1636 -struct table_enumtable_enum50,1690 -{ Table table; /* Table we are working on */table51,1708 -{ Table table; /* Table we are working on */table_enum::table51,1708 - int key; /* Index of current symbol-chain */key52,1755 - int key; /* Index of current symbol-chain */table_enum::key52,1755 - Symbol current; /* The current symbol */current53,1804 - Symbol current; /* The current symbol */table_enum::current53,1804 - TableEnum next; /* More choice points */next54,1847 - TableEnum next; /* More choice points */table_enum::next54,1847 -COMMON(void) destroyHTable(Table ht);ht59,1963 -COMMON(void) clearHTable(Table ht);ht63,2170 -COMMON(Table) copyHTable(Table org);org64,2207 -COMMON(TableEnum) newTableEnum(Table ht);ht65,2245 -COMMON(void) freeTableEnum(TableEnum e);e66,2287 -COMMON(Symbol) advanceTableEnum(TableEnum e);e67,2329 -#define TABLE_UNLOCKED TABLE_UNLOCKED69,2377 -#define TABLE_MASK TABLE_MASK70,2449 -#define pointerHashValue(pointerHashValue72,2483 -#define for_table(for_table77,2648 -#define for_unlocked_table(for_unlocked_table89,2913 - -library/dialect/swi/os/pl-tai.c,3165 -#define __MINGW_USE_VC2005_COMPAT __MINGW_USE_VC2005_COMPAT24,984 -#define timezone timezone45,1394 -#define HAVE_VAR_TIMEZONEHAVE_VAR_TIMEZONE47,1447 -#define TAI_UTC_OFFSET TAI_UTC_OFFSET56,1572 -#define HAS_STAMP HAS_STAMP62,1835 -#define HAS_WYDAY HAS_WYDAY63,1861 -#define NO_UTC_OFFSET NO_UTC_OFFSET65,1888 -typedef struct ftmftm67,1923 -{ struct tm tm; /* System time structure */tm68,1942 -{ struct tm tm; /* System time structure */ftm::tm68,1942 - double sec; /* float version of tm.tm_sec */sec69,1988 - double sec; /* float version of tm.tm_sec */ftm::sec69,1988 - int utcoff; /* offset to UTC (seconds) */utcoff70,2037 - int utcoff; /* offset to UTC (seconds) */ftm::utcoff70,2037 - atom_t tzname; /* Name of timezone */tzname71,2084 - atom_t tzname; /* Name of timezone */ftm::tzname71,2084 - int isdst; /* Daylight saving time */isdst72,2126 - int isdst; /* Daylight saving time */ftm::isdst72,2126 - double stamp; /* Time stamp (sec since 1970-1-1) */stamp73,2169 - double stamp; /* Time stamp (sec since 1970-1-1) */ftm::stamp73,2169 - int flags; /* Filled fields */flags74,2225 - int flags; /* Filled fields */ftm::flags74,2225 -} ftm;ftm75,2261 -do_tzset(void)do_tzset82,2488 -tz_offset(void)tz_offset100,3012 -tz_name(int dst)tz_name130,3634 -tz_name_as_atom(int dst)tz_name_as_atom139,3726 -get_taia(term_t t, struct taia *taia, double *seconds)get_taia178,4530 -get_tz_arg(int i, term_t t, term_t a, atom_t *tz)get_tz_arg205,4927 -get_int_arg(int i, term_t t, term_t a, int *val)get_int_arg222,5182 -get_voff_arg(int i, term_t t, term_t a, int *val)get_voff_arg232,5317 -get_float_arg(int i, term_t t, term_t a, double *val)get_float_arg247,5538 -get_dst_arg(int i, term_t t, term_t a, int *val)get_dst_arg257,5676 -get_ftm(term_t t, ftm *ftm)get_ftm283,6170 -cal_ftm(ftm *ftm, int required)cal_ftm379,8510 -# define __isleap(__isleap513,11869 -#define ISO_WEEK_START_WDAY ISO_WEEK_START_WDAY521,12214 -#define ISO_WEEK1_WDAY ISO_WEEK1_WDAY522,12257 -#define YDAY_MINIMUM YDAY_MINIMUM523,12297 -iso_week_days(int yday, int wday)iso_week_days528,12370 -fmt_domain_error(const char *key, int value)fmt_domain_error542,12772 -fmt_not_implemented(int c)fmt_not_implemented552,12969 -#define OUT1DIGIT(OUT1DIGIT571,13303 -#define OUT2DIGITS(OUT2DIGITS574,13368 -#define OUT3DIGITS(OUT3DIGITS578,13472 -#define OUT2DIGITS_SPC(OUT2DIGITS_SPC583,13615 -#define OUTNUMBER(OUTNUMBER587,13747 -#define SUBFORMAT(SUBFORMAT590,13813 -#define OUTCHR(OUTCHR593,13876 -#define OUTSTR(OUTSTR596,13925 -#define OUTSTRA(OUTSTRA599,13972 -#define OUTATOM(OUTATOM602,14022 -foutstra(const char *str, IOSTREAM *fd)foutstra607,14090 -static const char *abbred_weekday[] =abbred_weekday620,14324 -static const char *weekday[] =weekday622,14415 -static const char *abbred_month[] =abbred_month625,14530 -static const char *month[] =month629,14656 -#define NOARG NOARG634,14814 -format_time(IOSTREAM *fd, const wchar_t *format, ftm *ftm, int posix)format_time637,14845 -pl_format_time(term_t out, term_t format, term_t time, int posix)pl_format_time927,21582 - -library/dialect/swi/os/pl-text.c,1533 -#undef LDLD35,1182 -#define LD LD36,1192 -bufsize_text(PL_chars_t *text, size_t len)bufsize_text44,1334 -PL_save_text(PL_chars_t *text, int flags)PL_save_text67,1714 -PL_from_stack_text(PL_chars_t *text)PL_from_stack_text102,2838 -#define INT64_DIGITS INT64_DIGITS121,3312 -ui64toa(uint64_t val, char *out)ui64toa124,3351 -i64toa(int64_t val, char *out)i64toa147,3732 -PL_get_text__LD(term_t l, PL_chars_t *text, int flags ARG_LD)PL_get_text__LD158,3865 -textToAtom(PL_chars_t *text)textToAtom358,8907 -textToString(PL_chars_t *text)textToString373,9172 -PL_unify_text(term_t term, term_t tail, PL_chars_t *text, int type)PL_unify_text386,9422 -PL_unify_text_range(term_t term, PL_chars_t *text,PL_unify_text_range538,12744 -PL_promote_text(PL_chars_t *text)PL_promote_text589,13970 -PL_demote_text(PL_chars_t *text)PL_demote_text639,15304 -can_demote(PL_chars_t *text)can_demote699,16731 -wctobuffer(wchar_t c, mbstate_t *mbs, Buffer buf)wctobuffer722,17393 -utf8tobuffer(wchar_t c, Buffer buf)utf8tobuffer750,17864 -PL_mb_text(PL_chars_t *text, int flags)PL_mb_text766,18111 -PL_canonise_text(PL_chars_t *text)PL_canonise_text893,20711 -PL_free_text(PL_chars_t *text)PL_free_text1064,23958 -PL_text_recode(PL_chars_t *text, IOENC encoding)PL_text_recode1071,24067 -PL_cmp_text(PL_chars_t *t1, size_t o1, PL_chars_t *t2, size_t o2,PL_cmp_text1152,25996 -PL_concat_text(int n, PL_chars_t **text, PL_chars_t *result)PL_concat_text1215,27655 -Sopen_text(PL_chars_t *txt, const char *mode)Sopen_text1279,29224 - -library/dialect/swi/os/pl-text.h,1652 -#define PL_TEXT_H_INCLUDEDPL_TEXT_H_INCLUDED26,1006 -{ PL_CHARS_MALLOC, /* malloced data */PL_CHARS_MALLOC29,1047 - PL_CHARS_RING, /* stored in the buffer ring */PL_CHARS_RING30,1088 - PL_CHARS_HEAP, /* stored in program area (atoms) */PL_CHARS_HEAP31,1139 - PL_CHARS_STACK, /* stored on the global stack */PL_CHARS_STACK32,1195 - PL_CHARS_LOCAL /* stored in in-line buffer */PL_CHARS_LOCAL33,1248 -} PL_chars_alloc_t;PL_chars_alloc_t34,1298 - { char *t; /* tranditional 8-bit char* */t39,1343 - { char *t; /* tranditional 8-bit char* */__anon373::__anon374::t39,1343 - pl_wchar_t *w; /* wide character string */w40,1390 - pl_wchar_t *w; /* wide character string */__anon373::__anon374::w40,1390 - } text;text41,1439 - } text;__anon373::text41,1439 - size_t length;length42,1449 - size_t length;__anon373::length42,1449 - IOENC encoding; /* how it is encoded */encoding44,1491 - IOENC encoding; /* how it is encoded */__anon373::encoding44,1491 - PL_chars_alloc_t storage; /* how it is stored */storage45,1535 - PL_chars_alloc_t storage; /* how it is stored */__anon373::storage45,1535 - int canonical; /* TRUE: ENC_ISO_LATIN_1 or ENC_WCHAR */canonical46,1587 - int canonical; /* TRUE: ENC_ISO_LATIN_1 or ENC_WCHAR */__anon373::canonical46,1587 - char buf[100]; /* buffer for simple stuff */buf47,1647 - char buf[100]; /* buffer for simple stuff */__anon373::buf47,1647 -} PL_chars_t;PL_chars_t48,1696 -#define PL_init_text(PL_init_text50,1711 -COMMON(Atom) textToAtom(PL_chars_t *text);text74,2534 -text_get_char(const PL_chars_t *t, size_t i)text_get_char85,2938 - -library/dialect/swi/os/pl-thread.h,3161 -#define PL_THREAD_H_DEFINEDPL_THREAD_H_DEFINED25,1012 -typedef pthread_mutex_t simpleMutex;simpleMutex30,1078 -#define simpleMutexInit(simpleMutexInit32,1116 -#define simpleMutexDelete(simpleMutexDelete33,1171 -#define simpleMutexLock(simpleMutexLock34,1225 -#define simpleMutexUnlock(simpleMutexUnlock35,1274 -typedef pthread_mutex_t recursiveMutex;recursiveMutex37,1328 -#define NEED_RECURSIVE_MUTEX_INIT NEED_RECURSIVE_MUTEX_INIT39,1369 -#define recursiveMutexDelete(recursiveMutexDelete41,1455 -#define recursiveMutexLock(recursiveMutexLock42,1513 -#define recursiveMutexTryLock(recursiveMutexTryLock43,1568 -#define recursiveMutexUnlock(recursiveMutexUnlock44,1626 -typedef struct counting_mutexcounting_mutex47,1685 -{ simpleMutex mutex; /* mutex itself */mutex48,1715 -{ simpleMutex mutex; /* mutex itself */counting_mutex::mutex48,1715 - const char *name; /* name of the mutex */name49,1774 - const char *name; /* name of the mutex */counting_mutex::name49,1774 - long count; /* # times locked */count50,1838 - long count; /* # times locked */counting_mutex::count50,1838 - long unlocked; /* # times unlocked */unlocked51,1899 - long unlocked; /* # times unlocked */counting_mutex::unlocked51,1899 - long collisions; /* # contentions */collisions53,1993 - long collisions; /* # contentions */counting_mutex::collisions53,1993 - struct counting_mutex *next; /* next of allocated chain */next55,2060 - struct counting_mutex *next; /* next of allocated chain */counting_mutex::next55,2060 -} counting_mutex;counting_mutex56,2130 -#define L_MISC L_MISC63,2329 -#define L_ALLOC L_ALLOC64,2355 -#define L_ATOM L_ATOM65,2381 -#define L_FLAG L_FLAG66,2407 -#define L_FUNCTOR L_FUNCTOR67,2433 -#define L_RECORD L_RECORD68,2459 -#define L_THREAD L_THREAD69,2485 -#define L_PREDICATE L_PREDICATE70,2511 -#define L_MODULE L_MODULE71,2537 -#define L_TABLE L_TABLE72,2563 -#define L_BREAK L_BREAK73,2589 -#define L_FILE L_FILE74,2615 -#define L_SEETELL L_SEETELL75,2641 -#define L_PLFLAG L_PLFLAG76,2667 -#define L_OP L_OP77,2693 -#define L_INIT L_INIT78,2719 -#define L_TERM L_TERM79,2745 -#define L_GC L_GC80,2771 -#define L_AGC L_AGC81,2797 -#define L_STOPTHEWORLD L_STOPTHEWORLD82,2823 -#define L_FOREIGN L_FOREIGN83,2849 -#define L_OS L_OS84,2875 -#define L_LOCALE L_LOCALE85,2901 -#define L_DDE L_DDE87,2946 -#define L_CSTACK L_CSTACK88,2970 -#define IF_MT(IF_MT99,3429 -#define countingMutexLock(countingMutexLock103,3531 -#define countingMutexLock(countingMutexLock112,3739 -#define countingMutexUnlock(countingMutexUnlock118,3852 -#define PL_LOCK(PL_LOCK127,4049 -#define PL_UNLOCK(PL_UNLOCK133,4254 -#define PL_LOCK(PL_LOCK140,4458 -#define PL_UNLOCK(PL_UNLOCK141,4527 -#undef O_DEBUG_MTO_DEBUG_MT143,4605 -#define IOLOCK IOLOCK145,4624 -#define PL_LOCK(PL_LOCK148,4662 -#define PL_UNLOCK(PL_UNLOCK149,4681 -typedef void * IOLOCK;IOLOCK151,4703 - -library/dialect/swi/os/pl-umap.c,6096 -#define UNICODE_MAP_SIZE UNICODE_MAP_SIZE5,84 -#define F(F6,114 -#define U_ID_START U_ID_START8,145 -#define U_ID_CONTINUE U_ID_CONTINUE9,178 -#define U_UPPERCASE U_UPPERCASE10,211 -#define U_SEPARATOR U_SEPARATOR11,244 -#define U_SYMBOL U_SYMBOL12,277 -#define U_OTHER U_OTHER13,310 -#define U_CONTROL U_CONTROL14,343 -static const char ucp0x00[256] =ucp0x0017,378 -static const char ucp0x01[256] =ucp0x0152,1885 -static const char ucp0x02[256] =ucp0x0287,3265 -static const char ucp0x03[256] =ucp0x03122,4688 -static const char ucp0x04[256] =ucp0x04157,6074 -static const char ucp0x05[256] =ucp0x05192,7457 -static const char ucp0x06[256] =ucp0x06227,8851 -static const char ucp0x07[256] =ucp0x07262,10258 -static const char ucp0x08[256] =ucp0x08297,11657 -static const char ucp0x09[256] =ucp0x09332,13053 -static const char ucp0x0a[256] =ucp0x0a367,14446 -static const char ucp0x0b[256] =ucp0x0b402,15827 -static const char ucp0x0c[256] =ucp0x0c437,17225 -static const char ucp0x0d[256] =ucp0x0d472,18613 -static const char ucp0x0e[256] =ucp0x0e507,20001 -static const char ucp0x0f[256] =ucp0x0f542,21385 -static const char ucp0x10[256] =ucp0x10577,22839 -static const char ucp0x12[256] =ucp0x12612,24228 -static const char ucp0x13[256] =ucp0x13647,25608 -static const char ucp0x14[256] =ucp0x14682,27027 -static const char ucp0x16[256] =ucp0x16717,28408 -static const char ucp0x17[256] =ucp0x17752,29795 -static const char ucp0x18[256] =ucp0x18787,31196 -static const char ucp0x19[256] =ucp0x19822,32587 -static const char ucp0x1a[256] =ucp0x1a857,34005 -static const char ucp0x1b[256] =ucp0x1b892,35400 -static const char ucp0x1c[256] =ucp0x1c927,36810 -static const char ucp0x1d[256] =ucp0x1d962,38198 -static const char ucp0x1e[256] =ucp0x1e997,39578 -static const char ucp0x1f[256] =ucp0x1f1032,40958 -static const char ucp0x20[256] =ucp0x201067,42353 -static const char ucp0x21[256] =ucp0x211102,43885 -static const char ucp0x23[256] =ucp0x231137,45428 -static const char ucp0x24[256] =ucp0x241172,47052 -static const char ucp0x27[256] =ucp0x271207,48642 -static const char ucp0x2b[256] =ucp0x2b1242,50275 -static const char ucp0x2c[256] =ucp0x2c1277,51742 -static const char ucp0x2d[256] =ucp0x2d1312,53135 -static const char ucp0x2e[256] =ucp0x2e1347,54516 -static const char ucp0x2f[256] =ucp0x2f1382,56060 -static const char ucp0x30[256] =ucp0x301417,57666 -static const char ucp0x31[256] =ucp0x311452,59085 -static const char ucp0x32[256] =ucp0x321487,60517 -static const char ucp0x4d[256] =ucp0x4d1522,62151 -static const char ucp0x9f[256] =ucp0x9f1557,63595 -static const char ucp0xa4[256] =ucp0xa41592,64975 -static const char ucp0xa6[256] =ucp0xa61627,66412 -static const char ucp0xa7[256] =ucp0xa71662,67806 -static const char ucp0xa8[256] =ucp0xa81697,69213 -static const char ucp0xa9[256] =ucp0xa91732,70616 -static const char ucp0xaa[256] =ucp0xaa1767,72014 -static const char ucp0xab[256] =ucp0xab1802,73403 -static const char ucp0xd7[256] =ucp0xd71837,74784 -static const char ucp0xd8[256] =ucp0xd81872,76164 -static const char ucp0xdb[256] =ucp0xdb1907,77545 -static const char ucp0xdc[256] =ucp0xdc1942,78928 -static const char ucp0xdf[256] =ucp0xdf1977,80309 -static const char ucp0xe0[256] =ucp0xe02012,81690 -static const char ucp0xf8[256] =ucp0xf82047,83071 -static const char ucp0xfa[256] =ucp0xfa2082,84452 -static const char ucp0xfb[256] =ucp0xfb2117,85832 -static const char ucp0xfd[256] =ucp0xfd2152,87229 -static const char ucp0xfe[256] =ucp0xfe2187,88613 -static const char ucp0xff[256] =ucp0xff2222,90062 -static const char ucp0x100[256] =ucp0x1002257,91500 -static const char ucp0x101[256] =ucp0x1012292,92881 -static const char ucp0x102[256] =ucp0x1022327,94398 -static const char ucp0x103[256] =ucp0x1032362,95779 -static const char ucp0x104[256] =ucp0x1042397,97166 -static const char ucp0x108[256] =ucp0x1082432,98547 -static const char ucp0x109[256] =ucp0x1092467,99937 -static const char ucp0x10a[256] =ucp0x10a2502,101326 -static const char ucp0x10b[256] =ucp0x10b2537,102727 -static const char ucp0x10c[256] =ucp0x10c2572,104131 -static const char ucp0x10e[256] =ucp0x10e2607,105512 -static const char ucp0x110[256] =ucp0x1102642,106924 -static const char ucp0x123[256] =ucp0x1232677,108339 -static const char ucp0x124[256] =ucp0x1242712,109720 -static const char ucp0x134[256] =ucp0x1342747,111105 -static const char ucp0x16a[256] =ucp0x16a2782,112486 -static const char ucp0x1b0[256] =ucp0x1b02817,113867 -static const char ucp0x1d0[256] =ucp0x1d02852,115248 -static const char ucp0x1d1[256] =ucp0x1d12887,116875 -static const char ucp0x1d2[256] =ucp0x1d22922,118446 -static const char ucp0x1d3[256] =ucp0x1d32957,119894 -static const char ucp0x1d4[256] =ucp0x1d42992,121380 -static const char ucp0x1d5[256] =ucp0x1d53027,122761 -static const char ucp0x1d6[256] =ucp0x1d63062,124142 -static const char ucp0x1d7[256] =ucp0x1d73097,125526 -static const char ucp0x1f0[256] =ucp0x1f03132,126914 -static const char ucp0x1f1[256] =ucp0x1f13167,128498 -static const char ucp0x1f2[256] =ucp0x1f23202,130048 -static const char ucp0x1f3[256] =ucp0x1f33237,131486 -static const char ucp0x1f4[256] =ucp0x1f43272,133055 -static const char ucp0x1f5[256] =ucp0x1f53307,134686 -static const char ucp0x1f6[256] =ucp0x1f63342,136158 -static const char ucp0x1f7[256] =ucp0x1f73377,137672 -static const char ucp0x2a6[256] =ucp0x2a63412,139169 -static const char ucp0x2b7[256] =ucp0x2b73447,140550 -static const char ucp0x2b8[256] =ucp0x2b83482,141931 -static const char ucp0x2fa[256] =ucp0x2fa3517,143312 -static const char ucp0xe00[256] =ucp0xe003552,144693 -static const char ucp0xe01[256] =ucp0xe013587,146171 -static const char ucp0xf00[256] =ucp0xf003622,147552 -static const char ucp0xfff[256] =ucp0xfff3657,148934 -static const char ucp0x1000[256] =ucp0x10003692,150316 -static const char ucp0x10ff[256] =ucp0x10ff3727,151699 -static const char* const uflags_map[UNICODE_MAP_SIZE] =uflags_map3762,153082 -uflagsW(int code)uflagsW4311,193464 - -library/dialect/swi/os/pl-utf8.c,694 -#define CONT(CONT32,1264 -#define VAL(VAL33,1299 -_PL__utf8_get_char(const char *in, int *chr)_PL__utf8_get_char36,1345 -_PL__utf8_type(const char *in0, size_t len)_PL__utf8_type69,2384 -_PL__utf8_put_char(char *out, int chr)_PL__utf8_put_char118,3798 -_PL__utf8_skip_char(const char *in)_PL__utf8_skip_char152,4753 -utf8_strlen(const char *s, size_t len)utf8_strlen184,5480 -utf8_strlen1(const char *s)utf8_strlen1199,5664 -utf8_skip(const char *s, int n)utf8_skip213,5807 -utf8_strncmp(const char *s1, const char *s2, size_t n)utf8_strncmp225,5937 -utf8_strprefix(const char *s1, const char *s2)utf8_strprefix241,6190 -utf8_wcscpy(char *sf, const wchar_t *s0)utf8_wcscpy257,6425 - -library/dialect/swi/os/pl-utf8.h,759 -#define UTF8_H_INCLUDEDUTF8_H_INCLUDED27,1004 -#define PL_MB_LEN_MAX PL_MB_LEN_MAX31,1049 -#define UTF8_MALFORMED_REPLACEMENT UTF8_MALFORMED_REPLACEMENT33,1075 -#define ISUTF8_MB(ISUTF8_MB35,1118 -#define ISUTF8_CB(ISUTF8_CB37,1189 -#define ISUTF8_FB2(ISUTF8_FB238,1259 -#define ISUTF8_FB3(ISUTF8_FB339,1302 -#define ISUTF8_FB4(ISUTF8_FB440,1345 -#define ISUTF8_FB5(ISUTF8_FB541,1388 -#define ISUTF8_FB6(ISUTF8_FB642,1431 -#define UTF8_FBN(UTF8_FBN44,1475 -#define UTF8_FBV(UTF8_FBV50,1665 -#define utf8_get_char(utf8_get_char52,1729 -#define utf8_skip_char(utf8_skip_char55,1853 -#define utf8_put_char(utf8_put_char58,1951 - S_ASCII,S_ASCII75,2634 - S_LATIN,S_LATIN76,2645 - S_WIDES_WIDE77,2656 -} unicode_type_t;unicode_type_t78,2665 - -library/dialect/swi/os/pl-util.c,178 -stricmp(const char *s1, const char *s2)stricmp7,70 -wstolower(wchar_t *w, size_t len)wstolower17,297 -int_mbscoll(const char *s1, const char *s2, int icase)int_mbscoll25,413 - -library/dialect/swi/os/pl-version.c,42 -setGITVersion(void)setGITVersion31,1043 - -library/dialect/swi/os/pl-write.c,3490 -#define HAVE_FPCLASSIFY HAVE_FPCLASSIFY52,1590 -#define _PL_WRITE_ _PL_WRITE_57,1644 -typedef struct visitedvisited63,1694 -{ Word address; /* we have done this address */address64,1717 -{ Word address; /* we have done this address */visited::address64,1717 - struct visited *next; /* next already visited */next65,1768 - struct visited *next; /* next already visited */visited::next65,1768 -} visited;visited66,1821 -{ int flags; /* PL_WRT_* flags */flags69,1848 -{ int flags; /* PL_WRT_* flags */__anon376::flags69,1848 - int max_depth; /* depth limit */max_depth70,1887 - int max_depth; /* depth limit */__anon376::max_depth70,1887 - int depth; /* current depth */depth71,1926 - int depth; /* current depth */__anon376::depth71,1926 - atom_t spacing; /* Where to insert spaces */spacing72,1964 - atom_t spacing; /* Where to insert spaces */__anon376::spacing72,1964 - module_t module; /* Module for operators */module73,2013 - module_t module; /* Module for operators */__anon376::module73,2013 - IOSTREAM *out; /* stream to write to */out74,2061 - IOSTREAM *out; /* stream to write to */__anon376::out74,2061 - term_t portray_goal; /* call/2 activated portray hook */portray_goal75,2105 - term_t portray_goal; /* call/2 activated portray hook */__anon376::portray_goal75,2105 - term_t write_options; /* original write options */write_options76,2166 - term_t write_options; /* original write options */__anon376::write_options76,2166 - term_t prec_opt; /* term in write options with prec */prec_opt77,2221 - term_t prec_opt; /* term in write options with prec */__anon376::prec_opt77,2221 -} write_options;write_options78,2280 -pl_nl1(term_t stream)pl_nl186,2390 -pl_nl(void)pl_nl105,2646 -format_float(double f, char *buf)format_float124,3430 -bind_varnames(term_t varnames ARG_LD)bind_varnames193,4841 -varName(term_t t, char *name)varName221,5489 -writeTopTerm(term_t t, int prec, write_options *options)writeTopTerm237,5748 -writeAtomToStream(IOSTREAM *s, atom_t atom)writeAtomToStream274,6807 -writeBlobMask(atom_t a)writeBlobMask280,6925 -#define TRUE_WITH_SPACE TRUE_WITH_SPACE295,7372 -Putc(int c, IOSTREAM *s)Putc298,7461 -#define LAST_C_RESERVED LAST_C_RESERVED302,7536 -#define PREFIX_SIGN PREFIX_SIGN303,7596 -#define isquote(isquote305,7638 -needSpace(int c, IOSTREAM *s)needSpace308,7698 -PutOpenToken(int c, IOSTREAM *s)PutOpenToken334,8243 -writeAttributeMask(atom_t a)writeAttributeMask350,8477 -static const opt_spec write_term_options[] =write_term_options364,8786 -put_write_options(term_t opts_in, write_options *options)put_write_options389,9641 -pl_write_term3(term_t stream, term_t term, term_t opts)pl_write_term3422,10516 -pl_write_term(term_t term, term_t options)pl_write_term552,14090 -PL_write_term(IOSTREAM *s, term_t term, int precedence, int flags)PL_write_term607,15423 -do_write2(term_t stream, term_t term, int flags)do_write2620,15753 -pl_write2(term_t stream, term_t term)pl_write2662,16645 -pl_writeq2(term_t stream, term_t term)pl_writeq2674,16866 -pl_print2(term_t stream, term_t term)pl_print2687,17114 -pl_write_canonical2(term_t stream, term_t term)pl_write_canonical2701,17417 -pl_write(term_t term)pl_write731,18060 -pl_writeq(term_t term)pl_writeq742,18287 -pl_print(term_t term)pl_print758,18651 -pl_write_canonical(term_t term)pl_write_canonical773,18971 -pl_writeln(term_t term)pl_writeln787,19194 - -library/dialect/swi/os/pl-yap.h,2907 -#define PL_YAP_HPL_YAP_H2,17 -#define LMASK_BITS LMASK_BITS11,151 -#define SIZE_VOIDP SIZE_VOIDP21,291 -#define INT64_FORMAT INT64_FORMAT24,349 -#define INT64_FORMAT INT64_FORMAT26,383 -#define INTBITSIZE INTBITSIZE28,417 -typedef module_t Module;Module30,455 -typedef Term (*Func)(term_t); /* foreign functions */Func31,480 -#define valTermRef(valTermRef42,881 -#define GP_CREATE GP_CREATE48,982 -#define stopItimer(stopItimer63,1384 -COMMON(word) pl_print(term_t term);term65,1406 -COMMON(word) pl_write(term_t term);term66,1442 -COMMON(word) pl_write_canonical(term_t term);term67,1478 -COMMON(word) pl_writeq(term_t term);term69,1581 -static inline int get_procedure(term_t descr, predicate_t *proc, term_t he,get_procedure71,1619 -#define allocHeap(allocHeap95,2243 -#define valHandle(valHandle97,2290 -#define arityFunctor(arityFunctor104,2486 -#define stringAtom(stringAtom106,2538 -#define isInteger(isInteger107,2594 -#define isString(isString109,2742 -#define isAtom(isAtom110,2797 -#define isList(isList111,2850 -#define isNil(isNil112,2903 -#define isReal(isReal113,2937 -#define isFloat(isFloat114,2991 -#define isVar(isVar115,3046 -#define valReal(valReal116,3078 -#define valFloat(valFloat117,3114 -#define atomValue(atomValue118,3151 -#define atomFromTerm(atomFromTerm119,3192 -inline static char *atomName(Atom atom) {atomName121,3258 -#define nameOfAtom(nameOfAtom127,3388 -#define atomBlobType(atomBlobType129,3431 -#define argTermP(argTermP130,3479 -#define deRef(deRef131,3538 -#define canBind(canBind135,3785 -#define _PL_predicate(_PL_predicate136,3831 -#define predicateHasClauses(predicateHasClauses137,3887 -#define lookupModule(lookupModule138,3953 -#define charEscapeWriteOption(charEscapeWriteOption142,4090 -#define wordToTermRef(wordToTermRef143,4150 -#define isTaggedInt(isTaggedInt144,4194 -#define valInt(valInt145,4234 -#define MODULE_user MODULE_user147,4270 -#define MODULE_system MODULE_system148,4345 -#define MODULE_parse MODULE_parse149,4424 -#define clearNumber(clearNumber153,4524 -inline static int charCode(Term w) {charCode158,4616 -#define PL_get_atom(PL_get_atom174,4936 -#define PL_get_atom_ex(PL_get_atom_ex175,4992 -#define PL_get_text(PL_get_text176,5054 -#define PL_is_atom(PL_is_atom177,5116 -#define PL_is_variable(PL_is_variable178,5164 -#define PL_new_term_ref(PL_new_term_ref179,5220 -#define PL_put_atom(PL_put_atom180,5276 -#define PL_put_term(PL_put_term181,5332 -#define PL_unify_atom(PL_unify_atom182,5392 -#define PL_unify_integer(PL_unify_integer183,5452 -#define _PL_get_arg(_PL_get_arg185,5519 -static int stripostfix(const char *s, const char *e) {stripostfix192,5671 -static inline void unblockSignal(int sig) {unblockSignal208,5931 -static inline void unblockSignal(int sig) {}unblockSignal218,6142 -#define suspendTrace(suspendTrace221,6195 -atom_t ATOM_;ATOM_223,6220 - -library/dialect/swi/os/SWI-Stream.h,12634 -#define _PL_STREAM_H_PL_STREAM_H3,22 -#define _PL_EXPORT_DONE_PL_EXPORT_DONE6,68 -#define HAVE_DECLSPECHAVE_DECLSPEC9,164 -#define PL_EXPORT(PL_EXPORT14,233 -#define PL_EXPORT_DATA(PL_EXPORT_DATA15,285 -#define install_t install_t16,341 -#define PL_EXPORT(PL_EXPORT19,395 -#define PL_EXPORT_DATA(PL_EXPORT_DATA20,435 -#define PL_EXPORT(PL_EXPORT22,484 -#define PL_EXPORT_DATA(PL_EXPORT_DATA23,522 -#define install_t install_t25,587 -#define PL_EXPORT(PL_EXPORT28,666 -#define PL_EXPORT_DATA(PL_EXPORT_DATA29,704 -#define install_t install_t30,745 -#define __WINDOWS__ __WINDOWS__42,1057 -#define INT64_T_DEFINED INT64_T_DEFINED51,1209 -typedef __int64 int64_t;int64_t52,1235 -typedef unsigned __int64 uint64_t;uint64_t53,1260 -#define PL_HAVE_TERM_TPL_HAVE_TERM_T65,1457 -typedef intptr_t term_t;term_t66,1480 -#define EOF EOF73,1622 -#define NULL NULL77,1660 -#define EWOULDBLOCK EWOULDBLOCK81,1743 -#define EPLEXCEPTION EPLEXCEPTION83,1809 -#define SIO_BUFSIZE SIO_BUFSIZE85,1875 -#define SIO_LINESIZE SIO_LINESIZE86,1931 -#define SIO_MAGIC SIO_MAGIC87,1994 -#define SIO_CMAGIC SIO_CMAGIC88,2041 -typedef ssize_t (*Sread_function)(void *handle, char *buf, size_t bufsize);Sread_function90,2106 -typedef ssize_t (*Swrite_function)(void *handle, char*buf, size_t bufsize);Swrite_function91,2182 -typedef long (*Sseek_function)(void *handle, long pos, int whence);Sseek_function92,2258 -typedef int64_t (*Sseek64_function)(void *handle, int64_t pos, int whence);Sseek64_function93,2327 -typedef int (*Sclose_function)(void *handle);Sclose_function94,2403 -typedef int (*Scontrol_function)(void *handle, int action, void *arg);Scontrol_function95,2451 -typedef struct io_functionsio_functions99,2549 -{ Sread_function read; /* fill the buffer */read100,2577 -{ Sread_function read; /* fill the buffer */io_functions::read100,2577 - Swrite_function write; /* empty the buffer */write101,2623 - Swrite_function write; /* empty the buffer */io_functions::write101,2623 - Sseek_function seek; /* seek to position */seek102,2672 - Sseek_function seek; /* seek to position */io_functions::seek102,2672 - Sclose_function close; /* close stream */close103,2719 - Sclose_function close; /* close stream */io_functions::close103,2719 - Scontrol_function control; /* Info/control */control104,2764 - Scontrol_function control; /* Info/control */io_functions::control104,2764 - Sseek64_function seek64; /* seek to position (intptr_t files) */seek64105,2812 - Sseek64_function seek64; /* seek to position (intptr_t files) */io_functions::seek64105,2812 -} IOFUNCTIONS;IOFUNCTIONS106,2880 -typedef struct io_positionio_position108,2896 -{ int64_t byteno; /* byte-position in file */byteno109,2923 -{ int64_t byteno; /* byte-position in file */io_position::byteno109,2923 - int64_t charno; /* character position in file */charno110,2971 - int64_t charno; /* character position in file */io_position::charno110,2971 - long int lineno; /* lineno in file */lineno111,3024 - long int lineno; /* lineno in file */io_position::lineno111,3024 - long int linepos; /* position in line */linepos112,3066 - long int linepos; /* position in line */io_position::linepos112,3066 - intptr_t reserved[2]; /* future extensions */reserved113,3118 - intptr_t reserved[2]; /* future extensions */io_position::reserved113,3118 -} IOPOS;IOPOS114,3167 - typedef encoding_t IOENC;IOENC117,3196 -{ ENC_UNKNOWN = 0, /* invalid/unknown */ENC_UNKNOWN122,3310 - ENC_OCTET, /* raw 8 bit input */ENC_OCTET123,3353 - ENC_ASCII, /* US-ASCII (0..127) */ENC_ASCII124,3391 - ENC_ISO_LATIN_1, /* ISO Latin-1 (0..256) */ENC_ISO_LATIN_1125,3431 - ENC_ANSI, /* default (multibyte) codepage */ENC_ANSI126,3479 - ENC_UTF8,ENC_UTF8127,3529 - ENC_UNICODE_BE, /* big endian unicode file */ENC_UNICODE_BE128,3541 - ENC_UNICODE_LE, /* little endian unicode file */ENC_UNICODE_LE129,3591 - ENC_WCHAR /* pl_wchar_t */ENC_WCHAR130,3644 -} IOENC;IOENC131,3676 -#define SIO_NL_POSIX SIO_NL_POSIX134,3693 -#define SIO_NL_DOS SIO_NL_DOS135,3739 -#define SIO_NL_DETECT SIO_NL_DETECT136,3787 -typedef struct io_streamio_stream138,3843 -{ char *bufp; /* `here' */bufp139,3868 -{ char *bufp; /* `here' */io_stream::bufp139,3868 - char *limitp; /* read/write limit */limitp140,3904 - char *limitp; /* read/write limit */io_stream::limitp140,3904 - char *buffer; /* the buffer */buffer141,3952 - char *buffer; /* the buffer */io_stream::buffer141,3952 - char *unbuffer; /* Sungetc buffer */unbuffer142,3994 - char *unbuffer; /* Sungetc buffer */io_stream::unbuffer142,3994 - int lastc; /* last character written */lastc143,4041 - int lastc; /* last character written */io_stream::lastc143,4041 - int magic; /* magic number SIO_MAGIC */magic144,4086 - int magic; /* magic number SIO_MAGIC */io_stream::magic144,4086 - int bufsize; /* size of the buffer */bufsize145,4131 - int bufsize; /* size of the buffer */io_stream::bufsize145,4131 - int flags; /* Status flags */flags146,4175 - int flags; /* Status flags */io_stream::flags146,4175 - IOPOS posbuf; /* location in file */posbuf147,4210 - IOPOS posbuf; /* location in file */io_stream::posbuf147,4210 - IOPOS * position; /* pointer to above */position148,4252 - IOPOS * position; /* pointer to above */io_stream::position148,4252 - void *handle; /* function's handle */handle149,4296 - void *handle; /* function's handle */io_stream::handle149,4296 - IOFUNCTIONS *functions; /* open/close/read/write/seek */functions150,4345 - IOFUNCTIONS *functions; /* open/close/read/write/seek */io_stream::functions150,4345 - int locks; /* lock/unlock count */locks151,4411 - int locks; /* lock/unlock count */io_stream::locks151,4411 - IOLOCK * mutex; /* stream mutex */mutex152,4458 - IOLOCK * mutex; /* stream mutex */io_stream::mutex152,4458 - void (*close_hook)(void* closure);close_hook154,4525 - void (*close_hook)(void* closure);io_stream::close_hook154,4525 - void * closure;closure155,4564 - void * closure;io_stream::closure155,4564 - int timeout; /* timeout (milliseconds) */timeout157,4611 - int timeout; /* timeout (milliseconds) */io_stream::timeout157,4611 - char * message; /* error/warning message */message159,4685 - char * message; /* error/warning message */io_stream::message159,4685 - IOENC encoding; /* character encoding used */encoding160,4732 - IOENC encoding; /* character encoding used */io_stream::encoding160,4732 - struct io_stream * tee; /* copy data to this stream */tee161,4782 - struct io_stream * tee; /* copy data to this stream */io_stream::tee161,4782 - mbstate_t * mbstate; /* ENC_ANSI decoding */mbstate162,4840 - mbstate_t * mbstate; /* ENC_ANSI decoding */io_stream::mbstate162,4840 - struct io_stream * upstream; /* stream providing our input */upstream163,4888 - struct io_stream * upstream; /* stream providing our input */io_stream::upstream163,4888 - struct io_stream * downstream; /* stream providing our output */downstream164,4952 - struct io_stream * downstream; /* stream providing our output */io_stream::downstream164,4952 - unsigned newline : 2; /* Newline mode */newline165,5019 - unsigned newline : 2; /* Newline mode */io_stream::newline165,5019 - unsigned erased : 1; /* Stream was erased */erased166,5063 - unsigned erased : 1; /* Stream was erased */io_stream::erased166,5063 - unsigned references : 4; /* Reference-count */references167,5111 - unsigned references : 4; /* Reference-count */io_stream::references167,5111 - int io_errno; /* Save errno value */io_errno168,5161 - int io_errno; /* Save errno value */io_stream::io_errno168,5161 - void * exception; /* pending exception (record_t) */exception169,5202 - void * exception; /* pending exception (record_t) */io_stream::exception169,5202 - void * context; /* getStreamContext() */context170,5258 - void * context; /* getStreamContext() */io_stream::context170,5258 - intptr_t reserved[0]; /* reserved for extension */reserved171,5302 - intptr_t reserved[0]; /* reserved for extension */io_stream::reserved171,5302 - struct PL_locale * locale; /* Locale associated to stream */locale172,5356 - struct PL_locale * locale; /* Locale associated to stream */io_stream::locale172,5356 -} IOSTREAM;IOSTREAM176,5539 -#define SmakeFlag(SmakeFlag178,5552 -#define SIO_FBUF SIO_FBUF180,5585 -#define SIO_LBUF SIO_LBUF181,5636 -#define SIO_NBUF SIO_NBUF182,5687 -#define SIO_FEOF SIO_FEOF183,5736 -#define SIO_FERR SIO_FERR184,5784 -#define SIO_USERBUF SIO_USERBUF185,5834 -#define SIO_INPUT SIO_INPUT186,5893 -#define SIO_OUTPUT SIO_OUTPUT187,5943 -#define SIO_NOLINENO SIO_NOLINENO188,5995 -#define SIO_NOLINEPOS SIO_NOLINEPOS189,6057 -#define SIO_STATIC SIO_STATIC190,6116 -#define SIO_RECORDPOS SIO_RECORDPOS191,6179 -#define SIO_FILE SIO_FILE192,6239 -#define SIO_PIPE SIO_PIPE193,6304 -#define SIO_NOFEOF SIO_NOFEOF194,6369 -#define SIO_TEXT SIO_TEXT195,6432 -#define SIO_FEOF2 SIO_FEOF2196,6489 -#define SIO_FEOF2ERR SIO_FEOF2ERR197,6552 -#define SIO_NOCLOSE SIO_NOCLOSE198,6605 -#define SIO_APPEND SIO_APPEND199,6671 -#define SIO_UPDATE SIO_UPDATE200,6732 -#define SIO_ISATTY SIO_ISATTY201,6793 -#define SIO_CLOSING SIO_CLOSING202,6848 -#define SIO_TIMEOUT SIO_TIMEOUT203,6914 -#define SIO_NOMUTEX SIO_NOMUTEX204,6971 -#define SIO_ADVLOCK SIO_ADVLOCK205,7044 -#define SIO_WARN SIO_WARN206,7115 -#define SIO_CLEARERR SIO_CLEARERR207,7168 -#define SIO_REPXML SIO_REPXML208,7237 -#define SIO_REPPL SIO_REPPL209,7300 -#define SIO_BOM SIO_BOM210,7364 -#define SIO_SEEK_SET SIO_SEEK_SET212,7427 -#define SIO_SEEK_CUR SIO_SEEK_CUR213,7481 -#define SIO_SEEK_END SIO_SEEK_END214,7534 -#define S__iob S__iob221,7857 -#define Sinput Sinput226,7966 -#define Soutput Soutput227,8016 -#define Serror Serror228,8067 -#define Sgetchar(Sgetchar230,8118 -#define Sputchar(Sputchar231,8151 -S__checkpasteeof(IOSTREAM *s, int c)S__checkpasteeof234,8211 -#define S__updatefilepos_getc(S__updatefilepos_getc240,8339 -#define Snpgetc(Snpgetc244,8471 -#define Sgetc(Sgetc246,8570 -PL_EXPORT(int) Speekcode(IOSTREAM *s);s248,8627 -#define SIO_GETSIZE SIO_GETSIZE251,8693 -#define SIO_GETFILENO SIO_GETFILENO252,8754 -#define SIO_SETENCODING SIO_SETENCODING253,8816 -#define SIO_FLUSHOUTPUT SIO_FLUSHOUTPUT254,8877 -#define SIO_LASTERROR SIO_LASTERROR255,8925 -#define SIO_GETWINSOCK SIO_GETWINSOCK257,9003 -#define SIO_RP_BLOCK SIO_RP_BLOCK261,9108 -#undef FILEFILE265,9189 -#undef stdinstdin266,9201 -#undef stdoutstdout267,9214 -#undef stderrstderr268,9228 -#undef putcputc269,9242 -#undef getcgetc270,9254 -#undef putcharputchar271,9266 -#undef getchargetchar272,9281 -#undef feoffeof273,9296 -#undef ferrorferror274,9308 -#undef filenofileno275,9322 -#undef clearerrclearerr276,9336 -#define FILE FILE278,9353 -#define stdin stdin279,9376 -#define stdout stdout280,9398 -#define stderr stderr281,9422 -#define putc putc283,9446 -#define getc getc284,9466 -#define fputc fputc285,9486 -#define fgetc fgetc286,9507 -#define getw getw287,9528 -#define putw putw288,9548 -#define fread fread289,9568 -#define fwrite fwrite290,9590 -#define ungetc ungetc291,9614 -#define putchar putchar292,9638 -#define getchar getchar293,9664 -#define feof feof294,9690 -#define ferror ferror295,9710 -#define clearerr clearerr296,9734 -#define fflush fflush297,9761 -#define fseek fseek298,9784 -#define ftell ftell299,9805 -#define fclose fclose300,9826 -#define fgets fgets301,9849 -#define gets gets302,9871 -#define fputs fputs303,9891 -#define puts puts304,9913 -#define fprintf fprintf305,9933 -#define printf printf306,9959 -#define vprintf vprintf307,9983 -#define vfprintf vfprintf308,10009 -#define sprintf sprintf309,10036 -#define vsprintf vsprintf310,10062 -#define fopen fopen311,10089 -#define fdopen fdopen312,10115 -#define fileno fileno313,10139 -PL_EXPORT(int) Slock(IOSTREAM *s);s316,10251 -PL_EXPORT(int) StryLock(IOSTREAM *s);s317,10287 -PL_EXPORT(int) Sunlock(IOSTREAM *s);s318,10326 -PL_EXPORT(int) Sfileno(IOSTREAM *s);s322,10567 -PL_EXPORT(int64_t) Stell64(IOSTREAM *s);s331,11069 -PL_EXPORT(SOCKET) Swinsock(IOSTREAM *s);s338,11333 -PL_EXPORT(int) ScheckBOM(IOSTREAM *s);s343,11390 -PL_EXPORT(int) SwriteBOM(IOSTREAM *s);s344,11430 - -library/dialect/swi/os/windows/dirent.h,665 -#define _DIRENT_H_INCLUDED_DIRENT_H_INCLUDED26,985 -#undef _export_export30,1030 -#define _export _export32,1096 -#define _export _export34,1139 -#define DIRENT_MAX DIRENT_MAX37,1170 -typedef struct direntdirent39,1194 -{ void * data; /* actually WIN32_FIND_DATA * */data40,1216 -{ void * data; /* actually WIN32_FIND_DATA * */dirent::data40,1216 - int first;first41,1266 - int first;dirent::first41,1266 - void * handle; /* actually HANDLE */handle42,1281 - void * handle; /* actually HANDLE */dirent::handle42,1281 - char d_name[DIRENT_MAX+1];d_name44,1340 - char d_name[DIRENT_MAX+1];dirent::d_name44,1340 -} DIR;DIR45,1371 - -library/dialect/swi/os/windows/popen.c,1200 -DWORD RunSilent(const char* strCommand)RunSilent61,1802 -CRITICAL_SECTION lock;lock115,3048 -#define LOCK(LOCK116,3071 -#define UNLOCK(UNLOCK117,3117 -pt_init( void )pt_init120,3176 -typedef struct pipe_contextpipe_context125,3232 -{ struct pipe_context *next;next126,3260 -{ struct pipe_context *next;pipe_context::next126,3260 - FILE *fd;fd127,3289 - FILE *fd;pipe_context::fd127,3289 - HANDLE in[2];in128,3303 - HANDLE in[2];pipe_context::in128,3303 - HANDLE out[2];out129,3319 - HANDLE out[2];pipe_context::out129,3319 - HANDLE err[2];err130,3336 - HANDLE err[2];pipe_context::err130,3336 - char mode; /* 'r' or 'w' */mode131,3353 - char mode; /* 'r' or 'w' */pipe_context::mode131,3353 -} pipe_context;pipe_context132,3388 -static pipe_context *pipes = NULL;pipes135,3406 -allocPipeContext( void )allocPipeContext138,3464 -discardPipeContext(pipe_context *pc)discardPipeContext156,3821 -linkPipeContext(pipe_context *pc)linkPipeContext176,4312 -my_pipe(HANDLE *readwrite)my_pipe185,4417 -utf8towcs(wchar_t *o, const char *src)utf8towcs213,5196 -pt_popen(const char *cmd, const char *mode)pt_popen225,5340 -pt_pclose(FILE *fd)pt_pclose327,8107 - -library/dialect/swi/os/windows/README,0 - -library/dialect/swi/os/windows/utf8.c,190 -#define CONT(CONT31,1222 -#define VAL(VAL32,1257 -_xos_utf8_get_char(const char *in, int *chr)_xos_utf8_get_char35,1310 -_xos_utf8_put_char(char *out, int chr)_xos_utf8_put_char69,2349 - -library/dialect/swi/os/windows/utf8.h,548 -#define UTF8_H_INCLUDEDUTF8_H_INCLUDED27,1004 -#define UTF8_MALFORMED_REPLACEMENT UTF8_MALFORMED_REPLACEMENT29,1029 -#define ISUTF8_MB(ISUTF8_MB31,1072 -#define ISUTF8_CB(ISUTF8_CB33,1143 -#define ISUTF8_FB2(ISUTF8_FB234,1213 -#define ISUTF8_FB3(ISUTF8_FB335,1256 -#define ISUTF8_FB4(ISUTF8_FB436,1299 -#define ISUTF8_FB5(ISUTF8_FB537,1342 -#define ISUTF8_FB6(ISUTF8_FB638,1385 -#define UTF8_FBN(UTF8_FBN40,1429 -#define UTF8_FBV(UTF8_FBV46,1619 -#define utf8_get_char(utf8_get_char48,1683 -#define utf8_put_char(utf8_put_char51,1807 - -library/dialect/swi/os/windows/uxnt.c,3444 -#define UNICODE UNICODE26,1047 -#define _UNICODE _UNICODE27,1065 -#define _UXNT_KERNEL _UXNT_KERNEL29,1085 -#undef mkdir mkdir44,1390 -#define mkdir mkdir47,1495 -#define TRUE TRUE52,1560 -#define FALSE FALSE53,1575 -#define _close _close57,1614 -#define _read _read58,1635 -#define _write _write59,1654 -#define _lseek _lseek60,1675 -#define _tell _tell61,1696 -#define _chdir _chdir62,1715 -#define _mkdir _mkdir63,1736 -#define _rmdir _rmdir64,1757 -#define _getcwd _getcwd65,1778 -#define XENOMAP XENOMAP68,1809 -#define XENOMEM XENOMEM69,1827 -#define PATH_MAX PATH_MAX72,1863 -_xos_errno()_xos_errno81,1991 -wcstoutf8(char *dest, const wchar_t *src, size_t len)wcstoutf890,2125 -wcutf8len(const wchar_t *src)wcutf8len110,2452 -utf8towcs(wchar_t *dest, const char *src, size_t len)utf8towcs129,2699 -utf8_strlen(const char *s, size_t len)utf8_strlen150,3000 -existsAndWriteableDir(const TCHAR *name)existsAndWriteableDir171,3283 -_xos_home() /* expansion of ~ */_xos_home186,3523 -_xos_os_filenameW(const char *cname, wchar_t *osname, size_t len)_xos_os_filenameW245,5143 -_xos_os_filename(const char *cname, char *osname, size_t len)_xos_os_filename337,6956 -_xos_canonical_filenameW(const wchar_t *spec,_xos_canonical_filenameW353,7431 -_xos_canonical_filename(const char *spec, char *xname, size_t len, int flags)_xos_canonical_filename388,8007 -_xos_is_absolute_filename(const char *spec)_xos_is_absolute_filename399,8235 -_xos_long_file_nameW(const TCHAR *file, TCHAR *longname, size_t len)_xos_long_file_nameW432,9163 -_xos_long_file_name_toA(const wchar_t *file, char *longname, size_t len)_xos_long_file_name_toA487,10078 -_xos_long_file_name(const char *file, char *longname, size_t len)_xos_long_file_name498,10296 -_xos_absolute_filename(const char *local, char *absolute, size_t len)_xos_absolute_filename513,10585 -_xos_same_file(const char *p1, const char *p2)_xos_same_file529,10929 -_xos_limited_os_filename(const char *spec, char *limited)_xos_limited_os_filename599,13000 -_xos_open(const char *path, int access, ...)_xos_open621,13364 -_xos_close(int handle)_xos_close638,13641 -_xos_read(int handle, void *buf, size_t size)_xos_read644,13701 -_xos_write(int handle, const void *buf, size_t size)_xos_write650,13808 -_xos_lseek(int handle, long offset, int whence)_xos_lseek656,13920 -_xos_tell(int handle)_xos_tell662,14018 -_xos_fopen(const char *path, const char *mode)_xos_fopen668,14075 -_xos_access(const char *path, int mode)_xos_access689,14456 -_xos_chmod(const char *path, mode_t mode)_xos_chmod792,16906 -_xos_remove(const char *path)_xos_remove803,17074 -_xos_rename(const char *old, const char *new)_xos_rename814,17225 -_xos_stat(const char *path, struct _stati64 *sbuf)_xos_stat831,17583 -_xos_exists(const char *path, int flags)_xos_exists842,17763 -opendir(const char *path)opendir873,18308 -closedir(DIR *dp)closedir904,18864 -translate_data(DIR *dp)translate_data919,19039 -readdir(DIR *dp)readdir934,19266 -_xos_chdir(const char *path)_xos_chdir955,19557 -_xos_mkdir(const char *path, int mode)_xos_mkdir975,19891 -_xos_rmdir(const char *path)_xos_rmdir986,20050 -_xos_getcwd(char *buf, size_t len)_xos_getcwd997,20202 -_xos_getcwd_i(char *buf, int len)_xos_getcwd_i1011,20496 -_xos_getenv(const char *name, char *buf, size_t buflen)_xos_getenv1029,20886 -_xos_setenv(const char *name, char *value, int overwrite)_xos_setenv1065,21577 - -library/dialect/swi/os/windows/uxnt.h,1726 -#define _XNT_H_INCLUDED_XNT_H_INCLUDED26,977 -#undef _export_export28,1002 -#define _export _export30,1068 -#define _export _export32,1111 -typedef long intptr_t;intptr_t44,1337 -typedef unsigned long uintptr_t;uintptr_t45,1360 -typedef intptr_t ssize_t; /* signed version of size_t */ssize_t47,1400 -#undef removeremove52,1488 -#undef renamerename53,1502 -#undef openopen54,1516 -#undef closeclose55,1528 -#undef readread56,1541 -#undef writewrite57,1553 -#undef lseeklseek58,1566 -#undef telltell59,1579 -#undef accessaccess60,1591 -#undef chmodchmod61,1605 -#undef removeremove62,1618 -#undef renamerename63,1632 -#undef statstat64,1646 -#undef chdirchdir65,1658 -#undef mkdirmkdir66,1671 -#undef rmdirrmdir67,1684 -#undef getcwdgetcwd68,1697 -#define remove remove70,1712 -#define rename rename71,1739 -#define open open72,1766 -#define close close73,1789 -#define read read74,1814 -#define write write75,1837 -#define lseek lseek76,1862 -#define tell tell77,1887 -#define access access78,1910 -#define chmod chmod79,1937 -#define remove remove80,1962 -#define rename rename81,1989 -#define statfunc statfunc82,2016 -#define chdir chdir83,2043 -#define mkdir mkdir84,2068 -#define rmdir rmdir85,2093 -#define getcwd getcwd86,2118 -#define setenv setenv87,2147 -#define fopen(fopen88,2174 -#define F_OK F_OK93,2285 -#define R_OK R_OK94,2301 -#define W_OK W_OK95,2342 -#define PATH_MAX PATH_MAX103,2480 -#define _stati64 _stati64107,2523 -#undef _xos_stat_xos_stat110,2553 -#define _XOS_ISFILE _XOS_ISFILE153,4670 -#define _XOS_ISDIR _XOS_ISDIR154,4695 -#define _XOS_FILE _XOS_FILE156,4720 -#define _XOS_DIR _XOS_DIR157,4762 -#define XOS_DOWNCASE XOS_DOWNCASE159,4809 - -library/dialect/swi/syspred_options.pl,0 - -library/dialect/swi.yap,5156 -swi_get_time(FSecs) :- datime(Datime), mktime(Datime, Secs), FSecs is Secs*1.0.swi_get_time136,2500 -swi_get_time(FSecs) :- datime(Datime), mktime(Datime, Secs), FSecs is Secs*1.0.swi_get_time136,2500 -swi_get_time(FSecs) :- datime(Datime), mktime(Datime, Secs), FSecs is Secs*1.0.swi_get_time136,2500 -goal_expansion(atom_concat(A,B),atomic_concat(A,B)).goal_expansion138,2582 -goal_expansion(atom_concat(A,B),atomic_concat(A,B)).goal_expansion138,2582 -goal_expansion(atom_concat(A,B,C),atomic_concat(A,B,C)).goal_expansion151,2984 -goal_expansion(atom_concat(A,B,C),atomic_concat(A,B,C)).goal_expansion151,2984 -goal_expansion(arg(A,B,C),arg:genarg(A,B,C)).goal_expansion153,3094 -goal_expansion(arg(A,B,C),arg:genarg(A,B,C)).goal_expansion153,3094 -concat_atom([A|List], Separator, New) :- var(List), !,concat_atom194,3832 -concat_atom([A|List], Separator, New) :- var(List), !,concat_atom194,3832 -concat_atom([A|List], Separator, New) :- var(List), !,concat_atom194,3832 -concat_atom(List, Separator, New) :-concat_atom198,3988 -concat_atom(List, Separator, New) :-concat_atom198,3988 -concat_atom(List, Separator, New) :-concat_atom198,3988 -split_atom_by_chars([],_,[],L,A,[]):-split_atom_by_chars203,4107 -split_atom_by_chars([],_,[],L,A,[]):-split_atom_by_chars203,4107 -split_atom_by_chars([],_,[],L,A,[]):-split_atom_by_chars203,4107 -split_atom_by_chars([C|NewChars],C,[],L,A,[NA|Atoms]) :- !,split_atom_by_chars205,4163 -split_atom_by_chars([C|NewChars],C,[],L,A,[NA|Atoms]) :- !,split_atom_by_chars205,4163 -split_atom_by_chars([C|NewChars],C,[],L,A,[NA|Atoms]) :- !,split_atom_by_chars205,4163 -split_atom_by_chars([C1|NewChars],C,[C1|LF],LAtom,Atom,Atoms) :-split_atom_by_chars208,4290 -split_atom_by_chars([C1|NewChars],C,[C1|LF],LAtom,Atom,Atoms) :-split_atom_by_chars208,4290 -split_atom_by_chars([C1|NewChars],C,[C1|LF],LAtom,Atom,Atoms) :-split_atom_by_chars208,4290 -add_separator_to_list([], _, []).add_separator_to_list211,4410 -add_separator_to_list([], _, []).add_separator_to_list211,4410 -add_separator_to_list([T], _, [T]) :- !.add_separator_to_list212,4444 -add_separator_to_list([T], _, [T]) :- !.add_separator_to_list212,4444 -add_separator_to_list([T], _, [T]) :- !.add_separator_to_list212,4444 -add_separator_to_list([H|T], Separator, [H,Separator|NT]) :-add_separator_to_list213,4485 -add_separator_to_list([H|T], Separator, [H,Separator|NT]) :-add_separator_to_list213,4485 -add_separator_to_list([H|T], Separator, [H,Separator|NT]) :-add_separator_to_list213,4485 -concat_atom(List, New) :-concat_atom216,4589 -concat_atom(List, New) :-concat_atom216,4589 -concat_atom(List, New) :-concat_atom216,4589 -bindings_message(V) -->bindings_message220,4644 -bindings_message(V) -->bindings_message220,4644 -bindings_message(V) -->bindings_message220,4644 -cvt_bindings([],[]).cvt_bindings224,4757 -cvt_bindings([],[]).cvt_bindings224,4757 -cvt_bindings([[Name|Value]|L],[AName=Value|Bindings]) :-cvt_bindings225,4778 -cvt_bindings([[Name|Value]|L],[AName=Value|Bindings]) :-cvt_bindings225,4778 -cvt_bindings([[Name|Value]|L],[AName=Value|Bindings]) :-cvt_bindings225,4778 -chdir(X) :- cd(X).chdir233,4985 -chdir(X) :- cd(X).chdir233,4985 -chdir(X) :- cd(X).chdir233,4985 -chdir(X) :- cd(X).chdir233,4985 -chdir(X) :- cd(X).chdir233,4985 -convert_time(Stamp, String) :-convert_time245,5313 -convert_time(Stamp, String) :-convert_time245,5313 -convert_time(Stamp, String) :-convert_time245,5313 -convert_time(Stamp, Y, Mon, Day, Hour, Min, Sec, MilliSec) :-convert_time261,6034 -convert_time(Stamp, Y, Mon, Day, Hour, Min, Sec, MilliSec) :-convert_time261,6034 -convert_time(Stamp, Y, Mon, Day, Hour, Min, Sec, MilliSec) :-convert_time261,6034 -compile_aux_clauses([]).compile_aux_clauses271,6296 -compile_aux_clauses([]).compile_aux_clauses271,6296 -compile_aux_clauses([(:- G)|Cls]) :- !,compile_aux_clauses272,6321 -compile_aux_clauses([(:- G)|Cls]) :- !,compile_aux_clauses272,6321 -compile_aux_clauses([(:- G)|Cls]) :- !,compile_aux_clauses272,6321 -compile_aux_clauses([Cl|Cls]) :-compile_aux_clauses276,6433 -compile_aux_clauses([Cl|Cls]) :-compile_aux_clauses276,6433 -compile_aux_clauses([Cl|Cls]) :-compile_aux_clauses276,6433 -flag(Key, Old, New) :-flag282,6550 -flag(Key, Old, New) :-flag282,6550 -flag(Key, Old, New) :-flag282,6550 -flag(Key, 0, New) :-flag292,6670 -flag(Key, 0, New) :-flag292,6670 -flag(Key, 0, New) :-flag292,6670 -current_flag(Key) :-current_flag298,6773 -current_flag(Key) :-current_flag298,6773 -current_flag(Key) :-current_flag298,6773 -require(F) :-require301,6811 -require(F) :-require301,6811 -require(F) :-require301,6811 -required_predicates([], _).required_predicates307,6961 -required_predicates([], _).required_predicates307,6961 -required_predicates([F|Fs], M) :-required_predicates308,6989 -required_predicates([F|Fs], M) :-required_predicates308,6989 -required_predicates([F|Fs], M) :-required_predicates308,6989 -required_predicate(Na/Ar, M) :-required_predicate312,7080 -required_predicate(Na/Ar, M) :-required_predicate312,7080 -required_predicate(Na/Ar, M) :-required_predicate312,7080 - -library/error.yap,0 - -library/examples/mapargs.yap,3344 -ds(X,Y,Z) :- Y is 2*X, Z is X*X.ds4,35 -ds(X,Y,Z) :- Y is 2*X, Z is X*X.ds4,35 -ds(X,Y,Z) :- Y is 2*X, Z is X*X.ds4,35 -double(X,Y) :- Y is 2*X.double6,69 -double(X,Y) :- Y is 2*X.double6,69 -double(X,Y) :- Y is 2*X.double6,69 -square(X,Y) :- Y is X*X.square8,95 -square(X,Y) :- Y is X*X.square8,95 -square(X,Y) :- Y is X*X.square8,95 -plus2(X,Y,Z,A) :- A is X+Y+Z.plus210,121 -plus2(X,Y,Z,A) :- A is X+Y+Z.plus210,121 -plus2(X,Y,Z,A) :- A is X+Y+Z.plus210,121 -t1(X,Y) :- mapargs(double, X, Y).t112,152 -t1(X,Y) :- mapargs(double, X, Y).t112,152 -t1(X,Y) :- mapargs(double, X, Y).t112,152 -t1(X,Y) :- mapargs(double, X, Y).t112,152 -t1(X,Y) :- mapargs(double, X, Y).t112,152 -t1 :- t1(a(1,2,3,4,5),S), writeln(S).t114,187 -t2(G, X,Y) :- mapargs(G, X, Y).t216,226 -t2(G, X,Y) :- mapargs(G, X, Y).t216,226 -t2(G, X,Y) :- mapargs(G, X, Y).t216,226 -t2(G, X,Y) :- mapargs(G, X, Y).t216,226 -t2(G, X,Y) :- mapargs(G, X, Y).t216,226 -t2 :- t2(double, a(1,2,3,4,5),S), writeln(S).t218,259 -t3(X,Y,Z) :- mapargs(ds, X, Y, Z).t321,307 -t3(X,Y,Z) :- mapargs(ds, X, Y, Z).t321,307 -t3(X,Y,Z) :- mapargs(ds, X, Y, Z).t321,307 -t3(X,Y,Z) :- mapargs(ds, X, Y, Z).t321,307 -t3(X,Y,Z) :- mapargs(ds, X, Y, Z).t321,307 -t3 :- t3(a(1,2,3,4,5),S,T), writeln(S:T).t323,343 -t4(G, X,Y,Z) :- mapargs(G, X, Y, Z).t426,387 -t4(G, X,Y,Z) :- mapargs(G, X, Y, Z).t426,387 -t4(G, X,Y,Z) :- mapargs(G, X, Y, Z).t426,387 -t4(G, X,Y,Z) :- mapargs(G, X, Y, Z).t426,387 -t4(G, X,Y,Z) :- mapargs(G, X, Y, Z).t426,387 -t4 :- t4(ds, a(1,2,3,4,5),S,T), writeln(S:T).t428,425 -t5(X) :- mapargs(integer, X).t530,472 -t5(X) :- mapargs(integer, X).t530,472 -t5(X) :- mapargs(integer, X).t530,472 -t5(X) :- mapargs(integer, X).t530,472 -t5(X) :- mapargs(integer, X).t530,472 -t5 :- t5(a(1,2,3,4,5)), writeln(ok).t532,503 -t6(G, X) :- mapargs(G, X).t634,541 -t6(G, X) :- mapargs(G, X).t634,541 -t6(G, X) :- mapargs(G, X).t634,541 -t6(G, X) :- mapargs(G, X).t634,541 -t6(G, X) :- mapargs(G, X).t634,541 -t6 :- t6(integer, a(1,2,3,4,5)), writeln(ok).t636,569 -t7(X, S) :- foldargs(plus, X, 0, S).t738,616 -t7(X, S) :- foldargs(plus, X, 0, S).t738,616 -t7(X, S) :- foldargs(plus, X, 0, S).t738,616 -t7(X, S) :- foldargs(plus, X, 0, S).t738,616 -t7(X, S) :- foldargs(plus, X, 0, S).t738,616 -t7 :- t7(a(1,2,3,4,5), S), writeln(S).t740,654 -t8(G, X, S) :- foldargs(G, X, 0, S).t842,694 -t8(G, X, S) :- foldargs(G, X, 0, S).t842,694 -t8(G, X, S) :- foldargs(G, X, 0, S).t842,694 -t8(G, X, S) :- foldargs(G, X, 0, S).t842,694 -t8(G, X, S) :- foldargs(G, X, 0, S).t842,694 -t8 :- t8(plus, a(1,2,3,4,5), S), writeln(S).t844,733 -t9(X, Y, S) :- foldargs(plus2, X, Y, 0, S).t947,780 -t9(X, Y, S) :- foldargs(plus2, X, Y, 0, S).t947,780 -t9(X, Y, S) :- foldargs(plus2, X, Y, 0, S).t947,780 -t9(X, Y, S) :- foldargs(plus2, X, Y, 0, S).t947,780 -t9(X, Y, S) :- foldargs(plus2, X, Y, 0, S).t947,780 -t9 :- t9(a(1,2,3,4,5), a(1,2,3,4,5), S), writeln(S).t949,825 -t10(G, X, Y, S) :- foldargs(plus2, X, Y, 0, S).t1051,879 -t10(G, X, Y, S) :- foldargs(plus2, X, Y, 0, S).t1051,879 -t10(G, X, Y, S) :- foldargs(plus2, X, Y, 0, S).t1051,879 -t10(G, X, Y, S) :- foldargs(plus2, X, Y, 0, S).t1051,879 -t10(G, X, Y, S) :- foldargs(plus2, X, Y, 0, S).t1051,879 -t10 :- t10(plus2, a(1,2,3,4,5), a(1,2,3,4,5), S), writeln(S).t1053,928 - -library/examples/mat.yap,743 -main :-main9,117 -t1 :-t113,209 -t2 :-t217,271 -t3 :-t322,338 -t4 :-t428,432 -numbers(I0, I1, Vals) :-numbers35,597 -numbers(I0, I1, Vals) :-numbers35,597 -numbers(I0, I1, Vals) :-numbers35,597 -t5 :-t539,714 -t6 :-t644,863 -step(X,Y,Z,I,J) :-step58,1210 -step(X,Y,Z,I,J) :-step58,1210 -step(X,Y,Z,I,J) :-step58,1210 -addprod(X, Y, S0, S) :-addprod64,1392 -addprod(X, Y, S0, S) :-addprod64,1392 -addprod(X, Y, S0, S) :-addprod64,1392 -t7 :-t767,1431 -t7(Len) :-t770,1447 -t7(Len) :-t770,1447 -t7(Len) :-t770,1447 -step(X,Y,Z,I,J,S0,SF) :-step82,1778 -step(X,Y,Z,I,J,S0,SF) :-step82,1778 -step(X,Y,Z,I,J,S0,SF) :-step82,1778 -t8 :-t890,1981 -t9 :-t9101,2142 -t10 :-t10109,2323 -t11 :-t11119,2471 -t12 :-t12129,2607 - -library/exo_interval.yap,2250 -max(X, G) :-max106,2333 -max(X, G) :-max106,2333 -max(X, G) :-max106,2333 -min(X, G) :-min110,2386 -min(X, G) :-min110,2386 -min(X, G) :-min110,2386 -max(X) :-max114,2439 -max(X) :-max114,2439 -max(X) :-max114,2439 -maximum(X) :-maximum117,2479 -maximum(X) :-maximum117,2479 -maximum(X) :-maximum117,2479 -any(X) :-any120,2527 -any(X) :-any120,2527 -any(X) :-any120,2527 -min(X) :-min123,2567 -min(X) :-min123,2567 -min(X) :-min123,2567 -minimum(X) :-minimum126,2607 -minimum(X) :-minimum126,2607 -minimum(X) :-minimum126,2607 -least(X) :-least129,2655 -least(X) :-least129,2655 -least(X) :-least129,2655 -attribute_goals(X) -->attribute_goals168,3239 -attribute_goals(X) -->attribute_goals168,3239 -attribute_goals(X) -->attribute_goals168,3239 -range_min(Y, _X) -->range_min180,3553 -range_min(Y, _X) -->range_min180,3553 -range_min(Y, _X) -->range_min180,3553 -range_min(Y, X) -->range_min183,3595 -range_min(Y, X) -->range_min183,3595 -range_min(Y, X) -->range_min183,3595 -range_max(Y, _X) -->range_max186,3627 -range_max(Y, _X) -->range_max186,3627 -range_max(Y, _X) -->range_max186,3627 -range_max(Y, X) -->range_max189,3669 -range_max(Y, X) -->range_max189,3669 -range_max(Y, X) -->range_max189,3669 -range_op(Y, _X) -->range_op192,3701 -range_op(Y, _X) -->range_op192,3701 -range_op(Y, _X) -->range_op192,3701 -range_op(Y, X) -->range_op195,3742 -range_op(Y, X) -->range_op195,3742 -range_op(Y, X) -->range_op195,3742 -insert_atts(V, Att) :-insert_atts199,3789 -insert_atts(V, Att) :-insert_atts199,3789 -insert_atts(V, Att) :-insert_atts199,3789 -expand_atts(i(A1, B1, C1), i(A2, B2, C2), i(A3,B3,C3)) :-expand_atts210,4029 -expand_atts(i(A1, B1, C1), i(A2, B2, C2), i(A3,B3,C3)) :-expand_atts210,4029 -expand_atts(i(A1, B1, C1), i(A2, B2, C2), i(A3,B3,C3)) :-expand_atts210,4029 -expand_min(A1, A2, A3) :-expand_min215,4162 -expand_min(A1, A2, A3) :-expand_min215,4162 -expand_min(A1, A2, A3) :-expand_min215,4162 -expand_max(A1, A2, A3) :-expand_max222,4309 -expand_max(A1, A2, A3) :-expand_max222,4309 -expand_max(A1, A2, A3) :-expand_max222,4309 -expand_op(A1, A2, A3) :-expand_op229,4456 -expand_op(A1, A2, A3) :-expand_op229,4456 -expand_op(A1, A2, A3) :-expand_op229,4456 - -library/expand_macros.yap,10705 -:- multifile allowed_module/2.multifile32,766 -:- multifile allowed_module/2.multifile32,766 -:- dynamic number_of_expansions/1.dynamic34,798 -:- dynamic number_of_expansions/1.dynamic34,798 -number_of_expansions(0).number_of_expansions36,834 -number_of_expansions(0).number_of_expansions36,834 -compile_aux([Clause|Clauses], Module) :-compile_aux44,917 -compile_aux([Clause|Clauses], Module) :-compile_aux44,917 -compile_aux([Clause|Clauses], Module) :-compile_aux44,917 -compile_term([], _).compile_term62,1330 -compile_term([], _).compile_term62,1330 -compile_term([Clause|Clauses], Module) :-compile_term63,1351 -compile_term([Clause|Clauses], Module) :-compile_term63,1351 -compile_term([Clause|Clauses], Module) :-compile_term63,1351 -append_args(Term, Args, NewTerm) :-append_args67,1457 -append_args(Term, Args, NewTerm) :-append_args67,1457 -append_args(Term, Args, NewTerm) :-append_args67,1457 -aux_preds(Module:Meta, MetaVars, Pred, PredVars, Proto, _, OModule) :- !,aux_preds72,1584 -aux_preds(Module:Meta, MetaVars, Pred, PredVars, Proto, _, OModule) :- !,aux_preds72,1584 -aux_preds(Module:Meta, MetaVars, Pred, PredVars, Proto, _, OModule) :- !,aux_preds72,1584 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto, Module, Module) :-aux_preds74,1726 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto, Module, Module) :-aux_preds74,1726 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto, Module, Module) :-aux_preds74,1726 -aux_args([], [], [], [], []).aux_args80,1923 -aux_args([], [], [], [], []).aux_args80,1923 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args81,1953 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args81,1953 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args81,1953 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args84,2087 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args84,2087 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args84,2087 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2219 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2219 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2219 -transformation_id(Id) :-transformation_id91,2365 -transformation_id(Id) :-transformation_id91,2365 -transformation_id(Id) :-transformation_id91,2365 -harmless_dcgexception(instantiation_error). % ex: phrase(([1],x:X,[3]),L)harmless_dcgexception97,2479 -harmless_dcgexception(instantiation_error). % ex: phrase(([1],x:X,[3]),L)harmless_dcgexception97,2479 -harmless_dcgexception(type_error(callable,_)). % ex: phrase(27,L)harmless_dcgexception98,2553 -harmless_dcgexception(type_error(callable,_)). % ex: phrase(27,L)harmless_dcgexception98,2553 -allowed_expansion(QExpand) :-allowed_expansion101,2621 -allowed_expansion(QExpand) :-allowed_expansion101,2621 -allowed_expansion(QExpand) :-allowed_expansion101,2621 -goal_expansion_allowed(Pred, Mod) :-goal_expansion_allowed105,2729 -goal_expansion_allowed(Pred, Mod) :-goal_expansion_allowed105,2729 -goal_expansion_allowed(Pred, Mod) :-goal_expansion_allowed105,2729 -allowed_module(checklist(_,_),expand_macros).allowed_module112,2867 -allowed_module(checklist(_,_),expand_macros).allowed_module112,2867 -allowed_module(checklist(_,_),apply_macros).allowed_module113,2913 -allowed_module(checklist(_,_),apply_macros).allowed_module113,2913 -allowed_module(checklist(_,_),maplist).allowed_module114,2958 -allowed_module(checklist(_,_),maplist).allowed_module114,2958 -allowed_module(maplist(_,_),expand_macros).allowed_module115,2998 -allowed_module(maplist(_,_),expand_macros).allowed_module115,2998 -allowed_module(maplist(_,_),apply_macros).allowed_module116,3042 -allowed_module(maplist(_,_),apply_macros).allowed_module116,3042 -allowed_module(maplist(_,_),maplist).allowed_module117,3085 -allowed_module(maplist(_,_),maplist).allowed_module117,3085 -allowed_module(maplist(_,_,_),expand_macros).allowed_module118,3123 -allowed_module(maplist(_,_,_),expand_macros).allowed_module118,3123 -allowed_module(maplist(_,_,_),apply_macros).allowed_module119,3169 -allowed_module(maplist(_,_,_),apply_macros).allowed_module119,3169 -allowed_module(maplist(_,_,_),maplist).allowed_module120,3214 -allowed_module(maplist(_,_,_),maplist).allowed_module120,3214 -allowed_module(maplist(_,_,_,_),expand_macros).allowed_module121,3254 -allowed_module(maplist(_,_,_,_),expand_macros).allowed_module121,3254 -allowed_module(maplist(_,_,_,_),apply_macros).allowed_module122,3302 -allowed_module(maplist(_,_,_,_),apply_macros).allowed_module122,3302 -allowed_module(maplist(_,_,_,_),maplist).allowed_module123,3349 -allowed_module(maplist(_,_,_,_),maplist).allowed_module123,3349 -allowed_module(maplist(_,_,_,_,_),expand_macros).allowed_module124,3391 -allowed_module(maplist(_,_,_,_,_),expand_macros).allowed_module124,3391 -allowed_module(maplist(_,_,_,_,_),apply_macros).allowed_module125,3441 -allowed_module(maplist(_,_,_,_,_),apply_macros).allowed_module125,3441 -allowed_module(maplist(_,_,_,_,_),maplist).allowed_module126,3490 -allowed_module(maplist(_,_,_,_,_),maplist).allowed_module126,3490 -allowed_module(maplist(_,_,_,_,_,_),expand_macros).allowed_module127,3534 -allowed_module(maplist(_,_,_,_,_,_),expand_macros).allowed_module127,3534 -allowed_module(maplist(_,_,_,_,_,_),apply_macros).allowed_module128,3586 -allowed_module(maplist(_,_,_,_,_,_),apply_macros).allowed_module128,3586 -allowed_module(maplist(_,_,_,_,_,_),maplist).allowed_module129,3637 -allowed_module(maplist(_,_,_,_,_,_),maplist).allowed_module129,3637 -allowed_module(selectlist(_,_,_),expand_macros).allowed_module130,3683 -allowed_module(selectlist(_,_,_),expand_macros).allowed_module130,3683 -allowed_module(selectlist(_,_,_),apply_macros).allowed_module131,3732 -allowed_module(selectlist(_,_,_),apply_macros).allowed_module131,3732 -allowed_module(selectlist(_,_,_),maplist).allowed_module132,3780 -allowed_module(selectlist(_,_,_),maplist).allowed_module132,3780 -allowed_module(include(_,_,_),expand_macros).allowed_module133,3823 -allowed_module(include(_,_,_),expand_macros).allowed_module133,3823 -allowed_module(include(_,_,_),apply_macros).allowed_module134,3869 -allowed_module(include(_,_,_),apply_macros).allowed_module134,3869 -allowed_module(include(_,_,_),maplist).allowed_module135,3914 -allowed_module(include(_,_,_),maplist).allowed_module135,3914 -allowed_module(exclude(_,_,_),expand_macros).allowed_module136,3954 -allowed_module(exclude(_,_,_),expand_macros).allowed_module136,3954 -allowed_module(exclude(_,_,_),apply_macros).allowed_module137,4000 -allowed_module(exclude(_,_,_),apply_macros).allowed_module137,4000 -allowed_module(exclude(_,_,_),maplist).allowed_module138,4045 -allowed_module(exclude(_,_,_),maplist).allowed_module138,4045 -allowed_module(partition(_,_,_,_),expand_macros).allowed_module139,4085 -allowed_module(partition(_,_,_,_),expand_macros).allowed_module139,4085 -allowed_module(partition(_,_,_,_),apply_macros).allowed_module140,4135 -allowed_module(partition(_,_,_,_),apply_macros).allowed_module140,4135 -allowed_module(partition(_,_,_,_),maplist).allowed_module141,4184 -allowed_module(partition(_,_,_,_),maplist).allowed_module141,4184 -allowed_module(partition(_,_,_,_,_),expand_macros).allowed_module142,4228 -allowed_module(partition(_,_,_,_,_),expand_macros).allowed_module142,4228 -allowed_module(partition(_,_,_,_,_),apply_macros).allowed_module143,4280 -allowed_module(partition(_,_,_,_,_),apply_macros).allowed_module143,4280 -allowed_module(partition(_,_,_,_,_),maplist).allowed_module144,4331 -allowed_module(partition(_,_,_,_,_),maplist).allowed_module144,4331 -allowed_module(convlist(_,_,_),expand_macros).allowed_module145,4377 -allowed_module(convlist(_,_,_),expand_macros).allowed_module145,4377 -allowed_module(convlist(_,_,_),apply_macros).allowed_module146,4424 -allowed_module(convlist(_,_,_),apply_macros).allowed_module146,4424 -allowed_module(convlist(_,_,_),maplist).allowed_module147,4470 -allowed_module(convlist(_,_,_),maplist).allowed_module147,4470 -allowed_module(sumlist(_,_,_,_),expand_macros).allowed_module148,4511 -allowed_module(sumlist(_,_,_,_),expand_macros).allowed_module148,4511 -allowed_module(sumlist(_,_,_,_),apply_macros).allowed_module149,4559 -allowed_module(sumlist(_,_,_,_),apply_macros).allowed_module149,4559 -allowed_module(sumlist(_,_,_,_),maplist).allowed_module150,4606 -allowed_module(sumlist(_,_,_,_),maplist).allowed_module150,4606 -allowed_module(mapargs(_,_,_),expand_macros).allowed_module151,4648 -allowed_module(mapargs(_,_,_),expand_macros).allowed_module151,4648 -allowed_module(mapargs(_,_,_),apply_macros).allowed_module152,4694 -allowed_module(mapargs(_,_,_),apply_macros).allowed_module152,4694 -allowed_module(mapargs(_,_,_),maplist).allowed_module153,4739 -allowed_module(mapargs(_,_,_),maplist).allowed_module153,4739 -allowed_module(sumargs(_,_,_,_),expand_macros).allowed_module154,4779 -allowed_module(sumargs(_,_,_,_),expand_macros).allowed_module154,4779 -allowed_module(sumargs(_,_,_,_),apply_macros).allowed_module155,4827 -allowed_module(sumargs(_,_,_,_),apply_macros).allowed_module155,4827 -allowed_module(sumargs(_,_,_,_),maplist).allowed_module156,4874 -allowed_module(sumargs(_,_,_,_),maplist).allowed_module156,4874 -allowed_module(mapnodes(_,_,_),expand_macros).allowed_module157,4916 -allowed_module(mapnodes(_,_,_),expand_macros).allowed_module157,4916 -allowed_module(mapnodes(_,_,_),apply_macros).allowed_module158,4963 -allowed_module(mapnodes(_,_,_),apply_macros).allowed_module158,4963 -allowed_module(mapnodes(_,_,_),maplist).allowed_module159,5009 -allowed_module(mapnodes(_,_,_),maplist).allowed_module159,5009 -allowed_module(checknodes(_,_),expand_macros).allowed_module160,5050 -allowed_module(checknodes(_,_),expand_macros).allowed_module160,5050 -allowed_module(checknodes(_,_),apply_macros).allowed_module161,5097 -allowed_module(checknodes(_,_),apply_macros).allowed_module161,5097 -allowed_module(checknodes(_,_),maplist).allowed_module162,5143 -allowed_module(checknodes(_,_),maplist).allowed_module162,5143 -allowed_module(sumnodes(_,_,_,_),expand_macros).allowed_module163,5184 -allowed_module(sumnodes(_,_,_,_),expand_macros).allowed_module163,5184 -allowed_module(sumnodes(_,_,_,_),apply_macros).allowed_module164,5233 -allowed_module(sumnodes(_,_,_,_),apply_macros).allowed_module164,5233 -allowed_module(sumnodes(_,_,_,_),maplist).allowed_module165,5281 -allowed_module(sumnodes(_,_,_,_),maplist).allowed_module165,5281 - -library/flags.yap,14178 -flag_define(FlagName, InputOptions):-flag_define253,10831 -flag_define(FlagName, InputOptions):-flag_define253,10831 -flag_define(FlagName, InputOptions):-flag_define253,10831 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description):-flag_define265,11459 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description):-flag_define265,11459 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description):-flag_define265,11459 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, MHandler):-flag_define268,11623 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, MHandler):-flag_define268,11623 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, MHandler):-flag_define268,11623 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-flag_define299,13971 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-flag_define299,13971 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-flag_define299,13971 -flag_groups(FlagGroups):-flag_groups302,14266 -flag_groups(FlagGroups):-flag_groups302,14266 -flag_groups(FlagGroups):-flag_groups302,14266 -flag_group_chk(FlagGroup):-flag_group_chk305,14471 -flag_group_chk(FlagGroup):-flag_group_chk305,14471 -flag_group_chk(FlagGroup):-flag_group_chk305,14471 -flag_type(Type):-flag_type309,14625 -flag_type(Type):-flag_type309,14625 -flag_type(Type):-flag_type309,14625 -flags_type_definition(nonvar, nonvar, true).flags_type_definition313,14744 -flags_type_definition(nonvar, nonvar, true).flags_type_definition313,14744 -flags_type_definition(atom, atom, true).flags_type_definition314,14789 -flags_type_definition(atom, atom, true).flags_type_definition314,14789 -flags_type_definition(atomic, atomic, true).flags_type_definition315,14830 -flags_type_definition(atomic, atomic, true).flags_type_definition315,14830 -flags_type_definition(integer, integer, true).flags_type_definition316,14875 -flags_type_definition(integer, integer, true).flags_type_definition316,14875 -flags_type_definition(float, float, true).flags_type_definition317,14922 -flags_type_definition(float, float, true).flags_type_definition317,14922 -flags_type_definition(number, number, true).flags_type_definition318,14965 -flags_type_definition(number, number, true).flags_type_definition318,14965 -flags_type_definition(ground, ground, true).flags_type_definition319,15010 -flags_type_definition(ground, ground, true).flags_type_definition319,15010 -flags_type_definition(compound, compound, true).flags_type_definition320,15055 -flags_type_definition(compound, compound, true).flags_type_definition320,15055 -flags_type_definition(is_list, is_list, true).flags_type_definition321,15104 -flags_type_definition(is_list, is_list, true).flags_type_definition321,15104 -flags_type_definition(callable, callable, true).flags_type_definition322,15151 -flags_type_definition(callable, callable, true).flags_type_definition322,15151 -flags_type_definition(in_interval(Type, Interval), in_interval(Type, Interval), in_interval(Type, Interval)).flags_type_definition323,15200 -flags_type_definition(in_interval(Type, Interval), in_interval(Type, Interval), in_interval(Type, Interval)).flags_type_definition323,15200 -flags_type_definition(integer_in_interval(Interval), in_interval(integer, Interval), in_interval(integer, Interval)).flags_type_definition324,15310 -flags_type_definition(integer_in_interval(Interval), in_interval(integer, Interval), in_interval(integer, Interval)).flags_type_definition324,15310 -flags_type_definition(positive_integer, in_interval(integer, (0, (+inf))), true).flags_type_definition325,15428 -flags_type_definition(positive_integer, in_interval(integer, (0, (+inf))), true).flags_type_definition325,15428 -flags_type_definition(non_negative_integer, in_interval(integer, ([0], (+inf))), true).flags_type_definition326,15510 -flags_type_definition(non_negative_integer, in_interval(integer, ([0], (+inf))), true).flags_type_definition326,15510 -flags_type_definition(negative_integer, in_interval(integer, ((-inf), 0)), true).flags_type_definition327,15598 -flags_type_definition(negative_integer, in_interval(integer, ((-inf), 0)), true).flags_type_definition327,15598 -flags_type_definition(float_in_interval(Interval), in_interval(float, Interval), in_interval(float, Interval)).flags_type_definition328,15680 -flags_type_definition(float_in_interval(Interval), in_interval(float, Interval), in_interval(float, Interval)).flags_type_definition328,15680 -flags_type_definition(positive_float, in_interval(float, (0.0, (+inf))), true).flags_type_definition329,15792 -flags_type_definition(positive_float, in_interval(float, (0.0, (+inf))), true).flags_type_definition329,15792 -flags_type_definition(non_negative_float, in_interval(float, ([0.0], (+inf))), true).flags_type_definition330,15872 -flags_type_definition(non_negative_float, in_interval(float, ([0.0], (+inf))), true).flags_type_definition330,15872 -flags_type_definition(negative_float, in_interval(float, ((-inf), 0.0)), true).flags_type_definition331,15958 -flags_type_definition(negative_float, in_interval(float, ((-inf), 0.0)), true).flags_type_definition331,15958 -flags_type_definition(number_in_interval(Interval), in_interval(number, Interval), in_interval(number, Interval)).flags_type_definition332,16038 -flags_type_definition(number_in_interval(Interval), in_interval(number, Interval), in_interval(number, Interval)).flags_type_definition332,16038 -flags_type_definition(positive_number, in_interval(number, (0.0, (+inf))), true).flags_type_definition333,16153 -flags_type_definition(positive_number, in_interval(number, (0.0, (+inf))), true).flags_type_definition333,16153 -flags_type_definition(non_negative_number, in_interval(number, ([0.0], (+inf))), true).flags_type_definition334,16235 -flags_type_definition(non_negative_number, in_interval(number, ([0.0], (+inf))), true).flags_type_definition334,16235 -flags_type_definition(negative_number, in_interval(number, ((-inf), 0.0)), true).flags_type_definition335,16323 -flags_type_definition(negative_number, in_interval(number, ((-inf), 0.0)), true).flags_type_definition335,16323 -flags_type_definition(in_domain(Domain), in_domain(Domain), in_domain(Domain)).flags_type_definition336,16405 -flags_type_definition(in_domain(Domain), in_domain(Domain), in_domain(Domain)).flags_type_definition336,16405 -flags_type_definition(boolean, in_domain([true, false]), true).flags_type_definition337,16485 -flags_type_definition(boolean, in_domain([true, false]), true).flags_type_definition337,16485 -flags_type_definition(switch, in_domain([on, off]), true).flags_type_definition338,16549 -flags_type_definition(switch, in_domain([on, off]), true).flags_type_definition338,16549 -in_domain(Domain):-in_domain340,16609 -in_domain(Domain):-in_domain340,16609 -in_domain(Domain):-in_domain340,16609 -in_domain(Domain, Value):-in_domain343,16666 -in_domain(Domain, Value):-in_domain343,16666 -in_domain(Domain, Value):-in_domain343,16666 -in_interval(Type, Interval):-in_interval347,16739 -in_interval(Type, Interval):-in_interval347,16739 -in_interval(Type, Interval):-in_interval347,16739 -in_interval(Type, Interval):-in_interval351,16848 -in_interval(Type, Interval):-in_interval351,16848 -in_interval(Type, Interval):-in_interval351,16848 -in_interval_conj(_Type, []).in_interval_conj354,16917 -in_interval_conj(_Type, []).in_interval_conj354,16917 -in_interval_conj(Type, [Interval|Rest]):-in_interval_conj355,16946 -in_interval_conj(Type, [Interval|Rest]):-in_interval_conj355,16946 -in_interval_conj(Type, [Interval|Rest]):-in_interval_conj355,16946 -in_interval_single(Type, ([Min], [Max])):-in_interval_single359,17059 -in_interval_single(Type, ([Min], [Max])):-in_interval_single359,17059 -in_interval_single(Type, ([Min], [Max])):-in_interval_single359,17059 -in_interval_single(Type, ([Min], Max)):-in_interval_single364,17158 -in_interval_single(Type, ([Min], Max)):-in_interval_single364,17158 -in_interval_single(Type, ([Min], Max)):-in_interval_single364,17158 -in_interval_single(Type, (Min, [Max])):-in_interval_single369,17261 -in_interval_single(Type, (Min, [Max])):-in_interval_single369,17261 -in_interval_single(Type, (Min, [Max])):-in_interval_single369,17261 -in_interval_single(Type, (Min, Max)):-in_interval_single374,17364 -in_interval_single(Type, (Min, Max)):-in_interval_single374,17364 -in_interval_single(Type, (Min, Max)):-in_interval_single374,17364 -type_or_inf(Type, Value):-type_or_inf380,17488 -type_or_inf(Type, Value):-type_or_inf380,17488 -type_or_inf(Type, Value):-type_or_inf380,17488 -type_or_inf(Type, Value):-type_or_inf383,17568 -type_or_inf(Type, Value):-type_or_inf383,17568 -type_or_inf(Type, Value):-type_or_inf383,17568 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -in_interval(Type, [Interval|_Rest], Value):-in_interval388,17695 -in_interval(Type, [Interval|_Rest], Value):-in_interval388,17695 -in_interval(Type, [Interval|_Rest], Value):-in_interval388,17695 -in_interval(Type, [_Interval|Rest], Value):-in_interval390,17781 -in_interval(Type, [_Interval|Rest], Value):-in_interval390,17781 -in_interval(Type, [_Interval|Rest], Value):-in_interval390,17781 -in_interval(Type, ([Min], [Max]), Value):-in_interval393,17861 -in_interval(Type, ([Min], [Max]), Value):-in_interval393,17861 -in_interval(Type, ([Min], [Max]), Value):-in_interval393,17861 -in_interval(Type, ([Min], Max), Value):-in_interval398,17961 -in_interval(Type, ([Min], Max), Value):-in_interval398,17961 -in_interval(Type, ([Min], Max), Value):-in_interval398,17961 -in_interval(Type, (Min, [Max]), Value):-in_interval403,18058 -in_interval(Type, (Min, [Max]), Value):-in_interval403,18058 -in_interval(Type, (Min, [Max]), Value):-in_interval403,18058 -in_interval(Type, (Min, Max), Value):-in_interval408,18155 -in_interval(Type, (Min, Max), Value):-in_interval408,18155 -in_interval(Type, (Min, Max), Value):-in_interval408,18155 -validate_type(Type):-validate_type413,18246 -validate_type(Type):-validate_type413,18246 -validate_type(Type):-validate_type413,18246 -validate(FlagType, Handler, Value, FlagName):-validate417,18341 -validate(FlagType, Handler, Value, FlagName):-validate417,18341 -validate(FlagType, Handler, Value, FlagName):-validate417,18341 -validate(FlagType, Handler, Value, FlagName):-validate425,18663 -validate(FlagType, Handler, Value, FlagName):-validate425,18663 -validate(FlagType, Handler, Value, FlagName):-validate425,18663 -flag_set(FlagName, FlagValue):-flag_set433,19049 -flag_set(FlagName, FlagValue):-flag_set433,19049 -flag_set(FlagName, FlagValue):-flag_set433,19049 -flag_set(FlagName, OldValue, FlagValue):-flag_set435,19125 -flag_set(FlagName, OldValue, FlagValue):-flag_set435,19125 -flag_set(FlagName, OldValue, FlagValue):-flag_set435,19125 -flag_set(FlagName, OldValue, FlagValue):-flag_set450,19770 -flag_set(FlagName, OldValue, FlagValue):-flag_set450,19770 -flag_set(FlagName, OldValue, FlagValue):-flag_set450,19770 -flag_unsafe_set(FlagName, FlagValue):-flag_unsafe_set453,19940 -flag_unsafe_set(FlagName, FlagValue):-flag_unsafe_set453,19940 -flag_unsafe_set(FlagName, FlagValue):-flag_unsafe_set453,19940 -flag_get(FlagName, FlagValue):-flag_get457,20080 -flag_get(FlagName, FlagValue):-flag_get457,20080 -flag_get(FlagName, FlagValue):-flag_get457,20080 -flag_get(FlagName, FlagValue):-flag_get460,20269 -flag_get(FlagName, FlagValue):-flag_get460,20269 -flag_get(FlagName, FlagValue):-flag_get460,20269 -flags_reset:-flags_reset463,20347 -flags_reset(FlagGroup):-flags_reset475,20675 -flags_reset(FlagGroup):-flags_reset475,20675 -flags_reset(FlagGroup):-flags_reset475,20675 -flags_reset(_).flags_reset485,21006 -flags_reset(_).flags_reset485,21006 -flags_save(FileName):-flags_save487,21023 -flags_save(FileName):-flags_save487,21023 -flags_save(FileName):-flags_save487,21023 -flags_save(_FileName):-flags_save494,21266 -flags_save(_FileName):-flags_save494,21266 -flags_save(_FileName):-flags_save494,21266 -flags_load(FileName):-flags_load497,21299 -flags_load(FileName):-flags_load497,21299 -flags_load(FileName):-flags_load497,21299 -flags_load(_FileName):-flags_load503,21493 -flags_load(_FileName):-flags_load503,21493 -flags_load(_FileName):-flags_load503,21493 -clean_and_throw(Action, Exception):-clean_and_throw506,21526 -clean_and_throw(Action, Exception):-clean_and_throw506,21526 -clean_and_throw(Action, Exception):-clean_and_throw506,21526 -flag_help:-flag_help510,21594 -flag_help_types:-flag_help_types533,23140 -flag_help_handler:-flag_help_handler539,23262 -flags_print:-flags_print568,25400 -flags_print(Group):-flags_print571,25490 -flags_print(Group):-flags_print571,25490 -flags_print(Group):-flags_print571,25490 -flags_print(FlagGroup):-flags_print574,25622 -flags_print(FlagGroup):-flags_print574,25622 -flags_print(FlagGroup):-flags_print574,25622 -flags_print(_).flags_print580,25917 -flags_print(_).flags_print580,25917 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag582,25934 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag582,25934 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag582,25934 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag585,26169 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag585,26169 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag585,26169 - -library/gensym.yap,452 -:- dynamic gensym_key/2.dynamic27,470 -:- dynamic gensym_key/2.dynamic27,470 -gensym(Atom, New) :-gensym29,496 -gensym(Atom, New) :-gensym29,496 -gensym(Atom, New) :-gensym29,496 -gensym(Atom, New) :-gensym34,625 -gensym(Atom, New) :-gensym34,625 -gensym(Atom, New) :-gensym34,625 -reset_gensym(Atom) :-reset_gensym38,704 -reset_gensym(Atom) :-reset_gensym38,704 -reset_gensym(Atom) :-reset_gensym38,704 -reset_gensym :-reset_gensym41,757 - -library/hacks.yap,1174 -stack_dump :-stack_dump38,733 -stack_dump(Max) :-stack_dump41,765 -stack_dump(Max) :-stack_dump41,765 -stack_dump(Max) :-stack_dump41,765 -run_formats([], _).run_formats51,1139 -run_formats([], _).run_formats51,1139 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1159 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1159 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1159 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm56,1270 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm56,1270 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm56,1270 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm61,1409 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm61,1409 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm61,1409 -virtual_alarm(Interval.USecs, Goal, Left.LUSecs) :-virtual_alarm65,1543 -virtual_alarm(Interval.USecs, Goal, Left.LUSecs) :-virtual_alarm65,1543 -virtual_alarm(Interval.USecs, Goal, Left.LUSecs) :-virtual_alarm65,1543 -fully_strip_module(T,M,S) :-fully_strip_module69,1677 -fully_strip_module(T,M,S) :-fully_strip_module69,1677 -fully_strip_module(T,M,S) :-fully_strip_module69,1677 - -library/heaps.yap,6332 -add_to_heap(t(M,[],OldTree), Key, Datum, t(N,[],NewTree)) :- !,add_to_heap119,4571 -add_to_heap(t(M,[],OldTree), Key, Datum, t(N,[],NewTree)) :- !,add_to_heap119,4571 -add_to_heap(t(M,[],OldTree), Key, Datum, t(N,[],NewTree)) :- !,add_to_heap119,4571 -add_to_heap(t(M,[H|T],OldTree), Key, Datum, t(N,T,NewTree)) :-add_to_heap122,4693 -add_to_heap(t(M,[H|T],OldTree), Key, Datum, t(N,T,NewTree)) :-add_to_heap122,4693 -add_to_heap(t(M,[H|T],OldTree), Key, Datum, t(N,T,NewTree)) :-add_to_heap122,4693 -add_to_heap(1, Key, Datum, _, t(Key,Datum,t,t)) :- !.add_to_heap127,4816 -add_to_heap(1, Key, Datum, _, t(Key,Datum,t,t)) :- !.add_to_heap127,4816 -add_to_heap(1, Key, Datum, _, t(Key,Datum,t,t)) :- !.add_to_heap127,4816 -add_to_heap(N, Key, Datum, t(K1,D1,L1,R1), t(K2,D2,L2,R2)) :-add_to_heap128,4870 -add_to_heap(N, Key, Datum, t(K1,D1,L1,R1), t(K2,D2,L2,R2)) :-add_to_heap128,4870 -add_to_heap(N, Key, Datum, t(K1,D1,L1,R1), t(K2,D2,L2,R2)) :-add_to_heap128,4870 -add_to_heap(0, N, Key, Datum, L1, R, L2, R) :- !,add_to_heap136,5114 -add_to_heap(0, N, Key, Datum, L1, R, L2, R) :- !,add_to_heap136,5114 -add_to_heap(0, N, Key, Datum, L1, R, L2, R) :- !,add_to_heap136,5114 -add_to_heap(1, N, Key, Datum, L, R1, L, R2) :- !,add_to_heap138,5201 -add_to_heap(1, N, Key, Datum, L, R1, L, R2) :- !,add_to_heap138,5201 -add_to_heap(1, N, Key, Datum, L, R1, L, R2) :- !,add_to_heap138,5201 -sort2(Key1, Datum1, Key2, Datum2, Key1, Datum1, Key2, Datum2) :-sort2142,5290 -sort2(Key1, Datum1, Key2, Datum2, Key1, Datum1, Key2, Datum2) :-sort2142,5290 -sort2(Key1, Datum1, Key2, Datum2, Key1, Datum1, Key2, Datum2) :-sort2142,5290 -sort2(Key1, Datum1, Key2, Datum2, Key2, Datum2, Key1, Datum1).sort2145,5374 -sort2(Key1, Datum1, Key2, Datum2, Key2, Datum2, Key1, Datum1).sort2145,5374 -get_from_heap(t(N,Free,t(Key,Datum,L,R)), Key, Datum, t(M,[Hole|Free],Tree)) :-get_from_heap159,5952 -get_from_heap(t(N,Free,t(Key,Datum,L,R)), Key, Datum, t(M,[Hole|Free],Tree)) :-get_from_heap159,5952 -get_from_heap(t(N,Free,t(Key,Datum,L,R)), Key, Datum, t(M,[Hole|Free],Tree)) :-get_from_heap159,5952 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K2,D2,t(K1,D1,L1,R1),R3), N) :-repair_heap164,6077 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K2,D2,t(K1,D1,L1,R1),R3), N) :-repair_heap164,6077 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K2,D2,t(K1,D1,L1,R1),R3), N) :-repair_heap164,6077 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K1,D1,L3,t(K2,D2,L2,R2)), N) :- !,repair_heap169,6212 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K1,D1,L3,t(K2,D2,L2,R2)), N) :- !,repair_heap169,6212 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K1,D1,L3,t(K2,D2,L2,R2)), N) :- !,repair_heap169,6212 -repair_heap(t(K1,D1,L1,R1), t, t(K1,D1,L3,t), N) :- !,repair_heap172,6333 -repair_heap(t(K1,D1,L1,R1), t, t(K1,D1,L3,t), N) :- !,repair_heap172,6333 -repair_heap(t(K1,D1,L1,R1), t, t(K1,D1,L3,t), N) :- !,repair_heap172,6333 -repair_heap(t, t(K2,D2,L2,R2), t(K2,D2,t,R3), N) :- !,repair_heap175,6428 -repair_heap(t, t(K2,D2,L2,R2), t(K2,D2,t,R3), N) :- !,repair_heap175,6428 -repair_heap(t, t(K2,D2,L2,R2), t(K2,D2,t,R3), N) :- !,repair_heap175,6428 -repair_heap(t, t, t, 1) :- !.repair_heap178,6525 -repair_heap(t, t, t, 1) :- !.repair_heap178,6525 -repair_heap(t, t, t, 1) :- !.repair_heap178,6525 -heap_size(t(Size,_,_), Size).heap_size186,6661 -heap_size(t(Size,_,_), Size).heap_size186,6661 -heap_to_list(t(_,_,Tree), List) :-heap_to_list201,7252 -heap_to_list(t(_,_,Tree), List) :-heap_to_list201,7252 -heap_to_list(t(_,_,Tree), List) :-heap_to_list201,7252 -heap_tree_to_list(t, []) :- !.heap_tree_to_list205,7321 -heap_tree_to_list(t, []) :- !.heap_tree_to_list205,7321 -heap_tree_to_list(t, []) :- !.heap_tree_to_list205,7321 -heap_tree_to_list(t(Key,Datum,Lson,Rson), [Key-Datum|Merged]) :-heap_tree_to_list206,7352 -heap_tree_to_list(t(Key,Datum,Lson,Rson), [Key-Datum|Merged]) :-heap_tree_to_list206,7352 -heap_tree_to_list(t(Key,Datum,Lson,Rson), [Key-Datum|Merged]) :-heap_tree_to_list206,7352 -heap_tree_to_list([H1|T1], [H2|T2], [H2|T3]) :-heap_tree_to_list212,7527 -heap_tree_to_list([H1|T1], [H2|T2], [H2|T3]) :-heap_tree_to_list212,7527 -heap_tree_to_list([H1|T1], [H2|T2], [H2|T3]) :-heap_tree_to_list212,7527 -heap_tree_to_list([H1|T1], T2, [H1|T3]) :- !,heap_tree_to_list216,7627 -heap_tree_to_list([H1|T1], T2, [H1|T3]) :- !,heap_tree_to_list216,7627 -heap_tree_to_list([H1|T1], T2, [H1|T3]) :- !,heap_tree_to_list216,7627 -heap_tree_to_list([], T, T) :- !.heap_tree_to_list218,7705 -heap_tree_to_list([], T, T) :- !.heap_tree_to_list218,7705 -heap_tree_to_list([], T, T) :- !.heap_tree_to_list218,7705 -heap_tree_to_list(T, [], T).heap_tree_to_list219,7739 -heap_tree_to_list(T, [], T).heap_tree_to_list219,7739 -list_to_heap(List, Heap) :-list_to_heap232,8197 -list_to_heap(List, Heap) :-list_to_heap232,8197 -list_to_heap(List, Heap) :-list_to_heap232,8197 -list_to_heap([], N, Tree, t(N,[],Tree)) :- !.list_to_heap236,8260 -list_to_heap([], N, Tree, t(N,[],Tree)) :- !.list_to_heap236,8260 -list_to_heap([], N, Tree, t(N,[],Tree)) :- !.list_to_heap236,8260 -list_to_heap([Key-Datum|Rest], M, OldTree, Heap) :-list_to_heap237,8306 -list_to_heap([Key-Datum|Rest], M, OldTree, Heap) :-list_to_heap237,8306 -list_to_heap([Key-Datum|Rest], M, OldTree, Heap) :-list_to_heap237,8306 -min_of_heap(t(_,_,t(Key,Datum,_,_)), Key, Datum).min_of_heap257,8889 -min_of_heap(t(_,_,t(Key,Datum,_,_)), Key, Datum).min_of_heap257,8889 -min_of_heap(t(_,_,t(Key1,Datum1,Lson,Rson)), Key1, Datum1, Key2, Datum2) :-min_of_heap265,9196 -min_of_heap(t(_,_,t(Key1,Datum1,Lson,Rson)), Key1, Datum1, Key2, Datum2) :-min_of_heap265,9196 -min_of_heap(t(_,_,t(Key1,Datum1,Lson,Rson)), Key1, Datum1, Key2, Datum2) :-min_of_heap265,9196 -min_of_heap(t(Ka,_Da,_,_), t(Kb,Db,_,_), Kb, Db) :-min_of_heap269,9314 -min_of_heap(t(Ka,_Da,_,_), t(Kb,Db,_,_), Kb, Db) :-min_of_heap269,9314 -min_of_heap(t(Ka,_Da,_,_), t(Kb,Db,_,_), Kb, Db) :-min_of_heap269,9314 -min_of_heap(t(Ka,Da,_,_), _, Ka, Da).min_of_heap271,9380 -min_of_heap(t(Ka,Da,_,_), _, Ka, Da).min_of_heap271,9380 -min_of_heap(t, t(Kb,Db,_,_), Kb, Db).min_of_heap272,9418 -min_of_heap(t, t(Kb,Db,_,_), Kb, Db).min_of_heap272,9418 -empty_heap(t(0,[],t)).empty_heap279,9532 -empty_heap(t(0,[],t)).empty_heap279,9532 - -library/INDEX.pl,48888 -index(foreach,2,aggretate,library(aggregate)).index1,0 -index(foreach,2,aggretate,library(aggregate)).index1,0 -index(aggregate,3,aggretate,library(aggregate)).index2,47 -index(aggregate,3,aggretate,library(aggregate)).index2,47 -index(aggregate,4,aggretate,library(aggregate)).index3,96 -index(aggregate,4,aggretate,library(aggregate)).index3,96 -index(aggregate_all,3,aggretate,library(aggregate)).index4,145 -index(aggregate_all,3,aggretate,library(aggregate)).index4,145 -index(aggregate_all,4,aggretate,library(aggregate)).index5,198 -index(aggregate_all,4,aggretate,library(aggregate)).index5,198 -index(free_variables,4,aggretate,library(aggregate)).index6,251 -index(free_variables,4,aggretate,library(aggregate)).index6,251 -index(genarg,3,arg,library(arg)).index7,305 -index(genarg,3,arg,library(arg)).index7,305 -index(arg0,3,arg,library(arg)).index8,339 -index(arg0,3,arg,library(arg)).index8,339 -index(genarg0,3,arg,library(arg)).index9,371 -index(genarg0,3,arg,library(arg)).index9,371 -index(args,3,arg,library(arg)).index10,406 -index(args,3,arg,library(arg)).index10,406 -index(args0,3,arg,library(arg)).index11,438 -index(args0,3,arg,library(arg)).index11,438 -index(path_arg,3,arg,library(arg)).index12,471 -index(path_arg,3,arg,library(arg)).index12,471 -index(empty_assoc,1,assoc,library(assoc)).index13,507 -index(empty_assoc,1,assoc,library(assoc)).index13,507 -index(assoc_to_list,2,assoc,library(assoc)).index14,550 -index(assoc_to_list,2,assoc,library(assoc)).index14,550 -index(is_assoc,1,assoc,library(assoc)).index15,595 -index(is_assoc,1,assoc,library(assoc)).index15,595 -index(min_assoc,3,assoc,library(assoc)).index16,635 -index(min_assoc,3,assoc,library(assoc)).index16,635 -index(max_assoc,3,assoc,library(assoc)).index17,676 -index(max_assoc,3,assoc,library(assoc)).index17,676 -index(gen_assoc,3,assoc,library(assoc)).index18,717 -index(gen_assoc,3,assoc,library(assoc)).index18,717 -index(get_assoc,3,assoc,library(assoc)).index19,758 -index(get_assoc,3,assoc,library(assoc)).index19,758 -index(get_assoc,5,assoc,library(assoc)).index20,799 -index(get_assoc,5,assoc,library(assoc)).index20,799 -index(get_next_assoc,4,assoc,library(assoc)).index21,840 -index(get_next_assoc,4,assoc,library(assoc)).index21,840 -index(get_prev_assoc,4,assoc,library(assoc)).index22,886 -index(get_prev_assoc,4,assoc,library(assoc)).index22,886 -index(list_to_assoc,2,assoc,library(assoc)).index23,932 -index(list_to_assoc,2,assoc,library(assoc)).index23,932 -index(ord_list_to_assoc,2,assoc,library(assoc)).index24,977 -index(ord_list_to_assoc,2,assoc,library(assoc)).index24,977 -index(map_assoc,2,assoc,library(assoc)).index25,1026 -index(map_assoc,2,assoc,library(assoc)).index25,1026 -index(map_assoc,3,assoc,library(assoc)).index26,1067 -index(map_assoc,3,assoc,library(assoc)).index26,1067 -index(put_assoc,4,assoc,library(assoc)).index27,1108 -index(put_assoc,4,assoc,library(assoc)).index27,1108 -index(del_assoc,4,assoc,library(assoc)).index28,1149 -index(del_assoc,4,assoc,library(assoc)).index28,1149 -index(assoc_to_keys,2,assoc,library(assoc)).index29,1190 -index(assoc_to_keys,2,assoc,library(assoc)).index29,1190 -index(del_min_assoc,4,assoc,library(assoc)).index30,1235 -index(del_min_assoc,4,assoc,library(assoc)).index30,1235 -index(del_max_assoc,4,assoc,library(assoc)).index31,1280 -index(del_max_assoc,4,assoc,library(assoc)).index31,1280 -index(avl_new,1,avl,library(avl)).index32,1325 -index(avl_new,1,avl,library(avl)).index32,1325 -index(avl_insert,4,avl,library(avl)).index33,1360 -index(avl_insert,4,avl,library(avl)).index33,1360 -index(avl_lookup,3,avl,library(avl)).index34,1398 -index(avl_lookup,3,avl,library(avl)).index34,1398 -index(b_hash_new,1,b_hash,library(bhash)).index35,1436 -index(b_hash_new,1,b_hash,library(bhash)).index35,1436 -index(b_hash_new,2,b_hash,library(bhash)).index36,1479 -index(b_hash_new,2,b_hash,library(bhash)).index36,1479 -index(b_hash_new,4,b_hash,library(bhash)).index37,1522 -index(b_hash_new,4,b_hash,library(bhash)).index37,1522 -index(b_hash_lookup,3,b_hash,library(bhash)).index38,1565 -index(b_hash_lookup,3,b_hash,library(bhash)).index38,1565 -index(b_hash_update,3,b_hash,library(bhash)).index39,1611 -index(b_hash_update,3,b_hash,library(bhash)).index39,1611 -index(b_hash_update,4,b_hash,library(bhash)).index40,1657 -index(b_hash_update,4,b_hash,library(bhash)).index40,1657 -index(b_hash_insert_new,4,b_hash,library(bhash)).index41,1703 -index(b_hash_insert_new,4,b_hash,library(bhash)).index41,1703 -index(b_hash_insert,4,b_hash,library(bhash)).index42,1753 -index(b_hash_insert,4,b_hash,library(bhash)).index42,1753 -index(format_to_chars,3,charsio,library(charsio)).index43,1799 -index(format_to_chars,3,charsio,library(charsio)).index43,1799 -index(format_to_chars,4,charsio,library(charsio)).index44,1850 -index(format_to_chars,4,charsio,library(charsio)).index44,1850 -index(write_to_chars,3,charsio,library(charsio)).index45,1901 -index(write_to_chars,3,charsio,library(charsio)).index45,1901 -index(write_to_chars,2,charsio,library(charsio)).index46,1951 -index(write_to_chars,2,charsio,library(charsio)).index46,1951 -index(atom_to_chars,3,charsio,library(charsio)).index47,2001 -index(atom_to_chars,3,charsio,library(charsio)).index47,2001 -index(atom_to_chars,2,charsio,library(charsio)).index48,2050 -index(atom_to_chars,2,charsio,library(charsio)).index48,2050 -index(number_to_chars,3,charsio,library(charsio)).index49,2099 -index(number_to_chars,3,charsio,library(charsio)).index49,2099 -index(number_to_chars,2,charsio,library(charsio)).index50,2150 -index(number_to_chars,2,charsio,library(charsio)).index50,2150 -index(read_from_chars,2,charsio,library(charsio)).index51,2201 -index(read_from_chars,2,charsio,library(charsio)).index51,2201 -index(open_chars_stream,2,charsio,library(charsio)).index52,2252 -index(open_chars_stream,2,charsio,library(charsio)).index52,2252 -index(with_output_to_chars,2,charsio,library(charsio)).index53,2305 -index(with_output_to_chars,2,charsio,library(charsio)).index53,2305 -index(with_output_to_chars,3,charsio,library(charsio)).index54,2361 -index(with_output_to_chars,3,charsio,library(charsio)).index54,2361 -index(with_output_to_chars,4,charsio,library(charsio)).index55,2417 -index(with_output_to_chars,4,charsio,library(charsio)).index55,2417 -index(term_to_atom,2,charsio,library(charsio)).index56,2473 -index(term_to_atom,2,charsio,library(charsio)).index56,2473 -index(chr_show_store,1,chr,library(chr)).index57,2521 -index(chr_show_store,1,chr,library(chr)).index57,2521 -index(find_chr_constraint,1,chr,library(chr)).index58,2563 -index(find_chr_constraint,1,chr,library(chr)).index58,2563 -index(chr_trace,0,chr,library(chr)).index59,2610 -index(chr_trace,0,chr,library(chr)).index59,2610 -index(chr_notrace,0,chr,library(chr)).index60,2647 -index(chr_notrace,0,chr,library(chr)).index60,2647 -index(chr_leash,1,chr,library(chr)).index61,2686 -index(chr_leash,1,chr,library(chr)).index61,2686 -index(#>,2,clpfd,library(clpfd)).index62,2723 -index(#>,2,clpfd,library(clpfd)).index62,2723 -index(#<,2,clpfd,library(clpfd)).index63,2757 -index(#<,2,clpfd,library(clpfd)).index63,2757 -index(#>=,2,clpfd,library(clpfd)).index64,2791 -index(#>=,2,clpfd,library(clpfd)).index64,2791 -index(#=<,2,clpfd,library(clpfd)).index65,2826 -index(#=<,2,clpfd,library(clpfd)).index65,2826 -index(#=,2,clpfd,library(clpfd)).index66,2861 -index(#=,2,clpfd,library(clpfd)).index66,2861 -index(#\=,2,clpfd,library(clpfd)).index67,2895 -index(#\=,2,clpfd,library(clpfd)).index67,2895 -index(#\,1,clpfd,library(clpfd)).index68,2930 -index(#\,1,clpfd,library(clpfd)).index68,2930 -index(#<==>,2,clpfd,library(clpfd)).index69,2964 -index(#<==>,2,clpfd,library(clpfd)).index69,2964 -index(#==>,2,clpfd,library(clpfd)).index70,3001 -index(#==>,2,clpfd,library(clpfd)).index70,3001 -index(#<==,2,clpfd,library(clpfd)).index71,3037 -index(#<==,2,clpfd,library(clpfd)).index71,3037 -index(#\/,2,clpfd,library(clpfd)).index72,3073 -index(#\/,2,clpfd,library(clpfd)).index72,3073 -index(#/\,2,clpfd,library(clpfd)).index73,3108 -index(#/\,2,clpfd,library(clpfd)).index73,3108 -index(in,2,clpfd,library(clpfd)).index74,3143 -index(in,2,clpfd,library(clpfd)).index74,3143 -index(ins,2,clpfd,library(clpfd)).index75,3177 -index(ins,2,clpfd,library(clpfd)).index75,3177 -index(all_different,1,clpfd,library(clpfd)).index76,3212 -index(all_different,1,clpfd,library(clpfd)).index76,3212 -index(all_distinct,1,clpfd,library(clpfd)).index77,3257 -index(all_distinct,1,clpfd,library(clpfd)).index77,3257 -index(sum,3,clpfd,library(clpfd)).index78,3301 -index(sum,3,clpfd,library(clpfd)).index78,3301 -index(scalar_product,4,clpfd,library(clpfd)).index79,3336 -index(scalar_product,4,clpfd,library(clpfd)).index79,3336 -index(tuples_in,2,clpfd,library(clpfd)).index80,3382 -index(tuples_in,2,clpfd,library(clpfd)).index80,3382 -index(labeling,2,clpfd,library(clpfd)).index81,3423 -index(labeling,2,clpfd,library(clpfd)).index81,3423 -index(label,1,clpfd,library(clpfd)).index82,3463 -index(label,1,clpfd,library(clpfd)).index82,3463 -index(indomain,1,clpfd,library(clpfd)).index83,3500 -index(indomain,1,clpfd,library(clpfd)).index83,3500 -index(lex_chain,1,clpfd,library(clpfd)).index84,3540 -index(lex_chain,1,clpfd,library(clpfd)).index84,3540 -index(serialized,2,clpfd,library(clpfd)).index85,3581 -index(serialized,2,clpfd,library(clpfd)).index85,3581 -index(global_cardinality,2,clpfd,library(clpfd)).index86,3623 -index(global_cardinality,2,clpfd,library(clpfd)).index86,3623 -index(global_cardinality,3,clpfd,library(clpfd)).index87,3673 -index(global_cardinality,3,clpfd,library(clpfd)).index87,3673 -index(circuit,1,clpfd,library(clpfd)).index88,3723 -index(circuit,1,clpfd,library(clpfd)).index88,3723 -index(element,3,clpfd,library(clpfd)).index89,3762 -index(element,3,clpfd,library(clpfd)).index89,3762 -index(automaton,3,clpfd,library(clpfd)).index90,3801 -index(automaton,3,clpfd,library(clpfd)).index90,3801 -index(automaton,8,clpfd,library(clpfd)).index91,3842 -index(automaton,8,clpfd,library(clpfd)).index91,3842 -index(transpose,2,clpfd,library(clpfd)).index92,3883 -index(transpose,2,clpfd,library(clpfd)).index92,3883 -index(zcompare,3,clpfd,library(clpfd)).index93,3924 -index(zcompare,3,clpfd,library(clpfd)).index93,3924 -index(chain,2,clpfd,library(clpfd)).index94,3964 -index(chain,2,clpfd,library(clpfd)).index94,3964 -index(fd_var,1,clpfd,library(clpfd)).index95,4001 -index(fd_var,1,clpfd,library(clpfd)).index95,4001 -index(fd_inf,2,clpfd,library(clpfd)).index96,4039 -index(fd_inf,2,clpfd,library(clpfd)).index96,4039 -index(fd_sup,2,clpfd,library(clpfd)).index97,4077 -index(fd_sup,2,clpfd,library(clpfd)).index97,4077 -index(fd_size,2,clpfd,library(clpfd)).index98,4115 -index(fd_size,2,clpfd,library(clpfd)).index98,4115 -index(fd_dom,2,clpfd,library(clpfd)).index99,4154 -index(fd_dom,2,clpfd,library(clpfd)).index99,4154 -index({},1,clpr,library(clpr)).index100,4192 -index({},1,clpr,library(clpr)).index100,4192 -index(maximize,1,clpr,library(clpr)).index101,4224 -index(maximize,1,clpr,library(clpr)).index101,4224 -index(minimize,1,clpr,library(clpr)).index102,4262 -index(minimize,1,clpr,library(clpr)).index102,4262 -index(inf,2,clpr,library(clpr)).index103,4300 -index(inf,2,clpr,library(clpr)).index103,4300 -index(inf,4,clpr,library(clpr)).index104,4333 -index(inf,4,clpr,library(clpr)).index104,4333 -index(sup,2,clpr,library(clpr)).index105,4366 -index(sup,2,clpr,library(clpr)).index105,4366 -index(sup,4,clpr,library(clpr)).index106,4399 -index(sup,4,clpr,library(clpr)).index106,4399 -index(bb_inf,3,clpr,library(clpr)).index107,4432 -index(bb_inf,3,clpr,library(clpr)).index107,4432 -index(bb_inf,5,clpr,library(clpr)).index108,4468 -index(bb_inf,5,clpr,library(clpr)).index108,4468 -index(ordering,1,clpr,library(clpr)).index109,4504 -index(ordering,1,clpr,library(clpr)).index109,4504 -index(entailed,1,clpr,library(clpr)).index110,4542 -index(entailed,1,clpr,library(clpr)).index110,4542 -index(clp_type,2,clpr,library(clpr)).index111,4580 -index(clp_type,2,clpr,library(clpr)).index111,4580 -index(dump,3,clpr,library(clpr)).index112,4618 -index(dump,3,clpr,library(clpr)).index112,4618 -index(gensym,2,gensym,library(gensym)).index113,4652 -index(gensym,2,gensym,library(gensym)).index113,4652 -index(reset_gensym,1,gensym,library(gensym)).index114,4692 -index(reset_gensym,1,gensym,library(gensym)).index114,4692 -index(reset_gensym,0,gensym,library(gensym)).index115,4738 -index(reset_gensym,0,gensym,library(gensym)).index115,4738 -index(add_to_heap,4,heaps,library(heaps)).index116,4784 -index(add_to_heap,4,heaps,library(heaps)).index116,4784 -index(get_from_heap,4,heaps,library(heaps)).index117,4827 -index(get_from_heap,4,heaps,library(heaps)).index117,4827 -index(empty_heap,1,heaps,library(heaps)).index118,4872 -index(empty_heap,1,heaps,library(heaps)).index118,4872 -index(heap_size,2,heaps,library(heaps)).index119,4914 -index(heap_size,2,heaps,library(heaps)).index119,4914 -index(heap_to_list,2,heaps,library(heaps)).index120,4955 -index(heap_to_list,2,heaps,library(heaps)).index120,4955 -index(list_to_heap,2,heaps,library(heaps)).index121,4999 -index(list_to_heap,2,heaps,library(heaps)).index121,4999 -index(min_of_heap,3,heaps,library(heaps)).index122,5043 -index(min_of_heap,3,heaps,library(heaps)).index122,5043 -index(min_of_heap,5,heaps,library(heaps)).index123,5086 -index(min_of_heap,5,heaps,library(heaps)).index123,5086 -index(jpl_get_default_jvm_opts,1,jpl,library(jpl)).index124,5129 -index(jpl_get_default_jvm_opts,1,jpl,library(jpl)).index124,5129 -index(jpl_set_default_jvm_opts,1,jpl,library(jpl)).index125,5181 -index(jpl_set_default_jvm_opts,1,jpl,library(jpl)).index125,5181 -index(jpl_get_actual_jvm_opts,1,jpl,library(jpl)).index126,5233 -index(jpl_get_actual_jvm_opts,1,jpl,library(jpl)).index126,5233 -index(jpl_pl_lib_version,1,jpl,library(jpl)).index127,5284 -index(jpl_pl_lib_version,1,jpl,library(jpl)).index127,5284 -index(jpl_c_lib_version,1,jpl,library(jpl)).index128,5330 -index(jpl_c_lib_version,1,jpl,library(jpl)).index128,5330 -index(jpl_new,3,jpl,library(jpl)).index129,5375 -index(jpl_new,3,jpl,library(jpl)).index129,5375 -index(jpl_call,4,jpl,library(jpl)).index130,5410 -index(jpl_call,4,jpl,library(jpl)).index130,5410 -index(jpl_get,3,jpl,library(jpl)).index131,5446 -index(jpl_get,3,jpl,library(jpl)).index131,5446 -index(jpl_set,3,jpl,library(jpl)).index132,5481 -index(jpl_set,3,jpl,library(jpl)).index132,5481 -index(jpl_servlet_byref,3,jpl,library(jpl)).index133,5516 -index(jpl_servlet_byref,3,jpl,library(jpl)).index133,5516 -index(jpl_servlet_byval,3,jpl,library(jpl)).index134,5561 -index(jpl_servlet_byval,3,jpl,library(jpl)).index134,5561 -index(jpl_class_to_classname,2,jpl,library(jpl)).index135,5606 -index(jpl_class_to_classname,2,jpl,library(jpl)).index135,5606 -index(jpl_class_to_type,2,jpl,library(jpl)).index136,5656 -index(jpl_class_to_type,2,jpl,library(jpl)).index136,5656 -index(jpl_classname_to_class,2,jpl,library(jpl)).index137,5701 -index(jpl_classname_to_class,2,jpl,library(jpl)).index137,5701 -index(jpl_classname_to_type,2,jpl,library(jpl)).index138,5751 -index(jpl_classname_to_type,2,jpl,library(jpl)).index138,5751 -index(jpl_datum_to_type,2,jpl,library(jpl)).index139,5800 -index(jpl_datum_to_type,2,jpl,library(jpl)).index139,5800 -index(jpl_false,1,jpl,library(jpl)).index140,5845 -index(jpl_false,1,jpl,library(jpl)).index140,5845 -index(jpl_is_class,1,jpl,library(jpl)).index141,5882 -index(jpl_is_class,1,jpl,library(jpl)).index141,5882 -index(jpl_is_false,1,jpl,library(jpl)).index142,5922 -index(jpl_is_false,1,jpl,library(jpl)).index142,5922 -index(jpl_is_null,1,jpl,library(jpl)).index143,5962 -index(jpl_is_null,1,jpl,library(jpl)).index143,5962 -index(jpl_is_object,1,jpl,library(jpl)).index144,6001 -index(jpl_is_object,1,jpl,library(jpl)).index144,6001 -index(jpl_is_object_type,1,jpl,library(jpl)).index145,6042 -index(jpl_is_object_type,1,jpl,library(jpl)).index145,6042 -index(jpl_is_ref,1,jpl,library(jpl)).index146,6088 -index(jpl_is_ref,1,jpl,library(jpl)).index146,6088 -index(jpl_is_true,1,jpl,library(jpl)).index147,6126 -index(jpl_is_true,1,jpl,library(jpl)).index147,6126 -index(jpl_is_type,1,jpl,library(jpl)).index148,6165 -index(jpl_is_type,1,jpl,library(jpl)).index148,6165 -index(jpl_is_void,1,jpl,library(jpl)).index149,6204 -index(jpl_is_void,1,jpl,library(jpl)).index149,6204 -index(jpl_null,1,jpl,library(jpl)).index150,6243 -index(jpl_null,1,jpl,library(jpl)).index150,6243 -index(jpl_object_to_class,2,jpl,library(jpl)).index151,6279 -index(jpl_object_to_class,2,jpl,library(jpl)).index151,6279 -index(jpl_object_to_type,2,jpl,library(jpl)).index152,6326 -index(jpl_object_to_type,2,jpl,library(jpl)).index152,6326 -index(jpl_primitive_type,1,jpl,library(jpl)).index153,6372 -index(jpl_primitive_type,1,jpl,library(jpl)).index153,6372 -index(jpl_ref_to_type,2,jpl,library(jpl)).index154,6418 -index(jpl_ref_to_type,2,jpl,library(jpl)).index154,6418 -index(jpl_true,1,jpl,library(jpl)).index155,6461 -index(jpl_true,1,jpl,library(jpl)).index155,6461 -index(jpl_type_to_class,2,jpl,library(jpl)).index156,6497 -index(jpl_type_to_class,2,jpl,library(jpl)).index156,6497 -index(jpl_type_to_classname,2,jpl,library(jpl)).index157,6542 -index(jpl_type_to_classname,2,jpl,library(jpl)).index157,6542 -index(jpl_void,1,jpl,library(jpl)).index158,6591 -index(jpl_void,1,jpl,library(jpl)).index158,6591 -index(jpl_array_to_length,2,jpl,library(jpl)).index159,6627 -index(jpl_array_to_length,2,jpl,library(jpl)).index159,6627 -index(jpl_array_to_list,2,jpl,library(jpl)).index160,6674 -index(jpl_array_to_list,2,jpl,library(jpl)).index160,6674 -index(jpl_datums_to_array,2,jpl,library(jpl)).index161,6719 -index(jpl_datums_to_array,2,jpl,library(jpl)).index161,6719 -index(jpl_enumeration_element,2,jpl,library(jpl)).index162,6766 -index(jpl_enumeration_element,2,jpl,library(jpl)).index162,6766 -index(jpl_enumeration_to_list,2,jpl,library(jpl)).index163,6817 -index(jpl_enumeration_to_list,2,jpl,library(jpl)).index163,6817 -index(jpl_hashtable_pair,2,jpl,library(jpl)).index164,6868 -index(jpl_hashtable_pair,2,jpl,library(jpl)).index164,6868 -index(jpl_iterator_element,2,jpl,library(jpl)).index165,6914 -index(jpl_iterator_element,2,jpl,library(jpl)).index165,6914 -index(jpl_list_to_array,2,jpl,library(jpl)).index166,6962 -index(jpl_list_to_array,2,jpl,library(jpl)).index166,6962 -index(jpl_list_to_array,3,jpl,library(jpl)).index167,7007 -index(jpl_list_to_array,3,jpl,library(jpl)).index167,7007 -index(jpl_terms_to_array,2,jpl,library(jpl)).index168,7052 -index(jpl_terms_to_array,2,jpl,library(jpl)).index168,7052 -index(jpl_map_element,2,jpl,library(jpl)).index169,7098 -index(jpl_map_element,2,jpl,library(jpl)).index169,7098 -index(jpl_set_element,2,jpl,library(jpl)).index170,7141 -index(jpl_set_element,2,jpl,library(jpl)).index170,7141 -index(append,3,lists,library(lists)).index171,7184 -index(append,3,lists,library(lists)).index171,7184 -index(append,2,lists,library(lists)).index172,7222 -index(append,2,lists,library(lists)).index172,7222 -index(delete,3,lists,library(lists)).index173,7260 -index(delete,3,lists,library(lists)).index173,7260 -index(intersection,3,lists,library(lists)).index174,7298 -index(intersection,3,lists,library(lists)).index174,7298 -index(flatten,2,lists,library(lists)).index175,7342 -index(flatten,2,lists,library(lists)).index175,7342 -index(last,2,lists,library(lists)).index176,7381 -index(last,2,lists,library(lists)).index176,7381 -index(list_concat,2,lists,library(lists)).index177,7417 -index(list_concat,2,lists,library(lists)).index177,7417 -index(max_list,2,lists,library(lists)).index178,7460 -index(max_list,2,lists,library(lists)).index178,7460 -index(member,2,lists,library(lists)).index179,7500 -index(member,2,lists,library(lists)).index179,7500 -index(memberchk,2,lists,library(lists)).index180,7538 -index(memberchk,2,lists,library(lists)).index180,7538 -index(min_list,2,lists,library(lists)).index181,7579 -index(min_list,2,lists,library(lists)).index181,7579 -index(nextto,3,lists,library(lists)).index182,7619 -index(nextto,3,lists,library(lists)).index182,7619 -index(nth,3,lists,library(lists)).index183,7657 -index(nth,3,lists,library(lists)).index183,7657 -index(nth,4,lists,library(lists)).index184,7692 -index(nth,4,lists,library(lists)).index184,7692 -index(nth0,3,lists,library(lists)).index185,7727 -index(nth0,3,lists,library(lists)).index185,7727 -index(nth0,4,lists,library(lists)).index186,7763 -index(nth0,4,lists,library(lists)).index186,7763 -index(nth1,3,lists,library(lists)).index187,7799 -index(nth1,3,lists,library(lists)).index187,7799 -index(nth1,4,lists,library(lists)).index188,7835 -index(nth1,4,lists,library(lists)).index188,7835 -index(numlist,3,lists,library(lists)).index189,7871 -index(numlist,3,lists,library(lists)).index189,7871 -index(permutation,2,lists,library(lists)).index190,7910 -index(permutation,2,lists,library(lists)).index190,7910 -index(prefix,2,lists,library(lists)).index191,7953 -index(prefix,2,lists,library(lists)).index191,7953 -index(remove_duplicates,2,lists,library(lists)).index192,7991 -index(remove_duplicates,2,lists,library(lists)).index192,7991 -index(reverse,2,lists,library(lists)).index193,8040 -index(reverse,2,lists,library(lists)).index193,8040 -index(same_length,2,lists,library(lists)).index194,8079 -index(same_length,2,lists,library(lists)).index194,8079 -index(select,3,lists,library(lists)).index195,8122 -index(select,3,lists,library(lists)).index195,8122 -index(selectchk,3,lists,library(lists)).index196,8160 -index(selectchk,3,lists,library(lists)).index196,8160 -index(sublist,2,lists,library(lists)).index197,8201 -index(sublist,2,lists,library(lists)).index197,8201 -index(substitute,4,lists,library(lists)).index198,8240 -index(substitute,4,lists,library(lists)).index198,8240 -index(subtract,3,lists,library(lists)).index199,8282 -index(subtract,3,lists,library(lists)).index199,8282 -index(suffix,2,lists,library(lists)).index200,8322 -index(suffix,2,lists,library(lists)).index200,8322 -index(sum_list,2,lists,library(lists)).index201,8360 -index(sum_list,2,lists,library(lists)).index201,8360 -index(sum_list,3,lists,library(lists)).index202,8400 -index(sum_list,3,lists,library(lists)).index202,8400 -index(sumlist,2,lists,library(lists)).index203,8440 -index(sumlist,2,lists,library(lists)).index203,8440 -index(nb_queue,1,nb,library(nb)).index204,8479 -index(nb_queue,1,nb,library(nb)).index204,8479 -index(nb_queue,2,nb,library(nb)).index205,8513 -index(nb_queue,2,nb,library(nb)).index205,8513 -index(nb_queue_close,3,nb,library(nb)).index206,8547 -index(nb_queue_close,3,nb,library(nb)).index206,8547 -index(nb_queue_enqueue,2,nb,library(nb)).index207,8587 -index(nb_queue_enqueue,2,nb,library(nb)).index207,8587 -index(nb_queue_dequeue,2,nb,library(nb)).index208,8629 -index(nb_queue_dequeue,2,nb,library(nb)).index208,8629 -index(nb_queue_peek,2,nb,library(nb)).index209,8671 -index(nb_queue_peek,2,nb,library(nb)).index209,8671 -index(nb_queue_empty,1,nb,library(nb)).index210,8710 -index(nb_queue_empty,1,nb,library(nb)).index210,8710 -index(nb_queue_size,2,nb,library(nb)).index211,8750 -index(nb_queue_size,2,nb,library(nb)).index211,8750 -index(nb_heap,2,nb,library(nb)).index212,8789 -index(nb_heap,2,nb,library(nb)).index212,8789 -index(nb_heap_close,1,nb,library(nb)).index213,8822 -index(nb_heap_close,1,nb,library(nb)).index213,8822 -index(nb_heap_add,3,nb,library(nb)).index214,8861 -index(nb_heap_add,3,nb,library(nb)).index214,8861 -index(nb_heap_del,3,nb,library(nb)).index215,8898 -index(nb_heap_del,3,nb,library(nb)).index215,8898 -index(nb_heap_peek,3,nb,library(nb)).index216,8935 -index(nb_heap_peek,3,nb,library(nb)).index216,8935 -index(nb_heap_empty,1,nb,library(nb)).index217,8973 -index(nb_heap_empty,1,nb,library(nb)).index217,8973 -index(nb_heap_size,2,nb,library(nb)).index218,9012 -index(nb_heap_size,2,nb,library(nb)).index218,9012 -index(nb_beam,2,nb,library(nb)).index219,9050 -index(nb_beam,2,nb,library(nb)).index219,9050 -index(nb_beam_close,1,nb,library(nb)).index220,9083 -index(nb_beam_close,1,nb,library(nb)).index220,9083 -index(nb_beam_add,3,nb,library(nb)).index221,9122 -index(nb_beam_add,3,nb,library(nb)).index221,9122 -index(nb_beam_del,3,nb,library(nb)).index222,9159 -index(nb_beam_del,3,nb,library(nb)).index222,9159 -index(nb_beam_peek,3,nb,library(nb)).index223,9196 -index(nb_beam_peek,3,nb,library(nb)).index223,9196 -index(nb_beam_empty,1,nb,library(nb)).index224,9234 -index(nb_beam_empty,1,nb,library(nb)).index224,9234 -index(nb_beam_size,2,nb,library(nb)).index225,9273 -index(nb_beam_size,2,nb,library(nb)).index225,9273 -index(contains_term,2,occurs,library(occurs)).index226,9311 -index(contains_term,2,occurs,library(occurs)).index226,9311 -index(contains_var,2,occurs,library(occurs)).index227,9358 -index(contains_var,2,occurs,library(occurs)).index227,9358 -index(free_of_term,2,occurs,library(occurs)).index228,9404 -index(free_of_term,2,occurs,library(occurs)).index228,9404 -index(free_of_var,2,occurs,library(occurs)).index229,9450 -index(free_of_var,2,occurs,library(occurs)).index229,9450 -index(occurrences_of_term,3,occurs,library(occurs)).index230,9495 -index(occurrences_of_term,3,occurs,library(occurs)).index230,9495 -index(occurrences_of_var,3,occurs,library(occurs)).index231,9548 -index(occurrences_of_var,3,occurs,library(occurs)).index231,9548 -index(sub_term,2,occurs,library(occurs)).index232,9600 -index(sub_term,2,occurs,library(occurs)).index232,9600 -index(sub_var,2,occurs,library(occurs)).index233,9642 -index(sub_var,2,occurs,library(occurs)).index233,9642 -index(option,2,swi_option,library(option)).index234,9683 -index(option,2,swi_option,library(option)).index234,9683 -index(option,3,swi_option,library(option)).index235,9727 -index(option,3,swi_option,library(option)).index235,9727 -index(select_option,3,swi_option,library(option)).index236,9771 -index(select_option,3,swi_option,library(option)).index236,9771 -index(select_option,4,swi_option,library(option)).index237,9822 -index(select_option,4,swi_option,library(option)).index237,9822 -index(merge_options,3,swi_option,library(option)).index238,9873 -index(merge_options,3,swi_option,library(option)).index238,9873 -index(meta_options,3,swi_option,library(option)).index239,9924 -index(meta_options,3,swi_option,library(option)).index239,9924 -index(list_to_ord_set,2,ordsets,library(ordsets)).index240,9974 -index(list_to_ord_set,2,ordsets,library(ordsets)).index240,9974 -index(merge,3,ordsets,library(ordsets)).index241,10025 -index(merge,3,ordsets,library(ordsets)).index241,10025 -index(ord_add_element,3,ordsets,library(ordsets)).index242,10066 -index(ord_add_element,3,ordsets,library(ordsets)).index242,10066 -index(ord_del_element,3,ordsets,library(ordsets)).index243,10117 -index(ord_del_element,3,ordsets,library(ordsets)).index243,10117 -index(ord_disjoint,2,ordsets,library(ordsets)).index244,10168 -index(ord_disjoint,2,ordsets,library(ordsets)).index244,10168 -index(ord_insert,3,ordsets,library(ordsets)).index245,10216 -index(ord_insert,3,ordsets,library(ordsets)).index245,10216 -index(ord_member,2,ordsets,library(ordsets)).index246,10262 -index(ord_member,2,ordsets,library(ordsets)).index246,10262 -index(ord_intersect,2,ordsets,library(ordsets)).index247,10308 -index(ord_intersect,2,ordsets,library(ordsets)).index247,10308 -index(ord_intersect,3,ordsets,library(ordsets)).index248,10357 -index(ord_intersect,3,ordsets,library(ordsets)).index248,10357 -index(ord_intersection,3,ordsets,library(ordsets)).index249,10406 -index(ord_intersection,3,ordsets,library(ordsets)).index249,10406 -index(ord_intersection,4,ordsets,library(ordsets)).index250,10458 -index(ord_intersection,4,ordsets,library(ordsets)).index250,10458 -index(ord_seteq,2,ordsets,library(ordsets)).index251,10510 -index(ord_seteq,2,ordsets,library(ordsets)).index251,10510 -index(ord_setproduct,3,ordsets,library(ordsets)).index252,10555 -index(ord_setproduct,3,ordsets,library(ordsets)).index252,10555 -index(ord_subset,2,ordsets,library(ordsets)).index253,10605 -index(ord_subset,2,ordsets,library(ordsets)).index253,10605 -index(ord_subtract,3,ordsets,library(ordsets)).index254,10651 -index(ord_subtract,3,ordsets,library(ordsets)).index254,10651 -index(ord_symdiff,3,ordsets,library(ordsets)).index255,10699 -index(ord_symdiff,3,ordsets,library(ordsets)).index255,10699 -index(ord_union,2,ordsets,library(ordsets)).index256,10746 -index(ord_union,2,ordsets,library(ordsets)).index256,10746 -index(ord_union,3,ordsets,library(ordsets)).index257,10791 -index(ord_union,3,ordsets,library(ordsets)).index257,10791 -index(ord_union,4,ordsets,library(ordsets)).index258,10836 -index(ord_union,4,ordsets,library(ordsets)).index258,10836 -index(ord_empty,1,ordsets,library(ordsets)).index259,10881 -index(ord_empty,1,ordsets,library(ordsets)).index259,10881 -index(ord_memberchk,2,ordsets,library(ordsets)).index260,10926 -index(ord_memberchk,2,ordsets,library(ordsets)).index260,10926 -index(pairs_keys_values,3,pairs,library(pairs)).index261,10975 -index(pairs_keys_values,3,pairs,library(pairs)).index261,10975 -index(pairs_values,2,pairs,library(pairs)).index262,11024 -index(pairs_values,2,pairs,library(pairs)).index262,11024 -index(pairs_keys,2,pairs,library(pairs)).index263,11068 -index(pairs_keys,2,pairs,library(pairs)).index263,11068 -index(group_pairs_by_key,2,pairs,library(pairs)).index264,11110 -index(group_pairs_by_key,2,pairs,library(pairs)).index264,11110 -index(transpose_pairs,2,pairs,library(pairs)).index265,11160 -index(transpose_pairs,2,pairs,library(pairs)).index265,11160 -index(map_list_to_pairs,3,pairs,library(pairs)).index266,11207 -index(map_list_to_pairs,3,pairs,library(pairs)).index266,11207 -index(xref_source,1,prolog_xref,library(prolog_xref)).index267,11256 -index(xref_source,1,prolog_xref,library(prolog_xref)).index267,11256 -index(xref_called,3,prolog_xref,library(prolog_xref)).index268,11311 -index(xref_called,3,prolog_xref,library(prolog_xref)).index268,11311 -index(xref_defined,3,prolog_xref,library(prolog_xref)).index269,11366 -index(xref_defined,3,prolog_xref,library(prolog_xref)).index269,11366 -index(xref_definition_line,2,prolog_xref,library(prolog_xref)).index270,11422 -index(xref_definition_line,2,prolog_xref,library(prolog_xref)).index270,11422 -index(xref_exported,2,prolog_xref,library(prolog_xref)).index271,11486 -index(xref_exported,2,prolog_xref,library(prolog_xref)).index271,11486 -index(xref_module,2,prolog_xref,library(prolog_xref)).index272,11543 -index(xref_module,2,prolog_xref,library(prolog_xref)).index272,11543 -index(xref_op,2,prolog_xref,library(prolog_xref)).index273,11598 -index(xref_op,2,prolog_xref,library(prolog_xref)).index273,11598 -index(xref_clean,1,prolog_xref,library(prolog_xref)).index274,11649 -index(xref_clean,1,prolog_xref,library(prolog_xref)).index274,11649 -index(xref_current_source,1,prolog_xref,library(prolog_xref)).index275,11703 -index(xref_current_source,1,prolog_xref,library(prolog_xref)).index275,11703 -index(xref_done,2,prolog_xref,library(prolog_xref)).index276,11766 -index(xref_done,2,prolog_xref,library(prolog_xref)).index276,11766 -index(xref_built_in,1,prolog_xref,library(prolog_xref)).index277,11819 -index(xref_built_in,1,prolog_xref,library(prolog_xref)).index277,11819 -index(xref_expand,2,prolog_xref,library(prolog_xref)).index278,11876 -index(xref_expand,2,prolog_xref,library(prolog_xref)).index278,11876 -index(xref_source_file,3,prolog_xref,library(prolog_xref)).index279,11931 -index(xref_source_file,3,prolog_xref,library(prolog_xref)).index279,11931 -index(xref_source_file,4,prolog_xref,library(prolog_xref)).index280,11991 -index(xref_source_file,4,prolog_xref,library(prolog_xref)).index280,11991 -index(xref_public_list,4,prolog_xref,library(prolog_xref)).index281,12051 -index(xref_public_list,4,prolog_xref,library(prolog_xref)).index281,12051 -index(xref_meta,2,prolog_xref,library(prolog_xref)).index282,12111 -index(xref_meta,2,prolog_xref,library(prolog_xref)).index282,12111 -index(xref_hook,1,prolog_xref,library(prolog_xref)).index283,12164 -index(xref_hook,1,prolog_xref,library(prolog_xref)).index283,12164 -index(xref_used_class,2,prolog_xref,library(prolog_xref)).index284,12217 -index(xref_used_class,2,prolog_xref,library(prolog_xref)).index284,12217 -index(xref_defined_class,3,prolog_xref,library(prolog_xref)).index285,12276 -index(xref_defined_class,3,prolog_xref,library(prolog_xref)).index285,12276 -index(set_test_options,1,plunit,library(plunit)).index286,12338 -index(set_test_options,1,plunit,library(plunit)).index286,12338 -index(begin_tests,1,plunit,library(plunit)).index287,12388 -index(begin_tests,1,plunit,library(plunit)).index287,12388 -index(begin_tests,2,plunit,library(plunit)).index288,12433 -index(begin_tests,2,plunit,library(plunit)).index288,12433 -index(end_tests,1,plunit,library(plunit)).index289,12478 -index(end_tests,1,plunit,library(plunit)).index289,12478 -index(run_tests,0,plunit,library(plunit)).index290,12521 -index(run_tests,0,plunit,library(plunit)).index290,12521 -index(run_tests,1,plunit,library(plunit)).index291,12564 -index(run_tests,1,plunit,library(plunit)).index291,12564 -index(load_test_files,1,plunit,library(plunit)).index292,12607 -index(load_test_files,1,plunit,library(plunit)).index292,12607 -index(running_tests,0,plunit,library(plunit)).index293,12656 -index(running_tests,0,plunit,library(plunit)).index293,12656 -index(test_report,1,plunit,library(plunit)).index294,12703 -index(test_report,1,plunit,library(plunit)).index294,12703 -index(make_queue,1,queues,library(queues)).index295,12748 -index(make_queue,1,queues,library(queues)).index295,12748 -index(join_queue,3,queues,library(queues)).index296,12792 -index(join_queue,3,queues,library(queues)).index296,12792 -index(list_join_queue,3,queues,library(queues)).index297,12836 -index(list_join_queue,3,queues,library(queues)).index297,12836 -index(jump_queue,3,queues,library(queues)).index298,12885 -index(jump_queue,3,queues,library(queues)).index298,12885 -index(list_jump_queue,3,queues,library(queues)).index299,12929 -index(list_jump_queue,3,queues,library(queues)).index299,12929 -index(head_queue,2,queues,library(queues)).index300,12978 -index(head_queue,2,queues,library(queues)).index300,12978 -index(serve_queue,3,queues,library(queues)).index301,13022 -index(serve_queue,3,queues,library(queues)).index301,13022 -index(length_queue,2,queues,library(queues)).index302,13067 -index(length_queue,2,queues,library(queues)).index302,13067 -index(empty_queue,1,queues,library(queues)).index303,13113 -index(empty_queue,1,queues,library(queues)).index303,13113 -index(list_to_queue,2,queues,library(queues)).index304,13158 -index(list_to_queue,2,queues,library(queues)).index304,13158 -index(queue_to_list,2,queues,library(queues)).index305,13205 -index(queue_to_list,2,queues,library(queues)).index305,13205 -index(random,1,random,library(random)).index306,13252 -index(random,1,random,library(random)).index306,13252 -index(random,3,random,library(random)).index307,13292 -index(random,3,random,library(random)).index307,13292 -index(randseq,3,random,library(random)).index308,13332 -index(randseq,3,random,library(random)).index308,13332 -index(randset,3,random,library(random)).index309,13373 -index(randset,3,random,library(random)).index309,13373 -index(getrand,1,random,library(random)).index310,13414 -index(getrand,1,random,library(random)).index310,13414 -index(setrand,1,random,library(random)).index311,13455 -index(setrand,1,random,library(random)).index311,13455 -index(rb_new,1,rbtrees,library(rbtrees)).index312,13496 -index(rb_new,1,rbtrees,library(rbtrees)).index312,13496 -index(rb_empty,1,rbtrees,library(rbtrees)).index313,13538 -index(rb_empty,1,rbtrees,library(rbtrees)).index313,13538 -index(rb_lookup,3,rbtrees,library(rbtrees)).index314,13582 -index(rb_lookup,3,rbtrees,library(rbtrees)).index314,13582 -index(rb_update,4,rbtrees,library(rbtrees)).index315,13627 -index(rb_update,4,rbtrees,library(rbtrees)).index315,13627 -index(rb_update,5,rbtrees,library(rbtrees)).index316,13672 -index(rb_update,5,rbtrees,library(rbtrees)).index316,13672 -index(rb_apply,4,rbtrees,library(rbtrees)).index317,13717 -index(rb_apply,4,rbtrees,library(rbtrees)).index317,13717 -index(rb_lookupall,3,rbtrees,library(rbtrees)).index318,13761 -index(rb_lookupall,3,rbtrees,library(rbtrees)).index318,13761 -index(rb_insert,4,rbtrees,library(rbtrees)).index319,13809 -index(rb_insert,4,rbtrees,library(rbtrees)).index319,13809 -index(rb_insert_new,4,rbtrees,library(rbtrees)).index320,13854 -index(rb_insert_new,4,rbtrees,library(rbtrees)).index320,13854 -index(rb_delete,3,rbtrees,library(rbtrees)).index321,13903 -index(rb_delete,3,rbtrees,library(rbtrees)).index321,13903 -index(rb_delete,4,rbtrees,library(rbtrees)).index322,13948 -index(rb_delete,4,rbtrees,library(rbtrees)).index322,13948 -index(rb_visit,2,rbtrees,library(rbtrees)).index323,13993 -index(rb_visit,2,rbtrees,library(rbtrees)).index323,13993 -index(rb_visit,3,rbtrees,library(rbtrees)).index324,14037 -index(rb_visit,3,rbtrees,library(rbtrees)).index324,14037 -index(rb_keys,2,rbtrees,library(rbtrees)).index325,14081 -index(rb_keys,2,rbtrees,library(rbtrees)).index325,14081 -index(rb_keys,3,rbtrees,library(rbtrees)).index326,14124 -index(rb_keys,3,rbtrees,library(rbtrees)).index326,14124 -index(rb_map,2,rbtrees,library(rbtrees)).index327,14167 -index(rb_map,2,rbtrees,library(rbtrees)).index327,14167 -index(rb_map,3,rbtrees,library(rbtrees)).index328,14209 -index(rb_map,3,rbtrees,library(rbtrees)).index328,14209 -index(rb_partial_map,4,rbtrees,library(rbtrees)).index329,14251 -index(rb_partial_map,4,rbtrees,library(rbtrees)).index329,14251 -index(rb_clone,3,rbtrees,library(rbtrees)).index330,14301 -index(rb_clone,3,rbtrees,library(rbtrees)).index330,14301 -index(rb_clone,4,rbtrees,library(rbtrees)).index331,14345 -index(rb_clone,4,rbtrees,library(rbtrees)).index331,14345 -index(rb_min,3,rbtrees,library(rbtrees)).index332,14389 -index(rb_min,3,rbtrees,library(rbtrees)).index332,14389 -index(rb_max,3,rbtrees,library(rbtrees)).index333,14431 -index(rb_max,3,rbtrees,library(rbtrees)).index333,14431 -index(rb_del_min,4,rbtrees,library(rbtrees)).index334,14473 -index(rb_del_min,4,rbtrees,library(rbtrees)).index334,14473 -index(rb_del_max,4,rbtrees,library(rbtrees)).index335,14519 -index(rb_del_max,4,rbtrees,library(rbtrees)).index335,14519 -index(rb_next,4,rbtrees,library(rbtrees)).index336,14565 -index(rb_next,4,rbtrees,library(rbtrees)).index336,14565 -index(rb_previous,4,rbtrees,library(rbtrees)).index337,14608 -index(rb_previous,4,rbtrees,library(rbtrees)).index337,14608 -index(list_to_rbtree,2,rbtrees,library(rbtrees)).index338,14655 -index(list_to_rbtree,2,rbtrees,library(rbtrees)).index338,14655 -index(ord_list_to_rbtree,2,rbtrees,library(rbtrees)).index339,14705 -index(ord_list_to_rbtree,2,rbtrees,library(rbtrees)).index339,14705 -index(is_rbtree,1,rbtrees,library(rbtrees)).index340,14759 -index(is_rbtree,1,rbtrees,library(rbtrees)).index340,14759 -index(rb_size,2,rbtrees,library(rbtrees)).index341,14804 -index(rb_size,2,rbtrees,library(rbtrees)).index341,14804 -index(rb_in,3,rbtrees,library(rbtrees)).index342,14847 -index(rb_in,3,rbtrees,library(rbtrees)).index342,14847 -index(read_line_to_codes,2,read_util,library(readutil)).index343,14888 -index(read_line_to_codes,2,read_util,library(readutil)).index343,14888 -index(read_line_to_codes,3,read_util,library(readutil)).index344,14945 -index(read_line_to_codes,3,read_util,library(readutil)).index344,14945 -index(read_stream_to_codes,2,read_util,library(readutil)).index345,15002 -index(read_stream_to_codes,2,read_util,library(readutil)).index345,15002 -index(read_stream_to_codes,3,read_util,library(readutil)).index346,15061 -index(read_stream_to_codes,3,read_util,library(readutil)).index346,15061 -index(read_file_to_codes,3,read_util,library(readutil)).index347,15120 -index(read_file_to_codes,3,read_util,library(readutil)).index347,15120 -index(read_file_to_terms,3,read_util,library(readutil)).index348,15177 -index(read_file_to_terms,3,read_util,library(readutil)).index348,15177 -index(regexp,3,regexp,library(regexp)).index349,15234 -index(regexp,3,regexp,library(regexp)).index349,15234 -index(regexp,4,regexp,library(regexp)).index350,15274 -index(regexp,4,regexp,library(regexp)).index350,15274 -index(load_foreign_library,1,shlib,library(shlib)).index351,15314 -index(load_foreign_library,1,shlib,library(shlib)).index351,15314 -index(load_foreign_library,2,shlib,library(shlib)).index352,15366 -index(load_foreign_library,2,shlib,library(shlib)).index352,15366 -index(unload_foreign_library,1,shlib,library(shlib)).index353,15418 -index(unload_foreign_library,1,shlib,library(shlib)).index353,15418 -index(unload_foreign_library,2,shlib,library(shlib)).index354,15472 -index(unload_foreign_library,2,shlib,library(shlib)).index354,15472 -index(current_foreign_library,2,shlib,library(shlib)).index355,15526 -index(current_foreign_library,2,shlib,library(shlib)).index355,15526 -index(reload_foreign_libraries,0,shlib,library(shlib)).index356,15581 -index(reload_foreign_libraries,0,shlib,library(shlib)).index356,15581 -index(use_foreign_library,1,shlib,library(shlib)).index357,15637 -index(use_foreign_library,1,shlib,library(shlib)).index357,15637 -index(use_foreign_library,2,shlib,library(shlib)).index358,15688 -index(use_foreign_library,2,shlib,library(shlib)).index358,15688 -index(datime,1,operating_system_support,library(system)).index359,15739 -index(datime,1,operating_system_support,library(system)).index359,15739 -index(delete_file,1,operating_system_support,library(system)).index360,15797 -index(delete_file,1,operating_system_support,library(system)).index360,15797 -index(delete_file,2,operating_system_support,library(system)).index361,15860 -index(delete_file,2,operating_system_support,library(system)).index361,15860 -index(directory_files,2,operating_system_support,library(system)).index362,15923 -index(directory_files,2,operating_system_support,library(system)).index362,15923 -index(environ,2,operating_system_support,library(system)).index363,15990 -index(environ,2,operating_system_support,library(system)).index363,15990 -index(exec,3,operating_system_support,library(system)).index364,16049 -index(exec,3,operating_system_support,library(system)).index364,16049 -index(file_exists,1,operating_system_support,library(system)).index365,16105 -index(file_exists,1,operating_system_support,library(system)).index365,16105 -index(file_exists,2,operating_system_support,library(system)).index366,16168 -index(file_exists,2,operating_system_support,library(system)).index366,16168 -index(file_property,2,operating_system_support,library(system)).index367,16231 -index(file_property,2,operating_system_support,library(system)).index367,16231 -index(host_id,1,operating_system_support,library(system)).index368,16296 -index(host_id,1,operating_system_support,library(system)).index368,16296 -index(host_name,1,operating_system_support,library(system)).index369,16355 -index(host_name,1,operating_system_support,library(system)).index369,16355 -index(pid,1,operating_system_support,library(system)).index370,16416 -index(pid,1,operating_system_support,library(system)).index370,16416 -index(kill,2,operating_system_support,library(system)).index371,16471 -index(kill,2,operating_system_support,library(system)).index371,16471 -index(mktemp,2,operating_system_support,library(system)).index372,16527 -index(mktemp,2,operating_system_support,library(system)).index372,16527 -index(make_directory,1,operating_system_support,library(system)).index373,16585 -index(make_directory,1,operating_system_support,library(system)).index373,16585 -index(popen,3,operating_system_support,library(system)).index374,16651 -index(popen,3,operating_system_support,library(system)).index374,16651 -index(rename_file,2,operating_system_support,library(system)).index375,16708 -index(rename_file,2,operating_system_support,library(system)).index375,16708 -index(shell,0,operating_system_support,library(system)).index376,16771 -index(shell,0,operating_system_support,library(system)).index376,16771 -index(shell,1,operating_system_support,library(system)).index377,16828 -index(shell,1,operating_system_support,library(system)).index377,16828 -index(shell,2,operating_system_support,library(system)).index378,16885 -index(shell,2,operating_system_support,library(system)).index378,16885 -index(sleep,1,operating_system_support,library(system)).index379,16942 -index(sleep,1,operating_system_support,library(system)).index379,16942 -index(system,0,operating_system_support,library(system)).index380,16999 -index(system,0,operating_system_support,library(system)).index380,16999 -index(system,1,operating_system_support,library(system)).index381,17057 -index(system,1,operating_system_support,library(system)).index381,17057 -index(system,2,operating_system_support,library(system)).index382,17115 -index(system,2,operating_system_support,library(system)).index382,17115 -index(mktime,2,operating_system_support,library(system)).index383,17173 -index(mktime,2,operating_system_support,library(system)).index383,17173 -index(tmpnam,1,operating_system_support,library(system)).index384,17231 -index(tmpnam,1,operating_system_support,library(system)).index384,17231 -index(tmp_file,2,operating_system_support,library(system)).index385,17289 -index(tmp_file,2,operating_system_support,library(system)).index385,17289 -index(tmpdir,1,operating_system_support,library(system)).index386,17349 -index(tmpdir,1,operating_system_support,library(system)).index386,17349 -index(wait,2,operating_system_support,library(system)).index387,17407 -index(wait,2,operating_system_support,library(system)).index387,17407 -index(working_directory,2,operating_system_support,library(system)).index388,17463 -index(working_directory,2,operating_system_support,library(system)).index388,17463 -index(term_hash,2,terms,library(terms)).index389,17532 -index(term_hash,2,terms,library(terms)).index389,17532 -index(term_hash,4,terms,library(terms)).index390,17573 -index(term_hash,4,terms,library(terms)).index390,17573 -index(instantiated_term_hash,4,terms,library(terms)).index391,17614 -index(instantiated_term_hash,4,terms,library(terms)).index391,17614 -index(variant,2,terms,library(terms)).index392,17668 -index(variant,2,terms,library(terms)).index392,17668 -index(unifiable,3,terms,library(terms)).index393,17707 -index(unifiable,3,terms,library(terms)).index393,17707 -index(subsumes,2,terms,library(terms)).index394,17748 -index(subsumes,2,terms,library(terms)).index394,17748 -index(subsumes_chk,2,terms,library(terms)).index395,17788 -index(subsumes_chk,2,terms,library(terms)).index395,17788 -index(cyclic_term,1,terms,library(terms)).index396,17832 -index(cyclic_term,1,terms,library(terms)).index396,17832 -index(variable_in_term,2,terms,library(terms)).index397,17875 -index(variable_in_term,2,terms,library(terms)).index397,17875 -index(variables_within_term,3,terms,library(terms)).index398,17923 -index(variables_within_term,3,terms,library(terms)).index398,17923 -index(new_variables_in_term,3,terms,library(terms)).index399,17976 -index(new_variables_in_term,3,terms,library(terms)).index399,17976 -index(time_out,3,timeout,library(timeout)).index400,18029 -index(time_out,3,timeout,library(timeout)).index400,18029 -index(get_label,3,trees,library(trees)).index401,18073 -index(get_label,3,trees,library(trees)).index401,18073 -index(list_to_tree,2,trees,library(trees)).index402,18114 -index(list_to_tree,2,trees,library(trees)).index402,18114 -index(map_tree,3,trees,library(trees)).index403,18158 -index(map_tree,3,trees,library(trees)).index403,18158 -index(put_label,4,trees,library(trees)).index404,18198 -index(put_label,4,trees,library(trees)).index404,18198 -index(tree_size,2,trees,library(trees)).index405,18239 -index(tree_size,2,trees,library(trees)).index405,18239 -index(tree_to_list,2,trees,library(trees)).index406,18280 -index(tree_to_list,2,trees,library(trees)).index406,18280 - -library/itries.yap,0 - -library/lam_mpi.yap,150 -mpi_msg_size(Term, Size) :-mpi_msg_size217,5140 -mpi_msg_size(Term, Size) :-mpi_msg_size217,5140 -mpi_msg_size(Term, Size) :-mpi_msg_size217,5140 - -library/lambda.pl,225 -dif(X, B).dif101,3292 -dif(X, B).dif101,3292 -dif(X, B).dif106,3367 -dif(X, B).dif106,3367 -no_hat_call(MGoal) :-no_hat_call208,5606 -no_hat_call(MGoal) :-no_hat_call208,5606 -no_hat_call(MGoal) :-no_hat_call208,5606 - -library/lammpi/examples/atoms.yap,85 -main:-main19,260 -test(H):-test38,541 -test(H):-test38,541 -test(H):-test38,541 - -library/lammpi/examples/bcast.yap,399 -main :-main6,61 -do_comm(Rank) :-do_comm15,227 -do_comm(Rank) :-do_comm15,227 -do_comm(Rank) :-do_comm15,227 -do_comm(_).do_comm23,400 -do_comm(_).do_comm23,400 -gen_list(0,[]) :- !.gen_list25,413 -gen_list(0,[]) :- !.gen_list25,413 -gen_list(0,[]) :- !.gen_list25,413 -gen_list(I,[I|List]) :-gen_list26,434 -gen_list(I,[I|List]) :-gen_list26,434 -gen_list(I,[I|List]) :-gen_list26,434 - -library/lammpi/examples/gowait,0 - -library/lammpi/examples/hello.yap,18 -main :-main6,61 - -library/lammpi/examples/italk.yap,699 -main :-main5,60 -do_comm(0) :-do_comm12,182 -do_comm(0) :-do_comm12,182 -do_comm(0) :-do_comm12,182 -do_comm(0) :-do_comm22,405 -do_comm(0) :-do_comm22,405 -do_comm(0) :-do_comm22,405 -do_comm(0).do_comm27,491 -do_comm(0).do_comm27,491 -do_comm(1) :-do_comm28,503 -do_comm(1) :-do_comm28,503 -do_comm(1) :-do_comm28,503 -do_comm(1) :-do_comm37,720 -do_comm(1) :-do_comm37,720 -do_comm(1) :-do_comm37,720 -do_comm(1).do_comm42,806 -do_comm(1).do_comm42,806 -gen_list(0,[]) :- !.gen_list44,819 -gen_list(0,[]) :- !.gen_list44,819 -gen_list(0,[]) :- !.gen_list44,819 -gen_list(I,I.List) :-gen_list45,840 -gen_list(I,I.List) :-gen_list45,840 -gen_list(I,I.List) :-gen_list45,840 - -library/lammpi/examples/run_atoms,0 - -library/lammpi/examples/talk.yap,699 -main :-main6,61 -do_comm(0) :-do_comm13,183 -do_comm(0) :-do_comm13,183 -do_comm(0) :-do_comm13,183 -do_comm(0) :-do_comm22,359 -do_comm(0) :-do_comm22,359 -do_comm(0) :-do_comm22,359 -do_comm(0).do_comm27,445 -do_comm(0).do_comm27,445 -do_comm(1) :-do_comm28,457 -do_comm(1) :-do_comm28,457 -do_comm(1) :-do_comm28,457 -do_comm(1) :-do_comm36,617 -do_comm(1) :-do_comm36,617 -do_comm(1) :-do_comm36,617 -do_comm(1).do_comm41,703 -do_comm(1).do_comm41,703 -gen_list(0,[]) :- !.gen_list43,716 -gen_list(0,[]) :- !.gen_list43,716 -gen_list(0,[]) :- !.gen_list43,716 -gen_list(I,I.List) :-gen_list44,737 -gen_list(I,I.List) :-gen_list44,737 -gen_list(I,I.List) :-gen_list44,737 - -library/lammpi/hash.c,883 -#define BUCKET(BUCKET27,870 -#define HASHSIZE(HASHSIZE28,912 -static hashnode* hash_lookup(hashtable table,ulong key){hash_lookup34,1033 -__ptr_t get_next_object(hashtable table,ulong key)get_next_object43,1357 -__ptr_t delete(hashtable table,ulong key)delete57,1758 -__ptr_t replace_object(hashtable table,ulong key,__ptr_t newobj)replace_object80,2211 -__ptr_t get_object(hashtable table,ulong key){get_object93,2557 -hashtable new_hashtable(ulong hashsize) {new_hashtable102,2746 -static int mhash(hashtable table,ulong key)mhash119,3192 -int insere(hashtable table,ulong key,__ptr_t obj)insere125,3323 -void free_hashtable(hashtable table)free_hashtable140,3633 -void init_hash_traversal(hashtable table) {init_hash_traversal161,4158 -__ptr_t next_hash_object(hashtable table)next_hash_object168,4329 -__ptr_t next_hashnode(hashtable table)next_hashnode194,5037 - -library/lammpi/hash.h,1327 -#define HASHHASH23,824 -#define __ptr_t __ptr_t26,919 -#define __ptr_t __ptr_t28,982 -#define ulong ulong32,1068 -#define NULL NULL36,1121 -struct bucket {bucket40,1150 - struct bucket *next;next41,1166 - struct bucket *next;bucket::next41,1166 - ulong value; /* Value >=0 used as key in the hashing*/ value42,1188 - ulong value; /* Value >=0 used as key in the hashing*/ bucket::value42,1188 - __ptr_t obj; /* pointer to a object*/obj43,1250 - __ptr_t obj; /* pointer to a object*/bucket::obj43,1250 -typedef struct bucket hashnode;hashnode45,1297 -struct hashtable_s {hashtable_s48,1332 - hashnode **buckets; //buckets49,1353 - hashnode **buckets; //hashtable_s::buckets49,1353 - ulong size; // number of bucketssize50,1378 - ulong size; // number of bucketshashtable_s::size50,1378 - ulong last_bucket; // used in searchs/ hash traversalslast_bucket51,1421 - ulong last_bucket; // used in searchs/ hash traversalshashtable_s::last_bucket51,1421 - ulong n_entries; // number of entries in the hashtablen_entries52,1478 - ulong n_entries; // number of entries in the hashtablehashtable_s::n_entries52,1478 - hashnode* last_node;last_node53,1535 - hashnode* last_node;hashtable_s::last_node53,1535 -typedef struct hashtable_s* hashtable;hashtable57,1594 - -library/lammpi/prologterms2c.c,833 -#define Quote_illegal_f Quote_illegal_f44,1216 -#define Ignore_ops_f Ignore_ops_f45,1250 -#define Handle_vars_f Handle_vars_f46,1284 -#define Use_portray_f Use_portray_f47,1318 -#define To_heap_f To_heap_f48,1352 -struct buffer_ds buffers[1024]; buffers56,1420 -write_msg(const char *fun,const char *file, int line,write_msg69,1969 -expand_buffer(const size_t space ) {expand_buffer87,2571 -void change_buffer_size(const size_t newsize) {change_buffer_size101,2909 -p2c_putt(const YAP_Term t) {p2c_putt133,3796 -write_term_to_stream(const int fd,const YAP_Term term) {write_term_to_stream150,4338 -read_term_from_stream(const int fd) {read_term_from_stream166,4765 -term2string(char *const ptr, size_t *size, const YAP_Term t) {term2string192,5707 -string2term(char *const ptr,const size_t *size) {string2term214,6238 - -library/lammpi/prologterms2c.h,916 -#define PROLOGTERMS2C PROLOGTERMS2C24,939 -#define buffer buffer73,2551 -#define DEL_BUFFER(DEL_BUFFER76,2680 -#define USED_BUFFER(USED_BUFFER78,2851 -#define RESET_BUFFER(RESET_BUFFER80,2908 -#define BUFFER_PTR BUFFER_PTR82,2993 -#define BUFFER_SIZE BUFFER_SIZE83,3025 -#define BUFFER_LEN BUFFER_LEN84,3058 -#define BUFFER_POS BUFFER_POS85,3090 -#define COPY_BUFFER_DS(COPY_BUFFER_DS87,3144 -struct buffer_ds {buffer_ds92,3447 - size_t size, // size of the buffersize93,3466 - size_t size, // size of the bufferbuffer_ds::size93,3466 - len; // size of the stringlen94,3504 - len; // size of the stringbuffer_ds::len94,3504 - char *ptr; // pointer to the bufferptr95,3542 - char *ptr; // pointer to the bufferbuffer_ds::ptr95,3542 - size_t pos; // position (used while reading)pos96,3583 - size_t pos; // position (used while reading)buffer_ds::pos96,3583 - -library/lammpi/yap_mpi.c,4347 -struct broadcast_req {broadcast_req49,1272 - void *ptr; // pointer to an allocated memory buffer associated to the broadcastptr50,1295 - void *ptr; // pointer to an allocated memory buffer associated to the broadcastbroadcast_req::ptr50,1295 - int nreq; // number of requests associated to the broadcastnreq51,1377 - int nreq; // number of requests associated to the broadcastbroadcast_req::nreq51,1377 -typedef struct broadcast_req BroadcastRequest;BroadcastRequest53,1443 -#define IDTYPE IDTYPE56,1563 -#define HANDLE2INT(HANDLE2INT57,1584 -#define INT2HANDLE(INT2HANDLE58,1621 -#define BREQ2INT(BREQ2INT60,1664 -#define INT2BREQ(INT2BREQ61,1699 -#define MPI_CALL(MPI_CALL63,1746 -static YAP_Bool mpi_statuss[1024];mpi_statuss72,2052 -#define mpi_status mpi_status73,2087 -#define HASHSIZE HASHSIZE77,2164 -static hashtable requests=NULL;requests78,2186 -static hashtable broadcasts=NULL;broadcasts79,2218 -static unsigned long bytes_sent; // bytes received (mpi headers are ignored)bytes_sent92,2516 -static unsigned long bytes_recv; // bytes receivedbytes_recv93,2596 -static unsigned long num_msgs_sent; // number of messages sentnum_msgs_sent94,2650 -static unsigned long num_msgs_recv; // number of messages receivednum_msgs_recv95,2713 -static unsigned long max_s_recv_msg;// maximum size of a message received max_s_recv_msg96,2780 -static unsigned long max_s_sent_msg;// maximum size of a message sentmax_s_sent_msg97,2855 -static double total_time_spent; // total time spend in communication codetotal_time_spent98,2925 -#define RESET_STATS(RESET_STATS101,3025 -#define MSG_SENT(MSG_SENT102,3159 -#define MSG_RECV(MSG_RECV103,3267 -#define MPITIME MPITIME105,3376 -#define CONT_TIMER(CONT_TIMER108,3430 -#define PAUSE_TIMER(PAUSE_TIMER109,3470 -#define return(return111,3534 -static struct timeval _tstarts[1024], _tends[1024];_tstarts113,3585 -static struct timeval _tstarts[1024], _tends[1024];_tends113,3585 -#define _tsart _tsart115,3638 -#define _tend _tend116,3682 -void tstart(void) {tstart122,3794 -void tend(void) {tend127,3886 -double tval(){tval133,3977 -static YAP_Bool mpi_stats(void){ mpi_stats144,4263 -static YAP_Bool mpi_reset_stats(void) {RESET_STATS(); return true;}mpi_reset_stats158,4921 -#define PAUSE_TIMER(PAUSE_TIMER161,4998 -#define CONT_TIMER(CONT_TIMER162,5020 -#define RESET_STATS(RESET_STATS165,5043 -#define MSG_SENT(MSG_SENT166,5073 -#define MSG_RECV(MSG_RECV167,5103 -#define return(return168,5133 -new_request(MPI_Request *handle,void* ptr) {new_request176,5382 -get_request(MPI_Request *handle) {get_request181,5509 -free_request(MPI_Request *handle) {free_request186,5625 -new_broadcast(void) {new_broadcast199,6031 -free_broadcast_request(MPI_Request *handle) {free_broadcast_request212,6300 -get_broadcast_request(MPI_Request *handle) {get_broadcast_request228,6709 -new_broadcast_request(BroadcastRequest* b,MPI_Request *handle,void* ptr) {new_broadcast_request235,6845 -static YAP_Bool mpi_error(int errcode){mpi_error243,7169 -mpi_init(void){mpi_init262,7702 -rcv_msg_thread(char *handle_pred) {rcv_msg_thread284,8303 -mpi_init_rcv_thread(void){mpi_init_rcv_thread303,8857 -mpi_finalize(void){mpi_finalize326,9441 -mpi_comm_size(void){mpi_comm_size334,9643 -mpi_comm_rank(void){mpi_comm_rank344,9874 -mpi_version(void){mpi_version354,10114 -mpi_get_processor_name(void) {mpi_get_processor_name365,10329 -mpi_isend(void) {mpi_isend379,10875 -mpi_send(void) {mpi_send423,12158 -mpi_recv(void) {mpi_recv456,12976 -mpi_irecv(void) {mpi_irecv536,15365 -mpi_wait(void) {mpi_wait583,16906 -mpi_test(void) {mpi_test614,17720 -mpi_wait_recv(void) {mpi_wait_recv649,18628 -mpi_test_recv(void) {mpi_test_recv688,19682 -mpi_barrier(void) {mpi_barrier724,20544 -mpi_bcast(void) {mpi_bcast742,21128 -my_bcast(YAP_Term t1,YAP_Term t2, YAP_Term t3) {my_bcast799,22588 -mpi_bcast2(void) {mpi_bcast2838,23427 -mpi_bcast3(void) {mpi_bcast3850,23858 -my_ibcast(YAP_Term t1,YAP_Term t2, YAP_Term t3) {my_ibcast859,24086 -mpi_ibcast3(void) {mpi_ibcast3923,25681 -mpi_ibcast2(void) {mpi_ibcast2930,25803 -gc(hashtable ht) {gc940,26097 -mpi_gc(void) {mpi_gc968,26675 -size_t BLOCK_SIZE=4*1024;BLOCK_SIZE980,27027 -mpi_default_buffer_size(void)mpi_default_buffer_size983,27070 -init_mpi(void) {init_mpi1007,27627 - -library/lineutils.yap,11800 -search_for(C,L) :-search_for69,1328 -search_for(C,L) :-search_for69,1328 -search_for(C,L) :-search_for69,1328 -search_for(C) --> [C], !.search_for72,1371 -search_for(C) --> [C], !.search_for72,1371 -search_for(C) --> [C], !.search_for72,1371 -search_for(C) --> [_],search_for73,1397 -search_for(C) --> [_],search_for73,1397 -search_for(C) --> [_],search_for73,1397 -scan_integer(N) -->scan_integer82,1653 -scan_integer(N) -->scan_integer82,1653 -scan_integer(N) -->scan_integer82,1653 -scan_integer(N) -->scan_integer86,1715 -scan_integer(N) -->scan_integer86,1715 -scan_integer(N) -->scan_integer86,1715 -integer(N) -->integer95,1968 -integer(N) -->integer95,1968 -integer(N) -->integer95,1968 -integer(N) -->integer99,2020 -integer(N) -->integer99,2020 -integer(N) -->integer99,2020 -scan_natural(N) -->scan_natural108,2256 -scan_natural(N) -->scan_natural108,2256 -scan_natural(N) -->scan_natural108,2256 -scan_natural(N0,N) -->scan_natural111,2298 -scan_natural(N0,N) -->scan_natural111,2298 -scan_natural(N0,N) -->scan_natural111,2298 -scan_natural(N,N) --> [].scan_natural116,2403 -scan_natural(N,N) --> [].scan_natural116,2403 -scan_natural(N,N) --> [].scan_natural116,2403 -natural(N) -->natural124,2629 -natural(N) -->natural124,2629 -natural(N) -->natural124,2629 -natural(N0,N) -->natural127,2661 -natural(N0,N) -->natural127,2661 -natural(N0,N) -->natural127,2661 -natural(N,N) --> [].natural132,2761 -natural(N,N) --> [].natural132,2761 -natural(N,N) --> [].natural132,2761 -skip_whitespace([0' |Blanks]) -->skip_whitespace138,2928 -skip_whitespace([0' |Blanks]) -->skip_whitespace138,2928 -skip_whitespace([0' |Blanks]) -->skip_whitespace138,2928 -skip_whitespace([0' |Blanks]) -->skip_whitespace141,2996 -skip_whitespace([0' |Blanks]) -->skip_whitespace141,2996 -skip_whitespace([0' |Blanks]) -->skip_whitespace141,2996 -skip_whitespace( [] ) -->skip_whitespace144,3064 -skip_whitespace( [] ) -->skip_whitespace144,3064 -skip_whitespace( [] ) -->skip_whitespace144,3064 -blank([0' |Blanks]) -->blank151,3234 -blank([0' |Blanks]) -->blank151,3234 -blank([0' |Blanks]) -->blank151,3234 -blank([0' |Blanks]) -->blank154,3282 -blank([0' |Blanks]) -->blank154,3282 -blank([0' |Blanks]) -->blank154,3282 -blank( [] ) -->blank157,3330 -blank( [] ) -->blank157,3330 -blank( [] ) -->blank157,3330 -split(String, Strings) :-split166,3498 -split(String, Strings) :-split166,3498 -split(String, Strings) :-split166,3498 -split(String, SplitCodes, Strings) :-split186,3869 -split(String, SplitCodes, Strings) :-split186,3869 -split(String, SplitCodes, Strings) :-split186,3869 -split_at_blank(SplitCodes, More) -->split_at_blank189,3958 -split_at_blank(SplitCodes, More) -->split_at_blank189,3958 -split_at_blank(SplitCodes, More) -->split_at_blank189,3958 -split_at_blank(SplitCodes, [[C|New]| More]) -->split_at_blank193,4067 -split_at_blank(SplitCodes, [[C|New]| More]) -->split_at_blank193,4067 -split_at_blank(SplitCodes, [[C|New]| More]) -->split_at_blank193,4067 -split_at_blank(_, []) --> [].split_at_blank196,4156 -split_at_blank(_, []) --> [].split_at_blank196,4156 -split_at_blank(_, []) --> [].split_at_blank196,4156 -split_(SplitCodes, [], More) -->split_198,4187 -split_(SplitCodes, [], More) -->split_198,4187 -split_(SplitCodes, [], More) -->split_198,4187 -split_(SplitCodes, [C|New], Set) -->split_202,4292 -split_(SplitCodes, [C|New], Set) -->split_202,4292 -split_(SplitCodes, [C|New], Set) -->split_202,4292 -split_(_, [], []) --> [].split_205,4369 -split_(_, [], []) --> [].split_205,4369 -split_(_, [], []) --> [].split_205,4369 -split(Text, SplitCodes, DoubleQs, SingleQs, Strings) :-split208,4397 -split(Text, SplitCodes, DoubleQs, SingleQs, Strings) :-split208,4397 -split(Text, SplitCodes, DoubleQs, SingleQs, Strings) :-split208,4397 -split_element(SplitCodes, DoubleQs, SingleQs, Strings) -->split_element211,4521 -split_element(SplitCodes, DoubleQs, SingleQs, Strings) -->split_element211,4521 -split_element(SplitCodes, DoubleQs, SingleQs, Strings) -->split_element211,4521 -split_element(_SplitCodes, _DoubleQs, _SingleQs, []) --> !.split_element215,4661 -split_element(_SplitCodes, _DoubleQs, _SingleQs, []) --> !.split_element215,4661 -split_element(_SplitCodes, _DoubleQs, _SingleQs, []) --> !.split_element215,4661 -split_element(_SplitCodes, _DoubleQs, _SingleQs, [[]]) --> [].split_element216,4722 -split_element(_SplitCodes, _DoubleQs, _SingleQs, [[]]) --> [].split_element216,4722 -split_element(_SplitCodes, _DoubleQs, _SingleQs, [[]]) --> [].split_element216,4722 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element218,4787 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element218,4787 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element218,4787 -split_element(SplitCodes, DoubleQs, SingleQs, [[]|Strings], C) -->split_element224,4990 -split_element(SplitCodes, DoubleQs, SingleQs, [[]|Strings], C) -->split_element224,4990 -split_element(SplitCodes, DoubleQs, SingleQs, [[]|Strings], C) -->split_element224,4990 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element228,5150 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element228,5150 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element228,5150 -split_element(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_element232,5305 -split_element(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_element232,5305 -split_element(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_element232,5305 -split_within(SplitCodes, DoubleQs, SingleQs, Strings) -->split_within235,5450 -split_within(SplitCodes, DoubleQs, SingleQs, Strings) -->split_within235,5450 -split_within(SplitCodes, DoubleQs, SingleQs, Strings) -->split_within235,5450 -split_within(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_within239,5582 -split_within(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_within239,5582 -split_within(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_within239,5582 -split_within(SplitCodes, DoubleQs, C-SingleQs, Strings, C) -->split_within245,5783 -split_within(SplitCodes, DoubleQs, C-SingleQs, Strings, C) -->split_within245,5783 -split_within(SplitCodes, DoubleQs, C-SingleQs, Strings, C) -->split_within245,5783 -split_within(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_within248,5909 -split_within(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_within248,5909 -split_within(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_within248,5909 -split_unquoted(String, SplitCodes, Strings) :-split_unquoted269,6418 -split_unquoted(String, SplitCodes, Strings) :-split_unquoted269,6418 -split_unquoted(String, SplitCodes, Strings) :-split_unquoted269,6418 -split_unquoted_at_blank(SplitCodes, [[0'"|New]|More]) --> %0'"split_unquoted_at_blank272,6532 -split_unquoted_at_blank(SplitCodes, [[0'"|New]|More]) --> %0'"split_unquoted_at_blank272,6532 -split_unquoted_at_blank(SplitCodes, [[0'"|New]|More]) --> %0'"split_unquoted_at_blank272,6532 -split_unquoted_at_blank(SplitCodes, More) -->split_unquoted_at_blank276,6681 -split_unquoted_at_blank(SplitCodes, More) -->split_unquoted_at_blank276,6681 -split_unquoted_at_blank(SplitCodes, More) -->split_unquoted_at_blank276,6681 -split_unquoted_at_blank(SplitCodes, [[C|New]| More]) -->split_unquoted_at_blank280,6829 -split_unquoted_at_blank(SplitCodes, [[C|New]| More]) -->split_unquoted_at_blank280,6829 -split_unquoted_at_blank(SplitCodes, [[C|New]| More]) -->split_unquoted_at_blank280,6829 -split_unquoted_at_blank(_, []) --> [].split_unquoted_at_blank283,6949 -split_unquoted_at_blank(_, []) --> [].split_unquoted_at_blank283,6949 -split_unquoted_at_blank(_, []) --> [].split_unquoted_at_blank283,6949 -split_unquoted(SplitCodes, [], More) -->split_unquoted285,6989 -split_unquoted(SplitCodes, [], More) -->split_unquoted285,6989 -split_unquoted(SplitCodes, [], More) -->split_unquoted285,6989 -split_unquoted(SplitCodes, [C|New], Set) -->split_unquoted289,7132 -split_unquoted(SplitCodes, [C|New], Set) -->split_unquoted289,7132 -split_unquoted(SplitCodes, [C|New], Set) -->split_unquoted289,7132 -split_unquoted(_, [], []) --> [].split_unquoted292,7239 -split_unquoted(_, [], []) --> [].split_unquoted292,7239 -split_unquoted(_, [], []) --> [].split_unquoted292,7239 -split_quoted( [0'"], _More) --> %0'"split_quoted312,7667 -split_quoted( [0'"], _More) --> %0'"split_quoted312,7667 -split_quoted( [0'"], _More) --> %0'"split_quoted312,7667 -split_quoted( [0'\\ ,C|New], More) --> split_quoted314,7714 -split_quoted( [0'\\ ,C|New], More) --> split_quoted314,7714 -split_quoted( [0'\\ ,C|New], More) --> split_quoted314,7714 -split_quoted( [C|New], More) --> %0'"split_quoted319,7811 -split_quoted( [C|New], More) --> %0'"split_quoted319,7811 -split_quoted( [C|New], More) --> %0'"split_quoted319,7811 -fields(String, Strings) :-fields329,8041 -fields(String, Strings) :-fields329,8041 -fields(String, Strings) :-fields329,8041 -fields(String, FieldsCodes, Strings) :-fields345,8484 -fields(String, FieldsCodes, Strings) :-fields345,8484 -fields(String, FieldsCodes, Strings) :-fields345,8484 -dofields(FieldsCodes, [], New.More) -->dofields355,8655 -dofields(FieldsCodes, [], New.More) -->dofields355,8655 -dofields(FieldsCodes, [], New.More) -->dofields355,8655 -dofields(FieldsCodes, [C|New], Set) -->dofields359,8768 -dofields(FieldsCodes, [C|New], Set) -->dofields359,8768 -dofields(FieldsCodes, [C|New], Set) -->dofields359,8768 -dofields(_, [], []) --> [].dofields362,8851 -dofields(_, [], []) --> [].dofields362,8851 -dofields(_, [], []) --> [].dofields362,8851 -glue([], _, []).glue369,9027 -glue([], _, []).glue369,9027 -glue([A], _, A) :- !.glue370,9044 -glue([A], _, A) :- !.glue370,9044 -glue([A], _, A) :- !.glue370,9044 -glue([H|T], [B|_], Merged) :-glue371,9066 -glue([H|T], [B|_], Merged) :-glue371,9066 -glue([H|T], [B|_], Merged) :-glue371,9066 -copy_line(StreamInp, StreamOut) :-copy_line379,9258 -copy_line(StreamInp, StreamOut) :-copy_line379,9258 -copy_line(StreamInp, StreamOut) :-copy_line379,9258 -select(Sep, In, Out) :-select393,9769 -select(Sep, In, Out) :-select393,9769 -select(Sep, In, Out) :-select393,9769 -select :-select397,9863 -filter(StreamInp, StreamOut, Command) :-filter402,9902 -filter(StreamInp, StreamOut, Command) :-filter402,9902 -filter(StreamInp, StreamOut, Command) :-filter402,9902 -process(StreamInp, Command) :-process421,10259 -process(StreamInp, Command) :-process421,10259 -process(StreamInp, Command) :-process421,10259 -file_filter(Inp, Out, Command) :-file_filter450,10945 -file_filter(Inp, Out, Command) :-file_filter450,10945 -file_filter(Inp, Out, Command) :-file_filter450,10945 -file_filter_with_initialization(Inp, Out, Command, FormatString, Parameters) :-file_filter_with_initialization463,11393 -file_filter_with_initialization(Inp, Out, Command, FormatString, Parameters) :-file_filter_with_initialization463,11393 -file_filter_with_initialization(Inp, Out, Command, FormatString, Parameters) :-file_filter_with_initialization463,11393 -file_filter_with_start_end(Inp, Out, Command, StartGoal, EndGoal) :-file_filter_with_start_end479,11994 -file_filter_with_start_end(Inp, Out, Command, StartGoal, EndGoal) :-file_filter_with_start_end479,11994 -file_filter_with_start_end(Inp, Out, Command, StartGoal, EndGoal) :-file_filter_with_start_end479,11994 -file_select(Inp, Command) :-file_select504,12767 -file_select(Inp, Command) :-file_select504,12767 -file_select(Inp, Command) :-file_select504,12767 - -library/listing.yap,198 -portray_clause(Stream, Term, M:Options) :-portray_clause49,1121 -portray_clause(Stream, Term, M:Options) :-portray_clause49,1121 -portray_clause(Stream, Term, M:Options) :-portray_clause49,1121 - -library/lists.yap,14489 -append(ListOfLists, List) :-append200,4604 -append(ListOfLists, List) :-append200,4604 -append(ListOfLists, List) :-append200,4604 -append_([], []).append_204,4693 -append_([], []).append_204,4693 -append_([L], L).append_205,4710 -append_([L], L).append_205,4710 -append_([L1,L2], L) :-append_206,4727 -append_([L1,L2], L) :-append_206,4727 -append_([L1,L2], L) :-append_206,4727 -append_([L1,L2|[L3|LL]], L) :-append_208,4768 -append_([L1,L2|[L3|LL]], L) :-append_208,4768 -append_([L1,L2|[L3|LL]], L) :-append_208,4768 -d(_, [X], L).d216,4955 -d(_, [X], L).d216,4955 -last([H|List], Last) :-last219,4973 -last([H|List], Last) :-last219,4973 -last([H|List], Last) :-last219,4973 -last([], Last, Last).last222,5020 -last([], Last, Last).last222,5020 -last([H|List], _, Last) :-last223,5042 -last([H|List], _, Last) :-last223,5042 -last([H|List], _, Last) :-last223,5042 -nextto(X,Y, [X,Y|_]).nextto231,5308 -nextto(X,Y, [X,Y|_]).nextto231,5308 -nextto(X,Y, [_|List]) :-nextto232,5330 -nextto(X,Y, [_|List]) :-nextto232,5330 -nextto(X,Y, [_|List]) :-nextto232,5330 -nth0(V, In, Element) :- var(V), !,nth0243,5807 -nth0(V, In, Element) :- var(V), !,nth0243,5807 -nth0(V, In, Element) :- var(V), !,nth0243,5807 -nth0(0, [Head|_], Head) :- !.nth0245,5876 -nth0(0, [Head|_], Head) :- !.nth0245,5876 -nth0(0, [Head|_], Head) :- !.nth0245,5876 -nth0(N, [_|Tail], Elem) :-nth0246,5906 -nth0(N, [_|Tail], Elem) :-nth0246,5906 -nth0(N, [_|Tail], Elem) :-nth0246,5906 -find_nth0(0, [Head|_], Head) :- !.find_nth0250,5972 -find_nth0(0, [Head|_], Head) :- !.find_nth0250,5972 -find_nth0(0, [Head|_], Head) :- !.find_nth0250,5972 -find_nth0(N, [_|Tail], Elem) :-find_nth0251,6007 -find_nth0(N, [_|Tail], Elem) :-find_nth0251,6007 -find_nth0(N, [_|Tail], Elem) :-find_nth0251,6007 -nth1(V, In, Element) :- var(V), !,nth1256,6079 -nth1(V, In, Element) :- var(V), !,nth1256,6079 -nth1(V, In, Element) :- var(V), !,nth1256,6079 -nth1(1, [Head|_], Head) :- !.nth1258,6148 -nth1(1, [Head|_], Head) :- !.nth1258,6148 -nth1(1, [Head|_], Head) :- !.nth1258,6148 -nth1(N, [_|Tail], Elem) :-nth1259,6178 -nth1(N, [_|Tail], Elem) :-nth1259,6178 -nth1(N, [_|Tail], Elem) :-nth1259,6178 -nth(V, In, Element) :- var(V), !,nth264,6283 -nth(V, In, Element) :- var(V), !,nth264,6283 -nth(V, In, Element) :- var(V), !,nth264,6283 -nth(1, [Head|_], Head) :- !.nth266,6351 -nth(1, [Head|_], Head) :- !.nth266,6351 -nth(1, [Head|_], Head) :- !.nth266,6351 -nth(N, [_|Tail], Elem) :-nth267,6380 -nth(N, [_|Tail], Elem) :-nth267,6380 -nth(N, [_|Tail], Elem) :-nth267,6380 -find_nth(1, [Head|_], Head) :- !.find_nth272,6484 -find_nth(1, [Head|_], Head) :- !.find_nth272,6484 -find_nth(1, [Head|_], Head) :- !.find_nth272,6484 -find_nth(N, [_|Tail], Elem) :-find_nth273,6518 -find_nth(N, [_|Tail], Elem) :-find_nth273,6518 -find_nth(N, [_|Tail], Elem) :-find_nth273,6518 -generate_nth(I, I, [Head|_], Head).generate_nth278,6588 -generate_nth(I, I, [Head|_], Head).generate_nth278,6588 -generate_nth(I, IN, [_|List], El) :-generate_nth279,6624 -generate_nth(I, IN, [_|List], El) :-generate_nth279,6624 -generate_nth(I, IN, [_|List], El) :-generate_nth279,6624 -nth0(V, In, Element, Tail) :- var(V), !,nth0293,7201 -nth0(V, In, Element, Tail) :- var(V), !,nth0293,7201 -nth0(V, In, Element, Tail) :- var(V), !,nth0293,7201 -nth0(0, [Head|Tail], Head, Tail) :- !.nth0295,7282 -nth0(0, [Head|Tail], Head, Tail) :- !.nth0295,7282 -nth0(0, [Head|Tail], Head, Tail) :- !.nth0295,7282 -nth0(N, [Head|Tail], Elem, [Head|Rest]) :-nth0296,7321 -nth0(N, [Head|Tail], Elem, [Head|Rest]) :-nth0296,7321 -nth0(N, [Head|Tail], Elem, [Head|Rest]) :-nth0296,7321 -find_nth0(0, [Head|Tail], Head, Tail) :- !.find_nth0300,7404 -find_nth0(0, [Head|Tail], Head, Tail) :- !.find_nth0300,7404 -find_nth0(0, [Head|Tail], Head, Tail) :- !.find_nth0300,7404 -find_nth0(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth0301,7448 -find_nth0(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth0301,7448 -find_nth0(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth0301,7448 -nth1(V, In, Element, Tail) :- var(V), !,nth1307,7543 -nth1(V, In, Element, Tail) :- var(V), !,nth1307,7543 -nth1(V, In, Element, Tail) :- var(V), !,nth1307,7543 -nth1(1, [Head|Tail], Head, Tail) :- !.nth1309,7624 -nth1(1, [Head|Tail], Head, Tail) :- !.nth1309,7624 -nth1(1, [Head|Tail], Head, Tail) :- !.nth1309,7624 -nth1(N, [Head|Tail], Elem, [Head|Rest]) :-nth1310,7663 -nth1(N, [Head|Tail], Elem, [Head|Rest]) :-nth1310,7663 -nth1(N, [Head|Tail], Elem, [Head|Rest]) :-nth1310,7663 -nth(V, In, Element, Tail) :- var(V), !,nth314,7746 -nth(V, In, Element, Tail) :- var(V), !,nth314,7746 -nth(V, In, Element, Tail) :- var(V), !,nth314,7746 -nth(1, [Head|Tail], Head, Tail) :- !.nth316,7826 -nth(1, [Head|Tail], Head, Tail) :- !.nth316,7826 -nth(1, [Head|Tail], Head, Tail) :- !.nth316,7826 -nth(N, [Head|Tail], Elem, [Head|Rest]) :-nth317,7864 -nth(N, [Head|Tail], Elem, [Head|Rest]) :-nth317,7864 -nth(N, [Head|Tail], Elem, [Head|Rest]) :-nth317,7864 -find_nth(1, [Head|Tail], Head, Tail) :- !.find_nth321,7945 -find_nth(1, [Head|Tail], Head, Tail) :- !.find_nth321,7945 -find_nth(1, [Head|Tail], Head, Tail) :- !.find_nth321,7945 -find_nth(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth322,7988 -find_nth(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth322,7988 -find_nth(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth322,7988 -generate_nth(I, I, [Head|Tail], Head, Tail).generate_nth327,8080 -generate_nth(I, I, [Head|Tail], Head, Tail).generate_nth327,8080 -generate_nth(I, IN, [E|List], El, [E|Tail]) :-generate_nth328,8125 -generate_nth(I, IN, [E|List], El, [E|Tail]) :-generate_nth328,8125 -generate_nth(I, IN, [E|List], El, [E|Tail]) :-generate_nth328,8125 -permutation([], []).permutation344,8851 -permutation([], []).permutation344,8851 -permutation(List, [First|Perm]) :-permutation345,8872 -permutation(List, [First|Perm]) :-permutation345,8872 -permutation(List, [First|Perm]) :-permutation345,8872 -prefix([], _).prefix352,9062 -prefix([], _).prefix352,9062 -prefix([Elem | Rest_of_part], [Elem | Rest_of_whole]) :-prefix353,9077 -prefix([Elem | Rest_of_part], [Elem | Rest_of_whole]) :-prefix353,9077 -prefix([Elem | Rest_of_part], [Elem | Rest_of_whole]) :-prefix353,9077 -remove_duplicates([], []).remove_duplicates360,9333 -remove_duplicates([], []).remove_duplicates360,9333 -remove_duplicates([Elem|L], [Elem|NL]) :-remove_duplicates361,9360 -remove_duplicates([Elem|L], [Elem|NL]) :-remove_duplicates361,9360 -remove_duplicates([Elem|L], [Elem|NL]) :-remove_duplicates361,9360 -reverse(List, Reversed) :-reverse369,9617 -reverse(List, Reversed) :-reverse369,9617 -reverse(List, Reversed) :-reverse369,9617 -reverse([], Reversed, Reversed).reverse372,9675 -reverse([], Reversed, Reversed).reverse372,9675 -reverse([Head|Tail], Sofar, Reversed) :-reverse373,9708 -reverse([Head|Tail], Sofar, Reversed) :-reverse373,9708 -reverse([Head|Tail], Sofar, Reversed) :-reverse373,9708 -same_length([], []).same_length385,10210 -same_length([], []).same_length385,10210 -same_length([_|List1], [_|List2]) :-same_length386,10231 -same_length([_|List1], [_|List2]) :-same_length386,10231 -same_length([_|List1], [_|List2]) :-same_length386,10231 -selectchk(Elem, List, Residue) :-selectchk396,10436 -selectchk(Elem, List, Residue) :-selectchk396,10436 -selectchk(Elem, List, Residue) :-selectchk396,10436 -selectchk(Elem, List, Rest) :-selectchk401,10539 -selectchk(Elem, List, Rest) :-selectchk401,10539 -selectchk(Elem, List, Rest) :-selectchk401,10539 -select(Element, [Element|Rest], Rest).select414,10840 -select(Element, [Element|Rest], Rest).select414,10840 -select(Element, [Head|Tail], [Head|Rest]) :-select415,10879 -select(Element, [Head|Tail], [Head|Rest]) :-select415,10879 -select(Element, [Head|Tail], [Head|Rest]) :-select415,10879 -sublist(L, L).sublist426,11207 -sublist(L, L).sublist426,11207 -sublist(Sub, [H|T]) :-sublist427,11222 -sublist(Sub, [H|T]) :-sublist427,11222 -sublist(Sub, [H|T]) :-sublist427,11222 -'$sublist1'(Sub, _, Sub).$sublist1430,11271 -'$sublist1'(Sub, _, Sub)./p,predicate,predicate definition430,11271 -'$sublist1'(Sub, _, Sub).$sublist1430,11271 -'$sublist1'([H|T], _, Sub) :-$sublist1431,11297 -'$sublist1'([H|T], _, Sub) :-$sublist1431,11297 -'$sublist1'([H|T], _, Sub) :-$sublist1431,11297 -'$sublist1'([H|T], X, [X|Sub]) :-$sublist1433,11352 -'$sublist1'([H|T], X, [X|Sub]) :-$sublist1433,11352 -'$sublist1'([H|T], X, [X|Sub]) :-$sublist1433,11352 -substitute(X, XList, Y, YList) :-substitute439,11569 -substitute(X, XList, Y, YList) :-substitute439,11569 -substitute(X, XList, Y, YList) :-substitute439,11569 -substitute2([], _, _, []).substitute2442,11638 -substitute2([], _, _, []).substitute2442,11638 -substitute2([X0|XList], X, Y, [Y|YList]) :-substitute2443,11665 -substitute2([X0|XList], X, Y, [Y|YList]) :-substitute2443,11665 -substitute2([X0|XList], X, Y, [Y|YList]) :-substitute2443,11665 -substitute2([X0|XList], X, Y, [X0|YList]) :-substitute2446,11756 -substitute2([X0|XList], X, Y, [X0|YList]) :-substitute2446,11756 -substitute2([X0|XList], X, Y, [X0|YList]) :-substitute2446,11756 -suffix(Suffix, Suffix).suffix453,11921 -suffix(Suffix, Suffix).suffix453,11921 -suffix(Suffix, [_|List]) :-suffix454,11945 -suffix(Suffix, [_|List]) :-suffix454,11945 -suffix(Suffix, [_|List]) :-suffix454,11945 -sumlist(Numbers, Total) :-sumlist466,12174 -sumlist(Numbers, Total) :-sumlist466,12174 -sumlist(Numbers, Total) :-sumlist466,12174 -sum_list(Numbers, SoFar, Total) :-sum_list473,12386 -sum_list(Numbers, SoFar, Total) :-sum_list473,12386 -sum_list(Numbers, SoFar, Total) :-sum_list473,12386 -sum_list(Numbers, Total) :-sum_list481,12573 -sum_list(Numbers, Total) :-sum_list481,12573 -sum_list(Numbers, Total) :-sum_list481,12573 -sumlist([], Total, Total).sumlist484,12631 -sumlist([], Total, Total).sumlist484,12631 -sumlist([Head|Tail], Sofar, Total) :-sumlist485,12658 -sumlist([Head|Tail], Sofar, Total) :-sumlist485,12658 -sumlist([Head|Tail], Sofar, Total) :-sumlist485,12658 -list_concat([], []).list_concat494,12871 -list_concat([], []).list_concat494,12871 -list_concat([H|T], L) :-list_concat495,12892 -list_concat([H|T], L) :-list_concat495,12892 -list_concat([H|T], L) :-list_concat495,12892 -list_concat([], L, L).list_concat499,12963 -list_concat([], L, L).list_concat499,12963 -list_concat([H|T], [H|Lf], Li) :-list_concat500,12986 -list_concat([H|T], [H|Lf], Li) :-list_concat500,12986 -list_concat([H|T], [H|Lf], Li) :-list_concat500,12986 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten_list(V) --> {var(V)}, !, [V].flatten_list521,13302 -flatten_list(V) --> {var(V)}, !, [V].flatten_list521,13302 -flatten_list(V) --> {var(V)}, !, [V].flatten_list521,13302 -flatten_list([]) --> !.flatten_list522,13340 -flatten_list([]) --> !.flatten_list522,13340 -flatten_list([]) --> !.flatten_list522,13340 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list(H) --> [H].flatten_list524,13424 -flatten_list(H) --> [H].flatten_list524,13424 -flatten_list(H) --> [H].flatten_list524,13424 -max_list([H|L],Max) :-max_list526,13450 -max_list([H|L],Max) :-max_list526,13450 -max_list([H|L],Max) :-max_list526,13450 -max_list([],Max,Max).max_list529,13494 -max_list([],Max,Max).max_list529,13494 -max_list([H|L],Max0,Max) :-max_list530,13516 -max_list([H|L],Max0,Max) :-max_list530,13516 -max_list([H|L],Max0,Max) :-max_list530,13516 -min_list([H|L],Max) :-min_list539,13616 -min_list([H|L],Max) :-min_list539,13616 -min_list([H|L],Max) :-min_list539,13616 -min_list([],Max,Max).min_list542,13660 -min_list([],Max,Max).min_list542,13660 -min_list([H|L],Max0,Max) :-min_list543,13682 -min_list([H|L],Max0,Max) :-min_list543,13682 -min_list([H|L],Max0,Max) :-min_list543,13682 -numlist(L, U, Ns) :-numlist559,13990 -numlist(L, U, Ns) :-numlist559,13990 -numlist(L, U, Ns) :-numlist559,13990 -numlist_(U, U, OUT) :- !, OUT = [U].numlist_565,14114 -numlist_(U, U, OUT) :- !, OUT = [U].numlist_565,14114 -numlist_(U, U, OUT) :- !, OUT = [U].numlist_565,14114 -numlist_(L, U, [L|Ns]) :-numlist_566,14151 -numlist_(L, U, [L|Ns]) :-numlist_566,14151 -numlist_(L, U, [L|Ns]) :-numlist_566,14151 -intersection([], _, []) :- !.intersection583,14525 -intersection([], _, []) :- !.intersection583,14525 -intersection([], _, []) :- !.intersection583,14525 -intersection([X|T], L, Intersect) :-intersection584,14555 -intersection([X|T], L, Intersect) :-intersection584,14555 -intersection([X|T], L, Intersect) :-intersection584,14555 -intersection([_|T], L, R) :-intersection588,14657 -intersection([_|T], L, R) :-intersection588,14657 -intersection([_|T], L, R) :-intersection588,14657 -subtract([], _, []) :- !.subtract599,14984 -subtract([], _, []) :- !.subtract599,14984 -subtract([], _, []) :- !.subtract599,14984 -subtract([E|T], D, R) :-subtract600,15010 -subtract([E|T], D, R) :-subtract600,15010 -subtract([E|T], D, R) :-subtract600,15010 -subtract([H|T], D, [H|R]) :-subtract603,15076 -subtract([H|T], D, [H|R]) :-subtract603,15076 -subtract([H|T], D, [H|R]) :-subtract603,15076 -list_to_set(List, Set) :-list_to_set614,15349 -list_to_set(List, Set) :-list_to_set614,15349 -list_to_set(List, Set) :-list_to_set614,15349 -list_to_set_([], R) :-list_to_set_618,15416 -list_to_set_([], R) :-list_to_set_618,15416 -list_to_set_([], R) :-list_to_set_618,15416 -list_to_set_([H|T], R) :-list_to_set_620,15455 -list_to_set_([H|T], R) :-list_to_set_620,15455 -list_to_set_([H|T], R) :-list_to_set_620,15455 -close_list([]) :- !.close_list624,15524 -close_list([]) :- !.close_list624,15524 -close_list([]) :- !.close_list624,15524 -close_list([_|T]) :-close_list625,15545 -close_list([_|T]) :-close_list625,15545 -close_list([_|T]) :-close_list625,15545 - -library/log2md.yap,93 -open_log(F) :-open_log48,957 -open_log(F) :-open_log48,957 -open_log(F) :-open_log48,957 - -library/mapargs.yap,8268 -mapargs(Pred, TermIn) :-mapargs53,1438 -mapargs(Pred, TermIn) :-mapargs53,1438 -mapargs(Pred, TermIn) :-mapargs53,1438 -mapargs_args(Pred, TermIn, I, N) :-mapargs_args57,1530 -mapargs_args(Pred, TermIn, I, N) :-mapargs_args57,1530 -mapargs_args(Pred, TermIn, I, N) :-mapargs_args57,1530 -mapargs(Pred, TermIn, TermOut) :-mapargs64,1705 -mapargs(Pred, TermIn, TermOut) :-mapargs64,1705 -mapargs(Pred, TermIn, TermOut) :-mapargs64,1705 -mapargs_args(Pred, TermIn, TermOut, I, N) :-mapargs_args69,1842 -mapargs_args(Pred, TermIn, TermOut, I, N) :-mapargs_args69,1842 -mapargs_args(Pred, TermIn, TermOut, I, N) :-mapargs_args69,1842 -mapargs(Pred, TermIn, TermOut1, TermOut2) :-mapargs77,2075 -mapargs(Pred, TermIn, TermOut1, TermOut2) :-mapargs77,2075 -mapargs(Pred, TermIn, TermOut1, TermOut2) :-mapargs77,2075 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, I, N) :-mapargs_args83,2264 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, I, N) :-mapargs_args83,2264 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, I, N) :-mapargs_args83,2264 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3) :-mapargs92,2565 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3) :-mapargs92,2565 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3) :-mapargs92,2565 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, I, N) :-mapargs_args98,2774 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, I, N) :-mapargs_args98,2774 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, I, N) :-mapargs_args98,2774 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4) :-mapargs108,3138 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4) :-mapargs108,3138 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4) :-mapargs108,3138 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4, I, N) :-mapargs_args116,3425 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4, I, N) :-mapargs_args116,3425 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4, I, N) :-mapargs_args116,3425 -sumargs(Pred, Term, A0, A1) :-sumargs127,3852 -sumargs(Pred, Term, A0, A1) :-sumargs127,3852 -sumargs(Pred, Term, A0, A1) :-sumargs127,3852 -sumargs_args(_, _, A0, A1, 0) :-sumargs_args131,3945 -sumargs_args(_, _, A0, A1, 0) :-sumargs_args131,3945 -sumargs_args(_, _, A0, A1, 0) :-sumargs_args131,3945 -sumargs_args(Pred, Term, A1, A3, N) :-sumargs_args134,3998 -sumargs_args(Pred, Term, A1, A3, N) :-sumargs_args134,3998 -sumargs_args(Pred, Term, A1, A3, N) :-sumargs_args134,3998 -foldargs(Goal, S, V0, V) :-foldargs141,4150 -foldargs(Goal, S, V0, V) :-foldargs141,4150 -foldargs(Goal, S, V0, V) :-foldargs141,4150 -foldargs_(Goal, S, V0, V, I, N) :-foldargs_145,4234 -foldargs_(Goal, S, V0, V, I, N) :-foldargs_145,4234 -foldargs_(Goal, S, V0, V, I, N) :-foldargs_145,4234 -foldargs(Goal, S, O1, V0, V) :-foldargs152,4398 -foldargs(Goal, S, O1, V0, V) :-foldargs152,4398 -foldargs(Goal, S, O1, V0, V) :-foldargs152,4398 -foldargs_(Goal, S, O1, V0, V, I, N) :-foldargs_157,4511 -foldargs_(Goal, S, O1, V0, V, I, N) :-foldargs_157,4511 -foldargs_(Goal, S, O1, V0, V, I, N) :-foldargs_157,4511 -foldargs(Goal, S, O1, O2, V0, V) :-foldargs165,4710 -foldargs(Goal, S, O1, O2, V0, V) :-foldargs165,4710 -foldargs(Goal, S, O1, O2, V0, V) :-foldargs165,4710 -foldargs_(Goal, S, O1, O2, V0, V, I, N) :-foldargs_171,4852 -foldargs_(Goal, S, O1, O2, V0, V, I, N) :-foldargs_171,4852 -foldargs_(Goal, S, O1, O2, V0, V, I, N) :-foldargs_171,4852 -foldargs(Goal, S, O1, O2, O3, V0, V) :-foldargs180,5083 -foldargs(Goal, S, O1, O2, O3, V0, V) :-foldargs180,5083 -foldargs(Goal, S, O1, O2, O3, V0, V) :-foldargs180,5083 -foldargs_(Goal, S, O1, O2, O3, V0, V, I, N) :-foldargs_187,5254 -foldargs_(Goal, S, O1, O2, O3, V0, V, I, N) :-foldargs_187,5254 -foldargs_(Goal, S, O1, O2, O3, V0, V, I, N) :-foldargs_187,5254 -goal_expansion(mapargs(Meta, In), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion198,5521 -goal_expansion(mapargs(Meta, In), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion198,5521 -goal_expansion(mapargs(Meta, In), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion198,5521 -goal_expansion(mapargs(Meta, In, Out), (functor(In, Name, Ar), functor(Out, Name, Ar), Mod:Goal)) :-goal_expansion218,6227 -goal_expansion(mapargs(Meta, In, Out), (functor(In, Name, Ar), functor(Out, Name, Ar), Mod:Goal)) :-goal_expansion218,6227 -goal_expansion(mapargs(Meta, In, Out), (functor(In, Name, Ar), functor(Out, Name, Ar), Mod:Goal)) :-goal_expansion218,6227 -goal_expansion(mapargs(Meta, In, Out1, Out2), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion238,6989 -goal_expansion(mapargs(Meta, In, Out1, Out2), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion238,6989 -goal_expansion(mapargs(Meta, In, Out1, Out2), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion238,6989 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion258,7836 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion258,7836 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion258,7836 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3, Out4), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), functor(Out4, Name, Ar), Mod:Goal)) :-goal_expansion278,8735 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3, Out4), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), functor(Out4, Name, Ar), Mod:Goal)) :-goal_expansion278,8735 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3, Out4), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), functor(Out4, Name, Ar), Mod:Goal)) :-goal_expansion278,8735 -goal_expansion(sumargs(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion298,9711 -goal_expansion(sumargs(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion298,9711 -goal_expansion(sumargs(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion298,9711 -goal_expansion(foldargs(Meta, In, Acc0, AccF), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion306,9925 -goal_expansion(foldargs(Meta, In, Acc0, AccF), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion306,9925 -goal_expansion(foldargs(Meta, In, Acc0, AccF), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion306,9925 -goal_expansion(foldargs(Meta, In, Out1, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), Mod:Goal)) :-goal_expansion326,10709 -goal_expansion(foldargs(Meta, In, Out1, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), Mod:Goal)) :-goal_expansion326,10709 -goal_expansion(foldargs(Meta, In, Out1, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), Mod:Goal)) :-goal_expansion326,10709 -goal_expansion(foldargs(Meta, In, Out1, Out2, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion346,11570 -goal_expansion(foldargs(Meta, In, Out1, Out2, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion346,11570 -goal_expansion(foldargs(Meta, In, Out1, Out2, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion346,11570 -goal_expansion(foldargs(Meta, In, Out1, Out2, Out3, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion366,12509 -goal_expansion(foldargs(Meta, In, Out1, Out2, Out3, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion366,12509 -goal_expansion(foldargs(Meta, In, Out1, Out2, Out3, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion366,12509 - -library/maplist.yap,19870 -plus(X,Y,Z) :- Z is X + Y.plus73,1681 -plus(X,Y,Z) :- Z is X + Y.plus73,1681 -plus(X,Y,Z) :- Z is X + Y.plus73,1681 -plus_if_pos(X,Y,Z) :- Y > 0, Z is X + Y.plus_if_pos75,1709 -plus_if_pos(X,Y,Z) :- Y > 0, Z is X + Y.plus_if_pos75,1709 -plus_if_pos(X,Y,Z) :- Y > 0, Z is X + Y.plus_if_pos75,1709 -vars(X, Y, [X|Y]) :- var(X), !.vars77,1751 -vars(X, Y, [X|Y]) :- var(X), !.vars77,1751 -vars(X, Y, [X|Y]) :- var(X), !.vars77,1751 -vars(_, Y, Y).vars78,1783 -vars(_, Y, Y).vars78,1783 -trans(TermIn, TermOut) :-trans80,1799 -trans(TermIn, TermOut) :-trans80,1799 -trans(TermIn, TermOut) :-trans80,1799 -trans(X,X).trans84,1910 -trans(X,X).trans84,1910 -include(G,In,Out) :-include173,3825 -include(G,In,Out) :-include173,3825 -include(G,In,Out) :-include173,3825 -selectlist(_, [], []).selectlist179,4004 -selectlist(_, [], []).selectlist179,4004 -selectlist(Pred, [In|ListIn], ListOut) :-selectlist180,4027 -selectlist(Pred, [In|ListIn], ListOut) :-selectlist180,4027 -selectlist(Pred, [In|ListIn], ListOut) :-selectlist180,4027 -selectlists(_, [], [], [], []).selectlists192,4405 -selectlists(_, [], [], [], []).selectlists192,4405 -selectlists(Pred, [In|ListIn], [In1|ListIn1], ListOut, ListOut1) :-selectlists193,4437 -selectlists(Pred, [In|ListIn], [In1|ListIn1], ListOut, ListOut1) :-selectlists193,4437 -selectlists(Pred, [In|ListIn], [In1|ListIn1], ListOut, ListOut1) :-selectlists193,4437 -selectlist(_, [], [], []).selectlist208,4921 -selectlist(_, [], [], []).selectlist208,4921 -selectlist(Pred, [In|ListIn], [In1|ListIn1], ListOut) :-selectlist209,4948 -selectlist(Pred, [In|ListIn], [In1|ListIn1], ListOut) :-selectlist209,4948 -selectlist(Pred, [In|ListIn], [In1|ListIn1], ListOut) :-selectlist209,4948 -exclude(_, [], []).exclude221,5332 -exclude(_, [], []).exclude221,5332 -exclude(Pred, [In|ListIn], ListOut) :-exclude222,5352 -exclude(Pred, [In|ListIn], ListOut) :-exclude222,5352 -exclude(Pred, [In|ListIn], ListOut) :-exclude222,5352 -partition(_, [], [], []).partition235,5763 -partition(_, [], [], []).partition235,5763 -partition(Pred, [In|ListIn], List1, List2) :-partition236,5789 -partition(Pred, [In|ListIn], List1, List2) :-partition236,5789 -partition(Pred, [In|ListIn], List1, List2) :-partition236,5789 -partition(_, [], [], [], []).partition255,6309 -partition(_, [], [], [], []).partition255,6309 -partition(Pred, [In|ListIn], List1, List2, List3) :-partition256,6339 -partition(Pred, [In|ListIn], List1, List2, List3) :-partition256,6339 -partition(Pred, [In|ListIn], List1, List2, List3) :-partition256,6339 -checklist(_, []).checklist280,6906 -checklist(_, []).checklist280,6906 -checklist(Pred, [In|ListIn]) :-checklist281,6924 -checklist(Pred, [In|ListIn]) :-checklist281,6924 -checklist(Pred, [In|ListIn]) :-checklist281,6924 -maplist(_, []).maplist291,7118 -maplist(_, []).maplist291,7118 -maplist(Pred, [In|ListIn]) :-maplist292,7134 -maplist(Pred, [In|ListIn]) :-maplist292,7134 -maplist(Pred, [In|ListIn]) :-maplist292,7134 -maplist(_, [], []).maplist306,7607 -maplist(_, [], []).maplist306,7607 -maplist(Pred, [In|ListIn], [Out|ListOut]) :-maplist307,7627 -maplist(Pred, [In|ListIn], [Out|ListOut]) :-maplist307,7627 -maplist(Pred, [In|ListIn], [Out|ListOut]) :-maplist307,7627 -maplist(_, [], [], []).maplist317,7929 -maplist(_, [], [], []).maplist317,7929 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3]) :-maplist318,7953 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3]) :-maplist318,7953 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3]) :-maplist318,7953 -maplist(_, [], [], [], []).maplist328,8284 -maplist(_, [], [], [], []).maplist328,8284 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3], [A4|L4]) :-maplist329,8312 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3], [A4|L4]) :-maplist329,8312 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3], [A4|L4]) :-maplist329,8312 -convlist(_, [], []).convlist348,9040 -convlist(_, [], []).convlist348,9040 -convlist(Pred, [Old|Olds], NewList) :-convlist349,9061 -convlist(Pred, [Old|Olds], NewList) :-convlist349,9061 -convlist(Pred, [Old|Olds], NewList) :-convlist349,9061 -convlist(Pred, [_|Olds], News) :-convlist354,9179 -convlist(Pred, [_|Olds], News) :-convlist354,9179 -convlist(Pred, [_|Olds], News) :-convlist354,9179 -convlist(_, [], []).convlist371,9847 -convlist(_, [], []).convlist371,9847 -convlist(Pred, [Old|Olds], NewList) :-convlist372,9868 -convlist(Pred, [Old|Olds], NewList) :-convlist372,9868 -convlist(Pred, [Old|Olds], NewList) :-convlist372,9868 -convlist(Pred, [_|Olds], News) :-convlist377,9986 -convlist(Pred, [_|Olds], News) :-convlist377,9986 -convlist(Pred, [_|Olds], News) :-convlist377,9986 -mapnodes(Pred, TermIn, TermOut) :-mapnodes386,10230 -mapnodes(Pred, TermIn, TermOut) :-mapnodes386,10230 -mapnodes(Pred, TermIn, TermOut) :-mapnodes386,10230 -mapnodes(Pred, TermIn, TermOut) :-mapnodes389,10336 -mapnodes(Pred, TermIn, TermOut) :-mapnodes389,10336 -mapnodes(Pred, TermIn, TermOut) :-mapnodes389,10336 -mapnodes_list(_, [], []).mapnodes_list395,10504 -mapnodes_list(_, [], []).mapnodes_list395,10504 -mapnodes_list(Pred, [TermIn|ArgsIn], [TermOut|ArgsOut]) :-mapnodes_list396,10530 -mapnodes_list(Pred, [TermIn|ArgsIn], [TermOut|ArgsOut]) :-mapnodes_list396,10530 -mapnodes_list(Pred, [TermIn|ArgsIn], [TermOut|ArgsOut]) :-mapnodes_list396,10530 -checknodes(Pred, Term) :-checknodes406,10842 -checknodes(Pred, Term) :-checknodes406,10842 -checknodes(Pred, Term) :-checknodes406,10842 -checknodes(Pred, Term) :-checknodes409,10924 -checknodes(Pred, Term) :-checknodes409,10924 -checknodes(Pred, Term) :-checknodes409,10924 -checknodes_list(_, []).checknodes_list414,11029 -checknodes_list(_, []).checknodes_list414,11029 -checknodes_list(Pred, [Term|Args]) :-checknodes_list415,11053 -checknodes_list(Pred, [Term|Args]) :-checknodes_list415,11053 -checknodes_list(Pred, [Term|Args]) :-checknodes_list415,11053 -sumlist(_, [], Acc, Acc).sumlist425,11317 -sumlist(_, [], Acc, Acc).sumlist425,11317 -sumlist(Pred, [H|T], AccIn, AccOut) :-sumlist426,11343 -sumlist(Pred, [H|T], AccIn, AccOut) :-sumlist426,11343 -sumlist(Pred, [H|T], AccIn, AccOut) :-sumlist426,11343 -sumnodes(Pred, Term, A0, A2) :-sumnodes437,11665 -sumnodes(Pred, Term, A0, A2) :-sumnodes437,11665 -sumnodes(Pred, Term, A0, A2) :-sumnodes437,11665 -sumnodes_body(Pred, Term, A1, A3, N0, Ar) :-sumnodes_body446,11862 -sumnodes_body(Pred, Term, A1, A3, N0, Ar) :-sumnodes_body446,11862 -sumnodes_body(Pred, Term, A1, A3, N0, Ar) :-sumnodes_body446,11862 -foldl(Goal, List, V0, V) :-foldl469,12357 -foldl(Goal, List, V0, V) :-foldl469,12357 -foldl(Goal, List, V0, V) :-foldl469,12357 -foldl_([], _, V, V).foldl_472,12414 -foldl_([], _, V, V).foldl_472,12414 -foldl_([H|T], Goal, V0, V) :-foldl_473,12435 -foldl_([H|T], Goal, V0, V) :-foldl_473,12435 -foldl_([H|T], Goal, V0, V) :-foldl_473,12435 -foldl(Goal, List1, List2, V0, V) :-foldl492,12865 -foldl(Goal, List1, List2, V0, V) :-foldl492,12865 -foldl(Goal, List1, List2, V0, V) :-foldl492,12865 -foldl_([], [], _, V, V).foldl_495,12938 -foldl_([], [], _, V, V).foldl_495,12938 -foldl_([H1|T1], [H2|T2], Goal, V0, V) :-foldl_496,12963 -foldl_([H1|T1], [H2|T2], Goal, V0, V) :-foldl_496,12963 -foldl_([H1|T1], [H2|T2], Goal, V0, V) :-foldl_496,12963 -foldl(Goal, List1, List2, List3, V0, V) :-foldl503,13072 -foldl(Goal, List1, List2, List3, V0, V) :-foldl503,13072 -foldl(Goal, List1, List2, List3, V0, V) :-foldl503,13072 -foldl_([], [], [], _, V, V).foldl_506,13159 -foldl_([], [], [], _, V, V).foldl_506,13159 -foldl_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V) :-foldl_507,13188 -foldl_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V) :-foldl_507,13188 -foldl_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V) :-foldl_507,13188 -foldl(Goal, List1, List2, List3, List4, V0, V) :-foldl515,13315 -foldl(Goal, List1, List2, List3, List4, V0, V) :-foldl515,13315 -foldl(Goal, List1, List2, List3, List4, V0, V) :-foldl515,13315 -foldl_([], [], [], [], _, V, V).foldl_518,13416 -foldl_([], [], [], [], _, V, V).foldl_518,13416 -foldl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V0, V) :-foldl_519,13449 -foldl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V0, V) :-foldl_519,13449 -foldl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V0, V) :-foldl_519,13449 -foldl2(Goal, List, V0, V, W0, W) :-foldl2531,13736 -foldl2(Goal, List, V0, V, W0, W) :-foldl2531,13736 -foldl2(Goal, List, V0, V, W0, W) :-foldl2531,13736 -foldl2_([], _, V, V, W, W).foldl2_534,13809 -foldl2_([], _, V, V, W, W).foldl2_534,13809 -foldl2_([H|T], Goal, V0, V, W0, W) :-foldl2_535,13837 -foldl2_([H|T], Goal, V0, V, W0, W) :-foldl2_535,13837 -foldl2_([H|T], Goal, V0, V, W0, W) :-foldl2_535,13837 -foldl2(Goal, List1, List2, V0, V, W0, W) :-foldl2545,14118 -foldl2(Goal, List1, List2, V0, V, W0, W) :-foldl2545,14118 -foldl2(Goal, List1, List2, V0, V, W0, W) :-foldl2545,14118 -foldl2_([], [], _Goal, V, V, W, W).foldl2_548,14207 -foldl2_([], [], _Goal, V, V, W, W).foldl2_548,14207 -foldl2_([H1|T1], [H2|T2], Goal, V0, V, W0, W) :-foldl2_549,14243 -foldl2_([H1|T1], [H2|T2], Goal, V0, V, W0, W) :-foldl2_549,14243 -foldl2_([H1|T1], [H2|T2], Goal, V0, V, W0, W) :-foldl2_549,14243 -foldl2(Goal, List1, List2, List3, V0, V, W0, W) :-foldl2560,14567 -foldl2(Goal, List1, List2, List3, V0, V, W0, W) :-foldl2560,14567 -foldl2(Goal, List1, List2, List3, V0, V, W0, W) :-foldl2560,14567 -foldl2_([], [], [], _Goal, V, V, W, W).foldl2_563,14670 -foldl2_([], [], [], _Goal, V, V, W, W).foldl2_563,14670 -foldl2_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V, W0, W) :-foldl2_564,14710 -foldl2_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V, W0, W) :-foldl2_564,14710 -foldl2_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V, W0, W) :-foldl2_564,14710 -foldl3(Goal, List, V0, V, W0, W, X0, X) :-foldl3576,15038 -foldl3(Goal, List, V0, V, W0, W, X0, X) :-foldl3576,15038 -foldl3(Goal, List, V0, V, W0, W, X0, X) :-foldl3576,15038 -foldl3_([], _, V, V, W, W, X, X).foldl3_579,15125 -foldl3_([], _, V, V, W, W, X, X).foldl3_579,15125 -foldl3_([H|T], Goal, V0, V, W0, W, X0, X) :-foldl3_580,15159 -foldl3_([H|T], Goal, V0, V, W0, W, X0, X) :-foldl3_580,15159 -foldl3_([H|T], Goal, V0, V, W0, W, X0, X) :-foldl3_580,15159 -foldl4(Goal, List, V0, V, W0, W, X0, X, Y0, Y) :-foldl4591,15490 -foldl4(Goal, List, V0, V, W0, W, X0, X, Y0, Y) :-foldl4591,15490 -foldl4(Goal, List, V0, V, W0, W, X0, X, Y0, Y) :-foldl4591,15490 -foldl4_([], _, V, V, W, W, X, X, Y, Y).foldl4_594,15591 -foldl4_([], _, V, V, W, W, X, X, Y, Y).foldl4_594,15591 -foldl4_([H|T], Goal, V0, V, W0, W, X0, X, Y0, Y) :-foldl4_595,15631 -foldl4_([H|T], Goal, V0, V, W0, W, X0, X, Y0, Y) :-foldl4_595,15631 -foldl4_([H|T], Goal, V0, V, W0, W, X0, X, Y0, Y) :-foldl4_595,15631 -scanl(Goal, List, V0, [V0|Values]) :-scanl634,16722 -scanl(Goal, List, V0, [V0|Values]) :-scanl634,16722 -scanl(Goal, List, V0, [V0|Values]) :-scanl634,16722 -scanl_([], _, _, []).scanl_637,16794 -scanl_([], _, _, []).scanl_637,16794 -scanl_([H|T], Goal, V, [VH|VT]) :-scanl_638,16816 -scanl_([H|T], Goal, V, [VH|VT]) :-scanl_638,16816 -scanl_([H|T], Goal, V, [VH|VT]) :-scanl_638,16816 -scanl(Goal, List1, List2, V0, [V0|Values]) :-scanl647,16986 -scanl(Goal, List1, List2, V0, [V0|Values]) :-scanl647,16986 -scanl(Goal, List1, List2, V0, [V0|Values]) :-scanl647,16986 -scanl_([], [], _, _, []).scanl_650,17074 -scanl_([], [], _, _, []).scanl_650,17074 -scanl_([H1|T1], [H2|T2], Goal, V, [VH|VT]) :-scanl_651,17100 -scanl_([H1|T1], [H2|T2], Goal, V, [VH|VT]) :-scanl_651,17100 -scanl_([H1|T1], [H2|T2], Goal, V, [VH|VT]) :-scanl_651,17100 -scanl(Goal, List1, List2, List3, V0, [V0|Values]) :-scanl660,17300 -scanl(Goal, List1, List2, List3, V0, [V0|Values]) :-scanl660,17300 -scanl(Goal, List1, List2, List3, V0, [V0|Values]) :-scanl660,17300 -scanl_([], [], [], _, _, []).scanl_663,17402 -scanl_([], [], [], _, _, []).scanl_663,17402 -scanl_([H1|T1], [H2|T2], [H3|T3], Goal, V, [VH|VT]) :-scanl_664,17432 -scanl_([H1|T1], [H2|T2], [H3|T3], Goal, V, [VH|VT]) :-scanl_664,17432 -scanl_([H1|T1], [H2|T2], [H3|T3], Goal, V, [VH|VT]) :-scanl_664,17432 -scanl(Goal, List1, List2, List3, List4, V0, [V0|Values]) :-scanl673,17663 -scanl(Goal, List1, List2, List3, List4, V0, [V0|Values]) :-scanl673,17663 -scanl(Goal, List1, List2, List3, List4, V0, [V0|Values]) :-scanl673,17663 -scanl_([], [], [], [], _, _, []).scanl_676,17779 -scanl_([], [], [], [], _, _, []).scanl_676,17779 -scanl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V, [VH|VT]) :-scanl_677,17813 -scanl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V, [VH|VT]) :-scanl_677,17813 -scanl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V, [VH|VT]) :-scanl_677,17813 -goal_expansion(checklist(Meta, List), Mod:Goal) :-goal_expansion682,17954 -goal_expansion(checklist(Meta, List), Mod:Goal) :-goal_expansion682,17954 -goal_expansion(checklist(Meta, List), Mod:Goal) :-goal_expansion682,17954 -goal_expansion(maplist(Meta, List), Mod:Goal) :-goal_expansion703,18597 -goal_expansion(maplist(Meta, List), Mod:Goal) :-goal_expansion703,18597 -goal_expansion(maplist(Meta, List), Mod:Goal) :-goal_expansion703,18597 -goal_expansion(maplist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion724,19236 -goal_expansion(maplist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion724,19236 -goal_expansion(maplist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion724,19236 -goal_expansion(maplist(Meta, L1, L2, L3), Mod:Goal) :-goal_expansion745,19924 -goal_expansion(maplist(Meta, L1, L2, L3), Mod:Goal) :-goal_expansion745,19924 -goal_expansion(maplist(Meta, L1, L2, L3), Mod:Goal) :-goal_expansion745,19924 -goal_expansion(maplist(Meta, L1, L2, L3, L4), Mod:Goal) :-goal_expansion766,20621 -goal_expansion(maplist(Meta, L1, L2, L3, L4), Mod:Goal) :-goal_expansion766,20621 -goal_expansion(maplist(Meta, L1, L2, L3, L4), Mod:Goal) :-goal_expansion766,20621 -goal_expansion(selectlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion787,21349 -goal_expansion(selectlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion787,21349 -goal_expansion(selectlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion787,21349 -goal_expansion(selectlist(Meta, ListIn, ListIn1, ListOut), Mod:Goal) :-goal_expansion810,22085 -goal_expansion(selectlist(Meta, ListIn, ListIn1, ListOut), Mod:Goal) :-goal_expansion810,22085 -goal_expansion(selectlist(Meta, ListIn, ListIn1, ListOut), Mod:Goal) :-goal_expansion810,22085 -goal_expansion(selectlists(Meta, ListIn, ListIn1, ListOut, ListOut1), Mod:Goal) :-goal_expansion833,22866 -goal_expansion(selectlists(Meta, ListIn, ListIn1, ListOut, ListOut1), Mod:Goal) :-goal_expansion833,22866 -goal_expansion(selectlists(Meta, ListIn, ListIn1, ListOut, ListOut1), Mod:Goal) :-goal_expansion833,22866 -goal_expansion(include(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion857,23747 -goal_expansion(include(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion857,23747 -goal_expansion(include(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion857,23747 -goal_expansion(exclude(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion880,24477 -goal_expansion(exclude(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion880,24477 -goal_expansion(exclude(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion880,24477 -goal_expansion(partition(Meta, ListIn, List1, List2), Mod:Goal) :-goal_expansion903,25207 -goal_expansion(partition(Meta, ListIn, List1, List2), Mod:Goal) :-goal_expansion903,25207 -goal_expansion(partition(Meta, ListIn, List1, List2), Mod:Goal) :-goal_expansion903,25207 -goal_expansion(partition(Meta, ListIn, List1, List2, List3), Mod:Goal) :-goal_expansion926,26013 -goal_expansion(partition(Meta, ListIn, List1, List2, List3), Mod:Goal) :-goal_expansion926,26013 -goal_expansion(partition(Meta, ListIn, List1, List2, List3), Mod:Goal) :-goal_expansion926,26013 -goal_expansion(convlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion966,27156 -goal_expansion(convlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion966,27156 -goal_expansion(convlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion966,27156 -goal_expansion(convlist(Meta, ListIn, ListExtra, ListOut), Mod:Goal) :-goal_expansion989,27894 -goal_expansion(convlist(Meta, ListIn, ListExtra, ListOut), Mod:Goal) :-goal_expansion989,27894 -goal_expansion(convlist(Meta, ListIn, ListExtra, ListOut), Mod:Goal) :-goal_expansion989,27894 -goal_expansion(sumlist(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1012,28689 -goal_expansion(sumlist(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1012,28689 -goal_expansion(sumlist(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1012,28689 -goal_expansion(foldl(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1033,29404 -goal_expansion(foldl(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1033,29404 -goal_expansion(foldl(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1033,29404 -goal_expansion(foldl(Meta, List1, List2, AccIn, AccOut), Mod:Goal) :-goal_expansion1054,30115 -goal_expansion(foldl(Meta, List1, List2, AccIn, AccOut), Mod:Goal) :-goal_expansion1054,30115 -goal_expansion(foldl(Meta, List1, List2, AccIn, AccOut), Mod:Goal) :-goal_expansion1054,30115 -goal_expansion(foldl(Meta, List1, List2, List3, AccIn, AccOut), Mod:Goal) :-goal_expansion1075,30865 -goal_expansion(foldl(Meta, List1, List2, List3, AccIn, AccOut), Mod:Goal) :-goal_expansion1075,30865 -goal_expansion(foldl(Meta, List1, List2, List3, AccIn, AccOut), Mod:Goal) :-goal_expansion1075,30865 -goal_expansion(foldl2(Meta, List, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1096,31652 -goal_expansion(foldl2(Meta, List, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1096,31652 -goal_expansion(foldl2(Meta, List, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1096,31652 -goal_expansion(foldl2(Meta, List1, List2, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1117,32409 -goal_expansion(foldl2(Meta, List1, List2, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1117,32409 -goal_expansion(foldl2(Meta, List1, List2, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1117,32409 -goal_expansion(foldl2(Meta, List1, List2, List3, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1138,33213 -goal_expansion(foldl2(Meta, List1, List2, List3, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1138,33213 -goal_expansion(foldl2(Meta, List1, List2, List3, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1138,33213 -goal_expansion(foldl3(Meta, List, AccIn, AccOut, W0, W, X0, X), Mod:Goal) :-goal_expansion1159,34058 -goal_expansion(foldl3(Meta, List, AccIn, AccOut, W0, W, X0, X), Mod:Goal) :-goal_expansion1159,34058 -goal_expansion(foldl3(Meta, List, AccIn, AccOut, W0, W, X0, X), Mod:Goal) :-goal_expansion1159,34058 -goal_expansion(foldl4(Meta, List, AccIn, AccOut, W0, W, X0, X, Y0, Y), Mod:Goal) :-goal_expansion1180,34859 -goal_expansion(foldl4(Meta, List, AccIn, AccOut, W0, W, X0, X, Y0, Y), Mod:Goal) :-goal_expansion1180,34859 -goal_expansion(foldl4(Meta, List, AccIn, AccOut, W0, W, X0, X, Y0, Y), Mod:Goal) :-goal_expansion1180,34859 -goal_expansion(mapnodes(Meta, InTerm, OutTerm), Mod:Goal) :-goal_expansion1201,35704 -goal_expansion(mapnodes(Meta, InTerm, OutTerm), Mod:Goal) :-goal_expansion1201,35704 -goal_expansion(mapnodes(Meta, InTerm, OutTerm), Mod:Goal) :-goal_expansion1201,35704 -goal_expansion(checknodes(Meta, Term), Mod:Goal) :-goal_expansion1233,36619 -goal_expansion(checknodes(Meta, Term), Mod:Goal) :-goal_expansion1233,36619 -goal_expansion(checknodes(Meta, Term), Mod:Goal) :-goal_expansion1233,36619 -goal_expansion(sumnodes(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion1263,37425 -goal_expansion(sumnodes(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion1263,37425 -goal_expansion(sumnodes(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion1263,37425 - -library/maputils.yap,2591 -:- dynamic number_of_expansions/1.dynamic30,475 -:- dynamic number_of_expansions/1.dynamic30,475 -number_of_expansions(0).number_of_expansions32,511 -number_of_expansions(0).number_of_expansions32,511 -compile_aux([Clause|Clauses], Module) :-compile_aux37,589 -compile_aux([Clause|Clauses], Module) :-compile_aux37,589 -compile_aux([Clause|Clauses], Module) :-compile_aux37,589 -compile_term([], _).compile_term52,959 -compile_term([], _).compile_term52,959 -compile_term([Clause|Clauses], Module) :-compile_term53,980 -compile_term([Clause|Clauses], Module) :-compile_term53,980 -compile_term([Clause|Clauses], Module) :-compile_term53,980 -append_args(Term, Args, NewTerm) :-append_args57,1086 -append_args(Term, Args, NewTerm) :-append_args57,1086 -append_args(Term, Args, NewTerm) :-append_args57,1086 -aux_preds(Meta, _, _, _, _) :-aux_preds62,1213 -aux_preds(Meta, _, _, _, _) :-aux_preds62,1213 -aux_preds(Meta, _, _, _, _) :-aux_preds62,1213 -aux_preds(_:Meta, MetaVars, Pred, PredVars, Proto) :- !,aux_preds65,1266 -aux_preds(_:Meta, MetaVars, Pred, PredVars, Proto) :- !,aux_preds65,1266 -aux_preds(_:Meta, MetaVars, Pred, PredVars, Proto) :- !,aux_preds65,1266 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto) :-aux_preds67,1374 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto) :-aux_preds67,1374 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto) :-aux_preds67,1374 -aux_args([], [], [], [], []).aux_args73,1555 -aux_args([], [], [], [], []).aux_args73,1555 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args74,1585 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args74,1585 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args74,1585 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args77,1719 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args77,1719 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args77,1719 -pred_name(Macro, Arity, _ , Name) :-pred_name80,1851 -pred_name(Macro, Arity, _ , Name) :-pred_name80,1851 -pred_name(Macro, Arity, _ , Name) :-pred_name80,1851 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2179 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2179 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2179 -transformation_id(Id) :-transformation_id91,2313 -transformation_id(Id) :-transformation_id91,2313 -transformation_id(Id) :-transformation_id91,2313 -goal_expansion_allowed :-goal_expansion_allowed100,2506 - -library/matlab/bnt_example.yap,1777 -do(Out,Out2) :-do35,824 -do(Out,Out2) :-do35,824 -do(Out,Out2) :-do35,824 -init_bnt :-init_bnt56,1473 -init_bnt :-init_bnt58,1500 -mk2s(0, []) :- !.mk2s65,1650 -mk2s(0, []) :- !.mk2s65,1650 -mk2s(0, []) :- !.mk2s65,1650 -mk2s(I, [2|L]) :-mk2s66,1668 -mk2s(I, [2|L]) :-mk2s66,1668 -mk2s(I, [2|L]) :-mk2s66,1668 -mkdag(N,Els) :-mkdag70,1713 -mkdag(N,Els) :-mkdag70,1713 -mkdag(N,Els) :-mkdag70,1713 -add_els([],_,_).add_els78,1842 -add_els([],_,_).add_els78,1842 -add_els([X-Y|Els],N,Dag) :-add_els79,1859 -add_els([X-Y|Els],N,Dag) :-add_els79,1859 -add_els([X-Y|Els],N,Dag) :-add_els79,1859 -addzeros([]).addzeros84,1945 -addzeros([]).addzeros84,1945 -addzeros([0|L]) :- !,addzeros85,1959 -addzeros([0|L]) :- !,addzeros85,1959 -addzeros([0|L]) :- !,addzeros85,1959 -addzeros([1|L]) :-addzeros87,1995 -addzeros([1|L]) :-addzeros87,1995 -addzeros([1|L]) :-addzeros87,1995 -mkcpt(BayesNet, V, Tab) :-mkcpt90,2029 -mkcpt(BayesNet, V, Tab) :-mkcpt90,2029 -mkcpt(BayesNet, V, Tab) :-mkcpt90,2029 -mkevidence(N,L) :-mkevidence93,2113 -mkevidence(N,L) :-mkevidence93,2113 -mkevidence(N,L) :-mkevidence93,2113 -mkeventries([],[]).mkeventries98,2257 -mkeventries([],[]).mkeventries98,2257 -mkeventries([A-V|L],[ev(1,A,V)|LN]) :-mkeventries99,2277 -mkeventries([A-V|L],[ev(1,A,V)|LN]) :-mkeventries99,2277 -mkeventries([A-V|L],[ev(1,A,V)|LN]) :-mkeventries99,2277 -add_evidence(L) :-add_evidence102,2337 -add_evidence(L) :-add_evidence102,2337 -add_evidence(L) :-add_evidence102,2337 -add_to_evidence([]).add_to_evidence106,2434 -add_to_evidence([]).add_to_evidence106,2434 -add_to_evidence([Pos-Val|L]) :-add_to_evidence107,2455 -add_to_evidence([Pos-Val|L]) :-add_to_evidence107,2455 -add_to_evidence([Pos-Val|L]) :-add_to_evidence107,2455 - -library/matlab/matlab.c,2078 -#define MAT_ACCESS(MAT_ACCESS30,807 -#define BUFSIZE BUFSIZE32,861 -#define OBUFSIZE OBUFSIZE33,881 -static YAP_Functor MatlabAddress;MatlabAddress37,929 -static Engine *Meng = NULL;Meng38,963 -matlab_getvar(YAP_Term t)matlab_getvar41,1009 -address2term(mxArray *mat)address2term47,1120 -cp_back(YAP_Term vart, mxArray *mat)cp_back56,1263 -p_startmatlab(void)p_startmatlab66,1469 -p_matlabon(void)p_matlabon96,2091 -p_closematlab(void)p_closematlab102,2147 -p_evalstring2(void)p_evalstring2114,2284 -p_evalstring3(void)p_evalstring3131,2633 -p_create_cell_vector(void)p_create_cell_vector154,3160 -p_create_cell_array(void)p_create_cell_array169,3501 -p_create_double_vector(void)p_create_double_vector185,3876 -p_create_double_array(void)p_create_double_array200,4246 -p_create_double_array3(void)p_create_double_array3216,4633 -p_set_int_array(void)p_set_int_array233,5077 -p_set_float_array(void)p_set_float_array270,5896 -p_set_float_vector(void)p_set_float_vector309,6835 -p_set_int(void)p_set_int346,7674 -p_set_float(void)p_set_float363,8022 -cp_ints32(int ndims, int *dims, INT32_T *input, int factor, int base, YAP_Term t)cp_ints32385,8559 -cp_ints64(int ndims, int *dims, INT64_T *input, int factor, int base, YAP_Term t)cp_ints64401,8938 -cp_cells(int ndims, int *dims, mxArray *mat, int factor, int base, YAP_Term t)cp_cells417,9317 -cp_floats(int ndims, int *dims, double *input, int factor, int base, YAP_Term t)cp_floats434,9787 -get_array(YAP_Term ti)get_array451,10168 -p_get_variable(void)p_get_variable487,11131 -item1(YAP_Term tvar, YAP_Term titem, int off)item1518,11975 -p_item(void)p_item566,13411 -p_item_1(void)p_item_1576,13552 -item2(YAP_Term tvar, YAP_Term titem, int offx, int offy)item2587,13698 -p_item2(void)p_item2642,15266 -p_item2_1(void)p_item2_1653,15441 -p_call_matlab(void)p_call_matlab664,15634 -p_create_cell_matrix_and_copy1(void)p_create_cell_matrix_and_copy1708,16721 -init_matlab(void)init_matlab734,17434 -int WINAPI win_matlab(HANDLE hinst, DWORD reason, LPVOID reserved)win_matlab765,18887 - -library/matlab.yap,4451 -tell_warning :-tell_warning232,5475 -matlab_eval_sequence(S) :-matlab_eval_sequence237,5645 -matlab_eval_sequence(S) :-matlab_eval_sequence237,5645 -matlab_eval_sequence(S) :-matlab_eval_sequence237,5645 -matlab_eval_sequence(S,O) :-matlab_eval_sequence241,5720 -matlab_eval_sequence(S,O) :-matlab_eval_sequence241,5720 -matlab_eval_sequence(S,O) :-matlab_eval_sequence241,5720 -matlab_vector( Vec, L) :-matlab_vector245,5799 -matlab_vector( Vec, L) :-matlab_vector245,5799 -matlab_vector( Vec, L) :-matlab_vector245,5799 -matlab_sequence(Min,Max,L) :-matlab_sequence249,5872 -matlab_sequence(Min,Max,L) :-matlab_sequence249,5872 -matlab_sequence(Min,Max,L) :-matlab_sequence249,5872 -mksequence(Min,Min,[Min]) :- !.mksequence254,5985 -mksequence(Min,Min,[Min]) :- !.mksequence254,5985 -mksequence(Min,Min,[Min]) :- !.mksequence254,5985 -mksequence(Min,Max,[Min|Vector]) :-mksequence255,6017 -mksequence(Min,Max,[Min|Vector]) :-mksequence255,6017 -mksequence(Min,Max,[Min|Vector]) :-mksequence255,6017 -matlab_call(S,Out) :-matlab_call259,6100 -matlab_call(S,Out) :-matlab_call259,6100 -matlab_call(S,Out) :-matlab_call259,6100 -matlab_call(S,Out,Result) :-matlab_call267,6287 -matlab_call(S,Out,Result) :-matlab_call267,6287 -matlab_call(S,Out,Result) :-matlab_call267,6287 -build_output(Out,['[ '|L],L0) :-build_output275,6489 -build_output(Out,['[ '|L],L0) :-build_output275,6489 -build_output(Out,['[ '|L],L0) :-build_output275,6489 -build_output(Out,Lf,L0) :-build_output278,6572 -build_output(Out,Lf,L0) :-build_output278,6572 -build_output(Out,Lf,L0) :-build_output278,6572 -build_outputs([],L,L).build_outputs281,6623 -build_outputs([],L,L).build_outputs281,6623 -build_outputs([Out|Outs],[Out,' '|L],L0) :-build_outputs282,6646 -build_outputs([Out|Outs],[Out,' '|L],L0) :-build_outputs282,6646 -build_outputs([Out|Outs],[Out,' '|L],L0) :-build_outputs282,6646 -build_args([],L,L). build_args285,6718 -build_args([],L,L). build_args285,6718 -build_args([Arg],Lf,L0) :- !,build_args286,6739 -build_args([Arg],Lf,L0) :- !,build_args286,6739 -build_args([Arg],Lf,L0) :- !,build_args286,6739 -build_args([Arg|Args],L,L0) :-build_args288,6798 -build_args([Arg|Args],L,L0) :-build_args288,6798 -build_args([Arg|Args],L,L0) :-build_args288,6798 -build_arg(V,_,_) :- var(V), !,build_arg292,6884 -build_arg(V,_,_) :- var(V), !,build_arg292,6884 -build_arg(V,_,_) :- var(V), !,build_arg292,6884 -build_arg(Arg,[Arg|L],L) :- atomic(Arg), !.build_arg294,6951 -build_arg(Arg,[Arg|L],L) :- atomic(Arg), !.build_arg294,6951 -build_arg(Arg,[Arg|L],L) :- atomic(Arg), !.build_arg294,6951 -build_arg(\S0,['\'',S0,'\''|L],L) :-build_arg295,6995 -build_arg(\S0,['\'',S0,'\''|L],L) :-build_arg295,6995 -build_arg(\S0,['\'',S0,'\''|L],L) :-build_arg295,6995 -build_arg([S1|S2],['['|L],L0) :-build_arg297,7046 -build_arg([S1|S2],['['|L],L0) :-build_arg297,7046 -build_arg([S1|S2],['['|L],L0) :-build_arg297,7046 -build_arg([S1|S2],L,L0) :- !,build_arg300,7126 -build_arg([S1|S2],L,L0) :- !,build_arg300,7126 -build_arg([S1|S2],L,L0) :- !,build_arg300,7126 -build_arg(S1:S2,L,L0) :- !,build_arg303,7205 -build_arg(S1:S2,L,L0) :- !,build_arg303,7205 -build_arg(S1:S2,L,L0) :- !,build_arg303,7205 -build_arg(F,[N,'{'|L],L0) :- %N({A}) = N{A}build_arg306,7282 -build_arg(F,[N,'{'|L],L0) :- %N({A}) = N{A}build_arg306,7282 -build_arg(F,[N,'{'|L],L0) :- %N({A}) = N{A}build_arg306,7282 -build_arg(F,[N,'('|L],L0) :-build_arg309,7369 -build_arg(F,[N,'('|L],L0) :-build_arg309,7369 -build_arg(F,[N,'('|L],L0) :-build_arg309,7369 -build_arglist([A],L,L0) :- !,build_arglist313,7434 -build_arglist([A],L,L0) :- !,build_arglist313,7434 -build_arglist([A],L,L0) :- !,build_arglist313,7434 -build_arglist([A|As],L,L0) :-build_arglist315,7491 -build_arglist([A|As],L,L0) :-build_arglist315,7491 -build_arglist([A|As],L,L0) :-build_arglist315,7491 -build_string([],['\''|L],L).build_string319,7575 -build_string([],['\''|L],L).build_string319,7575 -build_string([S0|S],[C|Lf],L0) :-build_string320,7604 -build_string([S0|S],[C|Lf],L0) :-build_string320,7604 -build_string([S0|S],[C|Lf],L0) :-build_string320,7604 -process_arg_entry([],[]) :- !.process_arg_entry325,7682 -process_arg_entry([],[]) :- !.process_arg_entry325,7682 -process_arg_entry([],[]) :- !.process_arg_entry325,7682 -process_arg_entry(L,['('|L]).process_arg_entry326,7713 -process_arg_entry(L,['('|L]).process_arg_entry326,7713 - -library/matrix/matrix.c,8791 -#define MAX_DIMS MAX_DIMS44,1058 - INT_MATRIX,INT_MATRIX47,1096 - FLOAT_MATRIXFLOAT_MATRIX48,1110 -} mat_data_type;mat_data_type49,1125 - MAT_TYPE=0,MAT_TYPE52,1158 - MAT_BASE=1,MAT_BASE53,1172 - MAT_NDIMS=2,MAT_NDIMS54,1186 - MAT_SIZE=3,MAT_SIZE55,1201 - MAT_ALIGN=4,MAT_ALIGN56,1215 - MAT_DIMS=5,MAT_DIMS57,1230 -} mat_type;mat_type58,1244 - MAT_PLUS=0,MAT_PLUS61,1272 - MAT_SUB=1,MAT_SUB62,1286 - MAT_TIMES=2,MAT_TIMES63,1299 - MAT_DIV=3,MAT_DIV64,1314 - MAT_IDIV=4,MAT_IDIV65,1327 - MAT_ZDIV=5,MAT_ZDIV66,1341 - MAT_LOG=6,MAT_LOG67,1355 - MAT_EXP=7MAT_EXP68,1368 -} op_type;op_type69,1380 -YAP_Functor FunctorM;FunctorM71,1392 -YAP_Atom AtomC;AtomC72,1414 -matrix_long_data(int *mat, int ndims)matrix_long_data75,1449 -matrix_double_data(int *mat, int ndims)matrix_double_data81,1553 -matrix_get_offset(int *mat, int* indx)matrix_get_offset87,1661 -matrix_get_index(int *mat, unsigned int offset, int* indx)matrix_get_index105,1995 -matrix_next_index(int *dims, int ndims, int* indx)matrix_next_index118,2265 -new_int_matrix(int ndims, int dims[], long int data[])new_int_matrix132,2489 -new_float_matrix(int ndims, int dims[], double data[])new_float_matrix167,3400 -scan_dims(int ndims, YAP_Term tl, int dims[MAX_DIMS])scan_dims201,4323 -scan_dims_args(int ndims, YAP_Term tl, int dims[MAX_DIMS])scan_dims_args233,4849 -cp_int_matrix(YAP_Term tl,YAP_Term matrix)cp_int_matrix257,5231 -cp_float_matrix(YAP_Term tl,YAP_Term matrix)cp_float_matrix287,5806 -set_int_matrix(YAP_Term matrix,long int set)set_int_matrix321,6471 -set_float_matrix(YAP_Term matrix,double set)set_float_matrix334,6738 -new_ints_matrix(void)new_ints_matrix347,7005 -new_ints_matrix_set(void)new_ints_matrix_set364,7374 -new_floats_matrix(void)new_floats_matrix384,7811 -new_floats_matrix_set(void)new_floats_matrix_set400,8183 -float_matrix_to_list(int *mat) {float_matrix_to_list420,8628 -mk_int_list(int nelems, int *data)mk_int_list432,8995 -mk_int_list2(int nelems, int base, int *data)mk_int_list2449,9281 -mk_rep_int_list(int nelems, int data)mk_rep_int_list466,9583 -mk_long_list(int nelems, long int *data)mk_long_list483,9869 -long_matrix_to_list(int *mat) {long_matrix_to_list501,10162 -matrix_access(int *mat, int *indx)matrix_access513,10527 -matrix_float_set(int *mat, int *indx, double nval)matrix_float_set523,10818 -matrix_long_set(int *mat, int *indx, long int nval)matrix_long_set532,11005 -matrix_float_set_all(int *mat, double nval)matrix_float_set_all539,11179 -matrix_long_set_all(int *mat, long int nval)matrix_long_set_all549,11364 -matrix_float_add(int *mat, int *indx, double nval)matrix_float_add563,11647 -matrix_long_add(int *mat, int *indx, long int nval)matrix_long_add573,11850 -matrix_inc(int *mat, int *indx)matrix_inc581,12046 -matrix_dec(int *mat, int *indx)matrix_dec591,12294 -matrix_inc2(int *mat, int *indx)matrix_inc2601,12546 -matrix_dec2(int *mat, int *indx)matrix_dec2620,12993 -matrix_set(void)matrix_set640,13441 -matrix_set2(void)matrix_set2678,14258 -matrix_set_all(void)matrix_set_all716,15097 -matrix_add(void)matrix_add750,15804 -do_matrix_access(void)do_matrix_access788,16621 -do_matrix_access2(void)do_matrix_access2807,16961 -do_matrix_inc(void)do_matrix_inc826,17325 -do_matrix_dec(void)do_matrix_dec844,17620 -do_matrix_inc2(void)do_matrix_inc2862,17915 -do_matrix_dec2(void)do_matrix_dec2880,18229 -matrix_to_list(void)matrix_to_list898,18543 -matrix_set_base(void)matrix_set_base916,18855 -matrix_dims(void)matrix_dims931,19065 -matrix_dims3(void)matrix_dims3946,19310 -matrix_size(void)matrix_size962,19644 -matrix_ndims(void)matrix_ndims975,19851 -matrix_type(void)matrix_type988,20060 -matrix_arg_to_offset(void)matrix_arg_to_offset1007,20404 -matrix_offset_to_arg(void)matrix_offset_to_arg1027,20773 -scan_max_long(int sz, long int *data)scan_max_long1049,21218 -scan_max_float(int sz, double *data)scan_max_float1063,21428 -scan_min_long(int sz, long int *data)scan_min_long1077,21635 -scan_min_float(int sz, double *data)scan_min_float1091,21845 -matrix_max(void)matrix_max1105,22048 -matrix_maxarg(void)matrix_maxarg1129,22598 -matrix_min(void)matrix_min1153,23173 -matrix_log_all(void)matrix_log_all1177,23723 -matrix_log_all2(void)matrix_log_all21200,24103 -matrix_exp_all(void)matrix_exp_all1257,25442 -matrix_exp2_all(void)matrix_exp2_all1280,25822 -matrix_exp_all2(void)matrix_exp_all21308,26323 -matrix_minarg(void)matrix_minarg1365,27662 -matrix_sum(void)matrix_sum1389,28237 -add_int_lines(int total,int nlines,long int *mat0,long int *matf)add_int_lines1422,28866 -add_double_lines(int total,int nlines,double *mat0,double *matf)add_double_lines1437,29124 -matrix_agg_lines(void)matrix_agg_lines1452,29383 -add_int_cols(int total,int nlines,long int *mat0,long int *matf)add_int_cols1505,30687 -add_double_cols(int total,int nlines,double *mat0,double *matf)add_double_cols1520,30958 -matrix_agg_cols(void)matrix_agg_cols1535,31230 -div_int_by_lines(int total,int nlines,long int *mat1,long int *mat2,double *ndata)div_int_by_lines1588,32503 -div_int_by_dlines(int total,int nlines,long int *mat1,double *mat2,double *ndata)div_int_by_dlines1597,32712 -div_float_long_by_lines(int total,int nlines,double *mat1,long int *mat2,double *ndata)div_float_long_by_lines1606,32910 -div_float_by_lines(int total,int nlines,double *mat1,double *mat2,double *ndata)div_float_by_lines1615,33114 -matrix_op_to_lines(void)matrix_op_to_lines1624,33315 -matrix_long_add_data(long int *nmat, int siz, long int mat1[], long int mat2[])matrix_long_add_data1717,35628 -matrix_long_double_add_data(double *nmat, int siz, long int mat1[], double mat2[])matrix_long_double_add_data1727,35797 -matrix_double_add_data(double *nmat, int siz, double mat1[], double mat2[])matrix_double_add_data1737,35969 -matrix_long_sub_data(long int *nmat, int siz, long int mat1[], long int mat2[])matrix_long_sub_data1747,36134 -matrix_long_double_sub_data(double *nmat, int siz, long int mat1[], double mat2[])matrix_long_double_sub_data1757,36303 -matrix_long_double_rsub_data(double *nmat, int siz, double mat1[], long int mat2[])matrix_long_double_rsub_data1767,36475 -matrix_double_sub_data(double *nmat, int siz, double mat1[], double mat2[])matrix_double_sub_data1777,36648 -matrix_long_mult_data(long int *nmat, int siz, long int mat1[], long int mat2[])matrix_long_mult_data1787,36813 -matrix_long_double_mult_data(double *nmat, int siz, long int mat1[], double mat2[])matrix_long_double_mult_data1797,36983 -matrix_double_mult_data(double *nmat, int siz, double mat1[], double mat2[])matrix_double_mult_data1807,37156 -matrix_long_div_data(long int *nmat, int siz, long int mat1[], long int mat2[])matrix_long_div_data1817,37322 -matrix_long_double_div_data(double *nmat, int siz, long int mat1[], double mat2[])matrix_long_double_div_data1827,37491 -matrix_long_double_div2_data(double *nmat, int siz, double mat1[], long int mat2[])matrix_long_double_div2_data1837,37663 -matrix_double_div_data(double *nmat, int siz, double mat1[], double mat2[])matrix_double_div_data1847,37836 -matrix_long_zdiv_data(long int *nmat, int siz, long int mat1[], long int mat2[])matrix_long_zdiv_data1857,38001 -matrix_long_double_zdiv_data(double *nmat, int siz, long int mat1[], double mat2[])matrix_long_double_zdiv_data1870,38223 -matrix_long_double_zdiv2_data(double *nmat, int siz, double mat1[], long int mat2[])matrix_long_double_zdiv2_data1883,38448 -matrix_double_zdiv_data(double *nmat, int siz, double mat1[], double mat2[])matrix_double_zdiv_data1896,38676 -matrix_op(void)matrix_op1910,38914 -add_int_by_cols(int total,int nlines,long int *mat1,long int *mat2,long int *ndata)add_int_by_cols2102,43908 -add_int_by_dcols(int total,int nlines,long int *mat1,double *mat2,double *ndata)add_int_by_dcols2111,44110 -add_double_by_cols(int total,int nlines,double *mat1,double *mat2,double *ndata)add_double_by_cols2120,44309 -matrix_op_to_cols(void)matrix_op_to_cols2131,44519 -matrix_op_to_all(void)matrix_op_to_all2212,46496 -matrix_transpose(void)matrix_transpose2391,50023 -matrix_select(void)matrix_select2473,52326 -matrix_column(void)matrix_column2574,55001 -matrix_sum_out(void)matrix_sum_out2643,56886 -matrix_sum_out_several(void)matrix_sum_out_several2732,59352 -matrix_sum_out_logs(void)matrix_sum_out_logs2825,62071 -matrix_sum_out_logs_several(void)matrix_sum_out_logs_several2914,64362 -matrix_expand(void)matrix_expand3012,67079 -matrix_set_all_that_disagree(void)matrix_set_all_that_disagree3114,69843 -matrix_m(void)matrix_m3193,71987 -is_matrix(void)is_matrix3235,73067 -init_matrix(void)init_matrix3250,73317 -int WINAPI win_matrixs(HANDLE hinst, DWORD reason, LPVOID reserved)win_matrixs3311,76514 - -library/matrix.yap,29448 -matrix_transpose(Matrix,Transpose) :-matrix_transpose632,13453 -matrix_transpose(Matrix,Transpose) :-matrix_transpose632,13453 -matrix_transpose(Matrix,Transpose) :-matrix_transpose632,13453 -:- multifile rhs_opaque/1, array_extension/2.multifile649,13713 -:- multifile rhs_opaque/1, array_extension/2.multifile649,13713 -norm_dim( I..J, D, I, P0, P) :- !,norm_dim690,14956 -norm_dim( I..J, D, I, P0, P) :- !,norm_dim690,14956 -norm_dim( I..J, D, I, P0, P) :- !,norm_dim690,14956 -norm_dim( I, I, 0, P0, P ) :-norm_dim693,15016 -norm_dim( I, I, 0, P0, P ) :-norm_dim693,15016 -norm_dim( I, I, 0, P0, P ) :-norm_dim693,15016 -rhs(RHS, RHS) :- var(RHS), !.rhs697,15060 -rhs(RHS, RHS) :- var(RHS), !.rhs697,15060 -rhs(RHS, RHS) :- var(RHS), !.rhs697,15060 -rhs(A, A) :- atom(A), !.rhs699,15102 -rhs(A, A) :- atom(A), !.rhs699,15102 -rhs(A, A) :- atom(A), !.rhs699,15102 -rhs(RHS, RHS) :- number(RHS), !.rhs700,15127 -rhs(RHS, RHS) :- number(RHS), !.rhs700,15127 -rhs(RHS, RHS) :- number(RHS), !.rhs700,15127 -rhs(RHS, RHS) :- opaque(RHS), !.rhs701,15160 -rhs(RHS, RHS) :- opaque(RHS), !.rhs701,15160 -rhs(RHS, RHS) :- opaque(RHS), !.rhs701,15160 -rhs(RHS, RHS) :- RHS = '$matrix'(_, _, _, _, _), !.rhs702,15193 -rhs(RHS, RHS) :- RHS = '$matrix'(_, _, _, _, _), !.rhs702,15193 -rhs(RHS, RHS) :- RHS = '$matrix'(_, _, _, _, _), !.rhs702,15193 -rhs(matrix(List), RHS) :- !,rhs703,15245 -rhs(matrix(List), RHS) :- !,rhs703,15245 -rhs(matrix(List), RHS) :- !,rhs703,15245 -rhs(matrix(List, Opt1), RHS) :- !,rhs706,15317 -rhs(matrix(List, Opt1), RHS) :- !,rhs706,15317 -rhs(matrix(List, Opt1), RHS) :- !,rhs706,15317 -rhs(matrix(List, Opt1, Opt2), RHS) :- !,rhs709,15397 -rhs(matrix(List, Opt1, Opt2), RHS) :- !,rhs709,15397 -rhs(matrix(List, Opt1, Opt2), RHS) :- !,rhs709,15397 -rhs(dim(RHS), Dims) :- !,rhs712,15491 -rhs(dim(RHS), Dims) :- !,rhs712,15491 -rhs(dim(RHS), Dims) :- !,rhs712,15491 -rhs(dims(RHS), Dims) :- !,rhs715,15558 -rhs(dims(RHS), Dims) :- !,rhs715,15558 -rhs(dims(RHS), Dims) :- !,rhs715,15558 -rhs(nrow(RHS), NRow) :- !,rhs718,15626 -rhs(nrow(RHS), NRow) :- !,rhs718,15626 -rhs(nrow(RHS), NRow) :- !,rhs718,15626 -rhs(ncol(RHS), NCol) :- !,rhs721,15698 -rhs(ncol(RHS), NCol) :- !,rhs721,15698 -rhs(ncol(RHS), NCol) :- !,rhs721,15698 -rhs(length(RHS), Size) :- !,rhs724,15770 -rhs(length(RHS), Size) :- !,rhs724,15770 -rhs(length(RHS), Size) :- !,rhs724,15770 -rhs(size(RHS), Size) :- !,rhs727,15840 -rhs(size(RHS), Size) :- !,rhs727,15840 -rhs(size(RHS), Size) :- !,rhs727,15840 -rhs(max(RHS), Size) :- !,rhs730,15908 -rhs(max(RHS), Size) :- !,rhs730,15908 -rhs(max(RHS), Size) :- !,rhs730,15908 -rhs(min(RHS), Size) :- !,rhs733,15974 -rhs(min(RHS), Size) :- !,rhs733,15974 -rhs(min(RHS), Size) :- !,rhs733,15974 -rhs(maxarg(RHS), Size) :- !,rhs736,16040 -rhs(maxarg(RHS), Size) :- !,rhs736,16040 -rhs(maxarg(RHS), Size) :- !,rhs736,16040 -rhs(minarg(RHS), Size) :- !,rhs739,16112 -rhs(minarg(RHS), Size) :- !,rhs739,16112 -rhs(minarg(RHS), Size) :- !,rhs739,16112 -rhs(list(RHS), List) :- !,rhs742,16184 -rhs(list(RHS), List) :- !,rhs742,16184 -rhs(list(RHS), List) :- !,rhs742,16184 -rhs(lists(RHS), List) :- !,rhs745,16255 -rhs(lists(RHS), List) :- !,rhs745,16255 -rhs(lists(RHS), List) :- !,rhs745,16255 -rhs('[]'(Args, RHS), Val) :-rhs748,16328 -rhs('[]'(Args, RHS), Val) :-rhs748,16328 -rhs('[]'(Args, RHS), Val) :-rhs748,16328 -rhs('..'(I, J), [I1|Is]) :- !,rhs760,16556 -rhs('..'(I, J), [I1|Is]) :- !,rhs760,16556 -rhs('..'(I, J), [I1|Is]) :- !,rhs760,16556 -rhs([H|T], [NH|NT]) :- !,rhs764,16646 -rhs([H|T], [NH|NT]) :- !,rhs764,16646 -rhs([H|T], [NH|NT]) :- !,rhs764,16646 -rhs(log(RHS), Logs ) :- !,rhs767,16698 -rhs(log(RHS), Logs ) :- !,rhs767,16698 -rhs(log(RHS), Logs ) :- !,rhs767,16698 -rhs(exp(RHS), Logs ) :- !,rhs770,16769 -rhs(exp(RHS), Logs ) :- !,rhs770,16769 -rhs(exp(RHS), Logs ) :- !,rhs770,16769 -rhs(S, NS) :-rhs773,16840 -rhs(S, NS) :-rhs773,16840 -rhs(S, NS) :-rhs773,16840 -rhs(E1+E2, V) :- !,rhs776,16884 -rhs(E1+E2, V) :- !,rhs776,16884 -rhs(E1+E2, V) :- !,rhs776,16884 -rhs(E1-E2, V) :- !,rhs780,16951 -rhs(E1-E2, V) :- !,rhs780,16951 -rhs(E1-E2, V) :- !,rhs780,16951 -rhs(S, NS) :-rhs784,17017 -rhs(S, NS) :-rhs784,17017 -rhs(S, NS) :-rhs784,17017 -set_lhs(V, R) :- var(V), !, V = R.set_lhs789,17086 -set_lhs(V, R) :- var(V), !, V = R.set_lhs789,17086 -set_lhs(V, R) :- var(V), !, V = R.set_lhs789,17086 -set_lhs(V, R) :- number(V), !, V = R.set_lhs790,17121 -set_lhs(V, R) :- number(V), !, V = R.set_lhs790,17121 -set_lhs(V, R) :- number(V), !, V = R.set_lhs790,17121 -set_lhs('[]'(Args, M), Val) :-set_lhs791,17159 -set_lhs('[]'(Args, M), Val) :-set_lhs791,17159 -set_lhs('[]'(Args, M), Val) :-set_lhs791,17159 -index(Range, V, M, Base, Indx) :- var(V), !,index805,17394 -index(Range, V, M, Base, Indx) :- var(V), !,index805,17394 -index(Range, V, M, Base, Indx) :- var(V), !,index805,17394 -index(Range, '*', M, Base, Indx) :- !,index808,17500 -index(Range, '*', M, Base, Indx) :- !,index808,17500 -index(Range, '*', M, Base, Indx) :- !,index808,17500 -index(Range, Exp, M, _Base, Indx) :- !,index811,17600 -index(Range, Exp, M, _Base, Indx) :- !,index811,17600 -index(Range, Exp, M, _Base, Indx) :- !,index811,17600 -index(I, _M, I ) :- integer(I), !.index817,17762 -index(I, _M, I ) :- integer(I), !.index817,17762 -index(I, _M, I ) :- integer(I), !.index817,17762 -index(I..J, _M, [I|O] ) :- !,index818,17797 -index(I..J, _M, [I|O] ) :- !,index818,17797 -index(I..J, _M, [I|O] ) :- !,index818,17797 -index(I:J, _M, [I|O] ) :- !,index821,17878 -index(I:J, _M, [I|O] ) :- !,index821,17878 -index(I:J, _M, [I|O] ) :- !,index821,17878 -index(I+J, M, O ) :- !,index824,17958 -index(I+J, M, O ) :- !,index824,17958 -index(I+J, M, O ) :- !,index824,17958 -index(I-J, M, O ) :- !,index828,18041 -index(I-J, M, O ) :- !,index828,18041 -index(I-J, M, O ) :- !,index828,18041 -index(I*J, M, O ) :- !,index832,18124 -index(I*J, M, O ) :- !,index832,18124 -index(I*J, M, O ) :- !,index832,18124 -index(I div J, M, O ) :- !,index836,18197 -index(I div J, M, O ) :- !,index836,18197 -index(I div J, M, O ) :- !,index836,18197 -index(I rem J, M, O ) :- !,index840,18278 -index(I rem J, M, O ) :- !,index840,18278 -index(I rem J, M, O ) :- !,index840,18278 -index(I, M, NI ) :-index844,18359 -index(I, M, NI ) :-index844,18359 -index(I, M, NI ) :-index844,18359 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -add_index(I1, J1, O) :-add_index849,18442 -add_index(I1, J1, O) :-add_index849,18442 -add_index(I1, J1, O) :-add_index849,18442 -add_index(I1, J1, O) :-add_index853,18510 -add_index(I1, J1, O) :-add_index853,18510 -add_index(I1, J1, O) :-add_index853,18510 -add_index(I1, J1, O) :-add_index856,18578 -add_index(I1, J1, O) :-add_index856,18578 -add_index(I1, J1, O) :-add_index856,18578 -add_index(I1, J1, O) :-add_index859,18646 -add_index(I1, J1, O) :-add_index859,18646 -add_index(I1, J1, O) :-add_index859,18646 -sub_index(I1, J1, O) :-sub_index862,18694 -sub_index(I1, J1, O) :-sub_index862,18694 -sub_index(I1, J1, O) :-sub_index862,18694 -sub_index(I1, J1, O) :-sub_index866,18762 -sub_index(I1, J1, O) :-sub_index866,18762 -sub_index(I1, J1, O) :-sub_index866,18762 -sub_index(I1, J1, O) :-sub_index869,18832 -sub_index(I1, J1, O) :-sub_index869,18832 -sub_index(I1, J1, O) :-sub_index869,18832 -sub_index(I1, J1, O) :-sub_index872,18901 -sub_index(I1, J1, O) :-sub_index872,18901 -sub_index(I1, J1, O) :-sub_index872,18901 -minus(X, Y, Z) :- Z is X-Y.minus875,18952 -minus(X, Y, Z) :- Z is X-Y.minus875,18952 -minus(X, Y, Z) :- Z is X-Y.minus875,18952 -rminus(X, Y, Z) :- Z is Y-X.rminus877,18981 -rminus(X, Y, Z) :- Z is Y-X.rminus877,18981 -rminus(X, Y, Z) :- Z is Y-X.rminus877,18981 -times(X, Y, Z) :- Z is Y*X.times879,19011 -times(X, Y, Z) :- Z is Y*X.times879,19011 -times(X, Y, Z) :- Z is Y*X.times879,19011 -div(X, Y, Z) :- Z is X/Y.div881,19040 -div(X, Y, Z) :- Z is X/Y.div881,19040 -div(X, Y, Z) :- Z is X/Y.div881,19040 -rdiv(X, Y, Z) :- Z is Y/X.rdiv883,19067 -rdiv(X, Y, Z) :- Z is Y/X.rdiv883,19067 -rdiv(X, Y, Z) :- Z is Y/X.rdiv883,19067 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -mplus(I1, I2, V) :-mplus887,19168 -mplus(I1, I2, V) :-mplus887,19168 -mplus(I1, I2, V) :-mplus887,19168 -msub(I1, I2, V) :-msub903,19647 -msub(I1, I2, V) :-msub903,19647 -msub(I1, I2, V) :-msub903,19647 -mtimes(I1, I2, V) :-mtimes920,20154 -mtimes(I1, I2, V) :-mtimes920,20154 -mtimes(I1, I2, V) :-mtimes920,20154 -matrix_new(terms,Dims, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new942,20705 -matrix_new(terms,Dims, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new942,20705 -matrix_new(terms,Dims, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new942,20705 -matrix_new(ints,Dims,Matrix) :-matrix_new947,20888 -matrix_new(ints,Dims,Matrix) :-matrix_new947,20888 -matrix_new(ints,Dims,Matrix) :-matrix_new947,20888 -matrix_new(floats,Dims,Matrix) :-matrix_new950,20987 -matrix_new(floats,Dims,Matrix) :-matrix_new950,20987 -matrix_new(floats,Dims,Matrix) :-matrix_new950,20987 -matrix_new(terms, Dims, Data, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new955,21094 -matrix_new(terms, Dims, Data, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new955,21094 -matrix_new(terms, Dims, Data, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new955,21094 -matrix_new(ints,Dims,Data,Matrix) :-matrix_new961,21306 -matrix_new(ints,Dims,Data,Matrix) :-matrix_new961,21306 -matrix_new(ints,Dims,Data,Matrix) :-matrix_new961,21306 -matrix_new(floats,Dims,Data,Matrix) :-matrix_new964,21409 -matrix_new(floats,Dims,Data,Matrix) :-matrix_new964,21409 -matrix_new(floats,Dims,Data,Matrix) :-matrix_new964,21409 -matrix_dims( Mat, Dims) :-matrix_dims969,21518 -matrix_dims( Mat, Dims) :-matrix_dims969,21518 -matrix_dims( Mat, Dims) :-matrix_dims969,21518 -matrix_dims( Mat, Dims, Bases) :-matrix_dims973,21635 -matrix_dims( Mat, Dims, Bases) :-matrix_dims973,21635 -matrix_dims( Mat, Dims, Bases) :-matrix_dims973,21635 -matrix_ndims( Mat, NDims) :-matrix_ndims977,21770 -matrix_ndims( Mat, NDims) :-matrix_ndims977,21770 -matrix_ndims( Mat, NDims) :-matrix_ndims977,21770 -matrix_size( Mat, Size) :-matrix_size981,21892 -matrix_size( Mat, Size) :-matrix_size981,21892 -matrix_size( Mat, Size) :-matrix_size981,21892 -matrix_to_list( Mat, ToList) :-matrix_to_list985,22009 -matrix_to_list( Mat, ToList) :-matrix_to_list985,22009 -matrix_to_list( Mat, ToList) :-matrix_to_list985,22009 -matrix_to_lists( Mat, ToList) :-matrix_to_lists989,22150 -matrix_to_lists( Mat, ToList) :-matrix_to_lists989,22150 -matrix_to_lists( Mat, ToList) :-matrix_to_lists989,22150 -matrix_slicer( [_], M, Pos-[_], [O|L0], L0) :- !,matrix_slicer994,22299 -matrix_slicer( [_], M, Pos-[_], [O|L0], L0) :- !,matrix_slicer994,22299 -matrix_slicer( [_], M, Pos-[_], [O|L0], L0) :- !,matrix_slicer994,22299 -matrix_slicer( [D|Dims], M, Pos-[I|L], [O|L0], L0) :-matrix_slicer996,22369 -matrix_slicer( [D|Dims], M, Pos-[I|L], [O|L0], L0) :-matrix_slicer996,22369 -matrix_slicer( [D|Dims], M, Pos-[I|L], [O|L0], L0) :-matrix_slicer996,22369 -matrix_get( Mat, Pos, El) :-matrix_get1000,22502 -matrix_get( Mat, Pos, El) :-matrix_get1000,22502 -matrix_get( Mat, Pos, El) :-matrix_get1000,22502 -matrix_get_range( Mat, Pos, Els) :-matrix_get_range1004,22609 -matrix_get_range( Mat, Pos, Els) :-matrix_get_range1004,22609 -matrix_get_range( Mat, Pos, Els) :-matrix_get_range1004,22609 -slice([], [[]]).slice1008,22704 -slice([], [[]]).slice1008,22704 -slice([[H|T]|Extra], Els) :- !,slice1009,22721 -slice([[H|T]|Extra], Els) :- !,slice1009,22721 -slice([[H|T]|Extra], Els) :- !,slice1009,22721 -slice([H|Extra], Els) :- !,slice1012,22825 -slice([H|Extra], Els) :- !,slice1012,22825 -slice([H|Extra], Els) :- !,slice1012,22825 -add_index_prefix( [] , _H ) --> [].add_index_prefix1016,22915 -add_index_prefix( [] , _H ) --> [].add_index_prefix1016,22915 -add_index_prefix( [] , _H ) --> [].add_index_prefix1016,22915 -add_index_prefix( [L|Els0] , H ) --> [[H|L]],add_index_prefix1017,22951 -add_index_prefix( [L|Els0] , H ) --> [[H|L]],add_index_prefix1017,22951 -add_index_prefix( [L|Els0] , H ) --> [[H|L]],add_index_prefix1017,22951 -matrix_set_range( Mat, Pos, Els) :-matrix_set_range1021,23030 -matrix_set_range( Mat, Pos, Els) :-matrix_set_range1021,23030 -matrix_set_range( Mat, Pos, Els) :-matrix_set_range1021,23030 -matrix_set( Mat, Pos, El) :-matrix_set1025,23125 -matrix_set( Mat, Pos, El) :-matrix_set1025,23125 -matrix_set( Mat, Pos, El) :-matrix_set1025,23125 -matrix_new_set(ints,Dims,Elem,Matrix) :-matrix_new_set1029,23232 -matrix_new_set(ints,Dims,Elem,Matrix) :-matrix_new_set1029,23232 -matrix_new_set(ints,Dims,Elem,Matrix) :-matrix_new_set1029,23232 -matrix_new_set(floats,Dims,Elem,Matrix) :-matrix_new_set1032,23343 -matrix_new_set(floats,Dims,Elem,Matrix) :-matrix_new_set1032,23343 -matrix_new_set(floats,Dims,Elem,Matrix) :-matrix_new_set1032,23343 -matrix_type(Matrix,Type) :-matrix_type1037,23460 -matrix_type(Matrix,Type) :-matrix_type1037,23460 -matrix_type(Matrix,Type) :-matrix_type1037,23460 -matrix_base(Matrix, Bases) :-matrix_base1042,23600 -matrix_base(Matrix, Bases) :-matrix_base1042,23600 -matrix_base(Matrix, Bases) :-matrix_base1042,23600 -matrix_arg_to_offset(M, Index, Offset) :-matrix_arg_to_offset1046,23751 -matrix_arg_to_offset(M, Index, Offset) :-matrix_arg_to_offset1046,23751 -matrix_arg_to_offset(M, Index, Offset) :-matrix_arg_to_offset1046,23751 -matrix_offset_to_arg(M, Offset, Index) :-matrix_offset_to_arg1050,23958 -matrix_offset_to_arg(M, Offset, Index) :-matrix_offset_to_arg1050,23958 -matrix_offset_to_arg(M, Offset, Index) :-matrix_offset_to_arg1050,23958 -matrix_max(M, Max) :-matrix_max1054,24167 -matrix_max(M, Max) :-matrix_max1054,24167 -matrix_max(M, Max) :-matrix_max1054,24167 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -matrix_maxarg(M, MaxArg) :-matrix_maxarg1062,24416 -matrix_maxarg(M, MaxArg) :-matrix_maxarg1062,24416 -matrix_maxarg(M, MaxArg) :-matrix_maxarg1062,24416 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -matrix_min(M, Min) :-matrix_min1070,24814 -matrix_min(M, Min) :-matrix_min1070,24814 -matrix_min(M, Min) :-matrix_min1070,24814 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -matrix_minarg(M, MinArg) :-matrix_minarg1078,25063 -matrix_minarg(M, MinArg) :-matrix_minarg1078,25063 -matrix_minarg(M, MinArg) :-matrix_minarg1078,25063 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -matrix_to_logs(M, LogM) :-matrix_to_logs1086,25461 -matrix_to_logs(M, LogM) :-matrix_to_logs1086,25461 -matrix_to_logs(M, LogM) :-matrix_to_logs1086,25461 -log(X, Y) :- Y is log(X).log1094,25705 -log(X, Y) :- Y is log(X).log1094,25705 -log(X, Y) :- Y is log(X).log1094,25705 -log(X, Y) :- Y is log(X).log1094,25705 -log(X, Y) :- Y is log(X).log1094,25705 -matrix_to_exps(M, ExpM) :-matrix_to_exps1096,25732 -matrix_to_exps(M, ExpM) :-matrix_to_exps1096,25732 -matrix_to_exps(M, ExpM) :-matrix_to_exps1096,25732 -exp(X, Y) :- Y is exp(X).exp1104,25976 -exp(X, Y) :- Y is exp(X).exp1104,25976 -exp(X, Y) :- Y is exp(X).exp1104,25976 -exp(X, Y) :- Y is exp(X).exp1104,25976 -exp(X, Y) :- Y is exp(X).exp1104,25976 -matrix_agg_lines(M1,+,NM) :-matrix_agg_lines1106,26003 -matrix_agg_lines(M1,+,NM) :-matrix_agg_lines1106,26003 -matrix_agg_lines(M1,+,NM) :-matrix_agg_lines1106,26003 -matrix_agg_cols(M1,+,NM) :-matrix_agg_cols1110,26099 -matrix_agg_cols(M1,+,NM) :-matrix_agg_cols1110,26099 -matrix_agg_cols(M1,+,NM) :-matrix_agg_cols1110,26099 -matrix_op(M1,M2,+,NM) :-matrix_op1114,26193 -matrix_op(M1,M2,+,NM) :-matrix_op1114,26193 -matrix_op(M1,M2,+,NM) :-matrix_op1114,26193 -matrix_op(M1,M2,-,NM) :-matrix_op1121,26418 -matrix_op(M1,M2,-,NM) :-matrix_op1121,26418 -matrix_op(M1,M2,-,NM) :-matrix_op1121,26418 -matrix_op(M1,M2,*,NM) :-matrix_op1128,26644 -matrix_op(M1,M2,*,NM) :-matrix_op1128,26644 -matrix_op(M1,M2,*,NM) :-matrix_op1128,26644 -matrix_op(M1,M2,/,NM) :-matrix_op1135,26870 -matrix_op(M1,M2,/,NM) :-matrix_op1135,26870 -matrix_op(M1,M2,/,NM) :-matrix_op1135,26870 -matrix_op(M1,M2,zdiv,NM) :-matrix_op1142,27094 -matrix_op(M1,M2,zdiv,NM) :-matrix_op1142,27094 -matrix_op(M1,M2,zdiv,NM) :-matrix_op1142,27094 -matrix_op_to_all(M1,+,Num,NM) :-matrix_op_to_all1151,27324 -matrix_op_to_all(M1,+,Num,NM) :-matrix_op_to_all1151,27324 -matrix_op_to_all(M1,+,Num,NM) :-matrix_op_to_all1151,27324 -matrix_op_to_all(M1,-,Num,NM) :-matrix_op_to_all1159,27507 -matrix_op_to_all(M1,-,Num,NM) :-matrix_op_to_all1159,27507 -matrix_op_to_all(M1,-,Num,NM) :-matrix_op_to_all1159,27507 -matrix_op_to_all(M1,*,Num,NM) :-matrix_op_to_all1167,27691 -matrix_op_to_all(M1,*,Num,NM) :-matrix_op_to_all1167,27691 -matrix_op_to_all(M1,*,Num,NM) :-matrix_op_to_all1167,27691 -matrix_op_to_all(M1,/,Num,NM) :-matrix_op_to_all1175,27875 -matrix_op_to_all(M1,/,Num,NM) :-matrix_op_to_all1175,27875 -matrix_op_to_all(M1,/,Num,NM) :-matrix_op_to_all1175,27875 -matrix_op_to_lines(M1,M2,/,NM) :-matrix_op_to_lines1188,28140 -matrix_op_to_lines(M1,M2,/,NM) :-matrix_op_to_lines1188,28140 -matrix_op_to_lines(M1,M2,/,NM) :-matrix_op_to_lines1188,28140 -matrix_op_to_cols(M1,M2,+,NM) :-matrix_op_to_cols1192,28246 -matrix_op_to_cols(M1,M2,+,NM) :-matrix_op_to_cols1192,28246 -matrix_op_to_cols(M1,M2,+,NM) :-matrix_op_to_cols1192,28246 -matrix_transpose(M1,M2) :-matrix_transpose1197,28351 -matrix_transpose(M1,M2) :-matrix_transpose1197,28351 -matrix_transpose(M1,M2) :-matrix_transpose1197,28351 -size(N0, N1, N2) :-size1200,28409 -size(N0, N1, N2) :-size1200,28409 -size(N0, N1, N2) :-size1200,28409 -m_get('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_get1204,28476 -m_get('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_get1204,28476 -m_get('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_get1204,28476 -m_set('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_set1208,28601 -m_set('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_set1208,28601 -m_set('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_set1208,28601 -indx( I, Dim, Base, BlkSz, NBlkSz, I0, IF) :-indx1212,28726 -indx( I, Dim, Base, BlkSz, NBlkSz, I0, IF) :-indx1212,28726 -indx( I, Dim, Base, BlkSz, NBlkSz, I0, IF) :-indx1212,28726 -offset( I, Dim, BlkSz, NBlkSz, Base, I0, IF) :-offset1216,28829 -offset( I, Dim, BlkSz, NBlkSz, Base, I0, IF) :-offset1216,28829 -offset( I, Dim, BlkSz, NBlkSz, Base, I0, IF) :-offset1216,28829 -inc(I1, I, I1) :-inc1221,28954 -inc(I1, I, I1) :-inc1221,28954 -inc(I1, I, I1) :-inc1221,28954 -new_matrix(M0, Opts0, M) :-new_matrix1224,28985 -new_matrix(M0, Opts0, M) :-new_matrix1224,28985 -new_matrix(M0, Opts0, M) :-new_matrix1224,28985 -new_matrix('$matrix'(_,_,_,_,C), Opts0, M) :- !,new_matrix1228,29078 -new_matrix('$matrix'(_,_,_,_,C), Opts0, M) :- !,new_matrix1228,29078 -new_matrix('$matrix'(_,_,_,_,C), Opts0, M) :- !,new_matrix1228,29078 -new_matrix(C, Opts0, M) :-new_matrix1231,29166 -new_matrix(C, Opts0, M) :-new_matrix1231,29166 -new_matrix(C, Opts0, M) :-new_matrix1231,29166 -new_matrix(List, Opts0, M) :-new_matrix1235,29254 -new_matrix(List, Opts0, M) :-new_matrix1235,29254 -new_matrix(List, Opts0, M) :-new_matrix1235,29254 -new_matrix([H|List], Opts0, M) :-new_matrix1242,29567 -new_matrix([H|List], Opts0, M) :-new_matrix1242,29567 -new_matrix([H|List], Opts0, M) :-new_matrix1242,29567 -fix_opts(V, _) :-fix_opts1250,29861 -fix_opts(V, _) :-fix_opts1250,29861 -fix_opts(V, _) :-fix_opts1250,29861 -fix_opts(A=B, [A=B]).fix_opts1253,29930 -fix_opts(A=B, [A=B]).fix_opts1253,29930 -fix_opts(A, A) :-fix_opts1254,29952 -fix_opts(A, A) :-fix_opts1254,29952 -fix_opts(A, A) :-fix_opts1254,29952 -fix_opts(V, _) :-fix_opts1256,29986 -fix_opts(V, _) :-fix_opts1256,29986 -fix_opts(V, _) :-fix_opts1256,29986 -guess_type( List, Type ) :-guess_type1260,30069 -guess_type( List, Type ) :-guess_type1260,30069 -guess_type( List, Type ) :-guess_type1260,30069 -guess_type( List, Type ) :-guess_type1263,30140 -guess_type( List, Type ) :-guess_type1263,30140 -guess_type( List, Type ) :-guess_type1263,30140 -guess_type( _List, terms ).guess_type1266,30212 -guess_type( _List, terms ).guess_type1266,30212 -process_new_opt(_Base, dim=Dim, Type, Type, _, Dim) :- !.process_new_opt1268,30241 -process_new_opt(_Base, dim=Dim, Type, Type, _, Dim) :- !.process_new_opt1268,30241 -process_new_opt(_Base, dim=Dim, Type, Type, _, Dim) :- !.process_new_opt1268,30241 -process_new_opt(_Base, type=Type, _, Type, Dim, Dim) :- !.process_new_opt1269,30299 -process_new_opt(_Base, type=Type, _, Type, Dim, Dim) :- !.process_new_opt1269,30299 -process_new_opt(_Base, type=Type, _, Type, Dim, Dim) :- !.process_new_opt1269,30299 -process_new_opt( Base, base=Base, Type, Type, Dim, Dim) :- !.process_new_opt1270,30358 -process_new_opt( Base, base=Base, Type, Type, Dim, Dim) :- !.process_new_opt1270,30358 -process_new_opt( Base, base=Base, Type, Type, Dim, Dim) :- !.process_new_opt1270,30358 -process_new_opt(_Base, Opt, Type, Type, Dim, Dim) :-process_new_opt1271,30420 -process_new_opt(_Base, Opt, Type, Type, Dim, Dim) :-process_new_opt1271,30420 -process_new_opt(_Base, Opt, Type, Type, Dim, Dim) :-process_new_opt1271,30420 -el_list(_, V, _Els, _NEls, _I0, _I1) :-el_list1274,30524 -el_list(_, V, _Els, _NEls, _I0, _I1) :-el_list1274,30524 -el_list(_, V, _Els, _NEls, _I0, _I1) :-el_list1274,30524 -el_list([N|Extra], El, Els, NEls, I0, I1) :-el_list1277,30583 -el_list([N|Extra], El, Els, NEls, I0, I1) :-el_list1277,30583 -el_list([N|Extra], El, Els, NEls, I0, I1) :-el_list1277,30583 -el_list([N], El, Els, NEls, I0, I1) :-el_list1280,30690 -el_list([N], El, Els, NEls, I0, I1) :-el_list1280,30690 -el_list([N], El, Els, NEls, I0, I1) :-el_list1280,30690 -foreach( Domain, Goal) :-foreach1286,30796 -foreach( Domain, Goal) :-foreach1286,30796 -foreach( Domain, Goal) :-foreach1286,30796 -foreach( Domain, Goal ) :-foreach1292,31022 -foreach( Domain, Goal ) :-foreach1292,31022 -foreach( Domain, Goal ) :-foreach1292,31022 -foreach( Domain, Goal, Inp, Out) :-foreach1299,31233 -foreach( Domain, Goal, Inp, Out) :-foreach1299,31233 -foreach( Domain, Goal, Inp, Out) :-foreach1299,31233 -foreach( Domain, Goal, Inp, Out ) :-foreach1304,31441 -foreach( Domain, Goal, Inp, Out ) :-foreach1304,31441 -foreach( Domain, Goal, Inp, Out ) :-foreach1304,31441 -iterate( [], [], LocalVars, Goal, Vs, Bs ) :-iterate1310,31635 -iterate( [], [], LocalVars, Goal, Vs, Bs ) :-iterate1310,31635 -iterate( [], [], LocalVars, Goal, Vs, Bs ) :-iterate1310,31635 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs ) :-iterate1316,31790 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs ) :-iterate1316,31790 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs ) :-iterate1316,31790 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs ) :- !,iterate1318,31887 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs ) :- !,iterate1318,31887 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs ) :- !,iterate1318,31887 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs ) :- !,iterate1320,31981 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs ) :- !,iterate1320,31981 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs ) :- !,iterate1320,31981 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs ) :- !,iterate1323,32106 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs ) :- !,iterate1323,32106 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs ) :- !,iterate1323,32106 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs ) :- !,iterate1325,32213 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs ) :- !,iterate1325,32213 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs ) :- !,iterate1325,32213 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs ) :-iterate1327,32319 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs ) :-iterate1327,32319 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs ) :-iterate1327,32319 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs) :-iterate1335,32598 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs) :-iterate1335,32598 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs) :-iterate1335,32598 -iterate( [], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1349,32944 -iterate( [], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1349,32944 -iterate( [], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1349,32944 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1355,33125 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1355,33125 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1355,33125 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1357,33242 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1357,33242 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1357,33242 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1359,33356 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1359,33356 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1359,33356 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1362,33501 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1362,33501 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1362,33501 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1364,33627 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1364,33627 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1364,33627 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1366,33754 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1366,33754 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1366,33754 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out) :-iterate1374,34066 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out) :-iterate1374,34066 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out) :-iterate1374,34066 -eval(I, _Vs, _Bs, I) :- integer(I), !.eval1389,34467 -eval(I, _Vs, _Bs, I) :- integer(I), !.eval1389,34467 -eval(I, _Vs, _Bs, I) :- integer(I), !.eval1389,34467 -eval(I, Vs, Bs, NI) :-eval1390,34506 -eval(I, Vs, Bs, NI) :-eval1390,34506 -eval(I, Vs, Bs, NI) :-eval1390,34506 -matrix_seq(A, B, Dims, M) :-matrix_seq1394,34567 -matrix_seq(A, B, Dims, M) :-matrix_seq1394,34567 -matrix_seq(A, B, Dims, M) :-matrix_seq1394,34567 -ints(A,B,O) :-ints1398,34644 -ints(A,B,O) :-ints1398,34644 -ints(A,B,O) :-ints1398,34644 -zero(_, 0).zero1401,34719 -zero(_, 0).zero1401,34719 - -library/mpi/examples/demo.sh,0 - -library/mpi/examples/demo1.pl,472 -calc( From, From, Acc, Res ) :- !,calc16,298 -calc( From, From, Acc, Res ) :- !,calc16,298 -calc( From, From, Acc, Res ) :- !,calc16,298 -calc( From, To, Acc, Res ) :- !,calc18,353 -calc( From, To, Acc, Res ) :- !,calc18,353 -calc( From, To, Acc, Res ) :- !,calc18,353 -do(0, NumProc):-do28,535 -do(0, NumProc):-do28,535 -do(0, NumProc):-do28,535 -do(Rank, NumProc):-do50,1017 -do(Rank, NumProc):-do50,1017 -do(Rank, NumProc):-do50,1017 -start:-start68,1437 - -library/mpi/examples/demo1_mpe.pl,537 -calc(From, From, Acc, Res) :- !,calc25,539 -calc(From, From, Acc, Res) :- !,calc25,539 -calc(From, From, Acc, Res) :- !,calc25,539 -calc(From, To, Acc, Res) :- !,calc27,592 -calc(From, To, Acc, Res) :- !,calc27,592 -calc(From, To, Acc, Res) :- !,calc27,592 -do(0, NumProc):-do37,788 -do(0, NumProc):-do37,788 -do(0, NumProc):-do37,788 -do(Rank, NumProc):-do91,2065 -do(Rank, NumProc):-do91,2065 -do(Rank, NumProc):-do91,2065 -start(From, To):-start133,3089 -start(From, To):-start133,3089 -start(From, To):-start133,3089 - -library/mpi/examples/demo2.pl,507 -calc( From, From, Acc, Res ) :- !,calc12,211 -calc( From, From, Acc, Res ) :- !,calc12,211 -calc( From, From, Acc, Res ) :- !,calc12,211 -calc( From, To, Acc, Res ) :- !,calc14,266 -calc( From, To, Acc, Res ) :- !,calc14,266 -calc( From, To, Acc, Res ) :- !,calc14,266 -do(0, Num) :-do26,578 -do(0, Num) :-do26,578 -do(0, Num) :-do26,578 -do(Rank, _) :-do38,896 -do(Rank, _) :-do38,896 -do(Rank, _) :-do38,896 -start(Msg) :-start53,1180 -start(Msg) :-start53,1180 -start(Msg) :-start53,1180 - -library/mpi/examples/mk_gmiconf.awk,0 - -library/mpi/mpe.c,489 - #define HAVE_MPI HAVE_MPI26,891 - #define HAVE_MPI HAVE_MPI28,917 - #define HAVE_MPE HAVE_MPE33,1023 - #define HAVE_MPE HAVE_MPE35,1049 -p_init() /* mpe_open */p_init73,1486 -p_start() /* mpe_start */p_start80,1575 -p_close()p_close87,1707 -p_create_event()p_create_event108,2173 -p_create_state()p_create_state117,2381 -p_log() /* mpe_log(+EventType, +EventNum, +EventStr) */p_log172,3971 -Yap_InitMPE(void)Yap_InitMPE221,5216 - -library/mpi/mpe.yap,0 - -library/mpi/mpi.c,1333 - #define HAVE_MPI HAVE_MPI26,897 - #define HAVE_MPI HAVE_MPI28,923 -static int rank, numprocs, namelen;rank55,1406 -static int rank, numprocs, namelen;numprocs55,1406 -static int rank, numprocs, namelen;namelen55,1406 -static char processor_name[MPI_MAX_PROCESSOR_NAME];processor_name56,1442 -static int mpi_argc;mpi_argc58,1495 -static char **mpi_argv;mpi_argv59,1516 -#define RECV_BUF_SIZE RECV_BUF_SIZE62,1591 -static size_t bufsize, bufstrlen;bufsize69,1651 -static size_t bufsize, bufstrlen;bufstrlen69,1651 -static char *buf;buf70,1685 -static int bufptr;bufptr71,1703 -expand_buffer( int space )expand_buffer74,1735 -mpi_putc(Int ch)mpi_putc106,2517 -p_mpi_open( USES_REGS1 ) /* mpi_open(?rank, ?num_procs, ?proc_name) */p_mpi_open121,2681 -p_mpi_close( USES_REGS1 )p_mpi_close166,4186 -p_mpi_send( USES_REGS1 ) /* mpi_send(+data, +destination, +tag) */p_mpi_send174,4262 -p_mpi_receive( USES_REGS1 ) /* mpi_receive(-data, ?orig, ?tag) */p_mpi_receive226,5690 -p_mpi_bcast3( USES_REGS1 ) /* mpi_bcast( ?data, +root, +max_size ) */p_mpi_bcast3315,8091 -p_mpi_bcast2( USES_REGS1 ) /* mpi_bcast( ?data, +root ) */p_mpi_bcast2396,10467 -p_mpi_barrier( USES_REGS1 ) /* mpi_barrier/0 */p_mpi_barrier470,12466 -Yap_InitMPI(void)Yap_InitMPI487,12630 - -library/mpi/mpi.yap,0 - -library/nb.yap,0 - -library/ordsets.yap,13677 -list_to_ord_set(List, Set) :-list_to_ord_set216,5303 -list_to_ord_set(List, Set) :-list_to_ord_set216,5303 -list_to_ord_set(List, Set) :-list_to_ord_set216,5303 -merge([Head1|Tail1], [Head2|Tail2], [Head2|Merged]) :-merge228,5796 -merge([Head1|Tail1], [Head2|Tail2], [Head2|Merged]) :-merge228,5796 -merge([Head1|Tail1], [Head2|Tail2], [Head2|Merged]) :-merge228,5796 -merge([Head1|Tail1], List2, [Head1|Merged]) :-merge231,5909 -merge([Head1|Tail1], List2, [Head1|Merged]) :-merge231,5909 -merge([Head1|Tail1], List2, [Head1|Merged]) :-merge231,5909 -merge([], List2, List2) :- !.merge234,6004 -merge([], List2, List2) :- !.merge234,6004 -merge([], List2, List2) :- !.merge234,6004 -merge(List1, [], List1).merge235,6034 -merge(List1, [], List1).merge235,6034 -ord_disjoint([], _) :- !.ord_disjoint243,6232 -ord_disjoint([], _) :- !.ord_disjoint243,6232 -ord_disjoint([], _) :- !.ord_disjoint243,6232 -ord_disjoint(_, []) :- !.ord_disjoint244,6258 -ord_disjoint(_, []) :- !.ord_disjoint244,6258 -ord_disjoint(_, []) :- !.ord_disjoint244,6258 -ord_disjoint([Head1|Tail1], [Head2|Tail2]) :-ord_disjoint245,6284 -ord_disjoint([Head1|Tail1], [Head2|Tail2]) :-ord_disjoint245,6284 -ord_disjoint([Head1|Tail1], [Head2|Tail2]) :-ord_disjoint245,6284 -ord_disjoint(<, _, Tail1, Head2, Tail2) :-ord_disjoint249,6412 -ord_disjoint(<, _, Tail1, Head2, Tail2) :-ord_disjoint249,6412 -ord_disjoint(<, _, Tail1, Head2, Tail2) :-ord_disjoint249,6412 -ord_disjoint(>, Head1, Tail1, _, Tail2) :-ord_disjoint251,6492 -ord_disjoint(>, Head1, Tail1, _, Tail2) :-ord_disjoint251,6492 -ord_disjoint(>, Head1, Tail1, _, Tail2) :-ord_disjoint251,6492 -ord_add_element([], Element, [Element]).ord_add_element262,6846 -ord_add_element([], Element, [Element]).ord_add_element262,6846 -ord_add_element([Head|Tail], Element, Set) :-ord_add_element263,6887 -ord_add_element([Head|Tail], Element, Set) :-ord_add_element263,6887 -ord_add_element([Head|Tail], Element, Set) :-ord_add_element263,6887 -ord_insert([], Element, [Element]).ord_insert268,7013 -ord_insert([], Element, [Element]).ord_insert268,7013 -ord_insert([Head|Tail], Element, Set) :-ord_insert269,7049 -ord_insert([Head|Tail], Element, Set) :-ord_insert269,7049 -ord_insert([Head|Tail], Element, Set) :-ord_insert269,7049 -ord_insert(<, Head, Tail, Element, [Head|Set]) :-ord_insert274,7170 -ord_insert(<, Head, Tail, Element, [Head|Set]) :-ord_insert274,7170 -ord_insert(<, Head, Tail, Element, [Head|Set]) :-ord_insert274,7170 -ord_insert(=, Head, Tail, _, [Head|Tail]).ord_insert276,7253 -ord_insert(=, Head, Tail, _, [Head|Tail]).ord_insert276,7253 -ord_insert(>, Head, Tail, Element, [Element,Head|Tail]).ord_insert277,7296 -ord_insert(>, Head, Tail, Element, [Element,Head|Tail]).ord_insert277,7296 -ord_intersect([Head1|Tail1], [Head2|Tail2]) :-ord_intersect285,7516 -ord_intersect([Head1|Tail1], [Head2|Tail2]) :-ord_intersect285,7516 -ord_intersect([Head1|Tail1], [Head2|Tail2]) :-ord_intersect285,7516 -ord_intersect(=, _, _, _, _).ord_intersect289,7646 -ord_intersect(=, _, _, _, _).ord_intersect289,7646 -ord_intersect(<, _, Tail1, Head2, Tail2) :-ord_intersect290,7676 -ord_intersect(<, _, Tail1, Head2, Tail2) :-ord_intersect290,7676 -ord_intersect(<, _, Tail1, Head2, Tail2) :-ord_intersect290,7676 -ord_intersect(>, Head1, Tail1, _, Tail2) :-ord_intersect292,7758 -ord_intersect(>, Head1, Tail1, _, Tail2) :-ord_intersect292,7758 -ord_intersect(>, Head1, Tail1, _, Tail2) :-ord_intersect292,7758 -ord_intersect(L1, L2, L) :-ord_intersect295,7841 -ord_intersect(L1, L2, L) :-ord_intersect295,7841 -ord_intersect(L1, L2, L) :-ord_intersect295,7841 -ord_intersection([], _, []) :- !.ord_intersection303,8087 -ord_intersection([], _, []) :- !.ord_intersection303,8087 -ord_intersection([], _, []) :- !.ord_intersection303,8087 -ord_intersection([_|_], [], []) :- !.ord_intersection304,8121 -ord_intersection([_|_], [], []) :- !.ord_intersection304,8121 -ord_intersection([_|_], [], []) :- !.ord_intersection304,8121 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection) :-ord_intersection305,8159 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection) :-ord_intersection305,8159 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection) :-ord_intersection305,8159 -ord_intersection([], L, [], L) :- !.ord_intersection320,8669 -ord_intersection([], L, [], L) :- !.ord_intersection320,8669 -ord_intersection([], L, [], L) :- !.ord_intersection320,8669 -ord_intersection([_|_], [], [], []) :- !.ord_intersection321,8706 -ord_intersection([_|_], [], [], []) :- !.ord_intersection321,8706 -ord_intersection([_|_], [], [], []) :- !.ord_intersection321,8706 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection, Difference) :-ord_intersection322,8748 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection, Difference) :-ord_intersection322,8748 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection, Difference) :-ord_intersection322,8748 -ord_seteq(Set1, Set2) :-ord_seteq340,9320 -ord_seteq(Set1, Set2) :-ord_seteq340,9320 -ord_seteq(Set1, Set2) :-ord_seteq340,9320 -ord_subset([], _) :- !.ord_subset349,9485 -ord_subset([], _) :- !.ord_subset349,9485 -ord_subset([], _) :- !.ord_subset349,9485 -ord_subset([Head1|Tail1], [Head2|Tail2]) :-ord_subset350,9509 -ord_subset([Head1|Tail1], [Head2|Tail2]) :-ord_subset350,9509 -ord_subset([Head1|Tail1], [Head2|Tail2]) :-ord_subset350,9509 -ord_subset(=, _, Tail1, _, Tail2) :-ord_subset354,9633 -ord_subset(=, _, Tail1, _, Tail2) :-ord_subset354,9633 -ord_subset(=, _, Tail1, _, Tail2) :-ord_subset354,9633 -ord_subset(>, Head1, Tail1, _, Tail2) :-ord_subset356,9697 -ord_subset(>, Head1, Tail1, _, Tail2) :-ord_subset356,9697 -ord_subset(>, Head1, Tail1, _, Tail2) :-ord_subset356,9697 -ord_subtract(Set1, [], Set1) :- !.ord_subtract366,9925 -ord_subtract(Set1, [], Set1) :- !.ord_subtract366,9925 -ord_subtract(Set1, [], Set1) :- !.ord_subtract366,9925 -ord_subtract([], _, []) :- !.ord_subtract367,9960 -ord_subtract([], _, []) :- !.ord_subtract367,9960 -ord_subtract([], _, []) :- !.ord_subtract367,9960 -ord_subtract([Head1|Tail1], [Head2|Tail2], Difference) :-ord_subtract368,9990 -ord_subtract([Head1|Tail1], [Head2|Tail2], Difference) :-ord_subtract368,9990 -ord_subtract([Head1|Tail1], [Head2|Tail2], Difference) :-ord_subtract368,9990 -ord_subtract(=, _, Tail1, _, Tail2, Difference) :-ord_subtract372,10142 -ord_subtract(=, _, Tail1, _, Tail2, Difference) :-ord_subtract372,10142 -ord_subtract(=, _, Tail1, _, Tail2, Difference) :-ord_subtract372,10142 -ord_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_subtract374,10242 -ord_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_subtract374,10242 -ord_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_subtract374,10242 -ord_subtract(>, Head1, Tail1, _, Tail2, Difference) :-ord_subtract376,10358 -ord_subtract(>, Head1, Tail1, _, Tail2, Difference) :-ord_subtract376,10358 -ord_subtract(>, Head1, Tail1, _, Tail2, Difference) :-ord_subtract376,10358 -ord_del_element([], _, []).ord_del_element385,10585 -ord_del_element([], _, []).ord_del_element385,10585 -ord_del_element([Head1|Tail1], Head2, Rest) :-ord_del_element386,10613 -ord_del_element([Head1|Tail1], Head2, Rest) :-ord_del_element386,10613 -ord_del_element([Head1|Tail1], Head2, Rest) :-ord_del_element386,10613 -ord_del_element(=, _, Tail1, _, Tail1).ord_del_element390,10744 -ord_del_element(=, _, Tail1, _, Tail1).ord_del_element390,10744 -ord_del_element(<, Head1, Tail1, Head2, [Head1|Difference]) :-ord_del_element391,10788 -ord_del_element(<, Head1, Tail1, Head2, [Head1|Difference]) :-ord_del_element391,10788 -ord_del_element(<, Head1, Tail1, Head2, [Head1|Difference]) :-ord_del_element391,10788 -ord_del_element(>, Head1, Tail1, _, [Head1|Tail1]).ord_del_element393,10895 -ord_del_element(>, Head1, Tail1, _, [Head1|Tail1]).ord_del_element393,10895 -ord_symdiff(Set1, [], Set1) :- !.ord_symdiff400,11075 -ord_symdiff(Set1, [], Set1) :- !.ord_symdiff400,11075 -ord_symdiff(Set1, [], Set1) :- !.ord_symdiff400,11075 -ord_symdiff([], Set2, Set2) :- !.ord_symdiff401,11109 -ord_symdiff([], Set2, Set2) :- !.ord_symdiff401,11109 -ord_symdiff([], Set2, Set2) :- !.ord_symdiff401,11109 -ord_symdiff([Head1|Tail1], [Head2|Tail2], Difference) :-ord_symdiff402,11143 -ord_symdiff([Head1|Tail1], [Head2|Tail2], Difference) :-ord_symdiff402,11143 -ord_symdiff([Head1|Tail1], [Head2|Tail2], Difference) :-ord_symdiff402,11143 -ord_symdiff(=, _, Tail1, _, Tail2, Difference) :-ord_symdiff406,11293 -ord_symdiff(=, _, Tail1, _, Tail2, Difference) :-ord_symdiff406,11293 -ord_symdiff(=, _, Tail1, _, Tail2, Difference) :-ord_symdiff406,11293 -ord_symdiff(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_symdiff408,11391 -ord_symdiff(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_symdiff408,11391 -ord_symdiff(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_symdiff408,11391 -ord_symdiff(>, Head1, Tail1, Head2, Tail2, [Head2|Difference]) :-ord_symdiff410,11505 -ord_symdiff(>, Head1, Tail1, Head2, Tail2, [Head2|Difference]) :-ord_symdiff410,11505 -ord_symdiff(>, Head1, Tail1, Head2, Tail2, [Head2|Difference]) :-ord_symdiff410,11505 -ord_union([S|Set1], [], [S|Set1]).ord_union419,11797 -ord_union([S|Set1], [], [S|Set1]).ord_union419,11797 -ord_union([], Set2, Set2).ord_union420,11832 -ord_union([], Set2, Set2).ord_union420,11832 -ord_union([Head1|Tail1], [Head2|Tail2], Union) :-ord_union421,11859 -ord_union([Head1|Tail1], [Head2|Tail2], Union) :-ord_union421,11859 -ord_union([Head1|Tail1], [Head2|Tail2], Union) :-ord_union421,11859 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union]) :-ord_union425,11995 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union]) :-ord_union425,11995 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union]) :-ord_union425,11995 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ord_union427,12086 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ord_union427,12086 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ord_union427,12086 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ord_union429,12186 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ord_union429,12186 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ord_union429,12186 -ord_union(Set1, [], Set1, []) :- !.ord_union437,12458 -ord_union(Set1, [], Set1, []) :- !.ord_union437,12458 -ord_union(Set1, [], Set1, []) :- !.ord_union437,12458 -ord_union([], Set2, Set2, Set2) :- !.ord_union438,12494 -ord_union([], Set2, Set2, Set2) :- !.ord_union438,12494 -ord_union([], Set2, Set2, Set2) :- !.ord_union438,12494 -ord_union([Head1|Tail1], [Head2|Tail2], Union, Diff) :-ord_union439,12532 -ord_union([Head1|Tail1], [Head2|Tail2], Union, Diff) :-ord_union439,12532 -ord_union([Head1|Tail1], [Head2|Tail2], Union, Diff) :-ord_union439,12532 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union], Diff) :-ord_union443,12680 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union], Diff) :-ord_union443,12680 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union], Diff) :-ord_union443,12680 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union], Diff) :-ord_union445,12780 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union], Diff) :-ord_union445,12780 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union], Diff) :-ord_union445,12780 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union], [Head2|Diff]) :-ord_union447,12892 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union], [Head2|Diff]) :-ord_union447,12892 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union], [Head2|Diff]) :-ord_union447,12892 -ord_setproduct([], _, []).ord_setproduct459,13380 -ord_setproduct([], _, []).ord_setproduct459,13380 -ord_setproduct([H|T], L, Product) :-ord_setproduct460,13407 -ord_setproduct([H|T], L, Product) :-ord_setproduct460,13407 -ord_setproduct([H|T], L, Product) :-ord_setproduct460,13407 -ord_setproduct([], _, L, L).ord_setproduct464,13512 -ord_setproduct([], _, L, L).ord_setproduct464,13512 -ord_setproduct([H|T], X, [X-H|TX], TL) :-ord_setproduct465,13541 -ord_setproduct([H|T], X, [X-H|TX], TL) :-ord_setproduct465,13541 -ord_setproduct([H|T], X, [X-H|TX], TL) :-ord_setproduct465,13541 -ord_member(El,[H|T]):-ord_member469,13616 -ord_member(El,[H|T]):-ord_member469,13616 -ord_member(El,[H|T]):-ord_member469,13616 -ord_member(=,_,_).ord_member473,13687 -ord_member(=,_,_).ord_member473,13687 -ord_member(>,El,[H|T]) :-ord_member474,13706 -ord_member(>,El,[H|T]) :-ord_member474,13706 -ord_member(>,El,[H|T]) :-ord_member474,13706 -ord_union([], []).ord_union478,13780 -ord_union([], []).ord_union478,13780 -ord_union([Set|Sets], Union) :-ord_union479,13799 -ord_union([Set|Sets], Union) :-ord_union479,13799 -ord_union([Set|Sets], Union) :-ord_union479,13799 -ord_union_all(N,Sets0,Union,Sets) :-ord_union_all483,13926 -ord_union_all(N,Sets0,Union,Sets) :-ord_union_all483,13926 -ord_union_all(N,Sets0,Union,Sets) :-ord_union_all483,13926 -ord_empty([]).ord_empty494,14241 -ord_empty([]).ord_empty494,14241 -ord_memberchk(Element, [E|_]) :- E == Element, !.ord_memberchk496,14257 -ord_memberchk(Element, [E|_]) :- E == Element, !.ord_memberchk496,14257 -ord_memberchk(Element, [E|_]) :- E == Element, !.ord_memberchk496,14257 -ord_memberchk(Element, [_|Set]) :-ord_memberchk497,14307 -ord_memberchk(Element, [_|Set]) :-ord_memberchk497,14307 -ord_memberchk(Element, [_|Set]) :-ord_memberchk497,14307 - -library/parameters.yap,23205 -:- dynamic extension/4, init/2, frame/2, exclusive/0.dynamic83,1853 -:- dynamic extension/4, init/2, frame/2, exclusive/0.dynamic83,1853 -user:term_expansion(Term,Clauses) :-term_expansion85,1908 -user:term_expansion(Term,Clauses) :-term_expansion85,1908 -find_name( [Name=V0|_] , V, Name) :- V=V0, !.find_name96,2308 -find_name( [Name=V0|_] , V, Name) :- V=V0, !.find_name96,2308 -find_name( [Name=V0|_] , V, Name) :- V=V0, !.find_name96,2308 -find_name( [_|UnsortedCurrentNames] , V, Name) :-find_name97,2354 -find_name( [_|UnsortedCurrentNames] , V, Name) :-find_name97,2354 -find_name( [_|UnsortedCurrentNames] , V, Name) :-find_name97,2354 -expand( Skel, Names, GoalVars, Body, Tests, Out) :-expand100,2450 -expand( Skel, Names, GoalVars, Body, Tests, Out) :-expand100,2450 -expand( Skel, Names, GoalVars, Body, Tests, Out) :-expand100,2450 -swap_f(Key-V, Key=V).swap_f116,2899 -swap_f(Key-V, Key=V).swap_f116,2899 -ptree( bdd(Root,L,_Vs) , Names, File, Dic) :-ptree118,2922 -ptree( bdd(Root,L,_Vs) , Names, File, Dic) :-ptree118,2922 -ptree( bdd(Root,L,_Vs) , Names, File, Dic) :-ptree118,2922 -ptree(_, _, _).ptree134,3369 -ptree(_, _, _).ptree134,3369 -bindv( X = '$VAR'(X) ) :- !.bindv136,3386 -bindv( X = '$VAR'(X) ) :- !.bindv136,3386 -bindv( X = '$VAR'(X) ) :- !.bindv136,3386 -bindv( X - '$VAR'(X) ) :- !.bindv137,3415 -bindv( X - '$VAR'(X) ) :- !.bindv137,3415 -bindv( X - '$VAR'(X) ) :- !.bindv137,3415 -bindv(_).bindv138,3444 -bindv(_).bindv138,3444 -print_node(S,pp( Val, Name, Left, Right )) :-print_node140,3455 -print_node(S,pp( Val, Name, Left, Right )) :-print_node140,3455 -print_node(S,pp( Val, Name, Left, Right )) :-print_node140,3455 -print_node(S,pn( Val, Name, Left, Right )) :-print_node146,3742 -print_node(S,pn( Val, Name, Left, Right )) :-print_node146,3742 -print_node(S,pn( Val, Name, Left, Right )) :-print_node146,3742 -simplify(V,V) :- var(V),!.simplify157,4127 -simplify(V,V) :- var(V),!.simplify157,4127 -simplify(V,V) :- var(V),!.simplify157,4127 -simplify('$VAR'(X),Y) :- !, simplify(X,Y).simplify158,4154 -simplify('$VAR'(X),Y) :- !, simplify(X,Y).simplify158,4154 -simplify('$VAR'(X),Y) :- !, simplify(X,Y).simplify158,4154 -simplify('$VAR'(X),Y) :- !, simplify(X,Y).simplify158,4154 -simplify('$VAR'(X),Y) :- !, simplify(X,Y).simplify158,4154 -simplify(c^(X),Y) :- !, simplify(X,Y).simplify159,4197 -simplify(c^(X),Y) :- !, simplify(X,Y).simplify159,4197 -simplify(c^(X),Y) :- !, simplify(X,Y).simplify159,4197 -simplify(c^(X),Y) :- !, simplify(X,Y).simplify159,4197 -simplify(c^(X),Y) :- !, simplify(X,Y).simplify159,4197 -simplify(G, X:M) :- G=.. [X,N], !, simplify(N,M).simplify160,4236 -simplify(G, X:M) :- G=.. [X,N], !, simplify(N,M).simplify160,4236 -simplify(G, X:M) :- G=.. [X,N], !, simplify(N,M).simplify160,4236 -simplify(G, X:M) :- G=.. [X,N], !, simplify(N,M).simplify160,4236 -simplify(G, X:M) :- G=.. [X,N], !, simplify(N,M).simplify160,4236 -simplify(X, X).simplify161,4286 -simplify(X, X).simplify161,4286 -pick([LastV,LastV1|More], As, OVs) :-pick165,4307 -pick([LastV,LastV1|More], As, OVs) :-pick165,4307 -pick([LastV,LastV1|More], As, OVs) :-pick165,4307 -pick([Pair|More], As, OVs) :-pick177,4557 -pick([Pair|More], As, OVs) :-pick177,4557 -pick([Pair|More], As, OVs) :-pick177,4557 -pick([], As, As).pick184,4728 -pick([], As, As).pick184,4728 -pick_all([LastV,LastV1|More], As, OVs) :-pick_all186,4747 -pick_all([LastV,LastV1|More], As, OVs) :-pick_all186,4747 -pick_all([LastV,LastV1|More], As, OVs) :-pick_all186,4747 -pick_all([Pair|More], As, [V|NVs]) :-pick_all198,5068 -pick_all([Pair|More], As, [V|NVs]) :-pick_all198,5068 -pick_all([Pair|More], As, [V|NVs]) :-pick_all198,5068 -pick_all([], As, As).pick_all202,5210 -pick_all([], As, As).pick_all202,5210 -skip_pick([El|More], Id, Left ) :-skip_pick204,5233 -skip_pick([El|More], Id, Left ) :-skip_pick204,5233 -skip_pick([El|More], Id, Left ) :-skip_pick204,5233 -skip_pick(More, _Id, More ).skip_pick209,5340 -skip_pick(More, _Id, More ).skip_pick209,5340 -pick(Els,_As,Names) :-pick212,5373 -pick(Els,_As,Names) :-pick212,5373 -pick(Els,_As,Names) :-pick212,5373 -fetch_var(V, V) :- var(V), !.fetch_var215,5429 -fetch_var(V, V) :- var(V), !.fetch_var215,5429 -fetch_var(V, V) :- var(V), !.fetch_var215,5429 -fetch_var(_:_=V, V) :- var(V), !.fetch_var216,5459 -fetch_var(_:_=V, V) :- var(V), !.fetch_var216,5459 -fetch_var(_:_=V, V) :- var(V), !.fetch_var216,5459 -fetch_var(_=V, V) :- var(V), !.fetch_var217,5493 -fetch_var(_=V, V) :- var(V), !.fetch_var217,5493 -fetch_var(_=V, V) :- var(V), !.fetch_var217,5493 -original_name(_,V,V) :- var(V), !.original_name219,5526 -original_name(_,V,V) :- var(V), !.original_name219,5526 -original_name(_,V,V) :- var(V), !.original_name219,5526 -original_name(HVs,_ID:Name=V,V) :- vmemberck(V, HVs), !, V='$VAR'(Name).original_name220,5561 -original_name(HVs,_ID:Name=V,V) :- vmemberck(V, HVs), !, V='$VAR'(Name).original_name220,5561 -original_name(HVs,_ID:Name=V,V) :- vmemberck(V, HVs), !, V='$VAR'(Name).original_name220,5561 -original_name(HVs,_ID:Name=V,V) :- vmemberck(V, HVs), !, V='$VAR'(Name).original_name220,5561 -original_name(HVs,_ID:Name=V,V) :- vmemberck(V, HVs), !, V='$VAR'(Name).original_name220,5561 -original_name(HVs,Name=V,V) :- vmemberchk(V, HVs), !,V='$VAR'(Name).original_name221,5634 -original_name(HVs,Name=V,V) :- vmemberchk(V, HVs), !,V='$VAR'(Name).original_name221,5634 -original_name(HVs,Name=V,V) :- vmemberchk(V, HVs), !,V='$VAR'(Name).original_name221,5634 -original_name(HVs,Name=V,V) :- vmemberchk(V, HVs), !,V='$VAR'(Name).original_name221,5634 -original_name(HVs,Name=V,V) :- vmemberchk(V, HVs), !,V='$VAR'(Name).original_name221,5634 -original_name(_HVs,_,_V).original_name222,5703 -original_name(_HVs,_,_V).original_name222,5703 -vmemberchk(V,[V0|_]) :- V == V0, !.vmemberchk225,5731 -vmemberchk(V,[V0|_]) :- V == V0, !.vmemberchk225,5731 -vmemberchk(V,[V0|_]) :- V == V0, !.vmemberchk225,5731 -vmemberchk(V,[_V0|Vs]) :-vmemberchk226,5767 -vmemberchk(V,[_V0|Vs]) :-vmemberchk226,5767 -vmemberchk(V,[_V0|Vs]) :-vmemberchk226,5767 -new_test(Test, B, OUT ) :-new_test240,6071 -new_test(Test, B, OUT ) :-new_test240,6071 -new_test(Test, B, OUT ) :-new_test240,6071 -new_test(Test, B, (Test, B) ) :-new_test247,6273 -new_test(Test, B, (Test, B) ) :-new_test247,6273 -new_test(Test, B, (Test, B) ) :-new_test247,6273 -pre_evaluate( V?=C, true ) :- var(V), !, V = C.pre_evaluate251,6390 -pre_evaluate( V?=C, true ) :- var(V), !, V = C.pre_evaluate251,6390 -pre_evaluate( V?=C, true ) :- var(V), !, V = C.pre_evaluate251,6390 -pre_evaluate( _V?=_C, true ).pre_evaluate252,6438 -pre_evaluate( _V?=_C, true ).pre_evaluate252,6438 -pre_evaluate( V=C, true ) :- nonvar(V), V \= '$VAR'(_), !, V = C.pre_evaluate253,6468 -pre_evaluate( V=C, true ) :- nonvar(V), V \= '$VAR'(_), !, V = C.pre_evaluate253,6468 -pre_evaluate( V=C, true ) :- nonvar(V), V \= '$VAR'(_), !, V = C.pre_evaluate253,6468 -pre_evaluate( V=_C, false ) :- var(V), !.pre_evaluate254,6534 -pre_evaluate( V=_C, false ) :- var(V), !.pre_evaluate254,6534 -pre_evaluate( V=_C, false ) :- var(V), !.pre_evaluate254,6534 -pre_evaluate( V=C, V=C ).pre_evaluate255,6576 -pre_evaluate( V=C, V=C ).pre_evaluate255,6576 -pre_evaluate( var(V), true ) :- var(V), !.pre_evaluate256,6602 -pre_evaluate( var(V), true ) :- var(V), !.pre_evaluate256,6602 -pre_evaluate( var(V), true ) :- var(V), !.pre_evaluate256,6602 -pre_evaluate( var(T), false ) :- T \= '$VAR'(_), !.pre_evaluate257,6645 -pre_evaluate( var(T), false ) :- T \= '$VAR'(_), !.pre_evaluate257,6645 -pre_evaluate( var(T), false ) :- T \= '$VAR'(_), !.pre_evaluate257,6645 -pre_evaluate( var(T), var(T) ) :- !.pre_evaluate258,6697 -pre_evaluate( var(T), var(T) ) :- !.pre_evaluate258,6697 -pre_evaluate( var(T), var(T) ) :- !.pre_evaluate258,6697 -pre_evaluate( A*B, O ) :-pre_evaluate259,6734 -pre_evaluate( A*B, O ) :-pre_evaluate259,6734 -pre_evaluate( A*B, O ) :-pre_evaluate259,6734 -pre_evaluate( A+B, O ) :-pre_evaluate267,6929 -pre_evaluate( A+B, O ) :-pre_evaluate267,6929 -pre_evaluate( A+B, O ) :-pre_evaluate267,6929 -pre_evaluate( G, O ) :-pre_evaluate275,7171 -pre_evaluate( G, O ) :-pre_evaluate275,7171 -pre_evaluate( G, O ) :-pre_evaluate275,7171 -pre_evaluate( ( G1 ==> G2), O ) :-pre_evaluate280,7343 -pre_evaluate( ( G1 ==> G2), O ) :-pre_evaluate280,7343 -pre_evaluate( ( G1 ==> G2), O ) :-pre_evaluate280,7343 -pre_evaluate( c^G, G ).pre_evaluate290,7668 -pre_evaluate( c^G, G ).pre_evaluate290,7668 -pre_evaluate( ( G1 #==> G2), O ) :-pre_evaluate291,7692 -pre_evaluate( ( G1 #==> G2), O ) :-pre_evaluate291,7692 -pre_evaluate( ( G1 #==> G2), O ) :-pre_evaluate291,7692 -type_domain_goal( nonvar(Parameter), Parameter).type_domain_goal297,7854 -type_domain_goal( nonvar(Parameter), Parameter).type_domain_goal297,7854 -type_domain_goal( atom(Parameter), Parameter).type_domain_goal298,7903 -type_domain_goal( atom(Parameter), Parameter).type_domain_goal298,7903 -type_domain_goal( atomic(Parameter), Parameter).type_domain_goal299,7950 -type_domain_goal( atomic(Parameter), Parameter).type_domain_goal299,7950 -type_domain_goal( number(Parameter), Parameter).type_domain_goal300,7999 -type_domain_goal( number(Parameter), Parameter).type_domain_goal300,7999 -type_domain_goal( float(Parameter), Parameter).type_domain_goal301,8048 -type_domain_goal( float(Parameter), Parameter).type_domain_goal301,8048 -type_domain_goal( nonvar(Parameter), Parameter).type_domain_goal302,8096 -type_domain_goal( nonvar(Parameter), Parameter).type_domain_goal302,8096 -type_domain_goal( compound(Parameter), Parameter).type_domain_goal303,8145 -type_domain_goal( compound(Parameter), Parameter).type_domain_goal303,8145 -type_domain_goal( is_list(Parameter), Parameter).type_domain_goal304,8196 -type_domain_goal( is_list(Parameter), Parameter).type_domain_goal304,8196 -type_domain_goal( integer(Parameter), Parameter).type_domain_goal305,8246 -type_domain_goal( integer(Parameter), Parameter).type_domain_goal305,8246 -type_domain_goal( internet_host(Parameter), Parameter).type_domain_goal306,8296 -type_domain_goal( internet_host(Parameter), Parameter).type_domain_goal306,8296 -type_domain_goal( positive_or_zero_integer(Parameter), Parameter).type_domain_goal307,8352 -type_domain_goal( positive_or_zero_integer(Parameter), Parameter).type_domain_goal307,8352 -type_domain_goal( file(Parameter), Parameter).type_domain_goal308,8419 -type_domain_goal( file(Parameter), Parameter).type_domain_goal308,8419 -type_domain_goal( Parameter = A, Parameter) :- atomic(A), !.type_domain_goal309,8466 -type_domain_goal( Parameter = A, Parameter) :- atomic(A), !.type_domain_goal309,8466 -type_domain_goal( Parameter = A, Parameter) :- atomic(A), !.type_domain_goal309,8466 -type_domain_goal( A = Parameter, Parameter) :- atomic(A).type_domain_goal310,8527 -type_domain_goal( A = Parameter, Parameter) :- atomic(A).type_domain_goal310,8527 -type_domain_goal( A = Parameter, Parameter) :- atomic(A).type_domain_goal310,8527 -type_domain_goal( A = Parameter, Parameter) :- atomic(A).type_domain_goal310,8527 -type_domain_goal( A = Parameter, Parameter) :- atomic(A).type_domain_goal310,8527 -type_domain_goal( Parameter in _ , Parameter).type_domain_goal311,8585 -type_domain_goal( Parameter in _ , Parameter).type_domain_goal311,8585 -new_init( _, _ = G, B, B ) :- var(G), !.new_init313,8633 -new_init( _, _ = G, B, B ) :- var(G), !.new_init313,8633 -new_init( _, _ = G, B, B ) :- var(G), !.new_init313,8633 -new_init( _, _ = G, B, B ) :- G \= '$VAR'(_), !.new_init314,8674 -new_init( _, _ = G, B, B ) :- G \= '$VAR'(_), !.new_init314,8674 -new_init( _, _ = G, B, B ) :- G \= '$VAR'(_), !.new_init314,8674 -new_init( Vs, _ = Val, (Var = Val, B), B ) :-new_init315,8723 -new_init( Vs, _ = Val, (Var = Val, B), B ) :-new_init315,8723 -new_init( Vs, _ = Val, (Var = Val, B), B ) :-new_init315,8723 -merge_variables( [], _CurrentNames ).merge_variables319,8800 -merge_variables( [], _CurrentNames ).merge_variables319,8800 -merge_variables( _Names, [] ).merge_variables320,8838 -merge_variables( _Names, [] ).merge_variables320,8838 -merge_variables( [S0=V0|Names], [S1=V1|CurrentNames] ) :-merge_variables321,8869 -merge_variables( [S0=V0|Names], [S1=V1|CurrentNames] ) :-merge_variables321,8869 -merge_variables( [S0=V0|Names], [S1=V1|CurrentNames] ) :-merge_variables321,8869 -cons(G, cons(G)).cons337,9390 -cons(G, cons(G)).cons337,9390 -cons(G) :-cons339,9409 -cons(G) :-cons339,9409 -cons(G) :-cons339,9409 -cons(G) :-cons341,9435 -cons(G) :-cons341,9435 -cons(G) :-cons341,9435 -cons(_).cons343,9459 -cons(_).cons343,9459 -satisfy(( A ==> C)) :-satisfy345,9469 -satisfy(( A ==> C)) :-satisfy345,9469 -satisfy(( A ==> C)) :-satisfy345,9469 -satisfy(domain(X,Vs)) :-satisfy347,9519 -satisfy(domain(X,Vs)) :-satisfy347,9519 -satisfy(domain(X,Vs)) :-satisfy347,9519 -satisfy(atom(X)) :-satisfy349,9568 -satisfy(atom(X)) :-satisfy349,9568 -satisfy(atom(X)) :-satisfy349,9568 -satisfy(integer(X)) :-satisfy351,9598 -satisfy(integer(X)) :-satisfy351,9598 -satisfy(integer(X)) :-satisfy351,9598 -satisfy(atom(X)) :-satisfy353,9641 -satisfy(atom(X)) :-satisfy353,9641 -satisfy(atom(X)) :-satisfy353,9641 -satisfy(internet_host(X)) :-satisfy355,9678 -satisfy(internet_host(X)) :-satisfy355,9678 -satisfy(internet_host(X)) :-satisfy355,9678 -satisfy(positive_or_zero_integer(X)) :-satisfy363,9847 -satisfy(positive_or_zero_integer(X)) :-satisfy363,9847 -satisfy(positive_or_zero_integer(X)) :-satisfy363,9847 -satisfy(file(X)) :-satisfy366,9921 -satisfy(file(X)) :-satisfy366,9921 -satisfy(file(X)) :-satisfy366,9921 -satisfy(c^G) :-satisfy368,9952 -satisfy(c^G) :-satisfy368,9952 -satisfy(c^G) :-satisfy368,9952 -satisfy((X in D)) :-satisfy370,9985 -satisfy((X in D)) :-satisfy370,9985 -satisfy((X in D)) :-satisfy370,9985 -ensure(( A ==> C)) :-ensure378,10078 -ensure(( A ==> C)) :-ensure378,10078 -ensure(( A ==> C)) :-ensure378,10078 -ensure(domain(X,Vs)) :-ensure380,10126 -ensure(domain(X,Vs)) :-ensure380,10126 -ensure(domain(X,Vs)) :-ensure380,10126 -ensure(atom(X)) :-ensure386,10262 -ensure(atom(X)) :-ensure386,10262 -ensure(atom(X)) :-ensure386,10262 -ensure(integer(X)) :-ensure394,10379 -ensure(integer(X)) :-ensure394,10379 -ensure(integer(X)) :-ensure394,10379 -ensure(internet_host(X)) :-ensure402,10505 -ensure(internet_host(X)) :-ensure402,10505 -ensure(internet_host(X)) :-ensure402,10505 -ensure(positive_or_zero_integer(X)) :-ensure418,10729 -ensure(positive_or_zero_integer(X)) :-ensure418,10729 -ensure(positive_or_zero_integer(X)) :-ensure418,10729 -ensure(file(X)) :-ensure428,10930 -ensure(file(X)) :-ensure428,10930 -ensure(file(X)) :-ensure428,10930 -ensure((X in D)) :-ensure436,11047 -ensure((X in D)) :-ensure436,11047 -ensure((X in D)) :-ensure436,11047 -formula( Axioms, FormulaE, Dic) :-formula448,11245 -formula( Axioms, FormulaE, Dic) :-formula448,11245 -formula( Axioms, FormulaE, Dic) :-formula448,11245 -is_frame( A =:= B ) :- assert( frame(A, B)).is_frame455,11461 -is_frame( A =:= B ) :- assert( frame(A, B)).is_frame455,11461 -is_frame( A =:= B ) :- assert( frame(A, B)).is_frame455,11461 -is_frame( A =:= B ) :- assert( frame(A, B)).is_frame455,11461 -is_frame( A =:= B ) :- assert( frame(A, B)).is_frame455,11461 -is_frame( level(N, [H|L]) ) :- !, maplist( assertn(level, N), [H|L] ).is_frame456,11506 -is_frame( level(N, [H|L]) ) :- !, maplist( assertn(level, N), [H|L] ).is_frame456,11506 -is_frame( level(N, [H|L]) ) :- !, maplist( assertn(level, N), [H|L] ).is_frame456,11506 -is_frame( level(N, [H|L]) ) :- !, maplist( assertn(level, N), [H|L] ).is_frame456,11506 -is_frame( level(N, [H|L]) ) :- !, maplist( assertn(level, N), [H|L] ).is_frame456,11506 -is_frame( level(N, L ) ) :- assert( level( N, L) ).is_frame457,11577 -is_frame( level(N, L ) ) :- assert( level( N, L) ).is_frame457,11577 -is_frame( level(N, L ) ) :- assert( level( N, L) ).is_frame457,11577 -is_frame( level(N, L ) ) :- assert( level( N, L) ).is_frame457,11577 -is_frame( level(N, L ) ) :- assert( level( N, L) ).is_frame457,11577 -assertn(level, N, L) :- assert( level( N, L) ).assertn459,11630 -assertn(level, N, L) :- assert( level( N, L) ).assertn459,11630 -assertn(level, N, L) :- assert( level( N, L) ).assertn459,11630 -assertn(level, N, L) :- assert( level( N, L) ).assertn459,11630 -assertn(level, N, L) :- assert( level( N, L) ).assertn459,11630 -list2prod( [], true).list2prod461,11679 -list2prod( [], true).list2prod461,11679 -list2prod( [F], F).list2prod462,11701 -list2prod( [F], F).list2prod462,11701 -list2prod( [F1,F2|Fs], F1*NF) :-list2prod463,11721 -list2prod( [F1,F2|Fs], F1*NF) :-list2prod463,11721 -list2prod( [F1,F2|Fs], F1*NF) :-list2prod463,11721 -eq(1, 1, Dic, Dic, I, I) :- !.eq467,11821 -eq(1, 1, Dic, Dic, I, I) :- !.eq467,11821 -eq(1, 1, Dic, Dic, I, I) :- !.eq467,11821 -eq(X, VX, Dic0, Dic, I0, I) :- var(X), !,eq468,11854 -eq(X, VX, Dic0, Dic, I0, I) :- var(X), !,eq468,11854 -eq(X, VX, Dic0, Dic, I0, I) :- var(X), !,eq468,11854 -eq(X == Exp, (-TA + TY)*(-TY + TA), Dic0, Dic, I0, I) :- !,eq470,11928 -eq(X == Exp, (-TA + TY)*(-TY + TA), Dic0, Dic, I0, I) :- !,eq470,11928 -eq(X == Exp, (-TA + TY)*(-TY + TA), Dic0, Dic, I0, I) :- !,eq470,11928 -eq((X ==> Y), (-TX + TY), Dic0, Dic, I0, I) :- !,eq474,12053 -eq((X ==> Y), (-TX + TY), Dic0, Dic, I0, I) :- !,eq474,12053 -eq((X ==> Y), (-TX + TY), Dic0, Dic, I0, I) :- !,eq474,12053 -eq((X :- Y), (TX + -TY), Dic0, Dic, I0, I) :- !,eq478,12168 -eq((X :- Y), (TX + -TY), Dic0, Dic, I0, I) :- !,eq478,12168 -eq((X :- Y), (TX + -TY), Dic0, Dic, I0, I) :- !,eq478,12168 -eq( Y, TY, Dic1, Dic, I1, I).eq480,12249 -eq( Y, TY, Dic1, Dic, I1, I).eq480,12249 -eq((X + Y), (TX + TY), Dic0, Dic, I0, I) :- !,eq482,12280 -eq((X + Y), (TX + TY), Dic0, Dic, I0, I) :- !,eq482,12280 -eq((X + Y), (TX + TY), Dic0, Dic, I0, I) :- !,eq482,12280 -eq((X * Y), (TX * TY), Dic0, Dic, I0, I) :- !,eq486,12392 -eq((X * Y), (TX * TY), Dic0, Dic, I0, I) :- !,eq486,12392 -eq((X * Y), (TX * TY), Dic0, Dic, I0, I) :- !,eq486,12392 -eq(-X, -TX, Dic0, Dic, I0, I) :- !,eq490,12504 -eq(-X, -TX, Dic0, Dic, I0, I) :- !,eq490,12504 -eq(-X, -TX, Dic0, Dic, I0, I) :- !,eq490,12504 -eq((X xor Y), (TX xor TY), Dic0, Dic, I0, I) :- !,eq493,12573 -eq((X xor Y), (TX xor TY), Dic0, Dic, I0, I) :- !,eq493,12573 -eq((X xor Y), (TX xor TY), Dic0, Dic, I0, I) :- !,eq493,12573 -eq(X in D, VX = (TAX + (-TAX * (EDX+ (-EDX * Ds )))) , Dic0, Dic, I0, I) :- !,eq497,12689 -eq(X in D, VX = (TAX + (-TAX * (EDX+ (-EDX * Ds )))) , Dic0, Dic, I0, I) :- !,eq497,12689 -eq(X in D, VX = (TAX + (-TAX * (EDX+ (-EDX * Ds )))) , Dic0, Dic, I0, I) :- !,eq497,12689 -eq(one_of(D), Ds, Dic0, Dic, I0, I) :-eq503,12936 -eq(one_of(D), Ds, Dic0, Dic, I0, I) :-eq503,12936 -eq(one_of(D), Ds, Dic0, Dic, I0, I) :-eq503,12936 -eq(G, NG, Dic0, Dic, I0, I) :-eq507,13018 -eq(G, NG, Dic0, Dic, I0, I) :-eq507,13018 -eq(G, NG, Dic0, Dic, I0, I) :-eq507,13018 -add_xors(L, V, I0, I) :-add_xors510,13089 -add_xors(L, V, I0, I) :-add_xors510,13089 -add_xors(L, V, I0, I) :-add_xors510,13089 -add_xor(V, V0, I, I) :- V == V0, !.add_xor513,13145 -add_xor(V, V0, I, I) :- V == V0, !.add_xor513,13145 -add_xor(V, V0, I, I) :- V == V0, !.add_xor513,13145 -add_xor(V, V0, I, [(V-V0)|I]).add_xor514,13181 -add_xor(V, V0, I, [(V-V0)|I]).add_xor514,13181 -xor( VX, DV0s, DV , Disj0, Disj0+Conj) :- !,xor516,13213 -xor( VX, DV0s, DV , Disj0, Disj0+Conj) :- !,xor516,13213 -xor( VX, DV0s, DV , Disj0, Disj0+Conj) :- !,xor516,13213 -add_all2(VX, _, G, C, C*(-(VX=G))).add_all2521,13359 -add_all2(VX, _, G, C, C*(-(VX=G))).add_all2521,13359 -list2prod(X, P, X *P).list2prod523,13396 -list2prod(X, P, X *P).list2prod523,13396 -list2sum(X, P, X +P).list2sum524,13419 -list2sum(X, P, X +P).list2sum524,13419 -t_domain0( [D], DX, Dic0, Dic, I0, I) :- !,t_domain0526,13442 -t_domain0( [D], DX, Dic0, Dic, I0, I) :- !,t_domain0526,13442 -t_domain0( [D], DX, Dic0, Dic, I0, I) :- !,t_domain0526,13442 -t_domain0( [D1|D2s], (DX1+ (-DX1*D2Xs)), Dic0, Dic, I0, I) :-t_domain0528,13518 -t_domain0( [D1|D2s], (DX1+ (-DX1*D2Xs)), Dic0, Dic, I0, I) :-t_domain0528,13518 -t_domain0( [D1|D2s], (DX1+ (-DX1*D2Xs)), Dic0, Dic, I0, I) :-t_domain0528,13518 -t_domain( [D], X, _VX, VDX, Dic0, Dic, I0, I) :- !,t_domain532,13663 -t_domain( [D], X, _VX, VDX, Dic0, Dic, I0, I) :- !,t_domain532,13663 -t_domain( [D], X, _VX, VDX, Dic0, Dic, I0, I) :- !,t_domain532,13663 -t_domain( [D1|D2s], X, VX, VDX + (-VDX*D2S), Dic0, Dic, I0, I) :-t_domain534,13750 -t_domain( [D1|D2s], X, VX, VDX + (-VDX*D2S), Dic0, Dic, I0, I) :-t_domain534,13750 -t_domain( [D1|D2s], X, VX, VDX + (-VDX*D2S), Dic0, Dic, I0, I) :-t_domain534,13750 -t_domain0( [D], VDX, Dic0, Dic, I0, I) :-t_domain0538,13902 -t_domain0( [D], VDX, Dic0, Dic, I0, I) :-t_domain0538,13902 -t_domain0( [D], VDX, Dic0, Dic, I0, I) :-t_domain0538,13902 -t_domain0( [D1|D2s], VDX + (-VDX*D2S), Dic0, Dic, I0, I) :-t_domain0541,13981 -t_domain0( [D1|D2s], VDX + (-VDX*D2S), Dic0, Dic, I0, I) :-t_domain0541,13981 -t_domain0( [D1|D2s], VDX + (-VDX*D2S), Dic0, Dic, I0, I) :-t_domain0541,13981 -add(AG, V, Dic, Dic, I, I) :-add545,14133 -add(AG, V, Dic, Dic, I, I) :-add545,14133 -add(AG, V, Dic, Dic, I, I) :-add545,14133 -add( AG, V, Dic0, Dic, I0, IF) :-add547,14192 -add( AG, V, Dic0, Dic, I0, IF) :-add547,14192 -add( AG, V, Dic0, Dic, I0, IF) :-add547,14192 -add( AG, V, Dic0, Dic, I, I) :-add551,14320 -add( AG, V, Dic0, Dic, I, I) :-add551,14320 -add( AG, V, Dic0, Dic, I, I) :-add551,14320 -simp_key(G , G) :- var(G), !.simp_key554,14384 -simp_key(G , G) :- var(G), !.simp_key554,14384 -simp_key(G , G) :- var(G), !.simp_key554,14384 -simp_key(_^_:error(_^G) , G) :- !.simp_key555,14414 -simp_key(_^_:error(_^G) , G) :- !.simp_key555,14414 -simp_key(_^_:error(_^G) , G) :- !.simp_key555,14414 -simp_key(_^_:G , G) :- !.simp_key556,14449 -simp_key(_^_:G , G) :- !.simp_key556,14449 -simp_key(_^_:G , G) :- !.simp_key556,14449 -simp_key('$VAR'(S):A, SAG) :-simp_key557,14475 -simp_key('$VAR'(S):A, SAG) :-simp_key557,14475 -simp_key('$VAR'(S):A, SAG) :-simp_key557,14475 -simp_key(V:error(E), error(V,E)) :- !.simp_key561,14545 -simp_key(V:error(E), error(V,E)) :- !.simp_key561,14545 -simp_key(V:error(E), error(V,E)) :- !.simp_key561,14545 -simp_key(AG, AG).simp_key562,14584 -simp_key(AG, AG).simp_key562,14584 -all_diff(L, Cs) :-all_diff565,14604 -all_diff(L, Cs) :-all_diff565,14604 -all_diff(L, Cs) :-all_diff565,14604 -all_pairs([X,Y|L], E0, E) :-all_pairs569,14679 -all_pairs([X,Y|L], E0, E) :-all_pairs569,14679 -all_pairs([X,Y|L], E0, E) :-all_pairs569,14679 -all_pairs([_X], E, E).all_pairs572,14769 -all_pairs([_X], E, E).all_pairs572,14769 -pair2cs([X|Y],P,P*(X-> -Y) * (Y -> -X)).pair2cs574,14793 -pair2cs([X|Y],P,P*(X-> -Y) * (Y -> -X)).pair2cs574,14793 -lor(A, B, A+B).lor576,14835 -lor(A, B, A+B).lor576,14835 -atom(AA, VD, CS, (VD->AA)*CS).atom578,14852 -atom(AA, VD, CS, (VD->AA)*CS).atom578,14852 - -library/prandom.yap,808 -rannum(X) :- yap_flag(max_integer,MI), rannum(R), X is R/MI.rannum76,2396 -rannum(X) :- yap_flag(max_integer,MI), rannum(R), X is R/MI.rannum76,2396 -rannum(X) :- yap_flag(max_integer,MI), rannum(R), X is R/MI.rannum76,2396 -:- dynamic ranState/5.dynamic111,3115 -:- dynamic ranState/5.dynamic111,3115 -wsize(32) :-wsize117,3179 -wsize(32) :-wsize117,3179 -wsize(32) :-wsize117,3179 -wsize(64).wsize119,3243 -wsize(64).wsize119,3243 -ranstart :- ranstart(8'365). %ranstart121,3255 -ranstart(N) :-ranstart123,3288 -ranstart(N) :-ranstart123,3288 -ranstart(N) :-ranstart123,3288 -rannum(Raw) :-rannum131,3602 -rannum(Raw) :-rannum131,3602 -rannum(Raw) :-rannum131,3602 -ranunif(Range, Unif) :-ranunif142,3850 -ranunif(Range, Unif) :-ranunif142,3850 -ranunif(Range, Unif) :-ranunif142,3850 - -library/queues.yap,2639 -make_queue(X-X).make_queue159,3389 -make_queue(X-X).make_queue159,3389 -join_queue(Element, Front-[Element|Back], Front-Back).join_queue174,3793 -join_queue(Element, Front-[Element|Back], Front-Back).join_queue174,3793 -list_join_queue(List, Front-OldBack, Front-NewBack) :-list_join_queue183,4088 -list_join_queue(List, Front-OldBack, Front-NewBack) :-list_join_queue183,4088 -list_join_queue(List, Front-OldBack, Front-NewBack) :-list_join_queue183,4088 -jump_queue(Element, Front-Back, [Element|Front]-Back).jump_queue198,4552 -jump_queue(Element, Front-Back, [Element|Front]-Back).jump_queue198,4552 -list_jump_queue(List, OldFront-Back, NewFront-Back) :-list_jump_queue211,5148 -list_jump_queue(List, OldFront-Back, NewFront-Back) :-list_jump_queue211,5148 -list_jump_queue(List, OldFront-Back, NewFront-Back) :-list_jump_queue211,5148 -head_queue(Front-Back, Head) :-head_queue223,5609 -head_queue(Front-Back, Head) :-head_queue223,5609 -head_queue(Front-Back, Head) :-head_queue223,5609 -serve_queue(OldFront-Back, Head, NewFront-Back) :-serve_queue232,5806 -serve_queue(OldFront-Back, Head, NewFront-Back) :-serve_queue232,5806 -serve_queue(OldFront-Back, Head, NewFront-Back) :-serve_queue232,5806 -empty_queue(Front-Back) :-empty_queue245,6190 -empty_queue(Front-Back) :-empty_queue245,6190 -empty_queue(Front-Back) :-empty_queue245,6190 -length_queue(Front-Back, Length) :-length_queue255,6453 -length_queue(Front-Back, Length) :-length_queue255,6453 -length_queue(Front-Back, Length) :-length_queue255,6453 -length_queue(Front, Back, N, N) :-length_queue259,6537 -length_queue(Front, Back, N, N) :-length_queue259,6537 -length_queue(Front, Back, N, N) :-length_queue259,6537 -length_queue([_|Front], Back, K, N) :-length_queue261,6591 -length_queue([_|Front], Back, K, N) :-length_queue261,6591 -length_queue([_|Front], Back, K, N) :-length_queue261,6591 -list_to_queue(List, Front-Back) :-list_to_queue270,6766 -list_to_queue(List, Front-Back) :-list_to_queue270,6766 -list_to_queue(List, Front-Back) :-list_to_queue270,6766 -queue_to_list(Front-Back, List) :-queue_to_list278,6920 -queue_to_list(Front-Back, List) :-queue_to_list278,6920 -queue_to_list(Front-Back, List) :-queue_to_list278,6920 -queue_to_list(Front, Back, Ans) :-queue_to_list281,6991 -queue_to_list(Front, Back, Ans) :-queue_to_list281,6991 -queue_to_list(Front, Back, Ans) :-queue_to_list281,6991 -queue_to_list([Head|Front], Back, [Head|Tail]) :-queue_to_list283,7055 -queue_to_list([Head|Front], Back, [Head|Tail]) :-queue_to_list283,7055 -queue_to_list([Head|Front], Back, [Head|Tail]) :-queue_to_list283,7055 - -library/random/yap_random.c,397 -static short a1 = 27314, b1 = 9213, c1 = 17773;a127,762 -static short a1 = 27314, b1 = 9213, c1 = 17773;b127,762 -static short a1 = 27314, b1 = 9213, c1 = 17773;c127,762 -p_random(void)p_random30,827 -p_setrand(void)p_setrand46,1131 -p_getrand(void)p_getrand55,1280 -init_random(void)init_random63,1447 -int WINAPI win_random(HANDLE hinst, DWORD reason, LPVOID reserved)win_random74,1671 - -library/random.yap,1638 -random(L, U, R) :-random141,3328 -random(L, U, R) :-random141,3328 -random(L, U, R) :-random141,3328 -randset(K, N, S) :-randset167,3833 -randset(K, N, S) :-randset167,3833 -randset(K, N, S) :-randset167,3833 -randset(0, _, S, S) :- !.randset173,3896 -randset(0, _, S, S) :- !.randset173,3896 -randset(0, _, S, S) :- !.randset173,3896 -randset(K, N, Si, So) :-randset174,3922 -randset(K, N, Si, So) :-randset174,3922 -randset(K, N, Si, So) :-randset174,3922 -randset(K, N, Si, So) :-randset180,4024 -randset(K, N, Si, So) :-randset180,4024 -randset(K, N, Si, So) :-randset180,4024 -randseq(K, N, S) :-randseq185,4086 -randseq(K, N, S) :-randseq185,4086 -randseq(K, N, S) :-randseq185,4086 -randseq(0, _, S, S) :- !.randseq190,4165 -randseq(0, _, S, S) :- !.randseq190,4165 -randseq(0, _, S, S) :- !.randseq190,4165 -randseq(K, N, [Y-N|Si], So) :-randseq191,4191 -randseq(K, N, [Y-N|Si], So) :-randseq191,4191 -randseq(K, N, [Y-N|Si], So) :-randseq191,4191 -randseq(K, N, Si, So) :-randseq198,4307 -randseq(K, N, Si, So) :-randseq198,4307 -randseq(K, N, Si, So) :-randseq198,4307 -strip_keys([], []) :- !.strip_keys203,4369 -strip_keys([], []) :- !.strip_keys203,4369 -strip_keys([], []) :- !.strip_keys203,4369 -strip_keys([_-K|L], [K|S]) :-strip_keys204,4394 -strip_keys([_-K|L], [K|S]) :-strip_keys204,4394 -strip_keys([_-K|L], [K|S]) :-strip_keys204,4394 -setrand(rand(X,Y,Z)) :-setrand207,4444 -setrand(rand(X,Y,Z)) :-setrand207,4444 -setrand(rand(X,Y,Z)) :-setrand207,4444 -getrand(rand(X,Y,Z)) :-getrand219,4585 -getrand(rand(X,Y,Z)) :-getrand219,4585 -getrand(rand(X,Y,Z)) :-getrand219,4585 - -library/range.yap,0 - -library/rbtrees.yap,35452 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_lookup(Key, Val, t(_,Tree)) :-rb_lookup119,3044 -rb_lookup(Key, Val, t(_,Tree)) :-rb_lookup119,3044 -rb_lookup(Key, Val, t(_,Tree)) :-rb_lookup119,3044 -lookup(_, _, black('',_,_,'')) :- !, fail.lookup122,3104 -lookup(_, _, black('',_,_,'')) :- !, fail.lookup122,3104 -lookup(_, _, black('',_,_,'')) :- !, fail.lookup122,3104 -lookup(Key, Val, Tree) :-lookup123,3147 -lookup(Key, Val, Tree) :-lookup123,3147 -lookup(Key, Val, Tree) :-lookup123,3147 -lookup(>, K, V, Tree) :-lookup128,3240 -lookup(>, K, V, Tree) :-lookup128,3240 -lookup(>, K, V, Tree) :-lookup128,3240 -lookup(<, K, V, Tree) :-lookup131,3307 -lookup(<, K, V, Tree) :-lookup131,3307 -lookup(<, K, V, Tree) :-lookup131,3307 -lookup(=, _, V, Tree) :-lookup134,3374 -lookup(=, _, V, Tree) :-lookup134,3374 -lookup(=, _, V, Tree) :-lookup134,3374 -rb_min(t(_,Tree), Key, Val) :-rb_min141,3524 -rb_min(t(_,Tree), Key, Val) :-rb_min141,3524 -rb_min(t(_,Tree), Key, Val) :-rb_min141,3524 -min(red(black('',_,_,_),Key,Val,_), Key, Val) :- !.min144,3578 -min(red(black('',_,_,_),Key,Val,_), Key, Val) :- !.min144,3578 -min(red(black('',_,_,_),Key,Val,_), Key, Val) :- !.min144,3578 -min(black(black('',_,_,_),Key,Val,_), Key, Val) :- !.min145,3630 -min(black(black('',_,_,_),Key,Val,_), Key, Val) :- !.min145,3630 -min(black(black('',_,_,_),Key,Val,_), Key, Val) :- !.min145,3630 -min(red(Right,_,_,_), Key, Val) :-min146,3684 -min(red(Right,_,_,_), Key, Val) :-min146,3684 -min(red(Right,_,_,_), Key, Val) :-min146,3684 -min(black(Right,_,_,_), Key, Val) :-min148,3740 -min(black(Right,_,_,_), Key, Val) :-min148,3740 -min(black(Right,_,_,_), Key, Val) :-min148,3740 -rb_max(t(_,Tree), Key, Val) :-rb_max155,3907 -rb_max(t(_,Tree), Key, Val) :-rb_max155,3907 -rb_max(t(_,Tree), Key, Val) :-rb_max155,3907 -max(red(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max158,3961 -max(red(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max158,3961 -max(red(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max158,3961 -max(black(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max159,4013 -max(black(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max159,4013 -max(black(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max159,4013 -max(red(_,_,_,Left), Key, Val) :-max160,4067 -max(red(_,_,_,Left), Key, Val) :-max160,4067 -max(red(_,_,_,Left), Key, Val) :-max160,4067 -max(black(_,_,_,Left), Key, Val) :-max162,4121 -max(black(_,_,_,Left), Key, Val) :-max162,4121 -max(black(_,_,_,Left), Key, Val) :-max162,4121 -rb_next(t(_,Tree), Key, Next, Val) :-rb_next170,4308 -rb_next(t(_,Tree), Key, Next, Val) :-rb_next170,4308 -rb_next(t(_,Tree), Key, Next, Val) :-rb_next170,4308 -next(black('',_,_,''), _, _, _, _) :- !, fail.next173,4380 -next(black('',_,_,''), _, _, _, _) :- !, fail.next173,4380 -next(black('',_,_,''), _, _, _, _) :- !, fail.next173,4380 -next(Tree, Key, Next, Val, Candidate) :-next174,4427 -next(Tree, Key, Next, Val, Candidate) :-next174,4427 -next(Tree, Key, Next, Val, Candidate) :-next174,4427 -next(>, K, KA, VA, NK, V, Tree, _) :-next180,4578 -next(>, K, KA, VA, NK, V, Tree, _) :-next180,4578 -next(>, K, KA, VA, NK, V, Tree, _) :-next180,4578 -next(<, K, _, _, NK, V, Tree, Candidate) :-next183,4663 -next(<, K, _, _, NK, V, Tree, Candidate) :-next183,4663 -next(<, K, _, _, NK, V, Tree, Candidate) :-next183,4663 -next(=, _, _, _, NK, Val, Tree, Candidate) :-next186,4758 -next(=, _, _, _, NK, Val, Tree, Candidate) :-next186,4758 -next(=, _, _, _, NK, Val, Tree, Candidate) :-next186,4758 -rb_previous(t(_,Tree), Key, Previous, Val) :-rb_previous200,5051 -rb_previous(t(_,Tree), Key, Previous, Val) :-rb_previous200,5051 -rb_previous(t(_,Tree), Key, Previous, Val) :-rb_previous200,5051 -previous(black('',_,_,''), _, _, _, _) :- !, fail.previous203,5139 -previous(black('',_,_,''), _, _, _, _) :- !, fail.previous203,5139 -previous(black('',_,_,''), _, _, _, _) :- !, fail.previous203,5139 -previous(Tree, Key, Previous, Val, Candidate) :-previous204,5190 -previous(Tree, Key, Previous, Val, Candidate) :-previous204,5190 -previous(Tree, Key, Previous, Val, Candidate) :-previous204,5190 -previous(>, K, _, _, NK, V, Tree, Candidate) :-previous210,5357 -previous(>, K, _, _, NK, V, Tree, Candidate) :-previous210,5357 -previous(>, K, _, _, NK, V, Tree, Candidate) :-previous210,5357 -previous(<, K, KA, VA, NK, V, Tree, _) :-previous213,5460 -previous(<, K, KA, VA, NK, V, Tree, _) :-previous213,5460 -previous(<, K, KA, VA, NK, V, Tree, _) :-previous213,5460 -previous(=, _, _, _, K, Val, Tree, Candidate) :-previous216,5553 -previous(=, _, _, _, K, Val, Tree, Candidate) :-previous216,5553 -previous(=, _, _, _, K, Val, Tree, Candidate) :-previous216,5553 -rb_update(t(Nil,OldTree), Key, OldVal, Val, t(Nil,NewTree)) :-rb_update231,5926 -rb_update(t(Nil,OldTree), Key, OldVal, Val, t(Nil,NewTree)) :-rb_update231,5926 -rb_update(t(Nil,OldTree), Key, OldVal, Val, t(Nil,NewTree)) :-rb_update231,5926 -rb_update(t(Nil,OldTree), Key, Val, t(Nil,NewTree)) :-rb_update234,6035 -rb_update(t(Nil,OldTree), Key, Val, t(Nil,NewTree)) :-rb_update234,6035 -rb_update(t(Nil,OldTree), Key, Val, t(Nil,NewTree)) :-rb_update234,6035 -update(black(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update237,6131 -update(black(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update237,6131 -update(black(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update237,6131 -update(red(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update251,6512 -update(red(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update251,6512 -update(red(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update251,6512 -rb_rewrite(t(_Nil,OldTree), Key, OldVal, Val) :-rb_rewrite271,7077 -rb_rewrite(t(_Nil,OldTree), Key, OldVal, Val) :-rb_rewrite271,7077 -rb_rewrite(t(_Nil,OldTree), Key, OldVal, Val) :-rb_rewrite271,7077 -rb_rewrite(t(_Nil,OldTree), Key, Val) :-rb_rewrite274,7164 -rb_rewrite(t(_Nil,OldTree), Key, Val) :-rb_rewrite274,7164 -rb_rewrite(t(_Nil,OldTree), Key, Val) :-rb_rewrite274,7164 -rewrite(Node, Key, OldVal, Val) :-rewrite277,7238 -rewrite(Node, Key, OldVal, Val) :-rewrite277,7238 -rewrite(Node, Key, OldVal, Val) :-rewrite277,7238 -rb_apply(t(Nil,OldTree), Key, Goal, t(Nil,NewTree)) :-rb_apply314,8114 -rb_apply(t(Nil,OldTree), Key, Goal, t(Nil,NewTree)) :-rb_apply314,8114 -rb_apply(t(Nil,OldTree), Key, Goal, t(Nil,NewTree)) :-rb_apply314,8114 -rb_in(Key, Val, t(_,T)) :-rb_in356,9087 -rb_in(Key, Val, t(_,T)) :-rb_in356,9087 -rb_in(Key, Val, t(_,T)) :-rb_in356,9087 -rb_in(Key, Val, t(_,T)) :-rb_in359,9148 -rb_in(Key, Val, t(_,T)) :-rb_in359,9148 -rb_in(Key, Val, t(_,T)) :-rb_in359,9148 -enum(Key, Val, black(L,K,V,R)) :-enum363,9199 -enum(Key, Val, black(L,K,V,R)) :-enum363,9199 -enum(Key, Val, black(L,K,V,R)) :-enum363,9199 -enum(Key, Val, red(L,K,V,R)) :-enum366,9278 -enum(Key, Val, red(L,K,V,R)) :-enum366,9278 -enum(Key, Val, red(L,K,V,R)) :-enum366,9278 -enum_cases(Key, Val, L, _, _, _) :-enum_cases369,9346 -enum_cases(Key, Val, L, _, _, _) :-enum_cases369,9346 -enum_cases(Key, Val, L, _, _, _) :-enum_cases369,9346 -enum_cases(Key, Val, _, Key, Val, _).enum_cases371,9402 -enum_cases(Key, Val, _, Key, Val, _).enum_cases371,9402 -enum_cases(Key, Val, _, _, _, R) :-enum_cases372,9440 -enum_cases(Key, Val, _, _, _, R) :-enum_cases372,9440 -enum_cases(Key, Val, _, _, _, R) :-enum_cases372,9440 -rb_lookupall(Key, Val, t(_,Tree)) :-rb_lookupall381,9631 -rb_lookupall(Key, Val, t(_,Tree)) :-rb_lookupall381,9631 -rb_lookupall(Key, Val, t(_,Tree)) :-rb_lookupall381,9631 -lookupall(_, _, black('',_,_,'')) :- !, fail.lookupall385,9698 -lookupall(_, _, black('',_,_,'')) :- !, fail.lookupall385,9698 -lookupall(_, _, black('',_,_,'')) :- !, fail.lookupall385,9698 -lookupall(Key, Val, Tree) :-lookupall386,9744 -lookupall(Key, Val, Tree) :-lookupall386,9744 -lookupall(Key, Val, Tree) :-lookupall386,9744 -lookupall(>, K, V, Tree) :-lookupall391,9843 -lookupall(>, K, V, Tree) :-lookupall391,9843 -lookupall(>, K, V, Tree) :-lookupall391,9843 -lookupall(=, _, V, Tree) :-lookupall394,9919 -lookupall(=, _, V, Tree) :-lookupall394,9919 -lookupall(=, _, V, Tree) :-lookupall394,9919 -lookupall(=, K, V, Tree) :-lookupall396,9963 -lookupall(=, K, V, Tree) :-lookupall396,9963 -lookupall(=, K, V, Tree) :-lookupall396,9963 -lookupall(<, K, V, Tree) :-lookupall399,10036 -lookupall(<, K, V, Tree) :-lookupall399,10036 -lookupall(<, K, V, Tree) :-lookupall399,10036 -rb_insert(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert415,10508 -rb_insert(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert415,10508 -rb_insert(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert415,10508 -insert(Tree0,Key,Val,Nil,Tree) :-insert419,10590 -insert(Tree0,Key,Val,Nil,Tree) :-insert419,10590 -insert(Tree0,Key,Val,Nil,Tree) :-insert419,10590 -insert2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert2446,11176 -insert2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert2446,11176 -insert2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert2446,11176 -insert2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2449,11273 -insert2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2449,11273 -insert2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2449,11273 -insert2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2461,11523 -insert2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2461,11523 -insert2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2461,11523 -rb_insert_new(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert_new480,12063 -rb_insert_new(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert_new480,12063 -rb_insert_new(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert_new480,12063 -insert_new(Tree0,Key,Val,Nil,Tree) :-insert_new484,12153 -insert_new(Tree0,Key,Val,Nil,Tree) :-insert_new484,12153 -insert_new(Tree0,Key,Val,Nil,Tree) :-insert_new484,12153 -insert_new_2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert_new_2491,12302 -insert_new_2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert_new_2491,12302 -insert_new_2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert_new_2491,12302 -insert_new_2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2494,12404 -insert_new_2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2494,12404 -insert_new_2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2494,12404 -insert_new_2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2505,12639 -insert_new_2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2505,12639 -insert_new_2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2505,12639 -fix_root(black(L,K,V,R),black(L,K,V,R)).fix_root519,12959 -fix_root(black(L,K,V,R),black(L,K,V,R)).fix_root519,12959 -fix_root(red(L,K,V,R),black(L,K,V,R)).fix_root520,13000 -fix_root(red(L,K,V,R),black(L,K,V,R)).fix_root520,13000 -fix_left(done,T,T,done) :- !.fix_left527,13091 -fix_left(done,T,T,done) :- !.fix_left527,13091 -fix_left(done,T,T,done) :- !.fix_left527,13091 -fix_left(not_done,Tmp,Final,Done) :-fix_left528,13121 -fix_left(not_done,Tmp,Final,Done) :-fix_left528,13121 -fix_left(not_done,Tmp,Final,Done) :-fix_left528,13121 -fix_left(T,T,done).fix_left555,13898 -fix_left(T,T,done).fix_left555,13898 -fix_right(done,T,T,done) :- !.fix_right560,13969 -fix_right(done,T,T,done) :- !.fix_right560,13969 -fix_right(done,T,T,done) :- !.fix_right560,13969 -fix_right(not_done,Tmp,Final,Done) :-fix_right561,14000 -fix_right(not_done,Tmp,Final,Done) :-fix_right561,14000 -fix_right(not_done,Tmp,Final,Done) :-fix_right561,14000 -fix_right(T,T,done).fix_right588,14784 -fix_right(T,T,done).fix_right588,14784 -pretty_print(t(_,T)) :-pretty_print594,14835 -pretty_print(t(_,T)) :-pretty_print594,14835 -pretty_print(t(_,T)) :-pretty_print594,14835 -pretty_print(black('',_,_,''),_) :- !.pretty_print597,14880 -pretty_print(black('',_,_,''),_) :- !.pretty_print597,14880 -pretty_print(black('',_,_,''),_) :- !.pretty_print597,14880 -pretty_print(red(L,K,_,R),D) :-pretty_print598,14919 -pretty_print(red(L,K,_,R),D) :-pretty_print598,14919 -pretty_print(red(L,K,_,R),D) :-pretty_print598,14919 -pretty_print(black(L,K,_,R),D) :-pretty_print603,15038 -pretty_print(black(L,K,_,R),D) :-pretty_print603,15038 -pretty_print(black(L,K,_,R),D) :-pretty_print603,15038 -rb_delete(t(Nil,T), K, t(Nil,NT)) :-rb_delete610,15161 -rb_delete(t(Nil,T), K, t(Nil,NT)) :-rb_delete610,15161 -rb_delete(t(Nil,T), K, t(Nil,NT)) :-rb_delete610,15161 -rb_delete(t(Nil,T), K, V, t(Nil,NT)) :-rb_delete619,15407 -rb_delete(t(Nil,T), K, V, t(Nil,NT)) :-rb_delete619,15407 -rb_delete(t(Nil,T), K, V, t(Nil,NT)) :-rb_delete619,15407 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete626,15546 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete626,15546 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete626,15546 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete630,15675 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete630,15675 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete630,15675 -delete(red(L,_,V,R), _, V, OUT, Flag) :-delete634,15805 -delete(red(L,_,V,R), _, V, OUT, Flag) :-delete634,15805 -delete(red(L,_,V,R), _, V, OUT, Flag) :-delete634,15805 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete637,15889 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete637,15889 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete637,15889 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete641,16022 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete641,16022 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete641,16022 -delete(black(L,_,V,R), _, V, OUT, Flag) :-delete645,16156 -delete(black(L,_,V,R), _, V, OUT, Flag) :-delete645,16156 -delete(black(L,_,V,R), _, V, OUT, Flag) :-delete645,16156 -rb_del_min(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_min654,16409 -rb_del_min(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_min654,16409 -rb_del_min(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_min654,16409 -del_min(red(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min657,16486 -del_min(red(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min657,16486 -del_min(red(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min657,16486 -del_min(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min659,16584 -del_min(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min659,16584 -del_min(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min659,16584 -del_min(black(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min662,16713 -del_min(black(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min662,16713 -del_min(black(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min662,16713 -del_min(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min664,16815 -del_min(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min664,16815 -del_min(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min664,16815 -rb_del_max(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_max674,17118 -rb_del_max(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_max674,17118 -rb_del_max(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_max674,17118 -del_max(red(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max677,17195 -del_max(red(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max677,17195 -del_max(red(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max677,17195 -del_max(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max679,17293 -del_max(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max679,17293 -del_max(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max679,17293 -del_max(black(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max682,17422 -del_max(black(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max682,17422 -del_max(black(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max682,17422 -del_max(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max684,17524 -del_max(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max684,17524 -del_max(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max684,17524 -delete_red_node(L1,L2,L1,done) :- L1 == L2, !.delete_red_node690,17661 -delete_red_node(L1,L2,L1,done) :- L1 == L2, !.delete_red_node690,17661 -delete_red_node(L1,L2,L1,done) :- L1 == L2, !.delete_red_node690,17661 -delete_red_node(black('',_,_,''),R,R,done) :- !.delete_red_node691,17708 -delete_red_node(black('',_,_,''),R,R,done) :- !.delete_red_node691,17708 -delete_red_node(black('',_,_,''),R,R,done) :- !.delete_red_node691,17708 -delete_red_node(L,black('',_,_,''),L,done) :- !.delete_red_node692,17758 -delete_red_node(L,black('',_,_,''),L,done) :- !.delete_red_node692,17758 -delete_red_node(L,black('',_,_,''),L,done) :- !.delete_red_node692,17758 -delete_red_node(L,R,OUT,Done) :- delete_red_node693,17808 -delete_red_node(L,R,OUT,Done) :- delete_red_node693,17808 -delete_red_node(L,R,OUT,Done) :- delete_red_node693,17808 -delete_black_node(L1,L2,L1,not_done) :- L1 == L2, !.delete_black_node698,17924 -delete_black_node(L1,L2,L1,not_done) :- L1 == L2, !.delete_black_node698,17924 -delete_black_node(L1,L2,L1,not_done) :- L1 == L2, !.delete_black_node698,17924 -delete_black_node(black('',_,_,''),red(L,K,V,R),black(L,K,V,R),done) :- !.delete_black_node699,17978 -delete_black_node(black('',_,_,''),red(L,K,V,R),black(L,K,V,R),done) :- !.delete_black_node699,17978 -delete_black_node(black('',_,_,''),red(L,K,V,R),black(L,K,V,R),done) :- !.delete_black_node699,17978 -delete_black_node(black('',_,_,''),R,R,not_done) :- !.delete_black_node700,18053 -delete_black_node(black('',_,_,''),R,R,not_done) :- !.delete_black_node700,18053 -delete_black_node(black('',_,_,''),R,R,not_done) :- !.delete_black_node700,18053 -delete_black_node(red(L,K,V,R),black('',_,_,''),black(L,K,V,R),done) :- !.delete_black_node701,18108 -delete_black_node(red(L,K,V,R),black('',_,_,''),black(L,K,V,R),done) :- !.delete_black_node701,18108 -delete_black_node(red(L,K,V,R),black('',_,_,''),black(L,K,V,R),done) :- !.delete_black_node701,18108 -delete_black_node(L,black('',_,_,''),L,not_done) :- !.delete_black_node702,18183 -delete_black_node(L,black('',_,_,''),L,not_done) :- !.delete_black_node702,18183 -delete_black_node(L,black('',_,_,''),L,not_done) :- !.delete_black_node702,18183 -delete_black_node(L,R,OUT,Done) :-delete_black_node703,18238 -delete_black_node(L,R,OUT,Done) :-delete_black_node703,18238 -delete_black_node(L,R,OUT,Done) :-delete_black_node703,18238 -delete_next(red(black('',_,_,''),K,V,R),K,V,R,done) :- !.delete_next708,18355 -delete_next(red(black('',_,_,''),K,V,R),K,V,R,done) :- !.delete_next708,18355 -delete_next(red(black('',_,_,''),K,V,R),K,V,R,done) :- !.delete_next708,18355 -delete_next(black(black('',_,_,''),K,V,R),K,V,R,not_done) :- !.delete_next711,18508 -delete_next(black(black('',_,_,''),K,V,R),K,V,R,not_done) :- !.delete_next711,18508 -delete_next(black(black('',_,_,''),K,V,R),K,V,R,not_done) :- !.delete_next711,18508 -delete_next(red(L,K,V,R),K0,V0,OUT,Done) :-delete_next712,18572 -delete_next(red(L,K,V,R),K0,V0,OUT,Done) :-delete_next712,18572 -delete_next(red(L,K,V,R),K0,V0,OUT,Done) :-delete_next712,18572 -delete_next(black(L,K,V,R),K0,V0,OUT,Done) :-delete_next715,18691 -delete_next(black(L,K,V,R),K0,V0,OUT,Done) :-delete_next715,18691 -delete_next(black(L,K,V,R),K0,V0,OUT,Done) :-delete_next715,18691 -fixup_left(done,T,T,done).fixup_left720,18816 -fixup_left(done,T,T,done).fixup_left720,18816 -fixup_left(not_done,T,NT,Done) :-fixup_left721,18843 -fixup_left(not_done,T,NT,Done) :-fixup_left721,18843 -fixup_left(not_done,T,NT,Done) :-fixup_left721,18843 -fixup_right(done,T,T,done).fixup_right761,20380 -fixup_right(done,T,T,done).fixup_right761,20380 -fixup_right(not_done,T,NT,Done) :-fixup_right762,20408 -fixup_right(not_done,T,NT,Done) :-fixup_right762,20408 -fixup_right(not_done,T,NT,Done) :-fixup_right762,20408 -rb_visit(t(_,T),Lf) :-rb_visit813,22075 -rb_visit(t(_,T),Lf) :-rb_visit813,22075 -rb_visit(t(_,T),Lf) :-rb_visit813,22075 -rb_visit(t(_,T),L0,Lf) :-rb_visit816,22116 -rb_visit(t(_,T),L0,Lf) :-rb_visit816,22116 -rb_visit(t(_,T),L0,Lf) :-rb_visit816,22116 -visit(black('',_,_,_),L,L) :- !.visit819,22160 -visit(black('',_,_,_),L,L) :- !.visit819,22160 -visit(black('',_,_,_),L,L) :- !.visit819,22160 -visit(red(L,K,V,R),L0,Lf) :-visit820,22193 -visit(red(L,K,V,R),L0,Lf) :-visit820,22193 -visit(red(L,K,V,R),L0,Lf) :-visit820,22193 -visit(black(L,K,V,R),L0,Lf) :-visit823,22262 -visit(black(L,K,V,R),L0,Lf) :-visit823,22262 -visit(black(L,K,V,R),L0,Lf) :-visit823,22262 -rb_map(t(Nil,Tree),Goal,t(Nil,NewTree)) :-rb_map833,22480 -rb_map(t(Nil,Tree),Goal,t(Nil,NewTree)) :-rb_map833,22480 -rb_map(t(Nil,Tree),Goal,t(Nil,NewTree)) :-rb_map833,22480 -map(black('',_,_,''),_,Nil,Nil) :- !.map837,22554 -map(black('',_,_,''),_,Nil,Nil) :- !.map837,22554 -map(black('',_,_,''),_,Nil,Nil) :- !.map837,22554 -map(red(L,K,V,R),Goal,red(NL,K,NV,NR),Nil) :-map838,22592 -map(red(L,K,V,R),Goal,red(NL,K,NV,NR),Nil) :-map838,22592 -map(red(L,K,V,R),Goal,red(NL,K,NV,NR),Nil) :-map838,22592 -map(black(L,K,V,R),Goal,black(NL,K,NV,NR),Nil) :-map842,22701 -map(black(L,K,V,R),Goal,black(NL,K,NV,NR),Nil) :-map842,22701 -map(black(L,K,V,R),Goal,black(NL,K,NV,NR),Nil) :-map842,22701 -rb_map(t(_,Tree),Goal) :-rb_map857,23220 -rb_map(t(_,Tree),Goal) :-rb_map857,23220 -rb_map(t(_,Tree),Goal) :-rb_map857,23220 -map(black('',_,_,''),_) :- !.map861,23265 -map(black('',_,_,''),_) :- !.map861,23265 -map(black('',_,_,''),_) :- !.map861,23265 -map(red(L,_,V,R),Goal) :-map862,23295 -map(red(L,_,V,R),Goal) :-map862,23295 -map(red(L,_,V,R),Goal) :-map862,23295 -map(black(L,_,V,R),Goal) :-map866,23367 -map(black(L,_,V,R),Goal) :-map866,23367 -map(black(L,_,V,R),Goal) :-map866,23367 -rb_fold(Goal, t(_,Tree), In, Out) :-rb_fold883,23917 -rb_fold(Goal, t(_,Tree), In, Out) :-rb_fold883,23917 -rb_fold(Goal, t(_,Tree), In, Out) :-rb_fold883,23917 -map_acc(black('',_,_,''), _, Acc, Acc) :- !.map_acc886,23986 -map_acc(black('',_,_,''), _, Acc, Acc) :- !.map_acc886,23986 -map_acc(black('',_,_,''), _, Acc, Acc) :- !.map_acc886,23986 -map_acc(red(L,_,V,R), Goal, Left, Right) :-map_acc887,24031 -map_acc(red(L,_,V,R), Goal, Left, Right) :-map_acc887,24031 -map_acc(red(L,_,V,R), Goal, Left, Right) :-map_acc887,24031 -map_acc(black(L,_,V,R), Goal, Left, Right) :-map_acc891,24175 -map_acc(black(L,_,V,R), Goal, Left, Right) :-map_acc891,24175 -map_acc(black(L,_,V,R), Goal, Left, Right) :-map_acc891,24175 -rb_key_fold(Goal, t(_,Tree), In, Out) :-rb_key_fold908,24813 -rb_key_fold(Goal, t(_,Tree), In, Out) :-rb_key_fold908,24813 -rb_key_fold(Goal, t(_,Tree), In, Out) :-rb_key_fold908,24813 -map_key_acc(black('',_,_,''), _, Acc, Acc) :- !.map_key_acc911,24890 -map_key_acc(black('',_,_,''), _, Acc, Acc) :- !.map_key_acc911,24890 -map_key_acc(black('',_,_,''), _, Acc, Acc) :- !.map_key_acc911,24890 -map_key_acc(red(L,Key,V,R), Goal, Left, Right) :-map_key_acc912,24939 -map_key_acc(red(L,Key,V,R), Goal, Left, Right) :-map_key_acc912,24939 -map_key_acc(red(L,Key,V,R), Goal, Left, Right) :-map_key_acc912,24939 -map_key_acc(black(L,Key,V,R), Goal, Left, Right) :-map_key_acc916,25103 -map_key_acc(black(L,Key,V,R), Goal, Left, Right) :-map_key_acc916,25103 -map_key_acc(black(L,Key,V,R), Goal, Left, Right) :-map_key_acc916,25103 -rb_clone(t(Nil,T),t(Nil,NT),Ns) :-rb_clone927,25484 -rb_clone(t(Nil,T),t(Nil,NT),Ns) :-rb_clone927,25484 -rb_clone(t(Nil,T),t(Nil,NT),Ns) :-rb_clone927,25484 -clone(black('',_,_,''),Nil,Nil,Ns,Ns) :- !.clone930,25544 -clone(black('',_,_,''),Nil,Nil,Ns,Ns) :- !.clone930,25544 -clone(black('',_,_,''),Nil,Nil,Ns,Ns) :- !.clone930,25544 -clone(red(L,K,_,R),Nil,red(NL,K,NV,NR),NsF,Ns0) :-clone931,25588 -clone(red(L,K,_,R),Nil,red(NL,K,NV,NR),NsF,Ns0) :-clone931,25588 -clone(red(L,K,_,R),Nil,red(NL,K,NV,NR),NsF,Ns0) :-clone931,25588 -clone(black(L,K,_,R),Nil,black(NL,K,NV,NR),NsF,Ns0) :-clone934,25698 -clone(black(L,K,_,R),Nil,black(NL,K,NV,NR),NsF,Ns0) :-clone934,25698 -clone(black(L,K,_,R),Nil,black(NL,K,NV,NR),NsF,Ns0) :-clone934,25698 -rb_clone(t(Nil,T),ONs,t(Nil,NT),Ns) :-rb_clone938,25813 -rb_clone(t(Nil,T),ONs,t(Nil,NT),Ns) :-rb_clone938,25813 -rb_clone(t(Nil,T),ONs,t(Nil,NT),Ns) :-rb_clone938,25813 -clone(black('',_,_,''),Nil,ONs,ONs,Nil,Ns,Ns) :- !.clone941,25884 -clone(black('',_,_,''),Nil,ONs,ONs,Nil,Ns,Ns) :- !.clone941,25884 -clone(black('',_,_,''),Nil,ONs,ONs,Nil,Ns,Ns) :- !.clone941,25884 -clone(red(L,K,V,R),Nil,ONsF,ONs0,red(NL,K,NV,NR),NsF,Ns0) :-clone942,25936 -clone(red(L,K,V,R),Nil,ONsF,ONs0,red(NL,K,NV,NR),NsF,Ns0) :-clone942,25936 -clone(red(L,K,V,R),Nil,ONsF,ONs0,red(NL,K,NV,NR),NsF,Ns0) :-clone942,25936 -clone(black(L,K,V,R),Nil,ONsF,ONs0,black(NL,K,NV,NR),NsF,Ns0) :-clone945,26082 -clone(black(L,K,V,R),Nil,ONsF,ONs0,black(NL,K,NV,NR),NsF,Ns0) :-clone945,26082 -clone(black(L,K,V,R),Nil,ONsF,ONs0,black(NL,K,NV,NR),NsF,Ns0) :-clone945,26082 -rb_partial_map(t(Nil,T0), Map, Goal, t(Nil,TF)) :-rb_partial_map957,26562 -rb_partial_map(t(Nil,T0), Map, Goal, t(Nil,TF)) :-rb_partial_map957,26562 -rb_partial_map(t(Nil,T0), Map, Goal, t(Nil,TF)) :-rb_partial_map957,26562 -rb_partial_map(t(Nil,T0), Map, Map0, Goal, t(Nil,TF)) :-rb_partial_map960,26656 -rb_partial_map(t(Nil,T0), Map, Map0, Goal, t(Nil,TF)) :-rb_partial_map960,26656 -rb_partial_map(t(Nil,T0), Map, Map0, Goal, t(Nil,TF)) :-rb_partial_map960,26656 -partial_map(T,[],[],_,_,T) :- !.partial_map963,26758 -partial_map(T,[],[],_,_,T) :- !.partial_map963,26758 -partial_map(T,[],[],_,_,T) :- !.partial_map963,26758 -partial_map(black('',_,_,_),Map,Map,Nil,_,Nil) :- !.partial_map964,26791 -partial_map(black('',_,_,_),Map,Map,Nil,_,Nil) :- !.partial_map964,26791 -partial_map(black('',_,_,_),Map,Map,Nil,_,Nil) :- !.partial_map964,26791 -partial_map(red(L,K,V,R),Map,MapF,Nil,Goal,red(NL,K,NV,NR)) :-partial_map965,26844 -partial_map(red(L,K,V,R),Map,MapF,Nil,Goal,red(NL,K,NV,NR)) :-partial_map965,26844 -partial_map(red(L,K,V,R),Map,MapF,Nil,Goal,red(NL,K,NV,NR)) :-partial_map965,26844 -partial_map(black(L,K,V,R),Map,MapF,Nil,Goal,black(NL,K,NV,NR)) :-partial_map983,27191 -partial_map(black(L,K,V,R),Map,MapF,Nil,Goal,black(NL,K,NV,NR)) :-partial_map983,27191 -partial_map(black(L,K,V,R),Map,MapF,Nil,Goal,black(NL,K,NV,NR)) :-partial_map983,27191 -rb_keys(t(_,T),Lf) :-rb_keys1011,27673 -rb_keys(t(_,T),Lf) :-rb_keys1011,27673 -rb_keys(t(_,T),Lf) :-rb_keys1011,27673 -rb_keys(t(_,T),L0,Lf) :-rb_keys1014,27712 -rb_keys(t(_,T),L0,Lf) :-rb_keys1014,27712 -rb_keys(t(_,T),L0,Lf) :-rb_keys1014,27712 -keys(black('',_,_,''),L,L) :- !.keys1017,27754 -keys(black('',_,_,''),L,L) :- !.keys1017,27754 -keys(black('',_,_,''),L,L) :- !.keys1017,27754 -keys(red(L,K,_,R),L0,Lf) :-keys1018,27787 -keys(red(L,K,_,R),L0,Lf) :-keys1018,27787 -keys(red(L,K,_,R),L0,Lf) :-keys1018,27787 -keys(black(L,K,_,R),L0,Lf) :-keys1021,27851 -keys(black(L,K,_,R),L0,Lf) :-keys1021,27851 -keys(black(L,K,_,R),L0,Lf) :-keys1021,27851 -list_to_rbtree(List, T) :-list_to_rbtree1030,28022 -list_to_rbtree(List, T) :-list_to_rbtree1030,28022 -list_to_rbtree(List, T) :-list_to_rbtree1030,28022 -ord_list_to_rbtree([], t(Nil,Nil)) :- !,ord_list_to_rbtree1038,28219 -ord_list_to_rbtree([], t(Nil,Nil)) :- !,ord_list_to_rbtree1038,28219 -ord_list_to_rbtree([], t(Nil,Nil)) :- !,ord_list_to_rbtree1038,28219 -ord_list_to_rbtree([K-V], t(Nil,black(Nil,K,V,Nil))) :- !,ord_list_to_rbtree1040,28288 -ord_list_to_rbtree([K-V], t(Nil,black(Nil,K,V,Nil))) :- !,ord_list_to_rbtree1040,28288 -ord_list_to_rbtree([K-V], t(Nil,black(Nil,K,V,Nil))) :- !,ord_list_to_rbtree1040,28288 -ord_list_to_rbtree(List, t(Nil,Tree)) :-ord_list_to_rbtree1042,28375 -ord_list_to_rbtree(List, t(Nil,Tree)) :-ord_list_to_rbtree1042,28375 -ord_list_to_rbtree(List, t(Nil,Tree)) :-ord_list_to_rbtree1042,28375 -construct_rbtree(L, M, _, _, Nil, Nil) :- M < L, !.construct_rbtree1049,28567 -construct_rbtree(L, M, _, _, Nil, Nil) :- M < L, !.construct_rbtree1049,28567 -construct_rbtree(L, M, _, _, Nil, Nil) :- M < L, !.construct_rbtree1049,28567 -construct_rbtree(L, L, Ar, Depth, Nil, Node) :- !,construct_rbtree1050,28619 -construct_rbtree(L, L, Ar, Depth, Nil, Node) :- !,construct_rbtree1050,28619 -construct_rbtree(L, L, Ar, Depth, Nil, Node) :- !,construct_rbtree1050,28619 -construct_rbtree(I0, Max, Ar, Depth, Nil, Node) :-construct_rbtree1053,28734 -construct_rbtree(I0, Max, Ar, Depth, Nil, Node) :-construct_rbtree1053,28734 -construct_rbtree(I0, Max, Ar, Depth, Nil, Node) :-construct_rbtree1053,28734 -build_node( 0, Left, K, Val, Right, red(Left, K, Val, Right)) :- !.build_node1063,29024 -build_node( 0, Left, K, Val, Right, red(Left, K, Val, Right)) :- !.build_node1063,29024 -build_node( 0, Left, K, Val, Right, red(Left, K, Val, Right)) :- !.build_node1063,29024 -build_node( _, Left, K, Val, Right, black(Left, K, Val, Right)).build_node1064,29092 -build_node( _, Left, K, Val, Right, black(Left, K, Val, Right)).build_node1064,29092 -rb_size(t(_,T),Size) :-rb_size1071,29231 -rb_size(t(_,T),Size) :-rb_size1071,29231 -rb_size(t(_,T),Size) :-rb_size1071,29231 -size(black('',_,_,_),Sz,Sz) :- !.size1074,29273 -size(black('',_,_,_),Sz,Sz) :- !.size1074,29273 -size(black('',_,_,_),Sz,Sz) :- !.size1074,29273 -size(red(L,_,_,R),Sz0,Szf) :-size1075,29307 -size(red(L,_,_,R),Sz0,Szf) :-size1075,29307 -size(red(L,_,_,R),Sz0,Szf) :-size1075,29307 -size(black(L,_,_,R),Sz0,Szf) :-size1079,29388 -size(black(L,_,_,R),Sz0,Szf) :-size1079,29388 -size(black(L,_,_,R),Sz0,Szf) :-size1079,29388 -is_rbtree(X) :-is_rbtree1089,29575 -is_rbtree(X) :-is_rbtree1089,29575 -is_rbtree(X) :-is_rbtree1089,29575 -is_rbtree(t(Nil,Nil)) :- !.is_rbtree1091,29609 -is_rbtree(t(Nil,Nil)) :- !.is_rbtree1091,29609 -is_rbtree(t(Nil,Nil)) :- !.is_rbtree1091,29609 -is_rbtree(t(_,T)) :-is_rbtree1092,29637 -is_rbtree(t(_,T)) :-is_rbtree1092,29637 -is_rbtree(t(_,T)) :-is_rbtree1092,29637 -is_rbtree(X,_) :-is_rbtree1095,29695 -is_rbtree(X,_) :-is_rbtree1095,29695 -is_rbtree(X,_) :-is_rbtree1095,29695 -is_rbtree(T,Goal) :-is_rbtree1097,29731 -is_rbtree(T,Goal) :-is_rbtree1097,29731 -is_rbtree(T,Goal) :-is_rbtree1097,29731 -rbtree(t(_,black('',_,_,''))) :- !.rbtree1104,29874 -rbtree(t(_,black('',_,_,''))) :- !.rbtree1104,29874 -rbtree(t(_,black('',_,_,''))) :- !.rbtree1104,29874 -rbtree(t(_,T)) :-rbtree1105,29910 -rbtree(t(_,T)) :-rbtree1105,29910 -rbtree(t(_,T)) :-rbtree1105,29910 -rbtree1(black(L,K,_,R)) :-rbtree11108,29976 -rbtree1(black(L,K,_,R)) :-rbtree11108,29976 -rbtree1(black(L,K,_,R)) :-rbtree11108,29976 -rbtree1(red(_,_,_,_)) :-rbtree11112,30091 -rbtree1(red(_,_,_,_)) :-rbtree11112,30091 -rbtree1(red(_,_,_,_)) :-rbtree11112,30091 -find_path_blacks(black('',_,_,''), Bls, Bls) :- !.find_path_blacks1116,30159 -find_path_blacks(black('',_,_,''), Bls, Bls) :- !.find_path_blacks1116,30159 -find_path_blacks(black('',_,_,''), Bls, Bls) :- !.find_path_blacks1116,30159 -find_path_blacks(black(L,_,_,_), Bls0, Bls) :-find_path_blacks1117,30210 -find_path_blacks(black(L,_,_,_), Bls0, Bls) :-find_path_blacks1117,30210 -find_path_blacks(black(L,_,_,_), Bls0, Bls) :-find_path_blacks1117,30210 -find_path_blacks(red(L,_,_,_), Bls0, Bls) :-find_path_blacks1120,30307 -find_path_blacks(red(L,_,_,_), Bls0, Bls) :-find_path_blacks1120,30307 -find_path_blacks(red(L,_,_,_), Bls0, Bls) :-find_path_blacks1120,30307 -check_rbtree(black('',_,_,''),Min,Max,Bls0) :- !,check_rbtree1123,30386 -check_rbtree(black('',_,_,''),Min,Max,Bls0) :- !,check_rbtree1123,30386 -check_rbtree(black('',_,_,''),Min,Max,Bls0) :- !,check_rbtree1123,30386 -check_rbtree(red(L,K,_,R),Min,Max,Bls) :-check_rbtree1125,30465 -check_rbtree(red(L,K,_,R),Min,Max,Bls) :-check_rbtree1125,30465 -check_rbtree(red(L,K,_,R),Min,Max,Bls) :-check_rbtree1125,30465 -check_rbtree(black(L,K,_,R),Min,Max,Bls0) :-check_rbtree1131,30628 -check_rbtree(black(L,K,_,R),Min,Max,Bls0) :-check_rbtree1131,30628 -check_rbtree(black(L,K,_,R),Min,Max,Bls0) :-check_rbtree1131,30628 -check_height(0,_,_) :- !.check_height1137,30769 -check_height(0,_,_) :- !.check_height1137,30769 -check_height(0,_,_) :- !.check_height1137,30769 -check_height(Bls0,Min,Max) :-check_height1138,30795 -check_height(Bls0,Min,Max) :-check_height1138,30795 -check_height(Bls0,Min,Max) :-check_height1138,30795 -check_val(K, Min, Max) :- ( K @> Min ; Min == -inf), (K @< Max ; Max == +inf), !.check_val1141,30890 -check_val(K, Min, Max) :- ( K @> Min ; Min == -inf), (K @< Max ; Max == +inf), !.check_val1141,30890 -check_val(K, Min, Max) :- ( K @> Min ; Min == -inf), (K @< Max ; Max == +inf), !.check_val1141,30890 -check_val(K, Min, Max) :- check_val1142,30972 -check_val(K, Min, Max) :- check_val1142,30972 -check_val(K, Min, Max) :- check_val1142,30972 -check_red_child(black(_,_,_,_)).check_red_child1145,31068 -check_red_child(black(_,_,_,_)).check_red_child1145,31068 -check_red_child(red(_,K,_,_)) :-check_red_child1146,31101 -check_red_child(red(_,K,_,_)) :-check_red_child1146,31101 -check_red_child(red(_,K,_,_)) :-check_red_child1146,31101 -count(I,_,I).count1154,32024 -count(I,_,I).count1154,32024 -count(I,M,L) :-count1155,32038 -count(I,M,L) :-count1155,32038 -count(I,M,L) :-count1155,32038 -test_pos :-test_pos1158,32089 -build_ptree(X,X,T0,TF) :- !,build_ptree1173,32363 -build_ptree(X,X,T0,TF) :- !,build_ptree1173,32363 -build_ptree(X,X,T0,TF) :- !,build_ptree1173,32363 -build_ptree(X1,X,T0,TF) :-build_ptree1175,32415 -build_ptree(X1,X,T0,TF) :-build_ptree1175,32415 -build_ptree(X1,X,T0,TF) :-build_ptree1175,32415 -clean_tree(X,X,T0,TF) :- !,clean_tree1181,32508 -clean_tree(X,X,T0,TF) :- !,clean_tree1181,32508 -clean_tree(X,X,T0,TF) :- !,clean_tree1181,32508 -clean_tree(X1,X,T0,TF) :-clean_tree1184,32589 -clean_tree(X1,X,T0,TF) :-clean_tree1184,32589 -clean_tree(X1,X,T0,TF) :-clean_tree1184,32589 -bclean_tree(X,X,T0,TF) :- !,bclean_tree1190,32708 -bclean_tree(X,X,T0,TF) :- !,bclean_tree1190,32708 -bclean_tree(X,X,T0,TF) :- !,bclean_tree1190,32708 -bclean_tree(X1,X,T0,TF) :-bclean_tree1194,32821 -bclean_tree(X1,X,T0,TF) :-bclean_tree1194,32821 -bclean_tree(X1,X,T0,TF) :-bclean_tree1194,32821 -test_neg :-test_neg1203,32976 -build_ntree(X,X,T0,TF) :- !,build_ntree1219,33298 -build_ntree(X,X,T0,TF) :- !,build_ntree1219,33298 -build_ntree(X,X,T0,TF) :- !,build_ntree1219,33298 -build_ntree(X1,X,T0,TF) :-build_ntree1222,33363 -build_ntree(X1,X,T0,TF) :-build_ntree1222,33363 -build_ntree(X1,X,T0,TF) :-build_ntree1222,33363 - -library/readutil.yap,1236 -read_stream_to_codes(Stream, Codes) :-read_stream_to_codes49,1166 -read_stream_to_codes(Stream, Codes) :-read_stream_to_codes49,1166 -read_stream_to_codes(Stream, Codes) :-read_stream_to_codes49,1166 -read_file_to_codes(File, Codes, _) :-read_file_to_codes52,1248 -read_file_to_codes(File, Codes, _) :-read_file_to_codes52,1248 -read_file_to_codes(File, Codes, _) :-read_file_to_codes52,1248 -read_file_to_codes(File, Codes) :-read_file_to_codes57,1372 -read_file_to_codes(File, Codes) :-read_file_to_codes57,1372 -read_file_to_codes(File, Codes) :-read_file_to_codes57,1372 -read_file_to_terms(File, Codes, _) :-read_file_to_terms62,1493 -read_file_to_terms(File, Codes, _) :-read_file_to_terms62,1493 -read_file_to_terms(File, Codes, _) :-read_file_to_terms62,1493 -read_file_to_terms(File, Codes) :-read_file_to_terms67,1624 -read_file_to_terms(File, Codes) :-read_file_to_terms67,1624 -read_file_to_terms(File, Codes) :-read_file_to_terms67,1624 -prolog_read_stream_to_terms(Stream, Terms, Terms0) :-prolog_read_stream_to_terms73,1746 -prolog_read_stream_to_terms(Stream, Terms, Terms0) :-prolog_read_stream_to_terms73,1746 -prolog_read_stream_to_terms(Stream, Terms, Terms0) :-prolog_read_stream_to_terms73,1746 - -library/regex/cclass.h,1210 -typedef enum {CALNUM, CALPHA, CBLANK, CCNTRL, CDIGIT, CGRAPH,CALNUM41,2057 -typedef enum {CALNUM, CALPHA, CBLANK, CCNTRL, CDIGIT, CGRAPH,CALPHA41,2057 -typedef enum {CALNUM, CALPHA, CBLANK, CCNTRL, CDIGIT, CGRAPH,CBLANK41,2057 -typedef enum {CALNUM, CALPHA, CBLANK, CCNTRL, CDIGIT, CGRAPH,CCNTRL41,2057 -typedef enum {CALNUM, CALPHA, CBLANK, CCNTRL, CDIGIT, CGRAPH,CDIGIT41,2057 -typedef enum {CALNUM, CALPHA, CBLANK, CCNTRL, CDIGIT, CGRAPH,CGRAPH41,2057 - CLOWER, CPRINT, CPUNCT, CSPACE, CUPPER, CXDIGIT} citype;CLOWER42,2120 - CLOWER, CPRINT, CPUNCT, CSPACE, CUPPER, CXDIGIT} citype;CPRINT42,2120 - CLOWER, CPRINT, CPUNCT, CSPACE, CUPPER, CXDIGIT} citype;CPUNCT42,2120 - CLOWER, CPRINT, CPUNCT, CSPACE, CUPPER, CXDIGIT} citype;CSPACE42,2120 - CLOWER, CPRINT, CPUNCT, CSPACE, CUPPER, CXDIGIT} citype;CUPPER42,2120 - CLOWER, CPRINT, CPUNCT, CSPACE, CUPPER, CXDIGIT} citype;CXDIGIT42,2120 - CLOWER, CPRINT, CPUNCT, CSPACE, CUPPER, CXDIGIT} citype;citype42,2120 -static struct cclass {cclass45,2216 - char *name;name46,2240 - char *name;cclass::name46,2240 - citype fidx;fidx47,2254 - citype fidx;cclass::fidx47,2254 -} cclasses[] = {cclasses48,2269 - -library/regex/cname.h,182 -static struct cname {cname41,2082 - char *name;name42,2105 - char *name;cname::name42,2105 - char code;code43,2119 - char code;cname::code43,2119 -} cnames[] = {cnames44,2132 - -library/regex/collate.h,709 -#define COLLATE_H_INCLUDEDCOLLATE_H_INCLUDED31,1532 -#define STR_LEN STR_LEN36,1609 -#define TABLE_SIZE TABLE_SIZE37,1629 -#define COLLATE_VERSION COLLATE_VERSION38,1653 -struct collate_st_char_pri {collate_st_char_pri40,1688 - int prim, sec;prim41,1718 - int prim, sec;collate_st_char_pri::prim41,1718 - int prim, sec;sec41,1718 - int prim, sec;collate_st_char_pri::sec41,1718 -struct collate_st_chain_pri {collate_st_chain_pri43,1739 - unsigned char str[STR_LEN];str44,1770 - unsigned char str[STR_LEN];collate_st_chain_pri::str44,1770 - int prim, sec;prim45,1800 - int prim, sec;collate_st_chain_pri::prim45,1800 - int prim, sec;sec45,1800 - int prim, sec;collate_st_chain_pri::sec45,1800 - -library/regex/COPYRIGHT,159 -any computer system, and to alter it and redistribute it, subjectit6,280 - software, no matter how awful, even if they arise from flaws in it.awful10,447 - -library/regex/engine.c,3214 -#define matcher matcher52,2311 -#define fast fast53,2336 -#define slow slow54,2355 -#define dissect dissect55,2374 -#define backref backref56,2399 -#define step step57,2424 -#define print print58,2443 -#define at at59,2464 -#define match match60,2479 -#define matcher matcher63,2519 -#define fast fast64,2544 -#define slow slow65,2563 -#define dissect dissect66,2582 -#define backref backref67,2607 -#define step step68,2632 -#define print print69,2651 -#define at at70,2672 -#define match match71,2687 -struct match {match75,2789 - struct re_guts *g;g76,2804 - struct re_guts *g;match::g76,2804 - int eflags;eflags77,2824 - int eflags;match::eflags77,2824 - regmatch_t *pmatch; /* [nsub+1] (0 element unused) */pmatch78,2837 - regmatch_t *pmatch; /* [nsub+1] (0 element unused) */match::pmatch78,2837 - char *offp; /* offsets work from here */offp79,2892 - char *offp; /* offsets work from here */match::offp79,2892 - char *beginp; /* start of string -- virtual NUL precedes */beginp80,2935 - char *beginp; /* start of string -- virtual NUL precedes */match::beginp80,2935 - char *endp; /* end of string -- virtual NUL here */endp81,2997 - char *endp; /* end of string -- virtual NUL here */match::endp81,2997 - char *coldp; /* can be no match starting before here */coldp82,3051 - char *coldp; /* can be no match starting before here */match::coldp82,3051 - char **lastpos; /* [nplus+1] */lastpos83,3109 - char **lastpos; /* [nplus+1] */match::lastpos83,3109 - STATEVARS;STATEVARS84,3143 - STATEVARS;match::STATEVARS84,3143 - states st; /* current states */st85,3155 - states st; /* current states */match::st85,3155 - states fresh; /* states for a fresh start */fresh86,3189 - states fresh; /* states for a fresh start */match::fresh86,3189 - states tmp; /* temporary */tmp87,3236 - states tmp; /* temporary */match::tmp87,3236 - states empty; /* empty set of states */empty88,3266 - states empty; /* empty set of states */match::empty88,3266 -#define BOL BOL103,4011 -#define EOL EOL104,4031 -#define BOLEOL BOLEOL105,4051 -#define NOTHING NOTHING106,4074 -#define BOW BOW107,4098 -#define EOW EOW108,4118 -#define CODEMAX CODEMAX109,4138 -#define NONCHAR(NONCHAR110,4187 -#define NNONCHAR NNONCHAR111,4223 -#define SP(SP128,4635 -#define AT(AT129,4681 -#define NOTE(NOTE130,4736 -#define SP(SP132,4813 -#define AT(AT133,4847 -#define NOTE(NOTE134,4891 -matcher(g, string, nmatch, pmatch, eflags)matcher143,5146 -dissect(m, start, stop, startst, stopst)dissect309,9317 -backref(m, start, stop, startst, stopst, lev)backref497,14186 -fast(m, start, stop, startst, stopst)fast702,19581 -slow(m, start, stop, startst, stopst)slow793,21839 -step(g, start, stop, bef, ch, aft)step889,24333 -print(m, caption, st, ch, d)print1011,27192 -at(m, title, start, stop, startst, stopst)at1044,27820 -#define PCHARDONE PCHARDONE1061,28132 -pchar(ch)pchar1074,28591 -#undef matchermatcher1088,28765 -#undef fastfast1089,28780 -#undef slowslow1090,28792 -#undef dissectdissect1091,28804 -#undef backrefbackref1092,28819 -#undef stepstep1093,28834 -#undef printprint1094,28846 -#undef atat1095,28859 -#undef matchmatch1096,28869 - -library/regex/regcomp.c,4586 -static char sccsid[] = "@(#)regcomp.c 8.5 (Berkeley) 3/20/94";sccsid41,2058 -int collate_load_error;collate_load_error73,2597 -int collate_substitute_nontrivial;collate_substitute_nontrivial74,2621 -char collate_version[STR_LEN];collate_version75,2656 -unsigned char collate_substitute_table[UCHAR_MAX + 1][STR_LEN];collate_substitute_table76,2687 -struct collate_st_char_pri collate_char_pri_table[UCHAR_MAX + 1];collate_char_pri_table77,2751 -struct collate_st_chain_pri collate_chain_pri_table[TABLE_SIZE];collate_chain_pri_table78,2817 -#define isblank(isblank81,2899 -#define isascii(isascii83,2945 -static int collate_range_cmp (int c1, int c2)collate_range_cmp92,3171 -struct parse {parse138,4002 - char *next; /* next character in RE */next139,4017 - char *next; /* next character in RE */parse::next139,4017 - char *end; /* end of string (-> NUL normally) */end140,4058 - char *end; /* end of string (-> NUL normally) */parse::end140,4058 - int error; /* has an error been seen? */error141,4109 - int error; /* has an error been seen? */parse::error141,4109 - sop *strip; /* malloced strip */strip142,4152 - sop *strip; /* malloced strip */parse::strip142,4152 - sopno ssize; /* malloced strip size (allocated) */ssize143,4187 - sopno ssize; /* malloced strip size (allocated) */parse::ssize143,4187 - sopno slen; /* malloced strip length (used) */slen144,4240 - sopno slen; /* malloced strip length (used) */parse::slen144,4240 - int ncsalloc; /* number of csets allocated */ncsalloc145,4289 - int ncsalloc; /* number of csets allocated */parse::ncsalloc145,4289 - struct re_guts *g;g146,4337 - struct re_guts *g;parse::g146,4337 -# define NPAREN NPAREN147,4357 - sopno pbegin[NPAREN]; /* -> ( ([0] unused) */pbegin148,4423 - sopno pbegin[NPAREN]; /* -> ( ([0] unused) */parse::pbegin148,4423 - sopno pend[NPAREN]; /* -> ) ([0] unused) */pend149,4470 - sopno pend[NPAREN]; /* -> ) ([0] unused) */parse::pend149,4470 -static char nuls[10]; /* place to point scanner in event of error */nuls208,6728 -#define PEEK(PEEK214,6910 -#define PEEK2(PEEK2215,6936 -#define MORE(MORE216,6967 -#define MORE2(MORE2217,7001 -#define SEE(SEE218,7038 -#define SEETWO(SEETWO219,7079 -#define EAT(EAT220,7155 -#define EATTWO(EATTWO221,7199 -#define NEXT(NEXT222,7256 -#define NEXT2(NEXT2223,7283 -#define NEXTn(NEXTn224,7314 -#define GETNEXT(GETNEXT225,7348 -#define SETERROR(SETERROR226,7379 -#define REQUIRE(REQUIRE227,7414 -#define MUSTSEE(MUSTSEE228,7459 -#define MUSTEAT(MUSTEAT229,7519 -#define MUSTNOTSEE(MUSTNOTSEE230,7582 -#define EMIT(EMIT231,7646 -#define INSERT(INSERT232,7708 -#define AHEAD(AHEAD233,7776 -#define ASTERN(ASTERN234,7824 -#define HERE(HERE235,7871 -#define THERE(THERE236,7897 -#define THERETHERE(THERETHERE237,7928 -#define DROP(DROP238,7963 -static int never = 0; /* for use in asserts; shuts lint up */never241,8012 -#define never never243,8081 -yap_regcomp(preg, pattern, cflags)yap_regcomp259,8513 -# define GOODFLAGS(GOODFLAGS270,8732 -p_ere(p, stop)p_ere363,10836 -p_ere_exp(p)p_ere_exp409,11908 -p_str(p)p_str558,15263 -p_bre(p, end1, end2)p_bre579,15983 -p_simp_re(p, starordinary)p_simp_re612,16839 -# define BACKSL BACKSL622,17078 -p_count(p)p_count730,19616 -p_bracket(p)p_bracket753,20136 -p_b_term(p, cs)p_b_term827,21694 -p_b_cclass(p, cs)p_b_cclass906,23532 -p_b_eclass(p, cs)p_b_eclass1002,25606 -p_b_symbol(p)p_b_symbol1017,25909 -p_b_coll_elem(p, endc)p_b_coll_elem1037,26365 -othercase(ch)othercase1066,27065 -bothcases(p, ch)bothcases1086,27465 -ordinary(p, ch)ordinary1112,27996 -nonnewline(p)nonnewline1134,28458 -repeat(p, start, from, to)repeat1158,28967 -# define N N1165,29212 -# define INF INF1166,29225 -# define REP(REP1167,29240 -# define MAP(MAP1168,29273 -seterr(p, e)seterr1230,30977 -allocset(p)allocset1246,31348 -freeset(p, cs)freeset1301,32753 -freezeset(p, cs)freezeset1326,33522 -firstch(p, cs)firstch1360,34346 -nch(p, cs)nch1379,34709 -mcsub(cs, cp)mcsub1428,35654 -mcin(cs, cp)mcin1455,36187 -mcfind(cs, cp)mcfind1467,36407 -mcinvert(p, cs)mcinvert1490,36882 -mccase(p, cs)mccase1505,37241 -isinsets(g, c)isinsets1517,37485 -samesets(g, c1, c2)samesets1537,37952 -categorize(p, g)categorize1559,38445 -dupl(p, start, finish)dupl1587,39086 -doemit(p, op, opnd)doemit1615,39892 -doinsert(p, op, opnd, pos)doinsert1641,40503 -dofwd(p, pos, value)dofwd1681,41256 -enlarge(p, size)enlarge1699,41599 -stripsnug(p, g)stripsnug1722,41995 -findmust(p, g)findmust1745,42649 -pluscount(p, g)pluscount1826,44447 - -library/regex/regerror.c,464 -static char sccsid[] = "@(#)regerror.c 8.4 (Berkeley) 3/20/94";sccsid41,2059 -static struct rerr {rerr86,3118 - int code;code87,3139 - int code;rerr::code87,3139 - char *name;name88,3150 - char *name;rerr::name88,3150 - char *explain;explain89,3163 - char *explain;rerr::explain89,3163 -} rerrs[] = {rerrs90,3179 -yap_regerror(int errcode,const regex_t *preg,char *errbuf,size_t errbuf_size)yap_regerror116,4325 -regatoi(preg, localbuf)regatoi160,5251 - -library/regex/regex2.h,4605 -#define MAGIC1 MAGIC157,2540 -typedef unsigned long sop; /* strip operator */sop78,3546 -typedef long sopno;sopno79,3595 -#define OPRMASK OPRMASK80,3616 -#define OPDMASK OPDMASK81,3645 -#define OPSHIFT OPSHIFT82,3674 -#define OP(OP83,3706 -#define OPND(OPND84,3735 -#define SOP(SOP85,3766 -#define OEND OEND88,3879 -#define OCHAR OCHAR89,3927 -#define OBOL OBOL90,3987 -#define OEOL OEOL91,4037 -#define OANY OANY92,4088 -#define OANYOF OANYOF93,4129 -#define OBACK_ OBACK_94,4183 -#define O_BACK O_BACK95,4242 -#define OPLUS_ OPLUS_96,4299 -#define O_PLUS O_PLUS97,4359 -#define OQUEST_ OQUEST_98,4421 -#define O_QUEST O_QUEST99,4483 -#define OLPAREN OLPAREN100,4546 -#define ORPAREN ORPAREN101,4597 -#define OCH_ OCH_102,4649 -#define OOR1 OOR1103,4710 -#define OOR2 OOR2104,4774 -#define O_CH O_CH105,4837 -#define OBOW OBOW106,4897 -#define OEOW OEOW107,4947 - uch *ptr; /* -> uch [csetsize] */ptr122,5606 - uch *ptr; /* -> uch [csetsize] */__anon382::ptr122,5606 - uch mask; /* bit within array */mask123,5643 - uch mask; /* bit within array */__anon382::mask123,5643 - short hash; /* hash code */hash124,5679 - short hash; /* hash code */__anon382::hash124,5679 - size_t smultis;smultis125,5721 - size_t smultis;__anon382::smultis125,5721 - char *multis; /* -> char[smulti] ab\0cd\0ef\0\0 */multis126,5739 - char *multis; /* -> char[smulti] ab\0cd\0ef\0\0 */__anon382::multis126,5739 -} cset;cset127,5794 -#define CHadd(CHadd129,5875 -#define CHsub(CHsub130,5960 -#define CHIN(CHIN131,6046 -#define MCadd(MCadd132,6102 -#define MCsub(MCsub133,6174 -#define MCin(MCin134,6217 -typedef unsigned char cat_t;cat_t137,6298 -struct re_guts {re_guts142,6378 - int magic;magic143,6396 - int magic;re_guts::magic143,6396 -# define MAGIC2 MAGIC2144,6409 - sop *strip; /* malloced area for strip */strip145,6449 - sop *strip; /* malloced area for strip */re_guts::strip145,6449 - int csetsize; /* number of bits in a cset vector */csetsize146,6494 - int csetsize; /* number of bits in a cset vector */re_guts::csetsize146,6494 - int ncsets; /* number of csets in use */ncsets147,6549 - int ncsets; /* number of csets in use */re_guts::ncsets147,6549 - cset *sets; /* -> cset [ncsets] */sets148,6593 - cset *sets; /* -> cset [ncsets] */re_guts::sets148,6593 - uch *setbits; /* -> uch[csetsize][ncsets/CHAR_BIT] */setbits149,6631 - uch *setbits; /* -> uch[csetsize][ncsets/CHAR_BIT] */re_guts::setbits149,6631 - int cflags; /* copy of regcomp() cflags argument */cflags150,6688 - int cflags; /* copy of regcomp() cflags argument */re_guts::cflags150,6688 - sopno nstates; /* = number of sops */nstates151,6743 - sopno nstates; /* = number of sops */re_guts::nstates151,6743 - sopno firststate; /* the initial OEND (normally 0) */firststate152,6784 - sopno firststate; /* the initial OEND (normally 0) */re_guts::firststate152,6784 - sopno laststate; /* the final OEND */laststate153,6840 - sopno laststate; /* the final OEND */re_guts::laststate153,6840 - int iflags; /* internal flags */iflags154,6880 - int iflags; /* internal flags */re_guts::iflags154,6880 -# define USEBOL USEBOL155,6916 -# define USEEOL USEEOL156,6950 -# define BAD BAD157,6984 - int nbol; /* number of ^ used */nbol158,7024 - int nbol; /* number of ^ used */re_guts::nbol158,7024 - int neol; /* number of $ used */neol159,7060 - int neol; /* number of $ used */re_guts::neol159,7060 - int ncategories; /* how many character categories */ncategories160,7096 - int ncategories; /* how many character categories */re_guts::ncategories160,7096 - cat_t *categories; /* ->catspace[-CHAR_MIN] */categories161,7151 - cat_t *categories; /* ->catspace[-CHAR_MIN] */re_guts::categories161,7151 - char *must; /* match must contain this string */must162,7200 - char *must; /* match must contain this string */re_guts::must162,7200 - int mlen; /* length of must */mlen163,7252 - int mlen; /* length of must */re_guts::mlen163,7252 - size_t nsub; /* copy of re_nsub */nsub164,7286 - size_t nsub; /* copy of re_nsub */re_guts::nsub164,7286 - int backrefs; /* does it use back references? */backrefs165,7324 - int backrefs; /* does it use back references? */re_guts::backrefs165,7324 - sopno nplus; /* how deep does it nest +s? */nplus166,7376 - sopno nplus; /* how deep does it nest +s? */re_guts::nplus166,7376 - cat_t catspace[1]; /* actually [NC] */catspace168,7454 - cat_t catspace[1]; /* actually [NC] */re_guts::catspace168,7454 -#define OUT OUT172,7523 -#define ISWORD(ISWORD173,7577 - -library/regex/regexec.c,2094 -static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94";sccsid41,2058 -static int nope = 0; /* for use in asserts; shuts lint up */nope76,2746 -#define states states80,2867 -#define states1 states181,2887 -#define CLEAR(CLEAR82,2952 -#define SET0(SET083,2979 -#define SET1(SET184,3034 -#define ISSET(ISSET85,3086 -#define ASSIGN(ASSIGN86,3147 -#define EQ(EQ87,3180 -#define STATEVARS STATEVARS88,3210 -#define STATESETUP(STATESETUP89,3259 -#define STATETEARDOWN(STATETEARDOWN90,3302 -#define SETUP(SETUP91,3345 -#define onestate onestate92,3372 -#define INIT(INIT93,3394 -#define INC(INC94,3445 -#define ISSTATEIN(ISSTATEIN95,3472 -#define FWD(FWD98,3651 -#define BACK(BACK99,3726 -#define ISSETBACK(ISSETBACK100,3802 -#define SNAMES SNAMES102,3891 -#undef statesstates107,3985 -#undef CLEARCLEAR108,3999 -#undef SET0SET0109,4012 -#undef SET1SET1110,4024 -#undef ISSETISSET111,4036 -#undef ASSIGNASSIGN112,4049 -#undef EQEQ113,4063 -#undef STATEVARSSTATEVARS114,4073 -#undef STATESETUPSTATESETUP115,4090 -#undef STATETEARDOWNSTATETEARDOWN116,4108 -#undef SETUPSETUP117,4129 -#undef onestateonestate118,4142 -#undef INITINIT119,4158 -#undef INCINC120,4170 -#undef ISSTATEINISSTATEIN121,4181 -#undef FWDFWD122,4198 -#undef BACKBACK123,4209 -#undef ISSETBACKISSETBACK124,4221 -#undef SNAMESSNAMES125,4238 -#define states states128,4305 -#define CLEAR(CLEAR129,4327 -#define SET0(SET0130,4372 -#define SET1(SET1131,4404 -#define ISSET(ISSET132,4436 -#define ASSIGN(ASSIGN133,4465 -#define EQ(EQ134,4514 -#define STATEVARS STATEVARS135,4566 -#define STATESETUP(STATESETUP138,4742 -#define STATETEARDOWN(STATETEARDOWN145,5232 -#define SETUP(SETUP147,5337 -#define onestate onestate148,5397 -#define INIT(INIT149,5419 -#define INC(INC150,5450 -#define ISSTATEIN(ISSTATEIN151,5473 -#define FWD(FWD154,5642 -#define BACK(BACK155,5702 -#define ISSETBACK(ISSETBACK156,5763 -#define LNAMES LNAMES158,5826 - yap_regexec(preg, string, nmatch, pmatch, eflags) const regex_t *preg;yap_regexec178,6477 -#define GOODFLAGS(GOODFLAGS186,6680 - -library/regex/regexp.c,390 -#define yap_regcomp(yap_regcomp25,732 -#define yap_regexec(yap_regexec26,774 -#define yap_regfree(yap_regfree27,824 -#define yap_regerror(yap_regerror28,858 -static YAP_Bool check_regexp(void) check_regexp37,1014 -static YAP_Bool regexp(void) regexp84,2398 -init_regexp(void)init_regexp172,4781 -int WINAPI win_regexp(HANDLE hinst, DWORD reason, LPVOID reserved)win_regexp184,4994 - -library/regex/regfree.c,116 -static char sccsid[] = "@(#)regfree.c 8.3 (Berkeley) 3/20/94";sccsid41,2058 -yap_regfree(preg)yap_regfree57,2359 - -library/regex/utils.h,223 -#define DUPMAX DUPMAX42,2149 -#define DUPMAX DUPMAX44,2217 -#define INFINITY INFINITY46,2286 -#define NC NC47,2317 -typedef unsigned char uch;uch48,2356 -#define NDEBUG NDEBUG53,2483 -#define memmove(memmove60,2635 - -library/regex/WHATSNEW,595 -thing is that regex.h is now generated, using mkh, rather than beingmkh67,3781 -supplied in the distribution; due to circularities in dependencies,distribution68,3850 -supplied in the distribution; due to circularities in dependencies,dependencies68,3850 -helper program, mkh, which extracts prototypes given in stylized comments.program83,4706 -helper program, mkh, which extracts prototypes given in stylized comments.mkh83,4706 -file prototypes the functions if __STDC__ is defined, and some small typosdefined90,5109 -extension, the REG_STARTEND option to regexec().extension94,5286 - -library/regex/yapregex.h,2135 -#define _REGEX_H__REGEX_H_41,2083 -typedef int regoff_t;regoff_t44,2117 - int re_magic;re_magic47,2160 - int re_magic;__anon383::re_magic47,2160 - int re_nsub; /* number of parenthesized subexpressions */re_nsub48,2176 - int re_nsub; /* number of parenthesized subexpressions */__anon383::re_nsub48,2176 - const char *re_endp; /* end pointer for REG_PEND */re_endp49,2237 - const char *re_endp; /* end pointer for REG_PEND */__anon383::re_endp49,2237 - struct re_guts *re_g; /* none of your business :-) */re_g50,2291 - struct re_guts *re_g; /* none of your business :-) */__anon383::re_g50,2291 -} regex_t;regex_t51,2347 - regoff_t rm_so; /* start of match */rm_so54,2379 - regoff_t rm_so; /* start of match */__anon384::rm_so54,2379 - regoff_t rm_eo; /* end of match */rm_eo55,2419 - regoff_t rm_eo; /* end of match */__anon384::rm_eo55,2419 -} regmatch_t;regmatch_t56,2457 -#define REG_BASIC REG_BASIC59,2497 -#define REG_EXTENDED REG_EXTENDED60,2521 -#define REG_ICASE REG_ICASE61,2548 -#define REG_NOSUB REG_NOSUB62,2572 -#define REG_NEWLINE REG_NEWLINE63,2596 -#define REG_NOSPEC REG_NOSPEC64,2622 -#define REG_PEND REG_PEND65,2647 -#define REG_DUMP REG_DUMP66,2670 -#define REG_NOMATCH REG_NOMATCH69,2719 -#define REG_BADPAT REG_BADPAT70,2743 -#define REG_ECOLLATE REG_ECOLLATE71,2766 -#define REG_ECTYPE REG_ECTYPE72,2791 -#define REG_EESCAPE REG_EESCAPE73,2814 -#define REG_ESUBREG REG_ESUBREG74,2838 -#define REG_EBRACK REG_EBRACK75,2862 -#define REG_EPAREN REG_EPAREN76,2885 -#define REG_EBRACE REG_EBRACE77,2908 -#define REG_BADBR REG_BADBR78,2931 -#define REG_ERANGE REG_ERANGE79,2953 -#define REG_ESPACE REG_ESPACE80,2976 -#define REG_BADRPT REG_BADRPT81,2999 -#define REG_EMPTY REG_EMPTY82,3022 -#define REG_ASSERT REG_ASSERT83,3044 -#define REG_INVARG REG_INVARG84,3067 -#define REG_ATOI REG_ATOI85,3090 -#define REG_ITOA REG_ITOA86,3145 -#define REG_NOTBOL REG_NOTBOL89,3226 -#define REG_NOTEOL REG_NOTEOL90,3252 -#define REG_STARTEND REG_STARTEND91,3278 -#define REG_TRACE REG_TRACE92,3306 -#define REG_LARGE REG_LARGE93,3358 -#define REG_BACKR REG_BACKR94,3416 - -library/regexp.yap,2070 -regexp(RegExp, String, Opts) :-regexp169,6283 -regexp(RegExp, String, Opts) :-regexp169,6283 -regexp(RegExp, String, Opts) :-regexp169,6283 -regexp(RegExp, String, Opts, OUT) :-regexp175,6458 -regexp(RegExp, String, Opts, OUT) :-regexp175,6458 -regexp(RegExp, String, Opts, OUT) :-regexp175,6458 -check_out(V,_,_,_) :- var(V), !.check_out186,6801 -check_out(V,_,_,_) :- var(V), !.check_out186,6801 -check_out(V,_,_,_) :- var(V), !.check_out186,6801 -check_out([],I,I,_) :- !.check_out187,6834 -check_out([],I,I,_) :- !.check_out187,6834 -check_out([],I,I,_) :- !.check_out187,6834 -check_out([V|L],I0,IF,G) :- !,check_out188,6860 -check_out([V|L],I0,IF,G) :- !,check_out188,6860 -check_out([V|L],I0,IF,G) :- !,check_out188,6860 -check_out(OUT,_,_,G) :-check_out192,6990 -check_out(OUT,_,_,G) :-check_out192,6990 -check_out(OUT,_,_,G) :-check_out192,6990 -check_opts(V,_,_,G) :- var(V), !,check_opts198,7084 -check_opts(V,_,_,G) :- var(V), !,check_opts198,7084 -check_opts(V,_,_,G) :- var(V), !,check_opts198,7084 -check_opts([],I,I,_) :- !.check_opts200,7156 -check_opts([],I,I,_) :- !.check_opts200,7156 -check_opts([],I,I,_) :- !.check_opts200,7156 -check_opts([A|L],I0,IF,G) :- !,check_opts201,7183 -check_opts([A|L],I0,IF,G) :- !,check_opts201,7183 -check_opts([A|L],I0,IF,G) :- !,check_opts201,7183 -check_opts(Opts,_,_,G) :-check_opts205,7273 -check_opts(Opts,_,_,G) :-check_opts205,7273 -check_opts(Opts,_,_,G) :-check_opts205,7273 -process_opt(V,_,G) :- var(V), !,process_opt208,7344 -process_opt(V,_,G) :- var(V), !,process_opt208,7344 -process_opt(V,_,G) :- var(V), !,process_opt208,7344 -process_opt(nocase,1,_) :- !.process_opt210,7415 -process_opt(nocase,1,_) :- !.process_opt210,7415 -process_opt(nocase,1,_) :- !.process_opt210,7415 -process_opt(indices,2,_) :- !.process_opt211,7445 -process_opt(indices,2,_) :- !.process_opt211,7445 -process_opt(indices,2,_) :- !.process_opt211,7445 -process_opt(I,_,G) :-process_opt212,7476 -process_opt(I,_,G) :-process_opt212,7476 -process_opt(I,_,G) :-process_opt212,7476 - -library/rltree/range_list.c,2813 -RL_Buffer *buffer = NULL;buffer76,3096 -unsigned int active_bits[16] = {1, 3, 7, 15, 31, 63,active_bits77,3122 -RL_Tree *new_rl(NUM max_size) {new_rl86,3414 -RL_Tree *copy_rl(RL_Tree *tree) {copy_rl130,4377 -void free_rl(RL_Tree *range) {free_rl157,4932 -RL_Tree *set_in_rl(RL_Tree *tree, NUM number, STATUS status) {set_in_rl168,5068 -void rl_all(RL_Tree *tree, STATUS status) {rl_all188,5620 -BOOLEAN in_rl(RL_Tree *tree, NUM number) {in_rl204,5993 -BOOLEAN freeze_rl(RL_Tree *range) {freeze_rl213,6183 -RL_Tree *minus_rl(RL_Tree *range1, RL_Tree *range2) {minus_rl227,6518 -NUM rl_next_in_bigger(RL_Tree *tree, NUM min) {rl_next_in_bigger237,6812 -static void quadrant_interval(RL_Tree *tree, short quadrant, NUM interval,quadrant_interval260,7485 -static void number_quadrant(NUM number, RL_Tree *tree, NUM node_interval,number_quadrant271,7805 -static NUM get_quadrant_node(RL_Tree *tree, NUM node, short quadrant,get_quadrant_node289,8470 -void shift_right(RL_Tree *tree, const NUM idx, const long nnodes) {shift_right301,8805 -void shift_left(RL_Tree *tree, const NUM idx, const long nnodes) {shift_left316,9110 -NUM new_node(RL_Tree *tree, NUM node_father, short quadrant,new_node338,9526 -int get_location(RL_Tree *tree, NUM node, short quadrant, NUM node_interval) {get_location407,11970 -long set_in(NUM number, NUM node, NUM node_num, NUM node_interval, NUM max,set_in450,13072 -long compact_node(RL_Tree *tree, NUM node, NUM next_node, NUM node_interval,compact_node530,15827 -static unsigned int tree_size(RL_Tree *tree, NUM node, NUM interval) {tree_size599,17964 -void set_num_bit(unsigned int number, char *storage, STATUS status) {set_num_bit630,18742 -BOOLEAN is_num_bit(unsigned int number, char *storage, STATUS status) {is_num_bit642,18994 -static void set_quadrant(RL_Node *node, short quadrant,set_quadrant655,19266 -static QUADRANT_STATUS quadrant_status(RL_Node *node, short quadrant) {quadrant_status679,19760 -static BOOLEAN in_leaf(NUM number, RL_Tree *tree, NUM node, NUM node_num,in_leaf699,20162 -BOOLEAN in_tree(NUM number, RL_Tree *tree, NUM node, NUM node_num,in_tree711,20387 -static void display_leaf(RL_Tree *tree, NUM node, NUM node_num, NUM max) {display_leaf748,21495 -void display_tree(RL_Tree *tree) {display_tree762,21822 -void idisplay_tree(RL_Tree *tree, NUM node, NUM node_num, NUM interval,idisplay_tree803,22767 -static NUM next_in_leaf(RL_Tree *tree, NUM node, NUM node_num, NUM max,next_in_leaf844,24118 -NUM next_min(RL_Tree *tree, NUM node, NUM node_num, NUM interval, NUM max,next_min864,24780 -void intersect_leafs(char *storage1, char *storage2) {intersect_leafs908,26063 -static NUM norm_tree_size(NUM interval) {norm_tree_size979,28442 -static void root_intervals(RL_Tree *tree) {root_intervals996,28738 - -library/rltree/range_list.h,4596 -#define NUM NUM30,1068 -struct s_node {s_node44,1489 - unsigned short int quadrant_1: 2; //quadrant_146,1525 - unsigned short int quadrant_1: 2; //s_node::quadrant_146,1525 - unsigned short int quadrant_2: 2;quadrant_247,1563 - unsigned short int quadrant_2: 2;s_node::quadrant_247,1563 - unsigned short int quadrant_3: 2;quadrant_348,1598 - unsigned short int quadrant_3: 2;s_node::quadrant_348,1598 - unsigned short int quadrant_4: 2;quadrant_449,1633 - unsigned short int quadrant_4: 2;s_node::quadrant_449,1633 - unsigned short int num_subnodes: 8; num_subnodes50,1668 - unsigned short int num_subnodes: 8; s_node::num_subnodes50,1668 -typedef enum { R_TOTALLY_IN_INTERVAL=3, R_PARCIALLY_IN_INTERVAL=2, R_NOT_IN_INTERVAL=0, R_IGNORE=1} QUADRANT_STATUS;R_TOTALLY_IN_INTERVAL53,1710 -typedef enum { R_TOTALLY_IN_INTERVAL=3, R_PARCIALLY_IN_INTERVAL=2, R_NOT_IN_INTERVAL=0, R_IGNORE=1} QUADRANT_STATUS;R_PARCIALLY_IN_INTERVAL53,1710 -typedef enum { R_TOTALLY_IN_INTERVAL=3, R_PARCIALLY_IN_INTERVAL=2, R_NOT_IN_INTERVAL=0, R_IGNORE=1} QUADRANT_STATUS;R_NOT_IN_INTERVAL53,1710 -typedef enum { R_TOTALLY_IN_INTERVAL=3, R_PARCIALLY_IN_INTERVAL=2, R_NOT_IN_INTERVAL=0, R_IGNORE=1} QUADRANT_STATUS;R_IGNORE53,1710 -typedef enum { R_TOTALLY_IN_INTERVAL=3, R_PARCIALLY_IN_INTERVAL=2, R_NOT_IN_INTERVAL=0, R_IGNORE=1} QUADRANT_STATUS;QUADRANT_STATUS53,1710 -#define BRANCH_FACTOR BRANCH_FACTOR56,1829 -#define LEAF_SIZE LEAF_SIZE57,1892 -#define NODE_SIZE NODE_SIZE59,1967 -#define NODE(NODE61,2002 -#define ROOT(ROOT62,2052 -#define IS_ROOT(IS_ROOT64,2074 -#define ROOT_INTERVAL(ROOT_INTERVAL65,2133 -#define MIN(MIN67,2193 -#define ON_BITS(ON_BITS69,2223 -#define SET_LEAF_IN(SET_LEAF_IN70,2310 -#define LEAF_ALL_IN(LEAF_ALL_IN72,2426 -#define LEAF_ALL_OUT(LEAF_ALL_OUT73,2528 -#define ALL_OUT(ALL_OUT75,2621 -#define ALL_IN(ALL_IN76,2684 -#define INODE_CAPACITY INODE_CAPACITY77,2750 -#define QUADRANT_MAX_VALUE(QUADRANT_MAX_VALUE80,2891 -#define NEXT_INTERVAL(NEXT_INTERVAL83,3069 -#define IS_LEAF(IS_LEAF87,3198 -#define LAST_LEVEL_INODE(LAST_LEVEL_INODE88,3291 -#define REALLOC_MEM(REALLOC_MEM90,3391 -#define MEM_SIZE(MEM_SIZE91,3462 -#define TREE_SIZE(TREE_SIZE94,3521 - struct s_node i_node;i_node98,3596 - struct s_node i_node;__anon386::i_node98,3596 - unsigned short int leaf;leaf99,3620 - unsigned short int leaf;__anon386::leaf99,3620 -} RL_Node; /* A node is a internal node (inode) or a leaf depending on their depth in the tree */RL_Node100,3647 -struct rl_struct {rl_struct107,3813 - RL_Node* root;root108,3832 - RL_Node* root;rl_struct::root108,3832 - NUM size; // number of nodessize109,3849 - NUM size; // number of nodesrl_struct::size109,3849 - NUM mem_alloc; // memory allocated for *rootmem_alloc110,3886 - NUM mem_alloc; // memory allocated for *rootrl_struct::mem_alloc110,3886 - NUM range_max; // maximum value of the intervalrange_max111,3934 - NUM range_max; // maximum value of the intervalrl_struct::range_max111,3934 - NUM root_i; // root interval root_i112,3985 - NUM root_i; // root interval rl_struct::root_i112,3985 -typedef struct rl_struct RL_Tree;RL_Tree114,4024 -struct s_buffer {s_buffer118,4073 - RL_Node* root_node;root_node119,4091 - RL_Node* root_node;s_buffer::root_node119,4091 - unsigned long size; // memory (in bytes) allocated for root_nodesize120,4113 - unsigned long size; // memory (in bytes) allocated for root_nodes_buffer::size120,4113 -typedef struct s_buffer RL_Buffer;RL_Buffer122,4183 -#define BITMAP_empty(BITMAP_empty126,4305 -#define BITMAP_member(BITMAP_member127,4355 -#define BITMAP_alone(BITMAP_alone128,4418 -#define BITMAP_subset(BITMAP_subset129,4475 -#define BITMAP_same(BITMAP_same130,4536 -#define BITMAP_on_all(BITMAP_on_all132,4591 -#define BITMAP_clear(BITMAP_clear134,4646 -#define BITMAP_and(BITMAP_and135,4695 -#define BITMAP_minus(BITMAP_minus136,4749 -#define BITMAP_insert(BITMAP_insert137,4804 -#define BITMAP_delete(BITMAP_delete138,4861 -#define BITMAP_copy(BITMAP_copy139,4921 -#define BITMAP_intersection(BITMAP_intersection140,4974 -#define BITMAP_difference(BITMAP_difference141,5036 -typedef enum { TRUE=1, FALSE=0} BOOLEAN;TRUE145,5171 -typedef enum { TRUE=1, FALSE=0} BOOLEAN;FALSE145,5171 -typedef enum { TRUE=1, FALSE=0} BOOLEAN;BOOLEAN145,5171 -typedef enum { IN=1, OUT=0} STATUS;IN146,5213 -typedef enum { IN=1, OUT=0} STATUS;OUT146,5213 -typedef enum { IN=1, OUT=0} STATUS;STATUS146,5213 -#define BUFFER_SIZE BUFFER_SIZE149,5254 -#define IS_FREEZED(IS_FREEZED165,5980 - -library/rltree/yap_rl.c,1153 -#define IDTYPE IDTYPE30,1077 -#define PTR2ID(PTR2ID31,1101 -#define ID2PTR(ID2PTR32,1138 -unsigned long int memory_usage=0;memory_usage36,1245 -unsigned long int tree_mem=0;tree_mem37,1279 -#define STORE_TREE_SIZE(STORE_TREE_SIZE39,1310 -#define UPDATE_MEM_USAGE(UPDATE_MEM_USAGE40,1365 -#define FREE_MEM_USAGE(FREE_MEM_USAGE41,1457 -#define ADD_MEM_USAGE(ADD_MEM_USAGE42,1518 -rl_new(void) {rl_new48,1635 -rl_copy(void) {rl_copy79,2374 -rl_size(void) {rl_size117,3083 -rl_mem_usage(void) {rl_mem_usage143,3506 -rl_free(void) {rl_free157,3710 -rl_set_in(void) {rl_set_in184,4050 -rl_in(void) {rl_in218,4532 -rl_set_out(void) {rl_set_out247,4943 -rl_freeze(void) {rl_freeze278,5411 -rl_set_all_in(void) {rl_set_all_in309,5825 -rl_print(void) {rl_print341,6257 - YAP_Term last_solution; /* the last solution */last_solution366,6656 - YAP_Term last_solution; /* the last solution */__anon389::last_solution366,6656 -} yap_back_data_type;yap_back_data_type367,6709 -yap_back_data_type *back_data;back_data369,6732 -rl_b_in2(void) {rl_b_in2377,6794 -rl_b_in1(void) {rl_b_in1398,7267 -void init_rl(void){init_rl431,7979 - -library/rltree.yap,0 - -library/sockets.yap,2943 -ip_socket(Domain, 'SOCK_DGRAM', Protocol, SOCKET) :-ip_socket120,3633 -ip_socket(Domain, 'SOCK_DGRAM', Protocol, SOCKET) :-ip_socket120,3633 -ip_socket(Domain, 'SOCK_DGRAM', Protocol, SOCKET) :-ip_socket120,3633 -ip_socket(Domain, 'SOCK_STREAM', Protocol, SOCKET) :-ip_socket125,3823 -ip_socket(Domain, 'SOCK_STREAM', Protocol, SOCKET) :-ip_socket125,3823 -ip_socket(Domain, 'SOCK_STREAM', Protocol, SOCKET) :-ip_socket125,3823 -ip_socket(Domain, SOCK) :-ip_socket131,4016 -ip_socket(Domain, SOCK) :-ip_socket131,4016 -ip_socket(Domain, SOCK) :-ip_socket131,4016 -socket_close(Socket) :-socket_close134,4088 -socket_close(Socket) :-socket_close134,4088 -socket_close(Socket) :-socket_close134,4088 -socket_close(Socket) :-socket_close136,4153 -socket_close(Socket) :-socket_close136,4153 -socket_close(Socket) :-socket_close136,4153 -socket_bind(Socket, 'AF_INET'(Host,Port)) :-socket_bind140,4249 -socket_bind(Socket, 'AF_INET'(Host,Port)) :-socket_bind140,4249 -socket_bind(Socket, 'AF_INET'(Host,Port)) :-socket_bind140,4249 -tcp_socket_connect(Socket, Address, StreamPair) :-tcp_socket_connect151,4477 -tcp_socket_connect(Socket, Address, StreamPair) :-tcp_socket_connect151,4477 -tcp_socket_connect(Socket, Address, StreamPair) :-tcp_socket_connect151,4477 -socket_listen(SOCKET, BACKLOG) :-socket_listen160,4753 -socket_listen(SOCKET, BACKLOG) :-socket_listen160,4753 -socket_listen(SOCKET, BACKLOG) :-socket_listen160,4753 -socket_accept(Socket, Client, StreamPair) :-socket_accept163,4821 -socket_accept(Socket, Client, StreamPair) :-socket_accept163,4821 -socket_accept(Socket, Client, StreamPair) :-socket_accept163,4821 -socket_buffering(STREAM, _, CUR, NEW) :-socket_buffering179,5281 -socket_buffering(STREAM, _, CUR, NEW) :-socket_buffering179,5281 -socket_buffering(STREAM, _, CUR, NEW) :-socket_buffering179,5281 -translate_buffer(false, unbuf).translate_buffer185,5479 -translate_buffer(false, unbuf).translate_buffer185,5479 -translate_buffer(full, fullbuf).translate_buffer186,5511 -translate_buffer(full, fullbuf).translate_buffer186,5511 -current_host(Host) :-current_host188,5545 -current_host(Host) :-current_host188,5545 -current_host(Host) :-current_host188,5545 -hostname_address(Host, Address) :-hostname_address191,5591 -hostname_address(Host, Address) :-hostname_address191,5591 -hostname_address(Host, Address) :-hostname_address191,5591 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client196,5716 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client196,5716 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client196,5716 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client200,5844 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client200,5844 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client200,5844 -socket_select(_,_,_,_,_) :-socket_select226,7010 -socket_select(_,_,_,_,_) :-socket_select226,7010 -socket_select(_,_,_,_,_) :-socket_select226,7010 - -library/splay.yap,5424 -splay_access(V, Item, Val, Tree, NewTree):-splay_access188,6675 -splay_access(V, Item, Val, Tree, NewTree):-splay_access188,6675 -splay_access(V, Item, Val, Tree, NewTree):-splay_access188,6675 -splay_insert(Item, Val,Tree, NewTree):-splay_insert190,6762 -splay_insert(Item, Val,Tree, NewTree):-splay_insert190,6762 -splay_insert(Item, Val,Tree, NewTree):-splay_insert190,6762 -splay_del(Item, Tree, NewTree):-splay_del192,6842 -splay_del(Item, Tree, NewTree):-splay_del192,6842 -splay_del(Item, Tree, NewTree):-splay_del192,6842 -splay_join(Left, Right, New):-splay_join195,6974 -splay_join(Left, Right, New):-splay_join195,6974 -splay_join(Left, Right, New):-splay_join195,6974 -splay_split(Item, Val, Tree, Left, Right):-splay_split197,7035 -splay_split(Item, Val, Tree, Left, Right):-splay_split197,7035 -splay_split(Item, Val, Tree, Left, Right):-splay_split197,7035 -bst(Op, Item, Val, Tree, NewTree):-bst213,7838 -bst(Op, Item, Val, Tree, NewTree):-bst213,7838 -bst(Op, Item, Val, Tree, NewTree):-bst213,7838 -bst(access(Null), _Item, _, _L, null, _R, _Tree):- !, Null = null.bst225,8345 -bst(access(Null), _Item, _, _L, null, _R, _Tree):- !, Null = null.bst225,8345 -bst(access(Null), _Item, _, _L, null, _R, _Tree):- !, Null = null.bst225,8345 -bst(access(true), Item, Val, Left-A, n(Item0, Val0, A, B), Right-B, n(Item, Val, Left, Right)) :- Item == Item0, !, Val = Val0.bst226,8412 -bst(access(true), Item, Val, Left-A, n(Item0, Val0, A, B), Right-B, n(Item, Val, Left, Right)) :- Item == Item0, !, Val = Val0.bst226,8412 -bst(access(true), Item, Val, Left-A, n(Item0, Val0, A, B), Right-B, n(Item, Val, Left, Right)) :- Item == Item0, !, Val = Val0.bst226,8412 -bst(insert, Item, Val, Left-A, T, Right-B, n(Item0, Val, Left, Right)) :-bst227,8540 -bst(insert, Item, Val, Left-A, T, Right-B, n(Item0, Val, Left, Right)) :-bst227,8540 -bst(insert, Item, Val, Left-A, T, Right-B, n(Item0, Val, Left, Right)) :-bst227,8540 -bst(access(Null), Item, _, Left-L, n(X, VX, null, B), Right-B, n(X, VX, Left, Right)) :-bst234,8976 -bst(access(Null), Item, _, Left-L, n(X, VX, null, B), Right-B, n(X, VX, Left, Right)) :-bst234,8976 -bst(access(Null), Item, _, Left-L, n(X, VX, null, B), Right-B, n(X, VX, Left, Right)) :-bst234,8976 -bst(Op, Item, Val, Left, n(X, VX, n(Item, Val, A1, A2), B), R-n(X, VX, NR,B), New):-bst236,9093 -bst(Op, Item, Val, Left, n(X, VX, n(Item, Val, A1, A2), B), R-n(X, VX, NR,B), New):-bst236,9093 -bst(Op, Item, Val, Left, n(X, VX, n(Item, Val, A1, A2), B), R-n(X, VX, NR,B), New):-bst236,9093 -bst(Op, Item, Val, Left, n(X, VX, n(Y, VY, Z, B), C), R-n(Y, VY, NR, n(X, VX, B, C)), New):-bst241,9307 -bst(Op, Item, Val, Left, n(X, VX, n(Y, VY, Z, B), C), R-n(Y, VY, NR, n(X, VX, B, C)), New):-bst241,9307 -bst(Op, Item, Val, Left, n(X, VX, n(Y, VY, Z, B), C), R-n(Y, VY, NR, n(X, VX, B, C)), New):-bst241,9307 -bst(Op, Item, Val, L-n(Y, VY, A, NL), n(X, _VX, n(Y, VY, A, Z), C), R-n(X, _NX, NR, C), New):-bst245,9478 -bst(Op, Item, Val, L-n(Y, VY, A, NL), n(X, _VX, n(Y, VY, A, Z), C), R-n(X, _NX, NR, C), New):-bst245,9478 -bst(Op, Item, Val, L-n(Y, VY, A, NL), n(X, _VX, n(Y, VY, A, Z), C), R-n(X, _NX, NR, C), New):-bst245,9478 -bst(access(Null), Item, _, Left-B, n(X, VX, B, null), Right-_R, n(X, VX, Left, Right)):-bst252,9734 -bst(access(Null), Item, _, Left-B, n(X, VX, B, null), Right-_R, n(X, VX, Left, Right)):-bst252,9734 -bst(access(Null), Item, _, Left-B, n(X, VX, B, null), Right-_R, n(X, VX, Left, Right)):-bst252,9734 -bst(Op, Item, Val, L-n(X, VX, B, NL), n(X, VX, B, n(Item, Val, A1, A2)), Right, New):-bst254,9871 -bst(Op, Item, Val, L-n(X, VX, B, NL), n(X, VX, B, n(Item, Val, A1, A2)), Right, New):-bst254,9871 -bst(Op, Item, Val, L-n(X, VX, B, NL), n(X, VX, B, n(Item, Val, A1, A2)), Right, New):-bst254,9871 -bst(Op, Item, Val, L-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, Z)), Right, New):-bst258,10044 -bst(Op, Item, Val, L-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, Z)), Right, New):-bst258,10044 -bst(Op, Item, Val, L-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, Z)), Right, New):-bst258,10044 -bst(Op, Item, Val, L-n(X, VX, A, NL), n(X, VX, A, n(Y, VY, Z, C)), R-n(Y, VY, NR, C), New):-bst262,10214 -bst(Op, Item, Val, L-n(X, VX, A, NL), n(X, VX, A, n(Y, VY, Z, C)), R-n(Y, VY, NR, C), New):-bst262,10214 -bst(Op, Item, Val, L-n(X, VX, A, NL), n(X, VX, A, n(Y, VY, Z, C)), R-n(Y, VY, NR, C), New):-bst262,10214 -join(Left-A, n(X, VX, A, var), Right, n(X, VX, Left, Right)):-!.join269,10589 -join(Left-A, n(X, VX, A, var), Right, n(X, VX, Left, Right)):-!.join269,10589 -join(Left-A, n(X, VX, A, var), Right, n(X, VX, Left, Right)):-!.join269,10589 -join(Left-n(X, VX, A, B), n(X, VX, A, n(Y, VY, B, var)), Right, n(Y, VY, Left, Right)):- !.join270,10654 -join(Left-n(X, VX, A, B), n(X, VX, A, n(Y, VY, B, var)), Right, n(Y, VY, Left, Right)):- !.join270,10654 -join(Left-n(X, VX, A, B), n(X, VX, A, n(Y, VY, B, var)), Right, n(Y, VY, Left, Right)):- !.join270,10654 -join(Left-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, n(Z, VZ, A1, A2))), Right, New):-join271,10746 -join(Left-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, n(Z, VZ, A1, A2))), Right, New):-join271,10746 -join(Left-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, n(Z, VZ, A1, A2))), Right, New):-join271,10746 -splay_init(_).splay_init275,10892 -splay_init(_).splay_init275,10892 - -library/stringutils.yap,986 -string([]).string21,355 -string([]).string21,355 -string([A|Cs]) :-string22,367 -string([A|Cs]) :-string22,367 -string([A|Cs]) :-string22,367 -upcase_string([], []).upcase_string28,502 -upcase_string([], []).upcase_string28,502 -upcase_string([C|Cs], [NC|NCs]) :-upcase_string29,525 -upcase_string([C|Cs], [NC|NCs]) :-upcase_string29,525 -upcase_string([C|Cs], [NC|NCs]) :-upcase_string29,525 -downcase_string([], []).downcase_string33,614 -downcase_string([], []).downcase_string33,614 -downcase_string([C|Cs], [NC|NCs]) :-downcase_string34,639 -downcase_string([C|Cs], [NC|NCs]) :-downcase_string34,639 -downcase_string([C|Cs], [NC|NCs]) :-downcase_string34,639 -string_length(S, Length) :-string_length38,732 -string_length(S, Length) :-string_length38,732 -string_length(S, Length) :-string_length38,732 -concat_strings(S1, S2, New) :-concat_strings41,781 -concat_strings(S1, S2, New) :-concat_strings41,781 -concat_strings(S1, S2, New) :-concat_strings41,781 - -library/system/crypto/md5.c,2394 -#undef BYTE_ORDER BYTE_ORDER58,2393 -# define BYTE_ORDER BYTE_ORDER60,2497 -# define BYTE_ORDER BYTE_ORDER62,2554 -#define T_MASK T_MASK65,2585 -#define T1 T166,2617 -#define T2 T267,2667 -#define T3 T368,2717 -#define T4 T469,2742 -#define T5 T570,2792 -#define T6 T671,2842 -#define T7 T772,2867 -#define T8 T873,2917 -#define T9 T974,2967 -#define T10 T1075,2992 -#define T11 T1176,3043 -#define T12 T1277,3094 -#define T13 T1378,3145 -#define T14 T1479,3171 -#define T15 T1580,3222 -#define T16 T1681,3273 -#define T17 T1782,3299 -#define T18 T1883,3350 -#define T19 T1984,3401 -#define T20 T2085,3427 -#define T21 T2186,3478 -#define T22 T2287,3529 -#define T23 T2388,3555 -#define T24 T2489,3606 -#define T25 T2590,3657 -#define T26 T2691,3683 -#define T27 T2792,3734 -#define T28 T2893,3785 -#define T29 T2994,3811 -#define T30 T3095,3862 -#define T31 T3196,3913 -#define T32 T3297,3939 -#define T33 T3398,3990 -#define T34 T3499,4041 -#define T35 T35100,4092 -#define T36 T36101,4118 -#define T37 T37102,4169 -#define T38 T38103,4220 -#define T39 T39104,4246 -#define T40 T40105,4297 -#define T41 T41106,4348 -#define T42 T42107,4374 -#define T43 T43108,4425 -#define T44 T44109,4476 -#define T45 T45110,4502 -#define T46 T46111,4553 -#define T47 T47112,4604 -#define T48 T48113,4630 -#define T49 T49114,4681 -#define T50 T50115,4732 -#define T51 T51116,4758 -#define T52 T52117,4809 -#define T53 T53118,4860 -#define T54 T54119,4886 -#define T55 T55120,4937 -#define T56 T56121,4988 -#define T57 T57122,5039 -#define T58 T58123,5065 -#define T59 T59124,5116 -#define T60 T60125,5167 -#define T61 T61126,5193 -#define T62 T62127,5244 -#define T63 T63128,5295 -#define T64 T64129,5321 -md5_process(md5_state_t *pms, const md5_byte_t *data /*[64]*/)md5_process133,5386 -#define ROTATE_LEFT(ROTATE_LEFT198,7258 -#define F(F203,7442 -#define SET(SET204,7490 -#undef SETSET224,8172 -#define G(G229,8309 -#define SET(SET230,8357 -#undef SETSET250,9040 -#define H(H255,9177 -#define SET(SET256,9214 -#undef SETSET276,9897 -#define I(I281,10034 -#define SET(SET282,10074 -#undef SETSET302,10757 -md5_init(md5_state_t *pms)md5_init314,11032 -md5_append(md5_state_t *pms, const md5_byte_t *data, unsigned int nbytes)md5_append324,11280 -md5_finish(md5_state_t *pms, md5_byte_t digest[16])md5_finish374,12578 - -library/system/crypto/md5.h,701 -# define md5_INCLUDEDmd5_INCLUDED51,2053 -typedef unsigned char md5_byte_t; /* 8-bit byte */md5_byte_t63,2598 -typedef unsigned int md5_word_t; /* 32-bit word */md5_word_t64,2649 -typedef struct md5_state_s {md5_state_s67,2746 - md5_word_t count[2]; /* message length in bits, lsw first */count68,2775 - md5_word_t count[2]; /* message length in bits, lsw first */md5_state_s::count68,2775 - md5_word_t abcd[4]; /* digest buffer */abcd69,2840 - md5_word_t abcd[4]; /* digest buffer */md5_state_s::abcd69,2840 - md5_byte_t buf[64]; /* accumulate block */buf70,2885 - md5_byte_t buf[64]; /* accumulate block */md5_state_s::buf70,2885 -} md5_state_t;md5_state_t71,2933 - -library/system/sys.c,1721 -#undef HAVE_ENVIRONHAVE_ENVIRON79,1706 -static YAP_Term WinError(void) {WinError91,1940 -static YAP_Bool sysmktime(void) {sysmktime102,2320 -static YAP_Bool datime(void) {datime164,4155 -#define BUF_SIZE BUF_SIZE204,5294 -static YAP_Bool list_directory(void) {list_directory207,5365 -static YAP_Bool p_unlink(void) {p_unlink276,7282 -static YAP_Bool p_rmdir(void) {p_rmdir290,7606 -static YAP_Bool rename_file(void) {rename_file303,7926 - static YAP_Bool read_link(void) {read_link316,8264 -static YAP_Bool dir_separator(void) {dir_separator336,8676 -static YAP_Bool file_property(void) {file_property340,8790 -static YAP_Bool p_mktemp(void) {p_mktemp417,11431 -static YAP_Bool p_tmpnam(void) {p_tmpnam452,12458 -static YAP_Bool p_tmpdir(void) {p_tmpdir474,13030 -static YAP_Bool p_environ(void) {p_environ505,13989 -static HANDLE get_handle(YAP_Term ti, DWORD fd) {get_handle533,14621 -static void close_handle(YAP_Term ti, HANDLE h) {close_handle553,15209 -static YAP_Bool execute_command(void) {execute_command562,15377 -static YAP_Bool do_system(void) {do_system733,20100 -static YAP_Bool do_shell(void) {do_shell749,20562 -static YAP_Bool plwait(void) {plwait805,22211 -static YAP_Bool p_sleep(void) {p_sleep847,23582 -static YAP_Bool host_name(void) {host_name916,25243 -static YAP_Bool host_id(void) {host_id935,25816 -static YAP_Bool pid(void) {pid943,26001 -static YAP_Bool win(void) {win951,26205 -static YAP_Bool p_kill(void) {p_kill959,26329 -static YAP_Bool md5(void) {md5995,27457 -static YAP_Bool error_message(void) {error_message1029,28242 -X_API void init_sys(void) {init_sys1037,28492 -int WINAPI win_sys(HANDLE hinst, DWORD reason, LPVOID reserved) {win_sys1074,29854 - -library/system/sys_config.h,0 - -library/system.yap,23212 -exec(ls,[std,pipe(S),null],P),repeat, get0(S,C), (C = -1, close(S) ! ; put(C)).exec192,4336 -exec(ls,[std,pipe(S),null],P),repeat, get0(S,C), (C = -1, close(S) ! ; put(C)).exec192,4336 -:- dynamic tmp_file_sequence_counter/1.dynamic422,10231 -:- dynamic tmp_file_sequence_counter/1.dynamic422,10231 -datime(X) :-datime426,10289 -datime(X) :-datime426,10289 -datime(X) :-datime426,10289 -mktime(V, A) :- var(V), !,mktime430,10370 -mktime(V, A) :- var(V), !,mktime430,10370 -mktime(V, A) :- var(V), !,mktime430,10370 -mktime(In,Out) :-mktime432,10445 -mktime(In,Out) :-mktime432,10445 -mktime(In,Out) :-mktime432,10445 -check_mktime_inp(V, Inp) :- var(V), !,check_mktime_inp438,10626 -check_mktime_inp(V, Inp) :- var(V), !,check_mktime_inp438,10626 -check_mktime_inp(V, Inp) :- var(V), !,check_mktime_inp438,10626 -check_mktime_inp(datime(Y,Mo,D,H,Mi,S), Inp) :- !,check_mktime_inp440,10705 -check_mktime_inp(datime(Y,Mo,D,H,Mi,S), Inp) :- !,check_mktime_inp440,10705 -check_mktime_inp(datime(Y,Mo,D,H,Mi,S), Inp) :- !,check_mktime_inp440,10705 -check_mktime_inp(T, Inp) :-check_mktime_inp447,10878 -check_mktime_inp(T, Inp) :-check_mktime_inp447,10878 -check_mktime_inp(T, Inp) :-check_mktime_inp447,10878 -check_int(I, _) :- integer(I), !.check_int450,10950 -check_int(I, _) :- integer(I), !.check_int450,10950 -check_int(I, _) :- integer(I), !.check_int450,10950 -check_int(I, Inp) :- var(I),check_int451,10984 -check_int(I, Inp) :- var(I),check_int451,10984 -check_int(I, Inp) :- var(I),check_int451,10984 -check_int(I, Inp) :-check_int453,11053 -check_int(I, Inp) :-check_int453,11053 -check_int(I, Inp) :-check_int453,11053 -delete_file(IFile) :-delete_file459,11154 -delete_file(IFile) :-delete_file459,11154 -delete_file(IFile) :-delete_file459,11154 -delete_file(IFile, Opts) :-delete_file463,11241 -delete_file(IFile, Opts) :-delete_file463,11241 -delete_file(IFile, Opts) :-delete_file463,11241 -process_delete_file_opts(V, _, _, _, T) :- var(V), !,process_delete_file_opts468,11421 -process_delete_file_opts(V, _, _, _, T) :- var(V), !,process_delete_file_opts468,11421 -process_delete_file_opts(V, _, _, _, T) :- var(V), !,process_delete_file_opts468,11421 -process_delete_file_opts([], off, off, off, _) :- !.process_delete_file_opts470,11513 -process_delete_file_opts([], off, off, off, _) :- !.process_delete_file_opts470,11513 -process_delete_file_opts([], off, off, off, _) :- !.process_delete_file_opts470,11513 -process_delete_file_opts([V|_], _, _, _, T) :- var(V), !,process_delete_file_opts471,11566 -process_delete_file_opts([V|_], _, _, _, T) :- var(V), !,process_delete_file_opts471,11566 -process_delete_file_opts([V|_], _, _, _, T) :- var(V), !,process_delete_file_opts471,11566 -process_delete_file_opts([directory|Opts], on, Recurse, Ignore, T) :- !,process_delete_file_opts473,11662 -process_delete_file_opts([directory|Opts], on, Recurse, Ignore, T) :- !,process_delete_file_opts473,11662 -process_delete_file_opts([directory|Opts], on, Recurse, Ignore, T) :- !,process_delete_file_opts473,11662 -process_delete_file_opts([recursive|Opts], Dir, on, Ignore, T) :- !,process_delete_file_opts475,11791 -process_delete_file_opts([recursive|Opts], Dir, on, Ignore, T) :- !,process_delete_file_opts475,11791 -process_delete_file_opts([recursive|Opts], Dir, on, Ignore, T) :- !,process_delete_file_opts475,11791 -process_delete_file_opts([ignore|Opts], Dir, Recurse, on, T) :- !,process_delete_file_opts477,11912 -process_delete_file_opts([ignore|Opts], Dir, Recurse, on, T) :- !,process_delete_file_opts477,11912 -process_delete_file_opts([ignore|Opts], Dir, Recurse, on, T) :- !,process_delete_file_opts477,11912 -process_delete_file_opts(Opts, _, _, _, T) :-process_delete_file_opts479,12032 -process_delete_file_opts(Opts, _, _, _, T) :-process_delete_file_opts479,12032 -process_delete_file_opts(Opts, _, _, _, T) :-process_delete_file_opts479,12032 -delete_file(IFile, Dir, Recurse, Ignore) :-delete_file482,12135 -delete_file(IFile, Dir, Recurse, Ignore) :-delete_file482,12135 -delete_file(IFile, Dir, Recurse, Ignore) :-delete_file482,12135 -delete_file(N, File, _Dir, _Recurse, Ignore) :- number(N), !, % error.delete_file487,12317 -delete_file(N, File, _Dir, _Recurse, Ignore) :- number(N), !, % error.delete_file487,12317 -delete_file(N, File, _Dir, _Recurse, Ignore) :- number(N), !, % error.delete_file487,12317 -delete_file(directory, File, Dir, Recurse, Ignore) :-delete_file489,12443 -delete_file(directory, File, Dir, Recurse, Ignore) :-delete_file489,12443 -delete_file(directory, File, Dir, Recurse, Ignore) :-delete_file489,12443 -delete_file(_, File, _Dir, _Recurse, Ignore) :-delete_file491,12547 -delete_file(_, File, _Dir, _Recurse, Ignore) :-delete_file491,12547 -delete_file(_, File, _Dir, _Recurse, Ignore) :-delete_file491,12547 -unlink_file(IFile, Ignore) :-unlink_file494,12624 -unlink_file(IFile, Ignore) :-unlink_file494,12624 -unlink_file(IFile, Ignore) :-unlink_file494,12624 -delete_directory(on, File, _Recurse, Ignore) :-delete_directory499,12758 -delete_directory(on, File, _Recurse, Ignore) :-delete_directory499,12758 -delete_directory(on, File, _Recurse, Ignore) :-delete_directory499,12758 -delete_directory(off, File, Recurse, Ignore) :-delete_directory501,12835 -delete_directory(off, File, Recurse, Ignore) :-delete_directory501,12835 -delete_directory(off, File, Recurse, Ignore) :-delete_directory501,12835 -rm_directory(File, Ignore) :-rm_directory504,12926 -rm_directory(File, Ignore) :-rm_directory504,12926 -rm_directory(File, Ignore) :-rm_directory504,12926 -delete_directory(on, File, Ignore) :-delete_directory508,13037 -delete_directory(on, File, Ignore) :-delete_directory508,13037 -delete_directory(on, File, Ignore) :-delete_directory508,13037 -delete_dirfiles([], _, _).delete_dirfiles515,13233 -delete_dirfiles([], _, _).delete_dirfiles515,13233 -delete_dirfiles(['.'|Fs], File, Ignore) :- !,delete_dirfiles516,13260 -delete_dirfiles(['.'|Fs], File, Ignore) :- !,delete_dirfiles516,13260 -delete_dirfiles(['.'|Fs], File, Ignore) :- !,delete_dirfiles516,13260 -delete_dirfiles(['..'|Fs], File, Ignore) :- !,delete_dirfiles518,13342 -delete_dirfiles(['..'|Fs], File, Ignore) :- !,delete_dirfiles518,13342 -delete_dirfiles(['..'|Fs], File, Ignore) :- !,delete_dirfiles518,13342 -delete_dirfiles([F|Fs], File, Ignore) :-delete_dirfiles520,13425 -delete_dirfiles([F|Fs], File, Ignore) :-delete_dirfiles520,13425 -delete_dirfiles([F|Fs], File, Ignore) :-delete_dirfiles520,13425 -directory_files(File, FileList) :-directory_files525,13569 -directory_files(File, FileList) :-directory_files525,13569 -directory_files(File, FileList) :-directory_files525,13569 -directory_files(File, FileList, Ignore) :-directory_files528,13646 -directory_files(File, FileList, Ignore) :-directory_files528,13646 -directory_files(File, FileList, Ignore) :-directory_files528,13646 -handle_system_internal(Error, _Ignore, _G) :- var(Error), !.handle_system_internal532,13815 -handle_system_internal(Error, _Ignore, _G) :- var(Error), !.handle_system_internal532,13815 -handle_system_internal(Error, _Ignore, _G) :- var(Error), !.handle_system_internal532,13815 -handle_system_internal(Error, off, G) :- atom(Error), !,handle_system_internal533,13876 -handle_system_internal(Error, off, G) :- atom(Error), !,handle_system_internal533,13876 -handle_system_internal(Error, off, G) :- atom(Error), !,handle_system_internal533,13876 -handle_system_internal(Error, off, G) :-handle_system_internal535,13974 -handle_system_internal(Error, off, G) :-handle_system_internal535,13974 -handle_system_internal(Error, off, G) :-handle_system_internal535,13974 -handle_system_internal(Error, _Id, _Ignore, _G) :- var(Error), !.handle_system_internal539,14091 -handle_system_internal(Error, _Id, _Ignore, _G) :- var(Error), !.handle_system_internal539,14091 -handle_system_internal(Error, _Id, _Ignore, _G) :- var(Error), !.handle_system_internal539,14091 -handle_system_internal(Error, _SIG, off, G) :- integer(Error), !,handle_system_internal540,14157 -handle_system_internal(Error, _SIG, off, G) :- integer(Error), !,handle_system_internal540,14157 -handle_system_internal(Error, _SIG, off, G) :- integer(Error), !,handle_system_internal540,14157 -handle_system_internal(signal, SIG, off, G) :- !,handle_system_internal543,14298 -handle_system_internal(signal, SIG, off, G) :- !,handle_system_internal543,14298 -handle_system_internal(signal, SIG, off, G) :- !,handle_system_internal543,14298 -handle_system_internal(stopped, SIG, off, G) :-handle_system_internal545,14408 -handle_system_internal(stopped, SIG, off, G) :-handle_system_internal545,14408 -handle_system_internal(stopped, SIG, off, G) :-handle_system_internal545,14408 -file_property(IFile, type(Type)) :-file_property548,14518 -file_property(IFile, type(Type)) :-file_property548,14518 -file_property(IFile, type(Type)) :-file_property548,14518 -file_property(IFile, size(Size)) :-file_property551,14651 -file_property(IFile, size(Size)) :-file_property551,14651 -file_property(IFile, size(Size)) :-file_property551,14651 -file_property(IFile, mod_time(Date)) :-file_property554,14784 -file_property(IFile, mod_time(Date)) :-file_property554,14784 -file_property(IFile, mod_time(Date)) :-file_property554,14784 -file_property(IFile, mode(Permissions)) :-file_property557,14921 -file_property(IFile, mode(Permissions)) :-file_property557,14921 -file_property(IFile, mode(Permissions)) :-file_property557,14921 -file_property(IFile, linkto(LinkName)) :-file_property560,15061 -file_property(IFile, linkto(LinkName)) :-file_property560,15061 -file_property(IFile, linkto(LinkName)) :-file_property560,15061 -file_property(File, Type, Size, Date, Permissions, LinkName) :-file_property565,15218 -file_property(File, Type, Size, Date, Permissions, LinkName) :-file_property565,15218 -file_property(File, Type, Size, Date, Permissions, LinkName) :-file_property565,15218 -environ(Na,Val) :- var(Na), !,environ574,15445 -environ(Na,Val) :- var(Na), !,environ574,15445 -environ(Na,Val) :- var(Na), !,environ574,15445 -environ(Na,Val) :- atom(Na), !,environ579,15602 -environ(Na,Val) :- atom(Na), !,environ579,15602 -environ(Na,Val) :- atom(Na), !,environ579,15602 -environ(Na,Val) :-environ581,15659 -environ(Na,Val) :-environ581,15659 -environ(Na,Val) :-environ581,15659 -bound_environ(Na, Val) :- var(Val), !,bound_environ584,15731 -bound_environ(Na, Val) :- var(Val), !,bound_environ584,15731 -bound_environ(Na, Val) :- var(Val), !,bound_environ584,15731 -bound_environ(Na, Val) :- atom(Val), !,bound_environ586,15787 -bound_environ(Na, Val) :- atom(Val), !,bound_environ586,15787 -bound_environ(Na, Val) :- atom(Val), !,bound_environ586,15787 -bound_environ(Na, Val) :-bound_environ588,15844 -bound_environ(Na, Val) :-bound_environ588,15844 -bound_environ(Na, Val) :-bound_environ588,15844 -environ_enum(X,X).environ_enum591,15924 -environ_enum(X,X).environ_enum591,15924 -environ_enum(X,X1) :-environ_enum592,15943 -environ_enum(X,X1) :-environ_enum592,15943 -environ_enum(X,X1) :-environ_enum592,15943 -environ_split([61|SVal], [], SVal) :- !.environ_split596,16000 -environ_split([61|SVal], [], SVal) :- !.environ_split596,16000 -environ_split([61|SVal], [], SVal) :- !.environ_split596,16000 -environ_split([C|S],[C|SNa],SVal) :-environ_split597,16041 -environ_split([C|S],[C|SNa],SVal) :-environ_split597,16041 -environ_split([C|S],[C|SNa],SVal) :-environ_split597,16041 -exec(Command, [StdIn, StdOut, StdErr], PID) :-exec603,16131 -exec(Command, [StdIn, StdOut, StdErr], PID) :-exec603,16131 -exec(Command, [StdIn, StdOut, StdErr], PID) :-exec603,16131 -process_inp_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_inp_stream_for_exec613,16587 -process_inp_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_inp_stream_for_exec613,16587 -process_inp_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_inp_stream_for_exec613,16587 -process_inp_stream_for_exec(null, null, _, L, L) :- !.process_inp_stream_for_exec616,16714 -process_inp_stream_for_exec(null, null, _, L, L) :- !.process_inp_stream_for_exec616,16714 -process_inp_stream_for_exec(null, null, _, L, L) :- !.process_inp_stream_for_exec616,16714 -process_inp_stream_for_exec(std, 0, _, L, L) :- !.process_inp_stream_for_exec617,16769 -process_inp_stream_for_exec(std, 0, _, L, L) :- !.process_inp_stream_for_exec617,16769 -process_inp_stream_for_exec(std, 0, _, L, L) :- !.process_inp_stream_for_exec617,16769 -process_inp_stream_for_exec(pipe(ForWriting), ForReading, _, L, [ForReading|L]) :- var(ForWriting), !,process_inp_stream_for_exec618,16820 -process_inp_stream_for_exec(pipe(ForWriting), ForReading, _, L, [ForReading|L]) :- var(ForWriting), !,process_inp_stream_for_exec618,16820 -process_inp_stream_for_exec(pipe(ForWriting), ForReading, _, L, [ForReading|L]) :- var(ForWriting), !,process_inp_stream_for_exec618,16820 -process_inp_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_inp_stream_for_exec620,16967 -process_inp_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_inp_stream_for_exec620,16967 -process_inp_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_inp_stream_for_exec620,16967 -process_inp_stream_for_exec(Stream, Stream, _, L, L) :-process_inp_stream_for_exec622,17060 -process_inp_stream_for_exec(Stream, Stream, _, L, L) :-process_inp_stream_for_exec622,17060 -process_inp_stream_for_exec(Stream, Stream, _, L, L) :-process_inp_stream_for_exec622,17060 -process_out_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_out_stream_for_exec626,17149 -process_out_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_out_stream_for_exec626,17149 -process_out_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_out_stream_for_exec626,17149 -process_out_stream_for_exec(null, null, _, L, L) :- !.process_out_stream_for_exec629,17276 -process_out_stream_for_exec(null, null, _, L, L) :- !.process_out_stream_for_exec629,17276 -process_out_stream_for_exec(null, null, _, L, L) :- !.process_out_stream_for_exec629,17276 -process_out_stream_for_exec(std, 1, _, L, L) :- !.process_out_stream_for_exec630,17331 -process_out_stream_for_exec(std, 1, _, L, L) :- !.process_out_stream_for_exec630,17331 -process_out_stream_for_exec(std, 1, _, L, L) :- !.process_out_stream_for_exec630,17331 -process_out_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_out_stream_for_exec631,17382 -process_out_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_out_stream_for_exec631,17382 -process_out_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_out_stream_for_exec631,17382 -process_out_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_out_stream_for_exec633,17529 -process_out_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_out_stream_for_exec633,17529 -process_out_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_out_stream_for_exec633,17529 -process_out_stream_for_exec(Stream, Stream, _, L, L) :-process_out_stream_for_exec635,17623 -process_out_stream_for_exec(Stream, Stream, _, L, L) :-process_out_stream_for_exec635,17623 -process_out_stream_for_exec(Stream, Stream, _, L, L) :-process_out_stream_for_exec635,17623 -process_err_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_err_stream_for_exec638,17714 -process_err_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_err_stream_for_exec638,17714 -process_err_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_err_stream_for_exec638,17714 -process_err_stream_for_exec(null, null, _, L, L) :- !.process_err_stream_for_exec641,17841 -process_err_stream_for_exec(null, null, _, L, L) :- !.process_err_stream_for_exec641,17841 -process_err_stream_for_exec(null, null, _, L, L) :- !.process_err_stream_for_exec641,17841 -process_err_stream_for_exec(std, 2, _, L, L) :- !.process_err_stream_for_exec642,17896 -process_err_stream_for_exec(std, 2, _, L, L) :- !.process_err_stream_for_exec642,17896 -process_err_stream_for_exec(std, 2, _, L, L) :- !.process_err_stream_for_exec642,17896 -process_err_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_err_stream_for_exec643,17947 -process_err_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_err_stream_for_exec643,17947 -process_err_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_err_stream_for_exec643,17947 -process_err_stream_for_exec(pipe(Stream), Stream, _, L, L) :- !,process_err_stream_for_exec645,18094 -process_err_stream_for_exec(pipe(Stream), Stream, _, L, L) :- !,process_err_stream_for_exec645,18094 -process_err_stream_for_exec(pipe(Stream), Stream, _, L, L) :- !,process_err_stream_for_exec645,18094 -process_err_stream_for_exec(Stream, Stream, _, L, L) :-process_err_stream_for_exec647,18193 -process_err_stream_for_exec(Stream, Stream, _, L, L) :-process_err_stream_for_exec647,18193 -process_err_stream_for_exec(Stream, Stream, _, L, L) :-process_err_stream_for_exec647,18193 -close_temp_streams([]).close_temp_streams650,18284 -close_temp_streams([]).close_temp_streams650,18284 -close_temp_streams([S|Ss]) :-close_temp_streams651,18308 -close_temp_streams([S|Ss]) :-close_temp_streams651,18308 -close_temp_streams([S|Ss]) :-close_temp_streams651,18308 -popen(Command, Mode, Stream) :-popen655,18375 -popen(Command, Mode, Stream) :-popen655,18375 -popen(Command, Mode, Stream) :-popen655,18375 -check_command_with_default_shell(Com, ComF, G) :-check_command_with_default_shell658,18444 -check_command_with_default_shell(Com, ComF, G) :-check_command_with_default_shell658,18444 -check_command_with_default_shell(Com, ComF, G) :-check_command_with_default_shell658,18444 -os_command_postprocess(Com, ComF) :- win, !,os_command_postprocess665,18620 -os_command_postprocess(Com, ComF) :- win, !,os_command_postprocess665,18620 -os_command_postprocess(Com, ComF) :- win, !,os_command_postprocess665,18620 -os_command_postprocess(Com, Com).os_command_postprocess672,18819 -os_command_postprocess(Com, Com).os_command_postprocess672,18819 -check_command(Com, G) :- var(Com), !,check_command674,18854 -check_command(Com, G) :- var(Com), !,check_command674,18854 -check_command(Com, G) :- var(Com), !,check_command674,18854 -check_command(Com, _) :- atom(Com), !.check_command676,18930 -check_command(Com, _) :- atom(Com), !.check_command676,18930 -check_command(Com, _) :- atom(Com), !.check_command676,18930 -check_command(Com, G) :-check_command677,18969 -check_command(Com, G) :-check_command677,18969 -check_command(Com, G) :-check_command677,18969 -check_mode(Mode, _, G) :- var(Mode), !,check_mode680,19034 -check_mode(Mode, _, G) :- var(Mode), !,check_mode680,19034 -check_mode(Mode, _, G) :- var(Mode), !,check_mode680,19034 -check_mode(read, 0, _) :- !.check_mode682,19112 -check_mode(read, 0, _) :- !.check_mode682,19112 -check_mode(read, 0, _) :- !.check_mode682,19112 -check_mode(write,1, _) :- !.check_mode683,19141 -check_mode(write,1, _) :- !.check_mode683,19141 -check_mode(write,1, _) :- !.check_mode683,19141 -check_mode(Mode, G) :-check_mode684,19170 -check_mode(Mode, G) :-check_mode684,19170 -check_mode(Mode, G) :-check_mode684,19170 -shell :-shell687,19239 -shell(Command) :-shell695,19470 -shell(Command) :-shell695,19470 -shell(Command) :-shell695,19470 -shell(Command, Status) :-shell703,19661 -shell(Command, Status) :-shell703,19661 -shell(Command, Status) :-shell703,19661 -protect_command([], [0'"]). % "protect_command710,19855 -protect_command([], [0'"]). % "protect_command710,19855 -protect_command([H|L], [H|NL]) :-protect_command711,19887 -protect_command([H|L], [H|NL]) :-protect_command711,19887 -protect_command([H|L], [H|NL]) :-protect_command711,19887 -get_shell0(Shell) :-get_shell0714,19947 -get_shell0(Shell) :-get_shell0714,19947 -get_shell0(Shell) :-get_shell0714,19947 -get_shell0(Shell) :-get_shell0716,19996 -get_shell0(Shell) :-get_shell0716,19996 -get_shell0(Shell) :-get_shell0716,19996 -get_shell0('/bin/sh').get_shell0719,20053 -get_shell0('/bin/sh').get_shell0719,20053 -get_shell(Shell, '-c') :-get_shell721,20077 -get_shell(Shell, '-c') :-get_shell721,20077 -get_shell(Shell, '-c') :-get_shell721,20077 -get_shell(Shell, '/c') :-get_shell723,20131 -get_shell(Shell, '/c') :-get_shell723,20131 -get_shell(Shell, '/c') :-get_shell723,20131 -get_shell('/bin/sh','-c').get_shell726,20193 -get_shell('/bin/sh','-c').get_shell726,20193 -system :-system728,20221 -default_shell(Shell) :- win, !,default_shell733,20339 -default_shell(Shell) :- win, !,default_shell733,20339 -default_shell(Shell) :- win, !,default_shell733,20339 -default_shell('/bin/sh').default_shell735,20398 -default_shell('/bin/sh').default_shell735,20398 -system(Command, Status) :-system738,20426 -system(Command, Status) :-system738,20426 -system(Command, Status) :-system738,20426 -wait(PID,STATUS) :- var(PID), !,wait745,20601 -wait(PID,STATUS) :- var(PID), !,wait745,20601 -wait(PID,STATUS) :- var(PID), !,wait745,20601 -wait(PID,STATUS) :- integer(PID), !,wait747,20688 -wait(PID,STATUS) :- integer(PID), !,wait747,20688 -wait(PID,STATUS) :- integer(PID), !,wait747,20688 -wait(PID,STATUS) :-wait750,20820 -wait(PID,STATUS) :-wait750,20820 -wait(PID,STATUS) :-wait750,20820 -host_name(X) :-host_name756,20915 -host_name(X) :-host_name756,20915 -host_name(X) :-host_name756,20915 -host_id(X) :-host_id760,21005 -host_id(X) :-host_id760,21005 -host_id(X) :-host_id760,21005 -pid(X) :-pid766,21131 -pid(X) :-pid766,21131 -pid(X) :-pid766,21131 -kill(X,Y) :-kill770,21203 -kill(X,Y) :-kill770,21203 -kill(X,Y) :-kill770,21203 -kill(X,Y) :- (var(X) ; var(Y)), !,kill774,21312 -kill(X,Y) :- (var(X) ; var(Y)), !,kill774,21312 -kill(X,Y) :- (var(X) ; var(Y)), !,kill774,21312 -kill(X,Y) :- integer(X), !,kill776,21393 -kill(X,Y) :- integer(X), !,kill776,21393 -kill(X,Y) :- integer(X), !,kill776,21393 -kill(X,Y) :-kill778,21469 -kill(X,Y) :-kill778,21469 -kill(X,Y) :-kill778,21469 -mktemp(X,Y) :- var(X), !,mktemp781,21531 -mktemp(X,Y) :- var(X), !,mktemp781,21531 -mktemp(X,Y) :- var(X), !,mktemp781,21531 -mktemp(X,Y) :-mktemp783,21605 -mktemp(X,Y) :-mktemp783,21605 -mktemp(X,Y) :-mktemp783,21605 -mktemp(X,Y) :-mktemp787,21705 -mktemp(X,Y) :-mktemp787,21705 -mktemp(X,Y) :-mktemp787,21705 -tmpnam(X) :-tmpnam790,21768 -tmpnam(X) :-tmpnam790,21768 -tmpnam(X) :-tmpnam790,21768 -tmpdir(TmpDir):-tmpdir796,21957 -tmpdir(TmpDir):-tmpdir796,21957 -tmpdir(TmpDir):-tmpdir796,21957 -path_separator('\\'):-path_separator806,22156 -path_separator('\\'):-path_separator806,22156 -path_separator('\\'):-path_separator806,22156 -path_separator('/').path_separator808,22189 -path_separator('/').path_separator808,22189 -read_link(P,D,F) :-read_link810,22211 -read_link(P,D,F) :-read_link810,22211 -read_link(P,D,F) :-read_link810,22211 - -library/systest.yap,0 - -library/terms.yap,240 -term_hash(T,H) :-term_hash146,3195 -term_hash(T,H) :-term_hash146,3195 -term_hash(T,H) :-term_hash146,3195 -subsumes_chk(X,Y) :-subsumes_chk152,3298 -subsumes_chk(X,Y) :-subsumes_chk152,3298 -subsumes_chk(X,Y) :-subsumes_chk152,3298 - -library/timeout.yap,147 -time_out(Goal, Time, Result) :-time_out83,2101 -time_out(Goal, Time, Result) :-time_out83,2101 -time_out(Goal, Time, Result) :-time_out83,2101 - -library/trees.yap,1364 -get_label(N, Tree, Label) :-get_label131,2762 -get_label(N, Tree, Label) :-get_label131,2762 -get_label(N, Tree, Label) :-get_label131,2762 -list_to_tree(List, Tree) :-list_to_tree153,3245 -list_to_tree(List, Tree) :-list_to_tree153,3245 -list_to_tree(List, Tree) :-list_to_tree153,3245 -map_tree(Pred, t(Old,OLeft,ORight), t(New,NLeft,NRight)) :-map_tree178,4069 -map_tree(Pred, t(Old,OLeft,ORight), t(New,NLeft,NRight)) :-map_tree178,4069 -map_tree(Pred, t(Old,OLeft,ORight), t(New,NLeft,NRight)) :-map_tree178,4069 -map_tree(_, t, t).map_tree182,4222 -map_tree(_, t, t).map_tree182,4222 -put_label(N, Old, Label, New) :-put_label190,4577 -put_label(N, Old, Label, New) :-put_label190,4577 -put_label(N, Old, Label, New) :-put_label190,4577 -tree_size(Tree, Size) :-tree_size212,5192 -tree_size(Tree, Size) :-tree_size212,5192 -tree_size(Tree, Size) :-tree_size212,5192 -tree_to_list(Tree, List) :-tree_to_list232,5779 -tree_to_list(Tree, List) :-tree_to_list232,5779 -tree_to_list(Tree, List) :-tree_to_list232,5779 -list(0, []).list243,6032 -list(0, []).list243,6032 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 - -library/tries/base_dbtries.c,1463 -static TrData CURRENT_DEPTH_BREADTH_DATA;CURRENT_DEPTH_BREADTH_DATA224,10476 -YAP_Term trie_depth_breadth(TrEntry trie, TrEntry db_trie, YAP_Int opt_level, YAP_Int start_counter, YAP_Int *end_counter) {trie_depth_breadth232,10627 -YAP_Int trie_get_db_opt_level_count(YAP_Int opt_level) {trie_get_db_opt_level_count273,12546 -TrData trie_get_depth_breadth_reduction_current_data(void) {trie_get_depth_breadth_reduction_current_data279,12671 -void trie_replace_nested_trie(TrEntry trie, YAP_Int nested_trie_id, YAP_Term new_term) {trie_replace_nested_trie285,12774 -YAP_Int trie_get_db_opt_min_prefix(void) {trie_get_db_opt_min_prefix295,13107 -void trie_set_db_opt_min_prefix(YAP_Int min_prefix) {trie_set_db_opt_min_prefix301,13199 -void set_depth_breadth_reduction_current_data(TrData data) {set_depth_breadth_reduction_current_data313,13429 -void simplification_reduction(TrEntry trie) {simplification_reduction320,13548 -TrNode depth_reduction(TrEntry trie, TrNode depth_node, YAP_Int opt_level) {depth_reduction345,14539 -TrNode breadth_reduction(TrEntry trie, TrNode breadth_node, YAP_Int opt_level) {breadth_reduction376,15928 -void move_last_data_after(TrData moveto_data) {move_last_data_after407,17332 -void move_after(TrData data_source, TrData data_dest) {move_after426,17983 -void trie_data_order_correction(void) {trie_data_order_correction454,19006 -int compare_label_nodes(TrData data1, TrData data2) {compare_label_nodes481,19926 - -library/tries/base_dbtries.h,0 - -library/tries/base_itries.c,3052 -static TrEngine ITRIE_ENGINE;ITRIE_ENGINE26,492 -static TrEntry FIRST_ITRIE, CURRENT_ITRIE;FIRST_ITRIE27,522 -static TrEntry FIRST_ITRIE, CURRENT_ITRIE;CURRENT_ITRIE27,522 -void itrie_init_module(void) {itrie_init_module36,674 -void itrie_data_save(TrNode node, FILE *file) {itrie_data_save44,784 -void itrie_data_load(TrNode node, YAP_Int depth, FILE *file) {itrie_data_load54,1040 -void itrie_data_print(TrNode node) {itrie_data_print66,1365 -void itrie_data_copy(TrNode node_dest, TrNode node_source) {itrie_data_copy76,1633 -void itrie_data_destruct(TrNode node) {itrie_data_destruct87,2026 -void itrie_data_add(TrNode node_dest, TrNode node_source) {itrie_data_add106,2528 -void itrie_data_subtract(TrNode node_dest, TrNode node_source) {itrie_data_subtract120,3005 -TrEntry itrie_open(void) {itrie_open134,3487 -void itrie_close(TrEntry itrie) {itrie_close148,3724 -void itrie_close_all(void) {itrie_close_all161,4100 -void itrie_set_mode(TrEntry itrie, YAP_Int mode) {itrie_set_mode175,4348 -YAP_Int itrie_get_mode(TrEntry itrie) {itrie_get_mode182,4444 -void itrie_set_timestamp(TrEntry itrie, YAP_Int timestamp) {itrie_set_timestamp188,4519 -YAP_Int itrie_get_timestamp(TrEntry itrie) {itrie_get_timestamp195,4635 -void itrie_put_entry(TrEntry itrie, YAP_Term entry) {itrie_put_entry201,4720 -void itrie_update_entry(TrEntry itrie, YAP_Term entry) {itrie_update_entry217,5158 -TrData itrie_check_entry(TrEntry itrie, YAP_Term entry) {itrie_check_entry230,5473 -YAP_Term itrie_get_entry(TrData data) {itrie_get_entry240,5690 -void itrie_get_data(TrData data, YAP_Int *pos, YAP_Int *neg, YAP_Int *timestamp) {itrie_get_data246,5784 -TrData itrie_traverse_init(TrEntry itrie) {itrie_traverse_init255,5975 -TrData itrie_traverse_cont(TrEntry itrie) {itrie_traverse_cont273,6393 -void itrie_remove_entry(TrData data) {itrie_remove_entry298,7070 -void itrie_remove_subtree(TrData data) {itrie_remove_subtree305,7205 -void itrie_add(TrEntry itrie_dest, TrEntry itrie_source) {itrie_add312,7344 -void itrie_subtract(TrEntry itrie_dest, TrEntry itrie_source) {itrie_subtract319,7506 -void itrie_join(TrEntry itrie_dest, TrEntry itrie_source) {itrie_join326,7678 -void itrie_intersect(TrEntry itrie_dest, TrEntry itrie_source) {itrie_intersect334,7904 -YAP_Int itrie_count_join(TrEntry itrie1, TrEntry itrie2) {itrie_count_join341,8114 -YAP_Int itrie_count_intersect(TrEntry itrie1, TrEntry itrie2) {itrie_count_intersect347,8253 -void itrie_save(TrEntry itrie, FILE *file) {itrie_save353,8402 -void itrie_save_as_trie(TrEntry itrie, FILE *file) {itrie_save_as_trie360,8525 -TrEntry itrie_load(FILE *file) {itrie_load367,8644 -void itrie_stats(YAP_Int *memory, YAP_Int *tries, YAP_Int *entries, YAP_Int *nodes) {itrie_stats386,9025 -void itrie_max_stats(YAP_Int *memory, YAP_Int *tries, YAP_Int *entries, YAP_Int *nodes) {itrie_max_stats393,9190 -void itrie_usage(TrEntry itrie, YAP_Int *entries, YAP_Int *nodes, YAP_Int *virtual_nodes) {itrie_usage400,9363 -void itrie_print(TrEntry itrie) {itrie_print407,9541 - -library/tries/base_itries.h,3778 -#define ITRIES_MODE_NONE ITRIES_MODE_NONE14,278 -#define ITRIES_MODE_INC_POS ITRIES_MODE_INC_POS15,310 -#define ITRIES_MODE_DEC_POS ITRIES_MODE_DEC_POS16,342 -#define ITRIES_MODE_INC_NEG ITRIES_MODE_INC_NEG17,374 -#define ITRIES_MODE_DEC_NEG ITRIES_MODE_DEC_NEG18,406 -#define BASE_TR_DATA_BUCKETS BASE_TR_DATA_BUCKETS19,438 -typedef struct itrie_entry {itrie_entry27,576 - struct trie_node *top_trie_node;top_trie_node28,605 - struct trie_node *top_trie_node;itrie_entry::top_trie_node28,605 - struct itrie_data **trie_data_buckets;trie_data_buckets29,640 - struct itrie_data **trie_data_buckets;itrie_entry::trie_data_buckets29,640 - struct itrie_data *traverse_trie_data;traverse_trie_data30,681 - struct itrie_data *traverse_trie_data;itrie_entry::traverse_trie_data30,681 - struct itrie_entry *next;next31,722 - struct itrie_entry *next;itrie_entry::next31,722 - struct itrie_entry *previous;previous32,750 - struct itrie_entry *previous;itrie_entry::previous32,750 - YAP_Int mode;mode33,782 - YAP_Int mode;itrie_entry::mode33,782 - YAP_Int timestamp;timestamp34,798 - YAP_Int timestamp;itrie_entry::timestamp34,798 - YAP_Int number_of_buckets;number_of_buckets35,819 - YAP_Int number_of_buckets;itrie_entry::number_of_buckets35,819 - YAP_Int traverse_bucket;traverse_bucket36,848 - YAP_Int traverse_bucket;itrie_entry::traverse_bucket36,848 -} *TrEntry;TrEntry37,875 -#define TrEntry_trie(TrEntry_trie39,888 -#define TrEntry_buckets(TrEntry_buckets40,944 -#define TrEntry_bucket(TrEntry_bucket41,1004 -#define TrEntry_traverse_data(TrEntry_traverse_data42,1068 -#define TrEntry_next(TrEntry_next43,1129 -#define TrEntry_previous(TrEntry_previous44,1176 -#define TrEntry_mode(TrEntry_mode45,1227 -#define TrEntry_timestamp(TrEntry_timestamp46,1274 -#define TrEntry_num_buckets(TrEntry_num_buckets47,1326 -#define TrEntry_traverse_bucket(TrEntry_traverse_bucket48,1386 -typedef struct itrie_data {itrie_data50,1445 - struct itrie_entry *itrie;itrie51,1473 - struct itrie_entry *itrie;itrie_data::itrie51,1473 - struct trie_node *leaf_trie_node;leaf_trie_node52,1502 - struct trie_node *leaf_trie_node;itrie_data::leaf_trie_node52,1502 - struct itrie_data *next;next53,1538 - struct itrie_data *next;itrie_data::next53,1538 - struct itrie_data *previous;previous54,1565 - struct itrie_data *previous;itrie_data::previous54,1565 - YAP_Int pos;pos55,1596 - YAP_Int pos;itrie_data::pos55,1596 - YAP_Int neg;neg56,1611 - YAP_Int neg;itrie_data::neg56,1611 - YAP_Int timestamp;timestamp57,1626 - YAP_Int timestamp;itrie_data::timestamp57,1626 - YAP_Int depth;depth58,1647 - YAP_Int depth;itrie_data::depth58,1647 -} *TrData;TrData59,1664 -#define TrData_itrie(TrData_itrie61,1676 -#define TrData_leaf(TrData_leaf62,1717 -#define TrData_next(TrData_next63,1767 -#define TrData_previous(TrData_previous64,1807 -#define TrData_pos(TrData_pos65,1851 -#define TrData_neg(TrData_neg66,1890 -#define TrData_timestamp(TrData_timestamp67,1929 -#define TrData_depth(TrData_depth68,1974 -#define TYPE_TR_ENTRY TYPE_TR_ENTRY70,2016 -#define TYPE_TR_DATA TYPE_TR_DATA71,2065 -#define SIZEOF_TR_ENTRY SIZEOF_TR_ENTRY72,2113 -#define SIZEOF_TR_DATA SIZEOF_TR_DATA73,2165 -#define SIZEOF_TR_DATA_BUCKET SIZEOF_TR_DATA_BUCKET74,2216 -#define AS_TR_ENTRY_NEXT(AS_TR_ENTRY_NEXT76,2270 -#define AS_TR_DATA_NEXT(AS_TR_DATA_NEXT77,2419 -#define new_itrie_entry(new_itrie_entry85,2643 -#define new_itrie_buckets(new_itrie_buckets96,3476 -#define new_itrie_data(new_itrie_data104,4067 -#define update_itrie_data(update_itrie_data136,6636 -#define free_itrie_entry(free_itrie_entry151,7563 -#define free_itrie_buckets(free_itrie_buckets156,7905 -#define free_itrie_data(free_itrie_data160,8164 - -library/tries/base_tries.c,2904 -static TrEngine TRIE_ENGINE;TRIE_ENGINE32,679 -static TrEntry FIRST_TRIE, CURRENT_TRIE;FIRST_TRIE33,708 -static TrEntry FIRST_TRIE, CURRENT_TRIE;CURRENT_TRIE33,708 -static YAP_Int CURRENT_TRAVERSE_MODE;CURRENT_TRAVERSE_MODE35,750 -void trie_init_module(void) {trie_init_module42,895 -void trie_data_load(TrNode node, YAP_Int depth, FILE *file) {trie_data_load51,1051 -void trie_data_copy(TrNode node_dest, TrNode node_source) {trie_data_copy61,1229 -void trie_data_destruct(TrNode node) {trie_data_destruct71,1430 -TrEntry trie_open(void) {trie_open107,2636 -void trie_close(TrEntry trie) {trie_close121,2862 -void trie_close_all(void) {trie_close_all134,3225 -void trie_set_mode(YAP_Int mode) {trie_set_mode148,3462 -YAP_Int trie_get_mode(void) {trie_get_mode155,3540 -TrData trie_put_entry(TrEntry trie, YAP_Term entry) {trie_put_entry161,3606 -TrData trie_check_entry(TrEntry trie, YAP_Term entry) {trie_check_entry175,3935 -YAP_Term trie_get_entry(TrData data) {trie_get_entry185,4149 -TrData trie_get_first_entry(TrEntry trie) {trie_get_first_entry191,4242 -TrData trie_get_last_entry(TrEntry trie) {trie_get_last_entry200,4359 -TrData trie_traverse_init(TrEntry trie, TrData init_data) {trie_traverse_init211,4549 -TrData trie_traverse_cont(TrEntry trie) {trie_traverse_cont228,4896 -void trie_remove_entry(TrData data) {trie_remove_entry258,5582 -void trie_remove_subtree(TrData data) {trie_remove_subtree265,5714 -void trie_join(TrEntry trie_dest, TrEntry trie_source) {trie_join272,5850 -void trie_intersect(TrEntry trie_dest, TrEntry trie_source) {trie_intersect280,6056 -YAP_Int trie_count_join(TrEntry trie1, TrEntry trie2) {trie_count_join287,6248 -YAP_Int trie_count_intersect(TrEntry trie1, TrEntry trie2) {trie_count_intersect293,6382 -void trie_save(TrEntry trie, FILE *file) {trie_save299,6526 -TrEntry trie_load(FILE *file) {trie_load306,6634 -void trie_stats(YAP_Int *memory, YAP_Int *tries, YAP_Int *entries, YAP_Int *nodes) {trie_stats325,7000 -void trie_max_stats(YAP_Int *memory, YAP_Int *tries, YAP_Int *entries, YAP_Int *nodes) {trie_max_stats332,7163 -void trie_usage(TrEntry trie, YAP_Int *entries, YAP_Int *nodes, YAP_Int *virtual_nodes) {trie_usage338,7333 -void trie_print(TrEntry trie) {trie_print345,7508 -void trie_data_construct(TrNode node) {trie_data_construct352,7600 -void trie_set_traverse_mode(YAP_Int mode) {trie_set_traverse_mode361,7755 -YAP_Int trie_get_traverse_mode(void) {trie_get_traverse_mode368,7846 -TrData trie_traverse_first(TrEntry trie) {trie_traverse_first374,7922 -TrData trie_traverse_next(TrData cur) {trie_traverse_next385,8134 -void trie_disable_hash_table(void) {trie_disable_hash_table401,8466 -void trie_enable_hash_table(void) {trie_enable_hash_table408,8547 -TrData get_data_from_trie_node(TrNode node) {get_data_from_trie_node419,8732 -YAP_Term trie_to_list(TrEntry trie) {trie_to_list427,8902 - -library/tries/base_tries.h,2357 -#define TRAVERSE_MODE_FORWARD TRAVERSE_MODE_FORWARD14,313 -#define TRAVERSE_MODE_BACKWARD TRAVERSE_MODE_BACKWARD15,347 -typedef struct trie_entry {trie_entry22,486 - struct trie_node *top_trie_node;top_trie_node23,514 - struct trie_node *top_trie_node;trie_entry::top_trie_node23,514 - struct trie_data *first_trie_data;first_trie_data24,550 - struct trie_data *first_trie_data;trie_entry::first_trie_data24,550 - struct trie_data *last_trie_data;last_trie_data25,588 - struct trie_data *last_trie_data;trie_entry::last_trie_data25,588 - struct trie_data *traverse_trie_data;traverse_trie_data26,625 - struct trie_data *traverse_trie_data;trie_entry::traverse_trie_data26,625 - struct trie_entry *next;next27,666 - struct trie_entry *next;trie_entry::next27,666 - struct trie_entry *previous;previous28,693 - struct trie_entry *previous;trie_entry::previous28,693 -} *TrEntry;TrEntry29,724 -#define TrEntry_trie(TrEntry_trie31,737 -#define TrEntry_first_data(TrEntry_first_data32,792 -#define TrEntry_last_data(TrEntry_last_data33,849 -#define TrEntry_traverse_data(TrEntry_traverse_data34,905 -#define TrEntry_next(TrEntry_next35,965 -#define TrEntry_previous(TrEntry_previous36,1011 -typedef struct trie_data {trie_data38,1062 - struct trie_entry *trie;trie39,1089 - struct trie_entry *trie;trie_data::trie39,1089 - struct trie_node *leaf_trie_node;leaf_trie_node40,1116 - struct trie_node *leaf_trie_node;trie_data::leaf_trie_node40,1116 - struct trie_data *next;next41,1152 - struct trie_data *next;trie_data::next41,1152 - struct trie_data *previous;previous42,1178 - struct trie_data *previous;trie_data::previous42,1178 -} *TrData;TrData43,1208 -#define TrData_trie(TrData_trie45,1220 -#define TrData_leaf(TrData_leaf46,1260 -#define TrData_next(TrData_next47,1310 -#define TrData_previous(TrData_previous48,1350 -#define TYPE_TR_ENTRY TYPE_TR_ENTRY50,1395 -#define TYPE_TR_DATA TYPE_TR_DATA51,1443 -#define SIZEOF_TR_ENTRY SIZEOF_TR_ENTRY52,1490 -#define SIZEOF_TR_DATA SIZEOF_TR_DATA53,1542 -#define AS_TR_ENTRY_NEXT(AS_TR_ENTRY_NEXT55,1594 -#define AS_TR_DATA_NEXT(AS_TR_DATA_NEXT56,1715 -#define new_trie_entry(new_trie_entry64,1938 -#define new_trie_data(new_trie_data74,2760 -#define free_trie_entry(free_trie_entry94,4205 -#define free_trie_data(free_trie_data98,4482 - -library/tries/core_dbtries.c,3804 -static YAP_Int LABEL_COUNTER;LABEL_COUNTER236,11214 -static YAP_Term TRIE_DEPTH_BREADTH_RETURN_TERM;TRIE_DEPTH_BREADTH_RETURN_TERM237,11244 -static YAP_Int TRIE_DEPTH_BREADTH_MIN_PREFIX = 2;TRIE_DEPTH_BREADTH_MIN_PREFIX238,11292 -static YAP_Int TRIE_DEPTH_BREADTH_OPT_COUNT[3];TRIE_DEPTH_BREADTH_OPT_COUNT239,11342 -YAP_Int core_get_trie_db_opt_min_prefix(void) {core_get_trie_db_opt_min_prefix247,11493 -void core_set_trie_db_opt_min_prefix(YAP_Int min_prefix) {core_set_trie_db_opt_min_prefix253,11586 -void core_depth_breadth_trie_replace_nested_trie(TrNode node, YAP_Int nested_trie_id, YAP_Term new_term, void (*construct_function)(TrNode), void (*destruct_function)(TrNode)) {core_depth_breadth_trie_replace_nested_trie260,11706 -void traverse_and_replace_nested_trie(TrNode node, YAP_Int nested_trie_id, YAP_Term new_term, void (*construct_function)(TrNode), void (*destruct_function)(TrNode)) {traverse_and_replace_nested_trie267,12012 -TrNode replace_nested_trie(TrNode node, TrNode child, YAP_Term new_term, void (*construct_function)(TrNode), void (*destruct_function)(TrNode)) {replace_nested_trie344,15341 -void check_attach_childs(TrNode parent, TrNode search_child, TrNode existing_child, void (*construct_function)(TrNode), void (*destruct_function)(TrNode)) {check_attach_childs421,18295 -YAP_Term core_get_trie_db_return_term(void) {core_get_trie_db_return_term475,20721 -void core_set_trie_db_return_term(YAP_Term return_value){core_set_trie_db_return_term481,20814 -void core_set_label_counter(YAP_Int value) {core_set_label_counter488,20936 -YAP_Int core_get_label_counter(void) {core_get_label_counter494,21073 -void core_initialize_depth_breadth_trie(TrNode node, TrNode *depth_node, TrNode *breadth_node) {core_initialize_depth_breadth_trie499,21140 -void core_finalize_depth_breadth_trie(TrNode depth_node, TrNode breadth_node) {core_finalize_depth_breadth_trie516,21756 -TrNode get_simplification_sibling(TrNode node) {get_simplification_sibling529,22322 -TrNode check_parent_first(TrNode node) {check_parent_first540,22719 -TrNode TrNode_myparent(TrNode node) {TrNode_myparent550,23095 -TrNode core_simplification_reduction(TrEngine engine, TrNode node, void (*destruct_function)(TrNode)) {core_simplification_reduction557,23280 -TrNode core_depth_reduction(TrEngine engine, TrNode node, TrNode depth_node, YAP_Int opt_level, void (*construct_function)(TrNode), void (*destruct_function)(TrNode), void (*copy_function)(TrNode, TrNode), void (*correct_order_function)(void)) {core_depth_reduction573,23897 -TrNode core_breadth_reduction(TrEngine engine, TrNode node, TrNode breadth_node, YAP_Int opt_level, void (*construct_function)(TrNode), void (*destruct_function)(TrNode), void (*copy_function)(TrNode, TrNode), void (*correct_order_function)(void)) {core_breadth_reduction642,26401 -YAP_Term get_return_node_term(TrNode node) {get_return_node_term799,33003 -int traverse_get_counter(TrNode node) {traverse_get_counter818,33554 -YAP_Term generate_label(YAP_Int Index) {generate_label844,34303 -YAP_Term update_depth_breadth_trie(TrEngine engine, TrNode root, YAP_Int opt_level, void (*construct_function)(TrNode), void (*destruct_function)(TrNode), void (*copy_function)(TrNode, TrNode), void (*correct_order_function)(void)) {update_depth_breadth_trie852,34451 -YAP_Int core_db_trie_get_optimization_level_count(YAP_Int opt_level) {core_db_trie_get_optimization_level_count995,39437 -void displaynode(TrNode node) {displaynode1004,39666 -void displayentry(TrNode node) {displayentry1025,40485 -void displayterm(YAP_Term term) {displayterm1034,40674 -void displaytrie(TrNode node) {displaytrie1053,41242 -void display_trie_inner(TrNode node) {display_trie_inner1061,41423 -void trie_display_node(TrNode node) {trie_display_node1070,41712 - -library/tries/core_dbtries.h,92 -#define NESTED_TRIE_TERM NESTED_TRIE_TERM210,9832 -#define PairEndTag PairEndTag211,9865 - -library/tries/core_tries.c,7296 -static TrEngine CURRENT_TRIE_ENGINE;CURRENT_TRIE_ENGINE51,1805 -static YAP_Int USAGE_ENTRIES, USAGE_NODES, USAGE_VIRTUAL_NODES;USAGE_ENTRIES53,1843 -static YAP_Int USAGE_ENTRIES, USAGE_NODES, USAGE_VIRTUAL_NODES;USAGE_NODES53,1843 -static YAP_Int USAGE_ENTRIES, USAGE_NODES, USAGE_VIRTUAL_NODES;USAGE_VIRTUAL_NODES53,1843 -static YAP_Int CURRENT_AUXILIARY_TERM_STACK_SIZE, CURRENT_TRIE_MODE, CURRENT_LOAD_VERSION, CURRENT_DEPTH, CURRENT_INDEX;CURRENT_AUXILIARY_TERM_STACK_SIZE54,1907 -static YAP_Int CURRENT_AUXILIARY_TERM_STACK_SIZE, CURRENT_TRIE_MODE, CURRENT_LOAD_VERSION, CURRENT_DEPTH, CURRENT_INDEX;CURRENT_TRIE_MODE54,1907 -static YAP_Int CURRENT_AUXILIARY_TERM_STACK_SIZE, CURRENT_TRIE_MODE, CURRENT_LOAD_VERSION, CURRENT_DEPTH, CURRENT_INDEX;CURRENT_LOAD_VERSION54,1907 -static YAP_Int CURRENT_AUXILIARY_TERM_STACK_SIZE, CURRENT_TRIE_MODE, CURRENT_LOAD_VERSION, CURRENT_DEPTH, CURRENT_INDEX;CURRENT_DEPTH54,1907 -static YAP_Int CURRENT_AUXILIARY_TERM_STACK_SIZE, CURRENT_TRIE_MODE, CURRENT_LOAD_VERSION, CURRENT_DEPTH, CURRENT_INDEX;CURRENT_INDEX54,1907 -static YAP_Term *AUXILIARY_TERM_STACK;AUXILIARY_TERM_STACK55,2028 -YAP_Term *stack_args, *stack_args_base, *stack_vars, *stack_vars_base;stack_args56,2067 -YAP_Term *stack_args, *stack_args_base, *stack_vars, *stack_vars_base;stack_args_base56,2067 -YAP_Term *stack_args, *stack_args_base, *stack_vars, *stack_vars_base;stack_vars56,2067 -YAP_Term *stack_args, *stack_args_base, *stack_vars, *stack_vars_base;stack_vars_base56,2067 -static YAP_Functor FunctorComma;FunctorComma57,2138 -static void (*DATA_SAVE_FUNCTION)(TrNode, FILE *);DATA_SAVE_FUNCTION58,2171 -static void (*DATA_LOAD_FUNCTION)(TrNode, YAP_Int, FILE *);DATA_LOAD_FUNCTION59,2222 -static void (*DATA_PRINT_FUNCTION)(TrNode);DATA_PRINT_FUNCTION60,2282 -static void (*DATA_ADD_FUNCTION)(TrNode, TrNode);DATA_ADD_FUNCTION61,2326 -static void (*DATA_COPY_FUNCTION)(TrNode, TrNode);DATA_COPY_FUNCTION62,2376 -static void (*DATA_DESTRUCT_FUNCTION)(TrNode);DATA_DESTRUCT_FUNCTION63,2427 -static YAP_Int TRIE_DISABLE_HASH_TABLE = 0;TRIE_DISABLE_HASH_TABLE65,2475 -TrNode trie_node_check_insert(TrNode parent, YAP_Term t) {trie_node_check_insert73,2628 -TrNode trie_node_insert(TrNode parent, YAP_Term t, TrHash hash) {trie_node_insert161,5790 -TrNode trie_node_check(TrNode parent, YAP_Term t) {trie_node_check185,6431 -YAP_Term trie_to_list_create_simple(const char *atom_name, TrNode node) {trie_to_list_create_simple208,6890 -YAP_Term trie_to_list_create_simple_end(const char *atom_name, TrNode node) {trie_to_list_create_simple_end217,7133 -YAP_Term trie_to_list_create_two(const char *atom_name, TrNode node, YAP_Term operand) {trie_to_list_create_two231,7495 -TrEngine core_trie_init_module(void) {core_trie_init_module251,8038 -TrNode core_trie_open(TrEngine engine) {core_trie_open268,8489 -void core_trie_close(TrEngine engine, TrNode node, void (*destruct_function)(TrNode)) {core_trie_close282,8852 -void core_trie_close_all(TrEngine engine, void (*destruct_function)(TrNode)) {core_trie_close_all299,9376 -void core_trie_set_mode(YAP_Int mode) {core_trie_set_mode307,9573 -YAP_Int core_trie_get_mode(void) {core_trie_get_mode314,9656 -TrNode core_trie_put_entry(TrEngine engine, TrNode node, YAP_Term entry, YAP_Int *depth) {core_trie_put_entry320,9724 -TrNode core_trie_check_entry(TrNode node, YAP_Term entry) {core_trie_check_entry342,10394 -YAP_Term core_trie_get_entry(TrNode node) {core_trie_get_entry358,10869 -void core_trie_remove_entry(TrEngine engine, TrNode node, void (*destruct_function)(TrNode)) {core_trie_remove_entry367,11135 -void core_trie_remove_subtree(TrEngine engine, TrNode node, void (*destruct_function)(TrNode)) {core_trie_remove_subtree379,11454 -void core_trie_add(TrNode node_dest, TrNode node_source, void (*add_function)(TrNode, TrNode)) {core_trie_add392,11762 -void core_trie_join(TrEngine engine, TrNode node_dest, TrNode node_source, void (*add_function)(TrNode, TrNode), void (*copy_function)(TrNode, TrNode)) {core_trie_join401,12016 -void core_trie_intersect(TrEngine engine, TrNode node_dest, TrNode node_source, void (*add_function)(TrNode, TrNode), void (*destruct_function)(TrNode)) {core_trie_intersect415,12534 -YAP_Int core_trie_count_join(TrNode node1, TrNode node2) {core_trie_count_join432,13050 -YAP_Int core_trie_count_intersect(TrNode node1, TrNode node2) {core_trie_count_intersect448,13504 -void core_trie_save(TrNode node, FILE *file, void (*save_function)(TrNode, FILE *)) {core_trie_save459,13730 -TrNode core_trie_load(TrEngine engine, FILE *file, void (*load_function)(TrNode, YAP_Int, FILE *)) {core_trie_load473,14064 -void core_trie_stats(TrEngine engine, YAP_Int *memory, YAP_Int *tries, YAP_Int *entries, YAP_Int *nodes) {core_trie_stats528,15819 -void core_trie_max_stats(TrEngine engine, YAP_Int *memory, YAP_Int *tries, YAP_Int *entries, YAP_Int *nodes) {core_trie_max_stats538,16087 -void core_trie_usage(TrNode node, YAP_Int *entries, YAP_Int *nodes, YAP_Int *virtual_nodes) {core_trie_usage548,16375 -void core_trie_print(TrNode node, void (*print_function)(TrNode)) {core_trie_print562,16720 -void core_disable_hash_table(void) {core_disable_hash_table577,17070 -void core_enable_hash_table(void) {core_enable_hash_table583,17143 -YAP_Term core_trie_to_list(TrNode node) {core_trie_to_list589,17215 -TrNode put_entry(TrNode node, YAP_Term entry) {put_entry604,17509 -TrNode check_entry(TrNode node, YAP_Term entry) {check_entry689,20743 -YAP_Term get_entry(TrNode node, YAP_Term *stack_mark, TrNode *cur_node) {get_entry797,24535 -void remove_entry(TrNode node) {remove_entry913,28556 -void remove_child_nodes(TrNode node) {remove_child_nodes958,29911 -TrNode copy_child_nodes(TrNode parent_dest, TrNode child_source) {copy_child_nodes987,30672 -void traverse_and_add(TrNode parent_dest, TrNode parent_source) {traverse_and_add1028,32207 -void traverse_and_join(TrNode parent_dest, TrNode parent_source) {traverse_and_join1077,33907 -void traverse_and_intersect(TrNode parent_dest, TrNode parent_source) {traverse_and_intersect1144,36508 -YAP_Int traverse_and_count_common_entries(TrNode parent1, TrNode parent2) {traverse_and_count_common_entries1211,38872 -YAP_Int traverse_and_count_entries(TrNode node) {traverse_and_count_entries1259,40241 -void traverse_and_get_usage(TrNode node, YAP_Int depth) {traverse_and_get_usage1288,40915 -void traverse_and_save(TrNode node, FILE *file, int float_block) {traverse_and_save1319,41624 -void traverse_and_load(TrNode parent, FILE *file) {traverse_and_load1391,43869 -void traverse_and_print(TrNode node, int *arity, char *str, int str_index, int mode) {traverse_and_print1460,46059 -YAP_Term trie_to_list(TrNode node) {trie_to_list1644,52054 -#define CONSUME_NODE_LIST CONSUME_NODE_LIST1647,52148 -#undef CONSUME_NODE_LISTCONSUME_NODE_LIST1670,52873 -YAP_Term trie_to_list_node(TrNode node) {trie_to_list_node1678,52975 -#define PUSH_NEW_FLOAT_TERM(PUSH_NEW_FLOAT_TERM1722,54686 -YAP_Term trie_to_list_floats_tag_low_32(YAP_Term result, TrNode node, volatile YAP_Term *p, volatile double *f) {trie_to_list_floats_tag_low_321730,54990 -YAP_Term trie_to_list_floats(TrNode node) {trie_to_list_floats1760,55724 -#undef PUSH_NEW_FLOAT_TERMPUSH_NEW_FLOAT_TERM1798,56816 - -library/tries/core_tries.h,6786 -#define TAG_LOW_BITS_32 TAG_LOW_BITS_3216,386 -#define SIZE_FLOAT_AS_TERM SIZE_FLOAT_AS_TERM17,450 -#define TAG_64BITS TAG_64BITS19,501 -#define SIZE_FLOAT_AS_TERM SIZE_FLOAT_AS_TERM20,563 -#define ApplTag ApplTag32,781 -#define ApplTag ApplTag34,846 -#define PairInitTag PairInitTag36,910 -#define PairEndEmptyTag PairEndEmptyTag37,950 -#define PairEndTermTag PairEndTermTag38,990 -#define CommaInitTag CommaInitTag39,1030 -#define CommaEndTag CommaEndTag40,1070 -#define FloatInitTag FloatInitTag41,1110 -#define FloatEndTag FloatEndTag42,1150 -#define TRIE_MODE_STANDARD TRIE_MODE_STANDARD44,1191 -#define TRIE_MODE_REVERSE TRIE_MODE_REVERSE45,1222 -#define TRIE_MODE_MINIMAL TRIE_MODE_MINIMAL46,1253 -#define TRIE_MODE_REVMIN TRIE_MODE_REVMIN47,1284 -#define TRIE_PRINT_NORMAL TRIE_PRINT_NORMAL49,1357 -#define TRIE_PRINT_FLOAT TRIE_PRINT_FLOAT50,1388 -#define TRIE_PRINT_FLOAT2 TRIE_PRINT_FLOAT251,1419 -#define TRIE_PRINT_FLOAT_END TRIE_PRINT_FLOAT_END52,1450 -#define BASE_AUXILIARY_TERM_STACK_SIZE BASE_AUXILIARY_TERM_STACK_SIZE54,1482 -typedef struct trie_engine { trie_engine62,1634 - struct trie_node *first_trie;first_trie63,1664 - struct trie_node *first_trie;trie_engine::first_trie63,1664 - YAP_Int memory_in_use;memory_in_use65,1711 - YAP_Int memory_in_use;trie_engine::memory_in_use65,1711 - YAP_Int tries_in_use;tries_in_use66,1736 - YAP_Int tries_in_use;trie_engine::tries_in_use66,1736 - YAP_Int entries_in_use;entries_in_use67,1760 - YAP_Int entries_in_use;trie_engine::entries_in_use67,1760 - YAP_Int nodes_in_use;nodes_in_use68,1786 - YAP_Int nodes_in_use;trie_engine::nodes_in_use68,1786 - YAP_Int memory_max_used;memory_max_used70,1827 - YAP_Int memory_max_used;trie_engine::memory_max_used70,1827 - YAP_Int tries_max_used;tries_max_used71,1854 - YAP_Int tries_max_used;trie_engine::tries_max_used71,1854 - YAP_Int entries_max_used;entries_max_used72,1880 - YAP_Int entries_max_used;trie_engine::entries_max_used72,1880 - YAP_Int nodes_max_used;nodes_max_used73,1908 - YAP_Int nodes_max_used;trie_engine::nodes_max_used73,1908 -} *TrEngine;TrEngine74,1934 -#define TrEngine_trie(TrEngine_trie76,1948 -#define TrEngine_memory(TrEngine_memory77,1998 -#define TrEngine_tries(TrEngine_tries78,2051 -#define TrEngine_entries(TrEngine_entries79,2103 -#define TrEngine_nodes(TrEngine_nodes80,2157 -#define TrEngine_memory_max(TrEngine_memory_max81,2209 -#define TrEngine_tries_max(TrEngine_tries_max82,2264 -#define TrEngine_entries_max(TrEngine_entries_max83,2318 -#define TrEngine_nodes_max(TrEngine_nodes_max84,2374 -typedef struct trie_node {trie_node86,2429 - struct trie_node *parent;parent87,2456 - struct trie_node *parent;trie_node::parent87,2456 - struct trie_node *child;child88,2484 - struct trie_node *child;trie_node::child88,2484 - struct trie_node *next;next89,2511 - struct trie_node *next;trie_node::next89,2511 - struct trie_node *previous;previous90,2537 - struct trie_node *previous;trie_node::previous90,2537 - YAP_Term entry;entry91,2567 - YAP_Term entry;trie_node::entry91,2567 -} *TrNode;TrNode92,2585 -#define TrNode_parent(TrNode_parent94,2597 -#define TrNode_child(TrNode_child95,2638 -#define TrNode_next(TrNode_next96,2678 -#define TrNode_previous(TrNode_previous97,2717 -#define TrNode_entry(TrNode_entry98,2760 -typedef struct trie_hash {trie_hash100,2801 - struct trie_node *parent; /* for compatibility with the trie_node data structure */parent101,2828 - struct trie_node *parent; /* for compatibility with the trie_node data structure */trie_hash::parent101,2828 - struct trie_node **buckets;buckets102,2915 - struct trie_node **buckets;trie_hash::buckets102,2915 - int number_of_buckets;number_of_buckets103,2945 - int number_of_buckets;trie_hash::number_of_buckets103,2945 - int number_of_nodes;number_of_nodes104,2970 - int number_of_nodes;trie_hash::number_of_nodes104,2970 -} *TrHash;TrHash105,2993 -#define TrHash_mark(TrHash_mark107,3005 -#define TrHash_buckets(TrHash_buckets108,3049 -#define TrHash_bucket(TrHash_bucket109,3094 -#define TrHash_num_buckets(TrHash_num_buckets110,3143 -#define TrHash_seed(TrHash_seed111,3198 -#define TrHash_num_nodes(TrHash_num_nodes112,3257 -#define TYPE_TR_ENGINE TYPE_TR_ENGINE114,3311 -#define TYPE_TR_NODE TYPE_TR_NODE115,3356 -#define TYPE_TR_HASH TYPE_TR_HASH116,3399 -#define SIZEOF_TR_ENGINE SIZEOF_TR_ENGINE117,3442 -#define SIZEOF_TR_NODE SIZEOF_TR_NODE118,3491 -#define SIZEOF_TR_HASH SIZEOF_TR_HASH119,3538 -#define SIZEOF_TR_BUCKET SIZEOF_TR_BUCKET120,3585 -#define AS_TR_NODE_NEXT(AS_TR_NODE_NEXT122,3635 -#define TAG_ADDR(TAG_ADDR130,3831 -#define UNTAG_ADDR(UNTAG_ADDR131,3906 -#define PUT_DATA_IN_LEAF_TRIE_NODE(PUT_DATA_IN_LEAF_TRIE_NODE132,3984 -#define GET_DATA_FROM_LEAF_TRIE_NODE(GET_DATA_FROM_LEAF_TRIE_NODE133,4081 -#define MARK_AS_LEAF_TRIE_NODE(MARK_AS_LEAF_TRIE_NODE134,4165 -#define IS_LEAF_TRIE_NODE(IS_LEAF_TRIE_NODE135,4274 -#define IsTrieVar(IsTrieVar137,4367 -#define MkTrieVar(MkTrieVar138,4475 -#define TrieVarIndex(TrieVarIndex139,4533 -#define BASE_HASH_BUCKETS BASE_HASH_BUCKETS141,4591 -#define MAX_NODES_PER_TRIE_LEVEL MAX_NODES_PER_TRIE_LEVEL142,4628 -#define MAX_NODES_PER_BUCKET MAX_NODES_PER_BUCKET143,4664 -#define HASH_TERM(HASH_TERM144,4728 -#define IS_HASH_NODE(IS_HASH_NODE145,4786 -#define BASE_SAVE_MARK BASE_SAVE_MARK147,4848 -#define HASH_SAVE_MARK HASH_SAVE_MARK148,4981 -#define ATOM_SAVE_MARK ATOM_SAVE_MARK149,5053 -#define FUNCTOR_SAVE_MARK FUNCTOR_SAVE_MARK150,5129 -#define FLOAT_SAVE_MARK FLOAT_SAVE_MARK151,5205 -#define STACK_NOT_EMPTY(STACK_NOT_EMPTY153,5282 -#define POP_UP(POP_UP154,5345 -#define POP_DOWN(POP_DOWN155,5397 -#define PUSH_UP(PUSH_UP156,5449 -#define PUSH_DOWN(PUSH_DOWN165,6046 -#define new_struct(new_struct177,6627 -#define new_trie_engine(new_trie_engine179,6771 -#define new_trie_node(new_trie_node191,7716 -#define new_trie_hash(new_trie_hash201,8491 -#define new_hash_buckets(new_hash_buckets209,9096 -#define expand_auxiliary_term_stack(expand_auxiliary_term_stack220,9704 -#define free_struct(free_struct232,10371 -#define free_trie_node(free_trie_node234,10501 -#define free_trie_hash(free_trie_hash239,10851 -#define free_hash_buckets(free_hash_buckets243,11116 -#define INCREMENT_MEMORY(INCREMENT_MEMORY250,11384 -#define INCREMENT_TRIES(INCREMENT_TRIES255,11710 -#define INCREMENT_ENTRIES(INCREMENT_ENTRIES260,12036 -#define INCREMENT_NODES(INCREMENT_NODES265,12362 -#define DECREMENT_MEMORY(DECREMENT_MEMORY270,12688 -#define DECREMENT_TRIES(DECREMENT_TRIES272,12810 -#define DECREMENT_ENTRIES(DECREMENT_ENTRIES274,12925 -#define DECREMENT_NODES(DECREMENT_NODES276,13042 -#define IS_FUNCTOR_NODE(IS_FUNCTOR_NODE280,13159 - -library/tries/itries.c,6769 -void init_itries(void) {init_itries63,1797 -#define arg_itrie arg_itrie104,3745 -static YAP_Bool p_itrie_open(void) {p_itrie_open105,3772 -#undef arg_itriearg_itrie116,4006 -#define arg_itrie arg_itrie120,4051 -static YAP_Bool p_itrie_close(void) {p_itrie_close121,4078 -#undef arg_itriearg_itrie130,4275 -static YAP_Bool p_itrie_close_all(void) {p_itrie_close_all134,4318 -#define arg_itrie arg_itrie141,4431 -#define arg_mode arg_mode142,4458 -static YAP_Bool p_itrie_mode(void) {p_itrie_mode143,4485 -#undef arg_itriearg_itrie187,5876 -#undef arg_modearg_mode188,5893 -#define arg_itrie arg_itrie192,5947 -#define arg_time arg_time193,5974 -static YAP_Bool p_itrie_timestamp(void) {p_itrie_timestamp194,6001 -#undef arg_itriearg_itrie216,6501 -#undef arg_timearg_time217,6518 -#define arg_itrie arg_itrie221,6573 -#define arg_entry arg_entry222,6600 -static YAP_Bool p_itrie_put_entry(void) {p_itrie_put_entry223,6627 -#undef arg_itriearg_itrie232,6841 -#undef arg_entryarg_entry233,6858 -#define arg_itrie arg_itrie237,6917 -#define arg_entry arg_entry238,6944 -static YAP_Bool p_itrie_update_entry(void) {p_itrie_update_entry239,6971 -#undef arg_itriearg_itrie248,7194 -#undef arg_entryarg_entry249,7211 -#define arg_itrie arg_itrie253,7274 -#define arg_entry arg_entry254,7301 -#define arg_ref arg_ref255,7328 -static YAP_Bool p_itrie_check_entry(void) {p_itrie_check_entry256,7355 -#undef arg_itriearg_itrie268,7668 -#undef arg_entryarg_entry269,7685 -#undef arg_refarg_ref270,7702 -#define arg_ref arg_ref274,7754 -#define arg_entry arg_entry275,7781 -static YAP_Bool p_itrie_get_entry(void) {p_itrie_get_entry276,7808 -#undef arg_refarg_ref287,8056 -#undef arg_entryarg_entry288,8071 -#define arg_ref arg_ref292,8123 -#define arg_data arg_data293,8149 -static YAP_Bool p_itrie_get_data(void) {p_itrie_get_data294,8175 -#undef arg_refarg_ref321,8995 -#undef arg_dataarg_data322,9010 -#define arg_itrie arg_itrie326,9062 -#define arg_ref arg_ref327,9089 -static YAP_Bool p_itrie_traverse_init(void) {p_itrie_traverse_init328,9116 -#undef arg_itriearg_itrie342,9451 -#undef arg_refarg_ref343,9468 -#define arg_itrie arg_itrie347,9519 -#define arg_ref arg_ref348,9546 -static YAP_Bool p_itrie_traverse_cont(void) {p_itrie_traverse_cont349,9573 -#undef arg_itriearg_itrie359,9837 -#undef arg_refarg_ref360,9854 -#define arg_ref arg_ref364,9902 -static YAP_Bool p_itrie_remove_entry(void) {p_itrie_remove_entry365,9929 -#undef arg_refarg_ref374,10135 -#define arg_ref arg_ref378,10185 -static YAP_Bool p_itrie_remove_subtree(void) {p_itrie_remove_subtree379,10212 -#undef arg_refarg_ref388,10424 -#define arg_itrie_dest arg_itrie_dest392,10482 -#define arg_itrie_source arg_itrie_source393,10516 -static YAP_Bool p_itrie_add(void) {p_itrie_add394,10550 -#undef arg_itrie_destarg_itrie_dest405,10854 -#undef arg_itrie_sourcearg_itrie_source406,10876 -#define arg_itrie_dest arg_itrie_dest410,10948 -#define arg_itrie_source arg_itrie_source411,10982 -static YAP_Bool p_itrie_subtract(void) {p_itrie_subtract412,11016 -#undef arg_itrie_destarg_itrie_dest423,11335 -#undef arg_itrie_sourcearg_itrie_source424,11357 -#define arg_itrie_dest arg_itrie_dest428,11425 -#define arg_itrie_source arg_itrie_source429,11459 -static YAP_Bool p_itrie_join(void) {p_itrie_join430,11493 -#undef arg_itrie_destarg_itrie_dest441,11800 -#undef arg_itrie_sourcearg_itrie_source442,11822 -#define arg_itrie_dest arg_itrie_dest446,11895 -#define arg_itrie_source arg_itrie_source447,11929 -static YAP_Bool p_itrie_intersect(void) {p_itrie_intersect448,11963 -#undef arg_itrie_destarg_itrie_dest459,12285 -#undef arg_itrie_sourcearg_itrie_source460,12307 -#define arg_itrie1 arg_itrie1464,12382 -#define arg_itrie2 arg_itrie2465,12412 -#define arg_entries arg_entries466,12442 -static YAP_Bool p_itrie_count_join(void) {p_itrie_count_join467,12471 -#undef arg_itrie1arg_itrie1480,12848 -#undef arg_itrie2arg_itrie2481,12866 -#undef arg_entriesarg_entries482,12884 -#define arg_itrie1 arg_itrie1486,12959 -#define arg_itrie2 arg_itrie2487,12989 -#define arg_entries arg_entries488,13019 -static YAP_Bool p_itrie_count_intersect(void) {p_itrie_count_intersect489,13048 -#undef arg_itrie1arg_itrie1502,13440 -#undef arg_itrie2arg_itrie2503,13458 -#undef arg_entriesarg_entries504,13476 -#define arg_itrie arg_itrie508,13532 -#define arg_file arg_file509,13559 -static YAP_Bool p_itrie_save(void) {p_itrie_save510,13586 -#undef arg_itriearg_itrie531,14057 -#undef arg_filearg_file532,14074 -#define arg_itrie arg_itrie536,14135 -#define arg_file arg_file537,14162 -static YAP_Bool p_itrie_save_as_trie(void) {p_itrie_save_as_trie538,14189 -#undef arg_itriearg_itrie559,14684 -#undef arg_filearg_file560,14701 -#define arg_itrie arg_itrie564,14754 -#define arg_file arg_file565,14781 -static YAP_Bool p_itrie_load(void) {p_itrie_load566,14808 -#undef arg_itriearg_itrie589,15342 -#undef arg_filearg_file590,15359 -#define arg_itrie arg_itrie594,15417 -#define arg_stream arg_stream595,15445 -static YAP_Bool p_itrie_save2stream(void) {p_itrie_save2stream596,15473 -#undef arg_itriearg_itrie609,15786 -#undef arg_streamarg_stream610,15803 -#define arg_itrie arg_itrie614,15866 -#define arg_stream arg_stream615,15894 -static YAP_Bool p_itrie_loadFromStream(void) {p_itrie_loadFromStream616,15922 -#undef arg_itriearg_itrie631,16294 -#undef arg_streamarg_stream632,16311 -#define arg_memory arg_memory636,16381 -#define arg_tries arg_tries637,16410 -#define arg_entries arg_entries638,16439 -#define arg_nodes arg_nodes639,16468 -static YAP_Bool p_itrie_stats(void) {p_itrie_stats640,16497 -#undef arg_memoryarg_memory655,16944 -#undef arg_triesarg_tries656,16962 -#undef arg_entriesarg_entries657,16979 -#undef arg_nodesarg_nodes658,16998 -#define arg_memory arg_memory662,17071 -#define arg_tries arg_tries663,17100 -#define arg_entries arg_entries664,17129 -#define arg_nodes arg_nodes665,17158 -static YAP_Bool p_itrie_max_stats(void) {p_itrie_max_stats666,17187 -#undef arg_memoryarg_memory681,17642 -#undef arg_triesarg_tries682,17660 -#undef arg_entriesarg_entries683,17677 -#undef arg_nodesarg_nodes684,17696 -#define arg_itrie arg_itrie688,17771 -#define arg_entries arg_entries689,17805 -#define arg_nodes arg_nodes690,17839 -#define arg_virtualnodes arg_virtualnodes691,17873 -static YAP_Bool p_itrie_usage(void) {p_itrie_usage692,17907 -#undef arg_itriearg_itrie709,18406 -#undef arg_entriesarg_entries710,18423 -#undef arg_nodesarg_nodes711,18442 -#undef arg_virtualnodesarg_virtualnodes712,18459 -#define arg_itrie arg_itrie716,18511 -static YAP_Bool p_itrie_print(void) {p_itrie_print717,18538 -#undef arg_itriearg_itrie726,18734 - -library/tries/tries.c,9440 - YAP_Term value;value26,522 - YAP_Term value;__anon390::value26,522 -} db_trie_opt_level;db_trie_opt_level27,540 -O_API void init_tries(void) {init_tries90,2627 -static YAP_Bool p_open_trie(void) {p_open_trie149,5577 -static YAP_Bool p_close_trie(void) {p_close_trie155,5665 -static YAP_Bool p_close_all_tries(void) {p_close_all_tries161,5755 -#define arg_mode arg_mode167,5876 -#define arg_trie arg_trie168,5903 -#define arg_entry arg_entry169,5930 -#define arg_ref arg_ref170,5957 -static YAP_Bool p_put_trie_entry(void) {p_put_trie_entry171,5984 -#undef arg_modearg_mode194,6618 -#undef arg_triearg_trie195,6634 -#undef arg_entryarg_entry196,6650 -#undef arg_refarg_ref197,6667 -#define arg_mode arg_mode201,6724 -#define arg_ref arg_ref202,6751 -#define arg_entry arg_entry203,6778 -static YAP_Bool p_get_trie_entry(void) {p_get_trie_entry204,6805 -#undef arg_modearg_mode227,7406 -#undef arg_refarg_ref228,7422 -#undef arg_entryarg_entry229,7437 -static YAP_Bool p_remove_trie_entry(void) {p_remove_trie_entry233,7486 -static YAP_Bool p_print_trie(void) {p_print_trie239,7590 -#define arg_trie arg_trie250,7780 -static YAP_Bool p_trie_open(void) {p_trie_open251,7806 -#undef arg_triearg_trie262,8032 -#define arg_trie arg_trie266,8074 -static YAP_Bool p_trie_close(void) {p_trie_close267,8100 -#undef arg_triearg_trie276,8292 -static YAP_Bool p_trie_close_all(void) {p_trie_close_all280,8333 -#define arg_mode arg_mode287,8436 -static YAP_Bool p_trie_mode(void) {p_trie_mode288,8462 -#undef arg_modearg_mode316,9171 -#define arg_trie arg_trie320,9229 -#define arg_entry arg_entry321,9256 -#define arg_ref arg_ref322,9283 -static YAP_Bool p_trie_put_entry(void) {p_trie_put_entry323,9310 -#undef arg_triearg_trie334,9594 -#undef arg_entryarg_entry335,9610 -#undef arg_refarg_ref336,9627 -#define arg_trie arg_trie340,9686 -#define arg_entry arg_entry341,9713 -#define arg_ref arg_ref342,9740 -static YAP_Bool p_trie_check_entry(void) {p_trie_check_entry343,9767 -#undef arg_triearg_trie355,10082 -#undef arg_entryarg_entry356,10098 -#undef arg_refarg_ref357,10115 -#define arg_ref arg_ref361,10166 -#define arg_entry arg_entry362,10193 -static YAP_Bool p_trie_get_entry(void) {p_trie_get_entry363,10220 -#undef arg_refarg_ref374,10472 -#undef arg_entryarg_entry375,10487 -#define arg_trie arg_trie379,10545 -#define arg_ref arg_ref380,10571 -static YAP_Bool p_trie_get_first_entry(void) {p_trie_get_first_entry381,10597 -#undef arg_triearg_trie393,10913 -#undef arg_refarg_ref394,10929 -#define arg_trie arg_trie398,10984 -#define arg_ref arg_ref399,11010 -static YAP_Bool p_trie_get_last_entry(void) {p_trie_get_last_entry400,11036 -#undef arg_triearg_trie412,11349 -#undef arg_refarg_ref413,11365 -#define arg_trie arg_trie417,11424 -#define arg_init_ref arg_init_ref418,11454 -#define arg_ref arg_ref419,11484 -static YAP_Bool p_trie_traverse_init(void) {p_trie_traverse_init420,11514 -#undef arg_triearg_trie436,11938 -#undef arg_init_refarg_init_ref437,11954 -#undef arg_refarg_ref438,11974 -#define arg_trie arg_trie442,12033 -#define arg_init_ref arg_init_ref443,12063 -#define arg_ref arg_ref444,12093 -static YAP_Bool p_trie_traverse_cont(void) {p_trie_traverse_cont445,12123 -#undef arg_triearg_trie455,12383 -#undef arg_init_refarg_init_ref456,12399 -#undef arg_refarg_ref457,12419 -#define arg_ref arg_ref461,12466 -static YAP_Bool p_trie_remove_entry(void) {p_trie_remove_entry462,12491 -#undef arg_refarg_ref471,12700 -#define arg_ref arg_ref475,12749 -static YAP_Bool p_trie_remove_subtree(void) {p_trie_remove_subtree476,12774 -#undef arg_refarg_ref485,12989 -#define arg_trie_dest arg_trie_dest489,13045 -#define arg_trie_source arg_trie_source490,13078 -static YAP_Bool p_trie_join(void) {p_trie_join491,13111 -#undef arg_trie_destarg_trie_dest502,13411 -#undef arg_trie_sourcearg_trie_source503,13432 -#define arg_trie_dest arg_trie_dest507,13501 -#define arg_trie_source arg_trie_source508,13534 -static YAP_Bool p_trie_intersect(void) {p_trie_intersect509,13567 -#undef arg_trie_destarg_trie_dest520,13882 -#undef arg_trie_sourcearg_trie_source521,13903 -#define arg_trie1 arg_trie1525,13974 -#define arg_trie2 arg_trie2526,14003 -#define arg_entries arg_entries527,14032 -static YAP_Bool p_trie_count_join(void) {p_trie_count_join528,14061 -#undef arg_trie1arg_trie1541,14431 -#undef arg_trie2arg_trie2542,14448 -#undef arg_entriesarg_entries543,14465 -#define arg_trie1 arg_trie1547,14537 -#define arg_trie2 arg_trie2548,14566 -#define arg_entries arg_entries549,14595 -static YAP_Bool p_trie_count_intersect(void) {p_trie_count_intersect550,14624 -#undef arg_trie1arg_trie1563,15009 -#undef arg_trie2arg_trie2564,15026 -#undef arg_entriesarg_entries565,15043 -#define arg_trie arg_trie569,15097 -#define arg_file arg_file570,15123 -static YAP_Bool p_trie_save(void) {p_trie_save571,15149 -#undef arg_triearg_trie592,15615 -#undef arg_filearg_file593,15631 -#define arg_trie arg_trie597,15682 -#define arg_file arg_file598,15708 -static YAP_Bool p_trie_load(void) {p_trie_load599,15734 -#undef arg_triearg_trie622,16260 -#undef arg_filearg_file623,16276 -#define arg_memory arg_memory627,16343 -#define arg_tries arg_tries628,16372 -#define arg_entries arg_entries629,16401 -#define arg_nodes arg_nodes630,16430 -static YAP_Bool p_trie_stats(void) {p_trie_stats631,16459 -#undef arg_memoryarg_memory646,16904 -#undef arg_triesarg_tries647,16922 -#undef arg_entriesarg_entries648,16939 -#undef arg_nodesarg_nodes649,16958 -#define arg_memory arg_memory653,17030 -#define arg_tries arg_tries654,17059 -#define arg_entries arg_entries655,17088 -#define arg_nodes arg_nodes656,17117 -static YAP_Bool p_trie_max_stats(void) {p_trie_max_stats657,17146 -#undef arg_memoryarg_memory672,17599 -#undef arg_triesarg_tries673,17617 -#undef arg_entriesarg_entries674,17634 -#undef arg_nodesarg_nodes675,17653 -#define arg_trie arg_trie679,17726 -#define arg_entries arg_entries680,17760 -#define arg_nodes arg_nodes681,17794 -#define arg_virtualnodes arg_virtualnodes682,17828 -static YAP_Bool p_trie_usage(void) {p_trie_usage683,17862 -#undef arg_triearg_trie700,18356 -#undef arg_entriesarg_entries701,18372 -#undef arg_nodesarg_nodes702,18391 -#undef arg_virtualnodesarg_virtualnodes703,18408 -#define arg_trie arg_trie707,18458 -static YAP_Bool p_trie_print(void) {p_trie_print708,18484 -#undef arg_triearg_trie717,18675 -#define arg_mode arg_mode721,18725 -static YAP_Bool p_trie_traverse_mode(void) {p_trie_traverse_mode722,18751 -#undef arg_modearg_mode750,19521 -#define arg_trie arg_trie754,19578 -#define arg_ref arg_ref755,19606 -static YAP_Bool p_trie_traverse_first(void) {p_trie_traverse_first756,19634 -#undef arg_triearg_trie769,19945 -#undef arg_refarg_ref770,19961 -#define arg_cur arg_cur774,20015 -#define arg_next arg_next775,20043 -static YAP_Bool p_trie_traverse_next(void) {p_trie_traverse_next776,20071 -#undef arg_curarg_cur789,20378 -#undef arg_nextarg_next790,20393 -static YAP_Bool p_trie_disable_hash(void) {p_trie_disable_hash794,20435 -static YAP_Bool p_trie_enable_hash(void) {p_trie_enable_hash801,20550 -#define arg_trie arg_trie808,20673 -#define arg_list arg_list809,20699 -static YAP_Bool p_trie_to_list(void) {p_trie_to_list810,20725 -#undef arg_triearg_trie821,20978 -#undef arg_listarg_list822,20994 -#define arg_trie arg_trie826,21124 -#define arg_db_trie arg_db_trie827,21164 -#define arg_final_label arg_final_label828,21204 -#define arg_opt_level arg_opt_level829,21244 -#define arg_start_counter arg_start_counter830,21284 -#define arg_end_counter arg_end_counter831,21324 -static YAP_Bool p_trie_depth_breadth(void) {p_trie_depth_breadth832,21364 -#undef arg_triearg_trie844,21861 -#undef arg_db_triearg_db_trie845,21877 -#undef arg_final_labelarg_final_label846,21896 -#undef arg_opt_levelarg_opt_level847,21919 -#undef arg_start_counterarg_start_counter848,21940 -#undef arg_end_counterarg_end_counter849,21965 -#define arg_entry arg_entry853,22043 -static YAP_Bool p_trie_get_depth_breadth_reduction_current_data(void) {p_trie_get_depth_breadth_reduction_current_data854,22070 -#undef arg_entryarg_entry860,22301 -db_trie_opt_level *opt_level;opt_level863,22320 -#define arg_opt_level arg_opt_level866,22425 -#define arg_count arg_count867,22456 -static YAP_Bool p_trie_get_db_opt_level_count_init(void) {p_trie_get_db_opt_level_count_init868,22483 -#undef arg_opt_levelarg_opt_level895,23329 -#undef arg_countarg_count896,23350 -#define arg_opt_level arg_opt_level900,23443 -#define arg_count arg_count901,23474 -static YAP_Bool p_trie_get_db_opt_level_count_cont(void) {p_trie_get_db_opt_level_count_cont902,23501 -#undef arg_opt_levelarg_opt_level915,23984 -#undef arg_countarg_count916,24005 -#define arg_trie arg_trie920,24091 -#define arg_nested_id arg_nested_id921,24117 -#define arg_term arg_term922,24148 -static YAP_Bool p_trie_replace_nested_trie(void) {p_trie_replace_nested_trie923,24174 -#undef arg_triearg_trie931,24453 -#undef arg_nested_idarg_nested_id932,24469 -#undef arg_termarg_term933,24490 -#define arg_min_prefix arg_min_prefix937,24549 -static YAP_Bool p_trie_db_opt_min_prefix(void) {p_trie_db_opt_min_prefix938,24581 -#undef min_prefixmin_prefix957,25049 -int WINAPI win_tries(HANDLE hinst, DWORD reason, LPVOID reserved)win_tries966,25152 - -library/tries.yap,1218 -trie_empty(Trie) :-trie_empty206,3928 -trie_empty(Trie) :-trie_empty206,3928 -trie_empty(Trie) :-trie_empty206,3928 -trie_dup(Trie, CopyTrie) :-trie_dup209,3977 -trie_dup(Trie, CopyTrie) :-trie_dup209,3977 -trie_dup(Trie, CopyTrie) :-trie_dup209,3977 -trie_traverse(Trie, Ref) :- trie_traverse213,4056 -trie_traverse(Trie, Ref) :- trie_traverse213,4056 -trie_traverse(Trie, Ref) :- trie_traverse213,4056 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel) :-trie_to_depth_breadth_trie216,4116 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel) :-trie_to_depth_breadth_trie216,4116 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel) :-trie_to_depth_breadth_trie216,4116 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCounter, EndCounter) :-trie_to_depth_breadth_trie223,4402 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCounter, EndCounter) :-trie_to_depth_breadth_trie223,4402 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCounter, EndCounter) :-trie_to_depth_breadth_trie223,4402 - -library/ugraphs.yap,25538 -vertices([], []) :- !.vertices397,9019 -vertices([], []) :- !.vertices397,9019 -vertices([], []) :- !.vertices397,9019 -vertices([Vertex-_|Graph], [Vertex|Vertices]) :-vertices398,9042 -vertices([Vertex-_|Graph], [Vertex|Vertices]) :-vertices398,9042 -vertices([Vertex-_|Graph], [Vertex|Vertices]) :-vertices398,9042 -vertices_edges_to_ugraph(Vertices, Edges, Graph) :-vertices_edges_to_ugraph401,9121 -vertices_edges_to_ugraph(Vertices, Edges, Graph) :-vertices_edges_to_ugraph401,9121 -vertices_edges_to_ugraph(Vertices, Edges, Graph) :-vertices_edges_to_ugraph401,9121 -add_vertices(Graph, Vertices, NewGraph) :-add_vertices409,9350 -add_vertices(Graph, Vertices, NewGraph) :-add_vertices409,9350 -add_vertices(Graph, Vertices, NewGraph) :-add_vertices409,9350 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph([], L, L) :- !.add_vertices_to_s_graph414,9532 -add_vertices_to_s_graph([], L, L) :- !.add_vertices_to_s_graph414,9532 -add_vertices_to_s_graph([], L, L) :- !.add_vertices_to_s_graph414,9532 -add_vertices_to_s_graph([V1|VL], [V-Edges|G], NGL) :-add_vertices_to_s_graph415,9572 -add_vertices_to_s_graph([V1|VL], [V-Edges|G], NGL) :-add_vertices_to_s_graph415,9572 -add_vertices_to_s_graph([V1|VL], [V-Edges|G], NGL) :-add_vertices_to_s_graph415,9572 -add_vertices_to_s_graph(=, _, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph419,9706 -add_vertices_to_s_graph(=, _, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph419,9706 -add_vertices_to_s_graph(=, _, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph419,9706 -add_vertices_to_s_graph(<, V1, VL, V, Edges, G, [V1-[]|NGL]) :-add_vertices_to_s_graph421,9809 -add_vertices_to_s_graph(<, V1, VL, V, Edges, G, [V1-[]|NGL]) :-add_vertices_to_s_graph421,9809 -add_vertices_to_s_graph(<, V1, VL, V, Edges, G, [V1-[]|NGL]) :-add_vertices_to_s_graph421,9809 -add_vertices_to_s_graph(>, V1, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph423,9921 -add_vertices_to_s_graph(>, V1, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph423,9921 -add_vertices_to_s_graph(>, V1, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph423,9921 -add_empty_vertices([], []).add_empty_vertices426,10031 -add_empty_vertices([], []).add_empty_vertices426,10031 -add_empty_vertices([V|G], [V-[]|NG]) :-add_empty_vertices427,10059 -add_empty_vertices([V|G], [V-[]|NG]) :-add_empty_vertices427,10059 -add_empty_vertices([V|G], [V-[]|NG]) :-add_empty_vertices427,10059 -del_vertices(Graph, Vertices, NewGraph) :-del_vertices433,10191 -del_vertices(Graph, Vertices, NewGraph) :-del_vertices433,10191 -del_vertices(Graph, Vertices, NewGraph) :-del_vertices433,10191 -del_vertices(G, [], V1, NG) :- !,del_vertices438,10332 -del_vertices(G, [], V1, NG) :- !,del_vertices438,10332 -del_vertices(G, [], V1, NG) :- !,del_vertices438,10332 -del_vertices([], _, _, []).del_vertices440,10412 -del_vertices([], _, _, []).del_vertices440,10412 -del_vertices([V-Edges|G], [V0|Vs], V1, NG) :- del_vertices441,10440 -del_vertices([V-Edges|G], [V0|Vs], V1, NG) :- del_vertices441,10440 -del_vertices([V-Edges|G], [V0|Vs], V1, NG) :- del_vertices441,10440 -del_remaining_edges_for_vertices([], _, []).del_remaining_edges_for_vertices446,10608 -del_remaining_edges_for_vertices([], _, []).del_remaining_edges_for_vertices446,10608 -del_remaining_edges_for_vertices([V0-Edges|G], V1, [V0-NEdges|NG]) :-del_remaining_edges_for_vertices447,10653 -del_remaining_edges_for_vertices([V0-Edges|G], V1, [V0-NEdges|NG]) :-del_remaining_edges_for_vertices447,10653 -del_remaining_edges_for_vertices([V0-Edges|G], V1, [V0-NEdges|NG]) :-del_remaining_edges_for_vertices447,10653 -split_on_del_vertices(<, V, Edges, Vs, Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices451,10804 -split_on_del_vertices(<, V, Edges, Vs, Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices451,10804 -split_on_del_vertices(<, V, Edges, Vs, Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices451,10804 -split_on_del_vertices(>, V, Edges, [_|Vs], Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices453,10907 -split_on_del_vertices(>, V, Edges, [_|Vs], Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices453,10907 -split_on_del_vertices(>, V, Edges, [_|Vs], Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices453,10907 -split_on_del_vertices(=, _, _, [_|Vs], Vs, _, NG, NG).split_on_del_vertices455,11014 -split_on_del_vertices(=, _, _, [_|Vs], Vs, _, NG, NG).split_on_del_vertices455,11014 -add_edges(Graph, Edges, NewGraph) :-add_edges457,11070 -add_edges(Graph, Edges, NewGraph) :-add_edges457,11070 -add_edges(Graph, Edges, NewGraph) :-add_edges457,11070 -graph_union(Set1, [], Set1) :- !.graph_union465,11300 -graph_union(Set1, [], Set1) :- !.graph_union465,11300 -graph_union(Set1, [], Set1) :- !.graph_union465,11300 -graph_union([], Set2, Set2) :- !.graph_union466,11334 -graph_union([], Set2, Set2) :- !.graph_union466,11334 -graph_union([], Set2, Set2) :- !.graph_union466,11334 -graph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-graph_union467,11368 -graph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-graph_union467,11368 -graph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-graph_union467,11368 -graph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-graph_union471,11520 -graph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-graph_union471,11520 -graph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-graph_union471,11520 -graph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-graph_union474,11648 -graph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-graph_union474,11648 -graph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-graph_union474,11648 -graph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-graph_union476,11752 -graph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-graph_union476,11752 -graph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-graph_union476,11752 -del_edges(Graph, Edges, NewGraph) :-del_edges479,11857 -del_edges(Graph, Edges, NewGraph) :-del_edges479,11857 -del_edges(Graph, Edges, NewGraph) :-del_edges479,11857 -graph_subtract(Set1, [], Set1) :- !.graph_subtract487,12037 -graph_subtract(Set1, [], Set1) :- !.graph_subtract487,12037 -graph_subtract(Set1, [], Set1) :- !.graph_subtract487,12037 -graph_subtract([], _, []).graph_subtract488,12074 -graph_subtract([], _, []).graph_subtract488,12074 -graph_subtract([Head1-E1|Tail1], [Head2-E2|Tail2], Difference) :-graph_subtract489,12101 -graph_subtract([Head1-E1|Tail1], [Head2-E2|Tail2], Difference) :-graph_subtract489,12101 -graph_subtract([Head1-E1|Tail1], [Head2-E2|Tail2], Difference) :-graph_subtract489,12101 -graph_subtract(=, H-E1, Tail1, _-E2, Tail2, [H-E|Difference]) :-graph_subtract493,12269 -graph_subtract(=, H-E1, Tail1, _-E2, Tail2, [H-E|Difference]) :-graph_subtract493,12269 -graph_subtract(=, H-E1, Tail1, _-E2, Tail2, [H-E|Difference]) :-graph_subtract493,12269 -graph_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-graph_subtract496,12409 -graph_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-graph_subtract496,12409 -graph_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-graph_subtract496,12409 -graph_subtract(>, Head1, Tail1, _, Tail2, Difference) :-graph_subtract498,12529 -graph_subtract(>, Head1, Tail1, _, Tail2, Difference) :-graph_subtract498,12529 -graph_subtract(>, Head1, Tail1, _, Tail2, Difference) :-graph_subtract498,12529 -edges(Graph, Edges) :- edges503,12644 -edges(Graph, Edges) :- edges503,12644 -edges(Graph, Edges) :- edges503,12644 -p_to_s_graph(P_Graph, S_Graph) :-p_to_s_graph506,12698 -p_to_s_graph(P_Graph, S_Graph) :-p_to_s_graph506,12698 -p_to_s_graph(P_Graph, S_Graph) :-p_to_s_graph506,12698 -p_to_s_vertices([], []).p_to_s_vertices513,12872 -p_to_s_vertices([], []).p_to_s_vertices513,12872 -p_to_s_vertices([A-Z|Edges], [A,Z|Vertices]) :-p_to_s_vertices514,12897 -p_to_s_vertices([A-Z|Edges], [A,Z|Vertices]) :-p_to_s_vertices514,12897 -p_to_s_vertices([A-Z|Edges], [A,Z|Vertices]) :-p_to_s_vertices514,12897 -p_to_s_group([], _, []).p_to_s_group518,12984 -p_to_s_group([], _, []).p_to_s_group518,12984 -p_to_s_group([Vertex|Vertices], EdgeSet, [Vertex-Neibs|G]) :-p_to_s_group519,13009 -p_to_s_group([Vertex|Vertices], EdgeSet, [Vertex-Neibs|G]) :-p_to_s_group519,13009 -p_to_s_group([Vertex|Vertices], EdgeSet, [Vertex-Neibs|G]) :-p_to_s_group519,13009 -p_to_s_group([V1-X|Edges], V2, [X|Neibs], RestEdges) :- V1 == V2, !,p_to_s_group524,13164 -p_to_s_group([V1-X|Edges], V2, [X|Neibs], RestEdges) :- V1 == V2, !,p_to_s_group524,13164 -p_to_s_group([V1-X|Edges], V2, [X|Neibs], RestEdges) :- V1 == V2, !,p_to_s_group524,13164 -p_to_s_group(Edges, _, [], Edges).p_to_s_group526,13277 -p_to_s_group(Edges, _, [], Edges).p_to_s_group526,13277 -s_to_p_graph([], []) :- !.s_to_p_graph530,13318 -s_to_p_graph([], []) :- !.s_to_p_graph530,13318 -s_to_p_graph([], []) :- !.s_to_p_graph530,13318 -s_to_p_graph([Vertex-Neibs|G], P_Graph) :-s_to_p_graph531,13345 -s_to_p_graph([Vertex-Neibs|G], P_Graph) :-s_to_p_graph531,13345 -s_to_p_graph([Vertex-Neibs|G], P_Graph) :-s_to_p_graph531,13345 -s_to_p_graph([], _, P_Graph, P_Graph) :- !.s_to_p_graph536,13477 -s_to_p_graph([], _, P_Graph, P_Graph) :- !.s_to_p_graph536,13477 -s_to_p_graph([], _, P_Graph, P_Graph) :- !.s_to_p_graph536,13477 -s_to_p_graph([Neib|Neibs], Vertex, [Vertex-Neib|P], Rest_P) :-s_to_p_graph537,13521 -s_to_p_graph([Neib|Neibs], Vertex, [Vertex-Neib|P], Rest_P) :-s_to_p_graph537,13521 -s_to_p_graph([Neib|Neibs], Vertex, [Vertex-Neib|P], Rest_P) :-s_to_p_graph537,13521 -s_to_p_trans([], []) :- !.s_to_p_trans542,13631 -s_to_p_trans([], []) :- !.s_to_p_trans542,13631 -s_to_p_trans([], []) :- !.s_to_p_trans542,13631 -s_to_p_trans([Vertex-Neibs|G], P_Graph) :-s_to_p_trans543,13658 -s_to_p_trans([Vertex-Neibs|G], P_Graph) :-s_to_p_trans543,13658 -s_to_p_trans([Vertex-Neibs|G], P_Graph) :-s_to_p_trans543,13658 -s_to_p_trans([], _, P_Graph, P_Graph) :- !.s_to_p_trans548,13790 -s_to_p_trans([], _, P_Graph, P_Graph) :- !.s_to_p_trans548,13790 -s_to_p_trans([], _, P_Graph, P_Graph) :- !.s_to_p_trans548,13790 -s_to_p_trans([Neib|Neibs], Vertex, [Neib-Vertex|P], Rest_P) :-s_to_p_trans549,13834 -s_to_p_trans([Neib|Neibs], Vertex, [Neib-Vertex|P], Rest_P) :-s_to_p_trans549,13834 -s_to_p_trans([Neib|Neibs], Vertex, [Neib-Vertex|P], Rest_P) :-s_to_p_trans549,13834 -transitive_closure(Graph, Closure) :-transitive_closure554,13944 -transitive_closure(Graph, Closure) :-transitive_closure554,13944 -transitive_closure(Graph, Closure) :-transitive_closure554,13944 -warshall(Graph, Closure) :-warshall557,14018 -warshall(Graph, Closure) :-warshall557,14018 -warshall(Graph, Closure) :-warshall557,14018 -warshall([], Closure, Closure) :- !.warshall560,14082 -warshall([], Closure, Closure) :- !.warshall560,14082 -warshall([], Closure, Closure) :- !.warshall560,14082 -warshall([V-_|G], E, Closure) :-warshall561,14119 -warshall([V-_|G], E, Closure) :-warshall561,14119 -warshall([V-_|G], E, Closure) :-warshall561,14119 -warshall([X-Neibs|G], V, Y, [X-NewNeibs|NewG]) :-warshall567,14244 -warshall([X-Neibs|G], V, Y, [X-NewNeibs|NewG]) :-warshall567,14244 -warshall([X-Neibs|G], V, Y, [X-NewNeibs|NewG]) :-warshall567,14244 -warshall([X-Neibs|G], V, Y, [X-Neibs|NewG]) :- !,warshall572,14378 -warshall([X-Neibs|G], V, Y, [X-Neibs|NewG]) :- !,warshall572,14378 -warshall([X-Neibs|G], V, Y, [X-Neibs|NewG]) :- !,warshall572,14378 -warshall([], _, _, []).warshall574,14454 -warshall([], _, _, []).warshall574,14454 -p_transpose([], []) :- !.p_transpose578,14484 -p_transpose([], []) :- !.p_transpose578,14484 -p_transpose([], []) :- !.p_transpose578,14484 -p_transpose([From-To|Edges], [To-From|Transpose]) :-p_transpose579,14510 -p_transpose([From-To|Edges], [To-From|Transpose]) :-p_transpose579,14510 -p_transpose([From-To|Edges], [To-From|Transpose]) :-p_transpose579,14510 -transpose(S_Graph, Transpose) :-transpose600,15042 -transpose(S_Graph, Transpose) :-transpose600,15042 -transpose(S_Graph, Transpose) :-transpose600,15042 -s_transpose(S_Graph, Transpose) :-s_transpose603,15123 -s_transpose(S_Graph, Transpose) :-s_transpose603,15123 -s_transpose(S_Graph, Transpose) :-s_transpose603,15123 -s_transpose([], [], Base, Base) :- !.s_transpose606,15206 -s_transpose([], [], Base, Base) :- !.s_transpose606,15206 -s_transpose([], [], Base, Base) :- !.s_transpose606,15206 -s_transpose([Vertex-Neibs|Graph], [Vertex-[]|RestBase], Base, Transpose) :-s_transpose607,15244 -s_transpose([Vertex-Neibs|Graph], [Vertex-[]|RestBase], Base, Transpose) :-s_transpose607,15244 -s_transpose([Vertex-Neibs|Graph], [Vertex-[]|RestBase], Base, Transpose) :-s_transpose607,15244 -transpose_s([Head|SoFar], Neibs, Vertex, [Head|Transpose]) :- !,transpose_s614,15555 -transpose_s([Head|SoFar], Neibs, Vertex, [Head|Transpose]) :- !,transpose_s614,15555 -transpose_s([Head|SoFar], Neibs, Vertex, [Head|Transpose]) :- !,transpose_s614,15555 -transpose_s([], [], _, []).transpose_s616,15667 -transpose_s([], [], _, []).transpose_s616,15667 -p_member(X, Y, P_Graph) :-p_member626,16009 -p_member(X, Y, P_Graph) :-p_member626,16009 -p_member(X, Y, P_Graph) :-p_member626,16009 -p_member(X, Y, P_Graph) :-p_member629,16088 -p_member(X, Y, P_Graph) :-p_member629,16088 -p_member(X, Y, P_Graph) :-p_member629,16088 -s_member(X, Y, S_Graph) :-s_member637,16313 -s_member(X, Y, S_Graph) :-s_member637,16313 -s_member(X, Y, S_Graph) :-s_member637,16313 -s_member(X, Y, S_Graph) :-s_member641,16406 -s_member(X, Y, S_Graph) :-s_member641,16406 -s_member(X, Y, S_Graph) :-s_member641,16406 -s_member(X, Y, S_Graph) :-s_member645,16494 -s_member(X, Y, S_Graph) :-s_member645,16494 -s_member(X, Y, S_Graph) :-s_member645,16494 -s_member(X, Y, S_Graph) :-s_member649,16582 -s_member(X, Y, S_Graph) :-s_member649,16582 -s_member(X, Y, S_Graph) :-s_member649,16582 -compose(G1, G2, Composition) :-compose658,16803 -compose(G1, G2, Composition) :-compose658,16803 -compose(G1, G2, Composition) :-compose658,16803 -compose([], _, _, []) :- !.compose665,16934 -compose([], _, _, []) :- !.compose665,16934 -compose([], _, _, []) :- !.compose665,16934 -compose([Vertex|Vertices], [Vertex-Neibs|G1], G2, [Vertex-Comp|Composition]) :- !,compose666,16962 -compose([Vertex|Vertices], [Vertex-Neibs|G1], G2, [Vertex-Comp|Composition]) :- !,compose666,16962 -compose([Vertex|Vertices], [Vertex-Neibs|G1], G2, [Vertex-Comp|Composition]) :- !,compose666,16962 -compose([Vertex|Vertices], G1, G2, [Vertex-[]|Composition]) :-compose669,17118 -compose([Vertex|Vertices], G1, G2, [Vertex-[]|Composition]) :-compose669,17118 -compose([Vertex|Vertices], G1, G2, [Vertex-[]|Composition]) :-compose669,17118 -compose1([V1|Vs1], [V2-N2|G2], SoFar, Comp) :-compose1673,17226 -compose1([V1|Vs1], [V2-N2|G2], SoFar, Comp) :-compose1673,17226 -compose1([V1|Vs1], [V2-N2|G2], SoFar, Comp) :-compose1673,17226 -compose1(_, _, Comp, Comp).compose1676,17349 -compose1(_, _, Comp, Comp).compose1676,17349 -compose1(<, _, Vs1, V2, N2, G2, SoFar, Comp) :- !,compose1679,17381 -compose1(<, _, Vs1, V2, N2, G2, SoFar, Comp) :- !,compose1679,17381 -compose1(<, _, Vs1, V2, N2, G2, SoFar, Comp) :- !,compose1679,17381 -compose1(>, V1, Vs1, _, _, G2, SoFar, Comp) :- !,compose1681,17473 -compose1(>, V1, Vs1, _, _, G2, SoFar, Comp) :- !,compose1681,17473 -compose1(>, V1, Vs1, _, _, G2, SoFar, Comp) :- !,compose1681,17473 -compose1(=, V1, Vs1, V1, N2, G2, SoFar, Comp) :-compose1683,17561 -compose1(=, V1, Vs1, V1, N2, G2, SoFar, Comp) :-compose1683,17561 -compose1(=, V1, Vs1, V1, N2, G2, SoFar, Comp) :-compose1683,17561 -raakau(Vertices, InitialValue, Tree) :-raakau697,18095 -raakau(Vertices, InitialValue, Tree) :-raakau697,18095 -raakau(Vertices, InitialValue, Tree) :-raakau697,18095 -raakau(0, Vs, Vs, 0, I, t) :- !.raakau702,18209 -raakau(0, Vs, Vs, 0, I, t) :- !.raakau702,18209 -raakau(0, Vs, Vs, 0, I, t) :- !.raakau702,18209 -raakau(1, [V|Vs], Vs, V, I, t(V,I)) :- !.raakau703,18242 -raakau(1, [V|Vs], Vs, V, I, t(V,I)) :- !.raakau703,18242 -raakau(1, [V|Vs], Vs, V, I, t(V,I)) :- !.raakau703,18242 -raakau(N, Vi, Vo, W, I, t(V,W,I,L,R)) :-raakau704,18284 -raakau(N, Vi, Vo, W, I, t(V,W,I,L,R)) :-raakau704,18284 -raakau(N, Vi, Vo, W, I, t(V,W,I,L,R)) :-raakau704,18284 -incdec(OldTree, Labels, Incr, NewTree) :-incdec717,18735 -incdec(OldTree, Labels, Incr, NewTree) :-incdec717,18735 -incdec(OldTree, Labels, Incr, NewTree) :-incdec717,18735 -incdec(t(V,M), t(V,N), [V|L], L, I) :- !,incdec721,18825 -incdec(t(V,M), t(V,N), [V|L], L, I) :- !,incdec721,18825 -incdec(t(V,M), t(V,N), [V|L], L, I) :- !,incdec721,18825 -incdec(t(V,W,M,L1,R1), t(V,W,N,L2,R2), Li, Lo, I) :-incdec723,18878 -incdec(t(V,W,M,L1,R1), t(V,W,N,L2,R2), Li, Lo, I) :-incdec723,18878 -incdec(t(V,W,M,L1,R1), t(V,W,N,L2,R2), Li, Lo, I) :-incdec723,18878 -top_sort(Graph, Sorted) :-top_sort740,19185 -top_sort(Graph, Sorted) :-top_sort740,19185 -top_sort(Graph, Sorted) :-top_sort740,19185 -top_sort(Graph, Sorted0, Sorted) :-top_sort746,19403 -top_sort(Graph, Sorted0, Sorted) :-top_sort746,19403 -top_sort(Graph, Sorted0, Sorted) :-top_sort746,19403 -vertices_and_zeros([], [], []) :- !.vertices_and_zeros753,19641 -vertices_and_zeros([], [], []) :- !.vertices_and_zeros753,19641 -vertices_and_zeros([], [], []) :- !.vertices_and_zeros753,19641 -vertices_and_zeros([Vertex-_|Graph], [Vertex|Vertices], [0|Zeros]) :-vertices_and_zeros754,19678 -vertices_and_zeros([Vertex-_|Graph], [Vertex|Vertices], [0|Zeros]) :-vertices_and_zeros754,19678 -vertices_and_zeros([Vertex-_|Graph], [Vertex|Vertices], [0|Zeros]) :-vertices_and_zeros754,19678 -count_edges([], _, Counts, Counts) :- !.count_edges758,19797 -count_edges([], _, Counts, Counts) :- !.count_edges758,19797 -count_edges([], _, Counts, Counts) :- !.count_edges758,19797 -count_edges([_-Neibs|Graph], Vertices, Counts0, Counts2) :-count_edges759,19838 -count_edges([_-Neibs|Graph], Vertices, Counts0, Counts2) :-count_edges759,19838 -count_edges([_-Neibs|Graph], Vertices, Counts0, Counts2) :-count_edges759,19838 -incr_list([], _, Counts, Counts) :- !.incr_list764,19998 -incr_list([], _, Counts, Counts) :- !.incr_list764,19998 -incr_list([], _, Counts, Counts) :- !.incr_list764,19998 -incr_list([V1|Neibs], [V2|Vertices], [M|Counts0], [N|Counts1]) :- V1 == V2, !,incr_list765,20037 -incr_list([V1|Neibs], [V2|Vertices], [M|Counts0], [N|Counts1]) :- V1 == V2, !,incr_list765,20037 -incr_list([V1|Neibs], [V2|Vertices], [M|Counts0], [N|Counts1]) :- V1 == V2, !,incr_list765,20037 -incr_list(Neibs, [_|Vertices], [N|Counts0], [N|Counts1]) :-incr_list768,20174 -incr_list(Neibs, [_|Vertices], [N|Counts0], [N|Counts1]) :-incr_list768,20174 -incr_list(Neibs, [_|Vertices], [N|Counts0], [N|Counts1]) :-incr_list768,20174 -select_zeros([], [], []) :- !.select_zeros772,20285 -select_zeros([], [], []) :- !.select_zeros772,20285 -select_zeros([], [], []) :- !.select_zeros772,20285 -select_zeros([0|Counts], [Vertex|Vertices], [Vertex|Zeros]) :- !,select_zeros773,20316 -select_zeros([0|Counts], [Vertex|Vertices], [Vertex|Zeros]) :- !,select_zeros773,20316 -select_zeros([0|Counts], [Vertex|Vertices], [Vertex|Zeros]) :- !,select_zeros773,20316 -select_zeros([_|Counts], [_|Vertices], Zeros) :-select_zeros775,20422 -select_zeros([_|Counts], [_|Vertices], Zeros) :-select_zeros775,20422 -select_zeros([_|Counts], [_|Vertices], Zeros) :-select_zeros775,20422 -top_sort([], [], Graph, _, Counts) :- !,top_sort780,20517 -top_sort([], [], Graph, _, Counts) :- !,top_sort780,20517 -top_sort([], [], Graph, _, Counts) :- !,top_sort780,20517 -top_sort([Zero|Zeros], [Zero|Sorted], Graph, Vertices, Counts1) :-top_sort782,20597 -top_sort([Zero|Zeros], [Zero|Sorted], Graph, Vertices, Counts1) :-top_sort782,20597 -top_sort([Zero|Zeros], [Zero|Sorted], Graph, Vertices, Counts1) :-top_sort782,20597 -top_sort([], Sorted0, Sorted0, Graph, _, Counts) :- !,top_sort787,20822 -top_sort([], Sorted0, Sorted0, Graph, _, Counts) :- !,top_sort787,20822 -top_sort([], Sorted0, Sorted0, Graph, _, Counts) :- !,top_sort787,20822 -top_sort([Zero|Zeros], [Zero|Sorted], Sorted0, Graph, Vertices, Counts1) :-top_sort789,20916 -top_sort([Zero|Zeros], [Zero|Sorted], Sorted0, Graph, Vertices, Counts1) :-top_sort789,20916 -top_sort([Zero|Zeros], [Zero|Sorted], Sorted0, Graph, Vertices, Counts1) :-top_sort789,20916 -graph_memberchk(Element1-Edges, [Element2-Edges2|_]) :- Element1 == Element2, !,graph_memberchk794,21159 -graph_memberchk(Element1-Edges, [Element2-Edges2|_]) :- Element1 == Element2, !,graph_memberchk794,21159 -graph_memberchk(Element1-Edges, [Element2-Edges2|_]) :- Element1 == Element2, !,graph_memberchk794,21159 -graph_memberchk(Element, [_|Rest]) :-graph_memberchk796,21257 -graph_memberchk(Element, [_|Rest]) :-graph_memberchk796,21257 -graph_memberchk(Element, [_|Rest]) :-graph_memberchk796,21257 -decr_list([], _, Counts, Counts, Zeros, Zeros) :- !.decr_list800,21338 -decr_list([], _, Counts, Counts, Zeros, Zeros) :- !.decr_list800,21338 -decr_list([], _, Counts, Counts, Zeros, Zeros) :- !.decr_list800,21338 -decr_list([V1|Neibs], [V2|Vertices], [1|Counts1], [0|Counts2], Zi, Zo) :- V1 == V2, !,decr_list801,21391 -decr_list([V1|Neibs], [V2|Vertices], [1|Counts1], [0|Counts2], Zi, Zo) :- V1 == V2, !,decr_list801,21391 -decr_list([V1|Neibs], [V2|Vertices], [1|Counts1], [0|Counts2], Zi, Zo) :- V1 == V2, !,decr_list801,21391 -decr_list([V1|Neibs], [V2|Vertices], [N|Counts1], [M|Counts2], Zi, Zo) :- V1 == V2, !,decr_list803,21538 -decr_list([V1|Neibs], [V2|Vertices], [N|Counts1], [M|Counts2], Zi, Zo) :- V1 == V2, !,decr_list803,21538 -decr_list([V1|Neibs], [V2|Vertices], [N|Counts1], [M|Counts2], Zi, Zo) :- V1 == V2, !,decr_list803,21538 -decr_list(Neibs, [_|Vertices], [N|Counts1], [N|Counts2], Zi, Zo) :-decr_list806,21691 -decr_list(Neibs, [_|Vertices], [N|Counts1], [N|Counts2], Zi, Zo) :-decr_list806,21691 -decr_list(Neibs, [_|Vertices], [N|Counts1], [N|Counts2], Zi, Zo) :-decr_list806,21691 -neighbors(V,[V0-Neig|_],Neig) :- V == V0, !.neighbors811,21820 -neighbors(V,[V0-Neig|_],Neig) :- V == V0, !.neighbors811,21820 -neighbors(V,[V0-Neig|_],Neig) :- V == V0, !.neighbors811,21820 -neighbors(V,[_|G],Neig) :- neighbors812,21865 -neighbors(V,[_|G],Neig) :- neighbors812,21865 -neighbors(V,[_|G],Neig) :- neighbors812,21865 -neighbours(V,[V0-Neig|_],Neig) :- V == V0, !.neighbours815,21916 -neighbours(V,[V0-Neig|_],Neig) :- V == V0, !.neighbours815,21916 -neighbours(V,[V0-Neig|_],Neig) :- V == V0, !.neighbours815,21916 -neighbours(V,[_|G],Neig) :- neighbours816,21962 -neighbours(V,[_|G],Neig) :- neighbours816,21962 -neighbours(V,[_|G],Neig) :- neighbours816,21962 -complement(G, NG) :-complement823,22082 -complement(G, NG) :-complement823,22082 -complement(G, NG) :-complement823,22082 -complement([], _, []).complement827,22143 -complement([], _, []).complement827,22143 -complement([V-Ns|G], Vs, [V-INs|NG]) :-complement828,22166 -complement([V-Ns|G], Vs, [V-INs|NG]) :-complement828,22166 -complement([V-Ns|G], Vs, [V-INs|NG]) :-complement828,22166 -reachable(N, G, Rs) :-reachable835,22288 -reachable(N, G, Rs) :-reachable835,22288 -reachable(N, G, Rs) :-reachable835,22288 -reachable([], _, Rs, Rs).reachable838,22341 -reachable([], _, Rs, Rs).reachable838,22341 -reachable([N|Ns], G, Rs0, RsF) :-reachable839,22367 -reachable([N|Ns], G, Rs0, RsF) :-reachable839,22367 -reachable([N|Ns], G, Rs0, RsF) :-reachable839,22367 -ugraph_union(Set1, [], Set1) :- !.ugraph_union850,22638 -ugraph_union(Set1, [], Set1) :- !.ugraph_union850,22638 -ugraph_union(Set1, [], Set1) :- !.ugraph_union850,22638 -ugraph_union([], Set2, Set2) :- !.ugraph_union851,22673 -ugraph_union([], Set2, Set2) :- !.ugraph_union851,22673 -ugraph_union([], Set2, Set2) :- !.ugraph_union851,22673 -ugraph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-ugraph_union852,22708 -ugraph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-ugraph_union852,22708 -ugraph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-ugraph_union852,22708 -ugraph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-ugraph_union856,22862 -ugraph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-ugraph_union856,22862 -ugraph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-ugraph_union856,22862 -ugraph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ugraph_union859,22987 -ugraph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ugraph_union859,22987 -ugraph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ugraph_union859,22987 -ugraph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ugraph_union861,23093 -ugraph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ugraph_union861,23093 -ugraph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ugraph_union861,23093 - -library/undgraphs.yap,5316 -undgraph_add_edge(Vs0,V1,V2,Vs2) :-undgraph_add_edge109,2274 -undgraph_add_edge(Vs0,V1,V2,Vs2) :-undgraph_add_edge109,2274 -undgraph_add_edge(Vs0,V1,V2,Vs2) :-undgraph_add_edge109,2274 -undgraph_add_edges(G0, Edges, GF) :-undgraph_add_edges121,2572 -undgraph_add_edges(G0, Edges, GF) :-undgraph_add_edges121,2572 -undgraph_add_edges(G0, Edges, GF) :-undgraph_add_edges121,2572 -dup_edges([],[]).dup_edges125,2676 -dup_edges([],[]).dup_edges125,2676 -dup_edges([E1-E2|Edges], [E1-E2,E2-E1|DupEdges]) :-dup_edges126,2694 -dup_edges([E1-E2|Edges], [E1-E2,E2-E1|DupEdges]) :-dup_edges126,2694 -dup_edges([E1-E2|Edges], [E1-E2,E2-E1|DupEdges]) :-dup_edges126,2694 -undgraph_add_vertices(G, [], G).undgraph_add_vertices137,2966 -undgraph_add_vertices(G, [], G).undgraph_add_vertices137,2966 -undgraph_add_vertices(G0, [V|Vs], GF) :-undgraph_add_vertices138,2999 -undgraph_add_vertices(G0, [V|Vs], GF) :-undgraph_add_vertices138,2999 -undgraph_add_vertices(G0, [V|Vs], GF) :-undgraph_add_vertices138,2999 -undgraph_edges(Vs,Edges) :-undgraph_edges150,3223 -undgraph_edges(Vs,Edges) :-undgraph_edges150,3223 -undgraph_edges(Vs,Edges) :-undgraph_edges150,3223 -remove_dups([],[]).remove_dups154,3310 -remove_dups([],[]).remove_dups154,3310 -remove_dups([V1-V2|DupEdges],NEdges) :- V1 @< V2, !,remove_dups155,3330 -remove_dups([V1-V2|DupEdges],NEdges) :- V1 @< V2, !,remove_dups155,3330 -remove_dups([V1-V2|DupEdges],NEdges) :- V1 @< V2, !,remove_dups155,3330 -remove_dups([_|DupEdges],Edges) :-remove_dups158,3438 -remove_dups([_|DupEdges],Edges) :-remove_dups158,3438 -remove_dups([_|DupEdges],Edges) :-remove_dups158,3438 -undgraph_neighbours(V,Vertices,Children) :-undgraph_neighbours169,3659 -undgraph_neighbours(V,Vertices,Children) :-undgraph_neighbours169,3659 -undgraph_neighbours(V,Vertices,Children) :-undgraph_neighbours169,3659 -undgraph_neighbors(V,Vertices,Children) :-undgraph_neighbors178,3838 -undgraph_neighbors(V,Vertices,Children) :-undgraph_neighbors178,3838 -undgraph_neighbors(V,Vertices,Children) :-undgraph_neighbors178,3838 -undgraph_del_edge(Vs0,V1,V2,VsF) :-undgraph_del_edge188,4016 -undgraph_del_edge(Vs0,V1,V2,VsF) :-undgraph_del_edge188,4016 -undgraph_del_edge(Vs0,V1,V2,VsF) :-undgraph_del_edge188,4016 -undgraph_del_edges(G0, Edges, GF) :-undgraph_del_edges201,4338 -undgraph_del_edges(G0, Edges, GF) :-undgraph_del_edges201,4338 -undgraph_del_edges(G0, Edges, GF) :-undgraph_del_edges201,4338 -undgraph_del_vertex(Vs0, V, Vsf) :-undgraph_del_vertex205,4441 -undgraph_del_vertex(Vs0, V, Vsf) :-undgraph_del_vertex205,4441 -undgraph_del_vertex(Vs0, V, Vsf) :-undgraph_del_vertex205,4441 -undgraph_del_vertices(G0, Vs, GF) :-undgraph_del_vertices225,4931 -undgraph_del_vertices(G0, Vs, GF) :-undgraph_del_vertices225,4931 -undgraph_del_vertices(G0, Vs, GF) :-undgraph_del_vertices225,4931 -delete_all([], BackEdges, BackEdges) --> [].delete_all233,5250 -delete_all([], BackEdges, BackEdges) --> [].delete_all233,5250 -delete_all([], BackEdges, BackEdges) --> [].delete_all233,5250 -delete_all([V|Vs], BackEdges0, BackEdgesF, Vs0,Vsf) :-delete_all234,5295 -delete_all([V|Vs], BackEdges0, BackEdgesF, Vs0,Vsf) :-delete_all234,5295 -delete_all([V|Vs], BackEdges0, BackEdgesF, Vs0,Vsf) :-delete_all234,5295 -delete_remaining_edges(SortedVs, TrueBackEdges, Vs0,Vsf) :-delete_remaining_edges239,5480 -delete_remaining_edges(SortedVs, TrueBackEdges, Vs0,Vsf) :-delete_remaining_edges239,5480 -delete_remaining_edges(SortedVs, TrueBackEdges, Vs0,Vsf) :-delete_remaining_edges239,5480 -del_edges(ToRemove,E0,E) :-del_edges242,5604 -del_edges(ToRemove,E0,E) :-del_edges242,5604 -del_edges(ToRemove,E0,E) :-del_edges242,5604 -del_edge(ToRemove,E0,E) :-del_edge245,5663 -del_edge(ToRemove,E0,E) :-del_edge245,5663 -del_edge(ToRemove,E0,E) :-del_edge245,5663 -undgraph_min_tree(G, T) :-undgraph_min_tree248,5724 -undgraph_min_tree(G, T) :-undgraph_min_tree248,5724 -undgraph_min_tree(G, T) :-undgraph_min_tree248,5724 -undgraph_max_tree(G, T) :-undgraph_max_tree253,5846 -undgraph_max_tree(G, T) :-undgraph_max_tree253,5846 -undgraph_max_tree(G, T) :-undgraph_max_tree253,5846 -undgraph_components(Graph,[Map|Gs]) :-undgraph_components258,5968 -undgraph_components(Graph,[Map|Gs]) :-undgraph_components258,5968 -undgraph_components(Graph,[Map|Gs]) :-undgraph_components258,5968 -undgraph_components(_,[]).undgraph_components264,6200 -undgraph_components(_,[]).undgraph_components264,6200 -expand_component([], Map, Map, Graph, Graph).expand_component266,6229 -expand_component([], Map, Map, Graph, Graph).expand_component266,6229 -expand_component([C|Children], Map1, Map, Graph1, NGraph) :-expand_component267,6275 -expand_component([C|Children], Map1, Map, Graph1, NGraph) :-expand_component267,6275 -expand_component([C|Children], Map1, Map, Graph1, NGraph) :-expand_component267,6275 -expand_component([_|Children], Map1, Map, Graph1, NGraph) :-expand_component272,6521 -expand_component([_|Children], Map1, Map, Graph1, NGraph) :-expand_component272,6521 -expand_component([_|Children], Map1, Map, Graph1, NGraph) :-expand_component272,6521 -pick_node(Graph,Node,Children,Graph1) :-pick_node276,6642 -pick_node(Graph,Node,Children,Graph1) :-pick_node276,6642 -pick_node(Graph,Node,Children,Graph1) :-pick_node276,6642 - -library/Untitled,0 - -library/varnumbers.yap,945 -numbervars(Term) :-numbervars24,315 -numbervars(Term) :-numbervars24,315 -numbervars(Term) :-numbervars24,315 -max_var_number(V,Max,Max) :- var(V), !.max_var_number27,361 -max_var_number(V,Max,Max) :- var(V), !.max_var_number27,361 -max_var_number(V,Max,Max) :- var(V), !.max_var_number27,361 -max_var_number('$VAR'(I),Max0,Max) :- !,max_var_number28,401 -max_var_number('$VAR'(I),Max0,Max) :- !,max_var_number28,401 -max_var_number('$VAR'(I),Max0,Max) :- !,max_var_number28,401 -max_var_number(S,Max0,Max) :-max_var_number30,463 -max_var_number(S,Max0,Max) :-max_var_number30,463 -max_var_number(S,Max0,Max) :-max_var_number30,463 -max_var_numberl(I0,Ar,T,Max0,Max) :-max_var_numberl34,547 -max_var_numberl(I0,Ar,T,Max0,Max) :-max_var_numberl34,547 -max_var_numberl(I0,Ar,T,Max0,Max) :-max_var_numberl34,547 -varnumbers(GT, VT) :-varnumbers44,729 -varnumbers(GT, VT) :-varnumbers44,729 -varnumbers(GT, VT) :-varnumbers44,729 - -library/wdgraphs.yap,19966 -wdgraph_new(Vertices) :-wdgraph_new87,1610 -wdgraph_new(Vertices) :-wdgraph_new87,1610 -wdgraph_new(Vertices) :-wdgraph_new87,1610 -wdgraph_add_vertices_and_edges(Vs0,Vertices,Edges,Vs2) :-wdgraph_add_vertices_and_edges90,1655 -wdgraph_add_vertices_and_edges(Vs0,Vertices,Edges,Vs2) :-wdgraph_add_vertices_and_edges90,1655 -wdgraph_add_vertices_and_edges(Vs0,Vertices,Edges,Vs2) :-wdgraph_add_vertices_and_edges90,1655 -wdgraph_add_edge(Vs0,V1,V2,Weight,Vs2) :-wdgraph_add_edge95,1795 -wdgraph_add_edge(Vs0,V1,V2,Weight,Vs2) :-wdgraph_add_edge95,1795 -wdgraph_add_edge(Vs0,V1,V2,Weight,Vs2) :-wdgraph_add_edge95,1795 -wdgraph_add_edges(V0, Edges, VF) :-wdgraph_add_edges99,1911 -wdgraph_add_edges(V0, Edges, VF) :-wdgraph_add_edges99,1911 -wdgraph_add_edges(V0, Edges, VF) :-wdgraph_add_edges99,1911 -wdgraph_add_edges(G0, Edges, GF) :-wdgraph_add_edges106,2156 -wdgraph_add_edges(G0, Edges, GF) :-wdgraph_add_edges106,2156 -wdgraph_add_edges(G0, Edges, GF) :-wdgraph_add_edges106,2156 -all_vertices_in_wedges([],[]).all_vertices_in_wedges112,2346 -all_vertices_in_wedges([],[]).all_vertices_in_wedges112,2346 -all_vertices_in_wedges([V1-(V2-_)|Edges],[V1,V2|Vertices]) :-all_vertices_in_wedges113,2377 -all_vertices_in_wedges([V1-(V2-_)|Edges],[V1,V2|Vertices]) :-all_vertices_in_wedges113,2377 -all_vertices_in_wedges([V1-(V2-_)|Edges],[V1,V2|Vertices]) :-all_vertices_in_wedges113,2377 -edges2wgraphl([], [], []).edges2wgraphl116,2481 -edges2wgraphl([], [], []).edges2wgraphl116,2481 -edges2wgraphl([V|Vertices], [V-(V1-W)|SortedEdges], [V-[V1-W|Children]|GraphL]) :- !,edges2wgraphl117,2508 -edges2wgraphl([V|Vertices], [V-(V1-W)|SortedEdges], [V-[V1-W|Children]|GraphL]) :- !,edges2wgraphl117,2508 -edges2wgraphl([V|Vertices], [V-(V1-W)|SortedEdges], [V-[V1-W|Children]|GraphL]) :- !,edges2wgraphl117,2508 -edges2wgraphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2wgraphl120,2692 -edges2wgraphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2wgraphl120,2692 -edges2wgraphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2wgraphl120,2692 -add_edges([],[]) --> [].add_edges124,2800 -add_edges([],[]) --> [].add_edges124,2800 -add_edges([],[]) --> [].add_edges124,2800 -add_edges([VA|Vs],[VB-(V1-W)|Es]) --> { VA == VB }, !,add_edges125,2825 -add_edges([VA|Vs],[VB-(V1-W)|Es]) --> { VA == VB }, !,add_edges125,2825 -add_edges([VA|Vs],[VB-(V1-W)|Es]) --> { VA == VB }, !,add_edges125,2825 -add_edges([V|Vs],Es) --> !,add_edges129,2989 -add_edges([V|Vs],Es) --> !,add_edges129,2989 -add_edges([V|Vs],Es) --> !,add_edges129,2989 -get_extra_children([VA-(C-W)|Es],VB,[C-W|Children],REs) :- VA == VB, !,get_extra_children133,3067 -get_extra_children([VA-(C-W)|Es],VB,[C-W|Children],REs) :- VA == VB, !,get_extra_children133,3067 -get_extra_children([VA-(C-W)|Es],VB,[C-W|Children],REs) :- VA == VB, !,get_extra_children133,3067 -get_extra_children(Es,_,[],Es).get_extra_children135,3180 -get_extra_children(Es,_,[],Es).get_extra_children135,3180 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex138,3214 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex138,3214 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex138,3214 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex141,3335 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex141,3335 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex141,3335 -key_union([], [], []) :- !.key_union144,3410 -key_union([], [], []) :- !.key_union144,3410 -key_union([], [], []) :- !.key_union144,3410 -key_union([], [C|Children], [C|Children]).key_union145,3438 -key_union([], [C|Children], [C|Children]).key_union145,3438 -key_union([C|Children], [], [C|Children]) :- !.key_union146,3481 -key_union([C|Children], [], [C|Children]) :- !.key_union146,3481 -key_union([C|Children], [], [C|Children]) :- !.key_union146,3481 -key_union([K-W|ToAdd], [K1-W1|Children0], NewUnion) :-key_union147,3529 -key_union([K-W|ToAdd], [K1-W1|Children0], NewUnion) :-key_union147,3529 -key_union([K-W|ToAdd], [K1-W1|Children0], NewUnion) :-key_union147,3529 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge160,3884 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge160,3884 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge160,3884 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge162,3966 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge162,3966 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge162,3966 -insert_edge(V2, W, Children0, Children) :-insert_edge165,4033 -insert_edge(V2, W, Children0, Children) :-insert_edge165,4033 -insert_edge(V2, W, Children0, Children) :-insert_edge165,4033 -wdgraph_top_sort(WG,Q) :-wdgraph_top_sort168,4115 -wdgraph_top_sort(WG,Q) :-wdgraph_top_sort168,4115 -wdgraph_top_sort(WG,Q) :-wdgraph_top_sort168,4115 -wgraph_to_wdgraph(UG, DG) :-wgraph_to_wdgraph172,4193 -wgraph_to_wdgraph(UG, DG) :-wgraph_to_wdgraph172,4193 -wgraph_to_wdgraph(UG, DG) :-wgraph_to_wdgraph172,4193 -wdgraph_to_wgraph(DG, UG) :-wdgraph_to_wgraph175,4252 -wdgraph_to_wgraph(DG, UG) :-wdgraph_to_wgraph175,4252 -wdgraph_to_wgraph(DG, UG) :-wdgraph_to_wgraph175,4252 -wdgraph_edge(N1, N2, W, G) :-wdgraph_edge178,4301 -wdgraph_edge(N1, N2, W, G) :-wdgraph_edge178,4301 -wdgraph_edge(N1, N2, W, G) :-wdgraph_edge178,4301 -find_edge(N-W,[N1-W|_]) :- N == N1, !.find_edge182,4377 -find_edge(N-W,[N1-W|_]) :- N == N1, !.find_edge182,4377 -find_edge(N-W,[N1-W|_]) :- N == N1, !.find_edge182,4377 -find_edge(El,[_|Edges]) :-find_edge183,4416 -find_edge(El,[_|Edges]) :-find_edge183,4416 -find_edge(El,[_|Edges]) :-find_edge183,4416 -wdgraph_del_edge(Vs0, V1, V2, W, Vs) :-wdgraph_del_edge186,4466 -wdgraph_del_edge(Vs0, V1, V2, W, Vs) :-wdgraph_del_edge186,4466 -wdgraph_del_edge(Vs0, V1, V2, W, Vs) :-wdgraph_del_edge186,4466 -del_edge([K-W|Children], K1, W1, NewChildren) :-del_edge191,4645 -del_edge([K-W|Children], K1, W1, NewChildren) :-del_edge191,4645 -del_edge([K-W|Children], K1, W1, NewChildren) :-del_edge191,4645 -wdgraph_del_edges(G0, Edges, GF) :-wdgraph_del_edges201,4857 -wdgraph_del_edges(G0, Edges, GF) :-wdgraph_del_edges201,4857 -wdgraph_del_edges(G0, Edges, GF) :-wdgraph_del_edges201,4857 -continue_del_edges([]) --> [].continue_del_edges205,4962 -continue_del_edges([]) --> [].continue_del_edges205,4962 -continue_del_edges([]) --> [].continue_del_edges205,4962 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges206,4993 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges206,4993 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges206,4993 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex211,5136 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex211,5136 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex211,5136 -del_vertices(Children, [], Children).del_vertices216,5321 -del_vertices(Children, [], Children).del_vertices216,5321 -del_vertices([K1-W1|Children0], [K-W|ToDel], NewChildren) :-del_vertices217,5359 -del_vertices([K1-W1|Children0], [K-W|ToDel], NewChildren) :-del_vertices217,5359 -del_vertices([K1-W1|Children0], [K-W|ToDel], NewChildren) :-del_vertices217,5359 -wdgraph_del_vertex(Vs0, V, Vsf) :-wdgraph_del_vertex227,5616 -wdgraph_del_vertex(Vs0, V, Vsf) :-wdgraph_del_vertex227,5616 -wdgraph_del_vertex(Vs0, V, Vsf) :-wdgraph_del_vertex227,5616 -delete_wedge(_, [], []).delete_wedge231,5713 -delete_wedge(_, [], []).delete_wedge231,5713 -delete_wedge(V, [K-W|Children], NewChildren) :-delete_wedge232,5738 -delete_wedge(V, [K-W|Children], NewChildren) :-delete_wedge232,5738 -delete_wedge(V, [K-W|Children], NewChildren) :-delete_wedge232,5738 -wdgraph_del_vertices(G0, Vs, GF) :-wdgraph_del_vertices243,5958 -wdgraph_del_vertices(G0, Vs, GF) :-wdgraph_del_vertices243,5958 -wdgraph_del_vertices(G0, Vs, GF) :-wdgraph_del_vertices243,5958 -delete_all([]) --> [].delete_all250,6195 -delete_all([]) --> [].delete_all250,6195 -delete_all([]) --> [].delete_all250,6195 -delete_all([V|Vs],Vs0,Vsf) :-delete_all251,6218 -delete_all([V|Vs],Vs0,Vsf) :-delete_all251,6218 -delete_all([V|Vs],Vs0,Vsf) :-delete_all251,6218 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges255,6299 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges255,6299 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges255,6299 -del_possible_edges([], [], []).del_possible_edges258,6393 -del_possible_edges([], [], []).del_possible_edges258,6393 -del_possible_edges([], [C|Children], [C|Children]).del_possible_edges259,6425 -del_possible_edges([], [C|Children], [C|Children]).del_possible_edges259,6425 -del_possible_edges([_|_], [], []).del_possible_edges260,6477 -del_possible_edges([_|_], [], []).del_possible_edges260,6477 -del_possible_edges([K|ToDel], [K1-W1|Children0], NewChildren) :-del_possible_edges261,6512 -del_possible_edges([K|ToDel], [K1-W1|Children0], NewChildren) :-del_possible_edges261,6512 -del_possible_edges([K|ToDel], [K1-W1|Children0], NewChildren) :-del_possible_edges261,6512 -wdgraph_to_dgraph(WG, DG) :-wdgraph_to_dgraph272,6837 -wdgraph_to_dgraph(WG, DG) :-wdgraph_to_dgraph272,6837 -wdgraph_to_dgraph(WG, DG) :-wdgraph_to_dgraph272,6837 -cvt_wedges([], []).cvt_wedges276,6943 -cvt_wedges([], []).cvt_wedges276,6943 -cvt_wedges([V-WEs|EdgesList0], [V-Es|EdgesList]) :-cvt_wedges277,6963 -cvt_wedges([V-WEs|EdgesList0], [V-Es|EdgesList]) :-cvt_wedges277,6963 -cvt_wedges([V-WEs|EdgesList0], [V-Es|EdgesList]) :-cvt_wedges277,6963 -cvt_wneighbs([], []).cvt_wneighbs281,7076 -cvt_wneighbs([], []).cvt_wneighbs281,7076 -cvt_wneighbs([V-_|WEs], [V|Es]) :-cvt_wneighbs282,7098 -cvt_wneighbs([V-_|WEs], [V|Es]) :-cvt_wneighbs282,7098 -cvt_wneighbs([V-_|WEs], [V|Es]) :-cvt_wneighbs282,7098 -dgraph_to_wdgraph(DG, WG) :-dgraph_to_wdgraph285,7158 -dgraph_to_wdgraph(DG, WG) :-dgraph_to_wdgraph285,7158 -dgraph_to_wdgraph(DG, WG) :-dgraph_to_wdgraph285,7158 -cvt_edges([], []).cvt_edges289,7265 -cvt_edges([], []).cvt_edges289,7265 -cvt_edges([V-Es|EdgesList0], [V-WEs|WEdgeList]) :-cvt_edges290,7284 -cvt_edges([V-Es|EdgesList0], [V-WEs|WEdgeList]) :-cvt_edges290,7284 -cvt_edges([V-Es|EdgesList0], [V-WEs|WEdgeList]) :-cvt_edges290,7284 -cvt_neighbs([], []).cvt_neighbs294,7394 -cvt_neighbs([], []).cvt_neighbs294,7394 -cvt_neighbs([V|WEs], [V-1|Es]) :-cvt_neighbs295,7415 -cvt_neighbs([V|WEs], [V-1|Es]) :-cvt_neighbs295,7415 -cvt_neighbs([V|WEs], [V-1|Es]) :-cvt_neighbs295,7415 -wdgraph_neighbors(V, WG, Neighbors) :-wdgraph_neighbors298,7473 -wdgraph_neighbors(V, WG, Neighbors) :-wdgraph_neighbors298,7473 -wdgraph_neighbors(V, WG, Neighbors) :-wdgraph_neighbors298,7473 -wdgraph_neighbours(V, WG, Neighbors) :-wdgraph_neighbours302,7582 -wdgraph_neighbours(V, WG, Neighbors) :-wdgraph_neighbours302,7582 -wdgraph_neighbours(V, WG, Neighbors) :-wdgraph_neighbours302,7582 -wdgraph_wneighbors(V, WG, Neighbors) :-wdgraph_wneighbors306,7692 -wdgraph_wneighbors(V, WG, Neighbors) :-wdgraph_wneighbors306,7692 -wdgraph_wneighbors(V, WG, Neighbors) :-wdgraph_wneighbors306,7692 -wdgraph_wneighbours(V, WG, Neighbors) :-wdgraph_wneighbours309,7763 -wdgraph_wneighbours(V, WG, Neighbors) :-wdgraph_wneighbours309,7763 -wdgraph_wneighbours(V, WG, Neighbors) :-wdgraph_wneighbours309,7763 -wdgraph_transpose(Graph, TGraph) :-wdgraph_transpose312,7835 -wdgraph_transpose(Graph, TGraph) :-wdgraph_transpose312,7835 -wdgraph_transpose(Graph, TGraph) :-wdgraph_transpose312,7835 -wtedges([],[]).wtedges319,8025 -wtedges([],[]).wtedges319,8025 -wtedges([V-Vs|Edges],TEdges) :-wtedges320,8041 -wtedges([V-Vs|Edges],TEdges) :-wtedges320,8041 -wtedges([V-Vs|Edges],TEdges) :-wtedges320,8041 -fill_wtedges([], _, TEdges, TEdges).fill_wtedges324,8138 -fill_wtedges([], _, TEdges, TEdges).fill_wtedges324,8138 -fill_wtedges([V1-W|Vs], V, [V1-(V-W)|TEdges], TEdges0) :-fill_wtedges325,8175 -fill_wtedges([V1-W|Vs], V, [V1-(V-W)|TEdges], TEdges0) :-fill_wtedges325,8175 -fill_wtedges([V1-W|Vs], V, [V1-(V-W)|TEdges], TEdges0) :-fill_wtedges325,8175 -fill_nodes([],[]).fill_nodes329,8274 -fill_nodes([],[]).fill_nodes329,8274 -fill_nodes([V-[Child|MoreChildren]|Nodes],[V-Child|Edges]) :- !,fill_nodes330,8293 -fill_nodes([V-[Child|MoreChildren]|Nodes],[V-Child|Edges]) :- !,fill_nodes330,8293 -fill_nodes([V-[Child|MoreChildren]|Nodes],[V-Child|Edges]) :- !,fill_nodes330,8293 -fill_nodes([_-[]|Edges],TEdges) :-fill_nodes333,8435 -fill_nodes([_-[]|Edges],TEdges) :-fill_nodes333,8435 -fill_nodes([_-[]|Edges],TEdges) :-fill_nodes333,8435 -wdgraph_transitive_closure(G,Closure) :-wdgraph_transitive_closure336,8498 -wdgraph_transitive_closure(G,Closure) :-wdgraph_transitive_closure336,8498 -wdgraph_transitive_closure(G,Closure) :-wdgraph_transitive_closure336,8498 -continue_closure([], Closure, Closure) :- !.continue_closure340,8600 -continue_closure([], Closure, Closure) :- !.continue_closure340,8600 -continue_closure([], Closure, Closure) :- !.continue_closure340,8600 -continue_closure(Edges, G, Closure) :-continue_closure341,8645 -continue_closure(Edges, G, Closure) :-continue_closure341,8645 -continue_closure(Edges, G, Closure) :-continue_closure341,8645 -transit_wgraph([],_,[]).transit_wgraph346,8799 -transit_wgraph([],_,[]).transit_wgraph346,8799 -transit_wgraph([V-(V1-W)|Edges],G,NewEdges) :-transit_wgraph347,8824 -transit_wgraph([V-(V1-W)|Edges],G,NewEdges) :-transit_wgraph347,8824 -transit_wgraph([V-(V1-W)|Edges],G,NewEdges) :-transit_wgraph347,8824 -transit_wgraph2([], _, _, _, NewEdges, NewEdges).transit_wgraph2352,9007 -transit_wgraph2([], _, _, _, NewEdges, NewEdges).transit_wgraph2352,9007 -transit_wgraph2([GC|GrandChildren], V, W, G, NewEdges, MoreEdges) :-transit_wgraph2353,9057 -transit_wgraph2([GC|GrandChildren], V, W, G, NewEdges, MoreEdges) :-transit_wgraph2353,9057 -transit_wgraph2([GC|GrandChildren], V, W, G, NewEdges, MoreEdges) :-transit_wgraph2353,9057 -transit_wgraph2([GC-W1|GrandChildren], V, W2, G, [V-(GC-W)|NewEdges], MoreEdges) :-transit_wgraph2356,9210 -transit_wgraph2([GC-W1|GrandChildren], V, W2, G, [V-(GC-W)|NewEdges], MoreEdges) :-transit_wgraph2356,9210 -transit_wgraph2([GC-W1|GrandChildren], V, W2, G, [V-(GC-W)|NewEdges], MoreEdges) :-transit_wgraph2356,9210 -is_edge(V1,V2,G) :-is_edge360,9372 -is_edge(V1,V2,G) :-is_edge360,9372 -is_edge(V1,V2,G) :-is_edge360,9372 -wdgraph_symmetric_closure(G,S) :-wdgraph_symmetric_closure364,9448 -wdgraph_symmetric_closure(G,S) :-wdgraph_symmetric_closure364,9448 -wdgraph_symmetric_closure(G,S) :-wdgraph_symmetric_closure364,9448 -invert_wedges([], []).invert_wedges369,9591 -invert_wedges([], []).invert_wedges369,9591 -invert_wedges([V1-(V2-W)|WEdges], [V2-(V1-W)|InvertedWEdges]) :-invert_wedges370,9614 -invert_wedges([V1-(V2-W)|WEdges], [V2-(V1-W)|InvertedWEdges]) :-invert_wedges370,9614 -invert_wedges([V1-(V2-W)|WEdges], [V2-(V1-W)|InvertedWEdges]) :-invert_wedges370,9614 -wdgraph_min_path(V1, V2, WGraph, Path, Cost) :-wdgraph_min_path373,9720 -wdgraph_min_path(V1, V2, WGraph, Path, Cost) :-wdgraph_min_path373,9720 -wdgraph_min_path(V1, V2, WGraph, Path, Cost) :-wdgraph_min_path373,9720 -wdgraph_max_path(V1, V2, WGraph0, Path, Cost) :-wdgraph_max_path382,9998 -wdgraph_max_path(V1, V2, WGraph0, Path, Cost) :-wdgraph_max_path382,9998 -wdgraph_max_path(V1, V2, WGraph0, Path, Cost) :-wdgraph_max_path382,9998 -inv_costs([], []).inv_costs388,10183 -inv_costs([], []).inv_costs388,10183 -inv_costs([V-Es|Edges0], [V-NEs|Edges]) :-inv_costs389,10202 -inv_costs([V-Es|Edges0], [V-NEs|Edges]) :-inv_costs389,10202 -inv_costs([V-Es|Edges0], [V-NEs|Edges]) :-inv_costs389,10202 -inv_costs2([],[]).inv_costs2393,10294 -inv_costs2([],[]).inv_costs2393,10294 -inv_costs2([V-E|Es],[V-NE|NEs]) :-inv_costs2394,10313 -inv_costs2([V-E|Es],[V-NE|NEs]) :-inv_costs2394,10313 -inv_costs2([V-E|Es],[V-NE|NEs]) :-inv_costs2394,10313 -queue_edges([], _, _, H, H).queue_edges398,10381 -queue_edges([], _, _, H, H).queue_edges398,10381 -queue_edges([V-W|Edges], V0, D0, H, NH) :-queue_edges399,10410 -queue_edges([V-W|Edges], V0, D0, H, NH) :-queue_edges399,10410 -queue_edges([V-W|Edges], V0, D0, H, NH) :-queue_edges399,10410 -dijkstra(H0, V2, WGraph, Status, Path0, PathF) :-dijkstra404,10538 -dijkstra(H0, V2, WGraph, Status, Path0, PathF) :-dijkstra404,10538 -dijkstra(H0, V2, WGraph, Status, Path0, PathF) :-dijkstra404,10538 -continue_dijkstra(_, V2, _, _, Path0, [e(V0,V2,W)|Path0], _, V0, V, W) :- V == V2, !.continue_dijkstra408,10700 -continue_dijkstra(_, V2, _, _, Path0, [e(V0,V2,W)|Path0], _, V0, V, W) :- V == V2, !.continue_dijkstra408,10700 -continue_dijkstra(_, V2, _, _, Path0, [e(V0,V2,W)|Path0], _, V0, V, W) :- V == V2, !.continue_dijkstra408,10700 -continue_dijkstra(H1, V2, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra409,10786 -continue_dijkstra(H1, V2, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra409,10786 -continue_dijkstra(H1, V2, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra409,10786 -continue_dijkstra(H1, V2, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra413,10960 -continue_dijkstra(H1, V2, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra413,10960 -continue_dijkstra(H1, V2, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra413,10960 -backtrace([], _, Path, Path, Cost, Cost).backtrace420,11197 -backtrace([], _, Path, Path, Cost, Cost).backtrace420,11197 -backtrace([e(V0,V,C)|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace421,11239 -backtrace([e(V0,V,C)|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace421,11239 -backtrace([e(V0,V,C)|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace421,11239 -backtrace([_|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace425,11387 -backtrace([_|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace425,11387 -backtrace([_|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace425,11387 -wdgraph_min_paths(V1, WGraph, T) :-wdgraph_min_paths429,11492 -wdgraph_min_paths(V1, WGraph, T) :-wdgraph_min_paths429,11492 -wdgraph_min_paths(V1, WGraph, T) :-wdgraph_min_paths429,11492 -dijkstra(H0, WGraph, Status, Path0, PathF) :-dijkstra440,11760 -dijkstra(H0, WGraph, Status, Path0, PathF) :-dijkstra440,11760 -dijkstra(H0, WGraph, Status, Path0, PathF) :-dijkstra440,11760 -dijkstra(_, _, _, Path, Path).dijkstra443,11916 -dijkstra(_, _, _, Path, Path).dijkstra443,11916 -continue_dijkstra(H1, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra445,11948 -continue_dijkstra(H1, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra445,11948 -continue_dijkstra(H1, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra445,11948 -continue_dijkstra(H1, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra449,12114 -continue_dijkstra(H1, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra449,12114 -continue_dijkstra(H1, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra449,12114 -wdgraph_path(V, WG, P) :-wdgraph_path455,12341 -wdgraph_path(V, WG, P) :-wdgraph_path455,12341 -wdgraph_path(V, WG, P) :-wdgraph_path455,12341 -wdgraph_reachable(V, G, Edges) :-wdgraph_reachable459,12418 -wdgraph_reachable(V, G, Edges) :-wdgraph_reachable459,12418 -wdgraph_reachable(V, G, Edges) :-wdgraph_reachable459,12418 -reachable([], Done, Done, _, Edges, Edges).reachable464,12562 -reachable([], Done, Done, _, Edges, Edges).reachable464,12562 -reachable([V-_|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable465,12606 -reachable([V-_|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable465,12606 -reachable([V-_|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable465,12606 -reachable([V-_|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable468,12750 -reachable([V-_|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable468,12750 -reachable([V-_|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable468,12750 - -library/wgraphs.yap,255 -vertices_edges_to_wgraph(Vertices, Edges, Graph) :-vertices_edges_to_wgraph55,1371 -vertices_edges_to_wgraph(Vertices, Edges, Graph) :-vertices_edges_to_wgraph55,1371 -vertices_edges_to_wgraph(Vertices, Edges, Graph) :-vertices_edges_to_wgraph55,1371 - -library/wundgraphs.yap,7330 -wundgraph_add_edge(Vs0, V1, V2, K, Vs2) :-wundgraph_add_edge78,1805 -wundgraph_add_edge(Vs0, V1, V2, K, Vs2) :-wundgraph_add_edge78,1805 -wundgraph_add_edge(Vs0, V1, V2, K, Vs2) :-wundgraph_add_edge78,1805 -wundgraph_add_edges(G0, Edges, GF) :-wundgraph_add_edges82,1940 -wundgraph_add_edges(G0, Edges, GF) :-wundgraph_add_edges82,1940 -wundgraph_add_edges(G0, Edges, GF) :-wundgraph_add_edges82,1940 -dup_edges([],[]).dup_edges86,2046 -dup_edges([],[]).dup_edges86,2046 -dup_edges([E1-(E2-K)|Edges], [E1-(E2-K),E2-(E1-K)|DupEdges]) :-dup_edges87,2064 -dup_edges([E1-(E2-K)|Edges], [E1-(E2-K),E2-(E1-K)|DupEdges]) :-dup_edges87,2064 -dup_edges([E1-(E2-K)|Edges], [E1-(E2-K),E2-(E1-K)|DupEdges]) :-dup_edges87,2064 -wundgraph_edges(Vs, Edges) :-wundgraph_edges90,2158 -wundgraph_edges(Vs, Edges) :-wundgraph_edges90,2158 -wundgraph_edges(Vs, Edges) :-wundgraph_edges90,2158 -remove_dups([],[]).remove_dups94,2249 -remove_dups([],[]).remove_dups94,2249 -remove_dups([V1-(V2-K)|DupEdges],NEdges) :- V1 @< V2, !,remove_dups95,2269 -remove_dups([V1-(V2-K)|DupEdges],NEdges) :- V1 @< V2, !,remove_dups95,2269 -remove_dups([V1-(V2-K)|DupEdges],NEdges) :- V1 @< V2, !,remove_dups95,2269 -remove_dups([_|DupEdges],Edges) :-remove_dups98,2385 -remove_dups([_|DupEdges],Edges) :-remove_dups98,2385 -remove_dups([_|DupEdges],Edges) :-remove_dups98,2385 -wundgraph_neighbours(V,Vertices,Children) :-wundgraph_neighbours101,2451 -wundgraph_neighbours(V,Vertices,Children) :-wundgraph_neighbours101,2451 -wundgraph_neighbours(V,Vertices,Children) :-wundgraph_neighbours101,2451 -wundgraph_neighbors(V,Vertices,Children) :-wundgraph_neighbors110,2623 -wundgraph_neighbors(V,Vertices,Children) :-wundgraph_neighbors110,2623 -wundgraph_neighbors(V,Vertices,Children) :-wundgraph_neighbors110,2623 -wundgraph_wneighbours(V,Vertices,Children) :-wundgraph_wneighbours120,2795 -wundgraph_wneighbours(V,Vertices,Children) :-wundgraph_wneighbours120,2795 -wundgraph_wneighbours(V,Vertices,Children) :-wundgraph_wneighbours120,2795 -wundgraph_wneighbors(V,Vertices,Children) :-wundgraph_wneighbors129,2970 -wundgraph_wneighbors(V,Vertices,Children) :-wundgraph_wneighbors129,2970 -wundgraph_wneighbors(V,Vertices,Children) :-wundgraph_wneighbors129,2970 -del_me([], _, []).del_me139,3145 -del_me([], _, []).del_me139,3145 -del_me([K|Children], K1, NewChildren) :-del_me140,3164 -del_me([K|Children], K1, NewChildren) :-del_me140,3164 -del_me([K|Children], K1, NewChildren) :-del_me140,3164 -wdel_me([], _, []).wdel_me152,3425 -wdel_me([], _, []).wdel_me152,3425 -wdel_me([K-A|Children], K1, NewChildren) :-wdel_me153,3445 -wdel_me([K-A|Children], K1, NewChildren) :-wdel_me153,3445 -wdel_me([K-A|Children], K1, NewChildren) :-wdel_me153,3445 -wundgraph_del_edge(Vs0,V1,V2,K,VsF) :-wundgraph_del_edge165,3714 -wundgraph_del_edge(Vs0,V1,V2,K,VsF) :-wundgraph_del_edge165,3714 -wundgraph_del_edge(Vs0,V1,V2,K,VsF) :-wundgraph_del_edge165,3714 -wundgraph_del_edges(G0, Edges, GF) :-wundgraph_del_edges169,3826 -wundgraph_del_edges(G0, Edges, GF) :-wundgraph_del_edges169,3826 -wundgraph_del_edges(G0, Edges, GF) :-wundgraph_del_edges169,3826 -wundgraph_del_vertex(Vs0, V, Vsf) :-wundgraph_del_vertex173,3931 -wundgraph_del_vertex(Vs0, V, Vsf) :-wundgraph_del_vertex173,3931 -wundgraph_del_vertex(Vs0, V, Vsf) :-wundgraph_del_vertex173,3931 -del_and_compact([], _, []).del_and_compact178,4103 -del_and_compact([], _, []).del_and_compact178,4103 -del_and_compact([K-_|Children], K1, NewChildren) :-del_and_compact179,4131 -del_and_compact([K-_|Children], K1, NewChildren) :-del_and_compact179,4131 -del_and_compact([K-_|Children], K1, NewChildren) :-del_and_compact179,4131 -compact([], []).compact191,4426 -compact([], []).compact191,4426 -compact([K-_|Children], [K|CompactChildren]) :-compact192,4443 -compact([K-_|Children], [K|CompactChildren]) :-compact192,4443 -compact([K-_|Children], [K|CompactChildren]) :-compact192,4443 -del_edge(_, [], []).del_edge196,4530 -del_edge(_, [], []).del_edge196,4530 -del_edge(K1, [K-W|Children], NewChildren) :-del_edge197,4551 -del_edge(K1, [K-W|Children], NewChildren) :-del_edge197,4551 -del_edge(K1, [K-W|Children], NewChildren) :-del_edge197,4551 -wundgraph_to_wdgraph(G, G).wundgraph_to_wdgraph208,4780 -wundgraph_to_wdgraph(G, G).wundgraph_to_wdgraph208,4780 -wundgraph_min_tree(G, T, C) :-wundgraph_min_tree214,4915 -wundgraph_min_tree(G, T, C) :-wundgraph_min_tree214,4915 -wundgraph_min_tree(G, T, C) :-wundgraph_min_tree214,4915 -generate_min_tree([], T, 0) :- !,generate_min_tree218,4999 -generate_min_tree([], T, 0) :- !,generate_min_tree218,4999 -generate_min_tree([], T, 0) :- !,generate_min_tree218,4999 -generate_min_tree([El-_], T, 0) :- !,generate_min_tree220,5052 -generate_min_tree([El-_], T, 0) :- !,generate_min_tree220,5052 -generate_min_tree([El-_], T, 0) :- !,generate_min_tree220,5052 -generate_min_tree(Els0, T, C) :-generate_min_tree223,5144 -generate_min_tree(Els0, T, C) :-generate_min_tree223,5144 -generate_min_tree(Els0, T, C) :-generate_min_tree223,5144 -wundgraph_max_tree(G, T, C) :-wundgraph_max_tree231,5359 -wundgraph_max_tree(G, T, C) :-wundgraph_max_tree231,5359 -wundgraph_max_tree(G, T, C) :-wundgraph_max_tree231,5359 -generate_max_tree([], T, 0) :- !,generate_max_tree235,5443 -generate_max_tree([], T, 0) :- !,generate_max_tree235,5443 -generate_max_tree([], T, 0) :- !,generate_max_tree235,5443 -generate_max_tree([El-_], T, 0) :- !,generate_max_tree237,5496 -generate_max_tree([El-_], T, 0) :- !,generate_max_tree237,5496 -generate_max_tree([El-_], T, 0) :- !,generate_max_tree237,5496 -generate_max_tree(Els0, T, C) :-generate_max_tree240,5588 -generate_max_tree(Els0, T, C) :-generate_max_tree240,5588 -generate_max_tree(Els0, T, C) :-generate_max_tree240,5588 -mk_list_of_edges([], []).mk_list_of_edges249,5843 -mk_list_of_edges([], []).mk_list_of_edges249,5843 -mk_list_of_edges([V-Els|Els0], Edges) :-mk_list_of_edges250,5869 -mk_list_of_edges([V-Els|Els0], Edges) :-mk_list_of_edges250,5869 -mk_list_of_edges([V-Els|Els0], Edges) :-mk_list_of_edges250,5869 -add_neighbs([], _, Edges, Edges).add_neighbs254,5981 -add_neighbs([], _, Edges, Edges).add_neighbs254,5981 -add_neighbs([V-W|Els], V0, [W-(V0-V)|Edges], Edges0) :-add_neighbs255,6015 -add_neighbs([V-W|Els], V0, [W-(V0-V)|Edges], Edges0) :-add_neighbs255,6015 -add_neighbs([V-W|Els], V0, [W-(V0-V)|Edges], Edges0) :-add_neighbs255,6015 -add_neighbs([_|Els], V0, Edges, Edges0) :-add_neighbs258,6122 -add_neighbs([_|Els], V0, Edges, Edges0) :-add_neighbs258,6122 -add_neighbs([_|Els], V0, Edges, Edges0) :-add_neighbs258,6122 -add_sorted_edges([], _, [], C, C).add_sorted_edges262,6206 -add_sorted_edges([], _, [], C, C).add_sorted_edges262,6206 -add_sorted_edges([W-(V0-V)|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges263,6241 -add_sorted_edges([W-(V0-V)|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges263,6241 -add_sorted_edges([W-(V0-V)|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges263,6241 -add_sorted_edges([_|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges292,7081 -add_sorted_edges([_|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges292,7081 -add_sorted_edges([_|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges292,7081 - -library/ypp.yap,3209 -ypp_state(State):-ypp_state44,1274 -ypp_state(State):-ypp_state44,1274 -ypp_state(State):-ypp_state44,1274 -ypp_state(State):-ypp_state48,1331 -ypp_state(State):-ypp_state48,1331 -ypp_state(State):-ypp_state48,1331 -ypp_define(Name,Value):-ypp_define52,1374 -ypp_define(Name,Value):-ypp_define52,1374 -ypp_define(Name,Value):-ypp_define52,1374 -ypp_undefine(Name):-ypp_undefine56,1456 -ypp_undefine(Name):-ypp_undefine56,1456 -ypp_undefine(Name):-ypp_undefine56,1456 -ypp_extcmd(Cmd):-ypp_extcmd60,1512 -ypp_extcmd(Cmd):-ypp_extcmd60,1512 -ypp_extcmd(Cmd):-ypp_extcmd60,1512 -ypp_extcmd(Cmd):-ypp_extcmd64,1609 -ypp_extcmd(Cmd):-ypp_extcmd64,1609 -ypp_extcmd(Cmd):-ypp_extcmd64,1609 -ypp_consult(File):-ypp_consult68,1680 -ypp_consult(File):-ypp_consult68,1680 -ypp_consult(File):-ypp_consult68,1680 -ypp_reconsult(File):-ypp_reconsult72,1769 -ypp_reconsult(File):-ypp_reconsult72,1769 -ypp_reconsult(File):-ypp_reconsult72,1769 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -get_state(State):-get_state82,2147 -get_state(State):-get_state82,2147 -get_state(State):-get_state82,2147 -store_define(Name,_Value):-store_define87,2232 -store_define(Name,_Value):-store_define87,2232 -store_define(Name,_Value):-store_define87,2232 -store_define(Name,Value):-store_define91,2331 -store_define(Name,Value):-store_define91,2331 -store_define(Name,Value):-store_define91,2331 -store_define(Name,Value):-store_define95,2416 -store_define(Name,Value):-store_define95,2416 -store_define(Name,Value):-store_define95,2416 -store_define(_Name,_Value).store_define98,2488 -store_define(_Name,_Value).store_define98,2488 -system_variable( 'YAPLIBDIR' ).system_variable100,2517 -system_variable( 'YAPLIBDIR' ).system_variable100,2517 -system_variable( 'YAPSHAREDIR' ).system_variable101,2549 -system_variable( 'YAPSHAREDIR' ).system_variable101,2549 -system_variable( 'YAPBINDIR' ).system_variable102,2583 -system_variable( 'YAPBINDIR' ).system_variable102,2583 -del_define(Name):-del_define105,2617 -del_define(Name):-del_define105,2617 -del_define(Name):-del_define105,2617 -defines2string(S):-defines2string110,2728 -defines2string(S):-defines2string110,2728 -defines2string(S):-defines2string110,2728 -mergedefs([],_,'').mergedefs115,2847 -mergedefs([],_,'').mergedefs115,2847 -mergedefs([d(Name,Val)|RDefs],Pref,S):-mergedefs116,2867 -mergedefs([d(Name,Val)|RDefs],Pref,S):-mergedefs116,2867 -mergedefs([d(Name,Val)|RDefs],Pref,S):-mergedefs116,2867 -ypp_file(File,PPFile):-ypp_file121,2980 -ypp_file(File,PPFile):-ypp_file121,2980 -ypp_file(File,PPFile):-ypp_file121,2980 - -library/ytest/preds.yap,4883 -'$predicate_flags'(P, M, Flags0, Flags1) :-$predicate_flags3,22 -'$predicate_flags'(P, M, Flags0, Flags1) :-$predicate_flags3,22 -'$predicate_flags'(P, M, Flags0, Flags1) :-$predicate_flags3,22 -'$predicate_flags'(P, M, Flags0, Flags1) :-$predicate_flags12,204 -'$predicate_flags'(P, M, Flags0, Flags1) :-$predicate_flags12,204 -'$predicate_flags'(P, M, Flags0, Flags1) :-$predicate_flags12,204 -'$get_undefined_pred'(G,M,G,M0) :-$get_undefined_pred22,406 -'$get_undefined_pred'(G,M,G,M0) :-$get_undefined_pred22,406 -'$get_undefined_pred'(G,M,G,M0) :-$get_undefined_pred22,406 -'$get_undefined_pred'(G,M,G,OM) :-$get_undefined_pred24,492 -'$get_undefined_pred'(G,M,G,OM) :-$get_undefined_pred24,492 -'$get_undefined_pred'(G,M,G,OM) :-$get_undefined_pred24,492 -'$get_undefined_pred'(G,M,G,M0) :-$get_undefined_pred27,634 -'$get_undefined_pred'(G,M,G,M0) :-$get_undefined_pred27,634 -'$get_undefined_pred'(G,M,G,M0) :-$get_undefined_pred27,634 -'$get_undefined_pred'(G,M,G,M).$get_undefined_pred29,720 -'$get_undefined_pred'(G,M,G,M)./p,predicate,predicate definition29,720 -'$get_undefined_pred'(G,M,G,M).$get_undefined_pred29,720 -'$is_metapredicate'( call(_), _M) :- !.$is_metapredicate31,753 -'$is_metapredicate'( call(_), _M) :- !.$is_metapredicate31,753 -'$is_metapredicate'( call(_), _M) :- !.$is_metapredicate31,753 -'$is_metapredicate'( call(_,_), _M) :- !.$is_metapredicate32,793 -'$is_metapredicate'( call(_,_), _M) :- !.$is_metapredicate32,793 -'$is_metapredicate'( call(_,_), _M) :- !.$is_metapredicate32,793 -'$is_metapredicate'( G, M) :-$is_metapredicate33,835 -'$is_metapredicate'( G, M) :-$is_metapredicate33,835 -'$is_metapredicate'( G, M) :-$is_metapredicate33,835 -'$imported_predicate'(G,M,G,M0) :-$imported_predicate36,914 -'$imported_predicate'(G,M,G,M0) :-$imported_predicate36,914 -'$imported_predicate'(G,M,G,M0) :-$imported_predicate36,914 -'$is_system_predicate'( call(_), _M) :- !.$is_system_predicate39,998 -'$is_system_predicate'( call(_), _M) :- !.$is_system_predicate39,998 -'$is_system_predicate'( call(_), _M) :- !.$is_system_predicate39,998 -'$is_system_predicate'( call(_,_), _M) :- !.$is_system_predicate40,1041 -'$is_system_predicate'( call(_,_), _M) :- !.$is_system_predicate40,1041 -'$is_system_predicate'( call(_,_), _M) :- !.$is_system_predicate40,1041 -'$is_system_predicate'(G,M) :-$is_system_predicate41,1086 -'$is_system_predicate'(G,M) :-$is_system_predicate41,1086 -'$is_system_predicate'(G,M) :-$is_system_predicate41,1086 -'$is_multifile'(G,M) :-$is_multifile44,1157 -'$is_multifile'(G,M) :-$is_multifile44,1157 -'$is_multifile'(G,M) :-$is_multifile44,1157 -'$module_transparent'(_,_,_,_) :- fail.$module_transparent47,1222 -'$module_transparent'(_,_,_,_) :- fail.$module_transparent47,1222 -'$module_transparent'(_,_,_,_) :- fail.$module_transparent47,1222 -'$meta_predicate'(call,_M,1,call(0)) :- !.$meta_predicate49,1263 -'$meta_predicate'(call,_M,1,call(0)) :- !.$meta_predicate49,1263 -'$meta_predicate'(call,_M,1,call(0)) :- !.$meta_predicate49,1263 -'$meta_predicate'(call,_M,2,call(1,?)) :- !.$meta_predicate50,1306 -'$meta_predicate'(call,_M,2,call(1,?)) :- !.$meta_predicate50,1306 -'$meta_predicate'(call,_M,2,call(1,?)) :- !.$meta_predicate50,1306 -'$meta_predicate'(F,M,N,P) :-$meta_predicate51,1351 -'$meta_predicate'(F,M,N,P) :-$meta_predicate51,1351 -'$meta_predicate'(F,M,N,P) :-$meta_predicate51,1351 -user:term_expansion( ( :- '$meta_predicate'( _ ) ), [] ).term_expansion55,1453 -user:goal_expansion(_:'_user_expand_goal'(A, M, B), user:user_expand_goal(A, M, B) ).goal_expansion57,1512 -user_expand_goal(A, M, B) :-user_expand_goal60,1600 -user_expand_goal(A, M, B) :-user_expand_goal60,1600 -user_expand_goal(A, M, B) :-user_expand_goal60,1600 -user:goal_expansion(prolog:'$meta_predicate'(N,M,A,D) , user:mt( N, M, A, D) ).goal_expansion69,1846 -mt(N,M,A,D) :-mt71,1927 -mt(N,M,A,D) :-mt71,1927 -mt(N,M,A,D) :-mt71,1927 -'$full_clause_optimisation'(_H, _M, B, B).$full_clause_optimisation76,2012 -'$full_clause_optimisation'(_H, _M, B, B)./p,predicate,predicate definition76,2012 -'$full_clause_optimisation'(_H, _M, B, B).$full_clause_optimisation76,2012 -'$c_built_in'(G, _SM, _H, G).$c_built_in78,2056 -'$c_built_in'(G, _SM, _H, G)./p,predicate,predicate definition78,2056 -'$c_built_in'(G, _SM, _H, G).$c_built_in78,2056 -'$head_and_body'((H:-B),H,B) :- !.$head_and_body81,2088 -'$head_and_body'((H:-B),H,B) :- !.$head_and_body81,2088 -'$head_and_body'((H:-B),H,B) :- !.$head_and_body81,2088 -'$head_and_body'(H,H,true).$head_and_body82,2123 -'$head_and_body'(H,H,true)./p,predicate,predicate definition82,2123 -'$head_and_body'(H,H,true).$head_and_body82,2123 -'$yap_strip_module'(T,M,S) :-$yap_strip_module84,2152 -'$yap_strip_module'(T,M,S) :-$yap_strip_module84,2152 -'$yap_strip_module'(T,M,S) :-$yap_strip_module84,2152 - -library/ytest.yap,3724 -:- multifile test/1.multifile14,359 -:- multifile test/1.multifile14,359 -:- dynamic error/3, failed/3.dynamic16,381 -:- dynamic error/3, failed/3.dynamic16,381 -user:term_expansion( test( (A, B) ), ytest:test( Lab, Cond, Done ) ) :-term_expansion20,424 -user:term_expansion( test( (A, B) ), ytest:test( Lab, Cond, Done ) ) :-term_expansion20,424 -run_tests :-run_tests23,533 -run_tests :-run_tests27,600 -run_test(Lab, M) :-run_test30,628 -run_test(Lab, M) :-run_test30,628 -run_test(Lab, M) :-run_test30,628 -run_test(Lab,M) :-run_test40,948 -run_test(Lab,M) :-run_test40,948 -run_test(Lab,M) :-run_test40,948 -info((A,B), Lab, Cl, G) :- !,info50,1221 -info((A,B), Lab, Cl, G) :- !,info50,1221 -info((A,B), Lab, Cl, G) :- !,info50,1221 -info(A, _, _, _) :- var(A), !.info53,1301 -info(A, _, _, _) :- var(A), !.info53,1301 -info(A, _, _, _) :- var(A), !.info53,1301 -info(A returns B, _, (A returns B), g(_,ok)) :- !.info54,1332 -info(A returns B, _, (A returns B), g(_,ok)) :- !.info54,1332 -info(A returns B, _, (A returns B), g(_,ok)) :- !.info54,1332 -info(A, A, _, g(ok,_)) :- primitive(A), !.info55,1383 -info(A, A, _, g(ok,_)) :- primitive(A), !.info55,1383 -info(A, A, _, g(ok,_)) :- primitive(A), !.info55,1383 -info(_A, _, _, _).info56,1426 -info(_A, _, _, _).info56,1426 -do_returns(G0 , Sols0, Lab ) :-do_returns58,1446 -do_returns(G0 , Sols0, Lab ) :-do_returns58,1446 -do_returns(G0 , Sols0, Lab ) :-do_returns58,1446 -answer(G, V, Target0, Lab, answer(G)) :-answer67,1723 -answer(G, V, Target0, Lab, answer(G)) :-answer67,1723 -answer(G, V, Target0, Lab, answer(G)) :-answer67,1723 -step( I, Sols , G0, Sol, Lab ) :-step76,1871 -step( I, Sols , G0, Sol, Lab ) :-step76,1871 -step( I, Sols , G0, Sol, Lab ) :-step76,1871 -success( _, _) :-success102,2298 -success( _, _) :-success102,2298 -success( _, _) :-success102,2298 -error(_, G, E, _ , Lab) :-error106,2351 -error(_, G, E, _ , Lab) :-error106,2351 -error(_, G, E, _ , Lab) :-error106,2351 -failure( G, Pattern, Lab) :-failure111,2443 -failure( G, Pattern, Lab) :-failure111,2443 -failure( G, Pattern, Lab) :-failure111,2443 -reset( _ ) :-reset117,2545 -reset( _ ) :-reset117,2545 -reset( _ ) :-reset117,2545 -inc( I ) :-inc120,2592 -inc( I ) :-inc120,2592 -inc( I ) :-inc120,2592 -counter( I ) :-counter125,2685 -counter( I ) :-counter125,2685 -counter( I ) :-counter125,2685 -shutdown( _Streams, Refs ) :-shutdown129,2735 -shutdown( _Streams, Refs ) :-shutdown129,2735 -shutdown( _Streams, Refs ) :-shutdown129,2735 -test_error( Ball, e( Ball ) ).test_error133,2852 -test_error( Ball, e( Ball ) ).test_error133,2852 -fetch( 0, [ A ], A, []) :-fetch135,2884 -fetch( 0, [ A ], A, []) :-fetch135,2884 -fetch( 0, [ A ], A, []) :-fetch135,2884 -fetch( 0, [ A, B | _ ], A, B) :-fetch137,2919 -fetch( 0, [ A, B | _ ], A, B) :-fetch137,2919 -fetch( 0, [ A, B | _ ], A, B) :-fetch137,2919 -fetch( I0, [ _ | L ] , A, B) :-fetch139,2959 -fetch( I0, [ _ | L ] , A, B) :-fetch139,2959 -fetch( I0, [ _ | L ] , A, B) :-fetch139,2959 -show_bad :-show_bad144,3044 -show_bad :-show_bad150,3199 -end(done) :-end158,3370 -end(done) :-end158,3370 -end(done) :-end158,3370 -end(Ball) :-end162,3408 -end(Ball) :-end162,3408 -end(Ball) :-end162,3408 -assertall(Cls, REfs) :-assertall165,3447 -assertall(Cls, REfs) :-assertall165,3447 -assertall(Cls, REfs) :-assertall165,3447 -ensure_ground( g(Lab,Ok)) :-ensure_ground169,3532 -ensure_ground( g(Lab,Ok)) :-ensure_ground169,3532 -ensure_ground( g(Lab,Ok)) :-ensure_ground169,3532 -ensure_ground( g(Lab,Ok)) :-ensure_ground172,3610 -ensure_ground( g(Lab,Ok)) :-ensure_ground172,3610 -ensure_ground( g(Lab,Ok)) :-ensure_ground172,3610 - -misc/ATOMS,0 - -misc/buildatoms,0 - -misc/buildlocalglobal,0 - -misc/buildops,0 - -misc/buildswiatoms,0 - -misc/editors/prolog.js,40109 - var word = stream.current();word336,9660 - function plTokenString(quote) {plTokenString360,10525 - function plTokenQuasiQuotation(stream, state) {plTokenQuasiQuotation379,11223 - function plTokenComment(stream, state) {plTokenComment392,11575 - var ops = { "-->": { p:1200, t:"xfx" },ops.-->499,14715 - "comment": "comment",translType.comment574,17138 - "var": "variable-2", /* JavaScript Types */translType.var575,17167 - "atom": "atom",translType.atom576,17218 - "qatom": "atom",translType.qatom577,17241 - "bqstring": "string",translType.bqstring578,17265 - "symbol": "atom",translType.symbol579,17294 - "functor": "keyword",translType.functor580,17319 - "tag": "tag",translType.tag581,17348 - "number": "number",translType.number582,17369 - "string": "string",translType.string583,17396 - "code": "number",translType.code584,17423 - "neg-number": "number",translType.neg-number585,17448 - "pos-number": "number",translType.pos-number586,17479 - "list_open": "bracket",translType.list_open587,17510 - "list_close": "bracket",translType.list_close588,17541 - "qq_open": "bracket",translType.qq_open589,17573 - "qq_sep": "operator",translType.qq_sep590,17602 - "qq_close": "bracket",translType.qq_close591,17631 - "dict_open": "bracket",translType.dict_open592,17661 - "dict_close": "bracket",translType.dict_close593,17692 - "brace_term_open": "bracket",translType.brace_term_open594,17724 - "brace_term_close": "bracket",translType.brace_term_close595,17761 - "neck": "keyword",translType.neck596,17799 - "fullstop": "keyword"translType.fullstop597,17825 - "asserta": "prolog",builtins.asserta601,17881 - "atomic_list_concat": "prolog",builtins.atomic_list_concat602,17909 - "char_type": "prolog",builtins.char_type603,17948 - "compile_expressions": "prolog",builtins.compile_expressions604,17978 - "compile": "prolog",builtins.compile605,18018 - "create_prolog_flag": "prolog",builtins.create_prolog_flag606,18046 - "current_module": "prolog",builtins.current_module607,18085 - "current_op": "prolog",builtins.current_op608,18120 - "del_attrs": "prolog",builtins.del_attrs609,18151 - "depth_bound_call": "prolog",builtins.depth_bound_call610,18181 - "dule": "prolog",builtins.dule611,18218 - "exo_files": "prolog",builtins.exo_files612,18243 - "export_list": "prolog",builtins.export_list613,18273 - "foreign_directory": "prolog",builtins.foreign_directory614,18305 - "garbage_collect_atoms": "prolog",builtins.garbage_collect_atoms615,18343 - "garbage_collect": "prolog",builtins.garbage_collect616,18385 - "get_attrs": "prolog",builtins.get_attrs617,18421 - "hread_signal": "prolog",builtins.hread_signal618,18451 - "ignore": "prolog",builtins.ignore619,18484 - "incore": "prolog",builtins.incore620,18511 - "initialization": "prolog",builtins.initialization621,18538 - "int_message": "prolog",builtins.int_message622,18573 - "message_to_string": "prolog",builtins.message_to_string623,18605 - "module_property": "prolog",builtins.module_property624,18643 - "msort": "prolog",builtins.msort625,18679 - "mutex_unlock_all": "prolog",builtins.mutex_unlock_all626,18705 - "no_style_check": "prolog",builtins.no_style_check627,18742 - "nospy": "prolog",builtins.nospy628,18777 - "notrace": "prolog",builtins.notrace629,18803 - "ortray_clause": "prolog",builtins.ortray_clause630,18831 - "otherwise": "prolog",builtins.otherwise631,18865 - "predsort": "prolog",builtins.predsort632,18895 - "prolog_initialization": "prolog",builtins.prolog_initialization633,18924 - "qend_program": "prolog",builtins.qend_program634,18966 - "qsave_file": "prolog",builtins.qsave_file635,18999 - "recordaifnot": "prolog",builtins.recordaifnot636,19030 - "set_base_module": "prolog",builtins.set_base_module637,19063 - "sformat": "prolog",builtins.sformat638,19099 - "source_file": "prolog",builtins.source_file639,19127 - "split_path_file": "prolog",builtins.split_path_file640,19159 - "stream_position": "prolog",builtins.stream_position641,19195 - "system_error": "prolog",builtins.system_error642,19231 - "system_module": "prolog",builtins.system_module643,19264 - "t_head": "prolog",builtins.t_head644,19298 - "table_statistics": "prolog",builtins.table_statistics645,19325 - "tabling_mode": "prolog",builtins.tabling_mode646,19362 - "tabling_statistics": "prolog",builtins.tabling_statistics647,19395 - "thread_defaults": "prolog",builtins.thread_defaults648,19434 - "thread_local": "prolog",builtins.thread_local649,19470 - "thread_set_defaults": "prolog",builtins.thread_set_defaults650,19503 - "thread_statistics": "prolog",builtins.thread_statistics651,19543 - "unix": "prolog",builtins.unix652,19581 - "use_system_module": "prolog",builtins.use_system_module653,19606 - "user_defined_directive": "prolog",builtins.user_defined_directive654,19644 - "version": "prolog",builtins.version655,19687 - "C": "prolog",builtins.C656,19715 - "abolish_all_tables": "prolog",builtins.abolish_all_tables657,19737 - "abolish_frozen_choice_points": "prolog",builtins.abolish_frozen_choice_points658,19776 - "abolish_module": "prolog",builtins.abolish_module659,19825 - "abolish_table": "prolog",builtins.abolish_table660,19860 - "abolish": "prolog",builtins.abolish661,19894 - "abort": "prolog",builtins.abort662,19922 - "absolute_file_name": "prolog",builtins.absolute_file_name663,19948 - "absolute_file_system_path": "prolog",builtins.absolute_file_system_path664,19987 - "access_file": "prolog",builtins.access_file665,20033 - "access": "prolog",builtins.access666,20065 - "acyclic_term": "prolog",builtins.acyclic_term667,20092 - "add_import_module": "prolog",builtins.add_import_module668,20125 - "add_to_array_element": "prolog",builtins.add_to_array_element669,20163 - "add_to_path": "prolog",builtins.add_to_path670,20204 - "alarm": "prolog",builtins.alarm671,20236 - "all": "prolog",builtins.all672,20262 - "always_prompt_user": "prolog",builtins.always_prompt_user673,20286 - "arena_size": "prolog",builtins.arena_size674,20325 - "arg": "prolog",builtins.arg675,20356 - "array_element": "prolog",builtins.array_element676,20380 - "array": "prolog",builtins.array677,20414 - "assert_static": "prolog",builtins.assert_static678,20440 - "asserta_static": "prolog",builtins.asserta_static679,20474 - "assertz_static": "prolog",builtins.assertz_static680,20509 - "assertz": "prolog",builtins.assertz681,20544 - "assert": "prolog",builtins.assert682,20572 - "at_end_of_line": "prolog",builtins.at_end_of_line683,20599 - "at_end_of_stream_0": "prolog",builtins.at_end_of_stream_0684,20634 - "at_end_of_stream": "prolog",builtins.at_end_of_stream685,20673 - "at_halt": "prolog",builtins.at_halt686,20710 - "atom_chars": "prolog",builtins.atom_chars687,20738 - "atom_codes": "prolog",builtins.atom_codes688,20769 - "atom_concat": "prolog",builtins.atom_concat689,20800 - "atom_length": "prolog",builtins.atom_length690,20832 - "atom_number": "prolog",builtins.atom_number691,20864 - "atom_string": "prolog",builtins.atom_string692,20896 - "atom_to_term": "prolog",builtins.atom_to_term693,20928 - "atomic_concat": "prolog",builtins.atomic_concat694,20961 - "atomic_length": "prolog",builtins.atomic_length695,20995 - "atomic_list_concat": "prolog",builtins.atomic_list_concat696,21029 - "atomics_to_string": "prolog",builtins.atomics_to_string697,21068 - "atomic": "prolog",builtins.atomic698,21106 - "atom": "prolog",builtins.atom699,21133 - "attvar": "prolog",builtins.attvar700,21158 - "b_getval": "prolog",builtins.b_getval701,21185 - "b_setval": "prolog",builtins.b_setval702,21214 - "bagof": "prolog",builtins.bagof703,21243 - "bb_delete": "prolog",builtins.bb_delete704,21269 - "bb_get": "prolog",builtins.bb_get705,21299 - "bb_put": "prolog",builtins.bb_put706,21326 - "bb_update": "prolog",builtins.bb_update707,21353 - "between": "prolog",builtins.between708,21383 - "bootstrap": "prolog",builtins.bootstrap709,21411 - "break": "prolog",builtins.break710,21441 - "call_cleanup": "prolog",builtins.call_cleanup711,21467 - "call_count_data": "prolog",builtins.call_count_data712,21500 - "call_count_reset": "prolog",builtins.call_count_reset713,21536 - "call_count": "prolog",builtins.call_count714,21573 - "call_residue_vars": "prolog",builtins.call_residue_vars715,21604 - "call_residue": "prolog",builtins.call_residue716,21642 - "call_shared_object_function": "prolog",builtins.call_shared_object_function717,21675 - "call_with_args": "prolog",builtins.call_with_args718,21723 - "callable": "prolog",builtins.callable719,21758 - "call": "prolog",builtins.call720,21787 - "catch_ball": "prolog",builtins.catch_ball721,21812 - "catch": "prolog",builtins.catch722,21843 - "cd": "prolog",builtins.cd723,21869 - "cfile_search_path": "prolog",builtins.cfile_search_path724,21892 - "char_code": "prolog",builtins.char_code725,21930 - "char_conversion": "prolog",builtins.char_conversion726,21960 - "char_type": "prolog",builtins.char_type727,21996 - "clause_property": "prolog",builtins.clause_property728,22026 - "clause": "prolog",builtins.clause729,22062 - "close_shared_object": "prolog",builtins.close_shared_object730,22089 - "close_static_array": "prolog",builtins.close_static_array731,22129 - "close": "prolog",builtins.close732,22168 - "code_type": "prolog",builtins.code_type733,22194 - "commons_directory": "prolog",builtins.commons_directory734,22224 - "commons_library": "prolog",builtins.commons_library735,22262 - "compare": "prolog",builtins.compare736,22298 - "compile_expressions": "prolog",builtins.compile_expressions737,22326 - "compile_predicates": "prolog",builtins.compile_predicates738,22366 - "compile": "prolog",builtins.compile739,22405 - "compound": "prolog",builtins.compound740,22433 - "consult_depth": "prolog",builtins.consult_depth741,22462 - "consult": "prolog",builtins.consult742,22496 - "context_module": "prolog",builtins.context_module743,22524 - "copy_term_nat": "prolog",builtins.copy_term_nat744,22559 - "copy_term": "prolog",builtins.copy_term745,22593 - "create_mutable": "prolog",builtins.create_mutable746,22623 - "create_prolog_flag": "prolog",builtins.create_prolog_flag747,22658 - "creep_allowed": "prolog",builtins.creep_allowed748,22697 - "current_atom": "prolog",builtins.current_atom749,22731 - "current_char_conversion": "prolog",builtins.current_char_conversion750,22764 - "current_host": "prolog",builtins.current_host751,22808 - "current_input": "prolog",builtins.current_input752,22841 - "current_key": "prolog",builtins.current_key753,22875 - "current_line_number": "prolog",builtins.current_line_number754,22907 - "current_module": "prolog",builtins.current_module755,22947 - "current_mutex": "prolog",builtins.current_mutex756,22982 - "current_op": "prolog",builtins.current_op757,23016 - "current_output": "prolog",builtins.current_output758,23047 - "current_predicate": "prolog",builtins.current_predicate759,23082 - "current_prolog_flag": "prolog",builtins.current_prolog_flag760,23120 - "current_reference_count": "prolog",builtins.current_reference_count761,23160 - "current_stream": "prolog",builtins.current_stream762,23204 - "current_thread": "prolog",builtins.current_thread763,23239 - "db_files": "prolog",builtins.db_files764,23274 - "db_reference": "prolog",builtins.db_reference765,23303 - "debugging": "prolog",builtins.debugging766,23336 - "debug": "prolog",builtins.debug767,23366 - "decrease_reference_count": "prolog",builtins.decrease_reference_count768,23392 - "del_attrs": "prolog",builtins.del_attrs769,23437 - "del_attr": "prolog",builtins.del_attr770,23467 - "delete_import_module": "prolog",builtins.delete_import_module771,23496 - "depth_bound_call": "prolog",builtins.depth_bound_call772,23537 - "dif": "prolog",builtins.dif773,23574 - "discontiguous": "prolog",builtins.discontiguous774,23598 - "display": "prolog",builtins.display775,23632 - "do_c_built_in": "prolog",builtins.do_c_built_in776,23660 - "do_c_built_metacall": "prolog",builtins.do_c_built_metacall777,23694 - "do_not_compile_expressions": "prolog",builtins.do_not_compile_expressions778,23734 - "dump_active_goals": "prolog",builtins.dump_active_goals779,23781 - "dum": "prolog",builtins.dum780,23819 - "duplicate_term": "prolog",builtins.duplicate_term781,23843 - "dynamic_predicate": "prolog",builtins.dynamic_predicate782,23878 - "dynamic_update_array": "prolog",builtins.dynamic_update_array783,23916 - "dynamic": "prolog",builtins.dynamic784,23957 - "eamconsult": "prolog",builtins.eamconsult785,23985 - "eamtrans": "prolog",builtins.eamtrans786,24016 - "end_of_file": "prolog",builtins.end_of_file787,24045 - "ensure_loaded": "prolog",builtins.ensure_loaded788,24077 - "eraseall": "prolog",builtins.eraseall789,24111 - "erased": "prolog",builtins.erased790,24140 - "erase": "prolog",builtins.erase791,24167 - "exists_directory": "prolog",builtins.exists_directory792,24193 - "exists_file": "prolog",builtins.exists_file793,24230 - "exists_source": "prolog",builtins.exists_source794,24262 - "exists": "prolog",builtins.exists795,24296 - "exo_files": "prolog",builtins.exo_files796,24323 - "expand_exprs": "prolog",builtins.expand_exprs797,24353 - "expand_expr": "prolog",builtins.expand_expr798,24386 - "expand_file_name": "prolog",builtins.expand_file_name799,24418 - "expand_goal": "prolog",builtins.expand_goal800,24455 - "expand_term": "prolog",builtins.expand_term801,24487 - "expects_dialect": "prolog",builtins.expects_dialect802,24519 - "export_list": "prolog",builtins.export_list803,24555 - "export_resource": "prolog",builtins.export_resource804,24587 - "export": "prolog",builtins.export805,24623 - "extend": "prolog",builtins.extend806,24650 - "fail": "prolog",builtins.fail807,24677 - "false": "prolog",builtins.false808,24702 - "file_base_name": "prolog",builtins.file_base_name809,24728 - "file_directory_name": "prolog",builtins.file_directory_name810,24763 - "file_exists": "prolog",builtins.file_exists811,24803 - "file_name_extension": "prolog",builtins.file_name_extension812,24835 - "file_search_path": "prolog",builtins.file_search_path813,24875 - "file_size": "prolog",builtins.file_size814,24912 - "fileerrors": "prolog",builtins.fileerrors815,24942 - "findall": "prolog",builtins.findall816,24973 - "float": "prolog",builtins.float817,25001 - "flush_output": "prolog",builtins.flush_output818,25027 - "forall": "prolog",builtins.forall819,25060 - "foreign_directory": "prolog",builtins.foreign_directory820,25087 - "format": "prolog",builtins.format821,25125 - "freeze_choice_point": "prolog",builtins.freeze_choice_point822,25152 - "freeze": "prolog",builtins.freeze823,25192 - "frozen": "prolog",builtins.frozen824,25219 - "functor": "prolog",builtins.functor825,25246 - "garbage_collect_atoms": "prolog",builtins.garbage_collect_atoms826,25274 - "garbage_collect": "prolog",builtins.garbage_collect827,25316 - "gc": "prolog",builtins.gc828,25352 - "get0": "prolog",builtins.get0829,25375 - "get_attr": "prolog",builtins.get_attr830,25400 - "get_byte": "prolog",builtins.get_byte831,25429 - "get_char": "prolog",builtins.get_char832,25458 - "get_code": "prolog",builtins.get_code833,25487 - "get_depth_limit": "prolog",builtins.get_depth_limit834,25516 - "get_mutable": "prolog",builtins.get_mutable835,25552 - "get_string_code": "prolog",builtins.get_string_code836,25584 - "get_value": "prolog",builtins.get_value837,25620 - "getcwd": "prolog",builtins.getcwd838,25650 - "getenv": "prolog",builtins.getenv839,25677 - "get": "prolog",builtins.get840,25704 - "global_trie_statistics": "prolog",builtins.global_trie_statistics841,25728 - "ground": "prolog",builtins.ground842,25771 - "grow_heap": "prolog",builtins.grow_heap843,25798 - "grow_stack": "prolog",builtins.grow_stack844,25828 - "halt": "prolog",builtins.halt845,25859 - "heap_space_info": "prolog",builtins.heap_space_info846,25884 - "hide_atom": "prolog",builtins.hide_atom847,25920 - "hide_predicate": "prolog",builtins.hide_predicate848,25950 - "hostname_address": "prolog",builtins.hostname_address849,25985 - "hread_get_message": "prolog",builtins.hread_get_message850,26022 - "if": "prolog",builtins.if851,26060 - "ignore": "prolog",builtins.ignore852,26083 - "import_module": "prolog",builtins.import_module853,26110 - "incore": "prolog",builtins.incore854,26144 - "increase_reference_count": "prolog",builtins.increase_reference_count855,26171 - "init_random_state": "prolog",builtins.init_random_state856,26216 - "initialization": "prolog",builtins.initialization857,26254 - "instance_property": "prolog",builtins.instance_property858,26289 - "instance": "prolog",builtins.instance859,26327 - "integer": "prolog",builtins.integer860,26356 - "is_absolute_file_name": "prolog",builtins.is_absolute_file_name861,26384 - "is_list": "prolog",builtins.is_list862,26426 - "is_mutable": "prolog",builtins.is_mutable863,26454 - "is_tabled": "prolog",builtins.is_tabled864,26485 - "isinf": "prolog",builtins.isinf865,26515 - "isnan": "prolog",builtins.isnan866,26541 - "is": "prolog",builtins.is867,26567 - "key_erased_statistics": "prolog",builtins.key_erased_statistics868,26590 - "key_statistics": "prolog",builtins.key_statistics869,26632 - "keysort": "prolog",builtins.keysort870,26667 - "leash": "prolog",builtins.leash871,26695 - "length": "prolog",builtins.length872,26721 - "libraries_directories": "prolog",builtins.libraries_directories873,26748 - "line_count": "prolog",builtins.line_count874,26790 - "listing": "prolog",builtins.listing875,26821 - "load_absolute_foreign_files": "prolog",builtins.load_absolute_foreign_files876,26849 - "load_db": "prolog",builtins.load_db877,26897 - "load_files": "prolog",builtins.load_files878,26925 - "load_foreign_files": "prolog",builtins.load_foreign_files879,26956 - "log_event": "prolog",builtins.log_event880,26995 - "logsum": "prolog",builtins.logsum881,27025 - "ls_imports": "prolog",builtins.ls_imports882,27052 - "ls": "prolog",builtins.ls883,27083 - "make_directory": "prolog",builtins.make_directory884,27106 - "make_library_index": "prolog",builtins.make_library_index885,27141 - "make": "prolog",builtins.make886,27180 - "message_queue_create": "prolog",builtins.message_queue_create887,27205 - "message_queue_destroy": "prolog",builtins.message_queue_destroy888,27246 - "message_queue_property": "prolog",builtins.message_queue_property889,27288 - "message_to_string": "prolog",builtins.message_to_string890,27331 - "mmapped_array": "prolog",builtins.mmapped_array891,27369 - "module_property": "prolog",builtins.module_property892,27403 - "module_state": "prolog",builtins.module_state893,27439 - "module": "prolog",builtins.module894,27472 - "msort": "prolog",builtins.msort895,27499 - "multifile": "prolog",builtins.multifile896,27525 - "must_be_of_type": "prolog",builtins.must_be_of_type897,27555 - "mutex_create": "prolog",builtins.mutex_create898,27591 - "mutex_property": "prolog",builtins.mutex_property899,27624 - "mutex_unlock_all": "prolog",builtins.mutex_unlock_all900,27659 - "name": "prolog",builtins.name901,27696 - "nb_create": "prolog",builtins.nb_create902,27721 - "nb_current": "prolog",builtins.nb_current903,27751 - "nb_delete": "prolog",builtins.nb_delete904,27782 - "nb_getval": "prolog",builtins.nb_getval905,27812 - "nb_linkarg": "prolog",builtins.nb_linkarg906,27842 - "nb_linkval": "prolog",builtins.nb_linkval907,27873 - "nb_set_bit": "prolog",builtins.nb_set_bit908,27904 - "nb_set_shared_arg": "prolog",builtins.nb_set_shared_arg909,27935 - "nb_set_shared_val": "prolog",builtins.nb_set_shared_val910,27973 - "nb_setarg": "prolog",builtins.nb_setarg911,28011 - "nb_setval": "prolog",builtins.nb_setval912,28041 - "new_system_module": "prolog",builtins.new_system_module913,28071 - "nl": "prolog",builtins.nl914,28109 - "no_source": "prolog",builtins.no_source915,28132 - "no_style_check": "prolog",builtins.no_style_check916,28162 - "nodebug": "prolog",builtins.nodebug917,28197 - "nofileeleerrors": "prolog",builtins.nofileeleerrors918,28225 - "nogc": "prolog",builtins.nogc919,28261 - "nonvar": "prolog",builtins.nonvar920,28286 - "nospyall": "prolog",builtins.nospyall921,28313 - "nospy": "prolog",builtins.nospy922,28342 - "notrace": "prolog",builtins.notrace923,28368 - "not": "prolog",builtins.not924,28396 - "nth_clause": "prolog",builtins.nth_clause925,28420 - "nth_instance": "prolog",builtins.nth_instance926,28451 - "number_atom": "prolog",builtins.number_atom927,28484 - "number_chars": "prolog",builtins.number_chars928,28516 - "number_codes": "prolog",builtins.number_codes929,28549 - "number_string": "prolog",builtins.number_string930,28582 - "numbervars": "prolog",builtins.numbervars931,28616 - "number": "prolog",builtins.number932,28647 - "on_exception": "prolog",builtins.on_exception933,28674 - "on_signal": "prolog",builtins.on_signal934,28707 - "once": "prolog",builtins.once935,28737 - "opaque": "prolog",builtins.opaque936,28762 - "open_pipe_stream": "prolog",builtins.open_pipe_stream937,28789 - "open_shared_object": "prolog",builtins.open_shared_object938,28826 - "open": "prolog",builtins.open939,28865 - "opt_statistics": "prolog",builtins.opt_statistics940,28890 - "op": "prolog",builtins.op941,28925 - "or_statistics": "prolog",builtins.or_statistics942,28948 - "otherwise": "prolog",builtins.otherwise943,28982 - "parallel_findall": "prolog",builtins.parallel_findall944,29012 - "parallel_findfirst": "prolog",builtins.parallel_findfirst945,29049 - "parallel_once": "prolog",builtins.parallel_once946,29088 - "parallel": "prolog",builtins.parallel947,29122 - "path": "prolog",builtins.path948,29151 - "peek_byte": "prolog",builtins.peek_byte949,29176 - "peek_char": "prolog",builtins.peek_char950,29206 - "peek_code": "prolog",builtins.peek_code951,29236 - "peek": "prolog",builtins.peek952,29266 - "phrase": "prolog",builtins.phrase953,29291 - "plus": "prolog",builtins.plus954,29318 - "portray_clause": "prolog",builtins.portray_clause955,29343 - "predicate_erased_statistics": "prolog",builtins.predicate_erased_statistics956,29378 - "predicate_property": "prolog",builtins.predicate_property957,29426 - "predicate_statistics": "prolog",builtins.predicate_statistics958,29465 - "predmerge": "prolog",builtins.predmerge959,29506 - "predsort": "prolog",builtins.predsort960,29536 - "primitive": "prolog",builtins.primitive961,29565 - "print_message_lines": "prolog",builtins.print_message_lines962,29595 - "print_message": "prolog",builtins.print_message963,29635 - "print": "prolog",builtins.print964,29669 - "private": "prolog",builtins.private965,29695 - "profalt": "prolog",builtins.profalt966,29723 - "profend": "prolog",builtins.profend967,29751 - "profile_data": "prolog",builtins.profile_data968,29779 - "profile_reset": "prolog",builtins.profile_reset969,29812 - "profinit": "prolog",builtins.profinit970,29846 - "profoff": "prolog",builtins.profoff971,29875 - "profon": "prolog",builtins.profon972,29903 - "prolog_current_frame": "prolog",builtins.prolog_current_frame973,29930 - "prolog_file_name": "prolog",builtins.prolog_file_name974,29971 - "prolog_file_type": "prolog",builtins.prolog_file_type975,30008 - "prolog_flag_property": "prolog",builtins.prolog_flag_property976,30045 - "prolog_flag": "prolog",builtins.prolog_flag977,30086 - "prolog_initialization": "prolog",builtins.prolog_initialization978,30118 - "prolog_load_context": "prolog",builtins.prolog_load_context979,30160 - "prolog_to_os_filename": "prolog",builtins.prolog_to_os_filename980,30200 - "prolog": "prolog",builtins.prolog981,30242 - "prompt1": "prolog",builtins.prompt1982,30269 - "prompt": "prolog",builtins.prompt983,30297 - "put_attrs": "prolog",builtins.put_attrs984,30324 - "put_attr": "prolog",builtins.put_attr985,30354 - "put_byte": "prolog",builtins.put_byte986,30383 - "put_char1": "prolog",builtins.put_char1987,30412 - "put_char": "prolog",builtins.put_char988,30442 - "put_code": "prolog",builtins.put_code989,30471 - "putenv": "prolog",builtins.putenv990,30500 - "put": "prolog",builtins.put991,30527 - "pwd": "prolog",builtins.pwd992,30551 - "qend_program": "prolog",builtins.qend_program993,30575 - "qload_file": "prolog",builtins.qload_file994,30608 - "qload_module": "prolog",builtins.qload_module995,30639 - "qpack_clean_up_to_disjunction": "prolog",builtins.qpack_clean_up_to_disjunction996,30672 - "qsave_file": "prolog",builtins.qsave_file997,30722 - "qsave_module": "prolog",builtins.qsave_module998,30753 - "qsave_program": "prolog",builtins.qsave_program999,30786 - "raise_exception": "prolog",builtins.raise_exception1000,30820 - "rational_term_to_tree": "prolog",builtins.rational_term_to_tree1001,30856 - "rational": "prolog",builtins.rational1002,30898 - "read_clause": "prolog",builtins.read_clause1003,30927 - "read_sig": "prolog",builtins.read_sig1004,30959 - "read_term_from_atomic": "prolog",builtins.read_term_from_atomic1005,30988 - "read_term_from_atom": "prolog",builtins.read_term_from_atom1006,31030 - "read_term_from_string": "prolog",builtins.read_term_from_string1007,31070 - "read_term": "prolog",builtins.read_term1008,31112 - "read": "prolog",builtins.read1009,31142 - "real_path": "prolog",builtins.real_path1010,31167 - "reconsult": "prolog",builtins.reconsult1011,31197 - "recorda_at": "prolog",builtins.recorda_at1012,31227 - "recordaifnot": "prolog",builtins.recordaifnot1013,31258 - "recorda": "prolog",builtins.recorda1014,31291 - "recorded": "prolog",builtins.recorded1015,31319 - "recordz_at": "prolog",builtins.recordz_at1016,31348 - "recordzifnot": "prolog",builtins.recordzifnot1017,31379 - "recordz": "prolog",builtins.recordz1018,31412 - "release_random_state": "prolog",builtins.release_random_state1019,31440 - "remove_from_path": "prolog",builtins.remove_from_path1020,31481 - "rename": "prolog",builtins.rename1021,31518 - "repeat": "prolog",builtins.repeat1022,31545 - "reset_static_array": "prolog",builtins.reset_static_array1023,31572 - "reset_total_choicepoints": "prolog",builtins.reset_total_choicepoints1024,31611 - "resize_static_array": "prolog",builtins.resize_static_array1025,31656 - "restore": "prolog",builtins.restore1026,31696 - "retractall": "prolog",builtins.retractall1027,31724 - "retract": "prolog",builtins.retract1028,31755 - "rmdir": "prolog",builtins.rmdir1029,31783 - "same_file": "prolog",builtins.same_file1030,31809 - "save_program": "prolog",builtins.save_program1031,31839 - "seeing": "prolog",builtins.seeing1032,31872 - "seen": "prolog",builtins.seen1033,31899 - "see": "prolog",builtins.see1034,31924 - "set_base_module": "prolog",builtins.set_base_module1035,31948 - "set_input": "prolog",builtins.set_input1036,31984 - "set_output": "prolog",builtins.set_output1037,32014 - "set_prolog_flag": "prolog",builtins.set_prolog_flag1038,32045 - "set_random_state": "prolog",builtins.set_random_state1039,32081 - "set_stream_position": "prolog",builtins.set_stream_position1040,32118 - "set_stream": "prolog",builtins.set_stream1041,32158 - "set_value": "prolog",builtins.set_value1042,32189 - "setarg": "prolog",builtins.setarg1043,32219 - "setenv": "prolog",builtins.setenv1044,32246 - "setof": "prolog",builtins.setof1045,32273 - "setup_call_catcher_cleanup": "prolog",builtins.setup_call_catcher_cleanup1046,32299 - "setup_call_cleanup": "prolog",builtins.setup_call_cleanup1047,32346 - "sformat": "prolog",builtins.sformat1048,32385 - "show_all_local_tables": "prolog",builtins.show_all_local_tables1049,32413 - "show_all_tables": "prolog",builtins.show_all_tables1050,32455 - "show_global_trieshow_tabled_predicates": "prolog",builtins.show_global_trieshow_tabled_predicates1051,32491 - "show_global_trie": "prolog",builtins.show_global_trie1052,32550 - "show_low_level_trace": "prolog",builtins.show_low_level_trace1053,32587 - "show_tabled_predicates": "prolog",builtins.show_tabled_predicates1054,32628 - "show_table": "prolog",builtins.show_table1055,32671 - "showprofres": "prolog",builtins.showprofres1056,32702 - "sh": "prolog",builtins.sh1057,32734 - "simple": "prolog",builtins.simple1058,32757 - "skip1": "prolog",builtins.skip11059,32784 - "skip": "prolog",builtins.skip1060,32810 - "socket_accept": "prolog",builtins.socket_accept1061,32835 - "socket_bind": "prolog",builtins.socket_bind1062,32869 - "socket_close": "prolog",builtins.socket_close1063,32901 - "socket_connect": "prolog",builtins.socket_connect1064,32934 - "socket_listen": "prolog",builtins.socket_listen1065,32969 - "socket": "prolog",builtins.socket1066,33003 - "sort2": "prolog",builtins.sort21067,33030 - "sort": "prolog",builtins.sort1068,33056 - "source_file_property": "prolog",builtins.source_file_property1069,33081 - "source_file": "prolog",builtins.source_file1070,33122 - "source_location": "prolog",builtins.source_location1071,33154 - "source_mode": "prolog",builtins.source_mode1072,33190 - "source_module": "prolog",builtins.source_module1073,33222 - "source": "prolog",builtins.source1074,33256 - "split_path_file": "prolog",builtins.split_path_file1075,33283 - "spy": "prolog",builtins.spy1076,33319 - "srandom": "prolog",builtins.srandom1077,33343 - "start_low_level_trace": "prolog",builtins.start_low_level_trace1078,33371 - "stash_predicate": "prolog",builtins.stash_predicate1079,33413 - "static_array_location": "prolog",builtins.static_array_location1080,33449 - "static_array_properties": "prolog",builtins.static_array_properties1081,33491 - "static_array_to_term": "prolog",builtins.static_array_to_term1082,33535 - "static_array": "prolog",builtins.static_array1083,33576 - "statistics": "prolog",builtins.statistics1084,33609 - "stop_low_level_trace": "prolog",builtins.stop_low_level_trace1085,33640 - "stream_position_data": "prolog",builtins.stream_position_data1086,33681 - "stream_position": "prolog",builtins.stream_position1087,33722 - "stream_property": "prolog",builtins.stream_property1088,33758 - "stream_select": "prolog",builtins.stream_select1089,33794 - "string_chars": "prolog",builtins.string_chars1090,33828 - "string_codes": "prolog",builtins.string_codes1091,33861 - "string_code": "prolog",builtins.string_code1092,33894 - "string_concat": "prolog",builtins.string_concat1093,33926 - "string_length": "prolog",builtins.string_length1094,33960 - "string_number": "prolog",builtins.string_number1095,33994 - "string_to_atomic": "prolog",builtins.string_to_atomic1096,34028 - "string_to_atom": "prolog",builtins.string_to_atom1097,34065 - "string_to_list": "prolog",builtins.string_to_list1098,34100 - "string": "prolog",builtins.string1099,34135 - "strip_module": "prolog",builtins.strip_module1100,34162 - "style_check": "prolog",builtins.style_check1101,34195 - "sub_atom": "prolog",builtins.sub_atom1102,34227 - "sub_string": "prolog",builtins.sub_string1103,34256 - "subsumes_term": "prolog",builtins.subsumes_term1104,34287 - "succ": "prolog",builtins.succ1105,34321 - "sys_debug": "prolog",builtins.sys_debug1106,34346 - "system_error": "prolog",builtins.system_error1107,34376 - "system_library": "prolog",builtins.system_library1108,34409 - "system_module": "prolog",builtins.system_module1109,34444 - "system_predicate": "prolog",builtins.system_predicate1110,34478 - "system": "prolog",builtins.system1111,34515 - "t_body": "prolog",builtins.t_body1112,34542 - "t_head": "prolog",builtins.t_head1113,34569 - "t_hgoal": "prolog",builtins.t_hgoal1114,34596 - "t_hlist": "prolog",builtins.t_hlist1115,34624 - "t_tidy": "prolog",builtins.t_tidy1116,34652 - "tab1": "prolog",builtins.tab11117,34679 - "table_statistics": "prolog",builtins.table_statistics1118,34704 - "table": "prolog",builtins.table1119,34741 - "tabling_mode": "prolog",builtins.tabling_mode1120,34767 - "tabling_statistics": "prolog",builtins.tabling_statistics1121,34800 - "tab": "prolog",builtins.tab1122,34839 - "telling": "prolog",builtins.telling1123,34863 - "tell": "prolog",builtins.tell1124,34891 - "term_attvars": "prolog",builtins.term_attvars1125,34916 - "term_factorized": "prolog",builtins.term_factorized1126,34949 - "term_to_atom": "prolog",builtins.term_to_atom1127,34985 - "term_to_string": "prolog",builtins.term_to_string1128,35018 - "term_variables": "prolog",builtins.term_variables1129,35053 - "thread_at_exit": "prolog",builtins.thread_at_exit1130,35088 - "thread_cancel": "prolog",builtins.thread_cancel1131,35123 - "thread_create": "prolog",builtins.thread_create1132,35157 - "thread_defaults": "prolog",builtins.thread_defaults1133,35191 - "thread_default": "prolog",builtins.thread_default1134,35227 - "thread_detach": "prolog",builtins.thread_detach1135,35262 - "thread_exit": "prolog",builtins.thread_exit1136,35296 - "thread_get_message": "prolog",builtins.thread_get_message1137,35328 - "thread_join": "prolog",builtins.thread_join1138,35367 - "thread_local": "prolog",builtins.thread_local1139,35399 - "thread_peek_message": "prolog",builtins.thread_peek_message1140,35432 - "thread_property": "prolog",builtins.thread_property1141,35472 - "thread_self": "prolog",builtins.thread_self1142,35508 - "thread_send_message": "prolog",builtins.thread_send_message1143,35540 - "thread_set_defaults": "prolog",builtins.thread_set_defaults1144,35580 - "thread_set_default": "prolog",builtins.thread_set_default1145,35620 - "thread_signal": "prolog",builtins.thread_signal1146,35659 - "thread_sleep": "prolog",builtins.thread_sleep1147,35693 - "thread_statistics": "prolog",builtins.thread_statistics1148,35726 - "threads": "prolog",builtins.threads1149,35764 - "throw": "prolog",builtins.throw1150,35792 - "time_file64": "prolog",builtins.time_file641151,35818 - "time_file": "prolog",builtins.time_file1152,35850 - "time": "prolog",builtins.time1153,35880 - "told": "prolog",builtins.told1154,35905 - "tolower": "prolog",builtins.tolower1155,35930 - "total_choicepoints": "prolog",builtins.total_choicepoints1156,35958 - "total_erased": "prolog",builtins.total_erased1157,35997 - "toupper": "prolog",builtins.toupper1158,36030 - "trace": "prolog",builtins.trace1159,36058 - "true_file_name": "prolog",builtins.true_file_name1160,36084 - "true": "prolog",builtins.true1161,36119 - "tthread_peek_message": "prolog",builtins.tthread_peek_message1162,36144 - "ttyget0": "prolog",builtins.ttyget01163,36185 - "ttyget": "prolog",builtins.ttyget1164,36213 - "ttynl": "prolog",builtins.ttynl1165,36240 - "ttyput": "prolog",builtins.ttyput1166,36266 - "ttyskip": "prolog",builtins.ttyskip1167,36293 - "udi": "prolog",builtins.udi1168,36321 - "unhide_atom": "prolog",builtins.unhide_atom1169,36345 - "unify_with_occurs_check": "prolog",builtins.unify_with_occurs_check1170,36377 - "unix": "prolog",builtins.unix1171,36421 - "unknown": "prolog",builtins.unknown1172,36446 - "unload_file": "prolog",builtins.unload_file1173,36474 - "unload_module": "prolog",builtins.unload_module1174,36506 - "unnumbervars": "prolog",builtins.unnumbervars1175,36540 - "update_array": "prolog",builtins.update_array1176,36573 - "update_mutable": "prolog",builtins.update_mutable1177,36606 - "use_module": "prolog",builtins.use_module1178,36641 - "use_system_module": "prolog",builtins.use_system_module1179,36672 - "user_defined_directive": "prolog",builtins.user_defined_directive1180,36710 - "var": "prolog",builtins.var1181,36753 - "version": "prolog",builtins.version1182,36777 - "volatile": "prolog",builtins.volatile1183,36805 - "wake_choice_point": "prolog",builtins.wake_choice_point1184,36834 - "when": "prolog",builtins.when1185,36872 - "with_mutex": "prolog",builtins.with_mutex1186,36897 - "with_output_to": "prolog",builtins.with_output_to1187,36928 - "working_directory": "prolog",builtins.working_directory1188,36963 - "write_canonical": "prolog",builtins.write_canonical1189,37001 - "write_depth": "prolog",builtins.write_depth1190,37037 - "write_term": "prolog",builtins.write_term1191,37069 - "writeln": "prolog",builtins.writeln1192,37100 - "writeq": "prolog",builtins.writeq1193,37128 - "write": "prolog",builtins.write1194,37155 - "yap_flag": "prolog"builtins.yap_flag1195,37181 - var style = state.tokenize(stream, state);style1234,38067 - var nest;nest1260,38680 - -misc/editors/sublimeyap/LICENSE,83 - License, v. 2.0. If a copy of the MPL was not distributed with thisLicense2,70 - -misc/editors/sublimeyap/MPL,2910 - the creation of, or owns Covered Software.of9,192 - Form, and Modifications of such Source Code Form, in each caseForm21,651 - Form, and Modifications of such Source Code Form, in each caseForm21,651 - a separate file or files, that is not Covered Software.files39,1284 - means having the right to grant, to the maximum extent possible,possible45,1404 - whether at the time of the initial grant or subsequently, any andsubsequently46,1473 - means any patent claim(s), including without limitation, method,limitation60,1931 - means any patent claim(s), including without limitation, method,method60,1931 - process, and apparatus claims, in any patent Licensable by suchprocess61,2000 - process, and apparatus claims, in any patent Licensable by suchclaims61,2000 - Contributor that would be infringed, but for the grant of theinfringed62,2068 - License, by the making, using, selling, offering for sale, havingLicense63,2134 - License, by the making, using, selling, offering for sale, havingmaking63,2134 - License, by the making, using, selling, offering for sale, havingusing63,2134 - License, by the making, using, selling, offering for sale, havingselling63,2134 - License, by the making, using, selling, offering for sale, havingale63,2134 - made, import, or transfer of either its Contributions or itsmade64,2204 - made, import, or transfer of either its Contributions or itsimport64,2204 - Lesser General Public License, Version 2.1, the GNU Affero GeneralLicense69,2391 - Public License, Version 3.0, or any later versions of thoseLicense70,2462 - controls, is controlled by, or is under common control with You. Forcontrols79,2793 - controls, is controlled by, or is under common control with You. Forby79,2793 -(b) under Patent Claims of such Contributor to make, use, sell, offermake100,3655 -(b) under Patent Claims of such Contributor to make, use, sell, offeruse100,3655 -(b) under Patent Claims of such Contributor to make, use, sell, offersell100,3655 - for sale, have made, import, and otherwise transfer either itsale101,3725 - for sale, have made, import, and otherwise transfer either itsmade101,3725 - for sale, have made, import, and otherwise transfer either itsimport101,3725 -This License does not grant any rights in the trademarks, service marks,marks129,4770 - License, or sublicense it under different terms, provided that theLicense181,6731 - License, or sublicense it under different terms, provided that theterms181,6731 -Covered Software is not Incompatible With Secondary Licenses, thisLicenses191,7267 -the Larger Work may, at their option, further distribute the Coveredmay194,7474 -the Larger Work may, at their option, further distribute the Coveredoption194,7474 -compliant, then the rights granted under this License from a particularcompliant237,9548 - -misc/editors/yap.js,938 - var word = stream.current();word336,8694 - function plTokenString(quote) {plTokenString360,9495 - function plTokenQuasiQuotation(stream, state) {plTokenQuasiQuotation379,10115 - function plTokenComment(stream, state) {plTokenComment392,10421 - CodeMirror.commands.prologStartIfThenElse = function(cm) {CodeMirror.commands.prologStartIfThenElse420,11080 - function nesting(state) {CodeMirror.commands.prologStartThen.nesting439,11627 - function isControl(state) { /* our terms are goals */CodeMirror.commands.prologStartThen.isControl446,11784 - CodeMirror.commands.prologStartThen = function(cm) {CodeMirror.commands.prologStartThen432,11380 - CodeMirror.commands.prologStartElse = function(cm) {CodeMirror.commands.prologStartElse468,12254 - var ops = { "-->": { p:1200, t:"xfx" },ops.-->499,13106 - var style = state.tokenize(stream, state);style608,16246 - var nest;nest632,16815 - -misc/find_exports,0 - -misc/gengroups,0 - -misc/ICLP2014_examples.yap,4048 -instack(E, [H|T]) :- E == H.instack8,170 -instack(E, [H|T]) :- E == H.instack8,170 -instack(E, [H|T]) :- E == H.instack8,170 -instack(E, [_H|T]) :- instack(E, T).instack9,199 -instack(E, [_H|T]) :- instack(E, T).instack9,199 -instack(E, [_H|T]) :- instack(E, T).instack9,199 -instack(E, [_H|T]) :- instack(E, T).instack9,199 -instack(E, [_H|T]) :- instack(E, T).instack9,199 -member_1(E, L) :-member_115,354 -member_1(E, L) :-member_115,354 -member_1(E, L) :-member_115,354 -member(E, [E|_T], _).member18,393 -member(E, [E|_T], _).member18,393 -member(_E, L, S) :-member19,415 -member(_E, L, S) :-member19,415 -member(_E, L, S) :-member19,415 -member(E, [H|T], S) :-member23,465 -member(E, [H|T], S) :-member23,465 -member(E, [H|T], S) :-member23,465 -:- table member_2/2.table30,621 -:- table member_2/2.table30,621 -member_2(E, [E|_T]).member_232,643 -member_2(E, [E|_T]).member_232,643 -member_2(E, [_H|T]) :-member_233,664 -member_2(E, [_H|T]) :-member_233,664 -member_2(E, [_H|T]) :-member_233,664 -:- table bin/1.table39,755 -:- table bin/1.table39,755 -bin([0|T]) :- bin(T).bin42,892 -bin([0|T]) :- bin(T).bin42,892 -bin([0|T]) :- bin(T).bin42,892 -bin([0|T]) :- bin(T).bin42,892 -bin([0|T]) :- bin(T).bin42,892 -bin([1|T]) :- bin(T).bin43,914 -bin([1|T]) :- bin(T).bin43,914 -bin([1|T]) :- bin(T).bin43,914 -bin([1|T]) :- bin(T).bin43,914 -bin([1|T]) :- bin(T).bin43,914 -:- table comember/2.table49,992 -:- table comember/2.table49,992 -comember(H, L) :-comember52,1144 -comember(H, L) :-comember52,1144 -comember(H, L) :-comember52,1144 -drop(H, [H|T], T).drop57,1218 -drop(H, [H|T], T).drop57,1218 -drop(H, [_|T], T1) :- drop(H, T, T1).drop58,1237 -drop(H, [_|T], T1) :- drop(H, T, T1).drop58,1237 -drop(H, [_|T], T1) :- drop(H, T, T1).drop58,1237 -drop(H, [_|T], T1) :- drop(H, T, T1).drop58,1237 -drop(H, [_|T], T1) :- drop(H, T, T1).drop58,1237 -drop_2(E, L, NL) :-drop_267,1418 -drop_2(E, L, NL) :-drop_267,1418 -drop_2(E, L, NL) :-drop_267,1418 -drop(_E, L, _NL, S) :-drop70,1461 -drop(_E, L, _NL, S) :-drop70,1461 -drop(_E, L, _NL, S) :-drop70,1461 -drop(E, [E|T], T, _).drop74,1514 -drop(E, [E|T], T, _).drop74,1514 -drop(E, [H|T], T1, S) :-drop75,1536 -drop(E, [H|T], T1, S) :-drop75,1536 -drop(E, [H|T], T1, S) :-drop75,1536 -canonical_term(Term, Canonical) :-canonical_term84,1760 -canonical_term(Term, Canonical) :-canonical_term84,1760 -canonical_term(Term, Canonical) :-canonical_term84,1760 -decompose_cyclic_term(_CyclicTerm, [], [], _OpenEnd, _Stack).decompose_cyclic_term90,1925 -decompose_cyclic_term(_CyclicTerm, [], [], _OpenEnd, _Stack).decompose_cyclic_term90,1925 -decompose_cyclic_term(CyclicTerm, [Term|Tail], [Term|NewTail], OpenEnd, Stack) :-decompose_cyclic_term91,1987 -decompose_cyclic_term(CyclicTerm, [Term|Tail], [Term|NewTail], OpenEnd, Stack) :-decompose_cyclic_term91,1987 -decompose_cyclic_term(CyclicTerm, [Term|Tail], [Term|NewTail], OpenEnd, Stack) :-decompose_cyclic_term91,1987 -decompose_cyclic_term(CyclicTerm, [Term|Tail], [OpenEnd|NewTail], OpenEnd, Stack) :-decompose_cyclic_term94,2160 -decompose_cyclic_term(CyclicTerm, [Term|Tail], [OpenEnd|NewTail], OpenEnd, Stack) :-decompose_cyclic_term94,2160 -decompose_cyclic_term(CyclicTerm, [Term|Tail], [OpenEnd|NewTail], OpenEnd, Stack) :-decompose_cyclic_term94,2160 -decompose_cyclic_term(CyclicTerm, [Term|Tail], [Canonical|NewTail], OpenEnd, Stack) :-decompose_cyclic_term97,2336 -decompose_cyclic_term(CyclicTerm, [Term|Tail], [Canonical|NewTail], OpenEnd, Stack) :-decompose_cyclic_term97,2336 -decompose_cyclic_term(CyclicTerm, [Term|Tail], [Canonical|NewTail], OpenEnd, Stack) :-decompose_cyclic_term97,2336 -decompose_cyclic_term(CyclicTerm, [_Term|Tail], [OpenEnd|NewTail], OpenEnd, Stack) :-decompose_cyclic_term108,2708 -decompose_cyclic_term(CyclicTerm, [_Term|Tail], [OpenEnd|NewTail], OpenEnd, Stack) :-decompose_cyclic_term108,2708 -decompose_cyclic_term(CyclicTerm, [_Term|Tail], [OpenEnd|NewTail], OpenEnd, Stack) :-decompose_cyclic_term108,2708 - -misc/mktags,0 - -misc/mkwin,79 -for YHOME in /y/vsc /z /home/vsc /home/vitor /Users/vsc /u/vitor;vitor24,710 - -misc/prolog.el,15725 -(defvar prolog-mode-version "1.24"prolog-mode-version11,446 -(defgroup prolog nilprolog303,14029 -(defgroup prolog-faces nilprolog-faces307,14138 -(defgroup prolog-indentation nilprolog-indentation311,14219 -(defgroup prolog-font-lock nilprolog-font-lock315,14314 -(defgroup prolog-keyboard nilprolog-keyboard319,14403 -(defgroup prolog-inferior nilprolog-inferior323,14484 -(defgroup prolog-other nilprolog-other327,14567 -(defcustom prolog-system nilprolog-system338,14844 -(defcustom prolog-system-versionprolog-system-version364,15831 -(defcustom prolog-indent-width tab-widthprolog-indent-width377,16131 -(defcustom prolog-align-comments-flag tprolog-align-comments-flag382,16277 -(defcustom prolog-indent-mline-comments-flag tprolog-indent-mline-comments-flag387,16429 -(defcustom prolog-object-end-to-0-flag tprolog-object-end-to-0-flag393,16618 -(defcustom prolog-left-indent-regexp "\\(;\\|\\*?->\\)"prolog-left-indent-regexp399,16830 -(defcustom prolog-paren-indent-p nilprolog-paren-indent-p405,17080 -(defcustom prolog-paren-indent 4prolog-paren-indent414,17483 -(defcustom prolog-parse-mode 'beg-of-clauseprolog-parse-mode420,17698 -(defcustom prolog-keywordsprolog-keywords434,18298 -(defcustom prolog-typesprolog-types468,19787 -(defcustom prolog-mode-specificatorsprolog-mode-specificators476,19986 -(defcustom prolog-determinism-specificatorsprolog-determinism-specificators484,20230 -(defcustom prolog-directivesprolog-directives493,20504 -(defcustom prolog-electric-newline-flag tprolog-electric-newline-flag504,20701 -(defcustom prolog-hungry-delete-key-flag nilprolog-hungry-delete-key-flag509,20867 -(defcustom prolog-electric-dot-flag nilprolog-electric-dot-flag514,21018 -(defcustom prolog-electric-dot-full-predicate-template nilprolog-electric-dot-full-predicate-template526,21554 -(defcustom prolog-electric-underscore-flag nilprolog-electric-underscore-flag534,21903 -(defcustom prolog-electric-tab-flag nilprolog-electric-tab-flag541,22180 -(defcustom prolog-electric-if-then-else-flag nilprolog-electric-if-then-else-flag548,22429 -(defcustom prolog-electric-colon-flag nilprolog-electric-colon-flag554,22619 -(defcustom prolog-electric-dash-flag nilprolog-electric-dash-flag561,22887 -(defcustom prolog-old-sicstus-keys-flag nilprolog-old-sicstus-keys-flag568,23154 -(defcustom prolog-program-nameprolog-program-name575,23326 -(defcustom prolog-program-switchesprolog-program-switches593,23899 -(defcustom prolog-consult-stringprolog-consult-string600,24081 -(defcustom prolog-compile-stringprolog-compile-string622,24894 -(defcustom prolog-eof-string "end_of_file.\n"prolog-eof-string645,25839 -(defcustom prolog-prompt-regexpprolog-prompt-regexp651,26040 -(defcustom prolog-continued-prompt-regexpprolog-continued-prompt-regexp661,26375 -(defcustom prolog-debug-on-string "debug.\n"prolog-debug-on-string669,26611 -(defcustom prolog-debug-off-string "nodebug.\n"prolog-debug-off-string674,26740 -(defcustom prolog-trace-on-string "trace.\n"prolog-trace-on-string679,26873 -(defcustom prolog-trace-off-string "notrace.\n"prolog-trace-off-string684,26999 -(defcustom prolog-zip-on-string "zip.\n"prolog-zip-on-string689,27129 -(defcustom prolog-zip-off-string "nozip.\n"prolog-zip-off-string694,27264 -(defcustom prolog-use-standard-consult-compile-method-flag tprolog-use-standard-consult-compile-method-flag699,27403 -(defcustom prolog-use-prolog-tokenizer-flag tprolog-use-prolog-tokenizer-flag715,27963 -(defcustom prolog-imenu-flag tprolog-imenu-flag721,28201 -(defcustom prolog-imenu-max-lines 3000prolog-imenu-max-lines726,28339 -(defcustom prolog-info-predicate-indexprolog-info-predicate-index732,28541 -(defcustom prolog-underscore-wordchar-flag nilprolog-underscore-wordchar-flag738,28702 -(defcustom prolog-use-sicstus-sd nilprolog-use-sicstus-sd743,28858 -(defcustom prolog-char-quote-workaround nilprolog-char-quote-workaround748,29010 -(defvar prolog-emacs prolog-emacs759,29436 -(defvar prolog-known-systems '(eclipse mercury sicstus swi gnu xsb yap))prolog-known-systems766,29621 -(defvar prolog-mode-syntax-table nil)prolog-mode-syntax-table770,29771 -(defvar prolog-mode-abbrev-table nil)prolog-mode-abbrev-table771,29809 -(defvar prolog-mode-map nil)prolog-mode-map772,29847 -(defvar prolog-upper-case-string ""prolog-upper-case-string773,29876 -(defvar prolog-lower-case-string ""prolog-lower-case-string776,29998 -(defvar prolog-atom-char-regexp ""prolog-atom-char-regexp780,30123 -(defvar prolog-atom-regexp ""prolog-atom-regexp783,30270 -(defconst prolog-left-paren "[[({]" prolog-left-paren786,30338 -(defconst prolog-right-paren "[])}]"prolog-right-paren788,30446 -(defconst prolog-quoted-atom-regexpprolog-quoted-atom-regexp791,30556 -(defconst prolog-string-regexpprolog-string-regexp794,30678 -(defconst prolog-head-delimiter "\\(:-\\|\\+:\\|-:\\|\\+\\?\\|-\\?\\|-->\\)"prolog-head-delimiter797,30778 -(defvar prolog-compilation-buffer "*prolog-compilation*"prolog-compilation-buffer800,30929 -(defvar prolog-temporary-file-name nil)prolog-temporary-file-name803,31053 -(defvar prolog-keywords-i nil)prolog-keywords-i804,31093 -(defvar prolog-types-i nil)prolog-types-i805,31124 -(defvar prolog-mode-specificators-i nil)prolog-mode-specificators-i806,31152 -(defvar prolog-determinism-specificators-i nil)prolog-determinism-specificators-i807,31193 -(defvar prolog-directives-i nil)prolog-directives-i808,31241 -(defvar prolog-program-name-i nil)prolog-program-name-i809,31274 -(defvar prolog-program-switches-i nil)prolog-program-switches-i810,31309 -(defvar prolog-consult-string-i nil)prolog-consult-string-i811,31348 -(defvar prolog-compile-string-i nil)prolog-compile-string-i812,31385 -(defvar prolog-eof-string-i nil)prolog-eof-string-i813,31422 -(defvar prolog-prompt-regexp-i nil)prolog-prompt-regexp-i814,31455 -(defvar prolog-continued-prompt-regexp-i nil)prolog-continued-prompt-regexp-i815,31491 -(defvar prolog-help-function-i nil)prolog-help-function-i816,31537 -(defvar prolog-align-rulesprolog-align-rules818,31574 -(defun prolog-atleast-version (version)prolog-atleast-version839,32219 -(define-abbrev-table 'prolog-mode-abbrev-table ())prolog-mode-abbrev-table884,33780 -(defun prolog-find-value-by-system (alist)prolog-find-value-by-system886,33832 -(defun prolog-mode-variables ()prolog-mode-variables907,34509 -(defun prolog-mode-keybindings-common (map)prolog-mode-keybindings-common958,36869 -(defun prolog-mode-keybindings-edit (map)prolog-mode-keybindings-edit969,37344 -(defun prolog-mode-keybindings-inferior (map)prolog-mode-keybindings-inferior1024,39928 -(defvar prolog-mode-hook nilprolog-mode-hook1046,40603 -(defun prolog-mode (&optional system)prolog-mode1050,40718 -(defun mercury-mode ()mercury-mode1104,42670 -(defun xsb-mode ()xsb-mode1111,42844 -(defvar prolog-inferior-mode-map nil)prolog-inferior-mode-map1122,43158 -(defvar prolog-inferior-mode-hook nilprolog-inferior-mode-hook1123,43196 -(defun prolog-inferior-mode ()prolog-inferior-mode1126,43314 -(defun prolog-input-filter (str)prolog-input-filter1176,45482 -(defun run-prolog (arg)run-prolog1184,45789 -(defun prolog-ensure-process (&optional wait)prolog-ensure-process1204,46515 -(defun prolog-process-insert-string (process string)prolog-process-insert-string1228,47358 -(defun prolog-old-process-region (compilep start end)prolog-old-process-region1249,48171 -(defun prolog-old-process-predicate (compilep)prolog-old-process-predicate1268,48971 -(defun prolog-old-process-buffer (compilep)prolog-old-process-buffer1274,49207 -(defun prolog-old-process-file (compilep)prolog-old-process-file1279,49414 -(defun prolog-consult-file ()prolog-consult-file1297,50106 -(defun prolog-consult-buffer ()prolog-consult-buffer1304,50319 -(defun prolog-consult-region (beg end)prolog-consult-region1311,50522 -(defun prolog-consult-predicate ()prolog-consult-predicate1318,50772 -(defun prolog-compile-file ()prolog-compile-file1325,51012 -(defun prolog-compile-buffer ()prolog-compile-buffer1332,51221 -(defun prolog-compile-region (beg end)prolog-compile-region1339,51420 -(defun prolog-compile-predicate ()prolog-compile-predicate1346,51666 -(defun prolog-buffer-module ()prolog-buffer-module1353,51902 -(defun prolog-build-prolog-command (compilep file buffername prolog-build-prolog-command1382,53035 -(defvar prolog-process-flag nilprolog-process-flag1426,55112 -(defvar prolog-consult-compile-output ""prolog-consult-compile-output1429,55236 -(defvar prolog-consult-compile-first-line 1prolog-consult-compile-first-line1431,55340 -(defvar prolog-consult-compile-file nilprolog-consult-compile-file1434,55476 -(defvar prolog-consult-compile-real-file nilprolog-consult-compile-real-file1436,55576 -(defun prolog-consult-compile (compilep file &optional first-line)prolog-consult-compile1439,55675 -(defun prolog-parse-sicstus-compilation-errors (limit)prolog-parse-sicstus-compilation-errors1498,58268 -(defun prolog-consult-compile-filter (process output)prolog-consult-compile-filter1532,59532 -(defun prolog-consult-compile-file (compilep)prolog-consult-compile-file1624,63621 -(defun prolog-consult-compile-buffer (compilep)prolog-consult-compile-buffer1634,63979 -(defun prolog-consult-compile-region (compilep beg end)prolog-consult-compile-region1639,64184 -(defun prolog-consult-compile-predicate (compilep)prolog-consult-compile-predicate1651,64698 -(defun prolog-make-keywords-regexp (keywords &optional protect)prolog-make-keywords-regexp1663,65129 -(defun prolog-font-lock-object-matcher (bound)prolog-font-lock-object-matcher1678,65684 -(defsubst prolog-face-name-p (facename)prolog-face-name-p1695,66407 -(defun prolog-font-lock-keywords ()prolog-font-lock-keywords1705,66861 -(defun prolog-indent-line (&optional whole-exp)prolog-indent-line1949,76278 -(defun prolog-comment-indent ()prolog-comment-indent1976,77129 -(defun prolog-indent-level ()prolog-indent-level1988,77553 -(defun prolog-find-indent-of-matching-paren ()prolog-find-indent-of-matching-paren2170,85517 -(defun prolog-indentation-level-of-line ()prolog-indentation-level-of-line2199,86488 -(defun prolog-first-pos-on-line ()prolog-first-pos-on-line2206,86682 -(defun prolog-paren-is-the-first-on-line-p ()prolog-paren-is-the-first-on-line-p2212,86825 -(defun prolog-find-unmatched-paren (&optional mode)prolog-find-unmatched-paren2224,87228 -(defun prolog-paren-balance ()prolog-paren-balance2275,89284 -(defun prolog-region-paren-balance (beg end)prolog-region-paren-balance2282,89546 -(defun prolog-goto-next-paren (limit-pos)prolog-goto-next-paren2291,89890 -(defun prolog-in-string-or-comment ()prolog-in-string-or-comment2305,90417 -(defun prolog-find-start-of-mline-comment ()prolog-find-start-of-mline-comment2349,92061 -(defun prolog-insert-spaces-after-paren ()prolog-insert-spaces-after-paren2357,92316 -(defun prolog-comment-limits ()prolog-comment-limits2392,93527 -(defun prolog-guess-fill-prefix ()prolog-guess-fill-prefix2467,96953 -(defun prolog-fill-paragraph ()prolog-fill-paragraph2498,98099 -(defun prolog-do-auto-fill ()prolog-do-auto-fill2525,99168 -(defconst prolog-tokenize-searchkeyprolog-tokenize-searchkey2571,100896 -(defun prolog-tokenize (beg end &optional stopcond)prolog-tokenize2585,101152 -(defun prolog-inside-mline-comment (here)prolog-inside-mline-comment2705,105286 -(defvar prolog-help-functionprolog-help-function2727,106234 -(defun prolog-help-on-predicate ()prolog-help-on-predicate2736,106519 -(defun prolog-help-info (predicate)prolog-help-info2765,107485 -(defun prolog-Info-follow-nearest-node ()prolog-Info-follow-nearest-node2800,108663 -(defun prolog-help-online (predicate)prolog-help-online2806,108810 -(defun prolog-help-apropos (string)prolog-help-apropos2811,108973 -(defun prolog-atom-under-point ()prolog-atom-under-point2823,109398 -(defun prolog-find-documentation ()prolog-find-documentation2841,110025 -(defvar prolog-info-alist nil prolog-info-alist2847,110226 -(defun prolog-goto-predicate-info (predicate)prolog-goto-predicate-info2856,110636 -(defun prolog-read-predicate ()prolog-read-predicate2880,111343 -(defun prolog-build-info-alist (&optional verbose)prolog-build-info-alist2901,112082 -(defun prolog-bsts (string)prolog-bsts2955,114624 -(defun prolog-temporary-file ()prolog-temporary-file2979,115222 -(defun prolog-goto-prolog-process-buffer ()prolog-goto-prolog-process-buffer3017,116913 -(defun prolog-enable-sicstus-sd ()prolog-enable-sicstus-sd3023,117090 -(defun prolog-disable-sicstus-sd ()prolog-disable-sicstus-sd3039,117664 -(defun prolog-debug-on (&optional arg)prolog-debug-on3050,118068 -(defun prolog-debug-off ()prolog-debug-off3060,118425 -(defun prolog-trace-on (&optional arg)prolog-trace-on3067,118662 -(defun prolog-trace-off ()prolog-trace-off3077,119015 -(defun prolog-zip-on (&optional arg)prolog-zip-on3084,119250 -(defun prolog-zip-off ()prolog-zip-off3094,119623 -(defun prolog-get-predspec ()prolog-get-predspec3131,121101 -(defun prolog-pred-start ()prolog-pred-start3162,122315 -(defun prolog-pred-end ()prolog-pred-end3194,123621 -(defun prolog-clause-start (&optional not-allow-methods)prolog-clause-start3238,125388 -(defun prolog-clause-end (&optional not-allow-methods)prolog-clause-end3303,128009 -(defun prolog-clause-info ()prolog-clause-info3328,129027 -(defun prolog-in-object ()prolog-in-object3361,130371 -(defun prolog-forward-list ()prolog-forward-list3377,130985 -(defun prolog-backward-list ()prolog-backward-list3386,131295 -(defun prolog-beginning-of-clause ()prolog-beginning-of-clause3406,132010 -(defun prolog-end-of-clause ()prolog-end-of-clause3426,132624 -(defun prolog-beginning-of-predicate ()prolog-beginning-of-predicate3447,133237 -(defun prolog-end-of-predicate ()prolog-end-of-predicate3467,133866 -(defun prolog-insert-predspec ()prolog-insert-predspec3477,134122 -(defun prolog-view-predspec ()prolog-view-predspec3485,134374 -(defun prolog-insert-predicate-template ()prolog-insert-predicate-template3493,134625 -(defun prolog-insert-next-clause ()prolog-insert-next-clause3515,135158 -(defun prolog-insert-module-modeline ()prolog-insert-module-modeline3521,135320 -(defun prolog-uncomment-region (beg end)prolog-uncomment-region3529,135595 -(defun prolog-goto-comment-column (&optional nocreate)prolog-goto-comment-column3534,135734 -(defun prolog-indent-predicate ()prolog-indent-predicate3551,136406 -(defun prolog-indent-buffer ()prolog-indent-buffer3556,136553 -(defun prolog-mark-clause ()prolog-mark-clause3561,136679 -(defun prolog-mark-predicate ()prolog-mark-predicate3572,136984 -(defun prolog-electric-delete (arg)prolog-electric-delete3585,137333 -(defun prolog-electric-if-then-else (arg)prolog-electric-if-then-else3606,138161 -(defun prolog-electric-colon (arg)prolog-electric-colon3613,138469 -(defun prolog-electric-dash (arg)prolog-electric-dash3630,139167 -(defun prolog-electric-dot (arg)prolog-electric-dot3647,139860 -(defun prolog-electric-underscore ()prolog-electric-underscore3712,142151 -(defun prolog-find-term (functor arity &optional prefix)prolog-find-term3750,143509 -(defun prolog-variables-to-anonymous (beg end)prolog-variables-to-anonymous3780,144634 -(defun prolog-set-atom-regexps ()prolog-set-atom-regexps3795,145081 -(defun prolog-build-case-strings ()prolog-build-case-strings3808,145531 -(defun prolog-ints-intervals (ints)prolog-ints-intervals3882,148509 -(defun prolog-dash-letters (string)prolog-dash-letters3899,149064 -(defun prolog-menu ()prolog-menu3946,150640 -(defun prolog-inferior-menu ()prolog-inferior-menu4082,156136 -(defun prolog-mode-version ()prolog-mode-version4156,158635 - -misc/SWIATOMS,0 - -misc/tests,0 - -misc/tkyap,0 - -misc/tmp/foreigns.yap,0 - -misc/yapu,0 - -mxe/CMakeFiles/3.5.2/CompilerIdC/CMakeCCompilerId.c,10138 -# define ID_VOID_MAINID_VOID_MAIN6,98 -# define COMPILER_ID COMPILER_ID14,303 -# define SIMULATE_ID SIMULATE_ID16,355 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR19,423 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR20,481 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH22,581 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH24,650 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK28,809 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR32,931 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR33,984 -# define COMPILER_ID COMPILER_ID37,1072 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR38,1105 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR39,1153 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH41,1243 -# define COMPILER_ID COMPILER_ID45,1374 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR46,1409 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR47,1481 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH48,1553 -# define COMPILER_ID COMPILER_ID51,1654 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53,1714 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR54,1767 -# define COMPILER_ID COMPILER_ID57,1874 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR59,1932 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR60,1987 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH62,2076 -# define COMPILER_ID COMPILER_ID66,2167 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR68,2236 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR69,2300 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH71,2389 -# define COMPILER_ID COMPILER_ID75,2479 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR78,2564 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR79,2617 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH80,2676 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2770 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2822 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,2880 -# define COMPILER_ID COMPILER_ID89,2970 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR91,3021 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR92,3072 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH93,3127 -# define COMPILER_ID COMPILER_ID96,3205 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR98,3266 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR99,3323 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH100,3385 -# define COMPILER_ID COMPILER_ID103,3503 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR105,3553 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR106,3603 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH107,3657 -# define COMPILER_ID COMPILER_ID110,3785 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR112,3834 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR113,3884 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH114,3938 -# define COMPILER_ID COMPILER_ID117,4065 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR119,4121 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR120,4171 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH121,4225 -# define COMPILER_ID COMPILER_ID124,4301 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR125,4328 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR126,4374 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH128,4460 -# define COMPILER_ID COMPILER_ID132,4549 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR133,4577 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR134,4629 -# define COMPILER_ID COMPILER_ID137,4721 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR139,4791 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR140,4860 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH141,4935 -# define COMPILER_ID COMPILER_ID144,5088 -# define COMPILER_ID COMPILER_ID147,5145 -# define COMPILER_ID COMPILER_ID150,5207 -# define COMPILER_ID COMPILER_ID153,5296 -# define SIMULATE_ID SIMULATE_ID155,5353 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR157,5390 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR158,5443 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH159,5496 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR162,5602 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR163,5655 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK165,5716 -# define COMPILER_ID COMPILER_ID168,5803 -# define SIMULATE_ID SIMULATE_ID170,5855 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR172,5892 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR173,5945 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH174,5998 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR177,6104 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR178,6157 -# define COMPILER_ID COMPILER_ID182,6243 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR183,6270 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR185,6345 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH188,6440 -# define COMPILER_ID COMPILER_ID192,6531 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR194,6583 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR195,6635 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH199,6774 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH202,6879 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK206,6982 -# define COMPILER_ID COMPILER_ID210,7154 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR213,7258 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR214,7320 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH215,7389 -# define COMPILER_ID COMPILER_ID219,7532 -# define COMPILER_ID COMPILER_ID222,7591 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR225,7685 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR226,7748 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH227,7815 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR230,7921 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR231,7983 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH232,8049 -# define COMPILER_ID COMPILER_ID237,8144 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR239,8191 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR240,8238 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH241,8289 -# define COMPILER_ID COMPILER_ID244,8408 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR247,8511 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR248,8575 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH249,8643 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR252,8750 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR253,8810 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH254,8874 -# define COMPILER_ID COMPILER_ID262,9135 -# define COMPILER_ID COMPILER_ID265,9208 -# define COMPILER_ID COMPILER_ID268,9264 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler275,9562 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate277,9649 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto281,9743 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray285,9838 -#define STRINGIFY_HELPER(STRINGIFY_HELPER288,9913 -#define STRINGIFY(STRINGIFY289,9944 -# define PLATFORM_ID PLATFORM_ID293,10088 -# define PLATFORM_ID PLATFORM_ID296,10144 -# define PLATFORM_ID PLATFORM_ID299,10202 -# define PLATFORM_ID PLATFORM_ID302,10257 -# define PLATFORM_ID PLATFORM_ID305,10350 -# define PLATFORM_ID PLATFORM_ID308,10431 -# define PLATFORM_ID PLATFORM_ID311,10510 -# define PLATFORM_ID PLATFORM_ID314,10590 -# define PLATFORM_ID PLATFORM_ID317,10659 -# define PLATFORM_ID PLATFORM_ID320,10785 -# define PLATFORM_ID PLATFORM_ID323,10871 -# define PLATFORM_ID PLATFORM_ID326,10943 -# define PLATFORM_ID PLATFORM_ID329,10998 -# define PLATFORM_ID PLATFORM_ID332,11089 -# define PLATFORM_ID PLATFORM_ID335,11164 -# define PLATFORM_ID PLATFORM_ID338,11256 -# define PLATFORM_ID PLATFORM_ID341,11333 -# define PLATFORM_ID PLATFORM_ID344,11431 -# define PLATFORM_ID PLATFORM_ID347,11488 -# define PLATFORM_ID PLATFORM_ID350,11545 -# define PLATFORM_ID PLATFORM_ID353,11615 -# define PLATFORM_ID PLATFORM_ID356,11687 -# define PLATFORM_ID PLATFORM_ID359,11777 -# define PLATFORM_ID PLATFORM_ID362,11875 -# define PLATFORM_ID PLATFORM_ID365,11968 -# define PLATFORM_ID PLATFORM_ID369,12049 -# define PLATFORM_ID PLATFORM_ID372,12104 -# define PLATFORM_ID PLATFORM_ID375,12157 -# define PLATFORM_ID PLATFORM_ID378,12214 -# define PLATFORM_ID PLATFORM_ID381,12279 -# define PLATFORM_ID PLATFORM_ID385,12342 -# define ARCHITECTURE_ID ARCHITECTURE_ID396,12685 -# define ARCHITECTURE_ID ARCHITECTURE_ID399,12763 -# define ARCHITECTURE_ID ARCHITECTURE_ID402,12820 -# define ARCHITECTURE_ID ARCHITECTURE_ID406,12894 -# define ARCHITECTURE_ID ARCHITECTURE_ID408,12950 -# define ARCHITECTURE_ID ARCHITECTURE_ID410,12994 -# define ARCHITECTURE_ID ARCHITECTURE_ID414,13080 -# define ARCHITECTURE_ID ARCHITECTURE_ID417,13136 -# define ARCHITECTURE_ID ARCHITECTURE_ID420,13203 -# define ARCHITECTURE_ID ARCHITECTURE_ID425,13289 -# define ARCHITECTURE_ID ARCHITECTURE_ID428,13346 -# define ARCHITECTURE_ID ARCHITECTURE_ID431,13413 -# define ARCHITECTURE_ID ARCHITECTURE_ID435,13457 -#define DEC(DEC439,13544 -#define HEX(HEX450,13893 -char const info_version[] = {info_version462,14255 -char const info_simulate_version[] = {info_simulate_version480,14752 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform500,15421 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch501,15489 -const char* info_language_dialect_default = "INFO" ":" "dialect_default["info_language_dialect_default506,15557 -void main() {}main520,15870 -int main(int argc, char* argv[])main522,15891 - -mxe/CMakeFiles/3.5.2/CompilerIdCXX/CMakeCXXCompilerId.cpp,9959 -# define COMPILER_ID COMPILER_ID13,390 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR15,451 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR16,511 -# define COMPILER_ID COMPILER_ID19,622 -# define SIMULATE_ID SIMULATE_ID21,674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,742 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,900 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,969 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,1128 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1250 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1303 -# define COMPILER_ID COMPILER_ID42,1391 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1424 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1472 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1562 -# define COMPILER_ID COMPILER_ID50,1693 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1728 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1872 -# define COMPILER_ID COMPILER_ID56,1973 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,2033 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,2086 -# define COMPILER_ID COMPILER_ID62,2193 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2251 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2306 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2395 -# define COMPILER_ID COMPILER_ID71,2486 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2555 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2619 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2708 -# define COMPILER_ID COMPILER_ID80,2799 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2886 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2940 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,3000 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,3095 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,3148 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,3207 -# define COMPILER_ID COMPILER_ID94,3299 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3351 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3403 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3459 -# define COMPILER_ID COMPILER_ID101,3540 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3603 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3662 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3726 -# define COMPILER_ID COMPILER_ID108,3848 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3900 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3952 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,4008 -# define COMPILER_ID COMPILER_ID115,4142 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,4193 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,4245 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4301 -# define COMPILER_ID COMPILER_ID122,4434 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4492 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4544 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4600 -# define COMPILER_ID COMPILER_ID129,4678 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4705 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4751 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4837 -# define COMPILER_ID COMPILER_ID137,4926 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4954 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,5006 -# define COMPILER_ID COMPILER_ID142,5098 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,5168 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,5237 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5312 -# define COMPILER_ID COMPILER_ID149,5465 -# define COMPILER_ID COMPILER_ID152,5528 -# define COMPILER_ID COMPILER_ID155,5617 -# define SIMULATE_ID SIMULATE_ID157,5674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR159,5711 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR160,5764 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH161,5817 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR164,5923 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR165,5976 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK167,6037 -# define COMPILER_ID COMPILER_ID170,6124 -# define SIMULATE_ID SIMULATE_ID172,6176 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR174,6213 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR175,6266 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH176,6319 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR179,6425 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR180,6478 -# define COMPILER_ID COMPILER_ID184,6564 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR185,6591 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR187,6666 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH190,6761 -# define COMPILER_ID COMPILER_ID194,6852 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR196,6904 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR197,6956 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH201,7095 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH204,7200 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK208,7303 -# define COMPILER_ID COMPILER_ID212,7475 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR215,7579 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR216,7641 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH217,7710 -# define COMPILER_ID COMPILER_ID221,7853 -# define COMPILER_ID COMPILER_ID224,7912 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR227,8006 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR228,8069 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH229,8136 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR232,8242 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR233,8304 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH234,8370 -# define COMPILER_ID COMPILER_ID239,8512 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR242,8615 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR243,8679 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH244,8747 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR247,8854 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR248,8914 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH249,8978 -# define COMPILER_ID COMPILER_ID257,9239 -# define COMPILER_ID COMPILER_ID260,9312 -# define COMPILER_ID COMPILER_ID263,9368 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler270,9666 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate272,9753 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto276,9847 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray280,9942 -#define STRINGIFY_HELPER(STRINGIFY_HELPER283,10017 -#define STRINGIFY(STRINGIFY284,10048 -# define PLATFORM_ID PLATFORM_ID288,10192 -# define PLATFORM_ID PLATFORM_ID291,10248 -# define PLATFORM_ID PLATFORM_ID294,10306 -# define PLATFORM_ID PLATFORM_ID297,10361 -# define PLATFORM_ID PLATFORM_ID300,10454 -# define PLATFORM_ID PLATFORM_ID303,10535 -# define PLATFORM_ID PLATFORM_ID306,10614 -# define PLATFORM_ID PLATFORM_ID309,10694 -# define PLATFORM_ID PLATFORM_ID312,10763 -# define PLATFORM_ID PLATFORM_ID315,10889 -# define PLATFORM_ID PLATFORM_ID318,10975 -# define PLATFORM_ID PLATFORM_ID321,11047 -# define PLATFORM_ID PLATFORM_ID324,11102 -# define PLATFORM_ID PLATFORM_ID327,11193 -# define PLATFORM_ID PLATFORM_ID330,11268 -# define PLATFORM_ID PLATFORM_ID333,11360 -# define PLATFORM_ID PLATFORM_ID336,11437 -# define PLATFORM_ID PLATFORM_ID339,11535 -# define PLATFORM_ID PLATFORM_ID342,11592 -# define PLATFORM_ID PLATFORM_ID345,11649 -# define PLATFORM_ID PLATFORM_ID348,11719 -# define PLATFORM_ID PLATFORM_ID351,11791 -# define PLATFORM_ID PLATFORM_ID354,11881 -# define PLATFORM_ID PLATFORM_ID357,11979 -# define PLATFORM_ID PLATFORM_ID360,12072 -# define PLATFORM_ID PLATFORM_ID364,12153 -# define PLATFORM_ID PLATFORM_ID367,12208 -# define PLATFORM_ID PLATFORM_ID370,12261 -# define PLATFORM_ID PLATFORM_ID373,12318 -# define PLATFORM_ID PLATFORM_ID376,12383 -# define PLATFORM_ID PLATFORM_ID380,12446 -# define ARCHITECTURE_ID ARCHITECTURE_ID391,12789 -# define ARCHITECTURE_ID ARCHITECTURE_ID394,12867 -# define ARCHITECTURE_ID ARCHITECTURE_ID397,12924 -# define ARCHITECTURE_ID ARCHITECTURE_ID401,12998 -# define ARCHITECTURE_ID ARCHITECTURE_ID403,13054 -# define ARCHITECTURE_ID ARCHITECTURE_ID405,13098 -# define ARCHITECTURE_ID ARCHITECTURE_ID409,13184 -# define ARCHITECTURE_ID ARCHITECTURE_ID412,13240 -# define ARCHITECTURE_ID ARCHITECTURE_ID415,13307 -# define ARCHITECTURE_ID ARCHITECTURE_ID420,13393 -# define ARCHITECTURE_ID ARCHITECTURE_ID423,13450 -# define ARCHITECTURE_ID ARCHITECTURE_ID426,13517 -# define ARCHITECTURE_ID ARCHITECTURE_ID430,13561 -#define DEC(DEC434,13648 -#define HEX(HEX445,13997 -char const info_version[] = {info_version457,14359 -char const info_simulate_version[] = {info_simulate_version475,14856 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform495,15525 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch496,15593 -const char* info_language_dialect_default = "INFO" ":" "dialect_default["info_language_dialect_default501,15661 -int main(int argc, char* argv[])main513,15911 - -mxe/CMakeFiles/3.8.0/CompilerIdC/CMakeCCompilerId.c,10631 -# define ID_VOID_MAINID_VOID_MAIN6,98 -# define constconst10,197 -# define volatilevolatile11,212 -# define COMPILER_ID COMPILER_ID19,413 -# define SIMULATE_ID SIMULATE_ID21,465 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,533 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,591 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,691 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,760 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,919 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1041 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1094 -# define COMPILER_ID COMPILER_ID42,1182 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1215 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1263 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1353 -# define COMPILER_ID COMPILER_ID50,1484 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1519 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1591 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1663 -# define COMPILER_ID COMPILER_ID56,1764 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,1824 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,1877 -# define COMPILER_ID COMPILER_ID62,1984 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2042 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2097 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2186 -# define COMPILER_ID COMPILER_ID71,2277 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2346 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2410 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2499 -# define COMPILER_ID COMPILER_ID80,2589 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2674 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2727 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,2786 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,2880 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,2932 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,2990 -# define COMPILER_ID COMPILER_ID94,3080 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3131 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3182 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3237 -# define COMPILER_ID COMPILER_ID101,3315 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3376 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3433 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3495 -# define COMPILER_ID COMPILER_ID108,3613 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3663 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3713 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,3767 -# define COMPILER_ID COMPILER_ID115,3895 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,3944 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,3994 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4048 -# define COMPILER_ID COMPILER_ID122,4175 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4231 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4281 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4335 -# define COMPILER_ID COMPILER_ID129,4411 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4438 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4484 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4570 -# define COMPILER_ID COMPILER_ID137,4659 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4687 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,4739 -# define COMPILER_ID COMPILER_ID142,4831 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,4901 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,4970 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5045 -# define COMPILER_ID COMPILER_ID149,5198 -# define COMPILER_ID COMPILER_ID152,5255 -# define COMPILER_ID COMPILER_ID155,5309 -# define COMPILER_ID COMPILER_ID158,5370 -# define COMPILER_ID COMPILER_ID161,5459 -# define SIMULATE_ID SIMULATE_ID163,5516 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR165,5553 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR166,5606 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH167,5659 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR170,5765 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR171,5818 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK173,5879 -# define COMPILER_ID COMPILER_ID176,5966 -# define SIMULATE_ID SIMULATE_ID178,6018 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR180,6055 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR181,6108 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH182,6161 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR185,6267 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR186,6320 -# define COMPILER_ID COMPILER_ID190,6406 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR191,6433 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR193,6508 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH196,6603 -# define COMPILER_ID COMPILER_ID200,6694 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR202,6746 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR203,6798 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH207,6937 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH210,7042 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK214,7145 -# define COMPILER_ID COMPILER_ID218,7317 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR221,7421 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR222,7483 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH223,7552 -# define COMPILER_ID COMPILER_ID227,7695 -# define COMPILER_ID COMPILER_ID230,7754 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR233,7848 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR234,7911 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH235,7978 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR238,8084 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR239,8146 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH240,8212 -# define COMPILER_ID COMPILER_ID245,8340 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR247,8403 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR248,8462 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH249,8521 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR252,8606 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR253,8653 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH254,8704 -# define COMPILER_ID COMPILER_ID258,8831 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR261,8934 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR262,8998 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH263,9066 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR266,9173 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR267,9233 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH268,9297 -# define COMPILER_ID COMPILER_ID276,9558 -# define COMPILER_ID COMPILER_ID279,9631 -# define COMPILER_ID COMPILER_ID282,9687 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler289,9985 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate291,10072 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto295,10166 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray299,10261 -#define STRINGIFY_HELPER(STRINGIFY_HELPER302,10336 -#define STRINGIFY(STRINGIFY303,10367 -# define PLATFORM_ID PLATFORM_ID307,10511 -# define PLATFORM_ID PLATFORM_ID310,10567 -# define PLATFORM_ID PLATFORM_ID313,10625 -# define PLATFORM_ID PLATFORM_ID316,10680 -# define PLATFORM_ID PLATFORM_ID319,10773 -# define PLATFORM_ID PLATFORM_ID322,10854 -# define PLATFORM_ID PLATFORM_ID325,10933 -# define PLATFORM_ID PLATFORM_ID328,11013 -# define PLATFORM_ID PLATFORM_ID331,11082 -# define PLATFORM_ID PLATFORM_ID334,11208 -# define PLATFORM_ID PLATFORM_ID337,11294 -# define PLATFORM_ID PLATFORM_ID340,11366 -# define PLATFORM_ID PLATFORM_ID343,11421 -# define PLATFORM_ID PLATFORM_ID346,11512 -# define PLATFORM_ID PLATFORM_ID349,11587 -# define PLATFORM_ID PLATFORM_ID352,11679 -# define PLATFORM_ID PLATFORM_ID355,11756 -# define PLATFORM_ID PLATFORM_ID358,11854 -# define PLATFORM_ID PLATFORM_ID361,11911 -# define PLATFORM_ID PLATFORM_ID364,11968 -# define PLATFORM_ID PLATFORM_ID367,12038 -# define PLATFORM_ID PLATFORM_ID370,12110 -# define PLATFORM_ID PLATFORM_ID373,12200 -# define PLATFORM_ID PLATFORM_ID376,12298 -# define PLATFORM_ID PLATFORM_ID379,12391 -# define PLATFORM_ID PLATFORM_ID383,12472 -# define PLATFORM_ID PLATFORM_ID386,12527 -# define PLATFORM_ID PLATFORM_ID389,12580 -# define PLATFORM_ID PLATFORM_ID392,12637 -# define PLATFORM_IDPLATFORM_ID395,12702 -# define PLATFORM_IDPLATFORM_ID399,12762 -# define ARCHITECTURE_ID ARCHITECTURE_ID410,13102 -# define ARCHITECTURE_ID ARCHITECTURE_ID413,13180 -# define ARCHITECTURE_ID ARCHITECTURE_ID416,13237 -# define ARCHITECTURE_ID ARCHITECTURE_ID420,13311 -# define ARCHITECTURE_ID ARCHITECTURE_ID422,13367 -# define ARCHITECTURE_ID ARCHITECTURE_ID424,13411 -# define ARCHITECTURE_ID ARCHITECTURE_ID428,13497 -# define ARCHITECTURE_ID ARCHITECTURE_ID431,13553 -# define ARCHITECTURE_ID ARCHITECTURE_ID434,13620 -# define ARCHITECTURE_ID ARCHITECTURE_ID439,13706 -# define ARCHITECTURE_ID ARCHITECTURE_ID442,13763 -# define ARCHITECTURE_ID ARCHITECTURE_ID445,13830 -# define ARCHITECTURE_IDARCHITECTURE_ID449,13874 -#define DEC(DEC453,13958 -#define HEX(HEX464,14307 -char const info_version[] = {info_version476,14669 -char const info_simulate_version[] = {info_simulate_version494,15166 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform514,15835 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch515,15903 -# define C_DIALECT C_DIALECT522,16040 -# define C_DIALECTC_DIALECT524,16072 -# define C_DIALECT C_DIALECT527,16134 -# define C_DIALECT C_DIALECT529,16192 -# define C_DIALECT C_DIALECT531,16222 -const char* info_language_dialect_default =info_language_dialect_default533,16253 -void main() {}main539,16445 -int main(argc, argv) int argc; char *argv[];main542,16494 - -mxe/CMakeFiles/3.8.0/CompilerIdCXX/CMakeCXXCompilerId.cpp,10024 -# define COMPILER_ID COMPILER_ID13,390 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR15,451 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR16,511 -# define COMPILER_ID COMPILER_ID19,622 -# define SIMULATE_ID SIMULATE_ID21,674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,742 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,900 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,969 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,1128 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1250 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1303 -# define COMPILER_ID COMPILER_ID42,1391 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1424 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1472 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1562 -# define COMPILER_ID COMPILER_ID50,1693 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1728 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1872 -# define COMPILER_ID COMPILER_ID56,1973 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,2033 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,2086 -# define COMPILER_ID COMPILER_ID62,2193 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2251 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2306 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2395 -# define COMPILER_ID COMPILER_ID71,2486 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2555 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2619 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2708 -# define COMPILER_ID COMPILER_ID80,2799 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2886 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2940 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,3000 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,3095 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,3148 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,3207 -# define COMPILER_ID COMPILER_ID94,3299 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3351 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3403 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3459 -# define COMPILER_ID COMPILER_ID101,3540 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3603 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3662 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3726 -# define COMPILER_ID COMPILER_ID108,3848 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3900 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3952 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,4008 -# define COMPILER_ID COMPILER_ID115,4142 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,4193 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,4245 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4301 -# define COMPILER_ID COMPILER_ID122,4434 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4492 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4544 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4600 -# define COMPILER_ID COMPILER_ID129,4678 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4705 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4751 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4837 -# define COMPILER_ID COMPILER_ID137,4926 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4954 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,5006 -# define COMPILER_ID COMPILER_ID142,5098 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,5168 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,5237 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5312 -# define COMPILER_ID COMPILER_ID149,5465 -# define COMPILER_ID COMPILER_ID152,5528 -# define COMPILER_ID COMPILER_ID155,5617 -# define SIMULATE_ID SIMULATE_ID157,5674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR159,5711 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR160,5764 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH161,5817 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR164,5923 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR165,5976 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK167,6037 -# define COMPILER_ID COMPILER_ID170,6124 -# define SIMULATE_ID SIMULATE_ID172,6176 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR174,6213 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR175,6266 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH176,6319 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR179,6425 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR180,6478 -# define COMPILER_ID COMPILER_ID184,6585 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR186,6635 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR188,6689 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR191,6773 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH194,6868 -# define COMPILER_ID COMPILER_ID198,6959 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR200,7011 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR201,7063 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH205,7202 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH208,7307 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK212,7410 -# define COMPILER_ID COMPILER_ID216,7582 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR219,7686 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR220,7748 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH221,7817 -# define COMPILER_ID COMPILER_ID225,7960 -# define COMPILER_ID COMPILER_ID228,8019 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR231,8113 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR232,8176 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH233,8243 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR236,8349 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR237,8411 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH238,8477 -# define COMPILER_ID COMPILER_ID243,8619 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR246,8722 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR247,8786 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH248,8854 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR251,8961 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR252,9021 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH253,9085 -# define COMPILER_ID COMPILER_ID261,9346 -# define COMPILER_ID COMPILER_ID264,9419 -# define COMPILER_ID COMPILER_ID267,9475 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler274,9773 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate276,9860 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto280,9954 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray284,10049 -#define STRINGIFY_HELPER(STRINGIFY_HELPER287,10124 -#define STRINGIFY(STRINGIFY288,10155 -# define PLATFORM_ID PLATFORM_ID292,10299 -# define PLATFORM_ID PLATFORM_ID295,10355 -# define PLATFORM_ID PLATFORM_ID298,10413 -# define PLATFORM_ID PLATFORM_ID301,10468 -# define PLATFORM_ID PLATFORM_ID304,10561 -# define PLATFORM_ID PLATFORM_ID307,10642 -# define PLATFORM_ID PLATFORM_ID310,10721 -# define PLATFORM_ID PLATFORM_ID313,10801 -# define PLATFORM_ID PLATFORM_ID316,10870 -# define PLATFORM_ID PLATFORM_ID319,10996 -# define PLATFORM_ID PLATFORM_ID322,11082 -# define PLATFORM_ID PLATFORM_ID325,11154 -# define PLATFORM_ID PLATFORM_ID328,11209 -# define PLATFORM_ID PLATFORM_ID331,11300 -# define PLATFORM_ID PLATFORM_ID334,11375 -# define PLATFORM_ID PLATFORM_ID337,11467 -# define PLATFORM_ID PLATFORM_ID340,11544 -# define PLATFORM_ID PLATFORM_ID343,11642 -# define PLATFORM_ID PLATFORM_ID346,11699 -# define PLATFORM_ID PLATFORM_ID349,11756 -# define PLATFORM_ID PLATFORM_ID352,11826 -# define PLATFORM_ID PLATFORM_ID355,11898 -# define PLATFORM_ID PLATFORM_ID358,11988 -# define PLATFORM_ID PLATFORM_ID361,12086 -# define PLATFORM_ID PLATFORM_ID364,12179 -# define PLATFORM_ID PLATFORM_ID368,12260 -# define PLATFORM_ID PLATFORM_ID371,12315 -# define PLATFORM_ID PLATFORM_ID374,12368 -# define PLATFORM_ID PLATFORM_ID377,12425 -# define PLATFORM_IDPLATFORM_ID380,12490 -# define PLATFORM_IDPLATFORM_ID384,12550 -# define ARCHITECTURE_ID ARCHITECTURE_ID395,12890 -# define ARCHITECTURE_ID ARCHITECTURE_ID398,12968 -# define ARCHITECTURE_ID ARCHITECTURE_ID401,13025 -# define ARCHITECTURE_ID ARCHITECTURE_ID405,13099 -# define ARCHITECTURE_ID ARCHITECTURE_ID407,13155 -# define ARCHITECTURE_ID ARCHITECTURE_ID409,13199 -# define ARCHITECTURE_ID ARCHITECTURE_ID413,13285 -# define ARCHITECTURE_ID ARCHITECTURE_ID416,13341 -# define ARCHITECTURE_ID ARCHITECTURE_ID419,13408 -# define ARCHITECTURE_ID ARCHITECTURE_ID424,13494 -# define ARCHITECTURE_ID ARCHITECTURE_ID427,13551 -# define ARCHITECTURE_ID ARCHITECTURE_ID430,13618 -# define ARCHITECTURE_IDARCHITECTURE_ID434,13662 -#define DEC(DEC438,13746 -#define HEX(HEX449,14095 -char const info_version[] = {info_version461,14457 -char const info_simulate_version[] = {info_simulate_version479,14954 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform499,15623 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch500,15691 -const char* info_language_dialect_default = "INFO" ":" "dialect_default["info_language_dialect_default505,15759 -int main(int argc, char* argv[])main519,16044 - -mxe/CMakeFiles/CheckTypeSize/CELLSIZE.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,381 -int main(argc, argv) int argc; char *argv[];main31,682 - -mxe/CMakeFiles/CheckTypeSize/RL_COMPLETION_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,392 -int main(argc, argv) int argc; char *argv[];main31,693 - -mxe/CMakeFiles/CheckTypeSize/RL_HOOK_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,386 -int main(argc, argv) int argc; char *argv[];main31,687 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_DOUBLE.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_FLOAT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,377 -int main(argc, argv) int argc; char *argv[];main31,678 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,375 -int main(argc, argv) int argc; char *argv[];main31,676 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_INT_P.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,377 -int main(argc, argv) int argc; char *argv[];main31,678 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_LONG.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,380 -int main(argc, argv) int argc; char *argv[];main31,681 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_LONG_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,380 -int main(argc, argv) int argc; char *argv[];main31,681 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_LONG_LONG.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,385 -int main(argc, argv) int argc; char *argv[];main31,686 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_LONG_LONG_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,385 -int main(argc, argv) int argc; char *argv[];main31,686 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_SHORT_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,381 -int main(argc, argv) int argc; char *argv[];main31,682 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_VOID_P.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_VOIDP.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -mxe/CMakeFiles/CheckTypeSize/SIZEOF_WCHAR_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,379 -int main(argc, argv) int argc; char *argv[];main31,680 - -mxe/CMakeFiles/feature_tests.c,128 - const char features[] = {"\n"features2,1 -int main(int argc, char** argv) { (void)argv; return features[argc]; }main34,617 - -mxe/CMakeFiles/feature_tests.cxx,130 - const char features[] = {"\n"features2,1 -int main(int argc, char** argv) { (void)argv; return features[argc]; }main405,9940 - -mxe/CMakeFiles/git-data/HEAD,0 - -mxe/CMakeFiles/git-data/head-ref,0 - -mxe/CMakeFiles/Makefile2,0 - -mxe/config.h,10339 - #define CONFIG_HCONFIG_H8,340 - #define SYSTEM_OPTIONS SYSTEM_OPTIONS11,424 -#define DEPTH_LIMIT DEPTH_LIMIT20,740 -#define USE_THREADED_CODE USE_THREADED_CODE25,856 -#define TABLING TABLING30,959 -#define LOW_LEVEL_TRACER LOW_LEVEL_TRACER35,1069 -#define ALIGN_LONGS ALIGN_LONGS50,1399 -#define BITNESS BITNESS55,1474 -#define CELLSIZE CELLSIZE65,1662 -#define C_CC C_CC70,1724 -#define C_CFLAGS C_CFLAGS75,1848 -#define C_LDFLAGS C_LDFLAGS80,1917 -#define C_LIBPLSO C_LIBPLSO85,1998 -#define C_LIBS C_LIBS90,2068 -#define FFIEEE FFIEEE95,2181 -#define GC_NO_TAGS GC_NO_TAGS107,2450 -#define HAVE_ACCESS HAVE_ACCESS117,2655 -#define HAVE_ACOSH HAVE_ACOSH122,2756 -#define HAVE_ADD_HISTORY HAVE_ADD_HISTORY127,2868 -#define HAVE_ASINH HAVE_ASINH236,6198 -#define HAVE_ATANH HAVE_ATANH241,6298 -#define HAVE_BASENAME HAVE_BASENAME246,6404 -#define HAVE_CHDIR HAVE_CHDIR256,6621 -#define HAVE_CLOCK HAVE_CLOCK261,6721 -#define HAVE_CTIME HAVE_CTIME281,7193 -#define HAVE_CTYPE_H HAVE_CTYPE_H286,7300 -#define HAVE_DIRECT_H HAVE_DIRECT_H291,7411 -#define HAVE_DIRENT_H HAVE_DIRENT_H296,7523 -#define HAVE_DLFCN_H HAVE_DLFCN_H301,7633 -#define HAVE_DLOPEN HAVE_DLOPEN306,7737 -#define HAVE_DUP2 HAVE_DUP2311,7836 -#define HAVE_ERF HAVE_ERF326,8113 -#define HAVE_ERRNO_H HAVE_ERRNO_H331,8218 -#define HAVE_FCNTL_H HAVE_FCNTL_H341,8448 -#define HAVE_FECLEAREXCEPT HAVE_FECLEAREXCEPT346,8566 -#define HAVE_FENV_H HAVE_FENV_H356,8809 -#define HAVE_FESETEXCEPTFLAG HAVE_FESETEXCEPTFLAG361,8930 -#define HAVE_FESETROUND HAVE_FESETROUND366,9050 -#define HAVE_FETESTEXCEPT HAVE_FETESTEXCEPT376,9302 -#define HAVE_FGETPOS HAVE_FGETPOS391,9616 -#define HAVE_FINITE HAVE_FINITE396,9720 -#define HAVE_FPCLASS HAVE_FPCLASS421,10252 -#define HAVE_FTIME HAVE_FTIME431,10484 -#define HAVE_FTRUNCATE HAVE_FTRUNCATE436,10592 -#define HAVE_GCC HAVE_GCC446,10809 -#define HAVE_GETCWD HAVE_GETCWD451,10909 -#define HAVE_GETENV HAVE_GETENV456,11012 -#define HAVE_GETPAGESIZE HAVE_GETPAGESIZE491,11842 -#define HAVE_GETPID HAVE_GETPID496,11950 -#define HAVE_GETTIMEOFDAY HAVE_GETTIMEOFDAY516,12407 -#define HAVE_GMTIME HAVE_GMTIME541,12945 -#define HAVE_IEEEFP_H HAVE_IEEEFP_H551,13146 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H556,13262 -#define HAVE_IO_H HAVE_IO_H561,13368 -#define HAVE_ISATTY HAVE_ISATTY566,13469 -#define HAVE_ISNAN HAVE_ISNAN581,13785 -#define HAVE_ISWBLANK HAVE_ISWBLANK586,13888 -#define HAVE_ISWSPACE HAVE_ISWSPACE591,13997 -#define HAVE_LABS HAVE_LABS606,14307 -#define HAVE_LIBANDROID HAVE_LIBANDROID616,14530 -#define HAVE_LIBCOMDLG32 HAVE_LIBCOMDLG32621,14655 -#define HAVE_LIBCRYPT HAVE_LIBCRYPT626,14772 -#define HAVE_LIBGEN_H HAVE_LIBGEN_H636,14989 -#define HAVE_LIBGMP HAVE_LIBGMP642,15099 -#define HAVE_LIBJUDY HAVE_LIBJUDY647,15208 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H652,15330 -#define HAVE_LIBLOG HAVE_LIBLOG657,15445 -#define HAVE_LIBM HAVE_LIBM662,15545 -#define HAVE_LIBMPE HAVE_LIBMPE667,15678 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT672,15790 -#define HAVE_LIBNSL HAVE_LIBNSL677,15894 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS682,16012 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES687,16140 -#define HAVE_LIBPSAPI HAVE_LIBPSAPI692,16258 -#define HAVE_LIBGMP HAVE_LIBGMP702,16418 -#define HAVE_LIBJUDY HAVE_LIBJUDY707,16527 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H712,16649 -#define HAVE_LIBLOG HAVE_LIBLOG717,16764 -#define HAVE_LIBM HAVE_LIBM722,16864 -#define HAVE_LIBMPE HAVE_LIBMPE727,16997 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT732,17109 -#define HAVE_LIBNSL HAVE_LIBNSL737,17213 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS742,17331 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES747,17459 -#define HAVE_LIBSHLWAPI HAVE_LIBSHLWAPI752,17583 -#define HAVE_LIBPTHREAD HAVE_LIBPTHREAD757,17705 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR762,17896 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR2767,18017 -#define HAVE_LIBRESOLV HAVE_LIBRESOLV773,18137 -#define HAVE_LIBSHELL32 HAVE_LIBSHELL32778,18258 -#define HAVE_LIBSOCKET HAVE_LIBSOCKET783,18372 -#define HAVE_LIBSTDC__ HAVE_LIBSTDC__788,18490 -#define HAVE_LIBUNICODE HAVE_LIBUNICODE793,18581 -#define HAVE_LIBWS2_32 HAVE_LIBWS2_32798,18700 -#define HAVE_LIBWSOCK32 HAVE_LIBWSOCK32803,18821 -#define HAVE_LIBXNET HAVE_LIBXNET808,18934 -#define HAVE_LIMITS_H HAVE_LIMITS_H813,19044 -#define HAVE_LOCALE_H HAVE_LOCALE_H833,19495 -#define HAVE_LOCALTIME HAVE_LOCALTIME838,19606 -#define HAVE_MALLOC_H HAVE_MALLOC_H863,20181 -#define HAVE_MATH_H HAVE_MATH_H868,20289 -#define HAVE_MEMCPY HAVE_MEMCPY888,20740 -#define HAVE_MEMMOVE HAVE_MEMMOVE893,20845 -#define HAVE_MEMORY_H HAVE_MEMORY_H898,20956 -#define HAVE_MKSTEMP HAVE_MKSTEMP903,21063 -#define HAVE_MKTEMP HAVE_MKTEMP908,21167 -#define HAVE_MKTIME HAVE_MKTIME913,21270 -#define HAVE_OPENDIR HAVE_OPENDIR978,22735 -#define HAVE_PTHREAD_H HAVE_PTHREAD_H993,23054 -#define HAVE_PUTENV HAVE_PUTENV1013,23649 -#define HAVE_RAND HAVE_RAND1028,23966 -#define HAVE_RENAME HAVE_RENAME1073,24999 -#define HAVE_RINT HAVE_RINT1084,25267 -#define HAVE_SETBUF HAVE_SETBUF1109,25801 -#define HAVE_SETLOCALE HAVE_SETLOCALE1124,26143 -#define HAVE_SHLOBJ_H HAVE_SHLOBJ_H1134,26362 -#define HAVE_SIGFPE HAVE_SIGFPE1149,26650 -#define HAVE_SIGNAL HAVE_SIGNAL1174,27187 -#define HAVE_SIGNAL_H HAVE_SIGNAL_H1179,27297 -#define HAVE_SIGSEGV HAVE_SIGSEGV1194,27575 -#define HAVE_SLEEP HAVE_SLEEP1204,27764 -#define HAVE_SNPRINTF HAVE_SNPRINTF1209,27870 -#define HAVE_SRAND HAVE_SRAND1244,28639 -#define HAVE_STAT HAVE_STAT1259,28957 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H1269,29182 -#define STDC_HEADERS STDC_HEADERS1274,29280 -#define HAVE_FLOAT_H HAVE_FLOAT_H1277,29327 -#define HAVE_STRING_H HAVE_STRING_H1278,29350 -#define HAVE_STDARG_H HAVE_STDARG_H1279,29374 -#define HAVE_STDLIB_H HAVE_STDLIB_H1280,29398 -#define HAVE_STDINT_H HAVE_STDINT_H1285,29510 -#define HAVE_STRCASECMP HAVE_STRCASECMP1295,29738 -#define HAVE_STRCHR HAVE_STRCHR1305,29963 -#define HAVE_STRERROR HAVE_STRERROR1310,30070 -#define HAVE_STRICMP HAVE_STRICMP1315,30177 -#define HAVE_STRINGS_H HAVE_STRINGS_H1320,30290 -#define HAVE_STRLWR HAVE_STRLWR1335,30620 -#define HAVE_STRNCASECMP HAVE_STRNCASECMP1340,30733 -#define HAVE_STRNCAT HAVE_STRNCAT1345,30843 -#define HAVE_STRNCPY HAVE_STRNCPY1350,30949 -#define HAVE_STRNLEN HAVE_STRNLEN1355,31055 -#define HAVE_STRTOD HAVE_STRTOD1365,31277 -#define HAVE_SYSTEM HAVE_SYSTEM1385,31727 -#define HAVE_SYS_FILE_H HAVE_SYS_FILE_H1400,32080 -#define HAVE_SYS_PARAM_H HAVE_SYS_PARAM_H1415,32442 -#define HAVE_SYS_STAT_H HAVE_SYS_STAT_H1442,33068 -#define HAVE_SYS_TIME_H HAVE_SYS_TIME_H1462,33558 -#define HAVE_SYS_TYPES_H HAVE_SYS_TYPES_H1467,33678 -#define HAVE_TIME HAVE_TIME1487,34151 -#define HAVE_TIME_H HAVE_TIME_H1502,34464 -#define TIME_WITH_SYS_TIME_H TIME_WITH_SYS_TIME_H1506,34557 -#define HAVE_TMPNAM HAVE_TMPNAM1512,34676 -#define HAVE_UNISTD_H HAVE_UNISTD_H1527,35016 -#define HAVE_USLEEP HAVE_USLEEP1532,35121 -#define HAVE_UTIME HAVE_UTIME1537,35222 -#define HAVE_UTIME_H HAVE_UTIME_H1542,35329 -#define HAVE_VAR_TIMEZONE HAVE_VAR_TIMEZONE1547,35431 -#define HAVE_VSNPRINTF HAVE_VSNPRINTF1557,35649 -#define HAVE_WCHAR_H HAVE_WCHAR_H1567,35869 -#define HAVE_WCSDUP HAVE_WCSDUP1572,35973 -#define HAVE_WCSNLEN HAVE_WCSNLEN1577,36078 -#define HAVE_WCTYPE_H HAVE_WCTYPE_H1582,36189 -#define HAVE_WINDEF_H HAVE_WINDEF_H1587,36301 -#define HAVE_WINDOWS_H HAVE_WINDOWS_H1592,36415 -#define HAVE_WINSOCK2_H HAVE_WINSOCK2_H1597,36532 -#define HAVE__CHSIZE_S HAVE__CHSIZE_S1627,37187 -#define HOST_ALIAS HOST_ALIAS1642,37537 -#define MALLOC_T MALLOC_T1652,37689 -#define MAX_THREADS MAX_THREADS1657,37788 -#define MAX_WORKERS MAX_WORKERS1662,37877 -#define MSHIFTOFFS MSHIFTOFFS1672,38089 -#define MYDDAS_VERSION MYDDAS_VERSION1677,38162 -#define MinHeapSpace MinHeapSpace1682,38262 -#define MinStackSpace MinStackSpace1687,38368 -#define MinTrailSpace MinTrailSpace1692,38474 -#define DefHeapSpace DefHeapSpace1697,38575 -#define DefStackSpace DefStackSpace1702,38662 -#define DefTrailSpace DefTrailSpace1707,38752 -#define YAP_FULL_VERSION YAP_FULL_VERSION1742,39523 -#define YAP_GIT_HEAD YAP_GIT_HEAD1747,39684 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION1752,39797 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE1772,40191 -#define SIZEOF_FLOAT SIZEOF_FLOAT1777,40294 -#define SIZEOF_INT SIZEOF_INT1782,40392 -#define SIZEOF_INT_P SIZEOF_INT_P1787,40492 -#define SIZEOF_LONG SIZEOF_LONG1792,40592 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT1797,40699 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG1802,40812 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT1807,40934 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT1812,41052 -#define SIZEOF_SQLWCHAR SIZEOF_SQLWCHAR1817,41164 -#define SIZEOF_VOIDP SIZEOF_VOIDP1822,41269 -#define SIZEOF_VOID_P SIZEOF_VOID_P1827,41373 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T1832,41480 -#define SO_EXT SO_EXT1837,41552 -#define SO_PATH SO_PATH1843,41644 -#define SO_PATH SO_PATH1845,41693 -#define SO_PATH SO_PATH1847,41731 -#define SO_PATH SO_PATH1849,41771 -#define USE_GMP USE_GMP1865,42105 -#define USE_JUDY USE_JUDY1870,42204 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1910,43152 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1914,43219 -#define YAP_ARCH YAP_ARCH1923,43331 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR1927,43385 -#define YAP_SHAREDIR YAP_SHAREDIR1931,43467 -#define YAP_STARTUP YAP_STARTUP1936,43600 -#define YAP_TIMESTAMP YAP_TIMESTAMP1941,43690 -#define YAP_TVERSION YAP_TVERSION1946,43789 -#define YAP_VAR_TIMEZONE YAP_VAR_TIMEZONE1951,43888 -#define YAP_COMPILED_AT YAP_COMPILED_AT1956,43968 -#define YAP_YAPLIB YAP_YAPLIB1961,44084 -#define YAP_BINDIR YAP_BINDIR1966,44169 -#define YAP_ROOTDIR YAP_ROOTDIR1971,44300 -#define YAP_LIBDIR YAP_LIBDIR1976,44427 -#define YAP_YAPJITLIB YAP_YAPJITLIB1981,44568 -#define MAXPATHLEN MAXPATHLEN2020,45347 -#define MAXPATHLEN MAXPATHLEN2022,45381 -#define USE_DL_MALLOC USE_DL_MALLOC2028,45453 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC2034,45598 -#define strlcpy(strlcpy2039,45663 -#define malloc(malloc2044,45748 -#define realloc(realloc2045,45781 -#define free(free2046,45823 -#define __WINDOWS__ __WINDOWS__2051,45895 -#define X_API X_API2067,46165 -#define X_APIX_API2069,46207 -#define O_APIO_API2071,46228 - -mxe/cudd_config.h,106 -#define HAVE_CUDD_CUDD_H HAVE_CUDD_CUDD_H10,225 -#define HAVE_CUDD_CUDDINT_H HAVE_CUDD_CUDDINT_H20,470 - -mxe/CXX/Makefile,0 - -mxe/GitSHA1.c,83 -#define GIT_SHA1 GIT_SHA11,0 -const char g_GIT_SHA1[] = GIT_SHA1;g_GIT_SHA12,60 - -mxe/library/clp/Makefile,0 - -mxe/library/dialect/Makefile,0 - -mxe/library/dialect/swi/fli/Makefile,0 - -mxe/library/lammpi/CMakeFiles/cmake_mpi_test.c,44 -int main(int argc, char **argv) {main2,17 - -mxe/library/lammpi/CMakeFiles/cmake_mpi_test.cpp,44 -int main(int argc, char **argv) {main2,17 - -mxe/library/lammpi/Makefile,0 - -mxe/library/Makefile,0 - -mxe/library/matlab/Makefile,0 - -mxe/library/matrix/Makefile,0 - -mxe/library/random/Makefile,0 - -mxe/library/regex/Makefile,0 - -mxe/library/rltree/Makefile,0 - -mxe/library/system/Makefile,0 - -mxe/library/system/sys_config.h,0 - -mxe/library/tries/Makefile,0 - -mxe/library/ytest/Makefile,0 - -mxe/Makefile,0 - -mxe/OPTYap/Makefile,0 - -mxe/os/Makefile,0 - -mxe/os/YapIOConfig.h,176 -#define USE_READLINE USE_READLINE17,461 -#define HAVE_RL_DONE HAVE_RL_DONE76,2135 -#define HAVE_RL_FILENAME_COMPLETION_FUNCTION HAVE_RL_FILENAME_COMPLETION_FUNCTION81,2288 - -mxe/packages/bdd/Makefile,0 - -mxe/packages/CLPBN/horus/Makefile,0 - -mxe/packages/CLPBN/Makefile,0 - -mxe/packages/clpqr/Makefile,0 - -mxe/packages/cplint/Makefile,0 - -mxe/packages/gecode/Makefile,0 - -mxe/packages/jpl/Makefile,0 - -mxe/packages/jpl/src/java/CMakeFiles/jpl.dir/java_class_filelist,0 - -mxe/packages/jpl/src/java/CMakeFiles/jpl.dir/java_compiled_jpl,0 - -mxe/packages/jpl/src/java/CMakeFiles/jpl.dir/java_sources,0 - -mxe/packages/jpl/src/java/Makefile,0 - -mxe/packages/myddas/Makefile,0 - -mxe/packages/myddas/mysql/Makefile,0 - -mxe/packages/myddas/odbc/Makefile,0 - -mxe/packages/myddas/pl/Makefile,0 - -mxe/packages/myddas/pl/myddas.yap,5681 -db_open(Interface,HostDb,User,Password):-db_open129,2900 -db_open(Interface,HostDb,User,Password):-db_open129,2900 -db_open(Interface,HostDb,User,Password):-db_open129,2900 -db_open(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open131,2991 -db_open(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open131,2991 -db_open(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open131,2991 -db_open(mysql,Connection,Host/Db/Port,User,Password) :-db_open135,3221 -db_open(mysql,Connection,Host/Db/Port,User,Password) :-db_open135,3221 -db_open(mysql,Connection,Host/Db/Port,User,Password) :-db_open135,3221 -db_open(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_open138,3389 -db_open(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_open138,3389 -db_open(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_open138,3389 -db_open(mysql,Connection,Host/Db,User,Password) :-db_open140,3529 -db_open(mysql,Connection,Host/Db,User,Password) :-db_open140,3529 -db_open(mysql,Connection,Host/Db,User,Password) :-db_open140,3529 -db_open(odbc,Connection,ODBCEntry,User,Password) :-db_open142,3693 -db_open(odbc,Connection,ODBCEntry,User,Password) :-db_open142,3693 -db_open(odbc,Connection,ODBCEntry,User,Password) :-db_open142,3693 -db_close:-db_close151,4029 -db_close(Protocol):-db_close153,4059 -db_close(Protocol):-db_close153,4059 -db_close(Protocol):-db_close153,4059 -db_close(Protocol) :-db_close157,4166 -db_close(Protocol) :-db_close157,4166 -db_close(Protocol) :-db_close157,4166 -db_verbose(X):-db_verbose176,4654 -db_verbose(X):-db_verbose176,4654 -db_verbose(X):-db_verbose176,4654 -db_verbose(N):-!,db_verbose179,4707 -db_verbose(N):-!,db_verbose179,4707 -db_verbose(N):-!,db_verbose179,4707 -db_module(X):-db_module189,4980 -db_module(X):-db_module189,4980 -db_module(X):-db_module189,4980 -db_module(ModuleName):-db_module192,5031 -db_module(ModuleName):-db_module192,5031 -db_module(ModuleName):-db_module192,5031 -db_is_database_predicate(Module,PredName,Arity):-db_is_database_predicate201,5281 -db_is_database_predicate(Module,PredName,Arity):-db_is_database_predicate201,5281 -db_is_database_predicate(Module,PredName,Arity):-db_is_database_predicate201,5281 -db_sql_select(Protocol,SQL,LA):-db_sql_select210,5602 -db_sql_select(Protocol,SQL,LA):-db_sql_select210,5602 -db_sql_select(Protocol,SQL,LA):-db_sql_select210,5602 -db_sql(SQL,LA):-db_sql212,5661 -db_sql(SQL,LA):-db_sql212,5661 -db_sql(SQL,LA):-db_sql212,5661 -db_sql(Connection,SQL,LA):-db_sql214,5702 -db_sql(Connection,SQL,LA):-db_sql214,5702 -db_sql(Connection,SQL,LA):-db_sql214,5702 -db_prolog_select(LA,DbGoal):-db_prolog_select244,6587 -db_prolog_select(LA,DbGoal):-db_prolog_select244,6587 -db_prolog_select(LA,DbGoal):-db_prolog_select244,6587 -db_prolog_select(Connection,LA,DbGoal):-db_prolog_select246,6654 -db_prolog_select(Connection,LA,DbGoal):-db_prolog_select246,6654 -db_prolog_select(Connection,LA,DbGoal):-db_prolog_select246,6654 -db_prolog_select_multi(Connection,DbGoalsList,ListOfResults) :-db_prolog_select_multi280,7736 -db_prolog_select_multi(Connection,DbGoalsList,ListOfResults) :-db_prolog_select_multi280,7736 -db_prolog_select_multi(Connection,DbGoalsList,ListOfResults) :-db_prolog_select_multi280,7736 -db_command(Connection,SQL):-db_command310,8622 -db_command(Connection,SQL):-db_command310,8622 -db_command(Connection,SQL):-db_command310,8622 -db_assert(PredName):-db_assert326,9028 -db_assert(PredName):-db_assert326,9028 -db_assert(PredName):-db_assert326,9028 -db_assert(Connection,PredName):-db_assert328,9079 -db_assert(Connection,PredName):-db_assert328,9079 -db_assert(Connection,PredName):-db_assert328,9079 -db_create_table(Connection,TableName,FieldsInf):-db_create_table354,10015 -db_create_table(Connection,TableName,FieldsInf):-db_create_table354,10015 -db_create_table(Connection,TableName,FieldsInf):-db_create_table354,10015 -db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf):-db_export_view378,10844 -db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf):-db_export_view378,10844 -db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf):-db_export_view378,10844 -db_update(Connection,WherePred-SetPred):-db_update405,11928 -db_update(Connection,WherePred-SetPred):-db_update405,11928 -db_update(Connection,WherePred-SetPred):-db_update405,11928 -db_get_attributes_types(RelationName,TypesList) :-db_get_attributes_types444,13161 -db_get_attributes_types(RelationName,TypesList) :-db_get_attributes_types444,13161 -db_get_attributes_types(RelationName,TypesList) :-db_get_attributes_types444,13161 -db_get_attributes_types(Connection,RelationName,TypesList) :-db_get_attributes_types446,13269 -db_get_attributes_types(Connection,RelationName,TypesList) :-db_get_attributes_types446,13269 -db_get_attributes_types(Connection,RelationName,TypesList) :-db_get_attributes_types446,13269 -db_number_of_fields(RelationName,Arity) :-db_number_of_fields476,14194 -db_number_of_fields(RelationName,Arity) :-db_number_of_fields476,14194 -db_number_of_fields(RelationName,Arity) :-db_number_of_fields476,14194 -db_number_of_fields(Connection,RelationName,Arity) :-db_number_of_fields478,14286 -db_number_of_fields(Connection,RelationName,Arity) :-db_number_of_fields478,14286 -db_number_of_fields(Connection,RelationName,Arity) :-db_number_of_fields478,14286 -db_multi_queries_number(Connection,Number) :-db_multi_queries_number496,14931 -db_multi_queries_number(Connection,Number) :-db_multi_queries_number496,14931 -db_multi_queries_number(Connection,Number) :-db_multi_queries_number496,14931 - -mxe/packages/myddas/pl/myddas_assert_predicates.yap,3363 -db_import(RelationName,PredName):-db_import66,1804 -db_import(RelationName,PredName):-db_import66,1804 -db_import(RelationName,PredName):-db_import66,1804 -db_import(Connection,RelationName,PredName0) :-db_import68,1881 -db_import(Connection,RelationName,PredName0) :-db_import68,1881 -db_import(Connection,RelationName,PredName0) :-db_import68,1881 -db_view(PredName,DbGoal) :-db_view96,2948 -db_view(PredName,DbGoal) :-db_view96,2948 -db_view(PredName,DbGoal) :-db_view96,2948 -db_view(Connection,PredName,DbGoal) :-db_view98,3010 -db_view(Connection,PredName,DbGoal) :-db_view98,3010 -db_view(Connection,PredName,DbGoal) :-db_view98,3010 -db_insert(RelationName,PredName) :-db_insert120,3804 -db_insert(RelationName,PredName) :-db_insert120,3804 -db_insert(RelationName,PredName) :-db_insert120,3804 -db_insert(Connection,RelationName,PredName) :-db_insert122,3882 -db_insert(Connection,RelationName,PredName) :-db_insert122,3882 -db_insert(Connection,RelationName,PredName) :-db_insert122,3882 -db_abolish(Module:PredName,Arity):-!,db_abolish148,4820 -db_abolish(Module:PredName,Arity):-!,db_abolish148,4820 -db_abolish(Module:PredName,Arity):-!,db_abolish148,4820 -db_abolish(PredName,Arity):-db_abolish152,4991 -db_abolish(PredName,Arity):-db_abolish152,4991 -db_abolish(PredName,Arity):-db_abolish152,4991 -db_abolish(Module:PredName,Arity):-!,db_abolish162,5290 -db_abolish(Module:PredName,Arity):-!,db_abolish162,5290 -db_abolish(Module:PredName,Arity):-!,db_abolish162,5290 -db_abolish(PredName,Arity):-db_abolish166,5461 -db_abolish(PredName,Arity):-db_abolish166,5461 -db_abolish(PredName,Arity):-db_abolish166,5461 -db_listing:-db_listing176,5756 -db_listing(Module:Name/Arity):-!,db_listing187,6001 -db_listing(Module:Name/Arity):-!,db_listing187,6001 -db_listing(Module:Name/Arity):-!,db_listing187,6001 -db_listing(Name/Arity):-!,db_listing191,6128 -db_listing(Name/Arity):-!,db_listing191,6128 -db_listing(Name/Arity):-!,db_listing191,6128 -db_listing(Name):-db_listing195,6248 -db_listing(Name):-db_listing195,6248 -db_listing(Name):-db_listing195,6248 -table_arity( Con, ConType, RelationName, Arity ) :-table_arity203,6518 -table_arity( Con, ConType, RelationName, Arity ) :-table_arity203,6518 -table_arity( Con, ConType, RelationName, Arity ) :-table_arity203,6518 -table_attributes( mysql, Con, RelationName, TypesList ) :-table_attributes219,6995 -table_attributes( mysql, Con, RelationName, TypesList ) :-table_attributes219,6995 -table_attributes( mysql, Con, RelationName, TypesList ) :-table_attributes219,6995 -table_attributes( postgres, Con, RelationName, TypesList ) :-table_attributes221,7113 -table_attributes( postgres, Con, RelationName, TypesList ) :-table_attributes221,7113 -table_attributes( postgres, Con, RelationName, TypesList ) :-table_attributes221,7113 -table_attributes( odbc, Con, RelationName, TypesList ) :-table_attributes223,7244 -table_attributes( odbc, Con, RelationName, TypesList ) :-table_attributes223,7244 -table_attributes( odbc, Con, RelationName, TypesList ) :-table_attributes223,7244 -table_attributes( sqlite3, Con, RelationName, TypesList ) :-table_attributes225,7360 -table_attributes( sqlite3, Con, RelationName, TypesList ) :-table_attributes225,7360 -table_attributes( sqlite3, Con, RelationName, TypesList ) :-table_attributes225,7360 - -mxe/packages/myddas/pl/myddas_errors.yap,8148 -'$error_checks'(db_abolish(ModulePredName,Arity)):-!,$error_checks9,200 -'$error_checks'(db_abolish(ModulePredName,Arity)):-!,$error_checks9,200 -'$error_checks'(db_abolish(ModulePredName,Arity)):-!,$error_checks9,200 -'$error_checks'(db_show_databases(Connection)):- !,$error_checks17,380 -'$error_checks'(db_show_databases(Connection)):- !,$error_checks17,380 -'$error_checks'(db_show_databases(Connection)):- !,$error_checks17,380 -'$error_checks'(db_show_database(Connection,_)):- !,$error_checks19,451 -'$error_checks'(db_show_database(Connection,_)):- !,$error_checks19,451 -'$error_checks'(db_show_database(Connection,_)):- !,$error_checks19,451 -'$error_checks'(db_my_sql_mode(Connection,_)):- !,$error_checks21,523 -'$error_checks'(db_my_sql_mode(Connection,_)):- !,$error_checks21,523 -'$error_checks'(db_my_sql_mode(Connection,_)):- !,$error_checks21,523 -'$error_checks'(db_change_database(Connection,Database)):- !,$error_checks23,593 -'$error_checks'(db_change_database(Connection,Database)):- !,$error_checks23,593 -'$error_checks'(db_change_database(Connection,Database)):- !,$error_checks23,593 -'$error_checks'(db_prolog_select_multi(Connection,DbGoalsList,_)):- !,$error_checks26,691 -'$error_checks'(db_prolog_select_multi(Connection,DbGoalsList,_)):- !,$error_checks26,691 -'$error_checks'(db_prolog_select_multi(Connection,DbGoalsList,_)):- !,$error_checks26,691 -'$error_checks'(db_multi_queries_number(Connection,Number)):-!,$error_checks29,804 -'$error_checks'(db_multi_queries_number(Connection,Number)):-!,$error_checks29,804 -'$error_checks'(db_multi_queries_number(Connection,Number)):-!,$error_checks29,804 -'$error_checks'(db_command(Connection,SQL)):-!,$error_checks37,966 -'$error_checks'(db_command(Connection,SQL)):-!,$error_checks37,966 -'$error_checks'(db_command(Connection,SQL)):-!,$error_checks37,966 -'$error_checks'(db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf)):-!,$error_checks40,1061 -'$error_checks'(db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf)):-!,$error_checks40,1061 -'$error_checks'(db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf)):-!,$error_checks40,1061 -'$error_checks'(db_create_table(Connection,TableName,FieldsInf)):-!,$error_checks45,1307 -'$error_checks'(db_create_table(Connection,TableName,FieldsInf)):-!,$error_checks45,1307 -'$error_checks'(db_create_table(Connection,TableName,FieldsInf)):-!,$error_checks45,1307 -'$error_checks'(db_insert3(Connection,RelationName,PredName)):-!,$error_checks49,1440 -'$error_checks'(db_insert3(Connection,RelationName,PredName)):-!,$error_checks49,1440 -'$error_checks'(db_insert3(Connection,RelationName,PredName)):-!,$error_checks49,1440 -'$error_checks'(db_insert2(Connection,_,[query(Att,[rel(Relation,_)],_)])) :- !,$error_checks53,1570 -'$error_checks'(db_insert2(Connection,_,[query(Att,[rel(Relation,_)],_)])) :- !,$error_checks53,1570 -'$error_checks'(db_insert2(Connection,_,[query(Att,[rel(Relation,_)],_)])) :- !,$error_checks53,1570 -'$error_checks'(db_open(mysql,Connection,Host/Db/Port/_,User,Password)) :- !,$error_checks77,2448 -'$error_checks'(db_open(mysql,Connection,Host/Db/Port/_,User,Password)) :- !,$error_checks77,2448 -'$error_checks'(db_open(mysql,Connection,Host/Db/Port/_,User,Password)) :- !,$error_checks77,2448 -'$error_checks'(db_open(odbc,Connection,ODBCEntry,User,Password)) :- !,$error_checks85,2705 -'$error_checks'(db_open(odbc,Connection,ODBCEntry,User,Password)) :- !,$error_checks85,2705 -'$error_checks'(db_open(odbc,Connection,ODBCEntry,User,Password)) :- !,$error_checks85,2705 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User,_Password)) :- !,$error_checks91,2937 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User,_Password)) :- !,$error_checks91,2937 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User,_Password)) :- !,$error_checks91,2937 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User)) :- !,$error_checks94,3107 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User)) :- !,$error_checks94,3107 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User)) :- !,$error_checks94,3107 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_)) :- !,$error_checks97,3267 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_)) :- !,$error_checks97,3267 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_)) :- !,$error_checks97,3267 -'$error_checks'(db_open(postgres,Connection)) :- !,$error_checks100,3421 -'$error_checks'(db_open(postgres,Connection)) :- !,$error_checks100,3421 -'$error_checks'(db_open(postgres,Connection)) :- !,$error_checks100,3421 -'$error_checks'(db_open(sqlite3,Connection,File,_User,_Password)) :- !,$error_checks103,3557 -'$error_checks'(db_open(sqlite3,Connection,File,_User,_Password)) :- !,$error_checks103,3557 -'$error_checks'(db_open(sqlite3,Connection,File,_User,_Password)) :- !,$error_checks103,3557 -'$error_checks'(db_view(Connection,Pred,DbGoal)) :- !,$error_checks107,3750 -'$error_checks'(db_view(Connection,Pred,DbGoal)) :- !,$error_checks107,3750 -'$error_checks'(db_view(Connection,Pred,DbGoal)) :- !,$error_checks107,3750 -'$error_checks'(db_import(Connection,RelationName,PredName0)) :- !,$error_checks115,3969 -'$error_checks'(db_import(Connection,RelationName,PredName0)) :- !,$error_checks115,3969 -'$error_checks'(db_import(Connection,RelationName,PredName0)) :- !,$error_checks115,3969 -'$error_checks'(db_get_attributes_types(Connection,RelationName,_)) :- !,$error_checks121,4167 -'$error_checks'(db_get_attributes_types(Connection,RelationName,_)) :- !,$error_checks121,4167 -'$error_checks'(db_get_attributes_types(Connection,RelationName,_)) :- !,$error_checks121,4167 -'$error_checks'(db_call_procedure(_,Procedure,Args,LA)) :- !,$error_checks124,4290 -'$error_checks'(db_call_procedure(_,Procedure,Args,LA)) :- !,$error_checks124,4290 -'$error_checks'(db_call_procedure(_,Procedure,Args,LA)) :- !,$error_checks124,4290 -'$error_checks'(db_sql(Connection,SQL,LA)):- !,$error_checks128,4404 -'$error_checks'(db_sql(Connection,SQL,LA)):- !,$error_checks128,4404 -'$error_checks'(db_sql(Connection,SQL,LA)):- !,$error_checks128,4404 -'$error_checks'(db_number_of_fields(Connection,RelationName,_)) :- !,$error_checks132,4516 -'$error_checks'(db_number_of_fields(Connection,RelationName,_)) :- !,$error_checks132,4516 -'$error_checks'(db_number_of_fields(Connection,RelationName,_)) :- !,$error_checks132,4516 -'$error_checks'(db_close(Connection)) :- !,$error_checks135,4635 -'$error_checks'(db_close(Connection)) :- !,$error_checks135,4635 -'$error_checks'(db_close(Connection)) :- !,$error_checks135,4635 -'$error_checks'(db_datalog_describe(Relation,_)) :- !,$error_checks138,4735 -'$error_checks'(db_datalog_describe(Relation,_)) :- !,$error_checks138,4735 -'$error_checks'(db_datalog_describe(Relation,_)) :- !,$error_checks138,4735 -'$error_checks'(db_describe(Connection,Relation,_)) :- !,$error_checks140,4809 -'$error_checks'(db_describe(Connection,Relation,_)) :- !,$error_checks140,4809 -'$error_checks'(db_describe(Connection,Relation,_)) :- !,$error_checks140,4809 -'$error_checks'(db_my_show_tables(_)):- !.$error_checks143,4905 -'$error_checks'(db_my_show_tables(_)):- !.$error_checks143,4905 -'$error_checks'(db_my_show_tables(_)):- !.$error_checks143,4905 -'$error_checks'(db_is_database_predicate(PredName,Arity,Module)):-!,$error_checks144,4948 -'$error_checks'(db_is_database_predicate(PredName,Arity,Module)):-!,$error_checks144,4948 -'$error_checks'(db_is_database_predicate(PredName,Arity,Module)):-!,$error_checks144,4948 -'$error_checks'(get_value(Connection,Con)) :- !,$error_checks149,5131 -'$error_checks'(get_value(Connection,Con)) :- !,$error_checks149,5131 -'$error_checks'(get_value(Connection,Con)) :- !,$error_checks149,5131 -'$error_checks'(get_value(Conn,Connection)) :- !,$error_checks157,5398 -'$error_checks'(get_value(Conn,Connection)) :- !,$error_checks157,5398 -'$error_checks'(get_value(Conn,Connection)) :- !,$error_checks157,5398 - -mxe/packages/myddas/pl/myddas_mysql.yap,4004 -db_my_result_set(X):-db_my_result_set43,1047 -db_my_result_set(X):-db_my_result_set43,1047 -db_my_result_set(X):-db_my_result_set43,1047 -db_my_result_set(use_result):-db_my_result_set46,1112 -db_my_result_set(use_result):-db_my_result_set46,1112 -db_my_result_set(use_result):-db_my_result_set46,1112 -db_my_result_set(store_result):-db_my_result_set48,1184 -db_my_result_set(store_result):-db_my_result_set48,1184 -db_my_result_set(store_result):-db_my_result_set48,1184 -db_datalog_describe(Relation):-db_datalog_describe57,1435 -db_datalog_describe(Relation):-db_datalog_describe57,1435 -db_datalog_describe(Relation):-db_datalog_describe57,1435 -db_datalog_describe(Connection,Relation) :-db_datalog_describe59,1506 -db_datalog_describe(Connection,Relation) :-db_datalog_describe59,1506 -db_datalog_describe(Connection,Relation) :-db_datalog_describe59,1506 -db_describe(Relation,TableInfo) :-db_describe72,1984 -db_describe(Relation,TableInfo) :-db_describe72,1984 -db_describe(Relation,TableInfo) :-db_describe72,1984 -db_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-db_describe74,2060 -db_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-db_describe74,2060 -db_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-db_describe74,2060 -db_datalog_show_tables:-db_datalog_show_tables87,2527 -db_datalog_show_tables(Connection) :-db_datalog_show_tables89,2585 -db_datalog_show_tables(Connection) :-db_datalog_show_tables89,2585 -db_datalog_show_tables(Connection) :-db_datalog_show_tables89,2585 -db_show_tables(Table) :-db_show_tables102,3055 -db_show_tables(Table) :-db_show_tables102,3055 -db_show_tables(Table) :-db_show_tables102,3055 -db_show_tables(Connection,table(Table)) :-db_show_tables104,3111 -db_show_tables(Connection,table(Table)) :-db_show_tables104,3111 -db_show_tables(Connection,table(Table)) :-db_show_tables104,3111 -db_show_database(Connection,Database) :-db_show_database116,3510 -db_show_database(Connection,Database) :-db_show_database116,3510 -db_show_database(Connection,Database) :-db_show_database116,3510 -db_show_databases(Connection,database(Databases)) :-db_show_databases125,3804 -db_show_databases(Connection,database(Databases)) :-db_show_databases125,3804 -db_show_databases(Connection,database(Databases)) :-db_show_databases125,3804 -db_show_databases(Connection) :-db_show_databases137,4252 -db_show_databases(Connection) :-db_show_databases137,4252 -db_show_databases(Connection) :-db_show_databases137,4252 -db_change_database(Connection,Database) :-db_change_database149,4648 -db_change_database(Connection,Database) :-db_change_database149,4648 -db_change_database(Connection,Database) :-db_change_database149,4648 -db_call_procedure(Procedure,Args,Result) :-db_call_procedure162,5154 -db_call_procedure(Procedure,Args,Result) :-db_call_procedure162,5154 -db_call_procedure(Procedure,Args,Result) :-db_call_procedure162,5154 -db_call_procedure(Connection,Procedure,Args,LA) :-db_call_procedure164,5248 -db_call_procedure(Connection,Procedure,Args,LA) :-db_call_procedure164,5248 -db_call_procedure(Connection,Procedure,Args,LA) :-db_call_procedure164,5248 -db_sql_mode(SQLMode):-db_sql_mode174,5695 -db_sql_mode(SQLMode):-db_sql_mode174,5695 -db_sql_mode(SQLMode):-db_sql_mode174,5695 -db_sql_mode(Connection,SQLMode):-db_sql_mode176,5744 -db_sql_mode(Connection,SQLMode):-db_sql_mode176,5744 -db_sql_mode(Connection,SQLMode):-db_sql_mode176,5744 -db_my_sql_mode(SQLMode):-db_my_sql_mode178,5815 -db_my_sql_mode(SQLMode):-db_my_sql_mode178,5815 -db_my_sql_mode(SQLMode):-db_my_sql_mode178,5815 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode180,5874 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode180,5874 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode180,5874 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode186,6131 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode186,6131 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode186,6131 - -mxe/packages/myddas/pl/myddas_odbc.yap,3333 -odbc_result_set(X):-odbc_result_set49,1303 -odbc_result_set(X):-odbc_result_set49,1303 -odbc_result_set(X):-odbc_result_set49,1303 -odbc_result_set(use_result):-odbc_result_set52,1366 -odbc_result_set(use_result):-odbc_result_set52,1366 -odbc_result_set(use_result):-odbc_result_set52,1366 -odbc_result_set(store_result):-odbc_result_set54,1436 -odbc_result_set(store_result):-odbc_result_set54,1436 -odbc_result_set(store_result):-odbc_result_set54,1436 -odbc_datalog_describe(Relation):-odbc_datalog_describe63,1681 -odbc_datalog_describe(Relation):-odbc_datalog_describe63,1681 -odbc_datalog_describe(Relation):-odbc_datalog_describe63,1681 -odbc_datalog_describe(Connection,Relation) :-odbc_datalog_describe65,1756 -odbc_datalog_describe(Connection,Relation) :-odbc_datalog_describe65,1756 -odbc_datalog_describe(Connection,Relation) :-odbc_datalog_describe65,1756 -odbc_describe(Relation,TableInfo) :-odbc_describe78,2239 -odbc_describe(Relation,TableInfo) :-odbc_describe78,2239 -odbc_describe(Relation,TableInfo) :-odbc_describe78,2239 -odbc_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-odbc_describe80,2319 -odbc_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-odbc_describe80,2319 -odbc_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-odbc_describe80,2319 -odbc_datalog_show_tables:-odbc_datalog_show_tables94,2791 -odbc_datalog_show_tables(Connection) :-odbc_datalog_show_tables96,2853 -odbc_datalog_show_tables(Connection) :-odbc_datalog_show_tables96,2853 -odbc_datalog_show_tables(Connection) :-odbc_datalog_show_tables96,2853 -odbc_show_tables(Table) :-odbc_show_tables109,3317 -odbc_show_tables(Table) :-odbc_show_tables109,3317 -odbc_show_tables(Table) :-odbc_show_tables109,3317 -odbc_show_tables(Connection,table(Table)) :-odbc_show_tables111,3377 -odbc_show_tables(Connection,table(Table)) :-odbc_show_tables111,3377 -odbc_show_tables(Connection,table(Table)) :-odbc_show_tables111,3377 -odbc_show_database(Connection,Database) :-odbc_show_database123,3768 -odbc_show_database(Connection,Database) :-odbc_show_database123,3768 -odbc_show_database(Connection,Database) :-odbc_show_database123,3768 -odbc_show_databases(Connection,database(Databases)) :-odbc_show_databases132,4067 -odbc_show_databases(Connection,database(Databases)) :-odbc_show_databases132,4067 -odbc_show_databases(Connection,database(Databases)) :-odbc_show_databases132,4067 -odbc_show_databases(Connection) :-odbc_show_databases144,4518 -odbc_show_databases(Connection) :-odbc_show_databases144,4518 -odbc_show_databases(Connection) :-odbc_show_databases144,4518 -odbc_change_database(Connection,Database) :-odbc_change_database156,4914 -odbc_change_database(Connection,Database) :-odbc_change_database156,4914 -odbc_change_database(Connection,Database) :-odbc_change_database156,4914 -odbc_call_procedure(Procedure,Args,Result) :-odbc_call_procedure169,5429 -odbc_call_procedure(Procedure,Args,Result) :-odbc_call_procedure169,5429 -odbc_call_procedure(Procedure,Args,Result) :-odbc_call_procedure169,5429 -odbc_call_procedure(Connection,Procedure,Args,LA) :-odbc_call_procedure171,5527 -odbc_call_procedure(Connection,Procedure,Args,LA) :-odbc_call_procedure171,5527 -odbc_call_procedure(Connection,Procedure,Args,LA) :-odbc_call_procedure171,5527 - -mxe/packages/myddas/pl/myddas_postgres.yap,3725 -postgres_result_set(X):-postgres_result_set49,1415 -postgres_result_set(X):-postgres_result_set49,1415 -postgres_result_set(X):-postgres_result_set49,1415 -postgres_result_set(use_result):-postgres_result_set52,1486 -postgres_result_set(use_result):-postgres_result_set52,1486 -postgres_result_set(use_result):-postgres_result_set52,1486 -postgres_result_set(store_result):-postgres_result_set54,1564 -postgres_result_set(store_result):-postgres_result_set54,1564 -postgres_result_set(store_result):-postgres_result_set54,1564 -postgres_datalog_describe(Relation):-postgres_datalog_describe63,1825 -postgres_datalog_describe(Relation):-postgres_datalog_describe63,1825 -postgres_datalog_describe(Relation):-postgres_datalog_describe63,1825 -postgres_datalog_describe(Connection,Relation) :-postgres_datalog_describe65,1908 -postgres_datalog_describe(Connection,Relation) :-postgres_datalog_describe65,1908 -postgres_datalog_describe(Connection,Relation) :-postgres_datalog_describe65,1908 -postgres_describe(Relation,TableInfo) :-postgres_describe78,2419 -postgres_describe(Relation,TableInfo) :-postgres_describe78,2419 -postgres_describe(Relation,TableInfo) :-postgres_describe78,2419 -postgres_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-postgres_describe80,2507 -postgres_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-postgres_describe80,2507 -postgres_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-postgres_describe80,2507 -postgres_datalog_show_tables:-postgres_datalog_show_tables94,3003 -postgres_datalog_show_tables(Connection) :-postgres_datalog_show_tables96,3073 -postgres_datalog_show_tables(Connection) :-postgres_datalog_show_tables96,3073 -postgres_datalog_show_tables(Connection) :-postgres_datalog_show_tables96,3073 -postgres_show_tables(Table) :-postgres_show_tables109,3565 -postgres_show_tables(Table) :-postgres_show_tables109,3565 -postgres_show_tables(Table) :-postgres_show_tables109,3565 -postgres_show_tables(Connection,table(Table)) :-postgres_show_tables111,3633 -postgres_show_tables(Connection,table(Table)) :-postgres_show_tables111,3633 -postgres_show_tables(Connection,table(Table)) :-postgres_show_tables111,3633 -postgres_show_database(Connection,Database) :-postgres_show_database123,4048 -postgres_show_database(Connection,Database) :-postgres_show_database123,4048 -postgres_show_database(Connection,Database) :-postgres_show_database123,4048 -postgres_show_databases(Connection,database(Databases)) :-postgres_show_databases132,4363 -postgres_show_databases(Connection,database(Databases)) :-postgres_show_databases132,4363 -postgres_show_databases(Connection,database(Databases)) :-postgres_show_databases132,4363 -postgres_show_databases(Connection) :-postgres_show_databases144,4838 -postgres_show_databases(Connection) :-postgres_show_databases144,4838 -postgres_show_databases(Connection) :-postgres_show_databases144,4838 -postgres_change_database(Connection,Database) :-postgres_change_database156,5258 -postgres_change_database(Connection,Database) :-postgres_change_database156,5258 -postgres_change_database(Connection,Database) :-postgres_change_database156,5258 -postgres_call_procedure(Procedure,Args,Result) :-postgres_call_procedure169,5797 -postgres_call_procedure(Procedure,Args,Result) :-postgres_call_procedure169,5797 -postgres_call_procedure(Procedure,Args,Result) :-postgres_call_procedure169,5797 -postgres_call_procedure(Connection,Procedure,Args,LA) :-postgres_call_procedure171,5903 -postgres_call_procedure(Connection,Procedure,Args,LA) :-postgres_call_procedure171,5903 -postgres_call_procedure(Connection,Procedure,Args,LA) :-postgres_call_procedure171,5903 - -mxe/packages/myddas/pl/myddas_prolog2sql.yap,35933 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate56,1955 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate56,1955 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate56,1955 -disjunction(Goal,Disjunction):-disjunction75,3039 -disjunction(Goal,Disjunction):-disjunction75,3039 -disjunction(Goal,Disjunction):-disjunction75,3039 -linearize(((A,B),C),(LinA,(LinB,LinC))):-linearize83,3469 -linearize(((A,B),C),(LinA,(LinB,LinC))):-linearize83,3469 -linearize(((A,B),C),(LinA,(LinB,LinC))):-linearize83,3469 -linearize((A,B),(LinA,LinB)):-linearize88,3662 -linearize((A,B),(LinA,LinB)):-linearize88,3662 -linearize((A,B),(LinA,LinB)):-linearize88,3662 -linearize((A;_),LinA):-linearize95,3868 -linearize((A;_),LinA):-linearize95,3868 -linearize((A;_),LinA):-linearize95,3868 -linearize((_;B),LinB):-linearize99,3945 -linearize((_;B),LinB):-linearize99,3945 -linearize((_;B),LinB):-linearize99,3945 -linearize(not A, not LinA):-linearize101,3991 -linearize(not A, not LinA):-linearize101,3991 -linearize(not A, not LinA):-linearize101,3991 -linearize(Var^A, Var^LinA):-linearize103,4042 -linearize(Var^A, Var^LinA):-linearize103,4042 -linearize(Var^A, Var^LinA):-linearize103,4042 -linearize(A,A):-linearize105,4093 -linearize(A,A):-linearize105,4093 -linearize(A,A):-linearize105,4093 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term125,4794 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term125,4794 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term125,4794 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term129,4951 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term129,4951 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term129,4951 -tokenize_term(Constant,'$const$'(Constant)):-tokenize_term131,5016 -tokenize_term(Constant,'$const$'(Constant)):-tokenize_term131,5016 -tokenize_term(Constant,'$const$'(Constant)):-tokenize_term131,5016 -tokenize_term(Term,TokenizedTerm):-tokenize_term134,5109 -tokenize_term(Term,TokenizedTerm):-tokenize_term134,5109 -tokenize_term(Term,TokenizedTerm):-tokenize_term134,5109 -tokenize_arguments([],[]).tokenize_arguments148,5656 -tokenize_arguments([],[]).tokenize_arguments148,5656 -tokenize_arguments([FirstArg|RestArgs],[TokFirstArg|TokRestArgs]):-tokenize_arguments149,5683 -tokenize_arguments([FirstArg|RestArgs],[TokFirstArg|TokRestArgs]):-tokenize_arguments149,5683 -tokenize_arguments([FirstArg|RestArgs],[TokFirstArg|TokRestArgs]):-tokenize_arguments149,5683 -:- dynamic attribute/4.dynamic187,7761 -:- dynamic attribute/4.dynamic187,7761 -query_generation([],_,[]).query_generation188,7785 -query_generation([],_,[]).query_generation188,7785 -query_generation([Conjunction|Conjunctions],ProjectionTerm,[Query|Queries]):-query_generation189,7812 -query_generation([Conjunction|Conjunctions],ProjectionTerm,[Query|Queries]):-query_generation189,7812 -query_generation([Conjunction|Conjunctions],ProjectionTerm,[Query|Queries]):-query_generation189,7812 -translate_goal(SimpleGoal,[SQLFrom],SQLWhere,Dict,NewDict):-translate_goal213,8914 -translate_goal(SimpleGoal,[SQLFrom],SQLWhere,Dict,NewDict):-translate_goal213,8914 -translate_goal(SimpleGoal,[SQLFrom],SQLWhere,Dict,NewDict):-translate_goal213,8914 -translate_goal(Result is Expression,[],SQLWhere,Dict,NewDict):-translate_goal219,9253 -translate_goal(Result is Expression,[],SQLWhere,Dict,NewDict):-translate_goal219,9253 -translate_goal(Result is Expression,[],SQLWhere,Dict,NewDict):-translate_goal219,9253 -translate_goal(not NegatedGoals,[],SQLNegatedSubquery,Dict,Dict):-translate_goal221,9392 -translate_goal(not NegatedGoals,[],SQLNegatedSubquery,Dict,Dict):-translate_goal221,9392 -translate_goal(not NegatedGoals,[],SQLNegatedSubquery,Dict,Dict):-translate_goal221,9392 -translate_goal(not ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal227,9756 -translate_goal(not ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal227,9756 -translate_goal(not ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal227,9756 -translate_goal(exists(ProjectionTerm,ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal234,10238 -translate_goal(exists(ProjectionTerm,ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal234,10238 -translate_goal(exists(ProjectionTerm,ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal234,10238 -translate_goal(exists(ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal241,10674 -translate_goal(exists(ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal241,10674 -translate_goal(exists(ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal241,10674 -translate_goal(ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal247,11033 -translate_goal(ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal247,11033 -translate_goal(ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal247,11033 -translate_goal(distinct(Goal),List,SQL,Dict,DistinctDict):-!,translate_goal253,11366 -translate_goal(distinct(Goal),List,SQL,Dict,DistinctDict):-!,translate_goal253,11366 -translate_goal(distinct(Goal),List,SQL,Dict,DistinctDict):-!,translate_goal253,11366 -add_distinct_statement(Dict,Dict):-add_distinct_statement257,11527 -add_distinct_statement(Dict,Dict):-add_distinct_statement257,11527 -add_distinct_statement(Dict,Dict):-add_distinct_statement257,11527 -translate_conjunction('$var$'(VarId)^Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction267,12066 -translate_conjunction('$var$'(VarId)^Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction267,12066 -translate_conjunction('$var$'(VarId)^Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction267,12066 -translate_conjunction(Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction271,12352 -translate_conjunction(Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction271,12352 -translate_conjunction(Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction271,12352 -translate_conjunction((Goal,Conjunction),SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction274,12485 -translate_conjunction((Goal,Conjunction),SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction274,12485 -translate_conjunction((Goal,Conjunction),SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction274,12485 -translate_arithmetic_function('$var$'(VarId),Expression,[],Dict,NewDict):-translate_arithmetic_function291,13367 -translate_arithmetic_function('$var$'(VarId),Expression,[],Dict,NewDict):-translate_arithmetic_function291,13367 -translate_arithmetic_function('$var$'(VarId),Expression,[],Dict,NewDict):-translate_arithmetic_function291,13367 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function297,13771 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function297,13771 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function297,13771 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function309,14451 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function309,14451 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function309,14451 -translate_arithmetic_function('$const$'(Constant),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function319,15088 -translate_arithmetic_function('$const$'(Constant),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function319,15088 -translate_arithmetic_function('$const$'(Constant),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function319,15088 -translate_comparison(LeftArg,RightArg,CompOp,Dict,Comparison):-translate_comparison333,15874 -translate_comparison(LeftArg,RightArg,CompOp,Dict,Comparison):-translate_comparison333,15874 -translate_comparison(LeftArg,RightArg,CompOp,Dict,Comparison):-translate_comparison333,15874 -translate_functor(Functor,Arity,rel(TableName,RangeVariable)):-translate_functor345,16499 -translate_functor(Functor,Arity,rel(TableName,RangeVariable)):-translate_functor345,16499 -translate_functor(Functor,Arity,rel(TableName,RangeVariable)):-translate_functor345,16499 -translate_arguments([],_,_,[],Dict,Dict).translate_arguments355,16988 -translate_arguments([],_,_,[],Dict,Dict).translate_arguments355,16988 -translate_arguments([Arg|Args],SQLTable,Position,SQLWhere,Dict,NewDict):-translate_arguments356,17030 -translate_arguments([Arg|Args],SQLTable,Position,SQLWhere,Dict,NewDict):-translate_arguments356,17030 -translate_arguments([Arg|Args],SQLTable,Position,SQLWhere,Dict,NewDict):-translate_arguments356,17030 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,[],Dict,NewDict):-translate_argument370,17848 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,[],Dict,NewDict):-translate_argument370,17848 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,[],Dict,NewDict):-translate_argument370,17848 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,AttComparison,Dict,Dict):-translate_argument373,18051 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,AttComparison,Dict,Dict):-translate_argument373,18051 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,AttComparison,Dict,Dict):-translate_argument373,18051 -translate_argument('$const$'(Constant),rel(SQLTable,RangeVar),Position,ConstComparison,Dict,Dict):-translate_argument379,18441 -translate_argument('$const$'(Constant),rel(SQLTable,RangeVar),Position,ConstComparison,Dict,Dict):-translate_argument379,18441 -translate_argument('$const$'(Constant),rel(SQLTable,RangeVar),Position,ConstComparison,Dict,Dict):-translate_argument379,18441 -projection_term_variables('$const$'(_),[]).projection_term_variables394,19304 -projection_term_variables('$const$'(_),[]).projection_term_variables394,19304 -projection_term_variables('$var$'(VarId),[dict(VarId,_,_,_,existential)]).projection_term_variables395,19348 -projection_term_variables('$var$'(VarId),[dict(VarId,_,_,_,existential)]).projection_term_variables395,19348 -projection_term_variables(ProjectionTerm,ProjectionTermVariables):-projection_term_variables396,19423 -projection_term_variables(ProjectionTerm,ProjectionTermVariables):-projection_term_variables396,19423 -projection_term_variables(ProjectionTerm,ProjectionTermVariables):-projection_term_variables396,19423 -projection_list_vars([],[]).projection_list_vars401,19674 -projection_list_vars([],[]).projection_list_vars401,19674 -projection_list_vars(['$var$'(VarId)|RestArgs],[dict(VarId,_,_,_,existential)|RestVars]):-projection_list_vars402,19703 -projection_list_vars(['$var$'(VarId)|RestArgs],[dict(VarId,_,_,_,existential)|RestVars]):-projection_list_vars402,19703 -projection_list_vars(['$var$'(VarId)|RestArgs],[dict(VarId,_,_,_,existential)|RestVars]):-projection_list_vars402,19703 -projection_list_vars(['$const$'(_)|RestArgs],Vars):-projection_list_vars404,19838 -projection_list_vars(['$const$'(_)|RestArgs],Vars):-projection_list_vars404,19838 -projection_list_vars(['$const$'(_)|RestArgs],Vars):-projection_list_vars404,19838 -translate_projection('$var$'(VarId),Dict,SelectList):-translate_projection416,20380 -translate_projection('$var$'(VarId),Dict,SelectList):-translate_projection416,20380 -translate_projection('$var$'(VarId),Dict,SelectList):-translate_projection416,20380 -translate_projection('$const$'(Const),_,['$const$'(Const)]).translate_projection418,20494 -translate_projection('$const$'(Const),_,['$const$'(Const)]).translate_projection418,20494 -translate_projection(ProjectionTerm,Dict,SelectList):-translate_projection419,20555 -translate_projection(ProjectionTerm,Dict,SelectList):-translate_projection419,20555 -translate_projection(ProjectionTerm,Dict,SelectList):-translate_projection419,20555 -projection_arguments([],[],_).projection_arguments425,20788 -projection_arguments([],[],_).projection_arguments425,20788 -projection_arguments([Arg|RestArgs],[Att|RestAtts],Dict):-projection_arguments426,20819 -projection_arguments([Arg|RestArgs],[Att|RestAtts],Dict):-projection_arguments426,20819 -projection_arguments([Arg|RestArgs],[Att|RestAtts],Dict):-projection_arguments426,20819 -retrieve_argument('$var$'(VarId),Attribute,Dict):-retrieve_argument438,21378 -retrieve_argument('$var$'(VarId),Attribute,Dict):-retrieve_argument438,21378 -retrieve_argument('$var$'(VarId),Attribute,Dict):-retrieve_argument438,21378 -retrieve_argument('$const$'(Constant),'$const$'(Constant),_).retrieve_argument446,21577 -retrieve_argument('$const$'(Constant),'$const$'(Constant),_).retrieve_argument446,21577 -lookup(VarId,Dict,RangeVar,Attribute,Type):-lookup448,21728 -lookup(VarId,Dict,RangeVar,Attribute,Type):-lookup448,21728 -lookup(VarId,Dict,RangeVar,Attribute,Type):-lookup448,21728 -add_to_dictionary(Key,RangeVar,Attribute,Type,_,Dict,Dict):-add_to_dictionary458,22015 -add_to_dictionary(Key,RangeVar,Attribute,Type,_,Dict,Dict):-add_to_dictionary458,22015 -add_to_dictionary(Key,RangeVar,Attribute,Type,_,Dict,Dict):-add_to_dictionary458,22015 -add_to_dictionary(Key,RangeVar,Attribute,Type,Quantifier,Dict,NewDict):-add_to_dictionary460,22139 -add_to_dictionary(Key,RangeVar,Attribute,Type,Quantifier,Dict,NewDict):-add_to_dictionary460,22139 -add_to_dictionary(Key,RangeVar,Attribute,Type,Quantifier,Dict,NewDict):-add_to_dictionary460,22139 -aggregate_function(AggregateFunctionTerm,Dict,AggregateFunctionExpression):-aggregate_function478,23026 -aggregate_function(AggregateFunctionTerm,Dict,AggregateFunctionExpression):-aggregate_function478,23026 -aggregate_function(AggregateFunctionTerm,Dict,AggregateFunctionExpression):-aggregate_function478,23026 -conjunction(Goal,Conjunction):-conjunction483,23345 -conjunction(Goal,Conjunction):-conjunction483,23345 -conjunction(Goal,Conjunction):-conjunction483,23345 -aggregate_query_generation(count,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation497,24105 -aggregate_query_generation(count,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation497,24105 -aggregate_query_generation(count,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation497,24105 -aggregate_query_generation(countdistinct,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation503,24474 -aggregate_query_generation(countdistinct,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation503,24474 -aggregate_query_generation(countdistinct,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation503,24474 -aggregate_query_generation(Function,FunctionVariable,AggGoal,Dict,AggregateQuery):-aggregate_query_generation508,24849 -aggregate_query_generation(Function,FunctionVariable,AggGoal,Dict,AggregateQuery):-aggregate_query_generation508,24849 -aggregate_query_generation(Function,FunctionVariable,AggGoal,Dict,AggregateQuery):-aggregate_query_generation508,24849 -translate_grouping(FunctionVariable,Dict,SQLGroup):-translate_grouping523,25763 -translate_grouping(FunctionVariable,Dict,SQLGroup):-translate_grouping523,25763 -translate_grouping(FunctionVariable,Dict,SQLGroup):-translate_grouping523,25763 -free_vars(FunctionVariable,Dict,FreeVarList):-free_vars543,26661 -free_vars(FunctionVariable,Dict,FreeVarList):-free_vars543,26661 -free_vars(FunctionVariable,Dict,FreeVarList):-free_vars543,26661 -function_variable_list('$var$'(VarId),[VarId]).function_variable_list557,27278 -function_variable_list('$var$'(VarId),[VarId]).function_variable_list557,27278 -translate_free_vars([],[]).translate_free_vars564,27604 -translate_free_vars([],[]).translate_free_vars564,27604 -translate_free_vars([(_,Table,Attribute)|FreeVars],[att(Table,Attribute)|SQLGroups]):-translate_free_vars567,27730 -translate_free_vars([(_,Table,Attribute)|FreeVars],[att(Table,Attribute)|SQLGroups]):-translate_free_vars567,27730 -translate_free_vars([(_,Table,Attribute)|FreeVars],[att(Table,Attribute)|SQLGroups]):-translate_free_vars567,27730 -evaluable_expression(AggregateFunctionTerm,Dictionary,AggregateFunctionExpression,number):-evaluable_expression578,28281 -evaluable_expression(AggregateFunctionTerm,Dictionary,AggregateFunctionExpression,number):-evaluable_expression578,28281 -evaluable_expression(AggregateFunctionTerm,Dictionary,AggregateFunctionExpression,number):-evaluable_expression578,28281 -evaluable_expression(LeftExp + RightExp,Dictionary,LeftAr + RightAr,number):-evaluable_expression580,28458 -evaluable_expression(LeftExp + RightExp,Dictionary,LeftAr + RightAr,number):-evaluable_expression580,28458 -evaluable_expression(LeftExp + RightExp,Dictionary,LeftAr + RightAr,number):-evaluable_expression580,28458 -evaluable_expression(LeftExp - RightExp,Dictionary,LeftAr - RightAr,number):-evaluable_expression583,28656 -evaluable_expression(LeftExp - RightExp,Dictionary,LeftAr - RightAr,number):-evaluable_expression583,28656 -evaluable_expression(LeftExp - RightExp,Dictionary,LeftAr - RightAr,number):-evaluable_expression583,28656 -evaluable_expression(LeftExp * RightExp,Dictionary,LeftAr * RightAr,number):-evaluable_expression586,28854 -evaluable_expression(LeftExp * RightExp,Dictionary,LeftAr * RightAr,number):-evaluable_expression586,28854 -evaluable_expression(LeftExp * RightExp,Dictionary,LeftAr * RightAr,number):-evaluable_expression586,28854 -evaluable_expression(LeftExp / RightExp,Dictionary, LeftAr / RightAr,number):-evaluable_expression589,29052 -evaluable_expression(LeftExp / RightExp,Dictionary, LeftAr / RightAr,number):-evaluable_expression589,29052 -evaluable_expression(LeftExp / RightExp,Dictionary, LeftAr / RightAr,number):-evaluable_expression589,29052 -evaluable_expression('$var$'(VarId),Dictionary,att(RangeVar,Attribute),Type):-evaluable_expression592,29251 -evaluable_expression('$var$'(VarId),Dictionary,att(RangeVar,Attribute),Type):-evaluable_expression592,29251 -evaluable_expression('$var$'(VarId),Dictionary,att(RangeVar,Attribute),Type):-evaluable_expression592,29251 -evaluable_expression('$var$'(VarId),Dictionary,ArithmeticExpression,Type):-evaluable_expression595,29402 -evaluable_expression('$var$'(VarId),Dictionary,ArithmeticExpression,Type):-evaluable_expression595,29402 -evaluable_expression('$var$'(VarId),Dictionary,ArithmeticExpression,Type):-evaluable_expression595,29402 -evaluable_expression('$const$'(Const),_,'$const$'(Const),ConstType):-evaluable_expression597,29536 -evaluable_expression('$const$'(Const),_,'$const$'(Const),ConstType):-evaluable_expression597,29536 -evaluable_expression('$const$'(Const),_,'$const$'(Const),ConstType):-evaluable_expression597,29536 -printqueries([Query]):-printqueries605,29977 -printqueries([Query]):-printqueries605,29977 -printqueries([Query]):-printqueries605,29977 -printqueries([Query|Queries]):-printqueries611,30060 -printqueries([Query|Queries]):-printqueries611,30060 -printqueries([Query|Queries]):-printqueries611,30060 -print_query(query([agg_query(Function,Select,From,Where,Group)],_,_)):-print_query620,30294 -print_query(query([agg_query(Function,Select,From,Where,Group)],_,_)):-print_query620,30294 -print_query(query([agg_query(Function,Select,From,Where,Group)],_,_)):-print_query620,30294 -print_query(query(Select,From,Where)):-print_query624,30511 -print_query(query(Select,From,Where)):-print_query624,30511 -print_query(query(Select,From,Where)):-print_query624,30511 -print_query(agg_query(Function,Select,From,Where,Group)):-print_query631,30682 -print_query(agg_query(Function,Select,From,Where,Group)):-print_query631,30682 -print_query(agg_query(Function,Select,From,Where,Group)):-print_query631,30682 -print_query(negated_existential_subquery(Select,From,Where)):-print_query639,30920 -print_query(negated_existential_subquery(Select,From,Where)):-print_query639,30920 -print_query(negated_existential_subquery(Select,From,Where)):-print_query639,30920 -print_query(existential_subquery(Select,From,Where)):-print_query650,31175 -print_query(existential_subquery(Select,From,Where)):-print_query650,31175 -print_query(existential_subquery(Select,From,Where)):-print_query650,31175 -print_clause(_,[],_).print_clause672,31901 -print_clause(_,[],_).print_clause672,31901 -print_clause(Keyword,[Column|RestColumns],Separator):-print_clause673,31923 -print_clause(Keyword,[Column|RestColumns],Separator):-print_clause673,31923 -print_clause(Keyword,[Column|RestColumns],Separator):-print_clause673,31923 -print_clause(Keyword,Function,[Column],Separator):-print_clause677,32061 -print_clause(Keyword,Function,[Column],Separator):-print_clause677,32061 -print_clause(Keyword,Function,[Column],Separator):-print_clause677,32061 -print_clause([Item],_):-print_clause685,32323 -print_clause([Item],_):-print_clause685,32323 -print_clause([Item],_):-print_clause685,32323 -print_clause([Item,NextItem|RestItems],Separator):-print_clause687,32371 -print_clause([Item,NextItem|RestItems],Separator):-print_clause687,32371 -print_clause([Item,NextItem|RestItems],Separator):-print_clause687,32371 -print_column('*'):-print_column694,32610 -print_column('*'):-print_column694,32610 -print_column('*'):-print_column694,32610 -print_column(att(RangeVar,Attribute)):-print_column696,32645 -print_column(att(RangeVar,Attribute)):-print_column696,32645 -print_column(att(RangeVar,Attribute)):-print_column696,32645 -print_column(rel(Relation,RangeVar)):-print_column700,32741 -print_column(rel(Relation,RangeVar)):-print_column700,32741 -print_column(rel(Relation,RangeVar)):-print_column700,32741 -print_column('$const$'(String)):-print_column704,32835 -print_column('$const$'(String)):-print_column704,32835 -print_column('$const$'(String)):-print_column704,32835 -print_column('$const$'(Number)):-print_column709,32956 -print_column('$const$'(Number)):-print_column709,32956 -print_column('$const$'(Number)):-print_column709,32956 -print_column(comp(LeftArg,Operator,RightArg)):-print_column713,33084 -print_column(comp(LeftArg,Operator,RightArg)):-print_column713,33084 -print_column(comp(LeftArg,Operator,RightArg)):-print_column713,33084 -print_column(LeftExpr * RightExpr):-print_column719,33235 -print_column(LeftExpr * RightExpr):-print_column719,33235 -print_column(LeftExpr * RightExpr):-print_column719,33235 -print_column(LeftExpr / RightExpr):-print_column723,33342 -print_column(LeftExpr / RightExpr):-print_column723,33342 -print_column(LeftExpr / RightExpr):-print_column723,33342 -print_column(LeftExpr + RightExpr):-print_column727,33449 -print_column(LeftExpr + RightExpr):-print_column727,33449 -print_column(LeftExpr + RightExpr):-print_column727,33449 -print_column(LeftExpr - RightExpr):-print_column731,33556 -print_column(LeftExpr - RightExpr):-print_column731,33556 -print_column(LeftExpr - RightExpr):-print_column731,33556 -print_column(agg_query(Function,Select,From,Where,Group)):-print_column735,33663 -print_column(agg_query(Function,Select,From,Where,Group)):-print_column735,33663 -print_column(agg_query(Function,Select,From,Where,Group)):-print_column735,33663 -print_column(negated_existential_subquery(Select,From,Where)):-print_column740,33821 -print_column(negated_existential_subquery(Select,From,Where)):-print_column740,33821 -print_column(negated_existential_subquery(Select,From,Where)):-print_column740,33821 -print_column(existential_subquery(Select,From,Where)):-print_column742,33950 -print_column(existential_subquery(Select,From,Where)):-print_column742,33950 -print_column(existential_subquery(Select,From,Where)):-print_column742,33950 -queries_atom(Queries,QueryAtom):-queries_atom751,34428 -queries_atom(Queries,QueryAtom):-queries_atom751,34428 -queries_atom(Queries,QueryAtom):-queries_atom751,34428 -queries_atom([Query],QueryList,Diff):-queries_atom754,34531 -queries_atom([Query],QueryList,Diff):-queries_atom754,34531 -queries_atom([Query],QueryList,Diff):-queries_atom754,34531 -queries_atom([Query|Queries],QueryList,Diff):-queries_atom756,34607 -queries_atom([Query|Queries],QueryList,Diff):-queries_atom756,34607 -queries_atom([Query|Queries],QueryList,Diff):-queries_atom756,34607 -query_atom(query([agg_query(Function,Select,From,Where,Group)],_,_),QueryList,Diff):-query_atom762,34834 -query_atom(query([agg_query(Function,Select,From,Where,Group)],_,_),QueryList,Diff):-query_atom762,34834 -query_atom(query([agg_query(Function,Select,From,Where,Group)],_,_),QueryList,Diff):-query_atom762,34834 -query_atom(query(Select,From,Where),QueryList,Diff):-query_atom766,35079 -query_atom(query(Select,From,Where),QueryList,Diff):-query_atom766,35079 -query_atom(query(Select,From,Where),QueryList,Diff):-query_atom766,35079 -query_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-query_atom770,35267 -query_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-query_atom770,35267 -query_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-query_atom770,35267 -query_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-query_atom776,35582 -query_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-query_atom776,35582 -query_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-query_atom776,35582 -query_atom(existential_subquery(Select,From,Where),QueryList,Diff):-query_atom782,35857 -query_atom(existential_subquery(Select,From,Where),QueryList,Diff):-query_atom782,35857 -query_atom(existential_subquery(Select,From,Where),QueryList,Diff):-query_atom782,35857 -clause_atom(_,[],_,QueryList,QueryList).clause_atom797,36526 -clause_atom(_,[],_,QueryList,QueryList).clause_atom797,36526 -clause_atom(_,[once],_,QueryList,Diff):-!,clause_atom799,36602 -clause_atom(_,[once],_,QueryList,Diff):-!,clause_atom799,36602 -clause_atom(_,[once],_,QueryList,Diff):-!,clause_atom799,36602 -clause_atom(Keyword,[Column|RestColumns],Junctor,QueryList,Diff):-clause_atom803,36735 -clause_atom(Keyword,[Column|RestColumns],Junctor,QueryList,Diff):-clause_atom803,36735 -clause_atom(Keyword,[Column|RestColumns],Junctor,QueryList,Diff):-clause_atom803,36735 -clause_atom(Keyword,'COUNTDISTINCT',[Column],Junctor,QueryList,Diff):-!,clause_atom809,36950 -clause_atom(Keyword,'COUNTDISTINCT',[Column],Junctor,QueryList,Diff):-!,clause_atom809,36950 -clause_atom(Keyword,'COUNTDISTINCT',[Column],Junctor,QueryList,Diff):-!,clause_atom809,36950 -clause_atom(Keyword,Function,[Column],Junctor,QueryList,Diff):-clause_atom816,37213 -clause_atom(Keyword,Function,[Column],Junctor,QueryList,Diff):-clause_atom816,37213 -clause_atom(Keyword,Function,[Column],Junctor,QueryList,Diff):-clause_atom816,37213 -clause_atom([once],_,QueryList,Diff):-!,clause_atom824,37542 -clause_atom([once],_,QueryList,Diff):-!,clause_atom824,37542 -clause_atom([once],_,QueryList,Diff):-!,clause_atom824,37542 -clause_atom([Item],_,QueryList,Diff):-clause_atom826,37625 -clause_atom([Item],_,QueryList,Diff):-clause_atom826,37625 -clause_atom([Item],_,QueryList,Diff):-clause_atom826,37625 -clause_atom([Item,NextItem|RestItems],Junctor,QueryList,Diff):-clause_atom828,37701 -clause_atom([Item,NextItem|RestItems],Junctor,QueryList,Diff):-clause_atom828,37701 -clause_atom([Item,NextItem|RestItems],Junctor,QueryList,Diff):-clause_atom828,37701 -column_atom(att(RangeVar,Attribute),QueryList,Diff):-column_atom838,37996 -column_atom(att(RangeVar,Attribute),QueryList,Diff):-column_atom838,37996 -column_atom(att(RangeVar,Attribute),QueryList,Diff):-column_atom838,37996 -column_atom(rel(Relation,RangeVar),QueryList,Diff):-column_atom842,38151 -column_atom(rel(Relation,RangeVar),QueryList,Diff):-column_atom842,38151 -column_atom(rel(Relation,RangeVar),QueryList,Diff):-column_atom842,38151 -column_atom('$const$'(String),QueryList,Diff):-column_atom847,38322 -column_atom('$const$'(String),QueryList,Diff):-column_atom847,38322 -column_atom('$const$'(String),QueryList,Diff):-column_atom847,38322 -column_atom('$const$'(Number),QueryList,Diff):-column_atom852,38502 -column_atom('$const$'(Number),QueryList,Diff):-column_atom852,38502 -column_atom('$const$'(Number),QueryList,Diff):-column_atom852,38502 -column_atom(comp(LeftArg,Operator,RightArg),QueryList,Diff):-column_atom856,38665 -column_atom(comp(LeftArg,Operator,RightArg),QueryList,Diff):-column_atom856,38665 -column_atom(comp(LeftArg,Operator,RightArg),QueryList,Diff):-column_atom856,38665 -column_atom(LeftExpr * RightExpr,QueryList,Diff):-column_atom862,38885 -column_atom(LeftExpr * RightExpr,QueryList,Diff):-column_atom862,38885 -column_atom(LeftExpr * RightExpr,QueryList,Diff):-column_atom862,38885 -column_atom(LeftExpr + RightExpr,QueryList,Diff):-column_atom866,39037 -column_atom(LeftExpr + RightExpr,QueryList,Diff):-column_atom866,39037 -column_atom(LeftExpr + RightExpr,QueryList,Diff):-column_atom866,39037 -column_atom(LeftExpr - RightExpr,QueryList,Diff):-column_atom870,39189 -column_atom(LeftExpr - RightExpr,QueryList,Diff):-column_atom870,39189 -column_atom(LeftExpr - RightExpr,QueryList,Diff):-column_atom870,39189 -column_atom(LeftExpr / RightExpr,QueryList,Diff):-column_atom874,39341 -column_atom(LeftExpr / RightExpr,QueryList,Diff):-column_atom874,39341 -column_atom(LeftExpr / RightExpr,QueryList,Diff):-column_atom874,39341 -column_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-column_atom878,39493 -column_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-column_atom878,39493 -column_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-column_atom878,39493 -column_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-column_atom882,39696 -column_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-column_atom882,39696 -column_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-column_atom882,39696 -column_atom(existential_subquery(Select,From,Where),QueryList,Diff):-column_atom884,39853 -column_atom(existential_subquery(Select,From,Where),QueryList,Diff):-column_atom884,39853 -column_atom(existential_subquery(Select,From,Where),QueryList,Diff):-column_atom884,39853 -column_atom(Atom,List,Diff):-column_atom886,39994 -column_atom(Atom,List,Diff):-column_atom886,39994 -column_atom(Atom,List,Diff):-column_atom886,39994 -column_atom(Number,List,Diff) :-column_atom890,40082 -column_atom(Number,List,Diff) :-column_atom890,40082 -column_atom(Number,List,Diff) :-column_atom890,40082 -init_gensym(Atom) :-init_gensym902,40401 -init_gensym(Atom) :-init_gensym902,40401 -init_gensym(Atom) :-init_gensym902,40401 -gensym(Atom,Var) :-gensym904,40444 -gensym(Atom,Var) :-gensym904,40444 -gensym(Atom,Var) :-gensym904,40444 -repeat_n(N):-repeat_n912,40694 -repeat_n(N):-repeat_n912,40694 -repeat_n(N):-repeat_n912,40694 -repeat_1(1):-!.repeat_1916,40749 -repeat_1(1):-!.repeat_1916,40749 -repeat_1(1):-!.repeat_1916,40749 -repeat_1(_).repeat_1917,40765 -repeat_1(_).repeat_1917,40765 -repeat_1(N):-repeat_1918,40778 -repeat_1(N):-repeat_1918,40778 -repeat_1(N):-repeat_1918,40778 -set_difference([],_,[]).set_difference924,40940 -set_difference([],_,[]).set_difference924,40940 -set_difference([Element|RestSet],Set,[Element|RestDifference]):-set_difference925,40965 -set_difference([Element|RestSet],Set,[Element|RestDifference]):-set_difference925,40965 -set_difference([Element|RestSet],Set,[Element|RestDifference]):-set_difference925,40965 -set_difference([Element|RestSet],Set,RestDifference):-set_difference928,41105 -set_difference([Element|RestSet],Set,RestDifference):-set_difference928,41105 -set_difference([Element|RestSet],Set,RestDifference):-set_difference928,41105 -comparison(=,=).comparison932,41320 -comparison(=,=).comparison932,41320 -comparison(<,<).comparison933,41337 -comparison(<,<).comparison933,41337 -comparison(=<,'<=').comparison934,41354 -comparison(=<,'<=').comparison934,41354 -comparison(>=,'>=').comparison935,41375 -comparison(>=,'>=').comparison935,41375 -comparison(>,>).comparison936,41396 -comparison(>,>).comparison936,41396 -comparison(@<,<).comparison937,41413 -comparison(@<,<).comparison937,41413 -comparison(@>,>).comparison938,41431 -comparison(@>,>).comparison938,41431 -negated_comparison(=,'<>').negated_comparison939,41449 -negated_comparison(=,'<>').negated_comparison939,41449 -negated_comparison(\=,=).negated_comparison940,41477 -negated_comparison(\=,=).negated_comparison940,41477 -negated_comparison(>,'<=').negated_comparison941,41503 -negated_comparison(>,'<=').negated_comparison941,41503 -negated_comparison(=<,>).negated_comparison942,41531 -negated_comparison(=<,>).negated_comparison942,41531 -negated_comparison(<,>=).negated_comparison943,41557 -negated_comparison(<,>=).negated_comparison943,41557 -negated_comparison(>=,<).negated_comparison944,41583 -negated_comparison(>=,<).negated_comparison944,41583 -aggregate_functor(avg,'AVG').aggregate_functor946,41679 -aggregate_functor(avg,'AVG').aggregate_functor946,41679 -aggregate_functor(min,'MIN').aggregate_functor947,41709 -aggregate_functor(min,'MIN').aggregate_functor947,41709 -aggregate_functor(max,'MAX').aggregate_functor948,41739 -aggregate_functor(max,'MAX').aggregate_functor948,41739 -aggregate_functor(sum,'SUM').aggregate_functor949,41769 -aggregate_functor(sum,'SUM').aggregate_functor949,41769 -aggregate_functor(count,'COUNT').aggregate_functor950,41799 -aggregate_functor(count,'COUNT').aggregate_functor950,41799 -aggregate_functor(countdistinct,'COUNTDISTINCT').aggregate_functor951,41833 -aggregate_functor(countdistinct,'COUNTDISTINCT').aggregate_functor951,41833 -type_compatible(Type,Type):-type_compatible961,42252 -type_compatible(Type,Type):-type_compatible961,42252 -type_compatible(Type,Type):-type_compatible961,42252 -type_compatible(SubType,Type):-type_compatible963,42299 -type_compatible(SubType,Type):-type_compatible963,42299 -type_compatible(SubType,Type):-type_compatible963,42299 -type_compatible(Type,SubType):-type_compatible965,42357 -type_compatible(Type,SubType):-type_compatible965,42357 -type_compatible(Type,SubType):-type_compatible965,42357 -subtype(SubType,SuperType):-subtype972,42614 -subtype(SubType,SuperType):-subtype972,42614 -subtype(SubType,SuperType):-subtype972,42614 -subtype(SubType,SuperType):-subtype974,42677 -subtype(SubType,SuperType):-subtype974,42677 -subtype(SubType,SuperType):-subtype974,42677 -is_type(number).is_type982,42952 -is_type(number).is_type982,42952 -is_type(integer).is_type983,42969 -is_type(integer).is_type983,42969 -is_type(real).is_type984,42987 -is_type(real).is_type984,42987 -is_type(string).is_type985,43002 -is_type(string).is_type985,43002 -is_type(natural).is_type986,43019 -is_type(natural).is_type986,43019 -is_subtype(integer,number).is_subtype992,43245 -is_subtype(integer,number).is_subtype992,43245 -is_subtype(real,number).is_subtype993,43273 -is_subtype(real,number).is_subtype993,43273 -is_subtype(natural,integer).is_subtype994,43298 -is_subtype(natural,integer).is_subtype994,43298 -get_type('$const$'(Constant),integer):-get_type1001,43589 -get_type('$const$'(Constant),integer):-get_type1001,43589 -get_type('$const$'(Constant),integer):-get_type1001,43589 -get_type('$const$'(Constant),real):-get_type1003,43653 -get_type('$const$'(Constant),real):-get_type1003,43653 -get_type('$const$'(Constant),real):-get_type1003,43653 -get_type('$const$'(Constant),string):-get_type1005,43713 -get_type('$const$'(Constant),string):-get_type1005,43713 -get_type('$const$'(Constant),string):-get_type1005,43713 - -mxe/packages/myddas/pl/myddas_prolog2sql_optimizer.yap,4860 -optimize_sql([],[]).optimize_sql10,184 -optimize_sql([],[]).optimize_sql10,184 -optimize_sql([query(Proj,From,Where)|Tail],[query(Proj1,From1,Where1)|SQLTerm]):-optimize_sql11,205 -optimize_sql([query(Proj,From,Where)|Tail],[query(Proj1,From1,Where1)|SQLTerm]):-optimize_sql11,205 -optimize_sql([query(Proj,From,Where)|Tail],[query(Proj1,From1,Where1)|SQLTerm]):-optimize_sql11,205 -optimize_subquery(SQLSelect,OptSelectFinal,F,F,W,W):-optimize_subquery26,1042 -optimize_subquery(SQLSelect,OptSelectFinal,F,F,W,W):-optimize_subquery26,1042 -optimize_subquery(SQLSelect,OptSelectFinal,F,F,W,W):-optimize_subquery26,1042 -optimize_subquery(SQLSelect,SQLSelect,SQLFrom,OptFrom,SQLWhere,OptWhere):-optimize_subquery30,1355 -optimize_subquery(SQLSelect,SQLSelect,SQLFrom,OptFrom,SQLWhere,OptWhere):-optimize_subquery30,1355 -optimize_subquery(SQLSelect,SQLSelect,SQLFrom,OptFrom,SQLWhere,OptWhere):-optimize_subquery30,1355 -optimize_subquery(ProjTerm,ProjTerm,From,From,Where,Where).optimize_subquery42,1955 -optimize_subquery(ProjTerm,ProjTerm,From,From,Where,Where).optimize_subquery42,1955 -delete_surplous_tables([negated_existential_subquery(A,_,B)|T],Rel,[negated_existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables43,2015 -delete_surplous_tables([negated_existential_subquery(A,_,B)|T],Rel,[negated_existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables43,2015 -delete_surplous_tables([negated_existential_subquery(A,_,B)|T],Rel,[negated_existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables43,2015 -delete_surplous_tables([existential_subquery(A,_,B)|T],Rel,[existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables44,2129 -delete_surplous_tables([existential_subquery(A,_,B)|T],Rel,[existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables44,2129 -delete_surplous_tables([existential_subquery(A,_,B)|T],Rel,[existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables44,2129 -delete_surplous_tables([H|T],Rel,[H|Final]):-delete_surplous_tables45,2227 -delete_surplous_tables([H|T],Rel,[H|Final]):-delete_surplous_tables45,2227 -delete_surplous_tables([H|T],Rel,[H|Final]):-delete_surplous_tables45,2227 -comparasion_analysis([],From,From,RelTotal,RelTotal).comparasion_analysis47,2311 -comparasion_analysis([],From,From,RelTotal,RelTotal).comparasion_analysis47,2311 -comparasion_analysis([comp(att(Relation,_),_,att(Relation,_))|Tail],From1,[rel(Name,Relation)|FromFinal],RelTotal,RelTotalFinal):-comparasion_analysis48,2365 -comparasion_analysis([comp(att(Relation,_),_,att(Relation,_))|Tail],From1,[rel(Name,Relation)|FromFinal],RelTotal,RelTotalFinal):-comparasion_analysis48,2365 -comparasion_analysis([comp(att(Relation,_),_,att(Relation,_))|Tail],From1,[rel(Name,Relation)|FromFinal],RelTotal,RelTotalFinal):-comparasion_analysis48,2365 -comparasion_analysis([comp(att(Relation1,_),_,att(Relation2,_))|Tail],From1,From4,RelTotal,RelTotal3):-comparasion_analysis52,2653 -comparasion_analysis([comp(att(Relation1,_),_,att(Relation2,_))|Tail],From1,From4,RelTotal,RelTotal3):-comparasion_analysis52,2653 -comparasion_analysis([comp(att(Relation1,_),_,att(Relation2,_))|Tail],From1,From4,RelTotal,RelTotal3):-comparasion_analysis52,2653 -comparasion_analysis([_|Tail],From,FromFinal,RelTotal,RelTotalFinal):-comparasion_analysis69,3205 -comparasion_analysis([_|Tail],From,FromFinal,RelTotal,RelTotalFinal):-comparasion_analysis69,3205 -comparasion_analysis([_|Tail],From,FromFinal,RelTotal,RelTotalFinal):-comparasion_analysis69,3205 -projection_term_analysis([],[],Relation,Relation).projection_term_analysis71,3343 -projection_term_analysis([],[],Relation,Relation).projection_term_analysis71,3343 -projection_term_analysis([att(Relation,_)|Tail],[rel(Name,Relation)|FromFinal],RelTotal,RelTotal1):-projection_term_analysis72,3394 -projection_term_analysis([att(Relation,_)|Tail],[rel(Name,Relation)|FromFinal],RelTotal,RelTotal1):-projection_term_analysis72,3394 -projection_term_analysis([att(Relation,_)|Tail],[rel(Name,Relation)|FromFinal],RelTotal,RelTotal1):-projection_term_analysis72,3394 -projection_term_analysis([_|Tail],FromFinal,RelTotal,RelTotal1):-projection_term_analysis76,3642 -projection_term_analysis([_|Tail],FromFinal,RelTotal,RelTotal1):-projection_term_analysis76,3642 -projection_term_analysis([_|Tail],FromFinal,RelTotal,RelTotal1):-projection_term_analysis76,3642 -add_relation([],Final,Final).add_relation78,3770 -add_relation([],Final,Final).add_relation78,3770 -add_relation([Rel|Tail],RelTotal,RelFinal):-add_relation79,3800 -add_relation([Rel|Tail],RelTotal,RelFinal):-add_relation79,3800 -add_relation([Rel|Tail],RelTotal,RelFinal):-add_relation79,3800 -add_relation([_|Tail],RelTotal,RelFinal):-add_relation83,3951 -add_relation([_|Tail],RelTotal,RelFinal):-add_relation83,3951 -add_relation([_|Tail],RelTotal,RelFinal):-add_relation83,3951 - -mxe/packages/myddas/pl/myddas_sqlite3.yap,3627 -sqlite3_result_set(X):-sqlite3_result_set49,1390 -sqlite3_result_set(X):-sqlite3_result_set49,1390 -sqlite3_result_set(X):-sqlite3_result_set49,1390 -sqlite3_result_set(use_result):-sqlite3_result_set52,1459 -sqlite3_result_set(use_result):-sqlite3_result_set52,1459 -sqlite3_result_set(use_result):-sqlite3_result_set52,1459 -sqlite3_result_set(store_result):-sqlite3_result_set54,1535 -sqlite3_result_set(store_result):-sqlite3_result_set54,1535 -sqlite3_result_set(store_result):-sqlite3_result_set54,1535 -sqlite3_datalog_describe(Relation):-sqlite3_datalog_describe63,1792 -sqlite3_datalog_describe(Relation):-sqlite3_datalog_describe63,1792 -sqlite3_datalog_describe(Relation):-sqlite3_datalog_describe63,1792 -sqlite3_datalog_describe(Connection,Relation) :-sqlite3_datalog_describe65,1873 -sqlite3_datalog_describe(Connection,Relation) :-sqlite3_datalog_describe65,1873 -sqlite3_datalog_describe(Connection,Relation) :-sqlite3_datalog_describe65,1873 -sqlite3_describe(Relation,TableInfo) :-sqlite3_describe78,2377 -sqlite3_describe(Relation,TableInfo) :-sqlite3_describe78,2377 -sqlite3_describe(Relation,TableInfo) :-sqlite3_describe78,2377 -sqlite3_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-sqlite3_describe80,2463 -sqlite3_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-sqlite3_describe80,2463 -sqlite3_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-sqlite3_describe80,2463 -sqlite3_datalog_show_tables:-sqlite3_datalog_show_tables94,2953 -sqlite3_datalog_show_tables(Connection) :-sqlite3_datalog_show_tables96,3021 -sqlite3_datalog_show_tables(Connection) :-sqlite3_datalog_show_tables96,3021 -sqlite3_datalog_show_tables(Connection) :-sqlite3_datalog_show_tables96,3021 -sqlite3_show_tables(Table) :-sqlite3_show_tables109,3506 -sqlite3_show_tables(Table) :-sqlite3_show_tables109,3506 -sqlite3_show_tables(Table) :-sqlite3_show_tables109,3506 -sqlite3_show_tables(Connection,table(Table)) :-sqlite3_show_tables111,3572 -sqlite3_show_tables(Connection,table(Table)) :-sqlite3_show_tables111,3572 -sqlite3_show_tables(Connection,table(Table)) :-sqlite3_show_tables111,3572 -sqlite3_show_database(Connection,Database) :-sqlite3_show_database123,3981 -sqlite3_show_database(Connection,Database) :-sqlite3_show_database123,3981 -sqlite3_show_database(Connection,Database) :-sqlite3_show_database123,3981 -sqlite3_show_databases(Connection,database(Databases)) :-sqlite3_show_databases132,4292 -sqlite3_show_databases(Connection,database(Databases)) :-sqlite3_show_databases132,4292 -sqlite3_show_databases(Connection,database(Databases)) :-sqlite3_show_databases132,4292 -sqlite3_show_databases(Connection) :-sqlite3_show_databases144,4761 -sqlite3_show_databases(Connection) :-sqlite3_show_databases144,4761 -sqlite3_show_databases(Connection) :-sqlite3_show_databases144,4761 -sqlite3_change_database(Connection,Database) :-sqlite3_change_database156,5175 -sqlite3_change_database(Connection,Database) :-sqlite3_change_database156,5175 -sqlite3_change_database(Connection,Database) :-sqlite3_change_database156,5175 -sqlite3_call_procedure(Procedure,Args,Result) :-sqlite3_call_procedure169,5708 -sqlite3_call_procedure(Procedure,Args,Result) :-sqlite3_call_procedure169,5708 -sqlite3_call_procedure(Procedure,Args,Result) :-sqlite3_call_procedure169,5708 -sqlite3_call_procedure(Connection,Procedure,Args,LA) :-sqlite3_call_procedure171,5812 -sqlite3_call_procedure(Connection,Procedure,Args,LA) :-sqlite3_call_procedure171,5812 -sqlite3_call_procedure(Connection,Procedure,Args,LA) :-sqlite3_call_procedure171,5812 - -mxe/packages/myddas/pl/myddas_top_level.yap,0 - -mxe/packages/myddas/pl/myddas_util_predicates.yap,23082 -'$prolog2sql'(ProjTerm,DbGoal,SQL):-$prolog2sql37,897 -'$prolog2sql'(ProjTerm,DbGoal,SQL):-$prolog2sql37,897 -'$prolog2sql'(ProjTerm,DbGoal,SQL):-$prolog2sql37,897 -'$create_multi_query'([ProjTerm],[DbGoal],SQL):- !,$create_multi_query41,1046 -'$create_multi_query'([ProjTerm],[DbGoal],SQL):- !,$create_multi_query41,1046 -'$create_multi_query'([ProjTerm],[DbGoal],SQL):- !,$create_multi_query41,1046 -'$create_multi_query'([ProjTerm|TermList],[DbGoal|GoalList],SQL):-$create_multi_query47,1239 -'$create_multi_query'([ProjTerm|TermList],[DbGoal|GoalList],SQL):-$create_multi_query47,1239 -'$create_multi_query'([ProjTerm|TermList],[DbGoal|GoalList],SQL):-$create_multi_query47,1239 -'$get_multi_results'(_,_,_,[]).$get_multi_results55,1550 -'$get_multi_results'(_,_,_,[])./p,predicate,predicate definition55,1550 -'$get_multi_results'(_,_,_,[]).$get_multi_results55,1550 -'$get_multi_results'(Con,ConType,ResSet,[List|Results]):-$get_multi_results56,1582 -'$get_multi_results'(Con,ConType,ResSet,[List|Results]):-$get_multi_results56,1582 -'$get_multi_results'(Con,ConType,ResSet,[List|Results]):-$get_multi_results56,1582 -'$process_sql_goal'(TableViewName,SQLorDbGoal,TableName,SQL):-$process_sql_goal65,1847 -'$process_sql_goal'(TableViewName,SQLorDbGoal,TableName,SQL):-$process_sql_goal65,1847 -'$process_sql_goal'(TableViewName,SQLorDbGoal,TableName,SQL):-$process_sql_goal65,1847 -'$process_fields'(FieldsInf,FieldString,KeysSQL):-$process_fields77,2284 -'$process_fields'(FieldsInf,FieldString,KeysSQL):-$process_fields77,2284 -'$process_fields'(FieldsInf,FieldString,KeysSQL):-$process_fields77,2284 -'$process_primary_keys'([],'').$process_primary_keys80,2447 -'$process_primary_keys'([],'')./p,predicate,predicate definition80,2447 -'$process_primary_keys'([],'').$process_primary_keys80,2447 -'$process_primary_keys'([FieldName|Fields],KeysSQL):-$process_primary_keys81,2479 -'$process_primary_keys'([FieldName|Fields],KeysSQL):-$process_primary_keys81,2479 -'$process_primary_keys'([FieldName|Fields],KeysSQL):-$process_primary_keys81,2479 -'$process_primary_keys_put_comma'([],''):-!.$process_primary_keys_put_comma84,2670 -'$process_primary_keys_put_comma'([],''):-!.$process_primary_keys_put_comma84,2670 -'$process_primary_keys_put_comma'([],''):-!.$process_primary_keys_put_comma84,2670 -'$process_primary_keys_put_comma'([FieldName|Fields],CommaSQL):-!,$process_primary_keys_put_comma85,2715 -'$process_primary_keys_put_comma'([FieldName|Fields],CommaSQL):-!,$process_primary_keys_put_comma85,2715 -'$process_primary_keys_put_comma'([FieldName|Fields],CommaSQL):-!,$process_primary_keys_put_comma85,2715 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)],FinalSQL,PrimaryKeys):-!,$create_field_list88,2905 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)],FinalSQL,PrimaryKeys):-!,$create_field_list88,2905 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)],FinalSQL,PrimaryKeys):-!,$create_field_list88,2905 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)|T],FinalSQL,PrimaryKeys):-$create_field_list91,3138 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)|T],FinalSQL,PrimaryKeys):-$create_field_list91,3138 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)|T],FinalSQL,PrimaryKeys):-$create_field_list91,3138 -'$field_extra_options'(Name,Null,Key,KeyInfo,DefaultValue,Result,PrimaryKeys):-$field_extra_options96,3461 -'$field_extra_options'(Name,Null,Key,KeyInfo,DefaultValue,Result,PrimaryKeys):-$field_extra_options96,3461 -'$field_extra_options'(Name,Null,Key,KeyInfo,DefaultValue,Result,PrimaryKeys):-$field_extra_options96,3461 -'$where_exists'(SQL,1):-$where_exists116,3924 -'$where_exists'(SQL,1):-$where_exists116,3924 -'$where_exists'(SQL,1):-$where_exists116,3924 -'$where_exists'(_,0).$where_exists121,4138 -'$where_exists'(_,0)./p,predicate,predicate definition121,4138 -'$where_exists'(_,0).$where_exists121,4138 -'$where_exists_aux'([W|TCodes],[W|TWhere]):-$where_exists_aux122,4160 -'$where_exists_aux'([W|TCodes],[W|TWhere]):-$where_exists_aux122,4160 -'$where_exists_aux'([W|TCodes],[W|TWhere]):-$where_exists_aux122,4160 -'$where_exists_aux'([_|TCodes],Where):-$where_exists_aux124,4239 -'$where_exists_aux'([_|TCodes],Where):-$where_exists_aux124,4239 -'$where_exists_aux'([_|TCodes],Where):-$where_exists_aux124,4239 -'$where_found'(_,[]).$where_found126,4315 -'$where_found'(_,[])./p,predicate,predicate definition126,4315 -'$where_found'(_,[]).$where_found126,4315 -'$where_found'([Letter|TCodes],[Letter|TWhere]):-$where_found127,4337 -'$where_found'([Letter|TCodes],[Letter|TWhere]):-$where_found127,4337 -'$where_found'([Letter|TCodes],[Letter|TWhere]):-$where_found127,4337 -'$build_query'(0,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query132,4469 -'$build_query'(0,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query132,4469 -'$build_query'(0,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query132,4469 -'$build_query'(1,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query134,4576 -'$build_query'(1,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query134,4576 -'$build_query'(1,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query134,4576 -'$build_query_aux'(_,SQL,[],[],SQL).$build_query_aux138,4789 -'$build_query_aux'(_,SQL,[],[],SQL)./p,predicate,predicate definition138,4789 -'$build_query_aux'(_,SQL,[],[],SQL).$build_query_aux138,4789 -'$build_query_aux'(Flag,SQL,[CodeArg|CodeT],[LArg|LT],FinalSQL):-$build_query_aux139,4826 -'$build_query_aux'(Flag,SQL,[CodeArg|CodeT],[LArg|LT],FinalSQL):-$build_query_aux139,4826 -'$build_query_aux'(Flag,SQL,[CodeArg|CodeT],[LArg|LT],FinalSQL):-$build_query_aux139,4826 -'$build_query_aux'(Flag,SQL,[_|CodeT],[_|LT],FinalSQL):-$build_query_aux143,5009 -'$build_query_aux'(Flag,SQL,[_|CodeT],[_|LT],FinalSQL):-$build_query_aux143,5009 -'$build_query_aux'(Flag,SQL,[_|CodeT],[_|LT],FinalSQL):-$build_query_aux143,5009 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL147,5213 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL147,5213 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL147,5213 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL157,5545 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL157,5545 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL157,5545 -'$and_or_where'(1,SQL,ConcatSQL):-$and_or_where167,5929 -'$and_or_where'(1,SQL,ConcatSQL):-$and_or_where167,5929 -'$and_or_where'(1,SQL,ConcatSQL):-$and_or_where167,5929 -'$and_or_where'(0,SQL,ConcatSQL):-$and_or_where169,6000 -'$and_or_where'(0,SQL,ConcatSQL):-$and_or_where169,6000 -'$and_or_where'(0,SQL,ConcatSQL):-$and_or_where169,6000 -'$make_a_list'(0,[]) :- !.$make_a_list174,6130 -'$make_a_list'(0,[]) :- !.$make_a_list174,6130 -'$make_a_list'(0,[]) :- !.$make_a_list174,6130 -'$make_a_list'(N,[_|T]) :-$make_a_list175,6157 -'$make_a_list'(N,[_|T]) :-$make_a_list175,6157 -'$make_a_list'(N,[_|T]) :-$make_a_list175,6157 -'$assert_attribute_information'(N,N,_,_) :- !.$assert_attribute_information178,6219 -'$assert_attribute_information'(N,N,_,_) :- !.$assert_attribute_information178,6219 -'$assert_attribute_information'(N,N,_,_) :- !.$assert_attribute_information178,6219 -'$assert_attribute_information'(N,M,Relation,[FieldName,HeadType|TailTypes]) :-$assert_attribute_information179,6266 -'$assert_attribute_information'(N,M,Relation,[FieldName,HeadType|TailTypes]) :-$assert_attribute_information179,6266 -'$assert_attribute_information'(N,M,Relation,[FieldName,HeadType|TailTypes]) :-$assert_attribute_information179,6266 -'$copy_term_nv'(T,Dic,NT,[(T,NT)|Dic]) :-$copy_term_nv189,6622 -'$copy_term_nv'(T,Dic,NT,[(T,NT)|Dic]) :-$copy_term_nv189,6622 -'$copy_term_nv'(T,Dic,NT,[(T,NT)|Dic]) :-$copy_term_nv189,6622 -'$copy_term_nv'(T,Dic,T,Dic) :-$copy_term_nv192,6703 -'$copy_term_nv'(T,Dic,T,Dic) :-$copy_term_nv192,6703 -'$copy_term_nv'(T,Dic,T,Dic) :-$copy_term_nv192,6703 -'$copy_term_nv'(T,Dic,NT,NDic) :-$copy_term_nv194,6754 -'$copy_term_nv'(T,Dic,NT,NDic) :-$copy_term_nv194,6754 -'$copy_term_nv'(T,Dic,NT,NDic) :-$copy_term_nv194,6754 -'$iterate_on_args'(0,_,_,Dic,Dic) :- !.$iterate_on_args198,6861 -'$iterate_on_args'(0,_,_,Dic,Dic) :- !.$iterate_on_args198,6861 -'$iterate_on_args'(0,_,_,Dic,Dic) :- !.$iterate_on_args198,6861 -'$iterate_on_args'(N,T,NT,Dic,NDic2) :-$iterate_on_args199,6901 -'$iterate_on_args'(N,T,NT,Dic,NDic2) :-$iterate_on_args199,6901 -'$iterate_on_args'(N,T,NT,Dic,NDic2) :-$iterate_on_args199,6901 -'$v_member'(T,[],(T,_)).$v_member205,7055 -'$v_member'(T,[],(T,_))./p,predicate,predicate definition205,7055 -'$v_member'(T,[],(T,_)).$v_member205,7055 -'$v_member'(T,[(V,V1)|_],(T,V1)) :-$v_member206,7080 -'$v_member'(T,[(V,V1)|_],(T,V1)) :-$v_member206,7080 -'$v_member'(T,[(V,V1)|_],(T,V1)) :-$v_member206,7080 -'$v_member'(T,[_|R],V) :-$v_member208,7128 -'$v_member'(T,[_|R],V) :-$v_member208,7128 -'$v_member'(T,[_|R],V) :-$v_member208,7128 -'$extract_args'(Predicate,Arity,Arity,[Arg]):-$extract_args212,7273 -'$extract_args'(Predicate,Arity,Arity,[Arg]):-$extract_args212,7273 -'$extract_args'(Predicate,Arity,Arity,[Arg]):-$extract_args212,7273 -'$extract_args'(Predicate,ArgNumber,Arity,[Arg|ArgList]):-$extract_args214,7354 -'$extract_args'(Predicate,ArgNumber,Arity,[Arg|ArgList]):-$extract_args214,7354 -'$extract_args'(Predicate,ArgNumber,Arity,[Arg|ArgList]):-$extract_args214,7354 -'$get_table_name'([query(_,[rel(TableName,_)],_)],TableName).$get_table_name220,7633 -'$get_table_name'([query(_,[rel(TableName,_)],_)],TableName)./p,predicate,predicate definition220,7633 -'$get_table_name'([query(_,[rel(TableName,_)],_)],TableName).$get_table_name220,7633 -'$get_values_for_update'([query(Fields,_,[])],SetArgs,[' SET '|SQLSet],[]):-!,$get_values_for_update224,7865 -'$get_values_for_update'([query(Fields,_,[])],SetArgs,[' SET '|SQLSet],[]):-!,$get_values_for_update224,7865 -'$get_values_for_update'([query(Fields,_,[])],SetArgs,[' SET '|SQLSet],[]):-!,$get_values_for_update224,7865 -'$get_values_for_update'([query(Fields,_,Comp)],SetArgs,[' SET '|SQLSet],[' WHERE '|Where]):-!,$get_values_for_update227,8025 -'$get_values_for_update'([query(Fields,_,Comp)],SetArgs,[' SET '|SQLSet],[' WHERE '|Where]):-!,$get_values_for_update227,8025 -'$get_values_for_update'([query(Fields,_,Comp)],SetArgs,[' SET '|SQLSet],[' WHERE '|Where]):-!,$get_values_for_update227,8025 -'$get_values_for_set'([],[],[]).$get_values_for_set231,8240 -'$get_values_for_set'([],[],[])./p,predicate,predicate definition231,8240 -'$get_values_for_set'([],[],[]).$get_values_for_set231,8240 -'$get_values_for_set'([att(_,Field)|FieldList],[Value|ValueList],[Field,Value|FieldValueList]):-$get_values_for_set232,8273 -'$get_values_for_set'([att(_,Field)|FieldList],[Value|ValueList],[Field,Value|FieldValueList]):-$get_values_for_set232,8273 -'$get_values_for_set'([att(_,Field)|FieldList],[Value|ValueList],[Field,Value|FieldValueList]):-$get_values_for_set232,8273 -'$get_values_for_set'([_|FieldList],[_|ValueList],FieldValueList):-!,$get_values_for_set235,8448 -'$get_values_for_set'([_|FieldList],[_|ValueList],FieldValueList):-!,$get_values_for_set235,8448 -'$get_values_for_set'([_|FieldList],[_|ValueList],FieldValueList):-!,$get_values_for_set235,8448 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))],[' ',Field,' = "',Atom,'" ']).$get_values_for_where237,8578 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))],[' ',Field,' = "',Atom,'" '])./p,predicate,predicate definition237,8578 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))],[' ',Field,' = "',Atom,'" ']).$get_values_for_where'([comp(att(_,Field),'=','$const$237,8578 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))|Comp],[' ',Field,' = "',Atom,'" AND '|Rest]):-$get_values_for_where238,8674 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))|Comp],[' ',Field,' = "',Atom,'" AND '|Rest]):-$get_values_for_where238,8674 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))|Comp],[' ',Field,' = "',Atom,'" AND '|Rest]):-$get_values_for_where'([comp(att(_,Field),'=','$const$238,8674 -'$build_set_condition'([Field,Value|FieldValues],[SQLFirst|SQLRest]):-$build_set_condition240,8822 -'$build_set_condition'([Field,Value|FieldValues],[SQLFirst|SQLRest]):-$build_set_condition240,8822 -'$build_set_condition'([Field,Value|FieldValues],[SQLFirst|SQLRest]):-$build_set_condition240,8822 -'$build_set_condition_with_comma'([],[]).$build_set_condition_with_comma243,9019 -'$build_set_condition_with_comma'([],[])./p,predicate,predicate definition243,9019 -'$build_set_condition_with_comma'([],[]).$build_set_condition_with_comma243,9019 -'$build_set_condition_with_comma'([Field,Value|FieldValues],[SQL|SQLRest]):-$build_set_condition_with_comma244,9061 -'$build_set_condition_with_comma'([Field,Value|FieldValues],[SQL|SQLRest]):-$build_set_condition_with_comma244,9061 -'$build_set_condition_with_comma'([Field,Value|FieldValues],[SQL|SQLRest]):-$build_set_condition_with_comma244,9061 -'$abolish_all'(Con):-$abolish_all248,9295 -'$abolish_all'(Con):-$abolish_all248,9295 -'$abolish_all'(Con):-$abolish_all248,9295 -'$write_or_not'(X) :-$write_or_not252,9438 -'$write_or_not'(X) :-$write_or_not252,9438 -'$write_or_not'(X) :-$write_or_not252,9438 -'$write_or_not'(X) :-$write_or_not255,9502 -'$write_or_not'(X) :-$write_or_not255,9502 -'$write_or_not'(X) :-$write_or_not255,9502 -'$write_or_not'(_).$write_or_not261,9688 -'$write_or_not'(_)./p,predicate,predicate definition261,9688 -'$write_or_not'(_).$write_or_not261,9688 -'$make_atom'([],'').$make_atom262,9708 -'$make_atom'([],'')./p,predicate,predicate definition262,9708 -'$make_atom'([],'').$make_atom262,9708 -'$make_atom'([Atom|T],Final) :-$make_atom263,9729 -'$make_atom'([Atom|T],Final) :-$make_atom263,9729 -'$make_atom'([Atom|T],Final) :-$make_atom263,9729 -'$make_atom'([Number|T],Final) :-$make_atom267,9841 -'$make_atom'([Number|T],Final) :-$make_atom267,9841 -'$make_atom'([Number|T],Final) :-$make_atom267,9841 -'$make_atom_args'([Atom],Atom):-$make_atom_args271,9974 -'$make_atom_args'([Atom],Atom):-$make_atom_args271,9974 -'$make_atom_args'([Atom],Atom):-$make_atom_args271,9974 -'$make_atom_args'([Number],Atom):-$make_atom_args273,10022 -'$make_atom_args'([Number],Atom):-$make_atom_args273,10022 -'$make_atom_args'([Number],Atom):-$make_atom_args273,10022 -'$make_atom_args'([Atom|T],Final) :-$make_atom_args275,10086 -'$make_atom_args'([Atom|T],Final) :-$make_atom_args275,10086 -'$make_atom_args'([Atom|T],Final) :-$make_atom_args275,10086 -'$make_atom_args'([Number|T],Final) :-$make_atom_args280,10233 -'$make_atom_args'([Number|T],Final) :-$make_atom_args280,10233 -'$make_atom_args'([Number|T],Final) :-$make_atom_args280,10233 -'$get_values_for_insert'([_,_],[Value],['NULL',')']):-var(Value),!.$get_values_for_insert287,10505 -'$get_values_for_insert'([_,_],[Value],['NULL',')']):-var(Value),!.$get_values_for_insert287,10505 -'$get_values_for_insert'([_,_],[Value],['NULL',')']):-var(Value),!.$get_values_for_insert287,10505 -'$get_values_for_insert'([_,integer],[Value],[Value,')']):-!.$get_values_for_insert288,10573 -'$get_values_for_insert'([_,integer],[Value],[Value,')']):-!.$get_values_for_insert288,10573 -'$get_values_for_insert'([_,integer],[Value],[Value,')']):-!.$get_values_for_insert288,10573 -'$get_values_for_insert'([_,real],[Value],[Value,')']):-!.$get_values_for_insert289,10635 -'$get_values_for_insert'([_,real],[Value],[Value,')']):-!.$get_values_for_insert289,10635 -'$get_values_for_insert'([_,real],[Value],[Value,')']):-!.$get_values_for_insert289,10635 -'$get_values_for_insert'([_,string],[Value],['"',Value,'")']):-!.$get_values_for_insert290,10694 -'$get_values_for_insert'([_,string],[Value],['"',Value,'")']):-!.$get_values_for_insert290,10694 -'$get_values_for_insert'([_,string],[Value],['"',Value,'")']):-!.$get_values_for_insert290,10694 -'$get_values_for_insert'([_,_|TTypesList],[Value|TValues],['NULL',','|RestValues]):-$get_values_for_insert291,10760 -'$get_values_for_insert'([_,_|TTypesList],[Value|TValues],['NULL',','|RestValues]):-$get_values_for_insert291,10760 -'$get_values_for_insert'([_,_|TTypesList],[Value|TValues],['NULL',','|RestValues]):-$get_values_for_insert291,10760 -'$get_values_for_insert'([_,integer|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert294,10925 -'$get_values_for_insert'([_,integer|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert294,10925 -'$get_values_for_insert'([_,integer|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert294,10925 -'$get_values_for_insert'([_,real|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert296,11082 -'$get_values_for_insert'([_,real|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert296,11082 -'$get_values_for_insert'([_,real|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert296,11082 -'$get_values_for_insert'([_,string|TTypesList],[Value|TValues],['"',Value,'",'|RestValues]):-!,$get_values_for_insert298,11236 -'$get_values_for_insert'([_,string|TTypesList],[Value|TValues],['"',Value,'",'|RestValues]):-!,$get_values_for_insert298,11236 -'$get_values_for_insert'([_,string|TTypesList],[Value|TValues],['"',Value,'",'|RestValues]):-!,$get_values_for_insert298,11236 -'$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],['('|ValuesList],Relation):-$get_values_for_insert301,11418 -'$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],['('|ValuesList],Relation):-$get_values_for_insert301,11418 -'$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],['('|ValuesList],Relation):-$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],[301,11418 -'$get_values_for_insert_make_list'([att(_,_)],['NULL',')']):-!.$get_values_for_insert_make_list303,11565 -'$get_values_for_insert_make_list'([att(_,_)],['NULL',')']):-!.$get_values_for_insert_make_list303,11565 -'$get_values_for_insert_make_list'([att(_,_)],['NULL',')']):-!.$get_values_for_insert_make_list303,11565 -'$get_values_for_insert_make_list'(['$const$'(Value)],[Value,')']):-$get_values_for_insert_make_list304,11629 -'$get_values_for_insert_make_list'(['$const$'(Value)],[Value,')']):-$get_values_for_insert_make_list304,11629 -'$get_values_for_insert_make_list'(['$const$'(Value)],[Value,')']):-$get_values_for_insert_make_list'(['$const$304,11629 -'$get_values_for_insert_make_list'(['$const$'(Value)],['"',Value,'")']):-!.$get_values_for_insert_make_list306,11723 -'$get_values_for_insert_make_list'(['$const$'(Value)],['"',Value,'")']):-!.$get_values_for_insert_make_list306,11723 -'$get_values_for_insert_make_list'(['$const$'(Value)],['"',Value,'")']):-!.$get_values_for_insert_make_list'(['$const$306,11723 -'$get_values_for_insert_make_list'([att(_,_)|TAtt],['NULL',','|TList]):-!,$get_values_for_insert_make_list307,11799 -'$get_values_for_insert_make_list'([att(_,_)|TAtt],['NULL',','|TList]):-!,$get_values_for_insert_make_list307,11799 -'$get_values_for_insert_make_list'([att(_,_)|TAtt],['NULL',','|TList]):-!,$get_values_for_insert_make_list307,11799 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],[Value,','|TList]):-$get_values_for_insert_make_list309,11929 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],[Value,','|TList]):-$get_values_for_insert_make_list309,11929 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],[Value,','|TList]):-$get_values_for_insert_make_list'(['$const$309,11929 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],['"',Value,'"',','|TList]):-$get_values_for_insert_make_list312,12090 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],['"',Value,'"',','|TList]):-$get_values_for_insert_make_list312,12090 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],['"',Value,'"',','|TList]):-$get_values_for_insert_make_list'(['$const$312,12090 -'$get_value'(Connection,Con) :-$get_value316,12305 -'$get_value'(Connection,Con) :-$get_value316,12305 -'$get_value'(Connection,Con) :-$get_value316,12305 -'$check_fields'([],[]).$check_fields319,12410 -'$check_fields'([],[])./p,predicate,predicate definition319,12410 -'$check_fields'([],[]).$check_fields319,12410 -'$check_fields'(['$const$'(_)|TAtt],[_|TFields]):-$check_fields320,12434 -'$check_fields'(['$const$'(_)|TAtt],[_|TFields]):-$check_fields320,12434 -'$check_fields'(['$const$'(_)|TAtt],[_|TFields]):-$check_fields'(['$const$320,12434 -'$check_fields'([att(_,Name)|TAtt],[property(Name,_,1,1)|TFields]):-!,$check_fields324,12622 -'$check_fields'([att(_,Name)|TAtt],[property(Name,_,1,1)|TFields]):-!,$check_fields324,12622 -'$check_fields'([att(_,Name)|TAtt],[property(Name,_,1,1)|TFields]):-!,$check_fields324,12622 -'$check_fields'([att(_,Name)|TAtt],[property(Name,0,_,_)|TFields]):-!,$check_fields326,12732 -'$check_fields'([att(_,Name)|TAtt],[property(Name,0,_,_)|TFields]):-!,$check_fields326,12732 -'$check_fields'([att(_,Name)|TAtt],[property(Name,0,_,_)|TFields]):-!,$check_fields326,12732 -'$assert_facts'(Module,Fact):-$assert_facts332,12946 -'$assert_facts'(Module,Fact):-$assert_facts332,12946 -'$assert_facts'(Module,Fact):-$assert_facts332,12946 -'$assert_facts'(Module,Fact):-$assert_facts334,13000 -'$assert_facts'(Module,Fact):-$assert_facts334,13000 -'$assert_facts'(Module,Fact):-$assert_facts334,13000 -'$lenght'([],0).$lenght336,13060 -'$lenght'([],0)./p,predicate,predicate definition336,13060 -'$lenght'([],0).$lenght336,13060 -'$lenght'([_|T],Sum):-$lenght337,13077 -'$lenght'([_|T],Sum):-$lenght337,13077 -'$lenght'([_|T],Sum):-$lenght337,13077 -'$check_list_on_list'([],_).$check_list_on_list340,13150 -'$check_list_on_list'([],_)./p,predicate,predicate definition340,13150 -'$check_list_on_list'([],_).$check_list_on_list340,13150 -'$check_list_on_list'([H|T],DbGoalArgs) :-$check_list_on_list341,13179 -'$check_list_on_list'([H|T],DbGoalArgs) :-$check_list_on_list341,13179 -'$check_list_on_list'([H|T],DbGoalArgs) :-$check_list_on_list341,13179 -'$member_strick'(Element1, [Element2|_]) :-$member_strick344,13293 -'$member_strick'(Element1, [Element2|_]) :-$member_strick344,13293 -'$member_strick'(Element1, [Element2|_]) :-$member_strick344,13293 -'$member_strick'(Element, [_|Rest]) :-$member_strick346,13362 -'$member_strick'(Element, [_|Rest]) :-$member_strick346,13362 -'$member_strick'(Element, [_|Rest]) :-$member_strick346,13362 -'$make_stats_list'([],[]).$make_stats_list348,13442 -'$make_stats_list'([],[])./p,predicate,predicate definition348,13442 -'$make_stats_list'([],[]).$make_stats_list348,13442 -'$make_stats_list'([Ref|Tail],[Time|Final]):-$make_stats_list349,13469 -'$make_stats_list'([Ref|Tail],[Time|Final]):-$make_stats_list349,13469 -'$make_stats_list'([Ref|Tail],[Time|Final]):-$make_stats_list349,13469 - -mxe/packages/myddas/postgres/Makefile,0 - -mxe/packages/myddas/sqlite3/Makefile,0 - -mxe/packages/ProbLog/Makefile,0 - -mxe/packages/python/Makefile,0 - -mxe/packages/raptor/Makefile,0 - -mxe/packages/raptor/raptor_config.h,60 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H1,0 - -mxe/packages/real/Makefile,0 - -mxe/packages/real/rconfig.h,174 -#define RCONFIG_HRCONFIG_H7,343 -#define HAVE_R_H HAVE_R_H11,437 -#define HAVE_R_EMBEDDED_H HAVE_R_EMBEDDED_H16,548 -#define HAVE_R_INTERFACE_H HAVE_R_INTERFACE_H21,669 - -mxe/packages/swi-minisat2/C/Makefile,0 - -mxe/packages/swi-minisat2/Makefile,0 - -mxe/packages/swig/Makefile,0 - -mxe/packages/swig/python/Makefile,0 - -mxe/packages/swig/python/setup.py,2769 -from setuptools import setupsetup9,184 -from setuptools.extension import ExtensionExtension10,213 -from codecs import openopen12,289 -from os import path, makedirs, walkpath13,313 -from os import path, makedirs, walkmakedirs13,313 -from os import path, makedirs, walkwalk13,313 -from shutil import copytree, rmtree, copy2, movecopytree14,349 -from shutil import copytree, rmtree, copy2, movermtree14,349 -from shutil import copytree, rmtree, copy2, movecopy214,349 -from shutil import copytree, rmtree, copy2, movemove14,349 -from glob import globglob15,398 -from pathlib import PathPath16,420 -import platformplatform17,445 -import os.pathos18,461 -import os.pathpath18,461 -my_extra_link_args = []my_extra_link_args20,477 - my_extra_link_args = ['-Wl,-rpath','-Wl,/usr/local/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages']my_extra_link_args22,535 - so = 'dylib'so23,682 -pls = []pls26,755 -cplus=['../../../../CXX/yapi.cpp']cplus35,996 -py2yap=['../../../../packages/python/python.c',py2yap36,1031 -python_sources = ['yapPYTHON_wrap.cxx']+py2yap+cpluspython_sources43,1318 -here = path.abspath(path.dirname(__file__))here44,1371 -extensions=[Extension('_yap', python_sources,extensions48,1465 - define_macros = [('MAJOR_VERSION', '1'),define_macros49,1511 - runtime_library_dirs=['yap4py','/usr/local/lib','/usr/local/bin'],runtime_library_dirs53,1767 - swig_opts=['-modern', '-c++', '-py3','-I../../../..//CXX'],swig_opts54,1856 - library_dirs=['../../..','../../../CXX','../../packages/python',"/usr/local/lib/Yap","/usr/local/bin", '.'],library_dirs55,1928 - extra_link_args=my_extra_link_args,extra_link_args56,2059 - extra_compile_args=['-g'],extra_compile_args57,2107 - libraries=['Yap','/usr/local/lib/libgmp.dylib'],libraries58,2156 - include_dirs=['../../..',include_dirs59,2217 - name='YAP4Py',name70,2653 - version='6.3.5',version71,2672 - description='The YAP Prolog compiler as a Python Library',description72,2693 - url='https://github.com/vscosta/yap-6.3',url73,2757 - author='Vitor Santos Costa',author74,2803 - author_email='vsc@dcc.fc.up.pt',author_email75,2836 - license='Artistic',license76,2873 - classifiers=[classifiers77,2897 - keywords=['Logic Programing'],keywords88,3404 - include_package_data=True,include_package_data90,3473 - ext_modules = extensions,ext_modules91,3504 - py_modules = ['yap'],py_modules92,3534 - zip_safe=False,zip_safe93,3560 - eager_resources = ['yap4py'],eager_resources94,3580 - packages=['yap4py'] # find_packages()packages95,3614 - -mxe/packages/xml/Makefile,0 - -mxe/pl/Makefile,0 - -mxe/swiLibrary/Makefile,0 - -mxe/utf8proc/Makefile,0 - -mxe/YapConfig.h,10339 - #define CONFIG_HCONFIG_H8,340 - #define SYSTEM_OPTIONS SYSTEM_OPTIONS11,424 -#define DEPTH_LIMIT DEPTH_LIMIT20,740 -#define USE_THREADED_CODE USE_THREADED_CODE25,856 -#define TABLING TABLING30,959 -#define LOW_LEVEL_TRACER LOW_LEVEL_TRACER35,1069 -#define ALIGN_LONGS ALIGN_LONGS50,1399 -#define BITNESS BITNESS55,1474 -#define CELLSIZE CELLSIZE65,1662 -#define C_CC C_CC70,1724 -#define C_CFLAGS C_CFLAGS75,1848 -#define C_LDFLAGS C_LDFLAGS80,1917 -#define C_LIBPLSO C_LIBPLSO85,1998 -#define C_LIBS C_LIBS90,2068 -#define FFIEEE FFIEEE95,2181 -#define GC_NO_TAGS GC_NO_TAGS107,2450 -#define HAVE_ACCESS HAVE_ACCESS117,2655 -#define HAVE_ACOSH HAVE_ACOSH122,2756 -#define HAVE_ADD_HISTORY HAVE_ADD_HISTORY127,2868 -#define HAVE_ASINH HAVE_ASINH236,6198 -#define HAVE_ATANH HAVE_ATANH241,6298 -#define HAVE_BASENAME HAVE_BASENAME246,6404 -#define HAVE_CHDIR HAVE_CHDIR256,6621 -#define HAVE_CLOCK HAVE_CLOCK261,6721 -#define HAVE_CTIME HAVE_CTIME281,7193 -#define HAVE_CTYPE_H HAVE_CTYPE_H286,7300 -#define HAVE_DIRECT_H HAVE_DIRECT_H291,7411 -#define HAVE_DIRENT_H HAVE_DIRENT_H296,7523 -#define HAVE_DLFCN_H HAVE_DLFCN_H301,7633 -#define HAVE_DLOPEN HAVE_DLOPEN306,7737 -#define HAVE_DUP2 HAVE_DUP2311,7836 -#define HAVE_ERF HAVE_ERF326,8113 -#define HAVE_ERRNO_H HAVE_ERRNO_H331,8218 -#define HAVE_FCNTL_H HAVE_FCNTL_H341,8448 -#define HAVE_FECLEAREXCEPT HAVE_FECLEAREXCEPT346,8566 -#define HAVE_FENV_H HAVE_FENV_H356,8809 -#define HAVE_FESETEXCEPTFLAG HAVE_FESETEXCEPTFLAG361,8930 -#define HAVE_FESETROUND HAVE_FESETROUND366,9050 -#define HAVE_FETESTEXCEPT HAVE_FETESTEXCEPT376,9302 -#define HAVE_FGETPOS HAVE_FGETPOS391,9616 -#define HAVE_FINITE HAVE_FINITE396,9720 -#define HAVE_FPCLASS HAVE_FPCLASS421,10252 -#define HAVE_FTIME HAVE_FTIME431,10484 -#define HAVE_FTRUNCATE HAVE_FTRUNCATE436,10592 -#define HAVE_GCC HAVE_GCC446,10809 -#define HAVE_GETCWD HAVE_GETCWD451,10909 -#define HAVE_GETENV HAVE_GETENV456,11012 -#define HAVE_GETPAGESIZE HAVE_GETPAGESIZE491,11842 -#define HAVE_GETPID HAVE_GETPID496,11950 -#define HAVE_GETTIMEOFDAY HAVE_GETTIMEOFDAY516,12407 -#define HAVE_GMTIME HAVE_GMTIME541,12945 -#define HAVE_IEEEFP_H HAVE_IEEEFP_H551,13146 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H556,13262 -#define HAVE_IO_H HAVE_IO_H561,13368 -#define HAVE_ISATTY HAVE_ISATTY566,13469 -#define HAVE_ISNAN HAVE_ISNAN581,13785 -#define HAVE_ISWBLANK HAVE_ISWBLANK586,13888 -#define HAVE_ISWSPACE HAVE_ISWSPACE591,13997 -#define HAVE_LABS HAVE_LABS606,14307 -#define HAVE_LIBANDROID HAVE_LIBANDROID616,14530 -#define HAVE_LIBCOMDLG32 HAVE_LIBCOMDLG32621,14655 -#define HAVE_LIBCRYPT HAVE_LIBCRYPT626,14772 -#define HAVE_LIBGEN_H HAVE_LIBGEN_H636,14989 -#define HAVE_LIBGMP HAVE_LIBGMP642,15099 -#define HAVE_LIBJUDY HAVE_LIBJUDY647,15208 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H652,15330 -#define HAVE_LIBLOG HAVE_LIBLOG657,15445 -#define HAVE_LIBM HAVE_LIBM662,15545 -#define HAVE_LIBMPE HAVE_LIBMPE667,15678 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT672,15790 -#define HAVE_LIBNSL HAVE_LIBNSL677,15894 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS682,16012 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES687,16140 -#define HAVE_LIBPSAPI HAVE_LIBPSAPI692,16258 -#define HAVE_LIBGMP HAVE_LIBGMP702,16418 -#define HAVE_LIBJUDY HAVE_LIBJUDY707,16527 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H712,16649 -#define HAVE_LIBLOG HAVE_LIBLOG717,16764 -#define HAVE_LIBM HAVE_LIBM722,16864 -#define HAVE_LIBMPE HAVE_LIBMPE727,16997 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT732,17109 -#define HAVE_LIBNSL HAVE_LIBNSL737,17213 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS742,17331 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES747,17459 -#define HAVE_LIBSHLWAPI HAVE_LIBSHLWAPI752,17583 -#define HAVE_LIBPTHREAD HAVE_LIBPTHREAD757,17705 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR762,17896 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR2767,18017 -#define HAVE_LIBRESOLV HAVE_LIBRESOLV773,18137 -#define HAVE_LIBSHELL32 HAVE_LIBSHELL32778,18258 -#define HAVE_LIBSOCKET HAVE_LIBSOCKET783,18372 -#define HAVE_LIBSTDC__ HAVE_LIBSTDC__788,18490 -#define HAVE_LIBUNICODE HAVE_LIBUNICODE793,18581 -#define HAVE_LIBWS2_32 HAVE_LIBWS2_32798,18700 -#define HAVE_LIBWSOCK32 HAVE_LIBWSOCK32803,18821 -#define HAVE_LIBXNET HAVE_LIBXNET808,18934 -#define HAVE_LIMITS_H HAVE_LIMITS_H813,19044 -#define HAVE_LOCALE_H HAVE_LOCALE_H833,19495 -#define HAVE_LOCALTIME HAVE_LOCALTIME838,19606 -#define HAVE_MALLOC_H HAVE_MALLOC_H863,20181 -#define HAVE_MATH_H HAVE_MATH_H868,20289 -#define HAVE_MEMCPY HAVE_MEMCPY888,20740 -#define HAVE_MEMMOVE HAVE_MEMMOVE893,20845 -#define HAVE_MEMORY_H HAVE_MEMORY_H898,20956 -#define HAVE_MKSTEMP HAVE_MKSTEMP903,21063 -#define HAVE_MKTEMP HAVE_MKTEMP908,21167 -#define HAVE_MKTIME HAVE_MKTIME913,21270 -#define HAVE_OPENDIR HAVE_OPENDIR978,22735 -#define HAVE_PTHREAD_H HAVE_PTHREAD_H993,23054 -#define HAVE_PUTENV HAVE_PUTENV1013,23649 -#define HAVE_RAND HAVE_RAND1028,23966 -#define HAVE_RENAME HAVE_RENAME1073,24999 -#define HAVE_RINT HAVE_RINT1084,25267 -#define HAVE_SETBUF HAVE_SETBUF1109,25801 -#define HAVE_SETLOCALE HAVE_SETLOCALE1124,26143 -#define HAVE_SHLOBJ_H HAVE_SHLOBJ_H1134,26362 -#define HAVE_SIGFPE HAVE_SIGFPE1149,26650 -#define HAVE_SIGNAL HAVE_SIGNAL1174,27187 -#define HAVE_SIGNAL_H HAVE_SIGNAL_H1179,27297 -#define HAVE_SIGSEGV HAVE_SIGSEGV1194,27575 -#define HAVE_SLEEP HAVE_SLEEP1204,27764 -#define HAVE_SNPRINTF HAVE_SNPRINTF1209,27870 -#define HAVE_SRAND HAVE_SRAND1244,28639 -#define HAVE_STAT HAVE_STAT1259,28957 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H1269,29182 -#define STDC_HEADERS STDC_HEADERS1274,29280 -#define HAVE_FLOAT_H HAVE_FLOAT_H1277,29327 -#define HAVE_STRING_H HAVE_STRING_H1278,29350 -#define HAVE_STDARG_H HAVE_STDARG_H1279,29374 -#define HAVE_STDLIB_H HAVE_STDLIB_H1280,29398 -#define HAVE_STDINT_H HAVE_STDINT_H1285,29510 -#define HAVE_STRCASECMP HAVE_STRCASECMP1295,29738 -#define HAVE_STRCHR HAVE_STRCHR1305,29963 -#define HAVE_STRERROR HAVE_STRERROR1310,30070 -#define HAVE_STRICMP HAVE_STRICMP1315,30177 -#define HAVE_STRINGS_H HAVE_STRINGS_H1320,30290 -#define HAVE_STRLWR HAVE_STRLWR1335,30620 -#define HAVE_STRNCASECMP HAVE_STRNCASECMP1340,30733 -#define HAVE_STRNCAT HAVE_STRNCAT1345,30843 -#define HAVE_STRNCPY HAVE_STRNCPY1350,30949 -#define HAVE_STRNLEN HAVE_STRNLEN1355,31055 -#define HAVE_STRTOD HAVE_STRTOD1365,31277 -#define HAVE_SYSTEM HAVE_SYSTEM1385,31727 -#define HAVE_SYS_FILE_H HAVE_SYS_FILE_H1400,32080 -#define HAVE_SYS_PARAM_H HAVE_SYS_PARAM_H1415,32442 -#define HAVE_SYS_STAT_H HAVE_SYS_STAT_H1442,33068 -#define HAVE_SYS_TIME_H HAVE_SYS_TIME_H1462,33558 -#define HAVE_SYS_TYPES_H HAVE_SYS_TYPES_H1467,33678 -#define HAVE_TIME HAVE_TIME1487,34151 -#define HAVE_TIME_H HAVE_TIME_H1502,34464 -#define TIME_WITH_SYS_TIME_H TIME_WITH_SYS_TIME_H1506,34557 -#define HAVE_TMPNAM HAVE_TMPNAM1512,34676 -#define HAVE_UNISTD_H HAVE_UNISTD_H1527,35016 -#define HAVE_USLEEP HAVE_USLEEP1532,35121 -#define HAVE_UTIME HAVE_UTIME1537,35222 -#define HAVE_UTIME_H HAVE_UTIME_H1542,35329 -#define HAVE_VAR_TIMEZONE HAVE_VAR_TIMEZONE1547,35431 -#define HAVE_VSNPRINTF HAVE_VSNPRINTF1557,35649 -#define HAVE_WCHAR_H HAVE_WCHAR_H1567,35869 -#define HAVE_WCSDUP HAVE_WCSDUP1572,35973 -#define HAVE_WCSNLEN HAVE_WCSNLEN1577,36078 -#define HAVE_WCTYPE_H HAVE_WCTYPE_H1582,36189 -#define HAVE_WINDEF_H HAVE_WINDEF_H1587,36301 -#define HAVE_WINDOWS_H HAVE_WINDOWS_H1592,36415 -#define HAVE_WINSOCK2_H HAVE_WINSOCK2_H1597,36532 -#define HAVE__CHSIZE_S HAVE__CHSIZE_S1627,37187 -#define HOST_ALIAS HOST_ALIAS1642,37537 -#define MALLOC_T MALLOC_T1652,37689 -#define MAX_THREADS MAX_THREADS1657,37788 -#define MAX_WORKERS MAX_WORKERS1662,37877 -#define MSHIFTOFFS MSHIFTOFFS1672,38089 -#define MYDDAS_VERSION MYDDAS_VERSION1677,38162 -#define MinHeapSpace MinHeapSpace1682,38262 -#define MinStackSpace MinStackSpace1687,38368 -#define MinTrailSpace MinTrailSpace1692,38474 -#define DefHeapSpace DefHeapSpace1697,38575 -#define DefStackSpace DefStackSpace1702,38662 -#define DefTrailSpace DefTrailSpace1707,38752 -#define YAP_FULL_VERSION YAP_FULL_VERSION1742,39523 -#define YAP_GIT_HEAD YAP_GIT_HEAD1747,39684 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION1752,39797 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE1772,40191 -#define SIZEOF_FLOAT SIZEOF_FLOAT1777,40294 -#define SIZEOF_INT SIZEOF_INT1782,40392 -#define SIZEOF_INT_P SIZEOF_INT_P1787,40492 -#define SIZEOF_LONG SIZEOF_LONG1792,40592 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT1797,40699 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG1802,40812 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT1807,40934 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT1812,41052 -#define SIZEOF_SQLWCHAR SIZEOF_SQLWCHAR1817,41164 -#define SIZEOF_VOIDP SIZEOF_VOIDP1822,41269 -#define SIZEOF_VOID_P SIZEOF_VOID_P1827,41373 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T1832,41480 -#define SO_EXT SO_EXT1837,41552 -#define SO_PATH SO_PATH1843,41644 -#define SO_PATH SO_PATH1845,41693 -#define SO_PATH SO_PATH1847,41731 -#define SO_PATH SO_PATH1849,41771 -#define USE_GMP USE_GMP1865,42105 -#define USE_JUDY USE_JUDY1870,42204 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1910,43152 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN1914,43219 -#define YAP_ARCH YAP_ARCH1923,43331 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR1927,43385 -#define YAP_SHAREDIR YAP_SHAREDIR1931,43467 -#define YAP_STARTUP YAP_STARTUP1936,43600 -#define YAP_TIMESTAMP YAP_TIMESTAMP1941,43690 -#define YAP_TVERSION YAP_TVERSION1946,43789 -#define YAP_VAR_TIMEZONE YAP_VAR_TIMEZONE1951,43888 -#define YAP_COMPILED_AT YAP_COMPILED_AT1956,43968 -#define YAP_YAPLIB YAP_YAPLIB1961,44084 -#define YAP_BINDIR YAP_BINDIR1966,44169 -#define YAP_ROOTDIR YAP_ROOTDIR1971,44300 -#define YAP_LIBDIR YAP_LIBDIR1976,44427 -#define YAP_YAPJITLIB YAP_YAPJITLIB1981,44568 -#define MAXPATHLEN MAXPATHLEN2020,45347 -#define MAXPATHLEN MAXPATHLEN2022,45381 -#define USE_DL_MALLOC USE_DL_MALLOC2028,45453 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC2034,45598 -#define strlcpy(strlcpy2039,45663 -#define malloc(malloc2044,45748 -#define realloc(realloc2045,45781 -#define free(free2046,45823 -#define __WINDOWS__ __WINDOWS__2051,45895 -#define X_API X_API2067,46165 -#define X_APIX_API2069,46207 -#define O_APIO_API2071,46228 - -mxe/YapTermConfig.h,496 -#define YAP_TERM_CONFIG YAP_TERM_CONFIG4,26 -#define SIZEOF_INT_P SIZEOF_INT_P8,113 -#define SIZEOF_INT SIZEOF_INT13,211 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT18,319 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT23,431 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG28,544 -#define SIZEOF_FLOAT SIZEOF_FLOAT33,650 -#define SIZEOF_FLOAT SIZEOF_FLOAT38,752 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H43,867 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H48,983 -#define HAVE_STDINT_H HAVE_STDINT_H54,1097 - -NEWS,0 - -OPTYap/locks_alpha.h,1095 -typedef struct { unsigned long a[100]; } __dummy_lock_t;a20,1161 -typedef struct { unsigned long a[100]; } __dummy_lock_t;__anon391::a20,1161 -typedef struct { unsigned long a[100]; } __dummy_lock_t;__dummy_lock_t20,1161 -#define __dummy_lock(__dummy_lock21,1218 -#define mb(mb26,1315 -#define INIT_LOCK(INIT_LOCK29,1371 -#define TRY_LOCK(TRY_LOCK30,1419 -#define LOCK(LOCK31,1499 -#define IS_LOCKED(IS_LOCKED32,1570 -#define IS_UNLOCKED(IS_UNLOCKED33,1619 -#define UNLOCK(UNLOCK36,1721 - volatile int write_lock:1, read_counter:31;write_lock39,1792 - volatile int write_lock:1, read_counter:31;__anon392::write_lock39,1792 - volatile int write_lock:1, read_counter:31;read_counter39,1792 - volatile int write_lock:1, read_counter:31;__anon392::read_counter39,1792 -} /*__attribute__((aligned(32)))*/ rwlock_t;rwlock_t40,1837 -#define RW_LOCK_UNLOCKED RW_LOCK_UNLOCKED42,1883 -#define READ_LOCK(READ_LOCK44,1929 -#define READ_UNLOCK(READ_UNLOCK46,1968 -#define WRITE_LOCK(WRITE_LOCK48,2011 -#define WRITE_UNLOCK(WRITE_UNLOCK50,2053 -#define INIT_RWLOCK(INIT_RWLOCK52,2099 - -OPTYap/locks_alpha_funcs.h,436 -static __inline__ int _test_and_set_bit(unsigned long nr,_test_and_set_bit20,1161 -static __inline__ void _spin_lock(volatile void *lock)_spin_lock45,1655 -static inline void _write_lock(rwlock_t * lock)_write_lock68,2134 -static inline void _read_lock(rwlock_t * lock)_read_lock89,2473 -static inline void _write_unlock(rwlock_t * lock)_write_unlock111,2817 -static inline void _read_unlock(rwlock_t * lock)_read_unlock117,2907 - -OPTYap/locks_mips.h,946 -typedef struct { unsigned long a[100]; } __dummy_lock_t;a20,1161 -typedef struct { unsigned long a[100]; } __dummy_lock_t;__anon393::a20,1161 -typedef struct { unsigned long a[100]; } __dummy_lock_t;__dummy_lock_t20,1161 -#define __dummy_lock(__dummy_lock21,1218 -#define load_linked(load_linked23,1274 -#define store_conditional(store_conditional35,1896 -#define INIT_LOCK(INIT_LOCK47,2514 -#define TRY_LOCK(TRY_LOCK48,2562 -#define LOCK(LOCK49,2641 -#define IS_LOCKED(IS_LOCKED50,2713 -#define IS_UNLOCKED(IS_UNLOCKED51,2762 -#define UNLOCK(UNLOCK55,2851 - volatile unsigned int lock;lock58,2943 - volatile unsigned int lock;__anon394::lock58,2943 -} rwlock_t;rwlock_t59,2972 -#define RW_LOCK_UNLOCKED RW_LOCK_UNLOCKED61,2985 -#define READ_LOCK(READ_LOCK63,3028 -#define READ_UNLOCK(READ_UNLOCK65,3067 -#define WRITE_LOCK(WRITE_LOCK67,3110 -#define WRITE_UNLOCK(WRITE_UNLOCK69,3152 -#define INIT_RWLOCK(INIT_RWLOCK71,3198 - -OPTYap/locks_mips_funcs.h,502 -static __inline__ int test_and_set_bit(int nr, volatile void *addr)test_and_set_bit18,1112 -static inline void _spin_lock(__dummy_lock_t *lock)_spin_lock31,1344 -static inline void spin_unlock(__dummy_lock_t *lock)spin_unlock49,1694 -static inline void _read_lock(rwlock_t *rw)_read_lock61,1936 -static inline void _read_unlock(rwlock_t *rw)_read_unlock82,2468 -static inline void _write_lock(rwlock_t *rw)_write_lock98,2778 -static inline void _write_unlock(rwlock_t *rw)_write_unlock116,3125 - -OPTYap/locks_pthread.h,1429 -#define LOCK_PTHREAD_H LOCK_PTHREAD_H20,1137 -#define debugf debugf29,1282 -#define INIT_LOCK(INIT_LOCK31,1327 -#define DESTROY_LOCK(DESTROY_LOCK32,1396 -#define TRY_LOCK(TRY_LOCK33,1462 -#define LOCK(LOCK37,1570 -#define UNLOCK(UNLOCK38,1741 -#define LOCK(LOCK40,1922 -#define UNLOCK(UNLOCK41,1985 -xIS_LOCKED(pthread_mutex_t *LOCK_VAR) {xIS_LOCKED45,2077 -xIS_UNLOCKED(pthread_mutex_t *LOCK_VAR) {xIS_UNLOCKED53,2257 -#define IS_LOCKED(IS_LOCKED61,2421 -#define IS_UNLOCKED(IS_UNLOCKED62,2476 -#define INIT_RWLOCK(INIT_RWLOCK65,2535 -#define DESTROY_RWLOCK(DESTROY_RWLOCK66,2598 -#define READ_LOCK(READ_LOCK70,2706 -#define READ_UNLOCK(READ_UNLOCK74,2909 -#define WRITE_LOCK(WRITE_LOCK78,3109 -#define WRITE_UNLOCK(WRITE_UNLOCK82,3306 -#define READ_LOCK(READ_LOCK88,3515 -#define READ_UNLOCK(READ_UNLOCK89,3574 -#define WRITE_LOCK(WRITE_LOCK90,3633 -#define WRITE_UNLOCK(WRITE_UNLOCK91,3692 -#define TRUE_FUNC_WRITE_LOCK(TRUE_FUNC_WRITE_LOCK95,3760 -#define TRUE_FUNC_WRITE_UNLOCK(TRUE_FUNC_WRITE_UNLOCK96,3817 -#define MUTEX_LOCK(MUTEX_LOCK104,3930 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK107,4150 -#define MUTEX_UNLOCK(MUTEX_UNLOCK108,4217 -#define MUTEX_LOCK(MUTEX_LOCK112,4438 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK113,4498 -#define MUTEX_UNLOCK(MUTEX_UNLOCK114,4565 -#define MUTEX_LOCK(MUTEX_LOCK119,4644 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK120,4674 -#define MUTEX_UNLOCK(MUTEX_UNLOCK121,4706 - -OPTYap/locks_sparc.h,875 -#define swap_il(swap_il18,1112 -#define TRY_LOCK(TRY_LOCK26,1343 -#define INIT_LOCK(INIT_LOCK28,1399 -#define LOCK(LOCK29,1447 -#define IS_LOCKED(IS_LOCKED33,1684 -#define IS_UNLOCKED(IS_UNLOCKED34,1733 -#define UNLOCK(UNLOCK35,1782 -typedef struct { volatile unsigned int lock; } rwlock_t;lock42,1914 -typedef struct { volatile unsigned int lock; } rwlock_t;__anon395::lock42,1914 -typedef struct { volatile unsigned int lock; } rwlock_t;rwlock_t42,1914 -static __inline__ void _read_lock(rwlock_t *rw)_read_lock59,2509 -#define READ_LOCK(READ_LOCK72,2784 -static __inline__ void _read_unlock(rwlock_t *rw)_read_unlock76,2850 -#define READ_UNLOCK(READ_UNLOCK89,3136 -static __inline__ void write_lock(rwlock_t *rw)write_lock93,3204 -#define WRITE_LOCK(WRITE_LOCK106,3484 -#define WRITE_UNLOCK(WRITE_UNLOCK108,3525 -#define INIT_RWLOCK(INIT_RWLOCK110,3586 - -OPTYap/locks_x86.h,1788 - volatile unsigned int lock;lock19,1129 - volatile unsigned int lock;__anon396::lock19,1129 -} spinlock_t;spinlock_t20,1161 -spin_trylock(spinlock_t *lock)spin_trylock23,1194 -spin_unlock(spinlock_t *lock)spin_unlock34,1396 -#define INIT_LOCK(INIT_LOCK53,1823 -#define TRY_LOCK(TRY_LOCK54,1871 -#define LOCK(LOCK60,2004 -#define IS_LOCKED(IS_LOCKED67,2345 -#define IS_UNLOCKED(IS_UNLOCKED68,2394 -#define UNLOCK(UNLOCK69,2443 -#define LOCK(LOCK74,2670 -#define IS_LOCKED(IS_LOCKED78,2868 -#define IS_UNLOCKED(IS_UNLOCKED79,2917 -#define UNLOCK(UNLOCK80,2966 - volatile int lock;lock86,3131 - volatile int lock;__anon397::lock86,3131 -} rwlock_t;rwlock_t87,3154 -#define RWLOCK_OFFSET RWLOCK_OFFSET89,3167 -init_rwlock(rwlock_t *lock)init_rwlock92,3217 -read_unlock(rwlock_t *lock)read_unlock98,3289 -read_trylock(rwlock_t *lock)read_trylock108,3438 -read_is_locked(rwlock_t *lock)read_is_locked125,3757 -read_lock(rwlock_t *lock)read_lock131,3839 -write_unlock(rwlock_t *lock)write_unlock143,4088 -write_trylock(rwlock_t *lock)write_trylock152,4256 -write_is_locked(rwlock_t *lock)write_is_locked169,4590 -write_lock(rwlock_t *lock)write_lock175,4674 -#define INIT_RWLOCK(INIT_RWLOCK186,4907 -#define READ_LOCK(READ_LOCK187,4954 -#define READ_UNLOCK(READ_UNLOCK188,4997 -#define WRITE_LOCK(WRITE_LOCK189,5044 -#define WRITE_UNLOCK(WRITE_UNLOCK190,5089 -#define MUTEX_LOCK(MUTEX_LOCK199,5191 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK202,5417 -#define MUTEX_UNLOCK(MUTEX_UNLOCK203,5481 -#define MUTEX_LOCK(MUTEX_LOCK207,5710 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK208,5768 -#define MUTEX_UNLOCK(MUTEX_UNLOCK209,5832 -#define MUTEX_LOCK(MUTEX_LOCK214,5909 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK215,5939 -#define MUTEX_UNLOCK(MUTEX_UNLOCK216,5972 - -OPTYap/opt.config.h,5295 -#define MAX_TABLE_VARS MAX_TABLE_VARS23,1180 -#define TRIE_LOCK_BUCKETS TRIE_LOCK_BUCKETS24,1212 -#define THREADS_DIRECT_BUCKETS THREADS_DIRECT_BUCKETS25,1243 -#define THREADS_INDIRECT_BUCKETS THREADS_INDIRECT_BUCKETS26,1280 -#define THREADS_NUM_BUCKETS THREADS_NUM_BUCKETS27,1409 -#define TG_ANSWER_SLOTS TG_ANSWER_SLOTS28,1495 -#define MAX_BRANCH_DEPTH MAX_BRANCH_DEPTH29,1525 -#define MMAP_MEMORY_MAPPING_SCHEME MMAP_MEMORY_MAPPING_SCHEME34,1774 -#define BFZ_TRAIL_SCHEME BFZ_TRAIL_SCHEME45,2302 -#define THREADS_NO_SHARING THREADS_NO_SHARING51,2587 -#define SUBGOAL_TRIE_LOCK_AT_NODE_LEVEL SUBGOAL_TRIE_LOCK_AT_NODE_LEVEL73,3984 -#define ANSWER_TRIE_LOCK_AT_NODE_LEVEL ANSWER_TRIE_LOCK_AT_NODE_LEVEL78,4174 -#define GLOBAL_TRIE_LOCK_AT_NODE_LEVEL GLOBAL_TRIE_LOCK_AT_NODE_LEVEL82,4313 -#define TRIE_LOCK_USING_NODE_FIELD TRIE_LOCK_USING_NODE_FIELD92,4866 -#define MODE_DIRECTED_TABLING MODE_DIRECTED_TABLING98,5128 -#define TABLING_EARLY_COMPLETION TABLING_EARLY_COMPLETION103,5360 -#define TRIE_COMPACT_PAIRS TRIE_COMPACT_PAIRS108,5564 -#define TABLING_INNER_CUTS TABLING_INNER_CUTS133,6645 -#define TIMESTAMP_CHECK TIMESTAMP_CHECK138,6888 -#define TRIE_RATIONAL_TERMS TRIE_RATIONAL_TERMS154,7493 -#undef MMAP_MEMORY_MAPPING_SCHEMEMMAP_MEMORY_MAPPING_SCHEME165,7829 -#define SHM_MEMORY_MAPPING_SCHEMESHM_MEMORY_MAPPING_SCHEME166,7863 -#undef MMAP_MEMORY_MAPPING_SCHEMEMMAP_MEMORY_MAPPING_SCHEME175,8187 -#undef SHM_MEMORY_MAPPING_SCHEMESHM_MEMORY_MAPPING_SCHEME176,8221 -#undef DEBUG_YAPORDEBUG_YAPOR177,8254 -#undef BFZ_TRAIL_SCHEMEBFZ_TRAIL_SCHEME188,8541 -#undef BBREG_TRAIL_SCHEMEBBREG_TRAIL_SCHEME189,8565 -#undef MODE_DIRECTED_TABLINGMODE_DIRECTED_TABLING190,8591 -#undef TABLING_EARLY_COMPLETIONTABLING_EARLY_COMPLETION191,8620 -#undef TRIE_COMPACT_PAIRSTRIE_COMPACT_PAIRS192,8652 -#undef GLOBAL_TRIE_FOR_SUBTERMSGLOBAL_TRIE_FOR_SUBTERMS193,8678 -#undef INCOMPLETE_TABLINGINCOMPLETE_TABLING194,8710 -#undef LIMIT_TABLINGLIMIT_TABLING195,8736 -#undef DETERMINISTIC_TABLINGDETERMINISTIC_TABLING196,8757 -#undef DEBUG_TABLINGDEBUG_TABLING197,8786 -#undef SUBGOAL_TRIE_ALLOC_BEFORE_CHECKSUBGOAL_TRIE_ALLOC_BEFORE_CHECK215,9607 -#undef ANSWER_TRIE_ALLOC_BEFORE_CHECKANSWER_TRIE_ALLOC_BEFORE_CHECK231,10356 -#undef GLOBAL_TRIE_ALLOC_BEFORE_CHECKGLOBAL_TRIE_ALLOC_BEFORE_CHECK241,10758 -#undef SUBGOAL_TRIE_LOCK_AT_ENTRY_LEVELSUBGOAL_TRIE_LOCK_AT_ENTRY_LEVEL251,11148 -#undef SUBGOAL_TRIE_LOCK_AT_NODE_LEVELSUBGOAL_TRIE_LOCK_AT_NODE_LEVEL252,11188 -#undef SUBGOAL_TRIE_LOCK_AT_WRITE_LEVELSUBGOAL_TRIE_LOCK_AT_WRITE_LEVEL253,11227 -#undef SUBGOAL_TRIE_ALLOC_BEFORE_CHECKSUBGOAL_TRIE_ALLOC_BEFORE_CHECK254,11267 -#undef ANSWER_TRIE_LOCK_AT_ENTRY_LEVELANSWER_TRIE_LOCK_AT_ENTRY_LEVEL255,11306 -#undef ANSWER_TRIE_LOCK_AT_NODE_LEVELANSWER_TRIE_LOCK_AT_NODE_LEVEL256,11345 -#undef ANSWER_TRIE_LOCK_AT_WRITE_LEVELANSWER_TRIE_LOCK_AT_WRITE_LEVEL257,11383 -#undef ANSWER_TRIE_ALLOC_BEFORE_CHECKANSWER_TRIE_ALLOC_BEFORE_CHECK258,11422 -#undef GLOBAL_TRIE_LOCK_AT_NODE_LEVELGLOBAL_TRIE_LOCK_AT_NODE_LEVEL259,11460 -#undef GLOBAL_TRIE_LOCK_AT_WRITE_LEVELGLOBAL_TRIE_LOCK_AT_WRITE_LEVEL260,11498 -#undef GLOBAL_TRIE_ALLOC_BEFORE_CHECKGLOBAL_TRIE_ALLOC_BEFORE_CHECK261,11537 -#undef TRIE_LOCK_USING_NODE_FIELDTRIE_LOCK_USING_NODE_FIELD262,11575 -#undef TRIE_LOCK_USING_GLOBAL_ARRAYTRIE_LOCK_USING_GLOBAL_ARRAY263,11609 -#undef SUBGOAL_TRIE_LOCK_AT_ENTRY_LEVELSUBGOAL_TRIE_LOCK_AT_ENTRY_LEVEL289,12762 -#undef SUBGOAL_TRIE_LOCK_AT_NODE_LEVELSUBGOAL_TRIE_LOCK_AT_NODE_LEVEL290,12802 -#undef SUBGOAL_TRIE_LOCK_AT_WRITE_LEVELSUBGOAL_TRIE_LOCK_AT_WRITE_LEVEL291,12841 -#undef SUBGOAL_TRIE_ALLOC_BEFORE_CHECKSUBGOAL_TRIE_ALLOC_BEFORE_CHECK292,12881 -#undef ANSWER_TRIE_LOCK_AT_ENTRY_LEVELANSWER_TRIE_LOCK_AT_ENTRY_LEVEL295,12995 -#undef ANSWER_TRIE_LOCK_AT_NODE_LEVELANSWER_TRIE_LOCK_AT_NODE_LEVEL296,13034 -#undef ANSWER_TRIE_LOCK_AT_WRITE_LEVELANSWER_TRIE_LOCK_AT_WRITE_LEVEL297,13072 -#undef ANSWER_TRIE_ALLOC_BEFORE_CHECKANSWER_TRIE_ALLOC_BEFORE_CHECK298,13111 -#undef THREADS_NO_SHARINGTHREADS_NO_SHARING301,13191 -#undef THREADS_SUBGOAL_SHARINGTHREADS_SUBGOAL_SHARING302,13217 -#undef THREADS_FULL_SHARINGTHREADS_FULL_SHARING303,13248 -#undef THREADS_CONSUMER_SHARINGTHREADS_CONSUMER_SHARING304,13276 -#define SUBGOAL_TRIE_LOCK_USING_NODE_FIELD SUBGOAL_TRIE_LOCK_USING_NODE_FIELD309,13465 -#define ANSWER_TRIE_LOCK_USING_NODE_FIELD ANSWER_TRIE_LOCK_USING_NODE_FIELD312,13607 -#define GLOBAL_TRIE_LOCK_USING_NODE_FIELD GLOBAL_TRIE_LOCK_USING_NODE_FIELD315,13749 -#define SUBGOAL_TRIE_LOCK_USING_GLOBAL_ARRAY SUBGOAL_TRIE_LOCK_USING_GLOBAL_ARRAY319,13937 -#define ANSWER_TRIE_LOCK_USING_GLOBAL_ARRAY ANSWER_TRIE_LOCK_USING_GLOBAL_ARRAY322,14079 -#define GLOBAL_TRIE_LOCK_USING_GLOBAL_ARRAY GLOBAL_TRIE_LOCK_USING_GLOBAL_ARRAY325,14221 -#undef TABLING_INNER_CUTSTABLING_INNER_CUTS330,14324 -#undef TIMESTAMP_CHECKTIMESTAMP_CHECK331,14350 -#undef OUTPUT_THREADS_TABLINGOUTPUT_THREADS_TABLING335,14424 -#define DEBUG_OPTYAPDEBUG_OPTYAP339,14513 -#undef TABLING_EARLY_COMPLETIONTABLING_EARLY_COMPLETION347,14743 -#undef INCOMPLETE_TABLINGINCOMPLETE_TABLING351,14822 -#undef LIMIT_TABLINGLIMIT_TABLING352,14848 -#undef DETERMINISTIC_TABLINGDETERMINISTIC_TABLING353,14869 -#undef MODE_DIRECTED_TABLINGMODE_DIRECTED_TABLING357,14925 - -OPTYap/opt.init.c,639 -#define OPT_MAVAR_STATICOPT_MAVAR_STATIC20,1021 -#define STRUCTS_PER_PAGE(STRUCTS_PER_PAGE44,1472 -#define INIT_GLOBAL_PAGE_ENTRY(INIT_GLOBAL_PAGE_ENTRY48,1669 -#define INIT_LOCAL_PAGE_ENTRY(INIT_LOCAL_PAGE_ENTRY55,2180 -#define INIT_GLOBAL_PAGE_ENTRY(INIT_GLOBAL_PAGE_ENTRY62,2616 -#define INIT_LOCAL_PAGE_ENTRY(INIT_LOCAL_PAGE_ENTRY63,2687 -void Yap_init_global_optyap_data(int max_table_size, int n_workers,Yap_init_global_optyap_data70,2888 -void Yap_init_local_optyap_data(int wid) {Yap_init_local_optyap_data180,7104 -void Yap_init_root_frames(void) {Yap_init_root_frames244,9609 -void itos(int i, char *s) {itos286,10947 - -OPTYap/opt.macros.h,6207 -#define SHMMAX SHMMAX24,1218 -#define OPTYAP_ALIGN OPTYAP_ALIGN29,1446 -#define ALIGNMASK ALIGNMASK30,1488 -#define OPTYAP_ALIGN OPTYAP_ALIGN32,1558 -#define ALIGNMASK ALIGNMASK33,1600 -#define ALIGN ALIGN35,1652 -#define ALIGNMASK ALIGNMASK36,1719 -#define ADJUST_SIZE(ADJUST_SIZE39,1815 -#define ADJUST_SIZE_TO_PAGE(ADJUST_SIZE_TO_PAGE40,1886 -#define PAGE_HEADER(PAGE_HEADER41,1971 -#define STRUCT_NEXT(STRUCT_NEXT42,2083 -#define UPDATE_STATS(UPDATE_STATS43,2132 -#define LOCK_PAGE_ENTRY(LOCK_PAGE_ENTRY46,2195 -#define UNLOCK_PAGE_ENTRY(UNLOCK_PAGE_ENTRY47,2255 -#define LOCK_PAGE_ENTRY(LOCK_PAGE_ENTRY49,2323 -#define UNLOCK_PAGE_ENTRY(UNLOCK_PAGE_ENTRY50,2355 -#define ALLOC_BLOCK(ALLOC_BLOCK57,2701 -#define FREE_BLOCK(FREE_BLOCK60,2965 -#define ALLOC_BLOCK(ALLOC_BLOCK66,3361 -#define FREE_BLOCK(FREE_BLOCK77,4308 -#define INIT_BUCKETS(INIT_BUCKETS86,4970 -#define ALLOC_BUCKETS(ALLOC_BUCKETS92,5419 -#define FREE_BUCKETS(FREE_BUCKETS98,5894 -#define MOVE_PAGES(MOVE_PAGES104,6256 -#define DETACH_PAGES(DETACH_PAGES107,6485 -#define ATTACH_PAGES(ATTACH_PAGES111,6808 -#define GET_FREE_STRUCT(GET_FREE_STRUCT113,6953 -#define GET_NEXT_FREE_STRUCT(GET_NEXT_FREE_STRUCT118,7378 -#define PUT_FREE_STRUCT(PUT_FREE_STRUCT120,7534 -#define MOVE_PAGES(MOVE_PAGES129,8215 -#define DETACH_PAGES(DETACH_PAGES141,9223 -#define ATTACH_PAGES(ATTACH_PAGES148,9699 -#define GET_PAGE_FIRST_LEVEL(GET_PAGE_FIRST_LEVEL158,10343 -#define GET_ALLOC_PAGE_NEXT_LEVEL(GET_ALLOC_PAGE_NEXT_LEVEL159,10407 -#define GET_VOID_PAGE_NEXT_LEVEL(GET_VOID_PAGE_NEXT_LEVEL160,10470 -#define GET_ALLOC_PAGE(GET_ALLOC_PAGE162,10511 -#define GET_VOID_PAGE(GET_VOID_PAGE174,11355 -#define PUT_PAGE(PUT_PAGE185,12096 -#define PUT_VOID_PAGE(PUT_VOID_PAGE193,12707 -#define GET_FREE_PAGE(GET_FREE_PAGE199,13035 -#define PUT_FREE_PAGE(PUT_FREE_PAGE206,13531 -#define GET_FREE_PAGE(GET_FREE_PAGE209,13646 -#define PUT_FREE_PAGE(PUT_FREE_PAGE211,13775 -#define INIT_PAGE(INIT_PAGE215,13900 -#define ALLOC_SPACE(ALLOC_SPACE241,15996 -#define RECOVER_ALLOC_SPACE(RECOVER_ALLOC_SPACE259,17448 -#define RECOVER_ALLOC_SPACE(RECOVER_ALLOC_SPACE290,20071 -#define RECOVER_ALLOC_SPACE(RECOVER_ALLOC_SPACE300,20730 -#define TEST_GET_FREE_PAGE(TEST_GET_FREE_PAGE304,20819 -#define GET_FREE_STRUCT(GET_FREE_STRUCT319,21990 -#define GET_NEXT_FREE_STRUCT(GET_NEXT_FREE_STRUCT364,25780 -#define PUT_FREE_STRUCT(PUT_FREE_STRUCT384,27471 -#define ALLOC_STRUCT(ALLOC_STRUCT421,30634 -#define FREE_STRUCT(FREE_STRUCT423,30778 -#define ALLOC_STRUCT(ALLOC_STRUCT426,30911 -#define FREE_STRUCT(FREE_STRUCT428,31055 -#define ALLOC_NEXT_STRUCT(ALLOC_NEXT_STRUCT431,31190 -#define ALLOC_TABLE_ENTRY(ALLOC_TABLE_ENTRY434,31335 -#define FREE_TABLE_ENTRY(FREE_TABLE_ENTRY435,31428 -#define ALLOC_SUBGOAL_ENTRY(ALLOC_SUBGOAL_ENTRY437,31522 -#define FREE_SUBGOAL_ENTRY(FREE_SUBGOAL_ENTRY438,31616 -#define ALLOC_SUBGOAL_FRAME(ALLOC_SUBGOAL_FRAME440,31711 -#define FREE_SUBGOAL_FRAME(FREE_SUBGOAL_FRAME441,31804 -#define ALLOC_DEPENDENCY_FRAME(ALLOC_DEPENDENCY_FRAME443,31898 -#define FREE_DEPENDENCY_FRAME(FREE_DEPENDENCY_FRAME444,31995 -#define ALLOC_SUBGOAL_TRIE_NODE(ALLOC_SUBGOAL_TRIE_NODE446,32093 -#define FREE_SUBGOAL_TRIE_NODE(FREE_SUBGOAL_TRIE_NODE447,32192 -#define ALLOC_SUBGOAL_TRIE_HASH(ALLOC_SUBGOAL_TRIE_HASH449,32292 -#define FREE_SUBGOAL_TRIE_HASH(FREE_SUBGOAL_TRIE_HASH450,32391 -#define ALLOC_ANSWER_TRIE_NODE(ALLOC_ANSWER_TRIE_NODE453,32504 -#define ALLOC_ANSWER_TRIE_NODE(ALLOC_ANSWER_TRIE_NODE455,32640 -#define FREE_ANSWER_TRIE_NODE(FREE_ANSWER_TRIE_NODE457,32746 -#define ALLOC_ANSWER_TRIE_HASH(ALLOC_ANSWER_TRIE_HASH459,32846 -#define FREE_ANSWER_TRIE_HASH(FREE_ANSWER_TRIE_HASH460,32945 -#define ALLOC_ANSWER_REF_NODE(ALLOC_ANSWER_REF_NODE462,33045 -#define FREE_ANSWER_REF_NODE(FREE_ANSWER_REF_NODE463,33147 -#define ALLOC_GLOBAL_TRIE_NODE(ALLOC_GLOBAL_TRIE_NODE465,33250 -#define FREE_GLOBAL_TRIE_NODE(FREE_GLOBAL_TRIE_NODE466,33348 -#define ALLOC_GLOBAL_TRIE_HASH(ALLOC_GLOBAL_TRIE_HASH468,33447 -#define FREE_GLOBAL_TRIE_HASH(FREE_GLOBAL_TRIE_HASH469,33545 -#define ALLOC_OR_FRAME(ALLOC_OR_FRAME471,33644 -#define FREE_OR_FRAME(FREE_OR_FRAME472,33732 -#define ALLOC_QG_SOLUTION_FRAME(ALLOC_QG_SOLUTION_FRAME474,33821 -#define FREE_QG_SOLUTION_FRAME(FREE_QG_SOLUTION_FRAME475,33930 -#define ALLOC_QG_ANSWER_FRAME(ALLOC_QG_ANSWER_FRAME477,34040 -#define FREE_QG_ANSWER_FRAME(FREE_QG_ANSWER_FRAME478,34147 -#define ALLOC_SUSPENSION_FRAME(ALLOC_SUSPENSION_FRAME480,34255 -#define FREE_SUSPENSION_FRAME(FREE_SUSPENSION_FRAME481,34353 -#define ALLOC_TG_SOLUTION_FRAME(ALLOC_TG_SOLUTION_FRAME484,34557 -#define FREE_TG_SOLUTION_FRAME(FREE_TG_SOLUTION_FRAME485,34669 -#define ALLOC_TG_ANSWER_FRAME(ALLOC_TG_ANSWER_FRAME487,34782 -#define FREE_TG_ANSWER_FRAME(FREE_TG_ANSWER_FRAME488,34892 -#define BITMAP_empty(BITMAP_empty496,35228 -#define BITMAP_member(BITMAP_member497,35271 -#define BITMAP_alone(BITMAP_alone498,35329 -#define BITMAP_subset(BITMAP_subset499,35380 -#define BITMAP_same(BITMAP_same500,35438 -#define BITMAP_clear(BITMAP_clear501,35492 -#define BITMAP_and(BITMAP_and502,35541 -#define BITMAP_minus(BITMAP_minus503,35595 -#define BITMAP_insert(BITMAP_insert504,35650 -#define BITMAP_delete(BITMAP_delete505,35702 -#define BITMAP_copy(BITMAP_copy506,35757 -#define BITMAP_intersection(BITMAP_intersection507,35805 -#define BITMAP_difference(BITMAP_difference508,35867 -#define INFORMATION_MESSAGE(INFORMATION_MESSAGE516,36158 -#define ERROR_MESSAGE(ERROR_MESSAGE520,36270 -#define ERROR_MESSAGE(ERROR_MESSAGE523,36429 -#define TABLING_ERROR_CHECKING(TABLING_ERROR_CHECKING528,36603 -#define TABLING_ERROR_CHECKING(TABLING_ERROR_CHECKING531,36738 -#define YAPOR_ERROR_CHECKING(YAPOR_ERROR_CHECKING535,36832 -#define YAPOR_ERROR_CHECKING(YAPOR_ERROR_CHECKING538,36967 -#define OPTYAP_ERROR_CHECKING(OPTYAP_ERROR_CHECKING542,37058 -#define OPTYAP_ERROR_CHECKING(OPTYAP_ERROR_CHECKING545,37193 -#define INFO_THREADS(INFO_THREADS549,37296 -#define INFO_THREADS_MAIN_THREAD(INFO_THREADS_MAIN_THREAD551,37436 -#define INFO_THREADS(INFO_THREADS554,37570 -#define INFO_THREADS_MAIN_THREAD(INFO_THREADS_MAIN_THREAD555,37602 - -OPTYap/opt.mavar.h,527 -#define OPT_MAVAR_STATIC OPT_MAVAR_STATIC21,1107 -Yap_MAVAR_HASH(CELL *addr USES_REGS) {Yap_MAVAR_HASH30,1483 -Yap_ALLOC_NEW_MASPACE(USES_REGS1)Yap_ALLOC_NEW_MASPACE39,1724 -Yap_lookup_ma_var(CELL *addr USES_REGS) {Yap_lookup_ma_var47,1863 -Yap_NEW_MAHASH(ma_h_inner_struct *top USES_REGS) {Yap_NEW_MAHASH75,2620 -#define Yap_MAVAR_HASH(Yap_MAVAR_HASH88,2946 -#define Yap_ALLOC_NEW_MASPACE(Yap_ALLOC_NEW_MASPACE89,2975 -#define Yap_lookup_ma_var(Yap_lookup_ma_var90,3007 -#define Yap_NEW_MAHASH(Yap_NEW_MAHASH91,3039 - -OPTYap/opt.preds.c,5459 -struct page_statistics {page_statistics119,4608 - long pages_in_use; /* same as struct pages (opt.structs.h) */pages_in_use121,4657 - long pages_in_use; /* same as struct pages (opt.structs.h) */page_statistics::pages_in_use121,4657 - size_t structs_in_use; /* same as struct pages (opt.structs.h) */structs_in_use123,4769 - size_t structs_in_use; /* same as struct pages (opt.structs.h) */page_statistics::structs_in_use123,4769 - long bytes_in_use;bytes_in_use124,4837 - long bytes_in_use;page_statistics::bytes_in_use124,4837 -#define PgEnt_bytes_in_use(PgEnt_bytes_in_use127,4862 -#define CHECK_PAGE_FREE_STRUCTS(CHECK_PAGE_FREE_STRUCTS131,4961 -#define CHECK_PAGE_FREE_STRUCTS(CHECK_PAGE_FREE_STRUCTS149,6267 -#define INIT_PAGE_STATS(INIT_PAGE_STATS151,6342 -#define INCREMENT_PAGE_STATS(INCREMENT_PAGE_STATS154,6535 -#define INCREMENT_AUX_STATS(INCREMENT_AUX_STATS157,6751 -#define SHOW_PAGE_STATS_MSG(SHOW_PAGE_STATS_MSG160,6950 -#define SHOW_PAGE_STATS_ARGS(SHOW_PAGE_STATS_ARGS162,7108 -#define CHECK_PAGE_FREE_STRUCTS(CHECK_PAGE_FREE_STRUCTS166,7331 -#define INIT_PAGE_STATS(INIT_PAGE_STATS167,7379 -#define INCREMENT_PAGE_STATS(INCREMENT_PAGE_STATS168,7439 -#define INCREMENT_AUX_STATS(INCREMENT_AUX_STATS170,7574 -#define SHOW_PAGE_STATS_MSG(SHOW_PAGE_STATS_MSG172,7692 -#define SHOW_PAGE_STATS_ARGS(SHOW_PAGE_STATS_ARGS174,7846 -#define GET_ALL_PAGE_STATS(GET_ALL_PAGE_STATS179,8071 -#define GET_ALL_PAGE_STATS(GET_ALL_PAGE_STATS196,9327 -#define GET_PAGE_STATS(GET_PAGE_STATS201,9543 -#define SHOW_PAGE_STATS(SHOW_PAGE_STATS205,9860 -void Yap_init_optyap_preds(void) {Yap_init_optyap_preds218,10532 -void finish_yapor(void) {finish_yapor283,13464 -static Int p_freeze_choice_point(USES_REGS1) {p_freeze_choice_point295,13758 -static Int p_wake_choice_point(USES_REGS1) {p_wake_choice_point303,13951 -static Int p_abolish_frozen_choice_points_until(USES_REGS1) {p_abolish_frozen_choice_points_until310,14133 -static Int p_abolish_frozen_choice_points_all(USES_REGS1) {p_abolish_frozen_choice_points_all317,14341 -static Int p_table(USES_REGS1) {p_table322,14449 -static Int p_tabling_mode(USES_REGS1) {p_tabling_mode431,18436 -static Int p_abolish_table(USES_REGS1) {p_abolish_table523,21916 -static Int p_abolish_all_tables(USES_REGS1) {p_abolish_all_tables539,22311 -static Int p_show_tabled_predicates(USES_REGS1) {p_show_tabled_predicates550,22522 -static Int p_show_table(USES_REGS1) {p_show_table573,23087 -static Int p_show_all_tables(USES_REGS1) {p_show_all_tables596,23652 -static Int p_show_global_trie(USES_REGS1) {p_show_global_trie613,24024 -static Int p_show_statistics_table(USES_REGS1) {p_show_statistics_table625,24275 -static Int p_show_statistics_tabling(USES_REGS1) {p_show_statistics_tabling649,24883 -static Int p_show_statistics_global_trie(USES_REGS1) {p_show_statistics_global_trie716,27533 -static Int p_parallel_mode(USES_REGS1) {p_parallel_mode734,27936 -static Int p_yapor_start(USES_REGS1) {p_yapor_start764,28789 -static Int p_yapor_workers(USES_REGS1) {p_yapor_workers781,29323 -static Int p_worker(USES_REGS1) {p_worker789,29501 -static Int p_parallel_new_answer(USES_REGS1) {p_parallel_new_answer795,29610 -static Int p_parallel_get_answers(USES_REGS1) {p_parallel_get_answers814,30153 -static Int p_show_statistics_or(USES_REGS1) {p_show_statistics_or833,30737 -static Int p_yapor_workers(USES_REGS1) { return FALSE; }p_yapor_workers876,32292 -static Int p_show_statistics_opt(USES_REGS1) {p_show_statistics_opt884,32518 -static Int p_get_optyap_statistics(USES_REGS1) {p_get_optyap_statistics970,36062 -static inline realtime current_time(void) {current_time1119,41320 -#define TIME_RESOLUTION TIME_RESOLUTION1120,41364 -static inline struct page_statistics show_statistics_table_entries(FILE *out) {show_statistics_table_entries1134,41694 -show_statistics_subgoal_entries(FILE *out) {show_statistics_subgoal_entries1141,41997 -static inline struct page_statistics show_statistics_subgoal_frames(FILE *out) {show_statistics_subgoal_frames1147,42220 -show_statistics_dependency_frames(FILE *out) {show_statistics_dependency_frames1153,42453 -show_statistics_subgoal_trie_nodes(FILE *out) {show_statistics_subgoal_trie_nodes1159,42656 -show_statistics_subgoal_trie_hashes(FILE *out) {show_statistics_subgoal_trie_hashes1165,42862 -show_statistics_answer_trie_nodes(FILE *out) {show_statistics_answer_trie_nodes1171,43069 -show_statistics_answer_trie_hashes(FILE *out) {show_statistics_answer_trie_hashes1177,43274 -show_statistics_answer_ref_nodes(FILE *out) {show_statistics_answer_ref_nodes1184,43514 -show_statistics_global_trie_nodes(FILE *out) {show_statistics_global_trie_nodes1191,43755 -show_statistics_global_trie_hashes(FILE *out) {show_statistics_global_trie_hashes1197,43959 -static inline struct page_statistics show_statistics_or_frames(FILE *out) {show_statistics_or_frames1204,44161 -show_statistics_query_goal_solution_frames(FILE *out) {show_statistics_query_goal_solution_frames1210,44384 -show_statistics_query_goal_answer_frames(FILE *out) {show_statistics_query_goal_answer_frames1216,44608 -show_statistics_suspension_frames(FILE *out) {show_statistics_suspension_frames1224,44886 -show_statistics_table_subgoal_solution_frames(FILE *out) {show_statistics_table_subgoal_solution_frames1231,45116 -show_statistics_table_subgoal_answer_frames(FILE *out) {show_statistics_table_subgoal_answer_frames1237,45346 - -OPTYap/opt.proto.h,0 - -OPTYap/opt.structs.h,28605 -typedef double realtime;realtime18,962 -typedef unsigned long bitmap;bitmap19,987 -static inline choiceptr offset_to_cptr(Int node) {offset_to_cptr23,1112 -static inline Int cptr_to_offset(choiceptr node) {cptr_to_offset28,1212 -static inline choiceptr offset_to_cptr_with_null(Int node) {offset_to_cptr_with_null33,1314 -static inline Int cptr_to_offset_with_null(choiceptr node) {cptr_to_offset_with_null39,1455 -#define MAVARS_HASH_SIZE MAVARS_HASH_SIZE53,1869 -typedef struct ma_h_entry {ma_h_entry55,1899 - CELL* addr;addr56,1927 - CELL* addr;ma_h_entry::addr56,1927 - struct ma_h_entry *next;next57,1941 - struct ma_h_entry *next;ma_h_entry::next57,1941 -} ma_h_inner_struct;ma_h_inner_struct58,1968 - UInt timestmp;timestmp61,2007 - UInt timestmp;__anon398::timestmp61,2007 - struct ma_h_entry val;val62,2024 - struct ma_h_entry val;__anon398::val62,2024 -} ma_hash_entry;ma_hash_entry63,2049 -struct threads_dependency_frame {threads_dependency_frame73,2292 - lockvar lock;lock74,2326 - lockvar lock;threads_dependency_frame::lock74,2326 - working,working76,2351 - working,threads_dependency_frame::working76,2351 - idle,idle77,2364 - idle,threads_dependency_frame::idle77,2364 - completingcompleting78,2374 - completingthreads_dependency_frame::completing78,2374 - } state;state79,2389 - } state;threads_dependency_frame::state79,2389 - int terminator;terminator80,2400 - int terminator;threads_dependency_frame::terminator80,2400 - int next;next81,2418 - int next;threads_dependency_frame::next81,2418 -#define ThDepFr_lock(ThDepFr_lock85,2472 -#define ThDepFr_state(ThDepFr_state86,2514 -#define ThDepFr_terminator(ThDepFr_terminator87,2557 -#define ThDepFr_next(ThDepFr_next88,2605 -typedef struct page_header {page_header97,2759 - volatile size_t structs_in_use;structs_in_use98,2788 - volatile size_t structs_in_use;page_header::structs_in_use98,2788 - void *allocated_area;allocated_area99,2822 - void *allocated_area;page_header::allocated_area99,2822 - void *first_free_struct;first_free_struct100,2846 - void *first_free_struct;page_header::first_free_struct100,2846 - struct page_header *previous;previous101,2873 - struct page_header *previous;page_header::previous101,2873 - struct page_header *next;next102,2905 - struct page_header *next;page_header::next102,2905 -} *pg_hd_ptr;pg_hd_ptr103,2933 -#define PgHd_strs_in_use(PgHd_strs_in_use106,2978 -#define PgHd_alloc_area(PgHd_alloc_area107,3029 -#define PgHd_first_str(PgHd_first_str108,3080 -#define PgHd_previous(PgHd_previous109,3134 -#define PgHd_next(PgHd_next110,3179 -struct global_page_entry {global_page_entry118,3353 - lockvar lock;lock120,3419 - lockvar lock;global_page_entry::lock120,3419 - struct page_header *first_page;first_page123,3489 - struct page_header *first_page;global_page_entry::first_page123,3489 - struct page_header *last_page;last_page124,3523 - struct page_header *last_page;global_page_entry::last_page124,3523 - int structs_per_page;structs_per_page125,3556 - int structs_per_page;global_page_entry::structs_per_page125,3556 - volatile long pages_in_use;pages_in_use126,3580 - volatile long pages_in_use;global_page_entry::pages_in_use126,3580 - volatile size_t structs_in_use;structs_in_use128,3640 - volatile size_t structs_in_use;global_page_entry::structs_in_use128,3640 -struct local_page_entry {local_page_entry131,3678 - struct page_header *first_page;first_page133,3728 - struct page_header *first_page;local_page_entry::first_page133,3728 - struct page_header *last_page;last_page134,3762 - struct page_header *last_page;local_page_entry::last_page134,3762 - int structs_per_page;structs_per_page135,3795 - int structs_per_page;local_page_entry::structs_per_page135,3795 - size_t pages_in_use;pages_in_use137,3820 - size_t pages_in_use;local_page_entry::pages_in_use137,3820 - size_t structs_in_use;structs_in_use139,3873 - size_t structs_in_use;local_page_entry::structs_in_use139,3873 -#define PgEnt_lock(PgEnt_lock142,3902 -#define PgEnt_first(PgEnt_first143,3945 -#define PgEnt_last(PgEnt_last144,3994 -#define PgEnt_strs_per_page(PgEnt_strs_per_page145,4042 -#define PgEnt_pages_in_use(PgEnt_pages_in_use146,4097 -#define PgEnt_strs_in_use(PgEnt_strs_in_use147,4148 -#define PgEnt_strs_free(PgEnt_strs_free148,4201 -struct global_pages {global_pages156,4389 - struct global_page_entry alloc_pages;alloc_pages158,4435 - struct global_page_entry alloc_pages;global_pages::alloc_pages158,4435 - struct global_page_entry void_pages;void_pages159,4475 - struct global_page_entry void_pages;global_pages::void_pages159,4475 - struct global_page_entry table_entry_pages;table_entry_pages163,4560 - struct global_page_entry table_entry_pages;global_pages::table_entry_pages163,4560 - struct global_page_entry subgoal_entry_pages;subgoal_entry_pages165,4677 - struct global_page_entry subgoal_entry_pages;global_pages::subgoal_entry_pages165,4677 - struct global_page_entry subgoal_frame_pages;subgoal_frame_pages167,4732 - struct global_page_entry subgoal_frame_pages;global_pages::subgoal_frame_pages167,4732 - struct global_page_entry dependency_frame_pages;dependency_frame_pages168,4780 - struct global_page_entry dependency_frame_pages;global_pages::dependency_frame_pages168,4780 - struct global_page_entry subgoal_trie_node_pages;subgoal_trie_node_pages169,4831 - struct global_page_entry subgoal_trie_node_pages;global_pages::subgoal_trie_node_pages169,4831 - struct global_page_entry subgoal_trie_hash_pages;subgoal_trie_hash_pages170,4883 - struct global_page_entry subgoal_trie_hash_pages;global_pages::subgoal_trie_hash_pages170,4883 - struct global_page_entry answer_trie_node_pages;answer_trie_node_pages171,4935 - struct global_page_entry answer_trie_node_pages;global_pages::answer_trie_node_pages171,4935 - struct global_page_entry answer_trie_hash_pages;answer_trie_hash_pages172,4986 - struct global_page_entry answer_trie_hash_pages;global_pages::answer_trie_hash_pages172,4986 - struct global_page_entry answer_ref_node_pages;answer_ref_node_pages174,5071 - struct global_page_entry answer_ref_node_pages;global_pages::answer_ref_node_pages174,5071 - struct global_page_entry global_trie_node_pages;global_trie_node_pages176,5128 - struct global_page_entry global_trie_node_pages;global_pages::global_trie_node_pages176,5128 - struct global_page_entry global_trie_hash_pages;global_trie_hash_pages177,5179 - struct global_page_entry global_trie_hash_pages;global_pages::global_trie_hash_pages177,5179 - struct global_page_entry or_frame_pages;or_frame_pages181,5265 - struct global_page_entry or_frame_pages;global_pages::or_frame_pages181,5265 - struct global_page_entry query_goal_solution_frame_pages;query_goal_solution_frame_pages182,5308 - struct global_page_entry query_goal_solution_frame_pages;global_pages::query_goal_solution_frame_pages182,5308 - struct global_page_entry query_goal_answer_frame_pages;query_goal_answer_frame_pages183,5368 - struct global_page_entry query_goal_answer_frame_pages;global_pages::query_goal_answer_frame_pages183,5368 - struct global_page_entry suspension_frame_pages;suspension_frame_pages185,5441 - struct global_page_entry suspension_frame_pages;global_pages::suspension_frame_pages185,5441 - struct global_page_entry table_subgoal_solution_frame_pages;table_subgoal_solution_frame_pages188,5525 - struct global_page_entry table_subgoal_solution_frame_pages;global_pages::table_subgoal_solution_frame_pages188,5525 - struct global_page_entry table_subgoal_answer_frame_pages;table_subgoal_answer_frame_pages189,5588 - struct global_page_entry table_subgoal_answer_frame_pages;global_pages::table_subgoal_answer_frame_pages189,5588 -struct local_pages {local_pages201,5828 - struct answer_trie_node *next_free_answer_trie_node;next_free_answer_trie_node203,5862 - struct answer_trie_node *next_free_answer_trie_node;local_pages::next_free_answer_trie_node203,5862 -struct global_optyap_locks {global_optyap_locks234,6837 - lockvar bitmap_idle_workers;bitmap_idle_workers235,6866 - lockvar bitmap_idle_workers;global_optyap_locks::bitmap_idle_workers235,6866 - lockvar bitmap_root_cp_workers;bitmap_root_cp_workers236,6897 - lockvar bitmap_root_cp_workers;global_optyap_locks::bitmap_root_cp_workers236,6897 - lockvar bitmap_invisible_workers;bitmap_invisible_workers237,6931 - lockvar bitmap_invisible_workers;global_optyap_locks::bitmap_invisible_workers237,6931 - lockvar bitmap_requestable_workers;bitmap_requestable_workers238,6967 - lockvar bitmap_requestable_workers;global_optyap_locks::bitmap_requestable_workers238,6967 - lockvar bitmap_finished_workers;bitmap_finished_workers239,7005 - lockvar bitmap_finished_workers;global_optyap_locks::bitmap_finished_workers239,7005 - lockvar bitmap_pruning_workers;bitmap_pruning_workers241,7066 - lockvar bitmap_pruning_workers;global_optyap_locks::bitmap_pruning_workers241,7066 - int who_locked_heap;who_locked_heap244,7133 - int who_locked_heap;global_optyap_locks::who_locked_heap244,7133 - lockvar heap_access;heap_access245,7156 - lockvar heap_access;global_optyap_locks::heap_access245,7156 - lockvar alloc_block;alloc_block246,7179 - lockvar alloc_block;global_optyap_locks::alloc_block246,7179 -struct local_optyap_signals {local_optyap_signals257,7352 - lockvar lock;lock259,7432 - lockvar lock;local_optyap_signals::lock259,7432 - Q_idle = 0,Q_idle261,7466 - Q_idle = 0,local_optyap_signals::Q_idle261,7466 - trail = 1,trail262,7482 - trail = 1,local_optyap_signals::trail262,7482 - global = 2,global263,7498 - global = 2,local_optyap_signals::global263,7498 - local = 3,local264,7514 - local = 3,local_optyap_signals::local264,7514 - P_idle = 4P_idle265,7530 - P_idle = 4local_optyap_signals::P_idle265,7530 - } P_fase, Q_fase;P_fase266,7545 - } P_fase, Q_fase;local_optyap_signals::P_fase266,7545 - } P_fase, Q_fase;Q_fase266,7545 - } P_fase, Q_fase;local_optyap_signals::Q_fase266,7545 - no_sharing = 0, no_sharing269,7624 - no_sharing = 0, local_optyap_signals::no_sharing269,7624 - sharing = 1,sharing270,7647 - sharing = 1,local_optyap_signals::sharing270,7647 - nodes_shared = 2,nodes_shared271,7669 - nodes_shared = 2,local_optyap_signals::nodes_shared271,7669 - copy_done = 3,copy_done272,7691 - copy_done = 3,local_optyap_signals::copy_done272,7691 - worker_ready = 4worker_ready273,7713 - worker_ready = 4local_optyap_signals::worker_ready273,7713 - } reply_signal;reply_signal274,7734 - } reply_signal;local_optyap_signals::reply_signal274,7734 -struct global_optyap_data {global_optyap_data284,7883 - struct global_pages pages;pages286,7960 - struct global_pages pages;global_optyap_data::pages286,7960 - int scheduler_loop;scheduler_loop290,8030 - int scheduler_loop;global_optyap_data::scheduler_loop290,8030 - int delayed_release_load;delayed_release_load291,8052 - int delayed_release_load;global_optyap_data::delayed_release_load291,8052 - int number_workers;number_workers292,8080 - int number_workers;global_optyap_data::number_workers292,8080 - int worker_pid[MAX_WORKERS];worker_pid293,8102 - int worker_pid[MAX_WORKERS];global_optyap_data::worker_pid293,8102 - int master_worker;master_worker296,8153 - int master_worker;global_optyap_data::master_worker296,8153 - realtime execution_time;execution_time300,8244 - realtime execution_time;global_optyap_data::execution_time300,8244 - Int root_choice_point_offset;root_choice_point_offset302,8292 - Int root_choice_point_offset;global_optyap_data::root_choice_point_offset302,8292 - choiceptr root_choice_point;root_choice_point304,8331 - choiceptr root_choice_point;global_optyap_data::root_choice_point304,8331 - struct or_frame *root_or_frame;root_or_frame306,8369 - struct or_frame *root_or_frame;global_optyap_data::root_or_frame306,8369 - bitmap present_workers;present_workers307,8403 - bitmap present_workers;global_optyap_data::present_workers307,8403 - volatile bitmap idle_workers;idle_workers308,8429 - volatile bitmap idle_workers;global_optyap_data::idle_workers308,8429 - volatile bitmap root_cp_workers;root_cp_workers309,8461 - volatile bitmap root_cp_workers;global_optyap_data::root_cp_workers309,8461 - volatile bitmap invisible_workers;invisible_workers310,8496 - volatile bitmap invisible_workers;global_optyap_data::invisible_workers310,8496 - volatile bitmap requestable_workers;requestable_workers311,8533 - volatile bitmap requestable_workers;global_optyap_data::requestable_workers311,8533 - volatile bitmap finished_workers;finished_workers312,8572 - volatile bitmap finished_workers;global_optyap_data::finished_workers312,8572 - volatile bitmap pruning_workers;pruning_workers314,8634 - volatile bitmap pruning_workers;global_optyap_data::pruning_workers314,8634 - struct global_optyap_locks locks;locks316,8701 - struct global_optyap_locks locks;global_optyap_data::locks316,8701 - volatile unsigned int branch[MAX_WORKERS][MAX_BRANCH_DEPTH];branch317,8737 - volatile unsigned int branch[MAX_WORKERS][MAX_BRANCH_DEPTH];global_optyap_data::branch317,8737 - volatile char parallel_mode; /* PARALLEL_MODE_OFF / PARALLEL_MODE_ON / PARALLEL_MODE_RUNNING */parallel_mode318,8800 - volatile char parallel_mode; /* PARALLEL_MODE_OFF / PARALLEL_MODE_ON / PARALLEL_MODE_RUNNING */global_optyap_data::parallel_mode318,8800 - struct global_trie_node *root_global_trie;root_global_trie323,8973 - struct global_trie_node *root_global_trie;global_optyap_data::root_global_trie323,8973 - struct table_entry *root_table_entry;root_table_entry324,9018 - struct table_entry *root_table_entry;global_optyap_data::root_table_entry324,9018 - int max_pages;max_pages326,9079 - int max_pages;global_optyap_data::max_pages326,9079 - struct subgoal_frame *first_subgoal_frame;first_subgoal_frame327,9096 - struct subgoal_frame *first_subgoal_frame;global_optyap_data::first_subgoal_frame327,9096 - struct subgoal_frame *last_subgoal_frame;last_subgoal_frame328,9141 - struct subgoal_frame *last_subgoal_frame;global_optyap_data::last_subgoal_frame328,9141 - struct subgoal_frame *check_subgoal_frame;check_subgoal_frame329,9185 - struct subgoal_frame *check_subgoal_frame;global_optyap_data::check_subgoal_frame329,9185 - struct dependency_frame *root_dependency_frame;root_dependency_frame332,9270 - struct dependency_frame *root_dependency_frame;global_optyap_data::root_dependency_frame332,9270 - struct threads_dependency_frame threads_dependency_frame[MAX_THREADS];threads_dependency_frame335,9371 - struct threads_dependency_frame threads_dependency_frame[MAX_THREADS];global_optyap_data::threads_dependency_frame335,9371 - CELL table_var_enumerator[MAX_TABLE_VARS];table_var_enumerator337,9480 - CELL table_var_enumerator[MAX_TABLE_VARS];global_optyap_data::table_var_enumerator337,9480 - lockvar trie_locks[TRIE_LOCK_BUCKETS];trie_locks339,9561 - lockvar trie_locks[TRIE_LOCK_BUCKETS];global_optyap_data::trie_locks339,9561 - long timestamp;timestamp342,9667 - long timestamp;global_optyap_data::timestamp342,9667 -#define GLOBAL_pages_alloc GLOBAL_pages_alloc347,9739 -#define GLOBAL_pages_void GLOBAL_pages_void348,9826 -#define GLOBAL_pages_tab_ent GLOBAL_pages_tab_ent349,9912 -#define GLOBAL_pages_sg_ent GLOBAL_pages_sg_ent350,10005 -#define GLOBAL_pages_sg_fr GLOBAL_pages_sg_fr351,10100 -#define GLOBAL_pages_dep_fr GLOBAL_pages_dep_fr352,10195 -#define GLOBAL_pages_sg_node GLOBAL_pages_sg_node353,10293 -#define GLOBAL_pages_sg_hash GLOBAL_pages_sg_hash354,10392 -#define GLOBAL_pages_ans_node GLOBAL_pages_ans_node355,10491 -#define GLOBAL_pages_ans_hash GLOBAL_pages_ans_hash356,10589 -#define GLOBAL_pages_ans_ref_node GLOBAL_pages_ans_ref_node357,10687 -#define GLOBAL_pages_gt_node GLOBAL_pages_gt_node358,10784 -#define GLOBAL_pages_gt_hash GLOBAL_pages_gt_hash359,10882 -#define GLOBAL_pages_or_fr GLOBAL_pages_or_fr360,10980 -#define GLOBAL_pages_qg_sol_fr GLOBAL_pages_qg_sol_fr361,11070 -#define GLOBAL_pages_qg_ans_fr GLOBAL_pages_qg_ans_fr362,11177 -#define GLOBAL_pages_susp_fr GLOBAL_pages_susp_fr363,11282 -#define GLOBAL_pages_tg_sol_fr GLOBAL_pages_tg_sol_fr364,11380 -#define GLOBAL_pages_tg_ans_fr GLOBAL_pages_tg_ans_fr365,11490 -#define GLOBAL_scheduler_loop GLOBAL_scheduler_loop366,11598 -#define GLOBAL_delayed_release_load GLOBAL_delayed_release_load367,11682 -#define GLOBAL_number_workers GLOBAL_number_workers368,11772 -#define GLOBAL_worker_pid(GLOBAL_worker_pid369,11856 -#define GLOBAL_master_worker GLOBAL_master_worker370,11944 -#define GLOBAL_execution_time GLOBAL_execution_time371,12027 -#define Get_GLOBAL_root_cp(Get_GLOBAL_root_cp373,12132 -#define Set_GLOBAL_root_cp(Set_GLOBAL_root_cp374,12237 -#define GLOBAL_root_cp GLOBAL_root_cp376,12360 -#define Get_GLOBAL_root_cp(Get_GLOBAL_root_cp377,12447 -#define Set_GLOBAL_root_cp(Set_GLOBAL_root_cp378,12534 -#define GLOBAL_root_or_fr GLOBAL_root_or_fr380,12637 -#define GLOBAL_bm_present_workers GLOBAL_bm_present_workers381,12720 -#define GLOBAL_bm_idle_workers GLOBAL_bm_idle_workers382,12805 -#define GLOBAL_bm_root_cp_workers GLOBAL_bm_root_cp_workers383,12887 -#define GLOBAL_bm_invisible_workers GLOBAL_bm_invisible_workers384,12972 -#define GLOBAL_bm_requestable_workers GLOBAL_bm_requestable_workers385,13059 -#define GLOBAL_bm_finished_workers GLOBAL_bm_finished_workers386,13148 -#define GLOBAL_bm_pruning_workers GLOBAL_bm_pruning_workers387,13234 -#define GLOBAL_locks_bm_idle_workers GLOBAL_locks_bm_idle_workers388,13319 -#define GLOBAL_locks_bm_root_cp_workers GLOBAL_locks_bm_root_cp_workers389,13414 -#define GLOBAL_locks_bm_invisible_workers GLOBAL_locks_bm_invisible_workers390,13512 -#define GLOBAL_locks_bm_requestable_workers GLOBAL_locks_bm_requestable_workers391,13612 -#define GLOBAL_locks_bm_finished_workers GLOBAL_locks_bm_finished_workers392,13714 -#define GLOBAL_locks_bm_pruning_workers GLOBAL_locks_bm_pruning_workers393,13813 -#define GLOBAL_locks_who_locked_heap GLOBAL_locks_who_locked_heap394,13911 -#define GLOBAL_locks_heap_access GLOBAL_locks_heap_access395,14002 -#define GLOBAL_locks_alloc_block GLOBAL_locks_alloc_block396,14089 -#define GLOBAL_branch(GLOBAL_branch397,14176 -#define GLOBAL_parallel_mode GLOBAL_parallel_mode398,14267 -#define GLOBAL_root_gt GLOBAL_root_gt399,14350 -#define GLOBAL_root_tab_ent GLOBAL_root_tab_ent400,14436 -#define GLOBAL_max_pages GLOBAL_max_pages401,14522 -#define GLOBAL_first_sg_fr GLOBAL_first_sg_fr402,14601 -#define GLOBAL_last_sg_fr GLOBAL_last_sg_fr403,14690 -#define GLOBAL_check_sg_fr GLOBAL_check_sg_fr404,14778 -#define GLOBAL_root_dep_fr GLOBAL_root_dep_fr405,14867 -#define GLOBAL_th_dep_fr(GLOBAL_th_dep_fr406,14958 -#define GLOBAL_table_var_enumerator(GLOBAL_table_var_enumerator407,15057 -#define GLOBAL_table_var_enumerator_addr(GLOBAL_table_var_enumerator_addr408,15154 -#define GLOBAL_trie_locks(GLOBAL_trie_locks409,15254 -#define GLOBAL_timestamp GLOBAL_timestamp410,15341 -struct local_optyap_data {local_optyap_data418,15526 - struct local_pages pages;pages421,15662 - struct local_pages pages;local_optyap_data::pages421,15662 - lockvar lock;lock425,15747 - lockvar lock;local_optyap_data::lock425,15747 - volatile int load;load427,15808 - volatile int load;local_optyap_data::load427,15808 - Int top_choice_point_offset;top_choice_point_offset429,15850 - Int top_choice_point_offset;local_optyap_data::top_choice_point_offset429,15850 - choiceptr top_choice_point;top_choice_point431,15887 - choiceptr top_choice_point;local_optyap_data::top_choice_point431,15887 - struct or_frame *top_or_frame;top_or_frame433,15944 - struct or_frame *top_or_frame;local_optyap_data::top_or_frame433,15944 - Int prune_request_offset;prune_request_offset435,15998 - Int prune_request_offset;local_optyap_data::prune_request_offset435,15998 - choiceptr prune_request;prune_request437,16032 - choiceptr prune_request;local_optyap_data::prune_request437,16032 - volatile int share_request;share_request439,16086 - volatile int share_request;local_optyap_data::share_request439,16086 - struct local_optyap_signals share_signals;share_signals440,16116 - struct local_optyap_signals share_signals;local_optyap_data::share_signals440,16116 - CELL start;start442,16181 - CELL start;local_optyap_data::__anon402::start442,16181 - CELL end;end443,16197 - CELL end;local_optyap_data::__anon402::end443,16197 - } global_copy, local_copy, trail_copy;global_copy444,16211 - } global_copy, local_copy, trail_copy;local_optyap_data::global_copy444,16211 - } global_copy, local_copy, trail_copy;local_copy444,16211 - } global_copy, local_copy, trail_copy;local_optyap_data::local_copy444,16211 - } global_copy, local_copy, trail_copy;trail_copy444,16211 - } global_copy, local_copy, trail_copy;local_optyap_data::trail_copy444,16211 - struct subgoal_frame *top_subgoal_frame;top_subgoal_frame449,16325 - struct subgoal_frame *top_subgoal_frame;local_optyap_data::top_subgoal_frame449,16325 - struct dependency_frame *top_dependency_frame;top_dependency_frame450,16368 - struct dependency_frame *top_dependency_frame;local_optyap_data::top_dependency_frame450,16368 - choiceptr bottom_pruning_scope;bottom_pruning_scope452,16443 - choiceptr bottom_pruning_scope;local_optyap_data::bottom_pruning_scope452,16443 - Int top_choice_point_on_stack_offset;top_choice_point_on_stack_offset456,16543 - Int top_choice_point_on_stack_offset;local_optyap_data::top_choice_point_on_stack_offset456,16543 - choiceptr top_choice_point_on_stack;top_choice_point_on_stack458,16589 - choiceptr top_choice_point_on_stack;local_optyap_data::top_choice_point_on_stack458,16589 - struct or_frame *top_or_frame_with_suspensions;top_or_frame_with_suspensions460,16655 - struct or_frame *top_or_frame_with_suspensions;local_optyap_data::top_or_frame_with_suspensions460,16655 - FILE *thread_output;thread_output463,16754 - FILE *thread_output;local_optyap_data::thread_output463,16754 - UInt ma_timestamp;ma_timestamp468,16920 - UInt ma_timestamp;local_optyap_data::ma_timestamp468,16920 - ma_h_inner_struct *ma_h_top;ma_h_top469,16941 - ma_h_inner_struct *ma_h_top;local_optyap_data::ma_h_top469,16941 - ma_hash_entry ma_hash_table[MAVARS_HASH_SIZE];ma_hash_table470,16972 - ma_hash_entry ma_hash_table[MAVARS_HASH_SIZE];local_optyap_data::ma_hash_table470,16972 -#define LOCAL_pages_void LOCAL_pages_void474,17092 -#define LOCAL_pages_tab_ent LOCAL_pages_tab_ent475,17172 -#define LOCAL_pages_sg_ent LOCAL_pages_sg_ent476,17259 -#define LOCAL_pages_sg_fr LOCAL_pages_sg_fr477,17348 -#define LOCAL_pages_dep_fr LOCAL_pages_dep_fr478,17437 -#define LOCAL_pages_sg_node LOCAL_pages_sg_node479,17529 -#define LOCAL_pages_sg_hash LOCAL_pages_sg_hash480,17622 -#define LOCAL_pages_ans_node LOCAL_pages_ans_node481,17715 -#define LOCAL_pages_ans_hash LOCAL_pages_ans_hash482,17807 -#define LOCAL_pages_ans_ref_node LOCAL_pages_ans_ref_node483,17899 -#define LOCAL_pages_gt_node LOCAL_pages_gt_node484,17990 -#define LOCAL_pages_gt_hash LOCAL_pages_gt_hash485,18082 -#define LOCAL_next_free_ans_node LOCAL_next_free_ans_node486,18174 -#define LOCAL_lock LOCAL_lock487,18270 -#define LOCAL_load LOCAL_load488,18338 -#define Get_LOCAL_top_cp(Get_LOCAL_top_cp490,18427 -#define Set_LOCAL_top_cp(Set_LOCAL_top_cp491,18528 -#define LOCAL_top_cp LOCAL_top_cp493,18644 -#define Get_LOCAL_top_cp(Get_LOCAL_top_cp494,18724 -#define Set_LOCAL_top_cp(Set_LOCAL_top_cp495,18792 -#define LOCAL_top_or_fr LOCAL_top_or_fr497,18904 -#define Get_LOCAL_prune_request(Get_LOCAL_prune_request499,19001 -#define Set_LOCAL_prune_request(Set_LOCAL_prune_request500,19103 -#define LOCAL_prune_request LOCAL_prune_request502,19226 -#define Get_LOCAL_prune_request(Get_LOCAL_prune_request503,19303 -#define Set_LOCAL_prune_request(Set_LOCAL_prune_request504,19380 -#define LOCAL_share_request LOCAL_share_request506,19490 -#define LOCAL_reply_signal LOCAL_reply_signal507,19567 -#define LOCAL_p_fase_signal LOCAL_p_fase_signal508,19657 -#define LOCAL_q_fase_signal LOCAL_q_fase_signal509,19741 -#define LOCAL_lock_signals LOCAL_lock_signals510,19825 -#define LOCAL_start_global_copy LOCAL_start_global_copy511,19907 -#define LOCAL_end_global_copy LOCAL_end_global_copy512,19988 -#define LOCAL_start_local_copy LOCAL_start_local_copy513,20067 -#define LOCAL_end_local_copy LOCAL_end_local_copy514,20147 -#define LOCAL_start_trail_copy LOCAL_start_trail_copy515,20225 -#define LOCAL_end_trail_copy LOCAL_end_trail_copy516,20305 -#define LOCAL_top_sg_fr LOCAL_top_sg_fr517,20383 -#define LOCAL_top_dep_fr LOCAL_top_dep_fr518,20464 -#define LOCAL_pruning_scope LOCAL_pruning_scope519,20548 -#define Get_LOCAL_top_cp_on_stack(Get_LOCAL_top_cp_on_stack521,20653 -#define Set_LOCAL_top_cp_on_stack(Set_LOCAL_top_cp_on_stack522,20763 -#define LOCAL_top_cp_on_stack LOCAL_top_cp_on_stack524,20888 -#define Get_LOCAL_top_cp_on_stack(Get_LOCAL_top_cp_on_stack525,20977 -#define Set_LOCAL_top_cp_on_stack(Set_LOCAL_top_cp_on_stack526,21062 -#define LOCAL_top_susp_or_fr LOCAL_top_susp_or_fr528,21184 -#define LOCAL_thread_output LOCAL_thread_output529,21277 -#define LOCAL_ma_timestamp LOCAL_ma_timestamp530,21354 -#define LOCAL_ma_h_top LOCAL_ma_h_top531,21430 -#define LOCAL_ma_hash_table LOCAL_ma_hash_table532,21502 -#define REMOTE_pages_void(REMOTE_pages_void534,21581 -#define REMOTE_pages_tab_ent(REMOTE_pages_tab_ent535,21673 -#define REMOTE_pages_sg_ent(REMOTE_pages_sg_ent536,21772 -#define REMOTE_pages_sg_fr(REMOTE_pages_sg_fr537,21873 -#define REMOTE_pages_dep_fr(REMOTE_pages_dep_fr538,21974 -#define REMOTE_pages_sg_node(REMOTE_pages_sg_node539,22078 -#define REMOTE_pages_sg_hash(REMOTE_pages_sg_hash540,22183 -#define REMOTE_pages_ans_node(REMOTE_pages_ans_node541,22288 -#define REMOTE_pages_ans_hash(REMOTE_pages_ans_hash542,22392 -#define REMOTE_pages_ans_ref_node(REMOTE_pages_ans_ref_node543,22496 -#define REMOTE_pages_gt_node(REMOTE_pages_gt_node544,22599 -#define REMOTE_pages_gt_hash(REMOTE_pages_gt_hash545,22703 -#define REMOTE_next_free_ans_node(REMOTE_next_free_ans_node546,22807 -#define REMOTE_lock(REMOTE_lock547,22915 -#define REMOTE_load(REMOTE_load548,22995 -#define REMOTE_top_cp(REMOTE_top_cp550,23096 -#define Set_REMOTE_top_cp(Set_REMOTE_top_cp551,23209 -#define REMOTE_top_cp(REMOTE_top_cp553,23337 -#define Set_REMOTE_top_cp(Set_REMOTE_top_cp554,23429 -#define REMOTE_top_or_fr(REMOTE_top_or_fr556,23557 -#define Get_REMOTE_prune_request(Get_REMOTE_prune_request558,23666 -#define Set_REMOTE_prune_request(Set_REMOTE_prune_request559,23786 -#define REMOTE_prune_request(REMOTE_prune_request561,23919 -#define Get_REMOTE_prune_request(Get_REMOTE_prune_request562,24008 -#define Set_REMOTE_prune_request(Set_REMOTE_prune_request563,24097 -#define REMOTE_share_request(REMOTE_share_request565,24218 -#define REMOTE_reply_signal(REMOTE_reply_signal566,24307 -#define REMOTE_p_fase_signal(REMOTE_p_fase_signal567,24409 -#define REMOTE_q_fase_signal(REMOTE_q_fase_signal568,24505 -#define REMOTE_lock_signals(REMOTE_lock_signals569,24601 -#define REMOTE_start_global_copy(REMOTE_start_global_copy570,24695 -#define REMOTE_end_global_copy(REMOTE_end_global_copy571,24788 -#define REMOTE_start_local_copy(REMOTE_start_local_copy572,24879 -#define REMOTE_end_local_copy(REMOTE_end_local_copy573,24971 -#define REMOTE_start_trail_copy(REMOTE_start_trail_copy574,25061 -#define REMOTE_end_trail_copy(REMOTE_end_trail_copy575,25153 -#define REMOTE_top_sg_fr(REMOTE_top_sg_fr576,25243 -#define REMOTE_top_dep_fr(REMOTE_top_dep_fr577,25336 -#define REMOTE_pruning_scope(REMOTE_pruning_scope578,25432 -#define REMOTE_top_cp_on_stack(REMOTE_top_cp_on_stack580,25549 -#define Set_REMOTE_top_cp_on_stack(Set_REMOTE_top_cp_on_stack581,25671 -#define REMOTE_top_cp_on_stack(REMOTE_top_cp_on_stack583,25808 -#define Set_REMOTE_top_cp_on_stack(Set_REMOTE_top_cp_on_stack584,25909 -#define REMOTE_top_susp_or_fr(REMOTE_top_susp_or_fr586,26046 -#define REMOTE_thread_output(REMOTE_thread_output587,26151 -#define REMOTE_ma_timestamp(REMOTE_ma_timestamp588,26240 -#define REMOTE_ma_h_top(REMOTE_ma_h_top589,26328 -#define REMOTE_ma_hash_table(REMOTE_ma_hash_table590,26412 - -OPTYap/or.copy_engine.c,816 -#define INCREMENTAL_COPY INCREMENTAL_COPY46,1494 -#define COMPUTE_SEGMENTS_TO_COPY_TO(COMPUTE_SEGMENTS_TO_COPY_TO48,1542 -#define COMPUTE_SEGMENTS_TO_COPY_TO(COMPUTE_SEGMENTS_TO_COPY_TO59,2259 -#define P_COPY_GLOBAL_TO(P_COPY_GLOBAL_TO68,2767 -#define Q_COPY_GLOBAL_FROM(Q_COPY_GLOBAL_FROM72,3108 -#define P_COPY_LOCAL_TO(P_COPY_LOCAL_TO77,3442 -#define Q_COPY_LOCAL_FROM(Q_COPY_LOCAL_FROM81,3781 -#define P_COPY_TRAIL_TO(P_COPY_TRAIL_TO86,4113 -#define Q_COPY_TRAIL_FROM(Q_COPY_TRAIL_FROM90,4452 -void make_root_choice_point(void) {make_root_choice_point101,4886 -void free_root_choice_point(void) {free_root_choice_point126,5545 -int p_share_work(void) {p_share_work136,5777 -int q_share_work(int worker_p) {q_share_work201,7951 -void share_private_nodes(int worker_q) {share_private_nodes375,13489 - -OPTYap/or.cow_engine.c,354 -void PUT_BUSY(int worker_num) {PUT_BUSY47,1476 -void make_root_choice_point(void) {make_root_choice_point60,1754 -void free_root_choice_point(void) {free_root_choice_point78,2213 -int p_share_work(void) {p_share_work85,2335 -int q_share_work(int worker_p) {q_share_work119,3319 -void share_private_nodes(int worker_q) {share_private_nodes161,4648 - -OPTYap/or.cut.c,90 -void prune_shared_branch(choiceptr prune_cp, int* pend_ltt) {prune_shared_branch33,1221 - -OPTYap/or.insts.h,209 - PUT_OUT_ROOT_NODE(worker_id);worker_id27,1387 - LOCK_OR_FRAME(LOCAL_top_or_fr);LOCAL_top_or_fr81,3291 - LOCK_OR_FRAME(LOCAL_top_or_fr);LOCAL_top_or_fr97,3736 - PREFETCH_OP(PREG);PREG114,4150 - -OPTYap/or.macros.h,4143 -#define OR_MACROS_HOR_MACROS_H15,909 -#define YAMOP_CUT_FLAG YAMOP_CUT_FLAG62,2492 -#define YAMOP_SEQ_FLAG YAMOP_SEQ_FLAG63,2525 -#define YAMOP_FLAGS_BITS YAMOP_FLAGS_BITS64,2558 -#define YAMOP_LTT_BITS YAMOP_LTT_BITS65,2591 -#define YAMOP_CUT_FLAG YAMOP_CUT_FLAG67,2646 -#define YAMOP_SEQ_FLAG YAMOP_SEQ_FLAG68,2683 -#define YAMOP_FLAGS_BITS YAMOP_FLAGS_BITS69,2720 -#define YAMOP_LTT_BITS YAMOP_LTT_BITS70,2757 -#define YAMOP_CUT_FLAG YAMOP_CUT_FLAG72,2816 -#define YAMOP_SEQ_FLAG YAMOP_SEQ_FLAG73,2861 -#define YAMOP_FLAGS_BITS YAMOP_FLAGS_BITS74,2906 -#define YAMOP_LTT_BITS YAMOP_LTT_BITS75,2951 -#define YAMOP_CUT_FLAG YAMOP_CUT_FLAG77,3002 -#define YAMOP_SEQ_FLAG YAMOP_SEQ_FLAG78,3062 -#define YAMOP_FLAGS_BITS YAMOP_FLAGS_BITS79,3122 -#define YAMOP_LTT_BITS YAMOP_LTT_BITS80,3182 -#define YAMOP_OR_ARG(YAMOP_OR_ARG83,3267 -#define YAMOP_LTT(YAMOP_LTT84,3329 -#define YAMOP_SEQ(YAMOP_SEQ85,3410 -#define YAMOP_CUT(YAMOP_CUT86,3491 -#define YAMOP_FLAGS(YAMOP_FLAGS87,3572 -#define INIT_YAMOP_LTT(INIT_YAMOP_LTT89,3656 -#define PUT_YAMOP_LTT(PUT_YAMOP_LTT90,3726 -#define PUT_YAMOP_SEQ(PUT_YAMOP_SEQ91,3816 -#define PUT_YAMOP_CUT(PUT_YAMOP_CUT92,3894 -#define BRANCH(BRANCH94,3973 -#define BRANCH_LTT(BRANCH_LTT95,4037 -#define BRANCH_CUT(BRANCH_CUT96,4113 -#define PARALLEL_MODE_OFF PARALLEL_MODE_OFF104,4304 -#define PARALLEL_MODE_ON PARALLEL_MODE_ON105,4336 -#define PARALLEL_MODE_RUNNING PARALLEL_MODE_RUNNING106,4368 -#define worker_offset(worker_offset114,4494 -#define LOCK_OR_FRAME(LOCK_OR_FRAME116,4611 -#define UNLOCK_OR_FRAME(UNLOCK_OR_FRAME117,4662 -#define LOCK_WORKER(LOCK_WORKER119,4714 -#define UNLOCK_WORKER(UNLOCK_WORKER120,4765 -#define SCH_top_shared_cp(SCH_top_shared_cp128,4919 -#define SCH_any_share_request SCH_any_share_request130,4978 -#define SCHEDULER_GET_WORK(SCHEDULER_GET_WORK132,5047 -#define SCH_check_prune_request(SCH_check_prune_request138,5234 -#define SCH_check_share_request(SCH_check_share_request144,5437 -#define SCH_check_share_request(SCH_check_share_request152,5688 -#define SCH_check_requests(SCH_check_requests159,5926 -#define SCH_last_alternative(SCH_last_alternative163,6041 -#define CUT_prune_to(CUT_prune_to175,6355 -#define CUT_wait_leftmost(CUT_wait_leftmost182,6640 -void PUT_IN_ROOT_NODE(int worker_num) {PUT_IN_ROOT_NODE220,8915 -void PUT_OUT_ROOT_NODE(int worker_num) {PUT_OUT_ROOT_NODE229,9123 -void PUT_IN_FINISHED(int w) {PUT_IN_FINISHED237,9332 -void PUT_IN_PRUNING(int w) {PUT_IN_PRUNING247,9551 -void PUT_OUT_PRUNING(int w) {PUT_OUT_PRUNING256,9740 -void PUT_IN_REQUESTABLE(int p) {PUT_IN_REQUESTABLE271,10060 -void PUT_OUT_REQUESTABLE(int p) {PUT_OUT_REQUESTABLE280,10265 -void SCH_update_local_or_tops(void) {SCH_update_local_or_tops289,10471 -void SCH_refuse_share_request_if_any(void) {SCH_refuse_share_request_if_any298,10646 -void SCH_set_load(choiceptr current_cp) {SCH_set_load310,10903 -#define INIT_CP_LUB(INIT_CP_LUB315,11044 -#define CP_LUB(CP_LUB316,11114 -void SCH_new_alternative(yamop *curpc, yamop *new) {SCH_new_alternative334,11539 -void CUT_send_prune_request(int worker, choiceptr prune_cp) {CUT_send_prune_request349,11891 -void CUT_reset_prune_request(void) {CUT_reset_prune_request360,12231 -int CUT_last_worker_left_pending_prune(or_fr_ptr or_frame) {CUT_last_worker_left_pending_prune376,12612 -or_fr_ptr CUT_leftmost_or_frame(void) {CUT_leftmost_or_frame394,13040 -or_fr_ptr CUT_leftmost_until(or_fr_ptr start_or_fr, int until_depth) {CUT_leftmost_until433,14201 -void CUT_store_answer(or_fr_ptr or_frame, qg_ans_fr_ptr new_answer) {CUT_store_answer508,17233 -void CUT_store_answers(or_fr_ptr or_frame, qg_sol_fr_ptr new_solution) {CUT_store_answers535,18051 -void CUT_join_answers_in_an_unique_frame(qg_sol_fr_ptr join_solution) {CUT_join_answers_in_an_unique_frame559,18781 -void CUT_free_solution_frame(qg_sol_fr_ptr solution) {CUT_free_solution_frame573,19207 -void CUT_free_solution_frames(qg_sol_fr_ptr current_solution) {CUT_free_solution_frames588,19572 -qg_sol_fr_ptr CUT_prune_solution_frames(qg_sol_fr_ptr solutions, int ltt) {CUT_prune_solution_frames601,19865 - -OPTYap/or.memory.c,727 -#define GLOBAL_LOCAL_STRUCTS_AREA GLOBAL_LOCAL_STRUCTS_AREA38,1421 -#define PATH_MAX PATH_MAX41,1583 -char mapfile_path[PATH_MAX];mapfile_path42,1605 -int shm_mapid[MAX_WORKERS + 2];shm_mapid44,1675 -void Yap_init_yapor_global_local_memory(void) {Yap_init_yapor_global_local_memory64,2141 -void Yap_init_yapor_stacks_memory(UInt TrailStackArea, UInt HeapStackArea, UInt GlobalLocalStackArea, int n_workers) {Yap_init_yapor_stacks_memory96,3884 -void Yap_remap_yapor_memory(void) {Yap_remap_yapor_memory173,7389 -void Yap_unmap_yapor_memory (void) {Yap_unmap_yapor_memory208,9181 -void shm_map_memory(int id, int size, void *shmaddr) {shm_map_memory253,10606 -void shm_unmap_memory(int id) {shm_unmap_memory262,10954 - -OPTYap/or.sba_amiops.h,2745 -static char SccsId[] = "%W% %G%";SccsId15,901 -#define IsArrayReference(IsArrayReference21,1033 -#define deref_head(deref_head34,1378 -#define deref_body(deref_body36,1437 -#define derefa_body(derefa_body44,1812 -#define deref_list_head(deref_list_head62,2449 -#define deref_list_body(deref_list_body64,2515 -EXTERN inline Term Deref(Term a)Deref74,2953 -EXTERN inline Term Derefa(CELL *b)Derefa84,3093 -#define RESET_VARIABLE(RESET_VARIABLE111,3593 -AlignGlobalForDouble(void)AlignGlobalForDouble115,3700 -#define DO_TRAIL(DO_TRAIL128,3949 -#define DO_MATRAIL(DO_MATRAIL137,4197 -#define TRAIL_REF(TRAIL_REF146,4479 -#define STACK_TO_SBA(STACK_TO_SBA149,4574 -#define IN_SBA(IN_SBA151,4634 -#define SBA_TO_STACK(SBA_TO_STACK153,4701 -#define BIND_SHARED_VARIABLE(BIND_SHARED_VARIABLE156,4823 -#define MABIND_SHARED_VARIABLE(MABIND_SHARED_VARIABLE172,5540 -#define BIND_CONDITIONALLY(BIND_CONDITIONALLY190,6352 -#define MABIND_CONDITIONALLY(MABIND_CONDITIONALLY197,6595 -#define DO_CONDITIONAL_BINDING(DO_CONDITIONAL_BINDING203,6780 -#define DO_CONDITIONAL_MABINDING(DO_CONDITIONAL_MABINDING210,7048 -#define YapBind(YapBind217,7316 -#define BIND(BIND224,7587 -#define MaBind(MaBind226,7623 -#define Bind_Global(Bind_Global234,7952 -#define Bind_Local(Bind_Local236,7993 -#define BIND_GLOBAL(BIND_GLOBAL238,8034 -#define BIND_GLOBAL2(BIND_GLOBAL2240,8077 -#define BIND_GLOBALCELL(BIND_GLOBALCELL242,8125 -#define DO_TRAIL(DO_TRAIL246,8213 -#define DO_MATRAIL(DO_MATRAIL255,8461 -#define TRAIL(TRAIL264,8768 -#define MATRAIL(MATRAIL269,8953 -#define TRAIL_GLOBAL(TRAIL_GLOBAL274,9146 -#define TRAIL_LOCAL(TRAIL_LOCAL277,9241 -#define TRAIL_REF(TRAIL_REF280,9340 -#define YapBind(YapBind282,9411 -#define MaBind(MaBind284,9470 -#define Bind_Global(Bind_Global286,9533 -#define Bind_Local(Bind_Local288,9596 -#define DO_TRAIL(DO_TRAIL294,9692 -#define TRAIL(TRAIL303,9837 -#define TRAIL_GLOBAL(TRAIL_GLOBAL307,9985 -#define TRAIL_LOCAL(TRAIL_LOCAL309,10040 -#define TRAIL(TRAIL316,10210 -#define TRAIL_GLOBAL(TRAIL_GLOBAL321,10449 -#define TRAIL_LOCAL(TRAIL_LOCAL323,10515 -#define DO_TRAIL(DO_TRAIL327,10596 -#define TRAIL(TRAIL329,10649 -#define TRAIL_GLOBAL(TRAIL_GLOBAL333,10820 -#define TRAIL_LOCAL(TRAIL_LOCAL335,10874 -#define TRAIL_REF(TRAIL_REF339,10961 -#define YapBind(YapBind350,11275 -#define Bind_Global(Bind_Global352,11334 -#define Bind_Local(Bind_Local354,11401 -#define MA_TRAIL(MA_TRAIL362,11637 -#define MaBind(MaBind368,11938 -#define CP_FREE(CP_FREE377,12171 -#define CP_NEXT(CP_NEXT378,12218 -#define DBIND(DBIND382,12291 -#define EQ_OK_IN_CMP EQ_OK_IN_CMP384,12326 -#define LT_OK_IN_CMP LT_OK_IN_CMP385,12349 -#define GT_OK_IN_CMP GT_OK_IN_CMP386,12372 - -OPTYap/or.sba_engine.c,446 -reset_trail(tr_fr_ptr tr_top, tr_fr_ptr trp)reset_trail35,1300 -#define COMPUTE_SEGMENTS_TO_COPY_TO(COMPUTE_SEGMENTS_TO_COPY_TO78,2412 -void make_root_choice_point(void) {make_root_choice_point88,2706 -void free_root_choice_point(void) {free_root_choice_point108,3220 -void p_share_work(void) {p_share_work119,3513 -int q_share_work(int worker_p) {q_share_work145,4354 -void share_private_nodes(int worker_q) {share_private_nodes224,6868 - -OPTYap/or.sba_unify.h,245 -static char SccsId[] = "%W% %G%";SccsId15,901 -Int bind_variable(Term t0, Term t1)bind_variable25,1121 -Int unify(Term t0, Term t1)unify40,1372 -EXTERN inline Int unify_constant(register Term a, register Term cons)unify_constant54,1601 - -OPTYap/or.scheduler.c,624 -void PUT_NO_WORK_IN_UPPER_NODES(void) {PUT_NO_WORK_IN_UPPER_NODES52,1762 -void PUT_IDLE(int worker_num) {PUT_IDLE65,2079 -void PUT_BUSY(int worker_num) {PUT_BUSY74,2270 -void move_up_to_prune_request(void) {move_up_to_prune_request83,2461 -int get_work(void) {get_work124,3751 -int move_up_one_node(or_fr_ptr nearest_livenode) {move_up_one_node254,7675 -int get_work_below(void){get_work_below509,17797 -int get_work_above(void){get_work_above539,18734 -int find_a_better_position(void){find_a_better_position593,20723 -int search_for_hidden_shared_work(bitmap stable_busy){search_for_hidden_shared_work623,21644 - -OPTYap/or.structs.h,6732 -typedef struct or_frame {or_frame61,2234 - lockvar lock;lock62,2260 - lockvar lock;or_frame::lock62,2260 - yamop *alternative;alternative63,2276 - yamop *alternative;or_frame::alternative63,2276 - volatile bitmap members;members64,2298 - volatile bitmap members;or_frame::members64,2298 - Int node_offset;node_offset66,2346 - Int node_offset;or_frame::node_offset66,2346 - choiceptr node;node68,2371 - choiceptr node;or_frame::node68,2371 - struct or_frame *nearest_livenode;nearest_livenode70,2396 - struct or_frame *nearest_livenode;or_frame::nearest_livenode70,2396 - int depth;depth72,2453 - int depth;or_frame::depth72,2453 - Int pending_prune_cp_offset;pending_prune_cp_offset74,2487 - Int pending_prune_cp_offset;or_frame::pending_prune_cp_offset74,2487 - choiceptr pending_prune_cp;pending_prune_cp76,2524 - choiceptr pending_prune_cp;or_frame::pending_prune_cp76,2524 - volatile int pending_prune_ltt;pending_prune_ltt78,2561 - volatile int pending_prune_ltt;or_frame::pending_prune_ltt78,2561 - struct or_frame *nearest_leftnode;nearest_leftnode79,2595 - struct or_frame *nearest_leftnode;or_frame::nearest_leftnode79,2595 - struct query_goal_solution_frame *query_solutions;query_solutions80,2632 - struct query_goal_solution_frame *query_solutions;or_frame::query_solutions80,2632 - struct table_subgoal_solution_frame *table_solutions;table_solutions82,2711 - struct table_subgoal_solution_frame *table_solutions;or_frame::table_solutions82,2711 - volatile int number_owners;number_owners86,2838 - volatile int number_owners;or_frame::number_owners86,2838 - struct or_frame *next_on_stack;next_on_stack87,2868 - struct or_frame *next_on_stack;or_frame::next_on_stack87,2868 - struct suspension_frame *suspensions;suspensions88,2902 - struct suspension_frame *suspensions;or_frame::suspensions88,2902 - struct or_frame *nearest_suspension_node;nearest_suspension_node89,2942 - struct or_frame *nearest_suspension_node;or_frame::nearest_suspension_node89,2942 - struct or_frame *next;next91,3007 - struct or_frame *next;or_frame::next91,3007 -} *or_fr_ptr;or_fr_ptr92,3032 -#define OrFr_lock(OrFr_lock94,3047 -#define OrFr_alternative(OrFr_alternative95,3093 -#define OrFr_members(OrFr_members96,3146 -#define GetOrFr_node(GetOrFr_node98,3216 -#define SetOrFr_node(SetOrFr_node99,3283 -#define OrFr_node(OrFr_node101,3362 -#define GetOrFr_node(GetOrFr_node102,3408 -#define SetOrFr_node(SetOrFr_node103,3454 -#define OrFr_nearest_livenode(OrFr_nearest_livenode105,3511 -#define OrFr_depth(OrFr_depth106,3569 -#define Get_OrFr_pend_prune_cp(Get_OrFr_pend_prune_cp108,3637 -#define Set_OrFr_pend_prune_cp(Set_OrFr_pend_prune_cp109,3726 -#define OrFr_pend_prune_cp(OrFr_pend_prune_cp111,3830 -#define Get_OrFr_pend_prune_cp(Get_OrFr_pend_prune_cp112,3888 -#define Set_OrFr_pend_prune_cp(Set_OrFr_pend_prune_cp113,3946 -#define OrFr_pend_prune_ltt(OrFr_pend_prune_ltt115,4020 -#define OrFr_nearest_leftnode(OrFr_nearest_leftnode116,4079 -#define OrFr_qg_solutions(OrFr_qg_solutions117,4137 -#define OrFr_tg_solutions(OrFr_tg_solutions118,4194 -#define OrFr_owners(OrFr_owners119,4251 -#define OrFr_next_on_stack(OrFr_next_on_stack121,4321 -#define OrFr_next_on_stack(OrFr_next_on_stack123,4382 -#define OrFr_suspensions(OrFr_suspensions125,4449 -#define OrFr_nearest_suspnode(OrFr_nearest_suspnode126,4502 -#define OrFr_next(OrFr_next127,4567 -typedef struct query_goal_solution_frame{query_goal_solution_frame135,4764 - volatile int ltt;ltt136,4806 - volatile int ltt;query_goal_solution_frame::ltt136,4806 - struct query_goal_answer_frame *first;first137,4826 - struct query_goal_answer_frame *first;query_goal_solution_frame::first137,4826 - struct query_goal_answer_frame *last;last138,4867 - struct query_goal_answer_frame *last;query_goal_solution_frame::last138,4867 - struct query_goal_solution_frame *next;next139,4907 - struct query_goal_solution_frame *next;query_goal_solution_frame::next139,4907 -} *qg_sol_fr_ptr;qg_sol_fr_ptr140,4949 -#define SolFr_ltt(SolFr_ltt142,4968 -#define SolFr_first(SolFr_first143,5003 -#define SolFr_last(SolFr_last144,5040 -#define SolFr_next(SolFr_next145,5076 -typedef struct query_goal_answer_frame{query_goal_answer_frame153,5257 - Term answer;answer154,5297 - Term answer;query_goal_answer_frame::answer154,5297 - struct query_goal_answer_frame *next;next155,5312 - struct query_goal_answer_frame *next;query_goal_answer_frame::next155,5312 -} *qg_ans_fr_ptr;qg_ans_fr_ptr156,5352 -#define AnsFr_answer(AnsFr_answer158,5371 -#define AnsFr_next(AnsFr_next159,5410 -typedef struct table_subgoal_solution_frame{table_subgoal_solution_frame168,5633 - choiceptr generator_choice_point;generator_choice_point169,5678 - choiceptr generator_choice_point;table_subgoal_solution_frame::generator_choice_point169,5678 - volatile int ltt;ltt170,5714 - volatile int ltt;table_subgoal_solution_frame::ltt170,5714 - struct table_subgoal_answer_frame *first_answer_frame;first_answer_frame171,5734 - struct table_subgoal_answer_frame *first_answer_frame;table_subgoal_solution_frame::first_answer_frame171,5734 - struct table_subgoal_answer_frame *last_answer_frame;last_answer_frame172,5791 - struct table_subgoal_answer_frame *last_answer_frame;table_subgoal_solution_frame::last_answer_frame172,5791 - struct table_subgoal_solution_frame *ltt_next;ltt_next173,5847 - struct table_subgoal_solution_frame *ltt_next;table_subgoal_solution_frame::ltt_next173,5847 - struct table_subgoal_solution_frame *next;next174,5896 - struct table_subgoal_solution_frame *next;table_subgoal_solution_frame::next174,5896 -} *tg_sol_fr_ptr;tg_sol_fr_ptr175,5941 -#define TgSolFr_gen_cp(TgSolFr_gen_cp177,5960 -#define TgSolFr_ltt(TgSolFr_ltt178,6019 -#define TgSolFr_first(TgSolFr_first179,6059 -#define TgSolFr_last(TgSolFr_last180,6114 -#define TgSolFr_ltt_next(TgSolFr_ltt_next181,6168 -#define TgSolFr_next(TgSolFr_next182,6213 -typedef struct table_subgoal_answer_frame{table_subgoal_answer_frame190,6408 - volatile int next_free_slot;next_free_slot191,6451 - volatile int next_free_slot;table_subgoal_answer_frame::next_free_slot191,6451 - struct answer_trie_node *answer[TG_ANSWER_SLOTS];answer192,6482 - struct answer_trie_node *answer[TG_ANSWER_SLOTS];table_subgoal_answer_frame::answer192,6482 - struct table_subgoal_answer_frame *next;next193,6534 - struct table_subgoal_answer_frame *next;table_subgoal_answer_frame::next193,6534 -} *tg_ans_fr_ptr;tg_ans_fr_ptr194,6577 -#define TgAnsFr_free_slot(TgAnsFr_free_slot196,6596 -#define TgAnsFr_answer(TgAnsFr_answer197,6648 -#define TgAnsFr_next(TgAnsFr_next198,6695 - -OPTYap/or.thread_engine.c,432 -#define INCREMENTAL_COPYING INCREMENTAL_COPYING33,1225 -#define COMPUTE_SEGMENTS_TO_COPY_TO(COMPUTE_SEGMENTS_TO_COPY_TO34,1255 -void make_root_choice_point(void) {make_root_choice_point53,2038 -void free_root_choice_point(void) {free_root_choice_point94,3106 -int p_share_work() {p_share_work107,3459 -int q_share_work(int worker_p) {q_share_work142,4665 -void share_private_nodes(int worker_q) {share_private_nodes236,7698 - -OPTYap/tab.completion.c,543 -static void complete_suspension_branch(susp_fr_ptr susp_fr, choiceptr top_cp, or_fr_ptr *chain_or_fr, dep_fr_ptr *chain_dep_fr) {complete_suspension_branch34,1229 -void private_completion(sg_fr_ptr sg_fr) {private_completion106,3905 -void public_completion(void) {public_completion151,5213 -void complete_suspension_frames(or_fr_ptr or_fr) {complete_suspension_frames275,9268 -void suspend_branch(void) {suspend_branch329,10750 -void resume_suspension_frame(susp_fr_ptr resume_fr, or_fr_ptr top_or_fr) {resume_suspension_frame406,13841 - -OPTYap/tab.insts.h,2339 -#define store_low_level_trace_info(store_low_level_trace_info19,1136 -#define store_low_level_trace_info(store_low_level_trace_info22,1240 -#define TABLING_ERROR_CHECKING_STACK TABLING_ERROR_CHECKING_STACK25,1319 -#define store_generator_node(store_generator_node30,1520 -#define store_deterministic_generator_node(store_deterministic_generator_node81,5115 -#define store_generator_consumer_node(store_generator_consumer_node106,6608 -#define restore_generator_node(restore_generator_node151,9483 -#define pop_generator_node(pop_generator_node173,10591 -#define store_consumer_node(store_consumer_node198,11673 -#define consume_answer_and_procceed(consume_answer_and_procceed232,14193 -#define consume_answer_and_procceed(consume_answer_and_procceed257,16059 -#define store_loader_node(store_loader_node285,18040 -#define restore_loader_node(restore_loader_node308,19323 -#define pop_loader_node(pop_loader_node317,19650 -#define allocate_environment(allocate_environment329,20009 -#define allocate_environment(allocate_environment336,20234 - CELL *subs_ptr;subs_ptr370,21252 - ans_node_ptr ans_node;ans_node371,21272 - PREFETCH_OP(PREG);PREG393,21910 - sg_fr_ptr sg_fr;sg_fr407,22297 - ans_node_ptr ans_node;ans_node408,22318 - tab_ent_ptr tab_ent;tab_ent469,23992 - sg_fr_ptr sg_fr;sg_fr470,24017 - check_trail(TR);TR472,24039 - LOCK_SG_FR(sg_fr);sg_fr489,24566 - tab_ent_ptr tab_ent;tab_ent639,29822 - sg_fr_ptr sg_fr;sg_fr640,29847 - check_trail(TR);TR642,29869 - LOCK_SG_FR(sg_fr);sg_fr659,30397 - tab_ent_ptr tab_ent;tab_ent791,34939 - sg_fr_ptr sg_fr;sg_fr792,34964 - check_trail(TR);TR794,34986 - LOCK_SG_FR(sg_fr);sg_fr809,35483 - CELL *subs_ptr;subs_ptr1049,43673 - choiceptr gcp;gcp1050,43693 - sg_fr_ptr sg_fr;sg_fr1051,43712 - ans_node_ptr ans_node;ans_node1052,43733 - LOCK_ANSWER_TRIE(sg_fr);sg_fr1085,44743 - LOCK_ANSWER_NODE(ans_node);ans_node1097,45100 - dep_fr_ptr dep_fr;dep_fr1360,55190 - ans_node_ptr ans_node;ans_node1361,55213 - LOCK_DEP_FR(dep_fr);dep_fr1366,55496 - UNLOCK_DEP_FR(dep_fr);dep_fr1386,56152 - dep_fr_ptr dep_fr;dep_fr1668,67104 - ans_node_ptr ans_node;ans_node1669,67127 - long timestamp = 0;timestamp1672,67190 - int entry_owners = 0;entry_owners1674,67243 - -OPTYap/tab.macros.h,18191 -#define Flag_Batched Flag_Batched85,4175 -#define Flag_Local Flag_Local86,4213 -#define Flags_SchedulingMode Flags_SchedulingMode87,4251 -#define Flag_ExecAnswers Flag_ExecAnswers88,4311 -#define Flag_LoadAnswers Flag_LoadAnswers89,4349 -#define Flags_AnswersMode Flags_AnswersMode90,4387 -#define Flag_LocalTrie Flag_LocalTrie91,4457 -#define Flag_GlobalTrie Flag_GlobalTrie92,4495 -#define Flags_TrieMode Flags_TrieMode93,4533 -#define Flag_CoInductive Flag_CoInductive94,4600 -#define SetMode_Batched(SetMode_Batched96,4639 -#define SetMode_Local(SetMode_Local97,4722 -#define SetMode_ExecAnswers(SetMode_ExecAnswers98,4803 -#define SetMode_LoadAnswers(SetMode_LoadAnswers99,4887 -#define SetMode_LocalTrie(SetMode_LocalTrie100,4971 -#define SetMode_GlobalTrie(SetMode_GlobalTrie101,5050 -#define SetMode_CoInductive(SetMode_CoInductive102,5130 -#define IsMode_Batched(IsMode_Batched103,5191 -#define IsMode_Local(IsMode_Local104,5244 -#define IsMode_ExecAnswers(IsMode_ExecAnswers105,5295 -#define IsMode_LoadAnswers(IsMode_LoadAnswers106,5352 -#define IsMode_LocalTrie(IsMode_LocalTrie107,5409 -#define IsMode_GlobalTrie(IsMode_GlobalTrie108,5464 -#define IsMode_CoInductive(IsMode_CoInductive109,5520 -#define SHOW_MODE_STRUCTURE SHOW_MODE_STRUCTURE118,5699 -#define SHOW_MODE_STATISTICS SHOW_MODE_STATISTICS119,5736 - TRAVERSE_MODE_NORMAL = 0,TRAVERSE_MODE_NORMAL121,5788 - TRAVERSE_MODE_DOUBLE = 1,TRAVERSE_MODE_DOUBLE122,5822 - TRAVERSE_MODE_DOUBLE2 = 2,TRAVERSE_MODE_DOUBLE2123,5856 - TRAVERSE_MODE_DOUBLE_END = 3,TRAVERSE_MODE_DOUBLE_END124,5890 - TRAVERSE_MODE_BIGINT_OR_STRING = 4,TRAVERSE_MODE_BIGINT_OR_STRING125,5924 - TRAVERSE_MODE_BIGINT_OR_STRING_END = 5,TRAVERSE_MODE_BIGINT_OR_STRING_END126,5967 - TRAVERSE_MODE_LONGINT = 6,TRAVERSE_MODE_LONGINT127,6010 - TRAVERSE_MODE_LONGINT_END = 7TRAVERSE_MODE_LONGINT_END128,6044 -} traverse_mode_t;traverse_mode_t129,6077 -#define TRAVERSE_TYPE_SUBGOAL TRAVERSE_TYPE_SUBGOAL131,6126 -#define TRAVERSE_TYPE_ANSWER TRAVERSE_TYPE_ANSWER132,6163 -#define TRAVERSE_TYPE_GT_SUBGOAL TRAVERSE_TYPE_GT_SUBGOAL133,6200 -#define TRAVERSE_TYPE_GT_ANSWER TRAVERSE_TYPE_GT_ANSWER134,6237 -#define TRAVERSE_POSITION_NEXT TRAVERSE_POSITION_NEXT136,6304 -#define TRAVERSE_POSITION_FIRST TRAVERSE_POSITION_FIRST137,6341 -#define TRAVERSE_POSITION_LAST TRAVERSE_POSITION_LAST138,6378 -#define MODE_DIRECTED_TAGBITS MODE_DIRECTED_TAGBITS141,6444 -#define MODE_DIRECTED_NUMBER_TAGBITS MODE_DIRECTED_NUMBER_TAGBITS142,6486 -#define MODE_DIRECTED_INDEX MODE_DIRECTED_INDEX143,6526 -#define MODE_DIRECTED_MIN MODE_DIRECTED_MIN144,6566 -#define MODE_DIRECTED_MAX MODE_DIRECTED_MAX145,6606 -#define MODE_DIRECTED_ALL MODE_DIRECTED_ALL146,6646 -#define MODE_DIRECTED_SUM MODE_DIRECTED_SUM147,6686 -#define MODE_DIRECTED_LAST MODE_DIRECTED_LAST148,6726 -#define MODE_DIRECTED_FIRST MODE_DIRECTED_FIRST149,6766 -#define MODE_DIRECTED_SET(MODE_DIRECTED_SET150,6806 -#define MODE_DIRECTED_GET_ARG(MODE_DIRECTED_GET_ARG151,6893 -#define MODE_DIRECTED_GET_MODE(MODE_DIRECTED_GET_MODE152,6969 -#define NumberOfLowTagBits NumberOfLowTagBits155,7106 -#define MakeTableVarTerm(MakeTableVarTerm156,7167 -#define VarIndexOfTableTerm(VarIndexOfTableTerm157,7234 -#define VarIndexOfTerm(VarIndexOfTerm158,7317 -#define IsTableVarTerm(IsTableVarTerm160,7476 -#define PairTermMark PairTermMark164,7727 -#define CompactPairInit CompactPairInit165,7760 -#define CompactPairEndTerm CompactPairEndTerm166,7808 -#define CompactPairEndList CompactPairEndList167,7871 -#define ANSWER_LEAF_NODE_INSTR_BITS ANSWER_LEAF_NODE_INSTR_BITS172,8102 -#define ANSWER_LEAF_NODE_INSTR_MASK ANSWER_LEAF_NODE_INSTR_MASK173,8171 -#define ANSWER_LEAF_NODE_MAX_THREADS ANSWER_LEAF_NODE_MAX_THREADS176,8243 -#define ANSWER_LEAF_NODE_MAX_THREADS ANSWER_LEAF_NODE_MAX_THREADS178,8340 -#define ANSWER_LEAF_NODE_MAX_THREADS ANSWER_LEAF_NODE_MAX_THREADS180,8419 -#define ANSWER_LEAF_NODE_INSTR_RELATIVE(ANSWER_LEAF_NODE_INSTR_RELATIVE182,8517 -#define ANSWER_LEAF_NODE_INSTR_ABSOLUTE(ANSWER_LEAF_NODE_INSTR_ABSOLUTE183,8625 -#define ANSWER_LEAF_NODE_SET_WID(ANSWER_LEAF_NODE_SET_WID184,8765 -#define ANSWER_LEAF_NODE_DEL_WID(ANSWER_LEAF_NODE_DEL_WID185,8881 -#define ANSWER_LEAF_NODE_CHECK_WID(ANSWER_LEAF_NODE_CHECK_WID186,8997 -#define NORM_CP(NORM_CP189,9134 -#define GEN_CP(GEN_CP190,9188 -#define CONS_CP(CONS_CP191,9260 -#define LOAD_CP(LOAD_CP192,9331 -#define DET_GEN_CP(DET_GEN_CP194,9429 -#define IS_DET_GEN_CP(IS_DET_GEN_CP195,9515 -#define IS_BATCHED_NORM_GEN_CP(IS_BATCHED_NORM_GEN_CP196,9600 -#define IS_BATCHED_GEN_CP(IS_BATCHED_GEN_CP197,9668 -#define IS_BATCHED_GEN_CP(IS_BATCHED_GEN_CP200,9792 -#define IS_BATCHED_GEN_CP(IS_BATCHED_GEN_CP202,9900 -#define TAG_AS_SUBGOAL_LEAF_NODE(TAG_AS_SUBGOAL_LEAF_NODE207,10062 -#define IS_SUBGOAL_LEAF_NODE(IS_SUBGOAL_LEAF_NODE208,10175 -#define TAG_AS_ANSWER_LEAF_NODE(TAG_AS_ANSWER_LEAF_NODE209,10254 -#define IS_ANSWER_LEAF_NODE(IS_ANSWER_LEAF_NODE210,10370 -#define TAG_AS_ANSWER_INVALID_NODE(TAG_AS_ANSWER_INVALID_NODE211,10450 -#define IS_ANSWER_INVALID_NODE(IS_ANSWER_INVALID_NODE212,10566 -#define UNTAG_SUBGOAL_NODE(UNTAG_SUBGOAL_NODE213,10646 -#define UNTAG_ANSWER_NODE(UNTAG_ANSWER_NODE214,10716 -#define MAX_NODES_PER_TRIE_LEVEL MAX_NODES_PER_TRIE_LEVEL217,10805 -#define MAX_NODES_PER_BUCKET MAX_NODES_PER_BUCKET218,10847 -#define BASE_HASH_BUCKETS BASE_HASH_BUCKETS219,10918 -#define HASH_ENTRY(HASH_ENTRY220,10961 -#define SUBGOAL_TRIE_HASH_MARK SUBGOAL_TRIE_HASH_MARK221,11062 -#define IS_SUBGOAL_TRIE_HASH(IS_SUBGOAL_TRIE_HASH222,11144 -#define ANSWER_TRIE_HASH_MARK ANSWER_TRIE_HASH_MARK223,11231 -#define IS_ANSWER_TRIE_HASH(IS_ANSWER_TRIE_HASH224,11273 -#define GLOBAL_TRIE_HASH_MARK GLOBAL_TRIE_HASH_MARK225,11359 -#define IS_GLOBAL_TRIE_HASH(IS_GLOBAL_TRIE_HASH226,11441 -#define HASH_TRIE_LOCK(HASH_TRIE_LOCK227,11527 -#define STACK_PUSH_UP(STACK_PUSH_UP230,11658 -#define STACK_POP_UP(STACK_POP_UP231,11728 -#define STACK_PUSH_DOWN(STACK_PUSH_DOWN232,11783 -#define STACK_POP_DOWN(STACK_POP_DOWN233,11853 -#define STACK_NOT_EMPTY(STACK_NOT_EMPTY234,11908 -#define AUX_STACK_CHECK_EXPAND(AUX_STACK_CHECK_EXPAND236,12044 -#define AUX_STACK_CHECK_EXPAND(AUX_STACK_CHECK_EXPAND240,12333 -#define STACK_CHECK_EXPAND(STACK_CHECK_EXPAND244,12572 -#define frame_with_suspensions_not_collected(frame_with_suspensions_not_collected255,12965 -#define find_dependency_node(find_dependency_node257,13096 -#define find_leader_node(find_leader_node268,13946 -#define DepFr_init_timestamp_field(DepFr_init_timestamp_field283,15058 -#define DepFr_init_timestamp_field(DepFr_init_timestamp_field285,15136 -#define YAPOR_SET_LOAD(YAPOR_SET_LOAD287,15202 -#define SgFr_init_yapor_fields(SgFr_init_yapor_fields288,15255 -#define DepFr_init_yapor_fields(DepFr_init_yapor_fields291,15475 -#define find_dependency_node(find_dependency_node297,15860 -#define find_leader_node(find_leader_node299,15983 -#define YAPOR_SET_LOAD(YAPOR_SET_LOAD309,16742 -#define SgFr_init_yapor_fields(SgFr_init_yapor_fields310,16773 -#define DepFr_init_yapor_fields(DepFr_init_yapor_fields311,16811 -#define TabEnt_init_mode_directed_field(TabEnt_init_mode_directed_field315,16925 -#define SgEnt_init_mode_directed_fields(SgEnt_init_mode_directed_fields317,17040 -#define SgFr_init_mode_directed_fields(SgFr_init_mode_directed_fields320,17217 -#define AnsHash_init_previous_field(AnsHash_init_previous_field323,17392 -#define TabEnt_init_mode_directed_field(TabEnt_init_mode_directed_field328,17625 -#define SgEnt_init_mode_directed_fields(SgEnt_init_mode_directed_fields329,17686 -#define SgFr_init_mode_directed_fields(SgFr_init_mode_directed_fields330,17746 -#define AnsHash_init_previous_field(AnsHash_init_previous_field331,17804 -#define INIT_LOCK_SG_FR(INIT_LOCK_SG_FR335,17978 -#define LOCK_SG_FR(LOCK_SG_FR336,18038 -#define UNLOCK_SG_FR(UNLOCK_SG_FR337,18093 -#define INIT_LOCK_SG_FR(INIT_LOCK_SG_FR339,18156 -#define LOCK_SG_FR(LOCK_SG_FR340,18187 -#define UNLOCK_SG_FR(UNLOCK_SG_FR341,18213 -#define INIT_LOCK_DEP_FR(INIT_LOCK_DEP_FR345,18326 -#define LOCK_DEP_FR(LOCK_DEP_FR346,18392 -#define UNLOCK_DEP_FR(UNLOCK_DEP_FR347,18453 -#define IS_UNLOCKED_DEP_FR(IS_UNLOCKED_DEP_FR348,18516 -#define INIT_LOCK_DEP_FR(INIT_LOCK_DEP_FR350,18590 -#define LOCK_DEP_FR(LOCK_DEP_FR351,18623 -#define UNLOCK_DEP_FR(UNLOCK_DEP_FR352,18651 -#define IS_UNLOCKED_DEP_FR(IS_UNLOCKED_DEP_FR353,18681 -#define INIT_LOCK_TAB_ENT(INIT_LOCK_TAB_ENT357,18813 -#define INIT_LOCK_TAB_ENT(INIT_LOCK_TAB_ENT359,18887 -#define LOCK_SUBGOAL_TRIE(LOCK_SUBGOAL_TRIE363,19031 -#define UNLOCK_SUBGOAL_TRIE(UNLOCK_SUBGOAL_TRIE364,19096 -#define LOCK_SUBGOAL_TRIE(LOCK_SUBGOAL_TRIE366,19169 -#define UNLOCK_SUBGOAL_TRIE(UNLOCK_SUBGOAL_TRIE367,19204 -#define LOCK_ANSWER_TRIE(LOCK_ANSWER_TRIE371,19327 -#define UNLOCK_ANSWER_TRIE(UNLOCK_ANSWER_TRIE372,19380 -#define AnsHash_init_chain_fields(AnsHash_init_chain_fields373,19435 -#define LOCK_ANSWER_TRIE(LOCK_ANSWER_TRIE378,19631 -#define UNLOCK_ANSWER_TRIE(UNLOCK_ANSWER_TRIE379,19663 -#define AnsHash_init_chain_fields(AnsHash_init_chain_fields380,19697 -#define LOCK_SUBGOAL_NODE(LOCK_SUBGOAL_NODE389,20078 -#define UNLOCK_SUBGOAL_NODE(UNLOCK_SUBGOAL_NODE390,20140 -#define SgNode_init_lock_field(SgNode_init_lock_field391,20204 -#define LOCK_SUBGOAL_NODE(LOCK_SUBGOAL_NODE393,20323 -#define UNLOCK_SUBGOAL_NODE(UNLOCK_SUBGOAL_NODE394,20388 -#define SgNode_init_lock_field(SgNode_init_lock_field395,20455 -#define LOCK_SUBGOAL_NODE(LOCK_SUBGOAL_NODE397,20498 -#define UNLOCK_SUBGOAL_NODE(UNLOCK_SUBGOAL_NODE398,20530 -#define SgNode_init_lock_field(SgNode_init_lock_field399,20564 -#define LOCK_ANSWER_NODE(LOCK_ANSWER_NODE403,20680 -#define UNLOCK_ANSWER_NODE(UNLOCK_ANSWER_NODE404,20743 -#define AnsNode_init_lock_field(AnsNode_init_lock_field405,20808 -#define LOCK_ANSWER_NODE(LOCK_ANSWER_NODE407,20927 -#define UNLOCK_ANSWER_NODE(UNLOCK_ANSWER_NODE408,20993 -#define AnsNode_init_lock_field(AnsNode_init_lock_field409,21061 -#define LOCK_ANSWER_NODE(LOCK_ANSWER_NODE411,21105 -#define UNLOCK_ANSWER_NODE(UNLOCK_ANSWER_NODE412,21136 -#define AnsNode_init_lock_field(AnsNode_init_lock_field413,21169 -#define LOCK_GLOBAL_NODE(LOCK_GLOBAL_NODE417,21285 -#define UNLOCK_GLOBAL_NODE(UNLOCK_GLOBAL_NODE418,21347 -#define GtNode_init_lock_field(GtNode_init_lock_field419,21411 -#define LOCK_GLOBAL_NODE(LOCK_GLOBAL_NODE421,21529 -#define UNLOCK_GLOBAL_NODE(UNLOCK_GLOBAL_NODE422,21594 -#define GtNode_init_lock_field(GtNode_init_lock_field423,21661 -#define LOCK_GLOBAL_NODE(LOCK_GLOBAL_NODE425,21704 -#define UNLOCK_GLOBAL_NODE(UNLOCK_GLOBAL_NODE426,21735 -#define GtNode_init_lock_field(GtNode_init_lock_field427,21768 -#define TabEnt_init_subgoal_trie_field(TabEnt_init_subgoal_trie_field431,21868 -#define TabEnt_init_subgoal_trie_field(TabEnt_init_subgoal_trie_field434,22023 -#define SgFr_init_batched_fields(SgFr_init_batched_fields442,22397 -#define SgFr_init_batched_fields(SgFr_init_batched_fields446,22562 -#define DepFr_init_external_field(DepFr_init_external_field450,22669 -#define DepFr_init_external_field(DepFr_init_external_field453,22786 -#define DepFr_init_last_answer_field(DepFr_init_last_answer_field457,22951 -#define DepFr_init_last_answer_field(DepFr_init_last_answer_field468,23824 -#define new_table_entry(new_table_entry481,24764 -#define new_subgoal_entry(new_subgoal_entry503,26219 -#define new_subgoal_frame(new_subgoal_frame518,27083 -#define init_subgoal_frame(init_subgoal_frame524,27322 -#define new_subgoal_frame(new_subgoal_frame530,27587 -#define init_subgoal_frame(init_subgoal_frame544,28397 -#define new_dependency_frame(new_dependency_frame552,28809 -#define new_suspension_frame(new_suspension_frame562,29732 -#define new_subgoal_trie_node(new_subgoal_trie_node581,31326 -#define new_answer_trie_node(new_answer_trie_node589,31730 -#define new_global_trie_node(new_global_trie_node598,32257 -#define new_answer_ref_node(new_answer_ref_node606,32691 -#define new_subgoal_trie_hash(new_subgoal_trie_hash612,32960 -#define new_answer_trie_hash(new_answer_trie_hash619,33332 -#define new_global_trie_hash(new_global_trie_hash627,33776 -#define insert_into_global_sg_fr_list(insert_into_global_sg_fr_list635,34162 -#define remove_from_global_sg_fr_list(remove_from_global_sg_fr_list643,34749 -#define insert_into_global_sg_fr_list(insert_into_global_sg_fr_list658,35827 -#define remove_from_global_sg_fr_list(remove_from_global_sg_fr_list659,35872 -#define get_insert_thread_bucket(get_insert_thread_bucket669,36059 -static inline void **__get_insert_thread_bucket(void **buckets, lockvar *buckets_lock USES_REGS) {__get_insert_thread_bucket671,36148 -#define get_thread_bucket(get_thread_bucket690,36865 -static inline void **__get_thread_bucket(void **buckets USES_REGS) {__get_thread_bucket692,36930 -static inline void abolish_thread_buckets(void **buckets) {abolish_thread_buckets708,37405 -static inline sg_node_ptr get_insert_subgoal_trie(tab_ent_ptr tab_ent USES_REGS) {get_insert_subgoal_trie729,37871 -#define get_subgoal_trie(get_subgoal_trie741,38318 -static inline sg_node_ptr __get_subgoal_trie(tab_ent_ptr tab_ent USES_REGS) {__get_subgoal_trie743,38383 -static inline sg_node_ptr get_subgoal_trie_for_abolish(tab_ent_ptr tab_ent USES_REGS) {get_subgoal_trie_for_abolish753,38698 -static inline sg_fr_ptr *get_insert_subgoal_frame_addr(sg_node_ptr sg_node USES_REGS) {get_insert_subgoal_frame_addr767,39179 -static inline sg_fr_ptr get_subgoal_frame(sg_node_ptr sg_node) {get_subgoal_frame801,40641 -static inline sg_fr_ptr get_subgoal_frame_for_abolish(sg_node_ptr sg_node USES_REGS) {get_subgoal_frame_for_abolish814,41192 -#define SgFr_batched_cached_answers_check_insert(SgFr_batched_cached_answers_check_insert838,42158 -static inline void SgFr_batched_cached_answers_check_insert(sg_fr_ptr sg_fr, ans_node_ptr ans_node USES_REGS) {SgFr_batched_cached_answers_check_insert839,42276 -#define SgFr_batched_cached_answers_check_remove(SgFr_batched_cached_answers_check_remove867,43380 -static inline int __SgFr_batched_cached_answers_check_remove(sg_fr_ptr sg_fr, ans_node_ptr ans_node USES_REgS) {__SgFr_batched_cached_answers_check_remove869,43499 -#define add_to_tdv(add_to_tdv899,44746 -static inline void __add_to_tdv(int wid, int wid_dep USES_REGS) {__add_to_tdv901,44807 -#define check_for_deadlock(check_for_deadlock941,46081 -static inline void __check_for_deadlock(sg_fr_ptr sg_fr USES_REGS) {__check_for_deadlock943,46148 -#define deadlock_detection(deadlock_detection956,46566 -static inline sg_fr_ptr __deadlock_detection(sg_fr_ptr sg_fr USES_REGS) {__deadlock_detection958,46633 -#define freeze_current_cp(freeze_current_cp991,48124 -static inline Int __freeze_current_cp(USES_REGS1) {__freeze_current_cp993,48187 -#define wake_frozen_cp(wake_frozen_cp1005,48424 -#define restore_bindings(restore_bindings1007,48483 -static inline void __wake_frozen_cp(Int frozen_offset USES_REGS) {__wake_frozen_cp1009,48554 -#define abolish_frozen_cps_until(abolish_frozen_cps_until1020,48803 -static inline void __abolish_frozen_cps_until(Int frozen_offset USES_REGS) {__abolish_frozen_cps_until1022,48883 -#define abolish_frozen_cps_all(abolish_frozen_cps_all1031,49120 -static inline void __abolish_frozen_cps_all( USES_REGS1 ) {__abolish_frozen_cps_all1033,49193 -#define adjust_freeze_registers(adjust_freeze_registers1040,49381 -static inline void __adjust_freeze_registers( USES_REGS1 ) {__adjust_freeze_registers1042,49456 -#define mark_as_completed(mark_as_completed1049,49618 -static inline void __mark_as_completed(sg_fr_ptr sg_fr USES_REGS) {__mark_as_completed1051,49686 -#define unbind_variables(unbind_variables1097,51495 -static inline void __unbind_variables(tr_fr_ptr unbind_tr, tr_fr_ptr end_tr USES_REGS) {__unbind_variables1099,51566 -#define rebind_variables(rebind_variables1129,52534 -static inline void __rebind_variables(tr_fr_ptr rebind_tr, tr_fr_ptr end_tr USES_REGS) {__rebind_variables1131,52601 -static inline void __restore_bindings(tr_fr_ptr unbind_tr, tr_fr_ptr rebind_tr USES_REGS) {__restore_bindings1163,53725 -#define expand_auxiliary_stack(expand_auxiliary_stack1235,55996 -static inline CELL *__expand_auxiliary_stack(CELL *stack USES_REGS) {__expand_auxiliary_stack1237,56071 -#define abolish_incomplete_subgoals(abolish_incomplete_subgoals1251,56633 -static inline void __abolish_incomplete_subgoals(choiceptr prune_cp USES_REGS) {__abolish_incomplete_subgoals1254,56719 -static inline void pruning_over_tabling_data_structures(void) {pruning_over_tabling_data_structures1401,62176 -#define collect_suspension_frames(collect_suspension_frames1407,62339 -static inline void __collect_suspension_frames(or_fr_ptr or_fr USES_REGS) { __collect_suspension_frames1409,62420 -susp_fr_ptr suspension_frame_to_resume(or_fr_ptr susp_or_fr, long timestamp) {suspension_frame_to_resume1429,63017 -static inline void CUT_store_tg_answer(or_fr_ptr or_frame, ans_node_ptr ans_node, choiceptr gen_cp, int ltt) {CUT_store_tg_answer1467,64141 -static inline tg_sol_fr_ptr CUT_store_tg_answers(or_fr_ptr or_frame, tg_sol_fr_ptr new_solution, int ltt) {CUT_store_tg_answers1520,66028 -static inline void CUT_validate_tg_answers(tg_sol_fr_ptr valid_solutions) {CUT_validate_tg_answers1568,68157 -static inline void CUT_join_tg_solutions(tg_sol_fr_ptr *old_solution_ptr, tg_sol_fr_ptr new_solution) {CUT_join_tg_solutions1627,70140 -static inline void CUT_join_solution_frame_tg_answers(tg_sol_fr_ptr join_solution) {CUT_join_solution_frame_tg_answers1674,71975 -static inline void CUT_join_solution_frames_tg_answers(tg_sol_fr_ptr join_solution) {CUT_join_solution_frames_tg_answers1687,72427 -static inline void CUT_free_tg_solution_frame(tg_sol_fr_ptr solution) {CUT_free_tg_solution_frame1696,72665 -static inline void CUT_free_tg_solution_frames(tg_sol_fr_ptr current_solution) {CUT_free_tg_solution_frames1710,73036 -static inline tg_sol_fr_ptr CUT_prune_tg_solution_frames(tg_sol_fr_ptr solutions, int ltt) {CUT_prune_tg_solution_frames1728,73576 - -OPTYap/tab.rational.h,780 -#define RationalMark RationalMark14,889 -#define IsRationalTerm(IsRationalTerm15,924 -typedef struct term_array {term_array17,972 - void* *terms;terms18,1000 - void* *terms;term_array::terms18,1000 - void* *nodes;nodes19,1016 - void* *nodes;term_array::nodes19,1016 - size_t length;length20,1032 - size_t length;term_array::length20,1032 - size_t capacity;capacity21,1049 - size_t capacity;term_array::capacity21,1049 -} term_array;term_array22,1068 -void term_array_init(term_array *array, int capacity) {term_array_init29,1291 -void term_array_free(term_array *array) {term_array_free42,1776 -void term_array_push(term_array *array, void* t, void* n) {term_array_push51,1955 -void* term_array_member(term_array array, void* t) {term_array_member71,2706 - -OPTYap/tab.structs.h,19229 -typedef struct table_entry {table_entry22,1197 - lockvar lock;lock24,1303 - lockvar lock;table_entry::lock24,1303 - struct pred_entry *pred_entry;pred_entry26,1387 - struct pred_entry *pred_entry;table_entry::pred_entry26,1387 - Atom pred_atom;pred_atom27,1420 - Atom pred_atom;table_entry::pred_atom27,1420 - int pred_arity;pred_arity28,1438 - int pred_arity;table_entry::pred_arity28,1438 - short pred_flags;pred_flags29,1456 - short pred_flags;table_entry::pred_flags29,1456 - short execution_mode; /* combines yap_flags with pred_flags */execution_mode30,1476 - short execution_mode; /* combines yap_flags with pred_flags */table_entry::execution_mode30,1476 - int* mode_directed_array;mode_directed_array32,1571 - int* mode_directed_array;table_entry::mode_directed_array32,1571 - struct subgoal_trie_node *subgoal_trie[THREADS_NUM_BUCKETS];subgoal_trie35,1660 - struct subgoal_trie_node *subgoal_trie[THREADS_NUM_BUCKETS];table_entry::subgoal_trie35,1660 - struct subgoal_trie_node *subgoal_trie;subgoal_trie37,1729 - struct subgoal_trie_node *subgoal_trie;table_entry::subgoal_trie37,1729 - struct subgoal_trie_hash *hash_chain;hash_chain39,1803 - struct subgoal_trie_hash *hash_chain;table_entry::hash_chain39,1803 - struct table_entry *next;next40,1843 - struct table_entry *next;table_entry::next40,1843 -} *tab_ent_ptr;tab_ent_ptr41,1871 -#define TabEnt_lock(TabEnt_lock43,1888 -#define TabEnt_pe(TabEnt_pe44,1934 -#define TabEnt_atom(TabEnt_atom45,1986 -#define TabEnt_arity(TabEnt_arity46,2037 -#define TabEnt_flags(TabEnt_flags47,2089 -#define TabEnt_mode(TabEnt_mode48,2141 -#define TabEnt_mode_directed(TabEnt_mode_directed49,2197 -#define TabEnt_subgoal_trie(TabEnt_subgoal_trie50,2258 -#define TabEnt_hash_chain(TabEnt_hash_chain51,2312 -#define TabEnt_next(TabEnt_next52,2364 -typedef struct subgoal_trie_node {subgoal_trie_node60,2633 - Term entry;entry61,2668 - Term entry;subgoal_trie_node::entry61,2668 - struct subgoal_trie_node *parent;parent62,2682 - struct subgoal_trie_node *parent;subgoal_trie_node::parent62,2682 - struct subgoal_trie_node *child;child63,2718 - struct subgoal_trie_node *child;subgoal_trie_node::child63,2718 - struct subgoal_trie_node *next;next64,2753 - struct subgoal_trie_node *next;subgoal_trie_node::next64,2753 - lockvar lock;lock66,2829 - lockvar lock;subgoal_trie_node::lock66,2829 -} *sg_node_ptr;sg_node_ptr68,2893 -typedef struct answer_trie_node {answer_trie_node70,2910 - OPCODE trie_instruction; /* u.opc */trie_instruction71,2944 - OPCODE trie_instruction; /* u.opc */answer_trie_node::trie_instruction71,2944 - int or_arg; /* u.Otapl.or_arg */or_arg73,2997 - int or_arg; /* u.Otapl.or_arg */answer_trie_node::or_arg73,2997 - Term entry;entry75,3065 - Term entry;answer_trie_node::entry75,3065 - struct answer_trie_node *parent;parent76,3079 - struct answer_trie_node *parent;answer_trie_node::parent76,3079 - struct answer_trie_node *child;child77,3114 - struct answer_trie_node *child;answer_trie_node::child77,3114 - struct answer_trie_node *next;next78,3148 - struct answer_trie_node *next;answer_trie_node::next78,3148 - lockvar lock;lock80,3222 - lockvar lock;answer_trie_node::lock80,3222 -} *ans_node_ptr;ans_node_ptr82,3285 -typedef struct global_trie_node {global_trie_node84,3303 - Term entry;entry85,3337 - Term entry;global_trie_node::entry85,3337 - struct global_trie_node *parent;parent86,3351 - struct global_trie_node *parent;global_trie_node::parent86,3351 - struct global_trie_node *child;child87,3386 - struct global_trie_node *child;global_trie_node::child87,3386 - struct global_trie_node *next;next88,3420 - struct global_trie_node *next;global_trie_node::next88,3420 - lockvar lock;lock90,3494 - lockvar lock;global_trie_node::lock90,3494 -} *gt_node_ptr;gt_node_ptr92,3557 -#define TrNode_instr(TrNode_instr94,3574 -#define TrNode_or_arg(TrNode_or_arg95,3624 -#define TrNode_entry(TrNode_entry96,3664 -#define TrNode_parent(TrNode_parent97,3703 -#define TrNode_child(TrNode_child98,3743 -#define TrNode_sg_fr(TrNode_sg_fr99,3782 -#define TrNode_sg_ent(TrNode_sg_ent100,3821 -#define TrNode_next(TrNode_next101,3860 -#define TrNode_lock(TrNode_lock102,3898 -typedef struct answer_ref_node {answer_ref_node111,4064 - struct answer_trie_node *ans_node;ans_node112,4097 - struct answer_trie_node *ans_node;answer_ref_node::ans_node112,4097 - struct answer_ref_node *next;next113,4134 - struct answer_ref_node *next;answer_ref_node::next113,4134 - struct answer_ref_node *previous;previous114,4166 - struct answer_ref_node *previous;answer_ref_node::previous114,4166 -} *ans_ref_ptr;ans_ref_ptr115,4202 -#define RefNode_answer(RefNode_answer118,4253 -#define RefNode_next(RefNode_next119,4298 -#define RefNode_previous(RefNode_previous120,4339 -typedef struct subgoal_trie_hash {subgoal_trie_hash128,4607 - Term mark; mark131,4742 - Term mark; subgoal_trie_hash::mark131,4742 - int number_of_buckets;number_of_buckets132,4759 - int number_of_buckets;subgoal_trie_hash::number_of_buckets132,4759 - struct subgoal_trie_node **buckets;buckets133,4784 - struct subgoal_trie_node **buckets;subgoal_trie_hash::buckets133,4784 - int number_of_nodes;number_of_nodes134,4822 - int number_of_nodes;subgoal_trie_hash::number_of_nodes134,4822 - struct subgoal_trie_hash *next;next136,4869 - struct subgoal_trie_hash *next;subgoal_trie_hash::next136,4869 -} *sg_hash_ptr;sg_hash_ptr138,4933 -typedef struct answer_trie_hash {answer_trie_hash140,4950 - OPCODE mark;mark143,5084 - OPCODE mark;answer_trie_hash::mark143,5084 - int number_of_buckets;number_of_buckets144,5099 - int number_of_buckets;answer_trie_hash::number_of_buckets144,5099 - struct answer_trie_node **buckets;buckets145,5124 - struct answer_trie_node **buckets;answer_trie_hash::buckets145,5124 - int number_of_nodes;number_of_nodes146,5161 - int number_of_nodes;answer_trie_hash::number_of_nodes146,5161 - struct answer_trie_hash *previous; previous148,5213 - struct answer_trie_hash *previous; answer_trie_hash::previous148,5213 - struct answer_trie_hash *next;next150,5284 - struct answer_trie_hash *next;answer_trie_hash::next150,5284 -} *ans_hash_ptr;ans_hash_ptr151,5317 -typedef struct global_trie_hash {global_trie_hash153,5335 - Term mark;mark156,5469 - Term mark;global_trie_hash::mark156,5469 - int number_of_buckets;number_of_buckets157,5482 - int number_of_buckets;global_trie_hash::number_of_buckets157,5482 - struct global_trie_node **buckets;buckets158,5507 - struct global_trie_node **buckets;global_trie_hash::buckets158,5507 - int number_of_nodes;number_of_nodes159,5544 - int number_of_nodes;global_trie_hash::number_of_nodes159,5544 - struct global_trie_hash *next;next161,5591 - struct global_trie_hash *next;global_trie_hash::next161,5591 -} *gt_hash_ptr;gt_hash_ptr163,5654 -#define Hash_mark(Hash_mark165,5671 -#define Hash_num_buckets(Hash_num_buckets166,5712 -#define Hash_buckets(Hash_buckets167,5766 -#define Hash_num_nodes(Hash_num_nodes168,5810 -#define Hash_previous(Hash_previous169,5862 -#define Hash_next(Hash_next170,5907 -struct generator_choicept {generator_choicept182,6265 - struct choicept cp;cp183,6293 - struct choicept cp;generator_choicept::cp183,6293 - struct dependency_frame *cp_dep_fr; /* always NULL if batched scheduling */cp_dep_fr184,6315 - struct dependency_frame *cp_dep_fr; /* always NULL if batched scheduling */generator_choicept::cp_dep_fr184,6315 - struct subgoal_frame *cp_sg_fr;cp_sg_fr185,6394 - struct subgoal_frame *cp_sg_fr;generator_choicept::cp_sg_fr185,6394 - struct pred_entry *cp_pred_entry;cp_pred_entry187,6452 - struct pred_entry *cp_pred_entry;generator_choicept::cp_pred_entry187,6452 -struct deterministic_generator_choicept {deterministic_generator_choicept192,6551 - struct deterministic_choicept cp;cp193,6593 - struct deterministic_choicept cp;deterministic_generator_choicept::cp193,6593 - struct subgoal_frame *cp_sg_fr;cp_sg_fr194,6629 - struct subgoal_frame *cp_sg_fr;deterministic_generator_choicept::cp_sg_fr194,6629 - struct pred_entry *cp_pred_entry;cp_pred_entry196,6687 - struct pred_entry *cp_pred_entry;deterministic_generator_choicept::cp_pred_entry196,6687 -struct consumer_choicept {consumer_choicept201,6792 - struct choicept cp;cp202,6819 - struct choicept cp;consumer_choicept::cp202,6819 - struct dependency_frame *cp_dep_fr;cp_dep_fr203,6841 - struct dependency_frame *cp_dep_fr;consumer_choicept::cp_dep_fr203,6841 - struct pred_entry *cp_pred_entry;cp_pred_entry205,6903 - struct pred_entry *cp_pred_entry;consumer_choicept::cp_pred_entry205,6903 -struct loader_choicept {loader_choicept209,6973 - struct choicept cp;cp210,6998 - struct choicept cp;loader_choicept::cp210,6998 - struct answer_trie_node *cp_last_answer;cp_last_answer211,7020 - struct answer_trie_node *cp_last_answer;loader_choicept::cp_last_answer211,7020 - struct pred_entry *cp_pred_entry;cp_pred_entry213,7087 - struct pred_entry *cp_pred_entry;loader_choicept::cp_pred_entry213,7087 - incomplete = 0, /* INCOMPLETE_TABLING */incomplete224,7319 - ready_external = 1, /* THREADS_CONSUMER_SHARING */ready_external225,7368 - ready = 2,ready226,7423 - evaluating = 3,evaluating227,7446 - complete = 4,complete228,7469 - complete_in_use = 5, /* LIMIT_TABLING */complete_in_use229,7492 - compiled = 6,compiled230,7536 - compiled_in_use = 7 /* LIMIT_TABLING */compiled_in_use231,7559 -} subgoal_state_flag;subgoal_state_flag232,7603 -typedef struct subgoal_entry {subgoal_entry240,7719 - lockvar lock;lock242,7839 - lockvar lock;subgoal_entry::lock242,7839 - yamop *code_of_subgoal;code_of_subgoal244,7926 - yamop *code_of_subgoal;subgoal_entry::code_of_subgoal244,7926 - struct answer_trie_hash *hash_chain;hash_chain245,7952 - struct answer_trie_hash *hash_chain;subgoal_entry::hash_chain245,7952 - struct answer_trie_node *answer_trie;answer_trie246,7991 - struct answer_trie_node *answer_trie;subgoal_entry::answer_trie246,7991 - struct answer_trie_node *first_answer;first_answer247,8031 - struct answer_trie_node *first_answer;subgoal_entry::first_answer247,8031 - struct answer_trie_node *last_answer;last_answer248,8072 - struct answer_trie_node *last_answer;subgoal_entry::last_answer248,8072 - int* mode_directed_array;mode_directed_array250,8141 - int* mode_directed_array;subgoal_entry::mode_directed_array250,8141 - struct answer_trie_node *invalid_chain;invalid_chain251,8169 - struct answer_trie_node *invalid_chain;subgoal_entry::invalid_chain251,8169 - struct answer_trie_node *try_answer;try_answer254,8272 - struct answer_trie_node *try_answer;subgoal_entry::try_answer254,8272 - struct subgoal_frame *previous;previous257,8364 - struct subgoal_frame *previous;subgoal_entry::previous257,8364 - struct or_frame *top_or_frame_on_generator_branch;top_or_frame_on_generator_branch260,8438 - struct or_frame *top_or_frame_on_generator_branch;subgoal_entry::top_or_frame_on_generator_branch260,8438 - int generator_worker;generator_worker263,8566 - int generator_worker;subgoal_entry::generator_worker263,8566 - subgoal_state_flag state_flag;state_flag266,8708 - subgoal_state_flag state_flag;subgoal_entry::state_flag266,8708 - int active_workers;active_workers267,8741 - int active_workers;subgoal_entry::active_workers267,8741 - struct subgoal_frame *subgoal_frame[THREADS_NUM_BUCKETS];subgoal_frame268,8763 - struct subgoal_frame *subgoal_frame[THREADS_NUM_BUCKETS];subgoal_entry::subgoal_frame268,8763 -}* sg_ent_ptr;sg_ent_ptr270,8885 -#define SgEnt_lock(SgEnt_lock272,8901 -#define SgEnt_code(SgEnt_code273,8946 -#define SgEnt_tab_ent(SgEnt_tab_ent274,9002 -#define SgEnt_arity(SgEnt_arity275,9074 -#define SgEnt_hash_chain(SgEnt_hash_chain276,9145 -#define SgEnt_answer_trie(SgEnt_answer_trie277,9196 -#define SgEnt_first_answer(SgEnt_first_answer278,9248 -#define SgEnt_last_answer(SgEnt_last_answer279,9301 -#define SgEnt_mode_directed(SgEnt_mode_directed280,9353 -#define SgEnt_invalid_chain(SgEnt_invalid_chain281,9413 -#define SgEnt_try_answer(SgEnt_try_answer282,9467 -#define SgEnt_previous(SgEnt_previous283,9518 -#define SgEnt_gen_top_or_fr(SgEnt_gen_top_or_fr284,9567 -#define SgEnt_gen_worker(SgEnt_gen_worker285,9640 -#define SgEnt_sg_ent_state(SgEnt_sg_ent_state286,9697 -#define SgEnt_active_workers(SgEnt_active_workers287,9748 -#define SgEnt_sg_fr(SgEnt_sg_fr288,9803 -typedef struct subgoal_frame {subgoal_frame296,9951 - struct subgoal_entry *subgoal_entry;subgoal_entry298,10053 - struct subgoal_entry *subgoal_entry;subgoal_frame::subgoal_entry298,10053 - struct answer_trie_node *batched_last_answer;batched_last_answer300,10120 - struct answer_trie_node *batched_last_answer;subgoal_frame::batched_last_answer300,10120 - struct answer_ref_node *batched_cached_answers;batched_cached_answers301,10168 - struct answer_ref_node *batched_cached_answers;subgoal_frame::batched_cached_answers301,10168 - subgoal_state_flag state_flag;state_flag306,10358 - subgoal_state_flag state_flag;subgoal_frame::state_flag306,10358 - choiceptr generator_choice_point;generator_choice_point307,10391 - choiceptr generator_choice_point;subgoal_frame::generator_choice_point307,10391 - struct subgoal_frame *next;next308,10427 - struct subgoal_frame *next;subgoal_frame::next308,10427 -} *sg_fr_ptr;sg_fr_ptr309,10457 -#define SUBGOAL_ENTRY(SUBGOAL_ENTRY313,10570 -#define SUBGOAL_ENTRY(SUBGOAL_ENTRY315,10633 -#define SgFr_lock(SgFr_lock317,10755 -#define SgFr_code(SgFr_code318,10819 -#define SgFr_tab_ent(SgFr_tab_ent319,10894 -#define SgFr_arity(SgFr_arity320,10985 -#define SgFr_hash_chain(SgFr_hash_chain321,11075 -#define SgFr_answer_trie(SgFr_answer_trie322,11145 -#define SgFr_first_answer(SgFr_first_answer323,11216 -#define SgFr_last_answer(SgFr_last_answer324,11288 -#define SgFr_mode_directed(SgFr_mode_directed325,11359 -#define SgFr_invalid_chain(SgFr_invalid_chain326,11438 -#define SgFr_try_answer(SgFr_try_answer327,11511 -#define SgFr_previous(SgFr_previous328,11581 -#define SgFr_gen_top_or_fr(SgFr_gen_top_or_fr329,11649 -#define SgFr_gen_worker(SgFr_gen_worker330,11741 -#define SgFr_sg_ent_state(SgFr_sg_ent_state331,11817 -#define SgFr_active_workers(SgFr_active_workers332,11887 -#define SgFr_sg_ent(SgFr_sg_ent334,11988 -#define SgFr_batched_last_answer(SgFr_batched_last_answer335,12049 -#define SgFr_batched_cached_answers(SgFr_batched_cached_answers336,12116 -#define SgFr_state(SgFr_state337,12186 -#define SgFr_gen_cp(SgFr_gen_cp338,12244 -#define SgFr_next(SgFr_next339,12314 -typedef struct dependency_frame {dependency_frame381,15155 - lockvar lock;lock383,15202 - lockvar lock;dependency_frame::lock383,15202 - int leader_dependency_is_on_stack;leader_dependency_is_on_stack384,15218 - int leader_dependency_is_on_stack;dependency_frame::leader_dependency_is_on_stack384,15218 - struct or_frame *top_or_frame;top_or_frame385,15255 - struct or_frame *top_or_frame;dependency_frame::top_or_frame385,15255 - long timestamp;timestamp387,15311 - long timestamp;dependency_frame::timestamp387,15311 - int generator_is_external;generator_is_external391,15409 - int generator_is_external;dependency_frame::generator_is_external391,15409 - choiceptr backchain_choice_point;backchain_choice_point393,15476 - choiceptr backchain_choice_point;dependency_frame::backchain_choice_point393,15476 - choiceptr leader_choice_point;leader_choice_point394,15512 - choiceptr leader_choice_point;dependency_frame::leader_choice_point394,15512 - choiceptr consumer_choice_point;consumer_choice_point395,15545 - choiceptr consumer_choice_point;dependency_frame::consumer_choice_point395,15545 - struct answer_trie_node *last_consumed_answer;last_consumed_answer396,15580 - struct answer_trie_node *last_consumed_answer;dependency_frame::last_consumed_answer396,15580 - struct dependency_frame *next;next397,15629 - struct dependency_frame *next;dependency_frame::next397,15629 -} *dep_fr_ptr;dep_fr_ptr398,15662 -#define DepFr_lock(DepFr_lock400,15678 -#define DepFr_leader_dep_is_on_stack(DepFr_leader_dep_is_on_stack401,15731 -#define DepFr_top_or_fr(DepFr_top_or_fr402,15809 -#define DepFr_timestamp(DepFr_timestamp403,15870 -#define DepFr_external(DepFr_external404,15928 -#define DepFr_backchain_cp(DepFr_backchain_cp405,15998 -#define DepFr_leader_cp(DepFr_leader_cp406,16069 -#define DepFr_cons_cp(DepFr_cons_cp407,16137 -#define DepFr_last_answer(DepFr_last_answer408,16207 -#define DepFr_next(DepFr_next409,16276 -typedef struct suspension_frame {suspension_frame440,18128 - struct or_frame *top_or_frame_on_stack;top_or_frame_on_stack441,18162 - struct or_frame *top_or_frame_on_stack;suspension_frame::top_or_frame_on_stack441,18162 - struct dependency_frame *top_dependency_frame;top_dependency_frame442,18204 - struct dependency_frame *top_dependency_frame;suspension_frame::top_dependency_frame442,18204 - struct subgoal_frame *top_subgoal_frame;top_subgoal_frame443,18253 - struct subgoal_frame *top_subgoal_frame;suspension_frame::top_subgoal_frame443,18253 - struct suspended_block {suspended_block444,18296 - struct suspended_block {suspension_frame::suspended_block444,18296 - void *resume_register;resume_register445,18323 - void *resume_register;suspension_frame::suspended_block::resume_register445,18323 - void *block_start;block_start446,18350 - void *block_start;suspension_frame::suspended_block::block_start446,18350 - long block_size;block_size447,18373 - long block_size;suspension_frame::suspended_block::block_size447,18373 - } global_block, local_block, trail_block;global_block448,18394 - } global_block, local_block, trail_block;suspension_frame::global_block448,18394 - } global_block, local_block, trail_block;local_block448,18394 - } global_block, local_block, trail_block;suspension_frame::local_block448,18394 - } global_block, local_block, trail_block;trail_block448,18394 - } global_block, local_block, trail_block;suspension_frame::trail_block448,18394 - struct suspension_frame *next;next449,18438 - struct suspension_frame *next;suspension_frame::next449,18438 -} *susp_fr_ptr;susp_fr_ptr450,18471 -#define SuspFr_top_or_fr_on_stack(SuspFr_top_or_fr_on_stack453,18507 -#define SuspFr_top_dep_fr(SuspFr_top_dep_fr454,18574 -#define SuspFr_top_sg_fr(SuspFr_top_sg_fr455,18640 -#define SuspFr_global_reg(SuspFr_global_reg456,18703 -#define SuspFr_global_start(SuspFr_global_start457,18777 -#define SuspFr_global_size(SuspFr_global_size458,18847 -#define SuspFr_local_reg(SuspFr_local_reg459,18916 -#define SuspFr_local_start(SuspFr_local_start460,18989 -#define SuspFr_local_size(SuspFr_local_size461,19058 -#define SuspFr_trail_reg(SuspFr_trail_reg462,19126 -#define SuspFr_trail_start(SuspFr_trail_start463,19199 -#define SuspFr_trail_size(SuspFr_trail_size464,19268 -#define SuspFr_next(SuspFr_next465,19336 - -OPTYap/tab.tries.c,6801 -static struct trie_statistics {trie_statistics100,5098 - FILE *out;out101,5130 - FILE *out;trie_statistics::out101,5130 - int show;show102,5143 - int show;trie_statistics::show102,5143 - long subgoals;subgoals103,5155 - long subgoals;trie_statistics::subgoals103,5155 - long subgoals_incomplete;subgoals_incomplete104,5172 - long subgoals_incomplete;trie_statistics::subgoals_incomplete104,5172 - long subgoal_trie_nodes;subgoal_trie_nodes105,5200 - long subgoal_trie_nodes;trie_statistics::subgoal_trie_nodes105,5200 - long answers;answers106,5227 - long answers;trie_statistics::answers106,5227 - long answers_pruned;answers_pruned108,5269 - long answers_pruned;trie_statistics::answers_pruned108,5269 - long answers_true;answers_true110,5324 - long answers_true;trie_statistics::answers_true110,5324 - long answers_no;answers_no111,5345 - long answers_no;trie_statistics::answers_no111,5345 - long answer_trie_nodes;answer_trie_nodes112,5364 - long answer_trie_nodes;trie_statistics::answer_trie_nodes112,5364 - long global_trie_terms;global_trie_terms113,5390 - long global_trie_terms;trie_statistics::global_trie_terms113,5390 - long global_trie_nodes;global_trie_nodes114,5416 - long global_trie_nodes;trie_statistics::global_trie_nodes114,5416 - long global_trie_references;global_trie_references115,5442 - long global_trie_references;trie_statistics::global_trie_references115,5442 -trie_stats[MAX_THREADS];trie_stats118,5490 -#define TrStat_out TrStat_out120,5516 -#define TrStat_show TrStat_show121,5561 -#define TrStat_subgoals TrStat_subgoals122,5608 -#define TrStat_sg_incomplete TrStat_sg_incomplete123,5663 -#define TrStat_sg_nodes TrStat_sg_nodes124,5734 -#define TrStat_answers TrStat_answers125,5799 -#define TrStat_answers_true TrStat_answers_true126,5852 -#define TrStat_answers_no TrStat_answers_no127,5915 -#define TrStat_answers_pruned TrStat_answers_pruned128,5974 -#define TrStat_ans_nodes TrStat_ans_nodes129,6041 -#define TrStat_gt_terms TrStat_gt_terms130,6106 -#define TrStat_gt_nodes TrStat_gt_nodes131,6170 -#define TrStat_gt_refs TrStat_gt_refs132,6234 -#define IF_ABOLISH_SUBGOAL_TRIE_SHARED_DATA_STRUCTURES IF_ABOLISH_SUBGOAL_TRIE_SHARED_DATA_STRUCTURES153,7118 -#define IF_ABOLISH_SUBGOAL_TRIE_SHARED_DATA_STRUCTURESIF_ABOLISH_SUBGOAL_TRIE_SHARED_DATA_STRUCTURES156,7235 -#define IF_ABOLISH_ANSWER_TRIE_SHARED_DATA_STRUCTURES IF_ABOLISH_ANSWER_TRIE_SHARED_DATA_STRUCTURES161,7481 -#define IF_ABOLISH_ANSWER_TRIE_SHARED_DATA_STRUCTURESIF_ABOLISH_ANSWER_TRIE_SHARED_DATA_STRUCTURES164,7598 -#define SHOW_TABLE_STR_ARRAY_SIZE SHOW_TABLE_STR_ARRAY_SIZE167,7715 -#define SHOW_TABLE_ARITY_ARRAY_SIZE SHOW_TABLE_ARITY_ARRAY_SIZE168,7756 -#define SHOW_TABLE_STRUCTURE(SHOW_TABLE_STRUCTURE169,7798 -#define CHECK_DECREMENT_GLOBAL_TRIE_REFERENCE(CHECK_DECREMENT_GLOBAL_TRIE_REFERENCE173,7988 -#define CHECK_DECREMENT_GLOBAL_TRIE_FOR_SUBTERMS_REFERENCE(CHECK_DECREMENT_GLOBAL_TRIE_FOR_SUBTERMS_REFERENCE183,8672 -#define FREE_GLOBAL_TRIE_BRANCH(FREE_GLOBAL_TRIE_BRANCH185,8804 -#define CHECK_DECREMENT_GLOBAL_TRIE_FOR_SUBTERMS_REFERENCE(CHECK_DECREMENT_GLOBAL_TRIE_FOR_SUBTERMS_REFERENCE188,8939 -#define FREE_GLOBAL_TRIE_BRANCH(FREE_GLOBAL_TRIE_BRANCH189,9009 -#define INCLUDE_SUBGOAL_TRIE_CHECK_INSERT INCLUDE_SUBGOAL_TRIE_CHECK_INSERT204,9463 -#define INCLUDE_ANSWER_TRIE_CHECK_INSERT INCLUDE_ANSWER_TRIE_CHECK_INSERT206,9592 -#define INCLUDE_GLOBAL_TRIE_CHECK_INSERT INCLUDE_GLOBAL_TRIE_CHECK_INSERT207,9671 -#undef INCLUDE_GLOBAL_TRIE_CHECK_INSERTINCLUDE_GLOBAL_TRIE_CHECK_INSERT209,9773 -#undef INCLUDE_ANSWER_TRIE_CHECK_INSERTINCLUDE_ANSWER_TRIE_CHECK_INSERT210,9813 -#undef INCLUDE_SUBGOAL_TRIE_CHECK_INSERTINCLUDE_SUBGOAL_TRIE_CHECK_INSERT211,9853 -#define MODE_GLOBAL_TRIE_ENTRYMODE_GLOBAL_TRIE_ENTRY213,9895 -#define INCLUDE_SUBGOAL_TRIE_CHECK_INSERT INCLUDE_SUBGOAL_TRIE_CHECK_INSERT214,9926 -#define INCLUDE_ANSWER_TRIE_CHECK_INSERT INCLUDE_ANSWER_TRIE_CHECK_INSERT216,10056 -#define INCLUDE_GLOBAL_TRIE_CHECK_INSERT INCLUDE_GLOBAL_TRIE_CHECK_INSERT219,10217 -#undef INCLUDE_GLOBAL_TRIE_CHECK_INSERTINCLUDE_GLOBAL_TRIE_CHECK_INSERT223,10440 -#undef INCLUDE_ANSWER_TRIE_CHECK_INSERTINCLUDE_ANSWER_TRIE_CHECK_INSERT224,10480 -#undef INCLUDE_SUBGOAL_TRIE_CHECK_INSERTINCLUDE_SUBGOAL_TRIE_CHECK_INSERT225,10520 -#undef MODE_GLOBAL_TRIE_ENTRYMODE_GLOBAL_TRIE_ENTRY226,10561 -#define INCLUDE_SUBGOAL_SEARCH_LOOP INCLUDE_SUBGOAL_SEARCH_LOOP228,10592 -#define INCLUDE_ANSWER_SEARCH_LOOP INCLUDE_ANSWER_SEARCH_LOOP229,10654 -#define INCLUDE_LOAD_ANSWER_LOOP INCLUDE_LOAD_ANSWER_LOOP230,10715 -#undef INCLUDE_LOAD_ANSWER_LOOPINCLUDE_LOAD_ANSWER_LOOP232,10797 -#undef INCLUDE_ANSWER_SEARCH_LOOPINCLUDE_ANSWER_SEARCH_LOOP233,10829 -#undef INCLUDE_SUBGOAL_SEARCH_LOOPINCLUDE_SUBGOAL_SEARCH_LOOP234,10863 -#define MODE_TERMS_LOOPMODE_TERMS_LOOP236,10899 -#define INCLUDE_SUBGOAL_SEARCH_LOOP INCLUDE_SUBGOAL_SEARCH_LOOP237,10923 -#define INCLUDE_ANSWER_SEARCH_LOOP INCLUDE_ANSWER_SEARCH_LOOP238,10991 -#undef TRIE_RATIONAL_TERMSTRIE_RATIONAL_TERMS240,11085 -#define TRIE_RATIONAL_TERMSTRIE_RATIONAL_TERMS242,11135 -#undef INCLUDE_ANSWER_SEARCH_LOOPINCLUDE_ANSWER_SEARCH_LOOP246,11199 -#undef INCLUDE_SUBGOAL_SEARCH_LOOPINCLUDE_SUBGOAL_SEARCH_LOOP247,11233 -#undef MODE_TERMS_LOOPMODE_TERMS_LOOP248,11268 -#define MODE_GLOBAL_TRIE_LOOPMODE_GLOBAL_TRIE_LOOP250,11292 -#define INCLUDE_SUBGOAL_SEARCH_LOOP INCLUDE_SUBGOAL_SEARCH_LOOP251,11322 -#define INCLUDE_ANSWER_SEARCH_LOOP INCLUDE_ANSWER_SEARCH_LOOP253,11445 -#define INCLUDE_LOAD_ANSWER_LOOP INCLUDE_LOAD_ANSWER_LOOP255,11568 -#undef TRIE_RATIONAL_TERMSTRIE_RATIONAL_TERMS257,11660 -#define TRIE_RATIONAL_TERMSTRIE_RATIONAL_TERMS259,11710 -#undef INCLUDE_LOAD_ANSWER_LOOPINCLUDE_LOAD_ANSWER_LOOP263,11774 -#undef INCLUDE_ANSWER_SEARCH_LOOPINCLUDE_ANSWER_SEARCH_LOOP264,11806 -#undef INCLUDE_SUBGOAL_SEARCH_LOOPINCLUDE_SUBGOAL_SEARCH_LOOP265,11840 -#undef MODE_GLOBAL_TRIE_LOOPMODE_GLOBAL_TRIE_LOOP266,11875 -#define INCLUDE_ANSWER_SEARCH_MODE_DIRECTEDINCLUDE_ANSWER_SEARCH_MODE_DIRECTED269,11934 -#undef INCLUDE_ANSWER_SEARCH_MODE_DIRECTEDINCLUDE_ANSWER_SEARCH_MODE_DIRECTED271,12074 -static inline CELL *exec_substitution_loop(gt_node_ptr current_node,exec_substitution_loop274,12153 -#define stack_terms_base stack_terms_base318,14052 -#undef stack_terms_basestack_terms_base447,18759 -static int update_answer_trie_branch(ans_node_ptr previous_node,update_answer_trie_branch453,18857 -static int update_answer_trie_branch(ans_node_ptr current_node) {update_answer_trie_branch498,20526 -static void update_answer_trie_branch(ans_node_ptr current_node, int position) {update_answer_trie_branch516,21135 -static void free_global_trie_branch(gt_node_ptr current_node,free_global_trie_branch541,22045 - -OPTYap/tab.tries.h,3153 -#define INCREMENT_GLOBAL_TRIE_REFERENCE(INCREMENT_GLOBAL_TRIE_REFERENCE19,989 -#define NEW_SUBGOAL_TRIE_NODE(NEW_SUBGOAL_TRIE_NODE25,1398 -#define NEW_ANSWER_TRIE_NODE(NEW_ANSWER_TRIE_NODE28,1618 -#define NEW_GLOBAL_TRIE_NODE(NEW_GLOBAL_TRIE_NODE31,1844 -#define NEW_SUBGOAL_TRIE_NODE(NEW_SUBGOAL_TRIE_NODE35,2069 -#define NEW_ANSWER_TRIE_NODE(NEW_ANSWER_TRIE_NODE37,2208 -#define NEW_GLOBAL_TRIE_NODE(NEW_GLOBAL_TRIE_NODE39,2353 -#define SUBGOAL_CHECK_INSERT_ENTRY(SUBGOAL_CHECK_INSERT_ENTRY44,2557 -#define ANSWER_CHECK_INSERT_ENTRY(ANSWER_CHECK_INSERT_ENTRY46,2701 -#define SUBGOAL_CHECK_INSERT_ENTRY(SUBGOAL_CHECK_INSERT_ENTRY49,2851 -#define ANSWER_CHECK_INSERT_ENTRY(ANSWER_CHECK_INSERT_ENTRY51,3005 -#define ANSWER_SAFE_INSERT_ENTRY(ANSWER_SAFE_INSERT_ENTRY56,3242 -#define INVALIDATE_ANSWER_TRIE_NODE(INVALIDATE_ANSWER_TRIE_NODE64,3747 -#define INVALIDATE_ANSWER_TRIE_NODE(INVALIDATE_ANSWER_TRIE_NODE68,3950 -#define INVALIDATE_ANSWER_TRIE_LEAF_NODE(INVALIDATE_ANSWER_TRIE_LEAF_NODE70,4048 -subgoal_trie_check_insert_gt_entry(tab_ent_ptr tab_ent, sg_node_ptr parent_node,subgoal_trie_check_insert_gt_entry86,4916 -subgoal_trie_check_insert_gt_entry(tab_ent_ptr tab_ent, sg_node_ptr parent_node,subgoal_trie_check_insert_gt_entry192,8534 -answer_trie_check_insert_gt_entry(sg_fr_ptr sg_fr, ans_node_ptr parent_node,answer_trie_check_insert_gt_entry403,16162 -answer_trie_check_insert_gt_entry(sg_fr_ptr sg_fr, ans_node_ptr parent_node,answer_trie_check_insert_gt_entry511,19931 -global_trie_check_insert_gt_entry(gt_node_ptr parent_node, Term t USES_REGS) {global_trie_check_insert_gt_entry723,27624 -global_trie_check_insert_gt_entry(gt_node_ptr parent_node, Term t USES_REGS) {global_trie_check_insert_gt_entry827,31109 -subgoal_search_global_trie_terms_loop(Term t, int *subs_arity_ptr,subgoal_search_global_trie_terms_loop1034,38365 -answer_search_global_trie_terms_loop(Term t, int *vars_arity_ptr,answer_search_global_trie_terms_loop1357,52352 -#define stack_terms_limit stack_terms_limit1411,54749 -#undef stack_terms_limitstack_terms_limit1688,66683 -#undef in_pairin_pair1690,66735 -static inline ans_node_ptr answer_search_min_max(sg_fr_ptr sg_fr,answer_search_min_max1700,67061 -static inline ans_node_ptr answer_search_sum(sg_fr_ptr sg_fr,answer_search_sum1789,70606 -static void invalidate_answer_trie(ans_node_ptr current_node, sg_fr_ptr sg_fr,invalidate_answer_trie1869,73994 -static inline CELL *load_substitution_loop(gt_node_ptr current_node,load_substitution_loop1940,76782 -#define stack_terms_limit stack_terms_limit1981,78583 -#define stack_terms_base stack_terms_base1983,78666 -#undef stack_terms_limitstack_terms_limit2192,87705 -#undef stack_terms_basestack_terms_base2194,87756 -#undef INCREMENT_GLOBAL_TRIE_REFERENCEINCREMENT_GLOBAL_TRIE_REFERENCE2203,87941 -#undef NEW_SUBGOAL_TRIE_NODENEW_SUBGOAL_TRIE_NODE2204,87980 -#undef NEW_ANSWER_TRIE_NODENEW_ANSWER_TRIE_NODE2205,88009 -#undef NEW_GLOBAL_TRIE_NODENEW_GLOBAL_TRIE_NODE2206,88037 -#undef SUBGOAL_CHECK_INSERT_ENTRYSUBGOAL_CHECK_INSERT_ENTRY2207,88065 -#undef ANSWER_CHECK_INSERT_ENTRYANSWER_CHECK_INSERT_ENTRY2208,88099 - -OPTYap/tab.tries.insts.h,23394 -#define TOP_STACK TOP_STACK50,2446 -#define HEAP_ARITY_ENTRY HEAP_ARITY_ENTRY52,2479 -#define VARS_ARITY_ENTRY VARS_ARITY_ENTRY53,2510 -#define SUBS_ARITY_ENTRY SUBS_ARITY_ENTRY54,2554 -#define HEAP_ENTRY(HEAP_ENTRY58,2730 -#define VARS_ENTRY(VARS_ENTRY59,2786 -#define SUBS_ENTRY(SUBS_ENTRY60,2859 -#define next_trie_instruction(next_trie_instruction62,2933 -#define next_instruction(next_instruction67,3173 -#define copy_aux_stack(copy_aux_stack77,3769 -#define store_trie_node(store_trie_node85,4295 -#define restore_trie_node(restore_trie_node104,5532 -#define really_pop_trie_node(really_pop_trie_node115,6225 -#define pop_trie_node(pop_trie_node130,7124 -#define pop_trie_node(pop_trie_node137,7510 -#define aux_stack_null_instr(aux_stack_null_instr147,7860 -#define aux_stack_extension_instr(aux_stack_extension_instr156,8196 -#define aux_stack_term_instr(aux_stack_term_instr169,8828 -#define aux_stack_term_in_pair_instr(aux_stack_term_in_pair_instr181,9582 -#define aux_stack_new_pair_instr(aux_stack_new_pair_instr201,10740 -#define aux_stack_pair_instr(aux_stack_pair_instr218,11840 -#define aux_stack_pair_instr(aux_stack_pair_instr232,12763 -#define aux_stack_appl_instr(aux_stack_appl_instr242,13130 -#define aux_stack_appl_in_pair_instr(aux_stack_appl_in_pair_instr261,14420 -#define aux_stack_var_instr(aux_stack_var_instr289,16160 -#define aux_stack_var_in_pair_instr(aux_stack_var_in_pair_instr310,17512 -#define aux_stack_val_instr(aux_stack_val_instr338,19241 -#define aux_stack_val_in_pair_instr(aux_stack_val_in_pair_instr381,22228 - register ans_node_ptr node = (ans_node_ptr) PREG;node412,24126 - register CELL *aux_stack = TOP_STACK;aux_stack413,24180 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity414,24222 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity415,24277 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity416,24332 - register ans_node_ptr node = (ans_node_ptr) PREG;node423,24456 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack424,24510 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity425,24559 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity426,24614 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity427,24669 - register ans_node_ptr node = (ans_node_ptr) PREG;node435,24812 - register CELL *aux_stack = TOP_STACK;aux_stack436,24866 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity437,24908 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity438,24963 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity439,25018 - register ans_node_ptr node = (ans_node_ptr) PREG;node447,25182 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack448,25236 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity449,25285 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity450,25340 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity451,25395 - register ans_node_ptr node = (ans_node_ptr) PREG;node460,25592 - register CELL *aux_stack = TOP_STACK;aux_stack461,25646 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity462,25688 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity463,25743 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity464,25798 - register ans_node_ptr node = (ans_node_ptr) PREG;node475,26093 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack476,26147 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity477,26196 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity478,26251 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity479,26306 - register ans_node_ptr node = (ans_node_ptr) PREG;node491,26623 - register CELL *aux_stack = TOP_STACK;aux_stack492,26677 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity493,26719 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity494,26774 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity495,26829 - register ans_node_ptr node = (ans_node_ptr) PREG;node507,27165 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack508,27219 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity509,27268 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity510,27323 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity511,27378 - register ans_node_ptr node = (ans_node_ptr) PREG;node522,27681 - register CELL *aux_stack = TOP_STACK;aux_stack523,27735 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity524,27777 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity525,27832 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity526,27887 - int var_index = VarIndexOfTableTerm(TrNode_entry(node));var_index527,27942 - register ans_node_ptr node = (ans_node_ptr) PREG;node534,28078 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack535,28132 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity536,28181 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity537,28236 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity538,28291 - int var_index = VarIndexOfTableTerm(TrNode_entry(node));var_index539,28346 - register ans_node_ptr node = (ans_node_ptr) PREG;node547,28500 - register CELL *aux_stack = TOP_STACK;aux_stack548,28554 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity549,28596 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity550,28651 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity551,28706 - int var_index = VarIndexOfTableTerm(TrNode_entry(node));var_index552,28761 - register ans_node_ptr node = (ans_node_ptr) PREG;node560,28938 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack561,28992 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity562,29041 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity563,29096 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity564,29151 - int var_index = VarIndexOfTableTerm(TrNode_entry(node));var_index565,29206 - register ans_node_ptr node = (ans_node_ptr) PREG;node574,29416 - register CELL *aux_stack = TOP_STACK;aux_stack575,29470 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity576,29512 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity577,29567 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity578,29622 - int var_index = VarIndexOfTableTerm(TrNode_entry(node));var_index579,29677 - register ans_node_ptr node = (ans_node_ptr) PREG;node590,29985 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack591,30039 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity592,30088 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity593,30143 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity594,30198 - int var_index = VarIndexOfTableTerm(TrNode_entry(node));var_index595,30253 - register ans_node_ptr node = (ans_node_ptr) PREG;node607,30583 - register CELL *aux_stack = TOP_STACK;aux_stack608,30637 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity609,30679 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity610,30734 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity611,30789 - int var_index = VarIndexOfTableTerm(TrNode_entry(node));var_index612,30844 - register ans_node_ptr node = (ans_node_ptr) PREG;node624,31193 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack625,31247 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity626,31296 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity627,31351 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity628,31406 - int var_index = VarIndexOfTableTerm(TrNode_entry(node));var_index629,31461 - register ans_node_ptr node = (ans_node_ptr) PREG;node640,31778 - register CELL *aux_stack = TOP_STACK;aux_stack641,31832 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity642,31874 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity643,31929 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity644,31984 - Term t = TrNode_entry(node);t645,32039 - register ans_node_ptr node = (ans_node_ptr) PREG;node652,32143 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack653,32197 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity654,32246 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity655,32301 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity656,32356 - Term t = TrNode_entry(node);t657,32411 - register ans_node_ptr node = (ans_node_ptr) PREG;node665,32534 - register CELL *aux_stack = TOP_STACK;aux_stack666,32588 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity667,32630 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity668,32685 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity669,32740 - Term t = TrNode_entry(node);t670,32795 - register ans_node_ptr node = (ans_node_ptr) PREG;node678,32939 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack679,32993 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity680,33042 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity681,33097 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity682,33152 - Term t = TrNode_entry(node);t683,33207 - register ans_node_ptr node = (ans_node_ptr) PREG;node692,33384 - register CELL *aux_stack = TOP_STACK;aux_stack693,33438 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity694,33480 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity695,33535 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity696,33590 - register ans_node_ptr node = (ans_node_ptr) PREG;node707,33888 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack708,33942 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity709,33991 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity710,34046 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity711,34101 - register ans_node_ptr node = (ans_node_ptr) PREG;node723,34421 - register CELL *aux_stack = TOP_STACK;aux_stack724,34475 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity725,34517 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity726,34572 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity727,34627 - register ans_node_ptr node = (ans_node_ptr) PREG;node739,34966 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack740,35020 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity741,35069 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity742,35124 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity743,35179 - register ans_node_ptr node = (ans_node_ptr) PREG;node754,35485 - register ans_node_ptr node = (ans_node_ptr) PREG;node761,35610 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack762,35664 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity763,35713 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity764,35768 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity765,35823 - register ans_node_ptr node = (ans_node_ptr) PREG;node773,35968 - register CELL *aux_stack = TOP_STACK;aux_stack774,36022 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity775,36064 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity776,36119 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity777,36174 - register ans_node_ptr node = (ans_node_ptr) PREG;node785,36340 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack786,36394 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity787,36443 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity788,36498 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity789,36553 - register ans_node_ptr node = (ans_node_ptr) PREG;node798,36752 - register CELL *aux_stack = TOP_STACK;aux_stack799,36806 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity800,36848 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity801,36903 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity802,36958 - register ans_node_ptr node = (ans_node_ptr) PREG;node813,37252 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack814,37306 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity815,37355 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity816,37410 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity817,37465 - register ans_node_ptr node = (ans_node_ptr) PREG;node829,37781 - register CELL *aux_stack = TOP_STACK;aux_stack830,37835 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity831,37877 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity832,37932 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity833,37987 - register ans_node_ptr node = (ans_node_ptr) PREG;node845,38322 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack846,38376 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity847,38425 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity848,38480 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity849,38535 - register ans_node_ptr node = (ans_node_ptr) PREG;node860,38837 - register CELL *aux_stack = TOP_STACK;aux_stack861,38891 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity862,38933 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity863,38988 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity864,39043 - register ans_node_ptr node = (ans_node_ptr) PREG;node871,39169 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack872,39223 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity873,39272 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity874,39327 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity875,39382 - register ans_node_ptr node = (ans_node_ptr) PREG;node883,39527 - register CELL *aux_stack = TOP_STACK;aux_stack884,39581 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity885,39623 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity886,39678 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity887,39733 - register ans_node_ptr node = (ans_node_ptr) PREG;node895,39899 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack896,39953 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity897,40002 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity898,40057 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity899,40112 - register ans_node_ptr node = (ans_node_ptr) PREG;node907,40277 - register CELL *aux_stack = TOP_STACK;aux_stack908,40331 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity909,40373 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity910,40428 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity911,40483 - Functor func = (Functor) RepAppl(TrNode_entry(node));func912,40538 - arity_t func_arity = ArityOfFunctor(func);func_arity913,40596 - register ans_node_ptr node = (ans_node_ptr) PREG;node920,40715 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack921,40769 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity922,40818 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity923,40873 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity924,40928 - Functor func = (Functor) RepAppl(TrNode_entry(node));func925,40983 - arity_t func_arity = ArityOfFunctor(func);func_arity926,41041 - register ans_node_ptr node = (ans_node_ptr) PREG;node934,41179 - register CELL *aux_stack = TOP_STACK;aux_stack935,41233 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity936,41275 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity937,41326 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity938,41377 - Functor func = (Functor) RepAppl(TrNode_entry(node));func939,41428 - arity_t func_arity = ArityOfFunctor(func);func_arity940,41486 - register ans_node_ptr node = (ans_node_ptr) PREG;node948,41645 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack949,41699 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity950,41748 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity951,41802 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity952,41853 - Functor func = (Functor) RepAppl(TrNode_entry(node));func953,41904 - arity_t func_arity = ArityOfFunctor(func);func_arity954,41962 - register ans_node_ptr node = (ans_node_ptr) PREG;node963,42154 - register CELL *aux_stack = TOP_STACK;aux_stack964,42208 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity965,42250 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity966,42301 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity967,42352 - Functor func = (Functor) RepAppl(TrNode_entry(node));func968,42403 - arity_t func_arity = ArityOfFunctor(func);func_arity969,42461 - register ans_node_ptr node = (ans_node_ptr) PREG;node980,42752 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack981,42806 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity982,42855 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity983,42906 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity984,42961 - Functor func = (Functor) RepAppl(TrNode_entry(node));func985,43016 - arity_t func_arity = ArityOfFunctor(func);func_arity986,43074 - register ans_node_ptr node = (ans_node_ptr) PREG;node998,43387 - register CELL *aux_stack = TOP_STACK;aux_stack999,43441 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity1000,43483 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1001,43538 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1002,43593 - Functor func = (Functor) RepAppl(TrNode_entry(node));func1003,43648 - arity_t func_arity = ArityOfFunctor(func);func_arity1004,43706 - register ans_node_ptr node = (ans_node_ptr) PREG;node1016,44038 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack1017,44092 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity1018,44141 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1019,44196 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1020,44251 - Functor func = (Functor) RepAppl(TrNode_entry(node));func1021,44306 - arity_t func_arity = ArityOfFunctor(func);func_arity1022,44364 - register ans_node_ptr node = (ans_node_ptr) PREG;node1033,44668 - register CELL *aux_stack = TOP_STACK;aux_stack1034,44722 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity1035,44764 - register ans_node_ptr node = (ans_node_ptr) PREG;node1042,44900 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack1043,44954 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity1044,45003 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1045,45058 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1046,45113 - register ans_node_ptr node = (ans_node_ptr) PREG;node1054,45268 - register CELL *aux_stack = TOP_STACK;aux_stack1055,45322 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity1056,45364 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1057,45419 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1058,45474 - register ans_node_ptr node = (ans_node_ptr) PREG;node1066,45650 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack1067,45704 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity1068,45753 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1069,45808 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1070,45863 - register ans_node_ptr node = (ans_node_ptr) PREG;node1078,46035 - register CELL *aux_stack = TOP_STACK;aux_stack1079,46089 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity1080,46131 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1081,46186 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1082,46241 - Float dbl;dbl1084,46317 - Float dbl;__anon405::dbl1084,46317 - Term ts[SIZEOF_DOUBLE/SIZEOF_INT_P];ts1085,46334 - Term ts[SIZEOF_DOUBLE/SIZEOF_INT_P];__anon405::ts1085,46334 - } td;td1086,46377 - Term t;t1087,46387 - register ans_node_ptr node = (ans_node_ptr) PREG;node1121,47425 - register CELL *aux_stack = TOP_STACK;aux_stack1122,47479 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity1123,47521 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1124,47576 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1125,47631 - Term t = MkLongIntTerm(aux_stack[HEAP_ENTRY(1)]);t1126,47686 - register ans_node_ptr node = (ans_node_ptr) PREG;node1151,48352 - register CELL *aux_stack = TOP_STACK;aux_stack1152,48406 - arity_t heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity1153,48448 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1154,48503 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1155,48558 - Term t = AbsAppl((CELL*)aux_stack[HEAP_ENTRY(1)]);t1156,48613 - register ans_node_ptr node = (ans_node_ptr) PREG;node1182,49274 - register CELL *aux_stack = TOP_STACK;aux_stack1183,49328 - arity_t heap_arity = 0;heap_arity1184,49370 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1185,49399 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1186,49454 - register ans_node_ptr node = (ans_node_ptr) PREG;node1194,49677 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack1195,49731 - arity_t heap_arity = 0;heap_arity1196,49780 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1197,49809 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1198,49864 - register ans_node_ptr node = (ans_node_ptr) PREG;node1207,50106 - register CELL *aux_stack = TOP_STACK;aux_stack1208,50160 - arity_t heap_arity = 0;heap_arity1209,50202 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1210,50231 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1211,50286 - register ans_node_ptr node = (ans_node_ptr) PREG;node1220,50549 - register CELL *aux_stack = (CELL *) (B + 1);aux_stack1221,50603 - arity_t heap_arity = 0;heap_arity1222,50652 - arity_t vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity1223,50681 - arity_t subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity1224,50736 - -OPTYap/traced_or.insts.h,148 -PBOp(getwork_first_time,e)PBOp18,1007 - PBOp(getwork,Otapl)PBOp25,1119 -PBOp(getwork_seq,Otapl)PBOp33,1373 - PBOp(sync,Otapl)PBOp39,1477 - -OPTYap/traced_tab.insts.h,824 -#define TOP_STACK TOP_STACK14,889 -#define HEAP_ARITY_ENTRY HEAP_ARITY_ENTRY16,922 -#define VARS_ARITY_ENTRY VARS_ARITY_ENTRY17,953 -#define SUBS_ARITY_ENTRY SUBS_ARITY_ENTRY18,997 -#define HEAP_ENTRY(HEAP_ENTRY22,1173 -#define VARS_ENTRY(VARS_ENTRY23,1229 -#define SUBS_ENTRY(SUBS_ENTRY24,1302 -PBOp(table_load_answer, Otapl)PBOp41,1936 - PBOp(table_try_answer, Otapl)PBOp51,2271 - PBOp(table_try_single, Otapl)PBOp61,2608 - PBOp(table_try_me, Otapl)PBOp71,2945 - PBOp(table_try, Otapl)PBOp81,3278 - Op(table_retry_me, Otapl)Op92,3612 - Op(table_retry, Otapl)Op102,3943 - Op(table_trust_me, Otapl)Op112,4272 - Op(table_trust, Otapl)Op122,4603 - PBOp(table_new_answer, s)PBOp132,4932 - BOp(table_answer_resolution, Otapl)BOp142,5265 - BOp(table_answer_resolution_completion, Otapl)BOp162,5908 - -OPTYap/traced_tab.tries.insts.h,4891 -#define TOP_STACK TOP_STACK50,2450 -#define HEAP_ARITY_ENTRY HEAP_ARITY_ENTRY52,2483 -#define VARS_ARITY_ENTRY VARS_ARITY_ENTRY53,2514 -#define SUBS_ARITY_ENTRY SUBS_ARITY_ENTRY54,2558 -#define HEAP_ENTRY(HEAP_ENTRY58,2734 -#define VARS_ENTRY(VARS_ENTRY59,2790 -#define SUBS_ENTRY(SUBS_ENTRY60,2863 -#define next_trie_instruction(next_trie_instruction62,2937 -#define next_instruction(next_instruction67,3056 -#define copy_aux_stack(copy_aux_stack77,3305 -#define store_trie_node(store_trie_node85,3714 -#define restore_trie_node(restore_trie_node104,4236 -#define really_pop_trie_node(really_pop_trie_node115,4573 -#define pop_trie_node(pop_trie_node130,4990 -#define pop_trie_node(pop_trie_node137,5145 -#define aux_stack_null_instr(aux_stack_null_instr147,5446 -#define aux_stack_extension_instr(aux_stack_extension_instr156,5739 -#define aux_stack_term_instr(aux_stack_term_instr169,6281 -#define aux_stack_term_in_pair_instr(aux_stack_term_in_pair_instr181,6732 -#define aux_stack_new_pair_instr(aux_stack_new_pair_instr201,7509 -#define aux_stack_pair_instr(aux_stack_pair_instr218,8179 -#define aux_stack_pair_instr(aux_stack_pair_instr232,8722 -#define aux_stack_appl_instr(aux_stack_appl_instr242,9046 -#define aux_stack_appl_in_pair_instr(aux_stack_appl_in_pair_instr261,9804 -#define aux_stack_var_instr(aux_stack_var_instr289,10911 -#define aux_stack_var_in_pair_instr(aux_stack_var_in_pair_instr310,11801 -#define aux_stack_val_instr(aux_stack_val_instr338,12953 -#define aux_stack_val_in_pair_instr(aux_stack_val_in_pair_instr381,14577 -PBOp(trie_do_var, e)PBOp410,16129 -PBOp(trie_trust_var, e)PBOp416,16219 -PBOp(trie_try_var, e)PBOp421,16311 -PBOp(trie_retry_var, e)PBOp427,16406 - PBOp(trie_do_var_in_pair, e)PBOp432,16498 - PBOp(trie_trust_var_in_pair, e)PBOp437,16599 - PBOp(trie_try_var_in_pair, e)PBOp442,16703 - PBOp(trie_retry_var_in_pair, e)PBOp447,16805 - PBOp(trie_do_val, e)PBOp452,16909 - PBOp(trie_trust_val, e)PBOp457,17002 - PBOp(trie_try_val, e)PBOp462,17098 - PBOp(trie_retry_val, e)PBOp467,17193 - PBOp(trie_do_val_in_pair, e)PBOp472,17289 - PBOp(trie_trust_val_in_pair, e)PBOp477,17390 - PBOp(trie_try_val_in_pair, e)PBOp482,17494 - PBOp(trie_retry_val_in_pair, e)PBOp487,17596 - PBOp(trie_do_atom, e)PBOp492,17700 - PBOp(trie_trust_atom, e)PBOp497,17794 - PBOp(trie_try_atom, e)PBOp502,17891 - PBOp(trie_retry_atom, e)PBOp507,17986 - PBOp(trie_do_atom_in_pair, e)PBOp512,18083 - PBOp(trie_trust_atom_in_pair, e)PBOp517,18185 - PBOp(trie_try_atom_in_pair, e)PBOp522,18290 - PBOp(trie_retry_atom_in_pair, e)PBOp527,18393 - PBOp(trie_do_null, e)PBOp532,18498 - PBOp(trie_trust_null, e)PBOp537,18592 - PBOp(trie_try_null, e)PBOp542,18689 - PBOp(trie_retry_null, e)PBOp547,18784 - PBOp(trie_do_null_in_pair, e)PBOp552,18881 - PBOp(trie_trust_null_in_pair, e)PBOp557,18983 -PBOp(trie_try_null_in_pair, e)PBOp562,19086 - PBOp(trie_retry_null_in_pair, e)PBOp567,19186 -PBOp(trie_do_pair, e)PBOp572,19288 - PBOp(trie_trust_pair, e)PBOp577,19380 - PBOp(trie_try_pair, e)PBOp582,19477 - PBOp(trie_retry_pair, e)PBOp587,19572 - PBOp(trie_do_appl, e)PBOp592,19669 - PBOp(trie_trust_appl, e)PBOp597,19763 - PBOp(trie_try_appl, e)PBOp602,19860 - PBOp(trie_retry_appl, e)PBOp607,19955 - PBOp(trie_do_appl_in_pair, e)PBOp612,20052 - PBOp(trie_trust_appl_in_pair, e)PBOp617,20152 - PBOp(trie_try_appl_in_pair, e)PBOp622,20257 - PBOp(trie_retry_appl_in_pair, e)PBOp627,20360 - PBOp(trie_do_extension, e)PBOp632,20465 - PBOp(trie_trust_extension, e)PBOp637,20564 - PBOp(trie_try_extension, e)PBOp642,20666 - PBOp(trie_retry_extension, e)PBOp647,20766 - register ans_node_ptr node = (ans_node_ptr) PREG;node653,20894 - register CELL *aux_stack = TOP_STACK;aux_stack654,20948 - int heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity655,20990 - int vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity656,21040 - int subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity657,21090 - Float dbl;dbl659,21161 - Float dbl;__anon406::dbl659,21161 - Term ts[SIZEOF_DOUBLE/SIZEOF_INT_P];ts660,21178 - Term ts[SIZEOF_DOUBLE/SIZEOF_INT_P];__anon406::ts660,21178 - } td;td661,21221 - Term t;t662,21231 - register ans_node_ptr node = (ans_node_ptr) PREG;node697,22324 - register CELL *aux_stack = TOP_STACK;aux_stack698,22378 - int heap_arity = aux_stack[HEAP_ARITY_ENTRY];heap_arity699,22420 - int vars_arity = aux_stack[VARS_ARITY_ENTRY];vars_arity700,22470 - int subs_arity = aux_stack[SUBS_ARITY_ENTRY];subs_arity701,22520 - Term t = MkLongIntTerm(aux_stack[HEAP_ENTRY(1)]);t702,22570 - PBOp(trie_do_bigint, e)PBOp726,23175 - PBOp(trie_do_gterm, e)PBOp744,23396 - PBOp(trie_trust_gterm, e)PBOp750,23492 - PBOp(trie_try_gterm, e)PBOp755,23590 - PBOp(trie_retry_gterm, e)PBOp760,23687 - -os/alias.c,981 -static char SccsId[] = "%W% %G%";SccsId18,599 -#define SYSTEM_STAT SYSTEM_STAT117,3039 -#define SYSTEM_STAT SYSTEM_STAT119,3071 -static Int add_alias_to_stream (USES_REGS1)add_alias_to_stream135,3471 -static Int check_if_valid_new_alias (USES_REGS1)check_if_valid_new_alias167,4474 -Yap_FetchStreamAlias (int sno, Term t2 USES_REGS)Yap_FetchStreamAlias185,4872 -ExtendAliasArray(void)ExtendAliasArray205,5308 -Yap_SetAlias (Atom arg, int sno)Yap_SetAlias219,5712 -Yap_DeleteAliases (int sno)Yap_DeleteAliases263,6754 -Yap_CheckAlias (Atom arg)Yap_CheckAlias304,7787 -FetchAlias (int sno)FetchAlias321,8115 -ExistsAliasForStream (int sno, Atom al)ExistsAliasForStream337,8434 -Yap_FindStreamForAlias (Atom al)Yap_FindStreamForAlias353,8779 -Yap_RemoveAlias (Atom arg, int sno)Yap_RemoveAlias370,9119 -Yap_AddAlias (Atom arg, int sno)Yap_AddAlias397,9783 -Yap_InitStandardAliases(void)Yap_InitStandardAliases422,10429 -Yap_InitAliases(void)Yap_InitAliases451,11287 - -os/assets.c,1077 -static char SccsId[] = "%W% %G%";SccsId18,603 -static AAssetManager * getMgr(struct vfs *me)getMgr39,906 -Java_pt_up_yap_app_YAPDroid_load(JNIEnv *env,Java_pt_up_yap_app_YAPDroid_load46,990 -open_asset(struct vfs *me, struct stream_desc *st, const char *fname, const charopen_asset61,1373 -close_asset(struct stream_desc *st)close_asset114,2790 -static int64_t seek64(struct stream_desc *st, int64_t offset, int whence)seek64120,2878 -static int getc_asset(struct stream_desc *st)getc_asset125,3014 -static void *opendir_a(struct vfs *me, const char *dirName)opendir_a134,3150 -static const char *readdir_a(void *dirHandle)readdir_a139,3280 -static bool closedir_a(void *dirHandle)closedir_a144,3395 -static bool stat_a(struct vfs *me, const char *fname, vfs_stat *out)stat_a151,3505 -bool is_dir_a(struct vfs *me, const char *dirName)is_dir_a174,4336 -bool exists_a(struct vfs *me, const char *dirName)exists_a187,4638 -static bool set_cwd (struct vfs *me, const char *dirName) {set_cwd198,4889 -Yap_InitAssetManager(void)Yap_InitAssetManager212,5165 - -os/charsio.c,3429 -static char SccsId[] = "%W% %G%";SccsId18,605 -#define S_ISDIR(S_ISDIR68,1570 -INLINE_ONLY inline EXTERN Int CharOfAtom(Atom at) {CharOfAtom89,2047 -Int Yap_peek(int sno) {Yap_peek96,2167 -static Int dopeek_byte(int sno) {dopeek_byte198,5027 -bool store_code(int ch, Term t USES_REGS) {store_code216,5434 -static Int at_end_of_stream(USES_REGS1) { /* at_end_of_stream */at_end_of_stream237,6016 -static Int at_end_of_stream_0(USES_REGS1) { /* at_end_of_stream */at_end_of_stream_0264,6619 -static int yap_fflush(int sno) {yap_fflush277,6925 -static Int get(USES_REGS1) { /* '$get'(Stream,-N) */get299,7646 -static Int get_char(USES_REGS1) { /* '$get'(Stream,-N) */get_char319,8286 -static Int get_code(USES_REGS1) { /* get0(Stream,-N) */get_code347,9028 -static Int get_1(USES_REGS1) { /* get_code1(Stream,-N) */get_1371,9777 -static Int getcode_1(USES_REGS1) { /* get0(Stream,-N) */getcode_1399,10592 -static Int getchar_1(USES_REGS1) { /* get0(Stream,-N) */getchar_1426,11404 -static Int get0_line_codes(USES_REGS1) { /* '$get0'(Stream,-N) */get0_line_codes451,12145 -static Int get_byte(USES_REGS1) { /* '$get_byte'(Stream,-N) */get_byte478,12813 -static Int get_byte_1(USES_REGS1) { /* '$get_byte'(Stream,-N) */get_byte_1498,13336 -static Int put_code_1(USES_REGS1) { /* '$put'(,N) */put_code_1526,14203 -static Int put_code(USES_REGS1) { /* '$put'(Stream,N) */put_code556,15012 -static Int put_char_1(USES_REGS1) { /* '$put'(,N) */put_char_1598,16157 -static Int put_char(USES_REGS1) { /* '$put'(Stream,N) */put_char634,17165 -static Int tab_1(USES_REGS1) { /* nl */tab_1670,18226 -static Int tab(USES_REGS1) { /* nl(Stream) */tab708,19259 -static Int nl_1(USES_REGS1) { /* nl */nl_1746,20298 -static Int nl(USES_REGS1) { /* nl(Stream) */nl772,20913 -static Int put_byte(USES_REGS1) { /* '$put_byte'(Stream,N) */put_byte796,21571 -static Int put_byte_1(USES_REGS1) { /* '$put_byte'(Stream,N) */put_byte_1829,22487 -static Int skip_1(USES_REGS1) { /* 'skip'(N) */skip_1865,23537 -static Int skip(USES_REGS1) { /* '$skip'(Stream,N) */skip897,24317 -static Int flush_output(USES_REGS1) { /* flush_output(Stream) */flush_output933,25300 -static Int flush_output0(USES_REGS1) { /* flush_output */flush_output0953,25844 -static Int flush_all_streams(USES_REGS1) { /* $flush_all_streams */flush_all_streams958,25968 -static Int peek_code(USES_REGS1) { /* at_end_of_stream */peek_code981,26533 -static Int peek_code_1(USES_REGS1) { /* at_end_of_stream */peek_code_11012,27417 -static Int peek_byte(USES_REGS1) { /* at_end_of_stream */peek_byte1040,28257 -static Int peek_byte_1(USES_REGS1) { /* at_end_of_stream */peek_byte_11069,29125 -static Int peek_char(USES_REGS1) {peek_char1099,30007 -static Int peek_char_1(USES_REGS1) {peek_char_11129,30965 -void Yap_flush(void) { CACHE_REGS(void) flush_all_streams(PASS_REGS1); }Yap_flush1168,32058 -void Yap_FlushStreams(void) { CACHE_REGS(void) flush_all_streams(PASS_REGS1); }Yap_FlushStreams1170,32132 -void Yap_InitCharsio(void) {Yap_InitCharsio1172,32213 - -os/chartypes.c,5431 -static char SccsId[] = "%W% %G%";SccsId18,605 -#define S_ISDIR(S_ISDIR73,1458 -Term Yap_StringToNumberTerm(const char *s, encoding_t *encp, bool error_on) {Yap_StringToNumberTerm81,1610 -const char *encvs[] = {"LANG", "LC_ALL", "LC_CTYPE", NULL};encvs105,2234 -typedef struct enc_map {enc_map108,2328 - const char *s;s109,2353 - const char *s;enc_map::s109,2353 - encoding_t e;e110,2370 - encoding_t e;enc_map::e110,2370 -} enc_map_t;enc_map_t111,2386 -static enc_map_t ematches[] = {ematches113,2400 -static encoding_t enc_os_default(encoding_t rc) {enc_os_default130,2892 -encoding_t Yap_SystemEncoding(void) {Yap_SystemEncoding142,3175 -static encoding_t DefaultEncoding(void) {DefaultEncoding172,3867 -encoding_t Yap_DefaultEncoding(void) {Yap_DefaultEncoding176,3959 -void Yap_SetDefaultEncoding(encoding_t new_encoding) {Yap_SetDefaultEncoding181,4039 -static Int get_default_encoding(USES_REGS1) {get_default_encoding186,4143 -static Int p_encoding(USES_REGS1) { /* '$encoding'(Stream,N) */p_encoding191,4274 -static int get_char(Term t) {get_char206,4744 -static int get_code(Term t) {get_code227,5211 -static int get_char_or_code(Term t, bool *is_char) {get_char_or_code244,5574 -static Int toupper2(USES_REGS1) {toupper2269,6157 -static Int tolower2(USES_REGS1) {tolower2303,7036 - p_change_type_of_char(USES_REGS1) { /* change_type_of_char(+char,+type) */p_change_type_of_char339,7954 -static Int char_type_alnum(USES_REGS1) {char_type_alnum350,8278 -static Int char_type_alpha(USES_REGS1) {char_type_alpha356,8428 -static Int char_type_csym(USES_REGS1) {char_type_csym362,8567 -static Int char_type_csymf(USES_REGS1) {char_type_csymf368,8705 -static Int char_type_ascii(USES_REGS1) {char_type_ascii374,8844 -static Int char_type_white(USES_REGS1) {char_type_white379,8937 -static Int char_type_cntrl(USES_REGS1) {char_type_cntrl389,9173 -static Int char_type_digit(USES_REGS1) {char_type_digit395,9301 -static Int char_type_xdigit(USES_REGS1) {char_type_xdigit401,9429 -static Int char_type_graph(USES_REGS1) {char_type_graph412,9689 -static Int char_type_lower(USES_REGS1) {char_type_lower417,9783 -static Int char_type_upper(USES_REGS1) {char_type_upper423,9911 -static Int char_type_punct(USES_REGS1) {char_type_punct429,10039 -static Int char_type_space(USES_REGS1) {char_type_space438,10215 -static Int char_type_end_of_file(USES_REGS1) {char_type_end_of_file448,10483 -static Int char_type_end_of_line(USES_REGS1) {char_type_end_of_line453,10593 -static Int char_type_newline(USES_REGS1) {char_type_newline462,10844 -static Int char_type_period(USES_REGS1) {char_type_period470,10976 -static Int char_type_quote(USES_REGS1) {char_type_quote475,11094 -static Int char_type_paren(USES_REGS1) {char_type_paren481,11282 -static Int char_type_prolog_var_start(USES_REGS1) {char_type_prolog_var_start487,11470 -static Int char_type_prolog_atom_start(USES_REGS1) {char_type_prolog_atom_start493,11622 -static Int char_type_prolog_identifier_continue(USES_REGS1) {char_type_prolog_identifier_continue499,11762 -static Int char_type_prolog_prolog_symbol(USES_REGS1) {char_type_prolog_prolog_symbol505,11922 -static Int code_type_alnum(USES_REGS1) {code_type_alnum511,12076 -static Int code_type_alpha(USES_REGS1) {code_type_alpha517,12226 -static Int code_type_csym(USES_REGS1) {code_type_csym523,12365 -static Int code_type_csymf(USES_REGS1) {code_type_csymf529,12503 -static Int code_type_ascii(USES_REGS1) {code_type_ascii535,12642 -static Int code_type_white(USES_REGS1) {code_type_white540,12735 -static Int code_type_cntrl(USES_REGS1) {code_type_cntrl550,12971 -static Int code_type_digit(USES_REGS1) {code_type_digit556,13099 -static Int code_type_xdigit(USES_REGS1) {code_type_xdigit562,13227 -static Int code_type_graph(USES_REGS1) {code_type_graph573,13487 -static Int code_type_lower(USES_REGS1) {code_type_lower578,13581 -static Int code_type_upper(USES_REGS1) {code_type_upper584,13709 -static Int code_type_punct(USES_REGS1) {code_type_punct590,13837 -static Int code_type_space(USES_REGS1) {code_type_space599,14013 -static Int code_type_end_of_file(USES_REGS1) {code_type_end_of_file609,14281 -static Int code_type_end_of_line(USES_REGS1) {code_type_end_of_line614,14391 -static Int code_type_newline(USES_REGS1) {code_type_newline623,14642 -static Int code_type_period(USES_REGS1) {code_type_period631,14774 -static Int code_type_quote(USES_REGS1) {code_type_quote636,14892 -static Int code_type_paren(USES_REGS1) {code_type_paren642,15080 -static Int code_type_prolog_var_start(USES_REGS1) {code_type_prolog_var_start648,15268 -static Int code_type_prolog_atom_start(USES_REGS1) {code_type_prolog_atom_start654,15420 -static Int code_type_prolog_identifier_continue(USES_REGS1) {code_type_prolog_identifier_continue660,15560 -static Int code_type_prolog_prolog_symbol(USES_REGS1) {code_type_prolog_prolog_symbol666,15720 -int ISOWGetc(int sno) {ISOWGetc672,15874 -static Int p_force_char_conversion(USES_REGS1) {p_force_char_conversion684,16142 -static Int p_disable_char_conversion(USES_REGS1) {p_disable_char_conversion698,16566 -static Int char_conversion(USES_REGS1) {char_conversion709,16855 -static Int p_current_char_conversion(USES_REGS1) {p_current_char_conversion768,18637 -static Int p_all_char_conversions(USES_REGS1) {p_all_char_conversions812,19937 -void Yap_InitChtypes(void) {Yap_InitChtypes836,20492 - -os/chartypes.yap,172986 -:- discontiguous digit_weight/2, digit_weight/3.discontiguous147,4205 -:- discontiguous digit_weight/2, digit_weight/3.discontiguous147,4205 -prolog:char_type( CH, TYPE) :-char_type149,4255 -prolog:char_type( CH, TYPE) :-char_type149,4255 -p_char_type( ALNUM, alnum) :-p_char_type165,4439 -p_char_type( ALNUM, alnum) :-p_char_type165,4439 -p_char_type( ALNUM, alnum) :-p_char_type165,4439 -p_char_type( ALPHA, alpha) :-p_char_type167,4499 -p_char_type( ALPHA, alpha) :-p_char_type167,4499 -p_char_type( ALPHA, alpha) :-p_char_type167,4499 -p_char_type( CSYM, csym) :-p_char_type169,4558 -p_char_type( CSYM, csym) :-p_char_type169,4558 -p_char_type( CSYM, csym) :-p_char_type169,4558 -p_char_type( CSYMF, csymf) :-p_char_type171,4614 -p_char_type( CSYMF, csymf) :-p_char_type171,4614 -p_char_type( CSYMF, csymf) :-p_char_type171,4614 -p_char_type( ASCII, ascii ) :-p_char_type173,4673 -p_char_type( ASCII, ascii ) :-p_char_type173,4673 -p_char_type( ASCII, ascii ) :-p_char_type173,4673 -p_char_type( WHITE, white) :-p_char_type175,4734 -p_char_type( WHITE, white) :-p_char_type175,4734 -p_char_type( WHITE, white) :-p_char_type175,4734 -p_char_type( CNTRL , cntrl) :-p_char_type177,4794 -p_char_type( CNTRL , cntrl) :-p_char_type177,4794 -p_char_type( CNTRL , cntrl) :-p_char_type177,4794 -p_char_type( DIGIT , digit) :-p_char_type179,4855 -p_char_type( DIGIT , digit) :-p_char_type179,4855 -p_char_type( DIGIT , digit) :-p_char_type179,4855 -p_char_type( DIGIT, digit(Weight) ) :-p_char_type181,4916 -p_char_type( DIGIT, digit(Weight) ) :-p_char_type181,4916 -p_char_type( DIGIT, digit(Weight) ) :-p_char_type181,4916 -p_char_type( XDIGIT, xdigit(Weight) ) :-p_char_type184,5021 -p_char_type( XDIGIT, xdigit(Weight) ) :-p_char_type184,5021 -p_char_type( XDIGIT, xdigit(Weight) ) :-p_char_type184,5021 -p_char_type( GRAPH , graph) :-p_char_type187,5131 -p_char_type( GRAPH , graph) :-p_char_type187,5131 -p_char_type( GRAPH , graph) :-p_char_type187,5131 -p_char_type( LOWER , lower) :-p_char_type189,5192 -p_char_type( LOWER , lower) :-p_char_type189,5192 -p_char_type( LOWER , lower) :-p_char_type189,5192 -p_char_type( LOWER, lower( Upper)) :-p_char_type191,5253 -p_char_type( LOWER, lower( Upper)) :-p_char_type191,5253 -p_char_type( LOWER, lower( Upper)) :-p_char_type191,5253 -p_char_type( LOWER, to_lower( Upper)) :-p_char_type194,5346 -p_char_type( LOWER, to_lower( Upper)) :-p_char_type194,5346 -p_char_type( LOWER, to_lower( Upper)) :-p_char_type194,5346 -p_char_type( UPPER, upper ) :-p_char_type196,5412 -p_char_type( UPPER, upper ) :-p_char_type196,5412 -p_char_type( UPPER, upper ) :-p_char_type196,5412 -p_char_type( UPPER , upper( Lower)) :-p_char_type198,5475 -p_char_type( UPPER , upper( Lower)) :-p_char_type198,5475 -p_char_type( UPPER , upper( Lower)) :-p_char_type198,5475 -p_char_type( UPPER, to_upper( Lower) ) :-p_char_type201,5572 -p_char_type( UPPER, to_upper( Lower) ) :-p_char_type201,5572 -p_char_type( UPPER, to_upper( Lower) ) :-p_char_type201,5572 -p_char_type( PUNCT , punct) :-p_char_type203,5639 -p_char_type( PUNCT , punct) :-p_char_type203,5639 -p_char_type( PUNCT , punct) :-p_char_type203,5639 -p_char_type( SPACE , space) :-p_char_type205,5700 -p_char_type( SPACE , space) :-p_char_type205,5700 -p_char_type( SPACE , space) :-p_char_type205,5700 -p_char_type( END_OF_FILE , end_of_file) :-p_char_type207,5761 -p_char_type( END_OF_FILE , end_of_file) :-p_char_type207,5761 -p_char_type( END_OF_FILE , end_of_file) :-p_char_type207,5761 -p_char_type( END_OF_LINE , end_of_line) :-p_char_type209,5846 -p_char_type( END_OF_LINE , end_of_line) :-p_char_type209,5846 -p_char_type( END_OF_LINE , end_of_line) :-p_char_type209,5846 -p_char_type( NEWLINE , newline) :-p_char_type211,5931 -p_char_type( NEWLINE , newline) :-p_char_type211,5931 -p_char_type( NEWLINE , newline) :-p_char_type211,5931 -p_char_type( PERIOD , period) :-p_char_type213,6000 -p_char_type( PERIOD , period) :-p_char_type213,6000 -p_char_type( PERIOD , period) :-p_char_type213,6000 -p_char_type( QUOTE , quote) :-p_char_type215,6065 -p_char_type( QUOTE , quote) :-p_char_type215,6065 -p_char_type( QUOTE , quote) :-p_char_type215,6065 -p_char_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_char_type217,6126 -p_char_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_char_type217,6126 -p_char_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_char_type217,6126 -p_char_type( PROLOG_VAR_START , prolog_var_start) :-p_char_type219,6220 -p_char_type( PROLOG_VAR_START , prolog_var_start) :-p_char_type219,6220 -p_char_type( PROLOG_VAR_START , prolog_var_start) :-p_char_type219,6220 -p_char_type( PROLOG_ATOM_START , prolog_atom_start) :-p_char_type221,6325 -p_char_type( PROLOG_ATOM_START , prolog_atom_start) :-p_char_type221,6325 -p_char_type( PROLOG_ATOM_START , prolog_atom_start) :-p_char_type221,6325 -p_char_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_char_type223,6434 -p_char_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_char_type223,6434 -p_char_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_char_type223,6434 -p_char_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_char_type225,6579 -p_char_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_char_type225,6579 -p_char_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_char_type225,6579 -prolog:code_type(CH, TYPE) :-code_type228,6701 -prolog:code_type(CH, TYPE) :-code_type228,6701 -p_code_type( ALNUM, alnum) :-p_code_type242,6873 -p_code_type( ALNUM, alnum) :-p_code_type242,6873 -p_code_type( ALNUM, alnum) :-p_code_type242,6873 -p_code_type( ALPHA, alpha) :-p_code_type244,6930 -p_code_type( ALPHA, alpha) :-p_code_type244,6930 -p_code_type( ALPHA, alpha) :-p_code_type244,6930 -p_code_type( CSYM, csym) :-p_code_type246,6986 -p_code_type( CSYM, csym) :-p_code_type246,6986 -p_code_type( CSYM, csym) :-p_code_type246,6986 -p_code_type( CSYMF, csymf) :-p_code_type248,7039 -p_code_type( CSYMF, csymf) :-p_code_type248,7039 -p_code_type( CSYMF, csymf) :-p_code_type248,7039 -p_code_type( ASCII, ascii ) :-p_code_type250,7095 -p_code_type( ASCII, ascii ) :-p_code_type250,7095 -p_code_type( ASCII, ascii ) :-p_code_type250,7095 -p_code_type( WHITE, white) :-p_code_type252,7153 -p_code_type( WHITE, white) :-p_code_type252,7153 -p_code_type( WHITE, white) :-p_code_type252,7153 -p_code_type( CNTRL , cntrl) :-p_code_type254,7210 -p_code_type( CNTRL , cntrl) :-p_code_type254,7210 -p_code_type( CNTRL , cntrl) :-p_code_type254,7210 -p_code_type( DIGIT , digit) :-p_code_type256,7268 -p_code_type( DIGIT , digit) :-p_code_type256,7268 -p_code_type( DIGIT , digit) :-p_code_type256,7268 -p_code_type( DIGIT, digit(Weight) ) :-p_code_type258,7326 -p_code_type( DIGIT, digit(Weight) ) :-p_code_type258,7326 -p_code_type( DIGIT, digit(Weight) ) :-p_code_type258,7326 -p_code_type( XDIGIT, xdigit(Weight) ) :-p_code_type261,7425 -p_code_type( XDIGIT, xdigit(Weight) ) :-p_code_type261,7425 -p_code_type( XDIGIT, xdigit(Weight) ) :-p_code_type261,7425 -p_code_type( GRAPH , graph) :-p_code_type264,7528 -p_code_type( GRAPH , graph) :-p_code_type264,7528 -p_code_type( GRAPH , graph) :-p_code_type264,7528 -p_code_type( LOWER , lower) :-p_code_type266,7586 -p_code_type( LOWER , lower) :-p_code_type266,7586 -p_code_type( LOWER , lower) :-p_code_type266,7586 -p_code_type( LOWER, lower( Upper)) :-p_code_type268,7644 -p_code_type( LOWER, lower( Upper)) :-p_code_type268,7644 -p_code_type( LOWER, lower( Upper)) :-p_code_type268,7644 -p_code_type( LOWER, to_lower( Upper)) :-p_code_type271,7734 -p_code_type( LOWER, to_lower( Upper)) :-p_code_type271,7734 -p_code_type( LOWER, to_lower( Upper)) :-p_code_type271,7734 -p_code_type( UPPER, upper ) :-p_code_type273,7800 -p_code_type( UPPER, upper ) :-p_code_type273,7800 -p_code_type( UPPER, upper ) :-p_code_type273,7800 -p_code_type( UPPER , upper( Lower)) :-p_code_type275,7859 -p_code_type( UPPER , upper( Lower)) :-p_code_type275,7859 -p_code_type( UPPER , upper( Lower)) :-p_code_type275,7859 -p_code_type( UPPER, to_upper( Lower) ) :-p_code_type277,7923 -p_code_type( UPPER, to_upper( Lower) ) :-p_code_type277,7923 -p_code_type( UPPER, to_upper( Lower) ) :-p_code_type277,7923 -p_code_type( PUNCT , punct) :-p_code_type280,8016 -p_code_type( PUNCT , punct) :-p_code_type280,8016 -p_code_type( PUNCT , punct) :-p_code_type280,8016 -p_code_type( SPACE , space) :-p_code_type282,8074 -p_code_type( SPACE , space) :-p_code_type282,8074 -p_code_type( SPACE , space) :-p_code_type282,8074 -p_code_type( END_OF_FILE , end_of_file) :-p_code_type284,8132 -p_code_type( END_OF_FILE , end_of_file) :-p_code_type284,8132 -p_code_type( END_OF_FILE , end_of_file) :-p_code_type284,8132 -p_code_type( END_OF_LINE , end_of_line) :-p_code_type286,8214 -p_code_type( END_OF_LINE , end_of_line) :-p_code_type286,8214 -p_code_type( END_OF_LINE , end_of_line) :-p_code_type286,8214 -p_code_type( NEWLINE , newline) :-p_code_type288,8296 -p_code_type( NEWLINE , newline) :-p_code_type288,8296 -p_code_type( NEWLINE , newline) :-p_code_type288,8296 -p_code_type( PERIOD , period) :-p_code_type290,8362 -p_code_type( PERIOD , period) :-p_code_type290,8362 -p_code_type( PERIOD , period) :-p_code_type290,8362 -p_code_type( QUOTE , quote) :-p_code_type292,8424 -p_code_type( QUOTE , quote) :-p_code_type292,8424 -p_code_type( QUOTE , quote) :-p_code_type292,8424 -p_code_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_code_type294,8482 -p_code_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_code_type294,8482 -p_code_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_code_type294,8482 -p_code_type( PROLOG_VAR_START , prolog_var_start) :-p_code_type296,8573 -p_code_type( PROLOG_VAR_START , prolog_var_start) :-p_code_type296,8573 -p_code_type( PROLOG_VAR_START , prolog_var_start) :-p_code_type296,8573 -p_code_type( PROLOG_ATOM_START , prolog_atom_start) :-p_code_type298,8675 -p_code_type( PROLOG_ATOM_START , prolog_atom_start) :-p_code_type298,8675 -p_code_type( PROLOG_ATOM_START , prolog_atom_start) :-p_code_type298,8675 -p_code_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_code_type300,8781 -p_code_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_code_type300,8781 -p_code_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_code_type300,8781 -p_code_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_code_type302,8923 -p_code_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_code_type302,8923 -p_code_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_code_type302,8923 -digit_weight( 0x0F33, -1/2).digit_weight315,9259 -digit_weight( 0x0F33, -1/2).digit_weight315,9259 -digit_weight( 0x0030, 0).digit_weight316,9288 -digit_weight( 0x0030, 0).digit_weight316,9288 -digit_weight( 0x0660, 0).digit_weight317,9314 -digit_weight( 0x0660, 0).digit_weight317,9314 -digit_weight( 0x06F0, 0).digit_weight318,9340 -digit_weight( 0x06F0, 0).digit_weight318,9340 -digit_weight( 0x07C0, 0).digit_weight319,9366 -digit_weight( 0x07C0, 0).digit_weight319,9366 -digit_weight( 0x0966, 0).digit_weight320,9392 -digit_weight( 0x0966, 0).digit_weight320,9392 -digit_weight( 0x09E6, 0).digit_weight321,9418 -digit_weight( 0x09E6, 0).digit_weight321,9418 -digit_weight( 0x0A66, 0).digit_weight322,9444 -digit_weight( 0x0A66, 0).digit_weight322,9444 -digit_weight( 0x0AE6, 0).digit_weight323,9470 -digit_weight( 0x0AE6, 0).digit_weight323,9470 -digit_weight( 0x0B66, 0).digit_weight324,9496 -digit_weight( 0x0B66, 0).digit_weight324,9496 -digit_weight( 0x0BE6, 0).digit_weight325,9522 -digit_weight( 0x0BE6, 0).digit_weight325,9522 -digit_weight( 0x0C66, 0).digit_weight326,9548 -digit_weight( 0x0C66, 0).digit_weight326,9548 -digit_weight( 0x0C78, 0).digit_weight327,9574 -digit_weight( 0x0C78, 0).digit_weight327,9574 -digit_weight( 0x0CE6, 0).digit_weight328,9600 -digit_weight( 0x0CE6, 0).digit_weight328,9600 -digit_weight( 0x0D66, 0).digit_weight329,9626 -digit_weight( 0x0D66, 0).digit_weight329,9626 -digit_weight( 0x0DE6, 0).digit_weight330,9652 -digit_weight( 0x0DE6, 0).digit_weight330,9652 -digit_weight( 0x0E50, 0).digit_weight331,9678 -digit_weight( 0x0E50, 0).digit_weight331,9678 -digit_weight( 0x0ED0, 0).digit_weight332,9704 -digit_weight( 0x0ED0, 0).digit_weight332,9704 -digit_weight( 0x0F20, 0).digit_weight333,9730 -digit_weight( 0x0F20, 0).digit_weight333,9730 -digit_weight( 0x1040, 0).digit_weight334,9756 -digit_weight( 0x1040, 0).digit_weight334,9756 -digit_weight( 0x1090, 0).digit_weight335,9782 -digit_weight( 0x1090, 0).digit_weight335,9782 -digit_weight( 0x17E0, 0).digit_weight336,9808 -digit_weight( 0x17E0, 0).digit_weight336,9808 -digit_weight( 0x17F0, 0).digit_weight337,9834 -digit_weight( 0x17F0, 0).digit_weight337,9834 -digit_weight( 0x1810, 0).digit_weight338,9860 -digit_weight( 0x1810, 0).digit_weight338,9860 -digit_weight( 0x1946, 0).digit_weight339,9886 -digit_weight( 0x1946, 0).digit_weight339,9886 -digit_weight( 0x19D0, 0).digit_weight340,9912 -digit_weight( 0x19D0, 0).digit_weight340,9912 -digit_weight( 0x1A80, 0).digit_weight341,9938 -digit_weight( 0x1A80, 0).digit_weight341,9938 -digit_weight( 0x1A90, 0).digit_weight342,9964 -digit_weight( 0x1A90, 0).digit_weight342,9964 -digit_weight( 0x1B50, 0).digit_weight343,9990 -digit_weight( 0x1B50, 0).digit_weight343,9990 -digit_weight( 0x1BB0, 0).digit_weight344,10016 -digit_weight( 0x1BB0, 0).digit_weight344,10016 -digit_weight( 0x1C40, 0).digit_weight345,10042 -digit_weight( 0x1C40, 0).digit_weight345,10042 -digit_weight( 0x1C50, 0).digit_weight346,10068 -digit_weight( 0x1C50, 0).digit_weight346,10068 -digit_weight( 0x2070, 0).digit_weight347,10094 -digit_weight( 0x2070, 0).digit_weight347,10094 -digit_weight( 0x2080, 0).digit_weight348,10120 -digit_weight( 0x2080, 0).digit_weight348,10120 -digit_weight( 0x2189, 0).digit_weight349,10146 -digit_weight( 0x2189, 0).digit_weight349,10146 -digit_weight( 0x24EA, 0).digit_weight350,10172 -digit_weight( 0x24EA, 0).digit_weight350,10172 -digit_weight( 0x24FF, 0).digit_weight351,10198 -digit_weight( 0x24FF, 0).digit_weight351,10198 -digit_weight( 0x3007, 0).digit_weight352,10224 -digit_weight( 0x3007, 0).digit_weight352,10224 -digit_weight( 0x96F6, 0).digit_weight353,10250 -digit_weight( 0x96F6, 0).digit_weight353,10250 -digit_weight( 0xA620, 0).digit_weight354,10276 -digit_weight( 0xA620, 0).digit_weight354,10276 -digit_weight( 0xA6EF, 0).digit_weight355,10302 -digit_weight( 0xA6EF, 0).digit_weight355,10302 -digit_weight( 0xA8D0, 0).digit_weight356,10328 -digit_weight( 0xA8D0, 0).digit_weight356,10328 -digit_weight( 0xA900, 0).digit_weight357,10354 -digit_weight( 0xA900, 0).digit_weight357,10354 -digit_weight( 0xA9D0, 0).digit_weight358,10380 -digit_weight( 0xA9D0, 0).digit_weight358,10380 -digit_weight( 0xA9F0, 0).digit_weight359,10406 -digit_weight( 0xA9F0, 0).digit_weight359,10406 -digit_weight( 0xAA50, 0).digit_weight360,10432 -digit_weight( 0xAA50, 0).digit_weight360,10432 -digit_weight( 0xABF0, 0).digit_weight361,10458 -digit_weight( 0xABF0, 0).digit_weight361,10458 -digit_weight( 0xF9B2, 0).digit_weight362,10484 -digit_weight( 0xF9B2, 0).digit_weight362,10484 -digit_weight( 0xFF10, 0).digit_weight363,10510 -digit_weight( 0xFF10, 0).digit_weight363,10510 -digit_weight( 0x1018A, 0).digit_weight364,10536 -digit_weight( 0x1018A, 0).digit_weight364,10536 -digit_weight( 0x104A0, 0).digit_weight365,10563 -digit_weight( 0x104A0, 0).digit_weight365,10563 -digit_weight( 0x11066, 0).digit_weight366,10590 -digit_weight( 0x11066, 0).digit_weight366,10590 -digit_weight( 0x110F0, 0).digit_weight367,10617 -digit_weight( 0x110F0, 0).digit_weight367,10617 -digit_weight( 0x11136, 0).digit_weight368,10644 -digit_weight( 0x11136, 0).digit_weight368,10644 -digit_weight( 0x111D0, 0).digit_weight369,10671 -digit_weight( 0x111D0, 0).digit_weight369,10671 -digit_weight( 0x112F0, 0).digit_weight370,10698 -digit_weight( 0x112F0, 0).digit_weight370,10698 -digit_weight( 0x114D0, 0).digit_weight371,10725 -digit_weight( 0x114D0, 0).digit_weight371,10725 -digit_weight( 0x11650, 0).digit_weight372,10752 -digit_weight( 0x11650, 0).digit_weight372,10752 -digit_weight( 0x116C0, 0).digit_weight373,10779 -digit_weight( 0x116C0, 0).digit_weight373,10779 -digit_weight( 0x11730, 0).digit_weight374,10806 -digit_weight( 0x11730, 0).digit_weight374,10806 -digit_weight( 0x118E0, 0).digit_weight375,10833 -digit_weight( 0x118E0, 0).digit_weight375,10833 -digit_weight( 0x16A60, 0).digit_weight376,10860 -digit_weight( 0x16A60, 0).digit_weight376,10860 -digit_weight( 0x16B50, 0).digit_weight377,10887 -digit_weight( 0x16B50, 0).digit_weight377,10887 -digit_weight( 0x1D7CE, 0).digit_weight378,10914 -digit_weight( 0x1D7CE, 0).digit_weight378,10914 -digit_weight( 0x1D7D8, 0).digit_weight379,10941 -digit_weight( 0x1D7D8, 0).digit_weight379,10941 -digit_weight( 0x1D7E2, 0).digit_weight380,10968 -digit_weight( 0x1D7E2, 0).digit_weight380,10968 -digit_weight( 0x1D7EC, 0).digit_weight381,10995 -digit_weight( 0x1D7EC, 0).digit_weight381,10995 -vdigit_weight( 0x1D7F6, 0).vdigit_weight382,11022 -vdigit_weight( 0x1D7F6, 0).vdigit_weight382,11022 -digit_weight( 0x1F100, 0x1F101, 0).digit_weight383,11050 -digit_weight( 0x1F100, 0x1F101, 0).digit_weight383,11050 -digit_weight( 0x1F10B, 0x1F10C, 0).digit_weight384,11086 -digit_weight( 0x1F10B, 0x1F10C, 0).digit_weight384,11086 -digit_weight( 0x09F4, 1/16).digit_weight385,11122 -digit_weight( 0x09F4, 1/16).digit_weight385,11122 -digit_weight( 0x0B75, 1/16).digit_weight386,11151 -digit_weight( 0x0B75, 1/16).digit_weight386,11151 -digit_weight( 0xA833, 1/16).digit_weight387,11180 -digit_weight( 0xA833, 1/16).digit_weight387,11180 -digit_weight( 0x109F6, 1/12).digit_weight388,11209 -digit_weight( 0x109F6, 1/12).digit_weight388,11209 -digit_weight( 0x2152, 1/10).digit_weight389,11239 -digit_weight( 0x2152, 1/10).digit_weight389,11239 -digit_weight( 0x2151, 1/9).digit_weight390,11268 -digit_weight( 0x2151, 1/9).digit_weight390,11268 -digit_weight( 0x09F5, 1/8).digit_weight391,11296 -digit_weight( 0x09F5, 1/8).digit_weight391,11296 -digit_weight( 0x0B76, 1/8).digit_weight392,11324 -digit_weight( 0x0B76, 1/8).digit_weight392,11324 -digit_weight( 0x215B, 1/8).digit_weight393,11352 -digit_weight( 0x215B, 1/8).digit_weight393,11352 -digit_weight( 0xA834, 1/8).digit_weight394,11380 -digit_weight( 0xA834, 1/8).digit_weight394,11380 -digit_weight( 0x1245F, 1/8).digit_weight395,11408 -digit_weight( 0x1245F, 1/8).digit_weight395,11408 -digit_weight( 0x2150, 1/7).digit_weight396,11437 -digit_weight( 0x2150, 1/7).digit_weight396,11437 -digit_weight( 0x2159, 1/6).digit_weight397,11465 -digit_weight( 0x2159, 1/6).digit_weight397,11465 -digit_weight( 0x109F7, 1/6).digit_weight398,11493 -digit_weight( 0x109F7, 1/6).digit_weight398,11493 -digit_weight( 0x12461, 1/6).digit_weight399,11522 -digit_weight( 0x12461, 1/6).digit_weight399,11522 -digit_weight( 0x09F6, 3/16).digit_weight400,11551 -digit_weight( 0x09F6, 3/16).digit_weight400,11551 -digit_weight( 0x0B77, 3/16).digit_weight401,11580 -digit_weight( 0x0B77, 3/16).digit_weight401,11580 -digit_weight( 0xA835, 3/16).digit_weight402,11609 -digit_weight( 0xA835, 3/16).digit_weight402,11609 -digit_weight( 0x2155, 1/5).digit_weight403,11638 -digit_weight( 0x2155, 1/5).digit_weight403,11638 -digit_weight( 0x00BC, 1/4).digit_weight404,11666 -digit_weight( 0x00BC, 1/4).digit_weight404,11666 -digit_weight( 0x09F7, 1/4).digit_weight405,11694 -digit_weight( 0x09F7, 1/4).digit_weight405,11694 -digit_weight( 0x0B72, 1/4).digit_weight406,11722 -digit_weight( 0x0B72, 1/4).digit_weight406,11722 -digit_weight( 0x0D73, 1/4).digit_weight407,11750 -digit_weight( 0x0D73, 1/4).digit_weight407,11750 -digit_weight( 0xA830, 1/4).digit_weight408,11778 -digit_weight( 0xA830, 1/4).digit_weight408,11778 -digit_weight( 0x10140, 1/4).digit_weight409,11806 -digit_weight( 0x10140, 1/4).digit_weight409,11806 -digit_weight( 0x1018B, 1/4).digit_weight410,11835 -digit_weight( 0x1018B, 1/4).digit_weight410,11835 -digit_weight( 0x109F8, 1/4).digit_weight411,11864 -digit_weight( 0x109F8, 1/4).digit_weight411,11864 -digit_weight( 0x10E7C, 1/4).digit_weight412,11893 -digit_weight( 0x10E7C, 1/4).digit_weight412,11893 -digit_weight( 0x12460, 1/4).digit_weight413,11922 -digit_weight( 0x12460, 1/4).digit_weight413,11922 -digit_weight( 0x12462, 0x12463, 1/4).digit_weight414,11951 -digit_weight( 0x12462, 0x12463, 1/4).digit_weight414,11951 -digit_weight( 0x2153, 1/3).digit_weight415,11989 -digit_weight( 0x2153, 1/3).digit_weight415,11989 -digit_weight( 0x109F9, 1/3).digit_weight416,12017 -digit_weight( 0x109F9, 1/3).digit_weight416,12017 -digit_weight( 0x10E7D, 1/3).digit_weight417,12046 -digit_weight( 0x10E7D, 1/3).digit_weight417,12046 -digit_weight( 0x1245A, 1/3).digit_weight418,12075 -digit_weight( 0x1245A, 1/3).digit_weight418,12075 -digit_weight( 0x1245D, 1/3).digit_weight419,12104 -digit_weight( 0x1245D, 1/3).digit_weight419,12104 -digit_weight( 0x12465, 1/3).digit_weight420,12133 -digit_weight( 0x12465, 1/3).digit_weight420,12133 -digit_weight( 0x215C, 3/8).digit_weight421,12162 -digit_weight( 0x215C, 3/8).digit_weight421,12162 -digit_weight( 0x2156, 2/5).digit_weight422,12190 -digit_weight( 0x2156, 2/5).digit_weight422,12190 -digit_weight( 0x109FA, 5/12).digit_weight423,12218 -digit_weight( 0x109FA, 5/12).digit_weight423,12218 -digit_weight( 0x00BD, 1/2).digit_weight424,12248 -digit_weight( 0x00BD, 1/2).digit_weight424,12248 -digit_weight( 0x0B73, 1/2).digit_weight425,12276 -digit_weight( 0x0B73, 1/2).digit_weight425,12276 -digit_weight( 0x0D74, 1/2).digit_weight426,12304 -digit_weight( 0x0D74, 1/2).digit_weight426,12304 -digit_weight( 0x0F2A, 1/2).digit_weight427,12332 -digit_weight( 0x0F2A, 1/2).digit_weight427,12332 -digit_weight( 0x2CFD, 1/2).digit_weight428,12360 -digit_weight( 0x2CFD, 1/2).digit_weight428,12360 -digit_weight( 0xA831, 1/2).digit_weight429,12388 -digit_weight( 0xA831, 1/2).digit_weight429,12388 -digit_weight( 0x10141, 1/2).digit_weight430,12416 -digit_weight( 0x10141, 1/2).digit_weight430,12416 -digit_weight( 0x10175, 0x10176, 1/2).digit_weight431,12445 -digit_weight( 0x10175, 0x10176, 1/2).digit_weight431,12445 -digit_weight( 0x109BD, 1/2).digit_weight432,12483 -digit_weight( 0x109BD, 1/2).digit_weight432,12483 -digit_weight( 0x109FB, 1/2).digit_weight433,12512 -digit_weight( 0x109FB, 1/2).digit_weight433,12512 -digit_weight( 0x10E7B, 1/2).digit_weight434,12541 -digit_weight( 0x10E7B, 1/2).digit_weight434,12541 -digit_weight( 0x12464, 1/2).digit_weight435,12570 -digit_weight( 0x12464, 1/2).digit_weight435,12570 -digit_weight( 0x109FC, 7/12).digit_weight436,12599 -digit_weight( 0x109FC, 7/12).digit_weight436,12599 -digit_weight( 0x2157, 3/5).digit_weight437,12629 -digit_weight( 0x2157, 3/5).digit_weight437,12629 -digit_weight( 0x215D, 5/8).digit_weight438,12657 -digit_weight( 0x215D, 5/8).digit_weight438,12657 -digit_weight( 0x2154, 2/3).digit_weight439,12685 -digit_weight( 0x2154, 2/3).digit_weight439,12685 -digit_weight( 0x10177, 2/3).digit_weight440,12713 -digit_weight( 0x10177, 2/3).digit_weight440,12713 -digit_weight( 0x109FD, 2/3).digit_weight441,12742 -digit_weight( 0x109FD, 2/3).digit_weight441,12742 -digit_weight( 0x10E7E, 2/3).digit_weight442,12771 -digit_weight( 0x10E7E, 2/3).digit_weight442,12771 -digit_weight( 0x1245B, 2/3).digit_weight443,12800 -digit_weight( 0x1245B, 2/3).digit_weight443,12800 -digit_weight( 0x1245E, 2/3).digit_weight444,12829 -digit_weight( 0x1245E, 2/3).digit_weight444,12829 -digit_weight( 0x12466, 2/3).digit_weight445,12858 -digit_weight( 0x12466, 2/3).digit_weight445,12858 -digit_weight( 0x00BE, 3/4).digit_weight446,12887 -digit_weight( 0x00BE, 3/4).digit_weight446,12887 -digit_weight( 0x09F8, 3/4).digit_weight447,12915 -digit_weight( 0x09F8, 3/4).digit_weight447,12915 -digit_weight( 0x0B74, 3/4).digit_weight448,12943 -digit_weight( 0x0B74, 3/4).digit_weight448,12943 -digit_weight( 0x0D75, 3/4).digit_weight449,12971 -digit_weight( 0x0D75, 3/4).digit_weight449,12971 -digit_weight( 0xA832, 3/4).digit_weight450,12999 -digit_weight( 0xA832, 3/4).digit_weight450,12999 -digit_weight( 0x10178, 3/4).digit_weight451,13027 -digit_weight( 0x10178, 3/4).digit_weight451,13027 -digit_weight( 0x109FE, 3/4).digit_weight452,13056 -digit_weight( 0x109FE, 3/4).digit_weight452,13056 -digit_weight( 0x2158, 4/5).digit_weight453,13085 -digit_weight( 0x2158, 4/5).digit_weight453,13085 -digit_weight( 0x215A, 5/6).digit_weight454,13113 -digit_weight( 0x215A, 5/6).digit_weight454,13113 -digit_weight( 0x109FF, 5/6).digit_weight455,13141 -digit_weight( 0x109FF, 5/6).digit_weight455,13141 -digit_weight( 0x1245C, 5/6).digit_weight456,13170 -digit_weight( 0x1245C, 5/6).digit_weight456,13170 -digit_weight( 0x215E, 7/8).digit_weight457,13199 -digit_weight( 0x215E, 7/8).digit_weight457,13199 -digit_weight( 0x109BC, 11/12).digit_weight458,13227 -digit_weight( 0x109BC, 11/12).digit_weight458,13227 -digit_weight( 0x0031, 1).digit_weight459,13258 -digit_weight( 0x0031, 1).digit_weight459,13258 -digit_weight( 0x00B9, 1).digit_weight460,13284 -digit_weight( 0x00B9, 1).digit_weight460,13284 -digit_weight( 0x0661, 1).digit_weight461,13310 -digit_weight( 0x0661, 1).digit_weight461,13310 -digit_weight( 0x06F1, 1).digit_weight462,13336 -digit_weight( 0x06F1, 1).digit_weight462,13336 -digit_weight( 0x07C1, 1).digit_weight463,13362 -digit_weight( 0x07C1, 1).digit_weight463,13362 -digit_weight( 0x0967, 1).digit_weight464,13388 -digit_weight( 0x0967, 1).digit_weight464,13388 -digit_weight( 0x09E7, 1).digit_weight465,13414 -digit_weight( 0x09E7, 1).digit_weight465,13414 -digit_weight( 0x0A67, 1).digit_weight466,13440 -digit_weight( 0x0A67, 1).digit_weight466,13440 -digit_weight( 0x0AE7, 1).digit_weight467,13466 -digit_weight( 0x0AE7, 1).digit_weight467,13466 -digit_weight( 0x0B67, 1).digit_weight468,13492 -digit_weight( 0x0B67, 1).digit_weight468,13492 -digit_weight( 0x0BE7, 1).digit_weight469,13518 -digit_weight( 0x0BE7, 1).digit_weight469,13518 -digit_weight( 0x0C67, 1).digit_weight470,13544 -digit_weight( 0x0C67, 1).digit_weight470,13544 -digit_weight( 0x0C79, 1).digit_weight471,13570 -digit_weight( 0x0C79, 1).digit_weight471,13570 -digit_weight( 0x0C7C, 1).digit_weight472,13596 -digit_weight( 0x0C7C, 1).digit_weight472,13596 -digit_weight( 0x0CE7, 1).digit_weight473,13622 -digit_weight( 0x0CE7, 1).digit_weight473,13622 -digit_weight( 0x0D67, 1).digit_weight474,13648 -digit_weight( 0x0D67, 1).digit_weight474,13648 -digit_weight( 0x0DE7, 1).digit_weight475,13674 -digit_weight( 0x0DE7, 1).digit_weight475,13674 -digit_weight( 0x0E51, 1).digit_weight476,13700 -digit_weight( 0x0E51, 1).digit_weight476,13700 -digit_weight( 0x0ED1, 1).digit_weight477,13726 -digit_weight( 0x0ED1, 1).digit_weight477,13726 -digit_weight( 0x0F21, 1).digit_weight478,13752 -digit_weight( 0x0F21, 1).digit_weight478,13752 -digit_weight( 0x1041, 1).digit_weight479,13778 -digit_weight( 0x1041, 1).digit_weight479,13778 -digit_weight( 0x1091, 1).digit_weight480,13804 -digit_weight( 0x1091, 1).digit_weight480,13804 -digit_weight( 0x1369, 1).digit_weight481,13830 -digit_weight( 0x1369, 1).digit_weight481,13830 -digit_weight( 0x17E1, 1).digit_weight482,13856 -digit_weight( 0x17E1, 1).digit_weight482,13856 -digit_weight( 0x17F1, 1).digit_weight483,13882 -digit_weight( 0x17F1, 1).digit_weight483,13882 -digit_weight( 0x1811, 1).digit_weight484,13908 -digit_weight( 0x1811, 1).digit_weight484,13908 -digit_weight( 0x1947, 1).digit_weight485,13934 -digit_weight( 0x1947, 1).digit_weight485,13934 -digit_weight( 0x19D1, 1).digit_weight486,13960 -digit_weight( 0x19D1, 1).digit_weight486,13960 -digit_weight( 0x19DA, 1).digit_weight487,13986 -digit_weight( 0x19DA, 1).digit_weight487,13986 -digit_weight( 0x1A81, 1).digit_weight488,14012 -digit_weight( 0x1A81, 1).digit_weight488,14012 -digit_weight( 0x1A91, 1).digit_weight489,14038 -digit_weight( 0x1A91, 1).digit_weight489,14038 -digit_weight( 0x1B51, 1).digit_weight490,14064 -digit_weight( 0x1B51, 1).digit_weight490,14064 -digit_weight( 0x1BB1, 1).digit_weight491,14090 -digit_weight( 0x1BB1, 1).digit_weight491,14090 -digit_weight( 0x1C41, 1).digit_weight492,14116 -digit_weight( 0x1C41, 1).digit_weight492,14116 -digit_weight( 0x1C51, 1).digit_weight493,14142 -digit_weight( 0x1C51, 1).digit_weight493,14142 -digit_weight( 0x2081, 1).digit_weight494,14168 -digit_weight( 0x2081, 1).digit_weight494,14168 -digit_weight( 0x215F, 1).digit_weight495,14194 -digit_weight( 0x215F, 1).digit_weight495,14194 -digit_weight( 0x2160, 1).digit_weight496,14220 -digit_weight( 0x2160, 1).digit_weight496,14220 -digit_weight( 0x2170, 1).digit_weight497,14246 -digit_weight( 0x2170, 1).digit_weight497,14246 -digit_weight( 0x2460, 1).digit_weight498,14272 -digit_weight( 0x2460, 1).digit_weight498,14272 -digit_weight( 0x2474, 1).digit_weight499,14298 -digit_weight( 0x2474, 1).digit_weight499,14298 -digit_weight( 0x2488, 1).digit_weight500,14324 -digit_weight( 0x2488, 1).digit_weight500,14324 -digit_weight( 0x24F5, 1).digit_weight501,14350 -digit_weight( 0x24F5, 1).digit_weight501,14350 -digit_weight( 0x2776, 1).digit_weight502,14376 -digit_weight( 0x2776, 1).digit_weight502,14376 -digit_weight( 0x2780, 1).digit_weight503,14402 -digit_weight( 0x2780, 1).digit_weight503,14402 -digit_weight( 0x278A, 1).digit_weight504,14428 -digit_weight( 0x278A, 1).digit_weight504,14428 -digit_weight( 0x3021, 1).digit_weight505,14454 -digit_weight( 0x3021, 1).digit_weight505,14454 -digit_weight( 0x3192, 1).digit_weight506,14480 -digit_weight( 0x3192, 1).digit_weight506,14480 -digit_weight( 0x3220, 1).digit_weight507,14506 -digit_weight( 0x3220, 1).digit_weight507,14506 -digit_weight( 0x3280, 1).digit_weight508,14532 -digit_weight( 0x3280, 1).digit_weight508,14532 -digit_weight( 0x4E00, 1).digit_weight509,14558 -digit_weight( 0x4E00, 1).digit_weight509,14558 -digit_weight( 0x58F1, 1).digit_weight510,14584 -digit_weight( 0x58F1, 1).digit_weight510,14584 -digit_weight( 0x58F9, 1).digit_weight511,14610 -digit_weight( 0x58F9, 1).digit_weight511,14610 -digit_weight( 0x5E7A, 1).digit_weight512,14636 -digit_weight( 0x5E7A, 1).digit_weight512,14636 -digit_weight( 0x5F0C, 1).digit_weight513,14662 -digit_weight( 0x5F0C, 1).digit_weight513,14662 -digit_weight( 0xA621, 1).digit_weight514,14688 -digit_weight( 0xA621, 1).digit_weight514,14688 -digit_weight( 0xA6E6, 1).digit_weight515,14714 -digit_weight( 0xA6E6, 1).digit_weight515,14714 -digit_weight( 0xA8D1, 1).digit_weight516,14740 -digit_weight( 0xA8D1, 1).digit_weight516,14740 -digit_weight( 0xA901, 1).digit_weight517,14766 -digit_weight( 0xA901, 1).digit_weight517,14766 -digit_weight( 0xA9D1, 1).digit_weight518,14792 -digit_weight( 0xA9D1, 1).digit_weight518,14792 -digit_weight( 0xA9F1, 1).digit_weight519,14818 -digit_weight( 0xA9F1, 1).digit_weight519,14818 -digit_weight( 0xAA51, 1).digit_weight520,14844 -digit_weight( 0xAA51, 1).digit_weight520,14844 -digit_weight( 0xABF1, 1).digit_weight521,14870 -digit_weight( 0xABF1, 1).digit_weight521,14870 -digit_weight( 0xFF11, 1).digit_weight522,14896 -digit_weight( 0xFF11, 1).digit_weight522,14896 -digit_weight( 0x10107, 1).digit_weight523,14922 -digit_weight( 0x10107, 1).digit_weight523,14922 -digit_weight( 0x10142, 1).digit_weight524,14949 -digit_weight( 0x10142, 1).digit_weight524,14949 -digit_weight( 0x10158, 0x1015A, 1).digit_weight525,14976 -digit_weight( 0x10158, 0x1015A, 1).digit_weight525,14976 -digit_weight( 0x102E1, 1).digit_weight526,15012 -digit_weight( 0x102E1, 1).digit_weight526,15012 -digit_weight( 0x10320, 1).digit_weight527,15039 -digit_weight( 0x10320, 1).digit_weight527,15039 -digit_weight( 0x103D1, 1).digit_weight528,15066 -digit_weight( 0x103D1, 1).digit_weight528,15066 -digit_weight( 0x104A1, 1).digit_weight529,15093 -digit_weight( 0x104A1, 1).digit_weight529,15093 -digit_weight( 0x10858, 1).digit_weight530,15120 -digit_weight( 0x10858, 1).digit_weight530,15120 -digit_weight( 0x10879, 1).digit_weight531,15147 -digit_weight( 0x10879, 1).digit_weight531,15147 -digit_weight( 0x108A7, 1).digit_weight532,15174 -digit_weight( 0x108A7, 1).digit_weight532,15174 -digit_weight( 0x108FB, 1).digit_weight533,15201 -digit_weight( 0x108FB, 1).digit_weight533,15201 -digit_weight( 0x10916, 1).digit_weight534,15228 -digit_weight( 0x10916, 1).digit_weight534,15228 -digit_weight( 0x109C0, 1).digit_weight535,15255 -digit_weight( 0x109C0, 1).digit_weight535,15255 -digit_weight( 0x10A40, 1).digit_weight536,15282 -digit_weight( 0x10A40, 1).digit_weight536,15282 -digit_weight( 0x10A7D, 1).digit_weight537,15309 -digit_weight( 0x10A7D, 1).digit_weight537,15309 -digit_weight( 0x10A9D, 1).digit_weight538,15336 -digit_weight( 0x10A9D, 1).digit_weight538,15336 -digit_weight( 0x10AEB, 1).digit_weight539,15363 -digit_weight( 0x10AEB, 1).digit_weight539,15363 -digit_weight( 0x10B58, 1).digit_weight540,15390 -digit_weight( 0x10B58, 1).digit_weight540,15390 -digit_weight( 0x10B78, 1).digit_weight541,15417 -digit_weight( 0x10B78, 1).digit_weight541,15417 -digit_weight( 0x10BA9, 1).digit_weight542,15444 -digit_weight( 0x10BA9, 1).digit_weight542,15444 -digit_weight( 0x10CFA, 1).digit_weight543,15471 -digit_weight( 0x10CFA, 1).digit_weight543,15471 -digit_weight( 0x10E60, 1).digit_weight544,15498 -digit_weight( 0x10E60, 1).digit_weight544,15498 -digit_weight( 0x11052, 1).digit_weight545,15525 -digit_weight( 0x11052, 1).digit_weight545,15525 -digit_weight( 0x11067, 1).digit_weight546,15552 -digit_weight( 0x11067, 1).digit_weight546,15552 -digit_weight( 0x110F1, 1).digit_weight547,15579 -digit_weight( 0x110F1, 1).digit_weight547,15579 -digit_weight( 0x11137, 1).digit_weight548,15606 -digit_weight( 0x11137, 1).digit_weight548,15606 -digit_weight( 0x111D1, 1).digit_weight549,15633 -digit_weight( 0x111D1, 1).digit_weight549,15633 -digit_weight( 0x111E1, 1).digit_weight550,15660 -digit_weight( 0x111E1, 1).digit_weight550,15660 -digit_weight( 0x112F1, 1).digit_weight551,15687 -digit_weight( 0x112F1, 1).digit_weight551,15687 -digit_weight( 0x114D1, 1).digit_weight552,15714 -digit_weight( 0x114D1, 1).digit_weight552,15714 -digit_weight( 0x11651, 1).digit_weight553,15741 -digit_weight( 0x11651, 1).digit_weight553,15741 -digit_weight( 0x116C1, 1).digit_weight554,15768 -digit_weight( 0x116C1, 1).digit_weight554,15768 -digit_weight( 0x11731, 1).digit_weight555,15795 -digit_weight( 0x11731, 1).digit_weight555,15795 -digit_weight( 0x118E1, 1).digit_weight556,15822 -digit_weight( 0x118E1, 1).digit_weight556,15822 -digit_weight( 0x12415, 1).digit_weight557,15849 -digit_weight( 0x12415, 1).digit_weight557,15849 -digit_weight( 0x1241E, 1).digit_weight558,15876 -digit_weight( 0x1241E, 1).digit_weight558,15876 -digit_weight( 0x1242C, 1).digit_weight559,15903 -digit_weight( 0x1242C, 1).digit_weight559,15903 -digit_weight( 0x12434, 1).digit_weight560,15930 -digit_weight( 0x12434, 1).digit_weight560,15930 -digit_weight( 0x1244F, 1).digit_weight561,15957 -digit_weight( 0x1244F, 1).digit_weight561,15957 -digit_weight( 0x12458, 1).digit_weight562,15984 -digit_weight( 0x12458, 1).digit_weight562,15984 -digit_weight( 0x16A61, 1).digit_weight563,16011 -digit_weight( 0x16A61, 1).digit_weight563,16011 -digit_weight( 0x16B51, 1).digit_weight564,16038 -digit_weight( 0x16B51, 1).digit_weight564,16038 -digit_weight( 0x1D360, 1).digit_weight565,16065 -digit_weight( 0x1D360, 1).digit_weight565,16065 -digit_weight( 0x1D7CF, 1).digit_weight566,16092 -digit_weight( 0x1D7CF, 1).digit_weight566,16092 -digit_weight( 0x1D7D9, 1).digit_weight567,16119 -digit_weight( 0x1D7D9, 1).digit_weight567,16119 -digit_weight( 0x1D7E3, 1).digit_weight568,16146 -digit_weight( 0x1D7E3, 1).digit_weight568,16146 -digit_weight( 0x1D7ED, 1).digit_weight569,16173 -digit_weight( 0x1D7ED, 1).digit_weight569,16173 -digit_weight( 0x1D7F7, 1).digit_weight570,16200 -digit_weight( 0x1D7F7, 1).digit_weight570,16200 -digit_weight( 0x1E8C7, 1).digit_weight571,16227 -digit_weight( 0x1E8C7, 1).digit_weight571,16227 -digit_weight( 0x1F102, 1).digit_weight572,16254 -digit_weight( 0x1F102, 1).digit_weight572,16254 -digit_weight( 0x2092A, 1).digit_weight573,16281 -digit_weight( 0x2092A, 1).digit_weight573,16281 -digit_weight( 0x0F2B, 3/2).digit_weight574,16308 -digit_weight( 0x0F2B, 3/2).digit_weight574,16308 -digit_weight( 0x0032, 2).digit_weight575,16336 -digit_weight( 0x0032, 2).digit_weight575,16336 -digit_weight( 0x00B2, 2).digit_weight576,16362 -digit_weight( 0x00B2, 2).digit_weight576,16362 -digit_weight( 0x0662, 2).digit_weight577,16388 -digit_weight( 0x0662, 2).digit_weight577,16388 -digit_weight( 0x06F2, 2).digit_weight578,16414 -digit_weight( 0x06F2, 2).digit_weight578,16414 -digit_weight( 0x07C2, 2).digit_weight579,16440 -digit_weight( 0x07C2, 2).digit_weight579,16440 -digit_weight( 0x0968, 2).digit_weight580,16466 -digit_weight( 0x0968, 2).digit_weight580,16466 -digit_weight( 0x09E8, 2).digit_weight581,16492 -digit_weight( 0x09E8, 2).digit_weight581,16492 -digit_weight( 0x0A68, 2).digit_weight582,16518 -digit_weight( 0x0A68, 2).digit_weight582,16518 -digit_weight( 0x0AE8, 2).digit_weight583,16544 -digit_weight( 0x0AE8, 2).digit_weight583,16544 -digit_weight( 0x0B68, 2).digit_weight584,16570 -digit_weight( 0x0B68, 2).digit_weight584,16570 -digit_weight( 0x0BE8, 2).digit_weight585,16596 -digit_weight( 0x0BE8, 2).digit_weight585,16596 -digit_weight( 0x0C68, 2).digit_weight586,16622 -digit_weight( 0x0C68, 2).digit_weight586,16622 -digit_weight( 0x0C7A, 2).digit_weight587,16648 -digit_weight( 0x0C7A, 2).digit_weight587,16648 -digit_weight( 0x0C7D, 2).digit_weight588,16674 -digit_weight( 0x0C7D, 2).digit_weight588,16674 -digit_weight( 0x0CE8, 2).digit_weight589,16700 -digit_weight( 0x0CE8, 2).digit_weight589,16700 -digit_weight( 0x0D68, 2).digit_weight590,16726 -digit_weight( 0x0D68, 2).digit_weight590,16726 -digit_weight( 0x0DE8, 2).digit_weight591,16752 -digit_weight( 0x0DE8, 2).digit_weight591,16752 -digit_weight( 0x0E52, 2).digit_weight592,16778 -digit_weight( 0x0E52, 2).digit_weight592,16778 -digit_weight( 0x0ED2, 2).digit_weight593,16804 -digit_weight( 0x0ED2, 2).digit_weight593,16804 -digit_weight( 0x0F22, 2).digit_weight594,16830 -digit_weight( 0x0F22, 2).digit_weight594,16830 -digit_weight( 0x1042, 2).digit_weight595,16856 -digit_weight( 0x1042, 2).digit_weight595,16856 -digit_weight( 0x1092, 2).digit_weight596,16882 -digit_weight( 0x1092, 2).digit_weight596,16882 -digit_weight( 0x136A, 2).digit_weight597,16908 -digit_weight( 0x136A, 2).digit_weight597,16908 -digit_weight( 0x17E2, 2).digit_weight598,16934 -digit_weight( 0x17E2, 2).digit_weight598,16934 -digit_weight( 0x17F2, 2).digit_weight599,16960 -digit_weight( 0x17F2, 2).digit_weight599,16960 -digit_weight( 0x1812, 2).digit_weight600,16986 -digit_weight( 0x1812, 2).digit_weight600,16986 -digit_weight( 0x1948, 2).digit_weight601,17012 -digit_weight( 0x1948, 2).digit_weight601,17012 -digit_weight( 0x19D2, 2).digit_weight602,17038 -digit_weight( 0x19D2, 2).digit_weight602,17038 -digit_weight( 0x1A82, 2).digit_weight603,17064 -digit_weight( 0x1A82, 2).digit_weight603,17064 -digit_weight( 0x1A92, 2).digit_weight604,17090 -digit_weight( 0x1A92, 2).digit_weight604,17090 -digit_weight( 0x1B52, 2).digit_weight605,17116 -digit_weight( 0x1B52, 2).digit_weight605,17116 -digit_weight( 0x1BB2, 2).digit_weight606,17142 -digit_weight( 0x1BB2, 2).digit_weight606,17142 -digit_weight( 0x1C42, 2).digit_weight607,17168 -digit_weight( 0x1C42, 2).digit_weight607,17168 -digit_weight( 0x1C52, 2).digit_weight608,17194 -digit_weight( 0x1C52, 2).digit_weight608,17194 -digit_weight( 0x2082, 2).digit_weight609,17220 -digit_weight( 0x2082, 2).digit_weight609,17220 -digit_weight( 0x2161, 2).digit_weight610,17246 -digit_weight( 0x2161, 2).digit_weight610,17246 -digit_weight( 0x2171, 2).digit_weight611,17272 -digit_weight( 0x2171, 2).digit_weight611,17272 -digit_weight( 0x2461, 2).digit_weight612,17298 -digit_weight( 0x2461, 2).digit_weight612,17298 -digit_weight( 0x2475, 2).digit_weight613,17324 -digit_weight( 0x2475, 2).digit_weight613,17324 -digit_weight( 0x2489, 2).digit_weight614,17350 -digit_weight( 0x2489, 2).digit_weight614,17350 -digit_weight( 0x24F6, 2).digit_weight615,17376 -digit_weight( 0x24F6, 2).digit_weight615,17376 -digit_weight( 0x2777, 2).digit_weight616,17402 -digit_weight( 0x2777, 2).digit_weight616,17402 -digit_weight( 0x2781, 2).digit_weight617,17428 -digit_weight( 0x2781, 2).digit_weight617,17428 -digit_weight( 0x278B, 2).digit_weight618,17454 -digit_weight( 0x278B, 2).digit_weight618,17454 -digit_weight( 0x3022, 2).digit_weight619,17480 -digit_weight( 0x3022, 2).digit_weight619,17480 -digit_weight( 0x3193, 2).digit_weight620,17506 -digit_weight( 0x3193, 2).digit_weight620,17506 -digit_weight( 0x3221, 2).digit_weight621,17532 -digit_weight( 0x3221, 2).digit_weight621,17532 -digit_weight( 0x3281, 2).digit_weight622,17558 -digit_weight( 0x3281, 2).digit_weight622,17558 -digit_weight( 0x3483, 2).digit_weight623,17584 -digit_weight( 0x3483, 2).digit_weight623,17584 -digit_weight( 0x4E8C, 2).digit_weight624,17610 -digit_weight( 0x4E8C, 2).digit_weight624,17610 -digit_weight( 0x5169, 2).digit_weight625,17636 -digit_weight( 0x5169, 2).digit_weight625,17636 -digit_weight( 0x5F0D, 2).digit_weight626,17662 -digit_weight( 0x5F0D, 2).digit_weight626,17662 -digit_weight( 0x5F10, 2).digit_weight627,17688 -digit_weight( 0x5F10, 2).digit_weight627,17688 -digit_weight( 0x8CAE, 2).digit_weight628,17714 -digit_weight( 0x8CAE, 2).digit_weight628,17714 -digit_weight( 0x8CB3, 2).digit_weight629,17740 -digit_weight( 0x8CB3, 2).digit_weight629,17740 -digit_weight( 0x8D30, 2).digit_weight630,17766 -digit_weight( 0x8D30, 2).digit_weight630,17766 -digit_weight( 0xA622, 2).digit_weight631,17792 -digit_weight( 0xA622, 2).digit_weight631,17792 -digit_weight( 0xA6E7, 2).digit_weight632,17818 -digit_weight( 0xA6E7, 2).digit_weight632,17818 -digit_weight( 0xA8D2, 2).digit_weight633,17844 -digit_weight( 0xA8D2, 2).digit_weight633,17844 -digit_weight( 0xA902, 2).digit_weight634,17870 -digit_weight( 0xA902, 2).digit_weight634,17870 -digit_weight( 0xA9D2, 2).digit_weight635,17896 -digit_weight( 0xA9D2, 2).digit_weight635,17896 -digit_weight( 0xA9F2, 2).digit_weight636,17922 -digit_weight( 0xA9F2, 2).digit_weight636,17922 -digit_weight( 0xAA52, 2).digit_weight637,17948 -digit_weight( 0xAA52, 2).digit_weight637,17948 -digit_weight( 0xABF2, 2).digit_weight638,17974 -digit_weight( 0xABF2, 2).digit_weight638,17974 -digit_weight( 0xF978, 2).digit_weight639,18000 -digit_weight( 0xF978, 2).digit_weight639,18000 -digit_weight( 0xFF12, 2).digit_weight640,18026 -digit_weight( 0xFF12, 2).digit_weight640,18026 -digit_weight( 0x10108, 2).digit_weight641,18052 -digit_weight( 0x10108, 2).digit_weight641,18052 -digit_weight( 0x1015B, 0x1015E, 2).digit_weight642,18079 -digit_weight( 0x1015B, 0x1015E, 2).digit_weight642,18079 -digit_weight( 0x102E2, 2).digit_weight643,18115 -digit_weight( 0x102E2, 2).digit_weight643,18115 -digit_weight( 0x103D2, 2).digit_weight644,18142 -digit_weight( 0x103D2, 2).digit_weight644,18142 -digit_weight( 0x104A2, 2).digit_weight645,18169 -digit_weight( 0x104A2, 2).digit_weight645,18169 -digit_weight( 0x10859, 2).digit_weight646,18196 -digit_weight( 0x10859, 2).digit_weight646,18196 -digit_weight( 0x1087A, 2).digit_weight647,18223 -digit_weight( 0x1087A, 2).digit_weight647,18223 -digit_weight( 0x108A8, 2).digit_weight648,18250 -digit_weight( 0x108A8, 2).digit_weight648,18250 -digit_weight( 0x1091A, 2).digit_weight649,18277 -digit_weight( 0x1091A, 2).digit_weight649,18277 -digit_weight( 0x109C1, 2).digit_weight650,18304 -digit_weight( 0x109C1, 2).digit_weight650,18304 -digit_weight( 0x10A41, 2).digit_weight651,18331 -digit_weight( 0x10A41, 2).digit_weight651,18331 -digit_weight( 0x10B59, 2).digit_weight652,18358 -digit_weight( 0x10B59, 2).digit_weight652,18358 -digit_weight( 0x10B79, 2).digit_weight653,18385 -digit_weight( 0x10B79, 2).digit_weight653,18385 -digit_weight( 0x10BAA, 2).digit_weight654,18412 -digit_weight( 0x10BAA, 2).digit_weight654,18412 -digit_weight( 0x10E61, 2).digit_weight655,18439 -digit_weight( 0x10E61, 2).digit_weight655,18439 -digit_weight( 0x11053, 2).digit_weight656,18466 -digit_weight( 0x11053, 2).digit_weight656,18466 -digit_weight( 0x11068, 2).digit_weight657,18493 -digit_weight( 0x11068, 2).digit_weight657,18493 -digit_weight( 0x110F2, 2).digit_weight658,18520 -digit_weight( 0x110F2, 2).digit_weight658,18520 -digit_weight( 0x11138, 2).digit_weight659,18547 -digit_weight( 0x11138, 2).digit_weight659,18547 -digit_weight( 0x111D2, 2).digit_weight660,18574 -digit_weight( 0x111D2, 2).digit_weight660,18574 -digit_weight( 0x111E2, 2).digit_weight661,18601 -digit_weight( 0x111E2, 2).digit_weight661,18601 -digit_weight( 0x112F2, 2).digit_weight662,18628 -digit_weight( 0x112F2, 2).digit_weight662,18628 -digit_weight( 0x114D2, 2).digit_weight663,18655 -digit_weight( 0x114D2, 2).digit_weight663,18655 -digit_weight( 0x11652, 2).digit_weight664,18682 -digit_weight( 0x11652, 2).digit_weight664,18682 -digit_weight( 0x116C2, 2).digit_weight665,18709 -digit_weight( 0x116C2, 2).digit_weight665,18709 -digit_weight( 0x11732, 2).digit_weight666,18736 -digit_weight( 0x11732, 2).digit_weight666,18736 -digit_weight( 0x118E2, 2).digit_weight667,18763 -digit_weight( 0x118E2, 2).digit_weight667,18763 -digit_weight( 0x12400, 2).digit_weight668,18790 -digit_weight( 0x12400, 2).digit_weight668,18790 -digit_weight( 0x12416, 2).digit_weight669,18817 -digit_weight( 0x12416, 2).digit_weight669,18817 -digit_weight( 0x1241F, 2).digit_weight670,18844 -digit_weight( 0x1241F, 2).digit_weight670,18844 -digit_weight( 0x12423, 2).digit_weight671,18871 -digit_weight( 0x12423, 2).digit_weight671,18871 -digit_weight( 0x1242D, 2).digit_weight672,18898 -digit_weight( 0x1242D, 2).digit_weight672,18898 -digit_weight( 0x12435, 2).digit_weight673,18925 -digit_weight( 0x12435, 2).digit_weight673,18925 -digit_weight( 0x1244A, 2).digit_weight674,18952 -digit_weight( 0x1244A, 2).digit_weight674,18952 -digit_weight( 0x12450, 2).digit_weight675,18979 -digit_weight( 0x12450, 2).digit_weight675,18979 -digit_weight( 0x12456, 2).digit_weight676,19006 -digit_weight( 0x12456, 2).digit_weight676,19006 -digit_weight( 0x12459, 2).digit_weight677,19033 -digit_weight( 0x12459, 2).digit_weight677,19033 -digit_weight( 0x16A62, 2).digit_weight678,19060 -digit_weight( 0x16A62, 2).digit_weight678,19060 -digit_weight( 0x16B52, 2).digit_weight679,19087 -digit_weight( 0x16B52, 2).digit_weight679,19087 -digit_weight( 0x1D361, 2).digit_weight680,19114 -digit_weight( 0x1D361, 2).digit_weight680,19114 -digit_weight( 0x1D7D0, 2).digit_weight681,19141 -digit_weight( 0x1D7D0, 2).digit_weight681,19141 -digit_weight( 0x1D7DA, 2).digit_weight682,19168 -digit_weight( 0x1D7DA, 2).digit_weight682,19168 -digit_weight( 0x1D7E4, 2).digit_weight683,19195 -digit_weight( 0x1D7E4, 2).digit_weight683,19195 -digit_weight( 0x1D7EE, 2).digit_weight684,19222 -digit_weight( 0x1D7EE, 2).digit_weight684,19222 -digit_weight( 0x1D7F8, 2).digit_weight685,19249 -digit_weight( 0x1D7F8, 2).digit_weight685,19249 -digit_weight( 0x1E8C8, 2).digit_weight686,19276 -digit_weight( 0x1E8C8, 2).digit_weight686,19276 -digit_weight( 0x1F103, 2).digit_weight687,19303 -digit_weight( 0x1F103, 2).digit_weight687,19303 -digit_weight( 0x22390, 2).digit_weight688,19330 -digit_weight( 0x22390, 2).digit_weight688,19330 -digit_weight( 0x0F2C, 5/2).digit_weight689,19357 -digit_weight( 0x0F2C, 5/2).digit_weight689,19357 -digit_weight( 0x0033, 3).digit_weight690,19385 -digit_weight( 0x0033, 3).digit_weight690,19385 -digit_weight( 0x00B3, 3).digit_weight691,19411 -digit_weight( 0x00B3, 3).digit_weight691,19411 -digit_weight( 0x0663, 3).digit_weight692,19437 -digit_weight( 0x0663, 3).digit_weight692,19437 -digit_weight( 0x06F3, 3).digit_weight693,19463 -digit_weight( 0x06F3, 3).digit_weight693,19463 -digit_weight( 0x07C3, 3).digit_weight694,19489 -digit_weight( 0x07C3, 3).digit_weight694,19489 -digit_weight( 0x0969, 3).digit_weight695,19515 -digit_weight( 0x0969, 3).digit_weight695,19515 -digit_weight( 0x09E9, 3).digit_weight696,19541 -digit_weight( 0x09E9, 3).digit_weight696,19541 -digit_weight( 0x0A69, 3).digit_weight697,19567 -digit_weight( 0x0A69, 3).digit_weight697,19567 -digit_weight( 0x0AE9, 3).digit_weight698,19593 -digit_weight( 0x0AE9, 3).digit_weight698,19593 -digit_weight( 0x0B69, 3).digit_weight699,19619 -digit_weight( 0x0B69, 3).digit_weight699,19619 -digit_weight( 0x0BE9, 3).digit_weight700,19645 -digit_weight( 0x0BE9, 3).digit_weight700,19645 -digit_weight( 0x0C69, 3).digit_weight701,19671 -digit_weight( 0x0C69, 3).digit_weight701,19671 -digit_weight( 0x0C7B, 3).digit_weight702,19697 -digit_weight( 0x0C7B, 3).digit_weight702,19697 -digit_weight( 0x0C7E, 3).digit_weight703,19723 -digit_weight( 0x0C7E, 3).digit_weight703,19723 -digit_weight( 0x0CE9, 3).digit_weight704,19749 -digit_weight( 0x0CE9, 3).digit_weight704,19749 -digit_weight( 0x0D69, 3).digit_weight705,19775 -digit_weight( 0x0D69, 3).digit_weight705,19775 -digit_weight( 0x0DE9, 3).digit_weight706,19801 -digit_weight( 0x0DE9, 3).digit_weight706,19801 -digit_weight( 0x0E53, 3).digit_weight707,19827 -digit_weight( 0x0E53, 3).digit_weight707,19827 -digit_weight( 0x0ED3, 3).digit_weight708,19853 -digit_weight( 0x0ED3, 3).digit_weight708,19853 -digit_weight( 0x0F23, 3).digit_weight709,19879 -digit_weight( 0x0F23, 3).digit_weight709,19879 -digit_weight( 0x1043, 3).digit_weight710,19905 -digit_weight( 0x1043, 3).digit_weight710,19905 -digit_weight( 0x1093, 3).digit_weight711,19931 -digit_weight( 0x1093, 3).digit_weight711,19931 -digit_weight( 0x136B, 3).digit_weight712,19957 -digit_weight( 0x136B, 3).digit_weight712,19957 -digit_weight( 0x17E3, 3).digit_weight713,19983 -digit_weight( 0x17E3, 3).digit_weight713,19983 -digit_weight( 0x17F3, 3).digit_weight714,20009 -digit_weight( 0x17F3, 3).digit_weight714,20009 -digit_weight( 0x1813, 3).digit_weight715,20035 -digit_weight( 0x1813, 3).digit_weight715,20035 -digit_weight( 0x1949, 3).digit_weight716,20061 -digit_weight( 0x1949, 3).digit_weight716,20061 -digit_weight( 0x19D3, 3).digit_weight717,20087 -digit_weight( 0x19D3, 3).digit_weight717,20087 -digit_weight( 0x1A83, 3).digit_weight718,20113 -digit_weight( 0x1A83, 3).digit_weight718,20113 -digit_weight( 0x1A93, 3).digit_weight719,20139 -digit_weight( 0x1A93, 3).digit_weight719,20139 -digit_weight( 0x1B53, 3).digit_weight720,20165 -digit_weight( 0x1B53, 3).digit_weight720,20165 -digit_weight( 0x1BB3, 3).digit_weight721,20191 -digit_weight( 0x1BB3, 3).digit_weight721,20191 -digit_weight( 0x1C43, 3).digit_weight722,20217 -digit_weight( 0x1C43, 3).digit_weight722,20217 -digit_weight( 0x1C53, 3).digit_weight723,20243 -digit_weight( 0x1C53, 3).digit_weight723,20243 -digit_weight( 0x2083, 3).digit_weight724,20269 -digit_weight( 0x2083, 3).digit_weight724,20269 -digit_weight( 0x2162, 3).digit_weight725,20295 -digit_weight( 0x2162, 3).digit_weight725,20295 -digit_weight( 0x2172, 3).digit_weight726,20321 -digit_weight( 0x2172, 3).digit_weight726,20321 -digit_weight( 0x2462, 3).digit_weight727,20347 -digit_weight( 0x2462, 3).digit_weight727,20347 -digit_weight( 0x2476, 3).digit_weight728,20373 -digit_weight( 0x2476, 3).digit_weight728,20373 -digit_weight( 0x248A, 3).digit_weight729,20399 -digit_weight( 0x248A, 3).digit_weight729,20399 -digit_weight( 0x24F7, 3).digit_weight730,20425 -digit_weight( 0x24F7, 3).digit_weight730,20425 -digit_weight( 0x2778, 3).digit_weight731,20451 -digit_weight( 0x2778, 3).digit_weight731,20451 -digit_weight( 0x2782, 3).digit_weight732,20477 -digit_weight( 0x2782, 3).digit_weight732,20477 -digit_weight( 0x278C, 3).digit_weight733,20503 -digit_weight( 0x278C, 3).digit_weight733,20503 -digit_weight( 0x3023, 3).digit_weight734,20529 -digit_weight( 0x3023, 3).digit_weight734,20529 -digit_weight( 0x3194, 3).digit_weight735,20555 -digit_weight( 0x3194, 3).digit_weight735,20555 -digit_weight( 0x3222, 3).digit_weight736,20581 -digit_weight( 0x3222, 3).digit_weight736,20581 -digit_weight( 0x3282, 3).digit_weight737,20607 -digit_weight( 0x3282, 3).digit_weight737,20607 -digit_weight( 0x4E09, 3).digit_weight738,20633 -digit_weight( 0x4E09, 3).digit_weight738,20633 -digit_weight( 0x4EE8, 3).digit_weight739,20659 -digit_weight( 0x4EE8, 3).digit_weight739,20659 -digit_weight( 0x53C1, 0x53C4, 3).digit_weight740,20685 -digit_weight( 0x53C1, 0x53C4, 3).digit_weight740,20685 -digit_weight( 0x5F0E, 3).digit_weight741,20719 -digit_weight( 0x5F0E, 3).digit_weight741,20719 -digit_weight( 0xA623, 3).digit_weight742,20745 -digit_weight( 0xA623, 3).digit_weight742,20745 -digit_weight( 0xA6E8, 3).digit_weight743,20771 -digit_weight( 0xA6E8, 3).digit_weight743,20771 -digit_weight( 0xA8D3, 3).digit_weight744,20797 -digit_weight( 0xA8D3, 3).digit_weight744,20797 -digit_weight( 0xA903, 3).digit_weight745,20823 -digit_weight( 0xA903, 3).digit_weight745,20823 -digit_weight( 0xA9D3, 3).digit_weight746,20849 -digit_weight( 0xA9D3, 3).digit_weight746,20849 -digit_weight( 0xA9F3, 3).digit_weight747,20875 -digit_weight( 0xA9F3, 3).digit_weight747,20875 -digit_weight( 0xAA53, 3).digit_weight748,20901 -digit_weight( 0xAA53, 3).digit_weight748,20901 -digit_weight( 0xABF3, 3).digit_weight749,20927 -digit_weight( 0xABF3, 3).digit_weight749,20927 -digit_weight( 0xF96B, 3).digit_weight750,20953 -digit_weight( 0xF96B, 3).digit_weight750,20953 -digit_weight( 0xFF13, 3).digit_weight751,20979 -digit_weight( 0xFF13, 3).digit_weight751,20979 -digit_weight( 0x10109, 3).digit_weight752,21005 -digit_weight( 0x10109, 3).digit_weight752,21005 -digit_weight( 0x102E3, 3).digit_weight753,21032 -digit_weight( 0x102E3, 3).digit_weight753,21032 -digit_weight( 0x104A3, 3).digit_weight754,21059 -digit_weight( 0x104A3, 3).digit_weight754,21059 -digit_weight( 0x1085A, 3).digit_weight755,21086 -digit_weight( 0x1085A, 3).digit_weight755,21086 -digit_weight( 0x1087B, 3).digit_weight756,21113 -digit_weight( 0x1087B, 3).digit_weight756,21113 -digit_weight( 0x108A9, 3).digit_weight757,21140 -digit_weight( 0x108A9, 3).digit_weight757,21140 -digit_weight( 0x1091B, 3).digit_weight758,21167 -digit_weight( 0x1091B, 3).digit_weight758,21167 -digit_weight( 0x109C2, 3).digit_weight759,21194 -digit_weight( 0x109C2, 3).digit_weight759,21194 -digit_weight( 0x10A42, 3).digit_weight760,21221 -digit_weight( 0x10A42, 3).digit_weight760,21221 -digit_weight( 0x10B5A, 3).digit_weight761,21248 -digit_weight( 0x10B5A, 3).digit_weight761,21248 -digit_weight( 0x10B7A, 3).digit_weight762,21275 -digit_weight( 0x10B7A, 3).digit_weight762,21275 -digit_weight( 0x10BAB, 3).digit_weight763,21302 -digit_weight( 0x10BAB, 3).digit_weight763,21302 -digit_weight( 0x10E62, 3).digit_weight764,21329 -digit_weight( 0x10E62, 3).digit_weight764,21329 -digit_weight( 0x11054, 3).digit_weight765,21356 -digit_weight( 0x11054, 3).digit_weight765,21356 -digit_weight( 0x11069, 3).digit_weight766,21383 -digit_weight( 0x11069, 3).digit_weight766,21383 -digit_weight( 0x110F3, 3).digit_weight767,21410 -digit_weight( 0x110F3, 3).digit_weight767,21410 -digit_weight( 0x11139, 3).digit_weight768,21437 -digit_weight( 0x11139, 3).digit_weight768,21437 -digit_weight( 0x111D3, 3).digit_weight769,21464 -digit_weight( 0x111D3, 3).digit_weight769,21464 -digit_weight( 0x111E3, 3).digit_weight770,21491 -digit_weight( 0x111E3, 3).digit_weight770,21491 -digit_weight( 0x112F3, 3).digit_weight771,21518 -digit_weight( 0x112F3, 3).digit_weight771,21518 -digit_weight( 0x114D3, 3).digit_weight772,21545 -digit_weight( 0x114D3, 3).digit_weight772,21545 -digit_weight( 0x11653, 3).digit_weight773,21572 -digit_weight( 0x11653, 3).digit_weight773,21572 -digit_weight( 0x116C3, 3).digit_weight774,21599 -digit_weight( 0x116C3, 3).digit_weight774,21599 -digit_weight( 0x11733, 3).digit_weight775,21626 -digit_weight( 0x11733, 3).digit_weight775,21626 -digit_weight( 0x118E3, 3).digit_weight776,21653 -digit_weight( 0x118E3, 3).digit_weight776,21653 -digit_weight( 0x12401, 3).digit_weight777,21680 -digit_weight( 0x12401, 3).digit_weight777,21680 -digit_weight( 0x12408, 3).digit_weight778,21707 -digit_weight( 0x12408, 3).digit_weight778,21707 -digit_weight( 0x12417, 3).digit_weight779,21734 -digit_weight( 0x12417, 3).digit_weight779,21734 -digit_weight( 0x12420, 3).digit_weight780,21761 -digit_weight( 0x12420, 3).digit_weight780,21761 -digit_weight( 0x12424, 0x12425, 3).digit_weight781,21788 -digit_weight( 0x12424, 0x12425, 3).digit_weight781,21788 -digit_weight( 0x1242E, 0x1242F, 3).digit_weight782,21824 -digit_weight( 0x1242E, 0x1242F, 3).digit_weight782,21824 -digit_weight( 0x12436, 0x12437, 3).digit_weight783,21860 -digit_weight( 0x12436, 0x12437, 3).digit_weight783,21860 -digit_weight( 0x1243A, 0x1243B, 3).digit_weight784,21896 -digit_weight( 0x1243A, 0x1243B, 3).digit_weight784,21896 -digit_weight( 0x1244B, 3).digit_weight785,21932 -digit_weight( 0x1244B, 3).digit_weight785,21932 -digit_weight( 0x12451, 3).digit_weight786,21959 -digit_weight( 0x12451, 3).digit_weight786,21959 -digit_weight( 0x12457, 3).digit_weight787,21986 -digit_weight( 0x12457, 3).digit_weight787,21986 -digit_weight( 0x16A63, 3).digit_weight788,22013 -digit_weight( 0x16A63, 3).digit_weight788,22013 -digit_weight( 0x16B53, 3).digit_weight789,22040 -digit_weight( 0x16B53, 3).digit_weight789,22040 -digit_weight( 0x1D362, 3).digit_weight790,22067 -digit_weight( 0x1D362, 3).digit_weight790,22067 -digit_weight( 0x1D7D1, 3).digit_weight791,22094 -digit_weight( 0x1D7D1, 3).digit_weight791,22094 -digit_weight( 0x1D7DB, 3).digit_weight792,22121 -digit_weight( 0x1D7DB, 3).digit_weight792,22121 -digit_weight( 0x1D7E5, 3).digit_weight793,22148 -digit_weight( 0x1D7E5, 3).digit_weight793,22148 -digit_weight( 0x1D7EF, 3).digit_weight794,22175 -digit_weight( 0x1D7EF, 3).digit_weight794,22175 -digit_weight( 0x1D7F9, 3).digit_weight795,22202 -digit_weight( 0x1D7F9, 3).digit_weight795,22202 -digit_weight( 0x1E8C9, 3).digit_weight796,22229 -digit_weight( 0x1E8C9, 3).digit_weight796,22229 -digit_weight( 0x1F104, 3).digit_weight797,22256 -digit_weight( 0x1F104, 3).digit_weight797,22256 -digit_weight( 0x20AFD, 3).digit_weight798,22283 -digit_weight( 0x20AFD, 3).digit_weight798,22283 -digit_weight( 0x20B19, 3).digit_weight799,22310 -digit_weight( 0x20B19, 3).digit_weight799,22310 -digit_weight( 0x22998, 3).digit_weight800,22337 -digit_weight( 0x22998, 3).digit_weight800,22337 -digit_weight( 0x23B1B, 3).digit_weight801,22364 -digit_weight( 0x23B1B, 3).digit_weight801,22364 -digit_weight( 0x0F2D, 7/2).digit_weight802,22391 -digit_weight( 0x0F2D, 7/2).digit_weight802,22391 -digit_weight( 0x0034, 4).digit_weight803,22419 -digit_weight( 0x0034, 4).digit_weight803,22419 -digit_weight( 0x0664, 4).digit_weight804,22445 -digit_weight( 0x0664, 4).digit_weight804,22445 -digit_weight( 0x06F4, 4).digit_weight805,22471 -digit_weight( 0x06F4, 4).digit_weight805,22471 -digit_weight( 0x07C4, 4).digit_weight806,22497 -digit_weight( 0x07C4, 4).digit_weight806,22497 -digit_weight( 0x096A, 4).digit_weight807,22523 -digit_weight( 0x096A, 4).digit_weight807,22523 -digit_weight( 0x09EA, 4).digit_weight808,22549 -digit_weight( 0x09EA, 4).digit_weight808,22549 -digit_weight( 0x0A6A, 4).digit_weight809,22575 -digit_weight( 0x0A6A, 4).digit_weight809,22575 -digit_weight( 0x0AEA, 4).digit_weight810,22601 -digit_weight( 0x0AEA, 4).digit_weight810,22601 -digit_weight( 0x0B6A, 4).digit_weight811,22627 -digit_weight( 0x0B6A, 4).digit_weight811,22627 -digit_weight( 0x0BEA, 4).digit_weight812,22653 -digit_weight( 0x0BEA, 4).digit_weight812,22653 -digit_weight( 0x0C6A, 4).digit_weight813,22679 -digit_weight( 0x0C6A, 4).digit_weight813,22679 -digit_weight( 0x0CEA, 4).digit_weight814,22705 -digit_weight( 0x0CEA, 4).digit_weight814,22705 -digit_weight( 0x0D6A, 4).digit_weight815,22731 -digit_weight( 0x0D6A, 4).digit_weight815,22731 -digit_weight( 0x0DEA, 4).digit_weight816,22757 -digit_weight( 0x0DEA, 4).digit_weight816,22757 -digit_weight( 0x0E54, 4).digit_weight817,22783 -digit_weight( 0x0E54, 4).digit_weight817,22783 -digit_weight( 0x0ED4, 4).digit_weight818,22809 -digit_weight( 0x0ED4, 4).digit_weight818,22809 -digit_weight( 0x0F24, 4).digit_weight819,22835 -digit_weight( 0x0F24, 4).digit_weight819,22835 -digit_weight( 0x1044, 4).digit_weight820,22861 -digit_weight( 0x1044, 4).digit_weight820,22861 -digit_weight( 0x1094, 4).digit_weight821,22887 -digit_weight( 0x1094, 4).digit_weight821,22887 -digit_weight( 0x136C, 4).digit_weight822,22913 -digit_weight( 0x136C, 4).digit_weight822,22913 -digit_weight( 0x17E4, 4).digit_weight823,22939 -digit_weight( 0x17E4, 4).digit_weight823,22939 -digit_weight( 0x17F4, 4).digit_weight824,22965 -digit_weight( 0x17F4, 4).digit_weight824,22965 -digit_weight( 0x1814, 4).digit_weight825,22991 -digit_weight( 0x1814, 4).digit_weight825,22991 -digit_weight( 0x194A, 4).digit_weight826,23017 -digit_weight( 0x194A, 4).digit_weight826,23017 -digit_weight( 0x19D4, 4).digit_weight827,23043 -digit_weight( 0x19D4, 4).digit_weight827,23043 -digit_weight( 0x1A84, 4).digit_weight828,23069 -digit_weight( 0x1A84, 4).digit_weight828,23069 -digit_weight( 0x1A94, 4).digit_weight829,23095 -digit_weight( 0x1A94, 4).digit_weight829,23095 -digit_weight( 0x1B54, 4).digit_weight830,23121 -digit_weight( 0x1B54, 4).digit_weight830,23121 -digit_weight( 0x1BB4, 4).digit_weight831,23147 -digit_weight( 0x1BB4, 4).digit_weight831,23147 -digit_weight( 0x1C44, 4).digit_weight832,23173 -digit_weight( 0x1C44, 4).digit_weight832,23173 -digit_weight( 0x1C54, 4).digit_weight833,23199 -digit_weight( 0x1C54, 4).digit_weight833,23199 -digit_weight( 0x2074, 4).digit_weight834,23225 -digit_weight( 0x2074, 4).digit_weight834,23225 -digit_weight( 0x2084, 4).digit_weight835,23251 -digit_weight( 0x2084, 4).digit_weight835,23251 -digit_weight( 0x2163, 4).digit_weight836,23277 -digit_weight( 0x2163, 4).digit_weight836,23277 -digit_weight( 0x2173, 4).digit_weight837,23303 -digit_weight( 0x2173, 4).digit_weight837,23303 -digit_weight( 0x2463, 4).digit_weight838,23329 -digit_weight( 0x2463, 4).digit_weight838,23329 -digit_weight( 0x2477, 4).digit_weight839,23355 -digit_weight( 0x2477, 4).digit_weight839,23355 -digit_weight( 0x248B, 4).digit_weight840,23381 -digit_weight( 0x248B, 4).digit_weight840,23381 -digit_weight( 0x24F8, 4).digit_weight841,23407 -digit_weight( 0x24F8, 4).digit_weight841,23407 -digit_weight( 0x2779, 4).digit_weight842,23433 -digit_weight( 0x2779, 4).digit_weight842,23433 -digit_weight( 0x2783, 4).digit_weight843,23459 -digit_weight( 0x2783, 4).digit_weight843,23459 -digit_weight( 0x278D, 4).digit_weight844,23485 -digit_weight( 0x278D, 4).digit_weight844,23485 -digit_weight( 0x3024, 4).digit_weight845,23511 -digit_weight( 0x3024, 4).digit_weight845,23511 -digit_weight( 0x3195, 4).digit_weight846,23537 -digit_weight( 0x3195, 4).digit_weight846,23537 -digit_weight( 0x3223, 4).digit_weight847,23563 -digit_weight( 0x3223, 4).digit_weight847,23563 -digit_weight( 0x3283, 4).digit_weight848,23589 -digit_weight( 0x3283, 4).digit_weight848,23589 -digit_weight( 0x4E96, 4).digit_weight849,23615 -digit_weight( 0x4E96, 4).digit_weight849,23615 -digit_weight( 0x56DB, 4).digit_weight850,23641 -digit_weight( 0x56DB, 4).digit_weight850,23641 -digit_weight( 0x8086, 4).digit_weight851,23667 -digit_weight( 0x8086, 4).digit_weight851,23667 -digit_weight( 0xA624, 4).digit_weight852,23693 -digit_weight( 0xA624, 4).digit_weight852,23693 -digit_weight( 0xA6E9, 4).digit_weight853,23719 -digit_weight( 0xA6E9, 4).digit_weight853,23719 -digit_weight( 0xA8D4, 4).digit_weight854,23745 -digit_weight( 0xA8D4, 4).digit_weight854,23745 -digit_weight( 0xA904, 4).digit_weight855,23771 -digit_weight( 0xA904, 4).digit_weight855,23771 -digit_weight( 0xA9D4, 4).digit_weight856,23797 -digit_weight( 0xA9D4, 4).digit_weight856,23797 -digit_weight( 0xA9F4, 4).digit_weight857,23823 -digit_weight( 0xA9F4, 4).digit_weight857,23823 -digit_weight( 0xAA54, 4).digit_weight858,23849 -digit_weight( 0xAA54, 4).digit_weight858,23849 -digit_weight( 0xABF4, 4).digit_weight859,23875 -digit_weight( 0xABF4, 4).digit_weight859,23875 -digit_weight( 0xFF14, 4).digit_weight860,23901 -digit_weight( 0xFF14, 4).digit_weight860,23901 -digit_weight( 0x1010A, 4).digit_weight861,23927 -digit_weight( 0x1010A, 4).digit_weight861,23927 -digit_weight( 0x102E4, 4).digit_weight862,23954 -digit_weight( 0x102E4, 4).digit_weight862,23954 -digit_weight( 0x104A4, 4).digit_weight863,23981 -digit_weight( 0x104A4, 4).digit_weight863,23981 -digit_weight( 0x1087C, 4).digit_weight864,24008 -digit_weight( 0x1087C, 4).digit_weight864,24008 -digit_weight( 0x108AA, 0x108AB, 4).digit_weight865,24035 -digit_weight( 0x108AA, 0x108AB, 4).digit_weight865,24035 -digit_weight( 0x109C3, 4).digit_weight866,24071 -digit_weight( 0x109C3, 4).digit_weight866,24071 -digit_weight( 0x10A43, 4).digit_weight867,24098 -digit_weight( 0x10A43, 4).digit_weight867,24098 -digit_weight( 0x10B5B, 4).digit_weight868,24125 -digit_weight( 0x10B5B, 4).digit_weight868,24125 -digit_weight( 0x10B7B, 4).digit_weight869,24152 -digit_weight( 0x10B7B, 4).digit_weight869,24152 -digit_weight( 0x10BAC, 4).digit_weight870,24179 -digit_weight( 0x10BAC, 4).digit_weight870,24179 -digit_weight( 0x10E63, 4).digit_weight871,24206 -digit_weight( 0x10E63, 4).digit_weight871,24206 -digit_weight( 0x11055, 4).digit_weight872,24233 -digit_weight( 0x11055, 4).digit_weight872,24233 -digit_weight( 0x1106A, 4).digit_weight873,24260 -digit_weight( 0x1106A, 4).digit_weight873,24260 -digit_weight( 0x110F4, 4).digit_weight874,24287 -digit_weight( 0x110F4, 4).digit_weight874,24287 -digit_weight( 0x1113A, 4).digit_weight875,24314 -digit_weight( 0x1113A, 4).digit_weight875,24314 -digit_weight( 0x111D4, 4).digit_weight876,24341 -digit_weight( 0x111D4, 4).digit_weight876,24341 -digit_weight( 0x111E4, 4).digit_weight877,24368 -digit_weight( 0x111E4, 4).digit_weight877,24368 -digit_weight( 0x112F4, 4).digit_weight878,24395 -digit_weight( 0x112F4, 4).digit_weight878,24395 -digit_weight( 0x114D4, 4).digit_weight879,24422 -digit_weight( 0x114D4, 4).digit_weight879,24422 -digit_weight( 0x11654, 4).digit_weight880,24449 -digit_weight( 0x11654, 4).digit_weight880,24449 -digit_weight( 0x116C4, 4).digit_weight881,24476 -digit_weight( 0x116C4, 4).digit_weight881,24476 -digit_weight( 0x11734, 4).digit_weight882,24503 -digit_weight( 0x11734, 4).digit_weight882,24503 -digit_weight( 0x118E4, 4).digit_weight883,24530 -digit_weight( 0x118E4, 4).digit_weight883,24530 -digit_weight( 0x12402, 4).digit_weight884,24557 -digit_weight( 0x12402, 4).digit_weight884,24557 -digit_weight( 0x12409, 4).digit_weight885,24584 -digit_weight( 0x12409, 4).digit_weight885,24584 -digit_weight( 0x1240F, 4).digit_weight886,24611 -digit_weight( 0x1240F, 4).digit_weight886,24611 -digit_weight( 0x12418, 4).digit_weight887,24638 -digit_weight( 0x12418, 4).digit_weight887,24638 -digit_weight( 0x12421, 4).digit_weight888,24665 -digit_weight( 0x12421, 4).digit_weight888,24665 -digit_weight( 0x12426, 4).digit_weight889,24692 -digit_weight( 0x12426, 4).digit_weight889,24692 -digit_weight( 0x12430, 4).digit_weight890,24719 -digit_weight( 0x12430, 4).digit_weight890,24719 -digit_weight( 0x12438, 4).digit_weight891,24746 -digit_weight( 0x12438, 4).digit_weight891,24746 -digit_weight( 0x1243C, 0x1243F, 4).digit_weight892,24773 -digit_weight( 0x1243C, 0x1243F, 4).digit_weight892,24773 -digit_weight( 0x1244C, 4).digit_weight893,24809 -digit_weight( 0x1244C, 4).digit_weight893,24809 -digit_weight( 0x12452, 0x12453, 4).digit_weight894,24836 -digit_weight( 0x12452, 0x12453, 4).digit_weight894,24836 -digit_weight( 0x12469, 4).digit_weight895,24872 -digit_weight( 0x12469, 4).digit_weight895,24872 -digit_weight( 0x16A64, 4).digit_weight896,24899 -digit_weight( 0x16A64, 4).digit_weight896,24899 -digit_weight( 0x16B54, 4).digit_weight897,24926 -digit_weight( 0x16B54, 4).digit_weight897,24926 -digit_weight( 0x1D363, 4).digit_weight898,24953 -digit_weight( 0x1D363, 4).digit_weight898,24953 -digit_weight( 0x1D7D2, 4).digit_weight899,24980 -digit_weight( 0x1D7D2, 4).digit_weight899,24980 -digit_weight( 0x1D7DC, 4).digit_weight900,25007 -digit_weight( 0x1D7DC, 4).digit_weight900,25007 -digit_weight( 0x1D7E6, 4).digit_weight901,25034 -digit_weight( 0x1D7E6, 4).digit_weight901,25034 -digit_weight( 0x1D7F0, 4).digit_weight902,25061 -digit_weight( 0x1D7F0, 4).digit_weight902,25061 -digit_weight( 0x1D7FA, 4).digit_weight903,25088 -digit_weight( 0x1D7FA, 4).digit_weight903,25088 -digit_weight( 0x1E8CA, 4).digit_weight904,25115 -digit_weight( 0x1E8CA, 4).digit_weight904,25115 -digit_weight( 0x1F105, 4).digit_weight905,25142 -digit_weight( 0x1F105, 4).digit_weight905,25142 -digit_weight( 0x20064, 4).digit_weight906,25169 -digit_weight( 0x20064, 4).digit_weight906,25169 -digit_weight( 0x200E2, 4).digit_weight907,25196 -digit_weight( 0x200E2, 4).digit_weight907,25196 -digit_weight( 0x2626D, 4).digit_weight908,25223 -digit_weight( 0x2626D, 4).digit_weight908,25223 -digit_weight( 0x0F2E, 9/2).digit_weight909,25250 -digit_weight( 0x0F2E, 9/2).digit_weight909,25250 -digit_weight( 0x0035, 5).digit_weight910,25278 -digit_weight( 0x0035, 5).digit_weight910,25278 -digit_weight( 0x0665, 5).digit_weight911,25304 -digit_weight( 0x0665, 5).digit_weight911,25304 -digit_weight( 0x06F5, 5).digit_weight912,25330 -digit_weight( 0x06F5, 5).digit_weight912,25330 -digit_weight( 0x07C5, 5).digit_weight913,25356 -digit_weight( 0x07C5, 5).digit_weight913,25356 -digit_weight( 0x096B, 5).digit_weight914,25382 -digit_weight( 0x096B, 5).digit_weight914,25382 -digit_weight( 0x09EB, 5).digit_weight915,25408 -digit_weight( 0x09EB, 5).digit_weight915,25408 -digit_weight( 0x0A6B, 5).digit_weight916,25434 -digit_weight( 0x0A6B, 5).digit_weight916,25434 -digit_weight( 0x0AEB, 5).digit_weight917,25460 -digit_weight( 0x0AEB, 5).digit_weight917,25460 -digit_weight( 0x0B6B, 5).digit_weight918,25486 -digit_weight( 0x0B6B, 5).digit_weight918,25486 -digit_weight( 0x0BEB, 5).digit_weight919,25512 -digit_weight( 0x0BEB, 5).digit_weight919,25512 -digit_weight( 0x0C6B, 5).digit_weight920,25538 -digit_weight( 0x0C6B, 5).digit_weight920,25538 -digit_weight( 0x0CEB, 5).digit_weight921,25564 -digit_weight( 0x0CEB, 5).digit_weight921,25564 -digit_weight( 0x0D6B, 5).digit_weight922,25590 -digit_weight( 0x0D6B, 5).digit_weight922,25590 -digit_weight( 0x0DEB, 5).digit_weight923,25616 -digit_weight( 0x0DEB, 5).digit_weight923,25616 -digit_weight( 0x0E55, 5).digit_weight924,25642 -digit_weight( 0x0E55, 5).digit_weight924,25642 -digit_weight( 0x0ED5, 5).digit_weight925,25668 -digit_weight( 0x0ED5, 5).digit_weight925,25668 -digit_weight( 0x0F25, 5).digit_weight926,25694 -digit_weight( 0x0F25, 5).digit_weight926,25694 -digit_weight( 0x1045, 5).digit_weight927,25720 -digit_weight( 0x1045, 5).digit_weight927,25720 -digit_weight( 0x1095, 5).digit_weight928,25746 -digit_weight( 0x1095, 5).digit_weight928,25746 -digit_weight( 0x136D, 5).digit_weight929,25772 -digit_weight( 0x136D, 5).digit_weight929,25772 -digit_weight( 0x17E5, 5).digit_weight930,25798 -digit_weight( 0x17E5, 5).digit_weight930,25798 -digit_weight( 0x17F5, 5).digit_weight931,25824 -digit_weight( 0x17F5, 5).digit_weight931,25824 -digit_weight( 0x1815, 5).digit_weight932,25850 -digit_weight( 0x1815, 5).digit_weight932,25850 -digit_weight( 0x194B, 5).digit_weight933,25876 -digit_weight( 0x194B, 5).digit_weight933,25876 -digit_weight( 0x19D5, 5).digit_weight934,25902 -digit_weight( 0x19D5, 5).digit_weight934,25902 -digit_weight( 0x1A85, 5).digit_weight935,25928 -digit_weight( 0x1A85, 5).digit_weight935,25928 -digit_weight( 0x1A95, 5).digit_weight936,25954 -digit_weight( 0x1A95, 5).digit_weight936,25954 -digit_weight( 0x1B55, 5).digit_weight937,25980 -digit_weight( 0x1B55, 5).digit_weight937,25980 -digit_weight( 0x1BB5, 5).digit_weight938,26006 -digit_weight( 0x1BB5, 5).digit_weight938,26006 -digit_weight( 0x1C45, 5).digit_weight939,26032 -digit_weight( 0x1C45, 5).digit_weight939,26032 -digit_weight( 0x1C55, 5).digit_weight940,26058 -digit_weight( 0x1C55, 5).digit_weight940,26058 -digit_weight( 0x2075, 5).digit_weight941,26084 -digit_weight( 0x2075, 5).digit_weight941,26084 -digit_weight( 0x2085, 5).digit_weight942,26110 -digit_weight( 0x2085, 5).digit_weight942,26110 -digit_weight( 0x2164, 5).digit_weight943,26136 -digit_weight( 0x2164, 5).digit_weight943,26136 -digit_weight( 0x2174, 5).digit_weight944,26162 -digit_weight( 0x2174, 5).digit_weight944,26162 -digit_weight( 0x2464, 5).digit_weight945,26188 -digit_weight( 0x2464, 5).digit_weight945,26188 -digit_weight( 0x2478, 5).digit_weight946,26214 -digit_weight( 0x2478, 5).digit_weight946,26214 -digit_weight( 0x248C, 5).digit_weight947,26240 -digit_weight( 0x248C, 5).digit_weight947,26240 -digit_weight( 0x24F9, 5).digit_weight948,26266 -digit_weight( 0x24F9, 5).digit_weight948,26266 -digit_weight( 0x277A, 5).digit_weight949,26292 -digit_weight( 0x277A, 5).digit_weight949,26292 -digit_weight( 0x2784, 5).digit_weight950,26318 -digit_weight( 0x2784, 5).digit_weight950,26318 -digit_weight( 0x278E, 5).digit_weight951,26344 -digit_weight( 0x278E, 5).digit_weight951,26344 -digit_weight( 0x3025, 5).digit_weight952,26370 -digit_weight( 0x3025, 5).digit_weight952,26370 -digit_weight( 0x3224, 5).digit_weight953,26396 -digit_weight( 0x3224, 5).digit_weight953,26396 -digit_weight( 0x3284, 5).digit_weight954,26422 -digit_weight( 0x3284, 5).digit_weight954,26422 -digit_weight( 0x3405, 5).digit_weight955,26448 -digit_weight( 0x3405, 5).digit_weight955,26448 -digit_weight( 0x382A, 5).digit_weight956,26474 -digit_weight( 0x382A, 5).digit_weight956,26474 -digit_weight( 0x4E94, 5).digit_weight957,26500 -digit_weight( 0x4E94, 5).digit_weight957,26500 -digit_weight( 0x4F0D, 5).digit_weight958,26526 -digit_weight( 0x4F0D, 5).digit_weight958,26526 -digit_weight( 0xA625, 5).digit_weight959,26552 -digit_weight( 0xA625, 5).digit_weight959,26552 -digit_weight( 0xA6EA, 5).digit_weight960,26578 -digit_weight( 0xA6EA, 5).digit_weight960,26578 -digit_weight( 0xA8D5, 5).digit_weight961,26604 -digit_weight( 0xA8D5, 5).digit_weight961,26604 -digit_weight( 0xA905, 5).digit_weight962,26630 -digit_weight( 0xA905, 5).digit_weight962,26630 -digit_weight( 0xA9D5, 5).digit_weight963,26656 -digit_weight( 0xA9D5, 5).digit_weight963,26656 -digit_weight( 0xA9F5, 5).digit_weight964,26682 -digit_weight( 0xA9F5, 5).digit_weight964,26682 -digit_weight( 0xAA55, 5).digit_weight965,26708 -digit_weight( 0xAA55, 5).digit_weight965,26708 -digit_weight( 0xABF5, 5).digit_weight966,26734 -digit_weight( 0xABF5, 5).digit_weight966,26734 -digit_weight( 0xFF15, 5).digit_weight967,26760 -digit_weight( 0xFF15, 5).digit_weight967,26760 -digit_weight( 0x1010B, 5).digit_weight968,26786 -digit_weight( 0x1010B, 5).digit_weight968,26786 -digit_weight( 0x10143, 5).digit_weight969,26813 -digit_weight( 0x10143, 5).digit_weight969,26813 -digit_weight( 0x10148, 5).digit_weight970,26840 -digit_weight( 0x10148, 5).digit_weight970,26840 -digit_weight( 0x1014F, 5).digit_weight971,26867 -digit_weight( 0x1014F, 5).digit_weight971,26867 -digit_weight( 0x1015F, 5).digit_weight972,26894 -digit_weight( 0x1015F, 5).digit_weight972,26894 -digit_weight( 0x10173, 5).digit_weight973,26921 -digit_weight( 0x10173, 5).digit_weight973,26921 -digit_weight( 0x102E5, 5).digit_weight974,26948 -digit_weight( 0x102E5, 5).digit_weight974,26948 -digit_weight( 0x10321, 5).digit_weight975,26975 -digit_weight( 0x10321, 5).digit_weight975,26975 -digit_weight( 0x104A5, 5).digit_weight976,27002 -digit_weight( 0x104A5, 5).digit_weight976,27002 -digit_weight( 0x1087D, 5).digit_weight977,27029 -digit_weight( 0x1087D, 5).digit_weight977,27029 -digit_weight( 0x108AC, 5).digit_weight978,27056 -digit_weight( 0x108AC, 5).digit_weight978,27056 -digit_weight( 0x108FC, 5).digit_weight979,27083 -digit_weight( 0x108FC, 5).digit_weight979,27083 -digit_weight( 0x109C4, 5).digit_weight980,27110 -digit_weight( 0x109C4, 5).digit_weight980,27110 -digit_weight( 0x10AEC, 5).digit_weight981,27137 -digit_weight( 0x10AEC, 5).digit_weight981,27137 -digit_weight( 0x10CFB, 5).digit_weight982,27164 -digit_weight( 0x10CFB, 5).digit_weight982,27164 -digit_weight( 0x10E64, 5).digit_weight983,27191 -digit_weight( 0x10E64, 5).digit_weight983,27191 -digit_weight( 0x11056, 5).digit_weight984,27218 -digit_weight( 0x11056, 5).digit_weight984,27218 -digit_weight( 0x1106B, 5).digit_weight985,27245 -digit_weight( 0x1106B, 5).digit_weight985,27245 -digit_weight( 0x110F5, 5).digit_weight986,27272 -digit_weight( 0x110F5, 5).digit_weight986,27272 -digit_weight( 0x1113B, 5).digit_weight987,27299 -digit_weight( 0x1113B, 5).digit_weight987,27299 -digit_weight( 0x111D5, 5).digit_weight988,27326 -digit_weight( 0x111D5, 5).digit_weight988,27326 -digit_weight( 0x111E5, 5).digit_weight989,27353 -digit_weight( 0x111E5, 5).digit_weight989,27353 -digit_weight( 0x112F5, 5).digit_weight990,27380 -digit_weight( 0x112F5, 5).digit_weight990,27380 -digit_weight( 0x114D5, 5).digit_weight991,27407 -digit_weight( 0x114D5, 5).digit_weight991,27407 -digit_weight( 0x11655, 5).digit_weight992,27434 -digit_weight( 0x11655, 5).digit_weight992,27434 -digit_weight( 0x116C5, 5).digit_weight993,27461 -digit_weight( 0x116C5, 5).digit_weight993,27461 -digit_weight( 0x11735, 5).digit_weight994,27488 -digit_weight( 0x11735, 5).digit_weight994,27488 -digit_weight( 0x118E5, 5).digit_weight995,27515 -digit_weight( 0x118E5, 5).digit_weight995,27515 -digit_weight( 0x12403, 5).digit_weight996,27542 -digit_weight( 0x12403, 5).digit_weight996,27542 -digit_weight( 0x1240A, 5).digit_weight997,27569 -digit_weight( 0x1240A, 5).digit_weight997,27569 -digit_weight( 0x12410, 5).digit_weight998,27596 -digit_weight( 0x12410, 5).digit_weight998,27596 -digit_weight( 0x12419, 5).digit_weight999,27623 -digit_weight( 0x12419, 5).digit_weight999,27623 -digit_weight( 0x12422, 5).digit_weight1000,27650 -digit_weight( 0x12422, 5).digit_weight1000,27650 -digit_weight( 0x12427, 5).digit_weight1001,27677 -digit_weight( 0x12427, 5).digit_weight1001,27677 -digit_weight( 0x12431, 5).digit_weight1002,27704 -digit_weight( 0x12431, 5).digit_weight1002,27704 -digit_weight( 0x12439, 5).digit_weight1003,27731 -digit_weight( 0x12439, 5).digit_weight1003,27731 -digit_weight( 0x1244D, 5).digit_weight1004,27758 -digit_weight( 0x1244D, 5).digit_weight1004,27758 -digit_weight( 0x12454, 0x12455, 5).digit_weight1005,27785 -digit_weight( 0x12454, 0x12455, 5).digit_weight1005,27785 -digit_weight( 0x1246A, 5).digit_weight1006,27821 -digit_weight( 0x1246A, 5).digit_weight1006,27821 -digit_weight( 0x16A65, 5).digit_weight1007,27848 -digit_weight( 0x16A65, 5).digit_weight1007,27848 -digit_weight( 0x16B55, 5).digit_weight1008,27875 -digit_weight( 0x16B55, 5).digit_weight1008,27875 -digit_weight( 0x1D364, 5).digit_weight1009,27902 -digit_weight( 0x1D364, 5).digit_weight1009,27902 -digit_weight( 0x1D7D3, 5).digit_weight1010,27929 -digit_weight( 0x1D7D3, 5).digit_weight1010,27929 -digit_weight( 0x1D7DD, 5).digit_weight1011,27956 -digit_weight( 0x1D7DD, 5).digit_weight1011,27956 -digit_weight( 0x1D7E7, 5).digit_weight1012,27983 -digit_weight( 0x1D7E7, 5).digit_weight1012,27983 -digit_weight( 0x1D7F1, 5).digit_weight1013,28010 -digit_weight( 0x1D7F1, 5).digit_weight1013,28010 -digit_weight( 0x1D7FB, 5).digit_weight1014,28037 -digit_weight( 0x1D7FB, 5).digit_weight1014,28037 -digit_weight( 0x1E8CB, 5).digit_weight1015,28064 -digit_weight( 0x1E8CB, 5).digit_weight1015,28064 -digit_weight( 0x1F106, 5).digit_weight1016,28091 -digit_weight( 0x1F106, 5).digit_weight1016,28091 -digit_weight( 0x20121, 5).digit_weight1017,28118 -digit_weight( 0x20121, 5).digit_weight1017,28118 -digit_weight( 0x0F2F, 11/2).digit_weight1018,28145 -digit_weight( 0x0F2F, 11/2).digit_weight1018,28145 -digit_weight( 0x0036, 6).digit_weight1019,28174 -digit_weight( 0x0036, 6).digit_weight1019,28174 -digit_weight( 0x0666, 6).digit_weight1020,28200 -digit_weight( 0x0666, 6).digit_weight1020,28200 -digit_weight( 0x06F6, 6).digit_weight1021,28226 -digit_weight( 0x06F6, 6).digit_weight1021,28226 -digit_weight( 0x07C6, 6).digit_weight1022,28252 -digit_weight( 0x07C6, 6).digit_weight1022,28252 -digit_weight( 0x096C, 6).digit_weight1023,28278 -digit_weight( 0x096C, 6).digit_weight1023,28278 -digit_weight( 0x09EC, 6).digit_weight1024,28304 -digit_weight( 0x09EC, 6).digit_weight1024,28304 -digit_weight( 0x0A6C, 6).digit_weight1025,28330 -digit_weight( 0x0A6C, 6).digit_weight1025,28330 -digit_weight( 0x0AEC, 6).digit_weight1026,28356 -digit_weight( 0x0AEC, 6).digit_weight1026,28356 -digit_weight( 0x0B6C, 6).digit_weight1027,28382 -digit_weight( 0x0B6C, 6).digit_weight1027,28382 -digit_weight( 0x0BEC, 6).digit_weight1028,28408 -digit_weight( 0x0BEC, 6).digit_weight1028,28408 -digit_weight( 0x0C6C, 6).digit_weight1029,28434 -digit_weight( 0x0C6C, 6).digit_weight1029,28434 -digit_weight( 0x0CEC, 6).digit_weight1030,28460 -digit_weight( 0x0CEC, 6).digit_weight1030,28460 -digit_weight( 0x0D6C, 6).digit_weight1031,28486 -digit_weight( 0x0D6C, 6).digit_weight1031,28486 -digit_weight( 0x0DEC, 6).digit_weight1032,28512 -digit_weight( 0x0DEC, 6).digit_weight1032,28512 -digit_weight( 0x0E56, 6).digit_weight1033,28538 -digit_weight( 0x0E56, 6).digit_weight1033,28538 -digit_weight( 0x0ED6, 6).digit_weight1034,28564 -digit_weight( 0x0ED6, 6).digit_weight1034,28564 -digit_weight( 0x0F26, 6).digit_weight1035,28590 -digit_weight( 0x0F26, 6).digit_weight1035,28590 -digit_weight( 0x1046, 6).digit_weight1036,28616 -digit_weight( 0x1046, 6).digit_weight1036,28616 -digit_weight( 0x1096, 6).digit_weight1037,28642 -digit_weight( 0x1096, 6).digit_weight1037,28642 -digit_weight( 0x136E, 6).digit_weight1038,28668 -digit_weight( 0x136E, 6).digit_weight1038,28668 -digit_weight( 0x17E6, 6).digit_weight1039,28694 -digit_weight( 0x17E6, 6).digit_weight1039,28694 -digit_weight( 0x17F6, 6).digit_weight1040,28720 -digit_weight( 0x17F6, 6).digit_weight1040,28720 -digit_weight( 0x1816, 6).digit_weight1041,28746 -digit_weight( 0x1816, 6).digit_weight1041,28746 -digit_weight( 0x194C, 6).digit_weight1042,28772 -digit_weight( 0x194C, 6).digit_weight1042,28772 -digit_weight( 0x19D6, 6).digit_weight1043,28798 -digit_weight( 0x19D6, 6).digit_weight1043,28798 -digit_weight( 0x1A86, 6).digit_weight1044,28824 -digit_weight( 0x1A86, 6).digit_weight1044,28824 -digit_weight( 0x1A96, 6).digit_weight1045,28850 -digit_weight( 0x1A96, 6).digit_weight1045,28850 -digit_weight( 0x1B56, 6).digit_weight1046,28876 -digit_weight( 0x1B56, 6).digit_weight1046,28876 -digit_weight( 0x1BB6, 6).digit_weight1047,28902 -digit_weight( 0x1BB6, 6).digit_weight1047,28902 -digit_weight( 0x1C46, 6).digit_weight1048,28928 -digit_weight( 0x1C46, 6).digit_weight1048,28928 -digit_weight( 0x1C56, 6).digit_weight1049,28954 -digit_weight( 0x1C56, 6).digit_weight1049,28954 -digit_weight( 0x2076, 6).digit_weight1050,28980 -digit_weight( 0x2076, 6).digit_weight1050,28980 -digit_weight( 0x2086, 6).digit_weight1051,29006 -digit_weight( 0x2086, 6).digit_weight1051,29006 -digit_weight( 0x2165, 6).digit_weight1052,29032 -digit_weight( 0x2165, 6).digit_weight1052,29032 -digit_weight( 0x2175, 6).digit_weight1053,29058 -digit_weight( 0x2175, 6).digit_weight1053,29058 -digit_weight( 0x2185, 6).digit_weight1054,29084 -digit_weight( 0x2185, 6).digit_weight1054,29084 -digit_weight( 0x2465, 6).digit_weight1055,29110 -digit_weight( 0x2465, 6).digit_weight1055,29110 -digit_weight( 0x2479, 6).digit_weight1056,29136 -digit_weight( 0x2479, 6).digit_weight1056,29136 -digit_weight( 0x248D, 6).digit_weight1057,29162 -digit_weight( 0x248D, 6).digit_weight1057,29162 -digit_weight( 0x24FA, 6).digit_weight1058,29188 -digit_weight( 0x24FA, 6).digit_weight1058,29188 -digit_weight( 0x277B, 6).digit_weight1059,29214 -digit_weight( 0x277B, 6).digit_weight1059,29214 -digit_weight( 0x2785, 6).digit_weight1060,29240 -digit_weight( 0x2785, 6).digit_weight1060,29240 -digit_weight( 0x278F, 6).digit_weight1061,29266 -digit_weight( 0x278F, 6).digit_weight1061,29266 -digit_weight( 0x3026, 6).digit_weight1062,29292 -digit_weight( 0x3026, 6).digit_weight1062,29292 -digit_weight( 0x3225, 6).digit_weight1063,29318 -digit_weight( 0x3225, 6).digit_weight1063,29318 -digit_weight( 0x3285, 6).digit_weight1064,29344 -digit_weight( 0x3285, 6).digit_weight1064,29344 -digit_weight( 0x516D, 6).digit_weight1065,29370 -digit_weight( 0x516D, 6).digit_weight1065,29370 -digit_weight( 0x9646, 6).digit_weight1066,29396 -digit_weight( 0x9646, 6).digit_weight1066,29396 -digit_weight( 0x9678, 6).digit_weight1067,29422 -digit_weight( 0x9678, 6).digit_weight1067,29422 -digit_weight( 0xA626, 6).digit_weight1068,29448 -digit_weight( 0xA626, 6).digit_weight1068,29448 -digit_weight( 0xA6EB, 6).digit_weight1069,29474 -digit_weight( 0xA6EB, 6).digit_weight1069,29474 -digit_weight( 0xA8D6, 6).digit_weight1070,29500 -digit_weight( 0xA8D6, 6).digit_weight1070,29500 -digit_weight( 0xA906, 6).digit_weight1071,29526 -digit_weight( 0xA906, 6).digit_weight1071,29526 -digit_weight( 0xA9D6, 6).digit_weight1072,29552 -digit_weight( 0xA9D6, 6).digit_weight1072,29552 -digit_weight( 0xA9F6, 6).digit_weight1073,29578 -digit_weight( 0xA9F6, 6).digit_weight1073,29578 -digit_weight( 0xAA56, 6).digit_weight1074,29604 -digit_weight( 0xAA56, 6).digit_weight1074,29604 -digit_weight( 0xABF6, 6).digit_weight1075,29630 -digit_weight( 0xABF6, 6).digit_weight1075,29630 -digit_weight( 0xF9D1, 6).digit_weight1076,29656 -digit_weight( 0xF9D1, 6).digit_weight1076,29656 -digit_weight( 0xF9D3, 6).digit_weight1077,29682 -digit_weight( 0xF9D3, 6).digit_weight1077,29682 -digit_weight( 0xFF16, 6).digit_weight1078,29708 -digit_weight( 0xFF16, 6).digit_weight1078,29708 -digit_weight( 0x1010C, 6).digit_weight1079,29734 -digit_weight( 0x1010C, 6).digit_weight1079,29734 -digit_weight( 0x102E6, 6).digit_weight1080,29761 -digit_weight( 0x102E6, 6).digit_weight1080,29761 -digit_weight( 0x104A6, 6).digit_weight1081,29788 -digit_weight( 0x104A6, 6).digit_weight1081,29788 -digit_weight( 0x109C5, 6).digit_weight1082,29815 -digit_weight( 0x109C5, 6).digit_weight1082,29815 -digit_weight( 0x10E65, 6).digit_weight1083,29842 -digit_weight( 0x10E65, 6).digit_weight1083,29842 -digit_weight( 0x11057, 6).digit_weight1084,29869 -digit_weight( 0x11057, 6).digit_weight1084,29869 -digit_weight( 0x1106C, 6).digit_weight1085,29896 -digit_weight( 0x1106C, 6).digit_weight1085,29896 -digit_weight( 0x110F6, 6).digit_weight1086,29923 -digit_weight( 0x110F6, 6).digit_weight1086,29923 -digit_weight( 0x1113C, 6).digit_weight1087,29950 -digit_weight( 0x1113C, 6).digit_weight1087,29950 -digit_weight( 0x111D6, 6).digit_weight1088,29977 -digit_weight( 0x111D6, 6).digit_weight1088,29977 -digit_weight( 0x111E6, 6).digit_weight1089,30004 -digit_weight( 0x111E6, 6).digit_weight1089,30004 -digit_weight( 0x112F6, 6).digit_weight1090,30031 -digit_weight( 0x112F6, 6).digit_weight1090,30031 -digit_weight( 0x114D6, 6).digit_weight1091,30058 -digit_weight( 0x114D6, 6).digit_weight1091,30058 -digit_weight( 0x11656, 6).digit_weight1092,30085 -digit_weight( 0x11656, 6).digit_weight1092,30085 -digit_weight( 0x116C6, 6).digit_weight1093,30112 -digit_weight( 0x116C6, 6).digit_weight1093,30112 -digit_weight( 0x11736, 6).digit_weight1094,30139 -digit_weight( 0x11736, 6).digit_weight1094,30139 -digit_weight( 0x118E6, 6).digit_weight1095,30166 -digit_weight( 0x118E6, 6).digit_weight1095,30166 -digit_weight( 0x12404, 6).digit_weight1096,30193 -digit_weight( 0x12404, 6).digit_weight1096,30193 -digit_weight( 0x1240B, 6).digit_weight1097,30220 -digit_weight( 0x1240B, 6).digit_weight1097,30220 -digit_weight( 0x12411, 6).digit_weight1098,30247 -digit_weight( 0x12411, 6).digit_weight1098,30247 -digit_weight( 0x1241A, 6).digit_weight1099,30274 -digit_weight( 0x1241A, 6).digit_weight1099,30274 -digit_weight( 0x12428, 6).digit_weight1100,30301 -digit_weight( 0x12428, 6).digit_weight1100,30301 -digit_weight( 0x12440, 6).digit_weight1101,30328 -digit_weight( 0x12440, 6).digit_weight1101,30328 -digit_weight( 0x1244E, 6).digit_weight1102,30355 -digit_weight( 0x1244E, 6).digit_weight1102,30355 -digit_weight( 0x1246B, 6).digit_weight1103,30382 -digit_weight( 0x1246B, 6).digit_weight1103,30382 -digit_weight( 0x16A66, 6).digit_weight1104,30409 -digit_weight( 0x16A66, 6).digit_weight1104,30409 -digit_weight( 0x16B56, 6).digit_weight1105,30436 -digit_weight( 0x16B56, 6).digit_weight1105,30436 -digit_weight( 0x1D365, 6).digit_weight1106,30463 -digit_weight( 0x1D365, 6).digit_weight1106,30463 -digit_weight( 0x1D7D4, 6).digit_weight1107,30490 -digit_weight( 0x1D7D4, 6).digit_weight1107,30490 -digit_weight( 0x1D7DE, 6).digit_weight1108,30517 -digit_weight( 0x1D7DE, 6).digit_weight1108,30517 -digit_weight( 0x1D7E8, 6).digit_weight1109,30544 -digit_weight( 0x1D7E8, 6).digit_weight1109,30544 -digit_weight( 0x1D7F2, 6).digit_weight1110,30571 -digit_weight( 0x1D7F2, 6).digit_weight1110,30571 -digit_weight( 0x1D7FC, 6).digit_weight1111,30598 -digit_weight( 0x1D7FC, 6).digit_weight1111,30598 -digit_weight( 0x1E8CC, 6).digit_weight1112,30625 -digit_weight( 0x1E8CC, 6).digit_weight1112,30625 -digit_weight( 0x1F107, 6).digit_weight1113,30652 -digit_weight( 0x1F107, 6).digit_weight1113,30652 -digit_weight( 0x20AEA, 6).digit_weight1114,30679 -digit_weight( 0x20AEA, 6).digit_weight1114,30679 -digit_weight( 0x0F30, 13/2).digit_weight1115,30706 -digit_weight( 0x0F30, 13/2).digit_weight1115,30706 -digit_weight( 0x0037, 7).digit_weight1116,30735 -digit_weight( 0x0037, 7).digit_weight1116,30735 -digit_weight( 0x0667, 7).digit_weight1117,30761 -digit_weight( 0x0667, 7).digit_weight1117,30761 -digit_weight( 0x06F7, 7).digit_weight1118,30787 -digit_weight( 0x06F7, 7).digit_weight1118,30787 -digit_weight( 0x07C7, 7).digit_weight1119,30813 -digit_weight( 0x07C7, 7).digit_weight1119,30813 -digit_weight( 0x096D, 7).digit_weight1120,30839 -digit_weight( 0x096D, 7).digit_weight1120,30839 -digit_weight( 0x09ED, 7).digit_weight1121,30865 -digit_weight( 0x09ED, 7).digit_weight1121,30865 -digit_weight( 0x0A6D, 7).digit_weight1122,30891 -digit_weight( 0x0A6D, 7).digit_weight1122,30891 -digit_weight( 0x0AED, 7).digit_weight1123,30917 -digit_weight( 0x0AED, 7).digit_weight1123,30917 -digit_weight( 0x0B6D, 7).digit_weight1124,30943 -digit_weight( 0x0B6D, 7).digit_weight1124,30943 -digit_weight( 0x0BED, 7).digit_weight1125,30969 -digit_weight( 0x0BED, 7).digit_weight1125,30969 -digit_weight( 0x0C6D, 7).digit_weight1126,30995 -digit_weight( 0x0C6D, 7).digit_weight1126,30995 -digit_weight( 0x0CED, 7).digit_weight1127,31021 -digit_weight( 0x0CED, 7).digit_weight1127,31021 -digit_weight( 0x0D6D, 7).digit_weight1128,31047 -digit_weight( 0x0D6D, 7).digit_weight1128,31047 -digit_weight( 0x0DED, 7).digit_weight1129,31073 -digit_weight( 0x0DED, 7).digit_weight1129,31073 -digit_weight( 0x0E57, 7).digit_weight1130,31099 -digit_weight( 0x0E57, 7).digit_weight1130,31099 -digit_weight( 0x0ED7, 7).digit_weight1131,31125 -digit_weight( 0x0ED7, 7).digit_weight1131,31125 -digit_weight( 0x0F27, 7).digit_weight1132,31151 -digit_weight( 0x0F27, 7).digit_weight1132,31151 -digit_weight( 0x1047, 7).digit_weight1133,31177 -digit_weight( 0x1047, 7).digit_weight1133,31177 -digit_weight( 0x1097, 7).digit_weight1134,31203 -digit_weight( 0x1097, 7).digit_weight1134,31203 -digit_weight( 0x136F, 7).digit_weight1135,31229 -digit_weight( 0x136F, 7).digit_weight1135,31229 -digit_weight( 0x17E7, 7).digit_weight1136,31255 -digit_weight( 0x17E7, 7).digit_weight1136,31255 -digit_weight( 0x17F7, 7).digit_weight1137,31281 -digit_weight( 0x17F7, 7).digit_weight1137,31281 -digit_weight( 0x1817, 7).digit_weight1138,31307 -digit_weight( 0x1817, 7).digit_weight1138,31307 -digit_weight( 0x194D, 7).digit_weight1139,31333 -digit_weight( 0x194D, 7).digit_weight1139,31333 -digit_weight( 0x19D7, 7).digit_weight1140,31359 -digit_weight( 0x19D7, 7).digit_weight1140,31359 -digit_weight( 0x1A87, 7).digit_weight1141,31385 -digit_weight( 0x1A87, 7).digit_weight1141,31385 -digit_weight( 0x1A97, 7).digit_weight1142,31411 -digit_weight( 0x1A97, 7).digit_weight1142,31411 -digit_weight( 0x1B57, 7).digit_weight1143,31437 -digit_weight( 0x1B57, 7).digit_weight1143,31437 -digit_weight( 0x1BB7, 7).digit_weight1144,31463 -digit_weight( 0x1BB7, 7).digit_weight1144,31463 -digit_weight( 0x1C47, 7).digit_weight1145,31489 -digit_weight( 0x1C47, 7).digit_weight1145,31489 -digit_weight( 0x1C57, 7).digit_weight1146,31515 -digit_weight( 0x1C57, 7).digit_weight1146,31515 -digit_weight( 0x2077, 7).digit_weight1147,31541 -digit_weight( 0x2077, 7).digit_weight1147,31541 -digit_weight( 0x2087, 7).digit_weight1148,31567 -digit_weight( 0x2087, 7).digit_weight1148,31567 -digit_weight( 0x2166, 7).digit_weight1149,31593 -digit_weight( 0x2166, 7).digit_weight1149,31593 -digit_weight( 0x2176, 7).digit_weight1150,31619 -digit_weight( 0x2176, 7).digit_weight1150,31619 -digit_weight( 0x2466, 7).digit_weight1151,31645 -digit_weight( 0x2466, 7).digit_weight1151,31645 -digit_weight( 0x247A, 7).digit_weight1152,31671 -digit_weight( 0x247A, 7).digit_weight1152,31671 -digit_weight( 0x248E, 7).digit_weight1153,31697 -digit_weight( 0x248E, 7).digit_weight1153,31697 -digit_weight( 0x24FB, 7).digit_weight1154,31723 -digit_weight( 0x24FB, 7).digit_weight1154,31723 -digit_weight( 0x277C, 7).digit_weight1155,31749 -digit_weight( 0x277C, 7).digit_weight1155,31749 -digit_weight( 0x2786, 7).digit_weight1156,31775 -digit_weight( 0x2786, 7).digit_weight1156,31775 -digit_weight( 0x2790, 7).digit_weight1157,31801 -digit_weight( 0x2790, 7).digit_weight1157,31801 -digit_weight( 0x3027, 7).digit_weight1158,31827 -digit_weight( 0x3027, 7).digit_weight1158,31827 -digit_weight( 0x3226, 7).digit_weight1159,31853 -digit_weight( 0x3226, 7).digit_weight1159,31853 -digit_weight( 0x3286, 7).digit_weight1160,31879 -digit_weight( 0x3286, 7).digit_weight1160,31879 -digit_weight( 0x3B4D, 7).digit_weight1161,31905 -digit_weight( 0x3B4D, 7).digit_weight1161,31905 -digit_weight( 0x4E03, 7).digit_weight1162,31931 -digit_weight( 0x4E03, 7).digit_weight1162,31931 -digit_weight( 0x67D2, 7).digit_weight1163,31957 -digit_weight( 0x67D2, 7).digit_weight1163,31957 -digit_weight( 0x6F06, 7).digit_weight1164,31983 -digit_weight( 0x6F06, 7).digit_weight1164,31983 -digit_weight( 0xA627, 7).digit_weight1165,32009 -digit_weight( 0xA627, 7).digit_weight1165,32009 -digit_weight( 0xA6EC, 7).digit_weight1166,32035 -digit_weight( 0xA6EC, 7).digit_weight1166,32035 -digit_weight( 0xA8D7, 7).digit_weight1167,32061 -digit_weight( 0xA8D7, 7).digit_weight1167,32061 -digit_weight( 0xA907, 7).digit_weight1168,32087 -digit_weight( 0xA907, 7).digit_weight1168,32087 -digit_weight( 0xA9D7, 7).digit_weight1169,32113 -digit_weight( 0xA9D7, 7).digit_weight1169,32113 -digit_weight( 0xA9F7, 7).digit_weight1170,32139 -digit_weight( 0xA9F7, 7).digit_weight1170,32139 -digit_weight( 0xAA57, 7).digit_weight1171,32165 -digit_weight( 0xAA57, 7).digit_weight1171,32165 -digit_weight( 0xABF7, 7).digit_weight1172,32191 -digit_weight( 0xABF7, 7).digit_weight1172,32191 -digit_weight( 0xFF17, 7).digit_weight1173,32217 -digit_weight( 0xFF17, 7).digit_weight1173,32217 -digit_weight( 0x1010D, 7).digit_weight1174,32243 -digit_weight( 0x1010D, 7).digit_weight1174,32243 -digit_weight( 0x102E7, 7).digit_weight1175,32270 -digit_weight( 0x102E7, 7).digit_weight1175,32270 -digit_weight( 0x104A7, 7).digit_weight1176,32297 -digit_weight( 0x104A7, 7).digit_weight1176,32297 -digit_weight( 0x109C6, 7).digit_weight1177,32324 -digit_weight( 0x109C6, 7).digit_weight1177,32324 -digit_weight( 0x10E66, 7).digit_weight1178,32351 -digit_weight( 0x10E66, 7).digit_weight1178,32351 -digit_weight( 0x11058, 7).digit_weight1179,32378 -digit_weight( 0x11058, 7).digit_weight1179,32378 -digit_weight( 0x1106D, 7).digit_weight1180,32405 -digit_weight( 0x1106D, 7).digit_weight1180,32405 -digit_weight( 0x110F7, 7).digit_weight1181,32432 -digit_weight( 0x110F7, 7).digit_weight1181,32432 -digit_weight( 0x1113D, 7).digit_weight1182,32459 -digit_weight( 0x1113D, 7).digit_weight1182,32459 -digit_weight( 0x111D7, 7).digit_weight1183,32486 -digit_weight( 0x111D7, 7).digit_weight1183,32486 -digit_weight( 0x111E7, 7).digit_weight1184,32513 -digit_weight( 0x111E7, 7).digit_weight1184,32513 -digit_weight( 0x112F7, 7).digit_weight1185,32540 -digit_weight( 0x112F7, 7).digit_weight1185,32540 -digit_weight( 0x114D7, 7).digit_weight1186,32567 -digit_weight( 0x114D7, 7).digit_weight1186,32567 -digit_weight( 0x11657, 7).digit_weight1187,32594 -digit_weight( 0x11657, 7).digit_weight1187,32594 -digit_weight( 0x116C7, 7).digit_weight1188,32621 -digit_weight( 0x116C7, 7).digit_weight1188,32621 -digit_weight( 0x11737, 7).digit_weight1189,32648 -digit_weight( 0x11737, 7).digit_weight1189,32648 -digit_weight( 0x118E7, 7).digit_weight1190,32675 -digit_weight( 0x118E7, 7).digit_weight1190,32675 -digit_weight( 0x12405, 7).digit_weight1191,32702 -digit_weight( 0x12405, 7).digit_weight1191,32702 -digit_weight( 0x1240C, 7).digit_weight1192,32729 -digit_weight( 0x1240C, 7).digit_weight1192,32729 -digit_weight( 0x12412, 7).digit_weight1193,32756 -digit_weight( 0x12412, 7).digit_weight1193,32756 -digit_weight( 0x1241B, 7).digit_weight1194,32783 -digit_weight( 0x1241B, 7).digit_weight1194,32783 -digit_weight( 0x12429, 7).digit_weight1195,32810 -digit_weight( 0x12429, 7).digit_weight1195,32810 -digit_weight( 0x12441, 0x12443, 7).digit_weight1196,32837 -digit_weight( 0x12441, 0x12443, 7).digit_weight1196,32837 -digit_weight( 0x1246C, 7).digit_weight1197,32873 -digit_weight( 0x1246C, 7).digit_weight1197,32873 -digit_weight( 0x16A67, 7).digit_weight1198,32900 -digit_weight( 0x16A67, 7).digit_weight1198,32900 -digit_weight( 0x16B57, 7).digit_weight1199,32927 -digit_weight( 0x16B57, 7).digit_weight1199,32927 -digit_weight( 0x1D366, 7).digit_weight1200,32954 -digit_weight( 0x1D366, 7).digit_weight1200,32954 -digit_weight( 0x1D7D5, 7).digit_weight1201,32981 -digit_weight( 0x1D7D5, 7).digit_weight1201,32981 -digit_weight( 0x1D7DF, 7).digit_weight1202,33008 -digit_weight( 0x1D7DF, 7).digit_weight1202,33008 -digit_weight( 0x1D7E9, 7).digit_weight1203,33035 -digit_weight( 0x1D7E9, 7).digit_weight1203,33035 -digit_weight( 0x1D7F3, 7).digit_weight1204,33062 -digit_weight( 0x1D7F3, 7).digit_weight1204,33062 -digit_weight( 0x1D7FD, 7).digit_weight1205,33089 -digit_weight( 0x1D7FD, 7).digit_weight1205,33089 -digit_weight( 0x1E8CD, 7).digit_weight1206,33116 -digit_weight( 0x1E8CD, 7).digit_weight1206,33116 -digit_weight( 0x1F108, 7).digit_weight1207,33143 -digit_weight( 0x1F108, 7).digit_weight1207,33143 -digit_weight( 0x20001, 7).digit_weight1208,33170 -digit_weight( 0x20001, 7).digit_weight1208,33170 -digit_weight( 0x0F31, 15/2).digit_weight1209,33197 -digit_weight( 0x0F31, 15/2).digit_weight1209,33197 -digit_weight( 0x0038, 8).digit_weight1210,33226 -digit_weight( 0x0038, 8).digit_weight1210,33226 -digit_weight( 0x0668, 8).digit_weight1211,33252 -digit_weight( 0x0668, 8).digit_weight1211,33252 -digit_weight( 0x06F8, 8).digit_weight1212,33278 -digit_weight( 0x06F8, 8).digit_weight1212,33278 -digit_weight( 0x07C8, 8).digit_weight1213,33304 -digit_weight( 0x07C8, 8).digit_weight1213,33304 -digit_weight( 0x096E, 8).digit_weight1214,33330 -digit_weight( 0x096E, 8).digit_weight1214,33330 -digit_weight( 0x09EE, 8).digit_weight1215,33356 -digit_weight( 0x09EE, 8).digit_weight1215,33356 -digit_weight( 0x0A6E, 8).digit_weight1216,33382 -digit_weight( 0x0A6E, 8).digit_weight1216,33382 -digit_weight( 0x0AEE, 8).digit_weight1217,33408 -digit_weight( 0x0AEE, 8).digit_weight1217,33408 -digit_weight( 0x0B6E, 8).digit_weight1218,33434 -digit_weight( 0x0B6E, 8).digit_weight1218,33434 -digit_weight( 0x0BEE, 8).digit_weight1219,33460 -digit_weight( 0x0BEE, 8).digit_weight1219,33460 -digit_weight( 0x0C6E, 8).digit_weight1220,33486 -digit_weight( 0x0C6E, 8).digit_weight1220,33486 -digit_weight( 0x0CEE, 8).digit_weight1221,33512 -digit_weight( 0x0CEE, 8).digit_weight1221,33512 -digit_weight( 0x0D6E, 8).digit_weight1222,33538 -digit_weight( 0x0D6E, 8).digit_weight1222,33538 -digit_weight( 0x0DEE, 8).digit_weight1223,33564 -digit_weight( 0x0DEE, 8).digit_weight1223,33564 -digit_weight( 0x0E58, 8).digit_weight1224,33590 -digit_weight( 0x0E58, 8).digit_weight1224,33590 -digit_weight( 0x0ED8, 8).digit_weight1225,33616 -digit_weight( 0x0ED8, 8).digit_weight1225,33616 -digit_weight( 0x0F28, 8).digit_weight1226,33642 -digit_weight( 0x0F28, 8).digit_weight1226,33642 -digit_weight( 0x1048, 8).digit_weight1227,33668 -digit_weight( 0x1048, 8).digit_weight1227,33668 -digit_weight( 0x1098, 8).digit_weight1228,33694 -digit_weight( 0x1098, 8).digit_weight1228,33694 -digit_weight( 0x1370, 8).digit_weight1229,33720 -digit_weight( 0x1370, 8).digit_weight1229,33720 -digit_weight( 0x17E8, 8).digit_weight1230,33746 -digit_weight( 0x17E8, 8).digit_weight1230,33746 -digit_weight( 0x17F8, 8).digit_weight1231,33772 -digit_weight( 0x17F8, 8).digit_weight1231,33772 -digit_weight( 0x1818, 8).digit_weight1232,33798 -digit_weight( 0x1818, 8).digit_weight1232,33798 -digit_weight( 0x194E, 8).digit_weight1233,33824 -digit_weight( 0x194E, 8).digit_weight1233,33824 -digit_weight( 0x19D8, 8).digit_weight1234,33850 -digit_weight( 0x19D8, 8).digit_weight1234,33850 -digit_weight( 0x1A88, 8).digit_weight1235,33876 -digit_weight( 0x1A88, 8).digit_weight1235,33876 -digit_weight( 0x1A98, 8).digit_weight1236,33902 -digit_weight( 0x1A98, 8).digit_weight1236,33902 -digit_weight( 0x1B58, 8).digit_weight1237,33928 -digit_weight( 0x1B58, 8).digit_weight1237,33928 -digit_weight( 0x1BB8, 8).digit_weight1238,33954 -digit_weight( 0x1BB8, 8).digit_weight1238,33954 -digit_weight( 0x1C48, 8).digit_weight1239,33980 -digit_weight( 0x1C48, 8).digit_weight1239,33980 -digit_weight( 0x1C58, 8).digit_weight1240,34006 -digit_weight( 0x1C58, 8).digit_weight1240,34006 -digit_weight( 0x2078, 8).digit_weight1241,34032 -digit_weight( 0x2078, 8).digit_weight1241,34032 -digit_weight( 0x2088, 8).digit_weight1242,34058 -digit_weight( 0x2088, 8).digit_weight1242,34058 -digit_weight( 0x2167, 8).digit_weight1243,34084 -digit_weight( 0x2167, 8).digit_weight1243,34084 -digit_weight( 0x2177, 8).digit_weight1244,34110 -digit_weight( 0x2177, 8).digit_weight1244,34110 -digit_weight( 0x2467, 8).digit_weight1245,34136 -digit_weight( 0x2467, 8).digit_weight1245,34136 -digit_weight( 0x247B, 8).digit_weight1246,34162 -digit_weight( 0x247B, 8).digit_weight1246,34162 -digit_weight( 0x248F, 8).digit_weight1247,34188 -digit_weight( 0x248F, 8).digit_weight1247,34188 -digit_weight( 0x24FC, 8).digit_weight1248,34214 -digit_weight( 0x24FC, 8).digit_weight1248,34214 -digit_weight( 0x277D, 8).digit_weight1249,34240 -digit_weight( 0x277D, 8).digit_weight1249,34240 -digit_weight( 0x2787, 8).digit_weight1250,34266 -digit_weight( 0x2787, 8).digit_weight1250,34266 -digit_weight( 0x2791, 8).digit_weight1251,34292 -digit_weight( 0x2791, 8).digit_weight1251,34292 -digit_weight( 0x3028, 8).digit_weight1252,34318 -digit_weight( 0x3028, 8).digit_weight1252,34318 -digit_weight( 0x3227, 8).digit_weight1253,34344 -digit_weight( 0x3227, 8).digit_weight1253,34344 -digit_weight( 0x3287, 8).digit_weight1254,34370 -digit_weight( 0x3287, 8).digit_weight1254,34370 -digit_weight( 0x516B, 8).digit_weight1255,34396 -digit_weight( 0x516B, 8).digit_weight1255,34396 -digit_weight( 0x634C, 8).digit_weight1256,34422 -digit_weight( 0x634C, 8).digit_weight1256,34422 -digit_weight( 0xA628, 8).digit_weight1257,34448 -digit_weight( 0xA628, 8).digit_weight1257,34448 -digit_weight( 0xA6ED, 8).digit_weight1258,34474 -digit_weight( 0xA6ED, 8).digit_weight1258,34474 -digit_weight( 0xA8D8, 8).digit_weight1259,34500 -digit_weight( 0xA8D8, 8).digit_weight1259,34500 -digit_weight( 0xA908, 8).digit_weight1260,34526 -digit_weight( 0xA908, 8).digit_weight1260,34526 -digit_weight( 0xA9D8, 8).digit_weight1261,34552 -digit_weight( 0xA9D8, 8).digit_weight1261,34552 -digit_weight( 0xA9F8, 8).digit_weight1262,34578 -digit_weight( 0xA9F8, 8).digit_weight1262,34578 -digit_weight( 0xAA58, 8).digit_weight1263,34604 -digit_weight( 0xAA58, 8).digit_weight1263,34604 -digit_weight( 0xABF8, 8).digit_weight1264,34630 -digit_weight( 0xABF8, 8).digit_weight1264,34630 -digit_weight( 0xFF18, 8).digit_weight1265,34656 -digit_weight( 0xFF18, 8).digit_weight1265,34656 -digit_weight( 0x1010E, 8).digit_weight1266,34682 -digit_weight( 0x1010E, 8).digit_weight1266,34682 -digit_weight( 0x102E8, 8).digit_weight1267,34709 -digit_weight( 0x102E8, 8).digit_weight1267,34709 -digit_weight( 0x104A8, 8).digit_weight1268,34736 -digit_weight( 0x104A8, 8).digit_weight1268,34736 -digit_weight( 0x109C7, 8).digit_weight1269,34763 -digit_weight( 0x109C7, 8).digit_weight1269,34763 -digit_weight( 0x10E67, 8).digit_weight1270,34790 -digit_weight( 0x10E67, 8).digit_weight1270,34790 -digit_weight( 0x11059, 8).digit_weight1271,34817 -digit_weight( 0x11059, 8).digit_weight1271,34817 -digit_weight( 0x1106E, 8).digit_weight1272,34844 -digit_weight( 0x1106E, 8).digit_weight1272,34844 -digit_weight( 0x110F8, 8).digit_weight1273,34871 -digit_weight( 0x110F8, 8).digit_weight1273,34871 -digit_weight( 0x1113E, 8).digit_weight1274,34898 -digit_weight( 0x1113E, 8).digit_weight1274,34898 -digit_weight( 0x111D8, 8).digit_weight1275,34925 -digit_weight( 0x111D8, 8).digit_weight1275,34925 -digit_weight( 0x111E8, 8).digit_weight1276,34952 -digit_weight( 0x111E8, 8).digit_weight1276,34952 -digit_weight( 0x112F8, 8).digit_weight1277,34979 -digit_weight( 0x112F8, 8).digit_weight1277,34979 -digit_weight( 0x114D8, 8).digit_weight1278,35006 -digit_weight( 0x114D8, 8).digit_weight1278,35006 -digit_weight( 0x11658, 8).digit_weight1279,35033 -digit_weight( 0x11658, 8).digit_weight1279,35033 -digit_weight( 0x116C8, 8).digit_weight1280,35060 -digit_weight( 0x116C8, 8).digit_weight1280,35060 -digit_weight( 0x11738, 8).digit_weight1281,35087 -digit_weight( 0x11738, 8).digit_weight1281,35087 -digit_weight( 0x118E8, 8).digit_weight1282,35114 -digit_weight( 0x118E8, 8).digit_weight1282,35114 -digit_weight( 0x12406, 8).digit_weight1283,35141 -digit_weight( 0x12406, 8).digit_weight1283,35141 -digit_weight( 0x1240D, 8).digit_weight1284,35168 -digit_weight( 0x1240D, 8).digit_weight1284,35168 -digit_weight( 0x12413, 8).digit_weight1285,35195 -digit_weight( 0x12413, 8).digit_weight1285,35195 -digit_weight( 0x1241C, 8).digit_weight1286,35222 -digit_weight( 0x1241C, 8).digit_weight1286,35222 -digit_weight( 0x1242A, 8).digit_weight1287,35249 -digit_weight( 0x1242A, 8).digit_weight1287,35249 -digit_weight( 0x12444, 0x12445, 8).digit_weight1288,35276 -digit_weight( 0x12444, 0x12445, 8).digit_weight1288,35276 -digit_weight( 0x1246D, 8).digit_weight1289,35312 -digit_weight( 0x1246D, 8).digit_weight1289,35312 -digit_weight( 0x16A68, 8).digit_weight1290,35339 -digit_weight( 0x16A68, 8).digit_weight1290,35339 -digit_weight( 0x16B58, 8).digit_weight1291,35366 -digit_weight( 0x16B58, 8).digit_weight1291,35366 -digit_weight( 0x1D367, 8).digit_weight1292,35393 -digit_weight( 0x1D367, 8).digit_weight1292,35393 -digit_weight( 0x1D7D6, 8).digit_weight1293,35420 -digit_weight( 0x1D7D6, 8).digit_weight1293,35420 -digit_weight( 0x1D7E0, 8).digit_weight1294,35447 -digit_weight( 0x1D7E0, 8).digit_weight1294,35447 -digit_weight( 0x1D7EA, 8).digit_weight1295,35474 -digit_weight( 0x1D7EA, 8).digit_weight1295,35474 -digit_weight( 0x1D7F4, 8).digit_weight1296,35501 -digit_weight( 0x1D7F4, 8).digit_weight1296,35501 -digit_weight( 0x1D7FE, 8).digit_weight1297,35528 -digit_weight( 0x1D7FE, 8).digit_weight1297,35528 -digit_weight( 0x1E8CE, 8).digit_weight1298,35555 -digit_weight( 0x1E8CE, 8).digit_weight1298,35555 -digit_weight( 0x1F109, 8).digit_weight1299,35582 -digit_weight( 0x1F109, 8).digit_weight1299,35582 -digit_weight( 0x0F32, 17/2).digit_weight1300,35609 -digit_weight( 0x0F32, 17/2).digit_weight1300,35609 -digit_weight( 0x0039, 9).digit_weight1301,35638 -digit_weight( 0x0039, 9).digit_weight1301,35638 -digit_weight( 0x0669, 9).digit_weight1302,35664 -digit_weight( 0x0669, 9).digit_weight1302,35664 -digit_weight( 0x06F9, 9).digit_weight1303,35690 -digit_weight( 0x06F9, 9).digit_weight1303,35690 -digit_weight( 0x07C9, 9).digit_weight1304,35716 -digit_weight( 0x07C9, 9).digit_weight1304,35716 -digit_weight( 0x096F, 9).digit_weight1305,35742 -digit_weight( 0x096F, 9).digit_weight1305,35742 -digit_weight( 0x09EF, 9).digit_weight1306,35768 -digit_weight( 0x09EF, 9).digit_weight1306,35768 -digit_weight( 0x0A6F, 9).digit_weight1307,35794 -digit_weight( 0x0A6F, 9).digit_weight1307,35794 -digit_weight( 0x0AEF, 9).digit_weight1308,35820 -digit_weight( 0x0AEF, 9).digit_weight1308,35820 -digit_weight( 0x0B6F, 9).digit_weight1309,35846 -digit_weight( 0x0B6F, 9).digit_weight1309,35846 -digit_weight( 0x0BEF, 9).digit_weight1310,35872 -digit_weight( 0x0BEF, 9).digit_weight1310,35872 -digit_weight( 0x0C6F, 9).digit_weight1311,35898 -digit_weight( 0x0C6F, 9).digit_weight1311,35898 -digit_weight( 0x0CEF, 9).digit_weight1312,35924 -digit_weight( 0x0CEF, 9).digit_weight1312,35924 -digit_weight( 0x0D6F, 9).digit_weight1313,35950 -digit_weight( 0x0D6F, 9).digit_weight1313,35950 -digit_weight( 0x0DEF, 9).digit_weight1314,35976 -digit_weight( 0x0DEF, 9).digit_weight1314,35976 -digit_weight( 0x0E59, 9).digit_weight1315,36002 -digit_weight( 0x0E59, 9).digit_weight1315,36002 -digit_weight( 0x0ED9, 9).digit_weight1316,36028 -digit_weight( 0x0ED9, 9).digit_weight1316,36028 -digit_weight( 0x0F29, 9).digit_weight1317,36054 -digit_weight( 0x0F29, 9).digit_weight1317,36054 -digit_weight( 0x1049, 9).digit_weight1318,36080 -digit_weight( 0x1049, 9).digit_weight1318,36080 -digit_weight( 0x1099, 9).digit_weight1319,36106 -digit_weight( 0x1099, 9).digit_weight1319,36106 -digit_weight( 0x1371, 9).digit_weight1320,36132 -digit_weight( 0x1371, 9).digit_weight1320,36132 -digit_weight( 0x17E9, 9).digit_weight1321,36158 -digit_weight( 0x17E9, 9).digit_weight1321,36158 -digit_weight( 0x17F9, 9).digit_weight1322,36184 -digit_weight( 0x17F9, 9).digit_weight1322,36184 -digit_weight( 0x1819, 9).digit_weight1323,36210 -digit_weight( 0x1819, 9).digit_weight1323,36210 -digit_weight( 0x194F, 9).digit_weight1324,36236 -digit_weight( 0x194F, 9).digit_weight1324,36236 -digit_weight( 0x19D9, 9).digit_weight1325,36262 -digit_weight( 0x19D9, 9).digit_weight1325,36262 -digit_weight( 0x1A89, 9).digit_weight1326,36288 -digit_weight( 0x1A89, 9).digit_weight1326,36288 -digit_weight( 0x1A99, 9).digit_weight1327,36314 -digit_weight( 0x1A99, 9).digit_weight1327,36314 -digit_weight( 0x1B59, 9).digit_weight1328,36340 -digit_weight( 0x1B59, 9).digit_weight1328,36340 -digit_weight( 0x1BB9, 9).digit_weight1329,36366 -digit_weight( 0x1BB9, 9).digit_weight1329,36366 -digit_weight( 0x1C49, 9).digit_weight1330,36392 -digit_weight( 0x1C49, 9).digit_weight1330,36392 -digit_weight( 0x1C59, 9).digit_weight1331,36418 -digit_weight( 0x1C59, 9).digit_weight1331,36418 -digit_weight( 0x2079, 9).digit_weight1332,36444 -digit_weight( 0x2079, 9).digit_weight1332,36444 -digit_weight( 0x2089, 9).digit_weight1333,36470 -digit_weight( 0x2089, 9).digit_weight1333,36470 -digit_weight( 0x2168, 9).digit_weight1334,36496 -digit_weight( 0x2168, 9).digit_weight1334,36496 -digit_weight( 0x2178, 9).digit_weight1335,36522 -digit_weight( 0x2178, 9).digit_weight1335,36522 -digit_weight( 0x2468, 9).digit_weight1336,36548 -digit_weight( 0x2468, 9).digit_weight1336,36548 -digit_weight( 0x247C, 9).digit_weight1337,36574 -digit_weight( 0x247C, 9).digit_weight1337,36574 -digit_weight( 0x2490, 9).digit_weight1338,36600 -digit_weight( 0x2490, 9).digit_weight1338,36600 -digit_weight( 0x24FD, 9).digit_weight1339,36626 -digit_weight( 0x24FD, 9).digit_weight1339,36626 -digit_weight( 0x277E, 9).digit_weight1340,36652 -digit_weight( 0x277E, 9).digit_weight1340,36652 -digit_weight( 0x2788, 9).digit_weight1341,36678 -digit_weight( 0x2788, 9).digit_weight1341,36678 -digit_weight( 0x2792, 9).digit_weight1342,36704 -digit_weight( 0x2792, 9).digit_weight1342,36704 -digit_weight( 0x3029, 9).digit_weight1343,36730 -digit_weight( 0x3029, 9).digit_weight1343,36730 -digit_weight( 0x3228, 9).digit_weight1344,36756 -digit_weight( 0x3228, 9).digit_weight1344,36756 -digit_weight( 0x3288, 9).digit_weight1345,36782 -digit_weight( 0x3288, 9).digit_weight1345,36782 -digit_weight( 0x4E5D, 9).digit_weight1346,36808 -digit_weight( 0x4E5D, 9).digit_weight1346,36808 -digit_weight( 0x5EFE, 9).digit_weight1347,36834 -digit_weight( 0x5EFE, 9).digit_weight1347,36834 -digit_weight( 0x7396, 9).digit_weight1348,36860 -digit_weight( 0x7396, 9).digit_weight1348,36860 -digit_weight( 0xA629, 9).digit_weight1349,36886 -digit_weight( 0xA629, 9).digit_weight1349,36886 -digit_weight( 0xA6EE, 9).digit_weight1350,36912 -digit_weight( 0xA6EE, 9).digit_weight1350,36912 -digit_weight( 0xA8D9, 9).digit_weight1351,36938 -digit_weight( 0xA8D9, 9).digit_weight1351,36938 -digit_weight( 0xA909, 9).digit_weight1352,36964 -digit_weight( 0xA909, 9).digit_weight1352,36964 -digit_weight( 0xA9D9, 9).digit_weight1353,36990 -digit_weight( 0xA9D9, 9).digit_weight1353,36990 -digit_weight( 0xA9F9, 9).digit_weight1354,37016 -digit_weight( 0xA9F9, 9).digit_weight1354,37016 -digit_weight( 0xAA59, 9).digit_weight1355,37042 -digit_weight( 0xAA59, 9).digit_weight1355,37042 -digit_weight( 0xABF9, 9).digit_weight1356,37068 -digit_weight( 0xABF9, 9).digit_weight1356,37068 -digit_weight( 0xFF19, 9).digit_weight1357,37094 -digit_weight( 0xFF19, 9).digit_weight1357,37094 -digit_weight( 0x1010F, 9).digit_weight1358,37120 -digit_weight( 0x1010F, 9).digit_weight1358,37120 -digit_weight( 0x102E9, 9).digit_weight1359,37147 -digit_weight( 0x102E9, 9).digit_weight1359,37147 -digit_weight( 0x104A9, 9).digit_weight1360,37174 -digit_weight( 0x104A9, 9).digit_weight1360,37174 -digit_weight( 0x109C8, 9).digit_weight1361,37201 -digit_weight( 0x109C8, 9).digit_weight1361,37201 -digit_weight( 0x10E68, 9).digit_weight1362,37228 -digit_weight( 0x10E68, 9).digit_weight1362,37228 -digit_weight( 0x1105A, 9).digit_weight1363,37255 -digit_weight( 0x1105A, 9).digit_weight1363,37255 -digit_weight( 0x1106F, 9).digit_weight1364,37282 -digit_weight( 0x1106F, 9).digit_weight1364,37282 -digit_weight( 0x110F9, 9).digit_weight1365,37309 -digit_weight( 0x110F9, 9).digit_weight1365,37309 -digit_weight( 0x1113F, 9).digit_weight1366,37336 -digit_weight( 0x1113F, 9).digit_weight1366,37336 -digit_weight( 0x111D9, 9).digit_weight1367,37363 -digit_weight( 0x111D9, 9).digit_weight1367,37363 -digit_weight( 0x111E9, 9).digit_weight1368,37390 -digit_weight( 0x111E9, 9).digit_weight1368,37390 -digit_weight( 0x112F9, 9).digit_weight1369,37417 -digit_weight( 0x112F9, 9).digit_weight1369,37417 -digit_weight( 0x114D9, 9).digit_weight1370,37444 -digit_weight( 0x114D9, 9).digit_weight1370,37444 -digit_weight( 0x11659, 9).digit_weight1371,37471 -digit_weight( 0x11659, 9).digit_weight1371,37471 -digit_weight( 0x116C9, 9).digit_weight1372,37498 -digit_weight( 0x116C9, 9).digit_weight1372,37498 -digit_weight( 0x11739, 9).digit_weight1373,37525 -digit_weight( 0x11739, 9).digit_weight1373,37525 -digit_weight( 0x118E9, 9).digit_weight1374,37552 -digit_weight( 0x118E9, 9).digit_weight1374,37552 -digit_weight( 0x12407, 9).digit_weight1375,37579 -digit_weight( 0x12407, 9).digit_weight1375,37579 -digit_weight( 0x1240E, 9).digit_weight1376,37606 -digit_weight( 0x1240E, 9).digit_weight1376,37606 -digit_weight( 0x12414, 9).digit_weight1377,37633 -digit_weight( 0x12414, 9).digit_weight1377,37633 -digit_weight( 0x1241D, 9).digit_weight1378,37660 -digit_weight( 0x1241D, 9).digit_weight1378,37660 -digit_weight( 0x1242B, 9).digit_weight1379,37687 -digit_weight( 0x1242B, 9).digit_weight1379,37687 -digit_weight( 0x12446, 0x12449, 9).digit_weight1380,37714 -digit_weight( 0x12446, 0x12449, 9).digit_weight1380,37714 -digit_weight( 0x1246E, 9).digit_weight1381,37750 -digit_weight( 0x1246E, 9).digit_weight1381,37750 -digit_weight( 0x16A69, 9).digit_weight1382,37777 -digit_weight( 0x16A69, 9).digit_weight1382,37777 -digit_weight( 0x16B59, 9).digit_weight1383,37804 -digit_weight( 0x16B59, 9).digit_weight1383,37804 -digit_weight( 0x1D368, 9).digit_weight1384,37831 -digit_weight( 0x1D368, 9).digit_weight1384,37831 -digit_weight( 0x1D7D7, 9).digit_weight1385,37858 -digit_weight( 0x1D7D7, 9).digit_weight1385,37858 -digit_weight( 0x1D7E1, 9).digit_weight1386,37885 -digit_weight( 0x1D7E1, 9).digit_weight1386,37885 -digit_weight( 0x1D7EB, 9).digit_weight1387,37912 -digit_weight( 0x1D7EB, 9).digit_weight1387,37912 -digit_weight( 0x1D7F5, 9).digit_weight1388,37939 -digit_weight( 0x1D7F5, 9).digit_weight1388,37939 -digit_weight( 0x1D7FF, 9).digit_weight1389,37966 -digit_weight( 0x1D7FF, 9).digit_weight1389,37966 -digit_weight( 0x1E8CF, 9).digit_weight1390,37993 -digit_weight( 0x1E8CF, 9).digit_weight1390,37993 -digit_weight( 0x1F10A, 9).digit_weight1391,38020 -digit_weight( 0x1F10A, 9).digit_weight1391,38020 -digit_weight( 0x2F890, 9).digit_weight1392,38047 -digit_weight( 0x2F890, 9).digit_weight1392,38047 -digit_weight( 0x0BF0, 10).digit_weight1393,38074 -digit_weight( 0x0BF0, 10).digit_weight1393,38074 -digit_weight( 0x0D70, 10).digit_weight1394,38101 -digit_weight( 0x0D70, 10).digit_weight1394,38101 -digit_weight( 0x1372, 10).digit_weight1395,38128 -digit_weight( 0x1372, 10).digit_weight1395,38128 -digit_weight( 0x2169, 10).digit_weight1396,38155 -digit_weight( 0x2169, 10).digit_weight1396,38155 -digit_weight( 0x2179, 10).digit_weight1397,38182 -digit_weight( 0x2179, 10).digit_weight1397,38182 -digit_weight( 0x2469, 10).digit_weight1398,38209 -digit_weight( 0x2469, 10).digit_weight1398,38209 -digit_weight( 0x247D, 10).digit_weight1399,38236 -digit_weight( 0x247D, 10).digit_weight1399,38236 -digit_weight( 0x2491, 10).digit_weight1400,38263 -digit_weight( 0x2491, 10).digit_weight1400,38263 -digit_weight( 0x24FE, 10).digit_weight1401,38290 -digit_weight( 0x24FE, 10).digit_weight1401,38290 -digit_weight( 0x277F, 10).digit_weight1402,38317 -digit_weight( 0x277F, 10).digit_weight1402,38317 -digit_weight( 0x2789, 10).digit_weight1403,38344 -digit_weight( 0x2789, 10).digit_weight1403,38344 -digit_weight( 0x2793, 10).digit_weight1404,38371 -digit_weight( 0x2793, 10).digit_weight1404,38371 -digit_weight( 0x3038, 10).digit_weight1405,38398 -digit_weight( 0x3038, 10).digit_weight1405,38398 -digit_weight( 0x3229, 10).digit_weight1406,38425 -digit_weight( 0x3229, 10).digit_weight1406,38425 -digit_weight( 0x3248, 10).digit_weight1407,38452 -digit_weight( 0x3248, 10).digit_weight1407,38452 -digit_weight( 0x3289, 10).digit_weight1408,38479 -digit_weight( 0x3289, 10).digit_weight1408,38479 -digit_weight( 0x4EC0, 10).digit_weight1409,38506 -digit_weight( 0x4EC0, 10).digit_weight1409,38506 -digit_weight( 0x5341, 10).digit_weight1410,38533 -digit_weight( 0x5341, 10).digit_weight1410,38533 -digit_weight( 0x62FE, 10).digit_weight1411,38560 -digit_weight( 0x62FE, 10).digit_weight1411,38560 -digit_weight( 0xF973, 10).digit_weight1412,38587 -digit_weight( 0xF973, 10).digit_weight1412,38587 -digit_weight( 0xF9FD, 10).digit_weight1413,38614 -digit_weight( 0xF9FD, 10).digit_weight1413,38614 -digit_weight( 0x10110, 10).digit_weight1414,38641 -digit_weight( 0x10110, 10).digit_weight1414,38641 -digit_weight( 0x10149, 10).digit_weight1415,38669 -digit_weight( 0x10149, 10).digit_weight1415,38669 -digit_weight( 0x10150, 10).digit_weight1416,38697 -digit_weight( 0x10150, 10).digit_weight1416,38697 -digit_weight( 0x10157, 10).digit_weight1417,38725 -digit_weight( 0x10157, 10).digit_weight1417,38725 -digit_weight( 0x10160, 0x10164, 10).digit_weight1418,38753 -digit_weight( 0x10160, 0x10164, 10).digit_weight1418,38753 -digit_weight( 0x102EA, 10).digit_weight1419,38790 -digit_weight( 0x102EA, 10).digit_weight1419,38790 -digit_weight( 0x10322, 10).digit_weight1420,38818 -digit_weight( 0x10322, 10).digit_weight1420,38818 -digit_weight( 0x103D3, 10).digit_weight1421,38846 -digit_weight( 0x103D3, 10).digit_weight1421,38846 -digit_weight( 0x1085B, 10).digit_weight1422,38874 -digit_weight( 0x1085B, 10).digit_weight1422,38874 -digit_weight( 0x1087E, 10).digit_weight1423,38902 -digit_weight( 0x1087E, 10).digit_weight1423,38902 -digit_weight( 0x108AD, 10).digit_weight1424,38930 -digit_weight( 0x108AD, 10).digit_weight1424,38930 -digit_weight( 0x108FD, 10).digit_weight1425,38958 -digit_weight( 0x108FD, 10).digit_weight1425,38958 -digit_weight( 0x10917, 10).digit_weight1426,38986 -digit_weight( 0x10917, 10).digit_weight1426,38986 -digit_weight( 0x109C9, 10).digit_weight1427,39014 -digit_weight( 0x109C9, 10).digit_weight1427,39014 -digit_weight( 0x10A44, 10).digit_weight1428,39042 -digit_weight( 0x10A44, 10).digit_weight1428,39042 -digit_weight( 0x10A9E, 10).digit_weight1429,39070 -digit_weight( 0x10A9E, 10).digit_weight1429,39070 -digit_weight( 0x10AED, 10).digit_weight1430,39098 -digit_weight( 0x10AED, 10).digit_weight1430,39098 -digit_weight( 0x10B5C, 10).digit_weight1431,39126 -digit_weight( 0x10B5C, 10).digit_weight1431,39126 -digit_weight( 0x10B7C, 10).digit_weight1432,39154 -digit_weight( 0x10B7C, 10).digit_weight1432,39154 -digit_weight( 0x10BAD, 10).digit_weight1433,39182 -digit_weight( 0x10BAD, 10).digit_weight1433,39182 -digit_weight( 0x10CFC, 10).digit_weight1434,39210 -digit_weight( 0x10CFC, 10).digit_weight1434,39210 -digit_weight( 0x10E69, 10).digit_weight1435,39238 -digit_weight( 0x10E69, 10).digit_weight1435,39238 -digit_weight( 0x1105B, 10).digit_weight1436,39266 -digit_weight( 0x1105B, 10).digit_weight1436,39266 -digit_weight( 0x111EA, 10).digit_weight1437,39294 -digit_weight( 0x111EA, 10).digit_weight1437,39294 -digit_weight( 0x1173A, 10).digit_weight1438,39322 -digit_weight( 0x1173A, 10).digit_weight1438,39322 -digit_weight( 0x118EA, 10).digit_weight1439,39350 -digit_weight( 0x118EA, 10).digit_weight1439,39350 -digit_weight( 0x16B5B, 10).digit_weight1440,39378 -digit_weight( 0x16B5B, 10).digit_weight1440,39378 -digit_weight( 0x1D369, 10).digit_weight1441,39406 -digit_weight( 0x1D369, 10).digit_weight1441,39406 -digit_weight( 0x216A, 11).digit_weight1442,39434 -digit_weight( 0x216A, 11).digit_weight1442,39434 -digit_weight( 0x217A, 11).digit_weight1443,39461 -digit_weight( 0x217A, 11).digit_weight1443,39461 -digit_weight( 0x246A, 11).digit_weight1444,39488 -digit_weight( 0x246A, 11).digit_weight1444,39488 -digit_weight( 0x247E, 11).digit_weight1445,39515 -digit_weight( 0x247E, 11).digit_weight1445,39515 -digit_weight( 0x2492, 11).digit_weight1446,39542 -digit_weight( 0x2492, 11).digit_weight1446,39542 -digit_weight( 0x24EB, 11).digit_weight1447,39569 -digit_weight( 0x24EB, 11).digit_weight1447,39569 -digit_weight( 0x216B, 12).digit_weight1448,39596 -digit_weight( 0x216B, 12).digit_weight1448,39596 -digit_weight( 0x217B, 12).digit_weight1449,39623 -digit_weight( 0x217B, 12).digit_weight1449,39623 -digit_weight( 0x246B, 12).digit_weight1450,39650 -digit_weight( 0x246B, 12).digit_weight1450,39650 -digit_weight( 0x247F, 12).digit_weight1451,39677 -digit_weight( 0x247F, 12).digit_weight1451,39677 -digit_weight( 0x2493, 12).digit_weight1452,39704 -digit_weight( 0x2493, 12).digit_weight1452,39704 -digit_weight( 0x24EC, 12).digit_weight1453,39731 -digit_weight( 0x24EC, 12).digit_weight1453,39731 -digit_weight( 0x246C, 13).digit_weight1454,39758 -digit_weight( 0x246C, 13).digit_weight1454,39758 -digit_weight( 0x2480, 13).digit_weight1455,39785 -digit_weight( 0x2480, 13).digit_weight1455,39785 -digit_weight( 0x2494, 13).digit_weight1456,39812 -digit_weight( 0x2494, 13).digit_weight1456,39812 -digit_weight( 0x24ED, 13).digit_weight1457,39839 -digit_weight( 0x24ED, 13).digit_weight1457,39839 -digit_weight( 0x246D, 14).digit_weight1458,39866 -digit_weight( 0x246D, 14).digit_weight1458,39866 -digit_weight( 0x2481, 14).digit_weight1459,39893 -digit_weight( 0x2481, 14).digit_weight1459,39893 -digit_weight( 0x2495, 14).digit_weight1460,39920 -digit_weight( 0x2495, 14).digit_weight1460,39920 -digit_weight( 0x24EE, 14).digit_weight1461,39947 -digit_weight( 0x24EE, 14).digit_weight1461,39947 -digit_weight( 0x246E, 15).digit_weight1462,39974 -digit_weight( 0x246E, 15).digit_weight1462,39974 -digit_weight( 0x2482, 15).digit_weight1463,40001 -digit_weight( 0x2482, 15).digit_weight1463,40001 -digit_weight( 0x2496, 15).digit_weight1464,40028 -digit_weight( 0x2496, 15).digit_weight1464,40028 -digit_weight( 0x24EF, 15).digit_weight1465,40055 -digit_weight( 0x24EF, 15).digit_weight1465,40055 -digit_weight( 0x09F9, 16).digit_weight1466,40082 -digit_weight( 0x09F9, 16).digit_weight1466,40082 -digit_weight( 0x246F, 16).digit_weight1467,40109 -digit_weight( 0x246F, 16).digit_weight1467,40109 -digit_weight( 0x2483, 16).digit_weight1468,40136 -digit_weight( 0x2483, 16).digit_weight1468,40136 -digit_weight( 0x2497, 16).digit_weight1469,40163 -digit_weight( 0x2497, 16).digit_weight1469,40163 -digit_weight( 0x24F0, 16).digit_weight1470,40190 -digit_weight( 0x24F0, 16).digit_weight1470,40190 -digit_weight( 0x16EE, 17).digit_weight1471,40217 -digit_weight( 0x16EE, 17).digit_weight1471,40217 -digit_weight( 0x2470, 17).digit_weight1472,40244 -digit_weight( 0x2470, 17).digit_weight1472,40244 -digit_weight( 0x2484, 17).digit_weight1473,40271 -digit_weight( 0x2484, 17).digit_weight1473,40271 -digit_weight( 0x2498, 17).digit_weight1474,40298 -digit_weight( 0x2498, 17).digit_weight1474,40298 -digit_weight( 0x24F1, 17).digit_weight1475,40325 -digit_weight( 0x24F1, 17).digit_weight1475,40325 -digit_weight( 0x16EF, 18).digit_weight1476,40352 -digit_weight( 0x16EF, 18).digit_weight1476,40352 -digit_weight( 0x2471, 18).digit_weight1477,40379 -digit_weight( 0x2471, 18).digit_weight1477,40379 -digit_weight( 0x2485, 18).digit_weight1478,40406 -digit_weight( 0x2485, 18).digit_weight1478,40406 -digit_weight( 0x2499, 18).digit_weight1479,40433 -digit_weight( 0x2499, 18).digit_weight1479,40433 -digit_weight( 0x24F2, 18).digit_weight1480,40460 -digit_weight( 0x24F2, 18).digit_weight1480,40460 -digit_weight( 0x16F0, 19).digit_weight1481,40487 -digit_weight( 0x16F0, 19).digit_weight1481,40487 -digit_weight( 0x2472, 19).digit_weight1482,40514 -digit_weight( 0x2472, 19).digit_weight1482,40514 -digit_weight( 0x2486, 19).digit_weight1483,40541 -digit_weight( 0x2486, 19).digit_weight1483,40541 -digit_weight( 0x249A, 19).digit_weight1484,40568 -digit_weight( 0x249A, 19).digit_weight1484,40568 -digit_weight( 0x24F3, 19).digit_weight1485,40595 -digit_weight( 0x24F3, 19).digit_weight1485,40595 -digit_weight( 0x1373, 20).digit_weight1486,40622 -digit_weight( 0x1373, 20).digit_weight1486,40622 -digit_weight( 0x2473, 20).digit_weight1487,40649 -digit_weight( 0x2473, 20).digit_weight1487,40649 -digit_weight( 0x2487, 20).digit_weight1488,40676 -digit_weight( 0x2487, 20).digit_weight1488,40676 -digit_weight( 0x249B, 20).digit_weight1489,40703 -digit_weight( 0x249B, 20).digit_weight1489,40703 -digit_weight( 0x24F4, 20).digit_weight1490,40730 -digit_weight( 0x24F4, 20).digit_weight1490,40730 -digit_weight( 0x3039, 20).digit_weight1491,40757 -digit_weight( 0x3039, 20).digit_weight1491,40757 -digit_weight( 0x3249, 20).digit_weight1492,40784 -digit_weight( 0x3249, 20).digit_weight1492,40784 -digit_weight( 0x5344, 20).digit_weight1493,40811 -digit_weight( 0x5344, 20).digit_weight1493,40811 -digit_weight( 0x5EFF, 20).digit_weight1494,40838 -digit_weight( 0x5EFF, 20).digit_weight1494,40838 -digit_weight( 0x10111, 20).digit_weight1495,40865 -digit_weight( 0x10111, 20).digit_weight1495,40865 -digit_weight( 0x102EB, 20).digit_weight1496,40893 -digit_weight( 0x102EB, 20).digit_weight1496,40893 -digit_weight( 0x103D4, 20).digit_weight1497,40921 -digit_weight( 0x103D4, 20).digit_weight1497,40921 -digit_weight( 0x1085C, 20).digit_weight1498,40949 -digit_weight( 0x1085C, 20).digit_weight1498,40949 -digit_weight( 0x1087F, 20).digit_weight1499,40977 -digit_weight( 0x1087F, 20).digit_weight1499,40977 -digit_weight( 0x108AE, 20).digit_weight1500,41005 -digit_weight( 0x108AE, 20).digit_weight1500,41005 -digit_weight( 0x108FE, 20).digit_weight1501,41033 -digit_weight( 0x108FE, 20).digit_weight1501,41033 -digit_weight( 0x10918, 20).digit_weight1502,41061 -digit_weight( 0x10918, 20).digit_weight1502,41061 -digit_weight( 0x109CA, 20).digit_weight1503,41089 -digit_weight( 0x109CA, 20).digit_weight1503,41089 -digit_weight( 0x10A45, 20).digit_weight1504,41117 -digit_weight( 0x10A45, 20).digit_weight1504,41117 -digit_weight( 0x10A9F, 20).digit_weight1505,41145 -digit_weight( 0x10A9F, 20).digit_weight1505,41145 -digit_weight( 0x10AEE, 20).digit_weight1506,41173 -digit_weight( 0x10AEE, 20).digit_weight1506,41173 -digit_weight( 0x10B5D, 20).digit_weight1507,41201 -digit_weight( 0x10B5D, 20).digit_weight1507,41201 -digit_weight( 0x10B7D, 20).digit_weight1508,41229 -digit_weight( 0x10B7D, 20).digit_weight1508,41229 -digit_weight( 0x10BAE, 20).digit_weight1509,41257 -digit_weight( 0x10BAE, 20).digit_weight1509,41257 -digit_weight( 0x10E6A, 20).digit_weight1510,41285 -digit_weight( 0x10E6A, 20).digit_weight1510,41285 -digit_weight( 0x1105C, 20).digit_weight1511,41313 -digit_weight( 0x1105C, 20).digit_weight1511,41313 -digit_weight( 0x111EB, 20).digit_weight1512,41341 -digit_weight( 0x111EB, 20).digit_weight1512,41341 -digit_weight( 0x1173B, 20).digit_weight1513,41369 -digit_weight( 0x1173B, 20).digit_weight1513,41369 -digit_weight( 0x118EB, 20).digit_weight1514,41397 -digit_weight( 0x118EB, 20).digit_weight1514,41397 -digit_weight( 0x1D36A, 20).digit_weight1515,41425 -digit_weight( 0x1D36A, 20).digit_weight1515,41425 -digit_weight( 0x3251, 21).digit_weight1516,41453 -digit_weight( 0x3251, 21).digit_weight1516,41453 -digit_weight( 0x3252, 22).digit_weight1517,41480 -digit_weight( 0x3252, 22).digit_weight1517,41480 -digit_weight( 0x3253, 23).digit_weight1518,41507 -digit_weight( 0x3253, 23).digit_weight1518,41507 -digit_weight( 0x3254, 24).digit_weight1519,41534 -digit_weight( 0x3254, 24).digit_weight1519,41534 -digit_weight( 0x3255, 25).digit_weight1520,41561 -digit_weight( 0x3255, 25).digit_weight1520,41561 -digit_weight( 0x3256, 26).digit_weight1521,41588 -digit_weight( 0x3256, 26).digit_weight1521,41588 -digit_weight( 0x3257, 27).digit_weight1522,41615 -digit_weight( 0x3257, 27).digit_weight1522,41615 -digit_weight( 0x3258, 28).digit_weight1523,41642 -digit_weight( 0x3258, 28).digit_weight1523,41642 -digit_weight( 0x3259, 29).digit_weight1524,41669 -digit_weight( 0x3259, 29).digit_weight1524,41669 -digit_weight( 0x1374, 30).digit_weight1525,41696 -digit_weight( 0x1374, 30).digit_weight1525,41696 -digit_weight( 0x303A, 30).digit_weight1526,41723 -digit_weight( 0x303A, 30).digit_weight1526,41723 -digit_weight( 0x324A, 30).digit_weight1527,41750 -digit_weight( 0x324A, 30).digit_weight1527,41750 -digit_weight( 0x325A, 30).digit_weight1528,41777 -digit_weight( 0x325A, 30).digit_weight1528,41777 -digit_weight( 0x5345, 30).digit_weight1529,41804 -digit_weight( 0x5345, 30).digit_weight1529,41804 -digit_weight( 0x10112, 30).digit_weight1530,41831 -digit_weight( 0x10112, 30).digit_weight1530,41831 -digit_weight( 0x10165, 30).digit_weight1531,41859 -digit_weight( 0x10165, 30).digit_weight1531,41859 -digit_weight( 0x102EC, 30).digit_weight1532,41887 -digit_weight( 0x102EC, 30).digit_weight1532,41887 -digit_weight( 0x109CB, 30).digit_weight1533,41915 -digit_weight( 0x109CB, 30).digit_weight1533,41915 -digit_weight( 0x10E6B, 30).digit_weight1534,41943 -digit_weight( 0x10E6B, 30).digit_weight1534,41943 -digit_weight( 0x1105D, 30).digit_weight1535,41971 -digit_weight( 0x1105D, 30).digit_weight1535,41971 -digit_weight( 0x111EC, 30).digit_weight1536,41999 -digit_weight( 0x111EC, 30).digit_weight1536,41999 -digit_weight( 0x118EC, 30).digit_weight1537,42027 -digit_weight( 0x118EC, 30).digit_weight1537,42027 -digit_weight( 0x1D36B, 30).digit_weight1538,42055 -digit_weight( 0x1D36B, 30).digit_weight1538,42055 -digit_weight( 0x20983, 30).digit_weight1539,42083 -digit_weight( 0x20983, 30).digit_weight1539,42083 -digit_weight( 0x325B, 31).digit_weight1540,42111 -digit_weight( 0x325B, 31).digit_weight1540,42111 -digit_weight( 0x325C, 32).digit_weight1541,42138 -digit_weight( 0x325C, 32).digit_weight1541,42138 -digit_weight( 0x325D, 33).digit_weight1542,42165 -digit_weight( 0x325D, 33).digit_weight1542,42165 -digit_weight( 0x325E, 34).digit_weight1543,42192 -digit_weight( 0x325E, 34).digit_weight1543,42192 -digit_weight( 0x325F, 35).digit_weight1544,42219 -digit_weight( 0x325F, 35).digit_weight1544,42219 -digit_weight( 0x32B1, 36).digit_weight1545,42246 -digit_weight( 0x32B1, 36).digit_weight1545,42246 -digit_weight( 0x32B2, 37).digit_weight1546,42273 -digit_weight( 0x32B2, 37).digit_weight1546,42273 -digit_weight( 0x32B3, 38).digit_weight1547,42300 -digit_weight( 0x32B3, 38).digit_weight1547,42300 -digit_weight( 0x32B4, 39).digit_weight1548,42327 -digit_weight( 0x32B4, 39).digit_weight1548,42327 -digit_weight( 0x1375, 40).digit_weight1549,42354 -digit_weight( 0x1375, 40).digit_weight1549,42354 -digit_weight( 0x324B, 40).digit_weight1550,42381 -digit_weight( 0x324B, 40).digit_weight1550,42381 -digit_weight( 0x32B5, 40).digit_weight1551,42408 -digit_weight( 0x32B5, 40).digit_weight1551,42408 -digit_weight( 0x534C, 40).digit_weight1552,42435 -digit_weight( 0x534C, 40).digit_weight1552,42435 -digit_weight( 0x10113, 40).digit_weight1553,42462 -digit_weight( 0x10113, 40).digit_weight1553,42462 -digit_weight( 0x102ED, 40).digit_weight1554,42490 -digit_weight( 0x102ED, 40).digit_weight1554,42490 -digit_weight( 0x109CC, 40).digit_weight1555,42518 -digit_weight( 0x109CC, 40).digit_weight1555,42518 -digit_weight( 0x10E6C, 40).digit_weight1556,42546 -digit_weight( 0x10E6C, 40).digit_weight1556,42546 -digit_weight( 0x1105E, 40).digit_weight1557,42574 -digit_weight( 0x1105E, 40).digit_weight1557,42574 -digit_weight( 0x111ED, 40).digit_weight1558,42602 -digit_weight( 0x111ED, 40).digit_weight1558,42602 -digit_weight( 0x118ED, 40).digit_weight1559,42630 -digit_weight( 0x118ED, 40).digit_weight1559,42630 -digit_weight( 0x12467, 40).digit_weight1560,42658 -digit_weight( 0x12467, 40).digit_weight1560,42658 -digit_weight( 0x1D36C, 40).digit_weight1561,42686 -digit_weight( 0x1D36C, 40).digit_weight1561,42686 -digit_weight( 0x2098C, 40).digit_weight1562,42714 -digit_weight( 0x2098C, 40).digit_weight1562,42714 -digit_weight( 0x2099C, 40).digit_weight1563,42742 -digit_weight( 0x2099C, 40).digit_weight1563,42742 -digit_weight( 0x32B6, 41).digit_weight1564,42770 -digit_weight( 0x32B6, 41).digit_weight1564,42770 -digit_weight( 0x32B7, 42).digit_weight1565,42797 -digit_weight( 0x32B7, 42).digit_weight1565,42797 -digit_weight( 0x32B8, 43).digit_weight1566,42824 -digit_weight( 0x32B8, 43).digit_weight1566,42824 -digit_weight( 0x32B9, 44).digit_weight1567,42851 -digit_weight( 0x32B9, 44).digit_weight1567,42851 -digit_weight( 0x32BA, 45).digit_weight1568,42878 -digit_weight( 0x32BA, 45).digit_weight1568,42878 -digit_weight( 0x32BB, 46).digit_weight1569,42905 -digit_weight( 0x32BB, 46).digit_weight1569,42905 -digit_weight( 0x32BC, 47).digit_weight1570,42932 -digit_weight( 0x32BC, 47).digit_weight1570,42932 -digit_weight( 0x32BD, 48).digit_weight1571,42959 -digit_weight( 0x32BD, 48).digit_weight1571,42959 -digit_weight( 0x32BE, 49).digit_weight1572,42986 -digit_weight( 0x32BE, 49).digit_weight1572,42986 -digit_weight( 0x1376, 50).digit_weight1573,43013 -digit_weight( 0x1376, 50).digit_weight1573,43013 -digit_weight( 0x216C, 50).digit_weight1574,43040 -digit_weight( 0x216C, 50).digit_weight1574,43040 -digit_weight( 0x217C, 50).digit_weight1575,43067 -digit_weight( 0x217C, 50).digit_weight1575,43067 -digit_weight( 0x2186, 50).digit_weight1576,43094 -digit_weight( 0x2186, 50).digit_weight1576,43094 -digit_weight( 0x324C, 50).digit_weight1577,43121 -digit_weight( 0x324C, 50).digit_weight1577,43121 -digit_weight( 0x32BF, 50).digit_weight1578,43148 -digit_weight( 0x32BF, 50).digit_weight1578,43148 -digit_weight( 0x10114, 50).digit_weight1579,43175 -digit_weight( 0x10114, 50).digit_weight1579,43175 -digit_weight( 0x10144, 50).digit_weight1580,43203 -digit_weight( 0x10144, 50).digit_weight1580,43203 -digit_weight( 0x1014A, 50).digit_weight1581,43231 -digit_weight( 0x1014A, 50).digit_weight1581,43231 -digit_weight( 0x10151, 50).digit_weight1582,43259 -digit_weight( 0x10151, 50).digit_weight1582,43259 -digit_weight( 0x10166, 0x10169, 50).digit_weight1583,43287 -digit_weight( 0x10166, 0x10169, 50).digit_weight1583,43287 -digit_weight( 0x10174, 50).digit_weight1584,43324 -digit_weight( 0x10174, 50).digit_weight1584,43324 -digit_weight( 0x102EE, 50).digit_weight1585,43352 -digit_weight( 0x102EE, 50).digit_weight1585,43352 -digit_weight( 0x10323, 50).digit_weight1586,43380 -digit_weight( 0x10323, 50).digit_weight1586,43380 -digit_weight( 0x109CD, 50).digit_weight1587,43408 -digit_weight( 0x109CD, 50).digit_weight1587,43408 -digit_weight( 0x10A7E, 50).digit_weight1588,43436 -digit_weight( 0x10A7E, 50).digit_weight1588,43436 -digit_weight( 0x10CFD, 50).digit_weight1589,43464 -digit_weight( 0x10CFD, 50).digit_weight1589,43464 -digit_weight( 0x10E6D, 50).digit_weight1590,43492 -digit_weight( 0x10E6D, 50).digit_weight1590,43492 -digit_weight( 0x1105F, 50).digit_weight1591,43520 -digit_weight( 0x1105F, 50).digit_weight1591,43520 -digit_weight( 0x111EE, 50).digit_weight1592,43548 -digit_weight( 0x111EE, 50).digit_weight1592,43548 -digit_weight( 0x118EE, 50).digit_weight1593,43576 -digit_weight( 0x118EE, 50).digit_weight1593,43576 -digit_weight( 0x12468, 50).digit_weight1594,43604 -digit_weight( 0x12468, 50).digit_weight1594,43604 -digit_weight( 0x1D36D, 50).digit_weight1595,43632 -digit_weight( 0x1D36D, 50).digit_weight1595,43632 -digit_weight( 0x1377, 60).digit_weight1596,43660 -digit_weight( 0x1377, 60).digit_weight1596,43660 -digit_weight( 0x324D, 60).digit_weight1597,43687 -digit_weight( 0x324D, 60).digit_weight1597,43687 -digit_weight( 0x10115, 60).digit_weight1598,43714 -digit_weight( 0x10115, 60).digit_weight1598,43714 -digit_weight( 0x102EF, 60).digit_weight1599,43742 -digit_weight( 0x102EF, 60).digit_weight1599,43742 -digit_weight( 0x109CE, 60).digit_weight1600,43770 -digit_weight( 0x109CE, 60).digit_weight1600,43770 -digit_weight( 0x10E6E, 60).digit_weight1601,43798 -digit_weight( 0x10E6E, 60).digit_weight1601,43798 -digit_weight( 0x11060, 60).digit_weight1602,43826 -digit_weight( 0x11060, 60).digit_weight1602,43826 -digit_weight( 0x111EF, 60).digit_weight1603,43854 -digit_weight( 0x111EF, 60).digit_weight1603,43854 -digit_weight( 0x118EF, 60).digit_weight1604,43882 -digit_weight( 0x118EF, 60).digit_weight1604,43882 -digit_weight( 0x1D36E, 60).digit_weight1605,43910 -digit_weight( 0x1D36E, 60).digit_weight1605,43910 -digit_weight( 0x1378, 70).digit_weight1606,43938 -digit_weight( 0x1378, 70).digit_weight1606,43938 -digit_weight( 0x324E, 70).digit_weight1607,43965 -digit_weight( 0x324E, 70).digit_weight1607,43965 -digit_weight( 0x10116, 70).digit_weight1608,43992 -digit_weight( 0x10116, 70).digit_weight1608,43992 -digit_weight( 0x102F0, 70).digit_weight1609,44020 -digit_weight( 0x102F0, 70).digit_weight1609,44020 -digit_weight( 0x109CF, 70).digit_weight1610,44048 -digit_weight( 0x109CF, 70).digit_weight1610,44048 -digit_weight( 0x10E6F, 70).digit_weight1611,44076 -digit_weight( 0x10E6F, 70).digit_weight1611,44076 -digit_weight( 0x11061, 70).digit_weight1612,44104 -digit_weight( 0x11061, 70).digit_weight1612,44104 -digit_weight( 0x111F0, 70).digit_weight1613,44132 -digit_weight( 0x111F0, 70).digit_weight1613,44132 -digit_weight( 0x118F0, 70).digit_weight1614,44160 -digit_weight( 0x118F0, 70).digit_weight1614,44160 -digit_weight( 0x1D36F, 70).digit_weight1615,44188 -digit_weight( 0x1D36F, 70).digit_weight1615,44188 -digit_weight( 0x1379, 80).digit_weight1616,44216 -digit_weight( 0x1379, 80).digit_weight1616,44216 -digit_weight( 0x324F, 80).digit_weight1617,44243 -digit_weight( 0x324F, 80).digit_weight1617,44243 -digit_weight( 0x10117, 80).digit_weight1618,44270 -digit_weight( 0x10117, 80).digit_weight1618,44270 -digit_weight( 0x102F1, 80).digit_weight1619,44298 -digit_weight( 0x102F1, 80).digit_weight1619,44298 -digit_weight( 0x10E70, 80).digit_weight1620,44326 -digit_weight( 0x10E70, 80).digit_weight1620,44326 -digit_weight( 0x11062, 80).digit_weight1621,44354 -digit_weight( 0x11062, 80).digit_weight1621,44354 -digit_weight( 0x111F1, 80).digit_weight1622,44382 -digit_weight( 0x111F1, 80).digit_weight1622,44382 -digit_weight( 0x118F1, 80).digit_weight1623,44410 -digit_weight( 0x118F1, 80).digit_weight1623,44410 -digit_weight( 0x1D370, 80).digit_weight1624,44438 -digit_weight( 0x1D370, 80).digit_weight1624,44438 -digit_weight( 0x137A, 90).digit_weight1625,44466 -digit_weight( 0x137A, 90).digit_weight1625,44466 -digit_weight( 0x10118, 90).digit_weight1626,44493 -digit_weight( 0x10118, 90).digit_weight1626,44493 -digit_weight( 0x102F2, 90).digit_weight1627,44521 -digit_weight( 0x102F2, 90).digit_weight1627,44521 -digit_weight( 0x10341, 90).digit_weight1628,44549 -digit_weight( 0x10341, 90).digit_weight1628,44549 -digit_weight( 0x10E71, 90).digit_weight1629,44577 -digit_weight( 0x10E71, 90).digit_weight1629,44577 -digit_weight( 0x11063, 90).digit_weight1630,44605 -digit_weight( 0x11063, 90).digit_weight1630,44605 -digit_weight( 0x111F2, 90).digit_weight1631,44633 -digit_weight( 0x111F2, 90).digit_weight1631,44633 -digit_weight( 0x118F2, 90).digit_weight1632,44661 -digit_weight( 0x118F2, 90).digit_weight1632,44661 -digit_weight( 0x1D371, 90).digit_weight1633,44689 -digit_weight( 0x1D371, 90).digit_weight1633,44689 -digit_weight( 0x0BF1, 100).digit_weight1634,44717 -digit_weight( 0x0BF1, 100).digit_weight1634,44717 -digit_weight( 0x0D71, 100).digit_weight1635,44745 -digit_weight( 0x0D71, 100).digit_weight1635,44745 -digit_weight( 0x137B, 100).digit_weight1636,44773 -digit_weight( 0x137B, 100).digit_weight1636,44773 -digit_weight( 0x216D, 100).digit_weight1637,44801 -digit_weight( 0x216D, 100).digit_weight1637,44801 -digit_weight( 0x217D, 100).digit_weight1638,44829 -digit_weight( 0x217D, 100).digit_weight1638,44829 -digit_weight( 0x4F70, 100).digit_weight1639,44857 -digit_weight( 0x4F70, 100).digit_weight1639,44857 -digit_weight( 0x767E, 100).digit_weight1640,44885 -digit_weight( 0x767E, 100).digit_weight1640,44885 -digit_weight( 0x964C, 100).digit_weight1641,44913 -digit_weight( 0x964C, 100).digit_weight1641,44913 -digit_weight( 0x10119, 100).digit_weight1642,44941 -digit_weight( 0x10119, 100).digit_weight1642,44941 -digit_weight( 0x1014B, 100).digit_weight1643,44970 -digit_weight( 0x1014B, 100).digit_weight1643,44970 -digit_weight( 0x10152, 100).digit_weight1644,44999 -digit_weight( 0x10152, 100).digit_weight1644,44999 -digit_weight( 0x1016A, 100).digit_weight1645,45028 -digit_weight( 0x1016A, 100).digit_weight1645,45028 -digit_weight( 0x102F3, 100).digit_weight1646,45057 -digit_weight( 0x102F3, 100).digit_weight1646,45057 -digit_weight( 0x103D5, 100).digit_weight1647,45086 -digit_weight( 0x103D5, 100).digit_weight1647,45086 -digit_weight( 0x1085D, 100).digit_weight1648,45115 -digit_weight( 0x1085D, 100).digit_weight1648,45115 -digit_weight( 0x108AF, 100).digit_weight1649,45144 -digit_weight( 0x108AF, 100).digit_weight1649,45144 -digit_weight( 0x108FF, 100).digit_weight1650,45173 -digit_weight( 0x108FF, 100).digit_weight1650,45173 -digit_weight( 0x10919, 100).digit_weight1651,45202 -digit_weight( 0x10919, 100).digit_weight1651,45202 -digit_weight( 0x109D2, 100).digit_weight1652,45231 -digit_weight( 0x109D2, 100).digit_weight1652,45231 -digit_weight( 0x10A46, 100).digit_weight1653,45260 -digit_weight( 0x10A46, 100).digit_weight1653,45260 -digit_weight( 0x10AEF, 100).digit_weight1654,45289 -digit_weight( 0x10AEF, 100).digit_weight1654,45289 -digit_weight( 0x10B5E, 100).digit_weight1655,45318 -digit_weight( 0x10B5E, 100).digit_weight1655,45318 -digit_weight( 0x10B7E, 100).digit_weight1656,45347 -digit_weight( 0x10B7E, 100).digit_weight1656,45347 -digit_weight( 0x10BAF, 100).digit_weight1657,45376 -digit_weight( 0x10BAF, 100).digit_weight1657,45376 -digit_weight( 0x10CFE, 100).digit_weight1658,45405 -digit_weight( 0x10CFE, 100).digit_weight1658,45405 -digit_weight( 0x10E72, 100).digit_weight1659,45434 -digit_weight( 0x10E72, 100).digit_weight1659,45434 -digit_weight( 0x11064, 100).digit_weight1660,45463 -digit_weight( 0x11064, 100).digit_weight1660,45463 -digit_weight( 0x111F3, 100).digit_weight1661,45492 -digit_weight( 0x111F3, 100).digit_weight1661,45492 -digit_weight( 0x16B5C, 100).digit_weight1662,45521 -digit_weight( 0x16B5C, 100).digit_weight1662,45521 -digit_weight( 0x1011A, 200).digit_weight1663,45550 -digit_weight( 0x1011A, 200).digit_weight1663,45550 -digit_weight( 0x102F4, 200).digit_weight1664,45579 -digit_weight( 0x102F4, 200).digit_weight1664,45579 -digit_weight( 0x109D3, 200).digit_weight1665,45608 -digit_weight( 0x109D3, 200).digit_weight1665,45608 -digit_weight( 0x10E73, 200).digit_weight1666,45637 -digit_weight( 0x10E73, 200).digit_weight1666,45637 -digit_weight( 0x1011B, 300).digit_weight1667,45666 -digit_weight( 0x1011B, 300).digit_weight1667,45666 -digit_weight( 0x1016B, 300).digit_weight1668,45695 -digit_weight( 0x1016B, 300).digit_weight1668,45695 -digit_weight( 0x102F5, 300).digit_weight1669,45724 -digit_weight( 0x102F5, 300).digit_weight1669,45724 -digit_weight( 0x109D4, 300).digit_weight1670,45753 -digit_weight( 0x109D4, 300).digit_weight1670,45753 -digit_weight( 0x10E74, 300).digit_weight1671,45782 -digit_weight( 0x10E74, 300).digit_weight1671,45782 -digit_weight( 0x1011C, 400).digit_weight1672,45811 -digit_weight( 0x1011C, 400).digit_weight1672,45811 -digit_weight( 0x102F6, 400).digit_weight1673,45840 -digit_weight( 0x102F6, 400).digit_weight1673,45840 -digit_weight( 0x109D5, 400).digit_weight1674,45869 -digit_weight( 0x109D5, 400).digit_weight1674,45869 -digit_weight( 0x10E75, 400).digit_weight1675,45898 -digit_weight( 0x10E75, 400).digit_weight1675,45898 -digit_weight( 0x216E, 500).digit_weight1676,45927 -digit_weight( 0x216E, 500).digit_weight1676,45927 -digit_weight( 0x217E, 500).digit_weight1677,45955 -digit_weight( 0x217E, 500).digit_weight1677,45955 -digit_weight( 0x1011D, 500).digit_weight1678,45983 -digit_weight( 0x1011D, 500).digit_weight1678,45983 -digit_weight( 0x10145, 500).digit_weight1679,46012 -digit_weight( 0x10145, 500).digit_weight1679,46012 -digit_weight( 0x1014C, 500).digit_weight1680,46041 -digit_weight( 0x1014C, 500).digit_weight1680,46041 -digit_weight( 0x10153, 500).digit_weight1681,46070 -digit_weight( 0x10153, 500).digit_weight1681,46070 -digit_weight( 0x1016C, 0x10170, 500).digit_weight1682,46099 -digit_weight( 0x1016C, 0x10170, 500).digit_weight1682,46099 -digit_weight( 0x102F7, 500).digit_weight1683,46137 -digit_weight( 0x102F7, 500).digit_weight1683,46137 -digit_weight( 0x109D6, 500).digit_weight1684,46166 -digit_weight( 0x109D6, 500).digit_weight1684,46166 -digit_weight( 0x10E76, 500).digit_weight1685,46195 -digit_weight( 0x10E76, 500).digit_weight1685,46195 -digit_weight( 0x1011E, 600).digit_weight1686,46224 -digit_weight( 0x1011E, 600).digit_weight1686,46224 -digit_weight( 0x102F8, 600).digit_weight1687,46253 -digit_weight( 0x102F8, 600).digit_weight1687,46253 -digit_weight( 0x109D7, 600).digit_weight1688,46282 -digit_weight( 0x109D7, 600).digit_weight1688,46282 -digit_weight( 0x10E77, 600).digit_weight1689,46311 -digit_weight( 0x10E77, 600).digit_weight1689,46311 -digit_weight( 0x1011F, 700).digit_weight1690,46340 -digit_weight( 0x1011F, 700).digit_weight1690,46340 -digit_weight( 0x102F9, 700).digit_weight1691,46369 -digit_weight( 0x102F9, 700).digit_weight1691,46369 -digit_weight( 0x109D8, 700).digit_weight1692,46398 -digit_weight( 0x109D8, 700).digit_weight1692,46398 -digit_weight( 0x10E78, 700).digit_weight1693,46427 -digit_weight( 0x10E78, 700).digit_weight1693,46427 -digit_weight( 0x10120, 800).digit_weight1694,46456 -digit_weight( 0x10120, 800).digit_weight1694,46456 -digit_weight( 0x102FA, 800).digit_weight1695,46485 -digit_weight( 0x102FA, 800).digit_weight1695,46485 -digit_weight( 0x109D9, 800).digit_weight1696,46514 -digit_weight( 0x109D9, 800).digit_weight1696,46514 -digit_weight( 0x10E79, 800).digit_weight1697,46543 -digit_weight( 0x10E79, 800).digit_weight1697,46543 -digit_weight( 0x10121, 900).digit_weight1698,46572 -digit_weight( 0x10121, 900).digit_weight1698,46572 -digit_weight( 0x102FB, 900).digit_weight1699,46601 -digit_weight( 0x102FB, 900).digit_weight1699,46601 -digit_weight( 0x1034A, 900).digit_weight1700,46630 -digit_weight( 0x1034A, 900).digit_weight1700,46630 -digit_weight( 0x109DA, 900).digit_weight1701,46659 -digit_weight( 0x109DA, 900).digit_weight1701,46659 -digit_weight( 0x10E7A, 900).digit_weight1702,46688 -digit_weight( 0x10E7A, 900).digit_weight1702,46688 -digit_weight( 0x0BF2, 1000).digit_weight1703,46717 -digit_weight( 0x0BF2, 1000).digit_weight1703,46717 -digit_weight( 0x0D72, 1000).digit_weight1704,46746 -digit_weight( 0x0D72, 1000).digit_weight1704,46746 -digit_weight( 0x216F, 1000).digit_weight1705,46775 -digit_weight( 0x216F, 1000).digit_weight1705,46775 -digit_weight( 0x217F, 0x2180, 1000).digit_weight1706,46804 -digit_weight( 0x217F, 0x2180, 1000).digit_weight1706,46804 -digit_weight( 0x4EDF, 1000).digit_weight1707,46841 -digit_weight( 0x4EDF, 1000).digit_weight1707,46841 -digit_weight( 0x5343, 1000).digit_weight1708,46870 -digit_weight( 0x5343, 1000).digit_weight1708,46870 -digit_weight( 0x9621, 1000).digit_weight1709,46899 -digit_weight( 0x9621, 1000).digit_weight1709,46899 -digit_weight( 0x10122, 1000).digit_weight1710,46928 -digit_weight( 0x10122, 1000).digit_weight1710,46928 -digit_weight( 0x1014D, 1000).digit_weight1711,46958 -digit_weight( 0x1014D, 1000).digit_weight1711,46958 -digit_weight( 0x10154, 1000).digit_weight1712,46988 -digit_weight( 0x10154, 1000).digit_weight1712,46988 -digit_weight( 0x10171, 1000).digit_weight1713,47018 -digit_weight( 0x10171, 1000).digit_weight1713,47018 -digit_weight( 0x1085E, 1000).digit_weight1714,47048 -digit_weight( 0x1085E, 1000).digit_weight1714,47048 -digit_weight( 0x109DB, 1000).digit_weight1715,47078 -digit_weight( 0x109DB, 1000).digit_weight1715,47078 -digit_weight( 0x10A47, 1000).digit_weight1716,47108 -digit_weight( 0x10A47, 1000).digit_weight1716,47108 -digit_weight( 0x10B5F, 1000).digit_weight1717,47138 -digit_weight( 0x10B5F, 1000).digit_weight1717,47138 -digit_weight( 0x10B7F, 1000).digit_weight1718,47168 -digit_weight( 0x10B7F, 1000).digit_weight1718,47168 -digit_weight( 0x10CFF, 1000).digit_weight1719,47198 -digit_weight( 0x10CFF, 1000).digit_weight1719,47198 -digit_weight( 0x11065, 1000).digit_weight1720,47228 -digit_weight( 0x11065, 1000).digit_weight1720,47228 -digit_weight( 0x111F4, 1000).digit_weight1721,47258 -digit_weight( 0x111F4, 1000).digit_weight1721,47258 -digit_weight( 0x10123, 2000).digit_weight1722,47288 -digit_weight( 0x10123, 2000).digit_weight1722,47288 -digit_weight( 0x109DC, 2000).digit_weight1723,47318 -digit_weight( 0x109DC, 2000).digit_weight1723,47318 -digit_weight( 0x10124, 3000).digit_weight1724,47348 -digit_weight( 0x10124, 3000).digit_weight1724,47348 -digit_weight( 0x109DD, 3000).digit_weight1725,47378 -digit_weight( 0x109DD, 3000).digit_weight1725,47378 -digit_weight( 0x10125, 4000).digit_weight1726,47408 -digit_weight( 0x10125, 4000).digit_weight1726,47408 -digit_weight( 0x109DE, 4000).digit_weight1727,47438 -digit_weight( 0x109DE, 4000).digit_weight1727,47438 -digit_weight( 0x2181, 5000).digit_weight1728,47468 -digit_weight( 0x2181, 5000).digit_weight1728,47468 -digit_weight( 0x10126, 5000).digit_weight1729,47497 -digit_weight( 0x10126, 5000).digit_weight1729,47497 -digit_weight( 0x10146, 5000).digit_weight1730,47527 -digit_weight( 0x10146, 5000).digit_weight1730,47527 -digit_weight( 0x1014E, 5000).digit_weight1731,47557 -digit_weight( 0x1014E, 5000).digit_weight1731,47557 -digit_weight( 0x10172, 5000).digit_weight1732,47587 -digit_weight( 0x10172, 5000).digit_weight1732,47587 -digit_weight( 0x109DF, 5000).digit_weight1733,47617 -digit_weight( 0x109DF, 5000).digit_weight1733,47617 -digit_weight( 0x10127, 6000).digit_weight1734,47647 -digit_weight( 0x10127, 6000).digit_weight1734,47647 -digit_weight( 0x109E0, 6000).digit_weight1735,47677 -digit_weight( 0x109E0, 6000).digit_weight1735,47677 -digit_weight( 0x10128, 7000).digit_weight1736,47707 -digit_weight( 0x10128, 7000).digit_weight1736,47707 -digit_weight( 0x109E1, 7000).digit_weight1737,47737 -digit_weight( 0x109E1, 7000).digit_weight1737,47737 -digit_weight( 0x10129, 8000).digit_weight1738,47767 -digit_weight( 0x10129, 8000).digit_weight1738,47767 -digit_weight( 0x109E2, 8000).digit_weight1739,47797 -digit_weight( 0x109E2, 8000).digit_weight1739,47797 -digit_weight( 0x1012A, 9000).digit_weight1740,47827 -digit_weight( 0x1012A, 9000).digit_weight1740,47827 -digit_weight( 0x109E3, 9000).digit_weight1741,47857 -digit_weight( 0x109E3, 9000).digit_weight1741,47857 -digit_weight( 0x137C, 10000).digit_weight1742,47887 -digit_weight( 0x137C, 10000).digit_weight1742,47887 -digit_weight( 0x2182, 10000).digit_weight1743,47917 -digit_weight( 0x2182, 10000).digit_weight1743,47917 -digit_weight( 0x4E07, 10000).digit_weight1744,47947 -digit_weight( 0x4E07, 10000).digit_weight1744,47947 -digit_weight( 0x842C, 10000).digit_weight1745,47977 -digit_weight( 0x842C, 10000).digit_weight1745,47977 -digit_weight( 0x1012B, 10000).digit_weight1746,48007 -digit_weight( 0x1012B, 10000).digit_weight1746,48007 -digit_weight( 0x10155, 10000).digit_weight1747,48038 -digit_weight( 0x10155, 10000).digit_weight1747,48038 -digit_weight( 0x1085F, 10000).digit_weight1748,48069 -digit_weight( 0x1085F, 10000).digit_weight1748,48069 -digit_weight( 0x109E4, 10000).digit_weight1749,48100 -digit_weight( 0x109E4, 10000).digit_weight1749,48100 -digit_weight( 0x16B5D, 10000).digit_weight1750,48131 -digit_weight( 0x16B5D, 10000).digit_weight1750,48131 -digit_weight( 0x1012C, 20000).digit_weight1751,48162 -digit_weight( 0x1012C, 20000).digit_weight1751,48162 -digit_weight( 0x109E5, 20000).digit_weight1752,48193 -digit_weight( 0x109E5, 20000).digit_weight1752,48193 -digit_weight( 0x1012D, 30000).digit_weight1753,48224 -digit_weight( 0x1012D, 30000).digit_weight1753,48224 -digit_weight( 0x109E6, 30000).digit_weight1754,48255 -digit_weight( 0x109E6, 30000).digit_weight1754,48255 -digit_weight( 0x1012E, 40000).digit_weight1755,48286 -digit_weight( 0x1012E, 40000).digit_weight1755,48286 -digit_weight( 0x109E7, 40000).digit_weight1756,48317 -digit_weight( 0x109E7, 40000).digit_weight1756,48317 -digit_weight( 0x2187, 50000).digit_weight1757,48348 -digit_weight( 0x2187, 50000).digit_weight1757,48348 -digit_weight( 0x1012F, 50000).digit_weight1758,48378 -digit_weight( 0x1012F, 50000).digit_weight1758,48378 -digit_weight( 0x10147, 50000).digit_weight1759,48409 -digit_weight( 0x10147, 50000).digit_weight1759,48409 -digit_weight( 0x10156, 50000).digit_weight1760,48440 -digit_weight( 0x10156, 50000).digit_weight1760,48440 -digit_weight( 0x109E8, 50000).digit_weight1761,48471 -digit_weight( 0x109E8, 50000).digit_weight1761,48471 -digit_weight( 0x10130, 60000).digit_weight1762,48502 -digit_weight( 0x10130, 60000).digit_weight1762,48502 -digit_weight( 0x109E9, 60000).digit_weight1763,48533 -digit_weight( 0x109E9, 60000).digit_weight1763,48533 -digit_weight( 0x10131, 70000).digit_weight1764,48564 -digit_weight( 0x10131, 70000).digit_weight1764,48564 -digit_weight( 0x109EA, 70000).digit_weight1765,48595 -digit_weight( 0x109EA, 70000).digit_weight1765,48595 -digit_weight( 0x10132, 80000).digit_weight1766,48626 -digit_weight( 0x10132, 80000).digit_weight1766,48626 -digit_weight( 0x109EB, 80000).digit_weight1767,48657 -digit_weight( 0x109EB, 80000).digit_weight1767,48657 -digit_weight( 0x10133, 90000).digit_weight1768,48688 -digit_weight( 0x10133, 90000).digit_weight1768,48688 -digit_weight( 0x109EC, 90000).digit_weight1769,48719 -digit_weight( 0x109EC, 90000).digit_weight1769,48719 -digit_weight( 0x2188, 100000).digit_weight1770,48750 -digit_weight( 0x2188, 100000).digit_weight1770,48750 -digit_weight( 0x109ED, 100000).digit_weight1771,48781 -digit_weight( 0x109ED, 100000).digit_weight1771,48781 -digit_weight( 0x109EE, 200000).digit_weight1772,48813 -digit_weight( 0x109EE, 200000).digit_weight1772,48813 -digit_weight( 0x12432, 216000).digit_weight1773,48845 -digit_weight( 0x12432, 216000).digit_weight1773,48845 -digit_weight( 0x109EF, 300000).digit_weight1774,48877 -digit_weight( 0x109EF, 300000).digit_weight1774,48877 -digit_weight( 0x109F0, 400000).digit_weight1775,48909 -digit_weight( 0x109F0, 400000).digit_weight1775,48909 -digit_weight( 0x12433, 432000).digit_weight1776,48941 -digit_weight( 0x12433, 432000).digit_weight1776,48941 -digit_weight( 0x109F1, 500000).digit_weight1777,48973 -digit_weight( 0x109F1, 500000).digit_weight1777,48973 -digit_weight( 0x109F2, 600000).digit_weight1778,49005 -digit_weight( 0x109F2, 600000).digit_weight1778,49005 -digit_weight( 0x109F3, 700000).digit_weight1779,49037 -digit_weight( 0x109F3, 700000).digit_weight1779,49037 -digit_weight( 0x109F4, 800000).digit_weight1780,49069 -digit_weight( 0x109F4, 800000).digit_weight1780,49069 -digit_weight( 0x109F5, 900000).digit_weight1781,49101 -digit_weight( 0x109F5, 900000).digit_weight1781,49101 -digit_weight( 0x16B5E, 1000000).digit_weight1782,49133 -digit_weight( 0x16B5E, 1000000).digit_weight1782,49133 -digit_weight( 0x4EBF, 100000000).digit_weight1783,49166 -digit_weight( 0x4EBF, 100000000).digit_weight1783,49166 -digit_weight( 0x5104, 100000000).digit_weight1784,49200 -digit_weight( 0x5104, 100000000).digit_weight1784,49200 -digit_weight( 0x16B5F, 100000000).digit_weight1785,49234 -digit_weight( 0x16B5F, 100000000).digit_weight1785,49234 -digit_weight( 0x16B60, 10000000000).digit_weight1786,49269 -digit_weight( 0x16B60, 10000000000).digit_weight1786,49269 -digit_weight( 0x5146, 1000000000000).digit_weight1787,49306 -digit_weight( 0x5146, 1000000000000).digit_weight1787,49306 -digit_weight( 0x16B61, 1000000000000).digit_weight1788,49344 -digit_weight( 0x16B61, 1000000000000).digit_weight1788,49344 -paren_paren( 0x0028, 0x0029).paren_paren1799,49612 -paren_paren( 0x0028, 0x0029).paren_paren1799,49612 -paren_paren( 0x0029, 0x0028).paren_paren1800,49642 -paren_paren( 0x0029, 0x0028).paren_paren1800,49642 -paren_paren( 0x005B, 0x005D).paren_paren1801,49672 -paren_paren( 0x005B, 0x005D).paren_paren1801,49672 -paren_paren( 0x005D, 0x005B).paren_paren1802,49702 -paren_paren( 0x005D, 0x005B).paren_paren1802,49702 -paren_paren( 0x007B, 0x007D).paren_paren1803,49732 -paren_paren( 0x007B, 0x007D).paren_paren1803,49732 -paren_paren( 0x007D, 0x007B).paren_paren1804,49762 -paren_paren( 0x007D, 0x007B).paren_paren1804,49762 -paren_paren( 0x0F3A, 0x0F3B).paren_paren1805,49792 -paren_paren( 0x0F3A, 0x0F3B).paren_paren1805,49792 -paren_paren( 0x0F3B, 0x0F3A).paren_paren1806,49822 -paren_paren( 0x0F3B, 0x0F3A).paren_paren1806,49822 -paren_paren( 0x0F3C, 0x0F3D).paren_paren1807,49852 -paren_paren( 0x0F3C, 0x0F3D).paren_paren1807,49852 -paren_paren( 0x0F3D, 0x0F3C).paren_paren1808,49882 -paren_paren( 0x0F3D, 0x0F3C).paren_paren1808,49882 -paren_paren( 0x169B, 0x169C).paren_paren1809,49912 -paren_paren( 0x169B, 0x169C).paren_paren1809,49912 -paren_paren( 0x169C, 0x169B).paren_paren1810,49942 -paren_paren( 0x169C, 0x169B).paren_paren1810,49942 -paren_paren( 0x2045, 0x2046).paren_paren1811,49972 -paren_paren( 0x2045, 0x2046).paren_paren1811,49972 -paren_paren( 0x2046, 0x2045).paren_paren1812,50002 -paren_paren( 0x2046, 0x2045).paren_paren1812,50002 -paren_paren( 0x207D, 0x207E).paren_paren1813,50032 -paren_paren( 0x207D, 0x207E).paren_paren1813,50032 -paren_paren( 0x207E, 0x207D).paren_paren1814,50062 -paren_paren( 0x207E, 0x207D).paren_paren1814,50062 -paren_paren( 0x208D, 0x208E).paren_paren1815,50092 -paren_paren( 0x208D, 0x208E).paren_paren1815,50092 -paren_paren( 0x208E, 0x208D).paren_paren1816,50122 -paren_paren( 0x208E, 0x208D).paren_paren1816,50122 -paren_paren( 0x2308, 0x2309).paren_paren1817,50152 -paren_paren( 0x2308, 0x2309).paren_paren1817,50152 -paren_paren( 0x2309, 0x2308).paren_paren1818,50182 -paren_paren( 0x2309, 0x2308).paren_paren1818,50182 -paren_paren( 0x230A, 0x230B).paren_paren1819,50212 -paren_paren( 0x230A, 0x230B).paren_paren1819,50212 -paren_paren( 0x230B, 0x230A).paren_paren1820,50242 -paren_paren( 0x230B, 0x230A).paren_paren1820,50242 -paren_paren( 0x2329, 0x232A).paren_paren1821,50272 -paren_paren( 0x2329, 0x232A).paren_paren1821,50272 -paren_paren( 0x232A, 0x2329).paren_paren1822,50302 -paren_paren( 0x232A, 0x2329).paren_paren1822,50302 -paren_paren( 0x2768, 0x2769).paren_paren1823,50332 -paren_paren( 0x2768, 0x2769).paren_paren1823,50332 -paren_paren( 0x2769, 0x2768).paren_paren1824,50362 -paren_paren( 0x2769, 0x2768).paren_paren1824,50362 -paren_paren( 0x276A, 0x276B).paren_paren1825,50392 -paren_paren( 0x276A, 0x276B).paren_paren1825,50392 -paren_paren( 0x276B, 0x276A).paren_paren1826,50422 -paren_paren( 0x276B, 0x276A).paren_paren1826,50422 -paren_paren( 0x276C, 0x276D).paren_paren1827,50452 -paren_paren( 0x276C, 0x276D).paren_paren1827,50452 -paren_paren( 0x276D, 0x276C).paren_paren1828,50482 -paren_paren( 0x276D, 0x276C).paren_paren1828,50482 -paren_paren( 0x276E, 0x276F).paren_paren1829,50512 -paren_paren( 0x276E, 0x276F).paren_paren1829,50512 -paren_paren( 0x276F, 0x276E).paren_paren1830,50542 -paren_paren( 0x276F, 0x276E).paren_paren1830,50542 -paren_paren( 0x2770, 0x2771).paren_paren1831,50572 -paren_paren( 0x2770, 0x2771).paren_paren1831,50572 -paren_paren( 0x2771, 0x2770).paren_paren1832,50602 -paren_paren( 0x2771, 0x2770).paren_paren1832,50602 -paren_paren( 0x2772, 0x2773).paren_paren1833,50632 -paren_paren( 0x2772, 0x2773).paren_paren1833,50632 -paren_paren( 0x2773, 0x2772).paren_paren1834,50662 -paren_paren( 0x2773, 0x2772).paren_paren1834,50662 -paren_paren( 0x2774, 0x2775).paren_paren1835,50692 -paren_paren( 0x2774, 0x2775).paren_paren1835,50692 -paren_paren( 0x2775, 0x2774).paren_paren1836,50722 -paren_paren( 0x2775, 0x2774).paren_paren1836,50722 -paren_paren( 0x27C5, 0x27C6).paren_paren1837,50752 -paren_paren( 0x27C5, 0x27C6).paren_paren1837,50752 -paren_paren( 0x27C6, 0x27C5).paren_paren1838,50782 -paren_paren( 0x27C6, 0x27C5).paren_paren1838,50782 -paren_paren( 0x27E6, 0x27E7).paren_paren1839,50812 -paren_paren( 0x27E6, 0x27E7).paren_paren1839,50812 -paren_paren( 0x27E7, 0x27E6).paren_paren1840,50842 -paren_paren( 0x27E7, 0x27E6).paren_paren1840,50842 -paren_paren( 0x27E8, 0x27E9).paren_paren1841,50872 -paren_paren( 0x27E8, 0x27E9).paren_paren1841,50872 -paren_paren( 0x27E9, 0x27E8).paren_paren1842,50902 -paren_paren( 0x27E9, 0x27E8).paren_paren1842,50902 -paren_paren( 0x27EA, 0x27EB).paren_paren1843,50932 -paren_paren( 0x27EA, 0x27EB).paren_paren1843,50932 -paren_paren( 0x27EB, 0x27EA).paren_paren1844,50962 -paren_paren( 0x27EB, 0x27EA).paren_paren1844,50962 -paren_paren( 0x27EC, 0x27ED).paren_paren1845,50992 -paren_paren( 0x27EC, 0x27ED).paren_paren1845,50992 -paren_paren( 0x27ED, 0x27EC).paren_paren1846,51022 -paren_paren( 0x27ED, 0x27EC).paren_paren1846,51022 -paren_paren( 0x27EE, 0x27EF).paren_paren1847,51052 -paren_paren( 0x27EE, 0x27EF).paren_paren1847,51052 -paren_paren( 0x27EF, 0x27EE).paren_paren1848,51082 -paren_paren( 0x27EF, 0x27EE).paren_paren1848,51082 -paren_paren( 0x2983, 0x2984).paren_paren1849,51112 -paren_paren( 0x2983, 0x2984).paren_paren1849,51112 -paren_paren( 0x2984, 0x2983).paren_paren1850,51142 -paren_paren( 0x2984, 0x2983).paren_paren1850,51142 -paren_paren( 0x2985, 0x2986).paren_paren1851,51172 -paren_paren( 0x2985, 0x2986).paren_paren1851,51172 -paren_paren( 0x2986, 0x2985).paren_paren1852,51202 -paren_paren( 0x2986, 0x2985).paren_paren1852,51202 -paren_paren( 0x2987, 0x2988).paren_paren1853,51232 -paren_paren( 0x2987, 0x2988).paren_paren1853,51232 -paren_paren( 0x2988, 0x2987).paren_paren1854,51262 -paren_paren( 0x2988, 0x2987).paren_paren1854,51262 -paren_paren( 0x2989, 0x298A).paren_paren1855,51292 -paren_paren( 0x2989, 0x298A).paren_paren1855,51292 -paren_paren( 0x298A, 0x2989).paren_paren1856,51322 -paren_paren( 0x298A, 0x2989).paren_paren1856,51322 -paren_paren( 0x298B, 0x298C).paren_paren1857,51352 -paren_paren( 0x298B, 0x298C).paren_paren1857,51352 -paren_paren( 0x298C, 0x298B).paren_paren1858,51382 -paren_paren( 0x298C, 0x298B).paren_paren1858,51382 -paren_paren( 0x298D, 0x2990).paren_paren1859,51412 -paren_paren( 0x298D, 0x2990).paren_paren1859,51412 -paren_paren( 0x298E, 0x298F).paren_paren1860,51442 -paren_paren( 0x298E, 0x298F).paren_paren1860,51442 -paren_paren( 0x298F, 0x298E).paren_paren1861,51472 -paren_paren( 0x298F, 0x298E).paren_paren1861,51472 -paren_paren( 0x2990, 0x298D).paren_paren1862,51502 -paren_paren( 0x2990, 0x298D).paren_paren1862,51502 -paren_paren( 0x2991, 0x2992).paren_paren1863,51532 -paren_paren( 0x2991, 0x2992).paren_paren1863,51532 -paren_paren( 0x2992, 0x2991).paren_paren1864,51562 -paren_paren( 0x2992, 0x2991).paren_paren1864,51562 -paren_paren( 0x2993, 0x2994).paren_paren1865,51592 -paren_paren( 0x2993, 0x2994).paren_paren1865,51592 -paren_paren( 0x2994, 0x2993).paren_paren1866,51622 -paren_paren( 0x2994, 0x2993).paren_paren1866,51622 -paren_paren( 0x2995, 0x2996).paren_paren1867,51652 -paren_paren( 0x2995, 0x2996).paren_paren1867,51652 -paren_paren( 0x2996, 0x2995).paren_paren1868,51682 -paren_paren( 0x2996, 0x2995).paren_paren1868,51682 -paren_paren( 0x2997, 0x2998).paren_paren1869,51712 -paren_paren( 0x2997, 0x2998).paren_paren1869,51712 -paren_paren( 0x2998, 0x2997).paren_paren1870,51742 -paren_paren( 0x2998, 0x2997).paren_paren1870,51742 -paren_paren( 0x29D8, 0x29D9).paren_paren1871,51772 -paren_paren( 0x29D8, 0x29D9).paren_paren1871,51772 -paren_paren( 0x29D9, 0x29D8).paren_paren1872,51802 -paren_paren( 0x29D9, 0x29D8).paren_paren1872,51802 -paren_paren( 0x29DA, 0x29DB).paren_paren1873,51832 -paren_paren( 0x29DA, 0x29DB).paren_paren1873,51832 -paren_paren( 0x29DB, 0x29DA).paren_paren1874,51862 -paren_paren( 0x29DB, 0x29DA).paren_paren1874,51862 -paren_paren( 0x29FC, 0x29FD).paren_paren1875,51892 -paren_paren( 0x29FC, 0x29FD).paren_paren1875,51892 -paren_paren( 0x29FD, 0x29FC).paren_paren1876,51922 -paren_paren( 0x29FD, 0x29FC).paren_paren1876,51922 -paren_paren( 0x2E22, 0x2E23).paren_paren1877,51952 -paren_paren( 0x2E22, 0x2E23).paren_paren1877,51952 -paren_paren( 0x2E23, 0x2E22).paren_paren1878,51982 -paren_paren( 0x2E23, 0x2E22).paren_paren1878,51982 -paren_paren( 0x2E24, 0x2E25).paren_paren1879,52012 -paren_paren( 0x2E24, 0x2E25).paren_paren1879,52012 -paren_paren( 0x2E25, 0x2E24).paren_paren1880,52042 -paren_paren( 0x2E25, 0x2E24).paren_paren1880,52042 -paren_paren( 0x2E26, 0x2E27).paren_paren1881,52072 -paren_paren( 0x2E26, 0x2E27).paren_paren1881,52072 -paren_paren( 0x2E27, 0x2E26).paren_paren1882,52102 -paren_paren( 0x2E27, 0x2E26).paren_paren1882,52102 -paren_paren( 0x2E28, 0x2E29).paren_paren1883,52132 -paren_paren( 0x2E28, 0x2E29).paren_paren1883,52132 -paren_paren( 0x2E29, 0x2E28).paren_paren1884,52162 -paren_paren( 0x2E29, 0x2E28).paren_paren1884,52162 -paren_paren( 0x3008, 0x3009).paren_paren1885,52192 -paren_paren( 0x3008, 0x3009).paren_paren1885,52192 -paren_paren( 0x3009, 0x3008).paren_paren1886,52222 -paren_paren( 0x3009, 0x3008).paren_paren1886,52222 -paren_paren( 0x300A, 0x300B).paren_paren1887,52252 -paren_paren( 0x300A, 0x300B).paren_paren1887,52252 -paren_paren( 0x300B, 0x300A).paren_paren1888,52282 -paren_paren( 0x300B, 0x300A).paren_paren1888,52282 -paren_paren( 0x300C, 0x300D).paren_paren1889,52312 -paren_paren( 0x300C, 0x300D).paren_paren1889,52312 -paren_paren( 0x300D, 0x300C).paren_paren1890,52342 -paren_paren( 0x300D, 0x300C).paren_paren1890,52342 -paren_paren( 0x300E, 0x300F).paren_paren1891,52372 -paren_paren( 0x300E, 0x300F).paren_paren1891,52372 -paren_paren( 0x300F, 0x300E).paren_paren1892,52402 -paren_paren( 0x300F, 0x300E).paren_paren1892,52402 -paren_paren( 0x3010, 0x3011).paren_paren1893,52432 -paren_paren( 0x3010, 0x3011).paren_paren1893,52432 -paren_paren( 0x3011, 0x3010).paren_paren1894,52462 -paren_paren( 0x3011, 0x3010).paren_paren1894,52462 -paren_paren( 0x3014, 0x3015).paren_paren1895,52492 -paren_paren( 0x3014, 0x3015).paren_paren1895,52492 -paren_paren( 0x3015, 0x3014).paren_paren1896,52522 -paren_paren( 0x3015, 0x3014).paren_paren1896,52522 -paren_paren( 0x3016, 0x3017).paren_paren1897,52552 -paren_paren( 0x3016, 0x3017).paren_paren1897,52552 -paren_paren( 0x3017, 0x3016).paren_paren1898,52582 -paren_paren( 0x3017, 0x3016).paren_paren1898,52582 -paren_paren( 0x3018, 0x3019).paren_paren1899,52612 -paren_paren( 0x3018, 0x3019).paren_paren1899,52612 -paren_paren( 0x3019, 0x3018).paren_paren1900,52642 -paren_paren( 0x3019, 0x3018).paren_paren1900,52642 -paren_paren( 0x301A, 0x301B).paren_paren1901,52672 -paren_paren( 0x301A, 0x301B).paren_paren1901,52672 -paren_paren( 0x301B, 0x301A).paren_paren1902,52702 -paren_paren( 0x301B, 0x301A).paren_paren1902,52702 -paren_paren( 0xFE59, 0xFE5A).paren_paren1903,52732 -paren_paren( 0xFE59, 0xFE5A).paren_paren1903,52732 -paren_paren( 0xFE5A, 0xFE59).paren_paren1904,52762 -paren_paren( 0xFE5A, 0xFE59).paren_paren1904,52762 -paren_paren( 0xFE5B, 0xFE5C).paren_paren1905,52792 -paren_paren( 0xFE5B, 0xFE5C).paren_paren1905,52792 -paren_paren( 0xFE5C, 0xFE5B).paren_paren1906,52822 -paren_paren( 0xFE5C, 0xFE5B).paren_paren1906,52822 -paren_paren( 0xFE5D, 0xFE5E).paren_paren1907,52852 -paren_paren( 0xFE5D, 0xFE5E).paren_paren1907,52852 -paren_paren( 0xFE5E, 0xFE5D).paren_paren1908,52882 -paren_paren( 0xFE5E, 0xFE5D).paren_paren1908,52882 -paren_paren( 0xFF08, 0xFF09).paren_paren1909,52912 -paren_paren( 0xFF08, 0xFF09).paren_paren1909,52912 -paren_paren( 0xFF09, 0xFF08).paren_paren1910,52942 -paren_paren( 0xFF09, 0xFF08).paren_paren1910,52942 -paren_paren( 0xFF3B, 0xFF3D).paren_paren1911,52972 -paren_paren( 0xFF3B, 0xFF3D).paren_paren1911,52972 -paren_paren( 0xFF3D, 0xFF3B).paren_paren1912,53002 -paren_paren( 0xFF3D, 0xFF3B).paren_paren1912,53002 -paren_paren( 0xFF5B, 0xFF5D).paren_paren1913,53032 -paren_paren( 0xFF5B, 0xFF5D).paren_paren1913,53032 -paren_paren( 0xFF5D, 0xFF5B).paren_paren1914,53062 -paren_paren( 0xFF5D, 0xFF5B).paren_paren1914,53062 -paren_paren( 0xFF5F, 0xFF60).paren_paren1915,53092 -paren_paren( 0xFF5F, 0xFF60).paren_paren1915,53092 -paren_paren( 0xFF60, 0xFF5F).paren_paren1916,53122 -paren_paren( 0xFF60, 0xFF5F).paren_paren1916,53122 -paren_paren( 0xFF62, 0xFF63).paren_paren1917,53152 -paren_paren( 0xFF62, 0xFF63).paren_paren1917,53152 -paren_paren( 0xFF63, 0xFF62).paren_paren1918,53182 -paren_paren( 0xFF63, 0xFF62).paren_paren1918,53182 - -os/console.c,863 -bool Yap_DoPrompt(StreamDesc *s) {Yap_DoPrompt45,1068 -int console_post_process_read_char(int ch, StreamDesc *s) {console_post_process_read_char60,1523 -bool is_same_tty(FILE *f1, FILE *f2) {is_same_tty82,2022 -static Int is_same_tty2(USES_REGS1) { /* 'prompt(Atom) */is_same_tty291,2289 -void Yap_ConsoleOps(StreamDesc *s) {Yap_ConsoleOps102,2777 -static int ConsolePutc(int sno, int ch) {ConsolePutc116,3172 -static int ConsoleGetc(int sno) {ConsoleGetc136,3617 -static Int prompt1(USES_REGS1) { /* prompt1(Atom) */prompt1189,4849 -static Int prompt(USES_REGS1) { /* prompt(Old,New) */prompt210,5441 -static Int ensure_prompting(USES_REGS1) { /* prompt(Old,New) */ensure_prompting234,6104 -int Yap_GetCharForSIGINT(void) {Yap_GetCharForSIGINT241,6271 -void Yap_InitConsole(void) {Yap_InitConsole260,6681 - -os/edio.yap,2369 -see(user) :- !, set_input(user_input).see35,1045 -see(user) :- !, set_input(user_input).see35,1045 -see(user) :- !, set_input(user_input).see35,1045 -see(user) :- !, set_input(user_input).see35,1045 -see(user) :- !, set_input(user_input).see35,1045 -see(F) :- var(F), !,see36,1084 -see(F) :- var(F), !,see36,1084 -see(F) :- var(F), !,see36,1084 -see(F) :- current_input(Stream),see38,1147 -see(F) :- current_input(Stream),see38,1147 -see(F) :- current_input(Stream),see38,1147 -see(F) :- current_stream(_,read,Stream), '$user_file_name'(Stream,F), !,see40,1210 -see(F) :- current_stream(_,read,Stream), '$user_file_name'(Stream,F), !,see40,1210 -see(F) :- current_stream(_,read,Stream), '$user_file_name'(Stream,F), !,see40,1210 -see(Stream) :- '$stream'(Stream), current_stream(_,read,Stream), !,see42,1303 -see(Stream) :- '$stream'(Stream), current_stream(_,read,Stream), !,see42,1303 -see(Stream) :- '$stream'(Stream), current_stream(_,read,Stream), !,see42,1303 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -seeing(File) :- current_input(Stream),seeing53,1521 -seeing(File) :- current_input(Stream),seeing53,1521 -seeing(File) :- current_input(Stream),seeing53,1521 -seen :- current_input(Stream), close(Stream), set_input(user).seen70,1827 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(F) :- var(F), !,tell92,2771 -tell(F) :- var(F), !,tell92,2771 -tell(F) :- var(F), !,tell92,2771 -tell(F) :-tell94,2836 -tell(F) :-tell94,2836 -tell(F) :-tell94,2836 -tell(F) :-tell98,2915 -tell(F) :-tell98,2915 -tell(F) :-tell98,2915 -tell(Stream) :-tell102,3015 -tell(Stream) :-tell102,3015 -tell(Stream) :-tell102,3015 -tell(F) :-tell106,3108 -tell(F) :-tell106,3108 -tell(F) :-tell106,3108 -telling(File) :-telling155,4585 -telling(File) :-telling155,4585 -telling(File) :-telling155,4585 -told :- current_output(Stream),told170,5016 - -os/encoding.h,1780 -#define ENCODING_H ENCODING_H20,617 - ENC_OCTET = 0, /// binary filesENC_OCTET25,677 - ENC_ISO_LATIN1 = 1, /// US+West EuropeENC_ISO_LATIN126,720 - ENC_ISO_ASCII = 2, /// US onlyENC_ISO_ASCII27,765 - ENC_ISO_ANSI = 4, /// Who caresENC_ISO_ANSI28,803 - ENC_ISO_UTF8 = 8, /// Most everyone nowadaysENC_ISO_UTF829,843 - ENC_UTF16_BE = 16, /// People who made a mistakeENC_UTF16_BE30,896 - ENC_UTF16_LE = 32, /// People who made the same mistakeENC_UTF16_LE31,952 - ENC_ISO_UTF32_BE = 64, /// nobodyENC_ISO_UTF32_BE32,1015 - ENC_ISO_UTF32_LE = 128, /// yes, nobodyENC_ISO_UTF32_LE33,1052 - ENC_UCS2_BE = 256, /// nobodyENC_UCS2_BE34,1094 - ENC_UCS2_LE = 512, /// yes, nobodyENC_UCS2_LE35,1131 -} encoding_t;encoding_t36,1173 -#define ENC_WCHAR ENC_WCHAR39,1208 -#define ENC_WCHAR ENC_WCHAR41,1249 - SEQ_ENC_OCTET, /// binary filesSEQ_ENC_OCTET53,1537 - SEQ_ENC_ISO_LATIN1, /// US+West EuropeSEQ_ENC_ISO_LATIN154,1578 - SEQ_ENC_ISO_ASCII, /// US onlySEQ_ENC_ISO_ASCII55,1621 - SEQ_ENC_ISO_ANSI, /// Who caresSEQ_ENC_ISO_ANSI56,1657 - SEQ_ENC_ISO_UTF8, /// Most everyone nowadaysSEQ_ENC_ISO_UTF857,1695 - SEQ_ENC_UTF16_BE, /// People who made a mistakeSEQ_ENC_UTF16_BE58,1746 - SEQ_ENC_UTF16_LE, /// People who made the same mistakeSEQ_ENC_UTF16_LE59,1800 - SEQ_ENC_ISO_UTF32_BE, /// nobodySEQ_ENC_ISO_UTF32_BE60,1861 - SEQ_ENC_ISO_UTF32_LE /// yes, nobodySEQ_ENC_ISO_UTF32_LE61,1896 -} seq_encoding_t;seq_encoding_t62,1936 -static inline seq_encoding_t seq_encoding(encoding_t inp) {seq_encoding65,2004 -static inline const char *enc_name(encoding_t enc) {enc_name97,2649 -static inline encoding_t enc_id(const char *s, encoding_t enc_bom) {enc_id126,3251 - -os/files.c,1216 -static char SccsId[] = "%W% %G%";SccsId18,601 -#define SYSTEM_STAT SYSTEM_STAT30,861 -#define SYSTEM_STAT SYSTEM_STAT32,893 -bool Yap_GetFileName(Term t, char *buf, size_t len, encoding_t enc) {Yap_GetFileName35,926 -static Int file_name_extension(USES_REGS1) {file_name_extension48,1301 -static Int access_path(USES_REGS1) {access_path135,3473 -static Int exists_file(USES_REGS1) {exists_file161,4037 -static Int file_exists(USES_REGS1) {file_exists191,4674 -static Int time_file(USES_REGS1) {time_file220,5338 -static Int file_size(USES_REGS1) {file_size279,6866 -static Int lines_in_file(USES_REGS1) {lines_in_file309,7857 -#define getw getw317,8084 -static Int access_file(USES_REGS1) {access_file329,8267 -static Int exists_directory(USES_REGS1) {exists_directory428,10484 -static Int is_absolute_file_name(USES_REGS1) { /* file_base_name(Stream,N) */is_absolute_file_name454,11093 -static Int file_base_name(USES_REGS1) { /* file_base_name(Stream,N) */file_base_name478,11624 -static Int file_directory_name(USES_REGS1) { /* file_directory_name(Stream,N) */file_directory_name505,12342 -static Int same_file(USES_REGS1) {same_file533,13110 -void Yap_InitFiles(void) {Yap_InitFiles605,15382 - -os/fmem.c,1127 -static char SccsId[] = "%W% %G%";SccsId18,591 - int format_synch(int sno, int sno0, format_info *fg) {format_synch33,768 - bool fill_pads(int sno, int sno0, int total, format_info *fg USES_REGS)fill_pads50,1184 -bool Yap_set_stream_to_buf(StreamDesc *st, const char *buf, size_t nchars) {Yap_set_stream_to_buf111,2738 -int Yap_open_buf_read_stream(const char *buf, size_t nchars, encoding_t *encp,Yap_open_buf_read_stream121,3024 -open_mem_read_stream(USES_REGS1) /* $open_mem_read_stream(+List,-Stream) */open_mem_read_stream150,3853 -int Yap_open_buf_write_stream(encoding_t enc, memBufSource src) {Yap_open_buf_write_stream170,4373 -int Yap_OpenBufWriteStream(USES_REGS1) {Yap_OpenBufWriteStream201,5075 -open_mem_write_stream(USES_REGS1) /* $open_mem_write_stream(-Stream) */open_mem_write_stream208,5224 -char *Yap_MemExportStreamPtr(int sno) {Yap_MemExportStreamPtr230,5838 -static Int peek_mem_write_stream(peek_mem_write_stream240,6066 -void Yap_MemOps(StreamDesc *st) {Yap_MemOps278,7104 -bool Yap_CloseMemoryStream(int sno) {Yap_CloseMemoryStream285,7201 -void Yap_InitMems(void) {Yap_InitMems299,7628 - -os/fmemopen-android.c,1402 -typedef struct fmemcookie {fmemcookie75,3006 - void *storage; /* storage to free on close */storage76,3034 - void *storage; /* storage to free on close */fmemcookie::storage76,3034 - char *buf; /* buffer start */buf77,3082 - char *buf; /* buffer start */fmemcookie::buf77,3082 - size_t pos; /* current position */pos78,3114 - size_t pos; /* current position */fmemcookie::pos78,3114 - size_t eof; /* current file size */eof79,3151 - size_t eof; /* current file size */fmemcookie::eof79,3151 - size_t max; /* maximum file size */max80,3189 - size_t max; /* maximum file size */fmemcookie::max80,3189 - char append; /* nonzero if appending */append81,3227 - char append; /* nonzero if appending */fmemcookie::append81,3227 - char writeonly; /* 1 if write-only */writeonly82,3269 - char writeonly; /* 1 if write-only */fmemcookie::writeonly82,3269 - char saved; /* saved character that lived at pos before write-only NUL */saved83,3309 - char saved; /* saved character that lived at pos before write-only NUL */fmemcookie::saved83,3309 -} fmemcookie;fmemcookie84,3385 -fmemread(void *cookie, char *buf, int n)fmemread89,3531 -fmemwrite(void *cookie, const char *buf, int n)fmemwrite105,3998 -fmemseek(void *cookie, fpos_t pos, int whence)fmemseek156,5524 -fmemclose(void *cookie)fmemclose192,6217 -fmemopen(void *buf, size_t size, const char *mode)fmemopen202,6441 - -os/fmemopen.c,617 -struct fmem {fmem34,991 - size_t pos;pos35,1005 - size_t pos;fmem::pos35,1005 - size_t size;size36,1019 - size_t size;fmem::size36,1019 - char *buffer;buffer37,1034 - char *buffer;fmem::buffer37,1034 -typedef struct fmem fmem_t;fmem_t39,1053 -static int readfn(void *handler, char *buf, int size) {readfn41,1082 -static int writefn(void *handler, const char *buf, int size) {writefn54,1358 -static fpos_t seekfn(void *handler, fpos_t offset, int whence) {seekfn67,1641 -static int closefn(void *handler) {closefn100,2257 -FILE *fmemopen(void *buf, size_t size, const char *mode) {fmemopen105,2325 - -os/fmemopen.h,39 -#define FMEMOPEN_H_FMEMOPEN_H_20,730 - -os/format.c,1083 -static char SccsId[] = "%W% %G%";SccsId18,620 -#define S_ISDIR(S_ISDIR264,5897 -static int format_print_str(Int sno, Int size, Int has_size, Term args,format_print_str273,6024 -static Int format_copy_args(Term args, Term *targs, Int tsz) {format_copy_args310,7100 -format_clean_up(int sno, int sno0, format_info *finf, const unsigned char *fstr,format_clean_up332,7615 -static Int fetch_index_from_args(Term t) {fetch_index_from_args345,7921 -static wchar_t base_dig(Int dig, Int ch) {base_dig358,8116 -#define TMP_STRING_SIZE TMP_STRING_SIZE367,8303 -static Int doformat(volatile Term otail, volatile Term oargs,doformat369,8333 -static Term memStreamToTerm(int output_stream, Functor f, Term inp) {memStreamToTerm999,26667 -static Int with_output_to(USES_REGS1) {with_output_to1067,29152 -static Int format(Term tf, Term tas, Term tout USES_REGS) {format1109,30417 -static Int format2(USES_REGS1) { /* 'format'(Stream,Control,Args) */format21158,31797 -static Int format3(USES_REGS1) {format31169,32092 -void Yap_InitFormat(void) {Yap_InitFormat1175,32218 - -os/format.h,800 -#define FORMAT_MAX_SIZE FORMAT_MAX_SIZE2,1 - Int filler;filler5,48 - Int filler;__anon409::filler5,48 - int phys;phys7,88 - int phys;__anon409::phys7,88 - int log; /* columnn as wide chsh */log9,127 - int log; /* columnn as wide chsh */__anon409::log9,127 -} gap_t;gap_t10,165 -typedef struct format_status {format_status12,175 - gap_t gap[16];gap13,206 - gap_t gap[16];format_status::gap13,206 - int phys_start;phys_start15,245 - int phys_start;format_status::phys_start15,245 - int lstart;lstart17,289 - int lstart;format_status::lstart17,289 - int gapi;gapi18,303 - int gapi;format_status::gapi18,303 -} format_info;format_info19,315 -#define FORMAT_COPY_ARGS_ERROR FORMAT_COPY_ARGS_ERROR21,331 -#define FORMAT_COPY_ARGS_OVERFLOW FORMAT_COPY_ARGS_OVERFLOW22,365 - -os/getw.h,258 -#define utf_cont(utf_cont2,1 -#define encoding_error(encoding_error4,48 -static int post_process_f_weof(StreamDesc *st)post_process_f_weof6,115 -extern int get_wchar(int sno) {get_wchar20,419 -extern int get_wchar_UTF8(int sno) {get_wchar_UTF8234,6629 - -os/iopreds.c,6804 -static char SccsId[] = "%W% %G%";SccsId18,586 -#define strncat(strncat86,1843 -#define strncpy(strncpy89,1906 -#define S_ISDIR(S_ISDIR97,2070 -FILE *Yap_stdin;Yap_stdin107,2212 -FILE *Yap_stdout;Yap_stdout108,2229 -FILE *Yap_stderr;Yap_stderr109,2247 -static Term gethdir(Term t) {gethdir111,2266 -static Term issolutions(Term t) {issolutions136,2739 -static Term is_file_type(Term t) {is_file_type152,3146 -static Term is_file_errors(Term t) {is_file_errors171,3718 -static void unix_upd_stream_info(StreamDesc *s) {unix_upd_stream_info187,4135 -void Yap_DefaultStreamOps(StreamDesc *st) {Yap_DefaultStreamOps247,5704 -static void InitFileIO(StreamDesc *s) {InitFileIO276,6482 -static void InitStdStream(int sno, SMALLUNSGN flags, FILE *file) {InitStdStream281,6565 -Term Yap_StreamUserName(int sno) {Yap_StreamUserName321,7573 -static void InitStdStreams(void) {InitStdStreams332,7795 -void Yap_InitStdStreams(void) { InitStdStreams(); }Yap_InitStdStreams359,8802 -Int PlIOError__(const char *file, const char *function, int lineno,PlIOError__361,8855 -static int eolflg = 1;eolflg385,9487 -static char my_line[200] = {0};my_line387,9511 -static char *lp = my_line;lp388,9543 -FILE *curfile, *Yap_logfile;curfile390,9571 -FILE *curfile, *Yap_logfile;Yap_logfile390,9571 -bool Yap_Option[256];Yap_Option392,9601 -static void InTTYLine(char *line) {InTTYLine396,9637 -void Yap_DebugSetIFile(char *fname) {Yap_DebugSetIFile410,9887 -void Yap_DebugEndline() { *lp = 0; }Yap_DebugEndline420,10100 -int Yap_DebugGetc() {Yap_DebugGetc422,10138 -int Yap_DebugPutc(FILE *s, wchar_t ch) {Yap_DebugPutc443,10552 -int Yap_DebugPuts(FILE *s, const char *sch) {Yap_DebugPuts449,10681 -void Yap_DebugErrorPuts(const char *s) { Yap_DebugPuts(stderr, s); }Yap_DebugErrorPuts455,10817 -void Yap_DebugPlWrite(Term t) {Yap_DebugPlWrite457,10887 -void Yap_DebugPlWriteln(Term t) {Yap_DebugPlWriteln463,11028 -void Yap_DebugErrorPutc(int c) {Yap_DebugErrorPutc472,11299 -void Yap_DebugWriteIndicator(PredEntry *ap) {Yap_DebugWriteIndicator477,11410 -int FilePutc(int sno, int ch) {FilePutc520,12546 -static int NullPutc(int sno, int ch) {NullPutc537,12823 -int ResetEOF(StreamDesc *s) {ResetEOF548,13016 -static int EOFWGetc(int sno) {EOFWGetc573,13776 -static int EOFGetc(int sno) {EOFGetc588,14108 -int console_post_process_eof(StreamDesc *s) {console_post_process_eof605,14502 -int post_process_read_wchar(int ch, size_t n, StreamDesc *s) {post_process_read_wchar618,14811 -int post_process_weof(StreamDesc *s) {post_process_weof641,15266 -int EOFPeek(int sno) { return EOFCHAR; }EOFPeek660,15622 -int EOFWPeek(int sno) { return EOFCHAR; }EOFWPeek662,15664 -int PlGetc(int sno) {PlGetc667,15904 -static inline int get_wchar_from_file(int sno) {get_wchar_from_file673,16012 -#define MB_LEN_MAX MB_LEN_MAX679,16207 -static int handle_write_encoding_error(int sno, wchar_t ch) {handle_write_encoding_error682,16236 -int put_wchar(int sno, wchar_t ch) {put_wchar717,17396 -int Yap_PlGetchar(void) {Yap_PlGetchar841,21346 -int Yap_PlGetWchar(void) {Yap_PlGetWchar847,21477 -int Yap_PlFGetchar(void) {Yap_PlFGetchar853,21610 -Term Yap_MkStream(int n) {Yap_MkStream858,21694 -Int GetStreamFd(int sno) {GetStreamFd865,21861 -Int Yap_GetStreamFd(int sno) { return GetStreamFd(sno); }Yap_GetStreamFd879,22246 -static int binary_file(const char *file_name) {binary_file881,22305 -static int write_bom(int sno, StreamDesc *st) {write_bom900,22661 -static void check_bom(int sno, StreamDesc *st) {check_bom955,24075 -bool Yap_initStream(int sno, FILE *fd, const char *name, Term file_name,Yap_initStream1051,26207 -static bool open_header(int sno, Atom open_mode) {open_header1077,26862 -#define OPEN_DEFS(OPEN_DEFS1106,27590 -#define PAR(PAR1122,28792 -typedef enum open_enum_choices { OPEN_DEFS() } open_choices_t;open_enum_choices1123,28815 -typedef enum open_enum_choices { OPEN_DEFS() } open_choices_t;OPEN_DEFS1123,28815 -typedef enum open_enum_choices { OPEN_DEFS() } open_choices_t;open_choices_t1123,28815 -#undef PARPAR1125,28879 -#define PAR(PAR1127,28891 -static const param_t open_defs[] = {OPEN_DEFS()};open_defs1130,28987 -#undef PARPAR1131,29037 -do_open(Term file_name, Term t2,do_open1134,29060 -static Int open3(USES_REGS1) { /* '$open'(+File,+Mode,?Stream,-ReturnCode) */open31354,35576 -static Int open4(USES_REGS1) { /* '$open'(+File,+Mode,?Stream,-ReturnCode) */open41436,38505 -static Int p_file_expansion(USES_REGS1) { /* '$file_expansion'(+File,-Name) */p_file_expansion1440,38653 -static Int p_open_null_stream(USES_REGS1) {p_open_null_stream1455,39259 -int Yap_OpenStream(FILE *fd, char *name, Term file_name, int flags) {Yap_OpenStream1488,40211 -#define CheckStream(CheckStream1508,40719 -static int CheckStream__(const char *file, const char *f, int line, Term arg,CheckStream__1511,40867 -int Yap_CheckStream__(const char *file, const char *f, int line, Term arg,Yap_CheckStream__1570,42744 -int Yap_CheckTextStream__(const char *file, const char *f, int line, Term arg,Yap_CheckTextStream__1575,42928 -int Yap_CheckBinaryStream__(const char *file, const char *f, int line, Term arg,Yap_CheckBinaryStream__1593,43528 -int Yap_GetFreeStreamDForReading(void) {Yap_GetFreeStreamDForReading1610,44121 -static Int always_prompt_user(USES_REGS1) {always_prompt_user1633,44574 -static Int close1 /** @pred close(+ _S_) is isoclose11641,44749 -#define CLOSE_DEFS(CLOSE_DEFS1665,45348 -#define PAR(PAR1668,45497 -typedef enum close_enum_choices { CLOSE_DEFS() } close_choices_t;close_enum_choices1670,45521 -typedef enum close_enum_choices { CLOSE_DEFS() } close_choices_t;CLOSE_DEFS1670,45521 -typedef enum close_enum_choices { CLOSE_DEFS() } close_choices_t;close_choices_t1670,45521 -#undef PARPAR1672,45588 -#define PAR(PAR1674,45600 -static const param_t close_defs[] = {CLOSE_DEFS()};close_defs1677,45696 -#undef PARPAR1678,45748 -static Int close2(USES_REGS1) { /* '$close'(+GLOBAL_Stream) */close21689,45950 -Term read_line(int sno) {read_line1717,46743 -#define ABSOLUTE_FILE_NAME_DEFS(ABSOLUTE_FILE_NAME_DEFS1729,46963 -#define PAR(PAR1742,47899 -typedef enum ABSOLUTE_FILE_NAME_enum_ {ABSOLUTE_FILE_NAME_enum_1744,47923 - ABSOLUTE_FILE_NAME_DEFS()ABSOLUTE_FILE_NAME_DEFS1745,47963 -} absolute_file_name_choices_t;absolute_file_name_choices_t1746,47991 -#undef PARPAR1748,48024 -#define PAR(PAR1750,48036 -static const param_t absolute_file_name_search_defs[] = {absolute_file_name_search_defs1753,48132 -#undef PARPAR1755,48222 -static Int abs_file_parameters(USES_REGS1) {abs_file_parameters1757,48234 -static Int get_abs_file_parameter(USES_REGS1) {get_abs_file_parameter1821,50790 -void Yap_InitPlIO(void) {Yap_InitPlIO1832,51173 -void Yap_InitIOPreds(void) {Yap_InitIOPreds1847,51520 - -os/iopreds.h,1159 -#define IOPREDS_H IOPREDS_H11,317 -INLINE_ONLY EXTERN inline bool IsStreamTerm(Term t) {IsStreamTerm28,587 -#define Yap_CheckStream(Yap_CheckStream38,959 -#define Yap_CheckTextStream(Yap_CheckTextStream42,1227 -#define Yap_CheckBinaryStream(Yap_CheckBinaryStream47,1508 -static inline StreamDesc *Yap_GetStreamHandle(Term t) {Yap_GetStreamHandle52,1795 -typedef int (*GetsFunc)(int, UInt, char *);GetsFunc87,2726 -static inline Int GetCurInpPos(StreamDesc *inp_stream) {GetCurInpPos93,2885 -#define PlIOError(PlIOError97,2979 -INLINE_ONLY inline EXTERN void count_output_char(int ch, StreamDesc *s) {count_output_char192,6212 -inline static Term StreamName(int i) { return (GLOBAL_Stream[i].user_name); }StreamName216,6853 -inline static Atom StreamFullName(int i) { return (GLOBAL_Stream[i].name); }StreamFullName218,6932 -inline static void console_count_output_char(int ch, StreamDesc *s) {console_count_output_char220,7010 -inline static Term StreamPosition(int sno) {StreamPosition247,7719 -inline static Term CurrentPositionToTerm(void) {CurrentPositionToTerm259,8154 -static inline void freeBuffer(const void *ptr) {freeBuffer277,8630 - -os/mem.c,1280 -static char SccsId[] = "%W% %G%";SccsId18,591 -int format_synch(int sno, int sno0, format_info *fg) {format_synch34,797 - bool fill_pads(int sno, int sno0, int total, format_info *fg USES_REGS) {fill_pads58,1392 -static int MemGetc(int sno) {MemGetc113,2828 -int Yap_MemPeekc(int sno) {Yap_MemPeekc129,3140 -static int MemPutc(int sno, int ch) {MemPutc146,3428 -bool Yap_set_stream_to_buf(StreamDesc *st, const char *buf, size_t nchars) {Yap_set_stream_to_buf183,4570 -int Yap_open_buf_read_stream(const char *buf, size_t nchars, encoding_t *encp,Yap_open_buf_read_stream203,5228 -open_mem_read_stream(USES_REGS1) /* $open_mem_read_stream(+List,-Stream) */open_mem_read_stream238,6255 -int Yap_open_buf_write_stream(encoding_t enc, memBufSource src) {Yap_open_buf_write_stream258,6775 -int Yap_OpenBufWriteStream(USES_REGS1) {Yap_OpenBufWriteStream281,7378 -open_mem_write_stream(USES_REGS1) /* $open_mem_write_stream(-Stream) */open_mem_write_stream288,7527 -char *Yap_MemExportStreamPtr(int sno) {Yap_MemExportStreamPtr310,8141 -static Int peek_mem_write_stream(peek_mem_write_stream317,8320 -void Yap_MemOps(StreamDesc *st) {Yap_MemOps353,9308 -bool Yap_CloseMemoryStream(int sno) {Yap_CloseMemoryStream358,9403 -void Yap_InitMems(void) {Yap_InitMems371,9769 - -os/open_memstream.c,1177 -# define INITIAL_ALLOC INITIAL_ALLOC40,1129 -struct datadata42,1156 - char **buf; /* User's argument. */buf44,1170 - char **buf; /* User's argument. */data::buf44,1170 - size_t *len; /* User's argument. Smaller of pos or eof. */len45,1208 - size_t *len; /* User's argument. Smaller of pos or eof. */data::len45,1208 - size_t pos; /* Current position. */pos46,1271 - size_t pos; /* Current position. */data::pos46,1271 - size_t eof; /* End-of-file position. */eof47,1310 - size_t eof; /* End-of-file position. */data::eof47,1310 - size_t allocated; /* Allocated size of *buf, always > eof. */allocated48,1353 - size_t allocated; /* Allocated size of *buf, always > eof. */data::allocated48,1353 - char c; /* Temporary storage for byte overwritten by NUL, if pos < eof. */c49,1418 - char c; /* Temporary storage for byte overwritten by NUL, if pos < eof. */data::c49,1418 -typedef struct data data;data51,1499 -mem_write (void *c, const char *buf, int n)mem_write58,1695 -mem_seek (void *c, fpos_t pos, int whence)mem_seek103,3115 -mem_close (void *c)mem_close143,3927 -open_memstream (char **buf, size_t *len)open_memstream157,4157 - -os/pipes.c,486 -static char SccsId[] = "%W% %G%";SccsId18,600 -#define S_ISDIR(S_ISDIR47,1046 -ConsolePipePutc (int sno, int ch)ConsolePipePutc65,1371 -PipePutc (int sno, int ch)PipePutc93,1937 -ConsolePipeGetc(int sno)ConsolePipeGetc126,2648 -PipeGetc(int sno)PipeGetc165,3600 -Yap_PipeOps( StreamDesc *st )Yap_PipeOps190,4086 -Yap_ConsolePipeOps( StreamDesc *st )Yap_ConsolePipeOps197,4186 -open_pipe_stream (USES_REGS1)open_pipe_stream204,4313 -Yap_InitPipes( void )Yap_InitPipes258,5760 - -os/random.c,450 -#define S_ISDIR(S_ISDIR22,334 -unsigned int current_seed;current_seed37,544 -Yap_random (void)Yap_random43,604 -p_init_random_state ( USES_REGS1 )p_init_random_state61,994 -p_set_random_state ( USES_REGS1 )p_set_random_state85,1617 -p_release_random_state ( USES_REGS1 )p_release_random_state102,1935 -Srandom ( USES_REGS1 )Srandom120,2211 -Yap_InitRandom (void)Yap_InitRandom152,2878 -Yap_InitRandomPreds (void)Yap_InitRandomPreds165,3091 - -os/readline.c,1987 -static char SccsId[] = "%W% %G%";SccsId18,596 -#define S_ISDIR(S_ISDIR48,1073 -static const char *history_file;history_file61,1269 -#define READLINE_OUT_BUF_MAX READLINE_OUT_BUF_MAX63,1303 -typedef struct scan_atoms {scan_atoms65,1337 - Int pos;pos66,1365 - Int pos;scan_atoms::pos66,1365 - Atom atom;atom67,1376 - Atom atom;scan_atoms::atom67,1376 -} scan_atoms_t;scan_atoms_t68,1389 -static char *atom_enumerate(const char *prefix, int state) {atom_enumerate70,1406 -static char *atom_generator(const char *prefix, int state) {atom_generator117,2592 -typedef struct chain {chain131,2853 - struct chain *next;next132,2876 - struct chain *next;chain::next132,2876 - char data[2];data133,2898 - char data[2];chain::data133,2898 -} chain_t;chain_t134,2914 -static char *predicate_enumerate(const char *prefix, int state) {predicate_enumerate136,2926 -static char *predicate_generator(const char *prefix, int state) {predicate_generator187,4213 -static char **prolog_completion(const char *text, int start, int end) {prolog_completion201,4484 -void Yap_ReadlineFlush(int sno) {Yap_ReadlineFlush247,5800 -bool Yap_readline_clear_pending_input(StreamDesc *s) { Yap_readline_clear_pending_input254,5964 -bool Yap_ReadlineOps(StreamDesc *s) {Yap_ReadlineOps263,6168 -static int prolog_complete(int ignore, int key) {prolog_complete274,6475 -bool Yap_InitReadline(Term enable) {Yap_InitReadline293,7012 -static bool getLine(int inp) {getLine333,8213 -static int ReadlineGetc(int sno) {ReadlineGetc379,9567 -Int Yap_ReadlinePeekChar(int sno) {Yap_ReadlinePeekChar406,10234 -int Yap_ReadlineForSIGINT(void) {Yap_ReadlineForSIGINT435,10725 -static Int has_readline(USES_REGS1) {has_readline462,11336 -void Yap_InitReadlinePreds(void) {Yap_InitReadlinePreds473,11478 -bool Yap_InitReadline(Term enable) {Yap_InitReadline479,11620 -void Yap_InitReadlinePreds(void) {}Yap_InitReadlinePreds483,11716 -void Yap_CloseReadline(void) {Yap_CloseReadline486,11760 - -os/readterm.c,8190 -static char SccsId[] = "%W% %G%";SccsId19,611 -#define strncat(strncat77,1657 -#define strncpy(strncpy80,1720 -#define S_ISDIR(S_ISDIR88,1884 -#define SYSTEM_STAT SYSTEM_STAT94,2005 -#define SYSTEM_STAT SYSTEM_STAT96,2037 -static void clean_vars(VarEntry *p) {clean_vars101,2135 -#undef PARPAR109,2281 -static Int qq_open(USES_REGS1) {qq_open121,2574 -static int parse_quasi_quotations(ReadData _PL_rd ARG_LD) {parse_quasi_quotations150,3304 -#define READ_DEFS(READ_DEFS185,4277 -#define PAR(PAR199,5312 -typedef enum open_enum_choices { READ_DEFS() } read_choices_t;open_enum_choices201,5336 -typedef enum open_enum_choices { READ_DEFS() } read_choices_t;READ_DEFS201,5336 -typedef enum open_enum_choices { READ_DEFS() } read_choices_t;read_choices_t201,5336 -#undef PARPAR203,5400 -#define PAR(PAR205,5412 -static const param_t read_defs[] = {READ_DEFS()};read_defs208,5508 -#undef PARPAR209,5558 -static Term add_output(Term t, Term tail) {add_output211,5570 -static Term add_names(Term t, Term tail) {add_names221,5870 -static Term add_priority(Term t, Term tail) {add_priority231,6176 -static Term syntax_error(TokEntry *errtok, int sno, Term cmod) {syntax_error250,6619 -Term Yap_syntax_error(TokEntry *errtok, int sno) {Yap_syntax_error327,8621 -typedef struct FEnv {FEnv331,8726 - Term qq, tp, sp, np, vp, ce;qq332,8748 - Term qq, tp, sp, np, vp, ce;FEnv::qq332,8748 - Term qq, tp, sp, np, vp, ce;tp332,8748 - Term qq, tp, sp, np, vp, ce;FEnv::tp332,8748 - Term qq, tp, sp, np, vp, ce;sp332,8748 - Term qq, tp, sp, np, vp, ce;FEnv::sp332,8748 - Term qq, tp, sp, np, vp, ce;np332,8748 - Term qq, tp, sp, np, vp, ce;FEnv::np332,8748 - Term qq, tp, sp, np, vp, ce;vp332,8748 - Term qq, tp, sp, np, vp, ce;FEnv::vp332,8748 - Term qq, tp, sp, np, vp, ce;ce332,8748 - Term qq, tp, sp, np, vp, ce;FEnv::ce332,8748 - Term tpos; /// initial position of the term to be read.tpos333,8779 - Term tpos; /// initial position of the term to be read.FEnv::tpos333,8779 - Term t, t0; /// the output termt334,8847 - Term t, t0; /// the output termFEnv::t334,8847 - Term t, t0; /// the output termt0334,8847 - Term t, t0; /// the output termFEnv::t0334,8847 - TokEntry *tokstart; /// the token listtokstart335,8890 - TokEntry *tokstart; /// the token listFEnv::tokstart335,8890 - TokEntry *toklast; /// the last tokentoklast336,8932 - TokEntry *toklast; /// the last tokenFEnv::toklast336,8932 - CELL *old_H; /// initial H, will be reset on stack overflow.old_H337,8974 - CELL *old_H; /// initial H, will be reset on stack overflow.FEnv::old_H337,8974 - tr_fr_ptr old_TR; /// initial TRold_TR338,9045 - tr_fr_ptr old_TR; /// initial TRFEnv::old_TR338,9045 - xarg *args; /// input argsargs339,9083 - xarg *args; /// input argsFEnv::args339,9083 - bool reading_clause; /// read_clausereading_clause340,9121 - bool reading_clause; /// read_clauseFEnv::reading_clause340,9121 - size_t nargs; /// arity of current procedurenargs341,9160 - size_t nargs; /// arity of current procedureFEnv::nargs341,9160 - encoding_t enc; /// encoding of the stream being readenc342,9214 - encoding_t enc; /// encoding of the stream being readFEnv::enc342,9214 - Term tcomms; /// Access to commentstcomms343,9275 - Term tcomms; /// Access to commentsFEnv::tcomms343,9275 - Term cmod; /// Access to commentscmod344,9321 - Term cmod; /// Access to commentsFEnv::cmod344,9321 -} FEnv;FEnv345,9367 -typedef struct renv {renv347,9376 - Term bq;bq348,9398 - Term bq;renv::bq348,9398 - bool ce, sw;ce349,9409 - bool ce, sw;renv::ce349,9409 - bool ce, sw;sw349,9409 - bool ce, sw;renv::sw349,9409 - Term sy;sy350,9424 - Term sy;renv::sy350,9424 - UInt cpos;cpos351,9435 - UInt cpos;renv::cpos351,9435 - fpos_t rpos;rpos353,9465 - fpos_t rpos;renv::rpos353,9465 - int prio;prio355,9487 - int prio;renv::prio355,9487 - int ungetc_oldc;ungetc_oldc356,9499 - int ungetc_oldc;renv::ungetc_oldc356,9499 - int had_ungetc;had_ungetc357,9518 - int had_ungetc;renv::had_ungetc357,9518 - bool seekable;seekable358,9536 - bool seekable;renv::seekable358,9536 -} REnv;REnv359,9553 -static xarg *setReadEnv(Term opts, FEnv *fe, struct renv *re, int inp_stream) {setReadEnv363,9677 - YAP_START_PARSING, /// initializationYAP_START_PARSING455,12161 - YAP_SCANNING, /// input to list of tokensYAP_SCANNING456,12202 - YAP_SCANNING_ERROR, /// serious error (eg oom); trying error handling, followdYAP_SCANNING_ERROR457,12252 - YAP_PARSING, /// list of tokens to termYAP_PARSING459,12388 - YAP_PARSING_ERROR, /// oom or syntax errorYAP_PARSING_ERROR460,12437 - YAP_PARSING_FINISHED /// exit parserYAP_PARSING_FINISHED461,12483 -} parser_state_t;parser_state_t462,12522 -Int Yap_FirstLineInParse(void) {Yap_FirstLineInParse464,12541 -#define PUSHFET(PUSHFET469,12621 -#define POPFET(POPFET470,12654 -static void reset_regs(TokEntry *tokstart, FEnv *fe) {reset_regs472,12687 -static Term get_variables(FEnv *fe, TokEntry *tokstart) {get_variables500,13227 -static Term get_varnames(FEnv *fe, TokEntry *tokstart) {get_varnames524,13705 -static Term get_singletons(FEnv *fe, TokEntry *tokstart) {get_singletons548,14169 -static void warn_singletons(FEnv *fe, TokEntry *tokstart) {warn_singletons571,14627 -static Term get_stream_position(FEnv *fe, TokEntry *tokstart) {get_stream_position593,15304 -static bool complete_processing(FEnv *fe, TokEntry *tokstart) {complete_processing616,15737 -static bool complete_clause_processing(FEnv *fe, TokEntry *tokstart) {complete_clause_processing655,16678 -static parser_state_t scanEOF(FEnv *fe, int inp_stream) {scanEOF703,18097 -static parser_state_t initParser(Term opts, FEnv *fe, REnv *re, int inp_stream,initParser745,19525 -static parser_state_t scan(REnv *re, FEnv *fe, int inp_stream) {scan780,20595 -static parser_state_t scanError(REnv *re, FEnv *fe, int inp_stream) {scanError811,21434 -static parser_state_t parseError(REnv *re, FEnv *fe, int inp_stream) {parseError851,22717 -static parser_state_t parse(REnv *re, FEnv *fe, int inp_stream) {parse877,23540 -Term Yap_read_term(int inp_stream, Term opts, bool clause) {Yap_read_term907,24325 - read_term2(USES_REGS1) { /* '$read'(+Flag,?Term,?Module,?Vars,-Pos,-Err) */read_term2965,25714 -static Int read_term(read_term970,25888 -#define READ_CLAUSE_DEFS(READ_CLAUSE_DEFS986,26330 -#define PAR(PAR996,27016 -typedef enum read_clause_enum_choices {read_clause_enum_choices998,27040 - READ_CLAUSE_DEFS()READ_CLAUSE_DEFS999,27080 -} read_clause_choices_t;read_clause_choices_t1000,27101 -#undef PARPAR1002,27127 -#define PAR(PAR1004,27139 -static const param_t read_clause_defs[] = {READ_CLAUSE_DEFS()};read_clause_defs1007,27235 -#undef PARPAR1008,27299 -static xarg *setClauseReadEnv(Term opts, FEnv *fe, struct renv *re,setClauseReadEnv1010,27311 -static Int read_clause2(USES_REGS1) {read_clause21087,29361 -static Int read_clause(read_clause1115,30311 -static Int source_location(USES_REGS1) {source_location1187,32438 -static Int read2(read21202,32790 -static Int read1(read11227,33659 -static Int fileerrors(USES_REGS1) {fileerrors1239,34021 -static Int nofileerrors(nofileerrors1252,34363 -static Int style_checker(USES_REGS1) {style_checker1257,34518 -Term Yap_BufferToTerm(const unsigned char *s, size_t len, Term opts) {Yap_BufferToTerm1301,36090 -X_API Term Yap_BufferToTermWithPrioBindings(const unsigned char *s, size_t len,Yap_BufferToTermWithPrioBindings1312,36354 -static Int read_term_from_atom(USES_REGS1) {read_term_from_atom1344,37287 -static Int read_term_from_atomic(USES_REGS1) {read_term_from_atomic1381,38234 -static Int read_term_from_string(USES_REGS1) {read_term_from_string1413,39171 -static Int atomic_to_term(USES_REGS1) {atomic_to_term1437,39837 -static Int atom_to_term(USES_REGS1) {atom_to_term1455,40395 -static Int string_to_term(USES_REGS1) {string_to_term1473,40947 -void Yap_InitReadTPreds(void) {Yap_InitReadTPreds1490,41459 - -os/readutil.c,570 -static char SccsId[] = "%W% %G%";SccsId18,590 -static Int rl_to_codes(Term TEnd, int do_as_binary, int arity USES_REGS) {rl_to_codes31,799 -static Int read_line_to_codes(USES_REGS1) {read_line_to_codes118,3392 -static Int read_line_to_codes2(USES_REGS1) {read_line_to_codes2122,3490 -static Int read_line_to_string(USES_REGS1) {read_line_to_string126,3588 -static Int read_stream_to_codes(USES_REGS1) {read_stream_to_codes210,5961 -static Int read_stream_to_terms(USES_REGS1) {read_stream_to_terms252,7189 -void Yap_InitReadUtil(void) {Yap_InitReadUtil290,8149 - -os/sig.c,3173 -#define SIG_PROLOG_OFFSET SIG_PROLOG_OFFSET15,184 -#define SIG_EXCEPTION SIG_EXCEPTION17,244 -#define SIG_ATOM_GC SIG_ATOM_GC19,306 -#define SIG_GC SIG_GC21,357 -#define SIG_THREAD_SIGNAL SIG_THREAD_SIGNAL23,410 -#define SIG_FREECLAUSES SIG_FREECLAUSES25,467 -#define SIG_PLABORT SIG_PLABORT26,515 -static struct signame {signame28,560 - int sig;sig29,584 - int sig;signame::sig29,584 - const char *name;name30,595 - const char *name;signame::name30,595 - int flags;flags31,615 - int flags;signame::flags31,615 -} signames[] = {signames32,628 -static void my_signal_info(int sig, void *handler) {my_signal_info123,2206 -static void my_signal(int sig, void *handler) {my_signal133,2419 -static void my_signal(int sig, void *handler) {my_signal144,2632 -static void my_signal_info(int sig, void *handler) {my_signal_info150,2730 -static void HandleMatherr(int sig, void *sipv, void *uapv) {HandleMatherr159,2877 -int Yap_signal_index(const char *name) {Yap_signal_index167,3142 -static void SearchForTrailFault(void *ptr, int sure) {SearchForTrailFault187,3519 -static void HandleSIGSEGV(int sig, void *sipv, void *uap) {HandleSIGSEGV215,4598 -static bool set_fpu_exceptions(Term flag) {set_fpu_exceptions242,5326 -static void ReceiveSignal(int s, void *x, void *y) {ReceiveSignal317,7692 -static BOOL WINAPI MSCHandleSignal(DWORD dwCtrlType) {MSCHandleSignal381,9302 -static DWORD WINAPI DoTimerThread(LPVOID targ) {DoTimerThread411,9892 -static Int enable_interrupts(USES_REGS1) {enable_interrupts438,10659 -static Int disable_interrupts(USES_REGS1) {disable_interrupts448,10920 -static Int alarm4(USES_REGS1) {alarm4454,11045 -static Int virtual_alarm(USES_REGS1) {virtual_alarm549,13650 -int vax_absmi_fp;vax_absmi_fp629,15975 - int eh;eh632,16011 - int eh;__anon411::eh632,16011 - int flgs;flgs633,16021 - int flgs;__anon411::flgs633,16021 - int ap;ap634,16033 - int ap;__anon411::ap634,16033 - int fp;fp635,16043 - int fp;__anon411::fp635,16043 - int pc;pc636,16053 - int pc;__anon411::pc636,16053 - int dummy1;dummy1637,16063 - int dummy1;__anon411::dummy1637,16063 - int dummy2;dummy2638,16077 - int dummy2;__anon411::dummy2638,16077 - int dummy3;dummy3639,16091 - int dummy3;__anon411::dummy3639,16091 - int oldfp;oldfp640,16105 - int oldfp;__anon411::oldfp640,16105 - int dummy4;dummy4641,16118 - int dummy4;__anon411::dummy4641,16118 - int dummy5;dummy5642,16132 - int dummy5;__anon411::dummy5642,16132 - int dummy6;dummy6643,16146 - int dummy6;__anon411::dummy6643,16146 - int oldpc;oldpc644,16160 - int oldpc;__anon411::oldpc644,16160 - * VaxFramePtr;VaxFramePtr647,16176 -VaxFixFrame(dummy) {VaxFixFrame649,16196 -int WINAPI win_yap(HANDLE hinst, DWORD reason, LPVOID reserved) {win_yap668,16572 -void rw_lock_voodoo(void) {rw_lock_voodoo687,16949 -yap_error_number Yap_MathException__(USES_REGS1) {Yap_MathException__746,19609 -void Yap_InitOSSignals(int wid) {Yap_InitOSSignals819,21599 -bool Yap_set_fpu_exceptions(Term flag) { return set_fpu_exceptions(flag); }Yap_set_fpu_exceptions851,22476 -void Yap_InitSignalPreds(void) {Yap_InitSignalPreds853,22553 - -os/sockets.c,999 -static char SccsId[] = "%W% %G%";SccsId18,602 -#define S_ISDIR(S_ISDIR47,1050 -Yap_SocketOps( StreamDesc *st )Yap_SocketOps59,1294 -Yap_ConsoleSocketOps( StreamDesc *st )Yap_ConsoleSocketOps66,1400 -Yap_socketStream( StreamDesc *s )Yap_socketStream73,1527 -SocketGetc(int sno)SocketGetc92,1946 -ConsoleSocketGetc(int sno)ConsoleSocketGetc127,2754 -ConsoleSocketPutc (int sno, int ch)ConsoleSocketPutc166,3740 -SocketPutc (int sno, int ch)SocketPutc192,4302 -Yap_CheckIOStream(Term stream, char * error)Yap_CheckIOStream225,5004 -Yap_InitSocketStream(int fd, socket_info flags, socket_domain domain) {Yap_InitSocketStream233,5207 -Yap_CheckSocketStream(Term stream, const char * error)Yap_CheckSocketStream267,6186 -Yap_GetSocketDomain(int sno)Yap_GetSocketDomain276,6433 -Yap_GetSocketStatus(int sno)Yap_GetSocketStatus283,6582 -Yap_UpdateSocketStream(int sno, socket_info flags, socket_domain domain) {Yap_UpdateSocketStream290,6728 -Yap_InitSockets( void )Yap_InitSockets307,7167 - -os/stream.h,4709 -static char SccsId[] = "%W% %G%";SccsId10,292 -#undef HAVE_FMEMOPENHAVE_FMEMOPEN14,350 -#undef HAVE_OPEN_MEMSTREAMHAVE_OPEN_MEMSTREAM15,371 -#undef MAY_WRITEMAY_WRITE19,417 -#undef MAY_READMAY_READ20,434 -typedef struct mem_desc {mem_desc23,458 - char *buf; /* where the file is being read from/written to */buf24,484 - char *buf; /* where the file is being read from/written to */mem_desc::buf24,484 - int src; /* where the space comes from, 0 code space, 1 malloc */src25,551 - int src; /* where the space comes from, 0 code space, 1 malloc */mem_desc::src25,551 - Int max_size; /* maximum buffer size (may be changed dynamically) */max_size26,624 - Int max_size; /* maximum buffer size (may be changed dynamically) */mem_desc::max_size26,624 - UInt pos; /* cursor */pos27,695 - UInt pos; /* cursor */mem_desc::pos27,695 - volatile void *error_handler;error_handler28,724 - volatile void *error_handler;mem_desc::error_handler28,724 -} memHandle;memHandle29,756 -typedef struct stream_desc {stream_desc31,770 - Atom name;name32,799 - Atom name;stream_desc::name32,799 - Term user_name;user_name33,812 - Term user_name;stream_desc::user_name33,812 - FILE *file;file34,830 - FILE *file;stream_desc::file34,830 - char *nbuf;nbuf36,874 - char *nbuf;stream_desc::nbuf36,874 - size_t nsize;nsize37,888 - size_t nsize;stream_desc::nsize37,888 -#define PLGETC_BUF_SIZE PLGETC_BUF_SIZE40,927 - unsigned char *buf, *ptr;buf41,956 - unsigned char *buf, *ptr;stream_desc::__anon412::__anon413::buf41,956 - unsigned char *buf, *ptr;ptr41,956 - unsigned char *buf, *ptr;stream_desc::__anon412::__anon413::ptr41,956 - int left;left42,988 - int left;stream_desc::__anon412::__anon413::left42,988 - } file;file43,1004 - } file;stream_desc::__anon412::file43,1004 - memHandle mem_string;mem_string44,1016 - memHandle mem_string;stream_desc::__anon412::mem_string44,1016 - int fd;fd46,1055 - int fd;stream_desc::__anon412::__anon414::fd46,1055 - } pipe;pipe47,1069 - } pipe;stream_desc::__anon412::pipe47,1069 - socket_domain domain;domain50,1110 - socket_domain domain;stream_desc::__anon412::__anon415::domain50,1110 - socket_info flags;flags51,1138 - socket_info flags;stream_desc::__anon412::__anon415::flags51,1138 - int fd;fd52,1163 - int fd;stream_desc::__anon412::__anon415::fd52,1163 - } socket;socket53,1177 - } socket;stream_desc::__anon412::socket53,1177 - const unsigned char *buf, *ptr;buf56,1211 - const unsigned char *buf, *ptr;stream_desc::__anon412::__anon416::buf56,1211 - const unsigned char *buf, *ptr;ptr56,1211 - const unsigned char *buf, *ptr;stream_desc::__anon412::__anon416::ptr56,1211 - } irl;irl57,1249 - } irl;stream_desc::__anon412::irl57,1249 - } u;u58,1260 - } u;stream_desc::u58,1260 - Int charcount, linecount, linepos;charcount60,1268 - Int charcount, linecount, linepos;stream_desc::charcount60,1268 - Int charcount, linecount, linepos;linecount60,1268 - Int charcount, linecount, linepos;stream_desc::linecount60,1268 - Int charcount, linecount, linepos;linepos60,1268 - Int charcount, linecount, linepos;stream_desc::linepos60,1268 - stream_flags_t status;status61,1305 - stream_flags_t status;stream_desc::status61,1305 - lockvar streamlock; /* protect stream access */streamlock63,1369 - lockvar streamlock; /* protect stream access */stream_desc::streamlock63,1369 - int (*stream_putc)(stream_putc65,1426 - int (*stream_putc)(stream_desc::stream_putc65,1426 - int (*stream_wputc)(stream_wputc67,1524 - int (*stream_wputc)(stream_desc::stream_wputc67,1524 - int (*stream_getc)(int); /** function the stream uses for reading an octet. */stream_getc69,1624 - int (*stream_getc)(int); /** function the stream uses for reading an octet. */stream_desc::stream_getc69,1624 - int (*stream_wgetc)(stream_wgetc70,1705 - int (*stream_wgetc)(stream_desc::stream_wgetc70,1705 - struct vfs *vfs; /** stream belongs to a space */vfs72,1805 - struct vfs *vfs; /** stream belongs to a space */stream_desc::vfs72,1805 - void *vfs_handle; /** direct handle to stream in that space. */vfs_handle73,1858 - void *vfs_handle; /** direct handle to stream in that space. */stream_desc::vfs_handle73,1858 - int (*stream_wgetc_for_read)(stream_wgetc_for_read74,1924 - int (*stream_wgetc_for_read)(stream_desc::stream_wgetc_for_read74,1924 - encoding_t encoding; /** current encoding for stream */encoding77,2096 - encoding_t encoding; /** current encoding for stream */stream_desc::encoding77,2096 -} StreamDesc;StreamDesc78,2154 - -os/streams.c,5568 -static char SccsId[] = "%W% %G%";SccsId18,601 -#define strncat(strncat83,1730 -#define strncpy(strncpy86,1793 -#define S_ISDIR(S_ISDIR94,1957 -#define SYSTEM_STAT SYSTEM_STAT100,2078 -#define SYSTEM_STAT SYSTEM_STAT103,2133 -FILE *Yap_GetInputStream(Term t, const char *msg) {Yap_GetInputStream108,2201 -FILE *Yap_GetOutputStream(Term t, const char *msg) {Yap_GetOutputStream121,2527 -int GetFreeStreamD(void) {GetFreeStreamD133,2831 -int Yap_GetFreeStreamD(void) { return GetFreeStreamD(); }Yap_GetFreeStreamD152,3250 - static bool clearInput(int sno)clearInput157,3320 -static Int clear_input( USES_REGS1 )clear_input173,3739 -static Term lineCount(int sno) {lineCount182,3982 -static Int stream_flags(USES_REGS1) { /* '$stream_flags'(+N,-Flags) */stream_flags214,4978 -static Int p_check_stream(USES_REGS1) { /* '$check_stream'(Stream,Mode) */p_check_stream223,5261 -static Int p_check_if_stream(USES_REGS1) { /* '$check_stream'(Stream) */p_check_if_stream233,5577 -is_input(int sno USES_REGS) { /* '$set_output'(+Stream,-ErrorMessage) */is_input243,5933 -is_output(int sno USES_REGS) { /* '$set_output'(+Stream,-ErrorMessage) */is_output249,6090 -has_bom(int sno, Term t2 USES_REGS) { /* '$set_output'(+Stream,-ErrorMessage) */has_bom255,6268 -has_reposition(int sno,has_reposition269,6667 -char *Yap_guessFileName(FILE *file, int sno, char *nameb, size_t max) {Yap_guessFileName283,7085 -static Int representation_error(int sno, Term t2 USES_REGS) {representation_error325,8016 -static Int file_name(int sno, Term t2 USES_REGS) {file_name341,8477 -static Int file_no(int sno, Term t2 USES_REGS) {file_no345,8601 -static bool SetCloseOnAbort(int sno, bool close) {SetCloseOnAbort354,8812 -static Int has_close_on_abort(has_close_on_abort363,9034 -has_encoding(int sno,has_encoding377,9418 -found_eof(int sno,found_eof384,9645 -stream_mode(int sno,stream_mode399,10115 -stream_tty(int sno,stream_tty416,10642 -stream_type(int sno,stream_type428,10984 -stream_position(int sno,stream_position440,11335 -static bool stream_line_count(stream_line_count446,11509 -static bool stream_line_number(stream_line_number452,11681 -SetBuffering(int sno, Atom at) { /* '$set_bufferingt'(+Stream,-ErrorMessage) */SetBuffering459,11895 -static bool SetBuffer(int sno,SetBuffer481,12777 -eof_action(int sno,eof_action491,13095 -#define STREAM_PROPERTY_DEFS(STREAM_PROPERTY_DEFS508,13576 -#define PAR(PAR530,15238 -typedef enum stream_property_enum_choices {stream_property_enum_choices532,15262 - STREAM_PROPERTY_DEFS()STREAM_PROPERTY_DEFS533,15306 -} stream_property_choices_t;stream_property_choices_t534,15331 -#undef PARPAR536,15361 -#define PAR(PAR538,15373 -static const param_t stream_property_defs[] = {STREAM_PROPERTY_DEFS()};stream_property_defs541,15469 -#undef PARPAR542,15541 -static bool do_stream_property(int sno,do_stream_property544,15553 -static xarg *generate_property(int sno, Term t2,generate_property632,18663 -static Int cont_stream_property(USES_REGS1) { /* current_stream */cont_stream_property645,19160 -static Int stream_property(USES_REGS1) { /* Init current_stream */stream_property721,21190 -#define SET_STREAM_DEFS(SET_STREAM_DEFS770,22690 -#define PAR(PAR785,23816 -typedef enum set_stream_enum_choices {set_stream_enum_choices787,23840 - SET_STREAM_DEFS()SET_STREAM_DEFS788,23879 -} set_stream_enum_choices_t;set_stream_enum_choices_t789,23899 -#undef PARPAR791,23929 -#define PAR(PAR793,23941 -static const param_t set_stream_defs[] = {SET_STREAM_DEFS()};set_stream_defs796,24037 -#undef PARPAR797,24099 -static bool do_set_stream(int sno,do_set_stream799,24111 -static Int set_stream(USES_REGS1) { /* Init current_stream */set_stream909,28114 -void Yap_CloseStreams(int loud) {Yap_CloseStreams923,28507 -static void CloseStream(int sno) {CloseStream934,28720 -void Yap_CloseStream(int sno) { CloseStream(sno); }Yap_CloseStream968,29819 -void Yap_ReleaseStream(int sno) {Yap_ReleaseStream970,29872 -static Int current_input(USES_REGS1) { /* current_input(?Stream) */current_input988,30388 -static Int set_input(USES_REGS1) { /* '$show_stream_position'(+Stream,Pos) */set_input1011,31069 -static Int current_output(USES_REGS1) { /* current_output(?Stream) */current_output1020,31335 -static Int set_output(USES_REGS1) { /* '$show_stream_position'(+Stream,Pos) */set_output1043,32024 -static Int p_user_file_name(USES_REGS1) {p_user_file_name1055,32320 -static Int p_file_name(USES_REGS1) {p_file_name1067,32666 -static Int line_count(USES_REGS1) { /* '$current_line_number'(+Stream,-N) */line_count1088,33296 -static Int line_position(USES_REGS1) { /* '$line_position'(+Stream,-N) */line_position1099,33632 -static Int character_count(USES_REGS1) { /* '$character_count'(+Stream,-N) */character_count1122,34370 - p_show_stream_flags(USES_REGS1) { /* '$show_stream_flags'(+Stream,Pos) */p_show_stream_flags1148,35237 -Term Yap_StreamPosition(int sno) { return StreamPosition(sno); }Yap_StreamPosition1160,35624 -static Int p_show_stream_position(p_show_stream_position1162,35690 - set_stream_position(USES_REGS1) { /* '$set_stream_position'(+Stream,Pos) */set_stream_position1176,36087 -static Int p_stream_select(USES_REGS1) {p_stream_select1274,39795 -Int Yap_StreamToFileNo(Term t) {Yap_StreamToFileNo1395,42911 -static Int p_stream(USES_REGS1) {p_stream1415,43571 -FILE *Yap_FileDescriptorFromStream(Term t) {Yap_FileDescriptorFromStream1426,43835 -Yap_InitBackIO (Yap_InitBackIO1443,44272 -void Yap_InitIOStreams(void) {Yap_InitIOStreams1451,44439 - -os/sysbits.c,5362 -static char SccsId[] = "%W% %G%";SccsId18,586 -static void FileError(yap_error_number type, Term where, const char *format,FileError24,673 -static char *getFileNameBuffer(void) {getFileNameBuffer38,1003 -static void freeFileNameBuffer(char *s) { Yap_FreeCodeSpace(s); }freeFileNameBuffer43,1093 -void Yap_WinError(char *yap_error) {Yap_WinError63,1617 -#define is_valid_env_char(is_valid_env_char73,2008 -static bool is_directory(const char *FileName) {is_directory78,2257 -bool Yap_Exists(const char *f) {Yap_Exists104,2858 -static int dir_separator(int ch) {dir_separator131,3454 -int Yap_dir_separator(int ch) { return dir_separator(ch); }Yap_dir_separator143,3693 -char *libdir = NULL;libdir148,3790 -bool Yap_IsAbsolutePath(const char *p0) {Yap_IsAbsolutePath151,3819 -#define isValidEnvChar(isValidEnvChar163,4088 -static const char *PlExpandVars(const char *source, const char *root,PlExpandVars169,4357 -static char *unix2win(const char *source, char *target, int max) {unix2win280,7458 -static char *OsPath(const char *p, char *buf) { return (char *)p; }OsPath335,8631 -static char *PrologPath(const char *Y, char *X) { return (char *)Y; }PrologPath337,8700 -#define HAVE_BASENAME HAVE_BASENAME340,8782 -#define HAVE_REALPATH HAVE_REALPATH341,8806 -static bool ChDir(const char *path) {ChDir344,8838 -static const char *myrealpath(const char *path, char *out) {myrealpath368,9409 -static const char *expandVars(const char *spec, char *u) {expandVars425,10692 -const char *Yap_AbsoluteFile(const char *spec, char *rc0, bool ok) {Yap_AbsoluteFile453,11416 - do_glob(const char *spec, bool glob_vs_wordexp) {do_glob491,12190 -static Int real_path(USES_REGS1) {real_path655,16419 -#define EXPAND_FILENAME_DEFS(EXPAND_FILENAME_DEFS685,17036 -#define PAR(PAR690,17321 -typedef enum expand_filename_enum_choices {expand_filename_enum_choices692,17345 - EXPAND_FILENAME_DEFS()EXPAND_FILENAME_DEFS693,17389 -} expand_filename_enum_choices_t;expand_filename_enum_choices_t694,17414 -#undef PARPAR696,17449 -#define PAR(PAR698,17461 -static const param_t expand_filename_defs[] = {EXPAND_FILENAME_DEFS()};expand_filename_defs701,17557 -#undef PARPAR702,17629 -static Term do_expand_file_name(Term t1, Term opts USES_REGS) {do_expand_file_name704,17641 -static Int expand_file_name(USES_REGS1) {expand_file_name810,20362 -static Int expand_file_name3(USES_REGS1) {expand_file_name3817,20535 -static Int absolute_file_system_path(USES_REGS1) {absolute_file_system_path845,21259 -static Int prolog_to_os_filename(USES_REGS1) {prolog_to_os_filename863,21726 -Atom Yap_TemporaryFile(const char *prefix, int *fd) {Yap_TemporaryFile891,22531 -static Int make_directory(USES_REGS1) {make_directory920,23185 -static Int p_rmdir(USES_REGS1) {p_rmdir933,23462 -static bool initSysPath(Term tlib, Term tcommons, bool dir_done,initSysPath946,23746 -static Int libraries_directories(USES_REGS1) {libraries_directories1051,27112 -static Int system_library(USES_REGS1) {system_library1055,27210 -static Int commons_library(USES_REGS1) {commons_library1073,27546 -static Int p_dir_sp(USES_REGS1) {p_dir_sp1077,27644 -size_t Yap_InitPageSize(void) {Yap_InitPageSize1089,27922 -static int volume_header(char *file) {volume_header1115,28403 -int Yap_volume_header(char *file) { return volume_header(file); }Yap_volume_header1130,28638 -const char *Yap_getcwd(const char *cwd, size_t cwdlen) {Yap_getcwd1132,28705 -static Int working_directory(USES_REGS1) {working_directory1143,28991 -const char *Yap_findFile(const char *isource, const char *idef,Yap_findFile1179,30098 -static Int true_file_name(USES_REGS1) {true_file_name1331,34257 -static Int p_expand_file_name(USES_REGS1) {p_expand_file_name1354,34849 -static Int true_file_name3(USES_REGS1) {true_file_name31373,35350 -static Int p_sh(USES_REGS1) { /* sh */p_sh1406,36205 -static Int p_shell(USES_REGS1) { /* '$shell'(+SystCommand) */p_shell1440,36982 -static Int p_system(USES_REGS1) { /* '$system'(+SystCommand) */p_system1517,38681 -static Int p_mv(USES_REGS1) { /* rename(+OldName,+NewName) */p_mv1602,41135 -void Yap_SetTextFile(name) char *name;Yap_SetTextFile1643,42399 -static Int p_getenv(USES_REGS1) {p_getenv1668,42785 -static Int p_putenv(USES_REGS1) {p_putenv1693,43464 -static Int p_host_type(USES_REGS1) {p_host_type1741,44849 -static Int p_yap_home(USES_REGS1) {p_yap_home1746,44975 -static Int p_yap_paths(USES_REGS1) {p_yap_paths1751,45101 -static Int p_log_event(USES_REGS1) {p_log_event1781,46082 -static Int p_env_separator(USES_REGS1) {p_env_separator1802,46465 -void Yap_InitSysbits(int wid) {Yap_InitSysbits1814,46732 -static Int p_unix(USES_REGS1) {p_unix1828,47020 -static Int p_win32(USES_REGS1) {p_win321844,47200 -static Int p_ld_path(USES_REGS1) {p_ld_path1856,47340 -static Int p_address_bits(USES_REGS1) {p_address_bits1860,47444 -#define wstreq(wstreq1872,47673 -static HKEY reg_open_key(const wchar_t *which, int create) {reg_open_key1874,47719 -#define MAXREGSTRLEN MAXREGSTRLEN1925,48816 -static wchar_t *WideStringFromAtom(Atom KeyAt USES_REGS) {WideStringFromAtom1927,48843 -static Int p_win_registry_get_value(USES_REGS1) {p_win_registry_get_value1931,48941 -char *Yap_RegistryGetString(char *name) {Yap_RegistryGetString1998,50687 -void Yap_InitSysPreds(void) {Yap_InitSysPreds2036,51461 - -os/sysbits.h,188 -#define MINGW_HAS_SECURE_API MINGW_HAS_SECURE_API20,357 -#define S_ISDIR(S_ISDIR40,732 -#define strncat(strncat93,1581 -#define strncpy(strncpy96,1644 -#define signal signal112,1931 - -os/time.c,4072 -#undef HAVE_GETRUSAGEHAVE_GETRUSAGE6,59 -#undef HAVE_TIMESHAVE_TIMES9,106 -#undef HAVE_GETRUSAGEHAVE_GETRUSAGE15,185 -#define StartOfTimes StartOfTimes29,363 -#define last_time last_time30,424 -#define StartOfTimes_sys StartOfTimes_sys32,478 -#define last_time_sys last_time_sys33,547 -static struct timeval StartOfTimes;StartOfTimes37,653 -static struct timeval last_time;last_time40,723 -static struct timeval last_time_sys;last_time_sys43,784 -static struct timeval StartOfTimes_sys;StartOfTimes_sys44,821 -void Yap_InitTime(int wid) {Yap_InitTime48,908 -UInt Yap_cputime(void) {Yap_cputime82,2346 -void Yap_cputime_interval(Int *now, Int *interval) {Yap_cputime_interval91,2582 -void Yap_systime_interval(Int *now, Int *interval) {Yap_systime_interval104,3069 -#define do_div(do_div124,3745 - FILETIME f;f146,4935 - FILETIME f;__anon417::f146,4935 - __int64 t;t147,4949 - __int64 t;__anon417::t147,4949 -} win64_time_t;win64_time_t148,4962 -static win64_time_t StartOfTimes, last_time;StartOfTimes150,4980 -static win64_time_t StartOfTimes, last_time;last_time150,4980 -static win64_time_t StartOfTimes_sys, last_time_sys;StartOfTimes_sys152,5026 -static win64_time_t StartOfTimes_sys, last_time_sys;last_time_sys152,5026 -static clock_t TimesStartOfTimes, Times_last_time;TimesStartOfTimes154,5080 -static clock_t TimesStartOfTimes, Times_last_time;Times_last_time154,5080 -void Yap_InitTime(int wid) {Yap_InitTime157,5171 -UInt Yap_cputime(void) {Yap_cputime205,7291 -void Yap_cputime_interval(Int *now, Int *interval) {Yap_cputime_interval219,7726 -void Yap_systime_interval(Int *now, Int *interval) {Yap_systime_interval239,8471 -#define TicksPerSec TicksPerSec261,9161 -#define TicksPerSec TicksPerSec277,9374 -#define TicksPerSec TicksPerSec287,9561 -static clock_t StartOfTimes, last_time;StartOfTimes297,9691 -static clock_t StartOfTimes, last_time;last_time297,9691 -static clock_t StartOfTimes_sys, last_time_sys;StartOfTimes_sys299,9732 -static clock_t StartOfTimes_sys, last_time_sys;last_time_sys299,9732 -static void InitTime(void) {InitTime302,9820 -UInt Yap_cputime(void) {Yap_cputime309,10002 -void Yap_cputime_interval(Int *now, Int *interval) {Yap_cputime_interval315,10121 -void Yap_systime_interval(Int *now, Int *interval) {Yap_systime_interval323,10357 -static struct timeval StartOfTimes;StartOfTimes338,10705 -static struct timeval last_time;last_time341,10775 -static void InitTime(int wid) {InitTime344,10848 -UInt Yap_cputime(void) {Yap_cputime354,11179 -void Yap_cputime_interval(Int *now, Int *interval) {Yap_cputime_interval366,11533 -void Yap_systime_interval(Int *now, Int *interval) {Yap_systime_interval378,11918 -#define TicksPerSec TicksPerSec391,12189 -static double real_cputime() { return (((double)TickCount()) / TicksPerSec); }real_cputime393,12215 -static long *ptime;ptime401,12350 -gettime() { *ptime = *(long *)0x462; }gettime403,12371 -static double real_cputime() {real_cputime405,12411 -static long *ptime;ptime419,12642 -static long readtime() { return (*((long *)0x4ba)); }readtime421,12663 -static double real_cputime() {real_cputime423,12718 -#undef FALSEFALSE434,12858 -#undef TRUETRUE435,12871 -#define TicksPerSec TicksPerSec439,12906 -static double real_cputime() { return (((double)TickCount()) / TicksPerSec); }real_cputime441,12932 -uint64_t Yap_StartOfWTimes;Yap_StartOfWTimes449,13089 -void Yap_InitWTime(void) { Yap_StartOfWTimes = (uint64_t)gethrtime(); }Yap_InitWTime459,13219 -uint64_t Yap_walltime(uint64_t old) {Yap_walltime462,13342 -void Yap_InitWTime(void) {Yap_InitWTime472,13573 -uint64_t Yap_walltime(void) {Yap_walltime481,13790 -static LARGE_INTEGER Frequency;Frequency494,14048 -void Yap_InitWTime(void) {Yap_InitWTime497,14120 -uint64_t Yap_walltime(void) {Yap_walltime506,14431 -void Yap_InitWTime(void) {Yap_InitWTime525,15030 -uint64_t Yap_walltime(void) {Yap_walltime531,15180 -void Yap_ReInitWTime(void) { Yap_InitWTime(); }Yap_ReInitWTime538,15330 -void Yap_InitTimePreds(void) {Yap_InitTimePreds540,15379 - -os/write.c,463 -static char SccsId[] = "%W% %G%";SccsId18,601 -#define strncat(strncat75,1626 -#define strncpy(strncpy78,1686 -#define S_ISDIR(S_ISDIR86,1847 -#define SYSTEM_STAT SYSTEM_STAT92,1966 -#define SYSTEM_STAT SYSTEM_STAT94,1998 -int beam_write ( USES_REGS1 )beam_write102,2047 -p_write ( USES_REGS1 )p_write118,2358 -p_write_prio ( USES_REGS1 )p_write_prio137,2884 -p_write2_prio ( USES_REGS1 )p_write2_prio156,3424 -p_write2 ( USES_REGS1 )p_write2184,4317 - -os/writeterm.c,2202 -static char SccsId[] = "%W% %G%";SccsId18,601 -#define strncat(strncat75,1626 -#define strncpy(strncpy78,1689 -#define S_ISDIR(S_ISDIR86,1853 -static Term readFromBuffer(const char *s, Term opts) {readFromBuffer91,1937 -#define SYSTEM_STAT SYSTEM_STAT104,2298 -#define SYSTEM_STAT SYSTEM_STAT106,2330 -#undef PARPAR109,2363 -#define WRITE_DEFS(WRITE_DEFS111,2375 -#define PAR(PAR130,3784 -typedef enum open_enum_choices { WRITE_DEFS() } open_choices_t;open_enum_choices132,3808 -typedef enum open_enum_choices { WRITE_DEFS() } open_choices_t;WRITE_DEFS132,3808 -typedef enum open_enum_choices { WRITE_DEFS() } open_choices_t;open_choices_t132,3808 -#undef PARPAR134,3873 -#define PAR(PAR136,3885 -static const param_t write_defs[] = {WRITE_DEFS()};write_defs139,3981 -#undef PARPAR140,4033 -int beam_write(USES_REGS1) {beam_write143,4057 -static bool bind_variable_names(Term t USES_REGS) {bind_variable_names153,4277 -static int unbind_variable_names(Term t USES_REGS) {unbind_variable_names179,4883 -static bool write_term(int output_stream, Term t, xarg *args USES_REGS) {write_term201,5343 -bool Yap_WriteTerm(int output_stream, Term t, Term opts USES_REGS) {Yap_WriteTerm293,8061 -static Int write_term2(USES_REGS1) {write_term2312,8692 -static Int write_term3(USES_REGS1) {write_term3320,8948 -static Int write2(USES_REGS1) {write2329,9176 -static Int write1(USES_REGS1) {write1358,10068 -static Int write_canonical1(USES_REGS1) {write_canonical1385,10964 -static Int write_canonical(USES_REGS1) {write_canonical414,11944 -static Int writeq1(USES_REGS1) {writeq1444,12921 -static Int writeq(USES_REGS1) {writeq474,13865 -static Int print1(USES_REGS1) {print1504,14833 -static Int print(USES_REGS1) {print535,15827 -static Int writeln1(USES_REGS1) {writeln1565,16796 -static Int writeln(USES_REGS1) {writeln592,17653 -static Int p_write_depth(USES_REGS1) { /* write_depth(Old,New) */p_write_depth620,18509 -static Int dollar_var(USES_REGS1) {dollar_var658,19580 -static Int term_to_string(USES_REGS1) {term_to_string677,20112 -static Int term_to_atom(USES_REGS1) {term_to_atom699,20823 -void Yap_InitWriteTPreds(void) {Yap_InitWriteTPreds724,21668 - -os/yapio.h,779 -#define YAPIO_H YAPIO_H20,613 -#undef HAVE_LIBREADLINEHAVE_LIBREADLINE23,649 -#define EOFCHAR EOFCHAR34,799 -typedef struct AliasDescS {AliasDescS39,855 - Atom name;name40,884 - Atom name;AliasDescS::name40,884 - int alias_stream;alias_stream41,898 - int alias_stream;AliasDescS::alias_stream41,898 -} * AliasDesc;AliasDesc42,919 -#define MAX_ISO_LATIN1 MAX_ISO_LATIN144,937 -#define ParserAuxSp ParserAuxSp47,1017 -#define Yap_LockStream(Yap_LockStream68,1784 -#define Yap_UnLockStream(Yap_UnLockStream69,1811 -typedef enum mem_buf_source {mem_buf_source101,3153 - MEM_BUF_MALLOC = 1,MEM_BUF_MALLOC102,3184 - MEM_BUF_USER = 2MEM_BUF_USER103,3207 -} memBufSource;memBufSource104,3227 -INLINE_ONLY inline EXTERN Term MkCharTerm(Int c) {MkCharTerm141,4852 - -os/ypsocks.c,2393 -typedef int socklen_t;socklen_t73,1500 -#define AF_UNSPEC AF_UNSPEC77,1595 -#define AF_LOCAL AF_LOCAL80,1639 -#define AF_AAL5 AF_AAL583,1689 -#define AF_APPLETALK AF_APPLETALK86,1743 -#define AF_AX25 AF_AX2589,1797 -#define AF_BRIDGE AF_BRIDGE92,1848 -#define AF_DECnet AF_DECnet95,1901 -#define AF_FILE AF_FILE98,1952 -#define AF_INET AF_INET101,2001 -#define AF_INET6 AF_INET6104,2051 -#define AF_IPX AF_IPX107,2100 -#define AF_LOCAL AF_LOCAL110,2149 -#define AF_NETBEUI AF_NETBEUI113,2202 -#define AF_NETLINK AF_NETLINK116,2257 -#define AF_NETROM AF_NETROM119,2311 -#define AF_OSINET AF_OSINET122,2364 -#define AF_PACKET AF_PACKET125,2417 -#define AF_ROSE AF_ROSE128,2468 -#define AF_ROUTE AF_ROUTE131,2518 -#define AF_SECURITY AF_SECURITY134,2572 -#define AF_SNA AF_SNA137,2624 -#define AF_UNIX AF_UNIX140,2672 -#define AF_X25 AF_X25143,2720 -#define SOCK_STREAM SOCK_STREAM147,2773 -#define SOCK_DGRAM SOCK_DGRAM150,2822 -#define SOCK_RAW SOCK_RAW153,2868 -#define SOCK_RDM SOCK_RDM156,2912 -#define SOCK_SEQPACKET SOCK_SEQPACKET159,2962 -#define SOCK_PACKET SOCK_PACKET162,3015 -#define MAXHOSTNAMELEN MAXHOSTNAMELEN166,3069 -#define BUFSIZ BUFSIZ170,3119 -#define socket_errno socket_errno174,3183 -#define invalid_socket_fd(invalid_socket_fd175,3222 -#define socket_errno socket_errno177,3281 -#define invalid_socket_fd(invalid_socket_fd178,3308 -void Yap_init_socks(char *host, long interface_port) {Yap_init_socks181,3355 -static Int p_socket(USES_REGS1) {p_socket325,7173 -Int Yap_CloseSocket(int fd, socket_info status, socket_domain domain) {Yap_CloseSocket482,11246 -static Int p_socket_close(USES_REGS1) {p_socket_close538,12874 -static Int p_socket_bind(USES_REGS1) {p_socket_bind549,13084 -static Int p_socket_connect(USES_REGS1) {p_socket_connect684,17014 -static Int p_socket_listen(USES_REGS1) {p_socket_listen845,21871 -static Int p_socket_accept(USES_REGS1) {p_socket_accept886,22899 -static Int p_socket_buffering(USES_REGS1) {p_socket_buffering958,25014 -static Term select_out_list(Term t1, fd_set *readfds_ptr USES_REGS) {select_out_list1024,26648 -static Int p_socket_select(USES_REGS1) {p_socket_select1042,27121 -static Int p_current_host(USES_REGS1) {p_current_host1128,29239 -static Int p_hostname_address(USES_REGS1) {p_hostname_address1194,31082 -void Yap_InitSocketLayer(void) {Yap_InitSocketLayer1249,32702 - -os/ypstdio.c,969 -#define O_BINARY O_BINARY36,796 -YP_FILE yp_iob[YP_MAX_FILES];yp_iob39,823 -clear_iob(YP_FILE *f)clear_iob42,866 -init_yp_stdio()init_yp_stdio53,1037 -YP_fillbuf(YP_FILE *f)YP_fillbuf71,1434 -YP_flushbuf(int c,YP_FILE *f)YP_flushbuf89,1766 -YP_fflush(YP_FILE *f)YP_fflush108,2127 -YP_fputs(char *s, YP_FILE *f)YP_fputs127,2494 -YP_puts(char *s)YP_puts138,2633 -YP_fgets(char *s, int n, YP_FILE *f)YP_fgets145,2695 -YP_gets(char *s)YP_gets160,2926 -YP_fopen(char *path, char *mode)YP_fopen175,3101 -YP_fclose(YP_FILE *f)YP_fclose220,3952 -#define MAXBSIZE MAXBSIZE233,4155 -YP_printf(char *format,...)YP_printf236,4183 -YP_fprintf(YP_FILE *f, char *format,...)YP_fprintf253,4384 -YP_fileno(YP_FILE *f)YP_fileno269,4600 -YP_clearerr(YP_FILE *f)YP_clearerr275,4647 -YP_feof(YP_FILE *f)YP_feof282,4733 -YP_setbuf(YP_FILE *f, char *b)YP_setbuf288,4802 -YP_fseek(YP_FILE *f, int offset, int whence)YP_fseek294,4854 -YP_ftell(YP_FILE*f)YP_ftell301,4950 - -packages/bdd/bdd.yap,10281 -tell_warning :-tell_warning48,899 -bdd_new(T, Bdd) :-bdd_new92,1627 -bdd_new(T, Bdd) :-bdd_new92,1627 -bdd_new(T, Bdd) :-bdd_new92,1627 -bdd_new(T, Vars, cudd(M,X,VS,TrueVars)) :-bdd_new103,1868 -bdd_new(T, Vars, cudd(M,X,VS,TrueVars)) :-bdd_new103,1868 -bdd_new(T, Vars, cudd(M,X,VS,TrueVars)) :-bdd_new103,1868 -bdd_from_list(List, Vars, cudd(M,X,VS,TrueVars)) :-bdd_from_list125,2463 -bdd_from_list(List, Vars, cudd(M,X,VS,TrueVars)) :-bdd_from_list125,2463 -bdd_from_list(List, Vars, cudd(M,X,VS,TrueVars)) :-bdd_from_list125,2463 -set_bdd_from_list(T0, VS, Manager, Cudd) :-set_bdd_from_list130,2647 -set_bdd_from_list(T0, VS, Manager, Cudd) :-set_bdd_from_list130,2647 -set_bdd_from_list(T0, VS, Manager, Cudd) :-set_bdd_from_list130,2647 -generate_releases(T0, Manager, T) :-generate_releases137,2817 -generate_releases(T0, Manager, T) :-generate_releases137,2817 -generate_releases(T0, Manager, T) :-generate_releases137,2817 -add_releases([], _, RR, _M, RR).add_releases142,2932 -add_releases([], _, RR, _M, RR).add_releases142,2932 -add_releases([(X = Ts)|R], RB0, RR0, M, RR) :-add_releases143,2966 -add_releases([(X = Ts)|R], RB0, RR0, M, RR) :-add_releases143,2966 -add_releases([(X = Ts)|R], RB0, RR0, M, RR) :-add_releases143,2966 -add_variables([], RB, RR, _M, RB, RR).add_variables148,3129 -add_variables([], RB, RR, _M, RB, RR).add_variables148,3129 -add_variables([V|Vs], RB0, RR0, M, RBF, RRF) :-add_variables149,3168 -add_variables([V|Vs], RB0, RR0, M, RBF, RRF) :-add_variables149,3168 -add_variables([V|Vs], RB0, RR0, M, RBF, RRF) :-add_variables149,3168 -add_variables([V|Vs], RB0, RR0, M, RBF, RRF) :-add_variables152,3285 -add_variables([V|Vs], RB0, RR0, M, RBF, RRF) :-add_variables152,3285 -add_variables([V|Vs], RB0, RR0, M, RBF, RRF) :-add_variables152,3285 -writeln_list([]).writeln_list157,3426 -writeln_list([]).writeln_list157,3426 -writeln_list([B|Bindings]) :-writeln_list158,3444 -writeln_list([B|Bindings]) :-writeln_list158,3444 -writeln_list([B|Bindings]) :-writeln_list158,3444 -list_to_cudd([],_Manager,Cudd,Cudd) :- writeln('X').list_to_cudd163,3582 -list_to_cudd([],_Manager,Cudd,Cudd) :- writeln('X').list_to_cudd163,3582 -list_to_cudd([],_Manager,Cudd,Cudd) :- writeln('X').list_to_cudd163,3582 -list_to_cudd([],_Manager,Cudd,Cudd) :- writeln('X').list_to_cudd163,3582 -list_to_cudd([],_Manager,Cudd,Cudd) :- writeln('X').list_to_cudd163,3582 -list_to_cudd([release_node(M,cudd(V))|T], Manager, Cudd0, CuddF) :- !,list_to_cudd164,3635 -list_to_cudd([release_node(M,cudd(V))|T], Manager, Cudd0, CuddF) :- !,list_to_cudd164,3635 -list_to_cudd([release_node(M,cudd(V))|T], Manager, Cudd0, CuddF) :- !,list_to_cudd164,3635 -list_to_cudd([(V=0*_Par)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd168,3799 -list_to_cudd([(V=0*_Par)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd168,3799 -list_to_cudd([(V=0*_Par)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd168,3799 -list_to_cudd([(V=0)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd173,3975 -list_to_cudd([(V=0)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd173,3975 -list_to_cudd([(V=0)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd173,3975 -list_to_cudd([(V=_Tree*0)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd178,4146 -list_to_cudd([(V=_Tree*0)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd178,4146 -list_to_cudd([(V=_Tree*0)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd178,4146 -list_to_cudd([(V=Tree*1)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd183,4323 -list_to_cudd([(V=Tree*1)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd183,4323 -list_to_cudd([(V=Tree*1)|T], Manager, _Cudd0, CuddF) :- !,list_to_cudd183,4323 -list_to_cudd([(V=Tree)|T], Manager, _Cudd0, CuddF) :-list_to_cudd188,4502 -list_to_cudd([(V=Tree)|T], Manager, _Cudd0, CuddF) :-list_to_cudd188,4502 -list_to_cudd([(V=Tree)|T], Manager, _Cudd0, CuddF) :-list_to_cudd188,4502 -mtbdd_new(T, Mtbdd) :-mtbdd_new214,5139 -mtbdd_new(T, Mtbdd) :-mtbdd_new214,5139 -mtbdd_new(T, Mtbdd) :-mtbdd_new214,5139 -mtbdd_new(T, Vars, add(M,X,VS,Vars)) :-mtbdd_new218,5217 -mtbdd_new(T, Vars, add(M,X,VS,Vars)) :-mtbdd_new218,5217 -mtbdd_new(T, Vars, add(M,X,VS,Vars)) :-mtbdd_new218,5217 -writeln(V).writeln232,5614 -writeln(V).writeln232,5614 -eval_bdd(pp(P,X,L,R), _, P) :-eval_bdd243,5819 -eval_bdd(pp(P,X,L,R), _, P) :-eval_bdd243,5819 -eval_bdd(pp(P,X,L,R), _, P) :-eval_bdd243,5819 -eval_bdd(pn(P,X,L,R), _, P) :-eval_bdd245,5887 -eval_bdd(pn(P,X,L,R), _, P) :-eval_bdd245,5887 -eval_bdd(pn(P,X,L,R), _, P) :-eval_bdd245,5887 -bdd_eval(cudd(M, X, Vars, _), Val) :-bdd_eval256,6275 -bdd_eval(cudd(M, X, Vars, _), Val) :-bdd_eval256,6275 -bdd_eval(cudd(M, X, Vars, _), Val) :-bdd_eval256,6275 -bdd_eval(add(M, X, Vars, _), Val) :-bdd_eval258,6342 -bdd_eval(add(M, X, Vars, _), Val) :-bdd_eval258,6342 -bdd_eval(add(M, X, Vars, _), Val) :-bdd_eval258,6342 -mtbdd_eval(add(M,X, Vars, _), Val) :-mtbdd_eval261,6408 -mtbdd_eval(add(M,X, Vars, _), Val) :-mtbdd_eval261,6408 -mtbdd_eval(add(M,X, Vars, _), Val) :-mtbdd_eval261,6408 -bdd_tree(cudd(M, X, Vars, _Vs), bdd(Dir, List, Vars)) :-bdd_tree293,7449 -bdd_tree(cudd(M, X, Vars, _Vs), bdd(Dir, List, Vars)) :-bdd_tree293,7449 -bdd_tree(cudd(M, X, Vars, _Vs), bdd(Dir, List, Vars)) :-bdd_tree293,7449 -bdd_tree(add(M, X, Vars, _), mtbdd(Tree, Vars)) :-bdd_tree295,7544 -bdd_tree(add(M, X, Vars, _), mtbdd(Tree, Vars)) :-bdd_tree295,7544 -bdd_tree(add(M, X, Vars, _), mtbdd(Tree, Vars)) :-bdd_tree295,7544 -bdd_to_probability_sum_product(cudd(M,X,_,Probs), Prob) :-bdd_to_probability_sum_product305,7822 -bdd_to_probability_sum_product(cudd(M,X,_,Probs), Prob) :-bdd_to_probability_sum_product305,7822 -bdd_to_probability_sum_product(cudd(M,X,_,Probs), Prob) :-bdd_to_probability_sum_product305,7822 -eval_prob(pp(P,X,L,R), _, P) :-eval_prob323,8505 -eval_prob(pp(P,X,L,R), _, P) :-eval_prob323,8505 -eval_prob(pp(P,X,L,R), _, P) :-eval_prob323,8505 -eval_prob(pn(P,X,L,R), _, P) :-eval_prob325,8567 -eval_prob(pn(P,X,L,R), _, P) :-eval_prob325,8567 -eval_prob(pn(P,X,L,R), _, P) :-eval_prob325,8567 -bdd_to_probability_sum_product(cudd(M,X,_,_Probs), Probs, Prob) :-bdd_to_probability_sum_product330,8642 -bdd_to_probability_sum_product(cudd(M,X,_,_Probs), Probs, Prob) :-bdd_to_probability_sum_product330,8642 -bdd_to_probability_sum_product(cudd(M,X,_,_Probs), Probs, Prob) :-bdd_to_probability_sum_product330,8642 -bdd_close(cudd(M,_,_Vars, _)) :-bdd_close339,8854 -bdd_close(cudd(M,_,_Vars, _)) :-bdd_close339,8854 -bdd_close(cudd(M,_,_Vars, _)) :-bdd_close339,8854 -bdd_close(add(M,_,_Vars, _)) :-bdd_close341,8901 -bdd_close(add(M,_,_Vars, _)) :-bdd_close341,8901 -bdd_close(add(M,_,_Vars, _)) :-bdd_close341,8901 -bdd_reorder(cudd(M,Top,_Vars, _), How) :-bdd_reorder349,9039 -bdd_reorder(cudd(M,Top,_Vars, _), How) :-bdd_reorder349,9039 -bdd_reorder(cudd(M,Top,_Vars, _), How) :-bdd_reorder349,9039 -bdd_size(cudd(M,Top,_Vars, _), Sz) :-bdd_size358,9222 -bdd_size(cudd(M,Top,_Vars, _), Sz) :-bdd_size358,9222 -bdd_size(cudd(M,Top,_Vars, _), Sz) :-bdd_size358,9222 -bdd_size(add(M,Top,_Vars, _), Sz) :-bdd_size360,9282 -bdd_size(add(M,Top,_Vars, _), Sz) :-bdd_size360,9282 -bdd_size(add(M,Top,_Vars, _), Sz) :-bdd_size360,9282 -bdd_print(cudd(M,Top,_Vars, _), File) :-bdd_print369,9443 -bdd_print(cudd(M,Top,_Vars, _), File) :-bdd_print369,9443 -bdd_print(cudd(M,Top,_Vars, _), File) :-bdd_print369,9443 -bdd_print(add(M,Top,_Vars, _), File) :-bdd_print372,9550 -bdd_print(add(M,Top,_Vars, _), File) :-bdd_print372,9550 -bdd_print(add(M,Top,_Vars, _), File) :-bdd_print372,9550 -bdd_print(cudd(M,Top, Vars, _), File, Names) :-bdd_print376,9659 -bdd_print(cudd(M,Top, Vars, _), File, Names) :-bdd_print376,9659 -bdd_print(cudd(M,Top, Vars, _), File, Names) :-bdd_print376,9659 -bdd_print(add(M,Top, Vars, _), File, Names) :-bdd_print382,9855 -bdd_print(add(M,Top, Vars, _), File, Names) :-bdd_print382,9855 -bdd_print(add(M,Top, Vars, _), File, Names) :-bdd_print382,9855 -fetch_name([S=V1|_], V2, SN) :- V1 == V2, !,fetch_name388,10042 -fetch_name([S=V1|_], V2, SN) :- V1 == V2, !,fetch_name388,10042 -fetch_name([S=V1|_], V2, SN) :- V1 == V2, !,fetch_name388,10042 -fetch_name([_|Y], V, S) :- !,fetch_name390,10142 -fetch_name([_|Y], V, S) :- !,fetch_name390,10142 -fetch_name([_|Y], V, S) :- !,fetch_name390,10142 -fetch_name([], V, V).fetch_name392,10194 -fetch_name([], V, V).fetch_name392,10194 -mtbdd_close(add(M,_,_Vars,_)) :-mtbdd_close394,10217 -mtbdd_close(add(M,_,_Vars,_)) :-mtbdd_close394,10217 -mtbdd_close(add(M,_,_Vars,_)) :-mtbdd_close394,10217 -bdd_to_sp(bdd(Dir, Tree, _Vars, IVars), Binds, Prob) :-bdd_to_sp398,10315 -bdd_to_sp(bdd(Dir, Tree, _Vars, IVars), Binds, Prob) :-bdd_to_sp398,10315 -bdd_to_sp(bdd(Dir, Tree, _Vars, IVars), Binds, Prob) :-bdd_to_sp398,10315 -sp(Dir, Tree, Vars, Vars, P) :-sp401,10425 -sp(Dir, Tree, Vars, Vars, P) :-sp401,10425 -sp(Dir, Tree, Vars, Vars, P) :-sp401,10425 -run_sp([]).run_sp405,10495 -run_sp([]).run_sp405,10495 -run_sp(pp(P,X,L,R).Tree) :-run_sp406,10507 -run_sp(pp(P,X,L,R).Tree) :-run_sp406,10507 -run_sp(pp(P,X,L,R).Tree) :-run_sp406,10507 -run_sp(pp(P,X,L,R).Tree) :-run_sp406,10507 -run_sp(pp(P,X,L,R).Tree) :-run_sp406,10507 -run_sp(pn(P,X,L,R).Tree) :-run_sp409,10569 -run_sp(pn(P,X,L,R).Tree) :-run_sp409,10569 -run_sp(pn(P,X,L,R).Tree) :-run_sp409,10569 -run_sp(pn(P,X,L,R).Tree) :-run_sp409,10569 -run_sp(pn(P,X,L,R).Tree) :-run_sp409,10569 -fetch(pp(P,_,_,_)._Tree, 1, P).fetch413,10636 -fetch(pp(P,_,_,_)._Tree, 1, P).fetch413,10636 -fetch(pp(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch414,10668 -fetch(pp(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch414,10668 -fetch(pp(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch414,10668 -fetch(pp(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch414,10668 -fetch(pp(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch414,10668 -fetch(pn(P,_,_,_)._Tree, 1, P).fetch415,10713 -fetch(pn(P,_,_,_)._Tree, 1, P).fetch415,10713 -fetch(pn(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch416,10745 -fetch(pn(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch416,10745 -fetch(pn(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch416,10745 -fetch(pn(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch416,10745 -fetch(pn(P,_,_,_)._Tree, -1, N) :- N is 1-P.fetch416,10745 - -packages/bdd/cudd.c,6049 -static YAP_Functor FunctorDollarVar, FunctorCudd, FunctorAnd, FunctorAnd4,FunctorDollarVar56,1392 -static YAP_Functor FunctorDollarVar, FunctorCudd, FunctorAnd, FunctorAnd4,FunctorCudd56,1392 -static YAP_Functor FunctorDollarVar, FunctorCudd, FunctorAnd, FunctorAnd4,FunctorAnd56,1392 -static YAP_Functor FunctorDollarVar, FunctorCudd, FunctorAnd, FunctorAnd4,FunctorAnd456,1392 - FunctorOr, FunctorOr4, FunctorLAnd, FunctorLOr, FunctorNot, FunctorMinus1,FunctorOr57,1467 - FunctorOr, FunctorOr4, FunctorLAnd, FunctorLOr, FunctorNot, FunctorMinus1,FunctorOr457,1467 - FunctorOr, FunctorOr4, FunctorLAnd, FunctorLOr, FunctorNot, FunctorMinus1,FunctorLAnd57,1467 - FunctorOr, FunctorOr4, FunctorLAnd, FunctorLOr, FunctorNot, FunctorMinus1,FunctorLOr57,1467 - FunctorOr, FunctorOr4, FunctorLAnd, FunctorLOr, FunctorNot, FunctorMinus1,FunctorNot57,1467 - FunctorOr, FunctorOr4, FunctorLAnd, FunctorLOr, FunctorNot, FunctorMinus1,FunctorMinus157,1467 - FunctorXor, FunctorNand, FunctorNor, FunctorTimes, FunctorImplies,FunctorXor58,1546 - FunctorXor, FunctorNand, FunctorNor, FunctorTimes, FunctorImplies,FunctorNand58,1546 - FunctorXor, FunctorNand, FunctorNor, FunctorTimes, FunctorImplies,FunctorNor58,1546 - FunctorXor, FunctorNand, FunctorNor, FunctorTimes, FunctorImplies,FunctorTimes58,1546 - FunctorXor, FunctorNand, FunctorNor, FunctorTimes, FunctorImplies,FunctorImplies58,1546 - FunctorPlus, FunctorMinus, FunctorTimes4, FunctorPlus4, FunctorOutAdd,FunctorPlus59,1617 - FunctorPlus, FunctorMinus, FunctorTimes4, FunctorPlus4, FunctorOutAdd,FunctorMinus59,1617 - FunctorPlus, FunctorMinus, FunctorTimes4, FunctorPlus4, FunctorOutAdd,FunctorTimes459,1617 - FunctorPlus, FunctorMinus, FunctorTimes4, FunctorPlus4, FunctorOutAdd,FunctorPlus459,1617 - FunctorPlus, FunctorMinus, FunctorTimes4, FunctorPlus4, FunctorOutAdd,FunctorOutAdd59,1617 - FunctorOutPos, FunctorOutNeg;FunctorOutPos60,1692 - FunctorOutPos, FunctorOutNeg;FunctorOutNeg60,1692 -static YAP_Term TermMinusOne, TermZero, TermPlusOne, TermTrue, TermFalse;TermMinusOne62,1727 -static YAP_Term TermMinusOne, TermZero, TermPlusOne, TermTrue, TermFalse;TermZero62,1727 -static YAP_Term TermMinusOne, TermZero, TermPlusOne, TermTrue, TermFalse;TermPlusOne62,1727 -static YAP_Term TermMinusOne, TermZero, TermPlusOne, TermTrue, TermFalse;TermTrue62,1727 -static YAP_Term TermMinusOne, TermZero, TermPlusOne, TermTrue, TermFalse;TermFalse62,1727 -static DdNode *cudd_and(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {cudd_and66,1825 -static DdNode *cudd_nand(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {cudd_nand73,1990 -static DdNode *cudd_or(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {cudd_or80,2157 -static DdNode *cudd_nor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {cudd_nor87,2320 -static DdNode *cudd_xor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {cudd_xor94,2485 -static DdNode *term_to_cudd(DdManager *manager, YAP_Term t) {term_to_cudd101,2650 -static YAP_Bool p_term_to_cudd(void) {p_term_to_cudd252,7859 -static DdNode *add_times(DdManager *manager, DdNode *x1, DdNode *x2) {add_times270,8370 -static DdNode *add_implies(DdManager *manager, DdNode *x1, DdNode *x2) {add_implies278,8546 -static DdNode *add_plus(DdManager *manager, DdNode *x1, DdNode *x2) {add_plus286,8731 -static DdNode *add_minus(DdManager *manager, DdNode *x1, DdNode *x2) {add_minus294,8905 -static DdNode *add_lor(DdManager *manager, DdNode *x1, DdNode *x2) {add_lor302,9081 -static DdNode *term_to_add(DdManager *manager, YAP_Term t) {term_to_add310,9252 -static YAP_Bool p_term_to_add(void) {p_term_to_add410,12698 -static YAP_Bool complement(int i) { return i == 0 ? 1 : 0; }complement422,13101 -static YAP_Bool var(DdManager *manager, DdNode *n, YAP_Int *vals) {var424,13163 -static YAP_Bool cudd_eval(DdManager *manager, DdNode *n, YAP_Int *vals) {cudd_eval428,13301 -static YAP_Bool cudd_eval_top(DdManager *manager, DdNode *n, YAP_Int *vals) {cudd_eval_top448,13911 -static YAP_Bool p_eval_cudd(void) {p_eval_cudd456,14143 -static double add_eval(DdManager *manager, DdNode *n, YAP_Int *vals) {add_eval481,14786 -static YAP_Bool p_eval_add(void) {p_eval_add493,15076 - DdNode *key;key519,15735 - DdNode *key;__anon418::key519,15735 - YAP_Term val;val520,15750 - YAP_Term val;__anon418::val520,15750 -} hash_table_entry;hash_table_entry521,15766 -static void insert(hash_table_entry *p, DdNode *key, YAP_Term val, size_t sz) {insert523,15787 -static YAP_Term lookup(hash_table_entry *p, DdNode *key, size_t sz) {lookup532,16015 -static YAP_Term build_prolog_cudd(DdManager *manager, DdNode *n, YAP_Term *ar,build_prolog_cudd540,16222 -static inline int max(int a, int b) { return a < b ? b : a; }max570,17192 -static YAP_Int get_vars(YAP_Term t3) {get_vars572,17255 -static YAP_Bool p_cudd_reorder(void) {p_cudd_reorder578,17389 -static YAP_Bool p_cudd_to_term(void) {p_cudd_to_term583,17550 -static YAP_Term build_prolog_add(DdManager *manager, DdNode *n, YAP_Term *ar,build_prolog_add629,18849 -static YAP_Bool p_add_to_term(void) {p_add_to_term652,19557 -static YAP_Bool p_cudd_size(void) {p_cudd_size693,20699 - DdNode *key;key711,21124 - DdNode *key;__anon419::key711,21124 - double val;val712,21139 - double val;__anon419::val712,21139 -} hash_table_entry_dbl;hash_table_entry_dbl713,21153 -static void insert2(hash_table_entry_dbl *p, DdNode *key, double val,insert2715,21178 -static double lookup2(hash_table_entry_dbl *p, DdNode *key, size_t sz) {lookup2725,21429 -static double build_sp_cudd(DdManager *manager, DdNode *n, double *ar,build_sp_cudd733,21639 -static YAP_Bool p_cudd_to_p(void) {p_cudd_to_p757,22414 -static YAP_Bool p_cudd_print(void) {p_cudd_print791,23362 -static YAP_Bool p_cudd_print_with_names(void) {p_cudd_print_with_names810,23873 -static YAP_Bool p_cudd_die(void) {p_cudd_die864,25212 -static YAP_Bool p_cudd_release_node(void) {p_cudd_release_node870,25348 -void init_cudd(void) {init_cudd877,25557 - -packages/bdd/ddnnf.yap,8937 -cnf_to_ddnnf(CNF0, PVs, DDNNF) :-cnf_to_ddnnf18,405 -cnf_to_ddnnf(CNF0, PVs, DDNNF) :-cnf_to_ddnnf18,405 -cnf_to_ddnnf(CNF0, PVs, DDNNF) :-cnf_to_ddnnf18,405 -mkddnnf(CNF, PVs, DDNNF) :-mkddnnf22,493 -mkddnnf(CNF, PVs, DDNNF) :-mkddnnf22,493 -mkddnnf(CNF, PVs, DDNNF) :-mkddnnf22,493 -list2cnf([]) --> [].list2cnf39,992 -list2cnf([]) --> [].list2cnf39,992 -list2cnf([]) --> [].list2cnf39,992 -list2cnf([(O=A)|Impls]) --> !,list2cnf40,1013 -list2cnf([(O=A)|Impls]) --> !,list2cnf40,1013 -list2cnf([(O=A)|Impls]) --> !,list2cnf40,1013 -list2cnf([CNF|Impls]) -->list2cnf46,1129 -list2cnf([CNF|Impls]) -->list2cnf46,1129 -list2cnf([CNF|Impls]) -->list2cnf46,1129 -cvt(O,O,-O) :- var(O), !.cvt51,1218 -cvt(O,O,-O) :- var(O), !.cvt51,1218 -cvt(O,O,-O) :- var(O), !.cvt51,1218 -cvt(not(O),-O,O).cvt52,1244 -cvt(not(O),-O,O).cvt52,1244 -neg(O,-O) :- var(O), !.neg54,1263 -neg(O,-O) :- var(O), !.neg54,1263 -neg(O,-O) :- var(O), !.neg54,1263 -neg(-O,O).neg55,1287 -neg(-O,O).neg55,1287 -to_format(A) -->to_format57,1299 -to_format(A) -->to_format57,1299 -to_format(A) -->to_format57,1299 -to_format(A+B) -->to_format61,1339 -to_format(A+B) -->to_format61,1339 -to_format(A+B) -->to_format61,1339 -to_format(not(A)) -->to_format65,1393 -to_format(not(A)) -->to_format65,1393 -to_format(not(A)) -->to_format65,1393 -to_format(A) -->to_format68,1426 -to_format(A) -->to_format68,1426 -to_format(A) -->to_format68,1426 -and2cnf(A) -->and2cnf72,1452 -and2cnf(A) -->and2cnf72,1452 -and2cnf(A) -->and2cnf72,1452 -and2cnf(A*B) -->and2cnf76,1491 -and2cnf(A*B) -->and2cnf76,1491 -and2cnf(A*B) -->and2cnf76,1491 -and2cnf(not(A)) -->and2cnf80,1538 -and2cnf(not(A)) -->and2cnf80,1538 -and2cnf(not(A)) -->and2cnf80,1538 -and2cnf(A) -->and2cnf83,1568 -and2cnf(A) -->and2cnf83,1568 -and2cnf(A) -->and2cnf83,1568 -disj(A, NO) --> disj87,1595 -disj(A, NO) --> disj87,1595 -disj(A, NO) --> disj87,1595 -disj(A*B, NO) --> !,disj90,1639 -disj(A*B, NO) --> !,disj90,1639 -disj(A*B, NO) --> !,disj90,1639 -disj(A, NO) -->disj93,1688 -disj(A, NO) -->disj93,1688 -disj(A, NO) -->disj93,1688 -ddnnf(List, PVs, DDNNF) :-ddnnf102,1917 -ddnnf(List, PVs, DDNNF) :-ddnnf102,1917 -ddnnf(List, PVs, DDNNF) :-ddnnf102,1917 -exps2conj((C1,C2), CC1*CC2) :- !,exps2conj107,2013 -exps2conj((C1,C2), CC1*CC2) :- !,exps2conj107,2013 -exps2conj((C1,C2), CC1*CC2) :- !,exps2conj107,2013 -exps2conj((Conj), CConj) :- exps2conj110,2089 -exps2conj((Conj), CConj) :- exps2conj110,2089 -exps2conj((Conj), CConj) :- exps2conj110,2089 -cvt_el(V, V) :- var(V), !.cvt_el113,2141 -cvt_el(V, V) :- var(V), !.cvt_el113,2141 -cvt_el(V, V) :- var(V), !.cvt_el113,2141 -cvt_el(not(X), -X1) :- !,cvt_el114,2168 -cvt_el(not(X), -X1) :- !,cvt_el114,2168 -cvt_el(not(X), -X1) :- !,cvt_el114,2168 -cvt_el(X+Y, X1+Y1) :- !,cvt_el116,2210 -cvt_el(X+Y, X1+Y1) :- !,cvt_el116,2210 -cvt_el(X+Y, X1+Y1) :- !,cvt_el116,2210 -cvt_el(X*Y, X1*Y1) :- !,cvt_el119,2267 -cvt_el(X*Y, X1*Y1) :- !,cvt_el119,2267 -cvt_el(X*Y, X1*Y1) :- !,cvt_el119,2267 -cvt_el(X=Y, X1==Y1) :- !,cvt_el122,2324 -cvt_el(X=Y, X1==Y1) :- !,cvt_el122,2324 -cvt_el(X=Y, X1==Y1) :- !,cvt_el122,2324 -cvt_el(X, X).cvt_el125,2382 -cvt_el(X, X).cvt_el125,2382 -cnf_to_file(List, Vars, S) :-cnf_to_file127,2397 -cnf_to_file(List, Vars, S) :-cnf_to_file127,2397 -cnf_to_file(List, Vars, S) :-cnf_to_file127,2397 -cnf_to_file(_List, _Vars, _S).cnf_to_file134,2549 -cnf_to_file(_List, _Vars, _S).cnf_to_file134,2549 -number_ivars([], M, M).number_ivars136,2581 -number_ivars([], M, M).number_ivars136,2581 -number_ivars([I0|IVars], I0, M) :-number_ivars137,2605 -number_ivars([I0|IVars], I0, M) :-number_ivars137,2605 -number_ivars([I0|IVars], I0, M) :-number_ivars137,2605 -output_list([], _S).output_list141,2681 -output_list([], _S).output_list141,2681 -output_list([CNF|List], S) :-output_list142,2702 -output_list([CNF|List], S) :-output_list142,2702 -output_list([CNF|List], S) :-output_list142,2702 -output_cnf([], S) :-output_cnf146,2777 -output_cnf([], S) :-output_cnf146,2777 -output_cnf([], S) :-output_cnf146,2777 -output_cnf([-V|CNF], S) :- !,output_cnf148,2821 -output_cnf([-V|CNF], S) :- !,output_cnf148,2821 -output_cnf([-V|CNF], S) :- !,output_cnf148,2821 -output_cnf([V|CNF], S) :-output_cnf151,2896 -output_cnf([V|CNF], S) :-output_cnf151,2896 -output_cnf([V|CNF], S) :-output_cnf151,2896 -input_ddnnf(Stream, SVars, PVs, ddnnf(Out, SVars, Result)) :-input_ddnnf155,2967 -input_ddnnf(Stream, SVars, PVs, ddnnf(Out, SVars, Result)) :-input_ddnnf155,2967 -input_ddnnf(Stream, SVars, PVs, ddnnf(Out, SVars, Result)) :-input_ddnnf155,2967 -process_nnf_lines(Stream, SVars, PVs, LineNumber, TempResults, O, LL) :-process_nnf_lines164,3280 -process_nnf_lines(Stream, SVars, PVs, LineNumber, TempResults, O, LL) :-process_nnf_lines164,3280 -process_nnf_lines(Stream, SVars, PVs, LineNumber, TempResults, O, LL) :-process_nnf_lines164,3280 -process_nnf_line(SVars, PVs, _TempResults, Exp) --> "L ",process_nnf_line176,3796 -process_nnf_line(SVars, PVs, _TempResults, Exp) --> "L ",process_nnf_line176,3796 -process_nnf_line(SVars, PVs, _TempResults, Exp) --> "L ",process_nnf_line176,3796 -process_nnf_line(_SVars, _, TempResults, Exp) --> "A ",process_nnf_line178,3882 -process_nnf_line(_SVars, _, TempResults, Exp) --> "A ",process_nnf_line178,3882 -process_nnf_line(_SVars, _, TempResults, Exp) --> "A ",process_nnf_line178,3882 -process_nnf_line(_SVars, _, TempResults, Exp) --> "O ",process_nnf_line180,3971 -process_nnf_line(_SVars, _, TempResults, Exp) --> "O ",process_nnf_line180,3971 -process_nnf_line(_SVars, _, TempResults, Exp) --> "O ",process_nnf_line180,3971 -nnf_leaf(SVars, PVs, Prob, Codes, []) :-nnf_leaf183,4060 -nnf_leaf(SVars, PVs, Prob, Codes, []) :-nnf_leaf183,4060 -nnf_leaf(SVars, PVs, Prob, Codes, []) :-nnf_leaf183,4060 -parameter(F,[F1|_Exs]) :- F == F1, !.parameter193,4280 -parameter(F,[F1|_Exs]) :- F == F1, !.parameter193,4280 -parameter(F,[F1|_Exs]) :- F == F1, !.parameter193,4280 -parameter(F,[_|Exs]) :-parameter194,4318 -parameter(F,[_|Exs]) :-parameter194,4318 -parameter(F,[_|Exs]) :-parameter194,4318 -nnf_and_node(TempResults, Product, Codes, []) :-nnf_and_node197,4363 -nnf_and_node(TempResults, Product, Codes, []) :-nnf_and_node197,4363 -nnf_and_node(TempResults, Product, Codes, []) :-nnf_and_node197,4363 -multiply_nodes([], _, 1).multiply_nodes201,4505 -multiply_nodes([], _, 1).multiply_nodes201,4505 -multiply_nodes(NumberAsString.NumberAsStrings, TempResults, Product) :-multiply_nodes202,4531 -multiply_nodes(NumberAsString.NumberAsStrings, TempResults, Product) :-multiply_nodes202,4531 -multiply_nodes(NumberAsString.NumberAsStrings, TempResults, Product) :-multiply_nodes202,4531 -nnf_or_node(TempResults, Sum, Codes, []) :-nnf_or_node209,4764 -nnf_or_node(TempResults, Sum, Codes, []) :-nnf_or_node209,4764 -nnf_or_node(TempResults, Sum, Codes, []) :-nnf_or_node209,4764 -add_nodes([], _, 0).add_nodes213,4896 -add_nodes([], _, 0).add_nodes213,4896 -add_nodes(NumberAsString.NumberAsStrings, TempResults, Product) :-add_nodes214,4917 -add_nodes(NumberAsString.NumberAsStrings, TempResults, Product) :-add_nodes214,4917 -add_nodes(NumberAsString.NumberAsStrings, TempResults, Product) :-add_nodes214,4917 -ones([]).ones221,5140 -ones([]).ones221,5140 -ones([1|LVars]) :-ones222,5150 -ones([1|LVars]) :-ones222,5150 -ones([1|LVars]) :-ones222,5150 -simplify_line((A=Exp0), List, Final) :-simplify_line225,5184 -simplify_line((A=Exp0), List, Final) :-simplify_line225,5184 -simplify_line((A=Exp0), List, Final) :-simplify_line225,5184 -propagate_constants(Exp, A, Lines, Lines) :- var(Exp), !, A=Exp.propagate_constants229,5294 -propagate_constants(Exp, A, Lines, Lines) :- var(Exp), !, A=Exp.propagate_constants229,5294 -propagate_constants(Exp, A, Lines, Lines) :- var(Exp), !, A=Exp.propagate_constants229,5294 -propagate_constants(0, 0, Lines, Lines) :- !.propagate_constants230,5359 -propagate_constants(0, 0, Lines, Lines) :- !.propagate_constants230,5359 -propagate_constants(0, 0, Lines, Lines) :- !.propagate_constants230,5359 -propagate_constants(1, 1, Lines, Lines) :- !.propagate_constants231,5405 -propagate_constants(1, 1, Lines, Lines) :- !.propagate_constants231,5405 -propagate_constants(1, 1, Lines, Lines) :- !.propagate_constants231,5405 -propagate_constants(Exp, A, Lines, [(A=Exp)|Lines]).propagate_constants232,5451 -propagate_constants(Exp, A, Lines, [(A=Exp)|Lines]).propagate_constants232,5451 -ddnnf_is(ddnnf(F, Vs, Out), Out) :-ddnnf_is238,5539 -ddnnf_is(ddnnf(F, Vs, Out), Out) :-ddnnf_is238,5539 -ddnnf_is(ddnnf(F, Vs, Out), Out) :-ddnnf_is238,5539 -ddnnf_is_acc([]).ddnnf_is_acc245,5725 -ddnnf_is_acc([]).ddnnf_is_acc245,5725 -ddnnf_is_acc([H=Exp|Attrs]) :-ddnnf_is_acc246,5743 -ddnnf_is_acc([H=Exp|Attrs]) :-ddnnf_is_acc246,5743 -ddnnf_is_acc([H=Exp|Attrs]) :-ddnnf_is_acc246,5743 - -packages/bdd/examples/bdd.yap,1053 -t1 :-t18,117 -t1(BDD:T) :-t114,156 -t1(BDD:T) :-t114,156 -t1(BDD:T) :-t114,156 -t2 :-t219,220 -t2(V) :-t225,259 -t2(V) :-t225,259 -t2(V) :-t225,259 -t3 :-t332,374 -t3(V) :-t338,413 -t3(V) :-t338,413 -t3(V) :-t338,413 -eval_bdd(pp(P,X,L,R), _, P) :-eval_bdd47,587 -eval_bdd(pp(P,X,L,R), _, P) :-eval_bdd47,587 -eval_bdd(pp(P,X,L,R), _, P) :-eval_bdd47,587 -eval_bdd(pn(P,X,L,R), _, P) :-eval_bdd49,652 -eval_bdd(pn(P,X,L,R), _, P) :-eval_bdd49,652 -eval_bdd(pn(P,X,L,R), _, P) :-eval_bdd49,652 -t4 :-t454,724 -t4([X,Y,Z]) :-t459,750 -t4([X,Y,Z]) :-t459,750 -t4([X,Y,Z]) :-t459,750 -t5 :-t565,827 -t5(V) :-t571,866 -t5(V) :-t571,866 -t5(V) :-t571,866 -t6 :-t679,1016 -t6(V) :-t685,1055 -t6(V) :-t685,1055 -t6(V) :-t685,1055 -eval_prob(pp(P,X,L,R), _, P) :-eval_prob94,1242 -eval_prob(pp(P,X,L,R), _, P) :-eval_prob94,1242 -eval_prob(pp(P,X,L,R), _, P) :-eval_prob94,1242 -eval_prob(pn(P,X,L,R), _, P) :-eval_prob96,1299 -eval_prob(pn(P,X,L,R), _, P) :-eval_prob96,1299 -eval_prob(pn(P,X,L,R), _, P) :-eval_prob96,1299 - -packages/bdd/simpbool.yap,1521 -simplify_exp(V,V) :- var(V), !.simplify_exp10,154 -simplify_exp(V,V) :- var(V), !.simplify_exp10,154 -simplify_exp(V,V) :- var(V), !.simplify_exp10,154 -simplify_exp(S1+S2,NS) :- !,simplify_exp11,186 -simplify_exp(S1+S2,NS) :- !,simplify_exp11,186 -simplify_exp(S1+S2,NS) :- !,simplify_exp11,186 -simplify_exp(S1*S2,NS) :- !,simplify_exp15,292 -simplify_exp(S1*S2,NS) :- !,simplify_exp15,292 -simplify_exp(S1*S2,NS) :- !,simplify_exp15,292 -simplify_exp(not(S),NS) :- !,simplify_exp19,399 -simplify_exp(not(S),NS) :- !,simplify_exp19,399 -simplify_exp(not(S),NS) :- !,simplify_exp19,399 -simplify_exp(S,S).simplify_exp22,474 -simplify_exp(S,S).simplify_exp22,474 -simplify_sum(V1, V2, O) :- simplify_sum24,494 -simplify_sum(V1, V2, O) :- simplify_sum24,494 -simplify_sum(V1, V2, O) :- simplify_sum24,494 -simplify_prod(V1, V2, O) :- simplify_prod36,945 -simplify_prod(V1, V2, O) :- simplify_prod36,945 -simplify_prod(V1, V2, O) :- simplify_prod36,945 -simplify_not(V, not(V)) :- var(V), !.simplify_not49,1419 -simplify_not(V, not(V)) :- var(V), !.simplify_not49,1419 -simplify_not(V, not(V)) :- var(V), !.simplify_not49,1419 -simplify_not(0, 1) :- !.simplify_not50,1457 -simplify_not(0, 1) :- !.simplify_not50,1457 -simplify_not(0, 1) :- !.simplify_not50,1457 -simplify_not(1, 0) :- !.simplify_not51,1482 -simplify_not(1, 0) :- !.simplify_not51,1482 -simplify_not(1, 0) :- !.simplify_not51,1482 -simplify_not(SS, not(SS)).simplify_not52,1507 -simplify_not(SS, not(SS)).simplify_not52,1507 - -packages/bdd/simplecudd/general.c,561 -int getRealNumber(char *c, double *number) {getRealNumber194,15194 -int getIntNumber(char *c, int *number) {getIntNumber201,15402 -inline int getPosNumber(char *c, int *number) {getPosNumber209,15688 -int IsRealNumber(char *c) {IsRealNumber213,15791 -int IsPosNumber(const char *c) {IsPosNumber225,16101 -int IsNumber(const char *c) {IsNumber235,16281 -char * freadstr(FILE *fd, const char *separators) {freadstr248,16562 -int CharIn(const char c, const char *in) {CharIn269,17082 -int patternmatch(char *pattern, char *thestr) {patternmatch278,17237 - -packages/bdd/simplecudd/general.h,170 -#define IsNumberDigit(IsNumberDigit196,15248 -#define IsSignDigit(IsSignDigit197,15302 -#define isOperator(isOperator198,15356 -#define freadline(freadline199,15434 - -packages/bdd/simplecudd/LICENSE,0 - -packages/bdd/simplecudd/problogbdd.c,6369 -#define VERSION VERSION196,15279 - #define max(max200,15318 -const double my_infinity = 1.0/0.0;my_infinity204,15446 -typedef struct _parameters {_parameters206,15483 - int loadfile;loadfile207,15512 - int loadfile;_parameters::loadfile207,15512 - int savedfile;savedfile208,15528 - int savedfile;_parameters::savedfile208,15528 - int exportfile;exportfile209,15545 - int exportfile;_parameters::exportfile209,15545 - int inputfile;inputfile210,15563 - int inputfile;_parameters::inputfile210,15563 - int debug;debug211,15580 - int debug;_parameters::debug211,15580 - int errorcnt;errorcnt212,15593 - int errorcnt;_parameters::errorcnt212,15593 - int *error;error213,15609 - int *error;_parameters::error213,15609 - int method;method214,15623 - int method;_parameters::method214,15623 - int queryid;queryid215,15637 - int queryid;_parameters::queryid215,15637 - int timeout;timeout216,15652 - int timeout;_parameters::timeout216,15652 - double sigmoid_slope;sigmoid_slope217,15667 - double sigmoid_slope;_parameters::sigmoid_slope217,15667 - int online;online218,15691 - int online;_parameters::online218,15691 - int maxbufsize;maxbufsize219,15705 - int maxbufsize;_parameters::maxbufsize219,15705 - char *ppid;ppid220,15723 - char *ppid;_parameters::ppid220,15723 - int orderfile;orderfile221,15737 - int orderfile;_parameters::orderfile221,15737 - int utilfile;utilfile222,15754 - int utilfile;_parameters::utilfile222,15754 - int independent_forest;independent_forest223,15770 - int independent_forest;_parameters::independent_forest223,15770 - int local_search;local_search224,15796 - int local_search;_parameters::local_search224,15796 - int dynreorder;dynreorder225,15816 - int dynreorder;_parameters::dynreorder225,15816 - int staticorder;staticorder226,15834 - int staticorder;_parameters::staticorder226,15834 -} parameters;parameters227,15853 -typedef struct _gradientpair {_gradientpair229,15868 - double probability;probability230,15899 - double probability;_gradientpair::probability230,15899 - double gradient;gradient231,15921 - double gradient;_gradientpair::gradient231,15921 -} gradientpair;gradientpair232,15940 -typedef struct _extmanager {_extmanager234,15957 - DdManager *manager;manager235,15986 - DdManager *manager;_extmanager::manager235,15986 - DdNode *t, *f;t236,16008 - DdNode *t, *f;_extmanager::t236,16008 - DdNode *t, *f;f236,16008 - DdNode *t, *f;_extmanager::f236,16008 - hisqueue *his;his237,16025 - hisqueue *his;_extmanager::his237,16025 - namedvars varmap;varmap238,16042 - namedvars varmap;_extmanager::varmap238,16042 -} extmanager;extmanager239,16062 -typedef struct _bdd_mgr {_bdd_mgr241,16077 - extmanager extmanager;extmanager242,16103 - extmanager extmanager;_bdd_mgr::extmanager242,16103 - DdNode *root;root243,16128 - DdNode *root;_bdd_mgr::root243,16128 -} bdd_mgr;bdd_mgr244,16144 -parameters params;params250,16269 -int main(int argc, char **arg) {main283,18024 -double* read_util_file(char *filename){read_util_file598,30232 -int forestSize(DdNode **forest) {forestSize632,31140 -typedef struct _util_add {_util_add641,31241 - DdNode * root;root642,31268 - DdNode * root;_util_add::root642,31268 - double util_spread;util_spread643,31285 - double util_spread;_util_add::util_spread643,31285 -} util_add;util_add644,31307 -int compare_util_adds(const void* A, const void* B){compare_util_adds646,31320 -void exact_strategy_search(extmanager* MyManager, DdNode **forest, double* utilities){exact_strategy_search652,31573 -DdNode* buildADDfromBDD(extmanager* MyManager, DdNode *Current, DdManager* addmgr) {buildADDfromBDD809,37054 -void ReInitAndUnrefHistory(hisqueue *HisQueue, int varcnt, DdManager* mgr) {ReInitAndUnrefHistory900,39952 -char* GetAddNodeVarNameDisp(namedvars varmap, DdNode *node) {GetAddNodeVarNameDisp917,40509 -int extractstrategy(extmanager* MyManager, DdManager * add_mgr, DdNode *Current, DdNode *max_node) {extractstrategy929,40848 -DdNode * setLowerBound(DdManager * dd, DdNode * f, double lowerBound) {setLowerBound960,41930 -DdNode * setLowerBoundRecur(DdManager * dd, DdNode * f, double lowerBound) {setLowerBoundRecur968,42130 -void local_strategy_search(extmanager* MyManager, DdNode **forest, double* utilities){local_strategy_search1013,43132 -typedef struct _decision{_decision1044,44200 - int var;var1045,44226 - int var;_decision::var1045,44226 - int nb_rel_bdds;nb_rel_bdds1046,44236 - int nb_rel_bdds;_decision::nb_rel_bdds1046,44236 - int alloc_rel_bdds;alloc_rel_bdds1047,44254 - int alloc_rel_bdds;_decision::alloc_rel_bdds1047,44254 - int* rel_bdds;rel_bdds1048,44275 - int* rel_bdds;_decision::rel_bdds1048,44275 - int* rel_bdds_var;rel_bdds_var1049,44291 - int* rel_bdds_var;_decision::rel_bdds_var1049,44291 -} decision;decision1050,44311 -void local_strategy_search_independent(bdd_mgr* bdd_mgrs, double* utilities, int nb_bdds, namedvars globalvars){local_strategy_search_independent1052,44324 -double expected_value(extmanager* MyManager, DdNode **forest, double* utilities){expected_value1158,48538 -void print_strategy(namedvars varmap){print_strategy1177,49036 -void newManager(extmanager* MyManager, bddfileheader fileheader, int nbManagers){newManager1196,49763 -int printTime(void){printTime1216,50802 -bdd_mgr* generateIndependentBDDForest(bddfileheader fileheader) {generateIndependentBDDForest1225,50997 -int LoadVariableDataForForest(namedvars varmap, char *filename) {LoadVariableDataForForest1410,58738 -int argtype(const char *arg) {argtype1529,62251 -void printhelp(int argc, char **arg) {printhelp1552,63712 -parameters loadparam(int argc, char **arg) {loadparam1586,66921 -void handler(int num) {handler1757,70971 -void pidhandler(int num) {pidhandler1762,71078 -void termhandler(int num) {termhandler1781,71530 -void myexpand(extmanager MyManager, DdNode *Current) {myexpand1787,71607 -double CalcProbability(extmanager MyManager, DdNode *Current) {CalcProbability1807,72296 -gradientpair CalcGradient(extmanager MyManager, DdNode *Current, int TargetVar, char *TargetPattern, int type) {CalcGradient1866,74549 -char * extractpattern(char *thestr) {extractpattern1961,78800 -int patterncalculated(char *pattern, extmanager MyManager, int loc) {patterncalculated1974,79083 - -packages/bdd/simplecudd/problogmath.c,952 -double sigmoid(double x, double slope) {sigmoid192,15195 -double Phi(double x) {Phi198,15472 -double cumulative_normal(double low, double high, double mu, double sigma) {cumulative_normal229,16043 -double cumulative_normal_upper(double high, double mu, double sigma) {cumulative_normal_upper234,16230 -double normal(double x, double mu,double sigma) {normal240,16388 -double cumulative_normal_dmu(double low, double high,double mu,double sigma) {cumulative_normal_dmu246,16559 -double cumulative_normal_upper_dmu(double high,double mu,double sigma) {cumulative_normal_upper_dmu250,16696 -double cumulative_normal_dsigma(double low, double high,double mu,double sigma) {cumulative_normal_dsigma255,16808 -double cumulative_normal_upper_dsigma(double high,double mu,double sigma) {cumulative_normal_upper_dsigma259,16977 -density_integral parse_density_integral_string(char *input, char *variablename) {parse_density_integral_string266,17278 - -packages/bdd/simplecudd/problogmath.h,434 -typedef struct _density_integral {_density_integral195,15245 - double low;low196,15280 - double low;_density_integral::low196,15280 - double high;high197,15294 - double high;_density_integral::high197,15294 - double mu;mu198,15309 - double mu;_density_integral::mu198,15309 - double log_sigma;log_sigma199,15322 - double log_sigma;_density_integral::log_sigma199,15322 -} density_integral;density_integral200,15342 - -packages/bdd/simplecudd/simplecudd,11 -H6,13187 - -packages/bdd/simplecudd/simplecudd.c,4857 -int _debug = 0;_debug194,15201 -int _RapidLoad = 0;_RapidLoad195,15217 -int _maxbufsize = 0;_maxbufsize196,15237 -DdManager* simpleBDDinit(int varcnt) {simpleBDDinit198,15259 -DdManager* simpleBDDinitNoReOrder(int varcnt) {simpleBDDinitNoReOrder208,15599 -DdNode* HighNodeOf(DdManager *manager, DdNode *node) {HighNodeOf220,16000 -DdNode* LowNodeOf(DdManager *manager, DdNode *node) {LowNodeOf229,16289 -DdNode* D_BDDAnd(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDAnd240,16604 -DdNode* D_BDDNand(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDNand249,16820 -DdNode* D_BDDOr(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDOr258,17038 -DdNode* D_BDDNor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDNor267,17252 -DdNode* D_BDDXor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDXor276,17468 -DdNode* D_BDDXnor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDXnor285,17684 -bddfileheader ReadFileHeader(char *filename) {ReadFileHeader296,17927 -int CheckFileVersion(const char *version) {CheckFileVersion356,19598 -int simpleBDDtoDot(DdManager *manager, DdNode *bdd, char *filename) {simpleBDDtoDot364,20041 -int simpleNamedBDDtoDot(DdManager *manager, const namedvars varmap, DdNode *bdd, char *filename) {simpleNamedBDDtoDot379,20362 -int SaveNodeDump(DdManager *manager, namedvars varmap, DdNode *bdd, char *filename) {SaveNodeDump398,20899 -void SaveExpand(DdManager *manager, namedvars varmap, hisqueue *Nodes, DdNode *Current, FILE *outputfile) {SaveExpand419,21683 -DdNode * LoadNodeDump(DdManager *manager, namedvars varmap, FILE *inputfile) {LoadNodeDump462,23460 -DdNode * LoadNodeRec(DdManager *manager, namedvars varmap, hisqueue *Nodes, FILE *inputfile, nodeline current) {LoadNodeRec495,24508 -DdNode * GetIfExists(DdManager *manager, namedvars varmap, hisqueue *Nodes, char *varname, int nodenum) {GetIfExists573,27784 -void ExpandNodes(hisqueue *Nodes, int index, int nodenum) {ExpandNodes590,28451 -char** GetVariableOrder(char *filename, int varcnt) {GetVariableOrder603,28924 -int LoadVariableData(namedvars varmap, char *filename) {LoadVariableData647,30137 -hisqueue* InitHistory(int varcnt) {InitHistory766,33919 -void ReInitHistory(hisqueue *HisQueue, int varcnt) {ReInitHistory777,34163 -void AddNode(hisqueue *HisQueue, int varstart, DdNode *node, double dvalue, int ivalue, void *dynvalue) {AddNode790,34541 -hisnode* GetNode(hisqueue *HisQueue, int varstart, DdNode *node) {GetNode800,35093 -int GetNodeIndex(hisqueue *HisQueue, int varstart, DdNode *node) {GetNodeIndex809,35363 -namedvars InitNamedVars(int varcnt, int varstart) {InitNamedVars820,35626 -void EnlargeNamedVars(namedvars *varmap, int newvarcnt) {EnlargeNamedVars840,36226 -int AddNamedVarAt(namedvars varmap, const char *varname, int index) {AddNamedVarAt857,36923 -int AddNamedVar(namedvars varmap, const char *varname) {AddNamedVar866,37183 -void SetNamedVarValuesAt(namedvars varmap, int index, double dvalue, int ivalue, void *dynvalue) {SetNamedVarValuesAt878,37572 -int SetNamedVarValues(namedvars varmap, const char *varname, double dvalue, int ivalue, void *dynvalue) {SetNamedVarValues884,37777 -int GetNamedVarIndex(const namedvars varmap, const char *varname) {GetNamedVarIndex903,38444 -char* GetNodeVarName(DdManager *manager, namedvars varmap, DdNode *node) {GetNodeVarName912,38700 -char* GetNodeVarNameDisp(DdManager *manager, namedvars varmap, DdNode *node) {GetNodeVarNameDisp919,38955 -int RepairVarcnt(namedvars *varmap) {RepairVarcnt926,39218 -int all_loaded(namedvars varmap, int disp) {all_loaded932,39363 -int ImposeOrder(DdManager *manager, const namedvars varmap, char **map) {ImposeOrder943,39655 -int get_var_pos_in_map(char **map, const char *var, int varcnt) {get_var_pos_in_map967,40346 -DdNode* FileGenerateBDD(DdManager *manager, namedvars varmap, bddfileheader fileheader) {FileGenerateBDD978,40567 -DdNode** FileGenerateBDDForest(DdManager *manager, namedvars varmap, bddfileheader fileheader) {FileGenerateBDDForest989,40943 -int getInterBDD(char *function) {getInterBDD1164,48071 -char* getFileName(const char *function) {getFileName1185,48519 -DdNode* LineParser(DdManager *manager, namedvars varmap, DdNode **inter, int maxinter, char *function, int iline) {LineParser1201,48984 -DdNode* BDD_Operator(DdManager *manager, DdNode *bdd1, DdNode *bdd2, char Operator, int inegoper) {BDD_Operator1347,55308 -DdNode* OnlineGenerateBDD(DdManager *manager, namedvars *varmap) {OnlineGenerateBDD1367,55885 -DdNode* OnlineLineParser(DdManager *manager, namedvars *varmap, DdNode **inter, int maxinter, char *function, int iline) {OnlineLineParser1514,61474 -int GetParam(char *inputline, int iParam) {GetParam1660,67792 -void onlinetraverse(DdManager *manager, namedvars varmap, hisqueue *HisQueue, DdNode *bdd) {onlinetraverse1690,68538 - -packages/bdd/simplecudd/simplecudd.h,3180 -#define IsHigh(IsHigh217,15587 -#define IsLow(IsLow218,15641 -#define HIGH(HIGH219,15694 -#define LOW(LOW220,15748 -#define NOT(NOT221,15812 -#define GetIndex(GetIndex222,15859 -#define GetOrder(GetOrder223,15916 -#define GetVar(GetVar224,15987 -#define NewVar(NewVar225,16050 -#define KillBDD(KillBDD226,16106 -#define GetVarCount(GetVarCount227,16157 -#define DEBUGON DEBUGON228,16212 -#define DEBUGOFF DEBUGOFF229,16255 -#define RAPIDLOADON RAPIDLOADON230,16298 -#define RAPIDLOADOFF RAPIDLOADOFF231,16345 -#define SETMAXBUFSIZE(SETMAXBUFSIZE232,16392 -#define BDDFILE_ERROR BDDFILE_ERROR233,16443 -#define BDDFILE_OTHER BDDFILE_OTHER234,16478 -#define BDDFILE_SCRIPT BDDFILE_SCRIPT235,16512 -#define BDDFILE_NODEDUMP BDDFILE_NODEDUMP236,16546 -typedef struct _bddfileheader {_bddfileheader242,16648 - FILE *inputfile;inputfile243,16680 - FILE *inputfile;_bddfileheader::inputfile243,16680 - int version;version244,16699 - int version;_bddfileheader::version244,16699 - int varcnt;varcnt245,16714 - int varcnt;_bddfileheader::varcnt245,16714 - int varstart;varstart246,16728 - int varstart;_bddfileheader::varstart246,16728 - int intercnt;intercnt247,16744 - int intercnt;_bddfileheader::intercnt247,16744 - int filetype;filetype248,16760 - int filetype;_bddfileheader::filetype248,16760 -} bddfileheader;bddfileheader249,16776 -typedef struct _namedvars {_namedvars251,16794 - int varcnt;varcnt252,16822 - int varcnt;_namedvars::varcnt252,16822 - int varstart;varstart253,16836 - int varstart;_namedvars::varstart253,16836 - char **vars;vars254,16852 - char **vars;_namedvars::vars254,16852 - int *loaded;loaded255,16867 - int *loaded;_namedvars::loaded255,16867 - double *dvalue;dvalue256,16882 - double *dvalue;_namedvars::dvalue256,16882 - int *ivalue;ivalue257,16900 - int *ivalue;_namedvars::ivalue257,16900 - void **dynvalue;dynvalue258,16915 - void **dynvalue;_namedvars::dynvalue258,16915 -} namedvars;namedvars259,16934 -typedef struct _hisnode {_hisnode261,16948 - DdNode *key;key262,16974 - DdNode *key;_hisnode::key262,16974 - double dvalue;dvalue263,16989 - double dvalue;_hisnode::dvalue263,16989 - int ivalue;ivalue264,17006 - int ivalue;_hisnode::ivalue264,17006 - void *dynvalue;dynvalue265,17020 - void *dynvalue;_hisnode::dynvalue265,17020 -} hisnode;hisnode266,17038 -typedef struct _hisqueue {_hisqueue268,17050 - int cnt;cnt269,17077 - int cnt;_hisqueue::cnt269,17077 - hisnode *thenode;thenode270,17088 - hisnode *thenode;_hisqueue::thenode270,17088 -} hisqueue;hisqueue271,17108 -typedef struct _nodeline {_nodeline273,17121 - char *varname;varname274,17148 - char *varname;_nodeline::varname274,17148 - char *truevar;truevar275,17165 - char *truevar;_nodeline::truevar275,17165 - char *falsevar;falsevar276,17182 - char *falsevar;_nodeline::falsevar276,17182 - int nodenum;nodenum277,17200 - int nodenum;_nodeline::nodenum277,17200 - int truenode;truenode278,17215 - int truenode;_nodeline::truenode278,17215 - int falsenode;falsenode279,17231 - int falsenode;_nodeline::falsenode279,17231 -} nodeline;nodeline280,17248 - -packages/bdd/simplecudd_lfi/adterror.c,158 -void ADTError(char *name, ADTErrorCodes error, char *proc)ADTError17,378 -void ADTWarning(char *name, ADTWarningCodes warning, char *proc)ADTWarning34,750 - -packages/bdd/simplecudd_lfi/adterror.h,1365 -#define ADTERROR_HADTERROR_H12,321 -#define ADT_AStack ADT_AStack21,442 -#define ADT_AStackIter ADT_AStackIter22,489 -#define ADT_Buffer ADT_Buffer23,545 -#define ADT_BufferIO ADT_BufferIO24,587 -#define ADT_Deque ADT_Deque25,635 -#define ADT_DequeIter ADT_DequeIter26,676 -#define ADT_HashTable ADT_HashTable27,726 -#define ADT_HashTableIter ADT_HashTableIter28,772 -#define ADT_Queue ADT_Queue29,827 -#define ADT_QueueIter ADT_QueueIter30,868 -#define ADT_Stack ADT_Stack31,918 -#define ADT_StackIter ADT_StackIter32,959 -#define ADT_Table ADT_Table33,1009 -#define ADT_TableIter ADT_TableIter34,1054 -#define ADT_Tree ADT_Tree35,1108 -#define ADT_TreeIter ADT_TreeIter36,1152 -typedef enum _ADTErrorCodes {_ADTErrorCodes40,1229 - E_Allocation,E_Allocation41,1259 - E_NullQueue,E_NullQueue42,1275 - E_NullQueueIter,E_NullQueueIter43,1290 - E_Seek,E_Seek44,1309 - E_SeekOverflow,E_SeekOverflow45,1319 - E_SeekUnderflow,E_SeekUnderflow46,1337 - E_NullHashTable,E_NullHashTable48,1402 - E_NullHashTableIter,E_NullHashTableIter49,1421 - E_NullAVLTable,E_NullAVLTable51,1489 - E_NullAVLTableIter,E_NullAVLTableIter52,1507 - E_UndefinedE_Undefined54,1530 -} ADTErrorCodes;ADTErrorCodes55,1544 -typedef enum _ADTWarningCodes {_ADTWarningCodes57,1562 - W_UndefinedW_Undefined58,1594 -} ADTWarningCodes;ADTWarningCodes59,1608 - -packages/bdd/simplecudd_lfi/allocate.c,132 -PRIVATE int bytesAllocated = 0;bytesAllocated24,458 -void *Allocate(int bytes)Allocate35,568 -void Free(void *memory)Free52,751 - -packages/bdd/simplecudd_lfi/allocate.h,37 -#define ALLOCATE_HALLOCATE_H14,324 - -packages/bdd/simplecudd_lfi/apt.h,848 -#define APT_HAPT_H14,336 -#define ERROR ERROR21,412 -#define EXTERN EXTERN25,452 -#define FAILURE FAILURE29,498 -#define FALSE FALSE33,539 -#define INFINITY INFINITY37,580 -#define PRIVATE PRIVATE41,628 -#define PUBLICPUBLIC45,674 -#define SUCCESS SUCCESS49,713 -#define TRUE TRUE53,752 -#define __ANSI_C____ANSI_C__58,817 -typedef void (*ApplyFunction)(void*);ApplyFunction61,844 -typedef void (*ApplyFunction1)(void*,void*);ApplyFunction162,882 -typedef void (*ApplyFunction2)(void*,void*,void*);ApplyFunction263,927 -typedef void (*ApplyFunction3)(void*,void*,void*,void*);ApplyFunction364,978 -typedef int (*ComparisonFunction)(void*, void*);ComparisonFunction65,1035 -typedef void (*DisposeFunction)(void*);DisposeFunction66,1084 -typedef void (*ApplyFunctionGeneric)(void* target, void* args[]);ApplyFunctionGeneric68,1125 - -packages/bdd/simplecudd_lfi/cheaders.h,119 -#define APT_CHEADERS_HAPT_CHEADERS_H8,248 -# define VA_START(VA_START38,881 -# define VA_START(VA_START42,974 - -packages/bdd/simplecudd_lfi/Example.c,815 -typedef struct _extmanager {_extmanager190,15012 - DdManager *manager;manager191,15041 - DdManager *manager;_extmanager::manager191,15041 - DdNode *t, *f;t192,15063 - DdNode *t, *f;_extmanager::t192,15063 - DdNode *t, *f;f192,15063 - DdNode *t, *f;_extmanager::f192,15063 - hisqueue *his;his193,15080 - hisqueue *his;_extmanager::his193,15080 - namedvars varmap;varmap194,15097 - namedvars varmap;_extmanager::varmap194,15097 -} extmanager;extmanager195,15117 -int main(int argc, char **arg) {main202,15450 -void DFS(extmanager MyManager, DdNode *Current) {DFS289,18789 -void getalltruepaths(extmanager MyManager, DdNode *Current, const char *startpath, const char *prevvar) {getalltruepaths311,19688 -int bufstrcat(char *targetstr, int targetmem, const char *srcstr) {bufstrcat337,20647 - -packages/bdd/simplecudd_lfi/general.c,369 -int IsRealNumber(char *c) {IsRealNumber192,15032 -int IsPosNumber(const char *c) {IsPosNumber204,15342 -int IsNumber(const char *c) {IsNumber214,15522 -char * freadstr(FILE *fd, const char *separators) {freadstr227,15803 -int CharIn(const char c, const char *in) {CharIn248,16323 -int patternmatch(const char *pattern, const char *thestr) {patternmatch257,16478 - -packages/bdd/simplecudd_lfi/general.h,170 -#define IsNumberDigit(IsNumberDigit192,15047 -#define IsSignDigit(IsSignDigit193,15101 -#define isOperator(isOperator194,15155 -#define freadline(freadline195,15233 - -packages/bdd/simplecudd_lfi/iqueue.c,963 -void QueueIteratorDispose(QueueIterator qi)QueueIteratorDispose40,729 -QueueIterator QueueIteratorNew(Queue q, int start)QueueIteratorNew56,908 -int QueueIteratorAtTop(QueueIterator qi)QueueIteratorAtTop86,1441 -int QueueIteratorAtBottom(QueueIterator qi)QueueIteratorAtBottom104,1726 -int QueueIteratorAtPosition(QueueIterator qi, int position)QueueIteratorAtPosition122,2022 -int QueueIteratorPosition(QueueIterator qi)QueueIteratorPosition143,2419 -void *QueueIteratorCurrentData(QueueIterator qi)QueueIteratorCurrentData161,2699 -void *QueueIteratorPreviousData(QueueIterator qi)QueueIteratorPreviousData179,3014 -void QueueIteratorAdvance(QueueIterator qi)QueueIteratorAdvance197,3328 -void QueueIteratorBackup(QueueIterator qi)QueueIteratorBackup217,3706 -void QueueIteratorAbsoluteSeek(QueueIterator qi, int position)QueueIteratorAbsoluteSeek235,3997 -void QueueIteratorRelativeSeek(QueueIterator qi,int disp)QueueIteratorRelativeSeek267,4814 - -packages/bdd/simplecudd_lfi/iqueue.h,616 -#define IQUEUE_HIQUEUE_H14,338 -typedef struct _QueueIterator {_QueueIterator22,427 - int position;position23,459 - int position;_QueueIterator::position23,459 - Queue queue;queue24,475 - Queue queue;_QueueIterator::queue24,475 - QueueItem currentItem, previousItem;currentItem25,490 - QueueItem currentItem, previousItem;_QueueIterator::currentItem25,490 - QueueItem currentItem, previousItem;previousItem25,490 - QueueItem currentItem, previousItem;_QueueIterator::previousItem25,490 -} _QueueIterator, *QueueIterator;_QueueIterator26,529 -} _QueueIterator, *QueueIterator;QueueIterator26,529 - -packages/bdd/simplecudd_lfi/pqueue.c,1923 -void QueueApply(Queue q, ApplyFunction f)QueueApply54,1157 -void QueueApply1(Queue q, void *p1, ApplyFunction1 f)QueueApply175,1422 -void QueueApply2(Queue q, void *p1, void *p2, ApplyFunction2 f)QueueApply297,1717 -void QueueApply3(Queue q, void *p1, void* p2, void *p3, ApplyFunction3 f)QueueApply3120,2038 -void *QueueCAR(Queue q)QueueCAR144,2382 -Queue QueueCDR(Queue q)QueueCDR162,2589 -void QueueDispose(Queue q, DisposeFunction f)QueueDispose185,2929 -void QueueDisposeItem(QueueItem item, DisposeFunction f)QueueDisposeItem209,3266 -void *QueueFind(Queue q, void *element, ComparisonFunction f)QueueFind227,3500 -void *QueueFindAndRemove(Queue q, void *element,QueueFindAndRemove250,3892 -void *QueueFindAndRemoveType(Queue q, void *element,QueueFindAndRemoveType274,4370 -void *QueueFindType(Queue q, int type)QueueFindType300,4896 -void *QueueFindTypeAndRemove(Queue q, int type)QueueFindTypeAndRemove322,5227 -void *QueueGet(Queue q)QueueGet344,5550 -QueueItem QueueGetItem(Queue q)QueueGetItem369,5858 -QueueItem QueueHead(Queue q)QueueHead393,6134 -void *QueueItemElement(QueueItem item)QueueItemElement409,6307 -int QueueItemType(QueueItem item)QueueItemType425,6489 -void *QueueLook(Queue q)QueueLook441,6654 -Queue QueueNew(void)QueueNew460,6859 -QueueItem QueueNewItem(void *element, int type)QueueNewItem482,7098 -QueueItem QueueNext(QueueItem item)QueueNext507,7457 -void QueuePut(Queue q, void *element, int type)QueuePut523,7645 -void QueuePutItem(Queue q, QueueItem item)QueuePutItem544,7909 -void QueuePutOnPriority(Queue q, void *element, int type,QueuePutOnPriority567,8218 -QueueItem QueueRemoveItem(Queue q, QueueItem item)QueueRemoveItem620,9356 -QueueItem QueueSeek(Queue q, int position)QueueSeek650,9910 -int QueueSize(Queue q)QueueSize679,10443 -QueueItem QueueTail(Queue q)QueueTail695,10594 -int QueueCompareEqual(void *x, void *y)QueueCompareEqual708,10751 - -packages/bdd/simplecudd_lfi/pqueue.h,719 -#define QUEUE_HQUEUE_H20,552 -typedef struct _QueueItem {_QueueItem28,637 - void *element;element29,665 - void *element;_QueueItem::element29,665 - int type;type30,682 - int type;_QueueItem::type30,682 - struct _QueueItem *next;next31,694 - struct _QueueItem *next;_QueueItem::next31,694 -} _QueueItem, *QueueItem;_QueueItem32,721 -} _QueueItem, *QueueItem;QueueItem32,721 -typedef struct _Queue {_Queue34,748 - struct _QueueItem *head;head35,772 - struct _QueueItem *head;_Queue::head35,772 - struct _QueueItem *tail;tail36,799 - struct _QueueItem *tail;_Queue::tail36,799 - int size;size37,826 - int size;_Queue::size37,826 -} _Queue, *Queue;_Queue38,838 -} _Queue, *Queue;Queue38,838 - -packages/bdd/simplecudd_lfi/problogbdd_lfi.c,3786 -#define VERSION VERSION193,15115 -typedef struct _parameters {_parameters197,15213 - int loadfile;loadfile198,15242 - int loadfile;_parameters::loadfile198,15242 - int savedfile;savedfile199,15258 - int savedfile;_parameters::savedfile199,15258 - int exportfile;exportfile200,15275 - int exportfile;_parameters::exportfile200,15275 - int inputfile;inputfile201,15293 - int inputfile;_parameters::inputfile201,15293 - int debug;debug202,15310 - int debug;_parameters::debug202,15310 - int errorcnt;errorcnt203,15323 - int errorcnt;_parameters::errorcnt203,15323 - int *error;error204,15339 - int *error;_parameters::error204,15339 - int method;method205,15353 - int method;_parameters::method205,15353 - int queryid;queryid206,15367 - int queryid;_parameters::queryid206,15367 - int timeout;timeout207,15382 - int timeout;_parameters::timeout207,15382 - double sigmoid_slope;sigmoid_slope208,15397 - double sigmoid_slope;_parameters::sigmoid_slope208,15397 - int online;online209,15421 - int online;_parameters::online209,15421 - int maxbufsize;maxbufsize210,15435 - int maxbufsize;_parameters::maxbufsize210,15435 - char *ppid;ppid211,15453 - char *ppid;_parameters::ppid211,15453 - int orderfile;orderfile212,15467 - int orderfile;_parameters::orderfile212,15467 -} parameters;parameters213,15484 -typedef struct _gradientpair {_gradientpair215,15499 - double probability;probability216,15530 - double probability;_gradientpair::probability216,15530 - double gradient;gradient217,15552 - double gradient;_gradientpair::gradient217,15552 -} gradientpair;gradientpair218,15571 -typedef struct _extmanager {_extmanager220,15588 - DdManager *manager;manager221,15617 - DdManager *manager;_extmanager::manager221,15617 - DdNode *t, *f;t222,15639 - DdNode *t, *f;_extmanager::t222,15639 - DdNode *t, *f;f222,15639 - DdNode *t, *f;_extmanager::f222,15639 - hisqueue *his;his223,15656 - hisqueue *his;_extmanager::his223,15656 - namedvars varmap;varmap224,15673 - namedvars varmap;_extmanager::varmap224,15673 -} extmanager;extmanager225,15693 -parameters params;params230,15820 -int main(int argc, char **arg) {main250,16714 -int argtype(const char *arg) {argtype545,27827 -void printhelp(int argc, char **arg) {printhelp578,28946 -parameters loadparam(int argc, char **arg) {loadparam636,32248 -void handler(int num) {handler776,35364 -void pidhandler(int num) {pidhandler781,35471 -void termhandler(int num) { exit(3); }termhandler803,35930 -void myexpand(extmanager MyManager, DdNode *Current) {myexpand807,36005 -double CalcProbability(extmanager MyManager, DdNode *Current) {CalcProbability828,36708 -double CalcExpectedCounts(extmanager *MyManager, DdNode *Current,CalcExpectedCounts867,37881 -#define NODE_VALUE NODE_VALUE920,39727 -#define LOG_EXPECTED LOG_EXPECTED921,39751 -static void PrintNodeQueue(Queue q, extmanager MyManager) {PrintNodeQueue923,39775 -static extmanager *ineedtostorethatsomehow;ineedtostorethatsomehow939,40368 -static int comparator(void *av, void *bv) {comparator941,40413 -static void skip_nodes(extmanager *MyManager, double (*counts)[], DdNode *node,skip_nodes980,41779 -static void skip_nodes_cnt(extmanager *MyManager, double (*counts)[],skip_nodes_cnt995,42531 -double CalcExpectedCountsDown(extmanager *MyManager, DdNode *Current,CalcExpectedCountsDown1059,44960 -double CalcExpectedCountsUp(extmanager *MyManager, DdNode *Current,CalcExpectedCountsUp1227,51353 -gradientpair CalcGradient(extmanager MyManager, DdNode *Current, int TargetVar,CalcGradient1292,53527 -char *extractpattern(const char *thestr) {extractpattern1380,57192 -int patterncalculated(char *pattern, extmanager MyManager, int loc) {patterncalculated1395,57488 - -packages/bdd/simplecudd_lfi/problogmath.c,625 -double sigmoid(double x, double slope) {sigmoid152,11875 -double Phi(double x) {Phi158,12152 -double cumulative_normal(double low, double high, double mu, double sigma) {cumulative_normal189,12723 -double normal(double x, double mu,double sigma) {normal194,12908 -double cumulative_normal_dmu(double low, double high,double mu,double sigma) {cumulative_normal_dmu200,13079 -double cumulative_normal_dsigma(double low, double high,double mu,double sigma) {cumulative_normal_dsigma204,13216 -density_integral parse_density_integral_string(char *input, const char *variablename) {parse_density_integral_string211,13563 - -packages/bdd/simplecudd_lfi/problogmath.h,418 -typedef struct _density_integral {_density_integral154,11924 - double low;low155,11959 - double low;_density_integral::low155,11959 - double high;high156,11973 - double high;_density_integral::high156,11973 - double mu;mu157,11988 - double mu;_density_integral::mu157,11988 - double sigma;sigma158,12001 - double sigma;_density_integral::sigma158,12001 -} density_integral;density_integral159,12017 - -packages/bdd/simplecudd_lfi/queuetest.c,146 -#define INT_VALUE INT_VALUE6,143 -int compare_int (const int *a, const int *b)compare_int9,218 -int main (int argc, char* argv[]) {main25,471 - -packages/bdd/simplecudd_lfi/simplecudd.c,4583 -int _debug = 0;_debug196,15204 -int _RapidLoad = 0;_RapidLoad197,15220 -int _maxbufsize = 0;_maxbufsize198,15240 -DdManager *simpleBDDinit(int varcnt) {simpleBDDinit200,15262 -DdNode *HighNodeOf(DdManager *manager, DdNode *node) {HighNodeOf216,15774 -DdNode *LowNodeOf(DdManager *manager, DdNode *node) {LowNodeOf228,16075 -DdNode *D_BDDAnd(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDAnd242,16402 -DdNode *D_BDDNand(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDNand251,16619 -DdNode *D_BDDOr(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDOr260,16838 -DdNode *D_BDDNor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDNor269,17053 -DdNode *D_BDDXor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDXor278,17270 -DdNode *D_BDDXnor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDXnor287,17487 -bddfileheader ReadFileHeader(char *filename) {ReadFileHeader298,17731 -int CheckFileVersion(const char *version) {CheckFileVersion360,19326 -int simpleBDDtoDot(DdManager *manager, DdNode *bdd, const char *filename) {simpleBDDtoDot373,19772 -int simpleNamedBDDtoDot(DdManager *manager, namedvars varmap, DdNode *bdd,simpleNamedBDDtoDot388,20099 -int SaveNodeDump(DdManager *manager, namedvars varmap, DdNode *bdd,SaveNodeDump408,20644 -void SaveExpand(DdManager *manager, namedvars varmap, hisqueue *Nodes,SaveExpand434,21467 -DdNode *LoadNodeDump(DdManager *manager, namedvars varmap, FILE *inputfile) {LoadNodeDump480,23286 -DdNode *LoadNodeRec(DdManager *manager, namedvars varmap, hisqueue *Nodes,LoadNodeRec514,24336 -DdNode *GetIfExists(DdManager *manager, namedvars varmap, hisqueue *Nodes,GetIfExists605,27777 -void ExpandNodes(hisqueue *Nodes, int index, int nodenum) {ExpandNodes626,28475 -char **GetVariableOrder(char *filename, int varcnt) {GetVariableOrder641,28957 -int LoadVariableData(namedvars varmap, char *filename) {LoadVariableData686,30188 -hisqueue *InitHistory(int varcnt) {InitHistory823,34404 -void ReInitHistory(hisqueue *HisQueue, int varcnt) {ReInitHistory835,34721 -int my_index_calc(int varstart, DdNode *node) {my_index_calc849,35154 -void AddNode(hisqueue *HisQueue, int varstart, DdNode *node, double dvalue,AddNode857,35340 -hisnode *GetNode(hisqueue *HisQueue, int varstart, DdNode *node) {GetNode874,36173 -int GetNodeIndex(hisqueue *HisQueue, int varstart, DdNode *node) {GetNodeIndex898,37144 -namedvars InitNamedVars(int varcnt, int varstart) {InitNamedVars914,37516 -void EnlargeNamedVars(namedvars *varmap, int newvarcnt) {EnlargeNamedVars934,38117 -int AddNamedVarAt(namedvars varmap, const char *varname, int index) {AddNamedVarAt953,38833 -int AddNamedVar(namedvars varmap, const char *varname) {AddNamedVar962,39100 -void SetNamedVarValuesAt(namedvars varmap, int index, double dvalue, int ivalue,SetNamedVarValuesAt974,39488 -int SetNamedVarValues(namedvars varmap, const char *varname, double dvalue,SetNamedVarValues981,39718 -int GetNamedVarIndex(const namedvars varmap, const char *varname) {GetNamedVarIndex1001,40414 -const char *GetNodeVarName(DdManager *manager, namedvars varmap, DdNode *node) {GetNodeVarName1012,40682 -const char *GetNodeVarNameDisp(DdManager *manager, namedvars varmap, DdNode *node) {GetNodeVarNameDisp1022,40955 -int RepairVarcnt(namedvars *varmap) {RepairVarcnt1032,41236 -int all_loaded(namedvars varmap, int disp) {all_loaded1039,41403 -int all_loaded_for_deterministic_variables(namedvars varmap, int disp) {all_loaded_for_deterministic_variables1054,41733 -int ImposeOrder(DdManager *manager, const namedvars varmap, char **map) {ImposeOrder1072,42271 -int get_var_pos_in_map(char **map, const char *var, int varcnt) {get_var_pos_in_map1096,42962 -DdNode *FileGenerateBDD(DdManager *manager, namedvars varmap,FileGenerateBDD1109,43195 -DdNode **FileGenerateBDDForest(DdManager *manager, namedvars varmap,FileGenerateBDDForest1114,43378 -int getInterBDD(char *function) {getInterBDD1329,51069 -char *getFileName(const char *function) {getFileName1350,51516 -DdNode *LineParser(DdManager *manager, namedvars varmap, DdNode **inter,LineParser1367,51985 -DdNode *BDD_Operator(DdManager *manager, DdNode *bdd1, DdNode *bdd2,BDD_Operator1543,58001 -DdNode *OnlineGenerateBDD(DdManager *manager, namedvars *varmap) {OnlineGenerateBDD1570,58605 -DdNode *OnlineLineParser(DdManager *manager, namedvars *varmap, DdNode **inter,OnlineLineParser1749,64765 -int GetParam(char *inputline, int iParam) {GetParam1931,70987 -void onlinetraverse(DdManager *manager, namedvars varmap, hisqueue *HisQueue,onlinetraverse1961,71733 - -packages/bdd/simplecudd_lfi/simplecudd.h,3334 -#define IsHigh(IsHigh215,15444 -#define IsLow(IsLow216,15498 -#define HIGH(HIGH217,15551 -#define LOW(LOW218,15605 -#define NOT(NOT219,15669 -#define GetIndex(GetIndex220,15716 -#define GetOrder(GetOrder221,15773 -#define GetVar(GetVar222,15844 -#define NewVar(NewVar223,15907 -#define KillBDD(KillBDD224,15963 -#define GetVarCount(GetVarCount225,16014 -#define DEBUGON DEBUGON226,16069 -#define DEBUGOFF DEBUGOFF227,16112 -#define RAPIDLOADON RAPIDLOADON228,16155 -#define RAPIDLOADOFF RAPIDLOADOFF229,16202 -#define SETMAXBUFSIZE(SETMAXBUFSIZE230,16249 -#define BDDFILE_ERROR BDDFILE_ERROR231,16300 -#define BDDFILE_OTHER BDDFILE_OTHER232,16335 -#define BDDFILE_SCRIPT BDDFILE_SCRIPT233,16369 -#define BDDFILE_NODEDUMP BDDFILE_NODEDUMP234,16403 -typedef struct _bddfileheader {_bddfileheader240,16505 - FILE *inputfile;inputfile241,16537 - FILE *inputfile;_bddfileheader::inputfile241,16537 - int version;version242,16556 - int version;_bddfileheader::version242,16556 - int varcnt;varcnt243,16571 - int varcnt;_bddfileheader::varcnt243,16571 - int varstart;varstart244,16585 - int varstart;_bddfileheader::varstart244,16585 - int intercnt;intercnt245,16601 - int intercnt;_bddfileheader::intercnt245,16601 - int filetype;filetype246,16617 - int filetype;_bddfileheader::filetype246,16617 -} bddfileheader;bddfileheader247,16633 -typedef struct _namedvars {_namedvars249,16651 - int varcnt;varcnt250,16679 - int varcnt;_namedvars::varcnt250,16679 - int varstart;varstart251,16693 - int varstart;_namedvars::varstart251,16693 - char ** vars;vars252,16709 - char ** vars;_namedvars::vars252,16709 - int *loaded;loaded253,16725 - int *loaded;_namedvars::loaded253,16725 - double *dvalue;dvalue254,16740 - double *dvalue;_namedvars::dvalue254,16740 - int *ivalue;ivalue255,16758 - int *ivalue;_namedvars::ivalue255,16758 - void **dynvalue;dynvalue256,16773 - void **dynvalue;_namedvars::dynvalue256,16773 -} namedvars;namedvars257,16792 -typedef struct _hisnode {_hisnode261,16932 - DdNode *key;key262,16958 - DdNode *key;_hisnode::key262,16958 - double dvalue;dvalue263,16973 - double dvalue;_hisnode::dvalue263,16973 - double dvalue2;// =0; //needed for expected countsdvalue2264,16990 - double dvalue2;// =0; //needed for expected counts_hisnode::dvalue2264,16990 - int ivalue;ivalue265,17043 - int ivalue;_hisnode::ivalue265,17043 - void *dynvalue;dynvalue266,17057 - void *dynvalue;_hisnode::dynvalue266,17057 -} hisnode;hisnode267,17075 -typedef struct _hisqueue {_hisqueue269,17087 - int cnt;cnt270,17114 - int cnt;_hisqueue::cnt270,17114 - hisnode *thenode;thenode271,17125 - hisnode *thenode;_hisqueue::thenode271,17125 -} hisqueue;hisqueue272,17145 -typedef struct _nodeline {_nodeline274,17158 - char *varname;varname275,17185 - char *varname;_nodeline::varname275,17185 - char *truevar;truevar276,17202 - char *truevar;_nodeline::truevar276,17202 - char *falsevar;falsevar277,17219 - char *falsevar;_nodeline::falsevar277,17219 - int nodenum;nodenum278,17237 - int nodenum;_nodeline::nodenum278,17237 - int truenode;truenode279,17252 - int truenode;_nodeline::truenode279,17252 - int falsenode;falsenode280,17268 - int falsenode;_nodeline::falsenode280,17268 -} nodeline;nodeline281,17285 - -packages/bdd/simplecudd_lfi/simplecudd_lfi,0 - -packages/bdd/trie_sp.yap,9589 -trie_to_bdd(Trie, BDD, MapList) :-trie_to_bdd9,149 -trie_to_bdd(Trie, BDD, MapList) :-trie_to_bdd9,149 -trie_to_bdd(Trie, BDD, MapList) :-trie_to_bdd9,149 -tabled_trie_to_bdd(Trie, BDD, MapList) :-tabled_trie_to_bdd20,500 -tabled_trie_to_bdd(Trie, BDD, MapList) :-tabled_trie_to_bdd20,500 -tabled_trie_to_bdd(Trie, BDD, MapList) :-tabled_trie_to_bdd20,500 -extract_vars([], []).extract_vars31,819 -extract_vars([], []).extract_vars31,819 -extract_vars((_-V).MapList, V.Vs) :-extract_vars32,841 -extract_vars((_-V).MapList, V.Vs) :-extract_vars32,841 -extract_vars((_-V).MapList, V.Vs) :-extract_vars32,841 -extract_vars((_-V).MapList, V.Vs) :-extract_vars32,841 -extract_vars((_-V).MapList, V.Vs) :-extract_vars32,841 -complex_to_andor(empty, Map, Map, 0).complex_to_andor35,907 -complex_to_andor(empty, Map, Map, 0).complex_to_andor35,907 -complex_to_andor([list(Els)], Map0, MapF, Tree) :- !,complex_to_andor36,945 -complex_to_andor([list(Els)], Map0, MapF, Tree) :- !,complex_to_andor36,945 -complex_to_andor([list(Els)], Map0, MapF, Tree) :- !,complex_to_andor36,945 -complex_to_andor(Els, Map0, MapF, Tree).complex_to_andor37,999 -complex_to_andor(Els, Map0, MapF, Tree).complex_to_andor37,999 -complex_to_andor([endlist|_], Map, Map, 1) :- !.complex_to_andor38,1040 -complex_to_andor([endlist|_], Map, Map, 1) :- !.complex_to_andor38,1040 -complex_to_andor([endlist|_], Map, Map, 1) :- !.complex_to_andor38,1040 -complex_to_andor([El1,El2|Els], Map0, MapF, or(T1,T2)) :- !,complex_to_andor40,1110 -complex_to_andor([El1,El2|Els], Map0, MapF, or(T1,T2)) :- !,complex_to_andor40,1110 -complex_to_andor([El1,El2|Els], Map0, MapF, or(T1,T2)) :- !,complex_to_andor40,1110 -complex_to_andor([Els], Map0, MapF, V) :-complex_to_andor43,1255 -complex_to_andor([Els], Map0, MapF, V) :-complex_to_andor43,1255 -complex_to_andor([Els], Map0, MapF, V) :-complex_to_andor43,1255 -complex_to_and(int(A1,[endlist]), Map0, MapF, V) :- !,complex_to_and46,1335 -complex_to_and(int(A1,[endlist]), Map0, MapF, V) :- !,complex_to_and46,1335 -complex_to_and(int(A1,[endlist]), Map0, MapF, V) :- !,complex_to_and46,1335 -complex_to_and(atom(true,[endlist]), Map0, MapF, 1) :- !.complex_to_and48,1417 -complex_to_and(atom(true,[endlist]), Map0, MapF, 1) :- !.complex_to_and48,1417 -complex_to_and(atom(true,[endlist]), Map0, MapF, 1) :- !.complex_to_and48,1417 -complex_to_and(atom(A1,[endlist]), Map0, MapF, V) :- !,complex_to_and49,1475 -complex_to_and(atom(A1,[endlist]), Map0, MapF, V) :- !,complex_to_and49,1475 -complex_to_and(atom(A1,[endlist]), Map0, MapF, V) :- !,complex_to_and49,1475 -complex_to_and(functor(not,1,[int(A1,[endlist])]), Map0, MapF, not(V)) :- !,complex_to_and50,1531 -complex_to_and(functor(not,1,[int(A1,[endlist])]), Map0, MapF, not(V)) :- !,complex_to_and50,1531 -complex_to_and(functor(not,1,[int(A1,[endlist])]), Map0, MapF, not(V)) :- !,complex_to_and50,1531 -complex_to_and(functor(not,1,[atom(A1,[endlist])]), Map0, MapF, not(V)) :- !,complex_to_and52,1635 -complex_to_and(functor(not,1,[atom(A1,[endlist])]), Map0, MapF, not(V)) :- !,complex_to_and52,1635 -complex_to_and(functor(not,1,[atom(A1,[endlist])]), Map0, MapF, not(V)) :- !,complex_to_and52,1635 -complex_to_and(int(A1,Els), Map0, MapF, and(V,T2)) :- !,complex_to_and54,1740 -complex_to_and(int(A1,Els), Map0, MapF, and(V,T2)) :- !,complex_to_and54,1740 -complex_to_and(int(A1,Els), Map0, MapF, and(V,T2)) :- !,complex_to_and54,1740 -complex_to_and(atom(A1,Els), Map0, MapF, and(V,T2)) :- !,complex_to_and57,1865 -complex_to_and(atom(A1,Els), Map0, MapF, and(V,T2)) :- !,complex_to_and57,1865 -complex_to_and(atom(A1,Els), Map0, MapF, and(V,T2)) :- !,complex_to_and57,1865 -complex_to_and(functor(not,1,[int(A1,Els)]), Map0, MapF, and(not(V),T2)) :- !,complex_to_and60,1991 -complex_to_and(functor(not,1,[int(A1,Els)]), Map0, MapF, and(not(V),T2)) :- !,complex_to_and60,1991 -complex_to_and(functor(not,1,[int(A1,Els)]), Map0, MapF, and(not(V),T2)) :- !,complex_to_and60,1991 -complex_to_and(functor(not,1,[atom(A1,Els)]), Map0, MapF, and(not(V),T2)) :- !,complex_to_and63,2137 -complex_to_and(functor(not,1,[atom(A1,Els)]), Map0, MapF, and(not(V),T2)) :- !,complex_to_and63,2137 -complex_to_and(functor(not,1,[atom(A1,Els)]), Map0, MapF, and(not(V),T2)) :- !,complex_to_and63,2137 -complex_to_and(functor(not,1,[int(A1,Els)|More]), Map0, MapF, or(NOTV1,O2)) :-complex_to_and67,2325 -complex_to_and(functor(not,1,[int(A1,Els)|More]), Map0, MapF, or(NOTV1,O2)) :-complex_to_and67,2325 -complex_to_and(functor(not,1,[int(A1,Els)|More]), Map0, MapF, or(NOTV1,O2)) :-complex_to_and67,2325 -complex_to_and(functor(not,1,[atom(A1,Els)|More]), Map0, MapF, or(NOTV1,O2)) :-complex_to_and78,2621 -complex_to_and(functor(not,1,[atom(A1,Els)|More]), Map0, MapF, or(NOTV1,O2)) :-complex_to_and78,2621 -complex_to_and(functor(not,1,[atom(A1,Els)|More]), Map0, MapF, or(NOTV1,O2)) :-complex_to_and78,2621 -tabled_complex_to_andor(empty, Map, Map, Tab, Tab, 0).tabled_complex_to_andor91,2946 -tabled_complex_to_andor(empty, Map, Map, Tab, Tab, 0).tabled_complex_to_andor91,2946 -tabled_complex_to_andor(T, Map, Map, Tab, Tab, V) :-tabled_complex_to_andor92,3001 -tabled_complex_to_andor(T, Map, Map, Tab, Tab, V) :-tabled_complex_to_andor92,3001 -tabled_complex_to_andor(T, Map, Map, Tab, Tab, V) :-tabled_complex_to_andor92,3001 -tabled_complex_to_andor(IN, Map, Map, Tab, Tab, 1) :-tabled_complex_to_andor95,3105 -tabled_complex_to_andor(IN, Map, Map, Tab, Tab, 1) :-tabled_complex_to_andor95,3105 -tabled_complex_to_andor(IN, Map, Map, Tab, Tab, 1) :-tabled_complex_to_andor95,3105 -tabled_complex_to_andor([Els], Map0, MapF, Tab0, TabF, V) :-tabled_complex_to_andor97,3169 -tabled_complex_to_andor([Els], Map0, MapF, Tab0, TabF, V) :-tabled_complex_to_andor97,3169 -tabled_complex_to_andor([Els], Map0, MapF, Tab0, TabF, V) :-tabled_complex_to_andor97,3169 -tabled_complex_to_andor([El1,Dl2], Map0, MapF, Tab0, TabF, or(T1,T2)) :-tabled_complex_to_andor100,3319 -tabled_complex_to_andor([El1,Dl2], Map0, MapF, Tab0, TabF, or(T1,T2)) :-tabled_complex_to_andor100,3319 -tabled_complex_to_andor([El1,Dl2], Map0, MapF, Tab0, TabF, or(T1,T2)) :-tabled_complex_to_andor100,3319 -tabled_complex_to_and(int(A1,[endlist]), Map0, MapF, Tab, Tab, V) :- !,tabled_complex_to_and104,3513 -tabled_complex_to_and(int(A1,[endlist]), Map0, MapF, Tab, Tab, V) :- !,tabled_complex_to_and104,3513 -tabled_complex_to_and(int(A1,[endlist]), Map0, MapF, Tab, Tab, V) :- !,tabled_complex_to_and104,3513 -tabled_complex_to_and(atom(A1,[endlist]), Map0, MapF, Tab, Tab, V) :- !,tabled_complex_to_and106,3612 -tabled_complex_to_and(atom(A1,[endlist]), Map0, MapF, Tab, Tab, V) :- !,tabled_complex_to_and106,3612 -tabled_complex_to_and(atom(A1,[endlist]), Map0, MapF, Tab, Tab, V) :- !,tabled_complex_to_and106,3612 -tabled_complex_to_and(functor(not,1,[int(A1,[endlist])]), Map0, MapF, Tab, Tab, not(V)) :- !,tabled_complex_to_and108,3712 -tabled_complex_to_and(functor(not,1,[int(A1,[endlist])]), Map0, MapF, Tab, Tab, not(V)) :- !,tabled_complex_to_and108,3712 -tabled_complex_to_and(functor(not,1,[int(A1,[endlist])]), Map0, MapF, Tab, Tab, not(V)) :- !,tabled_complex_to_and108,3712 -tabled_complex_to_and(functor(not,1,[atom(A1,[endlist])]), Map0, MapF, Tab, Tab, not(V)) :- !,tabled_complex_to_and110,3833 -tabled_complex_to_and(functor(not,1,[atom(A1,[endlist])]), Map0, MapF, Tab, Tab, not(V)) :- !,tabled_complex_to_and110,3833 -tabled_complex_to_and(functor(not,1,[atom(A1,[endlist])]), Map0, MapF, Tab, Tab, not(V)) :- !,tabled_complex_to_and110,3833 -tabled_complex_to_and(T, Map, Map, Tab, Tab, V) :-tabled_complex_to_and112,3955 -tabled_complex_to_and(T, Map, Map, Tab, Tab, V) :-tabled_complex_to_and112,3955 -tabled_complex_to_and(T, Map, Map, Tab, Tab, V) :-tabled_complex_to_and112,3955 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and115,4057 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and115,4057 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and115,4057 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and121,4281 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and121,4281 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and121,4281 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and127,4506 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and127,4506 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and127,4506 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and133,4752 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and133,4752 -tabled_complex_to_and(IN, Map0, MapF, Tab0, TabF, OUT) :-tabled_complex_to_and133,4752 -check(M0, K, V, M) :- rb_lookup(K, V, M0), !, M = M0.check140,5000 -check(M0, K, V, M) :- rb_lookup(K, V, M0), !, M = M0.check140,5000 -check(M0, K, V, M) :- rb_lookup(K, V, M0), !, M = M0.check140,5000 -check(M0, K, V, M) :- rb_insert(M0, K, V, M).check141,5054 -check(M0, K, V, M) :- rb_insert(M0, K, V, M).check141,5054 -check(M0, K, V, M) :- rb_insert(M0, K, V, M).check141,5054 -check(M0, K, V, M) :- rb_insert(M0, K, V, M).check141,5054 -check(M0, K, V, M) :- rb_insert(M0, K, V, M).check141,5054 -increment_ref_count(V) :-increment_ref_count143,5101 -increment_ref_count(V) :-increment_ref_count143,5101 -increment_ref_count(V) :-increment_ref_count143,5101 - -packages/chr/a_star.pl,820 -a_star(DataIn,FinalData,ExpandData,DataOut) :-a_star43,1501 -a_star(DataIn,FinalData,ExpandData,DataOut) :-a_star43,1501 -a_star(DataIn,FinalData,ExpandData,DataOut) :-a_star43,1501 -a_star_aux(Queue,FinalData,ExpandData,EndNode) :-a_star_aux50,1726 -a_star_aux(Queue,FinalData,ExpandData,EndNode) :-a_star_aux50,1726 -a_star_aux(Queue,FinalData,ExpandData,EndNode) :-a_star_aux50,1726 -final_node(D^Call,Node) :-final_node60,1994 -final_node(D^Call,Node) :-final_node60,1994 -final_node(D^Call,Node) :-final_node60,1994 -expand_node(D^Ds^C^Call,Node,Nodes) :-expand_node67,2161 -expand_node(D^Ds^C^Call,Node,Nodes) :-expand_node67,2161 -expand_node(D^Ds^C^Call,Node,Nodes) :-expand_node67,2161 -a_star_node(Data,Score,Data-Score).a_star_node77,2556 -a_star_node(Data,Score,Data-Score).a_star_node77,2556 - -packages/chr/Benchmarks/benches.pl,542 -benches :-benches4,71 -bench(bool).bench16,244 -bench(bool).bench16,244 -bench(fib).bench17,257 -bench(fib).bench17,257 -bench(fibonacci).bench18,269 -bench(fibonacci).bench18,269 -bench(leq).bench19,287 -bench(leq).bench19,287 -bench(primes).bench20,299 -bench(primes).bench20,299 -bench(ta).bench21,314 -bench(ta).bench21,314 -bench(wfs).bench22,325 -bench(wfs).bench22,325 -bench(zebra).bench23,337 -bench(zebra).bench23,337 -cputime(Time) :-cputime25,352 -cputime(Time) :-cputime25,352 -cputime(Time) :-cputime25,352 - -packages/chr/binomialheap.pl,2980 -key(_-Key,Key).key56,1924 -key(_-Key,Key).key56,1924 -empty_q([]).empty_q58,1941 -empty_q([]).empty_q58,1941 -meld_q(P,Q,R) :-meld_q60,1955 -meld_q(P,Q,R) :-meld_q60,1955 -meld_q(P,Q,R) :-meld_q60,1955 -meld_qc([],Q,zero,Q) :- !.meld_qc63,1995 -meld_qc([],Q,zero,Q) :- !.meld_qc63,1995 -meld_qc([],Q,zero,Q) :- !.meld_qc63,1995 -meld_qc([],Q,C,R) :- !,meld_qc64,2022 -meld_qc([],Q,C,R) :- !,meld_qc64,2022 -meld_qc([],Q,C,R) :- !,meld_qc64,2022 -meld_qc(P,[],C,R) :- !,meld_qc66,2064 -meld_qc(P,[],C,R) :- !,meld_qc66,2064 -meld_qc(P,[],C,R) :- !,meld_qc66,2064 -meld_qc([zero|Ps],[zero|Qs],C,R) :- !,meld_qc68,2108 -meld_qc([zero|Ps],[zero|Qs],C,R) :- !,meld_qc68,2108 -meld_qc([zero|Ps],[zero|Qs],C,R) :- !,meld_qc68,2108 -meld_qc([one(node(X,Xs))|Ps],[one(node(Y,Ys))|Qs],C,R) :- !,meld_qc71,2181 -meld_qc([one(node(X,Xs))|Ps],[one(node(Y,Ys))|Qs],C,R) :- !,meld_qc71,2181 -meld_qc([one(node(X,Xs))|Ps],[one(node(Y,Ys))|Qs],C,R) :- !,meld_qc71,2181 -meld_qc([P|Ps],[Q|Qs],C,Rs) :-meld_qc81,2387 -meld_qc([P|Ps],[Q|Qs],C,Rs) :-meld_qc81,2387 -meld_qc([P|Ps],[Q|Qs],C,Rs) :-meld_qc81,2387 -insert_q(Q,I,NQ) :-insert_q84,2449 -insert_q(Q,I,NQ) :-insert_q84,2449 -insert_q(Q,I,NQ) :-insert_q84,2449 -insert_list_q([],Q,Q).insert_list_q87,2503 -insert_list_q([],Q,Q).insert_list_q87,2503 -insert_list_q([I|Is],Q,NQ) :-insert_list_q88,2526 -insert_list_q([I|Is],Q,NQ) :-insert_list_q88,2526 -insert_list_q([I|Is],Q,NQ) :-insert_list_q88,2526 -min_tree([T|Ts],MT) :-min_tree92,2602 -min_tree([T|Ts],MT) :-min_tree92,2602 -min_tree([T|Ts],MT) :-min_tree92,2602 -min_tree_acc([],MT,MT).min_tree_acc95,2650 -min_tree_acc([],MT,MT).min_tree_acc95,2650 -min_tree_acc([T|Ts],Acc,MT) :-min_tree_acc96,2674 -min_tree_acc([T|Ts],Acc,MT) :-min_tree_acc96,2674 -min_tree_acc([T|Ts],Acc,MT) :-min_tree_acc96,2674 -least(zero,T,T) :- !.least100,2753 -least(zero,T,T) :- !.least100,2753 -least(zero,T,T) :- !.least100,2753 -least(T,zero,T) :- !.least101,2775 -least(T,zero,T) :- !.least101,2775 -least(T,zero,T) :- !.least101,2775 -least(one(node(X,Xs)),one(node(Y,Ys)),T) :-least102,2797 -least(one(node(X,Xs)),one(node(Y,Ys)),T) :-least102,2797 -least(one(node(X,Xs)),one(node(Y,Ys)),T) :-least102,2797 -remove_tree([],_,[]).remove_tree111,2931 -remove_tree([],_,[]).remove_tree111,2931 -remove_tree([T|Ts],I,[NT|NTs]) :-remove_tree112,2953 -remove_tree([T|Ts],I,[NT|NTs]) :-remove_tree112,2953 -remove_tree([T|Ts],I,[NT|NTs]) :-remove_tree112,2953 -delete_min_q(Q,NQ,Min) :-delete_min_q125,3111 -delete_min_q(Q,NQ,Min) :-delete_min_q125,3111 -delete_min_q(Q,NQ,Min) :-delete_min_q125,3111 -make_ones([],[]).make_ones132,3251 -make_ones([],[]).make_ones132,3251 -make_ones([N|Ns],[one(N)|RQ]) :-make_ones133,3269 -make_ones([N|Ns],[one(N)|RQ]) :-make_ones133,3269 -make_ones([N|Ns],[one(N)|RQ]) :-make_ones133,3269 -find_min_q(Q,I) :-find_min_q136,3322 -find_min_q(Q,I) :-find_min_q136,3322 -find_min_q(Q,I) :-find_min_q136,3322 - -packages/chr/builtins.pl,13455 -negate_b(A,B) :- once(negate(A,B)).negate_b43,1583 -negate_b(A,B) :- once(negate(A,B)).negate_b43,1583 -negate_b(A,B) :- once(negate(A,B)).negate_b43,1583 -negate_b(A,B) :- once(negate(A,B)).negate_b43,1583 -negate_b(A,B) :- once(negate(A,B)).negate_b43,1583 -negate((A,B),NotB) :- A==true,negate(B,NotB). % added by jonnegate44,1619 -negate((A,B),NotB) :- A==true,negate(B,NotB). % added by jonnegate44,1619 -negate((A,B),NotB) :- A==true,negate(B,NotB). % added by jonnegate44,1619 -negate((A,B),NotB) :- A==true,negate(B,NotB). % added by jonnegate44,1619 -negate((A,B),NotB) :- A==true,negate(B,NotB). % added by jonnegate44,1619 -negate((A,B),NotA) :- B==true,negate(A,NotA). % added by jonnegate45,1680 -negate((A,B),NotA) :- B==true,negate(A,NotA). % added by jonnegate45,1680 -negate((A,B),NotA) :- B==true,negate(A,NotA). % added by jonnegate45,1680 -negate((A,B),NotA) :- B==true,negate(A,NotA). % added by jonnegate45,1680 -negate((A,B),NotA) :- B==true,negate(A,NotA). % added by jonnegate45,1680 -negate((A,B),(NotA;NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate46,1741 -negate((A,B),(NotA;NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate46,1741 -negate((A,B),(NotA;NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate46,1741 -negate((A,B),(NotA;NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate46,1741 -negate((A,B),(NotA;NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate46,1741 -negate((A;B),(NotA,NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate47,1816 -negate((A;B),(NotA,NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate47,1816 -negate((A;B),(NotA,NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate47,1816 -negate((A;B),(NotA,NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate47,1816 -negate((A;B),(NotA,NotB)) :- negate(A,NotA),negate(B,NotB). % added by jonnegate47,1816 -negate(true,fail).negate48,1891 -negate(true,fail).negate48,1891 -negate(fail,true).negate49,1910 -negate(fail,true).negate49,1910 -negate(X =< Y, Y < X).negate50,1929 -negate(X =< Y, Y < X).negate50,1929 -negate(X > Y, Y >= X).negate51,1952 -negate(X > Y, Y >= X).negate51,1952 -negate(X >= Y, Y > X).negate52,1975 -negate(X >= Y, Y > X).negate52,1975 -negate(X < Y, Y =< X).negate53,1998 -negate(X < Y, Y =< X).negate53,1998 -negate(X == Y, X \== Y). % added by jonnegate54,2021 -negate(X == Y, X \== Y). % added by jonnegate54,2021 -negate(X \== Y, X == Y). % added by jonnegate55,2061 -negate(X \== Y, X == Y). % added by jonnegate55,2061 -negate(X =:= Y, X =\= Y). % added by jonnegate56,2101 -negate(X =:= Y, X =\= Y). % added by jonnegate56,2101 -negate(X is Y, X =\= Y). % added by jonnegate57,2142 -negate(X is Y, X =\= Y). % added by jonnegate57,2142 -negate(X =\= Y, X =:= Y). % added by jonnegate58,2182 -negate(X =\= Y, X =:= Y). % added by jonnegate58,2182 -negate(X = Y, X \= Y). % added by jonnegate59,2223 -negate(X = Y, X \= Y). % added by jonnegate59,2223 -negate(X \= Y, X = Y). % added by jonnegate60,2261 -negate(X \= Y, X = Y). % added by jonnegate60,2261 -negate(var(X),nonvar(X)).negate61,2299 -negate(var(X),nonvar(X)).negate61,2299 -negate(nonvar(X),var(X)).negate62,2325 -negate(nonvar(X),var(X)).negate62,2325 -negate(\+ X,X). % added by jonnegate63,2351 -negate(\+ X,X). % added by jonnegate63,2351 -negate(X,\+ X). % added by jonnegate64,2382 -negate(X,\+ X). % added by jonnegate64,2382 -entails_b(fail,_) :-!.entails_b67,2495 -entails_b(fail,_) :-!.entails_b67,2495 -entails_b(fail,_) :-!.entails_b67,2495 -entails_b(A,B) :-entails_b68,2518 -entails_b(A,B) :-entails_b68,2518 -entails_b(A,B) :-entails_b68,2518 -entails(A,A,_).entails78,2621 -entails(A,A,_).entails78,2621 -entails(A,C,History) :-entails79,2637 -entails(A,C,History) :-entails79,2637 -entails(A,C,History) :-entails79,2637 -entails_(X > Y, X >= Y).entails_84,2734 -entails_(X > Y, X >= Y).entails_84,2734 -entails_(X > Y, Y < X).entails_85,2759 -entails_(X > Y, Y < X).entails_85,2759 -entails_(X >= Y, Y =< X).entails_86,2783 -entails_(X >= Y, Y =< X).entails_86,2783 -entails_(X =< Y, Y >= X). %added by jonentails_87,2809 -entails_(X =< Y, Y >= X). %added by jonentails_87,2809 -entails_(X < Y, Y > X).entails_88,2849 -entails_(X < Y, Y > X).entails_88,2849 -entails_(X < Y, X =< Y).entails_89,2873 -entails_(X < Y, X =< Y).entails_89,2873 -entails_(X > Y, X \== Y).entails_90,2898 -entails_(X > Y, X \== Y).entails_90,2898 -entails_(X \== Y, Y \== X).entails_91,2924 -entails_(X \== Y, Y \== X).entails_91,2924 -entails_(X == Y, Y == X).entails_92,2952 -entails_(X == Y, Y == X).entails_92,2952 -entails_(X == Y, X =:= Y) :- ground(X). %added by jonentails_93,2978 -entails_(X == Y, X =:= Y) :- ground(X). %added by jonentails_93,2978 -entails_(X == Y, X =:= Y) :- ground(X). %added by jonentails_93,2978 -entails_(X == Y, X =:= Y) :- ground(X). %added by jonentails_93,2978 -entails_(X == Y, X =:= Y) :- ground(X). %added by jonentails_93,2978 -entails_(X == Y, X =:= Y) :- ground(Y). %added by jonentails_94,3032 -entails_(X == Y, X =:= Y) :- ground(Y). %added by jonentails_94,3032 -entails_(X == Y, X =:= Y) :- ground(Y). %added by jonentails_94,3032 -entails_(X == Y, X =:= Y) :- ground(Y). %added by jonentails_94,3032 -entails_(X == Y, X =:= Y) :- ground(Y). %added by jonentails_94,3032 -entails_(X \== Y, X =\= Y) :- ground(X). %added by jonentails_95,3086 -entails_(X \== Y, X =\= Y) :- ground(X). %added by jonentails_95,3086 -entails_(X \== Y, X =\= Y) :- ground(X). %added by jonentails_95,3086 -entails_(X \== Y, X =\= Y) :- ground(X). %added by jonentails_95,3086 -entails_(X \== Y, X =\= Y) :- ground(X). %added by jonentails_95,3086 -entails_(X \== Y, X =\= Y) :- ground(Y). %added by jonentails_96,3141 -entails_(X \== Y, X =\= Y) :- ground(Y). %added by jonentails_96,3141 -entails_(X \== Y, X =\= Y) :- ground(Y). %added by jonentails_96,3141 -entails_(X \== Y, X =\= Y) :- ground(Y). %added by jonentails_96,3141 -entails_(X \== Y, X =\= Y) :- ground(Y). %added by jonentails_96,3141 -entails_(X =:= Y, Y =:= X). %added by jonentails_97,3196 -entails_(X =:= Y, Y =:= X). %added by jonentails_97,3196 -entails_(X =\= Y, Y =\= X). %added by jonentails_98,3238 -entails_(X =\= Y, Y =\= X). %added by jonentails_98,3238 -entails_(X == Y, X >= Y). %added by jonentails_99,3280 -entails_(X == Y, X >= Y). %added by jonentails_99,3280 -entails_(X == Y, X =< Y). %added by jonentails_100,3320 -entails_(X == Y, X =< Y). %added by jonentails_100,3320 -entails_(ground(X),nonvar(X)).entails_101,3360 -entails_(ground(X),nonvar(X)).entails_101,3360 -entails_(compound(X),nonvar(X)).entails_102,3391 -entails_(compound(X),nonvar(X)).entails_102,3391 -entails_(atomic(X),nonvar(X)).entails_103,3424 -entails_(atomic(X),nonvar(X)).entails_103,3424 -entails_(number(X),nonvar(X)).entails_104,3455 -entails_(number(X),nonvar(X)).entails_104,3455 -entails_(atom(X),nonvar(X)).entails_105,3486 -entails_(atom(X),nonvar(X)).entails_105,3486 -entails_(fail,true).entails_106,3515 -entails_(fail,true).entails_106,3515 -builtin_binds_b(G,Vars) :-builtin_binds_b108,3537 -builtin_binds_b(G,Vars) :-builtin_binds_b108,3537 -builtin_binds_b(G,Vars) :-builtin_binds_b108,3537 -builtin_binds_(var(_),L,L).builtin_binds_112,3605 -builtin_binds_(var(_),L,L).builtin_binds_112,3605 -builtin_binds_(nonvar(_),L,L).builtin_binds_113,3633 -builtin_binds_(nonvar(_),L,L).builtin_binds_113,3633 -builtin_binds_(ground(_),L,L).builtin_binds_114,3664 -builtin_binds_(ground(_),L,L).builtin_binds_114,3664 -builtin_binds_(compound(_),L,L).builtin_binds_115,3695 -builtin_binds_(compound(_),L,L).builtin_binds_115,3695 -builtin_binds_(number(_),L,L).builtin_binds_116,3728 -builtin_binds_(number(_),L,L).builtin_binds_116,3728 -builtin_binds_(atom(_),L,L).builtin_binds_117,3759 -builtin_binds_(atom(_),L,L).builtin_binds_117,3759 -builtin_binds_(atomic(_),L,L).builtin_binds_118,3788 -builtin_binds_(atomic(_),L,L).builtin_binds_118,3788 -builtin_binds_(integer(_),L,L).builtin_binds_119,3819 -builtin_binds_(integer(_),L,L).builtin_binds_119,3819 -builtin_binds_(float(_),L,L).builtin_binds_120,3851 -builtin_binds_(float(_),L,L).builtin_binds_120,3851 -builtin_binds_(?=(_, _), L, L).builtin_binds_122,3882 -builtin_binds_(?=(_, _), L, L).builtin_binds_122,3882 -builtin_binds_(_<_, L, L).builtin_binds_123,3914 -builtin_binds_(_<_, L, L).builtin_binds_123,3914 -builtin_binds_(_=:=_, L, L).builtin_binds_124,3941 -builtin_binds_(_=:=_, L, L).builtin_binds_124,3941 -builtin_binds_(_=<_, L, L).builtin_binds_125,3970 -builtin_binds_(_=<_, L, L).builtin_binds_125,3970 -builtin_binds_(_==_, L, L).builtin_binds_126,3998 -builtin_binds_(_==_, L, L).builtin_binds_126,3998 -builtin_binds_(_=@=_, L, L).builtin_binds_127,4026 -builtin_binds_(_=@=_, L, L).builtin_binds_127,4026 -builtin_binds_(_=\=_, L, L).builtin_binds_128,4055 -builtin_binds_(_=\=_, L, L).builtin_binds_128,4055 -builtin_binds_(_>=_, L, L).builtin_binds_129,4084 -builtin_binds_(_>=_, L, L).builtin_binds_129,4084 -builtin_binds_(_>_, L, L).builtin_binds_130,4112 -builtin_binds_(_>_, L, L).builtin_binds_130,4112 -builtin_binds_(_@<_, L, L).builtin_binds_131,4139 -builtin_binds_(_@<_, L, L).builtin_binds_131,4139 -builtin_binds_(_@=<_, L, L).builtin_binds_132,4167 -builtin_binds_(_@=<_, L, L).builtin_binds_132,4167 -builtin_binds_(_@>=_, L, L).builtin_binds_133,4196 -builtin_binds_(_@>=_, L, L).builtin_binds_133,4196 -builtin_binds_(_@>_, L, L).builtin_binds_134,4225 -builtin_binds_(_@>_, L, L).builtin_binds_134,4225 -builtin_binds_(_\==_, L, L).builtin_binds_135,4253 -builtin_binds_(_\==_, L, L).builtin_binds_135,4253 -builtin_binds_(_\=@=_, L, L).builtin_binds_136,4282 -builtin_binds_(_\=@=_, L, L).builtin_binds_136,4282 -builtin_binds_(true,L,L).builtin_binds_137,4312 -builtin_binds_(true,L,L).builtin_binds_137,4312 -builtin_binds_(X is _,[X|L],L).builtin_binds_569,22123 -builtin_binds_(X is _,[X|L],L).builtin_binds_569,22123 -builtin_binds_((G1,G2),L,T) :-builtin_binds_570,22155 -builtin_binds_((G1,G2),L,T) :-builtin_binds_570,22155 -builtin_binds_((G1,G2),L,T) :-builtin_binds_570,22155 -builtin_binds_((G1;G2),L,T) :-builtin_binds_573,22236 -builtin_binds_((G1;G2),L,T) :-builtin_binds_573,22236 -builtin_binds_((G1;G2),L,T) :-builtin_binds_573,22236 -builtin_binds_((G1->G2),L,T) :-builtin_binds_576,22317 -builtin_binds_((G1->G2),L,T) :-builtin_binds_576,22317 -builtin_binds_((G1->G2),L,T) :-builtin_binds_576,22317 -builtin_binds_(\+ G,L,T) :-builtin_binds_580,22400 -builtin_binds_(\+ G,L,T) :-builtin_binds_580,22400 -builtin_binds_(\+ G,L,T) :-builtin_binds_580,22400 -binds_b(G,Vars) :-binds_b583,22533 -binds_b(G,Vars) :-binds_b583,22533 -binds_b(G,Vars) :-binds_b583,22533 -binds_(var(_),L,L).binds_587,22585 -binds_(var(_),L,L).binds_587,22585 -binds_(nonvar(_),L,L).binds_588,22605 -binds_(nonvar(_),L,L).binds_588,22605 -binds_(ground(_),L,L).binds_589,22628 -binds_(ground(_),L,L).binds_589,22628 -binds_(compound(_),L,L).binds_590,22651 -binds_(compound(_),L,L).binds_590,22651 -binds_(number(_),L,L).binds_591,22676 -binds_(number(_),L,L).binds_591,22676 -binds_(atom(_),L,L).binds_592,22699 -binds_(atom(_),L,L).binds_592,22699 -binds_(atomic(_),L,L).binds_593,22720 -binds_(atomic(_),L,L).binds_593,22720 -binds_(integer(_),L,L).binds_594,22743 -binds_(integer(_),L,L).binds_594,22743 -binds_(float(_),L,L).binds_595,22767 -binds_(float(_),L,L).binds_595,22767 -binds_(_ > _ ,L,L).binds_597,22790 -binds_(_ > _ ,L,L).binds_597,22790 -binds_(_ < _ ,L,L).binds_598,22810 -binds_(_ < _ ,L,L).binds_598,22810 -binds_(_ =< _,L,L).binds_599,22830 -binds_(_ =< _,L,L).binds_599,22830 -binds_(_ >= _,L,L).binds_600,22850 -binds_(_ >= _,L,L).binds_600,22850 -binds_(_ =:= _,L,L).binds_601,22870 -binds_(_ =:= _,L,L).binds_601,22870 -binds_(_ =\= _,L,L).binds_602,22891 -binds_(_ =\= _,L,L).binds_602,22891 -binds_(_ == _,L,L).binds_603,22912 -binds_(_ == _,L,L).binds_603,22912 -binds_(_ \== _,L,L).binds_604,22932 -binds_(_ \== _,L,L).binds_604,22932 -binds_(true,L,L).binds_605,22953 -binds_(true,L,L).binds_605,22953 -binds_(write(_),L,L).binds_607,22972 -binds_(write(_),L,L).binds_607,22972 -binds_(writeln(_),L,L).binds_608,22994 -binds_(writeln(_),L,L).binds_608,22994 -binds_(format(_,_),L,L).binds_609,23018 -binds_(format(_,_),L,L).binds_609,23018 -binds_(X is _,[X|L],L).binds_611,23044 -binds_(X is _,[X|L],L).binds_611,23044 -binds_((G1,G2),L,T) :-binds_612,23068 -binds_((G1,G2),L,T) :-binds_612,23068 -binds_((G1,G2),L,T) :-binds_612,23068 -binds_((G1;G2),L,T) :-binds_615,23125 -binds_((G1;G2),L,T) :-binds_615,23125 -binds_((G1;G2),L,T) :-binds_615,23125 -binds_((G1->G2),L,T) :-binds_618,23182 -binds_((G1->G2),L,T) :-binds_618,23182 -binds_((G1->G2),L,T) :-binds_618,23182 -binds_(\+ G,L,T) :-binds_622,23241 -binds_(\+ G,L,T) :-binds_622,23241 -binds_(\+ G,L,T) :-binds_622,23241 -binds_(G,L,T) :- term_variables(G,GVars),append(GVars,T,L). %jonbinds_625,23278 -binds_(G,L,T) :- term_variables(G,GVars),append(GVars,T,L). %jonbinds_625,23278 -binds_(G,L,T) :- term_variables(G,GVars),append(GVars,T,L). %jonbinds_625,23278 -binds_(G,L,T) :- term_variables(G,GVars),append(GVars,T,L). %jonbinds_625,23278 -binds_(G,L,T) :- term_variables(G,GVars),append(GVars,T,L). %jonbinds_625,23278 - -packages/chr/ChangeLog,171 - * TS: Fixed subtle bug in ai_observation analysis,analysis455,10722 - the optimistic default answer pattern, leadingpattern457,10827 -Mar 4, 2006Mar476,11538 - -packages/chr/chr.yap,0 - -packages/chr/chr_compiler_errors.pl,2944 -chr_info(_,Message,Params) :-chr_info48,1710 -chr_info(_,Message,Params) :-chr_info48,1710 -chr_info(_,Message,Params) :-chr_info48,1710 -verbosity_on :-verbosity_on60,1935 -chr_warning(deprecated(Term),Message,Params) :- !,chr_warning72,2258 -chr_warning(deprecated(Term),Message,Params) :- !,chr_warning72,2258 -chr_warning(deprecated(Term),Message,Params) :- !,chr_warning72,2258 -chr_warning(internal,Message,Params) :- !,chr_warning80,2637 -chr_warning(internal,Message,Params) :- !,chr_warning80,2637 -chr_warning(internal,Message,Params) :- !,chr_warning80,2637 -chr_warning(unsupported_pragma(Pragma,Rule),Message,Params) :- !,chr_warning89,3093 -chr_warning(unsupported_pragma(Pragma,Rule),Message,Params) :- !,chr_warning89,3093 -chr_warning(unsupported_pragma(Pragma,Rule),Message,Params) :- !,chr_warning89,3093 -chr_warning(problem_pragma(Pragma,Rule),Message,Params) :- !,chr_warning96,3456 -chr_warning(problem_pragma(Pragma,Rule),Message,Params) :- !,chr_warning96,3456 -chr_warning(problem_pragma(Pragma,Rule),Message,Params) :- !,chr_warning96,3456 -chr_warning(_,Message,Params) :-chr_warning103,3758 -chr_warning(_,Message,Params) :-chr_warning103,3758 -chr_warning(_,Message,Params) :-chr_warning103,3758 -chr_error(Type,Message,Params) :-chr_error117,4166 -chr_error(Type,Message,Params) :-chr_error117,4166 -chr_error(Type,Message,Params) :-chr_error117,4166 -print_chr_error(error(Type,Message,Params)) :-print_chr_error120,4248 -print_chr_error(error(Type,Message,Params)) :-print_chr_error120,4248 -print_chr_error(error(Type,Message,Params)) :-print_chr_error120,4248 -print_chr_error(syntax(Term),Message,Params) :- !,print_chr_error123,4335 -print_chr_error(syntax(Term),Message,Params) :- !,print_chr_error123,4335 -print_chr_error(syntax(Term),Message,Params) :- !,print_chr_error123,4335 -print_chr_error(type_error,Message,Params) :- !,print_chr_error130,4596 -print_chr_error(type_error,Message,Params) :- !,print_chr_error130,4596 -print_chr_error(type_error,Message,Params) :- !,print_chr_error130,4596 -print_chr_error(internal,Message,Params) :- !,print_chr_error137,4835 -print_chr_error(internal,Message,Params) :- !,print_chr_error137,4835 -print_chr_error(internal,Message,Params) :- !,print_chr_error137,4835 -print_chr_error(cyclic_alias(Alias),_Message,_Params) :- !,print_chr_error145,5203 -print_chr_error(cyclic_alias(Alias),_Message,_Params) :- !,print_chr_error145,5203 -print_chr_error(cyclic_alias(Alias),_Message,_Params) :- !,print_chr_error145,5203 -print_chr_error(_,Message,Params) :-print_chr_error151,5459 -print_chr_error(_,Message,Params) :-print_chr_error151,5459 -print_chr_error(_,Message,Params) :-print_chr_error151,5459 -format_rule(PragmaRule) :-format_rule164,5821 -format_rule(PragmaRule) :-format_rule164,5821 -format_rule(PragmaRule) :-format_rule164,5821 -long_line_with_equality_signs :-long_line_with_equality_signs179,6112 - -packages/chr/chr_compiler_options.pl,21961 -local_current_prolog_flag(X,Y) :- current_prolog_flag(X,Y).local_current_prolog_flag49,1708 -local_current_prolog_flag(X,Y) :- current_prolog_flag(X,Y).local_current_prolog_flag49,1708 -local_current_prolog_flag(X,Y) :- current_prolog_flag(X,Y).local_current_prolog_flag49,1708 -local_current_prolog_flag(X,Y) :- current_prolog_flag(X,Y).local_current_prolog_flag49,1708 -local_current_prolog_flag(X,Y) :- current_prolog_flag(X,Y).local_current_prolog_flag49,1708 -handle_option(Name,Value) :-handle_option59,1919 -handle_option(Name,Value) :-handle_option59,1919 -handle_option(Name,Value) :-handle_option59,1919 -handle_option(Name,Value) :-handle_option63,2070 -handle_option(Name,Value) :-handle_option63,2070 -handle_option(Name,Value) :-handle_option63,2070 -handle_option(Name,Value) :-handle_option67,2210 -handle_option(Name,Value) :-handle_option67,2210 -handle_option(Name,Value) :-handle_option67,2210 -handle_option(Name,Value) :-handle_option72,2308 -handle_option(Name,Value) :-handle_option72,2308 -handle_option(Name,Value) :-handle_option72,2308 -handle_option(Name,Value) :-handle_option76,2496 -handle_option(Name,Value) :-handle_option76,2496 -handle_option(Name,Value) :-handle_option76,2496 -option_definition(optimize,experimental,Flags) :-option_definition79,2656 -option_definition(optimize,experimental,Flags) :-option_definition79,2656 -option_definition(optimize,experimental,Flags) :-option_definition79,2656 -option_definition(optimize,full,Flags) :-option_definition97,3271 -option_definition(optimize,full,Flags) :-option_definition97,3271 -option_definition(optimize,full,Flags) :-option_definition97,3271 -option_definition(optimize,off,Flags) :-option_definition116,3877 -option_definition(optimize,off,Flags) :-option_definition116,3877 -option_definition(optimize,off,Flags) :-option_definition116,3877 -option_definition(functional_dependency_analysis,on,Flags) :-option_definition132,4392 -option_definition(functional_dependency_analysis,on,Flags) :-option_definition132,4392 -option_definition(functional_dependency_analysis,on,Flags) :-option_definition132,4392 -option_definition(functional_dependency_analysis,off,Flags) :-option_definition134,4504 -option_definition(functional_dependency_analysis,off,Flags) :-option_definition134,4504 -option_definition(functional_dependency_analysis,off,Flags) :-option_definition134,4504 -option_definition(set_semantics_rule,on,Flags) :-option_definition137,4619 -option_definition(set_semantics_rule,on,Flags) :-option_definition137,4619 -option_definition(set_semantics_rule,on,Flags) :-option_definition137,4619 -option_definition(set_semantics_rule,off,Flags) :-option_definition139,4707 -option_definition(set_semantics_rule,off,Flags) :-option_definition139,4707 -option_definition(set_semantics_rule,off,Flags) :-option_definition139,4707 -option_definition(check_unnecessary_active,full,Flags) :-option_definition142,4798 -option_definition(check_unnecessary_active,full,Flags) :-option_definition142,4798 -option_definition(check_unnecessary_active,full,Flags) :-option_definition142,4798 -option_definition(check_unnecessary_active,simplification,Flags) :-option_definition144,4902 -option_definition(check_unnecessary_active,simplification,Flags) :-option_definition144,4902 -option_definition(check_unnecessary_active,simplification,Flags) :-option_definition144,4902 -option_definition(check_unnecessary_active,off,Flags) :-option_definition146,5026 -option_definition(check_unnecessary_active,off,Flags) :-option_definition146,5026 -option_definition(check_unnecessary_active,off,Flags) :-option_definition146,5026 -option_definition(check_guard_bindings,on,Flags) :-option_definition149,5129 -option_definition(check_guard_bindings,on,Flags) :-option_definition149,5129 -option_definition(check_guard_bindings,on,Flags) :-option_definition149,5129 -option_definition(check_guard_bindings,off,Flags) :-option_definition151,5212 -option_definition(check_guard_bindings,off,Flags) :-option_definition151,5212 -option_definition(check_guard_bindings,off,Flags) :-option_definition151,5212 -option_definition(check_guard_bindings,error,Flags) :-option_definition153,5297 -option_definition(check_guard_bindings,error,Flags) :-option_definition153,5297 -option_definition(check_guard_bindings,error,Flags) :-option_definition153,5297 -option_definition(reduced_indexing,on,Flags) :-option_definition156,5387 -option_definition(reduced_indexing,on,Flags) :-option_definition156,5387 -option_definition(reduced_indexing,on,Flags) :-option_definition156,5387 -option_definition(reduced_indexing,off,Flags) :-option_definition158,5471 -option_definition(reduced_indexing,off,Flags) :-option_definition158,5471 -option_definition(reduced_indexing,off,Flags) :-option_definition158,5471 -option_definition(storage_analysis,on,Flags) :-option_definition161,5558 -option_definition(storage_analysis,on,Flags) :-option_definition161,5558 -option_definition(storage_analysis,on,Flags) :-option_definition161,5558 -option_definition(storage_analysis,off,Flags) :-option_definition163,5642 -option_definition(storage_analysis,off,Flags) :-option_definition163,5642 -option_definition(storage_analysis,off,Flags) :-option_definition163,5642 -option_definition(guard_simplification,on,Flags) :-option_definition166,5729 -option_definition(guard_simplification,on,Flags) :-option_definition166,5729 -option_definition(guard_simplification,on,Flags) :-option_definition166,5729 -option_definition(guard_simplification,off,Flags) :-option_definition168,5821 -option_definition(guard_simplification,off,Flags) :-option_definition168,5821 -option_definition(guard_simplification,off,Flags) :-option_definition168,5821 -option_definition(check_impossible_rules,on,Flags) :-option_definition171,5916 -option_definition(check_impossible_rules,on,Flags) :-option_definition171,5916 -option_definition(check_impossible_rules,on,Flags) :-option_definition171,5916 -option_definition(check_impossible_rules,off,Flags) :-option_definition173,6012 -option_definition(check_impossible_rules,off,Flags) :-option_definition173,6012 -option_definition(check_impossible_rules,off,Flags) :-option_definition173,6012 -option_definition(occurrence_subsumption,on,Flags) :-option_definition176,6111 -option_definition(occurrence_subsumption,on,Flags) :-option_definition176,6111 -option_definition(occurrence_subsumption,on,Flags) :-option_definition176,6111 -option_definition(occurrence_subsumption,off,Flags) :-option_definition178,6207 -option_definition(occurrence_subsumption,off,Flags) :-option_definition178,6207 -option_definition(occurrence_subsumption,off,Flags) :-option_definition178,6207 -option_definition(late_allocation,on,Flags) :-option_definition181,6306 -option_definition(late_allocation,on,Flags) :-option_definition181,6306 -option_definition(late_allocation,on,Flags) :-option_definition181,6306 -option_definition(late_allocation,off,Flags) :-option_definition183,6388 -option_definition(late_allocation,off,Flags) :-option_definition183,6388 -option_definition(late_allocation,off,Flags) :-option_definition183,6388 -option_definition(inline_insertremove,on,Flags) :-option_definition186,6473 -option_definition(inline_insertremove,on,Flags) :-option_definition186,6473 -option_definition(inline_insertremove,on,Flags) :-option_definition186,6473 -option_definition(inline_insertremove,off,Flags) :-option_definition188,6563 -option_definition(inline_insertremove,off,Flags) :-option_definition188,6563 -option_definition(inline_insertremove,off,Flags) :-option_definition188,6563 -option_definition(type_definition,TypeDef,[]) :-option_definition191,6656 -option_definition(type_definition,TypeDef,[]) :-option_definition191,6656 -option_definition(type_definition,TypeDef,[]) :-option_definition191,6656 -option_definition(type_declaration,TypeDecl,[]) :-option_definition196,6795 -option_definition(type_declaration,TypeDecl,[]) :-option_definition196,6795 -option_definition(type_declaration,TypeDecl,[]) :-option_definition196,6795 -option_definition(mode,ModeDecl,[]) :-option_definition203,6977 -option_definition(mode,ModeDecl,[]) :-option_definition203,6977 -option_definition(mode,ModeDecl,[]) :-option_definition203,6977 -option_definition(store,FA-Store,[]) :-option_definition209,7146 -option_definition(store,FA-Store,[]) :-option_definition209,7146 -option_definition(store,FA-Store,[]) :-option_definition209,7146 -option_definition(declare_stored_constraints,off,[declare_stored_constraints-off]).option_definition213,7305 -option_definition(declare_stored_constraints,off,[declare_stored_constraints-off]).option_definition213,7305 -option_definition(declare_stored_constraints,on ,[declare_stored_constraints-on]).option_definition214,7389 -option_definition(declare_stored_constraints,on ,[declare_stored_constraints-on]).option_definition214,7389 -option_definition(stored,F/A,[]) :-option_definition216,7473 -option_definition(stored,F/A,[]) :-option_definition216,7473 -option_definition(stored,F/A,[]) :-option_definition216,7473 -option_definition(experiment,off,[experiment-off]).option_definition219,7628 -option_definition(experiment,off,[experiment-off]).option_definition219,7628 -option_definition(experiment,on,[experiment-on]).option_definition220,7680 -option_definition(experiment,on,[experiment-on]).option_definition220,7680 -option_definition(experimental,off,[experiment-off]).option_definition221,7730 -option_definition(experimental,off,[experiment-off]).option_definition221,7730 -option_definition(experimental,on,[experiment-on]).option_definition222,7784 -option_definition(experimental,on,[experiment-on]).option_definition222,7784 -option_definition(sss,off,[sss-off]).option_definition223,7836 -option_definition(sss,off,[sss-off]).option_definition223,7836 -option_definition(sss,on,[sss-on]).option_definition224,7874 -option_definition(sss,on,[sss-on]).option_definition224,7874 -option_definition(debug,off,Flags) :-option_definition226,7991 -option_definition(debug,off,Flags) :-option_definition226,7991 -option_definition(debug,off,Flags) :-option_definition226,7991 -option_definition(debug,on,Flags) :-option_definition229,8123 -option_definition(debug,on,Flags) :-option_definition229,8123 -option_definition(debug,on,Flags) :-option_definition229,8123 -option_definition(store_counter,off,[]).option_definition238,8487 -option_definition(store_counter,off,[]).option_definition238,8487 -option_definition(store_counter,on,[store_counter-on]).option_definition239,8528 -option_definition(store_counter,on,[store_counter-on]).option_definition239,8528 -option_definition(observation,off,Flags) :-option_definition241,8585 -option_definition(observation,off,Flags) :-option_definition241,8585 -option_definition(observation,off,Flags) :-option_definition241,8585 -option_definition(observation,on,Flags) :-option_definition248,8762 -option_definition(observation,on,Flags) :-option_definition248,8762 -option_definition(observation,on,Flags) :-option_definition248,8762 -option_definition(observation,regular,Flags) :-option_definition253,8883 -option_definition(observation,regular,Flags) :-option_definition253,8883 -option_definition(observation,regular,Flags) :-option_definition253,8883 -option_definition(observation,ai,Flags) :-option_definition258,9010 -option_definition(observation,ai,Flags) :-option_definition258,9010 -option_definition(observation,ai,Flags) :-option_definition258,9010 -option_definition(store_in_guards, on, [store_in_guards - on]).option_definition264,9133 -option_definition(store_in_guards, on, [store_in_guards - on]).option_definition264,9133 -option_definition(store_in_guards, off, [store_in_guards - off]).option_definition265,9197 -option_definition(store_in_guards, off, [store_in_guards - off]).option_definition265,9197 -option_definition(solver_events,NMod,Flags) :-option_definition267,9264 -option_definition(solver_events,NMod,Flags) :-option_definition267,9264 -option_definition(solver_events,NMod,Flags) :-option_definition267,9264 -option_definition(toplevel_show_store,on,Flags) :-option_definition270,9345 -option_definition(toplevel_show_store,on,Flags) :-option_definition270,9345 -option_definition(toplevel_show_store,on,Flags) :-option_definition270,9345 -option_definition(toplevel_show_store,off,Flags) :-option_definition273,9434 -option_definition(toplevel_show_store,off,Flags) :-option_definition273,9434 -option_definition(toplevel_show_store,off,Flags) :-option_definition273,9434 -option_definition(term_indexing,on,Flags) :-option_definition276,9525 -option_definition(term_indexing,on,Flags) :-option_definition276,9525 -option_definition(term_indexing,on,Flags) :-option_definition276,9525 -option_definition(term_indexing,off,Flags) :-option_definition278,9601 -option_definition(term_indexing,off,Flags) :-option_definition278,9601 -option_definition(term_indexing,off,Flags) :-option_definition278,9601 -option_definition(verbosity,on,Flags) :-option_definition281,9680 -option_definition(verbosity,on,Flags) :-option_definition281,9680 -option_definition(verbosity,on,Flags) :-option_definition281,9680 -option_definition(verbosity,off,Flags) :-option_definition283,9748 -option_definition(verbosity,off,Flags) :-option_definition283,9748 -option_definition(verbosity,off,Flags) :-option_definition283,9748 -option_definition(ht_removal,on,Flags) :-option_definition286,9819 -option_definition(ht_removal,on,Flags) :-option_definition286,9819 -option_definition(ht_removal,on,Flags) :-option_definition286,9819 -option_definition(ht_removal,off,Flags) :-option_definition288,9889 -option_definition(ht_removal,off,Flags) :-option_definition288,9889 -option_definition(ht_removal,off,Flags) :-option_definition288,9889 -option_definition(mixed_stores,on,Flags) :-option_definition291,9962 -option_definition(mixed_stores,on,Flags) :-option_definition291,9962 -option_definition(mixed_stores,on,Flags) :-option_definition291,9962 -option_definition(mixed_stores,off,Flags) :-option_definition293,10036 -option_definition(mixed_stores,off,Flags) :-option_definition293,10036 -option_definition(mixed_stores,off,Flags) :-option_definition293,10036 -option_definition(line_numbers,on,Flags) :-option_definition296,10113 -option_definition(line_numbers,on,Flags) :-option_definition296,10113 -option_definition(line_numbers,on,Flags) :-option_definition296,10113 -option_definition(line_numbers,off,Flags) :-option_definition298,10187 -option_definition(line_numbers,off,Flags) :-option_definition298,10187 -option_definition(line_numbers,off,Flags) :-option_definition298,10187 -option_definition(dynattr,on,Flags) :-option_definition301,10264 -option_definition(dynattr,on,Flags) :-option_definition301,10264 -option_definition(dynattr,on,Flags) :-option_definition301,10264 -option_definition(dynattr,off,Flags) :-option_definition303,10328 -option_definition(dynattr,off,Flags) :-option_definition303,10328 -option_definition(dynattr,off,Flags) :-option_definition303,10328 -option_definition(verbose,off,[verbose-off]).option_definition306,10395 -option_definition(verbose,off,[verbose-off]).option_definition306,10395 -option_definition(verbose,on,[verbose-on]).option_definition307,10441 -option_definition(verbose,on,[verbose-on]).option_definition307,10441 -option_definition(dump,off,[dump-off]).option_definition309,10486 -option_definition(dump,off,[dump-off]).option_definition309,10486 -option_definition(dump,on,[dump-on]).option_definition310,10526 -option_definition(dump,on,[dump-on]).option_definition310,10526 -init_chr_pp_flags :-init_chr_pp_flags312,10565 -set_chr_pp_flags([]).set_chr_pp_flags318,10698 -set_chr_pp_flags([]).set_chr_pp_flags318,10698 -set_chr_pp_flags([Name-Value|Flags]) :-set_chr_pp_flags319,10720 -set_chr_pp_flags([Name-Value|Flags]) :-set_chr_pp_flags319,10720 -set_chr_pp_flags([Name-Value|Flags]) :-set_chr_pp_flags319,10720 -set_chr_pp_flag(Name,Value) :-set_chr_pp_flag323,10817 -set_chr_pp_flag(Name,Value) :-set_chr_pp_flag323,10817 -set_chr_pp_flag(Name,Value) :-set_chr_pp_flag323,10817 -chr_pp_flag_definition(functional_dependency_analysis,[off,on]).chr_pp_flag_definition327,10919 -chr_pp_flag_definition(functional_dependency_analysis,[off,on]).chr_pp_flag_definition327,10919 -chr_pp_flag_definition(check_unnecessary_active,[off,full,simplification]).chr_pp_flag_definition328,10984 -chr_pp_flag_definition(check_unnecessary_active,[off,full,simplification]).chr_pp_flag_definition328,10984 -chr_pp_flag_definition(reorder_heads,[off,on]).chr_pp_flag_definition329,11060 -chr_pp_flag_definition(reorder_heads,[off,on]).chr_pp_flag_definition329,11060 -chr_pp_flag_definition(set_semantics_rule,[off,on]).chr_pp_flag_definition330,11108 -chr_pp_flag_definition(set_semantics_rule,[off,on]).chr_pp_flag_definition330,11108 -chr_pp_flag_definition(guard_via_reschedule,[off,on]).chr_pp_flag_definition331,11161 -chr_pp_flag_definition(guard_via_reschedule,[off,on]).chr_pp_flag_definition331,11161 -chr_pp_flag_definition(guard_locks,[on,off,error]).chr_pp_flag_definition332,11216 -chr_pp_flag_definition(guard_locks,[on,off,error]).chr_pp_flag_definition332,11216 -chr_pp_flag_definition(storage_analysis,[off,on]).chr_pp_flag_definition333,11268 -chr_pp_flag_definition(storage_analysis,[off,on]).chr_pp_flag_definition333,11268 -chr_pp_flag_definition(debugable,[on,off]).chr_pp_flag_definition334,11319 -chr_pp_flag_definition(debugable,[on,off]).chr_pp_flag_definition334,11319 -chr_pp_flag_definition(reduced_indexing,[off,on]).chr_pp_flag_definition335,11363 -chr_pp_flag_definition(reduced_indexing,[off,on]).chr_pp_flag_definition335,11363 -chr_pp_flag_definition(observation_analysis,[off,on]).chr_pp_flag_definition336,11414 -chr_pp_flag_definition(observation_analysis,[off,on]).chr_pp_flag_definition336,11414 -chr_pp_flag_definition(ai_observation_analysis,[off,on]).chr_pp_flag_definition337,11469 -chr_pp_flag_definition(ai_observation_analysis,[off,on]).chr_pp_flag_definition337,11469 -chr_pp_flag_definition(store_in_guards,[off,on]).chr_pp_flag_definition338,11527 -chr_pp_flag_definition(store_in_guards,[off,on]).chr_pp_flag_definition338,11527 -chr_pp_flag_definition(late_allocation,[off,on]).chr_pp_flag_definition339,11577 -chr_pp_flag_definition(late_allocation,[off,on]).chr_pp_flag_definition339,11577 -chr_pp_flag_definition(store_counter,[off,on]).chr_pp_flag_definition340,11627 -chr_pp_flag_definition(store_counter,[off,on]).chr_pp_flag_definition340,11627 -chr_pp_flag_definition(guard_simplification,[off,on]).chr_pp_flag_definition341,11675 -chr_pp_flag_definition(guard_simplification,[off,on]).chr_pp_flag_definition341,11675 -chr_pp_flag_definition(check_impossible_rules,[off,on]).chr_pp_flag_definition342,11730 -chr_pp_flag_definition(check_impossible_rules,[off,on]).chr_pp_flag_definition342,11730 -chr_pp_flag_definition(occurrence_subsumption,[off,on]).chr_pp_flag_definition343,11787 -chr_pp_flag_definition(occurrence_subsumption,[off,on]).chr_pp_flag_definition343,11787 -chr_pp_flag_definition(observation,[off,on]).chr_pp_flag_definition344,11844 -chr_pp_flag_definition(observation,[off,on]).chr_pp_flag_definition344,11844 -chr_pp_flag_definition(show,[off,on]).chr_pp_flag_definition345,11890 -chr_pp_flag_definition(show,[off,on]).chr_pp_flag_definition345,11890 -chr_pp_flag_definition(inline_insertremove,[on,off]).chr_pp_flag_definition346,11929 -chr_pp_flag_definition(inline_insertremove,[on,off]).chr_pp_flag_definition346,11929 -chr_pp_flag_definition(solver_events,[none,_]).chr_pp_flag_definition347,11983 -chr_pp_flag_definition(solver_events,[none,_]).chr_pp_flag_definition347,11983 -chr_pp_flag_definition(toplevel_show_store,[on,off]).chr_pp_flag_definition348,12031 -chr_pp_flag_definition(toplevel_show_store,[on,off]).chr_pp_flag_definition348,12031 -chr_pp_flag_definition(term_indexing,[off,on]).chr_pp_flag_definition349,12085 -chr_pp_flag_definition(term_indexing,[off,on]).chr_pp_flag_definition349,12085 -chr_pp_flag_definition(verbosity,[on,off]).chr_pp_flag_definition350,12133 -chr_pp_flag_definition(verbosity,[on,off]).chr_pp_flag_definition350,12133 -chr_pp_flag_definition(ht_removal,[off,on]).chr_pp_flag_definition351,12177 -chr_pp_flag_definition(ht_removal,[off,on]).chr_pp_flag_definition351,12177 -chr_pp_flag_definition(mixed_stores,[on,off]).chr_pp_flag_definition352,12222 -chr_pp_flag_definition(mixed_stores,[on,off]).chr_pp_flag_definition352,12222 -chr_pp_flag_definition(line_numbers,[off,on]).chr_pp_flag_definition353,12269 -chr_pp_flag_definition(line_numbers,[off,on]).chr_pp_flag_definition353,12269 -chr_pp_flag_definition(dynattr,[off,on]).chr_pp_flag_definition354,12316 -chr_pp_flag_definition(dynattr,[off,on]).chr_pp_flag_definition354,12316 -chr_pp_flag_definition(experiment,[off,on]).chr_pp_flag_definition355,12358 -chr_pp_flag_definition(experiment,[off,on]).chr_pp_flag_definition355,12358 -chr_pp_flag_definition(sss,[off,on]).chr_pp_flag_definition356,12403 -chr_pp_flag_definition(sss,[off,on]).chr_pp_flag_definition356,12403 -chr_pp_flag_definition(verbose,[off,on]).chr_pp_flag_definition358,12472 -chr_pp_flag_definition(verbose,[off,on]).chr_pp_flag_definition358,12472 -chr_pp_flag_definition(dump,[off,on]).chr_pp_flag_definition360,12549 -chr_pp_flag_definition(dump,[off,on]).chr_pp_flag_definition360,12549 -chr_pp_flag_definition(declare_stored_constraints,[off,on]).chr_pp_flag_definition362,12589 -chr_pp_flag_definition(declare_stored_constraints,[off,on]).chr_pp_flag_definition362,12589 -chr_pp_flag(Name,Value) :-chr_pp_flag364,12651 -chr_pp_flag(Name,Value) :-chr_pp_flag364,12651 -chr_pp_flag(Name,Value) :-chr_pp_flag364,12651 -sanity_check :-sanity_check378,12958 - -packages/chr/chr_compiler_utility.pl,10877 -time(_,Goal) :- call(Goal).time96,2613 -time(_,Goal) :- call(Goal).time96,2613 -time(_,Goal) :- call(Goal).time96,2613 -time(_,Goal) :- call(Goal).time96,2613 -time(_,Goal) :- call(Goal).time96,2613 -replicate(N,E,L) :-replicate99,2723 -replicate(N,E,L) :-replicate99,2723 -replicate(N,E,L) :-replicate99,2723 -pair_all_with([],_,[]).pair_all_with109,2900 -pair_all_with([],_,[]).pair_all_with109,2900 -pair_all_with([X|Xs],Y,[X-Y|Rest]) :-pair_all_with110,2924 -pair_all_with([X|Xs],Y,[X-Y|Rest]) :-pair_all_with110,2924 -pair_all_with([X|Xs],Y,[X-Y|Rest]) :-pair_all_with110,2924 -conj2list(Conj,L) :- %% transform conjunctions to listconj2list114,3071 -conj2list(Conj,L) :- %% transform conjunctions to listconj2list114,3071 -conj2list(Conj,L) :- %% transform conjunctions to listconj2list114,3071 -conj2list(Var,L,T) :-conj2list117,3154 -conj2list(Var,L,T) :-conj2list117,3154 -conj2list(Var,L,T) :-conj2list117,3154 -conj2list(true,L,L) :- !.conj2list120,3204 -conj2list(true,L,L) :- !.conj2list120,3204 -conj2list(true,L,L) :- !.conj2list120,3204 -conj2list(Conj,L,T) :-conj2list121,3230 -conj2list(Conj,L,T) :-conj2list121,3230 -conj2list(Conj,L,T) :-conj2list121,3230 -conj2list(G,[G | T],T).conj2list125,3318 -conj2list(G,[G | T],T).conj2list125,3318 -disj2list(Conj,L) :- %% transform disjunctions to listdisj2list127,3343 -disj2list(Conj,L) :- %% transform disjunctions to listdisj2list127,3343 -disj2list(Conj,L) :- %% transform disjunctions to listdisj2list127,3343 -disj2list(Conj,L,T) :-disj2list129,3425 -disj2list(Conj,L,T) :-disj2list129,3425 -disj2list(Conj,L,T) :-disj2list129,3425 -disj2list(Conj,L,T) :-disj2list132,3492 -disj2list(Conj,L,T) :-disj2list132,3492 -disj2list(Conj,L,T) :-disj2list132,3492 -disj2list(G,[G | T],T).disj2list136,3580 -disj2list(G,[G | T],T).disj2list136,3580 -list2conj([],true).list2conj138,3605 -list2conj([],true).list2conj138,3605 -list2conj([G],X) :- !, X = G.list2conj139,3625 -list2conj([G],X) :- !, X = G.list2conj139,3625 -list2conj([G],X) :- !, X = G.list2conj139,3625 -list2conj([G|Gs],C) :-list2conj140,3655 -list2conj([G|Gs],C) :-list2conj140,3655 -list2conj([G|Gs],C) :-list2conj140,3655 -list2disj([],fail).list2disj148,3785 -list2disj([],fail).list2disj148,3785 -list2disj([G],X) :- !, X = G.list2disj149,3805 -list2disj([G],X) :- !, X = G.list2disj149,3805 -list2disj([G],X) :- !, X = G.list2disj149,3805 -list2disj([G|Gs],C) :-list2disj150,3835 -list2disj([G|Gs],C) :-list2disj150,3835 -list2disj([G|Gs],C) :-list2disj150,3835 -identical_guarded_rules(rule(H11,H21,G1,_),rule(H12,H22,G2,_)) :-identical_guarded_rules161,4086 -identical_guarded_rules(rule(H11,H21,G1,_),rule(H12,H22,G2,_)) :-identical_guarded_rules161,4086 -identical_guarded_rules(rule(H11,H21,G1,_),rule(H12,H22,G2,_)) :-identical_guarded_rules161,4086 -identical_rules(rule(H11,H21,G1,B1),rule(H12,H22,G2,B2)) :-identical_rules168,4242 -identical_rules(rule(H11,H21,G1,B1),rule(H12,H22,G2,B2)) :-identical_rules168,4242 -identical_rules(rule(H11,H21,G1,B1),rule(H12,H22,G2,B2)) :-identical_rules168,4242 -identical_bodies(B1,B2) :-identical_bodies176,4420 -identical_bodies(B1,B2) :-identical_bodies176,4420 -identical_bodies(B1,B2) :-identical_bodies176,4420 -copy_with_variable_replacement(X,Y,L) :-copy_with_variable_replacement190,4622 -copy_with_variable_replacement(X,Y,L) :-copy_with_variable_replacement190,4622 -copy_with_variable_replacement(X,Y,L) :-copy_with_variable_replacement190,4622 -copy_with_variable_replacement_l([],[],_).copy_with_variable_replacement_l203,4883 -copy_with_variable_replacement_l([],[],_).copy_with_variable_replacement_l203,4883 -copy_with_variable_replacement_l([X|Xs],[Y|Ys],L) :-copy_with_variable_replacement_l204,4926 -copy_with_variable_replacement_l([X|Xs],[Y|Ys],L) :-copy_with_variable_replacement_l204,4926 -copy_with_variable_replacement_l([X|Xs],[Y|Ys],L) :-copy_with_variable_replacement_l204,4926 -variable_replacement(X,Y,L) :-variable_replacement210,5103 -variable_replacement(X,Y,L) :-variable_replacement210,5103 -variable_replacement(X,Y,L) :-variable_replacement210,5103 -variable_replacement(X,Y,L1,L2) :-variable_replacement213,5170 -variable_replacement(X,Y,L1,L2) :-variable_replacement213,5170 -variable_replacement(X,Y,L1,L2) :-variable_replacement213,5170 -variable_replacement_l([],[],L,L).variable_replacement_l227,5458 -variable_replacement_l([],[],L,L).variable_replacement_l227,5458 -variable_replacement_l([X|Xs],[Y|Ys],L1,L3) :-variable_replacement_l228,5493 -variable_replacement_l([X|Xs],[Y|Ys],L1,L3) :-variable_replacement_l228,5493 -variable_replacement_l([X|Xs],[Y|Ys],L1,L3) :-variable_replacement_l228,5493 -my_term_copy(X,Dict,Y) :-my_term_copy233,5698 -my_term_copy(X,Dict,Y) :-my_term_copy233,5698 -my_term_copy(X,Dict,Y) :-my_term_copy233,5698 -my_term_copy(X,Dict1,Dict2,Y) :-my_term_copy236,5754 -my_term_copy(X,Dict1,Dict2,Y) :-my_term_copy236,5754 -my_term_copy(X,Dict1,Dict2,Y) :-my_term_copy236,5754 -my_term_copy_list([],Dict,Dict,[]).my_term_copy_list249,6059 -my_term_copy_list([],Dict,Dict,[]).my_term_copy_list249,6059 -my_term_copy_list([X|Xs],Dict1,Dict3,[Y|Ys]) :-my_term_copy_list250,6095 -my_term_copy_list([X|Xs],Dict1,Dict3,[Y|Ys]) :-my_term_copy_list250,6095 -my_term_copy_list([X|Xs],Dict1,Dict3,[Y|Ys]) :-my_term_copy_list250,6095 -atom_concat_list([X],X) :- ! .atom_concat_list255,6300 -atom_concat_list([X],X) :- ! .atom_concat_list255,6300 -atom_concat_list([X],X) :- ! .atom_concat_list255,6300 -atom_concat_list([X|Xs],A) :-atom_concat_list256,6331 -atom_concat_list([X|Xs],A) :-atom_concat_list256,6331 -atom_concat_list([X|Xs],A) :-atom_concat_list256,6331 -set_elems([],_).set_elems260,6410 -set_elems([],_).set_elems260,6410 -set_elems([X|Xs],X) :-set_elems261,6427 -set_elems([X|Xs],X) :-set_elems261,6427 -set_elems([X|Xs],X) :-set_elems261,6427 -init([],[]).init264,6469 -init([],[]).init264,6469 -init([_],[]) :- !.init265,6482 -init([_],[]) :- !.init265,6482 -init([_],[]) :- !.init265,6482 -init([X|Xs],[X|R]) :-init266,6501 -init([X|Xs],[X|R]) :-init266,6501 -init([X|Xs],[X|R]) :-init266,6501 -member2([X|_],[Y|_],X-Y).member2269,6537 -member2([X|_],[Y|_],X-Y).member2269,6537 -member2([_|Xs],[_|Ys],P) :-member2270,6563 -member2([_|Xs],[_|Ys],P) :-member2270,6563 -member2([_|Xs],[_|Ys],P) :-member2270,6563 -select2(X, Y, [X|Xs], [Y|Ys], Xs, Ys).select2273,6611 -select2(X, Y, [X|Xs], [Y|Ys], Xs, Ys).select2273,6611 -select2(X, Y, [X1|Xs], [Y1|Ys], [X1|NXs], [Y1|NYs]) :-select2274,6650 -select2(X, Y, [X1|Xs], [Y1|Ys], [X1|NXs], [Y1|NYs]) :-select2274,6650 -select2(X, Y, [X1|Xs], [Y1|Ys], [X1|NXs], [Y1|NYs]) :-select2274,6650 -instrument_goal(Goal,Pre,Post,(Pre,Goal,Post)).instrument_goal277,6740 -instrument_goal(Goal,Pre,Post,(Pre,Goal,Post)).instrument_goal277,6740 -sort_by_key(List,Keys,SortedList) :-sort_by_key279,6789 -sort_by_key(List,Keys,SortedList) :-sort_by_key279,6789 -sort_by_key(List,Keys,SortedList) :-sort_by_key279,6789 -arg1(Term,Index,Arg) :- arg(Index,Term,Arg).arg1285,7001 -arg1(Term,Index,Arg) :- arg(Index,Term,Arg).arg1285,7001 -arg1(Term,Index,Arg) :- arg(Index,Term,Arg).arg1285,7001 -arg1(Term,Index,Arg) :- arg(Index,Term,Arg).arg1285,7001 -arg1(Term,Index,Arg) :- arg(Index,Term,Arg).arg1285,7001 -wrap_in_functor(Functor,X,Term) :-wrap_in_functor287,7047 -wrap_in_functor(Functor,X,Term) :-wrap_in_functor287,7047 -wrap_in_functor(Functor,X,Term) :-wrap_in_functor287,7047 -tree_set_empty(TreeSet) :- empty_assoc(TreeSet).tree_set_empty292,7188 -tree_set_empty(TreeSet) :- empty_assoc(TreeSet).tree_set_empty292,7188 -tree_set_empty(TreeSet) :- empty_assoc(TreeSet).tree_set_empty292,7188 -tree_set_empty(TreeSet) :- empty_assoc(TreeSet).tree_set_empty292,7188 -tree_set_empty(TreeSet) :- empty_assoc(TreeSet).tree_set_empty292,7188 -tree_set_memberchk(Element,TreeSet) :- get_assoc(Element,TreeSet,_).tree_set_memberchk293,7237 -tree_set_memberchk(Element,TreeSet) :- get_assoc(Element,TreeSet,_).tree_set_memberchk293,7237 -tree_set_memberchk(Element,TreeSet) :- get_assoc(Element,TreeSet,_).tree_set_memberchk293,7237 -tree_set_memberchk(Element,TreeSet) :- get_assoc(Element,TreeSet,_).tree_set_memberchk293,7237 -tree_set_memberchk(Element,TreeSet) :- get_assoc(Element,TreeSet,_).tree_set_memberchk293,7237 -tree_set_add(TreeSet,Element,NTreeSet) :- put_assoc(Element,TreeSet,x,NTreeSet).tree_set_add294,7306 -tree_set_add(TreeSet,Element,NTreeSet) :- put_assoc(Element,TreeSet,x,NTreeSet).tree_set_add294,7306 -tree_set_add(TreeSet,Element,NTreeSet) :- put_assoc(Element,TreeSet,x,NTreeSet).tree_set_add294,7306 -tree_set_add(TreeSet,Element,NTreeSet) :- put_assoc(Element,TreeSet,x,NTreeSet).tree_set_add294,7306 -tree_set_add(TreeSet,Element,NTreeSet) :- put_assoc(Element,TreeSet,x,NTreeSet).tree_set_add294,7306 -tree_set_merge(TreeSet1,TreeSet2,TreeSet3) :-tree_set_merge295,7387 -tree_set_merge(TreeSet1,TreeSet2,TreeSet3) :-tree_set_merge295,7387 -tree_set_merge(TreeSet1,TreeSet2,TreeSet3) :-tree_set_merge295,7387 -tree_set_add_pair(Key-Value,TreeSet,NTreeSet) :-tree_set_add_pair298,7513 -tree_set_add_pair(Key-Value,TreeSet,NTreeSet) :-tree_set_add_pair298,7513 -tree_set_add_pair(Key-Value,TreeSet,NTreeSet) :-tree_set_add_pair298,7513 -fold1(P,[Head|Tail],Result) :-fold1302,7684 -fold1(P,[Head|Tail],Result) :-fold1302,7684 -fold1(P,[Head|Tail],Result) :-fold1302,7684 -fold([],_,Acc,Acc).fold305,7743 -fold([],_,Acc,Acc).fold305,7743 -fold([X|Xs],P,Acc,Res) :-fold306,7763 -fold([X|Xs],P,Acc,Res) :-fold306,7763 -fold([X|Xs],P,Acc,Res) :-fold306,7763 -maplist_dcg(P,L1,L2,L) -->maplist_dcg310,7833 -maplist_dcg(P,L1,L2,L) -->maplist_dcg310,7833 -maplist_dcg(P,L1,L2,L) -->maplist_dcg310,7833 -maplist_dcg_([],[],[],_) --> [].maplist_dcg_313,7887 -maplist_dcg_([],[],[],_) --> [].maplist_dcg_313,7887 -maplist_dcg_([],[],[],_) --> [].maplist_dcg_313,7887 -maplist_dcg_([X|Xs],[Y|Ys],[Z|Zs],P) -->maplist_dcg_314,7920 -maplist_dcg_([X|Xs],[Y|Ys],[Z|Zs],P) -->maplist_dcg_314,7920 -maplist_dcg_([X|Xs],[Y|Ys],[Z|Zs],P) -->maplist_dcg_314,7920 -maplist_dcg(P,L1,L2) -->maplist_dcg318,8005 -maplist_dcg(P,L1,L2) -->maplist_dcg318,8005 -maplist_dcg(P,L1,L2) -->maplist_dcg318,8005 -maplist_dcg_([],[],_) --> [].maplist_dcg_321,8055 -maplist_dcg_([],[],_) --> [].maplist_dcg_321,8055 -maplist_dcg_([],[],_) --> [].maplist_dcg_321,8055 -maplist_dcg_([X|Xs],[Y|Ys],P) -->maplist_dcg_322,8085 -maplist_dcg_([X|Xs],[Y|Ys],P) -->maplist_dcg_322,8085 -maplist_dcg_([X|Xs],[Y|Ys],P) -->maplist_dcg_322,8085 -user:goal_expansion(arg1(Term,Index,Arg), arg(Index,Term,Arg)).goal_expansion331,8311 -user:goal_expansion(wrap_in_functor(Functor,In,Out), Goal) :-goal_expansion332,8375 -user:goal_expansion(wrap_in_functor(Functor,In,Out), Goal) :-goal_expansion332,8375 - -packages/chr/chr_debug.pl,300 -chr_show_store(Mod) :-chr_show_store51,1762 -chr_show_store(Mod) :-chr_show_store51,1762 -chr_show_store(Mod) :-chr_show_store51,1762 -find_chr_constraint(C) :-find_chr_constraint64,1996 -find_chr_constraint(C) :-find_chr_constraint64,1996 -find_chr_constraint(C) :-find_chr_constraint64,1996 - -packages/chr/chr_hashtable_store.pl,3626 -:- multifile user:goal_expansion/2.multifile59,1870 -:- multifile user:goal_expansion/2.multifile59,1870 -:- dynamic user:goal_expansion/2.dynamic60,1906 -:- dynamic user:goal_expansion/2.dynamic60,1906 -initial_capacity(89).initial_capacity62,1941 -initial_capacity(89).initial_capacity62,1941 -new_ht(HT) :-new_ht64,1964 -new_ht(HT) :-new_ht64,1964 -new_ht(HT) :-new_ht64,1964 -new_ht(Capacity,HT) :-new_ht68,2030 -new_ht(Capacity,HT) :-new_ht68,2030 -new_ht(Capacity,HT) :-new_ht68,2030 -lookup_ht(HT,Key,Values) :-lookup_ht73,2120 -lookup_ht(HT,Key,Values) :-lookup_ht73,2120 -lookup_ht(HT,Key,Values) :-lookup_ht73,2120 -lookup_ht1(HT,Hash,Key,Values) :-lookup_ht192,2450 -lookup_ht1(HT,Hash,Key,Values) :-lookup_ht192,2450 -lookup_ht1(HT,Hash,Key,Values) :-lookup_ht192,2450 -lookup_ht1(HT,Hash,Key,Values) :-lookup_ht1105,2656 -lookup_ht1(HT,Hash,Key,Values) :-lookup_ht1105,2656 -lookup_ht1(HT,Hash,Key,Values) :-lookup_ht1105,2656 -lookup_ht2(HT,Key,Values,Index) :-lookup_ht2117,2887 -lookup_ht2(HT,Key,Values,Index) :-lookup_ht2117,2887 -lookup_ht2(HT,Key,Values,Index) :-lookup_ht2117,2887 -lookup_pair_eq([P | KVs],Key,Pair) :-lookup_pair_eq130,3141 -lookup_pair_eq([P | KVs],Key,Pair) :-lookup_pair_eq130,3141 -lookup_pair_eq([P | KVs],Key,Pair) :-lookup_pair_eq130,3141 -insert_ht(HT,Key,Value) :-insert_ht138,3254 -insert_ht(HT,Key,Value) :-insert_ht138,3254 -insert_ht(HT,Key,Value) :-insert_ht138,3254 -insert_ht1(HT,Key,Hash,Value) :-insert_ht1167,3900 -insert_ht1(HT,Key,Hash,Value) :-insert_ht1167,3900 -insert_ht1(HT,Key,Hash,Value) :-insert_ht1167,3900 -insert_ht(HT,Key,Value,Result) :-insert_ht197,4589 -insert_ht(HT,Key,Value,Result) :-insert_ht197,4589 -insert_ht(HT,Key,Value,Result) :-insert_ht197,4589 -delete_first_ht(HT,Key,Values) :-delete_first_ht232,5486 -delete_first_ht(HT,Key,Values) :-delete_first_ht232,5486 -delete_first_ht(HT,Key,Values) :-delete_first_ht232,5486 -delete_ht(HT,Key,Value) :-delete_ht261,6191 -delete_ht(HT,Key,Value) :-delete_ht261,6191 -delete_ht(HT,Key,Value) :-delete_ht261,6191 -delete_first_fail([X | Xs], Y, Zs) :-delete_first_fail301,6928 -delete_first_fail([X | Xs], Y, Zs) :-delete_first_fail301,6928 -delete_first_fail([X | Xs], Y, Zs) :-delete_first_fail301,6928 -delete_ht1(HT,Key,Value,Index) :-delete_ht1309,7047 -delete_ht1(HT,Key,Value,Index) :-delete_ht1309,7047 -delete_ht1(HT,Key,Value,Index) :-delete_ht1309,7047 -value_ht(HT,Value) :-value_ht349,7877 -value_ht(HT,Value) :-value_ht349,7877 -value_ht(HT,Value) :-value_ht349,7877 -value_ht(I,N,Table,Value) :-value_ht353,7963 -value_ht(I,N,Table,Value) :-value_ht353,7963 -value_ht(I,N,Table,Value) :-value_ht353,7963 -expand_ht(HT,NewCapacity) :-expand_ht371,8256 -expand_ht(HT,NewCapacity) :-expand_ht371,8256 -expand_ht(HT,NewCapacity) :-expand_ht371,8256 -expand_copy(Table,I,N,NewTable,NewCapacity) :-expand_copy379,8486 -expand_copy(Table,I,N,NewTable,NewCapacity) :-expand_copy379,8486 -expand_copy(Table,I,N,NewTable,NewCapacity) :-expand_copy379,8486 -expand_inserts([],_,_).expand_inserts395,8803 -expand_inserts([],_,_).expand_inserts395,8803 -expand_inserts([K-V|R],Table,Capacity) :-expand_inserts396,8827 -expand_inserts([K-V|R],Table,Capacity) :-expand_inserts396,8827 -expand_inserts([K-V|R],Table,Capacity) :-expand_inserts396,8827 -expand_insert(Table,Capacity,K,V) :-expand_insert400,8941 -expand_insert(Table,Capacity,K,V) :-expand_insert400,8941 -expand_insert(Table,Capacity,K,V) :-expand_insert400,8941 -stats_ht(HT) :-stats_ht412,9271 -stats_ht(HT) :-stats_ht412,9271 -stats_ht(HT) :-stats_ht412,9271 - -packages/chr/chr_integertable_store.pl,1817 -initial_capacity(8).initial_capacity51,1751 -initial_capacity(8).initial_capacity51,1751 -new_iht(HT) :-new_iht56,1818 -new_iht(HT) :-new_iht56,1818 -new_iht(HT) :-new_iht56,1818 -new_iht(Capacity,HT) :-new_iht60,1886 -new_iht(Capacity,HT) :-new_iht60,1886 -new_iht(Capacity,HT) :-new_iht60,1886 -lookup_iht(ht(_,Table),Int,Values) :-lookup_iht65,1996 -lookup_iht(ht(_,Table),Int,Values) :-lookup_iht65,1996 -lookup_iht(ht(_,Table),Int,Values) :-lookup_iht65,1996 -insert_iht(HT,Int,Value) :-insert_iht71,2120 -insert_iht(HT,Int,Value) :-insert_iht71,2120 -insert_iht(HT,Int,Value) :-insert_iht71,2120 -delete_iht(ht(_,Table),Int,Value) :-delete_iht86,2433 -delete_iht(ht(_,Table),Int,Value) :-delete_iht86,2433 -delete_iht(ht(_,Table),Int,Value) :-delete_iht86,2433 -delete_first_fail([X | Xs], Y, Xs) :-delete_first_fail98,2738 -delete_first_fail([X | Xs], Y, Xs) :-delete_first_fail98,2738 -delete_first_fail([X | Xs], Y, Xs) :-delete_first_fail98,2738 -delete_first_fail([X | Xs], Y, [X | Zs]) :-delete_first_fail100,2788 -delete_first_fail([X | Xs], Y, [X | Zs]) :-delete_first_fail100,2788 -delete_first_fail([X | Xs], Y, [X | Zs]) :-delete_first_fail100,2788 -value_iht(HT,Value) :-value_iht104,2945 -value_iht(HT,Value) :-value_iht104,2945 -value_iht(HT,Value) :-value_iht104,2945 -value_iht(I,N,Table,Value) :-value_iht108,3031 -value_iht(I,N,Table,Value) :-value_iht108,3031 -value_iht(I,N,Table,Value) :-value_iht108,3031 -expand_iht(HT,NewCapacity) :-expand_iht121,3273 -expand_iht(HT,NewCapacity) :-expand_iht121,3273 -expand_iht(HT,NewCapacity) :-expand_iht121,3273 -expand_copy(Table,I,N,NewTable,NewCapacity) :-expand_copy128,3468 -expand_copy(Table,I,N,NewTable,NewCapacity) :-expand_copy128,3468 -expand_copy(Table,I,N,NewTable,NewCapacity) :-expand_copy128,3468 - -packages/chr/chr_messages.pl,4728 -chr_message(compilation_failed(From)) -->chr_message46,1624 -chr_message(compilation_failed(From)) -->chr_message46,1624 -chr_message(compilation_failed(From)) -->chr_message46,1624 -chr_message(prompt) -->chr_message51,1725 -chr_message(prompt) -->chr_message51,1725 -chr_message(prompt) -->chr_message51,1725 -chr_message(command(Command)) -->chr_message53,1789 -chr_message(command(Command)) -->chr_message53,1789 -chr_message(command(Command)) -->chr_message53,1789 -chr_message(invalid_command) -->chr_message55,1860 -chr_message(invalid_command) -->chr_message55,1860 -chr_message(invalid_command) -->chr_message55,1860 -chr_message(debug_options) -->chr_message57,1953 -chr_message(debug_options) -->chr_message57,1953 -chr_message(debug_options) -->chr_message57,1953 -debug_commands([]) -->debug_commands66,2132 -debug_commands([]) -->debug_commands66,2132 -debug_commands([]) -->debug_commands66,2132 -debug_commands([Ls-Cmd|T]) -->debug_commands68,2160 -debug_commands([Ls-Cmd|T]) -->debug_commands68,2160 -debug_commands([Ls-Cmd|T]) -->debug_commands68,2160 -chars([C]) --> !,chars72,2261 -chars([C]) --> !,chars72,2261 -chars([C]) --> !,chars72,2261 -chars([C|T]) -->chars74,2289 -chars([C|T]) -->chars74,2289 -chars([C|T]) -->chars74,2289 -char(' ') --> !, [''].char78,2336 -char(' ') --> !, [''].char78,2336 -char(' ') --> !, [''].char78,2336 -char('\r') --> !, [''].char79,2366 -char('\r') --> !, [''].char79,2366 -char('\r') --> !, [''].char79,2366 -char(end_of_file) --> !, ['EOF'].char80,2394 -char(end_of_file) --> !, ['EOF'].char80,2394 -char(end_of_file) --> !, ['EOF'].char80,2394 -char(C) --> [C].char81,2428 -char(C) --> [C].char81,2428 -char(C) --> [C].char81,2428 -chr_message(ancestors(History, Depth)) -->chr_message84,2447 -chr_message(ancestors(History, Depth)) -->chr_message84,2447 -chr_message(ancestors(History, Depth)) -->chr_message84,2447 -ancestors([], _) -->ancestors88,2546 -ancestors([], _) -->ancestors88,2546 -ancestors([], _) -->ancestors88,2546 -ancestors([Event|Events], Depth) -->ancestors90,2572 -ancestors([Event|Events], Depth) -->ancestors90,2572 -ancestors([Event|Events], Depth) -->ancestors90,2572 -chr_message(event(Port, Depth)) -->chr_message99,2725 -chr_message(event(Port, Depth)) -->chr_message99,2725 -chr_message(event(Port, Depth)) -->chr_message99,2725 -event(Port, Depth) -->event104,2842 -event(Port, Depth) -->event104,2842 -event(Port, Depth) -->event104,2842 -event(apply(H1,H2,G,B), Depth) -->event107,2893 -event(apply(H1,H2,G,B), Depth) -->event107,2893 -event(apply(H1,H2,G,B), Depth) -->event107,2893 -event(try(H1,H2,G,B), Depth) -->event111,2977 -event(try(H1,H2,G,B), Depth) -->event111,2977 -event(try(H1,H2,G,B), Depth) -->event111,2977 -event(insert(#(_,Susp)), Depth) -->event115,3057 -event(insert(#(_,Susp)), Depth) -->event115,3057 -event(insert(#(_,Susp)), Depth) -->event115,3057 -port(call(Susp)) -->port120,3139 -port(call(Susp)) -->port120,3139 -port(call(Susp)) -->port120,3139 -port(wake(Susp)) -->port123,3188 -port(wake(Susp)) -->port123,3188 -port(wake(Susp)) -->port123,3188 -port(exit(Susp)) -->port126,3237 -port(exit(Susp)) -->port126,3237 -port(exit(Susp)) -->port126,3237 -port(fail(Susp)) -->port129,3286 -port(fail(Susp)) -->port129,3286 -port(fail(Susp)) -->port129,3286 -port(redo(Susp)) -->port132,3335 -port(redo(Susp)) -->port132,3335 -port(redo(Susp)) -->port132,3335 -port(remove(Susp)) -->port135,3384 -port(remove(Susp)) -->port135,3384 -port(remove(Susp)) -->port135,3384 -depth(Depth) -->depth140,3439 -depth(Depth) -->depth140,3439 -depth(Depth) -->depth140,3439 -head(Susp) -->head143,3485 -head(Susp) -->head143,3485 -head(Susp) -->head143,3485 -heads([H]) --> !,heads148,3589 -heads([H]) --> !,heads148,3589 -heads([H]) --> !,heads148,3589 -heads([H|T]) -->heads150,3617 -heads([H|T]) -->heads150,3617 -heads([H|T]) -->heads150,3617 -rule(H1, H2, G, B) -->rule160,3748 -rule(H1, H2, G, B) -->rule160,3748 -rule(H1, H2, G, B) -->rule160,3748 -rule_head([], H2) --> !,rule_head164,3810 -rule_head([], H2) --> !,rule_head164,3810 -rule_head([], H2) --> !,rule_head164,3810 -rule_head(H1, []) --> !,rule_head167,3861 -rule_head(H1, []) --> !,rule_head167,3861 -rule_head(H1, []) --> !,rule_head167,3861 -rule_head(H1, H2) -->rule_head170,3912 -rule_head(H1, H2) -->rule_head170,3912 -rule_head(H1, H2) -->rule_head170,3912 -rule_body(true, B) --> !,rule_body174,3982 -rule_body(true, B) --> !,rule_body174,3982 -rule_body(true, B) --> !,rule_body174,3982 -rule_body(G, B) -->rule_body176,4024 -rule_body(G, B) -->rule_body176,4024 -rule_body(G, B) -->rule_body176,4024 - -packages/chr/chr_op.pl,0 - -packages/chr/chr_op2.pl,0 - -packages/chr/chr_runtime.pl,25018 -:- dynamic user:exception/3.dynamic160,4713 -:- dynamic user:exception/3.dynamic160,4713 -:- multifile user:exception/3.multifile161,4742 -:- multifile user:exception/3.multifile161,4742 -user:exception(undefined_global_variable, Name, retry) :-exception163,4774 -user:exception(undefined_global_variable, Name, retry) :-exception163,4774 -chr_runtime_global_variable(chr_id).chr_runtime_global_variable167,4880 -chr_runtime_global_variable(chr_id).chr_runtime_global_variable167,4880 -chr_runtime_global_variable(chr_global).chr_runtime_global_variable168,4917 -chr_runtime_global_variable(chr_global).chr_runtime_global_variable168,4917 -chr_runtime_global_variable(chr_debug).chr_runtime_global_variable169,4958 -chr_runtime_global_variable(chr_debug).chr_runtime_global_variable169,4958 -chr_runtime_global_variable(chr_debug_history).chr_runtime_global_variable170,4998 -chr_runtime_global_variable(chr_debug_history).chr_runtime_global_variable170,4998 -chr_init :-chr_init172,5047 -chr_show_store(Mod) :-chr_show_store195,5554 -chr_show_store(Mod) :-chr_show_store195,5554 -chr_show_store(Mod) :-chr_show_store195,5554 -find_chr_constraint(Constraint) :-find_chr_constraint204,5714 -find_chr_constraint(Constraint) :-find_chr_constraint204,5714 -find_chr_constraint(Constraint) :-find_chr_constraint204,5714 -:- multifile user:goal_expansion/2.multifile216,6250 -:- multifile user:goal_expansion/2.multifile216,6250 -:- dynamic user:goal_expansion/2.dynamic217,6286 -:- dynamic user:goal_expansion/2.dynamic217,6286 -user:goal_expansion('chr get_mutable'(Val,Var), Var=mutable(Val)).goal_expansion219,6323 -user:goal_expansion('chr update_mutable'(Val,Var), setarg(1,Var,Val)).goal_expansion220,6393 -user:goal_expansion('chr create_mutable'(Val,Var), Var=mutable(Val)).goal_expansion221,6464 -user:goal_expansion('chr default_store'(X), nb_getval(chr_global,X)).goal_expansion222,6534 -'chr run_suspensions'( Slots) :-chr run_suspensions250,7747 -'chr run_suspensions'( Slots) :-chr run_suspensions250,7747 -'chr run_suspensions'( Slots) :-chr run_suspensions250,7747 -'chr run_suspensions_loop'([]).chr run_suspensions_loop253,7811 -'chr run_suspensions_loop'([])./p,predicate,predicate definition253,7811 -'chr run_suspensions_loop'([]).chr run_suspensions_loop253,7811 -'chr run_suspensions_loop'([L|Ls]) :-chr run_suspensions_loop254,7843 -'chr run_suspensions_loop'([L|Ls]) :-chr run_suspensions_loop254,7843 -'chr run_suspensions_loop'([L|Ls]) :-chr run_suspensions_loop254,7843 -run_suspensions([]).run_suspensions258,7936 -run_suspensions([]).run_suspensions258,7936 -run_suspensions([S|Next] ) :-run_suspensions259,7957 -run_suspensions([S|Next] ) :-run_suspensions259,7957 -run_suspensions([S|Next] ) :-run_suspensions259,7957 -'chr run_suspensions_d'( Slots) :-chr run_suspensions_d281,8519 -'chr run_suspensions_d'( Slots) :-chr run_suspensions_d281,8519 -'chr run_suspensions_d'( Slots) :-chr run_suspensions_d281,8519 -'chr run_suspensions_loop_d'([]).chr run_suspensions_loop_d284,8587 -'chr run_suspensions_loop_d'([])./p,predicate,predicate definition284,8587 -'chr run_suspensions_loop_d'([]).chr run_suspensions_loop_d284,8587 -'chr run_suspensions_loop_d'([L|Ls]) :-chr run_suspensions_loop_d285,8621 -'chr run_suspensions_loop_d'([L|Ls]) :-chr run_suspensions_loop_d285,8621 -'chr run_suspensions_loop_d'([L|Ls]) :-chr run_suspensions_loop_d285,8621 -run_suspensions_d([]).run_suspensions_d289,8720 -run_suspensions_d([]).run_suspensions_d289,8720 -run_suspensions_d([S|Next] ) :-run_suspensions_d290,8743 -run_suspensions_d([S|Next] ) :-run_suspensions_d290,8743 -run_suspensions_d([S|Next] ) :-run_suspensions_d290,8743 -locked:attr_unify_hook(_,_) :- fail.attr_unify_hook333,9846 -locked:attr_unify_hook(_,_) :- fail.attr_unify_hook333,9846 -'chr lock'(T) :-chr lock336,9965 -'chr lock'(T) :-chr lock336,9965 -'chr lock'(T) :-chr lock336,9965 -lockv([]).lockv343,10076 -lockv([]).lockv343,10076 -lockv([T|R]) :- put_attr( T, locked, x), lockv(R).lockv344,10087 -lockv([T|R]) :- put_attr( T, locked, x), lockv(R).lockv344,10087 -lockv([T|R]) :- put_attr( T, locked, x), lockv(R).lockv344,10087 -lockv([T|R]) :- put_attr( T, locked, x), lockv(R).lockv344,10087 -lockv([T|R]) :- put_attr( T, locked, x), lockv(R).lockv344,10087 -'chr unlock'(T) :-chr unlock346,10139 -'chr unlock'(T) :-chr unlock346,10139 -'chr unlock'(T) :-chr unlock346,10139 -unlockv([]).unlockv353,10244 -unlockv([]).unlockv353,10244 -unlockv([T|R]) :- del_attr( T, locked), unlockv(R).unlockv354,10257 -unlockv([T|R]) :- del_attr( T, locked), unlockv(R).unlockv354,10257 -unlockv([T|R]) :- del_attr( T, locked), unlockv(R).unlockv354,10257 -unlockv([T|R]) :- del_attr( T, locked), unlockv(R).unlockv354,10257 -unlockv([T|R]) :- del_attr( T, locked), unlockv(R).unlockv354,10257 -'chr none_locked'( []).chr none_locked358,10392 -'chr none_locked'( [])./p,predicate,predicate definition358,10392 -'chr none_locked'( []).chr none_locked358,10392 -'chr none_locked'( [V|Vs]) :-chr none_locked359,10416 -'chr none_locked'( [V|Vs]) :-chr none_locked359,10416 -'chr none_locked'( [V|Vs]) :-chr none_locked359,10416 -'chr not_locked'(V) :-chr not_locked366,10514 -'chr not_locked'(V) :-chr not_locked366,10514 -'chr not_locked'(V) :-chr not_locked366,10514 -lock_error(Term) :-lock_error380,10784 -lock_error(Term) :-lock_error380,10784 -lock_error(Term) :-lock_error380,10784 -error_locked:attr_unify_hook(_,Term) :- lock_error(Term).attr_unify_hook386,11050 -error_locked:attr_unify_hook(_,Term) :- lock_error(Term).attr_unify_hook386,11050 -error_locked:attr_unify_hook(_,Term) :- lock_error(Term).attr_unify_hook386,11050 -'chr error_lock'(T) :-chr error_lock389,11190 -'chr error_lock'(T) :-chr error_lock389,11190 -'chr error_lock'(T) :-chr error_lock389,11190 -error_lockv([]).error_lockv396,11319 -error_lockv([]).error_lockv396,11319 -error_lockv([T|R]) :- put_attr( T, error_locked, x), error_lockv(R).error_lockv397,11336 -error_lockv([T|R]) :- put_attr( T, error_locked, x), error_lockv(R).error_lockv397,11336 -error_lockv([T|R]) :- put_attr( T, error_locked, x), error_lockv(R).error_lockv397,11336 -error_lockv([T|R]) :- put_attr( T, error_locked, x), error_lockv(R).error_lockv397,11336 -error_lockv([T|R]) :- put_attr( T, error_locked, x), error_lockv(R).error_lockv397,11336 -'chr unerror_lock'(T) :-chr unerror_lock399,11406 -'chr unerror_lock'(T) :-chr unerror_lock399,11406 -'chr unerror_lock'(T) :-chr unerror_lock399,11406 -unerror_lockv([]).unerror_lockv406,11529 -unerror_lockv([]).unerror_lockv406,11529 -unerror_lockv([T|R]) :- del_attr( T, error_locked), unerror_lockv(R).unerror_lockv407,11548 -unerror_lockv([T|R]) :- del_attr( T, error_locked), unerror_lockv(R).unerror_lockv407,11548 -unerror_lockv([T|R]) :- del_attr( T, error_locked), unerror_lockv(R).unerror_lockv407,11548 -unerror_lockv([T|R]) :- del_attr( T, error_locked), unerror_lockv(R).unerror_lockv407,11548 -unerror_lockv([T|R]) :- del_attr( T, error_locked), unerror_lockv(R).unerror_lockv407,11548 -'chr none_error_locked'( []).chr none_error_locked411,11701 -'chr none_error_locked'( [])./p,predicate,predicate definition411,11701 -'chr none_error_locked'( []).chr none_error_locked411,11701 -'chr none_error_locked'( [V|Vs]) :-chr none_error_locked412,11731 -'chr none_error_locked'( [V|Vs]) :-chr none_error_locked412,11731 -'chr none_error_locked'( [V|Vs]) :-chr none_error_locked412,11731 -'chr not_error_locked'(V) :-chr not_error_locked419,11847 -'chr not_error_locked'(V) :-chr not_error_locked419,11847 -'chr not_error_locked'(V) :-chr not_error_locked419,11847 -'chr remove_constraint_internal'( Susp, Agenda) :-chr remove_constraint_internal434,12084 -'chr remove_constraint_internal'( Susp, Agenda) :-chr remove_constraint_internal434,12084 -'chr remove_constraint_internal'( Susp, Agenda) :-chr remove_constraint_internal434,12084 -'chr newvia_1'(X,V) :-chr newvia_1452,12622 -'chr newvia_1'(X,V) :-chr newvia_1452,12622 -'chr newvia_1'(X,V) :-chr newvia_1452,12622 -'chr newvia_2'(X,Y,V) :-chr newvia_2459,12691 -'chr newvia_2'(X,Y,V) :-chr newvia_2459,12691 -'chr newvia_2'(X,Y,V) :-chr newvia_2459,12691 -'chr newvia'(L,V) :- nonground(L,V).chr newvia476,13009 -'chr newvia'(L,V) :- nonground(L,V).chr newvia476,13009 -'chr newvia'(L,V) :- nonground(L,V).chr newvia476,13009 -'chr newvia'(L,V) :- nonground(L,V)./p,predicate,predicate definition476,13009 -'chr newvia'(L,V) :- nonground(L,V).chr newvia476,13009 -'chr newvia'(L,V) :- nonground(L,V).chr newvia476,13009 -'chr via_1'(X,V) :-chr via_1479,13129 -'chr via_1'(X,V) :-chr via_1479,13129 -'chr via_1'(X,V) :-chr via_1479,13129 -'chr via_2'(X,Y,V) :-chr via_2490,13272 -'chr via_2'(X,Y,V) :-chr via_2490,13272 -'chr via_2'(X,Y,V) :-chr via_2490,13272 -'chr via'(L,V) :-chr via509,13623 -'chr via'(L,V) :-chr via509,13623 -'chr via'(L,V) :-chr via509,13623 -nonground( Term, V) :-nonground516,13702 -nonground( Term, V) :-nonground516,13702 -nonground( Term, V) :-nonground516,13702 -'chr novel_production'( Self, Tuple) :-chr novel_production521,13848 -'chr novel_production'( Self, Tuple) :-chr novel_production521,13848 -'chr novel_production'( Self, Tuple) :-chr novel_production521,13848 -'chr extend_history'( Self, Tuple) :-chr extend_history534,14111 -'chr extend_history'( Self, Tuple) :-chr extend_history534,14111 -'chr extend_history'( Self, Tuple) :-chr extend_history534,14111 -'chr allocate_constraint'( Closure, Self, F, Args) :-chr allocate_constraint541,14378 -'chr allocate_constraint'( Closure, Self, F, Args) :-chr allocate_constraint541,14378 -'chr allocate_constraint'( Closure, Self, F, Args) :-chr allocate_constraint541,14378 -'chr activate_constraint'( Vars, Susp, Generation) :-chr activate_constraint554,14753 -'chr activate_constraint'( Vars, Susp, Generation) :-chr activate_constraint554,14753 -'chr activate_constraint'( Vars, Susp, Generation) :-chr activate_constraint554,14753 -'chr insert_constraint_internal'([Global|Vars], Self, Closure, F, Args) :-chr insert_constraint_internal580,15466 -'chr insert_constraint_internal'([Global|Vars], Self, Closure, F, Args) :-chr insert_constraint_internal580,15466 -'chr insert_constraint_internal'([Global|Vars], Self, Closure, F, Args) :-chr insert_constraint_internal580,15466 -insert_constraint_internal([Global|Vars], Self, Term, Closure, F, Args) :-insert_constraint_internal591,15850 -insert_constraint_internal([Global|Vars], Self, Term, Closure, F, Args) :-insert_constraint_internal591,15850 -insert_constraint_internal([Global|Vars], Self, Term, Closure, F, Args) :-insert_constraint_internal591,15850 -'chr empty_history'( E) :- empty_ds( E).chr empty_history603,16323 -'chr empty_history'( E) :- empty_ds( E).chr empty_history603,16323 -'chr empty_history'( E) :- empty_ds( E).chr empty_history603,16323 -'chr empty_history'( E) :- empty_ds( E)./p,predicate,predicate definition603,16323 -'chr empty_history'( E) :- empty_ds( E).chr empty_history603,16323 -'chr empty_history'( E) :- empty_ds( E).chr empty_history603,16323 -'chr gen_id'( Id) :-chr gen_id606,16446 -'chr gen_id'( Id) :-chr gen_id606,16446 -'chr gen_id'( Id) :-chr gen_id606,16446 -'chr create_mutable'(V,mutable(V)).chr create_mutable614,16632 -'chr create_mutable'(V,mutable(V))./p,predicate,predicate definition614,16632 -'chr create_mutable'(V,mutable(V)).chr create_mutable614,16632 -'chr get_mutable'(V,mutable(V)).chr get_mutable615,16668 -'chr get_mutable'(V,mutable(V))./p,predicate,predicate definition615,16668 -'chr get_mutable'(V,mutable(V)).chr get_mutable615,16668 -'chr update_mutable'(V,M) :- setarg(1,M,V).chr update_mutable616,16701 -'chr update_mutable'(V,M) :- setarg(1,M,V).chr update_mutable616,16701 -'chr update_mutable'(V,M) :- setarg(1,M,V).chr update_mutable616,16701 -'chr update_mutable'(V,M) :- setarg(1,M,V)./p,predicate,predicate definition616,16701 -'chr update_mutable'(V,M) :- setarg(1,M,V).chr update_mutable616,16701 -'chr update_mutable'(V,M) :- setarg(1,M,V).chr update_mutable616,16701 -'chr default_store'(X) :- nb_getval(chr_global,X).chr default_store628,17068 -'chr default_store'(X) :- nb_getval(chr_global,X).chr default_store628,17068 -'chr default_store'(X) :- nb_getval(chr_global,X).chr default_store628,17068 -'chr default_store'(X) :- nb_getval(chr_global,X)./p,predicate,predicate definition628,17068 -'chr default_store'(X) :- nb_getval(chr_global,X).chr default_store628,17068 -'chr default_store'(X) :- nb_getval(chr_global,X).chr default_store628,17068 -'chr sbag_member'( Element, [Head|Tail]) :-chr sbag_member637,17297 -'chr sbag_member'( Element, [Head|Tail]) :-chr sbag_member637,17297 -'chr sbag_member'( Element, [Head|Tail]) :-chr sbag_member637,17297 -'chr sbag_del_element'( [], _, []).chr sbag_del_element646,17582 -'chr sbag_del_element'( [], _, [])./p,predicate,predicate definition646,17582 -'chr sbag_del_element'( [], _, []).chr sbag_del_element646,17582 -'chr sbag_del_element'( [X|Xs], Elem, Set2) :-chr sbag_del_element647,17620 -'chr sbag_del_element'( [X|Xs], Elem, Set2) :-chr sbag_del_element647,17620 -'chr sbag_del_element'( [X|Xs], Elem, Set2) :-chr sbag_del_element647,17620 -'chr merge_attributes'([],Ys,Ys).chr merge_attributes656,17850 -'chr merge_attributes'([],Ys,Ys)./p,predicate,predicate definition656,17850 -'chr merge_attributes'([],Ys,Ys).chr merge_attributes656,17850 -'chr merge_attributes'([X | Xs],YL,R) :-chr merge_attributes657,17884 -'chr merge_attributes'([X | Xs],YL,R) :-chr merge_attributes657,17884 -'chr merge_attributes'([X | Xs],YL,R) :-chr merge_attributes657,17884 -'chr new_merge_attributes'([],A2,A) :-chr new_merge_attributes675,18302 -'chr new_merge_attributes'([],A2,A) :-chr new_merge_attributes675,18302 -'chr new_merge_attributes'([],A2,A) :-chr new_merge_attributes675,18302 -'chr new_merge_attributes'([E1|AT1],A2,A) :-chr new_merge_attributes677,18350 -'chr new_merge_attributes'([E1|AT1],A2,A) :-chr new_merge_attributes677,18350 -'chr new_merge_attributes'([E1|AT1],A2,A) :-chr new_merge_attributes677,18350 -'chr new_merge_attributes'(Pos1-L1,Pos2-L2,AT1,AT2,A) :-chr new_merge_attributes684,18484 -'chr new_merge_attributes'(Pos1-L1,Pos2-L2,AT1,AT2,A) :-chr new_merge_attributes684,18484 -'chr new_merge_attributes'(Pos1-L1,Pos2-L2,AT1,AT2,A) :-chr new_merge_attributes684,18484 -'chr all_suspensions'([],_,_).chr all_suspensions697,18822 -'chr all_suspensions'([],_,_)./p,predicate,predicate definition697,18822 -'chr all_suspensions'([],_,_).chr all_suspensions697,18822 -'chr all_suspensions'([Susps|SuspsList],Pos,Attr) :-chr all_suspensions698,18853 -'chr all_suspensions'([Susps|SuspsList],Pos,Attr) :-chr all_suspensions698,18853 -'chr all_suspensions'([Susps|SuspsList],Pos,Attr) :-chr all_suspensions698,18853 -all_suspensions([],[],SuspsList,Pos) :-all_suspensions701,18951 -all_suspensions([],[],SuspsList,Pos) :-all_suspensions701,18951 -all_suspensions([],[],SuspsList,Pos) :-all_suspensions701,18951 -all_suspensions([APos-ASusps|RAttr],Susps,SuspsList,Pos) :-all_suspensions703,19048 -all_suspensions([APos-ASusps|RAttr],Susps,SuspsList,Pos) :-all_suspensions703,19048 -all_suspensions([APos-ASusps|RAttr],Susps,SuspsList,Pos) :-all_suspensions703,19048 -'chr normalize_attr'([],[]).chr normalize_attr713,19290 -'chr normalize_attr'([],[])./p,predicate,predicate definition713,19290 -'chr normalize_attr'([],[]).chr normalize_attr713,19290 -'chr normalize_attr'([Pos-L|R],[Pos-NL|NR]) :-chr normalize_attr714,19319 -'chr normalize_attr'([Pos-L|R],[Pos-NL|NR]) :-chr normalize_attr714,19319 -'chr normalize_attr'([Pos-L|R],[Pos-NL|NR]) :-chr normalize_attr714,19319 -'chr select'([E|T],F,R) :-chr select718,19409 -'chr select'([E|T],F,R) :-chr select718,19409 -'chr select'([E|T],F,R) :-chr select718,19409 -'chr debug_event'(Event) :-chr debug_event732,19686 -'chr debug_event'(Event) :-chr debug_event732,19686 -'chr debug_event'(Event) :-chr debug_event732,19686 -chr_trace :-chr_trace741,19861 -chr_notrace :-chr_notrace743,19912 -chr_leash(Spec) :-chr_leash750,20052 -chr_leash(Spec) :-chr_leash750,20052 -chr_leash(Spec) :-chr_leash750,20052 -leashed_ports(none, []).leashed_ports754,20139 -leashed_ports(none, []).leashed_ports754,20139 -leashed_ports(off, []).leashed_ports755,20164 -leashed_ports(off, []).leashed_ports755,20164 -leashed_ports(all, [call, exit, redo, fail, wake, try, apply, insert, remove]).leashed_ports756,20189 -leashed_ports(all, [call, exit, redo, fail, wake, try, apply, insert, remove]).leashed_ports756,20189 -leashed_ports(default, [call,exit,fail,wake,apply]).leashed_ports757,20270 -leashed_ports(default, [call,exit,fail,wake,apply]).leashed_ports757,20270 -leashed_ports(One, Ports) :-leashed_ports758,20323 -leashed_ports(One, Ports) :-leashed_ports758,20323 -leashed_ports(One, Ports) :-leashed_ports758,20323 -leashed_ports(Set, Ports) :-leashed_ports761,20409 -leashed_ports(Set, Ports) :-leashed_ports761,20409 -leashed_ports(Set, Ports) :-leashed_ports761,20409 -valid_ports([], _).valid_ports766,20525 -valid_ports([], _).valid_ports766,20525 -valid_ports([H|T], Valid) :-valid_ports767,20545 -valid_ports([H|T], Valid) :-valid_ports767,20545 -valid_ports([H|T], Valid) :-valid_ports767,20545 -user:exception(undefined_global_variable, Name, retry) :-exception774,20686 -user:exception(undefined_global_variable, Name, retry) :-exception774,20686 -chr_runtime_debug_global_variable(chr_leash).chr_runtime_debug_global_variable778,20804 -chr_runtime_debug_global_variable(chr_leash).chr_runtime_debug_global_variable778,20804 -chr_debug_init :-chr_debug_init780,20851 -debug_event(trace,Event) :-debug_event792,21102 -debug_event(trace,Event) :-debug_event792,21102 -debug_event(trace,Event) :-debug_event792,21102 -debug_event(trace,Event) :-debug_event798,21287 -debug_event(trace,Event) :-debug_event798,21287 -debug_event(trace,Event) :-debug_event798,21287 -debug_event(trace,Event) :-debug_event804,21472 -debug_event(trace,Event) :-debug_event804,21472 -debug_event(trace,Event) :-debug_event804,21472 -debug_event(trace,Event) :-debug_event808,21593 -debug_event(trace,Event) :-debug_event808,21593 -debug_event(trace,Event) :-debug_event808,21593 -debug_event(trace,Event) :-debug_event814,21772 -debug_event(trace,Event) :-debug_event814,21772 -debug_event(trace,Event) :-debug_event814,21772 -debug_event(trace, Event) :-debug_event818,21883 -debug_event(trace, Event) :-debug_event818,21883 -debug_event(trace, Event) :-debug_event818,21883 -debug_event(trace, Event) :-debug_event822,21999 -debug_event(trace, Event) :-debug_event822,21999 -debug_event(trace, Event) :-debug_event822,21999 -debug_event(trace, Event) :-debug_event826,22115 -debug_event(trace, Event) :-debug_event826,22115 -debug_event(trace, Event) :-debug_event826,22115 -debug_event(trace, Event) :-debug_event830,22234 -debug_event(trace, Event) :-debug_event830,22234 -debug_event(trace, Event) :-debug_event830,22234 -debug_event(skip(_,_),Event) :-debug_event835,22355 -debug_event(skip(_,_),Event) :-debug_event835,22355 -debug_event(skip(_,_),Event) :-debug_event835,22355 -debug_event(skip(_,_),Event) :-debug_event840,22509 -debug_event(skip(_,_),Event) :-debug_event840,22509 -debug_event(skip(_,_),Event) :-debug_event840,22509 -debug_event(skip(SkipSusp,SkipDepth),Event) :-debug_event845,22663 -debug_event(skip(SkipSusp,SkipDepth),Event) :-debug_event845,22663 -debug_event(skip(SkipSusp,SkipDepth),Event) :-debug_event845,22663 -debug_event(skip(_,_),_) :- !,debug_event857,22948 -debug_event(skip(_,_),_) :- !,debug_event857,22948 -debug_event(skip(_,_),_) :- !,debug_event857,22948 -chr_debug_interact(Event, Depth) :-chr_debug_interact866,23228 -chr_debug_interact(Event, Depth) :-chr_debug_interact866,23228 -chr_debug_interact(Event, Depth) :-chr_debug_interact866,23228 -chr_debug_interact(Event, Depth) :-chr_debug_interact869,23355 -chr_debug_interact(Event, Depth) :-chr_debug_interact869,23355 -chr_debug_interact(Event, Depth) :-chr_debug_interact869,23355 -leashed(Event) :-leashed877,23536 -leashed(Event) :-leashed877,23536 -leashed(Event) :-leashed877,23536 -ask_continue(Command) :-ask_continue882,23645 -ask_continue(Command) :-ask_continue882,23645 -ask_continue(Command) :-ask_continue882,23645 -'chr debug command'(Char, Command) :-chr debug command896,23977 -'chr debug command'(Char, Command) :-chr debug command896,23977 -'chr debug command'(Char, Command) :-chr debug command896,23977 -debug_command(c, creep).debug_command899,24047 -debug_command(c, creep).debug_command899,24047 -debug_command(' ', creep).debug_command900,24072 -debug_command(' ', creep).debug_command900,24072 -debug_command('\r', creep).debug_command901,24099 -debug_command('\r', creep).debug_command901,24099 -debug_command(s, skip).debug_command902,24127 -debug_command(s, skip).debug_command902,24127 -debug_command(g, ancestors).debug_command903,24151 -debug_command(g, ancestors).debug_command903,24151 -debug_command(n, nodebug).debug_command904,24180 -debug_command(n, nodebug).debug_command904,24180 -debug_command(a, abort).debug_command905,24207 -debug_command(a, abort).debug_command905,24207 -debug_command(f, fail).debug_command906,24232 -debug_command(f, fail).debug_command906,24232 -debug_command(b, break).debug_command907,24256 -debug_command(b, break).debug_command907,24256 -debug_command(?, help).debug_command908,24281 -debug_command(?, help).debug_command908,24281 -debug_command(h, help).debug_command909,24305 -debug_command(h, help).debug_command909,24305 -debug_command(end_of_file, exit).debug_command910,24329 -debug_command(end_of_file, exit).debug_command910,24329 -handle_debug_command(creep,_,_) :- !.handle_debug_command913,24365 -handle_debug_command(creep,_,_) :- !.handle_debug_command913,24365 -handle_debug_command(creep,_,_) :- !.handle_debug_command913,24365 -handle_debug_command(skip, Event, Depth) :- !,handle_debug_command914,24403 -handle_debug_command(skip, Event, Depth) :- !,handle_debug_command914,24403 -handle_debug_command(skip, Event, Depth) :- !,handle_debug_command914,24403 -handle_debug_command(ancestors,Event,Depth) :- !,handle_debug_command924,24611 -handle_debug_command(ancestors,Event,Depth) :- !,handle_debug_command924,24611 -handle_debug_command(ancestors,Event,Depth) :- !,handle_debug_command924,24611 -handle_debug_command(nodebug,_,_) :- !,handle_debug_command927,24721 -handle_debug_command(nodebug,_,_) :- !,handle_debug_command927,24721 -handle_debug_command(nodebug,_,_) :- !,handle_debug_command927,24721 -handle_debug_command(abort,_,_) :- !,handle_debug_command929,24775 -handle_debug_command(abort,_,_) :- !,handle_debug_command929,24775 -handle_debug_command(abort,_,_) :- !,handle_debug_command929,24775 -handle_debug_command(exit,_,_) :- !,handle_debug_command931,24821 -handle_debug_command(exit,_,_) :- !,handle_debug_command931,24821 -handle_debug_command(exit,_,_) :- !,handle_debug_command931,24821 -handle_debug_command(fail,_,_) :- !,handle_debug_command933,24865 -handle_debug_command(fail,_,_) :- !,handle_debug_command933,24865 -handle_debug_command(fail,_,_) :- !,handle_debug_command933,24865 -handle_debug_command(break,Event,Depth) :- !,handle_debug_command935,24909 -handle_debug_command(break,Event,Depth) :- !,handle_debug_command935,24909 -handle_debug_command(break,Event,Depth) :- !,handle_debug_command935,24909 -handle_debug_command(help,Event,Depth) :- !,handle_debug_command938,24997 -handle_debug_command(help,Event,Depth) :- !,handle_debug_command938,24997 -handle_debug_command(help,Event,Depth) :- !,handle_debug_command938,24997 -handle_debug_command(Cmd, _, _) :-handle_debug_command941,25118 -handle_debug_command(Cmd, _, _) :-handle_debug_command941,25118 -handle_debug_command(Cmd, _, _) :-handle_debug_command941,25118 -print_chr_debug_history :-print_chr_debug_history944,25210 -print_event(Event, Depth) :-print_event948,25328 -print_event(Event, Depth) :-print_event948,25328 -print_event(Event, Depth) :-print_event948,25328 -get_debug_history(History,Depth) :-get_debug_history955,25521 -get_debug_history(History,Depth) :-get_debug_history955,25521 -get_debug_history(History,Depth) :-get_debug_history955,25521 -set_debug_history(History,Depth) :-set_debug_history958,25612 -set_debug_history(History,Depth) :-set_debug_history958,25612 -set_debug_history(History,Depth) :-set_debug_history958,25612 -set_chr_debug(State) :-set_chr_debug963,25742 -set_chr_debug(State) :-set_chr_debug963,25742 -set_chr_debug(State) :-set_chr_debug963,25742 -'chr chr_indexed_variables'(Susp,Vars) :-chr chr_indexed_variables967,25824 -'chr chr_indexed_variables'(Susp,Vars) :-chr chr_indexed_variables967,25824 -'chr chr_indexed_variables'(Susp,Vars) :-chr chr_indexed_variables967,25824 - -packages/chr/chr_support.c,215 -pl_lookup_ht1(term_t ht, term_t pl_hash, term_t key, term_t values)pl_lookup_ht128,446 -pl_memberchk_eq(term_t element, term_t maybe_list)pl_memberchk_eq82,1728 -install_chr_support()install_chr_support100,2083 - -packages/chr/chr_swi.pl,8672 -:- multifile user:file_search_path/2.multifile65,2123 -:- multifile user:file_search_path/2.multifile65,2123 -:- dynamic user:file_search_path/2.dynamic66,2161 -:- dynamic user:file_search_path/2.dynamic66,2161 -:- dynamic chr_translated_program/1.dynamic67,2199 -:- dynamic chr_translated_program/1.dynamic67,2199 -user:file_search_path(chr, library(chr)).file_search_path69,2239 -:- multifile chr:'$chr_module'/1.multifile118,3262 -:- multifile chr:'$chr_module'/1.multifile118,3262 -:- dynamic chr_term/3. % File, Termdynamic120,3297 -:- dynamic chr_term/3. % File, Termdynamic120,3297 -:- dynamic chr_pp/2. % File, Termdynamic122,3336 -:- dynamic chr_pp/2. % File, Termdynamic122,3336 -chr_expandable((:- constraints _)).chr_expandable136,3695 -chr_expandable((:- constraints _)).chr_expandable136,3695 -chr_expandable((constraints _)).chr_expandable137,3731 -chr_expandable((constraints _)).chr_expandable137,3731 -chr_expandable((:- chr_constraint _)).chr_expandable138,3764 -chr_expandable((:- chr_constraint _)).chr_expandable138,3764 -chr_expandable((:- chr_type _)).chr_expandable139,3803 -chr_expandable((:- chr_type _)).chr_expandable139,3803 -chr_expandable((chr_type _)).chr_expandable140,3836 -chr_expandable((chr_type _)).chr_expandable140,3836 -chr_expandable((:- chr_declaration _)).chr_expandable141,3866 -chr_expandable((:- chr_declaration _)).chr_expandable141,3866 -chr_expandable(option(_, _)).chr_expandable142,3906 -chr_expandable(option(_, _)).chr_expandable142,3906 -chr_expandable((:- chr_option(_, _))).chr_expandable143,3936 -chr_expandable((:- chr_option(_, _))).chr_expandable143,3936 -chr_expandable((handler _)).chr_expandable144,3975 -chr_expandable((handler _)).chr_expandable144,3975 -chr_expandable((rules _)).chr_expandable145,4004 -chr_expandable((rules _)).chr_expandable145,4004 -chr_expandable((_ <=> _)).chr_expandable146,4031 -chr_expandable((_ <=> _)).chr_expandable146,4031 -chr_expandable((_ @ _)).chr_expandable147,4058 -chr_expandable((_ @ _)).chr_expandable147,4058 -chr_expandable((_ ==> _)).chr_expandable148,4083 -chr_expandable((_ ==> _)).chr_expandable148,4083 -chr_expandable((_ pragma _)).chr_expandable149,4110 -chr_expandable((_ pragma _)).chr_expandable149,4110 -chr_expand(Term, []) :-chr_expand173,4793 -chr_expand(Term, []) :-chr_expand173,4793 -chr_expand(Term, []) :-chr_expand173,4793 -chr_expand(Term, []) :-chr_expand179,5063 -chr_expand(Term, []) :-chr_expand179,5063 -chr_expand(Term, []) :-chr_expand179,5063 -chr_expand(end_of_file, FinalProgram) :-chr_expand183,5206 -chr_expand(end_of_file, FinalProgram) :-chr_expand183,5206 -chr_expand(end_of_file, FinalProgram) :-chr_expand183,5206 -delete_header([(:- module(_,_))|T0], T) :- !,delete_header215,6158 -delete_header([(:- module(_,_))|T0], T) :- !,delete_header215,6158 -delete_header([(:- module(_,_))|T0], T) :- !,delete_header215,6158 -delete_header(L, L).delete_header217,6227 -delete_header(L, L).delete_header217,6227 -add_debug_decl(CHR, CHR) :-add_debug_decl219,6249 -add_debug_decl(CHR, CHR) :-add_debug_decl219,6249 -add_debug_decl(CHR, CHR) :-add_debug_decl219,6249 -add_debug_decl(CHR, CHR) :-add_debug_decl221,6326 -add_debug_decl(CHR, CHR) :-add_debug_decl221,6326 -add_debug_decl(CHR, CHR) :-add_debug_decl221,6326 -add_debug_decl(CHR, [(:- chr_option(debug, Debug))|CHR]) :-add_debug_decl223,6412 -add_debug_decl(CHR, [(:- chr_option(debug, Debug))|CHR]) :-add_debug_decl223,6412 -add_debug_decl(CHR, [(:- chr_option(debug, Debug))|CHR]) :-add_debug_decl223,6412 -chr_current_prolog_flag(Flag,Val) :- current_prolog_flag(Flag,Val).chr_current_prolog_flag230,6579 -chr_current_prolog_flag(Flag,Val) :- current_prolog_flag(Flag,Val).chr_current_prolog_flag230,6579 -chr_current_prolog_flag(Flag,Val) :- current_prolog_flag(Flag,Val).chr_current_prolog_flag230,6579 -chr_current_prolog_flag(Flag,Val) :- current_prolog_flag(Flag,Val).chr_current_prolog_flag230,6579 -chr_current_prolog_flag(Flag,Val) :- current_prolog_flag(Flag,Val).chr_current_prolog_flag230,6579 -add_optimise_decl(CHR, CHR) :-add_optimise_decl233,6659 -add_optimise_decl(CHR, CHR) :-add_optimise_decl233,6659 -add_optimise_decl(CHR, CHR) :-add_optimise_decl233,6659 -add_optimise_decl(CHR, [(:- chr_option(optimize, full))|CHR]) :-add_optimise_decl235,6748 -add_optimise_decl(CHR, [(:- chr_option(optimize, full))|CHR]) :-add_optimise_decl235,6748 -add_optimise_decl(CHR, [(:- chr_option(optimize, full))|CHR]) :-add_optimise_decl235,6748 -add_optimise_decl(CHR, CHR).add_optimise_decl237,6858 -add_optimise_decl(CHR, CHR).add_optimise_decl237,6858 -call_chr_translate(File, In, _Out) :-call_chr_translate246,7084 -call_chr_translate(File, In, _Out) :-call_chr_translate246,7084 -call_chr_translate(File, In, _Out) :-call_chr_translate246,7084 -call_chr_translate(_, _In, Out) :-call_chr_translate251,7227 -call_chr_translate(_, _In, Out) :-call_chr_translate251,7227 -call_chr_translate(_, _In, Out) :-call_chr_translate251,7227 -call_chr_translate(File, _, []) :-call_chr_translate255,7343 -call_chr_translate(File, _, []) :-call_chr_translate255,7343 -call_chr_translate(File, _, []) :-call_chr_translate255,7343 -call_chr_preprocessor(Preprocessor,CHR,_NCHR) :-call_chr_preprocessor258,7433 -call_chr_preprocessor(Preprocessor,CHR,_NCHR) :-call_chr_preprocessor258,7433 -call_chr_preprocessor(Preprocessor,CHR,_NCHR) :-call_chr_preprocessor258,7433 -call_chr_preprocessor(_,_,NCHR) :-call_chr_preprocessor263,7571 -call_chr_preprocessor(_,_,NCHR) :-call_chr_preprocessor263,7571 -call_chr_preprocessor(_,_,NCHR) :-call_chr_preprocessor263,7571 -call_chr_preprocessor(Preprocessor,_,_) :-call_chr_preprocessor266,7691 -call_chr_preprocessor(Preprocessor,_,_) :-call_chr_preprocessor266,7691 -call_chr_preprocessor(Preprocessor,_,_) :-call_chr_preprocessor266,7691 -user:message_hook(trace_mode(OnOff), _, _) :-message_hook282,8070 -user:message_hook(trace_mode(OnOff), _, _) :-message_hook282,8070 -chr:debug_event(_State, _Event) :-debug_event294,8369 -chr:debug_event(_State, _Event) :-debug_event294,8369 -chr:debug_interact(Event, _Depth, creep) :-debug_interact308,8806 -chr:debug_interact(Event, _Depth, creep) :-debug_interact308,8806 -prolog_event(call(_)).prolog_event312,8886 -prolog_event(call(_)).prolog_event312,8886 -prolog_event(exit(_)).prolog_event313,8909 -prolog_event(exit(_)).prolog_event313,8909 -prolog_event(fail(_)).prolog_event314,8932 -prolog_event(fail(_)).prolog_event314,8932 -prolog:message(chr(CHR)) -->message326,9088 -prolog:message(chr(CHR)) -->message326,9088 -check:trivial_fail_goal(_:Goal) :-trivial_fail_goal332,9186 -check:trivial_fail_goal(_:Goal) :-trivial_fail_goal332,9186 -prolog:message(query(YesNo)) --> !,message342,9470 -prolog:message(query(YesNo)) --> !,message342,9470 -prolog:message(query(YesNo,Bindings)) --> !,message346,9589 -prolog:message(query(YesNo,Bindings)) --> !,message346,9589 -print_all_stores :-print_all_stores350,9726 -:- multifile system:term_expansion/2.multifile363,10020 -:- multifile system:term_expansion/2.multifile363,10020 -:- dynamic system:term_expansion/2.dynamic364,10058 -:- dynamic system:term_expansion/2.dynamic364,10058 -system:term_expansion(In, Out) :-term_expansion366,10097 -system:term_expansion(In, Out) :-term_expansion366,10097 -add_pragma_to_chr_rule((Name @ Rule), Pragma, Result) :- !,add_pragma_to_chr_rule441,12044 -add_pragma_to_chr_rule((Name @ Rule), Pragma, Result) :- !,add_pragma_to_chr_rule441,12044 -add_pragma_to_chr_rule((Name @ Rule), Pragma, Result) :- !,add_pragma_to_chr_rule441,12044 -add_pragma_to_chr_rule((Rule pragma Pragmas), Pragma, Result) :- !,add_pragma_to_chr_rule444,12174 -add_pragma_to_chr_rule((Rule pragma Pragmas), Pragma, Result) :- !,add_pragma_to_chr_rule444,12174 -add_pragma_to_chr_rule((Rule pragma Pragmas), Pragma, Result) :- !,add_pragma_to_chr_rule444,12174 -add_pragma_to_chr_rule((Head ==> Body), Pragma, Result) :- !,add_pragma_to_chr_rule446,12284 -add_pragma_to_chr_rule((Head ==> Body), Pragma, Result) :- !,add_pragma_to_chr_rule446,12284 -add_pragma_to_chr_rule((Head ==> Body), Pragma, Result) :- !,add_pragma_to_chr_rule446,12284 -add_pragma_to_chr_rule((Head <=> Body), Pragma, Result) :- !,add_pragma_to_chr_rule448,12387 -add_pragma_to_chr_rule((Head <=> Body), Pragma, Result) :- !,add_pragma_to_chr_rule448,12387 -add_pragma_to_chr_rule((Head <=> Body), Pragma, Result) :- !,add_pragma_to_chr_rule448,12387 -add_pragma_to_chr_rule(Term,_,Term).add_pragma_to_chr_rule450,12490 -add_pragma_to_chr_rule(Term,_,Term).add_pragma_to_chr_rule450,12490 - -packages/chr/chr_swi_bootstrap.pl,3771 -chr_compile_step1(From, To) :-chr_compile_step168,2262 -chr_compile_step1(From, To) :-chr_compile_step168,2262 -chr_compile_step1(From, To) :-chr_compile_step168,2262 -chr_compile_step2(From, To) :-chr_compile_step271,2375 -chr_compile_step2(From, To) :-chr_compile_step271,2375 -chr_compile_step2(From, To) :-chr_compile_step271,2375 -chr_compile_step3(From, To) :-chr_compile_step374,2489 -chr_compile_step3(From, To) :-chr_compile_step374,2489 -chr_compile_step3(From, To) :-chr_compile_step374,2489 -chr_compile_step4(From, To) :-chr_compile_step477,2609 -chr_compile_step4(From, To) :-chr_compile_step477,2609 -chr_compile_step4(From, To) :-chr_compile_step477,2609 -chr_compile(From, To, MsgLevel) :-chr_compile81,2713 -chr_compile(From, To, MsgLevel) :-chr_compile81,2713 -chr_compile(From, To, MsgLevel) :-chr_compile81,2713 -insert_declarations(Clauses0, Clauses) :-insert_declarations116,3842 -insert_declarations(Clauses0, Clauses) :-insert_declarations116,3842 -insert_declarations(Clauses0, Clauses) :-insert_declarations116,3842 -writefile(File, From, Declarations) :-writefile130,4170 -writefile(File, From, Declarations) :-writefile130,4170 -writefile(File, From, Declarations) :-writefile130,4170 -writecontent([], _).writecontent136,4307 -writecontent([], _).writecontent136,4307 -writecontent([D|Ds], Out) :-writecontent137,4328 -writecontent([D|Ds], Out) :-writecontent137,4328 -writecontent([D|Ds], Out) :-writecontent137,4328 -writeheader(File, Out) :-writeheader142,4422 -writeheader(File, Out) :-writeheader142,4422 -writeheader(File, Out) :-writeheader142,4422 -format_date(Out) :-format_date150,4679 -format_date(Out) :-format_date150,4679 -format_date(Out) :-format_date150,4679 -prolog:message(chr(start(File))) -->message173,5161 -prolog:message(chr(start(File))) -->message173,5161 -prolog:message(chr(end(_From, To))) -->message177,5271 -prolog:message(chr(end(_From, To))) -->message177,5271 -read_chr_file_to_terms(Spec, Terms) :-read_chr_file_to_terms183,5466 -read_chr_file_to_terms(Spec, Terms) :-read_chr_file_to_terms183,5466 -read_chr_file_to_terms(Spec, Terms) :-read_chr_file_to_terms183,5466 -read_chr_stream_to_terms(Fd, Terms) :-read_chr_stream_to_terms189,5638 -read_chr_stream_to_terms(Fd, Terms) :-read_chr_stream_to_terms189,5638 -read_chr_stream_to_terms(Fd, Terms) :-read_chr_stream_to_terms189,5638 -read_chr_stream_to_terms(end_of_file, _, []) :- !.read_chr_stream_to_terms193,5772 -read_chr_stream_to_terms(end_of_file, _, []) :- !.read_chr_stream_to_terms193,5772 -read_chr_stream_to_terms(end_of_file, _, []) :- !.read_chr_stream_to_terms193,5772 -read_chr_stream_to_terms(C, Fd, [C|T]) :-read_chr_stream_to_terms194,5823 -read_chr_stream_to_terms(C, Fd, [C|T]) :-read_chr_stream_to_terms194,5823 -read_chr_stream_to_terms(C, Fd, [C|T]) :-read_chr_stream_to_terms194,5823 -chr_local_only_read_term(A,B,C) :- read_term(A,B,C).chr_local_only_read_term208,6061 -chr_local_only_read_term(A,B,C) :- read_term(A,B,C).chr_local_only_read_term208,6061 -chr_local_only_read_term(A,B,C) :- read_term(A,B,C).chr_local_only_read_term208,6061 -chr_local_only_read_term(A,B,C) :- read_term(A,B,C).chr_local_only_read_term208,6061 -chr_local_only_read_term(A,B,C) :- read_term(A,B,C).chr_local_only_read_term208,6061 -chr_absolute_file_name(A,B,C) :- absolute_file_name(A,B,C).chr_absolute_file_name209,6114 -chr_absolute_file_name(A,B,C) :- absolute_file_name(A,B,C).chr_absolute_file_name209,6114 -chr_absolute_file_name(A,B,C) :- absolute_file_name(A,B,C).chr_absolute_file_name209,6114 -chr_absolute_file_name(A,B,C) :- absolute_file_name(A,B,C).chr_absolute_file_name209,6114 -chr_absolute_file_name(A,B,C) :- absolute_file_name(A,B,C).chr_absolute_file_name209,6114 - -packages/chr/chr_test.pl,1769 -set_script_dir :-set_script_dir50,1810 -set_script_dir :-set_script_dir52,1847 -find_script_dir(Dir) :-find_script_dir56,1915 -find_script_dir(Dir) :-find_script_dir56,1915 -find_script_dir(Dir) :-find_script_dir56,1915 -follow_links(File, RealFile) :-follow_links61,2042 -follow_links(File, RealFile) :-follow_links61,2042 -follow_links(File, RealFile) :-follow_links61,2042 -follow_links(File, File).follow_links63,2108 -follow_links(File, File).follow_links63,2108 -run_test_script(Script) :-run_test_script68,2156 -run_test_script(Script) :-run_test_script68,2156 -run_test_script(Script) :-run_test_script68,2156 -run_test_scripts(Directory) :-run_test_scripts75,2329 -run_test_scripts(Directory) :-run_test_scripts75,2329 -run_test_scripts(Directory) :-run_test_scripts75,2329 -run_scripts([]).run_scripts89,2708 -run_scripts([]).run_scripts89,2708 -run_scripts([H|T]) :-run_scripts90,2725 -run_scripts([H|T]) :-run_scripts90,2725 -run_scripts([H|T]) :-run_scripts90,2725 -script_failed(File, fail) :-script_failed103,3028 -script_failed(File, fail) :-script_failed103,3028 -script_failed(File, fail) :-script_failed103,3028 -script_failed(File, Except) :-script_failed106,3129 -script_failed(File, Except) :-script_failed106,3129 -script_failed(File, Except) :-script_failed106,3129 -testdir('Tests').testdir116,3382 -testdir('Tests').testdir116,3382 -test :-test122,3436 -scripts :-scripts129,3539 -report_blocked :-report_blocked133,3598 -report_failed :-report_failed144,3867 -test_failed(R, Except) :-test_failed153,4061 -test_failed(R, Except) :-test_failed153,4061 -test_failed(R, Except) :-test_failed153,4061 -blocked(Reason) :-blocked168,4494 -blocked(Reason) :-blocked168,4494 -blocked(Reason) :-blocked168,4494 - -packages/chr/chr_translate_bootstrap.pl,59661 -chr_translate(Declarations,NewDeclarations) :-chr_translate138,4838 -chr_translate(Declarations,NewDeclarations) :-chr_translate138,4838 -chr_translate(Declarations,NewDeclarations) :-chr_translate138,4838 -partition_clauses([],[],[],[],_).partition_clauses169,5820 -partition_clauses([],[],[],[],_).partition_clauses169,5820 -partition_clauses([C|Cs],Ds,Rs,OCs,Mod) :-partition_clauses170,5854 -partition_clauses([C|Cs],Ds,Rs,OCs,Mod) :-partition_clauses170,5854 -partition_clauses([C|Cs],Ds,Rs,OCs,Mod) :-partition_clauses170,5854 -is_declaration(D, Constraints) :- %% constraint declarationis_declaration206,6812 -is_declaration(D, Constraints) :- %% constraint declarationis_declaration206,6812 -is_declaration(D, Constraints) :- %% constraint declarationis_declaration206,6812 -rule(RI,R) :- %% name @ rulerule233,7318 -rule(RI,R) :- %% name @ rulerule233,7318 -rule(RI,R) :- %% name @ rulerule233,7318 -rule(RI,R) :-rule236,7397 -rule(RI,R) :-rule236,7397 -rule(RI,R) :-rule236,7397 -rule(RI,Name,R) :-rule239,7428 -rule(RI,Name,R) :-rule239,7428 -rule(RI,Name,R) :-rule239,7428 -rule(RI,Name,R) :-rule244,7554 -rule(RI,Name,R) :-rule244,7554 -rule(RI,Name,R) :-rule244,7554 -is_rule(RI,R,IDs) :- %% propagation ruleis_rule248,7624 -is_rule(RI,R,IDs) :- %% propagation ruleis_rule248,7624 -is_rule(RI,R,IDs) :- %% propagation ruleis_rule248,7624 -is_rule(RI,R,IDs) :- %% simplification/simpagation ruleis_rule258,7866 -is_rule(RI,R,IDs) :- %% simplification/simpagation ruleis_rule258,7866 -is_rule(RI,R,IDs) :- %% simplification/simpagation ruleis_rule258,7866 -get_ids(Cs,IDs,NCs) :-get_ids279,8389 -get_ids(Cs,IDs,NCs) :-get_ids279,8389 -get_ids(Cs,IDs,NCs) :-get_ids279,8389 -get_ids([],[],[],N,N).get_ids282,8439 -get_ids([],[],[],N,N).get_ids282,8439 -get_ids([C|Cs],[N|IDs],[NC|NCs],N,NN) :-get_ids283,8462 -get_ids([C|Cs],[N|IDs],[NC|NCs],N,NN) :-get_ids283,8462 -get_ids([C|Cs],[N|IDs],[NC|NCs],N,NN) :-get_ids283,8462 -is_module_declaration((:- module(Mod)),Mod).is_module_declaration292,8587 -is_module_declaration((:- module(Mod)),Mod).is_module_declaration292,8587 -is_module_declaration((:- module(Mod,_)),Mod).is_module_declaration293,8632 -is_module_declaration((:- module(Mod,_)),Mod).is_module_declaration293,8632 -check_rules(Rules,Decls) :-check_rules301,8928 -check_rules(Rules,Decls) :-check_rules301,8928 -check_rules(Rules,Decls) :-check_rules301,8928 -check_rules([],_,_).check_rules304,8986 -check_rules([],_,_).check_rules304,8986 -check_rules([PragmaRule|Rest],Decls,N) :-check_rules305,9007 -check_rules([PragmaRule|Rest],Decls,N) :-check_rules305,9007 -check_rules([PragmaRule|Rest],Decls,N) :-check_rules305,9007 -check_rule(PragmaRule,Decls,N) :-check_rule310,9126 -check_rule(PragmaRule,Decls,N) :-check_rule310,9126 -check_rule(PragmaRule,Decls,N) :-check_rule310,9126 -check_head_constraints([],_,_,_).check_head_constraints317,9364 -check_head_constraints([],_,_,_).check_head_constraints317,9364 -check_head_constraints([Constr|Rest],Decls,PragmaRule,N) :-check_head_constraints318,9398 -check_head_constraints([Constr|Rest],Decls,PragmaRule,N) :-check_head_constraints318,9398 -check_head_constraints([Constr|Rest],Decls,PragmaRule,N) :-check_head_constraints318,9398 -check_pragmas([],_,_).check_pragmas329,9749 -check_pragmas([],_,_).check_pragmas329,9749 -check_pragmas([Pragma|Pragmas],PragmaRule,N) :-check_pragmas330,9772 -check_pragmas([Pragma|Pragmas],PragmaRule,N) :-check_pragmas330,9772 -check_pragmas([Pragma|Pragmas],PragmaRule,N) :-check_pragmas330,9772 -check_pragma(Pragma,PragmaRule,N) :-check_pragma334,9895 -check_pragma(Pragma,PragmaRule,N) :-check_pragma334,9895 -check_pragma(Pragma,PragmaRule,N) :-check_pragma334,9895 -check_pragma(passive(ID), PragmaRule, N) :-check_pragma341,10126 -check_pragma(passive(ID), PragmaRule, N) :-check_pragma341,10126 -check_pragma(passive(ID), PragmaRule, N) :-check_pragma341,10126 -check_pragma(Pragma, PragmaRule, N) :-check_pragma354,10440 -check_pragma(Pragma, PragmaRule, N) :-check_pragma354,10440 -check_pragma(Pragma, PragmaRule, N) :-check_pragma354,10440 -check_pragma(Pragma, PragmaRule, N) :-check_pragma360,10687 -check_pragma(Pragma, PragmaRule, N) :-check_pragma360,10687 -check_pragma(Pragma, PragmaRule, N) :-check_pragma360,10687 -check_pragma(Pragma, PragmaRule, N) :-check_pragma366,10959 -check_pragma(Pragma, PragmaRule, N) :-check_pragma366,10959 -check_pragma(Pragma, PragmaRule, N) :-check_pragma366,10959 -check_pragma(Pragma,PragmaRule,N) :-check_pragma372,11233 -check_pragma(Pragma,PragmaRule,N) :-check_pragma372,11233 -check_pragma(Pragma,PragmaRule,N) :-check_pragma372,11233 -format_rule(PragmaRule,N) :-format_rule377,11433 -format_rule(PragmaRule,N) :-format_rule377,11433 -format_rule(PragmaRule,N) :-format_rule377,11433 -handle_option(Var,Value) :-handle_option391,11784 -handle_option(Var,Value) :-handle_option391,11784 -handle_option(Var,Value) :-handle_option391,11784 -handle_option(Name,Value) :-handle_option397,11968 -handle_option(Name,Value) :-handle_option397,11968 -handle_option(Name,Value) :-handle_option397,11968 -handle_option(Name,Value) :-handle_option403,12147 -handle_option(Name,Value) :-handle_option403,12147 -handle_option(Name,Value) :-handle_option403,12147 -handle_option(Name,Value) :-handle_option408,12245 -handle_option(Name,Value) :-handle_option408,12245 -handle_option(Name,Value) :-handle_option408,12245 -handle_option(Name,Value) :-handle_option415,12500 -handle_option(Name,Value) :-handle_option415,12500 -handle_option(Name,Value) :-handle_option415,12500 -option_definition(optimize,full,Flags) :-option_definition421,12713 -option_definition(optimize,full,Flags) :-option_definition421,12713 -option_definition(optimize,full,Flags) :-option_definition421,12713 -option_definition(optimize,sicstus,Flags) :-option_definition429,12948 -option_definition(optimize,sicstus,Flags) :-option_definition429,12948 -option_definition(optimize,sicstus,Flags) :-option_definition429,12948 -option_definition(optimize,off,Flags) :-option_definition437,13200 -option_definition(optimize,off,Flags) :-option_definition437,13200 -option_definition(optimize,off,Flags) :-option_definition437,13200 -option_definition(check_guard_bindings,on,Flags) :-option_definition445,13437 -option_definition(check_guard_bindings,on,Flags) :-option_definition445,13437 -option_definition(check_guard_bindings,on,Flags) :-option_definition445,13437 -option_definition(check_guard_bindings,off,Flags) :-option_definition448,13521 -option_definition(check_guard_bindings,off,Flags) :-option_definition448,13521 -option_definition(check_guard_bindings,off,Flags) :-option_definition448,13521 -init_chr_pp_flags :-init_chr_pp_flags451,13607 -set_chr_pp_flags([]).set_chr_pp_flags457,13740 -set_chr_pp_flags([]).set_chr_pp_flags457,13740 -set_chr_pp_flags([Name-Value|Flags]) :-set_chr_pp_flags458,13762 -set_chr_pp_flags([Name-Value|Flags]) :-set_chr_pp_flags458,13762 -set_chr_pp_flags([Name-Value|Flags]) :-set_chr_pp_flags458,13762 -set_chr_pp_flag(Name,Value) :-set_chr_pp_flag462,13859 -set_chr_pp_flag(Name,Value) :-set_chr_pp_flag462,13859 -set_chr_pp_flag(Name,Value) :-set_chr_pp_flag462,13859 -chr_pp_flag_definition(unique_analyse_optimise,[on,off]).chr_pp_flag_definition466,13961 -chr_pp_flag_definition(unique_analyse_optimise,[on,off]).chr_pp_flag_definition466,13961 -chr_pp_flag_definition(check_unnecessary_active,[full,simplification,off]).chr_pp_flag_definition467,14019 -chr_pp_flag_definition(check_unnecessary_active,[full,simplification,off]).chr_pp_flag_definition467,14019 -chr_pp_flag_definition(reorder_heads,[on,off]).chr_pp_flag_definition468,14095 -chr_pp_flag_definition(reorder_heads,[on,off]).chr_pp_flag_definition468,14095 -chr_pp_flag_definition(set_semantics_rule,[on,off]).chr_pp_flag_definition469,14143 -chr_pp_flag_definition(set_semantics_rule,[on,off]).chr_pp_flag_definition469,14143 -chr_pp_flag_definition(guard_via_reschedule,[on,off]).chr_pp_flag_definition470,14196 -chr_pp_flag_definition(guard_via_reschedule,[on,off]).chr_pp_flag_definition470,14196 -chr_pp_flag_definition(guard_locks,[on,off]).chr_pp_flag_definition471,14251 -chr_pp_flag_definition(guard_locks,[on,off]).chr_pp_flag_definition471,14251 -chr_pp_flag(Name,Value) :-chr_pp_flag473,14298 -chr_pp_flag(Name,Value) :-chr_pp_flag473,14298 -chr_pp_flag(Name,Value) :-chr_pp_flag473,14298 -generate_attach_a_constraint_all(Constraints,Mod,Clauses) :-generate_attach_a_constraint_all492,14761 -generate_attach_a_constraint_all(Constraints,Mod,Clauses) :-generate_attach_a_constraint_all492,14761 -generate_attach_a_constraint_all(Constraints,Mod,Clauses) :-generate_attach_a_constraint_all492,14761 -generate_attach_a_constraint_all([],_,_,_,[]).generate_attach_a_constraint_all496,14919 -generate_attach_a_constraint_all([],_,_,_,[]).generate_attach_a_constraint_all496,14919 -generate_attach_a_constraint_all([Constraint|Constraints],Position,Total,Mod,Clauses) :-generate_attach_a_constraint_all497,14966 -generate_attach_a_constraint_all([Constraint|Constraints],Position,Total,Mod,Clauses) :-generate_attach_a_constraint_all497,14966 -generate_attach_a_constraint_all([Constraint|Constraints],Position,Total,Mod,Clauses) :-generate_attach_a_constraint_all497,14966 -generate_attach_a_constraint(Total,Position,Constraint,Mod,[Clause1,Clause2]) :-generate_attach_a_constraint503,15274 -generate_attach_a_constraint(Total,Position,Constraint,Mod,[Clause1,Clause2]) :-generate_attach_a_constraint503,15274 -generate_attach_a_constraint(Total,Position,Constraint,Mod,[Clause1,Clause2]) :-generate_attach_a_constraint503,15274 -generate_attach_a_constraint_empty_list(CFct / CAty,Clause) :-generate_attach_a_constraint_empty_list511,15575 -generate_attach_a_constraint_empty_list(CFct / CAty,Clause) :-generate_attach_a_constraint_empty_list511,15575 -generate_attach_a_constraint_empty_list(CFct / CAty,Clause) :-generate_attach_a_constraint_empty_list511,15575 -generate_attach_a_constraint_1_1(CFct / CAty,Mod,Clause) :-generate_attach_a_constraint_1_1517,15758 -generate_attach_a_constraint_1_1(CFct / CAty,Mod,Clause) :-generate_attach_a_constraint_1_1517,15758 -generate_attach_a_constraint_1_1(CFct / CAty,Mod,Clause) :-generate_attach_a_constraint_1_1517,15758 -generate_attach_a_constraint_t_p(Total,Position,CFct / CAty ,Mod,Clause) :-generate_attach_a_constraint_t_p534,16191 -generate_attach_a_constraint_t_p(Total,Position,CFct / CAty ,Mod,Clause) :-generate_attach_a_constraint_t_p534,16191 -generate_attach_a_constraint_t_p(Total,Position,CFct / CAty ,Mod,Clause) :-generate_attach_a_constraint_t_p534,16191 -generate_detach_a_constraint_all(Constraints,Mod,Clauses) :-generate_detach_a_constraint_all569,17215 -generate_detach_a_constraint_all(Constraints,Mod,Clauses) :-generate_detach_a_constraint_all569,17215 -generate_detach_a_constraint_all(Constraints,Mod,Clauses) :-generate_detach_a_constraint_all569,17215 -generate_detach_a_constraint_all([],_,_,_,[]).generate_detach_a_constraint_all573,17373 -generate_detach_a_constraint_all([],_,_,_,[]).generate_detach_a_constraint_all573,17373 -generate_detach_a_constraint_all([Constraint|Constraints],Position,Total,Mod,Clauses) :-generate_detach_a_constraint_all574,17420 -generate_detach_a_constraint_all([Constraint|Constraints],Position,Total,Mod,Clauses) :-generate_detach_a_constraint_all574,17420 -generate_detach_a_constraint_all([Constraint|Constraints],Position,Total,Mod,Clauses) :-generate_detach_a_constraint_all574,17420 -generate_detach_a_constraint(Total,Position,Constraint,Mod,[Clause1,Clause2]) :-generate_detach_a_constraint580,17728 -generate_detach_a_constraint(Total,Position,Constraint,Mod,[Clause1,Clause2]) :-generate_detach_a_constraint580,17728 -generate_detach_a_constraint(Total,Position,Constraint,Mod,[Clause1,Clause2]) :-generate_detach_a_constraint580,17728 -generate_detach_a_constraint_empty_list(CFct / CAty,Clause) :-generate_detach_a_constraint_empty_list588,18029 -generate_detach_a_constraint_empty_list(CFct / CAty,Clause) :-generate_detach_a_constraint_empty_list588,18029 -generate_detach_a_constraint_empty_list(CFct / CAty,Clause) :-generate_detach_a_constraint_empty_list588,18029 -generate_detach_a_constraint_1_1(CFct / CAty,Mod,Clause) :-generate_detach_a_constraint_1_1594,18212 -generate_detach_a_constraint_1_1(CFct / CAty,Mod,Clause) :-generate_detach_a_constraint_1_1594,18212 -generate_detach_a_constraint_1_1(CFct / CAty,Mod,Clause) :-generate_detach_a_constraint_1_1594,18212 -generate_detach_a_constraint_t_p(Total,Position,CFct / CAty ,Mod,Clause) :-generate_detach_a_constraint_t_p615,18651 -generate_detach_a_constraint_t_p(Total,Position,CFct / CAty ,Mod,Clause) :-generate_detach_a_constraint_t_p615,18651 -generate_detach_a_constraint_t_p(Total,Position,CFct / CAty ,Mod,Clause) :-generate_detach_a_constraint_t_p615,18651 -generate_attach_increment(Constraints,Mod,[Clause1,Clause2]) :-generate_attach_increment655,19630 -generate_attach_increment(Constraints,Mod,[Clause1,Clause2]) :-generate_attach_increment655,19630 -generate_attach_increment(Constraints,Mod,[Clause1,Clause2]) :-generate_attach_increment655,19630 -generate_attach_increment_empty((attach_increment([],_) :- true)).generate_attach_increment_empty664,19875 -generate_attach_increment_empty((attach_increment([],_) :- true)).generate_attach_increment_empty664,19875 -generate_attach_increment_empty((attach_increment([],_) :- true)).generate_attach_increment_empty664,19875 -generate_attach_increment_empty((attach_increment([],_) :- true)).generate_attach_increment_empty664,19875 -generate_attach_increment_empty((attach_increment([],_) :- true)).generate_attach_increment_empty664,19875 -generate_attach_increment_one(Mod,Clause) :-generate_attach_increment_one666,19943 -generate_attach_increment_one(Mod,Clause) :-generate_attach_increment_one666,19943 -generate_attach_increment_one(Mod,Clause) :-generate_attach_increment_one666,19943 -generate_attach_increment_many(N,Mod,Clause) :-generate_attach_increment_many682,20311 -generate_attach_increment_many(N,Mod,Clause) :-generate_attach_increment_many682,20311 -generate_attach_increment_many(N,Mod,Clause) :-generate_attach_increment_many682,20311 -generate_attr_unify_hook(Constraints,Mod,[Clause]) :-generate_attr_unify_hook706,21062 -generate_attr_unify_hook(Constraints,Mod,[Clause]) :-generate_attr_unify_hook706,21062 -generate_attr_unify_hook(Constraints,Mod,[Clause]) :-generate_attr_unify_hook706,21062 -generate_attr_unify_hook_one(Mod,Clause) :-generate_attr_unify_hook_one714,21250 -generate_attr_unify_hook_one(Mod,Clause) :-generate_attr_unify_hook_one714,21250 -generate_attr_unify_hook_one(Mod,Clause) :-generate_attr_unify_hook_one714,21250 -generate_attr_unify_hook_many(N,Mod,Clause) :-generate_attr_unify_hook_many741,21844 -generate_attr_unify_hook_many(N,Mod,Clause) :-generate_attr_unify_hook_many741,21844 -generate_attr_unify_hook_many(N,Mod,Clause) :-generate_attr_unify_hook_many741,21844 -constraints_code(Constraints,Rules,Mod,Clauses) :-constraints_code792,23826 -constraints_code(Constraints,Rules,Mod,Clauses) :-constraints_code792,23826 -constraints_code(Constraints,Rules,Mod,Clauses) :-constraints_code792,23826 -constraints_code(Constraints,Rules,Mod,L,T) :-constraints_code797,23997 -constraints_code(Constraints,Rules,Mod,L,T) :-constraints_code797,23997 -constraints_code(Constraints,Rules,Mod,L,T) :-constraints_code797,23997 -constraints_code([],_,_,_,_,_,L,L).constraints_code801,24131 -constraints_code([],_,_,_,_,_,L,L).constraints_code801,24131 -constraints_code([Constr|Constrs],I,N,Constraints,Rules,Mod,L,T) :-constraints_code802,24167 -constraints_code([Constr|Constrs],I,N,Constraints,Rules,Mod,L,T) :-constraints_code802,24167 -constraints_code([Constr|Constrs],I,N,Constraints,Rules,Mod,L,T) :-constraints_code802,24167 -constraint_code(Constraint, I, N, Constraints, Rules, Mod, L, T) :-constraint_code808,24411 -constraint_code(Constraint, I, N, Constraints, Rules, Mod, L, T) :-constraint_code808,24411 -constraint_code(Constraint, I, N, Constraints, Rules, Mod, L, T) :-constraint_code808,24411 -constraint_prelude(F/A, _Mod, Clause) :-constraint_prelude817,24767 -constraint_prelude(F/A, _Mod, Clause) :-constraint_prelude817,24767 -constraint_prelude(F/A, _Mod, Clause) :-constraint_prelude817,24767 -gen_cond_attach_clause(Mod,F/A,_I,_N,_Constraints,Id,L,T) :-gen_cond_attach_clause823,24940 -gen_cond_attach_clause(Mod,F/A,_I,_N,_Constraints,Id,L,T) :-gen_cond_attach_clause823,24940 -gen_cond_attach_clause(Mod,F/A,_I,_N,_Constraints,Id,L,T) :-gen_cond_attach_clause823,24940 -gen_cond_attach_goal(Mod,F/A,Goal,AllArgs) :-gen_cond_attach_goal833,25231 -gen_cond_attach_goal(Mod,F/A,Goal,AllArgs) :-gen_cond_attach_goal833,25231 -gen_cond_attach_goal(Mod,F/A,Goal,AllArgs) :-gen_cond_attach_goal833,25231 -gen_uncond_attach_goal(F/A,Susp,_Mod,AttachGoal,Generation) :-gen_uncond_attach_goal848,25590 -gen_uncond_attach_goal(F/A,Susp,_Mod,AttachGoal,Generation) :-gen_uncond_attach_goal848,25590 -gen_uncond_attach_goal(F/A,Susp,_Mod,AttachGoal,Generation) :-gen_uncond_attach_goal848,25590 -rules_code([],_,_,_,_,_,_,Id,Id,L,L).rules_code858,25885 -rules_code([],_,_,_,_,_,_,Id,Id,L,L).rules_code858,25885 -rules_code([R |Rs],RuleNb,FA,I,N,Constraints,Mod,Id1,Id3,L,T) :-rules_code859,25923 -rules_code([R |Rs],RuleNb,FA,I,N,Constraints,Mod,Id1,Id3,L,T) :-rules_code859,25923 -rules_code([R |Rs],RuleNb,FA,I,N,Constraints,Mod,Id1,Id3,L,T) :-rules_code859,25923 -rule_code(PragmaRule,RuleNb,FA,I,N,Constraints,Mod,Id1,Id2,L,T) :-rule_code865,26199 -rule_code(PragmaRule,RuleNb,FA,I,N,Constraints,Mod,Id1,Id2,L,T) :-rule_code865,26199 -rule_code(PragmaRule,RuleNb,FA,I,N,Constraints,Mod,Id1,Id2,L,T) :-rule_code865,26199 -heads1_code([],_,_,_,_,_,_,_,_,_,_,L,L).heads1_code873,26615 -heads1_code([],_,_,_,_,_,_,_,_,_,_,L,L).heads1_code873,26615 -heads1_code([Head|Heads],RestHeads,[HeadID|HeadIDs],RestIDs,PragmaRule,F/A,I,N,Constraints,Mod,Id,L,T) :-heads1_code874,26656 -heads1_code([Head|Heads],RestHeads,[HeadID|HeadIDs],RestIDs,PragmaRule,F/A,I,N,Constraints,Mod,Id,L,T) :-heads1_code874,26656 -heads1_code([Head|Heads],RestHeads,[HeadID|HeadIDs],RestIDs,PragmaRule,F/A,I,N,Constraints,Mod,Id,L,T) :-heads1_code874,26656 -head1_code(Head,OtherHeads,OtherIDs,PragmaRule,FA,I,N,Constraints,Mod,Id,L,T) :-head1_code888,27264 -head1_code(Head,OtherHeads,OtherIDs,PragmaRule,FA,I,N,Constraints,Mod,Id,L,T) :-head1_code888,27264 -head1_code(Head,OtherHeads,OtherIDs,PragmaRule,FA,I,N,Constraints,Mod,Id,L,T) :-head1_code888,27264 -heads2_code([],_,_,_,_,_,_,_,_,_,_,Id,Id,L,L).heads2_code899,27749 -heads2_code([],_,_,_,_,_,_,_,_,_,_,Id,Id,L,L).heads2_code899,27749 -heads2_code([Head|Heads],RestHeads,[HeadID|HeadIDs],RestIDs,PragmaRule,RuleNb,F/A,I,N,Constraints,Mod,Id1,Id3,L,T) :-heads2_code900,27796 -heads2_code([Head|Heads],RestHeads,[HeadID|HeadIDs],RestIDs,PragmaRule,RuleNb,F/A,I,N,Constraints,Mod,Id1,Id3,L,T) :-heads2_code900,27796 -heads2_code([Head|Heads],RestHeads,[HeadID|HeadIDs],RestIDs,PragmaRule,RuleNb,F/A,I,N,Constraints,Mod,Id1,Id3,L,T) :-heads2_code900,27796 -head2_code(Head,OtherHeads,OtherIDs,PragmaRule,RuleNb,RestHeadNb,FA,I,N,Constraints,Mod,Id,L,T) :-head2_code919,28592 -head2_code(Head,OtherHeads,OtherIDs,PragmaRule,RuleNb,RestHeadNb,FA,I,N,Constraints,Mod,Id,L,T) :-head2_code919,28592 -head2_code(Head,OtherHeads,OtherIDs,PragmaRule,RuleNb,RestHeadNb,FA,I,N,Constraints,Mod,Id,L,T) :-head2_code919,28592 -gen_alloc_inc_clause(F/A,Mod,Id,L,T) :-gen_alloc_inc_clause929,29008 -gen_alloc_inc_clause(F/A,Mod,Id,L,T) :-gen_alloc_inc_clause929,29008 -gen_alloc_inc_clause(F/A,Mod,Id,L,T) :-gen_alloc_inc_clause929,29008 -gen_cond_allocation(Vars,Susp,F/A,VarsSusp,Mod,ConstraintAllocationGoal) :-gen_cond_allocation947,29372 -gen_cond_allocation(Vars,Susp,F/A,VarsSusp,Mod,ConstraintAllocationGoal) :-gen_cond_allocation947,29372 -gen_cond_allocation(Vars,Susp,F/A,VarsSusp,Mod,ConstraintAllocationGoal) :-gen_cond_allocation947,29372 -guard_via_reschedule(Retrievals,GuardList,Prelude,Goal) :-guard_via_reschedule961,29763 -guard_via_reschedule(Retrievals,GuardList,Prelude,Goal) :-guard_via_reschedule961,29763 -guard_via_reschedule(Retrievals,GuardList,Prelude,Goal) :-guard_via_reschedule961,29763 -guard_via_reschedule_main(Retrievals,GuardList,Prelude,Goal) :-guard_via_reschedule_main969,30004 -guard_via_reschedule_main(Retrievals,GuardList,Prelude,Goal) :-guard_via_reschedule_main969,30004 -guard_via_reschedule_main(Retrievals,GuardList,Prelude,Goal) :-guard_via_reschedule_main969,30004 -units2goal([],true).units2goal975,30220 -units2goal([],true).units2goal975,30220 -units2goal([unit(_,Goal,_,_)|Units],(Goal,Goals)) :-units2goal976,30241 -units2goal([unit(_,Goal,_,_)|Units],(Goal,Goals)) :-units2goal976,30241 -units2goal([unit(_,Goal,_,_)|Units],(Goal,Goals)) :-units2goal976,30241 -dependency_reorder(Units,NUnits) :-dependency_reorder979,30321 -dependency_reorder(Units,NUnits) :-dependency_reorder979,30321 -dependency_reorder(Units,NUnits) :-dependency_reorder979,30321 -dependency_reorder([],Acc,Result) :-dependency_reorder982,30396 -dependency_reorder([],Acc,Result) :-dependency_reorder982,30396 -dependency_reorder([],Acc,Result) :-dependency_reorder982,30396 -dependency_reorder([Unit|Units],Acc,Result) :-dependency_reorder985,30456 -dependency_reorder([Unit|Units],Acc,Result) :-dependency_reorder985,30456 -dependency_reorder([Unit|Units],Acc,Result) :-dependency_reorder985,30456 -dependency_insert([],Unit,_,[Unit]).dependency_insert994,30667 -dependency_insert([],Unit,_,[Unit]).dependency_insert994,30667 -dependency_insert([X|Xs],Unit,GIDs,L) :-dependency_insert995,30704 -dependency_insert([X|Xs],Unit,GIDs,L) :-dependency_insert995,30704 -dependency_insert([X|Xs],Unit,GIDs,L) :-dependency_insert995,30704 -build_units(Retrievals,Guard,InitialDict,Units) :-build_units1004,30870 -build_units(Retrievals,Guard,InitialDict,Units) :-build_units1004,30870 -build_units(Retrievals,Guard,InitialDict,Units) :-build_units1004,30870 -build_retrieval_units([],N,N,Dict,Dict,L,L).build_retrieval_units1008,31029 -build_retrieval_units([],N,N,Dict,Dict,L,L).build_retrieval_units1008,31029 -build_retrieval_units([U|Us],N,M,Dict,NDict,L,T) :-build_retrieval_units1009,31074 -build_retrieval_units([U|Us],N,M,Dict,NDict,L,T) :-build_retrieval_units1009,31074 -build_retrieval_units([U|Us],N,M,Dict,NDict,L,T) :-build_retrieval_units1009,31074 -build_retrieval_units2([],N,N,Dict,Dict,L,L).build_retrieval_units21016,31299 -build_retrieval_units2([],N,N,Dict,Dict,L,L).build_retrieval_units21016,31299 -build_retrieval_units2([U|Us],N,M,Dict,NDict,L,T) :-build_retrieval_units21017,31345 -build_retrieval_units2([U|Us],N,M,Dict,NDict,L,T) :-build_retrieval_units21017,31345 -build_retrieval_units2([U|Us],N,M,Dict,NDict,L,T) :-build_retrieval_units21017,31345 -initialize_unit_dictionary(Term,Dict) :-initialize_unit_dictionary1024,31568 -initialize_unit_dictionary(Term,Dict) :-initialize_unit_dictionary1024,31568 -initialize_unit_dictionary(Term,Dict) :-initialize_unit_dictionary1024,31568 -update_unit_dictionary([],_,Dict,Dict,GIDs,GIDs).update_unit_dictionary1028,31667 -update_unit_dictionary([],_,Dict,Dict,GIDs,GIDs).update_unit_dictionary1028,31667 -update_unit_dictionary([V|Vs],This,Dict,NDict,GIDs,NGIDs) :-update_unit_dictionary1029,31717 -update_unit_dictionary([V|Vs],This,Dict,NDict,GIDs,NGIDs) :-update_unit_dictionary1029,31717 -update_unit_dictionary([V|Vs],This,Dict,NDict,GIDs,NGIDs) :-update_unit_dictionary1029,31717 -build_guard_units(Guard,N,Dict,Units) :-build_guard_units1043,32020 -build_guard_units(Guard,N,Dict,Units) :-build_guard_units1043,32020 -build_guard_units(Guard,N,Dict,Units) :-build_guard_units1043,32020 -update_unit_dictionary2([],_,Dict,Dict,GIDs,GIDs).update_unit_dictionary21054,32331 -update_unit_dictionary2([],_,Dict,Dict,GIDs,GIDs).update_unit_dictionary21054,32331 -update_unit_dictionary2([V|Vs],This,Dict,NDict,GIDs,NGIDs) :-update_unit_dictionary21055,32382 -update_unit_dictionary2([V|Vs],This,Dict,NDict,GIDs,NGIDs) :-update_unit_dictionary21055,32382 -update_unit_dictionary2([V|Vs],This,Dict,NDict,GIDs,NGIDs) :-update_unit_dictionary21055,32382 -unique_analyse_optimise(Rules,N,PatternList,NRules) :-unique_analyse_optimise1084,33609 -unique_analyse_optimise(Rules,N,PatternList,NRules) :-unique_analyse_optimise1084,33609 -unique_analyse_optimise(Rules,N,PatternList,NRules) :-unique_analyse_optimise1084,33609 -unique_analyse_optimise_main([],_,_,[]).unique_analyse_optimise_main1091,33799 -unique_analyse_optimise_main([],_,_,[]).unique_analyse_optimise_main1091,33799 -unique_analyse_optimise_main([PRule|PRules],N,PatternList,[NPRule|NPRules]) :-unique_analyse_optimise_main1092,33840 -unique_analyse_optimise_main([PRule|PRules],N,PatternList,[NPRule|NPRules]) :-unique_analyse_optimise_main1092,33840 -unique_analyse_optimise_main([PRule|PRules],N,PatternList,[NPRule|NPRules]) :-unique_analyse_optimise_main1092,33840 -apply_unique_patterns_to_constraints([],_,_,[]).apply_unique_patterns_to_constraints1108,34452 -apply_unique_patterns_to_constraints([],_,_,[]).apply_unique_patterns_to_constraints1108,34452 -apply_unique_patterns_to_constraints([C|Cs],[Id|Ids],Patterns,Pragmas) :-apply_unique_patterns_to_constraints1109,34501 -apply_unique_patterns_to_constraints([C|Cs],[Id|Ids],Patterns,Pragmas) :-apply_unique_patterns_to_constraints1109,34501 -apply_unique_patterns_to_constraints([C|Cs],[Id|Ids],Patterns,Pragmas) :-apply_unique_patterns_to_constraints1109,34501 -apply_unique_pattern(Constraint,Id,Pattern,Pragma) :-apply_unique_pattern1118,34778 -apply_unique_pattern(Constraint,Id,Pattern,Pragma) :-apply_unique_pattern1118,34778 -apply_unique_pattern(Constraint,Id,Pattern,Pragma) :-apply_unique_pattern1118,34778 -subsumes(Term1,Term2,Unifier) :-subsumes1141,35371 -subsumes(Term1,Term2,Unifier) :-subsumes1141,35371 -subsumes(Term1,Term2,Unifier) :-subsumes1141,35371 -subsumes_aux(Term1, Term2, S0, S) :-subsumes_aux1147,35498 -subsumes_aux(Term1, Term2, S0, S) :-subsumes_aux1147,35498 -subsumes_aux(Term1, Term2, S0, S) :-subsumes_aux1147,35498 -subsumes_aux(0, _, _, S, S) :- ! .subsumes_aux1161,35863 -subsumes_aux(0, _, _, S, S) :- ! .subsumes_aux1161,35863 -subsumes_aux(0, _, _, S, S) :- ! .subsumes_aux1161,35863 -subsumes_aux(N, T1, T2, S0, S) :-subsumes_aux1162,35898 -subsumes_aux(N, T1, T2, S0, S) :-subsumes_aux1162,35898 -subsumes_aux(N, T1, T2, S0, S) :-subsumes_aux1162,35898 -build_unifier([],[]).build_unifier1169,36081 -build_unifier([],[]).build_unifier1169,36081 -build_unifier([X-V|R],[V - X | T]) :-build_unifier1170,36103 -build_unifier([X-V|R],[V - X | T]) :-build_unifier1170,36103 -build_unifier([X-V|R],[V - X | T]) :-build_unifier1170,36103 -discover_unique_pattern(PragmaRule,RuleNb,Pattern) :-discover_unique_pattern1173,36163 -discover_unique_pattern(PragmaRule,RuleNb,Pattern) :-discover_unique_pattern1173,36163 -discover_unique_pattern(PragmaRule,RuleNb,Pattern) :-discover_unique_pattern1173,36163 -select_pragma_unique_variables([],_,[]).select_pragma_unique_variables1192,36692 -select_pragma_unique_variables([],_,[]).select_pragma_unique_variables1192,36692 -select_pragma_unique_variables([X-Y|R],Vs,L) :-select_pragma_unique_variables1193,36733 -select_pragma_unique_variables([X-Y|R],Vs,L) :-select_pragma_unique_variables1193,36733 -select_pragma_unique_variables([X-Y|R],Vs,L) :-select_pragma_unique_variables1193,36733 -check_unique_constraints(C1,C2,G,_Body,Pragmas,List) :-check_unique_constraints1206,36932 -check_unique_constraints(C1,C2,G,_Body,Pragmas,List) :-check_unique_constraints1206,36932 -check_unique_constraints(C1,C2,G,_Body,Pragmas,List) :-check_unique_constraints1206,36932 -negate(true,fail).negate1213,37156 -negate(true,fail).negate1213,37156 -negate(fail,true).negate1214,37175 -negate(fail,true).negate1214,37175 -negate(X =< Y, Y < X).negate1215,37194 -negate(X =< Y, Y < X).negate1215,37194 -negate(X > Y, Y >= X).negate1216,37217 -negate(X > Y, Y >= X).negate1216,37217 -negate(X >= Y, Y > X).negate1217,37240 -negate(X >= Y, Y > X).negate1217,37240 -negate(X < Y, Y =< X).negate1218,37263 -negate(X < Y, Y =< X).negate1218,37263 -negate(var(X),nonvar(X)).negate1219,37286 -negate(var(X),nonvar(X)).negate1219,37286 -negate(nonvar(X),var(X)).negate1220,37312 -negate(nonvar(X),var(X)).negate1220,37312 -entails(X,X1) :- X1 == X.entails1222,37339 -entails(X,X1) :- X1 == X.entails1222,37339 -entails(X,X1) :- X1 == X.entails1222,37339 -entails(fail,_).entails1223,37365 -entails(fail,_).entails1223,37365 -entails(X > Y, X1 >= Y1) :- X1 == X, Y1 == Y.entails1224,37382 -entails(X > Y, X1 >= Y1) :- X1 == X, Y1 == Y.entails1224,37382 -entails(X > Y, X1 >= Y1) :- X1 == X, Y1 == Y.entails1224,37382 -entails(X < Y, X1 =< Y1) :- X1 == X, Y1 == Y.entails1225,37428 -entails(X < Y, X1 =< Y1) :- X1 == X, Y1 == Y.entails1225,37428 -entails(X < Y, X1 =< Y1) :- X1 == X, Y1 == Y.entails1225,37428 -entails(ground(X),var(X1)) :- X1 == X.entails1226,37474 -entails(ground(X),var(X1)) :- X1 == X.entails1226,37474 -entails(ground(X),var(X1)) :- X1 == X.entails1226,37474 -check_unnecessary_active(Constraint,Previous,Rule) :-check_unnecessary_active1228,37514 -check_unnecessary_active(Constraint,Previous,Rule) :-check_unnecessary_active1228,37514 -check_unnecessary_active(Constraint,Previous,Rule) :-check_unnecessary_active1228,37514 -check_unnecessary_active_main(Constraint,Previous,Rule) :-check_unnecessary_active_main1238,37833 -check_unnecessary_active_main(Constraint,Previous,Rule) :-check_unnecessary_active_main1238,37833 -check_unnecessary_active_main(Constraint,Previous,Rule) :-check_unnecessary_active_main1238,37833 -set_semantics_rule(PragmaRule) :-set_semantics_rule1244,38056 -set_semantics_rule(PragmaRule) :-set_semantics_rule1244,38056 -set_semantics_rule(PragmaRule) :-set_semantics_rule1244,38056 -set_semantics_rule_main(PragmaRule) :-set_semantics_rule_main1251,38184 -set_semantics_rule_main(PragmaRule) :-set_semantics_rule_main1251,38184 -set_semantics_rule_main(PragmaRule) :-set_semantics_rule_main1251,38184 -identical_rules(rule(H11,H21,G1,B1),rule(H12,H22,G2,B2)) :-identical_rules1270,39029 -identical_rules(rule(H11,H21,G1,B1),rule(H12,H22,G2,B2)) :-identical_rules1270,39029 -identical_rules(rule(H11,H21,G1,B1),rule(H12,H22,G2,B2)) :-identical_rules1270,39029 -identical_bodies(B1,B2) :-identical_bodies1278,39207 -identical_bodies(B1,B2) :-identical_bodies1278,39207 -identical_bodies(B1,B2) :-identical_bodies1278,39207 -copy_with_variable_replacement(X,Y,L) :-copy_with_variable_replacement1292,39409 -copy_with_variable_replacement(X,Y,L) :-copy_with_variable_replacement1292,39409 -copy_with_variable_replacement(X,Y,L) :-copy_with_variable_replacement1292,39409 -copy_with_variable_replacement_l([],[],_).copy_with_variable_replacement_l1305,39670 -copy_with_variable_replacement_l([],[],_).copy_with_variable_replacement_l1305,39670 -copy_with_variable_replacement_l([X|Xs],[Y|Ys],L) :-copy_with_variable_replacement_l1306,39713 -copy_with_variable_replacement_l([X|Xs],[Y|Ys],L) :-copy_with_variable_replacement_l1306,39713 -copy_with_variable_replacement_l([X|Xs],[Y|Ys],L) :-copy_with_variable_replacement_l1306,39713 -variable_replacement(X,Y,L) :-variable_replacement1312,39891 -variable_replacement(X,Y,L) :-variable_replacement1312,39891 -variable_replacement(X,Y,L) :-variable_replacement1312,39891 -variable_replacement(X,Y,L1,L2) :-variable_replacement1315,39958 -variable_replacement(X,Y,L1,L2) :-variable_replacement1315,39958 -variable_replacement(X,Y,L1,L2) :-variable_replacement1315,39958 -variable_replacement_l([],[],L,L).variable_replacement_l1329,40221 -variable_replacement_l([],[],L,L).variable_replacement_l1329,40221 -variable_replacement_l([X|Xs],[Y|Ys],L1,L3) :-variable_replacement_l1330,40256 -variable_replacement_l([X|Xs],[Y|Ys],L1,L3) :-variable_replacement_l1330,40256 -variable_replacement_l([X|Xs],[Y|Ys],L1,L3) :-variable_replacement_l1330,40256 -simplification_code(Head,RestHeads,RestIDs,PragmaRule,F/A,_I,N,Constraints,Mod,Id,L,T) :-simplification_code1343,40887 -simplification_code(Head,RestHeads,RestIDs,PragmaRule,F/A,_I,N,Constraints,Mod,Id,L,T) :-simplification_code1343,40887 -simplification_code(Head,RestHeads,RestIDs,PragmaRule,F/A,_I,N,Constraints,Mod,Id,L,T) :-simplification_code1343,40887 -head_arg_matches(Pairs,VarDict,Goal,NVarDict) :-head_arg_matches1373,41863 -head_arg_matches(Pairs,VarDict,Goal,NVarDict) :-head_arg_matches1373,41863 -head_arg_matches(Pairs,VarDict,Goal,NVarDict) :-head_arg_matches1373,41863 -head_arg_matches_([],VarDict,[],VarDict).head_arg_matches_1377,41993 -head_arg_matches_([],VarDict,[],VarDict).head_arg_matches_1377,41993 -head_arg_matches_([Arg-Var| Rest],VarDict,GoalList,NVarDict) :-head_arg_matches_1378,42035 -head_arg_matches_([Arg-Var| Rest],VarDict,GoalList,NVarDict) :-head_arg_matches_1378,42035 -head_arg_matches_([Arg-Var| Rest],VarDict,GoalList,NVarDict) :-head_arg_matches_1378,42035 -rest_heads_retrieval_and_matching(Heads,IDs,Pragmas,ActiveHead,Mod,N,Constraints,GoalList,Susps,VarDict,NVarDict):-rest_heads_retrieval_and_matching1402,42806 -rest_heads_retrieval_and_matching(Heads,IDs,Pragmas,ActiveHead,Mod,N,Constraints,GoalList,Susps,VarDict,NVarDict):-rest_heads_retrieval_and_matching1402,42806 -rest_heads_retrieval_and_matching(Heads,IDs,Pragmas,ActiveHead,Mod,N,Constraints,GoalList,Susps,VarDict,NVarDict):-rest_heads_retrieval_and_matching1402,42806 -rest_heads_retrieval_and_matching(Heads,IDs,Pragmas,ActiveHead,Mod,N,Constraints,GoalList,Susps,VarDict,NVarDict,PrevHs,PrevSusps,AttrDict) :-rest_heads_retrieval_and_matching1405,43048 -rest_heads_retrieval_and_matching(Heads,IDs,Pragmas,ActiveHead,Mod,N,Constraints,GoalList,Susps,VarDict,NVarDict,PrevHs,PrevSusps,AttrDict) :-rest_heads_retrieval_and_matching1405,43048 -rest_heads_retrieval_and_matching(Heads,IDs,Pragmas,ActiveHead,Mod,N,Constraints,GoalList,Susps,VarDict,NVarDict,PrevHs,PrevSusps,AttrDict) :-rest_heads_retrieval_and_matching1405,43048 -rest_heads_retrieval_and_matching_n([],_,_,_,_,_,_,N,_,[],[],VarDict,VarDict,AttrDict) :-rest_heads_retrieval_and_matching_n1414,43415 -rest_heads_retrieval_and_matching_n([],_,_,_,_,_,_,N,_,[],[],VarDict,VarDict,AttrDict) :-rest_heads_retrieval_and_matching_n1414,43415 -rest_heads_retrieval_and_matching_n([],_,_,_,_,_,_,N,_,[],[],VarDict,VarDict,AttrDict) :-rest_heads_retrieval_and_matching_n1414,43415 -rest_heads_retrieval_and_matching_n([H|Hs],[ID|IDs],Pragmas,PrevHs,PrevSusps,ActiveHead,Mod,N,Constraints,[ViaGoal,Goal|Goals],[Susp|Susps],VarDict,NVarDict,AttrDict) :-rest_heads_retrieval_and_matching_n1416,43545 -rest_heads_retrieval_and_matching_n([H|Hs],[ID|IDs],Pragmas,PrevHs,PrevSusps,ActiveHead,Mod,N,Constraints,[ViaGoal,Goal|Goals],[Susp|Susps],VarDict,NVarDict,AttrDict) :-rest_heads_retrieval_and_matching_n1416,43545 -rest_heads_retrieval_and_matching_n([H|Hs],[ID|IDs],Pragmas,PrevHs,PrevSusps,ActiveHead,Mod,N,Constraints,[ViaGoal,Goal|Goals],[Susp|Susps],VarDict,NVarDict,AttrDict) :-rest_heads_retrieval_and_matching_n1416,43545 -instantiate_pattern_goals([],_).instantiate_pattern_goals1447,44657 -instantiate_pattern_goals([],_).instantiate_pattern_goals1447,44657 -instantiate_pattern_goals([_-attr(Attr,Bits,Goal)|Rest],N) :-instantiate_pattern_goals1448,44690 -instantiate_pattern_goals([_-attr(Attr,Bits,Goal)|Rest],N) :-instantiate_pattern_goals1448,44690 -instantiate_pattern_goals([_-attr(Attr,Bits,Goal)|Rest],N) :-instantiate_pattern_goals1448,44690 -check_unique_keys([],_).check_unique_keys1459,44919 -check_unique_keys([],_).check_unique_keys1459,44919 -check_unique_keys([V|Vs],Dict) :-check_unique_keys1460,44944 -check_unique_keys([V|Vs],Dict) :-check_unique_keys1460,44944 -check_unique_keys([V|Vs],Dict) :-check_unique_keys1460,44944 -different_from_other_susps(Head,Susp,Heads,Susps,DiffSuspGoals) :-different_from_other_susps1465,45121 -different_from_other_susps(Head,Susp,Heads,Susps,DiffSuspGoals) :-different_from_other_susps1465,45121 -different_from_other_susps(Head,Susp,Heads,Susps,DiffSuspGoals) :-different_from_other_susps1465,45121 -passive_head_via(Head,PrevHeads,AttrDict,Constraints,Mod,VarDict,Goal,Attr,NewAttrDict) :-passive_head_via1472,45429 -passive_head_via(Head,PrevHeads,AttrDict,Constraints,Mod,VarDict,Goal,Attr,NewAttrDict) :-passive_head_via1472,45429 -passive_head_via(Head,PrevHeads,AttrDict,Constraints,Mod,VarDict,Goal,Attr,NewAttrDict) :-passive_head_via1472,45429 -common_variables(T,Ts,Vs) :-common_variables1489,45994 -common_variables(T,Ts,Vs) :-common_variables1489,45994 -common_variables(T,Ts,Vs) :-common_variables1489,45994 -gen_get_mod_constraints(Mod,L,Goal,Susps) :-gen_get_mod_constraints1494,46096 -gen_get_mod_constraints(Mod,L,Goal,Susps) :-gen_get_mod_constraints1494,46096 -gen_get_mod_constraints(Mod,L,Goal,Susps) :-gen_get_mod_constraints1494,46096 -guard_body_copies(Rule,VarDict,GuardCopy,BodyCopy) :-guard_body_copies1516,46576 -guard_body_copies(Rule,VarDict,GuardCopy,BodyCopy) :-guard_body_copies1516,46576 -guard_body_copies(Rule,VarDict,GuardCopy,BodyCopy) :-guard_body_copies1516,46576 -guard_body_copies2(Rule,VarDict,GuardCopyList,BodyCopy) :-guard_body_copies21520,46726 -guard_body_copies2(Rule,VarDict,GuardCopyList,BodyCopy) :-guard_body_copies21520,46726 -guard_body_copies2(Rule,VarDict,GuardCopyList,BodyCopy) :-guard_body_copies21520,46726 -split_off_simple_guard([],_,[],[]).split_off_simple_guard1548,47894 -split_off_simple_guard([],_,[],[]).split_off_simple_guard1548,47894 -split_off_simple_guard([G|Gs],VarDict,S,C) :-split_off_simple_guard1549,47930 -split_off_simple_guard([G|Gs],VarDict,S,C) :-split_off_simple_guard1549,47930 -split_off_simple_guard([G|Gs],VarDict,S,C) :-split_off_simple_guard1549,47930 -simple_guard(var(_), _).simple_guard1560,48153 -simple_guard(var(_), _).simple_guard1560,48153 -simple_guard(nonvar(_), _).simple_guard1561,48181 -simple_guard(nonvar(_), _).simple_guard1561,48181 -simple_guard(ground(_), _).simple_guard1562,48209 -simple_guard(ground(_), _).simple_guard1562,48209 -simple_guard(number(_), _).simple_guard1563,48237 -simple_guard(number(_), _).simple_guard1563,48237 -simple_guard(atom(_), _).simple_guard1564,48265 -simple_guard(atom(_), _).simple_guard1564,48265 -simple_guard(integer(_), _).simple_guard1565,48291 -simple_guard(integer(_), _).simple_guard1565,48291 -simple_guard(float(_), _).simple_guard1566,48320 -simple_guard(float(_), _).simple_guard1566,48320 -simple_guard(_ > _ , _).simple_guard1568,48348 -simple_guard(_ > _ , _).simple_guard1568,48348 -simple_guard(_ < _ , _).simple_guard1569,48373 -simple_guard(_ < _ , _).simple_guard1569,48373 -simple_guard(_ =< _, _).simple_guard1570,48398 -simple_guard(_ =< _, _).simple_guard1570,48398 -simple_guard(_ >= _, _).simple_guard1571,48423 -simple_guard(_ >= _, _).simple_guard1571,48423 -simple_guard(_ =:= _, _).simple_guard1572,48448 -simple_guard(_ =:= _, _).simple_guard1572,48448 -simple_guard(_ == _, _).simple_guard1573,48474 -simple_guard(_ == _, _).simple_guard1573,48474 -simple_guard(X is _, VarDict) :-simple_guard1575,48500 -simple_guard(X is _, VarDict) :-simple_guard1575,48500 -simple_guard(X is _, VarDict) :-simple_guard1575,48500 -simple_guard((G1,G2),VarDict) :-simple_guard1578,48562 -simple_guard((G1,G2),VarDict) :-simple_guard1578,48562 -simple_guard((G1,G2),VarDict) :-simple_guard1578,48562 -simple_guard(\+ G, VarDict) :-simple_guard1582,48650 -simple_guard(\+ G, VarDict) :-simple_guard1582,48650 -simple_guard(\+ G, VarDict) :-simple_guard1582,48650 -my_term_copy(X,Dict,Y) :-my_term_copy1585,48709 -my_term_copy(X,Dict,Y) :-my_term_copy1585,48709 -my_term_copy(X,Dict,Y) :-my_term_copy1585,48709 -my_term_copy(X,Dict1,Dict2,Y) :-my_term_copy1588,48765 -my_term_copy(X,Dict1,Dict2,Y) :-my_term_copy1588,48765 -my_term_copy(X,Dict1,Dict2,Y) :-my_term_copy1588,48765 -my_term_copy_list([],Dict,Dict,[]).my_term_copy_list1601,49070 -my_term_copy_list([],Dict,Dict,[]).my_term_copy_list1601,49070 -my_term_copy_list([X|Xs],Dict1,Dict3,[Y|Ys]) :-my_term_copy_list1602,49106 -my_term_copy_list([X|Xs],Dict1,Dict3,[Y|Ys]) :-my_term_copy_list1602,49106 -my_term_copy_list([X|Xs],Dict1,Dict3,[Y|Ys]) :-my_term_copy_list1602,49106 -gen_cond_susp_detachment(Susp,FA,SuspDetachment) :-gen_cond_susp_detachment1606,49230 -gen_cond_susp_detachment(Susp,FA,SuspDetachment) :-gen_cond_susp_detachment1606,49230 -gen_cond_susp_detachment(Susp,FA,SuspDetachment) :-gen_cond_susp_detachment1606,49230 -gen_uncond_susp_detachment(Susp,CFct/CAty,SuspDetachment) :-gen_uncond_susp_detachment1614,49442 -gen_uncond_susp_detachment(Susp,CFct/CAty,SuspDetachment) :-gen_uncond_susp_detachment1614,49442 -gen_uncond_susp_detachment(Susp,CFct/CAty,SuspDetachment) :-gen_uncond_susp_detachment1614,49442 -gen_uncond_susps_detachments([],[],true).gen_uncond_susps_detachments1623,49667 -gen_uncond_susps_detachments([],[],true).gen_uncond_susps_detachments1623,49667 -gen_uncond_susps_detachments([Susp|Susps],[Term|Terms],(SuspDetachment,SuspsDetachments)) :-gen_uncond_susps_detachments1624,49709 -gen_uncond_susps_detachments([Susp|Susps],[Term|Terms],(SuspDetachment,SuspsDetachments)) :-gen_uncond_susps_detachments1624,49709 -gen_uncond_susps_detachments([Susp|Susps],[Term|Terms],(SuspDetachment,SuspsDetachments)) :-gen_uncond_susps_detachments1624,49709 -simpagation_head1_code(Head,RestHeads,OtherIDs,PragmaRule,F/A,_I,N,Constraints,Mod,Id,L,T) :-simpagation_head1_code1639,50492 -simpagation_head1_code(Head,RestHeads,OtherIDs,PragmaRule,F/A,_I,N,Constraints,Mod,Id,L,T) :-simpagation_head1_code1639,50492 -simpagation_head1_code(Head,RestHeads,OtherIDs,PragmaRule,F/A,_I,N,Constraints,Mod,Id,L,T) :-simpagation_head1_code1639,50492 -simpagation_head2_code(Head2,RestHeads2,RestIDs,PragmaRule,FA,I,N,Constraints,Mod,Id,L,T) :-simpagation_head2_code1684,52307 -simpagation_head2_code(Head2,RestHeads2,RestIDs,PragmaRule,FA,I,N,Constraints,Mod,Id,L,T) :-simpagation_head2_code1684,52307 -simpagation_head2_code(Head2,RestHeads2,RestIDs,PragmaRule,FA,I,N,Constraints,Mod,Id,L,T) :-simpagation_head2_code1684,52307 -simpagation_head2_prelude(Head,Head1,Rest,F/A,_I,N,Constraints,Mod,Id1,L,T) :-simpagation_head2_prelude1694,52971 -simpagation_head2_prelude(Head,Head1,Rest,F/A,_I,N,Constraints,Mod,Id1,L,T) :-simpagation_head2_prelude1694,52971 -simpagation_head2_prelude(Head,Head1,Rest,F/A,_I,N,Constraints,Mod,Id1,L,T) :-simpagation_head2_prelude1694,52971 -extra_active_delegate_variables(Term,Terms,VarDict,Vars) :-extra_active_delegate_variables1730,54046 -extra_active_delegate_variables(Term,Terms,VarDict,Vars) :-extra_active_delegate_variables1730,54046 -extra_active_delegate_variables(Term,Terms,VarDict,Vars) :-extra_active_delegate_variables1730,54046 -passive_delegate_variables(Term,PrevTerms,NextTerms,VarDict,Vars) :-passive_delegate_variables1734,54178 -passive_delegate_variables(Term,PrevTerms,NextTerms,VarDict,Vars) :-passive_delegate_variables1734,54178 -passive_delegate_variables(Term,PrevTerms,NextTerms,VarDict,Vars) :-passive_delegate_variables1734,54178 -delegate_variables(Term,Terms,VarDict,PrevVars,Vars) :-delegate_variables1738,54344 -delegate_variables(Term,Terms,VarDict,PrevVars,Vars) :-delegate_variables1738,54344 -delegate_variables(Term,Terms,VarDict,PrevVars,Vars) :-delegate_variables1738,54344 -simpagation_head2_worker(Head2,Head1,ID1,RestHeads1,IDs1,RestHeads2,IDs2,Rule,Pragmas,FA,I,N,Constraints,Mod,Id,L,T) :-simpagation_head2_worker1747,54626 -simpagation_head2_worker(Head2,Head1,ID1,RestHeads1,IDs1,RestHeads2,IDs2,Rule,Pragmas,FA,I,N,Constraints,Mod,Id,L,T) :-simpagation_head2_worker1747,54626 -simpagation_head2_worker(Head2,Head1,ID1,RestHeads1,IDs1,RestHeads2,IDs2,Rule,Pragmas,FA,I,N,Constraints,Mod,Id,L,T) :-simpagation_head2_worker1747,54626 -simpagation_head2_worker_body(Head2,Head1,ID1,RestHeads1,IDs1,RestHeads2,IDs2,Rule,Pragmas,F/A,_I,N,Constraints,Mod,Id,L,T) :-simpagation_head2_worker_body1753,55078 -simpagation_head2_worker_body(Head2,Head1,ID1,RestHeads1,IDs1,RestHeads2,IDs2,Rule,Pragmas,F/A,_I,N,Constraints,Mod,Id,L,T) :-simpagation_head2_worker_body1753,55078 -simpagation_head2_worker_body(Head2,Head1,ID1,RestHeads1,IDs1,RestHeads2,IDs2,Rule,Pragmas,F/A,_I,N,Constraints,Mod,Id,L,T) :-simpagation_head2_worker_body1753,55078 -gen_state_cond_call(Susp,N,Call,Generation,ConditionalCall) :-gen_state_cond_call1841,57934 -gen_state_cond_call(Susp,N,Call,Generation,ConditionalCall) :-gen_state_cond_call1841,57934 -gen_state_cond_call(Susp,N,Call,Generation,ConditionalCall) :-gen_state_cond_call1841,57934 -simpagation_head2_worker_end(Head,Rest,F/A,Id,L,T) :-simpagation_head2_worker_end1856,58452 -simpagation_head2_worker_end(Head,Rest,F/A,Id,L,T) :-simpagation_head2_worker_end1856,58452 -simpagation_head2_worker_end(Head,Rest,F/A,Id,L,T) :-simpagation_head2_worker_end1856,58452 -propagation_code(Head,RestHeads,Rule,RuleNb,RestHeadNb,FA,N,Constraints,Mod,Id,L,T) :-propagation_code1878,59413 -propagation_code(Head,RestHeads,Rule,RuleNb,RestHeadNb,FA,N,Constraints,Mod,Id,L,T) :-propagation_code1878,59413 -propagation_code(Head,RestHeads,Rule,RuleNb,RestHeadNb,FA,N,Constraints,Mod,Id,L,T) :-propagation_code1878,59413 -propagation_single_headed(Head,Rule,RuleNb,F/A,Mod,Id,L,T) :-propagation_single_headed1887,59825 -propagation_single_headed(Head,Rule,RuleNb,F/A,Mod,Id,L,T) :-propagation_single_headed1887,59825 -propagation_single_headed(Head,Rule,RuleNb,F/A,Mod,Id,L,T) :-propagation_single_headed1887,59825 -propagation_multi_headed(Head,RestHeads,Rule,RuleNb,RestHeadNb,FA,N,Constraints,Mod,Id,L,T) :-propagation_multi_headed1926,60962 -propagation_multi_headed(Head,RestHeads,Rule,RuleNb,RestHeadNb,FA,N,Constraints,Mod,Id,L,T) :-propagation_multi_headed1926,60962 -propagation_multi_headed(Head,RestHeads,Rule,RuleNb,RestHeadNb,FA,N,Constraints,Mod,Id,L,T) :-propagation_multi_headed1926,60962 -propagation_prelude(Head,[First|Rest],Rule,F/A,N,Constraints,Mod,Id,L,T) :-propagation_prelude1933,61377 -propagation_prelude(Head,[First|Rest],Rule,F/A,N,Constraints,Mod,Id,L,T) :-propagation_prelude1933,61377 -propagation_prelude(Head,[First|Rest],Rule,F/A,N,Constraints,Mod,Id,L,T) :-propagation_prelude1933,61377 -propagation_nested_code([],[CurrentHead|PreHeads],Rule,RuleNb,RestHeadNb,FA,_,_Constraints,Mod,Id,L,T) :-propagation_nested_code1972,62574 -propagation_nested_code([],[CurrentHead|PreHeads],Rule,RuleNb,RestHeadNb,FA,_,_Constraints,Mod,Id,L,T) :-propagation_nested_code1972,62574 -propagation_nested_code([],[CurrentHead|PreHeads],Rule,RuleNb,RestHeadNb,FA,_,_Constraints,Mod,Id,L,T) :-propagation_nested_code1972,62574 -propagation_nested_code([Head|RestHeads],PreHeads,Rule,RuleNb,RestHeadNb,FA,N,Constraints,Mod,Id,L,T) :-propagation_nested_code1976,62825 -propagation_nested_code([Head|RestHeads],PreHeads,Rule,RuleNb,RestHeadNb,FA,N,Constraints,Mod,Id,L,T) :-propagation_nested_code1976,62825 -propagation_nested_code([Head|RestHeads],PreHeads,Rule,RuleNb,RestHeadNb,FA,N,Constraints,Mod,Id,L,T) :-propagation_nested_code1976,62825 -propagation_body(CurrentHead,PreHeads,Rule,RuleNb,RestHeadNb,F/A,Mod,Id,L,T) :-propagation_body1982,63215 -propagation_body(CurrentHead,PreHeads,Rule,RuleNb,RestHeadNb,F/A,Mod,Id,L,T) :-propagation_body1982,63215 -propagation_body(CurrentHead,PreHeads,Rule,RuleNb,RestHeadNb,F/A,Mod,Id,L,T) :-propagation_body1982,63215 -history_susps(Count,OtherSusps,Susp,Acc,HistorySusps) :-history_susps2033,65032 -history_susps(Count,OtherSusps,Susp,Acc,HistorySusps) :-history_susps2033,65032 -history_susps(Count,OtherSusps,Susp,Acc,HistorySusps) :-history_susps2033,65032 -get_prop_inner_loop_vars([Head],Terms,HeadVars,VarDict,Susp,[]) :-get_prop_inner_loop_vars2044,65339 -get_prop_inner_loop_vars([Head],Terms,HeadVars,VarDict,Susp,[]) :-get_prop_inner_loop_vars2044,65339 -get_prop_inner_loop_vars([Head],Terms,HeadVars,VarDict,Susp,[]) :-get_prop_inner_loop_vars2044,65339 -get_prop_inner_loop_vars([Head|Heads],Terms,VarsSusps,NVarDict,MainSusp,[Susp|RestSusps]) :-get_prop_inner_loop_vars2051,65618 -get_prop_inner_loop_vars([Head|Heads],Terms,VarsSusps,NVarDict,MainSusp,[Susp|RestSusps]) :-get_prop_inner_loop_vars2051,65618 -get_prop_inner_loop_vars([Head|Heads],Terms,VarsSusps,NVarDict,MainSusp,[Susp|RestSusps]) :-get_prop_inner_loop_vars2051,65618 -propagation_end([CurrentHead|PrevHeads],NextHeads,Rule,F/A,Id,L,T) :-propagation_end2060,66049 -propagation_end([CurrentHead|PrevHeads],NextHeads,Rule,F/A,Id,L,T) :-propagation_end2060,66049 -propagation_end([CurrentHead|PrevHeads],NextHeads,Rule,F/A,Id,L,T) :-propagation_end2060,66049 -gen_var_susp_list_for([Head],Terms,VarDict,HeadVars,VarsSusp,Susp) :-gen_var_susp_list_for2085,66668 -gen_var_susp_list_for([Head],Terms,VarDict,HeadVars,VarsSusp,Susp) :-gen_var_susp_list_for2085,66668 -gen_var_susp_list_for([Head],Terms,VarDict,HeadVars,VarsSusp,Susp) :-gen_var_susp_list_for2085,66668 -gen_var_susp_list_for([Head|Heads],Terms,NVarDict,VarsSusps,Rest,Susps) :-gen_var_susp_list_for2092,66970 -gen_var_susp_list_for([Head|Heads],Terms,NVarDict,VarsSusps,Rest,Susps) :-gen_var_susp_list_for2092,66970 -gen_var_susp_list_for([Head|Heads],Terms,NVarDict,VarsSusps,Rest,Susps) :-gen_var_susp_list_for2092,66970 -propagation_accumulator([NextHead|RestHeads],[CurrentHead|PreHeads],Rule,F/A,N,Constraints,Mod,Id,L,T) :-propagation_accumulator2101,67357 -propagation_accumulator([NextHead|RestHeads],[CurrentHead|PreHeads],Rule,F/A,N,Constraints,Mod,Id,L,T) :-propagation_accumulator2101,67357 -propagation_accumulator([NextHead|RestHeads],[CurrentHead|PreHeads],Rule,F/A,N,Constraints,Mod,Id,L,T) :-propagation_accumulator2101,67357 -pre_vars_and_susps([Head],Terms,HeadVars,VarDict,[]) :-pre_vars_and_susps2150,69103 -pre_vars_and_susps([Head],Terms,HeadVars,VarDict,[]) :-pre_vars_and_susps2150,69103 -pre_vars_and_susps([Head],Terms,HeadVars,VarDict,[]) :-pre_vars_and_susps2150,69103 -pre_vars_and_susps([Head|Heads],Terms,NVSs,NVarDict,[Susp|Susps]) :-pre_vars_and_susps2157,69380 -pre_vars_and_susps([Head|Heads],Terms,NVSs,NVarDict,[Susp|Susps]) :-pre_vars_and_susps2157,69380 -pre_vars_and_susps([Head|Heads],Terms,NVSs,NVarDict,[Susp|Susps]) :-pre_vars_and_susps2157,69380 -reorder_heads(Head,RestHeads,RestIDs,NRestHeads,NRestIDs) :-reorder_heads2188,70769 -reorder_heads(Head,RestHeads,RestIDs,NRestHeads,NRestIDs) :-reorder_heads2188,70769 -reorder_heads(Head,RestHeads,RestIDs,NRestHeads,NRestIDs) :-reorder_heads2188,70769 -reorder_heads_main(Head,RestHeads,RestIDs,NRestHeads,NRestIDs) :-reorder_heads_main2196,70986 -reorder_heads_main(Head,RestHeads,RestIDs,NRestHeads,NRestIDs) :-reorder_heads_main2196,70986 -reorder_heads_main(Head,RestHeads,RestIDs,NRestHeads,NRestIDs) :-reorder_heads_main2196,70986 -reorder_heads1(Heads,IDs,KnownVars,NHeads,NIDs) :-reorder_heads12200,71152 -reorder_heads1(Heads,IDs,KnownVars,NHeads,NIDs) :-reorder_heads12200,71152 -reorder_heads1(Heads,IDs,KnownVars,NHeads,NIDs) :-reorder_heads12200,71152 -select_best_head(Heads,IDs,KnownVars,BestHead,BestID,RestHeads,RestIDs,NKnownVars) :-select_best_head2211,71467 -select_best_head(Heads,IDs,KnownVars,BestHead,BestID,RestHeads,RestIDs,NKnownVars) :-select_best_head2211,71467 -select_best_head(Heads,IDs,KnownVars,BestHead,BestID,RestHeads,RestIDs,NKnownVars) :-select_best_head2211,71467 -reorder_heads(Head,RestHeads,NRestHeads) :-reorder_heads2226,72006 -reorder_heads(Head,RestHeads,NRestHeads) :-reorder_heads2226,72006 -reorder_heads(Head,RestHeads,NRestHeads) :-reorder_heads2226,72006 -reorder_heads1(Heads,KnownVars,NHeads) :-reorder_heads12230,72133 -reorder_heads1(Heads,KnownVars,NHeads) :-reorder_heads12230,72133 -reorder_heads1(Heads,KnownVars,NHeads) :-reorder_heads12230,72133 -select_best_head(Heads,KnownVars,BestHead,RestHeads,NKnownVars) :-select_best_head2239,72362 -select_best_head(Heads,KnownVars,BestHead,RestHeads,NKnownVars) :-select_best_head2239,72362 -select_best_head(Heads,KnownVars,BestHead,RestHeads,NKnownVars) :-select_best_head2239,72362 -order_score(Head,KnownVars,Rest,Score) :-order_score2254,72845 -order_score(Head,KnownVars,Rest,Score) :-order_score2254,72845 -order_score(Head,KnownVars,Rest,Score) :-order_score2254,72845 -order_score_vars([],_,_,Score,NScore) :-order_score_vars2259,73008 -order_score_vars([],_,_,Score,NScore) :-order_score_vars2259,73008 -order_score_vars([],_,_,Score,NScore) :-order_score_vars2259,73008 -order_score_vars([V|Vs],KnownVars,RestVars,Score,NScore) :-order_score_vars2265,73107 -order_score_vars([V|Vs],KnownVars,RestVars,Score,NScore) :-order_score_vars2265,73107 -order_score_vars([V|Vs],KnownVars,RestVars,Score,NScore) :-order_score_vars2265,73107 -create_get_mutable_ref(V,M,GM) :- GM = (M = mutable(V)).create_get_mutable_ref2284,73669 -create_get_mutable_ref(V,M,GM) :- GM = (M = mutable(V)).create_get_mutable_ref2284,73669 -create_get_mutable_ref(V,M,GM) :- GM = (M = mutable(V)).create_get_mutable_ref2284,73669 -create_get_mutable_ref(V,M,GM) :- GM = (M = mutable(V)).create_get_mutable_ref2284,73669 -create_get_mutable_ref(V,M,GM) :- GM = (M = mutable(V)).create_get_mutable_ref2284,73669 -clean_clauses([],[]).clean_clauses2305,74478 -clean_clauses([],[]).clean_clauses2305,74478 -clean_clauses([C|Cs],[NC|NCs]) :-clean_clauses2306,74500 -clean_clauses([C|Cs],[NC|NCs]) :-clean_clauses2306,74500 -clean_clauses([C|Cs],[NC|NCs]) :-clean_clauses2306,74500 -clean_clause(Clause,NClause) :-clean_clause2310,74580 -clean_clause(Clause,NClause) :-clean_clause2310,74580 -clean_clause(Clause,NClause) :-clean_clause2310,74580 -clean_goal(Goal,NGoal) :-clean_goal2322,74771 -clean_goal(Goal,NGoal) :-clean_goal2322,74771 -clean_goal(Goal,NGoal) :-clean_goal2322,74771 -clean_goal((G1,G2),NGoal) :-clean_goal2325,74827 -clean_goal((G1,G2),NGoal) :-clean_goal2325,74827 -clean_goal((G1,G2),NGoal) :-clean_goal2325,74827 -clean_goal((If -> Then ; Else),NGoal) :-clean_goal2336,74993 -clean_goal((If -> Then ; Else),NGoal) :-clean_goal2336,74993 -clean_goal((If -> Then ; Else),NGoal) :-clean_goal2336,74993 -clean_goal((G1 ; G2),NGoal) :-clean_goal2350,75270 -clean_goal((G1 ; G2),NGoal) :-clean_goal2350,75270 -clean_goal((G1 ; G2),NGoal) :-clean_goal2350,75270 -clean_goal(once(G),NGoal) :-clean_goal2361,75440 -clean_goal(once(G),NGoal) :-clean_goal2361,75440 -clean_goal(once(G),NGoal) :-clean_goal2361,75440 -clean_goal((G1 -> G2),NGoal) :-clean_goal2371,75582 -clean_goal((G1 -> G2),NGoal) :-clean_goal2371,75582 -clean_goal((G1 -> G2),NGoal) :-clean_goal2371,75582 -clean_goal(Goal,Goal).clean_goal2382,75765 -clean_goal(Goal,Goal).clean_goal2382,75765 -gen_var(_).gen_var2393,76127 -gen_var(_).gen_var2393,76127 -gen_vars(N,Xs) :-gen_vars2394,76139 -gen_vars(N,Xs) :-gen_vars2394,76139 -gen_vars(N,Xs) :-gen_vars2394,76139 -head_info(Head,A,Vars,Susp,VarsSusp,HeadPairs) :-head_info2397,76175 -head_info(Head,A,Vars,Susp,VarsSusp,HeadPairs) :-head_info2397,76175 -head_info(Head,A,Vars,Susp,VarsSusp,HeadPairs) :-head_info2397,76175 -inc_id([N|Ns],[O|Ns]) :-inc_id2402,76316 -inc_id([N|Ns],[O|Ns]) :-inc_id2402,76316 -inc_id([N|Ns],[O|Ns]) :-inc_id2402,76316 -dec_id([N|Ns],[M|Ns]) :-dec_id2404,76356 -dec_id([N|Ns],[M|Ns]) :-dec_id2404,76356 -dec_id([N|Ns],[M|Ns]) :-dec_id2404,76356 -extend_id(Id,[0|Id]).extend_id2407,76397 -extend_id(Id,[0|Id]).extend_id2407,76397 -next_id([_,N|Ns],[O|Ns]) :-next_id2409,76420 -next_id([_,N|Ns],[O|Ns]) :-next_id2409,76420 -next_id([_,N|Ns],[O|Ns]) :-next_id2409,76420 -build_head(F,A,Id,Args,Head) :-build_head2412,76464 -build_head(F,A,Id,Args,Head) :-build_head2412,76464 -build_head(F,A,Id,Args,Head) :-build_head2412,76464 -buildName(Fct,Aty,List,Result) :-buildName2416,76549 -buildName(Fct,Aty,List,Result) :-buildName2416,76549 -buildName(Fct,Aty,List,Result) :-buildName2416,76549 -buildName_([],Name,Name).buildName_2421,76704 -buildName_([],Name,Name).buildName_2421,76704 -buildName_([N|Ns],Name,Result) :-buildName_2422,76730 -buildName_([N|Ns],Name,Result) :-buildName_2422,76730 -buildName_([N|Ns],Name,Result) :-buildName_2422,76730 -vars_susp(A,Vars,Susp,VarsSusp) :-vars_susp2427,76889 -vars_susp(A,Vars,Susp,VarsSusp) :-vars_susp2427,76889 -vars_susp(A,Vars,Susp,VarsSusp) :-vars_susp2427,76889 -make_attr(N,Mask,SuspsList,Attr) :-make_attr2431,76977 -make_attr(N,Mask,SuspsList,Attr) :-make_attr2431,76977 -make_attr(N,Mask,SuspsList,Attr) :-make_attr2431,76977 -or_pattern(Pos,Pat) :-or_pattern2435,77066 -or_pattern(Pos,Pat) :-or_pattern2435,77066 -or_pattern(Pos,Pat) :-or_pattern2435,77066 -and_pattern(Pos,Pat) :-and_pattern2439,77143 -and_pattern(Pos,Pat) :-and_pattern2439,77143 -and_pattern(Pos,Pat) :-and_pattern2439,77143 -conj2list(Conj,L) :- %% transform conjunctions to listconj2list2444,77237 -conj2list(Conj,L) :- %% transform conjunctions to listconj2list2444,77237 -conj2list(Conj,L) :- %% transform conjunctions to listconj2list2444,77237 -conj2list(Conj,L,T) :-conj2list2447,77320 -conj2list(Conj,L,T) :-conj2list2447,77320 -conj2list(Conj,L,T) :-conj2list2447,77320 -conj2list(G,[G | T],T).conj2list2451,77408 -conj2list(G,[G | T],T).conj2list2451,77408 -list2conj([],true).list2conj2453,77433 -list2conj([],true).list2conj2453,77433 -list2conj([G],X) :- !, X = G.list2conj2454,77453 -list2conj([G],X) :- !, X = G.list2conj2454,77453 -list2conj([G],X) :- !, X = G.list2conj2454,77453 -list2conj([G|Gs],C) :-list2conj2455,77483 -list2conj([G|Gs],C) :-list2conj2455,77483 -list2conj([G|Gs],C) :-list2conj2455,77483 -atom_concat_list([X],X) :- ! .atom_concat_list2463,77613 -atom_concat_list([X],X) :- ! .atom_concat_list2463,77613 -atom_concat_list([X],X) :- ! .atom_concat_list2463,77613 -atom_concat_list([X|Xs],A) :-atom_concat_list2464,77644 -atom_concat_list([X|Xs],A) :-atom_concat_list2464,77644 -atom_concat_list([X|Xs],A) :-atom_concat_list2464,77644 -set_elems([],_).set_elems2468,77723 -set_elems([],_).set_elems2468,77723 -set_elems([X|Xs],X) :-set_elems2469,77740 -set_elems([X|Xs],X) :-set_elems2469,77740 -set_elems([X|Xs],X) :-set_elems2469,77740 -member2([X|_],[Y|_],X-Y).member22472,77782 -member2([X|_],[Y|_],X-Y).member22472,77782 -member2([_|Xs],[_|Ys],P) :-member22473,77808 -member2([_|Xs],[_|Ys],P) :-member22473,77808 -member2([_|Xs],[_|Ys],P) :-member22473,77808 -select2(X, Y, [X|Xs], [Y|Ys], Xs, Ys).select22476,77856 -select2(X, Y, [X|Xs], [Y|Ys], Xs, Ys).select22476,77856 -select2(X, Y, [X1|Xs], [Y1|Ys], [X1|NXs], [Y1|NYs]) :-select22477,77895 -select2(X, Y, [X1|Xs], [Y1|Ys], [X1|NXs], [Y1|NYs]) :-select22477,77895 -select2(X, Y, [X1|Xs], [Y1|Ys], [X1|NXs], [Y1|NYs]) :-select22477,77895 -pair_all_with([],_,[]).pair_all_with2480,77985 -pair_all_with([],_,[]).pair_all_with2480,77985 -pair_all_with([X|Xs],Y,[X-Y|Rest]) :-pair_all_with2481,78009 -pair_all_with([X|Xs],Y,[X-Y|Rest]) :-pair_all_with2481,78009 -pair_all_with([X|Xs],Y,[X-Y|Rest]) :-pair_all_with2481,78009 -default(X,Def) :-default2484,78075 -default(X,Def) :-default2484,78075 -default(X,Def) :-default2484,78075 -verbosity_on :- prolog_flag(verbose,V), V == yes.verbosity_on2490,78219 - -packages/chr/clean_code.pl,4795 -clean_clauses(Clauses,NClauses) :-clean_clauses49,1881 -clean_clauses(Clauses,NClauses) :-clean_clauses49,1881 -clean_clauses(Clauses,NClauses) :-clean_clauses49,1881 -clean_clauses1([],[]).clean_clauses163,2295 -clean_clauses1([],[]).clean_clauses163,2295 -clean_clauses1([C|Cs],[NC|NCs]) :-clean_clauses164,2318 -clean_clauses1([C|Cs],[NC|NCs]) :-clean_clauses164,2318 -clean_clauses1([C|Cs],[NC|NCs]) :-clean_clauses164,2318 -clean_clause(Clause,NClause) :-clean_clause68,2400 -clean_clause(Clause,NClause) :-clean_clause68,2400 -clean_clause(Clause,NClause) :-clean_clause68,2400 -clean_goal(Goal,NGoal) :-clean_goal84,2810 -clean_goal(Goal,NGoal) :-clean_goal84,2810 -clean_goal(Goal,NGoal) :-clean_goal84,2810 -clean_goal((G1,G2),NGoal) :-clean_goal87,2866 -clean_goal((G1,G2),NGoal) :-clean_goal87,2866 -clean_goal((G1,G2),NGoal) :-clean_goal87,2866 -clean_goal((If -> Then ; Else),NGoal) :-clean_goal98,3032 -clean_goal((If -> Then ; Else),NGoal) :-clean_goal98,3032 -clean_goal((If -> Then ; Else),NGoal) :-clean_goal98,3032 -clean_goal((G1 ; G2),NGoal) :-clean_goal112,3309 -clean_goal((G1 ; G2),NGoal) :-clean_goal112,3309 -clean_goal((G1 ; G2),NGoal) :-clean_goal112,3309 -clean_goal(once(G),NGoal) :-clean_goal123,3479 -clean_goal(once(G),NGoal) :-clean_goal123,3479 -clean_goal(once(G),NGoal) :-clean_goal123,3479 -clean_goal((G1 -> G2),NGoal) :-clean_goal133,3621 -clean_goal((G1 -> G2),NGoal) :-clean_goal133,3621 -clean_goal((G1 -> G2),NGoal) :-clean_goal133,3621 -clean_goal(Goal,Goal).clean_goal144,3804 -clean_goal(Goal,Goal).clean_goal144,3804 -move_unification_into_head(Head,Body,NHead,NBody) :-move_unification_into_head146,3908 -move_unification_into_head(Head,Body,NHead,NBody) :-move_unification_into_head146,3908 -move_unification_into_head(Head,Body,NHead,NBody) :-move_unification_into_head146,3908 -move_unification_into_head_([],Head,Head,true).move_unification_into_head_150,4046 -move_unification_into_head_([],Head,Head,true).move_unification_into_head_150,4046 -move_unification_into_head_([G|Gs],Head,NHead,NBody) :-move_unification_into_head_151,4094 -move_unification_into_head_([G|Gs],Head,NHead,NBody) :-move_unification_into_head_151,4094 -move_unification_into_head_([G|Gs],Head,NHead,NBody) :-move_unification_into_head_151,4094 -conj2list(Conj,L) :- %% transform conjunctions to listconj2list170,4546 -conj2list(Conj,L) :- %% transform conjunctions to listconj2list170,4546 -conj2list(Conj,L) :- %% transform conjunctions to listconj2list170,4546 -conj2list(G,L,T) :-conj2list173,4629 -conj2list(G,L,T) :-conj2list173,4629 -conj2list(G,L,T) :-conj2list173,4629 -conj2list(true,L,L) :- !.conj2list176,4673 -conj2list(true,L,L) :- !.conj2list176,4673 -conj2list(true,L,L) :- !.conj2list176,4673 -conj2list(Conj,L,T) :-conj2list177,4699 -conj2list(Conj,L,T) :-conj2list177,4699 -conj2list(Conj,L,T) :-conj2list177,4699 -conj2list(G,[G | T],T).conj2list181,4787 -conj2list(G,[G | T],T).conj2list181,4787 -list2conj([],true).list2conj183,4812 -list2conj([],true).list2conj183,4812 -list2conj([G],X) :- !, X = G.list2conj184,4832 -list2conj([G],X) :- !, X = G.list2conj184,4832 -list2conj([G],X) :- !, X = G.list2conj184,4832 -list2conj([G|Gs],C) :-list2conj185,4862 -list2conj([G|Gs],C) :-list2conj185,4862 -list2conj([G|Gs],C) :-list2conj185,4862 -merge_clauses([],[]).merge_clauses202,5305 -merge_clauses([],[]).merge_clauses202,5305 -merge_clauses([C],[C]).merge_clauses203,5327 -merge_clauses([C],[C]).merge_clauses203,5327 -merge_clauses([X,Y|Clauses],NClauses) :-merge_clauses204,5351 -merge_clauses([X,Y|Clauses],NClauses) :-merge_clauses204,5351 -merge_clauses([X,Y|Clauses],NClauses) :-merge_clauses204,5351 -merge_two_clauses((H1 :- B1), (H2 :- B2), (H :- B)) :-merge_two_clauses217,5720 -merge_two_clauses((H1 :- B1), (H2 :- B2), (H :- B)) :-merge_two_clauses217,5720 -merge_two_clauses((H1 :- B1), (H2 :- B2), (H :- B)) :-merge_two_clauses217,5720 -merge_lists([],[],_,_,true,[],[],[]).merge_lists235,6081 -merge_lists([],[],_,_,true,[],[],[]).merge_lists235,6081 -merge_lists([],L2,_,_,true,[],[],L2).merge_lists236,6119 -merge_lists([],L2,_,_,true,[],[],L2).merge_lists236,6119 -merge_lists([!|Xs],_,_,_,true,[!|Xs],[],!) :- !.merge_lists237,6157 -merge_lists([!|Xs],_,_,_,true,[!|Xs],[],!) :- !.merge_lists237,6157 -merge_lists([!|Xs],_,_,_,true,[!|Xs],[],!) :- !.merge_lists237,6157 -merge_lists([X|Xs],[],_,_,true,[],[X|Xs],[]).merge_lists238,6206 -merge_lists([X|Xs],[],_,_,true,[],[X|Xs],[]).merge_lists238,6206 -merge_lists([X|Xs],[Y|Ys],H1,H2,Unifier,Common,N1,N2) :-merge_lists239,6252 -merge_lists([X|Xs],[Y|Ys],H1,H2,Unifier,Common,N1,N2) :-merge_lists239,6252 -merge_lists([X|Xs],[Y|Ys],H1,H2,Unifier,Common,N1,N2) :-merge_lists239,6252 - -packages/chr/Examples/deadcode.pl,11586 -live(P), calls(P,Q) ==> live(Q).live49,1732 -live(P), calls(P,Q) ==> live(Q).live49,1732 -deadcode(File,Starts) :-deadcode59,2093 -deadcode(File,Starts) :-deadcode59,2093 -deadcode(File,Starts) :-deadcode59,2093 -exported_predicates(Clauses,Exports) :-exported_predicates68,2351 -exported_predicates(Clauses,Exports) :-exported_predicates68,2351 -exported_predicates(Clauses,Exports) :-exported_predicates68,2351 -process_clauses([]).process_clauses74,2468 -process_clauses([]).process_clauses74,2468 -process_clauses([C|Cs]) :-process_clauses75,2489 -process_clauses([C|Cs]) :-process_clauses75,2489 -process_clauses([C|Cs]) :-process_clauses75,2489 -calls_predicates([],FA).calls_predicates83,2650 -calls_predicates([],FA).calls_predicates83,2650 -calls_predicates([P|Ps],FA) :-calls_predicates84,2675 -calls_predicates([P|Ps],FA) :-calls_predicates84,2675 -calls_predicates([P|Ps],FA) :-calls_predicates84,2675 -hb(C,H,B) :-hb88,2747 -hb(C,H,B) :-hb88,2747 -hb(C,H,B) :-hb88,2747 -live_predicates([]).live_predicates96,2814 -live_predicates([]).live_predicates96,2814 -live_predicates([P|Ps]) :-live_predicates97,2835 -live_predicates([P|Ps]) :-live_predicates97,2835 -live_predicates([P|Ps]) :-live_predicates97,2835 -extract_predicates(!,L,L) :- ! .extract_predicates102,2976 -extract_predicates(!,L,L) :- ! .extract_predicates102,2976 -extract_predicates(!,L,L) :- ! .extract_predicates102,2976 -extract_predicates(_ < _,L,L) :- ! .extract_predicates103,3009 -extract_predicates(_ < _,L,L) :- ! .extract_predicates103,3009 -extract_predicates(_ < _,L,L) :- ! .extract_predicates103,3009 -extract_predicates(_ = _,L,L) :- ! .extract_predicates104,3046 -extract_predicates(_ = _,L,L) :- ! .extract_predicates104,3046 -extract_predicates(_ = _,L,L) :- ! .extract_predicates104,3046 -extract_predicates(_ =.. _ ,L,L) :- ! .extract_predicates105,3083 -extract_predicates(_ =.. _ ,L,L) :- ! .extract_predicates105,3083 -extract_predicates(_ =.. _ ,L,L) :- ! .extract_predicates105,3083 -extract_predicates(_ =:= _,L,L) :- ! .extract_predicates106,3123 -extract_predicates(_ =:= _,L,L) :- ! .extract_predicates106,3123 -extract_predicates(_ =:= _,L,L) :- ! .extract_predicates106,3123 -extract_predicates(_ == _,L,L) :- ! .extract_predicates107,3162 -extract_predicates(_ == _,L,L) :- ! .extract_predicates107,3162 -extract_predicates(_ == _,L,L) :- ! .extract_predicates107,3162 -extract_predicates(_ > _,L,L) :- ! .extract_predicates108,3200 -extract_predicates(_ > _,L,L) :- ! .extract_predicates108,3200 -extract_predicates(_ > _,L,L) :- ! .extract_predicates108,3200 -extract_predicates(_ \= _,L,L) :- ! .extract_predicates109,3237 -extract_predicates(_ \= _,L,L) :- ! .extract_predicates109,3237 -extract_predicates(_ \= _,L,L) :- ! .extract_predicates109,3237 -extract_predicates(_ \== _,L,L) :- ! .extract_predicates110,3275 -extract_predicates(_ \== _,L,L) :- ! .extract_predicates110,3275 -extract_predicates(_ \== _,L,L) :- ! .extract_predicates110,3275 -extract_predicates(_ is _,L,L) :- ! .extract_predicates111,3314 -extract_predicates(_ is _,L,L) :- ! .extract_predicates111,3314 -extract_predicates(_ is _,L,L) :- ! .extract_predicates111,3314 -extract_predicates(arg(_,_,_),L,L) :- ! .extract_predicates112,3352 -extract_predicates(arg(_,_,_),L,L) :- ! .extract_predicates112,3352 -extract_predicates(arg(_,_,_),L,L) :- ! .extract_predicates112,3352 -extract_predicates(atom_concat(_,_,_),L,L) :- ! .extract_predicates113,3394 -extract_predicates(atom_concat(_,_,_),L,L) :- ! .extract_predicates113,3394 -extract_predicates(atom_concat(_,_,_),L,L) :- ! .extract_predicates113,3394 -extract_predicates(atomic(_),L,L) :- ! .extract_predicates114,3444 -extract_predicates(atomic(_),L,L) :- ! .extract_predicates114,3444 -extract_predicates(atomic(_),L,L) :- ! .extract_predicates114,3444 -extract_predicates(b_getval(_,_),L,L) :- ! .extract_predicates115,3485 -extract_predicates(b_getval(_,_),L,L) :- ! .extract_predicates115,3485 -extract_predicates(b_getval(_,_),L,L) :- ! .extract_predicates115,3485 -extract_predicates(call(_),L,L) :- ! .extract_predicates116,3530 -extract_predicates(call(_),L,L) :- ! .extract_predicates116,3530 -extract_predicates(call(_),L,L) :- ! .extract_predicates116,3530 -extract_predicates(compound(_),L,L) :- ! .extract_predicates117,3569 -extract_predicates(compound(_),L,L) :- ! .extract_predicates117,3569 -extract_predicates(compound(_),L,L) :- ! .extract_predicates117,3569 -extract_predicates(copy_term(_,_),L,L) :- ! .extract_predicates118,3612 -extract_predicates(copy_term(_,_),L,L) :- ! .extract_predicates118,3612 -extract_predicates(copy_term(_,_),L,L) :- ! .extract_predicates118,3612 -extract_predicates(del_attr(_,_),L,L) :- ! .extract_predicates119,3658 -extract_predicates(del_attr(_,_),L,L) :- ! .extract_predicates119,3658 -extract_predicates(del_attr(_,_),L,L) :- ! .extract_predicates119,3658 -extract_predicates(fail,L,L) :- ! .extract_predicates120,3703 -extract_predicates(fail,L,L) :- ! .extract_predicates120,3703 -extract_predicates(fail,L,L) :- ! .extract_predicates120,3703 -extract_predicates(functor(_,_,_),L,L) :- ! .extract_predicates121,3739 -extract_predicates(functor(_,_,_),L,L) :- ! .extract_predicates121,3739 -extract_predicates(functor(_,_,_),L,L) :- ! .extract_predicates121,3739 -extract_predicates(get_attr(_,_,_),L,L) :- ! .extract_predicates122,3785 -extract_predicates(get_attr(_,_,_),L,L) :- ! .extract_predicates122,3785 -extract_predicates(get_attr(_,_,_),L,L) :- ! .extract_predicates122,3785 -extract_predicates(length(_,_),L,L) :- ! .extract_predicates123,3832 -extract_predicates(length(_,_),L,L) :- ! .extract_predicates123,3832 -extract_predicates(length(_,_),L,L) :- ! .extract_predicates123,3832 -extract_predicates(nb_setval(_,_),L,L) :- ! .extract_predicates124,3875 -extract_predicates(nb_setval(_,_),L,L) :- ! .extract_predicates124,3875 -extract_predicates(nb_setval(_,_),L,L) :- ! .extract_predicates124,3875 -extract_predicates(nl,L,L) :- ! .extract_predicates125,3921 -extract_predicates(nl,L,L) :- ! .extract_predicates125,3921 -extract_predicates(nl,L,L) :- ! .extract_predicates125,3921 -extract_predicates(nonvar(_),L,L) :- ! .extract_predicates126,3955 -extract_predicates(nonvar(_),L,L) :- ! .extract_predicates126,3955 -extract_predicates(nonvar(_),L,L) :- ! .extract_predicates126,3955 -extract_predicates(once(G),L,T) :- !,extract_predicates127,3996 -extract_predicates(once(G),L,T) :- !,extract_predicates127,3996 -extract_predicates(once(G),L,T) :- !,extract_predicates127,3996 -extract_predicates(op(_,_,_),L,L) :- ! .extract_predicates133,4093 -extract_predicates(op(_,_,_),L,L) :- ! .extract_predicates133,4093 -extract_predicates(op(_,_,_),L,L) :- ! .extract_predicates133,4093 -extract_predicates(prolog_flag(_,_),L,L) :- ! .extract_predicates134,4134 -extract_predicates(prolog_flag(_,_),L,L) :- ! .extract_predicates134,4134 -extract_predicates(prolog_flag(_,_),L,L) :- ! .extract_predicates134,4134 -extract_predicates(prolog_flag(_,_,_),L,L) :- ! .extract_predicates135,4182 -extract_predicates(prolog_flag(_,_,_),L,L) :- ! .extract_predicates135,4182 -extract_predicates(prolog_flag(_,_,_),L,L) :- ! .extract_predicates135,4182 -extract_predicates(put_attr(_,_,_),L,L) :- ! .extract_predicates136,4232 -extract_predicates(put_attr(_,_,_),L,L) :- ! .extract_predicates136,4232 -extract_predicates(put_attr(_,_,_),L,L) :- ! .extract_predicates136,4232 -extract_predicates(read(_),L,L) :- ! .extract_predicates137,4279 -extract_predicates(read(_),L,L) :- ! .extract_predicates137,4279 -extract_predicates(read(_),L,L) :- ! .extract_predicates137,4279 -extract_predicates(see(_),L,L) :- ! .extract_predicates138,4318 -extract_predicates(see(_),L,L) :- ! .extract_predicates138,4318 -extract_predicates(see(_),L,L) :- ! .extract_predicates138,4318 -extract_predicates(seen,L,L) :- ! .extract_predicates139,4356 -extract_predicates(seen,L,L) :- ! .extract_predicates139,4356 -extract_predicates(seen,L,L) :- ! .extract_predicates139,4356 -extract_predicates(setarg(_,_,_),L,L) :- ! .extract_predicates140,4392 -extract_predicates(setarg(_,_,_),L,L) :- ! .extract_predicates140,4392 -extract_predicates(setarg(_,_,_),L,L) :- ! .extract_predicates140,4392 -extract_predicates(tell(_),L,L) :- ! .extract_predicates141,4437 -extract_predicates(tell(_),L,L) :- ! .extract_predicates141,4437 -extract_predicates(tell(_),L,L) :- ! .extract_predicates141,4437 -extract_predicates(term_variables(_,_),L,L) :- ! .extract_predicates142,4476 -extract_predicates(term_variables(_,_),L,L) :- ! .extract_predicates142,4476 -extract_predicates(term_variables(_,_),L,L) :- ! .extract_predicates142,4476 -extract_predicates(told,L,L) :- ! .extract_predicates143,4527 -extract_predicates(told,L,L) :- ! .extract_predicates143,4527 -extract_predicates(told,L,L) :- ! .extract_predicates143,4527 -extract_predicates(true,L,L) :- ! .extract_predicates144,4563 -extract_predicates(true,L,L) :- ! .extract_predicates144,4563 -extract_predicates(true,L,L) :- ! .extract_predicates144,4563 -extract_predicates(var(_),L,L) :- ! .extract_predicates145,4599 -extract_predicates(var(_),L,L) :- ! .extract_predicates145,4599 -extract_predicates(var(_),L,L) :- ! .extract_predicates145,4599 -extract_predicates(write(_),L,L) :- ! .extract_predicates146,4637 -extract_predicates(write(_),L,L) :- ! .extract_predicates146,4637 -extract_predicates(write(_),L,L) :- ! .extract_predicates146,4637 -extract_predicates((G1,G2),L,T) :- ! ,extract_predicates147,4677 -extract_predicates((G1,G2),L,T) :- ! ,extract_predicates147,4677 -extract_predicates((G1,G2),L,T) :- ! ,extract_predicates147,4677 -extract_predicates((G1->G2),L,T) :- !,extract_predicates150,4776 -extract_predicates((G1->G2),L,T) :- !,extract_predicates150,4776 -extract_predicates((G1->G2),L,T) :- !,extract_predicates150,4776 -extract_predicates((G1;G2),L,T) :- !,extract_predicates153,4875 -extract_predicates((G1;G2),L,T) :- !,extract_predicates153,4875 -extract_predicates((G1;G2),L,T) :- !,extract_predicates153,4875 -extract_predicates(\+ G, L, T) :- !,extract_predicates156,4973 -extract_predicates(\+ G, L, T) :- !,extract_predicates156,4973 -extract_predicates(\+ G, L, T) :- !,extract_predicates156,4973 -extract_predicates(findall(_,G,_),L,T) :- !,extract_predicates158,5040 -extract_predicates(findall(_,G,_),L,T) :- !,extract_predicates158,5040 -extract_predicates(findall(_,G,_),L,T) :- !,extract_predicates158,5040 -extract_predicates(bagof(_,G,_),L,T) :- !,extract_predicates160,5113 -extract_predicates(bagof(_,G,_),L,T) :- !,extract_predicates160,5113 -extract_predicates(bagof(_,G,_),L,T) :- !,extract_predicates160,5113 -extract_predicates(_^G,L,T) :- !,extract_predicates162,5184 -extract_predicates(_^G,L,T) :- !,extract_predicates162,5184 -extract_predicates(_^G,L,T) :- !,extract_predicates162,5184 -extract_predicates(_:Call,L,T) :- !,extract_predicates164,5246 -extract_predicates(_:Call,L,T) :- !,extract_predicates164,5246 -extract_predicates(_:Call,L,T) :- !,extract_predicates164,5246 -extract_predicates(Call,L,T) :-extract_predicates166,5314 -extract_predicates(Call,L,T) :-extract_predicates166,5314 -extract_predicates(Call,L,T) :-extract_predicates166,5314 -readfile(File,Declarations) :-readfile178,5514 -readfile(File,Declarations) :-readfile178,5514 -readfile(File,Declarations) :-readfile178,5514 -readcontent(C) :-readcontent183,5593 -readcontent(C) :-readcontent183,5593 -readcontent(C) :-readcontent183,5593 - -packages/chr/find.pl,1002 -find_with_var_identity(Template, IdVars, Goal, Answers) :-find_with_var_identity51,1739 -find_with_var_identity(Template, IdVars, Goal, Answers) :-find_with_var_identity51,1739 -find_with_var_identity(Template, IdVars, Goal, Answers) :-find_with_var_identity51,1739 -smash([],_,[]).smash57,1959 -smash([],_,[]).smash57,1959 -smash([Key-T|R],Key,[T|NR]) :- smash(R,Key,NR).smash58,1975 -smash([Key-T|R],Key,[T|NR]) :- smash(R,Key,NR).smash58,1975 -smash([Key-T|R],Key,[T|NR]) :- smash(R,Key,NR).smash58,1975 -smash([Key-T|R],Key,[T|NR]) :- smash(R,Key,NR).smash58,1975 -smash([Key-T|R],Key,[T|NR]) :- smash(R,Key,NR).smash58,1975 -forall(X,L,G) :-forall61,2105 -forall(X,L,G) :-forall61,2105 -forall(X,L,G) :-forall61,2105 -forsome(X,L,G) :-forsome65,2235 -forsome(X,L,G) :-forsome65,2235 -forsome(X,L,G) :-forsome65,2235 -user:goal_expansion(forall(Element,List,Test), GoalOut) :-goal_expansion75,2435 -user:goal_expansion(forall(Element,List,Test), GoalOut) :-goal_expansion75,2435 - -packages/chr/install-sh,1398 -if [ x"$src" = x ]x95,1687 - dst=$srcdst104,1805 - instcmd=:instcmd108,1847 -defaultIFS=' defaultIFS153,2795 - pathcomp="${pathcomp}/"pathcomp176,3139 - if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&$dst184,3227 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&x185,3299 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&$dst185,3299 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&x186,3371 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&$dst186,3371 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fix187,3443 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi$dst187,3443 - if [ x"$transformarg" = x ] x192,3592 - if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&$dsttmp225,4337 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&x226,4410 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&$dsttmp226,4410 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&x227,4483 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&$dsttmp227,4483 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&x228,4556 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&$dsttmp228,4556 - -packages/chr/listmap.pl,992 -listmap_empty([]).listmap_empty41,1494 -listmap_empty([]).listmap_empty41,1494 -listmap_lookup([K-V|R],Key,Q) :-listmap_lookup43,1514 -listmap_lookup([K-V|R],Key,Q) :-listmap_lookup43,1514 -listmap_lookup([K-V|R],Key,Q) :-listmap_lookup43,1514 -listmap_insert([],Key,Value,[Key-Value]).listmap_insert51,1616 -listmap_insert([],Key,Value,[Key-Value]).listmap_insert51,1616 -listmap_insert([P|R],Key,Value,ML) :-listmap_insert52,1658 -listmap_insert([P|R],Key,Value,ML) :-listmap_insert52,1658 -listmap_insert([P|R],Key,Value,ML) :-listmap_insert52,1658 -listmap_merge(ML1,ML2,F,G,ML) :-listmap_merge64,1857 -listmap_merge(ML1,ML2,F,G,ML) :-listmap_merge64,1857 -listmap_merge(ML1,ML2,F,G,ML) :-listmap_merge64,1857 -listmap_remove([],_,[]).listmap_remove92,2358 -listmap_remove([],_,[]).listmap_remove92,2358 -listmap_remove([P|R],Key,NLM) :-listmap_remove93,2383 -listmap_remove([P|R],Key,NLM) :-listmap_remove93,2383 -listmap_remove([P|R],Key,NLM) :-listmap_remove93,2383 - -packages/chr/Makefile.mak,403 -PLHOME=..\..PLHOME10,266 -CFLAGS=$(CFLAGS) /D__SWI_PROLOG__CFLAGS12,311 -LIBDIR=$(PLBASE)\libraryLIBDIR13,345 -EXDIR=$(PKGDOC)\examples\chrEXDIR14,370 -CHR=$(LIBDIR)\chrCHR15,399 -PL="$(PLHOME)\bin\swipl.exe"PL16,417 -LIBPL= chr_runtime.pl chr_op.pl chr_translate.pl chr_debug.pl \LIBPL18,447 -CHRPL= chr_swi.plCHRPL25,784 -EXAMPLES= chrfreeze.chr fib.chr gcd.chr primes.chr \EXAMPLES26,803 - -packages/chr/pairlist.pl,1932 -fst_of_pairs([],[]).fst_of_pairs23,470 -fst_of_pairs([],[]).fst_of_pairs23,470 -fst_of_pairs([X-_|XYs],[X|Xs]) :-fst_of_pairs24,491 -fst_of_pairs([X-_|XYs],[X|Xs]) :-fst_of_pairs24,491 -fst_of_pairs([X-_|XYs],[X|Xs]) :-fst_of_pairs24,491 -snd_of_pairs([],[]).snd_of_pairs27,549 -snd_of_pairs([],[]).snd_of_pairs27,549 -snd_of_pairs([_-Y|XYs],[Y|Ys]) :-snd_of_pairs28,570 -snd_of_pairs([_-Y|XYs],[Y|Ys]) :-snd_of_pairs28,570 -snd_of_pairs([_-Y|XYs],[Y|Ys]) :-snd_of_pairs28,570 -pairup([],[],[]).pairup31,628 -pairup([],[],[]).pairup31,628 -pairup([X|Xs],[Y|Ys],[X-Y|XYs]) :-pairup32,646 -pairup([X|Xs],[Y|Ys],[X-Y|XYs]) :-pairup32,646 -pairup([X|Xs],[Y|Ys],[X-Y|XYs]) :-pairup32,646 -lookup([K - V | KVs],Key,Value) :-lookup35,702 -lookup([K - V | KVs],Key,Value) :-lookup35,702 -lookup([K - V | KVs],Key,Value) :-lookup35,702 -lookup_any([K - V | KVs],Key,Value) :-lookup_any42,795 -lookup_any([K - V | KVs],Key,Value) :-lookup_any42,795 -lookup_any([K - V | KVs],Key,Value) :-lookup_any42,795 -lookup_eq([K - V | KVs],Key,Value) :-lookup_eq50,896 -lookup_eq([K - V | KVs],Key,Value) :-lookup_eq50,896 -lookup_eq([K - V | KVs],Key,Value) :-lookup_eq50,896 -lookup_any_eq([K - V | KVs],Key,Value) :-lookup_any_eq57,996 -lookup_any_eq([K - V | KVs],Key,Value) :-lookup_any_eq57,996 -lookup_any_eq([K - V | KVs],Key,Value) :-lookup_any_eq57,996 -translate([],_,[]).translate65,1104 -translate([],_,[]).translate65,1104 -translate([X|Xs],Dict,[Y|Ys]) :-translate66,1124 -translate([X|Xs],Dict,[Y|Ys]) :-translate66,1124 -translate([X|Xs],Dict,[Y|Ys]) :-translate66,1124 -pairlist_delete_eq([], _, []).pairlist_delete_eq70,1204 -pairlist_delete_eq([], _, []).pairlist_delete_eq70,1204 -pairlist_delete_eq([K - V| KVs], Key, PL) :-pairlist_delete_eq71,1235 -pairlist_delete_eq([K - V| KVs], Key, PL) :-pairlist_delete_eq71,1235 -pairlist_delete_eq([K - V| KVs], Key, PL) :-pairlist_delete_eq71,1235 - -packages/chr/README,0 - -packages/clp_examples/3jugs.yap,796 -main :-main20,499 -problem(Z, X, InFlow, OutFlow, N) :-problem26,589 -problem(Z, X, InFlow, OutFlow, N) :-problem26,589 -problem(Z, X, InFlow, OutFlow, N) :-problem26,589 -out(Cost, Ts, Ins, Out, N) :-out114,3001 -out(Cost, Ts, Ins, Out, N) :-out114,3001 -out(Cost, Ts, Ins, Out, N) :-out114,3001 -outl( X ) :-outl123,3275 -outl( X ) :-outl123,3275 -outl( X ) :-outl123,3275 -out(0) :- format(' .', []).out128,3384 -out(0) :- format(' .', []).out128,3384 -out(0) :- format(' .', []).out128,3384 -out(0) :- format(' .', []).out128,3384 -out(0) :- format(' .', []).out128,3384 -out(1) :- format(' 1', []).out129,3412 -out(1) :- format(' 1', []).out129,3412 -out(1) :- format(' 1', []).out129,3412 -out(1) :- format(' 1', []).out129,3412 -out(1) :- format(' 1', []).out129,3412 - -packages/clp_examples/photo.yap,745 -main :- ex(Ex, People, Names, _Preferences),main22,955 -join( Key, El, Key-El ).join32,1263 -join( Key, El, Key-El ).join32,1263 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -photo(Ex, People, Amount) :-photo37,1409 -photo(Ex, People, Amount) :-photo37,1409 -photo(Ex, People, Amount) :-photo37,1409 -preference_satisfied(X-Y, B) :-preference_satisfied53,1821 -preference_satisfied(X-Y, B) :-preference_satisfied53,1821 -preference_satisfied(X-Y, B) :-preference_satisfied53,1821 - -packages/clp_examples/queens.yap,785 -main :-main5,73 -queens(N, Queens) :-queens17,352 -queens(N, Queens) :-queens17,352 -queens(N, Queens) :-queens17,352 -inc(_, I0, I0, I) :-inc27,615 -inc(_, I0, I0, I) :-inc27,615 -inc(_, I0, I0, I) :-inc27,615 -dec(_, I0, I0, I) :-dec30,649 -dec(_, I0, I0, I) :-dec30,649 -dec(_, I0, I0, I) :-dec30,649 -lqueens(N, Queens) :-lqueens33,683 -lqueens(N, Queens) :-lqueens33,683 -lqueens(N, Queens) :-lqueens33,683 -lconstrain([], _).lconstrain40,816 -lconstrain([], _).lconstrain40,816 -lconstrain( [Q|Queens], I0) :-lconstrain41,835 -lconstrain( [Q|Queens], I0) :-lconstrain41,835 -lconstrain( [Q|Queens], I0) :-lconstrain41,835 -constrain(Q, I, R, J, J1) :-constrain46,944 -constrain(Q, I, R, J, J1) :-constrain46,944 -constrain(Q, I, R, J, J1) :-constrain46,944 - -packages/clp_examples/send_more_money.yap,176 -main :-main21,946 -send_more_money(Letters) :-send_more_money35,1258 -send_more_money(Letters) :-send_more_money35,1258 -send_more_money(Letters) :-send_more_money35,1258 - -packages/clp_examples/send_most_money.yap,197 -main :-main22,947 -send_most_money(Letters, Money) :-send_most_money36,1316 -send_most_money(Letters, Money) :-send_most_money36,1316 -send_most_money(Letters, Money) :-send_most_money36,1316 - -packages/clp_examples/sudoku.yap,653 -main :-main8,96 -sudoku( Ex, Els ) :-sudoku14,154 -sudoku( Ex, Els ) :-sudoku14,154 -sudoku( Ex, Els ) :-sudoku14,154 -problem(Ex, Els) :-problem21,234 -problem(Ex, Els) :-problem21,234 -problem(Ex, Els) :-problem21,234 -bound(El, X) :-bound39,716 -bound(El, X) :-bound39,716 -bound(El, X) :-bound39,716 -output(Els) :-output45,801 -output(Els) :-output45,801 -output(Els) :-output45,801 -output(M, I) :-output50,904 -output(M, I) :-output50,904 -output(M, I) :-output50,904 -output_row( M, Row ) :-output_row54,981 -output_row( M, Row ) :-output_row54,981 -output_row( M, Row ) :-output_row54,981 -output_line :-output_line58,1075 - -packages/clp_examples/test.yap,1586 -t0 :-t07,97 -test0(X) :-test011,128 -test0(X) :-test011,128 -test0(X) :-test011,128 -t1 :-t115,163 -test1(X) :-test121,205 -test1(X) :-test121,205 -test1(X) :-test121,205 -t2 :-t228,288 -test2(X) :-test234,331 -test2(X) :-test234,331 -test2(X) :-test234,331 -t3 :-t339,390 -test3(A) :-test346,434 -test3(A) :-test346,434 -test3(A) :-test346,434 -t4 :-t454,541 -test4(A) :-test460,583 -test4(A) :-test460,583 -test4(A) :-test460,583 -t5 :-t570,711 -test5(A) :-test576,753 -test5(A) :-test576,753 -test5(A) :-test576,753 -t6 :-t683,868 -test6(A+B) :-test689,910 -test6(A+B) :-test689,910 -test6(A+B) :-test689,910 -t7 :-t7103,1150 -test7(A) :-test7109,1192 -test7(A) :-test7109,1192 -test7(A) :-test7109,1192 -t8 :-t8116,1322 -test8(A+B) :-test8123,1365 -test8(A+B) :-test8123,1365 -test8(A+B) :-test8123,1365 -t9 :-t9137,1605 -test9(X) :-test9144,1663 -test9(X) :-test9144,1663 -test9(X) :-test9144,1663 -t10 :-t10152,1804 -test10(X) :-test10159,1865 -test10(X) :-test10159,1865 -test10(X) :-test10159,1865 -t11 :-t11171,2105 -test11(X) :-test11177,2150 -test11(X) :-test11177,2150 -test11(X) :-test11177,2150 -t12 :-t12183,2219 -test12(X) :-test12189,2264 -test12(X) :-test12189,2264 -test12(X) :-test12189,2264 -t13 :-t13195,2345 -test13(X) :-test13201,2390 -test13(X) :-test13201,2390 -test13(X) :-test13201,2390 -t14 :-t14208,2491 -test14(X) :-test14214,2536 -test14(X) :-test14214,2536 -test14(X) :-test14214,2536 -t15 :-t15221,2635 -test15(X) :-test15227,2680 -test15(X) :-test15227,2680 -test15(X) :-test15227,2680 - -packages/CLPBN/benchmarks/benchs.sh,175 -function prepare_new_runprepare_new_run2,1 -function run_solverrun_solver17,202 -function clear_log_filesclear_log_files51,1044 -function write_headerwrite_header70,1622 - -packages/CLPBN/benchmarks/city/bp_tests.sh,44 -function run_all_graphsrun_all_graphs8,62 - -packages/CLPBN/benchmarks/city/cbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,63 - -packages/CLPBN/benchmarks/city/city.sh,0 - -packages/CLPBN/benchmarks/city/gen_city.sh,0 - -packages/CLPBN/benchmarks/city/hve_tests.sh,44 -function run_all_graphsrun_all_graphs8,63 - -packages/CLPBN/benchmarks/city/lbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,63 - -packages/CLPBN/benchmarks/city/lve_tests.sh,44 -function run_all_graphsrun_all_graphs8,63 - -packages/CLPBN/benchmarks/comp_workshops/bp_tests.sh,44 -function run_all_graphsrun_all_graphs8,60 - -packages/CLPBN/benchmarks/comp_workshops/cbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/comp_workshops/cw.sh,0 - -packages/CLPBN/benchmarks/comp_workshops/gen_workshops.sh,0 - -packages/CLPBN/benchmarks/comp_workshops/hve_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/comp_workshops/lbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/comp_workshops/lve_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/run_all.sh,0 - -packages/CLPBN/benchmarks/school/missing10.yap,0 - -packages/CLPBN/benchmarks/school/missing20.yap,0 - -packages/CLPBN/benchmarks/school/missing30.yap,0 - -packages/CLPBN/benchmarks/school/missing40.yap,0 - -packages/CLPBN/benchmarks/school/missing5.yap,0 - -packages/CLPBN/benchmarks/school/missing50.yap,0 - -packages/CLPBN/benchmarks/school/run_school_tests.sh,40 -function learn_paramslearn_params9,71 - -packages/CLPBN/benchmarks/social_network2/bp_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/social_network2/cbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,62 - -packages/CLPBN/benchmarks/social_network2/gen_people.sh,0 - -packages/CLPBN/benchmarks/social_network2/hve_tests.sh,44 -function run_all_graphsrun_all_graphs8,62 - -packages/CLPBN/benchmarks/social_network2/lbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,62 - -packages/CLPBN/benchmarks/social_network2/lve_tests.sh,44 -function run_all_graphsrun_all_graphs8,62 - -packages/CLPBN/benchmarks/social_network2/sn2.sh,0 - -packages/CLPBN/benchmarks/social_network2_evidence/bp_tests.sh,44 -function run_all_graphsrun_all_graphs8,63 - -packages/CLPBN/benchmarks/social_network2_evidence/cbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,64 - -packages/CLPBN/benchmarks/social_network2_evidence/gen_people.sh,0 - -packages/CLPBN/benchmarks/social_network2_evidence/hve_tests.sh,44 -function run_all_graphsrun_all_graphs8,64 - -packages/CLPBN/benchmarks/social_network2_evidence/lbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/social_network2_evidence/lve_tests.sh,44 -function run_all_graphsrun_all_graphs8,64 - -packages/CLPBN/benchmarks/social_network2_evidence/sn2ev.sh,0 - -packages/CLPBN/benchmarks/workshop_attrs/bp_tests.sh,44 -function run_all_graphsrun_all_graphs8,60 - -packages/CLPBN/benchmarks/workshop_attrs/cbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/workshop_attrs/gen_attrs.sh,0 - -packages/CLPBN/benchmarks/workshop_attrs/hve_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/workshop_attrs/lbp_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/workshop_attrs/lve_tests.sh,44 -function run_all_graphsrun_all_graphs8,61 - -packages/CLPBN/benchmarks/workshop_attrs/wa.sh,0 - -packages/CLPBN/clpbn/aggregates.yap,13888 -check_for_agg_vars([], []).check_for_agg_vars49,744 -check_for_agg_vars([], []).check_for_agg_vars49,744 -check_for_agg_vars([V|Vs0], [V|Vs1]) :-check_for_agg_vars50,772 -check_for_agg_vars([V|Vs0], [V|Vs1]) :-check_for_agg_vars50,772 -check_for_agg_vars([V|Vs0], [V|Vs1]) :-check_for_agg_vars50,772 -check_for_agg_vars([V|Vs0], [V|Vs1]) :-check_for_agg_vars54,941 -check_for_agg_vars([V|Vs0], [V|Vs1]) :-check_for_agg_vars54,941 -check_for_agg_vars([V|Vs0], [V|Vs1]) :-check_for_agg_vars54,941 -simplify_dist(avg(Domain), V, Key, Parents, Vs0, VsF) :- !,simplify_dist58,1058 -simplify_dist(avg(Domain), V, Key, Parents, Vs0, VsF) :- !,simplify_dist58,1058 -simplify_dist(avg(Domain), V, Key, Parents, Vs0, VsF) :- !,simplify_dist58,1058 -simplify_dist(_, _, _, _, Vs0, Vs0).simplify_dist63,1279 -simplify_dist(_, _, _, _, Vs0, Vs0).simplify_dist63,1279 -avg_factors(Key, Parents, _Smoothing, NewParents, Id) :-avg_factors66,1319 -avg_factors(Key, Parents, _Smoothing, NewParents, Id) :-avg_factors66,1319 -avg_factors(Key, Parents, _Smoothing, NewParents, Id) :-avg_factors66,1319 -query_evidence(Key, EvHash, MAT0, MAT, NewParents0, NewParents, Vs, IVs, NewVs) :-query_evidence76,1738 -query_evidence(Key, EvHash, MAT0, MAT, NewParents0, NewParents, Vs, IVs, NewVs) :-query_evidence76,1738 -query_evidence(Key, EvHash, MAT0, MAT, NewParents0, NewParents, Vs, IVs, NewVs) :-query_evidence76,1738 -query_evidence(_, _, MAT, MAT, NewParents, NewParents, _, Vs, Vs).query_evidence80,1988 -query_evidence(_, _, MAT, MAT, NewParents, NewParents, _, Vs, Vs).query_evidence80,1988 -hash_ev(K=V, Es0, Es) :-hash_ev82,2056 -hash_ev(K=V, Es0, Es) :-hash_ev82,2056 -hash_ev(K=V, Es0, Es) :-hash_ev82,2056 -find_ev(Ev, Key, RemKeys, RemKeys, Ev0, EvF) :-find_ev85,2113 -find_ev(Ev, Key, RemKeys, RemKeys, Ev0, EvF) :-find_ev85,2113 -find_ev(Ev, Key, RemKeys, RemKeys, Ev0, EvF) :-find_ev85,2113 -find_ev(_Evs, Key, RemKeys, [Key|RemKeys], Ev, Ev).find_ev88,2207 -find_ev(_Evs, Key, RemKeys, [Key|RemKeys], Ev, Ev).find_ev88,2207 -avg_table(Vars, OVars, Domain, Key, TotEvidence, Softness, Vars, Vs, Vs, Id) :-avg_table101,2422 -avg_table(Vars, OVars, Domain, Key, TotEvidence, Softness, Vars, Vs, Vs, Id) :-avg_table101,2422 -avg_table(Vars, OVars, Domain, Key, TotEvidence, Softness, Vars, Vs, Vs, Id) :-avg_table101,2422 -avg_table(Vars, OVars, Domain, Key, TotEvidence, Softness, [V1,V2], Vs, [V1,V2|NewVs], Id) :-avg_table110,2781 -avg_table(Vars, OVars, Domain, Key, TotEvidence, Softness, [V1,V2], Vs, [V1,V2|NewVs], Id) :-avg_table110,2781 -avg_table(Vars, OVars, Domain, Key, TotEvidence, Softness, [V1,V2], Vs, [V1,V2|NewVs], Id) :-avg_table110,2781 -intermediate_table(1,_,[V],V, _, _, I, I, Vs, Vs) :- !.intermediate_table123,3303 -intermediate_table(1,_,[V],V, _, _, I, I, Vs, Vs) :- !.intermediate_table123,3303 -intermediate_table(1,_,[V],V, _, _, I, I, Vs, Vs) :- !.intermediate_table123,3303 -intermediate_table(2, Op, [V1,V2], V, Key, Softness, I0, If, Vs, Vs) :- !,intermediate_table124,3359 -intermediate_table(2, Op, [V1,V2], V, Key, Softness, I0, If, Vs, Vs) :- !,intermediate_table124,3359 -intermediate_table(2, Op, [V1,V2], V, Key, Softness, I0, If, Vs, Vs) :- !,intermediate_table124,3359 -intermediate_table(N, Op, L, V, Key, Softness, I0, If, Vs, [V1,V2|NewVs]) :-intermediate_table127,3504 -intermediate_table(N, Op, L, V, Key, Softness, I0, If, Vs, [V1,V2|NewVs]) :-intermediate_table127,3504 -intermediate_table(N, Op, L, V, Key, Softness, I0, If, Vs, [V1,V2|NewVs]) :-intermediate_table127,3504 -extra_key_factor(sum(Min,Max), N, [V1,V2], V, Key, Softness, I) :-extra_key_factor136,3853 -extra_key_factor(sum(Min,Max), N, [V1,V2], V, Key, Softness, I) :-extra_key_factor136,3853 -extra_key_factor(sum(Min,Max), N, [V1,V2], V, Key, Softness, I) :-extra_key_factor136,3853 -cpt_average(AllVars, Key, Els0, Tab, Vs, NewVs) :-cpt_average146,4173 -cpt_average(AllVars, Key, Els0, Tab, Vs, NewVs) :-cpt_average146,4173 -cpt_average(AllVars, Key, Els0, Tab, Vs, NewVs) :-cpt_average146,4173 -cpt_average([Ev|Vars], Key, Els0, Softness, p(Els0, TAB, NewParents), Vs, NewVs) :-cpt_average150,4368 -cpt_average([Ev|Vars], Key, Els0, Softness, p(Els0, TAB, NewParents), Vs, NewVs) :-cpt_average150,4368 -cpt_average([Ev|Vars], Key, Els0, Softness, p(Els0, TAB, NewParents), Vs, NewVs) :-cpt_average150,4368 -find_evidence([], TotEvidence, TotEvidence, []).find_evidence157,4761 -find_evidence([], TotEvidence, TotEvidence, []).find_evidence157,4761 -find_evidence([V|Vars], TotEvidence0, TotEvidence, RVars) :-find_evidence158,4810 -find_evidence([V|Vars], TotEvidence0, TotEvidence, RVars) :-find_evidence158,4810 -find_evidence([V|Vars], TotEvidence0, TotEvidence, RVars) :-find_evidence158,4810 -find_evidence([V|Vars], TotEvidence0, TotEvidence, [V|RVars]) :-find_evidence162,4999 -find_evidence([V|Vars], TotEvidence0, TotEvidence, [V|RVars]) :-find_evidence162,4999 -find_evidence([V|Vars], TotEvidence0, TotEvidence, [V|RVars]) :-find_evidence162,4999 -cpt_max([_|Vars], Key, Els0, CPT, Vs, NewVs) :-cpt_max165,5121 -cpt_max([_|Vars], Key, Els0, CPT, Vs, NewVs) :-cpt_max165,5121 -cpt_max([_|Vars], Key, Els0, CPT, Vs, NewVs) :-cpt_max165,5121 -cpt_min([_|Vars], Key, Els0, CPT, Vs, NewVs) :-cpt_min168,5232 -cpt_min([_|Vars], Key, Els0, CPT, Vs, NewVs) :-cpt_min168,5232 -cpt_min([_|Vars], Key, Els0, CPT, Vs, NewVs) :-cpt_min168,5232 -build_avg_table(Vars, OVars, Domain, _, TotEvidence, Softness, CPT, Vars, Vs, Vs) :-build_avg_table171,5343 -build_avg_table(Vars, OVars, Domain, _, TotEvidence, Softness, CPT, Vars, Vs, Vs) :-build_avg_table171,5343 -build_avg_table(Vars, OVars, Domain, _, TotEvidence, Softness, CPT, Vars, Vs, Vs) :-build_avg_table171,5343 -build_avg_table(Vars, OVars, Domain, Key, TotEvidence, Softness, CPT, [V1,V2], Vs, [V1,V2|NewVs]) :-build_avg_table178,5623 -build_avg_table(Vars, OVars, Domain, Key, TotEvidence, Softness, CPT, [V1,V2], Vs, [V1,V2|NewVs]) :-build_avg_table178,5623 -build_avg_table(Vars, OVars, Domain, Key, TotEvidence, Softness, CPT, [V1,V2], Vs, [V1,V2|NewVs]) :-build_avg_table178,5623 -build_max_table(Vars, Domain, Softness, p(Domain, CPT, Vars), Vs, Vs) :-build_max_table189,6080 -build_max_table(Vars, Domain, Softness, p(Domain, CPT, Vars), Vs, Vs) :-build_max_table189,6080 -build_max_table(Vars, Domain, Softness, p(Domain, CPT, Vars), Vs, Vs) :-build_max_table189,6080 -build_max_table(Vars, Domain, Softness, p(Domain, CPT, [V1,V2]), Vs, [V1,V2|NewVs]) :-build_max_table196,6322 -build_max_table(Vars, Domain, Softness, p(Domain, CPT, [V1,V2]), Vs, [V1,V2|NewVs]) :-build_max_table196,6322 -build_max_table(Vars, Domain, Softness, p(Domain, CPT, [V1,V2]), Vs, [V1,V2|NewVs]) :-build_max_table196,6322 -build_min_table(Vars, Domain, Softness, p(Domain, CPT, Vars), Vs, Vs) :-build_min_table205,6700 -build_min_table(Vars, Domain, Softness, p(Domain, CPT, Vars), Vs, Vs) :-build_min_table205,6700 -build_min_table(Vars, Domain, Softness, p(Domain, CPT, Vars), Vs, Vs) :-build_min_table205,6700 -build_min_table(Vars, Domain, Softness, p(Domain, CPT, [V1,V2]), Vs, [V1,V2|NewVs]) :-build_min_table212,6942 -build_min_table(Vars, Domain, Softness, p(Domain, CPT, [V1,V2]), Vs, [V1,V2|NewVs]) :-build_min_table212,6942 -build_min_table(Vars, Domain, Softness, p(Domain, CPT, [V1,V2]), Vs, [V1,V2|NewVs]) :-build_min_table212,6942 -int_power([], _, TabSize, TabSize).int_power221,7320 -int_power([], _, TabSize, TabSize).int_power221,7320 -int_power([_|L], X, I0, TabSize) :-int_power222,7356 -int_power([_|L], X, I0, TabSize) :-int_power222,7356 -int_power([_|L], X, I0, TabSize) :-int_power222,7356 -build_intermediate_table(1,_,[V],V, _, _, I, I, Vs, Vs) :- !.build_intermediate_table226,7435 -build_intermediate_table(1,_,[V],V, _, _, I, I, Vs, Vs) :- !.build_intermediate_table226,7435 -build_intermediate_table(1,_,[V],V, _, _, I, I, Vs, Vs) :- !.build_intermediate_table226,7435 -build_intermediate_table(2, Op, [V1,V2], V, Key, Softness, I0, If, Vs, Vs) :- !,build_intermediate_table227,7497 -build_intermediate_table(2, Op, [V1,V2], V, Key, Softness, I0, If, Vs, Vs) :- !,build_intermediate_table227,7497 -build_intermediate_table(2, Op, [V1,V2], V, Key, Softness, I0, If, Vs, Vs) :- !,build_intermediate_table227,7497 -build_intermediate_table(N, Op, L, V, Key, Softness, I0, If, Vs, [V1,V2|NewVs]) :-build_intermediate_table230,7651 -build_intermediate_table(N, Op, L, V, Key, Softness, I0, If, Vs, [V1,V2|NewVs]) :-build_intermediate_table230,7651 -build_intermediate_table(N, Op, L, V, Key, Softness, I0, If, Vs, [V1,V2|NewVs]) :-build_intermediate_table230,7651 -generate_tmp_random(sum(Min,Max), N, [V1,V2], V, Key, Softness, I) :-generate_tmp_random240,8059 -generate_tmp_random(sum(Min,Max), N, [V1,V2], V, Key, Softness, I) :-generate_tmp_random240,8059 -generate_tmp_random(sum(Min,Max), N, [V1,V2], V, Key, Softness, I) :-generate_tmp_random240,8059 -generate_tmp_random(max(Domain,CPT), _, [V1,V2], V, Key, I) :-generate_tmp_random247,8336 -generate_tmp_random(max(Domain,CPT), _, [V1,V2], V, Key, I) :-generate_tmp_random247,8336 -generate_tmp_random(max(Domain,CPT), _, [V1,V2], V, Key, I) :-generate_tmp_random247,8336 -generate_tmp_random(min(Domain,CPT), _, [V1,V2], V, Key, I) :-generate_tmp_random249,8453 -generate_tmp_random(min(Domain,CPT), _, [V1,V2], V, Key, I) :-generate_tmp_random249,8453 -generate_tmp_random(min(Domain,CPT), _, [V1,V2], V, Key, I) :-generate_tmp_random249,8453 -generate_var(VKey, Domain, CPT, Parents, V) :-generate_var252,8571 -generate_var(VKey, Domain, CPT, Parents, V) :-generate_var252,8571 -generate_var(VKey, Domain, CPT, Parents, V) :-generate_var252,8571 -generate_list(M, M, [M]) :- !.generate_list255,8665 -generate_list(M, M, [M]) :- !.generate_list255,8665 -generate_list(M, M, [M]) :- !.generate_list255,8665 -generate_list(I, M, [I|Nbs]) :-generate_list256,8696 -generate_list(I, M, [I|Nbs]) :-generate_list256,8696 -generate_list(I, M, [I|Nbs]) :-generate_list256,8696 -list_split(0, L, [], L) :- !.list_split260,8769 -list_split(0, L, [], L) :- !.list_split260,8769 -list_split(0, L, [], L) :- !.list_split260,8769 -list_split(I, [H|L], [H|L1], L2) :-list_split261,8799 -list_split(I, [H|L], [H|L1], L2) :-list_split261,8799 -list_split(I, [H|L], [H|L1], L2) :-list_split261,8799 -include_qevidence(V, MAT0, MAT, NewParents0, NewParents, Vs, IVs, NewVs) :-include_qevidence268,8988 -include_qevidence(V, MAT0, MAT, NewParents0, NewParents, Vs, IVs, NewVs) :-include_qevidence268,8988 -include_qevidence(V, MAT0, MAT, NewParents0, NewParents, Vs, IVs, NewVs) :-include_qevidence268,8988 -include_qevidence(_, MAT, MAT, NewParents, NewParents, _, Vs, Vs).include_qevidence272,9233 -include_qevidence(_, MAT, MAT, NewParents, NewParents, _, Vs, Vs).include_qevidence272,9233 -check_consistency(L1, Ev, MAT0, MAT1, L1, MAT, NewParents0, NewParents, Vs, IVs, NewVs) :-check_consistency274,9301 -check_consistency(L1, Ev, MAT0, MAT1, L1, MAT, NewParents0, NewParents, Vs, IVs, NewVs) :-check_consistency274,9301 -check_consistency(L1, Ev, MAT0, MAT1, L1, MAT, NewParents0, NewParents, Vs, IVs, NewVs) :-check_consistency274,9301 -average_cpt(Vs, OVars, Vals, Base, _, MCPT) :-average_cpt297,9726 -average_cpt(Vs, OVars, Vals, Base, _, MCPT) :-average_cpt297,9726 -average_cpt(Vs, OVars, Vals, Base, _, MCPT) :-average_cpt297,9726 -get_ds_lengths([],[]).get_ds_lengths304,9919 -get_ds_lengths([],[]).get_ds_lengths304,9919 -get_ds_lengths([V|Vs],[Sz|Lengs]) :-get_ds_lengths305,9942 -get_ds_lengths([V|Vs],[Sz|Lengs]) :-get_ds_lengths305,9942 -get_ds_lengths([V|Vs],[Sz|Lengs]) :-get_ds_lengths305,9942 -fill_in_average(Lengs, N, Base, MCPT) :-fill_in_average309,10031 -fill_in_average(Lengs, N, Base, MCPT) :-fill_in_average309,10031 -fill_in_average(Lengs, N, Base, MCPT) :-fill_in_average309,10031 -fill_in_average(_,_,_,_).fill_in_average314,10167 -fill_in_average(_,_,_,_).fill_in_average314,10167 -generate([], []).generate316,10194 -generate([], []).generate316,10194 -generate([N|Lengs], [C|Case]) :-generate317,10212 -generate([N|Lengs], [C|Case]) :-generate317,10212 -generate([N|Lengs], [C|Case]) :-generate317,10212 -from(I,_,I).from321,10284 -from(I,_,I).from321,10284 -from(I1,M,J) :-from322,10297 -from(I1,M,J) :-from322,10297 -from(I1,M,J) :-from322,10297 -average(Case, N, Base, Val) :-average327,10348 -average(Case, N, Base, Val) :-average327,10348 -average(Case, N, Base, Val) :-average327,10348 -sum_cpt(Vs,Vals,_,CPT) :-sum_cpt332,10440 -sum_cpt(Vs,Vals,_,CPT) :-sum_cpt332,10440 -sum_cpt(Vs,Vals,_,CPT) :-sum_cpt332,10440 -fill_in_sum(Lengs,MCPT) :-fill_in_sum339,10608 -fill_in_sum(Lengs,MCPT) :-fill_in_sum339,10608 -fill_in_sum(Lengs,MCPT) :-fill_in_sum339,10608 -fill_in_sum(_,_).fill_in_sum344,10721 -fill_in_sum(_,_).fill_in_sum344,10721 -max_cpt(Vs,Vals,_,CPT) :-max_cpt347,10741 -max_cpt(Vs,Vals,_,CPT) :-max_cpt347,10741 -max_cpt(Vs,Vals,_,CPT) :-max_cpt347,10741 -fill_in_max(Lengs,MCPT) :-fill_in_max354,10909 -fill_in_max(Lengs,MCPT) :-fill_in_max354,10909 -fill_in_max(Lengs,MCPT) :-fill_in_max354,10909 -fill_in_max(_,_).fill_in_max359,11023 -fill_in_max(_,_).fill_in_max359,11023 -min_cpt(Vs,Vals,_,CPT) :-min_cpt362,11043 -min_cpt(Vs,Vals,_,CPT) :-min_cpt362,11043 -min_cpt(Vs,Vals,_,CPT) :-min_cpt362,11043 -fill_in_min(Lengs,MCPT) :-fill_in_min369,11211 -fill_in_min(Lengs,MCPT) :-fill_in_min369,11211 -fill_in_min(Lengs,MCPT) :-fill_in_min369,11211 -fill_in_min(_,_).fill_in_min374,11325 -fill_in_min(_,_).fill_in_min374,11325 -get_vdist_size(V, Sz) :-get_vdist_size377,11345 -get_vdist_size(V, Sz) :-get_vdist_size377,11345 -get_vdist_size(V, Sz) :-get_vdist_size377,11345 -get_vdist_size(V, Sz) :-get_vdist_size381,11451 -get_vdist_size(V, Sz) :-get_vdist_size381,11451 -get_vdist_size(V, Sz) :-get_vdist_size381,11451 - -packages/CLPBN/clpbn/bdd.yap,42500 -:- dynamic network_counting/1.dynamic73,1206 -:- dynamic network_counting/1.dynamic73,1206 -:- dynamic bdds/1.dynamic77,1261 -:- dynamic bdds/1.dynamic77,1261 -bdds(bdd).bdds79,1294 -bdds(bdd).bdds79,1294 -init_bdd_ground_solver(QueryKeys, AllKeys, Factors, Evidence, bdd(QueryKeys, AllKeys, Factors, Evidence)).init_bdd_ground_solver85,1342 -init_bdd_ground_solver(QueryKeys, AllKeys, Factors, Evidence, bdd(QueryKeys, AllKeys, Factors, Evidence)).init_bdd_ground_solver85,1342 -run_bdd_ground_solver(_QueryVars, Solutions, bdd(GKeys, Keys, Factors, Evidence) ) :- !,run_bdd_ground_solver90,1480 -run_bdd_ground_solver(_QueryVars, Solutions, bdd(GKeys, Keys, Factors, Evidence) ) :- !,run_bdd_ground_solver90,1480 -run_bdd_ground_solver(_QueryVars, Solutions, bdd(GKeys, Keys, Factors, Evidence) ) :- !,run_bdd_ground_solver90,1480 -check_if_bdd_done(_Var).check_if_bdd_done93,1656 -check_if_bdd_done(_Var).check_if_bdd_done93,1656 -call_bdd_ground_solver(QueryVars, QueryKeys, AllKeys, Factors, Evidence, Output) :-call_bdd_ground_solver95,1682 -call_bdd_ground_solver(QueryVars, QueryKeys, AllKeys, Factors, Evidence, Output) :-call_bdd_ground_solver95,1682 -call_bdd_ground_solver(QueryVars, QueryKeys, AllKeys, Factors, Evidence, Output) :-call_bdd_ground_solver95,1682 -call_bdd_ground_solver_for_probabilities(QueryKeys, AllKeys, Factors, Evidence, Solutions) :-call_bdd_ground_solver_for_probabilities99,1912 -call_bdd_ground_solver_for_probabilities(QueryKeys, AllKeys, Factors, Evidence, Solutions) :-call_bdd_ground_solver_for_probabilities99,1912 -call_bdd_ground_solver_for_probabilities(QueryKeys, AllKeys, Factors, Evidence, Solutions) :-call_bdd_ground_solver_for_probabilities99,1912 -init_bdd(FactorIds, EvidenceIds, Hash, Id, bdd(Term, Leaves, Tops, Hash, Id)) :-init_bdd104,2181 -init_bdd(FactorIds, EvidenceIds, Hash, Id, bdd(Term, Leaves, Tops, Hash, Id)) :-init_bdd104,2181 -init_bdd(FactorIds, EvidenceIds, Hash, Id, bdd(Term, Leaves, Tops, Hash, Id)) :-init_bdd104,2181 -order_key( Id, I0, I, OrderVs0, OrderVs) :-order_key117,2626 -order_key( Id, I0, I, OrderVs0, OrderVs) :-order_key117,2626 -order_key( Id, I0, I, OrderVs0, OrderVs) :-order_key117,2626 -evtotree(K=V,Ev0,Ev) :-evtotree121,2722 -evtotree(K=V,Ev0,Ev) :-evtotree121,2722 -evtotree(K=V,Ev0,Ev) :-evtotree121,2722 -ftotree(F, Fs0, Fs) :-ftotree124,2774 -ftotree(F, Fs0, Fs) :-ftotree124,2774 -ftotree(F, Fs0, Fs) :-ftotree124,2774 -bdd([[]],_,_) :- !.bdd128,2856 -bdd([[]],_,_) :- !.bdd128,2856 -bdd([[]],_,_) :- !.bdd128,2856 -bdd([QueryVars], AllVars, AllDiffs) :-bdd129,2876 -bdd([QueryVars], AllVars, AllDiffs) :-bdd129,2876 -bdd([QueryVars], AllVars, AllDiffs) :-bdd129,2876 -init_bdd_solver(_, AllVars0, _, bdd(Term, Leaves, Tops)) :-init_bdd_solver135,3084 -init_bdd_solver(_, AllVars0, _, bdd(Term, Leaves, Tops)) :-init_bdd_solver135,3084 -init_bdd_solver(_, AllVars0, _, bdd(Term, Leaves, Tops)) :-init_bdd_solver135,3084 -order_vars([], _).order_vars146,3408 -order_vars([], _).order_vars146,3408 -order_vars([V|AllVars], I0) :-order_vars147,3427 -order_vars([V|AllVars], I0) :-order_vars147,3427 -order_vars([V|AllVars], I0) :-order_vars147,3427 -init_tops([],[]).init_tops153,3524 -init_tops([],[]).init_tops153,3524 -init_tops([_|Leaves],[_|Tops]) :-init_tops154,3542 -init_tops([_|Leaves],[_|Tops]) :-init_tops154,3542 -init_tops([_|Leaves],[_|Tops]) :-init_tops154,3542 -sort_keys(AllFs, AllVars, Leaves) :-sort_keys157,3602 -sort_keys(AllFs, AllVars, Leaves) :-sort_keys157,3602 -sort_keys(AllFs, AllVars, Leaves) :-sort_keys157,3602 -add_node(fn([K|Parents],_,_,_,_), Graph0, Graph) :-add_node163,3766 -add_node(fn([K|Parents],_,_,_,_), Graph0, Graph) :-add_node163,3766 -add_node(fn([K|Parents],_,_,_,_), Graph0, Graph) :-add_node163,3766 -add_edge(K, K0, Graph0, Graph) :-add_edge167,3903 -add_edge(K, K0, Graph0, Graph) :-add_edge167,3903 -add_edge(K, K0, Graph0, Graph) :-add_edge167,3903 -sort_vars(AllVars0, AllVars, Leaves) :-sort_vars170,3978 -sort_vars(AllVars0, AllVars, Leaves) :-sort_vars170,3978 -sort_vars(AllVars0, AllVars, Leaves) :-sort_vars170,3978 -build_graph([], Graph, Graph).build_graph176,4144 -build_graph([], Graph, Graph).build_graph176,4144 -build_graph([V|AllVars0], Graph0, Graph) :-build_graph177,4175 -build_graph([V|AllVars0], Graph0, Graph) :-build_graph177,4175 -build_graph([V|AllVars0], Graph0, Graph) :-build_graph177,4175 -build_graph(_V.AllVars0, Graph0, Graph) :-build_graph182,4388 -build_graph(_V.AllVars0, Graph0, Graph) :-build_graph182,4388 -build_graph(_V.AllVars0, Graph0, Graph) :-build_graph182,4388 -add_parents([], _V, Graph, Graph).add_parents185,4471 -add_parents([], _V, Graph, Graph).add_parents185,4471 -add_parents([V0|Parents], V, Graph0, GraphF) :-add_parents186,4506 -add_parents([V0|Parents], V, Graph0, GraphF) :-add_parents186,4506 -add_parents([V0|Parents], V, Graph0, GraphF) :-add_parents186,4506 -get_keys_info([], _, _, _, Vs, Vs, Ps, Ps, _, _) --> [].get_keys_info190,4638 -get_keys_info([], _, _, _, Vs, Vs, Ps, Ps, _, _) --> [].get_keys_info190,4638 -get_keys_info([], _, _, _, Vs, Vs, Ps, Ps, _, _) --> [].get_keys_info190,4638 -get_keys_info([V|MoreVs], Evs, Fs, OrderVs, Vs, VsF, Ps, PsF, Lvs, Outs) -->get_keys_info191,4695 -get_keys_info([V|MoreVs], Evs, Fs, OrderVs, Vs, VsF, Ps, PsF, Lvs, Outs) -->get_keys_info191,4695 -get_keys_info([V|MoreVs], Evs, Fs, OrderVs, Vs, VsF, Ps, PsF, Lvs, Outs) -->get_keys_info191,4695 -get_key_info(V, F, Fs, Evs, OrderVs, DistId, Parents0, Vs, Vs2, Ps, Ps1, Lvs, Outs, DIST) :-get_key_info199,5052 -get_key_info(V, F, Fs, Evs, OrderVs, DistId, Parents0, Vs, Vs2, Ps, Ps1, Lvs, Outs, DIST) :-get_key_info199,5052 -get_key_info(V, F, Fs, Evs, OrderVs, DistId, Parents0, Vs, Vs2, Ps, Ps1, Lvs, Outs, DIST) :-get_key_info199,5052 -get_vars_info([], Vs, Vs, Ps, Ps, _, _) --> [].get_vars_info213,5788 -get_vars_info([], Vs, Vs, Ps, Ps, _, _) --> [].get_vars_info213,5788 -get_vars_info([], Vs, Vs, Ps, Ps, _, _) --> [].get_vars_info213,5788 -get_vars_info([V|MoreVs], Vs, VsF, Ps, PsF, Lvs, Outs) -->get_vars_info214,5836 -get_vars_info([V|MoreVs], Vs, VsF, Ps, PsF, Lvs, Outs) -->get_vars_info214,5836 -get_vars_info([V|MoreVs], Vs, VsF, Ps, PsF, Lvs, Outs) -->get_vars_info214,5836 -get_vars_info([_|MoreVs], Vs0, VsF, Ps0, PsF, VarsInfo, Lvs, Outs) :-get_vars_info220,6115 -get_vars_info([_|MoreVs], Vs0, VsF, Ps0, PsF, VarsInfo, Lvs, Outs) :-get_vars_info220,6115 -get_vars_info([_|MoreVs], Vs0, VsF, Ps0, PsF, VarsInfo, Lvs, Outs) :-get_vars_info220,6115 -get_var_info(V, avg(Domain), Parents, Vs, Vs2, Ps, Ps, Lvs, Outs, DIST) :- !,get_var_info226,6286 -get_var_info(V, avg(Domain), Parents, Vs, Vs2, Ps, Ps, Lvs, Outs, DIST) :- !,get_var_info226,6286 -get_var_info(V, avg(Domain), Parents, Vs, Vs2, Ps, Ps, Lvs, Outs, DIST) :- !,get_var_info226,6286 -get_var_info(V, DistId, Parents0, Vs, Vs2, Ps, Ps1, Lvs, Outs, DIST) :-get_var_info232,6627 -get_var_info(V, DistId, Parents0, Vs, Vs2, Ps, Ps1, Lvs, Outs, DIST) :-get_var_info232,6627 -get_var_info(V, DistId, Parents0, Vs, Vs2, Ps, Ps1, Lvs, Outs, DIST) :-get_var_info232,6627 -reorder_keys(Vs, Order, OVs, Map) :-reorder_keys252,7443 -reorder_keys(Vs, Order, OVs, Map) :-reorder_keys252,7443 -reorder_keys(Vs, Order, OVs, Map) :-reorder_keys252,7443 -add_key_pos(Order, V, K-(I0,V), I0, I) :-add_key_pos257,7580 -add_key_pos(Order, V, K-(I0,V), I0, I) :-add_key_pos257,7580 -add_key_pos(Order, V, K-(I0,V), I0, I) :-add_key_pos257,7580 -reorder_vars(Vs, OVs, Map) :-reorder_vars261,7660 -reorder_vars(Vs, OVs, Map) :-reorder_vars261,7660 -reorder_vars(Vs, OVs, Map) :-reorder_vars261,7660 -add_pos(V, K-(I0,V), I0, I) :-add_pos266,7780 -add_pos(V, K-(I0,V), I0, I) :-add_pos266,7780 -add_pos(V, K-(I0,V), I0, I) :-add_pos266,7780 -remove_key(_-(I,V), V, I).remove_key270,7849 -remove_key(_-(I,V), V, I).remove_key270,7849 -run_though_avg(V, 3, Domain, Parents0, Vs, Vs2, Lvs, Outs, DIST) :-run_though_avg276,7942 -run_though_avg(V, 3, Domain, Parents0, Vs, Vs2, Lvs, Outs, DIST) :-run_though_avg276,7942 -run_though_avg(V, 3, Domain, Parents0, Vs, Vs2, Lvs, Outs, DIST) :-run_though_avg276,7942 -generate_3tree(OUT, _, I00, I10, I20, IR0, N0, N1, N2, R, _Exp, ExpF) :-generate_3tree292,8704 -generate_3tree(OUT, _, I00, I10, I20, IR0, N0, N1, N2, R, _Exp, ExpF) :-generate_3tree292,8704 -generate_3tree(OUT, _, I00, I10, I20, IR0, N0, N1, N2, R, _Exp, ExpF) :-generate_3tree292,8704 -generate_3tree(OUT, [[P0,P1,P2]], I00, I10, I20, IR0, N0, N1, N2, R, Exp, _ExpF) :-generate_3tree297,8854 -generate_3tree(OUT, [[P0,P1,P2]], I00, I10, I20, IR0, N0, N1, N2, R, Exp, _ExpF) :-generate_3tree297,8854 -generate_3tree(OUT, [[P0,P1,P2]], I00, I10, I20, IR0, N0, N1, N2, R, Exp, _ExpF) :-generate_3tree297,8854 -generate_3tree(OUT, [[P0,P1,P2]|Ps], I00, I10, I20, IR0, N0, N1, N2, R, Exp, ExpF) :-generate_3tree315,9232 -generate_3tree(OUT, [[P0,P1,P2]|Ps], I00, I10, I20, IR0, N0, N1, N2, R, Exp, ExpF) :-generate_3tree315,9232 -generate_3tree(OUT, [[P0,P1,P2]|Ps], I00, I10, I20, IR0, N0, N1, N2, R, Exp, ExpF) :-generate_3tree315,9232 -satisf(I0, I1, I2, IR, N0, N1, N2, R, Exp) :-satisf341,9886 -satisf(I0, I1, I2, IR, N0, N1, N2, R, Exp) :-satisf341,9886 -satisf(I0, I1, I2, IR, N0, N1, N2, R, Exp) :-satisf341,9886 -not_satisf(I0, I1, I2, IR, N0, N1, N2, R, Exp) :-not_satisf344,9985 -not_satisf(I0, I1, I2, IR, N0, N1, N2, R, Exp) :-not_satisf344,9985 -not_satisf(I0, I1, I2, IR, N0, N1, N2, R, Exp) :-not_satisf344,9985 -top_down_with_tabling(V, Size, Domain, Parents0, Vs, Vs2, Lvs, Outs, DIST) :-top_down_with_tabling351,10150 -top_down_with_tabling(V, Size, Domain, Parents0, Vs, Vs2, Lvs, Outs, DIST) :-top_down_with_tabling351,10150 -top_down_with_tabling(V, Size, Domain, Parents0, Vs, Vs2, Lvs, Outs, DIST) :-top_down_with_tabling351,10150 -avg_trees(Size, _, _, Size, F0, _, F0, [], [], H, H) :- !.avg_trees366,10746 -avg_trees(Size, _, _, Size, F0, _, F0, [], [], H, H) :- !.avg_trees366,10746 -avg_trees(Size, _, _, Size, F0, _, F0, [], [], H, H) :- !.avg_trees366,10746 -avg_trees(I0, Max, PVars, Size, [V=O*E|F0], Im, [IM|Borders], [V|OVs], [E|Ev], H0, H) :-avg_trees367,10805 -avg_trees(I0, Max, PVars, Size, [V=O*E|F0], Im, [IM|Borders], [V|OVs], [E|Ev], H0, H) :-avg_trees367,10805 -avg_trees(I0, Max, PVars, Size, [V=O*E|F0], Im, [IM|Borders], [V|OVs], [E|Ev], H0, H) :-avg_trees367,10805 -avg_tree( _PVars, P, _, Im, IM, _Size, O, H0, H0) :-avg_tree373,11039 -avg_tree( _PVars, P, _, Im, IM, _Size, O, H0, H0) :-avg_tree373,11039 -avg_tree( _PVars, P, _, Im, IM, _Size, O, H0, H0) :-avg_tree373,11039 -avg_tree([], _P, _Max, _Im, _IM, _Size, 1, H, H).avg_tree375,11135 -avg_tree([], _P, _Max, _Im, _IM, _Size, 1, H, H).avg_tree375,11135 -avg_tree([Vals|PVars], P, Max, Im, IM, Size, O, H0, HF) :-avg_tree376,11185 -avg_tree([Vals|PVars], P, Max, Im, IM, Size, O, H0, HF) :-avg_tree376,11185 -avg_tree([Vals|PVars], P, Max, Im, IM, Size, O, H0, HF) :-avg_tree376,11185 -avg_exp([], _, _, _P, _Max, _Size, _Im, _IM, H, H, 0).avg_exp382,11402 -avg_exp([], _, _, _P, _Max, _Size, _Im, _IM, H, H, 0).avg_exp382,11402 -avg_exp([Val|Vals], PVars, I0, P0, Max, Size, Im, IM, HI, HF, O) :-avg_exp383,11457 -avg_exp([Val|Vals], PVars, I0, P0, Max, Size, Im, IM, HI, HF, O) :-avg_exp383,11457 -avg_exp([Val|Vals], PVars, I0, P0, Max, Size, Im, IM, HI, HF, O) :-avg_exp383,11457 -generate_avg_code(H, Formula, Formula0) :-generate_avg_code396,11962 -generate_avg_code(H, Formula, Formula0) :-generate_avg_code396,11962 -generate_avg_code(H, Formula, Formula0) :-generate_avg_code396,11962 -strip_and_add([], F, F).strip_and_add401,12079 -strip_and_add([], F, F).strip_and_add401,12079 -strip_and_add([_-Exp|S], F0, F) :-strip_and_add402,12104 -strip_and_add([_-Exp|S], F0, F) :-strip_and_add402,12104 -strip_and_add([_-Exp|S], F0, F) :-strip_and_add402,12104 -bup_avg(V, Size, Domain, Parents0, Vs, Vs2, Lvs, Outs, DIST) :-bup_avg409,12258 -bup_avg(V, Size, Domain, Parents0, Vs, Vs2, Lvs, Outs, DIST) :-bup_avg409,12258 -bup_avg(V, Size, Domain, Parents0, Vs, Vs2, Lvs, Outs, DIST) :-bup_avg409,12258 -bin_sums(Vs, Sums, F) :-bin_sums434,13098 -bin_sums(Vs, Sums, F) :-bin_sums434,13098 -bin_sums(Vs, Sums, F) :-bin_sums434,13098 -vs_to_sums([], []).vs_to_sums438,13181 -vs_to_sums([], []).vs_to_sums438,13181 -vs_to_sums([V|Vs], [Sum|Sums0]) :-vs_to_sums439,13201 -vs_to_sums([V|Vs], [Sum|Sums0]) :-vs_to_sums439,13201 -vs_to_sums([V|Vs], [Sum|Sums0]) :-vs_to_sums439,13201 -bin_sums([Sum], Sum) --> !.bin_sums443,13279 -bin_sums([Sum], Sum) --> !.bin_sums443,13279 -bin_sums([Sum], Sum) --> !.bin_sums443,13279 -bin_sums(LSums, Sum) -->bin_sums444,13307 -bin_sums(LSums, Sum) -->bin_sums444,13307 -bin_sums(LSums, Sum) -->bin_sums444,13307 -halve(LSums, Sums1, Sums2) :-halve450,13437 -halve(LSums, Sums1, Sums2) :-halve450,13437 -halve(LSums, Sums1, Sums2) :-halve450,13437 -head(0, L, [], L) :- !.head455,13539 -head(0, L, [], L) :- !.head455,13539 -head(0, L, [], L) :- !.head455,13539 -head(Take, [H|L], [H|Sums1], Sum2) :-head456,13563 -head(Take, [H|L], [H|Sums1], Sum2) :-head456,13563 -head(Take, [H|L], [H|Sums1], Sum2) :-head456,13563 -sum(Sum1, Sum2, Sum) -->sum460,13650 -sum(Sum1, Sum2, Sum) -->sum460,13650 -sum(Sum1, Sum2, Sum) -->sum460,13650 -generate_sums([PVals], Size, Max, _, _Protected, _Domains, _, Sum, []) :- !,generate_sums474,13915 -generate_sums([PVals], Size, Max, _, _Protected, _Domains, _, Sum, []) :- !,generate_sums474,13915 -generate_sums([PVals], Size, Max, _, _Protected, _Domains, _, Sum, []) :- !,generate_sums474,13915 -generate_sums([PVals|Parents], Size, Max, Reach, Protected, Domains, ASize, NewSums, F) :-generate_sums477,14030 -generate_sums([PVals|Parents], Size, Max, Reach, Protected, Domains, ASize, NewSums, F) :-generate_sums477,14030 -generate_sums([PVals|Parents], Size, Max, Reach, Protected, Domains, ASize, NewSums, F) :-generate_sums477,14030 -protect_avg(Max0,Max0,_Protected, _Domains, _ASize, _Reach) :- !.protect_avg486,14436 -protect_avg(Max0,Max0,_Protected, _Domains, _ASize, _Reach) :- !.protect_avg486,14436 -protect_avg(Max0,Max0,_Protected, _Domains, _ASize, _Reach) :- !.protect_avg486,14436 -protect_avg(I0, Max0, Protected, Domains, ASize, Reach) :-protect_avg487,14502 -protect_avg(I0, Max0, Protected, Domains, ASize, Reach) :-protect_avg487,14502 -protect_avg(I0, Max0, Protected, Domains, ASize, Reach) :-protect_avg487,14502 -protect_avg(I0, Max0, Protected, Domains, ASize, Reach) :-protect_avg496,14749 -protect_avg(I0, Max0, Protected, Domains, ASize, Reach) :-protect_avg496,14749 -protect_avg(I0, Max0, Protected, Domains, ASize, Reach) :-protect_avg496,14749 -expand_sums(_Parents, Max, _, Max, _Size, _Sums, _P, _NewSums, F0, F0) :- !.expand_sums504,14947 -expand_sums(_Parents, Max, _, Max, _Size, _Sums, _P, _NewSums, F0, F0) :- !.expand_sums504,14947 -expand_sums(_Parents, Max, _, Max, _Size, _Sums, _P, _NewSums, F0, F0) :- !.expand_sums504,14947 -expand_sums(Parents, I0, Max0, Max, Size, Sums, Prot, NewSums, [O=SUM*1|F], F0) :-expand_sums505,15024 -expand_sums(Parents, I0, Max0, Max, Size, Sums, Prot, NewSums, [O=SUM*1|F], F0) :-expand_sums505,15024 -expand_sums(Parents, I0, Max0, Max, Size, Sums, Prot, NewSums, [O=SUM*1|F], F0) :-expand_sums505,15024 -expand_sums(Parents, I0, Max0, Max, Size, Sums, Prot, NewSums, F, F0) :-expand_sums513,15306 -expand_sums(Parents, I0, Max0, Max, Size, Sums, Prot, NewSums, F, F0) :-expand_sums513,15306 -expand_sums(Parents, I0, Max0, Max, Size, Sums, Prot, NewSums, F, F0) :-expand_sums513,15306 -sum_all([], _, _, _, _, []).sum_all523,15613 -sum_all([], _, _, _, _, []).sum_all523,15613 -sum_all([V|Vs], Pos, I, Max0, Sums, [O|List]) :-sum_all524,15642 -sum_all([V|Vs], Pos, I, Max0, Sums, [O|List]) :-sum_all524,15642 -sum_all([V|Vs], Pos, I, Max0, Sums, [O|List]) :-sum_all524,15642 -sum_all([_V|Vs], Pos, I, Max0, Sums, List) :-sum_all533,15852 -sum_all([_V|Vs], Pos, I, Max0, Sums, List) :-sum_all533,15852 -sum_all([_V|Vs], Pos, I, Max0, Sums, List) :-sum_all533,15852 -gen_arg(J, Sums, Max, S0) :-gen_arg537,15956 -gen_arg(J, Sums, Max, S0) :-gen_arg537,15956 -gen_arg(J, Sums, Max, S0) :-gen_arg537,15956 -gen_arg(Max, Max, J, Sums, S0) :- !,gen_arg540,16017 -gen_arg(Max, Max, J, Sums, S0) :- !,gen_arg540,16017 -gen_arg(Max, Max, J, Sums, S0) :- !,gen_arg540,16017 -gen_arg(I0, Max, J, Sums, S) :-gen_arg544,16122 -gen_arg(I0, Max, J, Sums, S) :-gen_arg544,16122 -gen_arg(I0, Max, J, Sums, S) :-gen_arg544,16122 -avg_borders(Size, Size, _Max, []) :- !.avg_borders551,16257 -avg_borders(Size, Size, _Max, []) :- !.avg_borders551,16257 -avg_borders(Size, Size, _Max, []) :- !.avg_borders551,16257 -avg_borders(I0, Size, Max, [J|Vals]) :-avg_borders552,16297 -avg_borders(I0, Size, Max, [J|Vals]) :-avg_borders552,16297 -avg_borders(I0, Size, Max, [J|Vals]) :-avg_borders552,16297 -avg_domains(Size, Size, _J, _Max, []).avg_domains558,16439 -avg_domains(Size, Size, _J, _Max, []).avg_domains558,16439 -avg_domains(I0, Size, J0, Max, Vals) :-avg_domains559,16478 -avg_domains(I0, Size, J0, Max, Vals) :-avg_domains559,16478 -avg_domains(I0, Size, J0, Max, Vals) :-avg_domains559,16478 -fetch_domain_for_avg(J, Border, J, _, Vals, Vals) :-fetch_domain_for_avg565,16649 -fetch_domain_for_avg(J, Border, J, _, Vals, Vals) :-fetch_domain_for_avg565,16649 -fetch_domain_for_avg(J, Border, J, _, Vals, Vals) :-fetch_domain_for_avg565,16649 -fetch_domain_for_avg(J0, Border, J, I0, [I0|LVals], RLVals) :-fetch_domain_for_avg567,16718 -fetch_domain_for_avg(J0, Border, J, I0, [I0|LVals], RLVals) :-fetch_domain_for_avg567,16718 -fetch_domain_for_avg(J0, Border, J, I0, [I0|LVals], RLVals) :-fetch_domain_for_avg567,16718 -generate_avg(Size, Size, _J, _Max, [], [], [], F, F).generate_avg571,16852 -generate_avg(Size, Size, _J, _Max, [], [], [], F, F).generate_avg571,16852 -generate_avg(I0, Size, J0, Max, LSums, [O|OVs], [Ev|Evs], [O=Disj*Ev|F], F0) :-generate_avg572,16906 -generate_avg(I0, Size, J0, Max, LSums, [O|OVs], [Ev|Evs], [O=Disj*Ev|F], F0) :-generate_avg572,16906 -generate_avg(I0, Size, J0, Max, LSums, [O|OVs], [Ev|Evs], [O=Disj*Ev|F], F0) :-generate_avg572,16906 -fetch_for_avg(J, Border, J, RSums, [], RSums) :-fetch_for_avg579,17157 -fetch_for_avg(J, Border, J, RSums, [], RSums) :-fetch_for_avg579,17157 -fetch_for_avg(J, Border, J, RSums, [], RSums) :-fetch_for_avg579,17157 -fetch_for_avg(J0, Border, J, [S|LSums], [S|MySums], RSums) :-fetch_for_avg581,17222 -fetch_for_avg(J0, Border, J, [S|LSums], [S|MySums], RSums) :-fetch_for_avg581,17222 -fetch_for_avg(J0, Border, J, [S|LSums], [S|MySums], RSums) :-fetch_for_avg581,17222 -to_disj([], 0).to_disj586,17352 -to_disj([], 0).to_disj586,17352 -to_disj([V], V).to_disj587,17368 -to_disj([V], V).to_disj587,17368 -to_disj([V,V1|Vs], Out) :-to_disj588,17385 -to_disj([V,V1|Vs], Out) :-to_disj588,17385 -to_disj([V,V1|Vs], Out) :-to_disj588,17385 -to_disj2([V], V0, V0+V).to_disj2591,17441 -to_disj2([V], V0, V0+V).to_disj2591,17441 -to_disj2([V,V1|Vs], V0, Out) :-to_disj2592,17466 -to_disj2([V,V1|Vs], V0, Out) :-to_disj2592,17466 -to_disj2([V,V1|Vs], V0, Out) :-to_disj2592,17466 -check_key_p(DistId, _, Map, Parms, ParmVars, Ps, Ps) :-check_key_p600,17607 -check_key_p(DistId, _, Map, Parms, ParmVars, Ps, Ps) :-check_key_p600,17607 -check_key_p(DistId, _, Map, Parms, ParmVars, Ps, Ps) :-check_key_p600,17607 -check_key_p(DistId, fn(_, Sizes, Parms0, DistId, _), Map, Parms, ParmVars, Ps, PsF) :-check_key_p602,17718 -check_key_p(DistId, fn(_, Sizes, Parms0, DistId, _), Map, Parms, ParmVars, Ps, PsF) :-check_key_p602,17718 -check_key_p(DistId, fn(_, Sizes, Parms0, DistId, _), Map, Parms, ParmVars, Ps, PsF) :-check_key_p602,17718 -check_p(DistId, Map, Parms, ParmVars, Ps, Ps) :-check_p617,18200 -check_p(DistId, Map, Parms, ParmVars, Ps, Ps) :-check_p617,18200 -check_p(DistId, Map, Parms, ParmVars, Ps, Ps) :-check_p617,18200 -check_p(DistId, Map, Parms, ParmVars, Ps, PsF) :-check_p619,18304 -check_p(DistId, Map, Parms, ParmVars, Ps, PsF) :-check_p619,18304 -check_p(DistId, Map, Parms, ParmVars, Ps, PsF) :-check_p619,18304 -swap_parms(Parms0, Sizes, Map, Parms1) :-swap_parms632,18761 -swap_parms(Parms0, Sizes, Map, Parms1) :-swap_parms632,18761 -swap_parms(Parms0, Sizes, Map, Parms1) :-swap_parms632,18761 -initial_maxes(0, []) :- !.initial_maxes640,18936 -initial_maxes(0, []) :- !.initial_maxes640,18936 -initial_maxes(0, []) :- !.initial_maxes640,18936 -initial_maxes(Size, [1.0|Multipliers]) :- !,initial_maxes641,18963 -initial_maxes(Size, [1.0|Multipliers]) :- !,initial_maxes641,18963 -initial_maxes(Size, [1.0|Multipliers]) :- !,initial_maxes641,18963 -copy(0, [], [], _, _Parms0, [], []) :- !.copy645,19063 -copy(0, [], [], _, _Parms0, [], []) :- !.copy645,19063 -copy(0, [], [], _, _Parms0, [], []) :- !.copy645,19063 -copy(N, [], [], Ms, Parms0, Parms, ParmVars) :-!,copy646,19105 -copy(N, [], [], Ms, Parms0, Parms, ParmVars) :-!,copy646,19105 -copy(N, [], [], Ms, Parms0, Parms, ParmVars) :-!,copy646,19105 -copy(N, D.Ds, ND.NDs, New, El.Parms0, NEl.Parms, V.ParmVars) :-copy648,19208 -copy(N, D.Ds, ND.NDs, New, El.Parms0, NEl.Parms, V.ParmVars) :-copy648,19208 -copy(N, D.Ds, ND.NDs, New, El.Parms0, NEl.Parms, V.ParmVars) :-copy648,19208 -unbound_parms([], []).unbound_parms674,19625 -unbound_parms([], []).unbound_parms674,19625 -unbound_parms(_.Parms, _.ParmVars) :-unbound_parms675,19648 -unbound_parms(_.Parms, _.ParmVars) :-unbound_parms675,19648 -unbound_parms(_.Parms, _.ParmVars) :-unbound_parms675,19648 -check_v(V, _, INFO, Vs, Vs) :-check_v678,19722 -check_v(V, _, INFO, Vs, Vs) :-check_v678,19722 -check_v(V, _, INFO, Vs, Vs) :-check_v678,19722 -check_v(V, DistId, INFO, Vs0, Vs) :-check_v680,19781 -check_v(V, DistId, INFO, Vs0, Vs) :-check_v680,19781 -check_v(V, DistId, INFO, Vs0, Vs) :-check_v680,19781 -get_parents([], [], Vs, Vs).get_parents687,19980 -get_parents([], [], Vs, Vs).get_parents687,19980 -get_parents(V.Parents, Values.PVars, Vs0, Vs) :-get_parents688,20009 -get_parents(V.Parents, Values.PVars, Vs0, Vs) :-get_parents688,20009 -get_parents(V.Parents, Values.PVars, Vs0, Vs) :-get_parents688,20009 -get_key_parent(Fs, V, Values, Vs0, Vs) :-get_key_parent694,20222 -get_key_parent(Fs, V, Values, Vs0, Vs) :-get_key_parent694,20222 -get_key_parent(Fs, V, Values, Vs0, Vs) :-get_key_parent694,20222 -check_key(V, _, INFO, Vs, Vs) :-check_key699,20394 -check_key(V, _, INFO, Vs, Vs) :-check_key699,20394 -check_key(V, _, INFO, Vs, Vs) :-check_key699,20394 -check_key(V, Size, INFO, Vs0, Vs) :-check_key701,20455 -check_key(V, Size, INFO, Vs0, Vs) :-check_key701,20455 -check_key(V, Size, INFO, Vs0, Vs) :-check_key701,20455 -cross_product(Values, Ev, PVars, ParmVars, Formulas) :-cross_product710,20665 -cross_product(Values, Ev, PVars, ParmVars, Formulas) :-cross_product710,20665 -cross_product(Values, Ev, PVars, ParmVars, Formulas) :-cross_product710,20665 -arrangements([], [[]]).arrangements718,20940 -arrangements([], [[]]).arrangements718,20940 -arrangements([L1|Ls],O) :-arrangements719,20964 -arrangements([L1|Ls],O) :-arrangements719,20964 -arrangements([L1|Ls],O) :-arrangements719,20964 -expand([], _LN) --> [].expand723,21039 -expand([], _LN) --> [].expand723,21039 -expand([], _LN) --> [].expand723,21039 -expand([H|L1], LN) -->expand724,21063 -expand([H|L1], LN) -->expand724,21063 -expand([H|L1], LN) -->expand724,21063 -concatenate_all(_H, []) --> [].concatenate_all728,21129 -concatenate_all(_H, []) --> [].concatenate_all728,21129 -concatenate_all(_H, []) --> [].concatenate_all728,21129 -concatenate_all(H, [L|LN]) -->concatenate_all729,21161 -concatenate_all(H, [L|LN]) -->concatenate_all729,21161 -concatenate_all(H, [L|LN]) -->concatenate_all729,21161 -apply_parents_first([Value], [E], Previous, [], PVars, [Value=Disj*E], Parameters) :- !,apply_parents_first744,21516 -apply_parents_first([Value], [E], Previous, [], PVars, [Value=Disj*E], Parameters) :- !,apply_parents_first744,21516 -apply_parents_first([Value], [E], Previous, [], PVars, [Value=Disj*E], Parameters) :- !,apply_parents_first744,21516 -apply_parents_first([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_first747,21680 -apply_parents_first([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_first747,21680 -apply_parents_first([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_first747,21680 -apply_parents_first([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_first747,21680 -apply_parents_first([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_first747,21680 -apply_parents_second([Value], [E], Previous, [], PVars, [Value=Disj*E], Parameters) :- !,apply_parents_second752,21939 -apply_parents_second([Value], [E], Previous, [], PVars, [Value=Disj*E], Parameters) :- !,apply_parents_second752,21939 -apply_parents_second([Value], [E], Previous, [], PVars, [Value=Disj*E], Parameters) :- !,apply_parents_second752,21939 -apply_parents_second([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_second755,22104 -apply_parents_second([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_second755,22104 -apply_parents_second([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_second755,22104 -apply_parents_second([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_second755,22104 -apply_parents_second([Value|Values], [E|Ev], Previous, P0, PVars, (Value=Disj*E).Formulas, Parameters) :-apply_parents_second755,22104 -apply_first_parent([Parents], Conj, [Theta]) :- !,apply_first_parent762,22454 -apply_first_parent([Parents], Conj, [Theta]) :- !,apply_first_parent762,22454 -apply_first_parent([Parents], Conj, [Theta]) :- !,apply_first_parent762,22454 -apply_first_parent(Parents.PVars, Conj+Disj, Theta.TheseParents) :-apply_first_parent764,22543 -apply_first_parent(Parents.PVars, Conj+Disj, Theta.TheseParents) :-apply_first_parent764,22543 -apply_first_parent(Parents.PVars, Conj+Disj, Theta.TheseParents) :-apply_first_parent764,22543 -apply_middle_parent([Parents], Other, Conj, [ThetaPar]) :- !,apply_middle_parent768,22698 -apply_middle_parent([Parents], Other, Conj, [ThetaPar]) :- !,apply_middle_parent768,22698 -apply_middle_parent([Parents], Other, Conj, [ThetaPar]) :- !,apply_middle_parent768,22698 -apply_middle_parent(Parents.PVars, Other, Conj+Disj, ThetaPar.TheseParents) :-apply_middle_parent771,22842 -apply_middle_parent(Parents.PVars, Other, Conj+Disj, ThetaPar.TheseParents) :-apply_middle_parent771,22842 -apply_middle_parent(Parents.PVars, Other, Conj+Disj, ThetaPar.TheseParents) :-apply_middle_parent771,22842 -apply_last_parent([Parents], Other, Conj) :- !,apply_last_parent776,23074 -apply_last_parent([Parents], Other, Conj) :- !,apply_last_parent776,23074 -apply_last_parent([Parents], Other, Conj) :- !,apply_last_parent776,23074 -apply_last_parent(Parents.PVars, Other, Conj+Disj) :-apply_last_parent779,23199 -apply_last_parent(Parents.PVars, Other, Conj+Disj) :-apply_last_parent779,23199 -apply_last_parent(Parents.PVars, Other, Conj+Disj) :-apply_last_parent779,23199 -parents_to_conj([], Theta, Theta) :- !.parents_to_conj788,23448 -parents_to_conj([], Theta, Theta) :- !.parents_to_conj788,23448 -parents_to_conj([], Theta, Theta) :- !.parents_to_conj788,23448 -parents_to_conj(Ps, Theta, Theta*Conj) :-parents_to_conj789,23488 -parents_to_conj(Ps, Theta, Theta*Conj) :-parents_to_conj789,23488 -parents_to_conj(Ps, Theta, Theta*Conj) :-parents_to_conj789,23488 -parents_to_conj2([P],P) :- !.parents_to_conj2792,23560 -parents_to_conj2([P],P) :- !.parents_to_conj2792,23560 -parents_to_conj2([P],P) :- !.parents_to_conj2792,23560 -parents_to_conj2([P|Ps],P*Conj) :-parents_to_conj2793,23590 -parents_to_conj2([P|Ps],P*Conj) :-parents_to_conj2793,23590 -parents_to_conj2([P|Ps],P*Conj) :-parents_to_conj2793,23590 -skim_for_theta([[P|Other]|V], not(P)*New, [Other|_], New) :- var(V), !.skim_for_theta800,23758 -skim_for_theta([[P|Other]|V], not(P)*New, [Other|_], New) :- var(V), !.skim_for_theta800,23758 -skim_for_theta([[P|Other]|V], not(P)*New, [Other|_], New) :- var(V), !.skim_for_theta800,23758 -skim_for_theta([[P|Other]], not(P), [Other], _) :- !.skim_for_theta804,23886 -skim_for_theta([[P|Other]], not(P), [Other], _) :- !.skim_for_theta804,23886 -skim_for_theta([[P|Other]], not(P), [Other], _) :- !.skim_for_theta804,23886 -skim_for_theta([[P|Other]|More], not(P)*Ps, [Other|Left], New ) :-skim_for_theta808,23971 -skim_for_theta([[P|Other]|More], not(P)*Ps, [Other|Left], New ) :-skim_for_theta808,23971 -skim_for_theta([[P|Other]|More], not(P)*Ps, [Other|Left], New ) :-skim_for_theta808,23971 -get_key_evidence(V, Evs, _, Tree, Ev, F0, F, Leaves, Finals) :-get_key_evidence811,24078 -get_key_evidence(V, Evs, _, Tree, Ev, F0, F, Leaves, Finals) :-get_key_evidence811,24078 -get_key_evidence(V, Evs, _, Tree, Ev, F0, F, Leaves, Finals) :-get_key_evidence811,24078 -get_key_evidence(V, _, _, Tree, _Values, F0, F1, Leaves, Finals) :-get_key_evidence823,24494 -get_key_evidence(V, _, _, Tree, _Values, F0, F1, Leaves, Finals) :-get_key_evidence823,24494 -get_key_evidence(V, _, _, Tree, _Values, F0, F1, Leaves, Finals) :-get_key_evidence823,24494 -get_evidence(V, Tree, Ev, F0, F, Leaves, Finals) :-get_evidence827,24653 -get_evidence(V, Tree, Ev, F0, F, Leaves, Finals) :-get_evidence827,24653 -get_evidence(V, Tree, Ev, F0, F, Leaves, Finals) :-get_evidence827,24653 -get_evidence(V, _Tree, Ev, F0, [], _Leaves, _Finals) :-get_evidence833,24902 -get_evidence(V, _Tree, Ev, F0, [], _Leaves, _Finals) :-get_evidence833,24902 -get_evidence(V, _Tree, Ev, F0, [], _Leaves, _Finals) :-get_evidence833,24902 -get_evidence(V, Tree, _Values, F0, F1, Leaves, Finals) :-get_evidence841,25113 -get_evidence(V, Tree, _Values, F0, F1, Leaves, Finals) :-get_evidence841,25113 -get_evidence(V, Tree, _Values, F0, F1, Leaves, Finals) :-get_evidence841,25113 -zero_pos(_, _Pos, []).zero_pos845,25262 -zero_pos(_, _Pos, []).zero_pos845,25262 -zero_pos(Pos, Pos, [1|Values]) :- !,zero_pos846,25285 -zero_pos(Pos, Pos, [1|Values]) :- !,zero_pos846,25285 -zero_pos(Pos, Pos, [1|Values]) :- !,zero_pos846,25285 -zero_pos(I0, Pos, [0|Values]) :-zero_pos849,25362 -zero_pos(I0, Pos, [0|Values]) :-zero_pos849,25362 -zero_pos(I0, Pos, [0|Values]) :-zero_pos849,25362 -one_list([]).one_list853,25435 -one_list([]).one_list853,25435 -one_list([1|Ev]) :-one_list854,25449 -one_list([1|Ev]) :-one_list854,25449 -one_list([1|Ev]) :-one_list854,25449 -insert_output([], _V, [], _Out, _Outs, []).insert_output860,25594 -insert_output([], _V, [], _Out, _Outs, []).insert_output860,25594 -insert_output(V._Leaves, V0, [Top|_], Top, Outs, [Top = Outs]) :- V == V0, !.insert_output861,25638 -insert_output(V._Leaves, V0, [Top|_], Top, Outs, [Top = Outs]) :- V == V0, !.insert_output861,25638 -insert_output(V._Leaves, V0, [Top|_], Top, Outs, [Top = Outs]) :- V == V0, !.insert_output861,25638 -insert_output(_.Leaves, V, _.Finals, Top, Outs, SendOut) :-insert_output862,25716 -insert_output(_.Leaves, V, _.Finals, Top, Outs, SendOut) :-insert_output862,25716 -insert_output(_.Leaves, V, _.Finals, Top, Outs, SendOut) :-insert_output862,25716 -get_outs([V=F], [V=NF|End], End, V) :- !,get_outs866,25833 -get_outs([V=F], [V=NF|End], End, V) :- !,get_outs866,25833 -get_outs([V=F], [V=NF|End], End, V) :- !,get_outs866,25833 -get_outs([(V=F)|Outs], [(V=NF)|NOuts], End, (F0 + V)) :-get_outs869,25913 -get_outs([(V=F)|Outs], [(V=NF)|NOuts], End, (F0 + V)) :-get_outs869,25913 -get_outs([(V=F)|Outs], [(V=NF)|NOuts], End, (F0 + V)) :-get_outs869,25913 -eval_outs([]).eval_outs874,26042 -eval_outs([]).eval_outs874,26042 -eval_outs([(V=F)|Outs]) :-eval_outs875,26057 -eval_outs([(V=F)|Outs]) :-eval_outs875,26057 -eval_outs([(V=F)|Outs]) :-eval_outs875,26057 -run_solver(Qs, LLPs, bdd(Term, Leaves, Nodes, Hash, Id)) :-run_solver880,26133 -run_solver(Qs, LLPs, bdd(Term, Leaves, Nodes, Hash, Id)) :-run_solver880,26133 -run_solver(Qs, LLPs, bdd(Term, Leaves, Nodes, Hash, Id)) :-run_solver880,26133 -run_bdd_solver([Vs], LPs, bdd(Term, _Leaves, Nodes)) :-run_bdd_solver887,26342 -run_bdd_solver([Vs], LPs, bdd(Term, _Leaves, Nodes)) :-run_bdd_solver887,26342 -run_bdd_solver([Vs], LPs, bdd(Term, _Leaves, Nodes)) :-run_bdd_solver887,26342 -build_out_node([_Top], []).build_out_node894,26569 -build_out_node([_Top], []).build_out_node894,26569 -build_out_node([T,T1|Tops], [_Top = T*NTop]) :-build_out_node895,26597 -build_out_node([T,T1|Tops], [_Top = T*NTop]) :-build_out_node895,26597 -build_out_node([T,T1|Tops], [_Top = T*NTop]) :-build_out_node895,26597 -build_out_node2([Top], Top).build_out_node2898,26681 -build_out_node2([Top], Top).build_out_node2898,26681 -build_out_node2([T,T1|Tops], T*Top) :-build_out_node2899,26710 -build_out_node2([T,T1|Tops], T*Top) :-build_out_node2899,26710 -build_out_node2([T,T1|Tops], T*Top) :-build_out_node2899,26710 -get_prob(Term, _Node, Vs, SP) :-get_prob903,26783 -get_prob(Term, _Node, Vs, SP) :-get_prob903,26783 -get_prob(Term, _Node, Vs, SP) :-get_prob903,26783 -get_prob(Term, Node, Vs, SP) :-get_prob907,26956 -get_prob(Term, Node, Vs, SP) :-get_prob907,26956 -get_prob(Term, Node, Vs, SP) :-get_prob907,26956 -build_bdd(Bindings, NVs, VTheta, Theta, Bdd) :-build_bdd916,27246 -build_bdd(Bindings, NVs, VTheta, Theta, Bdd) :-build_bdd916,27246 -build_bdd(Bindings, NVs, VTheta, Theta, Bdd) :-build_bdd916,27246 -bind_all([], End, End, _V, [], []).bind_all925,27470 -bind_all([], End, End, _V, [], []).bind_all925,27470 -bind_all([info(V, _Tree, Ev, _Values, Formula, ParmVars, Parms)|Term], End, BindsF, V0s, ParmVars.AllParms, Parms.AllTheta) :-bind_all926,27506 -bind_all([info(V, _Tree, Ev, _Values, Formula, ParmVars, Parms)|Term], End, BindsF, V0s, ParmVars.AllParms, Parms.AllTheta) :-bind_all926,27506 -bind_all([info(V, _Tree, Ev, _Values, Formula, ParmVars, Parms)|Term], End, BindsF, V0s, ParmVars.AllParms, Parms.AllTheta) :-bind_all926,27506 -bind_all([info(_V, _Tree, Ev, _Values, Formula, ParmVars, Parms)|Term], End, BindsF, V0s, ParmVars.AllParms, Parms.AllTheta) :-bind_all931,27769 -bind_all([info(_V, _Tree, Ev, _Values, Formula, ParmVars, Parms)|Term], End, BindsF, V0s, ParmVars.AllParms, Parms.AllTheta) :-bind_all931,27769 -bind_all([info(_V, _Tree, Ev, _Values, Formula, ParmVars, Parms)|Term], End, BindsF, V0s, ParmVars.AllParms, Parms.AllTheta) :-bind_all931,27769 -bind_all([info(_V, _Tree, _Ev, _Values, Formula, ParmVars, Parms)|Term], End, BindsF, V0s, ParmVars.AllParms, Parms.AllTheta) :-bind_all936,28050 -bind_all([info(_V, _Tree, _Ev, _Values, Formula, ParmVars, Parms)|Term], End, BindsF, V0s, ParmVars.AllParms, Parms.AllTheta) :-bind_all936,28050 -bind_all([info(_V, _Tree, _Ev, _Values, Formula, ParmVars, Parms)|Term], End, BindsF, V0s, ParmVars.AllParms, Parms.AllTheta) :-bind_all936,28050 -bind_formula([], L, L).bind_formula940,28275 -bind_formula([], L, L).bind_formula940,28275 -bind_formula([B|Formula], [B|BsF], Bs0) :-bind_formula941,28299 -bind_formula([B|Formula], [B|BsF], Bs0) :-bind_formula941,28299 -bind_formula([B|Formula], [B|BsF], Bs0) :-bind_formula941,28299 -set_to_one_zeros([1|Values]) :-set_to_one_zeros944,28377 -set_to_one_zeros([1|Values]) :-set_to_one_zeros944,28377 -set_to_one_zeros([1|Values]) :-set_to_one_zeros944,28377 -set_to_one_zeros([0|Values]) :-set_to_one_zeros946,28432 -set_to_one_zeros([0|Values]) :-set_to_one_zeros946,28432 -set_to_one_zeros([0|Values]) :-set_to_one_zeros946,28432 -set_to_zeros([]).set_to_zeros949,28492 -set_to_zeros([]).set_to_zeros949,28492 -set_to_zeros([0|Values]) :-set_to_zeros950,28510 -set_to_zeros([0|Values]) :-set_to_zeros950,28510 -set_to_zeros([0|Values]) :-set_to_zeros950,28510 -set_to_ones([]).set_to_ones953,28562 -set_to_ones([]).set_to_ones953,28562 -set_to_ones([1|Values]) :-set_to_ones954,28579 -set_to_ones([1|Values]) :-set_to_ones954,28579 -set_to_ones([1|Values]) :-set_to_ones954,28579 -normalise([], _Sum, []).normalise957,28629 -normalise([], _Sum, []).normalise957,28629 -normalise([P|TermProbs], Sum, [NP|LPs]) :-normalise958,28654 -normalise([P|TermProbs], Sum, [NP|LPs]) :-normalise958,28654 -normalise([P|TermProbs], Sum, [NP|LPs]) :-normalise958,28654 -finalize_bdd_solver(_).finalize_bdd_solver962,28745 -finalize_bdd_solver(_).finalize_bdd_solver962,28745 -all_cnfs([], [], [], [], _V, [], []).all_cnfs964,28770 -all_cnfs([], [], [], [], _V, [], []).all_cnfs964,28770 -all_cnfs([info(V, Tree, Ev, Values, Formula, ParmVars, Parms)|Term], BindsF, IVars, Indics, V0s, AllParmsF, AllThetaF) :-all_cnfs965,28808 -all_cnfs([info(V, Tree, Ev, Values, Formula, ParmVars, Parms)|Term], BindsF, IVars, Indics, V0s, AllParmsF, AllThetaF) :-all_cnfs965,28808 -all_cnfs([info(V, Tree, Ev, Values, Formula, ParmVars, Parms)|Term], BindsF, IVars, Indics, V0s, AllParmsF, AllThetaF) :-all_cnfs965,28808 -all_cnfs([info(_V, Tree, Ev, Values, Formula, ParmVars, Parms)|Term], BindsF, IVars, Indics, V0s, AllParmsF, AllThetaF) :-all_cnfs974,29289 -all_cnfs([info(_V, Tree, Ev, Values, Formula, ParmVars, Parms)|Term], BindsF, IVars, Indics, V0s, AllParmsF, AllThetaF) :-all_cnfs974,29289 -all_cnfs([info(_V, Tree, Ev, Values, Formula, ParmVars, Parms)|Term], BindsF, IVars, Indics, V0s, AllParmsF, AllThetaF) :-all_cnfs974,29289 -all_cnfs([info(_V, Tree, Ev, Values, Formula, ParmVars, Parms)|Term], BindsF, IVars, Indics, V0s, AllParmsF, AllThetaF) :-all_cnfs982,29767 -all_cnfs([info(_V, Tree, Ev, Values, Formula, ParmVars, Parms)|Term], BindsF, IVars, Indics, V0s, AllParmsF, AllThetaF) :-all_cnfs982,29767 -all_cnfs([info(_V, Tree, Ev, Values, Formula, ParmVars, Parms)|Term], BindsF, IVars, Indics, V0s, AllParmsF, AllThetaF) :-all_cnfs982,29767 -v_in(V, [V0|_]) :- V == V0, !.v_in989,30188 -v_in(V, [V0|_]) :- V == V0, !.v_in989,30188 -v_in(V, [V0|_]) :- V == V0, !.v_in989,30188 -v_in(V, [_|Vs]) :-v_in990,30219 -v_in(V, [_|Vs]) :-v_in990,30219 -v_in(V, [_|Vs]) :-v_in990,30219 -all_indicators(Values) -->all_indicators993,30253 -all_indicators(Values) -->all_indicators993,30253 -all_indicators(Values) -->all_indicators993,30253 -values_to_disj([V], V) :- !.values_to_disj997,30325 -values_to_disj([V], V) :- !.values_to_disj997,30325 -values_to_disj([V], V) :- !.values_to_disj997,30325 -values_to_disj([V|Values], V+Disj) :-values_to_disj998,30354 -values_to_disj([V|Values], V+Disj) :-values_to_disj998,30354 -values_to_disj([V|Values], V+Disj) :-values_to_disj998,30354 -indicators([V|Vars], SeenVs, [E|Ev], [V|IsF], IsI, [E|Inds], Inds0) -->indicators1001,30424 -indicators([V|Vars], SeenVs, [E|Ev], [V|IsF], IsI, [E|Inds], Inds0) -->indicators1001,30424 -indicators([V|Vars], SeenVs, [E|Ev], [V|IsF], IsI, [E|Inds], Inds0) -->indicators1001,30424 -indicators([], _SeenVs, [], IsF, IsF, Inds, Inds) --> [].indicators1004,30587 -indicators([], _SeenVs, [], IsF, IsF, Inds, Inds) --> [].indicators1004,30587 -indicators([], _SeenVs, [], IsF, IsF, Inds, Inds) --> [].indicators1004,30587 -parms([], [], AllParms, AllTheta, AllParms, AllTheta).parms1006,30646 -parms([], [], AllParms, AllTheta, AllParms, AllTheta).parms1006,30646 -parms([V|ParmVars], [P|Parms], [V|AllParmsF], [P|AllThetaF], AllParms, AllTheta) :-parms1007,30701 -parms([V|ParmVars], [P|Parms], [V|AllParmsF], [P|AllThetaF], AllParms, AllTheta) :-parms1007,30701 -parms([V|ParmVars], [P|Parms], [V|AllParmsF], [P|AllThetaF], AllParms, AllTheta) :-parms1007,30701 -parameters([], _) --> [].parameters1010,30854 -parameters([], _) --> [].parameters1010,30854 -parameters([], _) --> [].parameters1010,30854 -parameters([(T=_)|Formula], Tree) -->parameters1012,30915 -parameters([(T=_)|Formula], Tree) -->parameters1012,30915 -parameters([(T=_)|Formula], Tree) -->parameters1012,30915 -parameters([(V0=Disj*_I0)|Formula], Tree) -->parameters1015,31000 -parameters([(V0=Disj*_I0)|Formula], Tree) -->parameters1015,31000 -parameters([(V0=Disj*_I0)|Formula], Tree) -->parameters1015,31000 -conj(Disj, V0) -->conj1021,31179 -conj(Disj, V0) -->conj1021,31179 -conj(Disj, V0) -->conj1021,31179 -conj2(A, L0, LF) :- var(A), !,conj21025,31246 -conj2(A, L0, LF) :- var(A), !,conj21025,31246 -conj2(A, L0, LF) :- var(A), !,conj21025,31246 -conj2((A*B), L0, LF) :-conj21027,31299 -conj2((A*B), L0, LF) :-conj21027,31299 -conj2((A*B), L0, LF) :-conj21027,31299 -conj2((A+B), L0, LF) :-conj21030,31361 -conj2((A+B), L0, LF) :-conj21030,31361 -conj2((A+B), L0, LF) :-conj21030,31361 -conj2(not(A), L0, LF) :-conj21034,31444 -conj2(not(A), L0, LF) :-conj21034,31444 -conj2(not(A), L0, LF) :-conj21034,31444 -add(_, [], []).add1037,31487 -add(_, [], []).add1037,31487 -add(Head, [H|L], [[Head|H]|NL]) :-add1038,31503 -add(Head, [H|L], [[Head|H]|NL]) :-add1038,31503 -add(Head, [H|L], [[Head|H]|NL]) :-add1038,31503 -to_disjs([]) --> [].to_disjs1041,31558 -to_disjs([]) --> [].to_disjs1041,31558 -to_disjs([]) --> [].to_disjs1041,31558 -to_disjs([[H|L]|LVs]) -->to_disjs1042,31579 -to_disjs([[H|L]|LVs]) -->to_disjs1042,31579 -to_disjs([[H|L]|LVs]) -->to_disjs1042,31579 -mkdisj([], Disj) --> [Disj].mkdisj1046,31637 -mkdisj([], Disj) --> [Disj].mkdisj1046,31637 -mkdisj([], Disj) --> [Disj].mkdisj1046,31637 -mkdisj([H|L], Disj) -->mkdisj1047,31666 -mkdisj([H|L], Disj) -->mkdisj1047,31666 -mkdisj([H|L], Disj) -->mkdisj1047,31666 -generate_exclusions([], _V) --> [].generate_exclusions1053,31777 -generate_exclusions([], _V) --> [].generate_exclusions1053,31777 -generate_exclusions([], _V) --> [].generate_exclusions1053,31777 -generate_exclusions([V0|SeenVs], V) -->generate_exclusions1054,31813 -generate_exclusions([V0|SeenVs], V) -->generate_exclusions1054,31813 -generate_exclusions([V0|SeenVs], V) -->generate_exclusions1054,31813 -build_cnf(CNF, IVs, Indics, AllParms, AllParmValues, Val) :-build_cnf1058,31908 -build_cnf(CNF, IVs, Indics, AllParms, AllParmValues, Val) :-build_cnf1058,31908 -build_cnf(CNF, IVs, Indics, AllParms, AllParmValues, Val) :-build_cnf1058,31908 - -packages/CLPBN/clpbn/bnt.yap,15466 -:- dynamic bnt/1.dynamic62,1070 -:- dynamic bnt/1.dynamic62,1070 -:- dynamic bnt_solver/1, bnt_path/1, bnt_model/1.dynamic64,1089 -:- dynamic bnt_solver/1, bnt_path/1, bnt_model/1.dynamic64,1089 -bnt_solver(jtree).bnt_solver67,1150 -bnt_solver(jtree).bnt_solver67,1150 -bnt_path("$HOME/Yap/CLPBN/FullBNT-1.0.4/BNT").bnt_path70,1193 -bnt_path("$HOME/Yap/CLPBN/FullBNT-1.0.4/BNT").bnt_path70,1193 -bnt_model(tied).bnt_model79,1346 -bnt_model(tied).bnt_model79,1346 -check_if_bnt_done(Var) :-check_if_bnt_done96,1591 -check_if_bnt_done(Var) :-check_if_bnt_done96,1591 -check_if_bnt_done(Var) :-check_if_bnt_done96,1591 -do_bnt([], _, _) :- !.do_bnt99,1644 -do_bnt([], _, _) :- !.do_bnt99,1644 -do_bnt([], _, _) :- !.do_bnt99,1644 -do_bnt(QueryVars, AllVars, AllDiffs) :-do_bnt100,1667 -do_bnt(QueryVars, AllVars, AllDiffs) :-do_bnt100,1667 -do_bnt(QueryVars, AllVars, AllDiffs) :-do_bnt100,1667 -create_bnt_graph(AllVars, Representatives) :-create_bnt_graph107,1957 -create_bnt_graph(AllVars, Representatives) :-create_bnt_graph107,1957 -create_bnt_graph(AllVars, Representatives) :-create_bnt_graph107,1957 -create_bnt_graph(AllVars, Representatives, SortedVertices, NumberedVertices, Size) :-create_bnt_graph110,2058 -create_bnt_graph(AllVars, Representatives, SortedVertices, NumberedVertices, Size) :-create_bnt_graph110,2058 -create_bnt_graph(AllVars, Representatives, SortedVertices, NumberedVertices, Size) :-create_bnt_graph110,2058 -init_matlab :-init_matlab120,2386 -init_matlab :-init_matlab122,2414 -start_matlab :-start_matlab132,2628 -start_matlab :-start_matlab134,2659 -sort_nodes(AllVars, SortedVertices) :-sort_nodes137,2718 -sort_nodes(AllVars, SortedVertices) :-sort_nodes137,2718 -sort_nodes(AllVars, SortedVertices) :-sort_nodes137,2718 -sort_nodes(AllVars, SortedVertices) :-sort_nodes140,2818 -sort_nodes(AllVars, SortedVertices) :-sort_nodes140,2818 -sort_nodes(AllVars, SortedVertices) :-sort_nodes140,2818 -extract_tied(AllVars, SortedVars) :-extract_tied145,2961 -extract_tied(AllVars, SortedVars) :-extract_tied145,2961 -extract_tied(AllVars, SortedVars) :-extract_tied145,2961 -extract_kvars([],[]).extract_kvars153,3218 -extract_kvars([],[]).extract_kvars153,3218 -extract_kvars([V|AllVars],[N-i(V,Parents)|KVars]) :-extract_kvars154,3240 -extract_kvars([V|AllVars],[N-i(V,Parents)|KVars]) :-extract_kvars154,3240 -extract_kvars([V|AllVars],[N-i(V,Parents)|KVars]) :-extract_kvars154,3240 -split_tied_vars([],[],[]).split_tied_vars158,3364 -split_tied_vars([],[],[]).split_tied_vars158,3364 -split_tied_vars([N-i(V,Par)|More],[N-g(Vs,Ns,Es)|TVars],[N|LNs]) :-split_tied_vars159,3391 -split_tied_vars([N-i(V,Par)|More],[N-g(Vs,Ns,Es)|TVars],[N|LNs]) :-split_tied_vars159,3391 -split_tied_vars([N-i(V,Par)|More],[N-g(Vs,Ns,Es)|TVars],[N|LNs]) :-split_tied_vars159,3391 -get_pars([],_,_,NPs,NPs,Es,Es).get_pars164,3575 -get_pars([],_,_,NPs,NPs,Es,Es).get_pars164,3575 -get_pars([V|Par],N,V0,NPs,NPs0,Es,Es0) :-get_pars165,3607 -get_pars([V|Par],N,V0,NPs,NPs0,Es,Es0) :-get_pars165,3607 -get_pars([V|Par],N,V0,NPs,NPs0,Es,Es0) :-get_pars165,3607 -get_pars([V|Par],N,V0,NPs,NPs0,Es,Es0) :-get_pars168,3729 -get_pars([V|Par],N,V0,NPs,NPs0,Es,Es0) :-get_pars168,3729 -get_pars([V|Par],N,V0,NPs,NPs0,Es,Es0) :-get_pars168,3729 -get_tied([N-i(V,Par)|More],N,Vs,Vs0,Ns,NPs,Es,Es0,SVars) :- !,get_tied173,3868 -get_tied([N-i(V,Par)|More],N,Vs,Vs0,Ns,NPs,Es,Es0,SVars) :- !,get_tied173,3868 -get_tied([N-i(V,Par)|More],N,Vs,Vs0,Ns,NPs,Es,Es0,SVars) :- !,get_tied173,3868 -get_tied(More,_,Vs,Vs,Ns,Ns,Es,Es,More).get_tied176,4019 -get_tied(More,_,Vs,Vs,Ns,Ns,Es,Es,More).get_tied176,4019 -tied_graph(TVars,Graph,Vertices) :-tied_graph178,4061 -tied_graph(TVars,Graph,Vertices) :-tied_graph178,4061 -tied_graph(TVars,Graph,Vertices) :-tied_graph178,4061 -get_tied_edges([],[]).get_tied_edges184,4238 -get_tied_edges([],[]).get_tied_edges184,4238 -get_tied_edges([N-g(_,Vs,_)|TGraph],Edges) :-get_tied_edges185,4261 -get_tied_edges([N-g(_,Vs,_)|TGraph],Edges) :-get_tied_edges185,4261 -get_tied_edges([N-g(_,Vs,_)|TGraph],Edges) :-get_tied_edges185,4261 -add_tied([],_,Edges,Edges).add_tied189,4370 -add_tied([],_,Edges,Edges).add_tied189,4370 -add_tied([N1|Vs],N,[N1-N|Edges],Edges0) :-add_tied190,4398 -add_tied([N1|Vs],N,[N1-N|Edges],Edges0) :-add_tied190,4398 -add_tied([N1|Vs],N,[N1-N|Edges],Edges0) :-add_tied190,4398 -distribute_tied_variables([], _, _, []).distribute_tied_variables193,4472 -distribute_tied_variables([], _, _, []).distribute_tied_variables193,4472 -distribute_tied_variables([N|Sort], TVars, I0, SortedVars) :-distribute_tied_variables194,4513 -distribute_tied_variables([N|Sort], TVars, I0, SortedVars) :-distribute_tied_variables194,4513 -distribute_tied_variables([N|Sort], TVars, I0, SortedVars) :-distribute_tied_variables194,4513 -distribute_tied([],I,I,Vs,Vs).distribute_tied199,4713 -distribute_tied([],I,I,Vs,Vs).distribute_tied199,4713 -distribute_tied([V|Vs],I0,In,[V|NVs],NVs0) :-distribute_tied200,4744 -distribute_tied([V|Vs],I0,In,[V|NVs],NVs0) :-distribute_tied200,4744 -distribute_tied([V|Vs],I0,In,[V|NVs],NVs0) :-distribute_tied200,4744 -extract_graph(AllVars, Graph) :-extract_graph206,4897 -extract_graph(AllVars, Graph) :-extract_graph206,4897 -extract_graph(AllVars, Graph) :-extract_graph206,4897 -get_edges([],[]).get_edges212,5067 -get_edges([],[]).get_edges212,5067 -get_edges([V|AllVars],Edges) :-get_edges213,5085 -get_edges([V|AllVars],Edges) :-get_edges213,5085 -get_edges([V|AllVars],Edges) :-get_edges213,5085 -add_parent_child([],_,Edges,Edges).add_parent_child218,5228 -add_parent_child([],_,Edges,Edges).add_parent_child218,5228 -add_parent_child([P|Parents],V,[P-V|Edges],Edges0) :-add_parent_child219,5264 -add_parent_child([P|Parents],V,[P-V|Edges],Edges0) :-add_parent_child219,5264 -add_parent_child([P|Parents],V,[P-V|Edges],Edges0) :-add_parent_child219,5264 -number_graph([], [], I, I).number_graph222,5362 -number_graph([], [], I, I).number_graph222,5362 -number_graph([V|SortedGraph], [I|Is], I0, IF) :-number_graph223,5390 -number_graph([V|SortedGraph], [I|Is], I0, IF) :-number_graph223,5390 -number_graph([V|SortedGraph], [I|Is], I0, IF) :-number_graph223,5390 -init_bnet(propositional, SortedGraph, NumberedGraph, Size, []) :-init_bnet230,5565 -init_bnet(propositional, SortedGraph, NumberedGraph, Size, []) :-init_bnet230,5565 -init_bnet(propositional, SortedGraph, NumberedGraph, Size, []) :-init_bnet230,5565 -init_bnet(tied, SortedGraph, NumberedGraph, Size, Representatives) :-init_bnet236,5807 -init_bnet(tied, SortedGraph, NumberedGraph, Size, Representatives) :-init_bnet236,5807 -init_bnet(tied, SortedGraph, NumberedGraph, Size, Representatives) :-init_bnet236,5807 -build_dag(SortedVertices, Size) :-build_dag241,6012 -build_dag(SortedVertices, Size) :-build_dag241,6012 -build_dag(SortedVertices, Size) :-build_dag241,6012 -get_numbered_edges([], []).get_numbered_edges245,6113 -get_numbered_edges([], []).get_numbered_edges245,6113 -get_numbered_edges([V|SortedVertices], Edges) :-get_numbered_edges246,6141 -get_numbered_edges([V|SortedVertices], Edges) :-get_numbered_edges246,6141 -get_numbered_edges([V|SortedVertices], Edges) :-get_numbered_edges246,6141 -add_numbered_edges([], _, Edges, Edges).add_numbered_edges252,6329 -add_numbered_edges([], _, Edges, Edges).add_numbered_edges252,6329 -add_numbered_edges([P|Ps], N, [PN-N|Edges], Edges0) :-add_numbered_edges253,6370 -add_numbered_edges([P|Ps], N, [PN-N|Edges], Edges0) :-add_numbered_edges253,6370 -add_numbered_edges([P|Ps], N, [PN-N|Edges], Edges0) :-add_numbered_edges253,6370 -v2number(V,N) :-v2number257,6486 -v2number(V,N) :-v2number257,6486 -v2number(V,N) :-v2number257,6486 -init_discrete_nodes(SortedGraph, Size) :-init_discrete_nodes260,6530 -init_discrete_nodes(SortedGraph, Size) :-init_discrete_nodes260,6530 -init_discrete_nodes(SortedGraph, Size) :-init_discrete_nodes260,6530 -mkdag(N,Els) :-mkdag264,6643 -mkdag(N,Els) :-mkdag264,6643 -mkdag(N,Els) :-mkdag264,6643 -add_els([],_,_).add_els272,6772 -add_els([],_,_).add_els272,6772 -add_els([X-Y|Els],N,Dag) :-add_els273,6789 -add_els([X-Y|Els],N,Dag) :-add_els273,6789 -add_els([X-Y|Els],N,Dag) :-add_els273,6789 -addzeros([]).addzeros278,6875 -addzeros([]).addzeros278,6875 -addzeros([0|L]) :- !,addzeros279,6889 -addzeros([0|L]) :- !,addzeros279,6889 -addzeros([0|L]) :- !,addzeros279,6889 -addzeros([1|L]) :-addzeros281,6925 -addzeros([1|L]) :-addzeros281,6925 -addzeros([1|L]) :-addzeros281,6925 -mksizes(SortedVertices, Size) :-mksizes284,6959 -mksizes(SortedVertices, Size) :-mksizes284,6959 -mksizes(SortedVertices, Size) :-mksizes284,6959 -get_szs([],[]).get_szs288,7066 -get_szs([],[]).get_szs288,7066 -get_szs([V|SortedVertices],[LD|Sizes]) :-get_szs289,7082 -get_szs([V|SortedVertices],[LD|Sizes]) :-get_szs289,7082 -get_szs([V|SortedVertices],[LD|Sizes]) :-get_szs289,7082 -dump_cpts([], []).dump_cpts294,7221 -dump_cpts([], []).dump_cpts294,7221 -dump_cpts([V|SortedGraph], [I|Is]) :-dump_cpts295,7240 -dump_cpts([V|SortedGraph], [I|Is]) :-dump_cpts295,7240 -dump_cpts([V|SortedGraph], [I|Is]) :-dump_cpts295,7240 -reorder_cpt(CPT,_, [], CPT) :- !.reorder_cpt305,7491 -reorder_cpt(CPT,_, [], CPT) :- !.reorder_cpt305,7491 -reorder_cpt(CPT,_, [], CPT) :- !.reorder_cpt305,7491 -reorder_cpt(CPT,V,Parents,Tab) :-reorder_cpt306,7525 -reorder_cpt(CPT,V,Parents,Tab) :-reorder_cpt306,7525 -reorder_cpt(CPT,V,Parents,Tab) :-reorder_cpt306,7525 -get_sizes_and_ids([],[]).get_sizes_and_ids317,7791 -get_sizes_and_ids([],[]).get_sizes_and_ids317,7791 -get_sizes_and_ids([V|Parents],[Id-V|Ids]) :-get_sizes_and_ids318,7817 -get_sizes_and_ids([V|Parents],[Id-V|Ids]) :-get_sizes_and_ids318,7817 -get_sizes_and_ids([V|Parents],[Id-V|Ids]) :-get_sizes_and_ids318,7817 -extract_vars([], L, L).extract_vars322,7924 -extract_vars([], L, L).extract_vars322,7924 -extract_vars([_-V|NIds], NParents, Vs) :-extract_vars323,7948 -extract_vars([_-V|NIds], NParents, Vs) :-extract_vars323,7948 -extract_vars([_-V|NIds], NParents, Vs) :-extract_vars323,7948 -mkcpt(BayesNet, I, Tab) :-mkcpt326,8030 -mkcpt(BayesNet, I, Tab) :-mkcpt326,8030 -mkcpt(BayesNet, I, Tab) :-mkcpt326,8030 -dump_tied_cpts(Graph, Is, Reps) :-dump_tied_cpts329,8114 -dump_tied_cpts(Graph, Is, Reps) :-dump_tied_cpts329,8114 -dump_tied_cpts(Graph, Is, Reps) :-dump_tied_cpts329,8114 -create_class_vector([], [], [],[]).create_class_vector337,8393 -create_class_vector([], [], [],[]).create_class_vector337,8393 -create_class_vector([V|Graph], [I|Is], [Id|Classes], [Id-v(V,I,Parents)|Sets]) :-create_class_vector338,8429 -create_class_vector([V|Graph], [I|Is], [Id|Classes], [Id-v(V,I,Parents)|Sets]) :-create_class_vector338,8429 -create_class_vector([V|Graph], [I|Is], [Id|Classes], [Id-v(V,I,Parents)|Sets]) :-create_class_vector338,8429 -representatives([],[]).representatives342,8599 -representatives([],[]).representatives342,8599 -representatives([Class-Rep|Reps1],[Class-Rep|Reps]) :-representatives343,8623 -representatives([Class-Rep|Reps1],[Class-Rep|Reps]) :-representatives343,8623 -representatives([Class-Rep|Reps1],[Class-Rep|Reps]) :-representatives343,8623 -nonrepresentatives([Class-_|Reps1], Class, Reps2) :- !,nonrepresentatives347,8751 -nonrepresentatives([Class-_|Reps1], Class, Reps2) :- !,nonrepresentatives347,8751 -nonrepresentatives([Class-_|Reps1], Class, Reps2) :- !,nonrepresentatives347,8751 -nonrepresentatives(Reps, _, Reps).nonrepresentatives349,8849 -nonrepresentatives(Reps, _, Reps).nonrepresentatives349,8849 -dump_tied_cpts([]).dump_tied_cpts352,8886 -dump_tied_cpts([]).dump_tied_cpts352,8886 -dump_tied_cpts([Class-v(V,Id,Parents)|SortedGraph]) :-dump_tied_cpts353,8906 -dump_tied_cpts([Class-v(V,Id,Parents)|SortedGraph]) :-dump_tied_cpts353,8906 -dump_tied_cpts([Class-v(V,Id,Parents)|SortedGraph]) :-dump_tied_cpts353,8906 -mktiedcpt(BayesNet, V, Class, Tab) :-mktiedcpt359,9087 -mktiedcpt(BayesNet, V, Class, Tab) :-mktiedcpt359,9087 -mktiedcpt(BayesNet, V, Class, Tab) :-mktiedcpt359,9087 -set_inference :-set_inference362,9186 -init_solver(jtree) :-init_solver366,9247 -init_solver(jtree) :-init_solver366,9247 -init_solver(jtree) :-init_solver366,9247 -init_solver(belprop) :-init_solver368,9305 -init_solver(belprop) :-init_solver368,9305 -init_solver(belprop) :-init_solver368,9305 -init_solver(likelihood_weighting) :-init_solver370,9367 -init_solver(likelihood_weighting) :-init_solver370,9367 -init_solver(likelihood_weighting) :-init_solver370,9367 -init_solver(enumerative) :-init_solver372,9455 -init_solver(enumerative) :-init_solver372,9455 -init_solver(enumerative) :-init_solver372,9455 -init_solver(gibbs) :-init_solver374,9525 -init_solver(gibbs) :-init_solver374,9525 -init_solver(gibbs) :-init_solver374,9525 -init_solver(global_joint) :-init_solver376,9592 -init_solver(global_joint) :-init_solver376,9592 -init_solver(global_joint) :-init_solver376,9592 -init_solver(pearl) :-init_solver378,9664 -init_solver(pearl) :-init_solver378,9664 -init_solver(pearl) :-init_solver378,9664 -init_solver(var_elim) :-init_solver380,9722 -init_solver(var_elim) :-init_solver380,9722 -init_solver(var_elim) :-init_solver380,9722 -add_evidence(Graph, Size, Is) :-add_evidence383,9787 -add_evidence(Graph, Size, Is) :-add_evidence383,9787 -add_evidence(Graph, Size, Is) :-add_evidence383,9787 -mk_evidence([], [], []).mk_evidence388,9960 -mk_evidence([], [], []).mk_evidence388,9960 -mk_evidence([V|L], [I|Is], [ar(1,I,EvVal1)|LN]) :-mk_evidence389,9985 -mk_evidence([V|L], [I|Is], [ar(1,I,EvVal1)|LN]) :-mk_evidence389,9985 -mk_evidence([V|L], [I|Is], [ar(1,I,EvVal1)|LN]) :-mk_evidence389,9985 -mk_evidence([_|L], [_|Is], LN) :-mk_evidence393,10124 -mk_evidence([_|L], [_|Is], LN) :-mk_evidence393,10124 -mk_evidence([_|L], [_|Is], LN) :-mk_evidence393,10124 -evidence_val(Ev,Val,[Ev|_],Val) :- !.evidence_val396,10184 -evidence_val(Ev,Val,[Ev|_],Val) :- !.evidence_val396,10184 -evidence_val(Ev,Val,[Ev|_],Val) :- !.evidence_val396,10184 -evidence_val(Ev,I0,[_|Domain],Val) :-evidence_val397,10222 -evidence_val(Ev,I0,[_|Domain],Val) :-evidence_val397,10222 -evidence_val(Ev,I0,[_|Domain],Val) :-evidence_val397,10222 -marginalize([[V]], _SortedVars,_NunmberedVars, Ps) :- !,marginalize401,10307 -marginalize([[V]], _SortedVars,_NunmberedVars, Ps) :- !,marginalize401,10307 -marginalize([[V]], _SortedVars,_NunmberedVars, Ps) :- !,marginalize401,10307 -marginalize([Vs], SortedVars, NumberedVars,Ps) :-marginalize406,10462 -marginalize([Vs], SortedVars, NumberedVars,Ps) :-marginalize406,10462 -marginalize([Vs], SortedVars, NumberedVars,Ps) :-marginalize406,10462 -cycle_values(_D, _Ev, _Vs, _Size, [], []).cycle_values414,10718 -cycle_values(_D, _Ev, _Vs, _Size, [], []).cycle_values414,10718 -cycle_values(Den,Ev,Vs,Size,[H|T],[HP|TP]):-cycle_values416,10762 -cycle_values(Den,Ev,Vs,Size,[H|T],[HP|TP]):-cycle_values416,10762 -cycle_values(Den,Ev,Vs,Size,[H|T],[HP|TP]):-cycle_values416,10762 -mk_evidence_query([], [], []).mk_evidence_query425,11100 -mk_evidence_query([], [], []).mk_evidence_query425,11100 -mk_evidence_query([V|L], [H|T], [ar(1,Pos,El)|LN]) :-mk_evidence_query426,11131 -mk_evidence_query([V|L], [H|T], [ar(1,Pos,El)|LN]) :-mk_evidence_query426,11131 -mk_evidence_query([V|L], [H|T], [ar(1,Pos,El)|LN]) :-mk_evidence_query426,11131 - -packages/CLPBN/clpbn/connected.yap,6301 -factor_influences(Vs, QVars, Ev, LV) :-factor_influences27,412 -factor_influences(Vs, QVars, Ev, LV) :-factor_influences27,412 -factor_influences(Vs, QVars, Ev, LV) :-factor_influences27,412 -init_factor_influences(Vs, G, RG) :-init_factor_influences31,524 -init_factor_influences(Vs, G, RG) :-init_factor_influences31,524 -init_factor_influences(Vs, G, RG) :-init_factor_influences31,524 -influences(Vs, QVars, LV) :-influences36,642 -influences(Vs, QVars, LV) :-influences36,642 -influences(Vs, QVars, LV) :-influences36,642 -init_influences(Vs, G, RG) :-init_influences40,736 -init_influences(Vs, G, RG) :-init_influences40,736 -init_influences(Vs, G, RG) :-init_influences40,736 -factor_to_dgraph(fn([V|Parents],_,_,_,_), G0, G) :-factor_to_dgraph45,833 -factor_to_dgraph(fn([V|Parents],_,_,_,_), G0, G) :-factor_to_dgraph45,833 -factor_to_dgraph(fn([V|Parents],_,_,_,_), G0, G) :-factor_to_dgraph45,833 -to_dgraph([], G, G).to_dgraph50,985 -to_dgraph([], G, G).to_dgraph50,985 -to_dgraph([V|Vs], G0, G) :-to_dgraph51,1006 -to_dgraph([V|Vs], G0, G) :-to_dgraph51,1006 -to_dgraph([V|Vs], G0, G) :-to_dgraph51,1006 -build_edges([], _, []).build_edges58,1200 -build_edges([], _, []).build_edges58,1200 -build_edges([P|Parents], V, [P-V|Edges]) :-build_edges59,1224 -build_edges([P|Parents], V, [P-V|Edges]) :-build_edges59,1224 -build_edges([P|Parents], V, [P-V|Edges]) :-build_edges59,1224 -influences(Vs, G, RG, Vars) :-influences63,1353 -influences(Vs, G, RG, Vars) :-influences63,1353 -influences(Vs, G, RG, Vars) :-influences63,1353 -influences(Vs, Evs, G, RG, Vars) :-influences67,1470 -influences(Vs, Evs, G, RG, Vars) :-influences67,1470 -influences(Vs, Evs, G, RG, Vars) :-influences67,1470 -influence(_, _G, _RG, V, Vs, Vs) :-influence72,1610 -influence(_, _G, _RG, V, Vs, Vs) :-influence72,1610 -influence(_, _G, _RG, V, Vs, Vs) :-influence72,1610 -influence(Ev, G, RG, V, Vs0, Vs) :-influence74,1691 -influence(Ev, G, RG, V, Vs0, Vs) :-influence74,1691 -influence(Ev, G, RG, V, Vs0, Vs) :-influence74,1691 -process_new_variable(V, _Evs, _G, _RG, _Vs0, _Vs1) :-process_new_variable78,1806 -process_new_variable(V, _Evs, _G, _RG, _Vs0, _Vs1) :-process_new_variable78,1806 -process_new_variable(V, _Evs, _G, _RG, _Vs0, _Vs1) :-process_new_variable78,1806 -process_new_variable(V, Evs, _G, _RG, _Vs0, _Vs1) :-process_new_variable82,1947 -process_new_variable(V, Evs, _G, _RG, _Vs0, _Vs1) :-process_new_variable82,1947 -process_new_variable(V, Evs, _G, _RG, _Vs0, _Vs1) :-process_new_variable82,1947 -process_new_variable(V, Evs, G, RG, Vs0, Vs2) :-process_new_variable85,2067 -process_new_variable(V, Evs, G, RG, Vs0, Vs2) :-process_new_variable85,2067 -process_new_variable(V, Evs, G, RG, Vs0, Vs2) :-process_new_variable85,2067 -throw_below(Evs, G, RG, Child, Vs0, Vs1) :-throw_below92,2302 -throw_below(Evs, G, RG, Child, Vs0, Vs1) :-throw_below92,2302 -throw_below(Evs, G, RG, Child, Vs0, Vs1) :-throw_below92,2302 -throw_below(Evs, G, RG, Child, Vs0, Vs2) :-throw_below102,2513 -throw_below(Evs, G, RG, Child, Vs0, Vs2) :-throw_below102,2513 -throw_below(Evs, G, RG, Child, Vs0, Vs2) :-throw_below102,2513 -handle_ball_from_above(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_above107,2695 -handle_ball_from_above(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_above107,2695 -handle_ball_from_above(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_above107,2695 -handle_ball_from_above(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_above112,2879 -handle_ball_from_above(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_above112,2879 -handle_ball_from_above(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_above112,2879 -handle_ball_from_above(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_above118,3087 -handle_ball_from_above(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_above118,3087 -handle_ball_from_above(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_above118,3087 -throw_above(Evs, G, RG, Parent, Vs0, Vs1) :-throw_above123,3237 -throw_above(Evs, G, RG, Parent, Vs0, Vs1) :-throw_above123,3237 -throw_above(Evs, G, RG, Parent, Vs0, Vs1) :-throw_above123,3237 -throw_above(Evs, G, RG, Parent, Vs0, Vs2) :-throw_above133,3451 -throw_above(Evs, G, RG, Parent, Vs0, Vs2) :-throw_above133,3451 -throw_above(Evs, G, RG, Parent, Vs0, Vs2) :-throw_above133,3451 -handle_ball_from_below(V, _Evs, _, _, Vs, Vs) :-handle_ball_from_below138,3636 -handle_ball_from_below(V, _Evs, _, _, Vs, Vs) :-handle_ball_from_below138,3636 -handle_ball_from_below(V, _Evs, _, _, Vs, Vs) :-handle_ball_from_below138,3636 -handle_ball_from_below(V, Evs, _, _, Vs, Vs) :-handle_ball_from_below141,3731 -handle_ball_from_below(V, Evs, _, _, Vs, Vs) :-handle_ball_from_below141,3731 -handle_ball_from_below(V, Evs, _, _, Vs, Vs) :-handle_ball_from_below141,3731 -handle_ball_from_below(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_below145,3851 -handle_ball_from_below(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_below145,3851 -handle_ball_from_below(V, Evs, G, RG, Vs0, Vs1) :-handle_ball_from_below145,3851 -propagate_ball_from_below([], Evs, V, G, RG, Vs0, Vs1) :- !,propagate_ball_from_below149,4000 -propagate_ball_from_below([], Evs, V, G, RG, Vs0, Vs1) :- !,propagate_ball_from_below149,4000 -propagate_ball_from_below([], Evs, V, G, RG, Vs0, Vs1) :- !,propagate_ball_from_below149,4000 -propagate_ball_from_below(Parents, Evs, _V, G, RG, Vs0, Vs1) :-propagate_ball_from_below152,4149 -propagate_ball_from_below(Parents, Evs, _V, G, RG, Vs0, Vs1) :-propagate_ball_from_below152,4149 -propagate_ball_from_below(Parents, Evs, _V, G, RG, Vs0, Vs1) :-propagate_ball_from_below152,4149 -all_top(T, Evs, Vs) :-all_top155,4266 -all_top(T, Evs, Vs) :-all_top155,4266 -all_top(T, Evs, Vs) :-all_top155,4266 -get_top(_EVs, V-[T|_], Vs, [V|Vs]) :-get_top159,4349 -get_top(_EVs, V-[T|_], Vs, [V|Vs]) :-get_top159,4349 -get_top(_EVs, V-[T|_], Vs, [V|Vs]) :-get_top159,4349 -get_top(_EVs, V-_, Vs, [V|Vs]) :-get_top161,4399 -get_top(_EVs, V-_, Vs, [V|Vs]) :-get_top161,4399 -get_top(_EVs, V-_, Vs, [V|Vs]) :-get_top161,4399 -get_top(EVs, V-_, Vs, [V|Vs]) :-get_top164,4479 -get_top(EVs, V-_, Vs, [V|Vs]) :-get_top164,4479 -get_top(EVs, V-_, Vs, [V|Vs]) :-get_top164,4479 -get_top(_, _, Vs, Vs).get_top167,4550 -get_top(_, _, Vs, Vs).get_top167,4550 - -packages/CLPBN/clpbn/discrete_utils.yap,6808 -project_from_CPT(V,f(Table,Deps,Szs),f(NewTable,NDeps,NSzs)) :-project_from_CPT15,218 -project_from_CPT(V,f(Table,Deps,Szs),f(NewTable,NDeps,NSzs)) :-project_from_CPT15,218 -project_from_CPT(V,f(Table,Deps,Szs),f(NewTable,NDeps,NSzs)) :-project_from_CPT15,218 -propagate_evidence(V, Evs) :-propagate_evidence23,492 -propagate_evidence(V, Evs) :-propagate_evidence23,492 -propagate_evidence(V, Evs) :-propagate_evidence23,492 -propagate_evidence(_, _).propagate_evidence33,763 -propagate_evidence(_, _).propagate_evidence33,763 -generate_szs_with_evidence([],_,_,[],_).generate_szs_with_evidence35,790 -generate_szs_with_evidence([],_,_,[],_).generate_szs_with_evidence35,790 -generate_szs_with_evidence([_|Out],Ev,Ev,[ok|Evs],found) :- !,generate_szs_with_evidence36,831 -generate_szs_with_evidence([_|Out],Ev,Ev,[ok|Evs],found) :- !,generate_szs_with_evidence36,831 -generate_szs_with_evidence([_|Out],Ev,Ev,[ok|Evs],found) :- !,generate_szs_with_evidence36,831 -generate_szs_with_evidence([_|Out],Ev,I0,[not_ok|Evs],Found) :-generate_szs_with_evidence39,955 -generate_szs_with_evidence([_|Out],Ev,I0,[not_ok|Evs],Found) :-generate_szs_with_evidence39,955 -generate_szs_with_evidence([_|Out],Ev,I0,[not_ok|Evs],Found) :-generate_szs_with_evidence39,955 -find_projection_factor([V|Deps], V1, Deps, [Sz|Szs], Szs, F, Sz) :-find_projection_factor43,1081 -find_projection_factor([V|Deps], V1, Deps, [Sz|Szs], Szs, F, Sz) :-find_projection_factor43,1081 -find_projection_factor([V|Deps], V1, Deps, [Sz|Szs], Szs, F, Sz) :-find_projection_factor43,1081 -find_projection_factor([V|Deps], V1, [V|NDeps], [Sz|Szs], [Sz|NSzs], F, NSz) :-find_projection_factor46,1180 -find_projection_factor([V|Deps], V1, [V|NDeps], [Sz|Szs], [Sz|NSzs], F, NSz) :-find_projection_factor46,1180 -find_projection_factor([V|Deps], V1, [V|NDeps], [Sz|Szs], [Sz|NSzs], F, NSz) :-find_projection_factor46,1180 -mult([], F, F).mult49,1322 -mult([], F, F).mult49,1322 -mult([Sz|Szs], Sz0, F) :-mult50,1338 -mult([Sz|Szs], Sz0, F) :-mult50,1338 -mult([Sz|Szs], Sz0, F) :-mult50,1338 -project_outer_loop(OLoop,OLoop,_,_,_,_,[]) :- !.project_outer_loop54,1401 -project_outer_loop(OLoop,OLoop,_,_,_,_,[]) :- !.project_outer_loop54,1401 -project_outer_loop(OLoop,OLoop,_,_,_,_,[]) :- !.project_outer_loop54,1401 -project_outer_loop(I,OLoop,F,Sz,Table,Evs,NTabl) :-project_outer_loop55,1450 -project_outer_loop(I,OLoop,F,Sz,Table,Evs,NTabl) :-project_outer_loop55,1450 -project_outer_loop(I,OLoop,F,Sz,Table,Evs,NTabl) :-project_outer_loop55,1450 -project_mid_loop(F,F,_,_,_,_,NTabl,NTabl) :- !.project_mid_loop61,1640 -project_mid_loop(F,F,_,_,_,_,NTabl,NTabl) :- !.project_mid_loop61,1640 -project_mid_loop(F,F,_,_,_,_,NTabl,NTabl) :- !.project_mid_loop61,1640 -project_mid_loop(I,F,Base,Sz,Table,Evs,[Ent|NTablF],NTabl0) :-project_mid_loop62,1688 -project_mid_loop(I,F,Base,Sz,Table,Evs,[Ent|NTablF],NTabl0) :-project_mid_loop62,1688 -project_mid_loop(I,F,Base,Sz,Table,Evs,[Ent|NTablF],NTabl0) :-project_mid_loop62,1688 -project_inner_loop(Sz,Sz,[],_,_,_,Ent,Ent) :- !.project_inner_loop68,1892 -project_inner_loop(Sz,Sz,[],_,_,_,Ent,Ent) :- !.project_inner_loop68,1892 -project_inner_loop(Sz,Sz,[],_,_,_,Ent,Ent) :- !.project_inner_loop68,1892 -project_inner_loop(I,Sz,[ok|Evs],NBase,F,Table,Ent0,Ent) :- !,project_inner_loop69,1941 -project_inner_loop(I,Sz,[ok|Evs],NBase,F,Table,Ent0,Ent) :- !,project_inner_loop69,1941 -project_inner_loop(I,Sz,[ok|Evs],NBase,F,Table,Ent0,Ent) :- !,project_inner_loop69,1941 -project_inner_loop(I,Sz,[_|Evs],NBase,F,Table,Ent0,Ent) :- !,project_inner_loop75,2130 -project_inner_loop(I,Sz,[_|Evs],NBase,F,Table,Ent0,Ent) :- !,project_inner_loop75,2130 -project_inner_loop(I,Sz,[_|Evs],NBase,F,Table,Ent0,Ent) :- !,project_inner_loop75,2130 -reorder_CPT(Vs0, T0, Vs, TF, Sizes) :-reorder_CPT85,2456 -reorder_CPT(Vs0, T0, Vs, TF, Sizes) :-reorder_CPT85,2456 -reorder_CPT(Vs0, T0, Vs, TF, Sizes) :-reorder_CPT85,2456 -reorder_CPT(Vs0, T0, Vs, TF, Sizes) :-reorder_CPT95,2726 -reorder_CPT(Vs0, T0, Vs, TF, Sizes) :-reorder_CPT95,2726 -reorder_CPT(Vs0, T0, Vs, TF, Sizes) :-reorder_CPT95,2726 -numb_vars([], [], 1, [], []).numb_vars105,3005 -numb_vars([], [], 1, [], []).numb_vars105,3005 -numb_vars([V|Vs], [L|Ls], A0, [Ai|VPs], [V-(L,_)|VLs]) :-numb_vars106,3035 -numb_vars([V|Vs], [L|Ls], A0, [Ai|VPs], [V-(L,_)|VLs]) :-numb_vars106,3035 -numb_vars([V|Vs], [L|Ls], A0, [Ai|VPs], [V-(L,_)|VLs]) :-numb_vars106,3035 -sort_according_to_parent([],[], []).sort_according_to_parent110,3141 -sort_according_to_parent([],[], []).sort_according_to_parent110,3141 -sort_according_to_parent([V|Vs],VLs0, [Arg|VLs]) :-sort_according_to_parent111,3178 -sort_according_to_parent([V|Vs],VLs0, [Arg|VLs]) :-sort_according_to_parent111,3178 -sort_according_to_parent([V|Vs],VLs0, [Arg|VLs]) :-sort_according_to_parent111,3178 -fetch_var(V,[V0-(L,A)|VLs],VLs,V0-(L,A)) :- V == V0, !.fetch_var115,3301 -fetch_var(V,[V0-(L,A)|VLs],VLs,V0-(L,A)) :- V == V0, !.fetch_var115,3301 -fetch_var(V,[V0-(L,A)|VLs],VLs,V0-(L,A)) :- V == V0, !.fetch_var115,3301 -fetch_var(V,[A|VLs0],[A|VLsI],Arg) :-fetch_var116,3357 -fetch_var(V,[A|VLs0],[A|VLsI],Arg) :-fetch_var116,3357 -fetch_var(V,[A|VLs0],[A|VLsI],Arg) :-fetch_var116,3357 -compute_new_factors([], 1, [], []).compute_new_factors119,3425 -compute_new_factors([], 1, [], []).compute_new_factors119,3425 -compute_new_factors([V-(L,F)|VLs], NF, [V|Vs], [L|Szs]) :-compute_new_factors120,3461 -compute_new_factors([V-(L,F)|VLs], NF, [V|Vs], [L|Szs]) :-compute_new_factors120,3461 -compute_new_factors([V-(L,F)|VLs], NF, [V|Vs], [L|Szs]) :-compute_new_factors120,3461 -get_factors([],[]).get_factors124,3572 -get_factors([],[]).get_factors124,3572 -get_factors([_-(_,F)|VLs0],[F|Fs]) :-get_factors125,3592 -get_factors([_-(_,F)|VLs0],[F|Fs]) :-get_factors125,3592 -get_factors([_-(_,F)|VLs0],[F|Fs]) :-get_factors125,3592 -copy_to_new_array([], _, _, _, _).copy_to_new_array128,3654 -copy_to_new_array([], _, _, _, _).copy_to_new_array128,3654 -copy_to_new_array([P|Ps], I, F0s, Fs, S) :-copy_to_new_array129,3689 -copy_to_new_array([P|Ps], I, F0s, Fs, S) :-copy_to_new_array129,3689 -copy_to_new_array([P|Ps], I, F0s, Fs, S) :-copy_to_new_array129,3689 -convert_factor([], [], _, 0).convert_factor136,3844 -convert_factor([], [], _, 0).convert_factor136,3844 -convert_factor([F0|F0s], [F|Fs], I, OUT) :-convert_factor137,3874 -convert_factor([F0|F0s], [F|Fs], I, OUT) :-convert_factor137,3874 -convert_factor([F0|F0s], [F|Fs], I, OUT) :-convert_factor137,3874 -get_sizes([], []).get_sizes144,4018 -get_sizes([], []).get_sizes144,4018 -get_sizes([V|Deps], [Sz|Sizes]) :-get_sizes145,4037 -get_sizes([V|Deps], [Sz|Sizes]) :-get_sizes145,4037 -get_sizes([V|Deps], [Sz|Sizes]) :-get_sizes145,4037 - -packages/CLPBN/clpbn/display.yap,4478 -attribute_goal(V, G) :-attribute_goal24,335 -attribute_goal(V, G) :-attribute_goal24,335 -attribute_goal(V, G) :-attribute_goal24,335 -massage_out([], _Ev, _, Out, _, _V) :- !,massage_out29,494 -massage_out([], _Ev, _, Out, _, _V) :- !,massage_out29,494 -massage_out([], _Ev, _, Out, _, _V) :- !,massage_out29,494 -massage_out(Vs, [D], [P], O, AllDiffs, _) :- !,massage_out31,562 -massage_out(Vs, [D], [P], O, AllDiffs, _) :- !,massage_out31,562 -massage_out(Vs, [D], [P], O, AllDiffs, _) :- !,massage_out31,562 -massage_out(Vs, [D|Ds], [P|Ps], (p(CEqs)=P,G) , AllDiffs, V) :-massage_out36,749 -massage_out(Vs, [D|Ds], [P|Ps], (p(CEqs)=P,G) , AllDiffs, V) :-massage_out36,749 -massage_out(Vs, [D|Ds], [P|Ps], (p(CEqs)=P,G) , AllDiffs, V) :-massage_out36,749 -out_query_evidence(Out) :-out_query_evidence41,910 -out_query_evidence(Out) :-out_query_evidence41,910 -out_query_evidence(Out) :-out_query_evidence41,910 -out_query_evidence(true).out_query_evidence45,1075 -out_query_evidence(true).out_query_evidence45,1075 -process_qv(Evidence, V, L0, LF) :-process_qv47,1102 -process_qv(Evidence, V, L0, LF) :-process_qv47,1102 -process_qv(Evidence, V, L0, LF) :-process_qv47,1102 -process_qv(_Ev, _V, L, L).process_qv52,1260 -process_qv(_Ev, _V, L, L).process_qv52,1260 -list_to_conj([], true).list_to_conj54,1288 -list_to_conj([], true).list_to_conj54,1288 -list_to_conj([O], O) :- !.list_to_conj55,1312 -list_to_conj([O], O) :- !.list_to_conj55,1312 -list_to_conj([O], O) :- !.list_to_conj55,1312 -list_to_conj([O|OL], (O,Out)) :-list_to_conj56,1339 -list_to_conj([O|OL], (O,Out)) :-list_to_conj56,1339 -list_to_conj([O|OL], (O,Out)) :-list_to_conj56,1339 -add_goal(V, Ev, DVal, Ev, I, L, [(p(V=DVal) = 1.0)|L]) :- !,add_goal59,1397 -add_goal(V, Ev, DVal, Ev, I, L, [(p(V=DVal) = 1.0)|L]) :- !,add_goal59,1397 -add_goal(V, Ev, DVal, Ev, I, L, [(p(V=DVal) = 1.0)|L]) :- !,add_goal59,1397 -add_goal(V, _Ev, DVal, I0, I, L, [(p(V=DVal) = 0.0)|L]) :- !,add_goal61,1470 -add_goal(V, _Ev, DVal, I0, I, L, [(p(V=DVal) = 0.0)|L]) :- !,add_goal61,1470 -add_goal(V, _Ev, DVal, I0, I, L, [(p(V=DVal) = 0.0)|L]) :- !,add_goal61,1470 -gen_eqs([V], [D], (V=D)) :- !.gen_eqs65,1546 -gen_eqs([V], [D], (V=D)) :- !.gen_eqs65,1546 -gen_eqs([V], [D], (V=D)) :- !.gen_eqs65,1546 -gen_eqs([V], D, (V=D)) :- !.gen_eqs66,1577 -gen_eqs([V], D, (V=D)) :- !.gen_eqs66,1577 -gen_eqs([V], D, (V=D)) :- !.gen_eqs66,1577 -gen_eqs([V|Vs], [D|Ds], ((V=D),Eqs)) :-gen_eqs67,1606 -gen_eqs([V|Vs], [D|Ds], ((V=D),Eqs)) :-gen_eqs67,1606 -gen_eqs([V|Vs], [D|Ds], ((V=D),Eqs)) :-gen_eqs67,1606 -add_alldiffs([],Eqs,Eqs) :- !.add_alldiffs70,1668 -add_alldiffs([],Eqs,Eqs) :- !.add_alldiffs70,1668 -add_alldiffs([],Eqs,Eqs) :- !.add_alldiffs70,1668 -add_alldiffs(AllDiffs,Eqs,(Eqs/alldiff(AllDiffs))).add_alldiffs71,1699 -add_alldiffs(AllDiffs,Eqs,(Eqs/alldiff(AllDiffs))).add_alldiffs71,1699 -clpbn_bind_vals([],[],_).clpbn_bind_vals74,1753 -clpbn_bind_vals([],[],_).clpbn_bind_vals74,1753 -clpbn_bind_vals([Vs|MoreVs],[Ps|MorePs],AllDiffs) :-clpbn_bind_vals75,1779 -clpbn_bind_vals([Vs|MoreVs],[Ps|MorePs],AllDiffs) :-clpbn_bind_vals75,1779 -clpbn_bind_vals([Vs|MoreVs],[Ps|MorePs],AllDiffs) :-clpbn_bind_vals75,1779 -clpbn_bind_vals2([],_,_) :- !.clpbn_bind_vals279,1912 -clpbn_bind_vals2([],_,_) :- !.clpbn_bind_vals279,1912 -clpbn_bind_vals2([],_,_) :- !.clpbn_bind_vals279,1912 -clpbn_bind_vals2([V],Ps,AllDiffs) :-clpbn_bind_vals281,2003 -clpbn_bind_vals2([V],Ps,AllDiffs) :-clpbn_bind_vals281,2003 -clpbn_bind_vals2([V],Ps,AllDiffs) :-clpbn_bind_vals281,2003 -clpbn_bind_vals2(Vs,Ps,AllDiffs) :-clpbn_bind_vals288,2258 -clpbn_bind_vals2(Vs,Ps,AllDiffs) :-clpbn_bind_vals288,2258 -clpbn_bind_vals2(Vs,Ps,AllDiffs) :-clpbn_bind_vals288,2258 -get_all_combs(Vs, Vals) :-get_all_combs93,2383 -get_all_combs(Vs, Vals) :-get_all_combs93,2383 -get_all_combs(Vs, Vals) :-get_all_combs93,2383 -get_all_doms([], []).get_all_doms97,2460 -get_all_doms([], []).get_all_doms97,2460 -get_all_doms([V|Vs], [D|Ds]) :-get_all_doms98,2482 -get_all_doms([V|Vs], [D|Ds]) :-get_all_doms98,2482 -get_all_doms([V|Vs], [D|Ds]) :-get_all_doms98,2482 -get_all_doms([V|Vs], [D|Ds]) :-get_all_doms102,2598 -get_all_doms([V|Vs], [D|Ds]) :-get_all_doms102,2598 -get_all_doms([V|Vs], [D|Ds]) :-get_all_doms102,2598 -ms([], []).ms107,2702 -ms([], []).ms107,2702 -ms([H|L], [El|Els]) :-ms108,2714 -ms([H|L], [El|Els]) :-ms108,2714 -ms([H|L], [El|Els]) :-ms108,2714 - -packages/CLPBN/clpbn/dists.yap,14605 -id(1).id99,1768 -id(1).id99,1768 -new_id(Id) :-new_id101,1776 -new_id(Id) :-new_id101,1776 -new_id(Id) :-new_id101,1776 -reset_id :-reset_id106,1841 -dists(X) :- id(X1), X is X1-1.dists110,1887 -dists(X) :- id(X1), X is X1-1.dists110,1887 -dists(X) :- id(X1), X is X1-1.dists110,1887 -dist(V, Id, Key, Parents) :-dist112,1919 -dist(V, Id, Key, Parents) :-dist112,1919 -dist(V, Id, Key, Parents) :-dist112,1919 -dist(V, Id, Key, Parents) :-dist115,2021 -dist(V, Id, Key, Parents) :-dist115,2021 -dist(V, Id, Key, Parents) :-dist115,2021 -dist(avg(Domain, Parents), avg(Domain), _, Parents).dist118,2103 -dist(avg(Domain, Parents), avg(Domain), _, Parents).dist118,2103 -dist(ip(Domain, Tabs, Parents), ip(Domain,Tabs), _, Parents).dist119,2156 -dist(ip(Domain, Tabs, Parents), ip(Domain,Tabs), _, Parents).dist119,2156 -dist(max(Domain, Parents), max(Domain), _, Parents).dist120,2218 -dist(max(Domain, Parents), max(Domain), _, Parents).dist120,2218 -dist(min(Domain, Parents), min(Domain), _, Parents).dist121,2271 -dist(min(Domain, Parents), min(Domain), _, Parents).dist121,2271 -dist(cons(Domain, Parent), cons(Domain), _, Parent).dist122,2324 -dist(cons(Domain, Parent), cons(Domain), _, Parent).dist122,2324 -dist(p(Type, CPT), Id, Key, FParents) :-dist123,2377 -dist(p(Type, CPT), Id, Key, FParents) :-dist123,2377 -dist(p(Type, CPT), Id, Key, FParents) :-dist123,2377 -dist(p(Type, CPT, Parents), Id, Key, FParents) :-dist126,2496 -dist(p(Type, CPT, Parents), Id, Key, FParents) :-dist126,2496 -dist(p(Type, CPT, Parents), Id, Key, FParents) :-dist126,2496 -dist_unbound(V, ground(V)) :-dist_unbound130,2630 -dist_unbound(V, ground(V)) :-dist_unbound130,2630 -dist_unbound(V, ground(V)) :-dist_unbound130,2630 -dist_unbound(p(Type,_), ground(Type)) :-dist_unbound132,2672 -dist_unbound(p(Type,_), ground(Type)) :-dist_unbound132,2672 -dist_unbound(p(Type,_), ground(Type)) :-dist_unbound132,2672 -dist_unbound(p(_,CPT), ground(CPT)) :-dist_unbound134,2734 -dist_unbound(p(_,CPT), ground(CPT)) :-dist_unbound134,2734 -dist_unbound(p(_,CPT), ground(CPT)) :-dist_unbound134,2734 -dist_unbound(p(Type,_,_), ground(Type)) :-dist_unbound136,2790 -dist_unbound(p(Type,_,_), ground(Type)) :-dist_unbound136,2790 -dist_unbound(p(Type,_,_), ground(Type)) :-dist_unbound136,2790 -dist_unbound(p(_,CPT,_), ground(CPT)) :-dist_unbound138,2854 -dist_unbound(p(_,CPT,_), ground(CPT)) :-dist_unbound138,2854 -dist_unbound(p(_,CPT,_), ground(CPT)) :-dist_unbound138,2854 -distribution(bool, trans(CPT), Id, Key, Parents, FParents) :-distribution141,2913 -distribution(bool, trans(CPT), Id, Key, Parents, FParents) :-distribution141,2913 -distribution(bool, trans(CPT), Id, Key, Parents, FParents) :-distribution141,2913 -distribution(bool, CPT, Id, Key, Parents, Parents) :-distribution145,3091 -distribution(bool, CPT, Id, Key, Parents, Parents) :-distribution145,3091 -distribution(bool, CPT, Id, Key, Parents, Parents) :-distribution145,3091 -distribution(aminoacids, trans(CPT), Id, Key, Parents, FParents) :-distribution148,3209 -distribution(aminoacids, trans(CPT), Id, Key, Parents, FParents) :-distribution148,3209 -distribution(aminoacids, trans(CPT), Id, Key, Parents, FParents) :-distribution148,3209 -distribution(aminoacids, CPT, Id, Key, Parents, Parents) :-distribution152,3430 -distribution(aminoacids, CPT, Id, Key, Parents, Parents) :-distribution152,3430 -distribution(aminoacids, CPT, Id, Key, Parents, Parents) :-distribution152,3430 -distribution(dna, trans(CPT), Key, Id, Parents, FParents) :-distribution155,3590 -distribution(dna, trans(CPT), Key, Id, Parents, FParents) :-distribution155,3590 -distribution(dna, trans(CPT), Key, Id, Parents, FParents) :-distribution155,3590 -distribution(dna, CPT, Id, Key, Parents, Parents) :-distribution159,3772 -distribution(dna, CPT, Id, Key, Parents, Parents) :-distribution159,3772 -distribution(dna, CPT, Id, Key, Parents, Parents) :-distribution159,3772 -distribution(rna, trans(CPT), Id, Key, Parents, FParents) :-distribution162,3884 -distribution(rna, trans(CPT), Id, Key, Parents, FParents) :-distribution162,3884 -distribution(rna, trans(CPT), Id, Key, Parents, FParents) :-distribution162,3884 -distribution(rna, CPT, Id, Key, Parents, Parents) :-distribution166,4066 -distribution(rna, CPT, Id, Key, Parents, Parents) :-distribution166,4066 -distribution(rna, CPT, Id, Key, Parents, Parents) :-distribution166,4066 -distribution(Domain, trans(CPT), Id, Key, Parents, FParents) :-distribution169,4187 -distribution(Domain, trans(CPT), Id, Key, Parents, FParents) :-distribution169,4187 -distribution(Domain, trans(CPT), Id, Key, Parents, FParents) :-distribution169,4187 -distribution(Domain, CPT, Id, Key, Parents, Parents) :-distribution174,4387 -distribution(Domain, CPT, Id, Key, Parents, Parents) :-distribution174,4387 -distribution(Domain, CPT, Id, Key, Parents, Parents) :-distribution174,4387 -add_dist(Domain, Type, CPT, _, Key, Id) :-add_dist179,4527 -add_dist(Domain, Type, CPT, _, Key, Id) :-add_dist179,4527 -add_dist(Domain, Type, CPT, _, Key, Id) :-add_dist179,4527 -add_dist(Domain, Type, CPT, Parents, Key, Id) :-add_dist181,4640 -add_dist(Domain, Type, CPT, Parents, Key, Id) :-add_dist181,4640 -add_dist(Domain, Type, CPT, Parents, Key, Id) :-add_dist181,4640 -find_parent_sizes([], Id, [], DSizes) :-find_parent_sizes189,4882 -find_parent_sizes([], Id, [], DSizes) :-find_parent_sizes189,4882 -find_parent_sizes([], Id, [], DSizes) :-find_parent_sizes189,4882 -find_parent_sizes([P|Parents], Id, [Size|Sizes], DSizes) :-find_parent_sizes191,4969 -find_parent_sizes([P|Parents], Id, [Size|Sizes], DSizes) :-find_parent_sizes191,4969 -find_parent_sizes([P|Parents], Id, [Size|Sizes], DSizes) :-find_parent_sizes191,4969 -find_parent_sizes([P|Parents], Id, [Size|Sizes], DSizes) :-find_parent_sizes195,5104 -find_parent_sizes([P|Parents], Id, [Size|Sizes], DSizes) :-find_parent_sizes195,5104 -find_parent_sizes([P|Parents], Id, [Size|Sizes], DSizes) :-find_parent_sizes195,5104 -find_parent_sizes([_|_], _, _, _).find_parent_sizes199,5283 -find_parent_sizes([_|_], _, _, _).find_parent_sizes199,5283 -compress_hmm_table([], [], [], []).compress_hmm_table204,5365 -compress_hmm_table([], [], [], []).compress_hmm_table204,5365 -compress_hmm_table([*|L],[_|Parents],NL,NParents) :- !,compress_hmm_table205,5401 -compress_hmm_table([*|L],[_|Parents],NL,NParents) :- !,compress_hmm_table205,5401 -compress_hmm_table([*|L],[_|Parents],NL,NParents) :- !,compress_hmm_table205,5401 -compress_hmm_table([Prob|L],[P|Parents],[Prob|NL],[P|NParents]) :-compress_hmm_table207,5501 -compress_hmm_table([Prob|L],[P|Parents],[Prob|NL],[P|NParents]) :-compress_hmm_table207,5501 -compress_hmm_table([Prob|L],[P|Parents],[Prob|NL],[P|NParents]) :-compress_hmm_table207,5501 -dist(Id) :-dist210,5613 -dist(Id) :-dist210,5613 -dist(Id) :-dist210,5613 -get_dist(Id, Type, Domain, Tab) :-get_dist213,5681 -get_dist(Id, Type, Domain, Tab) :-get_dist213,5681 -get_dist(Id, Type, Domain, Tab) :-get_dist213,5681 -get_dist_matrix(Id, Parents, Type, Domain, Mat) :-get_dist_matrix216,5782 -get_dist_matrix(Id, Parents, Type, Domain, Mat) :-get_dist_matrix216,5782 -get_dist_matrix(Id, Parents, Type, Domain, Mat) :-get_dist_matrix216,5782 -get_possibly_deterministic_dist_matrix(Id, Parents, Type, Domain, Mat) :-get_possibly_deterministic_dist_matrix222,6014 -get_possibly_deterministic_dist_matrix(Id, Parents, Type, Domain, Mat) :-get_possibly_deterministic_dist_matrix222,6014 -get_possibly_deterministic_dist_matrix(Id, Parents, Type, Domain, Mat) :-get_possibly_deterministic_dist_matrix222,6014 -get_dsizes([], Sizes, Sizes).get_dsizes227,6247 -get_dsizes([], Sizes, Sizes).get_dsizes227,6247 -get_dsizes([P|Parents], [Sz|Sizes], Sizes0) :-get_dsizes228,6277 -get_dsizes([P|Parents], [Sz|Sizes], Sizes0) :-get_dsizes228,6277 -get_dsizes([P|Parents], [Sz|Sizes], Sizes0) :-get_dsizes228,6277 -get_dist_params(Id, Parms) :-get_dist_params233,6428 -get_dist_params(Id, Parms) :-get_dist_params233,6428 -get_dist_params(Id, Parms) :-get_dist_params233,6428 -get_dist_all_sizes(Id, DSizes) :-get_dist_all_sizes236,6518 -get_dist_all_sizes(Id, DSizes) :-get_dist_all_sizes236,6518 -get_dist_all_sizes(Id, DSizes) :-get_dist_all_sizes236,6518 -get_dist_domain_size(DistId, DSize) :-get_dist_domain_size239,6600 -get_dist_domain_size(DistId, DSize) :-get_dist_domain_size239,6600 -get_dist_domain_size(DistId, DSize) :-get_dist_domain_size239,6600 -get_dist_domain_size(avg(D,_), DSize) :- !,get_dist_domain_size243,6727 -get_dist_domain_size(avg(D,_), DSize) :- !,get_dist_domain_size243,6727 -get_dist_domain_size(avg(D,_), DSize) :- !,get_dist_domain_size243,6727 -get_dist_domain_size(ip(D,_,_), DSize) :- !,get_dist_domain_size245,6790 -get_dist_domain_size(ip(D,_,_), DSize) :- !,get_dist_domain_size245,6790 -get_dist_domain_size(ip(D,_,_), DSize) :- !,get_dist_domain_size245,6790 -get_dist_domain_size(Id, DSize) :-get_dist_domain_size247,6854 -get_dist_domain_size(Id, DSize) :-get_dist_domain_size247,6854 -get_dist_domain_size(Id, DSize) :-get_dist_domain_size247,6854 -get_dist_domain(Id, Domain) :-get_dist_domain250,6949 -get_dist_domain(Id, Domain) :-get_dist_domain250,6949 -get_dist_domain(Id, Domain) :-get_dist_domain250,6949 -get_dist_domain(avg(Domain), Domain).get_dist_domain252,7043 -get_dist_domain(avg(Domain), Domain).get_dist_domain252,7043 -get_dist_key(Id, Key) :-get_dist_key254,7082 -get_dist_key(Id, Key) :-get_dist_key254,7082 -get_dist_key(Id, Key) :-get_dist_key254,7082 -get_dist_key(Id, Key) :-get_dist_key257,7166 -get_dist_key(Id, Key) :-get_dist_key257,7166 -get_dist_key(Id, Key) :-get_dist_key257,7166 -get_dist_nparams(Id, NParms) :-get_dist_nparams260,7249 -get_dist_nparams(Id, NParms) :-get_dist_nparams260,7249 -get_dist_nparams(Id, NParms) :-get_dist_nparams260,7249 -get_evidence_position(El, ip(Domain,_,_), Pos) :- !,get_evidence_position263,7342 -get_evidence_position(El, ip(Domain,_,_), Pos) :- !,get_evidence_position263,7342 -get_evidence_position(El, ip(Domain,_,_), Pos) :- !,get_evidence_position263,7342 -get_evidence_position(El, avg(Domain), Pos) :- !,get_evidence_position265,7422 -get_evidence_position(El, avg(Domain), Pos) :- !,get_evidence_position265,7422 -get_evidence_position(El, avg(Domain), Pos) :- !,get_evidence_position265,7422 -get_evidence_position(El, Id, Pos) :-get_evidence_position267,7499 -get_evidence_position(El, Id, Pos) :-get_evidence_position267,7499 -get_evidence_position(El, Id, Pos) :-get_evidence_position267,7499 -get_evidence_position(El, Id, Pos) :-get_evidence_position270,7624 -get_evidence_position(El, Id, Pos) :-get_evidence_position270,7624 -get_evidence_position(El, Id, Pos) :-get_evidence_position270,7624 -get_evidence_position(El, Id, Pos) :-get_evidence_position273,7798 -get_evidence_position(El, Id, Pos) :-get_evidence_position273,7798 -get_evidence_position(El, Id, Pos) :-get_evidence_position273,7798 -get_evidence_from_position(El, Id, Pos) :-get_evidence_from_position276,7921 -get_evidence_from_position(El, Id, Pos) :-get_evidence_from_position276,7921 -get_evidence_from_position(El, Id, Pos) :-get_evidence_from_position276,7921 -get_evidence_from_position(El, Id, Pos) :-get_evidence_from_position279,8051 -get_evidence_from_position(El, Id, Pos) :-get_evidence_from_position279,8051 -get_evidence_from_position(El, Id, Pos) :-get_evidence_from_position279,8051 -get_evidence_from_position(El, Id, Pos) :-get_evidence_from_position282,8234 -get_evidence_from_position(El, Id, Pos) :-get_evidence_from_position282,8234 -get_evidence_from_position(El, Id, Pos) :-get_evidence_from_position282,8234 -dist_to_term(_Id,_Term).dist_to_term285,8367 -dist_to_term(_Id,_Term).dist_to_term285,8367 -empty_dist(Dist, TAB) :-empty_dist287,8393 -empty_dist(Dist, TAB) :-empty_dist287,8393 -empty_dist(Dist, TAB) :-empty_dist287,8393 -empty_dist(Dist, TAB) :-empty_dist291,8517 -empty_dist(Dist, TAB) :-empty_dist291,8517 -empty_dist(Dist, TAB) :-empty_dist291,8517 -empty_dist(Dist, TAB) :-empty_dist294,8628 -empty_dist(Dist, TAB) :-empty_dist294,8628 -empty_dist(Dist, TAB) :-empty_dist294,8628 -dist_new_table(DistId, NewMat) :-dist_new_table297,8726 -dist_new_table(DistId, NewMat) :-dist_new_table297,8726 -dist_new_table(DistId, NewMat) :-dist_new_table297,8726 -dist_new_table(Id, NewMat) :-dist_new_table301,8857 -dist_new_table(Id, NewMat) :-dist_new_table301,8857 -dist_new_table(Id, NewMat) :-dist_new_table301,8857 -dist_new_table(_, _).dist_new_table307,9052 -dist_new_table(_, _).dist_new_table307,9052 -copy_structure(V, _) :- attvar(V), !.copy_structure309,9075 -copy_structure(V, _) :- attvar(V), !.copy_structure309,9075 -copy_structure(V, _) :- attvar(V), !.copy_structure309,9075 -copy_structure(V, V) :- var(V), !.copy_structure310,9113 -copy_structure(V, V) :- var(V), !.copy_structure310,9113 -copy_structure(V, V) :- var(V), !.copy_structure310,9113 -copy_structure(V, _) :- primitive(V), !.copy_structure311,9148 -copy_structure(V, _) :- primitive(V), !.copy_structure311,9148 -copy_structure(V, _) :- primitive(V), !.copy_structure311,9148 -copy_structure(Key, Key0) :-copy_structure312,9189 -copy_structure(Key, Key0) :-copy_structure312,9189 -copy_structure(Key, Key0) :-copy_structure312,9189 -copy_Lstructure([], []).copy_Lstructure317,9290 -copy_Lstructure([], []).copy_Lstructure317,9290 -copy_Lstructure([H|LKey], [NH|LKey0]) :-copy_Lstructure318,9315 -copy_Lstructure([H|LKey], [NH|LKey0]) :-copy_Lstructure318,9315 -copy_Lstructure([H|LKey], [NH|LKey0]) :-copy_Lstructure318,9315 -randomise_all_dists :-randomise_all_dists322,9412 -randomise_dist(Dist) :-randomise_dist327,9484 -randomise_dist(Dist) :-randomise_dist327,9484 -randomise_dist(Dist) :-randomise_dist327,9484 -uniformise_all_dists :-uniformise_all_dists338,9704 -uniformise_dist(Dist) :-uniformise_dist343,9779 -uniformise_dist(Dist) :-uniformise_dist343,9779 -uniformise_dist(Dist) :-uniformise_dist343,9779 -reset_all_dists :-reset_all_dists355,10002 -reset_all_dists :-reset_all_dists359,10075 -reset_all_dists :-reset_all_dists363,10144 -additive_dists(ip(Domain,Tabs1), ip(Domain,Tabs2), Parents1, Parents2, ip(Domain,Tabs), Parents) :-additive_dists369,10200 -additive_dists(ip(Domain,Tabs1), ip(Domain,Tabs2), Parents1, Parents2, ip(Domain,Tabs), Parents) :-additive_dists369,10200 -additive_dists(ip(Domain,Tabs1), ip(Domain,Tabs2), Parents1, Parents2, ip(Domain,Tabs), Parents) :-additive_dists369,10200 - -packages/CLPBN/clpbn/evidence.yap,5222 -:- dynamic node/3, edge/2, evidence/2.dynamic27,371 -:- dynamic node/3, edge/2, evidence/2.dynamic27,371 -store_evidence(G) :-store_evidence38,675 -store_evidence(G) :-store_evidence38,675 -store_evidence(G) :-store_evidence38,675 -compute_evidence(G, PreviousSolver) :-compute_evidence42,779 -compute_evidence(G, PreviousSolver) :-compute_evidence42,779 -compute_evidence(G, PreviousSolver) :-compute_evidence42,779 -compute_evidence(_,PreviousSolver) :-compute_evidence46,961 -compute_evidence(_,PreviousSolver) :-compute_evidence46,961 -compute_evidence(_,PreviousSolver) :-compute_evidence46,961 -get_clpbn_vars(G, Vars) :-get_clpbn_vars49,1041 -get_clpbn_vars(G, Vars) :-get_clpbn_vars49,1041 -get_clpbn_vars(G, Vars) :-get_clpbn_vars49,1041 -evidence_error(Ball,PreviousSolver) :-evidence_error54,1143 -evidence_error(Ball,PreviousSolver) :-evidence_error54,1143 -evidence_error(Ball,PreviousSolver) :-evidence_error54,1143 -store_graph([]).store_graph58,1237 -store_graph([]).store_graph58,1237 -store_graph([V|Vars]) :-store_graph59,1254 -store_graph([V|Vars]) :-store_graph59,1254 -store_graph([V|Vars]) :-store_graph59,1254 -store_graph([_|Vars]) :-store_graph67,1503 -store_graph([_|Vars]) :-store_graph67,1503 -store_graph([_|Vars]) :-store_graph67,1503 -translate_vars([],[]).translate_vars70,1549 -translate_vars([],[]).translate_vars70,1549 -translate_vars([V|Vs],[K|Ks]) :-translate_vars71,1572 -translate_vars([V|Vs],[K|Ks]) :-translate_vars71,1572 -translate_vars([V|Vs],[K|Ks]) :-translate_vars71,1572 -add_links([],_).add_links75,1660 -add_links([],_).add_links75,1660 -add_links([K0|TVs],K) :-add_links76,1677 -add_links([K0|TVs],K) :-add_links76,1677 -add_links([K0|TVs],K) :-add_links76,1677 -add_links([K0|TVs],K) :-add_links79,1737 -add_links([K0|TVs],K) :-add_links79,1737 -add_links([K0|TVs],K) :-add_links79,1737 -incorporate_evidence(Vs,AllVs) :-incorporate_evidence83,1803 -incorporate_evidence(Vs,AllVs) :-incorporate_evidence83,1803 -incorporate_evidence(Vs,AllVs) :-incorporate_evidence83,1803 -create_open_list([], L, L, C, C).create_open_list89,1959 -create_open_list([], L, L, C, C).create_open_list89,1959 -create_open_list([V|Vs], [K-V|OL], FL, C0, CF) :-create_open_list90,1993 -create_open_list([V|Vs], [K-V|OL], FL, C0, CF) :-create_open_list90,1993 -create_open_list([V|Vs], [K-V|OL], FL, C0, CF) :-create_open_list90,1993 -do_variables([], [], _) :- !.do_variables96,2166 -do_variables([], [], _) :- !.do_variables96,2166 -do_variables([], [], _) :- !.do_variables96,2166 -do_variables([K-V|Vs], Vf, C0) :-do_variables97,2196 -do_variables([K-V|Vs], Vf, C0) :-do_variables97,2196 -do_variables([K-V|Vs], Vf, C0) :-do_variables97,2196 -extract_vars([], []).extract_vars101,2303 -extract_vars([], []).extract_vars101,2303 -extract_vars([_-V|Cache], [V|AllVs]) :-extract_vars102,2325 -extract_vars([_-V|Cache], [V|AllVs]) :-extract_vars102,2325 -extract_vars([_-V|Cache], [V|AllVs]) :-extract_vars102,2325 -check_stored_evidence(K, Ev) :-check_stored_evidence106,2429 -check_stored_evidence(K, Ev) :-check_stored_evidence106,2429 -check_stored_evidence(K, Ev) :-check_stored_evidence106,2429 -check_stored_evidence(_, _).check_stored_evidence109,2494 -check_stored_evidence(_, _).check_stored_evidence109,2494 -add_stored_evidence(K, V) :-add_stored_evidence111,2524 -add_stored_evidence(K, V) :-add_stored_evidence111,2524 -add_stored_evidence(K, V) :-add_stored_evidence111,2524 -add_stored_evidence(_, _).add_stored_evidence114,2596 -add_stored_evidence(_, _).add_stored_evidence114,2596 -check_for_evidence(_, V, Vf, Vf, C, C) :-check_for_evidence116,2624 -check_for_evidence(_, V, Vf, Vf, C, C) :-check_for_evidence116,2624 -check_for_evidence(_, V, Vf, Vf, C, C) :-check_for_evidence116,2624 -check_for_evidence(K, _, Vf0, Vff, C0, Ci) :-check_for_evidence118,2704 -check_for_evidence(K, _, Vf0, Vff, C0, Ci) :-check_for_evidence118,2704 -check_for_evidence(K, _, Vf0, Vff, C0, Ci) :-check_for_evidence118,2704 -add_variables([], [], Vf, Vf, C, C).add_variables122,2822 -add_variables([], [], Vf, Vf, C, C).add_variables122,2822 -add_variables([K|TVs], [V|NTVs], Vf0, Vff, C0, Cf) :-add_variables123,2859 -add_variables([K|TVs], [V|NTVs], Vf0, Vff, C0, Cf) :-add_variables123,2859 -add_variables([K|TVs], [V|NTVs], Vf0, Vff, C0, Cf) :-add_variables123,2859 -add_variables([K|TVs], [V|NTVs], [K-V|Vf0], Vff, C0, Cf) :-add_variables126,2983 -add_variables([K|TVs], [V|NTVs], [K-V|Vf0], Vff, C0, Cf) :-add_variables126,2983 -add_variables([K|TVs], [V|NTVs], [K-V|Vf0], Vff, C0, Cf) :-add_variables126,2983 -create_new_variable(K, V, Vf0, Vff, C0, Cf) :-create_new_variable131,3161 -create_new_variable(K, V, Vf0, Vff, C0, Cf) :-create_new_variable131,3161 -create_new_variable(K, V, Vf0, Vff, C0, Cf) :-create_new_variable131,3161 -create_new_variable(K, V, Vf0, Vff, C0, Cf) :-create_new_variable138,3382 -create_new_variable(K, V, Vf0, Vff, C0, Cf) :-create_new_variable138,3382 -create_new_variable(K, V, Vf0, Vff, C0, Cf) :-create_new_variable138,3382 -put_evidence(Ev, V) :-put_evidence146,3587 -put_evidence(Ev, V) :-put_evidence146,3587 -put_evidence(Ev, V) :-put_evidence146,3587 - -packages/CLPBN/clpbn/gibbs.yap,17736 -:- dynamic gibbs_params/3.dynamic62,1136 -:- dynamic gibbs_params/3.dynamic62,1136 -:- dynamic explicit/1.dynamic64,1164 -:- dynamic explicit/1.dynamic64,1164 -gibbs(LVs,Vs0,AllDiffs) :-gibbs71,1263 -gibbs(LVs,Vs0,AllDiffs) :-gibbs71,1263 -gibbs(LVs,Vs0,AllDiffs) :-gibbs71,1263 -init_gibbs_solver(GoalVs, Vs0, _, Vs) :-init_gibbs_solver77,1415 -init_gibbs_solver(GoalVs, Vs0, _, Vs) :-init_gibbs_solver77,1415 -init_gibbs_solver(GoalVs, Vs0, _, Vs) :-init_gibbs_solver77,1415 -run_gibbs_solver(LVs, LPs, Vs) :-run_gibbs_solver84,1580 -run_gibbs_solver(LVs, LPs, Vs) :-run_gibbs_solver84,1580 -run_gibbs_solver(LVs, LPs, Vs) :-run_gibbs_solver84,1580 -initialise(LVs, Graph, GVs, OutputVars, VarOrder) :-initialise90,1756 -initialise(LVs, Graph, GVs, OutputVars, VarOrder) :-initialise90,1756 -initialise(LVs, Graph, GVs, OutputVars, VarOrder) :-initialise90,1756 -init_keys(Keys0) :-init_keys101,2109 -init_keys(Keys0) :-init_keys101,2109 -init_keys(Keys0) :-init_keys101,2109 -gen_key(V, I0, I0, Keys0, Keys0) :-gen_key104,2146 -gen_key(V, I0, I0, Keys0, Keys0) :-gen_key104,2146 -gen_key(V, I0, I0, Keys0, Keys0) :-gen_key104,2146 -gen_key(V, I0, I, Keys0, Keys) :-gen_key106,2219 -gen_key(V, I0, I, Keys0, Keys) :-gen_key106,2219 -gen_key(V, I0, I, Keys0, Keys) :-gen_key106,2219 -graph_representation([],_,_,_,[]).graph_representation110,2294 -graph_representation([],_,_,_,[]).graph_representation110,2294 -graph_representation([V|Vs], Graph, I0, Keys, TGraph) :-graph_representation111,2329 -graph_representation([V|Vs], Graph, I0, Keys, TGraph) :-graph_representation111,2329 -graph_representation([V|Vs], Graph, I0, Keys, TGraph) :-graph_representation111,2329 -graph_representation([V|Vs], Graph, I0, Keys, [I-IParents|TGraph]) :-graph_representation121,2822 -graph_representation([V|Vs], Graph, I0, Keys, [I-IParents|TGraph]) :-graph_representation121,2822 -graph_representation([V|Vs], Graph, I0, Keys, [I-IParents|TGraph]) :-graph_representation121,2822 -write_pars([]).write_pars138,3638 -write_pars([]).write_pars138,3638 -write_pars([V|Parents]) :-write_pars139,3654 -write_pars([V|Parents]) :-write_pars139,3654 -write_pars([V|Parents]) :-write_pars139,3654 -get_size(V, Sz) :-get_size143,3758 -get_size(V, Sz) :-get_size143,3758 -get_size(V, Sz) :-get_size143,3758 -parent_index(Keys, V, I) :-parent_index147,3843 -parent_index(Keys, V, I) :-parent_index147,3843 -parent_index(Keys, V, I) :-parent_index147,3843 -project_evidence_out([],Deps,Table,_,Deps,Table).project_evidence_out153,3954 -project_evidence_out([],Deps,Table,_,Deps,Table).project_evidence_out153,3954 -project_evidence_out([V|Parents],Deps,Table,Szs,NewDeps,NewTable) :-project_evidence_out154,4004 -project_evidence_out([V|Parents],Deps,Table,Szs,NewDeps,NewTable) :-project_evidence_out154,4004 -project_evidence_out([V|Parents],Deps,Table,Szs,NewDeps,NewTable) :-project_evidence_out154,4004 -project_evidence_out([_Par|Parents],Deps,Table,Szs,NewDeps,NewTable) :-project_evidence_out158,4242 -project_evidence_out([_Par|Parents],Deps,Table,Szs,NewDeps,NewTable) :-project_evidence_out158,4242 -project_evidence_out([_Par|Parents],Deps,Table,Szs,NewDeps,NewTable) :-project_evidence_out158,4242 -propagate2parent(Table, Variables, Graph, Keys, V) :-propagate2parent161,4379 -propagate2parent(Table, Variables, Graph, Keys, V) :-propagate2parent161,4379 -propagate2parent(Table, Variables, Graph, Keys, V) :-propagate2parent161,4379 -add2graph(V, Vals, Table, IParents, Graph, Keys) :-add2graph167,4634 -add2graph(V, Vals, Table, IParents, Graph, Keys) :-add2graph167,4634 -add2graph(V, Vals, Table, IParents, Graph, Keys) :-add2graph167,4634 -sort_according_to_indices(NVs,Keys,SortedNVs,SortedIndices) :-sort_according_to_indices173,4865 -sort_according_to_indices(NVs,Keys,SortedNVs,SortedIndices) :-sort_according_to_indices173,4865 -sort_according_to_indices(NVs,Keys,SortedNVs,SortedIndices) :-sort_according_to_indices173,4865 -split_parent(I-V, V, I).split_parent178,5052 -split_parent(I-V, V, I).split_parent178,5052 -var2index(Keys, V, I-V) :-var2index180,5078 -var2index(Keys, V, I-V) :-var2index180,5078 -var2index(Keys, V, I-V) :-var2index180,5078 -compile_graph(Graph) :-compile_graph186,5165 -compile_graph(Graph) :-compile_graph186,5165 -compile_graph(Graph) :-compile_graph186,5165 -compile_var(Graph, var(_,I,_,Vals,Sz,VarSlot,Parents,_,_)) :-compile_var190,5256 -compile_var(Graph, var(_,I,_,Vals,Sz,VarSlot,Parents,_,_)) :-compile_var190,5256 -compile_var(Graph, var(_,I,_,Vals,Sz,VarSlot,Parents,_,_)) :-compile_var190,5256 -fetch_parent(Graph, tabular(_,_,Ps), Parents0, ParentsF, Sizes0, SizesF) :-fetch_parent195,5478 -fetch_parent(Graph, tabular(_,_,Ps), Parents0, ParentsF, Sizes0, SizesF) :-fetch_parent195,5478 -fetch_parent(Graph, tabular(_,_,Ps), Parents0, ParentsF, Sizes0, SizesF) :-fetch_parent195,5478 -merge_these_parents(_Graph, I,Parents0,Parents0,Sizes0,Sizes0) :-merge_these_parents198,5633 -merge_these_parents(_Graph, I,Parents0,Parents0,Sizes0,Sizes0) :-merge_these_parents198,5633 -merge_these_parents(_Graph, I,Parents0,Parents0,Sizes0,Sizes0) :-merge_these_parents198,5633 -merge_these_parents(Graph, I, Parents0,ParentsF,Sizes0,SizesF) :-merge_these_parents200,5723 -merge_these_parents(Graph, I, Parents0,ParentsF,Sizes0,SizesF) :-merge_these_parents200,5723 -merge_these_parents(Graph, I, Parents0,ParentsF,Sizes0,SizesF) :-merge_these_parents200,5723 -add_parent([],I,[I],[],Sz,[Sz]).add_parent205,5901 -add_parent([],I,[I],[],Sz,[Sz]).add_parent205,5901 -add_parent([P|Parents0],I,[I,P|Parents0],Sizes0,Sz,[Sz|Sizes0]) :-add_parent206,5934 -add_parent([P|Parents0],I,[I,P|Parents0],Sizes0,Sz,[Sz|Sizes0]) :-add_parent206,5934 -add_parent([P|Parents0],I,[I,P|Parents0],Sizes0,Sz,[Sz|Sizes0]) :-add_parent206,5934 -add_parent([P|Parents0],I,[P|ParentsI],[S|Sizes0],Sz,[S|SizesI]) :-add_parent208,6012 -add_parent([P|Parents0],I,[P|ParentsI],[S|Sizes0],Sz,[S|SizesI]) :-add_parent208,6012 -add_parent([P|Parents0],I,[P|ParentsI],[S|Sizes0],Sz,[S|SizesI]) :-add_parent208,6012 -mult(Sz, Mult0, Mult) :-mult211,6132 -mult(Sz, Mult0, Mult) :-mult211,6132 -mult(Sz, Mult0, Mult) :-mult211,6132 -compile_var(TotSize,I,_Vals,Sz,CPTs,Parents,_Sizes,Graph) :-compile_var215,6226 -compile_var(TotSize,I,_Vals,Sz,CPTs,Parents,_Sizes,Graph) :-compile_var215,6226 -compile_var(TotSize,I,_Vals,Sz,CPTs,Parents,_Sizes,Graph) :-compile_var215,6226 -compile_var(_,_,_,_,_,_,_,_).compile_var219,6383 -compile_var(_,_,_,_,_,_,_,_).compile_var219,6383 -multiply_all(I,Parents,CPTs,Sz,Graph) :-multiply_all221,6414 -multiply_all(I,Parents,CPTs,Sz,Graph) :-multiply_all221,6414 -multiply_all(I,Parents,CPTs,Sz,Graph) :-multiply_all221,6414 -multiply_all(I,_,_,_,_) :-multiply_all231,6682 -multiply_all(I,_,_,_,_) :-multiply_all231,6682 -multiply_all(I,_,_,_,_) :-multiply_all231,6682 -markov_blanket_instance(Graph, I, Pos) :-markov_blanket_instance236,6818 -markov_blanket_instance(Graph, I, Pos) :-markov_blanket_instance236,6818 -markov_blanket_instance(Graph, I, Pos) :-markov_blanket_instance236,6818 -fetch_val([_|_],Pos,Pos).fetch_val242,6976 -fetch_val([_|_],Pos,Pos).fetch_val242,6976 -fetch_val([_|Vals],I0,Pos) :-fetch_val243,7002 -fetch_val([_|Vals],I0,Pos) :-fetch_val243,7002 -fetch_val([_|Vals],I0,Pos) :-fetch_val243,7002 -multiply_all([tabular(Table,_,Parents)|CPTs], Graph, LProbs) :-multiply_all247,7069 -multiply_all([tabular(Table,_,Parents)|CPTs], Graph, LProbs) :-multiply_all247,7069 -multiply_all([tabular(Table,_,Parents)|CPTs], Graph, LProbs) :-multiply_all247,7069 -fetch_parent(Graph, P, Val) :-fetch_parent255,7431 -fetch_parent(Graph, P, Val) :-fetch_parent255,7431 -fetch_parent(Graph, P, Val) :-fetch_parent255,7431 -multiply_more(Graph, tabular(Table,_,Parents), Probs0, Probs) :-multiply_more258,7503 -multiply_more(Graph, tabular(Table,_,Parents), Probs0, Probs) :-multiply_more258,7503 -multiply_more(Graph, tabular(Table,_,Parents), Probs0, Probs) :-multiply_more258,7503 -accumulate_up(P, P1, P0, P1) :-accumulate_up263,7735 -accumulate_up(P, P1, P0, P1) :-accumulate_up263,7735 -accumulate_up(P, P1, P0, P1) :-accumulate_up263,7735 -store_mblanket(I,Values,Probs) :-store_mblanket266,7781 -store_mblanket(I,Values,Probs) :-store_mblanket266,7781 -store_mblanket(I,Values,Probs) :-store_mblanket266,7781 -add_all_output_vars([], _, []).add_all_output_vars269,7856 -add_all_output_vars([], _, []).add_all_output_vars269,7856 -add_all_output_vars([Vs|LVs], Keys, [Is|OutputVars]) :-add_all_output_vars270,7888 -add_all_output_vars([Vs|LVs], Keys, [Is|OutputVars]) :-add_all_output_vars270,7888 -add_all_output_vars([Vs|LVs], Keys, [Is|OutputVars]) :-add_all_output_vars270,7888 -add_output_vars([], _, []).add_output_vars274,8022 -add_output_vars([], _, []).add_output_vars274,8022 -add_output_vars([V|LVs], Keys, [I|OutputVars]) :-add_output_vars275,8050 -add_output_vars([V|LVs], Keys, [I|OutputVars]) :-add_output_vars275,8050 -add_output_vars([V|LVs], Keys, [I|OutputVars]) :-add_output_vars275,8050 -process(VarOrder, Graph, OutputVars, Estimates) :-process279,8166 -process(VarOrder, Graph, OutputVars, Estimates) :-process279,8166 -process(VarOrder, Graph, OutputVars, Estimates) :-process279,8166 -init_chains(0,_,_,_,[]) :- !.init_chains290,8587 -init_chains(0,_,_,_,[]) :- !.init_chains290,8587 -init_chains(0,_,_,_,[]) :- !.init_chains290,8587 -init_chains(I,VarOrder,Len,Graph,[Chain|Chains]) :-init_chains291,8617 -init_chains(I,VarOrder,Len,Graph,[Chain|Chains]) :-init_chains291,8617 -init_chains(I,VarOrder,Len,Graph,[Chain|Chains]) :-init_chains291,8617 -init_chain(VarOrder,Len,Graph,Chain) :-init_chain297,8766 -init_chain(VarOrder,Len,Graph,Chain) :-init_chain297,8766 -init_chain(VarOrder,Len,Graph,Chain) :-init_chain297,8766 -gen_sample(Graph, Chain, I) :-gen_sample301,8881 -gen_sample(Graph, Chain, I) :-gen_sample301,8881 -gen_sample(Graph, Chain, I) :-gen_sample301,8881 -init_estimates(0,_,_,[]) :- !.init_estimates307,9004 -init_estimates(0,_,_,[]) :- !.init_estimates307,9004 -init_estimates(0,_,_,[]) :- !.init_estimates307,9004 -init_estimates(NChains,OutputVars,Graph,[Est|Est0]) :-init_estimates308,9035 -init_estimates(NChains,OutputVars,Graph,[Est|Est0]) :-init_estimates308,9035 -init_estimates(NChains,OutputVars,Graph,[Est|Est0]) :-init_estimates308,9035 -init_estimate_all_outvs([],_,[]).init_estimate_all_outvs313,9212 -init_estimate_all_outvs([],_,[]).init_estimate_all_outvs313,9212 -init_estimate_all_outvs([Vs|OutputVars],Graph,[E|Est]) :-init_estimate_all_outvs314,9246 -init_estimate_all_outvs([Vs|OutputVars],Graph,[E|Est]) :-init_estimate_all_outvs314,9246 -init_estimate_all_outvs([Vs|OutputVars],Graph,[E|Est]) :-init_estimate_all_outvs314,9246 -init_estimate([],_,[]).init_estimate318,9383 -init_estimate([],_,[]).init_estimate318,9383 -init_estimate([V],Graph,[I|E0L]) :- !,init_estimate319,9407 -init_estimate([V],Graph,[I|E0L]) :- !,init_estimate319,9407 -init_estimate([V],Graph,[I|E0L]) :- !,init_estimate319,9407 -init_estimate(Vs,Graph,me(Is,Mults,Es)) :-init_estimate322,9502 -init_estimate(Vs,Graph,me(Is,Mults,Es)) :-init_estimate322,9502 -init_estimate(Vs,Graph,me(Is,Mults,Es)) :-init_estimate322,9502 -generate_est_mults([], [], _, [], 1).generate_est_mults327,9610 -generate_est_mults([], [], _, [], 1).generate_est_mults327,9610 -generate_est_mults([V|Vs], [I|Is], Graph, [M0|Mults], M) :-generate_est_mults328,9648 -generate_est_mults([V|Vs], [I|Is], Graph, [M0|Mults], M) :-generate_est_mults328,9648 -generate_est_mults([V|Vs], [I|Is], Graph, [M0|Mults], M) :-generate_est_mults328,9648 -gen_e0(0,[]) :- !.gen_e0333,9808 -gen_e0(0,[]) :- !.gen_e0333,9808 -gen_e0(0,[]) :- !.gen_e0333,9808 -gen_e0(Sz,[0|E0L]) :-gen_e0334,9827 -gen_e0(Sz,[0|E0L]) :-gen_e0334,9827 -gen_e0(Sz,[0|E0L]) :-gen_e0334,9827 -process_chains(0,_,F,F,_,_,Est,Est) :- !.process_chains338,9882 -process_chains(0,_,F,F,_,_,Est,Est) :- !.process_chains338,9882 -process_chains(0,_,F,F,_,_,Est,Est) :- !.process_chains338,9882 -process_chains(ToDo,VarOrder,End,Start,Graph,Len,Est0,Estf) :-process_chains339,9924 -process_chains(ToDo,VarOrder,End,Start,Graph,Len,Est0,Estf) :-process_chains339,9924 -process_chains(ToDo,VarOrder,End,Start,Graph,Len,Est0,Estf) :-process_chains339,9924 -process_chain(VarOrder, Graph, SampLen, Sample0, Sample, E0, Ef) :-process_chain347,10303 -process_chain(VarOrder, Graph, SampLen, Sample0, Sample, E0, Ef) :-process_chain347,10303 -process_chain(VarOrder, Graph, SampLen, Sample0, Sample, E0, Ef) :-process_chain347,10303 -do_var(Graph, Sample0, Sample, I) :-do_var353,10536 -do_var(Graph, Sample0, Sample, I) :-do_var353,10536 -do_var(Graph, Sample0, Sample, I) :-do_var353,10536 -multiply_all_in_context(Parents,Args,CPTs,Graph,Vals) :-multiply_all_in_context365,10876 -multiply_all_in_context(Parents,Args,CPTs,Graph,Vals) :-multiply_all_in_context365,10876 -multiply_all_in_context(Parents,Args,CPTs,Graph,Vals) :-multiply_all_in_context365,10876 -multiply_all_in_context(_,_,_,_,Vals) :-multiply_all_in_context369,11034 -multiply_all_in_context(_,_,_,_,Vals) :-multiply_all_in_context369,11034 -multiply_all_in_context(_,_,_,_,Vals) :-multiply_all_in_context369,11034 -set_pos(Graph, I, Pos) :-set_pos372,11098 -set_pos(Graph, I, Pos) :-set_pos372,11098 -set_pos(Graph, I, Pos) :-set_pos372,11098 -fetch_parent(_Sample0, Sample, P, VP) :-fetch_parent375,11165 -fetch_parent(_Sample0, Sample, P, VP) :-fetch_parent375,11165 -fetch_parent(_Sample0, Sample, P, VP) :-fetch_parent375,11165 -fetch_parent(Sample0, _Sample, P, VP) :-fetch_parent378,11242 -fetch_parent(Sample0, _Sample, P, VP) :-fetch_parent378,11242 -fetch_parent(Sample0, _Sample, P, VP) :-fetch_parent378,11242 -pick_new_value([V|Vals],X,I0,Val) :-pick_new_value381,11306 -pick_new_value([V|Vals],X,I0,Val) :-pick_new_value381,11306 -pick_new_value([V|Vals],X,I0,Val) :-pick_new_value381,11306 -update_estimate(Sample, [I|E],[I|NE]) :-update_estimate389,11421 -update_estimate(Sample, [I|E],[I|NE]) :-update_estimate389,11421 -update_estimate(Sample, [I|E],[I|NE]) :-update_estimate389,11421 -update_estimate(Sample,me(Is,Mult,E),me(Is,Mult,NE)) :-update_estimate392,11514 -update_estimate(Sample,me(Is,Mult,E),me(Is,Mult,NE)) :-update_estimate392,11514 -update_estimate(Sample,me(Is,Mult,E),me(Is,Mult,NE)) :-update_estimate392,11514 -get_estimate_pos([], _, [], V, V).get_estimate_pos396,11648 -get_estimate_pos([], _, [], V, V).get_estimate_pos396,11648 -get_estimate_pos([I|Is], Sample, [M|Mult], V0, V) :-get_estimate_pos397,11683 -get_estimate_pos([I|Is], Sample, [M|Mult], V0, V) :-get_estimate_pos397,11683 -get_estimate_pos([I|Is], Sample, [M|Mult], V0, V) :-get_estimate_pos397,11683 -update_estimate_for_var(V0,[X|T],[X1|NT]) :-update_estimate_for_var402,11816 -update_estimate_for_var(V0,[X|T],[X1|NT]) :-update_estimate_for_var402,11816 -update_estimate_for_var(V0,[X|T],[X1|NT]) :-update_estimate_for_var402,11816 -check_if_gibbs_done(Var) :-check_if_gibbs_done413,11969 -check_if_gibbs_done(Var) :-check_if_gibbs_done413,11969 -check_if_gibbs_done(Var) :-check_if_gibbs_done413,11969 -clean_up :-clean_up416,12028 -clean_up :-clean_up419,12068 -gibbs_params(5,100,1000).gibbs_params424,12124 -gibbs_params(5,100,1000).gibbs_params424,12124 -cvt2prob([[_|E]], Ps) :-cvt2prob426,12151 -cvt2prob([[_|E]], Ps) :-cvt2prob426,12151 -cvt2prob([[_|E]], Ps) :-cvt2prob426,12151 -sum_all(E, S0, Sum) :-sum_all430,12237 -sum_all(E, S0, Sum) :-sum_all430,12237 -sum_all(E, S0, Sum) :-sum_all430,12237 -do_prob(Sum, E, P) :-do_prob433,12275 -do_prob(Sum, E, P) :-do_prob433,12275 -do_prob(Sum, E, P) :-do_prob433,12275 -show_sorted([], _) :- nl.show_sorted436,12311 -show_sorted([], _) :- nl.show_sorted436,12311 -show_sorted([], _) :- nl.show_sorted436,12311 -show_sorted([I|VarOrder], Graph) :-show_sorted437,12337 -show_sorted([I|VarOrder], Graph) :-show_sorted437,12337 -show_sorted([I|VarOrder], Graph) :-show_sorted437,12337 -sum_up_all([[]|_], []).sum_up_all443,12492 -sum_up_all([[]|_], []).sum_up_all443,12492 -sum_up_all([[C|MoreC]|Chains], [Dist|Dists]) :-sum_up_all444,12516 -sum_up_all([[C|MoreC]|Chains], [Dist|Dists]) :-sum_up_all444,12516 -sum_up_all([[C|MoreC]|Chains], [Dist|Dists]) :-sum_up_all444,12516 -extract_sum([C|Chains], C, Chains).extract_sum449,12698 -extract_sum([C|Chains], C, Chains).extract_sum449,12698 -sum_up([[_|Counts]|Chains], Dist) :-sum_up451,12735 -sum_up([[_|Counts]|Chains], Dist) :-sum_up451,12735 -sum_up([[_|Counts]|Chains], Dist) :-sum_up451,12735 -sum_up([me(_,_,Counts)|Chains], Dist) :-sum_up454,12824 -sum_up([me(_,_,Counts)|Chains], Dist) :-sum_up454,12824 -sum_up([me(_,_,Counts)|Chains], Dist) :-sum_up454,12824 -add_up(Counts,[],Counts).add_up458,12922 -add_up(Counts,[],Counts).add_up458,12922 -add_up(Counts,[[_|Cs]|Chains], Add) :-add_up459,12948 -add_up(Counts,[[_|Cs]|Chains], Add) :-add_up459,12948 -add_up(Counts,[[_|Cs]|Chains], Add) :-add_up459,12948 -add_up_mes(Counts,[],Counts).add_up_mes463,13055 -add_up_mes(Counts,[],Counts).add_up_mes463,13055 -add_up_mes(Counts,[me(_,_,Cs)|Chains], Add) :-add_up_mes464,13085 -add_up_mes(Counts,[me(_,_,Cs)|Chains], Add) :-add_up_mes464,13085 -add_up_mes(Counts,[me(_,_,Cs)|Chains], Add) :-add_up_mes464,13085 -sum(Count, C, NC) :-sum468,13210 -sum(Count, C, NC) :-sum468,13210 -sum(Count, C, NC) :-sum468,13210 -normalise(Add, Dist) :-normalise471,13248 -normalise(Add, Dist) :-normalise471,13248 -normalise(Add, Dist) :-normalise471,13248 -divide(Sum, C, P) :-divide475,13328 -divide(Sum, C, P) :-divide475,13328 -divide(Sum, C, P) :-divide475,13328 - -packages/CLPBN/clpbn/graphs.yap,778 -clpbn2graph(Vs) :-clpbn2graph19,274 -clpbn2graph(Vs) :-clpbn2graph19,274 -clpbn2graph(Vs) :-clpbn2graph19,274 -clpbn2graph2([]).clpbn2graph223,351 -clpbn2graph2([]).clpbn2graph223,351 -clpbn2graph2([V|Vs]) :-clpbn2graph224,369 -clpbn2graph2([V|Vs]) :-clpbn2graph224,369 -clpbn2graph2([V|Vs]) :-clpbn2graph224,369 -attribute_goal(V, node(K,Dom,CPT,TVs,Ev)) :-attribute_goal31,464 -attribute_goal(V, node(K,Dom,CPT,TVs,Ev)) :-attribute_goal31,464 -attribute_goal(V, node(K,Dom,CPT,TVs,Ev)) :-attribute_goal31,464 -translate_vars([],[]).translate_vars38,678 -translate_vars([],[]).translate_vars38,678 -translate_vars([V|Vs],[K|Ks]) :-translate_vars39,701 -translate_vars([V|Vs],[K|Ks]) :-translate_vars39,701 -translate_vars([V|Vs],[K|Ks]) :-translate_vars39,701 - -packages/CLPBN/clpbn/graphviz.yap,2448 -clpbn2gviz(Stream, Name, Network, Node, Edge, Output) :-clpbn2gviz5,43 -clpbn2gviz(Stream, Name, Network, Node, Edge, Output) :-clpbn2gviz5,43 -clpbn2gviz(Stream, Name, Network, Node, Edge, Output) :-clpbn2gviz5,43 -output_vars(_, []).output_vars11,257 -output_vars(_, []).output_vars11,257 -output_vars(Stream, [V|Vs]) :-output_vars12,277 -output_vars(Stream, [V|Vs]) :-output_vars12,277 -output_vars(Stream, [V|Vs]) :-output_vars12,277 -output_var(Stream, V) :-output_var16,359 -output_var(Stream, V) :-output_var16,359 -output_var(Stream, V) :-output_var16,359 -output_var(Stream, V) :-output_var21,544 -output_var(Stream, V) :-output_var21,544 -output_var(Stream, V) :-output_var21,544 -output_var(_, _).output_var29,761 -output_var(_, _).output_var29,761 -info_ouput(_, []).info_ouput31,780 -info_ouput(_, []).info_ouput31,780 -info_ouput(Stream, [V|Output]) :-info_ouput32,799 -info_ouput(Stream, [V|Output]) :-info_ouput32,799 -info_ouput(Stream, [V|Output]) :-info_ouput32,799 -output_parents(Stream, [V]) :- !,output_parents39,1006 -output_parents(Stream, [V]) :- !,output_parents39,1006 -output_parents(Stream, [V]) :- !,output_parents39,1006 -output_parents(Stream, L) :-output_parents41,1061 -output_parents(Stream, L) :-output_parents41,1061 -output_parents(Stream, L) :-output_parents41,1061 -output_parents1(_,[]).output_parents146,1168 -output_parents1(_,[]).output_parents146,1168 -output_parents1(Stream,[V|L]) :-output_parents147,1191 -output_parents1(Stream,[V|L]) :-output_parents147,1191 -output_parents1(Stream,[V|L]) :-output_parents147,1191 -output_v(V,Stream) :-output_v52,1301 -output_v(V,Stream) :-output_v52,1301 -output_v(V,Stream) :-output_v52,1301 -output_key(Stream, Key) :-output_key56,1380 -output_key(Stream, Key) :-output_key56,1380 -output_key(Stream, Key) :-output_key56,1380 -output_key(Stream, _, Key) :-output_key59,1437 -output_key(Stream, _, Key) :-output_key59,1437 -output_key(Stream, _, Key) :-output_key59,1437 -output_key(Stream, _, Key) :-output_key62,1508 -output_key(Stream, _, Key) :-output_key62,1508 -output_key(Stream, _, Key) :-output_key62,1508 -output_key_args(_, _, []).output_key_args65,1571 -output_key_args(_, _, []).output_key_args65,1571 -output_key_args(Stream, I, [Arg|Args]) :-output_key_args66,1598 -output_key_args(Stream, I, [Arg|Args]) :-output_key_args66,1598 -output_key_args(Stream, I, [Arg|Args]) :-output_key_args66,1598 - -packages/CLPBN/clpbn/ground_factors.yap,3034 -:- dynamic currently_defined/1, queue/1, f/4.dynamic33,489 -:- dynamic currently_defined/1, queue/1, f/4.dynamic33,489 -generate_network(QueryVars, QueryKeys, Keys, Factors, EList) :-generate_network39,619 -generate_network(QueryVars, QueryKeys, Keys, Factors, EList) :-generate_network39,619 -generate_network(QueryVars, QueryKeys, Keys, Factors, EList) :-generate_network39,619 -init_global_search :-init_global_search55,1090 -pair_to_evidence(K-E, K=E).pair_to_evidence60,1194 -pair_to_evidence(K-E, K=E).pair_to_evidence60,1194 -include_evidence(V, Evidence0, Evidence) :-include_evidence62,1223 -include_evidence(V, Evidence0, Evidence) :-include_evidence62,1223 -include_evidence(V, Evidence0, Evidence) :-include_evidence62,1223 -include_evidence(_, Evidence, Evidence).include_evidence71,1486 -include_evidence(_, Evidence, Evidence).include_evidence71,1486 -static_evidence(Evidence0, Evidence) :-static_evidence73,1528 -static_evidence(Evidence0, Evidence) :-static_evidence73,1528 -static_evidence(Evidence0, Evidence) :-static_evidence73,1528 -include_static_evidence(K=E, Evidence0, Evidence) :-include_static_evidence77,1673 -include_static_evidence(K=E, Evidence0, Evidence) :-include_static_evidence77,1673 -include_static_evidence(K=E, Evidence0, Evidence) :-include_static_evidence77,1673 -queue_evidence(K=_) :-queue_evidence87,1897 -queue_evidence(K=_) :-queue_evidence87,1897 -queue_evidence(K=_) :-queue_evidence87,1897 -run_through_query(Evidence, V, QueryKeys, QueryKeys) :-run_through_query90,1935 -run_through_query(Evidence, V, QueryKeys, QueryKeys) :-run_through_query90,1935 -run_through_query(Evidence, V, QueryKeys, QueryKeys) :-run_through_query90,1935 -run_through_query(_Evidence, V, QueryKeys, [K|QueryKeys]) :-run_through_query93,2055 -run_through_query(_Evidence, V, QueryKeys, [K|QueryKeys]) :-run_through_query93,2055 -run_through_query(_Evidence, V, QueryKeys, [K|QueryKeys]) :-run_through_query93,2055 -collect(Keys, Factors) :-collect97,2160 -collect(Keys, Factors) :-collect97,2160 -collect(Keys, Factors) :-collect97,2160 -queue_in(K) :-queue_in103,2340 -queue_in(K) :-queue_in103,2340 -queue_in(K) :-queue_in103,2340 -queue_in(K) :-queue_in105,2369 -queue_in(K) :-queue_in105,2369 -queue_in(K) :-queue_in105,2369 -queue_in(_).queue_in109,2426 -queue_in(_).queue_in109,2426 -propagate :-propagate111,2440 -do_propagate(K) :-do_propagate116,2505 -do_propagate(K) :-do_propagate116,2505 -do_propagate(K) :-do_propagate116,2505 -do_propagate(_K) :-do_propagate132,2812 -do_propagate(_K) :-do_propagate132,2812 -do_propagate(_K) :-do_propagate132,2812 -add_factor(factor(Type, Id, Ks, _, _Phi, Constraints), NKs) :-add_factor135,2845 -add_factor(factor(Type, Id, Ks, _, _Phi, Constraints), NKs) :-add_factor135,2845 -add_factor(factor(Type, Id, Ks, _, _Phi, Constraints), NKs) :-add_factor135,2845 -run([Goal|Goals]) :-run157,3204 -run([Goal|Goals]) :-run157,3204 -run([Goal|Goals]) :-run157,3204 -run([]).run160,3256 -run([]).run160,3256 - -packages/CLPBN/clpbn/hmm.yap,2331 -:- dynamic hmm_tabled/1.dynamic25,338 -:- dynamic hmm_tabled/1.dynamic25,338 -init_hmm :-init_hmm31,435 -hmm_state(Mod:A) :- !, hmm_state(A,Mod).hmm_state37,576 -hmm_state(Mod:A) :- !, hmm_state(A,Mod).hmm_state37,576 -hmm_state(Mod:A) :- !, hmm_state(A,Mod).hmm_state37,576 -hmm_state(Mod:A) :- !, hmm_state(A,Mod).hmm_state37,576 -hmm_state(Mod:A) :- !, hmm_state(A,Mod).hmm_state37,576 -hmm_state(A) :- prolog_flag(typein_module,Mod), hmm_state(A,Mod).hmm_state38,617 -hmm_state(A) :- prolog_flag(typein_module,Mod), hmm_state(A,Mod).hmm_state38,617 -hmm_state(A) :- prolog_flag(typein_module,Mod), hmm_state(A,Mod).hmm_state38,617 -hmm_state(A) :- prolog_flag(typein_module,Mod), hmm_state(A,Mod).hmm_state38,617 -hmm_state(A) :- prolog_flag(typein_module,Mod), hmm_state(A,Mod).hmm_state38,617 -hmm_state(Mod:N/A,_) :- !,hmm_state40,684 -hmm_state(Mod:N/A,_) :- !,hmm_state40,684 -hmm_state(Mod:N/A,_) :- !,hmm_state40,684 -hmm_state((A,B),Mod) :- !,hmm_state42,732 -hmm_state((A,B),Mod) :- !,hmm_state42,732 -hmm_state((A,B),Mod) :- !,hmm_state42,732 -hmm_state(N/A,Mod) :-hmm_state45,797 -hmm_state(N/A,Mod) :-hmm_state45,797 -hmm_state(N/A,Mod) :-hmm_state45,797 -build_args(4,[A,B,C,D],[A,B,C],A,D).build_args65,1257 -build_args(4,[A,B,C,D],[A,B,C],A,D).build_args65,1257 -build_args(3, [A,B,C], [A,B],A,C).build_args66,1294 -build_args(3, [A,B,C], [A,B],A,C).build_args66,1294 -build_args(2, [A,B], [A],A,B).build_args67,1331 -build_args(2, [A,B], [A],A,B).build_args67,1331 -emission(V) :-emission69,1369 -emission(V) :-emission69,1369 -emission(V) :-emission69,1369 -cvt_vals(aminoacids,[a, c, d, e, f, g, h, i, k, l, m, n, p, q, r, s, t, v, w, y]).cvt_vals72,1416 -cvt_vals(aminoacids,[a, c, d, e, f, g, h, i, k, l, m, n, p, q, r, s, t, v, w, y]).cvt_vals72,1416 -cvt_vals(bool,[t,f]).cvt_vals73,1518 -cvt_vals(bool,[t,f]).cvt_vals73,1518 -cvt_vals(dna,[a,c,g,t]).cvt_vals74,1540 -cvt_vals(dna,[a,c,g,t]).cvt_vals74,1540 -cvt_vals(rna,[a,c,g,u]).cvt_vals75,1565 -cvt_vals(rna,[a,c,g,u]).cvt_vals75,1565 -cvt_vals([A|B],[A|B]).cvt_vals76,1590 -cvt_vals([A|B],[A|B]).cvt_vals76,1590 -find_probs(Logs,Nth,Log) :-find_probs79,1651 -find_probs(Logs,Nth,Log) :-find_probs79,1651 -find_probs(Logs,Nth,Log) :-find_probs79,1651 - -packages/CLPBN/clpbn/horus.yap,418 -patch_things_up :-patch_things_up26,584 -warning :-warning30,658 -set_horus_flag(K,V) :- cpp_set_horus_flag(K,V).set_horus_flag34,771 -set_horus_flag(K,V) :- cpp_set_horus_flag(K,V).set_horus_flag34,771 -set_horus_flag(K,V) :- cpp_set_horus_flag(K,V).set_horus_flag34,771 -set_horus_flag(K,V) :- cpp_set_horus_flag(K,V).set_horus_flag34,771 -set_horus_flag(K,V) :- cpp_set_horus_flag(K,V).set_horus_flag34,771 - -packages/CLPBN/clpbn/horus_ground.yap,1120 -end_horus_ground_solver(state(Network,_Hash,_Id, _DistIds)) :-end_horus_ground_solver74,2089 -end_horus_ground_solver(state(Network,_Hash,_Id, _DistIds)) :-end_horus_ground_solver74,2089 -end_horus_ground_solver(state(Network,_Hash,_Id, _DistIds)) :-end_horus_ground_solver74,2089 -factors_type([f(bayes, _, _)|_], bayes) :- ! .factors_type78,2189 -factors_type([f(bayes, _, _)|_], bayes) :- ! .factors_type78,2189 -factors_type([f(bayes, _, _)|_], bayes) :- ! .factors_type78,2189 -factors_type([f(markov, _, _)|_], markov) :- ! .factors_type79,2236 -factors_type([f(markov, _, _)|_], markov) :- ! .factors_type79,2236 -factors_type([f(markov, _, _)|_], markov) :- ! .factors_type79,2236 -get_dist_id(fn(_, _, _, DistId, _), DistId).get_dist_id82,2287 -get_dist_id(fn(_, _, _, DistId, _), DistId).get_dist_id82,2287 -get_domain(_:Key, Domain) :- !,get_domain85,2334 -get_domain(_:Key, Domain) :- !,get_domain85,2334 -get_domain(_:Key, Domain) :- !,get_domain85,2334 -get_domain(Key, Domain) :-get_domain87,2388 -get_domain(Key, Domain) :-get_domain87,2388 -get_domain(Key, Domain) :-get_domain87,2388 - -packages/CLPBN/clpbn/horus_lifted.yap,3118 -call_horus_lifted_solver(QueryVars, AllVars, Output) :-call_horus_lifted_solver37,847 -call_horus_lifted_solver(QueryVars, AllVars, Output) :-call_horus_lifted_solver37,847 -call_horus_lifted_solver(QueryVars, AllVars, Output) :-call_horus_lifted_solver37,847 -init_horus_lifted_solver(_, AllVars, _, state(Network, DistIds)) :-init_horus_lifted_solver44,1090 -init_horus_lifted_solver(_, AllVars, _, state(Network, DistIds)) :-init_horus_lifted_solver44,1090 -init_horus_lifted_solver(_, AllVars, _, state(Network, DistIds)) :-init_horus_lifted_solver44,1090 -run_horus_lifted_solver(QueryVars, Solutions, state(Network, _DistIds)) :-run_horus_lifted_solver53,1437 -run_horus_lifted_solver(QueryVars, Solutions, state(Network, _DistIds)) :-run_horus_lifted_solver53,1437 -run_horus_lifted_solver(QueryVars, Solutions, state(Network, _DistIds)) :-run_horus_lifted_solver53,1437 -end_horus_lifted_solver(state(Network, _)) :-end_horus_lifted_solver60,1733 -end_horus_lifted_solver(state(Network, _)) :-end_horus_lifted_solver60,1733 -end_horus_lifted_solver(state(Network, _)) :-end_horus_lifted_solver60,1733 -:- table get_parfactors/1.table66,1884 -:- table get_parfactors/1.table66,1884 -get_parfactors(Factors) :-get_parfactors68,1912 -get_parfactors(Factors) :-get_parfactors68,1912 -get_parfactors(Factors) :-get_parfactors68,1912 -is_factor(pf(Id, Ks, Rs, Phi, Tuples)) :-is_factor72,1977 -is_factor(pf(Id, Ks, Rs, Phi, Tuples)) :-is_factor72,1977 -is_factor(pf(Id, Ks, Rs, Phi, Tuples)) :-is_factor72,1977 -get_range(K, Range) :-get_range80,2175 -get_range(K, Range) :-get_range80,2175 -get_range(K, Range) :-get_range80,2175 -gen_table(Table, Phi) :-gen_table85,2244 -gen_table(Table, Phi) :-gen_table85,2244 -gen_table(Table, Phi) :-gen_table85,2244 -all_tuples(Constraints, Tuple, Tuples) :-all_tuples89,2331 -all_tuples(Constraints, Tuple, Tuples) :-all_tuples89,2331 -all_tuples(Constraints, Tuple, Tuples) :-all_tuples89,2331 -run([]).run94,2443 -run([]).run94,2443 -run([Goal|Constraints]) :-run95,2452 -run([Goal|Constraints]) :-run95,2452 -run([Goal|Constraints]) :-run95,2452 -get_dist_id(pf(DistId, _, _, _, _), DistId).get_dist_id100,2512 -get_dist_id(pf(DistId, _, _, _, _), DistId).get_dist_id100,2512 -get_observed_keys([], []).get_observed_keys103,2559 -get_observed_keys([], []).get_observed_keys103,2559 -get_observed_keys(V.AllAttVars, [K:E|ObservedKeys]) :-get_observed_keys104,2586 -get_observed_keys(V.AllAttVars, [K:E|ObservedKeys]) :-get_observed_keys104,2586 -get_observed_keys(V.AllAttVars, [K:E|ObservedKeys]) :-get_observed_keys104,2586 -get_observed_keys(_V.AllAttVars, ObservedKeys) :-get_observed_keys108,2777 -get_observed_keys(_V.AllAttVars, ObservedKeys) :-get_observed_keys108,2777 -get_observed_keys(_V.AllAttVars, ObservedKeys) :-get_observed_keys108,2777 -get_query_keys([], []).get_query_keys112,2875 -get_query_keys([], []).get_query_keys112,2875 -get_query_keys(V.AttVars, K.Ks) :-get_query_keys113,2899 -get_query_keys(V.AttVars, K.Ks) :-get_query_keys113,2899 -get_query_keys(V.AttVars, K.Ks) :-get_query_keys113,2899 - -packages/CLPBN/clpbn/jt.yap,20251 -jt([[]],_,_) :- !.jt93,1698 -jt([[]],_,_) :- !.jt93,1698 -jt([[]],_,_) :- !.jt93,1698 -jt(LLVs,Vs0,AllDiffs) :-jt94,1717 -jt(LLVs,Vs0,AllDiffs) :-jt94,1717 -jt(LLVs,Vs0,AllDiffs) :-jt94,1717 -init_jt_solver(LLVs, Vs0, _, State) :-init_jt_solver100,1871 -init_jt_solver(LLVs, Vs0, _, State) :-init_jt_solver100,1871 -init_jt_solver(LLVs, Vs0, _, State) :-init_jt_solver100,1871 -init_jt_solver_for_question(G, RG, LLVs, state(JTree, Evidence)) :-init_jt_solver_for_question105,2031 -init_jt_solver_for_question(G, RG, LLVs, state(JTree, Evidence)) :-init_jt_solver_for_question105,2031 -init_jt_solver_for_question(G, RG, LLVs, state(JTree, Evidence)) :-init_jt_solver_for_question105,2031 -run_jt_solver(LVs, LPs, state(JTree, Evidence)) :-run_jt_solver111,2227 -run_jt_solver(LVs, LPs, state(JTree, Evidence)) :-run_jt_solver111,2227 -run_jt_solver(LVs, LPs, state(JTree, Evidence)) :-run_jt_solver111,2227 -get_graph(LVs, BayesNet, CPTs, Evidence) :-get_graph120,2495 -get_graph(LVs, BayesNet, CPTs, Evidence) :-get_graph120,2495 -get_graph(LVs, BayesNet, CPTs, Evidence) :-get_graph120,2495 -run_vars([], [], [], [], []).run_vars127,2713 -run_vars([], [], [], [], []).run_vars127,2713 -run_vars([V|LVs], Edges, [V|Vs], [CPTVars-dist([V|Parents],Id)|CPTs], Ev) :-run_vars128,2743 -run_vars([V|LVs], Edges, [V|Vs], [CPTVars-dist([V|Parents],Id)|CPTs], Ev) :-run_vars128,2743 -run_vars([V|LVs], Edges, [V|Vs], [CPTVars-dist([V|Parents],Id)|CPTs], Ev) :-run_vars128,2743 -add_evidence_from_vars(V, [e(V,P)|Evs], Evs) :-add_evidence_from_vars135,3004 -add_evidence_from_vars(V, [e(V,P)|Evs], Evs) :-add_evidence_from_vars135,3004 -add_evidence_from_vars(V, [e(V,P)|Evs], Evs) :-add_evidence_from_vars135,3004 -add_evidence_from_vars(_, Evs, Evs).add_evidence_from_vars137,3090 -add_evidence_from_vars(_, Evs, Evs).add_evidence_from_vars137,3090 -find_nth0([Id|_], Id, P, P) :- !.find_nth0139,3128 -find_nth0([Id|_], Id, P, P) :- !.find_nth0139,3128 -find_nth0([Id|_], Id, P, P) :- !.find_nth0139,3128 -find_nth0([_|D], Id, P0, P) :-find_nth0140,3162 -find_nth0([_|D], Id, P0, P) :-find_nth0140,3162 -find_nth0([_|D], Id, P0, P) :-find_nth0140,3162 -add_edges([], _, Edges, Edges).add_edges144,3233 -add_edges([], _, Edges, Edges).add_edges144,3233 -add_edges([P|Parents], V, [V-P|Edges], Edges0) :-add_edges145,3265 -add_edges([P|Parents], V, [V-P|Edges], Edges0) :-add_edges145,3265 -add_edges([P|Parents], V, [V-P|Edges], Edges0) :-add_edges145,3265 -build_jt(BayesNet, CPTs, Tree) :-build_jt148,3355 -build_jt(BayesNet, CPTs, Tree) :-build_jt148,3355 -build_jt(BayesNet, CPTs, Tree) :-build_jt148,3355 -initial_graph(_,Parents, CPTs) :-initial_graph158,3681 -initial_graph(_,Parents, CPTs) :-initial_graph158,3681 -initial_graph(_,Parents, CPTs) :-initial_graph158,3681 -problem_graph([], []).problem_graph168,3956 -problem_graph([], []).problem_graph168,3956 -problem_graph([V|BNet], GraphF) :-problem_graph169,3979 -problem_graph([V|BNet], GraphF) :-problem_graph169,3979 -problem_graph([V|BNet], GraphF) :-problem_graph169,3979 -add_parents([], _, Graph, Graph).add_parents174,4128 -add_parents([], _, Graph, Graph).add_parents174,4128 -add_parents([P|Parents], V, Graph0, [P-V|GraphF]) :-add_parents175,4162 -add_parents([P|Parents], V, Graph0, [P-V|GraphF]) :-add_parents175,4162 -add_parents([P|Parents], V, Graph0, [P-V|GraphF]) :-add_parents175,4162 -init_undgraph(Parents, UndGraph) :-init_undgraph199,4600 -init_undgraph(Parents, UndGraph) :-init_undgraph199,4600 -init_undgraph(Parents, UndGraph) :-init_undgraph199,4600 -get_par_keys([], []).get_par_keys203,4712 -get_par_keys([], []).get_par_keys203,4712 -get_par_keys([P|Parents],[K|KPars]) :-get_par_keys204,4734 -get_par_keys([P|Parents],[K|KPars]) :-get_par_keys204,4734 -get_par_keys([P|Parents],[K|KPars]) :-get_par_keys204,4734 -moralised([],Moral,Moral).moralised208,4834 -moralised([],Moral,Moral).moralised208,4834 -moralised([_-KPars|Ks],Moral0,MoralF) :-moralised209,4861 -moralised([_-KPars|Ks],Moral0,MoralF) :-moralised209,4861 -moralised([_-KPars|Ks],Moral0,MoralF) :-moralised209,4861 -add_moral_edges([], Moral, Moral).add_moral_edges213,4974 -add_moral_edges([], Moral, Moral).add_moral_edges213,4974 -add_moral_edges([_], Moral, Moral).add_moral_edges214,5009 -add_moral_edges([_], Moral, Moral).add_moral_edges214,5009 -add_moral_edges([K1,K2|KPars], Moral0, MoralF) :-add_moral_edges215,5045 -add_moral_edges([K1,K2|KPars], Moral0, MoralF) :-add_moral_edges215,5045 -add_moral_edges([K1,K2|KPars], Moral0, MoralF) :-add_moral_edges215,5045 -triangulate([], _, Triangulated, Triangulated, []) :- !.triangulate220,5230 -triangulate([], _, Triangulated, Triangulated, []) :- !.triangulate220,5230 -triangulate([], _, Triangulated, Triangulated, []) :- !.triangulate220,5230 -triangulate(Vertices, S0, T0, Tf, Cliques) :-triangulate221,5287 -triangulate(Vertices, S0, T0, Tf, Cliques) :-triangulate221,5287 -triangulate(Vertices, S0, T0, Tf, Cliques) :-triangulate221,5287 -choose([], _, _, NewEdges, Best, Best, Clique, Cliques0, [Clique|Cliques0], NewEdges).choose229,5632 -choose([], _, _, NewEdges, Best, Best, Clique, Cliques0, [Clique|Cliques0], NewEdges).choose229,5632 -choose([V|Vertices], Graph, Score0, _, _, Best, _, Cliques0, Cliques, EdgesF) :-choose230,5719 -choose([V|Vertices], Graph, Score0, _, _, Best, _, Cliques0, Cliques, EdgesF) :-choose230,5719 -choose([V|Vertices], Graph, Score0, _, _, Best, _, Cliques0, Cliques, EdgesF) :-choose230,5719 -choose([_|Vertices], Graph, Score0, Edges0, BestSoFar, Best, Clique, Cliques0, Cliques, EdgesF) :-choose249,6268 -choose([_|Vertices], Graph, Score0, Edges0, BestSoFar, Best, Clique, Cliques0, Cliques, EdgesF) :-choose249,6268 -choose([_|Vertices], Graph, Score0, Edges0, BestSoFar, Best, Clique, Cliques0, Cliques, EdgesF) :-choose249,6268 -new_edges([], _, []).new_edges252,6457 -new_edges([], _, []).new_edges252,6457 -new_edges([N|Neighbors], Graph, NewEdgesF) :-new_edges253,6479 -new_edges([N|Neighbors], Graph, NewEdgesF) :-new_edges253,6479 -new_edges([N|Neighbors], Graph, NewEdgesF) :-new_edges253,6479 -new_edges([],_,_,NewEdges, NewEdges).new_edges257,6619 -new_edges([],_,_,NewEdges, NewEdges).new_edges257,6619 -new_edges([N1|Neighbors],N,Graph,NewEdges0, NewEdgesF) :-new_edges258,6657 -new_edges([N1|Neighbors],N,Graph,NewEdges0, NewEdgesF) :-new_edges258,6657 -new_edges([N1|Neighbors],N,Graph,NewEdges0, NewEdgesF) :-new_edges258,6657 -new_edges([N1|Neighbors],N,Graph,NewEdges0, [N-N1|NewEdgesF]) :-new_edges261,6800 -new_edges([N1|Neighbors],N,Graph,NewEdges0, [N-N1|NewEdgesF]) :-new_edges261,6800 -new_edges([N1|Neighbors],N,Graph,NewEdges0, [N-N1|NewEdgesF]) :-new_edges261,6800 -cliquelength([],CL,CL).cliquelength264,6918 -cliquelength([],CL,CL).cliquelength264,6918 -cliquelength([V|Vs],CL0,CL) :-cliquelength265,6942 -cliquelength([V|Vs],CL0,CL) :-cliquelength265,6942 -cliquelength([V|Vs],CL0,CL) :-cliquelength265,6942 -cliques(CliqueList, CliquesF) :-cliques276,7173 -cliques(CliqueList, CliquesF) :-cliques276,7173 -cliques(CliqueList, CliquesF) :-cliques276,7173 -get_links([], Vertices, Vertices, Edges, Edges).get_links286,7509 -get_links([], Vertices, Vertices, Edges, Edges).get_links286,7509 -get_links([Sz-Clique|Cliques], SoFar, Vertices, Edges0, Edges) :-get_links287,7558 -get_links([Sz-Clique|Cliques], SoFar, Vertices, Edges0, Edges) :-get_links287,7558 -get_links([Sz-Clique|Cliques], SoFar, Vertices, Edges0, Edges) :-get_links287,7558 -get_links([_|Cliques], SoFar, Vertices, Edges0, Edges) :-get_links290,7743 -get_links([_|Cliques], SoFar, Vertices, Edges0, Edges) :-get_links290,7743 -get_links([_|Cliques], SoFar, Vertices, Edges0, Edges) :-get_links290,7743 -add_clique_edges([], _, _, Edges, Edges).add_clique_edges293,7855 -add_clique_edges([], _, _, Edges, Edges).add_clique_edges293,7855 -add_clique_edges([Clique1|Cliques], Clique, Sz, Edges0, EdgesF) :-add_clique_edges294,7897 -add_clique_edges([Clique1|Cliques], Clique, Sz, Edges0, EdgesF) :-add_clique_edges294,7897 -add_clique_edges([Clique1|Cliques], Clique, Sz, Edges0, EdgesF) :-add_clique_edges294,7897 -root(WTree, JTree) :-root305,8218 -root(WTree, JTree) :-root305,8218 -root(WTree, JTree) :-root305,8218 -remove_leaves(Tree, SmallerTree) :-remove_leaves313,8434 -remove_leaves(Tree, SmallerTree) :-remove_leaves313,8434 -remove_leaves(Tree, SmallerTree) :-remove_leaves313,8434 -remove_leaves(Tree, Tree).remove_leaves320,8667 -remove_leaves(Tree, Tree).remove_leaves320,8667 -get_leaves([], _, []).get_leaves322,8695 -get_leaves([], _, []).get_leaves322,8695 -get_leaves([V|Vertices], Tree, [V|Leaves]) :-get_leaves323,8718 -get_leaves([V|Vertices], Tree, [V|Leaves]) :-get_leaves323,8718 -get_leaves([V|Vertices], Tree, [V|Leaves]) :-get_leaves323,8718 -get_leaves([_|Vertices], Tree, Leaves) :-get_leaves326,8839 -get_leaves([_|Vertices], Tree, Leaves) :-get_leaves326,8839 -get_leaves([_|Vertices], Tree, Leaves) :-get_leaves326,8839 -pick_root([V|_],V).pick_root329,8919 -pick_root([V|_],V).pick_root329,8919 -direct_edges([], _, [], []) :- !.direct_edges331,8940 -direct_edges([], _, [], []) :- !.direct_edges331,8940 -direct_edges([], _, [], []) :- !.direct_edges331,8940 -direct_edges([], NewVs, RemEdges, Directed) :-direct_edges332,8974 -direct_edges([], NewVs, RemEdges, Directed) :-direct_edges332,8974 -direct_edges([], NewVs, RemEdges, Directed) :-direct_edges332,8974 -direct_edges([V1-V2|Edges], NewVs0, RemEdges, [V1-V2|Directed]) :-direct_edges334,9067 -direct_edges([V1-V2|Edges], NewVs0, RemEdges, [V1-V2|Directed]) :-direct_edges334,9067 -direct_edges([V1-V2|Edges], NewVs0, RemEdges, [V1-V2|Directed]) :-direct_edges334,9067 -direct_edges([V1-V2|Edges], NewVs0, RemEdges, [V2-V1|Directed]) :-direct_edges338,9246 -direct_edges([V1-V2|Edges], NewVs0, RemEdges, [V2-V1|Directed]) :-direct_edges338,9246 -direct_edges([V1-V2|Edges], NewVs0, RemEdges, [V2-V1|Directed]) :-direct_edges338,9246 -direct_edges([Edge|Edges], NewVs, RemEdges, Directed) :-direct_edges342,9425 -direct_edges([Edge|Edges], NewVs, RemEdges, Directed) :-direct_edges342,9425 -direct_edges([Edge|Edges], NewVs, RemEdges, Directed) :-direct_edges342,9425 -populate(CPTs, JTree, NewJTree) :-populate346,9540 -populate(CPTs, JTree, NewJTree) :-populate346,9540 -populate(CPTs, JTree, NewJTree) :-populate346,9540 -populate_cliques(tree(Clique,Kids), CPTs, tree(Clique-MyCPTs,NewKids), RemCPTs) :-populate_cliques350,9646 -populate_cliques(tree(Clique,Kids), CPTs, tree(Clique-MyCPTs,NewKids), RemCPTs) :-populate_cliques350,9646 -populate_cliques(tree(Clique,Kids), CPTs, tree(Clique-MyCPTs,NewKids), RemCPTs) :-populate_cliques350,9646 -populate_trees_with_cliques([], MoreCPTs, [], MoreCPTs).populate_trees_with_cliques354,9837 -populate_trees_with_cliques([], MoreCPTs, [], MoreCPTs).populate_trees_with_cliques354,9837 -populate_trees_with_cliques([Node|Kids], MoreCPTs, [NewNode|NewKids], RemCPts) :-populate_trees_with_cliques355,9894 -populate_trees_with_cliques([Node|Kids], MoreCPTs, [NewNode|NewKids], RemCPts) :-populate_trees_with_cliques355,9894 -populate_trees_with_cliques([Node|Kids], MoreCPTs, [NewNode|NewKids], RemCPts) :-populate_trees_with_cliques355,9894 -get_cpts([], _, [], []).get_cpts360,10098 -get_cpts([], _, [], []).get_cpts360,10098 -get_cpts([CPT|CPts], [], [], [CPT|CPts]) :- !.get_cpts361,10123 -get_cpts([CPT|CPts], [], [], [CPT|CPts]) :- !.get_cpts361,10123 -get_cpts([CPT|CPts], [], [], [CPT|CPts]) :- !.get_cpts361,10123 -get_cpts([[I|MCPT]-Info|CPTs], [J|Clique], MyCPTs, MoreCPTs) :-get_cpts362,10170 -get_cpts([[I|MCPT]-Info|CPTs], [J|Clique], MyCPTs, MoreCPTs) :-get_cpts362,10170 -get_cpts([[I|MCPT]-Info|CPTs], [J|Clique], MyCPTs, MoreCPTs) :-get_cpts362,10170 -get_cpt(MCPT, Clique, I, Info, [[I|MCPT]-Info|MyCPTs], MyCPTs, MoreCPTs, MoreCPTs) :-get_cpt378,10725 -get_cpt(MCPT, Clique, I, Info, [[I|MCPT]-Info|MyCPTs], MyCPTs, MoreCPTs, MoreCPTs) :-get_cpt378,10725 -get_cpt(MCPT, Clique, I, Info, [[I|MCPT]-Info|MyCPTs], MyCPTs, MoreCPTs, MoreCPTs) :-get_cpt378,10725 -get_cpt(MCPT, _, I, Info, MyCPTs, MyCPTs, [[I|MCPT]-Info|MoreCPTs], MoreCPTs).get_cpt380,10841 -get_cpt(MCPT, _, I, Info, MyCPTs, MyCPTs, [[I|MCPT]-Info|MoreCPTs], MoreCPTs).get_cpt380,10841 -translate_edges([], [], []).translate_edges383,10922 -translate_edges([], [], []).translate_edges383,10922 -translate_edges([E1-E2|Edges], [(E1-A)-(E2-B)|NEdges], [E1-A,E2-B|Vs]) :-translate_edges384,10951 -translate_edges([E1-E2|Edges], [(E1-A)-(E2-B)|NEdges], [E1-A,E2-B|Vs]) :-translate_edges384,10951 -translate_edges([E1-E2|Edges], [(E1-A)-(E2-B)|NEdges], [E1-A,E2-B|Vs]) :-translate_edges384,10951 -match_vs(_,[]).match_vs387,11063 -match_vs(_,[]).match_vs387,11063 -match_vs([K-A|Cls],[K1-B|KVs]) :-match_vs388,11079 -match_vs([K-A|Cls],[K1-B|KVs]) :-match_vs388,11079 -match_vs([K-A|Cls],[K1-B|KVs]) :-match_vs388,11079 -fill_with_cpts(tree(Clique-Dists,Leafs), tree(Clique-NewDists,NewLeafs)) :-fill_with_cpts400,11261 -fill_with_cpts(tree(Clique-Dists,Leafs), tree(Clique-NewDists,NewLeafs)) :-fill_with_cpts400,11261 -fill_with_cpts(tree(Clique-Dists,Leafs), tree(Clique-NewDists,NewLeafs)) :-fill_with_cpts400,11261 -fill_tree_with_cpts([], []).fill_tree_with_cpts405,11418 -fill_tree_with_cpts([], []).fill_tree_with_cpts405,11418 -fill_tree_with_cpts([L|Leafs], [NL|NewLeafs]) :-fill_tree_with_cpts406,11447 -fill_tree_with_cpts([L|Leafs], [NL|NewLeafs]) :-fill_tree_with_cpts406,11447 -fill_tree_with_cpts([L|Leafs], [NL|NewLeafs]) :-fill_tree_with_cpts406,11447 -transform([], []).transform410,11560 -transform([], []).transform410,11560 -transform([Clique-Dists|Nodes],[Clique-NewDist|NewNodes]) :-transform411,11579 -transform([Clique-Dists|Nodes],[Clique-NewDist|NewNodes]) :-transform411,11579 -transform([Clique-Dists|Nodes],[Clique-NewDist|NewNodes]) :-transform411,11579 -compile_cpts([Vs-dist(OVs,Id)|Dists], Clique, TAB) :-compile_cpts415,11709 -compile_cpts([Vs-dist(OVs,Id)|Dists], Clique, TAB) :-compile_cpts415,11709 -compile_cpts([Vs-dist(OVs,Id)|Dists], Clique, TAB) :-compile_cpts415,11709 -compile_cpts([], [V|Clique], TAB) :-compile_cpts421,11942 -compile_cpts([], [V|Clique], TAB) :-compile_cpts421,11942 -compile_cpts([], [V|Clique], TAB) :-compile_cpts421,11942 -multiply_dists([],Vs,TAB,_,Vs,TAB).multiply_dists425,12041 -multiply_dists([],Vs,TAB,_,Vs,TAB).multiply_dists425,12041 -multiply_dists([Vs-dist(OVs,Id)|Dists],MVs,TAB2,Sz2,FVars,FTAB) :-multiply_dists426,12077 -multiply_dists([Vs-dist(OVs,Id)|Dists],MVs,TAB2,Sz2,FVars,FTAB) :-multiply_dists426,12077 -multiply_dists([Vs-dist(OVs,Id)|Dists],MVs,TAB2,Sz2,FVars,FTAB) :-multiply_dists426,12077 -build_tree(Root, Leafs, WTree, tree(Root,Leaves), NewLeafs) :-build_tree433,12356 -build_tree(Root, Leafs, WTree, tree(Root,Leaves), NewLeafs) :-build_tree433,12356 -build_tree(Root, Leafs, WTree, tree(Root,Leaves), NewLeafs) :-build_tree433,12356 -build_trees( [], Leafs, _, [], Leafs).build_trees438,12558 -build_trees( [], Leafs, _, [], Leafs).build_trees438,12558 -build_trees([V|Children], Leafs, WTree, NLeaves, NewLeafs) :-build_trees439,12597 -build_trees([V|Children], Leafs, WTree, NLeaves, NewLeafs) :-build_trees439,12597 -build_trees([V|Children], Leafs, WTree, NLeaves, NewLeafs) :-build_trees439,12597 -build_trees([V|Children], Leafs, WTree, [VT|NLeaves], NewLeafs) :-build_trees443,12760 -build_trees([V|Children], Leafs, WTree, [VT|NLeaves], NewLeafs) :-build_trees443,12760 -build_trees([V|Children], Leafs, WTree, [VT|NLeaves], NewLeafs) :-build_trees443,12760 -propagate_evidence([], NewTree, NewTree).propagate_evidence448,12929 -propagate_evidence([], NewTree, NewTree).propagate_evidence448,12929 -propagate_evidence([e(V,P)|Evs], Tree0, NewTree) :-propagate_evidence449,12971 -propagate_evidence([e(V,P)|Evs], Tree0, NewTree) :-propagate_evidence449,12971 -propagate_evidence([e(V,P)|Evs], Tree0, NewTree) :-propagate_evidence449,12971 -add_evidence_to_matrix(tree(Clique-Dist,Kids), V, P, tree(Clique-NDist,Kids)) :-add_evidence_to_matrix453,13114 -add_evidence_to_matrix(tree(Clique-Dist,Kids), V, P, tree(Clique-NDist,Kids)) :-add_evidence_to_matrix453,13114 -add_evidence_to_matrix(tree(Clique-Dist,Kids), V, P, tree(Clique-NDist,Kids)) :-add_evidence_to_matrix453,13114 -add_evidence_to_matrix(tree(C,Kids), V, P, tree(C,NKids)) :-add_evidence_to_matrix456,13279 -add_evidence_to_matrix(tree(C,Kids), V, P, tree(C,NKids)) :-add_evidence_to_matrix456,13279 -add_evidence_to_matrix(tree(C,Kids), V, P, tree(C,NKids)) :-add_evidence_to_matrix456,13279 -add_evidence_to_kids([K|Kids], V, P, [NK|Kids]) :-add_evidence_to_kids459,13383 -add_evidence_to_kids([K|Kids], V, P, [NK|Kids]) :-add_evidence_to_kids459,13383 -add_evidence_to_kids([K|Kids], V, P, [NK|Kids]) :-add_evidence_to_kids459,13383 -add_evidence_to_kids([K|Kids], V, P, [K|NNKids]) :-add_evidence_to_kids461,13475 -add_evidence_to_kids([K|Kids], V, P, [K|NNKids]) :-add_evidence_to_kids461,13475 -add_evidence_to_kids([K|Kids], V, P, [K|NNKids]) :-add_evidence_to_kids461,13475 -message_passing(tree(Clique-Dist,Kids), tree(Clique-NDist,NKids)) :-message_passing464,13571 -message_passing(tree(Clique-Dist,Kids), tree(Clique-NDist,NKids)) :-message_passing464,13571 -message_passing(tree(Clique-Dist,Kids), tree(Clique-NDist,NKids)) :-message_passing464,13571 -upward([], _, Dist, [], Dist, _).upward471,13819 -upward([], _, Dist, [], Dist, _).upward471,13819 -upward([tree(Clique1-Dist1,DistKids)|Kids], Clique, Tab, [tree(Clique1-(NewDist1,EDist1),NDistKids)|NKids], NewTab, Lev) :-upward472,13853 -upward([tree(Clique1-Dist1,DistKids)|Kids], Clique, Tab, [tree(Clique1-(NewDist1,EDist1),NDistKids)|NKids], NewTab, Lev) :-upward472,13853 -upward([tree(Clique1-Dist1,DistKids)|Kids], Clique, Tab, [tree(Clique1-(NewDist1,EDist1),NDistKids)|NKids], NewTab, Lev) :-upward472,13853 -downward([], _, _, []).downward482,14316 -downward([], _, _, []).downward482,14316 -downward([tree(Clique1-(Dist1,Msg1),DistKids)|Kids], Clique, Tab, [tree(Clique1-NDist1,NDistKids)|NKids]) :-downward483,14340 -downward([tree(Clique1-(Dist1,Msg1),DistKids)|Kids], Clique, Tab, [tree(Clique1-NDist1,NDistKids)|NKids]) :-downward483,14340 -downward([tree(Clique1-(Dist1,Msg1),DistKids)|Kids], Clique, Tab, [tree(Clique1-NDist1,NDistKids)|NKids]) :-downward483,14340 -get_margin(NewTree, LVs0, LPs) :-get_margin495,14794 -get_margin(NewTree, LVs0, LPs) :-get_margin495,14794 -get_margin(NewTree, LVs0, LPs) :-get_margin495,14794 -find_clique(tree(Clique-Dist,_), LVs, Clique, Dist) :-find_clique503,15031 -find_clique(tree(Clique-Dist,_), LVs, Clique, Dist) :-find_clique503,15031 -find_clique(tree(Clique-Dist,_), LVs, Clique, Dist) :-find_clique503,15031 -find_clique(tree(_,Kids), LVs, Clique, Dist) :-find_clique505,15115 -find_clique(tree(_,Kids), LVs, Clique, Dist) :-find_clique505,15115 -find_clique(tree(_,Kids), LVs, Clique, Dist) :-find_clique505,15115 -find_clique_from_kids([K|_], LVs, Clique, Dist) :-find_clique_from_kids508,15213 -find_clique_from_kids([K|_], LVs, Clique, Dist) :-find_clique_from_kids508,15213 -find_clique_from_kids([K|_], LVs, Clique, Dist) :-find_clique_from_kids508,15213 -find_clique_from_kids([_|Kids], LVs, Clique, Dist) :-find_clique_from_kids510,15303 -find_clique_from_kids([_|Kids], LVs, Clique, Dist) :-find_clique_from_kids510,15303 -find_clique_from_kids([_|Kids], LVs, Clique, Dist) :-find_clique_from_kids510,15303 -write_tree(I0, tree(Clique-(Dist,_),Leaves)) :- !,write_tree514,15408 -write_tree(I0, tree(Clique-(Dist,_),Leaves)) :- !,write_tree514,15408 -write_tree(I0, tree(Clique-(Dist,_),Leaves)) :- !,write_tree514,15408 -write_tree(I0, tree(Clique-Dist,Leaves), I0) :-write_tree519,15578 -write_tree(I0, tree(Clique-Dist,Leaves), I0) :-write_tree519,15578 -write_tree(I0, tree(Clique-Dist,Leaves), I0) :-write_tree519,15578 -write_subtree([], _).write_subtree525,15747 -write_subtree([], _).write_subtree525,15747 -write_subtree([Tree|Leaves], I) :-write_subtree526,15769 -write_subtree([Tree|Leaves], I) :-write_subtree526,15769 -write_subtree([Tree|Leaves], I) :-write_subtree526,15769 - -packages/CLPBN/clpbn/matrix_cpt_utils.yap,11031 -init_CPT(List, Sizes, TAB) :-init_CPT53,1106 -init_CPT(List, Sizes, TAB) :-init_CPT53,1106 -init_CPT(List, Sizes, TAB) :-init_CPT53,1106 -init_possibly_deterministic_CPT(List, Sizes, TAB) :-init_possibly_deterministic_CPT57,1198 -init_possibly_deterministic_CPT(List, Sizes, TAB) :-init_possibly_deterministic_CPT57,1198 -init_possibly_deterministic_CPT(List, Sizes, TAB) :-init_possibly_deterministic_CPT57,1198 -project_from_CPT(V, Pos, Table, Deps, NewTable, NDeps) :-project_from_CPT63,1345 -project_from_CPT(V, Pos, Table, Deps, NewTable, NDeps) :-project_from_CPT63,1345 -project_from_CPT(V, Pos, Table, Deps, NewTable, NDeps) :-project_from_CPT63,1345 -sum_out_from_CPT(V, Table, Deps, NewTable, NDeps) :-sum_out_from_CPT70,1510 -sum_out_from_CPT(V, Table, Deps, NewTable, NDeps) :-sum_out_from_CPT70,1510 -sum_out_from_CPT(V, Table, Deps, NewTable, NDeps) :-sum_out_from_CPT70,1510 -project_from_CPT(V,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT74,1635 -project_from_CPT(V,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT74,1635 -project_from_CPT(V,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT74,1635 -project_from_CPT(V,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT79,1822 -project_from_CPT(V,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT79,1822 -project_from_CPT(V,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT79,1822 -evidence(V, Pos) :-evidence86,2044 -evidence(V, Pos) :-evidence86,2044 -evidence(V, Pos) :-evidence86,2044 -vnth([V1|Deps], N, V, N, Deps) :-vnth89,2102 -vnth([V1|Deps], N, V, N, Deps) :-vnth89,2102 -vnth([V1|Deps], N, V, N, Deps) :-vnth89,2102 -vnth([V1|Deps], N0, V, N, [V1|NDeps]) :-vnth91,2149 -vnth([V1|Deps], N0, V, N, [V1|NDeps]) :-vnth91,2149 -vnth([V1|Deps], N0, V, N, [V1|NDeps]) :-vnth91,2149 -reorder_CPT(Vs0,T0,Vs,TF,Sizes) :-reorder_CPT95,2234 -reorder_CPT(Vs0,T0,Vs,TF,Sizes) :-reorder_CPT95,2234 -reorder_CPT(Vs0,T0,Vs,TF,Sizes) :-reorder_CPT95,2234 -reorder_CPT(Vs0,T0,Vs,TF,Sizes) :-reorder_CPT106,2398 -reorder_CPT(Vs0,T0,Vs,TF,Sizes) :-reorder_CPT106,2398 -reorder_CPT(Vs0,T0,Vs,TF,Sizes) :-reorder_CPT106,2398 -order_vec(Vs0,Vs,Map) :-order_vec117,2548 -order_vec(Vs0,Vs,Map) :-order_vec117,2548 -order_vec(Vs0,Vs,Map) :-order_vec117,2548 -add_indices([],_,[]).add_indices122,2640 -add_indices([],_,[]).add_indices122,2640 -add_indices([V|Vs0],I0,[V-I0|Is]) :-add_indices123,2662 -add_indices([V|Vs0],I0,[V-I0|Is]) :-add_indices123,2662 -add_indices([V|Vs0],I0,[V-I0|Is]) :-add_indices123,2662 -get_els([], [], []).get_els127,2736 -get_els([], [], []).get_els127,2736 -get_els([V-I|NIs], [V|Vs], [I|Map]) :-get_els128,2757 -get_els([V-I|NIs], [V|Vs], [I|Map]) :-get_els128,2757 -get_els([V-I|NIs], [V|Vs], [I|Map]) :-get_els128,2757 -mapping(Vs0,Vs,Map) :-mapping131,2821 -mapping(Vs0,Vs,Map) :-mapping131,2821 -mapping(Vs0,Vs,Map) :-mapping131,2821 -add_indices([],[]).add_indices138,2951 -add_indices([],[]).add_indices138,2951 -add_indices([V|Vs0],[V-_|I1s]) :-add_indices139,2971 -add_indices([V|Vs0],[V-_|I1s]) :-add_indices139,2971 -add_indices([V|Vs0],[V-_|I1s]) :-add_indices139,2971 -split_map([], []).split_map142,3029 -split_map([], []).split_map142,3029 -split_map([_-M|Is], [M|Map]) :-split_map143,3048 -split_map([_-M|Is], [M|Map]) :-split_map143,3048 -split_map([_-M|Is], [M|Map]) :-split_map143,3048 -divide_CPTs(Tab1, Tab2, OT) :-divide_CPTs146,3102 -divide_CPTs(Tab1, Tab2, OT) :-divide_CPTs146,3102 -divide_CPTs(Tab1, Tab2, OT) :-divide_CPTs146,3102 -multiply_CPTs(tab(Tab1, Deps1, Sz1), tab(Tab2, Deps2, Sz2), tab(OT, NDeps, NSz), NTab2) :-multiply_CPTs149,3162 -multiply_CPTs(tab(Tab1, Deps1, Sz1), tab(Tab2, Deps2, Sz2), tab(OT, NDeps, NSz), NTab2) :-multiply_CPTs149,3162 -multiply_CPTs(tab(Tab1, Deps1, Sz1), tab(Tab2, Deps2, Sz2), tab(OT, NDeps, NSz), NTab2) :-multiply_CPTs149,3162 -multiply_CPTs(Tab1, Deps1, Tab2, Deps2, OT, NDeps) :-multiply_CPTs156,3449 -multiply_CPTs(Tab1, Deps1, Tab2, Deps2, OT, NDeps) :-multiply_CPTs156,3449 -multiply_CPTs(Tab1, Deps1, Tab2, Deps2, OT, NDeps) :-multiply_CPTs156,3449 -expand_tabs([], [], [], [], [], [], []).expand_tabs165,3728 -expand_tabs([], [], [], [], [], [], []).expand_tabs165,3728 -expand_tabs([V1|Deps1], [S1|Sz1], [], [], [0|Map1], [S1|Map2], [V1|NDeps]) :-expand_tabs166,3769 -expand_tabs([V1|Deps1], [S1|Sz1], [], [], [0|Map1], [S1|Map2], [V1|NDeps]) :-expand_tabs166,3769 -expand_tabs([V1|Deps1], [S1|Sz1], [], [], [0|Map1], [S1|Map2], [V1|NDeps]) :-expand_tabs166,3769 -expand_tabs([], [], [V2|Deps2], [S2|Sz2], [S2|Map1], [0|Map2], [V2|NDeps]) :-expand_tabs168,3900 -expand_tabs([], [], [V2|Deps2], [S2|Sz2], [S2|Map1], [0|Map2], [V2|NDeps]) :-expand_tabs168,3900 -expand_tabs([], [], [V2|Deps2], [S2|Sz2], [S2|Map1], [0|Map2], [V2|NDeps]) :-expand_tabs168,3900 -expand_tabs([V1|Deps1], [S1|Sz1], [V2|Deps2], [S2|Sz2], Map1, Map2, NDeps) :-expand_tabs170,4031 -expand_tabs([V1|Deps1], [S1|Sz1], [V2|Deps2], [S2|Sz2], Map1, Map2, NDeps) :-expand_tabs170,4031 -expand_tabs([V1|Deps1], [S1|Sz1], [V2|Deps2], [S2|Sz2], Map1, Map2, NDeps) :-expand_tabs170,4031 -normalise_CPT(MAT,NMAT) :-normalise_CPT193,4616 -normalise_CPT(MAT,NMAT) :-normalise_CPT193,4616 -normalise_CPT(MAT,NMAT) :-normalise_CPT193,4616 -list_from_CPT(MAT, List) :-list_from_CPT198,4728 -list_from_CPT(MAT, List) :-list_from_CPT198,4728 -list_from_CPT(MAT, List) :-list_from_CPT198,4728 -expand_CPT(MAT0, Dims0, DimsNew, MAT) :-expand_CPT201,4785 -expand_CPT(MAT0, Dims0, DimsNew, MAT) :-expand_CPT201,4785 -expand_CPT(MAT0, Dims0, DimsNew, MAT) :-expand_CPT201,4785 -generate_map([], [], []).generate_map205,4895 -generate_map([], [], []).generate_map205,4895 -generate_map([V|DimsNew], [V0|Dims0], [0|Map]) :- V == V0, !,generate_map206,4921 -generate_map([V|DimsNew], [V0|Dims0], [0|Map]) :- V == V0, !,generate_map206,4921 -generate_map([V|DimsNew], [V0|Dims0], [0|Map]) :- V == V0, !,generate_map206,4921 -generate_map([V|DimsNew], Dims0, [Sz|Map]) :-generate_map208,5019 -generate_map([V|DimsNew], Dims0, [Sz|Map]) :-generate_map208,5019 -generate_map([V|DimsNew], Dims0, [Sz|Map]) :-generate_map208,5019 -unit_CPT(V,CPT) :-unit_CPT213,5178 -unit_CPT(V,CPT) :-unit_CPT213,5178 -unit_CPT(V,CPT) :-unit_CPT213,5178 -reset_CPT_that_disagrees(CPT, Vars, V, Pos, NCPT) :-reset_CPT_that_disagrees218,5312 -reset_CPT_that_disagrees(CPT, Vars, V, Pos, NCPT) :-reset_CPT_that_disagrees218,5312 -reset_CPT_that_disagrees(CPT, Vars, V, Pos, NCPT) :-reset_CPT_that_disagrees218,5312 -sum_out_from_CPT(Vs,Table,Deps,tab(NewTable,Vs,Sz)) :-sum_out_from_CPT222,5452 -sum_out_from_CPT(Vs,Table,Deps,tab(NewTable,Vs,Sz)) :-sum_out_from_CPT222,5452 -sum_out_from_CPT(Vs,Table,Deps,tab(NewTable,Vs,Sz)) :-sum_out_from_CPT222,5452 -conversion_matrix([], [], []).conversion_matrix227,5625 -conversion_matrix([], [], []).conversion_matrix227,5625 -conversion_matrix([], [_|Deps], [1|Conv]) :-conversion_matrix228,5656 -conversion_matrix([], [_|Deps], [1|Conv]) :-conversion_matrix228,5656 -conversion_matrix([], [_|Deps], [1|Conv]) :-conversion_matrix228,5656 -conversion_matrix([V|Vs], [V1|Deps], [0|Conv]) :- V==V1, !,conversion_matrix230,5737 -conversion_matrix([V|Vs], [V1|Deps], [0|Conv]) :- V==V1, !,conversion_matrix230,5737 -conversion_matrix([V|Vs], [V1|Deps], [0|Conv]) :- V==V1, !,conversion_matrix230,5737 -conversion_matrix([V|Vs], [_|Deps], [1|Conv]) :-conversion_matrix232,5833 -conversion_matrix([V|Vs], [_|Deps], [1|Conv]) :-conversion_matrix232,5833 -conversion_matrix([V|Vs], [_|Deps], [1|Conv]) :-conversion_matrix232,5833 -get_CPT_sizes(CPT, Sizes) :-get_CPT_sizes235,5923 -get_CPT_sizes(CPT, Sizes) :-get_CPT_sizes235,5923 -get_CPT_sizes(CPT, Sizes) :-get_CPT_sizes235,5923 -matrix_expand_compact(M0,Zeros,M0) :-matrix_expand_compact238,5979 -matrix_expand_compact(M0,Zeros,M0) :-matrix_expand_compact238,5979 -matrix_expand_compact(M0,Zeros,M0) :-matrix_expand_compact238,5979 -matrix_expand_compact(M0,Map,M) :-matrix_expand_compact240,6038 -matrix_expand_compact(M0,Map,M) :-matrix_expand_compact240,6038 -matrix_expand_compact(M0,Map,M) :-matrix_expand_compact240,6038 -zero_map([]).zero_map243,6102 -zero_map([]).zero_map243,6102 -zero_map([0|Zeros]) :-zero_map244,6116 -zero_map([0|Zeros]) :-zero_map244,6116 -zero_map([0|Zeros]) :-zero_map244,6116 -col_from_CPT(CPT, Parents, Column) :-col_from_CPT247,6158 -col_from_CPT(CPT, Parents, Column) :-col_from_CPT247,6158 -col_from_CPT(CPT, Parents, Column) :-col_from_CPT247,6158 -column_from_possibly_deterministic_CPT(CPT, Parents, Column) :-column_from_possibly_deterministic_CPT251,6257 -column_from_possibly_deterministic_CPT(CPT, Parents, Column) :-column_from_possibly_deterministic_CPT251,6257 -column_from_possibly_deterministic_CPT(CPT, Parents, Column) :-column_from_possibly_deterministic_CPT251,6257 -multiply_factors(F1, F2, F) :-multiply_factors254,6360 -multiply_factors(F1, F2, F) :-multiply_factors254,6360 -multiply_factors(F1, F2, F) :-multiply_factors254,6360 -multiply_possibly_deterministic_factors(F1, F2, F) :-multiply_possibly_deterministic_factors257,6415 -multiply_possibly_deterministic_factors(F1, F2, F) :-multiply_possibly_deterministic_factors257,6415 -multiply_possibly_deterministic_factors(F1, F2, F) :-multiply_possibly_deterministic_factors257,6415 -normalise_possibly_deterministic_CPT(MAT,NMAT) :-normalise_possibly_deterministic_CPT260,6493 -normalise_possibly_deterministic_CPT(MAT,NMAT) :-normalise_possibly_deterministic_CPT260,6493 -normalise_possibly_deterministic_CPT(MAT,NMAT) :-normalise_possibly_deterministic_CPT260,6493 -random_CPT(Dims, M) :-random_CPT264,6616 -random_CPT(Dims, M) :-random_CPT264,6616 -random_CPT(Dims, M) :-random_CPT264,6616 -mult_all([],Size,Size).mult_all270,6791 -mult_all([],Size,Size).mult_all270,6791 -mult_all([D|Dims],Size0,Size) :-mult_all271,6815 -mult_all([D|Dims],Size0,Size) :-mult_all271,6815 -mult_all([D|Dims],Size0,Size) :-mult_all271,6815 -generate_random_entries(0, []) :- !.generate_random_entries275,6896 -generate_random_entries(0, []) :- !.generate_random_entries275,6896 -generate_random_entries(0, []) :- !.generate_random_entries275,6896 -generate_random_entries(Size, [R|Randoms]) :-generate_random_entries276,6933 -generate_random_entries(Size, [R|Randoms]) :-generate_random_entries276,6933 -generate_random_entries(Size, [R|Randoms]) :-generate_random_entries276,6933 -uniform_CPT_as_list(Dims, L) :-uniform_CPT_as_list281,7054 -uniform_CPT_as_list(Dims, L) :-uniform_CPT_as_list281,7054 -uniform_CPT_as_list(Dims, L) :-uniform_CPT_as_list281,7054 -uniform_CPT(Dims, M) :-uniform_CPT285,7133 -uniform_CPT(Dims, M) :-uniform_CPT285,7133 -uniform_CPT(Dims, M) :-uniform_CPT285,7133 -normalise_CPT_on_lines(MAT0, MAT2, L1) :-normalise_CPT_on_lines289,7241 -normalise_CPT_on_lines(MAT0, MAT2, L1) :-normalise_CPT_on_lines289,7241 -normalise_CPT_on_lines(MAT0, MAT2, L1) :-normalise_CPT_on_lines289,7241 - -packages/CLPBN/clpbn/numbers.yap,2658 -keys_to_numbers(AllKeys, Factors, Evidence, Hash, Id4, FactorIds, EvidenceIds) :-keys_to_numbers20,389 -keys_to_numbers(AllKeys, Factors, Evidence, Hash, Id4, FactorIds, EvidenceIds) :-keys_to_numbers20,389 -keys_to_numbers(AllKeys, Factors, Evidence, Hash, Id4, FactorIds, EvidenceIds) :-keys_to_numbers20,389 -keys_to_numbers(AllKeys, Factors, Evidence, Hash0, Hash4, Id0, Id4, FactorIds, EvidenceIds) :-keys_to_numbers25,584 -keys_to_numbers(AllKeys, Factors, Evidence, Hash0, Hash4, Id0, Id4, FactorIds, EvidenceIds) :-keys_to_numbers25,584 -keys_to_numbers(AllKeys, Factors, Evidence, Hash0, Hash4, Id0, Id4, FactorIds, EvidenceIds) :-keys_to_numbers25,584 -lists_of_keys_to_ids(QueryKeys, QueryIds, Hash0, Hash, Id0, Id) :-lists_of_keys_to_ids32,1010 -lists_of_keys_to_ids(QueryKeys, QueryIds, Hash0, Hash, Id0, Id) :-lists_of_keys_to_ids32,1010 -lists_of_keys_to_ids(QueryKeys, QueryIds, Hash0, Hash, Id0, Id) :-lists_of_keys_to_ids32,1010 -list_of_keys_to_ids(List, IdList, Hash0, Hash, I0, I) :-list_of_keys_to_ids35,1151 -list_of_keys_to_ids(List, IdList, Hash0, Hash, I0, I) :-list_of_keys_to_ids35,1151 -list_of_keys_to_ids(List, IdList, Hash0, Hash, I0, I) :-list_of_keys_to_ids35,1151 -key_to_id(Key, Id, Hash0, Hash0, I0, I0) :-key_to_id38,1263 -key_to_id(Key, Id, Hash0, Hash0, I0, I0) :-key_to_id38,1263 -key_to_id(Key, Id, Hash0, Hash0, I0, I0) :-key_to_id38,1263 -key_to_id(Key, I0, Hash0, Hash, I0, I) :-key_to_id40,1342 -key_to_id(Key, I0, Hash0, Hash, I0, I) :-key_to_id40,1342 -key_to_id(Key, I0, Hash0, Hash, I0, I) :-key_to_id40,1342 -factor_to_id(Ev, f(_, DistId, Keys), fn(Ids, Ranges, CPT, DistId, Keys), Hash0, Hash, I0, I) :-factor_to_id44,1435 -factor_to_id(Ev, f(_, DistId, Keys), fn(Ids, Ranges, CPT, DistId, Keys), Hash0, Hash, I0, I) :-factor_to_id44,1435 -factor_to_id(Ev, f(_, DistId, Keys), fn(Ids, Ranges, CPT, DistId, Keys), Hash0, Hash, I0, I) :-factor_to_id44,1435 -get_range(_Id:K, Range) :- !,get_range49,1663 -get_range(_Id:K, Range) :- !,get_range49,1663 -get_range(_Id:K, Range) :- !,get_range49,1663 -get_range(K, Range) :-get_range52,1735 -get_range(K, Range) :-get_range52,1735 -get_range(K, Range) :-get_range52,1735 -evidence_to_id(Key=Ev, Id=Ev, Hash0, Hash0, I0, I0) :-evidence_to_id57,1802 -evidence_to_id(Key=Ev, Id=Ev, Hash0, Hash0, I0, I0) :-evidence_to_id57,1802 -evidence_to_id(Key=Ev, Id=Ev, Hash0, Hash0, I0, I0) :-evidence_to_id57,1802 -evidence_to_id(Key=Ev, I0=Ev, Hash0, Hash, I0, I) :-evidence_to_id59,1892 -evidence_to_id(Key=Ev, I0=Ev, Hash0, Hash, I0, I) :-evidence_to_id59,1892 -evidence_to_id(Key=Ev, I0=Ev, Hash0, Hash, I0, I) :-evidence_to_id59,1892 - -packages/CLPBN/clpbn/pgrammar.yap,9058 -:- dynamic id/4, dist_id/2, new_proof/2.dynamic31,474 -:- dynamic id/4, dist_id/2, new_proof/2.dynamic31,474 -grammar_prob(M:S, P) :- !,grammar_prob35,592 -grammar_prob(M:S, P) :- !,grammar_prob35,592 -grammar_prob(M:S, P) :- !,grammar_prob35,592 -grammar_prob(S, P) :-grammar_prob37,643 -grammar_prob(S, P) :-grammar_prob37,643 -grammar_prob(S, P) :-grammar_prob37,643 -grammar_prob(S,M,P) :-grammar_prob41,709 -grammar_prob(S,M,P) :-grammar_prob41,709 -grammar_prob(S,M,P) :-grammar_prob41,709 -path_prob(InternalS,Proof,P) :-path_prob48,893 -path_prob(InternalS,Proof,P) :-path_prob48,893 -path_prob(InternalS,Proof,P) :-path_prob48,893 -grammar_mle(M:S, P) :- !,grammar_mle52,976 -grammar_mle(M:S, P) :- !,grammar_mle52,976 -grammar_mle(M:S, P) :- !,grammar_mle52,976 -grammar_mle(S, P) :-grammar_mle54,1025 -grammar_mle(S, P) :-grammar_mle54,1025 -grammar_mle(S, P) :-grammar_mle54,1025 -grammar_mle(S,M,P) :-grammar_mle58,1089 -grammar_mle(S,M,P) :-grammar_mle58,1089 -grammar_mle(S,M,P) :-grammar_mle58,1089 -grammar_mle(S,_,P) :-grammar_mle68,1322 -grammar_mle(S,_,P) :-grammar_mle68,1322 -grammar_mle(S,_,P) :-grammar_mle68,1322 -user:term_expansion((P::H --> B), Goal) :-term_expansion72,1409 -user:term_expansion((P::H --> B), Goal) :-term_expansion72,1409 -add_to_predicate(M:EH1,M:EH,_,NH,NB,Key,Choice,P,Id,(EH1:-NB)) :-add_to_predicate89,1892 -add_to_predicate(M:EH1,M:EH,_,NH,NB,Key,Choice,P,Id,(EH1:-NB)) :-add_to_predicate89,1892 -add_to_predicate(M:EH1,M:EH,_,NH,NB,Key,Choice,P,Id,(EH1:-NB)) :-add_to_predicate89,1892 -add_to_predicate(M:EH1,M:EH,M:H0,NH,NB,Key,Choice,P,Id,(EH1:-NB)) :-add_to_predicate95,2099 -add_to_predicate(M:EH1,M:EH,M:H0,NH,NB,Key,Choice,P,Id,(EH1:-NB)) :-add_to_predicate95,2099 -add_to_predicate(M:EH1,M:EH,M:H0,NH,NB,Key,Choice,P,Id,(EH1:-NB)) :-add_to_predicate95,2099 -p_rule(_,_,_,_) :-p_rule108,2436 -p_rule(_,_,_,_) :-p_rule108,2436 -p_rule(_,_,_,_) :-p_rule108,2436 -p_rule(M,EH,Key,Choice) :-p_rule110,2487 -p_rule(M,EH,Key,Choice) :-p_rule110,2487 -p_rule(M,EH,Key,Choice) :-p_rule110,2487 -ensure_tabled(M,H0,EH) :-ensure_tabled115,2593 -ensure_tabled(M,H0,EH) :-ensure_tabled115,2593 -ensure_tabled(M,H0,EH) :-ensure_tabled115,2593 -ensure_tabled(_,_,_).ensure_tabled119,2692 -ensure_tabled(_,_,_).ensure_tabled119,2692 -build_internal(N,NInternal) :-build_internal121,2715 -build_internal(N,NInternal) :-build_internal121,2715 -build_internal(N,NInternal) :-build_internal121,2715 -build_rule_name(N,NRule) :-build_rule_name124,2787 -build_rule_name(N,NRule) :-build_rule_name124,2787 -build_rule_name(N,NRule) :-build_rule_name124,2787 -convert_to_internal(Head, Body, NH, NBody, Id) :-convert_to_internal127,2848 -convert_to_internal(Head, Body, NH, NBody, Id) :-convert_to_internal127,2848 -convert_to_internal(Head, Body, NH, NBody, Id) :-convert_to_internal127,2848 -convert_body_to_internal((B1,B2), (NB1,NB2)) -->convert_body_to_internal133,3044 -convert_body_to_internal((B1,B2), (NB1,NB2)) -->convert_body_to_internal133,3044 -convert_body_to_internal((B1,B2), (NB1,NB2)) -->convert_body_to_internal133,3044 -convert_body_to_internal([A], [A]) --> !.convert_body_to_internal137,3167 -convert_body_to_internal([A], [A]) --> !.convert_body_to_internal137,3167 -convert_body_to_internal([A], [A]) --> !.convert_body_to_internal137,3167 -convert_body_to_internal({A}, {A}) --> !.convert_body_to_internal138,3209 -convert_body_to_internal({A}, {A}) --> !.convert_body_to_internal138,3209 -convert_body_to_internal({A}, {A}) --> !.convert_body_to_internal138,3209 -convert_body_to_internal(B, IB) -->convert_body_to_internal139,3251 -convert_body_to_internal(B, IB) -->convert_body_to_internal139,3251 -convert_body_to_internal(B, IB) -->convert_body_to_internal139,3251 -new_id(Key,P,Choice,Id) :-new_id147,3385 -new_id(Key,P,Choice,Id) :-new_id147,3385 -new_id(Key,P,Choice,Id) :-new_id147,3385 -all_tabs(M,EH,Dom,Ps) :-all_tabs157,3532 -all_tabs(M,EH,Dom,Ps) :-all_tabs157,3532 -all_tabs(M,EH,Dom,Ps) :-all_tabs157,3532 -build_dom([],_,[]).build_dom161,3611 -build_dom([],_,[]).build_dom161,3611 -build_dom([I|Dom],I,[_|Ps]) :-build_dom162,3631 -build_dom([I|Dom],I,[_|Ps]) :-build_dom162,3631 -build_dom([I|Dom],I,[_|Ps]) :-build_dom162,3631 -tail2([A,B],[A,B]) :- !.tail2166,3698 -tail2([A,B],[A,B]) :- !.tail2166,3698 -tail2([A,B],[A,B]) :- !.tail2166,3698 -tail2([_|Args],LArgs) :-tail2167,3723 -tail2([_|Args],LArgs) :-tail2167,3723 -tail2([_|Args],LArgs) :-tail2167,3723 -get_internal(S, InternalS, Arg) :-get_internal171,3770 -get_internal(S, InternalS, Arg) :-get_internal171,3770 -get_internal(S, InternalS, Arg) :-get_internal171,3770 -extract_probability(p(Id,Goals), P) :-extract_probability177,3893 -extract_probability(p(Id,Goals), P) :-extract_probability177,3893 -extract_probability(p(Id,Goals), P) :-extract_probability177,3893 -extract_logprobability(p(Id, Goals), LogP) :-extract_logprobability183,4030 -extract_logprobability(p(Id, Goals), LogP) :-extract_logprobability183,4030 -extract_logprobability(p(Id, Goals), LogP) :-extract_logprobability183,4030 -extract_logprobability([], LogP, LogP).extract_logprobability188,4157 -extract_logprobability([], LogP, LogP).extract_logprobability188,4157 -extract_logprobability([P1|Ps], LogP0, LogP) :-extract_logprobability189,4197 -extract_logprobability([P1|Ps], LogP0, LogP) :-extract_logprobability189,4197 -extract_logprobability([P1|Ps], LogP0, LogP) :-extract_logprobability189,4197 -grammar_to_atts(M:S) :- !,grammar_to_atts194,4347 -grammar_to_atts(M:S) :- !,grammar_to_atts194,4347 -grammar_to_atts(M:S) :- !,grammar_to_atts194,4347 -grammar_to_atts(S) :-grammar_to_atts196,4398 -grammar_to_atts(S) :-grammar_to_atts196,4398 -grammar_to_atts(S) :-grammar_to_atts196,4398 -grammar_to_atts(S, M) :-grammar_to_atts200,4464 -grammar_to_atts(S, M) :-grammar_to_atts200,4464 -grammar_to_atts(S, M) :-grammar_to_atts200,4464 -path_choices(InternalS, Proof) :-path_choices205,4589 -path_choices(InternalS, Proof) :-path_choices205,4589 -path_choices(InternalS, Proof) :-path_choices205,4589 -new_id(Id) :-new_id211,4738 -new_id(Id) :-new_id211,4738 -new_id(Id) :-new_id211,4738 -find_dom(K, Vs, Ps) :-find_dom220,4871 -find_dom(K, Vs, Ps) :-find_dom220,4871 -find_dom(K, Vs, Ps) :-find_dom220,4871 -gen_ps([], []).gen_ps224,4940 -gen_ps([], []).gen_ps224,4940 -gen_ps([_|Vs], [1.0|Ps]) :-gen_ps225,4956 -gen_ps([_|Vs], [1.0|Ps]) :-gen_ps225,4956 -gen_ps([_|Vs], [1.0|Ps]) :-gen_ps225,4956 -init_pcg_solver(_, _, _, _).init_pcg_solver228,5002 -init_pcg_solver(_, _, _, _).init_pcg_solver228,5002 -run_pcg_solver(LVs, LPs, _) :-run_pcg_solver230,5032 -run_pcg_solver(LVs, LPs, _) :-run_pcg_solver230,5032 -run_pcg_solver(LVs, LPs, _) :-run_pcg_solver230,5032 -add_proofs_to_array(Array, ExArray) :-add_proofs_to_array236,5210 -add_proofs_to_array(Array, ExArray) :-add_proofs_to_array236,5210 -add_proofs_to_array(Array, ExArray) :-add_proofs_to_array236,5210 -add_proofs_to_array(_,_).add_proofs_to_array245,5501 -add_proofs_to_array(_,_).add_proofs_to_array245,5501 -from(I,_,I).from247,5528 -from(I,_,I).from247,5528 -from(I0,Id,I) :-from248,5541 -from(I0,Id,I) :-from248,5541 -from(I0,Id,I) :-from248,5541 -sum_proofs(Id, ExArray) :-sum_proofs253,5598 -sum_proofs(Id, ExArray) :-sum_proofs253,5598 -sum_proofs(Id, ExArray) :-sum_proofs253,5598 -add_proof(Id, ExArray, P) :-add_proof258,5733 -add_proof(Id, ExArray, P) :-add_proof258,5733 -add_proof(Id, ExArray, P) :-add_proof258,5733 -add_to_array(p(Id, Goals), P, Array) :-add_to_array263,5851 -add_to_array(p(Id, Goals), P, Array) :-add_to_array263,5851 -add_to_array(p(Id, Goals), P, Array) :-add_to_array263,5851 -add_to_array_goals([], _, _).add_to_array_goals267,5950 -add_to_array_goals([], _, _).add_to_array_goals267,5950 -add_to_array_goals([G|Goals], P, Array) :-add_to_array_goals268,5980 -add_to_array_goals([G|Goals], P, Array) :-add_to_array_goals268,5980 -add_to_array_goals([G|Goals], P, Array) :-add_to_array_goals268,5980 -init_prob_array(Array, ExArray) :-init_prob_array272,6090 -init_prob_array(Array, ExArray) :-init_prob_array272,6090 -init_prob_array(Array, ExArray) :-init_prob_array272,6090 -add(Id, P, Array) :-add277,6255 -add(Id, P, Array) :-add277,6255 -add(Id, P, Array) :-add277,6255 -out_to_vs([], [], _).out_to_vs280,6306 -out_to_vs([], [], _).out_to_vs280,6306 -out_to_vs([[V]|LVs], [Ps|LPs], Array) :-out_to_vs281,6328 -out_to_vs([[V]|LVs], [Ps|LPs], Array) :-out_to_vs281,6328 -out_to_vs([[V]|LVs], [Ps|LPs], Array) :-out_to_vs281,6328 -count_for_key(Key,P,Array) :-count_for_key286,6474 -count_for_key(Key,P,Array) :-count_for_key286,6474 -count_for_key(Key,P,Array) :-count_for_key286,6474 -pcg_init_graph :-pcg_init_graph293,6629 -generate_atts([]).generate_atts297,6700 -generate_atts([]).generate_atts297,6700 -generate_atts([Key|KVs]) :-generate_atts298,6719 -generate_atts([Key|KVs]) :-generate_atts298,6719 -generate_atts([Key|KVs]) :-generate_atts298,6719 - -packages/CLPBN/clpbn/table.yap,14046 -:- dynamic clpbn_table/3.dynamic55,1152 -:- dynamic clpbn_table/3.dynamic55,1152 -init :-init61,1265 -clpbn_reset_tables :-clpbn_reset_tables64,1295 -clpbn_reset_tables(Sz) :-clpbn_reset_tables67,1345 -clpbn_reset_tables(Sz) :-clpbn_reset_tables67,1345 -clpbn_reset_tables(Sz) :-clpbn_reset_tables67,1345 -myf(Key, Size, Index) :-myf71,1435 -myf(Key, Size, Index) :-myf71,1435 -myf(Key, Size, Index) :-myf71,1435 -myc(A, B) :-myc74,1508 -myc(A, B) :-myc74,1508 -myc(A, B) :-myc74,1508 -myc(A, B) :-myc76,1544 -myc(A, B) :-myc76,1544 -myc(A, B) :-myc76,1544 -match_keys([],[]).match_keys82,1639 -match_keys([],[]).match_keys82,1639 -match_keys([V1|L1],[V2|L2]) :-match_keys83,1658 -match_keys([V1|L1],[V2|L2]) :-match_keys83,1658 -match_keys([V1|L1],[V2|L2]) :-match_keys83,1658 -clpbn_table(M:X) :- !,clpbn_table89,1771 -clpbn_table(M:X) :- !,clpbn_table89,1771 -clpbn_table(M:X) :- !,clpbn_table89,1771 -clpbn_table(X) :-clpbn_table91,1813 -clpbn_table(X) :-clpbn_table91,1813 -clpbn_table(X) :-clpbn_table91,1813 -clpbn_table(M:X,_) :- !,clpbn_table95,1884 -clpbn_table(M:X,_) :- !,clpbn_table95,1884 -clpbn_table(M:X,_) :- !,clpbn_table95,1884 -clpbn_table((P1,P2),M) :- !,clpbn_table97,1928 -clpbn_table((P1,P2),M) :- !,clpbn_table97,1928 -clpbn_table((P1,P2),M) :- !,clpbn_table97,1928 -clpbn_table(F/N,M) :-clpbn_table100,1997 -clpbn_table(F/N,M) :-clpbn_table100,1997 -clpbn_table(F/N,M) :-clpbn_table100,1997 -take_tail([V], V, [], V1, [V1]) :- !.take_tail133,2831 -take_tail([V], V, [], V1, [V1]) :- !.take_tail133,2831 -take_tail([V], V, [], V1, [V1]) :- !.take_tail133,2831 -take_tail([A|L0], V, [A|L1], V1, [A|L2]) :-take_tail134,2869 -take_tail([A|L0], V, [A|L1], V1, [A|L2]) :-take_tail134,2869 -take_tail([A|L0], V, [A|L1], V1, [A|L2]) :-take_tail134,2869 -clpbn_tableallargs(M:X) :- !,clpbn_tableallargs137,2945 -clpbn_tableallargs(M:X) :- !,clpbn_tableallargs137,2945 -clpbn_tableallargs(M:X) :- !,clpbn_tableallargs137,2945 -clpbn_tableallargs(X) :-clpbn_tableallargs139,3001 -clpbn_tableallargs(X) :-clpbn_tableallargs139,3001 -clpbn_tableallargs(X) :-clpbn_tableallargs139,3001 -clpbn_tableallargs(M:X,_) :- !,clpbn_tableallargs143,3086 -clpbn_tableallargs(M:X,_) :- !,clpbn_tableallargs143,3086 -clpbn_tableallargs(M:X,_) :- !,clpbn_tableallargs143,3086 -clpbn_tableallargs((P1,P2),M) :- !,clpbn_tableallargs145,3144 -clpbn_tableallargs((P1,P2),M) :- !,clpbn_tableallargs145,3144 -clpbn_tableallargs((P1,P2),M) :- !,clpbn_tableallargs145,3144 -clpbn_tableallargs(F/N,M) :-clpbn_tableallargs148,3234 -clpbn_tableallargs(F/N,M) :-clpbn_tableallargs148,3234 -clpbn_tableallargs(F/N,M) :-clpbn_tableallargs148,3234 -clpbn_table_nondet(M:X) :- !,clpbn_table_nondet166,3609 -clpbn_table_nondet(M:X) :- !,clpbn_table_nondet166,3609 -clpbn_table_nondet(M:X) :- !,clpbn_table_nondet166,3609 -clpbn_table_nondet(X) :-clpbn_table_nondet168,3665 -clpbn_table_nondet(X) :-clpbn_table_nondet168,3665 -clpbn_table_nondet(X) :-clpbn_table_nondet168,3665 -clpbn_table_nondet(M:X,_) :- !,clpbn_table_nondet172,3750 -clpbn_table_nondet(M:X,_) :- !,clpbn_table_nondet172,3750 -clpbn_table_nondet(M:X,_) :- !,clpbn_table_nondet172,3750 -clpbn_table_nondet((P1,P2),M) :- !,clpbn_table_nondet174,3808 -clpbn_table_nondet((P1,P2),M) :- !,clpbn_table_nondet174,3808 -clpbn_table_nondet((P1,P2),M) :- !,clpbn_table_nondet174,3808 -clpbn_table_nondet(F/N,M) :-clpbn_table_nondet177,3898 -clpbn_table_nondet(F/N,M) :-clpbn_table_nondet177,3898 -clpbn_table_nondet(F/N,M) :-clpbn_table_nondet177,3898 -user:term_expansion((P :- Gs), NC) :-term_expansion195,4283 -user:term_expansion((P :- Gs), NC) :-term_expansion195,4283 -in_table(K, V) :-in_table201,4421 -in_table(K, V) :-in_table201,4421 -in_table(K, V) :-in_table201,4421 -store_in_table(K, V) :-store_in_table205,4497 -store_in_table(K, V) :-store_in_table205,4497 -store_in_table(K, V) :-store_in_table205,4497 -clpbn_tabled_clause(M:Head, Body) :- !,clpbn_tabled_clause210,4650 -clpbn_tabled_clause(M:Head, Body) :- !,clpbn_tabled_clause210,4650 -clpbn_tabled_clause(M:Head, Body) :- !,clpbn_tabled_clause210,4650 -clpbn_tabled_clause(Head, Body) :-clpbn_tabled_clause212,4727 -clpbn_tabled_clause(Head, Body) :-clpbn_tabled_clause212,4727 -clpbn_tabled_clause(Head, Body) :-clpbn_tabled_clause212,4727 -clpbn_tabled_clause(M:Head, _, Body) :- !,clpbn_tabled_clause216,4833 -clpbn_tabled_clause(M:Head, _, Body) :- !,clpbn_tabled_clause216,4833 -clpbn_tabled_clause(M:Head, _, Body) :- !,clpbn_tabled_clause216,4833 -clpbn_tabled_clause(Head, M, Body) :-clpbn_tabled_clause218,4913 -clpbn_tabled_clause(Head, M, Body) :-clpbn_tabled_clause218,4913 -clpbn_tabled_clause(Head, M, Body) :-clpbn_tabled_clause218,4913 -clpbn_tabled_clause_ref(M:Head, Body, Ref) :- !,clpbn_tabled_clause_ref222,5006 -clpbn_tabled_clause_ref(M:Head, Body, Ref) :- !,clpbn_tabled_clause_ref222,5006 -clpbn_tabled_clause_ref(M:Head, Body, Ref) :- !,clpbn_tabled_clause_ref222,5006 -clpbn_tabled_clause_ref(Head, Body, Ref) :-clpbn_tabled_clause_ref224,5101 -clpbn_tabled_clause_ref(Head, Body, Ref) :-clpbn_tabled_clause_ref224,5101 -clpbn_tabled_clause_ref(Head, Body, Ref) :-clpbn_tabled_clause_ref224,5101 -clpbn_tabled_clause_ref(M:Head, _, Body, Ref) :- !,clpbn_tabled_clause_ref228,5225 -clpbn_tabled_clause_ref(M:Head, _, Body, Ref) :- !,clpbn_tabled_clause_ref228,5225 -clpbn_tabled_clause_ref(M:Head, _, Body, Ref) :- !,clpbn_tabled_clause_ref228,5225 -clpbn_tabled_clause_ref(Head, M, Body, Ref) :-clpbn_tabled_clause_ref230,5323 -clpbn_tabled_clause_ref(Head, M, Body, Ref) :-clpbn_tabled_clause_ref230,5323 -clpbn_tabled_clause_ref(Head, M, Body, Ref) :-clpbn_tabled_clause_ref230,5323 -clpbn_tabled_retract(M:Head) :- !,clpbn_tabled_retract235,5431 -clpbn_tabled_retract(M:Head) :- !,clpbn_tabled_retract235,5431 -clpbn_tabled_retract(M:Head) :- !,clpbn_tabled_retract235,5431 -clpbn_tabled_retract(Head) :-clpbn_tabled_retract237,5498 -clpbn_tabled_retract(Head) :-clpbn_tabled_retract237,5498 -clpbn_tabled_retract(Head) :-clpbn_tabled_retract237,5498 -clpbn_tabled_retract(M:Head, _) :- !,clpbn_tabled_retract241,5594 -clpbn_tabled_retract(M:Head, _) :- !,clpbn_tabled_retract241,5594 -clpbn_tabled_retract(M:Head, _) :- !,clpbn_tabled_retract241,5594 -clpbn_tabled_retract(Head, M) :-clpbn_tabled_retract243,5664 -clpbn_tabled_retract(Head, M) :-clpbn_tabled_retract243,5664 -clpbn_tabled_retract(Head, M) :-clpbn_tabled_retract243,5664 -clpbn_tabled_assertz(M:Clause) :- !,clpbn_tabled_assertz248,5748 -clpbn_tabled_assertz(M:Clause) :- !,clpbn_tabled_assertz248,5748 -clpbn_tabled_assertz(M:Clause) :- !,clpbn_tabled_assertz248,5748 -clpbn_tabled_assertz(Clause) :-clpbn_tabled_assertz250,5820 -clpbn_tabled_assertz(Clause) :-clpbn_tabled_assertz250,5820 -clpbn_tabled_assertz(Clause) :-clpbn_tabled_assertz250,5820 -clpbn_tabled_assertz2(M:Clause, _) :- !,clpbn_tabled_assertz2254,5921 -clpbn_tabled_assertz2(M:Clause, _) :- !,clpbn_tabled_assertz2254,5921 -clpbn_tabled_assertz2(M:Clause, _) :- !,clpbn_tabled_assertz2254,5921 -clpbn_tabled_assertz2((Head:-Body), M) :- !,clpbn_tabled_assertz2256,5997 -clpbn_tabled_assertz2((Head:-Body), M) :- !,clpbn_tabled_assertz2256,5997 -clpbn_tabled_assertz2((Head:-Body), M) :- !,clpbn_tabled_assertz2256,5997 -clpbn_tabled_assertz2(Head, M) :-clpbn_tabled_assertz2259,6101 -clpbn_tabled_assertz2(Head, M) :-clpbn_tabled_assertz2259,6101 -clpbn_tabled_assertz2(Head, M) :-clpbn_tabled_assertz2259,6101 -clpbn_tabled_assertz(M:Clause, Ref) :- !,clpbn_tabled_assertz263,6183 -clpbn_tabled_assertz(M:Clause, Ref) :- !,clpbn_tabled_assertz263,6183 -clpbn_tabled_assertz(M:Clause, Ref) :- !,clpbn_tabled_assertz263,6183 -clpbn_tabled_assertz(Clause, Ref) :-clpbn_tabled_assertz265,6265 -clpbn_tabled_assertz(Clause, Ref) :-clpbn_tabled_assertz265,6265 -clpbn_tabled_assertz(Clause, Ref) :-clpbn_tabled_assertz265,6265 -clpbn_tabled_assertz2(M:Clause, _, Ref) :- !,clpbn_tabled_assertz2269,6376 -clpbn_tabled_assertz2(M:Clause, _, Ref) :- !,clpbn_tabled_assertz2269,6376 -clpbn_tabled_assertz2(M:Clause, _, Ref) :- !,clpbn_tabled_assertz2269,6376 -clpbn_tabled_assertz2((Head:-Body), M, Ref) :- !,clpbn_tabled_assertz2271,6462 -clpbn_tabled_assertz2((Head:-Body), M, Ref) :- !,clpbn_tabled_assertz2271,6462 -clpbn_tabled_assertz2((Head:-Body), M, Ref) :- !,clpbn_tabled_assertz2271,6462 -clpbn_tabled_assertz2(Head, M, Ref) :-clpbn_tabled_assertz2274,6576 -clpbn_tabled_assertz2(Head, M, Ref) :-clpbn_tabled_assertz2274,6576 -clpbn_tabled_assertz2(Head, M, Ref) :-clpbn_tabled_assertz2274,6576 -clpbn_tabled_asserta(M:Clause) :- !,clpbn_tabled_asserta279,6669 -clpbn_tabled_asserta(M:Clause) :- !,clpbn_tabled_asserta279,6669 -clpbn_tabled_asserta(M:Clause) :- !,clpbn_tabled_asserta279,6669 -clpbn_tabled_asserta(Clause) :-clpbn_tabled_asserta281,6741 -clpbn_tabled_asserta(Clause) :-clpbn_tabled_asserta281,6741 -clpbn_tabled_asserta(Clause) :-clpbn_tabled_asserta281,6741 -clpbn_tabled_asserta2(M:Clause, _) :- !,clpbn_tabled_asserta2285,6842 -clpbn_tabled_asserta2(M:Clause, _) :- !,clpbn_tabled_asserta2285,6842 -clpbn_tabled_asserta2(M:Clause, _) :- !,clpbn_tabled_asserta2285,6842 -clpbn_tabled_asserta2((Head:-Body), M) :- !,clpbn_tabled_asserta2287,6918 -clpbn_tabled_asserta2((Head:-Body), M) :- !,clpbn_tabled_asserta2287,6918 -clpbn_tabled_asserta2((Head:-Body), M) :- !,clpbn_tabled_asserta2287,6918 -clpbn_tabled_asserta2(Head, M) :-clpbn_tabled_asserta2290,7022 -clpbn_tabled_asserta2(Head, M) :-clpbn_tabled_asserta2290,7022 -clpbn_tabled_asserta2(Head, M) :-clpbn_tabled_asserta2290,7022 -clpbn_tabled_asserta(M:Clause, Ref) :- !,clpbn_tabled_asserta294,7104 -clpbn_tabled_asserta(M:Clause, Ref) :- !,clpbn_tabled_asserta294,7104 -clpbn_tabled_asserta(M:Clause, Ref) :- !,clpbn_tabled_asserta294,7104 -clpbn_tabled_asserta(Clause, Ref) :-clpbn_tabled_asserta296,7186 -clpbn_tabled_asserta(Clause, Ref) :-clpbn_tabled_asserta296,7186 -clpbn_tabled_asserta(Clause, Ref) :-clpbn_tabled_asserta296,7186 -clpbn_tabled_asserta2(M:Clause, _, Ref) :- !,clpbn_tabled_asserta2300,7297 -clpbn_tabled_asserta2(M:Clause, _, Ref) :- !,clpbn_tabled_asserta2300,7297 -clpbn_tabled_asserta2(M:Clause, _, Ref) :- !,clpbn_tabled_asserta2300,7297 -clpbn_tabled_asserta2((Head:-Body), M, Ref) :- !,clpbn_tabled_asserta2302,7383 -clpbn_tabled_asserta2((Head:-Body), M, Ref) :- !,clpbn_tabled_asserta2302,7383 -clpbn_tabled_asserta2((Head:-Body), M, Ref) :- !,clpbn_tabled_asserta2302,7383 -clpbn_tabled_asserta2(Head, M, Ref) :-clpbn_tabled_asserta2305,7497 -clpbn_tabled_asserta2(Head, M, Ref) :-clpbn_tabled_asserta2305,7497 -clpbn_tabled_asserta2(Head, M, Ref) :-clpbn_tabled_asserta2305,7497 -clpbn_tabled_abolish(M:Clause) :- !,clpbn_tabled_abolish310,7590 -clpbn_tabled_abolish(M:Clause) :- !,clpbn_tabled_abolish310,7590 -clpbn_tabled_abolish(M:Clause) :- !,clpbn_tabled_abolish310,7590 -clpbn_tabled_abolish(Clause) :-clpbn_tabled_abolish312,7661 -clpbn_tabled_abolish(Clause) :-clpbn_tabled_abolish312,7661 -clpbn_tabled_abolish(Clause) :-clpbn_tabled_abolish312,7661 -clpbn_tabled_abolish(M:Clause, _) :- !,clpbn_tabled_abolish316,7761 -clpbn_tabled_abolish(M:Clause, _) :- !,clpbn_tabled_abolish316,7761 -clpbn_tabled_abolish(M:Clause, _) :- !,clpbn_tabled_abolish316,7761 -clpbn_tabled_abolish(N/A, M) :-clpbn_tabled_abolish318,7835 -clpbn_tabled_abolish(N/A, M) :-clpbn_tabled_abolish318,7835 -clpbn_tabled_abolish(N/A, M) :-clpbn_tabled_abolish318,7835 -clpbn_tabled_dynamic(M:Clause) :- !,clpbn_tabled_dynamic324,7962 -clpbn_tabled_dynamic(M:Clause) :- !,clpbn_tabled_dynamic324,7962 -clpbn_tabled_dynamic(M:Clause) :- !,clpbn_tabled_dynamic324,7962 -clpbn_tabled_dynamic(Clause) :-clpbn_tabled_dynamic326,8033 -clpbn_tabled_dynamic(Clause) :-clpbn_tabled_dynamic326,8033 -clpbn_tabled_dynamic(Clause) :-clpbn_tabled_dynamic326,8033 -clpbn_tabled_dynamic(M:Clause, _) :- !,clpbn_tabled_dynamic330,8133 -clpbn_tabled_dynamic(M:Clause, _) :- !,clpbn_tabled_dynamic330,8133 -clpbn_tabled_dynamic(M:Clause, _) :- !,clpbn_tabled_dynamic330,8133 -clpbn_tabled_dynamic(N/A, M) :-clpbn_tabled_dynamic332,8207 -clpbn_tabled_dynamic(N/A, M) :-clpbn_tabled_dynamic332,8207 -clpbn_tabled_dynamic(N/A, M) :-clpbn_tabled_dynamic332,8207 -clpbn_tabled_number_of_clauses(M:Clause, N) :- !,clpbn_tabled_number_of_clauses338,8334 -clpbn_tabled_number_of_clauses(M:Clause, N) :- !,clpbn_tabled_number_of_clauses338,8334 -clpbn_tabled_number_of_clauses(M:Clause, N) :- !,clpbn_tabled_number_of_clauses338,8334 -clpbn_tabled_number_of_clauses(Clause, N) :-clpbn_tabled_number_of_clauses340,8431 -clpbn_tabled_number_of_clauses(Clause, N) :-clpbn_tabled_number_of_clauses340,8431 -clpbn_tabled_number_of_clauses(Clause, N) :-clpbn_tabled_number_of_clauses340,8431 -clpbn_tabled_number_of_clauses(M:Clause, _, N) :- !,clpbn_tabled_number_of_clauses344,8557 -clpbn_tabled_number_of_clauses(M:Clause, _, N) :- !,clpbn_tabled_number_of_clauses344,8557 -clpbn_tabled_number_of_clauses(M:Clause, _, N) :- !,clpbn_tabled_number_of_clauses344,8557 -clpbn_tabled_number_of_clauses(Head, M, N) :-clpbn_tabled_number_of_clauses346,8657 -clpbn_tabled_number_of_clauses(Head, M, N) :-clpbn_tabled_number_of_clauses346,8657 -clpbn_tabled_number_of_clauses(Head, M, N) :-clpbn_tabled_number_of_clauses346,8657 -clpbn_is_tabled(M:Clause) :- !,clpbn_is_tabled351,8786 -clpbn_is_tabled(M:Clause) :- !,clpbn_is_tabled351,8786 -clpbn_is_tabled(M:Clause) :- !,clpbn_is_tabled351,8786 -clpbn_is_tabled(Clause) :-clpbn_is_tabled353,8847 -clpbn_is_tabled(Clause) :-clpbn_is_tabled353,8847 -clpbn_is_tabled(Clause) :-clpbn_is_tabled353,8847 -clpbn_is_tabled(M:Clause, _) :- !,clpbn_is_tabled357,8937 -clpbn_is_tabled(M:Clause, _) :- !,clpbn_is_tabled357,8937 -clpbn_is_tabled(M:Clause, _) :- !,clpbn_is_tabled357,8937 -clpbn_is_tabled(Head, M) :-clpbn_is_tabled359,9001 -clpbn_is_tabled(Head, M) :-clpbn_is_tabled359,9001 -clpbn_is_tabled(Head, M) :-clpbn_is_tabled359,9001 - -packages/CLPBN/clpbn/topsort.yap,1038 -topsort(Graph0, Sorted) :-topsort15,260 -topsort(Graph0, Sorted) :-topsort15,260 -topsort(Graph0, Sorted) :-topsort15,260 -mkvertices_list([]) --> [].mkvertices_list23,513 -mkvertices_list([]) --> [].mkvertices_list23,513 -mkvertices_list([]) --> [].mkvertices_list23,513 -mkvertices_list([V-_|More]) --> [V],mkvertices_list24,541 -mkvertices_list([V-_|More]) --> [V],mkvertices_list24,541 -mkvertices_list([V-_|More]) --> [V],mkvertices_list24,541 -mkedge_list([]) --> [].mkedge_list27,603 -mkedge_list([]) --> [].mkedge_list27,603 -mkedge_list([]) --> [].mkedge_list27,603 -mkedge_list([V-Parents|More]) -->mkedge_list28,627 -mkedge_list([V-Parents|More]) -->mkedge_list28,627 -mkedge_list([V-Parents|More]) -->mkedge_list28,627 -add_edges([], _V) --> [].add_edges32,706 -add_edges([], _V) --> [].add_edges32,706 -add_edges([], _V) --> [].add_edges32,706 -add_edges([P|Parents], V) --> [P-V],add_edges33,732 -add_edges([P|Parents], V) --> [P-V],add_edges33,732 -add_edges([P|Parents], V) --> [P-V],add_edges33,732 - -packages/CLPBN/clpbn/utils.yap,6605 -check_for_hidden_vars([], _, []).check_for_hidden_vars15,332 -check_for_hidden_vars([], _, []).check_for_hidden_vars15,332 -check_for_hidden_vars([V|Vs], AllVs0, [V|NVs]) :-check_for_hidden_vars16,366 -check_for_hidden_vars([V|Vs], AllVs0, [V|NVs]) :-check_for_hidden_vars16,366 -check_for_hidden_vars([V|Vs], AllVs0, [V|NVs]) :-check_for_hidden_vars16,366 -check_for_extra_variables(V,AllVs0, AllVs, Vs, IVs) :-check_for_extra_variables20,512 -check_for_extra_variables(V,AllVs0, AllVs, Vs, IVs) :-check_for_extra_variables20,512 -check_for_extra_variables(V,AllVs0, AllVs, Vs, IVs) :-check_for_extra_variables20,512 -check_for_extra_variables(_,AllVs, AllVs, Vs, Vs).check_for_extra_variables24,671 -check_for_extra_variables(_,AllVs, AllVs, Vs, Vs).check_for_extra_variables24,671 -add_old_variables([], AllVs, AllVs, Vs, Vs).add_old_variables26,723 -add_old_variables([], AllVs, AllVs, Vs, Vs).add_old_variables26,723 -add_old_variables([V1|LV], AllVs0, AllVs, Vs, IVs) :-add_old_variables27,768 -add_old_variables([V1|LV], AllVs0, AllVs, Vs, IVs) :-add_old_variables27,768 -add_old_variables([V1|LV], AllVs0, AllVs, Vs, IVs) :-add_old_variables27,768 -add_old_variables([_|LV], AllVs0, AllVs, Vs, IVs) :-add_old_variables30,918 -add_old_variables([_|LV], AllVs0, AllVs, Vs, IVs) :-add_old_variables30,918 -add_old_variables([_|LV], AllVs0, AllVs, Vs, IVs) :-add_old_variables30,918 -clpbn_var_member([V1|_], V) :- V1 == V, !.clpbn_var_member33,1020 -clpbn_var_member([V1|_], V) :- V1 == V, !.clpbn_var_member33,1020 -clpbn_var_member([V1|_], V) :- V1 == V, !.clpbn_var_member33,1020 -clpbn_var_member([_|Vs], V) :-clpbn_var_member34,1063 -clpbn_var_member([_|Vs], V) :-clpbn_var_member34,1063 -clpbn_var_member([_|Vs], V) :-clpbn_var_member34,1063 -clpbn_not_var_member([], _).clpbn_not_var_member37,1121 -clpbn_not_var_member([], _).clpbn_not_var_member37,1121 -clpbn_not_var_member([V1|Vs], V) :- V1 \== V,clpbn_not_var_member38,1150 -clpbn_not_var_member([V1|Vs], V) :- V1 \== V,clpbn_not_var_member38,1150 -clpbn_not_var_member([V1|Vs], V) :- V1 \== V,clpbn_not_var_member38,1150 -sort_vars_by_key(AVars, SortedAVars, UnifiableVars) :-sort_vars_by_key42,1228 -sort_vars_by_key(AVars, SortedAVars, UnifiableVars) :-sort_vars_by_key42,1228 -sort_vars_by_key(AVars, SortedAVars, UnifiableVars) :-sort_vars_by_key42,1228 -get_keys([], []).get_keys47,1393 -get_keys([], []).get_keys47,1393 -get_keys([V|AVars], [K-V|KeysVars]) :-get_keys48,1411 -get_keys([V|AVars], [K-V|KeysVars]) :-get_keys48,1411 -get_keys([V|AVars], [K-V|KeysVars]) :-get_keys48,1411 -get_keys([_|AVars], KeysVars) :- % may be non-CLPBN vars.get_keys51,1511 -get_keys([_|AVars], KeysVars) :- % may be non-CLPBN vars.get_keys51,1511 -get_keys([_|AVars], KeysVars) :- % may be non-CLPBN vars.get_keys51,1511 -merge_same_key([], [], _, []).merge_same_key54,1599 -merge_same_key([], [], _, []).merge_same_key54,1599 -merge_same_key([K1-V1,K2-V2|Vs], SortedAVars, Ks, UnifiableVars) :-merge_same_key55,1630 -merge_same_key([K1-V1,K2-V2|Vs], SortedAVars, Ks, UnifiableVars) :-merge_same_key55,1630 -merge_same_key([K1-V1,K2-V2|Vs], SortedAVars, Ks, UnifiableVars) :-merge_same_key55,1630 -merge_same_key([K1-V1,K2-V2|Vs], [V1|SortedAVars], Ks, [K1|UnifiableVars]) :-merge_same_key68,2003 -merge_same_key([K1-V1,K2-V2|Vs], [V1|SortedAVars], Ks, [K1|UnifiableVars]) :-merge_same_key68,2003 -merge_same_key([K1-V1,K2-V2|Vs], [V1|SortedAVars], Ks, [K1|UnifiableVars]) :-merge_same_key68,2003 -merge_same_key([K-V|Vs], [V|SortedAVars], Ks, UnifiableVars) :-merge_same_key72,2210 -merge_same_key([K-V|Vs], [V|SortedAVars], Ks, UnifiableVars) :-merge_same_key72,2210 -merge_same_key([K-V|Vs], [V|SortedAVars], Ks, UnifiableVars) :-merge_same_key72,2210 -in_keys(K1,[K|_]) :- \+ \+ K1 = K, !.in_keys76,2355 -in_keys(K1,[K|_]) :- \+ \+ K1 = K, !.in_keys76,2355 -in_keys(K1,[K|_]) :- \+ \+ K1 = K, !.in_keys76,2355 -in_keys(K1,[_|Ks]) :-in_keys77,2393 -in_keys(K1,[_|Ks]) :-in_keys77,2393 -in_keys(K1,[_|Ks]) :-in_keys77,2393 -add_to_keys(K1, Ks, Ks) :- ground(K1), !.add_to_keys80,2433 -add_to_keys(K1, Ks, Ks) :- ground(K1), !.add_to_keys80,2433 -add_to_keys(K1, Ks, Ks) :- ground(K1), !.add_to_keys80,2433 -add_to_keys(K1, Ks, [K1|Ks]).add_to_keys81,2475 -add_to_keys(K1, Ks, [K1|Ks]).add_to_keys81,2475 -sort_vars_by_key_and_parents(AVars, SortedAVars, UnifiableVars) :-sort_vars_by_key_and_parents83,2506 -sort_vars_by_key_and_parents(AVars, SortedAVars, UnifiableVars) :-sort_vars_by_key_and_parents83,2506 -sort_vars_by_key_and_parents(AVars, SortedAVars, UnifiableVars) :-sort_vars_by_key_and_parents83,2506 -get_keys_and_parents([], []).get_keys_and_parents88,2697 -get_keys_and_parents([], []).get_keys_and_parents88,2697 -get_keys_and_parents([V|AVars], [K-V|KeysVarsF]) :-get_keys_and_parents89,2727 -get_keys_and_parents([V|AVars], [K-V|KeysVarsF]) :-get_keys_and_parents89,2727 -get_keys_and_parents([V|AVars], [K-V|KeysVarsF]) :-get_keys_and_parents89,2727 -get_keys_and_parents([_|AVars], KeysVars) :- % may be non-CLPBN vars.get_keys_and_parents93,2918 -get_keys_and_parents([_|AVars], KeysVars) :- % may be non-CLPBN vars.get_keys_and_parents93,2918 -get_keys_and_parents([_|AVars], KeysVars) :- % may be non-CLPBN vars.get_keys_and_parents93,2918 -add_parents(Parents,_,_,KeyVars,KeyVars) :-add_parents96,3030 -add_parents(Parents,_,_,KeyVars,KeyVars) :-add_parents96,3030 -add_parents(Parents,_,_,KeyVars,KeyVars) :-add_parents96,3030 -add_parents(Parents,V,Id,KeyVarsF,KeyVars0) :-add_parents98,3097 -add_parents(Parents,V,Id,KeyVarsF,KeyVars0) :-add_parents98,3097 -add_parents(Parents,V,Id,KeyVarsF,KeyVars0) :-add_parents98,3097 -all_vars([]).all_vars103,3243 -all_vars([]).all_vars103,3243 -all_vars([P|Parents]) :-all_vars104,3257 -all_vars([P|Parents]) :-all_vars104,3257 -all_vars([P|Parents]) :-all_vars104,3257 -transform_parents([],[],KeyVars,KeyVars).transform_parents109,3313 -transform_parents([],[],KeyVars,KeyVars).transform_parents109,3313 -transform_parents([P|Parents0],[P|NParents],KeyVarsF,KeyVars0) :-transform_parents110,3355 -transform_parents([P|Parents0],[P|NParents],KeyVarsF,KeyVars0) :-transform_parents110,3355 -transform_parents([P|Parents0],[P|NParents],KeyVarsF,KeyVars0) :-transform_parents110,3355 -transform_parents([P|Parents0],[V|NParents],[P-V|KeyVarsF],KeyVars0) :-transform_parents113,3490 -transform_parents([P|Parents0],[V|NParents],[P-V|KeyVarsF],KeyVars0) :-transform_parents113,3490 -transform_parents([P|Parents0],[V|NParents],[P-V|KeyVarsF],KeyVars0) :-transform_parents113,3490 - -packages/CLPBN/clpbn/ve.yap,13486 -check_if_ve_done(Var) :-check_if_ve_done89,1624 -check_if_ve_done(Var) :-check_if_ve_done89,1624 -check_if_ve_done(Var) :-check_if_ve_done89,1624 -call_ve_ground_solver(QueryVars, QueryKeys, AllKeys, Factors, Evidence, Output) :-call_ve_ground_solver96,1713 -call_ve_ground_solver(QueryVars, QueryKeys, AllKeys, Factors, Evidence, Output) :-call_ve_ground_solver96,1713 -call_ve_ground_solver(QueryVars, QueryKeys, AllKeys, Factors, Evidence, Output) :-call_ve_ground_solver96,1713 -call_ve_ground_solver_for_probabilities(QueryKeys, AllKeys, Factors, Evidence, Solutions) :-call_ve_ground_solver_for_probabilities100,1941 -call_ve_ground_solver_for_probabilities(QueryKeys, AllKeys, Factors, Evidence, Solutions) :-call_ve_ground_solver_for_probabilities100,1941 -call_ve_ground_solver_for_probabilities(QueryKeys, AllKeys, Factors, Evidence, Solutions) :-call_ve_ground_solver_for_probabilities100,1941 -simulate_ve_ground_solver(_QueryVars, QueryKeys, AllKeys, Factors, Evidence, Output) :-simulate_ve_ground_solver104,2151 -simulate_ve_ground_solver(_QueryVars, QueryKeys, AllKeys, Factors, Evidence, Output) :-simulate_ve_ground_solver104,2151 -simulate_ve_ground_solver(_QueryVars, QueryKeys, AllKeys, Factors, Evidence, Output) :-simulate_ve_ground_solver104,2151 -simulate_ve_ground_solver_for_probabilities(QueryKeys, AllKeys, Factors, Evidence, Solutions) :-simulate_ve_ground_solver_for_probabilities107,2335 -simulate_ve_ground_solver_for_probabilities(QueryKeys, AllKeys, Factors, Evidence, Solutions) :-simulate_ve_ground_solver_for_probabilities107,2335 -simulate_ve_ground_solver_for_probabilities(QueryKeys, AllKeys, Factors, Evidence, Solutions) :-simulate_ve_ground_solver_for_probabilities107,2335 -init_ve_ground_solver(_QueryKeys, AllKeys, Factors, Evidence, VE) :-init_ve_ground_solver111,2544 -init_ve_ground_solver(_QueryKeys, AllKeys, Factors, Evidence, VE) :-init_ve_ground_solver111,2544 -init_ve_ground_solver(_QueryKeys, AllKeys, Factors, Evidence, VE) :-init_ve_ground_solver111,2544 -ve([[]],_,_) :- !.ve119,2817 -ve([[]],_,_) :- !.ve119,2817 -ve([[]],_,_) :- !.ve119,2817 -ve(LLVs,Vs0,AllDiffs) :-ve120,2836 -ve(LLVs,Vs0,AllDiffs) :-ve120,2836 -ve(LLVs,Vs0,AllDiffs) :-ve120,2836 -init_ve(FactorIds, EvidenceIds, Hash, Id, ve(FactorIds, Hash, Id, Ev)) :-init_ve128,3072 -init_ve(FactorIds, EvidenceIds, Hash, Id, ve(FactorIds, Hash, Id, Ev)) :-init_ve128,3072 -init_ve(FactorIds, EvidenceIds, Hash, Id, ve(FactorIds, Hash, Id, Ev)) :-init_ve128,3072 -evtotree(K=V,Ev0,Ev) :-evtotree132,3198 -evtotree(K=V,Ev0,Ev) :-evtotree132,3198 -evtotree(K=V,Ev0,Ev) :-evtotree132,3198 -factor_to_graph( fn(Nodes, Sizes, _Pars0, Id, Keys), Factors0, Factors, Edges0, Edges, I0, I) :-factor_to_graph135,3250 -factor_to_graph( fn(Nodes, Sizes, _Pars0, Id, Keys), Factors0, Factors, Edges0, Edges, I0, I) :-factor_to_graph135,3250 -factor_to_graph( fn(Nodes, Sizes, _Pars0, Id, Keys), Factors0, Factors, Edges0, Edges, I0, I) :-factor_to_graph135,3250 -add_f_to_nodes(I0, Node, Edges, [Node-I0|Edges]).add_f_to_nodes144,3585 -add_f_to_nodes(I0, Node, Edges, [Node-I0|Edges]).add_f_to_nodes144,3585 -init_ve_solver(Qs, Vs0, _, state(IQs, LVIs, VMap, Bigraph, Ev)) :-init_ve_solver154,3880 -init_ve_solver(Qs, Vs0, _, state(IQs, LVIs, VMap, Bigraph, Ev)) :-init_ve_solver154,3880 -init_ve_solver(Qs, Vs0, _, state(IQs, LVIs, VMap, Bigraph, Ev)) :-init_ve_solver154,3880 -init_ve_solver_for_question(G, RG, Vs, NVs) :-init_ve_solver_for_question163,4234 -init_ve_solver_for_question(G, RG, Vs, NVs) :-init_ve_solver_for_question163,4234 -init_ve_solver_for_question(G, RG, Vs, NVs) :-init_ve_solver_for_question163,4234 -vars_to_bigraph(VMap, bigraph(VInfo, IF, Fs), Evs) :-vars_to_bigraph173,4557 -vars_to_bigraph(VMap, bigraph(VInfo, IF, Fs), Evs) :-vars_to_bigraph173,4557 -vars_to_bigraph(VMap, bigraph(VInfo, IF, Fs), Evs) :-vars_to_bigraph173,4557 -id_to_factor(VMap, V-I, IF0, IF, Fs0, Fs, Evs0, Evs) :-id_to_factor179,4740 -id_to_factor(VMap, V-I, IF0, IF, Fs0, Fs, Evs0, Evs) :-id_to_factor179,4740 -id_to_factor(VMap, V-I, IF0, IF, Fs0, Fs, Evs0, Evs) :-id_to_factor179,4740 -id_to_factor(VMap, V-I, IF0, IF, Fs0, Fs, Evs0, Evs) :-id_to_factor187,5001 -id_to_factor(VMap, V-I, IF0, IF, Fs0, Fs, Evs0, Evs) :-id_to_factor187,5001 -id_to_factor(VMap, V-I, IF0, IF, Fs0, Fs, Evs0, Evs) :-id_to_factor187,5001 -noparent_of_interest(VMap, P) :-noparent_of_interest205,5452 -noparent_of_interest(VMap, P) :-noparent_of_interest205,5452 -noparent_of_interest(VMap, P) :-noparent_of_interest205,5452 -parent_to_id(VMap, V, DS, I) :-parent_to_id208,5517 -parent_to_id(VMap, V, DS, I) :-parent_to_id208,5517 -parent_to_id(VMap, V, DS, I) :-parent_to_id208,5517 -factors_to_vs(Fs, VInfo) :-factors_to_vs213,5644 -factors_to_vs(Fs, VInfo) :-factors_to_vs213,5644 -factors_to_vs(Fs, VInfo) :-factors_to_vs213,5644 -fsvs(F-f(_, IVs, _)) -->fsvs220,5779 -fsvs(F-f(_, IVs, _)) -->fsvs220,5779 -fsvs(F-f(_, IVs, _)) -->fsvs220,5779 -fvs([], _F) --> [].fvs223,5819 -fvs([], _F) --> [].fvs223,5819 -fvs([], _F) --> [].fvs223,5819 -fvs([I|IVs], F) -->fvs224,5839 -fvs([I|IVs], F) -->fvs224,5839 -fvs([I|IVs], F) -->fvs224,5839 -add_vs([], _, VInfo, VInfo).add_vs231,5913 -add_vs([], _, VInfo, VInfo).add_vs231,5913 -add_vs([V-F|SFVs], Fs, VInfo0, VInfo) :-add_vs232,5942 -add_vs([V-F|SFVs], Fs, VInfo0, VInfo) :-add_vs232,5942 -add_vs([V-F|SFVs], Fs, VInfo0, VInfo) :-add_vs232,5942 -collect_factors([], _Fs, _V, [], []) :- !.collect_factors238,6124 -collect_factors([], _Fs, _V, [], []) :- !.collect_factors238,6124 -collect_factors([], _Fs, _V, [], []) :- !.collect_factors238,6124 -collect_factors([V-F|SFVs], Fs, V, [FInfo|FInfos], R):-collect_factors239,6167 -collect_factors([V-F|SFVs], Fs, V, [FInfo|FInfos], R):-collect_factors239,6167 -collect_factors([V-F|SFVs], Fs, V, [FInfo|FInfos], R):-collect_factors239,6167 -collect_factors(SFVs, _Fs, _V, [], SFVs).collect_factors243,6295 -collect_factors(SFVs, _Fs, _V, [], SFVs).collect_factors243,6295 -run_ve_ground_solver(LQVs, LLPs, ve(FactorIds, Hash, Id, Ev)) :-run_ve_ground_solver247,6427 -run_ve_ground_solver(LQVs, LLPs, ve(FactorIds, Hash, Id, Ev)) :-run_ve_ground_solver247,6427 -run_ve_ground_solver(LQVs, LLPs, ve(FactorIds, Hash, Id, Ev)) :-run_ve_ground_solver247,6427 -solve([QVs|_], FIds, Bigraph, Evs, LPs) :-solve257,6779 -solve([QVs|_], FIds, Bigraph, Evs, LPs) :-solve257,6779 -solve([QVs|_], FIds, Bigraph, Evs, LPs) :-solve257,6779 -solve([_|LQVs], FIds, Bigraph, Ev, LPs) :-solve260,6903 -solve([_|LQVs], FIds, Bigraph, Ev, LPs) :-solve260,6903 -solve([_|LQVs], FIds, Bigraph, Ev, LPs) :-solve260,6903 -do_solve(IQVs, IVs, bigraph(OldVs, IF, _Fs), Ev, Ps) :-do_solve263,6985 -do_solve(IQVs, IVs, bigraph(OldVs, IF, _Fs), Ev, Ps) :-do_solve263,6985 -do_solve(IQVs, IVs, bigraph(OldVs, IF, _Fs), Ev, Ps) :-do_solve263,6985 -simulate_solver(LQVs, Choices, ve(FIds, Hash, Id, BG, Evs)) :-simulate_solver277,7476 -simulate_solver(LQVs, Choices, ve(FIds, Hash, Id, BG, Evs)) :-simulate_solver277,7476 -simulate_solver(LQVs, Choices, ve(FIds, Hash, Id, BG, Evs)) :-simulate_solver277,7476 -do_simulate(IQVs, IVs, bigraph(OldVs, IF, _Fs), Ev, Choices) :-do_simulate282,7675 -do_simulate(IQVs, IVs, bigraph(OldVs, IF, _Fs), Ev, Choices) :-do_simulate282,7675 -do_simulate(IQVs, IVs, bigraph(OldVs, IF, _Fs), Ev, Choices) :-do_simulate282,7675 -run_ve_solver(_, LLPs, state(LQVs, LVs, _VMap, Bigraph, Ev)) :-run_ve_solver293,8087 -run_ve_solver(_, LLPs, state(LQVs, LVs, _VMap, Bigraph, Ev)) :-run_ve_solver293,8087 -run_ve_solver(_, LLPs, state(LQVs, LVs, _VMap, Bigraph, Ev)) :-run_ve_solver293,8087 -solve_ve([IQVs|_], [IVs|_], bigraph(OldVs, IF, _Fs), Ev, Ps) :-solve_ve302,8337 -solve_ve([IQVs|_], [IVs|_], bigraph(OldVs, IF, _Fs), Ev, Ps) :-solve_ve302,8337 -solve_ve([IQVs|_], [IVs|_], bigraph(OldVs, IF, _Fs), Ev, Ps) :-solve_ve302,8337 -solve_ve([_|MoreLVs], [_|MoreLVis], Digraph, Ev, Ps) :-solve_ve314,8814 -solve_ve([_|MoreLVs], [_|MoreLVis], Digraph, Ev, Ps) :-solve_ve314,8814 -solve_ve([_|MoreLVs], [_|MoreLVis], Digraph, Ev, Ps) :-solve_ve314,8814 -project_to_query_related(IVs0, OldVs, NVs, NFs) :-project_to_query_related320,9002 -project_to_query_related(IVs0, OldVs, NVs, NFs) :-project_to_query_related320,9002 -project_to_query_related(IVs0, OldVs, NVs, NFs) :-project_to_query_related320,9002 -cp_to_vs(V, Vs0, Vs) :-cp_to_vs331,9273 -cp_to_vs(V, Vs0, Vs) :-cp_to_vs331,9273 -cp_to_vs(V, Vs0, Vs) :-cp_to_vs331,9273 -simplify_graph_node(OldVs, NVs, V, V-RemFs, NFs0, NFs) :-simplify_graph_node337,9378 -simplify_graph_node(OldVs, NVs, V, V-RemFs, NFs0, NFs) :-simplify_graph_node337,9378 -simplify_graph_node(OldVs, NVs, V, V-RemFs, NFs0, NFs) :-simplify_graph_node337,9378 -check_factor(V, NVs, F, NFs0, NFs, RemFs, NewRemFs) :-check_factor352,9854 -check_factor(V, NVs, F, NFs0, NFs, RemFs, NewRemFs) :-check_factor352,9854 -check_factor(V, NVs, F, NFs0, NFs, RemFs, NewRemFs) :-check_factor352,9854 -check_factor(_V, _NVs, F, NFs, NFs, RemFs, NewRemFs) :-check_factor363,10075 -check_factor(_V, _NVs, F, NFs, NFs, RemFs, NewRemFs) :-check_factor363,10075 -check_factor(_V, _NVs, F, NFs, NFs, RemFs, NewRemFs) :-check_factor363,10075 -check_v(NVs, V) :-check_v373,10233 -check_v(NVs, V) :-check_v373,10233 -check_v(NVs, V) :-check_v373,10233 -clean_v_ev(V=E, FVs0, FVs, Vs0, Vs) :-clean_v_ev379,10316 -clean_v_ev(V=E, FVs0, FVs, Vs0, Vs) :-clean_v_ev379,10316 -clean_v_ev(V=E, FVs0, FVs, Vs0, Vs) :-clean_v_ev379,10316 -clean_v_ev(V-E, FVs0, FVs, Vs0, Vs) :-clean_v_ev382,10441 -clean_v_ev(V-E, FVs0, FVs, Vs0, Vs) :-clean_v_ev382,10441 -clean_v_ev(V-E, FVs0, FVs, Vs0, Vs) :-clean_v_ev382,10441 -clean_v_ev(_, FVs, FVs, Vs, Vs).clean_v_ev386,10594 -clean_v_ev(_, FVs, FVs, Vs, Vs).clean_v_ev386,10594 -simplify_f_ev(V, E, F, Fs0, Fs, Vs0, Vs) :-simplify_f_ev392,10700 -simplify_f_ev(V, E, F, Fs0, Fs, Vs0, Vs) :-simplify_f_ev392,10700 -simplify_f_ev(V, E, F, Fs0, Fs, Vs0, Vs) :-simplify_f_ev392,10700 -update_factors(F, NF, V, Vs0, Vs) :-update_factors401,10974 -update_factors(F, NF, V, Vs0, Vs) :-update_factors401,10974 -update_factors(F, NF, V, Vs0, Vs) :-update_factors401,10974 -replace_factor(F, NF, F, NF) :- !.replace_factor405,11086 -replace_factor(F, NF, F, NF) :- !.replace_factor405,11086 -replace_factor(F, NF, F, NF) :- !.replace_factor405,11086 -replace_factor(_F,_NF,OF, OF).replace_factor406,11121 -replace_factor(_F,_NF,OF, OF).replace_factor406,11121 -eliminate(QVs, digraph(Vs0, I, Fs0), Dist) :-eliminate408,11153 -eliminate(QVs, digraph(Vs0, I, Fs0), Dist) :-eliminate408,11153 -eliminate(QVs, digraph(Vs0, I, Fs0), Dist) :-eliminate408,11153 -eliminate(_QVs, digraph(_, _, Fs), Dist) :-eliminate421,11619 -eliminate(_QVs, digraph(_, _, Fs), Dist) :-eliminate421,11619 -eliminate(_QVs, digraph(_, _, Fs), Dist) :-eliminate421,11619 -find_best(Vs, QVs, BestV, VFs) :-find_best424,11692 -find_best(Vs, QVs, BestV, VFs) :-find_best424,11692 -find_best(Vs, QVs, BestV, VFs) :-find_best424,11692 -best_var(QVs, I, _Node, Info, Info) :-best_var429,11854 -best_var(QVs, I, _Node, Info, Info) :-best_var429,11854 -best_var(QVs, I, _Node, Info, Info) :-best_var429,11854 -best_var(_Qs, I, Node, i(ValSoFar,_,_), i(NewVal,I,Node)) :-best_var433,11952 -best_var(_Qs, I, Node, i(ValSoFar,_,_), i(NewVal,I,Node)) :-best_var433,11952 -best_var(_Qs, I, Node, i(ValSoFar,_,_), i(NewVal,I,Node)) :-best_var433,11952 -best_var(_, _I, _Node, Info, Info).best_var438,12090 -best_var(_, _I, _Node, Info, Info).best_var438,12090 -szfac(f(_,Vs,_), I0, I) :-szfac440,12127 -szfac(f(_,Vs,_), I0, I) :-szfac440,12127 -szfac(f(_,Vs,_), I0, I) :-szfac440,12127 -del_fac(f(I,FVs,_), Fs0, Fs, Vs0, Vs) :-del_fac445,12236 -del_fac(f(I,FVs,_), Fs0, Fs, Vs0, Vs) :-del_fac445,12236 -del_fac(f(I,FVs,_), Fs0, Fs, Vs0, Vs) :-del_fac445,12236 -delete_fac_from_v(I, FV, Vs0, Vs) :-delete_fac_from_v449,12346 -delete_fac_from_v(I, FV, Vs0, Vs) :-delete_fac_from_v449,12346 -delete_fac_from_v(I, FV, Vs0, Vs) :-delete_fac_from_v449,12346 -factor_name(I, f(I,_,_)).factor_name453,12453 -factor_name(I, f(I,_,_)).factor_name453,12453 -insert_fac(I, FVs, CPT, Fs0, Fs, Vs0, Vs) :-insert_fac456,12543 -insert_fac(I, FVs, CPT, Fs0, Fs, Vs0, Vs) :-insert_fac456,12543 -insert_fac(I, FVs, CPT, Fs0, Fs, Vs0, Vs) :-insert_fac456,12543 -insert_fac_in_v(F, FV, Vs0, Vs) :-insert_fac_in_v461,12679 -insert_fac_in_v(F, FV, Vs0, Vs) :-insert_fac_in_v461,12679 -insert_fac_in_v(F, FV, Vs0, Vs) :-insert_fac_in_v461,12679 -combine_factors(Fs, Dist) :-combine_factors464,12752 -combine_factors(Fs, Dist) :-combine_factors464,12752 -combine_factors(Fs, Dist) :-combine_factors464,12752 -extract_factor(_-Factor, Factor).extract_factor469,12868 -extract_factor(_-Factor, Factor).extract_factor469,12868 -multiply_and_delete([f(I,Vs0,T0)|Fs], V, Vs, T) :-multiply_and_delete471,12903 -multiply_and_delete([f(I,Vs0,T0)|Fs], V, Vs, T) :-multiply_and_delete471,12903 -multiply_and_delete([f(I,Vs0,T0)|Fs], V, Vs, T) :-multiply_and_delete471,12903 -multiply([F0|Fs], Vs, T) :-multiply475,13048 -multiply([F0|Fs], Vs, T) :-multiply475,13048 -multiply([F0|Fs], Vs, T) :-multiply475,13048 -multiply_factor(f(_,Vs1,T1), f(_,Vs0,T0), f(_,Vs,T)) :-multiply_factor478,13121 -multiply_factor(f(_,Vs1,T1), f(_,Vs0,T0), f(_,Vs,T)) :-multiply_factor478,13121 -multiply_factor(f(_,Vs1,T1), f(_,Vs0,T0), f(_,Vs,T)) :-multiply_factor478,13121 - -packages/CLPBN/clpbn/viterbi.yap,7514 -viterbi(Start,End,String,Trace) :-viterbi28,396 -viterbi(Start,End,String,Trace) :-viterbi28,396 -viterbi(Start,End,String,Trace) :-viterbi28,396 -state_from_goal(_:Start,S) :-state_from_goal39,729 -state_from_goal(_:Start,S) :-state_from_goal39,729 -state_from_goal(_:Start,S) :-state_from_goal39,729 -state_from_goal(Start,S) :-state_from_goal41,786 -state_from_goal(Start,S) :-state_from_goal41,786 -state_from_goal(Start,S) :-state_from_goal41,786 -mk_graph(NOfNodes, Map, ViterbiCode) :-mk_graph48,913 -mk_graph(NOfNodes, Map, ViterbiCode) :-mk_graph48,913 -mk_graph(NOfNodes, Map, ViterbiCode) :-mk_graph48,913 -get_graph([V|Vs], [NKey|Keys], EdgesF, KeyMap0, KeyMap) :-get_graph58,1249 -get_graph([V|Vs], [NKey|Keys], EdgesF, KeyMap0, KeyMap) :-get_graph58,1249 -get_graph([V|Vs], [NKey|Keys], EdgesF, KeyMap0, KeyMap) :-get_graph58,1249 -get_graph([_|Vs], Keys, Edges, KeyMap0, KeyMap) :-get_graph66,1636 -get_graph([_|Vs], Keys, Edges, KeyMap0, KeyMap) :-get_graph66,1636 -get_graph([_|Vs], Keys, Edges, KeyMap0, KeyMap) :-get_graph66,1636 -get_graph([], [], [], KeyMap, KeyMap).get_graph68,1733 -get_graph([], [], [], KeyMap, KeyMap).get_graph68,1733 -get_emission(V, Key, EmissionProbs) :-get_emission70,1773 -get_emission(V, Key, EmissionProbs) :-get_emission70,1773 -get_emission(V, Key, EmissionProbs) :-get_emission70,1773 -get_emission(_, _, []).get_emission73,1887 -get_emission(_, _, []).get_emission73,1887 -fetch_edges([V|Parents], Key0, EdgesF, Edges0, [Slice-AKey|PKeys]) :-fetch_edges75,1912 -fetch_edges([V|Parents], Key0, EdgesF, Edges0, [Slice-AKey|PKeys]) :-fetch_edges75,1912 -fetch_edges([V|Parents], Key0, EdgesF, Edges0, [Slice-AKey|PKeys]) :-fetch_edges75,1912 -fetch_edges([Key|Parents], Key0, EdgesF, Edges0, [Slice-AKey|PKeys]) :-fetch_edges87,2187 -fetch_edges([Key|Parents], Key0, EdgesF, Edges0, [Slice-AKey|PKeys]) :-fetch_edges87,2187 -fetch_edges([Key|Parents], Key0, EdgesF, Edges0, [Slice-AKey|PKeys]) :-fetch_edges87,2187 -fetch_edges([], _, Edges, Edges, []).fetch_edges97,2421 -fetch_edges([], _, Edges, Edges, []).fetch_edges97,2421 -abstract_key(Key, NKey, Slice) :-abstract_key99,2460 -abstract_key(Key, NKey, Slice) :-abstract_key99,2460 -abstract_key(Key, NKey, Slice) :-abstract_key99,2460 -compile_viterbi(Keys, KeyMap, Nodes, Map, ViterbiCode) :-compile_viterbi104,2541 -compile_viterbi(Keys, KeyMap, Nodes, Map, ViterbiCode) :-compile_viterbi104,2541 -compile_viterbi(Keys, KeyMap, Nodes, Map, ViterbiCode) :-compile_viterbi104,2541 -enum_keys([], _, I, I, []).enum_keys109,2705 -enum_keys([], _, I, I, []).enum_keys109,2705 -enum_keys([Key|Keys], KeyMap, I0, Nodes, [I0-Key|Map]) :-enum_keys110,2733 -enum_keys([Key|Keys], KeyMap, I0, Nodes, [I0-Key|Map]) :-enum_keys110,2733 -enum_keys([Key|Keys], KeyMap, I0, Nodes, [I0-Key|Map]) :-enum_keys110,2733 -compile_keys([Key|Keys], KeyMap, ViterbiCodeF) :-compile_keys115,2888 -compile_keys([Key|Keys], KeyMap, ViterbiCodeF) :-compile_keys115,2888 -compile_keys([Key|Keys], KeyMap, ViterbiCodeF) :-compile_keys115,2888 -compile_keys([], _, []).compile_keys121,3199 -compile_keys([], _, []).compile_keys121,3199 -compile_emission([],_) --> !, [].compile_emission125,3260 -compile_emission([],_) --> !, [].compile_emission125,3260 -compile_emission([],_) --> !, [].compile_emission125,3260 -compile_emission(EmissionTerm,IKey) --> [emit(IKey,EmissionTerm)].compile_emission126,3294 -compile_emission(EmissionTerm,IKey) --> [emit(IKey,EmissionTerm)].compile_emission126,3294 -compile_emission(EmissionTerm,IKey) --> [emit(IKey,EmissionTerm)].compile_emission126,3294 -compile_propagation([],[],_,_) --> [].compile_propagation128,3362 -compile_propagation([],[],_,_) --> [].compile_propagation128,3362 -compile_propagation([],[],_,_) --> [].compile_propagation128,3362 -compile_propagation([0-PKey|Ps], [Prob|Probs], IKey, KeyMap) -->compile_propagation129,3401 -compile_propagation([0-PKey|Ps], [Prob|Probs], IKey, KeyMap) -->compile_propagation129,3401 -compile_propagation([0-PKey|Ps], [Prob|Probs], IKey, KeyMap) -->compile_propagation129,3401 -compile_propagation([2-PKey|Ps], [Prob|Probs], IKey, KeyMap) -->compile_propagation133,3597 -compile_propagation([2-PKey|Ps], [Prob|Probs], IKey, KeyMap) -->compile_propagation133,3597 -compile_propagation([2-PKey|Ps], [Prob|Probs], IKey, KeyMap) -->compile_propagation133,3597 -compile_propagation([3-PKey|Ps], [Prob|Probs], IKey, KeyMap) -->compile_propagation137,3793 -compile_propagation([3-PKey|Ps], [Prob|Probs], IKey, KeyMap) -->compile_propagation137,3793 -compile_propagation([3-PKey|Ps], [Prob|Probs], IKey, KeyMap) -->compile_propagation137,3793 -get_id(_:S, Map, SI) :- !,get_id142,3990 -get_id(_:S, Map, SI) :- !,get_id142,3990 -get_id(_:S, Map, SI) :- !,get_id142,3990 -get_id(S, Map, SI) :-get_id144,4038 -get_id(S, Map, SI) :-get_id144,4038 -get_id(S, Map, SI) :-get_id144,4038 -compile_trace(Trace, Emissions) :-compile_trace150,4135 -compile_trace(Trace, Emissions) :-compile_trace150,4135 -compile_trace(Trace, Emissions) :-compile_trace150,4135 -compile_trace([], _, []).compile_trace159,4309 -compile_trace([], _, []).compile_trace159,4309 -compile_trace([El|Trace], Vals, [N|Emissions]) :-compile_trace160,4335 -compile_trace([El|Trace], Vals, [N|Emissions]) :-compile_trace160,4335 -compile_trace([El|Trace], Vals, [N|Emissions]) :-compile_trace160,4335 -compiled_viterbi(Nodes, S, Commands, Input, Trace, L) :-compiled_viterbi164,4451 -compiled_viterbi(Nodes, S, Commands, Input, Trace, L) :-compiled_viterbi164,4451 -compiled_viterbi(Nodes, S, Commands, Input, Trace, L) :-compiled_viterbi164,4451 -run_commands([], _, _, _, _, _, _).run_commands175,4795 -run_commands([], _, _, _, _, _, _).run_commands175,4795 -run_commands([E|Input], Commands, I, Current, Next, Trace, Min) :-run_commands176,4831 -run_commands([E|Input], Commands, I, Current, Next, Trace, Min) :-run_commands176,4831 -run_commands([E|Input], Commands, I, Current, Next, Trace, Min) :-run_commands176,4831 -run_code([], _, _, _, _, Trace).run_code184,5117 -run_code([], _, _, _, _, Trace).run_code184,5117 -run_code([Inst|Input], E, I, Current, Next, Trace) :-run_code185,5150 -run_code([Inst|Input], E, I, Current, Next, Trace) :-run_code185,5150 -run_code([Inst|Input], E, I, Current, Next, Trace) :-run_code185,5150 -run_inst(emit(Id,T), E, _SP, Current, _, Trace) :-run_inst189,5297 -run_inst(emit(Id,T), E, _SP, Current, _, Trace) :-run_inst189,5297 -run_inst(emit(Id,T), E, _SP, Current, _, Trace) :-run_inst189,5297 -run_inst(prop_same(I,P,Prob), _, SP, Current, _, Trace) :-run_inst192,5392 -run_inst(prop_same(I,P,Prob), _, SP, Current, _, Trace) :-run_inst192,5392 -run_inst(prop_same(I,P,Prob), _, SP, Current, _, Trace) :-run_inst192,5392 -run_inst(prop_next(I,P,Prob), _, SP, Current, Next, Trace) :-run_inst202,5622 -run_inst(prop_next(I,P,Prob), _, SP, Current, Next, Trace) :-run_inst202,5622 -run_inst(prop_next(I,P,Prob), _, SP, Current, Next, Trace) :-run_inst202,5622 -backtrace(Dump, EI, Map, L, Trace) :-backtrace215,5881 -backtrace(Dump, EI, Map, L, Trace) :-backtrace215,5881 -backtrace(Dump, EI, Map, L, Trace) :-backtrace215,5881 -trace(0,0,_,_,Trace,Trace) :- !.trace221,6011 -trace(0,0,_,_,Trace,Trace) :- !.trace221,6011 -trace(0,0,_,_,Trace,Trace) :- !.trace221,6011 -trace(L1,Next,Dump,Map,Trace0,Trace) :-trace222,6044 -trace(L1,Next,Dump,Map,Trace0,Trace) :-trace222,6044 -trace(L1,Next,Dump,Map,Trace0,Trace) :-trace222,6044 - -packages/CLPBN/clpbn/vmap.yap,1206 -init_vmap(vmap(0,Empty)) :-init_vmap18,438 -init_vmap(vmap(0,Empty)) :-init_vmap18,438 -init_vmap(vmap(0,Empty)) :-init_vmap18,438 -get_from_vmap(V, I, VMap0) :-get_from_vmap21,483 -get_from_vmap(V, I, VMap0) :-get_from_vmap21,483 -get_from_vmap(V, I, VMap0) :-get_from_vmap21,483 -add_to_vmap(V, I, VMap0, VMap0) :-add_to_vmap25,562 -add_to_vmap(V, I, VMap0, VMap0) :-add_to_vmap25,562 -add_to_vmap(V, I, VMap0, VMap0) :-add_to_vmap25,562 -add_to_vmap(V, I0, vmap(I0,Map0), vmap(I, Map)) :-add_to_vmap28,648 -add_to_vmap(V, I0, vmap(I0,Map0), vmap(I, Map)) :-add_to_vmap28,648 -add_to_vmap(V, I0, vmap(I0,Map0), vmap(I, Map)) :-add_to_vmap28,648 -vars_to_numbers(Vs, Is, VMap0, VMap) :-vars_to_numbers32,742 -vars_to_numbers(Vs, Is, VMap0, VMap) :-vars_to_numbers32,742 -vars_to_numbers(Vs, Is, VMap0, VMap) :-vars_to_numbers32,742 -lvars_to_numbers(LVs, LIs, VMap0, VMap) :-lvars_to_numbers35,825 -lvars_to_numbers(LVs, LIs, VMap0, VMap) :-lvars_to_numbers35,825 -lvars_to_numbers(LVs, LIs, VMap0, VMap) :-lvars_to_numbers35,825 -vmap_to_list(vmap(_,Map), L) :-vmap_to_list38,917 -vmap_to_list(vmap(_,Map), L) :-vmap_to_list38,917 -vmap_to_list(vmap(_,Map), L) :-vmap_to_list38,917 - -packages/CLPBN/clpbn/xbif.yap,2568 -clpbn2xbif(Stream, Name, Network) :-clpbn2xbif11,133 -clpbn2xbif(Stream, Name, Network) :-clpbn2xbif11,133 -clpbn2xbif(Stream, Name, Network) :-clpbn2xbif11,133 -output_vars(_, []).output_vars49,1065 -output_vars(_, []).output_vars49,1065 -output_vars(Stream, [V|Vs]) :-output_vars50,1085 -output_vars(Stream, [V|Vs]) :-output_vars50,1085 -output_vars(Stream, [V|Vs]) :-output_vars50,1085 -output_var(Stream, V) :-output_var54,1167 -output_var(Stream, V) :-output_var54,1167 -output_var(Stream, V) :-output_var54,1167 -output_domain(_, []).output_domain64,1442 -output_domain(_, []).output_domain64,1442 -output_domain(Stream, [El|Domain]) :-output_domain65,1464 -output_domain(Stream, [El|Domain]) :-output_domain65,1464 -output_domain(Stream, [El|Domain]) :-output_domain65,1464 -output_dists(_, []).output_dists69,1585 -output_dists(_, []).output_dists69,1585 -output_dists(Stream, [V|Network]) :-output_dists70,1606 -output_dists(Stream, [V|Network]) :-output_dists70,1606 -output_dists(Stream, [V|Network]) :-output_dists70,1606 -output_dist(Stream, V) :-output_dist75,1702 -output_dist(Stream, V) :-output_dist75,1702 -output_dist(Stream, V) :-output_dist75,1702 -output_parents(_,[]).output_parents85,1972 -output_parents(_,[]).output_parents85,1972 -output_parents(Stream,[P1|Ps]) :-output_parents86,1994 -output_parents(Stream,[P1|Ps]) :-output_parents86,1994 -output_parents(Stream,[P1|Ps]) :-output_parents86,1994 -output_cpt(Stream,CPT) :-output_cpt93,2171 -output_cpt(Stream,CPT) :-output_cpt93,2171 -output_cpt(Stream,CPT) :-output_cpt93,2171 -output_els(_, []).output_els98,2293 -output_els(_, []).output_els98,2293 -output_els(Stream, [El|Els]) :-output_els99,2312 -output_els(Stream, [El|Els]) :-output_els99,2312 -output_els(Stream, [El|Els]) :-output_els99,2312 -output_key(Stream, Key) :-output_key103,2399 -output_key(Stream, Key) :-output_key103,2399 -output_key(Stream, Key) :-output_key103,2399 -output_key(Stream, _, Key) :-output_key106,2456 -output_key(Stream, _, Key) :-output_key106,2456 -output_key(Stream, _, Key) :-output_key106,2456 -output_key(Stream, I0, Key) :-output_key109,2527 -output_key(Stream, I0, Key) :-output_key109,2527 -output_key(Stream, I0, Key) :-output_key109,2527 -output_key_args(_, _, []).output_key_args115,2650 -output_key_args(_, _, []).output_key_args115,2650 -output_key_args(Stream, I, [Arg|Args]) :-output_key_args116,2677 -output_key_args(Stream, I, [Arg|Args]) :-output_key_args116,2677 -output_key_args(Stream, I, [Arg|Args]) :-output_key_args116,2677 - -packages/CLPBN/clpbn.yap,32285 -:- multifile user:term_expansion/2.multifile130,2391 -:- multifile user:term_expansion/2.multifile130,2391 -:- dynamic user:term_expansion/2.dynamic132,2428 -:- dynamic user:term_expansion/2.dynamic132,2428 -solver(hve).solver146,2663 -solver(hve).solver146,2663 -em_solver(hve).em_solver147,2676 -em_solver(hve).em_solver147,2676 -suppress_attribute_display(false).suppress_attribute_display148,2692 -suppress_attribute_display(false).suppress_attribute_display148,2692 -parameter_softening(m_estimate(10)).parameter_softening149,2727 -parameter_softening(m_estimate(10)).parameter_softening149,2727 -use_parfactors(off).use_parfactors150,2764 -use_parfactors(off).use_parfactors150,2764 -output(no).output151,2785 -output(no).output151,2785 -ground_solver(ve).ground_solver155,2852 -ground_solver(ve).ground_solver155,2852 -ground_solver(hve).ground_solver156,2871 -ground_solver(hve).ground_solver156,2871 -ground_solver(jt).ground_solver157,2891 -ground_solver(jt).ground_solver157,2891 -ground_solver(bdd).ground_solver158,2910 -ground_solver(bdd).ground_solver158,2910 -ground_solver(bp).ground_solver159,2930 -ground_solver(bp).ground_solver159,2930 -ground_solver(cbp).ground_solver160,2949 -ground_solver(cbp).ground_solver160,2949 -ground_solver(gibbs).ground_solver161,2969 -ground_solver(gibbs).ground_solver161,2969 -lifted_solver(lve).lifted_solver163,2992 -lifted_solver(lve).lifted_solver163,2992 -lifted_solver(lkc).lifted_solver164,3012 -lifted_solver(lkc).lifted_solver164,3012 -lifted_solver(lbp).lifted_solver165,3032 -lifted_solver(lbp).lifted_solver165,3032 -clpbn_flag(Flag, Option) :-clpbn_flag168,3054 -clpbn_flag(Flag, Option) :-clpbn_flag168,3054 -clpbn_flag(Flag, Option) :-clpbn_flag168,3054 -set_clpbn_flag(Flag,Option) :-set_clpbn_flag171,3118 -set_clpbn_flag(Flag,Option) :-set_clpbn_flag171,3118 -set_clpbn_flag(Flag,Option) :-set_clpbn_flag171,3118 -clpbn_flag(solver,Before,After) :- !,clpbn_flag174,3180 -clpbn_flag(solver,Before,After) :- !,clpbn_flag174,3180 -clpbn_flag(solver,Before,After) :- !,clpbn_flag174,3180 -clpbn_flag(em_solver,Before,After) :- !,clpbn_flag178,3269 -clpbn_flag(em_solver,Before,After) :- !,clpbn_flag178,3269 -clpbn_flag(em_solver,Before,After) :- !,clpbn_flag178,3269 -clpbn_flag(bnt_solver,Before,After) :- !,clpbn_flag182,3367 -clpbn_flag(bnt_solver,Before,After) :- !,clpbn_flag182,3367 -clpbn_flag(bnt_solver,Before,After) :- !,clpbn_flag182,3367 -clpbn_flag(bnt_path,Before,After) :- !,clpbn_flag186,3476 -clpbn_flag(bnt_path,Before,After) :- !,clpbn_flag186,3476 -clpbn_flag(bnt_path,Before,After) :- !,clpbn_flag186,3476 -clpbn_flag(bnt_model,Before,After) :- !,clpbn_flag190,3579 -clpbn_flag(bnt_model,Before,After) :- !,clpbn_flag190,3579 -clpbn_flag(bnt_model,Before,After) :- !,clpbn_flag190,3579 -clpbn_flag(suppress_attribute_display,Before,After) :- !,clpbn_flag194,3685 -clpbn_flag(suppress_attribute_display,Before,After) :- !,clpbn_flag194,3685 -clpbn_flag(suppress_attribute_display,Before,After) :- !,clpbn_flag194,3685 -clpbn_flag(parameter_softening,Before,After) :- !,clpbn_flag198,3834 -clpbn_flag(parameter_softening,Before,After) :- !,clpbn_flag198,3834 -clpbn_flag(parameter_softening,Before,After) :- !,clpbn_flag198,3834 -clpbn_flag(use_parfactors,Before,After) :- !,clpbn_flag202,3962 -clpbn_flag(use_parfactors,Before,After) :- !,clpbn_flag202,3962 -clpbn_flag(use_parfactors,Before,After) :- !,clpbn_flag202,3962 -clpbn_flag(output,Before,After) :- !,clpbn_flag206,4075 -clpbn_flag(output,Before,After) :- !,clpbn_flag206,4075 -clpbn_flag(output,Before,After) :- !,clpbn_flag206,4075 -clpbn_flag(HorusOption, _Before, After) :-clpbn_flag210,4164 -clpbn_flag(HorusOption, _Before, After) :-clpbn_flag210,4164 -clpbn_flag(HorusOption, _Before, After) :-clpbn_flag210,4164 -set_solver(Solver) :-set_solver213,4245 -set_solver(Solver) :-set_solver213,4245 -set_solver(Solver) :-set_solver213,4245 -set_em_solver(Solver) :-set_em_solver216,4300 -set_em_solver(Solver) :-set_em_solver216,4300 -set_em_solver(Solver) :-set_em_solver216,4300 -store_var(El) :-store_var233,4705 -store_var(El) :-store_var233,4705 -store_var(El) :-store_var233,4705 -store_var(El) :-store_var238,4842 -store_var(El) :-store_var238,4842 -store_var(El) :-store_var238,4842 -init_clpbn_vars(El) :-init_clpbn_vars241,4882 -init_clpbn_vars(El) :-init_clpbn_vars241,4882 -init_clpbn_vars(El) :-init_clpbn_vars241,4882 -check_constraint(Constraint, _, _, Constraint) :-check_constraint245,4969 -check_constraint(Constraint, _, _, Constraint) :-check_constraint245,4969 -check_constraint(Constraint, _, _, Constraint) :-check_constraint245,4969 -check_constraint((A->D), _, _, (A->D)) :-check_constraint247,5040 -check_constraint((A->D), _, _, (A->D)) :-check_constraint247,5040 -check_constraint((A->D), _, _, (A->D)) :-check_constraint247,5040 -check_constraint((([A|B].L)->D), Vars, NVars, (([A|B].NL)->D)) :- !,check_constraint249,5094 -check_constraint((([A|B].L)->D), Vars, NVars, (([A|B].NL)->D)) :- !,check_constraint249,5094 -check_constraint((([A|B].L)->D), Vars, NVars, (([A|B].NL)->D)) :- !,check_constraint249,5094 -check_constraint(Dist, _, _, Dist).check_constraint251,5206 -check_constraint(Dist, _, _, Dist).check_constraint251,5206 -check_cpt_input_vars([], _, _, []).check_cpt_input_vars253,5243 -check_cpt_input_vars([], _, _, []).check_cpt_input_vars253,5243 -check_cpt_input_vars([V|L], Vars, NVars, [NV|NL]) :-check_cpt_input_vars254,5279 -check_cpt_input_vars([V|L], Vars, NVars, [NV|NL]) :-check_cpt_input_vars254,5279 -check_cpt_input_vars([V|L], Vars, NVars, [NV|NL]) :-check_cpt_input_vars254,5279 -replace_var([], V, [], V).replace_var258,5410 -replace_var([], V, [], V).replace_var258,5410 -replace_var([V|_], V0, [NV|_], NV) :- V == V0, !.replace_var259,5437 -replace_var([V|_], V0, [NV|_], NV) :- V == V0, !.replace_var259,5437 -replace_var([V|_], V0, [NV|_], NV) :- V == V0, !.replace_var259,5437 -replace_var([_|Vars], V, [_|NVars], NV) :-replace_var260,5487 -replace_var([_|Vars], V, [_|NVars], NV) :-replace_var260,5487 -replace_var([_|Vars], V, [_|NVars], NV) :-replace_var260,5487 -add_evidence(V,Key,Distinfo,NV) :-add_evidence263,5565 -add_evidence(V,Key,Distinfo,NV) :-add_evidence263,5565 -add_evidence(V,Key,Distinfo,NV) :-add_evidence263,5565 -add_evidence(V,K,_,V) :-add_evidence269,5742 -add_evidence(V,K,_,V) :-add_evidence269,5742 -add_evidence(V,K,_,V) :-add_evidence269,5742 -clpbn_marginalise(V, Dist) :-clpbn_marginalise273,5810 -clpbn_marginalise(V, Dist) :-clpbn_marginalise273,5810 -clpbn_marginalise(V, Dist) :-clpbn_marginalise273,5810 -project_attributes(GVars0, _AVars0) :-project_attributes282,6006 -project_attributes(GVars0, _AVars0) :-project_attributes282,6006 -project_attributes(GVars0, _AVars0) :-project_attributes282,6006 -project_attributes(GVars, AVars) :-project_attributes297,6435 -project_attributes(GVars, AVars) :-project_attributes297,6435 -project_attributes(GVars, AVars) :-project_attributes297,6435 -project_attributes(_, _).project_attributes316,7074 -project_attributes(_, _).project_attributes316,7074 -simplify_query([V|GVars0], GVars) :-simplify_query321,7147 -simplify_query([V|GVars0], GVars) :-simplify_query321,7147 -simplify_query([V|GVars0], GVars) :-simplify_query321,7147 -simplify_query([V|GVars0], GVars) :-simplify_query324,7248 -simplify_query([V|GVars0], GVars) :-simplify_query324,7248 -simplify_query([V|GVars0], GVars) :-simplify_query324,7248 -simplify_query([V|GVars0], [V|GVars]) :-simplify_query328,7365 -simplify_query([V|GVars0], [V|GVars]) :-simplify_query328,7365 -simplify_query([V|GVars0], [V|GVars]) :-simplify_query328,7365 -simplify_query([], []).simplify_query330,7438 -simplify_query([], []).simplify_query330,7438 -match([], _Keys).match332,7463 -match([], _Keys).match332,7463 -match([V|GVars], Keys) :-match333,7481 -match([V|GVars], Keys) :-match333,7481 -match([V|GVars], Keys) :-match333,7481 -match([_V|GVars], Keys) :-match337,7598 -match([_V|GVars], Keys) :-match337,7598 -match([_V|GVars], Keys) :-match337,7598 -clpbn_vars(AVars, DiffVars, AllVars) :-clpbn_vars340,7647 -clpbn_vars(AVars, DiffVars, AllVars) :-clpbn_vars340,7647 -clpbn_vars(AVars, DiffVars, AllVars) :-clpbn_vars340,7647 -get_clpbn_vars([V|GVars],[V|CLPBNGVars]) :-get_clpbn_vars344,7780 -get_clpbn_vars([V|GVars],[V|CLPBNGVars]) :-get_clpbn_vars344,7780 -get_clpbn_vars([V|GVars],[V|CLPBNGVars]) :-get_clpbn_vars344,7780 -get_clpbn_vars([_|GVars],CLPBNGVars) :-get_clpbn_vars347,7886 -get_clpbn_vars([_|GVars],CLPBNGVars) :-get_clpbn_vars347,7886 -get_clpbn_vars([_|GVars],CLPBNGVars) :-get_clpbn_vars347,7886 -get_clpbn_vars([],[]).get_clpbn_vars349,7961 -get_clpbn_vars([],[]).get_clpbn_vars349,7961 -simplify_query_vars(LVs0, LVs) :-simplify_query_vars351,7985 -simplify_query_vars(LVs0, LVs) :-simplify_query_vars351,7985 -simplify_query_vars(LVs0, LVs) :-simplify_query_vars351,7985 -get_rid_of_ev_vars([],[]).get_rid_of_ev_vars358,8136 -get_rid_of_ev_vars([],[]).get_rid_of_ev_vars358,8136 -get_rid_of_ev_vars([V|LVs0],LVs) :-get_rid_of_ev_vars359,8163 -get_rid_of_ev_vars([V|LVs0],LVs) :-get_rid_of_ev_vars359,8163 -get_rid_of_ev_vars([V|LVs0],LVs) :-get_rid_of_ev_vars359,8163 -get_rid_of_ev_vars([V|LVs0],[V|LVs]) :-get_rid_of_ev_vars364,8380 -get_rid_of_ev_vars([V|LVs0],[V|LVs]) :-get_rid_of_ev_vars364,8380 -get_rid_of_ev_vars([V|LVs0],[V|LVs]) :-get_rid_of_ev_vars364,8380 -call_ground_solver(ve, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver369,8501 -call_ground_solver(ve, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver369,8501 -call_ground_solver(ve, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver369,8501 -call_ground_solver(hve, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver372,8646 -call_ground_solver(hve, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver372,8646 -call_ground_solver(hve, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver372,8646 -call_ground_solver(bdd, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver376,8844 -call_ground_solver(bdd, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver376,8844 -call_ground_solver(bdd, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver376,8844 -call_ground_solver(bp, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver379,8991 -call_ground_solver(bp, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver379,8991 -call_ground_solver(bp, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver379,8991 -call_ground_solver(cbp, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver383,9187 -call_ground_solver(cbp, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver383,9187 -call_ground_solver(cbp, GVars, GoalKeys, Keys, Factors, Evidence) :- !,call_ground_solver383,9187 -call_ground_solver(Solver, GVars, _GoalKeys, Keys, Factors, Evidence) :-call_ground_solver387,9385 -call_ground_solver(Solver, GVars, _GoalKeys, Keys, Factors, Evidence) :-call_ground_solver387,9385 -call_ground_solver(Solver, GVars, _GoalKeys, Keys, Factors, Evidence) :-call_ground_solver387,9385 -write_out(_, GVars, AVars, _) :- write_out402,9897 -write_out(_, GVars, AVars, _) :- write_out402,9897 -write_out(_, GVars, AVars, _) :- write_out402,9897 -write_out(_, [], _, _) :- !.write_out405,9971 -write_out(_, [], _, _) :- !.write_out405,9971 -write_out(_, [], _, _) :- !.write_out405,9971 -write_out(graphs, _, AVars, _) :- !,write_out407,10001 -write_out(graphs, _, AVars, _) :- !,write_out407,10001 -write_out(graphs, _, AVars, _) :- !,write_out407,10001 -write_out(ve, GVars, AVars, DiffVars) :- !,write_out410,10060 -write_out(ve, GVars, AVars, DiffVars) :- !,write_out410,10060 -write_out(ve, GVars, AVars, DiffVars) :- !,write_out410,10060 -write_out(jt, GVars, AVars, DiffVars) :- !,write_out413,10134 -write_out(jt, GVars, AVars, DiffVars) :- !,write_out413,10134 -write_out(jt, GVars, AVars, DiffVars) :- !,write_out413,10134 -write_out(bdd, GVars, AVars, DiffVars) :- !,write_out416,10208 -write_out(bdd, GVars, AVars, DiffVars) :- !,write_out416,10208 -write_out(bdd, GVars, AVars, DiffVars) :- !,write_out416,10208 -write_out(gibbs, GVars, AVars, DiffVars) :- !,write_out419,10284 -write_out(gibbs, GVars, AVars, DiffVars) :- !,write_out419,10284 -write_out(gibbs, GVars, AVars, DiffVars) :- !,write_out419,10284 -write_out(lve, GVars, AVars, DiffVars) :- !,write_out422,10364 -write_out(lve, GVars, AVars, DiffVars) :- !,write_out422,10364 -write_out(lve, GVars, AVars, DiffVars) :- !,write_out422,10364 -write_out(lkc, GVars, AVars, DiffVars) :- !,write_out426,10510 -write_out(lkc, GVars, AVars, DiffVars) :- !,write_out426,10510 -write_out(lkc, GVars, AVars, DiffVars) :- !,write_out426,10510 -write_out(lbp, GVars, AVars, DiffVars) :- !,write_out430,10656 -write_out(lbp, GVars, AVars, DiffVars) :- !,write_out430,10656 -write_out(lbp, GVars, AVars, DiffVars) :- !,write_out430,10656 -write_out(bnt, GVars, AVars, DiffVars) :- !,write_out434,10802 -write_out(bnt, GVars, AVars, DiffVars) :- !,write_out434,10802 -write_out(bnt, GVars, AVars, DiffVars) :- !,write_out434,10802 -write_out(Solver, _, _, _) :-write_out437,10881 -write_out(Solver, _, _, _) :-write_out437,10881 -write_out(Solver, _, _, _) :-write_out437,10881 -bound_varl(AVars, L) :-bound_varl441,10972 -bound_varl(AVars, L) :-bound_varl441,10972 -bound_varl(AVars, L) :-bound_varl441,10972 -bound_var(_AVars,V) :-bound_var444,11028 -bound_var(_AVars,V) :-bound_var444,11028 -bound_var(_AVars,V) :-bound_var444,11028 -bound_var(_AVars, _V).bound_var450,11198 -bound_var(_AVars, _V).bound_var450,11198 -gvar_in_hash(V, Hash0, Hash) :-gvar_in_hash458,11304 -gvar_in_hash(V, Hash0, Hash) :-gvar_in_hash458,11304 -gvar_in_hash(V, Hash0, Hash) :-gvar_in_hash458,11304 -key_to_var(K, V, Hash0, Hash0) :-key_to_var462,11396 -key_to_var(K, V, Hash0, Hash0) :-key_to_var462,11396 -key_to_var(K, V, Hash0, Hash0) :-key_to_var462,11396 -key_to_var(K, V,Hash0, Hash) :-key_to_var464,11462 -key_to_var(K, V,Hash0, Hash) :-key_to_var464,11462 -key_to_var(K, V,Hash0, Hash) :-key_to_var464,11462 -evidence_to_v(K=E, V, Hash0, Hash0) :-evidence_to_v468,11554 -evidence_to_v(K=E, V, Hash0, Hash0) :-evidence_to_v468,11554 -evidence_to_v(K=E, V, Hash0, Hash0) :-evidence_to_v468,11554 -evidence_to_v(K=E, V, Hash0, Hash) :-evidence_to_v471,11659 -evidence_to_v(K=E, V, Hash0, Hash) :-evidence_to_v471,11659 -evidence_to_v(K=E, V, Hash0, Hash) :-evidence_to_v471,11659 -factor_to_dist(Hash, f(bayes, Id, Ks)) :-factor_to_dist475,11767 -factor_to_dist(Hash, f(bayes, Id, Ks)) :-factor_to_dist475,11767 -factor_to_dist(Hash, f(bayes, Id, Ks)) :-factor_to_dist475,11767 -key_to_var(Hash, K, V) :-key_to_var483,12026 -key_to_var(Hash, K, V) :-key_to_var483,12026 -key_to_var(Hash, K, V) :-key_to_var483,12026 -get_bnode(Var, Goal) :-get_bnode486,12081 -get_bnode(Var, Goal) :-get_bnode486,12081 -get_bnode(Var, Goal) :-get_bnode486,12081 -include_evidence(Var, Goal0, Key, ((Key:-Ev),Goal0)) :-include_evidence493,12322 -include_evidence(Var, Goal0, Key, ((Key:-Ev),Goal0)) :-include_evidence493,12322 -include_evidence(Var, Goal0, Key, ((Key:-Ev),Goal0)) :-include_evidence493,12322 -include_evidence(_, Goal0, _, Goal0).include_evidence495,12413 -include_evidence(_, Goal0, _, Goal0).include_evidence495,12413 -dist_goal(Dist, Key, (Key=NDist)) :-dist_goal497,12452 -dist_goal(Dist, Key, (Key=NDist)) :-dist_goal497,12452 -dist_goal(Dist, Key, (Key=NDist)) :-dist_goal497,12452 -my_copy_term(V, DVars, Key, DKeys) :-my_copy_term502,12589 -my_copy_term(V, DVars, Key, DKeys) :-my_copy_term502,12589 -my_copy_term(V, DVars, Key, DKeys) :-my_copy_term502,12589 -my_copy_term(A, _, A, _) :- atomic(A), !.my_copy_term504,12660 -my_copy_term(A, _, A, _) :- atomic(A), !.my_copy_term504,12660 -my_copy_term(A, _, A, _) :- atomic(A), !.my_copy_term504,12660 -my_copy_term(T, Vs, NT, Ks) :-my_copy_term505,12702 -my_copy_term(T, Vs, NT, Ks) :-my_copy_term505,12702 -my_copy_term(T, Vs, NT, Ks) :-my_copy_term505,12702 -my_copy_terms([], _, [], _).my_copy_terms510,12801 -my_copy_terms([], _, [], _).my_copy_terms510,12801 -my_copy_terms([A|As], Vs, [NA|NAs], Ks) :-my_copy_terms511,12830 -my_copy_terms([A|As], Vs, [NA|NAs], Ks) :-my_copy_terms511,12830 -my_copy_terms([A|As], Vs, [NA|NAs], Ks) :-my_copy_terms511,12830 -find_var([V1|_], V, Key, [Key|_]) :- V1 == V, !.find_var515,12937 -find_var([V1|_], V, Key, [Key|_]) :- V1 == V, !.find_var515,12937 -find_var([V1|_], V, Key, [Key|_]) :- V1 == V, !.find_var515,12937 -find_var([_|DVars], V, Key, [_|DKeys]) :-find_var516,12986 -find_var([_|DVars], V, Key, [_|DKeys]) :-find_var516,12986 -find_var([_|DVars], V, Key, [_|DKeys]) :-find_var516,12986 -process_vars([], []).process_vars519,13062 -process_vars([], []).process_vars519,13062 -process_vars([V|Vs], [K|Ks]) :-process_vars520,13084 -process_vars([V|Vs], [K|Ks]) :-process_vars520,13084 -process_vars([V|Vs], [K|Ks]) :-process_vars520,13084 -process_var(V, K) :- get_atts(V, [key(K)]), !.process_var524,13160 -process_var(V, K) :- get_atts(V, [key(K)]), !.process_var524,13160 -process_var(V, K) :- get_atts(V, [key(K)]), !.process_var524,13160 -process_var(V, _) :- throw(error(instantiation_error,clpbn(attribute_goal(V)))).process_var526,13248 -process_var(V, _) :- throw(error(instantiation_error,clpbn(attribute_goal(V)))).process_var526,13248 -process_var(V, _) :- throw(error(instantiation_error,clpbn(attribute_goal(V)))).process_var526,13248 -process_var(V, _) :- throw(error(instantiation_error,clpbn(attribute_goal(V)))).process_var526,13248 -process_var(V, _) :- throw(error(instantiation_error,clpbn(attribute_goal(V)))).process_var526,13248 -verify_attributes(Var, T, Goal) :-verify_attributes531,13375 -verify_attributes(Var, T, Goal) :-verify_attributes531,13375 -verify_attributes(Var, T, Goal) :-verify_attributes531,13375 -verify_attributes(_, _, []).verify_attributes535,13572 -verify_attributes(_, _, []).verify_attributes535,13572 -bind_clpbn(T, Var, _, _, _, do_not_bind_variable([put_evidence(T,Var)])) :-bind_clpbn538,13603 -bind_clpbn(T, Var, _, _, _, do_not_bind_variable([put_evidence(T,Var)])) :-bind_clpbn538,13603 -bind_clpbn(T, Var, _, _, _, do_not_bind_variable([put_evidence(T,Var)])) :-bind_clpbn538,13603 -bind_clpbn(T, Var, Key, Dist, Parents, []) :- var(T),bind_clpbn541,13695 -bind_clpbn(T, Var, Key, Dist, Parents, []) :- var(T),bind_clpbn541,13695 -bind_clpbn(T, Var, Key, Dist, Parents, []) :- var(T),bind_clpbn541,13695 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn558,14083 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn558,14083 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn558,14083 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn561,14158 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn561,14158 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn561,14158 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn564,14251 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn564,14251 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn564,14251 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn567,14326 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn567,14326 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn567,14326 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn570,14403 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn570,14403 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn570,14403 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn573,14495 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn573,14495 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn573,14495 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn576,14588 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn576,14588 -bind_clpbn(_, Var, _, _, _, _, []) :-bind_clpbn576,14588 -bind_clpbn(T, Var, Key0, _, _, _, []) :-bind_clpbn579,14665 -bind_clpbn(T, Var, Key0, _, _, _, []) :-bind_clpbn579,14665 -bind_clpbn(T, Var, Key0, _, _, _, []) :-bind_clpbn579,14665 -fresh_attvar(Var, NVar) :-fresh_attvar588,14832 -fresh_attvar(Var, NVar) :-fresh_attvar588,14832 -fresh_attvar(Var, NVar) :-fresh_attvar588,14832 -bind_clpbns(Key, Dist, Parents, Key1, Dist1, Parents1) :-bind_clpbns594,15023 -bind_clpbns(Key, Dist, Parents, Key1, Dist1, Parents1) :-bind_clpbns594,15023 -bind_clpbns(Key, Dist, Parents, Key1, Dist1, Parents1) :-bind_clpbns594,15023 -bind_clpbns(Key, _, _, _, Key1, _, _, _) :-bind_clpbns600,15214 -bind_clpbns(Key, _, _, _, Key1, _, _, _) :-bind_clpbns600,15214 -bind_clpbns(Key, _, _, _, Key1, _, _, _) :-bind_clpbns600,15214 -bind_clpbns(_, _, _, _, _, _, _, _) :-bind_clpbns602,15279 -bind_clpbns(_, _, _, _, _, _, _, _) :-bind_clpbns602,15279 -bind_clpbns(_, _, _, _, _, _, _, _) :-bind_clpbns602,15279 -same_parents([],[]).same_parents605,15396 -same_parents([],[]).same_parents605,15396 -same_parents([P|Parents],[P1|Parents1]) :-same_parents606,15417 -same_parents([P|Parents],[P1|Parents1]) :-same_parents606,15417 -same_parents([P|Parents],[P1|Parents1]) :-same_parents606,15417 -same_node(P,P1) :- P == P1, !.same_node610,15512 -same_node(P,P1) :- P == P1, !.same_node610,15512 -same_node(P,P1) :- P == P1, !.same_node610,15512 -same_node(P,P1) :-same_node611,15543 -same_node(P,P1) :-same_node611,15543 -same_node(P,P1) :-same_node611,15543 -bind_evidence_from_extra_var(Ev1,Var) :-bind_evidence_from_extra_var617,15621 -bind_evidence_from_extra_var(Ev1,Var) :-bind_evidence_from_extra_var617,15621 -bind_evidence_from_extra_var(Ev1,Var) :-bind_evidence_from_extra_var617,15621 -bind_evidence_from_extra_var(Ev1,Var) :-bind_evidence_from_extra_var620,15710 -bind_evidence_from_extra_var(Ev1,Var) :-bind_evidence_from_extra_var620,15710 -bind_evidence_from_extra_var(Ev1,Var) :-bind_evidence_from_extra_var620,15710 -user:term_expansion((A :- {}), ( :- true )) :- !, % evidenceterm_expansion623,15785 -user:term_expansion((A :- {}), ( :- true )) :- !, % evidenceterm_expansion623,15785 -clpbn_key(Var,Key) :-clpbn_key627,15902 -clpbn_key(Var,Key) :-clpbn_key627,15902 -clpbn_key(Var,Key) :-clpbn_key627,15902 -clpbn_init_graph(pcg) :- !,clpbn_init_graph634,16012 -clpbn_init_graph(pcg) :- !,clpbn_init_graph634,16012 -clpbn_init_graph(pcg) :- !,clpbn_init_graph634,16012 -clpbn_init_graph(_).clpbn_init_graph636,16057 -clpbn_init_graph(_).clpbn_init_graph636,16057 -clpbn_init_solver(LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver647,16484 -clpbn_init_solver(LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver647,16484 -clpbn_init_solver(LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver647,16484 -clpbn_init_solver(ve, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver651,16627 -clpbn_init_solver(ve, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver651,16627 -clpbn_init_solver(ve, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver651,16627 -clpbn_init_solver(jt, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver654,16746 -clpbn_init_solver(jt, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver654,16746 -clpbn_init_solver(jt, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver654,16746 -clpbn_init_solver(bdd, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver657,16865 -clpbn_init_solver(bdd, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver657,16865 -clpbn_init_solver(bdd, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver657,16865 -clpbn_init_solver(gibbs, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver660,16986 -clpbn_init_solver(gibbs, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver660,16986 -clpbn_init_solver(gibbs, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver660,16986 -clpbn_init_solver(pcg, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver663,17111 -clpbn_init_solver(pcg, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver663,17111 -clpbn_init_solver(pcg, LVs, Vs0, VarsWithUnboundKeys, State) :-clpbn_init_solver663,17111 -clpbn_run_solver(LVs, LPs, State) :-clpbn_run_solver671,17349 -clpbn_run_solver(LVs, LPs, State) :-clpbn_run_solver671,17349 -clpbn_run_solver(LVs, LPs, State) :-clpbn_run_solver671,17349 -clpbn_run_solver(ve, LVs, LPs, State) :-clpbn_run_solver675,17448 -clpbn_run_solver(ve, LVs, LPs, State) :-clpbn_run_solver675,17448 -clpbn_run_solver(ve, LVs, LPs, State) :-clpbn_run_solver675,17448 -clpbn_run_solver(jt, LVs, LPs, State) :-clpbn_run_solver678,17523 -clpbn_run_solver(jt, LVs, LPs, State) :-clpbn_run_solver678,17523 -clpbn_run_solver(jt, LVs, LPs, State) :-clpbn_run_solver678,17523 -clpbn_run_solver(bdd, LVs, LPs, State) :-clpbn_run_solver681,17598 -clpbn_run_solver(bdd, LVs, LPs, State) :-clpbn_run_solver681,17598 -clpbn_run_solver(bdd, LVs, LPs, State) :-clpbn_run_solver681,17598 -clpbn_run_solver(gibbs, LVs, LPs, State) :-clpbn_run_solver684,17675 -clpbn_run_solver(gibbs, LVs, LPs, State) :-clpbn_run_solver684,17675 -clpbn_run_solver(gibbs, LVs, LPs, State) :-clpbn_run_solver684,17675 -clpbn_run_solver(pcg, LVs, LPs, State) :-clpbn_run_solver687,17756 -clpbn_run_solver(pcg, LVs, LPs, State) :-clpbn_run_solver687,17756 -clpbn_run_solver(pcg, LVs, LPs, State) :-clpbn_run_solver687,17756 -pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, State) :-pfl_init_solver693,17920 -pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, State) :-pfl_init_solver693,17920 -pfl_init_solver(QueryKeys, AllKeys, Factors, Evidence, State) :-pfl_init_solver693,17920 -pfl_init_solver(ve, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver707,18303 -pfl_init_solver(ve, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver707,18303 -pfl_init_solver(ve, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver707,18303 -pfl_init_solver(hve, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver710,18446 -pfl_init_solver(hve, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver710,18446 -pfl_init_solver(hve, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver710,18446 -pfl_init_solver(bdd, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver714,18642 -pfl_init_solver(bdd, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver714,18642 -pfl_init_solver(bdd, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver714,18642 -pfl_init_solver(bp, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver717,18787 -pfl_init_solver(bp, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver717,18787 -pfl_init_solver(bp, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver717,18787 -pfl_init_solver(cbp, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver721,18981 -pfl_init_solver(cbp, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver721,18981 -pfl_init_solver(cbp, QueryKeys, AllKeys, Factors, Evidence, State) :- !,pfl_init_solver721,18981 -pfl_init_solver(Solver, _, _, _, _, _) :-pfl_init_solver725,19177 -pfl_init_solver(Solver, _, _, _, _, _) :-pfl_init_solver725,19177 -pfl_init_solver(Solver, _, _, _, _, _) :-pfl_init_solver725,19177 -pfl_run_solver(LVs, LPs, State) :-pfl_run_solver730,19297 -pfl_run_solver(LVs, LPs, State) :-pfl_run_solver730,19297 -pfl_run_solver(LVs, LPs, State) :-pfl_run_solver730,19297 -pfl_run_solver(ve, LVs, LPs, State) :- !,pfl_run_solver734,19395 -pfl_run_solver(ve, LVs, LPs, State) :- !,pfl_run_solver734,19395 -pfl_run_solver(ve, LVs, LPs, State) :- !,pfl_run_solver734,19395 -pfl_run_solver(hve, LVs, LPs, State) :- !,pfl_run_solver737,19478 -pfl_run_solver(hve, LVs, LPs, State) :- !,pfl_run_solver737,19478 -pfl_run_solver(hve, LVs, LPs, State) :- !,pfl_run_solver737,19478 -pfl_run_solver(bdd, LVs, LPs, State) :- !,pfl_run_solver740,19565 -pfl_run_solver(bdd, LVs, LPs, State) :- !,pfl_run_solver740,19565 -pfl_run_solver(bdd, LVs, LPs, State) :- !,pfl_run_solver740,19565 -pfl_run_solver(bp, LVs, LPs, State) :- !,pfl_run_solver743,19650 -pfl_run_solver(bp, LVs, LPs, State) :- !,pfl_run_solver743,19650 -pfl_run_solver(bp, LVs, LPs, State) :- !,pfl_run_solver743,19650 -pfl_run_solver(cbp, LVs, LPs, State) :- !,pfl_run_solver746,19736 -pfl_run_solver(cbp, LVs, LPs, State) :- !,pfl_run_solver746,19736 -pfl_run_solver(cbp, LVs, LPs, State) :- !,pfl_run_solver746,19736 -pfl_end_solver(State) :-pfl_end_solver749,19823 -pfl_end_solver(State) :-pfl_end_solver749,19823 -pfl_end_solver(State) :-pfl_end_solver749,19823 -pfl_end_solver(_State).pfl_end_solver752,19933 -pfl_end_solver(_State).pfl_end_solver752,19933 -add_keys(Key1+V1,_Key2,Key1+V1).add_keys755,19959 -add_keys(Key1+V1,_Key2,Key1+V1).add_keys755,19959 -probability(Goal, Prob) :-probability758,19994 -probability(Goal, Prob) :-probability758,19994 -probability(Goal, Prob) :-probability758,19994 -conditional_probability(Goal, ListOfGoals, Prob) :-conditional_probability761,20078 -conditional_probability(Goal, ListOfGoals, Prob) :-conditional_probability761,20078 -conditional_probability(Goal, ListOfGoals, Prob) :-conditional_probability761,20078 -conditional_probability(Goal, ListOfGoals, Prob) :-conditional_probability764,20226 -conditional_probability(Goal, ListOfGoals, Prob) :-conditional_probability764,20226 -conditional_probability(Goal, ListOfGoals, Prob) :-conditional_probability764,20226 -conditional_probability(Goal, ListOfGoals, Prob) :-conditional_probability767,20391 -conditional_probability(Goal, ListOfGoals, Prob) :-conditional_probability767,20391 -conditional_probability(Goal, ListOfGoals, Prob) :-conditional_probability767,20391 -do_probability(Goal, ListOfGoals, Prob) :-do_probability770,20509 -do_probability(Goal, ListOfGoals, Prob) :-do_probability770,20509 -do_probability(Goal, ListOfGoals, Prob) :-do_probability770,20509 -run(ListOfGoals,Goal) :-run775,20685 -run(ListOfGoals,Goal) :-run775,20685 -run(ListOfGoals,Goal) :-run775,20685 -do(M:ListOfGoals) :-do779,20742 -do(M:ListOfGoals) :-do779,20742 -do(M:ListOfGoals) :-do779,20742 -do([]).do781,20784 -do([]).do781,20784 -do([], _M).do783,20793 -do([], _M).do783,20793 -do(G.ListOfGoals, M) :-do784,20805 -do(G.ListOfGoals, M) :-do784,20805 -do(G.ListOfGoals, M) :-do784,20805 -evidence_to_var(M:Goal, C, M:VItem, V) :- !,evidence_to_var788,20857 -evidence_to_var(M:Goal, C, M:VItem, V) :- !,evidence_to_var788,20857 -evidence_to_var(M:Goal, C, M:VItem, V) :- !,evidence_to_var788,20857 -evidence_to_var(Goal, C, VItem, V) :-evidence_to_var790,20939 -evidence_to_var(Goal, C, VItem, V) :-evidence_to_var790,20939 -evidence_to_var(Goal, C, VItem, V) :-evidence_to_var790,20939 -variabilise_last([Arg], Arg, [V], V).variabilise_last795,21058 -variabilise_last([Arg], Arg, [V], V).variabilise_last795,21058 -variabilise_last([Arg1,Arg2|Args], Arg, Arg1.NArgs, V) :-variabilise_last796,21096 -variabilise_last([Arg1,Arg2|Args], Arg, Arg1.NArgs, V) :-variabilise_last796,21096 -variabilise_last([Arg1,Arg2|Args], Arg, Arg1.NArgs, V) :-variabilise_last796,21096 -match_probability(VPs, Goal, C, V, Prob) :-match_probability799,21200 -match_probability(VPs, Goal, C, V, Prob) :-match_probability799,21200 -match_probability(VPs, Goal, C, V, Prob) :-match_probability799,21200 -match_probabilities([p(V0=C)=Prob|_], _, C, V, Prob) :-match_probabilities802,21290 -match_probabilities([p(V0=C)=Prob|_], _, C, V, Prob) :-match_probabilities802,21290 -match_probabilities([p(V0=C)=Prob|_], _, C, V, Prob) :-match_probabilities802,21290 -match_probabilities([_|Probs], G, C, V, Prob) :-match_probabilities805,21360 -match_probabilities([_|Probs], G, C, V, Prob) :-match_probabilities805,21360 -match_probabilities([_|Probs], G, C, V, Prob) :-match_probabilities805,21360 -goal_to_key(_:Goal, Skolem) :-goal_to_key808,21454 -goal_to_key(_:Goal, Skolem) :-goal_to_key808,21454 -goal_to_key(_:Goal, Skolem) :-goal_to_key808,21454 -goal_to_key(Goal, Skolem) :-goal_to_key810,21513 -goal_to_key(Goal, Skolem) :-goal_to_key810,21513 -goal_to_key(Goal, Skolem) :-goal_to_key810,21513 - -packages/CLPBN/examples/HMMer/fasta.yap,987 -fa2atoms(F, L) :-fa2atoms13,179 -fa2atoms(F, L) :-fa2atoms13,179 -fa2atoms(F, L) :-fa2atoms13,179 -fa2atoms(F,L,L0) :-fa2atoms16,219 -fa2atoms(F,L,L0) :-fa2atoms16,219 -fa2atoms(F,L,L0) :-fa2atoms16,219 -read_chars(-1,_) --> [].read_chars24,339 -read_chars(-1,_) --> [].read_chars24,339 -read_chars(-1,_) --> [].read_chars24,339 -read_chars(10,S) --> !,read_chars25,364 -read_chars(10,S) --> !,read_chars25,364 -read_chars(10,S) --> !,read_chars25,364 -read_chars(C,S) -->read_chars28,424 -read_chars(C,S) -->read_chars28,424 -read_chars(C,S) -->read_chars28,424 -cvt_c(C,A) :-cvt_c36,509 -cvt_c(C,A) :-cvt_c36,509 -cvt_c(C,A) :-cvt_c36,509 -cvt_c(C,A) :-cvt_c40,588 -cvt_c(C,A) :-cvt_c40,588 -cvt_c(C,A) :-cvt_c40,588 -skip_header(10,_) :- !.skip_header44,644 -skip_header(10,_) :- !.skip_header44,644 -skip_header(10,_) :- !.skip_header44,644 -skip_header(_,S) :-skip_header45,668 -skip_header(_,S) :-skip_header45,668 -skip_header(_,S) :-skip_header45,668 - -packages/CLPBN/examples/HMMer/globin.yap,179130 -slices(162).slices7,72 -slices(162).slices7,72 -n_n_cpt(-4,1.0,0.997231251352069).n_n_cpt10,105 -n_n_cpt(-4,1.0,0.997231251352069).n_n_cpt10,105 -j_b_cpt(-8455,1.0,0.00284964910984409).j_b_cpt13,160 -j_b_cpt(-8455,1.0,0.00284964910984409).j_b_cpt13,160 -n_b_cpt(-8455,1.0,0.00284964910984409).n_b_cpt14,200 -n_b_cpt(-8455,1.0,0.00284964910984409).n_b_cpt14,200 -e_j_cpt(-1000,1.0,0.5).e_j_cpt17,260 -e_j_cpt(-1000,1.0,0.5).e_j_cpt17,260 -j_j_cpt(-4,1.0,0.997231251352069).j_j_cpt18,284 -j_j_cpt(-4,1.0,0.997231251352069).j_j_cpt18,284 -e_c_cpt(-1000,1.0,0.5).e_c_cpt21,339 -e_c_cpt(-1000,1.0,0.5).e_c_cpt21,339 -c_c_cpt(-4,1.0,0.997231251352069).c_c_cpt22,363 -c_c_cpt(-4,1.0,0.997231251352069).c_c_cpt22,363 -c_t_cpt(-8455,1.0,0.00284964910984409).c_t_cpt25,418 -c_t_cpt(-8455,1.0,0.00284964910984409).c_t_cpt25,418 -g_g_cpt(-4,1.0,0.997231251352069).g_g_cpt28,491 -g_g_cpt(-4,1.0,0.997231251352069).g_g_cpt28,491 -g_f_cpt(-8455,1.0,0.00284964910984409).g_f_cpt31,559 -g_f_cpt(-8455,1.0,0.00284964910984409).g_f_cpt31,559 -b_d_cpt(-110,-3765,-110).b_d_cpt40,1150 -b_d_cpt(-110,-3765,-110).b_d_cpt40,1150 -consensus(1,18).consensus43,1187 -consensus(1,18).consensus43,1187 -m_m_cpt(1,-1909,1.0,0.266277050848354).m_m_cpt52,3313 -m_m_cpt(1,-1909,1.0,0.266277050848354).m_m_cpt52,3313 -m_i_cpt(1,-8804,1.0,0.00223733964449171).m_i_cpt53,3353 -m_i_cpt(1,-8804,1.0,0.00223733964449171).m_i_cpt53,3353 -m_d_cpt(1,-451,1.0,0.731535610352163).m_d_cpt54,3395 -m_d_cpt(1,-451,1.0,0.731535610352163).m_d_cpt54,3395 -i_i_cpt(1,-1115,1.0,0.461691155364697).i_i_cpt55,3434 -i_i_cpt(1,-1115,1.0,0.461691155364697).i_i_cpt55,3434 -i_m_cpt(1,-894,1.0,0.538120062391899).i_m_cpt56,3474 -i_m_cpt(1,-894,1.0,0.538120062391899).i_m_cpt56,3474 -d_m_cpt(1,-701,1.0,0.615145672375572).d_m_cpt57,3513 -d_m_cpt(1,-701,1.0,0.615145672375572).d_m_cpt57,3513 -d_d_cpt(1,-1378,1.0,0.384751805040216).d_d_cpt58,3552 -d_d_cpt(1,-1378,1.0,0.384751805040216).d_d_cpt58,3552 -b_m_cpt(1,-110,1.0,0.926588061890371).b_m_cpt59,3592 -b_m_cpt(1,-110,1.0,0.926588061890371).b_m_cpt59,3592 -m_e_cpt(1,*,1.0,0.0).m_e_cpt60,3631 -m_e_cpt(1,*,1.0,0.0).m_e_cpt60,3631 -consensus(2,8).consensus63,3664 -consensus(2,8).consensus63,3664 -m_m_cpt(2,-18,1.0,0.987600861445373).m_m_cpt72,5792 -m_m_cpt(2,-18,1.0,0.987600861445373).m_m_cpt72,5792 -m_i_cpt(2,-6914,1.0,0.00829236881992027).m_i_cpt73,5830 -m_i_cpt(2,-6914,1.0,0.00829236881992027).m_i_cpt73,5830 -m_d_cpt(2,-7956,1.0,0.00402721999529214).m_d_cpt74,5872 -m_d_cpt(2,-7956,1.0,0.00402721999529214).m_d_cpt74,5872 -i_i_cpt(2,-1115,1.0,0.461691155364697).i_i_cpt75,5914 -i_i_cpt(2,-1115,1.0,0.461691155364697).i_i_cpt75,5914 -i_m_cpt(2,-894,1.0,0.538120062391899).i_m_cpt76,5954 -i_m_cpt(2,-894,1.0,0.538120062391899).i_m_cpt76,5954 -d_m_cpt(2,-3550,1.0,0.0853775160471497).d_m_cpt77,5993 -d_m_cpt(2,-3550,1.0,0.0853775160471497).d_m_cpt77,5993 -d_d_cpt(2,-129,1.0,0.914465089499901).d_d_cpt78,6034 -d_d_cpt(2,-129,1.0,0.914465089499901).d_d_cpt78,6034 -b_m_cpt(2,*,1.0,0.0).b_m_cpt79,6073 -b_m_cpt(2,*,1.0,0.0).b_m_cpt79,6073 -m_e_cpt(2,*,1.0,0.0).m_e_cpt80,6095 -m_e_cpt(2,*,1.0,0.0).m_e_cpt80,6095 -consensus(3,10).consensus83,6128 -consensus(3,10).consensus83,6128 -m_m_cpt(3,-18,1.0,0.987600861445373).m_m_cpt92,8250 -m_m_cpt(3,-18,1.0,0.987600861445373).m_m_cpt92,8250 -m_i_cpt(3,-6914,1.0,0.00829236881992027).m_i_cpt93,8288 -m_i_cpt(3,-6914,1.0,0.00829236881992027).m_i_cpt93,8288 -m_d_cpt(3,-7956,1.0,0.00402721999529214).m_d_cpt94,8330 -m_d_cpt(3,-7956,1.0,0.00402721999529214).m_d_cpt94,8330 -i_i_cpt(3,-1115,1.0,0.461691155364697).i_i_cpt95,8372 -i_i_cpt(3,-1115,1.0,0.461691155364697).i_i_cpt95,8372 -i_m_cpt(3,-894,1.0,0.538120062391899).i_m_cpt96,8412 -i_m_cpt(3,-894,1.0,0.538120062391899).i_m_cpt96,8412 -d_m_cpt(3,-3550,1.0,0.0853775160471497).d_m_cpt97,8451 -d_m_cpt(3,-3550,1.0,0.0853775160471497).d_m_cpt97,8451 -d_d_cpt(3,-129,1.0,0.914465089499901).d_d_cpt98,8492 -d_d_cpt(3,-129,1.0,0.914465089499901).d_d_cpt98,8492 -b_m_cpt(3,*,1.0,0.0).b_m_cpt99,8531 -b_m_cpt(3,*,1.0,0.0).b_m_cpt99,8531 -m_e_cpt(3,*,1.0,0.0).m_e_cpt100,8553 -m_e_cpt(3,*,1.0,0.0).m_e_cpt100,8553 -consensus(4,4).consensus103,8586 -consensus(4,4).consensus103,8586 -m_m_cpt(4,-361,1.0,0.778624691061662).m_m_cpt112,10712 -m_m_cpt(4,-361,1.0,0.778624691061662).m_m_cpt112,10712 -m_i_cpt(4,-6914,1.0,0.00829236881992027).m_i_cpt113,10751 -m_i_cpt(4,-6914,1.0,0.00829236881992027).m_i_cpt113,10751 -m_d_cpt(4,-2229,1.0,0.213306524528017).m_d_cpt114,10793 -m_d_cpt(4,-2229,1.0,0.213306524528017).m_d_cpt114,10793 -i_i_cpt(4,-1115,1.0,0.461691155364697).i_i_cpt115,10833 -i_i_cpt(4,-1115,1.0,0.461691155364697).i_i_cpt115,10833 -i_m_cpt(4,-894,1.0,0.538120062391899).i_m_cpt116,10873 -i_m_cpt(4,-894,1.0,0.538120062391899).i_m_cpt116,10873 -d_m_cpt(4,-3550,1.0,0.0853775160471497).d_m_cpt117,10912 -d_m_cpt(4,-3550,1.0,0.0853775160471497).d_m_cpt117,10912 -d_d_cpt(4,-129,1.0,0.914465089499901).d_d_cpt118,10953 -d_d_cpt(4,-129,1.0,0.914465089499901).d_d_cpt118,10953 -b_m_cpt(4,*,1.0,0.0).b_m_cpt119,10992 -b_m_cpt(4,*,1.0,0.0).b_m_cpt119,10992 -m_e_cpt(4,*,1.0,0.0).m_e_cpt120,11014 -m_e_cpt(4,*,1.0,0.0).m_e_cpt120,11014 -consensus(5,1).consensus123,11047 -consensus(5,1).consensus123,11047 -m_m_cpt(5,-23,1.0,0.9841840220338).m_m_cpt132,13169 -m_m_cpt(5,-23,1.0,0.9841840220338).m_m_cpt132,13169 -m_i_cpt(5,-6575,1.0,0.0104888476779708).m_i_cpt133,13205 -m_i_cpt(5,-6575,1.0,0.0104888476779708).m_i_cpt133,13205 -m_d_cpt(5,-7617,1.0,0.00509394818460375).m_d_cpt134,13246 -m_d_cpt(5,-7617,1.0,0.00509394818460375).m_d_cpt134,13246 -i_i_cpt(5,-1115,1.0,0.461691155364697).i_i_cpt135,13288 -i_i_cpt(5,-1115,1.0,0.461691155364697).i_i_cpt135,13288 -i_m_cpt(5,-894,1.0,0.538120062391899).i_m_cpt136,13328 -i_m_cpt(5,-894,1.0,0.538120062391899).i_m_cpt136,13328 -d_m_cpt(5,-3643,1.0,0.0800474913331107).d_m_cpt137,13367 -d_m_cpt(5,-3643,1.0,0.0800474913331107).d_m_cpt137,13367 -d_d_cpt(5,-120,1.0,0.920187650624875).d_d_cpt138,13408 -d_d_cpt(5,-120,1.0,0.920187650624875).d_d_cpt138,13408 -b_m_cpt(5,*,1.0,0.0).b_m_cpt139,13447 -b_m_cpt(5,*,1.0,0.0).b_m_cpt139,13447 -m_e_cpt(5,*,1.0,0.0).m_e_cpt140,13469 -m_e_cpt(5,*,1.0,0.0).m_e_cpt140,13469 -consensus(6,10).consensus143,13502 -consensus(6,10).consensus143,13502 -m_m_cpt(6,-23,1.0,0.9841840220338).m_m_cpt152,15630 -m_m_cpt(6,-23,1.0,0.9841840220338).m_m_cpt152,15630 -m_i_cpt(6,-6575,1.0,0.0104888476779708).m_i_cpt153,15666 -m_i_cpt(6,-6575,1.0,0.0104888476779708).m_i_cpt153,15666 -m_d_cpt(6,-7617,1.0,0.00509394818460375).m_d_cpt154,15707 -m_d_cpt(6,-7617,1.0,0.00509394818460375).m_d_cpt154,15707 -i_i_cpt(6,-1115,1.0,0.461691155364697).i_i_cpt155,15749 -i_i_cpt(6,-1115,1.0,0.461691155364697).i_i_cpt155,15749 -i_m_cpt(6,-894,1.0,0.538120062391899).i_m_cpt156,15789 -i_m_cpt(6,-894,1.0,0.538120062391899).i_m_cpt156,15789 -d_m_cpt(6,-2811,1.0,0.142496659086683).d_m_cpt157,15828 -d_m_cpt(6,-2811,1.0,0.142496659086683).d_m_cpt157,15828 -d_d_cpt(6,-222,1.0,0.857376036634172).d_d_cpt158,15868 -d_d_cpt(6,-222,1.0,0.857376036634172).d_d_cpt158,15868 -b_m_cpt(6,*,1.0,0.0).b_m_cpt159,15907 -b_m_cpt(6,*,1.0,0.0).b_m_cpt159,15907 -m_e_cpt(6,*,1.0,0.0).m_e_cpt160,15929 -m_e_cpt(6,*,1.0,0.0).m_e_cpt160,15929 -consensus(7,18).consensus163,15962 -consensus(7,18).consensus163,15962 -m_m_cpt(7,-18,1.0,0.987600861445373).m_m_cpt172,18088 -m_m_cpt(7,-18,1.0,0.987600861445373).m_m_cpt172,18088 -m_i_cpt(7,-6914,1.0,0.00829236881992027).m_i_cpt173,18126 -m_i_cpt(7,-6914,1.0,0.00829236881992027).m_i_cpt173,18126 -m_d_cpt(7,-7956,1.0,0.00402721999529214).m_d_cpt174,18168 -m_d_cpt(7,-7956,1.0,0.00402721999529214).m_d_cpt174,18168 -i_i_cpt(7,-1115,1.0,0.461691155364697).i_i_cpt175,18210 -i_i_cpt(7,-1115,1.0,0.461691155364697).i_i_cpt175,18210 -i_m_cpt(7,-894,1.0,0.538120062391899).i_m_cpt176,18250 -i_m_cpt(7,-894,1.0,0.538120062391899).i_m_cpt176,18250 -d_m_cpt(7,-3550,1.0,0.0853775160471497).d_m_cpt177,18289 -d_m_cpt(7,-3550,1.0,0.0853775160471497).d_m_cpt177,18289 -d_d_cpt(7,-129,1.0,0.914465089499901).d_d_cpt178,18330 -d_d_cpt(7,-129,1.0,0.914465089499901).d_d_cpt178,18330 -b_m_cpt(7,*,1.0,0.0).b_m_cpt179,18369 -b_m_cpt(7,*,1.0,0.0).b_m_cpt179,18369 -m_e_cpt(7,*,1.0,0.0).m_e_cpt180,18391 -m_e_cpt(7,*,1.0,0.0).m_e_cpt180,18391 -consensus(8,12).consensus183,18424 -consensus(8,12).consensus183,18424 -m_m_cpt(8,-18,1.0,0.987600861445373).m_m_cpt192,20552 -m_m_cpt(8,-18,1.0,0.987600861445373).m_m_cpt192,20552 -m_i_cpt(8,-6914,1.0,0.00829236881992027).m_i_cpt193,20590 -m_i_cpt(8,-6914,1.0,0.00829236881992027).m_i_cpt193,20590 -m_d_cpt(8,-7956,1.0,0.00402721999529214).m_d_cpt194,20632 -m_d_cpt(8,-7956,1.0,0.00402721999529214).m_d_cpt194,20632 -i_i_cpt(8,-1115,1.0,0.461691155364697).i_i_cpt195,20674 -i_i_cpt(8,-1115,1.0,0.461691155364697).i_i_cpt195,20674 -i_m_cpt(8,-894,1.0,0.538120062391899).i_m_cpt196,20714 -i_m_cpt(8,-894,1.0,0.538120062391899).i_m_cpt196,20714 -d_m_cpt(8,-3550,1.0,0.0853775160471497).d_m_cpt197,20753 -d_m_cpt(8,-3550,1.0,0.0853775160471497).d_m_cpt197,20753 -d_d_cpt(8,-129,1.0,0.914465089499901).d_d_cpt198,20794 -d_d_cpt(8,-129,1.0,0.914465089499901).d_d_cpt198,20794 -b_m_cpt(8,*,1.0,0.0).b_m_cpt199,20833 -b_m_cpt(8,*,1.0,0.0).b_m_cpt199,20833 -m_e_cpt(8,*,1.0,0.0).m_e_cpt200,20855 -m_e_cpt(8,*,1.0,0.0).m_e_cpt200,20855 -consensus(9,16).consensus203,20888 -consensus(9,16).consensus203,20888 -m_m_cpt(9,-18,1.0,0.987600861445373).m_m_cpt212,23024 -m_m_cpt(9,-18,1.0,0.987600861445373).m_m_cpt212,23024 -m_i_cpt(9,-6914,1.0,0.00829236881992027).m_i_cpt213,23062 -m_i_cpt(9,-6914,1.0,0.00829236881992027).m_i_cpt213,23062 -m_d_cpt(9,-7956,1.0,0.00402721999529214).m_d_cpt214,23104 -m_d_cpt(9,-7956,1.0,0.00402721999529214).m_d_cpt214,23104 -i_i_cpt(9,-1115,1.0,0.461691155364697).i_i_cpt215,23146 -i_i_cpt(9,-1115,1.0,0.461691155364697).i_i_cpt215,23146 -i_m_cpt(9,-894,1.0,0.538120062391899).i_m_cpt216,23186 -i_m_cpt(9,-894,1.0,0.538120062391899).i_m_cpt216,23186 -d_m_cpt(9,-3550,1.0,0.0853775160471497).d_m_cpt217,23225 -d_m_cpt(9,-3550,1.0,0.0853775160471497).d_m_cpt217,23225 -d_d_cpt(9,-129,1.0,0.914465089499901).d_d_cpt218,23266 -d_d_cpt(9,-129,1.0,0.914465089499901).d_d_cpt218,23266 -b_m_cpt(9,*,1.0,0.0).b_m_cpt219,23305 -b_m_cpt(9,*,1.0,0.0).b_m_cpt219,23305 -m_e_cpt(9,*,1.0,0.0).m_e_cpt220,23327 -m_e_cpt(9,*,1.0,0.0).m_e_cpt220,23327 -consensus(10,16).consensus223,23361 -consensus(10,16).consensus223,23361 -m_m_cpt(10,-18,1.0,0.987600861445373).m_m_cpt232,25490 -m_m_cpt(10,-18,1.0,0.987600861445373).m_m_cpt232,25490 -m_i_cpt(10,-6914,1.0,0.00829236881992027).m_i_cpt233,25529 -m_i_cpt(10,-6914,1.0,0.00829236881992027).m_i_cpt233,25529 -m_d_cpt(10,-7956,1.0,0.00402721999529214).m_d_cpt234,25572 -m_d_cpt(10,-7956,1.0,0.00402721999529214).m_d_cpt234,25572 -i_i_cpt(10,-1115,1.0,0.461691155364697).i_i_cpt235,25615 -i_i_cpt(10,-1115,1.0,0.461691155364697).i_i_cpt235,25615 -i_m_cpt(10,-894,1.0,0.538120062391899).i_m_cpt236,25656 -i_m_cpt(10,-894,1.0,0.538120062391899).i_m_cpt236,25656 -d_m_cpt(10,-3550,1.0,0.0853775160471497).d_m_cpt237,25696 -d_m_cpt(10,-3550,1.0,0.0853775160471497).d_m_cpt237,25696 -d_d_cpt(10,-129,1.0,0.914465089499901).d_d_cpt238,25738 -d_d_cpt(10,-129,1.0,0.914465089499901).d_d_cpt238,25738 -b_m_cpt(10,*,1.0,0.0).b_m_cpt239,25778 -b_m_cpt(10,*,1.0,0.0).b_m_cpt239,25778 -m_e_cpt(10,*,1.0,0.0).m_e_cpt240,25801 -m_e_cpt(10,*,1.0,0.0).m_e_cpt240,25801 -consensus(11,16).consensus243,25836 -consensus(11,16).consensus243,25836 -m_m_cpt(11,-18,1.0,0.987600861445373).m_m_cpt252,27980 -m_m_cpt(11,-18,1.0,0.987600861445373).m_m_cpt252,27980 -m_i_cpt(11,-6914,1.0,0.00829236881992027).m_i_cpt253,28019 -m_i_cpt(11,-6914,1.0,0.00829236881992027).m_i_cpt253,28019 -m_d_cpt(11,-7956,1.0,0.00402721999529214).m_d_cpt254,28062 -m_d_cpt(11,-7956,1.0,0.00402721999529214).m_d_cpt254,28062 -i_i_cpt(11,-1115,1.0,0.461691155364697).i_i_cpt255,28105 -i_i_cpt(11,-1115,1.0,0.461691155364697).i_i_cpt255,28105 -i_m_cpt(11,-894,1.0,0.538120062391899).i_m_cpt256,28146 -i_m_cpt(11,-894,1.0,0.538120062391899).i_m_cpt256,28146 -d_m_cpt(11,-1091,1.0,0.469435873657726).d_m_cpt257,28186 -d_m_cpt(11,-1091,1.0,0.469435873657726).d_m_cpt257,28186 -d_d_cpt(11,-914,1.0,0.530711604474897).d_d_cpt258,28227 -d_d_cpt(11,-914,1.0,0.530711604474897).d_d_cpt258,28227 -b_m_cpt(11,*,1.0,0.0).b_m_cpt259,28267 -b_m_cpt(11,*,1.0,0.0).b_m_cpt259,28267 -m_e_cpt(11,*,1.0,0.0).m_e_cpt260,28290 -m_e_cpt(11,*,1.0,0.0).m_e_cpt260,28290 -consensus(12,7).consensus263,28325 -consensus(12,7).consensus263,28325 -m_m_cpt(12,-103,1.0,0.931094819830229).m_m_cpt272,30452 -m_m_cpt(12,-103,1.0,0.931094819830229).m_m_cpt272,30452 -m_i_cpt(12,-8202,1.0,0.00339587718785165).m_i_cpt273,30492 -m_i_cpt(12,-8202,1.0,0.00339587718785165).m_i_cpt273,30492 -m_d_cpt(12,-3938,1.0,0.0652444954638574).m_d_cpt274,30535 -m_d_cpt(12,-3938,1.0,0.0652444954638574).m_d_cpt274,30535 -i_i_cpt(12,-1115,1.0,0.461691155364697).i_i_cpt275,30577 -i_i_cpt(12,-1115,1.0,0.461691155364697).i_i_cpt275,30577 -i_m_cpt(12,-894,1.0,0.538120062391899).i_m_cpt276,30618 -i_m_cpt(12,-894,1.0,0.538120062391899).i_m_cpt276,30618 -d_m_cpt(12,-131,1.0,0.913198250011992).d_m_cpt277,30658 -d_m_cpt(12,-131,1.0,0.913198250011992).d_m_cpt277,30658 -d_d_cpt(12,-3528,1.0,0.0866894355707116).d_d_cpt278,30698 -d_d_cpt(12,-3528,1.0,0.0866894355707116).d_d_cpt278,30698 -b_m_cpt(12,*,1.0,0.0).b_m_cpt279,30740 -b_m_cpt(12,*,1.0,0.0).b_m_cpt279,30740 -m_e_cpt(12,*,1.0,0.0).m_e_cpt280,30763 -m_e_cpt(12,*,1.0,0.0).m_e_cpt280,30763 -consensus(13,10).consensus283,30798 -consensus(13,10).consensus283,30798 -m_m_cpt(13,-5,1.0,0.996540262827868).m_m_cpt292,32948 -m_m_cpt(13,-5,1.0,0.996540262827868).m_m_cpt292,32948 -m_i_cpt(13,-8835,1.0,0.00218977749614943).m_i_cpt293,32986 -m_i_cpt(13,-8835,1.0,0.00218977749614943).m_i_cpt293,32986 -m_d_cpt(13,-9877,1.0,0.00106347364778917).m_d_cpt294,33029 -m_d_cpt(13,-9877,1.0,0.00106347364778917).m_d_cpt294,33029 -i_i_cpt(13,-1115,1.0,0.461691155364697).i_i_cpt295,33072 -i_i_cpt(13,-1115,1.0,0.461691155364697).i_i_cpt295,33072 -i_m_cpt(13,-894,1.0,0.538120062391899).i_m_cpt296,33113 -i_m_cpt(13,-894,1.0,0.538120062391899).i_m_cpt296,33113 -d_m_cpt(13,-482,1.0,0.715984370600572).d_m_cpt297,33153 -d_m_cpt(13,-482,1.0,0.715984370600572).d_m_cpt297,33153 -d_d_cpt(13,-1817,1.0,0.283810525536516).d_d_cpt298,33193 -d_d_cpt(13,-1817,1.0,0.283810525536516).d_d_cpt298,33193 -b_m_cpt(13,*,1.0,0.0).b_m_cpt299,33234 -b_m_cpt(13,*,1.0,0.0).b_m_cpt299,33234 -m_e_cpt(13,*,1.0,0.0).m_e_cpt300,33257 -m_e_cpt(13,*,1.0,0.0).m_e_cpt300,33257 -consensus(14,16).consensus303,33292 -consensus(14,16).consensus303,33292 -m_m_cpt(14,-5,1.0,0.996540262827868).m_m_cpt312,35440 -m_m_cpt(14,-5,1.0,0.996540262827868).m_m_cpt312,35440 -m_i_cpt(14,-8893,1.0,0.00210348901600205).m_i_cpt313,35478 -m_i_cpt(14,-8893,1.0,0.00210348901600205).m_i_cpt313,35478 -m_d_cpt(14,-9935,1.0,0.00102156732401614).m_d_cpt314,35521 -m_d_cpt(14,-9935,1.0,0.00102156732401614).m_d_cpt314,35521 -i_i_cpt(14,-1115,1.0,0.461691155364697).i_i_cpt315,35564 -i_i_cpt(14,-1115,1.0,0.461691155364697).i_i_cpt315,35564 -i_m_cpt(14,-894,1.0,0.538120062391899).i_m_cpt316,35605 -i_m_cpt(14,-894,1.0,0.538120062391899).i_m_cpt316,35605 -d_m_cpt(14,-701,1.0,0.615145672375572).d_m_cpt317,35645 -d_m_cpt(14,-701,1.0,0.615145672375572).d_m_cpt317,35645 -d_d_cpt(14,-1378,1.0,0.384751805040216).d_d_cpt318,35685 -d_d_cpt(14,-1378,1.0,0.384751805040216).d_d_cpt318,35685 -b_m_cpt(14,*,1.0,0.0).b_m_cpt319,35726 -b_m_cpt(14,*,1.0,0.0).b_m_cpt319,35726 -m_e_cpt(14,*,1.0,0.0).m_e_cpt320,35749 -m_e_cpt(14,*,1.0,0.0).m_e_cpt320,35749 -consensus(15,1).consensus323,35784 -consensus(15,1).consensus323,35784 -m_m_cpt(15,-5,1.0,0.996540262827868).m_m_cpt332,37912 -m_m_cpt(15,-5,1.0,0.996540262827868).m_m_cpt332,37912 -m_i_cpt(15,-8893,1.0,0.00210348901600205).m_i_cpt333,37950 -m_i_cpt(15,-8893,1.0,0.00210348901600205).m_i_cpt333,37950 -m_d_cpt(15,-9935,1.0,0.00102156732401614).m_d_cpt334,37993 -m_d_cpt(15,-9935,1.0,0.00102156732401614).m_d_cpt334,37993 -i_i_cpt(15,-1115,1.0,0.461691155364697).i_i_cpt335,38036 -i_i_cpt(15,-1115,1.0,0.461691155364697).i_i_cpt335,38036 -i_m_cpt(15,-894,1.0,0.538120062391899).i_m_cpt336,38077 -i_m_cpt(15,-894,1.0,0.538120062391899).i_m_cpt336,38077 -d_m_cpt(15,-701,1.0,0.615145672375572).d_m_cpt337,38117 -d_m_cpt(15,-701,1.0,0.615145672375572).d_m_cpt337,38117 -d_d_cpt(15,-1378,1.0,0.384751805040216).d_d_cpt338,38157 -d_d_cpt(15,-1378,1.0,0.384751805040216).d_d_cpt338,38157 -b_m_cpt(15,*,1.0,0.0).b_m_cpt339,38198 -b_m_cpt(15,*,1.0,0.0).b_m_cpt339,38198 -m_e_cpt(15,*,1.0,0.0).m_e_cpt340,38221 -m_e_cpt(15,*,1.0,0.0).m_e_cpt340,38221 -consensus(16,4).consensus343,38256 -consensus(16,4).consensus343,38256 -m_m_cpt(16,-4,1.0,0.997231251352069).m_m_cpt352,40382 -m_m_cpt(16,-4,1.0,0.997231251352069).m_m_cpt352,40382 -m_i_cpt(16,-8959,1.0,0.00200942716385464).m_i_cpt353,40420 -m_i_cpt(16,-8959,1.0,0.00200942716385464).m_i_cpt353,40420 -m_d_cpt(16,-10001,1.0,0.000975885832998489).m_d_cpt354,40463 -m_d_cpt(16,-10001,1.0,0.000975885832998489).m_d_cpt354,40463 -i_i_cpt(16,-1115,1.0,0.461691155364697).i_i_cpt355,40508 -i_i_cpt(16,-1115,1.0,0.461691155364697).i_i_cpt355,40508 -i_m_cpt(16,-894,1.0,0.538120062391899).i_m_cpt356,40549 -i_m_cpt(16,-894,1.0,0.538120062391899).i_m_cpt356,40549 -d_m_cpt(16,-701,1.0,0.615145672375572).d_m_cpt357,40589 -d_m_cpt(16,-701,1.0,0.615145672375572).d_m_cpt357,40589 -d_d_cpt(16,-1378,1.0,0.384751805040216).d_d_cpt358,40629 -d_d_cpt(16,-1378,1.0,0.384751805040216).d_d_cpt358,40629 -b_m_cpt(16,*,1.0,0.0).b_m_cpt359,40670 -b_m_cpt(16,*,1.0,0.0).b_m_cpt359,40670 -m_e_cpt(16,*,1.0,0.0).m_e_cpt360,40693 -m_e_cpt(16,*,1.0,0.0).m_e_cpt360,40693 -consensus(17,4).consensus363,40728 -consensus(17,4).consensus363,40728 -m_m_cpt(17,-4,1.0,0.997231251352069).m_m_cpt372,42875 -m_m_cpt(17,-4,1.0,0.997231251352069).m_m_cpt372,42875 -m_i_cpt(17,-8959,1.0,0.00200942716385464).m_i_cpt373,42913 -m_i_cpt(17,-8959,1.0,0.00200942716385464).m_i_cpt373,42913 -m_d_cpt(17,-10001,1.0,0.000975885832998489).m_d_cpt374,42956 -m_d_cpt(17,-10001,1.0,0.000975885832998489).m_d_cpt374,42956 -i_i_cpt(17,-1115,1.0,0.461691155364697).i_i_cpt375,43001 -i_i_cpt(17,-1115,1.0,0.461691155364697).i_i_cpt375,43001 -i_m_cpt(17,-894,1.0,0.538120062391899).i_m_cpt376,43042 -i_m_cpt(17,-894,1.0,0.538120062391899).i_m_cpt376,43042 -d_m_cpt(17,-701,1.0,0.615145672375572).d_m_cpt377,43082 -d_m_cpt(17,-701,1.0,0.615145672375572).d_m_cpt377,43082 -d_d_cpt(17,-1378,1.0,0.384751805040216).d_d_cpt378,43122 -d_d_cpt(17,-1378,1.0,0.384751805040216).d_d_cpt378,43122 -b_m_cpt(17,*,1.0,0.0).b_m_cpt379,43163 -b_m_cpt(17,*,1.0,0.0).b_m_cpt379,43163 -m_e_cpt(17,*,1.0,0.0).m_e_cpt380,43186 -m_e_cpt(17,*,1.0,0.0).m_e_cpt380,43186 -consensus(18,9).consensus383,43221 -consensus(18,9).consensus383,43221 -m_m_cpt(18,-4,1.0,0.997231251352069).m_m_cpt392,45356 -m_m_cpt(18,-4,1.0,0.997231251352069).m_m_cpt392,45356 -m_i_cpt(18,-8959,1.0,0.00200942716385464).m_i_cpt393,45394 -m_i_cpt(18,-8959,1.0,0.00200942716385464).m_i_cpt393,45394 -m_d_cpt(18,-10001,1.0,0.000975885832998489).m_d_cpt394,45437 -m_d_cpt(18,-10001,1.0,0.000975885832998489).m_d_cpt394,45437 -i_i_cpt(18,-1115,1.0,0.461691155364697).i_i_cpt395,45482 -i_i_cpt(18,-1115,1.0,0.461691155364697).i_i_cpt395,45482 -i_m_cpt(18,-894,1.0,0.538120062391899).i_m_cpt396,45523 -i_m_cpt(18,-894,1.0,0.538120062391899).i_m_cpt396,45523 -d_m_cpt(18,-701,1.0,0.615145672375572).d_m_cpt397,45563 -d_m_cpt(18,-701,1.0,0.615145672375572).d_m_cpt397,45563 -d_d_cpt(18,-1378,1.0,0.384751805040216).d_d_cpt398,45603 -d_d_cpt(18,-1378,1.0,0.384751805040216).d_d_cpt398,45603 -b_m_cpt(18,*,1.0,0.0).b_m_cpt399,45644 -b_m_cpt(18,*,1.0,0.0).b_m_cpt399,45644 -m_e_cpt(18,*,1.0,0.0).m_e_cpt400,45667 -m_e_cpt(18,*,1.0,0.0).m_e_cpt400,45667 -consensus(19,1).consensus403,45702 -consensus(19,1).consensus403,45702 -m_m_cpt(19,-4,1.0,0.997231251352069).m_m_cpt412,47828 -m_m_cpt(19,-4,1.0,0.997231251352069).m_m_cpt412,47828 -m_i_cpt(19,-8959,1.0,0.00200942716385464).m_i_cpt413,47866 -m_i_cpt(19,-8959,1.0,0.00200942716385464).m_i_cpt413,47866 -m_d_cpt(19,-10001,1.0,0.000975885832998489).m_d_cpt414,47909 -m_d_cpt(19,-10001,1.0,0.000975885832998489).m_d_cpt414,47909 -i_i_cpt(19,-1115,1.0,0.461691155364697).i_i_cpt415,47954 -i_i_cpt(19,-1115,1.0,0.461691155364697).i_i_cpt415,47954 -i_m_cpt(19,-894,1.0,0.538120062391899).i_m_cpt416,47995 -i_m_cpt(19,-894,1.0,0.538120062391899).i_m_cpt416,47995 -d_m_cpt(19,-701,1.0,0.615145672375572).d_m_cpt417,48035 -d_m_cpt(19,-701,1.0,0.615145672375572).d_m_cpt417,48035 -d_d_cpt(19,-1378,1.0,0.384751805040216).d_d_cpt418,48075 -d_d_cpt(19,-1378,1.0,0.384751805040216).d_d_cpt418,48075 -b_m_cpt(19,*,1.0,0.0).b_m_cpt419,48116 -b_m_cpt(19,*,1.0,0.0).b_m_cpt419,48116 -m_e_cpt(19,*,1.0,0.0).m_e_cpt420,48139 -m_e_cpt(19,*,1.0,0.0).m_e_cpt420,48139 -consensus(20,10).consensus423,48174 -consensus(20,10).consensus423,48174 -m_m_cpt(20,-4,1.0,0.997231251352069).m_m_cpt432,50302 -m_m_cpt(20,-4,1.0,0.997231251352069).m_m_cpt432,50302 -m_i_cpt(20,-8959,1.0,0.00200942716385464).m_i_cpt433,50340 -m_i_cpt(20,-8959,1.0,0.00200942716385464).m_i_cpt433,50340 -m_d_cpt(20,-10001,1.0,0.000975885832998489).m_d_cpt434,50383 -m_d_cpt(20,-10001,1.0,0.000975885832998489).m_d_cpt434,50383 -i_i_cpt(20,-1115,1.0,0.461691155364697).i_i_cpt435,50428 -i_i_cpt(20,-1115,1.0,0.461691155364697).i_i_cpt435,50428 -i_m_cpt(20,-894,1.0,0.538120062391899).i_m_cpt436,50469 -i_m_cpt(20,-894,1.0,0.538120062391899).i_m_cpt436,50469 -d_m_cpt(20,-701,1.0,0.615145672375572).d_m_cpt437,50509 -d_m_cpt(20,-701,1.0,0.615145672375572).d_m_cpt437,50509 -d_d_cpt(20,-1378,1.0,0.384751805040216).d_d_cpt438,50549 -d_d_cpt(20,-1378,1.0,0.384751805040216).d_d_cpt438,50549 -b_m_cpt(20,*,1.0,0.0).b_m_cpt439,50590 -b_m_cpt(20,*,1.0,0.0).b_m_cpt439,50590 -m_e_cpt(20,*,1.0,0.0).m_e_cpt440,50613 -m_e_cpt(20,*,1.0,0.0).m_e_cpt440,50613 -consensus(21,18).consensus443,50648 -consensus(21,18).consensus443,50648 -m_m_cpt(21,-4,1.0,0.997231251352069).m_m_cpt452,52791 -m_m_cpt(21,-4,1.0,0.997231251352069).m_m_cpt452,52791 -m_i_cpt(21,-8959,1.0,0.00200942716385464).m_i_cpt453,52829 -m_i_cpt(21,-8959,1.0,0.00200942716385464).m_i_cpt453,52829 -m_d_cpt(21,-10001,1.0,0.000975885832998489).m_d_cpt454,52872 -m_d_cpt(21,-10001,1.0,0.000975885832998489).m_d_cpt454,52872 -i_i_cpt(21,-1115,1.0,0.461691155364697).i_i_cpt455,52917 -i_i_cpt(21,-1115,1.0,0.461691155364697).i_i_cpt455,52917 -i_m_cpt(21,-894,1.0,0.538120062391899).i_m_cpt456,52958 -i_m_cpt(21,-894,1.0,0.538120062391899).i_m_cpt456,52958 -d_m_cpt(21,-701,1.0,0.615145672375572).d_m_cpt457,52998 -d_m_cpt(21,-701,1.0,0.615145672375572).d_m_cpt457,52998 -d_d_cpt(21,-1378,1.0,0.384751805040216).d_d_cpt458,53038 -d_d_cpt(21,-1378,1.0,0.384751805040216).d_d_cpt458,53038 -b_m_cpt(21,*,1.0,0.0).b_m_cpt459,53079 -b_m_cpt(21,*,1.0,0.0).b_m_cpt459,53079 -m_e_cpt(21,*,1.0,0.0).m_e_cpt460,53102 -m_e_cpt(21,*,1.0,0.0).m_e_cpt460,53102 -consensus(22,9).consensus463,53137 -consensus(22,9).consensus463,53137 -m_m_cpt(22,-4,1.0,0.997231251352069).m_m_cpt472,55253 -m_m_cpt(22,-4,1.0,0.997231251352069).m_m_cpt472,55253 -m_i_cpt(22,-8959,1.0,0.00200942716385464).m_i_cpt473,55291 -m_i_cpt(22,-8959,1.0,0.00200942716385464).m_i_cpt473,55291 -m_d_cpt(22,-10001,1.0,0.000975885832998489).m_d_cpt474,55334 -m_d_cpt(22,-10001,1.0,0.000975885832998489).m_d_cpt474,55334 -i_i_cpt(22,-1115,1.0,0.461691155364697).i_i_cpt475,55379 -i_i_cpt(22,-1115,1.0,0.461691155364697).i_i_cpt475,55379 -i_m_cpt(22,-894,1.0,0.538120062391899).i_m_cpt476,55420 -i_m_cpt(22,-894,1.0,0.538120062391899).i_m_cpt476,55420 -d_m_cpt(22,-701,1.0,0.615145672375572).d_m_cpt477,55460 -d_m_cpt(22,-701,1.0,0.615145672375572).d_m_cpt477,55460 -d_d_cpt(22,-1378,1.0,0.384751805040216).d_d_cpt478,55500 -d_d_cpt(22,-1378,1.0,0.384751805040216).d_d_cpt478,55500 -b_m_cpt(22,*,1.0,0.0).b_m_cpt479,55541 -b_m_cpt(22,*,1.0,0.0).b_m_cpt479,55541 -m_e_cpt(22,*,1.0,0.0).m_e_cpt480,55564 -m_e_cpt(22,*,1.0,0.0).m_e_cpt480,55564 -consensus(23,16).consensus483,55599 -consensus(23,16).consensus483,55599 -m_m_cpt(23,-4,1.0,0.997231251352069).m_m_cpt492,57723 -m_m_cpt(23,-4,1.0,0.997231251352069).m_m_cpt492,57723 -m_i_cpt(23,-8959,1.0,0.00200942716385464).m_i_cpt493,57761 -m_i_cpt(23,-8959,1.0,0.00200942716385464).m_i_cpt493,57761 -m_d_cpt(23,-10001,1.0,0.000975885832998489).m_d_cpt494,57804 -m_d_cpt(23,-10001,1.0,0.000975885832998489).m_d_cpt494,57804 -i_i_cpt(23,-1115,1.0,0.461691155364697).i_i_cpt495,57849 -i_i_cpt(23,-1115,1.0,0.461691155364697).i_i_cpt495,57849 -i_m_cpt(23,-894,1.0,0.538120062391899).i_m_cpt496,57890 -i_m_cpt(23,-894,1.0,0.538120062391899).i_m_cpt496,57890 -d_m_cpt(23,-701,1.0,0.615145672375572).d_m_cpt497,57930 -d_m_cpt(23,-701,1.0,0.615145672375572).d_m_cpt497,57930 -d_d_cpt(23,-1378,1.0,0.384751805040216).d_d_cpt498,57970 -d_d_cpt(23,-1378,1.0,0.384751805040216).d_d_cpt498,57970 -b_m_cpt(23,*,1.0,0.0).b_m_cpt499,58011 -b_m_cpt(23,*,1.0,0.0).b_m_cpt499,58011 -m_e_cpt(23,*,1.0,0.0).m_e_cpt500,58034 -m_e_cpt(23,*,1.0,0.0).m_e_cpt500,58034 -consensus(24,10).consensus503,58069 -consensus(24,10).consensus503,58069 -m_m_cpt(24,-88,1.0,0.940826107513788).m_m_cpt512,60205 -m_m_cpt(24,-88,1.0,0.940826107513788).m_m_cpt512,60205 -m_i_cpt(24,-8959,1.0,0.00200942716385464).m_i_cpt513,60244 -m_i_cpt(24,-8959,1.0,0.00200942716385464).m_i_cpt513,60244 -m_d_cpt(24,-4135,1.0,0.0569168645994987).m_d_cpt514,60287 -m_d_cpt(24,-4135,1.0,0.0569168645994987).m_d_cpt514,60287 -i_i_cpt(24,-1115,1.0,0.461691155364697).i_i_cpt515,60329 -i_i_cpt(24,-1115,1.0,0.461691155364697).i_i_cpt515,60329 -i_m_cpt(24,-894,1.0,0.538120062391899).i_m_cpt516,60370 -i_m_cpt(24,-894,1.0,0.538120062391899).i_m_cpt516,60370 -d_m_cpt(24,-701,1.0,0.615145672375572).d_m_cpt517,60410 -d_m_cpt(24,-701,1.0,0.615145672375572).d_m_cpt517,60410 -d_d_cpt(24,-1378,1.0,0.384751805040216).d_d_cpt518,60450 -d_d_cpt(24,-1378,1.0,0.384751805040216).d_d_cpt518,60450 -b_m_cpt(24,*,1.0,0.0).b_m_cpt519,60491 -b_m_cpt(24,*,1.0,0.0).b_m_cpt519,60491 -m_e_cpt(24,*,1.0,0.0).m_e_cpt520,60514 -m_e_cpt(24,*,1.0,0.0).m_e_cpt520,60514 -consensus(25,19).consensus523,60549 -consensus(25,19).consensus523,60549 -m_m_cpt(25,-2316,1.0,0.200823499189258).m_m_cpt532,62696 -m_m_cpt(25,-2316,1.0,0.200823499189258).m_m_cpt532,62696 -m_i_cpt(25,-8876,1.0,0.00212842209416666).m_i_cpt533,62737 -m_i_cpt(25,-8876,1.0,0.00212842209416666).m_i_cpt533,62737 -m_d_cpt(25,-327,1.0,0.797192476540536).m_d_cpt534,62780 -m_d_cpt(25,-327,1.0,0.797192476540536).m_d_cpt534,62780 -i_i_cpt(25,-1115,1.0,0.461691155364697).i_i_cpt535,62820 -i_i_cpt(25,-1115,1.0,0.461691155364697).i_i_cpt535,62820 -i_m_cpt(25,-894,1.0,0.538120062391899).i_m_cpt536,62861 -i_m_cpt(25,-894,1.0,0.538120062391899).i_m_cpt536,62861 -d_m_cpt(25,-418,1.0,0.748461493396346).d_m_cpt537,62901 -d_m_cpt(25,-418,1.0,0.748461493396346).d_m_cpt537,62901 -d_d_cpt(25,-1991,1.0,0.251564455874445).d_d_cpt538,62941 -d_d_cpt(25,-1991,1.0,0.251564455874445).d_d_cpt538,62941 -b_m_cpt(25,*,1.0,0.0).b_m_cpt539,62982 -b_m_cpt(25,*,1.0,0.0).b_m_cpt539,62982 -m_e_cpt(25,*,1.0,0.0).m_e_cpt540,63005 -m_e_cpt(25,*,1.0,0.0).m_e_cpt540,63005 -consensus(26,20).consensus543,63040 -consensus(26,20).consensus543,63040 -m_m_cpt(26,-17,1.0,0.988285651500733).m_m_cpt552,65180 -m_m_cpt(26,-17,1.0,0.988285651500733).m_m_cpt552,65180 -m_i_cpt(26,-6950,1.0,0.00808800721751076).m_i_cpt553,65219 -m_i_cpt(26,-6950,1.0,0.00808800721751076).m_i_cpt553,65219 -m_d_cpt(26,-7992,1.0,0.00392797101718152).m_d_cpt554,65262 -m_d_cpt(26,-7992,1.0,0.00392797101718152).m_d_cpt554,65262 -i_i_cpt(26,-1115,1.0,0.461691155364697).i_i_cpt555,65305 -i_i_cpt(26,-1115,1.0,0.461691155364697).i_i_cpt555,65305 -i_m_cpt(26,-894,1.0,0.538120062391899).i_m_cpt556,65346 -i_m_cpt(26,-894,1.0,0.538120062391899).i_m_cpt556,65346 -d_m_cpt(26,-70,1.0,0.952637998043937).d_m_cpt557,65386 -d_m_cpt(26,-70,1.0,0.952637998043937).d_m_cpt557,65386 -d_d_cpt(26,-4397,1.0,0.047464740306704).d_d_cpt558,65425 -d_d_cpt(26,-4397,1.0,0.047464740306704).d_d_cpt558,65425 -b_m_cpt(26,*,1.0,0.0).b_m_cpt559,65466 -b_m_cpt(26,*,1.0,0.0).b_m_cpt559,65466 -m_e_cpt(26,*,1.0,0.0).m_e_cpt560,65489 -m_e_cpt(26,*,1.0,0.0).m_e_cpt560,65489 -consensus(27,6).consensus563,65524 -consensus(27,6).consensus563,65524 -m_m_cpt(27,-4,1.0,0.997231251352069).m_m_cpt572,67650 -m_m_cpt(27,-4,1.0,0.997231251352069).m_m_cpt572,67650 -m_i_cpt(27,-8959,1.0,0.00200942716385464).m_i_cpt573,67688 -m_i_cpt(27,-8959,1.0,0.00200942716385464).m_i_cpt573,67688 -m_d_cpt(27,-10001,1.0,0.000975885832998489).m_d_cpt574,67731 -m_d_cpt(27,-10001,1.0,0.000975885832998489).m_d_cpt574,67731 -i_i_cpt(27,-1115,1.0,0.461691155364697).i_i_cpt575,67776 -i_i_cpt(27,-1115,1.0,0.461691155364697).i_i_cpt575,67776 -i_m_cpt(27,-894,1.0,0.538120062391899).i_m_cpt576,67817 -i_m_cpt(27,-894,1.0,0.538120062391899).i_m_cpt576,67817 -d_m_cpt(27,-701,1.0,0.615145672375572).d_m_cpt577,67857 -d_m_cpt(27,-701,1.0,0.615145672375572).d_m_cpt577,67857 -d_d_cpt(27,-1378,1.0,0.384751805040216).d_d_cpt578,67897 -d_d_cpt(27,-1378,1.0,0.384751805040216).d_d_cpt578,67897 -b_m_cpt(27,*,1.0,0.0).b_m_cpt579,67938 -b_m_cpt(27,*,1.0,0.0).b_m_cpt579,67938 -m_e_cpt(27,*,1.0,0.0).m_e_cpt580,67961 -m_e_cpt(27,*,1.0,0.0).m_e_cpt580,67961 -consensus(28,9).consensus583,67996 -consensus(28,9).consensus583,67996 -m_m_cpt(28,-4,1.0,0.997231251352069).m_m_cpt592,70133 -m_m_cpt(28,-4,1.0,0.997231251352069).m_m_cpt592,70133 -m_i_cpt(28,-8959,1.0,0.00200942716385464).m_i_cpt593,70171 -m_i_cpt(28,-8959,1.0,0.00200942716385464).m_i_cpt593,70171 -m_d_cpt(28,-10001,1.0,0.000975885832998489).m_d_cpt594,70214 -m_d_cpt(28,-10001,1.0,0.000975885832998489).m_d_cpt594,70214 -i_i_cpt(28,-1115,1.0,0.461691155364697).i_i_cpt595,70259 -i_i_cpt(28,-1115,1.0,0.461691155364697).i_i_cpt595,70259 -i_m_cpt(28,-894,1.0,0.538120062391899).i_m_cpt596,70300 -i_m_cpt(28,-894,1.0,0.538120062391899).i_m_cpt596,70300 -d_m_cpt(28,-701,1.0,0.615145672375572).d_m_cpt597,70340 -d_m_cpt(28,-701,1.0,0.615145672375572).d_m_cpt597,70340 -d_d_cpt(28,-1378,1.0,0.384751805040216).d_d_cpt598,70380 -d_d_cpt(28,-1378,1.0,0.384751805040216).d_d_cpt598,70380 -b_m_cpt(28,*,1.0,0.0).b_m_cpt599,70421 -b_m_cpt(28,*,1.0,0.0).b_m_cpt599,70421 -m_e_cpt(28,*,1.0,0.0).m_e_cpt600,70444 -m_e_cpt(28,*,1.0,0.0).m_e_cpt600,70444 -consensus(29,18).consensus603,70479 -consensus(29,18).consensus603,70479 -m_m_cpt(29,-505,1.0,0.70466037757101).m_m_cpt612,72634 -m_m_cpt(29,-505,1.0,0.70466037757101).m_m_cpt612,72634 -m_i_cpt(29,-8959,1.0,0.00200942716385464).m_i_cpt613,72673 -m_i_cpt(29,-8959,1.0,0.00200942716385464).m_i_cpt613,72673 -m_d_cpt(29,-1768,1.0,0.293615492803413).m_d_cpt614,72716 -m_d_cpt(29,-1768,1.0,0.293615492803413).m_d_cpt614,72716 -i_i_cpt(29,-1115,1.0,0.461691155364697).i_i_cpt615,72757 -i_i_cpt(29,-1115,1.0,0.461691155364697).i_i_cpt615,72757 -i_m_cpt(29,-894,1.0,0.538120062391899).i_m_cpt616,72798 -i_m_cpt(29,-894,1.0,0.538120062391899).i_m_cpt616,72798 -d_m_cpt(29,-701,1.0,0.615145672375572).d_m_cpt617,72838 -d_m_cpt(29,-701,1.0,0.615145672375572).d_m_cpt617,72838 -d_d_cpt(29,-1378,1.0,0.384751805040216).d_d_cpt618,72878 -d_d_cpt(29,-1378,1.0,0.384751805040216).d_d_cpt618,72878 -b_m_cpt(29,*,1.0,0.0).b_m_cpt619,72919 -b_m_cpt(29,*,1.0,0.0).b_m_cpt619,72919 -m_e_cpt(29,*,1.0,0.0).m_e_cpt620,72942 -m_e_cpt(29,*,1.0,0.0).m_e_cpt620,72942 -consensus(30,4).consensus623,72977 -consensus(30,4).consensus623,72977 -m_m_cpt(30,-6,1.0,0.995849753094458).m_m_cpt632,75094 -m_m_cpt(30,-6,1.0,0.995849753094458).m_m_cpt632,75094 -m_i_cpt(30,-8460,1.0,0.00283979007289123).m_i_cpt633,75132 -m_i_cpt(30,-8460,1.0,0.00283979007289123).m_i_cpt633,75132 -m_d_cpt(30,-9502,1.0,0.00137915469178199).m_d_cpt634,75175 -m_d_cpt(30,-9502,1.0,0.00137915469178199).m_d_cpt634,75175 -i_i_cpt(30,-1115,1.0,0.461691155364697).i_i_cpt635,75218 -i_i_cpt(30,-1115,1.0,0.461691155364697).i_i_cpt635,75218 -i_m_cpt(30,-894,1.0,0.538120062391899).i_m_cpt636,75259 -i_m_cpt(30,-894,1.0,0.538120062391899).i_m_cpt636,75259 -d_m_cpt(30,-2614,1.0,0.163345656736647).d_m_cpt637,75299 -d_m_cpt(30,-2614,1.0,0.163345656736647).d_m_cpt637,75299 -d_d_cpt(30,-257,1.0,0.836826242683391).d_d_cpt638,75340 -d_d_cpt(30,-257,1.0,0.836826242683391).d_d_cpt638,75340 -b_m_cpt(30,*,1.0,0.0).b_m_cpt639,75380 -b_m_cpt(30,*,1.0,0.0).b_m_cpt639,75380 -m_e_cpt(30,*,1.0,0.0).m_e_cpt640,75403 -m_e_cpt(30,*,1.0,0.0).m_e_cpt640,75403 -consensus(31,6).consensus643,75438 -consensus(31,6).consensus643,75438 -m_m_cpt(31,-126,1.0,0.916368644675351).m_m_cpt652,77557 -m_m_cpt(31,-126,1.0,0.916368644675351).m_m_cpt652,77557 -m_i_cpt(31,-8460,1.0,0.00283979007289123).m_i_cpt653,77597 -m_i_cpt(31,-8460,1.0,0.00283979007289123).m_i_cpt653,77597 -m_d_cpt(31,-3635,1.0,0.0804926018443641).m_d_cpt654,77640 -m_d_cpt(31,-3635,1.0,0.0804926018443641).m_d_cpt654,77640 -i_i_cpt(31,-1115,1.0,0.461691155364697).i_i_cpt655,77682 -i_i_cpt(31,-1115,1.0,0.461691155364697).i_i_cpt655,77682 -i_m_cpt(31,-894,1.0,0.538120062391899).i_m_cpt656,77723 -i_m_cpt(31,-894,1.0,0.538120062391899).i_m_cpt656,77723 -d_m_cpt(31,-155,1.0,0.898132372883934).d_m_cpt657,77763 -d_m_cpt(31,-155,1.0,0.898132372883934).d_m_cpt657,77763 -d_d_cpt(31,-3291,1.0,0.102166916061035).d_d_cpt658,77803 -d_d_cpt(31,-3291,1.0,0.102166916061035).d_d_cpt658,77803 -b_m_cpt(31,*,1.0,0.0).b_m_cpt659,77844 -b_m_cpt(31,*,1.0,0.0).b_m_cpt659,77844 -m_e_cpt(31,*,1.0,0.0).m_e_cpt660,77867 -m_e_cpt(31,*,1.0,0.0).m_e_cpt660,77867 -consensus(32,12).consensus663,77902 -consensus(32,12).consensus663,77902 -m_m_cpt(32,-5,1.0,0.996540262827868).m_m_cpt672,80029 -m_m_cpt(32,-5,1.0,0.996540262827868).m_m_cpt672,80029 -m_i_cpt(32,-8876,1.0,0.00212842209416666).m_i_cpt673,80067 -m_i_cpt(32,-8876,1.0,0.00212842209416666).m_i_cpt673,80067 -m_d_cpt(32,-9918,1.0,0.00103367616687025).m_d_cpt674,80110 -m_d_cpt(32,-9918,1.0,0.00103367616687025).m_d_cpt674,80110 -i_i_cpt(32,-1115,1.0,0.461691155364697).i_i_cpt675,80153 -i_i_cpt(32,-1115,1.0,0.461691155364697).i_i_cpt675,80153 -i_m_cpt(32,-894,1.0,0.538120062391899).i_m_cpt676,80194 -i_m_cpt(32,-894,1.0,0.538120062391899).i_m_cpt676,80194 -d_m_cpt(32,-1313,1.0,0.402483068810561).d_m_cpt677,80234 -d_m_cpt(32,-1313,1.0,0.402483068810561).d_m_cpt677,80234 -d_d_cpt(32,-743,1.0,0.597495602428391).d_d_cpt678,80275 -d_d_cpt(32,-743,1.0,0.597495602428391).d_d_cpt678,80275 -b_m_cpt(32,*,1.0,0.0).b_m_cpt679,80315 -b_m_cpt(32,*,1.0,0.0).b_m_cpt679,80315 -m_e_cpt(32,*,1.0,0.0).m_e_cpt680,80338 -m_e_cpt(32,*,1.0,0.0).m_e_cpt680,80338 -consensus(33,1).consensus683,80373 -consensus(33,1).consensus683,80373 -m_m_cpt(33,-5,1.0,0.996540262827868).m_m_cpt692,82504 -m_m_cpt(33,-5,1.0,0.996540262827868).m_m_cpt692,82504 -m_i_cpt(33,-8876,1.0,0.00212842209416666).m_i_cpt693,82542 -m_i_cpt(33,-8876,1.0,0.00212842209416666).m_i_cpt693,82542 -m_d_cpt(33,-9918,1.0,0.00103367616687025).m_d_cpt694,82585 -m_d_cpt(33,-9918,1.0,0.00103367616687025).m_d_cpt694,82585 -i_i_cpt(33,-1115,1.0,0.461691155364697).i_i_cpt695,82628 -i_i_cpt(33,-1115,1.0,0.461691155364697).i_i_cpt695,82628 -i_m_cpt(33,-894,1.0,0.538120062391899).i_m_cpt696,82669 -i_m_cpt(33,-894,1.0,0.538120062391899).i_m_cpt696,82669 -d_m_cpt(33,-1313,1.0,0.402483068810561).d_m_cpt697,82709 -d_m_cpt(33,-1313,1.0,0.402483068810561).d_m_cpt697,82709 -d_d_cpt(33,-743,1.0,0.597495602428391).d_d_cpt698,82750 -d_d_cpt(33,-743,1.0,0.597495602428391).d_d_cpt698,82750 -b_m_cpt(33,*,1.0,0.0).b_m_cpt699,82790 -b_m_cpt(33,*,1.0,0.0).b_m_cpt699,82790 -m_e_cpt(33,*,1.0,0.0).m_e_cpt700,82813 -m_e_cpt(33,*,1.0,0.0).m_e_cpt700,82813 -consensus(34,4).consensus703,82848 -consensus(34,4).consensus703,82848 -m_m_cpt(34,-125,1.0,0.917004043204671).m_m_cpt712,84973 -m_m_cpt(34,-125,1.0,0.917004043204671).m_m_cpt712,84973 -m_i_cpt(34,-8876,1.0,0.00212842209416666).m_i_cpt713,85013 -m_i_cpt(34,-8876,1.0,0.00212842209416666).m_i_cpt713,85013 -m_d_cpt(34,-3630,1.0,0.0807720519148433).m_d_cpt714,85056 -m_d_cpt(34,-3630,1.0,0.0807720519148433).m_d_cpt714,85056 -i_i_cpt(34,-1115,1.0,0.461691155364697).i_i_cpt715,85098 -i_i_cpt(34,-1115,1.0,0.461691155364697).i_i_cpt715,85098 -i_m_cpt(34,-894,1.0,0.538120062391899).i_m_cpt716,85139 -i_m_cpt(34,-894,1.0,0.538120062391899).i_m_cpt716,85139 -d_m_cpt(34,-1313,1.0,0.402483068810561).d_m_cpt717,85179 -d_m_cpt(34,-1313,1.0,0.402483068810561).d_m_cpt717,85179 -d_d_cpt(34,-743,1.0,0.597495602428391).d_d_cpt718,85220 -d_d_cpt(34,-743,1.0,0.597495602428391).d_d_cpt718,85220 -b_m_cpt(34,*,1.0,0.0).b_m_cpt719,85260 -b_m_cpt(34,*,1.0,0.0).b_m_cpt719,85260 -m_e_cpt(34,*,1.0,0.0).m_e_cpt720,85283 -m_e_cpt(34,*,1.0,0.0).m_e_cpt720,85283 -consensus(35,4).consensus723,85318 -consensus(35,4).consensus723,85318 -m_m_cpt(35,-5,1.0,0.996540262827868).m_m_cpt732,87432 -m_m_cpt(35,-5,1.0,0.996540262827868).m_m_cpt732,87432 -m_i_cpt(35,-8756,1.0,0.00231303049190163).m_i_cpt733,87470 -m_i_cpt(35,-8756,1.0,0.00231303049190163).m_i_cpt733,87470 -m_d_cpt(35,-9798,1.0,0.0011233319271002).m_d_cpt734,87513 -m_d_cpt(35,-9798,1.0,0.0011233319271002).m_d_cpt734,87513 -i_i_cpt(35,-1115,1.0,0.461691155364697).i_i_cpt735,87555 -i_i_cpt(35,-1115,1.0,0.461691155364697).i_i_cpt735,87555 -i_m_cpt(35,-894,1.0,0.538120062391899).i_m_cpt736,87596 -i_m_cpt(35,-894,1.0,0.538120062391899).i_m_cpt736,87596 -d_m_cpt(35,-969,1.0,0.510860041357151).d_m_cpt737,87636 -d_m_cpt(35,-969,1.0,0.510860041357151).d_m_cpt737,87636 -d_d_cpt(35,-1031,1.0,0.489370825198718).d_d_cpt738,87676 -d_d_cpt(35,-1031,1.0,0.489370825198718).d_d_cpt738,87676 -b_m_cpt(35,*,1.0,0.0).b_m_cpt739,87717 -b_m_cpt(35,*,1.0,0.0).b_m_cpt739,87717 -m_e_cpt(35,*,1.0,0.0).m_e_cpt740,87740 -m_e_cpt(35,*,1.0,0.0).m_e_cpt740,87740 -consensus(36,8).consensus743,87775 -consensus(36,8).consensus743,87775 -m_m_cpt(36,-5,1.0,0.996540262827868).m_m_cpt752,89900 -m_m_cpt(36,-5,1.0,0.996540262827868).m_m_cpt752,89900 -m_i_cpt(36,-8846,1.0,0.00217314476676725).m_i_cpt753,89938 -m_i_cpt(36,-8846,1.0,0.00217314476676725).m_i_cpt753,89938 -m_d_cpt(36,-9888,1.0,0.00105539590042905).m_d_cpt754,89981 -m_d_cpt(36,-9888,1.0,0.00105539590042905).m_d_cpt754,89981 -i_i_cpt(36,-1115,1.0,0.461691155364697).i_i_cpt755,90024 -i_i_cpt(36,-1115,1.0,0.461691155364697).i_i_cpt755,90024 -i_m_cpt(36,-894,1.0,0.538120062391899).i_m_cpt756,90065 -i_m_cpt(36,-894,1.0,0.538120062391899).i_m_cpt756,90065 -d_m_cpt(36,-367,1.0,0.775393206347005).d_m_cpt757,90105 -d_m_cpt(36,-367,1.0,0.775393206347005).d_m_cpt757,90105 -d_d_cpt(36,-2153,1.0,0.224844578036938).d_d_cpt758,90145 -d_d_cpt(36,-2153,1.0,0.224844578036938).d_d_cpt758,90145 -b_m_cpt(36,*,1.0,0.0).b_m_cpt759,90186 -b_m_cpt(36,*,1.0,0.0).b_m_cpt759,90186 -m_e_cpt(36,*,1.0,0.0).m_e_cpt760,90209 -m_e_cpt(36,*,1.0,0.0).m_e_cpt760,90209 -consensus(37,6).consensus763,90244 -consensus(37,6).consensus763,90244 -m_m_cpt(37,-4,1.0,0.997231251352069).m_m_cpt772,92394 -m_m_cpt(37,-4,1.0,0.997231251352069).m_m_cpt772,92394 -m_i_cpt(37,-8959,1.0,0.00200942716385464).m_i_cpt773,92432 -m_i_cpt(37,-8959,1.0,0.00200942716385464).m_i_cpt773,92432 -m_d_cpt(37,-10001,1.0,0.000975885832998489).m_d_cpt774,92475 -m_d_cpt(37,-10001,1.0,0.000975885832998489).m_d_cpt774,92475 -i_i_cpt(37,-1115,1.0,0.461691155364697).i_i_cpt775,92520 -i_i_cpt(37,-1115,1.0,0.461691155364697).i_i_cpt775,92520 -i_m_cpt(37,-894,1.0,0.538120062391899).i_m_cpt776,92561 -i_m_cpt(37,-894,1.0,0.538120062391899).i_m_cpt776,92561 -d_m_cpt(37,-701,1.0,0.615145672375572).d_m_cpt777,92601 -d_m_cpt(37,-701,1.0,0.615145672375572).d_m_cpt777,92601 -d_d_cpt(37,-1378,1.0,0.384751805040216).d_d_cpt778,92641 -d_d_cpt(37,-1378,1.0,0.384751805040216).d_d_cpt778,92641 -b_m_cpt(37,*,1.0,0.0).b_m_cpt779,92682 -b_m_cpt(37,*,1.0,0.0).b_m_cpt779,92682 -m_e_cpt(37,*,1.0,0.0).m_e_cpt780,92705 -m_e_cpt(37,*,1.0,0.0).m_e_cpt780,92705 -consensus(38,1).consensus783,92740 -consensus(38,1).consensus783,92740 -m_m_cpt(38,-4,1.0,0.997231251352069).m_m_cpt792,94863 -m_m_cpt(38,-4,1.0,0.997231251352069).m_m_cpt792,94863 -m_i_cpt(38,-8959,1.0,0.00200942716385464).m_i_cpt793,94901 -m_i_cpt(38,-8959,1.0,0.00200942716385464).m_i_cpt793,94901 -m_d_cpt(38,-10001,1.0,0.000975885832998489).m_d_cpt794,94944 -m_d_cpt(38,-10001,1.0,0.000975885832998489).m_d_cpt794,94944 -i_i_cpt(38,-1115,1.0,0.461691155364697).i_i_cpt795,94989 -i_i_cpt(38,-1115,1.0,0.461691155364697).i_i_cpt795,94989 -i_m_cpt(38,-894,1.0,0.538120062391899).i_m_cpt796,95030 -i_m_cpt(38,-894,1.0,0.538120062391899).i_m_cpt796,95030 -d_m_cpt(38,-701,1.0,0.615145672375572).d_m_cpt797,95070 -d_m_cpt(38,-701,1.0,0.615145672375572).d_m_cpt797,95070 -d_d_cpt(38,-1378,1.0,0.384751805040216).d_d_cpt798,95110 -d_d_cpt(38,-1378,1.0,0.384751805040216).d_d_cpt798,95110 -b_m_cpt(38,*,1.0,0.0).b_m_cpt799,95151 -b_m_cpt(38,*,1.0,0.0).b_m_cpt799,95151 -m_e_cpt(38,*,1.0,0.0).m_e_cpt800,95174 -m_e_cpt(38,*,1.0,0.0).m_e_cpt800,95174 -consensus(39,4).consensus803,95209 -consensus(39,4).consensus803,95209 -m_m_cpt(39,-4,1.0,0.997231251352069).m_m_cpt812,97345 -m_m_cpt(39,-4,1.0,0.997231251352069).m_m_cpt812,97345 -m_i_cpt(39,-8959,1.0,0.00200942716385464).m_i_cpt813,97383 -m_i_cpt(39,-8959,1.0,0.00200942716385464).m_i_cpt813,97383 -m_d_cpt(39,-10001,1.0,0.000975885832998489).m_d_cpt814,97426 -m_d_cpt(39,-10001,1.0,0.000975885832998489).m_d_cpt814,97426 -i_i_cpt(39,-1115,1.0,0.461691155364697).i_i_cpt815,97471 -i_i_cpt(39,-1115,1.0,0.461691155364697).i_i_cpt815,97471 -i_m_cpt(39,-894,1.0,0.538120062391899).i_m_cpt816,97512 -i_m_cpt(39,-894,1.0,0.538120062391899).i_m_cpt816,97512 -d_m_cpt(39,-701,1.0,0.615145672375572).d_m_cpt817,97552 -d_m_cpt(39,-701,1.0,0.615145672375572).d_m_cpt817,97552 -d_d_cpt(39,-1378,1.0,0.384751805040216).d_d_cpt818,97592 -d_d_cpt(39,-1378,1.0,0.384751805040216).d_d_cpt818,97592 -b_m_cpt(39,*,1.0,0.0).b_m_cpt819,97633 -b_m_cpt(39,*,1.0,0.0).b_m_cpt819,97633 -m_e_cpt(39,*,1.0,0.0).m_e_cpt820,97656 -m_e_cpt(39,*,1.0,0.0).m_e_cpt820,97656 -consensus(40,1).consensus823,97691 -consensus(40,1).consensus823,97691 -m_m_cpt(40,-4,1.0,0.997231251352069).m_m_cpt832,99828 -m_m_cpt(40,-4,1.0,0.997231251352069).m_m_cpt832,99828 -m_i_cpt(40,-8959,1.0,0.00200942716385464).m_i_cpt833,99866 -m_i_cpt(40,-8959,1.0,0.00200942716385464).m_i_cpt833,99866 -m_d_cpt(40,-10001,1.0,0.000975885832998489).m_d_cpt834,99909 -m_d_cpt(40,-10001,1.0,0.000975885832998489).m_d_cpt834,99909 -i_i_cpt(40,-1115,1.0,0.461691155364697).i_i_cpt835,99954 -i_i_cpt(40,-1115,1.0,0.461691155364697).i_i_cpt835,99954 -i_m_cpt(40,-894,1.0,0.538120062391899).i_m_cpt836,99995 -i_m_cpt(40,-894,1.0,0.538120062391899).i_m_cpt836,99995 -d_m_cpt(40,-701,1.0,0.615145672375572).d_m_cpt837,100035 -d_m_cpt(40,-701,1.0,0.615145672375572).d_m_cpt837,100035 -d_d_cpt(40,-1378,1.0,0.384751805040216).d_d_cpt838,100075 -d_d_cpt(40,-1378,1.0,0.384751805040216).d_d_cpt838,100075 -b_m_cpt(40,*,1.0,0.0).b_m_cpt839,100116 -b_m_cpt(40,*,1.0,0.0).b_m_cpt839,100116 -m_e_cpt(40,*,1.0,0.0).m_e_cpt840,100139 -m_e_cpt(40,*,1.0,0.0).m_e_cpt840,100139 -consensus(41,10).consensus843,100174 -consensus(41,10).consensus843,100174 -m_m_cpt(41,-118,1.0,0.921464186198704).m_m_cpt852,102333 -m_m_cpt(41,-118,1.0,0.921464186198704).m_m_cpt852,102333 -m_i_cpt(41,-8959,1.0,0.00200942716385464).m_i_cpt853,102373 -m_i_cpt(41,-8959,1.0,0.00200942716385464).m_i_cpt853,102373 -m_d_cpt(41,-3713,1.0,0.076256281892014).m_d_cpt854,102416 -m_d_cpt(41,-3713,1.0,0.076256281892014).m_d_cpt854,102416 -i_i_cpt(41,-1115,1.0,0.461691155364697).i_i_cpt855,102457 -i_i_cpt(41,-1115,1.0,0.461691155364697).i_i_cpt855,102457 -i_m_cpt(41,-894,1.0,0.538120062391899).i_m_cpt856,102498 -i_m_cpt(41,-894,1.0,0.538120062391899).i_m_cpt856,102498 -d_m_cpt(41,-701,1.0,0.615145672375572).d_m_cpt857,102538 -d_m_cpt(41,-701,1.0,0.615145672375572).d_m_cpt857,102538 -d_d_cpt(41,-1378,1.0,0.384751805040216).d_d_cpt858,102578 -d_d_cpt(41,-1378,1.0,0.384751805040216).d_d_cpt858,102578 -b_m_cpt(41,*,1.0,0.0).b_m_cpt859,102619 -b_m_cpt(41,*,1.0,0.0).b_m_cpt859,102619 -m_e_cpt(41,*,1.0,0.0).m_e_cpt860,102642 -m_e_cpt(41,*,1.0,0.0).m_e_cpt860,102642 -consensus(42,6).consensus863,102677 -consensus(42,6).consensus863,102677 -m_m_cpt(42,-5,1.0,0.996540262827868).m_m_cpt872,104792 -m_m_cpt(42,-5,1.0,0.996540262827868).m_m_cpt872,104792 -m_i_cpt(42,-8846,1.0,0.00217314476676725).m_i_cpt873,104830 -m_i_cpt(42,-8846,1.0,0.00217314476676725).m_i_cpt873,104830 -m_d_cpt(42,-9888,1.0,0.00105539590042905).m_d_cpt874,104873 -m_d_cpt(42,-9888,1.0,0.00105539590042905).m_d_cpt874,104873 -i_i_cpt(42,-1115,1.0,0.461691155364697).i_i_cpt875,104916 -i_i_cpt(42,-1115,1.0,0.461691155364697).i_i_cpt875,104916 -i_m_cpt(42,-894,1.0,0.538120062391899).i_m_cpt876,104957 -i_m_cpt(42,-894,1.0,0.538120062391899).i_m_cpt876,104957 -d_m_cpt(42,-1476,1.0,0.359484133211739).d_m_cpt877,104997 -d_m_cpt(42,-1476,1.0,0.359484133211739).d_m_cpt877,104997 -d_d_cpt(42,-643,1.0,0.640379930664885).d_d_cpt878,105038 -d_d_cpt(42,-643,1.0,0.640379930664885).d_d_cpt878,105038 -b_m_cpt(42,*,1.0,0.0).b_m_cpt879,105078 -b_m_cpt(42,*,1.0,0.0).b_m_cpt879,105078 -m_e_cpt(42,*,1.0,0.0).m_e_cpt880,105101 -m_e_cpt(42,*,1.0,0.0).m_e_cpt880,105101 -consensus(43,15).consensus883,105136 -consensus(43,15).consensus883,105136 -m_m_cpt(43,-5,1.0,0.996540262827868).m_m_cpt892,107280 -m_m_cpt(43,-5,1.0,0.996540262827868).m_m_cpt892,107280 -m_i_cpt(43,-8846,1.0,0.00217314476676725).m_i_cpt893,107318 -m_i_cpt(43,-8846,1.0,0.00217314476676725).m_i_cpt893,107318 -m_d_cpt(43,-9888,1.0,0.00105539590042905).m_d_cpt894,107361 -m_d_cpt(43,-9888,1.0,0.00105539590042905).m_d_cpt894,107361 -i_i_cpt(43,-1115,1.0,0.461691155364697).i_i_cpt895,107404 -i_i_cpt(43,-1115,1.0,0.461691155364697).i_i_cpt895,107404 -i_m_cpt(43,-894,1.0,0.538120062391899).i_m_cpt896,107445 -i_m_cpt(43,-894,1.0,0.538120062391899).i_m_cpt896,107445 -d_m_cpt(43,-1476,1.0,0.359484133211739).d_m_cpt897,107485 -d_m_cpt(43,-1476,1.0,0.359484133211739).d_m_cpt897,107485 -d_d_cpt(43,-643,1.0,0.640379930664885).d_d_cpt898,107526 -d_d_cpt(43,-643,1.0,0.640379930664885).d_d_cpt898,107526 -b_m_cpt(43,*,1.0,0.0).b_m_cpt899,107566 -b_m_cpt(43,*,1.0,0.0).b_m_cpt899,107566 -m_e_cpt(43,*,1.0,0.0).m_e_cpt900,107589 -m_e_cpt(43,*,1.0,0.0).m_e_cpt900,107589 -consensus(44,10).consensus903,107624 -consensus(44,10).consensus903,107624 -m_m_cpt(44,-5,1.0,0.996540262827868).m_m_cpt912,109765 -m_m_cpt(44,-5,1.0,0.996540262827868).m_m_cpt912,109765 -m_i_cpt(44,-8846,1.0,0.00217314476676725).m_i_cpt913,109803 -m_i_cpt(44,-8846,1.0,0.00217314476676725).m_i_cpt913,109803 -m_d_cpt(44,-9888,1.0,0.00105539590042905).m_d_cpt914,109846 -m_d_cpt(44,-9888,1.0,0.00105539590042905).m_d_cpt914,109846 -i_i_cpt(44,-1115,1.0,0.461691155364697).i_i_cpt915,109889 -i_i_cpt(44,-1115,1.0,0.461691155364697).i_i_cpt915,109889 -i_m_cpt(44,-894,1.0,0.538120062391899).i_m_cpt916,109930 -i_m_cpt(44,-894,1.0,0.538120062391899).i_m_cpt916,109930 -d_m_cpt(44,-1476,1.0,0.359484133211739).d_m_cpt917,109970 -d_m_cpt(44,-1476,1.0,0.359484133211739).d_m_cpt917,109970 -d_d_cpt(44,-643,1.0,0.640379930664885).d_d_cpt918,110011 -d_d_cpt(44,-643,1.0,0.640379930664885).d_d_cpt918,110011 -b_m_cpt(44,*,1.0,0.0).b_m_cpt919,110051 -b_m_cpt(44,*,1.0,0.0).b_m_cpt919,110051 -m_e_cpt(44,*,1.0,0.0).m_e_cpt920,110074 -m_e_cpt(44,*,1.0,0.0).m_e_cpt920,110074 -consensus(45,5).consensus923,110109 -consensus(45,5).consensus923,110109 -m_m_cpt(45,-5,1.0,0.996540262827868).m_m_cpt932,112258 -m_m_cpt(45,-5,1.0,0.996540262827868).m_m_cpt932,112258 -m_i_cpt(45,-8846,1.0,0.00217314476676725).m_i_cpt933,112296 -m_i_cpt(45,-8846,1.0,0.00217314476676725).m_i_cpt933,112296 -m_d_cpt(45,-9888,1.0,0.00105539590042905).m_d_cpt934,112339 -m_d_cpt(45,-9888,1.0,0.00105539590042905).m_d_cpt934,112339 -i_i_cpt(45,-1115,1.0,0.461691155364697).i_i_cpt935,112382 -i_i_cpt(45,-1115,1.0,0.461691155364697).i_i_cpt935,112382 -i_m_cpt(45,-894,1.0,0.538120062391899).i_m_cpt936,112423 -i_m_cpt(45,-894,1.0,0.538120062391899).i_m_cpt936,112423 -d_m_cpt(45,-1476,1.0,0.359484133211739).d_m_cpt937,112463 -d_m_cpt(45,-1476,1.0,0.359484133211739).d_m_cpt937,112463 -d_d_cpt(45,-643,1.0,0.640379930664885).d_d_cpt938,112504 -d_d_cpt(45,-643,1.0,0.640379930664885).d_d_cpt938,112504 -b_m_cpt(45,*,1.0,0.0).b_m_cpt939,112544 -b_m_cpt(45,*,1.0,0.0).b_m_cpt939,112544 -m_e_cpt(45,*,1.0,0.0).m_e_cpt940,112567 -m_e_cpt(45,*,1.0,0.0).m_e_cpt940,112567 -consensus(46,18).consensus943,112602 -consensus(46,18).consensus943,112602 -m_m_cpt(46,-5,1.0,0.996540262827868).m_m_cpt952,114725 -m_m_cpt(46,-5,1.0,0.996540262827868).m_m_cpt952,114725 -m_i_cpt(46,-8846,1.0,0.00217314476676725).m_i_cpt953,114763 -m_i_cpt(46,-8846,1.0,0.00217314476676725).m_i_cpt953,114763 -m_d_cpt(46,-9888,1.0,0.00105539590042905).m_d_cpt954,114806 -m_d_cpt(46,-9888,1.0,0.00105539590042905).m_d_cpt954,114806 -i_i_cpt(46,-1115,1.0,0.461691155364697).i_i_cpt955,114849 -i_i_cpt(46,-1115,1.0,0.461691155364697).i_i_cpt955,114849 -i_m_cpt(46,-894,1.0,0.538120062391899).i_m_cpt956,114890 -i_m_cpt(46,-894,1.0,0.538120062391899).i_m_cpt956,114890 -d_m_cpt(46,-1476,1.0,0.359484133211739).d_m_cpt957,114930 -d_m_cpt(46,-1476,1.0,0.359484133211739).d_m_cpt957,114930 -d_d_cpt(46,-643,1.0,0.640379930664885).d_d_cpt958,114971 -d_d_cpt(46,-643,1.0,0.640379930664885).d_d_cpt958,114971 -b_m_cpt(46,*,1.0,0.0).b_m_cpt959,115011 -b_m_cpt(46,*,1.0,0.0).b_m_cpt959,115011 -m_e_cpt(46,*,1.0,0.0).m_e_cpt960,115034 -m_e_cpt(46,*,1.0,0.0).m_e_cpt960,115034 -consensus(47,18).consensus963,115069 -consensus(47,18).consensus963,115069 -m_m_cpt(47,-5,1.0,0.996540262827868).m_m_cpt972,117184 -m_m_cpt(47,-5,1.0,0.996540262827868).m_m_cpt972,117184 -m_i_cpt(47,-8846,1.0,0.00217314476676725).m_i_cpt973,117222 -m_i_cpt(47,-8846,1.0,0.00217314476676725).m_i_cpt973,117222 -m_d_cpt(47,-9888,1.0,0.00105539590042905).m_d_cpt974,117265 -m_d_cpt(47,-9888,1.0,0.00105539590042905).m_d_cpt974,117265 -i_i_cpt(47,-1115,1.0,0.461691155364697).i_i_cpt975,117308 -i_i_cpt(47,-1115,1.0,0.461691155364697).i_i_cpt975,117308 -i_m_cpt(47,-894,1.0,0.538120062391899).i_m_cpt976,117349 -i_m_cpt(47,-894,1.0,0.538120062391899).i_m_cpt976,117349 -d_m_cpt(47,-1476,1.0,0.359484133211739).d_m_cpt977,117389 -d_m_cpt(47,-1476,1.0,0.359484133211739).d_m_cpt977,117389 -d_d_cpt(47,-643,1.0,0.640379930664885).d_d_cpt978,117430 -d_d_cpt(47,-643,1.0,0.640379930664885).d_d_cpt978,117430 -b_m_cpt(47,*,1.0,0.0).b_m_cpt979,117470 -b_m_cpt(47,*,1.0,0.0).b_m_cpt979,117470 -m_e_cpt(47,*,1.0,0.0).m_e_cpt980,117493 -m_e_cpt(47,*,1.0,0.0).m_e_cpt980,117493 -consensus(48,20).consensus983,117528 -consensus(48,20).consensus983,117528 -m_m_cpt(48,-5,1.0,0.996540262827868).m_m_cpt992,119668 -m_m_cpt(48,-5,1.0,0.996540262827868).m_m_cpt992,119668 -m_i_cpt(48,-8846,1.0,0.00217314476676725).m_i_cpt993,119706 -m_i_cpt(48,-8846,1.0,0.00217314476676725).m_i_cpt993,119706 -m_d_cpt(48,-9888,1.0,0.00105539590042905).m_d_cpt994,119749 -m_d_cpt(48,-9888,1.0,0.00105539590042905).m_d_cpt994,119749 -i_i_cpt(48,-1115,1.0,0.461691155364697).i_i_cpt995,119792 -i_i_cpt(48,-1115,1.0,0.461691155364697).i_i_cpt995,119792 -i_m_cpt(48,-894,1.0,0.538120062391899).i_m_cpt996,119833 -i_m_cpt(48,-894,1.0,0.538120062391899).i_m_cpt996,119833 -d_m_cpt(48,-1476,1.0,0.359484133211739).d_m_cpt997,119873 -d_m_cpt(48,-1476,1.0,0.359484133211739).d_m_cpt997,119873 -d_d_cpt(48,-643,1.0,0.640379930664885).d_d_cpt998,119914 -d_d_cpt(48,-643,1.0,0.640379930664885).d_d_cpt998,119914 -b_m_cpt(48,*,1.0,0.0).b_m_cpt999,119954 -b_m_cpt(48,*,1.0,0.0).b_m_cpt999,119954 -m_e_cpt(48,*,1.0,0.0).m_e_cpt1000,119977 -m_e_cpt(48,*,1.0,0.0).m_e_cpt1000,119977 -consensus(49,13).consensus1003,120012 -consensus(49,13).consensus1003,120012 -m_m_cpt(49,-5,1.0,0.996540262827868).m_m_cpt1012,122182 -m_m_cpt(49,-5,1.0,0.996540262827868).m_m_cpt1012,122182 -m_i_cpt(49,-8846,1.0,0.00217314476676725).m_i_cpt1013,122220 -m_i_cpt(49,-8846,1.0,0.00217314476676725).m_i_cpt1013,122220 -m_d_cpt(49,-9888,1.0,0.00105539590042905).m_d_cpt1014,122263 -m_d_cpt(49,-9888,1.0,0.00105539590042905).m_d_cpt1014,122263 -i_i_cpt(49,-1115,1.0,0.461691155364697).i_i_cpt1015,122306 -i_i_cpt(49,-1115,1.0,0.461691155364697).i_i_cpt1015,122306 -i_m_cpt(49,-894,1.0,0.538120062391899).i_m_cpt1016,122347 -i_m_cpt(49,-894,1.0,0.538120062391899).i_m_cpt1016,122347 -d_m_cpt(49,-1476,1.0,0.359484133211739).d_m_cpt1017,122387 -d_m_cpt(49,-1476,1.0,0.359484133211739).d_m_cpt1017,122387 -d_d_cpt(49,-643,1.0,0.640379930664885).d_d_cpt1018,122428 -d_d_cpt(49,-643,1.0,0.640379930664885).d_d_cpt1018,122428 -b_m_cpt(49,*,1.0,0.0).b_m_cpt1019,122468 -b_m_cpt(49,*,1.0,0.0).b_m_cpt1019,122468 -m_e_cpt(49,*,1.0,0.0).m_e_cpt1020,122491 -m_e_cpt(49,*,1.0,0.0).m_e_cpt1020,122491 -consensus(50,19).consensus1023,122526 -consensus(50,19).consensus1023,122526 -m_m_cpt(50,-5,1.0,0.996540262827868).m_m_cpt1032,124656 -m_m_cpt(50,-5,1.0,0.996540262827868).m_m_cpt1032,124656 -m_i_cpt(50,-8846,1.0,0.00217314476676725).m_i_cpt1033,124694 -m_i_cpt(50,-8846,1.0,0.00217314476676725).m_i_cpt1033,124694 -m_d_cpt(50,-9888,1.0,0.00105539590042905).m_d_cpt1034,124737 -m_d_cpt(50,-9888,1.0,0.00105539590042905).m_d_cpt1034,124737 -i_i_cpt(50,-1115,1.0,0.461691155364697).i_i_cpt1035,124780 -i_i_cpt(50,-1115,1.0,0.461691155364697).i_i_cpt1035,124780 -i_m_cpt(50,-894,1.0,0.538120062391899).i_m_cpt1036,124821 -i_m_cpt(50,-894,1.0,0.538120062391899).i_m_cpt1036,124821 -d_m_cpt(50,-1476,1.0,0.359484133211739).d_m_cpt1037,124861 -d_m_cpt(50,-1476,1.0,0.359484133211739).d_m_cpt1037,124861 -d_d_cpt(50,-643,1.0,0.640379930664885).d_d_cpt1038,124902 -d_d_cpt(50,-643,1.0,0.640379930664885).d_d_cpt1038,124902 -b_m_cpt(50,*,1.0,0.0).b_m_cpt1039,124942 -b_m_cpt(50,*,1.0,0.0).b_m_cpt1039,124942 -m_e_cpt(50,*,1.0,0.0).m_e_cpt1040,124965 -m_e_cpt(50,*,1.0,0.0).m_e_cpt1040,124965 -consensus(51,17).consensus1043,125000 -consensus(51,17).consensus1043,125000 -m_m_cpt(51,-5,1.0,0.996540262827868).m_m_cpt1052,127141 -m_m_cpt(51,-5,1.0,0.996540262827868).m_m_cpt1052,127141 -m_i_cpt(51,-8846,1.0,0.00217314476676725).m_i_cpt1053,127179 -m_i_cpt(51,-8846,1.0,0.00217314476676725).m_i_cpt1053,127179 -m_d_cpt(51,-9888,1.0,0.00105539590042905).m_d_cpt1054,127222 -m_d_cpt(51,-9888,1.0,0.00105539590042905).m_d_cpt1054,127222 -i_i_cpt(51,-1115,1.0,0.461691155364697).i_i_cpt1055,127265 -i_i_cpt(51,-1115,1.0,0.461691155364697).i_i_cpt1055,127265 -i_m_cpt(51,-894,1.0,0.538120062391899).i_m_cpt1056,127306 -i_m_cpt(51,-894,1.0,0.538120062391899).i_m_cpt1056,127306 -d_m_cpt(51,-1476,1.0,0.359484133211739).d_m_cpt1057,127346 -d_m_cpt(51,-1476,1.0,0.359484133211739).d_m_cpt1057,127346 -d_d_cpt(51,-643,1.0,0.640379930664885).d_d_cpt1058,127387 -d_d_cpt(51,-643,1.0,0.640379930664885).d_d_cpt1058,127387 -b_m_cpt(51,*,1.0,0.0).b_m_cpt1059,127427 -b_m_cpt(51,*,1.0,0.0).b_m_cpt1059,127427 -m_e_cpt(51,*,1.0,0.0).m_e_cpt1060,127450 -m_e_cpt(51,*,1.0,0.0).m_e_cpt1060,127450 -consensus(52,14).consensus1063,127485 -consensus(52,14).consensus1063,127485 -m_m_cpt(52,-5,1.0,0.996540262827868).m_m_cpt1072,129627 -m_m_cpt(52,-5,1.0,0.996540262827868).m_m_cpt1072,129627 -m_i_cpt(52,-8846,1.0,0.00217314476676725).m_i_cpt1073,129665 -m_i_cpt(52,-8846,1.0,0.00217314476676725).m_i_cpt1073,129665 -m_d_cpt(52,-9888,1.0,0.00105539590042905).m_d_cpt1074,129708 -m_d_cpt(52,-9888,1.0,0.00105539590042905).m_d_cpt1074,129708 -i_i_cpt(52,-1115,1.0,0.461691155364697).i_i_cpt1075,129751 -i_i_cpt(52,-1115,1.0,0.461691155364697).i_i_cpt1075,129751 -i_m_cpt(52,-894,1.0,0.538120062391899).i_m_cpt1076,129792 -i_m_cpt(52,-894,1.0,0.538120062391899).i_m_cpt1076,129792 -d_m_cpt(52,-1476,1.0,0.359484133211739).d_m_cpt1077,129832 -d_m_cpt(52,-1476,1.0,0.359484133211739).d_m_cpt1077,129832 -d_d_cpt(52,-643,1.0,0.640379930664885).d_d_cpt1078,129873 -d_d_cpt(52,-643,1.0,0.640379930664885).d_d_cpt1078,129873 -b_m_cpt(52,*,1.0,0.0).b_m_cpt1079,129913 -b_m_cpt(52,*,1.0,0.0).b_m_cpt1079,129913 -m_e_cpt(52,*,1.0,0.0).m_e_cpt1080,129936 -m_e_cpt(52,*,1.0,0.0).m_e_cpt1080,129936 -consensus(53,15).consensus1083,129971 -consensus(53,15).consensus1083,129971 -m_m_cpt(53,-5,1.0,0.996540262827868).m_m_cpt1092,132099 -m_m_cpt(53,-5,1.0,0.996540262827868).m_m_cpt1092,132099 -m_i_cpt(53,-8846,1.0,0.00217314476676725).m_i_cpt1093,132137 -m_i_cpt(53,-8846,1.0,0.00217314476676725).m_i_cpt1093,132137 -m_d_cpt(53,-9888,1.0,0.00105539590042905).m_d_cpt1094,132180 -m_d_cpt(53,-9888,1.0,0.00105539590042905).m_d_cpt1094,132180 -i_i_cpt(53,-1115,1.0,0.461691155364697).i_i_cpt1095,132223 -i_i_cpt(53,-1115,1.0,0.461691155364697).i_i_cpt1095,132223 -i_m_cpt(53,-894,1.0,0.538120062391899).i_m_cpt1096,132264 -i_m_cpt(53,-894,1.0,0.538120062391899).i_m_cpt1096,132264 -d_m_cpt(53,-1476,1.0,0.359484133211739).d_m_cpt1097,132304 -d_m_cpt(53,-1476,1.0,0.359484133211739).d_m_cpt1097,132304 -d_d_cpt(53,-643,1.0,0.640379930664885).d_d_cpt1098,132345 -d_d_cpt(53,-643,1.0,0.640379930664885).d_d_cpt1098,132345 -b_m_cpt(53,*,1.0,0.0).b_m_cpt1099,132385 -b_m_cpt(53,*,1.0,0.0).b_m_cpt1099,132385 -m_e_cpt(53,*,1.0,0.0).m_e_cpt1100,132408 -m_e_cpt(53,*,1.0,0.0).m_e_cpt1100,132408 -consensus(54,20).consensus1103,132443 -consensus(54,20).consensus1103,132443 -m_m_cpt(54,-5,1.0,0.996540262827868).m_m_cpt1112,134582 -m_m_cpt(54,-5,1.0,0.996540262827868).m_m_cpt1112,134582 -m_i_cpt(54,-8846,1.0,0.00217314476676725).m_i_cpt1113,134620 -m_i_cpt(54,-8846,1.0,0.00217314476676725).m_i_cpt1113,134620 -m_d_cpt(54,-9888,1.0,0.00105539590042905).m_d_cpt1114,134663 -m_d_cpt(54,-9888,1.0,0.00105539590042905).m_d_cpt1114,134663 -i_i_cpt(54,-1115,1.0,0.461691155364697).i_i_cpt1115,134706 -i_i_cpt(54,-1115,1.0,0.461691155364697).i_i_cpt1115,134706 -i_m_cpt(54,-894,1.0,0.538120062391899).i_m_cpt1116,134747 -i_m_cpt(54,-894,1.0,0.538120062391899).i_m_cpt1116,134747 -d_m_cpt(54,-1476,1.0,0.359484133211739).d_m_cpt1117,134787 -d_m_cpt(54,-1476,1.0,0.359484133211739).d_m_cpt1117,134787 -d_d_cpt(54,-643,1.0,0.640379930664885).d_d_cpt1118,134828 -d_d_cpt(54,-643,1.0,0.640379930664885).d_d_cpt1118,134828 -b_m_cpt(54,*,1.0,0.0).b_m_cpt1119,134868 -b_m_cpt(54,*,1.0,0.0).b_m_cpt1119,134868 -m_e_cpt(54,*,1.0,0.0).m_e_cpt1120,134891 -m_e_cpt(54,*,1.0,0.0).m_e_cpt1120,134891 -consensus(55,5).consensus1123,134926 -consensus(55,5).consensus1123,134926 -m_m_cpt(55,-5,1.0,0.996540262827868).m_m_cpt1132,137091 -m_m_cpt(55,-5,1.0,0.996540262827868).m_m_cpt1132,137091 -m_i_cpt(55,-8846,1.0,0.00217314476676725).m_i_cpt1133,137129 -m_i_cpt(55,-8846,1.0,0.00217314476676725).m_i_cpt1133,137129 -m_d_cpt(55,-9888,1.0,0.00105539590042905).m_d_cpt1134,137172 -m_d_cpt(55,-9888,1.0,0.00105539590042905).m_d_cpt1134,137172 -i_i_cpt(55,-1115,1.0,0.461691155364697).i_i_cpt1135,137215 -i_i_cpt(55,-1115,1.0,0.461691155364697).i_i_cpt1135,137215 -i_m_cpt(55,-894,1.0,0.538120062391899).i_m_cpt1136,137256 -i_m_cpt(55,-894,1.0,0.538120062391899).i_m_cpt1136,137256 -d_m_cpt(55,-1476,1.0,0.359484133211739).d_m_cpt1137,137296 -d_m_cpt(55,-1476,1.0,0.359484133211739).d_m_cpt1137,137296 -d_d_cpt(55,-643,1.0,0.640379930664885).d_d_cpt1138,137337 -d_d_cpt(55,-643,1.0,0.640379930664885).d_d_cpt1138,137337 -b_m_cpt(55,*,1.0,0.0).b_m_cpt1139,137377 -b_m_cpt(55,*,1.0,0.0).b_m_cpt1139,137377 -m_e_cpt(55,*,1.0,0.0).m_e_cpt1140,137400 -m_e_cpt(55,*,1.0,0.0).m_e_cpt1140,137400 -consensus(56,13).consensus1143,137435 -consensus(56,13).consensus1143,137435 -m_m_cpt(56,-5,1.0,0.996540262827868).m_m_cpt1152,139576 -m_m_cpt(56,-5,1.0,0.996540262827868).m_m_cpt1152,139576 -m_i_cpt(56,-8846,1.0,0.00217314476676725).m_i_cpt1153,139614 -m_i_cpt(56,-8846,1.0,0.00217314476676725).m_i_cpt1153,139614 -m_d_cpt(56,-9888,1.0,0.00105539590042905).m_d_cpt1154,139657 -m_d_cpt(56,-9888,1.0,0.00105539590042905).m_d_cpt1154,139657 -i_i_cpt(56,-1115,1.0,0.461691155364697).i_i_cpt1155,139700 -i_i_cpt(56,-1115,1.0,0.461691155364697).i_i_cpt1155,139700 -i_m_cpt(56,-894,1.0,0.538120062391899).i_m_cpt1156,139741 -i_m_cpt(56,-894,1.0,0.538120062391899).i_m_cpt1156,139741 -d_m_cpt(56,-1476,1.0,0.359484133211739).d_m_cpt1157,139781 -d_m_cpt(56,-1476,1.0,0.359484133211739).d_m_cpt1157,139781 -d_d_cpt(56,-643,1.0,0.640379930664885).d_d_cpt1158,139822 -d_d_cpt(56,-643,1.0,0.640379930664885).d_d_cpt1158,139822 -b_m_cpt(56,*,1.0,0.0).b_m_cpt1159,139862 -b_m_cpt(56,*,1.0,0.0).b_m_cpt1159,139862 -m_e_cpt(56,*,1.0,0.0).m_e_cpt1160,139885 -m_e_cpt(56,*,1.0,0.0).m_e_cpt1160,139885 -consensus(57,7).consensus1163,139920 -consensus(57,7).consensus1163,139920 -m_m_cpt(57,-5,1.0,0.996540262827868).m_m_cpt1172,142051 -m_m_cpt(57,-5,1.0,0.996540262827868).m_m_cpt1172,142051 -m_i_cpt(57,-8846,1.0,0.00217314476676725).m_i_cpt1173,142089 -m_i_cpt(57,-8846,1.0,0.00217314476676725).m_i_cpt1173,142089 -m_d_cpt(57,-9888,1.0,0.00105539590042905).m_d_cpt1174,142132 -m_d_cpt(57,-9888,1.0,0.00105539590042905).m_d_cpt1174,142132 -i_i_cpt(57,-1115,1.0,0.461691155364697).i_i_cpt1175,142175 -i_i_cpt(57,-1115,1.0,0.461691155364697).i_i_cpt1175,142175 -i_m_cpt(57,-894,1.0,0.538120062391899).i_m_cpt1176,142216 -i_m_cpt(57,-894,1.0,0.538120062391899).i_m_cpt1176,142216 -d_m_cpt(57,-367,1.0,0.775393206347005).d_m_cpt1177,142256 -d_m_cpt(57,-367,1.0,0.775393206347005).d_m_cpt1177,142256 -d_d_cpt(57,-2153,1.0,0.224844578036938).d_d_cpt1178,142296 -d_d_cpt(57,-2153,1.0,0.224844578036938).d_d_cpt1178,142296 -b_m_cpt(57,*,1.0,0.0).b_m_cpt1179,142337 -b_m_cpt(57,*,1.0,0.0).b_m_cpt1179,142337 -m_e_cpt(57,*,1.0,0.0).m_e_cpt1180,142360 -m_e_cpt(57,*,1.0,0.0).m_e_cpt1180,142360 -consensus(58,5).consensus1183,142395 -consensus(58,5).consensus1183,142395 -m_m_cpt(58,-4,1.0,0.997231251352069).m_m_cpt1192,144550 -m_m_cpt(58,-4,1.0,0.997231251352069).m_m_cpt1192,144550 -m_i_cpt(58,-8959,1.0,0.00200942716385464).m_i_cpt1193,144588 -m_i_cpt(58,-8959,1.0,0.00200942716385464).m_i_cpt1193,144588 -m_d_cpt(58,-10001,1.0,0.000975885832998489).m_d_cpt1194,144631 -m_d_cpt(58,-10001,1.0,0.000975885832998489).m_d_cpt1194,144631 -i_i_cpt(58,-1115,1.0,0.461691155364697).i_i_cpt1195,144676 -i_i_cpt(58,-1115,1.0,0.461691155364697).i_i_cpt1195,144676 -i_m_cpt(58,-894,1.0,0.538120062391899).i_m_cpt1196,144717 -i_m_cpt(58,-894,1.0,0.538120062391899).i_m_cpt1196,144717 -d_m_cpt(58,-701,1.0,0.615145672375572).d_m_cpt1197,144757 -d_m_cpt(58,-701,1.0,0.615145672375572).d_m_cpt1197,144757 -d_d_cpt(58,-1378,1.0,0.384751805040216).d_d_cpt1198,144797 -d_d_cpt(58,-1378,1.0,0.384751805040216).d_d_cpt1198,144797 -b_m_cpt(58,*,1.0,0.0).b_m_cpt1199,144838 -b_m_cpt(58,*,1.0,0.0).b_m_cpt1199,144838 -m_e_cpt(58,*,1.0,0.0).m_e_cpt1200,144861 -m_e_cpt(58,*,1.0,0.0).m_e_cpt1200,144861 -consensus(59,6).consensus1203,144896 -consensus(59,6).consensus1203,144896 -m_m_cpt(59,-392,1.0,0.762072415169885).m_m_cpt1212,147030 -m_m_cpt(59,-392,1.0,0.762072415169885).m_m_cpt1212,147030 -m_i_cpt(59,-8959,1.0,0.00200942716385464).m_i_cpt1213,147070 -m_i_cpt(59,-8959,1.0,0.00200942716385464).m_i_cpt1213,147070 -m_d_cpt(59,-2085,1.0,0.23569613397956).m_d_cpt1214,147113 -m_d_cpt(59,-2085,1.0,0.23569613397956).m_d_cpt1214,147113 -i_i_cpt(59,-1115,1.0,0.461691155364697).i_i_cpt1215,147153 -i_i_cpt(59,-1115,1.0,0.461691155364697).i_i_cpt1215,147153 -i_m_cpt(59,-894,1.0,0.538120062391899).i_m_cpt1216,147194 -i_m_cpt(59,-894,1.0,0.538120062391899).i_m_cpt1216,147194 -d_m_cpt(59,-701,1.0,0.615145672375572).d_m_cpt1217,147234 -d_m_cpt(59,-701,1.0,0.615145672375572).d_m_cpt1217,147234 -d_d_cpt(59,-1378,1.0,0.384751805040216).d_d_cpt1218,147274 -d_d_cpt(59,-1378,1.0,0.384751805040216).d_d_cpt1218,147274 -b_m_cpt(59,*,1.0,0.0).b_m_cpt1219,147315 -b_m_cpt(59,*,1.0,0.0).b_m_cpt1219,147315 -m_e_cpt(59,*,1.0,0.0).m_e_cpt1220,147338 -m_e_cpt(59,*,1.0,0.0).m_e_cpt1220,147338 -consensus(60,3).consensus1223,147373 -consensus(60,3).consensus1223,147373 -m_m_cpt(60,-93,1.0,0.93757109645711).m_m_cpt1232,149501 -m_m_cpt(60,-93,1.0,0.93757109645711).m_m_cpt1232,149501 -m_i_cpt(60,-8573,1.0,0.00262584959795435).m_i_cpt1233,149539 -m_i_cpt(60,-8573,1.0,0.00262584959795435).m_i_cpt1233,149539 -m_d_cpt(60,-4067,1.0,0.0596638133837323).m_d_cpt1234,149582 -m_d_cpt(60,-4067,1.0,0.0596638133837323).m_d_cpt1234,149582 -i_i_cpt(60,-1115,1.0,0.461691155364697).i_i_cpt1235,149624 -i_i_cpt(60,-1115,1.0,0.461691155364697).i_i_cpt1235,149624 -i_m_cpt(60,-894,1.0,0.538120062391899).i_m_cpt1236,149665 -i_m_cpt(60,-894,1.0,0.538120062391899).i_m_cpt1236,149665 -d_m_cpt(60,-184,1.0,0.880259013563151).d_m_cpt1237,149705 -d_m_cpt(60,-184,1.0,0.880259013563151).d_m_cpt1237,149705 -d_d_cpt(60,-3065,1.0,0.119493164699218).d_d_cpt1238,149745 -d_d_cpt(60,-3065,1.0,0.119493164699218).d_d_cpt1238,149745 -b_m_cpt(60,*,1.0,0.0).b_m_cpt1239,149786 -b_m_cpt(60,*,1.0,0.0).b_m_cpt1239,149786 -m_e_cpt(60,*,1.0,0.0).m_e_cpt1240,149809 -m_e_cpt(60,*,1.0,0.0).m_e_cpt1240,149809 -consensus(61,10).consensus1243,149844 -consensus(61,10).consensus1243,149844 -m_m_cpt(61,-187,1.0,0.878430468238362).m_m_cpt1252,151990 -m_m_cpt(61,-187,1.0,0.878430468238362).m_m_cpt1252,151990 -m_i_cpt(61,-8893,1.0,0.00210348901600205).m_i_cpt1253,152030 -m_i_cpt(61,-8893,1.0,0.00210348901600205).m_i_cpt1253,152030 -m_d_cpt(61,-3069,1.0,0.11916231816102).m_d_cpt1254,152073 -m_d_cpt(61,-3069,1.0,0.11916231816102).m_d_cpt1254,152073 -i_i_cpt(61,-1115,1.0,0.461691155364697).i_i_cpt1255,152113 -i_i_cpt(61,-1115,1.0,0.461691155364697).i_i_cpt1255,152113 -i_m_cpt(61,-894,1.0,0.538120062391899).i_m_cpt1256,152154 -i_m_cpt(61,-894,1.0,0.538120062391899).i_m_cpt1256,152154 -d_m_cpt(61,-455,1.0,0.729510172120088).d_m_cpt1257,152194 -d_m_cpt(61,-455,1.0,0.729510172120088).d_m_cpt1257,152194 -d_d_cpt(61,-1886,1.0,0.270556161131429).d_d_cpt1258,152234 -d_d_cpt(61,-1886,1.0,0.270556161131429).d_d_cpt1258,152234 -b_m_cpt(61,*,1.0,0.0).b_m_cpt1259,152275 -b_m_cpt(61,*,1.0,0.0).b_m_cpt1259,152275 -m_e_cpt(61,*,1.0,0.0).m_e_cpt1260,152298 -m_e_cpt(61,*,1.0,0.0).m_e_cpt1260,152298 -consensus(62,16).consensus1263,152333 -consensus(62,16).consensus1263,152333 -m_m_cpt(62,-5,1.0,0.996540262827868).m_m_cpt1272,154466 -m_m_cpt(62,-5,1.0,0.996540262827868).m_m_cpt1272,154466 -m_i_cpt(62,-8786,1.0,0.00226542901270593).m_i_cpt1273,154504 -m_i_cpt(62,-8786,1.0,0.00226542901270593).m_i_cpt1273,154504 -m_d_cpt(62,-9828,1.0,0.00110021409032937).m_d_cpt1274,154547 -m_d_cpt(62,-9828,1.0,0.00110021409032937).m_d_cpt1274,154547 -i_i_cpt(62,-1115,1.0,0.461691155364697).i_i_cpt1275,154590 -i_i_cpt(62,-1115,1.0,0.461691155364697).i_i_cpt1275,154590 -i_m_cpt(62,-894,1.0,0.538120062391899).i_m_cpt1276,154631 -i_m_cpt(62,-894,1.0,0.538120062391899).i_m_cpt1276,154631 -d_m_cpt(62,-297,1.0,0.813943185070435).d_m_cpt1277,154671 -d_m_cpt(62,-297,1.0,0.813943185070435).d_m_cpt1277,154671 -d_d_cpt(62,-2426,1.0,0.186080656895817).d_d_cpt1278,154711 -d_d_cpt(62,-2426,1.0,0.186080656895817).d_d_cpt1278,154711 -b_m_cpt(62,*,1.0,0.0).b_m_cpt1279,154752 -b_m_cpt(62,*,1.0,0.0).b_m_cpt1279,154752 -m_e_cpt(62,*,1.0,0.0).m_e_cpt1280,154775 -m_e_cpt(62,*,1.0,0.0).m_e_cpt1280,154775 -consensus(63,16).consensus1283,154810 -consensus(63,16).consensus1283,154810 -m_m_cpt(63,-461,1.0,0.726482524785685).m_m_cpt1292,156938 -m_m_cpt(63,-461,1.0,0.726482524785685).m_m_cpt1292,156938 -m_i_cpt(63,-8959,1.0,0.00200942716385464).m_i_cpt1293,156978 -m_i_cpt(63,-8959,1.0,0.00200942716385464).m_i_cpt1293,156978 -m_d_cpt(63,-1880,1.0,0.271683715631515).m_d_cpt1294,157021 -m_d_cpt(63,-1880,1.0,0.271683715631515).m_d_cpt1294,157021 -i_i_cpt(63,-1115,1.0,0.461691155364697).i_i_cpt1295,157062 -i_i_cpt(63,-1115,1.0,0.461691155364697).i_i_cpt1295,157062 -i_m_cpt(63,-894,1.0,0.538120062391899).i_m_cpt1296,157103 -i_m_cpt(63,-894,1.0,0.538120062391899).i_m_cpt1296,157103 -d_m_cpt(63,-701,1.0,0.615145672375572).d_m_cpt1297,157143 -d_m_cpt(63,-701,1.0,0.615145672375572).d_m_cpt1297,157143 -d_d_cpt(63,-1378,1.0,0.384751805040216).d_d_cpt1298,157183 -d_d_cpt(63,-1378,1.0,0.384751805040216).d_d_cpt1298,157183 -b_m_cpt(63,*,1.0,0.0).b_m_cpt1299,157224 -b_m_cpt(63,*,1.0,0.0).b_m_cpt1299,157224 -m_e_cpt(63,*,1.0,0.0).m_e_cpt1300,157247 -m_e_cpt(63,*,1.0,0.0).m_e_cpt1300,157247 -consensus(64,10).consensus1303,157282 -consensus(64,10).consensus1303,157282 -m_m_cpt(64,-6,1.0,0.995849753094458).m_m_cpt1312,159404 -m_m_cpt(64,-6,1.0,0.995849753094458).m_m_cpt1312,159404 -m_i_cpt(64,-8504,1.0,0.00275448820407107).m_i_cpt1313,159442 -m_i_cpt(64,-8504,1.0,0.00275448820407107).m_i_cpt1313,159442 -m_d_cpt(64,-9546,1.0,0.00133772751949762).m_d_cpt1314,159485 -m_d_cpt(64,-9546,1.0,0.00133772751949762).m_d_cpt1314,159485 -i_i_cpt(64,-1115,1.0,0.461691155364697).i_i_cpt1315,159528 -i_i_cpt(64,-1115,1.0,0.461691155364697).i_i_cpt1315,159528 -i_m_cpt(64,-894,1.0,0.538120062391899).i_m_cpt1316,159569 -i_m_cpt(64,-894,1.0,0.538120062391899).i_m_cpt1316,159569 -d_m_cpt(64,-2532,1.0,0.172898828626371).d_m_cpt1317,159609 -d_m_cpt(64,-2532,1.0,0.172898828626371).d_m_cpt1317,159609 -d_d_cpt(64,-274,1.0,0.827023368443266).d_d_cpt1318,159650 -d_d_cpt(64,-274,1.0,0.827023368443266).d_d_cpt1318,159650 -b_m_cpt(64,*,1.0,0.0).b_m_cpt1319,159690 -b_m_cpt(64,*,1.0,0.0).b_m_cpt1319,159690 -m_e_cpt(64,*,1.0,0.0).m_e_cpt1320,159713 -m_e_cpt(64,*,1.0,0.0).m_e_cpt1320,159713 -consensus(65,3).consensus1323,159748 -consensus(65,3).consensus1323,159748 -m_m_cpt(65,-6,1.0,0.995849753094458).m_m_cpt1332,161872 -m_m_cpt(65,-6,1.0,0.995849753094458).m_m_cpt1332,161872 -m_i_cpt(65,-8504,1.0,0.00275448820407107).m_i_cpt1333,161910 -m_i_cpt(65,-8504,1.0,0.00275448820407107).m_i_cpt1333,161910 -m_d_cpt(65,-9546,1.0,0.00133772751949762).m_d_cpt1334,161953 -m_d_cpt(65,-9546,1.0,0.00133772751949762).m_d_cpt1334,161953 -i_i_cpt(65,-1115,1.0,0.461691155364697).i_i_cpt1335,161996 -i_i_cpt(65,-1115,1.0,0.461691155364697).i_i_cpt1335,161996 -i_m_cpt(65,-894,1.0,0.538120062391899).i_m_cpt1336,162037 -i_m_cpt(65,-894,1.0,0.538120062391899).i_m_cpt1336,162037 -d_m_cpt(65,-2532,1.0,0.172898828626371).d_m_cpt1337,162077 -d_m_cpt(65,-2532,1.0,0.172898828626371).d_m_cpt1337,162077 -d_d_cpt(65,-274,1.0,0.827023368443266).d_d_cpt1338,162118 -d_d_cpt(65,-274,1.0,0.827023368443266).d_d_cpt1338,162118 -b_m_cpt(65,*,1.0,0.0).b_m_cpt1339,162158 -b_m_cpt(65,*,1.0,0.0).b_m_cpt1339,162158 -m_e_cpt(65,*,1.0,0.0).m_e_cpt1340,162181 -m_e_cpt(65,*,1.0,0.0).m_e_cpt1340,162181 -consensus(66,1).consensus1343,162216 -consensus(66,1).consensus1343,162216 -m_m_cpt(66,-6,1.0,0.995849753094458).m_m_cpt1352,164358 -m_m_cpt(66,-6,1.0,0.995849753094458).m_m_cpt1352,164358 -m_i_cpt(66,-8504,1.0,0.00275448820407107).m_i_cpt1353,164396 -m_i_cpt(66,-8504,1.0,0.00275448820407107).m_i_cpt1353,164396 -m_d_cpt(66,-9546,1.0,0.00133772751949762).m_d_cpt1354,164439 -m_d_cpt(66,-9546,1.0,0.00133772751949762).m_d_cpt1354,164439 -i_i_cpt(66,-1115,1.0,0.461691155364697).i_i_cpt1355,164482 -i_i_cpt(66,-1115,1.0,0.461691155364697).i_i_cpt1355,164482 -i_m_cpt(66,-894,1.0,0.538120062391899).i_m_cpt1356,164523 -i_m_cpt(66,-894,1.0,0.538120062391899).i_m_cpt1356,164523 -d_m_cpt(66,-2532,1.0,0.172898828626371).d_m_cpt1357,164563 -d_m_cpt(66,-2532,1.0,0.172898828626371).d_m_cpt1357,164563 -d_d_cpt(66,-274,1.0,0.827023368443266).d_d_cpt1358,164604 -d_d_cpt(66,-274,1.0,0.827023368443266).d_d_cpt1358,164604 -b_m_cpt(66,*,1.0,0.0).b_m_cpt1359,164644 -b_m_cpt(66,*,1.0,0.0).b_m_cpt1359,164644 -m_e_cpt(66,*,1.0,0.0).m_e_cpt1360,164667 -m_e_cpt(66,*,1.0,0.0).m_e_cpt1360,164667 -consensus(67,18).consensus1363,164702 -consensus(67,18).consensus1363,164702 -m_m_cpt(67,-6,1.0,0.995849753094458).m_m_cpt1372,166852 -m_m_cpt(67,-6,1.0,0.995849753094458).m_m_cpt1372,166852 -m_i_cpt(67,-8504,1.0,0.00275448820407107).m_i_cpt1373,166890 -m_i_cpt(67,-8504,1.0,0.00275448820407107).m_i_cpt1373,166890 -m_d_cpt(67,-9546,1.0,0.00133772751949762).m_d_cpt1374,166933 -m_d_cpt(67,-9546,1.0,0.00133772751949762).m_d_cpt1374,166933 -i_i_cpt(67,-1115,1.0,0.461691155364697).i_i_cpt1375,166976 -i_i_cpt(67,-1115,1.0,0.461691155364697).i_i_cpt1375,166976 -i_m_cpt(67,-894,1.0,0.538120062391899).i_m_cpt1376,167017 -i_m_cpt(67,-894,1.0,0.538120062391899).i_m_cpt1376,167017 -d_m_cpt(67,-2532,1.0,0.172898828626371).d_m_cpt1377,167057 -d_m_cpt(67,-2532,1.0,0.172898828626371).d_m_cpt1377,167057 -d_d_cpt(67,-274,1.0,0.827023368443266).d_d_cpt1378,167098 -d_d_cpt(67,-274,1.0,0.827023368443266).d_d_cpt1378,167098 -b_m_cpt(67,*,1.0,0.0).b_m_cpt1379,167138 -b_m_cpt(67,*,1.0,0.0).b_m_cpt1379,167138 -m_e_cpt(67,*,1.0,0.0).m_e_cpt1380,167161 -m_e_cpt(67,*,1.0,0.0).m_e_cpt1380,167161 -consensus(68,9).consensus1383,167196 -consensus(68,9).consensus1383,167196 -m_m_cpt(68,-6,1.0,0.995849753094458).m_m_cpt1392,169314 -m_m_cpt(68,-6,1.0,0.995849753094458).m_m_cpt1392,169314 -m_i_cpt(68,-8504,1.0,0.00275448820407107).m_i_cpt1393,169352 -m_i_cpt(68,-8504,1.0,0.00275448820407107).m_i_cpt1393,169352 -m_d_cpt(68,-9546,1.0,0.00133772751949762).m_d_cpt1394,169395 -m_d_cpt(68,-9546,1.0,0.00133772751949762).m_d_cpt1394,169395 -i_i_cpt(68,-1115,1.0,0.461691155364697).i_i_cpt1395,169438 -i_i_cpt(68,-1115,1.0,0.461691155364697).i_i_cpt1395,169438 -i_m_cpt(68,-894,1.0,0.538120062391899).i_m_cpt1396,169479 -i_m_cpt(68,-894,1.0,0.538120062391899).i_m_cpt1396,169479 -d_m_cpt(68,-165,1.0,0.891928519420093).d_m_cpt1397,169519 -d_m_cpt(68,-165,1.0,0.891928519420093).d_m_cpt1397,169519 -d_d_cpt(68,-3209,1.0,0.108142086323124).d_d_cpt1398,169559 -d_d_cpt(68,-3209,1.0,0.108142086323124).d_d_cpt1398,169559 -b_m_cpt(68,*,1.0,0.0).b_m_cpt1399,169600 -b_m_cpt(68,*,1.0,0.0).b_m_cpt1399,169600 -m_e_cpt(68,*,1.0,0.0).m_e_cpt1400,169623 -m_e_cpt(68,*,1.0,0.0).m_e_cpt1400,169623 -consensus(69,6).consensus1403,169658 -consensus(69,6).consensus1403,169658 -m_m_cpt(69,-4,1.0,0.997231251352069).m_m_cpt1412,171792 -m_m_cpt(69,-4,1.0,0.997231251352069).m_m_cpt1412,171792 -m_i_cpt(69,-8959,1.0,0.00200942716385464).m_i_cpt1413,171830 -m_i_cpt(69,-8959,1.0,0.00200942716385464).m_i_cpt1413,171830 -m_d_cpt(69,-10001,1.0,0.000975885832998489).m_d_cpt1414,171873 -m_d_cpt(69,-10001,1.0,0.000975885832998489).m_d_cpt1414,171873 -i_i_cpt(69,-1115,1.0,0.461691155364697).i_i_cpt1415,171918 -i_i_cpt(69,-1115,1.0,0.461691155364697).i_i_cpt1415,171918 -i_m_cpt(69,-894,1.0,0.538120062391899).i_m_cpt1416,171959 -i_m_cpt(69,-894,1.0,0.538120062391899).i_m_cpt1416,171959 -d_m_cpt(69,-701,1.0,0.615145672375572).d_m_cpt1417,171999 -d_m_cpt(69,-701,1.0,0.615145672375572).d_m_cpt1417,171999 -d_d_cpt(69,-1378,1.0,0.384751805040216).d_d_cpt1418,172039 -d_d_cpt(69,-1378,1.0,0.384751805040216).d_d_cpt1418,172039 -b_m_cpt(69,*,1.0,0.0).b_m_cpt1419,172080 -b_m_cpt(69,*,1.0,0.0).b_m_cpt1419,172080 -m_e_cpt(69,*,1.0,0.0).m_e_cpt1420,172103 -m_e_cpt(69,*,1.0,0.0).m_e_cpt1420,172103 -consensus(70,16).consensus1423,172138 -consensus(70,16).consensus1423,172138 -m_m_cpt(70,-4,1.0,0.997231251352069).m_m_cpt1432,174287 -m_m_cpt(70,-4,1.0,0.997231251352069).m_m_cpt1432,174287 -m_i_cpt(70,-8959,1.0,0.00200942716385464).m_i_cpt1433,174325 -m_i_cpt(70,-8959,1.0,0.00200942716385464).m_i_cpt1433,174325 -m_d_cpt(70,-10001,1.0,0.000975885832998489).m_d_cpt1434,174368 -m_d_cpt(70,-10001,1.0,0.000975885832998489).m_d_cpt1434,174368 -i_i_cpt(70,-1115,1.0,0.461691155364697).i_i_cpt1435,174413 -i_i_cpt(70,-1115,1.0,0.461691155364697).i_i_cpt1435,174413 -i_m_cpt(70,-894,1.0,0.538120062391899).i_m_cpt1436,174454 -i_m_cpt(70,-894,1.0,0.538120062391899).i_m_cpt1436,174454 -d_m_cpt(70,-701,1.0,0.615145672375572).d_m_cpt1437,174494 -d_m_cpt(70,-701,1.0,0.615145672375572).d_m_cpt1437,174494 -d_d_cpt(70,-1378,1.0,0.384751805040216).d_d_cpt1438,174534 -d_d_cpt(70,-1378,1.0,0.384751805040216).d_d_cpt1438,174534 -b_m_cpt(70,*,1.0,0.0).b_m_cpt1439,174575 -b_m_cpt(70,*,1.0,0.0).b_m_cpt1439,174575 -m_e_cpt(70,*,1.0,0.0).m_e_cpt1440,174598 -m_e_cpt(70,*,1.0,0.0).m_e_cpt1440,174598 -consensus(71,13).consensus1443,174633 -consensus(71,13).consensus1443,174633 -m_m_cpt(71,-4,1.0,0.997231251352069).m_m_cpt1452,176767 -m_m_cpt(71,-4,1.0,0.997231251352069).m_m_cpt1452,176767 -m_i_cpt(71,-8959,1.0,0.00200942716385464).m_i_cpt1453,176805 -m_i_cpt(71,-8959,1.0,0.00200942716385464).m_i_cpt1453,176805 -m_d_cpt(71,-10001,1.0,0.000975885832998489).m_d_cpt1454,176848 -m_d_cpt(71,-10001,1.0,0.000975885832998489).m_d_cpt1454,176848 -i_i_cpt(71,-1115,1.0,0.461691155364697).i_i_cpt1455,176893 -i_i_cpt(71,-1115,1.0,0.461691155364697).i_i_cpt1455,176893 -i_m_cpt(71,-894,1.0,0.538120062391899).i_m_cpt1456,176934 -i_m_cpt(71,-894,1.0,0.538120062391899).i_m_cpt1456,176934 -d_m_cpt(71,-701,1.0,0.615145672375572).d_m_cpt1457,176974 -d_m_cpt(71,-701,1.0,0.615145672375572).d_m_cpt1457,176974 -d_d_cpt(71,-1378,1.0,0.384751805040216).d_d_cpt1458,177014 -d_d_cpt(71,-1378,1.0,0.384751805040216).d_d_cpt1458,177014 -b_m_cpt(71,*,1.0,0.0).b_m_cpt1459,177055 -b_m_cpt(71,*,1.0,0.0).b_m_cpt1459,177055 -m_e_cpt(71,*,1.0,0.0).m_e_cpt1460,177078 -m_e_cpt(71,*,1.0,0.0).m_e_cpt1460,177078 -consensus(72,9).consensus1463,177113 -consensus(72,9).consensus1463,177113 -m_m_cpt(72,-4,1.0,0.997231251352069).m_m_cpt1472,179243 -m_m_cpt(72,-4,1.0,0.997231251352069).m_m_cpt1472,179243 -m_i_cpt(72,-8959,1.0,0.00200942716385464).m_i_cpt1473,179281 -m_i_cpt(72,-8959,1.0,0.00200942716385464).m_i_cpt1473,179281 -m_d_cpt(72,-10001,1.0,0.000975885832998489).m_d_cpt1474,179324 -m_d_cpt(72,-10001,1.0,0.000975885832998489).m_d_cpt1474,179324 -i_i_cpt(72,-1115,1.0,0.461691155364697).i_i_cpt1475,179369 -i_i_cpt(72,-1115,1.0,0.461691155364697).i_i_cpt1475,179369 -i_m_cpt(72,-894,1.0,0.538120062391899).i_m_cpt1476,179410 -i_m_cpt(72,-894,1.0,0.538120062391899).i_m_cpt1476,179410 -d_m_cpt(72,-701,1.0,0.615145672375572).d_m_cpt1477,179450 -d_m_cpt(72,-701,1.0,0.615145672375572).d_m_cpt1477,179450 -d_d_cpt(72,-1378,1.0,0.384751805040216).d_d_cpt1478,179490 -d_d_cpt(72,-1378,1.0,0.384751805040216).d_d_cpt1478,179490 -b_m_cpt(72,*,1.0,0.0).b_m_cpt1479,179531 -b_m_cpt(72,*,1.0,0.0).b_m_cpt1479,179531 -m_e_cpt(72,*,1.0,0.0).m_e_cpt1480,179554 -m_e_cpt(72,*,1.0,0.0).m_e_cpt1480,179554 -consensus(73,18).consensus1483,179589 -consensus(73,18).consensus1483,179589 -m_m_cpt(73,-4,1.0,0.997231251352069).m_m_cpt1492,181729 -m_m_cpt(73,-4,1.0,0.997231251352069).m_m_cpt1492,181729 -m_i_cpt(73,-8959,1.0,0.00200942716385464).m_i_cpt1493,181767 -m_i_cpt(73,-8959,1.0,0.00200942716385464).m_i_cpt1493,181767 -m_d_cpt(73,-10001,1.0,0.000975885832998489).m_d_cpt1494,181810 -m_d_cpt(73,-10001,1.0,0.000975885832998489).m_d_cpt1494,181810 -i_i_cpt(73,-1115,1.0,0.461691155364697).i_i_cpt1495,181855 -i_i_cpt(73,-1115,1.0,0.461691155364697).i_i_cpt1495,181855 -i_m_cpt(73,-894,1.0,0.538120062391899).i_m_cpt1496,181896 -i_m_cpt(73,-894,1.0,0.538120062391899).i_m_cpt1496,181896 -d_m_cpt(73,-701,1.0,0.615145672375572).d_m_cpt1497,181936 -d_m_cpt(73,-701,1.0,0.615145672375572).d_m_cpt1497,181936 -d_d_cpt(73,-1378,1.0,0.384751805040216).d_d_cpt1498,181976 -d_d_cpt(73,-1378,1.0,0.384751805040216).d_d_cpt1498,181976 -b_m_cpt(73,*,1.0,0.0).b_m_cpt1499,182017 -b_m_cpt(73,*,1.0,0.0).b_m_cpt1499,182017 -m_e_cpt(73,*,1.0,0.0).m_e_cpt1500,182040 -m_e_cpt(73,*,1.0,0.0).m_e_cpt1500,182040 -consensus(74,9).consensus1503,182075 -consensus(74,9).consensus1503,182075 -m_m_cpt(74,-4,1.0,0.997231251352069).m_m_cpt1512,184207 -m_m_cpt(74,-4,1.0,0.997231251352069).m_m_cpt1512,184207 -m_i_cpt(74,-8959,1.0,0.00200942716385464).m_i_cpt1513,184245 -m_i_cpt(74,-8959,1.0,0.00200942716385464).m_i_cpt1513,184245 -m_d_cpt(74,-10001,1.0,0.000975885832998489).m_d_cpt1514,184288 -m_d_cpt(74,-10001,1.0,0.000975885832998489).m_d_cpt1514,184288 -i_i_cpt(74,-1115,1.0,0.461691155364697).i_i_cpt1515,184333 -i_i_cpt(74,-1115,1.0,0.461691155364697).i_i_cpt1515,184333 -i_m_cpt(74,-894,1.0,0.538120062391899).i_m_cpt1516,184374 -i_m_cpt(74,-894,1.0,0.538120062391899).i_m_cpt1516,184374 -d_m_cpt(74,-701,1.0,0.615145672375572).d_m_cpt1517,184414 -d_m_cpt(74,-701,1.0,0.615145672375572).d_m_cpt1517,184414 -d_d_cpt(74,-1378,1.0,0.384751805040216).d_d_cpt1518,184454 -d_d_cpt(74,-1378,1.0,0.384751805040216).d_d_cpt1518,184454 -b_m_cpt(74,*,1.0,0.0).b_m_cpt1519,184495 -b_m_cpt(74,*,1.0,0.0).b_m_cpt1519,184495 -m_e_cpt(74,*,1.0,0.0).m_e_cpt1520,184518 -m_e_cpt(74,*,1.0,0.0).m_e_cpt1520,184518 -consensus(75,1).consensus1523,184553 -consensus(75,1).consensus1523,184553 -m_m_cpt(75,-4,1.0,0.997231251352069).m_m_cpt1532,186690 -m_m_cpt(75,-4,1.0,0.997231251352069).m_m_cpt1532,186690 -m_i_cpt(75,-8959,1.0,0.00200942716385464).m_i_cpt1533,186728 -m_i_cpt(75,-8959,1.0,0.00200942716385464).m_i_cpt1533,186728 -m_d_cpt(75,-10001,1.0,0.000975885832998489).m_d_cpt1534,186771 -m_d_cpt(75,-10001,1.0,0.000975885832998489).m_d_cpt1534,186771 -i_i_cpt(75,-1115,1.0,0.461691155364697).i_i_cpt1535,186816 -i_i_cpt(75,-1115,1.0,0.461691155364697).i_i_cpt1535,186816 -i_m_cpt(75,-894,1.0,0.538120062391899).i_m_cpt1536,186857 -i_m_cpt(75,-894,1.0,0.538120062391899).i_m_cpt1536,186857 -d_m_cpt(75,-701,1.0,0.615145672375572).d_m_cpt1537,186897 -d_m_cpt(75,-701,1.0,0.615145672375572).d_m_cpt1537,186897 -d_d_cpt(75,-1378,1.0,0.384751805040216).d_d_cpt1538,186937 -d_d_cpt(75,-1378,1.0,0.384751805040216).d_d_cpt1538,186937 -b_m_cpt(75,*,1.0,0.0).b_m_cpt1539,186978 -b_m_cpt(75,*,1.0,0.0).b_m_cpt1539,186978 -m_e_cpt(75,*,1.0,0.0).m_e_cpt1540,187001 -m_e_cpt(75,*,1.0,0.0).m_e_cpt1540,187001 -consensus(76,7).consensus1543,187036 -consensus(76,7).consensus1543,187036 -m_m_cpt(76,-4,1.0,0.997231251352069).m_m_cpt1552,189192 -m_m_cpt(76,-4,1.0,0.997231251352069).m_m_cpt1552,189192 -m_i_cpt(76,-8959,1.0,0.00200942716385464).m_i_cpt1553,189230 -m_i_cpt(76,-8959,1.0,0.00200942716385464).m_i_cpt1553,189230 -m_d_cpt(76,-10001,1.0,0.000975885832998489).m_d_cpt1554,189273 -m_d_cpt(76,-10001,1.0,0.000975885832998489).m_d_cpt1554,189273 -i_i_cpt(76,-1115,1.0,0.461691155364697).i_i_cpt1555,189318 -i_i_cpt(76,-1115,1.0,0.461691155364697).i_i_cpt1555,189318 -i_m_cpt(76,-894,1.0,0.538120062391899).i_m_cpt1556,189359 -i_m_cpt(76,-894,1.0,0.538120062391899).i_m_cpt1556,189359 -d_m_cpt(76,-701,1.0,0.615145672375572).d_m_cpt1557,189399 -d_m_cpt(76,-701,1.0,0.615145672375572).d_m_cpt1557,189399 -d_d_cpt(76,-1378,1.0,0.384751805040216).d_d_cpt1558,189439 -d_d_cpt(76,-1378,1.0,0.384751805040216).d_d_cpt1558,189439 -b_m_cpt(76,*,1.0,0.0).b_m_cpt1559,189480 -b_m_cpt(76,*,1.0,0.0).b_m_cpt1559,189480 -m_e_cpt(76,*,1.0,0.0).m_e_cpt1560,189503 -m_e_cpt(76,*,1.0,0.0).m_e_cpt1560,189503 -consensus(77,6).consensus1563,189538 -consensus(77,6).consensus1563,189538 -m_m_cpt(77,-4,1.0,0.997231251352069).m_m_cpt1572,191689 -m_m_cpt(77,-4,1.0,0.997231251352069).m_m_cpt1572,191689 -m_i_cpt(77,-8959,1.0,0.00200942716385464).m_i_cpt1573,191727 -m_i_cpt(77,-8959,1.0,0.00200942716385464).m_i_cpt1573,191727 -m_d_cpt(77,-10001,1.0,0.000975885832998489).m_d_cpt1574,191770 -m_d_cpt(77,-10001,1.0,0.000975885832998489).m_d_cpt1574,191770 -i_i_cpt(77,-1115,1.0,0.461691155364697).i_i_cpt1575,191815 -i_i_cpt(77,-1115,1.0,0.461691155364697).i_i_cpt1575,191815 -i_m_cpt(77,-894,1.0,0.538120062391899).i_m_cpt1576,191856 -i_m_cpt(77,-894,1.0,0.538120062391899).i_m_cpt1576,191856 -d_m_cpt(77,-701,1.0,0.615145672375572).d_m_cpt1577,191896 -d_m_cpt(77,-701,1.0,0.615145672375572).d_m_cpt1577,191896 -d_d_cpt(77,-1378,1.0,0.384751805040216).d_d_cpt1578,191936 -d_d_cpt(77,-1378,1.0,0.384751805040216).d_d_cpt1578,191936 -b_m_cpt(77,*,1.0,0.0).b_m_cpt1579,191977 -b_m_cpt(77,*,1.0,0.0).b_m_cpt1579,191977 -m_e_cpt(77,*,1.0,0.0).m_e_cpt1580,192000 -m_e_cpt(77,*,1.0,0.0).m_e_cpt1580,192000 -consensus(78,9).consensus1583,192035 -consensus(78,9).consensus1583,192035 -m_m_cpt(78,-4,1.0,0.997231251352069).m_m_cpt1592,194155 -m_m_cpt(78,-4,1.0,0.997231251352069).m_m_cpt1592,194155 -m_i_cpt(78,-8959,1.0,0.00200942716385464).m_i_cpt1593,194193 -m_i_cpt(78,-8959,1.0,0.00200942716385464).m_i_cpt1593,194193 -m_d_cpt(78,-10001,1.0,0.000975885832998489).m_d_cpt1594,194236 -m_d_cpt(78,-10001,1.0,0.000975885832998489).m_d_cpt1594,194236 -i_i_cpt(78,-1115,1.0,0.461691155364697).i_i_cpt1595,194281 -i_i_cpt(78,-1115,1.0,0.461691155364697).i_i_cpt1595,194281 -i_m_cpt(78,-894,1.0,0.538120062391899).i_m_cpt1596,194322 -i_m_cpt(78,-894,1.0,0.538120062391899).i_m_cpt1596,194322 -d_m_cpt(78,-701,1.0,0.615145672375572).d_m_cpt1597,194362 -d_m_cpt(78,-701,1.0,0.615145672375572).d_m_cpt1597,194362 -d_d_cpt(78,-1378,1.0,0.384751805040216).d_d_cpt1598,194402 -d_d_cpt(78,-1378,1.0,0.384751805040216).d_d_cpt1598,194402 -b_m_cpt(78,*,1.0,0.0).b_m_cpt1599,194443 -b_m_cpt(78,*,1.0,0.0).b_m_cpt1599,194443 -m_e_cpt(78,*,1.0,0.0).m_e_cpt1600,194466 -m_e_cpt(78,*,1.0,0.0).m_e_cpt1600,194466 -consensus(79,9).consensus1603,194501 -consensus(79,9).consensus1603,194501 -m_m_cpt(79,-4,1.0,0.997231251352069).m_m_cpt1612,196645 -m_m_cpt(79,-4,1.0,0.997231251352069).m_m_cpt1612,196645 -m_i_cpt(79,-8959,1.0,0.00200942716385464).m_i_cpt1613,196683 -m_i_cpt(79,-8959,1.0,0.00200942716385464).m_i_cpt1613,196683 -m_d_cpt(79,-10001,1.0,0.000975885832998489).m_d_cpt1614,196726 -m_d_cpt(79,-10001,1.0,0.000975885832998489).m_d_cpt1614,196726 -i_i_cpt(79,-1115,1.0,0.461691155364697).i_i_cpt1615,196771 -i_i_cpt(79,-1115,1.0,0.461691155364697).i_i_cpt1615,196771 -i_m_cpt(79,-894,1.0,0.538120062391899).i_m_cpt1616,196812 -i_m_cpt(79,-894,1.0,0.538120062391899).i_m_cpt1616,196812 -d_m_cpt(79,-701,1.0,0.615145672375572).d_m_cpt1617,196852 -d_m_cpt(79,-701,1.0,0.615145672375572).d_m_cpt1617,196852 -d_d_cpt(79,-1378,1.0,0.384751805040216).d_d_cpt1618,196892 -d_d_cpt(79,-1378,1.0,0.384751805040216).d_d_cpt1618,196892 -b_m_cpt(79,*,1.0,0.0).b_m_cpt1619,196933 -b_m_cpt(79,*,1.0,0.0).b_m_cpt1619,196933 -m_e_cpt(79,*,1.0,0.0).m_e_cpt1620,196956 -m_e_cpt(79,*,1.0,0.0).m_e_cpt1620,196956 -consensus(80,18).consensus1623,196991 -consensus(80,18).consensus1623,196991 -m_m_cpt(80,-4,1.0,0.997231251352069).m_m_cpt1632,199150 -m_m_cpt(80,-4,1.0,0.997231251352069).m_m_cpt1632,199150 -m_i_cpt(80,-8959,1.0,0.00200942716385464).m_i_cpt1633,199188 -m_i_cpt(80,-8959,1.0,0.00200942716385464).m_i_cpt1633,199188 -m_d_cpt(80,-10001,1.0,0.000975885832998489).m_d_cpt1634,199231 -m_d_cpt(80,-10001,1.0,0.000975885832998489).m_d_cpt1634,199231 -i_i_cpt(80,-1115,1.0,0.461691155364697).i_i_cpt1635,199276 -i_i_cpt(80,-1115,1.0,0.461691155364697).i_i_cpt1635,199276 -i_m_cpt(80,-894,1.0,0.538120062391899).i_m_cpt1636,199317 -i_m_cpt(80,-894,1.0,0.538120062391899).i_m_cpt1636,199317 -d_m_cpt(80,-701,1.0,0.615145672375572).d_m_cpt1637,199357 -d_m_cpt(80,-701,1.0,0.615145672375572).d_m_cpt1637,199357 -d_d_cpt(80,-1378,1.0,0.384751805040216).d_d_cpt1638,199397 -d_d_cpt(80,-1378,1.0,0.384751805040216).d_d_cpt1638,199397 -b_m_cpt(80,*,1.0,0.0).b_m_cpt1639,199438 -b_m_cpt(80,*,1.0,0.0).b_m_cpt1639,199438 -m_e_cpt(80,*,1.0,0.0).m_e_cpt1640,199461 -m_e_cpt(80,*,1.0,0.0).m_e_cpt1640,199461 -consensus(81,10).consensus1643,199496 -consensus(81,10).consensus1643,199496 -m_m_cpt(81,-4,1.0,0.997231251352069).m_m_cpt1652,201636 -m_m_cpt(81,-4,1.0,0.997231251352069).m_m_cpt1652,201636 -m_i_cpt(81,-8959,1.0,0.00200942716385464).m_i_cpt1653,201674 -m_i_cpt(81,-8959,1.0,0.00200942716385464).m_i_cpt1653,201674 -m_d_cpt(81,-10001,1.0,0.000975885832998489).m_d_cpt1654,201717 -m_d_cpt(81,-10001,1.0,0.000975885832998489).m_d_cpt1654,201717 -i_i_cpt(81,-1115,1.0,0.461691155364697).i_i_cpt1655,201762 -i_i_cpt(81,-1115,1.0,0.461691155364697).i_i_cpt1655,201762 -i_m_cpt(81,-894,1.0,0.538120062391899).i_m_cpt1656,201803 -i_m_cpt(81,-894,1.0,0.538120062391899).i_m_cpt1656,201803 -d_m_cpt(81,-701,1.0,0.615145672375572).d_m_cpt1657,201843 -d_m_cpt(81,-701,1.0,0.615145672375572).d_m_cpt1657,201843 -d_d_cpt(81,-1378,1.0,0.384751805040216).d_d_cpt1658,201883 -d_d_cpt(81,-1378,1.0,0.384751805040216).d_d_cpt1658,201883 -b_m_cpt(81,*,1.0,0.0).b_m_cpt1659,201924 -b_m_cpt(81,*,1.0,0.0).b_m_cpt1659,201924 -m_e_cpt(81,*,1.0,0.0).m_e_cpt1660,201947 -m_e_cpt(81,*,1.0,0.0).m_e_cpt1660,201947 -consensus(82,17).consensus1663,201982 -consensus(82,17).consensus1663,201982 -m_m_cpt(82,-4,1.0,0.997231251352069).m_m_cpt1672,204105 -m_m_cpt(82,-4,1.0,0.997231251352069).m_m_cpt1672,204105 -m_i_cpt(82,-8959,1.0,0.00200942716385464).m_i_cpt1673,204143 -m_i_cpt(82,-8959,1.0,0.00200942716385464).m_i_cpt1673,204143 -m_d_cpt(82,-10001,1.0,0.000975885832998489).m_d_cpt1674,204186 -m_d_cpt(82,-10001,1.0,0.000975885832998489).m_d_cpt1674,204186 -i_i_cpt(82,-1115,1.0,0.461691155364697).i_i_cpt1675,204231 -i_i_cpt(82,-1115,1.0,0.461691155364697).i_i_cpt1675,204231 -i_m_cpt(82,-894,1.0,0.538120062391899).i_m_cpt1676,204272 -i_m_cpt(82,-894,1.0,0.538120062391899).i_m_cpt1676,204272 -d_m_cpt(82,-701,1.0,0.615145672375572).d_m_cpt1677,204312 -d_m_cpt(82,-701,1.0,0.615145672375572).d_m_cpt1677,204312 -d_d_cpt(82,-1378,1.0,0.384751805040216).d_d_cpt1678,204352 -d_d_cpt(82,-1378,1.0,0.384751805040216).d_d_cpt1678,204352 -b_m_cpt(82,*,1.0,0.0).b_m_cpt1679,204393 -b_m_cpt(82,*,1.0,0.0).b_m_cpt1679,204393 -m_e_cpt(82,*,1.0,0.0).m_e_cpt1680,204416 -m_e_cpt(82,*,1.0,0.0).m_e_cpt1680,204416 -consensus(83,1).consensus1683,204451 -consensus(83,1).consensus1683,204451 -m_m_cpt(83,-4,1.0,0.997231251352069).m_m_cpt1692,206585 -m_m_cpt(83,-4,1.0,0.997231251352069).m_m_cpt1692,206585 -m_i_cpt(83,-8959,1.0,0.00200942716385464).m_i_cpt1693,206623 -m_i_cpt(83,-8959,1.0,0.00200942716385464).m_i_cpt1693,206623 -m_d_cpt(83,-10001,1.0,0.000975885832998489).m_d_cpt1694,206666 -m_d_cpt(83,-10001,1.0,0.000975885832998489).m_d_cpt1694,206666 -i_i_cpt(83,-1115,1.0,0.461691155364697).i_i_cpt1695,206711 -i_i_cpt(83,-1115,1.0,0.461691155364697).i_i_cpt1695,206711 -i_m_cpt(83,-894,1.0,0.538120062391899).i_m_cpt1696,206752 -i_m_cpt(83,-894,1.0,0.538120062391899).i_m_cpt1696,206752 -d_m_cpt(83,-701,1.0,0.615145672375572).d_m_cpt1697,206792 -d_m_cpt(83,-701,1.0,0.615145672375572).d_m_cpt1697,206792 -d_d_cpt(83,-1378,1.0,0.384751805040216).d_d_cpt1698,206832 -d_d_cpt(83,-1378,1.0,0.384751805040216).d_d_cpt1698,206832 -b_m_cpt(83,*,1.0,0.0).b_m_cpt1699,206873 -b_m_cpt(83,*,1.0,0.0).b_m_cpt1699,206873 -m_e_cpt(83,*,1.0,0.0).m_e_cpt1700,206896 -m_e_cpt(83,*,1.0,0.0).m_e_cpt1700,206896 -consensus(84,10).consensus1703,206931 -consensus(84,10).consensus1703,206931 -m_m_cpt(84,-4,1.0,0.997231251352069).m_m_cpt1712,209082 -m_m_cpt(84,-4,1.0,0.997231251352069).m_m_cpt1712,209082 -m_i_cpt(84,-8959,1.0,0.00200942716385464).m_i_cpt1713,209120 -m_i_cpt(84,-8959,1.0,0.00200942716385464).m_i_cpt1713,209120 -m_d_cpt(84,-10001,1.0,0.000975885832998489).m_d_cpt1714,209163 -m_d_cpt(84,-10001,1.0,0.000975885832998489).m_d_cpt1714,209163 -i_i_cpt(84,-1115,1.0,0.461691155364697).i_i_cpt1715,209208 -i_i_cpt(84,-1115,1.0,0.461691155364697).i_i_cpt1715,209208 -i_m_cpt(84,-894,1.0,0.538120062391899).i_m_cpt1716,209249 -i_m_cpt(84,-894,1.0,0.538120062391899).i_m_cpt1716,209249 -d_m_cpt(84,-701,1.0,0.615145672375572).d_m_cpt1717,209289 -d_m_cpt(84,-701,1.0,0.615145672375572).d_m_cpt1717,209289 -d_d_cpt(84,-1378,1.0,0.384751805040216).d_d_cpt1718,209329 -d_d_cpt(84,-1378,1.0,0.384751805040216).d_d_cpt1718,209329 -b_m_cpt(84,*,1.0,0.0).b_m_cpt1719,209370 -b_m_cpt(84,*,1.0,0.0).b_m_cpt1719,209370 -m_e_cpt(84,*,1.0,0.0).m_e_cpt1720,209393 -m_e_cpt(84,*,1.0,0.0).m_e_cpt1720,209393 -consensus(85,6).consensus1723,209428 -consensus(85,6).consensus1723,209428 -m_m_cpt(85,-4,1.0,0.997231251352069).m_m_cpt1732,211552 -m_m_cpt(85,-4,1.0,0.997231251352069).m_m_cpt1732,211552 -m_i_cpt(85,-8959,1.0,0.00200942716385464).m_i_cpt1733,211590 -m_i_cpt(85,-8959,1.0,0.00200942716385464).m_i_cpt1733,211590 -m_d_cpt(85,-10001,1.0,0.000975885832998489).m_d_cpt1734,211633 -m_d_cpt(85,-10001,1.0,0.000975885832998489).m_d_cpt1734,211633 -i_i_cpt(85,-1115,1.0,0.461691155364697).i_i_cpt1735,211678 -i_i_cpt(85,-1115,1.0,0.461691155364697).i_i_cpt1735,211678 -i_m_cpt(85,-894,1.0,0.538120062391899).i_m_cpt1736,211719 -i_m_cpt(85,-894,1.0,0.538120062391899).i_m_cpt1736,211719 -d_m_cpt(85,-701,1.0,0.615145672375572).d_m_cpt1737,211759 -d_m_cpt(85,-701,1.0,0.615145672375572).d_m_cpt1737,211759 -d_d_cpt(85,-1378,1.0,0.384751805040216).d_d_cpt1738,211799 -d_d_cpt(85,-1378,1.0,0.384751805040216).d_d_cpt1738,211799 -b_m_cpt(85,*,1.0,0.0).b_m_cpt1739,211840 -b_m_cpt(85,*,1.0,0.0).b_m_cpt1739,211840 -m_e_cpt(85,*,1.0,0.0).m_e_cpt1740,211863 -m_e_cpt(85,*,1.0,0.0).m_e_cpt1740,211863 -consensus(86,3).consensus1743,211898 -consensus(86,3).consensus1743,211898 -m_m_cpt(86,-4,1.0,0.997231251352069).m_m_cpt1752,214028 -m_m_cpt(86,-4,1.0,0.997231251352069).m_m_cpt1752,214028 -m_i_cpt(86,-8959,1.0,0.00200942716385464).m_i_cpt1753,214066 -m_i_cpt(86,-8959,1.0,0.00200942716385464).m_i_cpt1753,214066 -m_d_cpt(86,-10001,1.0,0.000975885832998489).m_d_cpt1754,214109 -m_d_cpt(86,-10001,1.0,0.000975885832998489).m_d_cpt1754,214109 -i_i_cpt(86,-1115,1.0,0.461691155364697).i_i_cpt1755,214154 -i_i_cpt(86,-1115,1.0,0.461691155364697).i_i_cpt1755,214154 -i_m_cpt(86,-894,1.0,0.538120062391899).i_m_cpt1756,214195 -i_m_cpt(86,-894,1.0,0.538120062391899).i_m_cpt1756,214195 -d_m_cpt(86,-701,1.0,0.615145672375572).d_m_cpt1757,214235 -d_m_cpt(86,-701,1.0,0.615145672375572).d_m_cpt1757,214235 -d_d_cpt(86,-1378,1.0,0.384751805040216).d_d_cpt1758,214275 -d_d_cpt(86,-1378,1.0,0.384751805040216).d_d_cpt1758,214275 -b_m_cpt(86,*,1.0,0.0).b_m_cpt1759,214316 -b_m_cpt(86,*,1.0,0.0).b_m_cpt1759,214316 -m_e_cpt(86,*,1.0,0.0).m_e_cpt1760,214339 -m_e_cpt(86,*,1.0,0.0).m_e_cpt1760,214339 -consensus(87,1).consensus1763,214374 -consensus(87,1).consensus1763,214374 -m_m_cpt(87,-4,1.0,0.997231251352069).m_m_cpt1772,216497 -m_m_cpt(87,-4,1.0,0.997231251352069).m_m_cpt1772,216497 -m_i_cpt(87,-8959,1.0,0.00200942716385464).m_i_cpt1773,216535 -m_i_cpt(87,-8959,1.0,0.00200942716385464).m_i_cpt1773,216535 -m_d_cpt(87,-10001,1.0,0.000975885832998489).m_d_cpt1774,216578 -m_d_cpt(87,-10001,1.0,0.000975885832998489).m_d_cpt1774,216578 -i_i_cpt(87,-1115,1.0,0.461691155364697).i_i_cpt1775,216623 -i_i_cpt(87,-1115,1.0,0.461691155364697).i_i_cpt1775,216623 -i_m_cpt(87,-894,1.0,0.538120062391899).i_m_cpt1776,216664 -i_m_cpt(87,-894,1.0,0.538120062391899).i_m_cpt1776,216664 -d_m_cpt(87,-701,1.0,0.615145672375572).d_m_cpt1777,216704 -d_m_cpt(87,-701,1.0,0.615145672375572).d_m_cpt1777,216704 -d_d_cpt(87,-1378,1.0,0.384751805040216).d_d_cpt1778,216744 -d_d_cpt(87,-1378,1.0,0.384751805040216).d_d_cpt1778,216744 -b_m_cpt(87,*,1.0,0.0).b_m_cpt1779,216785 -b_m_cpt(87,*,1.0,0.0).b_m_cpt1779,216785 -m_e_cpt(87,*,1.0,0.0).m_e_cpt1780,216808 -m_e_cpt(87,*,1.0,0.0).m_e_cpt1780,216808 -consensus(88,18).consensus1783,216843 -consensus(88,18).consensus1783,216843 -m_m_cpt(88,-4,1.0,0.997231251352069).m_m_cpt1792,218988 -m_m_cpt(88,-4,1.0,0.997231251352069).m_m_cpt1792,218988 -m_i_cpt(88,-8959,1.0,0.00200942716385464).m_i_cpt1793,219026 -m_i_cpt(88,-8959,1.0,0.00200942716385464).m_i_cpt1793,219026 -m_d_cpt(88,-10001,1.0,0.000975885832998489).m_d_cpt1794,219069 -m_d_cpt(88,-10001,1.0,0.000975885832998489).m_d_cpt1794,219069 -i_i_cpt(88,-1115,1.0,0.461691155364697).i_i_cpt1795,219114 -i_i_cpt(88,-1115,1.0,0.461691155364697).i_i_cpt1795,219114 -i_m_cpt(88,-894,1.0,0.538120062391899).i_m_cpt1796,219155 -i_m_cpt(88,-894,1.0,0.538120062391899).i_m_cpt1796,219155 -d_m_cpt(88,-701,1.0,0.615145672375572).d_m_cpt1797,219195 -d_m_cpt(88,-701,1.0,0.615145672375572).d_m_cpt1797,219195 -d_d_cpt(88,-1378,1.0,0.384751805040216).d_d_cpt1798,219235 -d_d_cpt(88,-1378,1.0,0.384751805040216).d_d_cpt1798,219235 -b_m_cpt(88,*,1.0,0.0).b_m_cpt1799,219276 -b_m_cpt(88,*,1.0,0.0).b_m_cpt1799,219276 -m_e_cpt(88,*,1.0,0.0).m_e_cpt1800,219299 -m_e_cpt(88,*,1.0,0.0).m_e_cpt1800,219299 -consensus(89,9).consensus1803,219334 -consensus(89,9).consensus1803,219334 -m_m_cpt(89,-4,1.0,0.997231251352069).m_m_cpt1812,221462 -m_m_cpt(89,-4,1.0,0.997231251352069).m_m_cpt1812,221462 -m_i_cpt(89,-8959,1.0,0.00200942716385464).m_i_cpt1813,221500 -m_i_cpt(89,-8959,1.0,0.00200942716385464).m_i_cpt1813,221500 -m_d_cpt(89,-10001,1.0,0.000975885832998489).m_d_cpt1814,221543 -m_d_cpt(89,-10001,1.0,0.000975885832998489).m_d_cpt1814,221543 -i_i_cpt(89,-1115,1.0,0.461691155364697).i_i_cpt1815,221588 -i_i_cpt(89,-1115,1.0,0.461691155364697).i_i_cpt1815,221588 -i_m_cpt(89,-894,1.0,0.538120062391899).i_m_cpt1816,221629 -i_m_cpt(89,-894,1.0,0.538120062391899).i_m_cpt1816,221629 -d_m_cpt(89,-701,1.0,0.615145672375572).d_m_cpt1817,221669 -d_m_cpt(89,-701,1.0,0.615145672375572).d_m_cpt1817,221669 -d_d_cpt(89,-1378,1.0,0.384751805040216).d_d_cpt1818,221709 -d_d_cpt(89,-1378,1.0,0.384751805040216).d_d_cpt1818,221709 -b_m_cpt(89,*,1.0,0.0).b_m_cpt1819,221750 -b_m_cpt(89,*,1.0,0.0).b_m_cpt1819,221750 -m_e_cpt(89,*,1.0,0.0).m_e_cpt1820,221773 -m_e_cpt(89,*,1.0,0.0).m_e_cpt1820,221773 -consensus(90,7).consensus1823,221808 -consensus(90,7).consensus1823,221808 -m_m_cpt(90,-4,1.0,0.997231251352069).m_m_cpt1832,223935 -m_m_cpt(90,-4,1.0,0.997231251352069).m_m_cpt1832,223935 -m_i_cpt(90,-8959,1.0,0.00200942716385464).m_i_cpt1833,223973 -m_i_cpt(90,-8959,1.0,0.00200942716385464).m_i_cpt1833,223973 -m_d_cpt(90,-10001,1.0,0.000975885832998489).m_d_cpt1834,224016 -m_d_cpt(90,-10001,1.0,0.000975885832998489).m_d_cpt1834,224016 -i_i_cpt(90,-1115,1.0,0.461691155364697).i_i_cpt1835,224061 -i_i_cpt(90,-1115,1.0,0.461691155364697).i_i_cpt1835,224061 -i_m_cpt(90,-894,1.0,0.538120062391899).i_m_cpt1836,224102 -i_m_cpt(90,-894,1.0,0.538120062391899).i_m_cpt1836,224102 -d_m_cpt(90,-701,1.0,0.615145672375572).d_m_cpt1837,224142 -d_m_cpt(90,-701,1.0,0.615145672375572).d_m_cpt1837,224142 -d_d_cpt(90,-1378,1.0,0.384751805040216).d_d_cpt1838,224182 -d_d_cpt(90,-1378,1.0,0.384751805040216).d_d_cpt1838,224182 -b_m_cpt(90,*,1.0,0.0).b_m_cpt1839,224223 -b_m_cpt(90,*,1.0,0.0).b_m_cpt1839,224223 -m_e_cpt(90,*,1.0,0.0).m_e_cpt1840,224246 -m_e_cpt(90,*,1.0,0.0).m_e_cpt1840,224246 -consensus(91,10).consensus1843,224281 -consensus(91,10).consensus1843,224281 -m_m_cpt(91,-4,1.0,0.997231251352069).m_m_cpt1852,226423 -m_m_cpt(91,-4,1.0,0.997231251352069).m_m_cpt1852,226423 -m_i_cpt(91,-8959,1.0,0.00200942716385464).m_i_cpt1853,226461 -m_i_cpt(91,-8959,1.0,0.00200942716385464).m_i_cpt1853,226461 -m_d_cpt(91,-10001,1.0,0.000975885832998489).m_d_cpt1854,226504 -m_d_cpt(91,-10001,1.0,0.000975885832998489).m_d_cpt1854,226504 -i_i_cpt(91,-1115,1.0,0.461691155364697).i_i_cpt1855,226549 -i_i_cpt(91,-1115,1.0,0.461691155364697).i_i_cpt1855,226549 -i_m_cpt(91,-894,1.0,0.538120062391899).i_m_cpt1856,226590 -i_m_cpt(91,-894,1.0,0.538120062391899).i_m_cpt1856,226590 -d_m_cpt(91,-701,1.0,0.615145672375572).d_m_cpt1857,226630 -d_m_cpt(91,-701,1.0,0.615145672375572).d_m_cpt1857,226630 -d_d_cpt(91,-1378,1.0,0.384751805040216).d_d_cpt1858,226670 -d_d_cpt(91,-1378,1.0,0.384751805040216).d_d_cpt1858,226670 -b_m_cpt(91,*,1.0,0.0).b_m_cpt1859,226711 -b_m_cpt(91,*,1.0,0.0).b_m_cpt1859,226711 -m_e_cpt(91,*,1.0,0.0).m_e_cpt1860,226734 -m_e_cpt(91,*,1.0,0.0).m_e_cpt1860,226734 -consensus(92,3).consensus1863,226769 -consensus(92,3).consensus1863,226769 -m_m_cpt(92,-88,1.0,0.940826107513788).m_m_cpt1872,228913 -m_m_cpt(92,-88,1.0,0.940826107513788).m_m_cpt1872,228913 -m_i_cpt(92,-8959,1.0,0.00200942716385464).m_i_cpt1873,228952 -m_i_cpt(92,-8959,1.0,0.00200942716385464).m_i_cpt1873,228952 -m_d_cpt(92,-4135,1.0,0.0569168645994987).m_d_cpt1874,228995 -m_d_cpt(92,-4135,1.0,0.0569168645994987).m_d_cpt1874,228995 -i_i_cpt(92,-1115,1.0,0.461691155364697).i_i_cpt1875,229037 -i_i_cpt(92,-1115,1.0,0.461691155364697).i_i_cpt1875,229037 -i_m_cpt(92,-894,1.0,0.538120062391899).i_m_cpt1876,229078 -i_m_cpt(92,-894,1.0,0.538120062391899).i_m_cpt1876,229078 -d_m_cpt(92,-701,1.0,0.615145672375572).d_m_cpt1877,229118 -d_m_cpt(92,-701,1.0,0.615145672375572).d_m_cpt1877,229118 -d_d_cpt(92,-1378,1.0,0.384751805040216).d_d_cpt1878,229158 -d_d_cpt(92,-1378,1.0,0.384751805040216).d_d_cpt1878,229158 -b_m_cpt(92,*,1.0,0.0).b_m_cpt1879,229199 -b_m_cpt(92,*,1.0,0.0).b_m_cpt1879,229199 -m_e_cpt(92,*,1.0,0.0).m_e_cpt1880,229222 -m_e_cpt(92,*,1.0,0.0).m_e_cpt1880,229222 -consensus(93,3).consensus1883,229257 -consensus(93,3).consensus1883,229257 -m_m_cpt(93,-2364,1.0,0.194251817196012).m_m_cpt1892,231388 -m_m_cpt(93,-2364,1.0,0.194251817196012).m_m_cpt1892,231388 -m_i_cpt(93,-8876,1.0,0.00212842209416666).m_i_cpt1893,231429 -m_i_cpt(93,-8876,1.0,0.00212842209416666).m_i_cpt1893,231429 -m_d_cpt(93,-315,1.0,0.803850990743151).m_d_cpt1894,231472 -m_d_cpt(93,-315,1.0,0.803850990743151).m_d_cpt1894,231472 -i_i_cpt(93,-1115,1.0,0.461691155364697).i_i_cpt1895,231512 -i_i_cpt(93,-1115,1.0,0.461691155364697).i_i_cpt1895,231512 -i_m_cpt(93,-894,1.0,0.538120062391899).i_m_cpt1896,231553 -i_m_cpt(93,-894,1.0,0.538120062391899).i_m_cpt1896,231553 -d_m_cpt(93,-1313,1.0,0.402483068810561).d_m_cpt1897,231593 -d_m_cpt(93,-1313,1.0,0.402483068810561).d_m_cpt1897,231593 -d_d_cpt(93,-743,1.0,0.597495602428391).d_d_cpt1898,231634 -d_d_cpt(93,-743,1.0,0.597495602428391).d_d_cpt1898,231634 -b_m_cpt(93,*,1.0,0.0).b_m_cpt1899,231674 -b_m_cpt(93,*,1.0,0.0).b_m_cpt1899,231674 -m_e_cpt(93,*,1.0,0.0).m_e_cpt1900,231697 -m_e_cpt(93,*,1.0,0.0).m_e_cpt1900,231697 -consensus(94,17).consensus1903,231732 -consensus(94,17).consensus1903,231732 -m_m_cpt(94,-23,1.0,0.9841840220338).m_m_cpt1912,233857 -m_m_cpt(94,-23,1.0,0.9841840220338).m_m_cpt1912,233857 -m_i_cpt(94,-6535,1.0,0.0107837293234112).m_i_cpt1913,233894 -m_i_cpt(94,-6535,1.0,0.0107837293234112).m_i_cpt1913,233894 -m_d_cpt(94,-7577,1.0,0.00523715856086069).m_d_cpt1914,233936 -m_d_cpt(94,-7577,1.0,0.00523715856086069).m_d_cpt1914,233936 -i_i_cpt(94,-1115,1.0,0.461691155364697).i_i_cpt1915,233979 -i_i_cpt(94,-1115,1.0,0.461691155364697).i_i_cpt1915,233979 -i_m_cpt(94,-894,1.0,0.538120062391899).i_m_cpt1916,234020 -i_m_cpt(94,-894,1.0,0.538120062391899).i_m_cpt1916,234020 -d_m_cpt(94,-3821,1.0,0.0707561813819171).d_m_cpt1917,234060 -d_m_cpt(94,-3821,1.0,0.0707561813819171).d_m_cpt1917,234060 -d_d_cpt(94,-106,1.0,0.929160674250913).d_d_cpt1918,234102 -d_d_cpt(94,-106,1.0,0.929160674250913).d_d_cpt1918,234102 -b_m_cpt(94,*,1.0,0.0).b_m_cpt1919,234142 -b_m_cpt(94,*,1.0,0.0).b_m_cpt1919,234142 -m_e_cpt(94,*,1.0,0.0).m_e_cpt1920,234165 -m_e_cpt(94,*,1.0,0.0).m_e_cpt1920,234165 -consensus(95,6).consensus1923,234200 -consensus(95,6).consensus1923,234200 -m_m_cpt(95,-23,1.0,0.9841840220338).m_m_cpt1932,236330 -m_m_cpt(95,-23,1.0,0.9841840220338).m_m_cpt1932,236330 -m_i_cpt(95,-6535,1.0,0.0107837293234112).m_i_cpt1933,236367 -m_i_cpt(95,-6535,1.0,0.0107837293234112).m_i_cpt1933,236367 -m_d_cpt(95,-7577,1.0,0.00523715856086069).m_d_cpt1934,236409 -m_d_cpt(95,-7577,1.0,0.00523715856086069).m_d_cpt1934,236409 -i_i_cpt(95,-1115,1.0,0.461691155364697).i_i_cpt1935,236452 -i_i_cpt(95,-1115,1.0,0.461691155364697).i_i_cpt1935,236452 -i_m_cpt(95,-894,1.0,0.538120062391899).i_m_cpt1936,236493 -i_m_cpt(95,-894,1.0,0.538120062391899).i_m_cpt1936,236493 -d_m_cpt(95,-2369,1.0,0.193579756963305).d_m_cpt1937,236533 -d_m_cpt(95,-2369,1.0,0.193579756963305).d_m_cpt1937,236533 -d_d_cpt(95,-310,1.0,0.806641759222126).d_d_cpt1938,236574 -d_d_cpt(95,-310,1.0,0.806641759222126).d_d_cpt1938,236574 -b_m_cpt(95,*,1.0,0.0).b_m_cpt1939,236614 -b_m_cpt(95,*,1.0,0.0).b_m_cpt1939,236614 -m_e_cpt(95,*,1.0,0.0).m_e_cpt1940,236637 -m_e_cpt(95,*,1.0,0.0).m_e_cpt1940,236637 -consensus(96,12).consensus1943,236672 -consensus(96,12).consensus1943,236672 -m_m_cpt(96,-14,1.0,0.990342871933025).m_m_cpt1952,238804 -m_m_cpt(96,-14,1.0,0.990342871933025).m_m_cpt1952,238804 -m_i_cpt(96,-7218,1.0,0.00671684754877349).m_i_cpt1953,238843 -m_i_cpt(96,-7218,1.0,0.00671684754877349).m_i_cpt1953,238843 -m_d_cpt(96,-8260,1.0,0.00326206218526707).m_d_cpt1954,238886 -m_d_cpt(96,-8260,1.0,0.00326206218526707).m_d_cpt1954,238886 -i_i_cpt(96,-1115,1.0,0.461691155364697).i_i_cpt1955,238929 -i_i_cpt(96,-1115,1.0,0.461691155364697).i_i_cpt1955,238929 -i_m_cpt(96,-894,1.0,0.538120062391899).i_m_cpt1956,238970 -i_m_cpt(96,-894,1.0,0.538120062391899).i_m_cpt1956,238970 -d_m_cpt(96,-75,1.0,0.949342120950519).d_m_cpt1957,239010 -d_m_cpt(96,-75,1.0,0.949342120950519).d_m_cpt1957,239010 -d_d_cpt(96,-4309,1.0,0.0504500671565478).d_d_cpt1958,239049 -d_d_cpt(96,-4309,1.0,0.0504500671565478).d_d_cpt1958,239049 -b_m_cpt(96,*,1.0,0.0).b_m_cpt1959,239091 -b_m_cpt(96,*,1.0,0.0).b_m_cpt1959,239091 -m_e_cpt(96,*,1.0,0.0).m_e_cpt1960,239114 -m_e_cpt(96,*,1.0,0.0).m_e_cpt1960,239114 -consensus(97,10).consensus1963,239149 -consensus(97,10).consensus1963,239149 -m_m_cpt(97,-4,1.0,0.997231251352069).m_m_cpt1972,241287 -m_m_cpt(97,-4,1.0,0.997231251352069).m_m_cpt1972,241287 -m_i_cpt(97,-8959,1.0,0.00200942716385464).m_i_cpt1973,241325 -m_i_cpt(97,-8959,1.0,0.00200942716385464).m_i_cpt1973,241325 -m_d_cpt(97,-10001,1.0,0.000975885832998489).m_d_cpt1974,241368 -m_d_cpt(97,-10001,1.0,0.000975885832998489).m_d_cpt1974,241368 -i_i_cpt(97,-1115,1.0,0.461691155364697).i_i_cpt1975,241413 -i_i_cpt(97,-1115,1.0,0.461691155364697).i_i_cpt1975,241413 -i_m_cpt(97,-894,1.0,0.538120062391899).i_m_cpt1976,241454 -i_m_cpt(97,-894,1.0,0.538120062391899).i_m_cpt1976,241454 -d_m_cpt(97,-701,1.0,0.615145672375572).d_m_cpt1977,241494 -d_m_cpt(97,-701,1.0,0.615145672375572).d_m_cpt1977,241494 -d_d_cpt(97,-1378,1.0,0.384751805040216).d_d_cpt1978,241534 -d_d_cpt(97,-1378,1.0,0.384751805040216).d_d_cpt1978,241534 -b_m_cpt(97,*,1.0,0.0).b_m_cpt1979,241575 -b_m_cpt(97,*,1.0,0.0).b_m_cpt1979,241575 -m_e_cpt(97,*,1.0,0.0).m_e_cpt1980,241598 -m_e_cpt(97,*,1.0,0.0).m_e_cpt1980,241598 -consensus(98,9).consensus1983,241633 -consensus(98,9).consensus1983,241633 -m_m_cpt(98,-4,1.0,0.997231251352069).m_m_cpt1992,243741 -m_m_cpt(98,-4,1.0,0.997231251352069).m_m_cpt1992,243741 -m_i_cpt(98,-8959,1.0,0.00200942716385464).m_i_cpt1993,243779 -m_i_cpt(98,-8959,1.0,0.00200942716385464).m_i_cpt1993,243779 -m_d_cpt(98,-10001,1.0,0.000975885832998489).m_d_cpt1994,243822 -m_d_cpt(98,-10001,1.0,0.000975885832998489).m_d_cpt1994,243822 -i_i_cpt(98,-1115,1.0,0.461691155364697).i_i_cpt1995,243867 -i_i_cpt(98,-1115,1.0,0.461691155364697).i_i_cpt1995,243867 -i_m_cpt(98,-894,1.0,0.538120062391899).i_m_cpt1996,243908 -i_m_cpt(98,-894,1.0,0.538120062391899).i_m_cpt1996,243908 -d_m_cpt(98,-701,1.0,0.615145672375572).d_m_cpt1997,243948 -d_m_cpt(98,-701,1.0,0.615145672375572).d_m_cpt1997,243948 -d_d_cpt(98,-1378,1.0,0.384751805040216).d_d_cpt1998,243988 -d_d_cpt(98,-1378,1.0,0.384751805040216).d_d_cpt1998,243988 -b_m_cpt(98,*,1.0,0.0).b_m_cpt1999,244029 -b_m_cpt(98,*,1.0,0.0).b_m_cpt1999,244029 -m_e_cpt(98,*,1.0,0.0).m_e_cpt2000,244052 -m_e_cpt(98,*,1.0,0.0).m_e_cpt2000,244052 -consensus(99,6).consensus2003,244087 -consensus(99,6).consensus2003,244087 -m_m_cpt(99,-4,1.0,0.997231251352069).m_m_cpt2012,246209 -m_m_cpt(99,-4,1.0,0.997231251352069).m_m_cpt2012,246209 -m_i_cpt(99,-8959,1.0,0.00200942716385464).m_i_cpt2013,246247 -m_i_cpt(99,-8959,1.0,0.00200942716385464).m_i_cpt2013,246247 -m_d_cpt(99,-10001,1.0,0.000975885832998489).m_d_cpt2014,246290 -m_d_cpt(99,-10001,1.0,0.000975885832998489).m_d_cpt2014,246290 -i_i_cpt(99,-1115,1.0,0.461691155364697).i_i_cpt2015,246335 -i_i_cpt(99,-1115,1.0,0.461691155364697).i_i_cpt2015,246335 -i_m_cpt(99,-894,1.0,0.538120062391899).i_m_cpt2016,246376 -i_m_cpt(99,-894,1.0,0.538120062391899).i_m_cpt2016,246376 -d_m_cpt(99,-701,1.0,0.615145672375572).d_m_cpt2017,246416 -d_m_cpt(99,-701,1.0,0.615145672375572).d_m_cpt2017,246416 -d_d_cpt(99,-1378,1.0,0.384751805040216).d_d_cpt2018,246456 -d_d_cpt(99,-1378,1.0,0.384751805040216).d_d_cpt2018,246456 -b_m_cpt(99,*,1.0,0.0).b_m_cpt2019,246497 -b_m_cpt(99,*,1.0,0.0).b_m_cpt2019,246497 -m_e_cpt(99,*,1.0,0.0).m_e_cpt2020,246520 -m_e_cpt(99,*,1.0,0.0).m_e_cpt2020,246520 -consensus(100,1).consensus2023,246556 -consensus(100,1).consensus2023,246556 -m_m_cpt(100,-4,1.0,0.997231251352069).m_m_cpt2032,248682 -m_m_cpt(100,-4,1.0,0.997231251352069).m_m_cpt2032,248682 -m_i_cpt(100,-8959,1.0,0.00200942716385464).m_i_cpt2033,248721 -m_i_cpt(100,-8959,1.0,0.00200942716385464).m_i_cpt2033,248721 -m_d_cpt(100,-10001,1.0,0.000975885832998489).m_d_cpt2034,248765 -m_d_cpt(100,-10001,1.0,0.000975885832998489).m_d_cpt2034,248765 -i_i_cpt(100,-1115,1.0,0.461691155364697).i_i_cpt2035,248811 -i_i_cpt(100,-1115,1.0,0.461691155364697).i_i_cpt2035,248811 -i_m_cpt(100,-894,1.0,0.538120062391899).i_m_cpt2036,248853 -i_m_cpt(100,-894,1.0,0.538120062391899).i_m_cpt2036,248853 -d_m_cpt(100,-701,1.0,0.615145672375572).d_m_cpt2037,248894 -d_m_cpt(100,-701,1.0,0.615145672375572).d_m_cpt2037,248894 -d_d_cpt(100,-1378,1.0,0.384751805040216).d_d_cpt2038,248935 -d_d_cpt(100,-1378,1.0,0.384751805040216).d_d_cpt2038,248935 -b_m_cpt(100,*,1.0,0.0).b_m_cpt2039,248977 -b_m_cpt(100,*,1.0,0.0).b_m_cpt2039,248977 -m_e_cpt(100,*,1.0,0.0).m_e_cpt2040,249001 -m_e_cpt(100,*,1.0,0.0).m_e_cpt2040,249001 -consensus(101,10).consensus2043,249038 -consensus(101,10).consensus2043,249038 -m_m_cpt(101,-4,1.0,0.997231251352069).m_m_cpt2052,251175 -m_m_cpt(101,-4,1.0,0.997231251352069).m_m_cpt2052,251175 -m_i_cpt(101,-8959,1.0,0.00200942716385464).m_i_cpt2053,251214 -m_i_cpt(101,-8959,1.0,0.00200942716385464).m_i_cpt2053,251214 -m_d_cpt(101,-10001,1.0,0.000975885832998489).m_d_cpt2054,251258 -m_d_cpt(101,-10001,1.0,0.000975885832998489).m_d_cpt2054,251258 -i_i_cpt(101,-1115,1.0,0.461691155364697).i_i_cpt2055,251304 -i_i_cpt(101,-1115,1.0,0.461691155364697).i_i_cpt2055,251304 -i_m_cpt(101,-894,1.0,0.538120062391899).i_m_cpt2056,251346 -i_m_cpt(101,-894,1.0,0.538120062391899).i_m_cpt2056,251346 -d_m_cpt(101,-701,1.0,0.615145672375572).d_m_cpt2057,251387 -d_m_cpt(101,-701,1.0,0.615145672375572).d_m_cpt2057,251387 -d_d_cpt(101,-1378,1.0,0.384751805040216).d_d_cpt2058,251428 -d_d_cpt(101,-1378,1.0,0.384751805040216).d_d_cpt2058,251428 -b_m_cpt(101,*,1.0,0.0).b_m_cpt2059,251470 -b_m_cpt(101,*,1.0,0.0).b_m_cpt2059,251470 -m_e_cpt(101,*,1.0,0.0).m_e_cpt2060,251494 -m_e_cpt(101,*,1.0,0.0).m_e_cpt2060,251494 -consensus(102,1).consensus2063,251531 -consensus(102,1).consensus2063,251531 -m_m_cpt(102,-4,1.0,0.997231251352069).m_m_cpt2072,253665 -m_m_cpt(102,-4,1.0,0.997231251352069).m_m_cpt2072,253665 -m_i_cpt(102,-8959,1.0,0.00200942716385464).m_i_cpt2073,253704 -m_i_cpt(102,-8959,1.0,0.00200942716385464).m_i_cpt2073,253704 -m_d_cpt(102,-10001,1.0,0.000975885832998489).m_d_cpt2074,253748 -m_d_cpt(102,-10001,1.0,0.000975885832998489).m_d_cpt2074,253748 -i_i_cpt(102,-1115,1.0,0.461691155364697).i_i_cpt2075,253794 -i_i_cpt(102,-1115,1.0,0.461691155364697).i_i_cpt2075,253794 -i_m_cpt(102,-894,1.0,0.538120062391899).i_m_cpt2076,253836 -i_m_cpt(102,-894,1.0,0.538120062391899).i_m_cpt2076,253836 -d_m_cpt(102,-701,1.0,0.615145672375572).d_m_cpt2077,253877 -d_m_cpt(102,-701,1.0,0.615145672375572).d_m_cpt2077,253877 -d_d_cpt(102,-1378,1.0,0.384751805040216).d_d_cpt2078,253918 -d_d_cpt(102,-1378,1.0,0.384751805040216).d_d_cpt2078,253918 -b_m_cpt(102,*,1.0,0.0).b_m_cpt2079,253960 -b_m_cpt(102,*,1.0,0.0).b_m_cpt2079,253960 -m_e_cpt(102,*,1.0,0.0).m_e_cpt2080,253984 -m_e_cpt(102,*,1.0,0.0).m_e_cpt2080,253984 -consensus(103,9).consensus2083,254021 -consensus(103,9).consensus2083,254021 -m_m_cpt(103,-60,1.0,0.959264119325264).m_m_cpt2092,256152 -m_m_cpt(103,-60,1.0,0.959264119325264).m_m_cpt2092,256152 -m_i_cpt(103,-8959,1.0,0.00200942716385464).m_i_cpt2093,256192 -m_i_cpt(103,-8959,1.0,0.00200942716385464).m_i_cpt2093,256192 -m_d_cpt(103,-4695,1.0,0.0386068324102165).m_d_cpt2094,256236 -m_d_cpt(103,-4695,1.0,0.0386068324102165).m_d_cpt2094,256236 -i_i_cpt(103,-1115,1.0,0.461691155364697).i_i_cpt2095,256279 -i_i_cpt(103,-1115,1.0,0.461691155364697).i_i_cpt2095,256279 -i_m_cpt(103,-894,1.0,0.538120062391899).i_m_cpt2096,256321 -i_m_cpt(103,-894,1.0,0.538120062391899).i_m_cpt2096,256321 -d_m_cpt(103,-701,1.0,0.615145672375572).d_m_cpt2097,256362 -d_m_cpt(103,-701,1.0,0.615145672375572).d_m_cpt2097,256362 -d_d_cpt(103,-1378,1.0,0.384751805040216).d_d_cpt2098,256403 -d_d_cpt(103,-1378,1.0,0.384751805040216).d_d_cpt2098,256403 -b_m_cpt(103,*,1.0,0.0).b_m_cpt2099,256445 -b_m_cpt(103,*,1.0,0.0).b_m_cpt2099,256445 -m_e_cpt(103,*,1.0,0.0).m_e_cpt2100,256469 -m_e_cpt(103,*,1.0,0.0).m_e_cpt2100,256469 -consensus(104,10).consensus2103,256506 -consensus(104,10).consensus2103,256506 -m_m_cpt(104,-4,1.0,0.997231251352069).m_m_cpt2112,258659 -m_m_cpt(104,-4,1.0,0.997231251352069).m_m_cpt2112,258659 -m_i_cpt(104,-8904,1.0,0.002087511701584).m_i_cpt2113,258698 -m_i_cpt(104,-8904,1.0,0.002087511701584).m_i_cpt2113,258698 -m_d_cpt(104,-9946,1.0,0.0010138078813897).m_d_cpt2114,258740 -m_d_cpt(104,-9946,1.0,0.0010138078813897).m_d_cpt2114,258740 -i_i_cpt(104,-1115,1.0,0.461691155364697).i_i_cpt2115,258783 -i_i_cpt(104,-1115,1.0,0.461691155364697).i_i_cpt2115,258783 -i_m_cpt(104,-894,1.0,0.538120062391899).i_m_cpt2116,258825 -i_m_cpt(104,-894,1.0,0.538120062391899).i_m_cpt2116,258825 -d_m_cpt(104,-482,1.0,0.715984370600572).d_m_cpt2117,258866 -d_m_cpt(104,-482,1.0,0.715984370600572).d_m_cpt2117,258866 -d_d_cpt(104,-1817,1.0,0.283810525536516).d_d_cpt2118,258907 -d_d_cpt(104,-1817,1.0,0.283810525536516).d_d_cpt2118,258907 -b_m_cpt(104,*,1.0,0.0).b_m_cpt2119,258949 -b_m_cpt(104,*,1.0,0.0).b_m_cpt2119,258949 -m_e_cpt(104,*,1.0,0.0).m_e_cpt2120,258973 -m_e_cpt(104,*,1.0,0.0).m_e_cpt2120,258973 -consensus(105,16).consensus2123,259010 -consensus(105,16).consensus2123,259010 -m_m_cpt(105,-4,1.0,0.997231251352069).m_m_cpt2132,261159 -m_m_cpt(105,-4,1.0,0.997231251352069).m_m_cpt2132,261159 -m_i_cpt(105,-8959,1.0,0.00200942716385464).m_i_cpt2133,261198 -m_i_cpt(105,-8959,1.0,0.00200942716385464).m_i_cpt2133,261198 -m_d_cpt(105,-10001,1.0,0.000975885832998489).m_d_cpt2134,261242 -m_d_cpt(105,-10001,1.0,0.000975885832998489).m_d_cpt2134,261242 -i_i_cpt(105,-1115,1.0,0.461691155364697).i_i_cpt2135,261288 -i_i_cpt(105,-1115,1.0,0.461691155364697).i_i_cpt2135,261288 -i_m_cpt(105,-894,1.0,0.538120062391899).i_m_cpt2136,261330 -i_m_cpt(105,-894,1.0,0.538120062391899).i_m_cpt2136,261330 -d_m_cpt(105,-701,1.0,0.615145672375572).d_m_cpt2137,261371 -d_m_cpt(105,-701,1.0,0.615145672375572).d_m_cpt2137,261371 -d_d_cpt(105,-1378,1.0,0.384751805040216).d_d_cpt2138,261412 -d_d_cpt(105,-1378,1.0,0.384751805040216).d_d_cpt2138,261412 -b_m_cpt(105,*,1.0,0.0).b_m_cpt2139,261454 -b_m_cpt(105,*,1.0,0.0).b_m_cpt2139,261454 -m_e_cpt(105,*,1.0,0.0).m_e_cpt2140,261478 -m_e_cpt(105,*,1.0,0.0).m_e_cpt2140,261478 -consensus(106,4).consensus2143,261515 -consensus(106,4).consensus2143,261515 -m_m_cpt(106,-4,1.0,0.997231251352069).m_m_cpt2152,263641 -m_m_cpt(106,-4,1.0,0.997231251352069).m_m_cpt2152,263641 -m_i_cpt(106,-8959,1.0,0.00200942716385464).m_i_cpt2153,263680 -m_i_cpt(106,-8959,1.0,0.00200942716385464).m_i_cpt2153,263680 -m_d_cpt(106,-10001,1.0,0.000975885832998489).m_d_cpt2154,263724 -m_d_cpt(106,-10001,1.0,0.000975885832998489).m_d_cpt2154,263724 -i_i_cpt(106,-1115,1.0,0.461691155364697).i_i_cpt2155,263770 -i_i_cpt(106,-1115,1.0,0.461691155364697).i_i_cpt2155,263770 -i_m_cpt(106,-894,1.0,0.538120062391899).i_m_cpt2156,263812 -i_m_cpt(106,-894,1.0,0.538120062391899).i_m_cpt2156,263812 -d_m_cpt(106,-701,1.0,0.615145672375572).d_m_cpt2157,263853 -d_m_cpt(106,-701,1.0,0.615145672375572).d_m_cpt2157,263853 -d_d_cpt(106,-1378,1.0,0.384751805040216).d_d_cpt2158,263894 -d_d_cpt(106,-1378,1.0,0.384751805040216).d_d_cpt2158,263894 -b_m_cpt(106,*,1.0,0.0).b_m_cpt2159,263936 -b_m_cpt(106,*,1.0,0.0).b_m_cpt2159,263936 -m_e_cpt(106,*,1.0,0.0).m_e_cpt2160,263960 -m_e_cpt(106,*,1.0,0.0).m_e_cpt2160,263960 -consensus(107,10).consensus2163,263997 -consensus(107,10).consensus2163,263997 -m_m_cpt(107,-4,1.0,0.997231251352069).m_m_cpt2172,266111 -m_m_cpt(107,-4,1.0,0.997231251352069).m_m_cpt2172,266111 -m_i_cpt(107,-8959,1.0,0.00200942716385464).m_i_cpt2173,266150 -m_i_cpt(107,-8959,1.0,0.00200942716385464).m_i_cpt2173,266150 -m_d_cpt(107,-10001,1.0,0.000975885832998489).m_d_cpt2174,266194 -m_d_cpt(107,-10001,1.0,0.000975885832998489).m_d_cpt2174,266194 -i_i_cpt(107,-1115,1.0,0.461691155364697).i_i_cpt2175,266240 -i_i_cpt(107,-1115,1.0,0.461691155364697).i_i_cpt2175,266240 -i_m_cpt(107,-894,1.0,0.538120062391899).i_m_cpt2176,266282 -i_m_cpt(107,-894,1.0,0.538120062391899).i_m_cpt2176,266282 -d_m_cpt(107,-701,1.0,0.615145672375572).d_m_cpt2177,266323 -d_m_cpt(107,-701,1.0,0.615145672375572).d_m_cpt2177,266323 -d_d_cpt(107,-1378,1.0,0.384751805040216).d_d_cpt2178,266364 -d_d_cpt(107,-1378,1.0,0.384751805040216).d_d_cpt2178,266364 -b_m_cpt(107,*,1.0,0.0).b_m_cpt2179,266406 -b_m_cpt(107,*,1.0,0.0).b_m_cpt2179,266406 -m_e_cpt(107,*,1.0,0.0).m_e_cpt2180,266430 -m_e_cpt(107,*,1.0,0.0).m_e_cpt2180,266430 -consensus(108,7).consensus2183,266467 -consensus(108,7).consensus2183,266467 -m_m_cpt(108,-178,1.0,0.883927531063671).m_m_cpt2192,268643 -m_m_cpt(108,-178,1.0,0.883927531063671).m_m_cpt2192,268643 -m_i_cpt(108,-8959,1.0,0.00200942716385464).m_i_cpt2193,268684 -m_i_cpt(108,-8959,1.0,0.00200942716385464).m_i_cpt2193,268684 -m_d_cpt(108,-3135,1.0,0.113833729198997).m_d_cpt2194,268728 -m_d_cpt(108,-3135,1.0,0.113833729198997).m_d_cpt2194,268728 -i_i_cpt(108,-1115,1.0,0.461691155364697).i_i_cpt2195,268770 -i_i_cpt(108,-1115,1.0,0.461691155364697).i_i_cpt2195,268770 -i_m_cpt(108,-894,1.0,0.538120062391899).i_m_cpt2196,268812 -i_m_cpt(108,-894,1.0,0.538120062391899).i_m_cpt2196,268812 -d_m_cpt(108,-701,1.0,0.615145672375572).d_m_cpt2197,268853 -d_m_cpt(108,-701,1.0,0.615145672375572).d_m_cpt2197,268853 -d_d_cpt(108,-1378,1.0,0.384751805040216).d_d_cpt2198,268894 -d_d_cpt(108,-1378,1.0,0.384751805040216).d_d_cpt2198,268894 -b_m_cpt(108,*,1.0,0.0).b_m_cpt2199,268936 -b_m_cpt(108,*,1.0,0.0).b_m_cpt2199,268936 -m_e_cpt(108,*,1.0,0.0).m_e_cpt2200,268960 -m_e_cpt(108,*,1.0,0.0).m_e_cpt2200,268960 -consensus(109,1).consensus2203,268997 -consensus(109,1).consensus2203,268997 -m_m_cpt(109,-5,1.0,0.996540262827868).m_m_cpt2212,271139 -m_m_cpt(109,-5,1.0,0.996540262827868).m_m_cpt2212,271139 -m_i_cpt(109,-8786,1.0,0.00226542901270593).m_i_cpt2213,271178 -m_i_cpt(109,-8786,1.0,0.00226542901270593).m_i_cpt2213,271178 -m_d_cpt(109,-9828,1.0,0.00110021409032937).m_d_cpt2214,271222 -m_d_cpt(109,-9828,1.0,0.00110021409032937).m_d_cpt2214,271222 -i_i_cpt(109,-1115,1.0,0.461691155364697).i_i_cpt2215,271266 -i_i_cpt(109,-1115,1.0,0.461691155364697).i_i_cpt2215,271266 -i_m_cpt(109,-894,1.0,0.538120062391899).i_m_cpt2216,271308 -i_m_cpt(109,-894,1.0,0.538120062391899).i_m_cpt2216,271308 -d_m_cpt(109,-297,1.0,0.813943185070435).d_m_cpt2217,271349 -d_m_cpt(109,-297,1.0,0.813943185070435).d_m_cpt2217,271349 -d_d_cpt(109,-2426,1.0,0.186080656895817).d_d_cpt2218,271390 -d_d_cpt(109,-2426,1.0,0.186080656895817).d_d_cpt2218,271390 -b_m_cpt(109,*,1.0,0.0).b_m_cpt2219,271432 -b_m_cpt(109,*,1.0,0.0).b_m_cpt2219,271432 -m_e_cpt(109,*,1.0,0.0).m_e_cpt2220,271456 -m_e_cpt(109,*,1.0,0.0).m_e_cpt2220,271456 -consensus(110,3).consensus2223,271493 -consensus(110,3).consensus2223,271493 -m_m_cpt(110,-4,1.0,0.997231251352069).m_m_cpt2232,273628 -m_m_cpt(110,-4,1.0,0.997231251352069).m_m_cpt2232,273628 -m_i_cpt(110,-8959,1.0,0.00200942716385464).m_i_cpt2233,273667 -m_i_cpt(110,-8959,1.0,0.00200942716385464).m_i_cpt2233,273667 -m_d_cpt(110,-10001,1.0,0.000975885832998489).m_d_cpt2234,273711 -m_d_cpt(110,-10001,1.0,0.000975885832998489).m_d_cpt2234,273711 -i_i_cpt(110,-1115,1.0,0.461691155364697).i_i_cpt2235,273757 -i_i_cpt(110,-1115,1.0,0.461691155364697).i_i_cpt2235,273757 -i_m_cpt(110,-894,1.0,0.538120062391899).i_m_cpt2236,273799 -i_m_cpt(110,-894,1.0,0.538120062391899).i_m_cpt2236,273799 -d_m_cpt(110,-701,1.0,0.615145672375572).d_m_cpt2237,273840 -d_m_cpt(110,-701,1.0,0.615145672375572).d_m_cpt2237,273840 -d_d_cpt(110,-1378,1.0,0.384751805040216).d_d_cpt2238,273881 -d_d_cpt(110,-1378,1.0,0.384751805040216).d_d_cpt2238,273881 -b_m_cpt(110,*,1.0,0.0).b_m_cpt2239,273923 -b_m_cpt(110,*,1.0,0.0).b_m_cpt2239,273923 -m_e_cpt(110,*,1.0,0.0).m_e_cpt2240,273947 -m_e_cpt(110,*,1.0,0.0).m_e_cpt2240,273947 -consensus(111,9).consensus2243,273984 -consensus(111,9).consensus2243,273984 -m_m_cpt(111,-4,1.0,0.997231251352069).m_m_cpt2252,276115 -m_m_cpt(111,-4,1.0,0.997231251352069).m_m_cpt2252,276115 -m_i_cpt(111,-8959,1.0,0.00200942716385464).m_i_cpt2253,276154 -m_i_cpt(111,-8959,1.0,0.00200942716385464).m_i_cpt2253,276154 -m_d_cpt(111,-10001,1.0,0.000975885832998489).m_d_cpt2254,276198 -m_d_cpt(111,-10001,1.0,0.000975885832998489).m_d_cpt2254,276198 -i_i_cpt(111,-1115,1.0,0.461691155364697).i_i_cpt2255,276244 -i_i_cpt(111,-1115,1.0,0.461691155364697).i_i_cpt2255,276244 -i_m_cpt(111,-894,1.0,0.538120062391899).i_m_cpt2256,276286 -i_m_cpt(111,-894,1.0,0.538120062391899).i_m_cpt2256,276286 -d_m_cpt(111,-701,1.0,0.615145672375572).d_m_cpt2257,276327 -d_m_cpt(111,-701,1.0,0.615145672375572).d_m_cpt2257,276327 -d_d_cpt(111,-1378,1.0,0.384751805040216).d_d_cpt2258,276368 -d_d_cpt(111,-1378,1.0,0.384751805040216).d_d_cpt2258,276368 -b_m_cpt(111,*,1.0,0.0).b_m_cpt2259,276410 -b_m_cpt(111,*,1.0,0.0).b_m_cpt2259,276410 -m_e_cpt(111,*,1.0,0.0).m_e_cpt2260,276434 -m_e_cpt(111,*,1.0,0.0).m_e_cpt2260,276434 -consensus(112,10).consensus2263,276471 -consensus(112,10).consensus2263,276471 -m_m_cpt(112,-4,1.0,0.997231251352069).m_m_cpt2272,278607 -m_m_cpt(112,-4,1.0,0.997231251352069).m_m_cpt2272,278607 -m_i_cpt(112,-8959,1.0,0.00200942716385464).m_i_cpt2273,278646 -m_i_cpt(112,-8959,1.0,0.00200942716385464).m_i_cpt2273,278646 -m_d_cpt(112,-10001,1.0,0.000975885832998489).m_d_cpt2274,278690 -m_d_cpt(112,-10001,1.0,0.000975885832998489).m_d_cpt2274,278690 -i_i_cpt(112,-1115,1.0,0.461691155364697).i_i_cpt2275,278736 -i_i_cpt(112,-1115,1.0,0.461691155364697).i_i_cpt2275,278736 -i_m_cpt(112,-894,1.0,0.538120062391899).i_m_cpt2276,278778 -i_m_cpt(112,-894,1.0,0.538120062391899).i_m_cpt2276,278778 -d_m_cpt(112,-701,1.0,0.615145672375572).d_m_cpt2277,278819 -d_m_cpt(112,-701,1.0,0.615145672375572).d_m_cpt2277,278819 -d_d_cpt(112,-1378,1.0,0.384751805040216).d_d_cpt2278,278860 -d_d_cpt(112,-1378,1.0,0.384751805040216).d_d_cpt2278,278860 -b_m_cpt(112,*,1.0,0.0).b_m_cpt2279,278902 -b_m_cpt(112,*,1.0,0.0).b_m_cpt2279,278902 -m_e_cpt(112,*,1.0,0.0).m_e_cpt2280,278926 -m_e_cpt(112,*,1.0,0.0).m_e_cpt2280,278926 -consensus(113,15).consensus2283,278963 -consensus(113,15).consensus2283,278963 -m_m_cpt(113,-4,1.0,0.997231251352069).m_m_cpt2292,281097 -m_m_cpt(113,-4,1.0,0.997231251352069).m_m_cpt2292,281097 -m_i_cpt(113,-8959,1.0,0.00200942716385464).m_i_cpt2293,281136 -m_i_cpt(113,-8959,1.0,0.00200942716385464).m_i_cpt2293,281136 -m_d_cpt(113,-10001,1.0,0.000975885832998489).m_d_cpt2294,281180 -m_d_cpt(113,-10001,1.0,0.000975885832998489).m_d_cpt2294,281180 -i_i_cpt(113,-1115,1.0,0.461691155364697).i_i_cpt2295,281226 -i_i_cpt(113,-1115,1.0,0.461691155364697).i_i_cpt2295,281226 -i_m_cpt(113,-894,1.0,0.538120062391899).i_m_cpt2296,281268 -i_m_cpt(113,-894,1.0,0.538120062391899).i_m_cpt2296,281268 -d_m_cpt(113,-701,1.0,0.615145672375572).d_m_cpt2297,281309 -d_m_cpt(113,-701,1.0,0.615145672375572).d_m_cpt2297,281309 -d_d_cpt(113,-1378,1.0,0.384751805040216).d_d_cpt2298,281350 -d_d_cpt(113,-1378,1.0,0.384751805040216).d_d_cpt2298,281350 -b_m_cpt(113,*,1.0,0.0).b_m_cpt2299,281392 -b_m_cpt(113,*,1.0,0.0).b_m_cpt2299,281392 -m_e_cpt(113,*,1.0,0.0).m_e_cpt2300,281416 -m_e_cpt(113,*,1.0,0.0).m_e_cpt2300,281416 -consensus(114,18).consensus2303,281453 -consensus(114,18).consensus2303,281453 -m_m_cpt(114,-4,1.0,0.997231251352069).m_m_cpt2312,283606 -m_m_cpt(114,-4,1.0,0.997231251352069).m_m_cpt2312,283606 -m_i_cpt(114,-8959,1.0,0.00200942716385464).m_i_cpt2313,283645 -m_i_cpt(114,-8959,1.0,0.00200942716385464).m_i_cpt2313,283645 -m_d_cpt(114,-10001,1.0,0.000975885832998489).m_d_cpt2314,283689 -m_d_cpt(114,-10001,1.0,0.000975885832998489).m_d_cpt2314,283689 -i_i_cpt(114,-1115,1.0,0.461691155364697).i_i_cpt2315,283735 -i_i_cpt(114,-1115,1.0,0.461691155364697).i_i_cpt2315,283735 -i_m_cpt(114,-894,1.0,0.538120062391899).i_m_cpt2316,283777 -i_m_cpt(114,-894,1.0,0.538120062391899).i_m_cpt2316,283777 -d_m_cpt(114,-701,1.0,0.615145672375572).d_m_cpt2317,283818 -d_m_cpt(114,-701,1.0,0.615145672375572).d_m_cpt2317,283818 -d_d_cpt(114,-1378,1.0,0.384751805040216).d_d_cpt2318,283859 -d_d_cpt(114,-1378,1.0,0.384751805040216).d_d_cpt2318,283859 -b_m_cpt(114,*,1.0,0.0).b_m_cpt2319,283901 -b_m_cpt(114,*,1.0,0.0).b_m_cpt2319,283901 -m_e_cpt(114,*,1.0,0.0).m_e_cpt2320,283925 -m_e_cpt(114,*,1.0,0.0).m_e_cpt2320,283925 -consensus(115,3).consensus2323,283962 -consensus(115,3).consensus2323,283962 -m_m_cpt(115,-4,1.0,0.997231251352069).m_m_cpt2332,286111 -m_m_cpt(115,-4,1.0,0.997231251352069).m_m_cpt2332,286111 -m_i_cpt(115,-8959,1.0,0.00200942716385464).m_i_cpt2333,286150 -m_i_cpt(115,-8959,1.0,0.00200942716385464).m_i_cpt2333,286150 -m_d_cpt(115,-10001,1.0,0.000975885832998489).m_d_cpt2334,286194 -m_d_cpt(115,-10001,1.0,0.000975885832998489).m_d_cpt2334,286194 -i_i_cpt(115,-1115,1.0,0.461691155364697).i_i_cpt2335,286240 -i_i_cpt(115,-1115,1.0,0.461691155364697).i_i_cpt2335,286240 -i_m_cpt(115,-894,1.0,0.538120062391899).i_m_cpt2336,286282 -i_m_cpt(115,-894,1.0,0.538120062391899).i_m_cpt2336,286282 -d_m_cpt(115,-701,1.0,0.615145672375572).d_m_cpt2337,286323 -d_m_cpt(115,-701,1.0,0.615145672375572).d_m_cpt2337,286323 -d_d_cpt(115,-1378,1.0,0.384751805040216).d_d_cpt2338,286364 -d_d_cpt(115,-1378,1.0,0.384751805040216).d_d_cpt2338,286364 -b_m_cpt(115,*,1.0,0.0).b_m_cpt2339,286406 -b_m_cpt(115,*,1.0,0.0).b_m_cpt2339,286406 -m_e_cpt(115,*,1.0,0.0).m_e_cpt2340,286430 -m_e_cpt(115,*,1.0,0.0).m_e_cpt2340,286430 -consensus(116,13).consensus2343,286467 -consensus(116,13).consensus2343,286467 -m_m_cpt(116,-118,1.0,0.921464186198704).m_m_cpt2352,288607 -m_m_cpt(116,-118,1.0,0.921464186198704).m_m_cpt2352,288607 -m_i_cpt(116,-8959,1.0,0.00200942716385464).m_i_cpt2353,288648 -m_i_cpt(116,-8959,1.0,0.00200942716385464).m_i_cpt2353,288648 -m_d_cpt(116,-3713,1.0,0.076256281892014).m_d_cpt2354,288692 -m_d_cpt(116,-3713,1.0,0.076256281892014).m_d_cpt2354,288692 -i_i_cpt(116,-1115,1.0,0.461691155364697).i_i_cpt2355,288734 -i_i_cpt(116,-1115,1.0,0.461691155364697).i_i_cpt2355,288734 -i_m_cpt(116,-894,1.0,0.538120062391899).i_m_cpt2356,288776 -i_m_cpt(116,-894,1.0,0.538120062391899).i_m_cpt2356,288776 -d_m_cpt(116,-701,1.0,0.615145672375572).d_m_cpt2357,288817 -d_m_cpt(116,-701,1.0,0.615145672375572).d_m_cpt2357,288817 -d_d_cpt(116,-1378,1.0,0.384751805040216).d_d_cpt2358,288858 -d_d_cpt(116,-1378,1.0,0.384751805040216).d_d_cpt2358,288858 -b_m_cpt(116,*,1.0,0.0).b_m_cpt2359,288900 -b_m_cpt(116,*,1.0,0.0).b_m_cpt2359,288900 -m_e_cpt(116,*,1.0,0.0).m_e_cpt2360,288924 -m_e_cpt(116,*,1.0,0.0).m_e_cpt2360,288924 -consensus(117,4).consensus2363,288961 -consensus(117,4).consensus2363,288961 -m_m_cpt(117,-5,1.0,0.996540262827868).m_m_cpt2372,291095 -m_m_cpt(117,-5,1.0,0.996540262827868).m_m_cpt2372,291095 -m_i_cpt(117,-8846,1.0,0.00217314476676725).m_i_cpt2373,291134 -m_i_cpt(117,-8846,1.0,0.00217314476676725).m_i_cpt2373,291134 -m_d_cpt(117,-9888,1.0,0.00105539590042905).m_d_cpt2374,291178 -m_d_cpt(117,-9888,1.0,0.00105539590042905).m_d_cpt2374,291178 -i_i_cpt(117,-1115,1.0,0.461691155364697).i_i_cpt2375,291222 -i_i_cpt(117,-1115,1.0,0.461691155364697).i_i_cpt2375,291222 -i_m_cpt(117,-894,1.0,0.538120062391899).i_m_cpt2376,291264 -i_m_cpt(117,-894,1.0,0.538120062391899).i_m_cpt2376,291264 -d_m_cpt(117,-367,1.0,0.775393206347005).d_m_cpt2377,291305 -d_m_cpt(117,-367,1.0,0.775393206347005).d_m_cpt2377,291305 -d_d_cpt(117,-2153,1.0,0.224844578036938).d_d_cpt2378,291346 -d_d_cpt(117,-2153,1.0,0.224844578036938).d_d_cpt2378,291346 -b_m_cpt(117,*,1.0,0.0).b_m_cpt2379,291388 -b_m_cpt(117,*,1.0,0.0).b_m_cpt2379,291388 -m_e_cpt(117,*,1.0,0.0).m_e_cpt2380,291412 -m_e_cpt(117,*,1.0,0.0).m_e_cpt2380,291412 -consensus(118,12).consensus2383,291449 -consensus(118,12).consensus2383,291449 -m_m_cpt(118,-4,1.0,0.997231251352069).m_m_cpt2392,293597 -m_m_cpt(118,-4,1.0,0.997231251352069).m_m_cpt2392,293597 -m_i_cpt(118,-8959,1.0,0.00200942716385464).m_i_cpt2393,293636 -m_i_cpt(118,-8959,1.0,0.00200942716385464).m_i_cpt2393,293636 -m_d_cpt(118,-10001,1.0,0.000975885832998489).m_d_cpt2394,293680 -m_d_cpt(118,-10001,1.0,0.000975885832998489).m_d_cpt2394,293680 -i_i_cpt(118,-1115,1.0,0.461691155364697).i_i_cpt2395,293726 -i_i_cpt(118,-1115,1.0,0.461691155364697).i_i_cpt2395,293726 -i_m_cpt(118,-894,1.0,0.538120062391899).i_m_cpt2396,293768 -i_m_cpt(118,-894,1.0,0.538120062391899).i_m_cpt2396,293768 -d_m_cpt(118,-701,1.0,0.615145672375572).d_m_cpt2397,293809 -d_m_cpt(118,-701,1.0,0.615145672375572).d_m_cpt2397,293809 -d_d_cpt(118,-1378,1.0,0.384751805040216).d_d_cpt2398,293850 -d_d_cpt(118,-1378,1.0,0.384751805040216).d_d_cpt2398,293850 -b_m_cpt(118,*,1.0,0.0).b_m_cpt2399,293892 -b_m_cpt(118,*,1.0,0.0).b_m_cpt2399,293892 -m_e_cpt(118,*,1.0,0.0).m_e_cpt2400,293916 -m_e_cpt(118,*,1.0,0.0).m_e_cpt2400,293916 -consensus(119,5).consensus2403,293953 -consensus(119,5).consensus2403,293953 -m_m_cpt(119,-4,1.0,0.997231251352069).m_m_cpt2412,296111 -m_m_cpt(119,-4,1.0,0.997231251352069).m_m_cpt2412,296111 -m_i_cpt(119,-8959,1.0,0.00200942716385464).m_i_cpt2413,296150 -m_i_cpt(119,-8959,1.0,0.00200942716385464).m_i_cpt2413,296150 -m_d_cpt(119,-10001,1.0,0.000975885832998489).m_d_cpt2414,296194 -m_d_cpt(119,-10001,1.0,0.000975885832998489).m_d_cpt2414,296194 -i_i_cpt(119,-1115,1.0,0.461691155364697).i_i_cpt2415,296240 -i_i_cpt(119,-1115,1.0,0.461691155364697).i_i_cpt2415,296240 -i_m_cpt(119,-894,1.0,0.538120062391899).i_m_cpt2416,296282 -i_m_cpt(119,-894,1.0,0.538120062391899).i_m_cpt2416,296282 -d_m_cpt(119,-701,1.0,0.615145672375572).d_m_cpt2417,296323 -d_m_cpt(119,-701,1.0,0.615145672375572).d_m_cpt2417,296323 -d_d_cpt(119,-1378,1.0,0.384751805040216).d_d_cpt2418,296364 -d_d_cpt(119,-1378,1.0,0.384751805040216).d_d_cpt2418,296364 -b_m_cpt(119,*,1.0,0.0).b_m_cpt2419,296406 -b_m_cpt(119,*,1.0,0.0).b_m_cpt2419,296406 -m_e_cpt(119,*,1.0,0.0).m_e_cpt2420,296430 -m_e_cpt(119,*,1.0,0.0).m_e_cpt2420,296430 -consensus(120,9).consensus2423,296467 -consensus(120,9).consensus2423,296467 -m_m_cpt(120,-4,1.0,0.997231251352069).m_m_cpt2432,298598 -m_m_cpt(120,-4,1.0,0.997231251352069).m_m_cpt2432,298598 -m_i_cpt(120,-8959,1.0,0.00200942716385464).m_i_cpt2433,298637 -m_i_cpt(120,-8959,1.0,0.00200942716385464).m_i_cpt2433,298637 -m_d_cpt(120,-10001,1.0,0.000975885832998489).m_d_cpt2434,298681 -m_d_cpt(120,-10001,1.0,0.000975885832998489).m_d_cpt2434,298681 -i_i_cpt(120,-1115,1.0,0.461691155364697).i_i_cpt2435,298727 -i_i_cpt(120,-1115,1.0,0.461691155364697).i_i_cpt2435,298727 -i_m_cpt(120,-894,1.0,0.538120062391899).i_m_cpt2436,298769 -i_m_cpt(120,-894,1.0,0.538120062391899).i_m_cpt2436,298769 -d_m_cpt(120,-701,1.0,0.615145672375572).d_m_cpt2437,298810 -d_m_cpt(120,-701,1.0,0.615145672375572).d_m_cpt2437,298810 -d_d_cpt(120,-1378,1.0,0.384751805040216).d_d_cpt2438,298851 -d_d_cpt(120,-1378,1.0,0.384751805040216).d_d_cpt2438,298851 -b_m_cpt(120,*,1.0,0.0).b_m_cpt2439,298893 -b_m_cpt(120,*,1.0,0.0).b_m_cpt2439,298893 -m_e_cpt(120,*,1.0,0.0).m_e_cpt2440,298917 -m_e_cpt(120,*,1.0,0.0).m_e_cpt2440,298917 -consensus(121,10).consensus2443,298954 -consensus(121,10).consensus2443,298954 -m_m_cpt(121,-4,1.0,0.997231251352069).m_m_cpt2452,301087 -m_m_cpt(121,-4,1.0,0.997231251352069).m_m_cpt2452,301087 -m_i_cpt(121,-8959,1.0,0.00200942716385464).m_i_cpt2453,301126 -m_i_cpt(121,-8959,1.0,0.00200942716385464).m_i_cpt2453,301126 -m_d_cpt(121,-10001,1.0,0.000975885832998489).m_d_cpt2454,301170 -m_d_cpt(121,-10001,1.0,0.000975885832998489).m_d_cpt2454,301170 -i_i_cpt(121,-1115,1.0,0.461691155364697).i_i_cpt2455,301216 -i_i_cpt(121,-1115,1.0,0.461691155364697).i_i_cpt2455,301216 -i_m_cpt(121,-894,1.0,0.538120062391899).i_m_cpt2456,301258 -i_m_cpt(121,-894,1.0,0.538120062391899).i_m_cpt2456,301258 -d_m_cpt(121,-701,1.0,0.615145672375572).d_m_cpt2457,301299 -d_m_cpt(121,-701,1.0,0.615145672375572).d_m_cpt2457,301299 -d_d_cpt(121,-1378,1.0,0.384751805040216).d_d_cpt2458,301340 -d_d_cpt(121,-1378,1.0,0.384751805040216).d_d_cpt2458,301340 -b_m_cpt(121,*,1.0,0.0).b_m_cpt2459,301382 -b_m_cpt(121,*,1.0,0.0).b_m_cpt2459,301382 -m_e_cpt(121,*,1.0,0.0).m_e_cpt2460,301406 -m_e_cpt(121,*,1.0,0.0).m_e_cpt2460,301406 -consensus(122,10).consensus2463,301443 -consensus(122,10).consensus2463,301443 -m_m_cpt(122,-4,1.0,0.997231251352069).m_m_cpt2472,303597 -m_m_cpt(122,-4,1.0,0.997231251352069).m_m_cpt2472,303597 -m_i_cpt(122,-8959,1.0,0.00200942716385464).m_i_cpt2473,303636 -m_i_cpt(122,-8959,1.0,0.00200942716385464).m_i_cpt2473,303636 -m_d_cpt(122,-10001,1.0,0.000975885832998489).m_d_cpt2474,303680 -m_d_cpt(122,-10001,1.0,0.000975885832998489).m_d_cpt2474,303680 -i_i_cpt(122,-1115,1.0,0.461691155364697).i_i_cpt2475,303726 -i_i_cpt(122,-1115,1.0,0.461691155364697).i_i_cpt2475,303726 -i_m_cpt(122,-894,1.0,0.538120062391899).i_m_cpt2476,303768 -i_m_cpt(122,-894,1.0,0.538120062391899).i_m_cpt2476,303768 -d_m_cpt(122,-701,1.0,0.615145672375572).d_m_cpt2477,303809 -d_m_cpt(122,-701,1.0,0.615145672375572).d_m_cpt2477,303809 -d_d_cpt(122,-1378,1.0,0.384751805040216).d_d_cpt2478,303850 -d_d_cpt(122,-1378,1.0,0.384751805040216).d_d_cpt2478,303850 -b_m_cpt(122,*,1.0,0.0).b_m_cpt2479,303892 -b_m_cpt(122,*,1.0,0.0).b_m_cpt2479,303892 -m_e_cpt(122,*,1.0,0.0).m_e_cpt2480,303916 -m_e_cpt(122,*,1.0,0.0).m_e_cpt2480,303916 -consensus(123,6).consensus2483,303953 -consensus(123,6).consensus2483,303953 -m_m_cpt(123,-4,1.0,0.997231251352069).m_m_cpt2492,306086 -m_m_cpt(123,-4,1.0,0.997231251352069).m_m_cpt2492,306086 -m_i_cpt(123,-8959,1.0,0.00200942716385464).m_i_cpt2493,306125 -m_i_cpt(123,-8959,1.0,0.00200942716385464).m_i_cpt2493,306125 -m_d_cpt(123,-10001,1.0,0.000975885832998489).m_d_cpt2494,306169 -m_d_cpt(123,-10001,1.0,0.000975885832998489).m_d_cpt2494,306169 -i_i_cpt(123,-1115,1.0,0.461691155364697).i_i_cpt2495,306215 -i_i_cpt(123,-1115,1.0,0.461691155364697).i_i_cpt2495,306215 -i_m_cpt(123,-894,1.0,0.538120062391899).i_m_cpt2496,306257 -i_m_cpt(123,-894,1.0,0.538120062391899).i_m_cpt2496,306257 -d_m_cpt(123,-701,1.0,0.615145672375572).d_m_cpt2497,306298 -d_m_cpt(123,-701,1.0,0.615145672375572).d_m_cpt2497,306298 -d_d_cpt(123,-1378,1.0,0.384751805040216).d_d_cpt2498,306339 -d_d_cpt(123,-1378,1.0,0.384751805040216).d_d_cpt2498,306339 -b_m_cpt(123,*,1.0,0.0).b_m_cpt2499,306381 -b_m_cpt(123,*,1.0,0.0).b_m_cpt2499,306381 -m_e_cpt(123,*,1.0,0.0).m_e_cpt2500,306405 -m_e_cpt(123,*,1.0,0.0).m_e_cpt2500,306405 -consensus(124,7).consensus2503,306442 -consensus(124,7).consensus2503,306442 -m_m_cpt(124,-4,1.0,0.997231251352069).m_m_cpt2512,308572 -m_m_cpt(124,-4,1.0,0.997231251352069).m_m_cpt2512,308572 -m_i_cpt(124,-8959,1.0,0.00200942716385464).m_i_cpt2513,308611 -m_i_cpt(124,-8959,1.0,0.00200942716385464).m_i_cpt2513,308611 -m_d_cpt(124,-10001,1.0,0.000975885832998489).m_d_cpt2514,308655 -m_d_cpt(124,-10001,1.0,0.000975885832998489).m_d_cpt2514,308655 -i_i_cpt(124,-1115,1.0,0.461691155364697).i_i_cpt2515,308701 -i_i_cpt(124,-1115,1.0,0.461691155364697).i_i_cpt2515,308701 -i_m_cpt(124,-894,1.0,0.538120062391899).i_m_cpt2516,308743 -i_m_cpt(124,-894,1.0,0.538120062391899).i_m_cpt2516,308743 -d_m_cpt(124,-701,1.0,0.615145672375572).d_m_cpt2517,308784 -d_m_cpt(124,-701,1.0,0.615145672375572).d_m_cpt2517,308784 -d_d_cpt(124,-1378,1.0,0.384751805040216).d_d_cpt2518,308825 -d_d_cpt(124,-1378,1.0,0.384751805040216).d_d_cpt2518,308825 -b_m_cpt(124,*,1.0,0.0).b_m_cpt2519,308867 -b_m_cpt(124,*,1.0,0.0).b_m_cpt2519,308867 -m_e_cpt(124,*,1.0,0.0).m_e_cpt2520,308891 -m_e_cpt(124,*,1.0,0.0).m_e_cpt2520,308891 -consensus(125,18).consensus2523,308928 -consensus(125,18).consensus2523,308928 -m_m_cpt(125,-4,1.0,0.997231251352069).m_m_cpt2532,311063 -m_m_cpt(125,-4,1.0,0.997231251352069).m_m_cpt2532,311063 -m_i_cpt(125,-8959,1.0,0.00200942716385464).m_i_cpt2533,311102 -m_i_cpt(125,-8959,1.0,0.00200942716385464).m_i_cpt2533,311102 -m_d_cpt(125,-10001,1.0,0.000975885832998489).m_d_cpt2534,311146 -m_d_cpt(125,-10001,1.0,0.000975885832998489).m_d_cpt2534,311146 -i_i_cpt(125,-1115,1.0,0.461691155364697).i_i_cpt2535,311192 -i_i_cpt(125,-1115,1.0,0.461691155364697).i_i_cpt2535,311192 -i_m_cpt(125,-894,1.0,0.538120062391899).i_m_cpt2536,311234 -i_m_cpt(125,-894,1.0,0.538120062391899).i_m_cpt2536,311234 -d_m_cpt(125,-701,1.0,0.615145672375572).d_m_cpt2537,311275 -d_m_cpt(125,-701,1.0,0.615145672375572).d_m_cpt2537,311275 -d_d_cpt(125,-1378,1.0,0.384751805040216).d_d_cpt2538,311316 -d_d_cpt(125,-1378,1.0,0.384751805040216).d_d_cpt2538,311316 -b_m_cpt(125,*,1.0,0.0).b_m_cpt2539,311358 -b_m_cpt(125,*,1.0,0.0).b_m_cpt2539,311358 -m_e_cpt(125,*,1.0,0.0).m_e_cpt2540,311382 -m_e_cpt(125,*,1.0,0.0).m_e_cpt2540,311382 -consensus(126,10).consensus2543,311419 -consensus(126,10).consensus2543,311419 -m_m_cpt(126,-80,1.0,0.946057646725596).m_m_cpt2552,313563 -m_m_cpt(126,-80,1.0,0.946057646725596).m_m_cpt2552,313563 -m_i_cpt(126,-8959,1.0,0.00200942716385464).m_i_cpt2553,313603 -m_i_cpt(126,-8959,1.0,0.00200942716385464).m_i_cpt2553,313603 -m_d_cpt(126,-4275,1.0,0.0516531448846382).m_d_cpt2554,313647 -m_d_cpt(126,-4275,1.0,0.0516531448846382).m_d_cpt2554,313647 -i_i_cpt(126,-1115,1.0,0.461691155364697).i_i_cpt2555,313690 -i_i_cpt(126,-1115,1.0,0.461691155364697).i_i_cpt2555,313690 -i_m_cpt(126,-894,1.0,0.538120062391899).i_m_cpt2556,313732 -i_m_cpt(126,-894,1.0,0.538120062391899).i_m_cpt2556,313732 -d_m_cpt(126,-701,1.0,0.615145672375572).d_m_cpt2557,313773 -d_m_cpt(126,-701,1.0,0.615145672375572).d_m_cpt2557,313773 -d_d_cpt(126,-1378,1.0,0.384751805040216).d_d_cpt2558,313814 -d_d_cpt(126,-1378,1.0,0.384751805040216).d_d_cpt2558,313814 -b_m_cpt(126,*,1.0,0.0).b_m_cpt2559,313856 -b_m_cpt(126,*,1.0,0.0).b_m_cpt2559,313856 -m_e_cpt(126,*,1.0,0.0).m_e_cpt2560,313880 -m_e_cpt(126,*,1.0,0.0).m_e_cpt2560,313880 -consensus(127,18).consensus2563,313917 -consensus(127,18).consensus2563,313917 -m_m_cpt(127,-5,1.0,0.996540262827868).m_m_cpt2572,316059 -m_m_cpt(127,-5,1.0,0.996540262827868).m_m_cpt2572,316059 -m_i_cpt(127,-8884,1.0,0.00211665227899371).m_i_cpt2573,316098 -m_i_cpt(127,-8884,1.0,0.00211665227899371).m_i_cpt2573,316098 -m_d_cpt(127,-9926,1.0,0.00102796011202094).m_d_cpt2574,316142 -m_d_cpt(127,-9926,1.0,0.00102796011202094).m_d_cpt2574,316142 -i_i_cpt(127,-1115,1.0,0.461691155364697).i_i_cpt2575,316186 -i_i_cpt(127,-1115,1.0,0.461691155364697).i_i_cpt2575,316186 -i_m_cpt(127,-894,1.0,0.538120062391899).i_m_cpt2576,316228 -i_m_cpt(127,-894,1.0,0.538120062391899).i_m_cpt2576,316228 -d_m_cpt(127,-1266,1.0,0.415811049187453).d_m_cpt2577,316269 -d_m_cpt(127,-1266,1.0,0.415811049187453).d_m_cpt2577,316269 -d_d_cpt(127,-776,1.0,0.583983697306559).d_d_cpt2578,316311 -d_d_cpt(127,-776,1.0,0.583983697306559).d_d_cpt2578,316311 -b_m_cpt(127,*,1.0,0.0).b_m_cpt2579,316352 -b_m_cpt(127,*,1.0,0.0).b_m_cpt2579,316352 -m_e_cpt(127,*,1.0,0.0).m_e_cpt2580,316376 -m_e_cpt(127,*,1.0,0.0).m_e_cpt2580,316376 -consensus(128,18).consensus2583,316413 -consensus(128,18).consensus2583,316413 -m_m_cpt(128,-5,1.0,0.996540262827868).m_m_cpt2592,318539 -m_m_cpt(128,-5,1.0,0.996540262827868).m_m_cpt2592,318539 -m_i_cpt(128,-8884,1.0,0.00211665227899371).m_i_cpt2593,318578 -m_i_cpt(128,-8884,1.0,0.00211665227899371).m_i_cpt2593,318578 -m_d_cpt(128,-9926,1.0,0.00102796011202094).m_d_cpt2594,318622 -m_d_cpt(128,-9926,1.0,0.00102796011202094).m_d_cpt2594,318622 -i_i_cpt(128,-1115,1.0,0.461691155364697).i_i_cpt2595,318666 -i_i_cpt(128,-1115,1.0,0.461691155364697).i_i_cpt2595,318666 -i_m_cpt(128,-894,1.0,0.538120062391899).i_m_cpt2596,318708 -i_m_cpt(128,-894,1.0,0.538120062391899).i_m_cpt2596,318708 -d_m_cpt(128,-1266,1.0,0.415811049187453).d_m_cpt2597,318749 -d_m_cpt(128,-1266,1.0,0.415811049187453).d_m_cpt2597,318749 -d_d_cpt(128,-776,1.0,0.583983697306559).d_d_cpt2598,318791 -d_d_cpt(128,-776,1.0,0.583983697306559).d_d_cpt2598,318791 -b_m_cpt(128,*,1.0,0.0).b_m_cpt2599,318832 -b_m_cpt(128,*,1.0,0.0).b_m_cpt2599,318832 -m_e_cpt(128,*,1.0,0.0).m_e_cpt2600,318856 -m_e_cpt(128,*,1.0,0.0).m_e_cpt2600,318856 -consensus(129,18).consensus2603,318893 -consensus(129,18).consensus2603,318893 -m_m_cpt(129,-5,1.0,0.996540262827868).m_m_cpt2612,321033 -m_m_cpt(129,-5,1.0,0.996540262827868).m_m_cpt2612,321033 -m_i_cpt(129,-8884,1.0,0.00211665227899371).m_i_cpt2613,321072 -m_i_cpt(129,-8884,1.0,0.00211665227899371).m_i_cpt2613,321072 -m_d_cpt(129,-9926,1.0,0.00102796011202094).m_d_cpt2614,321116 -m_d_cpt(129,-9926,1.0,0.00102796011202094).m_d_cpt2614,321116 -i_i_cpt(129,-1115,1.0,0.461691155364697).i_i_cpt2615,321160 -i_i_cpt(129,-1115,1.0,0.461691155364697).i_i_cpt2615,321160 -i_m_cpt(129,-894,1.0,0.538120062391899).i_m_cpt2616,321202 -i_m_cpt(129,-894,1.0,0.538120062391899).i_m_cpt2616,321202 -d_m_cpt(129,-1266,1.0,0.415811049187453).d_m_cpt2617,321243 -d_m_cpt(129,-1266,1.0,0.415811049187453).d_m_cpt2617,321243 -d_d_cpt(129,-776,1.0,0.583983697306559).d_d_cpt2618,321285 -d_d_cpt(129,-776,1.0,0.583983697306559).d_d_cpt2618,321285 -b_m_cpt(129,*,1.0,0.0).b_m_cpt2619,321326 -b_m_cpt(129,*,1.0,0.0).b_m_cpt2619,321326 -m_e_cpt(129,*,1.0,0.0).m_e_cpt2620,321350 -m_e_cpt(129,*,1.0,0.0).m_e_cpt2620,321350 -consensus(130,10).consensus2623,321387 -consensus(130,10).consensus2623,321387 -m_m_cpt(130,-5,1.0,0.996540262827868).m_m_cpt2632,323538 -m_m_cpt(130,-5,1.0,0.996540262827868).m_m_cpt2632,323538 -m_i_cpt(130,-8884,1.0,0.00211665227899371).m_i_cpt2633,323577 -m_i_cpt(130,-8884,1.0,0.00211665227899371).m_i_cpt2633,323577 -m_d_cpt(130,-9926,1.0,0.00102796011202094).m_d_cpt2634,323621 -m_d_cpt(130,-9926,1.0,0.00102796011202094).m_d_cpt2634,323621 -i_i_cpt(130,-1115,1.0,0.461691155364697).i_i_cpt2635,323665 -i_i_cpt(130,-1115,1.0,0.461691155364697).i_i_cpt2635,323665 -i_m_cpt(130,-894,1.0,0.538120062391899).i_m_cpt2636,323707 -i_m_cpt(130,-894,1.0,0.538120062391899).i_m_cpt2636,323707 -d_m_cpt(130,-1266,1.0,0.415811049187453).d_m_cpt2637,323748 -d_m_cpt(130,-1266,1.0,0.415811049187453).d_m_cpt2637,323748 -d_d_cpt(130,-776,1.0,0.583983697306559).d_d_cpt2638,323790 -d_d_cpt(130,-776,1.0,0.583983697306559).d_d_cpt2638,323790 -b_m_cpt(130,*,1.0,0.0).b_m_cpt2639,323831 -b_m_cpt(130,*,1.0,0.0).b_m_cpt2639,323831 -m_e_cpt(130,*,1.0,0.0).m_e_cpt2640,323855 -m_e_cpt(130,*,1.0,0.0).m_e_cpt2640,323855 -consensus(131,1).consensus2643,323892 -consensus(131,1).consensus2643,323892 -m_m_cpt(131,-5,1.0,0.996540262827868).m_m_cpt2652,326028 -m_m_cpt(131,-5,1.0,0.996540262827868).m_m_cpt2652,326028 -m_i_cpt(131,-8884,1.0,0.00211665227899371).m_i_cpt2653,326067 -m_i_cpt(131,-8884,1.0,0.00211665227899371).m_i_cpt2653,326067 -m_d_cpt(131,-9926,1.0,0.00102796011202094).m_d_cpt2654,326111 -m_d_cpt(131,-9926,1.0,0.00102796011202094).m_d_cpt2654,326111 -i_i_cpt(131,-1115,1.0,0.461691155364697).i_i_cpt2655,326155 -i_i_cpt(131,-1115,1.0,0.461691155364697).i_i_cpt2655,326155 -i_m_cpt(131,-894,1.0,0.538120062391899).i_m_cpt2656,326197 -i_m_cpt(131,-894,1.0,0.538120062391899).i_m_cpt2656,326197 -d_m_cpt(131,-1266,1.0,0.415811049187453).d_m_cpt2657,326238 -d_m_cpt(131,-1266,1.0,0.415811049187453).d_m_cpt2657,326238 -d_d_cpt(131,-776,1.0,0.583983697306559).d_d_cpt2658,326280 -d_d_cpt(131,-776,1.0,0.583983697306559).d_d_cpt2658,326280 -b_m_cpt(131,*,1.0,0.0).b_m_cpt2659,326321 -b_m_cpt(131,*,1.0,0.0).b_m_cpt2659,326321 -m_e_cpt(131,*,1.0,0.0).m_e_cpt2660,326345 -m_e_cpt(131,*,1.0,0.0).m_e_cpt2660,326345 -consensus(132,4).consensus2663,326382 -consensus(132,4).consensus2663,326382 -m_m_cpt(132,-5,1.0,0.996540262827868).m_m_cpt2672,328504 -m_m_cpt(132,-5,1.0,0.996540262827868).m_m_cpt2672,328504 -m_i_cpt(132,-8884,1.0,0.00211665227899371).m_i_cpt2673,328543 -m_i_cpt(132,-8884,1.0,0.00211665227899371).m_i_cpt2673,328543 -m_d_cpt(132,-9926,1.0,0.00102796011202094).m_d_cpt2674,328587 -m_d_cpt(132,-9926,1.0,0.00102796011202094).m_d_cpt2674,328587 -i_i_cpt(132,-1115,1.0,0.461691155364697).i_i_cpt2675,328631 -i_i_cpt(132,-1115,1.0,0.461691155364697).i_i_cpt2675,328631 -i_m_cpt(132,-894,1.0,0.538120062391899).i_m_cpt2676,328673 -i_m_cpt(132,-894,1.0,0.538120062391899).i_m_cpt2676,328673 -d_m_cpt(132,-1266,1.0,0.415811049187453).d_m_cpt2677,328714 -d_m_cpt(132,-1266,1.0,0.415811049187453).d_m_cpt2677,328714 -d_d_cpt(132,-776,1.0,0.583983697306559).d_d_cpt2678,328756 -d_d_cpt(132,-776,1.0,0.583983697306559).d_d_cpt2678,328756 -b_m_cpt(132,*,1.0,0.0).b_m_cpt2679,328797 -b_m_cpt(132,*,1.0,0.0).b_m_cpt2679,328797 -m_e_cpt(132,*,1.0,0.0).m_e_cpt2680,328821 -m_e_cpt(132,*,1.0,0.0).m_e_cpt2680,328821 -consensus(133,7).consensus2683,328858 -consensus(133,7).consensus2683,328858 -m_m_cpt(133,-5,1.0,0.996540262827868).m_m_cpt2692,330986 -m_m_cpt(133,-5,1.0,0.996540262827868).m_m_cpt2692,330986 -m_i_cpt(133,-8884,1.0,0.00211665227899371).m_i_cpt2693,331025 -m_i_cpt(133,-8884,1.0,0.00211665227899371).m_i_cpt2693,331025 -m_d_cpt(133,-9926,1.0,0.00102796011202094).m_d_cpt2694,331069 -m_d_cpt(133,-9926,1.0,0.00102796011202094).m_d_cpt2694,331069 -i_i_cpt(133,-1115,1.0,0.461691155364697).i_i_cpt2695,331113 -i_i_cpt(133,-1115,1.0,0.461691155364697).i_i_cpt2695,331113 -i_m_cpt(133,-894,1.0,0.538120062391899).i_m_cpt2696,331155 -i_m_cpt(133,-894,1.0,0.538120062391899).i_m_cpt2696,331155 -d_m_cpt(133,-1266,1.0,0.415811049187453).d_m_cpt2697,331196 -d_m_cpt(133,-1266,1.0,0.415811049187453).d_m_cpt2697,331196 -d_d_cpt(133,-776,1.0,0.583983697306559).d_d_cpt2698,331238 -d_d_cpt(133,-776,1.0,0.583983697306559).d_d_cpt2698,331238 -b_m_cpt(133,*,1.0,0.0).b_m_cpt2699,331279 -b_m_cpt(133,*,1.0,0.0).b_m_cpt2699,331279 -m_e_cpt(133,*,1.0,0.0).m_e_cpt2700,331303 -m_e_cpt(133,*,1.0,0.0).m_e_cpt2700,331303 -consensus(134,5).consensus2703,331340 -consensus(134,5).consensus2703,331340 -m_m_cpt(134,-188,1.0,0.877821797609519).m_m_cpt2712,333475 -m_m_cpt(134,-188,1.0,0.877821797609519).m_m_cpt2712,333475 -m_i_cpt(134,-8884,1.0,0.00211665227899371).m_i_cpt2713,333516 -m_i_cpt(134,-8884,1.0,0.00211665227899371).m_i_cpt2713,333516 -m_d_cpt(134,-3060,1.0,0.119908014915658).m_d_cpt2714,333560 -m_d_cpt(134,-3060,1.0,0.119908014915658).m_d_cpt2714,333560 -i_i_cpt(134,-1115,1.0,0.461691155364697).i_i_cpt2715,333602 -i_i_cpt(134,-1115,1.0,0.461691155364697).i_i_cpt2715,333602 -i_m_cpt(134,-894,1.0,0.538120062391899).i_m_cpt2716,333644 -i_m_cpt(134,-894,1.0,0.538120062391899).i_m_cpt2716,333644 -d_m_cpt(134,-1266,1.0,0.415811049187453).d_m_cpt2717,333685 -d_m_cpt(134,-1266,1.0,0.415811049187453).d_m_cpt2717,333685 -d_d_cpt(134,-776,1.0,0.583983697306559).d_d_cpt2718,333727 -d_d_cpt(134,-776,1.0,0.583983697306559).d_d_cpt2718,333727 -b_m_cpt(134,*,1.0,0.0).b_m_cpt2719,333768 -b_m_cpt(134,*,1.0,0.0).b_m_cpt2719,333768 -m_e_cpt(134,*,1.0,0.0).m_e_cpt2720,333792 -m_e_cpt(134,*,1.0,0.0).m_e_cpt2720,333792 -consensus(135,6).consensus2723,333829 -consensus(135,6).consensus2723,333829 -m_m_cpt(135,-5,1.0,0.996540262827868).m_m_cpt2732,335974 -m_m_cpt(135,-5,1.0,0.996540262827868).m_m_cpt2732,335974 -m_i_cpt(135,-8701,1.0,0.00240291278271708).m_i_cpt2733,336013 -m_i_cpt(135,-8701,1.0,0.00240291278271708).m_i_cpt2733,336013 -m_d_cpt(135,-9744,1.0,0.00116617498737753).m_d_cpt2734,336057 -m_d_cpt(135,-9744,1.0,0.00116617498737753).m_d_cpt2734,336057 -i_i_cpt(135,-1115,1.0,0.461691155364697).i_i_cpt2735,336101 -i_i_cpt(135,-1115,1.0,0.461691155364697).i_i_cpt2735,336101 -i_m_cpt(135,-894,1.0,0.538120062391899).i_m_cpt2736,336143 -i_m_cpt(135,-894,1.0,0.538120062391899).i_m_cpt2736,336143 -d_m_cpt(135,-1218,1.0,0.429878243121503).d_m_cpt2737,336184 -d_m_cpt(135,-1218,1.0,0.429878243121503).d_m_cpt2737,336184 -d_d_cpt(135,-810,1.0,0.570381857934212).d_d_cpt2738,336226 -d_d_cpt(135,-810,1.0,0.570381857934212).d_d_cpt2738,336226 -b_m_cpt(135,*,1.0,0.0).b_m_cpt2739,336267 -b_m_cpt(135,*,1.0,0.0).b_m_cpt2739,336267 -m_e_cpt(135,*,1.0,0.0).m_e_cpt2740,336291 -m_e_cpt(135,*,1.0,0.0).m_e_cpt2740,336291 -consensus(136,9).consensus2743,336328 -consensus(136,9).consensus2743,336328 -m_m_cpt(136,-5,1.0,0.996540262827868).m_m_cpt2752,338455 -m_m_cpt(136,-5,1.0,0.996540262827868).m_m_cpt2752,338455 -m_i_cpt(136,-8786,1.0,0.00226542901270593).m_i_cpt2753,338494 -m_i_cpt(136,-8786,1.0,0.00226542901270593).m_i_cpt2753,338494 -m_d_cpt(136,-9828,1.0,0.00110021409032937).m_d_cpt2754,338538 -m_d_cpt(136,-9828,1.0,0.00110021409032937).m_d_cpt2754,338538 -i_i_cpt(136,-1115,1.0,0.461691155364697).i_i_cpt2755,338582 -i_i_cpt(136,-1115,1.0,0.461691155364697).i_i_cpt2755,338582 -i_m_cpt(136,-894,1.0,0.538120062391899).i_m_cpt2756,338624 -i_m_cpt(136,-894,1.0,0.538120062391899).i_m_cpt2756,338624 -d_m_cpt(136,-297,1.0,0.813943185070435).d_m_cpt2757,338665 -d_m_cpt(136,-297,1.0,0.813943185070435).d_m_cpt2757,338665 -d_d_cpt(136,-2426,1.0,0.186080656895817).d_d_cpt2758,338706 -d_d_cpt(136,-2426,1.0,0.186080656895817).d_d_cpt2758,338706 -b_m_cpt(136,*,1.0,0.0).b_m_cpt2759,338748 -b_m_cpt(136,*,1.0,0.0).b_m_cpt2759,338748 -m_e_cpt(136,*,1.0,0.0).m_e_cpt2760,338772 -m_e_cpt(136,*,1.0,0.0).m_e_cpt2760,338772 -consensus(137,3).consensus2763,338809 -consensus(137,3).consensus2763,338809 -m_m_cpt(137,-4,1.0,0.997231251352069).m_m_cpt2772,340941 -m_m_cpt(137,-4,1.0,0.997231251352069).m_m_cpt2772,340941 -m_i_cpt(137,-8959,1.0,0.00200942716385464).m_i_cpt2773,340980 -m_i_cpt(137,-8959,1.0,0.00200942716385464).m_i_cpt2773,340980 -m_d_cpt(137,-10001,1.0,0.000975885832998489).m_d_cpt2774,341024 -m_d_cpt(137,-10001,1.0,0.000975885832998489).m_d_cpt2774,341024 -i_i_cpt(137,-1115,1.0,0.461691155364697).i_i_cpt2775,341070 -i_i_cpt(137,-1115,1.0,0.461691155364697).i_i_cpt2775,341070 -i_m_cpt(137,-894,1.0,0.538120062391899).i_m_cpt2776,341112 -i_m_cpt(137,-894,1.0,0.538120062391899).i_m_cpt2776,341112 -d_m_cpt(137,-701,1.0,0.615145672375572).d_m_cpt2777,341153 -d_m_cpt(137,-701,1.0,0.615145672375572).d_m_cpt2777,341153 -d_d_cpt(137,-1378,1.0,0.384751805040216).d_d_cpt2778,341194 -d_d_cpt(137,-1378,1.0,0.384751805040216).d_d_cpt2778,341194 -b_m_cpt(137,*,1.0,0.0).b_m_cpt2779,341236 -b_m_cpt(137,*,1.0,0.0).b_m_cpt2779,341236 -m_e_cpt(137,*,1.0,0.0).m_e_cpt2780,341260 -m_e_cpt(137,*,1.0,0.0).m_e_cpt2780,341260 -consensus(138,5).consensus2783,341297 -consensus(138,5).consensus2783,341297 -m_m_cpt(138,-4,1.0,0.997231251352069).m_m_cpt2792,343435 -m_m_cpt(138,-4,1.0,0.997231251352069).m_m_cpt2792,343435 -m_i_cpt(138,-8959,1.0,0.00200942716385464).m_i_cpt2793,343474 -m_i_cpt(138,-8959,1.0,0.00200942716385464).m_i_cpt2793,343474 -m_d_cpt(138,-10001,1.0,0.000975885832998489).m_d_cpt2794,343518 -m_d_cpt(138,-10001,1.0,0.000975885832998489).m_d_cpt2794,343518 -i_i_cpt(138,-1115,1.0,0.461691155364697).i_i_cpt2795,343564 -i_i_cpt(138,-1115,1.0,0.461691155364697).i_i_cpt2795,343564 -i_m_cpt(138,-894,1.0,0.538120062391899).i_m_cpt2796,343606 -i_m_cpt(138,-894,1.0,0.538120062391899).i_m_cpt2796,343606 -d_m_cpt(138,-701,1.0,0.615145672375572).d_m_cpt2797,343647 -d_m_cpt(138,-701,1.0,0.615145672375572).d_m_cpt2797,343647 -d_d_cpt(138,-1378,1.0,0.384751805040216).d_d_cpt2798,343688 -d_d_cpt(138,-1378,1.0,0.384751805040216).d_d_cpt2798,343688 -b_m_cpt(138,*,1.0,0.0).b_m_cpt2799,343730 -b_m_cpt(138,*,1.0,0.0).b_m_cpt2799,343730 -m_e_cpt(138,*,1.0,0.0).m_e_cpt2800,343754 -m_e_cpt(138,*,1.0,0.0).m_e_cpt2800,343754 -consensus(139,17).consensus2803,343791 -consensus(139,17).consensus2803,343791 -m_m_cpt(139,-4,1.0,0.997231251352069).m_m_cpt2812,345931 -m_m_cpt(139,-4,1.0,0.997231251352069).m_m_cpt2812,345931 -m_i_cpt(139,-8959,1.0,0.00200942716385464).m_i_cpt2813,345970 -m_i_cpt(139,-8959,1.0,0.00200942716385464).m_i_cpt2813,345970 -m_d_cpt(139,-10001,1.0,0.000975885832998489).m_d_cpt2814,346014 -m_d_cpt(139,-10001,1.0,0.000975885832998489).m_d_cpt2814,346014 -i_i_cpt(139,-1115,1.0,0.461691155364697).i_i_cpt2815,346060 -i_i_cpt(139,-1115,1.0,0.461691155364697).i_i_cpt2815,346060 -i_m_cpt(139,-894,1.0,0.538120062391899).i_m_cpt2816,346102 -i_m_cpt(139,-894,1.0,0.538120062391899).i_m_cpt2816,346102 -d_m_cpt(139,-701,1.0,0.615145672375572).d_m_cpt2817,346143 -d_m_cpt(139,-701,1.0,0.615145672375572).d_m_cpt2817,346143 -d_d_cpt(139,-1378,1.0,0.384751805040216).d_d_cpt2818,346184 -d_d_cpt(139,-1378,1.0,0.384751805040216).d_d_cpt2818,346184 -b_m_cpt(139,*,1.0,0.0).b_m_cpt2819,346226 -b_m_cpt(139,*,1.0,0.0).b_m_cpt2819,346226 -m_e_cpt(139,*,1.0,0.0).m_e_cpt2820,346250 -m_e_cpt(139,*,1.0,0.0).m_e_cpt2820,346250 -consensus(140,13).consensus2823,346287 -consensus(140,13).consensus2823,346287 -m_m_cpt(140,-4,1.0,0.997231251352069).m_m_cpt2832,348436 -m_m_cpt(140,-4,1.0,0.997231251352069).m_m_cpt2832,348436 -m_i_cpt(140,-8959,1.0,0.00200942716385464).m_i_cpt2833,348475 -m_i_cpt(140,-8959,1.0,0.00200942716385464).m_i_cpt2833,348475 -m_d_cpt(140,-10001,1.0,0.000975885832998489).m_d_cpt2834,348519 -m_d_cpt(140,-10001,1.0,0.000975885832998489).m_d_cpt2834,348519 -i_i_cpt(140,-1115,1.0,0.461691155364697).i_i_cpt2835,348565 -i_i_cpt(140,-1115,1.0,0.461691155364697).i_i_cpt2835,348565 -i_m_cpt(140,-894,1.0,0.538120062391899).i_m_cpt2836,348607 -i_m_cpt(140,-894,1.0,0.538120062391899).i_m_cpt2836,348607 -d_m_cpt(140,-701,1.0,0.615145672375572).d_m_cpt2837,348648 -d_m_cpt(140,-701,1.0,0.615145672375572).d_m_cpt2837,348648 -d_d_cpt(140,-1378,1.0,0.384751805040216).d_d_cpt2838,348689 -d_d_cpt(140,-1378,1.0,0.384751805040216).d_d_cpt2838,348689 -b_m_cpt(140,*,1.0,0.0).b_m_cpt2839,348731 -b_m_cpt(140,*,1.0,0.0).b_m_cpt2839,348731 -m_e_cpt(140,*,1.0,0.0).m_e_cpt2840,348755 -m_e_cpt(140,*,1.0,0.0).m_e_cpt2840,348755 -consensus(141,4).consensus2843,348792 -consensus(141,4).consensus2843,348792 -m_m_cpt(141,-4,1.0,0.997231251352069).m_m_cpt2852,350925 -m_m_cpt(141,-4,1.0,0.997231251352069).m_m_cpt2852,350925 -m_i_cpt(141,-8959,1.0,0.00200942716385464).m_i_cpt2853,350964 -m_i_cpt(141,-8959,1.0,0.00200942716385464).m_i_cpt2853,350964 -m_d_cpt(141,-10001,1.0,0.000975885832998489).m_d_cpt2854,351008 -m_d_cpt(141,-10001,1.0,0.000975885832998489).m_d_cpt2854,351008 -i_i_cpt(141,-1115,1.0,0.461691155364697).i_i_cpt2855,351054 -i_i_cpt(141,-1115,1.0,0.461691155364697).i_i_cpt2855,351054 -i_m_cpt(141,-894,1.0,0.538120062391899).i_m_cpt2856,351096 -i_m_cpt(141,-894,1.0,0.538120062391899).i_m_cpt2856,351096 -d_m_cpt(141,-701,1.0,0.615145672375572).d_m_cpt2857,351137 -d_m_cpt(141,-701,1.0,0.615145672375572).d_m_cpt2857,351137 -d_d_cpt(141,-1378,1.0,0.384751805040216).d_d_cpt2858,351178 -d_d_cpt(141,-1378,1.0,0.384751805040216).d_d_cpt2858,351178 -b_m_cpt(141,*,1.0,0.0).b_m_cpt2859,351220 -b_m_cpt(141,*,1.0,0.0).b_m_cpt2859,351220 -m_e_cpt(141,*,1.0,0.0).m_e_cpt2860,351244 -m_e_cpt(141,*,1.0,0.0).m_e_cpt2860,351244 -consensus(142,18).consensus2863,351281 -consensus(142,18).consensus2863,351281 -m_m_cpt(142,-4,1.0,0.997231251352069).m_m_cpt2872,353409 -m_m_cpt(142,-4,1.0,0.997231251352069).m_m_cpt2872,353409 -m_i_cpt(142,-8959,1.0,0.00200942716385464).m_i_cpt2873,353448 -m_i_cpt(142,-8959,1.0,0.00200942716385464).m_i_cpt2873,353448 -m_d_cpt(142,-10001,1.0,0.000975885832998489).m_d_cpt2874,353492 -m_d_cpt(142,-10001,1.0,0.000975885832998489).m_d_cpt2874,353492 -i_i_cpt(142,-1115,1.0,0.461691155364697).i_i_cpt2875,353538 -i_i_cpt(142,-1115,1.0,0.461691155364697).i_i_cpt2875,353538 -i_m_cpt(142,-894,1.0,0.538120062391899).i_m_cpt2876,353580 -i_m_cpt(142,-894,1.0,0.538120062391899).i_m_cpt2876,353580 -d_m_cpt(142,-701,1.0,0.615145672375572).d_m_cpt2877,353621 -d_m_cpt(142,-701,1.0,0.615145672375572).d_m_cpt2877,353621 -d_d_cpt(142,-1378,1.0,0.384751805040216).d_d_cpt2878,353662 -d_d_cpt(142,-1378,1.0,0.384751805040216).d_d_cpt2878,353662 -b_m_cpt(142,*,1.0,0.0).b_m_cpt2879,353704 -b_m_cpt(142,*,1.0,0.0).b_m_cpt2879,353704 -m_e_cpt(142,*,1.0,0.0).m_e_cpt2880,353728 -m_e_cpt(142,*,1.0,0.0).m_e_cpt2880,353728 -consensus(143,14).consensus2883,353765 -consensus(143,14).consensus2883,353765 -m_m_cpt(143,-4,1.0,0.997231251352069).m_m_cpt2892,355899 -m_m_cpt(143,-4,1.0,0.997231251352069).m_m_cpt2892,355899 -m_i_cpt(143,-8959,1.0,0.00200942716385464).m_i_cpt2893,355938 -m_i_cpt(143,-8959,1.0,0.00200942716385464).m_i_cpt2893,355938 -m_d_cpt(143,-10001,1.0,0.000975885832998489).m_d_cpt2894,355982 -m_d_cpt(143,-10001,1.0,0.000975885832998489).m_d_cpt2894,355982 -i_i_cpt(143,-1115,1.0,0.461691155364697).i_i_cpt2895,356028 -i_i_cpt(143,-1115,1.0,0.461691155364697).i_i_cpt2895,356028 -i_m_cpt(143,-894,1.0,0.538120062391899).i_m_cpt2896,356070 -i_m_cpt(143,-894,1.0,0.538120062391899).i_m_cpt2896,356070 -d_m_cpt(143,-701,1.0,0.615145672375572).d_m_cpt2897,356111 -d_m_cpt(143,-701,1.0,0.615145672375572).d_m_cpt2897,356111 -d_d_cpt(143,-1378,1.0,0.384751805040216).d_d_cpt2898,356152 -d_d_cpt(143,-1378,1.0,0.384751805040216).d_d_cpt2898,356152 -b_m_cpt(143,*,1.0,0.0).b_m_cpt2899,356194 -b_m_cpt(143,*,1.0,0.0).b_m_cpt2899,356194 -m_e_cpt(143,*,1.0,0.0).m_e_cpt2900,356218 -m_e_cpt(143,*,1.0,0.0).m_e_cpt2900,356218 -consensus(144,1).consensus2903,356255 -consensus(144,1).consensus2903,356255 -m_m_cpt(144,-4,1.0,0.997231251352069).m_m_cpt2912,358400 -m_m_cpt(144,-4,1.0,0.997231251352069).m_m_cpt2912,358400 -m_i_cpt(144,-8959,1.0,0.00200942716385464).m_i_cpt2913,358439 -m_i_cpt(144,-8959,1.0,0.00200942716385464).m_i_cpt2913,358439 -m_d_cpt(144,-10001,1.0,0.000975885832998489).m_d_cpt2914,358483 -m_d_cpt(144,-10001,1.0,0.000975885832998489).m_d_cpt2914,358483 -i_i_cpt(144,-1115,1.0,0.461691155364697).i_i_cpt2915,358529 -i_i_cpt(144,-1115,1.0,0.461691155364697).i_i_cpt2915,358529 -i_m_cpt(144,-894,1.0,0.538120062391899).i_m_cpt2916,358571 -i_m_cpt(144,-894,1.0,0.538120062391899).i_m_cpt2916,358571 -d_m_cpt(144,-701,1.0,0.615145672375572).d_m_cpt2917,358612 -d_m_cpt(144,-701,1.0,0.615145672375572).d_m_cpt2917,358612 -d_d_cpt(144,-1378,1.0,0.384751805040216).d_d_cpt2918,358653 -d_d_cpt(144,-1378,1.0,0.384751805040216).d_d_cpt2918,358653 -b_m_cpt(144,*,1.0,0.0).b_m_cpt2919,358695 -b_m_cpt(144,*,1.0,0.0).b_m_cpt2919,358695 -m_e_cpt(144,*,1.0,0.0).m_e_cpt2920,358719 -m_e_cpt(144,*,1.0,0.0).m_e_cpt2920,358719 -consensus(145,1).consensus2923,358756 -consensus(145,1).consensus2923,358756 -m_m_cpt(145,-4,1.0,0.997231251352069).m_m_cpt2932,360907 -m_m_cpt(145,-4,1.0,0.997231251352069).m_m_cpt2932,360907 -m_i_cpt(145,-8959,1.0,0.00200942716385464).m_i_cpt2933,360946 -m_i_cpt(145,-8959,1.0,0.00200942716385464).m_i_cpt2933,360946 -m_d_cpt(145,-10001,1.0,0.000975885832998489).m_d_cpt2934,360990 -m_d_cpt(145,-10001,1.0,0.000975885832998489).m_d_cpt2934,360990 -i_i_cpt(145,-1115,1.0,0.461691155364697).i_i_cpt2935,361036 -i_i_cpt(145,-1115,1.0,0.461691155364697).i_i_cpt2935,361036 -i_m_cpt(145,-894,1.0,0.538120062391899).i_m_cpt2936,361078 -i_m_cpt(145,-894,1.0,0.538120062391899).i_m_cpt2936,361078 -d_m_cpt(145,-701,1.0,0.615145672375572).d_m_cpt2937,361119 -d_m_cpt(145,-701,1.0,0.615145672375572).d_m_cpt2937,361119 -d_d_cpt(145,-1378,1.0,0.384751805040216).d_d_cpt2938,361160 -d_d_cpt(145,-1378,1.0,0.384751805040216).d_d_cpt2938,361160 -b_m_cpt(145,*,1.0,0.0).b_m_cpt2939,361202 -b_m_cpt(145,*,1.0,0.0).b_m_cpt2939,361202 -m_e_cpt(145,*,1.0,0.0).m_e_cpt2940,361226 -m_e_cpt(145,*,1.0,0.0).m_e_cpt2940,361226 -consensus(146,19).consensus2943,361263 -consensus(146,19).consensus2943,361263 -m_m_cpt(146,-4,1.0,0.997231251352069).m_m_cpt2952,363404 -m_m_cpt(146,-4,1.0,0.997231251352069).m_m_cpt2952,363404 -m_i_cpt(146,-8959,1.0,0.00200942716385464).m_i_cpt2953,363443 -m_i_cpt(146,-8959,1.0,0.00200942716385464).m_i_cpt2953,363443 -m_d_cpt(146,-10001,1.0,0.000975885832998489).m_d_cpt2954,363487 -m_d_cpt(146,-10001,1.0,0.000975885832998489).m_d_cpt2954,363487 -i_i_cpt(146,-1115,1.0,0.461691155364697).i_i_cpt2955,363533 -i_i_cpt(146,-1115,1.0,0.461691155364697).i_i_cpt2955,363533 -i_m_cpt(146,-894,1.0,0.538120062391899).i_m_cpt2956,363575 -i_m_cpt(146,-894,1.0,0.538120062391899).i_m_cpt2956,363575 -d_m_cpt(146,-701,1.0,0.615145672375572).d_m_cpt2957,363616 -d_m_cpt(146,-701,1.0,0.615145672375572).d_m_cpt2957,363616 -d_d_cpt(146,-1378,1.0,0.384751805040216).d_d_cpt2958,363657 -d_d_cpt(146,-1378,1.0,0.384751805040216).d_d_cpt2958,363657 -b_m_cpt(146,*,1.0,0.0).b_m_cpt2959,363699 -b_m_cpt(146,*,1.0,0.0).b_m_cpt2959,363699 -m_e_cpt(146,*,1.0,0.0).m_e_cpt2960,363723 -m_e_cpt(146,*,1.0,0.0).m_e_cpt2960,363723 -consensus(147,3).consensus2963,363760 -consensus(147,3).consensus2963,363760 -m_m_cpt(147,-4,1.0,0.997231251352069).m_m_cpt2972,365893 -m_m_cpt(147,-4,1.0,0.997231251352069).m_m_cpt2972,365893 -m_i_cpt(147,-8959,1.0,0.00200942716385464).m_i_cpt2973,365932 -m_i_cpt(147,-8959,1.0,0.00200942716385464).m_i_cpt2973,365932 -m_d_cpt(147,-10001,1.0,0.000975885832998489).m_d_cpt2974,365976 -m_d_cpt(147,-10001,1.0,0.000975885832998489).m_d_cpt2974,365976 -i_i_cpt(147,-1115,1.0,0.461691155364697).i_i_cpt2975,366022 -i_i_cpt(147,-1115,1.0,0.461691155364697).i_i_cpt2975,366022 -i_m_cpt(147,-894,1.0,0.538120062391899).i_m_cpt2976,366064 -i_m_cpt(147,-894,1.0,0.538120062391899).i_m_cpt2976,366064 -d_m_cpt(147,-701,1.0,0.615145672375572).d_m_cpt2977,366105 -d_m_cpt(147,-701,1.0,0.615145672375572).d_m_cpt2977,366105 -d_d_cpt(147,-1378,1.0,0.384751805040216).d_d_cpt2978,366146 -d_d_cpt(147,-1378,1.0,0.384751805040216).d_d_cpt2978,366146 -b_m_cpt(147,*,1.0,0.0).b_m_cpt2979,366188 -b_m_cpt(147,*,1.0,0.0).b_m_cpt2979,366188 -m_e_cpt(147,*,1.0,0.0).m_e_cpt2980,366212 -m_e_cpt(147,*,1.0,0.0).m_e_cpt2980,366212 -consensus(148,9).consensus2983,366249 -consensus(148,9).consensus2983,366249 -m_m_cpt(148,-4,1.0,0.997231251352069).m_m_cpt2992,368393 -m_m_cpt(148,-4,1.0,0.997231251352069).m_m_cpt2992,368393 -m_i_cpt(148,-8959,1.0,0.00200942716385464).m_i_cpt2993,368432 -m_i_cpt(148,-8959,1.0,0.00200942716385464).m_i_cpt2993,368432 -m_d_cpt(148,-10001,1.0,0.000975885832998489).m_d_cpt2994,368476 -m_d_cpt(148,-10001,1.0,0.000975885832998489).m_d_cpt2994,368476 -i_i_cpt(148,-1115,1.0,0.461691155364697).i_i_cpt2995,368522 -i_i_cpt(148,-1115,1.0,0.461691155364697).i_i_cpt2995,368522 -i_m_cpt(148,-894,1.0,0.538120062391899).i_m_cpt2996,368564 -i_m_cpt(148,-894,1.0,0.538120062391899).i_m_cpt2996,368564 -d_m_cpt(148,-701,1.0,0.615145672375572).d_m_cpt2997,368605 -d_m_cpt(148,-701,1.0,0.615145672375572).d_m_cpt2997,368605 -d_d_cpt(148,-1378,1.0,0.384751805040216).d_d_cpt2998,368646 -d_d_cpt(148,-1378,1.0,0.384751805040216).d_d_cpt2998,368646 -b_m_cpt(148,*,1.0,0.0).b_m_cpt2999,368688 -b_m_cpt(148,*,1.0,0.0).b_m_cpt2999,368688 -m_e_cpt(148,*,1.0,0.0).m_e_cpt3000,368712 -m_e_cpt(148,*,1.0,0.0).m_e_cpt3000,368712 -consensus(149,5).consensus3003,368749 -consensus(149,5).consensus3003,368749 -m_m_cpt(149,-4,1.0,0.997231251352069).m_m_cpt3012,370889 -m_m_cpt(149,-4,1.0,0.997231251352069).m_m_cpt3012,370889 -m_i_cpt(149,-8959,1.0,0.00200942716385464).m_i_cpt3013,370928 -m_i_cpt(149,-8959,1.0,0.00200942716385464).m_i_cpt3013,370928 -m_d_cpt(149,-10001,1.0,0.000975885832998489).m_d_cpt3014,370972 -m_d_cpt(149,-10001,1.0,0.000975885832998489).m_d_cpt3014,370972 -i_i_cpt(149,-1115,1.0,0.461691155364697).i_i_cpt3015,371018 -i_i_cpt(149,-1115,1.0,0.461691155364697).i_i_cpt3015,371018 -i_m_cpt(149,-894,1.0,0.538120062391899).i_m_cpt3016,371060 -i_m_cpt(149,-894,1.0,0.538120062391899).i_m_cpt3016,371060 -d_m_cpt(149,-701,1.0,0.615145672375572).d_m_cpt3017,371101 -d_m_cpt(149,-701,1.0,0.615145672375572).d_m_cpt3017,371101 -d_d_cpt(149,-1378,1.0,0.384751805040216).d_d_cpt3018,371142 -d_d_cpt(149,-1378,1.0,0.384751805040216).d_d_cpt3018,371142 -b_m_cpt(149,*,1.0,0.0).b_m_cpt3019,371184 -b_m_cpt(149,*,1.0,0.0).b_m_cpt3019,371184 -m_e_cpt(149,*,1.0,0.0).m_e_cpt3020,371208 -m_e_cpt(149,*,1.0,0.0).m_e_cpt3020,371208 -consensus(150,10).consensus3023,371245 -consensus(150,10).consensus3023,371245 -m_m_cpt(150,-4,1.0,0.997231251352069).m_m_cpt3032,373386 -m_m_cpt(150,-4,1.0,0.997231251352069).m_m_cpt3032,373386 -m_i_cpt(150,-8959,1.0,0.00200942716385464).m_i_cpt3033,373425 -m_i_cpt(150,-8959,1.0,0.00200942716385464).m_i_cpt3033,373425 -m_d_cpt(150,-10001,1.0,0.000975885832998489).m_d_cpt3034,373469 -m_d_cpt(150,-10001,1.0,0.000975885832998489).m_d_cpt3034,373469 -i_i_cpt(150,-1115,1.0,0.461691155364697).i_i_cpt3035,373515 -i_i_cpt(150,-1115,1.0,0.461691155364697).i_i_cpt3035,373515 -i_m_cpt(150,-894,1.0,0.538120062391899).i_m_cpt3036,373557 -i_m_cpt(150,-894,1.0,0.538120062391899).i_m_cpt3036,373557 -d_m_cpt(150,-701,1.0,0.615145672375572).d_m_cpt3037,373598 -d_m_cpt(150,-701,1.0,0.615145672375572).d_m_cpt3037,373598 -d_d_cpt(150,-1378,1.0,0.384751805040216).d_d_cpt3038,373639 -d_d_cpt(150,-1378,1.0,0.384751805040216).d_d_cpt3038,373639 -b_m_cpt(150,*,1.0,0.0).b_m_cpt3039,373681 -b_m_cpt(150,*,1.0,0.0).b_m_cpt3039,373681 -m_e_cpt(150,*,1.0,0.0).m_e_cpt3040,373705 -m_e_cpt(150,*,1.0,0.0).m_e_cpt3040,373705 -consensus(151,1).consensus3043,373742 -consensus(151,1).consensus3043,373742 -m_m_cpt(151,-4,1.0,0.997231251352069).m_m_cpt3052,375870 -m_m_cpt(151,-4,1.0,0.997231251352069).m_m_cpt3052,375870 -m_i_cpt(151,-8959,1.0,0.00200942716385464).m_i_cpt3053,375909 -m_i_cpt(151,-8959,1.0,0.00200942716385464).m_i_cpt3053,375909 -m_d_cpt(151,-10001,1.0,0.000975885832998489).m_d_cpt3054,375953 -m_d_cpt(151,-10001,1.0,0.000975885832998489).m_d_cpt3054,375953 -i_i_cpt(151,-1115,1.0,0.461691155364697).i_i_cpt3055,375999 -i_i_cpt(151,-1115,1.0,0.461691155364697).i_i_cpt3055,375999 -i_m_cpt(151,-894,1.0,0.538120062391899).i_m_cpt3056,376041 -i_m_cpt(151,-894,1.0,0.538120062391899).i_m_cpt3056,376041 -d_m_cpt(151,-701,1.0,0.615145672375572).d_m_cpt3057,376082 -d_m_cpt(151,-701,1.0,0.615145672375572).d_m_cpt3057,376082 -d_d_cpt(151,-1378,1.0,0.384751805040216).d_d_cpt3058,376123 -d_d_cpt(151,-1378,1.0,0.384751805040216).d_d_cpt3058,376123 -b_m_cpt(151,*,1.0,0.0).b_m_cpt3059,376165 -b_m_cpt(151,*,1.0,0.0).b_m_cpt3059,376165 -m_e_cpt(151,*,1.0,0.0).m_e_cpt3060,376189 -m_e_cpt(151,*,1.0,0.0).m_e_cpt3060,376189 -consensus(152,6).consensus3063,376226 -consensus(152,6).consensus3063,376226 -m_m_cpt(152,-4,1.0,0.997231251352069).m_m_cpt3072,378359 -m_m_cpt(152,-4,1.0,0.997231251352069).m_m_cpt3072,378359 -m_i_cpt(152,-8959,1.0,0.00200942716385464).m_i_cpt3073,378398 -m_i_cpt(152,-8959,1.0,0.00200942716385464).m_i_cpt3073,378398 -m_d_cpt(152,-10001,1.0,0.000975885832998489).m_d_cpt3074,378442 -m_d_cpt(152,-10001,1.0,0.000975885832998489).m_d_cpt3074,378442 -i_i_cpt(152,-1115,1.0,0.461691155364697).i_i_cpt3075,378488 -i_i_cpt(152,-1115,1.0,0.461691155364697).i_i_cpt3075,378488 -i_m_cpt(152,-894,1.0,0.538120062391899).i_m_cpt3076,378530 -i_m_cpt(152,-894,1.0,0.538120062391899).i_m_cpt3076,378530 -d_m_cpt(152,-701,1.0,0.615145672375572).d_m_cpt3077,378571 -d_m_cpt(152,-701,1.0,0.615145672375572).d_m_cpt3077,378571 -d_d_cpt(152,-1378,1.0,0.384751805040216).d_d_cpt3078,378612 -d_d_cpt(152,-1378,1.0,0.384751805040216).d_d_cpt3078,378612 -b_m_cpt(152,*,1.0,0.0).b_m_cpt3079,378654 -b_m_cpt(152,*,1.0,0.0).b_m_cpt3079,378654 -m_e_cpt(152,*,1.0,0.0).m_e_cpt3080,378678 -m_e_cpt(152,*,1.0,0.0).m_e_cpt3080,378678 -consensus(153,18).consensus3083,378715 -consensus(153,18).consensus3083,378715 -m_m_cpt(153,-4,1.0,0.997231251352069).m_m_cpt3092,380867 -m_m_cpt(153,-4,1.0,0.997231251352069).m_m_cpt3092,380867 -m_i_cpt(153,-8959,1.0,0.00200942716385464).m_i_cpt3093,380906 -m_i_cpt(153,-8959,1.0,0.00200942716385464).m_i_cpt3093,380906 -m_d_cpt(153,-10001,1.0,0.000975885832998489).m_d_cpt3094,380950 -m_d_cpt(153,-10001,1.0,0.000975885832998489).m_d_cpt3094,380950 -i_i_cpt(153,-1115,1.0,0.461691155364697).i_i_cpt3095,380996 -i_i_cpt(153,-1115,1.0,0.461691155364697).i_i_cpt3095,380996 -i_m_cpt(153,-894,1.0,0.538120062391899).i_m_cpt3096,381038 -i_m_cpt(153,-894,1.0,0.538120062391899).i_m_cpt3096,381038 -d_m_cpt(153,-701,1.0,0.615145672375572).d_m_cpt3097,381079 -d_m_cpt(153,-701,1.0,0.615145672375572).d_m_cpt3097,381079 -d_d_cpt(153,-1378,1.0,0.384751805040216).d_d_cpt3098,381120 -d_d_cpt(153,-1378,1.0,0.384751805040216).d_d_cpt3098,381120 -b_m_cpt(153,*,1.0,0.0).b_m_cpt3099,381162 -b_m_cpt(153,*,1.0,0.0).b_m_cpt3099,381162 -m_e_cpt(153,*,1.0,0.0).m_e_cpt3100,381186 -m_e_cpt(153,*,1.0,0.0).m_e_cpt3100,381186 -consensus(154,1).consensus3103,381223 -consensus(154,1).consensus3103,381223 -m_m_cpt(154,-4,1.0,0.997231251352069).m_m_cpt3112,383353 -m_m_cpt(154,-4,1.0,0.997231251352069).m_m_cpt3112,383353 -m_i_cpt(154,-8959,1.0,0.00200942716385464).m_i_cpt3113,383392 -m_i_cpt(154,-8959,1.0,0.00200942716385464).m_i_cpt3113,383392 -m_d_cpt(154,-10001,1.0,0.000975885832998489).m_d_cpt3114,383436 -m_d_cpt(154,-10001,1.0,0.000975885832998489).m_d_cpt3114,383436 -i_i_cpt(154,-1115,1.0,0.461691155364697).i_i_cpt3115,383482 -i_i_cpt(154,-1115,1.0,0.461691155364697).i_i_cpt3115,383482 -i_m_cpt(154,-894,1.0,0.538120062391899).i_m_cpt3116,383524 -i_m_cpt(154,-894,1.0,0.538120062391899).i_m_cpt3116,383524 -d_m_cpt(154,-701,1.0,0.615145672375572).d_m_cpt3117,383565 -d_m_cpt(154,-701,1.0,0.615145672375572).d_m_cpt3117,383565 -d_d_cpt(154,-1378,1.0,0.384751805040216).d_d_cpt3118,383606 -d_d_cpt(154,-1378,1.0,0.384751805040216).d_d_cpt3118,383606 -b_m_cpt(154,*,1.0,0.0).b_m_cpt3119,383648 -b_m_cpt(154,*,1.0,0.0).b_m_cpt3119,383648 -m_e_cpt(154,*,1.0,0.0).m_e_cpt3120,383672 -m_e_cpt(154,*,1.0,0.0).m_e_cpt3120,383672 -consensus(155,12).consensus3123,383709 -consensus(155,12).consensus3123,383709 -m_m_cpt(155,-4,1.0,0.997231251352069).m_m_cpt3132,385838 -m_m_cpt(155,-4,1.0,0.997231251352069).m_m_cpt3132,385838 -m_i_cpt(155,-8959,1.0,0.00200942716385464).m_i_cpt3133,385877 -m_i_cpt(155,-8959,1.0,0.00200942716385464).m_i_cpt3133,385877 -m_d_cpt(155,-10001,1.0,0.000975885832998489).m_d_cpt3134,385921 -m_d_cpt(155,-10001,1.0,0.000975885832998489).m_d_cpt3134,385921 -i_i_cpt(155,-1115,1.0,0.461691155364697).i_i_cpt3135,385967 -i_i_cpt(155,-1115,1.0,0.461691155364697).i_i_cpt3135,385967 -i_m_cpt(155,-894,1.0,0.538120062391899).i_m_cpt3136,386009 -i_m_cpt(155,-894,1.0,0.538120062391899).i_m_cpt3136,386009 -d_m_cpt(155,-701,1.0,0.615145672375572).d_m_cpt3137,386050 -d_m_cpt(155,-701,1.0,0.615145672375572).d_m_cpt3137,386050 -d_d_cpt(155,-1378,1.0,0.384751805040216).d_d_cpt3138,386091 -d_d_cpt(155,-1378,1.0,0.384751805040216).d_d_cpt3138,386091 -b_m_cpt(155,*,1.0,0.0).b_m_cpt3139,386133 -b_m_cpt(155,*,1.0,0.0).b_m_cpt3139,386133 -m_e_cpt(155,*,1.0,0.0).m_e_cpt3140,386157 -m_e_cpt(155,*,1.0,0.0).m_e_cpt3140,386157 -consensus(156,1).consensus3143,386194 -consensus(156,1).consensus3143,386194 -m_m_cpt(156,-4,1.0,0.997231251352069).m_m_cpt3152,388339 -m_m_cpt(156,-4,1.0,0.997231251352069).m_m_cpt3152,388339 -m_i_cpt(156,-8959,1.0,0.00200942716385464).m_i_cpt3153,388378 -m_i_cpt(156,-8959,1.0,0.00200942716385464).m_i_cpt3153,388378 -m_d_cpt(156,-10001,1.0,0.000975885832998489).m_d_cpt3154,388422 -m_d_cpt(156,-10001,1.0,0.000975885832998489).m_d_cpt3154,388422 -i_i_cpt(156,-1115,1.0,0.461691155364697).i_i_cpt3155,388468 -i_i_cpt(156,-1115,1.0,0.461691155364697).i_i_cpt3155,388468 -i_m_cpt(156,-894,1.0,0.538120062391899).i_m_cpt3156,388510 -i_m_cpt(156,-894,1.0,0.538120062391899).i_m_cpt3156,388510 -d_m_cpt(156,-701,1.0,0.615145672375572).d_m_cpt3157,388551 -d_m_cpt(156,-701,1.0,0.615145672375572).d_m_cpt3157,388551 -d_d_cpt(156,-1378,1.0,0.384751805040216).d_d_cpt3158,388592 -d_d_cpt(156,-1378,1.0,0.384751805040216).d_d_cpt3158,388592 -b_m_cpt(156,*,1.0,0.0).b_m_cpt3159,388634 -b_m_cpt(156,*,1.0,0.0).b_m_cpt3159,388634 -m_e_cpt(156,*,1.0,0.0).m_e_cpt3160,388658 -m_e_cpt(156,*,1.0,0.0).m_e_cpt3160,388658 -consensus(157,10).consensus3163,388695 -consensus(157,10).consensus3163,388695 -m_m_cpt(157,-5,1.0,0.996540262827868).m_m_cpt3172,390852 -m_m_cpt(157,-5,1.0,0.996540262827868).m_m_cpt3172,390852 -m_i_cpt(157,-8875,1.0,0.00212989791536183).m_i_cpt3173,390891 -m_i_cpt(157,-8875,1.0,0.00212989791536183).m_i_cpt3173,390891 -m_d_cpt(157,-9917,1.0,0.00103439290496472).m_d_cpt3174,390935 -m_d_cpt(157,-9917,1.0,0.00103439290496472).m_d_cpt3174,390935 -i_i_cpt(157,-1115,1.0,0.461691155364697).i_i_cpt3175,390979 -i_i_cpt(157,-1115,1.0,0.461691155364697).i_i_cpt3175,390979 -i_m_cpt(157,-894,1.0,0.538120062391899).i_m_cpt3176,391021 -i_m_cpt(157,-894,1.0,0.538120062391899).i_m_cpt3176,391021 -d_m_cpt(157,-701,1.0,0.615145672375572).d_m_cpt3177,391062 -d_m_cpt(157,-701,1.0,0.615145672375572).d_m_cpt3177,391062 -d_d_cpt(157,-1378,1.0,0.384751805040216).d_d_cpt3178,391103 -d_d_cpt(157,-1378,1.0,0.384751805040216).d_d_cpt3178,391103 -b_m_cpt(157,*,1.0,0.0).b_m_cpt3179,391145 -b_m_cpt(157,*,1.0,0.0).b_m_cpt3179,391145 -m_e_cpt(157,*,1.0,0.0).m_e_cpt3180,391169 -m_e_cpt(157,*,1.0,0.0).m_e_cpt3180,391169 -consensus(158,1).consensus3183,391206 -consensus(158,1).consensus3183,391206 -m_m_cpt(158,-5,1.0,0.996540262827868).m_m_cpt3192,393339 -m_m_cpt(158,-5,1.0,0.996540262827868).m_m_cpt3192,393339 -m_i_cpt(158,-8816,1.0,0.0022188071577865).m_i_cpt3193,393378 -m_i_cpt(158,-8816,1.0,0.0022188071577865).m_i_cpt3193,393378 -m_d_cpt(158,-9858,1.0,0.00107757201175973).m_d_cpt3194,393421 -m_d_cpt(158,-9858,1.0,0.00107757201175973).m_d_cpt3194,393421 -i_i_cpt(158,-1115,1.0,0.461691155364697).i_i_cpt3195,393465 -i_i_cpt(158,-1115,1.0,0.461691155364697).i_i_cpt3195,393465 -i_m_cpt(158,-894,1.0,0.538120062391899).i_m_cpt3196,393507 -i_m_cpt(158,-894,1.0,0.538120062391899).i_m_cpt3196,393507 -d_m_cpt(158,-701,1.0,0.615145672375572).d_m_cpt3197,393548 -d_m_cpt(158,-701,1.0,0.615145672375572).d_m_cpt3197,393548 -d_d_cpt(158,-1378,1.0,0.384751805040216).d_d_cpt3198,393589 -d_d_cpt(158,-1378,1.0,0.384751805040216).d_d_cpt3198,393589 -b_m_cpt(158,*,1.0,0.0).b_m_cpt3199,393631 -b_m_cpt(158,*,1.0,0.0).b_m_cpt3199,393631 -m_e_cpt(158,*,1.0,0.0).m_e_cpt3200,393655 -m_e_cpt(158,*,1.0,0.0).m_e_cpt3200,393655 -consensus(159,7).consensus3203,393692 -consensus(159,7).consensus3203,393692 -m_m_cpt(159,-5,1.0,0.996540262827868).m_m_cpt3212,395823 -m_m_cpt(159,-5,1.0,0.996540262827868).m_m_cpt3212,395823 -m_i_cpt(159,-8816,1.0,0.0022188071577865).m_i_cpt3213,395862 -m_i_cpt(159,-8816,1.0,0.0022188071577865).m_i_cpt3213,395862 -m_d_cpt(159,-9858,1.0,0.00107757201175973).m_d_cpt3214,395905 -m_d_cpt(159,-9858,1.0,0.00107757201175973).m_d_cpt3214,395905 -i_i_cpt(159,-1115,1.0,0.461691155364697).i_i_cpt3215,395949 -i_i_cpt(159,-1115,1.0,0.461691155364697).i_i_cpt3215,395949 -i_m_cpt(159,-894,1.0,0.538120062391899).i_m_cpt3216,395991 -i_m_cpt(159,-894,1.0,0.538120062391899).i_m_cpt3216,395991 -d_m_cpt(159,-701,1.0,0.615145672375572).d_m_cpt3217,396032 -d_m_cpt(159,-701,1.0,0.615145672375572).d_m_cpt3217,396032 -d_d_cpt(159,-1378,1.0,0.384751805040216).d_d_cpt3218,396073 -d_d_cpt(159,-1378,1.0,0.384751805040216).d_d_cpt3218,396073 -b_m_cpt(159,*,1.0,0.0).b_m_cpt3219,396115 -b_m_cpt(159,*,1.0,0.0).b_m_cpt3219,396115 -m_e_cpt(159,*,1.0,0.0).m_e_cpt3220,396139 -m_e_cpt(159,*,1.0,0.0).m_e_cpt3220,396139 -consensus(160,9).consensus3223,396176 -consensus(160,9).consensus3223,396176 -m_m_cpt(160,-5,1.0,0.996540262827868).m_m_cpt3232,398311 -m_m_cpt(160,-5,1.0,0.996540262827868).m_m_cpt3232,398311 -m_i_cpt(160,-8724,1.0,0.00236490836709093).m_i_cpt3233,398350 -m_i_cpt(160,-8724,1.0,0.00236490836709093).m_i_cpt3233,398350 -m_d_cpt(160,-9766,1.0,0.00114852661161227).m_d_cpt3234,398394 -m_d_cpt(160,-9766,1.0,0.00114852661161227).m_d_cpt3234,398394 -i_i_cpt(160,-1115,1.0,0.461691155364697).i_i_cpt3235,398438 -i_i_cpt(160,-1115,1.0,0.461691155364697).i_i_cpt3235,398438 -i_m_cpt(160,-894,1.0,0.538120062391899).i_m_cpt3236,398480 -i_m_cpt(160,-894,1.0,0.538120062391899).i_m_cpt3236,398480 -d_m_cpt(160,-701,1.0,0.615145672375572).d_m_cpt3237,398521 -d_m_cpt(160,-701,1.0,0.615145672375572).d_m_cpt3237,398521 -d_d_cpt(160,-1378,1.0,0.384751805040216).d_d_cpt3238,398562 -d_d_cpt(160,-1378,1.0,0.384751805040216).d_d_cpt3238,398562 -b_m_cpt(160,*,1.0,0.0).b_m_cpt3239,398604 -b_m_cpt(160,*,1.0,0.0).b_m_cpt3239,398604 -m_e_cpt(160,*,1.0,0.0).m_e_cpt3240,398628 -m_e_cpt(160,*,1.0,0.0).m_e_cpt3240,398628 -consensus(161,20).consensus3243,398665 -consensus(161,20).consensus3243,398665 -m_m_cpt(161,-6,1.0,0.995849753094458).m_m_cpt3252,400816 -m_m_cpt(161,-6,1.0,0.995849753094458).m_m_cpt3252,400816 -m_i_cpt(161,-8565,1.0,0.00264045084575806).m_i_cpt3253,400855 -m_i_cpt(161,-8565,1.0,0.00264045084575806).m_i_cpt3253,400855 -m_d_cpt(161,-9607,1.0,0.00128234484904702).m_d_cpt3254,400899 -m_d_cpt(161,-9607,1.0,0.00128234484904702).m_d_cpt3254,400899 -i_i_cpt(161,-1115,1.0,0.461691155364697).i_i_cpt3255,400943 -i_i_cpt(161,-1115,1.0,0.461691155364697).i_i_cpt3255,400943 -i_m_cpt(161,-894,1.0,0.538120062391899).i_m_cpt3256,400985 -i_m_cpt(161,-894,1.0,0.538120062391899).i_m_cpt3256,400985 -d_m_cpt(161,-701,1.0,0.615145672375572).d_m_cpt3257,401026 -d_m_cpt(161,-701,1.0,0.615145672375572).d_m_cpt3257,401026 -d_d_cpt(161,-1378,1.0,0.384751805040216).d_d_cpt3258,401067 -d_d_cpt(161,-1378,1.0,0.384751805040216).d_d_cpt3258,401067 -b_m_cpt(161,*,1.0,0.0).b_m_cpt3259,401109 -b_m_cpt(161,*,1.0,0.0).b_m_cpt3259,401109 -m_e_cpt(161,*,1.0,0.0).m_e_cpt3260,401133 -m_e_cpt(161,*,1.0,0.0).m_e_cpt3260,401133 -consensus(162,15).consensus3263,401170 -consensus(162,15).consensus3263,401170 -m_m_cpt(162,*,1.0,0.0).m_m_cpt3272,402706 -m_m_cpt(162,*,1.0,0.0).m_m_cpt3272,402706 -m_i_cpt(162,*,1.0,0.0).m_i_cpt3273,402730 -m_i_cpt(162,*,1.0,0.0).m_i_cpt3273,402730 -m_d_cpt(162,*,1.0,0.0).m_d_cpt3274,402754 -m_d_cpt(162,*,1.0,0.0).m_d_cpt3274,402754 -i_i_cpt(162,*,1.0,0.0).i_i_cpt3275,402778 -i_i_cpt(162,*,1.0,0.0).i_i_cpt3275,402778 -i_m_cpt(162,*,1.0,0.0).i_m_cpt3276,402802 -i_m_cpt(162,*,1.0,0.0).i_m_cpt3276,402802 -d_m_cpt(162,*,1.0,0.0).d_m_cpt3277,402826 -d_m_cpt(162,*,1.0,0.0).d_m_cpt3277,402826 -d_d_cpt(162,*,1.0,0.0).d_d_cpt3278,402850 -d_d_cpt(162,*,1.0,0.0).d_d_cpt3278,402850 -b_m_cpt(162,*,1.0,0.0).b_m_cpt3279,402874 -b_m_cpt(162,*,1.0,0.0).b_m_cpt3279,402874 -m_e_cpt(162,0,1.0,1.0).m_e_cpt3280,402898 -m_e_cpt(162,0,1.0,1.0).m_e_cpt3280,402898 - -packages/CLPBN/examples/HMMer/plan7.yap,8440 -m(I,J,M) :-m56,1287 -m(I,J,M) :-m56,1287 -m(I,J,M) :-m56,1287 -m(I,J,M) :-m63,1415 -m(I,J,M) :-m63,1415 -m(I,J,M) :-m63,1415 -i(I,J,S) :-i77,1672 -i(I,J,S) :-i77,1672 -i(I,J,S) :-i77,1672 -d(I,J,D) :-d87,1847 -d(I,J,D) :-d87,1847 -d(I,J,D) :-d87,1847 -d(I,J,S) :-d91,1930 -d(I,J,S) :-d91,1930 -d(I,J,S) :-d91,1930 -e_evidence([],_).e_evidence99,2078 -e_evidence([],_).e_evidence99,2078 -e_evidence([Emission|Es],Emission) :-e_evidence100,2096 -e_evidence([Emission|Es],Emission) :-e_evidence100,2096 -e_evidence([Emission|Es],Emission) :-e_evidence100,2096 -s(0,S) :-s109,2247 -s(0,S) :-s109,2247 -s(0,S) :-s109,2247 -n(I,S) :-n113,2311 -n(I,S) :-n113,2311 -n(I,S) :-n113,2311 -b(I,S) :-b122,2465 -b(I,S) :-b122,2465 -b(I,S) :-b122,2465 -b_m_transitions(Ss,Ss,_,[],[]) :- !.b_m_transitions129,2611 -b_m_transitions(Ss,Ss,_,[],[]) :- !.b_m_transitions129,2611 -b_m_transitions(Ss,Ss,_,[],[]) :- !.b_m_transitions129,2611 -b_m_transitions(J0,Ss,I,[M|Ms],[CPT|MCPTs]) :-b_m_transitions130,2648 -b_m_transitions(J0,Ss,I,[M|Ms],[CPT|MCPTs]) :-b_m_transitions130,2648 -b_m_transitions(J0,Ss,I,[M|Ms],[CPT|MCPTs]) :-b_m_transitions130,2648 -j(I,S) :-j136,2771 -j(I,S) :-j136,2771 -j(I,S) :-j136,2771 -e(I,S) :-e145,2925 -e(I,S) :-e145,2925 -e(I,S) :-e145,2925 -c(I,S) :-c152,3051 -c(I,S) :-c152,3051 -c(I,S) :-c152,3051 -t(I,S) :-t162,3204 -t(I,S) :-t162,3204 -t(I,S) :-t162,3204 -emitting(M) :-emitting168,3319 -emitting(M) :-emitting168,3319 -emitting(M) :-emitting168,3319 -emission_cpt(Key, CPT) :-emission_cpt171,3349 -emission_cpt(Key, CPT) :-emission_cpt171,3349 -emission_cpt(Key, CPT) :-emission_cpt171,3349 -emission_cpt(_, CPT) :-emission_cpt174,3428 -emission_cpt(_, CPT) :-emission_cpt174,3428 -emission_cpt(_, CPT) :-emission_cpt174,3428 -emission_cpt(m,J,CPT) :- !, me_cpt(J,CPT).emission_cpt177,3469 -emission_cpt(m,J,CPT) :- !, me_cpt(J,CPT).emission_cpt177,3469 -emission_cpt(m,J,CPT) :- !, me_cpt(J,CPT).emission_cpt177,3469 -emission_cpt(m,J,CPT) :- !, me_cpt(J,CPT).emission_cpt177,3469 -emission_cpt(m,J,CPT) :- !, me_cpt(J,CPT).emission_cpt177,3469 -emission_cpt(i,J,CPT) :- !, ie_cpt(J,CPT).emission_cpt178,3512 -emission_cpt(i,J,CPT) :- !, ie_cpt(J,CPT).emission_cpt178,3512 -emission_cpt(i,J,CPT) :- !, ie_cpt(J,CPT).emission_cpt178,3512 -emission_cpt(i,J,CPT) :- !, ie_cpt(J,CPT).emission_cpt178,3512 -emission_cpt(i,J,CPT) :- !, ie_cpt(J,CPT).emission_cpt178,3512 -emission_cpt(_,_,CPT) :- nule_cpt(CPT).emission_cpt179,3555 -emission_cpt(_,_,CPT) :- nule_cpt(CPT).emission_cpt179,3555 -emission_cpt(_,_,CPT) :- nule_cpt(CPT).emission_cpt179,3555 -emission_cpt(_,_,CPT) :- nule_cpt(CPT).emission_cpt179,3555 -emission_cpt(_,_,CPT) :- nule_cpt(CPT).emission_cpt179,3555 -ie_cpt(I,Logs) :- ie_cpt(I,Logs,_,_).ie_cpt182,3597 -ie_cpt(I,Logs) :- ie_cpt(I,Logs,_,_).ie_cpt182,3597 -ie_cpt(I,Logs) :- ie_cpt(I,Logs,_,_).ie_cpt182,3597 -ie_cpt(I,Logs) :- ie_cpt(I,Logs,_,_).ie_cpt182,3597 -ie_cpt(I,Logs) :- ie_cpt(I,Logs,_,_).ie_cpt182,3597 -me_cpt(I,Logs) :- me_cpt(I,Logs,_,_).me_cpt183,3635 -me_cpt(I,Logs) :- me_cpt(I,Logs,_,_).me_cpt183,3635 -me_cpt(I,Logs) :- me_cpt(I,Logs,_,_).me_cpt183,3635 -me_cpt(I,Logs) :- me_cpt(I,Logs,_,_).me_cpt183,3635 -me_cpt(I,Logs) :- me_cpt(I,Logs,_,_).me_cpt183,3635 -nule_cpt(Logs) :- nule_cpt(Logs,_,_).nule_cpt184,3673 -nule_cpt(Logs) :- nule_cpt(Logs,_,_).nule_cpt184,3673 -nule_cpt(Logs) :- nule_cpt(Logs,_,_).nule_cpt184,3673 -nule_cpt(Logs) :- nule_cpt(Logs,_,_).nule_cpt184,3673 -nule_cpt(Logs) :- nule_cpt(Logs,_,_).nule_cpt184,3673 -b_m_cpt(I,Log) :- b_m_cpt(I,Log,_,_).b_m_cpt185,3711 -b_m_cpt(I,Log) :- b_m_cpt(I,Log,_,_).b_m_cpt185,3711 -b_m_cpt(I,Log) :- b_m_cpt(I,Log,_,_).b_m_cpt185,3711 -b_m_cpt(I,Log) :- b_m_cpt(I,Log,_,_).b_m_cpt185,3711 -b_m_cpt(I,Log) :- b_m_cpt(I,Log,_,_).b_m_cpt185,3711 -b_d_cpt(Log) :- b_d_cpt(Log,_,_).b_d_cpt186,3749 -b_d_cpt(Log) :- b_d_cpt(Log,_,_).b_d_cpt186,3749 -b_d_cpt(Log) :- b_d_cpt(Log,_,_).b_d_cpt186,3749 -b_d_cpt(Log) :- b_d_cpt(Log,_,_).b_d_cpt186,3749 -b_d_cpt(Log) :- b_d_cpt(Log,_,_).b_d_cpt186,3749 -c_c_cpt(Log) :- c_c_cpt(Log,_,_).c_c_cpt187,3783 -c_c_cpt(Log) :- c_c_cpt(Log,_,_).c_c_cpt187,3783 -c_c_cpt(Log) :- c_c_cpt(Log,_,_).c_c_cpt187,3783 -c_c_cpt(Log) :- c_c_cpt(Log,_,_).c_c_cpt187,3783 -c_c_cpt(Log) :- c_c_cpt(Log,_,_).c_c_cpt187,3783 -c_t_cpt(Log) :- c_t_cpt(Log,_,_).c_t_cpt188,3817 -c_t_cpt(Log) :- c_t_cpt(Log,_,_).c_t_cpt188,3817 -c_t_cpt(Log) :- c_t_cpt(Log,_,_).c_t_cpt188,3817 -c_t_cpt(Log) :- c_t_cpt(Log,_,_).c_t_cpt188,3817 -c_t_cpt(Log) :- c_t_cpt(Log,_,_).c_t_cpt188,3817 -d_d_cpt(I,Log) :- d_d_cpt(I,Log,_,_).d_d_cpt189,3851 -d_d_cpt(I,Log) :- d_d_cpt(I,Log,_,_).d_d_cpt189,3851 -d_d_cpt(I,Log) :- d_d_cpt(I,Log,_,_).d_d_cpt189,3851 -d_d_cpt(I,Log) :- d_d_cpt(I,Log,_,_).d_d_cpt189,3851 -d_d_cpt(I,Log) :- d_d_cpt(I,Log,_,_).d_d_cpt189,3851 -d_m_cpt(I,Log) :- d_m_cpt(I,Log,_,_).d_m_cpt190,3889 -d_m_cpt(I,Log) :- d_m_cpt(I,Log,_,_).d_m_cpt190,3889 -d_m_cpt(I,Log) :- d_m_cpt(I,Log,_,_).d_m_cpt190,3889 -d_m_cpt(I,Log) :- d_m_cpt(I,Log,_,_).d_m_cpt190,3889 -d_m_cpt(I,Log) :- d_m_cpt(I,Log,_,_).d_m_cpt190,3889 -e_c_cpt(Log) :- e_c_cpt(Log,_,_).e_c_cpt191,3927 -e_c_cpt(Log) :- e_c_cpt(Log,_,_).e_c_cpt191,3927 -e_c_cpt(Log) :- e_c_cpt(Log,_,_).e_c_cpt191,3927 -e_c_cpt(Log) :- e_c_cpt(Log,_,_).e_c_cpt191,3927 -e_c_cpt(Log) :- e_c_cpt(Log,_,_).e_c_cpt191,3927 -e_j_cpt(Log) :- e_j_cpt(Log,_,_).e_j_cpt192,3961 -e_j_cpt(Log) :- e_j_cpt(Log,_,_).e_j_cpt192,3961 -e_j_cpt(Log) :- e_j_cpt(Log,_,_).e_j_cpt192,3961 -e_j_cpt(Log) :- e_j_cpt(Log,_,_).e_j_cpt192,3961 -e_j_cpt(Log) :- e_j_cpt(Log,_,_).e_j_cpt192,3961 -i_i_cpt(I,Log) :- i_i_cpt(I,Log,_,_).i_i_cpt193,3995 -i_i_cpt(I,Log) :- i_i_cpt(I,Log,_,_).i_i_cpt193,3995 -i_i_cpt(I,Log) :- i_i_cpt(I,Log,_,_).i_i_cpt193,3995 -i_i_cpt(I,Log) :- i_i_cpt(I,Log,_,_).i_i_cpt193,3995 -i_i_cpt(I,Log) :- i_i_cpt(I,Log,_,_).i_i_cpt193,3995 -i_m_cpt(I,Log) :- i_m_cpt(I,Log,_,_).i_m_cpt194,4033 -i_m_cpt(I,Log) :- i_m_cpt(I,Log,_,_).i_m_cpt194,4033 -i_m_cpt(I,Log) :- i_m_cpt(I,Log,_,_).i_m_cpt194,4033 -i_m_cpt(I,Log) :- i_m_cpt(I,Log,_,_).i_m_cpt194,4033 -i_m_cpt(I,Log) :- i_m_cpt(I,Log,_,_).i_m_cpt194,4033 -j_b_cpt(Log) :- j_b_cpt(Log,_,_).j_b_cpt195,4071 -j_b_cpt(Log) :- j_b_cpt(Log,_,_).j_b_cpt195,4071 -j_b_cpt(Log) :- j_b_cpt(Log,_,_).j_b_cpt195,4071 -j_b_cpt(Log) :- j_b_cpt(Log,_,_).j_b_cpt195,4071 -j_b_cpt(Log) :- j_b_cpt(Log,_,_).j_b_cpt195,4071 -j_j_cpt(Log) :- j_j_cpt(Log,_,_).j_j_cpt196,4105 -j_j_cpt(Log) :- j_j_cpt(Log,_,_).j_j_cpt196,4105 -j_j_cpt(Log) :- j_j_cpt(Log,_,_).j_j_cpt196,4105 -j_j_cpt(Log) :- j_j_cpt(Log,_,_).j_j_cpt196,4105 -j_j_cpt(Log) :- j_j_cpt(Log,_,_).j_j_cpt196,4105 -m_d_cpt(I,Log) :- m_d_cpt(I,Log,_,_).m_d_cpt197,4139 -m_d_cpt(I,Log) :- m_d_cpt(I,Log,_,_).m_d_cpt197,4139 -m_d_cpt(I,Log) :- m_d_cpt(I,Log,_,_).m_d_cpt197,4139 -m_d_cpt(I,Log) :- m_d_cpt(I,Log,_,_).m_d_cpt197,4139 -m_d_cpt(I,Log) :- m_d_cpt(I,Log,_,_).m_d_cpt197,4139 -m_e_cpt(I,Log) :- m_e_cpt(I,Log,_,_).m_e_cpt198,4177 -m_e_cpt(I,Log) :- m_e_cpt(I,Log,_,_).m_e_cpt198,4177 -m_e_cpt(I,Log) :- m_e_cpt(I,Log,_,_).m_e_cpt198,4177 -m_e_cpt(I,Log) :- m_e_cpt(I,Log,_,_).m_e_cpt198,4177 -m_e_cpt(I,Log) :- m_e_cpt(I,Log,_,_).m_e_cpt198,4177 -m_i_cpt(I,Log) :- m_i_cpt(I,Log,_,_).m_i_cpt199,4215 -m_i_cpt(I,Log) :- m_i_cpt(I,Log,_,_).m_i_cpt199,4215 -m_i_cpt(I,Log) :- m_i_cpt(I,Log,_,_).m_i_cpt199,4215 -m_i_cpt(I,Log) :- m_i_cpt(I,Log,_,_).m_i_cpt199,4215 -m_i_cpt(I,Log) :- m_i_cpt(I,Log,_,_).m_i_cpt199,4215 -m_m_cpt(I,Log) :- m_m_cpt(I,Log,_,_).m_m_cpt200,4253 -m_m_cpt(I,Log) :- m_m_cpt(I,Log,_,_).m_m_cpt200,4253 -m_m_cpt(I,Log) :- m_m_cpt(I,Log,_,_).m_m_cpt200,4253 -m_m_cpt(I,Log) :- m_m_cpt(I,Log,_,_).m_m_cpt200,4253 -m_m_cpt(I,Log) :- m_m_cpt(I,Log,_,_).m_m_cpt200,4253 -n_b_cpt(Log) :- n_b_cpt(Log,_,_).n_b_cpt201,4291 -n_b_cpt(Log) :- n_b_cpt(Log,_,_).n_b_cpt201,4291 -n_b_cpt(Log) :- n_b_cpt(Log,_,_).n_b_cpt201,4291 -n_b_cpt(Log) :- n_b_cpt(Log,_,_).n_b_cpt201,4291 -n_b_cpt(Log) :- n_b_cpt(Log,_,_).n_b_cpt201,4291 -n_n_cpt(Log) :- n_n_cpt(Log,_,_).n_n_cpt202,4325 -n_n_cpt(Log) :- n_n_cpt(Log,_,_).n_n_cpt202,4325 -n_n_cpt(Log) :- n_n_cpt(Log,_,_).n_n_cpt202,4325 -n_n_cpt(Log) :- n_n_cpt(Log,_,_).n_n_cpt202,4325 -n_n_cpt(Log) :- n_n_cpt(Log,_,_).n_n_cpt202,4325 -hmm_domain(aminoacids).hmm_domain206,4455 -hmm_domain(aminoacids).hmm_domain206,4455 - -packages/CLPBN/examples/HMMer/scan.yap,13063 -main :-main4,45 -stop(S,W,Info) :-stop12,236 -stop(S,W,Info) :-stop12,236 -stop(S,W,Info) :-stop12,236 -stop(_,_,_) :-stop15,292 -stop(_,_,_) :-stop15,292 -stop(_,_,_) :-stop15,292 -parse_model(S,Info) :-parse_model18,345 -parse_model(S,Info) :-parse_model18,345 -parse_model(S,Info) :-parse_model18,345 -get_line(S, Out, Info) :-get_line24,476 -get_line(S, Out, Info) :-get_line24,476 -get_line(S, Out, Info) :-get_line24,476 -match_field(hmmer(2,_,_,_,_,_,_,_), _) --> "HMMER", !,match_field33,626 -match_field(hmmer(2,_,_,_,_,_,_,_), _) --> "HMMER", !,match_field33,626 -match_field(hmmer(2,_,_,_,_,_,_,_), _) --> "HMMER", !,match_field33,626 -match_field(hmmer(_,Name,_,_,_,_,_,_),_) --> "NAME", !, % mandatory field match_field35,735 -match_field(hmmer(_,Name,_,_,_,_,_,_),_) --> "NAME", !, % mandatory field match_field35,735 -match_field(hmmer(_,Name,_,_,_,_,_,_),_) --> "NAME", !, % mandatory field match_field35,735 -match_field(_,_) --> "ACC", !. % accession id, used to track DB accessesmatch_field38,880 -match_field(_,_) --> "ACC", !. % accession id, used to track DB accessesmatch_field38,880 -match_field(_,_) --> "ACC", !. % accession id, used to track DB accessesmatch_field38,880 -match_field(hmmer(_,_,NOfStates,_,_,_,_,_),_) --> "LENG", !, % number of statesmatch_field39,953 -match_field(hmmer(_,_,NOfStates,_,_,_,_,_),_) --> "LENG", !, % number of statesmatch_field39,953 -match_field(hmmer(_,_,NOfStates,_,_,_,_,_),_) --> "LENG", !, % number of statesmatch_field39,953 -match_field(hmmer(_,_,_,Alph,_,_,_,_),_) --> "ALPH", !, % aminos or basesmatch_field42,1082 -match_field(hmmer(_,_,_,Alph,_,_,_,_),_) --> "ALPH", !, % aminos or basesmatch_field42,1082 -match_field(hmmer(_,_,_,Alph,_,_,_,_),_) --> "ALPH", !, % aminos or basesmatch_field42,1082 -match_field(_,_) --> "RF", !, scanner_skip.match_field45,1201 -match_field(_,_) --> "RF", !, scanner_skip.match_field45,1201 -match_field(_,_) --> "RF", !, scanner_skip.match_field45,1201 -match_field(_,_) --> "CS", !, scanner_skip.match_field46,1245 -match_field(_,_) --> "CS", !, scanner_skip.match_field46,1245 -match_field(_,_) --> "CS", !, scanner_skip.match_field46,1245 -match_field(hmmer(_,_,_,_,_,_,_,MAP),_) --> "MAP", !,match_field47,1289 -match_field(hmmer(_,_,_,_,_,_,_,MAP),_) --> "MAP", !,match_field47,1289 -match_field(hmmer(_,_,_,_,_,_,_,MAP),_) --> "MAP", !,match_field47,1289 -match_field(_,_) --> "COM", !, scanner_skip.match_field51,1409 -match_field(_,_) --> "COM", !, scanner_skip.match_field51,1409 -match_field(_,_) --> "COM", !, scanner_skip.match_field51,1409 -match_field(_,_) --> "CKSUM", !, scanner_skip.match_field52,1454 -match_field(_,_) --> "CKSUM", !, scanner_skip.match_field52,1454 -match_field(_,_) --> "CKSUM", !, scanner_skip.match_field52,1454 -match_field(_,_) --> "GA", !, scanner_skip.match_field53,1501 -match_field(_,_) --> "GA", !, scanner_skip.match_field53,1501 -match_field(_,_) --> "GA", !, scanner_skip.match_field53,1501 -match_field(_,_) --> "TC", !, scanner_skip.match_field54,1545 -match_field(_,_) --> "TC", !, scanner_skip.match_field54,1545 -match_field(_,_) --> "TC", !, scanner_skip.match_field54,1545 -match_field(_,_) --> "NC", !, scanner_skip.match_field55,1589 -match_field(_,_) --> "NC", !, scanner_skip.match_field55,1589 -match_field(_,_) --> "NC", !, scanner_skip.match_field55,1589 -match_field(_,_) --> "NSEQ", !, scanner_skip.match_field56,1633 -match_field(_,_) --> "NSEQ", !, scanner_skip.match_field56,1633 -match_field(_,_) --> "NSEQ", !, scanner_skip.match_field56,1633 -match_field(_,_) --> "DATE", !, scanner_skip.match_field57,1679 -match_field(_,_) --> "DATE", !, scanner_skip.match_field57,1679 -match_field(_,_) --> "DATE", !, scanner_skip.match_field57,1679 -match_field(hmmer(_,_,_,_,special(NB,NN,EC,EJ,CT,CC,JB,JJ,_,_),_,_,_),_) --> "XT", !,match_field58,1725 -match_field(hmmer(_,_,_,_,special(NB,NN,EC,EJ,CT,CC,JB,JJ,_,_),_,_,_),_) --> "XT", !,match_field58,1725 -match_field(hmmer(_,_,_,_,special(NB,NN,EC,EJ,CT,CC,JB,JJ,_,_),_,_,_),_) --> "XT", !,match_field58,1725 -match_field(hmmer(_,_,_,_,special(_,_,_,_,_,_,_,_,GG,GF),_,_,_),_) --> "NULT", !,match_field67,1987 -match_field(hmmer(_,_,_,_,special(_,_,_,_,_,_,_,_,GG,GF),_,_,_),_) --> "NULT", !,match_field67,1987 -match_field(hmmer(_,_,_,_,special(_,_,_,_,_,_,_,_,GG,GF),_,_,_),_) --> "NULT", !,match_field67,1987 -match_field(hmmer(_,_,_,Alph,_,NULE,_,_),_) --> "NULE", !,match_field70,2113 -match_field(hmmer(_,_,_,Alph,_,NULE,_,_),_) --> "NULE", !,match_field70,2113 -match_field(hmmer(_,_,_,Alph,_,NULE,_,_),_) --> "NULE", !,match_field70,2113 -match_field(_,_) --> "EVD", !,match_field74,2266 -match_field(_,_) --> "EVD", !,match_field74,2266 -match_field(_,_) --> "EVD", !,match_field74,2266 -match_field(Info,S) --> "HMM", !, match_field76,2348 -match_field(Info,S) --> "HMM", !, match_field76,2348 -match_field(Info,S) --> "HMM", !, match_field76,2348 -scan_model(S,NOfStates,N,BD,NBD,Transitions,MAP,Info) :-scan_model86,2603 -scan_model(S,NOfStates,N,BD,NBD,Transitions,MAP,Info) :-scan_model86,2603 -scan_model(S,NOfStates,N,BD,NBD,Transitions,MAP,Info) :-scan_model86,2603 -scan_states(0, _, _, MAP, [], _) :- !, close_map(MAP).scan_states91,2770 -scan_states(0, _, _, MAP, [], _) :- !, close_map(MAP).scan_states91,2770 -scan_states(0, _, _, MAP, [], _) :- !, close_map(MAP).scan_states91,2770 -scan_states(0, _, _, MAP, [], _) :- !, close_map(MAP).scan_states91,2770 -scan_states(0, _, _, MAP, [], _) :- !, close_map(MAP).scan_states91,2770 -scan_states(NOfStates, N, Stream, MAP, [t(E,I,S)|Transitions], Info) :-scan_states92,2825 -scan_states(NOfStates, N, Stream, MAP, [t(E,I,S)|Transitions], Info) :-scan_states92,2825 -scan_states(NOfStates, N, Stream, MAP, [t(E,I,S)|Transitions], Info) :-scan_states92,2825 -scan_state(Stream, E,I,MAP,s(MM,MI,MD,IM,II,DM,DD,BM,ME), N, NMAP, Info) :-scan_state97,3038 -scan_state(Stream, E,I,MAP,s(MM,MI,MD,IM,II,DM,DD,BM,ME), N, NMAP, Info) :-scan_state97,3038 -scan_state(Stream, E,I,MAP,s(MM,MI,MD,IM,II,DM,DD,BM,ME), N, NMAP, Info) :-scan_state97,3038 -scan_transitions(MM, MI, MD, IM, II, DM, DD, BM, ME) -->scan_transitions110,3535 -scan_transitions(MM, MI, MD, IM, II, DM, DD, BM, ME) -->scan_transitions110,3535 -scan_transitions(MM, MI, MD, IM, II, DM, DD, BM, ME) -->scan_transitions110,3535 -scan_transitions(0, []) --> !.scan_transitions122,3792 -scan_transitions(0, []) --> !.scan_transitions122,3792 -scan_transitions(0, []) --> !.scan_transitions122,3792 -scan_transitions(N, [T|Ts]) -->scan_transitions123,3823 -scan_transitions(N, [T|Ts]) -->scan_transitions123,3823 -scan_transitions(N, [T|Ts]) -->scan_transitions123,3823 -scan_transition(T) -->scan_transition128,3920 -scan_transition(T) -->scan_transition128,3920 -scan_transition(T) -->scan_transition128,3920 -get_transition('*') --> "*", !, scanner_skip_blanks.get_transition132,3986 -get_transition('*') --> "*", !, scanner_skip_blanks.get_transition132,3986 -get_transition('*') --> "*", !, scanner_skip_blanks.get_transition132,3986 -get_transition(N) --> [C],get_transition133,4039 -get_transition(N) --> [C],get_transition133,4039 -get_transition(N) --> [C],get_transition133,4039 -get_transition(N) --> "-",get_transition136,4128 -get_transition(N) --> "-",get_transition136,4128 -get_transition(N) --> "-",get_transition136,4128 -get_number(Nf, N0) --> [C], !,get_number140,4191 -get_number(Nf, N0) --> [C], !,get_number140,4191 -get_number(Nf, N0) --> [C], !,get_number140,4191 -get_number(N, N) --> [].get_number144,4317 -get_number(N, N) --> [].get_number144,4317 -get_number(N, N) --> [].get_number144,4317 -scanner_skip_blanks --> " ", !, scanner_skip_blanks.scanner_skip_blanks146,4343 -scanner_skip_blanks --> " ", !, scanner_skip_blanks.scanner_skip_blanks147,4396 -scanner_skip_blanks --> [].scanner_skip_blanks148,4449 -scanner_skip_field --> scan_transition(_).scanner_skip_field151,4479 -scan_bd(BD, NBD) -->scan_bd153,4523 -scan_bd(BD, NBD) -->scan_bd153,4523 -scan_bd(BD, NBD) -->scan_bd153,4523 -check_alphabet(Alph) -->check_alphabet158,4611 -check_alphabet(Alph) -->check_alphabet158,4611 -check_alphabet(Alph) -->check_alphabet158,4611 -to_lower([CF|Lower]) --> [C], !,to_lower162,4683 -to_lower([CF|Lower]) --> [C], !,to_lower162,4683 -to_lower([CF|Lower]) --> [C], !,to_lower162,4683 -to_lower([]) --> [].to_lower165,4792 -to_lower([]) --> [].to_lower165,4792 -to_lower([]) --> [].to_lower165,4792 -get_alph("amino", amino).get_alph167,4814 -get_alph("amino", amino).get_alph167,4814 -get_alph("nucleic", nucleic).get_alph168,4840 -get_alph("nucleic", nucleic).get_alph168,4840 -map_code("yes", yes(_)).map_code170,4871 -map_code("yes", yes(_)).map_code170,4871 -map_code("no", no).map_code171,4896 -map_code("no", no).map_code171,4896 -nof_symbols(amino,20).nof_symbols173,4917 -nof_symbols(amino,20).nof_symbols173,4917 -nof_symbols(nucleic,4).nof_symbols174,4940 -nof_symbols(nucleic,4).nof_symbols174,4940 -scanner_skip(_,_).scanner_skip176,4965 -scanner_skip(_,_).scanner_skip176,4965 -get_name(L,L,[]).get_name178,4985 -get_name(L,L,[]).get_name178,4985 -scan_map(yes([Id|Next]),yes(Next)) -->scan_map180,5004 -scan_map(yes([Id|Next]),yes(Next)) -->scan_map180,5004 -scan_map(yes([Id|Next]),yes(Next)) -->scan_map180,5004 -scan_map(no,no) --> [].scan_map182,5065 -scan_map(no,no) --> [].scan_map182,5065 -scan_map(no,no) --> [].scan_map182,5065 -close_map(yes([])) :- !.close_map184,5090 -close_map(yes([])) :- !.close_map184,5090 -close_map(yes([])) :- !.close_map184,5090 -close_map(no).close_map185,5115 -close_map(no).close_map185,5115 -gen_program(W, hmmer(VersionId,Name,NOfStates,Alphabet,SpecialTransitions,NULE,Model,MAP)) :-gen_program188,5132 -gen_program(W, hmmer(VersionId,Name,NOfStates,Alphabet,SpecialTransitions,NULE,Model,MAP)) :-gen_program188,5132 -gen_program(W, hmmer(VersionId,Name,NOfStates,Alphabet,SpecialTransitions,NULE,Model,MAP)) :-gen_program188,5132 -gen_specials(W, special(NB,NN,EC,EJ,CT,CC,JB,JJ,GG,GF)) :-gen_specials202,5582 -gen_specials(W, special(NB,NN,EC,EJ,CT,CC,JB,JJ,GG,GF)) :-gen_specials202,5582 -gen_specials(W, special(NB,NN,EC,EJ,CT,CC,JB,JJ,GG,GF)) :-gen_specials202,5582 -normalize(*,_,0.0) :- !.normalize238,6810 -normalize(*,_,0.0) :- !.normalize238,6810 -normalize(*,_,0.0) :- !.normalize238,6810 -normalize(Score,NULL,Prob) :-normalize239,6835 -normalize(Score,NULL,Prob) :-normalize239,6835 -normalize(Score,NULL,Prob) :-normalize239,6835 -normalizel([],_,[]).normalizel242,6906 -normalizel([],_,[]).normalizel242,6906 -normalizel([Score|Scores],NULL,[Prob|Probs]) :-normalizel243,6927 -normalizel([Score|Scores],NULL,[Prob|Probs]) :-normalizel243,6927 -normalizel([Score|Scores],NULL,[Prob|Probs]) :-normalizel243,6927 -normalizell([],[],[]).normalizell247,7039 -normalizell([],[],[]).normalizell247,7039 -normalizell([Score|Scores],[Norm|Norms],[Prob|Probs]) :-normalizell248,7062 -normalizell([Score|Scores],[Norm|Norms],[Prob|Probs]) :-normalizell248,7062 -normalizell([Score|Scores],[Norm|Norms],[Prob|Probs]) :-normalizell248,7062 -gen_nule(W, NULE,Alph,PsCPT) :-gen_nule253,7205 -gen_nule(W, NULE,Alph,PsCPT) :-gen_nule253,7205 -gen_nule(W, NULE,Alph,PsCPT) :-gen_nule253,7205 -gen_model(W, model(BD,NBD,States),PsCPT) :-gen_model263,7482 -gen_model(W, model(BD,NBD,States),PsCPT) :-gen_model263,7482 -gen_model(W, model(BD,NBD,States),PsCPT) :-gen_model263,7482 -gen_states(_, [],_,_).gen_states269,7680 -gen_states(_, [],_,_).gen_states269,7680 -gen_states(W, [State|States],StateNo,PsCPT) :-gen_states270,7703 -gen_states(W, [State|States],StateNo,PsCPT) :-gen_states270,7703 -gen_states(W, [State|States],StateNo,PsCPT) :-gen_states270,7703 -gen_state(W, t(E,I,s(MM,MI,MD,IM,II,DM,DD,BM,ME)),StateNo,PsCPT) :-gen_state275,7850 -gen_state(W, t(E,I,s(MM,MI,MD,IM,II,DM,DD,BM,ME)),StateNo,PsCPT) :-gen_state275,7850 -gen_state(W, t(E,I,s(MM,MI,MD,IM,II,DM,DD,BM,ME)),StateNo,PsCPT) :-gen_state275,7850 -gen_map(_,_).gen_map308,9137 -gen_map(_,_).gen_map308,9137 -normalize_bd(A,B,A).normalize_bd310,9152 -normalize_bd(A,B,A).normalize_bd310,9152 -sum([],S,S).sum312,9174 -sum([],S,S).sum312,9174 -sum([P|Ps],S0,S) :-sum313,9187 -sum([P|Ps],S0,S) :-sum313,9187 -sum([P|Ps],S0,S) :-sum313,9187 -find_consensus(W, StateNo,ECPT) :-find_consensus317,9236 -find_consensus(W, StateNo,ECPT) :-find_consensus317,9236 -find_consensus(W, StateNo,ECPT) :-find_consensus317,9236 -max_index([],_,Max,MaxIndex,Max,MaxIndex).max_index321,9362 -max_index([],_,Max,MaxIndex,Max,MaxIndex).max_index321,9362 -max_index([H|L],I0,Max0,MaxIndex0,Max,MaxIndex) :-max_index322,9405 -max_index([H|L],I0,Max0,MaxIndex0,Max,MaxIndex) :-max_index322,9405 -max_index([H|L],I0,Max0,MaxIndex0,Max,MaxIndex) :-max_index322,9405 -max_index([_|L],I0,Max0,MaxIndex0,Max,MaxIndex) :-max_index326,9517 -max_index([_|L],I0,Max0,MaxIndex0,Max,MaxIndex) :-max_index326,9517 -max_index([_|L],I0,Max0,MaxIndex0,Max,MaxIndex) :-max_index326,9517 - -packages/CLPBN/examples/HMMer/score.yap,4182 -:- dynamic len/1, emission/2.dynamic21,255 -:- dynamic len/1, emission/2.dynamic21,255 -main :-main23,286 -artemia :-artemia28,375 -run_model(String,Trace) :-run_model33,482 -run_model(String,Trace) :-run_model33,482 -run_model(String,Trace) :-run_model33,482 -write_keys([]).write_keys37,568 -write_keys([]).write_keys37,568 -write_keys([V|Vars0]) :-write_keys38,584 -write_keys([V|Vars0]) :-write_keys38,584 -write_keys([V|Vars0]) :-write_keys38,584 -write_keys([_|Vars0]) :-write_keys42,676 -write_keys([_|Vars0]) :-write_keys42,676 -write_keys([_|Vars0]) :-write_keys42,676 -convert2emissions([],_).convert2emissions47,742 -convert2emissions([],_).convert2emissions47,742 -convert2emissions([E|String],I0) :-convert2emissions48,767 -convert2emissions([E|String],I0) :-convert2emissions48,767 -convert2emissions([E|String],I0) :-convert2emissions48,767 -out([],_).out54,872 -out([],_).out54,872 -out([State|Trace],String) :-out55,883 -out([State|Trace],String) :-out55,883 -out([State|Trace],String) :-out55,883 -out_state(s(_),String,String).out_state59,968 -out_state(s(_),String,String).out_state59,968 -out_state(n(_),[_|String],String).out_state60,999 -out_state(n(_),[_|String],String).out_state60,999 -out_state(j(_),[_|String],String).out_state61,1034 -out_state(j(_),[_|String],String).out_state61,1034 -out_state(c(_),[_|String],String).out_state62,1069 -out_state(c(_),[_|String],String).out_state62,1069 -out_state(t(_),String,String).out_state63,1104 -out_state(t(_),String,String).out_state63,1104 -out_state(b(Pos),String,String) :-out_state64,1135 -out_state(b(Pos),String,String) :-out_state64,1135 -out_state(b(Pos),String,String) :-out_state64,1135 -out_state(d(_,State),String,String) :-out_state66,1209 -out_state(d(_,State),String,String) :-out_state66,1209 -out_state(d(_,State),String,String) :-out_state66,1209 -out_state(i(_,_),[Code|String],String) :-out_state69,1318 -out_state(i(_,_),[Code|String],String) :-out_state69,1318 -out_state(i(_,_),[Code|String],String) :-out_state69,1318 -out_state(m(_,State),[Code|String],String) :-out_state72,1414 -out_state(m(_,State),[Code|String],String) :-out_state72,1414 -out_state(m(_,State),[Code|String],String) :-out_state72,1414 -out_state(e(Pos),String,String) :-out_state77,1621 -out_state(e(Pos),String,String) :-out_state77,1621 -out_state(e(Pos),String,String) :-out_state77,1621 -to_upper(A,U) :-to_upper80,1694 -to_upper(A,U) :-to_upper80,1694 -to_upper(A,U) :-to_upper80,1694 -find_consensus(State,Consensus) :-find_consensus88,1816 -find_consensus(State,Consensus) :-find_consensus88,1816 -find_consensus(State,Consensus) :-find_consensus88,1816 -find_match_type(_,Code,Code,'=') :- !.find_match_type94,1943 -find_match_type(_,Code,Code,'=') :- !.find_match_type94,1943 -find_match_type(_,Code,Code,'=') :- !.find_match_type94,1943 -find_match_type(State,Code,_,'^') :-find_match_type95,1982 -find_match_type(State,Code,_,'^') :-find_match_type95,1982 -find_match_type(State,Code,_,'^') :-find_match_type95,1982 -find_match_type(_,_,_,' ').find_match_type101,2147 -find_match_type(_,_,_,' ').find_match_type101,2147 -find_prob_for_code(Vals,Code,Probs,Prob) :-find_prob_for_code103,2176 -find_prob_for_code(Vals,Code,Probs,Prob) :-find_prob_for_code103,2176 -find_prob_for_code(Vals,Code,Probs,Prob) :-find_prob_for_code103,2176 -domain_vals(aminoacids,domain(a, c, d, e, f, g, h, i, k, l, m, n, p, q, r, s, t, v, w, y)).domain_vals108,2280 -domain_vals(aminoacids,domain(a, c, d, e, f, g, h, i, k, l, m, n, p, q, r, s, t, v, w, y)).domain_vals108,2280 -domain_vals(bool,domain(t,f)).domain_vals109,2391 -domain_vals(bool,domain(t,f)).domain_vals109,2391 -domain_vals(bases,domain(a,c,g,t)).domain_vals110,2422 -domain_vals(bases,domain(a,c,g,t)).domain_vals110,2422 -domain_vals([A|B],Domain) :-domain_vals111,2458 -domain_vals([A|B],Domain) :-domain_vals111,2458 -domain_vals([A|B],Domain) :-domain_vals111,2458 -start(S) :-start115,2515 -start(S) :-start115,2515 -start(S) :-start115,2515 -end(Items,E) :-end118,2543 -end(Items,E) :-end118,2543 -end(Items,E) :-end118,2543 - -packages/CLPBN/examples/learning/debug_school.yap,139916 -main :-main17,319 -graph([professor_ability(p0,_G131367),professor_ability(p1,h),professor_ability(p2,_G131377),professor_ability(p3,_G131382),professor_ability(p4,_G131387),professor_ability(p5,_G131392),professor_ability(p6,_G131397),professor_ability(p7,l),professor_ability(p8,m),professor_ability(p9,h),professor_ability(p10,m),professor_ability(p11,_G131422),professor_ability(p12,_G131427),professor_ability(p13,_G131432),professor_ability(p14,_G131437),professor_ability(p15,_G131442),professor_ability(p16,_G131447),professor_ability(p17,m),professor_ability(p18,l),professor_ability(p19,h),professor_ability(p20,h),professor_ability(p21,_G131472),professor_ability(p22,m),professor_ability(p23,m),professor_ability(p24,l),professor_ability(p25,m),professor_ability(p26,_G131497),professor_ability(p27,h),professor_ability(p28,h),professor_ability(p29,_G131512),professor_ability(p30,_G131517),professor_ability(p31,_G131522),professor_popularity(p0,h),professor_popularity(p1,h),professor_popularity(p2,_G131537),professor_popularity(p3,h),professor_popularity(p4,h),professor_popularity(p5,h),professor_popularity(p6,l),professor_popularity(p7,l),professor_popularity(p8,_G131567),professor_popularity(p9,_G131572),professor_popularity(p10,l),professor_popularity(p11,_G131582),professor_popularity(p12,h),professor_popularity(p13,l),professor_popularity(p14,_G131597),professor_popularity(p15,h),professor_popularity(p16,m),professor_popularity(p17,_G131612),professor_popularity(p18,_G131617),professor_popularity(p19,_G131622),professor_popularity(p20,_G131627),professor_popularity(p21,h),professor_popularity(p22,_G131637),professor_popularity(p23,_G131642),professor_popularity(p24,l),professor_popularity(p25,_G131652),professor_popularity(p26,_G131657),professor_popularity(p27,h),professor_popularity(p28,h),professor_popularity(p29,_G131672),professor_popularity(p30,m),professor_popularity(p31,_G131682),registration_grade(r0,a),registration_grade(r1,_G131692),registration_grade(r2,_G131697),registration_grade(r3,c),registration_grade(r4,c),registration_grade(r5,c),registration_grade(r6,_G131717),registration_grade(r7,a),registration_grade(r8,b),registration_grade(r9,_G131732),registration_grade(r10,_G131737),registration_grade(r11,a),registration_grade(r12,_G131747),registration_grade(r13,a),registration_grade(r14,_G131757),registration_grade(r15,b),registration_grade(r16,a),registration_grade(r17,b),registration_grade(r18,_G131777),registration_grade(r19,_G131782),registration_grade(r20,c),registration_grade(r21,_G131792),registration_grade(r22,_G131797),registration_grade(r23,_G131802),registration_grade(r24,b),registration_grade(r25,a),registration_grade(r26,_G131817),registration_grade(r27,_G131822),registration_grade(r28,c),registration_grade(r29,b),registration_grade(r30,c),registration_grade(r31,b),registration_grade(r32,_G131847),registration_grade(r33,a),registration_grade(r34,c),registration_grade(r35,c),registration_grade(r36,a),registration_grade(r37,a),registration_grade(r38,c),registration_grade(r39,a),registration_grade(r40,_G131887),registration_grade(r41,_G131892),registration_grade(r42,_G131897),registration_grade(r43,a),registration_grade(r44,a),registration_grade(r45,a),registration_grade(r46,a),registration_grade(r47,_G131922),registration_grade(r48,_G131927),registration_grade(r49,b),registration_grade(r50,b),registration_grade(r51,b),registration_grade(r52,_G131947),registration_grade(r53,a),registration_grade(r54,_G131957),registration_grade(r55,a),registration_grade(r56,c),registration_grade(r57,_G131972),registration_grade(r58,_G131977),registration_grade(r59,_G131982),registration_grade(r60,_G131987),registration_grade(r61,a),registration_grade(r62,_G131997),registration_grade(r63,b),registration_grade(r64,b),registration_grade(r65,b),registration_grade(r66,_G132017),registration_grade(r67,b),registration_grade(r68,a),registration_grade(r69,_G132032),registration_grade(r70,_G132037),registration_grade(r71,_G132042),registration_grade(r72,_G132047),registration_grade(r73,_G132052),registration_grade(r74,a),registration_grade(r75,_G132062),registration_grade(r76,_G132067),registration_grade(r77,_G132072),registration_grade(r78,b),registration_grade(r79,_G132082),registration_grade(r80,_G132087),registration_grade(r81,_G132092),registration_grade(r82,_G132097),registration_grade(r83,_G132102),registration_grade(r84,_G132107),registration_grade(r85,b),registration_grade(r86,_G132117),registration_grade(r87,b),registration_grade(r88,_G132127),registration_grade(r89,_G132132),registration_grade(r90,_G132137),registration_grade(r91,a),registration_grade(r92,_G132147),registration_grade(r93,_G132152),registration_grade(r94,_G132157),registration_grade(r95,_G132162),registration_grade(r96,_G132167),registration_grade(r97,a),registration_grade(r98,b),registration_grade(r99,b),registration_grade(r100,a),registration_grade(r101,a),registration_grade(r102,a),registration_grade(r103,_G132202),registration_grade(r104,_G132207),registration_grade(r105,c),registration_grade(r106,b),registration_grade(r107,b),registration_grade(r108,_G132227),registration_grade(r109,_G132232),registration_grade(r110,a),registration_grade(r111,_G132242),registration_grade(r112,_G132247),registration_grade(r113,_G132252),registration_grade(r114,_G132257),registration_grade(r115,d),registration_grade(r116,b),registration_grade(r117,_G132272),registration_grade(r118,_G132277),registration_grade(r119,b),registration_grade(r120,b),registration_grade(r121,_G132292),registration_grade(r122,_G132297),registration_grade(r123,a),registration_grade(r124,a),registration_grade(r125,_G132312),registration_grade(r126,_G132317),registration_grade(r127,b),registration_grade(r128,a),registration_grade(r129,c),registration_grade(r130,a),registration_grade(r131,a),registration_grade(r132,b),registration_grade(r133,_G132352),registration_grade(r134,_G132357),registration_grade(r135,_G132362),registration_grade(r136,_G132367),registration_grade(r137,b),registration_grade(r138,a),registration_grade(r139,_G132382),registration_grade(r140,_G132387),registration_grade(r141,b),registration_grade(r142,_G132397),registration_grade(r143,b),registration_grade(r144,c),registration_grade(r145,b),registration_grade(r146,_G132417),registration_grade(r147,_G132422),registration_grade(r148,_G132427),registration_grade(r149,a),registration_grade(r150,_G132437),registration_grade(r151,a),registration_grade(r152,_G132447),registration_grade(r153,_G132452),registration_grade(r154,a),registration_grade(r155,c),registration_grade(r156,b),registration_grade(r157,b),registration_grade(r158,c),registration_grade(r159,b),registration_grade(r160,a),registration_grade(r161,_G132492),registration_grade(r162,_G132497),registration_grade(r163,_G132502),registration_grade(r164,b),registration_grade(r165,b),registration_grade(r166,_G132517),registration_grade(r167,a),registration_grade(r168,a),registration_grade(r169,_G132532),registration_grade(r170,_G132537),registration_grade(r171,a),registration_grade(r172,c),registration_grade(r173,b),registration_grade(r174,_G132557),registration_grade(r175,_G132562),registration_grade(r176,b),registration_grade(r177,c),registration_grade(r178,b),registration_grade(r179,d),registration_grade(r180,c),registration_grade(r181,a),registration_grade(r182,b),registration_grade(r183,a),registration_grade(r184,_G132607),registration_grade(r185,_G132612),registration_grade(r186,c),registration_grade(r187,a),registration_grade(r188,a),registration_grade(r189,_G132632),registration_grade(r190,_G132637),registration_grade(r191,_G132642),registration_grade(r192,b),registration_grade(r193,c),registration_grade(r194,b),registration_grade(r195,_G132662),registration_grade(r196,_G132667),registration_grade(r197,_G132672),registration_grade(r198,_G132677),registration_grade(r199,b),registration_grade(r200,_G132687),registration_grade(r201,c),registration_grade(r202,a),registration_grade(r203,_G132702),registration_grade(r204,_G132707),registration_grade(r205,_G132712),registration_grade(r206,a),registration_grade(r207,a),registration_grade(r208,_G132727),registration_grade(r209,b),registration_grade(r210,a),registration_grade(r211,d),registration_grade(r212,_G132747),registration_grade(r213,_G132752),registration_grade(r214,_G132757),registration_grade(r215,a),registration_grade(r216,_G132767),registration_grade(r217,_G132772),registration_grade(r218,_G132777),registration_grade(r219,_G132782),registration_grade(r220,_G132787),registration_grade(r221,b),registration_grade(r222,c),registration_grade(r223,_G132802),registration_grade(r224,_G132807),registration_grade(r225,b),registration_grade(r226,d),registration_grade(r227,b),registration_grade(r228,c),registration_grade(r229,b),registration_grade(r230,a),registration_grade(r231,_G132842),registration_grade(r232,_G132847),registration_grade(r233,b),registration_grade(r234,_G132857),registration_grade(r235,c),registration_grade(r236,b),registration_grade(r237,_G132872),registration_grade(r238,d),registration_grade(r239,b),registration_grade(r240,b),registration_grade(r241,_G132892),registration_grade(r242,b),registration_grade(r243,_G132902),registration_grade(r244,b),registration_grade(r245,a),registration_grade(r246,b),registration_grade(r247,_G132922),registration_grade(r248,b),registration_grade(r249,_G132932),registration_grade(r250,a),registration_grade(r251,_G132942),registration_grade(r252,b),registration_grade(r253,_G132952),registration_grade(r254,_G132957),registration_grade(r255,_G132962),registration_grade(r256,_G132967),registration_grade(r257,b),registration_grade(r258,_G132977),registration_grade(r259,a),registration_grade(r260,b),registration_grade(r261,a),registration_grade(r262,_G132997),registration_grade(r263,_G133002),registration_grade(r264,_G133007),registration_grade(r265,a),registration_grade(r266,_G133017),registration_grade(r267,_G133022),registration_grade(r268,c),registration_grade(r269,a),registration_grade(r270,_G133037),registration_grade(r271,_G133042),registration_grade(r272,_G133047),registration_grade(r273,b),registration_grade(r274,c),registration_grade(r275,a),registration_grade(r276,a),registration_grade(r277,_G133072),registration_grade(r278,_G133077),registration_grade(r279,_G133082),registration_grade(r280,_G133087),registration_grade(r281,b),registration_grade(r282,d),registration_grade(r283,_G133102),registration_grade(r284,b),registration_grade(r285,_G133112),registration_grade(r286,_G133117),registration_grade(r287,_G133122),registration_grade(r288,_G133127),registration_grade(r289,_G133132),registration_grade(r290,b),registration_grade(r291,c),registration_grade(r292,_G133147),registration_grade(r293,_G133152),registration_grade(r294,_G133157),registration_grade(r295,a),registration_grade(r296,b),registration_grade(r297,_G133172),registration_grade(r298,a),registration_grade(r299,a),registration_grade(r300,_G133187),registration_grade(r301,b),registration_grade(r302,b),registration_grade(r303,_G133202),registration_grade(r304,a),registration_grade(r305,_G133212),registration_grade(r306,_G133217),registration_grade(r307,_G133222),registration_grade(r308,c),registration_grade(r309,_G133232),registration_grade(r310,a),registration_grade(r311,a),registration_grade(r312,a),registration_grade(r313,_G133252),registration_grade(r314,_G133257),registration_grade(r315,c),registration_grade(r316,_G133267),registration_grade(r317,_G133272),registration_grade(r318,c),registration_grade(r319,c),registration_grade(r320,b),registration_grade(r321,b),registration_grade(r322,_G133297),registration_grade(r323,c),registration_grade(r324,b),registration_grade(r325,b),registration_grade(r326,_G133317),registration_grade(r327,c),registration_grade(r328,b),registration_grade(r329,_G133332),registration_grade(r330,_G133337),registration_grade(r331,_G133342),registration_grade(r332,_G133347),registration_grade(r333,_G133352),registration_grade(r334,_G133357),registration_grade(r335,d),registration_grade(r336,b),registration_grade(r337,b),registration_grade(r338,b),registration_grade(r339,_G133382),registration_grade(r340,_G133387),registration_grade(r341,_G133392),registration_grade(r342,_G133397),registration_grade(r343,a),registration_grade(r344,c),registration_grade(r345,_G133412),registration_grade(r346,b),registration_grade(r347,_G133422),registration_grade(r348,a),registration_grade(r349,a),registration_grade(r350,b),registration_grade(r351,b),registration_grade(r352,_G133447),registration_grade(r353,_G133452),registration_grade(r354,_G133457),registration_grade(r355,_G133462),registration_grade(r356,b),registration_grade(r357,b),registration_grade(r358,_G133477),registration_grade(r359,a),registration_grade(r360,_G133487),registration_grade(r361,_G133492),registration_grade(r362,c),registration_grade(r363,_G133502),registration_grade(r364,b),registration_grade(r365,_G133512),registration_grade(r366,b),registration_grade(r367,_G133522),registration_grade(r368,a),registration_grade(r369,c),registration_grade(r370,b),registration_grade(r371,_G133542),registration_grade(r372,_G133547),registration_grade(r373,_G133552),registration_grade(r374,b),registration_grade(r375,b),registration_grade(r376,a),registration_grade(r377,a),registration_grade(r378,a),registration_grade(r379,_G133582),registration_grade(r380,_G133587),registration_grade(r381,c),registration_grade(r382,_G133597),registration_grade(r383,_G133602),registration_grade(r384,b),registration_grade(r385,_G133612),registration_grade(r386,d),registration_grade(r387,_G133622),registration_grade(r388,_G133627),registration_grade(r389,a),registration_grade(r390,_G133637),registration_grade(r391,_G133642),registration_grade(r392,_G133647),registration_grade(r393,b),registration_grade(r394,c),registration_grade(r395,b),registration_grade(r396,_G133667),registration_grade(r397,a),registration_grade(r398,_G133677),registration_grade(r399,_G133682),registration_grade(r400,_G133687),registration_grade(r401,c),registration_grade(r402,_G133697),registration_grade(r403,_G133702),registration_grade(r404,a),registration_grade(r405,_G133712),registration_grade(r406,_G133717),registration_grade(r407,_G133722),registration_grade(r408,a),registration_grade(r409,a),registration_grade(r410,b),registration_grade(r411,b),registration_grade(r412,_G133747),registration_grade(r413,a),registration_grade(r414,_G133757),registration_grade(r415,_G133762),registration_grade(r416,_G133767),registration_grade(r417,_G133772),registration_grade(r418,a),registration_grade(r419,a),registration_grade(r420,a),registration_grade(r421,c),registration_grade(r422,b),registration_grade(r423,_G133802),registration_grade(r424,a),registration_grade(r425,b),registration_grade(r426,c),registration_grade(r427,c),registration_grade(r428,_G133827),registration_grade(r429,c),registration_grade(r430,_G133837),registration_grade(r431,_G133842),registration_grade(r432,c),registration_grade(r433,_G133852),registration_grade(r434,a),registration_grade(r435,_G133862),registration_grade(r436,_G133867),registration_grade(r437,c),registration_grade(r438,b),registration_grade(r439,_G133882),registration_grade(r440,c),registration_grade(r441,a),registration_grade(r442,c),registration_grade(r443,_G133902),registration_grade(r444,_G133907),registration_grade(r445,_G133912),registration_grade(r446,_G133917),registration_grade(r447,d),registration_grade(r448,_G133927),registration_grade(r449,b),registration_grade(r450,_G133937),registration_grade(r451,_G133942),registration_grade(r452,b),registration_grade(r453,_G133952),registration_grade(r454,_G133957),registration_grade(r455,_G133962),registration_grade(r456,c),registration_grade(r457,_G133972),registration_grade(r458,_G133977),registration_grade(r459,_G133982),registration_grade(r460,_G133987),registration_grade(r461,_G133992),registration_grade(r462,a),registration_grade(r463,d),registration_grade(r464,a),registration_grade(r465,_G134012),registration_grade(r466,_G134017),registration_grade(r467,b),registration_grade(r468,_G134027),registration_grade(r469,_G134032),registration_grade(r470,_G134037),registration_grade(r471,_G134042),registration_grade(r472,a),registration_grade(r473,c),registration_grade(r474,b),registration_grade(r475,_G134062),registration_grade(r476,_G134067),registration_grade(r477,b),registration_grade(r478,a),registration_grade(r479,b),registration_grade(r480,a),registration_grade(r481,_G134092),registration_grade(r482,b),registration_grade(r483,a),registration_grade(r484,_G134107),registration_grade(r485,_G134112),registration_grade(r486,_G134117),registration_grade(r487,_G134122),registration_grade(r488,a),registration_grade(r489,_G134132),registration_grade(r490,_G134137),registration_grade(r491,c),registration_grade(r492,b),registration_grade(r493,a),registration_grade(r494,_G134157),registration_grade(r495,_G134162),registration_grade(r496,_G134167),registration_grade(r497,c),registration_grade(r498,_G134177),registration_grade(r499,c),registration_grade(r500,b),registration_grade(r501,_G134192),registration_grade(r502,a),registration_grade(r503,_G134202),registration_grade(r504,_G134207),registration_grade(r505,_G134212),registration_grade(r506,c),registration_grade(r507,a),registration_grade(r508,_G134227),registration_grade(r509,_G134232),registration_grade(r510,_G134237),registration_grade(r511,_G134242),registration_grade(r512,b),registration_grade(r513,_G134252),registration_grade(r514,_G134257),registration_grade(r515,c),registration_grade(r516,_G134267),registration_grade(r517,_G134272),registration_grade(r518,_G134277),registration_grade(r519,a),registration_grade(r520,b),registration_grade(r521,a),registration_grade(r522,b),registration_grade(r523,_G134302),registration_grade(r524,b),registration_grade(r525,c),registration_grade(r526,c),registration_grade(r527,c),registration_grade(r528,a),registration_grade(r529,_G134332),registration_grade(r530,a),registration_grade(r531,_G134342),registration_grade(r532,a),registration_grade(r533,_G134352),registration_grade(r534,b),registration_grade(r535,c),registration_grade(r536,a),registration_grade(r537,_G134372),registration_grade(r538,_G134377),registration_grade(r539,_G134382),registration_grade(r540,_G134387),registration_grade(r541,c),registration_grade(r542,a),registration_grade(r543,a),registration_grade(r544,b),registration_grade(r545,a),registration_grade(r546,b),registration_grade(r547,_G134422),registration_grade(r548,c),registration_grade(r549,_G134432),registration_grade(r550,a),registration_grade(r551,_G134442),registration_grade(r552,c),registration_grade(r553,_G134452),registration_grade(r554,b),registration_grade(r555,_G134462),registration_grade(r556,_G134467),registration_grade(r557,_G134472),registration_grade(r558,_G134477),registration_grade(r559,b),registration_grade(r560,_G134487),registration_grade(r561,a),registration_grade(r562,_G134497),registration_grade(r563,_G134502),registration_grade(r564,_G134507),registration_grade(r565,d),registration_grade(r566,c),registration_grade(r567,a),registration_grade(r568,a),registration_grade(r569,_G134532),registration_grade(r570,_G134537),registration_grade(r571,_G134542),registration_grade(r572,b),registration_grade(r573,a),registration_grade(r574,_G134557),registration_grade(r575,a),registration_grade(r576,_G134567),registration_grade(r577,_G134572),registration_grade(r578,b),registration_grade(r579,a),registration_grade(r580,_G134587),registration_grade(r581,_G134592),registration_grade(r582,_G134597),registration_grade(r583,_G134602),registration_grade(r584,a),registration_grade(r585,c),registration_grade(r586,b),registration_grade(r587,_G134622),registration_grade(r588,_G134627),registration_grade(r589,c),registration_grade(r590,_G134637),registration_grade(r591,c),registration_grade(r592,b),registration_grade(r593,_G134652),registration_grade(r594,c),registration_grade(r595,b),registration_grade(r596,_G134667),registration_grade(r597,_G134672),registration_grade(r598,a),registration_grade(r599,_G134682),registration_grade(r600,a),registration_grade(r601,b),registration_grade(r602,_G134697),registration_grade(r603,d),registration_grade(r604,_G134707),registration_grade(r605,a),registration_grade(r606,_G134717),registration_grade(r607,_G134722),registration_grade(r608,a),registration_grade(r609,b),registration_grade(r610,_G134737),registration_grade(r611,_G134742),registration_grade(r612,c),registration_grade(r613,_G134752),registration_grade(r614,_G134757),registration_grade(r615,b),registration_grade(r616,_G134767),registration_grade(r617,a),registration_grade(r618,_G134777),registration_grade(r619,_G134782),registration_grade(r620,a),registration_grade(r621,_G134792),registration_grade(r622,b),registration_grade(r623,_G134802),registration_grade(r624,a),registration_grade(r625,_G134812),registration_grade(r626,a),registration_grade(r627,_G134822),registration_grade(r628,a),registration_grade(r629,_G134832),registration_grade(r630,_G134837),registration_grade(r631,_G134842),registration_grade(r632,a),registration_grade(r633,_G134852),registration_grade(r634,b),registration_grade(r635,_G134862),registration_grade(r636,d),registration_grade(r637,c),registration_grade(r638,a),registration_grade(r639,b),registration_grade(r640,_G134887),registration_grade(r641,_G134892),registration_grade(r642,c),registration_grade(r643,_G134902),registration_grade(r644,_G134907),registration_grade(r645,_G134912),registration_grade(r646,_G134917),registration_grade(r647,b),registration_grade(r648,a),registration_grade(r649,_G134932),registration_grade(r650,c),registration_grade(r651,b),registration_grade(r652,b),registration_grade(r653,_G134952),registration_grade(r654,b),registration_grade(r655,a),registration_grade(r656,_G134967),registration_grade(r657,a),registration_grade(r658,a),registration_grade(r659,a),registration_grade(r660,a),registration_grade(r661,c),registration_grade(r662,_G134997),registration_grade(r663,a),registration_grade(r664,_G135007),registration_grade(r665,a),registration_grade(r666,b),registration_grade(r667,_G135022),registration_grade(r668,d),registration_grade(r669,b),registration_grade(r670,a),registration_grade(r671,_G135042),registration_grade(r672,c),registration_grade(r673,a),registration_grade(r674,_G135057),registration_grade(r675,_G135062),registration_grade(r676,a),registration_grade(r677,a),registration_grade(r678,a),registration_grade(r679,a),registration_grade(r680,_G135087),registration_grade(r681,_G135092),registration_grade(r682,_G135097),registration_grade(r683,b),registration_grade(r684,_G135107),registration_grade(r685,_G135112),registration_grade(r686,b),registration_grade(r687,a),registration_grade(r688,c),registration_grade(r689,_G135132),registration_grade(r690,a),registration_grade(r691,_G135142),registration_grade(r692,_G135147),registration_grade(r693,b),registration_grade(r694,_G135157),registration_grade(r695,_G135162),registration_grade(r696,a),registration_grade(r697,_G135172),registration_grade(r698,_G135177),registration_grade(r699,_G135182),registration_grade(r700,a),registration_grade(r701,_G135192),registration_grade(r702,a),registration_grade(r703,_G135202),registration_grade(r704,c),registration_grade(r705,b),registration_grade(r706,_G135217),registration_grade(r707,a),registration_grade(r708,b),registration_grade(r709,_G135232),registration_grade(r710,_G135237),registration_grade(r711,b),registration_grade(r712,_G135247),registration_grade(r713,a),registration_grade(r714,_G135257),registration_grade(r715,a),registration_grade(r716,a),registration_grade(r717,a),registration_grade(r718,a),registration_grade(r719,_G135282),registration_grade(r720,_G135287),registration_grade(r721,_G135292),registration_grade(r722,_G135297),registration_grade(r723,_G135302),registration_grade(r724,_G135307),registration_grade(r725,c),registration_grade(r726,a),registration_grade(r727,_G135322),registration_grade(r728,b),registration_grade(r729,_G135332),registration_grade(r730,_G135337),registration_grade(r731,_G135342),registration_grade(r732,a),registration_grade(r733,a),registration_grade(r734,b),registration_grade(r735,_G135362),registration_grade(r736,a),registration_grade(r737,_G135372),registration_grade(r738,_G135377),registration_grade(r739,a),registration_grade(r740,_G135387),registration_grade(r741,_G135392),registration_grade(r742,_G135397),registration_grade(r743,_G135402),registration_grade(r744,a),registration_grade(r745,b),registration_grade(r746,_G135417),registration_grade(r747,_G135422),registration_grade(r748,b),registration_grade(r749,c),registration_grade(r750,_G135437),registration_grade(r751,c),registration_grade(r752,_G135447),registration_grade(r753,c),registration_grade(r754,_G135457),registration_grade(r755,c),registration_grade(r756,_G135467),registration_grade(r757,_G135472),registration_grade(r758,b),registration_grade(r759,_G135482),registration_grade(r760,_G135487),registration_grade(r761,a),registration_grade(r762,_G135497),registration_grade(r763,a),registration_grade(r764,a),registration_grade(r765,a),registration_grade(r766,_G135517),registration_grade(r767,c),registration_grade(r768,_G135527),registration_grade(r769,_G135532),registration_grade(r770,b),registration_grade(r771,_G135542),registration_grade(r772,a),registration_grade(r773,b),registration_grade(r774,b),registration_grade(r775,a),registration_grade(r776,_G135567),registration_grade(r777,c),registration_grade(r778,c),registration_grade(r779,b),registration_grade(r780,a),registration_grade(r781,_G135592),registration_grade(r782,a),registration_grade(r783,_G135602),registration_grade(r784,_G135607),registration_grade(r785,_G135612),registration_grade(r786,c),registration_grade(r787,a),registration_grade(r788,_G135627),registration_grade(r789,_G135632),registration_grade(r790,b),registration_grade(r791,b),registration_grade(r792,_G135647),registration_grade(r793,_G135652),registration_grade(r794,_G135657),registration_grade(r795,_G135662),registration_grade(r796,_G135667),registration_grade(r797,a),registration_grade(r798,_G135677),registration_grade(r799,_G135682),registration_grade(r800,_G135687),registration_grade(r801,b),registration_grade(r802,_G135697),registration_grade(r803,b),registration_grade(r804,_G135707),registration_grade(r805,_G135712),registration_grade(r806,_G135717),registration_grade(r807,a),registration_grade(r808,_G135727),registration_grade(r809,_G135732),registration_grade(r810,_G135737),registration_grade(r811,d),registration_grade(r812,c),registration_grade(r813,_G135752),registration_grade(r814,c),registration_grade(r815,_G135762),registration_grade(r816,_G135767),registration_grade(r817,a),registration_grade(r818,_G135777),registration_>grade(r819,b),registration_grade(r820,d),registration_grade(r821,b),registration_grade(r822,_G135797),registration_grade(r823,a),registration_grade(r824,_G135807),registration_grade(r825,b),registration_grade(r826,b),registration_grade(r827,_G135822),registration_grade(r828,_G135827),registration_grade(r829,b),registration_grade(r830,_G135837),registration_grade(r831,_G135842),registration_grade(r832,b),registration_grade(r833,b),registration_grade(r834,_G135857),registration_grade(r835,a),registration_grade(r836,a),registration_grade(r837,c),registration_grade(r838,_G135877),registration_grade(r839,b),registration_grade(r840,b),registration_grade(r841,a),registration_grade(r842,a),registration_grade(r843,b),registration_grade(r844,_G135907),registration_grade(r845,c),registration_grade(r846,b),registration_grade(r847,b),registration_grade(r848,_G135927),registration_grade(r849,_G135932),registration_grade(r850,_G135937),registration_grade(r851,_G135942),registration_grade(r852,_G135947),registration_grade(r853,_G135952),registration_grade(r854,_G135957),registration_grade(r855,_G135962),registration_grade(r856,_G135967),student_intelligence(s0,l),student_intelligence(s1,_G135977),student_intelligence(s2,_G135982),student_intelligence(s3,h),student_intelligence(s4,h),student_intelligence(s5,h),student_intelligence(s6,m),student_intelligence(s7,h),student_intelligence(s8,h),student_intelligence(s9,_G136017),student_intelligence(s10,m),student_intelligence(s11,_G136027),student_intelligence(s12,h),student_intelligence(s13,h),student_intelligence(s14,_G136042),student_intelligence(s15,_G136047),student_intelligence(s16,_G136052),student_intelligence(s17,m),student_intelligence(s18,m),student_intelligence(s19,_G136067),student_intelligence(s20,m),student_intelligence(s21,_G136077),student_intelligence(s22,h),student_intelligence(s23,_G136087),student_intelligence(s24,_G136092),student_intelligence(s25,h),student_intelligence(s26,_G136102),student_intelligence(s27,m),student_intelligence(s28,m),student_intelligence(s29,_G136117),student_intelligence(s30,h),student_intelligence(s31,m),student_intelligence(s32,m),student_intelligence(s33,_G136137),student_intelligence(s34,l),student_intelligence(s35,m),student_intelligence(s36,l),student_intelligence(s37,_G136157),student_intelligence(s38,_G136162),student_intelligence(s39,h),student_intelligence(s40,h),student_intelligence(s41,m),student_intelligence(s42,_G136182),student_intelligence(s43,_G136187),student_intelligence(s44,_G136192),student_intelligence(s45,_G136197),student_intelligence(s46,l),student_intelligence(s47,h),student_intelligence(s48,_G136212),student_intelligence(s49,_G136217),student_intelligence(s50,_G136222),student_intelligence(s51,_G136227),student_intelligence(s52,_G136232),student_intelligence(s53,m),student_intelligence(s54,_G136242),student_intelligence(s55,h),student_intelligence(s56,l),student_intelligence(s57,_G136257),student_intelligence(s58,h),student_intelligence(s59,_G136267),student_intelligence(s60,m),student_intelligence(s61,h),student_intelligence(s62,_G136282),student_intelligence(s63,_G136287),student_intelligence(s64,l),student_intelligence(s65,_G136297),student_intelligence(s66,h),student_intelligence(s67,m),student_intelligence(s68,_G136312),student_intelligence(s69,_G136317),student_intelligence(s70,_G136322),student_intelligence(s71,m),student_intelligence(s72,_G136332),student_intelligence(s73,_G136337),student_intelligence(s74,_G136342),student_intelligence(s75,h),student_intelligence(s76,h),student_intelligence(s77,h),student_intelligence(s78,_G136362),student_intelligence(s79,m),student_intelligence(s80,_G136372),student_intelligence(s81,_G136377),student_intelligence(s82,_G136382),student_intelligence(s83,_G136387),student_intelligence(s84,_G136392),student_intelligence(s85,_G136397),student_intelligence(s86,_G136402),student_intelligence(s87,h),student_intelligence(s88,h),student_intelligence(s89,_G136417),student_intelligence(s90,h),student_intelligence(s91,_G136427),student_intelligence(s92,h),student_intelligence(s93,_G136437),student_intelligence(s94,_G136442),student_intelligence(s95,_G136447),student_intelligence(s96,_G136452),student_intelligence(s97,_G136457),student_intelligence(s98,_G136462),student_intelligence(s99,l),student_intelligence(s100,h),student_intelligence(s101,_G136477),student_intelligence(s102,m),student_intelligence(s103,h),student_intelligence(s104,l),student_intelligence(s105,m),student_intelligence(s106,_G136502),student_intelligence(s107,l),student_intelligence(s108,m),student_intelligence(s109,_G136517),student_intelligence(s110,m),student_intelligence(s111,h),student_intelligence(s112,m),student_intelligence(s113,h),student_intelligence(s114,_G136542),student_intelligence(s115,h),student_intelligence(s116,_G136552),student_intelligence(s117,m),student_intelligence(s118,_G136562),student_intelligence(s119,h),student_intelligence(s120,h),student_intelligence(s121,_G136577),student_intelligence(s122,m),student_intelligence(s123,_G136587),student_intelligence(s124,h),student_intelligence(s125,_G136597),student_intelligence(s126,m),student_intelligence(s127,m),student_intelligence(s128,_G136612),student_intelligence(s129,h),student_intelligence(s130,_G136622),student_intelligence(s131,h),student_intelligence(s132,_G136632),student_intelligence(s133,_G136637),student_intelligence(s134,h),student_intelligence(s135,_G136647),student_intelligence(s136,m),student_intelligence(s137,m),student_intelligence(s138,l),student_intelligence(s139,h),student_intelligence(s140,_G136672),student_intelligence(s141,_G136677),student_intelligence(s142,_G136682),student_intelligence(s143,_G136687),student_intelligence(s144,h),student_intelligence(s145,h),student_intelligence(s146,m),student_intelligence(s147,m),student_intelligence(s148,_G136712),student_intelligence(s149,_G136717),student_intelligence(s150,l),student_intelligence(s151,h),student_intelligence(s152,h),student_intelligence(s153,_G136737),student_intelligence(s154,_G136742),student_intelligence(s155,_G136747),student_intelligence(s156,m),student_intelligence(s157,m),student_intelligence(s158,h),student_intelligence(s159,_G136767),student_intelligence(s160,_G136772),student_intelligence(s161,_G136777),student_intelligence(s162,h),student_intelligence(s163,m),student_intelligence(s164,_G136792),student_intelligence(s165,m),student_intelligence(s166,m),student_intelligence(s167,_G136807),student_intelligence(s168,_G136812),student_intelligence(s169,_G136817),student_intelligence(s170,_G136822),student_intelligence(s171,m),student_intelligence(s172,_G136832),student_intelligence(s173,h),student_intelligence(s174,h),student_intelligence(s175,_G136847),student_intelligence(s176,_G136852),student_intelligence(s177,m),student_intelligence(s178,_G136862),student_intelligence(s179,m),student_intelligence(s180,m),student_intelligence(s181,h),student_intelligence(s182,m),student_intelligence(s183,h),student_intelligence(s184,_G136892),student_intelligence(s185,m),student_intelligence(s186,m),student_intelligence(s187,m),student_intelligence(s188,_G136912),student_intelligence(s189,m),student_intelligence(s190,h),student_intelligence(s191,l),student_intelligence(s192,_G136932),student_intelligence(s193,m),student_intelligence(s194,m),student_intelligence(s195,_G136947),student_intelligence(s196,h),student_intelligence(s197,_G136957),student_intelligence(s198,h),student_intelligence(s199,m),student_intelligence(s200,h),student_intelligence(s201,_G136977),student_intelligence(s202,h),student_intelligence(s203,m),student_intelligence(s204,h),student_intelligence(s205,_G136997),student_intelligence(s206,_G137002),student_intelligence(s207,h),student_intelligence(s208,_G137012),student_intelligence(s209,h),student_intelligence(s210,_G137022),student_intelligence(s211,_G137027),student_intelligence(s212,m),student_intelligence(s213,h),student_intelligence(s214,h),student_intelligence(s215,_G137047),student_intelligence(s216,h),student_intelligence(s217,_G137057),student_intelligence(s218,h),student_intelligence(s219,_G137067),student_intelligence(s220,_G137072),student_intelligence(s221,h),student_intelligence(s222,_G137082),student_intelligence(s223,_G137087),student_intelligence(s224,l),student_intelligence(s225,l),student_intelligence(s226,m),student_intelligence(s227,_G137107),student_intelligence(s228,h),student_intelligence(s229,_G137117),student_intelligence(s230,_G137122),student_intelligence(s231,_G137127),student_intelligence(s232,m),student_intelligence(s233,_G137137),student_intelligence(s234,_G137142),student_intelligence(s235,_G137147),student_intelligence(s236,_G137152),student_intelligence(s237,h),student_intelligence(s238,h),student_intelligence(s239,h),student_intelligence(s240,_G137172),student_intelligence(s241,_G137177),student_intelligence(s242,l),student_intelligence(s243,_G137187),student_intelligence(s244,_G137192),student_intelligence(s245,l),student_intelligence(s246,_G137202),student_intelligence(s247,h),student_intelligence(s248,m),student_intelligence(s249,_G137217),student_intelligence(s250,m),student_intelligence(s251,_G137227),student_intelligence(s252,_G137232),student_intelligence(s253,m),student_intelligence(s254,_G137242),student_intelligence(s255,m),course_difficulty(c0,_G137252),course_difficulty(c1,m),course_difficulty(c2,_G137262),course_difficulty(c3,_G137267),course_difficulty(c4,_G137272),course_difficulty(c5,l),course_difficulty(c6,m),course_difficulty(c7,h),course_difficulty(c8,h),course_difficulty(c9,_G137297),course_difficulty(c10,m),course_difficulty(c11,_G137307),course_difficulty(c12,m),course_difficulty(c13,_G137317),course_difficulty(c14,m),course_difficulty(c15,_G137327),course_difficulty(c16,l),course_difficulty(c17,h),course_difficulty(c18,_G137342),course_difficulty(c19,l),course_difficulty(c20,_G137352),course_difficulty(c21,_G137357),course_difficulty(c22,_G137362),course_difficulty(c23,_G137367),course_difficulty(c24,_G137372),course_difficulty(c25,m),course_difficulty(c26,_G137382),course_difficulty(c27,_G137387),course_difficulty(c28,m),course_difficulty(c29,_G137397),course_difficulty(c30,_G137402),course_difficulty(c31,m),course_difficulty(c32,l),course_difficulty(c33,m),course_difficulty(c34,_G137422),course_difficulty(c35,_G137427),course_difficulty(c36,h),course_difficulty(c37,m),course_difficulty(c38,m),course_difficulty(c39,_G137447),course_difficulty(c40,h),course_difficulty(c41,_G137457),course_difficulty(c42,_G137462),course_difficulty(c43,m),course_difficulty(c44,m),course_difficulty(c45,_G137477),course_difficulty(c46,m),course_difficulty(c47,_G137487),course_difficulty(c48,m),course_difficulty(c49,l),course_difficulty(c50,_G137502),course_difficulty(c51,h),course_difficulty(c52,_G137512),course_difficulty(c53,_G137517),course_difficulty(c54,_G137522),course_difficulty(c55,h),course_difficulty(c56,_G137532),course_difficulty(c57,_G137537),course_difficulty(c58,_G137542),course_difficulty(c59,m),course_difficulty(c60,_G137552),course_difficulty(c61,m),course_difficulty(c62,l),course_difficulty(c63,_G137567),registration_satisfaction(r0,_G137572),registration_satisfaction(r1,l),registration_satisfaction(r2,_G137582),registration_satisfaction(r3,_G137587),registration_satisfaction(r4,h),registration_satisfaction(r5,h),registration_satisfaction(r6,_G137602),registration_satisfaction(r7,h),registration_satisfaction(r8,_G137612),registration_satisfaction(r9,h),registration_satisfaction(r10,_G137622),registration_satisfaction(r11,_G137627),registration_satisfaction(r12,_G137632),registration_satisfaction(r13,h),registration_satisfaction(r14,m),registration_satisfaction(r15,h),registration_satisfaction(r16,h),registration_satisfaction(r17,l),registration_satisfaction(r18,l),registration_satisfaction(r19,_G137667),registration_satisfaction(r20,_G137672),registration_satisfaction(r21,_G137677),registration_satisfaction(r22,h),registration_satisfaction(r23,_G137687),registration_satisfaction(r24,_G137692),registration_satisfaction(r25,_G137697),registration_satisfaction(r26,_G137702),registration_satisfaction(r27,_G137707),registration_satisfaction(r28,h),registration_satisfaction(r29,_G137717),registration_satisfaction(r30,l),registration_satisfaction(r31,_G137727),registration_satisfaction(r32,_G137732),registration_satisfaction(r33,h),registration_satisfaction(r34,_G137742),registration_satisfaction(r35,h),registration_satisfaction(r36,m),registration_satisfaction(r37,h),registration_satisfaction(r38,_G137762),registration_satisfaction(r39,h),registration_satisfaction(r40,_G137772),registration_satisfaction(r41,_G137777),registration_satisfaction(r42,_G137782),registration_satisfaction(r43,h),registration_satisfaction(r44,_G137792),registration_satisfaction(r45,h),registration_satisfaction(r46,m),registration_satisfaction(r47,_G137807),registration_satisfaction(r48,_G137812),registration_satisfaction(r49,h),registration_satisfaction(r50,_G137822),registration_satisfaction(r51,_G137827),registration_satisfaction(r52,h),registration_satisfaction(r53,_G137837),registration_satisfaction(r54,h),registration_satisfaction(r55,h),registration_satisfaction(r56,_G137852),registration_satisfaction(r57,h),registration_satisfaction(r58,_G137862),registration_satisfaction(r59,_G137867),registration_satisfaction(r60,h),registration_satisfaction(r61,h),registration_satisfaction(r62,h),registration_satisfaction(r63,h),registration_satisfaction(r64,h),registration_satisfaction(r65,h),registration_satisfaction(r66,h),registration_satisfaction(r67,_G137907),registration_satisfaction(r68,h),registration_satisfaction(r69,m),registration_satisfaction(r70,_G137922),registration_satisfaction(r71,_G137927),registration_satisfaction(r72,_G137932),registration_satisfaction(r73,h),registration_satisfaction(r74,h),registration_satisfaction(r75,h),registration_satisfaction(r76,_G137952),registration_satisfaction(r77,_G137957),registration_satisfaction(r78,m),registration_satisfaction(r79,h),registration_satisfaction(r80,h),registration_satisfaction(r81,h),registration_satisfaction(r82,l),registration_satisfaction(r83,_G137987),registration_satisfaction(r84,m),registration_satisfaction(r85,h),registration_satisfaction(r86,_G138002),registration_satisfaction(r87,_G138007),registration_satisfaction(r88,h),registration_satisfaction(r89,_G138017),registration_satisfaction(r90,_G138022),registration_satisfaction(r91,h),registration_satisfaction(r92,_G138032),registration_satisfaction(r93,_G138037),registration_satisfaction(r94,l),registration_satisfaction(r95,_G138047),registration_satisfaction(r96,h),registration_satisfaction(r97,_G138057),registration_satisfaction(r98,h),registration_satisfaction(r99,h),registration_satisfaction(r100,_G138072),registration_satisfaction(r101,_G138077),registration_satisfaction(r102,h),registration_satisfaction(r103,h),registration_satisfaction(r104,h),registration_satisfaction(r105,_G138097),registration_satisfaction(r106,_G138102),registration_satisfaction(r107,l),registration_satisfaction(r108,l),registration_satisfaction(r109,h),registration_satisfaction(r110,_G138122),registration_satisfaction(r111,h),registration_satisfaction(r112,_G138132),registration_satisfaction(r113,_G138137),registration_satisfaction(r114,m),registration_satisfaction(r115,_G138147),registration_satisfaction(r116,h),registration_satisfaction(r117,_G138157),registration_satisfaction(r118,h),registration_satisfaction(r119,h),registration_satisfaction(r120,l),registration_satisfaction(r121,_G138177),registration_satisfaction(r122,_G138182),registration_satisfaction(r123,l),registration_satisfaction(r124,_G138192),registration_satisfaction(r125,m),registration_satisfaction(r126,h),registration_satisfaction(r127,h),registration_satisfaction(r128,h),registration_satisfaction(r129,h),registration_satisfaction(r130,h),registration_satisfaction(r131,_G138227),registration_satisfaction(r132,m),registration_satisfaction(r133,_G138237),registration_satisfaction(r134,m),registration_satisfaction(r135,_G138247),registration_satisfaction(r136,h),registration_satisfaction(r137,h),registration_satisfaction(r138,h),registration_satisfaction(r139,_G138267),registration_satisfaction(r140,h),registration_satisfaction(r141,_G138277),registration_satisfaction(r142,h),registration_satisfaction(r143,h),registration_satisfaction(r144,h),registration_satisfaction(r145,l),registration_satisfaction(r146,_G138302),registration_satisfaction(r147,l),registration_satisfaction(r148,m),registration_satisfaction(r149,h),registration_satisfaction(r150,_G138322),registration_satisfaction(r151,_G138327),registration_satisfaction(r152,h),registration_satisfaction(r153,_G138337),registration_satisfaction(r154,_G138342),registration_satisfaction(r155,m),registration_satisfaction(r156,h),registration_satisfaction(r157,_G138357),registration_satisfaction(r158,l),registration_satisfaction(r159,m),registration_satisfaction(r160,h),registration_satisfaction(r161,_G138377),registration_satisfaction(r162,m),registration_satisfaction(r163,_G138387),registration_satisfaction(r164,m),registration_satisfaction(r165,m),registration_satisfaction(r166,l),registration_satisfaction(r167,_G138407),registration_satisfaction(r168,h),registration_satisfaction(r169,h),registration_satisfaction(r170,_G138422),registration_satisfaction(r171,_G138427),registration_satisfaction(r172,h),registration_satisfaction(r173,_G138437),registration_satisfaction(r174,_G138442),registration_satisfaction(r175,_G138447),registration_satisfaction(r176,h),registration_satisfaction(r177,h),registration_satisfaction(r178,h),registration_satisfaction(r179,l),registration_satisfaction(r180,_G138472),registration_satisfaction(r181,_G138477),registration_satisfaction(r182,_G138482),registration_satisfaction(r183,_G138487),registration_satisfaction(r184,_G138492),registration_satisfaction(r185,_G138497),registration_satisfaction(r186,_G138502),registration_satisfaction(r187,h),registration_satisfaction(r188,m),registration_satisfaction(r189,_G138517),registration_satisfaction(r190,h),registration_satisfaction(r191,h),registration_satisfaction(r192,m),registration_satisfaction(r193,h),registration_satisfaction(r194,_G138542),registration_satisfaction(r195,_G138547),registration_satisfaction(r196,_G138552),registration_satisfaction(r197,h),registration_satisfaction(r198,h),registration_satisfaction(r199,h),registration_satisfaction(r200,_G138572),registration_satisfaction(r201,h),registration_satisfaction(r202,_G138582),registration_satisfaction(r203,_G138587),registration_satisfaction(r204,_G138592),registration_satisfaction(r205,_G138597),registration_satisfaction(r206,h),registration_satisfaction(r207,h),registration_satisfaction(r208,h),registration_satisfaction(r209,h),registration_satisfaction(r210,_G138622),registration_satisfaction(r211,_G138627),registration_satisfaction(r212,h),registration_satisfaction(r213,_G138637),registration_satisfaction(r214,_G138642),registration_satisfaction(r215,h),registration_satisfaction(r216,h),registration_satisfaction(r217,h),registration_satisfaction(r218,m),registration_satisfaction(r219,h),registration_satisfaction(r220,h),registration_satisfaction(r221,_G138677),registration_satisfaction(r222,_G138682),registration_satisfaction(r223,h),registration_satisfaction(r224,h),registration_satisfaction(r225,_G138697),registration_satisfaction(r226,_G138702),registration_satisfaction(r227,h),registration_satisfaction(r228,_G138712),registration_satisfaction(r229,l),registration_satisfaction(r230,h),registration_satisfaction(r231,_G138727),registration_satisfaction(r232,h),registration_satisfaction(r233,m),registration_satisfaction(r234,_G138742),registration_satisfaction(r235,h),registration_satisfaction(r236,_G138752),registration_satisfaction(r237,_G138757),registration_satisfaction(r238,m),registration_satisfaction(r239,m),registration_satisfaction(r240,h),registration_satisfaction(r241,h),registration_satisfaction(r242,m),registration_satisfaction(r243,_G138787),registration_satisfaction(r244,_G138792),registration_satisfaction(r245,_G138797),registration_satisfaction(r246,h),registration_satisfaction(r247,_G138807),registration_satisfaction(r248,_G138812),registration_satisfaction(r249,h),registration_satisfaction(r250,h),registration_satisfaction(r251,h),registration_satisfaction(r252,h),registration_satisfaction(r253,h),registration_satisfaction(r254,h),registration_satisfaction(r255,h),registration_satisfaction(r256,_G138852),registration_satisfaction(r257,m),registration_satisfaction(r258,h),registration_satisfaction(r259,_G138867),registration_satisfaction(r260,_G138872),registration_satisfaction(r261,_G138877),registration_satisfaction(r262,h),registration_satisfaction(r263,m),registration_satisfaction(r264,_G138892),registration_satisfaction(r265,_G138897),registration_satisfaction(r266,l),registration_satisfaction(r267,_G138907),registration_satisfaction(r268,_G138912),registration_satisfaction(r269,_G138917),registration_satisfaction(r270,l),registration_satisfaction(r271,h),registration_satisfaction(r272,_G138932),registration_satisfaction(r273,h),registration_satisfaction(r274,h),registration_satisfaction(r275,_G138947),registration_satisfaction(r276,_G138952),registration_satisfaction(r277,h),registration_satisfaction(r278,h),registration_satisfaction(r279,_G138967),registration_satisfaction(r280,_G138972),registration_satisfaction(r281,_G138977),registration_satisfaction(r282,_G138982),registration_satisfaction(r283,_G138987),registration_satisfaction(r284,_G138992),registration_satisfaction(r285,m),registration_satisfaction(r286,h),registration_satisfaction(r287,_G139007),registration_satisfaction(r288,_G139012),registration_satisfaction(r289,l),registration_satisfaction(r290,m),registration_satisfaction(r291,h),registration_satisfaction(r292,m),registration_satisfaction(r293,_G139037),registration_satisfaction(r294,h),registration_satisfaction(r295,_G139047),registration_satisfaction(r296,_G139052),registration_satisfaction(r297,_G139057),registration_satisfaction(r298,_G139062),registration_satisfaction(r299,_G139067),registration_satisfaction(r300,l),registration_satisfaction(r301,_G139077),registration_satisfaction(r302,_G139082),registration_satisfaction(r303,h),registration_satisfaction(r304,h),registration_satisfaction(r305,_G139097),registration_satisfaction(r306,_G139102),registration_satisfaction(r307,_G139107),registration_satisfaction(r308,l),registration_satisfaction(r309,m),registration_satisfaction(r310,_G139122),registration_satisfaction(r311,_G139127),registration_satisfaction(r312,h),registration_satisfaction(r313,_G139137),registration_satisfaction(r314,h),registration_satisfaction(r315,h),registration_satisfaction(r316,l),registration_satisfaction(r317,l),registration_satisfaction(r318,_G139162),registration_satisfaction(r319,_G139167),registration_satisfaction(r320,_G139172),registration_satisfaction(r321,l),registration_satisfaction(r322,h),registration_satisfaction(r323,_G139187),registration_satisfaction(r324,h),registration_satisfaction(r325,h),registration_satisfaction(r326,_G139202),registration_satisfaction(r327,m),registration_satisfaction(r328,h),registration_satisfaction(r329,h),registration_satisfaction(r330,_G139222),registration_satisfaction(r331,h),registration_satisfaction(r332,l),registration_satisfaction(r333,_G139237),registration_satisfaction(r334,_G139242),registration_satisfaction(r335,h),registration_satisfaction(r336,_G139252),registration_satisfaction(r337,h),registration_satisfaction(r338,h),registration_satisfaction(r339,_G139267),registration_satisfaction(r340,_G139272),registration_satisfaction(r341,l),registration_satisfaction(r342,h),registration_satisfaction(r343,_G139287),registration_satisfaction(r344,_G139292),registration_satisfaction(r345,m),registration_satisfaction(r346,h),registration_satisfaction(r347,m),registration_satisfaction(r348,_G139312),registration_satisfaction(r349,h),registration_satisfaction(r350,m),registration_satisfaction(r351,_G139327),registration_satisfaction(r352,l),registration_satisfaction(r353,h),registration_satisfaction(r354,h),registration_satisfaction(r355,_G139347),registration_satisfaction(r356,_G139352),registration_satisfaction(r357,m),registration_satisfaction(r358,_G139362),registration_satisfaction(r359,_G139367),registration_satisfaction(r360,_G139372),registration_satisfaction(r361,m),registration_satisfaction(r362,_G139382),registration_satisfaction(r363,_G139387),registration_satisfaction(r364,_G139392),registration_satisfaction(r365,_G139397),registration_satisfaction(r366,h),registration_satisfaction(r367,h),registration_satisfaction(r368,h),registration_satisfaction(r369,h),registration_satisfaction(r370,_G139422),registration_satisfaction(r371,_G139427),registration_satisfaction(r372,h),registration_satisfaction(r373,h),registration_satisfaction(r374,_G139442),registration_satisfaction(r375,h),registration_satisfaction(r376,_G139452),registration_satisfaction(r377,_G139457),registration_satisfaction(r378,_G139462),registration_satisfaction(r379,h),registration_satisfaction(r380,_G139472),registration_satisfaction(r381,_G139477),registration_satisfaction(r382,h),registration_satisfaction(r383,h),registration_satisfaction(r384,_G139492),registration_satisfaction(r385,m),registration_satisfaction(r386,_G139502),registration_satisfaction(r387,h),registration_satisfaction(r388,_G139512),registration_satisfaction(r389,_G139517),registration_satisfaction(r390,_G139522),registration_satisfaction(r391,l),registration_satisfaction(r392,_G139532),registration_satisfaction(r393,_G139537),registration_satisfaction(r394,h),registration_satisfaction(r395,_G139547),registration_satisfaction(r396,h),registration_satisfaction(r397,h),registration_satisfaction(r398,l),registration_satisfaction(r399,h),registration_satisfaction(r400,_G139572),registration_satisfaction(r401,l),registration_satisfaction(r402,h),registration_satisfaction(r403,h),registration_satisfaction(r404,h),registration_satisfaction(r405,h),registration_satisfaction(r406,_G139602),registration_satisfaction(r407,_G139607),registration_satisfaction(r408,_G139612),registration_satisfaction(r409,h),registration_satisfaction(r410,h),registration_satisfaction(r411,_G139627),registration_satisfaction(r412,_G139632),registration_satisfaction(r413,l),registration_satisfaction(r414,h),registration_satisfaction(r415,m),registration_satisfaction(r416,_G139652),registration_satisfaction(r417,h),registration_satisfaction(r418,_G139662),registration_satisfaction(r419,_G139667),registration_satisfaction(r420,_G139672),registration_satisfaction(r421,_G139677),registration_satisfaction(r422,_G139682),registration_satisfaction(r423,_G139687),registration_satisfaction(r424,h),registration_satisfaction(r425,h),registration_satisfaction(r426,_G139702),registration_satisfaction(r427,_G139707),registration_satisfaction(r428,_G139712),registration_satisfaction(r429,_G139717),registration_satisfaction(r430,l),registration_satisfaction(r431,m),registration_satisfaction(r432,_G139732),registration_satisfaction(r433,_G139737),registration_satisfaction(r434,h),registration_satisfaction(r435,m),registration_satisfaction(r436,_G139752),registration_satisfaction(r437,h),registration_satisfaction(r438,l),registration_satisfaction(r439,_G139767),registration_satisfaction(r440,h),registration_satisfaction(r441,h),registration_satisfaction(r442,_G139782),registration_satisfaction(r443,_G139787),registration_satisfaction(r444,_G139792),registration_satisfaction(r445,_G139797),registration_satisfaction(r446,h),registration_satisfaction(r447,m),registration_satisfaction(r448,l),registration_satisfaction(r449,_G139817),registration_satisfaction(r450,h),registration_satisfaction(r451,_G139827),registration_satisfaction(r452,_G139832),registration_satisfaction(r453,_G139837),registration_satisfaction(r454,_G139842),registration_satisfaction(r455,_G139847),registration_satisfaction(r456,h),registration_satisfaction(r457,h),registration_satisfaction(r458,_G139862),registration_satisfaction(r459,_G139867),registration_satisfaction(r460,l),registration_satisfaction(r461,h),registration_satisfaction(r462,h),registration_satisfaction(r463,_G139887),registration_satisfaction(r464,_G139892),registration_satisfaction(r465,_G139897),registration_satisfaction(r466,l),registration_satisfaction(r467,_G139907),registration_satisfaction(r468,_G139912),registration_satisfaction(r469,h),registration_satisfaction(r470,h),registration_satisfaction(r471,_G139927),registration_satisfaction(r472,_G139932),registration_satisfaction(r473,_G139937),registration_satisfaction(r474,_G139942),registration_satisfaction(r475,h),registration_satisfaction(r476,_G139952),registration_satisfaction(r477,_G139957),registration_satisfaction(r478,_G139962),registration_satisfaction(r479,_G139967),registration_satisfaction(r480,_G139972),registration_satisfaction(r481,_G139977),registration_satisfaction(r482,_G139982),registration_satisfaction(r483,h),registration_satisfaction(r484,_G139992),registration_satisfaction(r485,h),registration_satisfaction(r486,h),registration_satisfaction(r487,_G140007),registration_satisfaction(r488,_G140012),registration_satisfaction(r489,m),registration_satisfaction(r490,_G140022),registration_satisfaction(r491,_G140027),registration_satisfaction(r492,h),registration_satisfaction(r493,_G140037),registration_satisfaction(r494,_G140042),registration_satisfaction(r495,h),registration_satisfaction(r496,h),registration_satisfaction(r497,_G140057),registration_satisfaction(r498,_G140062),registration_satisfaction(r499,h),registration_satisfaction(r500,m),registration_satisfaction(r501,h),registration_satisfaction(r502,_G140082),registration_satisfaction(r503,_G140087),registration_satisfaction(r504,m),registration_satisfaction(r505,_G140097),registration_satisfaction(r506,_G140102),registration_satisfaction(r507,_G140107),registration_satisfaction(r508,_G140112),registration_satisfaction(r509,_G140117),registration_satisfaction(r510,_G140122),registration_satisfaction(r511,l),registration_satisfaction(r512,h),registration_satisfaction(r513,h),registration_satisfaction(r514,_G140142),registration_satisfaction(r515,_G140147),registration_satisfaction(r516,_G140152),registration_satisfaction(r517,m),registration_satisfaction(r518,_G140162),registration_satisfaction(r519,h),registration_satisfaction(r520,_G140172),registration_satisfaction(r521,h),registration_satisfaction(r522,h),registration_satisfaction(r523,h),registration_satisfaction(r524,h),registration_satisfaction(r525,_G140197),registration_satisfaction(r526,h),registration_satisfaction(r527,_G140207),registration_satisfaction(r528,_G140212),registration_satisfaction(r529,h),registration_satisfaction(r530,_G140222),registration_satisfaction(r531,_G140227),registration_satisfaction(r532,_G140232),registration_satisfaction(r533,_G140237),registration_satisfaction(r534,l),registration_satisfaction(r535,_G140247),registration_satisfaction(r536,h),registration_satisfaction(r537,h),registration_satisfaction(r538,_G140262),registration_satisfaction(r539,_G140267),registration_satisfaction(r540,_G140272),registration_satisfaction(r541,_G140277),registration_satisfaction(r542,h),registration_satisfaction(r543,h),registration_satisfaction(r544,_G140292),registration_satisfaction(r545,h),registration_satisfaction(r546,_G140302),registration_satisfaction(r547,_G140307),registration_satisfaction(r548,h),registration_satisfaction(r549,_G140317),registration_satisfaction(r550,_G140322),registration_satisfaction(r551,h),registration_satisfaction(r552,m),registration_satisfaction(r553,m),registration_satisfaction(r554,l),registration_satisfaction(r555,m),registration_satisfaction(r556,_G140352),registration_satisfaction(r557,_G140357),registration_satisfaction(r558,_G140362),registration_satisfaction(r559,_G140367),registration_satisfaction(r560,_G140372),registration_satisfaction(r561,_G140377),registration_satisfaction(r562,h),registration_satisfaction(r563,_G140387),registration_satisfaction(r564,h),registration_satisfaction(r565,_G140397),registration_satisfaction(r566,l),registration_satisfaction(r567,_G140407),registration_satisfaction(r568,h),registration_satisfaction(r569,h),registration_satisfaction(r570,h),registration_satisfaction(r571,_G140427),registration_satisfaction(r572,_G140432),registration_satisfaction(r573,_G140437),registration_satisfaction(r574,_G140442),registration_satisfaction(r575,_G140447),registration_satisfaction(r576,_G140452),registration_satisfaction(r577,_G140457),registration_satisfaction(r578,l),registration_satisfaction(r579,h),registration_satisfaction(r580,m),registration_satisfaction(r581,h),registration_satisfaction(r582,h),registration_satisfaction(r583,h),registration_satisfaction(r584,h),registration_satisfaction(r585,h),registration_satisfaction(r586,_G140502),registration_satisfaction(r587,_G140507),registration_satisfaction(r588,_G140512),registration_satisfaction(r589,l),registration_satisfaction(r590,h),registration_satisfaction(r591,_G140527),registration_satisfaction(r592,_G140532),registration_satisfaction(r593,_G140537),registration_satisfaction(r594,l),registration_satisfaction(r595,m),registration_satisfaction(r596,h),registration_satisfaction(r597,_G140557),registration_satisfaction(r598,_G140562),registration_satisfaction(r599,h),registration_satisfaction(r600,_G140572),registration_satisfaction(r601,m),registration_satisfaction(r602,h),registration_satisfaction(r603,_G140587),registration_satisfaction(r604,_G140592),registration_satisfaction(r605,h),registration_satisfaction(r606,h),registration_satisfaction(r607,l),registration_satisfaction(r608,_G140612),registration_satisfaction(r609,h),registration_satisfaction(r610,_G140622),registration_satisfaction(r611,h),registration_satisfaction(r612,l),registration_satisfaction(r613,_G140637),registration_satisfaction(r614,_G140642),registration_satisfaction(r615,_G140647),registration_satisfaction(r616,h),registration_satisfaction(r617,h),registration_satisfaction(r618,h),registration_satisfaction(r619,h),registration_satisfaction(r620,_G140672),registration_satisfaction(r621,_G140677),registration_satisfaction(r622,h),registration_satisfaction(r623,_G140687),registration_satisfaction(r624,_G140692),registration_satisfaction(r625,l),registration_satisfaction(r626,_G140702),registration_satisfaction(r627,h),registration_satisfaction(r628,h),registration_satisfaction(r629,h),registration_satisfaction(r630,h),registration_satisfaction(r631,h),registration_satisfaction(r632,h),registration_satisfaction(r633,_G140737),registration_satisfaction(r634,_G140742),registration_satisfaction(r635,_G140747),registration_satisfaction(r636,_G140752),registration_satisfaction(r637,_G140757),registration_satisfaction(r638,h),registration_satisfaction(r639,_G140767),registration_satisfaction(r640,h),registration_satisfaction(r641,h),registration_satisfaction(r642,_G140782),registration_satisfaction(r643,_G140787),registration_satisfaction(r644,h),registration_satisfaction(r645,_G140797),registration_satisfaction(r646,h),registration_satisfaction(r647,h),registration_satisfaction(r648,_G140812),registration_satisfaction(r649,_G140817),registration_satisfaction(r650,_G140822),registration_satisfaction(r651,_G140827),registration_satisfaction(r652,_G140832),registration_satisfaction(r653,_G140837),registration_satisfaction(r654,h),registration_satisfaction(r655,h),registration_satisfaction(r656,m),registration_satisfaction(r657,_G140857),registration_satisfaction(r658,h),registration_satisfaction(r659,h),registration_satisfaction(r660,h),registration_satisfaction(r661,_G140877),registration_satisfaction(r662,_G140882),registration_satisfaction(r663,h),registration_satisfaction(r664,_G140892),registration_satisfaction(r665,h),registration_satisfaction(r666,l),registration_satisfaction(r667,h),registration_satisfaction(r668,l),registration_satisfaction(r669,_G140917),registration_satisfaction(r670,h),registration_satisfaction(r671,_G140927),registration_satisfaction(r672,_G140932),registration_satisfaction(r673,_G140937),registration_satisfaction(r674,h),registration_satisfaction(r675,l),registration_satisfaction(r676,_G140952),registration_satisfaction(r677,_G140957),registration_satisfaction(r678,h),registration_satisfaction(r679,h),registration_satisfaction(r680,m),registration_satisfaction(r681,_G140977),registration_satisfaction(r682,_G140982),registration_satisfaction(r683,h),registration_satisfaction(r684,_G140992),registration_satisfaction(r685,h),registration_satisfaction(r686,h),registration_satisfaction(r687,_G141007),registration_satisfaction(r688,_G141012),registration_satisfaction(r689,_G141017),registration_satisfaction(r690,h),registration_satisfaction(r691,h),registration_satisfaction(r692,h),registration_satisfaction(r693,_G141037),registration_satisfaction(r694,h),registration_satisfaction(r695,_G141047),registration_satisfaction(r696,_G141052),registration_satisfaction(r697,_G141057),registration_satisfaction(r698,h),registration_satisfaction(r699,h),registration_satisfaction(r700,_G141072),registration_satisfaction(r701,h),registration_satisfaction(r702,_G141082),registration_satisfaction(r703,_G141087),registration_satisfaction(r704,l),registration_satisfaction(r705,_G141097),registration_satisfaction(r706,_G141102),registration_satisfaction(r707,_G141107),registration_satisfaction(r708,_G141112),registration_satisfaction(r709,m),registration_satisfaction(r710,l),registration_satisfaction(r711,h),registration_satisfaction(r712,h),registration_satisfaction(r713,h),registration_satisfaction(r714,m),registration_satisfaction(r715,_G141147),registration_satisfaction(r716,h),registration_satisfaction(r717,h),registration_satisfaction(r718,l),registration_satisfaction(r719,l),registration_satisfaction(r720,_G141172),registration_satisfaction(r721,h),registration_satisfaction(r722,h),registration_satisfaction(r723,h),registration_satisfaction(r724,h),registration_satisfaction(r725,_G141197),registration_satisfaction(r726,h),registration_satisfaction(r727,_G141207),registration_satisfaction(r728,_G141212),registration_satisfaction(r729,_G141217),registration_satisfaction(r730,h),registration_satisfaction(r731,h),registration_satisfaction(r732,_G141232),registration_satisfaction(r733,_G141237),registration_satisfaction(r734,h),registration_satisfaction(r735,h),registration_satisfaction(r736,_G141252),registration_satisfaction(r737,h),registration_satisfaction(r738,_G141262),registration_satisfaction(r739,h),registration_satisfaction(r740,h),registration_satisfaction(r741,h),registration_satisfaction(r742,h),registration_satisfaction(r743,_G141287),registration_satisfaction(r744,_G141292),registration_satisfaction(r745,m),registration_satisfaction(r746,h),registration_satisfaction(r747,_G141307),registration_satisfaction(r748,_G141312),registration_satisfaction(r749,_G141317),registration_satisfaction(r750,_G141322),registration_satisfaction(r751,_G141327),registration_satisfaction(r752,m),registration_satisfaction(r753,m),registration_satisfaction(r754,_G141342),registration_satisfaction(r755,l),registration_satisfaction(r756,_G141352),registration_satisfaction(r757,h),registration_satisfaction(r758,h),registration_satisfaction(r759,l),registration_satisfaction(r760,_G141372),registration_satisfaction(r761,h),registration_satisfaction(r762,_G141382),registration_satisfaction(r763,_G141387),registration_satisfaction(r764,_G141392),registration_satisfaction(r765,h),registration_satisfaction(r766,_G141402),registration_satisfaction(r767,_G141407),registration_satisfaction(r768,_G141412),registration_satisfaction(r769,_G141417),registration_satisfaction(r770,m),registration_satisfaction(r771,_G141427),registration_satisfaction(r772,_G141432),registration_satisfaction(r773,m),registration_satisfaction(r774,h),registration_satisfaction(r775,h),registration_satisfaction(r776,_G141452),registration_satisfaction(r777,_G141457),registration_satisfaction(r778,h),registration_satisfaction(r779,_G141467),registration_satisfaction(r780,h),registration_satisfaction(r781,m),registration_satisfaction(r782,m),registration_satisfaction(r783,m),registration_satisfaction(r784,l),registration_satisfaction(r785,l),registration_satisfaction(r786,h),registration_satisfaction(r787,h),registration_satisfaction(r788,_G141512),registration_satisfaction(r789,_G141517),registration_satisfaction(r790,_G141522),registration_satisfaction(r791,h),registration_satisfaction(r792,_G141532),registration_satisfaction(r793,_G141537),registration_satisfaction(r794,_G141542),registration_satisfaction(r795,_G141547),registration_satisfaction(r796,h),registration_satisfaction(r797,h),registration_satisfaction(r798,m),registration_satisfaction(r799,_G141567),registration_satisfaction(r800,m),registration_satisfaction(r801,h),registration_satisfaction(r802,h),registration_satisfaction(r803,h),registration_satisfaction(r804,_G141592),registration_satisfaction(r805,_G141597),registration_satisfaction(r806,_G141602),registration_satisfaction(r807,_G141607),registration_satisfaction(r808,_G141612),registration_satisfaction(r809,_G141617),registration_satisfaction(r810,h),registration_satisfaction(r811,_G141627),registration_satisfaction(r812,h),registration_satisfaction(r813,m),registration_satisfaction(r814,l),registration_satisfaction(r815,_G141647),registration_satisfaction(r816,_G141652),registration_satisfaction(r817,_G141657),registration_satisfaction(r818,_G141662),registration_satisfaction(r819,h),registration_satisfaction(r820,h),registration_satisfaction(r821,_G141677),registration_satisfaction(r822,m),registration_satisfaction(r823,_G141687),registration_satisfaction(r824,m),registration_satisfaction(r825,l),registration_satisfaction(r826,l),registration_satisfaction(r827,l),registration_satisfaction(r828,_G141712),registration_satisfaction(r829,_G141717),registration_satisfaction(r830,h),registration_satisfaction(r831,_G141727),registration_satisfaction(r832,m),registration_satisfaction(r833,_G141737),registration_satisfaction(r834,_G141742),registration_satisfaction(r835,_G141747),registration_satisfaction(r836,h),registration_satisfaction(r837,h),registration_satisfaction(r838,l),registration_satisfaction(r839,_G141767),registration_satisfaction(r840,m),registration_satisfaction(r841,_G141777),registration_satisfaction(r842,_G141782),registration_satisfaction(r843,h),registration_satisfaction(r844,_G141792),registration_satisfaction(r845,_G141797),registration_satisfaction(r846,_G141802),registration_satisfaction(r847,_G141807),registration_satisfaction(r848,l),registration_satisfaction(r849,_G141817),registration_satisfaction(r850,_G141822),registration_satisfaction(r851,h),registration_satisfaction(r852,h),registration_satisfaction(r853,h),registration_satisfaction(r854,m),registration_satisfaction(r855,_G141847),registration_satisfaction(r856,_G141852)]).graph22,388 -graph([professor_ability(p0,_G131367),professor_ability(p1,h),professor_ability(p2,_G131377),professor_ability(p3,_G131382),professor_ability(p4,_G131387),professor_ability(p5,_G131392),professor_ability(p6,_G131397),professor_ability(p7,l),professor_ability(p8,m),professor_ability(p9,h),professor_ability(p10,m),professor_ability(p11,_G131422),professor_ability(p12,_G131427),professor_ability(p13,_G131432),professor_ability(p14,_G131437),professor_ability(p15,_G131442),professor_ability(p16,_G131447),professor_ability(p17,m),professor_ability(p18,l),professor_ability(p19,h),professor_ability(p20,h),professor_ability(p21,_G131472),professor_ability(p22,m),professor_ability(p23,m),professor_ability(p24,l),professor_ability(p25,m),professor_ability(p26,_G131497),professor_ability(p27,h),professor_ability(p28,h),professor_ability(p29,_G131512),professor_ability(p30,_G131517),professor_ability(p31,_G131522),professor_popularity(p0,h),professor_popularity(p1,h),professor_popularity(p2,_G131537),professor_popularity(p3,h),professor_popularity(p4,h),professor_popularity(p5,h),professor_popularity(p6,l),professor_popularity(p7,l),professor_popularity(p8,_G131567),professor_popularity(p9,_G131572),professor_popularity(p10,l),professor_popularity(p11,_G131582),professor_popularity(p12,h),professor_popularity(p13,l),professor_popularity(p14,_G131597),professor_popularity(p15,h),professor_popularity(p16,m),professor_popularity(p17,_G131612),professor_popularity(p18,_G131617),professor_popularity(p19,_G131622),professor_popularity(p20,_G131627),professor_popularity(p21,h),professor_popularity(p22,_G131637),professor_popularity(p23,_G131642),professor_popularity(p24,l),professor_popularity(p25,_G131652),professor_popularity(p26,_G131657),professor_popularity(p27,h),professor_popularity(p28,h),professor_popularity(p29,_G131672),professor_popularity(p30,m),professor_popularity(p31,_G131682),registration_grade(r0,a),registration_grade(r1,_G131692),registration_grade(r2,_G131697),registration_grade(r3,c),registration_grade(r4,c),registration_grade(r5,c),registration_grade(r6,_G131717),registration_grade(r7,a),registration_grade(r8,b),registration_grade(r9,_G131732),registration_grade(r10,_G131737),registration_grade(r11,a),registration_grade(r12,_G131747),registration_grade(r13,a),registration_grade(r14,_G131757),registration_grade(r15,b),registration_grade(r16,a),registration_grade(r17,b),registration_grade(r18,_G131777),registration_grade(r19,_G131782),registration_grade(r20,c),registration_grade(r21,_G131792),registration_grade(r22,_G131797),registration_grade(r23,_G131802),registration_grade(r24,b),registration_grade(r25,a),registration_grade(r26,_G131817),registration_grade(r27,_G131822),registration_grade(r28,c),registration_grade(r29,b),registration_grade(r30,c),registration_grade(r31,b),registration_grade(r32,_G131847),registration_grade(r33,a),registration_grade(r34,c),registration_grade(r35,c),registration_grade(r36,a),registration_grade(r37,a),registration_grade(r38,c),registration_grade(r39,a),registration_grade(r40,_G131887),registration_grade(r41,_G131892),registration_grade(r42,_G131897),registration_grade(r43,a),registration_grade(r44,a),registration_grade(r45,a),registration_grade(r46,a),registration_grade(r47,_G131922),registration_grade(r48,_G131927),registration_grade(r49,b),registration_grade(r50,b),registration_grade(r51,b),registration_grade(r52,_G131947),registration_grade(r53,a),registration_grade(r54,_G131957),registration_grade(r55,a),registration_grade(r56,c),registration_grade(r57,_G131972),registration_grade(r58,_G131977),registration_grade(r59,_G131982),registration_grade(r60,_G131987),registration_grade(r61,a),registration_grade(r62,_G131997),registration_grade(r63,b),registration_grade(r64,b),registration_grade(r65,b),registration_grade(r66,_G132017),registration_grade(r67,b),registration_grade(r68,a),registration_grade(r69,_G132032),registration_grade(r70,_G132037),registration_grade(r71,_G132042),registration_grade(r72,_G132047),registration_grade(r73,_G132052),registration_grade(r74,a),registration_grade(r75,_G132062),registration_grade(r76,_G132067),registration_grade(r77,_G132072),registration_grade(r78,b),registration_grade(r79,_G132082),registration_grade(r80,_G132087),registration_grade(r81,_G132092),registration_grade(r82,_G132097),registration_grade(r83,_G132102),registration_grade(r84,_G132107),registration_grade(r85,b),registration_grade(r86,_G132117),registration_grade(r87,b),registration_grade(r88,_G132127),registration_grade(r89,_G132132),registration_grade(r90,_G132137),registration_grade(r91,a),registration_grade(r92,_G132147),registration_grade(r93,_G132152),registration_grade(r94,_G132157),registration_grade(r95,_G132162),registration_grade(r96,_G132167),registration_grade(r97,a),registration_grade(r98,b),registration_grade(r99,b),registration_grade(r100,a),registration_grade(r101,a),registration_grade(r102,a),registration_grade(r103,_G132202),registration_grade(r104,_G132207),registration_grade(r105,c),registration_grade(r106,b),registration_grade(r107,b),registration_grade(r108,_G132227),registration_grade(r109,_G132232),registration_grade(r110,a),registration_grade(r111,_G132242),registration_grade(r112,_G132247),registration_grade(r113,_G132252),registration_grade(r114,_G132257),registration_grade(r115,d),registration_grade(r116,b),registration_grade(r117,_G132272),registration_grade(r118,_G132277),registration_grade(r119,b),registration_grade(r120,b),registration_grade(r121,_G132292),registration_grade(r122,_G132297),registration_grade(r123,a),registration_grade(r124,a),registration_grade(r125,_G132312),registration_grade(r126,_G132317),registration_grade(r127,b),registration_grade(r128,a),registration_grade(r129,c),registration_grade(r130,a),registration_grade(r131,a),registration_grade(r132,b),registration_grade(r133,_G132352),registration_grade(r134,_G132357),registration_grade(r135,_G132362),registration_grade(r136,_G132367),registration_grade(r137,b),registration_grade(r138,a),registration_grade(r139,_G132382),registration_grade(r140,_G132387),registration_grade(r141,b),registration_grade(r142,_G132397),registration_grade(r143,b),registration_grade(r144,c),registration_grade(r145,b),registration_grade(r146,_G132417),registration_grade(r147,_G132422),registration_grade(r148,_G132427),registration_grade(r149,a),registration_grade(r150,_G132437),registration_grade(r151,a),registration_grade(r152,_G132447),registration_grade(r153,_G132452),registration_grade(r154,a),registration_grade(r155,c),registration_grade(r156,b),registration_grade(r157,b),registration_grade(r158,c),registration_grade(r159,b),registration_grade(r160,a),registration_grade(r161,_G132492),registration_grade(r162,_G132497),registration_grade(r163,_G132502),registration_grade(r164,b),registration_grade(r165,b),registration_grade(r166,_G132517),registration_grade(r167,a),registration_grade(r168,a),registration_grade(r169,_G132532),registration_grade(r170,_G132537),registration_grade(r171,a),registration_grade(r172,c),registration_grade(r173,b),registration_grade(r174,_G132557),registration_grade(r175,_G132562),registration_grade(r176,b),registration_grade(r177,c),registration_grade(r178,b),registration_grade(r179,d),registration_grade(r180,c),registration_grade(r181,a),registration_grade(r182,b),registration_grade(r183,a),registration_grade(r184,_G132607),registration_grade(r185,_G132612),registration_grade(r186,c),registration_grade(r187,a),registration_grade(r188,a),registration_grade(r189,_G132632),registration_grade(r190,_G132637),registration_grade(r191,_G132642),registration_grade(r192,b),registration_grade(r193,c),registration_grade(r194,b),registration_grade(r195,_G132662),registration_grade(r196,_G132667),registration_grade(r197,_G132672),registration_grade(r198,_G132677),registration_grade(r199,b),registration_grade(r200,_G132687),registration_grade(r201,c),registration_grade(r202,a),registration_grade(r203,_G132702),registration_grade(r204,_G132707),registration_grade(r205,_G132712),registration_grade(r206,a),registration_grade(r207,a),registration_grade(r208,_G132727),registration_grade(r209,b),registration_grade(r210,a),registration_grade(r211,d),registration_grade(r212,_G132747),registration_grade(r213,_G132752),registration_grade(r214,_G132757),registration_grade(r215,a),registration_grade(r216,_G132767),registration_grade(r217,_G132772),registration_grade(r218,_G132777),registration_grade(r219,_G132782),registration_grade(r220,_G132787),registration_grade(r221,b),registration_grade(r222,c),registration_grade(r223,_G132802),registration_grade(r224,_G132807),registration_grade(r225,b),registration_grade(r226,d),registration_grade(r227,b),registration_grade(r228,c),registration_grade(r229,b),registration_grade(r230,a),registration_grade(r231,_G132842),registration_grade(r232,_G132847),registration_grade(r233,b),registration_grade(r234,_G132857),registration_grade(r235,c),registration_grade(r236,b),registration_grade(r237,_G132872),registration_grade(r238,d),registration_grade(r239,b),registration_grade(r240,b),registration_grade(r241,_G132892),registration_grade(r242,b),registration_grade(r243,_G132902),registration_grade(r244,b),registration_grade(r245,a),registration_grade(r246,b),registration_grade(r247,_G132922),registration_grade(r248,b),registration_grade(r249,_G132932),registration_grade(r250,a),registration_grade(r251,_G132942),registration_grade(r252,b),registration_grade(r253,_G132952),registration_grade(r254,_G132957),registration_grade(r255,_G132962),registration_grade(r256,_G132967),registration_grade(r257,b),registration_grade(r258,_G132977),registration_grade(r259,a),registration_grade(r260,b),registration_grade(r261,a),registration_grade(r262,_G132997),registration_grade(r263,_G133002),registration_grade(r264,_G133007),registration_grade(r265,a),registration_grade(r266,_G133017),registration_grade(r267,_G133022),registration_grade(r268,c),registration_grade(r269,a),registration_grade(r270,_G133037),registration_grade(r271,_G133042),registration_grade(r272,_G133047),registration_grade(r273,b),registration_grade(r274,c),registration_grade(r275,a),registration_grade(r276,a),registration_grade(r277,_G133072),registration_grade(r278,_G133077),registration_grade(r279,_G133082),registration_grade(r280,_G133087),registration_grade(r281,b),registration_grade(r282,d),registration_grade(r283,_G133102),registration_grade(r284,b),registration_grade(r285,_G133112),registration_grade(r286,_G133117),registration_grade(r287,_G133122),registration_grade(r288,_G133127),registration_grade(r289,_G133132),registration_grade(r290,b),registration_grade(r291,c),registration_grade(r292,_G133147),registration_grade(r293,_G133152),registration_grade(r294,_G133157),registration_grade(r295,a),registration_grade(r296,b),registration_grade(r297,_G133172),registration_grade(r298,a),registration_grade(r299,a),registration_grade(r300,_G133187),registration_grade(r301,b),registration_grade(r302,b),registration_grade(r303,_G133202),registration_grade(r304,a),registration_grade(r305,_G133212),registration_grade(r306,_G133217),registration_grade(r307,_G133222),registration_grade(r308,c),registration_grade(r309,_G133232),registration_grade(r310,a),registration_grade(r311,a),registration_grade(r312,a),registration_grade(r313,_G133252),registration_grade(r314,_G133257),registration_grade(r315,c),registration_grade(r316,_G133267),registration_grade(r317,_G133272),registration_grade(r318,c),registration_grade(r319,c),registration_grade(r320,b),registration_grade(r321,b),registration_grade(r322,_G133297),registration_grade(r323,c),registration_grade(r324,b),registration_grade(r325,b),registration_grade(r326,_G133317),registration_grade(r327,c),registration_grade(r328,b),registration_grade(r329,_G133332),registration_grade(r330,_G133337),registration_grade(r331,_G133342),registration_grade(r332,_G133347),registration_grade(r333,_G133352),registration_grade(r334,_G133357),registration_grade(r335,d),registration_grade(r336,b),registration_grade(r337,b),registration_grade(r338,b),registration_grade(r339,_G133382),registration_grade(r340,_G133387),registration_grade(r341,_G133392),registration_grade(r342,_G133397),registration_grade(r343,a),registration_grade(r344,c),registration_grade(r345,_G133412),registration_grade(r346,b),registration_grade(r347,_G133422),registration_grade(r348,a),registration_grade(r349,a),registration_grade(r350,b),registration_grade(r351,b),registration_grade(r352,_G133447),registration_grade(r353,_G133452),registration_grade(r354,_G133457),registration_grade(r355,_G133462),registration_grade(r356,b),registration_grade(r357,b),registration_grade(r358,_G133477),registration_grade(r359,a),registration_grade(r360,_G133487),registration_grade(r361,_G133492),registration_grade(r362,c),registration_grade(r363,_G133502),registration_grade(r364,b),registration_grade(r365,_G133512),registration_grade(r366,b),registration_grade(r367,_G133522),registration_grade(r368,a),registration_grade(r369,c),registration_grade(r370,b),registration_grade(r371,_G133542),registration_grade(r372,_G133547),registration_grade(r373,_G133552),registration_grade(r374,b),registration_grade(r375,b),registration_grade(r376,a),registration_grade(r377,a),registration_grade(r378,a),registration_grade(r379,_G133582),registration_grade(r380,_G133587),registration_grade(r381,c),registration_grade(r382,_G133597),registration_grade(r383,_G133602),registration_grade(r384,b),registration_grade(r385,_G133612),registration_grade(r386,d),registration_grade(r387,_G133622),registration_grade(r388,_G133627),registration_grade(r389,a),registration_grade(r390,_G133637),registration_grade(r391,_G133642),registration_grade(r392,_G133647),registration_grade(r393,b),registration_grade(r394,c),registration_grade(r395,b),registration_grade(r396,_G133667),registration_grade(r397,a),registration_grade(r398,_G133677),registration_grade(r399,_G133682),registration_grade(r400,_G133687),registration_grade(r401,c),registration_grade(r402,_G133697),registration_grade(r403,_G133702),registration_grade(r404,a),registration_grade(r405,_G133712),registration_grade(r406,_G133717),registration_grade(r407,_G133722),registration_grade(r408,a),registration_grade(r409,a),registration_grade(r410,b),registration_grade(r411,b),registration_grade(r412,_G133747),registration_grade(r413,a),registration_grade(r414,_G133757),registration_grade(r415,_G133762),registration_grade(r416,_G133767),registration_grade(r417,_G133772),registration_grade(r418,a),registration_grade(r419,a),registration_grade(r420,a),registration_grade(r421,c),registration_grade(r422,b),registration_grade(r423,_G133802),registration_grade(r424,a),registration_grade(r425,b),registration_grade(r426,c),registration_grade(r427,c),registration_grade(r428,_G133827),registration_grade(r429,c),registration_grade(r430,_G133837),registration_grade(r431,_G133842),registration_grade(r432,c),registration_grade(r433,_G133852),registration_grade(r434,a),registration_grade(r435,_G133862),registration_grade(r436,_G133867),registration_grade(r437,c),registration_grade(r438,b),registration_grade(r439,_G133882),registration_grade(r440,c),registration_grade(r441,a),registration_grade(r442,c),registration_grade(r443,_G133902),registration_grade(r444,_G133907),registration_grade(r445,_G133912),registration_grade(r446,_G133917),registration_grade(r447,d),registration_grade(r448,_G133927),registration_grade(r449,b),registration_grade(r450,_G133937),registration_grade(r451,_G133942),registration_grade(r452,b),registration_grade(r453,_G133952),registration_grade(r454,_G133957),registration_grade(r455,_G133962),registration_grade(r456,c),registration_grade(r457,_G133972),registration_grade(r458,_G133977),registration_grade(r459,_G133982),registration_grade(r460,_G133987),registration_grade(r461,_G133992),registration_grade(r462,a),registration_grade(r463,d),registration_grade(r464,a),registration_grade(r465,_G134012),registration_grade(r466,_G134017),registration_grade(r467,b),registration_grade(r468,_G134027),registration_grade(r469,_G134032),registration_grade(r470,_G134037),registration_grade(r471,_G134042),registration_grade(r472,a),registration_grade(r473,c),registration_grade(r474,b),registration_grade(r475,_G134062),registration_grade(r476,_G134067),registration_grade(r477,b),registration_grade(r478,a),registration_grade(r479,b),registration_grade(r480,a),registration_grade(r481,_G134092),registration_grade(r482,b),registration_grade(r483,a),registration_grade(r484,_G134107),registration_grade(r485,_G134112),registration_grade(r486,_G134117),registration_grade(r487,_G134122),registration_grade(r488,a),registration_grade(r489,_G134132),registration_grade(r490,_G134137),registration_grade(r491,c),registration_grade(r492,b),registration_grade(r493,a),registration_grade(r494,_G134157),registration_grade(r495,_G134162),registration_grade(r496,_G134167),registration_grade(r497,c),registration_grade(r498,_G134177),registration_grade(r499,c),registration_grade(r500,b),registration_grade(r501,_G134192),registration_grade(r502,a),registration_grade(r503,_G134202),registration_grade(r504,_G134207),registration_grade(r505,_G134212),registration_grade(r506,c),registration_grade(r507,a),registration_grade(r508,_G134227),registration_grade(r509,_G134232),registration_grade(r510,_G134237),registration_grade(r511,_G134242),registration_grade(r512,b),registration_grade(r513,_G134252),registration_grade(r514,_G134257),registration_grade(r515,c),registration_grade(r516,_G134267),registration_grade(r517,_G134272),registration_grade(r518,_G134277),registration_grade(r519,a),registration_grade(r520,b),registration_grade(r521,a),registration_grade(r522,b),registration_grade(r523,_G134302),registration_grade(r524,b),registration_grade(r525,c),registration_grade(r526,c),registration_grade(r527,c),registration_grade(r528,a),registration_grade(r529,_G134332),registration_grade(r530,a),registration_grade(r531,_G134342),registration_grade(r532,a),registration_grade(r533,_G134352),registration_grade(r534,b),registration_grade(r535,c),registration_grade(r536,a),registration_grade(r537,_G134372),registration_grade(r538,_G134377),registration_grade(r539,_G134382),registration_grade(r540,_G134387),registration_grade(r541,c),registration_grade(r542,a),registration_grade(r543,a),registration_grade(r544,b),registration_grade(r545,a),registration_grade(r546,b),registration_grade(r547,_G134422),registration_grade(r548,c),registration_grade(r549,_G134432),registration_grade(r550,a),registration_grade(r551,_G134442),registration_grade(r552,c),registration_grade(r553,_G134452),registration_grade(r554,b),registration_grade(r555,_G134462),registration_grade(r556,_G134467),registration_grade(r557,_G134472),registration_grade(r558,_G134477),registration_grade(r559,b),registration_grade(r560,_G134487),registration_grade(r561,a),registration_grade(r562,_G134497),registration_grade(r563,_G134502),registration_grade(r564,_G134507),registration_grade(r565,d),registration_grade(r566,c),registration_grade(r567,a),registration_grade(r568,a),registration_grade(r569,_G134532),registration_grade(r570,_G134537),registration_grade(r571,_G134542),registration_grade(r572,b),registration_grade(r573,a),registration_grade(r574,_G134557),registration_grade(r575,a),registration_grade(r576,_G134567),registration_grade(r577,_G134572),registration_grade(r578,b),registration_grade(r579,a),registration_grade(r580,_G134587),registration_grade(r581,_G134592),registration_grade(r582,_G134597),registration_grade(r583,_G134602),registration_grade(r584,a),registration_grade(r585,c),registration_grade(r586,b),registration_grade(r587,_G134622),registration_grade(r588,_G134627),registration_grade(r589,c),registration_grade(r590,_G134637),registration_grade(r591,c),registration_grade(r592,b),registration_grade(r593,_G134652),registration_grade(r594,c),registration_grade(r595,b),registration_grade(r596,_G134667),registration_grade(r597,_G134672),registration_grade(r598,a),registration_grade(r599,_G134682),registration_grade(r600,a),registration_grade(r601,b),registration_grade(r602,_G134697),registration_grade(r603,d),registration_grade(r604,_G134707),registration_grade(r605,a),registration_grade(r606,_G134717),registration_grade(r607,_G134722),registration_grade(r608,a),registration_grade(r609,b),registration_grade(r610,_G134737),registration_grade(r611,_G134742),registration_grade(r612,c),registration_grade(r613,_G134752),registration_grade(r614,_G134757),registration_grade(r615,b),registration_grade(r616,_G134767),registration_grade(r617,a),registration_grade(r618,_G134777),registration_grade(r619,_G134782),registration_grade(r620,a),registration_grade(r621,_G134792),registration_grade(r622,b),registration_grade(r623,_G134802),registration_grade(r624,a),registration_grade(r625,_G134812),registration_grade(r626,a),registration_grade(r627,_G134822),registration_grade(r628,a),registration_grade(r629,_G134832),registration_grade(r630,_G134837),registration_grade(r631,_G134842),registration_grade(r632,a),registration_grade(r633,_G134852),registration_grade(r634,b),registration_grade(r635,_G134862),registration_grade(r636,d),registration_grade(r637,c),registration_grade(r638,a),registration_grade(r639,b),registration_grade(r640,_G134887),registration_grade(r641,_G134892),registration_grade(r642,c),registration_grade(r643,_G134902),registration_grade(r644,_G134907),registration_grade(r645,_G134912),registration_grade(r646,_G134917),registration_grade(r647,b),registration_grade(r648,a),registration_grade(r649,_G134932),registration_grade(r650,c),registration_grade(r651,b),registration_grade(r652,b),registration_grade(r653,_G134952),registration_grade(r654,b),registration_grade(r655,a),registration_grade(r656,_G134967),registration_grade(r657,a),registration_grade(r658,a),registration_grade(r659,a),registration_grade(r660,a),registration_grade(r661,c),registration_grade(r662,_G134997),registration_grade(r663,a),registration_grade(r664,_G135007),registration_grade(r665,a),registration_grade(r666,b),registration_grade(r667,_G135022),registration_grade(r668,d),registration_grade(r669,b),registration_grade(r670,a),registration_grade(r671,_G135042),registration_grade(r672,c),registration_grade(r673,a),registration_grade(r674,_G135057),registration_grade(r675,_G135062),registration_grade(r676,a),registration_grade(r677,a),registration_grade(r678,a),registration_grade(r679,a),registration_grade(r680,_G135087),registration_grade(r681,_G135092),registration_grade(r682,_G135097),registration_grade(r683,b),registration_grade(r684,_G135107),registration_grade(r685,_G135112),registration_grade(r686,b),registration_grade(r687,a),registration_grade(r688,c),registration_grade(r689,_G135132),registration_grade(r690,a),registration_grade(r691,_G135142),registration_grade(r692,_G135147),registration_grade(r693,b),registration_grade(r694,_G135157),registration_grade(r695,_G135162),registration_grade(r696,a),registration_grade(r697,_G135172),registration_grade(r698,_G135177),registration_grade(r699,_G135182),registration_grade(r700,a),registration_grade(r701,_G135192),registration_grade(r702,a),registration_grade(r703,_G135202),registration_grade(r704,c),registration_grade(r705,b),registration_grade(r706,_G135217),registration_grade(r707,a),registration_grade(r708,b),registration_grade(r709,_G135232),registration_grade(r710,_G135237),registration_grade(r711,b),registration_grade(r712,_G135247),registration_grade(r713,a),registration_grade(r714,_G135257),registration_grade(r715,a),registration_grade(r716,a),registration_grade(r717,a),registration_grade(r718,a),registration_grade(r719,_G135282),registration_grade(r720,_G135287),registration_grade(r721,_G135292),registration_grade(r722,_G135297),registration_grade(r723,_G135302),registration_grade(r724,_G135307),registration_grade(r725,c),registration_grade(r726,a),registration_grade(r727,_G135322),registration_grade(r728,b),registration_grade(r729,_G135332),registration_grade(r730,_G135337),registration_grade(r731,_G135342),registration_grade(r732,a),registration_grade(r733,a),registration_grade(r734,b),registration_grade(r735,_G135362),registration_grade(r736,a),registration_grade(r737,_G135372),registration_grade(r738,_G135377),registration_grade(r739,a),registration_grade(r740,_G135387),registration_grade(r741,_G135392),registration_grade(r742,_G135397),registration_grade(r743,_G135402),registration_grade(r744,a),registration_grade(r745,b),registration_grade(r746,_G135417),registration_grade(r747,_G135422),registration_grade(r748,b),registration_grade(r749,c),registration_grade(r750,_G135437),registration_grade(r751,c),registration_grade(r752,_G135447),registration_grade(r753,c),registration_grade(r754,_G135457),registration_grade(r755,c),registration_grade(r756,_G135467),registration_grade(r757,_G135472),registration_grade(r758,b),registration_grade(r759,_G135482),registration_grade(r760,_G135487),registration_grade(r761,a),registration_grade(r762,_G135497),registration_grade(r763,a),registration_grade(r764,a),registration_grade(r765,a),registration_grade(r766,_G135517),registration_grade(r767,c),registration_grade(r768,_G135527),registration_grade(r769,_G135532),registration_grade(r770,b),registration_grade(r771,_G135542),registration_grade(r772,a),registration_grade(r773,b),registration_grade(r774,b),registration_grade(r775,a),registration_grade(r776,_G135567),registration_grade(r777,c),registration_grade(r778,c),registration_grade(r779,b),registration_grade(r780,a),registration_grade(r781,_G135592),registration_grade(r782,a),registration_grade(r783,_G135602),registration_grade(r784,_G135607),registration_grade(r785,_G135612),registration_grade(r786,c),registration_grade(r787,a),registration_grade(r788,_G135627),registration_grade(r789,_G135632),registration_grade(r790,b),registration_grade(r791,b),registration_grade(r792,_G135647),registration_grade(r793,_G135652),registration_grade(r794,_G135657),registration_grade(r795,_G135662),registration_grade(r796,_G135667),registration_grade(r797,a),registration_grade(r798,_G135677),registration_grade(r799,_G135682),registration_grade(r800,_G135687),registration_grade(r801,b),registration_grade(r802,_G135697),registration_grade(r803,b),registration_grade(r804,_G135707),registration_grade(r805,_G135712),registration_grade(r806,_G135717),registration_grade(r807,a),registration_grade(r808,_G135727),registration_grade(r809,_G135732),registration_grade(r810,_G135737),registration_grade(r811,d),registration_grade(r812,c),registration_grade(r813,_G135752),registration_grade(r814,c),registration_grade(r815,_G135762),registration_grade(r816,_G135767),registration_grade(r817,a),registration_grade(r818,_G135777),registration_>grade(r819,b),registration_grade(r820,d),registration_grade(r821,b),registration_grade(r822,_G135797),registration_grade(r823,a),registration_grade(r824,_G135807),registration_grade(r825,b),registration_grade(r826,b),registration_grade(r827,_G135822),registration_grade(r828,_G135827),registration_grade(r829,b),registration_grade(r830,_G135837),registration_grade(r831,_G135842),registration_grade(r832,b),registration_grade(r833,b),registration_grade(r834,_G135857),registration_grade(r835,a),registration_grade(r836,a),registration_grade(r837,c),registration_grade(r838,_G135877),registration_grade(r839,b),registration_grade(r840,b),registration_grade(r841,a),registration_grade(r842,a),registration_grade(r843,b),registration_grade(r844,_G135907),registration_grade(r845,c),registration_grade(r846,b),registration_grade(r847,b),registration_grade(r848,_G135927),registration_grade(r849,_G135932),registration_grade(r850,_G135937),registration_grade(r851,_G135942),registration_grade(r852,_G135947),registration_grade(r853,_G135952),registration_grade(r854,_G135957),registration_grade(r855,_G135962),registration_grade(r856,_G135967),student_intelligence(s0,l),student_intelligence(s1,_G135977),student_intelligence(s2,_G135982),student_intelligence(s3,h),student_intelligence(s4,h),student_intelligence(s5,h),student_intelligence(s6,m),student_intelligence(s7,h),student_intelligence(s8,h),student_intelligence(s9,_G136017),student_intelligence(s10,m),student_intelligence(s11,_G136027),student_intelligence(s12,h),student_intelligence(s13,h),student_intelligence(s14,_G136042),student_intelligence(s15,_G136047),student_intelligence(s16,_G136052),student_intelligence(s17,m),student_intelligence(s18,m),student_intelligence(s19,_G136067),student_intelligence(s20,m),student_intelligence(s21,_G136077),student_intelligence(s22,h),student_intelligence(s23,_G136087),student_intelligence(s24,_G136092),student_intelligence(s25,h),student_intelligence(s26,_G136102),student_intelligence(s27,m),student_intelligence(s28,m),student_intelligence(s29,_G136117),student_intelligence(s30,h),student_intelligence(s31,m),student_intelligence(s32,m),student_intelligence(s33,_G136137),student_intelligence(s34,l),student_intelligence(s35,m),student_intelligence(s36,l),student_intelligence(s37,_G136157),student_intelligence(s38,_G136162),student_intelligence(s39,h),student_intelligence(s40,h),student_intelligence(s41,m),student_intelligence(s42,_G136182),student_intelligence(s43,_G136187),student_intelligence(s44,_G136192),student_intelligence(s45,_G136197),student_intelligence(s46,l),student_intelligence(s47,h),student_intelligence(s48,_G136212),student_intelligence(s49,_G136217),student_intelligence(s50,_G136222),student_intelligence(s51,_G136227),student_intelligence(s52,_G136232),student_intelligence(s53,m),student_intelligence(s54,_G136242),student_intelligence(s55,h),student_intelligence(s56,l),student_intelligence(s57,_G136257),student_intelligence(s58,h),student_intelligence(s59,_G136267),student_intelligence(s60,m),student_intelligence(s61,h),student_intelligence(s62,_G136282),student_intelligence(s63,_G136287),student_intelligence(s64,l),student_intelligence(s65,_G136297),student_intelligence(s66,h),student_intelligence(s67,m),student_intelligence(s68,_G136312),student_intelligence(s69,_G136317),student_intelligence(s70,_G136322),student_intelligence(s71,m),student_intelligence(s72,_G136332),student_intelligence(s73,_G136337),student_intelligence(s74,_G136342),student_intelligence(s75,h),student_intelligence(s76,h),student_intelligence(s77,h),student_intelligence(s78,_G136362),student_intelligence(s79,m),student_intelligence(s80,_G136372),student_intelligence(s81,_G136377),student_intelligence(s82,_G136382),student_intelligence(s83,_G136387),student_intelligence(s84,_G136392),student_intelligence(s85,_G136397),student_intelligence(s86,_G136402),student_intelligence(s87,h),student_intelligence(s88,h),student_intelligence(s89,_G136417),student_intelligence(s90,h),student_intelligence(s91,_G136427),student_intelligence(s92,h),student_intelligence(s93,_G136437),student_intelligence(s94,_G136442),student_intelligence(s95,_G136447),student_intelligence(s96,_G136452),student_intelligence(s97,_G136457),student_intelligence(s98,_G136462),student_intelligence(s99,l),student_intelligence(s100,h),student_intelligence(s101,_G136477),student_intelligence(s102,m),student_intelligence(s103,h),student_intelligence(s104,l),student_intelligence(s105,m),student_intelligence(s106,_G136502),student_intelligence(s107,l),student_intelligence(s108,m),student_intelligence(s109,_G136517),student_intelligence(s110,m),student_intelligence(s111,h),student_intelligence(s112,m),student_intelligence(s113,h),student_intelligence(s114,_G136542),student_intelligence(s115,h),student_intelligence(s116,_G136552),student_intelligence(s117,m),student_intelligence(s118,_G136562),student_intelligence(s119,h),student_intelligence(s120,h),student_intelligence(s121,_G136577),student_intelligence(s122,m),student_intelligence(s123,_G136587),student_intelligence(s124,h),student_intelligence(s125,_G136597),student_intelligence(s126,m),student_intelligence(s127,m),student_intelligence(s128,_G136612),student_intelligence(s129,h),student_intelligence(s130,_G136622),student_intelligence(s131,h),student_intelligence(s132,_G136632),student_intelligence(s133,_G136637),student_intelligence(s134,h),student_intelligence(s135,_G136647),student_intelligence(s136,m),student_intelligence(s137,m),student_intelligence(s138,l),student_intelligence(s139,h),student_intelligence(s140,_G136672),student_intelligence(s141,_G136677),student_intelligence(s142,_G136682),student_intelligence(s143,_G136687),student_intelligence(s144,h),student_intelligence(s145,h),student_intelligence(s146,m),student_intelligence(s147,m),student_intelligence(s148,_G136712),student_intelligence(s149,_G136717),student_intelligence(s150,l),student_intelligence(s151,h),student_intelligence(s152,h),student_intelligence(s153,_G136737),student_intelligence(s154,_G136742),student_intelligence(s155,_G136747),student_intelligence(s156,m),student_intelligence(s157,m),student_intelligence(s158,h),student_intelligence(s159,_G136767),student_intelligence(s160,_G136772),student_intelligence(s161,_G136777),student_intelligence(s162,h),student_intelligence(s163,m),student_intelligence(s164,_G136792),student_intelligence(s165,m),student_intelligence(s166,m),student_intelligence(s167,_G136807),student_intelligence(s168,_G136812),student_intelligence(s169,_G136817),student_intelligence(s170,_G136822),student_intelligence(s171,m),student_intelligence(s172,_G136832),student_intelligence(s173,h),student_intelligence(s174,h),student_intelligence(s175,_G136847),student_intelligence(s176,_G136852),student_intelligence(s177,m),student_intelligence(s178,_G136862),student_intelligence(s179,m),student_intelligence(s180,m),student_intelligence(s181,h),student_intelligence(s182,m),student_intelligence(s183,h),student_intelligence(s184,_G136892),student_intelligence(s185,m),student_intelligence(s186,m),student_intelligence(s187,m),student_intelligence(s188,_G136912),student_intelligence(s189,m),student_intelligence(s190,h),student_intelligence(s191,l),student_intelligence(s192,_G136932),student_intelligence(s193,m),student_intelligence(s194,m),student_intelligence(s195,_G136947),student_intelligence(s196,h),student_intelligence(s197,_G136957),student_intelligence(s198,h),student_intelligence(s199,m),student_intelligence(s200,h),student_intelligence(s201,_G136977),student_intelligence(s202,h),student_intelligence(s203,m),student_intelligence(s204,h),student_intelligence(s205,_G136997),student_intelligence(s206,_G137002),student_intelligence(s207,h),student_intelligence(s208,_G137012),student_intelligence(s209,h),student_intelligence(s210,_G137022),student_intelligence(s211,_G137027),student_intelligence(s212,m),student_intelligence(s213,h),student_intelligence(s214,h),student_intelligence(s215,_G137047),student_intelligence(s216,h),student_intelligence(s217,_G137057),student_intelligence(s218,h),student_intelligence(s219,_G137067),student_intelligence(s220,_G137072),student_intelligence(s221,h),student_intelligence(s222,_G137082),student_intelligence(s223,_G137087),student_intelligence(s224,l),student_intelligence(s225,l),student_intelligence(s226,m),student_intelligence(s227,_G137107),student_intelligence(s228,h),student_intelligence(s229,_G137117),student_intelligence(s230,_G137122),student_intelligence(s231,_G137127),student_intelligence(s232,m),student_intelligence(s233,_G137137),student_intelligence(s234,_G137142),student_intelligence(s235,_G137147),student_intelligence(s236,_G137152),student_intelligence(s237,h),student_intelligence(s238,h),student_intelligence(s239,h),student_intelligence(s240,_G137172),student_intelligence(s241,_G137177),student_intelligence(s242,l),student_intelligence(s243,_G137187),student_intelligence(s244,_G137192),student_intelligence(s245,l),student_intelligence(s246,_G137202),student_intelligence(s247,h),student_intelligence(s248,m),student_intelligence(s249,_G137217),student_intelligence(s250,m),student_intelligence(s251,_G137227),student_intelligence(s252,_G137232),student_intelligence(s253,m),student_intelligence(s254,_G137242),student_intelligence(s255,m),course_difficulty(c0,_G137252),course_difficulty(c1,m),course_difficulty(c2,_G137262),course_difficulty(c3,_G137267),course_difficulty(c4,_G137272),course_difficulty(c5,l),course_difficulty(c6,m),course_difficulty(c7,h),course_difficulty(c8,h),course_difficulty(c9,_G137297),course_difficulty(c10,m),course_difficulty(c11,_G137307),course_difficulty(c12,m),course_difficulty(c13,_G137317),course_difficulty(c14,m),course_difficulty(c15,_G137327),course_difficulty(c16,l),course_difficulty(c17,h),course_difficulty(c18,_G137342),course_difficulty(c19,l),course_difficulty(c20,_G137352),course_difficulty(c21,_G137357),course_difficulty(c22,_G137362),course_difficulty(c23,_G137367),course_difficulty(c24,_G137372),course_difficulty(c25,m),course_difficulty(c26,_G137382),course_difficulty(c27,_G137387),course_difficulty(c28,m),course_difficulty(c29,_G137397),course_difficulty(c30,_G137402),course_difficulty(c31,m),course_difficulty(c32,l),course_difficulty(c33,m),course_difficulty(c34,_G137422),course_difficulty(c35,_G137427),course_difficulty(c36,h),course_difficulty(c37,m),course_difficulty(c38,m),course_difficulty(c39,_G137447),course_difficulty(c40,h),course_difficulty(c41,_G137457),course_difficulty(c42,_G137462),course_difficulty(c43,m),course_difficulty(c44,m),course_difficulty(c45,_G137477),course_difficulty(c46,m),course_difficulty(c47,_G137487),course_difficulty(c48,m),course_difficulty(c49,l),course_difficulty(c50,_G137502),course_difficulty(c51,h),course_difficulty(c52,_G137512),course_difficulty(c53,_G137517),course_difficulty(c54,_G137522),course_difficulty(c55,h),course_difficulty(c56,_G137532),course_difficulty(c57,_G137537),course_difficulty(c58,_G137542),course_difficulty(c59,m),course_difficulty(c60,_G137552),course_difficulty(c61,m),course_difficulty(c62,l),course_difficulty(c63,_G137567),registration_satisfaction(r0,_G137572),registration_satisfaction(r1,l),registration_satisfaction(r2,_G137582),registration_satisfaction(r3,_G137587),registration_satisfaction(r4,h),registration_satisfaction(r5,h),registration_satisfaction(r6,_G137602),registration_satisfaction(r7,h),registration_satisfaction(r8,_G137612),registration_satisfaction(r9,h),registration_satisfaction(r10,_G137622),registration_satisfaction(r11,_G137627),registration_satisfaction(r12,_G137632),registration_satisfaction(r13,h),registration_satisfaction(r14,m),registration_satisfaction(r15,h),registration_satisfaction(r16,h),registration_satisfaction(r17,l),registration_satisfaction(r18,l),registration_satisfaction(r19,_G137667),registration_satisfaction(r20,_G137672),registration_satisfaction(r21,_G137677),registration_satisfaction(r22,h),registration_satisfaction(r23,_G137687),registration_satisfaction(r24,_G137692),registration_satisfaction(r25,_G137697),registration_satisfaction(r26,_G137702),registration_satisfaction(r27,_G137707),registration_satisfaction(r28,h),registration_satisfaction(r29,_G137717),registration_satisfaction(r30,l),registration_satisfaction(r31,_G137727),registration_satisfaction(r32,_G137732),registration_satisfaction(r33,h),registration_satisfaction(r34,_G137742),registration_satisfaction(r35,h),registration_satisfaction(r36,m),registration_satisfaction(r37,h),registration_satisfaction(r38,_G137762),registration_satisfaction(r39,h),registration_satisfaction(r40,_G137772),registration_satisfaction(r41,_G137777),registration_satisfaction(r42,_G137782),registration_satisfaction(r43,h),registration_satisfaction(r44,_G137792),registration_satisfaction(r45,h),registration_satisfaction(r46,m),registration_satisfaction(r47,_G137807),registration_satisfaction(r48,_G137812),registration_satisfaction(r49,h),registration_satisfaction(r50,_G137822),registration_satisfaction(r51,_G137827),registration_satisfaction(r52,h),registration_satisfaction(r53,_G137837),registration_satisfaction(r54,h),registration_satisfaction(r55,h),registration_satisfaction(r56,_G137852),registration_satisfaction(r57,h),registration_satisfaction(r58,_G137862),registration_satisfaction(r59,_G137867),registration_satisfaction(r60,h),registration_satisfaction(r61,h),registration_satisfaction(r62,h),registration_satisfaction(r63,h),registration_satisfaction(r64,h),registration_satisfaction(r65,h),registration_satisfaction(r66,h),registration_satisfaction(r67,_G137907),registration_satisfaction(r68,h),registration_satisfaction(r69,m),registration_satisfaction(r70,_G137922),registration_satisfaction(r71,_G137927),registration_satisfaction(r72,_G137932),registration_satisfaction(r73,h),registration_satisfaction(r74,h),registration_satisfaction(r75,h),registration_satisfaction(r76,_G137952),registration_satisfaction(r77,_G137957),registration_satisfaction(r78,m),registration_satisfaction(r79,h),registration_satisfaction(r80,h),registration_satisfaction(r81,h),registration_satisfaction(r82,l),registration_satisfaction(r83,_G137987),registration_satisfaction(r84,m),registration_satisfaction(r85,h),registration_satisfaction(r86,_G138002),registration_satisfaction(r87,_G138007),registration_satisfaction(r88,h),registration_satisfaction(r89,_G138017),registration_satisfaction(r90,_G138022),registration_satisfaction(r91,h),registration_satisfaction(r92,_G138032),registration_satisfaction(r93,_G138037),registration_satisfaction(r94,l),registration_satisfaction(r95,_G138047),registration_satisfaction(r96,h),registration_satisfaction(r97,_G138057),registration_satisfaction(r98,h),registration_satisfaction(r99,h),registration_satisfaction(r100,_G138072),registration_satisfaction(r101,_G138077),registration_satisfaction(r102,h),registration_satisfaction(r103,h),registration_satisfaction(r104,h),registration_satisfaction(r105,_G138097),registration_satisfaction(r106,_G138102),registration_satisfaction(r107,l),registration_satisfaction(r108,l),registration_satisfaction(r109,h),registration_satisfaction(r110,_G138122),registration_satisfaction(r111,h),registration_satisfaction(r112,_G138132),registration_satisfaction(r113,_G138137),registration_satisfaction(r114,m),registration_satisfaction(r115,_G138147),registration_satisfaction(r116,h),registration_satisfaction(r117,_G138157),registration_satisfaction(r118,h),registration_satisfaction(r119,h),registration_satisfaction(r120,l),registration_satisfaction(r121,_G138177),registration_satisfaction(r122,_G138182),registration_satisfaction(r123,l),registration_satisfaction(r124,_G138192),registration_satisfaction(r125,m),registration_satisfaction(r126,h),registration_satisfaction(r127,h),registration_satisfaction(r128,h),registration_satisfaction(r129,h),registration_satisfaction(r130,h),registration_satisfaction(r131,_G138227),registration_satisfaction(r132,m),registration_satisfaction(r133,_G138237),registration_satisfaction(r134,m),registration_satisfaction(r135,_G138247),registration_satisfaction(r136,h),registration_satisfaction(r137,h),registration_satisfaction(r138,h),registration_satisfaction(r139,_G138267),registration_satisfaction(r140,h),registration_satisfaction(r141,_G138277),registration_satisfaction(r142,h),registration_satisfaction(r143,h),registration_satisfaction(r144,h),registration_satisfaction(r145,l),registration_satisfaction(r146,_G138302),registration_satisfaction(r147,l),registration_satisfaction(r148,m),registration_satisfaction(r149,h),registration_satisfaction(r150,_G138322),registration_satisfaction(r151,_G138327),registration_satisfaction(r152,h),registration_satisfaction(r153,_G138337),registration_satisfaction(r154,_G138342),registration_satisfaction(r155,m),registration_satisfaction(r156,h),registration_satisfaction(r157,_G138357),registration_satisfaction(r158,l),registration_satisfaction(r159,m),registration_satisfaction(r160,h),registration_satisfaction(r161,_G138377),registration_satisfaction(r162,m),registration_satisfaction(r163,_G138387),registration_satisfaction(r164,m),registration_satisfaction(r165,m),registration_satisfaction(r166,l),registration_satisfaction(r167,_G138407),registration_satisfaction(r168,h),registration_satisfaction(r169,h),registration_satisfaction(r170,_G138422),registration_satisfaction(r171,_G138427),registration_satisfaction(r172,h),registration_satisfaction(r173,_G138437),registration_satisfaction(r174,_G138442),registration_satisfaction(r175,_G138447),registration_satisfaction(r176,h),registration_satisfaction(r177,h),registration_satisfaction(r178,h),registration_satisfaction(r179,l),registration_satisfaction(r180,_G138472),registration_satisfaction(r181,_G138477),registration_satisfaction(r182,_G138482),registration_satisfaction(r183,_G138487),registration_satisfaction(r184,_G138492),registration_satisfaction(r185,_G138497),registration_satisfaction(r186,_G138502),registration_satisfaction(r187,h),registration_satisfaction(r188,m),registration_satisfaction(r189,_G138517),registration_satisfaction(r190,h),registration_satisfaction(r191,h),registration_satisfaction(r192,m),registration_satisfaction(r193,h),registration_satisfaction(r194,_G138542),registration_satisfaction(r195,_G138547),registration_satisfaction(r196,_G138552),registration_satisfaction(r197,h),registration_satisfaction(r198,h),registration_satisfaction(r199,h),registration_satisfaction(r200,_G138572),registration_satisfaction(r201,h),registration_satisfaction(r202,_G138582),registration_satisfaction(r203,_G138587),registration_satisfaction(r204,_G138592),registration_satisfaction(r205,_G138597),registration_satisfaction(r206,h),registration_satisfaction(r207,h),registration_satisfaction(r208,h),registration_satisfaction(r209,h),registration_satisfaction(r210,_G138622),registration_satisfaction(r211,_G138627),registration_satisfaction(r212,h),registration_satisfaction(r213,_G138637),registration_satisfaction(r214,_G138642),registration_satisfaction(r215,h),registration_satisfaction(r216,h),registration_satisfaction(r217,h),registration_satisfaction(r218,m),registration_satisfaction(r219,h),registration_satisfaction(r220,h),registration_satisfaction(r221,_G138677),registration_satisfaction(r222,_G138682),registration_satisfaction(r223,h),registration_satisfaction(r224,h),registration_satisfaction(r225,_G138697),registration_satisfaction(r226,_G138702),registration_satisfaction(r227,h),registration_satisfaction(r228,_G138712),registration_satisfaction(r229,l),registration_satisfaction(r230,h),registration_satisfaction(r231,_G138727),registration_satisfaction(r232,h),registration_satisfaction(r233,m),registration_satisfaction(r234,_G138742),registration_satisfaction(r235,h),registration_satisfaction(r236,_G138752),registration_satisfaction(r237,_G138757),registration_satisfaction(r238,m),registration_satisfaction(r239,m),registration_satisfaction(r240,h),registration_satisfaction(r241,h),registration_satisfaction(r242,m),registration_satisfaction(r243,_G138787),registration_satisfaction(r244,_G138792),registration_satisfaction(r245,_G138797),registration_satisfaction(r246,h),registration_satisfaction(r247,_G138807),registration_satisfaction(r248,_G138812),registration_satisfaction(r249,h),registration_satisfaction(r250,h),registration_satisfaction(r251,h),registration_satisfaction(r252,h),registration_satisfaction(r253,h),registration_satisfaction(r254,h),registration_satisfaction(r255,h),registration_satisfaction(r256,_G138852),registration_satisfaction(r257,m),registration_satisfaction(r258,h),registration_satisfaction(r259,_G138867),registration_satisfaction(r260,_G138872),registration_satisfaction(r261,_G138877),registration_satisfaction(r262,h),registration_satisfaction(r263,m),registration_satisfaction(r264,_G138892),registration_satisfaction(r265,_G138897),registration_satisfaction(r266,l),registration_satisfaction(r267,_G138907),registration_satisfaction(r268,_G138912),registration_satisfaction(r269,_G138917),registration_satisfaction(r270,l),registration_satisfaction(r271,h),registration_satisfaction(r272,_G138932),registration_satisfaction(r273,h),registration_satisfaction(r274,h),registration_satisfaction(r275,_G138947),registration_satisfaction(r276,_G138952),registration_satisfaction(r277,h),registration_satisfaction(r278,h),registration_satisfaction(r279,_G138967),registration_satisfaction(r280,_G138972),registration_satisfaction(r281,_G138977),registration_satisfaction(r282,_G138982),registration_satisfaction(r283,_G138987),registration_satisfaction(r284,_G138992),registration_satisfaction(r285,m),registration_satisfaction(r286,h),registration_satisfaction(r287,_G139007),registration_satisfaction(r288,_G139012),registration_satisfaction(r289,l),registration_satisfaction(r290,m),registration_satisfaction(r291,h),registration_satisfaction(r292,m),registration_satisfaction(r293,_G139037),registration_satisfaction(r294,h),registration_satisfaction(r295,_G139047),registration_satisfaction(r296,_G139052),registration_satisfaction(r297,_G139057),registration_satisfaction(r298,_G139062),registration_satisfaction(r299,_G139067),registration_satisfaction(r300,l),registration_satisfaction(r301,_G139077),registration_satisfaction(r302,_G139082),registration_satisfaction(r303,h),registration_satisfaction(r304,h),registration_satisfaction(r305,_G139097),registration_satisfaction(r306,_G139102),registration_satisfaction(r307,_G139107),registration_satisfaction(r308,l),registration_satisfaction(r309,m),registration_satisfaction(r310,_G139122),registration_satisfaction(r311,_G139127),registration_satisfaction(r312,h),registration_satisfaction(r313,_G139137),registration_satisfaction(r314,h),registration_satisfaction(r315,h),registration_satisfaction(r316,l),registration_satisfaction(r317,l),registration_satisfaction(r318,_G139162),registration_satisfaction(r319,_G139167),registration_satisfaction(r320,_G139172),registration_satisfaction(r321,l),registration_satisfaction(r322,h),registration_satisfaction(r323,_G139187),registration_satisfaction(r324,h),registration_satisfaction(r325,h),registration_satisfaction(r326,_G139202),registration_satisfaction(r327,m),registration_satisfaction(r328,h),registration_satisfaction(r329,h),registration_satisfaction(r330,_G139222),registration_satisfaction(r331,h),registration_satisfaction(r332,l),registration_satisfaction(r333,_G139237),registration_satisfaction(r334,_G139242),registration_satisfaction(r335,h),registration_satisfaction(r336,_G139252),registration_satisfaction(r337,h),registration_satisfaction(r338,h),registration_satisfaction(r339,_G139267),registration_satisfaction(r340,_G139272),registration_satisfaction(r341,l),registration_satisfaction(r342,h),registration_satisfaction(r343,_G139287),registration_satisfaction(r344,_G139292),registration_satisfaction(r345,m),registration_satisfaction(r346,h),registration_satisfaction(r347,m),registration_satisfaction(r348,_G139312),registration_satisfaction(r349,h),registration_satisfaction(r350,m),registration_satisfaction(r351,_G139327),registration_satisfaction(r352,l),registration_satisfaction(r353,h),registration_satisfaction(r354,h),registration_satisfaction(r355,_G139347),registration_satisfaction(r356,_G139352),registration_satisfaction(r357,m),registration_satisfaction(r358,_G139362),registration_satisfaction(r359,_G139367),registration_satisfaction(r360,_G139372),registration_satisfaction(r361,m),registration_satisfaction(r362,_G139382),registration_satisfaction(r363,_G139387),registration_satisfaction(r364,_G139392),registration_satisfaction(r365,_G139397),registration_satisfaction(r366,h),registration_satisfaction(r367,h),registration_satisfaction(r368,h),registration_satisfaction(r369,h),registration_satisfaction(r370,_G139422),registration_satisfaction(r371,_G139427),registration_satisfaction(r372,h),registration_satisfaction(r373,h),registration_satisfaction(r374,_G139442),registration_satisfaction(r375,h),registration_satisfaction(r376,_G139452),registration_satisfaction(r377,_G139457),registration_satisfaction(r378,_G139462),registration_satisfaction(r379,h),registration_satisfaction(r380,_G139472),registration_satisfaction(r381,_G139477),registration_satisfaction(r382,h),registration_satisfaction(r383,h),registration_satisfaction(r384,_G139492),registration_satisfaction(r385,m),registration_satisfaction(r386,_G139502),registration_satisfaction(r387,h),registration_satisfaction(r388,_G139512),registration_satisfaction(r389,_G139517),registration_satisfaction(r390,_G139522),registration_satisfaction(r391,l),registration_satisfaction(r392,_G139532),registration_satisfaction(r393,_G139537),registration_satisfaction(r394,h),registration_satisfaction(r395,_G139547),registration_satisfaction(r396,h),registration_satisfaction(r397,h),registration_satisfaction(r398,l),registration_satisfaction(r399,h),registration_satisfaction(r400,_G139572),registration_satisfaction(r401,l),registration_satisfaction(r402,h),registration_satisfaction(r403,h),registration_satisfaction(r404,h),registration_satisfaction(r405,h),registration_satisfaction(r406,_G139602),registration_satisfaction(r407,_G139607),registration_satisfaction(r408,_G139612),registration_satisfaction(r409,h),registration_satisfaction(r410,h),registration_satisfaction(r411,_G139627),registration_satisfaction(r412,_G139632),registration_satisfaction(r413,l),registration_satisfaction(r414,h),registration_satisfaction(r415,m),registration_satisfaction(r416,_G139652),registration_satisfaction(r417,h),registration_satisfaction(r418,_G139662),registration_satisfaction(r419,_G139667),registration_satisfaction(r420,_G139672),registration_satisfaction(r421,_G139677),registration_satisfaction(r422,_G139682),registration_satisfaction(r423,_G139687),registration_satisfaction(r424,h),registration_satisfaction(r425,h),registration_satisfaction(r426,_G139702),registration_satisfaction(r427,_G139707),registration_satisfaction(r428,_G139712),registration_satisfaction(r429,_G139717),registration_satisfaction(r430,l),registration_satisfaction(r431,m),registration_satisfaction(r432,_G139732),registration_satisfaction(r433,_G139737),registration_satisfaction(r434,h),registration_satisfaction(r435,m),registration_satisfaction(r436,_G139752),registration_satisfaction(r437,h),registration_satisfaction(r438,l),registration_satisfaction(r439,_G139767),registration_satisfaction(r440,h),registration_satisfaction(r441,h),registration_satisfaction(r442,_G139782),registration_satisfaction(r443,_G139787),registration_satisfaction(r444,_G139792),registration_satisfaction(r445,_G139797),registration_satisfaction(r446,h),registration_satisfaction(r447,m),registration_satisfaction(r448,l),registration_satisfaction(r449,_G139817),registration_satisfaction(r450,h),registration_satisfaction(r451,_G139827),registration_satisfaction(r452,_G139832),registration_satisfaction(r453,_G139837),registration_satisfaction(r454,_G139842),registration_satisfaction(r455,_G139847),registration_satisfaction(r456,h),registration_satisfaction(r457,h),registration_satisfaction(r458,_G139862),registration_satisfaction(r459,_G139867),registration_satisfaction(r460,l),registration_satisfaction(r461,h),registration_satisfaction(r462,h),registration_satisfaction(r463,_G139887),registration_satisfaction(r464,_G139892),registration_satisfaction(r465,_G139897),registration_satisfaction(r466,l),registration_satisfaction(r467,_G139907),registration_satisfaction(r468,_G139912),registration_satisfaction(r469,h),registration_satisfaction(r470,h),registration_satisfaction(r471,_G139927),registration_satisfaction(r472,_G139932),registration_satisfaction(r473,_G139937),registration_satisfaction(r474,_G139942),registration_satisfaction(r475,h),registration_satisfaction(r476,_G139952),registration_satisfaction(r477,_G139957),registration_satisfaction(r478,_G139962),registration_satisfaction(r479,_G139967),registration_satisfaction(r480,_G139972),registration_satisfaction(r481,_G139977),registration_satisfaction(r482,_G139982),registration_satisfaction(r483,h),registration_satisfaction(r484,_G139992),registration_satisfaction(r485,h),registration_satisfaction(r486,h),registration_satisfaction(r487,_G140007),registration_satisfaction(r488,_G140012),registration_satisfaction(r489,m),registration_satisfaction(r490,_G140022),registration_satisfaction(r491,_G140027),registration_satisfaction(r492,h),registration_satisfaction(r493,_G140037),registration_satisfaction(r494,_G140042),registration_satisfaction(r495,h),registration_satisfaction(r496,h),registration_satisfaction(r497,_G140057),registration_satisfaction(r498,_G140062),registration_satisfaction(r499,h),registration_satisfaction(r500,m),registration_satisfaction(r501,h),registration_satisfaction(r502,_G140082),registration_satisfaction(r503,_G140087),registration_satisfaction(r504,m),registration_satisfaction(r505,_G140097),registration_satisfaction(r506,_G140102),registration_satisfaction(r507,_G140107),registration_satisfaction(r508,_G140112),registration_satisfaction(r509,_G140117),registration_satisfaction(r510,_G140122),registration_satisfaction(r511,l),registration_satisfaction(r512,h),registration_satisfaction(r513,h),registration_satisfaction(r514,_G140142),registration_satisfaction(r515,_G140147),registration_satisfaction(r516,_G140152),registration_satisfaction(r517,m),registration_satisfaction(r518,_G140162),registration_satisfaction(r519,h),registration_satisfaction(r520,_G140172),registration_satisfaction(r521,h),registration_satisfaction(r522,h),registration_satisfaction(r523,h),registration_satisfaction(r524,h),registration_satisfaction(r525,_G140197),registration_satisfaction(r526,h),registration_satisfaction(r527,_G140207),registration_satisfaction(r528,_G140212),registration_satisfaction(r529,h),registration_satisfaction(r530,_G140222),registration_satisfaction(r531,_G140227),registration_satisfaction(r532,_G140232),registration_satisfaction(r533,_G140237),registration_satisfaction(r534,l),registration_satisfaction(r535,_G140247),registration_satisfaction(r536,h),registration_satisfaction(r537,h),registration_satisfaction(r538,_G140262),registration_satisfaction(r539,_G140267),registration_satisfaction(r540,_G140272),registration_satisfaction(r541,_G140277),registration_satisfaction(r542,h),registration_satisfaction(r543,h),registration_satisfaction(r544,_G140292),registration_satisfaction(r545,h),registration_satisfaction(r546,_G140302),registration_satisfaction(r547,_G140307),registration_satisfaction(r548,h),registration_satisfaction(r549,_G140317),registration_satisfaction(r550,_G140322),registration_satisfaction(r551,h),registration_satisfaction(r552,m),registration_satisfaction(r553,m),registration_satisfaction(r554,l),registration_satisfaction(r555,m),registration_satisfaction(r556,_G140352),registration_satisfaction(r557,_G140357),registration_satisfaction(r558,_G140362),registration_satisfaction(r559,_G140367),registration_satisfaction(r560,_G140372),registration_satisfaction(r561,_G140377),registration_satisfaction(r562,h),registration_satisfaction(r563,_G140387),registration_satisfaction(r564,h),registration_satisfaction(r565,_G140397),registration_satisfaction(r566,l),registration_satisfaction(r567,_G140407),registration_satisfaction(r568,h),registration_satisfaction(r569,h),registration_satisfaction(r570,h),registration_satisfaction(r571,_G140427),registration_satisfaction(r572,_G140432),registration_satisfaction(r573,_G140437),registration_satisfaction(r574,_G140442),registration_satisfaction(r575,_G140447),registration_satisfaction(r576,_G140452),registration_satisfaction(r577,_G140457),registration_satisfaction(r578,l),registration_satisfaction(r579,h),registration_satisfaction(r580,m),registration_satisfaction(r581,h),registration_satisfaction(r582,h),registration_satisfaction(r583,h),registration_satisfaction(r584,h),registration_satisfaction(r585,h),registration_satisfaction(r586,_G140502),registration_satisfaction(r587,_G140507),registration_satisfaction(r588,_G140512),registration_satisfaction(r589,l),registration_satisfaction(r590,h),registration_satisfaction(r591,_G140527),registration_satisfaction(r592,_G140532),registration_satisfaction(r593,_G140537),registration_satisfaction(r594,l),registration_satisfaction(r595,m),registration_satisfaction(r596,h),registration_satisfaction(r597,_G140557),registration_satisfaction(r598,_G140562),registration_satisfaction(r599,h),registration_satisfaction(r600,_G140572),registration_satisfaction(r601,m),registration_satisfaction(r602,h),registration_satisfaction(r603,_G140587),registration_satisfaction(r604,_G140592),registration_satisfaction(r605,h),registration_satisfaction(r606,h),registration_satisfaction(r607,l),registration_satisfaction(r608,_G140612),registration_satisfaction(r609,h),registration_satisfaction(r610,_G140622),registration_satisfaction(r611,h),registration_satisfaction(r612,l),registration_satisfaction(r613,_G140637),registration_satisfaction(r614,_G140642),registration_satisfaction(r615,_G140647),registration_satisfaction(r616,h),registration_satisfaction(r617,h),registration_satisfaction(r618,h),registration_satisfaction(r619,h),registration_satisfaction(r620,_G140672),registration_satisfaction(r621,_G140677),registration_satisfaction(r622,h),registration_satisfaction(r623,_G140687),registration_satisfaction(r624,_G140692),registration_satisfaction(r625,l),registration_satisfaction(r626,_G140702),registration_satisfaction(r627,h),registration_satisfaction(r628,h),registration_satisfaction(r629,h),registration_satisfaction(r630,h),registration_satisfaction(r631,h),registration_satisfaction(r632,h),registration_satisfaction(r633,_G140737),registration_satisfaction(r634,_G140742),registration_satisfaction(r635,_G140747),registration_satisfaction(r636,_G140752),registration_satisfaction(r637,_G140757),registration_satisfaction(r638,h),registration_satisfaction(r639,_G140767),registration_satisfaction(r640,h),registration_satisfaction(r641,h),registration_satisfaction(r642,_G140782),registration_satisfaction(r643,_G140787),registration_satisfaction(r644,h),registration_satisfaction(r645,_G140797),registration_satisfaction(r646,h),registration_satisfaction(r647,h),registration_satisfaction(r648,_G140812),registration_satisfaction(r649,_G140817),registration_satisfaction(r650,_G140822),registration_satisfaction(r651,_G140827),registration_satisfaction(r652,_G140832),registration_satisfaction(r653,_G140837),registration_satisfaction(r654,h),registration_satisfaction(r655,h),registration_satisfaction(r656,m),registration_satisfaction(r657,_G140857),registration_satisfaction(r658,h),registration_satisfaction(r659,h),registration_satisfaction(r660,h),registration_satisfaction(r661,_G140877),registration_satisfaction(r662,_G140882),registration_satisfaction(r663,h),registration_satisfaction(r664,_G140892),registration_satisfaction(r665,h),registration_satisfaction(r666,l),registration_satisfaction(r667,h),registration_satisfaction(r668,l),registration_satisfaction(r669,_G140917),registration_satisfaction(r670,h),registration_satisfaction(r671,_G140927),registration_satisfaction(r672,_G140932),registration_satisfaction(r673,_G140937),registration_satisfaction(r674,h),registration_satisfaction(r675,l),registration_satisfaction(r676,_G140952),registration_satisfaction(r677,_G140957),registration_satisfaction(r678,h),registration_satisfaction(r679,h),registration_satisfaction(r680,m),registration_satisfaction(r681,_G140977),registration_satisfaction(r682,_G140982),registration_satisfaction(r683,h),registration_satisfaction(r684,_G140992),registration_satisfaction(r685,h),registration_satisfaction(r686,h),registration_satisfaction(r687,_G141007),registration_satisfaction(r688,_G141012),registration_satisfaction(r689,_G141017),registration_satisfaction(r690,h),registration_satisfaction(r691,h),registration_satisfaction(r692,h),registration_satisfaction(r693,_G141037),registration_satisfaction(r694,h),registration_satisfaction(r695,_G141047),registration_satisfaction(r696,_G141052),registration_satisfaction(r697,_G141057),registration_satisfaction(r698,h),registration_satisfaction(r699,h),registration_satisfaction(r700,_G141072),registration_satisfaction(r701,h),registration_satisfaction(r702,_G141082),registration_satisfaction(r703,_G141087),registration_satisfaction(r704,l),registration_satisfaction(r705,_G141097),registration_satisfaction(r706,_G141102),registration_satisfaction(r707,_G141107),registration_satisfaction(r708,_G141112),registration_satisfaction(r709,m),registration_satisfaction(r710,l),registration_satisfaction(r711,h),registration_satisfaction(r712,h),registration_satisfaction(r713,h),registration_satisfaction(r714,m),registration_satisfaction(r715,_G141147),registration_satisfaction(r716,h),registration_satisfaction(r717,h),registration_satisfaction(r718,l),registration_satisfaction(r719,l),registration_satisfaction(r720,_G141172),registration_satisfaction(r721,h),registration_satisfaction(r722,h),registration_satisfaction(r723,h),registration_satisfaction(r724,h),registration_satisfaction(r725,_G141197),registration_satisfaction(r726,h),registration_satisfaction(r727,_G141207),registration_satisfaction(r728,_G141212),registration_satisfaction(r729,_G141217),registration_satisfaction(r730,h),registration_satisfaction(r731,h),registration_satisfaction(r732,_G141232),registration_satisfaction(r733,_G141237),registration_satisfaction(r734,h),registration_satisfaction(r735,h),registration_satisfaction(r736,_G141252),registration_satisfaction(r737,h),registration_satisfaction(r738,_G141262),registration_satisfaction(r739,h),registration_satisfaction(r740,h),registration_satisfaction(r741,h),registration_satisfaction(r742,h),registration_satisfaction(r743,_G141287),registration_satisfaction(r744,_G141292),registration_satisfaction(r745,m),registration_satisfaction(r746,h),registration_satisfaction(r747,_G141307),registration_satisfaction(r748,_G141312),registration_satisfaction(r749,_G141317),registration_satisfaction(r750,_G141322),registration_satisfaction(r751,_G141327),registration_satisfaction(r752,m),registration_satisfaction(r753,m),registration_satisfaction(r754,_G141342),registration_satisfaction(r755,l),registration_satisfaction(r756,_G141352),registration_satisfaction(r757,h),registration_satisfaction(r758,h),registration_satisfaction(r759,l),registration_satisfaction(r760,_G141372),registration_satisfaction(r761,h),registration_satisfaction(r762,_G141382),registration_satisfaction(r763,_G141387),registration_satisfaction(r764,_G141392),registration_satisfaction(r765,h),registration_satisfaction(r766,_G141402),registration_satisfaction(r767,_G141407),registration_satisfaction(r768,_G141412),registration_satisfaction(r769,_G141417),registration_satisfaction(r770,m),registration_satisfaction(r771,_G141427),registration_satisfaction(r772,_G141432),registration_satisfaction(r773,m),registration_satisfaction(r774,h),registration_satisfaction(r775,h),registration_satisfaction(r776,_G141452),registration_satisfaction(r777,_G141457),registration_satisfaction(r778,h),registration_satisfaction(r779,_G141467),registration_satisfaction(r780,h),registration_satisfaction(r781,m),registration_satisfaction(r782,m),registration_satisfaction(r783,m),registration_satisfaction(r784,l),registration_satisfaction(r785,l),registration_satisfaction(r786,h),registration_satisfaction(r787,h),registration_satisfaction(r788,_G141512),registration_satisfaction(r789,_G141517),registration_satisfaction(r790,_G141522),registration_satisfaction(r791,h),registration_satisfaction(r792,_G141532),registration_satisfaction(r793,_G141537),registration_satisfaction(r794,_G141542),registration_satisfaction(r795,_G141547),registration_satisfaction(r796,h),registration_satisfaction(r797,h),registration_satisfaction(r798,m),registration_satisfaction(r799,_G141567),registration_satisfaction(r800,m),registration_satisfaction(r801,h),registration_satisfaction(r802,h),registration_satisfaction(r803,h),registration_satisfaction(r804,_G141592),registration_satisfaction(r805,_G141597),registration_satisfaction(r806,_G141602),registration_satisfaction(r807,_G141607),registration_satisfaction(r808,_G141612),registration_satisfaction(r809,_G141617),registration_satisfaction(r810,h),registration_satisfaction(r811,_G141627),registration_satisfaction(r812,h),registration_satisfaction(r813,m),registration_satisfaction(r814,l),registration_satisfaction(r815,_G141647),registration_satisfaction(r816,_G141652),registration_satisfaction(r817,_G141657),registration_satisfaction(r818,_G141662),registration_satisfaction(r819,h),registration_satisfaction(r820,h),registration_satisfaction(r821,_G141677),registration_satisfaction(r822,m),registration_satisfaction(r823,_G141687),registration_satisfaction(r824,m),registration_satisfaction(r825,l),registration_satisfaction(r826,l),registration_satisfaction(r827,l),registration_satisfaction(r828,_G141712),registration_satisfaction(r829,_G141717),registration_satisfaction(r830,h),registration_satisfaction(r831,_G141727),registration_satisfaction(r832,m),registration_satisfaction(r833,_G141737),registration_satisfaction(r834,_G141742),registration_satisfaction(r835,_G141747),registration_satisfaction(r836,h),registration_satisfaction(r837,h),registration_satisfaction(r838,l),registration_satisfaction(r839,_G141767),registration_satisfaction(r840,m),registration_satisfaction(r841,_G141777),registration_satisfaction(r842,_G141782),registration_satisfaction(r843,h),registration_satisfaction(r844,_G141792),registration_satisfaction(r845,_G141797),registration_satisfaction(r846,_G141802),registration_satisfaction(r847,_G141807),registration_satisfaction(r848,l),registration_satisfaction(r849,_G141817),registration_satisfaction(r850,_G141822),registration_satisfaction(r851,h),registration_satisfaction(r852,h),registration_satisfaction(r853,h),registration_satisfaction(r854,m),registration_satisfaction(r855,_G141847),registration_satisfaction(r856,_G141852)]).graph22,388 - -packages/CLPBN/examples/learning/school_params.yap,953 -timed_main :-timed_main17,315 -main :-main24,482 -missing(0.2).missing32,623 -missing(0.2).missing32,623 -goal(professor_ability(P,V)) :-goal34,638 -goal(professor_ability(P,V)) :-goal34,638 -goal(professor_ability(P,V)) :-goal34,638 -goal(professor_popularity(P,V)) :-goal39,747 -goal(professor_popularity(P,V)) :-goal39,747 -goal(professor_popularity(P,V)) :-goal39,747 -goal(registration_grade(P,V)) :-goal44,862 -goal(registration_grade(P,V)) :-goal44,862 -goal(registration_grade(P,V)) :-goal44,862 -goal(student_intelligence(P,V)) :-goal49,973 -goal(student_intelligence(P,V)) :-goal49,973 -goal(student_intelligence(P,V)) :-goal49,973 -goal(course_difficulty(P,V)) :-goal54,1088 -goal(course_difficulty(P,V)) :-goal54,1088 -goal(course_difficulty(P,V)) :-goal54,1088 -goal(registration_satisfaction(P,V)) :-goal59,1197 -goal(registration_satisfaction(P,V)) :-goal59,1197 -goal(registration_satisfaction(P,V)) :-goal59,1197 - -packages/CLPBN/examples/learning/sprinkler_params.yap,953 -data(t,t,t,t).data13,241 -data(t,t,t,t).data13,241 -data(_,t,_,t).data14,256 -data(_,t,_,t).data14,256 -data(t,t,f,f).data15,271 -data(t,t,f,f).data15,271 -data(t,t,f,t).data16,286 -data(t,t,f,t).data16,286 -data(t,_,_,t).data17,301 -data(t,_,_,t).data17,301 -data(t,f,t,t).data18,316 -data(t,f,t,t).data18,316 -data(t,t,f,t).data19,331 -data(t,t,f,t).data19,331 -data(t,_,f,f).data20,346 -data(t,_,f,f).data20,346 -data(t,t,f,f).data21,361 -data(t,t,f,f).data21,361 -data(f,f,t,t).data22,376 -data(f,f,t,t).data22,376 -data(t,t,_,f).data23,391 -data(t,t,_,f).data23,391 -data(t,f,f,t).data24,406 -data(t,f,f,t).data24,406 -data(t,f,t,t).data25,421 -data(t,f,t,t).data25,421 -main :-main27,437 -scan_data([cloudy(C),sprinkler(S),rain(R),wet_grass(W)]) :-scan_data32,525 -scan_data([cloudy(C),sprinkler(S),rain(R),wet_grass(W)]) :-scan_data32,525 -scan_data([cloudy(C),sprinkler(S),rain(R),wet_grass(W)]) :-scan_data32,525 - -packages/CLPBN/examples/learning/train.yap,297724 -professor_ability(p0,h).professor_ability1,0 -professor_ability(p0,h).professor_ability1,0 -professor_ability(p1,h).professor_ability2,25 -professor_ability(p1,h).professor_ability2,25 -professor_ability(p2,m).professor_ability3,50 -professor_ability(p2,m).professor_ability3,50 -professor_ability(p3,m).professor_ability4,75 -professor_ability(p3,m).professor_ability4,75 -professor_ability(p4,h).professor_ability5,100 -professor_ability(p4,h).professor_ability5,100 -professor_ability(p5,h).professor_ability6,125 -professor_ability(p5,h).professor_ability6,125 -professor_ability(p6,l).professor_ability7,150 -professor_ability(p6,l).professor_ability7,150 -professor_ability(p7,l).professor_ability8,175 -professor_ability(p7,l).professor_ability8,175 -professor_ability(p8,m).professor_ability9,200 -professor_ability(p8,m).professor_ability9,200 -professor_ability(p9,h).professor_ability10,225 -professor_ability(p9,h).professor_ability10,225 -professor_ability(p10,m).professor_ability11,250 -professor_ability(p10,m).professor_ability11,250 -professor_ability(p11,h).professor_ability12,276 -professor_ability(p11,h).professor_ability12,276 -professor_ability(p12,h).professor_ability13,302 -professor_ability(p12,h).professor_ability13,302 -professor_ability(p13,m).professor_ability14,328 -professor_ability(p13,m).professor_ability14,328 -professor_ability(p14,m).professor_ability15,354 -professor_ability(p14,m).professor_ability15,354 -professor_ability(p15,m).professor_ability16,380 -professor_ability(p15,m).professor_ability16,380 -professor_ability(p16,m).professor_ability17,406 -professor_ability(p16,m).professor_ability17,406 -professor_ability(p17,m).professor_ability18,432 -professor_ability(p17,m).professor_ability18,432 -professor_ability(p18,l).professor_ability19,458 -professor_ability(p18,l).professor_ability19,458 -professor_ability(p19,h).professor_ability20,484 -professor_ability(p19,h).professor_ability20,484 -professor_ability(p20,h).professor_ability21,510 -professor_ability(p20,h).professor_ability21,510 -professor_ability(p21,h).professor_ability22,536 -professor_ability(p21,h).professor_ability22,536 -professor_ability(p22,m).professor_ability23,562 -professor_ability(p22,m).professor_ability23,562 -professor_ability(p23,m).professor_ability24,588 -professor_ability(p23,m).professor_ability24,588 -professor_ability(p24,l).professor_ability25,614 -professor_ability(p24,l).professor_ability25,614 -professor_ability(p25,m).professor_ability26,640 -professor_ability(p25,m).professor_ability26,640 -professor_ability(p26,h).professor_ability27,666 -professor_ability(p26,h).professor_ability27,666 -professor_ability(p27,h).professor_ability28,692 -professor_ability(p27,h).professor_ability28,692 -professor_ability(p28,h).professor_ability29,718 -professor_ability(p28,h).professor_ability29,718 -professor_ability(p29,m).professor_ability30,744 -professor_ability(p29,m).professor_ability30,744 -professor_ability(p30,m).professor_ability31,770 -professor_ability(p30,m).professor_ability31,770 -professor_ability(p31,h).professor_ability32,796 -professor_ability(p31,h).professor_ability32,796 -course_difficulty(c0,h).course_difficulty35,824 -course_difficulty(c0,h).course_difficulty35,824 -course_difficulty(c1,m).course_difficulty36,849 -course_difficulty(c1,m).course_difficulty36,849 -course_difficulty(c2,l).course_difficulty37,874 -course_difficulty(c2,l).course_difficulty37,874 -course_difficulty(c3,m).course_difficulty38,899 -course_difficulty(c3,m).course_difficulty38,899 -course_difficulty(c4,m).course_difficulty39,924 -course_difficulty(c4,m).course_difficulty39,924 -course_difficulty(c5,l).course_difficulty40,949 -course_difficulty(c5,l).course_difficulty40,949 -course_difficulty(c6,m).course_difficulty41,974 -course_difficulty(c6,m).course_difficulty41,974 -course_difficulty(c7,h).course_difficulty42,999 -course_difficulty(c7,h).course_difficulty42,999 -course_difficulty(c8,h).course_difficulty43,1024 -course_difficulty(c8,h).course_difficulty43,1024 -course_difficulty(c9,l).course_difficulty44,1049 -course_difficulty(c9,l).course_difficulty44,1049 -course_difficulty(c10,m).course_difficulty45,1074 -course_difficulty(c10,m).course_difficulty45,1074 -course_difficulty(c11,m).course_difficulty46,1100 -course_difficulty(c11,m).course_difficulty46,1100 -course_difficulty(c12,m).course_difficulty47,1126 -course_difficulty(c12,m).course_difficulty47,1126 -course_difficulty(c13,h).course_difficulty48,1152 -course_difficulty(c13,h).course_difficulty48,1152 -course_difficulty(c14,m).course_difficulty49,1178 -course_difficulty(c14,m).course_difficulty49,1178 -course_difficulty(c15,h).course_difficulty50,1204 -course_difficulty(c15,h).course_difficulty50,1204 -course_difficulty(c16,l).course_difficulty51,1230 -course_difficulty(c16,l).course_difficulty51,1230 -course_difficulty(c17,h).course_difficulty52,1256 -course_difficulty(c17,h).course_difficulty52,1256 -course_difficulty(c18,m).course_difficulty53,1282 -course_difficulty(c18,m).course_difficulty53,1282 -course_difficulty(c19,l).course_difficulty54,1308 -course_difficulty(c19,l).course_difficulty54,1308 -course_difficulty(c20,m).course_difficulty55,1334 -course_difficulty(c20,m).course_difficulty55,1334 -course_difficulty(c21,h).course_difficulty56,1360 -course_difficulty(c21,h).course_difficulty56,1360 -course_difficulty(c22,m).course_difficulty57,1386 -course_difficulty(c22,m).course_difficulty57,1386 -course_difficulty(c23,m).course_difficulty58,1412 -course_difficulty(c23,m).course_difficulty58,1412 -course_difficulty(c24,h).course_difficulty59,1438 -course_difficulty(c24,h).course_difficulty59,1438 -course_difficulty(c25,m).course_difficulty60,1464 -course_difficulty(c25,m).course_difficulty60,1464 -course_difficulty(c26,l).course_difficulty61,1490 -course_difficulty(c26,l).course_difficulty61,1490 -course_difficulty(c27,h).course_difficulty62,1516 -course_difficulty(c27,h).course_difficulty62,1516 -course_difficulty(c28,m).course_difficulty63,1542 -course_difficulty(c28,m).course_difficulty63,1542 -course_difficulty(c29,m).course_difficulty64,1568 -course_difficulty(c29,m).course_difficulty64,1568 -course_difficulty(c30,m).course_difficulty65,1594 -course_difficulty(c30,m).course_difficulty65,1594 -course_difficulty(c31,m).course_difficulty66,1620 -course_difficulty(c31,m).course_difficulty66,1620 -course_difficulty(c32,l).course_difficulty67,1646 -course_difficulty(c32,l).course_difficulty67,1646 -course_difficulty(c33,m).course_difficulty68,1672 -course_difficulty(c33,m).course_difficulty68,1672 -course_difficulty(c34,l).course_difficulty69,1698 -course_difficulty(c34,l).course_difficulty69,1698 -course_difficulty(c35,h).course_difficulty70,1724 -course_difficulty(c35,h).course_difficulty70,1724 -course_difficulty(c36,h).course_difficulty71,1750 -course_difficulty(c36,h).course_difficulty71,1750 -course_difficulty(c37,m).course_difficulty72,1776 -course_difficulty(c37,m).course_difficulty72,1776 -course_difficulty(c38,m).course_difficulty73,1802 -course_difficulty(c38,m).course_difficulty73,1802 -course_difficulty(c39,m).course_difficulty74,1828 -course_difficulty(c39,m).course_difficulty74,1828 -course_difficulty(c40,h).course_difficulty75,1854 -course_difficulty(c40,h).course_difficulty75,1854 -course_difficulty(c41,m).course_difficulty76,1880 -course_difficulty(c41,m).course_difficulty76,1880 -course_difficulty(c42,h).course_difficulty77,1906 -course_difficulty(c42,h).course_difficulty77,1906 -course_difficulty(c43,m).course_difficulty78,1932 -course_difficulty(c43,m).course_difficulty78,1932 -course_difficulty(c44,m).course_difficulty79,1958 -course_difficulty(c44,m).course_difficulty79,1958 -course_difficulty(c45,m).course_difficulty80,1984 -course_difficulty(c45,m).course_difficulty80,1984 -course_difficulty(c46,m).course_difficulty81,2010 -course_difficulty(c46,m).course_difficulty81,2010 -course_difficulty(c47,m).course_difficulty82,2036 -course_difficulty(c47,m).course_difficulty82,2036 -course_difficulty(c48,m).course_difficulty83,2062 -course_difficulty(c48,m).course_difficulty83,2062 -course_difficulty(c49,l).course_difficulty84,2088 -course_difficulty(c49,l).course_difficulty84,2088 -course_difficulty(c50,m).course_difficulty85,2114 -course_difficulty(c50,m).course_difficulty85,2114 -course_difficulty(c51,h).course_difficulty86,2140 -course_difficulty(c51,h).course_difficulty86,2140 -course_difficulty(c52,h).course_difficulty87,2166 -course_difficulty(c52,h).course_difficulty87,2166 -course_difficulty(c53,h).course_difficulty88,2192 -course_difficulty(c53,h).course_difficulty88,2192 -course_difficulty(c54,m).course_difficulty89,2218 -course_difficulty(c54,m).course_difficulty89,2218 -course_difficulty(c55,h).course_difficulty90,2244 -course_difficulty(c55,h).course_difficulty90,2244 -course_difficulty(c56,m).course_difficulty91,2270 -course_difficulty(c56,m).course_difficulty91,2270 -course_difficulty(c57,m).course_difficulty92,2296 -course_difficulty(c57,m).course_difficulty92,2296 -course_difficulty(c58,h).course_difficulty93,2322 -course_difficulty(c58,h).course_difficulty93,2322 -course_difficulty(c59,m).course_difficulty94,2348 -course_difficulty(c59,m).course_difficulty94,2348 -course_difficulty(c60,h).course_difficulty95,2374 -course_difficulty(c60,h).course_difficulty95,2374 -course_difficulty(c61,m).course_difficulty96,2400 -course_difficulty(c61,m).course_difficulty96,2400 -course_difficulty(c62,l).course_difficulty97,2426 -course_difficulty(c62,l).course_difficulty97,2426 -course_difficulty(c63,l).course_difficulty98,2452 -course_difficulty(c63,l).course_difficulty98,2452 -student_intelligence(s0,l).student_intelligence101,2480 -student_intelligence(s0,l).student_intelligence101,2480 -student_intelligence(s1,l).student_intelligence102,2508 -student_intelligence(s1,l).student_intelligence102,2508 -student_intelligence(s2,h).student_intelligence103,2536 -student_intelligence(s2,h).student_intelligence103,2536 -student_intelligence(s3,h).student_intelligence104,2564 -student_intelligence(s3,h).student_intelligence104,2564 -student_intelligence(s4,h).student_intelligence105,2592 -student_intelligence(s4,h).student_intelligence105,2592 -student_intelligence(s5,h).student_intelligence106,2620 -student_intelligence(s5,h).student_intelligence106,2620 -student_intelligence(s6,m).student_intelligence107,2648 -student_intelligence(s6,m).student_intelligence107,2648 -student_intelligence(s7,h).student_intelligence108,2676 -student_intelligence(s7,h).student_intelligence108,2676 -student_intelligence(s8,h).student_intelligence109,2704 -student_intelligence(s8,h).student_intelligence109,2704 -student_intelligence(s9,m).student_intelligence110,2732 -student_intelligence(s9,m).student_intelligence110,2732 -student_intelligence(s10,m).student_intelligence111,2760 -student_intelligence(s10,m).student_intelligence111,2760 -student_intelligence(s11,m).student_intelligence112,2789 -student_intelligence(s11,m).student_intelligence112,2789 -student_intelligence(s12,h).student_intelligence113,2818 -student_intelligence(s12,h).student_intelligence113,2818 -student_intelligence(s13,h).student_intelligence114,2847 -student_intelligence(s13,h).student_intelligence114,2847 -student_intelligence(s14,h).student_intelligence115,2876 -student_intelligence(s14,h).student_intelligence115,2876 -student_intelligence(s15,m).student_intelligence116,2905 -student_intelligence(s15,m).student_intelligence116,2905 -student_intelligence(s16,h).student_intelligence117,2934 -student_intelligence(s16,h).student_intelligence117,2934 -student_intelligence(s17,m).student_intelligence118,2963 -student_intelligence(s17,m).student_intelligence118,2963 -student_intelligence(s18,m).student_intelligence119,2992 -student_intelligence(s18,m).student_intelligence119,2992 -student_intelligence(s19,h).student_intelligence120,3021 -student_intelligence(s19,h).student_intelligence120,3021 -student_intelligence(s20,m).student_intelligence121,3050 -student_intelligence(s20,m).student_intelligence121,3050 -student_intelligence(s21,h).student_intelligence122,3079 -student_intelligence(s21,h).student_intelligence122,3079 -student_intelligence(s22,h).student_intelligence123,3108 -student_intelligence(s22,h).student_intelligence123,3108 -student_intelligence(s23,h).student_intelligence124,3137 -student_intelligence(s23,h).student_intelligence124,3137 -student_intelligence(s24,m).student_intelligence125,3166 -student_intelligence(s24,m).student_intelligence125,3166 -student_intelligence(s25,h).student_intelligence126,3195 -student_intelligence(s25,h).student_intelligence126,3195 -student_intelligence(s26,m).student_intelligence127,3224 -student_intelligence(s26,m).student_intelligence127,3224 -student_intelligence(s27,m).student_intelligence128,3253 -student_intelligence(s27,m).student_intelligence128,3253 -student_intelligence(s28,m).student_intelligence129,3282 -student_intelligence(s28,m).student_intelligence129,3282 -student_intelligence(s29,m).student_intelligence130,3311 -student_intelligence(s29,m).student_intelligence130,3311 -student_intelligence(s30,h).student_intelligence131,3340 -student_intelligence(s30,h).student_intelligence131,3340 -student_intelligence(s31,m).student_intelligence132,3369 -student_intelligence(s31,m).student_intelligence132,3369 -student_intelligence(s32,m).student_intelligence133,3398 -student_intelligence(s32,m).student_intelligence133,3398 -student_intelligence(s33,h).student_intelligence134,3427 -student_intelligence(s33,h).student_intelligence134,3427 -student_intelligence(s34,l).student_intelligence135,3456 -student_intelligence(s34,l).student_intelligence135,3456 -student_intelligence(s35,m).student_intelligence136,3485 -student_intelligence(s35,m).student_intelligence136,3485 -student_intelligence(s36,l).student_intelligence137,3514 -student_intelligence(s36,l).student_intelligence137,3514 -student_intelligence(s37,m).student_intelligence138,3543 -student_intelligence(s37,m).student_intelligence138,3543 -student_intelligence(s38,h).student_intelligence139,3572 -student_intelligence(s38,h).student_intelligence139,3572 -student_intelligence(s39,h).student_intelligence140,3601 -student_intelligence(s39,h).student_intelligence140,3601 -student_intelligence(s40,h).student_intelligence141,3630 -student_intelligence(s40,h).student_intelligence141,3630 -student_intelligence(s41,m).student_intelligence142,3659 -student_intelligence(s41,m).student_intelligence142,3659 -student_intelligence(s42,m).student_intelligence143,3688 -student_intelligence(s42,m).student_intelligence143,3688 -student_intelligence(s43,h).student_intelligence144,3717 -student_intelligence(s43,h).student_intelligence144,3717 -student_intelligence(s44,h).student_intelligence145,3746 -student_intelligence(s44,h).student_intelligence145,3746 -student_intelligence(s45,h).student_intelligence146,3775 -student_intelligence(s45,h).student_intelligence146,3775 -student_intelligence(s46,l).student_intelligence147,3804 -student_intelligence(s46,l).student_intelligence147,3804 -student_intelligence(s47,h).student_intelligence148,3833 -student_intelligence(s47,h).student_intelligence148,3833 -student_intelligence(s48,m).student_intelligence149,3862 -student_intelligence(s48,m).student_intelligence149,3862 -student_intelligence(s49,m).student_intelligence150,3891 -student_intelligence(s49,m).student_intelligence150,3891 -student_intelligence(s50,h).student_intelligence151,3920 -student_intelligence(s50,h).student_intelligence151,3920 -student_intelligence(s51,m).student_intelligence152,3949 -student_intelligence(s51,m).student_intelligence152,3949 -student_intelligence(s52,m).student_intelligence153,3978 -student_intelligence(s52,m).student_intelligence153,3978 -student_intelligence(s53,m).student_intelligence154,4007 -student_intelligence(s53,m).student_intelligence154,4007 -student_intelligence(s54,h).student_intelligence155,4036 -student_intelligence(s54,h).student_intelligence155,4036 -student_intelligence(s55,h).student_intelligence156,4065 -student_intelligence(s55,h).student_intelligence156,4065 -student_intelligence(s56,l).student_intelligence157,4094 -student_intelligence(s56,l).student_intelligence157,4094 -student_intelligence(s57,m).student_intelligence158,4123 -student_intelligence(s57,m).student_intelligence158,4123 -student_intelligence(s58,h).student_intelligence159,4152 -student_intelligence(s58,h).student_intelligence159,4152 -student_intelligence(s59,m).student_intelligence160,4181 -student_intelligence(s59,m).student_intelligence160,4181 -student_intelligence(s60,m).student_intelligence161,4210 -student_intelligence(s60,m).student_intelligence161,4210 -student_intelligence(s61,h).student_intelligence162,4239 -student_intelligence(s61,h).student_intelligence162,4239 -student_intelligence(s62,m).student_intelligence163,4268 -student_intelligence(s62,m).student_intelligence163,4268 -student_intelligence(s63,h).student_intelligence164,4297 -student_intelligence(s63,h).student_intelligence164,4297 -student_intelligence(s64,l).student_intelligence165,4326 -student_intelligence(s64,l).student_intelligence165,4326 -student_intelligence(s65,m).student_intelligence166,4355 -student_intelligence(s65,m).student_intelligence166,4355 -student_intelligence(s66,h).student_intelligence167,4384 -student_intelligence(s66,h).student_intelligence167,4384 -student_intelligence(s67,m).student_intelligence168,4413 -student_intelligence(s67,m).student_intelligence168,4413 -student_intelligence(s68,h).student_intelligence169,4442 -student_intelligence(s68,h).student_intelligence169,4442 -student_intelligence(s69,h).student_intelligence170,4471 -student_intelligence(s69,h).student_intelligence170,4471 -student_intelligence(s70,l).student_intelligence171,4500 -student_intelligence(s70,l).student_intelligence171,4500 -student_intelligence(s71,m).student_intelligence172,4529 -student_intelligence(s71,m).student_intelligence172,4529 -student_intelligence(s72,h).student_intelligence173,4558 -student_intelligence(s72,h).student_intelligence173,4558 -student_intelligence(s73,m).student_intelligence174,4587 -student_intelligence(s73,m).student_intelligence174,4587 -student_intelligence(s74,h).student_intelligence175,4616 -student_intelligence(s74,h).student_intelligence175,4616 -student_intelligence(s75,h).student_intelligence176,4645 -student_intelligence(s75,h).student_intelligence176,4645 -student_intelligence(s76,h).student_intelligence177,4674 -student_intelligence(s76,h).student_intelligence177,4674 -student_intelligence(s77,h).student_intelligence178,4703 -student_intelligence(s77,h).student_intelligence178,4703 -student_intelligence(s78,h).student_intelligence179,4732 -student_intelligence(s78,h).student_intelligence179,4732 -student_intelligence(s79,m).student_intelligence180,4761 -student_intelligence(s79,m).student_intelligence180,4761 -student_intelligence(s80,m).student_intelligence181,4790 -student_intelligence(s80,m).student_intelligence181,4790 -student_intelligence(s81,l).student_intelligence182,4819 -student_intelligence(s81,l).student_intelligence182,4819 -student_intelligence(s82,h).student_intelligence183,4848 -student_intelligence(s82,h).student_intelligence183,4848 -student_intelligence(s83,h).student_intelligence184,4877 -student_intelligence(s83,h).student_intelligence184,4877 -student_intelligence(s84,m).student_intelligence185,4906 -student_intelligence(s84,m).student_intelligence185,4906 -student_intelligence(s85,h).student_intelligence186,4935 -student_intelligence(s85,h).student_intelligence186,4935 -student_intelligence(s86,m).student_intelligence187,4964 -student_intelligence(s86,m).student_intelligence187,4964 -student_intelligence(s87,h).student_intelligence188,4993 -student_intelligence(s87,h).student_intelligence188,4993 -student_intelligence(s88,h).student_intelligence189,5022 -student_intelligence(s88,h).student_intelligence189,5022 -student_intelligence(s89,m).student_intelligence190,5051 -student_intelligence(s89,m).student_intelligence190,5051 -student_intelligence(s90,h).student_intelligence191,5080 -student_intelligence(s90,h).student_intelligence191,5080 -student_intelligence(s91,m).student_intelligence192,5109 -student_intelligence(s91,m).student_intelligence192,5109 -student_intelligence(s92,h).student_intelligence193,5138 -student_intelligence(s92,h).student_intelligence193,5138 -student_intelligence(s93,l).student_intelligence194,5167 -student_intelligence(s93,l).student_intelligence194,5167 -student_intelligence(s94,l).student_intelligence195,5196 -student_intelligence(s94,l).student_intelligence195,5196 -student_intelligence(s95,h).student_intelligence196,5225 -student_intelligence(s95,h).student_intelligence196,5225 -student_intelligence(s96,m).student_intelligence197,5254 -student_intelligence(s96,m).student_intelligence197,5254 -student_intelligence(s97,h).student_intelligence198,5283 -student_intelligence(s97,h).student_intelligence198,5283 -student_intelligence(s98,h).student_intelligence199,5312 -student_intelligence(s98,h).student_intelligence199,5312 -student_intelligence(s99,l).student_intelligence200,5341 -student_intelligence(s99,l).student_intelligence200,5341 -student_intelligence(s100,h).student_intelligence201,5370 -student_intelligence(s100,h).student_intelligence201,5370 -student_intelligence(s101,h).student_intelligence202,5400 -student_intelligence(s101,h).student_intelligence202,5400 -student_intelligence(s102,m).student_intelligence203,5430 -student_intelligence(s102,m).student_intelligence203,5430 -student_intelligence(s103,h).student_intelligence204,5460 -student_intelligence(s103,h).student_intelligence204,5460 -student_intelligence(s104,l).student_intelligence205,5490 -student_intelligence(s104,l).student_intelligence205,5490 -student_intelligence(s105,m).student_intelligence206,5520 -student_intelligence(s105,m).student_intelligence206,5520 -student_intelligence(s106,h).student_intelligence207,5550 -student_intelligence(s106,h).student_intelligence207,5550 -student_intelligence(s107,l).student_intelligence208,5580 -student_intelligence(s107,l).student_intelligence208,5580 -student_intelligence(s108,m).student_intelligence209,5610 -student_intelligence(s108,m).student_intelligence209,5610 -student_intelligence(s109,m).student_intelligence210,5640 -student_intelligence(s109,m).student_intelligence210,5640 -student_intelligence(s110,m).student_intelligence211,5670 -student_intelligence(s110,m).student_intelligence211,5670 -student_intelligence(s111,h).student_intelligence212,5700 -student_intelligence(s111,h).student_intelligence212,5700 -student_intelligence(s112,m).student_intelligence213,5730 -student_intelligence(s112,m).student_intelligence213,5730 -student_intelligence(s113,h).student_intelligence214,5760 -student_intelligence(s113,h).student_intelligence214,5760 -student_intelligence(s114,m).student_intelligence215,5790 -student_intelligence(s114,m).student_intelligence215,5790 -student_intelligence(s115,h).student_intelligence216,5820 -student_intelligence(s115,h).student_intelligence216,5820 -student_intelligence(s116,m).student_intelligence217,5850 -student_intelligence(s116,m).student_intelligence217,5850 -student_intelligence(s117,m).student_intelligence218,5880 -student_intelligence(s117,m).student_intelligence218,5880 -student_intelligence(s118,m).student_intelligence219,5910 -student_intelligence(s118,m).student_intelligence219,5910 -student_intelligence(s119,h).student_intelligence220,5940 -student_intelligence(s119,h).student_intelligence220,5940 -student_intelligence(s120,h).student_intelligence221,5970 -student_intelligence(s120,h).student_intelligence221,5970 -student_intelligence(s121,h).student_intelligence222,6000 -student_intelligence(s121,h).student_intelligence222,6000 -student_intelligence(s122,m).student_intelligence223,6030 -student_intelligence(s122,m).student_intelligence223,6030 -student_intelligence(s123,m).student_intelligence224,6060 -student_intelligence(s123,m).student_intelligence224,6060 -student_intelligence(s124,h).student_intelligence225,6090 -student_intelligence(s124,h).student_intelligence225,6090 -student_intelligence(s125,m).student_intelligence226,6120 -student_intelligence(s125,m).student_intelligence226,6120 -student_intelligence(s126,m).student_intelligence227,6150 -student_intelligence(s126,m).student_intelligence227,6150 -student_intelligence(s127,m).student_intelligence228,6180 -student_intelligence(s127,m).student_intelligence228,6180 -student_intelligence(s128,m).student_intelligence229,6210 -student_intelligence(s128,m).student_intelligence229,6210 -student_intelligence(s129,h).student_intelligence230,6240 -student_intelligence(s129,h).student_intelligence230,6240 -student_intelligence(s130,m).student_intelligence231,6270 -student_intelligence(s130,m).student_intelligence231,6270 -student_intelligence(s131,h).student_intelligence232,6300 -student_intelligence(s131,h).student_intelligence232,6300 -student_intelligence(s132,h).student_intelligence233,6330 -student_intelligence(s132,h).student_intelligence233,6330 -student_intelligence(s133,h).student_intelligence234,6360 -student_intelligence(s133,h).student_intelligence234,6360 -student_intelligence(s134,h).student_intelligence235,6390 -student_intelligence(s134,h).student_intelligence235,6390 -student_intelligence(s135,h).student_intelligence236,6420 -student_intelligence(s135,h).student_intelligence236,6420 -student_intelligence(s136,m).student_intelligence237,6450 -student_intelligence(s136,m).student_intelligence237,6450 -student_intelligence(s137,m).student_intelligence238,6480 -student_intelligence(s137,m).student_intelligence238,6480 -student_intelligence(s138,l).student_intelligence239,6510 -student_intelligence(s138,l).student_intelligence239,6510 -student_intelligence(s139,h).student_intelligence240,6540 -student_intelligence(s139,h).student_intelligence240,6540 -student_intelligence(s140,h).student_intelligence241,6570 -student_intelligence(s140,h).student_intelligence241,6570 -student_intelligence(s141,m).student_intelligence242,6600 -student_intelligence(s141,m).student_intelligence242,6600 -student_intelligence(s142,m).student_intelligence243,6630 -student_intelligence(s142,m).student_intelligence243,6630 -student_intelligence(s143,h).student_intelligence244,6660 -student_intelligence(s143,h).student_intelligence244,6660 -student_intelligence(s144,h).student_intelligence245,6690 -student_intelligence(s144,h).student_intelligence245,6690 -student_intelligence(s145,h).student_intelligence246,6720 -student_intelligence(s145,h).student_intelligence246,6720 -student_intelligence(s146,m).student_intelligence247,6750 -student_intelligence(s146,m).student_intelligence247,6750 -student_intelligence(s147,m).student_intelligence248,6780 -student_intelligence(s147,m).student_intelligence248,6780 -student_intelligence(s148,m).student_intelligence249,6810 -student_intelligence(s148,m).student_intelligence249,6810 -student_intelligence(s149,h).student_intelligence250,6840 -student_intelligence(s149,h).student_intelligence250,6840 -student_intelligence(s150,l).student_intelligence251,6870 -student_intelligence(s150,l).student_intelligence251,6870 -student_intelligence(s151,h).student_intelligence252,6900 -student_intelligence(s151,h).student_intelligence252,6900 -student_intelligence(s152,h).student_intelligence253,6930 -student_intelligence(s152,h).student_intelligence253,6930 -student_intelligence(s153,m).student_intelligence254,6960 -student_intelligence(s153,m).student_intelligence254,6960 -student_intelligence(s154,m).student_intelligence255,6990 -student_intelligence(s154,m).student_intelligence255,6990 -student_intelligence(s155,h).student_intelligence256,7020 -student_intelligence(s155,h).student_intelligence256,7020 -student_intelligence(s156,m).student_intelligence257,7050 -student_intelligence(s156,m).student_intelligence257,7050 -student_intelligence(s157,m).student_intelligence258,7080 -student_intelligence(s157,m).student_intelligence258,7080 -student_intelligence(s158,h).student_intelligence259,7110 -student_intelligence(s158,h).student_intelligence259,7110 -student_intelligence(s159,h).student_intelligence260,7140 -student_intelligence(s159,h).student_intelligence260,7140 -student_intelligence(s160,m).student_intelligence261,7170 -student_intelligence(s160,m).student_intelligence261,7170 -student_intelligence(s161,m).student_intelligence262,7200 -student_intelligence(s161,m).student_intelligence262,7200 -student_intelligence(s162,h).student_intelligence263,7230 -student_intelligence(s162,h).student_intelligence263,7230 -student_intelligence(s163,m).student_intelligence264,7260 -student_intelligence(s163,m).student_intelligence264,7260 -student_intelligence(s164,m).student_intelligence265,7290 -student_intelligence(s164,m).student_intelligence265,7290 -student_intelligence(s165,m).student_intelligence266,7320 -student_intelligence(s165,m).student_intelligence266,7320 -student_intelligence(s166,m).student_intelligence267,7350 -student_intelligence(s166,m).student_intelligence267,7350 -student_intelligence(s167,h).student_intelligence268,7380 -student_intelligence(s167,h).student_intelligence268,7380 -student_intelligence(s168,h).student_intelligence269,7410 -student_intelligence(s168,h).student_intelligence269,7410 -student_intelligence(s169,m).student_intelligence270,7440 -student_intelligence(s169,m).student_intelligence270,7440 -student_intelligence(s170,m).student_intelligence271,7470 -student_intelligence(s170,m).student_intelligence271,7470 -student_intelligence(s171,m).student_intelligence272,7500 -student_intelligence(s171,m).student_intelligence272,7500 -student_intelligence(s172,h).student_intelligence273,7530 -student_intelligence(s172,h).student_intelligence273,7530 -student_intelligence(s173,h).student_intelligence274,7560 -student_intelligence(s173,h).student_intelligence274,7560 -student_intelligence(s174,h).student_intelligence275,7590 -student_intelligence(s174,h).student_intelligence275,7590 -student_intelligence(s175,m).student_intelligence276,7620 -student_intelligence(s175,m).student_intelligence276,7620 -student_intelligence(s176,m).student_intelligence277,7650 -student_intelligence(s176,m).student_intelligence277,7650 -student_intelligence(s177,m).student_intelligence278,7680 -student_intelligence(s177,m).student_intelligence278,7680 -student_intelligence(s178,h).student_intelligence279,7710 -student_intelligence(s178,h).student_intelligence279,7710 -student_intelligence(s179,m).student_intelligence280,7740 -student_intelligence(s179,m).student_intelligence280,7740 -student_intelligence(s180,m).student_intelligence281,7770 -student_intelligence(s180,m).student_intelligence281,7770 -student_intelligence(s181,h).student_intelligence282,7800 -student_intelligence(s181,h).student_intelligence282,7800 -student_intelligence(s182,m).student_intelligence283,7830 -student_intelligence(s182,m).student_intelligence283,7830 -student_intelligence(s183,h).student_intelligence284,7860 -student_intelligence(s183,h).student_intelligence284,7860 -student_intelligence(s184,h).student_intelligence285,7890 -student_intelligence(s184,h).student_intelligence285,7890 -student_intelligence(s185,m).student_intelligence286,7920 -student_intelligence(s185,m).student_intelligence286,7920 -student_intelligence(s186,m).student_intelligence287,7950 -student_intelligence(s186,m).student_intelligence287,7950 -student_intelligence(s187,m).student_intelligence288,7980 -student_intelligence(s187,m).student_intelligence288,7980 -student_intelligence(s188,h).student_intelligence289,8010 -student_intelligence(s188,h).student_intelligence289,8010 -student_intelligence(s189,m).student_intelligence290,8040 -student_intelligence(s189,m).student_intelligence290,8040 -student_intelligence(s190,h).student_intelligence291,8070 -student_intelligence(s190,h).student_intelligence291,8070 -student_intelligence(s191,l).student_intelligence292,8100 -student_intelligence(s191,l).student_intelligence292,8100 -student_intelligence(s192,h).student_intelligence293,8130 -student_intelligence(s192,h).student_intelligence293,8130 -student_intelligence(s193,m).student_intelligence294,8160 -student_intelligence(s193,m).student_intelligence294,8160 -student_intelligence(s194,m).student_intelligence295,8190 -student_intelligence(s194,m).student_intelligence295,8190 -student_intelligence(s195,m).student_intelligence296,8220 -student_intelligence(s195,m).student_intelligence296,8220 -student_intelligence(s196,h).student_intelligence297,8250 -student_intelligence(s196,h).student_intelligence297,8250 -student_intelligence(s197,h).student_intelligence298,8280 -student_intelligence(s197,h).student_intelligence298,8280 -student_intelligence(s198,h).student_intelligence299,8310 -student_intelligence(s198,h).student_intelligence299,8310 -student_intelligence(s199,m).student_intelligence300,8340 -student_intelligence(s199,m).student_intelligence300,8340 -student_intelligence(s200,h).student_intelligence301,8370 -student_intelligence(s200,h).student_intelligence301,8370 -student_intelligence(s201,l).student_intelligence302,8400 -student_intelligence(s201,l).student_intelligence302,8400 -student_intelligence(s202,h).student_intelligence303,8430 -student_intelligence(s202,h).student_intelligence303,8430 -student_intelligence(s203,m).student_intelligence304,8460 -student_intelligence(s203,m).student_intelligence304,8460 -student_intelligence(s204,h).student_intelligence305,8490 -student_intelligence(s204,h).student_intelligence305,8490 -student_intelligence(s205,h).student_intelligence306,8520 -student_intelligence(s205,h).student_intelligence306,8520 -student_intelligence(s206,h).student_intelligence307,8550 -student_intelligence(s206,h).student_intelligence307,8550 -student_intelligence(s207,h).student_intelligence308,8580 -student_intelligence(s207,h).student_intelligence308,8580 -student_intelligence(s208,m).student_intelligence309,8610 -student_intelligence(s208,m).student_intelligence309,8610 -student_intelligence(s209,h).student_intelligence310,8640 -student_intelligence(s209,h).student_intelligence310,8640 -student_intelligence(s210,m).student_intelligence311,8670 -student_intelligence(s210,m).student_intelligence311,8670 -student_intelligence(s211,m).student_intelligence312,8700 -student_intelligence(s211,m).student_intelligence312,8700 -student_intelligence(s212,m).student_intelligence313,8730 -student_intelligence(s212,m).student_intelligence313,8730 -student_intelligence(s213,h).student_intelligence314,8760 -student_intelligence(s213,h).student_intelligence314,8760 -student_intelligence(s214,h).student_intelligence315,8790 -student_intelligence(s214,h).student_intelligence315,8790 -student_intelligence(s215,m).student_intelligence316,8820 -student_intelligence(s215,m).student_intelligence316,8820 -student_intelligence(s216,h).student_intelligence317,8850 -student_intelligence(s216,h).student_intelligence317,8850 -student_intelligence(s217,m).student_intelligence318,8880 -student_intelligence(s217,m).student_intelligence318,8880 -student_intelligence(s218,h).student_intelligence319,8910 -student_intelligence(s218,h).student_intelligence319,8910 -student_intelligence(s219,h).student_intelligence320,8940 -student_intelligence(s219,h).student_intelligence320,8940 -student_intelligence(s220,h).student_intelligence321,8970 -student_intelligence(s220,h).student_intelligence321,8970 -student_intelligence(s221,h).student_intelligence322,9000 -student_intelligence(s221,h).student_intelligence322,9000 -student_intelligence(s222,h).student_intelligence323,9030 -student_intelligence(s222,h).student_intelligence323,9030 -student_intelligence(s223,m).student_intelligence324,9060 -student_intelligence(s223,m).student_intelligence324,9060 -student_intelligence(s224,l).student_intelligence325,9090 -student_intelligence(s224,l).student_intelligence325,9090 -student_intelligence(s225,l).student_intelligence326,9120 -student_intelligence(s225,l).student_intelligence326,9120 -student_intelligence(s226,m).student_intelligence327,9150 -student_intelligence(s226,m).student_intelligence327,9150 -student_intelligence(s227,h).student_intelligence328,9180 -student_intelligence(s227,h).student_intelligence328,9180 -student_intelligence(s228,h).student_intelligence329,9210 -student_intelligence(s228,h).student_intelligence329,9210 -student_intelligence(s229,m).student_intelligence330,9240 -student_intelligence(s229,m).student_intelligence330,9240 -student_intelligence(s230,m).student_intelligence331,9270 -student_intelligence(s230,m).student_intelligence331,9270 -student_intelligence(s231,h).student_intelligence332,9300 -student_intelligence(s231,h).student_intelligence332,9300 -student_intelligence(s232,m).student_intelligence333,9330 -student_intelligence(s232,m).student_intelligence333,9330 -student_intelligence(s233,h).student_intelligence334,9360 -student_intelligence(s233,h).student_intelligence334,9360 -student_intelligence(s234,l).student_intelligence335,9390 -student_intelligence(s234,l).student_intelligence335,9390 -student_intelligence(s235,h).student_intelligence336,9420 -student_intelligence(s235,h).student_intelligence336,9420 -student_intelligence(s236,h).student_intelligence337,9450 -student_intelligence(s236,h).student_intelligence337,9450 -student_intelligence(s237,h).student_intelligence338,9480 -student_intelligence(s237,h).student_intelligence338,9480 -student_intelligence(s238,h).student_intelligence339,9510 -student_intelligence(s238,h).student_intelligence339,9510 -student_intelligence(s239,h).student_intelligence340,9540 -student_intelligence(s239,h).student_intelligence340,9540 -student_intelligence(s240,h).student_intelligence341,9570 -student_intelligence(s240,h).student_intelligence341,9570 -student_intelligence(s241,m).student_intelligence342,9600 -student_intelligence(s241,m).student_intelligence342,9600 -student_intelligence(s242,l).student_intelligence343,9630 -student_intelligence(s242,l).student_intelligence343,9630 -student_intelligence(s243,h).student_intelligence344,9660 -student_intelligence(s243,h).student_intelligence344,9660 -student_intelligence(s244,h).student_intelligence345,9690 -student_intelligence(s244,h).student_intelligence345,9690 -student_intelligence(s245,l).student_intelligence346,9720 -student_intelligence(s245,l).student_intelligence346,9720 -student_intelligence(s246,m).student_intelligence347,9750 -student_intelligence(s246,m).student_intelligence347,9750 -student_intelligence(s247,h).student_intelligence348,9780 -student_intelligence(s247,h).student_intelligence348,9780 -student_intelligence(s248,m).student_intelligence349,9810 -student_intelligence(s248,m).student_intelligence349,9810 -student_intelligence(s249,h).student_intelligence350,9840 -student_intelligence(s249,h).student_intelligence350,9840 -student_intelligence(s250,m).student_intelligence351,9870 -student_intelligence(s250,m).student_intelligence351,9870 -student_intelligence(s251,h).student_intelligence352,9900 -student_intelligence(s251,h).student_intelligence352,9900 -student_intelligence(s252,m).student_intelligence353,9930 -student_intelligence(s252,m).student_intelligence353,9930 -student_intelligence(s253,m).student_intelligence354,9960 -student_intelligence(s253,m).student_intelligence354,9960 -student_intelligence(s254,m).student_intelligence355,9990 -student_intelligence(s254,m).student_intelligence355,9990 -student_intelligence(s255,m).student_intelligence356,10020 -student_intelligence(s255,m).student_intelligence356,10020 -professor_popularity(p0,h).professor_popularity359,10052 -professor_popularity(p0,h).professor_popularity359,10052 -professor_popularity(p1,h).professor_popularity360,10080 -professor_popularity(p1,h).professor_popularity360,10080 -professor_popularity(p2,l).professor_popularity361,10108 -professor_popularity(p2,l).professor_popularity361,10108 -professor_popularity(p3,h).professor_popularity362,10136 -professor_popularity(p3,h).professor_popularity362,10136 -professor_popularity(p4,h).professor_popularity363,10164 -professor_popularity(p4,h).professor_popularity363,10164 -professor_popularity(p5,h).professor_popularity364,10192 -professor_popularity(p5,h).professor_popularity364,10192 -professor_popularity(p6,l).professor_popularity365,10220 -professor_popularity(p6,l).professor_popularity365,10220 -professor_popularity(p7,l).professor_popularity366,10248 -professor_popularity(p7,l).professor_popularity366,10248 -professor_popularity(p8,m).professor_popularity367,10276 -professor_popularity(p8,m).professor_popularity367,10276 -professor_popularity(p9,h).professor_popularity368,10304 -professor_popularity(p9,h).professor_popularity368,10304 -professor_popularity(p10,l).professor_popularity369,10332 -professor_popularity(p10,l).professor_popularity369,10332 -professor_popularity(p11,h).professor_popularity370,10361 -professor_popularity(p11,h).professor_popularity370,10361 -professor_popularity(p12,h).professor_popularity371,10390 -professor_popularity(p12,h).professor_popularity371,10390 -professor_popularity(p13,l).professor_popularity372,10419 -professor_popularity(p13,l).professor_popularity372,10419 -professor_popularity(p14,m).professor_popularity373,10448 -professor_popularity(p14,m).professor_popularity373,10448 -professor_popularity(p15,h).professor_popularity374,10477 -professor_popularity(p15,h).professor_popularity374,10477 -professor_popularity(p16,m).professor_popularity375,10506 -professor_popularity(p16,m).professor_popularity375,10506 -professor_popularity(p17,h).professor_popularity376,10535 -professor_popularity(p17,h).professor_popularity376,10535 -professor_popularity(p18,l).professor_popularity377,10564 -professor_popularity(p18,l).professor_popularity377,10564 -professor_popularity(p19,h).professor_popularity378,10593 -professor_popularity(p19,h).professor_popularity378,10593 -professor_popularity(p20,h).professor_popularity379,10622 -professor_popularity(p20,h).professor_popularity379,10622 -professor_popularity(p21,h).professor_popularity380,10651 -professor_popularity(p21,h).professor_popularity380,10651 -professor_popularity(p22,h).professor_popularity381,10680 -professor_popularity(p22,h).professor_popularity381,10680 -professor_popularity(p23,l).professor_popularity382,10709 -professor_popularity(p23,l).professor_popularity382,10709 -professor_popularity(p24,l).professor_popularity383,10738 -professor_popularity(p24,l).professor_popularity383,10738 -professor_popularity(p25,l).professor_popularity384,10767 -professor_popularity(p25,l).professor_popularity384,10767 -professor_popularity(p26,m).professor_popularity385,10796 -professor_popularity(p26,m).professor_popularity385,10796 -professor_popularity(p27,h).professor_popularity386,10825 -professor_popularity(p27,h).professor_popularity386,10825 -professor_popularity(p28,h).professor_popularity387,10854 -professor_popularity(p28,h).professor_popularity387,10854 -professor_popularity(p29,l).professor_popularity388,10883 -professor_popularity(p29,l).professor_popularity388,10883 -professor_popularity(p30,m).professor_popularity389,10912 -professor_popularity(p30,m).professor_popularity389,10912 -professor_popularity(p31,h).professor_popularity390,10941 -professor_popularity(p31,h).professor_popularity390,10941 -registration_grade(r0,a).registration_grade393,10972 -registration_grade(r0,a).registration_grade393,10972 -registration_grade(r1,c).registration_grade394,10998 -registration_grade(r1,c).registration_grade394,10998 -registration_grade(r2,c).registration_grade395,11024 -registration_grade(r2,c).registration_grade395,11024 -registration_grade(r3,c).registration_grade396,11050 -registration_grade(r3,c).registration_grade396,11050 -registration_grade(r4,c).registration_grade397,11076 -registration_grade(r4,c).registration_grade397,11076 -registration_grade(r5,c).registration_grade398,11102 -registration_grade(r5,c).registration_grade398,11102 -registration_grade(r6,a).registration_grade399,11128 -registration_grade(r6,a).registration_grade399,11128 -registration_grade(r7,a).registration_grade400,11154 -registration_grade(r7,a).registration_grade400,11154 -registration_grade(r8,b).registration_grade401,11180 -registration_grade(r8,b).registration_grade401,11180 -registration_grade(r9,a).registration_grade402,11206 -registration_grade(r9,a).registration_grade402,11206 -registration_grade(r10,a).registration_grade403,11232 -registration_grade(r10,a).registration_grade403,11232 -registration_grade(r11,a).registration_grade404,11259 -registration_grade(r11,a).registration_grade404,11259 -registration_grade(r12,a).registration_grade405,11286 -registration_grade(r12,a).registration_grade405,11286 -registration_grade(r13,a).registration_grade406,11313 -registration_grade(r13,a).registration_grade406,11313 -registration_grade(r14,b).registration_grade407,11340 -registration_grade(r14,b).registration_grade407,11340 -registration_grade(r15,b).registration_grade408,11367 -registration_grade(r15,b).registration_grade408,11367 -registration_grade(r16,a).registration_grade409,11394 -registration_grade(r16,a).registration_grade409,11394 -registration_grade(r17,b).registration_grade410,11421 -registration_grade(r17,b).registration_grade410,11421 -registration_grade(r18,c).registration_grade411,11448 -registration_grade(r18,c).registration_grade411,11448 -registration_grade(r19,c).registration_grade412,11475 -registration_grade(r19,c).registration_grade412,11475 -registration_grade(r20,c).registration_grade413,11502 -registration_grade(r20,c).registration_grade413,11502 -registration_grade(r21,a).registration_grade414,11529 -registration_grade(r21,a).registration_grade414,11529 -registration_grade(r22,a).registration_grade415,11556 -registration_grade(r22,a).registration_grade415,11556 -registration_grade(r23,b).registration_grade416,11583 -registration_grade(r23,b).registration_grade416,11583 -registration_grade(r24,b).registration_grade417,11610 -registration_grade(r24,b).registration_grade417,11610 -registration_grade(r25,a).registration_grade418,11637 -registration_grade(r25,a).registration_grade418,11637 -registration_grade(r26,a).registration_grade419,11664 -registration_grade(r26,a).registration_grade419,11664 -registration_grade(r27,b).registration_grade420,11691 -registration_grade(r27,b).registration_grade420,11691 -registration_grade(r28,c).registration_grade421,11718 -registration_grade(r28,c).registration_grade421,11718 -registration_grade(r29,b).registration_grade422,11745 -registration_grade(r29,b).registration_grade422,11745 -registration_grade(r30,c).registration_grade423,11772 -registration_grade(r30,c).registration_grade423,11772 -registration_grade(r31,b).registration_grade424,11799 -registration_grade(r31,b).registration_grade424,11799 -registration_grade(r32,c).registration_grade425,11826 -registration_grade(r32,c).registration_grade425,11826 -registration_grade(r33,a).registration_grade426,11853 -registration_grade(r33,a).registration_grade426,11853 -registration_grade(r34,c).registration_grade427,11880 -registration_grade(r34,c).registration_grade427,11880 -registration_grade(r35,c).registration_grade428,11907 -registration_grade(r35,c).registration_grade428,11907 -registration_grade(r36,a).registration_grade429,11934 -registration_grade(r36,a).registration_grade429,11934 -registration_grade(r37,a).registration_grade430,11961 -registration_grade(r37,a).registration_grade430,11961 -registration_grade(r38,c).registration_grade431,11988 -registration_grade(r38,c).registration_grade431,11988 -registration_grade(r39,a).registration_grade432,12015 -registration_grade(r39,a).registration_grade432,12015 -registration_grade(r40,a).registration_grade433,12042 -registration_grade(r40,a).registration_grade433,12042 -registration_grade(r41,c).registration_grade434,12069 -registration_grade(r41,c).registration_grade434,12069 -registration_grade(r42,b).registration_grade435,12096 -registration_grade(r42,b).registration_grade435,12096 -registration_grade(r43,a).registration_grade436,12123 -registration_grade(r43,a).registration_grade436,12123 -registration_grade(r44,a).registration_grade437,12150 -registration_grade(r44,a).registration_grade437,12150 -registration_grade(r45,a).registration_grade438,12177 -registration_grade(r45,a).registration_grade438,12177 -registration_grade(r46,a).registration_grade439,12204 -registration_grade(r46,a).registration_grade439,12204 -registration_grade(r47,b).registration_grade440,12231 -registration_grade(r47,b).registration_grade440,12231 -registration_grade(r48,b).registration_grade441,12258 -registration_grade(r48,b).registration_grade441,12258 -registration_grade(r49,b).registration_grade442,12285 -registration_grade(r49,b).registration_grade442,12285 -registration_grade(r50,b).registration_grade443,12312 -registration_grade(r50,b).registration_grade443,12312 -registration_grade(r51,b).registration_grade444,12339 -registration_grade(r51,b).registration_grade444,12339 -registration_grade(r52,b).registration_grade445,12366 -registration_grade(r52,b).registration_grade445,12366 -registration_grade(r53,a).registration_grade446,12393 -registration_grade(r53,a).registration_grade446,12393 -registration_grade(r54,b).registration_grade447,12420 -registration_grade(r54,b).registration_grade447,12420 -registration_grade(r55,a).registration_grade448,12447 -registration_grade(r55,a).registration_grade448,12447 -registration_grade(r56,c).registration_grade449,12474 -registration_grade(r56,c).registration_grade449,12474 -registration_grade(r57,c).registration_grade450,12501 -registration_grade(r57,c).registration_grade450,12501 -registration_grade(r58,a).registration_grade451,12528 -registration_grade(r58,a).registration_grade451,12528 -registration_grade(r59,c).registration_grade452,12555 -registration_grade(r59,c).registration_grade452,12555 -registration_grade(r60,a).registration_grade453,12582 -registration_grade(r60,a).registration_grade453,12582 -registration_grade(r61,a).registration_grade454,12609 -registration_grade(r61,a).registration_grade454,12609 -registration_grade(r62,a).registration_grade455,12636 -registration_grade(r62,a).registration_grade455,12636 -registration_grade(r63,b).registration_grade456,12663 -registration_grade(r63,b).registration_grade456,12663 -registration_grade(r64,b).registration_grade457,12690 -registration_grade(r64,b).registration_grade457,12690 -registration_grade(r65,b).registration_grade458,12717 -registration_grade(r65,b).registration_grade458,12717 -registration_grade(r66,b).registration_grade459,12744 -registration_grade(r66,b).registration_grade459,12744 -registration_grade(r67,b).registration_grade460,12771 -registration_grade(r67,b).registration_grade460,12771 -registration_grade(r68,a).registration_grade461,12798 -registration_grade(r68,a).registration_grade461,12798 -registration_grade(r69,b).registration_grade462,12825 -registration_grade(r69,b).registration_grade462,12825 -registration_grade(r70,c).registration_grade463,12852 -registration_grade(r70,c).registration_grade463,12852 -registration_grade(r71,b).registration_grade464,12879 -registration_grade(r71,b).registration_grade464,12879 -registration_grade(r72,a).registration_grade465,12906 -registration_grade(r72,a).registration_grade465,12906 -registration_grade(r73,b).registration_grade466,12933 -registration_grade(r73,b).registration_grade466,12933 -registration_grade(r74,a).registration_grade467,12960 -registration_grade(r74,a).registration_grade467,12960 -registration_grade(r75,b).registration_grade468,12987 -registration_grade(r75,b).registration_grade468,12987 -registration_grade(r76,c).registration_grade469,13014 -registration_grade(r76,c).registration_grade469,13014 -registration_grade(r77,a).registration_grade470,13041 -registration_grade(r77,a).registration_grade470,13041 -registration_grade(r78,b).registration_grade471,13068 -registration_grade(r78,b).registration_grade471,13068 -registration_grade(r79,a).registration_grade472,13095 -registration_grade(r79,a).registration_grade472,13095 -registration_grade(r80,b).registration_grade473,13122 -registration_grade(r80,b).registration_grade473,13122 -registration_grade(r81,b).registration_grade474,13149 -registration_grade(r81,b).registration_grade474,13149 -registration_grade(r82,a).registration_grade475,13176 -registration_grade(r82,a).registration_grade475,13176 -registration_grade(r83,a).registration_grade476,13203 -registration_grade(r83,a).registration_grade476,13203 -registration_grade(r84,c).registration_grade477,13230 -registration_grade(r84,c).registration_grade477,13230 -registration_grade(r85,b).registration_grade478,13257 -registration_grade(r85,b).registration_grade478,13257 -registration_grade(r86,b).registration_grade479,13284 -registration_grade(r86,b).registration_grade479,13284 -registration_grade(r87,b).registration_grade480,13311 -registration_grade(r87,b).registration_grade480,13311 -registration_grade(r88,c).registration_grade481,13338 -registration_grade(r88,c).registration_grade481,13338 -registration_grade(r89,c).registration_grade482,13365 -registration_grade(r89,c).registration_grade482,13365 -registration_grade(r90,c).registration_grade483,13392 -registration_grade(r90,c).registration_grade483,13392 -registration_grade(r91,a).registration_grade484,13419 -registration_grade(r91,a).registration_grade484,13419 -registration_grade(r92,d).registration_grade485,13446 -registration_grade(r92,d).registration_grade485,13446 -registration_grade(r93,b).registration_grade486,13473 -registration_grade(r93,b).registration_grade486,13473 -registration_grade(r94,c).registration_grade487,13500 -registration_grade(r94,c).registration_grade487,13500 -registration_grade(r95,b).registration_grade488,13527 -registration_grade(r95,b).registration_grade488,13527 -registration_grade(r96,a).registration_grade489,13554 -registration_grade(r96,a).registration_grade489,13554 -registration_grade(r97,a).registration_grade490,13581 -registration_grade(r97,a).registration_grade490,13581 -registration_grade(r98,b).registration_grade491,13608 -registration_grade(r98,b).registration_grade491,13608 -registration_grade(r99,b).registration_grade492,13635 -registration_grade(r99,b).registration_grade492,13635 -registration_grade(r100,a).registration_grade493,13662 -registration_grade(r100,a).registration_grade493,13662 -registration_grade(r101,a).registration_grade494,13690 -registration_grade(r101,a).registration_grade494,13690 -registration_grade(r102,a).registration_grade495,13718 -registration_grade(r102,a).registration_grade495,13718 -registration_grade(r103,b).registration_grade496,13746 -registration_grade(r103,b).registration_grade496,13746 -registration_grade(r104,b).registration_grade497,13774 -registration_grade(r104,b).registration_grade497,13774 -registration_grade(r105,c).registration_grade498,13802 -registration_grade(r105,c).registration_grade498,13802 -registration_grade(r106,b).registration_grade499,13830 -registration_grade(r106,b).registration_grade499,13830 -registration_grade(r107,b).registration_grade500,13858 -registration_grade(r107,b).registration_grade500,13858 -registration_grade(r108,b).registration_grade501,13886 -registration_grade(r108,b).registration_grade501,13886 -registration_grade(r109,b).registration_grade502,13914 -registration_grade(r109,b).registration_grade502,13914 -registration_grade(r110,a).registration_grade503,13942 -registration_grade(r110,a).registration_grade503,13942 -registration_grade(r111,a).registration_grade504,13970 -registration_grade(r111,a).registration_grade504,13970 -registration_grade(r112,a).registration_grade505,13998 -registration_grade(r112,a).registration_grade505,13998 -registration_grade(r113,c).registration_grade506,14026 -registration_grade(r113,c).registration_grade506,14026 -registration_grade(r114,c).registration_grade507,14054 -registration_grade(r114,c).registration_grade507,14054 -registration_grade(r115,d).registration_grade508,14082 -registration_grade(r115,d).registration_grade508,14082 -registration_grade(r116,b).registration_grade509,14110 -registration_grade(r116,b).registration_grade509,14110 -registration_grade(r117,c).registration_grade510,14138 -registration_grade(r117,c).registration_grade510,14138 -registration_grade(r118,a).registration_grade511,14166 -registration_grade(r118,a).registration_grade511,14166 -registration_grade(r119,b).registration_grade512,14194 -registration_grade(r119,b).registration_grade512,14194 -registration_grade(r120,b).registration_grade513,14222 -registration_grade(r120,b).registration_grade513,14222 -registration_grade(r121,c).registration_grade514,14250 -registration_grade(r121,c).registration_grade514,14250 -registration_grade(r122,b).registration_grade515,14278 -registration_grade(r122,b).registration_grade515,14278 -registration_grade(r123,a).registration_grade516,14306 -registration_grade(r123,a).registration_grade516,14306 -registration_grade(r124,a).registration_grade517,14334 -registration_grade(r124,a).registration_grade517,14334 -registration_grade(r125,b).registration_grade518,14362 -registration_grade(r125,b).registration_grade518,14362 -registration_grade(r126,b).registration_grade519,14390 -registration_grade(r126,b).registration_grade519,14390 -registration_grade(r127,b).registration_grade520,14418 -registration_grade(r127,b).registration_grade520,14418 -registration_grade(r128,a).registration_grade521,14446 -registration_grade(r128,a).registration_grade521,14446 -registration_grade(r129,c).registration_grade522,14474 -registration_grade(r129,c).registration_grade522,14474 -registration_grade(r130,a).registration_grade523,14502 -registration_grade(r130,a).registration_grade523,14502 -registration_grade(r131,a).registration_grade524,14530 -registration_grade(r131,a).registration_grade524,14530 -registration_grade(r132,b).registration_grade525,14558 -registration_grade(r132,b).registration_grade525,14558 -registration_grade(r133,a).registration_grade526,14586 -registration_grade(r133,a).registration_grade526,14586 -registration_grade(r134,a).registration_grade527,14614 -registration_grade(r134,a).registration_grade527,14614 -registration_grade(r135,b).registration_grade528,14642 -registration_grade(r135,b).registration_grade528,14642 -registration_grade(r136,a).registration_grade529,14670 -registration_grade(r136,a).registration_grade529,14670 -registration_grade(r137,b).registration_grade530,14698 -registration_grade(r137,b).registration_grade530,14698 -registration_grade(r138,a).registration_grade531,14726 -registration_grade(r138,a).registration_grade531,14726 -registration_grade(r139,a).registration_grade532,14754 -registration_grade(r139,a).registration_grade532,14754 -registration_grade(r140,a).registration_grade533,14782 -registration_grade(r140,a).registration_grade533,14782 -registration_grade(r141,b).registration_grade534,14810 -registration_grade(r141,b).registration_grade534,14810 -registration_grade(r142,b).registration_grade535,14838 -registration_grade(r142,b).registration_grade535,14838 -registration_grade(r143,b).registration_grade536,14866 -registration_grade(r143,b).registration_grade536,14866 -registration_grade(r144,c).registration_grade537,14894 -registration_grade(r144,c).registration_grade537,14894 -registration_grade(r145,b).registration_grade538,14922 -registration_grade(r145,b).registration_grade538,14922 -registration_grade(r146,a).registration_grade539,14950 -registration_grade(r146,a).registration_grade539,14950 -registration_grade(r147,a).registration_grade540,14978 -registration_grade(r147,a).registration_grade540,14978 -registration_grade(r148,a).registration_grade541,15006 -registration_grade(r148,a).registration_grade541,15006 -registration_grade(r149,a).registration_grade542,15034 -registration_grade(r149,a).registration_grade542,15034 -registration_grade(r150,b).registration_grade543,15062 -registration_grade(r150,b).registration_grade543,15062 -registration_grade(r151,a).registration_grade544,15090 -registration_grade(r151,a).registration_grade544,15090 -registration_grade(r152,a).registration_grade545,15118 -registration_grade(r152,a).registration_grade545,15118 -registration_grade(r153,b).registration_grade546,15146 -registration_grade(r153,b).registration_grade546,15146 -registration_grade(r154,a).registration_grade547,15174 -registration_grade(r154,a).registration_grade547,15174 -registration_grade(r155,c).registration_grade548,15202 -registration_grade(r155,c).registration_grade548,15202 -registration_grade(r156,b).registration_grade549,15230 -registration_grade(r156,b).registration_grade549,15230 -registration_grade(r157,b).registration_grade550,15258 -registration_grade(r157,b).registration_grade550,15258 -registration_grade(r158,c).registration_grade551,15286 -registration_grade(r158,c).registration_grade551,15286 -registration_grade(r159,b).registration_grade552,15314 -registration_grade(r159,b).registration_grade552,15314 -registration_grade(r160,a).registration_grade553,15342 -registration_grade(r160,a).registration_grade553,15342 -registration_grade(r161,a).registration_grade554,15370 -registration_grade(r161,a).registration_grade554,15370 -registration_grade(r162,b).registration_grade555,15398 -registration_grade(r162,b).registration_grade555,15398 -registration_grade(r163,a).registration_grade556,15426 -registration_grade(r163,a).registration_grade556,15426 -registration_grade(r164,b).registration_grade557,15454 -registration_grade(r164,b).registration_grade557,15454 -registration_grade(r165,b).registration_grade558,15482 -registration_grade(r165,b).registration_grade558,15482 -registration_grade(r166,c).registration_grade559,15510 -registration_grade(r166,c).registration_grade559,15510 -registration_grade(r167,a).registration_grade560,15538 -registration_grade(r167,a).registration_grade560,15538 -registration_grade(r168,a).registration_grade561,15566 -registration_grade(r168,a).registration_grade561,15566 -registration_grade(r169,a).registration_grade562,15594 -registration_grade(r169,a).registration_grade562,15594 -registration_grade(r170,a).registration_grade563,15622 -registration_grade(r170,a).registration_grade563,15622 -registration_grade(r171,a).registration_grade564,15650 -registration_grade(r171,a).registration_grade564,15650 -registration_grade(r172,c).registration_grade565,15678 -registration_grade(r172,c).registration_grade565,15678 -registration_grade(r173,b).registration_grade566,15706 -registration_grade(r173,b).registration_grade566,15706 -registration_grade(r174,a).registration_grade567,15734 -registration_grade(r174,a).registration_grade567,15734 -registration_grade(r175,b).registration_grade568,15762 -registration_grade(r175,b).registration_grade568,15762 -registration_grade(r176,b).registration_grade569,15790 -registration_grade(r176,b).registration_grade569,15790 -registration_grade(r177,c).registration_grade570,15818 -registration_grade(r177,c).registration_grade570,15818 -registration_grade(r178,b).registration_grade571,15846 -registration_grade(r178,b).registration_grade571,15846 -registration_grade(r179,d).registration_grade572,15874 -registration_grade(r179,d).registration_grade572,15874 -registration_grade(r180,c).registration_grade573,15902 -registration_grade(r180,c).registration_grade573,15902 -registration_grade(r181,a).registration_grade574,15930 -registration_grade(r181,a).registration_grade574,15930 -registration_grade(r182,b).registration_grade575,15958 -registration_grade(r182,b).registration_grade575,15958 -registration_grade(r183,a).registration_grade576,15986 -registration_grade(r183,a).registration_grade576,15986 -registration_grade(r184,a).registration_grade577,16014 -registration_grade(r184,a).registration_grade577,16014 -registration_grade(r185,b).registration_grade578,16042 -registration_grade(r185,b).registration_grade578,16042 -registration_grade(r186,c).registration_grade579,16070 -registration_grade(r186,c).registration_grade579,16070 -registration_grade(r187,a).registration_grade580,16098 -registration_grade(r187,a).registration_grade580,16098 -registration_grade(r188,a).registration_grade581,16126 -registration_grade(r188,a).registration_grade581,16126 -registration_grade(r189,a).registration_grade582,16154 -registration_grade(r189,a).registration_grade582,16154 -registration_grade(r190,a).registration_grade583,16182 -registration_grade(r190,a).registration_grade583,16182 -registration_grade(r191,b).registration_grade584,16210 -registration_grade(r191,b).registration_grade584,16210 -registration_grade(r192,b).registration_grade585,16238 -registration_grade(r192,b).registration_grade585,16238 -registration_grade(r193,c).registration_grade586,16266 -registration_grade(r193,c).registration_grade586,16266 -registration_grade(r194,b).registration_grade587,16294 -registration_grade(r194,b).registration_grade587,16294 -registration_grade(r195,c).registration_grade588,16322 -registration_grade(r195,c).registration_grade588,16322 -registration_grade(r196,b).registration_grade589,16350 -registration_grade(r196,b).registration_grade589,16350 -registration_grade(r197,a).registration_grade590,16378 -registration_grade(r197,a).registration_grade590,16378 -registration_grade(r198,a).registration_grade591,16406 -registration_grade(r198,a).registration_grade591,16406 -registration_grade(r199,b).registration_grade592,16434 -registration_grade(r199,b).registration_grade592,16434 -registration_grade(r200,b).registration_grade593,16462 -registration_grade(r200,b).registration_grade593,16462 -registration_grade(r201,c).registration_grade594,16490 -registration_grade(r201,c).registration_grade594,16490 -registration_grade(r202,a).registration_grade595,16518 -registration_grade(r202,a).registration_grade595,16518 -registration_grade(r203,a).registration_grade596,16546 -registration_grade(r203,a).registration_grade596,16546 -registration_grade(r204,b).registration_grade597,16574 -registration_grade(r204,b).registration_grade597,16574 -registration_grade(r205,a).registration_grade598,16602 -registration_grade(r205,a).registration_grade598,16602 -registration_grade(r206,a).registration_grade599,16630 -registration_grade(r206,a).registration_grade599,16630 -registration_grade(r207,a).registration_grade600,16658 -registration_grade(r207,a).registration_grade600,16658 -registration_grade(r208,c).registration_grade601,16686 -registration_grade(r208,c).registration_grade601,16686 -registration_grade(r209,b).registration_grade602,16714 -registration_grade(r209,b).registration_grade602,16714 -registration_grade(r210,a).registration_grade603,16742 -registration_grade(r210,a).registration_grade603,16742 -registration_grade(r211,d).registration_grade604,16770 -registration_grade(r211,d).registration_grade604,16770 -registration_grade(r212,b).registration_grade605,16798 -registration_grade(r212,b).registration_grade605,16798 -registration_grade(r213,b).registration_grade606,16826 -registration_grade(r213,b).registration_grade606,16826 -registration_grade(r214,a).registration_grade607,16854 -registration_grade(r214,a).registration_grade607,16854 -registration_grade(r215,a).registration_grade608,16882 -registration_grade(r215,a).registration_grade608,16882 -registration_grade(r216,b).registration_grade609,16910 -registration_grade(r216,b).registration_grade609,16910 -registration_grade(r217,a).registration_grade610,16938 -registration_grade(r217,a).registration_grade610,16938 -registration_grade(r218,b).registration_grade611,16966 -registration_grade(r218,b).registration_grade611,16966 -registration_grade(r219,a).registration_grade612,16994 -registration_grade(r219,a).registration_grade612,16994 -registration_grade(r220,a).registration_grade613,17022 -registration_grade(r220,a).registration_grade613,17022 -registration_grade(r221,b).registration_grade614,17050 -registration_grade(r221,b).registration_grade614,17050 -registration_grade(r222,c).registration_grade615,17078 -registration_grade(r222,c).registration_grade615,17078 -registration_grade(r223,a).registration_grade616,17106 -registration_grade(r223,a).registration_grade616,17106 -registration_grade(r224,b).registration_grade617,17134 -registration_grade(r224,b).registration_grade617,17134 -registration_grade(r225,b).registration_grade618,17162 -registration_grade(r225,b).registration_grade618,17162 -registration_grade(r226,d).registration_grade619,17190 -registration_grade(r226,d).registration_grade619,17190 -registration_grade(r227,b).registration_grade620,17218 -registration_grade(r227,b).registration_grade620,17218 -registration_grade(r228,c).registration_grade621,17246 -registration_grade(r228,c).registration_grade621,17246 -registration_grade(r229,b).registration_grade622,17274 -registration_grade(r229,b).registration_grade622,17274 -registration_grade(r230,a).registration_grade623,17302 -registration_grade(r230,a).registration_grade623,17302 -registration_grade(r231,c).registration_grade624,17330 -registration_grade(r231,c).registration_grade624,17330 -registration_grade(r232,a).registration_grade625,17358 -registration_grade(r232,a).registration_grade625,17358 -registration_grade(r233,b).registration_grade626,17386 -registration_grade(r233,b).registration_grade626,17386 -registration_grade(r234,b).registration_grade627,17414 -registration_grade(r234,b).registration_grade627,17414 -registration_grade(r235,c).registration_grade628,17442 -registration_grade(r235,c).registration_grade628,17442 -registration_grade(r236,b).registration_grade629,17470 -registration_grade(r236,b).registration_grade629,17470 -registration_grade(r237,c).registration_grade630,17498 -registration_grade(r237,c).registration_grade630,17498 -registration_grade(r238,d).registration_grade631,17526 -registration_grade(r238,d).registration_grade631,17526 -registration_grade(r239,b).registration_grade632,17554 -registration_grade(r239,b).registration_grade632,17554 -registration_grade(r240,b).registration_grade633,17582 -registration_grade(r240,b).registration_grade633,17582 -registration_grade(r241,a).registration_grade634,17610 -registration_grade(r241,a).registration_grade634,17610 -registration_grade(r242,b).registration_grade635,17638 -registration_grade(r242,b).registration_grade635,17638 -registration_grade(r243,a).registration_grade636,17666 -registration_grade(r243,a).registration_grade636,17666 -registration_grade(r244,b).registration_grade637,17694 -registration_grade(r244,b).registration_grade637,17694 -registration_grade(r245,a).registration_grade638,17722 -registration_grade(r245,a).registration_grade638,17722 -registration_grade(r246,b).registration_grade639,17750 -registration_grade(r246,b).registration_grade639,17750 -registration_grade(r247,c).registration_grade640,17778 -registration_grade(r247,c).registration_grade640,17778 -registration_grade(r248,b).registration_grade641,17806 -registration_grade(r248,b).registration_grade641,17806 -registration_grade(r249,a).registration_grade642,17834 -registration_grade(r249,a).registration_grade642,17834 -registration_grade(r250,a).registration_grade643,17862 -registration_grade(r250,a).registration_grade643,17862 -registration_grade(r251,a).registration_grade644,17890 -registration_grade(r251,a).registration_grade644,17890 -registration_grade(r252,b).registration_grade645,17918 -registration_grade(r252,b).registration_grade645,17918 -registration_grade(r253,a).registration_grade646,17946 -registration_grade(r253,a).registration_grade646,17946 -registration_grade(r254,b).registration_grade647,17974 -registration_grade(r254,b).registration_grade647,17974 -registration_grade(r255,a).registration_grade648,18002 -registration_grade(r255,a).registration_grade648,18002 -registration_grade(r256,a).registration_grade649,18030 -registration_grade(r256,a).registration_grade649,18030 -registration_grade(r257,b).registration_grade650,18058 -registration_grade(r257,b).registration_grade650,18058 -registration_grade(r258,a).registration_grade651,18086 -registration_grade(r258,a).registration_grade651,18086 -registration_grade(r259,a).registration_grade652,18114 -registration_grade(r259,a).registration_grade652,18114 -registration_grade(r260,b).registration_grade653,18142 -registration_grade(r260,b).registration_grade653,18142 -registration_grade(r261,a).registration_grade654,18170 -registration_grade(r261,a).registration_grade654,18170 -registration_grade(r262,a).registration_grade655,18198 -registration_grade(r262,a).registration_grade655,18198 -registration_grade(r263,a).registration_grade656,18226 -registration_grade(r263,a).registration_grade656,18226 -registration_grade(r264,c).registration_grade657,18254 -registration_grade(r264,c).registration_grade657,18254 -registration_grade(r265,a).registration_grade658,18282 -registration_grade(r265,a).registration_grade658,18282 -registration_grade(r266,a).registration_grade659,18310 -registration_grade(r266,a).registration_grade659,18310 -registration_grade(r267,a).registration_grade660,18338 -registration_grade(r267,a).registration_grade660,18338 -registration_grade(r268,c).registration_grade661,18366 -registration_grade(r268,c).registration_grade661,18366 -registration_grade(r269,a).registration_grade662,18394 -registration_grade(r269,a).registration_grade662,18394 -registration_grade(r270,c).registration_grade663,18422 -registration_grade(r270,c).registration_grade663,18422 -registration_grade(r271,b).registration_grade664,18450 -registration_grade(r271,b).registration_grade664,18450 -registration_grade(r272,c).registration_grade665,18478 -registration_grade(r272,c).registration_grade665,18478 -registration_grade(r273,b).registration_grade666,18506 -registration_grade(r273,b).registration_grade666,18506 -registration_grade(r274,c).registration_grade667,18534 -registration_grade(r274,c).registration_grade667,18534 -registration_grade(r275,a).registration_grade668,18562 -registration_grade(r275,a).registration_grade668,18562 -registration_grade(r276,a).registration_grade669,18590 -registration_grade(r276,a).registration_grade669,18590 -registration_grade(r277,a).registration_grade670,18618 -registration_grade(r277,a).registration_grade670,18618 -registration_grade(r278,a).registration_grade671,18646 -registration_grade(r278,a).registration_grade671,18646 -registration_grade(r279,a).registration_grade672,18674 -registration_grade(r279,a).registration_grade672,18674 -registration_grade(r280,b).registration_grade673,18702 -registration_grade(r280,b).registration_grade673,18702 -registration_grade(r281,b).registration_grade674,18730 -registration_grade(r281,b).registration_grade674,18730 -registration_grade(r282,d).registration_grade675,18758 -registration_grade(r282,d).registration_grade675,18758 -registration_grade(r283,a).registration_grade676,18786 -registration_grade(r283,a).registration_grade676,18786 -registration_grade(r284,b).registration_grade677,18814 -registration_grade(r284,b).registration_grade677,18814 -registration_grade(r285,b).registration_grade678,18842 -registration_grade(r285,b).registration_grade678,18842 -registration_grade(r286,a).registration_grade679,18870 -registration_grade(r286,a).registration_grade679,18870 -registration_grade(r287,b).registration_grade680,18898 -registration_grade(r287,b).registration_grade680,18898 -registration_grade(r288,b).registration_grade681,18926 -registration_grade(r288,b).registration_grade681,18926 -registration_grade(r289,d).registration_grade682,18954 -registration_grade(r289,d).registration_grade682,18954 -registration_grade(r290,b).registration_grade683,18982 -registration_grade(r290,b).registration_grade683,18982 -registration_grade(r291,c).registration_grade684,19010 -registration_grade(r291,c).registration_grade684,19010 -registration_grade(r292,b).registration_grade685,19038 -registration_grade(r292,b).registration_grade685,19038 -registration_grade(r293,a).registration_grade686,19066 -registration_grade(r293,a).registration_grade686,19066 -registration_grade(r294,a).registration_grade687,19094 -registration_grade(r294,a).registration_grade687,19094 -registration_grade(r295,a).registration_grade688,19122 -registration_grade(r295,a).registration_grade688,19122 -registration_grade(r296,b).registration_grade689,19150 -registration_grade(r296,b).registration_grade689,19150 -registration_grade(r297,a).registration_grade690,19178 -registration_grade(r297,a).registration_grade690,19178 -registration_grade(r298,a).registration_grade691,19206 -registration_grade(r298,a).registration_grade691,19206 -registration_grade(r299,a).registration_grade692,19234 -registration_grade(r299,a).registration_grade692,19234 -registration_grade(r300,b).registration_grade693,19262 -registration_grade(r300,b).registration_grade693,19262 -registration_grade(r301,b).registration_grade694,19290 -registration_grade(r301,b).registration_grade694,19290 -registration_grade(r302,b).registration_grade695,19318 -registration_grade(r302,b).registration_grade695,19318 -registration_grade(r303,a).registration_grade696,19346 -registration_grade(r303,a).registration_grade696,19346 -registration_grade(r304,a).registration_grade697,19374 -registration_grade(r304,a).registration_grade697,19374 -registration_grade(r305,b).registration_grade698,19402 -registration_grade(r305,b).registration_grade698,19402 -registration_grade(r306,b).registration_grade699,19430 -registration_grade(r306,b).registration_grade699,19430 -registration_grade(r307,c).registration_grade700,19458 -registration_grade(r307,c).registration_grade700,19458 -registration_grade(r308,c).registration_grade701,19486 -registration_grade(r308,c).registration_grade701,19486 -registration_grade(r309,c).registration_grade702,19514 -registration_grade(r309,c).registration_grade702,19514 -registration_grade(r310,a).registration_grade703,19542 -registration_grade(r310,a).registration_grade703,19542 -registration_grade(r311,a).registration_grade704,19570 -registration_grade(r311,a).registration_grade704,19570 -registration_grade(r312,a).registration_grade705,19598 -registration_grade(r312,a).registration_grade705,19598 -registration_grade(r313,a).registration_grade706,19626 -registration_grade(r313,a).registration_grade706,19626 -registration_grade(r314,c).registration_grade707,19654 -registration_grade(r314,c).registration_grade707,19654 -registration_grade(r315,c).registration_grade708,19682 -registration_grade(r315,c).registration_grade708,19682 -registration_grade(r316,c).registration_grade709,19710 -registration_grade(r316,c).registration_grade709,19710 -registration_grade(r317,c).registration_grade710,19738 -registration_grade(r317,c).registration_grade710,19738 -registration_grade(r318,c).registration_grade711,19766 -registration_grade(r318,c).registration_grade711,19766 -registration_grade(r319,c).registration_grade712,19794 -registration_grade(r319,c).registration_grade712,19794 -registration_grade(r320,b).registration_grade713,19822 -registration_grade(r320,b).registration_grade713,19822 -registration_grade(r321,b).registration_grade714,19850 -registration_grade(r321,b).registration_grade714,19850 -registration_grade(r322,a).registration_grade715,19878 -registration_grade(r322,a).registration_grade715,19878 -registration_grade(r323,c).registration_grade716,19906 -registration_grade(r323,c).registration_grade716,19906 -registration_grade(r324,b).registration_grade717,19934 -registration_grade(r324,b).registration_grade717,19934 -registration_grade(r325,b).registration_grade718,19962 -registration_grade(r325,b).registration_grade718,19962 -registration_grade(r326,a).registration_grade719,19990 -registration_grade(r326,a).registration_grade719,19990 -registration_grade(r327,c).registration_grade720,20018 -registration_grade(r327,c).registration_grade720,20018 -registration_grade(r328,b).registration_grade721,20046 -registration_grade(r328,b).registration_grade721,20046 -registration_grade(r329,a).registration_grade722,20074 -registration_grade(r329,a).registration_grade722,20074 -registration_grade(r330,b).registration_grade723,20102 -registration_grade(r330,b).registration_grade723,20102 -registration_grade(r331,a).registration_grade724,20130 -registration_grade(r331,a).registration_grade724,20130 -registration_grade(r332,a).registration_grade725,20158 -registration_grade(r332,a).registration_grade725,20158 -registration_grade(r333,a).registration_grade726,20186 -registration_grade(r333,a).registration_grade726,20186 -registration_grade(r334,c).registration_grade727,20214 -registration_grade(r334,c).registration_grade727,20214 -registration_grade(r335,d).registration_grade728,20242 -registration_grade(r335,d).registration_grade728,20242 -registration_grade(r336,b).registration_grade729,20270 -registration_grade(r336,b).registration_grade729,20270 -registration_grade(r337,b).registration_grade730,20298 -registration_grade(r337,b).registration_grade730,20298 -registration_grade(r338,b).registration_grade731,20326 -registration_grade(r338,b).registration_grade731,20326 -registration_grade(r339,a).registration_grade732,20354 -registration_grade(r339,a).registration_grade732,20354 -registration_grade(r340,b).registration_grade733,20382 -registration_grade(r340,b).registration_grade733,20382 -registration_grade(r341,b).registration_grade734,20410 -registration_grade(r341,b).registration_grade734,20410 -registration_grade(r342,b).registration_grade735,20438 -registration_grade(r342,b).registration_grade735,20438 -registration_grade(r343,a).registration_grade736,20466 -registration_grade(r343,a).registration_grade736,20466 -registration_grade(r344,c).registration_grade737,20494 -registration_grade(r344,c).registration_grade737,20494 -registration_grade(r345,b).registration_grade738,20522 -registration_grade(r345,b).registration_grade738,20522 -registration_grade(r346,b).registration_grade739,20550 -registration_grade(r346,b).registration_grade739,20550 -registration_grade(r347,b).registration_grade740,20578 -registration_grade(r347,b).registration_grade740,20578 -registration_grade(r348,a).registration_grade741,20606 -registration_grade(r348,a).registration_grade741,20606 -registration_grade(r349,a).registration_grade742,20634 -registration_grade(r349,a).registration_grade742,20634 -registration_grade(r350,b).registration_grade743,20662 -registration_grade(r350,b).registration_grade743,20662 -registration_grade(r351,b).registration_grade744,20690 -registration_grade(r351,b).registration_grade744,20690 -registration_grade(r352,d).registration_grade745,20718 -registration_grade(r352,d).registration_grade745,20718 -registration_grade(r353,c).registration_grade746,20746 -registration_grade(r353,c).registration_grade746,20746 -registration_grade(r354,c).registration_grade747,20774 -registration_grade(r354,c).registration_grade747,20774 -registration_grade(r355,c).registration_grade748,20802 -registration_grade(r355,c).registration_grade748,20802 -registration_grade(r356,b).registration_grade749,20830 -registration_grade(r356,b).registration_grade749,20830 -registration_grade(r357,b).registration_grade750,20858 -registration_grade(r357,b).registration_grade750,20858 -registration_grade(r358,a).registration_grade751,20886 -registration_grade(r358,a).registration_grade751,20886 -registration_grade(r359,a).registration_grade752,20914 -registration_grade(r359,a).registration_grade752,20914 -registration_grade(r360,a).registration_grade753,20942 -registration_grade(r360,a).registration_grade753,20942 -registration_grade(r361,b).registration_grade754,20970 -registration_grade(r361,b).registration_grade754,20970 -registration_grade(r362,c).registration_grade755,20998 -registration_grade(r362,c).registration_grade755,20998 -registration_grade(r363,c).registration_grade756,21026 -registration_grade(r363,c).registration_grade756,21026 -registration_grade(r364,b).registration_grade757,21054 -registration_grade(r364,b).registration_grade757,21054 -registration_grade(r365,b).registration_grade758,21082 -registration_grade(r365,b).registration_grade758,21082 -registration_grade(r366,b).registration_grade759,21110 -registration_grade(r366,b).registration_grade759,21110 -registration_grade(r367,b).registration_grade760,21138 -registration_grade(r367,b).registration_grade760,21138 -registration_grade(r368,a).registration_grade761,21166 -registration_grade(r368,a).registration_grade761,21166 -registration_grade(r369,c).registration_grade762,21194 -registration_grade(r369,c).registration_grade762,21194 -registration_grade(r370,b).registration_grade763,21222 -registration_grade(r370,b).registration_grade763,21222 -registration_grade(r371,a).registration_grade764,21250 -registration_grade(r371,a).registration_grade764,21250 -registration_grade(r372,a).registration_grade765,21278 -registration_grade(r372,a).registration_grade765,21278 -registration_grade(r373,a).registration_grade766,21306 -registration_grade(r373,a).registration_grade766,21306 -registration_grade(r374,b).registration_grade767,21334 -registration_grade(r374,b).registration_grade767,21334 -registration_grade(r375,b).registration_grade768,21362 -registration_grade(r375,b).registration_grade768,21362 -registration_grade(r376,a).registration_grade769,21390 -registration_grade(r376,a).registration_grade769,21390 -registration_grade(r377,a).registration_grade770,21418 -registration_grade(r377,a).registration_grade770,21418 -registration_grade(r378,a).registration_grade771,21446 -registration_grade(r378,a).registration_grade771,21446 -registration_grade(r379,c).registration_grade772,21474 -registration_grade(r379,c).registration_grade772,21474 -registration_grade(r380,a).registration_grade773,21502 -registration_grade(r380,a).registration_grade773,21502 -registration_grade(r381,c).registration_grade774,21530 -registration_grade(r381,c).registration_grade774,21530 -registration_grade(r382,a).registration_grade775,21558 -registration_grade(r382,a).registration_grade775,21558 -registration_grade(r383,a).registration_grade776,21586 -registration_grade(r383,a).registration_grade776,21586 -registration_grade(r384,b).registration_grade777,21614 -registration_grade(r384,b).registration_grade777,21614 -registration_grade(r385,b).registration_grade778,21642 -registration_grade(r385,b).registration_grade778,21642 -registration_grade(r386,d).registration_grade779,21670 -registration_grade(r386,d).registration_grade779,21670 -registration_grade(r387,a).registration_grade780,21698 -registration_grade(r387,a).registration_grade780,21698 -registration_grade(r388,a).registration_grade781,21726 -registration_grade(r388,a).registration_grade781,21726 -registration_grade(r389,a).registration_grade782,21754 -registration_grade(r389,a).registration_grade782,21754 -registration_grade(r390,a).registration_grade783,21782 -registration_grade(r390,a).registration_grade783,21782 -registration_grade(r391,b).registration_grade784,21810 -registration_grade(r391,b).registration_grade784,21810 -registration_grade(r392,b).registration_grade785,21838 -registration_grade(r392,b).registration_grade785,21838 -registration_grade(r393,b).registration_grade786,21866 -registration_grade(r393,b).registration_grade786,21866 -registration_grade(r394,c).registration_grade787,21894 -registration_grade(r394,c).registration_grade787,21894 -registration_grade(r395,b).registration_grade788,21922 -registration_grade(r395,b).registration_grade788,21922 -registration_grade(r396,b).registration_grade789,21950 -registration_grade(r396,b).registration_grade789,21950 -registration_grade(r397,a).registration_grade790,21978 -registration_grade(r397,a).registration_grade790,21978 -registration_grade(r398,b).registration_grade791,22006 -registration_grade(r398,b).registration_grade791,22006 -registration_grade(r399,c).registration_grade792,22034 -registration_grade(r399,c).registration_grade792,22034 -registration_grade(r400,a).registration_grade793,22062 -registration_grade(r400,a).registration_grade793,22062 -registration_grade(r401,c).registration_grade794,22090 -registration_grade(r401,c).registration_grade794,22090 -registration_grade(r402,a).registration_grade795,22118 -registration_grade(r402,a).registration_grade795,22118 -registration_grade(r403,a).registration_grade796,22146 -registration_grade(r403,a).registration_grade796,22146 -registration_grade(r404,a).registration_grade797,22174 -registration_grade(r404,a).registration_grade797,22174 -registration_grade(r405,a).registration_grade798,22202 -registration_grade(r405,a).registration_grade798,22202 -registration_grade(r406,a).registration_grade799,22230 -registration_grade(r406,a).registration_grade799,22230 -registration_grade(r407,b).registration_grade800,22258 -registration_grade(r407,b).registration_grade800,22258 -registration_grade(r408,a).registration_grade801,22286 -registration_grade(r408,a).registration_grade801,22286 -registration_grade(r409,a).registration_grade802,22314 -registration_grade(r409,a).registration_grade802,22314 -registration_grade(r410,b).registration_grade803,22342 -registration_grade(r410,b).registration_grade803,22342 -registration_grade(r411,b).registration_grade804,22370 -registration_grade(r411,b).registration_grade804,22370 -registration_grade(r412,a).registration_grade805,22398 -registration_grade(r412,a).registration_grade805,22398 -registration_grade(r413,a).registration_grade806,22426 -registration_grade(r413,a).registration_grade806,22426 -registration_grade(r414,a).registration_grade807,22454 -registration_grade(r414,a).registration_grade807,22454 -registration_grade(r415,b).registration_grade808,22482 -registration_grade(r415,b).registration_grade808,22482 -registration_grade(r416,b).registration_grade809,22510 -registration_grade(r416,b).registration_grade809,22510 -registration_grade(r417,d).registration_grade810,22538 -registration_grade(r417,d).registration_grade810,22538 -registration_grade(r418,a).registration_grade811,22566 -registration_grade(r418,a).registration_grade811,22566 -registration_grade(r419,a).registration_grade812,22594 -registration_grade(r419,a).registration_grade812,22594 -registration_grade(r420,a).registration_grade813,22622 -registration_grade(r420,a).registration_grade813,22622 -registration_grade(r421,c).registration_grade814,22650 -registration_grade(r421,c).registration_grade814,22650 -registration_grade(r422,b).registration_grade815,22678 -registration_grade(r422,b).registration_grade815,22678 -registration_grade(r423,b).registration_grade816,22706 -registration_grade(r423,b).registration_grade816,22706 -registration_grade(r424,a).registration_grade817,22734 -registration_grade(r424,a).registration_grade817,22734 -registration_grade(r425,b).registration_grade818,22762 -registration_grade(r425,b).registration_grade818,22762 -registration_grade(r426,c).registration_grade819,22790 -registration_grade(r426,c).registration_grade819,22790 -registration_grade(r427,c).registration_grade820,22818 -registration_grade(r427,c).registration_grade820,22818 -registration_grade(r428,c).registration_grade821,22846 -registration_grade(r428,c).registration_grade821,22846 -registration_grade(r429,c).registration_grade822,22874 -registration_grade(r429,c).registration_grade822,22874 -registration_grade(r430,b).registration_grade823,22902 -registration_grade(r430,b).registration_grade823,22902 -registration_grade(r431,d).registration_grade824,22930 -registration_grade(r431,d).registration_grade824,22930 -registration_grade(r432,c).registration_grade825,22958 -registration_grade(r432,c).registration_grade825,22958 -registration_grade(r433,a).registration_grade826,22986 -registration_grade(r433,a).registration_grade826,22986 -registration_grade(r434,a).registration_grade827,23014 -registration_grade(r434,a).registration_grade827,23014 -registration_grade(r435,c).registration_grade828,23042 -registration_grade(r435,c).registration_grade828,23042 -registration_grade(r436,a).registration_grade829,23070 -registration_grade(r436,a).registration_grade829,23070 -registration_grade(r437,c).registration_grade830,23098 -registration_grade(r437,c).registration_grade830,23098 -registration_grade(r438,b).registration_grade831,23126 -registration_grade(r438,b).registration_grade831,23126 -registration_grade(r439,b).registration_grade832,23154 -registration_grade(r439,b).registration_grade832,23154 -registration_grade(r440,c).registration_grade833,23182 -registration_grade(r440,c).registration_grade833,23182 -registration_grade(r441,a).registration_grade834,23210 -registration_grade(r441,a).registration_grade834,23210 -registration_grade(r442,c).registration_grade835,23238 -registration_grade(r442,c).registration_grade835,23238 -registration_grade(r443,a).registration_grade836,23266 -registration_grade(r443,a).registration_grade836,23266 -registration_grade(r444,a).registration_grade837,23294 -registration_grade(r444,a).registration_grade837,23294 -registration_grade(r445,a).registration_grade838,23322 -registration_grade(r445,a).registration_grade838,23322 -registration_grade(r446,a).registration_grade839,23350 -registration_grade(r446,a).registration_grade839,23350 -registration_grade(r447,d).registration_grade840,23378 -registration_grade(r447,d).registration_grade840,23378 -registration_grade(r448,c).registration_grade841,23406 -registration_grade(r448,c).registration_grade841,23406 -registration_grade(r449,b).registration_grade842,23434 -registration_grade(r449,b).registration_grade842,23434 -registration_grade(r450,a).registration_grade843,23462 -registration_grade(r450,a).registration_grade843,23462 -registration_grade(r451,a).registration_grade844,23490 -registration_grade(r451,a).registration_grade844,23490 -registration_grade(r452,b).registration_grade845,23518 -registration_grade(r452,b).registration_grade845,23518 -registration_grade(r453,d).registration_grade846,23546 -registration_grade(r453,d).registration_grade846,23546 -registration_grade(r454,d).registration_grade847,23574 -registration_grade(r454,d).registration_grade847,23574 -registration_grade(r455,c).registration_grade848,23602 -registration_grade(r455,c).registration_grade848,23602 -registration_grade(r456,c).registration_grade849,23630 -registration_grade(r456,c).registration_grade849,23630 -registration_grade(r457,a).registration_grade850,23658 -registration_grade(r457,a).registration_grade850,23658 -registration_grade(r458,b).registration_grade851,23686 -registration_grade(r458,b).registration_grade851,23686 -registration_grade(r459,b).registration_grade852,23714 -registration_grade(r459,b).registration_grade852,23714 -registration_grade(r460,a).registration_grade853,23742 -registration_grade(r460,a).registration_grade853,23742 -registration_grade(r461,b).registration_grade854,23770 -registration_grade(r461,b).registration_grade854,23770 -registration_grade(r462,a).registration_grade855,23798 -registration_grade(r462,a).registration_grade855,23798 -registration_grade(r463,d).registration_grade856,23826 -registration_grade(r463,d).registration_grade856,23826 -registration_grade(r464,a).registration_grade857,23854 -registration_grade(r464,a).registration_grade857,23854 -registration_grade(r465,a).registration_grade858,23882 -registration_grade(r465,a).registration_grade858,23882 -registration_grade(r466,b).registration_grade859,23910 -registration_grade(r466,b).registration_grade859,23910 -registration_grade(r467,b).registration_grade860,23938 -registration_grade(r467,b).registration_grade860,23938 -registration_grade(r468,a).registration_grade861,23966 -registration_grade(r468,a).registration_grade861,23966 -registration_grade(r469,a).registration_grade862,23994 -registration_grade(r469,a).registration_grade862,23994 -registration_grade(r470,c).registration_grade863,24022 -registration_grade(r470,c).registration_grade863,24022 -registration_grade(r471,b).registration_grade864,24050 -registration_grade(r471,b).registration_grade864,24050 -registration_grade(r472,a).registration_grade865,24078 -registration_grade(r472,a).registration_grade865,24078 -registration_grade(r473,c).registration_grade866,24106 -registration_grade(r473,c).registration_grade866,24106 -registration_grade(r474,b).registration_grade867,24134 -registration_grade(r474,b).registration_grade867,24134 -registration_grade(r475,a).registration_grade868,24162 -registration_grade(r475,a).registration_grade868,24162 -registration_grade(r476,c).registration_grade869,24190 -registration_grade(r476,c).registration_grade869,24190 -registration_grade(r477,b).registration_grade870,24218 -registration_grade(r477,b).registration_grade870,24218 -registration_grade(r478,a).registration_grade871,24246 -registration_grade(r478,a).registration_grade871,24246 -registration_grade(r479,b).registration_grade872,24274 -registration_grade(r479,b).registration_grade872,24274 -registration_grade(r480,a).registration_grade873,24302 -registration_grade(r480,a).registration_grade873,24302 -registration_grade(r481,b).registration_grade874,24330 -registration_grade(r481,b).registration_grade874,24330 -registration_grade(r482,b).registration_grade875,24358 -registration_grade(r482,b).registration_grade875,24358 -registration_grade(r483,a).registration_grade876,24386 -registration_grade(r483,a).registration_grade876,24386 -registration_grade(r484,a).registration_grade877,24414 -registration_grade(r484,a).registration_grade877,24414 -registration_grade(r485,a).registration_grade878,24442 -registration_grade(r485,a).registration_grade878,24442 -registration_grade(r486,a).registration_grade879,24470 -registration_grade(r486,a).registration_grade879,24470 -registration_grade(r487,a).registration_grade880,24498 -registration_grade(r487,a).registration_grade880,24498 -registration_grade(r488,a).registration_grade881,24526 -registration_grade(r488,a).registration_grade881,24526 -registration_grade(r489,b).registration_grade882,24554 -registration_grade(r489,b).registration_grade882,24554 -registration_grade(r490,c).registration_grade883,24582 -registration_grade(r490,c).registration_grade883,24582 -registration_grade(r491,c).registration_grade884,24610 -registration_grade(r491,c).registration_grade884,24610 -registration_grade(r492,b).registration_grade885,24638 -registration_grade(r492,b).registration_grade885,24638 -registration_grade(r493,a).registration_grade886,24666 -registration_grade(r493,a).registration_grade886,24666 -registration_grade(r494,b).registration_grade887,24694 -registration_grade(r494,b).registration_grade887,24694 -registration_grade(r495,b).registration_grade888,24722 -registration_grade(r495,b).registration_grade888,24722 -registration_grade(r496,a).registration_grade889,24750 -registration_grade(r496,a).registration_grade889,24750 -registration_grade(r497,c).registration_grade890,24778 -registration_grade(r497,c).registration_grade890,24778 -registration_grade(r498,b).registration_grade891,24806 -registration_grade(r498,b).registration_grade891,24806 -registration_grade(r499,c).registration_grade892,24834 -registration_grade(r499,c).registration_grade892,24834 -registration_grade(r500,b).registration_grade893,24862 -registration_grade(r500,b).registration_grade893,24862 -registration_grade(r501,a).registration_grade894,24890 -registration_grade(r501,a).registration_grade894,24890 -registration_grade(r502,a).registration_grade895,24918 -registration_grade(r502,a).registration_grade895,24918 -registration_grade(r503,c).registration_grade896,24946 -registration_grade(r503,c).registration_grade896,24946 -registration_grade(r504,b).registration_grade897,24974 -registration_grade(r504,b).registration_grade897,24974 -registration_grade(r505,c).registration_grade898,25002 -registration_grade(r505,c).registration_grade898,25002 -registration_grade(r506,c).registration_grade899,25030 -registration_grade(r506,c).registration_grade899,25030 -registration_grade(r507,a).registration_grade900,25058 -registration_grade(r507,a).registration_grade900,25058 -registration_grade(r508,c).registration_grade901,25086 -registration_grade(r508,c).registration_grade901,25086 -registration_grade(r509,b).registration_grade902,25114 -registration_grade(r509,b).registration_grade902,25114 -registration_grade(r510,a).registration_grade903,25142 -registration_grade(r510,a).registration_grade903,25142 -registration_grade(r511,c).registration_grade904,25170 -registration_grade(r511,c).registration_grade904,25170 -registration_grade(r512,b).registration_grade905,25198 -registration_grade(r512,b).registration_grade905,25198 -registration_grade(r513,b).registration_grade906,25226 -registration_grade(r513,b).registration_grade906,25226 -registration_grade(r514,c).registration_grade907,25254 -registration_grade(r514,c).registration_grade907,25254 -registration_grade(r515,c).registration_grade908,25282 -registration_grade(r515,c).registration_grade908,25282 -registration_grade(r516,a).registration_grade909,25310 -registration_grade(r516,a).registration_grade909,25310 -registration_grade(r517,b).registration_grade910,25338 -registration_grade(r517,b).registration_grade910,25338 -registration_grade(r518,a).registration_grade911,25366 -registration_grade(r518,a).registration_grade911,25366 -registration_grade(r519,a).registration_grade912,25394 -registration_grade(r519,a).registration_grade912,25394 -registration_grade(r520,b).registration_grade913,25422 -registration_grade(r520,b).registration_grade913,25422 -registration_grade(r521,a).registration_grade914,25450 -registration_grade(r521,a).registration_grade914,25450 -registration_grade(r522,b).registration_grade915,25478 -registration_grade(r522,b).registration_grade915,25478 -registration_grade(r523,a).registration_grade916,25506 -registration_grade(r523,a).registration_grade916,25506 -registration_grade(r524,b).registration_grade917,25534 -registration_grade(r524,b).registration_grade917,25534 -registration_grade(r525,c).registration_grade918,25562 -registration_grade(r525,c).registration_grade918,25562 -registration_grade(r526,c).registration_grade919,25590 -registration_grade(r526,c).registration_grade919,25590 -registration_grade(r527,c).registration_grade920,25618 -registration_grade(r527,c).registration_grade920,25618 -registration_grade(r528,a).registration_grade921,25646 -registration_grade(r528,a).registration_grade921,25646 -registration_grade(r529,b).registration_grade922,25674 -registration_grade(r529,b).registration_grade922,25674 -registration_grade(r530,a).registration_grade923,25702 -registration_grade(r530,a).registration_grade923,25702 -registration_grade(r531,b).registration_grade924,25730 -registration_grade(r531,b).registration_grade924,25730 -registration_grade(r532,a).registration_grade925,25758 -registration_grade(r532,a).registration_grade925,25758 -registration_grade(r533,a).registration_grade926,25786 -registration_grade(r533,a).registration_grade926,25786 -registration_grade(r534,b).registration_grade927,25814 -registration_grade(r534,b).registration_grade927,25814 -registration_grade(r535,c).registration_grade928,25842 -registration_grade(r535,c).registration_grade928,25842 -registration_grade(r536,a).registration_grade929,25870 -registration_grade(r536,a).registration_grade929,25870 -registration_grade(r537,a).registration_grade930,25898 -registration_grade(r537,a).registration_grade930,25898 -registration_grade(r538,a).registration_grade931,25926 -registration_grade(r538,a).registration_grade931,25926 -registration_grade(r539,b).registration_grade932,25954 -registration_grade(r539,b).registration_grade932,25954 -registration_grade(r540,b).registration_grade933,25982 -registration_grade(r540,b).registration_grade933,25982 -registration_grade(r541,c).registration_grade934,26010 -registration_grade(r541,c).registration_grade934,26010 -registration_grade(r542,a).registration_grade935,26038 -registration_grade(r542,a).registration_grade935,26038 -registration_grade(r543,a).registration_grade936,26066 -registration_grade(r543,a).registration_grade936,26066 -registration_grade(r544,b).registration_grade937,26094 -registration_grade(r544,b).registration_grade937,26094 -registration_grade(r545,a).registration_grade938,26122 -registration_grade(r545,a).registration_grade938,26122 -registration_grade(r546,b).registration_grade939,26150 -registration_grade(r546,b).registration_grade939,26150 -registration_grade(r547,c).registration_grade940,26178 -registration_grade(r547,c).registration_grade940,26178 -registration_grade(r548,c).registration_grade941,26206 -registration_grade(r548,c).registration_grade941,26206 -registration_grade(r549,b).registration_grade942,26234 -registration_grade(r549,b).registration_grade942,26234 -registration_grade(r550,a).registration_grade943,26262 -registration_grade(r550,a).registration_grade943,26262 -registration_grade(r551,a).registration_grade944,26290 -registration_grade(r551,a).registration_grade944,26290 -registration_grade(r552,c).registration_grade945,26318 -registration_grade(r552,c).registration_grade945,26318 -registration_grade(r553,b).registration_grade946,26346 -registration_grade(r553,b).registration_grade946,26346 -registration_grade(r554,b).registration_grade947,26374 -registration_grade(r554,b).registration_grade947,26374 -registration_grade(r555,b).registration_grade948,26402 -registration_grade(r555,b).registration_grade948,26402 -registration_grade(r556,a).registration_grade949,26430 -registration_grade(r556,a).registration_grade949,26430 -registration_grade(r557,a).registration_grade950,26458 -registration_grade(r557,a).registration_grade950,26458 -registration_grade(r558,a).registration_grade951,26486 -registration_grade(r558,a).registration_grade951,26486 -registration_grade(r559,b).registration_grade952,26514 -registration_grade(r559,b).registration_grade952,26514 -registration_grade(r560,b).registration_grade953,26542 -registration_grade(r560,b).registration_grade953,26542 -registration_grade(r561,a).registration_grade954,26570 -registration_grade(r561,a).registration_grade954,26570 -registration_grade(r562,a).registration_grade955,26598 -registration_grade(r562,a).registration_grade955,26598 -registration_grade(r563,a).registration_grade956,26626 -registration_grade(r563,a).registration_grade956,26626 -registration_grade(r564,b).registration_grade957,26654 -registration_grade(r564,b).registration_grade957,26654 -registration_grade(r565,d).registration_grade958,26682 -registration_grade(r565,d).registration_grade958,26682 -registration_grade(r566,c).registration_grade959,26710 -registration_grade(r566,c).registration_grade959,26710 -registration_grade(r567,a).registration_grade960,26738 -registration_grade(r567,a).registration_grade960,26738 -registration_grade(r568,a).registration_grade961,26766 -registration_grade(r568,a).registration_grade961,26766 -registration_grade(r569,a).registration_grade962,26794 -registration_grade(r569,a).registration_grade962,26794 -registration_grade(r570,c).registration_grade963,26822 -registration_grade(r570,c).registration_grade963,26822 -registration_grade(r571,c).registration_grade964,26850 -registration_grade(r571,c).registration_grade964,26850 -registration_grade(r572,b).registration_grade965,26878 -registration_grade(r572,b).registration_grade965,26878 -registration_grade(r573,a).registration_grade966,26906 -registration_grade(r573,a).registration_grade966,26906 -registration_grade(r574,c).registration_grade967,26934 -registration_grade(r574,c).registration_grade967,26934 -registration_grade(r575,a).registration_grade968,26962 -registration_grade(r575,a).registration_grade968,26962 -registration_grade(r576,a).registration_grade969,26990 -registration_grade(r576,a).registration_grade969,26990 -registration_grade(r577,a).registration_grade970,27018 -registration_grade(r577,a).registration_grade970,27018 -registration_grade(r578,b).registration_grade971,27046 -registration_grade(r578,b).registration_grade971,27046 -registration_grade(r579,a).registration_grade972,27074 -registration_grade(r579,a).registration_grade972,27074 -registration_grade(r580,b).registration_grade973,27102 -registration_grade(r580,b).registration_grade973,27102 -registration_grade(r581,a).registration_grade974,27130 -registration_grade(r581,a).registration_grade974,27130 -registration_grade(r582,a).registration_grade975,27158 -registration_grade(r582,a).registration_grade975,27158 -registration_grade(r583,a).registration_grade976,27186 -registration_grade(r583,a).registration_grade976,27186 -registration_grade(r584,a).registration_grade977,27214 -registration_grade(r584,a).registration_grade977,27214 -registration_grade(r585,c).registration_grade978,27242 -registration_grade(r585,c).registration_grade978,27242 -registration_grade(r586,b).registration_grade979,27270 -registration_grade(r586,b).registration_grade979,27270 -registration_grade(r587,c).registration_grade980,27298 -registration_grade(r587,c).registration_grade980,27298 -registration_grade(r588,c).registration_grade981,27326 -registration_grade(r588,c).registration_grade981,27326 -registration_grade(r589,c).registration_grade982,27354 -registration_grade(r589,c).registration_grade982,27354 -registration_grade(r590,b).registration_grade983,27382 -registration_grade(r590,b).registration_grade983,27382 -registration_grade(r591,c).registration_grade984,27410 -registration_grade(r591,c).registration_grade984,27410 -registration_grade(r592,b).registration_grade985,27438 -registration_grade(r592,b).registration_grade985,27438 -registration_grade(r593,b).registration_grade986,27466 -registration_grade(r593,b).registration_grade986,27466 -registration_grade(r594,c).registration_grade987,27494 -registration_grade(r594,c).registration_grade987,27494 -registration_grade(r595,b).registration_grade988,27522 -registration_grade(r595,b).registration_grade988,27522 -registration_grade(r596,a).registration_grade989,27550 -registration_grade(r596,a).registration_grade989,27550 -registration_grade(r597,a).registration_grade990,27578 -registration_grade(r597,a).registration_grade990,27578 -registration_grade(r598,a).registration_grade991,27606 -registration_grade(r598,a).registration_grade991,27606 -registration_grade(r599,a).registration_grade992,27634 -registration_grade(r599,a).registration_grade992,27634 -registration_grade(r600,a).registration_grade993,27662 -registration_grade(r600,a).registration_grade993,27662 -registration_grade(r601,b).registration_grade994,27690 -registration_grade(r601,b).registration_grade994,27690 -registration_grade(r602,a).registration_grade995,27718 -registration_grade(r602,a).registration_grade995,27718 -registration_grade(r603,d).registration_grade996,27746 -registration_grade(r603,d).registration_grade996,27746 -registration_grade(r604,c).registration_grade997,27774 -registration_grade(r604,c).registration_grade997,27774 -registration_grade(r605,a).registration_grade998,27802 -registration_grade(r605,a).registration_grade998,27802 -registration_grade(r606,a).registration_grade999,27830 -registration_grade(r606,a).registration_grade999,27830 -registration_grade(r607,b).registration_grade1000,27858 -registration_grade(r607,b).registration_grade1000,27858 -registration_grade(r608,a).registration_grade1001,27886 -registration_grade(r608,a).registration_grade1001,27886 -registration_grade(r609,b).registration_grade1002,27914 -registration_grade(r609,b).registration_grade1002,27914 -registration_grade(r610,a).registration_grade1003,27942 -registration_grade(r610,a).registration_grade1003,27942 -registration_grade(r611,a).registration_grade1004,27970 -registration_grade(r611,a).registration_grade1004,27970 -registration_grade(r612,c).registration_grade1005,27998 -registration_grade(r612,c).registration_grade1005,27998 -registration_grade(r613,a).registration_grade1006,28026 -registration_grade(r613,a).registration_grade1006,28026 -registration_grade(r614,d).registration_grade1007,28054 -registration_grade(r614,d).registration_grade1007,28054 -registration_grade(r615,b).registration_grade1008,28082 -registration_grade(r615,b).registration_grade1008,28082 -registration_grade(r616,a).registration_grade1009,28110 -registration_grade(r616,a).registration_grade1009,28110 -registration_grade(r617,a).registration_grade1010,28138 -registration_grade(r617,a).registration_grade1010,28138 -registration_grade(r618,b).registration_grade1011,28166 -registration_grade(r618,b).registration_grade1011,28166 -registration_grade(r619,a).registration_grade1012,28194 -registration_grade(r619,a).registration_grade1012,28194 -registration_grade(r620,a).registration_grade1013,28222 -registration_grade(r620,a).registration_grade1013,28222 -registration_grade(r621,a).registration_grade1014,28250 -registration_grade(r621,a).registration_grade1014,28250 -registration_grade(r622,b).registration_grade1015,28278 -registration_grade(r622,b).registration_grade1015,28278 -registration_grade(r623,b).registration_grade1016,28306 -registration_grade(r623,b).registration_grade1016,28306 -registration_grade(r624,a).registration_grade1017,28334 -registration_grade(r624,a).registration_grade1017,28334 -registration_grade(r625,c).registration_grade1018,28362 -registration_grade(r625,c).registration_grade1018,28362 -registration_grade(r626,a).registration_grade1019,28390 -registration_grade(r626,a).registration_grade1019,28390 -registration_grade(r627,b).registration_grade1020,28418 -registration_grade(r627,b).registration_grade1020,28418 -registration_grade(r628,a).registration_grade1021,28446 -registration_grade(r628,a).registration_grade1021,28446 -registration_grade(r629,b).registration_grade1022,28474 -registration_grade(r629,b).registration_grade1022,28474 -registration_grade(r630,c).registration_grade1023,28502 -registration_grade(r630,c).registration_grade1023,28502 -registration_grade(r631,a).registration_grade1024,28530 -registration_grade(r631,a).registration_grade1024,28530 -registration_grade(r632,a).registration_grade1025,28558 -registration_grade(r632,a).registration_grade1025,28558 -registration_grade(r633,b).registration_grade1026,28586 -registration_grade(r633,b).registration_grade1026,28586 -registration_grade(r634,b).registration_grade1027,28614 -registration_grade(r634,b).registration_grade1027,28614 -registration_grade(r635,b).registration_grade1028,28642 -registration_grade(r635,b).registration_grade1028,28642 -registration_grade(r636,d).registration_grade1029,28670 -registration_grade(r636,d).registration_grade1029,28670 -registration_grade(r637,c).registration_grade1030,28698 -registration_grade(r637,c).registration_grade1030,28698 -registration_grade(r638,a).registration_grade1031,28726 -registration_grade(r638,a).registration_grade1031,28726 -registration_grade(r639,b).registration_grade1032,28754 -registration_grade(r639,b).registration_grade1032,28754 -registration_grade(r640,c).registration_grade1033,28782 -registration_grade(r640,c).registration_grade1033,28782 -registration_grade(r641,c).registration_grade1034,28810 -registration_grade(r641,c).registration_grade1034,28810 -registration_grade(r642,c).registration_grade1035,28838 -registration_grade(r642,c).registration_grade1035,28838 -registration_grade(r643,a).registration_grade1036,28866 -registration_grade(r643,a).registration_grade1036,28866 -registration_grade(r644,a).registration_grade1037,28894 -registration_grade(r644,a).registration_grade1037,28894 -registration_grade(r645,b).registration_grade1038,28922 -registration_grade(r645,b).registration_grade1038,28922 -registration_grade(r646,b).registration_grade1039,28950 -registration_grade(r646,b).registration_grade1039,28950 -registration_grade(r647,b).registration_grade1040,28978 -registration_grade(r647,b).registration_grade1040,28978 -registration_grade(r648,a).registration_grade1041,29006 -registration_grade(r648,a).registration_grade1041,29006 -registration_grade(r649,b).registration_grade1042,29034 -registration_grade(r649,b).registration_grade1042,29034 -registration_grade(r650,c).registration_grade1043,29062 -registration_grade(r650,c).registration_grade1043,29062 -registration_grade(r651,b).registration_grade1044,29090 -registration_grade(r651,b).registration_grade1044,29090 -registration_grade(r652,b).registration_grade1045,29118 -registration_grade(r652,b).registration_grade1045,29118 -registration_grade(r653,b).registration_grade1046,29146 -registration_grade(r653,b).registration_grade1046,29146 -registration_grade(r654,b).registration_grade1047,29174 -registration_grade(r654,b).registration_grade1047,29174 -registration_grade(r655,a).registration_grade1048,29202 -registration_grade(r655,a).registration_grade1048,29202 -registration_grade(r656,b).registration_grade1049,29230 -registration_grade(r656,b).registration_grade1049,29230 -registration_grade(r657,a).registration_grade1050,29258 -registration_grade(r657,a).registration_grade1050,29258 -registration_grade(r658,a).registration_grade1051,29286 -registration_grade(r658,a).registration_grade1051,29286 -registration_grade(r659,a).registration_grade1052,29314 -registration_grade(r659,a).registration_grade1052,29314 -registration_grade(r660,a).registration_grade1053,29342 -registration_grade(r660,a).registration_grade1053,29342 -registration_grade(r661,c).registration_grade1054,29370 -registration_grade(r661,c).registration_grade1054,29370 -registration_grade(r662,a).registration_grade1055,29398 -registration_grade(r662,a).registration_grade1055,29398 -registration_grade(r663,a).registration_grade1056,29426 -registration_grade(r663,a).registration_grade1056,29426 -registration_grade(r664,c).registration_grade1057,29454 -registration_grade(r664,c).registration_grade1057,29454 -registration_grade(r665,a).registration_grade1058,29482 -registration_grade(r665,a).registration_grade1058,29482 -registration_grade(r666,b).registration_grade1059,29510 -registration_grade(r666,b).registration_grade1059,29510 -registration_grade(r667,b).registration_grade1060,29538 -registration_grade(r667,b).registration_grade1060,29538 -registration_grade(r668,d).registration_grade1061,29566 -registration_grade(r668,d).registration_grade1061,29566 -registration_grade(r669,b).registration_grade1062,29594 -registration_grade(r669,b).registration_grade1062,29594 -registration_grade(r670,a).registration_grade1063,29622 -registration_grade(r670,a).registration_grade1063,29622 -registration_grade(r671,c).registration_grade1064,29650 -registration_grade(r671,c).registration_grade1064,29650 -registration_grade(r672,c).registration_grade1065,29678 -registration_grade(r672,c).registration_grade1065,29678 -registration_grade(r673,a).registration_grade1066,29706 -registration_grade(r673,a).registration_grade1066,29706 -registration_grade(r674,a).registration_grade1067,29734 -registration_grade(r674,a).registration_grade1067,29734 -registration_grade(r675,b).registration_grade1068,29762 -registration_grade(r675,b).registration_grade1068,29762 -registration_grade(r676,a).registration_grade1069,29790 -registration_grade(r676,a).registration_grade1069,29790 -registration_grade(r677,a).registration_grade1070,29818 -registration_grade(r677,a).registration_grade1070,29818 -registration_grade(r678,a).registration_grade1071,29846 -registration_grade(r678,a).registration_grade1071,29846 -registration_grade(r679,a).registration_grade1072,29874 -registration_grade(r679,a).registration_grade1072,29874 -registration_grade(r680,c).registration_grade1073,29902 -registration_grade(r680,c).registration_grade1073,29902 -registration_grade(r681,b).registration_grade1074,29930 -registration_grade(r681,b).registration_grade1074,29930 -registration_grade(r682,a).registration_grade1075,29958 -registration_grade(r682,a).registration_grade1075,29958 -registration_grade(r683,b).registration_grade1076,29986 -registration_grade(r683,b).registration_grade1076,29986 -registration_grade(r684,b).registration_grade1077,30014 -registration_grade(r684,b).registration_grade1077,30014 -registration_grade(r685,a).registration_grade1078,30042 -registration_grade(r685,a).registration_grade1078,30042 -registration_grade(r686,b).registration_grade1079,30070 -registration_grade(r686,b).registration_grade1079,30070 -registration_grade(r687,a).registration_grade1080,30098 -registration_grade(r687,a).registration_grade1080,30098 -registration_grade(r688,c).registration_grade1081,30126 -registration_grade(r688,c).registration_grade1081,30126 -registration_grade(r689,b).registration_grade1082,30154 -registration_grade(r689,b).registration_grade1082,30154 -registration_grade(r690,a).registration_grade1083,30182 -registration_grade(r690,a).registration_grade1083,30182 -registration_grade(r691,c).registration_grade1084,30210 -registration_grade(r691,c).registration_grade1084,30210 -registration_grade(r692,a).registration_grade1085,30238 -registration_grade(r692,a).registration_grade1085,30238 -registration_grade(r693,b).registration_grade1086,30266 -registration_grade(r693,b).registration_grade1086,30266 -registration_grade(r694,a).registration_grade1087,30294 -registration_grade(r694,a).registration_grade1087,30294 -registration_grade(r695,a).registration_grade1088,30322 -registration_grade(r695,a).registration_grade1088,30322 -registration_grade(r696,a).registration_grade1089,30350 -registration_grade(r696,a).registration_grade1089,30350 -registration_grade(r697,c).registration_grade1090,30378 -registration_grade(r697,c).registration_grade1090,30378 -registration_grade(r698,b).registration_grade1091,30406 -registration_grade(r698,b).registration_grade1091,30406 -registration_grade(r699,a).registration_grade1092,30434 -registration_grade(r699,a).registration_grade1092,30434 -registration_grade(r700,a).registration_grade1093,30462 -registration_grade(r700,a).registration_grade1093,30462 -registration_grade(r701,a).registration_grade1094,30490 -registration_grade(r701,a).registration_grade1094,30490 -registration_grade(r702,a).registration_grade1095,30518 -registration_grade(r702,a).registration_grade1095,30518 -registration_grade(r703,c).registration_grade1096,30546 -registration_grade(r703,c).registration_grade1096,30546 -registration_grade(r704,c).registration_grade1097,30574 -registration_grade(r704,c).registration_grade1097,30574 -registration_grade(r705,b).registration_grade1098,30602 -registration_grade(r705,b).registration_grade1098,30602 -registration_grade(r706,b).registration_grade1099,30630 -registration_grade(r706,b).registration_grade1099,30630 -registration_grade(r707,a).registration_grade1100,30658 -registration_grade(r707,a).registration_grade1100,30658 -registration_grade(r708,b).registration_grade1101,30686 -registration_grade(r708,b).registration_grade1101,30686 -registration_grade(r709,b).registration_grade1102,30714 -registration_grade(r709,b).registration_grade1102,30714 -registration_grade(r710,b).registration_grade1103,30742 -registration_grade(r710,b).registration_grade1103,30742 -registration_grade(r711,b).registration_grade1104,30770 -registration_grade(r711,b).registration_grade1104,30770 -registration_grade(r712,c).registration_grade1105,30798 -registration_grade(r712,c).registration_grade1105,30798 -registration_grade(r713,a).registration_grade1106,30826 -registration_grade(r713,a).registration_grade1106,30826 -registration_grade(r714,b).registration_grade1107,30854 -registration_grade(r714,b).registration_grade1107,30854 -registration_grade(r715,a).registration_grade1108,30882 -registration_grade(r715,a).registration_grade1108,30882 -registration_grade(r716,a).registration_grade1109,30910 -registration_grade(r716,a).registration_grade1109,30910 -registration_grade(r717,a).registration_grade1110,30938 -registration_grade(r717,a).registration_grade1110,30938 -registration_grade(r718,a).registration_grade1111,30966 -registration_grade(r718,a).registration_grade1111,30966 -registration_grade(r719,c).registration_grade1112,30994 -registration_grade(r719,c).registration_grade1112,30994 -registration_grade(r720,a).registration_grade1113,31022 -registration_grade(r720,a).registration_grade1113,31022 -registration_grade(r721,b).registration_grade1114,31050 -registration_grade(r721,b).registration_grade1114,31050 -registration_grade(r722,b).registration_grade1115,31078 -registration_grade(r722,b).registration_grade1115,31078 -registration_grade(r723,b).registration_grade1116,31106 -registration_grade(r723,b).registration_grade1116,31106 -registration_grade(r724,a).registration_grade1117,31134 -registration_grade(r724,a).registration_grade1117,31134 -registration_grade(r725,c).registration_grade1118,31162 -registration_grade(r725,c).registration_grade1118,31162 -registration_grade(r726,a).registration_grade1119,31190 -registration_grade(r726,a).registration_grade1119,31190 -registration_grade(r727,a).registration_grade1120,31218 -registration_grade(r727,a).registration_grade1120,31218 -registration_grade(r728,b).registration_grade1121,31246 -registration_grade(r728,b).registration_grade1121,31246 -registration_grade(r729,b).registration_grade1122,31274 -registration_grade(r729,b).registration_grade1122,31274 -registration_grade(r730,c).registration_grade1123,31302 -registration_grade(r730,c).registration_grade1123,31302 -registration_grade(r731,a).registration_grade1124,31330 -registration_grade(r731,a).registration_grade1124,31330 -registration_grade(r732,a).registration_grade1125,31358 -registration_grade(r732,a).registration_grade1125,31358 -registration_grade(r733,a).registration_grade1126,31386 -registration_grade(r733,a).registration_grade1126,31386 -registration_grade(r734,b).registration_grade1127,31414 -registration_grade(r734,b).registration_grade1127,31414 -registration_grade(r735,b).registration_grade1128,31442 -registration_grade(r735,b).registration_grade1128,31442 -registration_grade(r736,a).registration_grade1129,31470 -registration_grade(r736,a).registration_grade1129,31470 -registration_grade(r737,b).registration_grade1130,31498 -registration_grade(r737,b).registration_grade1130,31498 -registration_grade(r738,b).registration_grade1131,31526 -registration_grade(r738,b).registration_grade1131,31526 -registration_grade(r739,a).registration_grade1132,31554 -registration_grade(r739,a).registration_grade1132,31554 -registration_grade(r740,a).registration_grade1133,31582 -registration_grade(r740,a).registration_grade1133,31582 -registration_grade(r741,a).registration_grade1134,31610 -registration_grade(r741,a).registration_grade1134,31610 -registration_grade(r742,d).registration_grade1135,31638 -registration_grade(r742,d).registration_grade1135,31638 -registration_grade(r743,d).registration_grade1136,31666 -registration_grade(r743,d).registration_grade1136,31666 -registration_grade(r744,a).registration_grade1137,31694 -registration_grade(r744,a).registration_grade1137,31694 -registration_grade(r745,b).registration_grade1138,31722 -registration_grade(r745,b).registration_grade1138,31722 -registration_grade(r746,a).registration_grade1139,31750 -registration_grade(r746,a).registration_grade1139,31750 -registration_grade(r747,a).registration_grade1140,31778 -registration_grade(r747,a).registration_grade1140,31778 -registration_grade(r748,b).registration_grade1141,31806 -registration_grade(r748,b).registration_grade1141,31806 -registration_grade(r749,c).registration_grade1142,31834 -registration_grade(r749,c).registration_grade1142,31834 -registration_grade(r750,a).registration_grade1143,31862 -registration_grade(r750,a).registration_grade1143,31862 -registration_grade(r751,c).registration_grade1144,31890 -registration_grade(r751,c).registration_grade1144,31890 -registration_grade(r752,b).registration_grade1145,31918 -registration_grade(r752,b).registration_grade1145,31918 -registration_grade(r753,c).registration_grade1146,31946 -registration_grade(r753,c).registration_grade1146,31946 -registration_grade(r754,c).registration_grade1147,31974 -registration_grade(r754,c).registration_grade1147,31974 -registration_grade(r755,c).registration_grade1148,32002 -registration_grade(r755,c).registration_grade1148,32002 -registration_grade(r756,b).registration_grade1149,32030 -registration_grade(r756,b).registration_grade1149,32030 -registration_grade(r757,c).registration_grade1150,32058 -registration_grade(r757,c).registration_grade1150,32058 -registration_grade(r758,b).registration_grade1151,32086 -registration_grade(r758,b).registration_grade1151,32086 -registration_grade(r759,b).registration_grade1152,32114 -registration_grade(r759,b).registration_grade1152,32114 -registration_grade(r760,a).registration_grade1153,32142 -registration_grade(r760,a).registration_grade1153,32142 -registration_grade(r761,a).registration_grade1154,32170 -registration_grade(r761,a).registration_grade1154,32170 -registration_grade(r762,b).registration_grade1155,32198 -registration_grade(r762,b).registration_grade1155,32198 -registration_grade(r763,a).registration_grade1156,32226 -registration_grade(r763,a).registration_grade1156,32226 -registration_grade(r764,a).registration_grade1157,32254 -registration_grade(r764,a).registration_grade1157,32254 -registration_grade(r765,a).registration_grade1158,32282 -registration_grade(r765,a).registration_grade1158,32282 -registration_grade(r766,c).registration_grade1159,32310 -registration_grade(r766,c).registration_grade1159,32310 -registration_grade(r767,c).registration_grade1160,32338 -registration_grade(r767,c).registration_grade1160,32338 -registration_grade(r768,c).registration_grade1161,32366 -registration_grade(r768,c).registration_grade1161,32366 -registration_grade(r769,c).registration_grade1162,32394 -registration_grade(r769,c).registration_grade1162,32394 -registration_grade(r770,b).registration_grade1163,32422 -registration_grade(r770,b).registration_grade1163,32422 -registration_grade(r771,b).registration_grade1164,32450 -registration_grade(r771,b).registration_grade1164,32450 -registration_grade(r772,a).registration_grade1165,32478 -registration_grade(r772,a).registration_grade1165,32478 -registration_grade(r773,b).registration_grade1166,32506 -registration_grade(r773,b).registration_grade1166,32506 -registration_grade(r774,b).registration_grade1167,32534 -registration_grade(r774,b).registration_grade1167,32534 -registration_grade(r775,a).registration_grade1168,32562 -registration_grade(r775,a).registration_grade1168,32562 -registration_grade(r776,a).registration_grade1169,32590 -registration_grade(r776,a).registration_grade1169,32590 -registration_grade(r777,c).registration_grade1170,32618 -registration_grade(r777,c).registration_grade1170,32618 -registration_grade(r778,c).registration_grade1171,32646 -registration_grade(r778,c).registration_grade1171,32646 -registration_grade(r779,b).registration_grade1172,32674 -registration_grade(r779,b).registration_grade1172,32674 -registration_grade(r780,a).registration_grade1173,32702 -registration_grade(r780,a).registration_grade1173,32702 -registration_grade(r781,b).registration_grade1174,32730 -registration_grade(r781,b).registration_grade1174,32730 -registration_grade(r782,a).registration_grade1175,32758 -registration_grade(r782,a).registration_grade1175,32758 -registration_grade(r783,c).registration_grade1176,32786 -registration_grade(r783,c).registration_grade1176,32786 -registration_grade(r784,c).registration_grade1177,32814 -registration_grade(r784,c).registration_grade1177,32814 -registration_grade(r785,c).registration_grade1178,32842 -registration_grade(r785,c).registration_grade1178,32842 -registration_grade(r786,c).registration_grade1179,32870 -registration_grade(r786,c).registration_grade1179,32870 -registration_grade(r787,a).registration_grade1180,32898 -registration_grade(r787,a).registration_grade1180,32898 -registration_grade(r788,a).registration_grade1181,32926 -registration_grade(r788,a).registration_grade1181,32926 -registration_grade(r789,c).registration_grade1182,32954 -registration_grade(r789,c).registration_grade1182,32954 -registration_grade(r790,b).registration_grade1183,32982 -registration_grade(r790,b).registration_grade1183,32982 -registration_grade(r791,b).registration_grade1184,33010 -registration_grade(r791,b).registration_grade1184,33010 -registration_grade(r792,a).registration_grade1185,33038 -registration_grade(r792,a).registration_grade1185,33038 -registration_grade(r793,a).registration_grade1186,33066 -registration_grade(r793,a).registration_grade1186,33066 -registration_grade(r794,b).registration_grade1187,33094 -registration_grade(r794,b).registration_grade1187,33094 -registration_grade(r795,a).registration_grade1188,33122 -registration_grade(r795,a).registration_grade1188,33122 -registration_grade(r796,a).registration_grade1189,33150 -registration_grade(r796,a).registration_grade1189,33150 -registration_grade(r797,a).registration_grade1190,33178 -registration_grade(r797,a).registration_grade1190,33178 -registration_grade(r798,b).registration_grade1191,33206 -registration_grade(r798,b).registration_grade1191,33206 -registration_grade(r799,c).registration_grade1192,33234 -registration_grade(r799,c).registration_grade1192,33234 -registration_grade(r800,b).registration_grade1193,33262 -registration_grade(r800,b).registration_grade1193,33262 -registration_grade(r801,b).registration_grade1194,33290 -registration_grade(r801,b).registration_grade1194,33290 -registration_grade(r802,a).registration_grade1195,33318 -registration_grade(r802,a).registration_grade1195,33318 -registration_grade(r803,b).registration_grade1196,33346 -registration_grade(r803,b).registration_grade1196,33346 -registration_grade(r804,a).registration_grade1197,33374 -registration_grade(r804,a).registration_grade1197,33374 -registration_grade(r805,b).registration_grade1198,33402 -registration_grade(r805,b).registration_grade1198,33402 -registration_grade(r806,a).registration_grade1199,33430 -registration_grade(r806,a).registration_grade1199,33430 -registration_grade(r807,a).registration_grade1200,33458 -registration_grade(r807,a).registration_grade1200,33458 -registration_grade(r808,b).registration_grade1201,33486 -registration_grade(r808,b).registration_grade1201,33486 -registration_grade(r809,c).registration_grade1202,33514 -registration_grade(r809,c).registration_grade1202,33514 -registration_grade(r810,b).registration_grade1203,33542 -registration_grade(r810,b).registration_grade1203,33542 -registration_grade(r811,d).registration_grade1204,33570 -registration_grade(r811,d).registration_grade1204,33570 -registration_grade(r812,c).registration_grade1205,33598 -registration_grade(r812,c).registration_grade1205,33598 -registration_grade(r813,c).registration_grade1206,33626 -registration_grade(r813,c).registration_grade1206,33626 -registration_grade(r814,c).registration_grade1207,33654 -registration_grade(r814,c).registration_grade1207,33654 -registration_grade(r815,c).registration_grade1208,33682 -registration_grade(r815,c).registration_grade1208,33682 -registration_grade(r816,b).registration_grade1209,33710 -registration_grade(r816,b).registration_grade1209,33710 -registration_grade(r817,a).registration_grade1210,33738 -registration_grade(r817,a).registration_grade1210,33738 -registration_grade(r818,b).registration_grade1211,33766 -registration_grade(r818,b).registration_grade1211,33766 -registration_grade(r819,b).registration_grade1212,33794 -registration_grade(r819,b).registration_grade1212,33794 -registration_grade(r820,d).registration_grade1213,33822 -registration_grade(r820,d).registration_grade1213,33822 -registration_grade(r821,b).registration_grade1214,33850 -registration_grade(r821,b).registration_grade1214,33850 -registration_grade(r822,a).registration_grade1215,33878 -registration_grade(r822,a).registration_grade1215,33878 -registration_grade(r823,a).registration_grade1216,33906 -registration_grade(r823,a).registration_grade1216,33906 -registration_grade(r824,c).registration_grade1217,33934 -registration_grade(r824,c).registration_grade1217,33934 -registration_grade(r825,b).registration_grade1218,33962 -registration_grade(r825,b).registration_grade1218,33962 -registration_grade(r826,b).registration_grade1219,33990 -registration_grade(r826,b).registration_grade1219,33990 -registration_grade(r827,c).registration_grade1220,34018 -registration_grade(r827,c).registration_grade1220,34018 -registration_grade(r828,b).registration_grade1221,34046 -registration_grade(r828,b).registration_grade1221,34046 -registration_grade(r829,b).registration_grade1222,34074 -registration_grade(r829,b).registration_grade1222,34074 -registration_grade(r830,a).registration_grade1223,34102 -registration_grade(r830,a).registration_grade1223,34102 -registration_grade(r831,a).registration_grade1224,34130 -registration_grade(r831,a).registration_grade1224,34130 -registration_grade(r832,b).registration_grade1225,34158 -registration_grade(r832,b).registration_grade1225,34158 -registration_grade(r833,b).registration_grade1226,34186 -registration_grade(r833,b).registration_grade1226,34186 -registration_grade(r834,b).registration_grade1227,34214 -registration_grade(r834,b).registration_grade1227,34214 -registration_grade(r835,a).registration_grade1228,34242 -registration_grade(r835,a).registration_grade1228,34242 -registration_grade(r836,a).registration_grade1229,34270 -registration_grade(r836,a).registration_grade1229,34270 -registration_grade(r837,c).registration_grade1230,34298 -registration_grade(r837,c).registration_grade1230,34298 -registration_grade(r838,c).registration_grade1231,34326 -registration_grade(r838,c).registration_grade1231,34326 -registration_grade(r839,b).registration_grade1232,34354 -registration_grade(r839,b).registration_grade1232,34354 -registration_grade(r840,b).registration_grade1233,34382 -registration_grade(r840,b).registration_grade1233,34382 -registration_grade(r841,a).registration_grade1234,34410 -registration_grade(r841,a).registration_grade1234,34410 -registration_grade(r842,a).registration_grade1235,34438 -registration_grade(r842,a).registration_grade1235,34438 -registration_grade(r843,b).registration_grade1236,34466 -registration_grade(r843,b).registration_grade1236,34466 -registration_grade(r844,a).registration_grade1237,34494 -registration_grade(r844,a).registration_grade1237,34494 -registration_grade(r845,c).registration_grade1238,34522 -registration_grade(r845,c).registration_grade1238,34522 -registration_grade(r846,b).registration_grade1239,34550 -registration_grade(r846,b).registration_grade1239,34550 -registration_grade(r847,b).registration_grade1240,34578 -registration_grade(r847,b).registration_grade1240,34578 -registration_grade(r848,c).registration_grade1241,34606 -registration_grade(r848,c).registration_grade1241,34606 -registration_grade(r849,b).registration_grade1242,34634 -registration_grade(r849,b).registration_grade1242,34634 -registration_grade(r850,b).registration_grade1243,34662 -registration_grade(r850,b).registration_grade1243,34662 -registration_grade(r851,b).registration_grade1244,34690 -registration_grade(r851,b).registration_grade1244,34690 -registration_grade(r852,c).registration_grade1245,34718 -registration_grade(r852,c).registration_grade1245,34718 -registration_grade(r853,b).registration_grade1246,34746 -registration_grade(r853,b).registration_grade1246,34746 -registration_grade(r854,c).registration_grade1247,34774 -registration_grade(r854,c).registration_grade1247,34774 -registration_grade(r855,d).registration_grade1248,34802 -registration_grade(r855,d).registration_grade1248,34802 -registration_grade(r856,c).registration_grade1249,34830 -registration_grade(r856,c).registration_grade1249,34830 -registration_satisfaction(r0,h).registration_satisfaction1252,34860 -registration_satisfaction(r0,h).registration_satisfaction1252,34860 -registration_satisfaction(r1,l).registration_satisfaction1253,34893 -registration_satisfaction(r1,l).registration_satisfaction1253,34893 -registration_satisfaction(r2,h).registration_satisfaction1254,34926 -registration_satisfaction(r2,h).registration_satisfaction1254,34926 -registration_satisfaction(r3,m).registration_satisfaction1255,34959 -registration_satisfaction(r3,m).registration_satisfaction1255,34959 -registration_satisfaction(r4,h).registration_satisfaction1256,34992 -registration_satisfaction(r4,h).registration_satisfaction1256,34992 -registration_satisfaction(r5,h).registration_satisfaction1257,35025 -registration_satisfaction(r5,h).registration_satisfaction1257,35025 -registration_satisfaction(r6,h).registration_satisfaction1258,35058 -registration_satisfaction(r6,h).registration_satisfaction1258,35058 -registration_satisfaction(r7,h).registration_satisfaction1259,35091 -registration_satisfaction(r7,h).registration_satisfaction1259,35091 -registration_satisfaction(r8,l).registration_satisfaction1260,35124 -registration_satisfaction(r8,l).registration_satisfaction1260,35124 -registration_satisfaction(r9,h).registration_satisfaction1261,35157 -registration_satisfaction(r9,h).registration_satisfaction1261,35157 -registration_satisfaction(r10,h).registration_satisfaction1262,35190 -registration_satisfaction(r10,h).registration_satisfaction1262,35190 -registration_satisfaction(r11,h).registration_satisfaction1263,35224 -registration_satisfaction(r11,h).registration_satisfaction1263,35224 -registration_satisfaction(r12,h).registration_satisfaction1264,35258 -registration_satisfaction(r12,h).registration_satisfaction1264,35258 -registration_satisfaction(r13,h).registration_satisfaction1265,35292 -registration_satisfaction(r13,h).registration_satisfaction1265,35292 -registration_satisfaction(r14,m).registration_satisfaction1266,35326 -registration_satisfaction(r14,m).registration_satisfaction1266,35326 -registration_satisfaction(r15,h).registration_satisfaction1267,35360 -registration_satisfaction(r15,h).registration_satisfaction1267,35360 -registration_satisfaction(r16,h).registration_satisfaction1268,35394 -registration_satisfaction(r16,h).registration_satisfaction1268,35394 -registration_satisfaction(r17,l).registration_satisfaction1269,35428 -registration_satisfaction(r17,l).registration_satisfaction1269,35428 -registration_satisfaction(r18,l).registration_satisfaction1270,35462 -registration_satisfaction(r18,l).registration_satisfaction1270,35462 -registration_satisfaction(r19,m).registration_satisfaction1271,35496 -registration_satisfaction(r19,m).registration_satisfaction1271,35496 -registration_satisfaction(r20,h).registration_satisfaction1272,35530 -registration_satisfaction(r20,h).registration_satisfaction1272,35530 -registration_satisfaction(r21,h).registration_satisfaction1273,35564 -registration_satisfaction(r21,h).registration_satisfaction1273,35564 -registration_satisfaction(r22,h).registration_satisfaction1274,35598 -registration_satisfaction(r22,h).registration_satisfaction1274,35598 -registration_satisfaction(r23,m).registration_satisfaction1275,35632 -registration_satisfaction(r23,m).registration_satisfaction1275,35632 -registration_satisfaction(r24,h).registration_satisfaction1276,35666 -registration_satisfaction(r24,h).registration_satisfaction1276,35666 -registration_satisfaction(r25,h).registration_satisfaction1277,35700 -registration_satisfaction(r25,h).registration_satisfaction1277,35700 -registration_satisfaction(r26,h).registration_satisfaction1278,35734 -registration_satisfaction(r26,h).registration_satisfaction1278,35734 -registration_satisfaction(r27,h).registration_satisfaction1279,35768 -registration_satisfaction(r27,h).registration_satisfaction1279,35768 -registration_satisfaction(r28,h).registration_satisfaction1280,35802 -registration_satisfaction(r28,h).registration_satisfaction1280,35802 -registration_satisfaction(r29,h).registration_satisfaction1281,35836 -registration_satisfaction(r29,h).registration_satisfaction1281,35836 -registration_satisfaction(r30,l).registration_satisfaction1282,35870 -registration_satisfaction(r30,l).registration_satisfaction1282,35870 -registration_satisfaction(r31,h).registration_satisfaction1283,35904 -registration_satisfaction(r31,h).registration_satisfaction1283,35904 -registration_satisfaction(r32,m).registration_satisfaction1284,35938 -registration_satisfaction(r32,m).registration_satisfaction1284,35938 -registration_satisfaction(r33,h).registration_satisfaction1285,35972 -registration_satisfaction(r33,h).registration_satisfaction1285,35972 -registration_satisfaction(r34,h).registration_satisfaction1286,36006 -registration_satisfaction(r34,h).registration_satisfaction1286,36006 -registration_satisfaction(r35,h).registration_satisfaction1287,36040 -registration_satisfaction(r35,h).registration_satisfaction1287,36040 -registration_satisfaction(r36,m).registration_satisfaction1288,36074 -registration_satisfaction(r36,m).registration_satisfaction1288,36074 -registration_satisfaction(r37,h).registration_satisfaction1289,36108 -registration_satisfaction(r37,h).registration_satisfaction1289,36108 -registration_satisfaction(r38,h).registration_satisfaction1290,36142 -registration_satisfaction(r38,h).registration_satisfaction1290,36142 -registration_satisfaction(r39,h).registration_satisfaction1291,36176 -registration_satisfaction(r39,h).registration_satisfaction1291,36176 -registration_satisfaction(r40,h).registration_satisfaction1292,36210 -registration_satisfaction(r40,h).registration_satisfaction1292,36210 -registration_satisfaction(r41,h).registration_satisfaction1293,36244 -registration_satisfaction(r41,h).registration_satisfaction1293,36244 -registration_satisfaction(r42,l).registration_satisfaction1294,36278 -registration_satisfaction(r42,l).registration_satisfaction1294,36278 -registration_satisfaction(r43,h).registration_satisfaction1295,36312 -registration_satisfaction(r43,h).registration_satisfaction1295,36312 -registration_satisfaction(r44,h).registration_satisfaction1296,36346 -registration_satisfaction(r44,h).registration_satisfaction1296,36346 -registration_satisfaction(r45,h).registration_satisfaction1297,36380 -registration_satisfaction(r45,h).registration_satisfaction1297,36380 -registration_satisfaction(r46,m).registration_satisfaction1298,36414 -registration_satisfaction(r46,m).registration_satisfaction1298,36414 -registration_satisfaction(r47,h).registration_satisfaction1299,36448 -registration_satisfaction(r47,h).registration_satisfaction1299,36448 -registration_satisfaction(r48,h).registration_satisfaction1300,36482 -registration_satisfaction(r48,h).registration_satisfaction1300,36482 -registration_satisfaction(r49,h).registration_satisfaction1301,36516 -registration_satisfaction(r49,h).registration_satisfaction1301,36516 -registration_satisfaction(r50,h).registration_satisfaction1302,36550 -registration_satisfaction(r50,h).registration_satisfaction1302,36550 -registration_satisfaction(r51,h).registration_satisfaction1303,36584 -registration_satisfaction(r51,h).registration_satisfaction1303,36584 -registration_satisfaction(r52,h).registration_satisfaction1304,36618 -registration_satisfaction(r52,h).registration_satisfaction1304,36618 -registration_satisfaction(r53,h).registration_satisfaction1305,36652 -registration_satisfaction(r53,h).registration_satisfaction1305,36652 -registration_satisfaction(r54,h).registration_satisfaction1306,36686 -registration_satisfaction(r54,h).registration_satisfaction1306,36686 -registration_satisfaction(r55,h).registration_satisfaction1307,36720 -registration_satisfaction(r55,h).registration_satisfaction1307,36720 -registration_satisfaction(r56,l).registration_satisfaction1308,36754 -registration_satisfaction(r56,l).registration_satisfaction1308,36754 -registration_satisfaction(r57,h).registration_satisfaction1309,36788 -registration_satisfaction(r57,h).registration_satisfaction1309,36788 -registration_satisfaction(r58,h).registration_satisfaction1310,36822 -registration_satisfaction(r58,h).registration_satisfaction1310,36822 -registration_satisfaction(r59,l).registration_satisfaction1311,36856 -registration_satisfaction(r59,l).registration_satisfaction1311,36856 -registration_satisfaction(r60,h).registration_satisfaction1312,36890 -registration_satisfaction(r60,h).registration_satisfaction1312,36890 -registration_satisfaction(r61,h).registration_satisfaction1313,36924 -registration_satisfaction(r61,h).registration_satisfaction1313,36924 -registration_satisfaction(r62,h).registration_satisfaction1314,36958 -registration_satisfaction(r62,h).registration_satisfaction1314,36958 -registration_satisfaction(r63,h).registration_satisfaction1315,36992 -registration_satisfaction(r63,h).registration_satisfaction1315,36992 -registration_satisfaction(r64,h).registration_satisfaction1316,37026 -registration_satisfaction(r64,h).registration_satisfaction1316,37026 -registration_satisfaction(r65,h).registration_satisfaction1317,37060 -registration_satisfaction(r65,h).registration_satisfaction1317,37060 -registration_satisfaction(r66,h).registration_satisfaction1318,37094 -registration_satisfaction(r66,h).registration_satisfaction1318,37094 -registration_satisfaction(r67,m).registration_satisfaction1319,37128 -registration_satisfaction(r67,m).registration_satisfaction1319,37128 -registration_satisfaction(r68,h).registration_satisfaction1320,37162 -registration_satisfaction(r68,h).registration_satisfaction1320,37162 -registration_satisfaction(r69,m).registration_satisfaction1321,37196 -registration_satisfaction(r69,m).registration_satisfaction1321,37196 -registration_satisfaction(r70,h).registration_satisfaction1322,37230 -registration_satisfaction(r70,h).registration_satisfaction1322,37230 -registration_satisfaction(r71,h).registration_satisfaction1323,37264 -registration_satisfaction(r71,h).registration_satisfaction1323,37264 -registration_satisfaction(r72,l).registration_satisfaction1324,37298 -registration_satisfaction(r72,l).registration_satisfaction1324,37298 -registration_satisfaction(r73,h).registration_satisfaction1325,37332 -registration_satisfaction(r73,h).registration_satisfaction1325,37332 -registration_satisfaction(r74,h).registration_satisfaction1326,37366 -registration_satisfaction(r74,h).registration_satisfaction1326,37366 -registration_satisfaction(r75,h).registration_satisfaction1327,37400 -registration_satisfaction(r75,h).registration_satisfaction1327,37400 -registration_satisfaction(r76,h).registration_satisfaction1328,37434 -registration_satisfaction(r76,h).registration_satisfaction1328,37434 -registration_satisfaction(r77,h).registration_satisfaction1329,37468 -registration_satisfaction(r77,h).registration_satisfaction1329,37468 -registration_satisfaction(r78,m).registration_satisfaction1330,37502 -registration_satisfaction(r78,m).registration_satisfaction1330,37502 -registration_satisfaction(r79,h).registration_satisfaction1331,37536 -registration_satisfaction(r79,h).registration_satisfaction1331,37536 -registration_satisfaction(r80,h).registration_satisfaction1332,37570 -registration_satisfaction(r80,h).registration_satisfaction1332,37570 -registration_satisfaction(r81,h).registration_satisfaction1333,37604 -registration_satisfaction(r81,h).registration_satisfaction1333,37604 -registration_satisfaction(r82,l).registration_satisfaction1334,37638 -registration_satisfaction(r82,l).registration_satisfaction1334,37638 -registration_satisfaction(r83,m).registration_satisfaction1335,37672 -registration_satisfaction(r83,m).registration_satisfaction1335,37672 -registration_satisfaction(r84,m).registration_satisfaction1336,37706 -registration_satisfaction(r84,m).registration_satisfaction1336,37706 -registration_satisfaction(r85,h).registration_satisfaction1337,37740 -registration_satisfaction(r85,h).registration_satisfaction1337,37740 -registration_satisfaction(r86,m).registration_satisfaction1338,37774 -registration_satisfaction(r86,m).registration_satisfaction1338,37774 -registration_satisfaction(r87,m).registration_satisfaction1339,37808 -registration_satisfaction(r87,m).registration_satisfaction1339,37808 -registration_satisfaction(r88,h).registration_satisfaction1340,37842 -registration_satisfaction(r88,h).registration_satisfaction1340,37842 -registration_satisfaction(r89,h).registration_satisfaction1341,37876 -registration_satisfaction(r89,h).registration_satisfaction1341,37876 -registration_satisfaction(r90,m).registration_satisfaction1342,37910 -registration_satisfaction(r90,m).registration_satisfaction1342,37910 -registration_satisfaction(r91,h).registration_satisfaction1343,37944 -registration_satisfaction(r91,h).registration_satisfaction1343,37944 -registration_satisfaction(r92,l).registration_satisfaction1344,37978 -registration_satisfaction(r92,l).registration_satisfaction1344,37978 -registration_satisfaction(r93,h).registration_satisfaction1345,38012 -registration_satisfaction(r93,h).registration_satisfaction1345,38012 -registration_satisfaction(r94,l).registration_satisfaction1346,38046 -registration_satisfaction(r94,l).registration_satisfaction1346,38046 -registration_satisfaction(r95,h).registration_satisfaction1347,38080 -registration_satisfaction(r95,h).registration_satisfaction1347,38080 -registration_satisfaction(r96,h).registration_satisfaction1348,38114 -registration_satisfaction(r96,h).registration_satisfaction1348,38114 -registration_satisfaction(r97,h).registration_satisfaction1349,38148 -registration_satisfaction(r97,h).registration_satisfaction1349,38148 -registration_satisfaction(r98,h).registration_satisfaction1350,38182 -registration_satisfaction(r98,h).registration_satisfaction1350,38182 -registration_satisfaction(r99,h).registration_satisfaction1351,38216 -registration_satisfaction(r99,h).registration_satisfaction1351,38216 -registration_satisfaction(r100,h).registration_satisfaction1352,38250 -registration_satisfaction(r100,h).registration_satisfaction1352,38250 -registration_satisfaction(r101,h).registration_satisfaction1353,38285 -registration_satisfaction(r101,h).registration_satisfaction1353,38285 -registration_satisfaction(r102,h).registration_satisfaction1354,38320 -registration_satisfaction(r102,h).registration_satisfaction1354,38320 -registration_satisfaction(r103,h).registration_satisfaction1355,38355 -registration_satisfaction(r103,h).registration_satisfaction1355,38355 -registration_satisfaction(r104,h).registration_satisfaction1356,38390 -registration_satisfaction(r104,h).registration_satisfaction1356,38390 -registration_satisfaction(r105,l).registration_satisfaction1357,38425 -registration_satisfaction(r105,l).registration_satisfaction1357,38425 -registration_satisfaction(r106,h).registration_satisfaction1358,38460 -registration_satisfaction(r106,h).registration_satisfaction1358,38460 -registration_satisfaction(r107,l).registration_satisfaction1359,38495 -registration_satisfaction(r107,l).registration_satisfaction1359,38495 -registration_satisfaction(r108,l).registration_satisfaction1360,38530 -registration_satisfaction(r108,l).registration_satisfaction1360,38530 -registration_satisfaction(r109,h).registration_satisfaction1361,38565 -registration_satisfaction(r109,h).registration_satisfaction1361,38565 -registration_satisfaction(r110,h).registration_satisfaction1362,38600 -registration_satisfaction(r110,h).registration_satisfaction1362,38600 -registration_satisfaction(r111,h).registration_satisfaction1363,38635 -registration_satisfaction(r111,h).registration_satisfaction1363,38635 -registration_satisfaction(r112,h).registration_satisfaction1364,38670 -registration_satisfaction(r112,h).registration_satisfaction1364,38670 -registration_satisfaction(r113,h).registration_satisfaction1365,38705 -registration_satisfaction(r113,h).registration_satisfaction1365,38705 -registration_satisfaction(r114,m).registration_satisfaction1366,38740 -registration_satisfaction(r114,m).registration_satisfaction1366,38740 -registration_satisfaction(r115,l).registration_satisfaction1367,38775 -registration_satisfaction(r115,l).registration_satisfaction1367,38775 -registration_satisfaction(r116,h).registration_satisfaction1368,38810 -registration_satisfaction(r116,h).registration_satisfaction1368,38810 -registration_satisfaction(r117,h).registration_satisfaction1369,38845 -registration_satisfaction(r117,h).registration_satisfaction1369,38845 -registration_satisfaction(r118,h).registration_satisfaction1370,38880 -registration_satisfaction(r118,h).registration_satisfaction1370,38880 -registration_satisfaction(r119,h).registration_satisfaction1371,38915 -registration_satisfaction(r119,h).registration_satisfaction1371,38915 -registration_satisfaction(r120,l).registration_satisfaction1372,38950 -registration_satisfaction(r120,l).registration_satisfaction1372,38950 -registration_satisfaction(r121,h).registration_satisfaction1373,38985 -registration_satisfaction(r121,h).registration_satisfaction1373,38985 -registration_satisfaction(r122,h).registration_satisfaction1374,39020 -registration_satisfaction(r122,h).registration_satisfaction1374,39020 -registration_satisfaction(r123,l).registration_satisfaction1375,39055 -registration_satisfaction(r123,l).registration_satisfaction1375,39055 -registration_satisfaction(r124,h).registration_satisfaction1376,39090 -registration_satisfaction(r124,h).registration_satisfaction1376,39090 -registration_satisfaction(r125,m).registration_satisfaction1377,39125 -registration_satisfaction(r125,m).registration_satisfaction1377,39125 -registration_satisfaction(r126,h).registration_satisfaction1378,39160 -registration_satisfaction(r126,h).registration_satisfaction1378,39160 -registration_satisfaction(r127,h).registration_satisfaction1379,39195 -registration_satisfaction(r127,h).registration_satisfaction1379,39195 -registration_satisfaction(r128,h).registration_satisfaction1380,39230 -registration_satisfaction(r128,h).registration_satisfaction1380,39230 -registration_satisfaction(r129,h).registration_satisfaction1381,39265 -registration_satisfaction(r129,h).registration_satisfaction1381,39265 -registration_satisfaction(r130,h).registration_satisfaction1382,39300 -registration_satisfaction(r130,h).registration_satisfaction1382,39300 -registration_satisfaction(r131,h).registration_satisfaction1383,39335 -registration_satisfaction(r131,h).registration_satisfaction1383,39335 -registration_satisfaction(r132,m).registration_satisfaction1384,39370 -registration_satisfaction(r132,m).registration_satisfaction1384,39370 -registration_satisfaction(r133,h).registration_satisfaction1385,39405 -registration_satisfaction(r133,h).registration_satisfaction1385,39405 -registration_satisfaction(r134,m).registration_satisfaction1386,39440 -registration_satisfaction(r134,m).registration_satisfaction1386,39440 -registration_satisfaction(r135,h).registration_satisfaction1387,39475 -registration_satisfaction(r135,h).registration_satisfaction1387,39475 -registration_satisfaction(r136,h).registration_satisfaction1388,39510 -registration_satisfaction(r136,h).registration_satisfaction1388,39510 -registration_satisfaction(r137,h).registration_satisfaction1389,39545 -registration_satisfaction(r137,h).registration_satisfaction1389,39545 -registration_satisfaction(r138,h).registration_satisfaction1390,39580 -registration_satisfaction(r138,h).registration_satisfaction1390,39580 -registration_satisfaction(r139,h).registration_satisfaction1391,39615 -registration_satisfaction(r139,h).registration_satisfaction1391,39615 -registration_satisfaction(r140,h).registration_satisfaction1392,39650 -registration_satisfaction(r140,h).registration_satisfaction1392,39650 -registration_satisfaction(r141,l).registration_satisfaction1393,39685 -registration_satisfaction(r141,l).registration_satisfaction1393,39685 -registration_satisfaction(r142,h).registration_satisfaction1394,39720 -registration_satisfaction(r142,h).registration_satisfaction1394,39720 -registration_satisfaction(r143,h).registration_satisfaction1395,39755 -registration_satisfaction(r143,h).registration_satisfaction1395,39755 -registration_satisfaction(r144,h).registration_satisfaction1396,39790 -registration_satisfaction(r144,h).registration_satisfaction1396,39790 -registration_satisfaction(r145,l).registration_satisfaction1397,39825 -registration_satisfaction(r145,l).registration_satisfaction1397,39825 -registration_satisfaction(r146,h).registration_satisfaction1398,39860 -registration_satisfaction(r146,h).registration_satisfaction1398,39860 -registration_satisfaction(r147,l).registration_satisfaction1399,39895 -registration_satisfaction(r147,l).registration_satisfaction1399,39895 -registration_satisfaction(r148,m).registration_satisfaction1400,39930 -registration_satisfaction(r148,m).registration_satisfaction1400,39930 -registration_satisfaction(r149,h).registration_satisfaction1401,39965 -registration_satisfaction(r149,h).registration_satisfaction1401,39965 -registration_satisfaction(r150,h).registration_satisfaction1402,40000 -registration_satisfaction(r150,h).registration_satisfaction1402,40000 -registration_satisfaction(r151,h).registration_satisfaction1403,40035 -registration_satisfaction(r151,h).registration_satisfaction1403,40035 -registration_satisfaction(r152,h).registration_satisfaction1404,40070 -registration_satisfaction(r152,h).registration_satisfaction1404,40070 -registration_satisfaction(r153,h).registration_satisfaction1405,40105 -registration_satisfaction(r153,h).registration_satisfaction1405,40105 -registration_satisfaction(r154,m).registration_satisfaction1406,40140 -registration_satisfaction(r154,m).registration_satisfaction1406,40140 -registration_satisfaction(r155,m).registration_satisfaction1407,40175 -registration_satisfaction(r155,m).registration_satisfaction1407,40175 -registration_satisfaction(r156,h).registration_satisfaction1408,40210 -registration_satisfaction(r156,h).registration_satisfaction1408,40210 -registration_satisfaction(r157,m).registration_satisfaction1409,40245 -registration_satisfaction(r157,m).registration_satisfaction1409,40245 -registration_satisfaction(r158,l).registration_satisfaction1410,40280 -registration_satisfaction(r158,l).registration_satisfaction1410,40280 -registration_satisfaction(r159,m).registration_satisfaction1411,40315 -registration_satisfaction(r159,m).registration_satisfaction1411,40315 -registration_satisfaction(r160,h).registration_satisfaction1412,40350 -registration_satisfaction(r160,h).registration_satisfaction1412,40350 -registration_satisfaction(r161,h).registration_satisfaction1413,40385 -registration_satisfaction(r161,h).registration_satisfaction1413,40385 -registration_satisfaction(r162,m).registration_satisfaction1414,40420 -registration_satisfaction(r162,m).registration_satisfaction1414,40420 -registration_satisfaction(r163,h).registration_satisfaction1415,40455 -registration_satisfaction(r163,h).registration_satisfaction1415,40455 -registration_satisfaction(r164,m).registration_satisfaction1416,40490 -registration_satisfaction(r164,m).registration_satisfaction1416,40490 -registration_satisfaction(r165,m).registration_satisfaction1417,40525 -registration_satisfaction(r165,m).registration_satisfaction1417,40525 -registration_satisfaction(r166,l).registration_satisfaction1418,40560 -registration_satisfaction(r166,l).registration_satisfaction1418,40560 -registration_satisfaction(r167,h).registration_satisfaction1419,40595 -registration_satisfaction(r167,h).registration_satisfaction1419,40595 -registration_satisfaction(r168,h).registration_satisfaction1420,40630 -registration_satisfaction(r168,h).registration_satisfaction1420,40630 -registration_satisfaction(r169,h).registration_satisfaction1421,40665 -registration_satisfaction(r169,h).registration_satisfaction1421,40665 -registration_satisfaction(r170,h).registration_satisfaction1422,40700 -registration_satisfaction(r170,h).registration_satisfaction1422,40700 -registration_satisfaction(r171,h).registration_satisfaction1423,40735 -registration_satisfaction(r171,h).registration_satisfaction1423,40735 -registration_satisfaction(r172,h).registration_satisfaction1424,40770 -registration_satisfaction(r172,h).registration_satisfaction1424,40770 -registration_satisfaction(r173,h).registration_satisfaction1425,40805 -registration_satisfaction(r173,h).registration_satisfaction1425,40805 -registration_satisfaction(r174,h).registration_satisfaction1426,40840 -registration_satisfaction(r174,h).registration_satisfaction1426,40840 -registration_satisfaction(r175,h).registration_satisfaction1427,40875 -registration_satisfaction(r175,h).registration_satisfaction1427,40875 -registration_satisfaction(r176,h).registration_satisfaction1428,40910 -registration_satisfaction(r176,h).registration_satisfaction1428,40910 -registration_satisfaction(r177,h).registration_satisfaction1429,40945 -registration_satisfaction(r177,h).registration_satisfaction1429,40945 -registration_satisfaction(r178,h).registration_satisfaction1430,40980 -registration_satisfaction(r178,h).registration_satisfaction1430,40980 -registration_satisfaction(r179,l).registration_satisfaction1431,41015 -registration_satisfaction(r179,l).registration_satisfaction1431,41015 -registration_satisfaction(r180,h).registration_satisfaction1432,41050 -registration_satisfaction(r180,h).registration_satisfaction1432,41050 -registration_satisfaction(r181,m).registration_satisfaction1433,41085 -registration_satisfaction(r181,m).registration_satisfaction1433,41085 -registration_satisfaction(r182,h).registration_satisfaction1434,41120 -registration_satisfaction(r182,h).registration_satisfaction1434,41120 -registration_satisfaction(r183,l).registration_satisfaction1435,41155 -registration_satisfaction(r183,l).registration_satisfaction1435,41155 -registration_satisfaction(r184,h).registration_satisfaction1436,41190 -registration_satisfaction(r184,h).registration_satisfaction1436,41190 -registration_satisfaction(r185,h).registration_satisfaction1437,41225 -registration_satisfaction(r185,h).registration_satisfaction1437,41225 -registration_satisfaction(r186,h).registration_satisfaction1438,41260 -registration_satisfaction(r186,h).registration_satisfaction1438,41260 -registration_satisfaction(r187,h).registration_satisfaction1439,41295 -registration_satisfaction(r187,h).registration_satisfaction1439,41295 -registration_satisfaction(r188,m).registration_satisfaction1440,41330 -registration_satisfaction(r188,m).registration_satisfaction1440,41330 -registration_satisfaction(r189,h).registration_satisfaction1441,41365 -registration_satisfaction(r189,h).registration_satisfaction1441,41365 -registration_satisfaction(r190,h).registration_satisfaction1442,41400 -registration_satisfaction(r190,h).registration_satisfaction1442,41400 -registration_satisfaction(r191,h).registration_satisfaction1443,41435 -registration_satisfaction(r191,h).registration_satisfaction1443,41435 -registration_satisfaction(r192,m).registration_satisfaction1444,41470 -registration_satisfaction(r192,m).registration_satisfaction1444,41470 -registration_satisfaction(r193,h).registration_satisfaction1445,41505 -registration_satisfaction(r193,h).registration_satisfaction1445,41505 -registration_satisfaction(r194,h).registration_satisfaction1446,41540 -registration_satisfaction(r194,h).registration_satisfaction1446,41540 -registration_satisfaction(r195,h).registration_satisfaction1447,41575 -registration_satisfaction(r195,h).registration_satisfaction1447,41575 -registration_satisfaction(r196,h).registration_satisfaction1448,41610 -registration_satisfaction(r196,h).registration_satisfaction1448,41610 -registration_satisfaction(r197,h).registration_satisfaction1449,41645 -registration_satisfaction(r197,h).registration_satisfaction1449,41645 -registration_satisfaction(r198,h).registration_satisfaction1450,41680 -registration_satisfaction(r198,h).registration_satisfaction1450,41680 -registration_satisfaction(r199,h).registration_satisfaction1451,41715 -registration_satisfaction(r199,h).registration_satisfaction1451,41715 -registration_satisfaction(r200,m).registration_satisfaction1452,41750 -registration_satisfaction(r200,m).registration_satisfaction1452,41750 -registration_satisfaction(r201,h).registration_satisfaction1453,41785 -registration_satisfaction(r201,h).registration_satisfaction1453,41785 -registration_satisfaction(r202,h).registration_satisfaction1454,41820 -registration_satisfaction(r202,h).registration_satisfaction1454,41820 -registration_satisfaction(r203,h).registration_satisfaction1455,41855 -registration_satisfaction(r203,h).registration_satisfaction1455,41855 -registration_satisfaction(r204,h).registration_satisfaction1456,41890 -registration_satisfaction(r204,h).registration_satisfaction1456,41890 -registration_satisfaction(r205,h).registration_satisfaction1457,41925 -registration_satisfaction(r205,h).registration_satisfaction1457,41925 -registration_satisfaction(r206,h).registration_satisfaction1458,41960 -registration_satisfaction(r206,h).registration_satisfaction1458,41960 -registration_satisfaction(r207,h).registration_satisfaction1459,41995 -registration_satisfaction(r207,h).registration_satisfaction1459,41995 -registration_satisfaction(r208,h).registration_satisfaction1460,42030 -registration_satisfaction(r208,h).registration_satisfaction1460,42030 -registration_satisfaction(r209,h).registration_satisfaction1461,42065 -registration_satisfaction(r209,h).registration_satisfaction1461,42065 -registration_satisfaction(r210,h).registration_satisfaction1462,42100 -registration_satisfaction(r210,h).registration_satisfaction1462,42100 -registration_satisfaction(r211,m).registration_satisfaction1463,42135 -registration_satisfaction(r211,m).registration_satisfaction1463,42135 -registration_satisfaction(r212,h).registration_satisfaction1464,42170 -registration_satisfaction(r212,h).registration_satisfaction1464,42170 -registration_satisfaction(r213,h).registration_satisfaction1465,42205 -registration_satisfaction(r213,h).registration_satisfaction1465,42205 -registration_satisfaction(r214,h).registration_satisfaction1466,42240 -registration_satisfaction(r214,h).registration_satisfaction1466,42240 -registration_satisfaction(r215,h).registration_satisfaction1467,42275 -registration_satisfaction(r215,h).registration_satisfaction1467,42275 -registration_satisfaction(r216,h).registration_satisfaction1468,42310 -registration_satisfaction(r216,h).registration_satisfaction1468,42310 -registration_satisfaction(r217,h).registration_satisfaction1469,42345 -registration_satisfaction(r217,h).registration_satisfaction1469,42345 -registration_satisfaction(r218,m).registration_satisfaction1470,42380 -registration_satisfaction(r218,m).registration_satisfaction1470,42380 -registration_satisfaction(r219,h).registration_satisfaction1471,42415 -registration_satisfaction(r219,h).registration_satisfaction1471,42415 -registration_satisfaction(r220,h).registration_satisfaction1472,42450 -registration_satisfaction(r220,h).registration_satisfaction1472,42450 -registration_satisfaction(r221,m).registration_satisfaction1473,42485 -registration_satisfaction(r221,m).registration_satisfaction1473,42485 -registration_satisfaction(r222,l).registration_satisfaction1474,42520 -registration_satisfaction(r222,l).registration_satisfaction1474,42520 -registration_satisfaction(r223,h).registration_satisfaction1475,42555 -registration_satisfaction(r223,h).registration_satisfaction1475,42555 -registration_satisfaction(r224,h).registration_satisfaction1476,42590 -registration_satisfaction(r224,h).registration_satisfaction1476,42590 -registration_satisfaction(r225,l).registration_satisfaction1477,42625 -registration_satisfaction(r225,l).registration_satisfaction1477,42625 -registration_satisfaction(r226,l).registration_satisfaction1478,42660 -registration_satisfaction(r226,l).registration_satisfaction1478,42660 -registration_satisfaction(r227,h).registration_satisfaction1479,42695 -registration_satisfaction(r227,h).registration_satisfaction1479,42695 -registration_satisfaction(r228,l).registration_satisfaction1480,42730 -registration_satisfaction(r228,l).registration_satisfaction1480,42730 -registration_satisfaction(r229,l).registration_satisfaction1481,42765 -registration_satisfaction(r229,l).registration_satisfaction1481,42765 -registration_satisfaction(r230,h).registration_satisfaction1482,42800 -registration_satisfaction(r230,h).registration_satisfaction1482,42800 -registration_satisfaction(r231,l).registration_satisfaction1483,42835 -registration_satisfaction(r231,l).registration_satisfaction1483,42835 -registration_satisfaction(r232,h).registration_satisfaction1484,42870 -registration_satisfaction(r232,h).registration_satisfaction1484,42870 -registration_satisfaction(r233,m).registration_satisfaction1485,42905 -registration_satisfaction(r233,m).registration_satisfaction1485,42905 -registration_satisfaction(r234,l).registration_satisfaction1486,42940 -registration_satisfaction(r234,l).registration_satisfaction1486,42940 -registration_satisfaction(r235,h).registration_satisfaction1487,42975 -registration_satisfaction(r235,h).registration_satisfaction1487,42975 -registration_satisfaction(r236,l).registration_satisfaction1488,43010 -registration_satisfaction(r236,l).registration_satisfaction1488,43010 -registration_satisfaction(r237,m).registration_satisfaction1489,43045 -registration_satisfaction(r237,m).registration_satisfaction1489,43045 -registration_satisfaction(r238,m).registration_satisfaction1490,43080 -registration_satisfaction(r238,m).registration_satisfaction1490,43080 -registration_satisfaction(r239,m).registration_satisfaction1491,43115 -registration_satisfaction(r239,m).registration_satisfaction1491,43115 -registration_satisfaction(r240,h).registration_satisfaction1492,43150 -registration_satisfaction(r240,h).registration_satisfaction1492,43150 -registration_satisfaction(r241,h).registration_satisfaction1493,43185 -registration_satisfaction(r241,h).registration_satisfaction1493,43185 -registration_satisfaction(r242,m).registration_satisfaction1494,43220 -registration_satisfaction(r242,m).registration_satisfaction1494,43220 -registration_satisfaction(r243,h).registration_satisfaction1495,43255 -registration_satisfaction(r243,h).registration_satisfaction1495,43255 -registration_satisfaction(r244,m).registration_satisfaction1496,43290 -registration_satisfaction(r244,m).registration_satisfaction1496,43290 -registration_satisfaction(r245,h).registration_satisfaction1497,43325 -registration_satisfaction(r245,h).registration_satisfaction1497,43325 -registration_satisfaction(r246,h).registration_satisfaction1498,43360 -registration_satisfaction(r246,h).registration_satisfaction1498,43360 -registration_satisfaction(r247,l).registration_satisfaction1499,43395 -registration_satisfaction(r247,l).registration_satisfaction1499,43395 -registration_satisfaction(r248,l).registration_satisfaction1500,43430 -registration_satisfaction(r248,l).registration_satisfaction1500,43430 -registration_satisfaction(r249,h).registration_satisfaction1501,43465 -registration_satisfaction(r249,h).registration_satisfaction1501,43465 -registration_satisfaction(r250,h).registration_satisfaction1502,43500 -registration_satisfaction(r250,h).registration_satisfaction1502,43500 -registration_satisfaction(r251,h).registration_satisfaction1503,43535 -registration_satisfaction(r251,h).registration_satisfaction1503,43535 -registration_satisfaction(r252,h).registration_satisfaction1504,43570 -registration_satisfaction(r252,h).registration_satisfaction1504,43570 -registration_satisfaction(r253,h).registration_satisfaction1505,43605 -registration_satisfaction(r253,h).registration_satisfaction1505,43605 -registration_satisfaction(r254,h).registration_satisfaction1506,43640 -registration_satisfaction(r254,h).registration_satisfaction1506,43640 -registration_satisfaction(r255,h).registration_satisfaction1507,43675 -registration_satisfaction(r255,h).registration_satisfaction1507,43675 -registration_satisfaction(r256,h).registration_satisfaction1508,43710 -registration_satisfaction(r256,h).registration_satisfaction1508,43710 -registration_satisfaction(r257,m).registration_satisfaction1509,43745 -registration_satisfaction(r257,m).registration_satisfaction1509,43745 -registration_satisfaction(r258,h).registration_satisfaction1510,43780 -registration_satisfaction(r258,h).registration_satisfaction1510,43780 -registration_satisfaction(r259,h).registration_satisfaction1511,43815 -registration_satisfaction(r259,h).registration_satisfaction1511,43815 -registration_satisfaction(r260,h).registration_satisfaction1512,43850 -registration_satisfaction(r260,h).registration_satisfaction1512,43850 -registration_satisfaction(r261,h).registration_satisfaction1513,43885 -registration_satisfaction(r261,h).registration_satisfaction1513,43885 -registration_satisfaction(r262,h).registration_satisfaction1514,43920 -registration_satisfaction(r262,h).registration_satisfaction1514,43920 -registration_satisfaction(r263,m).registration_satisfaction1515,43955 -registration_satisfaction(r263,m).registration_satisfaction1515,43955 -registration_satisfaction(r264,h).registration_satisfaction1516,43990 -registration_satisfaction(r264,h).registration_satisfaction1516,43990 -registration_satisfaction(r265,h).registration_satisfaction1517,44025 -registration_satisfaction(r265,h).registration_satisfaction1517,44025 -registration_satisfaction(r266,l).registration_satisfaction1518,44060 -registration_satisfaction(r266,l).registration_satisfaction1518,44060 -registration_satisfaction(r267,h).registration_satisfaction1519,44095 -registration_satisfaction(r267,h).registration_satisfaction1519,44095 -registration_satisfaction(r268,l).registration_satisfaction1520,44130 -registration_satisfaction(r268,l).registration_satisfaction1520,44130 -registration_satisfaction(r269,h).registration_satisfaction1521,44165 -registration_satisfaction(r269,h).registration_satisfaction1521,44165 -registration_satisfaction(r270,l).registration_satisfaction1522,44200 -registration_satisfaction(r270,l).registration_satisfaction1522,44200 -registration_satisfaction(r271,h).registration_satisfaction1523,44235 -registration_satisfaction(r271,h).registration_satisfaction1523,44235 -registration_satisfaction(r272,l).registration_satisfaction1524,44270 -registration_satisfaction(r272,l).registration_satisfaction1524,44270 -registration_satisfaction(r273,h).registration_satisfaction1525,44305 -registration_satisfaction(r273,h).registration_satisfaction1525,44305 -registration_satisfaction(r274,h).registration_satisfaction1526,44340 -registration_satisfaction(r274,h).registration_satisfaction1526,44340 -registration_satisfaction(r275,h).registration_satisfaction1527,44375 -registration_satisfaction(r275,h).registration_satisfaction1527,44375 -registration_satisfaction(r276,h).registration_satisfaction1528,44410 -registration_satisfaction(r276,h).registration_satisfaction1528,44410 -registration_satisfaction(r277,h).registration_satisfaction1529,44445 -registration_satisfaction(r277,h).registration_satisfaction1529,44445 -registration_satisfaction(r278,h).registration_satisfaction1530,44480 -registration_satisfaction(r278,h).registration_satisfaction1530,44480 -registration_satisfaction(r279,h).registration_satisfaction1531,44515 -registration_satisfaction(r279,h).registration_satisfaction1531,44515 -registration_satisfaction(r280,h).registration_satisfaction1532,44550 -registration_satisfaction(r280,h).registration_satisfaction1532,44550 -registration_satisfaction(r281,m).registration_satisfaction1533,44585 -registration_satisfaction(r281,m).registration_satisfaction1533,44585 -registration_satisfaction(r282,h).registration_satisfaction1534,44620 -registration_satisfaction(r282,h).registration_satisfaction1534,44620 -registration_satisfaction(r283,h).registration_satisfaction1535,44655 -registration_satisfaction(r283,h).registration_satisfaction1535,44655 -registration_satisfaction(r284,m).registration_satisfaction1536,44690 -registration_satisfaction(r284,m).registration_satisfaction1536,44690 -registration_satisfaction(r285,m).registration_satisfaction1537,44725 -registration_satisfaction(r285,m).registration_satisfaction1537,44725 -registration_satisfaction(r286,h).registration_satisfaction1538,44760 -registration_satisfaction(r286,h).registration_satisfaction1538,44760 -registration_satisfaction(r287,h).registration_satisfaction1539,44795 -registration_satisfaction(r287,h).registration_satisfaction1539,44795 -registration_satisfaction(r288,h).registration_satisfaction1540,44830 -registration_satisfaction(r288,h).registration_satisfaction1540,44830 -registration_satisfaction(r289,l).registration_satisfaction1541,44865 -registration_satisfaction(r289,l).registration_satisfaction1541,44865 -registration_satisfaction(r290,m).registration_satisfaction1542,44900 -registration_satisfaction(r290,m).registration_satisfaction1542,44900 -registration_satisfaction(r291,h).registration_satisfaction1543,44935 -registration_satisfaction(r291,h).registration_satisfaction1543,44935 -registration_satisfaction(r292,m).registration_satisfaction1544,44970 -registration_satisfaction(r292,m).registration_satisfaction1544,44970 -registration_satisfaction(r293,h).registration_satisfaction1545,45005 -registration_satisfaction(r293,h).registration_satisfaction1545,45005 -registration_satisfaction(r294,h).registration_satisfaction1546,45040 -registration_satisfaction(r294,h).registration_satisfaction1546,45040 -registration_satisfaction(r295,m).registration_satisfaction1547,45075 -registration_satisfaction(r295,m).registration_satisfaction1547,45075 -registration_satisfaction(r296,l).registration_satisfaction1548,45110 -registration_satisfaction(r296,l).registration_satisfaction1548,45110 -registration_satisfaction(r297,h).registration_satisfaction1549,45145 -registration_satisfaction(r297,h).registration_satisfaction1549,45145 -registration_satisfaction(r298,h).registration_satisfaction1550,45180 -registration_satisfaction(r298,h).registration_satisfaction1550,45180 -registration_satisfaction(r299,h).registration_satisfaction1551,45215 -registration_satisfaction(r299,h).registration_satisfaction1551,45215 -registration_satisfaction(r300,l).registration_satisfaction1552,45250 -registration_satisfaction(r300,l).registration_satisfaction1552,45250 -registration_satisfaction(r301,h).registration_satisfaction1553,45285 -registration_satisfaction(r301,h).registration_satisfaction1553,45285 -registration_satisfaction(r302,m).registration_satisfaction1554,45320 -registration_satisfaction(r302,m).registration_satisfaction1554,45320 -registration_satisfaction(r303,h).registration_satisfaction1555,45355 -registration_satisfaction(r303,h).registration_satisfaction1555,45355 -registration_satisfaction(r304,h).registration_satisfaction1556,45390 -registration_satisfaction(r304,h).registration_satisfaction1556,45390 -registration_satisfaction(r305,l).registration_satisfaction1557,45425 -registration_satisfaction(r305,l).registration_satisfaction1557,45425 -registration_satisfaction(r306,h).registration_satisfaction1558,45460 -registration_satisfaction(r306,h).registration_satisfaction1558,45460 -registration_satisfaction(r307,l).registration_satisfaction1559,45495 -registration_satisfaction(r307,l).registration_satisfaction1559,45495 -registration_satisfaction(r308,l).registration_satisfaction1560,45530 -registration_satisfaction(r308,l).registration_satisfaction1560,45530 -registration_satisfaction(r309,m).registration_satisfaction1561,45565 -registration_satisfaction(r309,m).registration_satisfaction1561,45565 -registration_satisfaction(r310,h).registration_satisfaction1562,45600 -registration_satisfaction(r310,h).registration_satisfaction1562,45600 -registration_satisfaction(r311,l).registration_satisfaction1563,45635 -registration_satisfaction(r311,l).registration_satisfaction1563,45635 -registration_satisfaction(r312,h).registration_satisfaction1564,45670 -registration_satisfaction(r312,h).registration_satisfaction1564,45670 -registration_satisfaction(r313,h).registration_satisfaction1565,45705 -registration_satisfaction(r313,h).registration_satisfaction1565,45705 -registration_satisfaction(r314,h).registration_satisfaction1566,45740 -registration_satisfaction(r314,h).registration_satisfaction1566,45740 -registration_satisfaction(r315,h).registration_satisfaction1567,45775 -registration_satisfaction(r315,h).registration_satisfaction1567,45775 -registration_satisfaction(r316,l).registration_satisfaction1568,45810 -registration_satisfaction(r316,l).registration_satisfaction1568,45810 -registration_satisfaction(r317,l).registration_satisfaction1569,45845 -registration_satisfaction(r317,l).registration_satisfaction1569,45845 -registration_satisfaction(r318,h).registration_satisfaction1570,45880 -registration_satisfaction(r318,h).registration_satisfaction1570,45880 -registration_satisfaction(r319,m).registration_satisfaction1571,45915 -registration_satisfaction(r319,m).registration_satisfaction1571,45915 -registration_satisfaction(r320,h).registration_satisfaction1572,45950 -registration_satisfaction(r320,h).registration_satisfaction1572,45950 -registration_satisfaction(r321,l).registration_satisfaction1573,45985 -registration_satisfaction(r321,l).registration_satisfaction1573,45985 -registration_satisfaction(r322,h).registration_satisfaction1574,46020 -registration_satisfaction(r322,h).registration_satisfaction1574,46020 -registration_satisfaction(r323,l).registration_satisfaction1575,46055 -registration_satisfaction(r323,l).registration_satisfaction1575,46055 -registration_satisfaction(r324,h).registration_satisfaction1576,46090 -registration_satisfaction(r324,h).registration_satisfaction1576,46090 -registration_satisfaction(r325,h).registration_satisfaction1577,46125 -registration_satisfaction(r325,h).registration_satisfaction1577,46125 -registration_satisfaction(r326,h).registration_satisfaction1578,46160 -registration_satisfaction(r326,h).registration_satisfaction1578,46160 -registration_satisfaction(r327,m).registration_satisfaction1579,46195 -registration_satisfaction(r327,m).registration_satisfaction1579,46195 -registration_satisfaction(r328,h).registration_satisfaction1580,46230 -registration_satisfaction(r328,h).registration_satisfaction1580,46230 -registration_satisfaction(r329,h).registration_satisfaction1581,46265 -registration_satisfaction(r329,h).registration_satisfaction1581,46265 -registration_satisfaction(r330,l).registration_satisfaction1582,46300 -registration_satisfaction(r330,l).registration_satisfaction1582,46300 -registration_satisfaction(r331,h).registration_satisfaction1583,46335 -registration_satisfaction(r331,h).registration_satisfaction1583,46335 -registration_satisfaction(r332,l).registration_satisfaction1584,46370 -registration_satisfaction(r332,l).registration_satisfaction1584,46370 -registration_satisfaction(r333,h).registration_satisfaction1585,46405 -registration_satisfaction(r333,h).registration_satisfaction1585,46405 -registration_satisfaction(r334,h).registration_satisfaction1586,46440 -registration_satisfaction(r334,h).registration_satisfaction1586,46440 -registration_satisfaction(r335,h).registration_satisfaction1587,46475 -registration_satisfaction(r335,h).registration_satisfaction1587,46475 -registration_satisfaction(r336,m).registration_satisfaction1588,46510 -registration_satisfaction(r336,m).registration_satisfaction1588,46510 -registration_satisfaction(r337,h).registration_satisfaction1589,46545 -registration_satisfaction(r337,h).registration_satisfaction1589,46545 -registration_satisfaction(r338,h).registration_satisfaction1590,46580 -registration_satisfaction(r338,h).registration_satisfaction1590,46580 -registration_satisfaction(r339,h).registration_satisfaction1591,46615 -registration_satisfaction(r339,h).registration_satisfaction1591,46615 -registration_satisfaction(r340,h).registration_satisfaction1592,46650 -registration_satisfaction(r340,h).registration_satisfaction1592,46650 -registration_satisfaction(r341,l).registration_satisfaction1593,46685 -registration_satisfaction(r341,l).registration_satisfaction1593,46685 -registration_satisfaction(r342,h).registration_satisfaction1594,46720 -registration_satisfaction(r342,h).registration_satisfaction1594,46720 -registration_satisfaction(r343,h).registration_satisfaction1595,46755 -registration_satisfaction(r343,h).registration_satisfaction1595,46755 -registration_satisfaction(r344,h).registration_satisfaction1596,46790 -registration_satisfaction(r344,h).registration_satisfaction1596,46790 -registration_satisfaction(r345,m).registration_satisfaction1597,46825 -registration_satisfaction(r345,m).registration_satisfaction1597,46825 -registration_satisfaction(r346,h).registration_satisfaction1598,46860 -registration_satisfaction(r346,h).registration_satisfaction1598,46860 -registration_satisfaction(r347,m).registration_satisfaction1599,46895 -registration_satisfaction(r347,m).registration_satisfaction1599,46895 -registration_satisfaction(r348,m).registration_satisfaction1600,46930 -registration_satisfaction(r348,m).registration_satisfaction1600,46930 -registration_satisfaction(r349,h).registration_satisfaction1601,46965 -registration_satisfaction(r349,h).registration_satisfaction1601,46965 -registration_satisfaction(r350,m).registration_satisfaction1602,47000 -registration_satisfaction(r350,m).registration_satisfaction1602,47000 -registration_satisfaction(r351,h).registration_satisfaction1603,47035 -registration_satisfaction(r351,h).registration_satisfaction1603,47035 -registration_satisfaction(r352,l).registration_satisfaction1604,47070 -registration_satisfaction(r352,l).registration_satisfaction1604,47070 -registration_satisfaction(r353,h).registration_satisfaction1605,47105 -registration_satisfaction(r353,h).registration_satisfaction1605,47105 -registration_satisfaction(r354,h).registration_satisfaction1606,47140 -registration_satisfaction(r354,h).registration_satisfaction1606,47140 -registration_satisfaction(r355,h).registration_satisfaction1607,47175 -registration_satisfaction(r355,h).registration_satisfaction1607,47175 -registration_satisfaction(r356,m).registration_satisfaction1608,47210 -registration_satisfaction(r356,m).registration_satisfaction1608,47210 -registration_satisfaction(r357,m).registration_satisfaction1609,47245 -registration_satisfaction(r357,m).registration_satisfaction1609,47245 -registration_satisfaction(r358,h).registration_satisfaction1610,47280 -registration_satisfaction(r358,h).registration_satisfaction1610,47280 -registration_satisfaction(r359,l).registration_satisfaction1611,47315 -registration_satisfaction(r359,l).registration_satisfaction1611,47315 -registration_satisfaction(r360,h).registration_satisfaction1612,47350 -registration_satisfaction(r360,h).registration_satisfaction1612,47350 -registration_satisfaction(r361,m).registration_satisfaction1613,47385 -registration_satisfaction(r361,m).registration_satisfaction1613,47385 -registration_satisfaction(r362,h).registration_satisfaction1614,47420 -registration_satisfaction(r362,h).registration_satisfaction1614,47420 -registration_satisfaction(r363,l).registration_satisfaction1615,47455 -registration_satisfaction(r363,l).registration_satisfaction1615,47455 -registration_satisfaction(r364,h).registration_satisfaction1616,47490 -registration_satisfaction(r364,h).registration_satisfaction1616,47490 -registration_satisfaction(r365,m).registration_satisfaction1617,47525 -registration_satisfaction(r365,m).registration_satisfaction1617,47525 -registration_satisfaction(r366,h).registration_satisfaction1618,47560 -registration_satisfaction(r366,h).registration_satisfaction1618,47560 -registration_satisfaction(r367,h).registration_satisfaction1619,47595 -registration_satisfaction(r367,h).registration_satisfaction1619,47595 -registration_satisfaction(r368,h).registration_satisfaction1620,47630 -registration_satisfaction(r368,h).registration_satisfaction1620,47630 -registration_satisfaction(r369,h).registration_satisfaction1621,47665 -registration_satisfaction(r369,h).registration_satisfaction1621,47665 -registration_satisfaction(r370,h).registration_satisfaction1622,47700 -registration_satisfaction(r370,h).registration_satisfaction1622,47700 -registration_satisfaction(r371,h).registration_satisfaction1623,47735 -registration_satisfaction(r371,h).registration_satisfaction1623,47735 -registration_satisfaction(r372,h).registration_satisfaction1624,47770 -registration_satisfaction(r372,h).registration_satisfaction1624,47770 -registration_satisfaction(r373,h).registration_satisfaction1625,47805 -registration_satisfaction(r373,h).registration_satisfaction1625,47805 -registration_satisfaction(r374,l).registration_satisfaction1626,47840 -registration_satisfaction(r374,l).registration_satisfaction1626,47840 -registration_satisfaction(r375,h).registration_satisfaction1627,47875 -registration_satisfaction(r375,h).registration_satisfaction1627,47875 -registration_satisfaction(r376,m).registration_satisfaction1628,47910 -registration_satisfaction(r376,m).registration_satisfaction1628,47910 -registration_satisfaction(r377,h).registration_satisfaction1629,47945 -registration_satisfaction(r377,h).registration_satisfaction1629,47945 -registration_satisfaction(r378,h).registration_satisfaction1630,47980 -registration_satisfaction(r378,h).registration_satisfaction1630,47980 -registration_satisfaction(r379,h).registration_satisfaction1631,48015 -registration_satisfaction(r379,h).registration_satisfaction1631,48015 -registration_satisfaction(r380,h).registration_satisfaction1632,48050 -registration_satisfaction(r380,h).registration_satisfaction1632,48050 -registration_satisfaction(r381,m).registration_satisfaction1633,48085 -registration_satisfaction(r381,m).registration_satisfaction1633,48085 -registration_satisfaction(r382,h).registration_satisfaction1634,48120 -registration_satisfaction(r382,h).registration_satisfaction1634,48120 -registration_satisfaction(r383,h).registration_satisfaction1635,48155 -registration_satisfaction(r383,h).registration_satisfaction1635,48155 -registration_satisfaction(r384,m).registration_satisfaction1636,48190 -registration_satisfaction(r384,m).registration_satisfaction1636,48190 -registration_satisfaction(r385,m).registration_satisfaction1637,48225 -registration_satisfaction(r385,m).registration_satisfaction1637,48225 -registration_satisfaction(r386,l).registration_satisfaction1638,48260 -registration_satisfaction(r386,l).registration_satisfaction1638,48260 -registration_satisfaction(r387,h).registration_satisfaction1639,48295 -registration_satisfaction(r387,h).registration_satisfaction1639,48295 -registration_satisfaction(r388,h).registration_satisfaction1640,48330 -registration_satisfaction(r388,h).registration_satisfaction1640,48330 -registration_satisfaction(r389,h).registration_satisfaction1641,48365 -registration_satisfaction(r389,h).registration_satisfaction1641,48365 -registration_satisfaction(r390,h).registration_satisfaction1642,48400 -registration_satisfaction(r390,h).registration_satisfaction1642,48400 -registration_satisfaction(r391,l).registration_satisfaction1643,48435 -registration_satisfaction(r391,l).registration_satisfaction1643,48435 -registration_satisfaction(r392,h).registration_satisfaction1644,48470 -registration_satisfaction(r392,h).registration_satisfaction1644,48470 -registration_satisfaction(r393,h).registration_satisfaction1645,48505 -registration_satisfaction(r393,h).registration_satisfaction1645,48505 -registration_satisfaction(r394,h).registration_satisfaction1646,48540 -registration_satisfaction(r394,h).registration_satisfaction1646,48540 -registration_satisfaction(r395,h).registration_satisfaction1647,48575 -registration_satisfaction(r395,h).registration_satisfaction1647,48575 -registration_satisfaction(r396,h).registration_satisfaction1648,48610 -registration_satisfaction(r396,h).registration_satisfaction1648,48610 -registration_satisfaction(r397,h).registration_satisfaction1649,48645 -registration_satisfaction(r397,h).registration_satisfaction1649,48645 -registration_satisfaction(r398,l).registration_satisfaction1650,48680 -registration_satisfaction(r398,l).registration_satisfaction1650,48680 -registration_satisfaction(r399,h).registration_satisfaction1651,48715 -registration_satisfaction(r399,h).registration_satisfaction1651,48715 -registration_satisfaction(r400,h).registration_satisfaction1652,48750 -registration_satisfaction(r400,h).registration_satisfaction1652,48750 -registration_satisfaction(r401,l).registration_satisfaction1653,48785 -registration_satisfaction(r401,l).registration_satisfaction1653,48785 -registration_satisfaction(r402,h).registration_satisfaction1654,48820 -registration_satisfaction(r402,h).registration_satisfaction1654,48820 -registration_satisfaction(r403,h).registration_satisfaction1655,48855 -registration_satisfaction(r403,h).registration_satisfaction1655,48855 -registration_satisfaction(r404,h).registration_satisfaction1656,48890 -registration_satisfaction(r404,h).registration_satisfaction1656,48890 -registration_satisfaction(r405,h).registration_satisfaction1657,48925 -registration_satisfaction(r405,h).registration_satisfaction1657,48925 -registration_satisfaction(r406,h).registration_satisfaction1658,48960 -registration_satisfaction(r406,h).registration_satisfaction1658,48960 -registration_satisfaction(r407,h).registration_satisfaction1659,48995 -registration_satisfaction(r407,h).registration_satisfaction1659,48995 -registration_satisfaction(r408,h).registration_satisfaction1660,49030 -registration_satisfaction(r408,h).registration_satisfaction1660,49030 -registration_satisfaction(r409,h).registration_satisfaction1661,49065 -registration_satisfaction(r409,h).registration_satisfaction1661,49065 -registration_satisfaction(r410,h).registration_satisfaction1662,49100 -registration_satisfaction(r410,h).registration_satisfaction1662,49100 -registration_satisfaction(r411,l).registration_satisfaction1663,49135 -registration_satisfaction(r411,l).registration_satisfaction1663,49135 -registration_satisfaction(r412,h).registration_satisfaction1664,49170 -registration_satisfaction(r412,h).registration_satisfaction1664,49170 -registration_satisfaction(r413,l).registration_satisfaction1665,49205 -registration_satisfaction(r413,l).registration_satisfaction1665,49205 -registration_satisfaction(r414,h).registration_satisfaction1666,49240 -registration_satisfaction(r414,h).registration_satisfaction1666,49240 -registration_satisfaction(r415,m).registration_satisfaction1667,49275 -registration_satisfaction(r415,m).registration_satisfaction1667,49275 -registration_satisfaction(r416,h).registration_satisfaction1668,49310 -registration_satisfaction(r416,h).registration_satisfaction1668,49310 -registration_satisfaction(r417,h).registration_satisfaction1669,49345 -registration_satisfaction(r417,h).registration_satisfaction1669,49345 -registration_satisfaction(r418,h).registration_satisfaction1670,49380 -registration_satisfaction(r418,h).registration_satisfaction1670,49380 -registration_satisfaction(r419,h).registration_satisfaction1671,49415 -registration_satisfaction(r419,h).registration_satisfaction1671,49415 -registration_satisfaction(r420,h).registration_satisfaction1672,49450 -registration_satisfaction(r420,h).registration_satisfaction1672,49450 -registration_satisfaction(r421,h).registration_satisfaction1673,49485 -registration_satisfaction(r421,h).registration_satisfaction1673,49485 -registration_satisfaction(r422,m).registration_satisfaction1674,49520 -registration_satisfaction(r422,m).registration_satisfaction1674,49520 -registration_satisfaction(r423,h).registration_satisfaction1675,49555 -registration_satisfaction(r423,h).registration_satisfaction1675,49555 -registration_satisfaction(r424,h).registration_satisfaction1676,49590 -registration_satisfaction(r424,h).registration_satisfaction1676,49590 -registration_satisfaction(r425,h).registration_satisfaction1677,49625 -registration_satisfaction(r425,h).registration_satisfaction1677,49625 -registration_satisfaction(r426,l).registration_satisfaction1678,49660 -registration_satisfaction(r426,l).registration_satisfaction1678,49660 -registration_satisfaction(r427,h).registration_satisfaction1679,49695 -registration_satisfaction(r427,h).registration_satisfaction1679,49695 -registration_satisfaction(r428,h).registration_satisfaction1680,49730 -registration_satisfaction(r428,h).registration_satisfaction1680,49730 -registration_satisfaction(r429,h).registration_satisfaction1681,49765 -registration_satisfaction(r429,h).registration_satisfaction1681,49765 -registration_satisfaction(r430,l).registration_satisfaction1682,49800 -registration_satisfaction(r430,l).registration_satisfaction1682,49800 -registration_satisfaction(r431,m).registration_satisfaction1683,49835 -registration_satisfaction(r431,m).registration_satisfaction1683,49835 -registration_satisfaction(r432,h).registration_satisfaction1684,49870 -registration_satisfaction(r432,h).registration_satisfaction1684,49870 -registration_satisfaction(r433,h).registration_satisfaction1685,49905 -registration_satisfaction(r433,h).registration_satisfaction1685,49905 -registration_satisfaction(r434,h).registration_satisfaction1686,49940 -registration_satisfaction(r434,h).registration_satisfaction1686,49940 -registration_satisfaction(r435,m).registration_satisfaction1687,49975 -registration_satisfaction(r435,m).registration_satisfaction1687,49975 -registration_satisfaction(r436,h).registration_satisfaction1688,50010 -registration_satisfaction(r436,h).registration_satisfaction1688,50010 -registration_satisfaction(r437,h).registration_satisfaction1689,50045 -registration_satisfaction(r437,h).registration_satisfaction1689,50045 -registration_satisfaction(r438,l).registration_satisfaction1690,50080 -registration_satisfaction(r438,l).registration_satisfaction1690,50080 -registration_satisfaction(r439,h).registration_satisfaction1691,50115 -registration_satisfaction(r439,h).registration_satisfaction1691,50115 -registration_satisfaction(r440,h).registration_satisfaction1692,50150 -registration_satisfaction(r440,h).registration_satisfaction1692,50150 -registration_satisfaction(r441,h).registration_satisfaction1693,50185 -registration_satisfaction(r441,h).registration_satisfaction1693,50185 -registration_satisfaction(r442,m).registration_satisfaction1694,50220 -registration_satisfaction(r442,m).registration_satisfaction1694,50220 -registration_satisfaction(r443,h).registration_satisfaction1695,50255 -registration_satisfaction(r443,h).registration_satisfaction1695,50255 -registration_satisfaction(r444,h).registration_satisfaction1696,50290 -registration_satisfaction(r444,h).registration_satisfaction1696,50290 -registration_satisfaction(r445,h).registration_satisfaction1697,50325 -registration_satisfaction(r445,h).registration_satisfaction1697,50325 -registration_satisfaction(r446,h).registration_satisfaction1698,50360 -registration_satisfaction(r446,h).registration_satisfaction1698,50360 -registration_satisfaction(r447,m).registration_satisfaction1699,50395 -registration_satisfaction(r447,m).registration_satisfaction1699,50395 -registration_satisfaction(r448,l).registration_satisfaction1700,50430 -registration_satisfaction(r448,l).registration_satisfaction1700,50430 -registration_satisfaction(r449,h).registration_satisfaction1701,50465 -registration_satisfaction(r449,h).registration_satisfaction1701,50465 -registration_satisfaction(r450,h).registration_satisfaction1702,50500 -registration_satisfaction(r450,h).registration_satisfaction1702,50500 -registration_satisfaction(r451,h).registration_satisfaction1703,50535 -registration_satisfaction(r451,h).registration_satisfaction1703,50535 -registration_satisfaction(r452,h).registration_satisfaction1704,50570 -registration_satisfaction(r452,h).registration_satisfaction1704,50570 -registration_satisfaction(r453,h).registration_satisfaction1705,50605 -registration_satisfaction(r453,h).registration_satisfaction1705,50605 -registration_satisfaction(r454,l).registration_satisfaction1706,50640 -registration_satisfaction(r454,l).registration_satisfaction1706,50640 -registration_satisfaction(r455,m).registration_satisfaction1707,50675 -registration_satisfaction(r455,m).registration_satisfaction1707,50675 -registration_satisfaction(r456,h).registration_satisfaction1708,50710 -registration_satisfaction(r456,h).registration_satisfaction1708,50710 -registration_satisfaction(r457,h).registration_satisfaction1709,50745 -registration_satisfaction(r457,h).registration_satisfaction1709,50745 -registration_satisfaction(r458,m).registration_satisfaction1710,50780 -registration_satisfaction(r458,m).registration_satisfaction1710,50780 -registration_satisfaction(r459,m).registration_satisfaction1711,50815 -registration_satisfaction(r459,m).registration_satisfaction1711,50815 -registration_satisfaction(r460,l).registration_satisfaction1712,50850 -registration_satisfaction(r460,l).registration_satisfaction1712,50850 -registration_satisfaction(r461,h).registration_satisfaction1713,50885 -registration_satisfaction(r461,h).registration_satisfaction1713,50885 -registration_satisfaction(r462,h).registration_satisfaction1714,50920 -registration_satisfaction(r462,h).registration_satisfaction1714,50920 -registration_satisfaction(r463,l).registration_satisfaction1715,50955 -registration_satisfaction(r463,l).registration_satisfaction1715,50955 -registration_satisfaction(r464,h).registration_satisfaction1716,50990 -registration_satisfaction(r464,h).registration_satisfaction1716,50990 -registration_satisfaction(r465,h).registration_satisfaction1717,51025 -registration_satisfaction(r465,h).registration_satisfaction1717,51025 -registration_satisfaction(r466,l).registration_satisfaction1718,51060 -registration_satisfaction(r466,l).registration_satisfaction1718,51060 -registration_satisfaction(r467,h).registration_satisfaction1719,51095 -registration_satisfaction(r467,h).registration_satisfaction1719,51095 -registration_satisfaction(r468,h).registration_satisfaction1720,51130 -registration_satisfaction(r468,h).registration_satisfaction1720,51130 -registration_satisfaction(r469,h).registration_satisfaction1721,51165 -registration_satisfaction(r469,h).registration_satisfaction1721,51165 -registration_satisfaction(r470,h).registration_satisfaction1722,51200 -registration_satisfaction(r470,h).registration_satisfaction1722,51200 -registration_satisfaction(r471,h).registration_satisfaction1723,51235 -registration_satisfaction(r471,h).registration_satisfaction1723,51235 -registration_satisfaction(r472,h).registration_satisfaction1724,51270 -registration_satisfaction(r472,h).registration_satisfaction1724,51270 -registration_satisfaction(r473,l).registration_satisfaction1725,51305 -registration_satisfaction(r473,l).registration_satisfaction1725,51305 -registration_satisfaction(r474,m).registration_satisfaction1726,51340 -registration_satisfaction(r474,m).registration_satisfaction1726,51340 -registration_satisfaction(r475,h).registration_satisfaction1727,51375 -registration_satisfaction(r475,h).registration_satisfaction1727,51375 -registration_satisfaction(r476,l).registration_satisfaction1728,51410 -registration_satisfaction(r476,l).registration_satisfaction1728,51410 -registration_satisfaction(r477,m).registration_satisfaction1729,51445 -registration_satisfaction(r477,m).registration_satisfaction1729,51445 -registration_satisfaction(r478,h).registration_satisfaction1730,51480 -registration_satisfaction(r478,h).registration_satisfaction1730,51480 -registration_satisfaction(r479,l).registration_satisfaction1731,51515 -registration_satisfaction(r479,l).registration_satisfaction1731,51515 -registration_satisfaction(r480,h).registration_satisfaction1732,51550 -registration_satisfaction(r480,h).registration_satisfaction1732,51550 -registration_satisfaction(r481,m).registration_satisfaction1733,51585 -registration_satisfaction(r481,m).registration_satisfaction1733,51585 -registration_satisfaction(r482,h).registration_satisfaction1734,51620 -registration_satisfaction(r482,h).registration_satisfaction1734,51620 -registration_satisfaction(r483,h).registration_satisfaction1735,51655 -registration_satisfaction(r483,h).registration_satisfaction1735,51655 -registration_satisfaction(r484,m).registration_satisfaction1736,51690 -registration_satisfaction(r484,m).registration_satisfaction1736,51690 -registration_satisfaction(r485,h).registration_satisfaction1737,51725 -registration_satisfaction(r485,h).registration_satisfaction1737,51725 -registration_satisfaction(r486,h).registration_satisfaction1738,51760 -registration_satisfaction(r486,h).registration_satisfaction1738,51760 -registration_satisfaction(r487,h).registration_satisfaction1739,51795 -registration_satisfaction(r487,h).registration_satisfaction1739,51795 -registration_satisfaction(r488,l).registration_satisfaction1740,51830 -registration_satisfaction(r488,l).registration_satisfaction1740,51830 -registration_satisfaction(r489,m).registration_satisfaction1741,51865 -registration_satisfaction(r489,m).registration_satisfaction1741,51865 -registration_satisfaction(r490,m).registration_satisfaction1742,51900 -registration_satisfaction(r490,m).registration_satisfaction1742,51900 -registration_satisfaction(r491,l).registration_satisfaction1743,51935 -registration_satisfaction(r491,l).registration_satisfaction1743,51935 -registration_satisfaction(r492,h).registration_satisfaction1744,51970 -registration_satisfaction(r492,h).registration_satisfaction1744,51970 -registration_satisfaction(r493,h).registration_satisfaction1745,52005 -registration_satisfaction(r493,h).registration_satisfaction1745,52005 -registration_satisfaction(r494,m).registration_satisfaction1746,52040 -registration_satisfaction(r494,m).registration_satisfaction1746,52040 -registration_satisfaction(r495,h).registration_satisfaction1747,52075 -registration_satisfaction(r495,h).registration_satisfaction1747,52075 -registration_satisfaction(r496,h).registration_satisfaction1748,52110 -registration_satisfaction(r496,h).registration_satisfaction1748,52110 -registration_satisfaction(r497,h).registration_satisfaction1749,52145 -registration_satisfaction(r497,h).registration_satisfaction1749,52145 -registration_satisfaction(r498,l).registration_satisfaction1750,52180 -registration_satisfaction(r498,l).registration_satisfaction1750,52180 -registration_satisfaction(r499,h).registration_satisfaction1751,52215 -registration_satisfaction(r499,h).registration_satisfaction1751,52215 -registration_satisfaction(r500,m).registration_satisfaction1752,52250 -registration_satisfaction(r500,m).registration_satisfaction1752,52250 -registration_satisfaction(r501,h).registration_satisfaction1753,52285 -registration_satisfaction(r501,h).registration_satisfaction1753,52285 -registration_satisfaction(r502,h).registration_satisfaction1754,52320 -registration_satisfaction(r502,h).registration_satisfaction1754,52320 -registration_satisfaction(r503,l).registration_satisfaction1755,52355 -registration_satisfaction(r503,l).registration_satisfaction1755,52355 -registration_satisfaction(r504,m).registration_satisfaction1756,52390 -registration_satisfaction(r504,m).registration_satisfaction1756,52390 -registration_satisfaction(r505,h).registration_satisfaction1757,52425 -registration_satisfaction(r505,h).registration_satisfaction1757,52425 -registration_satisfaction(r506,h).registration_satisfaction1758,52460 -registration_satisfaction(r506,h).registration_satisfaction1758,52460 -registration_satisfaction(r507,h).registration_satisfaction1759,52495 -registration_satisfaction(r507,h).registration_satisfaction1759,52495 -registration_satisfaction(r508,l).registration_satisfaction1760,52530 -registration_satisfaction(r508,l).registration_satisfaction1760,52530 -registration_satisfaction(r509,m).registration_satisfaction1761,52565 -registration_satisfaction(r509,m).registration_satisfaction1761,52565 -registration_satisfaction(r510,h).registration_satisfaction1762,52600 -registration_satisfaction(r510,h).registration_satisfaction1762,52600 -registration_satisfaction(r511,l).registration_satisfaction1763,52635 -registration_satisfaction(r511,l).registration_satisfaction1763,52635 -registration_satisfaction(r512,h).registration_satisfaction1764,52670 -registration_satisfaction(r512,h).registration_satisfaction1764,52670 -registration_satisfaction(r513,h).registration_satisfaction1765,52705 -registration_satisfaction(r513,h).registration_satisfaction1765,52705 -registration_satisfaction(r514,h).registration_satisfaction1766,52740 -registration_satisfaction(r514,h).registration_satisfaction1766,52740 -registration_satisfaction(r515,l).registration_satisfaction1767,52775 -registration_satisfaction(r515,l).registration_satisfaction1767,52775 -registration_satisfaction(r516,h).registration_satisfaction1768,52810 -registration_satisfaction(r516,h).registration_satisfaction1768,52810 -registration_satisfaction(r517,m).registration_satisfaction1769,52845 -registration_satisfaction(r517,m).registration_satisfaction1769,52845 -registration_satisfaction(r518,h).registration_satisfaction1770,52880 -registration_satisfaction(r518,h).registration_satisfaction1770,52880 -registration_satisfaction(r519,h).registration_satisfaction1771,52915 -registration_satisfaction(r519,h).registration_satisfaction1771,52915 -registration_satisfaction(r520,h).registration_satisfaction1772,52950 -registration_satisfaction(r520,h).registration_satisfaction1772,52950 -registration_satisfaction(r521,h).registration_satisfaction1773,52985 -registration_satisfaction(r521,h).registration_satisfaction1773,52985 -registration_satisfaction(r522,h).registration_satisfaction1774,53020 -registration_satisfaction(r522,h).registration_satisfaction1774,53020 -registration_satisfaction(r523,h).registration_satisfaction1775,53055 -registration_satisfaction(r523,h).registration_satisfaction1775,53055 -registration_satisfaction(r524,h).registration_satisfaction1776,53090 -registration_satisfaction(r524,h).registration_satisfaction1776,53090 -registration_satisfaction(r525,l).registration_satisfaction1777,53125 -registration_satisfaction(r525,l).registration_satisfaction1777,53125 -registration_satisfaction(r526,h).registration_satisfaction1778,53160 -registration_satisfaction(r526,h).registration_satisfaction1778,53160 -registration_satisfaction(r527,l).registration_satisfaction1779,53195 -registration_satisfaction(r527,l).registration_satisfaction1779,53195 -registration_satisfaction(r528,h).registration_satisfaction1780,53230 -registration_satisfaction(r528,h).registration_satisfaction1780,53230 -registration_satisfaction(r529,h).registration_satisfaction1781,53265 -registration_satisfaction(r529,h).registration_satisfaction1781,53265 -registration_satisfaction(r530,h).registration_satisfaction1782,53300 -registration_satisfaction(r530,h).registration_satisfaction1782,53300 -registration_satisfaction(r531,m).registration_satisfaction1783,53335 -registration_satisfaction(r531,m).registration_satisfaction1783,53335 -registration_satisfaction(r532,h).registration_satisfaction1784,53370 -registration_satisfaction(r532,h).registration_satisfaction1784,53370 -registration_satisfaction(r533,h).registration_satisfaction1785,53405 -registration_satisfaction(r533,h).registration_satisfaction1785,53405 -registration_satisfaction(r534,l).registration_satisfaction1786,53440 -registration_satisfaction(r534,l).registration_satisfaction1786,53440 -registration_satisfaction(r535,m).registration_satisfaction1787,53475 -registration_satisfaction(r535,m).registration_satisfaction1787,53475 -registration_satisfaction(r536,h).registration_satisfaction1788,53510 -registration_satisfaction(r536,h).registration_satisfaction1788,53510 -registration_satisfaction(r537,h).registration_satisfaction1789,53545 -registration_satisfaction(r537,h).registration_satisfaction1789,53545 -registration_satisfaction(r538,h).registration_satisfaction1790,53580 -registration_satisfaction(r538,h).registration_satisfaction1790,53580 -registration_satisfaction(r539,h).registration_satisfaction1791,53615 -registration_satisfaction(r539,h).registration_satisfaction1791,53615 -registration_satisfaction(r540,m).registration_satisfaction1792,53650 -registration_satisfaction(r540,m).registration_satisfaction1792,53650 -registration_satisfaction(r541,h).registration_satisfaction1793,53685 -registration_satisfaction(r541,h).registration_satisfaction1793,53685 -registration_satisfaction(r542,h).registration_satisfaction1794,53720 -registration_satisfaction(r542,h).registration_satisfaction1794,53720 -registration_satisfaction(r543,h).registration_satisfaction1795,53755 -registration_satisfaction(r543,h).registration_satisfaction1795,53755 -registration_satisfaction(r544,h).registration_satisfaction1796,53790 -registration_satisfaction(r544,h).registration_satisfaction1796,53790 -registration_satisfaction(r545,h).registration_satisfaction1797,53825 -registration_satisfaction(r545,h).registration_satisfaction1797,53825 -registration_satisfaction(r546,h).registration_satisfaction1798,53860 -registration_satisfaction(r546,h).registration_satisfaction1798,53860 -registration_satisfaction(r547,l).registration_satisfaction1799,53895 -registration_satisfaction(r547,l).registration_satisfaction1799,53895 -registration_satisfaction(r548,h).registration_satisfaction1800,53930 -registration_satisfaction(r548,h).registration_satisfaction1800,53930 -registration_satisfaction(r549,h).registration_satisfaction1801,53965 -registration_satisfaction(r549,h).registration_satisfaction1801,53965 -registration_satisfaction(r550,h).registration_satisfaction1802,54000 -registration_satisfaction(r550,h).registration_satisfaction1802,54000 -registration_satisfaction(r551,h).registration_satisfaction1803,54035 -registration_satisfaction(r551,h).registration_satisfaction1803,54035 -registration_satisfaction(r552,m).registration_satisfaction1804,54070 -registration_satisfaction(r552,m).registration_satisfaction1804,54070 -registration_satisfaction(r553,m).registration_satisfaction1805,54105 -registration_satisfaction(r553,m).registration_satisfaction1805,54105 -registration_satisfaction(r554,l).registration_satisfaction1806,54140 -registration_satisfaction(r554,l).registration_satisfaction1806,54140 -registration_satisfaction(r555,m).registration_satisfaction1807,54175 -registration_satisfaction(r555,m).registration_satisfaction1807,54175 -registration_satisfaction(r556,h).registration_satisfaction1808,54210 -registration_satisfaction(r556,h).registration_satisfaction1808,54210 -registration_satisfaction(r557,h).registration_satisfaction1809,54245 -registration_satisfaction(r557,h).registration_satisfaction1809,54245 -registration_satisfaction(r558,h).registration_satisfaction1810,54280 -registration_satisfaction(r558,h).registration_satisfaction1810,54280 -registration_satisfaction(r559,h).registration_satisfaction1811,54315 -registration_satisfaction(r559,h).registration_satisfaction1811,54315 -registration_satisfaction(r560,h).registration_satisfaction1812,54350 -registration_satisfaction(r560,h).registration_satisfaction1812,54350 -registration_satisfaction(r561,h).registration_satisfaction1813,54385 -registration_satisfaction(r561,h).registration_satisfaction1813,54385 -registration_satisfaction(r562,h).registration_satisfaction1814,54420 -registration_satisfaction(r562,h).registration_satisfaction1814,54420 -registration_satisfaction(r563,m).registration_satisfaction1815,54455 -registration_satisfaction(r563,m).registration_satisfaction1815,54455 -registration_satisfaction(r564,h).registration_satisfaction1816,54490 -registration_satisfaction(r564,h).registration_satisfaction1816,54490 -registration_satisfaction(r565,l).registration_satisfaction1817,54525 -registration_satisfaction(r565,l).registration_satisfaction1817,54525 -registration_satisfaction(r566,l).registration_satisfaction1818,54560 -registration_satisfaction(r566,l).registration_satisfaction1818,54560 -registration_satisfaction(r567,h).registration_satisfaction1819,54595 -registration_satisfaction(r567,h).registration_satisfaction1819,54595 -registration_satisfaction(r568,h).registration_satisfaction1820,54630 -registration_satisfaction(r568,h).registration_satisfaction1820,54630 -registration_satisfaction(r569,h).registration_satisfaction1821,54665 -registration_satisfaction(r569,h).registration_satisfaction1821,54665 -registration_satisfaction(r570,h).registration_satisfaction1822,54700 -registration_satisfaction(r570,h).registration_satisfaction1822,54700 -registration_satisfaction(r571,l).registration_satisfaction1823,54735 -registration_satisfaction(r571,l).registration_satisfaction1823,54735 -registration_satisfaction(r572,m).registration_satisfaction1824,54770 -registration_satisfaction(r572,m).registration_satisfaction1824,54770 -registration_satisfaction(r573,h).registration_satisfaction1825,54805 -registration_satisfaction(r573,h).registration_satisfaction1825,54805 -registration_satisfaction(r574,m).registration_satisfaction1826,54840 -registration_satisfaction(r574,m).registration_satisfaction1826,54840 -registration_satisfaction(r575,h).registration_satisfaction1827,54875 -registration_satisfaction(r575,h).registration_satisfaction1827,54875 -registration_satisfaction(r576,h).registration_satisfaction1828,54910 -registration_satisfaction(r576,h).registration_satisfaction1828,54910 -registration_satisfaction(r577,h).registration_satisfaction1829,54945 -registration_satisfaction(r577,h).registration_satisfaction1829,54945 -registration_satisfaction(r578,l).registration_satisfaction1830,54980 -registration_satisfaction(r578,l).registration_satisfaction1830,54980 -registration_satisfaction(r579,h).registration_satisfaction1831,55015 -registration_satisfaction(r579,h).registration_satisfaction1831,55015 -registration_satisfaction(r580,m).registration_satisfaction1832,55050 -registration_satisfaction(r580,m).registration_satisfaction1832,55050 -registration_satisfaction(r581,h).registration_satisfaction1833,55085 -registration_satisfaction(r581,h).registration_satisfaction1833,55085 -registration_satisfaction(r582,h).registration_satisfaction1834,55120 -registration_satisfaction(r582,h).registration_satisfaction1834,55120 -registration_satisfaction(r583,h).registration_satisfaction1835,55155 -registration_satisfaction(r583,h).registration_satisfaction1835,55155 -registration_satisfaction(r584,h).registration_satisfaction1836,55190 -registration_satisfaction(r584,h).registration_satisfaction1836,55190 -registration_satisfaction(r585,h).registration_satisfaction1837,55225 -registration_satisfaction(r585,h).registration_satisfaction1837,55225 -registration_satisfaction(r586,m).registration_satisfaction1838,55260 -registration_satisfaction(r586,m).registration_satisfaction1838,55260 -registration_satisfaction(r587,m).registration_satisfaction1839,55295 -registration_satisfaction(r587,m).registration_satisfaction1839,55295 -registration_satisfaction(r588,l).registration_satisfaction1840,55330 -registration_satisfaction(r588,l).registration_satisfaction1840,55330 -registration_satisfaction(r589,l).registration_satisfaction1841,55365 -registration_satisfaction(r589,l).registration_satisfaction1841,55365 -registration_satisfaction(r590,h).registration_satisfaction1842,55400 -registration_satisfaction(r590,h).registration_satisfaction1842,55400 -registration_satisfaction(r591,h).registration_satisfaction1843,55435 -registration_satisfaction(r591,h).registration_satisfaction1843,55435 -registration_satisfaction(r592,h).registration_satisfaction1844,55470 -registration_satisfaction(r592,h).registration_satisfaction1844,55470 -registration_satisfaction(r593,h).registration_satisfaction1845,55505 -registration_satisfaction(r593,h).registration_satisfaction1845,55505 -registration_satisfaction(r594,l).registration_satisfaction1846,55540 -registration_satisfaction(r594,l).registration_satisfaction1846,55540 -registration_satisfaction(r595,m).registration_satisfaction1847,55575 -registration_satisfaction(r595,m).registration_satisfaction1847,55575 -registration_satisfaction(r596,h).registration_satisfaction1848,55610 -registration_satisfaction(r596,h).registration_satisfaction1848,55610 -registration_satisfaction(r597,h).registration_satisfaction1849,55645 -registration_satisfaction(r597,h).registration_satisfaction1849,55645 -registration_satisfaction(r598,h).registration_satisfaction1850,55680 -registration_satisfaction(r598,h).registration_satisfaction1850,55680 -registration_satisfaction(r599,h).registration_satisfaction1851,55715 -registration_satisfaction(r599,h).registration_satisfaction1851,55715 -registration_satisfaction(r600,m).registration_satisfaction1852,55750 -registration_satisfaction(r600,m).registration_satisfaction1852,55750 -registration_satisfaction(r601,m).registration_satisfaction1853,55785 -registration_satisfaction(r601,m).registration_satisfaction1853,55785 -registration_satisfaction(r602,h).registration_satisfaction1854,55820 -registration_satisfaction(r602,h).registration_satisfaction1854,55820 -registration_satisfaction(r603,h).registration_satisfaction1855,55855 -registration_satisfaction(r603,h).registration_satisfaction1855,55855 -registration_satisfaction(r604,l).registration_satisfaction1856,55890 -registration_satisfaction(r604,l).registration_satisfaction1856,55890 -registration_satisfaction(r605,h).registration_satisfaction1857,55925 -registration_satisfaction(r605,h).registration_satisfaction1857,55925 -registration_satisfaction(r606,h).registration_satisfaction1858,55960 -registration_satisfaction(r606,h).registration_satisfaction1858,55960 -registration_satisfaction(r607,l).registration_satisfaction1859,55995 -registration_satisfaction(r607,l).registration_satisfaction1859,55995 -registration_satisfaction(r608,h).registration_satisfaction1860,56030 -registration_satisfaction(r608,h).registration_satisfaction1860,56030 -registration_satisfaction(r609,h).registration_satisfaction1861,56065 -registration_satisfaction(r609,h).registration_satisfaction1861,56065 -registration_satisfaction(r610,h).registration_satisfaction1862,56100 -registration_satisfaction(r610,h).registration_satisfaction1862,56100 -registration_satisfaction(r611,h).registration_satisfaction1863,56135 -registration_satisfaction(r611,h).registration_satisfaction1863,56135 -registration_satisfaction(r612,l).registration_satisfaction1864,56170 -registration_satisfaction(r612,l).registration_satisfaction1864,56170 -registration_satisfaction(r613,h).registration_satisfaction1865,56205 -registration_satisfaction(r613,h).registration_satisfaction1865,56205 -registration_satisfaction(r614,m).registration_satisfaction1866,56240 -registration_satisfaction(r614,m).registration_satisfaction1866,56240 -registration_satisfaction(r615,l).registration_satisfaction1867,56275 -registration_satisfaction(r615,l).registration_satisfaction1867,56275 -registration_satisfaction(r616,h).registration_satisfaction1868,56310 -registration_satisfaction(r616,h).registration_satisfaction1868,56310 -registration_satisfaction(r617,h).registration_satisfaction1869,56345 -registration_satisfaction(r617,h).registration_satisfaction1869,56345 -registration_satisfaction(r618,h).registration_satisfaction1870,56380 -registration_satisfaction(r618,h).registration_satisfaction1870,56380 -registration_satisfaction(r619,h).registration_satisfaction1871,56415 -registration_satisfaction(r619,h).registration_satisfaction1871,56415 -registration_satisfaction(r620,h).registration_satisfaction1872,56450 -registration_satisfaction(r620,h).registration_satisfaction1872,56450 -registration_satisfaction(r621,h).registration_satisfaction1873,56485 -registration_satisfaction(r621,h).registration_satisfaction1873,56485 -registration_satisfaction(r622,h).registration_satisfaction1874,56520 -registration_satisfaction(r622,h).registration_satisfaction1874,56520 -registration_satisfaction(r623,l).registration_satisfaction1875,56555 -registration_satisfaction(r623,l).registration_satisfaction1875,56555 -registration_satisfaction(r624,m).registration_satisfaction1876,56590 -registration_satisfaction(r624,m).registration_satisfaction1876,56590 -registration_satisfaction(r625,l).registration_satisfaction1877,56625 -registration_satisfaction(r625,l).registration_satisfaction1877,56625 -registration_satisfaction(r626,h).registration_satisfaction1878,56660 -registration_satisfaction(r626,h).registration_satisfaction1878,56660 -registration_satisfaction(r627,h).registration_satisfaction1879,56695 -registration_satisfaction(r627,h).registration_satisfaction1879,56695 -registration_satisfaction(r628,h).registration_satisfaction1880,56730 -registration_satisfaction(r628,h).registration_satisfaction1880,56730 -registration_satisfaction(r629,h).registration_satisfaction1881,56765 -registration_satisfaction(r629,h).registration_satisfaction1881,56765 -registration_satisfaction(r630,h).registration_satisfaction1882,56800 -registration_satisfaction(r630,h).registration_satisfaction1882,56800 -registration_satisfaction(r631,h).registration_satisfaction1883,56835 -registration_satisfaction(r631,h).registration_satisfaction1883,56835 -registration_satisfaction(r632,h).registration_satisfaction1884,56870 -registration_satisfaction(r632,h).registration_satisfaction1884,56870 -registration_satisfaction(r633,h).registration_satisfaction1885,56905 -registration_satisfaction(r633,h).registration_satisfaction1885,56905 -registration_satisfaction(r634,h).registration_satisfaction1886,56940 -registration_satisfaction(r634,h).registration_satisfaction1886,56940 -registration_satisfaction(r635,m).registration_satisfaction1887,56975 -registration_satisfaction(r635,m).registration_satisfaction1887,56975 -registration_satisfaction(r636,l).registration_satisfaction1888,57010 -registration_satisfaction(r636,l).registration_satisfaction1888,57010 -registration_satisfaction(r637,m).registration_satisfaction1889,57045 -registration_satisfaction(r637,m).registration_satisfaction1889,57045 -registration_satisfaction(r638,h).registration_satisfaction1890,57080 -registration_satisfaction(r638,h).registration_satisfaction1890,57080 -registration_satisfaction(r639,h).registration_satisfaction1891,57115 -registration_satisfaction(r639,h).registration_satisfaction1891,57115 -registration_satisfaction(r640,h).registration_satisfaction1892,57150 -registration_satisfaction(r640,h).registration_satisfaction1892,57150 -registration_satisfaction(r641,h).registration_satisfaction1893,57185 -registration_satisfaction(r641,h).registration_satisfaction1893,57185 -registration_satisfaction(r642,h).registration_satisfaction1894,57220 -registration_satisfaction(r642,h).registration_satisfaction1894,57220 -registration_satisfaction(r643,h).registration_satisfaction1895,57255 -registration_satisfaction(r643,h).registration_satisfaction1895,57255 -registration_satisfaction(r644,h).registration_satisfaction1896,57290 -registration_satisfaction(r644,h).registration_satisfaction1896,57290 -registration_satisfaction(r645,h).registration_satisfaction1897,57325 -registration_satisfaction(r645,h).registration_satisfaction1897,57325 -registration_satisfaction(r646,h).registration_satisfaction1898,57360 -registration_satisfaction(r646,h).registration_satisfaction1898,57360 -registration_satisfaction(r647,h).registration_satisfaction1899,57395 -registration_satisfaction(r647,h).registration_satisfaction1899,57395 -registration_satisfaction(r648,h).registration_satisfaction1900,57430 -registration_satisfaction(r648,h).registration_satisfaction1900,57430 -registration_satisfaction(r649,h).registration_satisfaction1901,57465 -registration_satisfaction(r649,h).registration_satisfaction1901,57465 -registration_satisfaction(r650,h).registration_satisfaction1902,57500 -registration_satisfaction(r650,h).registration_satisfaction1902,57500 -registration_satisfaction(r651,h).registration_satisfaction1903,57535 -registration_satisfaction(r651,h).registration_satisfaction1903,57535 -registration_satisfaction(r652,m).registration_satisfaction1904,57570 -registration_satisfaction(r652,m).registration_satisfaction1904,57570 -registration_satisfaction(r653,l).registration_satisfaction1905,57605 -registration_satisfaction(r653,l).registration_satisfaction1905,57605 -registration_satisfaction(r654,h).registration_satisfaction1906,57640 -registration_satisfaction(r654,h).registration_satisfaction1906,57640 -registration_satisfaction(r655,h).registration_satisfaction1907,57675 -registration_satisfaction(r655,h).registration_satisfaction1907,57675 -registration_satisfaction(r656,m).registration_satisfaction1908,57710 -registration_satisfaction(r656,m).registration_satisfaction1908,57710 -registration_satisfaction(r657,h).registration_satisfaction1909,57745 -registration_satisfaction(r657,h).registration_satisfaction1909,57745 -registration_satisfaction(r658,h).registration_satisfaction1910,57780 -registration_satisfaction(r658,h).registration_satisfaction1910,57780 -registration_satisfaction(r659,h).registration_satisfaction1911,57815 -registration_satisfaction(r659,h).registration_satisfaction1911,57815 -registration_satisfaction(r660,h).registration_satisfaction1912,57850 -registration_satisfaction(r660,h).registration_satisfaction1912,57850 -registration_satisfaction(r661,h).registration_satisfaction1913,57885 -registration_satisfaction(r661,h).registration_satisfaction1913,57885 -registration_satisfaction(r662,h).registration_satisfaction1914,57920 -registration_satisfaction(r662,h).registration_satisfaction1914,57920 -registration_satisfaction(r663,h).registration_satisfaction1915,57955 -registration_satisfaction(r663,h).registration_satisfaction1915,57955 -registration_satisfaction(r664,l).registration_satisfaction1916,57990 -registration_satisfaction(r664,l).registration_satisfaction1916,57990 -registration_satisfaction(r665,h).registration_satisfaction1917,58025 -registration_satisfaction(r665,h).registration_satisfaction1917,58025 -registration_satisfaction(r666,l).registration_satisfaction1918,58060 -registration_satisfaction(r666,l).registration_satisfaction1918,58060 -registration_satisfaction(r667,h).registration_satisfaction1919,58095 -registration_satisfaction(r667,h).registration_satisfaction1919,58095 -registration_satisfaction(r668,l).registration_satisfaction1920,58130 -registration_satisfaction(r668,l).registration_satisfaction1920,58130 -registration_satisfaction(r669,h).registration_satisfaction1921,58165 -registration_satisfaction(r669,h).registration_satisfaction1921,58165 -registration_satisfaction(r670,h).registration_satisfaction1922,58200 -registration_satisfaction(r670,h).registration_satisfaction1922,58200 -registration_satisfaction(r671,h).registration_satisfaction1923,58235 -registration_satisfaction(r671,h).registration_satisfaction1923,58235 -registration_satisfaction(r672,l).registration_satisfaction1924,58270 -registration_satisfaction(r672,l).registration_satisfaction1924,58270 -registration_satisfaction(r673,l).registration_satisfaction1925,58305 -registration_satisfaction(r673,l).registration_satisfaction1925,58305 -registration_satisfaction(r674,h).registration_satisfaction1926,58340 -registration_satisfaction(r674,h).registration_satisfaction1926,58340 -registration_satisfaction(r675,l).registration_satisfaction1927,58375 -registration_satisfaction(r675,l).registration_satisfaction1927,58375 -registration_satisfaction(r676,h).registration_satisfaction1928,58410 -registration_satisfaction(r676,h).registration_satisfaction1928,58410 -registration_satisfaction(r677,h).registration_satisfaction1929,58445 -registration_satisfaction(r677,h).registration_satisfaction1929,58445 -registration_satisfaction(r678,h).registration_satisfaction1930,58480 -registration_satisfaction(r678,h).registration_satisfaction1930,58480 -registration_satisfaction(r679,h).registration_satisfaction1931,58515 -registration_satisfaction(r679,h).registration_satisfaction1931,58515 -registration_satisfaction(r680,m).registration_satisfaction1932,58550 -registration_satisfaction(r680,m).registration_satisfaction1932,58550 -registration_satisfaction(r681,h).registration_satisfaction1933,58585 -registration_satisfaction(r681,h).registration_satisfaction1933,58585 -registration_satisfaction(r682,h).registration_satisfaction1934,58620 -registration_satisfaction(r682,h).registration_satisfaction1934,58620 -registration_satisfaction(r683,h).registration_satisfaction1935,58655 -registration_satisfaction(r683,h).registration_satisfaction1935,58655 -registration_satisfaction(r684,m).registration_satisfaction1936,58690 -registration_satisfaction(r684,m).registration_satisfaction1936,58690 -registration_satisfaction(r685,h).registration_satisfaction1937,58725 -registration_satisfaction(r685,h).registration_satisfaction1937,58725 -registration_satisfaction(r686,h).registration_satisfaction1938,58760 -registration_satisfaction(r686,h).registration_satisfaction1938,58760 -registration_satisfaction(r687,l).registration_satisfaction1939,58795 -registration_satisfaction(r687,l).registration_satisfaction1939,58795 -registration_satisfaction(r688,h).registration_satisfaction1940,58830 -registration_satisfaction(r688,h).registration_satisfaction1940,58830 -registration_satisfaction(r689,m).registration_satisfaction1941,58865 -registration_satisfaction(r689,m).registration_satisfaction1941,58865 -registration_satisfaction(r690,h).registration_satisfaction1942,58900 -registration_satisfaction(r690,h).registration_satisfaction1942,58900 -registration_satisfaction(r691,h).registration_satisfaction1943,58935 -registration_satisfaction(r691,h).registration_satisfaction1943,58935 -registration_satisfaction(r692,h).registration_satisfaction1944,58970 -registration_satisfaction(r692,h).registration_satisfaction1944,58970 -registration_satisfaction(r693,h).registration_satisfaction1945,59005 -registration_satisfaction(r693,h).registration_satisfaction1945,59005 -registration_satisfaction(r694,h).registration_satisfaction1946,59040 -registration_satisfaction(r694,h).registration_satisfaction1946,59040 -registration_satisfaction(r695,h).registration_satisfaction1947,59075 -registration_satisfaction(r695,h).registration_satisfaction1947,59075 -registration_satisfaction(r696,h).registration_satisfaction1948,59110 -registration_satisfaction(r696,h).registration_satisfaction1948,59110 -registration_satisfaction(r697,m).registration_satisfaction1949,59145 -registration_satisfaction(r697,m).registration_satisfaction1949,59145 -registration_satisfaction(r698,h).registration_satisfaction1950,59180 -registration_satisfaction(r698,h).registration_satisfaction1950,59180 -registration_satisfaction(r699,h).registration_satisfaction1951,59215 -registration_satisfaction(r699,h).registration_satisfaction1951,59215 -registration_satisfaction(r700,h).registration_satisfaction1952,59250 -registration_satisfaction(r700,h).registration_satisfaction1952,59250 -registration_satisfaction(r701,h).registration_satisfaction1953,59285 -registration_satisfaction(r701,h).registration_satisfaction1953,59285 -registration_satisfaction(r702,h).registration_satisfaction1954,59320 -registration_satisfaction(r702,h).registration_satisfaction1954,59320 -registration_satisfaction(r703,l).registration_satisfaction1955,59355 -registration_satisfaction(r703,l).registration_satisfaction1955,59355 -registration_satisfaction(r704,l).registration_satisfaction1956,59390 -registration_satisfaction(r704,l).registration_satisfaction1956,59390 -registration_satisfaction(r705,l).registration_satisfaction1957,59425 -registration_satisfaction(r705,l).registration_satisfaction1957,59425 -registration_satisfaction(r706,m).registration_satisfaction1958,59460 -registration_satisfaction(r706,m).registration_satisfaction1958,59460 -registration_satisfaction(r707,h).registration_satisfaction1959,59495 -registration_satisfaction(r707,h).registration_satisfaction1959,59495 -registration_satisfaction(r708,l).registration_satisfaction1960,59530 -registration_satisfaction(r708,l).registration_satisfaction1960,59530 -registration_satisfaction(r709,m).registration_satisfaction1961,59565 -registration_satisfaction(r709,m).registration_satisfaction1961,59565 -registration_satisfaction(r710,l).registration_satisfaction1962,59600 -registration_satisfaction(r710,l).registration_satisfaction1962,59600 -registration_satisfaction(r711,h).registration_satisfaction1963,59635 -registration_satisfaction(r711,h).registration_satisfaction1963,59635 -registration_satisfaction(r712,h).registration_satisfaction1964,59670 -registration_satisfaction(r712,h).registration_satisfaction1964,59670 -registration_satisfaction(r713,h).registration_satisfaction1965,59705 -registration_satisfaction(r713,h).registration_satisfaction1965,59705 -registration_satisfaction(r714,m).registration_satisfaction1966,59740 -registration_satisfaction(r714,m).registration_satisfaction1966,59740 -registration_satisfaction(r715,h).registration_satisfaction1967,59775 -registration_satisfaction(r715,h).registration_satisfaction1967,59775 -registration_satisfaction(r716,h).registration_satisfaction1968,59810 -registration_satisfaction(r716,h).registration_satisfaction1968,59810 -registration_satisfaction(r717,h).registration_satisfaction1969,59845 -registration_satisfaction(r717,h).registration_satisfaction1969,59845 -registration_satisfaction(r718,l).registration_satisfaction1970,59880 -registration_satisfaction(r718,l).registration_satisfaction1970,59880 -registration_satisfaction(r719,l).registration_satisfaction1971,59915 -registration_satisfaction(r719,l).registration_satisfaction1971,59915 -registration_satisfaction(r720,h).registration_satisfaction1972,59950 -registration_satisfaction(r720,h).registration_satisfaction1972,59950 -registration_satisfaction(r721,h).registration_satisfaction1973,59985 -registration_satisfaction(r721,h).registration_satisfaction1973,59985 -registration_satisfaction(r722,h).registration_satisfaction1974,60020 -registration_satisfaction(r722,h).registration_satisfaction1974,60020 -registration_satisfaction(r723,h).registration_satisfaction1975,60055 -registration_satisfaction(r723,h).registration_satisfaction1975,60055 -registration_satisfaction(r724,h).registration_satisfaction1976,60090 -registration_satisfaction(r724,h).registration_satisfaction1976,60090 -registration_satisfaction(r725,h).registration_satisfaction1977,60125 -registration_satisfaction(r725,h).registration_satisfaction1977,60125 -registration_satisfaction(r726,h).registration_satisfaction1978,60160 -registration_satisfaction(r726,h).registration_satisfaction1978,60160 -registration_satisfaction(r727,h).registration_satisfaction1979,60195 -registration_satisfaction(r727,h).registration_satisfaction1979,60195 -registration_satisfaction(r728,m).registration_satisfaction1980,60230 -registration_satisfaction(r728,m).registration_satisfaction1980,60230 -registration_satisfaction(r729,h).registration_satisfaction1981,60265 -registration_satisfaction(r729,h).registration_satisfaction1981,60265 -registration_satisfaction(r730,h).registration_satisfaction1982,60300 -registration_satisfaction(r730,h).registration_satisfaction1982,60300 -registration_satisfaction(r731,h).registration_satisfaction1983,60335 -registration_satisfaction(r731,h).registration_satisfaction1983,60335 -registration_satisfaction(r732,h).registration_satisfaction1984,60370 -registration_satisfaction(r732,h).registration_satisfaction1984,60370 -registration_satisfaction(r733,h).registration_satisfaction1985,60405 -registration_satisfaction(r733,h).registration_satisfaction1985,60405 -registration_satisfaction(r734,h).registration_satisfaction1986,60440 -registration_satisfaction(r734,h).registration_satisfaction1986,60440 -registration_satisfaction(r735,h).registration_satisfaction1987,60475 -registration_satisfaction(r735,h).registration_satisfaction1987,60475 -registration_satisfaction(r736,h).registration_satisfaction1988,60510 -registration_satisfaction(r736,h).registration_satisfaction1988,60510 -registration_satisfaction(r737,h).registration_satisfaction1989,60545 -registration_satisfaction(r737,h).registration_satisfaction1989,60545 -registration_satisfaction(r738,h).registration_satisfaction1990,60580 -registration_satisfaction(r738,h).registration_satisfaction1990,60580 -registration_satisfaction(r739,h).registration_satisfaction1991,60615 -registration_satisfaction(r739,h).registration_satisfaction1991,60615 -registration_satisfaction(r740,h).registration_satisfaction1992,60650 -registration_satisfaction(r740,h).registration_satisfaction1992,60650 -registration_satisfaction(r741,h).registration_satisfaction1993,60685 -registration_satisfaction(r741,h).registration_satisfaction1993,60685 -registration_satisfaction(r742,h).registration_satisfaction1994,60720 -registration_satisfaction(r742,h).registration_satisfaction1994,60720 -registration_satisfaction(r743,h).registration_satisfaction1995,60755 -registration_satisfaction(r743,h).registration_satisfaction1995,60755 -registration_satisfaction(r744,h).registration_satisfaction1996,60790 -registration_satisfaction(r744,h).registration_satisfaction1996,60790 -registration_satisfaction(r745,m).registration_satisfaction1997,60825 -registration_satisfaction(r745,m).registration_satisfaction1997,60825 -registration_satisfaction(r746,h).registration_satisfaction1998,60860 -registration_satisfaction(r746,h).registration_satisfaction1998,60860 -registration_satisfaction(r747,h).registration_satisfaction1999,60895 -registration_satisfaction(r747,h).registration_satisfaction1999,60895 -registration_satisfaction(r748,h).registration_satisfaction2000,60930 -registration_satisfaction(r748,h).registration_satisfaction2000,60930 -registration_satisfaction(r749,m).registration_satisfaction2001,60965 -registration_satisfaction(r749,m).registration_satisfaction2001,60965 -registration_satisfaction(r750,h).registration_satisfaction2002,61000 -registration_satisfaction(r750,h).registration_satisfaction2002,61000 -registration_satisfaction(r751,h).registration_satisfaction2003,61035 -registration_satisfaction(r751,h).registration_satisfaction2003,61035 -registration_satisfaction(r752,m).registration_satisfaction2004,61070 -registration_satisfaction(r752,m).registration_satisfaction2004,61070 -registration_satisfaction(r753,m).registration_satisfaction2005,61105 -registration_satisfaction(r753,m).registration_satisfaction2005,61105 -registration_satisfaction(r754,h).registration_satisfaction2006,61140 -registration_satisfaction(r754,h).registration_satisfaction2006,61140 -registration_satisfaction(r755,l).registration_satisfaction2007,61175 -registration_satisfaction(r755,l).registration_satisfaction2007,61175 -registration_satisfaction(r756,h).registration_satisfaction2008,61210 -registration_satisfaction(r756,h).registration_satisfaction2008,61210 -registration_satisfaction(r757,h).registration_satisfaction2009,61245 -registration_satisfaction(r757,h).registration_satisfaction2009,61245 -registration_satisfaction(r758,h).registration_satisfaction2010,61280 -registration_satisfaction(r758,h).registration_satisfaction2010,61280 -registration_satisfaction(r759,l).registration_satisfaction2011,61315 -registration_satisfaction(r759,l).registration_satisfaction2011,61315 -registration_satisfaction(r760,h).registration_satisfaction2012,61350 -registration_satisfaction(r760,h).registration_satisfaction2012,61350 -registration_satisfaction(r761,h).registration_satisfaction2013,61385 -registration_satisfaction(r761,h).registration_satisfaction2013,61385 -registration_satisfaction(r762,m).registration_satisfaction2014,61420 -registration_satisfaction(r762,m).registration_satisfaction2014,61420 -registration_satisfaction(r763,h).registration_satisfaction2015,61455 -registration_satisfaction(r763,h).registration_satisfaction2015,61455 -registration_satisfaction(r764,h).registration_satisfaction2016,61490 -registration_satisfaction(r764,h).registration_satisfaction2016,61490 -registration_satisfaction(r765,h).registration_satisfaction2017,61525 -registration_satisfaction(r765,h).registration_satisfaction2017,61525 -registration_satisfaction(r766,h).registration_satisfaction2018,61560 -registration_satisfaction(r766,h).registration_satisfaction2018,61560 -registration_satisfaction(r767,h).registration_satisfaction2019,61595 -registration_satisfaction(r767,h).registration_satisfaction2019,61595 -registration_satisfaction(r768,l).registration_satisfaction2020,61630 -registration_satisfaction(r768,l).registration_satisfaction2020,61630 -registration_satisfaction(r769,l).registration_satisfaction2021,61665 -registration_satisfaction(r769,l).registration_satisfaction2021,61665 -registration_satisfaction(r770,m).registration_satisfaction2022,61700 -registration_satisfaction(r770,m).registration_satisfaction2022,61700 -registration_satisfaction(r771,m).registration_satisfaction2023,61735 -registration_satisfaction(r771,m).registration_satisfaction2023,61735 -registration_satisfaction(r772,h).registration_satisfaction2024,61770 -registration_satisfaction(r772,h).registration_satisfaction2024,61770 -registration_satisfaction(r773,m).registration_satisfaction2025,61805 -registration_satisfaction(r773,m).registration_satisfaction2025,61805 -registration_satisfaction(r774,h).registration_satisfaction2026,61840 -registration_satisfaction(r774,h).registration_satisfaction2026,61840 -registration_satisfaction(r775,h).registration_satisfaction2027,61875 -registration_satisfaction(r775,h).registration_satisfaction2027,61875 -registration_satisfaction(r776,h).registration_satisfaction2028,61910 -registration_satisfaction(r776,h).registration_satisfaction2028,61910 -registration_satisfaction(r777,l).registration_satisfaction2029,61945 -registration_satisfaction(r777,l).registration_satisfaction2029,61945 -registration_satisfaction(r778,h).registration_satisfaction2030,61980 -registration_satisfaction(r778,h).registration_satisfaction2030,61980 -registration_satisfaction(r779,h).registration_satisfaction2031,62015 -registration_satisfaction(r779,h).registration_satisfaction2031,62015 -registration_satisfaction(r780,h).registration_satisfaction2032,62050 -registration_satisfaction(r780,h).registration_satisfaction2032,62050 -registration_satisfaction(r781,m).registration_satisfaction2033,62085 -registration_satisfaction(r781,m).registration_satisfaction2033,62085 -registration_satisfaction(r782,m).registration_satisfaction2034,62120 -registration_satisfaction(r782,m).registration_satisfaction2034,62120 -registration_satisfaction(r783,m).registration_satisfaction2035,62155 -registration_satisfaction(r783,m).registration_satisfaction2035,62155 -registration_satisfaction(r784,l).registration_satisfaction2036,62190 -registration_satisfaction(r784,l).registration_satisfaction2036,62190 -registration_satisfaction(r785,l).registration_satisfaction2037,62225 -registration_satisfaction(r785,l).registration_satisfaction2037,62225 -registration_satisfaction(r786,h).registration_satisfaction2038,62260 -registration_satisfaction(r786,h).registration_satisfaction2038,62260 -registration_satisfaction(r787,h).registration_satisfaction2039,62295 -registration_satisfaction(r787,h).registration_satisfaction2039,62295 -registration_satisfaction(r788,h).registration_satisfaction2040,62330 -registration_satisfaction(r788,h).registration_satisfaction2040,62330 -registration_satisfaction(r789,h).registration_satisfaction2041,62365 -registration_satisfaction(r789,h).registration_satisfaction2041,62365 -registration_satisfaction(r790,h).registration_satisfaction2042,62400 -registration_satisfaction(r790,h).registration_satisfaction2042,62400 -registration_satisfaction(r791,h).registration_satisfaction2043,62435 -registration_satisfaction(r791,h).registration_satisfaction2043,62435 -registration_satisfaction(r792,h).registration_satisfaction2044,62470 -registration_satisfaction(r792,h).registration_satisfaction2044,62470 -registration_satisfaction(r793,m).registration_satisfaction2045,62505 -registration_satisfaction(r793,m).registration_satisfaction2045,62505 -registration_satisfaction(r794,l).registration_satisfaction2046,62540 -registration_satisfaction(r794,l).registration_satisfaction2046,62540 -registration_satisfaction(r795,h).registration_satisfaction2047,62575 -registration_satisfaction(r795,h).registration_satisfaction2047,62575 -registration_satisfaction(r796,h).registration_satisfaction2048,62610 -registration_satisfaction(r796,h).registration_satisfaction2048,62610 -registration_satisfaction(r797,h).registration_satisfaction2049,62645 -registration_satisfaction(r797,h).registration_satisfaction2049,62645 -registration_satisfaction(r798,m).registration_satisfaction2050,62680 -registration_satisfaction(r798,m).registration_satisfaction2050,62680 -registration_satisfaction(r799,m).registration_satisfaction2051,62715 -registration_satisfaction(r799,m).registration_satisfaction2051,62715 -registration_satisfaction(r800,m).registration_satisfaction2052,62750 -registration_satisfaction(r800,m).registration_satisfaction2052,62750 -registration_satisfaction(r801,h).registration_satisfaction2053,62785 -registration_satisfaction(r801,h).registration_satisfaction2053,62785 -registration_satisfaction(r802,h).registration_satisfaction2054,62820 -registration_satisfaction(r802,h).registration_satisfaction2054,62820 -registration_satisfaction(r803,h).registration_satisfaction2055,62855 -registration_satisfaction(r803,h).registration_satisfaction2055,62855 -registration_satisfaction(r804,h).registration_satisfaction2056,62890 -registration_satisfaction(r804,h).registration_satisfaction2056,62890 -registration_satisfaction(r805,h).registration_satisfaction2057,62925 -registration_satisfaction(r805,h).registration_satisfaction2057,62925 -registration_satisfaction(r806,h).registration_satisfaction2058,62960 -registration_satisfaction(r806,h).registration_satisfaction2058,62960 -registration_satisfaction(r807,l).registration_satisfaction2059,62995 -registration_satisfaction(r807,l).registration_satisfaction2059,62995 -registration_satisfaction(r808,m).registration_satisfaction2060,63030 -registration_satisfaction(r808,m).registration_satisfaction2060,63030 -registration_satisfaction(r809,l).registration_satisfaction2061,63065 -registration_satisfaction(r809,l).registration_satisfaction2061,63065 -registration_satisfaction(r810,h).registration_satisfaction2062,63100 -registration_satisfaction(r810,h).registration_satisfaction2062,63100 -registration_satisfaction(r811,l).registration_satisfaction2063,63135 -registration_satisfaction(r811,l).registration_satisfaction2063,63135 -registration_satisfaction(r812,h).registration_satisfaction2064,63170 -registration_satisfaction(r812,h).registration_satisfaction2064,63170 -registration_satisfaction(r813,m).registration_satisfaction2065,63205 -registration_satisfaction(r813,m).registration_satisfaction2065,63205 -registration_satisfaction(r814,l).registration_satisfaction2066,63240 -registration_satisfaction(r814,l).registration_satisfaction2066,63240 -registration_satisfaction(r815,h).registration_satisfaction2067,63275 -registration_satisfaction(r815,h).registration_satisfaction2067,63275 -registration_satisfaction(r816,h).registration_satisfaction2068,63310 -registration_satisfaction(r816,h).registration_satisfaction2068,63310 -registration_satisfaction(r817,h).registration_satisfaction2069,63345 -registration_satisfaction(r817,h).registration_satisfaction2069,63345 -registration_satisfaction(r818,l).registration_satisfaction2070,63380 -registration_satisfaction(r818,l).registration_satisfaction2070,63380 -registration_satisfaction(r819,h).registration_satisfaction2071,63415 -registration_satisfaction(r819,h).registration_satisfaction2071,63415 -registration_satisfaction(r820,h).registration_satisfaction2072,63450 -registration_satisfaction(r820,h).registration_satisfaction2072,63450 -registration_satisfaction(r821,m).registration_satisfaction2073,63485 -registration_satisfaction(r821,m).registration_satisfaction2073,63485 -registration_satisfaction(r822,m).registration_satisfaction2074,63520 -registration_satisfaction(r822,m).registration_satisfaction2074,63520 -registration_satisfaction(r823,h).registration_satisfaction2075,63555 -registration_satisfaction(r823,h).registration_satisfaction2075,63555 -registration_satisfaction(r824,m).registration_satisfaction2076,63590 -registration_satisfaction(r824,m).registration_satisfaction2076,63590 -registration_satisfaction(r825,l).registration_satisfaction2077,63625 -registration_satisfaction(r825,l).registration_satisfaction2077,63625 -registration_satisfaction(r826,l).registration_satisfaction2078,63660 -registration_satisfaction(r826,l).registration_satisfaction2078,63660 -registration_satisfaction(r827,l).registration_satisfaction2079,63695 -registration_satisfaction(r827,l).registration_satisfaction2079,63695 -registration_satisfaction(r828,m).registration_satisfaction2080,63730 -registration_satisfaction(r828,m).registration_satisfaction2080,63730 -registration_satisfaction(r829,l).registration_satisfaction2081,63765 -registration_satisfaction(r829,l).registration_satisfaction2081,63765 -registration_satisfaction(r830,h).registration_satisfaction2082,63800 -registration_satisfaction(r830,h).registration_satisfaction2082,63800 -registration_satisfaction(r831,h).registration_satisfaction2083,63835 -registration_satisfaction(r831,h).registration_satisfaction2083,63835 -registration_satisfaction(r832,m).registration_satisfaction2084,63870 -registration_satisfaction(r832,m).registration_satisfaction2084,63870 -registration_satisfaction(r833,h).registration_satisfaction2085,63905 -registration_satisfaction(r833,h).registration_satisfaction2085,63905 -registration_satisfaction(r834,h).registration_satisfaction2086,63940 -registration_satisfaction(r834,h).registration_satisfaction2086,63940 -registration_satisfaction(r835,h).registration_satisfaction2087,63975 -registration_satisfaction(r835,h).registration_satisfaction2087,63975 -registration_satisfaction(r836,h).registration_satisfaction2088,64010 -registration_satisfaction(r836,h).registration_satisfaction2088,64010 -registration_satisfaction(r837,h).registration_satisfaction2089,64045 -registration_satisfaction(r837,h).registration_satisfaction2089,64045 -registration_satisfaction(r838,l).registration_satisfaction2090,64080 -registration_satisfaction(r838,l).registration_satisfaction2090,64080 -registration_satisfaction(r839,m).registration_satisfaction2091,64115 -registration_satisfaction(r839,m).registration_satisfaction2091,64115 -registration_satisfaction(r840,m).registration_satisfaction2092,64150 -registration_satisfaction(r840,m).registration_satisfaction2092,64150 -registration_satisfaction(r841,h).registration_satisfaction2093,64185 -registration_satisfaction(r841,h).registration_satisfaction2093,64185 -registration_satisfaction(r842,h).registration_satisfaction2094,64220 -registration_satisfaction(r842,h).registration_satisfaction2094,64220 -registration_satisfaction(r843,h).registration_satisfaction2095,64255 -registration_satisfaction(r843,h).registration_satisfaction2095,64255 -registration_satisfaction(r844,h).registration_satisfaction2096,64290 -registration_satisfaction(r844,h).registration_satisfaction2096,64290 -registration_satisfaction(r845,l).registration_satisfaction2097,64325 -registration_satisfaction(r845,l).registration_satisfaction2097,64325 -registration_satisfaction(r846,l).registration_satisfaction2098,64360 -registration_satisfaction(r846,l).registration_satisfaction2098,64360 -registration_satisfaction(r847,h).registration_satisfaction2099,64395 -registration_satisfaction(r847,h).registration_satisfaction2099,64395 -registration_satisfaction(r848,l).registration_satisfaction2100,64430 -registration_satisfaction(r848,l).registration_satisfaction2100,64430 -registration_satisfaction(r849,h).registration_satisfaction2101,64465 -registration_satisfaction(r849,h).registration_satisfaction2101,64465 -registration_satisfaction(r850,h).registration_satisfaction2102,64500 -registration_satisfaction(r850,h).registration_satisfaction2102,64500 -registration_satisfaction(r851,h).registration_satisfaction2103,64535 -registration_satisfaction(r851,h).registration_satisfaction2103,64535 -registration_satisfaction(r852,h).registration_satisfaction2104,64570 -registration_satisfaction(r852,h).registration_satisfaction2104,64570 -registration_satisfaction(r853,h).registration_satisfaction2105,64605 -registration_satisfaction(r853,h).registration_satisfaction2105,64605 -registration_satisfaction(r854,m).registration_satisfaction2106,64640 -registration_satisfaction(r854,m).registration_satisfaction2106,64640 -registration_satisfaction(r855,h).registration_satisfaction2107,64675 -registration_satisfaction(r855,h).registration_satisfaction2107,64675 -registration_satisfaction(r856,l).registration_satisfaction2108,64710 -registration_satisfaction(r856,l).registration_satisfaction2108,64710 -course_rating(c0,m).course_rating2111,64747 -course_rating(c0,m).course_rating2111,64747 -course_rating(c1,l).course_rating2112,64768 -course_rating(c1,l).course_rating2112,64768 -course_rating(c2,m).course_rating2113,64789 -course_rating(c2,m).course_rating2113,64789 -course_rating(c3,h).course_rating2114,64810 -course_rating(c3,h).course_rating2114,64810 -course_rating(c4,h).course_rating2115,64831 -course_rating(c4,h).course_rating2115,64831 -course_rating(c5,m).course_rating2116,64852 -course_rating(c5,m).course_rating2116,64852 -course_rating(c6,h).course_rating2117,64873 -course_rating(c6,h).course_rating2117,64873 -course_rating(c7,h).course_rating2118,64894 -course_rating(c7,h).course_rating2118,64894 -course_rating(c8,m).course_rating2119,64915 -course_rating(c8,m).course_rating2119,64915 -course_rating(c9,m).course_rating2120,64936 -course_rating(c9,m).course_rating2120,64936 -course_rating(c10,m).course_rating2121,64957 -course_rating(c10,m).course_rating2121,64957 -course_rating(c11,h).course_rating2122,64979 -course_rating(c11,h).course_rating2122,64979 -course_rating(c12,m).course_rating2123,65001 -course_rating(c12,m).course_rating2123,65001 -course_rating(c13,h).course_rating2124,65023 -course_rating(c13,h).course_rating2124,65023 -course_rating(c14,h).course_rating2125,65045 -course_rating(c14,h).course_rating2125,65045 -course_rating(c15,m).course_rating2126,65067 -course_rating(c15,m).course_rating2126,65067 -course_rating(c16,h).course_rating2127,65089 -course_rating(c16,h).course_rating2127,65089 -course_rating(c17,m).course_rating2128,65111 -course_rating(c17,m).course_rating2128,65111 -course_rating(c18,h).course_rating2129,65133 -course_rating(c18,h).course_rating2129,65133 -course_rating(c19,h).course_rating2130,65155 -course_rating(c19,h).course_rating2130,65155 -course_rating(c20,h).course_rating2131,65177 -course_rating(c20,h).course_rating2131,65177 -course_rating(c21,m).course_rating2132,65199 -course_rating(c21,m).course_rating2132,65199 -course_rating(c22,h).course_rating2133,65221 -course_rating(c22,h).course_rating2133,65221 -course_rating(c23,h).course_rating2134,65243 -course_rating(c23,h).course_rating2134,65243 -course_rating(c24,m).course_rating2135,65265 -course_rating(c24,m).course_rating2135,65265 -course_rating(c25,h).course_rating2136,65287 -course_rating(c25,h).course_rating2136,65287 -course_rating(c26,m).course_rating2137,65309 -course_rating(c26,m).course_rating2137,65309 -course_rating(c27,h).course_rating2138,65331 -course_rating(c27,h).course_rating2138,65331 -course_rating(c28,m).course_rating2139,65353 -course_rating(c28,m).course_rating2139,65353 -course_rating(c29,m).course_rating2140,65375 -course_rating(c29,m).course_rating2140,65375 -course_rating(c30,h).course_rating2141,65397 -course_rating(c30,h).course_rating2141,65397 -course_rating(c31,h).course_rating2142,65419 -course_rating(c31,h).course_rating2142,65419 -course_rating(c32,h).course_rating2143,65441 -course_rating(c32,h).course_rating2143,65441 -course_rating(c33,m).course_rating2144,65463 -course_rating(c33,m).course_rating2144,65463 -course_rating(c34,h).course_rating2145,65485 -course_rating(c34,h).course_rating2145,65485 -course_rating(c35,m).course_rating2146,65507 -course_rating(c35,m).course_rating2146,65507 -course_rating(c36,h).course_rating2147,65529 -course_rating(c36,h).course_rating2147,65529 -course_rating(c37,m).course_rating2148,65551 -course_rating(c37,m).course_rating2148,65551 -course_rating(c38,m).course_rating2149,65573 -course_rating(c38,m).course_rating2149,65573 -course_rating(c39,h).course_rating2150,65595 -course_rating(c39,h).course_rating2150,65595 -course_rating(c40,m).course_rating2151,65617 -course_rating(c40,m).course_rating2151,65617 -course_rating(c41,m).course_rating2152,65639 -course_rating(c41,m).course_rating2152,65639 -course_rating(c42,h).course_rating2153,65661 -course_rating(c42,h).course_rating2153,65661 -course_rating(c43,h).course_rating2154,65683 -course_rating(c43,h).course_rating2154,65683 -course_rating(c44,h).course_rating2155,65705 -course_rating(c44,h).course_rating2155,65705 -course_rating(c45,h).course_rating2156,65727 -course_rating(c45,h).course_rating2156,65727 -course_rating(c46,l).course_rating2157,65749 -course_rating(c46,l).course_rating2157,65749 -course_rating(c47,h).course_rating2158,65771 -course_rating(c47,h).course_rating2158,65771 -course_rating(c48,h).course_rating2159,65793 -course_rating(c48,h).course_rating2159,65793 -course_rating(c49,m).course_rating2160,65815 -course_rating(c49,m).course_rating2160,65815 -course_rating(c50,l).course_rating2161,65837 -course_rating(c50,l).course_rating2161,65837 -course_rating(c51,m).course_rating2162,65859 -course_rating(c51,m).course_rating2162,65859 -course_rating(c52,h).course_rating2163,65881 -course_rating(c52,h).course_rating2163,65881 -course_rating(c53,l).course_rating2164,65903 -course_rating(c53,l).course_rating2164,65903 -course_rating(c54,h).course_rating2165,65925 -course_rating(c54,h).course_rating2165,65925 -course_rating(c55,h).course_rating2166,65947 -course_rating(c55,h).course_rating2166,65947 -course_rating(c56,h).course_rating2167,65969 -course_rating(c56,h).course_rating2167,65969 -course_rating(c57,h).course_rating2168,65991 -course_rating(c57,h).course_rating2168,65991 -course_rating(c58,l).course_rating2169,66013 -course_rating(c58,l).course_rating2169,66013 -course_rating(c59,h).course_rating2170,66035 -course_rating(c59,h).course_rating2170,66035 -course_rating(c60,h).course_rating2171,66057 -course_rating(c60,h).course_rating2171,66057 -course_rating(c61,h).course_rating2172,66079 -course_rating(c61,h).course_rating2172,66079 -course_rating(c62,h).course_rating2173,66101 -course_rating(c62,h).course_rating2173,66101 -course_rating(c63,h).course_rating2174,66123 -course_rating(c63,h).course_rating2174,66123 -student_ranking(s0,b).student_ranking2177,66147 -student_ranking(s0,b).student_ranking2177,66147 -student_ranking(s1,c).student_ranking2178,66170 -student_ranking(s1,c).student_ranking2178,66170 -student_ranking(s2,a).student_ranking2179,66193 -student_ranking(s2,a).student_ranking2179,66193 -student_ranking(s3,a).student_ranking2180,66216 -student_ranking(s3,a).student_ranking2180,66216 -student_ranking(s4,a).student_ranking2181,66239 -student_ranking(s4,a).student_ranking2181,66239 -student_ranking(s5,b).student_ranking2182,66262 -student_ranking(s5,b).student_ranking2182,66262 -student_ranking(s6,c).student_ranking2183,66285 -student_ranking(s6,c).student_ranking2183,66285 -student_ranking(s7,a).student_ranking2184,66308 -student_ranking(s7,a).student_ranking2184,66308 -student_ranking(s8,a).student_ranking2185,66331 -student_ranking(s8,a).student_ranking2185,66331 -student_ranking(s9,c).student_ranking2186,66354 -student_ranking(s9,c).student_ranking2186,66354 -student_ranking(s10,b).student_ranking2187,66377 -student_ranking(s10,b).student_ranking2187,66377 -student_ranking(s11,b).student_ranking2188,66401 -student_ranking(s11,b).student_ranking2188,66401 -student_ranking(s12,b).student_ranking2189,66425 -student_ranking(s12,b).student_ranking2189,66425 -student_ranking(s13,b).student_ranking2190,66449 -student_ranking(s13,b).student_ranking2190,66449 -student_ranking(s14,a).student_ranking2191,66473 -student_ranking(s14,a).student_ranking2191,66473 -student_ranking(s15,c).student_ranking2192,66497 -student_ranking(s15,c).student_ranking2192,66497 -student_ranking(s16,b).student_ranking2193,66521 -student_ranking(s16,b).student_ranking2193,66521 -student_ranking(s17,c).student_ranking2194,66545 -student_ranking(s17,c).student_ranking2194,66545 -student_ranking(s18,b).student_ranking2195,66569 -student_ranking(s18,b).student_ranking2195,66569 -student_ranking(s19,a).student_ranking2196,66593 -student_ranking(s19,a).student_ranking2196,66593 -student_ranking(s20,b).student_ranking2197,66617 -student_ranking(s20,b).student_ranking2197,66617 -student_ranking(s21,b).student_ranking2198,66641 -student_ranking(s21,b).student_ranking2198,66641 -student_ranking(s22,b).student_ranking2199,66665 -student_ranking(s22,b).student_ranking2199,66665 -student_ranking(s23,b).student_ranking2200,66689 -student_ranking(s23,b).student_ranking2200,66689 -student_ranking(s24,a).student_ranking2201,66713 -student_ranking(s24,a).student_ranking2201,66713 -student_ranking(s25,a).student_ranking2202,66737 -student_ranking(s25,a).student_ranking2202,66737 -student_ranking(s26,b).student_ranking2203,66761 -student_ranking(s26,b).student_ranking2203,66761 -student_ranking(s27,c).student_ranking2204,66785 -student_ranking(s27,c).student_ranking2204,66785 -student_ranking(s28,b).student_ranking2205,66809 -student_ranking(s28,b).student_ranking2205,66809 -student_ranking(s29,b).student_ranking2206,66833 -student_ranking(s29,b).student_ranking2206,66833 -student_ranking(s30,a).student_ranking2207,66857 -student_ranking(s30,a).student_ranking2207,66857 -student_ranking(s31,b).student_ranking2208,66881 -student_ranking(s31,b).student_ranking2208,66881 -student_ranking(s32,b).student_ranking2209,66905 -student_ranking(s32,b).student_ranking2209,66905 -student_ranking(s33,a).student_ranking2210,66929 -student_ranking(s33,a).student_ranking2210,66929 -student_ranking(s34,c).student_ranking2211,66953 -student_ranking(s34,c).student_ranking2211,66953 -student_ranking(s35,b).student_ranking2212,66977 -student_ranking(s35,b).student_ranking2212,66977 -student_ranking(s36,b).student_ranking2213,67001 -student_ranking(s36,b).student_ranking2213,67001 -student_ranking(s37,b).student_ranking2214,67025 -student_ranking(s37,b).student_ranking2214,67025 -student_ranking(s38,a).student_ranking2215,67049 -student_ranking(s38,a).student_ranking2215,67049 -student_ranking(s39,a).student_ranking2216,67073 -student_ranking(s39,a).student_ranking2216,67073 -student_ranking(s40,a).student_ranking2217,67097 -student_ranking(s40,a).student_ranking2217,67097 -student_ranking(s41,b).student_ranking2218,67121 -student_ranking(s41,b).student_ranking2218,67121 -student_ranking(s42,b).student_ranking2219,67145 -student_ranking(s42,b).student_ranking2219,67145 -student_ranking(s43,a).student_ranking2220,67169 -student_ranking(s43,a).student_ranking2220,67169 -student_ranking(s44,a).student_ranking2221,67193 -student_ranking(s44,a).student_ranking2221,67193 -student_ranking(s45,a).student_ranking2222,67217 -student_ranking(s45,a).student_ranking2222,67217 -student_ranking(s46,c).student_ranking2223,67241 -student_ranking(s46,c).student_ranking2223,67241 -student_ranking(s47,a).student_ranking2224,67265 -student_ranking(s47,a).student_ranking2224,67265 -student_ranking(s48,b).student_ranking2225,67289 -student_ranking(s48,b).student_ranking2225,67289 -student_ranking(s49,b).student_ranking2226,67313 -student_ranking(s49,b).student_ranking2226,67313 -student_ranking(s50,a).student_ranking2227,67337 -student_ranking(s50,a).student_ranking2227,67337 -student_ranking(s51,b).student_ranking2228,67361 -student_ranking(s51,b).student_ranking2228,67361 -student_ranking(s52,c).student_ranking2229,67385 -student_ranking(s52,c).student_ranking2229,67385 -student_ranking(s53,b).student_ranking2230,67409 -student_ranking(s53,b).student_ranking2230,67409 -student_ranking(s54,b).student_ranking2231,67433 -student_ranking(s54,b).student_ranking2231,67433 -student_ranking(s55,a).student_ranking2232,67457 -student_ranking(s55,a).student_ranking2232,67457 -student_ranking(s56,b).student_ranking2233,67481 -student_ranking(s56,b).student_ranking2233,67481 -student_ranking(s57,b).student_ranking2234,67505 -student_ranking(s57,b).student_ranking2234,67505 -student_ranking(s58,a).student_ranking2235,67529 -student_ranking(s58,a).student_ranking2235,67529 -student_ranking(s59,b).student_ranking2236,67553 -student_ranking(s59,b).student_ranking2236,67553 -student_ranking(s60,a).student_ranking2237,67577 -student_ranking(s60,a).student_ranking2237,67577 -student_ranking(s61,b).student_ranking2238,67601 -student_ranking(s61,b).student_ranking2238,67601 -student_ranking(s62,b).student_ranking2239,67625 -student_ranking(s62,b).student_ranking2239,67625 -student_ranking(s63,a).student_ranking2240,67649 -student_ranking(s63,a).student_ranking2240,67649 -student_ranking(s64,b).student_ranking2241,67673 -student_ranking(s64,b).student_ranking2241,67673 -student_ranking(s65,b).student_ranking2242,67697 -student_ranking(s65,b).student_ranking2242,67697 -student_ranking(s66,b).student_ranking2243,67721 -student_ranking(s66,b).student_ranking2243,67721 -student_ranking(s67,c).student_ranking2244,67745 -student_ranking(s67,c).student_ranking2244,67745 -student_ranking(s68,b).student_ranking2245,67769 -student_ranking(s68,b).student_ranking2245,67769 -student_ranking(s69,b).student_ranking2246,67793 -student_ranking(s69,b).student_ranking2246,67793 -student_ranking(s70,c).student_ranking2247,67817 -student_ranking(s70,c).student_ranking2247,67817 -student_ranking(s71,c).student_ranking2248,67841 -student_ranking(s71,c).student_ranking2248,67841 -student_ranking(s72,a).student_ranking2249,67865 -student_ranking(s72,a).student_ranking2249,67865 -student_ranking(s73,b).student_ranking2250,67889 -student_ranking(s73,b).student_ranking2250,67889 -student_ranking(s74,a).student_ranking2251,67913 -student_ranking(s74,a).student_ranking2251,67913 -student_ranking(s75,b).student_ranking2252,67937 -student_ranking(s75,b).student_ranking2252,67937 -student_ranking(s76,b).student_ranking2253,67961 -student_ranking(s76,b).student_ranking2253,67961 -student_ranking(s77,a).student_ranking2254,67985 -student_ranking(s77,a).student_ranking2254,67985 -student_ranking(s78,b).student_ranking2255,68009 -student_ranking(s78,b).student_ranking2255,68009 -student_ranking(s79,b).student_ranking2256,68033 -student_ranking(s79,b).student_ranking2256,68033 -student_ranking(s80,b).student_ranking2257,68057 -student_ranking(s80,b).student_ranking2257,68057 -student_ranking(s81,b).student_ranking2258,68081 -student_ranking(s81,b).student_ranking2258,68081 -student_ranking(s82,a).student_ranking2259,68105 -student_ranking(s82,a).student_ranking2259,68105 -student_ranking(s83,a).student_ranking2260,68129 -student_ranking(s83,a).student_ranking2260,68129 -student_ranking(s84,b).student_ranking2261,68153 -student_ranking(s84,b).student_ranking2261,68153 -student_ranking(s85,a).student_ranking2262,68177 -student_ranking(s85,a).student_ranking2262,68177 -student_ranking(s86,c).student_ranking2263,68201 -student_ranking(s86,c).student_ranking2263,68201 -student_ranking(s87,a).student_ranking2264,68225 -student_ranking(s87,a).student_ranking2264,68225 -student_ranking(s88,a).student_ranking2265,68249 -student_ranking(s88,a).student_ranking2265,68249 -student_ranking(s89,b).student_ranking2266,68273 -student_ranking(s89,b).student_ranking2266,68273 -student_ranking(s90,a).student_ranking2267,68297 -student_ranking(s90,a).student_ranking2267,68297 -student_ranking(s91,c).student_ranking2268,68321 -student_ranking(s91,c).student_ranking2268,68321 -student_ranking(s92,a).student_ranking2269,68345 -student_ranking(s92,a).student_ranking2269,68345 -student_ranking(s93,c).student_ranking2270,68369 -student_ranking(s93,c).student_ranking2270,68369 -student_ranking(s94,c).student_ranking2271,68393 -student_ranking(s94,c).student_ranking2271,68393 -student_ranking(s95,b).student_ranking2272,68417 -student_ranking(s95,b).student_ranking2272,68417 -student_ranking(s96,b).student_ranking2273,68441 -student_ranking(s96,b).student_ranking2273,68441 -student_ranking(s97,b).student_ranking2274,68465 -student_ranking(s97,b).student_ranking2274,68465 -student_ranking(s98,a).student_ranking2275,68489 -student_ranking(s98,a).student_ranking2275,68489 -student_ranking(s99,b).student_ranking2276,68513 -student_ranking(s99,b).student_ranking2276,68513 -student_ranking(s100,b).student_ranking2277,68537 -student_ranking(s100,b).student_ranking2277,68537 -student_ranking(s101,b).student_ranking2278,68562 -student_ranking(s101,b).student_ranking2278,68562 -student_ranking(s102,a).student_ranking2279,68587 -student_ranking(s102,a).student_ranking2279,68587 -student_ranking(s103,a).student_ranking2280,68612 -student_ranking(s103,a).student_ranking2280,68612 -student_ranking(s104,c).student_ranking2281,68637 -student_ranking(s104,c).student_ranking2281,68637 -student_ranking(s105,b).student_ranking2282,68662 -student_ranking(s105,b).student_ranking2282,68662 -student_ranking(s106,a).student_ranking2283,68687 -student_ranking(s106,a).student_ranking2283,68687 -student_ranking(s107,c).student_ranking2284,68712 -student_ranking(s107,c).student_ranking2284,68712 -student_ranking(s108,b).student_ranking2285,68737 -student_ranking(s108,b).student_ranking2285,68737 -student_ranking(s109,b).student_ranking2286,68762 -student_ranking(s109,b).student_ranking2286,68762 -student_ranking(s110,b).student_ranking2287,68787 -student_ranking(s110,b).student_ranking2287,68787 -student_ranking(s111,a).student_ranking2288,68812 -student_ranking(s111,a).student_ranking2288,68812 -student_ranking(s112,b).student_ranking2289,68837 -student_ranking(s112,b).student_ranking2289,68837 -student_ranking(s113,b).student_ranking2290,68862 -student_ranking(s113,b).student_ranking2290,68862 -student_ranking(s114,c).student_ranking2291,68887 -student_ranking(s114,c).student_ranking2291,68887 -student_ranking(s115,a).student_ranking2292,68912 -student_ranking(s115,a).student_ranking2292,68912 -student_ranking(s116,b).student_ranking2293,68937 -student_ranking(s116,b).student_ranking2293,68937 -student_ranking(s117,b).student_ranking2294,68962 -student_ranking(s117,b).student_ranking2294,68962 -student_ranking(s118,b).student_ranking2295,68987 -student_ranking(s118,b).student_ranking2295,68987 -student_ranking(s119,a).student_ranking2296,69012 -student_ranking(s119,a).student_ranking2296,69012 -student_ranking(s120,a).student_ranking2297,69037 -student_ranking(s120,a).student_ranking2297,69037 -student_ranking(s121,a).student_ranking2298,69062 -student_ranking(s121,a).student_ranking2298,69062 -student_ranking(s122,a).student_ranking2299,69087 -student_ranking(s122,a).student_ranking2299,69087 -student_ranking(s123,c).student_ranking2300,69112 -student_ranking(s123,c).student_ranking2300,69112 -student_ranking(s124,a).student_ranking2301,69137 -student_ranking(s124,a).student_ranking2301,69137 -student_ranking(s125,b).student_ranking2302,69162 -student_ranking(s125,b).student_ranking2302,69162 -student_ranking(s126,b).student_ranking2303,69187 -student_ranking(s126,b).student_ranking2303,69187 -student_ranking(s127,c).student_ranking2304,69212 -student_ranking(s127,c).student_ranking2304,69212 -student_ranking(s128,c).student_ranking2305,69237 -student_ranking(s128,c).student_ranking2305,69237 -student_ranking(s129,b).student_ranking2306,69262 -student_ranking(s129,b).student_ranking2306,69262 -student_ranking(s130,b).student_ranking2307,69287 -student_ranking(s130,b).student_ranking2307,69287 -student_ranking(s131,b).student_ranking2308,69312 -student_ranking(s131,b).student_ranking2308,69312 -student_ranking(s132,a).student_ranking2309,69337 -student_ranking(s132,a).student_ranking2309,69337 -student_ranking(s133,c).student_ranking2310,69362 -student_ranking(s133,c).student_ranking2310,69362 -student_ranking(s134,a).student_ranking2311,69387 -student_ranking(s134,a).student_ranking2311,69387 -student_ranking(s135,c).student_ranking2312,69412 -student_ranking(s135,c).student_ranking2312,69412 -student_ranking(s136,b).student_ranking2313,69437 -student_ranking(s136,b).student_ranking2313,69437 -student_ranking(s137,b).student_ranking2314,69462 -student_ranking(s137,b).student_ranking2314,69462 -student_ranking(s138,b).student_ranking2315,69487 -student_ranking(s138,b).student_ranking2315,69487 -student_ranking(s139,a).student_ranking2316,69512 -student_ranking(s139,a).student_ranking2316,69512 -student_ranking(s140,b).student_ranking2317,69537 -student_ranking(s140,b).student_ranking2317,69537 -student_ranking(s141,b).student_ranking2318,69562 -student_ranking(s141,b).student_ranking2318,69562 -student_ranking(s142,b).student_ranking2319,69587 -student_ranking(s142,b).student_ranking2319,69587 -student_ranking(s143,c).student_ranking2320,69612 -student_ranking(s143,c).student_ranking2320,69612 -student_ranking(s144,a).student_ranking2321,69637 -student_ranking(s144,a).student_ranking2321,69637 -student_ranking(s145,a).student_ranking2322,69662 -student_ranking(s145,a).student_ranking2322,69662 -student_ranking(s146,c).student_ranking2323,69687 -student_ranking(s146,c).student_ranking2323,69687 -student_ranking(s147,b).student_ranking2324,69712 -student_ranking(s147,b).student_ranking2324,69712 -student_ranking(s148,c).student_ranking2325,69737 -student_ranking(s148,c).student_ranking2325,69737 -student_ranking(s149,b).student_ranking2326,69762 -student_ranking(s149,b).student_ranking2326,69762 -student_ranking(s150,c).student_ranking2327,69787 -student_ranking(s150,c).student_ranking2327,69787 -student_ranking(s151,b).student_ranking2328,69812 -student_ranking(s151,b).student_ranking2328,69812 -student_ranking(s152,a).student_ranking2329,69837 -student_ranking(s152,a).student_ranking2329,69837 -student_ranking(s153,c).student_ranking2330,69862 -student_ranking(s153,c).student_ranking2330,69862 -student_ranking(s154,a).student_ranking2331,69887 -student_ranking(s154,a).student_ranking2331,69887 -student_ranking(s155,b).student_ranking2332,69912 -student_ranking(s155,b).student_ranking2332,69912 -student_ranking(s156,b).student_ranking2333,69937 -student_ranking(s156,b).student_ranking2333,69937 -student_ranking(s157,b).student_ranking2334,69962 -student_ranking(s157,b).student_ranking2334,69962 -student_ranking(s158,a).student_ranking2335,69987 -student_ranking(s158,a).student_ranking2335,69987 -student_ranking(s159,b).student_ranking2336,70012 -student_ranking(s159,b).student_ranking2336,70012 -student_ranking(s160,a).student_ranking2337,70037 -student_ranking(s160,a).student_ranking2337,70037 -student_ranking(s161,b).student_ranking2338,70062 -student_ranking(s161,b).student_ranking2338,70062 -student_ranking(s162,a).student_ranking2339,70087 -student_ranking(s162,a).student_ranking2339,70087 -student_ranking(s163,b).student_ranking2340,70112 -student_ranking(s163,b).student_ranking2340,70112 -student_ranking(s164,b).student_ranking2341,70137 -student_ranking(s164,b).student_ranking2341,70137 -student_ranking(s165,b).student_ranking2342,70162 -student_ranking(s165,b).student_ranking2342,70162 -student_ranking(s166,b).student_ranking2343,70187 -student_ranking(s166,b).student_ranking2343,70187 -student_ranking(s167,b).student_ranking2344,70212 -student_ranking(s167,b).student_ranking2344,70212 -student_ranking(s168,a).student_ranking2345,70237 -student_ranking(s168,a).student_ranking2345,70237 -student_ranking(s169,c).student_ranking2346,70262 -student_ranking(s169,c).student_ranking2346,70262 -student_ranking(s170,b).student_ranking2347,70287 -student_ranking(s170,b).student_ranking2347,70287 -student_ranking(s171,b).student_ranking2348,70312 -student_ranking(s171,b).student_ranking2348,70312 -student_ranking(s172,a).student_ranking2349,70337 -student_ranking(s172,a).student_ranking2349,70337 -student_ranking(s173,a).student_ranking2350,70362 -student_ranking(s173,a).student_ranking2350,70362 -student_ranking(s174,a).student_ranking2351,70387 -student_ranking(s174,a).student_ranking2351,70387 -student_ranking(s175,c).student_ranking2352,70412 -student_ranking(s175,c).student_ranking2352,70412 -student_ranking(s176,b).student_ranking2353,70437 -student_ranking(s176,b).student_ranking2353,70437 -student_ranking(s177,b).student_ranking2354,70462 -student_ranking(s177,b).student_ranking2354,70462 -student_ranking(s178,a).student_ranking2355,70487 -student_ranking(s178,a).student_ranking2355,70487 -student_ranking(s179,a).student_ranking2356,70512 -student_ranking(s179,a).student_ranking2356,70512 -student_ranking(s180,b).student_ranking2357,70537 -student_ranking(s180,b).student_ranking2357,70537 -student_ranking(s181,a).student_ranking2358,70562 -student_ranking(s181,a).student_ranking2358,70562 -student_ranking(s182,b).student_ranking2359,70587 -student_ranking(s182,b).student_ranking2359,70587 -student_ranking(s183,a).student_ranking2360,70612 -student_ranking(s183,a).student_ranking2360,70612 -student_ranking(s184,a).student_ranking2361,70637 -student_ranking(s184,a).student_ranking2361,70637 -student_ranking(s185,b).student_ranking2362,70662 -student_ranking(s185,b).student_ranking2362,70662 -student_ranking(s186,b).student_ranking2363,70687 -student_ranking(s186,b).student_ranking2363,70687 -student_ranking(s187,b).student_ranking2364,70712 -student_ranking(s187,b).student_ranking2364,70712 -student_ranking(s188,a).student_ranking2365,70737 -student_ranking(s188,a).student_ranking2365,70737 -student_ranking(s189,c).student_ranking2366,70762 -student_ranking(s189,c).student_ranking2366,70762 -student_ranking(s190,b).student_ranking2367,70787 -student_ranking(s190,b).student_ranking2367,70787 -student_ranking(s191,c).student_ranking2368,70812 -student_ranking(s191,c).student_ranking2368,70812 -student_ranking(s192,a).student_ranking2369,70837 -student_ranking(s192,a).student_ranking2369,70837 -student_ranking(s193,b).student_ranking2370,70862 -student_ranking(s193,b).student_ranking2370,70862 -student_ranking(s194,b).student_ranking2371,70887 -student_ranking(s194,b).student_ranking2371,70887 -student_ranking(s195,c).student_ranking2372,70912 -student_ranking(s195,c).student_ranking2372,70912 -student_ranking(s196,a).student_ranking2373,70937 -student_ranking(s196,a).student_ranking2373,70937 -student_ranking(s197,a).student_ranking2374,70962 -student_ranking(s197,a).student_ranking2374,70962 -student_ranking(s198,b).student_ranking2375,70987 -student_ranking(s198,b).student_ranking2375,70987 -student_ranking(s199,b).student_ranking2376,71012 -student_ranking(s199,b).student_ranking2376,71012 -student_ranking(s200,b).student_ranking2377,71037 -student_ranking(s200,b).student_ranking2377,71037 -student_ranking(s201,b).student_ranking2378,71062 -student_ranking(s201,b).student_ranking2378,71062 -student_ranking(s202,a).student_ranking2379,71087 -student_ranking(s202,a).student_ranking2379,71087 -student_ranking(s203,b).student_ranking2380,71112 -student_ranking(s203,b).student_ranking2380,71112 -student_ranking(s204,b).student_ranking2381,71137 -student_ranking(s204,b).student_ranking2381,71137 -student_ranking(s205,b).student_ranking2382,71162 -student_ranking(s205,b).student_ranking2382,71162 -student_ranking(s206,b).student_ranking2383,71187 -student_ranking(s206,b).student_ranking2383,71187 -student_ranking(s207,a).student_ranking2384,71212 -student_ranking(s207,a).student_ranking2384,71212 -student_ranking(s208,b).student_ranking2385,71237 -student_ranking(s208,b).student_ranking2385,71237 -student_ranking(s209,a).student_ranking2386,71262 -student_ranking(s209,a).student_ranking2386,71262 -student_ranking(s210,c).student_ranking2387,71287 -student_ranking(s210,c).student_ranking2387,71287 -student_ranking(s211,b).student_ranking2388,71312 -student_ranking(s211,b).student_ranking2388,71312 -student_ranking(s212,a).student_ranking2389,71337 -student_ranking(s212,a).student_ranking2389,71337 -student_ranking(s213,a).student_ranking2390,71362 -student_ranking(s213,a).student_ranking2390,71362 -student_ranking(s214,b).student_ranking2391,71387 -student_ranking(s214,b).student_ranking2391,71387 -student_ranking(s215,b).student_ranking2392,71412 -student_ranking(s215,b).student_ranking2392,71412 -student_ranking(s216,b).student_ranking2393,71437 -student_ranking(s216,b).student_ranking2393,71437 -student_ranking(s217,b).student_ranking2394,71462 -student_ranking(s217,b).student_ranking2394,71462 -student_ranking(s218,a).student_ranking2395,71487 -student_ranking(s218,a).student_ranking2395,71487 -student_ranking(s219,b).student_ranking2396,71512 -student_ranking(s219,b).student_ranking2396,71512 -student_ranking(s220,a).student_ranking2397,71537 -student_ranking(s220,a).student_ranking2397,71537 -student_ranking(s221,c).student_ranking2398,71562 -student_ranking(s221,c).student_ranking2398,71562 -student_ranking(s222,a).student_ranking2399,71587 -student_ranking(s222,a).student_ranking2399,71587 -student_ranking(s223,b).student_ranking2400,71612 -student_ranking(s223,b).student_ranking2400,71612 -student_ranking(s224,c).student_ranking2401,71637 -student_ranking(s224,c).student_ranking2401,71637 -student_ranking(s225,c).student_ranking2402,71662 -student_ranking(s225,c).student_ranking2402,71662 -student_ranking(s226,a).student_ranking2403,71687 -student_ranking(s226,a).student_ranking2403,71687 -student_ranking(s227,a).student_ranking2404,71712 -student_ranking(s227,a).student_ranking2404,71712 -student_ranking(s228,b).student_ranking2405,71737 -student_ranking(s228,b).student_ranking2405,71737 -student_ranking(s229,c).student_ranking2406,71762 -student_ranking(s229,c).student_ranking2406,71762 -student_ranking(s230,b).student_ranking2407,71787 -student_ranking(s230,b).student_ranking2407,71787 -student_ranking(s231,a).student_ranking2408,71812 -student_ranking(s231,a).student_ranking2408,71812 -student_ranking(s232,c).student_ranking2409,71837 -student_ranking(s232,c).student_ranking2409,71837 -student_ranking(s233,b).student_ranking2410,71862 -student_ranking(s233,b).student_ranking2410,71862 -student_ranking(s234,c).student_ranking2411,71887 -student_ranking(s234,c).student_ranking2411,71887 -student_ranking(s235,b).student_ranking2412,71912 -student_ranking(s235,b).student_ranking2412,71912 -student_ranking(s236,b).student_ranking2413,71937 -student_ranking(s236,b).student_ranking2413,71937 -student_ranking(s237,a).student_ranking2414,71962 -student_ranking(s237,a).student_ranking2414,71962 -student_ranking(s238,a).student_ranking2415,71987 -student_ranking(s238,a).student_ranking2415,71987 -student_ranking(s239,b).student_ranking2416,72012 -student_ranking(s239,b).student_ranking2416,72012 -student_ranking(s240,a).student_ranking2417,72037 -student_ranking(s240,a).student_ranking2417,72037 -student_ranking(s241,b).student_ranking2418,72062 -student_ranking(s241,b).student_ranking2418,72062 -student_ranking(s242,c).student_ranking2419,72087 -student_ranking(s242,c).student_ranking2419,72087 -student_ranking(s243,b).student_ranking2420,72112 -student_ranking(s243,b).student_ranking2420,72112 -student_ranking(s244,c).student_ranking2421,72137 -student_ranking(s244,c).student_ranking2421,72137 -student_ranking(s245,b).student_ranking2422,72162 -student_ranking(s245,b).student_ranking2422,72162 -student_ranking(s246,b).student_ranking2423,72187 -student_ranking(s246,b).student_ranking2423,72187 -student_ranking(s247,b).student_ranking2424,72212 -student_ranking(s247,b).student_ranking2424,72212 -student_ranking(s248,b).student_ranking2425,72237 -student_ranking(s248,b).student_ranking2425,72237 -student_ranking(s249,b).student_ranking2426,72262 -student_ranking(s249,b).student_ranking2426,72262 -student_ranking(s250,c).student_ranking2427,72287 -student_ranking(s250,c).student_ranking2427,72287 -student_ranking(s251,a).student_ranking2428,72312 -student_ranking(s251,a).student_ranking2428,72312 -student_ranking(s252,b).student_ranking2429,72337 -student_ranking(s252,b).student_ranking2429,72337 -student_ranking(s253,b).student_ranking2430,72362 -student_ranking(s253,b).student_ranking2430,72362 -student_ranking(s254,b).student_ranking2431,72387 -student_ranking(s254,b).student_ranking2431,72387 -student_ranking(s255,c).student_ranking2432,72412 -student_ranking(s255,c).student_ranking2432,72412 - -packages/CLPBN/examples/School/evidence_128.yap,1947 -professor_popularity(p0,h) :- {}.professor_popularity4,32 -professor_popularity(p0,h) :- {}.professor_popularity4,32 -professor_popularity(p0,h) :- {}.professor_popularity4,32 -professor_popularity(p3,h) :- {}.professor_popularity5,66 -professor_popularity(p3,h) :- {}.professor_popularity5,66 -professor_popularity(p3,h) :- {}.professor_popularity5,66 -professor_popularity(p5,l) :- {}.professor_popularity6,100 -professor_popularity(p5,l) :- {}.professor_popularity6,100 -professor_popularity(p5,l) :- {}.professor_popularity6,100 -professor_popularity(p45,h) :- {}.professor_popularity7,134 -professor_popularity(p45,h) :- {}.professor_popularity7,134 -professor_popularity(p45,h) :- {}.professor_popularity7,134 -professor_popularity(p15,m) :- {}.professor_popularity8,169 -professor_popularity(p15,m) :- {}.professor_popularity8,169 -professor_popularity(p15,m) :- {}.professor_popularity8,169 -course_rating(c0, h) :- {}.course_rating10,205 -course_rating(c0, h) :- {}.course_rating10,205 -course_rating(c0, h) :- {}.course_rating10,205 -course_rating(c1, m) :- {}.course_rating11,233 -course_rating(c1, m) :- {}.course_rating11,233 -course_rating(c1, m) :- {}.course_rating11,233 -course_rating(c2, l) :- {}.course_rating12,261 -course_rating(c2, l) :- {}.course_rating12,261 -course_rating(c2, l) :- {}.course_rating12,261 -course_rating(c3, h) :- {}.course_rating13,289 -course_rating(c3, h) :- {}.course_rating13,289 -course_rating(c3, h) :- {}.course_rating13,289 -course_rating(c4, m) :- {}.course_rating14,317 -course_rating(c4, m) :- {}.course_rating14,317 -course_rating(c4, m) :- {}.course_rating14,317 -course_rating(c5, l) :- {}.course_rating15,345 -course_rating(c5, l) :- {}.course_rating15,345 -course_rating(c5, l) :- {}.course_rating15,345 -course_rating(c62, m) :- {}.course_rating16,373 -course_rating(c62, m) :- {}.course_rating16,373 -course_rating(c62, m) :- {}.course_rating16,373 - -packages/CLPBN/examples/School/parlearn.yap,1097 -main :-main12,228 -goal(professor_ability(P,V)) :-goal17,306 -goal(professor_ability(P,V)) :-goal17,306 -goal(professor_ability(P,V)) :-goal17,306 -goal(professor_popularity(P,V)) :-goal20,390 -goal(professor_popularity(P,V)) :-goal20,390 -goal(professor_popularity(P,V)) :-goal20,390 -goal(registration_grade(P,V)) :-goal23,480 -goal(registration_grade(P,V)) :-goal23,480 -goal(registration_grade(P,V)) :-goal23,480 -goal(student_intelligence(P,V)) :-goal26,566 -goal(student_intelligence(P,V)) :-goal26,566 -goal(student_intelligence(P,V)) :-goal26,566 -goal(course_difficulty(P,V)) :-goal29,656 -goal(course_difficulty(P,V)) :-goal29,656 -goal(course_difficulty(P,V)) :-goal29,656 -goal(registration_satisfaction(P,V)) :-goal32,740 -goal(registration_satisfaction(P,V)) :-goal32,740 -goal(registration_satisfaction(P,V)) :-goal32,740 -p(_, 1.0).p37,862 -p(_, 1.0).p37,862 -write_cpts([]).write_cpts39,874 -write_cpts([]).write_cpts39,874 -write_cpts([CPT|CPTs]) :-write_cpts40,890 -write_cpts([CPT|CPTs]) :-write_cpts40,890 -write_cpts([CPT|CPTs]) :-write_cpts40,890 - -packages/CLPBN/examples/School/README,88 -This is a version of the school database, based on the PRM School example.database2,1 - -packages/CLPBN/examples/School/sample32.yap,297736 -professor_ability(p0,h).professor_ability3,2 -professor_ability(p0,h).professor_ability3,2 -professor_ability(p1,h).professor_ability4,27 -professor_ability(p1,h).professor_ability4,27 -professor_ability(p2,m).professor_ability5,52 -professor_ability(p2,m).professor_ability5,52 -professor_ability(p3,m).professor_ability6,77 -professor_ability(p3,m).professor_ability6,77 -professor_ability(p4,h).professor_ability7,102 -professor_ability(p4,h).professor_ability7,102 -professor_ability(p5,h).professor_ability8,127 -professor_ability(p5,h).professor_ability8,127 -professor_ability(p6,l).professor_ability9,152 -professor_ability(p6,l).professor_ability9,152 -professor_ability(p7,l).professor_ability10,177 -professor_ability(p7,l).professor_ability10,177 -professor_ability(p8,m).professor_ability11,202 -professor_ability(p8,m).professor_ability11,202 -professor_ability(p9,h).professor_ability12,227 -professor_ability(p9,h).professor_ability12,227 -professor_ability(p10,m).professor_ability13,252 -professor_ability(p10,m).professor_ability13,252 -professor_ability(p11,h).professor_ability14,278 -professor_ability(p11,h).professor_ability14,278 -professor_ability(p12,h).professor_ability15,304 -professor_ability(p12,h).professor_ability15,304 -professor_ability(p13,m).professor_ability16,330 -professor_ability(p13,m).professor_ability16,330 -professor_ability(p14,m).professor_ability17,356 -professor_ability(p14,m).professor_ability17,356 -professor_ability(p15,m).professor_ability18,382 -professor_ability(p15,m).professor_ability18,382 -professor_ability(p16,m).professor_ability19,408 -professor_ability(p16,m).professor_ability19,408 -professor_ability(p17,m).professor_ability20,434 -professor_ability(p17,m).professor_ability20,434 -professor_ability(p18,l).professor_ability21,460 -professor_ability(p18,l).professor_ability21,460 -professor_ability(p19,h).professor_ability22,486 -professor_ability(p19,h).professor_ability22,486 -professor_ability(p20,h).professor_ability23,512 -professor_ability(p20,h).professor_ability23,512 -professor_ability(p21,h).professor_ability24,538 -professor_ability(p21,h).professor_ability24,538 -professor_ability(p22,m).professor_ability25,564 -professor_ability(p22,m).professor_ability25,564 -professor_ability(p23,m).professor_ability26,590 -professor_ability(p23,m).professor_ability26,590 -professor_ability(p24,l).professor_ability27,616 -professor_ability(p24,l).professor_ability27,616 -professor_ability(p25,m).professor_ability28,642 -professor_ability(p25,m).professor_ability28,642 -professor_ability(p26,h).professor_ability29,668 -professor_ability(p26,h).professor_ability29,668 -professor_ability(p27,h).professor_ability30,694 -professor_ability(p27,h).professor_ability30,694 -professor_ability(p28,h).professor_ability31,720 -professor_ability(p28,h).professor_ability31,720 -professor_ability(p29,m).professor_ability32,746 -professor_ability(p29,m).professor_ability32,746 -professor_ability(p30,m).professor_ability33,772 -professor_ability(p30,m).professor_ability33,772 -professor_ability(p31,h).professor_ability34,798 -professor_ability(p31,h).professor_ability34,798 -course_difficulty(c0,h).course_difficulty37,826 -course_difficulty(c0,h).course_difficulty37,826 -course_difficulty(c1,m).course_difficulty38,851 -course_difficulty(c1,m).course_difficulty38,851 -course_difficulty(c2,l).course_difficulty39,876 -course_difficulty(c2,l).course_difficulty39,876 -course_difficulty(c3,m).course_difficulty40,901 -course_difficulty(c3,m).course_difficulty40,901 -course_difficulty(c4,m).course_difficulty41,926 -course_difficulty(c4,m).course_difficulty41,926 -course_difficulty(c5,l).course_difficulty42,951 -course_difficulty(c5,l).course_difficulty42,951 -course_difficulty(c6,m).course_difficulty43,976 -course_difficulty(c6,m).course_difficulty43,976 -course_difficulty(c7,h).course_difficulty44,1001 -course_difficulty(c7,h).course_difficulty44,1001 -course_difficulty(c8,h).course_difficulty45,1026 -course_difficulty(c8,h).course_difficulty45,1026 -course_difficulty(c9,l).course_difficulty46,1051 -course_difficulty(c9,l).course_difficulty46,1051 -course_difficulty(c10,m).course_difficulty47,1076 -course_difficulty(c10,m).course_difficulty47,1076 -course_difficulty(c11,m).course_difficulty48,1102 -course_difficulty(c11,m).course_difficulty48,1102 -course_difficulty(c12,m).course_difficulty49,1128 -course_difficulty(c12,m).course_difficulty49,1128 -course_difficulty(c13,h).course_difficulty50,1154 -course_difficulty(c13,h).course_difficulty50,1154 -course_difficulty(c14,m).course_difficulty51,1180 -course_difficulty(c14,m).course_difficulty51,1180 -course_difficulty(c15,h).course_difficulty52,1206 -course_difficulty(c15,h).course_difficulty52,1206 -course_difficulty(c16,l).course_difficulty53,1232 -course_difficulty(c16,l).course_difficulty53,1232 -course_difficulty(c17,h).course_difficulty54,1258 -course_difficulty(c17,h).course_difficulty54,1258 -course_difficulty(c18,m).course_difficulty55,1284 -course_difficulty(c18,m).course_difficulty55,1284 -course_difficulty(c19,l).course_difficulty56,1310 -course_difficulty(c19,l).course_difficulty56,1310 -course_difficulty(c20,m).course_difficulty57,1336 -course_difficulty(c20,m).course_difficulty57,1336 -course_difficulty(c21,h).course_difficulty58,1362 -course_difficulty(c21,h).course_difficulty58,1362 -course_difficulty(c22,m).course_difficulty59,1388 -course_difficulty(c22,m).course_difficulty59,1388 -course_difficulty(c23,m).course_difficulty60,1414 -course_difficulty(c23,m).course_difficulty60,1414 -course_difficulty(c24,h).course_difficulty61,1440 -course_difficulty(c24,h).course_difficulty61,1440 -course_difficulty(c25,m).course_difficulty62,1466 -course_difficulty(c25,m).course_difficulty62,1466 -course_difficulty(c26,l).course_difficulty63,1492 -course_difficulty(c26,l).course_difficulty63,1492 -course_difficulty(c27,h).course_difficulty64,1518 -course_difficulty(c27,h).course_difficulty64,1518 -course_difficulty(c28,m).course_difficulty65,1544 -course_difficulty(c28,m).course_difficulty65,1544 -course_difficulty(c29,m).course_difficulty66,1570 -course_difficulty(c29,m).course_difficulty66,1570 -course_difficulty(c30,m).course_difficulty67,1596 -course_difficulty(c30,m).course_difficulty67,1596 -course_difficulty(c31,m).course_difficulty68,1622 -course_difficulty(c31,m).course_difficulty68,1622 -course_difficulty(c32,l).course_difficulty69,1648 -course_difficulty(c32,l).course_difficulty69,1648 -course_difficulty(c33,m).course_difficulty70,1674 -course_difficulty(c33,m).course_difficulty70,1674 -course_difficulty(c34,l).course_difficulty71,1700 -course_difficulty(c34,l).course_difficulty71,1700 -course_difficulty(c35,h).course_difficulty72,1726 -course_difficulty(c35,h).course_difficulty72,1726 -course_difficulty(c36,h).course_difficulty73,1752 -course_difficulty(c36,h).course_difficulty73,1752 -course_difficulty(c37,m).course_difficulty74,1778 -course_difficulty(c37,m).course_difficulty74,1778 -course_difficulty(c38,m).course_difficulty75,1804 -course_difficulty(c38,m).course_difficulty75,1804 -course_difficulty(c39,m).course_difficulty76,1830 -course_difficulty(c39,m).course_difficulty76,1830 -course_difficulty(c40,h).course_difficulty77,1856 -course_difficulty(c40,h).course_difficulty77,1856 -course_difficulty(c41,m).course_difficulty78,1882 -course_difficulty(c41,m).course_difficulty78,1882 -course_difficulty(c42,h).course_difficulty79,1908 -course_difficulty(c42,h).course_difficulty79,1908 -course_difficulty(c43,m).course_difficulty80,1934 -course_difficulty(c43,m).course_difficulty80,1934 -course_difficulty(c44,m).course_difficulty81,1960 -course_difficulty(c44,m).course_difficulty81,1960 -course_difficulty(c45,m).course_difficulty82,1986 -course_difficulty(c45,m).course_difficulty82,1986 -course_difficulty(c46,m).course_difficulty83,2012 -course_difficulty(c46,m).course_difficulty83,2012 -course_difficulty(c47,m).course_difficulty84,2038 -course_difficulty(c47,m).course_difficulty84,2038 -course_difficulty(c48,m).course_difficulty85,2064 -course_difficulty(c48,m).course_difficulty85,2064 -course_difficulty(c49,l).course_difficulty86,2090 -course_difficulty(c49,l).course_difficulty86,2090 -course_difficulty(c50,m).course_difficulty87,2116 -course_difficulty(c50,m).course_difficulty87,2116 -course_difficulty(c51,h).course_difficulty88,2142 -course_difficulty(c51,h).course_difficulty88,2142 -course_difficulty(c52,h).course_difficulty89,2168 -course_difficulty(c52,h).course_difficulty89,2168 -course_difficulty(c53,h).course_difficulty90,2194 -course_difficulty(c53,h).course_difficulty90,2194 -course_difficulty(c54,m).course_difficulty91,2220 -course_difficulty(c54,m).course_difficulty91,2220 -course_difficulty(c55,h).course_difficulty92,2246 -course_difficulty(c55,h).course_difficulty92,2246 -course_difficulty(c56,m).course_difficulty93,2272 -course_difficulty(c56,m).course_difficulty93,2272 -course_difficulty(c57,m).course_difficulty94,2298 -course_difficulty(c57,m).course_difficulty94,2298 -course_difficulty(c58,h).course_difficulty95,2324 -course_difficulty(c58,h).course_difficulty95,2324 -course_difficulty(c59,m).course_difficulty96,2350 -course_difficulty(c59,m).course_difficulty96,2350 -course_difficulty(c60,h).course_difficulty97,2376 -course_difficulty(c60,h).course_difficulty97,2376 -course_difficulty(c61,m).course_difficulty98,2402 -course_difficulty(c61,m).course_difficulty98,2402 -course_difficulty(c62,l).course_difficulty99,2428 -course_difficulty(c62,l).course_difficulty99,2428 -course_difficulty(c63,l).course_difficulty100,2454 -course_difficulty(c63,l).course_difficulty100,2454 -student_intelligence(s0,l).student_intelligence103,2482 -student_intelligence(s0,l).student_intelligence103,2482 -student_intelligence(s1,l).student_intelligence104,2510 -student_intelligence(s1,l).student_intelligence104,2510 -student_intelligence(s2,h).student_intelligence105,2538 -student_intelligence(s2,h).student_intelligence105,2538 -student_intelligence(s3,h).student_intelligence106,2566 -student_intelligence(s3,h).student_intelligence106,2566 -student_intelligence(s4,h).student_intelligence107,2594 -student_intelligence(s4,h).student_intelligence107,2594 -student_intelligence(s5,h).student_intelligence108,2622 -student_intelligence(s5,h).student_intelligence108,2622 -student_intelligence(s6,m).student_intelligence109,2650 -student_intelligence(s6,m).student_intelligence109,2650 -student_intelligence(s7,h).student_intelligence110,2678 -student_intelligence(s7,h).student_intelligence110,2678 -student_intelligence(s8,h).student_intelligence111,2706 -student_intelligence(s8,h).student_intelligence111,2706 -student_intelligence(s9,m).student_intelligence112,2734 -student_intelligence(s9,m).student_intelligence112,2734 -student_intelligence(s10,m).student_intelligence113,2762 -student_intelligence(s10,m).student_intelligence113,2762 -student_intelligence(s11,m).student_intelligence114,2791 -student_intelligence(s11,m).student_intelligence114,2791 -student_intelligence(s12,h).student_intelligence115,2820 -student_intelligence(s12,h).student_intelligence115,2820 -student_intelligence(s13,h).student_intelligence116,2849 -student_intelligence(s13,h).student_intelligence116,2849 -student_intelligence(s14,h).student_intelligence117,2878 -student_intelligence(s14,h).student_intelligence117,2878 -student_intelligence(s15,m).student_intelligence118,2907 -student_intelligence(s15,m).student_intelligence118,2907 -student_intelligence(s16,h).student_intelligence119,2936 -student_intelligence(s16,h).student_intelligence119,2936 -student_intelligence(s17,m).student_intelligence120,2965 -student_intelligence(s17,m).student_intelligence120,2965 -student_intelligence(s18,m).student_intelligence121,2994 -student_intelligence(s18,m).student_intelligence121,2994 -student_intelligence(s19,h).student_intelligence122,3023 -student_intelligence(s19,h).student_intelligence122,3023 -student_intelligence(s20,m).student_intelligence123,3052 -student_intelligence(s20,m).student_intelligence123,3052 -student_intelligence(s21,h).student_intelligence124,3081 -student_intelligence(s21,h).student_intelligence124,3081 -student_intelligence(s22,h).student_intelligence125,3110 -student_intelligence(s22,h).student_intelligence125,3110 -student_intelligence(s23,h).student_intelligence126,3139 -student_intelligence(s23,h).student_intelligence126,3139 -student_intelligence(s24,m).student_intelligence127,3168 -student_intelligence(s24,m).student_intelligence127,3168 -student_intelligence(s25,h).student_intelligence128,3197 -student_intelligence(s25,h).student_intelligence128,3197 -student_intelligence(s26,m).student_intelligence129,3226 -student_intelligence(s26,m).student_intelligence129,3226 -student_intelligence(s27,m).student_intelligence130,3255 -student_intelligence(s27,m).student_intelligence130,3255 -student_intelligence(s28,m).student_intelligence131,3284 -student_intelligence(s28,m).student_intelligence131,3284 -student_intelligence(s29,m).student_intelligence132,3313 -student_intelligence(s29,m).student_intelligence132,3313 -student_intelligence(s30,h).student_intelligence133,3342 -student_intelligence(s30,h).student_intelligence133,3342 -student_intelligence(s31,m).student_intelligence134,3371 -student_intelligence(s31,m).student_intelligence134,3371 -student_intelligence(s32,m).student_intelligence135,3400 -student_intelligence(s32,m).student_intelligence135,3400 -student_intelligence(s33,h).student_intelligence136,3429 -student_intelligence(s33,h).student_intelligence136,3429 -student_intelligence(s34,l).student_intelligence137,3458 -student_intelligence(s34,l).student_intelligence137,3458 -student_intelligence(s35,m).student_intelligence138,3487 -student_intelligence(s35,m).student_intelligence138,3487 -student_intelligence(s36,l).student_intelligence139,3516 -student_intelligence(s36,l).student_intelligence139,3516 -student_intelligence(s37,m).student_intelligence140,3545 -student_intelligence(s37,m).student_intelligence140,3545 -student_intelligence(s38,h).student_intelligence141,3574 -student_intelligence(s38,h).student_intelligence141,3574 -student_intelligence(s39,h).student_intelligence142,3603 -student_intelligence(s39,h).student_intelligence142,3603 -student_intelligence(s40,h).student_intelligence143,3632 -student_intelligence(s40,h).student_intelligence143,3632 -student_intelligence(s41,m).student_intelligence144,3661 -student_intelligence(s41,m).student_intelligence144,3661 -student_intelligence(s42,m).student_intelligence145,3690 -student_intelligence(s42,m).student_intelligence145,3690 -student_intelligence(s43,h).student_intelligence146,3719 -student_intelligence(s43,h).student_intelligence146,3719 -student_intelligence(s44,h).student_intelligence147,3748 -student_intelligence(s44,h).student_intelligence147,3748 -student_intelligence(s45,h).student_intelligence148,3777 -student_intelligence(s45,h).student_intelligence148,3777 -student_intelligence(s46,l).student_intelligence149,3806 -student_intelligence(s46,l).student_intelligence149,3806 -student_intelligence(s47,h).student_intelligence150,3835 -student_intelligence(s47,h).student_intelligence150,3835 -student_intelligence(s48,m).student_intelligence151,3864 -student_intelligence(s48,m).student_intelligence151,3864 -student_intelligence(s49,m).student_intelligence152,3893 -student_intelligence(s49,m).student_intelligence152,3893 -student_intelligence(s50,h).student_intelligence153,3922 -student_intelligence(s50,h).student_intelligence153,3922 -student_intelligence(s51,m).student_intelligence154,3951 -student_intelligence(s51,m).student_intelligence154,3951 -student_intelligence(s52,m).student_intelligence155,3980 -student_intelligence(s52,m).student_intelligence155,3980 -student_intelligence(s53,m).student_intelligence156,4009 -student_intelligence(s53,m).student_intelligence156,4009 -student_intelligence(s54,h).student_intelligence157,4038 -student_intelligence(s54,h).student_intelligence157,4038 -student_intelligence(s55,h).student_intelligence158,4067 -student_intelligence(s55,h).student_intelligence158,4067 -student_intelligence(s56,l).student_intelligence159,4096 -student_intelligence(s56,l).student_intelligence159,4096 -student_intelligence(s57,m).student_intelligence160,4125 -student_intelligence(s57,m).student_intelligence160,4125 -student_intelligence(s58,h).student_intelligence161,4154 -student_intelligence(s58,h).student_intelligence161,4154 -student_intelligence(s59,m).student_intelligence162,4183 -student_intelligence(s59,m).student_intelligence162,4183 -student_intelligence(s60,m).student_intelligence163,4212 -student_intelligence(s60,m).student_intelligence163,4212 -student_intelligence(s61,h).student_intelligence164,4241 -student_intelligence(s61,h).student_intelligence164,4241 -student_intelligence(s62,m).student_intelligence165,4270 -student_intelligence(s62,m).student_intelligence165,4270 -student_intelligence(s63,h).student_intelligence166,4299 -student_intelligence(s63,h).student_intelligence166,4299 -student_intelligence(s64,l).student_intelligence167,4328 -student_intelligence(s64,l).student_intelligence167,4328 -student_intelligence(s65,m).student_intelligence168,4357 -student_intelligence(s65,m).student_intelligence168,4357 -student_intelligence(s66,h).student_intelligence169,4386 -student_intelligence(s66,h).student_intelligence169,4386 -student_intelligence(s67,m).student_intelligence170,4415 -student_intelligence(s67,m).student_intelligence170,4415 -student_intelligence(s68,h).student_intelligence171,4444 -student_intelligence(s68,h).student_intelligence171,4444 -student_intelligence(s69,h).student_intelligence172,4473 -student_intelligence(s69,h).student_intelligence172,4473 -student_intelligence(s70,l).student_intelligence173,4502 -student_intelligence(s70,l).student_intelligence173,4502 -student_intelligence(s71,m).student_intelligence174,4531 -student_intelligence(s71,m).student_intelligence174,4531 -student_intelligence(s72,h).student_intelligence175,4560 -student_intelligence(s72,h).student_intelligence175,4560 -student_intelligence(s73,m).student_intelligence176,4589 -student_intelligence(s73,m).student_intelligence176,4589 -student_intelligence(s74,h).student_intelligence177,4618 -student_intelligence(s74,h).student_intelligence177,4618 -student_intelligence(s75,h).student_intelligence178,4647 -student_intelligence(s75,h).student_intelligence178,4647 -student_intelligence(s76,h).student_intelligence179,4676 -student_intelligence(s76,h).student_intelligence179,4676 -student_intelligence(s77,h).student_intelligence180,4705 -student_intelligence(s77,h).student_intelligence180,4705 -student_intelligence(s78,h).student_intelligence181,4734 -student_intelligence(s78,h).student_intelligence181,4734 -student_intelligence(s79,m).student_intelligence182,4763 -student_intelligence(s79,m).student_intelligence182,4763 -student_intelligence(s80,m).student_intelligence183,4792 -student_intelligence(s80,m).student_intelligence183,4792 -student_intelligence(s81,l).student_intelligence184,4821 -student_intelligence(s81,l).student_intelligence184,4821 -student_intelligence(s82,h).student_intelligence185,4850 -student_intelligence(s82,h).student_intelligence185,4850 -student_intelligence(s83,h).student_intelligence186,4879 -student_intelligence(s83,h).student_intelligence186,4879 -student_intelligence(s84,m).student_intelligence187,4908 -student_intelligence(s84,m).student_intelligence187,4908 -student_intelligence(s85,h).student_intelligence188,4937 -student_intelligence(s85,h).student_intelligence188,4937 -student_intelligence(s86,m).student_intelligence189,4966 -student_intelligence(s86,m).student_intelligence189,4966 -student_intelligence(s87,h).student_intelligence190,4995 -student_intelligence(s87,h).student_intelligence190,4995 -student_intelligence(s88,h).student_intelligence191,5024 -student_intelligence(s88,h).student_intelligence191,5024 -student_intelligence(s89,m).student_intelligence192,5053 -student_intelligence(s89,m).student_intelligence192,5053 -student_intelligence(s90,h).student_intelligence193,5082 -student_intelligence(s90,h).student_intelligence193,5082 -student_intelligence(s91,m).student_intelligence194,5111 -student_intelligence(s91,m).student_intelligence194,5111 -student_intelligence(s92,h).student_intelligence195,5140 -student_intelligence(s92,h).student_intelligence195,5140 -student_intelligence(s93,l).student_intelligence196,5169 -student_intelligence(s93,l).student_intelligence196,5169 -student_intelligence(s94,l).student_intelligence197,5198 -student_intelligence(s94,l).student_intelligence197,5198 -student_intelligence(s95,h).student_intelligence198,5227 -student_intelligence(s95,h).student_intelligence198,5227 -student_intelligence(s96,m).student_intelligence199,5256 -student_intelligence(s96,m).student_intelligence199,5256 -student_intelligence(s97,h).student_intelligence200,5285 -student_intelligence(s97,h).student_intelligence200,5285 -student_intelligence(s98,h).student_intelligence201,5314 -student_intelligence(s98,h).student_intelligence201,5314 -student_intelligence(s99,l).student_intelligence202,5343 -student_intelligence(s99,l).student_intelligence202,5343 -student_intelligence(s100,h).student_intelligence203,5372 -student_intelligence(s100,h).student_intelligence203,5372 -student_intelligence(s101,h).student_intelligence204,5402 -student_intelligence(s101,h).student_intelligence204,5402 -student_intelligence(s102,m).student_intelligence205,5432 -student_intelligence(s102,m).student_intelligence205,5432 -student_intelligence(s103,h).student_intelligence206,5462 -student_intelligence(s103,h).student_intelligence206,5462 -student_intelligence(s104,l).student_intelligence207,5492 -student_intelligence(s104,l).student_intelligence207,5492 -student_intelligence(s105,m).student_intelligence208,5522 -student_intelligence(s105,m).student_intelligence208,5522 -student_intelligence(s106,h).student_intelligence209,5552 -student_intelligence(s106,h).student_intelligence209,5552 -student_intelligence(s107,l).student_intelligence210,5582 -student_intelligence(s107,l).student_intelligence210,5582 -student_intelligence(s108,m).student_intelligence211,5612 -student_intelligence(s108,m).student_intelligence211,5612 -student_intelligence(s109,m).student_intelligence212,5642 -student_intelligence(s109,m).student_intelligence212,5642 -student_intelligence(s110,m).student_intelligence213,5672 -student_intelligence(s110,m).student_intelligence213,5672 -student_intelligence(s111,h).student_intelligence214,5702 -student_intelligence(s111,h).student_intelligence214,5702 -student_intelligence(s112,m).student_intelligence215,5732 -student_intelligence(s112,m).student_intelligence215,5732 -student_intelligence(s113,h).student_intelligence216,5762 -student_intelligence(s113,h).student_intelligence216,5762 -student_intelligence(s114,m).student_intelligence217,5792 -student_intelligence(s114,m).student_intelligence217,5792 -student_intelligence(s115,h).student_intelligence218,5822 -student_intelligence(s115,h).student_intelligence218,5822 -student_intelligence(s116,m).student_intelligence219,5852 -student_intelligence(s116,m).student_intelligence219,5852 -student_intelligence(s117,m).student_intelligence220,5882 -student_intelligence(s117,m).student_intelligence220,5882 -student_intelligence(s118,m).student_intelligence221,5912 -student_intelligence(s118,m).student_intelligence221,5912 -student_intelligence(s119,h).student_intelligence222,5942 -student_intelligence(s119,h).student_intelligence222,5942 -student_intelligence(s120,h).student_intelligence223,5972 -student_intelligence(s120,h).student_intelligence223,5972 -student_intelligence(s121,h).student_intelligence224,6002 -student_intelligence(s121,h).student_intelligence224,6002 -student_intelligence(s122,m).student_intelligence225,6032 -student_intelligence(s122,m).student_intelligence225,6032 -student_intelligence(s123,m).student_intelligence226,6062 -student_intelligence(s123,m).student_intelligence226,6062 -student_intelligence(s124,h).student_intelligence227,6092 -student_intelligence(s124,h).student_intelligence227,6092 -student_intelligence(s125,m).student_intelligence228,6122 -student_intelligence(s125,m).student_intelligence228,6122 -student_intelligence(s126,m).student_intelligence229,6152 -student_intelligence(s126,m).student_intelligence229,6152 -student_intelligence(s127,m).student_intelligence230,6182 -student_intelligence(s127,m).student_intelligence230,6182 -student_intelligence(s128,m).student_intelligence231,6212 -student_intelligence(s128,m).student_intelligence231,6212 -student_intelligence(s129,h).student_intelligence232,6242 -student_intelligence(s129,h).student_intelligence232,6242 -student_intelligence(s130,m).student_intelligence233,6272 -student_intelligence(s130,m).student_intelligence233,6272 -student_intelligence(s131,h).student_intelligence234,6302 -student_intelligence(s131,h).student_intelligence234,6302 -student_intelligence(s132,h).student_intelligence235,6332 -student_intelligence(s132,h).student_intelligence235,6332 -student_intelligence(s133,h).student_intelligence236,6362 -student_intelligence(s133,h).student_intelligence236,6362 -student_intelligence(s134,h).student_intelligence237,6392 -student_intelligence(s134,h).student_intelligence237,6392 -student_intelligence(s135,h).student_intelligence238,6422 -student_intelligence(s135,h).student_intelligence238,6422 -student_intelligence(s136,m).student_intelligence239,6452 -student_intelligence(s136,m).student_intelligence239,6452 -student_intelligence(s137,m).student_intelligence240,6482 -student_intelligence(s137,m).student_intelligence240,6482 -student_intelligence(s138,l).student_intelligence241,6512 -student_intelligence(s138,l).student_intelligence241,6512 -student_intelligence(s139,h).student_intelligence242,6542 -student_intelligence(s139,h).student_intelligence242,6542 -student_intelligence(s140,h).student_intelligence243,6572 -student_intelligence(s140,h).student_intelligence243,6572 -student_intelligence(s141,m).student_intelligence244,6602 -student_intelligence(s141,m).student_intelligence244,6602 -student_intelligence(s142,m).student_intelligence245,6632 -student_intelligence(s142,m).student_intelligence245,6632 -student_intelligence(s143,h).student_intelligence246,6662 -student_intelligence(s143,h).student_intelligence246,6662 -student_intelligence(s144,h).student_intelligence247,6692 -student_intelligence(s144,h).student_intelligence247,6692 -student_intelligence(s145,h).student_intelligence248,6722 -student_intelligence(s145,h).student_intelligence248,6722 -student_intelligence(s146,m).student_intelligence249,6752 -student_intelligence(s146,m).student_intelligence249,6752 -student_intelligence(s147,m).student_intelligence250,6782 -student_intelligence(s147,m).student_intelligence250,6782 -student_intelligence(s148,m).student_intelligence251,6812 -student_intelligence(s148,m).student_intelligence251,6812 -student_intelligence(s149,h).student_intelligence252,6842 -student_intelligence(s149,h).student_intelligence252,6842 -student_intelligence(s150,l).student_intelligence253,6872 -student_intelligence(s150,l).student_intelligence253,6872 -student_intelligence(s151,h).student_intelligence254,6902 -student_intelligence(s151,h).student_intelligence254,6902 -student_intelligence(s152,h).student_intelligence255,6932 -student_intelligence(s152,h).student_intelligence255,6932 -student_intelligence(s153,m).student_intelligence256,6962 -student_intelligence(s153,m).student_intelligence256,6962 -student_intelligence(s154,m).student_intelligence257,6992 -student_intelligence(s154,m).student_intelligence257,6992 -student_intelligence(s155,h).student_intelligence258,7022 -student_intelligence(s155,h).student_intelligence258,7022 -student_intelligence(s156,m).student_intelligence259,7052 -student_intelligence(s156,m).student_intelligence259,7052 -student_intelligence(s157,m).student_intelligence260,7082 -student_intelligence(s157,m).student_intelligence260,7082 -student_intelligence(s158,h).student_intelligence261,7112 -student_intelligence(s158,h).student_intelligence261,7112 -student_intelligence(s159,h).student_intelligence262,7142 -student_intelligence(s159,h).student_intelligence262,7142 -student_intelligence(s160,m).student_intelligence263,7172 -student_intelligence(s160,m).student_intelligence263,7172 -student_intelligence(s161,m).student_intelligence264,7202 -student_intelligence(s161,m).student_intelligence264,7202 -student_intelligence(s162,h).student_intelligence265,7232 -student_intelligence(s162,h).student_intelligence265,7232 -student_intelligence(s163,m).student_intelligence266,7262 -student_intelligence(s163,m).student_intelligence266,7262 -student_intelligence(s164,m).student_intelligence267,7292 -student_intelligence(s164,m).student_intelligence267,7292 -student_intelligence(s165,m).student_intelligence268,7322 -student_intelligence(s165,m).student_intelligence268,7322 -student_intelligence(s166,m).student_intelligence269,7352 -student_intelligence(s166,m).student_intelligence269,7352 -student_intelligence(s167,h).student_intelligence270,7382 -student_intelligence(s167,h).student_intelligence270,7382 -student_intelligence(s168,h).student_intelligence271,7412 -student_intelligence(s168,h).student_intelligence271,7412 -student_intelligence(s169,m).student_intelligence272,7442 -student_intelligence(s169,m).student_intelligence272,7442 -student_intelligence(s170,m).student_intelligence273,7472 -student_intelligence(s170,m).student_intelligence273,7472 -student_intelligence(s171,m).student_intelligence274,7502 -student_intelligence(s171,m).student_intelligence274,7502 -student_intelligence(s172,h).student_intelligence275,7532 -student_intelligence(s172,h).student_intelligence275,7532 -student_intelligence(s173,h).student_intelligence276,7562 -student_intelligence(s173,h).student_intelligence276,7562 -student_intelligence(s174,h).student_intelligence277,7592 -student_intelligence(s174,h).student_intelligence277,7592 -student_intelligence(s175,m).student_intelligence278,7622 -student_intelligence(s175,m).student_intelligence278,7622 -student_intelligence(s176,m).student_intelligence279,7652 -student_intelligence(s176,m).student_intelligence279,7652 -student_intelligence(s177,m).student_intelligence280,7682 -student_intelligence(s177,m).student_intelligence280,7682 -student_intelligence(s178,h).student_intelligence281,7712 -student_intelligence(s178,h).student_intelligence281,7712 -student_intelligence(s179,m).student_intelligence282,7742 -student_intelligence(s179,m).student_intelligence282,7742 -student_intelligence(s180,m).student_intelligence283,7772 -student_intelligence(s180,m).student_intelligence283,7772 -student_intelligence(s181,h).student_intelligence284,7802 -student_intelligence(s181,h).student_intelligence284,7802 -student_intelligence(s182,m).student_intelligence285,7832 -student_intelligence(s182,m).student_intelligence285,7832 -student_intelligence(s183,h).student_intelligence286,7862 -student_intelligence(s183,h).student_intelligence286,7862 -student_intelligence(s184,h).student_intelligence287,7892 -student_intelligence(s184,h).student_intelligence287,7892 -student_intelligence(s185,m).student_intelligence288,7922 -student_intelligence(s185,m).student_intelligence288,7922 -student_intelligence(s186,m).student_intelligence289,7952 -student_intelligence(s186,m).student_intelligence289,7952 -student_intelligence(s187,m).student_intelligence290,7982 -student_intelligence(s187,m).student_intelligence290,7982 -student_intelligence(s188,h).student_intelligence291,8012 -student_intelligence(s188,h).student_intelligence291,8012 -student_intelligence(s189,m).student_intelligence292,8042 -student_intelligence(s189,m).student_intelligence292,8042 -student_intelligence(s190,h).student_intelligence293,8072 -student_intelligence(s190,h).student_intelligence293,8072 -student_intelligence(s191,l).student_intelligence294,8102 -student_intelligence(s191,l).student_intelligence294,8102 -student_intelligence(s192,h).student_intelligence295,8132 -student_intelligence(s192,h).student_intelligence295,8132 -student_intelligence(s193,m).student_intelligence296,8162 -student_intelligence(s193,m).student_intelligence296,8162 -student_intelligence(s194,m).student_intelligence297,8192 -student_intelligence(s194,m).student_intelligence297,8192 -student_intelligence(s195,m).student_intelligence298,8222 -student_intelligence(s195,m).student_intelligence298,8222 -student_intelligence(s196,h).student_intelligence299,8252 -student_intelligence(s196,h).student_intelligence299,8252 -student_intelligence(s197,h).student_intelligence300,8282 -student_intelligence(s197,h).student_intelligence300,8282 -student_intelligence(s198,h).student_intelligence301,8312 -student_intelligence(s198,h).student_intelligence301,8312 -student_intelligence(s199,m).student_intelligence302,8342 -student_intelligence(s199,m).student_intelligence302,8342 -student_intelligence(s200,h).student_intelligence303,8372 -student_intelligence(s200,h).student_intelligence303,8372 -student_intelligence(s201,l).student_intelligence304,8402 -student_intelligence(s201,l).student_intelligence304,8402 -student_intelligence(s202,h).student_intelligence305,8432 -student_intelligence(s202,h).student_intelligence305,8432 -student_intelligence(s203,m).student_intelligence306,8462 -student_intelligence(s203,m).student_intelligence306,8462 -student_intelligence(s204,h).student_intelligence307,8492 -student_intelligence(s204,h).student_intelligence307,8492 -student_intelligence(s205,h).student_intelligence308,8522 -student_intelligence(s205,h).student_intelligence308,8522 -student_intelligence(s206,h).student_intelligence309,8552 -student_intelligence(s206,h).student_intelligence309,8552 -student_intelligence(s207,h).student_intelligence310,8582 -student_intelligence(s207,h).student_intelligence310,8582 -student_intelligence(s208,m).student_intelligence311,8612 -student_intelligence(s208,m).student_intelligence311,8612 -student_intelligence(s209,h).student_intelligence312,8642 -student_intelligence(s209,h).student_intelligence312,8642 -student_intelligence(s210,m).student_intelligence313,8672 -student_intelligence(s210,m).student_intelligence313,8672 -student_intelligence(s211,m).student_intelligence314,8702 -student_intelligence(s211,m).student_intelligence314,8702 -student_intelligence(s212,m).student_intelligence315,8732 -student_intelligence(s212,m).student_intelligence315,8732 -student_intelligence(s213,h).student_intelligence316,8762 -student_intelligence(s213,h).student_intelligence316,8762 -student_intelligence(s214,h).student_intelligence317,8792 -student_intelligence(s214,h).student_intelligence317,8792 -student_intelligence(s215,m).student_intelligence318,8822 -student_intelligence(s215,m).student_intelligence318,8822 -student_intelligence(s216,h).student_intelligence319,8852 -student_intelligence(s216,h).student_intelligence319,8852 -student_intelligence(s217,m).student_intelligence320,8882 -student_intelligence(s217,m).student_intelligence320,8882 -student_intelligence(s218,h).student_intelligence321,8912 -student_intelligence(s218,h).student_intelligence321,8912 -student_intelligence(s219,h).student_intelligence322,8942 -student_intelligence(s219,h).student_intelligence322,8942 -student_intelligence(s220,h).student_intelligence323,8972 -student_intelligence(s220,h).student_intelligence323,8972 -student_intelligence(s221,h).student_intelligence324,9002 -student_intelligence(s221,h).student_intelligence324,9002 -student_intelligence(s222,h).student_intelligence325,9032 -student_intelligence(s222,h).student_intelligence325,9032 -student_intelligence(s223,m).student_intelligence326,9062 -student_intelligence(s223,m).student_intelligence326,9062 -student_intelligence(s224,l).student_intelligence327,9092 -student_intelligence(s224,l).student_intelligence327,9092 -student_intelligence(s225,l).student_intelligence328,9122 -student_intelligence(s225,l).student_intelligence328,9122 -student_intelligence(s226,m).student_intelligence329,9152 -student_intelligence(s226,m).student_intelligence329,9152 -student_intelligence(s227,h).student_intelligence330,9182 -student_intelligence(s227,h).student_intelligence330,9182 -student_intelligence(s228,h).student_intelligence331,9212 -student_intelligence(s228,h).student_intelligence331,9212 -student_intelligence(s229,m).student_intelligence332,9242 -student_intelligence(s229,m).student_intelligence332,9242 -student_intelligence(s230,m).student_intelligence333,9272 -student_intelligence(s230,m).student_intelligence333,9272 -student_intelligence(s231,h).student_intelligence334,9302 -student_intelligence(s231,h).student_intelligence334,9302 -student_intelligence(s232,m).student_intelligence335,9332 -student_intelligence(s232,m).student_intelligence335,9332 -student_intelligence(s233,h).student_intelligence336,9362 -student_intelligence(s233,h).student_intelligence336,9362 -student_intelligence(s234,l).student_intelligence337,9392 -student_intelligence(s234,l).student_intelligence337,9392 -student_intelligence(s235,h).student_intelligence338,9422 -student_intelligence(s235,h).student_intelligence338,9422 -student_intelligence(s236,h).student_intelligence339,9452 -student_intelligence(s236,h).student_intelligence339,9452 -student_intelligence(s237,h).student_intelligence340,9482 -student_intelligence(s237,h).student_intelligence340,9482 -student_intelligence(s238,h).student_intelligence341,9512 -student_intelligence(s238,h).student_intelligence341,9512 -student_intelligence(s239,h).student_intelligence342,9542 -student_intelligence(s239,h).student_intelligence342,9542 -student_intelligence(s240,h).student_intelligence343,9572 -student_intelligence(s240,h).student_intelligence343,9572 -student_intelligence(s241,m).student_intelligence344,9602 -student_intelligence(s241,m).student_intelligence344,9602 -student_intelligence(s242,l).student_intelligence345,9632 -student_intelligence(s242,l).student_intelligence345,9632 -student_intelligence(s243,h).student_intelligence346,9662 -student_intelligence(s243,h).student_intelligence346,9662 -student_intelligence(s244,h).student_intelligence347,9692 -student_intelligence(s244,h).student_intelligence347,9692 -student_intelligence(s245,l).student_intelligence348,9722 -student_intelligence(s245,l).student_intelligence348,9722 -student_intelligence(s246,m).student_intelligence349,9752 -student_intelligence(s246,m).student_intelligence349,9752 -student_intelligence(s247,h).student_intelligence350,9782 -student_intelligence(s247,h).student_intelligence350,9782 -student_intelligence(s248,m).student_intelligence351,9812 -student_intelligence(s248,m).student_intelligence351,9812 -student_intelligence(s249,h).student_intelligence352,9842 -student_intelligence(s249,h).student_intelligence352,9842 -student_intelligence(s250,m).student_intelligence353,9872 -student_intelligence(s250,m).student_intelligence353,9872 -student_intelligence(s251,h).student_intelligence354,9902 -student_intelligence(s251,h).student_intelligence354,9902 -student_intelligence(s252,m).student_intelligence355,9932 -student_intelligence(s252,m).student_intelligence355,9932 -student_intelligence(s253,m).student_intelligence356,9962 -student_intelligence(s253,m).student_intelligence356,9962 -student_intelligence(s254,m).student_intelligence357,9992 -student_intelligence(s254,m).student_intelligence357,9992 -student_intelligence(s255,m).student_intelligence358,10022 -student_intelligence(s255,m).student_intelligence358,10022 -professor_popularity(p0,h).professor_popularity361,10054 -professor_popularity(p0,h).professor_popularity361,10054 -professor_popularity(p1,h).professor_popularity362,10082 -professor_popularity(p1,h).professor_popularity362,10082 -professor_popularity(p2,l).professor_popularity363,10110 -professor_popularity(p2,l).professor_popularity363,10110 -professor_popularity(p3,h).professor_popularity364,10138 -professor_popularity(p3,h).professor_popularity364,10138 -professor_popularity(p4,h).professor_popularity365,10166 -professor_popularity(p4,h).professor_popularity365,10166 -professor_popularity(p5,h).professor_popularity366,10194 -professor_popularity(p5,h).professor_popularity366,10194 -professor_popularity(p6,l).professor_popularity367,10222 -professor_popularity(p6,l).professor_popularity367,10222 -professor_popularity(p7,l).professor_popularity368,10250 -professor_popularity(p7,l).professor_popularity368,10250 -professor_popularity(p8,m).professor_popularity369,10278 -professor_popularity(p8,m).professor_popularity369,10278 -professor_popularity(p9,h).professor_popularity370,10306 -professor_popularity(p9,h).professor_popularity370,10306 -professor_popularity(p10,l).professor_popularity371,10334 -professor_popularity(p10,l).professor_popularity371,10334 -professor_popularity(p11,h).professor_popularity372,10363 -professor_popularity(p11,h).professor_popularity372,10363 -professor_popularity(p12,h).professor_popularity373,10392 -professor_popularity(p12,h).professor_popularity373,10392 -professor_popularity(p13,l).professor_popularity374,10421 -professor_popularity(p13,l).professor_popularity374,10421 -professor_popularity(p14,m).professor_popularity375,10450 -professor_popularity(p14,m).professor_popularity375,10450 -professor_popularity(p15,h).professor_popularity376,10479 -professor_popularity(p15,h).professor_popularity376,10479 -professor_popularity(p16,m).professor_popularity377,10508 -professor_popularity(p16,m).professor_popularity377,10508 -professor_popularity(p17,h).professor_popularity378,10537 -professor_popularity(p17,h).professor_popularity378,10537 -professor_popularity(p18,l).professor_popularity379,10566 -professor_popularity(p18,l).professor_popularity379,10566 -professor_popularity(p19,h).professor_popularity380,10595 -professor_popularity(p19,h).professor_popularity380,10595 -professor_popularity(p20,h).professor_popularity381,10624 -professor_popularity(p20,h).professor_popularity381,10624 -professor_popularity(p21,h).professor_popularity382,10653 -professor_popularity(p21,h).professor_popularity382,10653 -professor_popularity(p22,h).professor_popularity383,10682 -professor_popularity(p22,h).professor_popularity383,10682 -professor_popularity(p23,l).professor_popularity384,10711 -professor_popularity(p23,l).professor_popularity384,10711 -professor_popularity(p24,l).professor_popularity385,10740 -professor_popularity(p24,l).professor_popularity385,10740 -professor_popularity(p25,l).professor_popularity386,10769 -professor_popularity(p25,l).professor_popularity386,10769 -professor_popularity(p26,m).professor_popularity387,10798 -professor_popularity(p26,m).professor_popularity387,10798 -professor_popularity(p27,h).professor_popularity388,10827 -professor_popularity(p27,h).professor_popularity388,10827 -professor_popularity(p28,h).professor_popularity389,10856 -professor_popularity(p28,h).professor_popularity389,10856 -professor_popularity(p29,l).professor_popularity390,10885 -professor_popularity(p29,l).professor_popularity390,10885 -professor_popularity(p30,m).professor_popularity391,10914 -professor_popularity(p30,m).professor_popularity391,10914 -professor_popularity(p31,h).professor_popularity392,10943 -professor_popularity(p31,h).professor_popularity392,10943 -registration_grade(r0,a).registration_grade395,10974 -registration_grade(r0,a).registration_grade395,10974 -registration_grade(r1,c).registration_grade396,11000 -registration_grade(r1,c).registration_grade396,11000 -registration_grade(r2,c).registration_grade397,11026 -registration_grade(r2,c).registration_grade397,11026 -registration_grade(r3,c).registration_grade398,11052 -registration_grade(r3,c).registration_grade398,11052 -registration_grade(r4,c).registration_grade399,11078 -registration_grade(r4,c).registration_grade399,11078 -registration_grade(r5,c).registration_grade400,11104 -registration_grade(r5,c).registration_grade400,11104 -registration_grade(r6,a).registration_grade401,11130 -registration_grade(r6,a).registration_grade401,11130 -registration_grade(r7,a).registration_grade402,11156 -registration_grade(r7,a).registration_grade402,11156 -registration_grade(r8,b).registration_grade403,11182 -registration_grade(r8,b).registration_grade403,11182 -registration_grade(r9,a).registration_grade404,11208 -registration_grade(r9,a).registration_grade404,11208 -registration_grade(r10,a).registration_grade405,11234 -registration_grade(r10,a).registration_grade405,11234 -registration_grade(r11,a).registration_grade406,11261 -registration_grade(r11,a).registration_grade406,11261 -registration_grade(r12,a).registration_grade407,11288 -registration_grade(r12,a).registration_grade407,11288 -registration_grade(r13,a).registration_grade408,11315 -registration_grade(r13,a).registration_grade408,11315 -registration_grade(r14,b).registration_grade409,11342 -registration_grade(r14,b).registration_grade409,11342 -registration_grade(r15,b).registration_grade410,11369 -registration_grade(r15,b).registration_grade410,11369 -registration_grade(r16,a).registration_grade411,11396 -registration_grade(r16,a).registration_grade411,11396 -registration_grade(r17,b).registration_grade412,11423 -registration_grade(r17,b).registration_grade412,11423 -registration_grade(r18,c).registration_grade413,11450 -registration_grade(r18,c).registration_grade413,11450 -registration_grade(r19,c).registration_grade414,11477 -registration_grade(r19,c).registration_grade414,11477 -registration_grade(r20,c).registration_grade415,11504 -registration_grade(r20,c).registration_grade415,11504 -registration_grade(r21,a).registration_grade416,11531 -registration_grade(r21,a).registration_grade416,11531 -registration_grade(r22,a).registration_grade417,11558 -registration_grade(r22,a).registration_grade417,11558 -registration_grade(r23,b).registration_grade418,11585 -registration_grade(r23,b).registration_grade418,11585 -registration_grade(r24,b).registration_grade419,11612 -registration_grade(r24,b).registration_grade419,11612 -registration_grade(r25,a).registration_grade420,11639 -registration_grade(r25,a).registration_grade420,11639 -registration_grade(r26,a).registration_grade421,11666 -registration_grade(r26,a).registration_grade421,11666 -registration_grade(r27,b).registration_grade422,11693 -registration_grade(r27,b).registration_grade422,11693 -registration_grade(r28,c).registration_grade423,11720 -registration_grade(r28,c).registration_grade423,11720 -registration_grade(r29,b).registration_grade424,11747 -registration_grade(r29,b).registration_grade424,11747 -registration_grade(r30,c).registration_grade425,11774 -registration_grade(r30,c).registration_grade425,11774 -registration_grade(r31,b).registration_grade426,11801 -registration_grade(r31,b).registration_grade426,11801 -registration_grade(r32,c).registration_grade427,11828 -registration_grade(r32,c).registration_grade427,11828 -registration_grade(r33,a).registration_grade428,11855 -registration_grade(r33,a).registration_grade428,11855 -registration_grade(r34,c).registration_grade429,11882 -registration_grade(r34,c).registration_grade429,11882 -registration_grade(r35,c).registration_grade430,11909 -registration_grade(r35,c).registration_grade430,11909 -registration_grade(r36,a).registration_grade431,11936 -registration_grade(r36,a).registration_grade431,11936 -registration_grade(r37,a).registration_grade432,11963 -registration_grade(r37,a).registration_grade432,11963 -registration_grade(r38,c).registration_grade433,11990 -registration_grade(r38,c).registration_grade433,11990 -registration_grade(r39,a).registration_grade434,12017 -registration_grade(r39,a).registration_grade434,12017 -registration_grade(r40,a).registration_grade435,12044 -registration_grade(r40,a).registration_grade435,12044 -registration_grade(r41,c).registration_grade436,12071 -registration_grade(r41,c).registration_grade436,12071 -registration_grade(r42,b).registration_grade437,12098 -registration_grade(r42,b).registration_grade437,12098 -registration_grade(r43,a).registration_grade438,12125 -registration_grade(r43,a).registration_grade438,12125 -registration_grade(r44,a).registration_grade439,12152 -registration_grade(r44,a).registration_grade439,12152 -registration_grade(r45,a).registration_grade440,12179 -registration_grade(r45,a).registration_grade440,12179 -registration_grade(r46,a).registration_grade441,12206 -registration_grade(r46,a).registration_grade441,12206 -registration_grade(r47,b).registration_grade442,12233 -registration_grade(r47,b).registration_grade442,12233 -registration_grade(r48,b).registration_grade443,12260 -registration_grade(r48,b).registration_grade443,12260 -registration_grade(r49,b).registration_grade444,12287 -registration_grade(r49,b).registration_grade444,12287 -registration_grade(r50,b).registration_grade445,12314 -registration_grade(r50,b).registration_grade445,12314 -registration_grade(r51,b).registration_grade446,12341 -registration_grade(r51,b).registration_grade446,12341 -registration_grade(r52,b).registration_grade447,12368 -registration_grade(r52,b).registration_grade447,12368 -registration_grade(r53,a).registration_grade448,12395 -registration_grade(r53,a).registration_grade448,12395 -registration_grade(r54,b).registration_grade449,12422 -registration_grade(r54,b).registration_grade449,12422 -registration_grade(r55,a).registration_grade450,12449 -registration_grade(r55,a).registration_grade450,12449 -registration_grade(r56,c).registration_grade451,12476 -registration_grade(r56,c).registration_grade451,12476 -registration_grade(r57,c).registration_grade452,12503 -registration_grade(r57,c).registration_grade452,12503 -registration_grade(r58,a).registration_grade453,12530 -registration_grade(r58,a).registration_grade453,12530 -registration_grade(r59,c).registration_grade454,12557 -registration_grade(r59,c).registration_grade454,12557 -registration_grade(r60,a).registration_grade455,12584 -registration_grade(r60,a).registration_grade455,12584 -registration_grade(r61,a).registration_grade456,12611 -registration_grade(r61,a).registration_grade456,12611 -registration_grade(r62,a).registration_grade457,12638 -registration_grade(r62,a).registration_grade457,12638 -registration_grade(r63,b).registration_grade458,12665 -registration_grade(r63,b).registration_grade458,12665 -registration_grade(r64,b).registration_grade459,12692 -registration_grade(r64,b).registration_grade459,12692 -registration_grade(r65,b).registration_grade460,12719 -registration_grade(r65,b).registration_grade460,12719 -registration_grade(r66,b).registration_grade461,12746 -registration_grade(r66,b).registration_grade461,12746 -registration_grade(r67,b).registration_grade462,12773 -registration_grade(r67,b).registration_grade462,12773 -registration_grade(r68,a).registration_grade463,12800 -registration_grade(r68,a).registration_grade463,12800 -registration_grade(r69,b).registration_grade464,12827 -registration_grade(r69,b).registration_grade464,12827 -registration_grade(r70,c).registration_grade465,12854 -registration_grade(r70,c).registration_grade465,12854 -registration_grade(r71,b).registration_grade466,12881 -registration_grade(r71,b).registration_grade466,12881 -registration_grade(r72,a).registration_grade467,12908 -registration_grade(r72,a).registration_grade467,12908 -registration_grade(r73,b).registration_grade468,12935 -registration_grade(r73,b).registration_grade468,12935 -registration_grade(r74,a).registration_grade469,12962 -registration_grade(r74,a).registration_grade469,12962 -registration_grade(r75,b).registration_grade470,12989 -registration_grade(r75,b).registration_grade470,12989 -registration_grade(r76,c).registration_grade471,13016 -registration_grade(r76,c).registration_grade471,13016 -registration_grade(r77,a).registration_grade472,13043 -registration_grade(r77,a).registration_grade472,13043 -registration_grade(r78,b).registration_grade473,13070 -registration_grade(r78,b).registration_grade473,13070 -registration_grade(r79,a).registration_grade474,13097 -registration_grade(r79,a).registration_grade474,13097 -registration_grade(r80,b).registration_grade475,13124 -registration_grade(r80,b).registration_grade475,13124 -registration_grade(r81,b).registration_grade476,13151 -registration_grade(r81,b).registration_grade476,13151 -registration_grade(r82,a).registration_grade477,13178 -registration_grade(r82,a).registration_grade477,13178 -registration_grade(r83,a).registration_grade478,13205 -registration_grade(r83,a).registration_grade478,13205 -registration_grade(r84,c).registration_grade479,13232 -registration_grade(r84,c).registration_grade479,13232 -registration_grade(r85,b).registration_grade480,13259 -registration_grade(r85,b).registration_grade480,13259 -registration_grade(r86,b).registration_grade481,13286 -registration_grade(r86,b).registration_grade481,13286 -registration_grade(r87,b).registration_grade482,13313 -registration_grade(r87,b).registration_grade482,13313 -registration_grade(r88,c).registration_grade483,13340 -registration_grade(r88,c).registration_grade483,13340 -registration_grade(r89,c).registration_grade484,13367 -registration_grade(r89,c).registration_grade484,13367 -registration_grade(r90,c).registration_grade485,13394 -registration_grade(r90,c).registration_grade485,13394 -registration_grade(r91,a).registration_grade486,13421 -registration_grade(r91,a).registration_grade486,13421 -registration_grade(r92,d).registration_grade487,13448 -registration_grade(r92,d).registration_grade487,13448 -registration_grade(r93,b).registration_grade488,13475 -registration_grade(r93,b).registration_grade488,13475 -registration_grade(r94,c).registration_grade489,13502 -registration_grade(r94,c).registration_grade489,13502 -registration_grade(r95,b).registration_grade490,13529 -registration_grade(r95,b).registration_grade490,13529 -registration_grade(r96,a).registration_grade491,13556 -registration_grade(r96,a).registration_grade491,13556 -registration_grade(r97,a).registration_grade492,13583 -registration_grade(r97,a).registration_grade492,13583 -registration_grade(r98,b).registration_grade493,13610 -registration_grade(r98,b).registration_grade493,13610 -registration_grade(r99,b).registration_grade494,13637 -registration_grade(r99,b).registration_grade494,13637 -registration_grade(r100,a).registration_grade495,13664 -registration_grade(r100,a).registration_grade495,13664 -registration_grade(r101,a).registration_grade496,13692 -registration_grade(r101,a).registration_grade496,13692 -registration_grade(r102,a).registration_grade497,13720 -registration_grade(r102,a).registration_grade497,13720 -registration_grade(r103,b).registration_grade498,13748 -registration_grade(r103,b).registration_grade498,13748 -registration_grade(r104,b).registration_grade499,13776 -registration_grade(r104,b).registration_grade499,13776 -registration_grade(r105,c).registration_grade500,13804 -registration_grade(r105,c).registration_grade500,13804 -registration_grade(r106,b).registration_grade501,13832 -registration_grade(r106,b).registration_grade501,13832 -registration_grade(r107,b).registration_grade502,13860 -registration_grade(r107,b).registration_grade502,13860 -registration_grade(r108,b).registration_grade503,13888 -registration_grade(r108,b).registration_grade503,13888 -registration_grade(r109,b).registration_grade504,13916 -registration_grade(r109,b).registration_grade504,13916 -registration_grade(r110,a).registration_grade505,13944 -registration_grade(r110,a).registration_grade505,13944 -registration_grade(r111,a).registration_grade506,13972 -registration_grade(r111,a).registration_grade506,13972 -registration_grade(r112,a).registration_grade507,14000 -registration_grade(r112,a).registration_grade507,14000 -registration_grade(r113,c).registration_grade508,14028 -registration_grade(r113,c).registration_grade508,14028 -registration_grade(r114,c).registration_grade509,14056 -registration_grade(r114,c).registration_grade509,14056 -registration_grade(r115,d).registration_grade510,14084 -registration_grade(r115,d).registration_grade510,14084 -registration_grade(r116,b).registration_grade511,14112 -registration_grade(r116,b).registration_grade511,14112 -registration_grade(r117,c).registration_grade512,14140 -registration_grade(r117,c).registration_grade512,14140 -registration_grade(r118,a).registration_grade513,14168 -registration_grade(r118,a).registration_grade513,14168 -registration_grade(r119,b).registration_grade514,14196 -registration_grade(r119,b).registration_grade514,14196 -registration_grade(r120,b).registration_grade515,14224 -registration_grade(r120,b).registration_grade515,14224 -registration_grade(r121,c).registration_grade516,14252 -registration_grade(r121,c).registration_grade516,14252 -registration_grade(r122,b).registration_grade517,14280 -registration_grade(r122,b).registration_grade517,14280 -registration_grade(r123,a).registration_grade518,14308 -registration_grade(r123,a).registration_grade518,14308 -registration_grade(r124,a).registration_grade519,14336 -registration_grade(r124,a).registration_grade519,14336 -registration_grade(r125,b).registration_grade520,14364 -registration_grade(r125,b).registration_grade520,14364 -registration_grade(r126,b).registration_grade521,14392 -registration_grade(r126,b).registration_grade521,14392 -registration_grade(r127,b).registration_grade522,14420 -registration_grade(r127,b).registration_grade522,14420 -registration_grade(r128,a).registration_grade523,14448 -registration_grade(r128,a).registration_grade523,14448 -registration_grade(r129,c).registration_grade524,14476 -registration_grade(r129,c).registration_grade524,14476 -registration_grade(r130,a).registration_grade525,14504 -registration_grade(r130,a).registration_grade525,14504 -registration_grade(r131,a).registration_grade526,14532 -registration_grade(r131,a).registration_grade526,14532 -registration_grade(r132,b).registration_grade527,14560 -registration_grade(r132,b).registration_grade527,14560 -registration_grade(r133,a).registration_grade528,14588 -registration_grade(r133,a).registration_grade528,14588 -registration_grade(r134,a).registration_grade529,14616 -registration_grade(r134,a).registration_grade529,14616 -registration_grade(r135,b).registration_grade530,14644 -registration_grade(r135,b).registration_grade530,14644 -registration_grade(r136,a).registration_grade531,14672 -registration_grade(r136,a).registration_grade531,14672 -registration_grade(r137,b).registration_grade532,14700 -registration_grade(r137,b).registration_grade532,14700 -registration_grade(r138,a).registration_grade533,14728 -registration_grade(r138,a).registration_grade533,14728 -registration_grade(r139,a).registration_grade534,14756 -registration_grade(r139,a).registration_grade534,14756 -registration_grade(r140,a).registration_grade535,14784 -registration_grade(r140,a).registration_grade535,14784 -registration_grade(r141,b).registration_grade536,14812 -registration_grade(r141,b).registration_grade536,14812 -registration_grade(r142,b).registration_grade537,14840 -registration_grade(r142,b).registration_grade537,14840 -registration_grade(r143,b).registration_grade538,14868 -registration_grade(r143,b).registration_grade538,14868 -registration_grade(r144,c).registration_grade539,14896 -registration_grade(r144,c).registration_grade539,14896 -registration_grade(r145,b).registration_grade540,14924 -registration_grade(r145,b).registration_grade540,14924 -registration_grade(r146,a).registration_grade541,14952 -registration_grade(r146,a).registration_grade541,14952 -registration_grade(r147,a).registration_grade542,14980 -registration_grade(r147,a).registration_grade542,14980 -registration_grade(r148,a).registration_grade543,15008 -registration_grade(r148,a).registration_grade543,15008 -registration_grade(r149,a).registration_grade544,15036 -registration_grade(r149,a).registration_grade544,15036 -registration_grade(r150,b).registration_grade545,15064 -registration_grade(r150,b).registration_grade545,15064 -registration_grade(r151,a).registration_grade546,15092 -registration_grade(r151,a).registration_grade546,15092 -registration_grade(r152,a).registration_grade547,15120 -registration_grade(r152,a).registration_grade547,15120 -registration_grade(r153,b).registration_grade548,15148 -registration_grade(r153,b).registration_grade548,15148 -registration_grade(r154,a).registration_grade549,15176 -registration_grade(r154,a).registration_grade549,15176 -registration_grade(r155,c).registration_grade550,15204 -registration_grade(r155,c).registration_grade550,15204 -registration_grade(r156,b).registration_grade551,15232 -registration_grade(r156,b).registration_grade551,15232 -registration_grade(r157,b).registration_grade552,15260 -registration_grade(r157,b).registration_grade552,15260 -registration_grade(r158,c).registration_grade553,15288 -registration_grade(r158,c).registration_grade553,15288 -registration_grade(r159,b).registration_grade554,15316 -registration_grade(r159,b).registration_grade554,15316 -registration_grade(r160,a).registration_grade555,15344 -registration_grade(r160,a).registration_grade555,15344 -registration_grade(r161,a).registration_grade556,15372 -registration_grade(r161,a).registration_grade556,15372 -registration_grade(r162,b).registration_grade557,15400 -registration_grade(r162,b).registration_grade557,15400 -registration_grade(r163,a).registration_grade558,15428 -registration_grade(r163,a).registration_grade558,15428 -registration_grade(r164,b).registration_grade559,15456 -registration_grade(r164,b).registration_grade559,15456 -registration_grade(r165,b).registration_grade560,15484 -registration_grade(r165,b).registration_grade560,15484 -registration_grade(r166,c).registration_grade561,15512 -registration_grade(r166,c).registration_grade561,15512 -registration_grade(r167,a).registration_grade562,15540 -registration_grade(r167,a).registration_grade562,15540 -registration_grade(r168,a).registration_grade563,15568 -registration_grade(r168,a).registration_grade563,15568 -registration_grade(r169,a).registration_grade564,15596 -registration_grade(r169,a).registration_grade564,15596 -registration_grade(r170,a).registration_grade565,15624 -registration_grade(r170,a).registration_grade565,15624 -registration_grade(r171,a).registration_grade566,15652 -registration_grade(r171,a).registration_grade566,15652 -registration_grade(r172,c).registration_grade567,15680 -registration_grade(r172,c).registration_grade567,15680 -registration_grade(r173,b).registration_grade568,15708 -registration_grade(r173,b).registration_grade568,15708 -registration_grade(r174,a).registration_grade569,15736 -registration_grade(r174,a).registration_grade569,15736 -registration_grade(r175,b).registration_grade570,15764 -registration_grade(r175,b).registration_grade570,15764 -registration_grade(r176,b).registration_grade571,15792 -registration_grade(r176,b).registration_grade571,15792 -registration_grade(r177,c).registration_grade572,15820 -registration_grade(r177,c).registration_grade572,15820 -registration_grade(r178,b).registration_grade573,15848 -registration_grade(r178,b).registration_grade573,15848 -registration_grade(r179,d).registration_grade574,15876 -registration_grade(r179,d).registration_grade574,15876 -registration_grade(r180,c).registration_grade575,15904 -registration_grade(r180,c).registration_grade575,15904 -registration_grade(r181,a).registration_grade576,15932 -registration_grade(r181,a).registration_grade576,15932 -registration_grade(r182,b).registration_grade577,15960 -registration_grade(r182,b).registration_grade577,15960 -registration_grade(r183,a).registration_grade578,15988 -registration_grade(r183,a).registration_grade578,15988 -registration_grade(r184,a).registration_grade579,16016 -registration_grade(r184,a).registration_grade579,16016 -registration_grade(r185,b).registration_grade580,16044 -registration_grade(r185,b).registration_grade580,16044 -registration_grade(r186,c).registration_grade581,16072 -registration_grade(r186,c).registration_grade581,16072 -registration_grade(r187,a).registration_grade582,16100 -registration_grade(r187,a).registration_grade582,16100 -registration_grade(r188,a).registration_grade583,16128 -registration_grade(r188,a).registration_grade583,16128 -registration_grade(r189,a).registration_grade584,16156 -registration_grade(r189,a).registration_grade584,16156 -registration_grade(r190,a).registration_grade585,16184 -registration_grade(r190,a).registration_grade585,16184 -registration_grade(r191,b).registration_grade586,16212 -registration_grade(r191,b).registration_grade586,16212 -registration_grade(r192,b).registration_grade587,16240 -registration_grade(r192,b).registration_grade587,16240 -registration_grade(r193,c).registration_grade588,16268 -registration_grade(r193,c).registration_grade588,16268 -registration_grade(r194,b).registration_grade589,16296 -registration_grade(r194,b).registration_grade589,16296 -registration_grade(r195,c).registration_grade590,16324 -registration_grade(r195,c).registration_grade590,16324 -registration_grade(r196,b).registration_grade591,16352 -registration_grade(r196,b).registration_grade591,16352 -registration_grade(r197,a).registration_grade592,16380 -registration_grade(r197,a).registration_grade592,16380 -registration_grade(r198,a).registration_grade593,16408 -registration_grade(r198,a).registration_grade593,16408 -registration_grade(r199,b).registration_grade594,16436 -registration_grade(r199,b).registration_grade594,16436 -registration_grade(r200,b).registration_grade595,16464 -registration_grade(r200,b).registration_grade595,16464 -registration_grade(r201,c).registration_grade596,16492 -registration_grade(r201,c).registration_grade596,16492 -registration_grade(r202,a).registration_grade597,16520 -registration_grade(r202,a).registration_grade597,16520 -registration_grade(r203,a).registration_grade598,16548 -registration_grade(r203,a).registration_grade598,16548 -registration_grade(r204,b).registration_grade599,16576 -registration_grade(r204,b).registration_grade599,16576 -registration_grade(r205,a).registration_grade600,16604 -registration_grade(r205,a).registration_grade600,16604 -registration_grade(r206,a).registration_grade601,16632 -registration_grade(r206,a).registration_grade601,16632 -registration_grade(r207,a).registration_grade602,16660 -registration_grade(r207,a).registration_grade602,16660 -registration_grade(r208,c).registration_grade603,16688 -registration_grade(r208,c).registration_grade603,16688 -registration_grade(r209,b).registration_grade604,16716 -registration_grade(r209,b).registration_grade604,16716 -registration_grade(r210,a).registration_grade605,16744 -registration_grade(r210,a).registration_grade605,16744 -registration_grade(r211,d).registration_grade606,16772 -registration_grade(r211,d).registration_grade606,16772 -registration_grade(r212,b).registration_grade607,16800 -registration_grade(r212,b).registration_grade607,16800 -registration_grade(r213,b).registration_grade608,16828 -registration_grade(r213,b).registration_grade608,16828 -registration_grade(r214,a).registration_grade609,16856 -registration_grade(r214,a).registration_grade609,16856 -registration_grade(r215,a).registration_grade610,16884 -registration_grade(r215,a).registration_grade610,16884 -registration_grade(r216,b).registration_grade611,16912 -registration_grade(r216,b).registration_grade611,16912 -registration_grade(r217,a).registration_grade612,16940 -registration_grade(r217,a).registration_grade612,16940 -registration_grade(r218,b).registration_grade613,16968 -registration_grade(r218,b).registration_grade613,16968 -registration_grade(r219,a).registration_grade614,16996 -registration_grade(r219,a).registration_grade614,16996 -registration_grade(r220,a).registration_grade615,17024 -registration_grade(r220,a).registration_grade615,17024 -registration_grade(r221,b).registration_grade616,17052 -registration_grade(r221,b).registration_grade616,17052 -registration_grade(r222,c).registration_grade617,17080 -registration_grade(r222,c).registration_grade617,17080 -registration_grade(r223,a).registration_grade618,17108 -registration_grade(r223,a).registration_grade618,17108 -registration_grade(r224,b).registration_grade619,17136 -registration_grade(r224,b).registration_grade619,17136 -registration_grade(r225,b).registration_grade620,17164 -registration_grade(r225,b).registration_grade620,17164 -registration_grade(r226,d).registration_grade621,17192 -registration_grade(r226,d).registration_grade621,17192 -registration_grade(r227,b).registration_grade622,17220 -registration_grade(r227,b).registration_grade622,17220 -registration_grade(r228,c).registration_grade623,17248 -registration_grade(r228,c).registration_grade623,17248 -registration_grade(r229,b).registration_grade624,17276 -registration_grade(r229,b).registration_grade624,17276 -registration_grade(r230,a).registration_grade625,17304 -registration_grade(r230,a).registration_grade625,17304 -registration_grade(r231,c).registration_grade626,17332 -registration_grade(r231,c).registration_grade626,17332 -registration_grade(r232,a).registration_grade627,17360 -registration_grade(r232,a).registration_grade627,17360 -registration_grade(r233,b).registration_grade628,17388 -registration_grade(r233,b).registration_grade628,17388 -registration_grade(r234,b).registration_grade629,17416 -registration_grade(r234,b).registration_grade629,17416 -registration_grade(r235,c).registration_grade630,17444 -registration_grade(r235,c).registration_grade630,17444 -registration_grade(r236,b).registration_grade631,17472 -registration_grade(r236,b).registration_grade631,17472 -registration_grade(r237,c).registration_grade632,17500 -registration_grade(r237,c).registration_grade632,17500 -registration_grade(r238,d).registration_grade633,17528 -registration_grade(r238,d).registration_grade633,17528 -registration_grade(r239,b).registration_grade634,17556 -registration_grade(r239,b).registration_grade634,17556 -registration_grade(r240,b).registration_grade635,17584 -registration_grade(r240,b).registration_grade635,17584 -registration_grade(r241,a).registration_grade636,17612 -registration_grade(r241,a).registration_grade636,17612 -registration_grade(r242,b).registration_grade637,17640 -registration_grade(r242,b).registration_grade637,17640 -registration_grade(r243,a).registration_grade638,17668 -registration_grade(r243,a).registration_grade638,17668 -registration_grade(r244,b).registration_grade639,17696 -registration_grade(r244,b).registration_grade639,17696 -registration_grade(r245,a).registration_grade640,17724 -registration_grade(r245,a).registration_grade640,17724 -registration_grade(r246,b).registration_grade641,17752 -registration_grade(r246,b).registration_grade641,17752 -registration_grade(r247,c).registration_grade642,17780 -registration_grade(r247,c).registration_grade642,17780 -registration_grade(r248,b).registration_grade643,17808 -registration_grade(r248,b).registration_grade643,17808 -registration_grade(r249,a).registration_grade644,17836 -registration_grade(r249,a).registration_grade644,17836 -registration_grade(r250,a).registration_grade645,17864 -registration_grade(r250,a).registration_grade645,17864 -registration_grade(r251,a).registration_grade646,17892 -registration_grade(r251,a).registration_grade646,17892 -registration_grade(r252,b).registration_grade647,17920 -registration_grade(r252,b).registration_grade647,17920 -registration_grade(r253,a).registration_grade648,17948 -registration_grade(r253,a).registration_grade648,17948 -registration_grade(r254,b).registration_grade649,17976 -registration_grade(r254,b).registration_grade649,17976 -registration_grade(r255,a).registration_grade650,18004 -registration_grade(r255,a).registration_grade650,18004 -registration_grade(r256,a).registration_grade651,18032 -registration_grade(r256,a).registration_grade651,18032 -registration_grade(r257,b).registration_grade652,18060 -registration_grade(r257,b).registration_grade652,18060 -registration_grade(r258,a).registration_grade653,18088 -registration_grade(r258,a).registration_grade653,18088 -registration_grade(r259,a).registration_grade654,18116 -registration_grade(r259,a).registration_grade654,18116 -registration_grade(r260,b).registration_grade655,18144 -registration_grade(r260,b).registration_grade655,18144 -registration_grade(r261,a).registration_grade656,18172 -registration_grade(r261,a).registration_grade656,18172 -registration_grade(r262,a).registration_grade657,18200 -registration_grade(r262,a).registration_grade657,18200 -registration_grade(r263,a).registration_grade658,18228 -registration_grade(r263,a).registration_grade658,18228 -registration_grade(r264,c).registration_grade659,18256 -registration_grade(r264,c).registration_grade659,18256 -registration_grade(r265,a).registration_grade660,18284 -registration_grade(r265,a).registration_grade660,18284 -registration_grade(r266,a).registration_grade661,18312 -registration_grade(r266,a).registration_grade661,18312 -registration_grade(r267,a).registration_grade662,18340 -registration_grade(r267,a).registration_grade662,18340 -registration_grade(r268,c).registration_grade663,18368 -registration_grade(r268,c).registration_grade663,18368 -registration_grade(r269,a).registration_grade664,18396 -registration_grade(r269,a).registration_grade664,18396 -registration_grade(r270,c).registration_grade665,18424 -registration_grade(r270,c).registration_grade665,18424 -registration_grade(r271,b).registration_grade666,18452 -registration_grade(r271,b).registration_grade666,18452 -registration_grade(r272,c).registration_grade667,18480 -registration_grade(r272,c).registration_grade667,18480 -registration_grade(r273,b).registration_grade668,18508 -registration_grade(r273,b).registration_grade668,18508 -registration_grade(r274,c).registration_grade669,18536 -registration_grade(r274,c).registration_grade669,18536 -registration_grade(r275,a).registration_grade670,18564 -registration_grade(r275,a).registration_grade670,18564 -registration_grade(r276,a).registration_grade671,18592 -registration_grade(r276,a).registration_grade671,18592 -registration_grade(r277,a).registration_grade672,18620 -registration_grade(r277,a).registration_grade672,18620 -registration_grade(r278,a).registration_grade673,18648 -registration_grade(r278,a).registration_grade673,18648 -registration_grade(r279,a).registration_grade674,18676 -registration_grade(r279,a).registration_grade674,18676 -registration_grade(r280,b).registration_grade675,18704 -registration_grade(r280,b).registration_grade675,18704 -registration_grade(r281,b).registration_grade676,18732 -registration_grade(r281,b).registration_grade676,18732 -registration_grade(r282,d).registration_grade677,18760 -registration_grade(r282,d).registration_grade677,18760 -registration_grade(r283,a).registration_grade678,18788 -registration_grade(r283,a).registration_grade678,18788 -registration_grade(r284,b).registration_grade679,18816 -registration_grade(r284,b).registration_grade679,18816 -registration_grade(r285,b).registration_grade680,18844 -registration_grade(r285,b).registration_grade680,18844 -registration_grade(r286,a).registration_grade681,18872 -registration_grade(r286,a).registration_grade681,18872 -registration_grade(r287,b).registration_grade682,18900 -registration_grade(r287,b).registration_grade682,18900 -registration_grade(r288,b).registration_grade683,18928 -registration_grade(r288,b).registration_grade683,18928 -registration_grade(r289,d).registration_grade684,18956 -registration_grade(r289,d).registration_grade684,18956 -registration_grade(r290,b).registration_grade685,18984 -registration_grade(r290,b).registration_grade685,18984 -registration_grade(r291,c).registration_grade686,19012 -registration_grade(r291,c).registration_grade686,19012 -registration_grade(r292,b).registration_grade687,19040 -registration_grade(r292,b).registration_grade687,19040 -registration_grade(r293,a).registration_grade688,19068 -registration_grade(r293,a).registration_grade688,19068 -registration_grade(r294,a).registration_grade689,19096 -registration_grade(r294,a).registration_grade689,19096 -registration_grade(r295,a).registration_grade690,19124 -registration_grade(r295,a).registration_grade690,19124 -registration_grade(r296,b).registration_grade691,19152 -registration_grade(r296,b).registration_grade691,19152 -registration_grade(r297,a).registration_grade692,19180 -registration_grade(r297,a).registration_grade692,19180 -registration_grade(r298,a).registration_grade693,19208 -registration_grade(r298,a).registration_grade693,19208 -registration_grade(r299,a).registration_grade694,19236 -registration_grade(r299,a).registration_grade694,19236 -registration_grade(r300,b).registration_grade695,19264 -registration_grade(r300,b).registration_grade695,19264 -registration_grade(r301,b).registration_grade696,19292 -registration_grade(r301,b).registration_grade696,19292 -registration_grade(r302,b).registration_grade697,19320 -registration_grade(r302,b).registration_grade697,19320 -registration_grade(r303,a).registration_grade698,19348 -registration_grade(r303,a).registration_grade698,19348 -registration_grade(r304,a).registration_grade699,19376 -registration_grade(r304,a).registration_grade699,19376 -registration_grade(r305,b).registration_grade700,19404 -registration_grade(r305,b).registration_grade700,19404 -registration_grade(r306,b).registration_grade701,19432 -registration_grade(r306,b).registration_grade701,19432 -registration_grade(r307,c).registration_grade702,19460 -registration_grade(r307,c).registration_grade702,19460 -registration_grade(r308,c).registration_grade703,19488 -registration_grade(r308,c).registration_grade703,19488 -registration_grade(r309,c).registration_grade704,19516 -registration_grade(r309,c).registration_grade704,19516 -registration_grade(r310,a).registration_grade705,19544 -registration_grade(r310,a).registration_grade705,19544 -registration_grade(r311,a).registration_grade706,19572 -registration_grade(r311,a).registration_grade706,19572 -registration_grade(r312,a).registration_grade707,19600 -registration_grade(r312,a).registration_grade707,19600 -registration_grade(r313,a).registration_grade708,19628 -registration_grade(r313,a).registration_grade708,19628 -registration_grade(r314,c).registration_grade709,19656 -registration_grade(r314,c).registration_grade709,19656 -registration_grade(r315,c).registration_grade710,19684 -registration_grade(r315,c).registration_grade710,19684 -registration_grade(r316,c).registration_grade711,19712 -registration_grade(r316,c).registration_grade711,19712 -registration_grade(r317,c).registration_grade712,19740 -registration_grade(r317,c).registration_grade712,19740 -registration_grade(r318,c).registration_grade713,19768 -registration_grade(r318,c).registration_grade713,19768 -registration_grade(r319,c).registration_grade714,19796 -registration_grade(r319,c).registration_grade714,19796 -registration_grade(r320,b).registration_grade715,19824 -registration_grade(r320,b).registration_grade715,19824 -registration_grade(r321,b).registration_grade716,19852 -registration_grade(r321,b).registration_grade716,19852 -registration_grade(r322,a).registration_grade717,19880 -registration_grade(r322,a).registration_grade717,19880 -registration_grade(r323,c).registration_grade718,19908 -registration_grade(r323,c).registration_grade718,19908 -registration_grade(r324,b).registration_grade719,19936 -registration_grade(r324,b).registration_grade719,19936 -registration_grade(r325,b).registration_grade720,19964 -registration_grade(r325,b).registration_grade720,19964 -registration_grade(r326,a).registration_grade721,19992 -registration_grade(r326,a).registration_grade721,19992 -registration_grade(r327,c).registration_grade722,20020 -registration_grade(r327,c).registration_grade722,20020 -registration_grade(r328,b).registration_grade723,20048 -registration_grade(r328,b).registration_grade723,20048 -registration_grade(r329,a).registration_grade724,20076 -registration_grade(r329,a).registration_grade724,20076 -registration_grade(r330,b).registration_grade725,20104 -registration_grade(r330,b).registration_grade725,20104 -registration_grade(r331,a).registration_grade726,20132 -registration_grade(r331,a).registration_grade726,20132 -registration_grade(r332,a).registration_grade727,20160 -registration_grade(r332,a).registration_grade727,20160 -registration_grade(r333,a).registration_grade728,20188 -registration_grade(r333,a).registration_grade728,20188 -registration_grade(r334,c).registration_grade729,20216 -registration_grade(r334,c).registration_grade729,20216 -registration_grade(r335,d).registration_grade730,20244 -registration_grade(r335,d).registration_grade730,20244 -registration_grade(r336,b).registration_grade731,20272 -registration_grade(r336,b).registration_grade731,20272 -registration_grade(r337,b).registration_grade732,20300 -registration_grade(r337,b).registration_grade732,20300 -registration_grade(r338,b).registration_grade733,20328 -registration_grade(r338,b).registration_grade733,20328 -registration_grade(r339,a).registration_grade734,20356 -registration_grade(r339,a).registration_grade734,20356 -registration_grade(r340,b).registration_grade735,20384 -registration_grade(r340,b).registration_grade735,20384 -registration_grade(r341,b).registration_grade736,20412 -registration_grade(r341,b).registration_grade736,20412 -registration_grade(r342,b).registration_grade737,20440 -registration_grade(r342,b).registration_grade737,20440 -registration_grade(r343,a).registration_grade738,20468 -registration_grade(r343,a).registration_grade738,20468 -registration_grade(r344,c).registration_grade739,20496 -registration_grade(r344,c).registration_grade739,20496 -registration_grade(r345,b).registration_grade740,20524 -registration_grade(r345,b).registration_grade740,20524 -registration_grade(r346,b).registration_grade741,20552 -registration_grade(r346,b).registration_grade741,20552 -registration_grade(r347,b).registration_grade742,20580 -registration_grade(r347,b).registration_grade742,20580 -registration_grade(r348,a).registration_grade743,20608 -registration_grade(r348,a).registration_grade743,20608 -registration_grade(r349,a).registration_grade744,20636 -registration_grade(r349,a).registration_grade744,20636 -registration_grade(r350,b).registration_grade745,20664 -registration_grade(r350,b).registration_grade745,20664 -registration_grade(r351,b).registration_grade746,20692 -registration_grade(r351,b).registration_grade746,20692 -registration_grade(r352,d).registration_grade747,20720 -registration_grade(r352,d).registration_grade747,20720 -registration_grade(r353,c).registration_grade748,20748 -registration_grade(r353,c).registration_grade748,20748 -registration_grade(r354,c).registration_grade749,20776 -registration_grade(r354,c).registration_grade749,20776 -registration_grade(r355,c).registration_grade750,20804 -registration_grade(r355,c).registration_grade750,20804 -registration_grade(r356,b).registration_grade751,20832 -registration_grade(r356,b).registration_grade751,20832 -registration_grade(r357,b).registration_grade752,20860 -registration_grade(r357,b).registration_grade752,20860 -registration_grade(r358,a).registration_grade753,20888 -registration_grade(r358,a).registration_grade753,20888 -registration_grade(r359,a).registration_grade754,20916 -registration_grade(r359,a).registration_grade754,20916 -registration_grade(r360,a).registration_grade755,20944 -registration_grade(r360,a).registration_grade755,20944 -registration_grade(r361,b).registration_grade756,20972 -registration_grade(r361,b).registration_grade756,20972 -registration_grade(r362,c).registration_grade757,21000 -registration_grade(r362,c).registration_grade757,21000 -registration_grade(r363,c).registration_grade758,21028 -registration_grade(r363,c).registration_grade758,21028 -registration_grade(r364,b).registration_grade759,21056 -registration_grade(r364,b).registration_grade759,21056 -registration_grade(r365,b).registration_grade760,21084 -registration_grade(r365,b).registration_grade760,21084 -registration_grade(r366,b).registration_grade761,21112 -registration_grade(r366,b).registration_grade761,21112 -registration_grade(r367,b).registration_grade762,21140 -registration_grade(r367,b).registration_grade762,21140 -registration_grade(r368,a).registration_grade763,21168 -registration_grade(r368,a).registration_grade763,21168 -registration_grade(r369,c).registration_grade764,21196 -registration_grade(r369,c).registration_grade764,21196 -registration_grade(r370,b).registration_grade765,21224 -registration_grade(r370,b).registration_grade765,21224 -registration_grade(r371,a).registration_grade766,21252 -registration_grade(r371,a).registration_grade766,21252 -registration_grade(r372,a).registration_grade767,21280 -registration_grade(r372,a).registration_grade767,21280 -registration_grade(r373,a).registration_grade768,21308 -registration_grade(r373,a).registration_grade768,21308 -registration_grade(r374,b).registration_grade769,21336 -registration_grade(r374,b).registration_grade769,21336 -registration_grade(r375,b).registration_grade770,21364 -registration_grade(r375,b).registration_grade770,21364 -registration_grade(r376,a).registration_grade771,21392 -registration_grade(r376,a).registration_grade771,21392 -registration_grade(r377,a).registration_grade772,21420 -registration_grade(r377,a).registration_grade772,21420 -registration_grade(r378,a).registration_grade773,21448 -registration_grade(r378,a).registration_grade773,21448 -registration_grade(r379,c).registration_grade774,21476 -registration_grade(r379,c).registration_grade774,21476 -registration_grade(r380,a).registration_grade775,21504 -registration_grade(r380,a).registration_grade775,21504 -registration_grade(r381,c).registration_grade776,21532 -registration_grade(r381,c).registration_grade776,21532 -registration_grade(r382,a).registration_grade777,21560 -registration_grade(r382,a).registration_grade777,21560 -registration_grade(r383,a).registration_grade778,21588 -registration_grade(r383,a).registration_grade778,21588 -registration_grade(r384,b).registration_grade779,21616 -registration_grade(r384,b).registration_grade779,21616 -registration_grade(r385,b).registration_grade780,21644 -registration_grade(r385,b).registration_grade780,21644 -registration_grade(r386,d).registration_grade781,21672 -registration_grade(r386,d).registration_grade781,21672 -registration_grade(r387,a).registration_grade782,21700 -registration_grade(r387,a).registration_grade782,21700 -registration_grade(r388,a).registration_grade783,21728 -registration_grade(r388,a).registration_grade783,21728 -registration_grade(r389,a).registration_grade784,21756 -registration_grade(r389,a).registration_grade784,21756 -registration_grade(r390,a).registration_grade785,21784 -registration_grade(r390,a).registration_grade785,21784 -registration_grade(r391,b).registration_grade786,21812 -registration_grade(r391,b).registration_grade786,21812 -registration_grade(r392,b).registration_grade787,21840 -registration_grade(r392,b).registration_grade787,21840 -registration_grade(r393,b).registration_grade788,21868 -registration_grade(r393,b).registration_grade788,21868 -registration_grade(r394,c).registration_grade789,21896 -registration_grade(r394,c).registration_grade789,21896 -registration_grade(r395,b).registration_grade790,21924 -registration_grade(r395,b).registration_grade790,21924 -registration_grade(r396,b).registration_grade791,21952 -registration_grade(r396,b).registration_grade791,21952 -registration_grade(r397,a).registration_grade792,21980 -registration_grade(r397,a).registration_grade792,21980 -registration_grade(r398,b).registration_grade793,22008 -registration_grade(r398,b).registration_grade793,22008 -registration_grade(r399,c).registration_grade794,22036 -registration_grade(r399,c).registration_grade794,22036 -registration_grade(r400,a).registration_grade795,22064 -registration_grade(r400,a).registration_grade795,22064 -registration_grade(r401,c).registration_grade796,22092 -registration_grade(r401,c).registration_grade796,22092 -registration_grade(r402,a).registration_grade797,22120 -registration_grade(r402,a).registration_grade797,22120 -registration_grade(r403,a).registration_grade798,22148 -registration_grade(r403,a).registration_grade798,22148 -registration_grade(r404,a).registration_grade799,22176 -registration_grade(r404,a).registration_grade799,22176 -registration_grade(r405,a).registration_grade800,22204 -registration_grade(r405,a).registration_grade800,22204 -registration_grade(r406,a).registration_grade801,22232 -registration_grade(r406,a).registration_grade801,22232 -registration_grade(r407,b).registration_grade802,22260 -registration_grade(r407,b).registration_grade802,22260 -registration_grade(r408,a).registration_grade803,22288 -registration_grade(r408,a).registration_grade803,22288 -registration_grade(r409,a).registration_grade804,22316 -registration_grade(r409,a).registration_grade804,22316 -registration_grade(r410,b).registration_grade805,22344 -registration_grade(r410,b).registration_grade805,22344 -registration_grade(r411,b).registration_grade806,22372 -registration_grade(r411,b).registration_grade806,22372 -registration_grade(r412,a).registration_grade807,22400 -registration_grade(r412,a).registration_grade807,22400 -registration_grade(r413,a).registration_grade808,22428 -registration_grade(r413,a).registration_grade808,22428 -registration_grade(r414,a).registration_grade809,22456 -registration_grade(r414,a).registration_grade809,22456 -registration_grade(r415,b).registration_grade810,22484 -registration_grade(r415,b).registration_grade810,22484 -registration_grade(r416,b).registration_grade811,22512 -registration_grade(r416,b).registration_grade811,22512 -registration_grade(r417,d).registration_grade812,22540 -registration_grade(r417,d).registration_grade812,22540 -registration_grade(r418,a).registration_grade813,22568 -registration_grade(r418,a).registration_grade813,22568 -registration_grade(r419,a).registration_grade814,22596 -registration_grade(r419,a).registration_grade814,22596 -registration_grade(r420,a).registration_grade815,22624 -registration_grade(r420,a).registration_grade815,22624 -registration_grade(r421,c).registration_grade816,22652 -registration_grade(r421,c).registration_grade816,22652 -registration_grade(r422,b).registration_grade817,22680 -registration_grade(r422,b).registration_grade817,22680 -registration_grade(r423,b).registration_grade818,22708 -registration_grade(r423,b).registration_grade818,22708 -registration_grade(r424,a).registration_grade819,22736 -registration_grade(r424,a).registration_grade819,22736 -registration_grade(r425,b).registration_grade820,22764 -registration_grade(r425,b).registration_grade820,22764 -registration_grade(r426,c).registration_grade821,22792 -registration_grade(r426,c).registration_grade821,22792 -registration_grade(r427,c).registration_grade822,22820 -registration_grade(r427,c).registration_grade822,22820 -registration_grade(r428,c).registration_grade823,22848 -registration_grade(r428,c).registration_grade823,22848 -registration_grade(r429,c).registration_grade824,22876 -registration_grade(r429,c).registration_grade824,22876 -registration_grade(r430,b).registration_grade825,22904 -registration_grade(r430,b).registration_grade825,22904 -registration_grade(r431,d).registration_grade826,22932 -registration_grade(r431,d).registration_grade826,22932 -registration_grade(r432,c).registration_grade827,22960 -registration_grade(r432,c).registration_grade827,22960 -registration_grade(r433,a).registration_grade828,22988 -registration_grade(r433,a).registration_grade828,22988 -registration_grade(r434,a).registration_grade829,23016 -registration_grade(r434,a).registration_grade829,23016 -registration_grade(r435,c).registration_grade830,23044 -registration_grade(r435,c).registration_grade830,23044 -registration_grade(r436,a).registration_grade831,23072 -registration_grade(r436,a).registration_grade831,23072 -registration_grade(r437,c).registration_grade832,23100 -registration_grade(r437,c).registration_grade832,23100 -registration_grade(r438,b).registration_grade833,23128 -registration_grade(r438,b).registration_grade833,23128 -registration_grade(r439,b).registration_grade834,23156 -registration_grade(r439,b).registration_grade834,23156 -registration_grade(r440,c).registration_grade835,23184 -registration_grade(r440,c).registration_grade835,23184 -registration_grade(r441,a).registration_grade836,23212 -registration_grade(r441,a).registration_grade836,23212 -registration_grade(r442,c).registration_grade837,23240 -registration_grade(r442,c).registration_grade837,23240 -registration_grade(r443,a).registration_grade838,23268 -registration_grade(r443,a).registration_grade838,23268 -registration_grade(r444,a).registration_grade839,23296 -registration_grade(r444,a).registration_grade839,23296 -registration_grade(r445,a).registration_grade840,23324 -registration_grade(r445,a).registration_grade840,23324 -registration_grade(r446,a).registration_grade841,23352 -registration_grade(r446,a).registration_grade841,23352 -registration_grade(r447,d).registration_grade842,23380 -registration_grade(r447,d).registration_grade842,23380 -registration_grade(r448,c).registration_grade843,23408 -registration_grade(r448,c).registration_grade843,23408 -registration_grade(r449,b).registration_grade844,23436 -registration_grade(r449,b).registration_grade844,23436 -registration_grade(r450,a).registration_grade845,23464 -registration_grade(r450,a).registration_grade845,23464 -registration_grade(r451,a).registration_grade846,23492 -registration_grade(r451,a).registration_grade846,23492 -registration_grade(r452,b).registration_grade847,23520 -registration_grade(r452,b).registration_grade847,23520 -registration_grade(r453,d).registration_grade848,23548 -registration_grade(r453,d).registration_grade848,23548 -registration_grade(r454,d).registration_grade849,23576 -registration_grade(r454,d).registration_grade849,23576 -registration_grade(r455,c).registration_grade850,23604 -registration_grade(r455,c).registration_grade850,23604 -registration_grade(r456,c).registration_grade851,23632 -registration_grade(r456,c).registration_grade851,23632 -registration_grade(r457,a).registration_grade852,23660 -registration_grade(r457,a).registration_grade852,23660 -registration_grade(r458,b).registration_grade853,23688 -registration_grade(r458,b).registration_grade853,23688 -registration_grade(r459,b).registration_grade854,23716 -registration_grade(r459,b).registration_grade854,23716 -registration_grade(r460,a).registration_grade855,23744 -registration_grade(r460,a).registration_grade855,23744 -registration_grade(r461,b).registration_grade856,23772 -registration_grade(r461,b).registration_grade856,23772 -registration_grade(r462,a).registration_grade857,23800 -registration_grade(r462,a).registration_grade857,23800 -registration_grade(r463,d).registration_grade858,23828 -registration_grade(r463,d).registration_grade858,23828 -registration_grade(r464,a).registration_grade859,23856 -registration_grade(r464,a).registration_grade859,23856 -registration_grade(r465,a).registration_grade860,23884 -registration_grade(r465,a).registration_grade860,23884 -registration_grade(r466,b).registration_grade861,23912 -registration_grade(r466,b).registration_grade861,23912 -registration_grade(r467,b).registration_grade862,23940 -registration_grade(r467,b).registration_grade862,23940 -registration_grade(r468,a).registration_grade863,23968 -registration_grade(r468,a).registration_grade863,23968 -registration_grade(r469,a).registration_grade864,23996 -registration_grade(r469,a).registration_grade864,23996 -registration_grade(r470,c).registration_grade865,24024 -registration_grade(r470,c).registration_grade865,24024 -registration_grade(r471,b).registration_grade866,24052 -registration_grade(r471,b).registration_grade866,24052 -registration_grade(r472,a).registration_grade867,24080 -registration_grade(r472,a).registration_grade867,24080 -registration_grade(r473,c).registration_grade868,24108 -registration_grade(r473,c).registration_grade868,24108 -registration_grade(r474,b).registration_grade869,24136 -registration_grade(r474,b).registration_grade869,24136 -registration_grade(r475,a).registration_grade870,24164 -registration_grade(r475,a).registration_grade870,24164 -registration_grade(r476,c).registration_grade871,24192 -registration_grade(r476,c).registration_grade871,24192 -registration_grade(r477,b).registration_grade872,24220 -registration_grade(r477,b).registration_grade872,24220 -registration_grade(r478,a).registration_grade873,24248 -registration_grade(r478,a).registration_grade873,24248 -registration_grade(r479,b).registration_grade874,24276 -registration_grade(r479,b).registration_grade874,24276 -registration_grade(r480,a).registration_grade875,24304 -registration_grade(r480,a).registration_grade875,24304 -registration_grade(r481,b).registration_grade876,24332 -registration_grade(r481,b).registration_grade876,24332 -registration_grade(r482,b).registration_grade877,24360 -registration_grade(r482,b).registration_grade877,24360 -registration_grade(r483,a).registration_grade878,24388 -registration_grade(r483,a).registration_grade878,24388 -registration_grade(r484,a).registration_grade879,24416 -registration_grade(r484,a).registration_grade879,24416 -registration_grade(r485,a).registration_grade880,24444 -registration_grade(r485,a).registration_grade880,24444 -registration_grade(r486,a).registration_grade881,24472 -registration_grade(r486,a).registration_grade881,24472 -registration_grade(r487,a).registration_grade882,24500 -registration_grade(r487,a).registration_grade882,24500 -registration_grade(r488,a).registration_grade883,24528 -registration_grade(r488,a).registration_grade883,24528 -registration_grade(r489,b).registration_grade884,24556 -registration_grade(r489,b).registration_grade884,24556 -registration_grade(r490,c).registration_grade885,24584 -registration_grade(r490,c).registration_grade885,24584 -registration_grade(r491,c).registration_grade886,24612 -registration_grade(r491,c).registration_grade886,24612 -registration_grade(r492,b).registration_grade887,24640 -registration_grade(r492,b).registration_grade887,24640 -registration_grade(r493,a).registration_grade888,24668 -registration_grade(r493,a).registration_grade888,24668 -registration_grade(r494,b).registration_grade889,24696 -registration_grade(r494,b).registration_grade889,24696 -registration_grade(r495,b).registration_grade890,24724 -registration_grade(r495,b).registration_grade890,24724 -registration_grade(r496,a).registration_grade891,24752 -registration_grade(r496,a).registration_grade891,24752 -registration_grade(r497,c).registration_grade892,24780 -registration_grade(r497,c).registration_grade892,24780 -registration_grade(r498,b).registration_grade893,24808 -registration_grade(r498,b).registration_grade893,24808 -registration_grade(r499,c).registration_grade894,24836 -registration_grade(r499,c).registration_grade894,24836 -registration_grade(r500,b).registration_grade895,24864 -registration_grade(r500,b).registration_grade895,24864 -registration_grade(r501,a).registration_grade896,24892 -registration_grade(r501,a).registration_grade896,24892 -registration_grade(r502,a).registration_grade897,24920 -registration_grade(r502,a).registration_grade897,24920 -registration_grade(r503,c).registration_grade898,24948 -registration_grade(r503,c).registration_grade898,24948 -registration_grade(r504,b).registration_grade899,24976 -registration_grade(r504,b).registration_grade899,24976 -registration_grade(r505,c).registration_grade900,25004 -registration_grade(r505,c).registration_grade900,25004 -registration_grade(r506,c).registration_grade901,25032 -registration_grade(r506,c).registration_grade901,25032 -registration_grade(r507,a).registration_grade902,25060 -registration_grade(r507,a).registration_grade902,25060 -registration_grade(r508,c).registration_grade903,25088 -registration_grade(r508,c).registration_grade903,25088 -registration_grade(r509,b).registration_grade904,25116 -registration_grade(r509,b).registration_grade904,25116 -registration_grade(r510,a).registration_grade905,25144 -registration_grade(r510,a).registration_grade905,25144 -registration_grade(r511,c).registration_grade906,25172 -registration_grade(r511,c).registration_grade906,25172 -registration_grade(r512,b).registration_grade907,25200 -registration_grade(r512,b).registration_grade907,25200 -registration_grade(r513,b).registration_grade908,25228 -registration_grade(r513,b).registration_grade908,25228 -registration_grade(r514,c).registration_grade909,25256 -registration_grade(r514,c).registration_grade909,25256 -registration_grade(r515,c).registration_grade910,25284 -registration_grade(r515,c).registration_grade910,25284 -registration_grade(r516,a).registration_grade911,25312 -registration_grade(r516,a).registration_grade911,25312 -registration_grade(r517,b).registration_grade912,25340 -registration_grade(r517,b).registration_grade912,25340 -registration_grade(r518,a).registration_grade913,25368 -registration_grade(r518,a).registration_grade913,25368 -registration_grade(r519,a).registration_grade914,25396 -registration_grade(r519,a).registration_grade914,25396 -registration_grade(r520,b).registration_grade915,25424 -registration_grade(r520,b).registration_grade915,25424 -registration_grade(r521,a).registration_grade916,25452 -registration_grade(r521,a).registration_grade916,25452 -registration_grade(r522,b).registration_grade917,25480 -registration_grade(r522,b).registration_grade917,25480 -registration_grade(r523,a).registration_grade918,25508 -registration_grade(r523,a).registration_grade918,25508 -registration_grade(r524,b).registration_grade919,25536 -registration_grade(r524,b).registration_grade919,25536 -registration_grade(r525,c).registration_grade920,25564 -registration_grade(r525,c).registration_grade920,25564 -registration_grade(r526,c).registration_grade921,25592 -registration_grade(r526,c).registration_grade921,25592 -registration_grade(r527,c).registration_grade922,25620 -registration_grade(r527,c).registration_grade922,25620 -registration_grade(r528,a).registration_grade923,25648 -registration_grade(r528,a).registration_grade923,25648 -registration_grade(r529,b).registration_grade924,25676 -registration_grade(r529,b).registration_grade924,25676 -registration_grade(r530,a).registration_grade925,25704 -registration_grade(r530,a).registration_grade925,25704 -registration_grade(r531,b).registration_grade926,25732 -registration_grade(r531,b).registration_grade926,25732 -registration_grade(r532,a).registration_grade927,25760 -registration_grade(r532,a).registration_grade927,25760 -registration_grade(r533,a).registration_grade928,25788 -registration_grade(r533,a).registration_grade928,25788 -registration_grade(r534,b).registration_grade929,25816 -registration_grade(r534,b).registration_grade929,25816 -registration_grade(r535,c).registration_grade930,25844 -registration_grade(r535,c).registration_grade930,25844 -registration_grade(r536,a).registration_grade931,25872 -registration_grade(r536,a).registration_grade931,25872 -registration_grade(r537,a).registration_grade932,25900 -registration_grade(r537,a).registration_grade932,25900 -registration_grade(r538,a).registration_grade933,25928 -registration_grade(r538,a).registration_grade933,25928 -registration_grade(r539,b).registration_grade934,25956 -registration_grade(r539,b).registration_grade934,25956 -registration_grade(r540,b).registration_grade935,25984 -registration_grade(r540,b).registration_grade935,25984 -registration_grade(r541,c).registration_grade936,26012 -registration_grade(r541,c).registration_grade936,26012 -registration_grade(r542,a).registration_grade937,26040 -registration_grade(r542,a).registration_grade937,26040 -registration_grade(r543,a).registration_grade938,26068 -registration_grade(r543,a).registration_grade938,26068 -registration_grade(r544,b).registration_grade939,26096 -registration_grade(r544,b).registration_grade939,26096 -registration_grade(r545,a).registration_grade940,26124 -registration_grade(r545,a).registration_grade940,26124 -registration_grade(r546,b).registration_grade941,26152 -registration_grade(r546,b).registration_grade941,26152 -registration_grade(r547,c).registration_grade942,26180 -registration_grade(r547,c).registration_grade942,26180 -registration_grade(r548,c).registration_grade943,26208 -registration_grade(r548,c).registration_grade943,26208 -registration_grade(r549,b).registration_grade944,26236 -registration_grade(r549,b).registration_grade944,26236 -registration_grade(r550,a).registration_grade945,26264 -registration_grade(r550,a).registration_grade945,26264 -registration_grade(r551,a).registration_grade946,26292 -registration_grade(r551,a).registration_grade946,26292 -registration_grade(r552,c).registration_grade947,26320 -registration_grade(r552,c).registration_grade947,26320 -registration_grade(r553,b).registration_grade948,26348 -registration_grade(r553,b).registration_grade948,26348 -registration_grade(r554,b).registration_grade949,26376 -registration_grade(r554,b).registration_grade949,26376 -registration_grade(r555,b).registration_grade950,26404 -registration_grade(r555,b).registration_grade950,26404 -registration_grade(r556,a).registration_grade951,26432 -registration_grade(r556,a).registration_grade951,26432 -registration_grade(r557,a).registration_grade952,26460 -registration_grade(r557,a).registration_grade952,26460 -registration_grade(r558,a).registration_grade953,26488 -registration_grade(r558,a).registration_grade953,26488 -registration_grade(r559,b).registration_grade954,26516 -registration_grade(r559,b).registration_grade954,26516 -registration_grade(r560,b).registration_grade955,26544 -registration_grade(r560,b).registration_grade955,26544 -registration_grade(r561,a).registration_grade956,26572 -registration_grade(r561,a).registration_grade956,26572 -registration_grade(r562,a).registration_grade957,26600 -registration_grade(r562,a).registration_grade957,26600 -registration_grade(r563,a).registration_grade958,26628 -registration_grade(r563,a).registration_grade958,26628 -registration_grade(r564,b).registration_grade959,26656 -registration_grade(r564,b).registration_grade959,26656 -registration_grade(r565,d).registration_grade960,26684 -registration_grade(r565,d).registration_grade960,26684 -registration_grade(r566,c).registration_grade961,26712 -registration_grade(r566,c).registration_grade961,26712 -registration_grade(r567,a).registration_grade962,26740 -registration_grade(r567,a).registration_grade962,26740 -registration_grade(r568,a).registration_grade963,26768 -registration_grade(r568,a).registration_grade963,26768 -registration_grade(r569,a).registration_grade964,26796 -registration_grade(r569,a).registration_grade964,26796 -registration_grade(r570,c).registration_grade965,26824 -registration_grade(r570,c).registration_grade965,26824 -registration_grade(r571,c).registration_grade966,26852 -registration_grade(r571,c).registration_grade966,26852 -registration_grade(r572,b).registration_grade967,26880 -registration_grade(r572,b).registration_grade967,26880 -registration_grade(r573,a).registration_grade968,26908 -registration_grade(r573,a).registration_grade968,26908 -registration_grade(r574,c).registration_grade969,26936 -registration_grade(r574,c).registration_grade969,26936 -registration_grade(r575,a).registration_grade970,26964 -registration_grade(r575,a).registration_grade970,26964 -registration_grade(r576,a).registration_grade971,26992 -registration_grade(r576,a).registration_grade971,26992 -registration_grade(r577,a).registration_grade972,27020 -registration_grade(r577,a).registration_grade972,27020 -registration_grade(r578,b).registration_grade973,27048 -registration_grade(r578,b).registration_grade973,27048 -registration_grade(r579,a).registration_grade974,27076 -registration_grade(r579,a).registration_grade974,27076 -registration_grade(r580,b).registration_grade975,27104 -registration_grade(r580,b).registration_grade975,27104 -registration_grade(r581,a).registration_grade976,27132 -registration_grade(r581,a).registration_grade976,27132 -registration_grade(r582,a).registration_grade977,27160 -registration_grade(r582,a).registration_grade977,27160 -registration_grade(r583,a).registration_grade978,27188 -registration_grade(r583,a).registration_grade978,27188 -registration_grade(r584,a).registration_grade979,27216 -registration_grade(r584,a).registration_grade979,27216 -registration_grade(r585,c).registration_grade980,27244 -registration_grade(r585,c).registration_grade980,27244 -registration_grade(r586,b).registration_grade981,27272 -registration_grade(r586,b).registration_grade981,27272 -registration_grade(r587,c).registration_grade982,27300 -registration_grade(r587,c).registration_grade982,27300 -registration_grade(r588,c).registration_grade983,27328 -registration_grade(r588,c).registration_grade983,27328 -registration_grade(r589,c).registration_grade984,27356 -registration_grade(r589,c).registration_grade984,27356 -registration_grade(r590,b).registration_grade985,27384 -registration_grade(r590,b).registration_grade985,27384 -registration_grade(r591,c).registration_grade986,27412 -registration_grade(r591,c).registration_grade986,27412 -registration_grade(r592,b).registration_grade987,27440 -registration_grade(r592,b).registration_grade987,27440 -registration_grade(r593,b).registration_grade988,27468 -registration_grade(r593,b).registration_grade988,27468 -registration_grade(r594,c).registration_grade989,27496 -registration_grade(r594,c).registration_grade989,27496 -registration_grade(r595,b).registration_grade990,27524 -registration_grade(r595,b).registration_grade990,27524 -registration_grade(r596,a).registration_grade991,27552 -registration_grade(r596,a).registration_grade991,27552 -registration_grade(r597,a).registration_grade992,27580 -registration_grade(r597,a).registration_grade992,27580 -registration_grade(r598,a).registration_grade993,27608 -registration_grade(r598,a).registration_grade993,27608 -registration_grade(r599,a).registration_grade994,27636 -registration_grade(r599,a).registration_grade994,27636 -registration_grade(r600,a).registration_grade995,27664 -registration_grade(r600,a).registration_grade995,27664 -registration_grade(r601,b).registration_grade996,27692 -registration_grade(r601,b).registration_grade996,27692 -registration_grade(r602,a).registration_grade997,27720 -registration_grade(r602,a).registration_grade997,27720 -registration_grade(r603,d).registration_grade998,27748 -registration_grade(r603,d).registration_grade998,27748 -registration_grade(r604,c).registration_grade999,27776 -registration_grade(r604,c).registration_grade999,27776 -registration_grade(r605,a).registration_grade1000,27804 -registration_grade(r605,a).registration_grade1000,27804 -registration_grade(r606,a).registration_grade1001,27832 -registration_grade(r606,a).registration_grade1001,27832 -registration_grade(r607,b).registration_grade1002,27860 -registration_grade(r607,b).registration_grade1002,27860 -registration_grade(r608,a).registration_grade1003,27888 -registration_grade(r608,a).registration_grade1003,27888 -registration_grade(r609,b).registration_grade1004,27916 -registration_grade(r609,b).registration_grade1004,27916 -registration_grade(r610,a).registration_grade1005,27944 -registration_grade(r610,a).registration_grade1005,27944 -registration_grade(r611,a).registration_grade1006,27972 -registration_grade(r611,a).registration_grade1006,27972 -registration_grade(r612,c).registration_grade1007,28000 -registration_grade(r612,c).registration_grade1007,28000 -registration_grade(r613,a).registration_grade1008,28028 -registration_grade(r613,a).registration_grade1008,28028 -registration_grade(r614,d).registration_grade1009,28056 -registration_grade(r614,d).registration_grade1009,28056 -registration_grade(r615,b).registration_grade1010,28084 -registration_grade(r615,b).registration_grade1010,28084 -registration_grade(r616,a).registration_grade1011,28112 -registration_grade(r616,a).registration_grade1011,28112 -registration_grade(r617,a).registration_grade1012,28140 -registration_grade(r617,a).registration_grade1012,28140 -registration_grade(r618,b).registration_grade1013,28168 -registration_grade(r618,b).registration_grade1013,28168 -registration_grade(r619,a).registration_grade1014,28196 -registration_grade(r619,a).registration_grade1014,28196 -registration_grade(r620,a).registration_grade1015,28224 -registration_grade(r620,a).registration_grade1015,28224 -registration_grade(r621,a).registration_grade1016,28252 -registration_grade(r621,a).registration_grade1016,28252 -registration_grade(r622,b).registration_grade1017,28280 -registration_grade(r622,b).registration_grade1017,28280 -registration_grade(r623,b).registration_grade1018,28308 -registration_grade(r623,b).registration_grade1018,28308 -registration_grade(r624,a).registration_grade1019,28336 -registration_grade(r624,a).registration_grade1019,28336 -registration_grade(r625,c).registration_grade1020,28364 -registration_grade(r625,c).registration_grade1020,28364 -registration_grade(r626,a).registration_grade1021,28392 -registration_grade(r626,a).registration_grade1021,28392 -registration_grade(r627,b).registration_grade1022,28420 -registration_grade(r627,b).registration_grade1022,28420 -registration_grade(r628,a).registration_grade1023,28448 -registration_grade(r628,a).registration_grade1023,28448 -registration_grade(r629,b).registration_grade1024,28476 -registration_grade(r629,b).registration_grade1024,28476 -registration_grade(r630,c).registration_grade1025,28504 -registration_grade(r630,c).registration_grade1025,28504 -registration_grade(r631,a).registration_grade1026,28532 -registration_grade(r631,a).registration_grade1026,28532 -registration_grade(r632,a).registration_grade1027,28560 -registration_grade(r632,a).registration_grade1027,28560 -registration_grade(r633,b).registration_grade1028,28588 -registration_grade(r633,b).registration_grade1028,28588 -registration_grade(r634,b).registration_grade1029,28616 -registration_grade(r634,b).registration_grade1029,28616 -registration_grade(r635,b).registration_grade1030,28644 -registration_grade(r635,b).registration_grade1030,28644 -registration_grade(r636,d).registration_grade1031,28672 -registration_grade(r636,d).registration_grade1031,28672 -registration_grade(r637,c).registration_grade1032,28700 -registration_grade(r637,c).registration_grade1032,28700 -registration_grade(r638,a).registration_grade1033,28728 -registration_grade(r638,a).registration_grade1033,28728 -registration_grade(r639,b).registration_grade1034,28756 -registration_grade(r639,b).registration_grade1034,28756 -registration_grade(r640,c).registration_grade1035,28784 -registration_grade(r640,c).registration_grade1035,28784 -registration_grade(r641,c).registration_grade1036,28812 -registration_grade(r641,c).registration_grade1036,28812 -registration_grade(r642,c).registration_grade1037,28840 -registration_grade(r642,c).registration_grade1037,28840 -registration_grade(r643,a).registration_grade1038,28868 -registration_grade(r643,a).registration_grade1038,28868 -registration_grade(r644,a).registration_grade1039,28896 -registration_grade(r644,a).registration_grade1039,28896 -registration_grade(r645,b).registration_grade1040,28924 -registration_grade(r645,b).registration_grade1040,28924 -registration_grade(r646,b).registration_grade1041,28952 -registration_grade(r646,b).registration_grade1041,28952 -registration_grade(r647,b).registration_grade1042,28980 -registration_grade(r647,b).registration_grade1042,28980 -registration_grade(r648,a).registration_grade1043,29008 -registration_grade(r648,a).registration_grade1043,29008 -registration_grade(r649,b).registration_grade1044,29036 -registration_grade(r649,b).registration_grade1044,29036 -registration_grade(r650,c).registration_grade1045,29064 -registration_grade(r650,c).registration_grade1045,29064 -registration_grade(r651,b).registration_grade1046,29092 -registration_grade(r651,b).registration_grade1046,29092 -registration_grade(r652,b).registration_grade1047,29120 -registration_grade(r652,b).registration_grade1047,29120 -registration_grade(r653,b).registration_grade1048,29148 -registration_grade(r653,b).registration_grade1048,29148 -registration_grade(r654,b).registration_grade1049,29176 -registration_grade(r654,b).registration_grade1049,29176 -registration_grade(r655,a).registration_grade1050,29204 -registration_grade(r655,a).registration_grade1050,29204 -registration_grade(r656,b).registration_grade1051,29232 -registration_grade(r656,b).registration_grade1051,29232 -registration_grade(r657,a).registration_grade1052,29260 -registration_grade(r657,a).registration_grade1052,29260 -registration_grade(r658,a).registration_grade1053,29288 -registration_grade(r658,a).registration_grade1053,29288 -registration_grade(r659,a).registration_grade1054,29316 -registration_grade(r659,a).registration_grade1054,29316 -registration_grade(r660,a).registration_grade1055,29344 -registration_grade(r660,a).registration_grade1055,29344 -registration_grade(r661,c).registration_grade1056,29372 -registration_grade(r661,c).registration_grade1056,29372 -registration_grade(r662,a).registration_grade1057,29400 -registration_grade(r662,a).registration_grade1057,29400 -registration_grade(r663,a).registration_grade1058,29428 -registration_grade(r663,a).registration_grade1058,29428 -registration_grade(r664,c).registration_grade1059,29456 -registration_grade(r664,c).registration_grade1059,29456 -registration_grade(r665,a).registration_grade1060,29484 -registration_grade(r665,a).registration_grade1060,29484 -registration_grade(r666,b).registration_grade1061,29512 -registration_grade(r666,b).registration_grade1061,29512 -registration_grade(r667,b).registration_grade1062,29540 -registration_grade(r667,b).registration_grade1062,29540 -registration_grade(r668,d).registration_grade1063,29568 -registration_grade(r668,d).registration_grade1063,29568 -registration_grade(r669,b).registration_grade1064,29596 -registration_grade(r669,b).registration_grade1064,29596 -registration_grade(r670,a).registration_grade1065,29624 -registration_grade(r670,a).registration_grade1065,29624 -registration_grade(r671,c).registration_grade1066,29652 -registration_grade(r671,c).registration_grade1066,29652 -registration_grade(r672,c).registration_grade1067,29680 -registration_grade(r672,c).registration_grade1067,29680 -registration_grade(r673,a).registration_grade1068,29708 -registration_grade(r673,a).registration_grade1068,29708 -registration_grade(r674,a).registration_grade1069,29736 -registration_grade(r674,a).registration_grade1069,29736 -registration_grade(r675,b).registration_grade1070,29764 -registration_grade(r675,b).registration_grade1070,29764 -registration_grade(r676,a).registration_grade1071,29792 -registration_grade(r676,a).registration_grade1071,29792 -registration_grade(r677,a).registration_grade1072,29820 -registration_grade(r677,a).registration_grade1072,29820 -registration_grade(r678,a).registration_grade1073,29848 -registration_grade(r678,a).registration_grade1073,29848 -registration_grade(r679,a).registration_grade1074,29876 -registration_grade(r679,a).registration_grade1074,29876 -registration_grade(r680,c).registration_grade1075,29904 -registration_grade(r680,c).registration_grade1075,29904 -registration_grade(r681,b).registration_grade1076,29932 -registration_grade(r681,b).registration_grade1076,29932 -registration_grade(r682,a).registration_grade1077,29960 -registration_grade(r682,a).registration_grade1077,29960 -registration_grade(r683,b).registration_grade1078,29988 -registration_grade(r683,b).registration_grade1078,29988 -registration_grade(r684,b).registration_grade1079,30016 -registration_grade(r684,b).registration_grade1079,30016 -registration_grade(r685,a).registration_grade1080,30044 -registration_grade(r685,a).registration_grade1080,30044 -registration_grade(r686,b).registration_grade1081,30072 -registration_grade(r686,b).registration_grade1081,30072 -registration_grade(r687,a).registration_grade1082,30100 -registration_grade(r687,a).registration_grade1082,30100 -registration_grade(r688,c).registration_grade1083,30128 -registration_grade(r688,c).registration_grade1083,30128 -registration_grade(r689,b).registration_grade1084,30156 -registration_grade(r689,b).registration_grade1084,30156 -registration_grade(r690,a).registration_grade1085,30184 -registration_grade(r690,a).registration_grade1085,30184 -registration_grade(r691,c).registration_grade1086,30212 -registration_grade(r691,c).registration_grade1086,30212 -registration_grade(r692,a).registration_grade1087,30240 -registration_grade(r692,a).registration_grade1087,30240 -registration_grade(r693,b).registration_grade1088,30268 -registration_grade(r693,b).registration_grade1088,30268 -registration_grade(r694,a).registration_grade1089,30296 -registration_grade(r694,a).registration_grade1089,30296 -registration_grade(r695,a).registration_grade1090,30324 -registration_grade(r695,a).registration_grade1090,30324 -registration_grade(r696,a).registration_grade1091,30352 -registration_grade(r696,a).registration_grade1091,30352 -registration_grade(r697,c).registration_grade1092,30380 -registration_grade(r697,c).registration_grade1092,30380 -registration_grade(r698,b).registration_grade1093,30408 -registration_grade(r698,b).registration_grade1093,30408 -registration_grade(r699,a).registration_grade1094,30436 -registration_grade(r699,a).registration_grade1094,30436 -registration_grade(r700,a).registration_grade1095,30464 -registration_grade(r700,a).registration_grade1095,30464 -registration_grade(r701,a).registration_grade1096,30492 -registration_grade(r701,a).registration_grade1096,30492 -registration_grade(r702,a).registration_grade1097,30520 -registration_grade(r702,a).registration_grade1097,30520 -registration_grade(r703,c).registration_grade1098,30548 -registration_grade(r703,c).registration_grade1098,30548 -registration_grade(r704,c).registration_grade1099,30576 -registration_grade(r704,c).registration_grade1099,30576 -registration_grade(r705,b).registration_grade1100,30604 -registration_grade(r705,b).registration_grade1100,30604 -registration_grade(r706,b).registration_grade1101,30632 -registration_grade(r706,b).registration_grade1101,30632 -registration_grade(r707,a).registration_grade1102,30660 -registration_grade(r707,a).registration_grade1102,30660 -registration_grade(r708,b).registration_grade1103,30688 -registration_grade(r708,b).registration_grade1103,30688 -registration_grade(r709,b).registration_grade1104,30716 -registration_grade(r709,b).registration_grade1104,30716 -registration_grade(r710,b).registration_grade1105,30744 -registration_grade(r710,b).registration_grade1105,30744 -registration_grade(r711,b).registration_grade1106,30772 -registration_grade(r711,b).registration_grade1106,30772 -registration_grade(r712,c).registration_grade1107,30800 -registration_grade(r712,c).registration_grade1107,30800 -registration_grade(r713,a).registration_grade1108,30828 -registration_grade(r713,a).registration_grade1108,30828 -registration_grade(r714,b).registration_grade1109,30856 -registration_grade(r714,b).registration_grade1109,30856 -registration_grade(r715,a).registration_grade1110,30884 -registration_grade(r715,a).registration_grade1110,30884 -registration_grade(r716,a).registration_grade1111,30912 -registration_grade(r716,a).registration_grade1111,30912 -registration_grade(r717,a).registration_grade1112,30940 -registration_grade(r717,a).registration_grade1112,30940 -registration_grade(r718,a).registration_grade1113,30968 -registration_grade(r718,a).registration_grade1113,30968 -registration_grade(r719,c).registration_grade1114,30996 -registration_grade(r719,c).registration_grade1114,30996 -registration_grade(r720,a).registration_grade1115,31024 -registration_grade(r720,a).registration_grade1115,31024 -registration_grade(r721,b).registration_grade1116,31052 -registration_grade(r721,b).registration_grade1116,31052 -registration_grade(r722,b).registration_grade1117,31080 -registration_grade(r722,b).registration_grade1117,31080 -registration_grade(r723,b).registration_grade1118,31108 -registration_grade(r723,b).registration_grade1118,31108 -registration_grade(r724,a).registration_grade1119,31136 -registration_grade(r724,a).registration_grade1119,31136 -registration_grade(r725,c).registration_grade1120,31164 -registration_grade(r725,c).registration_grade1120,31164 -registration_grade(r726,a).registration_grade1121,31192 -registration_grade(r726,a).registration_grade1121,31192 -registration_grade(r727,a).registration_grade1122,31220 -registration_grade(r727,a).registration_grade1122,31220 -registration_grade(r728,b).registration_grade1123,31248 -registration_grade(r728,b).registration_grade1123,31248 -registration_grade(r729,b).registration_grade1124,31276 -registration_grade(r729,b).registration_grade1124,31276 -registration_grade(r730,c).registration_grade1125,31304 -registration_grade(r730,c).registration_grade1125,31304 -registration_grade(r731,a).registration_grade1126,31332 -registration_grade(r731,a).registration_grade1126,31332 -registration_grade(r732,a).registration_grade1127,31360 -registration_grade(r732,a).registration_grade1127,31360 -registration_grade(r733,a).registration_grade1128,31388 -registration_grade(r733,a).registration_grade1128,31388 -registration_grade(r734,b).registration_grade1129,31416 -registration_grade(r734,b).registration_grade1129,31416 -registration_grade(r735,b).registration_grade1130,31444 -registration_grade(r735,b).registration_grade1130,31444 -registration_grade(r736,a).registration_grade1131,31472 -registration_grade(r736,a).registration_grade1131,31472 -registration_grade(r737,b).registration_grade1132,31500 -registration_grade(r737,b).registration_grade1132,31500 -registration_grade(r738,b).registration_grade1133,31528 -registration_grade(r738,b).registration_grade1133,31528 -registration_grade(r739,a).registration_grade1134,31556 -registration_grade(r739,a).registration_grade1134,31556 -registration_grade(r740,a).registration_grade1135,31584 -registration_grade(r740,a).registration_grade1135,31584 -registration_grade(r741,a).registration_grade1136,31612 -registration_grade(r741,a).registration_grade1136,31612 -registration_grade(r742,d).registration_grade1137,31640 -registration_grade(r742,d).registration_grade1137,31640 -registration_grade(r743,d).registration_grade1138,31668 -registration_grade(r743,d).registration_grade1138,31668 -registration_grade(r744,a).registration_grade1139,31696 -registration_grade(r744,a).registration_grade1139,31696 -registration_grade(r745,b).registration_grade1140,31724 -registration_grade(r745,b).registration_grade1140,31724 -registration_grade(r746,a).registration_grade1141,31752 -registration_grade(r746,a).registration_grade1141,31752 -registration_grade(r747,a).registration_grade1142,31780 -registration_grade(r747,a).registration_grade1142,31780 -registration_grade(r748,b).registration_grade1143,31808 -registration_grade(r748,b).registration_grade1143,31808 -registration_grade(r749,c).registration_grade1144,31836 -registration_grade(r749,c).registration_grade1144,31836 -registration_grade(r750,a).registration_grade1145,31864 -registration_grade(r750,a).registration_grade1145,31864 -registration_grade(r751,c).registration_grade1146,31892 -registration_grade(r751,c).registration_grade1146,31892 -registration_grade(r752,b).registration_grade1147,31920 -registration_grade(r752,b).registration_grade1147,31920 -registration_grade(r753,c).registration_grade1148,31948 -registration_grade(r753,c).registration_grade1148,31948 -registration_grade(r754,c).registration_grade1149,31976 -registration_grade(r754,c).registration_grade1149,31976 -registration_grade(r755,c).registration_grade1150,32004 -registration_grade(r755,c).registration_grade1150,32004 -registration_grade(r756,b).registration_grade1151,32032 -registration_grade(r756,b).registration_grade1151,32032 -registration_grade(r757,c).registration_grade1152,32060 -registration_grade(r757,c).registration_grade1152,32060 -registration_grade(r758,b).registration_grade1153,32088 -registration_grade(r758,b).registration_grade1153,32088 -registration_grade(r759,b).registration_grade1154,32116 -registration_grade(r759,b).registration_grade1154,32116 -registration_grade(r760,a).registration_grade1155,32144 -registration_grade(r760,a).registration_grade1155,32144 -registration_grade(r761,a).registration_grade1156,32172 -registration_grade(r761,a).registration_grade1156,32172 -registration_grade(r762,b).registration_grade1157,32200 -registration_grade(r762,b).registration_grade1157,32200 -registration_grade(r763,a).registration_grade1158,32228 -registration_grade(r763,a).registration_grade1158,32228 -registration_grade(r764,a).registration_grade1159,32256 -registration_grade(r764,a).registration_grade1159,32256 -registration_grade(r765,a).registration_grade1160,32284 -registration_grade(r765,a).registration_grade1160,32284 -registration_grade(r766,c).registration_grade1161,32312 -registration_grade(r766,c).registration_grade1161,32312 -registration_grade(r767,c).registration_grade1162,32340 -registration_grade(r767,c).registration_grade1162,32340 -registration_grade(r768,c).registration_grade1163,32368 -registration_grade(r768,c).registration_grade1163,32368 -registration_grade(r769,c).registration_grade1164,32396 -registration_grade(r769,c).registration_grade1164,32396 -registration_grade(r770,b).registration_grade1165,32424 -registration_grade(r770,b).registration_grade1165,32424 -registration_grade(r771,b).registration_grade1166,32452 -registration_grade(r771,b).registration_grade1166,32452 -registration_grade(r772,a).registration_grade1167,32480 -registration_grade(r772,a).registration_grade1167,32480 -registration_grade(r773,b).registration_grade1168,32508 -registration_grade(r773,b).registration_grade1168,32508 -registration_grade(r774,b).registration_grade1169,32536 -registration_grade(r774,b).registration_grade1169,32536 -registration_grade(r775,a).registration_grade1170,32564 -registration_grade(r775,a).registration_grade1170,32564 -registration_grade(r776,a).registration_grade1171,32592 -registration_grade(r776,a).registration_grade1171,32592 -registration_grade(r777,c).registration_grade1172,32620 -registration_grade(r777,c).registration_grade1172,32620 -registration_grade(r778,c).registration_grade1173,32648 -registration_grade(r778,c).registration_grade1173,32648 -registration_grade(r779,b).registration_grade1174,32676 -registration_grade(r779,b).registration_grade1174,32676 -registration_grade(r780,a).registration_grade1175,32704 -registration_grade(r780,a).registration_grade1175,32704 -registration_grade(r781,b).registration_grade1176,32732 -registration_grade(r781,b).registration_grade1176,32732 -registration_grade(r782,a).registration_grade1177,32760 -registration_grade(r782,a).registration_grade1177,32760 -registration_grade(r783,c).registration_grade1178,32788 -registration_grade(r783,c).registration_grade1178,32788 -registration_grade(r784,c).registration_grade1179,32816 -registration_grade(r784,c).registration_grade1179,32816 -registration_grade(r785,c).registration_grade1180,32844 -registration_grade(r785,c).registration_grade1180,32844 -registration_grade(r786,c).registration_grade1181,32872 -registration_grade(r786,c).registration_grade1181,32872 -registration_grade(r787,a).registration_grade1182,32900 -registration_grade(r787,a).registration_grade1182,32900 -registration_grade(r788,a).registration_grade1183,32928 -registration_grade(r788,a).registration_grade1183,32928 -registration_grade(r789,c).registration_grade1184,32956 -registration_grade(r789,c).registration_grade1184,32956 -registration_grade(r790,b).registration_grade1185,32984 -registration_grade(r790,b).registration_grade1185,32984 -registration_grade(r791,b).registration_grade1186,33012 -registration_grade(r791,b).registration_grade1186,33012 -registration_grade(r792,a).registration_grade1187,33040 -registration_grade(r792,a).registration_grade1187,33040 -registration_grade(r793,a).registration_grade1188,33068 -registration_grade(r793,a).registration_grade1188,33068 -registration_grade(r794,b).registration_grade1189,33096 -registration_grade(r794,b).registration_grade1189,33096 -registration_grade(r795,a).registration_grade1190,33124 -registration_grade(r795,a).registration_grade1190,33124 -registration_grade(r796,a).registration_grade1191,33152 -registration_grade(r796,a).registration_grade1191,33152 -registration_grade(r797,a).registration_grade1192,33180 -registration_grade(r797,a).registration_grade1192,33180 -registration_grade(r798,b).registration_grade1193,33208 -registration_grade(r798,b).registration_grade1193,33208 -registration_grade(r799,c).registration_grade1194,33236 -registration_grade(r799,c).registration_grade1194,33236 -registration_grade(r800,b).registration_grade1195,33264 -registration_grade(r800,b).registration_grade1195,33264 -registration_grade(r801,b).registration_grade1196,33292 -registration_grade(r801,b).registration_grade1196,33292 -registration_grade(r802,a).registration_grade1197,33320 -registration_grade(r802,a).registration_grade1197,33320 -registration_grade(r803,b).registration_grade1198,33348 -registration_grade(r803,b).registration_grade1198,33348 -registration_grade(r804,a).registration_grade1199,33376 -registration_grade(r804,a).registration_grade1199,33376 -registration_grade(r805,b).registration_grade1200,33404 -registration_grade(r805,b).registration_grade1200,33404 -registration_grade(r806,a).registration_grade1201,33432 -registration_grade(r806,a).registration_grade1201,33432 -registration_grade(r807,a).registration_grade1202,33460 -registration_grade(r807,a).registration_grade1202,33460 -registration_grade(r808,b).registration_grade1203,33488 -registration_grade(r808,b).registration_grade1203,33488 -registration_grade(r809,c).registration_grade1204,33516 -registration_grade(r809,c).registration_grade1204,33516 -registration_grade(r810,b).registration_grade1205,33544 -registration_grade(r810,b).registration_grade1205,33544 -registration_grade(r811,d).registration_grade1206,33572 -registration_grade(r811,d).registration_grade1206,33572 -registration_grade(r812,c).registration_grade1207,33600 -registration_grade(r812,c).registration_grade1207,33600 -registration_grade(r813,c).registration_grade1208,33628 -registration_grade(r813,c).registration_grade1208,33628 -registration_grade(r814,c).registration_grade1209,33656 -registration_grade(r814,c).registration_grade1209,33656 -registration_grade(r815,c).registration_grade1210,33684 -registration_grade(r815,c).registration_grade1210,33684 -registration_grade(r816,b).registration_grade1211,33712 -registration_grade(r816,b).registration_grade1211,33712 -registration_grade(r817,a).registration_grade1212,33740 -registration_grade(r817,a).registration_grade1212,33740 -registration_grade(r818,b).registration_grade1213,33768 -registration_grade(r818,b).registration_grade1213,33768 -registration_grade(r819,b).registration_grade1214,33796 -registration_grade(r819,b).registration_grade1214,33796 -registration_grade(r820,d).registration_grade1215,33824 -registration_grade(r820,d).registration_grade1215,33824 -registration_grade(r821,b).registration_grade1216,33852 -registration_grade(r821,b).registration_grade1216,33852 -registration_grade(r822,a).registration_grade1217,33880 -registration_grade(r822,a).registration_grade1217,33880 -registration_grade(r823,a).registration_grade1218,33908 -registration_grade(r823,a).registration_grade1218,33908 -registration_grade(r824,c).registration_grade1219,33936 -registration_grade(r824,c).registration_grade1219,33936 -registration_grade(r825,b).registration_grade1220,33964 -registration_grade(r825,b).registration_grade1220,33964 -registration_grade(r826,b).registration_grade1221,33992 -registration_grade(r826,b).registration_grade1221,33992 -registration_grade(r827,c).registration_grade1222,34020 -registration_grade(r827,c).registration_grade1222,34020 -registration_grade(r828,b).registration_grade1223,34048 -registration_grade(r828,b).registration_grade1223,34048 -registration_grade(r829,b).registration_grade1224,34076 -registration_grade(r829,b).registration_grade1224,34076 -registration_grade(r830,a).registration_grade1225,34104 -registration_grade(r830,a).registration_grade1225,34104 -registration_grade(r831,a).registration_grade1226,34132 -registration_grade(r831,a).registration_grade1226,34132 -registration_grade(r832,b).registration_grade1227,34160 -registration_grade(r832,b).registration_grade1227,34160 -registration_grade(r833,b).registration_grade1228,34188 -registration_grade(r833,b).registration_grade1228,34188 -registration_grade(r834,b).registration_grade1229,34216 -registration_grade(r834,b).registration_grade1229,34216 -registration_grade(r835,a).registration_grade1230,34244 -registration_grade(r835,a).registration_grade1230,34244 -registration_grade(r836,a).registration_grade1231,34272 -registration_grade(r836,a).registration_grade1231,34272 -registration_grade(r837,c).registration_grade1232,34300 -registration_grade(r837,c).registration_grade1232,34300 -registration_grade(r838,c).registration_grade1233,34328 -registration_grade(r838,c).registration_grade1233,34328 -registration_grade(r839,b).registration_grade1234,34356 -registration_grade(r839,b).registration_grade1234,34356 -registration_grade(r840,b).registration_grade1235,34384 -registration_grade(r840,b).registration_grade1235,34384 -registration_grade(r841,a).registration_grade1236,34412 -registration_grade(r841,a).registration_grade1236,34412 -registration_grade(r842,a).registration_grade1237,34440 -registration_grade(r842,a).registration_grade1237,34440 -registration_grade(r843,b).registration_grade1238,34468 -registration_grade(r843,b).registration_grade1238,34468 -registration_grade(r844,a).registration_grade1239,34496 -registration_grade(r844,a).registration_grade1239,34496 -registration_grade(r845,c).registration_grade1240,34524 -registration_grade(r845,c).registration_grade1240,34524 -registration_grade(r846,b).registration_grade1241,34552 -registration_grade(r846,b).registration_grade1241,34552 -registration_grade(r847,b).registration_grade1242,34580 -registration_grade(r847,b).registration_grade1242,34580 -registration_grade(r848,c).registration_grade1243,34608 -registration_grade(r848,c).registration_grade1243,34608 -registration_grade(r849,b).registration_grade1244,34636 -registration_grade(r849,b).registration_grade1244,34636 -registration_grade(r850,b).registration_grade1245,34664 -registration_grade(r850,b).registration_grade1245,34664 -registration_grade(r851,b).registration_grade1246,34692 -registration_grade(r851,b).registration_grade1246,34692 -registration_grade(r852,c).registration_grade1247,34720 -registration_grade(r852,c).registration_grade1247,34720 -registration_grade(r853,b).registration_grade1248,34748 -registration_grade(r853,b).registration_grade1248,34748 -registration_grade(r854,c).registration_grade1249,34776 -registration_grade(r854,c).registration_grade1249,34776 -registration_grade(r855,d).registration_grade1250,34804 -registration_grade(r855,d).registration_grade1250,34804 -registration_grade(r856,c).registration_grade1251,34832 -registration_grade(r856,c).registration_grade1251,34832 -registration_satisfaction(r0,h).registration_satisfaction1253,34861 -registration_satisfaction(r0,h).registration_satisfaction1253,34861 -registration_satisfaction(r1,l).registration_satisfaction1254,34894 -registration_satisfaction(r1,l).registration_satisfaction1254,34894 -registration_satisfaction(r2,h).registration_satisfaction1255,34927 -registration_satisfaction(r2,h).registration_satisfaction1255,34927 -registration_satisfaction(r3,m).registration_satisfaction1256,34960 -registration_satisfaction(r3,m).registration_satisfaction1256,34960 -registration_satisfaction(r4,h).registration_satisfaction1257,34993 -registration_satisfaction(r4,h).registration_satisfaction1257,34993 -registration_satisfaction(r5,h).registration_satisfaction1258,35026 -registration_satisfaction(r5,h).registration_satisfaction1258,35026 -registration_satisfaction(r6,h).registration_satisfaction1259,35059 -registration_satisfaction(r6,h).registration_satisfaction1259,35059 -registration_satisfaction(r7,h).registration_satisfaction1260,35092 -registration_satisfaction(r7,h).registration_satisfaction1260,35092 -registration_satisfaction(r8,l).registration_satisfaction1261,35125 -registration_satisfaction(r8,l).registration_satisfaction1261,35125 -registration_satisfaction(r9,h).registration_satisfaction1262,35158 -registration_satisfaction(r9,h).registration_satisfaction1262,35158 -registration_satisfaction(r10,h).registration_satisfaction1263,35191 -registration_satisfaction(r10,h).registration_satisfaction1263,35191 -registration_satisfaction(r11,h).registration_satisfaction1264,35225 -registration_satisfaction(r11,h).registration_satisfaction1264,35225 -registration_satisfaction(r12,h).registration_satisfaction1265,35259 -registration_satisfaction(r12,h).registration_satisfaction1265,35259 -registration_satisfaction(r13,h).registration_satisfaction1266,35293 -registration_satisfaction(r13,h).registration_satisfaction1266,35293 -registration_satisfaction(r14,m).registration_satisfaction1267,35327 -registration_satisfaction(r14,m).registration_satisfaction1267,35327 -registration_satisfaction(r15,h).registration_satisfaction1268,35361 -registration_satisfaction(r15,h).registration_satisfaction1268,35361 -registration_satisfaction(r16,h).registration_satisfaction1269,35395 -registration_satisfaction(r16,h).registration_satisfaction1269,35395 -registration_satisfaction(r17,l).registration_satisfaction1270,35429 -registration_satisfaction(r17,l).registration_satisfaction1270,35429 -registration_satisfaction(r18,l).registration_satisfaction1271,35463 -registration_satisfaction(r18,l).registration_satisfaction1271,35463 -registration_satisfaction(r19,m).registration_satisfaction1272,35497 -registration_satisfaction(r19,m).registration_satisfaction1272,35497 -registration_satisfaction(r20,h).registration_satisfaction1273,35531 -registration_satisfaction(r20,h).registration_satisfaction1273,35531 -registration_satisfaction(r21,h).registration_satisfaction1274,35565 -registration_satisfaction(r21,h).registration_satisfaction1274,35565 -registration_satisfaction(r22,h).registration_satisfaction1275,35599 -registration_satisfaction(r22,h).registration_satisfaction1275,35599 -registration_satisfaction(r23,m).registration_satisfaction1276,35633 -registration_satisfaction(r23,m).registration_satisfaction1276,35633 -registration_satisfaction(r24,h).registration_satisfaction1277,35667 -registration_satisfaction(r24,h).registration_satisfaction1277,35667 -registration_satisfaction(r25,h).registration_satisfaction1278,35701 -registration_satisfaction(r25,h).registration_satisfaction1278,35701 -registration_satisfaction(r26,h).registration_satisfaction1279,35735 -registration_satisfaction(r26,h).registration_satisfaction1279,35735 -registration_satisfaction(r27,h).registration_satisfaction1280,35769 -registration_satisfaction(r27,h).registration_satisfaction1280,35769 -registration_satisfaction(r28,h).registration_satisfaction1281,35803 -registration_satisfaction(r28,h).registration_satisfaction1281,35803 -registration_satisfaction(r29,h).registration_satisfaction1282,35837 -registration_satisfaction(r29,h).registration_satisfaction1282,35837 -registration_satisfaction(r30,l).registration_satisfaction1283,35871 -registration_satisfaction(r30,l).registration_satisfaction1283,35871 -registration_satisfaction(r31,h).registration_satisfaction1284,35905 -registration_satisfaction(r31,h).registration_satisfaction1284,35905 -registration_satisfaction(r32,m).registration_satisfaction1285,35939 -registration_satisfaction(r32,m).registration_satisfaction1285,35939 -registration_satisfaction(r33,h).registration_satisfaction1286,35973 -registration_satisfaction(r33,h).registration_satisfaction1286,35973 -registration_satisfaction(r34,h).registration_satisfaction1287,36007 -registration_satisfaction(r34,h).registration_satisfaction1287,36007 -registration_satisfaction(r35,h).registration_satisfaction1288,36041 -registration_satisfaction(r35,h).registration_satisfaction1288,36041 -registration_satisfaction(r36,m).registration_satisfaction1289,36075 -registration_satisfaction(r36,m).registration_satisfaction1289,36075 -registration_satisfaction(r37,h).registration_satisfaction1290,36109 -registration_satisfaction(r37,h).registration_satisfaction1290,36109 -registration_satisfaction(r38,h).registration_satisfaction1291,36143 -registration_satisfaction(r38,h).registration_satisfaction1291,36143 -registration_satisfaction(r39,h).registration_satisfaction1292,36177 -registration_satisfaction(r39,h).registration_satisfaction1292,36177 -registration_satisfaction(r40,h).registration_satisfaction1293,36211 -registration_satisfaction(r40,h).registration_satisfaction1293,36211 -registration_satisfaction(r41,h).registration_satisfaction1294,36245 -registration_satisfaction(r41,h).registration_satisfaction1294,36245 -registration_satisfaction(r42,l).registration_satisfaction1295,36279 -registration_satisfaction(r42,l).registration_satisfaction1295,36279 -registration_satisfaction(r43,h).registration_satisfaction1296,36313 -registration_satisfaction(r43,h).registration_satisfaction1296,36313 -registration_satisfaction(r44,h).registration_satisfaction1297,36347 -registration_satisfaction(r44,h).registration_satisfaction1297,36347 -registration_satisfaction(r45,h).registration_satisfaction1298,36381 -registration_satisfaction(r45,h).registration_satisfaction1298,36381 -registration_satisfaction(r46,m).registration_satisfaction1299,36415 -registration_satisfaction(r46,m).registration_satisfaction1299,36415 -registration_satisfaction(r47,h).registration_satisfaction1300,36449 -registration_satisfaction(r47,h).registration_satisfaction1300,36449 -registration_satisfaction(r48,h).registration_satisfaction1301,36483 -registration_satisfaction(r48,h).registration_satisfaction1301,36483 -registration_satisfaction(r49,h).registration_satisfaction1302,36517 -registration_satisfaction(r49,h).registration_satisfaction1302,36517 -registration_satisfaction(r50,h).registration_satisfaction1303,36551 -registration_satisfaction(r50,h).registration_satisfaction1303,36551 -registration_satisfaction(r51,h).registration_satisfaction1304,36585 -registration_satisfaction(r51,h).registration_satisfaction1304,36585 -registration_satisfaction(r52,h).registration_satisfaction1305,36619 -registration_satisfaction(r52,h).registration_satisfaction1305,36619 -registration_satisfaction(r53,h).registration_satisfaction1306,36653 -registration_satisfaction(r53,h).registration_satisfaction1306,36653 -registration_satisfaction(r54,h).registration_satisfaction1307,36687 -registration_satisfaction(r54,h).registration_satisfaction1307,36687 -registration_satisfaction(r55,h).registration_satisfaction1308,36721 -registration_satisfaction(r55,h).registration_satisfaction1308,36721 -registration_satisfaction(r56,l).registration_satisfaction1309,36755 -registration_satisfaction(r56,l).registration_satisfaction1309,36755 -registration_satisfaction(r57,h).registration_satisfaction1310,36789 -registration_satisfaction(r57,h).registration_satisfaction1310,36789 -registration_satisfaction(r58,h).registration_satisfaction1311,36823 -registration_satisfaction(r58,h).registration_satisfaction1311,36823 -registration_satisfaction(r59,l).registration_satisfaction1312,36857 -registration_satisfaction(r59,l).registration_satisfaction1312,36857 -registration_satisfaction(r60,h).registration_satisfaction1313,36891 -registration_satisfaction(r60,h).registration_satisfaction1313,36891 -registration_satisfaction(r61,h).registration_satisfaction1314,36925 -registration_satisfaction(r61,h).registration_satisfaction1314,36925 -registration_satisfaction(r62,h).registration_satisfaction1315,36959 -registration_satisfaction(r62,h).registration_satisfaction1315,36959 -registration_satisfaction(r63,h).registration_satisfaction1316,36993 -registration_satisfaction(r63,h).registration_satisfaction1316,36993 -registration_satisfaction(r64,h).registration_satisfaction1317,37027 -registration_satisfaction(r64,h).registration_satisfaction1317,37027 -registration_satisfaction(r65,h).registration_satisfaction1318,37061 -registration_satisfaction(r65,h).registration_satisfaction1318,37061 -registration_satisfaction(r66,h).registration_satisfaction1319,37095 -registration_satisfaction(r66,h).registration_satisfaction1319,37095 -registration_satisfaction(r67,m).registration_satisfaction1320,37129 -registration_satisfaction(r67,m).registration_satisfaction1320,37129 -registration_satisfaction(r68,h).registration_satisfaction1321,37163 -registration_satisfaction(r68,h).registration_satisfaction1321,37163 -registration_satisfaction(r69,m).registration_satisfaction1322,37197 -registration_satisfaction(r69,m).registration_satisfaction1322,37197 -registration_satisfaction(r70,h).registration_satisfaction1323,37231 -registration_satisfaction(r70,h).registration_satisfaction1323,37231 -registration_satisfaction(r71,h).registration_satisfaction1324,37265 -registration_satisfaction(r71,h).registration_satisfaction1324,37265 -registration_satisfaction(r72,l).registration_satisfaction1325,37299 -registration_satisfaction(r72,l).registration_satisfaction1325,37299 -registration_satisfaction(r73,h).registration_satisfaction1326,37333 -registration_satisfaction(r73,h).registration_satisfaction1326,37333 -registration_satisfaction(r74,h).registration_satisfaction1327,37367 -registration_satisfaction(r74,h).registration_satisfaction1327,37367 -registration_satisfaction(r75,h).registration_satisfaction1328,37401 -registration_satisfaction(r75,h).registration_satisfaction1328,37401 -registration_satisfaction(r76,h).registration_satisfaction1329,37435 -registration_satisfaction(r76,h).registration_satisfaction1329,37435 -registration_satisfaction(r77,h).registration_satisfaction1330,37469 -registration_satisfaction(r77,h).registration_satisfaction1330,37469 -registration_satisfaction(r78,m).registration_satisfaction1331,37503 -registration_satisfaction(r78,m).registration_satisfaction1331,37503 -registration_satisfaction(r79,h).registration_satisfaction1332,37537 -registration_satisfaction(r79,h).registration_satisfaction1332,37537 -registration_satisfaction(r80,h).registration_satisfaction1333,37571 -registration_satisfaction(r80,h).registration_satisfaction1333,37571 -registration_satisfaction(r81,h).registration_satisfaction1334,37605 -registration_satisfaction(r81,h).registration_satisfaction1334,37605 -registration_satisfaction(r82,l).registration_satisfaction1335,37639 -registration_satisfaction(r82,l).registration_satisfaction1335,37639 -registration_satisfaction(r83,m).registration_satisfaction1336,37673 -registration_satisfaction(r83,m).registration_satisfaction1336,37673 -registration_satisfaction(r84,m).registration_satisfaction1337,37707 -registration_satisfaction(r84,m).registration_satisfaction1337,37707 -registration_satisfaction(r85,h).registration_satisfaction1338,37741 -registration_satisfaction(r85,h).registration_satisfaction1338,37741 -registration_satisfaction(r86,m).registration_satisfaction1339,37775 -registration_satisfaction(r86,m).registration_satisfaction1339,37775 -registration_satisfaction(r87,m).registration_satisfaction1340,37809 -registration_satisfaction(r87,m).registration_satisfaction1340,37809 -registration_satisfaction(r88,h).registration_satisfaction1341,37843 -registration_satisfaction(r88,h).registration_satisfaction1341,37843 -registration_satisfaction(r89,h).registration_satisfaction1342,37877 -registration_satisfaction(r89,h).registration_satisfaction1342,37877 -registration_satisfaction(r90,m).registration_satisfaction1343,37911 -registration_satisfaction(r90,m).registration_satisfaction1343,37911 -registration_satisfaction(r91,h).registration_satisfaction1344,37945 -registration_satisfaction(r91,h).registration_satisfaction1344,37945 -registration_satisfaction(r92,l).registration_satisfaction1345,37979 -registration_satisfaction(r92,l).registration_satisfaction1345,37979 -registration_satisfaction(r93,h).registration_satisfaction1346,38013 -registration_satisfaction(r93,h).registration_satisfaction1346,38013 -registration_satisfaction(r94,l).registration_satisfaction1347,38047 -registration_satisfaction(r94,l).registration_satisfaction1347,38047 -registration_satisfaction(r95,h).registration_satisfaction1348,38081 -registration_satisfaction(r95,h).registration_satisfaction1348,38081 -registration_satisfaction(r96,h).registration_satisfaction1349,38115 -registration_satisfaction(r96,h).registration_satisfaction1349,38115 -registration_satisfaction(r97,h).registration_satisfaction1350,38149 -registration_satisfaction(r97,h).registration_satisfaction1350,38149 -registration_satisfaction(r98,h).registration_satisfaction1351,38183 -registration_satisfaction(r98,h).registration_satisfaction1351,38183 -registration_satisfaction(r99,h).registration_satisfaction1352,38217 -registration_satisfaction(r99,h).registration_satisfaction1352,38217 -registration_satisfaction(r100,h).registration_satisfaction1353,38251 -registration_satisfaction(r100,h).registration_satisfaction1353,38251 -registration_satisfaction(r101,h).registration_satisfaction1354,38286 -registration_satisfaction(r101,h).registration_satisfaction1354,38286 -registration_satisfaction(r102,h).registration_satisfaction1355,38321 -registration_satisfaction(r102,h).registration_satisfaction1355,38321 -registration_satisfaction(r103,h).registration_satisfaction1356,38356 -registration_satisfaction(r103,h).registration_satisfaction1356,38356 -registration_satisfaction(r104,h).registration_satisfaction1357,38391 -registration_satisfaction(r104,h).registration_satisfaction1357,38391 -registration_satisfaction(r105,l).registration_satisfaction1358,38426 -registration_satisfaction(r105,l).registration_satisfaction1358,38426 -registration_satisfaction(r106,h).registration_satisfaction1359,38461 -registration_satisfaction(r106,h).registration_satisfaction1359,38461 -registration_satisfaction(r107,l).registration_satisfaction1360,38496 -registration_satisfaction(r107,l).registration_satisfaction1360,38496 -registration_satisfaction(r108,l).registration_satisfaction1361,38531 -registration_satisfaction(r108,l).registration_satisfaction1361,38531 -registration_satisfaction(r109,h).registration_satisfaction1362,38566 -registration_satisfaction(r109,h).registration_satisfaction1362,38566 -registration_satisfaction(r110,h).registration_satisfaction1363,38601 -registration_satisfaction(r110,h).registration_satisfaction1363,38601 -registration_satisfaction(r111,h).registration_satisfaction1364,38636 -registration_satisfaction(r111,h).registration_satisfaction1364,38636 -registration_satisfaction(r112,h).registration_satisfaction1365,38671 -registration_satisfaction(r112,h).registration_satisfaction1365,38671 -registration_satisfaction(r113,h).registration_satisfaction1366,38706 -registration_satisfaction(r113,h).registration_satisfaction1366,38706 -registration_satisfaction(r114,m).registration_satisfaction1367,38741 -registration_satisfaction(r114,m).registration_satisfaction1367,38741 -registration_satisfaction(r115,l).registration_satisfaction1368,38776 -registration_satisfaction(r115,l).registration_satisfaction1368,38776 -registration_satisfaction(r116,h).registration_satisfaction1369,38811 -registration_satisfaction(r116,h).registration_satisfaction1369,38811 -registration_satisfaction(r117,h).registration_satisfaction1370,38846 -registration_satisfaction(r117,h).registration_satisfaction1370,38846 -registration_satisfaction(r118,h).registration_satisfaction1371,38881 -registration_satisfaction(r118,h).registration_satisfaction1371,38881 -registration_satisfaction(r119,h).registration_satisfaction1372,38916 -registration_satisfaction(r119,h).registration_satisfaction1372,38916 -registration_satisfaction(r120,l).registration_satisfaction1373,38951 -registration_satisfaction(r120,l).registration_satisfaction1373,38951 -registration_satisfaction(r121,h).registration_satisfaction1374,38986 -registration_satisfaction(r121,h).registration_satisfaction1374,38986 -registration_satisfaction(r122,h).registration_satisfaction1375,39021 -registration_satisfaction(r122,h).registration_satisfaction1375,39021 -registration_satisfaction(r123,l).registration_satisfaction1376,39056 -registration_satisfaction(r123,l).registration_satisfaction1376,39056 -registration_satisfaction(r124,h).registration_satisfaction1377,39091 -registration_satisfaction(r124,h).registration_satisfaction1377,39091 -registration_satisfaction(r125,m).registration_satisfaction1378,39126 -registration_satisfaction(r125,m).registration_satisfaction1378,39126 -registration_satisfaction(r126,h).registration_satisfaction1379,39161 -registration_satisfaction(r126,h).registration_satisfaction1379,39161 -registration_satisfaction(r127,h).registration_satisfaction1380,39196 -registration_satisfaction(r127,h).registration_satisfaction1380,39196 -registration_satisfaction(r128,h).registration_satisfaction1381,39231 -registration_satisfaction(r128,h).registration_satisfaction1381,39231 -registration_satisfaction(r129,h).registration_satisfaction1382,39266 -registration_satisfaction(r129,h).registration_satisfaction1382,39266 -registration_satisfaction(r130,h).registration_satisfaction1383,39301 -registration_satisfaction(r130,h).registration_satisfaction1383,39301 -registration_satisfaction(r131,h).registration_satisfaction1384,39336 -registration_satisfaction(r131,h).registration_satisfaction1384,39336 -registration_satisfaction(r132,m).registration_satisfaction1385,39371 -registration_satisfaction(r132,m).registration_satisfaction1385,39371 -registration_satisfaction(r133,h).registration_satisfaction1386,39406 -registration_satisfaction(r133,h).registration_satisfaction1386,39406 -registration_satisfaction(r134,m).registration_satisfaction1387,39441 -registration_satisfaction(r134,m).registration_satisfaction1387,39441 -registration_satisfaction(r135,h).registration_satisfaction1388,39476 -registration_satisfaction(r135,h).registration_satisfaction1388,39476 -registration_satisfaction(r136,h).registration_satisfaction1389,39511 -registration_satisfaction(r136,h).registration_satisfaction1389,39511 -registration_satisfaction(r137,h).registration_satisfaction1390,39546 -registration_satisfaction(r137,h).registration_satisfaction1390,39546 -registration_satisfaction(r138,h).registration_satisfaction1391,39581 -registration_satisfaction(r138,h).registration_satisfaction1391,39581 -registration_satisfaction(r139,h).registration_satisfaction1392,39616 -registration_satisfaction(r139,h).registration_satisfaction1392,39616 -registration_satisfaction(r140,h).registration_satisfaction1393,39651 -registration_satisfaction(r140,h).registration_satisfaction1393,39651 -registration_satisfaction(r141,l).registration_satisfaction1394,39686 -registration_satisfaction(r141,l).registration_satisfaction1394,39686 -registration_satisfaction(r142,h).registration_satisfaction1395,39721 -registration_satisfaction(r142,h).registration_satisfaction1395,39721 -registration_satisfaction(r143,h).registration_satisfaction1396,39756 -registration_satisfaction(r143,h).registration_satisfaction1396,39756 -registration_satisfaction(r144,h).registration_satisfaction1397,39791 -registration_satisfaction(r144,h).registration_satisfaction1397,39791 -registration_satisfaction(r145,l).registration_satisfaction1398,39826 -registration_satisfaction(r145,l).registration_satisfaction1398,39826 -registration_satisfaction(r146,h).registration_satisfaction1399,39861 -registration_satisfaction(r146,h).registration_satisfaction1399,39861 -registration_satisfaction(r147,l).registration_satisfaction1400,39896 -registration_satisfaction(r147,l).registration_satisfaction1400,39896 -registration_satisfaction(r148,m).registration_satisfaction1401,39931 -registration_satisfaction(r148,m).registration_satisfaction1401,39931 -registration_satisfaction(r149,h).registration_satisfaction1402,39966 -registration_satisfaction(r149,h).registration_satisfaction1402,39966 -registration_satisfaction(r150,h).registration_satisfaction1403,40001 -registration_satisfaction(r150,h).registration_satisfaction1403,40001 -registration_satisfaction(r151,h).registration_satisfaction1404,40036 -registration_satisfaction(r151,h).registration_satisfaction1404,40036 -registration_satisfaction(r152,h).registration_satisfaction1405,40071 -registration_satisfaction(r152,h).registration_satisfaction1405,40071 -registration_satisfaction(r153,h).registration_satisfaction1406,40106 -registration_satisfaction(r153,h).registration_satisfaction1406,40106 -registration_satisfaction(r154,m).registration_satisfaction1407,40141 -registration_satisfaction(r154,m).registration_satisfaction1407,40141 -registration_satisfaction(r155,m).registration_satisfaction1408,40176 -registration_satisfaction(r155,m).registration_satisfaction1408,40176 -registration_satisfaction(r156,h).registration_satisfaction1409,40211 -registration_satisfaction(r156,h).registration_satisfaction1409,40211 -registration_satisfaction(r157,m).registration_satisfaction1410,40246 -registration_satisfaction(r157,m).registration_satisfaction1410,40246 -registration_satisfaction(r158,l).registration_satisfaction1411,40281 -registration_satisfaction(r158,l).registration_satisfaction1411,40281 -registration_satisfaction(r159,m).registration_satisfaction1412,40316 -registration_satisfaction(r159,m).registration_satisfaction1412,40316 -registration_satisfaction(r160,h).registration_satisfaction1413,40351 -registration_satisfaction(r160,h).registration_satisfaction1413,40351 -registration_satisfaction(r161,h).registration_satisfaction1414,40386 -registration_satisfaction(r161,h).registration_satisfaction1414,40386 -registration_satisfaction(r162,m).registration_satisfaction1415,40421 -registration_satisfaction(r162,m).registration_satisfaction1415,40421 -registration_satisfaction(r163,h).registration_satisfaction1416,40456 -registration_satisfaction(r163,h).registration_satisfaction1416,40456 -registration_satisfaction(r164,m).registration_satisfaction1417,40491 -registration_satisfaction(r164,m).registration_satisfaction1417,40491 -registration_satisfaction(r165,m).registration_satisfaction1418,40526 -registration_satisfaction(r165,m).registration_satisfaction1418,40526 -registration_satisfaction(r166,l).registration_satisfaction1419,40561 -registration_satisfaction(r166,l).registration_satisfaction1419,40561 -registration_satisfaction(r167,h).registration_satisfaction1420,40596 -registration_satisfaction(r167,h).registration_satisfaction1420,40596 -registration_satisfaction(r168,h).registration_satisfaction1421,40631 -registration_satisfaction(r168,h).registration_satisfaction1421,40631 -registration_satisfaction(r169,h).registration_satisfaction1422,40666 -registration_satisfaction(r169,h).registration_satisfaction1422,40666 -registration_satisfaction(r170,h).registration_satisfaction1423,40701 -registration_satisfaction(r170,h).registration_satisfaction1423,40701 -registration_satisfaction(r171,h).registration_satisfaction1424,40736 -registration_satisfaction(r171,h).registration_satisfaction1424,40736 -registration_satisfaction(r172,h).registration_satisfaction1425,40771 -registration_satisfaction(r172,h).registration_satisfaction1425,40771 -registration_satisfaction(r173,h).registration_satisfaction1426,40806 -registration_satisfaction(r173,h).registration_satisfaction1426,40806 -registration_satisfaction(r174,h).registration_satisfaction1427,40841 -registration_satisfaction(r174,h).registration_satisfaction1427,40841 -registration_satisfaction(r175,h).registration_satisfaction1428,40876 -registration_satisfaction(r175,h).registration_satisfaction1428,40876 -registration_satisfaction(r176,h).registration_satisfaction1429,40911 -registration_satisfaction(r176,h).registration_satisfaction1429,40911 -registration_satisfaction(r177,h).registration_satisfaction1430,40946 -registration_satisfaction(r177,h).registration_satisfaction1430,40946 -registration_satisfaction(r178,h).registration_satisfaction1431,40981 -registration_satisfaction(r178,h).registration_satisfaction1431,40981 -registration_satisfaction(r179,l).registration_satisfaction1432,41016 -registration_satisfaction(r179,l).registration_satisfaction1432,41016 -registration_satisfaction(r180,h).registration_satisfaction1433,41051 -registration_satisfaction(r180,h).registration_satisfaction1433,41051 -registration_satisfaction(r181,m).registration_satisfaction1434,41086 -registration_satisfaction(r181,m).registration_satisfaction1434,41086 -registration_satisfaction(r182,h).registration_satisfaction1435,41121 -registration_satisfaction(r182,h).registration_satisfaction1435,41121 -registration_satisfaction(r183,l).registration_satisfaction1436,41156 -registration_satisfaction(r183,l).registration_satisfaction1436,41156 -registration_satisfaction(r184,h).registration_satisfaction1437,41191 -registration_satisfaction(r184,h).registration_satisfaction1437,41191 -registration_satisfaction(r185,h).registration_satisfaction1438,41226 -registration_satisfaction(r185,h).registration_satisfaction1438,41226 -registration_satisfaction(r186,h).registration_satisfaction1439,41261 -registration_satisfaction(r186,h).registration_satisfaction1439,41261 -registration_satisfaction(r187,h).registration_satisfaction1440,41296 -registration_satisfaction(r187,h).registration_satisfaction1440,41296 -registration_satisfaction(r188,m).registration_satisfaction1441,41331 -registration_satisfaction(r188,m).registration_satisfaction1441,41331 -registration_satisfaction(r189,h).registration_satisfaction1442,41366 -registration_satisfaction(r189,h).registration_satisfaction1442,41366 -registration_satisfaction(r190,h).registration_satisfaction1443,41401 -registration_satisfaction(r190,h).registration_satisfaction1443,41401 -registration_satisfaction(r191,h).registration_satisfaction1444,41436 -registration_satisfaction(r191,h).registration_satisfaction1444,41436 -registration_satisfaction(r192,m).registration_satisfaction1445,41471 -registration_satisfaction(r192,m).registration_satisfaction1445,41471 -registration_satisfaction(r193,h).registration_satisfaction1446,41506 -registration_satisfaction(r193,h).registration_satisfaction1446,41506 -registration_satisfaction(r194,h).registration_satisfaction1447,41541 -registration_satisfaction(r194,h).registration_satisfaction1447,41541 -registration_satisfaction(r195,h).registration_satisfaction1448,41576 -registration_satisfaction(r195,h).registration_satisfaction1448,41576 -registration_satisfaction(r196,h).registration_satisfaction1449,41611 -registration_satisfaction(r196,h).registration_satisfaction1449,41611 -registration_satisfaction(r197,h).registration_satisfaction1450,41646 -registration_satisfaction(r197,h).registration_satisfaction1450,41646 -registration_satisfaction(r198,h).registration_satisfaction1451,41681 -registration_satisfaction(r198,h).registration_satisfaction1451,41681 -registration_satisfaction(r199,h).registration_satisfaction1452,41716 -registration_satisfaction(r199,h).registration_satisfaction1452,41716 -registration_satisfaction(r200,m).registration_satisfaction1453,41751 -registration_satisfaction(r200,m).registration_satisfaction1453,41751 -registration_satisfaction(r201,h).registration_satisfaction1454,41786 -registration_satisfaction(r201,h).registration_satisfaction1454,41786 -registration_satisfaction(r202,h).registration_satisfaction1455,41821 -registration_satisfaction(r202,h).registration_satisfaction1455,41821 -registration_satisfaction(r203,h).registration_satisfaction1456,41856 -registration_satisfaction(r203,h).registration_satisfaction1456,41856 -registration_satisfaction(r204,h).registration_satisfaction1457,41891 -registration_satisfaction(r204,h).registration_satisfaction1457,41891 -registration_satisfaction(r205,h).registration_satisfaction1458,41926 -registration_satisfaction(r205,h).registration_satisfaction1458,41926 -registration_satisfaction(r206,h).registration_satisfaction1459,41961 -registration_satisfaction(r206,h).registration_satisfaction1459,41961 -registration_satisfaction(r207,h).registration_satisfaction1460,41996 -registration_satisfaction(r207,h).registration_satisfaction1460,41996 -registration_satisfaction(r208,h).registration_satisfaction1461,42031 -registration_satisfaction(r208,h).registration_satisfaction1461,42031 -registration_satisfaction(r209,h).registration_satisfaction1462,42066 -registration_satisfaction(r209,h).registration_satisfaction1462,42066 -registration_satisfaction(r210,h).registration_satisfaction1463,42101 -registration_satisfaction(r210,h).registration_satisfaction1463,42101 -registration_satisfaction(r211,m).registration_satisfaction1464,42136 -registration_satisfaction(r211,m).registration_satisfaction1464,42136 -registration_satisfaction(r212,h).registration_satisfaction1465,42171 -registration_satisfaction(r212,h).registration_satisfaction1465,42171 -registration_satisfaction(r213,h).registration_satisfaction1466,42206 -registration_satisfaction(r213,h).registration_satisfaction1466,42206 -registration_satisfaction(r214,h).registration_satisfaction1467,42241 -registration_satisfaction(r214,h).registration_satisfaction1467,42241 -registration_satisfaction(r215,h).registration_satisfaction1468,42276 -registration_satisfaction(r215,h).registration_satisfaction1468,42276 -registration_satisfaction(r216,h).registration_satisfaction1469,42311 -registration_satisfaction(r216,h).registration_satisfaction1469,42311 -registration_satisfaction(r217,h).registration_satisfaction1470,42346 -registration_satisfaction(r217,h).registration_satisfaction1470,42346 -registration_satisfaction(r218,m).registration_satisfaction1471,42381 -registration_satisfaction(r218,m).registration_satisfaction1471,42381 -registration_satisfaction(r219,h).registration_satisfaction1472,42416 -registration_satisfaction(r219,h).registration_satisfaction1472,42416 -registration_satisfaction(r220,h).registration_satisfaction1473,42451 -registration_satisfaction(r220,h).registration_satisfaction1473,42451 -registration_satisfaction(r221,m).registration_satisfaction1474,42486 -registration_satisfaction(r221,m).registration_satisfaction1474,42486 -registration_satisfaction(r222,l).registration_satisfaction1475,42521 -registration_satisfaction(r222,l).registration_satisfaction1475,42521 -registration_satisfaction(r223,h).registration_satisfaction1476,42556 -registration_satisfaction(r223,h).registration_satisfaction1476,42556 -registration_satisfaction(r224,h).registration_satisfaction1477,42591 -registration_satisfaction(r224,h).registration_satisfaction1477,42591 -registration_satisfaction(r225,l).registration_satisfaction1478,42626 -registration_satisfaction(r225,l).registration_satisfaction1478,42626 -registration_satisfaction(r226,l).registration_satisfaction1479,42661 -registration_satisfaction(r226,l).registration_satisfaction1479,42661 -registration_satisfaction(r227,h).registration_satisfaction1480,42696 -registration_satisfaction(r227,h).registration_satisfaction1480,42696 -registration_satisfaction(r228,l).registration_satisfaction1481,42731 -registration_satisfaction(r228,l).registration_satisfaction1481,42731 -registration_satisfaction(r229,l).registration_satisfaction1482,42766 -registration_satisfaction(r229,l).registration_satisfaction1482,42766 -registration_satisfaction(r230,h).registration_satisfaction1483,42801 -registration_satisfaction(r230,h).registration_satisfaction1483,42801 -registration_satisfaction(r231,l).registration_satisfaction1484,42836 -registration_satisfaction(r231,l).registration_satisfaction1484,42836 -registration_satisfaction(r232,h).registration_satisfaction1485,42871 -registration_satisfaction(r232,h).registration_satisfaction1485,42871 -registration_satisfaction(r233,m).registration_satisfaction1486,42906 -registration_satisfaction(r233,m).registration_satisfaction1486,42906 -registration_satisfaction(r234,l).registration_satisfaction1487,42941 -registration_satisfaction(r234,l).registration_satisfaction1487,42941 -registration_satisfaction(r235,h).registration_satisfaction1488,42976 -registration_satisfaction(r235,h).registration_satisfaction1488,42976 -registration_satisfaction(r236,l).registration_satisfaction1489,43011 -registration_satisfaction(r236,l).registration_satisfaction1489,43011 -registration_satisfaction(r237,m).registration_satisfaction1490,43046 -registration_satisfaction(r237,m).registration_satisfaction1490,43046 -registration_satisfaction(r238,m).registration_satisfaction1491,43081 -registration_satisfaction(r238,m).registration_satisfaction1491,43081 -registration_satisfaction(r239,m).registration_satisfaction1492,43116 -registration_satisfaction(r239,m).registration_satisfaction1492,43116 -registration_satisfaction(r240,h).registration_satisfaction1493,43151 -registration_satisfaction(r240,h).registration_satisfaction1493,43151 -registration_satisfaction(r241,h).registration_satisfaction1494,43186 -registration_satisfaction(r241,h).registration_satisfaction1494,43186 -registration_satisfaction(r242,m).registration_satisfaction1495,43221 -registration_satisfaction(r242,m).registration_satisfaction1495,43221 -registration_satisfaction(r243,h).registration_satisfaction1496,43256 -registration_satisfaction(r243,h).registration_satisfaction1496,43256 -registration_satisfaction(r244,m).registration_satisfaction1497,43291 -registration_satisfaction(r244,m).registration_satisfaction1497,43291 -registration_satisfaction(r245,h).registration_satisfaction1498,43326 -registration_satisfaction(r245,h).registration_satisfaction1498,43326 -registration_satisfaction(r246,h).registration_satisfaction1499,43361 -registration_satisfaction(r246,h).registration_satisfaction1499,43361 -registration_satisfaction(r247,l).registration_satisfaction1500,43396 -registration_satisfaction(r247,l).registration_satisfaction1500,43396 -registration_satisfaction(r248,l).registration_satisfaction1501,43431 -registration_satisfaction(r248,l).registration_satisfaction1501,43431 -registration_satisfaction(r249,h).registration_satisfaction1502,43466 -registration_satisfaction(r249,h).registration_satisfaction1502,43466 -registration_satisfaction(r250,h).registration_satisfaction1503,43501 -registration_satisfaction(r250,h).registration_satisfaction1503,43501 -registration_satisfaction(r251,h).registration_satisfaction1504,43536 -registration_satisfaction(r251,h).registration_satisfaction1504,43536 -registration_satisfaction(r252,h).registration_satisfaction1505,43571 -registration_satisfaction(r252,h).registration_satisfaction1505,43571 -registration_satisfaction(r253,h).registration_satisfaction1506,43606 -registration_satisfaction(r253,h).registration_satisfaction1506,43606 -registration_satisfaction(r254,h).registration_satisfaction1507,43641 -registration_satisfaction(r254,h).registration_satisfaction1507,43641 -registration_satisfaction(r255,h).registration_satisfaction1508,43676 -registration_satisfaction(r255,h).registration_satisfaction1508,43676 -registration_satisfaction(r256,h).registration_satisfaction1509,43711 -registration_satisfaction(r256,h).registration_satisfaction1509,43711 -registration_satisfaction(r257,m).registration_satisfaction1510,43746 -registration_satisfaction(r257,m).registration_satisfaction1510,43746 -registration_satisfaction(r258,h).registration_satisfaction1511,43781 -registration_satisfaction(r258,h).registration_satisfaction1511,43781 -registration_satisfaction(r259,h).registration_satisfaction1512,43816 -registration_satisfaction(r259,h).registration_satisfaction1512,43816 -registration_satisfaction(r260,h).registration_satisfaction1513,43851 -registration_satisfaction(r260,h).registration_satisfaction1513,43851 -registration_satisfaction(r261,h).registration_satisfaction1514,43886 -registration_satisfaction(r261,h).registration_satisfaction1514,43886 -registration_satisfaction(r262,h).registration_satisfaction1515,43921 -registration_satisfaction(r262,h).registration_satisfaction1515,43921 -registration_satisfaction(r263,m).registration_satisfaction1516,43956 -registration_satisfaction(r263,m).registration_satisfaction1516,43956 -registration_satisfaction(r264,h).registration_satisfaction1517,43991 -registration_satisfaction(r264,h).registration_satisfaction1517,43991 -registration_satisfaction(r265,h).registration_satisfaction1518,44026 -registration_satisfaction(r265,h).registration_satisfaction1518,44026 -registration_satisfaction(r266,l).registration_satisfaction1519,44061 -registration_satisfaction(r266,l).registration_satisfaction1519,44061 -registration_satisfaction(r267,h).registration_satisfaction1520,44096 -registration_satisfaction(r267,h).registration_satisfaction1520,44096 -registration_satisfaction(r268,l).registration_satisfaction1521,44131 -registration_satisfaction(r268,l).registration_satisfaction1521,44131 -registration_satisfaction(r269,h).registration_satisfaction1522,44166 -registration_satisfaction(r269,h).registration_satisfaction1522,44166 -registration_satisfaction(r270,l).registration_satisfaction1523,44201 -registration_satisfaction(r270,l).registration_satisfaction1523,44201 -registration_satisfaction(r271,h).registration_satisfaction1524,44236 -registration_satisfaction(r271,h).registration_satisfaction1524,44236 -registration_satisfaction(r272,l).registration_satisfaction1525,44271 -registration_satisfaction(r272,l).registration_satisfaction1525,44271 -registration_satisfaction(r273,h).registration_satisfaction1526,44306 -registration_satisfaction(r273,h).registration_satisfaction1526,44306 -registration_satisfaction(r274,h).registration_satisfaction1527,44341 -registration_satisfaction(r274,h).registration_satisfaction1527,44341 -registration_satisfaction(r275,h).registration_satisfaction1528,44376 -registration_satisfaction(r275,h).registration_satisfaction1528,44376 -registration_satisfaction(r276,h).registration_satisfaction1529,44411 -registration_satisfaction(r276,h).registration_satisfaction1529,44411 -registration_satisfaction(r277,h).registration_satisfaction1530,44446 -registration_satisfaction(r277,h).registration_satisfaction1530,44446 -registration_satisfaction(r278,h).registration_satisfaction1531,44481 -registration_satisfaction(r278,h).registration_satisfaction1531,44481 -registration_satisfaction(r279,h).registration_satisfaction1532,44516 -registration_satisfaction(r279,h).registration_satisfaction1532,44516 -registration_satisfaction(r280,h).registration_satisfaction1533,44551 -registration_satisfaction(r280,h).registration_satisfaction1533,44551 -registration_satisfaction(r281,m).registration_satisfaction1534,44586 -registration_satisfaction(r281,m).registration_satisfaction1534,44586 -registration_satisfaction(r282,h).registration_satisfaction1535,44621 -registration_satisfaction(r282,h).registration_satisfaction1535,44621 -registration_satisfaction(r283,h).registration_satisfaction1536,44656 -registration_satisfaction(r283,h).registration_satisfaction1536,44656 -registration_satisfaction(r284,m).registration_satisfaction1537,44691 -registration_satisfaction(r284,m).registration_satisfaction1537,44691 -registration_satisfaction(r285,m).registration_satisfaction1538,44726 -registration_satisfaction(r285,m).registration_satisfaction1538,44726 -registration_satisfaction(r286,h).registration_satisfaction1539,44761 -registration_satisfaction(r286,h).registration_satisfaction1539,44761 -registration_satisfaction(r287,h).registration_satisfaction1540,44796 -registration_satisfaction(r287,h).registration_satisfaction1540,44796 -registration_satisfaction(r288,h).registration_satisfaction1541,44831 -registration_satisfaction(r288,h).registration_satisfaction1541,44831 -registration_satisfaction(r289,l).registration_satisfaction1542,44866 -registration_satisfaction(r289,l).registration_satisfaction1542,44866 -registration_satisfaction(r290,m).registration_satisfaction1543,44901 -registration_satisfaction(r290,m).registration_satisfaction1543,44901 -registration_satisfaction(r291,h).registration_satisfaction1544,44936 -registration_satisfaction(r291,h).registration_satisfaction1544,44936 -registration_satisfaction(r292,m).registration_satisfaction1545,44971 -registration_satisfaction(r292,m).registration_satisfaction1545,44971 -registration_satisfaction(r293,h).registration_satisfaction1546,45006 -registration_satisfaction(r293,h).registration_satisfaction1546,45006 -registration_satisfaction(r294,h).registration_satisfaction1547,45041 -registration_satisfaction(r294,h).registration_satisfaction1547,45041 -registration_satisfaction(r295,m).registration_satisfaction1548,45076 -registration_satisfaction(r295,m).registration_satisfaction1548,45076 -registration_satisfaction(r296,l).registration_satisfaction1549,45111 -registration_satisfaction(r296,l).registration_satisfaction1549,45111 -registration_satisfaction(r297,h).registration_satisfaction1550,45146 -registration_satisfaction(r297,h).registration_satisfaction1550,45146 -registration_satisfaction(r298,h).registration_satisfaction1551,45181 -registration_satisfaction(r298,h).registration_satisfaction1551,45181 -registration_satisfaction(r299,h).registration_satisfaction1552,45216 -registration_satisfaction(r299,h).registration_satisfaction1552,45216 -registration_satisfaction(r300,l).registration_satisfaction1553,45251 -registration_satisfaction(r300,l).registration_satisfaction1553,45251 -registration_satisfaction(r301,h).registration_satisfaction1554,45286 -registration_satisfaction(r301,h).registration_satisfaction1554,45286 -registration_satisfaction(r302,m).registration_satisfaction1555,45321 -registration_satisfaction(r302,m).registration_satisfaction1555,45321 -registration_satisfaction(r303,h).registration_satisfaction1556,45356 -registration_satisfaction(r303,h).registration_satisfaction1556,45356 -registration_satisfaction(r304,h).registration_satisfaction1557,45391 -registration_satisfaction(r304,h).registration_satisfaction1557,45391 -registration_satisfaction(r305,l).registration_satisfaction1558,45426 -registration_satisfaction(r305,l).registration_satisfaction1558,45426 -registration_satisfaction(r306,h).registration_satisfaction1559,45461 -registration_satisfaction(r306,h).registration_satisfaction1559,45461 -registration_satisfaction(r307,l).registration_satisfaction1560,45496 -registration_satisfaction(r307,l).registration_satisfaction1560,45496 -registration_satisfaction(r308,l).registration_satisfaction1561,45531 -registration_satisfaction(r308,l).registration_satisfaction1561,45531 -registration_satisfaction(r309,m).registration_satisfaction1562,45566 -registration_satisfaction(r309,m).registration_satisfaction1562,45566 -registration_satisfaction(r310,h).registration_satisfaction1563,45601 -registration_satisfaction(r310,h).registration_satisfaction1563,45601 -registration_satisfaction(r311,l).registration_satisfaction1564,45636 -registration_satisfaction(r311,l).registration_satisfaction1564,45636 -registration_satisfaction(r312,h).registration_satisfaction1565,45671 -registration_satisfaction(r312,h).registration_satisfaction1565,45671 -registration_satisfaction(r313,h).registration_satisfaction1566,45706 -registration_satisfaction(r313,h).registration_satisfaction1566,45706 -registration_satisfaction(r314,h).registration_satisfaction1567,45741 -registration_satisfaction(r314,h).registration_satisfaction1567,45741 -registration_satisfaction(r315,h).registration_satisfaction1568,45776 -registration_satisfaction(r315,h).registration_satisfaction1568,45776 -registration_satisfaction(r316,l).registration_satisfaction1569,45811 -registration_satisfaction(r316,l).registration_satisfaction1569,45811 -registration_satisfaction(r317,l).registration_satisfaction1570,45846 -registration_satisfaction(r317,l).registration_satisfaction1570,45846 -registration_satisfaction(r318,h).registration_satisfaction1571,45881 -registration_satisfaction(r318,h).registration_satisfaction1571,45881 -registration_satisfaction(r319,m).registration_satisfaction1572,45916 -registration_satisfaction(r319,m).registration_satisfaction1572,45916 -registration_satisfaction(r320,h).registration_satisfaction1573,45951 -registration_satisfaction(r320,h).registration_satisfaction1573,45951 -registration_satisfaction(r321,l).registration_satisfaction1574,45986 -registration_satisfaction(r321,l).registration_satisfaction1574,45986 -registration_satisfaction(r322,h).registration_satisfaction1575,46021 -registration_satisfaction(r322,h).registration_satisfaction1575,46021 -registration_satisfaction(r323,l).registration_satisfaction1576,46056 -registration_satisfaction(r323,l).registration_satisfaction1576,46056 -registration_satisfaction(r324,h).registration_satisfaction1577,46091 -registration_satisfaction(r324,h).registration_satisfaction1577,46091 -registration_satisfaction(r325,h).registration_satisfaction1578,46126 -registration_satisfaction(r325,h).registration_satisfaction1578,46126 -registration_satisfaction(r326,h).registration_satisfaction1579,46161 -registration_satisfaction(r326,h).registration_satisfaction1579,46161 -registration_satisfaction(r327,m).registration_satisfaction1580,46196 -registration_satisfaction(r327,m).registration_satisfaction1580,46196 -registration_satisfaction(r328,h).registration_satisfaction1581,46231 -registration_satisfaction(r328,h).registration_satisfaction1581,46231 -registration_satisfaction(r329,h).registration_satisfaction1582,46266 -registration_satisfaction(r329,h).registration_satisfaction1582,46266 -registration_satisfaction(r330,l).registration_satisfaction1583,46301 -registration_satisfaction(r330,l).registration_satisfaction1583,46301 -registration_satisfaction(r331,h).registration_satisfaction1584,46336 -registration_satisfaction(r331,h).registration_satisfaction1584,46336 -registration_satisfaction(r332,l).registration_satisfaction1585,46371 -registration_satisfaction(r332,l).registration_satisfaction1585,46371 -registration_satisfaction(r333,h).registration_satisfaction1586,46406 -registration_satisfaction(r333,h).registration_satisfaction1586,46406 -registration_satisfaction(r334,h).registration_satisfaction1587,46441 -registration_satisfaction(r334,h).registration_satisfaction1587,46441 -registration_satisfaction(r335,h).registration_satisfaction1588,46476 -registration_satisfaction(r335,h).registration_satisfaction1588,46476 -registration_satisfaction(r336,m).registration_satisfaction1589,46511 -registration_satisfaction(r336,m).registration_satisfaction1589,46511 -registration_satisfaction(r337,h).registration_satisfaction1590,46546 -registration_satisfaction(r337,h).registration_satisfaction1590,46546 -registration_satisfaction(r338,h).registration_satisfaction1591,46581 -registration_satisfaction(r338,h).registration_satisfaction1591,46581 -registration_satisfaction(r339,h).registration_satisfaction1592,46616 -registration_satisfaction(r339,h).registration_satisfaction1592,46616 -registration_satisfaction(r340,h).registration_satisfaction1593,46651 -registration_satisfaction(r340,h).registration_satisfaction1593,46651 -registration_satisfaction(r341,l).registration_satisfaction1594,46686 -registration_satisfaction(r341,l).registration_satisfaction1594,46686 -registration_satisfaction(r342,h).registration_satisfaction1595,46721 -registration_satisfaction(r342,h).registration_satisfaction1595,46721 -registration_satisfaction(r343,h).registration_satisfaction1596,46756 -registration_satisfaction(r343,h).registration_satisfaction1596,46756 -registration_satisfaction(r344,h).registration_satisfaction1597,46791 -registration_satisfaction(r344,h).registration_satisfaction1597,46791 -registration_satisfaction(r345,m).registration_satisfaction1598,46826 -registration_satisfaction(r345,m).registration_satisfaction1598,46826 -registration_satisfaction(r346,h).registration_satisfaction1599,46861 -registration_satisfaction(r346,h).registration_satisfaction1599,46861 -registration_satisfaction(r347,m).registration_satisfaction1600,46896 -registration_satisfaction(r347,m).registration_satisfaction1600,46896 -registration_satisfaction(r348,m).registration_satisfaction1601,46931 -registration_satisfaction(r348,m).registration_satisfaction1601,46931 -registration_satisfaction(r349,h).registration_satisfaction1602,46966 -registration_satisfaction(r349,h).registration_satisfaction1602,46966 -registration_satisfaction(r350,m).registration_satisfaction1603,47001 -registration_satisfaction(r350,m).registration_satisfaction1603,47001 -registration_satisfaction(r351,h).registration_satisfaction1604,47036 -registration_satisfaction(r351,h).registration_satisfaction1604,47036 -registration_satisfaction(r352,l).registration_satisfaction1605,47071 -registration_satisfaction(r352,l).registration_satisfaction1605,47071 -registration_satisfaction(r353,h).registration_satisfaction1606,47106 -registration_satisfaction(r353,h).registration_satisfaction1606,47106 -registration_satisfaction(r354,h).registration_satisfaction1607,47141 -registration_satisfaction(r354,h).registration_satisfaction1607,47141 -registration_satisfaction(r355,h).registration_satisfaction1608,47176 -registration_satisfaction(r355,h).registration_satisfaction1608,47176 -registration_satisfaction(r356,m).registration_satisfaction1609,47211 -registration_satisfaction(r356,m).registration_satisfaction1609,47211 -registration_satisfaction(r357,m).registration_satisfaction1610,47246 -registration_satisfaction(r357,m).registration_satisfaction1610,47246 -registration_satisfaction(r358,h).registration_satisfaction1611,47281 -registration_satisfaction(r358,h).registration_satisfaction1611,47281 -registration_satisfaction(r359,l).registration_satisfaction1612,47316 -registration_satisfaction(r359,l).registration_satisfaction1612,47316 -registration_satisfaction(r360,h).registration_satisfaction1613,47351 -registration_satisfaction(r360,h).registration_satisfaction1613,47351 -registration_satisfaction(r361,m).registration_satisfaction1614,47386 -registration_satisfaction(r361,m).registration_satisfaction1614,47386 -registration_satisfaction(r362,h).registration_satisfaction1615,47421 -registration_satisfaction(r362,h).registration_satisfaction1615,47421 -registration_satisfaction(r363,l).registration_satisfaction1616,47456 -registration_satisfaction(r363,l).registration_satisfaction1616,47456 -registration_satisfaction(r364,h).registration_satisfaction1617,47491 -registration_satisfaction(r364,h).registration_satisfaction1617,47491 -registration_satisfaction(r365,m).registration_satisfaction1618,47526 -registration_satisfaction(r365,m).registration_satisfaction1618,47526 -registration_satisfaction(r366,h).registration_satisfaction1619,47561 -registration_satisfaction(r366,h).registration_satisfaction1619,47561 -registration_satisfaction(r367,h).registration_satisfaction1620,47596 -registration_satisfaction(r367,h).registration_satisfaction1620,47596 -registration_satisfaction(r368,h).registration_satisfaction1621,47631 -registration_satisfaction(r368,h).registration_satisfaction1621,47631 -registration_satisfaction(r369,h).registration_satisfaction1622,47666 -registration_satisfaction(r369,h).registration_satisfaction1622,47666 -registration_satisfaction(r370,h).registration_satisfaction1623,47701 -registration_satisfaction(r370,h).registration_satisfaction1623,47701 -registration_satisfaction(r371,h).registration_satisfaction1624,47736 -registration_satisfaction(r371,h).registration_satisfaction1624,47736 -registration_satisfaction(r372,h).registration_satisfaction1625,47771 -registration_satisfaction(r372,h).registration_satisfaction1625,47771 -registration_satisfaction(r373,h).registration_satisfaction1626,47806 -registration_satisfaction(r373,h).registration_satisfaction1626,47806 -registration_satisfaction(r374,l).registration_satisfaction1627,47841 -registration_satisfaction(r374,l).registration_satisfaction1627,47841 -registration_satisfaction(r375,h).registration_satisfaction1628,47876 -registration_satisfaction(r375,h).registration_satisfaction1628,47876 -registration_satisfaction(r376,m).registration_satisfaction1629,47911 -registration_satisfaction(r376,m).registration_satisfaction1629,47911 -registration_satisfaction(r377,h).registration_satisfaction1630,47946 -registration_satisfaction(r377,h).registration_satisfaction1630,47946 -registration_satisfaction(r378,h).registration_satisfaction1631,47981 -registration_satisfaction(r378,h).registration_satisfaction1631,47981 -registration_satisfaction(r379,h).registration_satisfaction1632,48016 -registration_satisfaction(r379,h).registration_satisfaction1632,48016 -registration_satisfaction(r380,h).registration_satisfaction1633,48051 -registration_satisfaction(r380,h).registration_satisfaction1633,48051 -registration_satisfaction(r381,m).registration_satisfaction1634,48086 -registration_satisfaction(r381,m).registration_satisfaction1634,48086 -registration_satisfaction(r382,h).registration_satisfaction1635,48121 -registration_satisfaction(r382,h).registration_satisfaction1635,48121 -registration_satisfaction(r383,h).registration_satisfaction1636,48156 -registration_satisfaction(r383,h).registration_satisfaction1636,48156 -registration_satisfaction(r384,m).registration_satisfaction1637,48191 -registration_satisfaction(r384,m).registration_satisfaction1637,48191 -registration_satisfaction(r385,m).registration_satisfaction1638,48226 -registration_satisfaction(r385,m).registration_satisfaction1638,48226 -registration_satisfaction(r386,l).registration_satisfaction1639,48261 -registration_satisfaction(r386,l).registration_satisfaction1639,48261 -registration_satisfaction(r387,h).registration_satisfaction1640,48296 -registration_satisfaction(r387,h).registration_satisfaction1640,48296 -registration_satisfaction(r388,h).registration_satisfaction1641,48331 -registration_satisfaction(r388,h).registration_satisfaction1641,48331 -registration_satisfaction(r389,h).registration_satisfaction1642,48366 -registration_satisfaction(r389,h).registration_satisfaction1642,48366 -registration_satisfaction(r390,h).registration_satisfaction1643,48401 -registration_satisfaction(r390,h).registration_satisfaction1643,48401 -registration_satisfaction(r391,l).registration_satisfaction1644,48436 -registration_satisfaction(r391,l).registration_satisfaction1644,48436 -registration_satisfaction(r392,h).registration_satisfaction1645,48471 -registration_satisfaction(r392,h).registration_satisfaction1645,48471 -registration_satisfaction(r393,h).registration_satisfaction1646,48506 -registration_satisfaction(r393,h).registration_satisfaction1646,48506 -registration_satisfaction(r394,h).registration_satisfaction1647,48541 -registration_satisfaction(r394,h).registration_satisfaction1647,48541 -registration_satisfaction(r395,h).registration_satisfaction1648,48576 -registration_satisfaction(r395,h).registration_satisfaction1648,48576 -registration_satisfaction(r396,h).registration_satisfaction1649,48611 -registration_satisfaction(r396,h).registration_satisfaction1649,48611 -registration_satisfaction(r397,h).registration_satisfaction1650,48646 -registration_satisfaction(r397,h).registration_satisfaction1650,48646 -registration_satisfaction(r398,l).registration_satisfaction1651,48681 -registration_satisfaction(r398,l).registration_satisfaction1651,48681 -registration_satisfaction(r399,h).registration_satisfaction1652,48716 -registration_satisfaction(r399,h).registration_satisfaction1652,48716 -registration_satisfaction(r400,h).registration_satisfaction1653,48751 -registration_satisfaction(r400,h).registration_satisfaction1653,48751 -registration_satisfaction(r401,l).registration_satisfaction1654,48786 -registration_satisfaction(r401,l).registration_satisfaction1654,48786 -registration_satisfaction(r402,h).registration_satisfaction1655,48821 -registration_satisfaction(r402,h).registration_satisfaction1655,48821 -registration_satisfaction(r403,h).registration_satisfaction1656,48856 -registration_satisfaction(r403,h).registration_satisfaction1656,48856 -registration_satisfaction(r404,h).registration_satisfaction1657,48891 -registration_satisfaction(r404,h).registration_satisfaction1657,48891 -registration_satisfaction(r405,h).registration_satisfaction1658,48926 -registration_satisfaction(r405,h).registration_satisfaction1658,48926 -registration_satisfaction(r406,h).registration_satisfaction1659,48961 -registration_satisfaction(r406,h).registration_satisfaction1659,48961 -registration_satisfaction(r407,h).registration_satisfaction1660,48996 -registration_satisfaction(r407,h).registration_satisfaction1660,48996 -registration_satisfaction(r408,h).registration_satisfaction1661,49031 -registration_satisfaction(r408,h).registration_satisfaction1661,49031 -registration_satisfaction(r409,h).registration_satisfaction1662,49066 -registration_satisfaction(r409,h).registration_satisfaction1662,49066 -registration_satisfaction(r410,h).registration_satisfaction1663,49101 -registration_satisfaction(r410,h).registration_satisfaction1663,49101 -registration_satisfaction(r411,l).registration_satisfaction1664,49136 -registration_satisfaction(r411,l).registration_satisfaction1664,49136 -registration_satisfaction(r412,h).registration_satisfaction1665,49171 -registration_satisfaction(r412,h).registration_satisfaction1665,49171 -registration_satisfaction(r413,l).registration_satisfaction1666,49206 -registration_satisfaction(r413,l).registration_satisfaction1666,49206 -registration_satisfaction(r414,h).registration_satisfaction1667,49241 -registration_satisfaction(r414,h).registration_satisfaction1667,49241 -registration_satisfaction(r415,m).registration_satisfaction1668,49276 -registration_satisfaction(r415,m).registration_satisfaction1668,49276 -registration_satisfaction(r416,h).registration_satisfaction1669,49311 -registration_satisfaction(r416,h).registration_satisfaction1669,49311 -registration_satisfaction(r417,h).registration_satisfaction1670,49346 -registration_satisfaction(r417,h).registration_satisfaction1670,49346 -registration_satisfaction(r418,h).registration_satisfaction1671,49381 -registration_satisfaction(r418,h).registration_satisfaction1671,49381 -registration_satisfaction(r419,h).registration_satisfaction1672,49416 -registration_satisfaction(r419,h).registration_satisfaction1672,49416 -registration_satisfaction(r420,h).registration_satisfaction1673,49451 -registration_satisfaction(r420,h).registration_satisfaction1673,49451 -registration_satisfaction(r421,h).registration_satisfaction1674,49486 -registration_satisfaction(r421,h).registration_satisfaction1674,49486 -registration_satisfaction(r422,m).registration_satisfaction1675,49521 -registration_satisfaction(r422,m).registration_satisfaction1675,49521 -registration_satisfaction(r423,h).registration_satisfaction1676,49556 -registration_satisfaction(r423,h).registration_satisfaction1676,49556 -registration_satisfaction(r424,h).registration_satisfaction1677,49591 -registration_satisfaction(r424,h).registration_satisfaction1677,49591 -registration_satisfaction(r425,h).registration_satisfaction1678,49626 -registration_satisfaction(r425,h).registration_satisfaction1678,49626 -registration_satisfaction(r426,l).registration_satisfaction1679,49661 -registration_satisfaction(r426,l).registration_satisfaction1679,49661 -registration_satisfaction(r427,h).registration_satisfaction1680,49696 -registration_satisfaction(r427,h).registration_satisfaction1680,49696 -registration_satisfaction(r428,h).registration_satisfaction1681,49731 -registration_satisfaction(r428,h).registration_satisfaction1681,49731 -registration_satisfaction(r429,h).registration_satisfaction1682,49766 -registration_satisfaction(r429,h).registration_satisfaction1682,49766 -registration_satisfaction(r430,l).registration_satisfaction1683,49801 -registration_satisfaction(r430,l).registration_satisfaction1683,49801 -registration_satisfaction(r431,m).registration_satisfaction1684,49836 -registration_satisfaction(r431,m).registration_satisfaction1684,49836 -registration_satisfaction(r432,h).registration_satisfaction1685,49871 -registration_satisfaction(r432,h).registration_satisfaction1685,49871 -registration_satisfaction(r433,h).registration_satisfaction1686,49906 -registration_satisfaction(r433,h).registration_satisfaction1686,49906 -registration_satisfaction(r434,h).registration_satisfaction1687,49941 -registration_satisfaction(r434,h).registration_satisfaction1687,49941 -registration_satisfaction(r435,m).registration_satisfaction1688,49976 -registration_satisfaction(r435,m).registration_satisfaction1688,49976 -registration_satisfaction(r436,h).registration_satisfaction1689,50011 -registration_satisfaction(r436,h).registration_satisfaction1689,50011 -registration_satisfaction(r437,h).registration_satisfaction1690,50046 -registration_satisfaction(r437,h).registration_satisfaction1690,50046 -registration_satisfaction(r438,l).registration_satisfaction1691,50081 -registration_satisfaction(r438,l).registration_satisfaction1691,50081 -registration_satisfaction(r439,h).registration_satisfaction1692,50116 -registration_satisfaction(r439,h).registration_satisfaction1692,50116 -registration_satisfaction(r440,h).registration_satisfaction1693,50151 -registration_satisfaction(r440,h).registration_satisfaction1693,50151 -registration_satisfaction(r441,h).registration_satisfaction1694,50186 -registration_satisfaction(r441,h).registration_satisfaction1694,50186 -registration_satisfaction(r442,m).registration_satisfaction1695,50221 -registration_satisfaction(r442,m).registration_satisfaction1695,50221 -registration_satisfaction(r443,h).registration_satisfaction1696,50256 -registration_satisfaction(r443,h).registration_satisfaction1696,50256 -registration_satisfaction(r444,h).registration_satisfaction1697,50291 -registration_satisfaction(r444,h).registration_satisfaction1697,50291 -registration_satisfaction(r445,h).registration_satisfaction1698,50326 -registration_satisfaction(r445,h).registration_satisfaction1698,50326 -registration_satisfaction(r446,h).registration_satisfaction1699,50361 -registration_satisfaction(r446,h).registration_satisfaction1699,50361 -registration_satisfaction(r447,m).registration_satisfaction1700,50396 -registration_satisfaction(r447,m).registration_satisfaction1700,50396 -registration_satisfaction(r448,l).registration_satisfaction1701,50431 -registration_satisfaction(r448,l).registration_satisfaction1701,50431 -registration_satisfaction(r449,h).registration_satisfaction1702,50466 -registration_satisfaction(r449,h).registration_satisfaction1702,50466 -registration_satisfaction(r450,h).registration_satisfaction1703,50501 -registration_satisfaction(r450,h).registration_satisfaction1703,50501 -registration_satisfaction(r451,h).registration_satisfaction1704,50536 -registration_satisfaction(r451,h).registration_satisfaction1704,50536 -registration_satisfaction(r452,h).registration_satisfaction1705,50571 -registration_satisfaction(r452,h).registration_satisfaction1705,50571 -registration_satisfaction(r453,h).registration_satisfaction1706,50606 -registration_satisfaction(r453,h).registration_satisfaction1706,50606 -registration_satisfaction(r454,l).registration_satisfaction1707,50641 -registration_satisfaction(r454,l).registration_satisfaction1707,50641 -registration_satisfaction(r455,m).registration_satisfaction1708,50676 -registration_satisfaction(r455,m).registration_satisfaction1708,50676 -registration_satisfaction(r456,h).registration_satisfaction1709,50711 -registration_satisfaction(r456,h).registration_satisfaction1709,50711 -registration_satisfaction(r457,h).registration_satisfaction1710,50746 -registration_satisfaction(r457,h).registration_satisfaction1710,50746 -registration_satisfaction(r458,m).registration_satisfaction1711,50781 -registration_satisfaction(r458,m).registration_satisfaction1711,50781 -registration_satisfaction(r459,m).registration_satisfaction1712,50816 -registration_satisfaction(r459,m).registration_satisfaction1712,50816 -registration_satisfaction(r460,l).registration_satisfaction1713,50851 -registration_satisfaction(r460,l).registration_satisfaction1713,50851 -registration_satisfaction(r461,h).registration_satisfaction1714,50886 -registration_satisfaction(r461,h).registration_satisfaction1714,50886 -registration_satisfaction(r462,h).registration_satisfaction1715,50921 -registration_satisfaction(r462,h).registration_satisfaction1715,50921 -registration_satisfaction(r463,l).registration_satisfaction1716,50956 -registration_satisfaction(r463,l).registration_satisfaction1716,50956 -registration_satisfaction(r464,h).registration_satisfaction1717,50991 -registration_satisfaction(r464,h).registration_satisfaction1717,50991 -registration_satisfaction(r465,h).registration_satisfaction1718,51026 -registration_satisfaction(r465,h).registration_satisfaction1718,51026 -registration_satisfaction(r466,l).registration_satisfaction1719,51061 -registration_satisfaction(r466,l).registration_satisfaction1719,51061 -registration_satisfaction(r467,h).registration_satisfaction1720,51096 -registration_satisfaction(r467,h).registration_satisfaction1720,51096 -registration_satisfaction(r468,h).registration_satisfaction1721,51131 -registration_satisfaction(r468,h).registration_satisfaction1721,51131 -registration_satisfaction(r469,h).registration_satisfaction1722,51166 -registration_satisfaction(r469,h).registration_satisfaction1722,51166 -registration_satisfaction(r470,h).registration_satisfaction1723,51201 -registration_satisfaction(r470,h).registration_satisfaction1723,51201 -registration_satisfaction(r471,h).registration_satisfaction1724,51236 -registration_satisfaction(r471,h).registration_satisfaction1724,51236 -registration_satisfaction(r472,h).registration_satisfaction1725,51271 -registration_satisfaction(r472,h).registration_satisfaction1725,51271 -registration_satisfaction(r473,l).registration_satisfaction1726,51306 -registration_satisfaction(r473,l).registration_satisfaction1726,51306 -registration_satisfaction(r474,m).registration_satisfaction1727,51341 -registration_satisfaction(r474,m).registration_satisfaction1727,51341 -registration_satisfaction(r475,h).registration_satisfaction1728,51376 -registration_satisfaction(r475,h).registration_satisfaction1728,51376 -registration_satisfaction(r476,l).registration_satisfaction1729,51411 -registration_satisfaction(r476,l).registration_satisfaction1729,51411 -registration_satisfaction(r477,m).registration_satisfaction1730,51446 -registration_satisfaction(r477,m).registration_satisfaction1730,51446 -registration_satisfaction(r478,h).registration_satisfaction1731,51481 -registration_satisfaction(r478,h).registration_satisfaction1731,51481 -registration_satisfaction(r479,l).registration_satisfaction1732,51516 -registration_satisfaction(r479,l).registration_satisfaction1732,51516 -registration_satisfaction(r480,h).registration_satisfaction1733,51551 -registration_satisfaction(r480,h).registration_satisfaction1733,51551 -registration_satisfaction(r481,m).registration_satisfaction1734,51586 -registration_satisfaction(r481,m).registration_satisfaction1734,51586 -registration_satisfaction(r482,h).registration_satisfaction1735,51621 -registration_satisfaction(r482,h).registration_satisfaction1735,51621 -registration_satisfaction(r483,h).registration_satisfaction1736,51656 -registration_satisfaction(r483,h).registration_satisfaction1736,51656 -registration_satisfaction(r484,m).registration_satisfaction1737,51691 -registration_satisfaction(r484,m).registration_satisfaction1737,51691 -registration_satisfaction(r485,h).registration_satisfaction1738,51726 -registration_satisfaction(r485,h).registration_satisfaction1738,51726 -registration_satisfaction(r486,h).registration_satisfaction1739,51761 -registration_satisfaction(r486,h).registration_satisfaction1739,51761 -registration_satisfaction(r487,h).registration_satisfaction1740,51796 -registration_satisfaction(r487,h).registration_satisfaction1740,51796 -registration_satisfaction(r488,l).registration_satisfaction1741,51831 -registration_satisfaction(r488,l).registration_satisfaction1741,51831 -registration_satisfaction(r489,m).registration_satisfaction1742,51866 -registration_satisfaction(r489,m).registration_satisfaction1742,51866 -registration_satisfaction(r490,m).registration_satisfaction1743,51901 -registration_satisfaction(r490,m).registration_satisfaction1743,51901 -registration_satisfaction(r491,l).registration_satisfaction1744,51936 -registration_satisfaction(r491,l).registration_satisfaction1744,51936 -registration_satisfaction(r492,h).registration_satisfaction1745,51971 -registration_satisfaction(r492,h).registration_satisfaction1745,51971 -registration_satisfaction(r493,h).registration_satisfaction1746,52006 -registration_satisfaction(r493,h).registration_satisfaction1746,52006 -registration_satisfaction(r494,m).registration_satisfaction1747,52041 -registration_satisfaction(r494,m).registration_satisfaction1747,52041 -registration_satisfaction(r495,h).registration_satisfaction1748,52076 -registration_satisfaction(r495,h).registration_satisfaction1748,52076 -registration_satisfaction(r496,h).registration_satisfaction1749,52111 -registration_satisfaction(r496,h).registration_satisfaction1749,52111 -registration_satisfaction(r497,h).registration_satisfaction1750,52146 -registration_satisfaction(r497,h).registration_satisfaction1750,52146 -registration_satisfaction(r498,l).registration_satisfaction1751,52181 -registration_satisfaction(r498,l).registration_satisfaction1751,52181 -registration_satisfaction(r499,h).registration_satisfaction1752,52216 -registration_satisfaction(r499,h).registration_satisfaction1752,52216 -registration_satisfaction(r500,m).registration_satisfaction1753,52251 -registration_satisfaction(r500,m).registration_satisfaction1753,52251 -registration_satisfaction(r501,h).registration_satisfaction1754,52286 -registration_satisfaction(r501,h).registration_satisfaction1754,52286 -registration_satisfaction(r502,h).registration_satisfaction1755,52321 -registration_satisfaction(r502,h).registration_satisfaction1755,52321 -registration_satisfaction(r503,l).registration_satisfaction1756,52356 -registration_satisfaction(r503,l).registration_satisfaction1756,52356 -registration_satisfaction(r504,m).registration_satisfaction1757,52391 -registration_satisfaction(r504,m).registration_satisfaction1757,52391 -registration_satisfaction(r505,h).registration_satisfaction1758,52426 -registration_satisfaction(r505,h).registration_satisfaction1758,52426 -registration_satisfaction(r506,h).registration_satisfaction1759,52461 -registration_satisfaction(r506,h).registration_satisfaction1759,52461 -registration_satisfaction(r507,h).registration_satisfaction1760,52496 -registration_satisfaction(r507,h).registration_satisfaction1760,52496 -registration_satisfaction(r508,l).registration_satisfaction1761,52531 -registration_satisfaction(r508,l).registration_satisfaction1761,52531 -registration_satisfaction(r509,m).registration_satisfaction1762,52566 -registration_satisfaction(r509,m).registration_satisfaction1762,52566 -registration_satisfaction(r510,h).registration_satisfaction1763,52601 -registration_satisfaction(r510,h).registration_satisfaction1763,52601 -registration_satisfaction(r511,l).registration_satisfaction1764,52636 -registration_satisfaction(r511,l).registration_satisfaction1764,52636 -registration_satisfaction(r512,h).registration_satisfaction1765,52671 -registration_satisfaction(r512,h).registration_satisfaction1765,52671 -registration_satisfaction(r513,h).registration_satisfaction1766,52706 -registration_satisfaction(r513,h).registration_satisfaction1766,52706 -registration_satisfaction(r514,h).registration_satisfaction1767,52741 -registration_satisfaction(r514,h).registration_satisfaction1767,52741 -registration_satisfaction(r515,l).registration_satisfaction1768,52776 -registration_satisfaction(r515,l).registration_satisfaction1768,52776 -registration_satisfaction(r516,h).registration_satisfaction1769,52811 -registration_satisfaction(r516,h).registration_satisfaction1769,52811 -registration_satisfaction(r517,m).registration_satisfaction1770,52846 -registration_satisfaction(r517,m).registration_satisfaction1770,52846 -registration_satisfaction(r518,h).registration_satisfaction1771,52881 -registration_satisfaction(r518,h).registration_satisfaction1771,52881 -registration_satisfaction(r519,h).registration_satisfaction1772,52916 -registration_satisfaction(r519,h).registration_satisfaction1772,52916 -registration_satisfaction(r520,h).registration_satisfaction1773,52951 -registration_satisfaction(r520,h).registration_satisfaction1773,52951 -registration_satisfaction(r521,h).registration_satisfaction1774,52986 -registration_satisfaction(r521,h).registration_satisfaction1774,52986 -registration_satisfaction(r522,h).registration_satisfaction1775,53021 -registration_satisfaction(r522,h).registration_satisfaction1775,53021 -registration_satisfaction(r523,h).registration_satisfaction1776,53056 -registration_satisfaction(r523,h).registration_satisfaction1776,53056 -registration_satisfaction(r524,h).registration_satisfaction1777,53091 -registration_satisfaction(r524,h).registration_satisfaction1777,53091 -registration_satisfaction(r525,l).registration_satisfaction1778,53126 -registration_satisfaction(r525,l).registration_satisfaction1778,53126 -registration_satisfaction(r526,h).registration_satisfaction1779,53161 -registration_satisfaction(r526,h).registration_satisfaction1779,53161 -registration_satisfaction(r527,l).registration_satisfaction1780,53196 -registration_satisfaction(r527,l).registration_satisfaction1780,53196 -registration_satisfaction(r528,h).registration_satisfaction1781,53231 -registration_satisfaction(r528,h).registration_satisfaction1781,53231 -registration_satisfaction(r529,h).registration_satisfaction1782,53266 -registration_satisfaction(r529,h).registration_satisfaction1782,53266 -registration_satisfaction(r530,h).registration_satisfaction1783,53301 -registration_satisfaction(r530,h).registration_satisfaction1783,53301 -registration_satisfaction(r531,m).registration_satisfaction1784,53336 -registration_satisfaction(r531,m).registration_satisfaction1784,53336 -registration_satisfaction(r532,h).registration_satisfaction1785,53371 -registration_satisfaction(r532,h).registration_satisfaction1785,53371 -registration_satisfaction(r533,h).registration_satisfaction1786,53406 -registration_satisfaction(r533,h).registration_satisfaction1786,53406 -registration_satisfaction(r534,l).registration_satisfaction1787,53441 -registration_satisfaction(r534,l).registration_satisfaction1787,53441 -registration_satisfaction(r535,m).registration_satisfaction1788,53476 -registration_satisfaction(r535,m).registration_satisfaction1788,53476 -registration_satisfaction(r536,h).registration_satisfaction1789,53511 -registration_satisfaction(r536,h).registration_satisfaction1789,53511 -registration_satisfaction(r537,h).registration_satisfaction1790,53546 -registration_satisfaction(r537,h).registration_satisfaction1790,53546 -registration_satisfaction(r538,h).registration_satisfaction1791,53581 -registration_satisfaction(r538,h).registration_satisfaction1791,53581 -registration_satisfaction(r539,h).registration_satisfaction1792,53616 -registration_satisfaction(r539,h).registration_satisfaction1792,53616 -registration_satisfaction(r540,m).registration_satisfaction1793,53651 -registration_satisfaction(r540,m).registration_satisfaction1793,53651 -registration_satisfaction(r541,h).registration_satisfaction1794,53686 -registration_satisfaction(r541,h).registration_satisfaction1794,53686 -registration_satisfaction(r542,h).registration_satisfaction1795,53721 -registration_satisfaction(r542,h).registration_satisfaction1795,53721 -registration_satisfaction(r543,h).registration_satisfaction1796,53756 -registration_satisfaction(r543,h).registration_satisfaction1796,53756 -registration_satisfaction(r544,h).registration_satisfaction1797,53791 -registration_satisfaction(r544,h).registration_satisfaction1797,53791 -registration_satisfaction(r545,h).registration_satisfaction1798,53826 -registration_satisfaction(r545,h).registration_satisfaction1798,53826 -registration_satisfaction(r546,h).registration_satisfaction1799,53861 -registration_satisfaction(r546,h).registration_satisfaction1799,53861 -registration_satisfaction(r547,l).registration_satisfaction1800,53896 -registration_satisfaction(r547,l).registration_satisfaction1800,53896 -registration_satisfaction(r548,h).registration_satisfaction1801,53931 -registration_satisfaction(r548,h).registration_satisfaction1801,53931 -registration_satisfaction(r549,h).registration_satisfaction1802,53966 -registration_satisfaction(r549,h).registration_satisfaction1802,53966 -registration_satisfaction(r550,h).registration_satisfaction1803,54001 -registration_satisfaction(r550,h).registration_satisfaction1803,54001 -registration_satisfaction(r551,h).registration_satisfaction1804,54036 -registration_satisfaction(r551,h).registration_satisfaction1804,54036 -registration_satisfaction(r552,m).registration_satisfaction1805,54071 -registration_satisfaction(r552,m).registration_satisfaction1805,54071 -registration_satisfaction(r553,m).registration_satisfaction1806,54106 -registration_satisfaction(r553,m).registration_satisfaction1806,54106 -registration_satisfaction(r554,l).registration_satisfaction1807,54141 -registration_satisfaction(r554,l).registration_satisfaction1807,54141 -registration_satisfaction(r555,m).registration_satisfaction1808,54176 -registration_satisfaction(r555,m).registration_satisfaction1808,54176 -registration_satisfaction(r556,h).registration_satisfaction1809,54211 -registration_satisfaction(r556,h).registration_satisfaction1809,54211 -registration_satisfaction(r557,h).registration_satisfaction1810,54246 -registration_satisfaction(r557,h).registration_satisfaction1810,54246 -registration_satisfaction(r558,h).registration_satisfaction1811,54281 -registration_satisfaction(r558,h).registration_satisfaction1811,54281 -registration_satisfaction(r559,h).registration_satisfaction1812,54316 -registration_satisfaction(r559,h).registration_satisfaction1812,54316 -registration_satisfaction(r560,h).registration_satisfaction1813,54351 -registration_satisfaction(r560,h).registration_satisfaction1813,54351 -registration_satisfaction(r561,h).registration_satisfaction1814,54386 -registration_satisfaction(r561,h).registration_satisfaction1814,54386 -registration_satisfaction(r562,h).registration_satisfaction1815,54421 -registration_satisfaction(r562,h).registration_satisfaction1815,54421 -registration_satisfaction(r563,m).registration_satisfaction1816,54456 -registration_satisfaction(r563,m).registration_satisfaction1816,54456 -registration_satisfaction(r564,h).registration_satisfaction1817,54491 -registration_satisfaction(r564,h).registration_satisfaction1817,54491 -registration_satisfaction(r565,l).registration_satisfaction1818,54526 -registration_satisfaction(r565,l).registration_satisfaction1818,54526 -registration_satisfaction(r566,l).registration_satisfaction1819,54561 -registration_satisfaction(r566,l).registration_satisfaction1819,54561 -registration_satisfaction(r567,h).registration_satisfaction1820,54596 -registration_satisfaction(r567,h).registration_satisfaction1820,54596 -registration_satisfaction(r568,h).registration_satisfaction1821,54631 -registration_satisfaction(r568,h).registration_satisfaction1821,54631 -registration_satisfaction(r569,h).registration_satisfaction1822,54666 -registration_satisfaction(r569,h).registration_satisfaction1822,54666 -registration_satisfaction(r570,h).registration_satisfaction1823,54701 -registration_satisfaction(r570,h).registration_satisfaction1823,54701 -registration_satisfaction(r571,l).registration_satisfaction1824,54736 -registration_satisfaction(r571,l).registration_satisfaction1824,54736 -registration_satisfaction(r572,m).registration_satisfaction1825,54771 -registration_satisfaction(r572,m).registration_satisfaction1825,54771 -registration_satisfaction(r573,h).registration_satisfaction1826,54806 -registration_satisfaction(r573,h).registration_satisfaction1826,54806 -registration_satisfaction(r574,m).registration_satisfaction1827,54841 -registration_satisfaction(r574,m).registration_satisfaction1827,54841 -registration_satisfaction(r575,h).registration_satisfaction1828,54876 -registration_satisfaction(r575,h).registration_satisfaction1828,54876 -registration_satisfaction(r576,h).registration_satisfaction1829,54911 -registration_satisfaction(r576,h).registration_satisfaction1829,54911 -registration_satisfaction(r577,h).registration_satisfaction1830,54946 -registration_satisfaction(r577,h).registration_satisfaction1830,54946 -registration_satisfaction(r578,l).registration_satisfaction1831,54981 -registration_satisfaction(r578,l).registration_satisfaction1831,54981 -registration_satisfaction(r579,h).registration_satisfaction1832,55016 -registration_satisfaction(r579,h).registration_satisfaction1832,55016 -registration_satisfaction(r580,m).registration_satisfaction1833,55051 -registration_satisfaction(r580,m).registration_satisfaction1833,55051 -registration_satisfaction(r581,h).registration_satisfaction1834,55086 -registration_satisfaction(r581,h).registration_satisfaction1834,55086 -registration_satisfaction(r582,h).registration_satisfaction1835,55121 -registration_satisfaction(r582,h).registration_satisfaction1835,55121 -registration_satisfaction(r583,h).registration_satisfaction1836,55156 -registration_satisfaction(r583,h).registration_satisfaction1836,55156 -registration_satisfaction(r584,h).registration_satisfaction1837,55191 -registration_satisfaction(r584,h).registration_satisfaction1837,55191 -registration_satisfaction(r585,h).registration_satisfaction1838,55226 -registration_satisfaction(r585,h).registration_satisfaction1838,55226 -registration_satisfaction(r586,m).registration_satisfaction1839,55261 -registration_satisfaction(r586,m).registration_satisfaction1839,55261 -registration_satisfaction(r587,m).registration_satisfaction1840,55296 -registration_satisfaction(r587,m).registration_satisfaction1840,55296 -registration_satisfaction(r588,l).registration_satisfaction1841,55331 -registration_satisfaction(r588,l).registration_satisfaction1841,55331 -registration_satisfaction(r589,l).registration_satisfaction1842,55366 -registration_satisfaction(r589,l).registration_satisfaction1842,55366 -registration_satisfaction(r590,h).registration_satisfaction1843,55401 -registration_satisfaction(r590,h).registration_satisfaction1843,55401 -registration_satisfaction(r591,h).registration_satisfaction1844,55436 -registration_satisfaction(r591,h).registration_satisfaction1844,55436 -registration_satisfaction(r592,h).registration_satisfaction1845,55471 -registration_satisfaction(r592,h).registration_satisfaction1845,55471 -registration_satisfaction(r593,h).registration_satisfaction1846,55506 -registration_satisfaction(r593,h).registration_satisfaction1846,55506 -registration_satisfaction(r594,l).registration_satisfaction1847,55541 -registration_satisfaction(r594,l).registration_satisfaction1847,55541 -registration_satisfaction(r595,m).registration_satisfaction1848,55576 -registration_satisfaction(r595,m).registration_satisfaction1848,55576 -registration_satisfaction(r596,h).registration_satisfaction1849,55611 -registration_satisfaction(r596,h).registration_satisfaction1849,55611 -registration_satisfaction(r597,h).registration_satisfaction1850,55646 -registration_satisfaction(r597,h).registration_satisfaction1850,55646 -registration_satisfaction(r598,h).registration_satisfaction1851,55681 -registration_satisfaction(r598,h).registration_satisfaction1851,55681 -registration_satisfaction(r599,h).registration_satisfaction1852,55716 -registration_satisfaction(r599,h).registration_satisfaction1852,55716 -registration_satisfaction(r600,m).registration_satisfaction1853,55751 -registration_satisfaction(r600,m).registration_satisfaction1853,55751 -registration_satisfaction(r601,m).registration_satisfaction1854,55786 -registration_satisfaction(r601,m).registration_satisfaction1854,55786 -registration_satisfaction(r602,h).registration_satisfaction1855,55821 -registration_satisfaction(r602,h).registration_satisfaction1855,55821 -registration_satisfaction(r603,h).registration_satisfaction1856,55856 -registration_satisfaction(r603,h).registration_satisfaction1856,55856 -registration_satisfaction(r604,l).registration_satisfaction1857,55891 -registration_satisfaction(r604,l).registration_satisfaction1857,55891 -registration_satisfaction(r605,h).registration_satisfaction1858,55926 -registration_satisfaction(r605,h).registration_satisfaction1858,55926 -registration_satisfaction(r606,h).registration_satisfaction1859,55961 -registration_satisfaction(r606,h).registration_satisfaction1859,55961 -registration_satisfaction(r607,l).registration_satisfaction1860,55996 -registration_satisfaction(r607,l).registration_satisfaction1860,55996 -registration_satisfaction(r608,h).registration_satisfaction1861,56031 -registration_satisfaction(r608,h).registration_satisfaction1861,56031 -registration_satisfaction(r609,h).registration_satisfaction1862,56066 -registration_satisfaction(r609,h).registration_satisfaction1862,56066 -registration_satisfaction(r610,h).registration_satisfaction1863,56101 -registration_satisfaction(r610,h).registration_satisfaction1863,56101 -registration_satisfaction(r611,h).registration_satisfaction1864,56136 -registration_satisfaction(r611,h).registration_satisfaction1864,56136 -registration_satisfaction(r612,l).registration_satisfaction1865,56171 -registration_satisfaction(r612,l).registration_satisfaction1865,56171 -registration_satisfaction(r613,h).registration_satisfaction1866,56206 -registration_satisfaction(r613,h).registration_satisfaction1866,56206 -registration_satisfaction(r614,m).registration_satisfaction1867,56241 -registration_satisfaction(r614,m).registration_satisfaction1867,56241 -registration_satisfaction(r615,l).registration_satisfaction1868,56276 -registration_satisfaction(r615,l).registration_satisfaction1868,56276 -registration_satisfaction(r616,h).registration_satisfaction1869,56311 -registration_satisfaction(r616,h).registration_satisfaction1869,56311 -registration_satisfaction(r617,h).registration_satisfaction1870,56346 -registration_satisfaction(r617,h).registration_satisfaction1870,56346 -registration_satisfaction(r618,h).registration_satisfaction1871,56381 -registration_satisfaction(r618,h).registration_satisfaction1871,56381 -registration_satisfaction(r619,h).registration_satisfaction1872,56416 -registration_satisfaction(r619,h).registration_satisfaction1872,56416 -registration_satisfaction(r620,h).registration_satisfaction1873,56451 -registration_satisfaction(r620,h).registration_satisfaction1873,56451 -registration_satisfaction(r621,h).registration_satisfaction1874,56486 -registration_satisfaction(r621,h).registration_satisfaction1874,56486 -registration_satisfaction(r622,h).registration_satisfaction1875,56521 -registration_satisfaction(r622,h).registration_satisfaction1875,56521 -registration_satisfaction(r623,l).registration_satisfaction1876,56556 -registration_satisfaction(r623,l).registration_satisfaction1876,56556 -registration_satisfaction(r624,m).registration_satisfaction1877,56591 -registration_satisfaction(r624,m).registration_satisfaction1877,56591 -registration_satisfaction(r625,l).registration_satisfaction1878,56626 -registration_satisfaction(r625,l).registration_satisfaction1878,56626 -registration_satisfaction(r626,h).registration_satisfaction1879,56661 -registration_satisfaction(r626,h).registration_satisfaction1879,56661 -registration_satisfaction(r627,h).registration_satisfaction1880,56696 -registration_satisfaction(r627,h).registration_satisfaction1880,56696 -registration_satisfaction(r628,h).registration_satisfaction1881,56731 -registration_satisfaction(r628,h).registration_satisfaction1881,56731 -registration_satisfaction(r629,h).registration_satisfaction1882,56766 -registration_satisfaction(r629,h).registration_satisfaction1882,56766 -registration_satisfaction(r630,h).registration_satisfaction1883,56801 -registration_satisfaction(r630,h).registration_satisfaction1883,56801 -registration_satisfaction(r631,h).registration_satisfaction1884,56836 -registration_satisfaction(r631,h).registration_satisfaction1884,56836 -registration_satisfaction(r632,h).registration_satisfaction1885,56871 -registration_satisfaction(r632,h).registration_satisfaction1885,56871 -registration_satisfaction(r633,h).registration_satisfaction1886,56906 -registration_satisfaction(r633,h).registration_satisfaction1886,56906 -registration_satisfaction(r634,h).registration_satisfaction1887,56941 -registration_satisfaction(r634,h).registration_satisfaction1887,56941 -registration_satisfaction(r635,m).registration_satisfaction1888,56976 -registration_satisfaction(r635,m).registration_satisfaction1888,56976 -registration_satisfaction(r636,l).registration_satisfaction1889,57011 -registration_satisfaction(r636,l).registration_satisfaction1889,57011 -registration_satisfaction(r637,m).registration_satisfaction1890,57046 -registration_satisfaction(r637,m).registration_satisfaction1890,57046 -registration_satisfaction(r638,h).registration_satisfaction1891,57081 -registration_satisfaction(r638,h).registration_satisfaction1891,57081 -registration_satisfaction(r639,h).registration_satisfaction1892,57116 -registration_satisfaction(r639,h).registration_satisfaction1892,57116 -registration_satisfaction(r640,h).registration_satisfaction1893,57151 -registration_satisfaction(r640,h).registration_satisfaction1893,57151 -registration_satisfaction(r641,h).registration_satisfaction1894,57186 -registration_satisfaction(r641,h).registration_satisfaction1894,57186 -registration_satisfaction(r642,h).registration_satisfaction1895,57221 -registration_satisfaction(r642,h).registration_satisfaction1895,57221 -registration_satisfaction(r643,h).registration_satisfaction1896,57256 -registration_satisfaction(r643,h).registration_satisfaction1896,57256 -registration_satisfaction(r644,h).registration_satisfaction1897,57291 -registration_satisfaction(r644,h).registration_satisfaction1897,57291 -registration_satisfaction(r645,h).registration_satisfaction1898,57326 -registration_satisfaction(r645,h).registration_satisfaction1898,57326 -registration_satisfaction(r646,h).registration_satisfaction1899,57361 -registration_satisfaction(r646,h).registration_satisfaction1899,57361 -registration_satisfaction(r647,h).registration_satisfaction1900,57396 -registration_satisfaction(r647,h).registration_satisfaction1900,57396 -registration_satisfaction(r648,h).registration_satisfaction1901,57431 -registration_satisfaction(r648,h).registration_satisfaction1901,57431 -registration_satisfaction(r649,h).registration_satisfaction1902,57466 -registration_satisfaction(r649,h).registration_satisfaction1902,57466 -registration_satisfaction(r650,h).registration_satisfaction1903,57501 -registration_satisfaction(r650,h).registration_satisfaction1903,57501 -registration_satisfaction(r651,h).registration_satisfaction1904,57536 -registration_satisfaction(r651,h).registration_satisfaction1904,57536 -registration_satisfaction(r652,m).registration_satisfaction1905,57571 -registration_satisfaction(r652,m).registration_satisfaction1905,57571 -registration_satisfaction(r653,l).registration_satisfaction1906,57606 -registration_satisfaction(r653,l).registration_satisfaction1906,57606 -registration_satisfaction(r654,h).registration_satisfaction1907,57641 -registration_satisfaction(r654,h).registration_satisfaction1907,57641 -registration_satisfaction(r655,h).registration_satisfaction1908,57676 -registration_satisfaction(r655,h).registration_satisfaction1908,57676 -registration_satisfaction(r656,m).registration_satisfaction1909,57711 -registration_satisfaction(r656,m).registration_satisfaction1909,57711 -registration_satisfaction(r657,h).registration_satisfaction1910,57746 -registration_satisfaction(r657,h).registration_satisfaction1910,57746 -registration_satisfaction(r658,h).registration_satisfaction1911,57781 -registration_satisfaction(r658,h).registration_satisfaction1911,57781 -registration_satisfaction(r659,h).registration_satisfaction1912,57816 -registration_satisfaction(r659,h).registration_satisfaction1912,57816 -registration_satisfaction(r660,h).registration_satisfaction1913,57851 -registration_satisfaction(r660,h).registration_satisfaction1913,57851 -registration_satisfaction(r661,h).registration_satisfaction1914,57886 -registration_satisfaction(r661,h).registration_satisfaction1914,57886 -registration_satisfaction(r662,h).registration_satisfaction1915,57921 -registration_satisfaction(r662,h).registration_satisfaction1915,57921 -registration_satisfaction(r663,h).registration_satisfaction1916,57956 -registration_satisfaction(r663,h).registration_satisfaction1916,57956 -registration_satisfaction(r664,l).registration_satisfaction1917,57991 -registration_satisfaction(r664,l).registration_satisfaction1917,57991 -registration_satisfaction(r665,h).registration_satisfaction1918,58026 -registration_satisfaction(r665,h).registration_satisfaction1918,58026 -registration_satisfaction(r666,l).registration_satisfaction1919,58061 -registration_satisfaction(r666,l).registration_satisfaction1919,58061 -registration_satisfaction(r667,h).registration_satisfaction1920,58096 -registration_satisfaction(r667,h).registration_satisfaction1920,58096 -registration_satisfaction(r668,l).registration_satisfaction1921,58131 -registration_satisfaction(r668,l).registration_satisfaction1921,58131 -registration_satisfaction(r669,h).registration_satisfaction1922,58166 -registration_satisfaction(r669,h).registration_satisfaction1922,58166 -registration_satisfaction(r670,h).registration_satisfaction1923,58201 -registration_satisfaction(r670,h).registration_satisfaction1923,58201 -registration_satisfaction(r671,h).registration_satisfaction1924,58236 -registration_satisfaction(r671,h).registration_satisfaction1924,58236 -registration_satisfaction(r672,l).registration_satisfaction1925,58271 -registration_satisfaction(r672,l).registration_satisfaction1925,58271 -registration_satisfaction(r673,l).registration_satisfaction1926,58306 -registration_satisfaction(r673,l).registration_satisfaction1926,58306 -registration_satisfaction(r674,h).registration_satisfaction1927,58341 -registration_satisfaction(r674,h).registration_satisfaction1927,58341 -registration_satisfaction(r675,l).registration_satisfaction1928,58376 -registration_satisfaction(r675,l).registration_satisfaction1928,58376 -registration_satisfaction(r676,h).registration_satisfaction1929,58411 -registration_satisfaction(r676,h).registration_satisfaction1929,58411 -registration_satisfaction(r677,h).registration_satisfaction1930,58446 -registration_satisfaction(r677,h).registration_satisfaction1930,58446 -registration_satisfaction(r678,h).registration_satisfaction1931,58481 -registration_satisfaction(r678,h).registration_satisfaction1931,58481 -registration_satisfaction(r679,h).registration_satisfaction1932,58516 -registration_satisfaction(r679,h).registration_satisfaction1932,58516 -registration_satisfaction(r680,m).registration_satisfaction1933,58551 -registration_satisfaction(r680,m).registration_satisfaction1933,58551 -registration_satisfaction(r681,h).registration_satisfaction1934,58586 -registration_satisfaction(r681,h).registration_satisfaction1934,58586 -registration_satisfaction(r682,h).registration_satisfaction1935,58621 -registration_satisfaction(r682,h).registration_satisfaction1935,58621 -registration_satisfaction(r683,h).registration_satisfaction1936,58656 -registration_satisfaction(r683,h).registration_satisfaction1936,58656 -registration_satisfaction(r684,m).registration_satisfaction1937,58691 -registration_satisfaction(r684,m).registration_satisfaction1937,58691 -registration_satisfaction(r685,h).registration_satisfaction1938,58726 -registration_satisfaction(r685,h).registration_satisfaction1938,58726 -registration_satisfaction(r686,h).registration_satisfaction1939,58761 -registration_satisfaction(r686,h).registration_satisfaction1939,58761 -registration_satisfaction(r687,l).registration_satisfaction1940,58796 -registration_satisfaction(r687,l).registration_satisfaction1940,58796 -registration_satisfaction(r688,h).registration_satisfaction1941,58831 -registration_satisfaction(r688,h).registration_satisfaction1941,58831 -registration_satisfaction(r689,m).registration_satisfaction1942,58866 -registration_satisfaction(r689,m).registration_satisfaction1942,58866 -registration_satisfaction(r690,h).registration_satisfaction1943,58901 -registration_satisfaction(r690,h).registration_satisfaction1943,58901 -registration_satisfaction(r691,h).registration_satisfaction1944,58936 -registration_satisfaction(r691,h).registration_satisfaction1944,58936 -registration_satisfaction(r692,h).registration_satisfaction1945,58971 -registration_satisfaction(r692,h).registration_satisfaction1945,58971 -registration_satisfaction(r693,h).registration_satisfaction1946,59006 -registration_satisfaction(r693,h).registration_satisfaction1946,59006 -registration_satisfaction(r694,h).registration_satisfaction1947,59041 -registration_satisfaction(r694,h).registration_satisfaction1947,59041 -registration_satisfaction(r695,h).registration_satisfaction1948,59076 -registration_satisfaction(r695,h).registration_satisfaction1948,59076 -registration_satisfaction(r696,h).registration_satisfaction1949,59111 -registration_satisfaction(r696,h).registration_satisfaction1949,59111 -registration_satisfaction(r697,m).registration_satisfaction1950,59146 -registration_satisfaction(r697,m).registration_satisfaction1950,59146 -registration_satisfaction(r698,h).registration_satisfaction1951,59181 -registration_satisfaction(r698,h).registration_satisfaction1951,59181 -registration_satisfaction(r699,h).registration_satisfaction1952,59216 -registration_satisfaction(r699,h).registration_satisfaction1952,59216 -registration_satisfaction(r700,h).registration_satisfaction1953,59251 -registration_satisfaction(r700,h).registration_satisfaction1953,59251 -registration_satisfaction(r701,h).registration_satisfaction1954,59286 -registration_satisfaction(r701,h).registration_satisfaction1954,59286 -registration_satisfaction(r702,h).registration_satisfaction1955,59321 -registration_satisfaction(r702,h).registration_satisfaction1955,59321 -registration_satisfaction(r703,l).registration_satisfaction1956,59356 -registration_satisfaction(r703,l).registration_satisfaction1956,59356 -registration_satisfaction(r704,l).registration_satisfaction1957,59391 -registration_satisfaction(r704,l).registration_satisfaction1957,59391 -registration_satisfaction(r705,l).registration_satisfaction1958,59426 -registration_satisfaction(r705,l).registration_satisfaction1958,59426 -registration_satisfaction(r706,m).registration_satisfaction1959,59461 -registration_satisfaction(r706,m).registration_satisfaction1959,59461 -registration_satisfaction(r707,h).registration_satisfaction1960,59496 -registration_satisfaction(r707,h).registration_satisfaction1960,59496 -registration_satisfaction(r708,l).registration_satisfaction1961,59531 -registration_satisfaction(r708,l).registration_satisfaction1961,59531 -registration_satisfaction(r709,m).registration_satisfaction1962,59566 -registration_satisfaction(r709,m).registration_satisfaction1962,59566 -registration_satisfaction(r710,l).registration_satisfaction1963,59601 -registration_satisfaction(r710,l).registration_satisfaction1963,59601 -registration_satisfaction(r711,h).registration_satisfaction1964,59636 -registration_satisfaction(r711,h).registration_satisfaction1964,59636 -registration_satisfaction(r712,h).registration_satisfaction1965,59671 -registration_satisfaction(r712,h).registration_satisfaction1965,59671 -registration_satisfaction(r713,h).registration_satisfaction1966,59706 -registration_satisfaction(r713,h).registration_satisfaction1966,59706 -registration_satisfaction(r714,m).registration_satisfaction1967,59741 -registration_satisfaction(r714,m).registration_satisfaction1967,59741 -registration_satisfaction(r715,h).registration_satisfaction1968,59776 -registration_satisfaction(r715,h).registration_satisfaction1968,59776 -registration_satisfaction(r716,h).registration_satisfaction1969,59811 -registration_satisfaction(r716,h).registration_satisfaction1969,59811 -registration_satisfaction(r717,h).registration_satisfaction1970,59846 -registration_satisfaction(r717,h).registration_satisfaction1970,59846 -registration_satisfaction(r718,l).registration_satisfaction1971,59881 -registration_satisfaction(r718,l).registration_satisfaction1971,59881 -registration_satisfaction(r719,l).registration_satisfaction1972,59916 -registration_satisfaction(r719,l).registration_satisfaction1972,59916 -registration_satisfaction(r720,h).registration_satisfaction1973,59951 -registration_satisfaction(r720,h).registration_satisfaction1973,59951 -registration_satisfaction(r721,h).registration_satisfaction1974,59986 -registration_satisfaction(r721,h).registration_satisfaction1974,59986 -registration_satisfaction(r722,h).registration_satisfaction1975,60021 -registration_satisfaction(r722,h).registration_satisfaction1975,60021 -registration_satisfaction(r723,h).registration_satisfaction1976,60056 -registration_satisfaction(r723,h).registration_satisfaction1976,60056 -registration_satisfaction(r724,h).registration_satisfaction1977,60091 -registration_satisfaction(r724,h).registration_satisfaction1977,60091 -registration_satisfaction(r725,h).registration_satisfaction1978,60126 -registration_satisfaction(r725,h).registration_satisfaction1978,60126 -registration_satisfaction(r726,h).registration_satisfaction1979,60161 -registration_satisfaction(r726,h).registration_satisfaction1979,60161 -registration_satisfaction(r727,h).registration_satisfaction1980,60196 -registration_satisfaction(r727,h).registration_satisfaction1980,60196 -registration_satisfaction(r728,m).registration_satisfaction1981,60231 -registration_satisfaction(r728,m).registration_satisfaction1981,60231 -registration_satisfaction(r729,h).registration_satisfaction1982,60266 -registration_satisfaction(r729,h).registration_satisfaction1982,60266 -registration_satisfaction(r730,h).registration_satisfaction1983,60301 -registration_satisfaction(r730,h).registration_satisfaction1983,60301 -registration_satisfaction(r731,h).registration_satisfaction1984,60336 -registration_satisfaction(r731,h).registration_satisfaction1984,60336 -registration_satisfaction(r732,h).registration_satisfaction1985,60371 -registration_satisfaction(r732,h).registration_satisfaction1985,60371 -registration_satisfaction(r733,h).registration_satisfaction1986,60406 -registration_satisfaction(r733,h).registration_satisfaction1986,60406 -registration_satisfaction(r734,h).registration_satisfaction1987,60441 -registration_satisfaction(r734,h).registration_satisfaction1987,60441 -registration_satisfaction(r735,h).registration_satisfaction1988,60476 -registration_satisfaction(r735,h).registration_satisfaction1988,60476 -registration_satisfaction(r736,h).registration_satisfaction1989,60511 -registration_satisfaction(r736,h).registration_satisfaction1989,60511 -registration_satisfaction(r737,h).registration_satisfaction1990,60546 -registration_satisfaction(r737,h).registration_satisfaction1990,60546 -registration_satisfaction(r738,h).registration_satisfaction1991,60581 -registration_satisfaction(r738,h).registration_satisfaction1991,60581 -registration_satisfaction(r739,h).registration_satisfaction1992,60616 -registration_satisfaction(r739,h).registration_satisfaction1992,60616 -registration_satisfaction(r740,h).registration_satisfaction1993,60651 -registration_satisfaction(r740,h).registration_satisfaction1993,60651 -registration_satisfaction(r741,h).registration_satisfaction1994,60686 -registration_satisfaction(r741,h).registration_satisfaction1994,60686 -registration_satisfaction(r742,h).registration_satisfaction1995,60721 -registration_satisfaction(r742,h).registration_satisfaction1995,60721 -registration_satisfaction(r743,h).registration_satisfaction1996,60756 -registration_satisfaction(r743,h).registration_satisfaction1996,60756 -registration_satisfaction(r744,h).registration_satisfaction1997,60791 -registration_satisfaction(r744,h).registration_satisfaction1997,60791 -registration_satisfaction(r745,m).registration_satisfaction1998,60826 -registration_satisfaction(r745,m).registration_satisfaction1998,60826 -registration_satisfaction(r746,h).registration_satisfaction1999,60861 -registration_satisfaction(r746,h).registration_satisfaction1999,60861 -registration_satisfaction(r747,h).registration_satisfaction2000,60896 -registration_satisfaction(r747,h).registration_satisfaction2000,60896 -registration_satisfaction(r748,h).registration_satisfaction2001,60931 -registration_satisfaction(r748,h).registration_satisfaction2001,60931 -registration_satisfaction(r749,m).registration_satisfaction2002,60966 -registration_satisfaction(r749,m).registration_satisfaction2002,60966 -registration_satisfaction(r750,h).registration_satisfaction2003,61001 -registration_satisfaction(r750,h).registration_satisfaction2003,61001 -registration_satisfaction(r751,h).registration_satisfaction2004,61036 -registration_satisfaction(r751,h).registration_satisfaction2004,61036 -registration_satisfaction(r752,m).registration_satisfaction2005,61071 -registration_satisfaction(r752,m).registration_satisfaction2005,61071 -registration_satisfaction(r753,m).registration_satisfaction2006,61106 -registration_satisfaction(r753,m).registration_satisfaction2006,61106 -registration_satisfaction(r754,h).registration_satisfaction2007,61141 -registration_satisfaction(r754,h).registration_satisfaction2007,61141 -registration_satisfaction(r755,l).registration_satisfaction2008,61176 -registration_satisfaction(r755,l).registration_satisfaction2008,61176 -registration_satisfaction(r756,h).registration_satisfaction2009,61211 -registration_satisfaction(r756,h).registration_satisfaction2009,61211 -registration_satisfaction(r757,h).registration_satisfaction2010,61246 -registration_satisfaction(r757,h).registration_satisfaction2010,61246 -registration_satisfaction(r758,h).registration_satisfaction2011,61281 -registration_satisfaction(r758,h).registration_satisfaction2011,61281 -registration_satisfaction(r759,l).registration_satisfaction2012,61316 -registration_satisfaction(r759,l).registration_satisfaction2012,61316 -registration_satisfaction(r760,h).registration_satisfaction2013,61351 -registration_satisfaction(r760,h).registration_satisfaction2013,61351 -registration_satisfaction(r761,h).registration_satisfaction2014,61386 -registration_satisfaction(r761,h).registration_satisfaction2014,61386 -registration_satisfaction(r762,m).registration_satisfaction2015,61421 -registration_satisfaction(r762,m).registration_satisfaction2015,61421 -registration_satisfaction(r763,h).registration_satisfaction2016,61456 -registration_satisfaction(r763,h).registration_satisfaction2016,61456 -registration_satisfaction(r764,h).registration_satisfaction2017,61491 -registration_satisfaction(r764,h).registration_satisfaction2017,61491 -registration_satisfaction(r765,h).registration_satisfaction2018,61526 -registration_satisfaction(r765,h).registration_satisfaction2018,61526 -registration_satisfaction(r766,h).registration_satisfaction2019,61561 -registration_satisfaction(r766,h).registration_satisfaction2019,61561 -registration_satisfaction(r767,h).registration_satisfaction2020,61596 -registration_satisfaction(r767,h).registration_satisfaction2020,61596 -registration_satisfaction(r768,l).registration_satisfaction2021,61631 -registration_satisfaction(r768,l).registration_satisfaction2021,61631 -registration_satisfaction(r769,l).registration_satisfaction2022,61666 -registration_satisfaction(r769,l).registration_satisfaction2022,61666 -registration_satisfaction(r770,m).registration_satisfaction2023,61701 -registration_satisfaction(r770,m).registration_satisfaction2023,61701 -registration_satisfaction(r771,m).registration_satisfaction2024,61736 -registration_satisfaction(r771,m).registration_satisfaction2024,61736 -registration_satisfaction(r772,h).registration_satisfaction2025,61771 -registration_satisfaction(r772,h).registration_satisfaction2025,61771 -registration_satisfaction(r773,m).registration_satisfaction2026,61806 -registration_satisfaction(r773,m).registration_satisfaction2026,61806 -registration_satisfaction(r774,h).registration_satisfaction2027,61841 -registration_satisfaction(r774,h).registration_satisfaction2027,61841 -registration_satisfaction(r775,h).registration_satisfaction2028,61876 -registration_satisfaction(r775,h).registration_satisfaction2028,61876 -registration_satisfaction(r776,h).registration_satisfaction2029,61911 -registration_satisfaction(r776,h).registration_satisfaction2029,61911 -registration_satisfaction(r777,l).registration_satisfaction2030,61946 -registration_satisfaction(r777,l).registration_satisfaction2030,61946 -registration_satisfaction(r778,h).registration_satisfaction2031,61981 -registration_satisfaction(r778,h).registration_satisfaction2031,61981 -registration_satisfaction(r779,h).registration_satisfaction2032,62016 -registration_satisfaction(r779,h).registration_satisfaction2032,62016 -registration_satisfaction(r780,h).registration_satisfaction2033,62051 -registration_satisfaction(r780,h).registration_satisfaction2033,62051 -registration_satisfaction(r781,m).registration_satisfaction2034,62086 -registration_satisfaction(r781,m).registration_satisfaction2034,62086 -registration_satisfaction(r782,m).registration_satisfaction2035,62121 -registration_satisfaction(r782,m).registration_satisfaction2035,62121 -registration_satisfaction(r783,m).registration_satisfaction2036,62156 -registration_satisfaction(r783,m).registration_satisfaction2036,62156 -registration_satisfaction(r784,l).registration_satisfaction2037,62191 -registration_satisfaction(r784,l).registration_satisfaction2037,62191 -registration_satisfaction(r785,l).registration_satisfaction2038,62226 -registration_satisfaction(r785,l).registration_satisfaction2038,62226 -registration_satisfaction(r786,h).registration_satisfaction2039,62261 -registration_satisfaction(r786,h).registration_satisfaction2039,62261 -registration_satisfaction(r787,h).registration_satisfaction2040,62296 -registration_satisfaction(r787,h).registration_satisfaction2040,62296 -registration_satisfaction(r788,h).registration_satisfaction2041,62331 -registration_satisfaction(r788,h).registration_satisfaction2041,62331 -registration_satisfaction(r789,h).registration_satisfaction2042,62366 -registration_satisfaction(r789,h).registration_satisfaction2042,62366 -registration_satisfaction(r790,h).registration_satisfaction2043,62401 -registration_satisfaction(r790,h).registration_satisfaction2043,62401 -registration_satisfaction(r791,h).registration_satisfaction2044,62436 -registration_satisfaction(r791,h).registration_satisfaction2044,62436 -registration_satisfaction(r792,h).registration_satisfaction2045,62471 -registration_satisfaction(r792,h).registration_satisfaction2045,62471 -registration_satisfaction(r793,m).registration_satisfaction2046,62506 -registration_satisfaction(r793,m).registration_satisfaction2046,62506 -registration_satisfaction(r794,l).registration_satisfaction2047,62541 -registration_satisfaction(r794,l).registration_satisfaction2047,62541 -registration_satisfaction(r795,h).registration_satisfaction2048,62576 -registration_satisfaction(r795,h).registration_satisfaction2048,62576 -registration_satisfaction(r796,h).registration_satisfaction2049,62611 -registration_satisfaction(r796,h).registration_satisfaction2049,62611 -registration_satisfaction(r797,h).registration_satisfaction2050,62646 -registration_satisfaction(r797,h).registration_satisfaction2050,62646 -registration_satisfaction(r798,m).registration_satisfaction2051,62681 -registration_satisfaction(r798,m).registration_satisfaction2051,62681 -registration_satisfaction(r799,m).registration_satisfaction2052,62716 -registration_satisfaction(r799,m).registration_satisfaction2052,62716 -registration_satisfaction(r800,m).registration_satisfaction2053,62751 -registration_satisfaction(r800,m).registration_satisfaction2053,62751 -registration_satisfaction(r801,h).registration_satisfaction2054,62786 -registration_satisfaction(r801,h).registration_satisfaction2054,62786 -registration_satisfaction(r802,h).registration_satisfaction2055,62821 -registration_satisfaction(r802,h).registration_satisfaction2055,62821 -registration_satisfaction(r803,h).registration_satisfaction2056,62856 -registration_satisfaction(r803,h).registration_satisfaction2056,62856 -registration_satisfaction(r804,h).registration_satisfaction2057,62891 -registration_satisfaction(r804,h).registration_satisfaction2057,62891 -registration_satisfaction(r805,h).registration_satisfaction2058,62926 -registration_satisfaction(r805,h).registration_satisfaction2058,62926 -registration_satisfaction(r806,h).registration_satisfaction2059,62961 -registration_satisfaction(r806,h).registration_satisfaction2059,62961 -registration_satisfaction(r807,l).registration_satisfaction2060,62996 -registration_satisfaction(r807,l).registration_satisfaction2060,62996 -registration_satisfaction(r808,m).registration_satisfaction2061,63031 -registration_satisfaction(r808,m).registration_satisfaction2061,63031 -registration_satisfaction(r809,l).registration_satisfaction2062,63066 -registration_satisfaction(r809,l).registration_satisfaction2062,63066 -registration_satisfaction(r810,h).registration_satisfaction2063,63101 -registration_satisfaction(r810,h).registration_satisfaction2063,63101 -registration_satisfaction(r811,l).registration_satisfaction2064,63136 -registration_satisfaction(r811,l).registration_satisfaction2064,63136 -registration_satisfaction(r812,h).registration_satisfaction2065,63171 -registration_satisfaction(r812,h).registration_satisfaction2065,63171 -registration_satisfaction(r813,m).registration_satisfaction2066,63206 -registration_satisfaction(r813,m).registration_satisfaction2066,63206 -registration_satisfaction(r814,l).registration_satisfaction2067,63241 -registration_satisfaction(r814,l).registration_satisfaction2067,63241 -registration_satisfaction(r815,h).registration_satisfaction2068,63276 -registration_satisfaction(r815,h).registration_satisfaction2068,63276 -registration_satisfaction(r816,h).registration_satisfaction2069,63311 -registration_satisfaction(r816,h).registration_satisfaction2069,63311 -registration_satisfaction(r817,h).registration_satisfaction2070,63346 -registration_satisfaction(r817,h).registration_satisfaction2070,63346 -registration_satisfaction(r818,l).registration_satisfaction2071,63381 -registration_satisfaction(r818,l).registration_satisfaction2071,63381 -registration_satisfaction(r819,h).registration_satisfaction2072,63416 -registration_satisfaction(r819,h).registration_satisfaction2072,63416 -registration_satisfaction(r820,h).registration_satisfaction2073,63451 -registration_satisfaction(r820,h).registration_satisfaction2073,63451 -registration_satisfaction(r821,m).registration_satisfaction2074,63486 -registration_satisfaction(r821,m).registration_satisfaction2074,63486 -registration_satisfaction(r822,m).registration_satisfaction2075,63521 -registration_satisfaction(r822,m).registration_satisfaction2075,63521 -registration_satisfaction(r823,h).registration_satisfaction2076,63556 -registration_satisfaction(r823,h).registration_satisfaction2076,63556 -registration_satisfaction(r824,m).registration_satisfaction2077,63591 -registration_satisfaction(r824,m).registration_satisfaction2077,63591 -registration_satisfaction(r825,l).registration_satisfaction2078,63626 -registration_satisfaction(r825,l).registration_satisfaction2078,63626 -registration_satisfaction(r826,l).registration_satisfaction2079,63661 -registration_satisfaction(r826,l).registration_satisfaction2079,63661 -registration_satisfaction(r827,l).registration_satisfaction2080,63696 -registration_satisfaction(r827,l).registration_satisfaction2080,63696 -registration_satisfaction(r828,m).registration_satisfaction2081,63731 -registration_satisfaction(r828,m).registration_satisfaction2081,63731 -registration_satisfaction(r829,l).registration_satisfaction2082,63766 -registration_satisfaction(r829,l).registration_satisfaction2082,63766 -registration_satisfaction(r830,h).registration_satisfaction2083,63801 -registration_satisfaction(r830,h).registration_satisfaction2083,63801 -registration_satisfaction(r831,h).registration_satisfaction2084,63836 -registration_satisfaction(r831,h).registration_satisfaction2084,63836 -registration_satisfaction(r832,m).registration_satisfaction2085,63871 -registration_satisfaction(r832,m).registration_satisfaction2085,63871 -registration_satisfaction(r833,h).registration_satisfaction2086,63906 -registration_satisfaction(r833,h).registration_satisfaction2086,63906 -registration_satisfaction(r834,h).registration_satisfaction2087,63941 -registration_satisfaction(r834,h).registration_satisfaction2087,63941 -registration_satisfaction(r835,h).registration_satisfaction2088,63976 -registration_satisfaction(r835,h).registration_satisfaction2088,63976 -registration_satisfaction(r836,h).registration_satisfaction2089,64011 -registration_satisfaction(r836,h).registration_satisfaction2089,64011 -registration_satisfaction(r837,h).registration_satisfaction2090,64046 -registration_satisfaction(r837,h).registration_satisfaction2090,64046 -registration_satisfaction(r838,l).registration_satisfaction2091,64081 -registration_satisfaction(r838,l).registration_satisfaction2091,64081 -registration_satisfaction(r839,m).registration_satisfaction2092,64116 -registration_satisfaction(r839,m).registration_satisfaction2092,64116 -registration_satisfaction(r840,m).registration_satisfaction2093,64151 -registration_satisfaction(r840,m).registration_satisfaction2093,64151 -registration_satisfaction(r841,h).registration_satisfaction2094,64186 -registration_satisfaction(r841,h).registration_satisfaction2094,64186 -registration_satisfaction(r842,h).registration_satisfaction2095,64221 -registration_satisfaction(r842,h).registration_satisfaction2095,64221 -registration_satisfaction(r843,h).registration_satisfaction2096,64256 -registration_satisfaction(r843,h).registration_satisfaction2096,64256 -registration_satisfaction(r844,h).registration_satisfaction2097,64291 -registration_satisfaction(r844,h).registration_satisfaction2097,64291 -registration_satisfaction(r845,l).registration_satisfaction2098,64326 -registration_satisfaction(r845,l).registration_satisfaction2098,64326 -registration_satisfaction(r846,l).registration_satisfaction2099,64361 -registration_satisfaction(r846,l).registration_satisfaction2099,64361 -registration_satisfaction(r847,h).registration_satisfaction2100,64396 -registration_satisfaction(r847,h).registration_satisfaction2100,64396 -registration_satisfaction(r848,l).registration_satisfaction2101,64431 -registration_satisfaction(r848,l).registration_satisfaction2101,64431 -registration_satisfaction(r849,h).registration_satisfaction2102,64466 -registration_satisfaction(r849,h).registration_satisfaction2102,64466 -registration_satisfaction(r850,h).registration_satisfaction2103,64501 -registration_satisfaction(r850,h).registration_satisfaction2103,64501 -registration_satisfaction(r851,h).registration_satisfaction2104,64536 -registration_satisfaction(r851,h).registration_satisfaction2104,64536 -registration_satisfaction(r852,h).registration_satisfaction2105,64571 -registration_satisfaction(r852,h).registration_satisfaction2105,64571 -registration_satisfaction(r853,h).registration_satisfaction2106,64606 -registration_satisfaction(r853,h).registration_satisfaction2106,64606 -registration_satisfaction(r854,m).registration_satisfaction2107,64641 -registration_satisfaction(r854,m).registration_satisfaction2107,64641 -registration_satisfaction(r855,h).registration_satisfaction2108,64676 -registration_satisfaction(r855,h).registration_satisfaction2108,64676 -registration_satisfaction(r856,l).registration_satisfaction2109,64711 -registration_satisfaction(r856,l).registration_satisfaction2109,64711 -course_rating(c0,m).course_rating2112,64748 -course_rating(c0,m).course_rating2112,64748 -course_rating(c1,l).course_rating2113,64769 -course_rating(c1,l).course_rating2113,64769 -course_rating(c2,m).course_rating2114,64790 -course_rating(c2,m).course_rating2114,64790 -course_rating(c3,h).course_rating2115,64811 -course_rating(c3,h).course_rating2115,64811 -course_rating(c4,h).course_rating2116,64832 -course_rating(c4,h).course_rating2116,64832 -course_rating(c5,m).course_rating2117,64853 -course_rating(c5,m).course_rating2117,64853 -course_rating(c6,h).course_rating2118,64874 -course_rating(c6,h).course_rating2118,64874 -course_rating(c7,h).course_rating2119,64895 -course_rating(c7,h).course_rating2119,64895 -course_rating(c8,m).course_rating2120,64916 -course_rating(c8,m).course_rating2120,64916 -course_rating(c9,m).course_rating2121,64937 -course_rating(c9,m).course_rating2121,64937 -course_rating(c10,m).course_rating2122,64958 -course_rating(c10,m).course_rating2122,64958 -course_rating(c11,h).course_rating2123,64980 -course_rating(c11,h).course_rating2123,64980 -course_rating(c12,m).course_rating2124,65002 -course_rating(c12,m).course_rating2124,65002 -course_rating(c13,h).course_rating2125,65024 -course_rating(c13,h).course_rating2125,65024 -course_rating(c14,h).course_rating2126,65046 -course_rating(c14,h).course_rating2126,65046 -course_rating(c15,m).course_rating2127,65068 -course_rating(c15,m).course_rating2127,65068 -course_rating(c16,h).course_rating2128,65090 -course_rating(c16,h).course_rating2128,65090 -course_rating(c17,m).course_rating2129,65112 -course_rating(c17,m).course_rating2129,65112 -course_rating(c18,h).course_rating2130,65134 -course_rating(c18,h).course_rating2130,65134 -course_rating(c19,h).course_rating2131,65156 -course_rating(c19,h).course_rating2131,65156 -course_rating(c20,h).course_rating2132,65178 -course_rating(c20,h).course_rating2132,65178 -course_rating(c21,m).course_rating2133,65200 -course_rating(c21,m).course_rating2133,65200 -course_rating(c22,h).course_rating2134,65222 -course_rating(c22,h).course_rating2134,65222 -course_rating(c23,h).course_rating2135,65244 -course_rating(c23,h).course_rating2135,65244 -course_rating(c24,m).course_rating2136,65266 -course_rating(c24,m).course_rating2136,65266 -course_rating(c25,h).course_rating2137,65288 -course_rating(c25,h).course_rating2137,65288 -course_rating(c26,m).course_rating2138,65310 -course_rating(c26,m).course_rating2138,65310 -course_rating(c27,h).course_rating2139,65332 -course_rating(c27,h).course_rating2139,65332 -course_rating(c28,m).course_rating2140,65354 -course_rating(c28,m).course_rating2140,65354 -course_rating(c29,m).course_rating2141,65376 -course_rating(c29,m).course_rating2141,65376 -course_rating(c30,h).course_rating2142,65398 -course_rating(c30,h).course_rating2142,65398 -course_rating(c31,h).course_rating2143,65420 -course_rating(c31,h).course_rating2143,65420 -course_rating(c32,h).course_rating2144,65442 -course_rating(c32,h).course_rating2144,65442 -course_rating(c33,m).course_rating2145,65464 -course_rating(c33,m).course_rating2145,65464 -course_rating(c34,h).course_rating2146,65486 -course_rating(c34,h).course_rating2146,65486 -course_rating(c35,m).course_rating2147,65508 -course_rating(c35,m).course_rating2147,65508 -course_rating(c36,h).course_rating2148,65530 -course_rating(c36,h).course_rating2148,65530 -course_rating(c37,m).course_rating2149,65552 -course_rating(c37,m).course_rating2149,65552 -course_rating(c38,m).course_rating2150,65574 -course_rating(c38,m).course_rating2150,65574 -course_rating(c39,h).course_rating2151,65596 -course_rating(c39,h).course_rating2151,65596 -course_rating(c40,m).course_rating2152,65618 -course_rating(c40,m).course_rating2152,65618 -course_rating(c41,m).course_rating2153,65640 -course_rating(c41,m).course_rating2153,65640 -course_rating(c42,h).course_rating2154,65662 -course_rating(c42,h).course_rating2154,65662 -course_rating(c43,h).course_rating2155,65684 -course_rating(c43,h).course_rating2155,65684 -course_rating(c44,h).course_rating2156,65706 -course_rating(c44,h).course_rating2156,65706 -course_rating(c45,h).course_rating2157,65728 -course_rating(c45,h).course_rating2157,65728 -course_rating(c46,l).course_rating2158,65750 -course_rating(c46,l).course_rating2158,65750 -course_rating(c47,h).course_rating2159,65772 -course_rating(c47,h).course_rating2159,65772 -course_rating(c48,h).course_rating2160,65794 -course_rating(c48,h).course_rating2160,65794 -course_rating(c49,m).course_rating2161,65816 -course_rating(c49,m).course_rating2161,65816 -course_rating(c50,l).course_rating2162,65838 -course_rating(c50,l).course_rating2162,65838 -course_rating(c51,m).course_rating2163,65860 -course_rating(c51,m).course_rating2163,65860 -course_rating(c52,h).course_rating2164,65882 -course_rating(c52,h).course_rating2164,65882 -course_rating(c53,l).course_rating2165,65904 -course_rating(c53,l).course_rating2165,65904 -course_rating(c54,h).course_rating2166,65926 -course_rating(c54,h).course_rating2166,65926 -course_rating(c55,h).course_rating2167,65948 -course_rating(c55,h).course_rating2167,65948 -course_rating(c56,h).course_rating2168,65970 -course_rating(c56,h).course_rating2168,65970 -course_rating(c57,h).course_rating2169,65992 -course_rating(c57,h).course_rating2169,65992 -course_rating(c58,l).course_rating2170,66014 -course_rating(c58,l).course_rating2170,66014 -course_rating(c59,h).course_rating2171,66036 -course_rating(c59,h).course_rating2171,66036 -course_rating(c60,h).course_rating2172,66058 -course_rating(c60,h).course_rating2172,66058 -course_rating(c61,h).course_rating2173,66080 -course_rating(c61,h).course_rating2173,66080 -course_rating(c62,h).course_rating2174,66102 -course_rating(c62,h).course_rating2174,66102 -course_rating(c63,h).course_rating2175,66124 -course_rating(c63,h).course_rating2175,66124 -student_ranking(s0,b).student_ranking2178,66148 -student_ranking(s0,b).student_ranking2178,66148 -student_ranking(s1,c).student_ranking2179,66171 -student_ranking(s1,c).student_ranking2179,66171 -student_ranking(s2,a).student_ranking2180,66194 -student_ranking(s2,a).student_ranking2180,66194 -student_ranking(s3,a).student_ranking2181,66217 -student_ranking(s3,a).student_ranking2181,66217 -student_ranking(s4,a).student_ranking2182,66240 -student_ranking(s4,a).student_ranking2182,66240 -student_ranking(s5,b).student_ranking2183,66263 -student_ranking(s5,b).student_ranking2183,66263 -student_ranking(s6,c).student_ranking2184,66286 -student_ranking(s6,c).student_ranking2184,66286 -student_ranking(s7,a).student_ranking2185,66309 -student_ranking(s7,a).student_ranking2185,66309 -student_ranking(s8,a).student_ranking2186,66332 -student_ranking(s8,a).student_ranking2186,66332 -student_ranking(s9,c).student_ranking2187,66355 -student_ranking(s9,c).student_ranking2187,66355 -student_ranking(s10,b).student_ranking2188,66378 -student_ranking(s10,b).student_ranking2188,66378 -student_ranking(s11,b).student_ranking2189,66402 -student_ranking(s11,b).student_ranking2189,66402 -student_ranking(s12,b).student_ranking2190,66426 -student_ranking(s12,b).student_ranking2190,66426 -student_ranking(s13,b).student_ranking2191,66450 -student_ranking(s13,b).student_ranking2191,66450 -student_ranking(s14,a).student_ranking2192,66474 -student_ranking(s14,a).student_ranking2192,66474 -student_ranking(s15,c).student_ranking2193,66498 -student_ranking(s15,c).student_ranking2193,66498 -student_ranking(s16,b).student_ranking2194,66522 -student_ranking(s16,b).student_ranking2194,66522 -student_ranking(s17,c).student_ranking2195,66546 -student_ranking(s17,c).student_ranking2195,66546 -student_ranking(s18,b).student_ranking2196,66570 -student_ranking(s18,b).student_ranking2196,66570 -student_ranking(s19,a).student_ranking2197,66594 -student_ranking(s19,a).student_ranking2197,66594 -student_ranking(s20,b).student_ranking2198,66618 -student_ranking(s20,b).student_ranking2198,66618 -student_ranking(s21,b).student_ranking2199,66642 -student_ranking(s21,b).student_ranking2199,66642 -student_ranking(s22,b).student_ranking2200,66666 -student_ranking(s22,b).student_ranking2200,66666 -student_ranking(s23,b).student_ranking2201,66690 -student_ranking(s23,b).student_ranking2201,66690 -student_ranking(s24,a).student_ranking2202,66714 -student_ranking(s24,a).student_ranking2202,66714 -student_ranking(s25,a).student_ranking2203,66738 -student_ranking(s25,a).student_ranking2203,66738 -student_ranking(s26,b).student_ranking2204,66762 -student_ranking(s26,b).student_ranking2204,66762 -student_ranking(s27,c).student_ranking2205,66786 -student_ranking(s27,c).student_ranking2205,66786 -student_ranking(s28,b).student_ranking2206,66810 -student_ranking(s28,b).student_ranking2206,66810 -student_ranking(s29,b).student_ranking2207,66834 -student_ranking(s29,b).student_ranking2207,66834 -student_ranking(s30,a).student_ranking2208,66858 -student_ranking(s30,a).student_ranking2208,66858 -student_ranking(s31,b).student_ranking2209,66882 -student_ranking(s31,b).student_ranking2209,66882 -student_ranking(s32,b).student_ranking2210,66906 -student_ranking(s32,b).student_ranking2210,66906 -student_ranking(s33,a).student_ranking2211,66930 -student_ranking(s33,a).student_ranking2211,66930 -student_ranking(s34,c).student_ranking2212,66954 -student_ranking(s34,c).student_ranking2212,66954 -student_ranking(s35,b).student_ranking2213,66978 -student_ranking(s35,b).student_ranking2213,66978 -student_ranking(s36,b).student_ranking2214,67002 -student_ranking(s36,b).student_ranking2214,67002 -student_ranking(s37,b).student_ranking2215,67026 -student_ranking(s37,b).student_ranking2215,67026 -student_ranking(s38,a).student_ranking2216,67050 -student_ranking(s38,a).student_ranking2216,67050 -student_ranking(s39,a).student_ranking2217,67074 -student_ranking(s39,a).student_ranking2217,67074 -student_ranking(s40,a).student_ranking2218,67098 -student_ranking(s40,a).student_ranking2218,67098 -student_ranking(s41,b).student_ranking2219,67122 -student_ranking(s41,b).student_ranking2219,67122 -student_ranking(s42,b).student_ranking2220,67146 -student_ranking(s42,b).student_ranking2220,67146 -student_ranking(s43,a).student_ranking2221,67170 -student_ranking(s43,a).student_ranking2221,67170 -student_ranking(s44,a).student_ranking2222,67194 -student_ranking(s44,a).student_ranking2222,67194 -student_ranking(s45,a).student_ranking2223,67218 -student_ranking(s45,a).student_ranking2223,67218 -student_ranking(s46,c).student_ranking2224,67242 -student_ranking(s46,c).student_ranking2224,67242 -student_ranking(s47,a).student_ranking2225,67266 -student_ranking(s47,a).student_ranking2225,67266 -student_ranking(s48,b).student_ranking2226,67290 -student_ranking(s48,b).student_ranking2226,67290 -student_ranking(s49,b).student_ranking2227,67314 -student_ranking(s49,b).student_ranking2227,67314 -student_ranking(s50,a).student_ranking2228,67338 -student_ranking(s50,a).student_ranking2228,67338 -student_ranking(s51,b).student_ranking2229,67362 -student_ranking(s51,b).student_ranking2229,67362 -student_ranking(s52,c).student_ranking2230,67386 -student_ranking(s52,c).student_ranking2230,67386 -student_ranking(s53,b).student_ranking2231,67410 -student_ranking(s53,b).student_ranking2231,67410 -student_ranking(s54,b).student_ranking2232,67434 -student_ranking(s54,b).student_ranking2232,67434 -student_ranking(s55,a).student_ranking2233,67458 -student_ranking(s55,a).student_ranking2233,67458 -student_ranking(s56,b).student_ranking2234,67482 -student_ranking(s56,b).student_ranking2234,67482 -student_ranking(s57,b).student_ranking2235,67506 -student_ranking(s57,b).student_ranking2235,67506 -student_ranking(s58,a).student_ranking2236,67530 -student_ranking(s58,a).student_ranking2236,67530 -student_ranking(s59,b).student_ranking2237,67554 -student_ranking(s59,b).student_ranking2237,67554 -student_ranking(s60,a).student_ranking2238,67578 -student_ranking(s60,a).student_ranking2238,67578 -student_ranking(s61,b).student_ranking2239,67602 -student_ranking(s61,b).student_ranking2239,67602 -student_ranking(s62,b).student_ranking2240,67626 -student_ranking(s62,b).student_ranking2240,67626 -student_ranking(s63,a).student_ranking2241,67650 -student_ranking(s63,a).student_ranking2241,67650 -student_ranking(s64,b).student_ranking2242,67674 -student_ranking(s64,b).student_ranking2242,67674 -student_ranking(s65,b).student_ranking2243,67698 -student_ranking(s65,b).student_ranking2243,67698 -student_ranking(s66,b).student_ranking2244,67722 -student_ranking(s66,b).student_ranking2244,67722 -student_ranking(s67,c).student_ranking2245,67746 -student_ranking(s67,c).student_ranking2245,67746 -student_ranking(s68,b).student_ranking2246,67770 -student_ranking(s68,b).student_ranking2246,67770 -student_ranking(s69,b).student_ranking2247,67794 -student_ranking(s69,b).student_ranking2247,67794 -student_ranking(s70,c).student_ranking2248,67818 -student_ranking(s70,c).student_ranking2248,67818 -student_ranking(s71,c).student_ranking2249,67842 -student_ranking(s71,c).student_ranking2249,67842 -student_ranking(s72,a).student_ranking2250,67866 -student_ranking(s72,a).student_ranking2250,67866 -student_ranking(s73,b).student_ranking2251,67890 -student_ranking(s73,b).student_ranking2251,67890 -student_ranking(s74,a).student_ranking2252,67914 -student_ranking(s74,a).student_ranking2252,67914 -student_ranking(s75,b).student_ranking2253,67938 -student_ranking(s75,b).student_ranking2253,67938 -student_ranking(s76,b).student_ranking2254,67962 -student_ranking(s76,b).student_ranking2254,67962 -student_ranking(s77,a).student_ranking2255,67986 -student_ranking(s77,a).student_ranking2255,67986 -student_ranking(s78,b).student_ranking2256,68010 -student_ranking(s78,b).student_ranking2256,68010 -student_ranking(s79,b).student_ranking2257,68034 -student_ranking(s79,b).student_ranking2257,68034 -student_ranking(s80,b).student_ranking2258,68058 -student_ranking(s80,b).student_ranking2258,68058 -student_ranking(s81,b).student_ranking2259,68082 -student_ranking(s81,b).student_ranking2259,68082 -student_ranking(s82,a).student_ranking2260,68106 -student_ranking(s82,a).student_ranking2260,68106 -student_ranking(s83,a).student_ranking2261,68130 -student_ranking(s83,a).student_ranking2261,68130 -student_ranking(s84,b).student_ranking2262,68154 -student_ranking(s84,b).student_ranking2262,68154 -student_ranking(s85,a).student_ranking2263,68178 -student_ranking(s85,a).student_ranking2263,68178 -student_ranking(s86,c).student_ranking2264,68202 -student_ranking(s86,c).student_ranking2264,68202 -student_ranking(s87,a).student_ranking2265,68226 -student_ranking(s87,a).student_ranking2265,68226 -student_ranking(s88,a).student_ranking2266,68250 -student_ranking(s88,a).student_ranking2266,68250 -student_ranking(s89,b).student_ranking2267,68274 -student_ranking(s89,b).student_ranking2267,68274 -student_ranking(s90,a).student_ranking2268,68298 -student_ranking(s90,a).student_ranking2268,68298 -student_ranking(s91,c).student_ranking2269,68322 -student_ranking(s91,c).student_ranking2269,68322 -student_ranking(s92,a).student_ranking2270,68346 -student_ranking(s92,a).student_ranking2270,68346 -student_ranking(s93,c).student_ranking2271,68370 -student_ranking(s93,c).student_ranking2271,68370 -student_ranking(s94,c).student_ranking2272,68394 -student_ranking(s94,c).student_ranking2272,68394 -student_ranking(s95,b).student_ranking2273,68418 -student_ranking(s95,b).student_ranking2273,68418 -student_ranking(s96,b).student_ranking2274,68442 -student_ranking(s96,b).student_ranking2274,68442 -student_ranking(s97,b).student_ranking2275,68466 -student_ranking(s97,b).student_ranking2275,68466 -student_ranking(s98,a).student_ranking2276,68490 -student_ranking(s98,a).student_ranking2276,68490 -student_ranking(s99,b).student_ranking2277,68514 -student_ranking(s99,b).student_ranking2277,68514 -student_ranking(s100,b).student_ranking2278,68538 -student_ranking(s100,b).student_ranking2278,68538 -student_ranking(s101,b).student_ranking2279,68563 -student_ranking(s101,b).student_ranking2279,68563 -student_ranking(s102,a).student_ranking2280,68588 -student_ranking(s102,a).student_ranking2280,68588 -student_ranking(s103,a).student_ranking2281,68613 -student_ranking(s103,a).student_ranking2281,68613 -student_ranking(s104,c).student_ranking2282,68638 -student_ranking(s104,c).student_ranking2282,68638 -student_ranking(s105,b).student_ranking2283,68663 -student_ranking(s105,b).student_ranking2283,68663 -student_ranking(s106,a).student_ranking2284,68688 -student_ranking(s106,a).student_ranking2284,68688 -student_ranking(s107,c).student_ranking2285,68713 -student_ranking(s107,c).student_ranking2285,68713 -student_ranking(s108,b).student_ranking2286,68738 -student_ranking(s108,b).student_ranking2286,68738 -student_ranking(s109,b).student_ranking2287,68763 -student_ranking(s109,b).student_ranking2287,68763 -student_ranking(s110,b).student_ranking2288,68788 -student_ranking(s110,b).student_ranking2288,68788 -student_ranking(s111,a).student_ranking2289,68813 -student_ranking(s111,a).student_ranking2289,68813 -student_ranking(s112,b).student_ranking2290,68838 -student_ranking(s112,b).student_ranking2290,68838 -student_ranking(s113,b).student_ranking2291,68863 -student_ranking(s113,b).student_ranking2291,68863 -student_ranking(s114,c).student_ranking2292,68888 -student_ranking(s114,c).student_ranking2292,68888 -student_ranking(s115,a).student_ranking2293,68913 -student_ranking(s115,a).student_ranking2293,68913 -student_ranking(s116,b).student_ranking2294,68938 -student_ranking(s116,b).student_ranking2294,68938 -student_ranking(s117,b).student_ranking2295,68963 -student_ranking(s117,b).student_ranking2295,68963 -student_ranking(s118,b).student_ranking2296,68988 -student_ranking(s118,b).student_ranking2296,68988 -student_ranking(s119,a).student_ranking2297,69013 -student_ranking(s119,a).student_ranking2297,69013 -student_ranking(s120,a).student_ranking2298,69038 -student_ranking(s120,a).student_ranking2298,69038 -student_ranking(s121,a).student_ranking2299,69063 -student_ranking(s121,a).student_ranking2299,69063 -student_ranking(s122,a).student_ranking2300,69088 -student_ranking(s122,a).student_ranking2300,69088 -student_ranking(s123,c).student_ranking2301,69113 -student_ranking(s123,c).student_ranking2301,69113 -student_ranking(s124,a).student_ranking2302,69138 -student_ranking(s124,a).student_ranking2302,69138 -student_ranking(s125,b).student_ranking2303,69163 -student_ranking(s125,b).student_ranking2303,69163 -student_ranking(s126,b).student_ranking2304,69188 -student_ranking(s126,b).student_ranking2304,69188 -student_ranking(s127,c).student_ranking2305,69213 -student_ranking(s127,c).student_ranking2305,69213 -student_ranking(s128,c).student_ranking2306,69238 -student_ranking(s128,c).student_ranking2306,69238 -student_ranking(s129,b).student_ranking2307,69263 -student_ranking(s129,b).student_ranking2307,69263 -student_ranking(s130,b).student_ranking2308,69288 -student_ranking(s130,b).student_ranking2308,69288 -student_ranking(s131,b).student_ranking2309,69313 -student_ranking(s131,b).student_ranking2309,69313 -student_ranking(s132,a).student_ranking2310,69338 -student_ranking(s132,a).student_ranking2310,69338 -student_ranking(s133,c).student_ranking2311,69363 -student_ranking(s133,c).student_ranking2311,69363 -student_ranking(s134,a).student_ranking2312,69388 -student_ranking(s134,a).student_ranking2312,69388 -student_ranking(s135,c).student_ranking2313,69413 -student_ranking(s135,c).student_ranking2313,69413 -student_ranking(s136,b).student_ranking2314,69438 -student_ranking(s136,b).student_ranking2314,69438 -student_ranking(s137,b).student_ranking2315,69463 -student_ranking(s137,b).student_ranking2315,69463 -student_ranking(s138,b).student_ranking2316,69488 -student_ranking(s138,b).student_ranking2316,69488 -student_ranking(s139,a).student_ranking2317,69513 -student_ranking(s139,a).student_ranking2317,69513 -student_ranking(s140,b).student_ranking2318,69538 -student_ranking(s140,b).student_ranking2318,69538 -student_ranking(s141,b).student_ranking2319,69563 -student_ranking(s141,b).student_ranking2319,69563 -student_ranking(s142,b).student_ranking2320,69588 -student_ranking(s142,b).student_ranking2320,69588 -student_ranking(s143,c).student_ranking2321,69613 -student_ranking(s143,c).student_ranking2321,69613 -student_ranking(s144,a).student_ranking2322,69638 -student_ranking(s144,a).student_ranking2322,69638 -student_ranking(s145,a).student_ranking2323,69663 -student_ranking(s145,a).student_ranking2323,69663 -student_ranking(s146,c).student_ranking2324,69688 -student_ranking(s146,c).student_ranking2324,69688 -student_ranking(s147,b).student_ranking2325,69713 -student_ranking(s147,b).student_ranking2325,69713 -student_ranking(s148,c).student_ranking2326,69738 -student_ranking(s148,c).student_ranking2326,69738 -student_ranking(s149,b).student_ranking2327,69763 -student_ranking(s149,b).student_ranking2327,69763 -student_ranking(s150,c).student_ranking2328,69788 -student_ranking(s150,c).student_ranking2328,69788 -student_ranking(s151,b).student_ranking2329,69813 -student_ranking(s151,b).student_ranking2329,69813 -student_ranking(s152,a).student_ranking2330,69838 -student_ranking(s152,a).student_ranking2330,69838 -student_ranking(s153,c).student_ranking2331,69863 -student_ranking(s153,c).student_ranking2331,69863 -student_ranking(s154,a).student_ranking2332,69888 -student_ranking(s154,a).student_ranking2332,69888 -student_ranking(s155,b).student_ranking2333,69913 -student_ranking(s155,b).student_ranking2333,69913 -student_ranking(s156,b).student_ranking2334,69938 -student_ranking(s156,b).student_ranking2334,69938 -student_ranking(s157,b).student_ranking2335,69963 -student_ranking(s157,b).student_ranking2335,69963 -student_ranking(s158,a).student_ranking2336,69988 -student_ranking(s158,a).student_ranking2336,69988 -student_ranking(s159,b).student_ranking2337,70013 -student_ranking(s159,b).student_ranking2337,70013 -student_ranking(s160,a).student_ranking2338,70038 -student_ranking(s160,a).student_ranking2338,70038 -student_ranking(s161,b).student_ranking2339,70063 -student_ranking(s161,b).student_ranking2339,70063 -student_ranking(s162,a).student_ranking2340,70088 -student_ranking(s162,a).student_ranking2340,70088 -student_ranking(s163,b).student_ranking2341,70113 -student_ranking(s163,b).student_ranking2341,70113 -student_ranking(s164,b).student_ranking2342,70138 -student_ranking(s164,b).student_ranking2342,70138 -student_ranking(s165,b).student_ranking2343,70163 -student_ranking(s165,b).student_ranking2343,70163 -student_ranking(s166,b).student_ranking2344,70188 -student_ranking(s166,b).student_ranking2344,70188 -student_ranking(s167,b).student_ranking2345,70213 -student_ranking(s167,b).student_ranking2345,70213 -student_ranking(s168,a).student_ranking2346,70238 -student_ranking(s168,a).student_ranking2346,70238 -student_ranking(s169,c).student_ranking2347,70263 -student_ranking(s169,c).student_ranking2347,70263 -student_ranking(s170,b).student_ranking2348,70288 -student_ranking(s170,b).student_ranking2348,70288 -student_ranking(s171,b).student_ranking2349,70313 -student_ranking(s171,b).student_ranking2349,70313 -student_ranking(s172,a).student_ranking2350,70338 -student_ranking(s172,a).student_ranking2350,70338 -student_ranking(s173,a).student_ranking2351,70363 -student_ranking(s173,a).student_ranking2351,70363 -student_ranking(s174,a).student_ranking2352,70388 -student_ranking(s174,a).student_ranking2352,70388 -student_ranking(s175,c).student_ranking2353,70413 -student_ranking(s175,c).student_ranking2353,70413 -student_ranking(s176,b).student_ranking2354,70438 -student_ranking(s176,b).student_ranking2354,70438 -student_ranking(s177,b).student_ranking2355,70463 -student_ranking(s177,b).student_ranking2355,70463 -student_ranking(s178,a).student_ranking2356,70488 -student_ranking(s178,a).student_ranking2356,70488 -student_ranking(s179,a).student_ranking2357,70513 -student_ranking(s179,a).student_ranking2357,70513 -student_ranking(s180,b).student_ranking2358,70538 -student_ranking(s180,b).student_ranking2358,70538 -student_ranking(s181,a).student_ranking2359,70563 -student_ranking(s181,a).student_ranking2359,70563 -student_ranking(s182,b).student_ranking2360,70588 -student_ranking(s182,b).student_ranking2360,70588 -student_ranking(s183,a).student_ranking2361,70613 -student_ranking(s183,a).student_ranking2361,70613 -student_ranking(s184,a).student_ranking2362,70638 -student_ranking(s184,a).student_ranking2362,70638 -student_ranking(s185,b).student_ranking2363,70663 -student_ranking(s185,b).student_ranking2363,70663 -student_ranking(s186,b).student_ranking2364,70688 -student_ranking(s186,b).student_ranking2364,70688 -student_ranking(s187,b).student_ranking2365,70713 -student_ranking(s187,b).student_ranking2365,70713 -student_ranking(s188,a).student_ranking2366,70738 -student_ranking(s188,a).student_ranking2366,70738 -student_ranking(s189,c).student_ranking2367,70763 -student_ranking(s189,c).student_ranking2367,70763 -student_ranking(s190,b).student_ranking2368,70788 -student_ranking(s190,b).student_ranking2368,70788 -student_ranking(s191,c).student_ranking2369,70813 -student_ranking(s191,c).student_ranking2369,70813 -student_ranking(s192,a).student_ranking2370,70838 -student_ranking(s192,a).student_ranking2370,70838 -student_ranking(s193,b).student_ranking2371,70863 -student_ranking(s193,b).student_ranking2371,70863 -student_ranking(s194,b).student_ranking2372,70888 -student_ranking(s194,b).student_ranking2372,70888 -student_ranking(s195,c).student_ranking2373,70913 -student_ranking(s195,c).student_ranking2373,70913 -student_ranking(s196,a).student_ranking2374,70938 -student_ranking(s196,a).student_ranking2374,70938 -student_ranking(s197,a).student_ranking2375,70963 -student_ranking(s197,a).student_ranking2375,70963 -student_ranking(s198,b).student_ranking2376,70988 -student_ranking(s198,b).student_ranking2376,70988 -student_ranking(s199,b).student_ranking2377,71013 -student_ranking(s199,b).student_ranking2377,71013 -student_ranking(s200,b).student_ranking2378,71038 -student_ranking(s200,b).student_ranking2378,71038 -student_ranking(s201,b).student_ranking2379,71063 -student_ranking(s201,b).student_ranking2379,71063 -student_ranking(s202,a).student_ranking2380,71088 -student_ranking(s202,a).student_ranking2380,71088 -student_ranking(s203,b).student_ranking2381,71113 -student_ranking(s203,b).student_ranking2381,71113 -student_ranking(s204,b).student_ranking2382,71138 -student_ranking(s204,b).student_ranking2382,71138 -student_ranking(s205,b).student_ranking2383,71163 -student_ranking(s205,b).student_ranking2383,71163 -student_ranking(s206,b).student_ranking2384,71188 -student_ranking(s206,b).student_ranking2384,71188 -student_ranking(s207,a).student_ranking2385,71213 -student_ranking(s207,a).student_ranking2385,71213 -student_ranking(s208,b).student_ranking2386,71238 -student_ranking(s208,b).student_ranking2386,71238 -student_ranking(s209,a).student_ranking2387,71263 -student_ranking(s209,a).student_ranking2387,71263 -student_ranking(s210,c).student_ranking2388,71288 -student_ranking(s210,c).student_ranking2388,71288 -student_ranking(s211,b).student_ranking2389,71313 -student_ranking(s211,b).student_ranking2389,71313 -student_ranking(s212,a).student_ranking2390,71338 -student_ranking(s212,a).student_ranking2390,71338 -student_ranking(s213,a).student_ranking2391,71363 -student_ranking(s213,a).student_ranking2391,71363 -student_ranking(s214,b).student_ranking2392,71388 -student_ranking(s214,b).student_ranking2392,71388 -student_ranking(s215,b).student_ranking2393,71413 -student_ranking(s215,b).student_ranking2393,71413 -student_ranking(s216,b).student_ranking2394,71438 -student_ranking(s216,b).student_ranking2394,71438 -student_ranking(s217,b).student_ranking2395,71463 -student_ranking(s217,b).student_ranking2395,71463 -student_ranking(s218,a).student_ranking2396,71488 -student_ranking(s218,a).student_ranking2396,71488 -student_ranking(s219,b).student_ranking2397,71513 -student_ranking(s219,b).student_ranking2397,71513 -student_ranking(s220,a).student_ranking2398,71538 -student_ranking(s220,a).student_ranking2398,71538 -student_ranking(s221,c).student_ranking2399,71563 -student_ranking(s221,c).student_ranking2399,71563 -student_ranking(s222,a).student_ranking2400,71588 -student_ranking(s222,a).student_ranking2400,71588 -student_ranking(s223,b).student_ranking2401,71613 -student_ranking(s223,b).student_ranking2401,71613 -student_ranking(s224,c).student_ranking2402,71638 -student_ranking(s224,c).student_ranking2402,71638 -student_ranking(s225,c).student_ranking2403,71663 -student_ranking(s225,c).student_ranking2403,71663 -student_ranking(s226,a).student_ranking2404,71688 -student_ranking(s226,a).student_ranking2404,71688 -student_ranking(s227,a).student_ranking2405,71713 -student_ranking(s227,a).student_ranking2405,71713 -student_ranking(s228,b).student_ranking2406,71738 -student_ranking(s228,b).student_ranking2406,71738 -student_ranking(s229,c).student_ranking2407,71763 -student_ranking(s229,c).student_ranking2407,71763 -student_ranking(s230,b).student_ranking2408,71788 -student_ranking(s230,b).student_ranking2408,71788 -student_ranking(s231,a).student_ranking2409,71813 -student_ranking(s231,a).student_ranking2409,71813 -student_ranking(s232,c).student_ranking2410,71838 -student_ranking(s232,c).student_ranking2410,71838 -student_ranking(s233,b).student_ranking2411,71863 -student_ranking(s233,b).student_ranking2411,71863 -student_ranking(s234,c).student_ranking2412,71888 -student_ranking(s234,c).student_ranking2412,71888 -student_ranking(s235,b).student_ranking2413,71913 -student_ranking(s235,b).student_ranking2413,71913 -student_ranking(s236,b).student_ranking2414,71938 -student_ranking(s236,b).student_ranking2414,71938 -student_ranking(s237,a).student_ranking2415,71963 -student_ranking(s237,a).student_ranking2415,71963 -student_ranking(s238,a).student_ranking2416,71988 -student_ranking(s238,a).student_ranking2416,71988 -student_ranking(s239,b).student_ranking2417,72013 -student_ranking(s239,b).student_ranking2417,72013 -student_ranking(s240,a).student_ranking2418,72038 -student_ranking(s240,a).student_ranking2418,72038 -student_ranking(s241,b).student_ranking2419,72063 -student_ranking(s241,b).student_ranking2419,72063 -student_ranking(s242,c).student_ranking2420,72088 -student_ranking(s242,c).student_ranking2420,72088 -student_ranking(s243,b).student_ranking2421,72113 -student_ranking(s243,b).student_ranking2421,72113 -student_ranking(s244,c).student_ranking2422,72138 -student_ranking(s244,c).student_ranking2422,72138 -student_ranking(s245,b).student_ranking2423,72163 -student_ranking(s245,b).student_ranking2423,72163 -student_ranking(s246,b).student_ranking2424,72188 -student_ranking(s246,b).student_ranking2424,72188 -student_ranking(s247,b).student_ranking2425,72213 -student_ranking(s247,b).student_ranking2425,72213 -student_ranking(s248,b).student_ranking2426,72238 -student_ranking(s248,b).student_ranking2426,72238 -student_ranking(s249,b).student_ranking2427,72263 -student_ranking(s249,b).student_ranking2427,72263 -student_ranking(s250,c).student_ranking2428,72288 -student_ranking(s250,c).student_ranking2428,72288 -student_ranking(s251,a).student_ranking2429,72313 -student_ranking(s251,a).student_ranking2429,72313 -student_ranking(s252,b).student_ranking2430,72338 -student_ranking(s252,b).student_ranking2430,72338 -student_ranking(s253,b).student_ranking2431,72363 -student_ranking(s253,b).student_ranking2431,72363 -student_ranking(s254,b).student_ranking2432,72388 -student_ranking(s254,b).student_ranking2432,72388 -student_ranking(s255,c).student_ranking2433,72413 -student_ranking(s255,c).student_ranking2433,72413 - -packages/CLPBN/examples/School/school_128.yap,1897004 -total_professors(128).total_professors2,3 -total_professors(128).total_professors2,3 -total_courses(256).total_courses4,27 -total_courses(256).total_courses4,27 -total_students(4096).total_students6,48 -total_students(4096).total_students6,48 -professor(p0).professor21,235 -professor(p0).professor21,235 -professor(p1).professor22,250 -professor(p1).professor22,250 -professor(p2).professor23,265 -professor(p2).professor23,265 -professor(p3).professor24,280 -professor(p3).professor24,280 -professor(p4).professor25,295 -professor(p4).professor25,295 -professor(p5).professor26,310 -professor(p5).professor26,310 -professor(p6).professor27,325 -professor(p6).professor27,325 -professor(p7).professor28,340 -professor(p7).professor28,340 -professor(p8).professor29,355 -professor(p8).professor29,355 -professor(p9).professor30,370 -professor(p9).professor30,370 -professor(p10).professor31,385 -professor(p10).professor31,385 -professor(p11).professor32,401 -professor(p11).professor32,401 -professor(p12).professor33,417 -professor(p12).professor33,417 -professor(p13).professor34,433 -professor(p13).professor34,433 -professor(p14).professor35,449 -professor(p14).professor35,449 -professor(p15).professor36,465 -professor(p15).professor36,465 -professor(p16).professor37,481 -professor(p16).professor37,481 -professor(p17).professor38,497 -professor(p17).professor38,497 -professor(p18).professor39,513 -professor(p18).professor39,513 -professor(p19).professor40,529 -professor(p19).professor40,529 -professor(p20).professor41,545 -professor(p20).professor41,545 -professor(p21).professor42,561 -professor(p21).professor42,561 -professor(p22).professor43,577 -professor(p22).professor43,577 -professor(p23).professor44,593 -professor(p23).professor44,593 -professor(p24).professor45,609 -professor(p24).professor45,609 -professor(p25).professor46,625 -professor(p25).professor46,625 -professor(p26).professor47,641 -professor(p26).professor47,641 -professor(p27).professor48,657 -professor(p27).professor48,657 -professor(p28).professor49,673 -professor(p28).professor49,673 -professor(p29).professor50,689 -professor(p29).professor50,689 -professor(p30).professor51,705 -professor(p30).professor51,705 -professor(p31).professor52,721 -professor(p31).professor52,721 -professor(p32).professor53,737 -professor(p32).professor53,737 -professor(p33).professor54,753 -professor(p33).professor54,753 -professor(p34).professor55,769 -professor(p34).professor55,769 -professor(p35).professor56,785 -professor(p35).professor56,785 -professor(p36).professor57,801 -professor(p36).professor57,801 -professor(p37).professor58,817 -professor(p37).professor58,817 -professor(p38).professor59,833 -professor(p38).professor59,833 -professor(p39).professor60,849 -professor(p39).professor60,849 -professor(p40).professor61,865 -professor(p40).professor61,865 -professor(p41).professor62,881 -professor(p41).professor62,881 -professor(p42).professor63,897 -professor(p42).professor63,897 -professor(p43).professor64,913 -professor(p43).professor64,913 -professor(p44).professor65,929 -professor(p44).professor65,929 -professor(p45).professor66,945 -professor(p45).professor66,945 -professor(p46).professor67,961 -professor(p46).professor67,961 -professor(p47).professor68,977 -professor(p47).professor68,977 -professor(p48).professor69,993 -professor(p48).professor69,993 -professor(p49).professor70,1009 -professor(p49).professor70,1009 -professor(p50).professor71,1025 -professor(p50).professor71,1025 -professor(p51).professor72,1041 -professor(p51).professor72,1041 -professor(p52).professor73,1057 -professor(p52).professor73,1057 -professor(p53).professor74,1073 -professor(p53).professor74,1073 -professor(p54).professor75,1089 -professor(p54).professor75,1089 -professor(p55).professor76,1105 -professor(p55).professor76,1105 -professor(p56).professor77,1121 -professor(p56).professor77,1121 -professor(p57).professor78,1137 -professor(p57).professor78,1137 -professor(p58).professor79,1153 -professor(p58).professor79,1153 -professor(p59).professor80,1169 -professor(p59).professor80,1169 -professor(p60).professor81,1185 -professor(p60).professor81,1185 -professor(p61).professor82,1201 -professor(p61).professor82,1201 -professor(p62).professor83,1217 -professor(p62).professor83,1217 -professor(p63).professor84,1233 -professor(p63).professor84,1233 -professor(p64).professor85,1249 -professor(p64).professor85,1249 -professor(p65).professor86,1265 -professor(p65).professor86,1265 -professor(p66).professor87,1281 -professor(p66).professor87,1281 -professor(p67).professor88,1297 -professor(p67).professor88,1297 -professor(p68).professor89,1313 -professor(p68).professor89,1313 -professor(p69).professor90,1329 -professor(p69).professor90,1329 -professor(p70).professor91,1345 -professor(p70).professor91,1345 -professor(p71).professor92,1361 -professor(p71).professor92,1361 -professor(p72).professor93,1377 -professor(p72).professor93,1377 -professor(p73).professor94,1393 -professor(p73).professor94,1393 -professor(p74).professor95,1409 -professor(p74).professor95,1409 -professor(p75).professor96,1425 -professor(p75).professor96,1425 -professor(p76).professor97,1441 -professor(p76).professor97,1441 -professor(p77).professor98,1457 -professor(p77).professor98,1457 -professor(p78).professor99,1473 -professor(p78).professor99,1473 -professor(p79).professor100,1489 -professor(p79).professor100,1489 -professor(p80).professor101,1505 -professor(p80).professor101,1505 -professor(p81).professor102,1521 -professor(p81).professor102,1521 -professor(p82).professor103,1537 -professor(p82).professor103,1537 -professor(p83).professor104,1553 -professor(p83).professor104,1553 -professor(p84).professor105,1569 -professor(p84).professor105,1569 -professor(p85).professor106,1585 -professor(p85).professor106,1585 -professor(p86).professor107,1601 -professor(p86).professor107,1601 -professor(p87).professor108,1617 -professor(p87).professor108,1617 -professor(p88).professor109,1633 -professor(p88).professor109,1633 -professor(p89).professor110,1649 -professor(p89).professor110,1649 -professor(p90).professor111,1665 -professor(p90).professor111,1665 -professor(p91).professor112,1681 -professor(p91).professor112,1681 -professor(p92).professor113,1697 -professor(p92).professor113,1697 -professor(p93).professor114,1713 -professor(p93).professor114,1713 -professor(p94).professor115,1729 -professor(p94).professor115,1729 -professor(p95).professor116,1745 -professor(p95).professor116,1745 -professor(p96).professor117,1761 -professor(p96).professor117,1761 -professor(p97).professor118,1777 -professor(p97).professor118,1777 -professor(p98).professor119,1793 -professor(p98).professor119,1793 -professor(p99).professor120,1809 -professor(p99).professor120,1809 -professor(p100).professor121,1825 -professor(p100).professor121,1825 -professor(p101).professor122,1842 -professor(p101).professor122,1842 -professor(p102).professor123,1859 -professor(p102).professor123,1859 -professor(p103).professor124,1876 -professor(p103).professor124,1876 -professor(p104).professor125,1893 -professor(p104).professor125,1893 -professor(p105).professor126,1910 -professor(p105).professor126,1910 -professor(p106).professor127,1927 -professor(p106).professor127,1927 -professor(p107).professor128,1944 -professor(p107).professor128,1944 -professor(p108).professor129,1961 -professor(p108).professor129,1961 -professor(p109).professor130,1978 -professor(p109).professor130,1978 -professor(p110).professor131,1995 -professor(p110).professor131,1995 -professor(p111).professor132,2012 -professor(p111).professor132,2012 -professor(p112).professor133,2029 -professor(p112).professor133,2029 -professor(p113).professor134,2046 -professor(p113).professor134,2046 -professor(p114).professor135,2063 -professor(p114).professor135,2063 -professor(p115).professor136,2080 -professor(p115).professor136,2080 -professor(p116).professor137,2097 -professor(p116).professor137,2097 -professor(p117).professor138,2114 -professor(p117).professor138,2114 -professor(p118).professor139,2131 -professor(p118).professor139,2131 -professor(p119).professor140,2148 -professor(p119).professor140,2148 -professor(p120).professor141,2165 -professor(p120).professor141,2165 -professor(p121).professor142,2182 -professor(p121).professor142,2182 -professor(p122).professor143,2199 -professor(p122).professor143,2199 -professor(p123).professor144,2216 -professor(p123).professor144,2216 -professor(p124).professor145,2233 -professor(p124).professor145,2233 -professor(p125).professor146,2250 -professor(p125).professor146,2250 -professor(p126).professor147,2267 -professor(p126).professor147,2267 -professor(p127).professor148,2284 -professor(p127).professor148,2284 -course(c0,p45).course151,2303 -course(c0,p45).course151,2303 -course(c1,p102).course152,2319 -course(c1,p102).course152,2319 -course(c2,p15).course153,2336 -course(c2,p15).course153,2336 -course(c3,p61).course154,2352 -course(c3,p61).course154,2352 -course(c4,p31).course155,2368 -course(c4,p31).course155,2368 -course(c5,p111).course156,2384 -course(c5,p111).course156,2384 -course(c6,p111).course157,2401 -course(c6,p111).course157,2401 -course(c7,p58).course158,2418 -course(c7,p58).course158,2418 -course(c8,p75).course159,2434 -course(c8,p75).course159,2434 -course(c9,p67).course160,2450 -course(c9,p67).course160,2450 -course(c10,p59).course161,2466 -course(c10,p59).course161,2466 -course(c11,p72).course162,2483 -course(c11,p72).course162,2483 -course(c12,p36).course163,2500 -course(c12,p36).course163,2500 -course(c13,p127).course164,2517 -course(c13,p127).course164,2517 -course(c14,p56).course165,2535 -course(c14,p56).course165,2535 -course(c15,p63).course166,2552 -course(c15,p63).course166,2552 -course(c16,p69).course167,2569 -course(c16,p69).course167,2569 -course(c17,p109).course168,2586 -course(c17,p109).course168,2586 -course(c18,p48).course169,2604 -course(c18,p48).course169,2604 -course(c19,p24).course170,2621 -course(c19,p24).course170,2621 -course(c20,p59).course171,2638 -course(c20,p59).course171,2638 -course(c21,p0).course172,2655 -course(c21,p0).course172,2655 -course(c22,p42).course173,2671 -course(c22,p42).course173,2671 -course(c23,p14).course174,2688 -course(c23,p14).course174,2688 -course(c24,p32).course175,2705 -course(c24,p32).course175,2705 -course(c25,p62).course176,2722 -course(c25,p62).course176,2722 -course(c26,p55).course177,2739 -course(c26,p55).course177,2739 -course(c27,p106).course178,2756 -course(c27,p106).course178,2756 -course(c28,p20).course179,2774 -course(c28,p20).course179,2774 -course(c29,p11).course180,2791 -course(c29,p11).course180,2791 -course(c30,p10).course181,2808 -course(c30,p10).course181,2808 -course(c31,p70).course182,2825 -course(c31,p70).course182,2825 -course(c32,p116).course183,2842 -course(c32,p116).course183,2842 -course(c33,p26).course184,2860 -course(c33,p26).course184,2860 -course(c34,p126).course185,2877 -course(c34,p126).course185,2877 -course(c35,p19).course186,2895 -course(c35,p19).course186,2895 -course(c36,p11).course187,2912 -course(c36,p11).course187,2912 -course(c37,p113).course188,2929 -course(c37,p113).course188,2929 -course(c38,p79).course189,2947 -course(c38,p79).course189,2947 -course(c39,p90).course190,2964 -course(c39,p90).course190,2964 -course(c40,p54).course191,2981 -course(c40,p54).course191,2981 -course(c41,p9).course192,2998 -course(c41,p9).course192,2998 -course(c42,p31).course193,3014 -course(c42,p31).course193,3014 -course(c43,p95).course194,3031 -course(c43,p95).course194,3031 -course(c44,p12).course195,3048 -course(c44,p12).course195,3048 -course(c45,p92).course196,3065 -course(c45,p92).course196,3065 -course(c46,p28).course197,3082 -course(c46,p28).course197,3082 -course(c47,p82).course198,3099 -course(c47,p82).course198,3099 -course(c48,p79).course199,3116 -course(c48,p79).course199,3116 -course(c49,p83).course200,3133 -course(c49,p83).course200,3133 -course(c50,p107).course201,3150 -course(c50,p107).course201,3150 -course(c51,p6).course202,3168 -course(c51,p6).course202,3168 -course(c52,p81).course203,3184 -course(c52,p81).course203,3184 -course(c53,p21).course204,3201 -course(c53,p21).course204,3201 -course(c54,p22).course205,3218 -course(c54,p22).course205,3218 -course(c55,p114).course206,3235 -course(c55,p114).course206,3235 -course(c56,p89).course207,3253 -course(c56,p89).course207,3253 -course(c57,p85).course208,3270 -course(c57,p85).course208,3270 -course(c58,p93).course209,3287 -course(c58,p93).course209,3287 -course(c59,p113).course210,3304 -course(c59,p113).course210,3304 -course(c60,p95).course211,3322 -course(c60,p95).course211,3322 -course(c61,p107).course212,3339 -course(c61,p107).course212,3339 -course(c62,p45).course213,3357 -course(c62,p45).course213,3357 -course(c63,p84).course214,3374 -course(c63,p84).course214,3374 -course(c64,p5).course215,3391 -course(c64,p5).course215,3391 -course(c65,p50).course216,3407 -course(c65,p50).course216,3407 -course(c66,p104).course217,3424 -course(c66,p104).course217,3424 -course(c67,p22).course218,3442 -course(c67,p22).course218,3442 -course(c68,p38).course219,3459 -course(c68,p38).course219,3459 -course(c69,p54).course220,3476 -course(c69,p54).course220,3476 -course(c70,p105).course221,3493 -course(c70,p105).course221,3493 -course(c71,p89).course222,3511 -course(c71,p89).course222,3511 -course(c72,p61).course223,3528 -course(c72,p61).course223,3528 -course(c73,p9).course224,3545 -course(c73,p9).course224,3545 -course(c74,p52).course225,3561 -course(c74,p52).course225,3561 -course(c75,p77).course226,3578 -course(c75,p77).course226,3578 -course(c76,p106).course227,3595 -course(c76,p106).course227,3595 -course(c77,p86).course228,3613 -course(c77,p86).course228,3613 -course(c78,p25).course229,3630 -course(c78,p25).course229,3630 -course(c79,p49).course230,3647 -course(c79,p49).course230,3647 -course(c80,p42).course231,3664 -course(c80,p42).course231,3664 -course(c81,p5).course232,3681 -course(c81,p5).course232,3681 -course(c82,p62).course233,3697 -course(c82,p62).course233,3697 -course(c83,p121).course234,3714 -course(c83,p121).course234,3714 -course(c84,p30).course235,3732 -course(c84,p30).course235,3732 -course(c85,p83).course236,3749 -course(c85,p83).course236,3749 -course(c86,p103).course237,3766 -course(c86,p103).course237,3766 -course(c87,p120).course238,3784 -course(c87,p120).course238,3784 -course(c88,p34).course239,3802 -course(c88,p34).course239,3802 -course(c89,p71).course240,3819 -course(c89,p71).course240,3819 -course(c90,p98).course241,3836 -course(c90,p98).course241,3836 -course(c91,p1).course242,3853 -course(c91,p1).course242,3853 -course(c92,p46).course243,3869 -course(c92,p46).course243,3869 -course(c93,p15).course244,3886 -course(c93,p15).course244,3886 -course(c94,p85).course245,3903 -course(c94,p85).course245,3903 -course(c95,p49).course246,3920 -course(c95,p49).course246,3920 -course(c96,p65).course247,3937 -course(c96,p65).course247,3937 -course(c97,p60).course248,3954 -course(c97,p60).course248,3954 -course(c98,p71).course249,3971 -course(c98,p71).course249,3971 -course(c99,p101).course250,3988 -course(c99,p101).course250,3988 -course(c100,p109).course251,4006 -course(c100,p109).course251,4006 -course(c101,p44).course252,4025 -course(c101,p44).course252,4025 -course(c102,p65).course253,4043 -course(c102,p65).course253,4043 -course(c103,p41).course254,4061 -course(c103,p41).course254,4061 -course(c104,p66).course255,4079 -course(c104,p66).course255,4079 -course(c105,p122).course256,4097 -course(c105,p122).course256,4097 -course(c106,p119).course257,4116 -course(c106,p119).course257,4116 -course(c107,p36).course258,4135 -course(c107,p36).course258,4135 -course(c108,p75).course259,4153 -course(c108,p75).course259,4153 -course(c109,p14).course260,4171 -course(c109,p14).course260,4171 -course(c110,p87).course261,4189 -course(c110,p87).course261,4189 -course(c111,p118).course262,4207 -course(c111,p118).course262,4207 -course(c112,p23).course263,4226 -course(c112,p23).course263,4226 -course(c113,p21).course264,4244 -course(c113,p21).course264,4244 -course(c114,p112).course265,4262 -course(c114,p112).course265,4262 -course(c115,p58).course266,4281 -course(c115,p58).course266,4281 -course(c116,p105).course267,4299 -course(c116,p105).course267,4299 -course(c117,p88).course268,4318 -course(c117,p88).course268,4318 -course(c118,p46).course269,4336 -course(c118,p46).course269,4336 -course(c119,p8).course270,4354 -course(c119,p8).course270,4354 -course(c120,p18).course271,4371 -course(c120,p18).course271,4371 -course(c121,p23).course272,4389 -course(c121,p23).course272,4389 -course(c122,p13).course273,4407 -course(c122,p13).course273,4407 -course(c123,p73).course274,4425 -course(c123,p73).course274,4425 -course(c124,p37).course275,4443 -course(c124,p37).course275,4443 -course(c125,p96).course276,4461 -course(c125,p96).course276,4461 -course(c126,p120).course277,4479 -course(c126,p120).course277,4479 -course(c127,p100).course278,4498 -course(c127,p100).course278,4498 -course(c128,p26).course279,4517 -course(c128,p26).course279,4517 -course(c129,p57).course280,4535 -course(c129,p57).course280,4535 -course(c130,p68).course281,4553 -course(c130,p68).course281,4553 -course(c131,p0).course282,4571 -course(c131,p0).course282,4571 -course(c132,p114).course283,4588 -course(c132,p114).course283,4588 -course(c133,p124).course284,4607 -course(c133,p124).course284,4607 -course(c134,p43).course285,4626 -course(c134,p43).course285,4626 -course(c135,p39).course286,4644 -course(c135,p39).course286,4644 -course(c136,p117).course287,4662 -course(c136,p117).course287,4662 -course(c137,p33).course288,4681 -course(c137,p33).course288,4681 -course(c138,p69).course289,4699 -course(c138,p69).course289,4699 -course(c139,p51).course290,4717 -course(c139,p51).course290,4717 -course(c140,p52).course291,4735 -course(c140,p52).course291,4735 -course(c141,p17).course292,4753 -course(c141,p17).course292,4753 -course(c142,p48).course293,4771 -course(c142,p48).course293,4771 -course(c143,p78).course294,4789 -course(c143,p78).course294,4789 -course(c144,p47).course295,4807 -course(c144,p47).course295,4807 -course(c145,p8).course296,4825 -course(c145,p8).course296,4825 -course(c146,p122).course297,4842 -course(c146,p122).course297,4842 -course(c147,p6).course298,4861 -course(c147,p6).course298,4861 -course(c148,p98).course299,4878 -course(c148,p98).course299,4878 -course(c149,p41).course300,4896 -course(c149,p41).course300,4896 -course(c150,p18).course301,4914 -course(c150,p18).course301,4914 -course(c151,p123).course302,4932 -course(c151,p123).course302,4932 -course(c152,p43).course303,4951 -course(c152,p43).course303,4951 -course(c153,p13).course304,4969 -course(c153,p13).course304,4969 -course(c154,p66).course305,4987 -course(c154,p66).course305,4987 -course(c155,p90).course306,5005 -course(c155,p90).course306,5005 -course(c156,p110).course307,5023 -course(c156,p110).course307,5023 -course(c157,p55).course308,5042 -course(c157,p55).course308,5042 -course(c158,p39).course309,5060 -course(c158,p39).course309,5060 -course(c159,p118).course310,5078 -course(c159,p118).course310,5078 -course(c160,p101).course311,5097 -course(c160,p101).course311,5097 -course(c161,p108).course312,5116 -course(c161,p108).course312,5116 -course(c162,p119).course313,5135 -course(c162,p119).course313,5135 -course(c163,p76).course314,5154 -course(c163,p76).course314,5154 -course(c164,p100).course315,5172 -course(c164,p100).course315,5172 -course(c165,p19).course316,5191 -course(c165,p19).course316,5191 -course(c166,p104).course317,5209 -course(c166,p104).course317,5209 -course(c167,p87).course318,5228 -course(c167,p87).course318,5228 -course(c168,p53).course319,5246 -course(c168,p53).course319,5246 -course(c169,p40).course320,5264 -course(c169,p40).course320,5264 -course(c170,p16).course321,5282 -course(c170,p16).course321,5282 -course(c171,p94).course322,5300 -course(c171,p94).course322,5300 -course(c172,p72).course323,5318 -course(c172,p72).course323,5318 -course(c173,p50).course324,5336 -course(c173,p50).course324,5336 -course(c174,p29).course325,5354 -course(c174,p29).course325,5354 -course(c175,p112).course326,5372 -course(c175,p112).course326,5372 -course(c176,p70).course327,5391 -course(c176,p70).course327,5391 -course(c177,p24).course328,5409 -course(c177,p24).course328,5409 -course(c178,p123).course329,5427 -course(c178,p123).course329,5427 -course(c179,p30).course330,5446 -course(c179,p30).course330,5446 -course(c180,p67).course331,5464 -course(c180,p67).course331,5464 -course(c181,p4).course332,5482 -course(c181,p4).course332,5482 -course(c182,p10).course333,5499 -course(c182,p10).course333,5499 -course(c183,p102).course334,5517 -course(c183,p102).course334,5517 -course(c184,p27).course335,5536 -course(c184,p27).course335,5536 -course(c185,p76).course336,5554 -course(c185,p76).course336,5554 -course(c186,p60).course337,5572 -course(c186,p60).course337,5572 -course(c187,p125).course338,5590 -course(c187,p125).course338,5590 -course(c188,p116).course339,5609 -course(c188,p116).course339,5609 -course(c189,p94).course340,5628 -course(c189,p94).course340,5628 -course(c190,p110).course341,5646 -course(c190,p110).course341,5646 -course(c191,p80).course342,5665 -course(c191,p80).course342,5665 -course(c192,p80).course343,5683 -course(c192,p80).course343,5683 -course(c193,p99).course344,5701 -course(c193,p99).course344,5701 -course(c194,p25).course345,5719 -course(c194,p25).course345,5719 -course(c195,p51).course346,5737 -course(c195,p51).course346,5737 -course(c196,p124).course347,5755 -course(c196,p124).course347,5755 -course(c197,p1).course348,5774 -course(c197,p1).course348,5774 -course(c198,p4).course349,5791 -course(c198,p4).course349,5791 -course(c199,p37).course350,5808 -course(c199,p37).course350,5808 -course(c200,p44).course351,5826 -course(c200,p44).course351,5826 -course(c201,p20).course352,5844 -course(c201,p20).course352,5844 -course(c202,p2).course353,5862 -course(c202,p2).course353,5862 -course(c203,p117).course354,5879 -course(c203,p117).course354,5879 -course(c204,p74).course355,5898 -course(c204,p74).course355,5898 -course(c205,p29).course356,5916 -course(c205,p29).course356,5916 -course(c206,p92).course357,5934 -course(c206,p92).course357,5934 -course(c207,p3).course358,5952 -course(c207,p3).course358,5952 -course(c208,p57).course359,5969 -course(c208,p57).course359,5969 -course(c209,p86).course360,5987 -course(c209,p86).course360,5987 -course(c210,p17).course361,6005 -course(c210,p17).course361,6005 -course(c211,p97).course362,6023 -course(c211,p97).course362,6023 -course(c212,p77).course363,6041 -course(c212,p77).course363,6041 -course(c213,p35).course364,6059 -course(c213,p35).course364,6059 -course(c214,p78).course365,6077 -course(c214,p78).course365,6077 -course(c215,p99).course366,6095 -course(c215,p99).course366,6095 -course(c216,p103).course367,6113 -course(c216,p103).course367,6113 -course(c217,p16).course368,6132 -course(c217,p16).course368,6132 -course(c218,p97).course369,6150 -course(c218,p97).course369,6150 -course(c219,p88).course370,6168 -course(c219,p88).course370,6168 -course(c220,p126).course371,6186 -course(c220,p126).course371,6186 -course(c221,p81).course372,6205 -course(c221,p81).course372,6205 -course(c222,p38).course373,6223 -course(c222,p38).course373,6223 -course(c223,p56).course374,6241 -course(c223,p56).course374,6241 -course(c224,p53).course375,6259 -course(c224,p53).course375,6259 -course(c225,p64).course376,6277 -course(c225,p64).course376,6277 -course(c226,p108).course377,6295 -course(c226,p108).course377,6295 -course(c227,p28).course378,6314 -course(c227,p28).course378,6314 -course(c228,p64).course379,6332 -course(c228,p64).course379,6332 -course(c229,p121).course380,6350 -course(c229,p121).course380,6350 -course(c230,p91).course381,6369 -course(c230,p91).course381,6369 -course(c231,p2).course382,6387 -course(c231,p2).course382,6387 -course(c232,p32).course383,6404 -course(c232,p32).course383,6404 -course(c233,p84).course384,6422 -course(c233,p84).course384,6422 -course(c234,p115).course385,6440 -course(c234,p115).course385,6440 -course(c235,p82).course386,6459 -course(c235,p82).course386,6459 -course(c236,p12).course387,6477 -course(c236,p12).course387,6477 -course(c237,p40).course388,6495 -course(c237,p40).course388,6495 -course(c238,p96).course389,6513 -course(c238,p96).course389,6513 -course(c239,p3).course390,6531 -course(c239,p3).course390,6531 -course(c240,p125).course391,6548 -course(c240,p125).course391,6548 -course(c241,p91).course392,6567 -course(c241,p91).course392,6567 -course(c242,p35).course393,6585 -course(c242,p35).course393,6585 -course(c243,p27).course394,6603 -course(c243,p27).course394,6603 -course(c244,p63).course395,6621 -course(c244,p63).course395,6621 -course(c245,p115).course396,6639 -course(c245,p115).course396,6639 -course(c246,p7).course397,6658 -course(c246,p7).course397,6658 -course(c247,p7).course398,6675 -course(c247,p7).course398,6675 -course(c248,p127).course399,6692 -course(c248,p127).course399,6692 -course(c249,p73).course400,6711 -course(c249,p73).course400,6711 -course(c250,p74).course401,6729 -course(c250,p74).course401,6729 -course(c251,p93).course402,6747 -course(c251,p93).course402,6747 -course(c252,p34).course403,6765 -course(c252,p34).course403,6765 -course(c253,p68).course404,6783 -course(c253,p68).course404,6783 -course(c254,p47).course405,6801 -course(c254,p47).course405,6801 -course(c255,p33).course406,6819 -course(c255,p33).course406,6819 -student(s0).student409,6839 -student(s0).student409,6839 -student(s1).student410,6852 -student(s1).student410,6852 -student(s2).student411,6865 -student(s2).student411,6865 -student(s3).student412,6878 -student(s3).student412,6878 -student(s4).student413,6891 -student(s4).student413,6891 -student(s5).student414,6904 -student(s5).student414,6904 -student(s6).student415,6917 -student(s6).student415,6917 -student(s7).student416,6930 -student(s7).student416,6930 -student(s8).student417,6943 -student(s8).student417,6943 -student(s9).student418,6956 -student(s9).student418,6956 -student(s10).student419,6969 -student(s10).student419,6969 -student(s11).student420,6983 -student(s11).student420,6983 -student(s12).student421,6997 -student(s12).student421,6997 -student(s13).student422,7011 -student(s13).student422,7011 -student(s14).student423,7025 -student(s14).student423,7025 -student(s15).student424,7039 -student(s15).student424,7039 -student(s16).student425,7053 -student(s16).student425,7053 -student(s17).student426,7067 -student(s17).student426,7067 -student(s18).student427,7081 -student(s18).student427,7081 -student(s19).student428,7095 -student(s19).student428,7095 -student(s20).student429,7109 -student(s20).student429,7109 -student(s21).student430,7123 -student(s21).student430,7123 -student(s22).student431,7137 -student(s22).student431,7137 -student(s23).student432,7151 -student(s23).student432,7151 -student(s24).student433,7165 -student(s24).student433,7165 -student(s25).student434,7179 -student(s25).student434,7179 -student(s26).student435,7193 -student(s26).student435,7193 -student(s27).student436,7207 -student(s27).student436,7207 -student(s28).student437,7221 -student(s28).student437,7221 -student(s29).student438,7235 -student(s29).student438,7235 -student(s30).student439,7249 -student(s30).student439,7249 -student(s31).student440,7263 -student(s31).student440,7263 -student(s32).student441,7277 -student(s32).student441,7277 -student(s33).student442,7291 -student(s33).student442,7291 -student(s34).student443,7305 -student(s34).student443,7305 -student(s35).student444,7319 -student(s35).student444,7319 -student(s36).student445,7333 -student(s36).student445,7333 -student(s37).student446,7347 -student(s37).student446,7347 -student(s38).student447,7361 -student(s38).student447,7361 -student(s39).student448,7375 -student(s39).student448,7375 -student(s40).student449,7389 -student(s40).student449,7389 -student(s41).student450,7403 -student(s41).student450,7403 -student(s42).student451,7417 -student(s42).student451,7417 -student(s43).student452,7431 -student(s43).student452,7431 -student(s44).student453,7445 -student(s44).student453,7445 -student(s45).student454,7459 -student(s45).student454,7459 -student(s46).student455,7473 -student(s46).student455,7473 -student(s47).student456,7487 -student(s47).student456,7487 -student(s48).student457,7501 -student(s48).student457,7501 -student(s49).student458,7515 -student(s49).student458,7515 -student(s50).student459,7529 -student(s50).student459,7529 -student(s51).student460,7543 -student(s51).student460,7543 -student(s52).student461,7557 -student(s52).student461,7557 -student(s53).student462,7571 -student(s53).student462,7571 -student(s54).student463,7585 -student(s54).student463,7585 -student(s55).student464,7599 -student(s55).student464,7599 -student(s56).student465,7613 -student(s56).student465,7613 -student(s57).student466,7627 -student(s57).student466,7627 -student(s58).student467,7641 -student(s58).student467,7641 -student(s59).student468,7655 -student(s59).student468,7655 -student(s60).student469,7669 -student(s60).student469,7669 -student(s61).student470,7683 -student(s61).student470,7683 -student(s62).student471,7697 -student(s62).student471,7697 -student(s63).student472,7711 -student(s63).student472,7711 -student(s64).student473,7725 -student(s64).student473,7725 -student(s65).student474,7739 -student(s65).student474,7739 -student(s66).student475,7753 -student(s66).student475,7753 -student(s67).student476,7767 -student(s67).student476,7767 -student(s68).student477,7781 -student(s68).student477,7781 -student(s69).student478,7795 -student(s69).student478,7795 -student(s70).student479,7809 -student(s70).student479,7809 -student(s71).student480,7823 -student(s71).student480,7823 -student(s72).student481,7837 -student(s72).student481,7837 -student(s73).student482,7851 -student(s73).student482,7851 -student(s74).student483,7865 -student(s74).student483,7865 -student(s75).student484,7879 -student(s75).student484,7879 -student(s76).student485,7893 -student(s76).student485,7893 -student(s77).student486,7907 -student(s77).student486,7907 -student(s78).student487,7921 -student(s78).student487,7921 -student(s79).student488,7935 -student(s79).student488,7935 -student(s80).student489,7949 -student(s80).student489,7949 -student(s81).student490,7963 -student(s81).student490,7963 -student(s82).student491,7977 -student(s82).student491,7977 -student(s83).student492,7991 -student(s83).student492,7991 -student(s84).student493,8005 -student(s84).student493,8005 -student(s85).student494,8019 -student(s85).student494,8019 -student(s86).student495,8033 -student(s86).student495,8033 -student(s87).student496,8047 -student(s87).student496,8047 -student(s88).student497,8061 -student(s88).student497,8061 -student(s89).student498,8075 -student(s89).student498,8075 -student(s90).student499,8089 -student(s90).student499,8089 -student(s91).student500,8103 -student(s91).student500,8103 -student(s92).student501,8117 -student(s92).student501,8117 -student(s93).student502,8131 -student(s93).student502,8131 -student(s94).student503,8145 -student(s94).student503,8145 -student(s95).student504,8159 -student(s95).student504,8159 -student(s96).student505,8173 -student(s96).student505,8173 -student(s97).student506,8187 -student(s97).student506,8187 -student(s98).student507,8201 -student(s98).student507,8201 -student(s99).student508,8215 -student(s99).student508,8215 -student(s100).student509,8229 -student(s100).student509,8229 -student(s101).student510,8244 -student(s101).student510,8244 -student(s102).student511,8259 -student(s102).student511,8259 -student(s103).student512,8274 -student(s103).student512,8274 -student(s104).student513,8289 -student(s104).student513,8289 -student(s105).student514,8304 -student(s105).student514,8304 -student(s106).student515,8319 -student(s106).student515,8319 -student(s107).student516,8334 -student(s107).student516,8334 -student(s108).student517,8349 -student(s108).student517,8349 -student(s109).student518,8364 -student(s109).student518,8364 -student(s110).student519,8379 -student(s110).student519,8379 -student(s111).student520,8394 -student(s111).student520,8394 -student(s112).student521,8409 -student(s112).student521,8409 -student(s113).student522,8424 -student(s113).student522,8424 -student(s114).student523,8439 -student(s114).student523,8439 -student(s115).student524,8454 -student(s115).student524,8454 -student(s116).student525,8469 -student(s116).student525,8469 -student(s117).student526,8484 -student(s117).student526,8484 -student(s118).student527,8499 -student(s118).student527,8499 -student(s119).student528,8514 -student(s119).student528,8514 -student(s120).student529,8529 -student(s120).student529,8529 -student(s121).student530,8544 -student(s121).student530,8544 -student(s122).student531,8559 -student(s122).student531,8559 -student(s123).student532,8574 -student(s123).student532,8574 -student(s124).student533,8589 -student(s124).student533,8589 -student(s125).student534,8604 -student(s125).student534,8604 -student(s126).student535,8619 -student(s126).student535,8619 -student(s127).student536,8634 -student(s127).student536,8634 -student(s128).student537,8649 -student(s128).student537,8649 -student(s129).student538,8664 -student(s129).student538,8664 -student(s130).student539,8679 -student(s130).student539,8679 -student(s131).student540,8694 -student(s131).student540,8694 -student(s132).student541,8709 -student(s132).student541,8709 -student(s133).student542,8724 -student(s133).student542,8724 -student(s134).student543,8739 -student(s134).student543,8739 -student(s135).student544,8754 -student(s135).student544,8754 -student(s136).student545,8769 -student(s136).student545,8769 -student(s137).student546,8784 -student(s137).student546,8784 -student(s138).student547,8799 -student(s138).student547,8799 -student(s139).student548,8814 -student(s139).student548,8814 -student(s140).student549,8829 -student(s140).student549,8829 -student(s141).student550,8844 -student(s141).student550,8844 -student(s142).student551,8859 -student(s142).student551,8859 -student(s143).student552,8874 -student(s143).student552,8874 -student(s144).student553,8889 -student(s144).student553,8889 -student(s145).student554,8904 -student(s145).student554,8904 -student(s146).student555,8919 -student(s146).student555,8919 -student(s147).student556,8934 -student(s147).student556,8934 -student(s148).student557,8949 -student(s148).student557,8949 -student(s149).student558,8964 -student(s149).student558,8964 -student(s150).student559,8979 -student(s150).student559,8979 -student(s151).student560,8994 -student(s151).student560,8994 -student(s152).student561,9009 -student(s152).student561,9009 -student(s153).student562,9024 -student(s153).student562,9024 -student(s154).student563,9039 -student(s154).student563,9039 -student(s155).student564,9054 -student(s155).student564,9054 -student(s156).student565,9069 -student(s156).student565,9069 -student(s157).student566,9084 -student(s157).student566,9084 -student(s158).student567,9099 -student(s158).student567,9099 -student(s159).student568,9114 -student(s159).student568,9114 -student(s160).student569,9129 -student(s160).student569,9129 -student(s161).student570,9144 -student(s161).student570,9144 -student(s162).student571,9159 -student(s162).student571,9159 -student(s163).student572,9174 -student(s163).student572,9174 -student(s164).student573,9189 -student(s164).student573,9189 -student(s165).student574,9204 -student(s165).student574,9204 -student(s166).student575,9219 -student(s166).student575,9219 -student(s167).student576,9234 -student(s167).student576,9234 -student(s168).student577,9249 -student(s168).student577,9249 -student(s169).student578,9264 -student(s169).student578,9264 -student(s170).student579,9279 -student(s170).student579,9279 -student(s171).student580,9294 -student(s171).student580,9294 -student(s172).student581,9309 -student(s172).student581,9309 -student(s173).student582,9324 -student(s173).student582,9324 -student(s174).student583,9339 -student(s174).student583,9339 -student(s175).student584,9354 -student(s175).student584,9354 -student(s176).student585,9369 -student(s176).student585,9369 -student(s177).student586,9384 -student(s177).student586,9384 -student(s178).student587,9399 -student(s178).student587,9399 -student(s179).student588,9414 -student(s179).student588,9414 -student(s180).student589,9429 -student(s180).student589,9429 -student(s181).student590,9444 -student(s181).student590,9444 -student(s182).student591,9459 -student(s182).student591,9459 -student(s183).student592,9474 -student(s183).student592,9474 -student(s184).student593,9489 -student(s184).student593,9489 -student(s185).student594,9504 -student(s185).student594,9504 -student(s186).student595,9519 -student(s186).student595,9519 -student(s187).student596,9534 -student(s187).student596,9534 -student(s188).student597,9549 -student(s188).student597,9549 -student(s189).student598,9564 -student(s189).student598,9564 -student(s190).student599,9579 -student(s190).student599,9579 -student(s191).student600,9594 -student(s191).student600,9594 -student(s192).student601,9609 -student(s192).student601,9609 -student(s193).student602,9624 -student(s193).student602,9624 -student(s194).student603,9639 -student(s194).student603,9639 -student(s195).student604,9654 -student(s195).student604,9654 -student(s196).student605,9669 -student(s196).student605,9669 -student(s197).student606,9684 -student(s197).student606,9684 -student(s198).student607,9699 -student(s198).student607,9699 -student(s199).student608,9714 -student(s199).student608,9714 -student(s200).student609,9729 -student(s200).student609,9729 -student(s201).student610,9744 -student(s201).student610,9744 -student(s202).student611,9759 -student(s202).student611,9759 -student(s203).student612,9774 -student(s203).student612,9774 -student(s204).student613,9789 -student(s204).student613,9789 -student(s205).student614,9804 -student(s205).student614,9804 -student(s206).student615,9819 -student(s206).student615,9819 -student(s207).student616,9834 -student(s207).student616,9834 -student(s208).student617,9849 -student(s208).student617,9849 -student(s209).student618,9864 -student(s209).student618,9864 -student(s210).student619,9879 -student(s210).student619,9879 -student(s211).student620,9894 -student(s211).student620,9894 -student(s212).student621,9909 -student(s212).student621,9909 -student(s213).student622,9924 -student(s213).student622,9924 -student(s214).student623,9939 -student(s214).student623,9939 -student(s215).student624,9954 -student(s215).student624,9954 -student(s216).student625,9969 -student(s216).student625,9969 -student(s217).student626,9984 -student(s217).student626,9984 -student(s218).student627,9999 -student(s218).student627,9999 -student(s219).student628,10014 -student(s219).student628,10014 -student(s220).student629,10029 -student(s220).student629,10029 -student(s221).student630,10044 -student(s221).student630,10044 -student(s222).student631,10059 -student(s222).student631,10059 -student(s223).student632,10074 -student(s223).student632,10074 -student(s224).student633,10089 -student(s224).student633,10089 -student(s225).student634,10104 -student(s225).student634,10104 -student(s226).student635,10119 -student(s226).student635,10119 -student(s227).student636,10134 -student(s227).student636,10134 -student(s228).student637,10149 -student(s228).student637,10149 -student(s229).student638,10164 -student(s229).student638,10164 -student(s230).student639,10179 -student(s230).student639,10179 -student(s231).student640,10194 -student(s231).student640,10194 -student(s232).student641,10209 -student(s232).student641,10209 -student(s233).student642,10224 -student(s233).student642,10224 -student(s234).student643,10239 -student(s234).student643,10239 -student(s235).student644,10254 -student(s235).student644,10254 -student(s236).student645,10269 -student(s236).student645,10269 -student(s237).student646,10284 -student(s237).student646,10284 -student(s238).student647,10299 -student(s238).student647,10299 -student(s239).student648,10314 -student(s239).student648,10314 -student(s240).student649,10329 -student(s240).student649,10329 -student(s241).student650,10344 -student(s241).student650,10344 -student(s242).student651,10359 -student(s242).student651,10359 -student(s243).student652,10374 -student(s243).student652,10374 -student(s244).student653,10389 -student(s244).student653,10389 -student(s245).student654,10404 -student(s245).student654,10404 -student(s246).student655,10419 -student(s246).student655,10419 -student(s247).student656,10434 -student(s247).student656,10434 -student(s248).student657,10449 -student(s248).student657,10449 -student(s249).student658,10464 -student(s249).student658,10464 -student(s250).student659,10479 -student(s250).student659,10479 -student(s251).student660,10494 -student(s251).student660,10494 -student(s252).student661,10509 -student(s252).student661,10509 -student(s253).student662,10524 -student(s253).student662,10524 -student(s254).student663,10539 -student(s254).student663,10539 -student(s255).student664,10554 -student(s255).student664,10554 -student(s256).student665,10569 -student(s256).student665,10569 -student(s257).student666,10584 -student(s257).student666,10584 -student(s258).student667,10599 -student(s258).student667,10599 -student(s259).student668,10614 -student(s259).student668,10614 -student(s260).student669,10629 -student(s260).student669,10629 -student(s261).student670,10644 -student(s261).student670,10644 -student(s262).student671,10659 -student(s262).student671,10659 -student(s263).student672,10674 -student(s263).student672,10674 -student(s264).student673,10689 -student(s264).student673,10689 -student(s265).student674,10704 -student(s265).student674,10704 -student(s266).student675,10719 -student(s266).student675,10719 -student(s267).student676,10734 -student(s267).student676,10734 -student(s268).student677,10749 -student(s268).student677,10749 -student(s269).student678,10764 -student(s269).student678,10764 -student(s270).student679,10779 -student(s270).student679,10779 -student(s271).student680,10794 -student(s271).student680,10794 -student(s272).student681,10809 -student(s272).student681,10809 -student(s273).student682,10824 -student(s273).student682,10824 -student(s274).student683,10839 -student(s274).student683,10839 -student(s275).student684,10854 -student(s275).student684,10854 -student(s276).student685,10869 -student(s276).student685,10869 -student(s277).student686,10884 -student(s277).student686,10884 -student(s278).student687,10899 -student(s278).student687,10899 -student(s279).student688,10914 -student(s279).student688,10914 -student(s280).student689,10929 -student(s280).student689,10929 -student(s281).student690,10944 -student(s281).student690,10944 -student(s282).student691,10959 -student(s282).student691,10959 -student(s283).student692,10974 -student(s283).student692,10974 -student(s284).student693,10989 -student(s284).student693,10989 -student(s285).student694,11004 -student(s285).student694,11004 -student(s286).student695,11019 -student(s286).student695,11019 -student(s287).student696,11034 -student(s287).student696,11034 -student(s288).student697,11049 -student(s288).student697,11049 -student(s289).student698,11064 -student(s289).student698,11064 -student(s290).student699,11079 -student(s290).student699,11079 -student(s291).student700,11094 -student(s291).student700,11094 -student(s292).student701,11109 -student(s292).student701,11109 -student(s293).student702,11124 -student(s293).student702,11124 -student(s294).student703,11139 -student(s294).student703,11139 -student(s295).student704,11154 -student(s295).student704,11154 -student(s296).student705,11169 -student(s296).student705,11169 -student(s297).student706,11184 -student(s297).student706,11184 -student(s298).student707,11199 -student(s298).student707,11199 -student(s299).student708,11214 -student(s299).student708,11214 -student(s300).student709,11229 -student(s300).student709,11229 -student(s301).student710,11244 -student(s301).student710,11244 -student(s302).student711,11259 -student(s302).student711,11259 -student(s303).student712,11274 -student(s303).student712,11274 -student(s304).student713,11289 -student(s304).student713,11289 -student(s305).student714,11304 -student(s305).student714,11304 -student(s306).student715,11319 -student(s306).student715,11319 -student(s307).student716,11334 -student(s307).student716,11334 -student(s308).student717,11349 -student(s308).student717,11349 -student(s309).student718,11364 -student(s309).student718,11364 -student(s310).student719,11379 -student(s310).student719,11379 -student(s311).student720,11394 -student(s311).student720,11394 -student(s312).student721,11409 -student(s312).student721,11409 -student(s313).student722,11424 -student(s313).student722,11424 -student(s314).student723,11439 -student(s314).student723,11439 -student(s315).student724,11454 -student(s315).student724,11454 -student(s316).student725,11469 -student(s316).student725,11469 -student(s317).student726,11484 -student(s317).student726,11484 -student(s318).student727,11499 -student(s318).student727,11499 -student(s319).student728,11514 -student(s319).student728,11514 -student(s320).student729,11529 -student(s320).student729,11529 -student(s321).student730,11544 -student(s321).student730,11544 -student(s322).student731,11559 -student(s322).student731,11559 -student(s323).student732,11574 -student(s323).student732,11574 -student(s324).student733,11589 -student(s324).student733,11589 -student(s325).student734,11604 -student(s325).student734,11604 -student(s326).student735,11619 -student(s326).student735,11619 -student(s327).student736,11634 -student(s327).student736,11634 -student(s328).student737,11649 -student(s328).student737,11649 -student(s329).student738,11664 -student(s329).student738,11664 -student(s330).student739,11679 -student(s330).student739,11679 -student(s331).student740,11694 -student(s331).student740,11694 -student(s332).student741,11709 -student(s332).student741,11709 -student(s333).student742,11724 -student(s333).student742,11724 -student(s334).student743,11739 -student(s334).student743,11739 -student(s335).student744,11754 -student(s335).student744,11754 -student(s336).student745,11769 -student(s336).student745,11769 -student(s337).student746,11784 -student(s337).student746,11784 -student(s338).student747,11799 -student(s338).student747,11799 -student(s339).student748,11814 -student(s339).student748,11814 -student(s340).student749,11829 -student(s340).student749,11829 -student(s341).student750,11844 -student(s341).student750,11844 -student(s342).student751,11859 -student(s342).student751,11859 -student(s343).student752,11874 -student(s343).student752,11874 -student(s344).student753,11889 -student(s344).student753,11889 -student(s345).student754,11904 -student(s345).student754,11904 -student(s346).student755,11919 -student(s346).student755,11919 -student(s347).student756,11934 -student(s347).student756,11934 -student(s348).student757,11949 -student(s348).student757,11949 -student(s349).student758,11964 -student(s349).student758,11964 -student(s350).student759,11979 -student(s350).student759,11979 -student(s351).student760,11994 -student(s351).student760,11994 -student(s352).student761,12009 -student(s352).student761,12009 -student(s353).student762,12024 -student(s353).student762,12024 -student(s354).student763,12039 -student(s354).student763,12039 -student(s355).student764,12054 -student(s355).student764,12054 -student(s356).student765,12069 -student(s356).student765,12069 -student(s357).student766,12084 -student(s357).student766,12084 -student(s358).student767,12099 -student(s358).student767,12099 -student(s359).student768,12114 -student(s359).student768,12114 -student(s360).student769,12129 -student(s360).student769,12129 -student(s361).student770,12144 -student(s361).student770,12144 -student(s362).student771,12159 -student(s362).student771,12159 -student(s363).student772,12174 -student(s363).student772,12174 -student(s364).student773,12189 -student(s364).student773,12189 -student(s365).student774,12204 -student(s365).student774,12204 -student(s366).student775,12219 -student(s366).student775,12219 -student(s367).student776,12234 -student(s367).student776,12234 -student(s368).student777,12249 -student(s368).student777,12249 -student(s369).student778,12264 -student(s369).student778,12264 -student(s370).student779,12279 -student(s370).student779,12279 -student(s371).student780,12294 -student(s371).student780,12294 -student(s372).student781,12309 -student(s372).student781,12309 -student(s373).student782,12324 -student(s373).student782,12324 -student(s374).student783,12339 -student(s374).student783,12339 -student(s375).student784,12354 -student(s375).student784,12354 -student(s376).student785,12369 -student(s376).student785,12369 -student(s377).student786,12384 -student(s377).student786,12384 -student(s378).student787,12399 -student(s378).student787,12399 -student(s379).student788,12414 -student(s379).student788,12414 -student(s380).student789,12429 -student(s380).student789,12429 -student(s381).student790,12444 -student(s381).student790,12444 -student(s382).student791,12459 -student(s382).student791,12459 -student(s383).student792,12474 -student(s383).student792,12474 -student(s384).student793,12489 -student(s384).student793,12489 -student(s385).student794,12504 -student(s385).student794,12504 -student(s386).student795,12519 -student(s386).student795,12519 -student(s387).student796,12534 -student(s387).student796,12534 -student(s388).student797,12549 -student(s388).student797,12549 -student(s389).student798,12564 -student(s389).student798,12564 -student(s390).student799,12579 -student(s390).student799,12579 -student(s391).student800,12594 -student(s391).student800,12594 -student(s392).student801,12609 -student(s392).student801,12609 -student(s393).student802,12624 -student(s393).student802,12624 -student(s394).student803,12639 -student(s394).student803,12639 -student(s395).student804,12654 -student(s395).student804,12654 -student(s396).student805,12669 -student(s396).student805,12669 -student(s397).student806,12684 -student(s397).student806,12684 -student(s398).student807,12699 -student(s398).student807,12699 -student(s399).student808,12714 -student(s399).student808,12714 -student(s400).student809,12729 -student(s400).student809,12729 -student(s401).student810,12744 -student(s401).student810,12744 -student(s402).student811,12759 -student(s402).student811,12759 -student(s403).student812,12774 -student(s403).student812,12774 -student(s404).student813,12789 -student(s404).student813,12789 -student(s405).student814,12804 -student(s405).student814,12804 -student(s406).student815,12819 -student(s406).student815,12819 -student(s407).student816,12834 -student(s407).student816,12834 -student(s408).student817,12849 -student(s408).student817,12849 -student(s409).student818,12864 -student(s409).student818,12864 -student(s410).student819,12879 -student(s410).student819,12879 -student(s411).student820,12894 -student(s411).student820,12894 -student(s412).student821,12909 -student(s412).student821,12909 -student(s413).student822,12924 -student(s413).student822,12924 -student(s414).student823,12939 -student(s414).student823,12939 -student(s415).student824,12954 -student(s415).student824,12954 -student(s416).student825,12969 -student(s416).student825,12969 -student(s417).student826,12984 -student(s417).student826,12984 -student(s418).student827,12999 -student(s418).student827,12999 -student(s419).student828,13014 -student(s419).student828,13014 -student(s420).student829,13029 -student(s420).student829,13029 -student(s421).student830,13044 -student(s421).student830,13044 -student(s422).student831,13059 -student(s422).student831,13059 -student(s423).student832,13074 -student(s423).student832,13074 -student(s424).student833,13089 -student(s424).student833,13089 -student(s425).student834,13104 -student(s425).student834,13104 -student(s426).student835,13119 -student(s426).student835,13119 -student(s427).student836,13134 -student(s427).student836,13134 -student(s428).student837,13149 -student(s428).student837,13149 -student(s429).student838,13164 -student(s429).student838,13164 -student(s430).student839,13179 -student(s430).student839,13179 -student(s431).student840,13194 -student(s431).student840,13194 -student(s432).student841,13209 -student(s432).student841,13209 -student(s433).student842,13224 -student(s433).student842,13224 -student(s434).student843,13239 -student(s434).student843,13239 -student(s435).student844,13254 -student(s435).student844,13254 -student(s436).student845,13269 -student(s436).student845,13269 -student(s437).student846,13284 -student(s437).student846,13284 -student(s438).student847,13299 -student(s438).student847,13299 -student(s439).student848,13314 -student(s439).student848,13314 -student(s440).student849,13329 -student(s440).student849,13329 -student(s441).student850,13344 -student(s441).student850,13344 -student(s442).student851,13359 -student(s442).student851,13359 -student(s443).student852,13374 -student(s443).student852,13374 -student(s444).student853,13389 -student(s444).student853,13389 -student(s445).student854,13404 -student(s445).student854,13404 -student(s446).student855,13419 -student(s446).student855,13419 -student(s447).student856,13434 -student(s447).student856,13434 -student(s448).student857,13449 -student(s448).student857,13449 -student(s449).student858,13464 -student(s449).student858,13464 -student(s450).student859,13479 -student(s450).student859,13479 -student(s451).student860,13494 -student(s451).student860,13494 -student(s452).student861,13509 -student(s452).student861,13509 -student(s453).student862,13524 -student(s453).student862,13524 -student(s454).student863,13539 -student(s454).student863,13539 -student(s455).student864,13554 -student(s455).student864,13554 -student(s456).student865,13569 -student(s456).student865,13569 -student(s457).student866,13584 -student(s457).student866,13584 -student(s458).student867,13599 -student(s458).student867,13599 -student(s459).student868,13614 -student(s459).student868,13614 -student(s460).student869,13629 -student(s460).student869,13629 -student(s461).student870,13644 -student(s461).student870,13644 -student(s462).student871,13659 -student(s462).student871,13659 -student(s463).student872,13674 -student(s463).student872,13674 -student(s464).student873,13689 -student(s464).student873,13689 -student(s465).student874,13704 -student(s465).student874,13704 -student(s466).student875,13719 -student(s466).student875,13719 -student(s467).student876,13734 -student(s467).student876,13734 -student(s468).student877,13749 -student(s468).student877,13749 -student(s469).student878,13764 -student(s469).student878,13764 -student(s470).student879,13779 -student(s470).student879,13779 -student(s471).student880,13794 -student(s471).student880,13794 -student(s472).student881,13809 -student(s472).student881,13809 -student(s473).student882,13824 -student(s473).student882,13824 -student(s474).student883,13839 -student(s474).student883,13839 -student(s475).student884,13854 -student(s475).student884,13854 -student(s476).student885,13869 -student(s476).student885,13869 -student(s477).student886,13884 -student(s477).student886,13884 -student(s478).student887,13899 -student(s478).student887,13899 -student(s479).student888,13914 -student(s479).student888,13914 -student(s480).student889,13929 -student(s480).student889,13929 -student(s481).student890,13944 -student(s481).student890,13944 -student(s482).student891,13959 -student(s482).student891,13959 -student(s483).student892,13974 -student(s483).student892,13974 -student(s484).student893,13989 -student(s484).student893,13989 -student(s485).student894,14004 -student(s485).student894,14004 -student(s486).student895,14019 -student(s486).student895,14019 -student(s487).student896,14034 -student(s487).student896,14034 -student(s488).student897,14049 -student(s488).student897,14049 -student(s489).student898,14064 -student(s489).student898,14064 -student(s490).student899,14079 -student(s490).student899,14079 -student(s491).student900,14094 -student(s491).student900,14094 -student(s492).student901,14109 -student(s492).student901,14109 -student(s493).student902,14124 -student(s493).student902,14124 -student(s494).student903,14139 -student(s494).student903,14139 -student(s495).student904,14154 -student(s495).student904,14154 -student(s496).student905,14169 -student(s496).student905,14169 -student(s497).student906,14184 -student(s497).student906,14184 -student(s498).student907,14199 -student(s498).student907,14199 -student(s499).student908,14214 -student(s499).student908,14214 -student(s500).student909,14229 -student(s500).student909,14229 -student(s501).student910,14244 -student(s501).student910,14244 -student(s502).student911,14259 -student(s502).student911,14259 -student(s503).student912,14274 -student(s503).student912,14274 -student(s504).student913,14289 -student(s504).student913,14289 -student(s505).student914,14304 -student(s505).student914,14304 -student(s506).student915,14319 -student(s506).student915,14319 -student(s507).student916,14334 -student(s507).student916,14334 -student(s508).student917,14349 -student(s508).student917,14349 -student(s509).student918,14364 -student(s509).student918,14364 -student(s510).student919,14379 -student(s510).student919,14379 -student(s511).student920,14394 -student(s511).student920,14394 -student(s512).student921,14409 -student(s512).student921,14409 -student(s513).student922,14424 -student(s513).student922,14424 -student(s514).student923,14439 -student(s514).student923,14439 -student(s515).student924,14454 -student(s515).student924,14454 -student(s516).student925,14469 -student(s516).student925,14469 -student(s517).student926,14484 -student(s517).student926,14484 -student(s518).student927,14499 -student(s518).student927,14499 -student(s519).student928,14514 -student(s519).student928,14514 -student(s520).student929,14529 -student(s520).student929,14529 -student(s521).student930,14544 -student(s521).student930,14544 -student(s522).student931,14559 -student(s522).student931,14559 -student(s523).student932,14574 -student(s523).student932,14574 -student(s524).student933,14589 -student(s524).student933,14589 -student(s525).student934,14604 -student(s525).student934,14604 -student(s526).student935,14619 -student(s526).student935,14619 -student(s527).student936,14634 -student(s527).student936,14634 -student(s528).student937,14649 -student(s528).student937,14649 -student(s529).student938,14664 -student(s529).student938,14664 -student(s530).student939,14679 -student(s530).student939,14679 -student(s531).student940,14694 -student(s531).student940,14694 -student(s532).student941,14709 -student(s532).student941,14709 -student(s533).student942,14724 -student(s533).student942,14724 -student(s534).student943,14739 -student(s534).student943,14739 -student(s535).student944,14754 -student(s535).student944,14754 -student(s536).student945,14769 -student(s536).student945,14769 -student(s537).student946,14784 -student(s537).student946,14784 -student(s538).student947,14799 -student(s538).student947,14799 -student(s539).student948,14814 -student(s539).student948,14814 -student(s540).student949,14829 -student(s540).student949,14829 -student(s541).student950,14844 -student(s541).student950,14844 -student(s542).student951,14859 -student(s542).student951,14859 -student(s543).student952,14874 -student(s543).student952,14874 -student(s544).student953,14889 -student(s544).student953,14889 -student(s545).student954,14904 -student(s545).student954,14904 -student(s546).student955,14919 -student(s546).student955,14919 -student(s547).student956,14934 -student(s547).student956,14934 -student(s548).student957,14949 -student(s548).student957,14949 -student(s549).student958,14964 -student(s549).student958,14964 -student(s550).student959,14979 -student(s550).student959,14979 -student(s551).student960,14994 -student(s551).student960,14994 -student(s552).student961,15009 -student(s552).student961,15009 -student(s553).student962,15024 -student(s553).student962,15024 -student(s554).student963,15039 -student(s554).student963,15039 -student(s555).student964,15054 -student(s555).student964,15054 -student(s556).student965,15069 -student(s556).student965,15069 -student(s557).student966,15084 -student(s557).student966,15084 -student(s558).student967,15099 -student(s558).student967,15099 -student(s559).student968,15114 -student(s559).student968,15114 -student(s560).student969,15129 -student(s560).student969,15129 -student(s561).student970,15144 -student(s561).student970,15144 -student(s562).student971,15159 -student(s562).student971,15159 -student(s563).student972,15174 -student(s563).student972,15174 -student(s564).student973,15189 -student(s564).student973,15189 -student(s565).student974,15204 -student(s565).student974,15204 -student(s566).student975,15219 -student(s566).student975,15219 -student(s567).student976,15234 -student(s567).student976,15234 -student(s568).student977,15249 -student(s568).student977,15249 -student(s569).student978,15264 -student(s569).student978,15264 -student(s570).student979,15279 -student(s570).student979,15279 -student(s571).student980,15294 -student(s571).student980,15294 -student(s572).student981,15309 -student(s572).student981,15309 -student(s573).student982,15324 -student(s573).student982,15324 -student(s574).student983,15339 -student(s574).student983,15339 -student(s575).student984,15354 -student(s575).student984,15354 -student(s576).student985,15369 -student(s576).student985,15369 -student(s577).student986,15384 -student(s577).student986,15384 -student(s578).student987,15399 -student(s578).student987,15399 -student(s579).student988,15414 -student(s579).student988,15414 -student(s580).student989,15429 -student(s580).student989,15429 -student(s581).student990,15444 -student(s581).student990,15444 -student(s582).student991,15459 -student(s582).student991,15459 -student(s583).student992,15474 -student(s583).student992,15474 -student(s584).student993,15489 -student(s584).student993,15489 -student(s585).student994,15504 -student(s585).student994,15504 -student(s586).student995,15519 -student(s586).student995,15519 -student(s587).student996,15534 -student(s587).student996,15534 -student(s588).student997,15549 -student(s588).student997,15549 -student(s589).student998,15564 -student(s589).student998,15564 -student(s590).student999,15579 -student(s590).student999,15579 -student(s591).student1000,15594 -student(s591).student1000,15594 -student(s592).student1001,15609 -student(s592).student1001,15609 -student(s593).student1002,15624 -student(s593).student1002,15624 -student(s594).student1003,15639 -student(s594).student1003,15639 -student(s595).student1004,15654 -student(s595).student1004,15654 -student(s596).student1005,15669 -student(s596).student1005,15669 -student(s597).student1006,15684 -student(s597).student1006,15684 -student(s598).student1007,15699 -student(s598).student1007,15699 -student(s599).student1008,15714 -student(s599).student1008,15714 -student(s600).student1009,15729 -student(s600).student1009,15729 -student(s601).student1010,15744 -student(s601).student1010,15744 -student(s602).student1011,15759 -student(s602).student1011,15759 -student(s603).student1012,15774 -student(s603).student1012,15774 -student(s604).student1013,15789 -student(s604).student1013,15789 -student(s605).student1014,15804 -student(s605).student1014,15804 -student(s606).student1015,15819 -student(s606).student1015,15819 -student(s607).student1016,15834 -student(s607).student1016,15834 -student(s608).student1017,15849 -student(s608).student1017,15849 -student(s609).student1018,15864 -student(s609).student1018,15864 -student(s610).student1019,15879 -student(s610).student1019,15879 -student(s611).student1020,15894 -student(s611).student1020,15894 -student(s612).student1021,15909 -student(s612).student1021,15909 -student(s613).student1022,15924 -student(s613).student1022,15924 -student(s614).student1023,15939 -student(s614).student1023,15939 -student(s615).student1024,15954 -student(s615).student1024,15954 -student(s616).student1025,15969 -student(s616).student1025,15969 -student(s617).student1026,15984 -student(s617).student1026,15984 -student(s618).student1027,15999 -student(s618).student1027,15999 -student(s619).student1028,16014 -student(s619).student1028,16014 -student(s620).student1029,16029 -student(s620).student1029,16029 -student(s621).student1030,16044 -student(s621).student1030,16044 -student(s622).student1031,16059 -student(s622).student1031,16059 -student(s623).student1032,16074 -student(s623).student1032,16074 -student(s624).student1033,16089 -student(s624).student1033,16089 -student(s625).student1034,16104 -student(s625).student1034,16104 -student(s626).student1035,16119 -student(s626).student1035,16119 -student(s627).student1036,16134 -student(s627).student1036,16134 -student(s628).student1037,16149 -student(s628).student1037,16149 -student(s629).student1038,16164 -student(s629).student1038,16164 -student(s630).student1039,16179 -student(s630).student1039,16179 -student(s631).student1040,16194 -student(s631).student1040,16194 -student(s632).student1041,16209 -student(s632).student1041,16209 -student(s633).student1042,16224 -student(s633).student1042,16224 -student(s634).student1043,16239 -student(s634).student1043,16239 -student(s635).student1044,16254 -student(s635).student1044,16254 -student(s636).student1045,16269 -student(s636).student1045,16269 -student(s637).student1046,16284 -student(s637).student1046,16284 -student(s638).student1047,16299 -student(s638).student1047,16299 -student(s639).student1048,16314 -student(s639).student1048,16314 -student(s640).student1049,16329 -student(s640).student1049,16329 -student(s641).student1050,16344 -student(s641).student1050,16344 -student(s642).student1051,16359 -student(s642).student1051,16359 -student(s643).student1052,16374 -student(s643).student1052,16374 -student(s644).student1053,16389 -student(s644).student1053,16389 -student(s645).student1054,16404 -student(s645).student1054,16404 -student(s646).student1055,16419 -student(s646).student1055,16419 -student(s647).student1056,16434 -student(s647).student1056,16434 -student(s648).student1057,16449 -student(s648).student1057,16449 -student(s649).student1058,16464 -student(s649).student1058,16464 -student(s650).student1059,16479 -student(s650).student1059,16479 -student(s651).student1060,16494 -student(s651).student1060,16494 -student(s652).student1061,16509 -student(s652).student1061,16509 -student(s653).student1062,16524 -student(s653).student1062,16524 -student(s654).student1063,16539 -student(s654).student1063,16539 -student(s655).student1064,16554 -student(s655).student1064,16554 -student(s656).student1065,16569 -student(s656).student1065,16569 -student(s657).student1066,16584 -student(s657).student1066,16584 -student(s658).student1067,16599 -student(s658).student1067,16599 -student(s659).student1068,16614 -student(s659).student1068,16614 -student(s660).student1069,16629 -student(s660).student1069,16629 -student(s661).student1070,16644 -student(s661).student1070,16644 -student(s662).student1071,16659 -student(s662).student1071,16659 -student(s663).student1072,16674 -student(s663).student1072,16674 -student(s664).student1073,16689 -student(s664).student1073,16689 -student(s665).student1074,16704 -student(s665).student1074,16704 -student(s666).student1075,16719 -student(s666).student1075,16719 -student(s667).student1076,16734 -student(s667).student1076,16734 -student(s668).student1077,16749 -student(s668).student1077,16749 -student(s669).student1078,16764 -student(s669).student1078,16764 -student(s670).student1079,16779 -student(s670).student1079,16779 -student(s671).student1080,16794 -student(s671).student1080,16794 -student(s672).student1081,16809 -student(s672).student1081,16809 -student(s673).student1082,16824 -student(s673).student1082,16824 -student(s674).student1083,16839 -student(s674).student1083,16839 -student(s675).student1084,16854 -student(s675).student1084,16854 -student(s676).student1085,16869 -student(s676).student1085,16869 -student(s677).student1086,16884 -student(s677).student1086,16884 -student(s678).student1087,16899 -student(s678).student1087,16899 -student(s679).student1088,16914 -student(s679).student1088,16914 -student(s680).student1089,16929 -student(s680).student1089,16929 -student(s681).student1090,16944 -student(s681).student1090,16944 -student(s682).student1091,16959 -student(s682).student1091,16959 -student(s683).student1092,16974 -student(s683).student1092,16974 -student(s684).student1093,16989 -student(s684).student1093,16989 -student(s685).student1094,17004 -student(s685).student1094,17004 -student(s686).student1095,17019 -student(s686).student1095,17019 -student(s687).student1096,17034 -student(s687).student1096,17034 -student(s688).student1097,17049 -student(s688).student1097,17049 -student(s689).student1098,17064 -student(s689).student1098,17064 -student(s690).student1099,17079 -student(s690).student1099,17079 -student(s691).student1100,17094 -student(s691).student1100,17094 -student(s692).student1101,17109 -student(s692).student1101,17109 -student(s693).student1102,17124 -student(s693).student1102,17124 -student(s694).student1103,17139 -student(s694).student1103,17139 -student(s695).student1104,17154 -student(s695).student1104,17154 -student(s696).student1105,17169 -student(s696).student1105,17169 -student(s697).student1106,17184 -student(s697).student1106,17184 -student(s698).student1107,17199 -student(s698).student1107,17199 -student(s699).student1108,17214 -student(s699).student1108,17214 -student(s700).student1109,17229 -student(s700).student1109,17229 -student(s701).student1110,17244 -student(s701).student1110,17244 -student(s702).student1111,17259 -student(s702).student1111,17259 -student(s703).student1112,17274 -student(s703).student1112,17274 -student(s704).student1113,17289 -student(s704).student1113,17289 -student(s705).student1114,17304 -student(s705).student1114,17304 -student(s706).student1115,17319 -student(s706).student1115,17319 -student(s707).student1116,17334 -student(s707).student1116,17334 -student(s708).student1117,17349 -student(s708).student1117,17349 -student(s709).student1118,17364 -student(s709).student1118,17364 -student(s710).student1119,17379 -student(s710).student1119,17379 -student(s711).student1120,17394 -student(s711).student1120,17394 -student(s712).student1121,17409 -student(s712).student1121,17409 -student(s713).student1122,17424 -student(s713).student1122,17424 -student(s714).student1123,17439 -student(s714).student1123,17439 -student(s715).student1124,17454 -student(s715).student1124,17454 -student(s716).student1125,17469 -student(s716).student1125,17469 -student(s717).student1126,17484 -student(s717).student1126,17484 -student(s718).student1127,17499 -student(s718).student1127,17499 -student(s719).student1128,17514 -student(s719).student1128,17514 -student(s720).student1129,17529 -student(s720).student1129,17529 -student(s721).student1130,17544 -student(s721).student1130,17544 -student(s722).student1131,17559 -student(s722).student1131,17559 -student(s723).student1132,17574 -student(s723).student1132,17574 -student(s724).student1133,17589 -student(s724).student1133,17589 -student(s725).student1134,17604 -student(s725).student1134,17604 -student(s726).student1135,17619 -student(s726).student1135,17619 -student(s727).student1136,17634 -student(s727).student1136,17634 -student(s728).student1137,17649 -student(s728).student1137,17649 -student(s729).student1138,17664 -student(s729).student1138,17664 -student(s730).student1139,17679 -student(s730).student1139,17679 -student(s731).student1140,17694 -student(s731).student1140,17694 -student(s732).student1141,17709 -student(s732).student1141,17709 -student(s733).student1142,17724 -student(s733).student1142,17724 -student(s734).student1143,17739 -student(s734).student1143,17739 -student(s735).student1144,17754 -student(s735).student1144,17754 -student(s736).student1145,17769 -student(s736).student1145,17769 -student(s737).student1146,17784 -student(s737).student1146,17784 -student(s738).student1147,17799 -student(s738).student1147,17799 -student(s739).student1148,17814 -student(s739).student1148,17814 -student(s740).student1149,17829 -student(s740).student1149,17829 -student(s741).student1150,17844 -student(s741).student1150,17844 -student(s742).student1151,17859 -student(s742).student1151,17859 -student(s743).student1152,17874 -student(s743).student1152,17874 -student(s744).student1153,17889 -student(s744).student1153,17889 -student(s745).student1154,17904 -student(s745).student1154,17904 -student(s746).student1155,17919 -student(s746).student1155,17919 -student(s747).student1156,17934 -student(s747).student1156,17934 -student(s748).student1157,17949 -student(s748).student1157,17949 -student(s749).student1158,17964 -student(s749).student1158,17964 -student(s750).student1159,17979 -student(s750).student1159,17979 -student(s751).student1160,17994 -student(s751).student1160,17994 -student(s752).student1161,18009 -student(s752).student1161,18009 -student(s753).student1162,18024 -student(s753).student1162,18024 -student(s754).student1163,18039 -student(s754).student1163,18039 -student(s755).student1164,18054 -student(s755).student1164,18054 -student(s756).student1165,18069 -student(s756).student1165,18069 -student(s757).student1166,18084 -student(s757).student1166,18084 -student(s758).student1167,18099 -student(s758).student1167,18099 -student(s759).student1168,18114 -student(s759).student1168,18114 -student(s760).student1169,18129 -student(s760).student1169,18129 -student(s761).student1170,18144 -student(s761).student1170,18144 -student(s762).student1171,18159 -student(s762).student1171,18159 -student(s763).student1172,18174 -student(s763).student1172,18174 -student(s764).student1173,18189 -student(s764).student1173,18189 -student(s765).student1174,18204 -student(s765).student1174,18204 -student(s766).student1175,18219 -student(s766).student1175,18219 -student(s767).student1176,18234 -student(s767).student1176,18234 -student(s768).student1177,18249 -student(s768).student1177,18249 -student(s769).student1178,18264 -student(s769).student1178,18264 -student(s770).student1179,18279 -student(s770).student1179,18279 -student(s771).student1180,18294 -student(s771).student1180,18294 -student(s772).student1181,18309 -student(s772).student1181,18309 -student(s773).student1182,18324 -student(s773).student1182,18324 -student(s774).student1183,18339 -student(s774).student1183,18339 -student(s775).student1184,18354 -student(s775).student1184,18354 -student(s776).student1185,18369 -student(s776).student1185,18369 -student(s777).student1186,18384 -student(s777).student1186,18384 -student(s778).student1187,18399 -student(s778).student1187,18399 -student(s779).student1188,18414 -student(s779).student1188,18414 -student(s780).student1189,18429 -student(s780).student1189,18429 -student(s781).student1190,18444 -student(s781).student1190,18444 -student(s782).student1191,18459 -student(s782).student1191,18459 -student(s783).student1192,18474 -student(s783).student1192,18474 -student(s784).student1193,18489 -student(s784).student1193,18489 -student(s785).student1194,18504 -student(s785).student1194,18504 -student(s786).student1195,18519 -student(s786).student1195,18519 -student(s787).student1196,18534 -student(s787).student1196,18534 -student(s788).student1197,18549 -student(s788).student1197,18549 -student(s789).student1198,18564 -student(s789).student1198,18564 -student(s790).student1199,18579 -student(s790).student1199,18579 -student(s791).student1200,18594 -student(s791).student1200,18594 -student(s792).student1201,18609 -student(s792).student1201,18609 -student(s793).student1202,18624 -student(s793).student1202,18624 -student(s794).student1203,18639 -student(s794).student1203,18639 -student(s795).student1204,18654 -student(s795).student1204,18654 -student(s796).student1205,18669 -student(s796).student1205,18669 -student(s797).student1206,18684 -student(s797).student1206,18684 -student(s798).student1207,18699 -student(s798).student1207,18699 -student(s799).student1208,18714 -student(s799).student1208,18714 -student(s800).student1209,18729 -student(s800).student1209,18729 -student(s801).student1210,18744 -student(s801).student1210,18744 -student(s802).student1211,18759 -student(s802).student1211,18759 -student(s803).student1212,18774 -student(s803).student1212,18774 -student(s804).student1213,18789 -student(s804).student1213,18789 -student(s805).student1214,18804 -student(s805).student1214,18804 -student(s806).student1215,18819 -student(s806).student1215,18819 -student(s807).student1216,18834 -student(s807).student1216,18834 -student(s808).student1217,18849 -student(s808).student1217,18849 -student(s809).student1218,18864 -student(s809).student1218,18864 -student(s810).student1219,18879 -student(s810).student1219,18879 -student(s811).student1220,18894 -student(s811).student1220,18894 -student(s812).student1221,18909 -student(s812).student1221,18909 -student(s813).student1222,18924 -student(s813).student1222,18924 -student(s814).student1223,18939 -student(s814).student1223,18939 -student(s815).student1224,18954 -student(s815).student1224,18954 -student(s816).student1225,18969 -student(s816).student1225,18969 -student(s817).student1226,18984 -student(s817).student1226,18984 -student(s818).student1227,18999 -student(s818).student1227,18999 -student(s819).student1228,19014 -student(s819).student1228,19014 -student(s820).student1229,19029 -student(s820).student1229,19029 -student(s821).student1230,19044 -student(s821).student1230,19044 -student(s822).student1231,19059 -student(s822).student1231,19059 -student(s823).student1232,19074 -student(s823).student1232,19074 -student(s824).student1233,19089 -student(s824).student1233,19089 -student(s825).student1234,19104 -student(s825).student1234,19104 -student(s826).student1235,19119 -student(s826).student1235,19119 -student(s827).student1236,19134 -student(s827).student1236,19134 -student(s828).student1237,19149 -student(s828).student1237,19149 -student(s829).student1238,19164 -student(s829).student1238,19164 -student(s830).student1239,19179 -student(s830).student1239,19179 -student(s831).student1240,19194 -student(s831).student1240,19194 -student(s832).student1241,19209 -student(s832).student1241,19209 -student(s833).student1242,19224 -student(s833).student1242,19224 -student(s834).student1243,19239 -student(s834).student1243,19239 -student(s835).student1244,19254 -student(s835).student1244,19254 -student(s836).student1245,19269 -student(s836).student1245,19269 -student(s837).student1246,19284 -student(s837).student1246,19284 -student(s838).student1247,19299 -student(s838).student1247,19299 -student(s839).student1248,19314 -student(s839).student1248,19314 -student(s840).student1249,19329 -student(s840).student1249,19329 -student(s841).student1250,19344 -student(s841).student1250,19344 -student(s842).student1251,19359 -student(s842).student1251,19359 -student(s843).student1252,19374 -student(s843).student1252,19374 -student(s844).student1253,19389 -student(s844).student1253,19389 -student(s845).student1254,19404 -student(s845).student1254,19404 -student(s846).student1255,19419 -student(s846).student1255,19419 -student(s847).student1256,19434 -student(s847).student1256,19434 -student(s848).student1257,19449 -student(s848).student1257,19449 -student(s849).student1258,19464 -student(s849).student1258,19464 -student(s850).student1259,19479 -student(s850).student1259,19479 -student(s851).student1260,19494 -student(s851).student1260,19494 -student(s852).student1261,19509 -student(s852).student1261,19509 -student(s853).student1262,19524 -student(s853).student1262,19524 -student(s854).student1263,19539 -student(s854).student1263,19539 -student(s855).student1264,19554 -student(s855).student1264,19554 -student(s856).student1265,19569 -student(s856).student1265,19569 -student(s857).student1266,19584 -student(s857).student1266,19584 -student(s858).student1267,19599 -student(s858).student1267,19599 -student(s859).student1268,19614 -student(s859).student1268,19614 -student(s860).student1269,19629 -student(s860).student1269,19629 -student(s861).student1270,19644 -student(s861).student1270,19644 -student(s862).student1271,19659 -student(s862).student1271,19659 -student(s863).student1272,19674 -student(s863).student1272,19674 -student(s864).student1273,19689 -student(s864).student1273,19689 -student(s865).student1274,19704 -student(s865).student1274,19704 -student(s866).student1275,19719 -student(s866).student1275,19719 -student(s867).student1276,19734 -student(s867).student1276,19734 -student(s868).student1277,19749 -student(s868).student1277,19749 -student(s869).student1278,19764 -student(s869).student1278,19764 -student(s870).student1279,19779 -student(s870).student1279,19779 -student(s871).student1280,19794 -student(s871).student1280,19794 -student(s872).student1281,19809 -student(s872).student1281,19809 -student(s873).student1282,19824 -student(s873).student1282,19824 -student(s874).student1283,19839 -student(s874).student1283,19839 -student(s875).student1284,19854 -student(s875).student1284,19854 -student(s876).student1285,19869 -student(s876).student1285,19869 -student(s877).student1286,19884 -student(s877).student1286,19884 -student(s878).student1287,19899 -student(s878).student1287,19899 -student(s879).student1288,19914 -student(s879).student1288,19914 -student(s880).student1289,19929 -student(s880).student1289,19929 -student(s881).student1290,19944 -student(s881).student1290,19944 -student(s882).student1291,19959 -student(s882).student1291,19959 -student(s883).student1292,19974 -student(s883).student1292,19974 -student(s884).student1293,19989 -student(s884).student1293,19989 -student(s885).student1294,20004 -student(s885).student1294,20004 -student(s886).student1295,20019 -student(s886).student1295,20019 -student(s887).student1296,20034 -student(s887).student1296,20034 -student(s888).student1297,20049 -student(s888).student1297,20049 -student(s889).student1298,20064 -student(s889).student1298,20064 -student(s890).student1299,20079 -student(s890).student1299,20079 -student(s891).student1300,20094 -student(s891).student1300,20094 -student(s892).student1301,20109 -student(s892).student1301,20109 -student(s893).student1302,20124 -student(s893).student1302,20124 -student(s894).student1303,20139 -student(s894).student1303,20139 -student(s895).student1304,20154 -student(s895).student1304,20154 -student(s896).student1305,20169 -student(s896).student1305,20169 -student(s897).student1306,20184 -student(s897).student1306,20184 -student(s898).student1307,20199 -student(s898).student1307,20199 -student(s899).student1308,20214 -student(s899).student1308,20214 -student(s900).student1309,20229 -student(s900).student1309,20229 -student(s901).student1310,20244 -student(s901).student1310,20244 -student(s902).student1311,20259 -student(s902).student1311,20259 -student(s903).student1312,20274 -student(s903).student1312,20274 -student(s904).student1313,20289 -student(s904).student1313,20289 -student(s905).student1314,20304 -student(s905).student1314,20304 -student(s906).student1315,20319 -student(s906).student1315,20319 -student(s907).student1316,20334 -student(s907).student1316,20334 -student(s908).student1317,20349 -student(s908).student1317,20349 -student(s909).student1318,20364 -student(s909).student1318,20364 -student(s910).student1319,20379 -student(s910).student1319,20379 -student(s911).student1320,20394 -student(s911).student1320,20394 -student(s912).student1321,20409 -student(s912).student1321,20409 -student(s913).student1322,20424 -student(s913).student1322,20424 -student(s914).student1323,20439 -student(s914).student1323,20439 -student(s915).student1324,20454 -student(s915).student1324,20454 -student(s916).student1325,20469 -student(s916).student1325,20469 -student(s917).student1326,20484 -student(s917).student1326,20484 -student(s918).student1327,20499 -student(s918).student1327,20499 -student(s919).student1328,20514 -student(s919).student1328,20514 -student(s920).student1329,20529 -student(s920).student1329,20529 -student(s921).student1330,20544 -student(s921).student1330,20544 -student(s922).student1331,20559 -student(s922).student1331,20559 -student(s923).student1332,20574 -student(s923).student1332,20574 -student(s924).student1333,20589 -student(s924).student1333,20589 -student(s925).student1334,20604 -student(s925).student1334,20604 -student(s926).student1335,20619 -student(s926).student1335,20619 -student(s927).student1336,20634 -student(s927).student1336,20634 -student(s928).student1337,20649 -student(s928).student1337,20649 -student(s929).student1338,20664 -student(s929).student1338,20664 -student(s930).student1339,20679 -student(s930).student1339,20679 -student(s931).student1340,20694 -student(s931).student1340,20694 -student(s932).student1341,20709 -student(s932).student1341,20709 -student(s933).student1342,20724 -student(s933).student1342,20724 -student(s934).student1343,20739 -student(s934).student1343,20739 -student(s935).student1344,20754 -student(s935).student1344,20754 -student(s936).student1345,20769 -student(s936).student1345,20769 -student(s937).student1346,20784 -student(s937).student1346,20784 -student(s938).student1347,20799 -student(s938).student1347,20799 -student(s939).student1348,20814 -student(s939).student1348,20814 -student(s940).student1349,20829 -student(s940).student1349,20829 -student(s941).student1350,20844 -student(s941).student1350,20844 -student(s942).student1351,20859 -student(s942).student1351,20859 -student(s943).student1352,20874 -student(s943).student1352,20874 -student(s944).student1353,20889 -student(s944).student1353,20889 -student(s945).student1354,20904 -student(s945).student1354,20904 -student(s946).student1355,20919 -student(s946).student1355,20919 -student(s947).student1356,20934 -student(s947).student1356,20934 -student(s948).student1357,20949 -student(s948).student1357,20949 -student(s949).student1358,20964 -student(s949).student1358,20964 -student(s950).student1359,20979 -student(s950).student1359,20979 -student(s951).student1360,20994 -student(s951).student1360,20994 -student(s952).student1361,21009 -student(s952).student1361,21009 -student(s953).student1362,21024 -student(s953).student1362,21024 -student(s954).student1363,21039 -student(s954).student1363,21039 -student(s955).student1364,21054 -student(s955).student1364,21054 -student(s956).student1365,21069 -student(s956).student1365,21069 -student(s957).student1366,21084 -student(s957).student1366,21084 -student(s958).student1367,21099 -student(s958).student1367,21099 -student(s959).student1368,21114 -student(s959).student1368,21114 -student(s960).student1369,21129 -student(s960).student1369,21129 -student(s961).student1370,21144 -student(s961).student1370,21144 -student(s962).student1371,21159 -student(s962).student1371,21159 -student(s963).student1372,21174 -student(s963).student1372,21174 -student(s964).student1373,21189 -student(s964).student1373,21189 -student(s965).student1374,21204 -student(s965).student1374,21204 -student(s966).student1375,21219 -student(s966).student1375,21219 -student(s967).student1376,21234 -student(s967).student1376,21234 -student(s968).student1377,21249 -student(s968).student1377,21249 -student(s969).student1378,21264 -student(s969).student1378,21264 -student(s970).student1379,21279 -student(s970).student1379,21279 -student(s971).student1380,21294 -student(s971).student1380,21294 -student(s972).student1381,21309 -student(s972).student1381,21309 -student(s973).student1382,21324 -student(s973).student1382,21324 -student(s974).student1383,21339 -student(s974).student1383,21339 -student(s975).student1384,21354 -student(s975).student1384,21354 -student(s976).student1385,21369 -student(s976).student1385,21369 -student(s977).student1386,21384 -student(s977).student1386,21384 -student(s978).student1387,21399 -student(s978).student1387,21399 -student(s979).student1388,21414 -student(s979).student1388,21414 -student(s980).student1389,21429 -student(s980).student1389,21429 -student(s981).student1390,21444 -student(s981).student1390,21444 -student(s982).student1391,21459 -student(s982).student1391,21459 -student(s983).student1392,21474 -student(s983).student1392,21474 -student(s984).student1393,21489 -student(s984).student1393,21489 -student(s985).student1394,21504 -student(s985).student1394,21504 -student(s986).student1395,21519 -student(s986).student1395,21519 -student(s987).student1396,21534 -student(s987).student1396,21534 -student(s988).student1397,21549 -student(s988).student1397,21549 -student(s989).student1398,21564 -student(s989).student1398,21564 -student(s990).student1399,21579 -student(s990).student1399,21579 -student(s991).student1400,21594 -student(s991).student1400,21594 -student(s992).student1401,21609 -student(s992).student1401,21609 -student(s993).student1402,21624 -student(s993).student1402,21624 -student(s994).student1403,21639 -student(s994).student1403,21639 -student(s995).student1404,21654 -student(s995).student1404,21654 -student(s996).student1405,21669 -student(s996).student1405,21669 -student(s997).student1406,21684 -student(s997).student1406,21684 -student(s998).student1407,21699 -student(s998).student1407,21699 -student(s999).student1408,21714 -student(s999).student1408,21714 -student(s1000).student1409,21729 -student(s1000).student1409,21729 -student(s1001).student1410,21745 -student(s1001).student1410,21745 -student(s1002).student1411,21761 -student(s1002).student1411,21761 -student(s1003).student1412,21777 -student(s1003).student1412,21777 -student(s1004).student1413,21793 -student(s1004).student1413,21793 -student(s1005).student1414,21809 -student(s1005).student1414,21809 -student(s1006).student1415,21825 -student(s1006).student1415,21825 -student(s1007).student1416,21841 -student(s1007).student1416,21841 -student(s1008).student1417,21857 -student(s1008).student1417,21857 -student(s1009).student1418,21873 -student(s1009).student1418,21873 -student(s1010).student1419,21889 -student(s1010).student1419,21889 -student(s1011).student1420,21905 -student(s1011).student1420,21905 -student(s1012).student1421,21921 -student(s1012).student1421,21921 -student(s1013).student1422,21937 -student(s1013).student1422,21937 -student(s1014).student1423,21953 -student(s1014).student1423,21953 -student(s1015).student1424,21969 -student(s1015).student1424,21969 -student(s1016).student1425,21985 -student(s1016).student1425,21985 -student(s1017).student1426,22001 -student(s1017).student1426,22001 -student(s1018).student1427,22017 -student(s1018).student1427,22017 -student(s1019).student1428,22033 -student(s1019).student1428,22033 -student(s1020).student1429,22049 -student(s1020).student1429,22049 -student(s1021).student1430,22065 -student(s1021).student1430,22065 -student(s1022).student1431,22081 -student(s1022).student1431,22081 -student(s1023).student1432,22097 -student(s1023).student1432,22097 -student(s1024).student1433,22113 -student(s1024).student1433,22113 -student(s1025).student1434,22129 -student(s1025).student1434,22129 -student(s1026).student1435,22145 -student(s1026).student1435,22145 -student(s1027).student1436,22161 -student(s1027).student1436,22161 -student(s1028).student1437,22177 -student(s1028).student1437,22177 -student(s1029).student1438,22193 -student(s1029).student1438,22193 -student(s1030).student1439,22209 -student(s1030).student1439,22209 -student(s1031).student1440,22225 -student(s1031).student1440,22225 -student(s1032).student1441,22241 -student(s1032).student1441,22241 -student(s1033).student1442,22257 -student(s1033).student1442,22257 -student(s1034).student1443,22273 -student(s1034).student1443,22273 -student(s1035).student1444,22289 -student(s1035).student1444,22289 -student(s1036).student1445,22305 -student(s1036).student1445,22305 -student(s1037).student1446,22321 -student(s1037).student1446,22321 -student(s1038).student1447,22337 -student(s1038).student1447,22337 -student(s1039).student1448,22353 -student(s1039).student1448,22353 -student(s1040).student1449,22369 -student(s1040).student1449,22369 -student(s1041).student1450,22385 -student(s1041).student1450,22385 -student(s1042).student1451,22401 -student(s1042).student1451,22401 -student(s1043).student1452,22417 -student(s1043).student1452,22417 -student(s1044).student1453,22433 -student(s1044).student1453,22433 -student(s1045).student1454,22449 -student(s1045).student1454,22449 -student(s1046).student1455,22465 -student(s1046).student1455,22465 -student(s1047).student1456,22481 -student(s1047).student1456,22481 -student(s1048).student1457,22497 -student(s1048).student1457,22497 -student(s1049).student1458,22513 -student(s1049).student1458,22513 -student(s1050).student1459,22529 -student(s1050).student1459,22529 -student(s1051).student1460,22545 -student(s1051).student1460,22545 -student(s1052).student1461,22561 -student(s1052).student1461,22561 -student(s1053).student1462,22577 -student(s1053).student1462,22577 -student(s1054).student1463,22593 -student(s1054).student1463,22593 -student(s1055).student1464,22609 -student(s1055).student1464,22609 -student(s1056).student1465,22625 -student(s1056).student1465,22625 -student(s1057).student1466,22641 -student(s1057).student1466,22641 -student(s1058).student1467,22657 -student(s1058).student1467,22657 -student(s1059).student1468,22673 -student(s1059).student1468,22673 -student(s1060).student1469,22689 -student(s1060).student1469,22689 -student(s1061).student1470,22705 -student(s1061).student1470,22705 -student(s1062).student1471,22721 -student(s1062).student1471,22721 -student(s1063).student1472,22737 -student(s1063).student1472,22737 -student(s1064).student1473,22753 -student(s1064).student1473,22753 -student(s1065).student1474,22769 -student(s1065).student1474,22769 -student(s1066).student1475,22785 -student(s1066).student1475,22785 -student(s1067).student1476,22801 -student(s1067).student1476,22801 -student(s1068).student1477,22817 -student(s1068).student1477,22817 -student(s1069).student1478,22833 -student(s1069).student1478,22833 -student(s1070).student1479,22849 -student(s1070).student1479,22849 -student(s1071).student1480,22865 -student(s1071).student1480,22865 -student(s1072).student1481,22881 -student(s1072).student1481,22881 -student(s1073).student1482,22897 -student(s1073).student1482,22897 -student(s1074).student1483,22913 -student(s1074).student1483,22913 -student(s1075).student1484,22929 -student(s1075).student1484,22929 -student(s1076).student1485,22945 -student(s1076).student1485,22945 -student(s1077).student1486,22961 -student(s1077).student1486,22961 -student(s1078).student1487,22977 -student(s1078).student1487,22977 -student(s1079).student1488,22993 -student(s1079).student1488,22993 -student(s1080).student1489,23009 -student(s1080).student1489,23009 -student(s1081).student1490,23025 -student(s1081).student1490,23025 -student(s1082).student1491,23041 -student(s1082).student1491,23041 -student(s1083).student1492,23057 -student(s1083).student1492,23057 -student(s1084).student1493,23073 -student(s1084).student1493,23073 -student(s1085).student1494,23089 -student(s1085).student1494,23089 -student(s1086).student1495,23105 -student(s1086).student1495,23105 -student(s1087).student1496,23121 -student(s1087).student1496,23121 -student(s1088).student1497,23137 -student(s1088).student1497,23137 -student(s1089).student1498,23153 -student(s1089).student1498,23153 -student(s1090).student1499,23169 -student(s1090).student1499,23169 -student(s1091).student1500,23185 -student(s1091).student1500,23185 -student(s1092).student1501,23201 -student(s1092).student1501,23201 -student(s1093).student1502,23217 -student(s1093).student1502,23217 -student(s1094).student1503,23233 -student(s1094).student1503,23233 -student(s1095).student1504,23249 -student(s1095).student1504,23249 -student(s1096).student1505,23265 -student(s1096).student1505,23265 -student(s1097).student1506,23281 -student(s1097).student1506,23281 -student(s1098).student1507,23297 -student(s1098).student1507,23297 -student(s1099).student1508,23313 -student(s1099).student1508,23313 -student(s1100).student1509,23329 -student(s1100).student1509,23329 -student(s1101).student1510,23345 -student(s1101).student1510,23345 -student(s1102).student1511,23361 -student(s1102).student1511,23361 -student(s1103).student1512,23377 -student(s1103).student1512,23377 -student(s1104).student1513,23393 -student(s1104).student1513,23393 -student(s1105).student1514,23409 -student(s1105).student1514,23409 -student(s1106).student1515,23425 -student(s1106).student1515,23425 -student(s1107).student1516,23441 -student(s1107).student1516,23441 -student(s1108).student1517,23457 -student(s1108).student1517,23457 -student(s1109).student1518,23473 -student(s1109).student1518,23473 -student(s1110).student1519,23489 -student(s1110).student1519,23489 -student(s1111).student1520,23505 -student(s1111).student1520,23505 -student(s1112).student1521,23521 -student(s1112).student1521,23521 -student(s1113).student1522,23537 -student(s1113).student1522,23537 -student(s1114).student1523,23553 -student(s1114).student1523,23553 -student(s1115).student1524,23569 -student(s1115).student1524,23569 -student(s1116).student1525,23585 -student(s1116).student1525,23585 -student(s1117).student1526,23601 -student(s1117).student1526,23601 -student(s1118).student1527,23617 -student(s1118).student1527,23617 -student(s1119).student1528,23633 -student(s1119).student1528,23633 -student(s1120).student1529,23649 -student(s1120).student1529,23649 -student(s1121).student1530,23665 -student(s1121).student1530,23665 -student(s1122).student1531,23681 -student(s1122).student1531,23681 -student(s1123).student1532,23697 -student(s1123).student1532,23697 -student(s1124).student1533,23713 -student(s1124).student1533,23713 -student(s1125).student1534,23729 -student(s1125).student1534,23729 -student(s1126).student1535,23745 -student(s1126).student1535,23745 -student(s1127).student1536,23761 -student(s1127).student1536,23761 -student(s1128).student1537,23777 -student(s1128).student1537,23777 -student(s1129).student1538,23793 -student(s1129).student1538,23793 -student(s1130).student1539,23809 -student(s1130).student1539,23809 -student(s1131).student1540,23825 -student(s1131).student1540,23825 -student(s1132).student1541,23841 -student(s1132).student1541,23841 -student(s1133).student1542,23857 -student(s1133).student1542,23857 -student(s1134).student1543,23873 -student(s1134).student1543,23873 -student(s1135).student1544,23889 -student(s1135).student1544,23889 -student(s1136).student1545,23905 -student(s1136).student1545,23905 -student(s1137).student1546,23921 -student(s1137).student1546,23921 -student(s1138).student1547,23937 -student(s1138).student1547,23937 -student(s1139).student1548,23953 -student(s1139).student1548,23953 -student(s1140).student1549,23969 -student(s1140).student1549,23969 -student(s1141).student1550,23985 -student(s1141).student1550,23985 -student(s1142).student1551,24001 -student(s1142).student1551,24001 -student(s1143).student1552,24017 -student(s1143).student1552,24017 -student(s1144).student1553,24033 -student(s1144).student1553,24033 -student(s1145).student1554,24049 -student(s1145).student1554,24049 -student(s1146).student1555,24065 -student(s1146).student1555,24065 -student(s1147).student1556,24081 -student(s1147).student1556,24081 -student(s1148).student1557,24097 -student(s1148).student1557,24097 -student(s1149).student1558,24113 -student(s1149).student1558,24113 -student(s1150).student1559,24129 -student(s1150).student1559,24129 -student(s1151).student1560,24145 -student(s1151).student1560,24145 -student(s1152).student1561,24161 -student(s1152).student1561,24161 -student(s1153).student1562,24177 -student(s1153).student1562,24177 -student(s1154).student1563,24193 -student(s1154).student1563,24193 -student(s1155).student1564,24209 -student(s1155).student1564,24209 -student(s1156).student1565,24225 -student(s1156).student1565,24225 -student(s1157).student1566,24241 -student(s1157).student1566,24241 -student(s1158).student1567,24257 -student(s1158).student1567,24257 -student(s1159).student1568,24273 -student(s1159).student1568,24273 -student(s1160).student1569,24289 -student(s1160).student1569,24289 -student(s1161).student1570,24305 -student(s1161).student1570,24305 -student(s1162).student1571,24321 -student(s1162).student1571,24321 -student(s1163).student1572,24337 -student(s1163).student1572,24337 -student(s1164).student1573,24353 -student(s1164).student1573,24353 -student(s1165).student1574,24369 -student(s1165).student1574,24369 -student(s1166).student1575,24385 -student(s1166).student1575,24385 -student(s1167).student1576,24401 -student(s1167).student1576,24401 -student(s1168).student1577,24417 -student(s1168).student1577,24417 -student(s1169).student1578,24433 -student(s1169).student1578,24433 -student(s1170).student1579,24449 -student(s1170).student1579,24449 -student(s1171).student1580,24465 -student(s1171).student1580,24465 -student(s1172).student1581,24481 -student(s1172).student1581,24481 -student(s1173).student1582,24497 -student(s1173).student1582,24497 -student(s1174).student1583,24513 -student(s1174).student1583,24513 -student(s1175).student1584,24529 -student(s1175).student1584,24529 -student(s1176).student1585,24545 -student(s1176).student1585,24545 -student(s1177).student1586,24561 -student(s1177).student1586,24561 -student(s1178).student1587,24577 -student(s1178).student1587,24577 -student(s1179).student1588,24593 -student(s1179).student1588,24593 -student(s1180).student1589,24609 -student(s1180).student1589,24609 -student(s1181).student1590,24625 -student(s1181).student1590,24625 -student(s1182).student1591,24641 -student(s1182).student1591,24641 -student(s1183).student1592,24657 -student(s1183).student1592,24657 -student(s1184).student1593,24673 -student(s1184).student1593,24673 -student(s1185).student1594,24689 -student(s1185).student1594,24689 -student(s1186).student1595,24705 -student(s1186).student1595,24705 -student(s1187).student1596,24721 -student(s1187).student1596,24721 -student(s1188).student1597,24737 -student(s1188).student1597,24737 -student(s1189).student1598,24753 -student(s1189).student1598,24753 -student(s1190).student1599,24769 -student(s1190).student1599,24769 -student(s1191).student1600,24785 -student(s1191).student1600,24785 -student(s1192).student1601,24801 -student(s1192).student1601,24801 -student(s1193).student1602,24817 -student(s1193).student1602,24817 -student(s1194).student1603,24833 -student(s1194).student1603,24833 -student(s1195).student1604,24849 -student(s1195).student1604,24849 -student(s1196).student1605,24865 -student(s1196).student1605,24865 -student(s1197).student1606,24881 -student(s1197).student1606,24881 -student(s1198).student1607,24897 -student(s1198).student1607,24897 -student(s1199).student1608,24913 -student(s1199).student1608,24913 -student(s1200).student1609,24929 -student(s1200).student1609,24929 -student(s1201).student1610,24945 -student(s1201).student1610,24945 -student(s1202).student1611,24961 -student(s1202).student1611,24961 -student(s1203).student1612,24977 -student(s1203).student1612,24977 -student(s1204).student1613,24993 -student(s1204).student1613,24993 -student(s1205).student1614,25009 -student(s1205).student1614,25009 -student(s1206).student1615,25025 -student(s1206).student1615,25025 -student(s1207).student1616,25041 -student(s1207).student1616,25041 -student(s1208).student1617,25057 -student(s1208).student1617,25057 -student(s1209).student1618,25073 -student(s1209).student1618,25073 -student(s1210).student1619,25089 -student(s1210).student1619,25089 -student(s1211).student1620,25105 -student(s1211).student1620,25105 -student(s1212).student1621,25121 -student(s1212).student1621,25121 -student(s1213).student1622,25137 -student(s1213).student1622,25137 -student(s1214).student1623,25153 -student(s1214).student1623,25153 -student(s1215).student1624,25169 -student(s1215).student1624,25169 -student(s1216).student1625,25185 -student(s1216).student1625,25185 -student(s1217).student1626,25201 -student(s1217).student1626,25201 -student(s1218).student1627,25217 -student(s1218).student1627,25217 -student(s1219).student1628,25233 -student(s1219).student1628,25233 -student(s1220).student1629,25249 -student(s1220).student1629,25249 -student(s1221).student1630,25265 -student(s1221).student1630,25265 -student(s1222).student1631,25281 -student(s1222).student1631,25281 -student(s1223).student1632,25297 -student(s1223).student1632,25297 -student(s1224).student1633,25313 -student(s1224).student1633,25313 -student(s1225).student1634,25329 -student(s1225).student1634,25329 -student(s1226).student1635,25345 -student(s1226).student1635,25345 -student(s1227).student1636,25361 -student(s1227).student1636,25361 -student(s1228).student1637,25377 -student(s1228).student1637,25377 -student(s1229).student1638,25393 -student(s1229).student1638,25393 -student(s1230).student1639,25409 -student(s1230).student1639,25409 -student(s1231).student1640,25425 -student(s1231).student1640,25425 -student(s1232).student1641,25441 -student(s1232).student1641,25441 -student(s1233).student1642,25457 -student(s1233).student1642,25457 -student(s1234).student1643,25473 -student(s1234).student1643,25473 -student(s1235).student1644,25489 -student(s1235).student1644,25489 -student(s1236).student1645,25505 -student(s1236).student1645,25505 -student(s1237).student1646,25521 -student(s1237).student1646,25521 -student(s1238).student1647,25537 -student(s1238).student1647,25537 -student(s1239).student1648,25553 -student(s1239).student1648,25553 -student(s1240).student1649,25569 -student(s1240).student1649,25569 -student(s1241).student1650,25585 -student(s1241).student1650,25585 -student(s1242).student1651,25601 -student(s1242).student1651,25601 -student(s1243).student1652,25617 -student(s1243).student1652,25617 -student(s1244).student1653,25633 -student(s1244).student1653,25633 -student(s1245).student1654,25649 -student(s1245).student1654,25649 -student(s1246).student1655,25665 -student(s1246).student1655,25665 -student(s1247).student1656,25681 -student(s1247).student1656,25681 -student(s1248).student1657,25697 -student(s1248).student1657,25697 -student(s1249).student1658,25713 -student(s1249).student1658,25713 -student(s1250).student1659,25729 -student(s1250).student1659,25729 -student(s1251).student1660,25745 -student(s1251).student1660,25745 -student(s1252).student1661,25761 -student(s1252).student1661,25761 -student(s1253).student1662,25777 -student(s1253).student1662,25777 -student(s1254).student1663,25793 -student(s1254).student1663,25793 -student(s1255).student1664,25809 -student(s1255).student1664,25809 -student(s1256).student1665,25825 -student(s1256).student1665,25825 -student(s1257).student1666,25841 -student(s1257).student1666,25841 -student(s1258).student1667,25857 -student(s1258).student1667,25857 -student(s1259).student1668,25873 -student(s1259).student1668,25873 -student(s1260).student1669,25889 -student(s1260).student1669,25889 -student(s1261).student1670,25905 -student(s1261).student1670,25905 -student(s1262).student1671,25921 -student(s1262).student1671,25921 -student(s1263).student1672,25937 -student(s1263).student1672,25937 -student(s1264).student1673,25953 -student(s1264).student1673,25953 -student(s1265).student1674,25969 -student(s1265).student1674,25969 -student(s1266).student1675,25985 -student(s1266).student1675,25985 -student(s1267).student1676,26001 -student(s1267).student1676,26001 -student(s1268).student1677,26017 -student(s1268).student1677,26017 -student(s1269).student1678,26033 -student(s1269).student1678,26033 -student(s1270).student1679,26049 -student(s1270).student1679,26049 -student(s1271).student1680,26065 -student(s1271).student1680,26065 -student(s1272).student1681,26081 -student(s1272).student1681,26081 -student(s1273).student1682,26097 -student(s1273).student1682,26097 -student(s1274).student1683,26113 -student(s1274).student1683,26113 -student(s1275).student1684,26129 -student(s1275).student1684,26129 -student(s1276).student1685,26145 -student(s1276).student1685,26145 -student(s1277).student1686,26161 -student(s1277).student1686,26161 -student(s1278).student1687,26177 -student(s1278).student1687,26177 -student(s1279).student1688,26193 -student(s1279).student1688,26193 -student(s1280).student1689,26209 -student(s1280).student1689,26209 -student(s1281).student1690,26225 -student(s1281).student1690,26225 -student(s1282).student1691,26241 -student(s1282).student1691,26241 -student(s1283).student1692,26257 -student(s1283).student1692,26257 -student(s1284).student1693,26273 -student(s1284).student1693,26273 -student(s1285).student1694,26289 -student(s1285).student1694,26289 -student(s1286).student1695,26305 -student(s1286).student1695,26305 -student(s1287).student1696,26321 -student(s1287).student1696,26321 -student(s1288).student1697,26337 -student(s1288).student1697,26337 -student(s1289).student1698,26353 -student(s1289).student1698,26353 -student(s1290).student1699,26369 -student(s1290).student1699,26369 -student(s1291).student1700,26385 -student(s1291).student1700,26385 -student(s1292).student1701,26401 -student(s1292).student1701,26401 -student(s1293).student1702,26417 -student(s1293).student1702,26417 -student(s1294).student1703,26433 -student(s1294).student1703,26433 -student(s1295).student1704,26449 -student(s1295).student1704,26449 -student(s1296).student1705,26465 -student(s1296).student1705,26465 -student(s1297).student1706,26481 -student(s1297).student1706,26481 -student(s1298).student1707,26497 -student(s1298).student1707,26497 -student(s1299).student1708,26513 -student(s1299).student1708,26513 -student(s1300).student1709,26529 -student(s1300).student1709,26529 -student(s1301).student1710,26545 -student(s1301).student1710,26545 -student(s1302).student1711,26561 -student(s1302).student1711,26561 -student(s1303).student1712,26577 -student(s1303).student1712,26577 -student(s1304).student1713,26593 -student(s1304).student1713,26593 -student(s1305).student1714,26609 -student(s1305).student1714,26609 -student(s1306).student1715,26625 -student(s1306).student1715,26625 -student(s1307).student1716,26641 -student(s1307).student1716,26641 -student(s1308).student1717,26657 -student(s1308).student1717,26657 -student(s1309).student1718,26673 -student(s1309).student1718,26673 -student(s1310).student1719,26689 -student(s1310).student1719,26689 -student(s1311).student1720,26705 -student(s1311).student1720,26705 -student(s1312).student1721,26721 -student(s1312).student1721,26721 -student(s1313).student1722,26737 -student(s1313).student1722,26737 -student(s1314).student1723,26753 -student(s1314).student1723,26753 -student(s1315).student1724,26769 -student(s1315).student1724,26769 -student(s1316).student1725,26785 -student(s1316).student1725,26785 -student(s1317).student1726,26801 -student(s1317).student1726,26801 -student(s1318).student1727,26817 -student(s1318).student1727,26817 -student(s1319).student1728,26833 -student(s1319).student1728,26833 -student(s1320).student1729,26849 -student(s1320).student1729,26849 -student(s1321).student1730,26865 -student(s1321).student1730,26865 -student(s1322).student1731,26881 -student(s1322).student1731,26881 -student(s1323).student1732,26897 -student(s1323).student1732,26897 -student(s1324).student1733,26913 -student(s1324).student1733,26913 -student(s1325).student1734,26929 -student(s1325).student1734,26929 -student(s1326).student1735,26945 -student(s1326).student1735,26945 -student(s1327).student1736,26961 -student(s1327).student1736,26961 -student(s1328).student1737,26977 -student(s1328).student1737,26977 -student(s1329).student1738,26993 -student(s1329).student1738,26993 -student(s1330).student1739,27009 -student(s1330).student1739,27009 -student(s1331).student1740,27025 -student(s1331).student1740,27025 -student(s1332).student1741,27041 -student(s1332).student1741,27041 -student(s1333).student1742,27057 -student(s1333).student1742,27057 -student(s1334).student1743,27073 -student(s1334).student1743,27073 -student(s1335).student1744,27089 -student(s1335).student1744,27089 -student(s1336).student1745,27105 -student(s1336).student1745,27105 -student(s1337).student1746,27121 -student(s1337).student1746,27121 -student(s1338).student1747,27137 -student(s1338).student1747,27137 -student(s1339).student1748,27153 -student(s1339).student1748,27153 -student(s1340).student1749,27169 -student(s1340).student1749,27169 -student(s1341).student1750,27185 -student(s1341).student1750,27185 -student(s1342).student1751,27201 -student(s1342).student1751,27201 -student(s1343).student1752,27217 -student(s1343).student1752,27217 -student(s1344).student1753,27233 -student(s1344).student1753,27233 -student(s1345).student1754,27249 -student(s1345).student1754,27249 -student(s1346).student1755,27265 -student(s1346).student1755,27265 -student(s1347).student1756,27281 -student(s1347).student1756,27281 -student(s1348).student1757,27297 -student(s1348).student1757,27297 -student(s1349).student1758,27313 -student(s1349).student1758,27313 -student(s1350).student1759,27329 -student(s1350).student1759,27329 -student(s1351).student1760,27345 -student(s1351).student1760,27345 -student(s1352).student1761,27361 -student(s1352).student1761,27361 -student(s1353).student1762,27377 -student(s1353).student1762,27377 -student(s1354).student1763,27393 -student(s1354).student1763,27393 -student(s1355).student1764,27409 -student(s1355).student1764,27409 -student(s1356).student1765,27425 -student(s1356).student1765,27425 -student(s1357).student1766,27441 -student(s1357).student1766,27441 -student(s1358).student1767,27457 -student(s1358).student1767,27457 -student(s1359).student1768,27473 -student(s1359).student1768,27473 -student(s1360).student1769,27489 -student(s1360).student1769,27489 -student(s1361).student1770,27505 -student(s1361).student1770,27505 -student(s1362).student1771,27521 -student(s1362).student1771,27521 -student(s1363).student1772,27537 -student(s1363).student1772,27537 -student(s1364).student1773,27553 -student(s1364).student1773,27553 -student(s1365).student1774,27569 -student(s1365).student1774,27569 -student(s1366).student1775,27585 -student(s1366).student1775,27585 -student(s1367).student1776,27601 -student(s1367).student1776,27601 -student(s1368).student1777,27617 -student(s1368).student1777,27617 -student(s1369).student1778,27633 -student(s1369).student1778,27633 -student(s1370).student1779,27649 -student(s1370).student1779,27649 -student(s1371).student1780,27665 -student(s1371).student1780,27665 -student(s1372).student1781,27681 -student(s1372).student1781,27681 -student(s1373).student1782,27697 -student(s1373).student1782,27697 -student(s1374).student1783,27713 -student(s1374).student1783,27713 -student(s1375).student1784,27729 -student(s1375).student1784,27729 -student(s1376).student1785,27745 -student(s1376).student1785,27745 -student(s1377).student1786,27761 -student(s1377).student1786,27761 -student(s1378).student1787,27777 -student(s1378).student1787,27777 -student(s1379).student1788,27793 -student(s1379).student1788,27793 -student(s1380).student1789,27809 -student(s1380).student1789,27809 -student(s1381).student1790,27825 -student(s1381).student1790,27825 -student(s1382).student1791,27841 -student(s1382).student1791,27841 -student(s1383).student1792,27857 -student(s1383).student1792,27857 -student(s1384).student1793,27873 -student(s1384).student1793,27873 -student(s1385).student1794,27889 -student(s1385).student1794,27889 -student(s1386).student1795,27905 -student(s1386).student1795,27905 -student(s1387).student1796,27921 -student(s1387).student1796,27921 -student(s1388).student1797,27937 -student(s1388).student1797,27937 -student(s1389).student1798,27953 -student(s1389).student1798,27953 -student(s1390).student1799,27969 -student(s1390).student1799,27969 -student(s1391).student1800,27985 -student(s1391).student1800,27985 -student(s1392).student1801,28001 -student(s1392).student1801,28001 -student(s1393).student1802,28017 -student(s1393).student1802,28017 -student(s1394).student1803,28033 -student(s1394).student1803,28033 -student(s1395).student1804,28049 -student(s1395).student1804,28049 -student(s1396).student1805,28065 -student(s1396).student1805,28065 -student(s1397).student1806,28081 -student(s1397).student1806,28081 -student(s1398).student1807,28097 -student(s1398).student1807,28097 -student(s1399).student1808,28113 -student(s1399).student1808,28113 -student(s1400).student1809,28129 -student(s1400).student1809,28129 -student(s1401).student1810,28145 -student(s1401).student1810,28145 -student(s1402).student1811,28161 -student(s1402).student1811,28161 -student(s1403).student1812,28177 -student(s1403).student1812,28177 -student(s1404).student1813,28193 -student(s1404).student1813,28193 -student(s1405).student1814,28209 -student(s1405).student1814,28209 -student(s1406).student1815,28225 -student(s1406).student1815,28225 -student(s1407).student1816,28241 -student(s1407).student1816,28241 -student(s1408).student1817,28257 -student(s1408).student1817,28257 -student(s1409).student1818,28273 -student(s1409).student1818,28273 -student(s1410).student1819,28289 -student(s1410).student1819,28289 -student(s1411).student1820,28305 -student(s1411).student1820,28305 -student(s1412).student1821,28321 -student(s1412).student1821,28321 -student(s1413).student1822,28337 -student(s1413).student1822,28337 -student(s1414).student1823,28353 -student(s1414).student1823,28353 -student(s1415).student1824,28369 -student(s1415).student1824,28369 -student(s1416).student1825,28385 -student(s1416).student1825,28385 -student(s1417).student1826,28401 -student(s1417).student1826,28401 -student(s1418).student1827,28417 -student(s1418).student1827,28417 -student(s1419).student1828,28433 -student(s1419).student1828,28433 -student(s1420).student1829,28449 -student(s1420).student1829,28449 -student(s1421).student1830,28465 -student(s1421).student1830,28465 -student(s1422).student1831,28481 -student(s1422).student1831,28481 -student(s1423).student1832,28497 -student(s1423).student1832,28497 -student(s1424).student1833,28513 -student(s1424).student1833,28513 -student(s1425).student1834,28529 -student(s1425).student1834,28529 -student(s1426).student1835,28545 -student(s1426).student1835,28545 -student(s1427).student1836,28561 -student(s1427).student1836,28561 -student(s1428).student1837,28577 -student(s1428).student1837,28577 -student(s1429).student1838,28593 -student(s1429).student1838,28593 -student(s1430).student1839,28609 -student(s1430).student1839,28609 -student(s1431).student1840,28625 -student(s1431).student1840,28625 -student(s1432).student1841,28641 -student(s1432).student1841,28641 -student(s1433).student1842,28657 -student(s1433).student1842,28657 -student(s1434).student1843,28673 -student(s1434).student1843,28673 -student(s1435).student1844,28689 -student(s1435).student1844,28689 -student(s1436).student1845,28705 -student(s1436).student1845,28705 -student(s1437).student1846,28721 -student(s1437).student1846,28721 -student(s1438).student1847,28737 -student(s1438).student1847,28737 -student(s1439).student1848,28753 -student(s1439).student1848,28753 -student(s1440).student1849,28769 -student(s1440).student1849,28769 -student(s1441).student1850,28785 -student(s1441).student1850,28785 -student(s1442).student1851,28801 -student(s1442).student1851,28801 -student(s1443).student1852,28817 -student(s1443).student1852,28817 -student(s1444).student1853,28833 -student(s1444).student1853,28833 -student(s1445).student1854,28849 -student(s1445).student1854,28849 -student(s1446).student1855,28865 -student(s1446).student1855,28865 -student(s1447).student1856,28881 -student(s1447).student1856,28881 -student(s1448).student1857,28897 -student(s1448).student1857,28897 -student(s1449).student1858,28913 -student(s1449).student1858,28913 -student(s1450).student1859,28929 -student(s1450).student1859,28929 -student(s1451).student1860,28945 -student(s1451).student1860,28945 -student(s1452).student1861,28961 -student(s1452).student1861,28961 -student(s1453).student1862,28977 -student(s1453).student1862,28977 -student(s1454).student1863,28993 -student(s1454).student1863,28993 -student(s1455).student1864,29009 -student(s1455).student1864,29009 -student(s1456).student1865,29025 -student(s1456).student1865,29025 -student(s1457).student1866,29041 -student(s1457).student1866,29041 -student(s1458).student1867,29057 -student(s1458).student1867,29057 -student(s1459).student1868,29073 -student(s1459).student1868,29073 -student(s1460).student1869,29089 -student(s1460).student1869,29089 -student(s1461).student1870,29105 -student(s1461).student1870,29105 -student(s1462).student1871,29121 -student(s1462).student1871,29121 -student(s1463).student1872,29137 -student(s1463).student1872,29137 -student(s1464).student1873,29153 -student(s1464).student1873,29153 -student(s1465).student1874,29169 -student(s1465).student1874,29169 -student(s1466).student1875,29185 -student(s1466).student1875,29185 -student(s1467).student1876,29201 -student(s1467).student1876,29201 -student(s1468).student1877,29217 -student(s1468).student1877,29217 -student(s1469).student1878,29233 -student(s1469).student1878,29233 -student(s1470).student1879,29249 -student(s1470).student1879,29249 -student(s1471).student1880,29265 -student(s1471).student1880,29265 -student(s1472).student1881,29281 -student(s1472).student1881,29281 -student(s1473).student1882,29297 -student(s1473).student1882,29297 -student(s1474).student1883,29313 -student(s1474).student1883,29313 -student(s1475).student1884,29329 -student(s1475).student1884,29329 -student(s1476).student1885,29345 -student(s1476).student1885,29345 -student(s1477).student1886,29361 -student(s1477).student1886,29361 -student(s1478).student1887,29377 -student(s1478).student1887,29377 -student(s1479).student1888,29393 -student(s1479).student1888,29393 -student(s1480).student1889,29409 -student(s1480).student1889,29409 -student(s1481).student1890,29425 -student(s1481).student1890,29425 -student(s1482).student1891,29441 -student(s1482).student1891,29441 -student(s1483).student1892,29457 -student(s1483).student1892,29457 -student(s1484).student1893,29473 -student(s1484).student1893,29473 -student(s1485).student1894,29489 -student(s1485).student1894,29489 -student(s1486).student1895,29505 -student(s1486).student1895,29505 -student(s1487).student1896,29521 -student(s1487).student1896,29521 -student(s1488).student1897,29537 -student(s1488).student1897,29537 -student(s1489).student1898,29553 -student(s1489).student1898,29553 -student(s1490).student1899,29569 -student(s1490).student1899,29569 -student(s1491).student1900,29585 -student(s1491).student1900,29585 -student(s1492).student1901,29601 -student(s1492).student1901,29601 -student(s1493).student1902,29617 -student(s1493).student1902,29617 -student(s1494).student1903,29633 -student(s1494).student1903,29633 -student(s1495).student1904,29649 -student(s1495).student1904,29649 -student(s1496).student1905,29665 -student(s1496).student1905,29665 -student(s1497).student1906,29681 -student(s1497).student1906,29681 -student(s1498).student1907,29697 -student(s1498).student1907,29697 -student(s1499).student1908,29713 -student(s1499).student1908,29713 -student(s1500).student1909,29729 -student(s1500).student1909,29729 -student(s1501).student1910,29745 -student(s1501).student1910,29745 -student(s1502).student1911,29761 -student(s1502).student1911,29761 -student(s1503).student1912,29777 -student(s1503).student1912,29777 -student(s1504).student1913,29793 -student(s1504).student1913,29793 -student(s1505).student1914,29809 -student(s1505).student1914,29809 -student(s1506).student1915,29825 -student(s1506).student1915,29825 -student(s1507).student1916,29841 -student(s1507).student1916,29841 -student(s1508).student1917,29857 -student(s1508).student1917,29857 -student(s1509).student1918,29873 -student(s1509).student1918,29873 -student(s1510).student1919,29889 -student(s1510).student1919,29889 -student(s1511).student1920,29905 -student(s1511).student1920,29905 -student(s1512).student1921,29921 -student(s1512).student1921,29921 -student(s1513).student1922,29937 -student(s1513).student1922,29937 -student(s1514).student1923,29953 -student(s1514).student1923,29953 -student(s1515).student1924,29969 -student(s1515).student1924,29969 -student(s1516).student1925,29985 -student(s1516).student1925,29985 -student(s1517).student1926,30001 -student(s1517).student1926,30001 -student(s1518).student1927,30017 -student(s1518).student1927,30017 -student(s1519).student1928,30033 -student(s1519).student1928,30033 -student(s1520).student1929,30049 -student(s1520).student1929,30049 -student(s1521).student1930,30065 -student(s1521).student1930,30065 -student(s1522).student1931,30081 -student(s1522).student1931,30081 -student(s1523).student1932,30097 -student(s1523).student1932,30097 -student(s1524).student1933,30113 -student(s1524).student1933,30113 -student(s1525).student1934,30129 -student(s1525).student1934,30129 -student(s1526).student1935,30145 -student(s1526).student1935,30145 -student(s1527).student1936,30161 -student(s1527).student1936,30161 -student(s1528).student1937,30177 -student(s1528).student1937,30177 -student(s1529).student1938,30193 -student(s1529).student1938,30193 -student(s1530).student1939,30209 -student(s1530).student1939,30209 -student(s1531).student1940,30225 -student(s1531).student1940,30225 -student(s1532).student1941,30241 -student(s1532).student1941,30241 -student(s1533).student1942,30257 -student(s1533).student1942,30257 -student(s1534).student1943,30273 -student(s1534).student1943,30273 -student(s1535).student1944,30289 -student(s1535).student1944,30289 -student(s1536).student1945,30305 -student(s1536).student1945,30305 -student(s1537).student1946,30321 -student(s1537).student1946,30321 -student(s1538).student1947,30337 -student(s1538).student1947,30337 -student(s1539).student1948,30353 -student(s1539).student1948,30353 -student(s1540).student1949,30369 -student(s1540).student1949,30369 -student(s1541).student1950,30385 -student(s1541).student1950,30385 -student(s1542).student1951,30401 -student(s1542).student1951,30401 -student(s1543).student1952,30417 -student(s1543).student1952,30417 -student(s1544).student1953,30433 -student(s1544).student1953,30433 -student(s1545).student1954,30449 -student(s1545).student1954,30449 -student(s1546).student1955,30465 -student(s1546).student1955,30465 -student(s1547).student1956,30481 -student(s1547).student1956,30481 -student(s1548).student1957,30497 -student(s1548).student1957,30497 -student(s1549).student1958,30513 -student(s1549).student1958,30513 -student(s1550).student1959,30529 -student(s1550).student1959,30529 -student(s1551).student1960,30545 -student(s1551).student1960,30545 -student(s1552).student1961,30561 -student(s1552).student1961,30561 -student(s1553).student1962,30577 -student(s1553).student1962,30577 -student(s1554).student1963,30593 -student(s1554).student1963,30593 -student(s1555).student1964,30609 -student(s1555).student1964,30609 -student(s1556).student1965,30625 -student(s1556).student1965,30625 -student(s1557).student1966,30641 -student(s1557).student1966,30641 -student(s1558).student1967,30657 -student(s1558).student1967,30657 -student(s1559).student1968,30673 -student(s1559).student1968,30673 -student(s1560).student1969,30689 -student(s1560).student1969,30689 -student(s1561).student1970,30705 -student(s1561).student1970,30705 -student(s1562).student1971,30721 -student(s1562).student1971,30721 -student(s1563).student1972,30737 -student(s1563).student1972,30737 -student(s1564).student1973,30753 -student(s1564).student1973,30753 -student(s1565).student1974,30769 -student(s1565).student1974,30769 -student(s1566).student1975,30785 -student(s1566).student1975,30785 -student(s1567).student1976,30801 -student(s1567).student1976,30801 -student(s1568).student1977,30817 -student(s1568).student1977,30817 -student(s1569).student1978,30833 -student(s1569).student1978,30833 -student(s1570).student1979,30849 -student(s1570).student1979,30849 -student(s1571).student1980,30865 -student(s1571).student1980,30865 -student(s1572).student1981,30881 -student(s1572).student1981,30881 -student(s1573).student1982,30897 -student(s1573).student1982,30897 -student(s1574).student1983,30913 -student(s1574).student1983,30913 -student(s1575).student1984,30929 -student(s1575).student1984,30929 -student(s1576).student1985,30945 -student(s1576).student1985,30945 -student(s1577).student1986,30961 -student(s1577).student1986,30961 -student(s1578).student1987,30977 -student(s1578).student1987,30977 -student(s1579).student1988,30993 -student(s1579).student1988,30993 -student(s1580).student1989,31009 -student(s1580).student1989,31009 -student(s1581).student1990,31025 -student(s1581).student1990,31025 -student(s1582).student1991,31041 -student(s1582).student1991,31041 -student(s1583).student1992,31057 -student(s1583).student1992,31057 -student(s1584).student1993,31073 -student(s1584).student1993,31073 -student(s1585).student1994,31089 -student(s1585).student1994,31089 -student(s1586).student1995,31105 -student(s1586).student1995,31105 -student(s1587).student1996,31121 -student(s1587).student1996,31121 -student(s1588).student1997,31137 -student(s1588).student1997,31137 -student(s1589).student1998,31153 -student(s1589).student1998,31153 -student(s1590).student1999,31169 -student(s1590).student1999,31169 -student(s1591).student2000,31185 -student(s1591).student2000,31185 -student(s1592).student2001,31201 -student(s1592).student2001,31201 -student(s1593).student2002,31217 -student(s1593).student2002,31217 -student(s1594).student2003,31233 -student(s1594).student2003,31233 -student(s1595).student2004,31249 -student(s1595).student2004,31249 -student(s1596).student2005,31265 -student(s1596).student2005,31265 -student(s1597).student2006,31281 -student(s1597).student2006,31281 -student(s1598).student2007,31297 -student(s1598).student2007,31297 -student(s1599).student2008,31313 -student(s1599).student2008,31313 -student(s1600).student2009,31329 -student(s1600).student2009,31329 -student(s1601).student2010,31345 -student(s1601).student2010,31345 -student(s1602).student2011,31361 -student(s1602).student2011,31361 -student(s1603).student2012,31377 -student(s1603).student2012,31377 -student(s1604).student2013,31393 -student(s1604).student2013,31393 -student(s1605).student2014,31409 -student(s1605).student2014,31409 -student(s1606).student2015,31425 -student(s1606).student2015,31425 -student(s1607).student2016,31441 -student(s1607).student2016,31441 -student(s1608).student2017,31457 -student(s1608).student2017,31457 -student(s1609).student2018,31473 -student(s1609).student2018,31473 -student(s1610).student2019,31489 -student(s1610).student2019,31489 -student(s1611).student2020,31505 -student(s1611).student2020,31505 -student(s1612).student2021,31521 -student(s1612).student2021,31521 -student(s1613).student2022,31537 -student(s1613).student2022,31537 -student(s1614).student2023,31553 -student(s1614).student2023,31553 -student(s1615).student2024,31569 -student(s1615).student2024,31569 -student(s1616).student2025,31585 -student(s1616).student2025,31585 -student(s1617).student2026,31601 -student(s1617).student2026,31601 -student(s1618).student2027,31617 -student(s1618).student2027,31617 -student(s1619).student2028,31633 -student(s1619).student2028,31633 -student(s1620).student2029,31649 -student(s1620).student2029,31649 -student(s1621).student2030,31665 -student(s1621).student2030,31665 -student(s1622).student2031,31681 -student(s1622).student2031,31681 -student(s1623).student2032,31697 -student(s1623).student2032,31697 -student(s1624).student2033,31713 -student(s1624).student2033,31713 -student(s1625).student2034,31729 -student(s1625).student2034,31729 -student(s1626).student2035,31745 -student(s1626).student2035,31745 -student(s1627).student2036,31761 -student(s1627).student2036,31761 -student(s1628).student2037,31777 -student(s1628).student2037,31777 -student(s1629).student2038,31793 -student(s1629).student2038,31793 -student(s1630).student2039,31809 -student(s1630).student2039,31809 -student(s1631).student2040,31825 -student(s1631).student2040,31825 -student(s1632).student2041,31841 -student(s1632).student2041,31841 -student(s1633).student2042,31857 -student(s1633).student2042,31857 -student(s1634).student2043,31873 -student(s1634).student2043,31873 -student(s1635).student2044,31889 -student(s1635).student2044,31889 -student(s1636).student2045,31905 -student(s1636).student2045,31905 -student(s1637).student2046,31921 -student(s1637).student2046,31921 -student(s1638).student2047,31937 -student(s1638).student2047,31937 -student(s1639).student2048,31953 -student(s1639).student2048,31953 -student(s1640).student2049,31969 -student(s1640).student2049,31969 -student(s1641).student2050,31985 -student(s1641).student2050,31985 -student(s1642).student2051,32001 -student(s1642).student2051,32001 -student(s1643).student2052,32017 -student(s1643).student2052,32017 -student(s1644).student2053,32033 -student(s1644).student2053,32033 -student(s1645).student2054,32049 -student(s1645).student2054,32049 -student(s1646).student2055,32065 -student(s1646).student2055,32065 -student(s1647).student2056,32081 -student(s1647).student2056,32081 -student(s1648).student2057,32097 -student(s1648).student2057,32097 -student(s1649).student2058,32113 -student(s1649).student2058,32113 -student(s1650).student2059,32129 -student(s1650).student2059,32129 -student(s1651).student2060,32145 -student(s1651).student2060,32145 -student(s1652).student2061,32161 -student(s1652).student2061,32161 -student(s1653).student2062,32177 -student(s1653).student2062,32177 -student(s1654).student2063,32193 -student(s1654).student2063,32193 -student(s1655).student2064,32209 -student(s1655).student2064,32209 -student(s1656).student2065,32225 -student(s1656).student2065,32225 -student(s1657).student2066,32241 -student(s1657).student2066,32241 -student(s1658).student2067,32257 -student(s1658).student2067,32257 -student(s1659).student2068,32273 -student(s1659).student2068,32273 -student(s1660).student2069,32289 -student(s1660).student2069,32289 -student(s1661).student2070,32305 -student(s1661).student2070,32305 -student(s1662).student2071,32321 -student(s1662).student2071,32321 -student(s1663).student2072,32337 -student(s1663).student2072,32337 -student(s1664).student2073,32353 -student(s1664).student2073,32353 -student(s1665).student2074,32369 -student(s1665).student2074,32369 -student(s1666).student2075,32385 -student(s1666).student2075,32385 -student(s1667).student2076,32401 -student(s1667).student2076,32401 -student(s1668).student2077,32417 -student(s1668).student2077,32417 -student(s1669).student2078,32433 -student(s1669).student2078,32433 -student(s1670).student2079,32449 -student(s1670).student2079,32449 -student(s1671).student2080,32465 -student(s1671).student2080,32465 -student(s1672).student2081,32481 -student(s1672).student2081,32481 -student(s1673).student2082,32497 -student(s1673).student2082,32497 -student(s1674).student2083,32513 -student(s1674).student2083,32513 -student(s1675).student2084,32529 -student(s1675).student2084,32529 -student(s1676).student2085,32545 -student(s1676).student2085,32545 -student(s1677).student2086,32561 -student(s1677).student2086,32561 -student(s1678).student2087,32577 -student(s1678).student2087,32577 -student(s1679).student2088,32593 -student(s1679).student2088,32593 -student(s1680).student2089,32609 -student(s1680).student2089,32609 -student(s1681).student2090,32625 -student(s1681).student2090,32625 -student(s1682).student2091,32641 -student(s1682).student2091,32641 -student(s1683).student2092,32657 -student(s1683).student2092,32657 -student(s1684).student2093,32673 -student(s1684).student2093,32673 -student(s1685).student2094,32689 -student(s1685).student2094,32689 -student(s1686).student2095,32705 -student(s1686).student2095,32705 -student(s1687).student2096,32721 -student(s1687).student2096,32721 -student(s1688).student2097,32737 -student(s1688).student2097,32737 -student(s1689).student2098,32753 -student(s1689).student2098,32753 -student(s1690).student2099,32769 -student(s1690).student2099,32769 -student(s1691).student2100,32785 -student(s1691).student2100,32785 -student(s1692).student2101,32801 -student(s1692).student2101,32801 -student(s1693).student2102,32817 -student(s1693).student2102,32817 -student(s1694).student2103,32833 -student(s1694).student2103,32833 -student(s1695).student2104,32849 -student(s1695).student2104,32849 -student(s1696).student2105,32865 -student(s1696).student2105,32865 -student(s1697).student2106,32881 -student(s1697).student2106,32881 -student(s1698).student2107,32897 -student(s1698).student2107,32897 -student(s1699).student2108,32913 -student(s1699).student2108,32913 -student(s1700).student2109,32929 -student(s1700).student2109,32929 -student(s1701).student2110,32945 -student(s1701).student2110,32945 -student(s1702).student2111,32961 -student(s1702).student2111,32961 -student(s1703).student2112,32977 -student(s1703).student2112,32977 -student(s1704).student2113,32993 -student(s1704).student2113,32993 -student(s1705).student2114,33009 -student(s1705).student2114,33009 -student(s1706).student2115,33025 -student(s1706).student2115,33025 -student(s1707).student2116,33041 -student(s1707).student2116,33041 -student(s1708).student2117,33057 -student(s1708).student2117,33057 -student(s1709).student2118,33073 -student(s1709).student2118,33073 -student(s1710).student2119,33089 -student(s1710).student2119,33089 -student(s1711).student2120,33105 -student(s1711).student2120,33105 -student(s1712).student2121,33121 -student(s1712).student2121,33121 -student(s1713).student2122,33137 -student(s1713).student2122,33137 -student(s1714).student2123,33153 -student(s1714).student2123,33153 -student(s1715).student2124,33169 -student(s1715).student2124,33169 -student(s1716).student2125,33185 -student(s1716).student2125,33185 -student(s1717).student2126,33201 -student(s1717).student2126,33201 -student(s1718).student2127,33217 -student(s1718).student2127,33217 -student(s1719).student2128,33233 -student(s1719).student2128,33233 -student(s1720).student2129,33249 -student(s1720).student2129,33249 -student(s1721).student2130,33265 -student(s1721).student2130,33265 -student(s1722).student2131,33281 -student(s1722).student2131,33281 -student(s1723).student2132,33297 -student(s1723).student2132,33297 -student(s1724).student2133,33313 -student(s1724).student2133,33313 -student(s1725).student2134,33329 -student(s1725).student2134,33329 -student(s1726).student2135,33345 -student(s1726).student2135,33345 -student(s1727).student2136,33361 -student(s1727).student2136,33361 -student(s1728).student2137,33377 -student(s1728).student2137,33377 -student(s1729).student2138,33393 -student(s1729).student2138,33393 -student(s1730).student2139,33409 -student(s1730).student2139,33409 -student(s1731).student2140,33425 -student(s1731).student2140,33425 -student(s1732).student2141,33441 -student(s1732).student2141,33441 -student(s1733).student2142,33457 -student(s1733).student2142,33457 -student(s1734).student2143,33473 -student(s1734).student2143,33473 -student(s1735).student2144,33489 -student(s1735).student2144,33489 -student(s1736).student2145,33505 -student(s1736).student2145,33505 -student(s1737).student2146,33521 -student(s1737).student2146,33521 -student(s1738).student2147,33537 -student(s1738).student2147,33537 -student(s1739).student2148,33553 -student(s1739).student2148,33553 -student(s1740).student2149,33569 -student(s1740).student2149,33569 -student(s1741).student2150,33585 -student(s1741).student2150,33585 -student(s1742).student2151,33601 -student(s1742).student2151,33601 -student(s1743).student2152,33617 -student(s1743).student2152,33617 -student(s1744).student2153,33633 -student(s1744).student2153,33633 -student(s1745).student2154,33649 -student(s1745).student2154,33649 -student(s1746).student2155,33665 -student(s1746).student2155,33665 -student(s1747).student2156,33681 -student(s1747).student2156,33681 -student(s1748).student2157,33697 -student(s1748).student2157,33697 -student(s1749).student2158,33713 -student(s1749).student2158,33713 -student(s1750).student2159,33729 -student(s1750).student2159,33729 -student(s1751).student2160,33745 -student(s1751).student2160,33745 -student(s1752).student2161,33761 -student(s1752).student2161,33761 -student(s1753).student2162,33777 -student(s1753).student2162,33777 -student(s1754).student2163,33793 -student(s1754).student2163,33793 -student(s1755).student2164,33809 -student(s1755).student2164,33809 -student(s1756).student2165,33825 -student(s1756).student2165,33825 -student(s1757).student2166,33841 -student(s1757).student2166,33841 -student(s1758).student2167,33857 -student(s1758).student2167,33857 -student(s1759).student2168,33873 -student(s1759).student2168,33873 -student(s1760).student2169,33889 -student(s1760).student2169,33889 -student(s1761).student2170,33905 -student(s1761).student2170,33905 -student(s1762).student2171,33921 -student(s1762).student2171,33921 -student(s1763).student2172,33937 -student(s1763).student2172,33937 -student(s1764).student2173,33953 -student(s1764).student2173,33953 -student(s1765).student2174,33969 -student(s1765).student2174,33969 -student(s1766).student2175,33985 -student(s1766).student2175,33985 -student(s1767).student2176,34001 -student(s1767).student2176,34001 -student(s1768).student2177,34017 -student(s1768).student2177,34017 -student(s1769).student2178,34033 -student(s1769).student2178,34033 -student(s1770).student2179,34049 -student(s1770).student2179,34049 -student(s1771).student2180,34065 -student(s1771).student2180,34065 -student(s1772).student2181,34081 -student(s1772).student2181,34081 -student(s1773).student2182,34097 -student(s1773).student2182,34097 -student(s1774).student2183,34113 -student(s1774).student2183,34113 -student(s1775).student2184,34129 -student(s1775).student2184,34129 -student(s1776).student2185,34145 -student(s1776).student2185,34145 -student(s1777).student2186,34161 -student(s1777).student2186,34161 -student(s1778).student2187,34177 -student(s1778).student2187,34177 -student(s1779).student2188,34193 -student(s1779).student2188,34193 -student(s1780).student2189,34209 -student(s1780).student2189,34209 -student(s1781).student2190,34225 -student(s1781).student2190,34225 -student(s1782).student2191,34241 -student(s1782).student2191,34241 -student(s1783).student2192,34257 -student(s1783).student2192,34257 -student(s1784).student2193,34273 -student(s1784).student2193,34273 -student(s1785).student2194,34289 -student(s1785).student2194,34289 -student(s1786).student2195,34305 -student(s1786).student2195,34305 -student(s1787).student2196,34321 -student(s1787).student2196,34321 -student(s1788).student2197,34337 -student(s1788).student2197,34337 -student(s1789).student2198,34353 -student(s1789).student2198,34353 -student(s1790).student2199,34369 -student(s1790).student2199,34369 -student(s1791).student2200,34385 -student(s1791).student2200,34385 -student(s1792).student2201,34401 -student(s1792).student2201,34401 -student(s1793).student2202,34417 -student(s1793).student2202,34417 -student(s1794).student2203,34433 -student(s1794).student2203,34433 -student(s1795).student2204,34449 -student(s1795).student2204,34449 -student(s1796).student2205,34465 -student(s1796).student2205,34465 -student(s1797).student2206,34481 -student(s1797).student2206,34481 -student(s1798).student2207,34497 -student(s1798).student2207,34497 -student(s1799).student2208,34513 -student(s1799).student2208,34513 -student(s1800).student2209,34529 -student(s1800).student2209,34529 -student(s1801).student2210,34545 -student(s1801).student2210,34545 -student(s1802).student2211,34561 -student(s1802).student2211,34561 -student(s1803).student2212,34577 -student(s1803).student2212,34577 -student(s1804).student2213,34593 -student(s1804).student2213,34593 -student(s1805).student2214,34609 -student(s1805).student2214,34609 -student(s1806).student2215,34625 -student(s1806).student2215,34625 -student(s1807).student2216,34641 -student(s1807).student2216,34641 -student(s1808).student2217,34657 -student(s1808).student2217,34657 -student(s1809).student2218,34673 -student(s1809).student2218,34673 -student(s1810).student2219,34689 -student(s1810).student2219,34689 -student(s1811).student2220,34705 -student(s1811).student2220,34705 -student(s1812).student2221,34721 -student(s1812).student2221,34721 -student(s1813).student2222,34737 -student(s1813).student2222,34737 -student(s1814).student2223,34753 -student(s1814).student2223,34753 -student(s1815).student2224,34769 -student(s1815).student2224,34769 -student(s1816).student2225,34785 -student(s1816).student2225,34785 -student(s1817).student2226,34801 -student(s1817).student2226,34801 -student(s1818).student2227,34817 -student(s1818).student2227,34817 -student(s1819).student2228,34833 -student(s1819).student2228,34833 -student(s1820).student2229,34849 -student(s1820).student2229,34849 -student(s1821).student2230,34865 -student(s1821).student2230,34865 -student(s1822).student2231,34881 -student(s1822).student2231,34881 -student(s1823).student2232,34897 -student(s1823).student2232,34897 -student(s1824).student2233,34913 -student(s1824).student2233,34913 -student(s1825).student2234,34929 -student(s1825).student2234,34929 -student(s1826).student2235,34945 -student(s1826).student2235,34945 -student(s1827).student2236,34961 -student(s1827).student2236,34961 -student(s1828).student2237,34977 -student(s1828).student2237,34977 -student(s1829).student2238,34993 -student(s1829).student2238,34993 -student(s1830).student2239,35009 -student(s1830).student2239,35009 -student(s1831).student2240,35025 -student(s1831).student2240,35025 -student(s1832).student2241,35041 -student(s1832).student2241,35041 -student(s1833).student2242,35057 -student(s1833).student2242,35057 -student(s1834).student2243,35073 -student(s1834).student2243,35073 -student(s1835).student2244,35089 -student(s1835).student2244,35089 -student(s1836).student2245,35105 -student(s1836).student2245,35105 -student(s1837).student2246,35121 -student(s1837).student2246,35121 -student(s1838).student2247,35137 -student(s1838).student2247,35137 -student(s1839).student2248,35153 -student(s1839).student2248,35153 -student(s1840).student2249,35169 -student(s1840).student2249,35169 -student(s1841).student2250,35185 -student(s1841).student2250,35185 -student(s1842).student2251,35201 -student(s1842).student2251,35201 -student(s1843).student2252,35217 -student(s1843).student2252,35217 -student(s1844).student2253,35233 -student(s1844).student2253,35233 -student(s1845).student2254,35249 -student(s1845).student2254,35249 -student(s1846).student2255,35265 -student(s1846).student2255,35265 -student(s1847).student2256,35281 -student(s1847).student2256,35281 -student(s1848).student2257,35297 -student(s1848).student2257,35297 -student(s1849).student2258,35313 -student(s1849).student2258,35313 -student(s1850).student2259,35329 -student(s1850).student2259,35329 -student(s1851).student2260,35345 -student(s1851).student2260,35345 -student(s1852).student2261,35361 -student(s1852).student2261,35361 -student(s1853).student2262,35377 -student(s1853).student2262,35377 -student(s1854).student2263,35393 -student(s1854).student2263,35393 -student(s1855).student2264,35409 -student(s1855).student2264,35409 -student(s1856).student2265,35425 -student(s1856).student2265,35425 -student(s1857).student2266,35441 -student(s1857).student2266,35441 -student(s1858).student2267,35457 -student(s1858).student2267,35457 -student(s1859).student2268,35473 -student(s1859).student2268,35473 -student(s1860).student2269,35489 -student(s1860).student2269,35489 -student(s1861).student2270,35505 -student(s1861).student2270,35505 -student(s1862).student2271,35521 -student(s1862).student2271,35521 -student(s1863).student2272,35537 -student(s1863).student2272,35537 -student(s1864).student2273,35553 -student(s1864).student2273,35553 -student(s1865).student2274,35569 -student(s1865).student2274,35569 -student(s1866).student2275,35585 -student(s1866).student2275,35585 -student(s1867).student2276,35601 -student(s1867).student2276,35601 -student(s1868).student2277,35617 -student(s1868).student2277,35617 -student(s1869).student2278,35633 -student(s1869).student2278,35633 -student(s1870).student2279,35649 -student(s1870).student2279,35649 -student(s1871).student2280,35665 -student(s1871).student2280,35665 -student(s1872).student2281,35681 -student(s1872).student2281,35681 -student(s1873).student2282,35697 -student(s1873).student2282,35697 -student(s1874).student2283,35713 -student(s1874).student2283,35713 -student(s1875).student2284,35729 -student(s1875).student2284,35729 -student(s1876).student2285,35745 -student(s1876).student2285,35745 -student(s1877).student2286,35761 -student(s1877).student2286,35761 -student(s1878).student2287,35777 -student(s1878).student2287,35777 -student(s1879).student2288,35793 -student(s1879).student2288,35793 -student(s1880).student2289,35809 -student(s1880).student2289,35809 -student(s1881).student2290,35825 -student(s1881).student2290,35825 -student(s1882).student2291,35841 -student(s1882).student2291,35841 -student(s1883).student2292,35857 -student(s1883).student2292,35857 -student(s1884).student2293,35873 -student(s1884).student2293,35873 -student(s1885).student2294,35889 -student(s1885).student2294,35889 -student(s1886).student2295,35905 -student(s1886).student2295,35905 -student(s1887).student2296,35921 -student(s1887).student2296,35921 -student(s1888).student2297,35937 -student(s1888).student2297,35937 -student(s1889).student2298,35953 -student(s1889).student2298,35953 -student(s1890).student2299,35969 -student(s1890).student2299,35969 -student(s1891).student2300,35985 -student(s1891).student2300,35985 -student(s1892).student2301,36001 -student(s1892).student2301,36001 -student(s1893).student2302,36017 -student(s1893).student2302,36017 -student(s1894).student2303,36033 -student(s1894).student2303,36033 -student(s1895).student2304,36049 -student(s1895).student2304,36049 -student(s1896).student2305,36065 -student(s1896).student2305,36065 -student(s1897).student2306,36081 -student(s1897).student2306,36081 -student(s1898).student2307,36097 -student(s1898).student2307,36097 -student(s1899).student2308,36113 -student(s1899).student2308,36113 -student(s1900).student2309,36129 -student(s1900).student2309,36129 -student(s1901).student2310,36145 -student(s1901).student2310,36145 -student(s1902).student2311,36161 -student(s1902).student2311,36161 -student(s1903).student2312,36177 -student(s1903).student2312,36177 -student(s1904).student2313,36193 -student(s1904).student2313,36193 -student(s1905).student2314,36209 -student(s1905).student2314,36209 -student(s1906).student2315,36225 -student(s1906).student2315,36225 -student(s1907).student2316,36241 -student(s1907).student2316,36241 -student(s1908).student2317,36257 -student(s1908).student2317,36257 -student(s1909).student2318,36273 -student(s1909).student2318,36273 -student(s1910).student2319,36289 -student(s1910).student2319,36289 -student(s1911).student2320,36305 -student(s1911).student2320,36305 -student(s1912).student2321,36321 -student(s1912).student2321,36321 -student(s1913).student2322,36337 -student(s1913).student2322,36337 -student(s1914).student2323,36353 -student(s1914).student2323,36353 -student(s1915).student2324,36369 -student(s1915).student2324,36369 -student(s1916).student2325,36385 -student(s1916).student2325,36385 -student(s1917).student2326,36401 -student(s1917).student2326,36401 -student(s1918).student2327,36417 -student(s1918).student2327,36417 -student(s1919).student2328,36433 -student(s1919).student2328,36433 -student(s1920).student2329,36449 -student(s1920).student2329,36449 -student(s1921).student2330,36465 -student(s1921).student2330,36465 -student(s1922).student2331,36481 -student(s1922).student2331,36481 -student(s1923).student2332,36497 -student(s1923).student2332,36497 -student(s1924).student2333,36513 -student(s1924).student2333,36513 -student(s1925).student2334,36529 -student(s1925).student2334,36529 -student(s1926).student2335,36545 -student(s1926).student2335,36545 -student(s1927).student2336,36561 -student(s1927).student2336,36561 -student(s1928).student2337,36577 -student(s1928).student2337,36577 -student(s1929).student2338,36593 -student(s1929).student2338,36593 -student(s1930).student2339,36609 -student(s1930).student2339,36609 -student(s1931).student2340,36625 -student(s1931).student2340,36625 -student(s1932).student2341,36641 -student(s1932).student2341,36641 -student(s1933).student2342,36657 -student(s1933).student2342,36657 -student(s1934).student2343,36673 -student(s1934).student2343,36673 -student(s1935).student2344,36689 -student(s1935).student2344,36689 -student(s1936).student2345,36705 -student(s1936).student2345,36705 -student(s1937).student2346,36721 -student(s1937).student2346,36721 -student(s1938).student2347,36737 -student(s1938).student2347,36737 -student(s1939).student2348,36753 -student(s1939).student2348,36753 -student(s1940).student2349,36769 -student(s1940).student2349,36769 -student(s1941).student2350,36785 -student(s1941).student2350,36785 -student(s1942).student2351,36801 -student(s1942).student2351,36801 -student(s1943).student2352,36817 -student(s1943).student2352,36817 -student(s1944).student2353,36833 -student(s1944).student2353,36833 -student(s1945).student2354,36849 -student(s1945).student2354,36849 -student(s1946).student2355,36865 -student(s1946).student2355,36865 -student(s1947).student2356,36881 -student(s1947).student2356,36881 -student(s1948).student2357,36897 -student(s1948).student2357,36897 -student(s1949).student2358,36913 -student(s1949).student2358,36913 -student(s1950).student2359,36929 -student(s1950).student2359,36929 -student(s1951).student2360,36945 -student(s1951).student2360,36945 -student(s1952).student2361,36961 -student(s1952).student2361,36961 -student(s1953).student2362,36977 -student(s1953).student2362,36977 -student(s1954).student2363,36993 -student(s1954).student2363,36993 -student(s1955).student2364,37009 -student(s1955).student2364,37009 -student(s1956).student2365,37025 -student(s1956).student2365,37025 -student(s1957).student2366,37041 -student(s1957).student2366,37041 -student(s1958).student2367,37057 -student(s1958).student2367,37057 -student(s1959).student2368,37073 -student(s1959).student2368,37073 -student(s1960).student2369,37089 -student(s1960).student2369,37089 -student(s1961).student2370,37105 -student(s1961).student2370,37105 -student(s1962).student2371,37121 -student(s1962).student2371,37121 -student(s1963).student2372,37137 -student(s1963).student2372,37137 -student(s1964).student2373,37153 -student(s1964).student2373,37153 -student(s1965).student2374,37169 -student(s1965).student2374,37169 -student(s1966).student2375,37185 -student(s1966).student2375,37185 -student(s1967).student2376,37201 -student(s1967).student2376,37201 -student(s1968).student2377,37217 -student(s1968).student2377,37217 -student(s1969).student2378,37233 -student(s1969).student2378,37233 -student(s1970).student2379,37249 -student(s1970).student2379,37249 -student(s1971).student2380,37265 -student(s1971).student2380,37265 -student(s1972).student2381,37281 -student(s1972).student2381,37281 -student(s1973).student2382,37297 -student(s1973).student2382,37297 -student(s1974).student2383,37313 -student(s1974).student2383,37313 -student(s1975).student2384,37329 -student(s1975).student2384,37329 -student(s1976).student2385,37345 -student(s1976).student2385,37345 -student(s1977).student2386,37361 -student(s1977).student2386,37361 -student(s1978).student2387,37377 -student(s1978).student2387,37377 -student(s1979).student2388,37393 -student(s1979).student2388,37393 -student(s1980).student2389,37409 -student(s1980).student2389,37409 -student(s1981).student2390,37425 -student(s1981).student2390,37425 -student(s1982).student2391,37441 -student(s1982).student2391,37441 -student(s1983).student2392,37457 -student(s1983).student2392,37457 -student(s1984).student2393,37473 -student(s1984).student2393,37473 -student(s1985).student2394,37489 -student(s1985).student2394,37489 -student(s1986).student2395,37505 -student(s1986).student2395,37505 -student(s1987).student2396,37521 -student(s1987).student2396,37521 -student(s1988).student2397,37537 -student(s1988).student2397,37537 -student(s1989).student2398,37553 -student(s1989).student2398,37553 -student(s1990).student2399,37569 -student(s1990).student2399,37569 -student(s1991).student2400,37585 -student(s1991).student2400,37585 -student(s1992).student2401,37601 -student(s1992).student2401,37601 -student(s1993).student2402,37617 -student(s1993).student2402,37617 -student(s1994).student2403,37633 -student(s1994).student2403,37633 -student(s1995).student2404,37649 -student(s1995).student2404,37649 -student(s1996).student2405,37665 -student(s1996).student2405,37665 -student(s1997).student2406,37681 -student(s1997).student2406,37681 -student(s1998).student2407,37697 -student(s1998).student2407,37697 -student(s1999).student2408,37713 -student(s1999).student2408,37713 -student(s2000).student2409,37729 -student(s2000).student2409,37729 -student(s2001).student2410,37745 -student(s2001).student2410,37745 -student(s2002).student2411,37761 -student(s2002).student2411,37761 -student(s2003).student2412,37777 -student(s2003).student2412,37777 -student(s2004).student2413,37793 -student(s2004).student2413,37793 -student(s2005).student2414,37809 -student(s2005).student2414,37809 -student(s2006).student2415,37825 -student(s2006).student2415,37825 -student(s2007).student2416,37841 -student(s2007).student2416,37841 -student(s2008).student2417,37857 -student(s2008).student2417,37857 -student(s2009).student2418,37873 -student(s2009).student2418,37873 -student(s2010).student2419,37889 -student(s2010).student2419,37889 -student(s2011).student2420,37905 -student(s2011).student2420,37905 -student(s2012).student2421,37921 -student(s2012).student2421,37921 -student(s2013).student2422,37937 -student(s2013).student2422,37937 -student(s2014).student2423,37953 -student(s2014).student2423,37953 -student(s2015).student2424,37969 -student(s2015).student2424,37969 -student(s2016).student2425,37985 -student(s2016).student2425,37985 -student(s2017).student2426,38001 -student(s2017).student2426,38001 -student(s2018).student2427,38017 -student(s2018).student2427,38017 -student(s2019).student2428,38033 -student(s2019).student2428,38033 -student(s2020).student2429,38049 -student(s2020).student2429,38049 -student(s2021).student2430,38065 -student(s2021).student2430,38065 -student(s2022).student2431,38081 -student(s2022).student2431,38081 -student(s2023).student2432,38097 -student(s2023).student2432,38097 -student(s2024).student2433,38113 -student(s2024).student2433,38113 -student(s2025).student2434,38129 -student(s2025).student2434,38129 -student(s2026).student2435,38145 -student(s2026).student2435,38145 -student(s2027).student2436,38161 -student(s2027).student2436,38161 -student(s2028).student2437,38177 -student(s2028).student2437,38177 -student(s2029).student2438,38193 -student(s2029).student2438,38193 -student(s2030).student2439,38209 -student(s2030).student2439,38209 -student(s2031).student2440,38225 -student(s2031).student2440,38225 -student(s2032).student2441,38241 -student(s2032).student2441,38241 -student(s2033).student2442,38257 -student(s2033).student2442,38257 -student(s2034).student2443,38273 -student(s2034).student2443,38273 -student(s2035).student2444,38289 -student(s2035).student2444,38289 -student(s2036).student2445,38305 -student(s2036).student2445,38305 -student(s2037).student2446,38321 -student(s2037).student2446,38321 -student(s2038).student2447,38337 -student(s2038).student2447,38337 -student(s2039).student2448,38353 -student(s2039).student2448,38353 -student(s2040).student2449,38369 -student(s2040).student2449,38369 -student(s2041).student2450,38385 -student(s2041).student2450,38385 -student(s2042).student2451,38401 -student(s2042).student2451,38401 -student(s2043).student2452,38417 -student(s2043).student2452,38417 -student(s2044).student2453,38433 -student(s2044).student2453,38433 -student(s2045).student2454,38449 -student(s2045).student2454,38449 -student(s2046).student2455,38465 -student(s2046).student2455,38465 -student(s2047).student2456,38481 -student(s2047).student2456,38481 -student(s2048).student2457,38497 -student(s2048).student2457,38497 -student(s2049).student2458,38513 -student(s2049).student2458,38513 -student(s2050).student2459,38529 -student(s2050).student2459,38529 -student(s2051).student2460,38545 -student(s2051).student2460,38545 -student(s2052).student2461,38561 -student(s2052).student2461,38561 -student(s2053).student2462,38577 -student(s2053).student2462,38577 -student(s2054).student2463,38593 -student(s2054).student2463,38593 -student(s2055).student2464,38609 -student(s2055).student2464,38609 -student(s2056).student2465,38625 -student(s2056).student2465,38625 -student(s2057).student2466,38641 -student(s2057).student2466,38641 -student(s2058).student2467,38657 -student(s2058).student2467,38657 -student(s2059).student2468,38673 -student(s2059).student2468,38673 -student(s2060).student2469,38689 -student(s2060).student2469,38689 -student(s2061).student2470,38705 -student(s2061).student2470,38705 -student(s2062).student2471,38721 -student(s2062).student2471,38721 -student(s2063).student2472,38737 -student(s2063).student2472,38737 -student(s2064).student2473,38753 -student(s2064).student2473,38753 -student(s2065).student2474,38769 -student(s2065).student2474,38769 -student(s2066).student2475,38785 -student(s2066).student2475,38785 -student(s2067).student2476,38801 -student(s2067).student2476,38801 -student(s2068).student2477,38817 -student(s2068).student2477,38817 -student(s2069).student2478,38833 -student(s2069).student2478,38833 -student(s2070).student2479,38849 -student(s2070).student2479,38849 -student(s2071).student2480,38865 -student(s2071).student2480,38865 -student(s2072).student2481,38881 -student(s2072).student2481,38881 -student(s2073).student2482,38897 -student(s2073).student2482,38897 -student(s2074).student2483,38913 -student(s2074).student2483,38913 -student(s2075).student2484,38929 -student(s2075).student2484,38929 -student(s2076).student2485,38945 -student(s2076).student2485,38945 -student(s2077).student2486,38961 -student(s2077).student2486,38961 -student(s2078).student2487,38977 -student(s2078).student2487,38977 -student(s2079).student2488,38993 -student(s2079).student2488,38993 -student(s2080).student2489,39009 -student(s2080).student2489,39009 -student(s2081).student2490,39025 -student(s2081).student2490,39025 -student(s2082).student2491,39041 -student(s2082).student2491,39041 -student(s2083).student2492,39057 -student(s2083).student2492,39057 -student(s2084).student2493,39073 -student(s2084).student2493,39073 -student(s2085).student2494,39089 -student(s2085).student2494,39089 -student(s2086).student2495,39105 -student(s2086).student2495,39105 -student(s2087).student2496,39121 -student(s2087).student2496,39121 -student(s2088).student2497,39137 -student(s2088).student2497,39137 -student(s2089).student2498,39153 -student(s2089).student2498,39153 -student(s2090).student2499,39169 -student(s2090).student2499,39169 -student(s2091).student2500,39185 -student(s2091).student2500,39185 -student(s2092).student2501,39201 -student(s2092).student2501,39201 -student(s2093).student2502,39217 -student(s2093).student2502,39217 -student(s2094).student2503,39233 -student(s2094).student2503,39233 -student(s2095).student2504,39249 -student(s2095).student2504,39249 -student(s2096).student2505,39265 -student(s2096).student2505,39265 -student(s2097).student2506,39281 -student(s2097).student2506,39281 -student(s2098).student2507,39297 -student(s2098).student2507,39297 -student(s2099).student2508,39313 -student(s2099).student2508,39313 -student(s2100).student2509,39329 -student(s2100).student2509,39329 -student(s2101).student2510,39345 -student(s2101).student2510,39345 -student(s2102).student2511,39361 -student(s2102).student2511,39361 -student(s2103).student2512,39377 -student(s2103).student2512,39377 -student(s2104).student2513,39393 -student(s2104).student2513,39393 -student(s2105).student2514,39409 -student(s2105).student2514,39409 -student(s2106).student2515,39425 -student(s2106).student2515,39425 -student(s2107).student2516,39441 -student(s2107).student2516,39441 -student(s2108).student2517,39457 -student(s2108).student2517,39457 -student(s2109).student2518,39473 -student(s2109).student2518,39473 -student(s2110).student2519,39489 -student(s2110).student2519,39489 -student(s2111).student2520,39505 -student(s2111).student2520,39505 -student(s2112).student2521,39521 -student(s2112).student2521,39521 -student(s2113).student2522,39537 -student(s2113).student2522,39537 -student(s2114).student2523,39553 -student(s2114).student2523,39553 -student(s2115).student2524,39569 -student(s2115).student2524,39569 -student(s2116).student2525,39585 -student(s2116).student2525,39585 -student(s2117).student2526,39601 -student(s2117).student2526,39601 -student(s2118).student2527,39617 -student(s2118).student2527,39617 -student(s2119).student2528,39633 -student(s2119).student2528,39633 -student(s2120).student2529,39649 -student(s2120).student2529,39649 -student(s2121).student2530,39665 -student(s2121).student2530,39665 -student(s2122).student2531,39681 -student(s2122).student2531,39681 -student(s2123).student2532,39697 -student(s2123).student2532,39697 -student(s2124).student2533,39713 -student(s2124).student2533,39713 -student(s2125).student2534,39729 -student(s2125).student2534,39729 -student(s2126).student2535,39745 -student(s2126).student2535,39745 -student(s2127).student2536,39761 -student(s2127).student2536,39761 -student(s2128).student2537,39777 -student(s2128).student2537,39777 -student(s2129).student2538,39793 -student(s2129).student2538,39793 -student(s2130).student2539,39809 -student(s2130).student2539,39809 -student(s2131).student2540,39825 -student(s2131).student2540,39825 -student(s2132).student2541,39841 -student(s2132).student2541,39841 -student(s2133).student2542,39857 -student(s2133).student2542,39857 -student(s2134).student2543,39873 -student(s2134).student2543,39873 -student(s2135).student2544,39889 -student(s2135).student2544,39889 -student(s2136).student2545,39905 -student(s2136).student2545,39905 -student(s2137).student2546,39921 -student(s2137).student2546,39921 -student(s2138).student2547,39937 -student(s2138).student2547,39937 -student(s2139).student2548,39953 -student(s2139).student2548,39953 -student(s2140).student2549,39969 -student(s2140).student2549,39969 -student(s2141).student2550,39985 -student(s2141).student2550,39985 -student(s2142).student2551,40001 -student(s2142).student2551,40001 -student(s2143).student2552,40017 -student(s2143).student2552,40017 -student(s2144).student2553,40033 -student(s2144).student2553,40033 -student(s2145).student2554,40049 -student(s2145).student2554,40049 -student(s2146).student2555,40065 -student(s2146).student2555,40065 -student(s2147).student2556,40081 -student(s2147).student2556,40081 -student(s2148).student2557,40097 -student(s2148).student2557,40097 -student(s2149).student2558,40113 -student(s2149).student2558,40113 -student(s2150).student2559,40129 -student(s2150).student2559,40129 -student(s2151).student2560,40145 -student(s2151).student2560,40145 -student(s2152).student2561,40161 -student(s2152).student2561,40161 -student(s2153).student2562,40177 -student(s2153).student2562,40177 -student(s2154).student2563,40193 -student(s2154).student2563,40193 -student(s2155).student2564,40209 -student(s2155).student2564,40209 -student(s2156).student2565,40225 -student(s2156).student2565,40225 -student(s2157).student2566,40241 -student(s2157).student2566,40241 -student(s2158).student2567,40257 -student(s2158).student2567,40257 -student(s2159).student2568,40273 -student(s2159).student2568,40273 -student(s2160).student2569,40289 -student(s2160).student2569,40289 -student(s2161).student2570,40305 -student(s2161).student2570,40305 -student(s2162).student2571,40321 -student(s2162).student2571,40321 -student(s2163).student2572,40337 -student(s2163).student2572,40337 -student(s2164).student2573,40353 -student(s2164).student2573,40353 -student(s2165).student2574,40369 -student(s2165).student2574,40369 -student(s2166).student2575,40385 -student(s2166).student2575,40385 -student(s2167).student2576,40401 -student(s2167).student2576,40401 -student(s2168).student2577,40417 -student(s2168).student2577,40417 -student(s2169).student2578,40433 -student(s2169).student2578,40433 -student(s2170).student2579,40449 -student(s2170).student2579,40449 -student(s2171).student2580,40465 -student(s2171).student2580,40465 -student(s2172).student2581,40481 -student(s2172).student2581,40481 -student(s2173).student2582,40497 -student(s2173).student2582,40497 -student(s2174).student2583,40513 -student(s2174).student2583,40513 -student(s2175).student2584,40529 -student(s2175).student2584,40529 -student(s2176).student2585,40545 -student(s2176).student2585,40545 -student(s2177).student2586,40561 -student(s2177).student2586,40561 -student(s2178).student2587,40577 -student(s2178).student2587,40577 -student(s2179).student2588,40593 -student(s2179).student2588,40593 -student(s2180).student2589,40609 -student(s2180).student2589,40609 -student(s2181).student2590,40625 -student(s2181).student2590,40625 -student(s2182).student2591,40641 -student(s2182).student2591,40641 -student(s2183).student2592,40657 -student(s2183).student2592,40657 -student(s2184).student2593,40673 -student(s2184).student2593,40673 -student(s2185).student2594,40689 -student(s2185).student2594,40689 -student(s2186).student2595,40705 -student(s2186).student2595,40705 -student(s2187).student2596,40721 -student(s2187).student2596,40721 -student(s2188).student2597,40737 -student(s2188).student2597,40737 -student(s2189).student2598,40753 -student(s2189).student2598,40753 -student(s2190).student2599,40769 -student(s2190).student2599,40769 -student(s2191).student2600,40785 -student(s2191).student2600,40785 -student(s2192).student2601,40801 -student(s2192).student2601,40801 -student(s2193).student2602,40817 -student(s2193).student2602,40817 -student(s2194).student2603,40833 -student(s2194).student2603,40833 -student(s2195).student2604,40849 -student(s2195).student2604,40849 -student(s2196).student2605,40865 -student(s2196).student2605,40865 -student(s2197).student2606,40881 -student(s2197).student2606,40881 -student(s2198).student2607,40897 -student(s2198).student2607,40897 -student(s2199).student2608,40913 -student(s2199).student2608,40913 -student(s2200).student2609,40929 -student(s2200).student2609,40929 -student(s2201).student2610,40945 -student(s2201).student2610,40945 -student(s2202).student2611,40961 -student(s2202).student2611,40961 -student(s2203).student2612,40977 -student(s2203).student2612,40977 -student(s2204).student2613,40993 -student(s2204).student2613,40993 -student(s2205).student2614,41009 -student(s2205).student2614,41009 -student(s2206).student2615,41025 -student(s2206).student2615,41025 -student(s2207).student2616,41041 -student(s2207).student2616,41041 -student(s2208).student2617,41057 -student(s2208).student2617,41057 -student(s2209).student2618,41073 -student(s2209).student2618,41073 -student(s2210).student2619,41089 -student(s2210).student2619,41089 -student(s2211).student2620,41105 -student(s2211).student2620,41105 -student(s2212).student2621,41121 -student(s2212).student2621,41121 -student(s2213).student2622,41137 -student(s2213).student2622,41137 -student(s2214).student2623,41153 -student(s2214).student2623,41153 -student(s2215).student2624,41169 -student(s2215).student2624,41169 -student(s2216).student2625,41185 -student(s2216).student2625,41185 -student(s2217).student2626,41201 -student(s2217).student2626,41201 -student(s2218).student2627,41217 -student(s2218).student2627,41217 -student(s2219).student2628,41233 -student(s2219).student2628,41233 -student(s2220).student2629,41249 -student(s2220).student2629,41249 -student(s2221).student2630,41265 -student(s2221).student2630,41265 -student(s2222).student2631,41281 -student(s2222).student2631,41281 -student(s2223).student2632,41297 -student(s2223).student2632,41297 -student(s2224).student2633,41313 -student(s2224).student2633,41313 -student(s2225).student2634,41329 -student(s2225).student2634,41329 -student(s2226).student2635,41345 -student(s2226).student2635,41345 -student(s2227).student2636,41361 -student(s2227).student2636,41361 -student(s2228).student2637,41377 -student(s2228).student2637,41377 -student(s2229).student2638,41393 -student(s2229).student2638,41393 -student(s2230).student2639,41409 -student(s2230).student2639,41409 -student(s2231).student2640,41425 -student(s2231).student2640,41425 -student(s2232).student2641,41441 -student(s2232).student2641,41441 -student(s2233).student2642,41457 -student(s2233).student2642,41457 -student(s2234).student2643,41473 -student(s2234).student2643,41473 -student(s2235).student2644,41489 -student(s2235).student2644,41489 -student(s2236).student2645,41505 -student(s2236).student2645,41505 -student(s2237).student2646,41521 -student(s2237).student2646,41521 -student(s2238).student2647,41537 -student(s2238).student2647,41537 -student(s2239).student2648,41553 -student(s2239).student2648,41553 -student(s2240).student2649,41569 -student(s2240).student2649,41569 -student(s2241).student2650,41585 -student(s2241).student2650,41585 -student(s2242).student2651,41601 -student(s2242).student2651,41601 -student(s2243).student2652,41617 -student(s2243).student2652,41617 -student(s2244).student2653,41633 -student(s2244).student2653,41633 -student(s2245).student2654,41649 -student(s2245).student2654,41649 -student(s2246).student2655,41665 -student(s2246).student2655,41665 -student(s2247).student2656,41681 -student(s2247).student2656,41681 -student(s2248).student2657,41697 -student(s2248).student2657,41697 -student(s2249).student2658,41713 -student(s2249).student2658,41713 -student(s2250).student2659,41729 -student(s2250).student2659,41729 -student(s2251).student2660,41745 -student(s2251).student2660,41745 -student(s2252).student2661,41761 -student(s2252).student2661,41761 -student(s2253).student2662,41777 -student(s2253).student2662,41777 -student(s2254).student2663,41793 -student(s2254).student2663,41793 -student(s2255).student2664,41809 -student(s2255).student2664,41809 -student(s2256).student2665,41825 -student(s2256).student2665,41825 -student(s2257).student2666,41841 -student(s2257).student2666,41841 -student(s2258).student2667,41857 -student(s2258).student2667,41857 -student(s2259).student2668,41873 -student(s2259).student2668,41873 -student(s2260).student2669,41889 -student(s2260).student2669,41889 -student(s2261).student2670,41905 -student(s2261).student2670,41905 -student(s2262).student2671,41921 -student(s2262).student2671,41921 -student(s2263).student2672,41937 -student(s2263).student2672,41937 -student(s2264).student2673,41953 -student(s2264).student2673,41953 -student(s2265).student2674,41969 -student(s2265).student2674,41969 -student(s2266).student2675,41985 -student(s2266).student2675,41985 -student(s2267).student2676,42001 -student(s2267).student2676,42001 -student(s2268).student2677,42017 -student(s2268).student2677,42017 -student(s2269).student2678,42033 -student(s2269).student2678,42033 -student(s2270).student2679,42049 -student(s2270).student2679,42049 -student(s2271).student2680,42065 -student(s2271).student2680,42065 -student(s2272).student2681,42081 -student(s2272).student2681,42081 -student(s2273).student2682,42097 -student(s2273).student2682,42097 -student(s2274).student2683,42113 -student(s2274).student2683,42113 -student(s2275).student2684,42129 -student(s2275).student2684,42129 -student(s2276).student2685,42145 -student(s2276).student2685,42145 -student(s2277).student2686,42161 -student(s2277).student2686,42161 -student(s2278).student2687,42177 -student(s2278).student2687,42177 -student(s2279).student2688,42193 -student(s2279).student2688,42193 -student(s2280).student2689,42209 -student(s2280).student2689,42209 -student(s2281).student2690,42225 -student(s2281).student2690,42225 -student(s2282).student2691,42241 -student(s2282).student2691,42241 -student(s2283).student2692,42257 -student(s2283).student2692,42257 -student(s2284).student2693,42273 -student(s2284).student2693,42273 -student(s2285).student2694,42289 -student(s2285).student2694,42289 -student(s2286).student2695,42305 -student(s2286).student2695,42305 -student(s2287).student2696,42321 -student(s2287).student2696,42321 -student(s2288).student2697,42337 -student(s2288).student2697,42337 -student(s2289).student2698,42353 -student(s2289).student2698,42353 -student(s2290).student2699,42369 -student(s2290).student2699,42369 -student(s2291).student2700,42385 -student(s2291).student2700,42385 -student(s2292).student2701,42401 -student(s2292).student2701,42401 -student(s2293).student2702,42417 -student(s2293).student2702,42417 -student(s2294).student2703,42433 -student(s2294).student2703,42433 -student(s2295).student2704,42449 -student(s2295).student2704,42449 -student(s2296).student2705,42465 -student(s2296).student2705,42465 -student(s2297).student2706,42481 -student(s2297).student2706,42481 -student(s2298).student2707,42497 -student(s2298).student2707,42497 -student(s2299).student2708,42513 -student(s2299).student2708,42513 -student(s2300).student2709,42529 -student(s2300).student2709,42529 -student(s2301).student2710,42545 -student(s2301).student2710,42545 -student(s2302).student2711,42561 -student(s2302).student2711,42561 -student(s2303).student2712,42577 -student(s2303).student2712,42577 -student(s2304).student2713,42593 -student(s2304).student2713,42593 -student(s2305).student2714,42609 -student(s2305).student2714,42609 -student(s2306).student2715,42625 -student(s2306).student2715,42625 -student(s2307).student2716,42641 -student(s2307).student2716,42641 -student(s2308).student2717,42657 -student(s2308).student2717,42657 -student(s2309).student2718,42673 -student(s2309).student2718,42673 -student(s2310).student2719,42689 -student(s2310).student2719,42689 -student(s2311).student2720,42705 -student(s2311).student2720,42705 -student(s2312).student2721,42721 -student(s2312).student2721,42721 -student(s2313).student2722,42737 -student(s2313).student2722,42737 -student(s2314).student2723,42753 -student(s2314).student2723,42753 -student(s2315).student2724,42769 -student(s2315).student2724,42769 -student(s2316).student2725,42785 -student(s2316).student2725,42785 -student(s2317).student2726,42801 -student(s2317).student2726,42801 -student(s2318).student2727,42817 -student(s2318).student2727,42817 -student(s2319).student2728,42833 -student(s2319).student2728,42833 -student(s2320).student2729,42849 -student(s2320).student2729,42849 -student(s2321).student2730,42865 -student(s2321).student2730,42865 -student(s2322).student2731,42881 -student(s2322).student2731,42881 -student(s2323).student2732,42897 -student(s2323).student2732,42897 -student(s2324).student2733,42913 -student(s2324).student2733,42913 -student(s2325).student2734,42929 -student(s2325).student2734,42929 -student(s2326).student2735,42945 -student(s2326).student2735,42945 -student(s2327).student2736,42961 -student(s2327).student2736,42961 -student(s2328).student2737,42977 -student(s2328).student2737,42977 -student(s2329).student2738,42993 -student(s2329).student2738,42993 -student(s2330).student2739,43009 -student(s2330).student2739,43009 -student(s2331).student2740,43025 -student(s2331).student2740,43025 -student(s2332).student2741,43041 -student(s2332).student2741,43041 -student(s2333).student2742,43057 -student(s2333).student2742,43057 -student(s2334).student2743,43073 -student(s2334).student2743,43073 -student(s2335).student2744,43089 -student(s2335).student2744,43089 -student(s2336).student2745,43105 -student(s2336).student2745,43105 -student(s2337).student2746,43121 -student(s2337).student2746,43121 -student(s2338).student2747,43137 -student(s2338).student2747,43137 -student(s2339).student2748,43153 -student(s2339).student2748,43153 -student(s2340).student2749,43169 -student(s2340).student2749,43169 -student(s2341).student2750,43185 -student(s2341).student2750,43185 -student(s2342).student2751,43201 -student(s2342).student2751,43201 -student(s2343).student2752,43217 -student(s2343).student2752,43217 -student(s2344).student2753,43233 -student(s2344).student2753,43233 -student(s2345).student2754,43249 -student(s2345).student2754,43249 -student(s2346).student2755,43265 -student(s2346).student2755,43265 -student(s2347).student2756,43281 -student(s2347).student2756,43281 -student(s2348).student2757,43297 -student(s2348).student2757,43297 -student(s2349).student2758,43313 -student(s2349).student2758,43313 -student(s2350).student2759,43329 -student(s2350).student2759,43329 -student(s2351).student2760,43345 -student(s2351).student2760,43345 -student(s2352).student2761,43361 -student(s2352).student2761,43361 -student(s2353).student2762,43377 -student(s2353).student2762,43377 -student(s2354).student2763,43393 -student(s2354).student2763,43393 -student(s2355).student2764,43409 -student(s2355).student2764,43409 -student(s2356).student2765,43425 -student(s2356).student2765,43425 -student(s2357).student2766,43441 -student(s2357).student2766,43441 -student(s2358).student2767,43457 -student(s2358).student2767,43457 -student(s2359).student2768,43473 -student(s2359).student2768,43473 -student(s2360).student2769,43489 -student(s2360).student2769,43489 -student(s2361).student2770,43505 -student(s2361).student2770,43505 -student(s2362).student2771,43521 -student(s2362).student2771,43521 -student(s2363).student2772,43537 -student(s2363).student2772,43537 -student(s2364).student2773,43553 -student(s2364).student2773,43553 -student(s2365).student2774,43569 -student(s2365).student2774,43569 -student(s2366).student2775,43585 -student(s2366).student2775,43585 -student(s2367).student2776,43601 -student(s2367).student2776,43601 -student(s2368).student2777,43617 -student(s2368).student2777,43617 -student(s2369).student2778,43633 -student(s2369).student2778,43633 -student(s2370).student2779,43649 -student(s2370).student2779,43649 -student(s2371).student2780,43665 -student(s2371).student2780,43665 -student(s2372).student2781,43681 -student(s2372).student2781,43681 -student(s2373).student2782,43697 -student(s2373).student2782,43697 -student(s2374).student2783,43713 -student(s2374).student2783,43713 -student(s2375).student2784,43729 -student(s2375).student2784,43729 -student(s2376).student2785,43745 -student(s2376).student2785,43745 -student(s2377).student2786,43761 -student(s2377).student2786,43761 -student(s2378).student2787,43777 -student(s2378).student2787,43777 -student(s2379).student2788,43793 -student(s2379).student2788,43793 -student(s2380).student2789,43809 -student(s2380).student2789,43809 -student(s2381).student2790,43825 -student(s2381).student2790,43825 -student(s2382).student2791,43841 -student(s2382).student2791,43841 -student(s2383).student2792,43857 -student(s2383).student2792,43857 -student(s2384).student2793,43873 -student(s2384).student2793,43873 -student(s2385).student2794,43889 -student(s2385).student2794,43889 -student(s2386).student2795,43905 -student(s2386).student2795,43905 -student(s2387).student2796,43921 -student(s2387).student2796,43921 -student(s2388).student2797,43937 -student(s2388).student2797,43937 -student(s2389).student2798,43953 -student(s2389).student2798,43953 -student(s2390).student2799,43969 -student(s2390).student2799,43969 -student(s2391).student2800,43985 -student(s2391).student2800,43985 -student(s2392).student2801,44001 -student(s2392).student2801,44001 -student(s2393).student2802,44017 -student(s2393).student2802,44017 -student(s2394).student2803,44033 -student(s2394).student2803,44033 -student(s2395).student2804,44049 -student(s2395).student2804,44049 -student(s2396).student2805,44065 -student(s2396).student2805,44065 -student(s2397).student2806,44081 -student(s2397).student2806,44081 -student(s2398).student2807,44097 -student(s2398).student2807,44097 -student(s2399).student2808,44113 -student(s2399).student2808,44113 -student(s2400).student2809,44129 -student(s2400).student2809,44129 -student(s2401).student2810,44145 -student(s2401).student2810,44145 -student(s2402).student2811,44161 -student(s2402).student2811,44161 -student(s2403).student2812,44177 -student(s2403).student2812,44177 -student(s2404).student2813,44193 -student(s2404).student2813,44193 -student(s2405).student2814,44209 -student(s2405).student2814,44209 -student(s2406).student2815,44225 -student(s2406).student2815,44225 -student(s2407).student2816,44241 -student(s2407).student2816,44241 -student(s2408).student2817,44257 -student(s2408).student2817,44257 -student(s2409).student2818,44273 -student(s2409).student2818,44273 -student(s2410).student2819,44289 -student(s2410).student2819,44289 -student(s2411).student2820,44305 -student(s2411).student2820,44305 -student(s2412).student2821,44321 -student(s2412).student2821,44321 -student(s2413).student2822,44337 -student(s2413).student2822,44337 -student(s2414).student2823,44353 -student(s2414).student2823,44353 -student(s2415).student2824,44369 -student(s2415).student2824,44369 -student(s2416).student2825,44385 -student(s2416).student2825,44385 -student(s2417).student2826,44401 -student(s2417).student2826,44401 -student(s2418).student2827,44417 -student(s2418).student2827,44417 -student(s2419).student2828,44433 -student(s2419).student2828,44433 -student(s2420).student2829,44449 -student(s2420).student2829,44449 -student(s2421).student2830,44465 -student(s2421).student2830,44465 -student(s2422).student2831,44481 -student(s2422).student2831,44481 -student(s2423).student2832,44497 -student(s2423).student2832,44497 -student(s2424).student2833,44513 -student(s2424).student2833,44513 -student(s2425).student2834,44529 -student(s2425).student2834,44529 -student(s2426).student2835,44545 -student(s2426).student2835,44545 -student(s2427).student2836,44561 -student(s2427).student2836,44561 -student(s2428).student2837,44577 -student(s2428).student2837,44577 -student(s2429).student2838,44593 -student(s2429).student2838,44593 -student(s2430).student2839,44609 -student(s2430).student2839,44609 -student(s2431).student2840,44625 -student(s2431).student2840,44625 -student(s2432).student2841,44641 -student(s2432).student2841,44641 -student(s2433).student2842,44657 -student(s2433).student2842,44657 -student(s2434).student2843,44673 -student(s2434).student2843,44673 -student(s2435).student2844,44689 -student(s2435).student2844,44689 -student(s2436).student2845,44705 -student(s2436).student2845,44705 -student(s2437).student2846,44721 -student(s2437).student2846,44721 -student(s2438).student2847,44737 -student(s2438).student2847,44737 -student(s2439).student2848,44753 -student(s2439).student2848,44753 -student(s2440).student2849,44769 -student(s2440).student2849,44769 -student(s2441).student2850,44785 -student(s2441).student2850,44785 -student(s2442).student2851,44801 -student(s2442).student2851,44801 -student(s2443).student2852,44817 -student(s2443).student2852,44817 -student(s2444).student2853,44833 -student(s2444).student2853,44833 -student(s2445).student2854,44849 -student(s2445).student2854,44849 -student(s2446).student2855,44865 -student(s2446).student2855,44865 -student(s2447).student2856,44881 -student(s2447).student2856,44881 -student(s2448).student2857,44897 -student(s2448).student2857,44897 -student(s2449).student2858,44913 -student(s2449).student2858,44913 -student(s2450).student2859,44929 -student(s2450).student2859,44929 -student(s2451).student2860,44945 -student(s2451).student2860,44945 -student(s2452).student2861,44961 -student(s2452).student2861,44961 -student(s2453).student2862,44977 -student(s2453).student2862,44977 -student(s2454).student2863,44993 -student(s2454).student2863,44993 -student(s2455).student2864,45009 -student(s2455).student2864,45009 -student(s2456).student2865,45025 -student(s2456).student2865,45025 -student(s2457).student2866,45041 -student(s2457).student2866,45041 -student(s2458).student2867,45057 -student(s2458).student2867,45057 -student(s2459).student2868,45073 -student(s2459).student2868,45073 -student(s2460).student2869,45089 -student(s2460).student2869,45089 -student(s2461).student2870,45105 -student(s2461).student2870,45105 -student(s2462).student2871,45121 -student(s2462).student2871,45121 -student(s2463).student2872,45137 -student(s2463).student2872,45137 -student(s2464).student2873,45153 -student(s2464).student2873,45153 -student(s2465).student2874,45169 -student(s2465).student2874,45169 -student(s2466).student2875,45185 -student(s2466).student2875,45185 -student(s2467).student2876,45201 -student(s2467).student2876,45201 -student(s2468).student2877,45217 -student(s2468).student2877,45217 -student(s2469).student2878,45233 -student(s2469).student2878,45233 -student(s2470).student2879,45249 -student(s2470).student2879,45249 -student(s2471).student2880,45265 -student(s2471).student2880,45265 -student(s2472).student2881,45281 -student(s2472).student2881,45281 -student(s2473).student2882,45297 -student(s2473).student2882,45297 -student(s2474).student2883,45313 -student(s2474).student2883,45313 -student(s2475).student2884,45329 -student(s2475).student2884,45329 -student(s2476).student2885,45345 -student(s2476).student2885,45345 -student(s2477).student2886,45361 -student(s2477).student2886,45361 -student(s2478).student2887,45377 -student(s2478).student2887,45377 -student(s2479).student2888,45393 -student(s2479).student2888,45393 -student(s2480).student2889,45409 -student(s2480).student2889,45409 -student(s2481).student2890,45425 -student(s2481).student2890,45425 -student(s2482).student2891,45441 -student(s2482).student2891,45441 -student(s2483).student2892,45457 -student(s2483).student2892,45457 -student(s2484).student2893,45473 -student(s2484).student2893,45473 -student(s2485).student2894,45489 -student(s2485).student2894,45489 -student(s2486).student2895,45505 -student(s2486).student2895,45505 -student(s2487).student2896,45521 -student(s2487).student2896,45521 -student(s2488).student2897,45537 -student(s2488).student2897,45537 -student(s2489).student2898,45553 -student(s2489).student2898,45553 -student(s2490).student2899,45569 -student(s2490).student2899,45569 -student(s2491).student2900,45585 -student(s2491).student2900,45585 -student(s2492).student2901,45601 -student(s2492).student2901,45601 -student(s2493).student2902,45617 -student(s2493).student2902,45617 -student(s2494).student2903,45633 -student(s2494).student2903,45633 -student(s2495).student2904,45649 -student(s2495).student2904,45649 -student(s2496).student2905,45665 -student(s2496).student2905,45665 -student(s2497).student2906,45681 -student(s2497).student2906,45681 -student(s2498).student2907,45697 -student(s2498).student2907,45697 -student(s2499).student2908,45713 -student(s2499).student2908,45713 -student(s2500).student2909,45729 -student(s2500).student2909,45729 -student(s2501).student2910,45745 -student(s2501).student2910,45745 -student(s2502).student2911,45761 -student(s2502).student2911,45761 -student(s2503).student2912,45777 -student(s2503).student2912,45777 -student(s2504).student2913,45793 -student(s2504).student2913,45793 -student(s2505).student2914,45809 -student(s2505).student2914,45809 -student(s2506).student2915,45825 -student(s2506).student2915,45825 -student(s2507).student2916,45841 -student(s2507).student2916,45841 -student(s2508).student2917,45857 -student(s2508).student2917,45857 -student(s2509).student2918,45873 -student(s2509).student2918,45873 -student(s2510).student2919,45889 -student(s2510).student2919,45889 -student(s2511).student2920,45905 -student(s2511).student2920,45905 -student(s2512).student2921,45921 -student(s2512).student2921,45921 -student(s2513).student2922,45937 -student(s2513).student2922,45937 -student(s2514).student2923,45953 -student(s2514).student2923,45953 -student(s2515).student2924,45969 -student(s2515).student2924,45969 -student(s2516).student2925,45985 -student(s2516).student2925,45985 -student(s2517).student2926,46001 -student(s2517).student2926,46001 -student(s2518).student2927,46017 -student(s2518).student2927,46017 -student(s2519).student2928,46033 -student(s2519).student2928,46033 -student(s2520).student2929,46049 -student(s2520).student2929,46049 -student(s2521).student2930,46065 -student(s2521).student2930,46065 -student(s2522).student2931,46081 -student(s2522).student2931,46081 -student(s2523).student2932,46097 -student(s2523).student2932,46097 -student(s2524).student2933,46113 -student(s2524).student2933,46113 -student(s2525).student2934,46129 -student(s2525).student2934,46129 -student(s2526).student2935,46145 -student(s2526).student2935,46145 -student(s2527).student2936,46161 -student(s2527).student2936,46161 -student(s2528).student2937,46177 -student(s2528).student2937,46177 -student(s2529).student2938,46193 -student(s2529).student2938,46193 -student(s2530).student2939,46209 -student(s2530).student2939,46209 -student(s2531).student2940,46225 -student(s2531).student2940,46225 -student(s2532).student2941,46241 -student(s2532).student2941,46241 -student(s2533).student2942,46257 -student(s2533).student2942,46257 -student(s2534).student2943,46273 -student(s2534).student2943,46273 -student(s2535).student2944,46289 -student(s2535).student2944,46289 -student(s2536).student2945,46305 -student(s2536).student2945,46305 -student(s2537).student2946,46321 -student(s2537).student2946,46321 -student(s2538).student2947,46337 -student(s2538).student2947,46337 -student(s2539).student2948,46353 -student(s2539).student2948,46353 -student(s2540).student2949,46369 -student(s2540).student2949,46369 -student(s2541).student2950,46385 -student(s2541).student2950,46385 -student(s2542).student2951,46401 -student(s2542).student2951,46401 -student(s2543).student2952,46417 -student(s2543).student2952,46417 -student(s2544).student2953,46433 -student(s2544).student2953,46433 -student(s2545).student2954,46449 -student(s2545).student2954,46449 -student(s2546).student2955,46465 -student(s2546).student2955,46465 -student(s2547).student2956,46481 -student(s2547).student2956,46481 -student(s2548).student2957,46497 -student(s2548).student2957,46497 -student(s2549).student2958,46513 -student(s2549).student2958,46513 -student(s2550).student2959,46529 -student(s2550).student2959,46529 -student(s2551).student2960,46545 -student(s2551).student2960,46545 -student(s2552).student2961,46561 -student(s2552).student2961,46561 -student(s2553).student2962,46577 -student(s2553).student2962,46577 -student(s2554).student2963,46593 -student(s2554).student2963,46593 -student(s2555).student2964,46609 -student(s2555).student2964,46609 -student(s2556).student2965,46625 -student(s2556).student2965,46625 -student(s2557).student2966,46641 -student(s2557).student2966,46641 -student(s2558).student2967,46657 -student(s2558).student2967,46657 -student(s2559).student2968,46673 -student(s2559).student2968,46673 -student(s2560).student2969,46689 -student(s2560).student2969,46689 -student(s2561).student2970,46705 -student(s2561).student2970,46705 -student(s2562).student2971,46721 -student(s2562).student2971,46721 -student(s2563).student2972,46737 -student(s2563).student2972,46737 -student(s2564).student2973,46753 -student(s2564).student2973,46753 -student(s2565).student2974,46769 -student(s2565).student2974,46769 -student(s2566).student2975,46785 -student(s2566).student2975,46785 -student(s2567).student2976,46801 -student(s2567).student2976,46801 -student(s2568).student2977,46817 -student(s2568).student2977,46817 -student(s2569).student2978,46833 -student(s2569).student2978,46833 -student(s2570).student2979,46849 -student(s2570).student2979,46849 -student(s2571).student2980,46865 -student(s2571).student2980,46865 -student(s2572).student2981,46881 -student(s2572).student2981,46881 -student(s2573).student2982,46897 -student(s2573).student2982,46897 -student(s2574).student2983,46913 -student(s2574).student2983,46913 -student(s2575).student2984,46929 -student(s2575).student2984,46929 -student(s2576).student2985,46945 -student(s2576).student2985,46945 -student(s2577).student2986,46961 -student(s2577).student2986,46961 -student(s2578).student2987,46977 -student(s2578).student2987,46977 -student(s2579).student2988,46993 -student(s2579).student2988,46993 -student(s2580).student2989,47009 -student(s2580).student2989,47009 -student(s2581).student2990,47025 -student(s2581).student2990,47025 -student(s2582).student2991,47041 -student(s2582).student2991,47041 -student(s2583).student2992,47057 -student(s2583).student2992,47057 -student(s2584).student2993,47073 -student(s2584).student2993,47073 -student(s2585).student2994,47089 -student(s2585).student2994,47089 -student(s2586).student2995,47105 -student(s2586).student2995,47105 -student(s2587).student2996,47121 -student(s2587).student2996,47121 -student(s2588).student2997,47137 -student(s2588).student2997,47137 -student(s2589).student2998,47153 -student(s2589).student2998,47153 -student(s2590).student2999,47169 -student(s2590).student2999,47169 -student(s2591).student3000,47185 -student(s2591).student3000,47185 -student(s2592).student3001,47201 -student(s2592).student3001,47201 -student(s2593).student3002,47217 -student(s2593).student3002,47217 -student(s2594).student3003,47233 -student(s2594).student3003,47233 -student(s2595).student3004,47249 -student(s2595).student3004,47249 -student(s2596).student3005,47265 -student(s2596).student3005,47265 -student(s2597).student3006,47281 -student(s2597).student3006,47281 -student(s2598).student3007,47297 -student(s2598).student3007,47297 -student(s2599).student3008,47313 -student(s2599).student3008,47313 -student(s2600).student3009,47329 -student(s2600).student3009,47329 -student(s2601).student3010,47345 -student(s2601).student3010,47345 -student(s2602).student3011,47361 -student(s2602).student3011,47361 -student(s2603).student3012,47377 -student(s2603).student3012,47377 -student(s2604).student3013,47393 -student(s2604).student3013,47393 -student(s2605).student3014,47409 -student(s2605).student3014,47409 -student(s2606).student3015,47425 -student(s2606).student3015,47425 -student(s2607).student3016,47441 -student(s2607).student3016,47441 -student(s2608).student3017,47457 -student(s2608).student3017,47457 -student(s2609).student3018,47473 -student(s2609).student3018,47473 -student(s2610).student3019,47489 -student(s2610).student3019,47489 -student(s2611).student3020,47505 -student(s2611).student3020,47505 -student(s2612).student3021,47521 -student(s2612).student3021,47521 -student(s2613).student3022,47537 -student(s2613).student3022,47537 -student(s2614).student3023,47553 -student(s2614).student3023,47553 -student(s2615).student3024,47569 -student(s2615).student3024,47569 -student(s2616).student3025,47585 -student(s2616).student3025,47585 -student(s2617).student3026,47601 -student(s2617).student3026,47601 -student(s2618).student3027,47617 -student(s2618).student3027,47617 -student(s2619).student3028,47633 -student(s2619).student3028,47633 -student(s2620).student3029,47649 -student(s2620).student3029,47649 -student(s2621).student3030,47665 -student(s2621).student3030,47665 -student(s2622).student3031,47681 -student(s2622).student3031,47681 -student(s2623).student3032,47697 -student(s2623).student3032,47697 -student(s2624).student3033,47713 -student(s2624).student3033,47713 -student(s2625).student3034,47729 -student(s2625).student3034,47729 -student(s2626).student3035,47745 -student(s2626).student3035,47745 -student(s2627).student3036,47761 -student(s2627).student3036,47761 -student(s2628).student3037,47777 -student(s2628).student3037,47777 -student(s2629).student3038,47793 -student(s2629).student3038,47793 -student(s2630).student3039,47809 -student(s2630).student3039,47809 -student(s2631).student3040,47825 -student(s2631).student3040,47825 -student(s2632).student3041,47841 -student(s2632).student3041,47841 -student(s2633).student3042,47857 -student(s2633).student3042,47857 -student(s2634).student3043,47873 -student(s2634).student3043,47873 -student(s2635).student3044,47889 -student(s2635).student3044,47889 -student(s2636).student3045,47905 -student(s2636).student3045,47905 -student(s2637).student3046,47921 -student(s2637).student3046,47921 -student(s2638).student3047,47937 -student(s2638).student3047,47937 -student(s2639).student3048,47953 -student(s2639).student3048,47953 -student(s2640).student3049,47969 -student(s2640).student3049,47969 -student(s2641).student3050,47985 -student(s2641).student3050,47985 -student(s2642).student3051,48001 -student(s2642).student3051,48001 -student(s2643).student3052,48017 -student(s2643).student3052,48017 -student(s2644).student3053,48033 -student(s2644).student3053,48033 -student(s2645).student3054,48049 -student(s2645).student3054,48049 -student(s2646).student3055,48065 -student(s2646).student3055,48065 -student(s2647).student3056,48081 -student(s2647).student3056,48081 -student(s2648).student3057,48097 -student(s2648).student3057,48097 -student(s2649).student3058,48113 -student(s2649).student3058,48113 -student(s2650).student3059,48129 -student(s2650).student3059,48129 -student(s2651).student3060,48145 -student(s2651).student3060,48145 -student(s2652).student3061,48161 -student(s2652).student3061,48161 -student(s2653).student3062,48177 -student(s2653).student3062,48177 -student(s2654).student3063,48193 -student(s2654).student3063,48193 -student(s2655).student3064,48209 -student(s2655).student3064,48209 -student(s2656).student3065,48225 -student(s2656).student3065,48225 -student(s2657).student3066,48241 -student(s2657).student3066,48241 -student(s2658).student3067,48257 -student(s2658).student3067,48257 -student(s2659).student3068,48273 -student(s2659).student3068,48273 -student(s2660).student3069,48289 -student(s2660).student3069,48289 -student(s2661).student3070,48305 -student(s2661).student3070,48305 -student(s2662).student3071,48321 -student(s2662).student3071,48321 -student(s2663).student3072,48337 -student(s2663).student3072,48337 -student(s2664).student3073,48353 -student(s2664).student3073,48353 -student(s2665).student3074,48369 -student(s2665).student3074,48369 -student(s2666).student3075,48385 -student(s2666).student3075,48385 -student(s2667).student3076,48401 -student(s2667).student3076,48401 -student(s2668).student3077,48417 -student(s2668).student3077,48417 -student(s2669).student3078,48433 -student(s2669).student3078,48433 -student(s2670).student3079,48449 -student(s2670).student3079,48449 -student(s2671).student3080,48465 -student(s2671).student3080,48465 -student(s2672).student3081,48481 -student(s2672).student3081,48481 -student(s2673).student3082,48497 -student(s2673).student3082,48497 -student(s2674).student3083,48513 -student(s2674).student3083,48513 -student(s2675).student3084,48529 -student(s2675).student3084,48529 -student(s2676).student3085,48545 -student(s2676).student3085,48545 -student(s2677).student3086,48561 -student(s2677).student3086,48561 -student(s2678).student3087,48577 -student(s2678).student3087,48577 -student(s2679).student3088,48593 -student(s2679).student3088,48593 -student(s2680).student3089,48609 -student(s2680).student3089,48609 -student(s2681).student3090,48625 -student(s2681).student3090,48625 -student(s2682).student3091,48641 -student(s2682).student3091,48641 -student(s2683).student3092,48657 -student(s2683).student3092,48657 -student(s2684).student3093,48673 -student(s2684).student3093,48673 -student(s2685).student3094,48689 -student(s2685).student3094,48689 -student(s2686).student3095,48705 -student(s2686).student3095,48705 -student(s2687).student3096,48721 -student(s2687).student3096,48721 -student(s2688).student3097,48737 -student(s2688).student3097,48737 -student(s2689).student3098,48753 -student(s2689).student3098,48753 -student(s2690).student3099,48769 -student(s2690).student3099,48769 -student(s2691).student3100,48785 -student(s2691).student3100,48785 -student(s2692).student3101,48801 -student(s2692).student3101,48801 -student(s2693).student3102,48817 -student(s2693).student3102,48817 -student(s2694).student3103,48833 -student(s2694).student3103,48833 -student(s2695).student3104,48849 -student(s2695).student3104,48849 -student(s2696).student3105,48865 -student(s2696).student3105,48865 -student(s2697).student3106,48881 -student(s2697).student3106,48881 -student(s2698).student3107,48897 -student(s2698).student3107,48897 -student(s2699).student3108,48913 -student(s2699).student3108,48913 -student(s2700).student3109,48929 -student(s2700).student3109,48929 -student(s2701).student3110,48945 -student(s2701).student3110,48945 -student(s2702).student3111,48961 -student(s2702).student3111,48961 -student(s2703).student3112,48977 -student(s2703).student3112,48977 -student(s2704).student3113,48993 -student(s2704).student3113,48993 -student(s2705).student3114,49009 -student(s2705).student3114,49009 -student(s2706).student3115,49025 -student(s2706).student3115,49025 -student(s2707).student3116,49041 -student(s2707).student3116,49041 -student(s2708).student3117,49057 -student(s2708).student3117,49057 -student(s2709).student3118,49073 -student(s2709).student3118,49073 -student(s2710).student3119,49089 -student(s2710).student3119,49089 -student(s2711).student3120,49105 -student(s2711).student3120,49105 -student(s2712).student3121,49121 -student(s2712).student3121,49121 -student(s2713).student3122,49137 -student(s2713).student3122,49137 -student(s2714).student3123,49153 -student(s2714).student3123,49153 -student(s2715).student3124,49169 -student(s2715).student3124,49169 -student(s2716).student3125,49185 -student(s2716).student3125,49185 -student(s2717).student3126,49201 -student(s2717).student3126,49201 -student(s2718).student3127,49217 -student(s2718).student3127,49217 -student(s2719).student3128,49233 -student(s2719).student3128,49233 -student(s2720).student3129,49249 -student(s2720).student3129,49249 -student(s2721).student3130,49265 -student(s2721).student3130,49265 -student(s2722).student3131,49281 -student(s2722).student3131,49281 -student(s2723).student3132,49297 -student(s2723).student3132,49297 -student(s2724).student3133,49313 -student(s2724).student3133,49313 -student(s2725).student3134,49329 -student(s2725).student3134,49329 -student(s2726).student3135,49345 -student(s2726).student3135,49345 -student(s2727).student3136,49361 -student(s2727).student3136,49361 -student(s2728).student3137,49377 -student(s2728).student3137,49377 -student(s2729).student3138,49393 -student(s2729).student3138,49393 -student(s2730).student3139,49409 -student(s2730).student3139,49409 -student(s2731).student3140,49425 -student(s2731).student3140,49425 -student(s2732).student3141,49441 -student(s2732).student3141,49441 -student(s2733).student3142,49457 -student(s2733).student3142,49457 -student(s2734).student3143,49473 -student(s2734).student3143,49473 -student(s2735).student3144,49489 -student(s2735).student3144,49489 -student(s2736).student3145,49505 -student(s2736).student3145,49505 -student(s2737).student3146,49521 -student(s2737).student3146,49521 -student(s2738).student3147,49537 -student(s2738).student3147,49537 -student(s2739).student3148,49553 -student(s2739).student3148,49553 -student(s2740).student3149,49569 -student(s2740).student3149,49569 -student(s2741).student3150,49585 -student(s2741).student3150,49585 -student(s2742).student3151,49601 -student(s2742).student3151,49601 -student(s2743).student3152,49617 -student(s2743).student3152,49617 -student(s2744).student3153,49633 -student(s2744).student3153,49633 -student(s2745).student3154,49649 -student(s2745).student3154,49649 -student(s2746).student3155,49665 -student(s2746).student3155,49665 -student(s2747).student3156,49681 -student(s2747).student3156,49681 -student(s2748).student3157,49697 -student(s2748).student3157,49697 -student(s2749).student3158,49713 -student(s2749).student3158,49713 -student(s2750).student3159,49729 -student(s2750).student3159,49729 -student(s2751).student3160,49745 -student(s2751).student3160,49745 -student(s2752).student3161,49761 -student(s2752).student3161,49761 -student(s2753).student3162,49777 -student(s2753).student3162,49777 -student(s2754).student3163,49793 -student(s2754).student3163,49793 -student(s2755).student3164,49809 -student(s2755).student3164,49809 -student(s2756).student3165,49825 -student(s2756).student3165,49825 -student(s2757).student3166,49841 -student(s2757).student3166,49841 -student(s2758).student3167,49857 -student(s2758).student3167,49857 -student(s2759).student3168,49873 -student(s2759).student3168,49873 -student(s2760).student3169,49889 -student(s2760).student3169,49889 -student(s2761).student3170,49905 -student(s2761).student3170,49905 -student(s2762).student3171,49921 -student(s2762).student3171,49921 -student(s2763).student3172,49937 -student(s2763).student3172,49937 -student(s2764).student3173,49953 -student(s2764).student3173,49953 -student(s2765).student3174,49969 -student(s2765).student3174,49969 -student(s2766).student3175,49985 -student(s2766).student3175,49985 -student(s2767).student3176,50001 -student(s2767).student3176,50001 -student(s2768).student3177,50017 -student(s2768).student3177,50017 -student(s2769).student3178,50033 -student(s2769).student3178,50033 -student(s2770).student3179,50049 -student(s2770).student3179,50049 -student(s2771).student3180,50065 -student(s2771).student3180,50065 -student(s2772).student3181,50081 -student(s2772).student3181,50081 -student(s2773).student3182,50097 -student(s2773).student3182,50097 -student(s2774).student3183,50113 -student(s2774).student3183,50113 -student(s2775).student3184,50129 -student(s2775).student3184,50129 -student(s2776).student3185,50145 -student(s2776).student3185,50145 -student(s2777).student3186,50161 -student(s2777).student3186,50161 -student(s2778).student3187,50177 -student(s2778).student3187,50177 -student(s2779).student3188,50193 -student(s2779).student3188,50193 -student(s2780).student3189,50209 -student(s2780).student3189,50209 -student(s2781).student3190,50225 -student(s2781).student3190,50225 -student(s2782).student3191,50241 -student(s2782).student3191,50241 -student(s2783).student3192,50257 -student(s2783).student3192,50257 -student(s2784).student3193,50273 -student(s2784).student3193,50273 -student(s2785).student3194,50289 -student(s2785).student3194,50289 -student(s2786).student3195,50305 -student(s2786).student3195,50305 -student(s2787).student3196,50321 -student(s2787).student3196,50321 -student(s2788).student3197,50337 -student(s2788).student3197,50337 -student(s2789).student3198,50353 -student(s2789).student3198,50353 -student(s2790).student3199,50369 -student(s2790).student3199,50369 -student(s2791).student3200,50385 -student(s2791).student3200,50385 -student(s2792).student3201,50401 -student(s2792).student3201,50401 -student(s2793).student3202,50417 -student(s2793).student3202,50417 -student(s2794).student3203,50433 -student(s2794).student3203,50433 -student(s2795).student3204,50449 -student(s2795).student3204,50449 -student(s2796).student3205,50465 -student(s2796).student3205,50465 -student(s2797).student3206,50481 -student(s2797).student3206,50481 -student(s2798).student3207,50497 -student(s2798).student3207,50497 -student(s2799).student3208,50513 -student(s2799).student3208,50513 -student(s2800).student3209,50529 -student(s2800).student3209,50529 -student(s2801).student3210,50545 -student(s2801).student3210,50545 -student(s2802).student3211,50561 -student(s2802).student3211,50561 -student(s2803).student3212,50577 -student(s2803).student3212,50577 -student(s2804).student3213,50593 -student(s2804).student3213,50593 -student(s2805).student3214,50609 -student(s2805).student3214,50609 -student(s2806).student3215,50625 -student(s2806).student3215,50625 -student(s2807).student3216,50641 -student(s2807).student3216,50641 -student(s2808).student3217,50657 -student(s2808).student3217,50657 -student(s2809).student3218,50673 -student(s2809).student3218,50673 -student(s2810).student3219,50689 -student(s2810).student3219,50689 -student(s2811).student3220,50705 -student(s2811).student3220,50705 -student(s2812).student3221,50721 -student(s2812).student3221,50721 -student(s2813).student3222,50737 -student(s2813).student3222,50737 -student(s2814).student3223,50753 -student(s2814).student3223,50753 -student(s2815).student3224,50769 -student(s2815).student3224,50769 -student(s2816).student3225,50785 -student(s2816).student3225,50785 -student(s2817).student3226,50801 -student(s2817).student3226,50801 -student(s2818).student3227,50817 -student(s2818).student3227,50817 -student(s2819).student3228,50833 -student(s2819).student3228,50833 -student(s2820).student3229,50849 -student(s2820).student3229,50849 -student(s2821).student3230,50865 -student(s2821).student3230,50865 -student(s2822).student3231,50881 -student(s2822).student3231,50881 -student(s2823).student3232,50897 -student(s2823).student3232,50897 -student(s2824).student3233,50913 -student(s2824).student3233,50913 -student(s2825).student3234,50929 -student(s2825).student3234,50929 -student(s2826).student3235,50945 -student(s2826).student3235,50945 -student(s2827).student3236,50961 -student(s2827).student3236,50961 -student(s2828).student3237,50977 -student(s2828).student3237,50977 -student(s2829).student3238,50993 -student(s2829).student3238,50993 -student(s2830).student3239,51009 -student(s2830).student3239,51009 -student(s2831).student3240,51025 -student(s2831).student3240,51025 -student(s2832).student3241,51041 -student(s2832).student3241,51041 -student(s2833).student3242,51057 -student(s2833).student3242,51057 -student(s2834).student3243,51073 -student(s2834).student3243,51073 -student(s2835).student3244,51089 -student(s2835).student3244,51089 -student(s2836).student3245,51105 -student(s2836).student3245,51105 -student(s2837).student3246,51121 -student(s2837).student3246,51121 -student(s2838).student3247,51137 -student(s2838).student3247,51137 -student(s2839).student3248,51153 -student(s2839).student3248,51153 -student(s2840).student3249,51169 -student(s2840).student3249,51169 -student(s2841).student3250,51185 -student(s2841).student3250,51185 -student(s2842).student3251,51201 -student(s2842).student3251,51201 -student(s2843).student3252,51217 -student(s2843).student3252,51217 -student(s2844).student3253,51233 -student(s2844).student3253,51233 -student(s2845).student3254,51249 -student(s2845).student3254,51249 -student(s2846).student3255,51265 -student(s2846).student3255,51265 -student(s2847).student3256,51281 -student(s2847).student3256,51281 -student(s2848).student3257,51297 -student(s2848).student3257,51297 -student(s2849).student3258,51313 -student(s2849).student3258,51313 -student(s2850).student3259,51329 -student(s2850).student3259,51329 -student(s2851).student3260,51345 -student(s2851).student3260,51345 -student(s2852).student3261,51361 -student(s2852).student3261,51361 -student(s2853).student3262,51377 -student(s2853).student3262,51377 -student(s2854).student3263,51393 -student(s2854).student3263,51393 -student(s2855).student3264,51409 -student(s2855).student3264,51409 -student(s2856).student3265,51425 -student(s2856).student3265,51425 -student(s2857).student3266,51441 -student(s2857).student3266,51441 -student(s2858).student3267,51457 -student(s2858).student3267,51457 -student(s2859).student3268,51473 -student(s2859).student3268,51473 -student(s2860).student3269,51489 -student(s2860).student3269,51489 -student(s2861).student3270,51505 -student(s2861).student3270,51505 -student(s2862).student3271,51521 -student(s2862).student3271,51521 -student(s2863).student3272,51537 -student(s2863).student3272,51537 -student(s2864).student3273,51553 -student(s2864).student3273,51553 -student(s2865).student3274,51569 -student(s2865).student3274,51569 -student(s2866).student3275,51585 -student(s2866).student3275,51585 -student(s2867).student3276,51601 -student(s2867).student3276,51601 -student(s2868).student3277,51617 -student(s2868).student3277,51617 -student(s2869).student3278,51633 -student(s2869).student3278,51633 -student(s2870).student3279,51649 -student(s2870).student3279,51649 -student(s2871).student3280,51665 -student(s2871).student3280,51665 -student(s2872).student3281,51681 -student(s2872).student3281,51681 -student(s2873).student3282,51697 -student(s2873).student3282,51697 -student(s2874).student3283,51713 -student(s2874).student3283,51713 -student(s2875).student3284,51729 -student(s2875).student3284,51729 -student(s2876).student3285,51745 -student(s2876).student3285,51745 -student(s2877).student3286,51761 -student(s2877).student3286,51761 -student(s2878).student3287,51777 -student(s2878).student3287,51777 -student(s2879).student3288,51793 -student(s2879).student3288,51793 -student(s2880).student3289,51809 -student(s2880).student3289,51809 -student(s2881).student3290,51825 -student(s2881).student3290,51825 -student(s2882).student3291,51841 -student(s2882).student3291,51841 -student(s2883).student3292,51857 -student(s2883).student3292,51857 -student(s2884).student3293,51873 -student(s2884).student3293,51873 -student(s2885).student3294,51889 -student(s2885).student3294,51889 -student(s2886).student3295,51905 -student(s2886).student3295,51905 -student(s2887).student3296,51921 -student(s2887).student3296,51921 -student(s2888).student3297,51937 -student(s2888).student3297,51937 -student(s2889).student3298,51953 -student(s2889).student3298,51953 -student(s2890).student3299,51969 -student(s2890).student3299,51969 -student(s2891).student3300,51985 -student(s2891).student3300,51985 -student(s2892).student3301,52001 -student(s2892).student3301,52001 -student(s2893).student3302,52017 -student(s2893).student3302,52017 -student(s2894).student3303,52033 -student(s2894).student3303,52033 -student(s2895).student3304,52049 -student(s2895).student3304,52049 -student(s2896).student3305,52065 -student(s2896).student3305,52065 -student(s2897).student3306,52081 -student(s2897).student3306,52081 -student(s2898).student3307,52097 -student(s2898).student3307,52097 -student(s2899).student3308,52113 -student(s2899).student3308,52113 -student(s2900).student3309,52129 -student(s2900).student3309,52129 -student(s2901).student3310,52145 -student(s2901).student3310,52145 -student(s2902).student3311,52161 -student(s2902).student3311,52161 -student(s2903).student3312,52177 -student(s2903).student3312,52177 -student(s2904).student3313,52193 -student(s2904).student3313,52193 -student(s2905).student3314,52209 -student(s2905).student3314,52209 -student(s2906).student3315,52225 -student(s2906).student3315,52225 -student(s2907).student3316,52241 -student(s2907).student3316,52241 -student(s2908).student3317,52257 -student(s2908).student3317,52257 -student(s2909).student3318,52273 -student(s2909).student3318,52273 -student(s2910).student3319,52289 -student(s2910).student3319,52289 -student(s2911).student3320,52305 -student(s2911).student3320,52305 -student(s2912).student3321,52321 -student(s2912).student3321,52321 -student(s2913).student3322,52337 -student(s2913).student3322,52337 -student(s2914).student3323,52353 -student(s2914).student3323,52353 -student(s2915).student3324,52369 -student(s2915).student3324,52369 -student(s2916).student3325,52385 -student(s2916).student3325,52385 -student(s2917).student3326,52401 -student(s2917).student3326,52401 -student(s2918).student3327,52417 -student(s2918).student3327,52417 -student(s2919).student3328,52433 -student(s2919).student3328,52433 -student(s2920).student3329,52449 -student(s2920).student3329,52449 -student(s2921).student3330,52465 -student(s2921).student3330,52465 -student(s2922).student3331,52481 -student(s2922).student3331,52481 -student(s2923).student3332,52497 -student(s2923).student3332,52497 -student(s2924).student3333,52513 -student(s2924).student3333,52513 -student(s2925).student3334,52529 -student(s2925).student3334,52529 -student(s2926).student3335,52545 -student(s2926).student3335,52545 -student(s2927).student3336,52561 -student(s2927).student3336,52561 -student(s2928).student3337,52577 -student(s2928).student3337,52577 -student(s2929).student3338,52593 -student(s2929).student3338,52593 -student(s2930).student3339,52609 -student(s2930).student3339,52609 -student(s2931).student3340,52625 -student(s2931).student3340,52625 -student(s2932).student3341,52641 -student(s2932).student3341,52641 -student(s2933).student3342,52657 -student(s2933).student3342,52657 -student(s2934).student3343,52673 -student(s2934).student3343,52673 -student(s2935).student3344,52689 -student(s2935).student3344,52689 -student(s2936).student3345,52705 -student(s2936).student3345,52705 -student(s2937).student3346,52721 -student(s2937).student3346,52721 -student(s2938).student3347,52737 -student(s2938).student3347,52737 -student(s2939).student3348,52753 -student(s2939).student3348,52753 -student(s2940).student3349,52769 -student(s2940).student3349,52769 -student(s2941).student3350,52785 -student(s2941).student3350,52785 -student(s2942).student3351,52801 -student(s2942).student3351,52801 -student(s2943).student3352,52817 -student(s2943).student3352,52817 -student(s2944).student3353,52833 -student(s2944).student3353,52833 -student(s2945).student3354,52849 -student(s2945).student3354,52849 -student(s2946).student3355,52865 -student(s2946).student3355,52865 -student(s2947).student3356,52881 -student(s2947).student3356,52881 -student(s2948).student3357,52897 -student(s2948).student3357,52897 -student(s2949).student3358,52913 -student(s2949).student3358,52913 -student(s2950).student3359,52929 -student(s2950).student3359,52929 -student(s2951).student3360,52945 -student(s2951).student3360,52945 -student(s2952).student3361,52961 -student(s2952).student3361,52961 -student(s2953).student3362,52977 -student(s2953).student3362,52977 -student(s2954).student3363,52993 -student(s2954).student3363,52993 -student(s2955).student3364,53009 -student(s2955).student3364,53009 -student(s2956).student3365,53025 -student(s2956).student3365,53025 -student(s2957).student3366,53041 -student(s2957).student3366,53041 -student(s2958).student3367,53057 -student(s2958).student3367,53057 -student(s2959).student3368,53073 -student(s2959).student3368,53073 -student(s2960).student3369,53089 -student(s2960).student3369,53089 -student(s2961).student3370,53105 -student(s2961).student3370,53105 -student(s2962).student3371,53121 -student(s2962).student3371,53121 -student(s2963).student3372,53137 -student(s2963).student3372,53137 -student(s2964).student3373,53153 -student(s2964).student3373,53153 -student(s2965).student3374,53169 -student(s2965).student3374,53169 -student(s2966).student3375,53185 -student(s2966).student3375,53185 -student(s2967).student3376,53201 -student(s2967).student3376,53201 -student(s2968).student3377,53217 -student(s2968).student3377,53217 -student(s2969).student3378,53233 -student(s2969).student3378,53233 -student(s2970).student3379,53249 -student(s2970).student3379,53249 -student(s2971).student3380,53265 -student(s2971).student3380,53265 -student(s2972).student3381,53281 -student(s2972).student3381,53281 -student(s2973).student3382,53297 -student(s2973).student3382,53297 -student(s2974).student3383,53313 -student(s2974).student3383,53313 -student(s2975).student3384,53329 -student(s2975).student3384,53329 -student(s2976).student3385,53345 -student(s2976).student3385,53345 -student(s2977).student3386,53361 -student(s2977).student3386,53361 -student(s2978).student3387,53377 -student(s2978).student3387,53377 -student(s2979).student3388,53393 -student(s2979).student3388,53393 -student(s2980).student3389,53409 -student(s2980).student3389,53409 -student(s2981).student3390,53425 -student(s2981).student3390,53425 -student(s2982).student3391,53441 -student(s2982).student3391,53441 -student(s2983).student3392,53457 -student(s2983).student3392,53457 -student(s2984).student3393,53473 -student(s2984).student3393,53473 -student(s2985).student3394,53489 -student(s2985).student3394,53489 -student(s2986).student3395,53505 -student(s2986).student3395,53505 -student(s2987).student3396,53521 -student(s2987).student3396,53521 -student(s2988).student3397,53537 -student(s2988).student3397,53537 -student(s2989).student3398,53553 -student(s2989).student3398,53553 -student(s2990).student3399,53569 -student(s2990).student3399,53569 -student(s2991).student3400,53585 -student(s2991).student3400,53585 -student(s2992).student3401,53601 -student(s2992).student3401,53601 -student(s2993).student3402,53617 -student(s2993).student3402,53617 -student(s2994).student3403,53633 -student(s2994).student3403,53633 -student(s2995).student3404,53649 -student(s2995).student3404,53649 -student(s2996).student3405,53665 -student(s2996).student3405,53665 -student(s2997).student3406,53681 -student(s2997).student3406,53681 -student(s2998).student3407,53697 -student(s2998).student3407,53697 -student(s2999).student3408,53713 -student(s2999).student3408,53713 -student(s3000).student3409,53729 -student(s3000).student3409,53729 -student(s3001).student3410,53745 -student(s3001).student3410,53745 -student(s3002).student3411,53761 -student(s3002).student3411,53761 -student(s3003).student3412,53777 -student(s3003).student3412,53777 -student(s3004).student3413,53793 -student(s3004).student3413,53793 -student(s3005).student3414,53809 -student(s3005).student3414,53809 -student(s3006).student3415,53825 -student(s3006).student3415,53825 -student(s3007).student3416,53841 -student(s3007).student3416,53841 -student(s3008).student3417,53857 -student(s3008).student3417,53857 -student(s3009).student3418,53873 -student(s3009).student3418,53873 -student(s3010).student3419,53889 -student(s3010).student3419,53889 -student(s3011).student3420,53905 -student(s3011).student3420,53905 -student(s3012).student3421,53921 -student(s3012).student3421,53921 -student(s3013).student3422,53937 -student(s3013).student3422,53937 -student(s3014).student3423,53953 -student(s3014).student3423,53953 -student(s3015).student3424,53969 -student(s3015).student3424,53969 -student(s3016).student3425,53985 -student(s3016).student3425,53985 -student(s3017).student3426,54001 -student(s3017).student3426,54001 -student(s3018).student3427,54017 -student(s3018).student3427,54017 -student(s3019).student3428,54033 -student(s3019).student3428,54033 -student(s3020).student3429,54049 -student(s3020).student3429,54049 -student(s3021).student3430,54065 -student(s3021).student3430,54065 -student(s3022).student3431,54081 -student(s3022).student3431,54081 -student(s3023).student3432,54097 -student(s3023).student3432,54097 -student(s3024).student3433,54113 -student(s3024).student3433,54113 -student(s3025).student3434,54129 -student(s3025).student3434,54129 -student(s3026).student3435,54145 -student(s3026).student3435,54145 -student(s3027).student3436,54161 -student(s3027).student3436,54161 -student(s3028).student3437,54177 -student(s3028).student3437,54177 -student(s3029).student3438,54193 -student(s3029).student3438,54193 -student(s3030).student3439,54209 -student(s3030).student3439,54209 -student(s3031).student3440,54225 -student(s3031).student3440,54225 -student(s3032).student3441,54241 -student(s3032).student3441,54241 -student(s3033).student3442,54257 -student(s3033).student3442,54257 -student(s3034).student3443,54273 -student(s3034).student3443,54273 -student(s3035).student3444,54289 -student(s3035).student3444,54289 -student(s3036).student3445,54305 -student(s3036).student3445,54305 -student(s3037).student3446,54321 -student(s3037).student3446,54321 -student(s3038).student3447,54337 -student(s3038).student3447,54337 -student(s3039).student3448,54353 -student(s3039).student3448,54353 -student(s3040).student3449,54369 -student(s3040).student3449,54369 -student(s3041).student3450,54385 -student(s3041).student3450,54385 -student(s3042).student3451,54401 -student(s3042).student3451,54401 -student(s3043).student3452,54417 -student(s3043).student3452,54417 -student(s3044).student3453,54433 -student(s3044).student3453,54433 -student(s3045).student3454,54449 -student(s3045).student3454,54449 -student(s3046).student3455,54465 -student(s3046).student3455,54465 -student(s3047).student3456,54481 -student(s3047).student3456,54481 -student(s3048).student3457,54497 -student(s3048).student3457,54497 -student(s3049).student3458,54513 -student(s3049).student3458,54513 -student(s3050).student3459,54529 -student(s3050).student3459,54529 -student(s3051).student3460,54545 -student(s3051).student3460,54545 -student(s3052).student3461,54561 -student(s3052).student3461,54561 -student(s3053).student3462,54577 -student(s3053).student3462,54577 -student(s3054).student3463,54593 -student(s3054).student3463,54593 -student(s3055).student3464,54609 -student(s3055).student3464,54609 -student(s3056).student3465,54625 -student(s3056).student3465,54625 -student(s3057).student3466,54641 -student(s3057).student3466,54641 -student(s3058).student3467,54657 -student(s3058).student3467,54657 -student(s3059).student3468,54673 -student(s3059).student3468,54673 -student(s3060).student3469,54689 -student(s3060).student3469,54689 -student(s3061).student3470,54705 -student(s3061).student3470,54705 -student(s3062).student3471,54721 -student(s3062).student3471,54721 -student(s3063).student3472,54737 -student(s3063).student3472,54737 -student(s3064).student3473,54753 -student(s3064).student3473,54753 -student(s3065).student3474,54769 -student(s3065).student3474,54769 -student(s3066).student3475,54785 -student(s3066).student3475,54785 -student(s3067).student3476,54801 -student(s3067).student3476,54801 -student(s3068).student3477,54817 -student(s3068).student3477,54817 -student(s3069).student3478,54833 -student(s3069).student3478,54833 -student(s3070).student3479,54849 -student(s3070).student3479,54849 -student(s3071).student3480,54865 -student(s3071).student3480,54865 -student(s3072).student3481,54881 -student(s3072).student3481,54881 -student(s3073).student3482,54897 -student(s3073).student3482,54897 -student(s3074).student3483,54913 -student(s3074).student3483,54913 -student(s3075).student3484,54929 -student(s3075).student3484,54929 -student(s3076).student3485,54945 -student(s3076).student3485,54945 -student(s3077).student3486,54961 -student(s3077).student3486,54961 -student(s3078).student3487,54977 -student(s3078).student3487,54977 -student(s3079).student3488,54993 -student(s3079).student3488,54993 -student(s3080).student3489,55009 -student(s3080).student3489,55009 -student(s3081).student3490,55025 -student(s3081).student3490,55025 -student(s3082).student3491,55041 -student(s3082).student3491,55041 -student(s3083).student3492,55057 -student(s3083).student3492,55057 -student(s3084).student3493,55073 -student(s3084).student3493,55073 -student(s3085).student3494,55089 -student(s3085).student3494,55089 -student(s3086).student3495,55105 -student(s3086).student3495,55105 -student(s3087).student3496,55121 -student(s3087).student3496,55121 -student(s3088).student3497,55137 -student(s3088).student3497,55137 -student(s3089).student3498,55153 -student(s3089).student3498,55153 -student(s3090).student3499,55169 -student(s3090).student3499,55169 -student(s3091).student3500,55185 -student(s3091).student3500,55185 -student(s3092).student3501,55201 -student(s3092).student3501,55201 -student(s3093).student3502,55217 -student(s3093).student3502,55217 -student(s3094).student3503,55233 -student(s3094).student3503,55233 -student(s3095).student3504,55249 -student(s3095).student3504,55249 -student(s3096).student3505,55265 -student(s3096).student3505,55265 -student(s3097).student3506,55281 -student(s3097).student3506,55281 -student(s3098).student3507,55297 -student(s3098).student3507,55297 -student(s3099).student3508,55313 -student(s3099).student3508,55313 -student(s3100).student3509,55329 -student(s3100).student3509,55329 -student(s3101).student3510,55345 -student(s3101).student3510,55345 -student(s3102).student3511,55361 -student(s3102).student3511,55361 -student(s3103).student3512,55377 -student(s3103).student3512,55377 -student(s3104).student3513,55393 -student(s3104).student3513,55393 -student(s3105).student3514,55409 -student(s3105).student3514,55409 -student(s3106).student3515,55425 -student(s3106).student3515,55425 -student(s3107).student3516,55441 -student(s3107).student3516,55441 -student(s3108).student3517,55457 -student(s3108).student3517,55457 -student(s3109).student3518,55473 -student(s3109).student3518,55473 -student(s3110).student3519,55489 -student(s3110).student3519,55489 -student(s3111).student3520,55505 -student(s3111).student3520,55505 -student(s3112).student3521,55521 -student(s3112).student3521,55521 -student(s3113).student3522,55537 -student(s3113).student3522,55537 -student(s3114).student3523,55553 -student(s3114).student3523,55553 -student(s3115).student3524,55569 -student(s3115).student3524,55569 -student(s3116).student3525,55585 -student(s3116).student3525,55585 -student(s3117).student3526,55601 -student(s3117).student3526,55601 -student(s3118).student3527,55617 -student(s3118).student3527,55617 -student(s3119).student3528,55633 -student(s3119).student3528,55633 -student(s3120).student3529,55649 -student(s3120).student3529,55649 -student(s3121).student3530,55665 -student(s3121).student3530,55665 -student(s3122).student3531,55681 -student(s3122).student3531,55681 -student(s3123).student3532,55697 -student(s3123).student3532,55697 -student(s3124).student3533,55713 -student(s3124).student3533,55713 -student(s3125).student3534,55729 -student(s3125).student3534,55729 -student(s3126).student3535,55745 -student(s3126).student3535,55745 -student(s3127).student3536,55761 -student(s3127).student3536,55761 -student(s3128).student3537,55777 -student(s3128).student3537,55777 -student(s3129).student3538,55793 -student(s3129).student3538,55793 -student(s3130).student3539,55809 -student(s3130).student3539,55809 -student(s3131).student3540,55825 -student(s3131).student3540,55825 -student(s3132).student3541,55841 -student(s3132).student3541,55841 -student(s3133).student3542,55857 -student(s3133).student3542,55857 -student(s3134).student3543,55873 -student(s3134).student3543,55873 -student(s3135).student3544,55889 -student(s3135).student3544,55889 -student(s3136).student3545,55905 -student(s3136).student3545,55905 -student(s3137).student3546,55921 -student(s3137).student3546,55921 -student(s3138).student3547,55937 -student(s3138).student3547,55937 -student(s3139).student3548,55953 -student(s3139).student3548,55953 -student(s3140).student3549,55969 -student(s3140).student3549,55969 -student(s3141).student3550,55985 -student(s3141).student3550,55985 -student(s3142).student3551,56001 -student(s3142).student3551,56001 -student(s3143).student3552,56017 -student(s3143).student3552,56017 -student(s3144).student3553,56033 -student(s3144).student3553,56033 -student(s3145).student3554,56049 -student(s3145).student3554,56049 -student(s3146).student3555,56065 -student(s3146).student3555,56065 -student(s3147).student3556,56081 -student(s3147).student3556,56081 -student(s3148).student3557,56097 -student(s3148).student3557,56097 -student(s3149).student3558,56113 -student(s3149).student3558,56113 -student(s3150).student3559,56129 -student(s3150).student3559,56129 -student(s3151).student3560,56145 -student(s3151).student3560,56145 -student(s3152).student3561,56161 -student(s3152).student3561,56161 -student(s3153).student3562,56177 -student(s3153).student3562,56177 -student(s3154).student3563,56193 -student(s3154).student3563,56193 -student(s3155).student3564,56209 -student(s3155).student3564,56209 -student(s3156).student3565,56225 -student(s3156).student3565,56225 -student(s3157).student3566,56241 -student(s3157).student3566,56241 -student(s3158).student3567,56257 -student(s3158).student3567,56257 -student(s3159).student3568,56273 -student(s3159).student3568,56273 -student(s3160).student3569,56289 -student(s3160).student3569,56289 -student(s3161).student3570,56305 -student(s3161).student3570,56305 -student(s3162).student3571,56321 -student(s3162).student3571,56321 -student(s3163).student3572,56337 -student(s3163).student3572,56337 -student(s3164).student3573,56353 -student(s3164).student3573,56353 -student(s3165).student3574,56369 -student(s3165).student3574,56369 -student(s3166).student3575,56385 -student(s3166).student3575,56385 -student(s3167).student3576,56401 -student(s3167).student3576,56401 -student(s3168).student3577,56417 -student(s3168).student3577,56417 -student(s3169).student3578,56433 -student(s3169).student3578,56433 -student(s3170).student3579,56449 -student(s3170).student3579,56449 -student(s3171).student3580,56465 -student(s3171).student3580,56465 -student(s3172).student3581,56481 -student(s3172).student3581,56481 -student(s3173).student3582,56497 -student(s3173).student3582,56497 -student(s3174).student3583,56513 -student(s3174).student3583,56513 -student(s3175).student3584,56529 -student(s3175).student3584,56529 -student(s3176).student3585,56545 -student(s3176).student3585,56545 -student(s3177).student3586,56561 -student(s3177).student3586,56561 -student(s3178).student3587,56577 -student(s3178).student3587,56577 -student(s3179).student3588,56593 -student(s3179).student3588,56593 -student(s3180).student3589,56609 -student(s3180).student3589,56609 -student(s3181).student3590,56625 -student(s3181).student3590,56625 -student(s3182).student3591,56641 -student(s3182).student3591,56641 -student(s3183).student3592,56657 -student(s3183).student3592,56657 -student(s3184).student3593,56673 -student(s3184).student3593,56673 -student(s3185).student3594,56689 -student(s3185).student3594,56689 -student(s3186).student3595,56705 -student(s3186).student3595,56705 -student(s3187).student3596,56721 -student(s3187).student3596,56721 -student(s3188).student3597,56737 -student(s3188).student3597,56737 -student(s3189).student3598,56753 -student(s3189).student3598,56753 -student(s3190).student3599,56769 -student(s3190).student3599,56769 -student(s3191).student3600,56785 -student(s3191).student3600,56785 -student(s3192).student3601,56801 -student(s3192).student3601,56801 -student(s3193).student3602,56817 -student(s3193).student3602,56817 -student(s3194).student3603,56833 -student(s3194).student3603,56833 -student(s3195).student3604,56849 -student(s3195).student3604,56849 -student(s3196).student3605,56865 -student(s3196).student3605,56865 -student(s3197).student3606,56881 -student(s3197).student3606,56881 -student(s3198).student3607,56897 -student(s3198).student3607,56897 -student(s3199).student3608,56913 -student(s3199).student3608,56913 -student(s3200).student3609,56929 -student(s3200).student3609,56929 -student(s3201).student3610,56945 -student(s3201).student3610,56945 -student(s3202).student3611,56961 -student(s3202).student3611,56961 -student(s3203).student3612,56977 -student(s3203).student3612,56977 -student(s3204).student3613,56993 -student(s3204).student3613,56993 -student(s3205).student3614,57009 -student(s3205).student3614,57009 -student(s3206).student3615,57025 -student(s3206).student3615,57025 -student(s3207).student3616,57041 -student(s3207).student3616,57041 -student(s3208).student3617,57057 -student(s3208).student3617,57057 -student(s3209).student3618,57073 -student(s3209).student3618,57073 -student(s3210).student3619,57089 -student(s3210).student3619,57089 -student(s3211).student3620,57105 -student(s3211).student3620,57105 -student(s3212).student3621,57121 -student(s3212).student3621,57121 -student(s3213).student3622,57137 -student(s3213).student3622,57137 -student(s3214).student3623,57153 -student(s3214).student3623,57153 -student(s3215).student3624,57169 -student(s3215).student3624,57169 -student(s3216).student3625,57185 -student(s3216).student3625,57185 -student(s3217).student3626,57201 -student(s3217).student3626,57201 -student(s3218).student3627,57217 -student(s3218).student3627,57217 -student(s3219).student3628,57233 -student(s3219).student3628,57233 -student(s3220).student3629,57249 -student(s3220).student3629,57249 -student(s3221).student3630,57265 -student(s3221).student3630,57265 -student(s3222).student3631,57281 -student(s3222).student3631,57281 -student(s3223).student3632,57297 -student(s3223).student3632,57297 -student(s3224).student3633,57313 -student(s3224).student3633,57313 -student(s3225).student3634,57329 -student(s3225).student3634,57329 -student(s3226).student3635,57345 -student(s3226).student3635,57345 -student(s3227).student3636,57361 -student(s3227).student3636,57361 -student(s3228).student3637,57377 -student(s3228).student3637,57377 -student(s3229).student3638,57393 -student(s3229).student3638,57393 -student(s3230).student3639,57409 -student(s3230).student3639,57409 -student(s3231).student3640,57425 -student(s3231).student3640,57425 -student(s3232).student3641,57441 -student(s3232).student3641,57441 -student(s3233).student3642,57457 -student(s3233).student3642,57457 -student(s3234).student3643,57473 -student(s3234).student3643,57473 -student(s3235).student3644,57489 -student(s3235).student3644,57489 -student(s3236).student3645,57505 -student(s3236).student3645,57505 -student(s3237).student3646,57521 -student(s3237).student3646,57521 -student(s3238).student3647,57537 -student(s3238).student3647,57537 -student(s3239).student3648,57553 -student(s3239).student3648,57553 -student(s3240).student3649,57569 -student(s3240).student3649,57569 -student(s3241).student3650,57585 -student(s3241).student3650,57585 -student(s3242).student3651,57601 -student(s3242).student3651,57601 -student(s3243).student3652,57617 -student(s3243).student3652,57617 -student(s3244).student3653,57633 -student(s3244).student3653,57633 -student(s3245).student3654,57649 -student(s3245).student3654,57649 -student(s3246).student3655,57665 -student(s3246).student3655,57665 -student(s3247).student3656,57681 -student(s3247).student3656,57681 -student(s3248).student3657,57697 -student(s3248).student3657,57697 -student(s3249).student3658,57713 -student(s3249).student3658,57713 -student(s3250).student3659,57729 -student(s3250).student3659,57729 -student(s3251).student3660,57745 -student(s3251).student3660,57745 -student(s3252).student3661,57761 -student(s3252).student3661,57761 -student(s3253).student3662,57777 -student(s3253).student3662,57777 -student(s3254).student3663,57793 -student(s3254).student3663,57793 -student(s3255).student3664,57809 -student(s3255).student3664,57809 -student(s3256).student3665,57825 -student(s3256).student3665,57825 -student(s3257).student3666,57841 -student(s3257).student3666,57841 -student(s3258).student3667,57857 -student(s3258).student3667,57857 -student(s3259).student3668,57873 -student(s3259).student3668,57873 -student(s3260).student3669,57889 -student(s3260).student3669,57889 -student(s3261).student3670,57905 -student(s3261).student3670,57905 -student(s3262).student3671,57921 -student(s3262).student3671,57921 -student(s3263).student3672,57937 -student(s3263).student3672,57937 -student(s3264).student3673,57953 -student(s3264).student3673,57953 -student(s3265).student3674,57969 -student(s3265).student3674,57969 -student(s3266).student3675,57985 -student(s3266).student3675,57985 -student(s3267).student3676,58001 -student(s3267).student3676,58001 -student(s3268).student3677,58017 -student(s3268).student3677,58017 -student(s3269).student3678,58033 -student(s3269).student3678,58033 -student(s3270).student3679,58049 -student(s3270).student3679,58049 -student(s3271).student3680,58065 -student(s3271).student3680,58065 -student(s3272).student3681,58081 -student(s3272).student3681,58081 -student(s3273).student3682,58097 -student(s3273).student3682,58097 -student(s3274).student3683,58113 -student(s3274).student3683,58113 -student(s3275).student3684,58129 -student(s3275).student3684,58129 -student(s3276).student3685,58145 -student(s3276).student3685,58145 -student(s3277).student3686,58161 -student(s3277).student3686,58161 -student(s3278).student3687,58177 -student(s3278).student3687,58177 -student(s3279).student3688,58193 -student(s3279).student3688,58193 -student(s3280).student3689,58209 -student(s3280).student3689,58209 -student(s3281).student3690,58225 -student(s3281).student3690,58225 -student(s3282).student3691,58241 -student(s3282).student3691,58241 -student(s3283).student3692,58257 -student(s3283).student3692,58257 -student(s3284).student3693,58273 -student(s3284).student3693,58273 -student(s3285).student3694,58289 -student(s3285).student3694,58289 -student(s3286).student3695,58305 -student(s3286).student3695,58305 -student(s3287).student3696,58321 -student(s3287).student3696,58321 -student(s3288).student3697,58337 -student(s3288).student3697,58337 -student(s3289).student3698,58353 -student(s3289).student3698,58353 -student(s3290).student3699,58369 -student(s3290).student3699,58369 -student(s3291).student3700,58385 -student(s3291).student3700,58385 -student(s3292).student3701,58401 -student(s3292).student3701,58401 -student(s3293).student3702,58417 -student(s3293).student3702,58417 -student(s3294).student3703,58433 -student(s3294).student3703,58433 -student(s3295).student3704,58449 -student(s3295).student3704,58449 -student(s3296).student3705,58465 -student(s3296).student3705,58465 -student(s3297).student3706,58481 -student(s3297).student3706,58481 -student(s3298).student3707,58497 -student(s3298).student3707,58497 -student(s3299).student3708,58513 -student(s3299).student3708,58513 -student(s3300).student3709,58529 -student(s3300).student3709,58529 -student(s3301).student3710,58545 -student(s3301).student3710,58545 -student(s3302).student3711,58561 -student(s3302).student3711,58561 -student(s3303).student3712,58577 -student(s3303).student3712,58577 -student(s3304).student3713,58593 -student(s3304).student3713,58593 -student(s3305).student3714,58609 -student(s3305).student3714,58609 -student(s3306).student3715,58625 -student(s3306).student3715,58625 -student(s3307).student3716,58641 -student(s3307).student3716,58641 -student(s3308).student3717,58657 -student(s3308).student3717,58657 -student(s3309).student3718,58673 -student(s3309).student3718,58673 -student(s3310).student3719,58689 -student(s3310).student3719,58689 -student(s3311).student3720,58705 -student(s3311).student3720,58705 -student(s3312).student3721,58721 -student(s3312).student3721,58721 -student(s3313).student3722,58737 -student(s3313).student3722,58737 -student(s3314).student3723,58753 -student(s3314).student3723,58753 -student(s3315).student3724,58769 -student(s3315).student3724,58769 -student(s3316).student3725,58785 -student(s3316).student3725,58785 -student(s3317).student3726,58801 -student(s3317).student3726,58801 -student(s3318).student3727,58817 -student(s3318).student3727,58817 -student(s3319).student3728,58833 -student(s3319).student3728,58833 -student(s3320).student3729,58849 -student(s3320).student3729,58849 -student(s3321).student3730,58865 -student(s3321).student3730,58865 -student(s3322).student3731,58881 -student(s3322).student3731,58881 -student(s3323).student3732,58897 -student(s3323).student3732,58897 -student(s3324).student3733,58913 -student(s3324).student3733,58913 -student(s3325).student3734,58929 -student(s3325).student3734,58929 -student(s3326).student3735,58945 -student(s3326).student3735,58945 -student(s3327).student3736,58961 -student(s3327).student3736,58961 -student(s3328).student3737,58977 -student(s3328).student3737,58977 -student(s3329).student3738,58993 -student(s3329).student3738,58993 -student(s3330).student3739,59009 -student(s3330).student3739,59009 -student(s3331).student3740,59025 -student(s3331).student3740,59025 -student(s3332).student3741,59041 -student(s3332).student3741,59041 -student(s3333).student3742,59057 -student(s3333).student3742,59057 -student(s3334).student3743,59073 -student(s3334).student3743,59073 -student(s3335).student3744,59089 -student(s3335).student3744,59089 -student(s3336).student3745,59105 -student(s3336).student3745,59105 -student(s3337).student3746,59121 -student(s3337).student3746,59121 -student(s3338).student3747,59137 -student(s3338).student3747,59137 -student(s3339).student3748,59153 -student(s3339).student3748,59153 -student(s3340).student3749,59169 -student(s3340).student3749,59169 -student(s3341).student3750,59185 -student(s3341).student3750,59185 -student(s3342).student3751,59201 -student(s3342).student3751,59201 -student(s3343).student3752,59217 -student(s3343).student3752,59217 -student(s3344).student3753,59233 -student(s3344).student3753,59233 -student(s3345).student3754,59249 -student(s3345).student3754,59249 -student(s3346).student3755,59265 -student(s3346).student3755,59265 -student(s3347).student3756,59281 -student(s3347).student3756,59281 -student(s3348).student3757,59297 -student(s3348).student3757,59297 -student(s3349).student3758,59313 -student(s3349).student3758,59313 -student(s3350).student3759,59329 -student(s3350).student3759,59329 -student(s3351).student3760,59345 -student(s3351).student3760,59345 -student(s3352).student3761,59361 -student(s3352).student3761,59361 -student(s3353).student3762,59377 -student(s3353).student3762,59377 -student(s3354).student3763,59393 -student(s3354).student3763,59393 -student(s3355).student3764,59409 -student(s3355).student3764,59409 -student(s3356).student3765,59425 -student(s3356).student3765,59425 -student(s3357).student3766,59441 -student(s3357).student3766,59441 -student(s3358).student3767,59457 -student(s3358).student3767,59457 -student(s3359).student3768,59473 -student(s3359).student3768,59473 -student(s3360).student3769,59489 -student(s3360).student3769,59489 -student(s3361).student3770,59505 -student(s3361).student3770,59505 -student(s3362).student3771,59521 -student(s3362).student3771,59521 -student(s3363).student3772,59537 -student(s3363).student3772,59537 -student(s3364).student3773,59553 -student(s3364).student3773,59553 -student(s3365).student3774,59569 -student(s3365).student3774,59569 -student(s3366).student3775,59585 -student(s3366).student3775,59585 -student(s3367).student3776,59601 -student(s3367).student3776,59601 -student(s3368).student3777,59617 -student(s3368).student3777,59617 -student(s3369).student3778,59633 -student(s3369).student3778,59633 -student(s3370).student3779,59649 -student(s3370).student3779,59649 -student(s3371).student3780,59665 -student(s3371).student3780,59665 -student(s3372).student3781,59681 -student(s3372).student3781,59681 -student(s3373).student3782,59697 -student(s3373).student3782,59697 -student(s3374).student3783,59713 -student(s3374).student3783,59713 -student(s3375).student3784,59729 -student(s3375).student3784,59729 -student(s3376).student3785,59745 -student(s3376).student3785,59745 -student(s3377).student3786,59761 -student(s3377).student3786,59761 -student(s3378).student3787,59777 -student(s3378).student3787,59777 -student(s3379).student3788,59793 -student(s3379).student3788,59793 -student(s3380).student3789,59809 -student(s3380).student3789,59809 -student(s3381).student3790,59825 -student(s3381).student3790,59825 -student(s3382).student3791,59841 -student(s3382).student3791,59841 -student(s3383).student3792,59857 -student(s3383).student3792,59857 -student(s3384).student3793,59873 -student(s3384).student3793,59873 -student(s3385).student3794,59889 -student(s3385).student3794,59889 -student(s3386).student3795,59905 -student(s3386).student3795,59905 -student(s3387).student3796,59921 -student(s3387).student3796,59921 -student(s3388).student3797,59937 -student(s3388).student3797,59937 -student(s3389).student3798,59953 -student(s3389).student3798,59953 -student(s3390).student3799,59969 -student(s3390).student3799,59969 -student(s3391).student3800,59985 -student(s3391).student3800,59985 -student(s3392).student3801,60001 -student(s3392).student3801,60001 -student(s3393).student3802,60017 -student(s3393).student3802,60017 -student(s3394).student3803,60033 -student(s3394).student3803,60033 -student(s3395).student3804,60049 -student(s3395).student3804,60049 -student(s3396).student3805,60065 -student(s3396).student3805,60065 -student(s3397).student3806,60081 -student(s3397).student3806,60081 -student(s3398).student3807,60097 -student(s3398).student3807,60097 -student(s3399).student3808,60113 -student(s3399).student3808,60113 -student(s3400).student3809,60129 -student(s3400).student3809,60129 -student(s3401).student3810,60145 -student(s3401).student3810,60145 -student(s3402).student3811,60161 -student(s3402).student3811,60161 -student(s3403).student3812,60177 -student(s3403).student3812,60177 -student(s3404).student3813,60193 -student(s3404).student3813,60193 -student(s3405).student3814,60209 -student(s3405).student3814,60209 -student(s3406).student3815,60225 -student(s3406).student3815,60225 -student(s3407).student3816,60241 -student(s3407).student3816,60241 -student(s3408).student3817,60257 -student(s3408).student3817,60257 -student(s3409).student3818,60273 -student(s3409).student3818,60273 -student(s3410).student3819,60289 -student(s3410).student3819,60289 -student(s3411).student3820,60305 -student(s3411).student3820,60305 -student(s3412).student3821,60321 -student(s3412).student3821,60321 -student(s3413).student3822,60337 -student(s3413).student3822,60337 -student(s3414).student3823,60353 -student(s3414).student3823,60353 -student(s3415).student3824,60369 -student(s3415).student3824,60369 -student(s3416).student3825,60385 -student(s3416).student3825,60385 -student(s3417).student3826,60401 -student(s3417).student3826,60401 -student(s3418).student3827,60417 -student(s3418).student3827,60417 -student(s3419).student3828,60433 -student(s3419).student3828,60433 -student(s3420).student3829,60449 -student(s3420).student3829,60449 -student(s3421).student3830,60465 -student(s3421).student3830,60465 -student(s3422).student3831,60481 -student(s3422).student3831,60481 -student(s3423).student3832,60497 -student(s3423).student3832,60497 -student(s3424).student3833,60513 -student(s3424).student3833,60513 -student(s3425).student3834,60529 -student(s3425).student3834,60529 -student(s3426).student3835,60545 -student(s3426).student3835,60545 -student(s3427).student3836,60561 -student(s3427).student3836,60561 -student(s3428).student3837,60577 -student(s3428).student3837,60577 -student(s3429).student3838,60593 -student(s3429).student3838,60593 -student(s3430).student3839,60609 -student(s3430).student3839,60609 -student(s3431).student3840,60625 -student(s3431).student3840,60625 -student(s3432).student3841,60641 -student(s3432).student3841,60641 -student(s3433).student3842,60657 -student(s3433).student3842,60657 -student(s3434).student3843,60673 -student(s3434).student3843,60673 -student(s3435).student3844,60689 -student(s3435).student3844,60689 -student(s3436).student3845,60705 -student(s3436).student3845,60705 -student(s3437).student3846,60721 -student(s3437).student3846,60721 -student(s3438).student3847,60737 -student(s3438).student3847,60737 -student(s3439).student3848,60753 -student(s3439).student3848,60753 -student(s3440).student3849,60769 -student(s3440).student3849,60769 -student(s3441).student3850,60785 -student(s3441).student3850,60785 -student(s3442).student3851,60801 -student(s3442).student3851,60801 -student(s3443).student3852,60817 -student(s3443).student3852,60817 -student(s3444).student3853,60833 -student(s3444).student3853,60833 -student(s3445).student3854,60849 -student(s3445).student3854,60849 -student(s3446).student3855,60865 -student(s3446).student3855,60865 -student(s3447).student3856,60881 -student(s3447).student3856,60881 -student(s3448).student3857,60897 -student(s3448).student3857,60897 -student(s3449).student3858,60913 -student(s3449).student3858,60913 -student(s3450).student3859,60929 -student(s3450).student3859,60929 -student(s3451).student3860,60945 -student(s3451).student3860,60945 -student(s3452).student3861,60961 -student(s3452).student3861,60961 -student(s3453).student3862,60977 -student(s3453).student3862,60977 -student(s3454).student3863,60993 -student(s3454).student3863,60993 -student(s3455).student3864,61009 -student(s3455).student3864,61009 -student(s3456).student3865,61025 -student(s3456).student3865,61025 -student(s3457).student3866,61041 -student(s3457).student3866,61041 -student(s3458).student3867,61057 -student(s3458).student3867,61057 -student(s3459).student3868,61073 -student(s3459).student3868,61073 -student(s3460).student3869,61089 -student(s3460).student3869,61089 -student(s3461).student3870,61105 -student(s3461).student3870,61105 -student(s3462).student3871,61121 -student(s3462).student3871,61121 -student(s3463).student3872,61137 -student(s3463).student3872,61137 -student(s3464).student3873,61153 -student(s3464).student3873,61153 -student(s3465).student3874,61169 -student(s3465).student3874,61169 -student(s3466).student3875,61185 -student(s3466).student3875,61185 -student(s3467).student3876,61201 -student(s3467).student3876,61201 -student(s3468).student3877,61217 -student(s3468).student3877,61217 -student(s3469).student3878,61233 -student(s3469).student3878,61233 -student(s3470).student3879,61249 -student(s3470).student3879,61249 -student(s3471).student3880,61265 -student(s3471).student3880,61265 -student(s3472).student3881,61281 -student(s3472).student3881,61281 -student(s3473).student3882,61297 -student(s3473).student3882,61297 -student(s3474).student3883,61313 -student(s3474).student3883,61313 -student(s3475).student3884,61329 -student(s3475).student3884,61329 -student(s3476).student3885,61345 -student(s3476).student3885,61345 -student(s3477).student3886,61361 -student(s3477).student3886,61361 -student(s3478).student3887,61377 -student(s3478).student3887,61377 -student(s3479).student3888,61393 -student(s3479).student3888,61393 -student(s3480).student3889,61409 -student(s3480).student3889,61409 -student(s3481).student3890,61425 -student(s3481).student3890,61425 -student(s3482).student3891,61441 -student(s3482).student3891,61441 -student(s3483).student3892,61457 -student(s3483).student3892,61457 -student(s3484).student3893,61473 -student(s3484).student3893,61473 -student(s3485).student3894,61489 -student(s3485).student3894,61489 -student(s3486).student3895,61505 -student(s3486).student3895,61505 -student(s3487).student3896,61521 -student(s3487).student3896,61521 -student(s3488).student3897,61537 -student(s3488).student3897,61537 -student(s3489).student3898,61553 -student(s3489).student3898,61553 -student(s3490).student3899,61569 -student(s3490).student3899,61569 -student(s3491).student3900,61585 -student(s3491).student3900,61585 -student(s3492).student3901,61601 -student(s3492).student3901,61601 -student(s3493).student3902,61617 -student(s3493).student3902,61617 -student(s3494).student3903,61633 -student(s3494).student3903,61633 -student(s3495).student3904,61649 -student(s3495).student3904,61649 -student(s3496).student3905,61665 -student(s3496).student3905,61665 -student(s3497).student3906,61681 -student(s3497).student3906,61681 -student(s3498).student3907,61697 -student(s3498).student3907,61697 -student(s3499).student3908,61713 -student(s3499).student3908,61713 -student(s3500).student3909,61729 -student(s3500).student3909,61729 -student(s3501).student3910,61745 -student(s3501).student3910,61745 -student(s3502).student3911,61761 -student(s3502).student3911,61761 -student(s3503).student3912,61777 -student(s3503).student3912,61777 -student(s3504).student3913,61793 -student(s3504).student3913,61793 -student(s3505).student3914,61809 -student(s3505).student3914,61809 -student(s3506).student3915,61825 -student(s3506).student3915,61825 -student(s3507).student3916,61841 -student(s3507).student3916,61841 -student(s3508).student3917,61857 -student(s3508).student3917,61857 -student(s3509).student3918,61873 -student(s3509).student3918,61873 -student(s3510).student3919,61889 -student(s3510).student3919,61889 -student(s3511).student3920,61905 -student(s3511).student3920,61905 -student(s3512).student3921,61921 -student(s3512).student3921,61921 -student(s3513).student3922,61937 -student(s3513).student3922,61937 -student(s3514).student3923,61953 -student(s3514).student3923,61953 -student(s3515).student3924,61969 -student(s3515).student3924,61969 -student(s3516).student3925,61985 -student(s3516).student3925,61985 -student(s3517).student3926,62001 -student(s3517).student3926,62001 -student(s3518).student3927,62017 -student(s3518).student3927,62017 -student(s3519).student3928,62033 -student(s3519).student3928,62033 -student(s3520).student3929,62049 -student(s3520).student3929,62049 -student(s3521).student3930,62065 -student(s3521).student3930,62065 -student(s3522).student3931,62081 -student(s3522).student3931,62081 -student(s3523).student3932,62097 -student(s3523).student3932,62097 -student(s3524).student3933,62113 -student(s3524).student3933,62113 -student(s3525).student3934,62129 -student(s3525).student3934,62129 -student(s3526).student3935,62145 -student(s3526).student3935,62145 -student(s3527).student3936,62161 -student(s3527).student3936,62161 -student(s3528).student3937,62177 -student(s3528).student3937,62177 -student(s3529).student3938,62193 -student(s3529).student3938,62193 -student(s3530).student3939,62209 -student(s3530).student3939,62209 -student(s3531).student3940,62225 -student(s3531).student3940,62225 -student(s3532).student3941,62241 -student(s3532).student3941,62241 -student(s3533).student3942,62257 -student(s3533).student3942,62257 -student(s3534).student3943,62273 -student(s3534).student3943,62273 -student(s3535).student3944,62289 -student(s3535).student3944,62289 -student(s3536).student3945,62305 -student(s3536).student3945,62305 -student(s3537).student3946,62321 -student(s3537).student3946,62321 -student(s3538).student3947,62337 -student(s3538).student3947,62337 -student(s3539).student3948,62353 -student(s3539).student3948,62353 -student(s3540).student3949,62369 -student(s3540).student3949,62369 -student(s3541).student3950,62385 -student(s3541).student3950,62385 -student(s3542).student3951,62401 -student(s3542).student3951,62401 -student(s3543).student3952,62417 -student(s3543).student3952,62417 -student(s3544).student3953,62433 -student(s3544).student3953,62433 -student(s3545).student3954,62449 -student(s3545).student3954,62449 -student(s3546).student3955,62465 -student(s3546).student3955,62465 -student(s3547).student3956,62481 -student(s3547).student3956,62481 -student(s3548).student3957,62497 -student(s3548).student3957,62497 -student(s3549).student3958,62513 -student(s3549).student3958,62513 -student(s3550).student3959,62529 -student(s3550).student3959,62529 -student(s3551).student3960,62545 -student(s3551).student3960,62545 -student(s3552).student3961,62561 -student(s3552).student3961,62561 -student(s3553).student3962,62577 -student(s3553).student3962,62577 -student(s3554).student3963,62593 -student(s3554).student3963,62593 -student(s3555).student3964,62609 -student(s3555).student3964,62609 -student(s3556).student3965,62625 -student(s3556).student3965,62625 -student(s3557).student3966,62641 -student(s3557).student3966,62641 -student(s3558).student3967,62657 -student(s3558).student3967,62657 -student(s3559).student3968,62673 -student(s3559).student3968,62673 -student(s3560).student3969,62689 -student(s3560).student3969,62689 -student(s3561).student3970,62705 -student(s3561).student3970,62705 -student(s3562).student3971,62721 -student(s3562).student3971,62721 -student(s3563).student3972,62737 -student(s3563).student3972,62737 -student(s3564).student3973,62753 -student(s3564).student3973,62753 -student(s3565).student3974,62769 -student(s3565).student3974,62769 -student(s3566).student3975,62785 -student(s3566).student3975,62785 -student(s3567).student3976,62801 -student(s3567).student3976,62801 -student(s3568).student3977,62817 -student(s3568).student3977,62817 -student(s3569).student3978,62833 -student(s3569).student3978,62833 -student(s3570).student3979,62849 -student(s3570).student3979,62849 -student(s3571).student3980,62865 -student(s3571).student3980,62865 -student(s3572).student3981,62881 -student(s3572).student3981,62881 -student(s3573).student3982,62897 -student(s3573).student3982,62897 -student(s3574).student3983,62913 -student(s3574).student3983,62913 -student(s3575).student3984,62929 -student(s3575).student3984,62929 -student(s3576).student3985,62945 -student(s3576).student3985,62945 -student(s3577).student3986,62961 -student(s3577).student3986,62961 -student(s3578).student3987,62977 -student(s3578).student3987,62977 -student(s3579).student3988,62993 -student(s3579).student3988,62993 -student(s3580).student3989,63009 -student(s3580).student3989,63009 -student(s3581).student3990,63025 -student(s3581).student3990,63025 -student(s3582).student3991,63041 -student(s3582).student3991,63041 -student(s3583).student3992,63057 -student(s3583).student3992,63057 -student(s3584).student3993,63073 -student(s3584).student3993,63073 -student(s3585).student3994,63089 -student(s3585).student3994,63089 -student(s3586).student3995,63105 -student(s3586).student3995,63105 -student(s3587).student3996,63121 -student(s3587).student3996,63121 -student(s3588).student3997,63137 -student(s3588).student3997,63137 -student(s3589).student3998,63153 -student(s3589).student3998,63153 -student(s3590).student3999,63169 -student(s3590).student3999,63169 -student(s3591).student4000,63185 -student(s3591).student4000,63185 -student(s3592).student4001,63201 -student(s3592).student4001,63201 -student(s3593).student4002,63217 -student(s3593).student4002,63217 -student(s3594).student4003,63233 -student(s3594).student4003,63233 -student(s3595).student4004,63249 -student(s3595).student4004,63249 -student(s3596).student4005,63265 -student(s3596).student4005,63265 -student(s3597).student4006,63281 -student(s3597).student4006,63281 -student(s3598).student4007,63297 -student(s3598).student4007,63297 -student(s3599).student4008,63313 -student(s3599).student4008,63313 -student(s3600).student4009,63329 -student(s3600).student4009,63329 -student(s3601).student4010,63345 -student(s3601).student4010,63345 -student(s3602).student4011,63361 -student(s3602).student4011,63361 -student(s3603).student4012,63377 -student(s3603).student4012,63377 -student(s3604).student4013,63393 -student(s3604).student4013,63393 -student(s3605).student4014,63409 -student(s3605).student4014,63409 -student(s3606).student4015,63425 -student(s3606).student4015,63425 -student(s3607).student4016,63441 -student(s3607).student4016,63441 -student(s3608).student4017,63457 -student(s3608).student4017,63457 -student(s3609).student4018,63473 -student(s3609).student4018,63473 -student(s3610).student4019,63489 -student(s3610).student4019,63489 -student(s3611).student4020,63505 -student(s3611).student4020,63505 -student(s3612).student4021,63521 -student(s3612).student4021,63521 -student(s3613).student4022,63537 -student(s3613).student4022,63537 -student(s3614).student4023,63553 -student(s3614).student4023,63553 -student(s3615).student4024,63569 -student(s3615).student4024,63569 -student(s3616).student4025,63585 -student(s3616).student4025,63585 -student(s3617).student4026,63601 -student(s3617).student4026,63601 -student(s3618).student4027,63617 -student(s3618).student4027,63617 -student(s3619).student4028,63633 -student(s3619).student4028,63633 -student(s3620).student4029,63649 -student(s3620).student4029,63649 -student(s3621).student4030,63665 -student(s3621).student4030,63665 -student(s3622).student4031,63681 -student(s3622).student4031,63681 -student(s3623).student4032,63697 -student(s3623).student4032,63697 -student(s3624).student4033,63713 -student(s3624).student4033,63713 -student(s3625).student4034,63729 -student(s3625).student4034,63729 -student(s3626).student4035,63745 -student(s3626).student4035,63745 -student(s3627).student4036,63761 -student(s3627).student4036,63761 -student(s3628).student4037,63777 -student(s3628).student4037,63777 -student(s3629).student4038,63793 -student(s3629).student4038,63793 -student(s3630).student4039,63809 -student(s3630).student4039,63809 -student(s3631).student4040,63825 -student(s3631).student4040,63825 -student(s3632).student4041,63841 -student(s3632).student4041,63841 -student(s3633).student4042,63857 -student(s3633).student4042,63857 -student(s3634).student4043,63873 -student(s3634).student4043,63873 -student(s3635).student4044,63889 -student(s3635).student4044,63889 -student(s3636).student4045,63905 -student(s3636).student4045,63905 -student(s3637).student4046,63921 -student(s3637).student4046,63921 -student(s3638).student4047,63937 -student(s3638).student4047,63937 -student(s3639).student4048,63953 -student(s3639).student4048,63953 -student(s3640).student4049,63969 -student(s3640).student4049,63969 -student(s3641).student4050,63985 -student(s3641).student4050,63985 -student(s3642).student4051,64001 -student(s3642).student4051,64001 -student(s3643).student4052,64017 -student(s3643).student4052,64017 -student(s3644).student4053,64033 -student(s3644).student4053,64033 -student(s3645).student4054,64049 -student(s3645).student4054,64049 -student(s3646).student4055,64065 -student(s3646).student4055,64065 -student(s3647).student4056,64081 -student(s3647).student4056,64081 -student(s3648).student4057,64097 -student(s3648).student4057,64097 -student(s3649).student4058,64113 -student(s3649).student4058,64113 -student(s3650).student4059,64129 -student(s3650).student4059,64129 -student(s3651).student4060,64145 -student(s3651).student4060,64145 -student(s3652).student4061,64161 -student(s3652).student4061,64161 -student(s3653).student4062,64177 -student(s3653).student4062,64177 -student(s3654).student4063,64193 -student(s3654).student4063,64193 -student(s3655).student4064,64209 -student(s3655).student4064,64209 -student(s3656).student4065,64225 -student(s3656).student4065,64225 -student(s3657).student4066,64241 -student(s3657).student4066,64241 -student(s3658).student4067,64257 -student(s3658).student4067,64257 -student(s3659).student4068,64273 -student(s3659).student4068,64273 -student(s3660).student4069,64289 -student(s3660).student4069,64289 -student(s3661).student4070,64305 -student(s3661).student4070,64305 -student(s3662).student4071,64321 -student(s3662).student4071,64321 -student(s3663).student4072,64337 -student(s3663).student4072,64337 -student(s3664).student4073,64353 -student(s3664).student4073,64353 -student(s3665).student4074,64369 -student(s3665).student4074,64369 -student(s3666).student4075,64385 -student(s3666).student4075,64385 -student(s3667).student4076,64401 -student(s3667).student4076,64401 -student(s3668).student4077,64417 -student(s3668).student4077,64417 -student(s3669).student4078,64433 -student(s3669).student4078,64433 -student(s3670).student4079,64449 -student(s3670).student4079,64449 -student(s3671).student4080,64465 -student(s3671).student4080,64465 -student(s3672).student4081,64481 -student(s3672).student4081,64481 -student(s3673).student4082,64497 -student(s3673).student4082,64497 -student(s3674).student4083,64513 -student(s3674).student4083,64513 -student(s3675).student4084,64529 -student(s3675).student4084,64529 -student(s3676).student4085,64545 -student(s3676).student4085,64545 -student(s3677).student4086,64561 -student(s3677).student4086,64561 -student(s3678).student4087,64577 -student(s3678).student4087,64577 -student(s3679).student4088,64593 -student(s3679).student4088,64593 -student(s3680).student4089,64609 -student(s3680).student4089,64609 -student(s3681).student4090,64625 -student(s3681).student4090,64625 -student(s3682).student4091,64641 -student(s3682).student4091,64641 -student(s3683).student4092,64657 -student(s3683).student4092,64657 -student(s3684).student4093,64673 -student(s3684).student4093,64673 -student(s3685).student4094,64689 -student(s3685).student4094,64689 -student(s3686).student4095,64705 -student(s3686).student4095,64705 -student(s3687).student4096,64721 -student(s3687).student4096,64721 -student(s3688).student4097,64737 -student(s3688).student4097,64737 -student(s3689).student4098,64753 -student(s3689).student4098,64753 -student(s3690).student4099,64769 -student(s3690).student4099,64769 -student(s3691).student4100,64785 -student(s3691).student4100,64785 -student(s3692).student4101,64801 -student(s3692).student4101,64801 -student(s3693).student4102,64817 -student(s3693).student4102,64817 -student(s3694).student4103,64833 -student(s3694).student4103,64833 -student(s3695).student4104,64849 -student(s3695).student4104,64849 -student(s3696).student4105,64865 -student(s3696).student4105,64865 -student(s3697).student4106,64881 -student(s3697).student4106,64881 -student(s3698).student4107,64897 -student(s3698).student4107,64897 -student(s3699).student4108,64913 -student(s3699).student4108,64913 -student(s3700).student4109,64929 -student(s3700).student4109,64929 -student(s3701).student4110,64945 -student(s3701).student4110,64945 -student(s3702).student4111,64961 -student(s3702).student4111,64961 -student(s3703).student4112,64977 -student(s3703).student4112,64977 -student(s3704).student4113,64993 -student(s3704).student4113,64993 -student(s3705).student4114,65009 -student(s3705).student4114,65009 -student(s3706).student4115,65025 -student(s3706).student4115,65025 -student(s3707).student4116,65041 -student(s3707).student4116,65041 -student(s3708).student4117,65057 -student(s3708).student4117,65057 -student(s3709).student4118,65073 -student(s3709).student4118,65073 -student(s3710).student4119,65089 -student(s3710).student4119,65089 -student(s3711).student4120,65105 -student(s3711).student4120,65105 -student(s3712).student4121,65121 -student(s3712).student4121,65121 -student(s3713).student4122,65137 -student(s3713).student4122,65137 -student(s3714).student4123,65153 -student(s3714).student4123,65153 -student(s3715).student4124,65169 -student(s3715).student4124,65169 -student(s3716).student4125,65185 -student(s3716).student4125,65185 -student(s3717).student4126,65201 -student(s3717).student4126,65201 -student(s3718).student4127,65217 -student(s3718).student4127,65217 -student(s3719).student4128,65233 -student(s3719).student4128,65233 -student(s3720).student4129,65249 -student(s3720).student4129,65249 -student(s3721).student4130,65265 -student(s3721).student4130,65265 -student(s3722).student4131,65281 -student(s3722).student4131,65281 -student(s3723).student4132,65297 -student(s3723).student4132,65297 -student(s3724).student4133,65313 -student(s3724).student4133,65313 -student(s3725).student4134,65329 -student(s3725).student4134,65329 -student(s3726).student4135,65345 -student(s3726).student4135,65345 -student(s3727).student4136,65361 -student(s3727).student4136,65361 -student(s3728).student4137,65377 -student(s3728).student4137,65377 -student(s3729).student4138,65393 -student(s3729).student4138,65393 -student(s3730).student4139,65409 -student(s3730).student4139,65409 -student(s3731).student4140,65425 -student(s3731).student4140,65425 -student(s3732).student4141,65441 -student(s3732).student4141,65441 -student(s3733).student4142,65457 -student(s3733).student4142,65457 -student(s3734).student4143,65473 -student(s3734).student4143,65473 -student(s3735).student4144,65489 -student(s3735).student4144,65489 -student(s3736).student4145,65505 -student(s3736).student4145,65505 -student(s3737).student4146,65521 -student(s3737).student4146,65521 -student(s3738).student4147,65537 -student(s3738).student4147,65537 -student(s3739).student4148,65553 -student(s3739).student4148,65553 -student(s3740).student4149,65569 -student(s3740).student4149,65569 -student(s3741).student4150,65585 -student(s3741).student4150,65585 -student(s3742).student4151,65601 -student(s3742).student4151,65601 -student(s3743).student4152,65617 -student(s3743).student4152,65617 -student(s3744).student4153,65633 -student(s3744).student4153,65633 -student(s3745).student4154,65649 -student(s3745).student4154,65649 -student(s3746).student4155,65665 -student(s3746).student4155,65665 -student(s3747).student4156,65681 -student(s3747).student4156,65681 -student(s3748).student4157,65697 -student(s3748).student4157,65697 -student(s3749).student4158,65713 -student(s3749).student4158,65713 -student(s3750).student4159,65729 -student(s3750).student4159,65729 -student(s3751).student4160,65745 -student(s3751).student4160,65745 -student(s3752).student4161,65761 -student(s3752).student4161,65761 -student(s3753).student4162,65777 -student(s3753).student4162,65777 -student(s3754).student4163,65793 -student(s3754).student4163,65793 -student(s3755).student4164,65809 -student(s3755).student4164,65809 -student(s3756).student4165,65825 -student(s3756).student4165,65825 -student(s3757).student4166,65841 -student(s3757).student4166,65841 -student(s3758).student4167,65857 -student(s3758).student4167,65857 -student(s3759).student4168,65873 -student(s3759).student4168,65873 -student(s3760).student4169,65889 -student(s3760).student4169,65889 -student(s3761).student4170,65905 -student(s3761).student4170,65905 -student(s3762).student4171,65921 -student(s3762).student4171,65921 -student(s3763).student4172,65937 -student(s3763).student4172,65937 -student(s3764).student4173,65953 -student(s3764).student4173,65953 -student(s3765).student4174,65969 -student(s3765).student4174,65969 -student(s3766).student4175,65985 -student(s3766).student4175,65985 -student(s3767).student4176,66001 -student(s3767).student4176,66001 -student(s3768).student4177,66017 -student(s3768).student4177,66017 -student(s3769).student4178,66033 -student(s3769).student4178,66033 -student(s3770).student4179,66049 -student(s3770).student4179,66049 -student(s3771).student4180,66065 -student(s3771).student4180,66065 -student(s3772).student4181,66081 -student(s3772).student4181,66081 -student(s3773).student4182,66097 -student(s3773).student4182,66097 -student(s3774).student4183,66113 -student(s3774).student4183,66113 -student(s3775).student4184,66129 -student(s3775).student4184,66129 -student(s3776).student4185,66145 -student(s3776).student4185,66145 -student(s3777).student4186,66161 -student(s3777).student4186,66161 -student(s3778).student4187,66177 -student(s3778).student4187,66177 -student(s3779).student4188,66193 -student(s3779).student4188,66193 -student(s3780).student4189,66209 -student(s3780).student4189,66209 -student(s3781).student4190,66225 -student(s3781).student4190,66225 -student(s3782).student4191,66241 -student(s3782).student4191,66241 -student(s3783).student4192,66257 -student(s3783).student4192,66257 -student(s3784).student4193,66273 -student(s3784).student4193,66273 -student(s3785).student4194,66289 -student(s3785).student4194,66289 -student(s3786).student4195,66305 -student(s3786).student4195,66305 -student(s3787).student4196,66321 -student(s3787).student4196,66321 -student(s3788).student4197,66337 -student(s3788).student4197,66337 -student(s3789).student4198,66353 -student(s3789).student4198,66353 -student(s3790).student4199,66369 -student(s3790).student4199,66369 -student(s3791).student4200,66385 -student(s3791).student4200,66385 -student(s3792).student4201,66401 -student(s3792).student4201,66401 -student(s3793).student4202,66417 -student(s3793).student4202,66417 -student(s3794).student4203,66433 -student(s3794).student4203,66433 -student(s3795).student4204,66449 -student(s3795).student4204,66449 -student(s3796).student4205,66465 -student(s3796).student4205,66465 -student(s3797).student4206,66481 -student(s3797).student4206,66481 -student(s3798).student4207,66497 -student(s3798).student4207,66497 -student(s3799).student4208,66513 -student(s3799).student4208,66513 -student(s3800).student4209,66529 -student(s3800).student4209,66529 -student(s3801).student4210,66545 -student(s3801).student4210,66545 -student(s3802).student4211,66561 -student(s3802).student4211,66561 -student(s3803).student4212,66577 -student(s3803).student4212,66577 -student(s3804).student4213,66593 -student(s3804).student4213,66593 -student(s3805).student4214,66609 -student(s3805).student4214,66609 -student(s3806).student4215,66625 -student(s3806).student4215,66625 -student(s3807).student4216,66641 -student(s3807).student4216,66641 -student(s3808).student4217,66657 -student(s3808).student4217,66657 -student(s3809).student4218,66673 -student(s3809).student4218,66673 -student(s3810).student4219,66689 -student(s3810).student4219,66689 -student(s3811).student4220,66705 -student(s3811).student4220,66705 -student(s3812).student4221,66721 -student(s3812).student4221,66721 -student(s3813).student4222,66737 -student(s3813).student4222,66737 -student(s3814).student4223,66753 -student(s3814).student4223,66753 -student(s3815).student4224,66769 -student(s3815).student4224,66769 -student(s3816).student4225,66785 -student(s3816).student4225,66785 -student(s3817).student4226,66801 -student(s3817).student4226,66801 -student(s3818).student4227,66817 -student(s3818).student4227,66817 -student(s3819).student4228,66833 -student(s3819).student4228,66833 -student(s3820).student4229,66849 -student(s3820).student4229,66849 -student(s3821).student4230,66865 -student(s3821).student4230,66865 -student(s3822).student4231,66881 -student(s3822).student4231,66881 -student(s3823).student4232,66897 -student(s3823).student4232,66897 -student(s3824).student4233,66913 -student(s3824).student4233,66913 -student(s3825).student4234,66929 -student(s3825).student4234,66929 -student(s3826).student4235,66945 -student(s3826).student4235,66945 -student(s3827).student4236,66961 -student(s3827).student4236,66961 -student(s3828).student4237,66977 -student(s3828).student4237,66977 -student(s3829).student4238,66993 -student(s3829).student4238,66993 -student(s3830).student4239,67009 -student(s3830).student4239,67009 -student(s3831).student4240,67025 -student(s3831).student4240,67025 -student(s3832).student4241,67041 -student(s3832).student4241,67041 -student(s3833).student4242,67057 -student(s3833).student4242,67057 -student(s3834).student4243,67073 -student(s3834).student4243,67073 -student(s3835).student4244,67089 -student(s3835).student4244,67089 -student(s3836).student4245,67105 -student(s3836).student4245,67105 -student(s3837).student4246,67121 -student(s3837).student4246,67121 -student(s3838).student4247,67137 -student(s3838).student4247,67137 -student(s3839).student4248,67153 -student(s3839).student4248,67153 -student(s3840).student4249,67169 -student(s3840).student4249,67169 -student(s3841).student4250,67185 -student(s3841).student4250,67185 -student(s3842).student4251,67201 -student(s3842).student4251,67201 -student(s3843).student4252,67217 -student(s3843).student4252,67217 -student(s3844).student4253,67233 -student(s3844).student4253,67233 -student(s3845).student4254,67249 -student(s3845).student4254,67249 -student(s3846).student4255,67265 -student(s3846).student4255,67265 -student(s3847).student4256,67281 -student(s3847).student4256,67281 -student(s3848).student4257,67297 -student(s3848).student4257,67297 -student(s3849).student4258,67313 -student(s3849).student4258,67313 -student(s3850).student4259,67329 -student(s3850).student4259,67329 -student(s3851).student4260,67345 -student(s3851).student4260,67345 -student(s3852).student4261,67361 -student(s3852).student4261,67361 -student(s3853).student4262,67377 -student(s3853).student4262,67377 -student(s3854).student4263,67393 -student(s3854).student4263,67393 -student(s3855).student4264,67409 -student(s3855).student4264,67409 -student(s3856).student4265,67425 -student(s3856).student4265,67425 -student(s3857).student4266,67441 -student(s3857).student4266,67441 -student(s3858).student4267,67457 -student(s3858).student4267,67457 -student(s3859).student4268,67473 -student(s3859).student4268,67473 -student(s3860).student4269,67489 -student(s3860).student4269,67489 -student(s3861).student4270,67505 -student(s3861).student4270,67505 -student(s3862).student4271,67521 -student(s3862).student4271,67521 -student(s3863).student4272,67537 -student(s3863).student4272,67537 -student(s3864).student4273,67553 -student(s3864).student4273,67553 -student(s3865).student4274,67569 -student(s3865).student4274,67569 -student(s3866).student4275,67585 -student(s3866).student4275,67585 -student(s3867).student4276,67601 -student(s3867).student4276,67601 -student(s3868).student4277,67617 -student(s3868).student4277,67617 -student(s3869).student4278,67633 -student(s3869).student4278,67633 -student(s3870).student4279,67649 -student(s3870).student4279,67649 -student(s3871).student4280,67665 -student(s3871).student4280,67665 -student(s3872).student4281,67681 -student(s3872).student4281,67681 -student(s3873).student4282,67697 -student(s3873).student4282,67697 -student(s3874).student4283,67713 -student(s3874).student4283,67713 -student(s3875).student4284,67729 -student(s3875).student4284,67729 -student(s3876).student4285,67745 -student(s3876).student4285,67745 -student(s3877).student4286,67761 -student(s3877).student4286,67761 -student(s3878).student4287,67777 -student(s3878).student4287,67777 -student(s3879).student4288,67793 -student(s3879).student4288,67793 -student(s3880).student4289,67809 -student(s3880).student4289,67809 -student(s3881).student4290,67825 -student(s3881).student4290,67825 -student(s3882).student4291,67841 -student(s3882).student4291,67841 -student(s3883).student4292,67857 -student(s3883).student4292,67857 -student(s3884).student4293,67873 -student(s3884).student4293,67873 -student(s3885).student4294,67889 -student(s3885).student4294,67889 -student(s3886).student4295,67905 -student(s3886).student4295,67905 -student(s3887).student4296,67921 -student(s3887).student4296,67921 -student(s3888).student4297,67937 -student(s3888).student4297,67937 -student(s3889).student4298,67953 -student(s3889).student4298,67953 -student(s3890).student4299,67969 -student(s3890).student4299,67969 -student(s3891).student4300,67985 -student(s3891).student4300,67985 -student(s3892).student4301,68001 -student(s3892).student4301,68001 -student(s3893).student4302,68017 -student(s3893).student4302,68017 -student(s3894).student4303,68033 -student(s3894).student4303,68033 -student(s3895).student4304,68049 -student(s3895).student4304,68049 -student(s3896).student4305,68065 -student(s3896).student4305,68065 -student(s3897).student4306,68081 -student(s3897).student4306,68081 -student(s3898).student4307,68097 -student(s3898).student4307,68097 -student(s3899).student4308,68113 -student(s3899).student4308,68113 -student(s3900).student4309,68129 -student(s3900).student4309,68129 -student(s3901).student4310,68145 -student(s3901).student4310,68145 -student(s3902).student4311,68161 -student(s3902).student4311,68161 -student(s3903).student4312,68177 -student(s3903).student4312,68177 -student(s3904).student4313,68193 -student(s3904).student4313,68193 -student(s3905).student4314,68209 -student(s3905).student4314,68209 -student(s3906).student4315,68225 -student(s3906).student4315,68225 -student(s3907).student4316,68241 -student(s3907).student4316,68241 -student(s3908).student4317,68257 -student(s3908).student4317,68257 -student(s3909).student4318,68273 -student(s3909).student4318,68273 -student(s3910).student4319,68289 -student(s3910).student4319,68289 -student(s3911).student4320,68305 -student(s3911).student4320,68305 -student(s3912).student4321,68321 -student(s3912).student4321,68321 -student(s3913).student4322,68337 -student(s3913).student4322,68337 -student(s3914).student4323,68353 -student(s3914).student4323,68353 -student(s3915).student4324,68369 -student(s3915).student4324,68369 -student(s3916).student4325,68385 -student(s3916).student4325,68385 -student(s3917).student4326,68401 -student(s3917).student4326,68401 -student(s3918).student4327,68417 -student(s3918).student4327,68417 -student(s3919).student4328,68433 -student(s3919).student4328,68433 -student(s3920).student4329,68449 -student(s3920).student4329,68449 -student(s3921).student4330,68465 -student(s3921).student4330,68465 -student(s3922).student4331,68481 -student(s3922).student4331,68481 -student(s3923).student4332,68497 -student(s3923).student4332,68497 -student(s3924).student4333,68513 -student(s3924).student4333,68513 -student(s3925).student4334,68529 -student(s3925).student4334,68529 -student(s3926).student4335,68545 -student(s3926).student4335,68545 -student(s3927).student4336,68561 -student(s3927).student4336,68561 -student(s3928).student4337,68577 -student(s3928).student4337,68577 -student(s3929).student4338,68593 -student(s3929).student4338,68593 -student(s3930).student4339,68609 -student(s3930).student4339,68609 -student(s3931).student4340,68625 -student(s3931).student4340,68625 -student(s3932).student4341,68641 -student(s3932).student4341,68641 -student(s3933).student4342,68657 -student(s3933).student4342,68657 -student(s3934).student4343,68673 -student(s3934).student4343,68673 -student(s3935).student4344,68689 -student(s3935).student4344,68689 -student(s3936).student4345,68705 -student(s3936).student4345,68705 -student(s3937).student4346,68721 -student(s3937).student4346,68721 -student(s3938).student4347,68737 -student(s3938).student4347,68737 -student(s3939).student4348,68753 -student(s3939).student4348,68753 -student(s3940).student4349,68769 -student(s3940).student4349,68769 -student(s3941).student4350,68785 -student(s3941).student4350,68785 -student(s3942).student4351,68801 -student(s3942).student4351,68801 -student(s3943).student4352,68817 -student(s3943).student4352,68817 -student(s3944).student4353,68833 -student(s3944).student4353,68833 -student(s3945).student4354,68849 -student(s3945).student4354,68849 -student(s3946).student4355,68865 -student(s3946).student4355,68865 -student(s3947).student4356,68881 -student(s3947).student4356,68881 -student(s3948).student4357,68897 -student(s3948).student4357,68897 -student(s3949).student4358,68913 -student(s3949).student4358,68913 -student(s3950).student4359,68929 -student(s3950).student4359,68929 -student(s3951).student4360,68945 -student(s3951).student4360,68945 -student(s3952).student4361,68961 -student(s3952).student4361,68961 -student(s3953).student4362,68977 -student(s3953).student4362,68977 -student(s3954).student4363,68993 -student(s3954).student4363,68993 -student(s3955).student4364,69009 -student(s3955).student4364,69009 -student(s3956).student4365,69025 -student(s3956).student4365,69025 -student(s3957).student4366,69041 -student(s3957).student4366,69041 -student(s3958).student4367,69057 -student(s3958).student4367,69057 -student(s3959).student4368,69073 -student(s3959).student4368,69073 -student(s3960).student4369,69089 -student(s3960).student4369,69089 -student(s3961).student4370,69105 -student(s3961).student4370,69105 -student(s3962).student4371,69121 -student(s3962).student4371,69121 -student(s3963).student4372,69137 -student(s3963).student4372,69137 -student(s3964).student4373,69153 -student(s3964).student4373,69153 -student(s3965).student4374,69169 -student(s3965).student4374,69169 -student(s3966).student4375,69185 -student(s3966).student4375,69185 -student(s3967).student4376,69201 -student(s3967).student4376,69201 -student(s3968).student4377,69217 -student(s3968).student4377,69217 -student(s3969).student4378,69233 -student(s3969).student4378,69233 -student(s3970).student4379,69249 -student(s3970).student4379,69249 -student(s3971).student4380,69265 -student(s3971).student4380,69265 -student(s3972).student4381,69281 -student(s3972).student4381,69281 -student(s3973).student4382,69297 -student(s3973).student4382,69297 -student(s3974).student4383,69313 -student(s3974).student4383,69313 -student(s3975).student4384,69329 -student(s3975).student4384,69329 -student(s3976).student4385,69345 -student(s3976).student4385,69345 -student(s3977).student4386,69361 -student(s3977).student4386,69361 -student(s3978).student4387,69377 -student(s3978).student4387,69377 -student(s3979).student4388,69393 -student(s3979).student4388,69393 -student(s3980).student4389,69409 -student(s3980).student4389,69409 -student(s3981).student4390,69425 -student(s3981).student4390,69425 -student(s3982).student4391,69441 -student(s3982).student4391,69441 -student(s3983).student4392,69457 -student(s3983).student4392,69457 -student(s3984).student4393,69473 -student(s3984).student4393,69473 -student(s3985).student4394,69489 -student(s3985).student4394,69489 -student(s3986).student4395,69505 -student(s3986).student4395,69505 -student(s3987).student4396,69521 -student(s3987).student4396,69521 -student(s3988).student4397,69537 -student(s3988).student4397,69537 -student(s3989).student4398,69553 -student(s3989).student4398,69553 -student(s3990).student4399,69569 -student(s3990).student4399,69569 -student(s3991).student4400,69585 -student(s3991).student4400,69585 -student(s3992).student4401,69601 -student(s3992).student4401,69601 -student(s3993).student4402,69617 -student(s3993).student4402,69617 -student(s3994).student4403,69633 -student(s3994).student4403,69633 -student(s3995).student4404,69649 -student(s3995).student4404,69649 -student(s3996).student4405,69665 -student(s3996).student4405,69665 -student(s3997).student4406,69681 -student(s3997).student4406,69681 -student(s3998).student4407,69697 -student(s3998).student4407,69697 -student(s3999).student4408,69713 -student(s3999).student4408,69713 -student(s4000).student4409,69729 -student(s4000).student4409,69729 -student(s4001).student4410,69745 -student(s4001).student4410,69745 -student(s4002).student4411,69761 -student(s4002).student4411,69761 -student(s4003).student4412,69777 -student(s4003).student4412,69777 -student(s4004).student4413,69793 -student(s4004).student4413,69793 -student(s4005).student4414,69809 -student(s4005).student4414,69809 -student(s4006).student4415,69825 -student(s4006).student4415,69825 -student(s4007).student4416,69841 -student(s4007).student4416,69841 -student(s4008).student4417,69857 -student(s4008).student4417,69857 -student(s4009).student4418,69873 -student(s4009).student4418,69873 -student(s4010).student4419,69889 -student(s4010).student4419,69889 -student(s4011).student4420,69905 -student(s4011).student4420,69905 -student(s4012).student4421,69921 -student(s4012).student4421,69921 -student(s4013).student4422,69937 -student(s4013).student4422,69937 -student(s4014).student4423,69953 -student(s4014).student4423,69953 -student(s4015).student4424,69969 -student(s4015).student4424,69969 -student(s4016).student4425,69985 -student(s4016).student4425,69985 -student(s4017).student4426,70001 -student(s4017).student4426,70001 -student(s4018).student4427,70017 -student(s4018).student4427,70017 -student(s4019).student4428,70033 -student(s4019).student4428,70033 -student(s4020).student4429,70049 -student(s4020).student4429,70049 -student(s4021).student4430,70065 -student(s4021).student4430,70065 -student(s4022).student4431,70081 -student(s4022).student4431,70081 -student(s4023).student4432,70097 -student(s4023).student4432,70097 -student(s4024).student4433,70113 -student(s4024).student4433,70113 -student(s4025).student4434,70129 -student(s4025).student4434,70129 -student(s4026).student4435,70145 -student(s4026).student4435,70145 -student(s4027).student4436,70161 -student(s4027).student4436,70161 -student(s4028).student4437,70177 -student(s4028).student4437,70177 -student(s4029).student4438,70193 -student(s4029).student4438,70193 -student(s4030).student4439,70209 -student(s4030).student4439,70209 -student(s4031).student4440,70225 -student(s4031).student4440,70225 -student(s4032).student4441,70241 -student(s4032).student4441,70241 -student(s4033).student4442,70257 -student(s4033).student4442,70257 -student(s4034).student4443,70273 -student(s4034).student4443,70273 -student(s4035).student4444,70289 -student(s4035).student4444,70289 -student(s4036).student4445,70305 -student(s4036).student4445,70305 -student(s4037).student4446,70321 -student(s4037).student4446,70321 -student(s4038).student4447,70337 -student(s4038).student4447,70337 -student(s4039).student4448,70353 -student(s4039).student4448,70353 -student(s4040).student4449,70369 -student(s4040).student4449,70369 -student(s4041).student4450,70385 -student(s4041).student4450,70385 -student(s4042).student4451,70401 -student(s4042).student4451,70401 -student(s4043).student4452,70417 -student(s4043).student4452,70417 -student(s4044).student4453,70433 -student(s4044).student4453,70433 -student(s4045).student4454,70449 -student(s4045).student4454,70449 -student(s4046).student4455,70465 -student(s4046).student4455,70465 -student(s4047).student4456,70481 -student(s4047).student4456,70481 -student(s4048).student4457,70497 -student(s4048).student4457,70497 -student(s4049).student4458,70513 -student(s4049).student4458,70513 -student(s4050).student4459,70529 -student(s4050).student4459,70529 -student(s4051).student4460,70545 -student(s4051).student4460,70545 -student(s4052).student4461,70561 -student(s4052).student4461,70561 -student(s4053).student4462,70577 -student(s4053).student4462,70577 -student(s4054).student4463,70593 -student(s4054).student4463,70593 -student(s4055).student4464,70609 -student(s4055).student4464,70609 -student(s4056).student4465,70625 -student(s4056).student4465,70625 -student(s4057).student4466,70641 -student(s4057).student4466,70641 -student(s4058).student4467,70657 -student(s4058).student4467,70657 -student(s4059).student4468,70673 -student(s4059).student4468,70673 -student(s4060).student4469,70689 -student(s4060).student4469,70689 -student(s4061).student4470,70705 -student(s4061).student4470,70705 -student(s4062).student4471,70721 -student(s4062).student4471,70721 -student(s4063).student4472,70737 -student(s4063).student4472,70737 -student(s4064).student4473,70753 -student(s4064).student4473,70753 -student(s4065).student4474,70769 -student(s4065).student4474,70769 -student(s4066).student4475,70785 -student(s4066).student4475,70785 -student(s4067).student4476,70801 -student(s4067).student4476,70801 -student(s4068).student4477,70817 -student(s4068).student4477,70817 -student(s4069).student4478,70833 -student(s4069).student4478,70833 -student(s4070).student4479,70849 -student(s4070).student4479,70849 -student(s4071).student4480,70865 -student(s4071).student4480,70865 -student(s4072).student4481,70881 -student(s4072).student4481,70881 -student(s4073).student4482,70897 -student(s4073).student4482,70897 -student(s4074).student4483,70913 -student(s4074).student4483,70913 -student(s4075).student4484,70929 -student(s4075).student4484,70929 -student(s4076).student4485,70945 -student(s4076).student4485,70945 -student(s4077).student4486,70961 -student(s4077).student4486,70961 -student(s4078).student4487,70977 -student(s4078).student4487,70977 -student(s4079).student4488,70993 -student(s4079).student4488,70993 -student(s4080).student4489,71009 -student(s4080).student4489,71009 -student(s4081).student4490,71025 -student(s4081).student4490,71025 -student(s4082).student4491,71041 -student(s4082).student4491,71041 -student(s4083).student4492,71057 -student(s4083).student4492,71057 -student(s4084).student4493,71073 -student(s4084).student4493,71073 -student(s4085).student4494,71089 -student(s4085).student4494,71089 -student(s4086).student4495,71105 -student(s4086).student4495,71105 -student(s4087).student4496,71121 -student(s4087).student4496,71121 -student(s4088).student4497,71137 -student(s4088).student4497,71137 -student(s4089).student4498,71153 -student(s4089).student4498,71153 -student(s4090).student4499,71169 -student(s4090).student4499,71169 -student(s4091).student4500,71185 -student(s4091).student4500,71185 -student(s4092).student4501,71201 -student(s4092).student4501,71201 -student(s4093).student4502,71217 -student(s4093).student4502,71217 -student(s4094).student4503,71233 -student(s4094).student4503,71233 -student(s4095).student4504,71249 -student(s4095).student4504,71249 -registration(r0,c166,s0).registration4507,71267 -registration(r0,c166,s0).registration4507,71267 -registration(r1,c11,s0).registration4508,71293 -registration(r1,c11,s0).registration4508,71293 -registration(r2,c213,s0).registration4509,71318 -registration(r2,c213,s0).registration4509,71318 -registration(r3,c188,s1).registration4510,71344 -registration(r3,c188,s1).registration4510,71344 -registration(r4,c4,s1).registration4511,71370 -registration(r4,c4,s1).registration4511,71370 -registration(r5,c191,s1).registration4512,71394 -registration(r5,c191,s1).registration4512,71394 -registration(r6,c3,s1).registration4513,71420 -registration(r6,c3,s1).registration4513,71420 -registration(r7,c55,s2).registration4514,71444 -registration(r7,c55,s2).registration4514,71444 -registration(r8,c229,s2).registration4515,71469 -registration(r8,c229,s2).registration4515,71469 -registration(r9,c158,s2).registration4516,71495 -registration(r9,c158,s2).registration4516,71495 -registration(r10,c161,s2).registration4517,71521 -registration(r10,c161,s2).registration4517,71521 -registration(r11,c67,s3).registration4518,71548 -registration(r11,c67,s3).registration4518,71548 -registration(r12,c187,s3).registration4519,71574 -registration(r12,c187,s3).registration4519,71574 -registration(r13,c121,s3).registration4520,71601 -registration(r13,c121,s3).registration4520,71601 -registration(r14,c52,s4).registration4521,71628 -registration(r14,c52,s4).registration4521,71628 -registration(r15,c160,s4).registration4522,71654 -registration(r15,c160,s4).registration4522,71654 -registration(r16,c187,s4).registration4523,71681 -registration(r16,c187,s4).registration4523,71681 -registration(r17,c144,s5).registration4524,71708 -registration(r17,c144,s5).registration4524,71708 -registration(r18,c167,s5).registration4525,71735 -registration(r18,c167,s5).registration4525,71735 -registration(r19,c224,s5).registration4526,71762 -registration(r19,c224,s5).registration4526,71762 -registration(r20,c235,s6).registration4527,71789 -registration(r20,c235,s6).registration4527,71789 -registration(r21,c126,s6).registration4528,71816 -registration(r21,c126,s6).registration4528,71816 -registration(r22,c73,s6).registration4529,71843 -registration(r22,c73,s6).registration4529,71843 -registration(r23,c79,s7).registration4530,71869 -registration(r23,c79,s7).registration4530,71869 -registration(r24,c68,s7).registration4531,71895 -registration(r24,c68,s7).registration4531,71895 -registration(r25,c100,s7).registration4532,71921 -registration(r25,c100,s7).registration4532,71921 -registration(r26,c154,s8).registration4533,71948 -registration(r26,c154,s8).registration4533,71948 -registration(r27,c55,s8).registration4534,71975 -registration(r27,c55,s8).registration4534,71975 -registration(r28,c143,s8).registration4535,72001 -registration(r28,c143,s8).registration4535,72001 -registration(r29,c195,s9).registration4536,72028 -registration(r29,c195,s9).registration4536,72028 -registration(r30,c224,s9).registration4537,72055 -registration(r30,c224,s9).registration4537,72055 -registration(r31,c147,s9).registration4538,72082 -registration(r31,c147,s9).registration4538,72082 -registration(r32,c89,s10).registration4539,72109 -registration(r32,c89,s10).registration4539,72109 -registration(r33,c113,s10).registration4540,72136 -registration(r33,c113,s10).registration4540,72136 -registration(r34,c101,s10).registration4541,72164 -registration(r34,c101,s10).registration4541,72164 -registration(r35,c66,s10).registration4542,72192 -registration(r35,c66,s10).registration4542,72192 -registration(r36,c165,s11).registration4543,72219 -registration(r36,c165,s11).registration4543,72219 -registration(r37,c235,s11).registration4544,72247 -registration(r37,c235,s11).registration4544,72247 -registration(r38,c157,s11).registration4545,72275 -registration(r38,c157,s11).registration4545,72275 -registration(r39,c137,s12).registration4546,72303 -registration(r39,c137,s12).registration4546,72303 -registration(r40,c205,s12).registration4547,72331 -registration(r40,c205,s12).registration4547,72331 -registration(r41,c130,s12).registration4548,72359 -registration(r41,c130,s12).registration4548,72359 -registration(r42,c8,s12).registration4549,72387 -registration(r42,c8,s12).registration4549,72387 -registration(r43,c83,s13).registration4550,72413 -registration(r43,c83,s13).registration4550,72413 -registration(r44,c108,s13).registration4551,72440 -registration(r44,c108,s13).registration4551,72440 -registration(r45,c36,s13).registration4552,72468 -registration(r45,c36,s13).registration4552,72468 -registration(r46,c93,s13).registration4553,72495 -registration(r46,c93,s13).registration4553,72495 -registration(r47,c211,s14).registration4554,72522 -registration(r47,c211,s14).registration4554,72522 -registration(r48,c163,s14).registration4555,72550 -registration(r48,c163,s14).registration4555,72550 -registration(r49,c54,s14).registration4556,72578 -registration(r49,c54,s14).registration4556,72578 -registration(r50,c203,s15).registration4557,72605 -registration(r50,c203,s15).registration4557,72605 -registration(r51,c211,s15).registration4558,72633 -registration(r51,c211,s15).registration4558,72633 -registration(r52,c73,s15).registration4559,72661 -registration(r52,c73,s15).registration4559,72661 -registration(r53,c67,s15).registration4560,72688 -registration(r53,c67,s15).registration4560,72688 -registration(r54,c57,s16).registration4561,72715 -registration(r54,c57,s16).registration4561,72715 -registration(r55,c136,s16).registration4562,72742 -registration(r55,c136,s16).registration4562,72742 -registration(r56,c110,s16).registration4563,72770 -registration(r56,c110,s16).registration4563,72770 -registration(r57,c12,s17).registration4564,72798 -registration(r57,c12,s17).registration4564,72798 -registration(r58,c45,s17).registration4565,72825 -registration(r58,c45,s17).registration4565,72825 -registration(r59,c172,s17).registration4566,72852 -registration(r59,c172,s17).registration4566,72852 -registration(r60,c46,s18).registration4567,72880 -registration(r60,c46,s18).registration4567,72880 -registration(r61,c164,s18).registration4568,72907 -registration(r61,c164,s18).registration4568,72907 -registration(r62,c3,s18).registration4569,72935 -registration(r62,c3,s18).registration4569,72935 -registration(r63,c247,s18).registration4570,72961 -registration(r63,c247,s18).registration4570,72961 -registration(r64,c37,s19).registration4571,72989 -registration(r64,c37,s19).registration4571,72989 -registration(r65,c60,s19).registration4572,73016 -registration(r65,c60,s19).registration4572,73016 -registration(r66,c118,s19).registration4573,73043 -registration(r66,c118,s19).registration4573,73043 -registration(r67,c25,s19).registration4574,73071 -registration(r67,c25,s19).registration4574,73071 -registration(r68,c185,s20).registration4575,73098 -registration(r68,c185,s20).registration4575,73098 -registration(r69,c165,s20).registration4576,73126 -registration(r69,c165,s20).registration4576,73126 -registration(r70,c157,s20).registration4577,73154 -registration(r70,c157,s20).registration4577,73154 -registration(r71,c232,s21).registration4578,73182 -registration(r71,c232,s21).registration4578,73182 -registration(r72,c169,s21).registration4579,73210 -registration(r72,c169,s21).registration4579,73210 -registration(r73,c188,s21).registration4580,73238 -registration(r73,c188,s21).registration4580,73238 -registration(r74,c68,s22).registration4581,73266 -registration(r74,c68,s22).registration4581,73266 -registration(r75,c5,s22).registration4582,73293 -registration(r75,c5,s22).registration4582,73293 -registration(r76,c194,s22).registration4583,73319 -registration(r76,c194,s22).registration4583,73319 -registration(r77,c238,s22).registration4584,73347 -registration(r77,c238,s22).registration4584,73347 -registration(r78,c99,s23).registration4585,73375 -registration(r78,c99,s23).registration4585,73375 -registration(r79,c168,s23).registration4586,73402 -registration(r79,c168,s23).registration4586,73402 -registration(r80,c233,s23).registration4587,73430 -registration(r80,c233,s23).registration4587,73430 -registration(r81,c236,s24).registration4588,73458 -registration(r81,c236,s24).registration4588,73458 -registration(r82,c146,s24).registration4589,73486 -registration(r82,c146,s24).registration4589,73486 -registration(r83,c67,s24).registration4590,73514 -registration(r83,c67,s24).registration4590,73514 -registration(r84,c128,s25).registration4591,73541 -registration(r84,c128,s25).registration4591,73541 -registration(r85,c209,s25).registration4592,73569 -registration(r85,c209,s25).registration4592,73569 -registration(r86,c59,s25).registration4593,73597 -registration(r86,c59,s25).registration4593,73597 -registration(r87,c245,s26).registration4594,73624 -registration(r87,c245,s26).registration4594,73624 -registration(r88,c52,s26).registration4595,73652 -registration(r88,c52,s26).registration4595,73652 -registration(r89,c137,s26).registration4596,73679 -registration(r89,c137,s26).registration4596,73679 -registration(r90,c114,s27).registration4597,73707 -registration(r90,c114,s27).registration4597,73707 -registration(r91,c36,s27).registration4598,73735 -registration(r91,c36,s27).registration4598,73735 -registration(r92,c107,s27).registration4599,73762 -registration(r92,c107,s27).registration4599,73762 -registration(r93,c7,s27).registration4600,73790 -registration(r93,c7,s27).registration4600,73790 -registration(r94,c16,s28).registration4601,73816 -registration(r94,c16,s28).registration4601,73816 -registration(r95,c201,s28).registration4602,73843 -registration(r95,c201,s28).registration4602,73843 -registration(r96,c104,s28).registration4603,73871 -registration(r96,c104,s28).registration4603,73871 -registration(r97,c183,s28).registration4604,73899 -registration(r97,c183,s28).registration4604,73899 -registration(r98,c202,s29).registration4605,73927 -registration(r98,c202,s29).registration4605,73927 -registration(r99,c159,s29).registration4606,73955 -registration(r99,c159,s29).registration4606,73955 -registration(r100,c92,s29).registration4607,73983 -registration(r100,c92,s29).registration4607,73983 -registration(r101,c140,s29).registration4608,74011 -registration(r101,c140,s29).registration4608,74011 -registration(r102,c92,s30).registration4609,74040 -registration(r102,c92,s30).registration4609,74040 -registration(r103,c233,s30).registration4610,74068 -registration(r103,c233,s30).registration4610,74068 -registration(r104,c169,s30).registration4611,74097 -registration(r104,c169,s30).registration4611,74097 -registration(r105,c229,s31).registration4612,74126 -registration(r105,c229,s31).registration4612,74126 -registration(r106,c106,s31).registration4613,74155 -registration(r106,c106,s31).registration4613,74155 -registration(r107,c165,s31).registration4614,74184 -registration(r107,c165,s31).registration4614,74184 -registration(r108,c48,s32).registration4615,74213 -registration(r108,c48,s32).registration4615,74213 -registration(r109,c85,s32).registration4616,74241 -registration(r109,c85,s32).registration4616,74241 -registration(r110,c78,s32).registration4617,74269 -registration(r110,c78,s32).registration4617,74269 -registration(r111,c185,s33).registration4618,74297 -registration(r111,c185,s33).registration4618,74297 -registration(r112,c172,s33).registration4619,74326 -registration(r112,c172,s33).registration4619,74326 -registration(r113,c127,s33).registration4620,74355 -registration(r113,c127,s33).registration4620,74355 -registration(r114,c73,s34).registration4621,74384 -registration(r114,c73,s34).registration4621,74384 -registration(r115,c210,s34).registration4622,74412 -registration(r115,c210,s34).registration4622,74412 -registration(r116,c224,s34).registration4623,74441 -registration(r116,c224,s34).registration4623,74441 -registration(r117,c156,s34).registration4624,74470 -registration(r117,c156,s34).registration4624,74470 -registration(r118,c161,s35).registration4625,74499 -registration(r118,c161,s35).registration4625,74499 -registration(r119,c250,s35).registration4626,74528 -registration(r119,c250,s35).registration4626,74528 -registration(r120,c193,s35).registration4627,74557 -registration(r120,c193,s35).registration4627,74557 -registration(r121,c234,s35).registration4628,74586 -registration(r121,c234,s35).registration4628,74586 -registration(r122,c23,s35).registration4629,74615 -registration(r122,c23,s35).registration4629,74615 -registration(r123,c148,s36).registration4630,74643 -registration(r123,c148,s36).registration4630,74643 -registration(r124,c250,s36).registration4631,74672 -registration(r124,c250,s36).registration4631,74672 -registration(r125,c209,s36).registration4632,74701 -registration(r125,c209,s36).registration4632,74701 -registration(r126,c120,s37).registration4633,74730 -registration(r126,c120,s37).registration4633,74730 -registration(r127,c83,s37).registration4634,74759 -registration(r127,c83,s37).registration4634,74759 -registration(r128,c5,s37).registration4635,74787 -registration(r128,c5,s37).registration4635,74787 -registration(r129,c84,s38).registration4636,74814 -registration(r129,c84,s38).registration4636,74814 -registration(r130,c74,s38).registration4637,74842 -registration(r130,c74,s38).registration4637,74842 -registration(r131,c33,s38).registration4638,74870 -registration(r131,c33,s38).registration4638,74870 -registration(r132,c248,s38).registration4639,74898 -registration(r132,c248,s38).registration4639,74898 -registration(r133,c120,s39).registration4640,74927 -registration(r133,c120,s39).registration4640,74927 -registration(r134,c181,s39).registration4641,74956 -registration(r134,c181,s39).registration4641,74956 -registration(r135,c236,s39).registration4642,74985 -registration(r135,c236,s39).registration4642,74985 -registration(r136,c237,s40).registration4643,75014 -registration(r136,c237,s40).registration4643,75014 -registration(r137,c230,s40).registration4644,75043 -registration(r137,c230,s40).registration4644,75043 -registration(r138,c63,s40).registration4645,75072 -registration(r138,c63,s40).registration4645,75072 -registration(r139,c2,s41).registration4646,75100 -registration(r139,c2,s41).registration4646,75100 -registration(r140,c190,s41).registration4647,75127 -registration(r140,c190,s41).registration4647,75127 -registration(r141,c204,s41).registration4648,75156 -registration(r141,c204,s41).registration4648,75156 -registration(r142,c214,s41).registration4649,75185 -registration(r142,c214,s41).registration4649,75185 -registration(r143,c27,s42).registration4650,75214 -registration(r143,c27,s42).registration4650,75214 -registration(r144,c169,s42).registration4651,75242 -registration(r144,c169,s42).registration4651,75242 -registration(r145,c218,s42).registration4652,75271 -registration(r145,c218,s42).registration4652,75271 -registration(r146,c46,s42).registration4653,75300 -registration(r146,c46,s42).registration4653,75300 -registration(r147,c134,s43).registration4654,75328 -registration(r147,c134,s43).registration4654,75328 -registration(r148,c202,s43).registration4655,75357 -registration(r148,c202,s43).registration4655,75357 -registration(r149,c215,s43).registration4656,75386 -registration(r149,c215,s43).registration4656,75386 -registration(r150,c249,s43).registration4657,75415 -registration(r150,c249,s43).registration4657,75415 -registration(r151,c233,s44).registration4658,75444 -registration(r151,c233,s44).registration4658,75444 -registration(r152,c13,s44).registration4659,75473 -registration(r152,c13,s44).registration4659,75473 -registration(r153,c155,s44).registration4660,75501 -registration(r153,c155,s44).registration4660,75501 -registration(r154,c136,s45).registration4661,75530 -registration(r154,c136,s45).registration4661,75530 -registration(r155,c171,s45).registration4662,75559 -registration(r155,c171,s45).registration4662,75559 -registration(r156,c86,s45).registration4663,75588 -registration(r156,c86,s45).registration4663,75588 -registration(r157,c151,s46).registration4664,75616 -registration(r157,c151,s46).registration4664,75616 -registration(r158,c5,s46).registration4665,75645 -registration(r158,c5,s46).registration4665,75645 -registration(r159,c116,s46).registration4666,75672 -registration(r159,c116,s46).registration4666,75672 -registration(r160,c65,s47).registration4667,75701 -registration(r160,c65,s47).registration4667,75701 -registration(r161,c186,s47).registration4668,75729 -registration(r161,c186,s47).registration4668,75729 -registration(r162,c154,s47).registration4669,75758 -registration(r162,c154,s47).registration4669,75758 -registration(r163,c67,s48).registration4670,75787 -registration(r163,c67,s48).registration4670,75787 -registration(r164,c124,s48).registration4671,75815 -registration(r164,c124,s48).registration4671,75815 -registration(r165,c87,s48).registration4672,75844 -registration(r165,c87,s48).registration4672,75844 -registration(r166,c222,s49).registration4673,75872 -registration(r166,c222,s49).registration4673,75872 -registration(r167,c46,s49).registration4674,75901 -registration(r167,c46,s49).registration4674,75901 -registration(r168,c129,s49).registration4675,75929 -registration(r168,c129,s49).registration4675,75929 -registration(r169,c123,s50).registration4676,75958 -registration(r169,c123,s50).registration4676,75958 -registration(r170,c162,s50).registration4677,75987 -registration(r170,c162,s50).registration4677,75987 -registration(r171,c80,s50).registration4678,76016 -registration(r171,c80,s50).registration4678,76016 -registration(r172,c3,s50).registration4679,76044 -registration(r172,c3,s50).registration4679,76044 -registration(r173,c160,s50).registration4680,76071 -registration(r173,c160,s50).registration4680,76071 -registration(r174,c175,s51).registration4681,76100 -registration(r174,c175,s51).registration4681,76100 -registration(r175,c106,s51).registration4682,76129 -registration(r175,c106,s51).registration4682,76129 -registration(r176,c21,s51).registration4683,76158 -registration(r176,c21,s51).registration4683,76158 -registration(r177,c28,s51).registration4684,76186 -registration(r177,c28,s51).registration4684,76186 -registration(r178,c182,s52).registration4685,76214 -registration(r178,c182,s52).registration4685,76214 -registration(r179,c155,s52).registration4686,76243 -registration(r179,c155,s52).registration4686,76243 -registration(r180,c223,s52).registration4687,76272 -registration(r180,c223,s52).registration4687,76272 -registration(r181,c122,s53).registration4688,76301 -registration(r181,c122,s53).registration4688,76301 -registration(r182,c154,s53).registration4689,76330 -registration(r182,c154,s53).registration4689,76330 -registration(r183,c44,s53).registration4690,76359 -registration(r183,c44,s53).registration4690,76359 -registration(r184,c132,s53).registration4691,76387 -registration(r184,c132,s53).registration4691,76387 -registration(r185,c33,s54).registration4692,76416 -registration(r185,c33,s54).registration4692,76416 -registration(r186,c192,s54).registration4693,76444 -registration(r186,c192,s54).registration4693,76444 -registration(r187,c98,s54).registration4694,76473 -registration(r187,c98,s54).registration4694,76473 -registration(r188,c27,s55).registration4695,76501 -registration(r188,c27,s55).registration4695,76501 -registration(r189,c148,s55).registration4696,76529 -registration(r189,c148,s55).registration4696,76529 -registration(r190,c190,s55).registration4697,76558 -registration(r190,c190,s55).registration4697,76558 -registration(r191,c212,s56).registration4698,76587 -registration(r191,c212,s56).registration4698,76587 -registration(r192,c192,s56).registration4699,76616 -registration(r192,c192,s56).registration4699,76616 -registration(r193,c248,s56).registration4700,76645 -registration(r193,c248,s56).registration4700,76645 -registration(r194,c99,s57).registration4701,76674 -registration(r194,c99,s57).registration4701,76674 -registration(r195,c138,s57).registration4702,76702 -registration(r195,c138,s57).registration4702,76702 -registration(r196,c178,s57).registration4703,76731 -registration(r196,c178,s57).registration4703,76731 -registration(r197,c104,s58).registration4704,76760 -registration(r197,c104,s58).registration4704,76760 -registration(r198,c1,s58).registration4705,76789 -registration(r198,c1,s58).registration4705,76789 -registration(r199,c134,s58).registration4706,76816 -registration(r199,c134,s58).registration4706,76816 -registration(r200,c255,s59).registration4707,76845 -registration(r200,c255,s59).registration4707,76845 -registration(r201,c249,s59).registration4708,76874 -registration(r201,c249,s59).registration4708,76874 -registration(r202,c131,s59).registration4709,76903 -registration(r202,c131,s59).registration4709,76903 -registration(r203,c7,s59).registration4710,76932 -registration(r203,c7,s59).registration4710,76932 -registration(r204,c223,s60).registration4711,76959 -registration(r204,c223,s60).registration4711,76959 -registration(r205,c207,s60).registration4712,76988 -registration(r205,c207,s60).registration4712,76988 -registration(r206,c105,s60).registration4713,77017 -registration(r206,c105,s60).registration4713,77017 -registration(r207,c18,s60).registration4714,77046 -registration(r207,c18,s60).registration4714,77046 -registration(r208,c195,s61).registration4715,77074 -registration(r208,c195,s61).registration4715,77074 -registration(r209,c208,s61).registration4716,77103 -registration(r209,c208,s61).registration4716,77103 -registration(r210,c65,s61).registration4717,77132 -registration(r210,c65,s61).registration4717,77132 -registration(r211,c3,s62).registration4718,77160 -registration(r211,c3,s62).registration4718,77160 -registration(r212,c161,s62).registration4719,77187 -registration(r212,c161,s62).registration4719,77187 -registration(r213,c26,s62).registration4720,77216 -registration(r213,c26,s62).registration4720,77216 -registration(r214,c165,s62).registration4721,77244 -registration(r214,c165,s62).registration4721,77244 -registration(r215,c37,s63).registration4722,77273 -registration(r215,c37,s63).registration4722,77273 -registration(r216,c105,s63).registration4723,77301 -registration(r216,c105,s63).registration4723,77301 -registration(r217,c74,s63).registration4724,77330 -registration(r217,c74,s63).registration4724,77330 -registration(r218,c207,s64).registration4725,77358 -registration(r218,c207,s64).registration4725,77358 -registration(r219,c238,s64).registration4726,77387 -registration(r219,c238,s64).registration4726,77387 -registration(r220,c192,s64).registration4727,77416 -registration(r220,c192,s64).registration4727,77416 -registration(r221,c70,s65).registration4728,77445 -registration(r221,c70,s65).registration4728,77445 -registration(r222,c141,s65).registration4729,77473 -registration(r222,c141,s65).registration4729,77473 -registration(r223,c248,s65).registration4730,77502 -registration(r223,c248,s65).registration4730,77502 -registration(r224,c201,s66).registration4731,77531 -registration(r224,c201,s66).registration4731,77531 -registration(r225,c183,s66).registration4732,77560 -registration(r225,c183,s66).registration4732,77560 -registration(r226,c154,s66).registration4733,77589 -registration(r226,c154,s66).registration4733,77589 -registration(r227,c94,s67).registration4734,77618 -registration(r227,c94,s67).registration4734,77618 -registration(r228,c172,s67).registration4735,77646 -registration(r228,c172,s67).registration4735,77646 -registration(r229,c127,s67).registration4736,77675 -registration(r229,c127,s67).registration4736,77675 -registration(r230,c80,s67).registration4737,77704 -registration(r230,c80,s67).registration4737,77704 -registration(r231,c168,s68).registration4738,77732 -registration(r231,c168,s68).registration4738,77732 -registration(r232,c107,s68).registration4739,77761 -registration(r232,c107,s68).registration4739,77761 -registration(r233,c246,s68).registration4740,77790 -registration(r233,c246,s68).registration4740,77790 -registration(r234,c27,s68).registration4741,77819 -registration(r234,c27,s68).registration4741,77819 -registration(r235,c21,s69).registration4742,77847 -registration(r235,c21,s69).registration4742,77847 -registration(r236,c90,s69).registration4743,77875 -registration(r236,c90,s69).registration4743,77875 -registration(r237,c171,s69).registration4744,77903 -registration(r237,c171,s69).registration4744,77903 -registration(r238,c153,s69).registration4745,77932 -registration(r238,c153,s69).registration4745,77932 -registration(r239,c65,s70).registration4746,77961 -registration(r239,c65,s70).registration4746,77961 -registration(r240,c249,s70).registration4747,77989 -registration(r240,c249,s70).registration4747,77989 -registration(r241,c129,s70).registration4748,78018 -registration(r241,c129,s70).registration4748,78018 -registration(r242,c122,s71).registration4749,78047 -registration(r242,c122,s71).registration4749,78047 -registration(r243,c214,s71).registration4750,78076 -registration(r243,c214,s71).registration4750,78076 -registration(r244,c242,s71).registration4751,78105 -registration(r244,c242,s71).registration4751,78105 -registration(r245,c141,s72).registration4752,78134 -registration(r245,c141,s72).registration4752,78134 -registration(r246,c31,s72).registration4753,78163 -registration(r246,c31,s72).registration4753,78163 -registration(r247,c203,s72).registration4754,78191 -registration(r247,c203,s72).registration4754,78191 -registration(r248,c74,s73).registration4755,78220 -registration(r248,c74,s73).registration4755,78220 -registration(r249,c243,s73).registration4756,78248 -registration(r249,c243,s73).registration4756,78248 -registration(r250,c29,s73).registration4757,78277 -registration(r250,c29,s73).registration4757,78277 -registration(r251,c137,s74).registration4758,78305 -registration(r251,c137,s74).registration4758,78305 -registration(r252,c196,s74).registration4759,78334 -registration(r252,c196,s74).registration4759,78334 -registration(r253,c72,s74).registration4760,78363 -registration(r253,c72,s74).registration4760,78363 -registration(r254,c94,s75).registration4761,78391 -registration(r254,c94,s75).registration4761,78391 -registration(r255,c242,s75).registration4762,78419 -registration(r255,c242,s75).registration4762,78419 -registration(r256,c138,s75).registration4763,78448 -registration(r256,c138,s75).registration4763,78448 -registration(r257,c35,s75).registration4764,78477 -registration(r257,c35,s75).registration4764,78477 -registration(r258,c32,s76).registration4765,78505 -registration(r258,c32,s76).registration4765,78505 -registration(r259,c21,s76).registration4766,78533 -registration(r259,c21,s76).registration4766,78533 -registration(r260,c166,s76).registration4767,78561 -registration(r260,c166,s76).registration4767,78561 -registration(r261,c32,s77).registration4768,78590 -registration(r261,c32,s77).registration4768,78590 -registration(r262,c127,s77).registration4769,78618 -registration(r262,c127,s77).registration4769,78618 -registration(r263,c142,s77).registration4770,78647 -registration(r263,c142,s77).registration4770,78647 -registration(r264,c26,s77).registration4771,78676 -registration(r264,c26,s77).registration4771,78676 -registration(r265,c131,s78).registration4772,78704 -registration(r265,c131,s78).registration4772,78704 -registration(r266,c217,s78).registration4773,78733 -registration(r266,c217,s78).registration4773,78733 -registration(r267,c7,s78).registration4774,78762 -registration(r267,c7,s78).registration4774,78762 -registration(r268,c251,s78).registration4775,78789 -registration(r268,c251,s78).registration4775,78789 -registration(r269,c109,s79).registration4776,78818 -registration(r269,c109,s79).registration4776,78818 -registration(r270,c242,s79).registration4777,78847 -registration(r270,c242,s79).registration4777,78847 -registration(r271,c151,s79).registration4778,78876 -registration(r271,c151,s79).registration4778,78876 -registration(r272,c224,s80).registration4779,78905 -registration(r272,c224,s80).registration4779,78905 -registration(r273,c144,s80).registration4780,78934 -registration(r273,c144,s80).registration4780,78934 -registration(r274,c150,s80).registration4781,78963 -registration(r274,c150,s80).registration4781,78963 -registration(r275,c33,s81).registration4782,78992 -registration(r275,c33,s81).registration4782,78992 -registration(r276,c29,s81).registration4783,79020 -registration(r276,c29,s81).registration4783,79020 -registration(r277,c160,s81).registration4784,79048 -registration(r277,c160,s81).registration4784,79048 -registration(r278,c181,s82).registration4785,79077 -registration(r278,c181,s82).registration4785,79077 -registration(r279,c235,s82).registration4786,79106 -registration(r279,c235,s82).registration4786,79106 -registration(r280,c230,s82).registration4787,79135 -registration(r280,c230,s82).registration4787,79135 -registration(r281,c101,s82).registration4788,79164 -registration(r281,c101,s82).registration4788,79164 -registration(r282,c222,s83).registration4789,79193 -registration(r282,c222,s83).registration4789,79193 -registration(r283,c110,s83).registration4790,79222 -registration(r283,c110,s83).registration4790,79222 -registration(r284,c117,s83).registration4791,79251 -registration(r284,c117,s83).registration4791,79251 -registration(r285,c78,s84).registration4792,79280 -registration(r285,c78,s84).registration4792,79280 -registration(r286,c0,s84).registration4793,79308 -registration(r286,c0,s84).registration4793,79308 -registration(r287,c66,s84).registration4794,79335 -registration(r287,c66,s84).registration4794,79335 -registration(r288,c176,s85).registration4795,79363 -registration(r288,c176,s85).registration4795,79363 -registration(r289,c100,s85).registration4796,79392 -registration(r289,c100,s85).registration4796,79392 -registration(r290,c146,s85).registration4797,79421 -registration(r290,c146,s85).registration4797,79421 -registration(r291,c114,s85).registration4798,79450 -registration(r291,c114,s85).registration4798,79450 -registration(r292,c56,s86).registration4799,79479 -registration(r292,c56,s86).registration4799,79479 -registration(r293,c178,s86).registration4800,79507 -registration(r293,c178,s86).registration4800,79507 -registration(r294,c179,s86).registration4801,79536 -registration(r294,c179,s86).registration4801,79536 -registration(r295,c208,s87).registration4802,79565 -registration(r295,c208,s87).registration4802,79565 -registration(r296,c91,s87).registration4803,79594 -registration(r296,c91,s87).registration4803,79594 -registration(r297,c24,s87).registration4804,79622 -registration(r297,c24,s87).registration4804,79622 -registration(r298,c16,s87).registration4805,79650 -registration(r298,c16,s87).registration4805,79650 -registration(r299,c246,s87).registration4806,79678 -registration(r299,c246,s87).registration4806,79678 -registration(r300,c98,s88).registration4807,79707 -registration(r300,c98,s88).registration4807,79707 -registration(r301,c15,s88).registration4808,79735 -registration(r301,c15,s88).registration4808,79735 -registration(r302,c93,s88).registration4809,79763 -registration(r302,c93,s88).registration4809,79763 -registration(r303,c210,s89).registration4810,79791 -registration(r303,c210,s89).registration4810,79791 -registration(r304,c57,s89).registration4811,79820 -registration(r304,c57,s89).registration4811,79820 -registration(r305,c113,s89).registration4812,79848 -registration(r305,c113,s89).registration4812,79848 -registration(r306,c58,s89).registration4813,79877 -registration(r306,c58,s89).registration4813,79877 -registration(r307,c147,s90).registration4814,79905 -registration(r307,c147,s90).registration4814,79905 -registration(r308,c53,s90).registration4815,79934 -registration(r308,c53,s90).registration4815,79934 -registration(r309,c100,s90).registration4816,79962 -registration(r309,c100,s90).registration4816,79962 -registration(r310,c11,s91).registration4817,79991 -registration(r310,c11,s91).registration4817,79991 -registration(r311,c21,s91).registration4818,80019 -registration(r311,c21,s91).registration4818,80019 -registration(r312,c61,s91).registration4819,80047 -registration(r312,c61,s91).registration4819,80047 -registration(r313,c238,s92).registration4820,80075 -registration(r313,c238,s92).registration4820,80075 -registration(r314,c255,s92).registration4821,80104 -registration(r314,c255,s92).registration4821,80104 -registration(r315,c152,s92).registration4822,80133 -registration(r315,c152,s92).registration4822,80133 -registration(r316,c178,s93).registration4823,80162 -registration(r316,c178,s93).registration4823,80162 -registration(r317,c205,s93).registration4824,80191 -registration(r317,c205,s93).registration4824,80191 -registration(r318,c107,s93).registration4825,80220 -registration(r318,c107,s93).registration4825,80220 -registration(r319,c206,s94).registration4826,80249 -registration(r319,c206,s94).registration4826,80249 -registration(r320,c196,s94).registration4827,80278 -registration(r320,c196,s94).registration4827,80278 -registration(r321,c33,s94).registration4828,80307 -registration(r321,c33,s94).registration4828,80307 -registration(r322,c68,s94).registration4829,80335 -registration(r322,c68,s94).registration4829,80335 -registration(r323,c72,s95).registration4830,80363 -registration(r323,c72,s95).registration4830,80363 -registration(r324,c182,s95).registration4831,80391 -registration(r324,c182,s95).registration4831,80391 -registration(r325,c20,s95).registration4832,80420 -registration(r325,c20,s95).registration4832,80420 -registration(r326,c168,s96).registration4833,80448 -registration(r326,c168,s96).registration4833,80448 -registration(r327,c185,s96).registration4834,80477 -registration(r327,c185,s96).registration4834,80477 -registration(r328,c206,s96).registration4835,80506 -registration(r328,c206,s96).registration4835,80506 -registration(r329,c217,s97).registration4836,80535 -registration(r329,c217,s97).registration4836,80535 -registration(r330,c181,s97).registration4837,80564 -registration(r330,c181,s97).registration4837,80564 -registration(r331,c188,s97).registration4838,80593 -registration(r331,c188,s97).registration4838,80593 -registration(r332,c122,s97).registration4839,80622 -registration(r332,c122,s97).registration4839,80622 -registration(r333,c28,s98).registration4840,80651 -registration(r333,c28,s98).registration4840,80651 -registration(r334,c21,s98).registration4841,80679 -registration(r334,c21,s98).registration4841,80679 -registration(r335,c106,s98).registration4842,80707 -registration(r335,c106,s98).registration4842,80707 -registration(r336,c55,s99).registration4843,80736 -registration(r336,c55,s99).registration4843,80736 -registration(r337,c228,s99).registration4844,80764 -registration(r337,c228,s99).registration4844,80764 -registration(r338,c125,s99).registration4845,80793 -registration(r338,c125,s99).registration4845,80793 -registration(r339,c67,s100).registration4846,80822 -registration(r339,c67,s100).registration4846,80822 -registration(r340,c28,s100).registration4847,80851 -registration(r340,c28,s100).registration4847,80851 -registration(r341,c194,s100).registration4848,80880 -registration(r341,c194,s100).registration4848,80880 -registration(r342,c10,s100).registration4849,80910 -registration(r342,c10,s100).registration4849,80910 -registration(r343,c61,s101).registration4850,80939 -registration(r343,c61,s101).registration4850,80939 -registration(r344,c37,s101).registration4851,80968 -registration(r344,c37,s101).registration4851,80968 -registration(r345,c142,s101).registration4852,80997 -registration(r345,c142,s101).registration4852,80997 -registration(r346,c70,s102).registration4853,81027 -registration(r346,c70,s102).registration4853,81027 -registration(r347,c117,s102).registration4854,81056 -registration(r347,c117,s102).registration4854,81056 -registration(r348,c112,s102).registration4855,81086 -registration(r348,c112,s102).registration4855,81086 -registration(r349,c38,s103).registration4856,81116 -registration(r349,c38,s103).registration4856,81116 -registration(r350,c133,s103).registration4857,81145 -registration(r350,c133,s103).registration4857,81145 -registration(r351,c108,s103).registration4858,81175 -registration(r351,c108,s103).registration4858,81175 -registration(r352,c138,s103).registration4859,81205 -registration(r352,c138,s103).registration4859,81205 -registration(r353,c183,s104).registration4860,81235 -registration(r353,c183,s104).registration4860,81235 -registration(r354,c153,s104).registration4861,81265 -registration(r354,c153,s104).registration4861,81265 -registration(r355,c1,s104).registration4862,81295 -registration(r355,c1,s104).registration4862,81295 -registration(r356,c229,s105).registration4863,81323 -registration(r356,c229,s105).registration4863,81323 -registration(r357,c253,s105).registration4864,81353 -registration(r357,c253,s105).registration4864,81353 -registration(r358,c202,s105).registration4865,81383 -registration(r358,c202,s105).registration4865,81383 -registration(r359,c233,s106).registration4866,81413 -registration(r359,c233,s106).registration4866,81413 -registration(r360,c89,s106).registration4867,81443 -registration(r360,c89,s106).registration4867,81443 -registration(r361,c200,s106).registration4868,81472 -registration(r361,c200,s106).registration4868,81472 -registration(r362,c6,s107).registration4869,81502 -registration(r362,c6,s107).registration4869,81502 -registration(r363,c33,s107).registration4870,81530 -registration(r363,c33,s107).registration4870,81530 -registration(r364,c242,s107).registration4871,81559 -registration(r364,c242,s107).registration4871,81559 -registration(r365,c56,s108).registration4872,81589 -registration(r365,c56,s108).registration4872,81589 -registration(r366,c35,s108).registration4873,81618 -registration(r366,c35,s108).registration4873,81618 -registration(r367,c97,s108).registration4874,81647 -registration(r367,c97,s108).registration4874,81647 -registration(r368,c115,s108).registration4875,81676 -registration(r368,c115,s108).registration4875,81676 -registration(r369,c133,s109).registration4876,81706 -registration(r369,c133,s109).registration4876,81706 -registration(r370,c221,s109).registration4877,81736 -registration(r370,c221,s109).registration4877,81736 -registration(r371,c40,s109).registration4878,81766 -registration(r371,c40,s109).registration4878,81766 -registration(r372,c224,s110).registration4879,81795 -registration(r372,c224,s110).registration4879,81795 -registration(r373,c78,s110).registration4880,81825 -registration(r373,c78,s110).registration4880,81825 -registration(r374,c103,s110).registration4881,81854 -registration(r374,c103,s110).registration4881,81854 -registration(r375,c76,s110).registration4882,81884 -registration(r375,c76,s110).registration4882,81884 -registration(r376,c92,s111).registration4883,81913 -registration(r376,c92,s111).registration4883,81913 -registration(r377,c236,s111).registration4884,81942 -registration(r377,c236,s111).registration4884,81942 -registration(r378,c228,s111).registration4885,81972 -registration(r378,c228,s111).registration4885,81972 -registration(r379,c63,s112).registration4886,82002 -registration(r379,c63,s112).registration4886,82002 -registration(r380,c103,s112).registration4887,82031 -registration(r380,c103,s112).registration4887,82031 -registration(r381,c207,s112).registration4888,82061 -registration(r381,c207,s112).registration4888,82061 -registration(r382,c239,s113).registration4889,82091 -registration(r382,c239,s113).registration4889,82091 -registration(r383,c149,s113).registration4890,82121 -registration(r383,c149,s113).registration4890,82121 -registration(r384,c27,s113).registration4891,82151 -registration(r384,c27,s113).registration4891,82151 -registration(r385,c63,s114).registration4892,82180 -registration(r385,c63,s114).registration4892,82180 -registration(r386,c62,s114).registration4893,82209 -registration(r386,c62,s114).registration4893,82209 -registration(r387,c206,s114).registration4894,82238 -registration(r387,c206,s114).registration4894,82238 -registration(r388,c83,s115).registration4895,82268 -registration(r388,c83,s115).registration4895,82268 -registration(r389,c143,s115).registration4896,82297 -registration(r389,c143,s115).registration4896,82297 -registration(r390,c237,s115).registration4897,82327 -registration(r390,c237,s115).registration4897,82327 -registration(r391,c246,s115).registration4898,82357 -registration(r391,c246,s115).registration4898,82357 -registration(r392,c87,s116).registration4899,82387 -registration(r392,c87,s116).registration4899,82387 -registration(r393,c94,s116).registration4900,82416 -registration(r393,c94,s116).registration4900,82416 -registration(r394,c44,s116).registration4901,82445 -registration(r394,c44,s116).registration4901,82445 -registration(r395,c137,s117).registration4902,82474 -registration(r395,c137,s117).registration4902,82474 -registration(r396,c98,s117).registration4903,82504 -registration(r396,c98,s117).registration4903,82504 -registration(r397,c145,s117).registration4904,82533 -registration(r397,c145,s117).registration4904,82533 -registration(r398,c55,s117).registration4905,82563 -registration(r398,c55,s117).registration4905,82563 -registration(r399,c142,s118).registration4906,82592 -registration(r399,c142,s118).registration4906,82592 -registration(r400,c7,s118).registration4907,82622 -registration(r400,c7,s118).registration4907,82622 -registration(r401,c115,s118).registration4908,82650 -registration(r401,c115,s118).registration4908,82650 -registration(r402,c9,s119).registration4909,82680 -registration(r402,c9,s119).registration4909,82680 -registration(r403,c25,s119).registration4910,82708 -registration(r403,c25,s119).registration4910,82708 -registration(r404,c213,s119).registration4911,82737 -registration(r404,c213,s119).registration4911,82737 -registration(r405,c19,s120).registration4912,82767 -registration(r405,c19,s120).registration4912,82767 -registration(r406,c165,s120).registration4913,82796 -registration(r406,c165,s120).registration4913,82796 -registration(r407,c9,s120).registration4914,82826 -registration(r407,c9,s120).registration4914,82826 -registration(r408,c152,s121).registration4915,82854 -registration(r408,c152,s121).registration4915,82854 -registration(r409,c197,s121).registration4916,82884 -registration(r409,c197,s121).registration4916,82884 -registration(r410,c1,s121).registration4917,82914 -registration(r410,c1,s121).registration4917,82914 -registration(r411,c88,s122).registration4918,82942 -registration(r411,c88,s122).registration4918,82942 -registration(r412,c236,s122).registration4919,82971 -registration(r412,c236,s122).registration4919,82971 -registration(r413,c191,s122).registration4920,83001 -registration(r413,c191,s122).registration4920,83001 -registration(r414,c73,s123).registration4921,83031 -registration(r414,c73,s123).registration4921,83031 -registration(r415,c50,s123).registration4922,83060 -registration(r415,c50,s123).registration4922,83060 -registration(r416,c39,s123).registration4923,83089 -registration(r416,c39,s123).registration4923,83089 -registration(r417,c247,s124).registration4924,83118 -registration(r417,c247,s124).registration4924,83118 -registration(r418,c0,s124).registration4925,83148 -registration(r418,c0,s124).registration4925,83148 -registration(r419,c114,s124).registration4926,83176 -registration(r419,c114,s124).registration4926,83176 -registration(r420,c104,s125).registration4927,83206 -registration(r420,c104,s125).registration4927,83206 -registration(r421,c116,s125).registration4928,83236 -registration(r421,c116,s125).registration4928,83236 -registration(r422,c20,s125).registration4929,83266 -registration(r422,c20,s125).registration4929,83266 -registration(r423,c108,s126).registration4930,83295 -registration(r423,c108,s126).registration4930,83295 -registration(r424,c81,s126).registration4931,83325 -registration(r424,c81,s126).registration4931,83325 -registration(r425,c240,s126).registration4932,83354 -registration(r425,c240,s126).registration4932,83354 -registration(r426,c232,s126).registration4933,83384 -registration(r426,c232,s126).registration4933,83384 -registration(r427,c14,s127).registration4934,83414 -registration(r427,c14,s127).registration4934,83414 -registration(r428,c239,s127).registration4935,83443 -registration(r428,c239,s127).registration4935,83443 -registration(r429,c233,s127).registration4936,83473 -registration(r429,c233,s127).registration4936,83473 -registration(r430,c66,s128).registration4937,83503 -registration(r430,c66,s128).registration4937,83503 -registration(r431,c137,s128).registration4938,83532 -registration(r431,c137,s128).registration4938,83532 -registration(r432,c67,s128).registration4939,83562 -registration(r432,c67,s128).registration4939,83562 -registration(r433,c32,s128).registration4940,83591 -registration(r433,c32,s128).registration4940,83591 -registration(r434,c69,s129).registration4941,83620 -registration(r434,c69,s129).registration4941,83620 -registration(r435,c72,s129).registration4942,83649 -registration(r435,c72,s129).registration4942,83649 -registration(r436,c254,s129).registration4943,83678 -registration(r436,c254,s129).registration4943,83678 -registration(r437,c254,s130).registration4944,83708 -registration(r437,c254,s130).registration4944,83708 -registration(r438,c33,s130).registration4945,83738 -registration(r438,c33,s130).registration4945,83738 -registration(r439,c169,s130).registration4946,83767 -registration(r439,c169,s130).registration4946,83767 -registration(r440,c29,s131).registration4947,83797 -registration(r440,c29,s131).registration4947,83797 -registration(r441,c15,s131).registration4948,83826 -registration(r441,c15,s131).registration4948,83826 -registration(r442,c201,s131).registration4949,83855 -registration(r442,c201,s131).registration4949,83855 -registration(r443,c26,s132).registration4950,83885 -registration(r443,c26,s132).registration4950,83885 -registration(r444,c89,s132).registration4951,83914 -registration(r444,c89,s132).registration4951,83914 -registration(r445,c242,s132).registration4952,83943 -registration(r445,c242,s132).registration4952,83943 -registration(r446,c0,s133).registration4953,83973 -registration(r446,c0,s133).registration4953,83973 -registration(r447,c53,s133).registration4954,84001 -registration(r447,c53,s133).registration4954,84001 -registration(r448,c45,s133).registration4955,84030 -registration(r448,c45,s133).registration4955,84030 -registration(r449,c112,s134).registration4956,84059 -registration(r449,c112,s134).registration4956,84059 -registration(r450,c39,s134).registration4957,84089 -registration(r450,c39,s134).registration4957,84089 -registration(r451,c249,s134).registration4958,84118 -registration(r451,c249,s134).registration4958,84118 -registration(r452,c133,s135).registration4959,84148 -registration(r452,c133,s135).registration4959,84148 -registration(r453,c199,s135).registration4960,84178 -registration(r453,c199,s135).registration4960,84178 -registration(r454,c143,s135).registration4961,84208 -registration(r454,c143,s135).registration4961,84208 -registration(r455,c206,s136).registration4962,84238 -registration(r455,c206,s136).registration4962,84238 -registration(r456,c129,s136).registration4963,84268 -registration(r456,c129,s136).registration4963,84268 -registration(r457,c153,s136).registration4964,84298 -registration(r457,c153,s136).registration4964,84298 -registration(r458,c35,s137).registration4965,84328 -registration(r458,c35,s137).registration4965,84328 -registration(r459,c151,s137).registration4966,84357 -registration(r459,c151,s137).registration4966,84357 -registration(r460,c139,s137).registration4967,84387 -registration(r460,c139,s137).registration4967,84387 -registration(r461,c8,s138).registration4968,84417 -registration(r461,c8,s138).registration4968,84417 -registration(r462,c7,s138).registration4969,84445 -registration(r462,c7,s138).registration4969,84445 -registration(r463,c90,s138).registration4970,84473 -registration(r463,c90,s138).registration4970,84473 -registration(r464,c155,s139).registration4971,84502 -registration(r464,c155,s139).registration4971,84502 -registration(r465,c251,s139).registration4972,84532 -registration(r465,c251,s139).registration4972,84532 -registration(r466,c127,s139).registration4973,84562 -registration(r466,c127,s139).registration4973,84562 -registration(r467,c55,s140).registration4974,84592 -registration(r467,c55,s140).registration4974,84592 -registration(r468,c57,s140).registration4975,84621 -registration(r468,c57,s140).registration4975,84621 -registration(r469,c193,s140).registration4976,84650 -registration(r469,c193,s140).registration4976,84650 -registration(r470,c186,s140).registration4977,84680 -registration(r470,c186,s140).registration4977,84680 -registration(r471,c182,s140).registration4978,84710 -registration(r471,c182,s140).registration4978,84710 -registration(r472,c130,s141).registration4979,84740 -registration(r472,c130,s141).registration4979,84740 -registration(r473,c152,s141).registration4980,84770 -registration(r473,c152,s141).registration4980,84770 -registration(r474,c58,s141).registration4981,84800 -registration(r474,c58,s141).registration4981,84800 -registration(r475,c189,s142).registration4982,84829 -registration(r475,c189,s142).registration4982,84829 -registration(r476,c146,s142).registration4983,84859 -registration(r476,c146,s142).registration4983,84859 -registration(r477,c224,s142).registration4984,84889 -registration(r477,c224,s142).registration4984,84889 -registration(r478,c118,s143).registration4985,84919 -registration(r478,c118,s143).registration4985,84919 -registration(r479,c198,s143).registration4986,84949 -registration(r479,c198,s143).registration4986,84949 -registration(r480,c163,s143).registration4987,84979 -registration(r480,c163,s143).registration4987,84979 -registration(r481,c171,s144).registration4988,85009 -registration(r481,c171,s144).registration4988,85009 -registration(r482,c206,s144).registration4989,85039 -registration(r482,c206,s144).registration4989,85039 -registration(r483,c199,s144).registration4990,85069 -registration(r483,c199,s144).registration4990,85069 -registration(r484,c195,s145).registration4991,85099 -registration(r484,c195,s145).registration4991,85099 -registration(r485,c120,s145).registration4992,85129 -registration(r485,c120,s145).registration4992,85129 -registration(r486,c50,s145).registration4993,85159 -registration(r486,c50,s145).registration4993,85159 -registration(r487,c107,s146).registration4994,85188 -registration(r487,c107,s146).registration4994,85188 -registration(r488,c29,s146).registration4995,85218 -registration(r488,c29,s146).registration4995,85218 -registration(r489,c226,s146).registration4996,85247 -registration(r489,c226,s146).registration4996,85247 -registration(r490,c38,s146).registration4997,85277 -registration(r490,c38,s146).registration4997,85277 -registration(r491,c168,s147).registration4998,85306 -registration(r491,c168,s147).registration4998,85306 -registration(r492,c189,s147).registration4999,85336 -registration(r492,c189,s147).registration4999,85336 -registration(r493,c213,s147).registration5000,85366 -registration(r493,c213,s147).registration5000,85366 -registration(r494,c144,s147).registration5001,85396 -registration(r494,c144,s147).registration5001,85396 -registration(r495,c53,s148).registration5002,85426 -registration(r495,c53,s148).registration5002,85426 -registration(r496,c4,s148).registration5003,85455 -registration(r496,c4,s148).registration5003,85455 -registration(r497,c204,s148).registration5004,85483 -registration(r497,c204,s148).registration5004,85483 -registration(r498,c145,s149).registration5005,85513 -registration(r498,c145,s149).registration5005,85513 -registration(r499,c144,s149).registration5006,85543 -registration(r499,c144,s149).registration5006,85543 -registration(r500,c241,s149).registration5007,85573 -registration(r500,c241,s149).registration5007,85573 -registration(r501,c191,s150).registration5008,85603 -registration(r501,c191,s150).registration5008,85603 -registration(r502,c39,s150).registration5009,85633 -registration(r502,c39,s150).registration5009,85633 -registration(r503,c53,s150).registration5010,85662 -registration(r503,c53,s150).registration5010,85662 -registration(r504,c235,s150).registration5011,85691 -registration(r504,c235,s150).registration5011,85691 -registration(r505,c92,s151).registration5012,85721 -registration(r505,c92,s151).registration5012,85721 -registration(r506,c71,s151).registration5013,85750 -registration(r506,c71,s151).registration5013,85750 -registration(r507,c96,s151).registration5014,85779 -registration(r507,c96,s151).registration5014,85779 -registration(r508,c65,s152).registration5015,85808 -registration(r508,c65,s152).registration5015,85808 -registration(r509,c237,s152).registration5016,85837 -registration(r509,c237,s152).registration5016,85837 -registration(r510,c138,s152).registration5017,85867 -registration(r510,c138,s152).registration5017,85867 -registration(r511,c72,s153).registration5018,85897 -registration(r511,c72,s153).registration5018,85897 -registration(r512,c176,s153).registration5019,85926 -registration(r512,c176,s153).registration5019,85926 -registration(r513,c55,s153).registration5020,85956 -registration(r513,c55,s153).registration5020,85956 -registration(r514,c110,s154).registration5021,85985 -registration(r514,c110,s154).registration5021,85985 -registration(r515,c114,s154).registration5022,86015 -registration(r515,c114,s154).registration5022,86015 -registration(r516,c13,s154).registration5023,86045 -registration(r516,c13,s154).registration5023,86045 -registration(r517,c159,s155).registration5024,86074 -registration(r517,c159,s155).registration5024,86074 -registration(r518,c236,s155).registration5025,86104 -registration(r518,c236,s155).registration5025,86104 -registration(r519,c220,s155).registration5026,86134 -registration(r519,c220,s155).registration5026,86134 -registration(r520,c155,s155).registration5027,86164 -registration(r520,c155,s155).registration5027,86164 -registration(r521,c38,s156).registration5028,86194 -registration(r521,c38,s156).registration5028,86194 -registration(r522,c95,s156).registration5029,86223 -registration(r522,c95,s156).registration5029,86223 -registration(r523,c198,s156).registration5030,86252 -registration(r523,c198,s156).registration5030,86252 -registration(r524,c13,s156).registration5031,86282 -registration(r524,c13,s156).registration5031,86282 -registration(r525,c90,s156).registration5032,86311 -registration(r525,c90,s156).registration5032,86311 -registration(r526,c108,s157).registration5033,86340 -registration(r526,c108,s157).registration5033,86340 -registration(r527,c233,s157).registration5034,86370 -registration(r527,c233,s157).registration5034,86370 -registration(r528,c190,s157).registration5035,86400 -registration(r528,c190,s157).registration5035,86400 -registration(r529,c73,s158).registration5036,86430 -registration(r529,c73,s158).registration5036,86430 -registration(r530,c138,s158).registration5037,86459 -registration(r530,c138,s158).registration5037,86459 -registration(r531,c108,s158).registration5038,86489 -registration(r531,c108,s158).registration5038,86489 -registration(r532,c165,s159).registration5039,86519 -registration(r532,c165,s159).registration5039,86519 -registration(r533,c254,s159).registration5040,86549 -registration(r533,c254,s159).registration5040,86549 -registration(r534,c122,s159).registration5041,86579 -registration(r534,c122,s159).registration5041,86579 -registration(r535,c110,s159).registration5042,86609 -registration(r535,c110,s159).registration5042,86609 -registration(r536,c110,s160).registration5043,86639 -registration(r536,c110,s160).registration5043,86639 -registration(r537,c91,s160).registration5044,86669 -registration(r537,c91,s160).registration5044,86669 -registration(r538,c40,s160).registration5045,86698 -registration(r538,c40,s160).registration5045,86698 -registration(r539,c40,s161).registration5046,86727 -registration(r539,c40,s161).registration5046,86727 -registration(r540,c133,s161).registration5047,86756 -registration(r540,c133,s161).registration5047,86756 -registration(r541,c214,s161).registration5048,86786 -registration(r541,c214,s161).registration5048,86786 -registration(r542,c156,s162).registration5049,86816 -registration(r542,c156,s162).registration5049,86816 -registration(r543,c96,s162).registration5050,86846 -registration(r543,c96,s162).registration5050,86846 -registration(r544,c240,s162).registration5051,86875 -registration(r544,c240,s162).registration5051,86875 -registration(r545,c93,s163).registration5052,86905 -registration(r545,c93,s163).registration5052,86905 -registration(r546,c169,s163).registration5053,86934 -registration(r546,c169,s163).registration5053,86934 -registration(r547,c120,s163).registration5054,86964 -registration(r547,c120,s163).registration5054,86964 -registration(r548,c128,s163).registration5055,86994 -registration(r548,c128,s163).registration5055,86994 -registration(r549,c149,s164).registration5056,87024 -registration(r549,c149,s164).registration5056,87024 -registration(r550,c237,s164).registration5057,87054 -registration(r550,c237,s164).registration5057,87054 -registration(r551,c82,s164).registration5058,87084 -registration(r551,c82,s164).registration5058,87084 -registration(r552,c81,s165).registration5059,87113 -registration(r552,c81,s165).registration5059,87113 -registration(r553,c74,s165).registration5060,87142 -registration(r553,c74,s165).registration5060,87142 -registration(r554,c166,s165).registration5061,87171 -registration(r554,c166,s165).registration5061,87171 -registration(r555,c20,s166).registration5062,87201 -registration(r555,c20,s166).registration5062,87201 -registration(r556,c29,s166).registration5063,87230 -registration(r556,c29,s166).registration5063,87230 -registration(r557,c253,s166).registration5064,87259 -registration(r557,c253,s166).registration5064,87259 -registration(r558,c37,s167).registration5065,87289 -registration(r558,c37,s167).registration5065,87289 -registration(r559,c244,s167).registration5066,87318 -registration(r559,c244,s167).registration5066,87318 -registration(r560,c44,s167).registration5067,87348 -registration(r560,c44,s167).registration5067,87348 -registration(r561,c200,s168).registration5068,87377 -registration(r561,c200,s168).registration5068,87377 -registration(r562,c212,s168).registration5069,87407 -registration(r562,c212,s168).registration5069,87407 -registration(r563,c199,s168).registration5070,87437 -registration(r563,c199,s168).registration5070,87437 -registration(r564,c38,s169).registration5071,87467 -registration(r564,c38,s169).registration5071,87467 -registration(r565,c50,s169).registration5072,87496 -registration(r565,c50,s169).registration5072,87496 -registration(r566,c7,s169).registration5073,87525 -registration(r566,c7,s169).registration5073,87525 -registration(r567,c178,s169).registration5074,87553 -registration(r567,c178,s169).registration5074,87553 -registration(r568,c199,s170).registration5075,87583 -registration(r568,c199,s170).registration5075,87583 -registration(r569,c158,s170).registration5076,87613 -registration(r569,c158,s170).registration5076,87613 -registration(r570,c27,s170).registration5077,87643 -registration(r570,c27,s170).registration5077,87643 -registration(r571,c108,s170).registration5078,87672 -registration(r571,c108,s170).registration5078,87672 -registration(r572,c224,s171).registration5079,87702 -registration(r572,c224,s171).registration5079,87702 -registration(r573,c214,s171).registration5080,87732 -registration(r573,c214,s171).registration5080,87732 -registration(r574,c45,s171).registration5081,87762 -registration(r574,c45,s171).registration5081,87762 -registration(r575,c74,s172).registration5082,87791 -registration(r575,c74,s172).registration5082,87791 -registration(r576,c178,s172).registration5083,87820 -registration(r576,c178,s172).registration5083,87820 -registration(r577,c91,s172).registration5084,87850 -registration(r577,c91,s172).registration5084,87850 -registration(r578,c80,s173).registration5085,87879 -registration(r578,c80,s173).registration5085,87879 -registration(r579,c204,s173).registration5086,87908 -registration(r579,c204,s173).registration5086,87908 -registration(r580,c74,s173).registration5087,87938 -registration(r580,c74,s173).registration5087,87938 -registration(r581,c149,s173).registration5088,87967 -registration(r581,c149,s173).registration5088,87967 -registration(r582,c241,s173).registration5089,87997 -registration(r582,c241,s173).registration5089,87997 -registration(r583,c29,s174).registration5090,88027 -registration(r583,c29,s174).registration5090,88027 -registration(r584,c174,s174).registration5091,88056 -registration(r584,c174,s174).registration5091,88056 -registration(r585,c23,s174).registration5092,88086 -registration(r585,c23,s174).registration5092,88086 -registration(r586,c74,s175).registration5093,88115 -registration(r586,c74,s175).registration5093,88115 -registration(r587,c0,s175).registration5094,88144 -registration(r587,c0,s175).registration5094,88144 -registration(r588,c128,s175).registration5095,88172 -registration(r588,c128,s175).registration5095,88172 -registration(r589,c160,s175).registration5096,88202 -registration(r589,c160,s175).registration5096,88202 -registration(r590,c167,s176).registration5097,88232 -registration(r590,c167,s176).registration5097,88232 -registration(r591,c208,s176).registration5098,88262 -registration(r591,c208,s176).registration5098,88262 -registration(r592,c8,s176).registration5099,88292 -registration(r592,c8,s176).registration5099,88292 -registration(r593,c54,s177).registration5100,88320 -registration(r593,c54,s177).registration5100,88320 -registration(r594,c61,s177).registration5101,88349 -registration(r594,c61,s177).registration5101,88349 -registration(r595,c148,s177).registration5102,88378 -registration(r595,c148,s177).registration5102,88378 -registration(r596,c239,s178).registration5103,88408 -registration(r596,c239,s178).registration5103,88408 -registration(r597,c32,s178).registration5104,88438 -registration(r597,c32,s178).registration5104,88438 -registration(r598,c197,s178).registration5105,88467 -registration(r598,c197,s178).registration5105,88467 -registration(r599,c17,s179).registration5106,88497 -registration(r599,c17,s179).registration5106,88497 -registration(r600,c104,s179).registration5107,88526 -registration(r600,c104,s179).registration5107,88526 -registration(r601,c130,s179).registration5108,88556 -registration(r601,c130,s179).registration5108,88556 -registration(r602,c89,s179).registration5109,88586 -registration(r602,c89,s179).registration5109,88586 -registration(r603,c223,s180).registration5110,88615 -registration(r603,c223,s180).registration5110,88615 -registration(r604,c113,s180).registration5111,88645 -registration(r604,c113,s180).registration5111,88645 -registration(r605,c237,s180).registration5112,88675 -registration(r605,c237,s180).registration5112,88675 -registration(r606,c238,s181).registration5113,88705 -registration(r606,c238,s181).registration5113,88705 -registration(r607,c20,s181).registration5114,88735 -registration(r607,c20,s181).registration5114,88735 -registration(r608,c205,s181).registration5115,88764 -registration(r608,c205,s181).registration5115,88764 -registration(r609,c117,s182).registration5116,88794 -registration(r609,c117,s182).registration5116,88794 -registration(r610,c94,s182).registration5117,88824 -registration(r610,c94,s182).registration5117,88824 -registration(r611,c184,s182).registration5118,88853 -registration(r611,c184,s182).registration5118,88853 -registration(r612,c238,s182).registration5119,88883 -registration(r612,c238,s182).registration5119,88883 -registration(r613,c59,s183).registration5120,88913 -registration(r613,c59,s183).registration5120,88913 -registration(r614,c154,s183).registration5121,88942 -registration(r614,c154,s183).registration5121,88942 -registration(r615,c111,s183).registration5122,88972 -registration(r615,c111,s183).registration5122,88972 -registration(r616,c137,s183).registration5123,89002 -registration(r616,c137,s183).registration5123,89002 -registration(r617,c240,s184).registration5124,89032 -registration(r617,c240,s184).registration5124,89032 -registration(r618,c200,s184).registration5125,89062 -registration(r618,c200,s184).registration5125,89062 -registration(r619,c123,s184).registration5126,89092 -registration(r619,c123,s184).registration5126,89092 -registration(r620,c48,s184).registration5127,89122 -registration(r620,c48,s184).registration5127,89122 -registration(r621,c50,s185).registration5128,89151 -registration(r621,c50,s185).registration5128,89151 -registration(r622,c139,s185).registration5129,89180 -registration(r622,c139,s185).registration5129,89180 -registration(r623,c157,s185).registration5130,89210 -registration(r623,c157,s185).registration5130,89210 -registration(r624,c252,s185).registration5131,89240 -registration(r624,c252,s185).registration5131,89240 -registration(r625,c167,s186).registration5132,89270 -registration(r625,c167,s186).registration5132,89270 -registration(r626,c185,s186).registration5133,89300 -registration(r626,c185,s186).registration5133,89300 -registration(r627,c119,s186).registration5134,89330 -registration(r627,c119,s186).registration5134,89330 -registration(r628,c6,s187).registration5135,89360 -registration(r628,c6,s187).registration5135,89360 -registration(r629,c108,s187).registration5136,89388 -registration(r629,c108,s187).registration5136,89388 -registration(r630,c252,s187).registration5137,89418 -registration(r630,c252,s187).registration5137,89418 -registration(r631,c249,s187).registration5138,89448 -registration(r631,c249,s187).registration5138,89448 -registration(r632,c107,s188).registration5139,89478 -registration(r632,c107,s188).registration5139,89478 -registration(r633,c19,s188).registration5140,89508 -registration(r633,c19,s188).registration5140,89508 -registration(r634,c53,s188).registration5141,89537 -registration(r634,c53,s188).registration5141,89537 -registration(r635,c131,s188).registration5142,89566 -registration(r635,c131,s188).registration5142,89566 -registration(r636,c142,s189).registration5143,89596 -registration(r636,c142,s189).registration5143,89596 -registration(r637,c17,s189).registration5144,89626 -registration(r637,c17,s189).registration5144,89626 -registration(r638,c80,s189).registration5145,89655 -registration(r638,c80,s189).registration5145,89655 -registration(r639,c82,s190).registration5146,89684 -registration(r639,c82,s190).registration5146,89684 -registration(r640,c136,s190).registration5147,89713 -registration(r640,c136,s190).registration5147,89713 -registration(r641,c141,s190).registration5148,89743 -registration(r641,c141,s190).registration5148,89743 -registration(r642,c41,s190).registration5149,89773 -registration(r642,c41,s190).registration5149,89773 -registration(r643,c151,s191).registration5150,89802 -registration(r643,c151,s191).registration5150,89802 -registration(r644,c15,s191).registration5151,89832 -registration(r644,c15,s191).registration5151,89832 -registration(r645,c180,s191).registration5152,89861 -registration(r645,c180,s191).registration5152,89861 -registration(r646,c44,s192).registration5153,89891 -registration(r646,c44,s192).registration5153,89891 -registration(r647,c251,s192).registration5154,89920 -registration(r647,c251,s192).registration5154,89920 -registration(r648,c79,s192).registration5155,89950 -registration(r648,c79,s192).registration5155,89950 -registration(r649,c74,s193).registration5156,89979 -registration(r649,c74,s193).registration5156,89979 -registration(r650,c152,s193).registration5157,90008 -registration(r650,c152,s193).registration5157,90008 -registration(r651,c140,s193).registration5158,90038 -registration(r651,c140,s193).registration5158,90038 -registration(r652,c161,s193).registration5159,90068 -registration(r652,c161,s193).registration5159,90068 -registration(r653,c122,s194).registration5160,90098 -registration(r653,c122,s194).registration5160,90098 -registration(r654,c8,s194).registration5161,90128 -registration(r654,c8,s194).registration5161,90128 -registration(r655,c35,s194).registration5162,90156 -registration(r655,c35,s194).registration5162,90156 -registration(r656,c52,s195).registration5163,90185 -registration(r656,c52,s195).registration5163,90185 -registration(r657,c41,s195).registration5164,90214 -registration(r657,c41,s195).registration5164,90214 -registration(r658,c239,s195).registration5165,90243 -registration(r658,c239,s195).registration5165,90243 -registration(r659,c119,s196).registration5166,90273 -registration(r659,c119,s196).registration5166,90273 -registration(r660,c79,s196).registration5167,90303 -registration(r660,c79,s196).registration5167,90303 -registration(r661,c0,s196).registration5168,90332 -registration(r661,c0,s196).registration5168,90332 -registration(r662,c152,s197).registration5169,90360 -registration(r662,c152,s197).registration5169,90360 -registration(r663,c154,s197).registration5170,90390 -registration(r663,c154,s197).registration5170,90390 -registration(r664,c44,s197).registration5171,90420 -registration(r664,c44,s197).registration5171,90420 -registration(r665,c90,s198).registration5172,90449 -registration(r665,c90,s198).registration5172,90449 -registration(r666,c211,s198).registration5173,90478 -registration(r666,c211,s198).registration5173,90478 -registration(r667,c176,s198).registration5174,90508 -registration(r667,c176,s198).registration5174,90508 -registration(r668,c251,s199).registration5175,90538 -registration(r668,c251,s199).registration5175,90538 -registration(r669,c37,s199).registration5176,90568 -registration(r669,c37,s199).registration5176,90568 -registration(r670,c199,s199).registration5177,90597 -registration(r670,c199,s199).registration5177,90597 -registration(r671,c103,s199).registration5178,90627 -registration(r671,c103,s199).registration5178,90627 -registration(r672,c187,s200).registration5179,90657 -registration(r672,c187,s200).registration5179,90657 -registration(r673,c50,s200).registration5180,90687 -registration(r673,c50,s200).registration5180,90687 -registration(r674,c138,s200).registration5181,90716 -registration(r674,c138,s200).registration5181,90716 -registration(r675,c191,s201).registration5182,90746 -registration(r675,c191,s201).registration5182,90746 -registration(r676,c189,s201).registration5183,90776 -registration(r676,c189,s201).registration5183,90776 -registration(r677,c183,s201).registration5184,90806 -registration(r677,c183,s201).registration5184,90806 -registration(r678,c48,s202).registration5185,90836 -registration(r678,c48,s202).registration5185,90836 -registration(r679,c209,s202).registration5186,90865 -registration(r679,c209,s202).registration5186,90865 -registration(r680,c59,s202).registration5187,90895 -registration(r680,c59,s202).registration5187,90895 -registration(r681,c211,s203).registration5188,90924 -registration(r681,c211,s203).registration5188,90924 -registration(r682,c84,s203).registration5189,90954 -registration(r682,c84,s203).registration5189,90954 -registration(r683,c120,s203).registration5190,90983 -registration(r683,c120,s203).registration5190,90983 -registration(r684,c210,s204).registration5191,91013 -registration(r684,c210,s204).registration5191,91013 -registration(r685,c125,s204).registration5192,91043 -registration(r685,c125,s204).registration5192,91043 -registration(r686,c103,s204).registration5193,91073 -registration(r686,c103,s204).registration5193,91073 -registration(r687,c100,s205).registration5194,91103 -registration(r687,c100,s205).registration5194,91103 -registration(r688,c134,s205).registration5195,91133 -registration(r688,c134,s205).registration5195,91133 -registration(r689,c128,s205).registration5196,91163 -registration(r689,c128,s205).registration5196,91163 -registration(r690,c232,s206).registration5197,91193 -registration(r690,c232,s206).registration5197,91193 -registration(r691,c95,s206).registration5198,91223 -registration(r691,c95,s206).registration5198,91223 -registration(r692,c225,s206).registration5199,91252 -registration(r692,c225,s206).registration5199,91252 -registration(r693,c172,s207).registration5200,91282 -registration(r693,c172,s207).registration5200,91282 -registration(r694,c49,s207).registration5201,91312 -registration(r694,c49,s207).registration5201,91312 -registration(r695,c180,s207).registration5202,91341 -registration(r695,c180,s207).registration5202,91341 -registration(r696,c238,s208).registration5203,91371 -registration(r696,c238,s208).registration5203,91371 -registration(r697,c149,s208).registration5204,91401 -registration(r697,c149,s208).registration5204,91401 -registration(r698,c132,s208).registration5205,91431 -registration(r698,c132,s208).registration5205,91431 -registration(r699,c80,s208).registration5206,91461 -registration(r699,c80,s208).registration5206,91461 -registration(r700,c253,s209).registration5207,91490 -registration(r700,c253,s209).registration5207,91490 -registration(r701,c165,s209).registration5208,91520 -registration(r701,c165,s209).registration5208,91520 -registration(r702,c71,s209).registration5209,91550 -registration(r702,c71,s209).registration5209,91550 -registration(r703,c26,s210).registration5210,91579 -registration(r703,c26,s210).registration5210,91579 -registration(r704,c39,s210).registration5211,91608 -registration(r704,c39,s210).registration5211,91608 -registration(r705,c198,s210).registration5212,91637 -registration(r705,c198,s210).registration5212,91637 -registration(r706,c42,s211).registration5213,91667 -registration(r706,c42,s211).registration5213,91667 -registration(r707,c0,s211).registration5214,91696 -registration(r707,c0,s211).registration5214,91696 -registration(r708,c97,s211).registration5215,91724 -registration(r708,c97,s211).registration5215,91724 -registration(r709,c72,s212).registration5216,91753 -registration(r709,c72,s212).registration5216,91753 -registration(r710,c47,s212).registration5217,91782 -registration(r710,c47,s212).registration5217,91782 -registration(r711,c146,s212).registration5218,91811 -registration(r711,c146,s212).registration5218,91811 -registration(r712,c62,s212).registration5219,91841 -registration(r712,c62,s212).registration5219,91841 -registration(r713,c237,s213).registration5220,91870 -registration(r713,c237,s213).registration5220,91870 -registration(r714,c215,s213).registration5221,91900 -registration(r714,c215,s213).registration5221,91900 -registration(r715,c162,s213).registration5222,91930 -registration(r715,c162,s213).registration5222,91930 -registration(r716,c57,s214).registration5223,91960 -registration(r716,c57,s214).registration5223,91960 -registration(r717,c38,s214).registration5224,91989 -registration(r717,c38,s214).registration5224,91989 -registration(r718,c240,s214).registration5225,92018 -registration(r718,c240,s214).registration5225,92018 -registration(r719,c237,s215).registration5226,92048 -registration(r719,c237,s215).registration5226,92048 -registration(r720,c49,s215).registration5227,92078 -registration(r720,c49,s215).registration5227,92078 -registration(r721,c63,s215).registration5228,92107 -registration(r721,c63,s215).registration5228,92107 -registration(r722,c89,s216).registration5229,92136 -registration(r722,c89,s216).registration5229,92136 -registration(r723,c188,s216).registration5230,92165 -registration(r723,c188,s216).registration5230,92165 -registration(r724,c84,s216).registration5231,92195 -registration(r724,c84,s216).registration5231,92195 -registration(r725,c127,s217).registration5232,92224 -registration(r725,c127,s217).registration5232,92224 -registration(r726,c213,s217).registration5233,92254 -registration(r726,c213,s217).registration5233,92254 -registration(r727,c251,s217).registration5234,92284 -registration(r727,c251,s217).registration5234,92284 -registration(r728,c67,s218).registration5235,92314 -registration(r728,c67,s218).registration5235,92314 -registration(r729,c127,s218).registration5236,92343 -registration(r729,c127,s218).registration5236,92343 -registration(r730,c22,s218).registration5237,92373 -registration(r730,c22,s218).registration5237,92373 -registration(r731,c85,s219).registration5238,92402 -registration(r731,c85,s219).registration5238,92402 -registration(r732,c236,s219).registration5239,92431 -registration(r732,c236,s219).registration5239,92431 -registration(r733,c124,s219).registration5240,92461 -registration(r733,c124,s219).registration5240,92461 -registration(r734,c67,s220).registration5241,92491 -registration(r734,c67,s220).registration5241,92491 -registration(r735,c50,s220).registration5242,92520 -registration(r735,c50,s220).registration5242,92520 -registration(r736,c180,s220).registration5243,92549 -registration(r736,c180,s220).registration5243,92549 -registration(r737,c171,s221).registration5244,92579 -registration(r737,c171,s221).registration5244,92579 -registration(r738,c32,s221).registration5245,92609 -registration(r738,c32,s221).registration5245,92609 -registration(r739,c240,s221).registration5246,92638 -registration(r739,c240,s221).registration5246,92638 -registration(r740,c127,s222).registration5247,92668 -registration(r740,c127,s222).registration5247,92668 -registration(r741,c68,s222).registration5248,92698 -registration(r741,c68,s222).registration5248,92698 -registration(r742,c114,s222).registration5249,92727 -registration(r742,c114,s222).registration5249,92727 -registration(r743,c13,s222).registration5250,92757 -registration(r743,c13,s222).registration5250,92757 -registration(r744,c84,s223).registration5251,92786 -registration(r744,c84,s223).registration5251,92786 -registration(r745,c238,s223).registration5252,92815 -registration(r745,c238,s223).registration5252,92815 -registration(r746,c8,s223).registration5253,92845 -registration(r746,c8,s223).registration5253,92845 -registration(r747,c76,s224).registration5254,92873 -registration(r747,c76,s224).registration5254,92873 -registration(r748,c34,s224).registration5255,92902 -registration(r748,c34,s224).registration5255,92902 -registration(r749,c138,s224).registration5256,92931 -registration(r749,c138,s224).registration5256,92931 -registration(r750,c222,s225).registration5257,92961 -registration(r750,c222,s225).registration5257,92961 -registration(r751,c56,s225).registration5258,92991 -registration(r751,c56,s225).registration5258,92991 -registration(r752,c67,s225).registration5259,93020 -registration(r752,c67,s225).registration5259,93020 -registration(r753,c134,s226).registration5260,93049 -registration(r753,c134,s226).registration5260,93049 -registration(r754,c10,s226).registration5261,93079 -registration(r754,c10,s226).registration5261,93079 -registration(r755,c122,s226).registration5262,93108 -registration(r755,c122,s226).registration5262,93108 -registration(r756,c37,s227).registration5263,93138 -registration(r756,c37,s227).registration5263,93138 -registration(r757,c218,s227).registration5264,93167 -registration(r757,c218,s227).registration5264,93167 -registration(r758,c184,s227).registration5265,93197 -registration(r758,c184,s227).registration5265,93197 -registration(r759,c143,s227).registration5266,93227 -registration(r759,c143,s227).registration5266,93227 -registration(r760,c84,s228).registration5267,93257 -registration(r760,c84,s228).registration5267,93257 -registration(r761,c2,s228).registration5268,93286 -registration(r761,c2,s228).registration5268,93286 -registration(r762,c13,s228).registration5269,93314 -registration(r762,c13,s228).registration5269,93314 -registration(r763,c98,s228).registration5270,93343 -registration(r763,c98,s228).registration5270,93343 -registration(r764,c91,s229).registration5271,93372 -registration(r764,c91,s229).registration5271,93372 -registration(r765,c24,s229).registration5272,93401 -registration(r765,c24,s229).registration5272,93401 -registration(r766,c4,s229).registration5273,93430 -registration(r766,c4,s229).registration5273,93430 -registration(r767,c39,s230).registration5274,93458 -registration(r767,c39,s230).registration5274,93458 -registration(r768,c89,s230).registration5275,93487 -registration(r768,c89,s230).registration5275,93487 -registration(r769,c177,s230).registration5276,93516 -registration(r769,c177,s230).registration5276,93516 -registration(r770,c233,s231).registration5277,93546 -registration(r770,c233,s231).registration5277,93546 -registration(r771,c48,s231).registration5278,93576 -registration(r771,c48,s231).registration5278,93576 -registration(r772,c15,s231).registration5279,93605 -registration(r772,c15,s231).registration5279,93605 -registration(r773,c25,s232).registration5280,93634 -registration(r773,c25,s232).registration5280,93634 -registration(r774,c42,s232).registration5281,93663 -registration(r774,c42,s232).registration5281,93663 -registration(r775,c114,s232).registration5282,93692 -registration(r775,c114,s232).registration5282,93692 -registration(r776,c75,s233).registration5283,93722 -registration(r776,c75,s233).registration5283,93722 -registration(r777,c156,s233).registration5284,93751 -registration(r777,c156,s233).registration5284,93751 -registration(r778,c95,s233).registration5285,93781 -registration(r778,c95,s233).registration5285,93781 -registration(r779,c179,s234).registration5286,93810 -registration(r779,c179,s234).registration5286,93810 -registration(r780,c222,s234).registration5287,93840 -registration(r780,c222,s234).registration5287,93840 -registration(r781,c224,s234).registration5288,93870 -registration(r781,c224,s234).registration5288,93870 -registration(r782,c239,s234).registration5289,93900 -registration(r782,c239,s234).registration5289,93900 -registration(r783,c125,s235).registration5290,93930 -registration(r783,c125,s235).registration5290,93930 -registration(r784,c7,s235).registration5291,93960 -registration(r784,c7,s235).registration5291,93960 -registration(r785,c70,s235).registration5292,93988 -registration(r785,c70,s235).registration5292,93988 -registration(r786,c108,s236).registration5293,94017 -registration(r786,c108,s236).registration5293,94017 -registration(r787,c165,s236).registration5294,94047 -registration(r787,c165,s236).registration5294,94047 -registration(r788,c29,s236).registration5295,94077 -registration(r788,c29,s236).registration5295,94077 -registration(r789,c6,s237).registration5296,94106 -registration(r789,c6,s237).registration5296,94106 -registration(r790,c140,s237).registration5297,94134 -registration(r790,c140,s237).registration5297,94134 -registration(r791,c235,s237).registration5298,94164 -registration(r791,c235,s237).registration5298,94164 -registration(r792,c5,s238).registration5299,94194 -registration(r792,c5,s238).registration5299,94194 -registration(r793,c223,s238).registration5300,94222 -registration(r793,c223,s238).registration5300,94222 -registration(r794,c179,s238).registration5301,94252 -registration(r794,c179,s238).registration5301,94252 -registration(r795,c255,s238).registration5302,94282 -registration(r795,c255,s238).registration5302,94282 -registration(r796,c132,s239).registration5303,94312 -registration(r796,c132,s239).registration5303,94312 -registration(r797,c141,s239).registration5304,94342 -registration(r797,c141,s239).registration5304,94342 -registration(r798,c220,s239).registration5305,94372 -registration(r798,c220,s239).registration5305,94372 -registration(r799,c186,s240).registration5306,94402 -registration(r799,c186,s240).registration5306,94402 -registration(r800,c55,s240).registration5307,94432 -registration(r800,c55,s240).registration5307,94432 -registration(r801,c98,s240).registration5308,94461 -registration(r801,c98,s240).registration5308,94461 -registration(r802,c224,s241).registration5309,94490 -registration(r802,c224,s241).registration5309,94490 -registration(r803,c176,s241).registration5310,94520 -registration(r803,c176,s241).registration5310,94520 -registration(r804,c190,s241).registration5311,94550 -registration(r804,c190,s241).registration5311,94550 -registration(r805,c29,s241).registration5312,94580 -registration(r805,c29,s241).registration5312,94580 -registration(r806,c209,s241).registration5313,94609 -registration(r806,c209,s241).registration5313,94609 -registration(r807,c59,s242).registration5314,94639 -registration(r807,c59,s242).registration5314,94639 -registration(r808,c134,s242).registration5315,94668 -registration(r808,c134,s242).registration5315,94668 -registration(r809,c174,s242).registration5316,94698 -registration(r809,c174,s242).registration5316,94698 -registration(r810,c154,s242).registration5317,94728 -registration(r810,c154,s242).registration5317,94728 -registration(r811,c248,s243).registration5318,94758 -registration(r811,c248,s243).registration5318,94758 -registration(r812,c84,s243).registration5319,94788 -registration(r812,c84,s243).registration5319,94788 -registration(r813,c159,s243).registration5320,94817 -registration(r813,c159,s243).registration5320,94817 -registration(r814,c135,s243).registration5321,94847 -registration(r814,c135,s243).registration5321,94847 -registration(r815,c5,s244).registration5322,94877 -registration(r815,c5,s244).registration5322,94877 -registration(r816,c9,s244).registration5323,94905 -registration(r816,c9,s244).registration5323,94905 -registration(r817,c14,s244).registration5324,94933 -registration(r817,c14,s244).registration5324,94933 -registration(r818,c100,s245).registration5325,94962 -registration(r818,c100,s245).registration5325,94962 -registration(r819,c211,s245).registration5326,94992 -registration(r819,c211,s245).registration5326,94992 -registration(r820,c159,s245).registration5327,95022 -registration(r820,c159,s245).registration5327,95022 -registration(r821,c73,s246).registration5328,95052 -registration(r821,c73,s246).registration5328,95052 -registration(r822,c21,s246).registration5329,95081 -registration(r822,c21,s246).registration5329,95081 -registration(r823,c22,s246).registration5330,95110 -registration(r823,c22,s246).registration5330,95110 -registration(r824,c66,s247).registration5331,95139 -registration(r824,c66,s247).registration5331,95139 -registration(r825,c24,s247).registration5332,95168 -registration(r825,c24,s247).registration5332,95168 -registration(r826,c255,s247).registration5333,95197 -registration(r826,c255,s247).registration5333,95197 -registration(r827,c85,s247).registration5334,95227 -registration(r827,c85,s247).registration5334,95227 -registration(r828,c194,s248).registration5335,95256 -registration(r828,c194,s248).registration5335,95256 -registration(r829,c150,s248).registration5336,95286 -registration(r829,c150,s248).registration5336,95286 -registration(r830,c151,s248).registration5337,95316 -registration(r830,c151,s248).registration5337,95316 -registration(r831,c236,s249).registration5338,95346 -registration(r831,c236,s249).registration5338,95346 -registration(r832,c252,s249).registration5339,95376 -registration(r832,c252,s249).registration5339,95376 -registration(r833,c102,s249).registration5340,95406 -registration(r833,c102,s249).registration5340,95406 -registration(r834,c108,s250).registration5341,95436 -registration(r834,c108,s250).registration5341,95436 -registration(r835,c255,s250).registration5342,95466 -registration(r835,c255,s250).registration5342,95466 -registration(r836,c144,s250).registration5343,95496 -registration(r836,c144,s250).registration5343,95496 -registration(r837,c244,s251).registration5344,95526 -registration(r837,c244,s251).registration5344,95526 -registration(r838,c209,s251).registration5345,95556 -registration(r838,c209,s251).registration5345,95556 -registration(r839,c130,s251).registration5346,95586 -registration(r839,c130,s251).registration5346,95586 -registration(r840,c204,s251).registration5347,95616 -registration(r840,c204,s251).registration5347,95616 -registration(r841,c165,s252).registration5348,95646 -registration(r841,c165,s252).registration5348,95646 -registration(r842,c29,s252).registration5349,95676 -registration(r842,c29,s252).registration5349,95676 -registration(r843,c201,s252).registration5350,95705 -registration(r843,c201,s252).registration5350,95705 -registration(r844,c225,s253).registration5351,95735 -registration(r844,c225,s253).registration5351,95735 -registration(r845,c121,s253).registration5352,95765 -registration(r845,c121,s253).registration5352,95765 -registration(r846,c115,s253).registration5353,95795 -registration(r846,c115,s253).registration5353,95795 -registration(r847,c55,s254).registration5354,95825 -registration(r847,c55,s254).registration5354,95825 -registration(r848,c205,s254).registration5355,95854 -registration(r848,c205,s254).registration5355,95854 -registration(r849,c151,s254).registration5356,95884 -registration(r849,c151,s254).registration5356,95884 -registration(r850,c132,s255).registration5357,95914 -registration(r850,c132,s255).registration5357,95914 -registration(r851,c144,s255).registration5358,95944 -registration(r851,c144,s255).registration5358,95944 -registration(r852,c196,s255).registration5359,95974 -registration(r852,c196,s255).registration5359,95974 -registration(r853,c48,s255).registration5360,96004 -registration(r853,c48,s255).registration5360,96004 -registration(r854,c121,s256).registration5361,96033 -registration(r854,c121,s256).registration5361,96033 -registration(r855,c164,s256).registration5362,96063 -registration(r855,c164,s256).registration5362,96063 -registration(r856,c47,s256).registration5363,96093 -registration(r856,c47,s256).registration5363,96093 -registration(r857,c1,s257).registration5364,96122 -registration(r857,c1,s257).registration5364,96122 -registration(r858,c225,s257).registration5365,96150 -registration(r858,c225,s257).registration5365,96150 -registration(r859,c42,s257).registration5366,96180 -registration(r859,c42,s257).registration5366,96180 -registration(r860,c175,s257).registration5367,96209 -registration(r860,c175,s257).registration5367,96209 -registration(r861,c39,s258).registration5368,96239 -registration(r861,c39,s258).registration5368,96239 -registration(r862,c120,s258).registration5369,96268 -registration(r862,c120,s258).registration5369,96268 -registration(r863,c74,s258).registration5370,96298 -registration(r863,c74,s258).registration5370,96298 -registration(r864,c195,s259).registration5371,96327 -registration(r864,c195,s259).registration5371,96327 -registration(r865,c252,s259).registration5372,96357 -registration(r865,c252,s259).registration5372,96357 -registration(r866,c143,s259).registration5373,96387 -registration(r866,c143,s259).registration5373,96387 -registration(r867,c93,s260).registration5374,96417 -registration(r867,c93,s260).registration5374,96417 -registration(r868,c91,s260).registration5375,96446 -registration(r868,c91,s260).registration5375,96446 -registration(r869,c199,s260).registration5376,96475 -registration(r869,c199,s260).registration5376,96475 -registration(r870,c86,s261).registration5377,96505 -registration(r870,c86,s261).registration5377,96505 -registration(r871,c127,s261).registration5378,96534 -registration(r871,c127,s261).registration5378,96534 -registration(r872,c91,s261).registration5379,96564 -registration(r872,c91,s261).registration5379,96564 -registration(r873,c212,s262).registration5380,96593 -registration(r873,c212,s262).registration5380,96593 -registration(r874,c14,s262).registration5381,96623 -registration(r874,c14,s262).registration5381,96623 -registration(r875,c223,s262).registration5382,96652 -registration(r875,c223,s262).registration5382,96652 -registration(r876,c166,s262).registration5383,96682 -registration(r876,c166,s262).registration5383,96682 -registration(r877,c19,s263).registration5384,96712 -registration(r877,c19,s263).registration5384,96712 -registration(r878,c209,s263).registration5385,96741 -registration(r878,c209,s263).registration5385,96741 -registration(r879,c234,s263).registration5386,96771 -registration(r879,c234,s263).registration5386,96771 -registration(r880,c18,s264).registration5387,96801 -registration(r880,c18,s264).registration5387,96801 -registration(r881,c60,s264).registration5388,96830 -registration(r881,c60,s264).registration5388,96830 -registration(r882,c235,s264).registration5389,96859 -registration(r882,c235,s264).registration5389,96859 -registration(r883,c175,s265).registration5390,96889 -registration(r883,c175,s265).registration5390,96889 -registration(r884,c150,s265).registration5391,96919 -registration(r884,c150,s265).registration5391,96919 -registration(r885,c37,s265).registration5392,96949 -registration(r885,c37,s265).registration5392,96949 -registration(r886,c131,s266).registration5393,96978 -registration(r886,c131,s266).registration5393,96978 -registration(r887,c206,s266).registration5394,97008 -registration(r887,c206,s266).registration5394,97008 -registration(r888,c144,s266).registration5395,97038 -registration(r888,c144,s266).registration5395,97038 -registration(r889,c231,s267).registration5396,97068 -registration(r889,c231,s267).registration5396,97068 -registration(r890,c187,s267).registration5397,97098 -registration(r890,c187,s267).registration5397,97098 -registration(r891,c9,s267).registration5398,97128 -registration(r891,c9,s267).registration5398,97128 -registration(r892,c221,s268).registration5399,97156 -registration(r892,c221,s268).registration5399,97156 -registration(r893,c96,s268).registration5400,97186 -registration(r893,c96,s268).registration5400,97186 -registration(r894,c73,s268).registration5401,97215 -registration(r894,c73,s268).registration5401,97215 -registration(r895,c8,s268).registration5402,97244 -registration(r895,c8,s268).registration5402,97244 -registration(r896,c36,s268).registration5403,97272 -registration(r896,c36,s268).registration5403,97272 -registration(r897,c218,s269).registration5404,97301 -registration(r897,c218,s269).registration5404,97301 -registration(r898,c21,s269).registration5405,97331 -registration(r898,c21,s269).registration5405,97331 -registration(r899,c231,s269).registration5406,97360 -registration(r899,c231,s269).registration5406,97360 -registration(r900,c35,s269).registration5407,97390 -registration(r900,c35,s269).registration5407,97390 -registration(r901,c102,s270).registration5408,97419 -registration(r901,c102,s270).registration5408,97419 -registration(r902,c194,s270).registration5409,97449 -registration(r902,c194,s270).registration5409,97449 -registration(r903,c183,s270).registration5410,97479 -registration(r903,c183,s270).registration5410,97479 -registration(r904,c88,s270).registration5411,97509 -registration(r904,c88,s270).registration5411,97509 -registration(r905,c136,s271).registration5412,97538 -registration(r905,c136,s271).registration5412,97538 -registration(r906,c35,s271).registration5413,97568 -registration(r906,c35,s271).registration5413,97568 -registration(r907,c96,s271).registration5414,97597 -registration(r907,c96,s271).registration5414,97597 -registration(r908,c157,s272).registration5415,97626 -registration(r908,c157,s272).registration5415,97626 -registration(r909,c5,s272).registration5416,97656 -registration(r909,c5,s272).registration5416,97656 -registration(r910,c155,s272).registration5417,97684 -registration(r910,c155,s272).registration5417,97684 -registration(r911,c238,s272).registration5418,97714 -registration(r911,c238,s272).registration5418,97714 -registration(r912,c197,s273).registration5419,97744 -registration(r912,c197,s273).registration5419,97744 -registration(r913,c236,s273).registration5420,97774 -registration(r913,c236,s273).registration5420,97774 -registration(r914,c78,s273).registration5421,97804 -registration(r914,c78,s273).registration5421,97804 -registration(r915,c252,s273).registration5422,97833 -registration(r915,c252,s273).registration5422,97833 -registration(r916,c59,s274).registration5423,97863 -registration(r916,c59,s274).registration5423,97863 -registration(r917,c32,s274).registration5424,97892 -registration(r917,c32,s274).registration5424,97892 -registration(r918,c50,s274).registration5425,97921 -registration(r918,c50,s274).registration5425,97921 -registration(r919,c174,s274).registration5426,97950 -registration(r919,c174,s274).registration5426,97950 -registration(r920,c121,s275).registration5427,97980 -registration(r920,c121,s275).registration5427,97980 -registration(r921,c41,s275).registration5428,98010 -registration(r921,c41,s275).registration5428,98010 -registration(r922,c20,s275).registration5429,98039 -registration(r922,c20,s275).registration5429,98039 -registration(r923,c42,s276).registration5430,98068 -registration(r923,c42,s276).registration5430,98068 -registration(r924,c150,s276).registration5431,98097 -registration(r924,c150,s276).registration5431,98097 -registration(r925,c191,s276).registration5432,98127 -registration(r925,c191,s276).registration5432,98127 -registration(r926,c31,s277).registration5433,98157 -registration(r926,c31,s277).registration5433,98157 -registration(r927,c9,s277).registration5434,98186 -registration(r927,c9,s277).registration5434,98186 -registration(r928,c110,s277).registration5435,98214 -registration(r928,c110,s277).registration5435,98214 -registration(r929,c10,s277).registration5436,98244 -registration(r929,c10,s277).registration5436,98244 -registration(r930,c23,s278).registration5437,98273 -registration(r930,c23,s278).registration5437,98273 -registration(r931,c30,s278).registration5438,98302 -registration(r931,c30,s278).registration5438,98302 -registration(r932,c247,s278).registration5439,98331 -registration(r932,c247,s278).registration5439,98331 -registration(r933,c72,s278).registration5440,98361 -registration(r933,c72,s278).registration5440,98361 -registration(r934,c237,s279).registration5441,98390 -registration(r934,c237,s279).registration5441,98390 -registration(r935,c7,s279).registration5442,98420 -registration(r935,c7,s279).registration5442,98420 -registration(r936,c158,s279).registration5443,98448 -registration(r936,c158,s279).registration5443,98448 -registration(r937,c40,s279).registration5444,98478 -registration(r937,c40,s279).registration5444,98478 -registration(r938,c122,s280).registration5445,98507 -registration(r938,c122,s280).registration5445,98507 -registration(r939,c47,s280).registration5446,98537 -registration(r939,c47,s280).registration5446,98537 -registration(r940,c126,s280).registration5447,98566 -registration(r940,c126,s280).registration5447,98566 -registration(r941,c146,s281).registration5448,98596 -registration(r941,c146,s281).registration5448,98596 -registration(r942,c48,s281).registration5449,98626 -registration(r942,c48,s281).registration5449,98626 -registration(r943,c59,s281).registration5450,98655 -registration(r943,c59,s281).registration5450,98655 -registration(r944,c250,s282).registration5451,98684 -registration(r944,c250,s282).registration5451,98684 -registration(r945,c110,s282).registration5452,98714 -registration(r945,c110,s282).registration5452,98714 -registration(r946,c127,s282).registration5453,98744 -registration(r946,c127,s282).registration5453,98744 -registration(r947,c120,s282).registration5454,98774 -registration(r947,c120,s282).registration5454,98774 -registration(r948,c214,s283).registration5455,98804 -registration(r948,c214,s283).registration5455,98804 -registration(r949,c135,s283).registration5456,98834 -registration(r949,c135,s283).registration5456,98834 -registration(r950,c246,s283).registration5457,98864 -registration(r950,c246,s283).registration5457,98864 -registration(r951,c238,s284).registration5458,98894 -registration(r951,c238,s284).registration5458,98894 -registration(r952,c202,s284).registration5459,98924 -registration(r952,c202,s284).registration5459,98924 -registration(r953,c175,s284).registration5460,98954 -registration(r953,c175,s284).registration5460,98954 -registration(r954,c184,s285).registration5461,98984 -registration(r954,c184,s285).registration5461,98984 -registration(r955,c211,s285).registration5462,99014 -registration(r955,c211,s285).registration5462,99014 -registration(r956,c225,s285).registration5463,99044 -registration(r956,c225,s285).registration5463,99044 -registration(r957,c91,s286).registration5464,99074 -registration(r957,c91,s286).registration5464,99074 -registration(r958,c15,s286).registration5465,99103 -registration(r958,c15,s286).registration5465,99103 -registration(r959,c34,s286).registration5466,99132 -registration(r959,c34,s286).registration5466,99132 -registration(r960,c179,s287).registration5467,99161 -registration(r960,c179,s287).registration5467,99161 -registration(r961,c127,s287).registration5468,99191 -registration(r961,c127,s287).registration5468,99191 -registration(r962,c163,s287).registration5469,99221 -registration(r962,c163,s287).registration5469,99221 -registration(r963,c158,s288).registration5470,99251 -registration(r963,c158,s288).registration5470,99251 -registration(r964,c223,s288).registration5471,99281 -registration(r964,c223,s288).registration5471,99281 -registration(r965,c197,s288).registration5472,99311 -registration(r965,c197,s288).registration5472,99311 -registration(r966,c178,s289).registration5473,99341 -registration(r966,c178,s289).registration5473,99341 -registration(r967,c141,s289).registration5474,99371 -registration(r967,c141,s289).registration5474,99371 -registration(r968,c223,s289).registration5475,99401 -registration(r968,c223,s289).registration5475,99401 -registration(r969,c133,s290).registration5476,99431 -registration(r969,c133,s290).registration5476,99431 -registration(r970,c152,s290).registration5477,99461 -registration(r970,c152,s290).registration5477,99461 -registration(r971,c70,s290).registration5478,99491 -registration(r971,c70,s290).registration5478,99491 -registration(r972,c255,s291).registration5479,99520 -registration(r972,c255,s291).registration5479,99520 -registration(r973,c237,s291).registration5480,99550 -registration(r973,c237,s291).registration5480,99550 -registration(r974,c160,s291).registration5481,99580 -registration(r974,c160,s291).registration5481,99580 -registration(r975,c69,s292).registration5482,99610 -registration(r975,c69,s292).registration5482,99610 -registration(r976,c58,s292).registration5483,99639 -registration(r976,c58,s292).registration5483,99639 -registration(r977,c221,s292).registration5484,99668 -registration(r977,c221,s292).registration5484,99668 -registration(r978,c70,s293).registration5485,99698 -registration(r978,c70,s293).registration5485,99698 -registration(r979,c27,s293).registration5486,99727 -registration(r979,c27,s293).registration5486,99727 -registration(r980,c10,s293).registration5487,99756 -registration(r980,c10,s293).registration5487,99756 -registration(r981,c81,s294).registration5488,99785 -registration(r981,c81,s294).registration5488,99785 -registration(r982,c136,s294).registration5489,99814 -registration(r982,c136,s294).registration5489,99814 -registration(r983,c106,s294).registration5490,99844 -registration(r983,c106,s294).registration5490,99844 -registration(r984,c63,s294).registration5491,99874 -registration(r984,c63,s294).registration5491,99874 -registration(r985,c202,s295).registration5492,99903 -registration(r985,c202,s295).registration5492,99903 -registration(r986,c206,s295).registration5493,99933 -registration(r986,c206,s295).registration5493,99933 -registration(r987,c160,s295).registration5494,99963 -registration(r987,c160,s295).registration5494,99963 -registration(r988,c38,s296).registration5495,99993 -registration(r988,c38,s296).registration5495,99993 -registration(r989,c11,s296).registration5496,100022 -registration(r989,c11,s296).registration5496,100022 -registration(r990,c146,s296).registration5497,100051 -registration(r990,c146,s296).registration5497,100051 -registration(r991,c144,s297).registration5498,100081 -registration(r991,c144,s297).registration5498,100081 -registration(r992,c75,s297).registration5499,100111 -registration(r992,c75,s297).registration5499,100111 -registration(r993,c122,s297).registration5500,100140 -registration(r993,c122,s297).registration5500,100140 -registration(r994,c192,s297).registration5501,100170 -registration(r994,c192,s297).registration5501,100170 -registration(r995,c171,s298).registration5502,100200 -registration(r995,c171,s298).registration5502,100200 -registration(r996,c247,s298).registration5503,100230 -registration(r996,c247,s298).registration5503,100230 -registration(r997,c39,s298).registration5504,100260 -registration(r997,c39,s298).registration5504,100260 -registration(r998,c66,s299).registration5505,100289 -registration(r998,c66,s299).registration5505,100289 -registration(r999,c63,s299).registration5506,100318 -registration(r999,c63,s299).registration5506,100318 -registration(r1000,c39,s299).registration5507,100347 -registration(r1000,c39,s299).registration5507,100347 -registration(r1001,c175,s300).registration5508,100377 -registration(r1001,c175,s300).registration5508,100377 -registration(r1002,c55,s300).registration5509,100408 -registration(r1002,c55,s300).registration5509,100408 -registration(r1003,c167,s300).registration5510,100438 -registration(r1003,c167,s300).registration5510,100438 -registration(r1004,c114,s301).registration5511,100469 -registration(r1004,c114,s301).registration5511,100469 -registration(r1005,c189,s301).registration5512,100500 -registration(r1005,c189,s301).registration5512,100500 -registration(r1006,c154,s301).registration5513,100531 -registration(r1006,c154,s301).registration5513,100531 -registration(r1007,c194,s301).registration5514,100562 -registration(r1007,c194,s301).registration5514,100562 -registration(r1008,c241,s302).registration5515,100593 -registration(r1008,c241,s302).registration5515,100593 -registration(r1009,c152,s302).registration5516,100624 -registration(r1009,c152,s302).registration5516,100624 -registration(r1010,c30,s302).registration5517,100655 -registration(r1010,c30,s302).registration5517,100655 -registration(r1011,c106,s302).registration5518,100685 -registration(r1011,c106,s302).registration5518,100685 -registration(r1012,c69,s303).registration5519,100716 -registration(r1012,c69,s303).registration5519,100716 -registration(r1013,c154,s303).registration5520,100746 -registration(r1013,c154,s303).registration5520,100746 -registration(r1014,c132,s303).registration5521,100777 -registration(r1014,c132,s303).registration5521,100777 -registration(r1015,c67,s303).registration5522,100808 -registration(r1015,c67,s303).registration5522,100808 -registration(r1016,c45,s304).registration5523,100838 -registration(r1016,c45,s304).registration5523,100838 -registration(r1017,c122,s304).registration5524,100868 -registration(r1017,c122,s304).registration5524,100868 -registration(r1018,c185,s304).registration5525,100899 -registration(r1018,c185,s304).registration5525,100899 -registration(r1019,c224,s305).registration5526,100930 -registration(r1019,c224,s305).registration5526,100930 -registration(r1020,c62,s305).registration5527,100961 -registration(r1020,c62,s305).registration5527,100961 -registration(r1021,c75,s305).registration5528,100991 -registration(r1021,c75,s305).registration5528,100991 -registration(r1022,c242,s306).registration5529,101021 -registration(r1022,c242,s306).registration5529,101021 -registration(r1023,c127,s306).registration5530,101052 -registration(r1023,c127,s306).registration5530,101052 -registration(r1024,c111,s306).registration5531,101083 -registration(r1024,c111,s306).registration5531,101083 -registration(r1025,c11,s307).registration5532,101114 -registration(r1025,c11,s307).registration5532,101114 -registration(r1026,c75,s307).registration5533,101144 -registration(r1026,c75,s307).registration5533,101144 -registration(r1027,c69,s307).registration5534,101174 -registration(r1027,c69,s307).registration5534,101174 -registration(r1028,c222,s308).registration5535,101204 -registration(r1028,c222,s308).registration5535,101204 -registration(r1029,c236,s308).registration5536,101235 -registration(r1029,c236,s308).registration5536,101235 -registration(r1030,c7,s308).registration5537,101266 -registration(r1030,c7,s308).registration5537,101266 -registration(r1031,c87,s308).registration5538,101295 -registration(r1031,c87,s308).registration5538,101295 -registration(r1032,c161,s309).registration5539,101325 -registration(r1032,c161,s309).registration5539,101325 -registration(r1033,c219,s309).registration5540,101356 -registration(r1033,c219,s309).registration5540,101356 -registration(r1034,c82,s309).registration5541,101387 -registration(r1034,c82,s309).registration5541,101387 -registration(r1035,c128,s310).registration5542,101417 -registration(r1035,c128,s310).registration5542,101417 -registration(r1036,c96,s310).registration5543,101448 -registration(r1036,c96,s310).registration5543,101448 -registration(r1037,c16,s310).registration5544,101478 -registration(r1037,c16,s310).registration5544,101478 -registration(r1038,c241,s310).registration5545,101508 -registration(r1038,c241,s310).registration5545,101508 -registration(r1039,c47,s311).registration5546,101539 -registration(r1039,c47,s311).registration5546,101539 -registration(r1040,c102,s311).registration5547,101569 -registration(r1040,c102,s311).registration5547,101569 -registration(r1041,c130,s311).registration5548,101600 -registration(r1041,c130,s311).registration5548,101600 -registration(r1042,c1,s312).registration5549,101631 -registration(r1042,c1,s312).registration5549,101631 -registration(r1043,c22,s312).registration5550,101660 -registration(r1043,c22,s312).registration5550,101660 -registration(r1044,c189,s312).registration5551,101690 -registration(r1044,c189,s312).registration5551,101690 -registration(r1045,c8,s312).registration5552,101721 -registration(r1045,c8,s312).registration5552,101721 -registration(r1046,c131,s313).registration5553,101750 -registration(r1046,c131,s313).registration5553,101750 -registration(r1047,c239,s313).registration5554,101781 -registration(r1047,c239,s313).registration5554,101781 -registration(r1048,c67,s313).registration5555,101812 -registration(r1048,c67,s313).registration5555,101812 -registration(r1049,c75,s314).registration5556,101842 -registration(r1049,c75,s314).registration5556,101842 -registration(r1050,c107,s314).registration5557,101872 -registration(r1050,c107,s314).registration5557,101872 -registration(r1051,c50,s314).registration5558,101903 -registration(r1051,c50,s314).registration5558,101903 -registration(r1052,c14,s314).registration5559,101933 -registration(r1052,c14,s314).registration5559,101933 -registration(r1053,c235,s315).registration5560,101963 -registration(r1053,c235,s315).registration5560,101963 -registration(r1054,c242,s315).registration5561,101994 -registration(r1054,c242,s315).registration5561,101994 -registration(r1055,c100,s315).registration5562,102025 -registration(r1055,c100,s315).registration5562,102025 -registration(r1056,c117,s316).registration5563,102056 -registration(r1056,c117,s316).registration5563,102056 -registration(r1057,c92,s316).registration5564,102087 -registration(r1057,c92,s316).registration5564,102087 -registration(r1058,c109,s316).registration5565,102117 -registration(r1058,c109,s316).registration5565,102117 -registration(r1059,c211,s317).registration5566,102148 -registration(r1059,c211,s317).registration5566,102148 -registration(r1060,c231,s317).registration5567,102179 -registration(r1060,c231,s317).registration5567,102179 -registration(r1061,c49,s317).registration5568,102210 -registration(r1061,c49,s317).registration5568,102210 -registration(r1062,c233,s317).registration5569,102240 -registration(r1062,c233,s317).registration5569,102240 -registration(r1063,c232,s318).registration5570,102271 -registration(r1063,c232,s318).registration5570,102271 -registration(r1064,c39,s318).registration5571,102302 -registration(r1064,c39,s318).registration5571,102302 -registration(r1065,c105,s318).registration5572,102332 -registration(r1065,c105,s318).registration5572,102332 -registration(r1066,c88,s319).registration5573,102363 -registration(r1066,c88,s319).registration5573,102363 -registration(r1067,c52,s319).registration5574,102393 -registration(r1067,c52,s319).registration5574,102393 -registration(r1068,c13,s319).registration5575,102423 -registration(r1068,c13,s319).registration5575,102423 -registration(r1069,c120,s320).registration5576,102453 -registration(r1069,c120,s320).registration5576,102453 -registration(r1070,c102,s320).registration5577,102484 -registration(r1070,c102,s320).registration5577,102484 -registration(r1071,c23,s320).registration5578,102515 -registration(r1071,c23,s320).registration5578,102515 -registration(r1072,c3,s321).registration5579,102545 -registration(r1072,c3,s321).registration5579,102545 -registration(r1073,c119,s321).registration5580,102574 -registration(r1073,c119,s321).registration5580,102574 -registration(r1074,c218,s321).registration5581,102605 -registration(r1074,c218,s321).registration5581,102605 -registration(r1075,c80,s322).registration5582,102636 -registration(r1075,c80,s322).registration5582,102636 -registration(r1076,c204,s322).registration5583,102666 -registration(r1076,c204,s322).registration5583,102666 -registration(r1077,c55,s322).registration5584,102697 -registration(r1077,c55,s322).registration5584,102697 -registration(r1078,c11,s323).registration5585,102727 -registration(r1078,c11,s323).registration5585,102727 -registration(r1079,c159,s323).registration5586,102757 -registration(r1079,c159,s323).registration5586,102757 -registration(r1080,c138,s323).registration5587,102788 -registration(r1080,c138,s323).registration5587,102788 -registration(r1081,c210,s324).registration5588,102819 -registration(r1081,c210,s324).registration5588,102819 -registration(r1082,c31,s324).registration5589,102850 -registration(r1082,c31,s324).registration5589,102850 -registration(r1083,c174,s324).registration5590,102880 -registration(r1083,c174,s324).registration5590,102880 -registration(r1084,c90,s324).registration5591,102911 -registration(r1084,c90,s324).registration5591,102911 -registration(r1085,c147,s325).registration5592,102941 -registration(r1085,c147,s325).registration5592,102941 -registration(r1086,c67,s325).registration5593,102972 -registration(r1086,c67,s325).registration5593,102972 -registration(r1087,c103,s325).registration5594,103002 -registration(r1087,c103,s325).registration5594,103002 -registration(r1088,c223,s326).registration5595,103033 -registration(r1088,c223,s326).registration5595,103033 -registration(r1089,c46,s326).registration5596,103064 -registration(r1089,c46,s326).registration5596,103064 -registration(r1090,c219,s326).registration5597,103094 -registration(r1090,c219,s326).registration5597,103094 -registration(r1091,c223,s327).registration5598,103125 -registration(r1091,c223,s327).registration5598,103125 -registration(r1092,c218,s327).registration5599,103156 -registration(r1092,c218,s327).registration5599,103156 -registration(r1093,c124,s327).registration5600,103187 -registration(r1093,c124,s327).registration5600,103187 -registration(r1094,c205,s328).registration5601,103218 -registration(r1094,c205,s328).registration5601,103218 -registration(r1095,c27,s328).registration5602,103249 -registration(r1095,c27,s328).registration5602,103249 -registration(r1096,c221,s328).registration5603,103279 -registration(r1096,c221,s328).registration5603,103279 -registration(r1097,c232,s329).registration5604,103310 -registration(r1097,c232,s329).registration5604,103310 -registration(r1098,c35,s329).registration5605,103341 -registration(r1098,c35,s329).registration5605,103341 -registration(r1099,c254,s329).registration5606,103371 -registration(r1099,c254,s329).registration5606,103371 -registration(r1100,c169,s329).registration5607,103402 -registration(r1100,c169,s329).registration5607,103402 -registration(r1101,c62,s330).registration5608,103433 -registration(r1101,c62,s330).registration5608,103433 -registration(r1102,c90,s330).registration5609,103463 -registration(r1102,c90,s330).registration5609,103463 -registration(r1103,c11,s330).registration5610,103493 -registration(r1103,c11,s330).registration5610,103493 -registration(r1104,c159,s331).registration5611,103523 -registration(r1104,c159,s331).registration5611,103523 -registration(r1105,c145,s331).registration5612,103554 -registration(r1105,c145,s331).registration5612,103554 -registration(r1106,c27,s331).registration5613,103585 -registration(r1106,c27,s331).registration5613,103585 -registration(r1107,c251,s332).registration5614,103615 -registration(r1107,c251,s332).registration5614,103615 -registration(r1108,c149,s332).registration5615,103646 -registration(r1108,c149,s332).registration5615,103646 -registration(r1109,c50,s332).registration5616,103677 -registration(r1109,c50,s332).registration5616,103677 -registration(r1110,c18,s333).registration5617,103707 -registration(r1110,c18,s333).registration5617,103707 -registration(r1111,c59,s333).registration5618,103737 -registration(r1111,c59,s333).registration5618,103737 -registration(r1112,c182,s333).registration5619,103767 -registration(r1112,c182,s333).registration5619,103767 -registration(r1113,c132,s334).registration5620,103798 -registration(r1113,c132,s334).registration5620,103798 -registration(r1114,c124,s334).registration5621,103829 -registration(r1114,c124,s334).registration5621,103829 -registration(r1115,c190,s334).registration5622,103860 -registration(r1115,c190,s334).registration5622,103860 -registration(r1116,c240,s334).registration5623,103891 -registration(r1116,c240,s334).registration5623,103891 -registration(r1117,c44,s335).registration5624,103922 -registration(r1117,c44,s335).registration5624,103922 -registration(r1118,c239,s335).registration5625,103952 -registration(r1118,c239,s335).registration5625,103952 -registration(r1119,c196,s335).registration5626,103983 -registration(r1119,c196,s335).registration5626,103983 -registration(r1120,c3,s336).registration5627,104014 -registration(r1120,c3,s336).registration5627,104014 -registration(r1121,c49,s336).registration5628,104043 -registration(r1121,c49,s336).registration5628,104043 -registration(r1122,c204,s336).registration5629,104073 -registration(r1122,c204,s336).registration5629,104073 -registration(r1123,c107,s337).registration5630,104104 -registration(r1123,c107,s337).registration5630,104104 -registration(r1124,c227,s337).registration5631,104135 -registration(r1124,c227,s337).registration5631,104135 -registration(r1125,c0,s337).registration5632,104166 -registration(r1125,c0,s337).registration5632,104166 -registration(r1126,c252,s338).registration5633,104195 -registration(r1126,c252,s338).registration5633,104195 -registration(r1127,c103,s338).registration5634,104226 -registration(r1127,c103,s338).registration5634,104226 -registration(r1128,c108,s338).registration5635,104257 -registration(r1128,c108,s338).registration5635,104257 -registration(r1129,c126,s339).registration5636,104288 -registration(r1129,c126,s339).registration5636,104288 -registration(r1130,c151,s339).registration5637,104319 -registration(r1130,c151,s339).registration5637,104319 -registration(r1131,c86,s339).registration5638,104350 -registration(r1131,c86,s339).registration5638,104350 -registration(r1132,c219,s340).registration5639,104380 -registration(r1132,c219,s340).registration5639,104380 -registration(r1133,c91,s340).registration5640,104411 -registration(r1133,c91,s340).registration5640,104411 -registration(r1134,c53,s340).registration5641,104441 -registration(r1134,c53,s340).registration5641,104441 -registration(r1135,c219,s341).registration5642,104471 -registration(r1135,c219,s341).registration5642,104471 -registration(r1136,c16,s341).registration5643,104502 -registration(r1136,c16,s341).registration5643,104502 -registration(r1137,c60,s341).registration5644,104532 -registration(r1137,c60,s341).registration5644,104532 -registration(r1138,c251,s342).registration5645,104562 -registration(r1138,c251,s342).registration5645,104562 -registration(r1139,c163,s342).registration5646,104593 -registration(r1139,c163,s342).registration5646,104593 -registration(r1140,c25,s342).registration5647,104624 -registration(r1140,c25,s342).registration5647,104624 -registration(r1141,c254,s343).registration5648,104654 -registration(r1141,c254,s343).registration5648,104654 -registration(r1142,c50,s343).registration5649,104685 -registration(r1142,c50,s343).registration5649,104685 -registration(r1143,c216,s343).registration5650,104715 -registration(r1143,c216,s343).registration5650,104715 -registration(r1144,c19,s343).registration5651,104746 -registration(r1144,c19,s343).registration5651,104746 -registration(r1145,c251,s344).registration5652,104776 -registration(r1145,c251,s344).registration5652,104776 -registration(r1146,c109,s344).registration5653,104807 -registration(r1146,c109,s344).registration5653,104807 -registration(r1147,c128,s344).registration5654,104838 -registration(r1147,c128,s344).registration5654,104838 -registration(r1148,c254,s344).registration5655,104869 -registration(r1148,c254,s344).registration5655,104869 -registration(r1149,c239,s345).registration5656,104900 -registration(r1149,c239,s345).registration5656,104900 -registration(r1150,c102,s345).registration5657,104931 -registration(r1150,c102,s345).registration5657,104931 -registration(r1151,c221,s345).registration5658,104962 -registration(r1151,c221,s345).registration5658,104962 -registration(r1152,c58,s346).registration5659,104993 -registration(r1152,c58,s346).registration5659,104993 -registration(r1153,c158,s346).registration5660,105023 -registration(r1153,c158,s346).registration5660,105023 -registration(r1154,c38,s346).registration5661,105054 -registration(r1154,c38,s346).registration5661,105054 -registration(r1155,c56,s347).registration5662,105084 -registration(r1155,c56,s347).registration5662,105084 -registration(r1156,c195,s347).registration5663,105114 -registration(r1156,c195,s347).registration5663,105114 -registration(r1157,c26,s347).registration5664,105145 -registration(r1157,c26,s347).registration5664,105145 -registration(r1158,c191,s347).registration5665,105175 -registration(r1158,c191,s347).registration5665,105175 -registration(r1159,c57,s348).registration5666,105206 -registration(r1159,c57,s348).registration5666,105206 -registration(r1160,c135,s348).registration5667,105236 -registration(r1160,c135,s348).registration5667,105236 -registration(r1161,c181,s348).registration5668,105267 -registration(r1161,c181,s348).registration5668,105267 -registration(r1162,c142,s349).registration5669,105298 -registration(r1162,c142,s349).registration5669,105298 -registration(r1163,c55,s349).registration5670,105329 -registration(r1163,c55,s349).registration5670,105329 -registration(r1164,c191,s349).registration5671,105359 -registration(r1164,c191,s349).registration5671,105359 -registration(r1165,c44,s350).registration5672,105390 -registration(r1165,c44,s350).registration5672,105390 -registration(r1166,c34,s350).registration5673,105420 -registration(r1166,c34,s350).registration5673,105420 -registration(r1167,c141,s350).registration5674,105450 -registration(r1167,c141,s350).registration5674,105450 -registration(r1168,c124,s350).registration5675,105481 -registration(r1168,c124,s350).registration5675,105481 -registration(r1169,c162,s351).registration5676,105512 -registration(r1169,c162,s351).registration5676,105512 -registration(r1170,c254,s351).registration5677,105543 -registration(r1170,c254,s351).registration5677,105543 -registration(r1171,c227,s351).registration5678,105574 -registration(r1171,c227,s351).registration5678,105574 -registration(r1172,c129,s352).registration5679,105605 -registration(r1172,c129,s352).registration5679,105605 -registration(r1173,c11,s352).registration5680,105636 -registration(r1173,c11,s352).registration5680,105636 -registration(r1174,c193,s352).registration5681,105666 -registration(r1174,c193,s352).registration5681,105666 -registration(r1175,c132,s353).registration5682,105697 -registration(r1175,c132,s353).registration5682,105697 -registration(r1176,c22,s353).registration5683,105728 -registration(r1176,c22,s353).registration5683,105728 -registration(r1177,c100,s353).registration5684,105758 -registration(r1177,c100,s353).registration5684,105758 -registration(r1178,c158,s354).registration5685,105789 -registration(r1178,c158,s354).registration5685,105789 -registration(r1179,c202,s354).registration5686,105820 -registration(r1179,c202,s354).registration5686,105820 -registration(r1180,c137,s354).registration5687,105851 -registration(r1180,c137,s354).registration5687,105851 -registration(r1181,c25,s355).registration5688,105882 -registration(r1181,c25,s355).registration5688,105882 -registration(r1182,c14,s355).registration5689,105912 -registration(r1182,c14,s355).registration5689,105912 -registration(r1183,c67,s355).registration5690,105942 -registration(r1183,c67,s355).registration5690,105942 -registration(r1184,c110,s356).registration5691,105972 -registration(r1184,c110,s356).registration5691,105972 -registration(r1185,c221,s356).registration5692,106003 -registration(r1185,c221,s356).registration5692,106003 -registration(r1186,c206,s356).registration5693,106034 -registration(r1186,c206,s356).registration5693,106034 -registration(r1187,c75,s357).registration5694,106065 -registration(r1187,c75,s357).registration5694,106065 -registration(r1188,c77,s357).registration5695,106095 -registration(r1188,c77,s357).registration5695,106095 -registration(r1189,c253,s357).registration5696,106125 -registration(r1189,c253,s357).registration5696,106125 -registration(r1190,c48,s357).registration5697,106156 -registration(r1190,c48,s357).registration5697,106156 -registration(r1191,c177,s358).registration5698,106186 -registration(r1191,c177,s358).registration5698,106186 -registration(r1192,c60,s358).registration5699,106217 -registration(r1192,c60,s358).registration5699,106217 -registration(r1193,c247,s358).registration5700,106247 -registration(r1193,c247,s358).registration5700,106247 -registration(r1194,c124,s359).registration5701,106278 -registration(r1194,c124,s359).registration5701,106278 -registration(r1195,c195,s359).registration5702,106309 -registration(r1195,c195,s359).registration5702,106309 -registration(r1196,c230,s359).registration5703,106340 -registration(r1196,c230,s359).registration5703,106340 -registration(r1197,c132,s360).registration5704,106371 -registration(r1197,c132,s360).registration5704,106371 -registration(r1198,c138,s360).registration5705,106402 -registration(r1198,c138,s360).registration5705,106402 -registration(r1199,c34,s360).registration5706,106433 -registration(r1199,c34,s360).registration5706,106433 -registration(r1200,c60,s360).registration5707,106463 -registration(r1200,c60,s360).registration5707,106463 -registration(r1201,c106,s361).registration5708,106493 -registration(r1201,c106,s361).registration5708,106493 -registration(r1202,c79,s361).registration5709,106524 -registration(r1202,c79,s361).registration5709,106524 -registration(r1203,c247,s361).registration5710,106554 -registration(r1203,c247,s361).registration5710,106554 -registration(r1204,c213,s362).registration5711,106585 -registration(r1204,c213,s362).registration5711,106585 -registration(r1205,c124,s362).registration5712,106616 -registration(r1205,c124,s362).registration5712,106616 -registration(r1206,c103,s362).registration5713,106647 -registration(r1206,c103,s362).registration5713,106647 -registration(r1207,c180,s363).registration5714,106678 -registration(r1207,c180,s363).registration5714,106678 -registration(r1208,c209,s363).registration5715,106709 -registration(r1208,c209,s363).registration5715,106709 -registration(r1209,c247,s363).registration5716,106740 -registration(r1209,c247,s363).registration5716,106740 -registration(r1210,c166,s363).registration5717,106771 -registration(r1210,c166,s363).registration5717,106771 -registration(r1211,c34,s364).registration5718,106802 -registration(r1211,c34,s364).registration5718,106802 -registration(r1212,c0,s364).registration5719,106832 -registration(r1212,c0,s364).registration5719,106832 -registration(r1213,c86,s364).registration5720,106861 -registration(r1213,c86,s364).registration5720,106861 -registration(r1214,c24,s365).registration5721,106891 -registration(r1214,c24,s365).registration5721,106891 -registration(r1215,c138,s365).registration5722,106921 -registration(r1215,c138,s365).registration5722,106921 -registration(r1216,c60,s365).registration5723,106952 -registration(r1216,c60,s365).registration5723,106952 -registration(r1217,c198,s365).registration5724,106982 -registration(r1217,c198,s365).registration5724,106982 -registration(r1218,c212,s366).registration5725,107013 -registration(r1218,c212,s366).registration5725,107013 -registration(r1219,c105,s366).registration5726,107044 -registration(r1219,c105,s366).registration5726,107044 -registration(r1220,c210,s366).registration5727,107075 -registration(r1220,c210,s366).registration5727,107075 -registration(r1221,c211,s366).registration5728,107106 -registration(r1221,c211,s366).registration5728,107106 -registration(r1222,c8,s366).registration5729,107137 -registration(r1222,c8,s366).registration5729,107137 -registration(r1223,c129,s367).registration5730,107166 -registration(r1223,c129,s367).registration5730,107166 -registration(r1224,c224,s367).registration5731,107197 -registration(r1224,c224,s367).registration5731,107197 -registration(r1225,c221,s367).registration5732,107228 -registration(r1225,c221,s367).registration5732,107228 -registration(r1226,c178,s368).registration5733,107259 -registration(r1226,c178,s368).registration5733,107259 -registration(r1227,c198,s368).registration5734,107290 -registration(r1227,c198,s368).registration5734,107290 -registration(r1228,c253,s368).registration5735,107321 -registration(r1228,c253,s368).registration5735,107321 -registration(r1229,c226,s369).registration5736,107352 -registration(r1229,c226,s369).registration5736,107352 -registration(r1230,c139,s369).registration5737,107383 -registration(r1230,c139,s369).registration5737,107383 -registration(r1231,c101,s369).registration5738,107414 -registration(r1231,c101,s369).registration5738,107414 -registration(r1232,c141,s369).registration5739,107445 -registration(r1232,c141,s369).registration5739,107445 -registration(r1233,c169,s370).registration5740,107476 -registration(r1233,c169,s370).registration5740,107476 -registration(r1234,c9,s370).registration5741,107507 -registration(r1234,c9,s370).registration5741,107507 -registration(r1235,c212,s370).registration5742,107536 -registration(r1235,c212,s370).registration5742,107536 -registration(r1236,c69,s370).registration5743,107567 -registration(r1236,c69,s370).registration5743,107567 -registration(r1237,c64,s371).registration5744,107597 -registration(r1237,c64,s371).registration5744,107597 -registration(r1238,c11,s371).registration5745,107627 -registration(r1238,c11,s371).registration5745,107627 -registration(r1239,c91,s371).registration5746,107657 -registration(r1239,c91,s371).registration5746,107657 -registration(r1240,c107,s372).registration5747,107687 -registration(r1240,c107,s372).registration5747,107687 -registration(r1241,c127,s372).registration5748,107718 -registration(r1241,c127,s372).registration5748,107718 -registration(r1242,c1,s372).registration5749,107749 -registration(r1242,c1,s372).registration5749,107749 -registration(r1243,c226,s372).registration5750,107778 -registration(r1243,c226,s372).registration5750,107778 -registration(r1244,c81,s373).registration5751,107809 -registration(r1244,c81,s373).registration5751,107809 -registration(r1245,c255,s373).registration5752,107839 -registration(r1245,c255,s373).registration5752,107839 -registration(r1246,c42,s373).registration5753,107870 -registration(r1246,c42,s373).registration5753,107870 -registration(r1247,c197,s373).registration5754,107900 -registration(r1247,c197,s373).registration5754,107900 -registration(r1248,c135,s373).registration5755,107931 -registration(r1248,c135,s373).registration5755,107931 -registration(r1249,c131,s374).registration5756,107962 -registration(r1249,c131,s374).registration5756,107962 -registration(r1250,c11,s374).registration5757,107993 -registration(r1250,c11,s374).registration5757,107993 -registration(r1251,c20,s374).registration5758,108023 -registration(r1251,c20,s374).registration5758,108023 -registration(r1252,c161,s374).registration5759,108053 -registration(r1252,c161,s374).registration5759,108053 -registration(r1253,c165,s375).registration5760,108084 -registration(r1253,c165,s375).registration5760,108084 -registration(r1254,c186,s375).registration5761,108115 -registration(r1254,c186,s375).registration5761,108115 -registration(r1255,c169,s375).registration5762,108146 -registration(r1255,c169,s375).registration5762,108146 -registration(r1256,c239,s376).registration5763,108177 -registration(r1256,c239,s376).registration5763,108177 -registration(r1257,c0,s376).registration5764,108208 -registration(r1257,c0,s376).registration5764,108208 -registration(r1258,c46,s376).registration5765,108237 -registration(r1258,c46,s376).registration5765,108237 -registration(r1259,c216,s377).registration5766,108267 -registration(r1259,c216,s377).registration5766,108267 -registration(r1260,c218,s377).registration5767,108298 -registration(r1260,c218,s377).registration5767,108298 -registration(r1261,c196,s377).registration5768,108329 -registration(r1261,c196,s377).registration5768,108329 -registration(r1262,c57,s378).registration5769,108360 -registration(r1262,c57,s378).registration5769,108360 -registration(r1263,c89,s378).registration5770,108390 -registration(r1263,c89,s378).registration5770,108390 -registration(r1264,c191,s378).registration5771,108420 -registration(r1264,c191,s378).registration5771,108420 -registration(r1265,c233,s379).registration5772,108451 -registration(r1265,c233,s379).registration5772,108451 -registration(r1266,c142,s379).registration5773,108482 -registration(r1266,c142,s379).registration5773,108482 -registration(r1267,c30,s379).registration5774,108513 -registration(r1267,c30,s379).registration5774,108513 -registration(r1268,c21,s379).registration5775,108543 -registration(r1268,c21,s379).registration5775,108543 -registration(r1269,c29,s380).registration5776,108573 -registration(r1269,c29,s380).registration5776,108573 -registration(r1270,c42,s380).registration5777,108603 -registration(r1270,c42,s380).registration5777,108603 -registration(r1271,c140,s380).registration5778,108633 -registration(r1271,c140,s380).registration5778,108633 -registration(r1272,c203,s380).registration5779,108664 -registration(r1272,c203,s380).registration5779,108664 -registration(r1273,c233,s380).registration5780,108695 -registration(r1273,c233,s380).registration5780,108695 -registration(r1274,c116,s381).registration5781,108726 -registration(r1274,c116,s381).registration5781,108726 -registration(r1275,c172,s381).registration5782,108757 -registration(r1275,c172,s381).registration5782,108757 -registration(r1276,c214,s381).registration5783,108788 -registration(r1276,c214,s381).registration5783,108788 -registration(r1277,c3,s382).registration5784,108819 -registration(r1277,c3,s382).registration5784,108819 -registration(r1278,c96,s382).registration5785,108848 -registration(r1278,c96,s382).registration5785,108848 -registration(r1279,c8,s382).registration5786,108878 -registration(r1279,c8,s382).registration5786,108878 -registration(r1280,c205,s383).registration5787,108907 -registration(r1280,c205,s383).registration5787,108907 -registration(r1281,c51,s383).registration5788,108938 -registration(r1281,c51,s383).registration5788,108938 -registration(r1282,c22,s383).registration5789,108968 -registration(r1282,c22,s383).registration5789,108968 -registration(r1283,c140,s383).registration5790,108998 -registration(r1283,c140,s383).registration5790,108998 -registration(r1284,c146,s384).registration5791,109029 -registration(r1284,c146,s384).registration5791,109029 -registration(r1285,c228,s384).registration5792,109060 -registration(r1285,c228,s384).registration5792,109060 -registration(r1286,c190,s384).registration5793,109091 -registration(r1286,c190,s384).registration5793,109091 -registration(r1287,c3,s384).registration5794,109122 -registration(r1287,c3,s384).registration5794,109122 -registration(r1288,c55,s385).registration5795,109151 -registration(r1288,c55,s385).registration5795,109151 -registration(r1289,c165,s385).registration5796,109181 -registration(r1289,c165,s385).registration5796,109181 -registration(r1290,c239,s385).registration5797,109212 -registration(r1290,c239,s385).registration5797,109212 -registration(r1291,c29,s385).registration5798,109243 -registration(r1291,c29,s385).registration5798,109243 -registration(r1292,c44,s386).registration5799,109273 -registration(r1292,c44,s386).registration5799,109273 -registration(r1293,c99,s386).registration5800,109303 -registration(r1293,c99,s386).registration5800,109303 -registration(r1294,c6,s386).registration5801,109333 -registration(r1294,c6,s386).registration5801,109333 -registration(r1295,c220,s386).registration5802,109362 -registration(r1295,c220,s386).registration5802,109362 -registration(r1296,c6,s387).registration5803,109393 -registration(r1296,c6,s387).registration5803,109393 -registration(r1297,c188,s387).registration5804,109422 -registration(r1297,c188,s387).registration5804,109422 -registration(r1298,c223,s387).registration5805,109453 -registration(r1298,c223,s387).registration5805,109453 -registration(r1299,c187,s388).registration5806,109484 -registration(r1299,c187,s388).registration5806,109484 -registration(r1300,c159,s388).registration5807,109515 -registration(r1300,c159,s388).registration5807,109515 -registration(r1301,c145,s388).registration5808,109546 -registration(r1301,c145,s388).registration5808,109546 -registration(r1302,c154,s389).registration5809,109577 -registration(r1302,c154,s389).registration5809,109577 -registration(r1303,c123,s389).registration5810,109608 -registration(r1303,c123,s389).registration5810,109608 -registration(r1304,c139,s389).registration5811,109639 -registration(r1304,c139,s389).registration5811,109639 -registration(r1305,c96,s389).registration5812,109670 -registration(r1305,c96,s389).registration5812,109670 -registration(r1306,c78,s390).registration5813,109700 -registration(r1306,c78,s390).registration5813,109700 -registration(r1307,c101,s390).registration5814,109730 -registration(r1307,c101,s390).registration5814,109730 -registration(r1308,c27,s390).registration5815,109761 -registration(r1308,c27,s390).registration5815,109761 -registration(r1309,c10,s390).registration5816,109791 -registration(r1309,c10,s390).registration5816,109791 -registration(r1310,c232,s391).registration5817,109821 -registration(r1310,c232,s391).registration5817,109821 -registration(r1311,c58,s391).registration5818,109852 -registration(r1311,c58,s391).registration5818,109852 -registration(r1312,c40,s391).registration5819,109882 -registration(r1312,c40,s391).registration5819,109882 -registration(r1313,c158,s391).registration5820,109912 -registration(r1313,c158,s391).registration5820,109912 -registration(r1314,c182,s391).registration5821,109943 -registration(r1314,c182,s391).registration5821,109943 -registration(r1315,c173,s392).registration5822,109974 -registration(r1315,c173,s392).registration5822,109974 -registration(r1316,c10,s392).registration5823,110005 -registration(r1316,c10,s392).registration5823,110005 -registration(r1317,c189,s392).registration5824,110035 -registration(r1317,c189,s392).registration5824,110035 -registration(r1318,c34,s393).registration5825,110066 -registration(r1318,c34,s393).registration5825,110066 -registration(r1319,c47,s393).registration5826,110096 -registration(r1319,c47,s393).registration5826,110096 -registration(r1320,c167,s393).registration5827,110126 -registration(r1320,c167,s393).registration5827,110126 -registration(r1321,c150,s394).registration5828,110157 -registration(r1321,c150,s394).registration5828,110157 -registration(r1322,c121,s394).registration5829,110188 -registration(r1322,c121,s394).registration5829,110188 -registration(r1323,c89,s394).registration5830,110219 -registration(r1323,c89,s394).registration5830,110219 -registration(r1324,c5,s394).registration5831,110249 -registration(r1324,c5,s394).registration5831,110249 -registration(r1325,c115,s395).registration5832,110278 -registration(r1325,c115,s395).registration5832,110278 -registration(r1326,c79,s395).registration5833,110309 -registration(r1326,c79,s395).registration5833,110309 -registration(r1327,c214,s395).registration5834,110339 -registration(r1327,c214,s395).registration5834,110339 -registration(r1328,c92,s396).registration5835,110370 -registration(r1328,c92,s396).registration5835,110370 -registration(r1329,c225,s396).registration5836,110400 -registration(r1329,c225,s396).registration5836,110400 -registration(r1330,c118,s396).registration5837,110431 -registration(r1330,c118,s396).registration5837,110431 -registration(r1331,c158,s396).registration5838,110462 -registration(r1331,c158,s396).registration5838,110462 -registration(r1332,c89,s397).registration5839,110493 -registration(r1332,c89,s397).registration5839,110493 -registration(r1333,c186,s397).registration5840,110523 -registration(r1333,c186,s397).registration5840,110523 -registration(r1334,c205,s397).registration5841,110554 -registration(r1334,c205,s397).registration5841,110554 -registration(r1335,c103,s397).registration5842,110585 -registration(r1335,c103,s397).registration5842,110585 -registration(r1336,c205,s398).registration5843,110616 -registration(r1336,c205,s398).registration5843,110616 -registration(r1337,c209,s398).registration5844,110647 -registration(r1337,c209,s398).registration5844,110647 -registration(r1338,c193,s398).registration5845,110678 -registration(r1338,c193,s398).registration5845,110678 -registration(r1339,c105,s399).registration5846,110709 -registration(r1339,c105,s399).registration5846,110709 -registration(r1340,c179,s399).registration5847,110740 -registration(r1340,c179,s399).registration5847,110740 -registration(r1341,c192,s399).registration5848,110771 -registration(r1341,c192,s399).registration5848,110771 -registration(r1342,c26,s399).registration5849,110802 -registration(r1342,c26,s399).registration5849,110802 -registration(r1343,c17,s400).registration5850,110832 -registration(r1343,c17,s400).registration5850,110832 -registration(r1344,c50,s400).registration5851,110862 -registration(r1344,c50,s400).registration5851,110862 -registration(r1345,c163,s400).registration5852,110892 -registration(r1345,c163,s400).registration5852,110892 -registration(r1346,c120,s401).registration5853,110923 -registration(r1346,c120,s401).registration5853,110923 -registration(r1347,c93,s401).registration5854,110954 -registration(r1347,c93,s401).registration5854,110954 -registration(r1348,c237,s401).registration5855,110984 -registration(r1348,c237,s401).registration5855,110984 -registration(r1349,c99,s402).registration5856,111015 -registration(r1349,c99,s402).registration5856,111015 -registration(r1350,c25,s402).registration5857,111045 -registration(r1350,c25,s402).registration5857,111045 -registration(r1351,c91,s402).registration5858,111075 -registration(r1351,c91,s402).registration5858,111075 -registration(r1352,c117,s402).registration5859,111105 -registration(r1352,c117,s402).registration5859,111105 -registration(r1353,c208,s402).registration5860,111136 -registration(r1353,c208,s402).registration5860,111136 -registration(r1354,c132,s403).registration5861,111167 -registration(r1354,c132,s403).registration5861,111167 -registration(r1355,c125,s403).registration5862,111198 -registration(r1355,c125,s403).registration5862,111198 -registration(r1356,c168,s403).registration5863,111229 -registration(r1356,c168,s403).registration5863,111229 -registration(r1357,c107,s404).registration5864,111260 -registration(r1357,c107,s404).registration5864,111260 -registration(r1358,c65,s404).registration5865,111291 -registration(r1358,c65,s404).registration5865,111291 -registration(r1359,c79,s404).registration5866,111321 -registration(r1359,c79,s404).registration5866,111321 -registration(r1360,c15,s405).registration5867,111351 -registration(r1360,c15,s405).registration5867,111351 -registration(r1361,c211,s405).registration5868,111381 -registration(r1361,c211,s405).registration5868,111381 -registration(r1362,c35,s405).registration5869,111412 -registration(r1362,c35,s405).registration5869,111412 -registration(r1363,c229,s405).registration5870,111442 -registration(r1363,c229,s405).registration5870,111442 -registration(r1364,c204,s406).registration5871,111473 -registration(r1364,c204,s406).registration5871,111473 -registration(r1365,c106,s406).registration5872,111504 -registration(r1365,c106,s406).registration5872,111504 -registration(r1366,c214,s406).registration5873,111535 -registration(r1366,c214,s406).registration5873,111535 -registration(r1367,c196,s407).registration5874,111566 -registration(r1367,c196,s407).registration5874,111566 -registration(r1368,c25,s407).registration5875,111597 -registration(r1368,c25,s407).registration5875,111597 -registration(r1369,c7,s407).registration5876,111627 -registration(r1369,c7,s407).registration5876,111627 -registration(r1370,c53,s407).registration5877,111656 -registration(r1370,c53,s407).registration5877,111656 -registration(r1371,c42,s408).registration5878,111686 -registration(r1371,c42,s408).registration5878,111686 -registration(r1372,c167,s408).registration5879,111716 -registration(r1372,c167,s408).registration5879,111716 -registration(r1373,c121,s408).registration5880,111747 -registration(r1373,c121,s408).registration5880,111747 -registration(r1374,c247,s408).registration5881,111778 -registration(r1374,c247,s408).registration5881,111778 -registration(r1375,c162,s409).registration5882,111809 -registration(r1375,c162,s409).registration5882,111809 -registration(r1376,c125,s409).registration5883,111840 -registration(r1376,c125,s409).registration5883,111840 -registration(r1377,c69,s409).registration5884,111871 -registration(r1377,c69,s409).registration5884,111871 -registration(r1378,c192,s409).registration5885,111901 -registration(r1378,c192,s409).registration5885,111901 -registration(r1379,c225,s410).registration5886,111932 -registration(r1379,c225,s410).registration5886,111932 -registration(r1380,c180,s410).registration5887,111963 -registration(r1380,c180,s410).registration5887,111963 -registration(r1381,c163,s410).registration5888,111994 -registration(r1381,c163,s410).registration5888,111994 -registration(r1382,c206,s411).registration5889,112025 -registration(r1382,c206,s411).registration5889,112025 -registration(r1383,c154,s411).registration5890,112056 -registration(r1383,c154,s411).registration5890,112056 -registration(r1384,c44,s411).registration5891,112087 -registration(r1384,c44,s411).registration5891,112087 -registration(r1385,c3,s411).registration5892,112117 -registration(r1385,c3,s411).registration5892,112117 -registration(r1386,c224,s412).registration5893,112146 -registration(r1386,c224,s412).registration5893,112146 -registration(r1387,c205,s412).registration5894,112177 -registration(r1387,c205,s412).registration5894,112177 -registration(r1388,c197,s412).registration5895,112208 -registration(r1388,c197,s412).registration5895,112208 -registration(r1389,c238,s413).registration5896,112239 -registration(r1389,c238,s413).registration5896,112239 -registration(r1390,c46,s413).registration5897,112270 -registration(r1390,c46,s413).registration5897,112270 -registration(r1391,c58,s413).registration5898,112300 -registration(r1391,c58,s413).registration5898,112300 -registration(r1392,c213,s413).registration5899,112330 -registration(r1392,c213,s413).registration5899,112330 -registration(r1393,c19,s414).registration5900,112361 -registration(r1393,c19,s414).registration5900,112361 -registration(r1394,c1,s414).registration5901,112391 -registration(r1394,c1,s414).registration5901,112391 -registration(r1395,c170,s414).registration5902,112420 -registration(r1395,c170,s414).registration5902,112420 -registration(r1396,c240,s415).registration5903,112451 -registration(r1396,c240,s415).registration5903,112451 -registration(r1397,c194,s415).registration5904,112482 -registration(r1397,c194,s415).registration5904,112482 -registration(r1398,c62,s415).registration5905,112513 -registration(r1398,c62,s415).registration5905,112513 -registration(r1399,c244,s416).registration5906,112543 -registration(r1399,c244,s416).registration5906,112543 -registration(r1400,c41,s416).registration5907,112574 -registration(r1400,c41,s416).registration5907,112574 -registration(r1401,c90,s416).registration5908,112604 -registration(r1401,c90,s416).registration5908,112604 -registration(r1402,c244,s417).registration5909,112634 -registration(r1402,c244,s417).registration5909,112634 -registration(r1403,c249,s417).registration5910,112665 -registration(r1403,c249,s417).registration5910,112665 -registration(r1404,c147,s417).registration5911,112696 -registration(r1404,c147,s417).registration5911,112696 -registration(r1405,c116,s418).registration5912,112727 -registration(r1405,c116,s418).registration5912,112727 -registration(r1406,c201,s418).registration5913,112758 -registration(r1406,c201,s418).registration5913,112758 -registration(r1407,c195,s418).registration5914,112789 -registration(r1407,c195,s418).registration5914,112789 -registration(r1408,c178,s419).registration5915,112820 -registration(r1408,c178,s419).registration5915,112820 -registration(r1409,c157,s419).registration5916,112851 -registration(r1409,c157,s419).registration5916,112851 -registration(r1410,c217,s419).registration5917,112882 -registration(r1410,c217,s419).registration5917,112882 -registration(r1411,c140,s420).registration5918,112913 -registration(r1411,c140,s420).registration5918,112913 -registration(r1412,c223,s420).registration5919,112944 -registration(r1412,c223,s420).registration5919,112944 -registration(r1413,c116,s420).registration5920,112975 -registration(r1413,c116,s420).registration5920,112975 -registration(r1414,c244,s421).registration5921,113006 -registration(r1414,c244,s421).registration5921,113006 -registration(r1415,c39,s421).registration5922,113037 -registration(r1415,c39,s421).registration5922,113037 -registration(r1416,c88,s421).registration5923,113067 -registration(r1416,c88,s421).registration5923,113067 -registration(r1417,c252,s422).registration5924,113097 -registration(r1417,c252,s422).registration5924,113097 -registration(r1418,c40,s422).registration5925,113128 -registration(r1418,c40,s422).registration5925,113128 -registration(r1419,c214,s422).registration5926,113158 -registration(r1419,c214,s422).registration5926,113158 -registration(r1420,c208,s423).registration5927,113189 -registration(r1420,c208,s423).registration5927,113189 -registration(r1421,c75,s423).registration5928,113220 -registration(r1421,c75,s423).registration5928,113220 -registration(r1422,c238,s423).registration5929,113250 -registration(r1422,c238,s423).registration5929,113250 -registration(r1423,c235,s424).registration5930,113281 -registration(r1423,c235,s424).registration5930,113281 -registration(r1424,c216,s424).registration5931,113312 -registration(r1424,c216,s424).registration5931,113312 -registration(r1425,c15,s424).registration5932,113343 -registration(r1425,c15,s424).registration5932,113343 -registration(r1426,c175,s425).registration5933,113373 -registration(r1426,c175,s425).registration5933,113373 -registration(r1427,c97,s425).registration5934,113404 -registration(r1427,c97,s425).registration5934,113404 -registration(r1428,c230,s425).registration5935,113434 -registration(r1428,c230,s425).registration5935,113434 -registration(r1429,c88,s425).registration5936,113465 -registration(r1429,c88,s425).registration5936,113465 -registration(r1430,c22,s426).registration5937,113495 -registration(r1430,c22,s426).registration5937,113495 -registration(r1431,c12,s426).registration5938,113525 -registration(r1431,c12,s426).registration5938,113525 -registration(r1432,c207,s426).registration5939,113555 -registration(r1432,c207,s426).registration5939,113555 -registration(r1433,c195,s427).registration5940,113586 -registration(r1433,c195,s427).registration5940,113586 -registration(r1434,c116,s427).registration5941,113617 -registration(r1434,c116,s427).registration5941,113617 -registration(r1435,c250,s427).registration5942,113648 -registration(r1435,c250,s427).registration5942,113648 -registration(r1436,c246,s427).registration5943,113679 -registration(r1436,c246,s427).registration5943,113679 -registration(r1437,c31,s428).registration5944,113710 -registration(r1437,c31,s428).registration5944,113710 -registration(r1438,c249,s428).registration5945,113740 -registration(r1438,c249,s428).registration5945,113740 -registration(r1439,c78,s428).registration5946,113771 -registration(r1439,c78,s428).registration5946,113771 -registration(r1440,c201,s428).registration5947,113801 -registration(r1440,c201,s428).registration5947,113801 -registration(r1441,c3,s429).registration5948,113832 -registration(r1441,c3,s429).registration5948,113832 -registration(r1442,c47,s429).registration5949,113861 -registration(r1442,c47,s429).registration5949,113861 -registration(r1443,c224,s429).registration5950,113891 -registration(r1443,c224,s429).registration5950,113891 -registration(r1444,c240,s429).registration5951,113922 -registration(r1444,c240,s429).registration5951,113922 -registration(r1445,c157,s430).registration5952,113953 -registration(r1445,c157,s430).registration5952,113953 -registration(r1446,c80,s430).registration5953,113984 -registration(r1446,c80,s430).registration5953,113984 -registration(r1447,c160,s430).registration5954,114014 -registration(r1447,c160,s430).registration5954,114014 -registration(r1448,c40,s431).registration5955,114045 -registration(r1448,c40,s431).registration5955,114045 -registration(r1449,c46,s431).registration5956,114075 -registration(r1449,c46,s431).registration5956,114075 -registration(r1450,c145,s431).registration5957,114105 -registration(r1450,c145,s431).registration5957,114105 -registration(r1451,c95,s432).registration5958,114136 -registration(r1451,c95,s432).registration5958,114136 -registration(r1452,c140,s432).registration5959,114166 -registration(r1452,c140,s432).registration5959,114166 -registration(r1453,c220,s432).registration5960,114197 -registration(r1453,c220,s432).registration5960,114197 -registration(r1454,c1,s432).registration5961,114228 -registration(r1454,c1,s432).registration5961,114228 -registration(r1455,c24,s433).registration5962,114257 -registration(r1455,c24,s433).registration5962,114257 -registration(r1456,c36,s433).registration5963,114287 -registration(r1456,c36,s433).registration5963,114287 -registration(r1457,c206,s433).registration5964,114317 -registration(r1457,c206,s433).registration5964,114317 -registration(r1458,c28,s433).registration5965,114348 -registration(r1458,c28,s433).registration5965,114348 -registration(r1459,c77,s434).registration5966,114378 -registration(r1459,c77,s434).registration5966,114378 -registration(r1460,c231,s434).registration5967,114408 -registration(r1460,c231,s434).registration5967,114408 -registration(r1461,c181,s434).registration5968,114439 -registration(r1461,c181,s434).registration5968,114439 -registration(r1462,c149,s434).registration5969,114470 -registration(r1462,c149,s434).registration5969,114470 -registration(r1463,c63,s435).registration5970,114501 -registration(r1463,c63,s435).registration5970,114501 -registration(r1464,c29,s435).registration5971,114531 -registration(r1464,c29,s435).registration5971,114531 -registration(r1465,c134,s435).registration5972,114561 -registration(r1465,c134,s435).registration5972,114561 -registration(r1466,c37,s436).registration5973,114592 -registration(r1466,c37,s436).registration5973,114592 -registration(r1467,c221,s436).registration5974,114622 -registration(r1467,c221,s436).registration5974,114622 -registration(r1468,c164,s436).registration5975,114653 -registration(r1468,c164,s436).registration5975,114653 -registration(r1469,c53,s436).registration5976,114684 -registration(r1469,c53,s436).registration5976,114684 -registration(r1470,c140,s437).registration5977,114714 -registration(r1470,c140,s437).registration5977,114714 -registration(r1471,c68,s437).registration5978,114745 -registration(r1471,c68,s437).registration5978,114745 -registration(r1472,c148,s437).registration5979,114775 -registration(r1472,c148,s437).registration5979,114775 -registration(r1473,c32,s437).registration5980,114806 -registration(r1473,c32,s437).registration5980,114806 -registration(r1474,c25,s438).registration5981,114836 -registration(r1474,c25,s438).registration5981,114836 -registration(r1475,c247,s438).registration5982,114866 -registration(r1475,c247,s438).registration5982,114866 -registration(r1476,c206,s438).registration5983,114897 -registration(r1476,c206,s438).registration5983,114897 -registration(r1477,c7,s439).registration5984,114928 -registration(r1477,c7,s439).registration5984,114928 -registration(r1478,c91,s439).registration5985,114957 -registration(r1478,c91,s439).registration5985,114957 -registration(r1479,c226,s439).registration5986,114987 -registration(r1479,c226,s439).registration5986,114987 -registration(r1480,c151,s440).registration5987,115018 -registration(r1480,c151,s440).registration5987,115018 -registration(r1481,c165,s440).registration5988,115049 -registration(r1481,c165,s440).registration5988,115049 -registration(r1482,c86,s440).registration5989,115080 -registration(r1482,c86,s440).registration5989,115080 -registration(r1483,c228,s440).registration5990,115110 -registration(r1483,c228,s440).registration5990,115110 -registration(r1484,c179,s441).registration5991,115141 -registration(r1484,c179,s441).registration5991,115141 -registration(r1485,c194,s441).registration5992,115172 -registration(r1485,c194,s441).registration5992,115172 -registration(r1486,c226,s441).registration5993,115203 -registration(r1486,c226,s441).registration5993,115203 -registration(r1487,c135,s442).registration5994,115234 -registration(r1487,c135,s442).registration5994,115234 -registration(r1488,c38,s442).registration5995,115265 -registration(r1488,c38,s442).registration5995,115265 -registration(r1489,c169,s442).registration5996,115295 -registration(r1489,c169,s442).registration5996,115295 -registration(r1490,c237,s443).registration5997,115326 -registration(r1490,c237,s443).registration5997,115326 -registration(r1491,c79,s443).registration5998,115357 -registration(r1491,c79,s443).registration5998,115357 -registration(r1492,c203,s443).registration5999,115387 -registration(r1492,c203,s443).registration5999,115387 -registration(r1493,c5,s443).registration6000,115418 -registration(r1493,c5,s443).registration6000,115418 -registration(r1494,c6,s444).registration6001,115447 -registration(r1494,c6,s444).registration6001,115447 -registration(r1495,c212,s444).registration6002,115476 -registration(r1495,c212,s444).registration6002,115476 -registration(r1496,c35,s444).registration6003,115507 -registration(r1496,c35,s444).registration6003,115507 -registration(r1497,c125,s445).registration6004,115537 -registration(r1497,c125,s445).registration6004,115537 -registration(r1498,c175,s445).registration6005,115568 -registration(r1498,c175,s445).registration6005,115568 -registration(r1499,c47,s445).registration6006,115599 -registration(r1499,c47,s445).registration6006,115599 -registration(r1500,c213,s446).registration6007,115629 -registration(r1500,c213,s446).registration6007,115629 -registration(r1501,c23,s446).registration6008,115660 -registration(r1501,c23,s446).registration6008,115660 -registration(r1502,c115,s446).registration6009,115690 -registration(r1502,c115,s446).registration6009,115690 -registration(r1503,c39,s447).registration6010,115721 -registration(r1503,c39,s447).registration6010,115721 -registration(r1504,c123,s447).registration6011,115751 -registration(r1504,c123,s447).registration6011,115751 -registration(r1505,c111,s447).registration6012,115782 -registration(r1505,c111,s447).registration6012,115782 -registration(r1506,c246,s447).registration6013,115813 -registration(r1506,c246,s447).registration6013,115813 -registration(r1507,c37,s448).registration6014,115844 -registration(r1507,c37,s448).registration6014,115844 -registration(r1508,c195,s448).registration6015,115874 -registration(r1508,c195,s448).registration6015,115874 -registration(r1509,c177,s448).registration6016,115905 -registration(r1509,c177,s448).registration6016,115905 -registration(r1510,c1,s449).registration6017,115936 -registration(r1510,c1,s449).registration6017,115936 -registration(r1511,c164,s449).registration6018,115965 -registration(r1511,c164,s449).registration6018,115965 -registration(r1512,c192,s449).registration6019,115996 -registration(r1512,c192,s449).registration6019,115996 -registration(r1513,c137,s449).registration6020,116027 -registration(r1513,c137,s449).registration6020,116027 -registration(r1514,c220,s450).registration6021,116058 -registration(r1514,c220,s450).registration6021,116058 -registration(r1515,c172,s450).registration6022,116089 -registration(r1515,c172,s450).registration6022,116089 -registration(r1516,c146,s450).registration6023,116120 -registration(r1516,c146,s450).registration6023,116120 -registration(r1517,c65,s450).registration6024,116151 -registration(r1517,c65,s450).registration6024,116151 -registration(r1518,c232,s451).registration6025,116181 -registration(r1518,c232,s451).registration6025,116181 -registration(r1519,c235,s451).registration6026,116212 -registration(r1519,c235,s451).registration6026,116212 -registration(r1520,c135,s451).registration6027,116243 -registration(r1520,c135,s451).registration6027,116243 -registration(r1521,c252,s451).registration6028,116274 -registration(r1521,c252,s451).registration6028,116274 -registration(r1522,c119,s452).registration6029,116305 -registration(r1522,c119,s452).registration6029,116305 -registration(r1523,c143,s452).registration6030,116336 -registration(r1523,c143,s452).registration6030,116336 -registration(r1524,c35,s452).registration6031,116367 -registration(r1524,c35,s452).registration6031,116367 -registration(r1525,c35,s453).registration6032,116397 -registration(r1525,c35,s453).registration6032,116397 -registration(r1526,c12,s453).registration6033,116427 -registration(r1526,c12,s453).registration6033,116427 -registration(r1527,c245,s453).registration6034,116457 -registration(r1527,c245,s453).registration6034,116457 -registration(r1528,c167,s454).registration6035,116488 -registration(r1528,c167,s454).registration6035,116488 -registration(r1529,c33,s454).registration6036,116519 -registration(r1529,c33,s454).registration6036,116519 -registration(r1530,c129,s454).registration6037,116549 -registration(r1530,c129,s454).registration6037,116549 -registration(r1531,c65,s455).registration6038,116580 -registration(r1531,c65,s455).registration6038,116580 -registration(r1532,c177,s455).registration6039,116610 -registration(r1532,c177,s455).registration6039,116610 -registration(r1533,c81,s455).registration6040,116641 -registration(r1533,c81,s455).registration6040,116641 -registration(r1534,c141,s455).registration6041,116671 -registration(r1534,c141,s455).registration6041,116671 -registration(r1535,c156,s456).registration6042,116702 -registration(r1535,c156,s456).registration6042,116702 -registration(r1536,c69,s456).registration6043,116733 -registration(r1536,c69,s456).registration6043,116733 -registration(r1537,c41,s456).registration6044,116763 -registration(r1537,c41,s456).registration6044,116763 -registration(r1538,c21,s456).registration6045,116793 -registration(r1538,c21,s456).registration6045,116793 -registration(r1539,c103,s457).registration6046,116823 -registration(r1539,c103,s457).registration6046,116823 -registration(r1540,c235,s457).registration6047,116854 -registration(r1540,c235,s457).registration6047,116854 -registration(r1541,c24,s457).registration6048,116885 -registration(r1541,c24,s457).registration6048,116885 -registration(r1542,c168,s458).registration6049,116915 -registration(r1542,c168,s458).registration6049,116915 -registration(r1543,c135,s458).registration6050,116946 -registration(r1543,c135,s458).registration6050,116946 -registration(r1544,c84,s458).registration6051,116977 -registration(r1544,c84,s458).registration6051,116977 -registration(r1545,c98,s459).registration6052,117007 -registration(r1545,c98,s459).registration6052,117007 -registration(r1546,c156,s459).registration6053,117037 -registration(r1546,c156,s459).registration6053,117037 -registration(r1547,c244,s459).registration6054,117068 -registration(r1547,c244,s459).registration6054,117068 -registration(r1548,c66,s459).registration6055,117099 -registration(r1548,c66,s459).registration6055,117099 -registration(r1549,c179,s459).registration6056,117129 -registration(r1549,c179,s459).registration6056,117129 -registration(r1550,c236,s460).registration6057,117160 -registration(r1550,c236,s460).registration6057,117160 -registration(r1551,c219,s460).registration6058,117191 -registration(r1551,c219,s460).registration6058,117191 -registration(r1552,c244,s460).registration6059,117222 -registration(r1552,c244,s460).registration6059,117222 -registration(r1553,c253,s460).registration6060,117253 -registration(r1553,c253,s460).registration6060,117253 -registration(r1554,c43,s461).registration6061,117284 -registration(r1554,c43,s461).registration6061,117284 -registration(r1555,c44,s461).registration6062,117314 -registration(r1555,c44,s461).registration6062,117314 -registration(r1556,c154,s461).registration6063,117344 -registration(r1556,c154,s461).registration6063,117344 -registration(r1557,c120,s462).registration6064,117375 -registration(r1557,c120,s462).registration6064,117375 -registration(r1558,c159,s462).registration6065,117406 -registration(r1558,c159,s462).registration6065,117406 -registration(r1559,c106,s462).registration6066,117437 -registration(r1559,c106,s462).registration6066,117437 -registration(r1560,c132,s463).registration6067,117468 -registration(r1560,c132,s463).registration6067,117468 -registration(r1561,c68,s463).registration6068,117499 -registration(r1561,c68,s463).registration6068,117499 -registration(r1562,c237,s463).registration6069,117529 -registration(r1562,c237,s463).registration6069,117529 -registration(r1563,c204,s463).registration6070,117560 -registration(r1563,c204,s463).registration6070,117560 -registration(r1564,c211,s464).registration6071,117591 -registration(r1564,c211,s464).registration6071,117591 -registration(r1565,c119,s464).registration6072,117622 -registration(r1565,c119,s464).registration6072,117622 -registration(r1566,c164,s464).registration6073,117653 -registration(r1566,c164,s464).registration6073,117653 -registration(r1567,c215,s465).registration6074,117684 -registration(r1567,c215,s465).registration6074,117684 -registration(r1568,c178,s465).registration6075,117715 -registration(r1568,c178,s465).registration6075,117715 -registration(r1569,c130,s465).registration6076,117746 -registration(r1569,c130,s465).registration6076,117746 -registration(r1570,c95,s466).registration6077,117777 -registration(r1570,c95,s466).registration6077,117777 -registration(r1571,c127,s466).registration6078,117807 -registration(r1571,c127,s466).registration6078,117807 -registration(r1572,c60,s466).registration6079,117838 -registration(r1572,c60,s466).registration6079,117838 -registration(r1573,c104,s467).registration6080,117868 -registration(r1573,c104,s467).registration6080,117868 -registration(r1574,c185,s467).registration6081,117899 -registration(r1574,c185,s467).registration6081,117899 -registration(r1575,c22,s467).registration6082,117930 -registration(r1575,c22,s467).registration6082,117930 -registration(r1576,c143,s467).registration6083,117960 -registration(r1576,c143,s467).registration6083,117960 -registration(r1577,c120,s468).registration6084,117991 -registration(r1577,c120,s468).registration6084,117991 -registration(r1578,c124,s468).registration6085,118022 -registration(r1578,c124,s468).registration6085,118022 -registration(r1579,c110,s468).registration6086,118053 -registration(r1579,c110,s468).registration6086,118053 -registration(r1580,c255,s468).registration6087,118084 -registration(r1580,c255,s468).registration6087,118084 -registration(r1581,c241,s469).registration6088,118115 -registration(r1581,c241,s469).registration6088,118115 -registration(r1582,c44,s469).registration6089,118146 -registration(r1582,c44,s469).registration6089,118146 -registration(r1583,c129,s469).registration6090,118176 -registration(r1583,c129,s469).registration6090,118176 -registration(r1584,c249,s469).registration6091,118207 -registration(r1584,c249,s469).registration6091,118207 -registration(r1585,c217,s470).registration6092,118238 -registration(r1585,c217,s470).registration6092,118238 -registration(r1586,c111,s470).registration6093,118269 -registration(r1586,c111,s470).registration6093,118269 -registration(r1587,c101,s470).registration6094,118300 -registration(r1587,c101,s470).registration6094,118300 -registration(r1588,c233,s470).registration6095,118331 -registration(r1588,c233,s470).registration6095,118331 -registration(r1589,c58,s471).registration6096,118362 -registration(r1589,c58,s471).registration6096,118362 -registration(r1590,c194,s471).registration6097,118392 -registration(r1590,c194,s471).registration6097,118392 -registration(r1591,c74,s471).registration6098,118423 -registration(r1591,c74,s471).registration6098,118423 -registration(r1592,c215,s472).registration6099,118453 -registration(r1592,c215,s472).registration6099,118453 -registration(r1593,c54,s472).registration6100,118484 -registration(r1593,c54,s472).registration6100,118484 -registration(r1594,c104,s472).registration6101,118514 -registration(r1594,c104,s472).registration6101,118514 -registration(r1595,c65,s473).registration6102,118545 -registration(r1595,c65,s473).registration6102,118545 -registration(r1596,c160,s473).registration6103,118575 -registration(r1596,c160,s473).registration6103,118575 -registration(r1597,c220,s473).registration6104,118606 -registration(r1597,c220,s473).registration6104,118606 -registration(r1598,c75,s473).registration6105,118637 -registration(r1598,c75,s473).registration6105,118637 -registration(r1599,c190,s474).registration6106,118667 -registration(r1599,c190,s474).registration6106,118667 -registration(r1600,c27,s474).registration6107,118698 -registration(r1600,c27,s474).registration6107,118698 -registration(r1601,c255,s474).registration6108,118728 -registration(r1601,c255,s474).registration6108,118728 -registration(r1602,c128,s475).registration6109,118759 -registration(r1602,c128,s475).registration6109,118759 -registration(r1603,c227,s475).registration6110,118790 -registration(r1603,c227,s475).registration6110,118790 -registration(r1604,c72,s475).registration6111,118821 -registration(r1604,c72,s475).registration6111,118821 -registration(r1605,c184,s476).registration6112,118851 -registration(r1605,c184,s476).registration6112,118851 -registration(r1606,c224,s476).registration6113,118882 -registration(r1606,c224,s476).registration6113,118882 -registration(r1607,c108,s476).registration6114,118913 -registration(r1607,c108,s476).registration6114,118913 -registration(r1608,c168,s477).registration6115,118944 -registration(r1608,c168,s477).registration6115,118944 -registration(r1609,c156,s477).registration6116,118975 -registration(r1609,c156,s477).registration6116,118975 -registration(r1610,c19,s477).registration6117,119006 -registration(r1610,c19,s477).registration6117,119006 -registration(r1611,c235,s478).registration6118,119036 -registration(r1611,c235,s478).registration6118,119036 -registration(r1612,c152,s478).registration6119,119067 -registration(r1612,c152,s478).registration6119,119067 -registration(r1613,c5,s478).registration6120,119098 -registration(r1613,c5,s478).registration6120,119098 -registration(r1614,c71,s479).registration6121,119127 -registration(r1614,c71,s479).registration6121,119127 -registration(r1615,c28,s479).registration6122,119157 -registration(r1615,c28,s479).registration6122,119157 -registration(r1616,c194,s479).registration6123,119187 -registration(r1616,c194,s479).registration6123,119187 -registration(r1617,c56,s479).registration6124,119218 -registration(r1617,c56,s479).registration6124,119218 -registration(r1618,c192,s479).registration6125,119248 -registration(r1618,c192,s479).registration6125,119248 -registration(r1619,c84,s480).registration6126,119279 -registration(r1619,c84,s480).registration6126,119279 -registration(r1620,c12,s480).registration6127,119309 -registration(r1620,c12,s480).registration6127,119309 -registration(r1621,c112,s480).registration6128,119339 -registration(r1621,c112,s480).registration6128,119339 -registration(r1622,c83,s481).registration6129,119370 -registration(r1622,c83,s481).registration6129,119370 -registration(r1623,c229,s481).registration6130,119400 -registration(r1623,c229,s481).registration6130,119400 -registration(r1624,c7,s481).registration6131,119431 -registration(r1624,c7,s481).registration6131,119431 -registration(r1625,c157,s481).registration6132,119460 -registration(r1625,c157,s481).registration6132,119460 -registration(r1626,c125,s482).registration6133,119491 -registration(r1626,c125,s482).registration6133,119491 -registration(r1627,c119,s482).registration6134,119522 -registration(r1627,c119,s482).registration6134,119522 -registration(r1628,c179,s482).registration6135,119553 -registration(r1628,c179,s482).registration6135,119553 -registration(r1629,c21,s482).registration6136,119584 -registration(r1629,c21,s482).registration6136,119584 -registration(r1630,c136,s483).registration6137,119614 -registration(r1630,c136,s483).registration6137,119614 -registration(r1631,c178,s483).registration6138,119645 -registration(r1631,c178,s483).registration6138,119645 -registration(r1632,c179,s483).registration6139,119676 -registration(r1632,c179,s483).registration6139,119676 -registration(r1633,c184,s483).registration6140,119707 -registration(r1633,c184,s483).registration6140,119707 -registration(r1634,c7,s483).registration6141,119738 -registration(r1634,c7,s483).registration6141,119738 -registration(r1635,c255,s484).registration6142,119767 -registration(r1635,c255,s484).registration6142,119767 -registration(r1636,c74,s484).registration6143,119798 -registration(r1636,c74,s484).registration6143,119798 -registration(r1637,c201,s484).registration6144,119828 -registration(r1637,c201,s484).registration6144,119828 -registration(r1638,c130,s484).registration6145,119859 -registration(r1638,c130,s484).registration6145,119859 -registration(r1639,c193,s485).registration6146,119890 -registration(r1639,c193,s485).registration6146,119890 -registration(r1640,c215,s485).registration6147,119921 -registration(r1640,c215,s485).registration6147,119921 -registration(r1641,c228,s485).registration6148,119952 -registration(r1641,c228,s485).registration6148,119952 -registration(r1642,c114,s485).registration6149,119983 -registration(r1642,c114,s485).registration6149,119983 -registration(r1643,c132,s486).registration6150,120014 -registration(r1643,c132,s486).registration6150,120014 -registration(r1644,c89,s486).registration6151,120045 -registration(r1644,c89,s486).registration6151,120045 -registration(r1645,c121,s486).registration6152,120075 -registration(r1645,c121,s486).registration6152,120075 -registration(r1646,c98,s487).registration6153,120106 -registration(r1646,c98,s487).registration6153,120106 -registration(r1647,c17,s487).registration6154,120136 -registration(r1647,c17,s487).registration6154,120136 -registration(r1648,c112,s487).registration6155,120166 -registration(r1648,c112,s487).registration6155,120166 -registration(r1649,c55,s487).registration6156,120197 -registration(r1649,c55,s487).registration6156,120197 -registration(r1650,c220,s488).registration6157,120227 -registration(r1650,c220,s488).registration6157,120227 -registration(r1651,c190,s488).registration6158,120258 -registration(r1651,c190,s488).registration6158,120258 -registration(r1652,c55,s488).registration6159,120289 -registration(r1652,c55,s488).registration6159,120289 -registration(r1653,c239,s489).registration6160,120319 -registration(r1653,c239,s489).registration6160,120319 -registration(r1654,c189,s489).registration6161,120350 -registration(r1654,c189,s489).registration6161,120350 -registration(r1655,c231,s489).registration6162,120381 -registration(r1655,c231,s489).registration6162,120381 -registration(r1656,c175,s489).registration6163,120412 -registration(r1656,c175,s489).registration6163,120412 -registration(r1657,c240,s490).registration6164,120443 -registration(r1657,c240,s490).registration6164,120443 -registration(r1658,c139,s490).registration6165,120474 -registration(r1658,c139,s490).registration6165,120474 -registration(r1659,c135,s490).registration6166,120505 -registration(r1659,c135,s490).registration6166,120505 -registration(r1660,c109,s491).registration6167,120536 -registration(r1660,c109,s491).registration6167,120536 -registration(r1661,c227,s491).registration6168,120567 -registration(r1661,c227,s491).registration6168,120567 -registration(r1662,c215,s491).registration6169,120598 -registration(r1662,c215,s491).registration6169,120598 -registration(r1663,c49,s492).registration6170,120629 -registration(r1663,c49,s492).registration6170,120629 -registration(r1664,c89,s492).registration6171,120659 -registration(r1664,c89,s492).registration6171,120659 -registration(r1665,c251,s492).registration6172,120689 -registration(r1665,c251,s492).registration6172,120689 -registration(r1666,c186,s492).registration6173,120720 -registration(r1666,c186,s492).registration6173,120720 -registration(r1667,c151,s492).registration6174,120751 -registration(r1667,c151,s492).registration6174,120751 -registration(r1668,c208,s493).registration6175,120782 -registration(r1668,c208,s493).registration6175,120782 -registration(r1669,c68,s493).registration6176,120813 -registration(r1669,c68,s493).registration6176,120813 -registration(r1670,c29,s493).registration6177,120843 -registration(r1670,c29,s493).registration6177,120843 -registration(r1671,c86,s493).registration6178,120873 -registration(r1671,c86,s493).registration6178,120873 -registration(r1672,c60,s494).registration6179,120903 -registration(r1672,c60,s494).registration6179,120903 -registration(r1673,c229,s494).registration6180,120933 -registration(r1673,c229,s494).registration6180,120933 -registration(r1674,c69,s494).registration6181,120964 -registration(r1674,c69,s494).registration6181,120964 -registration(r1675,c52,s495).registration6182,120994 -registration(r1675,c52,s495).registration6182,120994 -registration(r1676,c3,s495).registration6183,121024 -registration(r1676,c3,s495).registration6183,121024 -registration(r1677,c127,s495).registration6184,121053 -registration(r1677,c127,s495).registration6184,121053 -registration(r1678,c144,s495).registration6185,121084 -registration(r1678,c144,s495).registration6185,121084 -registration(r1679,c216,s495).registration6186,121115 -registration(r1679,c216,s495).registration6186,121115 -registration(r1680,c242,s496).registration6187,121146 -registration(r1680,c242,s496).registration6187,121146 -registration(r1681,c116,s496).registration6188,121177 -registration(r1681,c116,s496).registration6188,121177 -registration(r1682,c186,s496).registration6189,121208 -registration(r1682,c186,s496).registration6189,121208 -registration(r1683,c34,s497).registration6190,121239 -registration(r1683,c34,s497).registration6190,121239 -registration(r1684,c252,s497).registration6191,121269 -registration(r1684,c252,s497).registration6191,121269 -registration(r1685,c172,s497).registration6192,121300 -registration(r1685,c172,s497).registration6192,121300 -registration(r1686,c37,s497).registration6193,121331 -registration(r1686,c37,s497).registration6193,121331 -registration(r1687,c43,s498).registration6194,121361 -registration(r1687,c43,s498).registration6194,121361 -registration(r1688,c189,s498).registration6195,121391 -registration(r1688,c189,s498).registration6195,121391 -registration(r1689,c57,s498).registration6196,121422 -registration(r1689,c57,s498).registration6196,121422 -registration(r1690,c229,s499).registration6197,121452 -registration(r1690,c229,s499).registration6197,121452 -registration(r1691,c116,s499).registration6198,121483 -registration(r1691,c116,s499).registration6198,121483 -registration(r1692,c47,s499).registration6199,121514 -registration(r1692,c47,s499).registration6199,121514 -registration(r1693,c89,s499).registration6200,121544 -registration(r1693,c89,s499).registration6200,121544 -registration(r1694,c29,s500).registration6201,121574 -registration(r1694,c29,s500).registration6201,121574 -registration(r1695,c39,s500).registration6202,121604 -registration(r1695,c39,s500).registration6202,121604 -registration(r1696,c170,s500).registration6203,121634 -registration(r1696,c170,s500).registration6203,121634 -registration(r1697,c165,s500).registration6204,121665 -registration(r1697,c165,s500).registration6204,121665 -registration(r1698,c175,s501).registration6205,121696 -registration(r1698,c175,s501).registration6205,121696 -registration(r1699,c172,s501).registration6206,121727 -registration(r1699,c172,s501).registration6206,121727 -registration(r1700,c165,s501).registration6207,121758 -registration(r1700,c165,s501).registration6207,121758 -registration(r1701,c96,s501).registration6208,121789 -registration(r1701,c96,s501).registration6208,121789 -registration(r1702,c109,s502).registration6209,121819 -registration(r1702,c109,s502).registration6209,121819 -registration(r1703,c118,s502).registration6210,121850 -registration(r1703,c118,s502).registration6210,121850 -registration(r1704,c132,s502).registration6211,121881 -registration(r1704,c132,s502).registration6211,121881 -registration(r1705,c162,s502).registration6212,121912 -registration(r1705,c162,s502).registration6212,121912 -registration(r1706,c142,s503).registration6213,121943 -registration(r1706,c142,s503).registration6213,121943 -registration(r1707,c138,s503).registration6214,121974 -registration(r1707,c138,s503).registration6214,121974 -registration(r1708,c205,s503).registration6215,122005 -registration(r1708,c205,s503).registration6215,122005 -registration(r1709,c62,s504).registration6216,122036 -registration(r1709,c62,s504).registration6216,122036 -registration(r1710,c37,s504).registration6217,122066 -registration(r1710,c37,s504).registration6217,122066 -registration(r1711,c169,s504).registration6218,122096 -registration(r1711,c169,s504).registration6218,122096 -registration(r1712,c203,s505).registration6219,122127 -registration(r1712,c203,s505).registration6219,122127 -registration(r1713,c13,s505).registration6220,122158 -registration(r1713,c13,s505).registration6220,122158 -registration(r1714,c202,s505).registration6221,122188 -registration(r1714,c202,s505).registration6221,122188 -registration(r1715,c117,s506).registration6222,122219 -registration(r1715,c117,s506).registration6222,122219 -registration(r1716,c9,s506).registration6223,122250 -registration(r1716,c9,s506).registration6223,122250 -registration(r1717,c218,s506).registration6224,122279 -registration(r1717,c218,s506).registration6224,122279 -registration(r1718,c135,s507).registration6225,122310 -registration(r1718,c135,s507).registration6225,122310 -registration(r1719,c234,s507).registration6226,122341 -registration(r1719,c234,s507).registration6226,122341 -registration(r1720,c90,s507).registration6227,122372 -registration(r1720,c90,s507).registration6227,122372 -registration(r1721,c200,s508).registration6228,122402 -registration(r1721,c200,s508).registration6228,122402 -registration(r1722,c31,s508).registration6229,122433 -registration(r1722,c31,s508).registration6229,122433 -registration(r1723,c208,s508).registration6230,122463 -registration(r1723,c208,s508).registration6230,122463 -registration(r1724,c66,s508).registration6231,122494 -registration(r1724,c66,s508).registration6231,122494 -registration(r1725,c192,s509).registration6232,122524 -registration(r1725,c192,s509).registration6232,122524 -registration(r1726,c204,s509).registration6233,122555 -registration(r1726,c204,s509).registration6233,122555 -registration(r1727,c62,s509).registration6234,122586 -registration(r1727,c62,s509).registration6234,122586 -registration(r1728,c143,s509).registration6235,122616 -registration(r1728,c143,s509).registration6235,122616 -registration(r1729,c49,s510).registration6236,122647 -registration(r1729,c49,s510).registration6236,122647 -registration(r1730,c57,s510).registration6237,122677 -registration(r1730,c57,s510).registration6237,122677 -registration(r1731,c47,s510).registration6238,122707 -registration(r1731,c47,s510).registration6238,122707 -registration(r1732,c63,s510).registration6239,122737 -registration(r1732,c63,s510).registration6239,122737 -registration(r1733,c82,s511).registration6240,122767 -registration(r1733,c82,s511).registration6240,122767 -registration(r1734,c237,s511).registration6241,122797 -registration(r1734,c237,s511).registration6241,122797 -registration(r1735,c113,s511).registration6242,122828 -registration(r1735,c113,s511).registration6242,122828 -registration(r1736,c75,s512).registration6243,122859 -registration(r1736,c75,s512).registration6243,122859 -registration(r1737,c11,s512).registration6244,122889 -registration(r1737,c11,s512).registration6244,122889 -registration(r1738,c176,s512).registration6245,122919 -registration(r1738,c176,s512).registration6245,122919 -registration(r1739,c11,s513).registration6246,122950 -registration(r1739,c11,s513).registration6246,122950 -registration(r1740,c124,s513).registration6247,122980 -registration(r1740,c124,s513).registration6247,122980 -registration(r1741,c67,s513).registration6248,123011 -registration(r1741,c67,s513).registration6248,123011 -registration(r1742,c18,s514).registration6249,123041 -registration(r1742,c18,s514).registration6249,123041 -registration(r1743,c5,s514).registration6250,123071 -registration(r1743,c5,s514).registration6250,123071 -registration(r1744,c221,s514).registration6251,123100 -registration(r1744,c221,s514).registration6251,123100 -registration(r1745,c169,s515).registration6252,123131 -registration(r1745,c169,s515).registration6252,123131 -registration(r1746,c195,s515).registration6253,123162 -registration(r1746,c195,s515).registration6253,123162 -registration(r1747,c209,s515).registration6254,123193 -registration(r1747,c209,s515).registration6254,123193 -registration(r1748,c2,s516).registration6255,123224 -registration(r1748,c2,s516).registration6255,123224 -registration(r1749,c114,s516).registration6256,123253 -registration(r1749,c114,s516).registration6256,123253 -registration(r1750,c112,s516).registration6257,123284 -registration(r1750,c112,s516).registration6257,123284 -registration(r1751,c174,s517).registration6258,123315 -registration(r1751,c174,s517).registration6258,123315 -registration(r1752,c219,s517).registration6259,123346 -registration(r1752,c219,s517).registration6259,123346 -registration(r1753,c99,s517).registration6260,123377 -registration(r1753,c99,s517).registration6260,123377 -registration(r1754,c161,s517).registration6261,123407 -registration(r1754,c161,s517).registration6261,123407 -registration(r1755,c107,s518).registration6262,123438 -registration(r1755,c107,s518).registration6262,123438 -registration(r1756,c174,s518).registration6263,123469 -registration(r1756,c174,s518).registration6263,123469 -registration(r1757,c10,s518).registration6264,123500 -registration(r1757,c10,s518).registration6264,123500 -registration(r1758,c22,s519).registration6265,123530 -registration(r1758,c22,s519).registration6265,123530 -registration(r1759,c185,s519).registration6266,123560 -registration(r1759,c185,s519).registration6266,123560 -registration(r1760,c231,s519).registration6267,123591 -registration(r1760,c231,s519).registration6267,123591 -registration(r1761,c250,s520).registration6268,123622 -registration(r1761,c250,s520).registration6268,123622 -registration(r1762,c238,s520).registration6269,123653 -registration(r1762,c238,s520).registration6269,123653 -registration(r1763,c49,s520).registration6270,123684 -registration(r1763,c49,s520).registration6270,123684 -registration(r1764,c219,s521).registration6271,123714 -registration(r1764,c219,s521).registration6271,123714 -registration(r1765,c65,s521).registration6272,123745 -registration(r1765,c65,s521).registration6272,123745 -registration(r1766,c133,s521).registration6273,123775 -registration(r1766,c133,s521).registration6273,123775 -registration(r1767,c129,s521).registration6274,123806 -registration(r1767,c129,s521).registration6274,123806 -registration(r1768,c135,s522).registration6275,123837 -registration(r1768,c135,s522).registration6275,123837 -registration(r1769,c243,s522).registration6276,123868 -registration(r1769,c243,s522).registration6276,123868 -registration(r1770,c16,s522).registration6277,123899 -registration(r1770,c16,s522).registration6277,123899 -registration(r1771,c236,s523).registration6278,123929 -registration(r1771,c236,s523).registration6278,123929 -registration(r1772,c98,s523).registration6279,123960 -registration(r1772,c98,s523).registration6279,123960 -registration(r1773,c192,s523).registration6280,123990 -registration(r1773,c192,s523).registration6280,123990 -registration(r1774,c44,s524).registration6281,124021 -registration(r1774,c44,s524).registration6281,124021 -registration(r1775,c61,s524).registration6282,124051 -registration(r1775,c61,s524).registration6282,124051 -registration(r1776,c201,s524).registration6283,124081 -registration(r1776,c201,s524).registration6283,124081 -registration(r1777,c223,s525).registration6284,124112 -registration(r1777,c223,s525).registration6284,124112 -registration(r1778,c34,s525).registration6285,124143 -registration(r1778,c34,s525).registration6285,124143 -registration(r1779,c200,s525).registration6286,124173 -registration(r1779,c200,s525).registration6286,124173 -registration(r1780,c195,s526).registration6287,124204 -registration(r1780,c195,s526).registration6287,124204 -registration(r1781,c183,s526).registration6288,124235 -registration(r1781,c183,s526).registration6288,124235 -registration(r1782,c167,s526).registration6289,124266 -registration(r1782,c167,s526).registration6289,124266 -registration(r1783,c132,s527).registration6290,124297 -registration(r1783,c132,s527).registration6290,124297 -registration(r1784,c131,s527).registration6291,124328 -registration(r1784,c131,s527).registration6291,124328 -registration(r1785,c243,s527).registration6292,124359 -registration(r1785,c243,s527).registration6292,124359 -registration(r1786,c121,s527).registration6293,124390 -registration(r1786,c121,s527).registration6293,124390 -registration(r1787,c32,s528).registration6294,124421 -registration(r1787,c32,s528).registration6294,124421 -registration(r1788,c249,s528).registration6295,124451 -registration(r1788,c249,s528).registration6295,124451 -registration(r1789,c140,s528).registration6296,124482 -registration(r1789,c140,s528).registration6296,124482 -registration(r1790,c155,s528).registration6297,124513 -registration(r1790,c155,s528).registration6297,124513 -registration(r1791,c128,s529).registration6298,124544 -registration(r1791,c128,s529).registration6298,124544 -registration(r1792,c91,s529).registration6299,124575 -registration(r1792,c91,s529).registration6299,124575 -registration(r1793,c7,s529).registration6300,124605 -registration(r1793,c7,s529).registration6300,124605 -registration(r1794,c68,s530).registration6301,124634 -registration(r1794,c68,s530).registration6301,124634 -registration(r1795,c7,s530).registration6302,124664 -registration(r1795,c7,s530).registration6302,124664 -registration(r1796,c241,s530).registration6303,124693 -registration(r1796,c241,s530).registration6303,124693 -registration(r1797,c229,s530).registration6304,124724 -registration(r1797,c229,s530).registration6304,124724 -registration(r1798,c239,s530).registration6305,124755 -registration(r1798,c239,s530).registration6305,124755 -registration(r1799,c175,s531).registration6306,124786 -registration(r1799,c175,s531).registration6306,124786 -registration(r1800,c139,s531).registration6307,124817 -registration(r1800,c139,s531).registration6307,124817 -registration(r1801,c180,s531).registration6308,124848 -registration(r1801,c180,s531).registration6308,124848 -registration(r1802,c246,s532).registration6309,124879 -registration(r1802,c246,s532).registration6309,124879 -registration(r1803,c212,s532).registration6310,124910 -registration(r1803,c212,s532).registration6310,124910 -registration(r1804,c183,s532).registration6311,124941 -registration(r1804,c183,s532).registration6311,124941 -registration(r1805,c81,s533).registration6312,124972 -registration(r1805,c81,s533).registration6312,124972 -registration(r1806,c129,s533).registration6313,125002 -registration(r1806,c129,s533).registration6313,125002 -registration(r1807,c66,s533).registration6314,125033 -registration(r1807,c66,s533).registration6314,125033 -registration(r1808,c207,s534).registration6315,125063 -registration(r1808,c207,s534).registration6315,125063 -registration(r1809,c143,s534).registration6316,125094 -registration(r1809,c143,s534).registration6316,125094 -registration(r1810,c20,s534).registration6317,125125 -registration(r1810,c20,s534).registration6317,125125 -registration(r1811,c112,s534).registration6318,125155 -registration(r1811,c112,s534).registration6318,125155 -registration(r1812,c79,s535).registration6319,125186 -registration(r1812,c79,s535).registration6319,125186 -registration(r1813,c80,s535).registration6320,125216 -registration(r1813,c80,s535).registration6320,125216 -registration(r1814,c248,s535).registration6321,125246 -registration(r1814,c248,s535).registration6321,125246 -registration(r1815,c234,s536).registration6322,125277 -registration(r1815,c234,s536).registration6322,125277 -registration(r1816,c186,s536).registration6323,125308 -registration(r1816,c186,s536).registration6323,125308 -registration(r1817,c61,s536).registration6324,125339 -registration(r1817,c61,s536).registration6324,125339 -registration(r1818,c237,s537).registration6325,125369 -registration(r1818,c237,s537).registration6325,125369 -registration(r1819,c138,s537).registration6326,125400 -registration(r1819,c138,s537).registration6326,125400 -registration(r1820,c94,s537).registration6327,125431 -registration(r1820,c94,s537).registration6327,125431 -registration(r1821,c85,s538).registration6328,125461 -registration(r1821,c85,s538).registration6328,125461 -registration(r1822,c41,s538).registration6329,125491 -registration(r1822,c41,s538).registration6329,125491 -registration(r1823,c121,s538).registration6330,125521 -registration(r1823,c121,s538).registration6330,125521 -registration(r1824,c202,s539).registration6331,125552 -registration(r1824,c202,s539).registration6331,125552 -registration(r1825,c80,s539).registration6332,125583 -registration(r1825,c80,s539).registration6332,125583 -registration(r1826,c53,s539).registration6333,125613 -registration(r1826,c53,s539).registration6333,125613 -registration(r1827,c5,s540).registration6334,125643 -registration(r1827,c5,s540).registration6334,125643 -registration(r1828,c205,s540).registration6335,125672 -registration(r1828,c205,s540).registration6335,125672 -registration(r1829,c223,s540).registration6336,125703 -registration(r1829,c223,s540).registration6336,125703 -registration(r1830,c80,s541).registration6337,125734 -registration(r1830,c80,s541).registration6337,125734 -registration(r1831,c157,s541).registration6338,125764 -registration(r1831,c157,s541).registration6338,125764 -registration(r1832,c45,s541).registration6339,125795 -registration(r1832,c45,s541).registration6339,125795 -registration(r1833,c133,s541).registration6340,125825 -registration(r1833,c133,s541).registration6340,125825 -registration(r1834,c52,s542).registration6341,125856 -registration(r1834,c52,s542).registration6341,125856 -registration(r1835,c237,s542).registration6342,125886 -registration(r1835,c237,s542).registration6342,125886 -registration(r1836,c194,s542).registration6343,125917 -registration(r1836,c194,s542).registration6343,125917 -registration(r1837,c176,s543).registration6344,125948 -registration(r1837,c176,s543).registration6344,125948 -registration(r1838,c190,s543).registration6345,125979 -registration(r1838,c190,s543).registration6345,125979 -registration(r1839,c248,s543).registration6346,126010 -registration(r1839,c248,s543).registration6346,126010 -registration(r1840,c124,s543).registration6347,126041 -registration(r1840,c124,s543).registration6347,126041 -registration(r1841,c46,s544).registration6348,126072 -registration(r1841,c46,s544).registration6348,126072 -registration(r1842,c246,s544).registration6349,126102 -registration(r1842,c246,s544).registration6349,126102 -registration(r1843,c30,s544).registration6350,126133 -registration(r1843,c30,s544).registration6350,126133 -registration(r1844,c192,s544).registration6351,126163 -registration(r1844,c192,s544).registration6351,126163 -registration(r1845,c86,s545).registration6352,126194 -registration(r1845,c86,s545).registration6352,126194 -registration(r1846,c253,s545).registration6353,126224 -registration(r1846,c253,s545).registration6353,126224 -registration(r1847,c57,s545).registration6354,126255 -registration(r1847,c57,s545).registration6354,126255 -registration(r1848,c25,s546).registration6355,126285 -registration(r1848,c25,s546).registration6355,126285 -registration(r1849,c169,s546).registration6356,126315 -registration(r1849,c169,s546).registration6356,126315 -registration(r1850,c167,s546).registration6357,126346 -registration(r1850,c167,s546).registration6357,126346 -registration(r1851,c213,s547).registration6358,126377 -registration(r1851,c213,s547).registration6358,126377 -registration(r1852,c179,s547).registration6359,126408 -registration(r1852,c179,s547).registration6359,126408 -registration(r1853,c120,s547).registration6360,126439 -registration(r1853,c120,s547).registration6360,126439 -registration(r1854,c102,s548).registration6361,126470 -registration(r1854,c102,s548).registration6361,126470 -registration(r1855,c30,s548).registration6362,126501 -registration(r1855,c30,s548).registration6362,126501 -registration(r1856,c27,s548).registration6363,126531 -registration(r1856,c27,s548).registration6363,126531 -registration(r1857,c217,s549).registration6364,126561 -registration(r1857,c217,s549).registration6364,126561 -registration(r1858,c247,s549).registration6365,126592 -registration(r1858,c247,s549).registration6365,126592 -registration(r1859,c209,s549).registration6366,126623 -registration(r1859,c209,s549).registration6366,126623 -registration(r1860,c2,s550).registration6367,126654 -registration(r1860,c2,s550).registration6367,126654 -registration(r1861,c78,s550).registration6368,126683 -registration(r1861,c78,s550).registration6368,126683 -registration(r1862,c102,s550).registration6369,126713 -registration(r1862,c102,s550).registration6369,126713 -registration(r1863,c14,s550).registration6370,126744 -registration(r1863,c14,s550).registration6370,126744 -registration(r1864,c122,s551).registration6371,126774 -registration(r1864,c122,s551).registration6371,126774 -registration(r1865,c10,s551).registration6372,126805 -registration(r1865,c10,s551).registration6372,126805 -registration(r1866,c15,s551).registration6373,126835 -registration(r1866,c15,s551).registration6373,126835 -registration(r1867,c40,s552).registration6374,126865 -registration(r1867,c40,s552).registration6374,126865 -registration(r1868,c128,s552).registration6375,126895 -registration(r1868,c128,s552).registration6375,126895 -registration(r1869,c124,s552).registration6376,126926 -registration(r1869,c124,s552).registration6376,126926 -registration(r1870,c82,s553).registration6377,126957 -registration(r1870,c82,s553).registration6377,126957 -registration(r1871,c70,s553).registration6378,126987 -registration(r1871,c70,s553).registration6378,126987 -registration(r1872,c63,s553).registration6379,127017 -registration(r1872,c63,s553).registration6379,127017 -registration(r1873,c167,s553).registration6380,127047 -registration(r1873,c167,s553).registration6380,127047 -registration(r1874,c204,s554).registration6381,127078 -registration(r1874,c204,s554).registration6381,127078 -registration(r1875,c74,s554).registration6382,127109 -registration(r1875,c74,s554).registration6382,127109 -registration(r1876,c165,s554).registration6383,127139 -registration(r1876,c165,s554).registration6383,127139 -registration(r1877,c156,s554).registration6384,127170 -registration(r1877,c156,s554).registration6384,127170 -registration(r1878,c109,s555).registration6385,127201 -registration(r1878,c109,s555).registration6385,127201 -registration(r1879,c123,s555).registration6386,127232 -registration(r1879,c123,s555).registration6386,127232 -registration(r1880,c227,s555).registration6387,127263 -registration(r1880,c227,s555).registration6387,127263 -registration(r1881,c72,s556).registration6388,127294 -registration(r1881,c72,s556).registration6388,127294 -registration(r1882,c147,s556).registration6389,127324 -registration(r1882,c147,s556).registration6389,127324 -registration(r1883,c214,s556).registration6390,127355 -registration(r1883,c214,s556).registration6390,127355 -registration(r1884,c13,s556).registration6391,127386 -registration(r1884,c13,s556).registration6391,127386 -registration(r1885,c43,s557).registration6392,127416 -registration(r1885,c43,s557).registration6392,127416 -registration(r1886,c227,s557).registration6393,127446 -registration(r1886,c227,s557).registration6393,127446 -registration(r1887,c181,s557).registration6394,127477 -registration(r1887,c181,s557).registration6394,127477 -registration(r1888,c51,s558).registration6395,127508 -registration(r1888,c51,s558).registration6395,127508 -registration(r1889,c231,s558).registration6396,127538 -registration(r1889,c231,s558).registration6396,127538 -registration(r1890,c41,s558).registration6397,127569 -registration(r1890,c41,s558).registration6397,127569 -registration(r1891,c106,s558).registration6398,127599 -registration(r1891,c106,s558).registration6398,127599 -registration(r1892,c52,s559).registration6399,127630 -registration(r1892,c52,s559).registration6399,127630 -registration(r1893,c94,s559).registration6400,127660 -registration(r1893,c94,s559).registration6400,127660 -registration(r1894,c15,s559).registration6401,127690 -registration(r1894,c15,s559).registration6401,127690 -registration(r1895,c168,s559).registration6402,127720 -registration(r1895,c168,s559).registration6402,127720 -registration(r1896,c154,s560).registration6403,127751 -registration(r1896,c154,s560).registration6403,127751 -registration(r1897,c203,s560).registration6404,127782 -registration(r1897,c203,s560).registration6404,127782 -registration(r1898,c82,s560).registration6405,127813 -registration(r1898,c82,s560).registration6405,127813 -registration(r1899,c69,s560).registration6406,127843 -registration(r1899,c69,s560).registration6406,127843 -registration(r1900,c120,s561).registration6407,127873 -registration(r1900,c120,s561).registration6407,127873 -registration(r1901,c14,s561).registration6408,127904 -registration(r1901,c14,s561).registration6408,127904 -registration(r1902,c128,s561).registration6409,127934 -registration(r1902,c128,s561).registration6409,127934 -registration(r1903,c229,s561).registration6410,127965 -registration(r1903,c229,s561).registration6410,127965 -registration(r1904,c24,s562).registration6411,127996 -registration(r1904,c24,s562).registration6411,127996 -registration(r1905,c198,s562).registration6412,128026 -registration(r1905,c198,s562).registration6412,128026 -registration(r1906,c201,s562).registration6413,128057 -registration(r1906,c201,s562).registration6413,128057 -registration(r1907,c29,s563).registration6414,128088 -registration(r1907,c29,s563).registration6414,128088 -registration(r1908,c95,s563).registration6415,128118 -registration(r1908,c95,s563).registration6415,128118 -registration(r1909,c176,s563).registration6416,128148 -registration(r1909,c176,s563).registration6416,128148 -registration(r1910,c137,s563).registration6417,128179 -registration(r1910,c137,s563).registration6417,128179 -registration(r1911,c51,s564).registration6418,128210 -registration(r1911,c51,s564).registration6418,128210 -registration(r1912,c243,s564).registration6419,128240 -registration(r1912,c243,s564).registration6419,128240 -registration(r1913,c106,s564).registration6420,128271 -registration(r1913,c106,s564).registration6420,128271 -registration(r1914,c107,s564).registration6421,128302 -registration(r1914,c107,s564).registration6421,128302 -registration(r1915,c57,s565).registration6422,128333 -registration(r1915,c57,s565).registration6422,128333 -registration(r1916,c185,s565).registration6423,128363 -registration(r1916,c185,s565).registration6423,128363 -registration(r1917,c5,s565).registration6424,128394 -registration(r1917,c5,s565).registration6424,128394 -registration(r1918,c12,s565).registration6425,128423 -registration(r1918,c12,s565).registration6425,128423 -registration(r1919,c77,s565).registration6426,128453 -registration(r1919,c77,s565).registration6426,128453 -registration(r1920,c66,s566).registration6427,128483 -registration(r1920,c66,s566).registration6427,128483 -registration(r1921,c133,s566).registration6428,128513 -registration(r1921,c133,s566).registration6428,128513 -registration(r1922,c90,s566).registration6429,128544 -registration(r1922,c90,s566).registration6429,128544 -registration(r1923,c63,s567).registration6430,128574 -registration(r1923,c63,s567).registration6430,128574 -registration(r1924,c94,s567).registration6431,128604 -registration(r1924,c94,s567).registration6431,128604 -registration(r1925,c169,s567).registration6432,128634 -registration(r1925,c169,s567).registration6432,128634 -registration(r1926,c38,s567).registration6433,128665 -registration(r1926,c38,s567).registration6433,128665 -registration(r1927,c131,s568).registration6434,128695 -registration(r1927,c131,s568).registration6434,128695 -registration(r1928,c67,s568).registration6435,128726 -registration(r1928,c67,s568).registration6435,128726 -registration(r1929,c3,s568).registration6436,128756 -registration(r1929,c3,s568).registration6436,128756 -registration(r1930,c141,s569).registration6437,128785 -registration(r1930,c141,s569).registration6437,128785 -registration(r1931,c105,s569).registration6438,128816 -registration(r1931,c105,s569).registration6438,128816 -registration(r1932,c124,s569).registration6439,128847 -registration(r1932,c124,s569).registration6439,128847 -registration(r1933,c13,s570).registration6440,128878 -registration(r1933,c13,s570).registration6440,128878 -registration(r1934,c132,s570).registration6441,128908 -registration(r1934,c132,s570).registration6441,128908 -registration(r1935,c63,s570).registration6442,128939 -registration(r1935,c63,s570).registration6442,128939 -registration(r1936,c67,s571).registration6443,128969 -registration(r1936,c67,s571).registration6443,128969 -registration(r1937,c75,s571).registration6444,128999 -registration(r1937,c75,s571).registration6444,128999 -registration(r1938,c72,s571).registration6445,129029 -registration(r1938,c72,s571).registration6445,129029 -registration(r1939,c138,s572).registration6446,129059 -registration(r1939,c138,s572).registration6446,129059 -registration(r1940,c214,s572).registration6447,129090 -registration(r1940,c214,s572).registration6447,129090 -registration(r1941,c240,s572).registration6448,129121 -registration(r1941,c240,s572).registration6448,129121 -registration(r1942,c48,s573).registration6449,129152 -registration(r1942,c48,s573).registration6449,129152 -registration(r1943,c170,s573).registration6450,129182 -registration(r1943,c170,s573).registration6450,129182 -registration(r1944,c15,s573).registration6451,129213 -registration(r1944,c15,s573).registration6451,129213 -registration(r1945,c180,s574).registration6452,129243 -registration(r1945,c180,s574).registration6452,129243 -registration(r1946,c186,s574).registration6453,129274 -registration(r1946,c186,s574).registration6453,129274 -registration(r1947,c20,s574).registration6454,129305 -registration(r1947,c20,s574).registration6454,129305 -registration(r1948,c93,s575).registration6455,129335 -registration(r1948,c93,s575).registration6455,129335 -registration(r1949,c69,s575).registration6456,129365 -registration(r1949,c69,s575).registration6456,129365 -registration(r1950,c88,s575).registration6457,129395 -registration(r1950,c88,s575).registration6457,129395 -registration(r1951,c44,s576).registration6458,129425 -registration(r1951,c44,s576).registration6458,129425 -registration(r1952,c230,s576).registration6459,129455 -registration(r1952,c230,s576).registration6459,129455 -registration(r1953,c73,s576).registration6460,129486 -registration(r1953,c73,s576).registration6460,129486 -registration(r1954,c134,s576).registration6461,129516 -registration(r1954,c134,s576).registration6461,129516 -registration(r1955,c175,s577).registration6462,129547 -registration(r1955,c175,s577).registration6462,129547 -registration(r1956,c119,s577).registration6463,129578 -registration(r1956,c119,s577).registration6463,129578 -registration(r1957,c206,s577).registration6464,129609 -registration(r1957,c206,s577).registration6464,129609 -registration(r1958,c14,s577).registration6465,129640 -registration(r1958,c14,s577).registration6465,129640 -registration(r1959,c214,s578).registration6466,129670 -registration(r1959,c214,s578).registration6466,129670 -registration(r1960,c255,s578).registration6467,129701 -registration(r1960,c255,s578).registration6467,129701 -registration(r1961,c162,s578).registration6468,129732 -registration(r1961,c162,s578).registration6468,129732 -registration(r1962,c77,s578).registration6469,129763 -registration(r1962,c77,s578).registration6469,129763 -registration(r1963,c77,s579).registration6470,129793 -registration(r1963,c77,s579).registration6470,129793 -registration(r1964,c103,s579).registration6471,129823 -registration(r1964,c103,s579).registration6471,129823 -registration(r1965,c30,s579).registration6472,129854 -registration(r1965,c30,s579).registration6472,129854 -registration(r1966,c33,s579).registration6473,129884 -registration(r1966,c33,s579).registration6473,129884 -registration(r1967,c187,s579).registration6474,129914 -registration(r1967,c187,s579).registration6474,129914 -registration(r1968,c14,s580).registration6475,129945 -registration(r1968,c14,s580).registration6475,129945 -registration(r1969,c144,s580).registration6476,129975 -registration(r1969,c144,s580).registration6476,129975 -registration(r1970,c255,s580).registration6477,130006 -registration(r1970,c255,s580).registration6477,130006 -registration(r1971,c197,s581).registration6478,130037 -registration(r1971,c197,s581).registration6478,130037 -registration(r1972,c145,s581).registration6479,130068 -registration(r1972,c145,s581).registration6479,130068 -registration(r1973,c80,s581).registration6480,130099 -registration(r1973,c80,s581).registration6480,130099 -registration(r1974,c253,s581).registration6481,130129 -registration(r1974,c253,s581).registration6481,130129 -registration(r1975,c149,s582).registration6482,130160 -registration(r1975,c149,s582).registration6482,130160 -registration(r1976,c172,s582).registration6483,130191 -registration(r1976,c172,s582).registration6483,130191 -registration(r1977,c246,s582).registration6484,130222 -registration(r1977,c246,s582).registration6484,130222 -registration(r1978,c5,s583).registration6485,130253 -registration(r1978,c5,s583).registration6485,130253 -registration(r1979,c188,s583).registration6486,130282 -registration(r1979,c188,s583).registration6486,130282 -registration(r1980,c131,s583).registration6487,130313 -registration(r1980,c131,s583).registration6487,130313 -registration(r1981,c96,s583).registration6488,130344 -registration(r1981,c96,s583).registration6488,130344 -registration(r1982,c52,s584).registration6489,130374 -registration(r1982,c52,s584).registration6489,130374 -registration(r1983,c174,s584).registration6490,130404 -registration(r1983,c174,s584).registration6490,130404 -registration(r1984,c14,s584).registration6491,130435 -registration(r1984,c14,s584).registration6491,130435 -registration(r1985,c17,s585).registration6492,130465 -registration(r1985,c17,s585).registration6492,130465 -registration(r1986,c188,s585).registration6493,130495 -registration(r1986,c188,s585).registration6493,130495 -registration(r1987,c0,s585).registration6494,130526 -registration(r1987,c0,s585).registration6494,130526 -registration(r1988,c144,s586).registration6495,130555 -registration(r1988,c144,s586).registration6495,130555 -registration(r1989,c203,s586).registration6496,130586 -registration(r1989,c203,s586).registration6496,130586 -registration(r1990,c48,s586).registration6497,130617 -registration(r1990,c48,s586).registration6497,130617 -registration(r1991,c195,s587).registration6498,130647 -registration(r1991,c195,s587).registration6498,130647 -registration(r1992,c74,s587).registration6499,130678 -registration(r1992,c74,s587).registration6499,130678 -registration(r1993,c160,s587).registration6500,130708 -registration(r1993,c160,s587).registration6500,130708 -registration(r1994,c54,s588).registration6501,130739 -registration(r1994,c54,s588).registration6501,130739 -registration(r1995,c109,s588).registration6502,130769 -registration(r1995,c109,s588).registration6502,130769 -registration(r1996,c191,s588).registration6503,130800 -registration(r1996,c191,s588).registration6503,130800 -registration(r1997,c197,s588).registration6504,130831 -registration(r1997,c197,s588).registration6504,130831 -registration(r1998,c86,s589).registration6505,130862 -registration(r1998,c86,s589).registration6505,130862 -registration(r1999,c157,s589).registration6506,130892 -registration(r1999,c157,s589).registration6506,130892 -registration(r2000,c201,s589).registration6507,130923 -registration(r2000,c201,s589).registration6507,130923 -registration(r2001,c254,s590).registration6508,130954 -registration(r2001,c254,s590).registration6508,130954 -registration(r2002,c101,s590).registration6509,130985 -registration(r2002,c101,s590).registration6509,130985 -registration(r2003,c109,s590).registration6510,131016 -registration(r2003,c109,s590).registration6510,131016 -registration(r2004,c126,s590).registration6511,131047 -registration(r2004,c126,s590).registration6511,131047 -registration(r2005,c86,s591).registration6512,131078 -registration(r2005,c86,s591).registration6512,131078 -registration(r2006,c50,s591).registration6513,131108 -registration(r2006,c50,s591).registration6513,131108 -registration(r2007,c74,s591).registration6514,131138 -registration(r2007,c74,s591).registration6514,131138 -registration(r2008,c195,s591).registration6515,131168 -registration(r2008,c195,s591).registration6515,131168 -registration(r2009,c82,s591).registration6516,131199 -registration(r2009,c82,s591).registration6516,131199 -registration(r2010,c189,s592).registration6517,131229 -registration(r2010,c189,s592).registration6517,131229 -registration(r2011,c166,s592).registration6518,131260 -registration(r2011,c166,s592).registration6518,131260 -registration(r2012,c20,s592).registration6519,131291 -registration(r2012,c20,s592).registration6519,131291 -registration(r2013,c72,s592).registration6520,131321 -registration(r2013,c72,s592).registration6520,131321 -registration(r2014,c209,s593).registration6521,131351 -registration(r2014,c209,s593).registration6521,131351 -registration(r2015,c125,s593).registration6522,131382 -registration(r2015,c125,s593).registration6522,131382 -registration(r2016,c65,s593).registration6523,131413 -registration(r2016,c65,s593).registration6523,131413 -registration(r2017,c91,s593).registration6524,131443 -registration(r2017,c91,s593).registration6524,131443 -registration(r2018,c84,s594).registration6525,131473 -registration(r2018,c84,s594).registration6525,131473 -registration(r2019,c111,s594).registration6526,131503 -registration(r2019,c111,s594).registration6526,131503 -registration(r2020,c247,s594).registration6527,131534 -registration(r2020,c247,s594).registration6527,131534 -registration(r2021,c37,s594).registration6528,131565 -registration(r2021,c37,s594).registration6528,131565 -registration(r2022,c28,s595).registration6529,131595 -registration(r2022,c28,s595).registration6529,131595 -registration(r2023,c139,s595).registration6530,131625 -registration(r2023,c139,s595).registration6530,131625 -registration(r2024,c195,s595).registration6531,131656 -registration(r2024,c195,s595).registration6531,131656 -registration(r2025,c64,s596).registration6532,131687 -registration(r2025,c64,s596).registration6532,131687 -registration(r2026,c13,s596).registration6533,131717 -registration(r2026,c13,s596).registration6533,131717 -registration(r2027,c240,s596).registration6534,131747 -registration(r2027,c240,s596).registration6534,131747 -registration(r2028,c179,s596).registration6535,131778 -registration(r2028,c179,s596).registration6535,131778 -registration(r2029,c160,s597).registration6536,131809 -registration(r2029,c160,s597).registration6536,131809 -registration(r2030,c127,s597).registration6537,131840 -registration(r2030,c127,s597).registration6537,131840 -registration(r2031,c112,s597).registration6538,131871 -registration(r2031,c112,s597).registration6538,131871 -registration(r2032,c121,s598).registration6539,131902 -registration(r2032,c121,s598).registration6539,131902 -registration(r2033,c144,s598).registration6540,131933 -registration(r2033,c144,s598).registration6540,131933 -registration(r2034,c105,s598).registration6541,131964 -registration(r2034,c105,s598).registration6541,131964 -registration(r2035,c173,s598).registration6542,131995 -registration(r2035,c173,s598).registration6542,131995 -registration(r2036,c219,s599).registration6543,132026 -registration(r2036,c219,s599).registration6543,132026 -registration(r2037,c38,s599).registration6544,132057 -registration(r2037,c38,s599).registration6544,132057 -registration(r2038,c7,s599).registration6545,132087 -registration(r2038,c7,s599).registration6545,132087 -registration(r2039,c150,s599).registration6546,132116 -registration(r2039,c150,s599).registration6546,132116 -registration(r2040,c78,s600).registration6547,132147 -registration(r2040,c78,s600).registration6547,132147 -registration(r2041,c187,s600).registration6548,132177 -registration(r2041,c187,s600).registration6548,132177 -registration(r2042,c85,s600).registration6549,132208 -registration(r2042,c85,s600).registration6549,132208 -registration(r2043,c24,s601).registration6550,132238 -registration(r2043,c24,s601).registration6550,132238 -registration(r2044,c35,s601).registration6551,132268 -registration(r2044,c35,s601).registration6551,132268 -registration(r2045,c4,s601).registration6552,132298 -registration(r2045,c4,s601).registration6552,132298 -registration(r2046,c245,s601).registration6553,132327 -registration(r2046,c245,s601).registration6553,132327 -registration(r2047,c227,s602).registration6554,132358 -registration(r2047,c227,s602).registration6554,132358 -registration(r2048,c93,s602).registration6555,132389 -registration(r2048,c93,s602).registration6555,132389 -registration(r2049,c169,s602).registration6556,132419 -registration(r2049,c169,s602).registration6556,132419 -registration(r2050,c27,s603).registration6557,132450 -registration(r2050,c27,s603).registration6557,132450 -registration(r2051,c204,s603).registration6558,132480 -registration(r2051,c204,s603).registration6558,132480 -registration(r2052,c115,s603).registration6559,132511 -registration(r2052,c115,s603).registration6559,132511 -registration(r2053,c222,s604).registration6560,132542 -registration(r2053,c222,s604).registration6560,132542 -registration(r2054,c224,s604).registration6561,132573 -registration(r2054,c224,s604).registration6561,132573 -registration(r2055,c106,s604).registration6562,132604 -registration(r2055,c106,s604).registration6562,132604 -registration(r2056,c146,s605).registration6563,132635 -registration(r2056,c146,s605).registration6563,132635 -registration(r2057,c147,s605).registration6564,132666 -registration(r2057,c147,s605).registration6564,132666 -registration(r2058,c235,s605).registration6565,132697 -registration(r2058,c235,s605).registration6565,132697 -registration(r2059,c144,s605).registration6566,132728 -registration(r2059,c144,s605).registration6566,132728 -registration(r2060,c227,s606).registration6567,132759 -registration(r2060,c227,s606).registration6567,132759 -registration(r2061,c232,s606).registration6568,132790 -registration(r2061,c232,s606).registration6568,132790 -registration(r2062,c164,s606).registration6569,132821 -registration(r2062,c164,s606).registration6569,132821 -registration(r2063,c0,s606).registration6570,132852 -registration(r2063,c0,s606).registration6570,132852 -registration(r2064,c47,s607).registration6571,132881 -registration(r2064,c47,s607).registration6571,132881 -registration(r2065,c90,s607).registration6572,132911 -registration(r2065,c90,s607).registration6572,132911 -registration(r2066,c247,s607).registration6573,132941 -registration(r2066,c247,s607).registration6573,132941 -registration(r2067,c61,s607).registration6574,132972 -registration(r2067,c61,s607).registration6574,132972 -registration(r2068,c207,s608).registration6575,133002 -registration(r2068,c207,s608).registration6575,133002 -registration(r2069,c193,s608).registration6576,133033 -registration(r2069,c193,s608).registration6576,133033 -registration(r2070,c51,s608).registration6577,133064 -registration(r2070,c51,s608).registration6577,133064 -registration(r2071,c167,s609).registration6578,133094 -registration(r2071,c167,s609).registration6578,133094 -registration(r2072,c128,s609).registration6579,133125 -registration(r2072,c128,s609).registration6579,133125 -registration(r2073,c235,s609).registration6580,133156 -registration(r2073,c235,s609).registration6580,133156 -registration(r2074,c86,s610).registration6581,133187 -registration(r2074,c86,s610).registration6581,133187 -registration(r2075,c16,s610).registration6582,133217 -registration(r2075,c16,s610).registration6582,133217 -registration(r2076,c29,s610).registration6583,133247 -registration(r2076,c29,s610).registration6583,133247 -registration(r2077,c8,s611).registration6584,133277 -registration(r2077,c8,s611).registration6584,133277 -registration(r2078,c18,s611).registration6585,133306 -registration(r2078,c18,s611).registration6585,133306 -registration(r2079,c55,s611).registration6586,133336 -registration(r2079,c55,s611).registration6586,133336 -registration(r2080,c29,s612).registration6587,133366 -registration(r2080,c29,s612).registration6587,133366 -registration(r2081,c232,s612).registration6588,133396 -registration(r2081,c232,s612).registration6588,133396 -registration(r2082,c32,s612).registration6589,133427 -registration(r2082,c32,s612).registration6589,133427 -registration(r2083,c176,s612).registration6590,133457 -registration(r2083,c176,s612).registration6590,133457 -registration(r2084,c119,s613).registration6591,133488 -registration(r2084,c119,s613).registration6591,133488 -registration(r2085,c168,s613).registration6592,133519 -registration(r2085,c168,s613).registration6592,133519 -registration(r2086,c116,s613).registration6593,133550 -registration(r2086,c116,s613).registration6593,133550 -registration(r2087,c69,s614).registration6594,133581 -registration(r2087,c69,s614).registration6594,133581 -registration(r2088,c119,s614).registration6595,133611 -registration(r2088,c119,s614).registration6595,133611 -registration(r2089,c49,s614).registration6596,133642 -registration(r2089,c49,s614).registration6596,133642 -registration(r2090,c5,s614).registration6597,133672 -registration(r2090,c5,s614).registration6597,133672 -registration(r2091,c176,s615).registration6598,133701 -registration(r2091,c176,s615).registration6598,133701 -registration(r2092,c241,s615).registration6599,133732 -registration(r2092,c241,s615).registration6599,133732 -registration(r2093,c95,s615).registration6600,133763 -registration(r2093,c95,s615).registration6600,133763 -registration(r2094,c70,s615).registration6601,133793 -registration(r2094,c70,s615).registration6601,133793 -registration(r2095,c46,s616).registration6602,133823 -registration(r2095,c46,s616).registration6602,133823 -registration(r2096,c49,s616).registration6603,133853 -registration(r2096,c49,s616).registration6603,133853 -registration(r2097,c19,s616).registration6604,133883 -registration(r2097,c19,s616).registration6604,133883 -registration(r2098,c73,s617).registration6605,133913 -registration(r2098,c73,s617).registration6605,133913 -registration(r2099,c121,s617).registration6606,133943 -registration(r2099,c121,s617).registration6606,133943 -registration(r2100,c54,s617).registration6607,133974 -registration(r2100,c54,s617).registration6607,133974 -registration(r2101,c86,s618).registration6608,134004 -registration(r2101,c86,s618).registration6608,134004 -registration(r2102,c133,s618).registration6609,134034 -registration(r2102,c133,s618).registration6609,134034 -registration(r2103,c18,s618).registration6610,134065 -registration(r2103,c18,s618).registration6610,134065 -registration(r2104,c186,s619).registration6611,134095 -registration(r2104,c186,s619).registration6611,134095 -registration(r2105,c27,s619).registration6612,134126 -registration(r2105,c27,s619).registration6612,134126 -registration(r2106,c177,s619).registration6613,134156 -registration(r2106,c177,s619).registration6613,134156 -registration(r2107,c41,s620).registration6614,134187 -registration(r2107,c41,s620).registration6614,134187 -registration(r2108,c235,s620).registration6615,134217 -registration(r2108,c235,s620).registration6615,134217 -registration(r2109,c144,s620).registration6616,134248 -registration(r2109,c144,s620).registration6616,134248 -registration(r2110,c196,s620).registration6617,134279 -registration(r2110,c196,s620).registration6617,134279 -registration(r2111,c31,s621).registration6618,134310 -registration(r2111,c31,s621).registration6618,134310 -registration(r2112,c37,s621).registration6619,134340 -registration(r2112,c37,s621).registration6619,134340 -registration(r2113,c85,s621).registration6620,134370 -registration(r2113,c85,s621).registration6620,134370 -registration(r2114,c130,s622).registration6621,134400 -registration(r2114,c130,s622).registration6621,134400 -registration(r2115,c152,s622).registration6622,134431 -registration(r2115,c152,s622).registration6622,134431 -registration(r2116,c169,s622).registration6623,134462 -registration(r2116,c169,s622).registration6623,134462 -registration(r2117,c242,s623).registration6624,134493 -registration(r2117,c242,s623).registration6624,134493 -registration(r2118,c50,s623).registration6625,134524 -registration(r2118,c50,s623).registration6625,134524 -registration(r2119,c15,s623).registration6626,134554 -registration(r2119,c15,s623).registration6626,134554 -registration(r2120,c102,s624).registration6627,134584 -registration(r2120,c102,s624).registration6627,134584 -registration(r2121,c223,s624).registration6628,134615 -registration(r2121,c223,s624).registration6628,134615 -registration(r2122,c166,s624).registration6629,134646 -registration(r2122,c166,s624).registration6629,134646 -registration(r2123,c219,s624).registration6630,134677 -registration(r2123,c219,s624).registration6630,134677 -registration(r2124,c39,s625).registration6631,134708 -registration(r2124,c39,s625).registration6631,134708 -registration(r2125,c142,s625).registration6632,134738 -registration(r2125,c142,s625).registration6632,134738 -registration(r2126,c25,s625).registration6633,134769 -registration(r2126,c25,s625).registration6633,134769 -registration(r2127,c5,s626).registration6634,134799 -registration(r2127,c5,s626).registration6634,134799 -registration(r2128,c26,s626).registration6635,134828 -registration(r2128,c26,s626).registration6635,134828 -registration(r2129,c230,s626).registration6636,134858 -registration(r2129,c230,s626).registration6636,134858 -registration(r2130,c6,s627).registration6637,134889 -registration(r2130,c6,s627).registration6637,134889 -registration(r2131,c239,s627).registration6638,134918 -registration(r2131,c239,s627).registration6638,134918 -registration(r2132,c175,s627).registration6639,134949 -registration(r2132,c175,s627).registration6639,134949 -registration(r2133,c50,s628).registration6640,134980 -registration(r2133,c50,s628).registration6640,134980 -registration(r2134,c6,s628).registration6641,135010 -registration(r2134,c6,s628).registration6641,135010 -registration(r2135,c45,s628).registration6642,135039 -registration(r2135,c45,s628).registration6642,135039 -registration(r2136,c31,s629).registration6643,135069 -registration(r2136,c31,s629).registration6643,135069 -registration(r2137,c29,s629).registration6644,135099 -registration(r2137,c29,s629).registration6644,135099 -registration(r2138,c239,s629).registration6645,135129 -registration(r2138,c239,s629).registration6645,135129 -registration(r2139,c85,s630).registration6646,135160 -registration(r2139,c85,s630).registration6646,135160 -registration(r2140,c89,s630).registration6647,135190 -registration(r2140,c89,s630).registration6647,135190 -registration(r2141,c90,s630).registration6648,135220 -registration(r2141,c90,s630).registration6648,135220 -registration(r2142,c186,s631).registration6649,135250 -registration(r2142,c186,s631).registration6649,135250 -registration(r2143,c137,s631).registration6650,135281 -registration(r2143,c137,s631).registration6650,135281 -registration(r2144,c196,s631).registration6651,135312 -registration(r2144,c196,s631).registration6651,135312 -registration(r2145,c121,s631).registration6652,135343 -registration(r2145,c121,s631).registration6652,135343 -registration(r2146,c217,s632).registration6653,135374 -registration(r2146,c217,s632).registration6653,135374 -registration(r2147,c43,s632).registration6654,135405 -registration(r2147,c43,s632).registration6654,135405 -registration(r2148,c97,s632).registration6655,135435 -registration(r2148,c97,s632).registration6655,135435 -registration(r2149,c104,s633).registration6656,135465 -registration(r2149,c104,s633).registration6656,135465 -registration(r2150,c147,s633).registration6657,135496 -registration(r2150,c147,s633).registration6657,135496 -registration(r2151,c55,s633).registration6658,135527 -registration(r2151,c55,s633).registration6658,135527 -registration(r2152,c106,s633).registration6659,135557 -registration(r2152,c106,s633).registration6659,135557 -registration(r2153,c220,s634).registration6660,135588 -registration(r2153,c220,s634).registration6660,135588 -registration(r2154,c68,s634).registration6661,135619 -registration(r2154,c68,s634).registration6661,135619 -registration(r2155,c85,s634).registration6662,135649 -registration(r2155,c85,s634).registration6662,135649 -registration(r2156,c114,s635).registration6663,135679 -registration(r2156,c114,s635).registration6663,135679 -registration(r2157,c172,s635).registration6664,135710 -registration(r2157,c172,s635).registration6664,135710 -registration(r2158,c222,s635).registration6665,135741 -registration(r2158,c222,s635).registration6665,135741 -registration(r2159,c1,s635).registration6666,135772 -registration(r2159,c1,s635).registration6666,135772 -registration(r2160,c126,s636).registration6667,135801 -registration(r2160,c126,s636).registration6667,135801 -registration(r2161,c99,s636).registration6668,135832 -registration(r2161,c99,s636).registration6668,135832 -registration(r2162,c108,s636).registration6669,135862 -registration(r2162,c108,s636).registration6669,135862 -registration(r2163,c47,s637).registration6670,135893 -registration(r2163,c47,s637).registration6670,135893 -registration(r2164,c13,s637).registration6671,135923 -registration(r2164,c13,s637).registration6671,135923 -registration(r2165,c0,s637).registration6672,135953 -registration(r2165,c0,s637).registration6672,135953 -registration(r2166,c44,s638).registration6673,135982 -registration(r2166,c44,s638).registration6673,135982 -registration(r2167,c12,s638).registration6674,136012 -registration(r2167,c12,s638).registration6674,136012 -registration(r2168,c140,s638).registration6675,136042 -registration(r2168,c140,s638).registration6675,136042 -registration(r2169,c31,s639).registration6676,136073 -registration(r2169,c31,s639).registration6676,136073 -registration(r2170,c236,s639).registration6677,136103 -registration(r2170,c236,s639).registration6677,136103 -registration(r2171,c75,s639).registration6678,136134 -registration(r2171,c75,s639).registration6678,136134 -registration(r2172,c39,s640).registration6679,136164 -registration(r2172,c39,s640).registration6679,136164 -registration(r2173,c123,s640).registration6680,136194 -registration(r2173,c123,s640).registration6680,136194 -registration(r2174,c171,s640).registration6681,136225 -registration(r2174,c171,s640).registration6681,136225 -registration(r2175,c29,s641).registration6682,136256 -registration(r2175,c29,s641).registration6682,136256 -registration(r2176,c143,s641).registration6683,136286 -registration(r2176,c143,s641).registration6683,136286 -registration(r2177,c190,s641).registration6684,136317 -registration(r2177,c190,s641).registration6684,136317 -registration(r2178,c245,s642).registration6685,136348 -registration(r2178,c245,s642).registration6685,136348 -registration(r2179,c192,s642).registration6686,136379 -registration(r2179,c192,s642).registration6686,136379 -registration(r2180,c244,s642).registration6687,136410 -registration(r2180,c244,s642).registration6687,136410 -registration(r2181,c227,s643).registration6688,136441 -registration(r2181,c227,s643).registration6688,136441 -registration(r2182,c144,s643).registration6689,136472 -registration(r2182,c144,s643).registration6689,136472 -registration(r2183,c8,s643).registration6690,136503 -registration(r2183,c8,s643).registration6690,136503 -registration(r2184,c240,s644).registration6691,136532 -registration(r2184,c240,s644).registration6691,136532 -registration(r2185,c16,s644).registration6692,136563 -registration(r2185,c16,s644).registration6692,136563 -registration(r2186,c73,s644).registration6693,136593 -registration(r2186,c73,s644).registration6693,136593 -registration(r2187,c189,s645).registration6694,136623 -registration(r2187,c189,s645).registration6694,136623 -registration(r2188,c155,s645).registration6695,136654 -registration(r2188,c155,s645).registration6695,136654 -registration(r2189,c176,s645).registration6696,136685 -registration(r2189,c176,s645).registration6696,136685 -registration(r2190,c210,s645).registration6697,136716 -registration(r2190,c210,s645).registration6697,136716 -registration(r2191,c48,s645).registration6698,136747 -registration(r2191,c48,s645).registration6698,136747 -registration(r2192,c77,s646).registration6699,136777 -registration(r2192,c77,s646).registration6699,136777 -registration(r2193,c176,s646).registration6700,136807 -registration(r2193,c176,s646).registration6700,136807 -registration(r2194,c20,s646).registration6701,136838 -registration(r2194,c20,s646).registration6701,136838 -registration(r2195,c206,s646).registration6702,136868 -registration(r2195,c206,s646).registration6702,136868 -registration(r2196,c235,s647).registration6703,136899 -registration(r2196,c235,s647).registration6703,136899 -registration(r2197,c16,s647).registration6704,136930 -registration(r2197,c16,s647).registration6704,136930 -registration(r2198,c53,s647).registration6705,136960 -registration(r2198,c53,s647).registration6705,136960 -registration(r2199,c42,s648).registration6706,136990 -registration(r2199,c42,s648).registration6706,136990 -registration(r2200,c66,s648).registration6707,137020 -registration(r2200,c66,s648).registration6707,137020 -registration(r2201,c205,s648).registration6708,137050 -registration(r2201,c205,s648).registration6708,137050 -registration(r2202,c211,s648).registration6709,137081 -registration(r2202,c211,s648).registration6709,137081 -registration(r2203,c240,s649).registration6710,137112 -registration(r2203,c240,s649).registration6710,137112 -registration(r2204,c15,s649).registration6711,137143 -registration(r2204,c15,s649).registration6711,137143 -registration(r2205,c197,s649).registration6712,137173 -registration(r2205,c197,s649).registration6712,137173 -registration(r2206,c88,s649).registration6713,137204 -registration(r2206,c88,s649).registration6713,137204 -registration(r2207,c197,s650).registration6714,137234 -registration(r2207,c197,s650).registration6714,137234 -registration(r2208,c21,s650).registration6715,137265 -registration(r2208,c21,s650).registration6715,137265 -registration(r2209,c222,s650).registration6716,137295 -registration(r2209,c222,s650).registration6716,137295 -registration(r2210,c175,s650).registration6717,137326 -registration(r2210,c175,s650).registration6717,137326 -registration(r2211,c124,s651).registration6718,137357 -registration(r2211,c124,s651).registration6718,137357 -registration(r2212,c79,s651).registration6719,137388 -registration(r2212,c79,s651).registration6719,137388 -registration(r2213,c254,s651).registration6720,137418 -registration(r2213,c254,s651).registration6720,137418 -registration(r2214,c100,s651).registration6721,137449 -registration(r2214,c100,s651).registration6721,137449 -registration(r2215,c250,s651).registration6722,137480 -registration(r2215,c250,s651).registration6722,137480 -registration(r2216,c8,s652).registration6723,137511 -registration(r2216,c8,s652).registration6723,137511 -registration(r2217,c23,s652).registration6724,137540 -registration(r2217,c23,s652).registration6724,137540 -registration(r2218,c13,s652).registration6725,137570 -registration(r2218,c13,s652).registration6725,137570 -registration(r2219,c222,s653).registration6726,137600 -registration(r2219,c222,s653).registration6726,137600 -registration(r2220,c103,s653).registration6727,137631 -registration(r2220,c103,s653).registration6727,137631 -registration(r2221,c55,s653).registration6728,137662 -registration(r2221,c55,s653).registration6728,137662 -registration(r2222,c11,s654).registration6729,137692 -registration(r2222,c11,s654).registration6729,137692 -registration(r2223,c129,s654).registration6730,137722 -registration(r2223,c129,s654).registration6730,137722 -registration(r2224,c102,s654).registration6731,137753 -registration(r2224,c102,s654).registration6731,137753 -registration(r2225,c71,s654).registration6732,137784 -registration(r2225,c71,s654).registration6732,137784 -registration(r2226,c114,s655).registration6733,137814 -registration(r2226,c114,s655).registration6733,137814 -registration(r2227,c138,s655).registration6734,137845 -registration(r2227,c138,s655).registration6734,137845 -registration(r2228,c44,s655).registration6735,137876 -registration(r2228,c44,s655).registration6735,137876 -registration(r2229,c163,s656).registration6736,137906 -registration(r2229,c163,s656).registration6736,137906 -registration(r2230,c167,s656).registration6737,137937 -registration(r2230,c167,s656).registration6737,137937 -registration(r2231,c24,s656).registration6738,137968 -registration(r2231,c24,s656).registration6738,137968 -registration(r2232,c247,s656).registration6739,137998 -registration(r2232,c247,s656).registration6739,137998 -registration(r2233,c77,s656).registration6740,138029 -registration(r2233,c77,s656).registration6740,138029 -registration(r2234,c92,s657).registration6741,138059 -registration(r2234,c92,s657).registration6741,138059 -registration(r2235,c66,s657).registration6742,138089 -registration(r2235,c66,s657).registration6742,138089 -registration(r2236,c73,s657).registration6743,138119 -registration(r2236,c73,s657).registration6743,138119 -registration(r2237,c85,s658).registration6744,138149 -registration(r2237,c85,s658).registration6744,138149 -registration(r2238,c163,s658).registration6745,138179 -registration(r2238,c163,s658).registration6745,138179 -registration(r2239,c78,s658).registration6746,138210 -registration(r2239,c78,s658).registration6746,138210 -registration(r2240,c136,s658).registration6747,138240 -registration(r2240,c136,s658).registration6747,138240 -registration(r2241,c223,s659).registration6748,138271 -registration(r2241,c223,s659).registration6748,138271 -registration(r2242,c128,s659).registration6749,138302 -registration(r2242,c128,s659).registration6749,138302 -registration(r2243,c146,s659).registration6750,138333 -registration(r2243,c146,s659).registration6750,138333 -registration(r2244,c173,s660).registration6751,138364 -registration(r2244,c173,s660).registration6751,138364 -registration(r2245,c166,s660).registration6752,138395 -registration(r2245,c166,s660).registration6752,138395 -registration(r2246,c76,s660).registration6753,138426 -registration(r2246,c76,s660).registration6753,138426 -registration(r2247,c48,s660).registration6754,138456 -registration(r2247,c48,s660).registration6754,138456 -registration(r2248,c168,s661).registration6755,138486 -registration(r2248,c168,s661).registration6755,138486 -registration(r2249,c153,s661).registration6756,138517 -registration(r2249,c153,s661).registration6756,138517 -registration(r2250,c29,s661).registration6757,138548 -registration(r2250,c29,s661).registration6757,138548 -registration(r2251,c61,s662).registration6758,138578 -registration(r2251,c61,s662).registration6758,138578 -registration(r2252,c72,s662).registration6759,138608 -registration(r2252,c72,s662).registration6759,138608 -registration(r2253,c202,s662).registration6760,138638 -registration(r2253,c202,s662).registration6760,138638 -registration(r2254,c12,s663).registration6761,138669 -registration(r2254,c12,s663).registration6761,138669 -registration(r2255,c213,s663).registration6762,138699 -registration(r2255,c213,s663).registration6762,138699 -registration(r2256,c9,s663).registration6763,138730 -registration(r2256,c9,s663).registration6763,138730 -registration(r2257,c172,s663).registration6764,138759 -registration(r2257,c172,s663).registration6764,138759 -registration(r2258,c180,s664).registration6765,138790 -registration(r2258,c180,s664).registration6765,138790 -registration(r2259,c94,s664).registration6766,138821 -registration(r2259,c94,s664).registration6766,138821 -registration(r2260,c184,s664).registration6767,138851 -registration(r2260,c184,s664).registration6767,138851 -registration(r2261,c56,s665).registration6768,138882 -registration(r2261,c56,s665).registration6768,138882 -registration(r2262,c207,s665).registration6769,138912 -registration(r2262,c207,s665).registration6769,138912 -registration(r2263,c157,s665).registration6770,138943 -registration(r2263,c157,s665).registration6770,138943 -registration(r2264,c124,s665).registration6771,138974 -registration(r2264,c124,s665).registration6771,138974 -registration(r2265,c108,s666).registration6772,139005 -registration(r2265,c108,s666).registration6772,139005 -registration(r2266,c156,s666).registration6773,139036 -registration(r2266,c156,s666).registration6773,139036 -registration(r2267,c118,s666).registration6774,139067 -registration(r2267,c118,s666).registration6774,139067 -registration(r2268,c16,s667).registration6775,139098 -registration(r2268,c16,s667).registration6775,139098 -registration(r2269,c4,s667).registration6776,139128 -registration(r2269,c4,s667).registration6776,139128 -registration(r2270,c149,s667).registration6777,139157 -registration(r2270,c149,s667).registration6777,139157 -registration(r2271,c220,s668).registration6778,139188 -registration(r2271,c220,s668).registration6778,139188 -registration(r2272,c140,s668).registration6779,139219 -registration(r2272,c140,s668).registration6779,139219 -registration(r2273,c205,s668).registration6780,139250 -registration(r2273,c205,s668).registration6780,139250 -registration(r2274,c163,s669).registration6781,139281 -registration(r2274,c163,s669).registration6781,139281 -registration(r2275,c137,s669).registration6782,139312 -registration(r2275,c137,s669).registration6782,139312 -registration(r2276,c253,s669).registration6783,139343 -registration(r2276,c253,s669).registration6783,139343 -registration(r2277,c177,s670).registration6784,139374 -registration(r2277,c177,s670).registration6784,139374 -registration(r2278,c43,s670).registration6785,139405 -registration(r2278,c43,s670).registration6785,139405 -registration(r2279,c239,s670).registration6786,139435 -registration(r2279,c239,s670).registration6786,139435 -registration(r2280,c39,s671).registration6787,139466 -registration(r2280,c39,s671).registration6787,139466 -registration(r2281,c189,s671).registration6788,139496 -registration(r2281,c189,s671).registration6788,139496 -registration(r2282,c7,s671).registration6789,139527 -registration(r2282,c7,s671).registration6789,139527 -registration(r2283,c77,s672).registration6790,139556 -registration(r2283,c77,s672).registration6790,139556 -registration(r2284,c180,s672).registration6791,139586 -registration(r2284,c180,s672).registration6791,139586 -registration(r2285,c214,s672).registration6792,139617 -registration(r2285,c214,s672).registration6792,139617 -registration(r2286,c26,s673).registration6793,139648 -registration(r2286,c26,s673).registration6793,139648 -registration(r2287,c212,s673).registration6794,139678 -registration(r2287,c212,s673).registration6794,139678 -registration(r2288,c159,s673).registration6795,139709 -registration(r2288,c159,s673).registration6795,139709 -registration(r2289,c226,s674).registration6796,139740 -registration(r2289,c226,s674).registration6796,139740 -registration(r2290,c138,s674).registration6797,139771 -registration(r2290,c138,s674).registration6797,139771 -registration(r2291,c35,s674).registration6798,139802 -registration(r2291,c35,s674).registration6798,139802 -registration(r2292,c189,s674).registration6799,139832 -registration(r2292,c189,s674).registration6799,139832 -registration(r2293,c84,s675).registration6800,139863 -registration(r2293,c84,s675).registration6800,139863 -registration(r2294,c150,s675).registration6801,139893 -registration(r2294,c150,s675).registration6801,139893 -registration(r2295,c187,s675).registration6802,139924 -registration(r2295,c187,s675).registration6802,139924 -registration(r2296,c205,s675).registration6803,139955 -registration(r2296,c205,s675).registration6803,139955 -registration(r2297,c77,s676).registration6804,139986 -registration(r2297,c77,s676).registration6804,139986 -registration(r2298,c188,s676).registration6805,140016 -registration(r2298,c188,s676).registration6805,140016 -registration(r2299,c91,s676).registration6806,140047 -registration(r2299,c91,s676).registration6806,140047 -registration(r2300,c23,s677).registration6807,140077 -registration(r2300,c23,s677).registration6807,140077 -registration(r2301,c191,s677).registration6808,140107 -registration(r2301,c191,s677).registration6808,140107 -registration(r2302,c44,s677).registration6809,140138 -registration(r2302,c44,s677).registration6809,140138 -registration(r2303,c223,s677).registration6810,140168 -registration(r2303,c223,s677).registration6810,140168 -registration(r2304,c39,s678).registration6811,140199 -registration(r2304,c39,s678).registration6811,140199 -registration(r2305,c208,s678).registration6812,140229 -registration(r2305,c208,s678).registration6812,140229 -registration(r2306,c122,s678).registration6813,140260 -registration(r2306,c122,s678).registration6813,140260 -registration(r2307,c26,s679).registration6814,140291 -registration(r2307,c26,s679).registration6814,140291 -registration(r2308,c240,s679).registration6815,140321 -registration(r2308,c240,s679).registration6815,140321 -registration(r2309,c60,s679).registration6816,140352 -registration(r2309,c60,s679).registration6816,140352 -registration(r2310,c96,s680).registration6817,140382 -registration(r2310,c96,s680).registration6817,140382 -registration(r2311,c174,s680).registration6818,140412 -registration(r2311,c174,s680).registration6818,140412 -registration(r2312,c136,s680).registration6819,140443 -registration(r2312,c136,s680).registration6819,140443 -registration(r2313,c1,s680).registration6820,140474 -registration(r2313,c1,s680).registration6820,140474 -registration(r2314,c216,s680).registration6821,140503 -registration(r2314,c216,s680).registration6821,140503 -registration(r2315,c35,s681).registration6822,140534 -registration(r2315,c35,s681).registration6822,140534 -registration(r2316,c235,s681).registration6823,140564 -registration(r2316,c235,s681).registration6823,140564 -registration(r2317,c69,s681).registration6824,140595 -registration(r2317,c69,s681).registration6824,140595 -registration(r2318,c160,s682).registration6825,140625 -registration(r2318,c160,s682).registration6825,140625 -registration(r2319,c41,s682).registration6826,140656 -registration(r2319,c41,s682).registration6826,140656 -registration(r2320,c140,s682).registration6827,140686 -registration(r2320,c140,s682).registration6827,140686 -registration(r2321,c183,s683).registration6828,140717 -registration(r2321,c183,s683).registration6828,140717 -registration(r2322,c9,s683).registration6829,140748 -registration(r2322,c9,s683).registration6829,140748 -registration(r2323,c245,s683).registration6830,140777 -registration(r2323,c245,s683).registration6830,140777 -registration(r2324,c197,s683).registration6831,140808 -registration(r2324,c197,s683).registration6831,140808 -registration(r2325,c17,s684).registration6832,140839 -registration(r2325,c17,s684).registration6832,140839 -registration(r2326,c114,s684).registration6833,140869 -registration(r2326,c114,s684).registration6833,140869 -registration(r2327,c106,s684).registration6834,140900 -registration(r2327,c106,s684).registration6834,140900 -registration(r2328,c98,s684).registration6835,140931 -registration(r2328,c98,s684).registration6835,140931 -registration(r2329,c41,s685).registration6836,140961 -registration(r2329,c41,s685).registration6836,140961 -registration(r2330,c223,s685).registration6837,140991 -registration(r2330,c223,s685).registration6837,140991 -registration(r2331,c6,s685).registration6838,141022 -registration(r2331,c6,s685).registration6838,141022 -registration(r2332,c36,s686).registration6839,141051 -registration(r2332,c36,s686).registration6839,141051 -registration(r2333,c216,s686).registration6840,141081 -registration(r2333,c216,s686).registration6840,141081 -registration(r2334,c134,s686).registration6841,141112 -registration(r2334,c134,s686).registration6841,141112 -registration(r2335,c114,s687).registration6842,141143 -registration(r2335,c114,s687).registration6842,141143 -registration(r2336,c65,s687).registration6843,141174 -registration(r2336,c65,s687).registration6843,141174 -registration(r2337,c109,s687).registration6844,141204 -registration(r2337,c109,s687).registration6844,141204 -registration(r2338,c226,s687).registration6845,141235 -registration(r2338,c226,s687).registration6845,141235 -registration(r2339,c167,s688).registration6846,141266 -registration(r2339,c167,s688).registration6846,141266 -registration(r2340,c153,s688).registration6847,141297 -registration(r2340,c153,s688).registration6847,141297 -registration(r2341,c127,s688).registration6848,141328 -registration(r2341,c127,s688).registration6848,141328 -registration(r2342,c118,s689).registration6849,141359 -registration(r2342,c118,s689).registration6849,141359 -registration(r2343,c246,s689).registration6850,141390 -registration(r2343,c246,s689).registration6850,141390 -registration(r2344,c210,s689).registration6851,141421 -registration(r2344,c210,s689).registration6851,141421 -registration(r2345,c68,s689).registration6852,141452 -registration(r2345,c68,s689).registration6852,141452 -registration(r2346,c167,s690).registration6853,141482 -registration(r2346,c167,s690).registration6853,141482 -registration(r2347,c52,s690).registration6854,141513 -registration(r2347,c52,s690).registration6854,141513 -registration(r2348,c169,s690).registration6855,141543 -registration(r2348,c169,s690).registration6855,141543 -registration(r2349,c136,s691).registration6856,141574 -registration(r2349,c136,s691).registration6856,141574 -registration(r2350,c84,s691).registration6857,141605 -registration(r2350,c84,s691).registration6857,141605 -registration(r2351,c52,s691).registration6858,141635 -registration(r2351,c52,s691).registration6858,141635 -registration(r2352,c12,s692).registration6859,141665 -registration(r2352,c12,s692).registration6859,141665 -registration(r2353,c119,s692).registration6860,141695 -registration(r2353,c119,s692).registration6860,141695 -registration(r2354,c117,s692).registration6861,141726 -registration(r2354,c117,s692).registration6861,141726 -registration(r2355,c234,s692).registration6862,141757 -registration(r2355,c234,s692).registration6862,141757 -registration(r2356,c118,s693).registration6863,141788 -registration(r2356,c118,s693).registration6863,141788 -registration(r2357,c5,s693).registration6864,141819 -registration(r2357,c5,s693).registration6864,141819 -registration(r2358,c154,s693).registration6865,141848 -registration(r2358,c154,s693).registration6865,141848 -registration(r2359,c173,s693).registration6866,141879 -registration(r2359,c173,s693).registration6866,141879 -registration(r2360,c142,s693).registration6867,141910 -registration(r2360,c142,s693).registration6867,141910 -registration(r2361,c11,s694).registration6868,141941 -registration(r2361,c11,s694).registration6868,141941 -registration(r2362,c214,s694).registration6869,141971 -registration(r2362,c214,s694).registration6869,141971 -registration(r2363,c4,s694).registration6870,142002 -registration(r2363,c4,s694).registration6870,142002 -registration(r2364,c169,s694).registration6871,142031 -registration(r2364,c169,s694).registration6871,142031 -registration(r2365,c10,s695).registration6872,142062 -registration(r2365,c10,s695).registration6872,142062 -registration(r2366,c239,s695).registration6873,142092 -registration(r2366,c239,s695).registration6873,142092 -registration(r2367,c230,s695).registration6874,142123 -registration(r2367,c230,s695).registration6874,142123 -registration(r2368,c53,s696).registration6875,142154 -registration(r2368,c53,s696).registration6875,142154 -registration(r2369,c157,s696).registration6876,142184 -registration(r2369,c157,s696).registration6876,142184 -registration(r2370,c31,s696).registration6877,142215 -registration(r2370,c31,s696).registration6877,142215 -registration(r2371,c16,s697).registration6878,142245 -registration(r2371,c16,s697).registration6878,142245 -registration(r2372,c3,s697).registration6879,142275 -registration(r2372,c3,s697).registration6879,142275 -registration(r2373,c222,s697).registration6880,142304 -registration(r2373,c222,s697).registration6880,142304 -registration(r2374,c231,s698).registration6881,142335 -registration(r2374,c231,s698).registration6881,142335 -registration(r2375,c113,s698).registration6882,142366 -registration(r2375,c113,s698).registration6882,142366 -registration(r2376,c47,s698).registration6883,142397 -registration(r2376,c47,s698).registration6883,142397 -registration(r2377,c201,s699).registration6884,142427 -registration(r2377,c201,s699).registration6884,142427 -registration(r2378,c108,s699).registration6885,142458 -registration(r2378,c108,s699).registration6885,142458 -registration(r2379,c35,s699).registration6886,142489 -registration(r2379,c35,s699).registration6886,142489 -registration(r2380,c47,s700).registration6887,142519 -registration(r2380,c47,s700).registration6887,142519 -registration(r2381,c210,s700).registration6888,142549 -registration(r2381,c210,s700).registration6888,142549 -registration(r2382,c255,s700).registration6889,142580 -registration(r2382,c255,s700).registration6889,142580 -registration(r2383,c123,s700).registration6890,142611 -registration(r2383,c123,s700).registration6890,142611 -registration(r2384,c60,s701).registration6891,142642 -registration(r2384,c60,s701).registration6891,142642 -registration(r2385,c107,s701).registration6892,142672 -registration(r2385,c107,s701).registration6892,142672 -registration(r2386,c39,s701).registration6893,142703 -registration(r2386,c39,s701).registration6893,142703 -registration(r2387,c94,s701).registration6894,142733 -registration(r2387,c94,s701).registration6894,142733 -registration(r2388,c25,s702).registration6895,142763 -registration(r2388,c25,s702).registration6895,142763 -registration(r2389,c35,s702).registration6896,142793 -registration(r2389,c35,s702).registration6896,142793 -registration(r2390,c231,s702).registration6897,142823 -registration(r2390,c231,s702).registration6897,142823 -registration(r2391,c234,s702).registration6898,142854 -registration(r2391,c234,s702).registration6898,142854 -registration(r2392,c201,s703).registration6899,142885 -registration(r2392,c201,s703).registration6899,142885 -registration(r2393,c186,s703).registration6900,142916 -registration(r2393,c186,s703).registration6900,142916 -registration(r2394,c98,s703).registration6901,142947 -registration(r2394,c98,s703).registration6901,142947 -registration(r2395,c146,s703).registration6902,142977 -registration(r2395,c146,s703).registration6902,142977 -registration(r2396,c14,s704).registration6903,143008 -registration(r2396,c14,s704).registration6903,143008 -registration(r2397,c165,s704).registration6904,143038 -registration(r2397,c165,s704).registration6904,143038 -registration(r2398,c92,s704).registration6905,143069 -registration(r2398,c92,s704).registration6905,143069 -registration(r2399,c88,s705).registration6906,143099 -registration(r2399,c88,s705).registration6906,143099 -registration(r2400,c118,s705).registration6907,143129 -registration(r2400,c118,s705).registration6907,143129 -registration(r2401,c248,s705).registration6908,143160 -registration(r2401,c248,s705).registration6908,143160 -registration(r2402,c117,s705).registration6909,143191 -registration(r2402,c117,s705).registration6909,143191 -registration(r2403,c166,s705).registration6910,143222 -registration(r2403,c166,s705).registration6910,143222 -registration(r2404,c181,s706).registration6911,143253 -registration(r2404,c181,s706).registration6911,143253 -registration(r2405,c102,s706).registration6912,143284 -registration(r2405,c102,s706).registration6912,143284 -registration(r2406,c16,s706).registration6913,143315 -registration(r2406,c16,s706).registration6913,143315 -registration(r2407,c19,s707).registration6914,143345 -registration(r2407,c19,s707).registration6914,143345 -registration(r2408,c59,s707).registration6915,143375 -registration(r2408,c59,s707).registration6915,143375 -registration(r2409,c252,s707).registration6916,143405 -registration(r2409,c252,s707).registration6916,143405 -registration(r2410,c230,s707).registration6917,143436 -registration(r2410,c230,s707).registration6917,143436 -registration(r2411,c104,s708).registration6918,143467 -registration(r2411,c104,s708).registration6918,143467 -registration(r2412,c13,s708).registration6919,143498 -registration(r2412,c13,s708).registration6919,143498 -registration(r2413,c176,s708).registration6920,143528 -registration(r2413,c176,s708).registration6920,143528 -registration(r2414,c113,s708).registration6921,143559 -registration(r2414,c113,s708).registration6921,143559 -registration(r2415,c81,s709).registration6922,143590 -registration(r2415,c81,s709).registration6922,143590 -registration(r2416,c3,s709).registration6923,143620 -registration(r2416,c3,s709).registration6923,143620 -registration(r2417,c112,s709).registration6924,143649 -registration(r2417,c112,s709).registration6924,143649 -registration(r2418,c235,s710).registration6925,143680 -registration(r2418,c235,s710).registration6925,143680 -registration(r2419,c189,s710).registration6926,143711 -registration(r2419,c189,s710).registration6926,143711 -registration(r2420,c183,s710).registration6927,143742 -registration(r2420,c183,s710).registration6927,143742 -registration(r2421,c227,s711).registration6928,143773 -registration(r2421,c227,s711).registration6928,143773 -registration(r2422,c214,s711).registration6929,143804 -registration(r2422,c214,s711).registration6929,143804 -registration(r2423,c224,s711).registration6930,143835 -registration(r2423,c224,s711).registration6930,143835 -registration(r2424,c72,s712).registration6931,143866 -registration(r2424,c72,s712).registration6931,143866 -registration(r2425,c155,s712).registration6932,143896 -registration(r2425,c155,s712).registration6932,143896 -registration(r2426,c106,s712).registration6933,143927 -registration(r2426,c106,s712).registration6933,143927 -registration(r2427,c175,s712).registration6934,143958 -registration(r2427,c175,s712).registration6934,143958 -registration(r2428,c40,s713).registration6935,143989 -registration(r2428,c40,s713).registration6935,143989 -registration(r2429,c227,s713).registration6936,144019 -registration(r2429,c227,s713).registration6936,144019 -registration(r2430,c199,s713).registration6937,144050 -registration(r2430,c199,s713).registration6937,144050 -registration(r2431,c76,s713).registration6938,144081 -registration(r2431,c76,s713).registration6938,144081 -registration(r2432,c192,s714).registration6939,144111 -registration(r2432,c192,s714).registration6939,144111 -registration(r2433,c111,s714).registration6940,144142 -registration(r2433,c111,s714).registration6940,144142 -registration(r2434,c69,s714).registration6941,144173 -registration(r2434,c69,s714).registration6941,144173 -registration(r2435,c194,s714).registration6942,144203 -registration(r2435,c194,s714).registration6942,144203 -registration(r2436,c144,s715).registration6943,144234 -registration(r2436,c144,s715).registration6943,144234 -registration(r2437,c183,s715).registration6944,144265 -registration(r2437,c183,s715).registration6944,144265 -registration(r2438,c170,s715).registration6945,144296 -registration(r2438,c170,s715).registration6945,144296 -registration(r2439,c99,s716).registration6946,144327 -registration(r2439,c99,s716).registration6946,144327 -registration(r2440,c221,s716).registration6947,144357 -registration(r2440,c221,s716).registration6947,144357 -registration(r2441,c45,s716).registration6948,144388 -registration(r2441,c45,s716).registration6948,144388 -registration(r2442,c15,s717).registration6949,144418 -registration(r2442,c15,s717).registration6949,144418 -registration(r2443,c209,s717).registration6950,144448 -registration(r2443,c209,s717).registration6950,144448 -registration(r2444,c66,s717).registration6951,144479 -registration(r2444,c66,s717).registration6951,144479 -registration(r2445,c172,s718).registration6952,144509 -registration(r2445,c172,s718).registration6952,144509 -registration(r2446,c131,s718).registration6953,144540 -registration(r2446,c131,s718).registration6953,144540 -registration(r2447,c26,s718).registration6954,144571 -registration(r2447,c26,s718).registration6954,144571 -registration(r2448,c254,s719).registration6955,144601 -registration(r2448,c254,s719).registration6955,144601 -registration(r2449,c25,s719).registration6956,144632 -registration(r2449,c25,s719).registration6956,144632 -registration(r2450,c188,s719).registration6957,144662 -registration(r2450,c188,s719).registration6957,144662 -registration(r2451,c125,s720).registration6958,144693 -registration(r2451,c125,s720).registration6958,144693 -registration(r2452,c187,s720).registration6959,144724 -registration(r2452,c187,s720).registration6959,144724 -registration(r2453,c52,s720).registration6960,144755 -registration(r2453,c52,s720).registration6960,144755 -registration(r2454,c126,s721).registration6961,144785 -registration(r2454,c126,s721).registration6961,144785 -registration(r2455,c46,s721).registration6962,144816 -registration(r2455,c46,s721).registration6962,144816 -registration(r2456,c53,s721).registration6963,144846 -registration(r2456,c53,s721).registration6963,144846 -registration(r2457,c171,s721).registration6964,144876 -registration(r2457,c171,s721).registration6964,144876 -registration(r2458,c140,s722).registration6965,144907 -registration(r2458,c140,s722).registration6965,144907 -registration(r2459,c135,s722).registration6966,144938 -registration(r2459,c135,s722).registration6966,144938 -registration(r2460,c216,s722).registration6967,144969 -registration(r2460,c216,s722).registration6967,144969 -registration(r2461,c231,s723).registration6968,145000 -registration(r2461,c231,s723).registration6968,145000 -registration(r2462,c165,s723).registration6969,145031 -registration(r2462,c165,s723).registration6969,145031 -registration(r2463,c125,s723).registration6970,145062 -registration(r2463,c125,s723).registration6970,145062 -registration(r2464,c41,s723).registration6971,145093 -registration(r2464,c41,s723).registration6971,145093 -registration(r2465,c195,s724).registration6972,145123 -registration(r2465,c195,s724).registration6972,145123 -registration(r2466,c45,s724).registration6973,145154 -registration(r2466,c45,s724).registration6973,145154 -registration(r2467,c123,s724).registration6974,145184 -registration(r2467,c123,s724).registration6974,145184 -registration(r2468,c149,s724).registration6975,145215 -registration(r2468,c149,s724).registration6975,145215 -registration(r2469,c44,s725).registration6976,145246 -registration(r2469,c44,s725).registration6976,145246 -registration(r2470,c119,s725).registration6977,145276 -registration(r2470,c119,s725).registration6977,145276 -registration(r2471,c133,s725).registration6978,145307 -registration(r2471,c133,s725).registration6978,145307 -registration(r2472,c185,s725).registration6979,145338 -registration(r2472,c185,s725).registration6979,145338 -registration(r2473,c72,s726).registration6980,145369 -registration(r2473,c72,s726).registration6980,145369 -registration(r2474,c175,s726).registration6981,145399 -registration(r2474,c175,s726).registration6981,145399 -registration(r2475,c55,s726).registration6982,145430 -registration(r2475,c55,s726).registration6982,145430 -registration(r2476,c97,s727).registration6983,145460 -registration(r2476,c97,s727).registration6983,145460 -registration(r2477,c33,s727).registration6984,145490 -registration(r2477,c33,s727).registration6984,145490 -registration(r2478,c142,s727).registration6985,145520 -registration(r2478,c142,s727).registration6985,145520 -registration(r2479,c102,s728).registration6986,145551 -registration(r2479,c102,s728).registration6986,145551 -registration(r2480,c194,s728).registration6987,145582 -registration(r2480,c194,s728).registration6987,145582 -registration(r2481,c230,s728).registration6988,145613 -registration(r2481,c230,s728).registration6988,145613 -registration(r2482,c99,s729).registration6989,145644 -registration(r2482,c99,s729).registration6989,145644 -registration(r2483,c141,s729).registration6990,145674 -registration(r2483,c141,s729).registration6990,145674 -registration(r2484,c123,s729).registration6991,145705 -registration(r2484,c123,s729).registration6991,145705 -registration(r2485,c169,s730).registration6992,145736 -registration(r2485,c169,s730).registration6992,145736 -registration(r2486,c9,s730).registration6993,145767 -registration(r2486,c9,s730).registration6993,145767 -registration(r2487,c192,s730).registration6994,145796 -registration(r2487,c192,s730).registration6994,145796 -registration(r2488,c236,s731).registration6995,145827 -registration(r2488,c236,s731).registration6995,145827 -registration(r2489,c76,s731).registration6996,145858 -registration(r2489,c76,s731).registration6996,145858 -registration(r2490,c35,s731).registration6997,145888 -registration(r2490,c35,s731).registration6997,145888 -registration(r2491,c220,s732).registration6998,145918 -registration(r2491,c220,s732).registration6998,145918 -registration(r2492,c223,s732).registration6999,145949 -registration(r2492,c223,s732).registration6999,145949 -registration(r2493,c45,s732).registration7000,145980 -registration(r2493,c45,s732).registration7000,145980 -registration(r2494,c85,s732).registration7001,146010 -registration(r2494,c85,s732).registration7001,146010 -registration(r2495,c117,s732).registration7002,146040 -registration(r2495,c117,s732).registration7002,146040 -registration(r2496,c119,s733).registration7003,146071 -registration(r2496,c119,s733).registration7003,146071 -registration(r2497,c159,s733).registration7004,146102 -registration(r2497,c159,s733).registration7004,146102 -registration(r2498,c99,s733).registration7005,146133 -registration(r2498,c99,s733).registration7005,146133 -registration(r2499,c4,s733).registration7006,146163 -registration(r2499,c4,s733).registration7006,146163 -registration(r2500,c7,s733).registration7007,146192 -registration(r2500,c7,s733).registration7007,146192 -registration(r2501,c82,s734).registration7008,146221 -registration(r2501,c82,s734).registration7008,146221 -registration(r2502,c144,s734).registration7009,146251 -registration(r2502,c144,s734).registration7009,146251 -registration(r2503,c106,s734).registration7010,146282 -registration(r2503,c106,s734).registration7010,146282 -registration(r2504,c248,s734).registration7011,146313 -registration(r2504,c248,s734).registration7011,146313 -registration(r2505,c47,s735).registration7012,146344 -registration(r2505,c47,s735).registration7012,146344 -registration(r2506,c181,s735).registration7013,146374 -registration(r2506,c181,s735).registration7013,146374 -registration(r2507,c2,s735).registration7014,146405 -registration(r2507,c2,s735).registration7014,146405 -registration(r2508,c161,s736).registration7015,146434 -registration(r2508,c161,s736).registration7015,146434 -registration(r2509,c220,s736).registration7016,146465 -registration(r2509,c220,s736).registration7016,146465 -registration(r2510,c214,s736).registration7017,146496 -registration(r2510,c214,s736).registration7017,146496 -registration(r2511,c85,s737).registration7018,146527 -registration(r2511,c85,s737).registration7018,146527 -registration(r2512,c162,s737).registration7019,146557 -registration(r2512,c162,s737).registration7019,146557 -registration(r2513,c81,s737).registration7020,146588 -registration(r2513,c81,s737).registration7020,146588 -registration(r2514,c168,s738).registration7021,146618 -registration(r2514,c168,s738).registration7021,146618 -registration(r2515,c147,s738).registration7022,146649 -registration(r2515,c147,s738).registration7022,146649 -registration(r2516,c43,s738).registration7023,146680 -registration(r2516,c43,s738).registration7023,146680 -registration(r2517,c50,s738).registration7024,146710 -registration(r2517,c50,s738).registration7024,146710 -registration(r2518,c64,s739).registration7025,146740 -registration(r2518,c64,s739).registration7025,146740 -registration(r2519,c55,s739).registration7026,146770 -registration(r2519,c55,s739).registration7026,146770 -registration(r2520,c183,s739).registration7027,146800 -registration(r2520,c183,s739).registration7027,146800 -registration(r2521,c70,s740).registration7028,146831 -registration(r2521,c70,s740).registration7028,146831 -registration(r2522,c177,s740).registration7029,146861 -registration(r2522,c177,s740).registration7029,146861 -registration(r2523,c105,s740).registration7030,146892 -registration(r2523,c105,s740).registration7030,146892 -registration(r2524,c152,s741).registration7031,146923 -registration(r2524,c152,s741).registration7031,146923 -registration(r2525,c6,s741).registration7032,146954 -registration(r2525,c6,s741).registration7032,146954 -registration(r2526,c173,s741).registration7033,146983 -registration(r2526,c173,s741).registration7033,146983 -registration(r2527,c78,s742).registration7034,147014 -registration(r2527,c78,s742).registration7034,147014 -registration(r2528,c101,s742).registration7035,147044 -registration(r2528,c101,s742).registration7035,147044 -registration(r2529,c105,s742).registration7036,147075 -registration(r2529,c105,s742).registration7036,147075 -registration(r2530,c216,s742).registration7037,147106 -registration(r2530,c216,s742).registration7037,147106 -registration(r2531,c181,s743).registration7038,147137 -registration(r2531,c181,s743).registration7038,147137 -registration(r2532,c41,s743).registration7039,147168 -registration(r2532,c41,s743).registration7039,147168 -registration(r2533,c66,s743).registration7040,147198 -registration(r2533,c66,s743).registration7040,147198 -registration(r2534,c213,s744).registration7041,147228 -registration(r2534,c213,s744).registration7041,147228 -registration(r2535,c150,s744).registration7042,147259 -registration(r2535,c150,s744).registration7042,147259 -registration(r2536,c242,s744).registration7043,147290 -registration(r2536,c242,s744).registration7043,147290 -registration(r2537,c39,s744).registration7044,147321 -registration(r2537,c39,s744).registration7044,147321 -registration(r2538,c63,s744).registration7045,147351 -registration(r2538,c63,s744).registration7045,147351 -registration(r2539,c222,s745).registration7046,147381 -registration(r2539,c222,s745).registration7046,147381 -registration(r2540,c120,s745).registration7047,147412 -registration(r2540,c120,s745).registration7047,147412 -registration(r2541,c201,s745).registration7048,147443 -registration(r2541,c201,s745).registration7048,147443 -registration(r2542,c41,s745).registration7049,147474 -registration(r2542,c41,s745).registration7049,147474 -registration(r2543,c118,s746).registration7050,147504 -registration(r2543,c118,s746).registration7050,147504 -registration(r2544,c212,s746).registration7051,147535 -registration(r2544,c212,s746).registration7051,147535 -registration(r2545,c203,s746).registration7052,147566 -registration(r2545,c203,s746).registration7052,147566 -registration(r2546,c84,s747).registration7053,147597 -registration(r2546,c84,s747).registration7053,147597 -registration(r2547,c14,s747).registration7054,147627 -registration(r2547,c14,s747).registration7054,147627 -registration(r2548,c207,s747).registration7055,147657 -registration(r2548,c207,s747).registration7055,147657 -registration(r2549,c226,s748).registration7056,147688 -registration(r2549,c226,s748).registration7056,147688 -registration(r2550,c144,s748).registration7057,147719 -registration(r2550,c144,s748).registration7057,147719 -registration(r2551,c53,s748).registration7058,147750 -registration(r2551,c53,s748).registration7058,147750 -registration(r2552,c119,s749).registration7059,147780 -registration(r2552,c119,s749).registration7059,147780 -registration(r2553,c3,s749).registration7060,147811 -registration(r2553,c3,s749).registration7060,147811 -registration(r2554,c142,s749).registration7061,147840 -registration(r2554,c142,s749).registration7061,147840 -registration(r2555,c127,s750).registration7062,147871 -registration(r2555,c127,s750).registration7062,147871 -registration(r2556,c85,s750).registration7063,147902 -registration(r2556,c85,s750).registration7063,147902 -registration(r2557,c195,s750).registration7064,147932 -registration(r2557,c195,s750).registration7064,147932 -registration(r2558,c160,s751).registration7065,147963 -registration(r2558,c160,s751).registration7065,147963 -registration(r2559,c42,s751).registration7066,147994 -registration(r2559,c42,s751).registration7066,147994 -registration(r2560,c95,s751).registration7067,148024 -registration(r2560,c95,s751).registration7067,148024 -registration(r2561,c146,s752).registration7068,148054 -registration(r2561,c146,s752).registration7068,148054 -registration(r2562,c59,s752).registration7069,148085 -registration(r2562,c59,s752).registration7069,148085 -registration(r2563,c41,s752).registration7070,148115 -registration(r2563,c41,s752).registration7070,148115 -registration(r2564,c171,s753).registration7071,148145 -registration(r2564,c171,s753).registration7071,148145 -registration(r2565,c180,s753).registration7072,148176 -registration(r2565,c180,s753).registration7072,148176 -registration(r2566,c199,s753).registration7073,148207 -registration(r2566,c199,s753).registration7073,148207 -registration(r2567,c62,s754).registration7074,148238 -registration(r2567,c62,s754).registration7074,148238 -registration(r2568,c94,s754).registration7075,148268 -registration(r2568,c94,s754).registration7075,148268 -registration(r2569,c254,s754).registration7076,148298 -registration(r2569,c254,s754).registration7076,148298 -registration(r2570,c186,s755).registration7077,148329 -registration(r2570,c186,s755).registration7077,148329 -registration(r2571,c236,s755).registration7078,148360 -registration(r2571,c236,s755).registration7078,148360 -registration(r2572,c249,s755).registration7079,148391 -registration(r2572,c249,s755).registration7079,148391 -registration(r2573,c149,s756).registration7080,148422 -registration(r2573,c149,s756).registration7080,148422 -registration(r2574,c200,s756).registration7081,148453 -registration(r2574,c200,s756).registration7081,148453 -registration(r2575,c141,s756).registration7082,148484 -registration(r2575,c141,s756).registration7082,148484 -registration(r2576,c36,s757).registration7083,148515 -registration(r2576,c36,s757).registration7083,148515 -registration(r2577,c248,s757).registration7084,148545 -registration(r2577,c248,s757).registration7084,148545 -registration(r2578,c165,s757).registration7085,148576 -registration(r2578,c165,s757).registration7085,148576 -registration(r2579,c250,s758).registration7086,148607 -registration(r2579,c250,s758).registration7086,148607 -registration(r2580,c21,s758).registration7087,148638 -registration(r2580,c21,s758).registration7087,148638 -registration(r2581,c249,s758).registration7088,148668 -registration(r2581,c249,s758).registration7088,148668 -registration(r2582,c116,s758).registration7089,148699 -registration(r2582,c116,s758).registration7089,148699 -registration(r2583,c208,s759).registration7090,148730 -registration(r2583,c208,s759).registration7090,148730 -registration(r2584,c40,s759).registration7091,148761 -registration(r2584,c40,s759).registration7091,148761 -registration(r2585,c122,s759).registration7092,148791 -registration(r2585,c122,s759).registration7092,148791 -registration(r2586,c185,s760).registration7093,148822 -registration(r2586,c185,s760).registration7093,148822 -registration(r2587,c168,s760).registration7094,148853 -registration(r2587,c168,s760).registration7094,148853 -registration(r2588,c147,s760).registration7095,148884 -registration(r2588,c147,s760).registration7095,148884 -registration(r2589,c158,s760).registration7096,148915 -registration(r2589,c158,s760).registration7096,148915 -registration(r2590,c25,s761).registration7097,148946 -registration(r2590,c25,s761).registration7097,148946 -registration(r2591,c153,s761).registration7098,148976 -registration(r2591,c153,s761).registration7098,148976 -registration(r2592,c151,s761).registration7099,149007 -registration(r2592,c151,s761).registration7099,149007 -registration(r2593,c95,s761).registration7100,149038 -registration(r2593,c95,s761).registration7100,149038 -registration(r2594,c226,s762).registration7101,149068 -registration(r2594,c226,s762).registration7101,149068 -registration(r2595,c133,s762).registration7102,149099 -registration(r2595,c133,s762).registration7102,149099 -registration(r2596,c217,s762).registration7103,149130 -registration(r2596,c217,s762).registration7103,149130 -registration(r2597,c125,s762).registration7104,149161 -registration(r2597,c125,s762).registration7104,149161 -registration(r2598,c137,s763).registration7105,149192 -registration(r2598,c137,s763).registration7105,149192 -registration(r2599,c60,s763).registration7106,149223 -registration(r2599,c60,s763).registration7106,149223 -registration(r2600,c122,s763).registration7107,149253 -registration(r2600,c122,s763).registration7107,149253 -registration(r2601,c159,s764).registration7108,149284 -registration(r2601,c159,s764).registration7108,149284 -registration(r2602,c20,s764).registration7109,149315 -registration(r2602,c20,s764).registration7109,149315 -registration(r2603,c233,s764).registration7110,149345 -registration(r2603,c233,s764).registration7110,149345 -registration(r2604,c100,s765).registration7111,149376 -registration(r2604,c100,s765).registration7111,149376 -registration(r2605,c187,s765).registration7112,149407 -registration(r2605,c187,s765).registration7112,149407 -registration(r2606,c212,s765).registration7113,149438 -registration(r2606,c212,s765).registration7113,149438 -registration(r2607,c99,s765).registration7114,149469 -registration(r2607,c99,s765).registration7114,149469 -registration(r2608,c74,s766).registration7115,149499 -registration(r2608,c74,s766).registration7115,149499 -registration(r2609,c3,s766).registration7116,149529 -registration(r2609,c3,s766).registration7116,149529 -registration(r2610,c184,s766).registration7117,149558 -registration(r2610,c184,s766).registration7117,149558 -registration(r2611,c80,s767).registration7118,149589 -registration(r2611,c80,s767).registration7118,149589 -registration(r2612,c183,s767).registration7119,149619 -registration(r2612,c183,s767).registration7119,149619 -registration(r2613,c202,s767).registration7120,149650 -registration(r2613,c202,s767).registration7120,149650 -registration(r2614,c80,s768).registration7121,149681 -registration(r2614,c80,s768).registration7121,149681 -registration(r2615,c138,s768).registration7122,149711 -registration(r2615,c138,s768).registration7122,149711 -registration(r2616,c160,s768).registration7123,149742 -registration(r2616,c160,s768).registration7123,149742 -registration(r2617,c41,s768).registration7124,149773 -registration(r2617,c41,s768).registration7124,149773 -registration(r2618,c11,s769).registration7125,149803 -registration(r2618,c11,s769).registration7125,149803 -registration(r2619,c132,s769).registration7126,149833 -registration(r2619,c132,s769).registration7126,149833 -registration(r2620,c201,s769).registration7127,149864 -registration(r2620,c201,s769).registration7127,149864 -registration(r2621,c222,s769).registration7128,149895 -registration(r2621,c222,s769).registration7128,149895 -registration(r2622,c44,s770).registration7129,149926 -registration(r2622,c44,s770).registration7129,149926 -registration(r2623,c147,s770).registration7130,149956 -registration(r2623,c147,s770).registration7130,149956 -registration(r2624,c27,s770).registration7131,149987 -registration(r2624,c27,s770).registration7131,149987 -registration(r2625,c239,s771).registration7132,150017 -registration(r2625,c239,s771).registration7132,150017 -registration(r2626,c173,s771).registration7133,150048 -registration(r2626,c173,s771).registration7133,150048 -registration(r2627,c178,s771).registration7134,150079 -registration(r2627,c178,s771).registration7134,150079 -registration(r2628,c182,s772).registration7135,150110 -registration(r2628,c182,s772).registration7135,150110 -registration(r2629,c16,s772).registration7136,150141 -registration(r2629,c16,s772).registration7136,150141 -registration(r2630,c93,s772).registration7137,150171 -registration(r2630,c93,s772).registration7137,150171 -registration(r2631,c20,s773).registration7138,150201 -registration(r2631,c20,s773).registration7138,150201 -registration(r2632,c30,s773).registration7139,150231 -registration(r2632,c30,s773).registration7139,150231 -registration(r2633,c16,s773).registration7140,150261 -registration(r2633,c16,s773).registration7140,150261 -registration(r2634,c155,s774).registration7141,150291 -registration(r2634,c155,s774).registration7141,150291 -registration(r2635,c77,s774).registration7142,150322 -registration(r2635,c77,s774).registration7142,150322 -registration(r2636,c60,s774).registration7143,150352 -registration(r2636,c60,s774).registration7143,150352 -registration(r2637,c73,s775).registration7144,150382 -registration(r2637,c73,s775).registration7144,150382 -registration(r2638,c40,s775).registration7145,150412 -registration(r2638,c40,s775).registration7145,150412 -registration(r2639,c65,s775).registration7146,150442 -registration(r2639,c65,s775).registration7146,150442 -registration(r2640,c30,s776).registration7147,150472 -registration(r2640,c30,s776).registration7147,150472 -registration(r2641,c185,s776).registration7148,150502 -registration(r2641,c185,s776).registration7148,150502 -registration(r2642,c223,s776).registration7149,150533 -registration(r2642,c223,s776).registration7149,150533 -registration(r2643,c46,s777).registration7150,150564 -registration(r2643,c46,s777).registration7150,150564 -registration(r2644,c41,s777).registration7151,150594 -registration(r2644,c41,s777).registration7151,150594 -registration(r2645,c247,s777).registration7152,150624 -registration(r2645,c247,s777).registration7152,150624 -registration(r2646,c239,s778).registration7153,150655 -registration(r2646,c239,s778).registration7153,150655 -registration(r2647,c152,s778).registration7154,150686 -registration(r2647,c152,s778).registration7154,150686 -registration(r2648,c146,s778).registration7155,150717 -registration(r2648,c146,s778).registration7155,150717 -registration(r2649,c244,s779).registration7156,150748 -registration(r2649,c244,s779).registration7156,150748 -registration(r2650,c96,s779).registration7157,150779 -registration(r2650,c96,s779).registration7157,150779 -registration(r2651,c10,s779).registration7158,150809 -registration(r2651,c10,s779).registration7158,150809 -registration(r2652,c15,s779).registration7159,150839 -registration(r2652,c15,s779).registration7159,150839 -registration(r2653,c160,s780).registration7160,150869 -registration(r2653,c160,s780).registration7160,150869 -registration(r2654,c92,s780).registration7161,150900 -registration(r2654,c92,s780).registration7161,150900 -registration(r2655,c182,s780).registration7162,150930 -registration(r2655,c182,s780).registration7162,150930 -registration(r2656,c255,s781).registration7163,150961 -registration(r2656,c255,s781).registration7163,150961 -registration(r2657,c109,s781).registration7164,150992 -registration(r2657,c109,s781).registration7164,150992 -registration(r2658,c20,s781).registration7165,151023 -registration(r2658,c20,s781).registration7165,151023 -registration(r2659,c52,s782).registration7166,151053 -registration(r2659,c52,s782).registration7166,151053 -registration(r2660,c69,s782).registration7167,151083 -registration(r2660,c69,s782).registration7167,151083 -registration(r2661,c153,s782).registration7168,151113 -registration(r2661,c153,s782).registration7168,151113 -registration(r2662,c199,s783).registration7169,151144 -registration(r2662,c199,s783).registration7169,151144 -registration(r2663,c152,s783).registration7170,151175 -registration(r2663,c152,s783).registration7170,151175 -registration(r2664,c132,s783).registration7171,151206 -registration(r2664,c132,s783).registration7171,151206 -registration(r2665,c115,s783).registration7172,151237 -registration(r2665,c115,s783).registration7172,151237 -registration(r2666,c65,s784).registration7173,151268 -registration(r2666,c65,s784).registration7173,151268 -registration(r2667,c175,s784).registration7174,151298 -registration(r2667,c175,s784).registration7174,151298 -registration(r2668,c193,s784).registration7175,151329 -registration(r2668,c193,s784).registration7175,151329 -registration(r2669,c162,s784).registration7176,151360 -registration(r2669,c162,s784).registration7176,151360 -registration(r2670,c55,s784).registration7177,151391 -registration(r2670,c55,s784).registration7177,151391 -registration(r2671,c168,s785).registration7178,151421 -registration(r2671,c168,s785).registration7178,151421 -registration(r2672,c48,s785).registration7179,151452 -registration(r2672,c48,s785).registration7179,151452 -registration(r2673,c177,s785).registration7180,151482 -registration(r2673,c177,s785).registration7180,151482 -registration(r2674,c102,s786).registration7181,151513 -registration(r2674,c102,s786).registration7181,151513 -registration(r2675,c142,s786).registration7182,151544 -registration(r2675,c142,s786).registration7182,151544 -registration(r2676,c96,s786).registration7183,151575 -registration(r2676,c96,s786).registration7183,151575 -registration(r2677,c118,s787).registration7184,151605 -registration(r2677,c118,s787).registration7184,151605 -registration(r2678,c242,s787).registration7185,151636 -registration(r2678,c242,s787).registration7185,151636 -registration(r2679,c180,s787).registration7186,151667 -registration(r2679,c180,s787).registration7186,151667 -registration(r2680,c77,s788).registration7187,151698 -registration(r2680,c77,s788).registration7187,151698 -registration(r2681,c25,s788).registration7188,151728 -registration(r2681,c25,s788).registration7188,151728 -registration(r2682,c197,s788).registration7189,151758 -registration(r2682,c197,s788).registration7189,151758 -registration(r2683,c178,s788).registration7190,151789 -registration(r2683,c178,s788).registration7190,151789 -registration(r2684,c189,s789).registration7191,151820 -registration(r2684,c189,s789).registration7191,151820 -registration(r2685,c205,s789).registration7192,151851 -registration(r2685,c205,s789).registration7192,151851 -registration(r2686,c191,s789).registration7193,151882 -registration(r2686,c191,s789).registration7193,151882 -registration(r2687,c129,s790).registration7194,151913 -registration(r2687,c129,s790).registration7194,151913 -registration(r2688,c45,s790).registration7195,151944 -registration(r2688,c45,s790).registration7195,151944 -registration(r2689,c31,s790).registration7196,151974 -registration(r2689,c31,s790).registration7196,151974 -registration(r2690,c200,s791).registration7197,152004 -registration(r2690,c200,s791).registration7197,152004 -registration(r2691,c212,s791).registration7198,152035 -registration(r2691,c212,s791).registration7198,152035 -registration(r2692,c21,s791).registration7199,152066 -registration(r2692,c21,s791).registration7199,152066 -registration(r2693,c97,s791).registration7200,152096 -registration(r2693,c97,s791).registration7200,152096 -registration(r2694,c159,s792).registration7201,152126 -registration(r2694,c159,s792).registration7201,152126 -registration(r2695,c195,s792).registration7202,152157 -registration(r2695,c195,s792).registration7202,152157 -registration(r2696,c227,s792).registration7203,152188 -registration(r2696,c227,s792).registration7203,152188 -registration(r2697,c213,s793).registration7204,152219 -registration(r2697,c213,s793).registration7204,152219 -registration(r2698,c80,s793).registration7205,152250 -registration(r2698,c80,s793).registration7205,152250 -registration(r2699,c228,s793).registration7206,152280 -registration(r2699,c228,s793).registration7206,152280 -registration(r2700,c157,s793).registration7207,152311 -registration(r2700,c157,s793).registration7207,152311 -registration(r2701,c209,s794).registration7208,152342 -registration(r2701,c209,s794).registration7208,152342 -registration(r2702,c178,s794).registration7209,152373 -registration(r2702,c178,s794).registration7209,152373 -registration(r2703,c174,s794).registration7210,152404 -registration(r2703,c174,s794).registration7210,152404 -registration(r2704,c112,s794).registration7211,152435 -registration(r2704,c112,s794).registration7211,152435 -registration(r2705,c219,s795).registration7212,152466 -registration(r2705,c219,s795).registration7212,152466 -registration(r2706,c112,s795).registration7213,152497 -registration(r2706,c112,s795).registration7213,152497 -registration(r2707,c250,s795).registration7214,152528 -registration(r2707,c250,s795).registration7214,152528 -registration(r2708,c25,s796).registration7215,152559 -registration(r2708,c25,s796).registration7215,152559 -registration(r2709,c0,s796).registration7216,152589 -registration(r2709,c0,s796).registration7216,152589 -registration(r2710,c4,s796).registration7217,152618 -registration(r2710,c4,s796).registration7217,152618 -registration(r2711,c25,s797).registration7218,152647 -registration(r2711,c25,s797).registration7218,152647 -registration(r2712,c243,s797).registration7219,152677 -registration(r2712,c243,s797).registration7219,152677 -registration(r2713,c54,s797).registration7220,152708 -registration(r2713,c54,s797).registration7220,152708 -registration(r2714,c248,s798).registration7221,152738 -registration(r2714,c248,s798).registration7221,152738 -registration(r2715,c121,s798).registration7222,152769 -registration(r2715,c121,s798).registration7222,152769 -registration(r2716,c46,s798).registration7223,152800 -registration(r2716,c46,s798).registration7223,152800 -registration(r2717,c79,s798).registration7224,152830 -registration(r2717,c79,s798).registration7224,152830 -registration(r2718,c22,s799).registration7225,152860 -registration(r2718,c22,s799).registration7225,152860 -registration(r2719,c92,s799).registration7226,152890 -registration(r2719,c92,s799).registration7226,152890 -registration(r2720,c30,s799).registration7227,152920 -registration(r2720,c30,s799).registration7227,152920 -registration(r2721,c46,s799).registration7228,152950 -registration(r2721,c46,s799).registration7228,152950 -registration(r2722,c195,s800).registration7229,152980 -registration(r2722,c195,s800).registration7229,152980 -registration(r2723,c72,s800).registration7230,153011 -registration(r2723,c72,s800).registration7230,153011 -registration(r2724,c65,s800).registration7231,153041 -registration(r2724,c65,s800).registration7231,153041 -registration(r2725,c178,s800).registration7232,153071 -registration(r2725,c178,s800).registration7232,153071 -registration(r2726,c59,s801).registration7233,153102 -registration(r2726,c59,s801).registration7233,153102 -registration(r2727,c130,s801).registration7234,153132 -registration(r2727,c130,s801).registration7234,153132 -registration(r2728,c81,s801).registration7235,153163 -registration(r2728,c81,s801).registration7235,153163 -registration(r2729,c84,s802).registration7236,153193 -registration(r2729,c84,s802).registration7236,153193 -registration(r2730,c55,s802).registration7237,153223 -registration(r2730,c55,s802).registration7237,153223 -registration(r2731,c88,s802).registration7238,153253 -registration(r2731,c88,s802).registration7238,153253 -registration(r2732,c141,s802).registration7239,153283 -registration(r2732,c141,s802).registration7239,153283 -registration(r2733,c4,s803).registration7240,153314 -registration(r2733,c4,s803).registration7240,153314 -registration(r2734,c190,s803).registration7241,153343 -registration(r2734,c190,s803).registration7241,153343 -registration(r2735,c132,s803).registration7242,153374 -registration(r2735,c132,s803).registration7242,153374 -registration(r2736,c182,s804).registration7243,153405 -registration(r2736,c182,s804).registration7243,153405 -registration(r2737,c205,s804).registration7244,153436 -registration(r2737,c205,s804).registration7244,153436 -registration(r2738,c106,s804).registration7245,153467 -registration(r2738,c106,s804).registration7245,153467 -registration(r2739,c135,s804).registration7246,153498 -registration(r2739,c135,s804).registration7246,153498 -registration(r2740,c224,s805).registration7247,153529 -registration(r2740,c224,s805).registration7247,153529 -registration(r2741,c85,s805).registration7248,153560 -registration(r2741,c85,s805).registration7248,153560 -registration(r2742,c89,s805).registration7249,153590 -registration(r2742,c89,s805).registration7249,153590 -registration(r2743,c155,s806).registration7250,153620 -registration(r2743,c155,s806).registration7250,153620 -registration(r2744,c229,s806).registration7251,153651 -registration(r2744,c229,s806).registration7251,153651 -registration(r2745,c195,s806).registration7252,153682 -registration(r2745,c195,s806).registration7252,153682 -registration(r2746,c68,s806).registration7253,153713 -registration(r2746,c68,s806).registration7253,153713 -registration(r2747,c159,s807).registration7254,153743 -registration(r2747,c159,s807).registration7254,153743 -registration(r2748,c117,s807).registration7255,153774 -registration(r2748,c117,s807).registration7255,153774 -registration(r2749,c200,s807).registration7256,153805 -registration(r2749,c200,s807).registration7256,153805 -registration(r2750,c30,s808).registration7257,153836 -registration(r2750,c30,s808).registration7257,153836 -registration(r2751,c98,s808).registration7258,153866 -registration(r2751,c98,s808).registration7258,153866 -registration(r2752,c216,s808).registration7259,153896 -registration(r2752,c216,s808).registration7259,153896 -registration(r2753,c150,s809).registration7260,153927 -registration(r2753,c150,s809).registration7260,153927 -registration(r2754,c47,s809).registration7261,153958 -registration(r2754,c47,s809).registration7261,153958 -registration(r2755,c229,s809).registration7262,153988 -registration(r2755,c229,s809).registration7262,153988 -registration(r2756,c179,s810).registration7263,154019 -registration(r2756,c179,s810).registration7263,154019 -registration(r2757,c238,s810).registration7264,154050 -registration(r2757,c238,s810).registration7264,154050 -registration(r2758,c178,s810).registration7265,154081 -registration(r2758,c178,s810).registration7265,154081 -registration(r2759,c148,s811).registration7266,154112 -registration(r2759,c148,s811).registration7266,154112 -registration(r2760,c50,s811).registration7267,154143 -registration(r2760,c50,s811).registration7267,154143 -registration(r2761,c208,s811).registration7268,154173 -registration(r2761,c208,s811).registration7268,154173 -registration(r2762,c107,s812).registration7269,154204 -registration(r2762,c107,s812).registration7269,154204 -registration(r2763,c29,s812).registration7270,154235 -registration(r2763,c29,s812).registration7270,154235 -registration(r2764,c149,s812).registration7271,154265 -registration(r2764,c149,s812).registration7271,154265 -registration(r2765,c218,s813).registration7272,154296 -registration(r2765,c218,s813).registration7272,154296 -registration(r2766,c88,s813).registration7273,154327 -registration(r2766,c88,s813).registration7273,154327 -registration(r2767,c180,s813).registration7274,154357 -registration(r2767,c180,s813).registration7274,154357 -registration(r2768,c98,s814).registration7275,154388 -registration(r2768,c98,s814).registration7275,154388 -registration(r2769,c193,s814).registration7276,154418 -registration(r2769,c193,s814).registration7276,154418 -registration(r2770,c174,s814).registration7277,154449 -registration(r2770,c174,s814).registration7277,154449 -registration(r2771,c22,s815).registration7278,154480 -registration(r2771,c22,s815).registration7278,154480 -registration(r2772,c209,s815).registration7279,154510 -registration(r2772,c209,s815).registration7279,154510 -registration(r2773,c156,s815).registration7280,154541 -registration(r2773,c156,s815).registration7280,154541 -registration(r2774,c131,s816).registration7281,154572 -registration(r2774,c131,s816).registration7281,154572 -registration(r2775,c175,s816).registration7282,154603 -registration(r2775,c175,s816).registration7282,154603 -registration(r2776,c66,s816).registration7283,154634 -registration(r2776,c66,s816).registration7283,154634 -registration(r2777,c186,s817).registration7284,154664 -registration(r2777,c186,s817).registration7284,154664 -registration(r2778,c203,s817).registration7285,154695 -registration(r2778,c203,s817).registration7285,154695 -registration(r2779,c189,s817).registration7286,154726 -registration(r2779,c189,s817).registration7286,154726 -registration(r2780,c141,s817).registration7287,154757 -registration(r2780,c141,s817).registration7287,154757 -registration(r2781,c245,s818).registration7288,154788 -registration(r2781,c245,s818).registration7288,154788 -registration(r2782,c33,s818).registration7289,154819 -registration(r2782,c33,s818).registration7289,154819 -registration(r2783,c36,s818).registration7290,154849 -registration(r2783,c36,s818).registration7290,154849 -registration(r2784,c254,s819).registration7291,154879 -registration(r2784,c254,s819).registration7291,154879 -registration(r2785,c7,s819).registration7292,154910 -registration(r2785,c7,s819).registration7292,154910 -registration(r2786,c22,s819).registration7293,154939 -registration(r2786,c22,s819).registration7293,154939 -registration(r2787,c120,s820).registration7294,154969 -registration(r2787,c120,s820).registration7294,154969 -registration(r2788,c98,s820).registration7295,155000 -registration(r2788,c98,s820).registration7295,155000 -registration(r2789,c3,s820).registration7296,155030 -registration(r2789,c3,s820).registration7296,155030 -registration(r2790,c25,s821).registration7297,155059 -registration(r2790,c25,s821).registration7297,155059 -registration(r2791,c134,s821).registration7298,155089 -registration(r2791,c134,s821).registration7298,155089 -registration(r2792,c108,s821).registration7299,155120 -registration(r2792,c108,s821).registration7299,155120 -registration(r2793,c218,s821).registration7300,155151 -registration(r2793,c218,s821).registration7300,155151 -registration(r2794,c196,s822).registration7301,155182 -registration(r2794,c196,s822).registration7301,155182 -registration(r2795,c29,s822).registration7302,155213 -registration(r2795,c29,s822).registration7302,155213 -registration(r2796,c39,s822).registration7303,155243 -registration(r2796,c39,s822).registration7303,155243 -registration(r2797,c242,s823).registration7304,155273 -registration(r2797,c242,s823).registration7304,155273 -registration(r2798,c14,s823).registration7305,155304 -registration(r2798,c14,s823).registration7305,155304 -registration(r2799,c98,s823).registration7306,155334 -registration(r2799,c98,s823).registration7306,155334 -registration(r2800,c87,s824).registration7307,155364 -registration(r2800,c87,s824).registration7307,155364 -registration(r2801,c25,s824).registration7308,155394 -registration(r2801,c25,s824).registration7308,155394 -registration(r2802,c193,s824).registration7309,155424 -registration(r2802,c193,s824).registration7309,155424 -registration(r2803,c122,s824).registration7310,155455 -registration(r2803,c122,s824).registration7310,155455 -registration(r2804,c14,s825).registration7311,155486 -registration(r2804,c14,s825).registration7311,155486 -registration(r2805,c144,s825).registration7312,155516 -registration(r2805,c144,s825).registration7312,155516 -registration(r2806,c98,s825).registration7313,155547 -registration(r2806,c98,s825).registration7313,155547 -registration(r2807,c197,s825).registration7314,155577 -registration(r2807,c197,s825).registration7314,155577 -registration(r2808,c102,s826).registration7315,155608 -registration(r2808,c102,s826).registration7315,155608 -registration(r2809,c188,s826).registration7316,155639 -registration(r2809,c188,s826).registration7316,155639 -registration(r2810,c148,s826).registration7317,155670 -registration(r2810,c148,s826).registration7317,155670 -registration(r2811,c0,s827).registration7318,155701 -registration(r2811,c0,s827).registration7318,155701 -registration(r2812,c149,s827).registration7319,155730 -registration(r2812,c149,s827).registration7319,155730 -registration(r2813,c29,s827).registration7320,155761 -registration(r2813,c29,s827).registration7320,155761 -registration(r2814,c58,s828).registration7321,155791 -registration(r2814,c58,s828).registration7321,155791 -registration(r2815,c23,s828).registration7322,155821 -registration(r2815,c23,s828).registration7322,155821 -registration(r2816,c170,s828).registration7323,155851 -registration(r2816,c170,s828).registration7323,155851 -registration(r2817,c10,s828).registration7324,155882 -registration(r2817,c10,s828).registration7324,155882 -registration(r2818,c115,s829).registration7325,155912 -registration(r2818,c115,s829).registration7325,155912 -registration(r2819,c2,s829).registration7326,155943 -registration(r2819,c2,s829).registration7326,155943 -registration(r2820,c85,s829).registration7327,155972 -registration(r2820,c85,s829).registration7327,155972 -registration(r2821,c23,s829).registration7328,156002 -registration(r2821,c23,s829).registration7328,156002 -registration(r2822,c209,s830).registration7329,156032 -registration(r2822,c209,s830).registration7329,156032 -registration(r2823,c148,s830).registration7330,156063 -registration(r2823,c148,s830).registration7330,156063 -registration(r2824,c215,s830).registration7331,156094 -registration(r2824,c215,s830).registration7331,156094 -registration(r2825,c56,s830).registration7332,156125 -registration(r2825,c56,s830).registration7332,156125 -registration(r2826,c66,s831).registration7333,156155 -registration(r2826,c66,s831).registration7333,156155 -registration(r2827,c45,s831).registration7334,156185 -registration(r2827,c45,s831).registration7334,156185 -registration(r2828,c253,s831).registration7335,156215 -registration(r2828,c253,s831).registration7335,156215 -registration(r2829,c146,s832).registration7336,156246 -registration(r2829,c146,s832).registration7336,156246 -registration(r2830,c40,s832).registration7337,156277 -registration(r2830,c40,s832).registration7337,156277 -registration(r2831,c44,s832).registration7338,156307 -registration(r2831,c44,s832).registration7338,156307 -registration(r2832,c72,s833).registration7339,156337 -registration(r2832,c72,s833).registration7339,156337 -registration(r2833,c132,s833).registration7340,156367 -registration(r2833,c132,s833).registration7340,156367 -registration(r2834,c22,s833).registration7341,156398 -registration(r2834,c22,s833).registration7341,156398 -registration(r2835,c193,s834).registration7342,156428 -registration(r2835,c193,s834).registration7342,156428 -registration(r2836,c147,s834).registration7343,156459 -registration(r2836,c147,s834).registration7343,156459 -registration(r2837,c166,s834).registration7344,156490 -registration(r2837,c166,s834).registration7344,156490 -registration(r2838,c169,s834).registration7345,156521 -registration(r2838,c169,s834).registration7345,156521 -registration(r2839,c206,s835).registration7346,156552 -registration(r2839,c206,s835).registration7346,156552 -registration(r2840,c210,s835).registration7347,156583 -registration(r2840,c210,s835).registration7347,156583 -registration(r2841,c194,s835).registration7348,156614 -registration(r2841,c194,s835).registration7348,156614 -registration(r2842,c89,s836).registration7349,156645 -registration(r2842,c89,s836).registration7349,156645 -registration(r2843,c188,s836).registration7350,156675 -registration(r2843,c188,s836).registration7350,156675 -registration(r2844,c131,s836).registration7351,156706 -registration(r2844,c131,s836).registration7351,156706 -registration(r2845,c198,s837).registration7352,156737 -registration(r2845,c198,s837).registration7352,156737 -registration(r2846,c171,s837).registration7353,156768 -registration(r2846,c171,s837).registration7353,156768 -registration(r2847,c242,s837).registration7354,156799 -registration(r2847,c242,s837).registration7354,156799 -registration(r2848,c132,s838).registration7355,156830 -registration(r2848,c132,s838).registration7355,156830 -registration(r2849,c151,s838).registration7356,156861 -registration(r2849,c151,s838).registration7356,156861 -registration(r2850,c194,s838).registration7357,156892 -registration(r2850,c194,s838).registration7357,156892 -registration(r2851,c83,s838).registration7358,156923 -registration(r2851,c83,s838).registration7358,156923 -registration(r2852,c156,s838).registration7359,156953 -registration(r2852,c156,s838).registration7359,156953 -registration(r2853,c107,s839).registration7360,156984 -registration(r2853,c107,s839).registration7360,156984 -registration(r2854,c140,s839).registration7361,157015 -registration(r2854,c140,s839).registration7361,157015 -registration(r2855,c55,s839).registration7362,157046 -registration(r2855,c55,s839).registration7362,157046 -registration(r2856,c31,s839).registration7363,157076 -registration(r2856,c31,s839).registration7363,157076 -registration(r2857,c166,s840).registration7364,157106 -registration(r2857,c166,s840).registration7364,157106 -registration(r2858,c39,s840).registration7365,157137 -registration(r2858,c39,s840).registration7365,157137 -registration(r2859,c135,s840).registration7366,157167 -registration(r2859,c135,s840).registration7366,157167 -registration(r2860,c76,s841).registration7367,157198 -registration(r2860,c76,s841).registration7367,157198 -registration(r2861,c89,s841).registration7368,157228 -registration(r2861,c89,s841).registration7368,157228 -registration(r2862,c159,s841).registration7369,157258 -registration(r2862,c159,s841).registration7369,157258 -registration(r2863,c34,s841).registration7370,157289 -registration(r2863,c34,s841).registration7370,157289 -registration(r2864,c36,s842).registration7371,157319 -registration(r2864,c36,s842).registration7371,157319 -registration(r2865,c9,s842).registration7372,157349 -registration(r2865,c9,s842).registration7372,157349 -registration(r2866,c233,s842).registration7373,157378 -registration(r2866,c233,s842).registration7373,157378 -registration(r2867,c87,s843).registration7374,157409 -registration(r2867,c87,s843).registration7374,157409 -registration(r2868,c103,s843).registration7375,157439 -registration(r2868,c103,s843).registration7375,157439 -registration(r2869,c130,s843).registration7376,157470 -registration(r2869,c130,s843).registration7376,157470 -registration(r2870,c154,s843).registration7377,157501 -registration(r2870,c154,s843).registration7377,157501 -registration(r2871,c67,s844).registration7378,157532 -registration(r2871,c67,s844).registration7378,157532 -registration(r2872,c50,s844).registration7379,157562 -registration(r2872,c50,s844).registration7379,157562 -registration(r2873,c53,s844).registration7380,157592 -registration(r2873,c53,s844).registration7380,157592 -registration(r2874,c108,s845).registration7381,157622 -registration(r2874,c108,s845).registration7381,157622 -registration(r2875,c220,s845).registration7382,157653 -registration(r2875,c220,s845).registration7382,157653 -registration(r2876,c222,s845).registration7383,157684 -registration(r2876,c222,s845).registration7383,157684 -registration(r2877,c6,s846).registration7384,157715 -registration(r2877,c6,s846).registration7384,157715 -registration(r2878,c211,s846).registration7385,157744 -registration(r2878,c211,s846).registration7385,157744 -registration(r2879,c247,s846).registration7386,157775 -registration(r2879,c247,s846).registration7386,157775 -registration(r2880,c32,s846).registration7387,157806 -registration(r2880,c32,s846).registration7387,157806 -registration(r2881,c159,s847).registration7388,157836 -registration(r2881,c159,s847).registration7388,157836 -registration(r2882,c197,s847).registration7389,157867 -registration(r2882,c197,s847).registration7389,157867 -registration(r2883,c100,s847).registration7390,157898 -registration(r2883,c100,s847).registration7390,157898 -registration(r2884,c111,s848).registration7391,157929 -registration(r2884,c111,s848).registration7391,157929 -registration(r2885,c170,s848).registration7392,157960 -registration(r2885,c170,s848).registration7392,157960 -registration(r2886,c187,s848).registration7393,157991 -registration(r2886,c187,s848).registration7393,157991 -registration(r2887,c32,s848).registration7394,158022 -registration(r2887,c32,s848).registration7394,158022 -registration(r2888,c237,s849).registration7395,158052 -registration(r2888,c237,s849).registration7395,158052 -registration(r2889,c241,s849).registration7396,158083 -registration(r2889,c241,s849).registration7396,158083 -registration(r2890,c73,s849).registration7397,158114 -registration(r2890,c73,s849).registration7397,158114 -registration(r2891,c123,s850).registration7398,158144 -registration(r2891,c123,s850).registration7398,158144 -registration(r2892,c187,s850).registration7399,158175 -registration(r2892,c187,s850).registration7399,158175 -registration(r2893,c229,s850).registration7400,158206 -registration(r2893,c229,s850).registration7400,158206 -registration(r2894,c193,s850).registration7401,158237 -registration(r2894,c193,s850).registration7401,158237 -registration(r2895,c24,s851).registration7402,158268 -registration(r2895,c24,s851).registration7402,158268 -registration(r2896,c115,s851).registration7403,158298 -registration(r2896,c115,s851).registration7403,158298 -registration(r2897,c69,s851).registration7404,158329 -registration(r2897,c69,s851).registration7404,158329 -registration(r2898,c71,s851).registration7405,158359 -registration(r2898,c71,s851).registration7405,158359 -registration(r2899,c31,s852).registration7406,158389 -registration(r2899,c31,s852).registration7406,158389 -registration(r2900,c101,s852).registration7407,158419 -registration(r2900,c101,s852).registration7407,158419 -registration(r2901,c141,s852).registration7408,158450 -registration(r2901,c141,s852).registration7408,158450 -registration(r2902,c242,s852).registration7409,158481 -registration(r2902,c242,s852).registration7409,158481 -registration(r2903,c128,s853).registration7410,158512 -registration(r2903,c128,s853).registration7410,158512 -registration(r2904,c20,s853).registration7411,158543 -registration(r2904,c20,s853).registration7411,158543 -registration(r2905,c98,s853).registration7412,158573 -registration(r2905,c98,s853).registration7412,158573 -registration(r2906,c207,s853).registration7413,158603 -registration(r2906,c207,s853).registration7413,158603 -registration(r2907,c45,s854).registration7414,158634 -registration(r2907,c45,s854).registration7414,158634 -registration(r2908,c240,s854).registration7415,158664 -registration(r2908,c240,s854).registration7415,158664 -registration(r2909,c186,s854).registration7416,158695 -registration(r2909,c186,s854).registration7416,158695 -registration(r2910,c58,s854).registration7417,158726 -registration(r2910,c58,s854).registration7417,158726 -registration(r2911,c83,s855).registration7418,158756 -registration(r2911,c83,s855).registration7418,158756 -registration(r2912,c182,s855).registration7419,158786 -registration(r2912,c182,s855).registration7419,158786 -registration(r2913,c251,s855).registration7420,158817 -registration(r2913,c251,s855).registration7420,158817 -registration(r2914,c35,s856).registration7421,158848 -registration(r2914,c35,s856).registration7421,158848 -registration(r2915,c251,s856).registration7422,158878 -registration(r2915,c251,s856).registration7422,158878 -registration(r2916,c8,s856).registration7423,158909 -registration(r2916,c8,s856).registration7423,158909 -registration(r2917,c39,s857).registration7424,158938 -registration(r2917,c39,s857).registration7424,158938 -registration(r2918,c220,s857).registration7425,158968 -registration(r2918,c220,s857).registration7425,158968 -registration(r2919,c124,s857).registration7426,158999 -registration(r2919,c124,s857).registration7426,158999 -registration(r2920,c9,s858).registration7427,159030 -registration(r2920,c9,s858).registration7427,159030 -registration(r2921,c5,s858).registration7428,159059 -registration(r2921,c5,s858).registration7428,159059 -registration(r2922,c109,s858).registration7429,159088 -registration(r2922,c109,s858).registration7429,159088 -registration(r2923,c128,s859).registration7430,159119 -registration(r2923,c128,s859).registration7430,159119 -registration(r2924,c93,s859).registration7431,159150 -registration(r2924,c93,s859).registration7431,159150 -registration(r2925,c177,s859).registration7432,159180 -registration(r2925,c177,s859).registration7432,159180 -registration(r2926,c221,s859).registration7433,159211 -registration(r2926,c221,s859).registration7433,159211 -registration(r2927,c63,s860).registration7434,159242 -registration(r2927,c63,s860).registration7434,159242 -registration(r2928,c230,s860).registration7435,159272 -registration(r2928,c230,s860).registration7435,159272 -registration(r2929,c252,s860).registration7436,159303 -registration(r2929,c252,s860).registration7436,159303 -registration(r2930,c79,s860).registration7437,159334 -registration(r2930,c79,s860).registration7437,159334 -registration(r2931,c47,s861).registration7438,159364 -registration(r2931,c47,s861).registration7438,159364 -registration(r2932,c35,s861).registration7439,159394 -registration(r2932,c35,s861).registration7439,159394 -registration(r2933,c137,s861).registration7440,159424 -registration(r2933,c137,s861).registration7440,159424 -registration(r2934,c72,s861).registration7441,159455 -registration(r2934,c72,s861).registration7441,159455 -registration(r2935,c40,s862).registration7442,159485 -registration(r2935,c40,s862).registration7442,159485 -registration(r2936,c221,s862).registration7443,159515 -registration(r2936,c221,s862).registration7443,159515 -registration(r2937,c195,s862).registration7444,159546 -registration(r2937,c195,s862).registration7444,159546 -registration(r2938,c64,s863).registration7445,159577 -registration(r2938,c64,s863).registration7445,159577 -registration(r2939,c151,s863).registration7446,159607 -registration(r2939,c151,s863).registration7446,159607 -registration(r2940,c250,s863).registration7447,159638 -registration(r2940,c250,s863).registration7447,159638 -registration(r2941,c102,s864).registration7448,159669 -registration(r2941,c102,s864).registration7448,159669 -registration(r2942,c68,s864).registration7449,159700 -registration(r2942,c68,s864).registration7449,159700 -registration(r2943,c34,s864).registration7450,159730 -registration(r2943,c34,s864).registration7450,159730 -registration(r2944,c210,s865).registration7451,159760 -registration(r2944,c210,s865).registration7451,159760 -registration(r2945,c54,s865).registration7452,159791 -registration(r2945,c54,s865).registration7452,159791 -registration(r2946,c205,s865).registration7453,159821 -registration(r2946,c205,s865).registration7453,159821 -registration(r2947,c180,s866).registration7454,159852 -registration(r2947,c180,s866).registration7454,159852 -registration(r2948,c171,s866).registration7455,159883 -registration(r2948,c171,s866).registration7455,159883 -registration(r2949,c239,s866).registration7456,159914 -registration(r2949,c239,s866).registration7456,159914 -registration(r2950,c31,s867).registration7457,159945 -registration(r2950,c31,s867).registration7457,159945 -registration(r2951,c0,s867).registration7458,159975 -registration(r2951,c0,s867).registration7458,159975 -registration(r2952,c133,s867).registration7459,160004 -registration(r2952,c133,s867).registration7459,160004 -registration(r2953,c8,s868).registration7460,160035 -registration(r2953,c8,s868).registration7460,160035 -registration(r2954,c103,s868).registration7461,160064 -registration(r2954,c103,s868).registration7461,160064 -registration(r2955,c37,s868).registration7462,160095 -registration(r2955,c37,s868).registration7462,160095 -registration(r2956,c222,s869).registration7463,160125 -registration(r2956,c222,s869).registration7463,160125 -registration(r2957,c13,s869).registration7464,160156 -registration(r2957,c13,s869).registration7464,160156 -registration(r2958,c77,s869).registration7465,160186 -registration(r2958,c77,s869).registration7465,160186 -registration(r2959,c234,s870).registration7466,160216 -registration(r2959,c234,s870).registration7466,160216 -registration(r2960,c63,s870).registration7467,160247 -registration(r2960,c63,s870).registration7467,160247 -registration(r2961,c155,s870).registration7468,160277 -registration(r2961,c155,s870).registration7468,160277 -registration(r2962,c38,s870).registration7469,160308 -registration(r2962,c38,s870).registration7469,160308 -registration(r2963,c223,s871).registration7470,160338 -registration(r2963,c223,s871).registration7470,160338 -registration(r2964,c93,s871).registration7471,160369 -registration(r2964,c93,s871).registration7471,160369 -registration(r2965,c12,s871).registration7472,160399 -registration(r2965,c12,s871).registration7472,160399 -registration(r2966,c192,s872).registration7473,160429 -registration(r2966,c192,s872).registration7473,160429 -registration(r2967,c60,s872).registration7474,160460 -registration(r2967,c60,s872).registration7474,160460 -registration(r2968,c196,s872).registration7475,160490 -registration(r2968,c196,s872).registration7475,160490 -registration(r2969,c226,s873).registration7476,160521 -registration(r2969,c226,s873).registration7476,160521 -registration(r2970,c157,s873).registration7477,160552 -registration(r2970,c157,s873).registration7477,160552 -registration(r2971,c189,s873).registration7478,160583 -registration(r2971,c189,s873).registration7478,160583 -registration(r2972,c229,s873).registration7479,160614 -registration(r2972,c229,s873).registration7479,160614 -registration(r2973,c135,s874).registration7480,160645 -registration(r2973,c135,s874).registration7480,160645 -registration(r2974,c9,s874).registration7481,160676 -registration(r2974,c9,s874).registration7481,160676 -registration(r2975,c148,s874).registration7482,160705 -registration(r2975,c148,s874).registration7482,160705 -registration(r2976,c160,s875).registration7483,160736 -registration(r2976,c160,s875).registration7483,160736 -registration(r2977,c139,s875).registration7484,160767 -registration(r2977,c139,s875).registration7484,160767 -registration(r2978,c193,s875).registration7485,160798 -registration(r2978,c193,s875).registration7485,160798 -registration(r2979,c0,s876).registration7486,160829 -registration(r2979,c0,s876).registration7486,160829 -registration(r2980,c147,s876).registration7487,160858 -registration(r2980,c147,s876).registration7487,160858 -registration(r2981,c130,s876).registration7488,160889 -registration(r2981,c130,s876).registration7488,160889 -registration(r2982,c209,s876).registration7489,160920 -registration(r2982,c209,s876).registration7489,160920 -registration(r2983,c132,s877).registration7490,160951 -registration(r2983,c132,s877).registration7490,160951 -registration(r2984,c220,s877).registration7491,160982 -registration(r2984,c220,s877).registration7491,160982 -registration(r2985,c242,s877).registration7492,161013 -registration(r2985,c242,s877).registration7492,161013 -registration(r2986,c46,s878).registration7493,161044 -registration(r2986,c46,s878).registration7493,161044 -registration(r2987,c28,s878).registration7494,161074 -registration(r2987,c28,s878).registration7494,161074 -registration(r2988,c60,s878).registration7495,161104 -registration(r2988,c60,s878).registration7495,161104 -registration(r2989,c216,s879).registration7496,161134 -registration(r2989,c216,s879).registration7496,161134 -registration(r2990,c36,s879).registration7497,161165 -registration(r2990,c36,s879).registration7497,161165 -registration(r2991,c31,s879).registration7498,161195 -registration(r2991,c31,s879).registration7498,161195 -registration(r2992,c167,s880).registration7499,161225 -registration(r2992,c167,s880).registration7499,161225 -registration(r2993,c199,s880).registration7500,161256 -registration(r2993,c199,s880).registration7500,161256 -registration(r2994,c126,s880).registration7501,161287 -registration(r2994,c126,s880).registration7501,161287 -registration(r2995,c31,s881).registration7502,161318 -registration(r2995,c31,s881).registration7502,161318 -registration(r2996,c114,s881).registration7503,161348 -registration(r2996,c114,s881).registration7503,161348 -registration(r2997,c111,s881).registration7504,161379 -registration(r2997,c111,s881).registration7504,161379 -registration(r2998,c232,s881).registration7505,161410 -registration(r2998,c232,s881).registration7505,161410 -registration(r2999,c169,s882).registration7506,161441 -registration(r2999,c169,s882).registration7506,161441 -registration(r3000,c106,s882).registration7507,161472 -registration(r3000,c106,s882).registration7507,161472 -registration(r3001,c150,s882).registration7508,161503 -registration(r3001,c150,s882).registration7508,161503 -registration(r3002,c27,s883).registration7509,161534 -registration(r3002,c27,s883).registration7509,161534 -registration(r3003,c87,s883).registration7510,161564 -registration(r3003,c87,s883).registration7510,161564 -registration(r3004,c192,s883).registration7511,161594 -registration(r3004,c192,s883).registration7511,161594 -registration(r3005,c238,s884).registration7512,161625 -registration(r3005,c238,s884).registration7512,161625 -registration(r3006,c144,s884).registration7513,161656 -registration(r3006,c144,s884).registration7513,161656 -registration(r3007,c47,s884).registration7514,161687 -registration(r3007,c47,s884).registration7514,161687 -registration(r3008,c8,s885).registration7515,161717 -registration(r3008,c8,s885).registration7515,161717 -registration(r3009,c123,s885).registration7516,161746 -registration(r3009,c123,s885).registration7516,161746 -registration(r3010,c176,s885).registration7517,161777 -registration(r3010,c176,s885).registration7517,161777 -registration(r3011,c87,s886).registration7518,161808 -registration(r3011,c87,s886).registration7518,161808 -registration(r3012,c142,s886).registration7519,161838 -registration(r3012,c142,s886).registration7519,161838 -registration(r3013,c230,s886).registration7520,161869 -registration(r3013,c230,s886).registration7520,161869 -registration(r3014,c6,s887).registration7521,161900 -registration(r3014,c6,s887).registration7521,161900 -registration(r3015,c175,s887).registration7522,161929 -registration(r3015,c175,s887).registration7522,161929 -registration(r3016,c172,s887).registration7523,161960 -registration(r3016,c172,s887).registration7523,161960 -registration(r3017,c150,s887).registration7524,161991 -registration(r3017,c150,s887).registration7524,161991 -registration(r3018,c199,s887).registration7525,162022 -registration(r3018,c199,s887).registration7525,162022 -registration(r3019,c2,s888).registration7526,162053 -registration(r3019,c2,s888).registration7526,162053 -registration(r3020,c180,s888).registration7527,162082 -registration(r3020,c180,s888).registration7527,162082 -registration(r3021,c65,s888).registration7528,162113 -registration(r3021,c65,s888).registration7528,162113 -registration(r3022,c151,s889).registration7529,162143 -registration(r3022,c151,s889).registration7529,162143 -registration(r3023,c142,s889).registration7530,162174 -registration(r3023,c142,s889).registration7530,162174 -registration(r3024,c67,s889).registration7531,162205 -registration(r3024,c67,s889).registration7531,162205 -registration(r3025,c213,s890).registration7532,162235 -registration(r3025,c213,s890).registration7532,162235 -registration(r3026,c187,s890).registration7533,162266 -registration(r3026,c187,s890).registration7533,162266 -registration(r3027,c211,s890).registration7534,162297 -registration(r3027,c211,s890).registration7534,162297 -registration(r3028,c79,s891).registration7535,162328 -registration(r3028,c79,s891).registration7535,162328 -registration(r3029,c20,s891).registration7536,162358 -registration(r3029,c20,s891).registration7536,162358 -registration(r3030,c139,s891).registration7537,162388 -registration(r3030,c139,s891).registration7537,162388 -registration(r3031,c24,s892).registration7538,162419 -registration(r3031,c24,s892).registration7538,162419 -registration(r3032,c157,s892).registration7539,162449 -registration(r3032,c157,s892).registration7539,162449 -registration(r3033,c169,s892).registration7540,162480 -registration(r3033,c169,s892).registration7540,162480 -registration(r3034,c87,s893).registration7541,162511 -registration(r3034,c87,s893).registration7541,162511 -registration(r3035,c2,s893).registration7542,162541 -registration(r3035,c2,s893).registration7542,162541 -registration(r3036,c192,s893).registration7543,162570 -registration(r3036,c192,s893).registration7543,162570 -registration(r3037,c135,s893).registration7544,162601 -registration(r3037,c135,s893).registration7544,162601 -registration(r3038,c241,s894).registration7545,162632 -registration(r3038,c241,s894).registration7545,162632 -registration(r3039,c211,s894).registration7546,162663 -registration(r3039,c211,s894).registration7546,162663 -registration(r3040,c198,s894).registration7547,162694 -registration(r3040,c198,s894).registration7547,162694 -registration(r3041,c95,s895).registration7548,162725 -registration(r3041,c95,s895).registration7548,162725 -registration(r3042,c79,s895).registration7549,162755 -registration(r3042,c79,s895).registration7549,162755 -registration(r3043,c232,s895).registration7550,162785 -registration(r3043,c232,s895).registration7550,162785 -registration(r3044,c189,s896).registration7551,162816 -registration(r3044,c189,s896).registration7551,162816 -registration(r3045,c167,s896).registration7552,162847 -registration(r3045,c167,s896).registration7552,162847 -registration(r3046,c161,s896).registration7553,162878 -registration(r3046,c161,s896).registration7553,162878 -registration(r3047,c107,s896).registration7554,162909 -registration(r3047,c107,s896).registration7554,162909 -registration(r3048,c54,s897).registration7555,162940 -registration(r3048,c54,s897).registration7555,162940 -registration(r3049,c247,s897).registration7556,162970 -registration(r3049,c247,s897).registration7556,162970 -registration(r3050,c168,s897).registration7557,163001 -registration(r3050,c168,s897).registration7557,163001 -registration(r3051,c69,s897).registration7558,163032 -registration(r3051,c69,s897).registration7558,163032 -registration(r3052,c75,s898).registration7559,163062 -registration(r3052,c75,s898).registration7559,163062 -registration(r3053,c102,s898).registration7560,163092 -registration(r3053,c102,s898).registration7560,163092 -registration(r3054,c232,s898).registration7561,163123 -registration(r3054,c232,s898).registration7561,163123 -registration(r3055,c168,s899).registration7562,163154 -registration(r3055,c168,s899).registration7562,163154 -registration(r3056,c145,s899).registration7563,163185 -registration(r3056,c145,s899).registration7563,163185 -registration(r3057,c135,s899).registration7564,163216 -registration(r3057,c135,s899).registration7564,163216 -registration(r3058,c130,s899).registration7565,163247 -registration(r3058,c130,s899).registration7565,163247 -registration(r3059,c246,s900).registration7566,163278 -registration(r3059,c246,s900).registration7566,163278 -registration(r3060,c68,s900).registration7567,163309 -registration(r3060,c68,s900).registration7567,163309 -registration(r3061,c0,s900).registration7568,163339 -registration(r3061,c0,s900).registration7568,163339 -registration(r3062,c232,s901).registration7569,163368 -registration(r3062,c232,s901).registration7569,163368 -registration(r3063,c66,s901).registration7570,163399 -registration(r3063,c66,s901).registration7570,163399 -registration(r3064,c99,s901).registration7571,163429 -registration(r3064,c99,s901).registration7571,163429 -registration(r3065,c5,s902).registration7572,163459 -registration(r3065,c5,s902).registration7572,163459 -registration(r3066,c201,s902).registration7573,163488 -registration(r3066,c201,s902).registration7573,163488 -registration(r3067,c87,s902).registration7574,163519 -registration(r3067,c87,s902).registration7574,163519 -registration(r3068,c78,s903).registration7575,163549 -registration(r3068,c78,s903).registration7575,163549 -registration(r3069,c161,s903).registration7576,163579 -registration(r3069,c161,s903).registration7576,163579 -registration(r3070,c163,s903).registration7577,163610 -registration(r3070,c163,s903).registration7577,163610 -registration(r3071,c237,s904).registration7578,163641 -registration(r3071,c237,s904).registration7578,163641 -registration(r3072,c195,s904).registration7579,163672 -registration(r3072,c195,s904).registration7579,163672 -registration(r3073,c207,s904).registration7580,163703 -registration(r3073,c207,s904).registration7580,163703 -registration(r3074,c118,s904).registration7581,163734 -registration(r3074,c118,s904).registration7581,163734 -registration(r3075,c35,s905).registration7582,163765 -registration(r3075,c35,s905).registration7582,163765 -registration(r3076,c182,s905).registration7583,163795 -registration(r3076,c182,s905).registration7583,163795 -registration(r3077,c166,s905).registration7584,163826 -registration(r3077,c166,s905).registration7584,163826 -registration(r3078,c156,s905).registration7585,163857 -registration(r3078,c156,s905).registration7585,163857 -registration(r3079,c235,s906).registration7586,163888 -registration(r3079,c235,s906).registration7586,163888 -registration(r3080,c18,s906).registration7587,163919 -registration(r3080,c18,s906).registration7587,163919 -registration(r3081,c243,s906).registration7588,163949 -registration(r3081,c243,s906).registration7588,163949 -registration(r3082,c54,s907).registration7589,163980 -registration(r3082,c54,s907).registration7589,163980 -registration(r3083,c227,s907).registration7590,164010 -registration(r3083,c227,s907).registration7590,164010 -registration(r3084,c161,s907).registration7591,164041 -registration(r3084,c161,s907).registration7591,164041 -registration(r3085,c233,s907).registration7592,164072 -registration(r3085,c233,s907).registration7592,164072 -registration(r3086,c120,s908).registration7593,164103 -registration(r3086,c120,s908).registration7593,164103 -registration(r3087,c225,s908).registration7594,164134 -registration(r3087,c225,s908).registration7594,164134 -registration(r3088,c105,s908).registration7595,164165 -registration(r3088,c105,s908).registration7595,164165 -registration(r3089,c12,s909).registration7596,164196 -registration(r3089,c12,s909).registration7596,164196 -registration(r3090,c38,s909).registration7597,164226 -registration(r3090,c38,s909).registration7597,164226 -registration(r3091,c107,s909).registration7598,164256 -registration(r3091,c107,s909).registration7598,164256 -registration(r3092,c57,s910).registration7599,164287 -registration(r3092,c57,s910).registration7599,164287 -registration(r3093,c139,s910).registration7600,164317 -registration(r3093,c139,s910).registration7600,164317 -registration(r3094,c23,s910).registration7601,164348 -registration(r3094,c23,s910).registration7601,164348 -registration(r3095,c205,s911).registration7602,164378 -registration(r3095,c205,s911).registration7602,164378 -registration(r3096,c88,s911).registration7603,164409 -registration(r3096,c88,s911).registration7603,164409 -registration(r3097,c84,s911).registration7604,164439 -registration(r3097,c84,s911).registration7604,164439 -registration(r3098,c63,s912).registration7605,164469 -registration(r3098,c63,s912).registration7605,164469 -registration(r3099,c242,s912).registration7606,164499 -registration(r3099,c242,s912).registration7606,164499 -registration(r3100,c233,s912).registration7607,164530 -registration(r3100,c233,s912).registration7607,164530 -registration(r3101,c32,s913).registration7608,164561 -registration(r3101,c32,s913).registration7608,164561 -registration(r3102,c163,s913).registration7609,164591 -registration(r3102,c163,s913).registration7609,164591 -registration(r3103,c142,s913).registration7610,164622 -registration(r3103,c142,s913).registration7610,164622 -registration(r3104,c248,s914).registration7611,164653 -registration(r3104,c248,s914).registration7611,164653 -registration(r3105,c184,s914).registration7612,164684 -registration(r3105,c184,s914).registration7612,164684 -registration(r3106,c107,s914).registration7613,164715 -registration(r3106,c107,s914).registration7613,164715 -registration(r3107,c239,s915).registration7614,164746 -registration(r3107,c239,s915).registration7614,164746 -registration(r3108,c110,s915).registration7615,164777 -registration(r3108,c110,s915).registration7615,164777 -registration(r3109,c166,s915).registration7616,164808 -registration(r3109,c166,s915).registration7616,164808 -registration(r3110,c145,s916).registration7617,164839 -registration(r3110,c145,s916).registration7617,164839 -registration(r3111,c147,s916).registration7618,164870 -registration(r3111,c147,s916).registration7618,164870 -registration(r3112,c243,s916).registration7619,164901 -registration(r3112,c243,s916).registration7619,164901 -registration(r3113,c161,s917).registration7620,164932 -registration(r3113,c161,s917).registration7620,164932 -registration(r3114,c118,s917).registration7621,164963 -registration(r3114,c118,s917).registration7621,164963 -registration(r3115,c156,s917).registration7622,164994 -registration(r3115,c156,s917).registration7622,164994 -registration(r3116,c147,s918).registration7623,165025 -registration(r3116,c147,s918).registration7623,165025 -registration(r3117,c53,s918).registration7624,165056 -registration(r3117,c53,s918).registration7624,165056 -registration(r3118,c74,s918).registration7625,165086 -registration(r3118,c74,s918).registration7625,165086 -registration(r3119,c55,s919).registration7626,165116 -registration(r3119,c55,s919).registration7626,165116 -registration(r3120,c157,s919).registration7627,165146 -registration(r3120,c157,s919).registration7627,165146 -registration(r3121,c152,s919).registration7628,165177 -registration(r3121,c152,s919).registration7628,165177 -registration(r3122,c36,s920).registration7629,165208 -registration(r3122,c36,s920).registration7629,165208 -registration(r3123,c191,s920).registration7630,165238 -registration(r3123,c191,s920).registration7630,165238 -registration(r3124,c152,s920).registration7631,165269 -registration(r3124,c152,s920).registration7631,165269 -registration(r3125,c24,s920).registration7632,165300 -registration(r3125,c24,s920).registration7632,165300 -registration(r3126,c128,s921).registration7633,165330 -registration(r3126,c128,s921).registration7633,165330 -registration(r3127,c145,s921).registration7634,165361 -registration(r3127,c145,s921).registration7634,165361 -registration(r3128,c191,s921).registration7635,165392 -registration(r3128,c191,s921).registration7635,165392 -registration(r3129,c80,s922).registration7636,165423 -registration(r3129,c80,s922).registration7636,165423 -registration(r3130,c108,s922).registration7637,165453 -registration(r3130,c108,s922).registration7637,165453 -registration(r3131,c237,s922).registration7638,165484 -registration(r3131,c237,s922).registration7638,165484 -registration(r3132,c143,s923).registration7639,165515 -registration(r3132,c143,s923).registration7639,165515 -registration(r3133,c112,s923).registration7640,165546 -registration(r3133,c112,s923).registration7640,165546 -registration(r3134,c76,s923).registration7641,165577 -registration(r3134,c76,s923).registration7641,165577 -registration(r3135,c224,s924).registration7642,165607 -registration(r3135,c224,s924).registration7642,165607 -registration(r3136,c186,s924).registration7643,165638 -registration(r3136,c186,s924).registration7643,165638 -registration(r3137,c17,s924).registration7644,165669 -registration(r3137,c17,s924).registration7644,165669 -registration(r3138,c72,s925).registration7645,165699 -registration(r3138,c72,s925).registration7645,165699 -registration(r3139,c251,s925).registration7646,165729 -registration(r3139,c251,s925).registration7646,165729 -registration(r3140,c74,s925).registration7647,165760 -registration(r3140,c74,s925).registration7647,165760 -registration(r3141,c217,s925).registration7648,165790 -registration(r3141,c217,s925).registration7648,165790 -registration(r3142,c205,s926).registration7649,165821 -registration(r3142,c205,s926).registration7649,165821 -registration(r3143,c114,s926).registration7650,165852 -registration(r3143,c114,s926).registration7650,165852 -registration(r3144,c255,s926).registration7651,165883 -registration(r3144,c255,s926).registration7651,165883 -registration(r3145,c127,s927).registration7652,165914 -registration(r3145,c127,s927).registration7652,165914 -registration(r3146,c128,s927).registration7653,165945 -registration(r3146,c128,s927).registration7653,165945 -registration(r3147,c74,s927).registration7654,165976 -registration(r3147,c74,s927).registration7654,165976 -registration(r3148,c155,s928).registration7655,166006 -registration(r3148,c155,s928).registration7655,166006 -registration(r3149,c197,s928).registration7656,166037 -registration(r3149,c197,s928).registration7656,166037 -registration(r3150,c102,s928).registration7657,166068 -registration(r3150,c102,s928).registration7657,166068 -registration(r3151,c246,s929).registration7658,166099 -registration(r3151,c246,s929).registration7658,166099 -registration(r3152,c6,s929).registration7659,166130 -registration(r3152,c6,s929).registration7659,166130 -registration(r3153,c194,s929).registration7660,166159 -registration(r3153,c194,s929).registration7660,166159 -registration(r3154,c163,s930).registration7661,166190 -registration(r3154,c163,s930).registration7661,166190 -registration(r3155,c54,s930).registration7662,166221 -registration(r3155,c54,s930).registration7662,166221 -registration(r3156,c224,s930).registration7663,166251 -registration(r3156,c224,s930).registration7663,166251 -registration(r3157,c232,s930).registration7664,166282 -registration(r3157,c232,s930).registration7664,166282 -registration(r3158,c253,s930).registration7665,166313 -registration(r3158,c253,s930).registration7665,166313 -registration(r3159,c50,s931).registration7666,166344 -registration(r3159,c50,s931).registration7666,166344 -registration(r3160,c57,s931).registration7667,166374 -registration(r3160,c57,s931).registration7667,166374 -registration(r3161,c216,s931).registration7668,166404 -registration(r3161,c216,s931).registration7668,166404 -registration(r3162,c75,s931).registration7669,166435 -registration(r3162,c75,s931).registration7669,166435 -registration(r3163,c160,s932).registration7670,166465 -registration(r3163,c160,s932).registration7670,166465 -registration(r3164,c245,s932).registration7671,166496 -registration(r3164,c245,s932).registration7671,166496 -registration(r3165,c213,s932).registration7672,166527 -registration(r3165,c213,s932).registration7672,166527 -registration(r3166,c116,s932).registration7673,166558 -registration(r3166,c116,s932).registration7673,166558 -registration(r3167,c119,s932).registration7674,166589 -registration(r3167,c119,s932).registration7674,166589 -registration(r3168,c239,s933).registration7675,166620 -registration(r3168,c239,s933).registration7675,166620 -registration(r3169,c189,s933).registration7676,166651 -registration(r3169,c189,s933).registration7676,166651 -registration(r3170,c60,s933).registration7677,166682 -registration(r3170,c60,s933).registration7677,166682 -registration(r3171,c178,s934).registration7678,166712 -registration(r3171,c178,s934).registration7678,166712 -registration(r3172,c76,s934).registration7679,166743 -registration(r3172,c76,s934).registration7679,166743 -registration(r3173,c90,s934).registration7680,166773 -registration(r3173,c90,s934).registration7680,166773 -registration(r3174,c41,s935).registration7681,166803 -registration(r3174,c41,s935).registration7681,166803 -registration(r3175,c24,s935).registration7682,166833 -registration(r3175,c24,s935).registration7682,166833 -registration(r3176,c255,s935).registration7683,166863 -registration(r3176,c255,s935).registration7683,166863 -registration(r3177,c27,s935).registration7684,166894 -registration(r3177,c27,s935).registration7684,166894 -registration(r3178,c51,s936).registration7685,166924 -registration(r3178,c51,s936).registration7685,166924 -registration(r3179,c23,s936).registration7686,166954 -registration(r3179,c23,s936).registration7686,166954 -registration(r3180,c27,s936).registration7687,166984 -registration(r3180,c27,s936).registration7687,166984 -registration(r3181,c187,s937).registration7688,167014 -registration(r3181,c187,s937).registration7688,167014 -registration(r3182,c114,s937).registration7689,167045 -registration(r3182,c114,s937).registration7689,167045 -registration(r3183,c57,s937).registration7690,167076 -registration(r3183,c57,s937).registration7690,167076 -registration(r3184,c16,s938).registration7691,167106 -registration(r3184,c16,s938).registration7691,167106 -registration(r3185,c123,s938).registration7692,167136 -registration(r3185,c123,s938).registration7692,167136 -registration(r3186,c221,s938).registration7693,167167 -registration(r3186,c221,s938).registration7693,167167 -registration(r3187,c243,s938).registration7694,167198 -registration(r3187,c243,s938).registration7694,167198 -registration(r3188,c240,s939).registration7695,167229 -registration(r3188,c240,s939).registration7695,167229 -registration(r3189,c47,s939).registration7696,167260 -registration(r3189,c47,s939).registration7696,167260 -registration(r3190,c35,s939).registration7697,167290 -registration(r3190,c35,s939).registration7697,167290 -registration(r3191,c112,s940).registration7698,167320 -registration(r3191,c112,s940).registration7698,167320 -registration(r3192,c158,s940).registration7699,167351 -registration(r3192,c158,s940).registration7699,167351 -registration(r3193,c86,s940).registration7700,167382 -registration(r3193,c86,s940).registration7700,167382 -registration(r3194,c111,s941).registration7701,167412 -registration(r3194,c111,s941).registration7701,167412 -registration(r3195,c55,s941).registration7702,167443 -registration(r3195,c55,s941).registration7702,167443 -registration(r3196,c209,s941).registration7703,167473 -registration(r3196,c209,s941).registration7703,167473 -registration(r3197,c4,s941).registration7704,167504 -registration(r3197,c4,s941).registration7704,167504 -registration(r3198,c161,s942).registration7705,167533 -registration(r3198,c161,s942).registration7705,167533 -registration(r3199,c58,s942).registration7706,167564 -registration(r3199,c58,s942).registration7706,167564 -registration(r3200,c113,s942).registration7707,167594 -registration(r3200,c113,s942).registration7707,167594 -registration(r3201,c227,s943).registration7708,167625 -registration(r3201,c227,s943).registration7708,167625 -registration(r3202,c202,s943).registration7709,167656 -registration(r3202,c202,s943).registration7709,167656 -registration(r3203,c81,s943).registration7710,167687 -registration(r3203,c81,s943).registration7710,167687 -registration(r3204,c205,s944).registration7711,167717 -registration(r3204,c205,s944).registration7711,167717 -registration(r3205,c41,s944).registration7712,167748 -registration(r3205,c41,s944).registration7712,167748 -registration(r3206,c14,s944).registration7713,167778 -registration(r3206,c14,s944).registration7713,167778 -registration(r3207,c255,s945).registration7714,167808 -registration(r3207,c255,s945).registration7714,167808 -registration(r3208,c239,s945).registration7715,167839 -registration(r3208,c239,s945).registration7715,167839 -registration(r3209,c25,s945).registration7716,167870 -registration(r3209,c25,s945).registration7716,167870 -registration(r3210,c138,s946).registration7717,167900 -registration(r3210,c138,s946).registration7717,167900 -registration(r3211,c225,s946).registration7718,167931 -registration(r3211,c225,s946).registration7718,167931 -registration(r3212,c40,s946).registration7719,167962 -registration(r3212,c40,s946).registration7719,167962 -registration(r3213,c152,s947).registration7720,167992 -registration(r3213,c152,s947).registration7720,167992 -registration(r3214,c250,s947).registration7721,168023 -registration(r3214,c250,s947).registration7721,168023 -registration(r3215,c121,s947).registration7722,168054 -registration(r3215,c121,s947).registration7722,168054 -registration(r3216,c26,s947).registration7723,168085 -registration(r3216,c26,s947).registration7723,168085 -registration(r3217,c195,s948).registration7724,168115 -registration(r3217,c195,s948).registration7724,168115 -registration(r3218,c85,s948).registration7725,168146 -registration(r3218,c85,s948).registration7725,168146 -registration(r3219,c240,s948).registration7726,168176 -registration(r3219,c240,s948).registration7726,168176 -registration(r3220,c212,s949).registration7727,168207 -registration(r3220,c212,s949).registration7727,168207 -registration(r3221,c31,s949).registration7728,168238 -registration(r3221,c31,s949).registration7728,168238 -registration(r3222,c158,s949).registration7729,168268 -registration(r3222,c158,s949).registration7729,168268 -registration(r3223,c252,s949).registration7730,168299 -registration(r3223,c252,s949).registration7730,168299 -registration(r3224,c73,s950).registration7731,168330 -registration(r3224,c73,s950).registration7731,168330 -registration(r3225,c10,s950).registration7732,168360 -registration(r3225,c10,s950).registration7732,168360 -registration(r3226,c44,s950).registration7733,168390 -registration(r3226,c44,s950).registration7733,168390 -registration(r3227,c28,s950).registration7734,168420 -registration(r3227,c28,s950).registration7734,168420 -registration(r3228,c89,s951).registration7735,168450 -registration(r3228,c89,s951).registration7735,168450 -registration(r3229,c76,s951).registration7736,168480 -registration(r3229,c76,s951).registration7736,168480 -registration(r3230,c238,s951).registration7737,168510 -registration(r3230,c238,s951).registration7737,168510 -registration(r3231,c22,s951).registration7738,168541 -registration(r3231,c22,s951).registration7738,168541 -registration(r3232,c167,s952).registration7739,168571 -registration(r3232,c167,s952).registration7739,168571 -registration(r3233,c216,s952).registration7740,168602 -registration(r3233,c216,s952).registration7740,168602 -registration(r3234,c175,s952).registration7741,168633 -registration(r3234,c175,s952).registration7741,168633 -registration(r3235,c209,s953).registration7742,168664 -registration(r3235,c209,s953).registration7742,168664 -registration(r3236,c188,s953).registration7743,168695 -registration(r3236,c188,s953).registration7743,168695 -registration(r3237,c208,s953).registration7744,168726 -registration(r3237,c208,s953).registration7744,168726 -registration(r3238,c192,s953).registration7745,168757 -registration(r3238,c192,s953).registration7745,168757 -registration(r3239,c234,s954).registration7746,168788 -registration(r3239,c234,s954).registration7746,168788 -registration(r3240,c94,s954).registration7747,168819 -registration(r3240,c94,s954).registration7747,168819 -registration(r3241,c150,s954).registration7748,168849 -registration(r3241,c150,s954).registration7748,168849 -registration(r3242,c253,s954).registration7749,168880 -registration(r3242,c253,s954).registration7749,168880 -registration(r3243,c6,s955).registration7750,168911 -registration(r3243,c6,s955).registration7750,168911 -registration(r3244,c105,s955).registration7751,168940 -registration(r3244,c105,s955).registration7751,168940 -registration(r3245,c255,s955).registration7752,168971 -registration(r3245,c255,s955).registration7752,168971 -registration(r3246,c149,s955).registration7753,169002 -registration(r3246,c149,s955).registration7753,169002 -registration(r3247,c27,s956).registration7754,169033 -registration(r3247,c27,s956).registration7754,169033 -registration(r3248,c177,s956).registration7755,169063 -registration(r3248,c177,s956).registration7755,169063 -registration(r3249,c153,s956).registration7756,169094 -registration(r3249,c153,s956).registration7756,169094 -registration(r3250,c125,s957).registration7757,169125 -registration(r3250,c125,s957).registration7757,169125 -registration(r3251,c151,s957).registration7758,169156 -registration(r3251,c151,s957).registration7758,169156 -registration(r3252,c183,s957).registration7759,169187 -registration(r3252,c183,s957).registration7759,169187 -registration(r3253,c109,s957).registration7760,169218 -registration(r3253,c109,s957).registration7760,169218 -registration(r3254,c198,s958).registration7761,169249 -registration(r3254,c198,s958).registration7761,169249 -registration(r3255,c192,s958).registration7762,169280 -registration(r3255,c192,s958).registration7762,169280 -registration(r3256,c55,s958).registration7763,169311 -registration(r3256,c55,s958).registration7763,169311 -registration(r3257,c205,s959).registration7764,169341 -registration(r3257,c205,s959).registration7764,169341 -registration(r3258,c149,s959).registration7765,169372 -registration(r3258,c149,s959).registration7765,169372 -registration(r3259,c84,s959).registration7766,169403 -registration(r3259,c84,s959).registration7766,169403 -registration(r3260,c235,s960).registration7767,169433 -registration(r3260,c235,s960).registration7767,169433 -registration(r3261,c193,s960).registration7768,169464 -registration(r3261,c193,s960).registration7768,169464 -registration(r3262,c241,s960).registration7769,169495 -registration(r3262,c241,s960).registration7769,169495 -registration(r3263,c90,s961).registration7770,169526 -registration(r3263,c90,s961).registration7770,169526 -registration(r3264,c161,s961).registration7771,169556 -registration(r3264,c161,s961).registration7771,169556 -registration(r3265,c217,s961).registration7772,169587 -registration(r3265,c217,s961).registration7772,169587 -registration(r3266,c244,s962).registration7773,169618 -registration(r3266,c244,s962).registration7773,169618 -registration(r3267,c159,s962).registration7774,169649 -registration(r3267,c159,s962).registration7774,169649 -registration(r3268,c120,s962).registration7775,169680 -registration(r3268,c120,s962).registration7775,169680 -registration(r3269,c247,s963).registration7776,169711 -registration(r3269,c247,s963).registration7776,169711 -registration(r3270,c243,s963).registration7777,169742 -registration(r3270,c243,s963).registration7777,169742 -registration(r3271,c245,s963).registration7778,169773 -registration(r3271,c245,s963).registration7778,169773 -registration(r3272,c98,s963).registration7779,169804 -registration(r3272,c98,s963).registration7779,169804 -registration(r3273,c226,s964).registration7780,169834 -registration(r3273,c226,s964).registration7780,169834 -registration(r3274,c37,s964).registration7781,169865 -registration(r3274,c37,s964).registration7781,169865 -registration(r3275,c148,s964).registration7782,169895 -registration(r3275,c148,s964).registration7782,169895 -registration(r3276,c97,s965).registration7783,169926 -registration(r3276,c97,s965).registration7783,169926 -registration(r3277,c251,s965).registration7784,169956 -registration(r3277,c251,s965).registration7784,169956 -registration(r3278,c13,s965).registration7785,169987 -registration(r3278,c13,s965).registration7785,169987 -registration(r3279,c239,s965).registration7786,170017 -registration(r3279,c239,s965).registration7786,170017 -registration(r3280,c219,s966).registration7787,170048 -registration(r3280,c219,s966).registration7787,170048 -registration(r3281,c225,s966).registration7788,170079 -registration(r3281,c225,s966).registration7788,170079 -registration(r3282,c153,s966).registration7789,170110 -registration(r3282,c153,s966).registration7789,170110 -registration(r3283,c59,s967).registration7790,170141 -registration(r3283,c59,s967).registration7790,170141 -registration(r3284,c125,s967).registration7791,170171 -registration(r3284,c125,s967).registration7791,170171 -registration(r3285,c42,s967).registration7792,170202 -registration(r3285,c42,s967).registration7792,170202 -registration(r3286,c114,s967).registration7793,170232 -registration(r3286,c114,s967).registration7793,170232 -registration(r3287,c149,s968).registration7794,170263 -registration(r3287,c149,s968).registration7794,170263 -registration(r3288,c207,s968).registration7795,170294 -registration(r3288,c207,s968).registration7795,170294 -registration(r3289,c10,s968).registration7796,170325 -registration(r3289,c10,s968).registration7796,170325 -registration(r3290,c1,s969).registration7797,170355 -registration(r3290,c1,s969).registration7797,170355 -registration(r3291,c169,s969).registration7798,170384 -registration(r3291,c169,s969).registration7798,170384 -registration(r3292,c40,s969).registration7799,170415 -registration(r3292,c40,s969).registration7799,170415 -registration(r3293,c77,s970).registration7800,170445 -registration(r3293,c77,s970).registration7800,170445 -registration(r3294,c242,s970).registration7801,170475 -registration(r3294,c242,s970).registration7801,170475 -registration(r3295,c239,s970).registration7802,170506 -registration(r3295,c239,s970).registration7802,170506 -registration(r3296,c84,s970).registration7803,170537 -registration(r3296,c84,s970).registration7803,170537 -registration(r3297,c19,s971).registration7804,170567 -registration(r3297,c19,s971).registration7804,170567 -registration(r3298,c109,s971).registration7805,170597 -registration(r3298,c109,s971).registration7805,170597 -registration(r3299,c220,s971).registration7806,170628 -registration(r3299,c220,s971).registration7806,170628 -registration(r3300,c72,s971).registration7807,170659 -registration(r3300,c72,s971).registration7807,170659 -registration(r3301,c166,s972).registration7808,170689 -registration(r3301,c166,s972).registration7808,170689 -registration(r3302,c236,s972).registration7809,170720 -registration(r3302,c236,s972).registration7809,170720 -registration(r3303,c249,s972).registration7810,170751 -registration(r3303,c249,s972).registration7810,170751 -registration(r3304,c35,s973).registration7811,170782 -registration(r3304,c35,s973).registration7811,170782 -registration(r3305,c253,s973).registration7812,170812 -registration(r3305,c253,s973).registration7812,170812 -registration(r3306,c217,s973).registration7813,170843 -registration(r3306,c217,s973).registration7813,170843 -registration(r3307,c169,s974).registration7814,170874 -registration(r3307,c169,s974).registration7814,170874 -registration(r3308,c249,s974).registration7815,170905 -registration(r3308,c249,s974).registration7815,170905 -registration(r3309,c31,s974).registration7816,170936 -registration(r3309,c31,s974).registration7816,170936 -registration(r3310,c200,s975).registration7817,170966 -registration(r3310,c200,s975).registration7817,170966 -registration(r3311,c149,s975).registration7818,170997 -registration(r3311,c149,s975).registration7818,170997 -registration(r3312,c87,s975).registration7819,171028 -registration(r3312,c87,s975).registration7819,171028 -registration(r3313,c75,s976).registration7820,171058 -registration(r3313,c75,s976).registration7820,171058 -registration(r3314,c68,s976).registration7821,171088 -registration(r3314,c68,s976).registration7821,171088 -registration(r3315,c233,s976).registration7822,171118 -registration(r3315,c233,s976).registration7822,171118 -registration(r3316,c253,s976).registration7823,171149 -registration(r3316,c253,s976).registration7823,171149 -registration(r3317,c12,s977).registration7824,171180 -registration(r3317,c12,s977).registration7824,171180 -registration(r3318,c14,s977).registration7825,171210 -registration(r3318,c14,s977).registration7825,171210 -registration(r3319,c9,s977).registration7826,171240 -registration(r3319,c9,s977).registration7826,171240 -registration(r3320,c176,s978).registration7827,171269 -registration(r3320,c176,s978).registration7827,171269 -registration(r3321,c64,s978).registration7828,171300 -registration(r3321,c64,s978).registration7828,171300 -registration(r3322,c196,s978).registration7829,171330 -registration(r3322,c196,s978).registration7829,171330 -registration(r3323,c232,s979).registration7830,171361 -registration(r3323,c232,s979).registration7830,171361 -registration(r3324,c143,s979).registration7831,171392 -registration(r3324,c143,s979).registration7831,171392 -registration(r3325,c131,s979).registration7832,171423 -registration(r3325,c131,s979).registration7832,171423 -registration(r3326,c45,s979).registration7833,171454 -registration(r3326,c45,s979).registration7833,171454 -registration(r3327,c208,s980).registration7834,171484 -registration(r3327,c208,s980).registration7834,171484 -registration(r3328,c67,s980).registration7835,171515 -registration(r3328,c67,s980).registration7835,171515 -registration(r3329,c155,s980).registration7836,171545 -registration(r3329,c155,s980).registration7836,171545 -registration(r3330,c48,s980).registration7837,171576 -registration(r3330,c48,s980).registration7837,171576 -registration(r3331,c35,s981).registration7838,171606 -registration(r3331,c35,s981).registration7838,171606 -registration(r3332,c96,s981).registration7839,171636 -registration(r3332,c96,s981).registration7839,171636 -registration(r3333,c20,s981).registration7840,171666 -registration(r3333,c20,s981).registration7840,171666 -registration(r3334,c254,s982).registration7841,171696 -registration(r3334,c254,s982).registration7841,171696 -registration(r3335,c13,s982).registration7842,171727 -registration(r3335,c13,s982).registration7842,171727 -registration(r3336,c213,s982).registration7843,171757 -registration(r3336,c213,s982).registration7843,171757 -registration(r3337,c226,s982).registration7844,171788 -registration(r3337,c226,s982).registration7844,171788 -registration(r3338,c5,s983).registration7845,171819 -registration(r3338,c5,s983).registration7845,171819 -registration(r3339,c112,s983).registration7846,171848 -registration(r3339,c112,s983).registration7846,171848 -registration(r3340,c174,s983).registration7847,171879 -registration(r3340,c174,s983).registration7847,171879 -registration(r3341,c114,s984).registration7848,171910 -registration(r3341,c114,s984).registration7848,171910 -registration(r3342,c71,s984).registration7849,171941 -registration(r3342,c71,s984).registration7849,171941 -registration(r3343,c90,s984).registration7850,171971 -registration(r3343,c90,s984).registration7850,171971 -registration(r3344,c223,s985).registration7851,172001 -registration(r3344,c223,s985).registration7851,172001 -registration(r3345,c49,s985).registration7852,172032 -registration(r3345,c49,s985).registration7852,172032 -registration(r3346,c250,s985).registration7853,172062 -registration(r3346,c250,s985).registration7853,172062 -registration(r3347,c1,s985).registration7854,172093 -registration(r3347,c1,s985).registration7854,172093 -registration(r3348,c169,s986).registration7855,172122 -registration(r3348,c169,s986).registration7855,172122 -registration(r3349,c204,s986).registration7856,172153 -registration(r3349,c204,s986).registration7856,172153 -registration(r3350,c74,s986).registration7857,172184 -registration(r3350,c74,s986).registration7857,172184 -registration(r3351,c170,s987).registration7858,172214 -registration(r3351,c170,s987).registration7858,172214 -registration(r3352,c239,s987).registration7859,172245 -registration(r3352,c239,s987).registration7859,172245 -registration(r3353,c94,s987).registration7860,172276 -registration(r3353,c94,s987).registration7860,172276 -registration(r3354,c108,s988).registration7861,172306 -registration(r3354,c108,s988).registration7861,172306 -registration(r3355,c37,s988).registration7862,172337 -registration(r3355,c37,s988).registration7862,172337 -registration(r3356,c233,s988).registration7863,172367 -registration(r3356,c233,s988).registration7863,172367 -registration(r3357,c238,s988).registration7864,172398 -registration(r3357,c238,s988).registration7864,172398 -registration(r3358,c246,s989).registration7865,172429 -registration(r3358,c246,s989).registration7865,172429 -registration(r3359,c182,s989).registration7866,172460 -registration(r3359,c182,s989).registration7866,172460 -registration(r3360,c162,s989).registration7867,172491 -registration(r3360,c162,s989).registration7867,172491 -registration(r3361,c234,s989).registration7868,172522 -registration(r3361,c234,s989).registration7868,172522 -registration(r3362,c1,s990).registration7869,172553 -registration(r3362,c1,s990).registration7869,172553 -registration(r3363,c132,s990).registration7870,172582 -registration(r3363,c132,s990).registration7870,172582 -registration(r3364,c195,s990).registration7871,172613 -registration(r3364,c195,s990).registration7871,172613 -registration(r3365,c190,s991).registration7872,172644 -registration(r3365,c190,s991).registration7872,172644 -registration(r3366,c238,s991).registration7873,172675 -registration(r3366,c238,s991).registration7873,172675 -registration(r3367,c181,s991).registration7874,172706 -registration(r3367,c181,s991).registration7874,172706 -registration(r3368,c131,s992).registration7875,172737 -registration(r3368,c131,s992).registration7875,172737 -registration(r3369,c70,s992).registration7876,172768 -registration(r3369,c70,s992).registration7876,172768 -registration(r3370,c113,s992).registration7877,172798 -registration(r3370,c113,s992).registration7877,172798 -registration(r3371,c97,s993).registration7878,172829 -registration(r3371,c97,s993).registration7878,172829 -registration(r3372,c211,s993).registration7879,172859 -registration(r3372,c211,s993).registration7879,172859 -registration(r3373,c65,s993).registration7880,172890 -registration(r3373,c65,s993).registration7880,172890 -registration(r3374,c103,s994).registration7881,172920 -registration(r3374,c103,s994).registration7881,172920 -registration(r3375,c56,s994).registration7882,172951 -registration(r3375,c56,s994).registration7882,172951 -registration(r3376,c199,s994).registration7883,172981 -registration(r3376,c199,s994).registration7883,172981 -registration(r3377,c189,s994).registration7884,173012 -registration(r3377,c189,s994).registration7884,173012 -registration(r3378,c39,s995).registration7885,173043 -registration(r3378,c39,s995).registration7885,173043 -registration(r3379,c203,s995).registration7886,173073 -registration(r3379,c203,s995).registration7886,173073 -registration(r3380,c101,s995).registration7887,173104 -registration(r3380,c101,s995).registration7887,173104 -registration(r3381,c102,s996).registration7888,173135 -registration(r3381,c102,s996).registration7888,173135 -registration(r3382,c214,s996).registration7889,173166 -registration(r3382,c214,s996).registration7889,173166 -registration(r3383,c122,s996).registration7890,173197 -registration(r3383,c122,s996).registration7890,173197 -registration(r3384,c56,s997).registration7891,173228 -registration(r3384,c56,s997).registration7891,173228 -registration(r3385,c53,s997).registration7892,173258 -registration(r3385,c53,s997).registration7892,173258 -registration(r3386,c68,s997).registration7893,173288 -registration(r3386,c68,s997).registration7893,173288 -registration(r3387,c199,s998).registration7894,173318 -registration(r3387,c199,s998).registration7894,173318 -registration(r3388,c123,s998).registration7895,173349 -registration(r3388,c123,s998).registration7895,173349 -registration(r3389,c62,s998).registration7896,173380 -registration(r3389,c62,s998).registration7896,173380 -registration(r3390,c159,s999).registration7897,173410 -registration(r3390,c159,s999).registration7897,173410 -registration(r3391,c14,s999).registration7898,173441 -registration(r3391,c14,s999).registration7898,173441 -registration(r3392,c176,s999).registration7899,173471 -registration(r3392,c176,s999).registration7899,173471 -registration(r3393,c23,s1000).registration7900,173502 -registration(r3393,c23,s1000).registration7900,173502 -registration(r3394,c40,s1000).registration7901,173533 -registration(r3394,c40,s1000).registration7901,173533 -registration(r3395,c21,s1000).registration7902,173564 -registration(r3395,c21,s1000).registration7902,173564 -registration(r3396,c212,s1001).registration7903,173595 -registration(r3396,c212,s1001).registration7903,173595 -registration(r3397,c175,s1001).registration7904,173627 -registration(r3397,c175,s1001).registration7904,173627 -registration(r3398,c25,s1001).registration7905,173659 -registration(r3398,c25,s1001).registration7905,173659 -registration(r3399,c208,s1001).registration7906,173690 -registration(r3399,c208,s1001).registration7906,173690 -registration(r3400,c160,s1002).registration7907,173722 -registration(r3400,c160,s1002).registration7907,173722 -registration(r3401,c216,s1002).registration7908,173754 -registration(r3401,c216,s1002).registration7908,173754 -registration(r3402,c74,s1002).registration7909,173786 -registration(r3402,c74,s1002).registration7909,173786 -registration(r3403,c132,s1003).registration7910,173817 -registration(r3403,c132,s1003).registration7910,173817 -registration(r3404,c29,s1003).registration7911,173849 -registration(r3404,c29,s1003).registration7911,173849 -registration(r3405,c168,s1003).registration7912,173880 -registration(r3405,c168,s1003).registration7912,173880 -registration(r3406,c110,s1004).registration7913,173912 -registration(r3406,c110,s1004).registration7913,173912 -registration(r3407,c53,s1004).registration7914,173944 -registration(r3407,c53,s1004).registration7914,173944 -registration(r3408,c40,s1004).registration7915,173975 -registration(r3408,c40,s1004).registration7915,173975 -registration(r3409,c200,s1005).registration7916,174006 -registration(r3409,c200,s1005).registration7916,174006 -registration(r3410,c183,s1005).registration7917,174038 -registration(r3410,c183,s1005).registration7917,174038 -registration(r3411,c83,s1005).registration7918,174070 -registration(r3411,c83,s1005).registration7918,174070 -registration(r3412,c107,s1005).registration7919,174101 -registration(r3412,c107,s1005).registration7919,174101 -registration(r3413,c223,s1006).registration7920,174133 -registration(r3413,c223,s1006).registration7920,174133 -registration(r3414,c29,s1006).registration7921,174165 -registration(r3414,c29,s1006).registration7921,174165 -registration(r3415,c244,s1006).registration7922,174196 -registration(r3415,c244,s1006).registration7922,174196 -registration(r3416,c240,s1006).registration7923,174228 -registration(r3416,c240,s1006).registration7923,174228 -registration(r3417,c72,s1007).registration7924,174260 -registration(r3417,c72,s1007).registration7924,174260 -registration(r3418,c42,s1007).registration7925,174291 -registration(r3418,c42,s1007).registration7925,174291 -registration(r3419,c168,s1007).registration7926,174322 -registration(r3419,c168,s1007).registration7926,174322 -registration(r3420,c203,s1007).registration7927,174354 -registration(r3420,c203,s1007).registration7927,174354 -registration(r3421,c101,s1008).registration7928,174386 -registration(r3421,c101,s1008).registration7928,174386 -registration(r3422,c179,s1008).registration7929,174418 -registration(r3422,c179,s1008).registration7929,174418 -registration(r3423,c228,s1008).registration7930,174450 -registration(r3423,c228,s1008).registration7930,174450 -registration(r3424,c139,s1009).registration7931,174482 -registration(r3424,c139,s1009).registration7931,174482 -registration(r3425,c162,s1009).registration7932,174514 -registration(r3425,c162,s1009).registration7932,174514 -registration(r3426,c187,s1009).registration7933,174546 -registration(r3426,c187,s1009).registration7933,174546 -registration(r3427,c228,s1010).registration7934,174578 -registration(r3427,c228,s1010).registration7934,174578 -registration(r3428,c163,s1010).registration7935,174610 -registration(r3428,c163,s1010).registration7935,174610 -registration(r3429,c122,s1010).registration7936,174642 -registration(r3429,c122,s1010).registration7936,174642 -registration(r3430,c208,s1011).registration7937,174674 -registration(r3430,c208,s1011).registration7937,174674 -registration(r3431,c100,s1011).registration7938,174706 -registration(r3431,c100,s1011).registration7938,174706 -registration(r3432,c99,s1011).registration7939,174738 -registration(r3432,c99,s1011).registration7939,174738 -registration(r3433,c129,s1012).registration7940,174769 -registration(r3433,c129,s1012).registration7940,174769 -registration(r3434,c48,s1012).registration7941,174801 -registration(r3434,c48,s1012).registration7941,174801 -registration(r3435,c115,s1012).registration7942,174832 -registration(r3435,c115,s1012).registration7942,174832 -registration(r3436,c187,s1013).registration7943,174864 -registration(r3436,c187,s1013).registration7943,174864 -registration(r3437,c157,s1013).registration7944,174896 -registration(r3437,c157,s1013).registration7944,174896 -registration(r3438,c124,s1013).registration7945,174928 -registration(r3438,c124,s1013).registration7945,174928 -registration(r3439,c253,s1014).registration7946,174960 -registration(r3439,c253,s1014).registration7946,174960 -registration(r3440,c58,s1014).registration7947,174992 -registration(r3440,c58,s1014).registration7947,174992 -registration(r3441,c28,s1014).registration7948,175023 -registration(r3441,c28,s1014).registration7948,175023 -registration(r3442,c236,s1014).registration7949,175054 -registration(r3442,c236,s1014).registration7949,175054 -registration(r3443,c108,s1015).registration7950,175086 -registration(r3443,c108,s1015).registration7950,175086 -registration(r3444,c198,s1015).registration7951,175118 -registration(r3444,c198,s1015).registration7951,175118 -registration(r3445,c168,s1015).registration7952,175150 -registration(r3445,c168,s1015).registration7952,175150 -registration(r3446,c141,s1016).registration7953,175182 -registration(r3446,c141,s1016).registration7953,175182 -registration(r3447,c9,s1016).registration7954,175214 -registration(r3447,c9,s1016).registration7954,175214 -registration(r3448,c26,s1016).registration7955,175244 -registration(r3448,c26,s1016).registration7955,175244 -registration(r3449,c234,s1017).registration7956,175275 -registration(r3449,c234,s1017).registration7956,175275 -registration(r3450,c158,s1017).registration7957,175307 -registration(r3450,c158,s1017).registration7957,175307 -registration(r3451,c201,s1017).registration7958,175339 -registration(r3451,c201,s1017).registration7958,175339 -registration(r3452,c227,s1017).registration7959,175371 -registration(r3452,c227,s1017).registration7959,175371 -registration(r3453,c87,s1018).registration7960,175403 -registration(r3453,c87,s1018).registration7960,175403 -registration(r3454,c86,s1018).registration7961,175434 -registration(r3454,c86,s1018).registration7961,175434 -registration(r3455,c191,s1018).registration7962,175465 -registration(r3455,c191,s1018).registration7962,175465 -registration(r3456,c18,s1018).registration7963,175497 -registration(r3456,c18,s1018).registration7963,175497 -registration(r3457,c170,s1019).registration7964,175528 -registration(r3457,c170,s1019).registration7964,175528 -registration(r3458,c231,s1019).registration7965,175560 -registration(r3458,c231,s1019).registration7965,175560 -registration(r3459,c198,s1019).registration7966,175592 -registration(r3459,c198,s1019).registration7966,175592 -registration(r3460,c227,s1019).registration7967,175624 -registration(r3460,c227,s1019).registration7967,175624 -registration(r3461,c137,s1020).registration7968,175656 -registration(r3461,c137,s1020).registration7968,175656 -registration(r3462,c69,s1020).registration7969,175688 -registration(r3462,c69,s1020).registration7969,175688 -registration(r3463,c209,s1020).registration7970,175719 -registration(r3463,c209,s1020).registration7970,175719 -registration(r3464,c121,s1020).registration7971,175751 -registration(r3464,c121,s1020).registration7971,175751 -registration(r3465,c92,s1021).registration7972,175783 -registration(r3465,c92,s1021).registration7972,175783 -registration(r3466,c169,s1021).registration7973,175814 -registration(r3466,c169,s1021).registration7973,175814 -registration(r3467,c6,s1021).registration7974,175846 -registration(r3467,c6,s1021).registration7974,175846 -registration(r3468,c65,s1022).registration7975,175876 -registration(r3468,c65,s1022).registration7975,175876 -registration(r3469,c204,s1022).registration7976,175907 -registration(r3469,c204,s1022).registration7976,175907 -registration(r3470,c172,s1022).registration7977,175939 -registration(r3470,c172,s1022).registration7977,175939 -registration(r3471,c211,s1023).registration7978,175971 -registration(r3471,c211,s1023).registration7978,175971 -registration(r3472,c195,s1023).registration7979,176003 -registration(r3472,c195,s1023).registration7979,176003 -registration(r3473,c227,s1023).registration7980,176035 -registration(r3473,c227,s1023).registration7980,176035 -registration(r3474,c26,s1023).registration7981,176067 -registration(r3474,c26,s1023).registration7981,176067 -registration(r3475,c88,s1024).registration7982,176098 -registration(r3475,c88,s1024).registration7982,176098 -registration(r3476,c45,s1024).registration7983,176129 -registration(r3476,c45,s1024).registration7983,176129 -registration(r3477,c0,s1024).registration7984,176160 -registration(r3477,c0,s1024).registration7984,176160 -registration(r3478,c21,s1024).registration7985,176190 -registration(r3478,c21,s1024).registration7985,176190 -registration(r3479,c171,s1025).registration7986,176221 -registration(r3479,c171,s1025).registration7986,176221 -registration(r3480,c54,s1025).registration7987,176253 -registration(r3480,c54,s1025).registration7987,176253 -registration(r3481,c172,s1025).registration7988,176284 -registration(r3481,c172,s1025).registration7988,176284 -registration(r3482,c125,s1026).registration7989,176316 -registration(r3482,c125,s1026).registration7989,176316 -registration(r3483,c42,s1026).registration7990,176348 -registration(r3483,c42,s1026).registration7990,176348 -registration(r3484,c136,s1026).registration7991,176379 -registration(r3484,c136,s1026).registration7991,176379 -registration(r3485,c48,s1027).registration7992,176411 -registration(r3485,c48,s1027).registration7992,176411 -registration(r3486,c254,s1027).registration7993,176442 -registration(r3486,c254,s1027).registration7993,176442 -registration(r3487,c236,s1027).registration7994,176474 -registration(r3487,c236,s1027).registration7994,176474 -registration(r3488,c186,s1028).registration7995,176506 -registration(r3488,c186,s1028).registration7995,176506 -registration(r3489,c159,s1028).registration7996,176538 -registration(r3489,c159,s1028).registration7996,176538 -registration(r3490,c31,s1028).registration7997,176570 -registration(r3490,c31,s1028).registration7997,176570 -registration(r3491,c228,s1029).registration7998,176601 -registration(r3491,c228,s1029).registration7998,176601 -registration(r3492,c52,s1029).registration7999,176633 -registration(r3492,c52,s1029).registration7999,176633 -registration(r3493,c158,s1029).registration8000,176664 -registration(r3493,c158,s1029).registration8000,176664 -registration(r3494,c247,s1030).registration8001,176696 -registration(r3494,c247,s1030).registration8001,176696 -registration(r3495,c44,s1030).registration8002,176728 -registration(r3495,c44,s1030).registration8002,176728 -registration(r3496,c215,s1030).registration8003,176759 -registration(r3496,c215,s1030).registration8003,176759 -registration(r3497,c160,s1031).registration8004,176791 -registration(r3497,c160,s1031).registration8004,176791 -registration(r3498,c166,s1031).registration8005,176823 -registration(r3498,c166,s1031).registration8005,176823 -registration(r3499,c119,s1031).registration8006,176855 -registration(r3499,c119,s1031).registration8006,176855 -registration(r3500,c244,s1032).registration8007,176887 -registration(r3500,c244,s1032).registration8007,176887 -registration(r3501,c200,s1032).registration8008,176919 -registration(r3501,c200,s1032).registration8008,176919 -registration(r3502,c5,s1032).registration8009,176951 -registration(r3502,c5,s1032).registration8009,176951 -registration(r3503,c141,s1033).registration8010,176981 -registration(r3503,c141,s1033).registration8010,176981 -registration(r3504,c172,s1033).registration8011,177013 -registration(r3504,c172,s1033).registration8011,177013 -registration(r3505,c190,s1033).registration8012,177045 -registration(r3505,c190,s1033).registration8012,177045 -registration(r3506,c253,s1034).registration8013,177077 -registration(r3506,c253,s1034).registration8013,177077 -registration(r3507,c52,s1034).registration8014,177109 -registration(r3507,c52,s1034).registration8014,177109 -registration(r3508,c64,s1034).registration8015,177140 -registration(r3508,c64,s1034).registration8015,177140 -registration(r3509,c134,s1034).registration8016,177171 -registration(r3509,c134,s1034).registration8016,177171 -registration(r3510,c1,s1035).registration8017,177203 -registration(r3510,c1,s1035).registration8017,177203 -registration(r3511,c187,s1035).registration8018,177233 -registration(r3511,c187,s1035).registration8018,177233 -registration(r3512,c82,s1035).registration8019,177265 -registration(r3512,c82,s1035).registration8019,177265 -registration(r3513,c147,s1035).registration8020,177296 -registration(r3513,c147,s1035).registration8020,177296 -registration(r3514,c45,s1036).registration8021,177328 -registration(r3514,c45,s1036).registration8021,177328 -registration(r3515,c108,s1036).registration8022,177359 -registration(r3515,c108,s1036).registration8022,177359 -registration(r3516,c68,s1036).registration8023,177391 -registration(r3516,c68,s1036).registration8023,177391 -registration(r3517,c234,s1036).registration8024,177422 -registration(r3517,c234,s1036).registration8024,177422 -registration(r3518,c231,s1037).registration8025,177454 -registration(r3518,c231,s1037).registration8025,177454 -registration(r3519,c87,s1037).registration8026,177486 -registration(r3519,c87,s1037).registration8026,177486 -registration(r3520,c196,s1037).registration8027,177517 -registration(r3520,c196,s1037).registration8027,177517 -registration(r3521,c202,s1037).registration8028,177549 -registration(r3521,c202,s1037).registration8028,177549 -registration(r3522,c87,s1038).registration8029,177581 -registration(r3522,c87,s1038).registration8029,177581 -registration(r3523,c226,s1038).registration8030,177612 -registration(r3523,c226,s1038).registration8030,177612 -registration(r3524,c88,s1038).registration8031,177644 -registration(r3524,c88,s1038).registration8031,177644 -registration(r3525,c160,s1038).registration8032,177675 -registration(r3525,c160,s1038).registration8032,177675 -registration(r3526,c163,s1039).registration8033,177707 -registration(r3526,c163,s1039).registration8033,177707 -registration(r3527,c157,s1039).registration8034,177739 -registration(r3527,c157,s1039).registration8034,177739 -registration(r3528,c7,s1039).registration8035,177771 -registration(r3528,c7,s1039).registration8035,177771 -registration(r3529,c141,s1040).registration8036,177801 -registration(r3529,c141,s1040).registration8036,177801 -registration(r3530,c151,s1040).registration8037,177833 -registration(r3530,c151,s1040).registration8037,177833 -registration(r3531,c188,s1040).registration8038,177865 -registration(r3531,c188,s1040).registration8038,177865 -registration(r3532,c188,s1041).registration8039,177897 -registration(r3532,c188,s1041).registration8039,177897 -registration(r3533,c219,s1041).registration8040,177929 -registration(r3533,c219,s1041).registration8040,177929 -registration(r3534,c51,s1041).registration8041,177961 -registration(r3534,c51,s1041).registration8041,177961 -registration(r3535,c119,s1042).registration8042,177992 -registration(r3535,c119,s1042).registration8042,177992 -registration(r3536,c88,s1042).registration8043,178024 -registration(r3536,c88,s1042).registration8043,178024 -registration(r3537,c82,s1042).registration8044,178055 -registration(r3537,c82,s1042).registration8044,178055 -registration(r3538,c171,s1043).registration8045,178086 -registration(r3538,c171,s1043).registration8045,178086 -registration(r3539,c37,s1043).registration8046,178118 -registration(r3539,c37,s1043).registration8046,178118 -registration(r3540,c27,s1043).registration8047,178149 -registration(r3540,c27,s1043).registration8047,178149 -registration(r3541,c115,s1044).registration8048,178180 -registration(r3541,c115,s1044).registration8048,178180 -registration(r3542,c175,s1044).registration8049,178212 -registration(r3542,c175,s1044).registration8049,178212 -registration(r3543,c71,s1044).registration8050,178244 -registration(r3543,c71,s1044).registration8050,178244 -registration(r3544,c26,s1045).registration8051,178275 -registration(r3544,c26,s1045).registration8051,178275 -registration(r3545,c27,s1045).registration8052,178306 -registration(r3545,c27,s1045).registration8052,178306 -registration(r3546,c237,s1045).registration8053,178337 -registration(r3546,c237,s1045).registration8053,178337 -registration(r3547,c253,s1045).registration8054,178369 -registration(r3547,c253,s1045).registration8054,178369 -registration(r3548,c175,s1046).registration8055,178401 -registration(r3548,c175,s1046).registration8055,178401 -registration(r3549,c148,s1046).registration8056,178433 -registration(r3549,c148,s1046).registration8056,178433 -registration(r3550,c99,s1046).registration8057,178465 -registration(r3550,c99,s1046).registration8057,178465 -registration(r3551,c32,s1047).registration8058,178496 -registration(r3551,c32,s1047).registration8058,178496 -registration(r3552,c211,s1047).registration8059,178527 -registration(r3552,c211,s1047).registration8059,178527 -registration(r3553,c178,s1047).registration8060,178559 -registration(r3553,c178,s1047).registration8060,178559 -registration(r3554,c26,s1047).registration8061,178591 -registration(r3554,c26,s1047).registration8061,178591 -registration(r3555,c99,s1047).registration8062,178622 -registration(r3555,c99,s1047).registration8062,178622 -registration(r3556,c109,s1048).registration8063,178653 -registration(r3556,c109,s1048).registration8063,178653 -registration(r3557,c139,s1048).registration8064,178685 -registration(r3557,c139,s1048).registration8064,178685 -registration(r3558,c163,s1048).registration8065,178717 -registration(r3558,c163,s1048).registration8065,178717 -registration(r3559,c178,s1048).registration8066,178749 -registration(r3559,c178,s1048).registration8066,178749 -registration(r3560,c230,s1049).registration8067,178781 -registration(r3560,c230,s1049).registration8067,178781 -registration(r3561,c161,s1049).registration8068,178813 -registration(r3561,c161,s1049).registration8068,178813 -registration(r3562,c49,s1049).registration8069,178845 -registration(r3562,c49,s1049).registration8069,178845 -registration(r3563,c169,s1050).registration8070,178876 -registration(r3563,c169,s1050).registration8070,178876 -registration(r3564,c229,s1050).registration8071,178908 -registration(r3564,c229,s1050).registration8071,178908 -registration(r3565,c4,s1050).registration8072,178940 -registration(r3565,c4,s1050).registration8072,178940 -registration(r3566,c38,s1051).registration8073,178970 -registration(r3566,c38,s1051).registration8073,178970 -registration(r3567,c193,s1051).registration8074,179001 -registration(r3567,c193,s1051).registration8074,179001 -registration(r3568,c122,s1051).registration8075,179033 -registration(r3568,c122,s1051).registration8075,179033 -registration(r3569,c222,s1052).registration8076,179065 -registration(r3569,c222,s1052).registration8076,179065 -registration(r3570,c204,s1052).registration8077,179097 -registration(r3570,c204,s1052).registration8077,179097 -registration(r3571,c213,s1052).registration8078,179129 -registration(r3571,c213,s1052).registration8078,179129 -registration(r3572,c136,s1053).registration8079,179161 -registration(r3572,c136,s1053).registration8079,179161 -registration(r3573,c10,s1053).registration8080,179193 -registration(r3573,c10,s1053).registration8080,179193 -registration(r3574,c187,s1053).registration8081,179224 -registration(r3574,c187,s1053).registration8081,179224 -registration(r3575,c41,s1054).registration8082,179256 -registration(r3575,c41,s1054).registration8082,179256 -registration(r3576,c62,s1054).registration8083,179287 -registration(r3576,c62,s1054).registration8083,179287 -registration(r3577,c16,s1054).registration8084,179318 -registration(r3577,c16,s1054).registration8084,179318 -registration(r3578,c207,s1055).registration8085,179349 -registration(r3578,c207,s1055).registration8085,179349 -registration(r3579,c41,s1055).registration8086,179381 -registration(r3579,c41,s1055).registration8086,179381 -registration(r3580,c145,s1055).registration8087,179412 -registration(r3580,c145,s1055).registration8087,179412 -registration(r3581,c190,s1055).registration8088,179444 -registration(r3581,c190,s1055).registration8088,179444 -registration(r3582,c170,s1056).registration8089,179476 -registration(r3582,c170,s1056).registration8089,179476 -registration(r3583,c163,s1056).registration8090,179508 -registration(r3583,c163,s1056).registration8090,179508 -registration(r3584,c127,s1056).registration8091,179540 -registration(r3584,c127,s1056).registration8091,179540 -registration(r3585,c167,s1057).registration8092,179572 -registration(r3585,c167,s1057).registration8092,179572 -registration(r3586,c47,s1057).registration8093,179604 -registration(r3586,c47,s1057).registration8093,179604 -registration(r3587,c240,s1057).registration8094,179635 -registration(r3587,c240,s1057).registration8094,179635 -registration(r3588,c206,s1058).registration8095,179667 -registration(r3588,c206,s1058).registration8095,179667 -registration(r3589,c74,s1058).registration8096,179699 -registration(r3589,c74,s1058).registration8096,179699 -registration(r3590,c92,s1058).registration8097,179730 -registration(r3590,c92,s1058).registration8097,179730 -registration(r3591,c228,s1059).registration8098,179761 -registration(r3591,c228,s1059).registration8098,179761 -registration(r3592,c215,s1059).registration8099,179793 -registration(r3592,c215,s1059).registration8099,179793 -registration(r3593,c165,s1059).registration8100,179825 -registration(r3593,c165,s1059).registration8100,179825 -registration(r3594,c207,s1060).registration8101,179857 -registration(r3594,c207,s1060).registration8101,179857 -registration(r3595,c213,s1060).registration8102,179889 -registration(r3595,c213,s1060).registration8102,179889 -registration(r3596,c85,s1060).registration8103,179921 -registration(r3596,c85,s1060).registration8103,179921 -registration(r3597,c195,s1060).registration8104,179952 -registration(r3597,c195,s1060).registration8104,179952 -registration(r3598,c59,s1060).registration8105,179984 -registration(r3598,c59,s1060).registration8105,179984 -registration(r3599,c86,s1061).registration8106,180015 -registration(r3599,c86,s1061).registration8106,180015 -registration(r3600,c38,s1061).registration8107,180046 -registration(r3600,c38,s1061).registration8107,180046 -registration(r3601,c251,s1061).registration8108,180077 -registration(r3601,c251,s1061).registration8108,180077 -registration(r3602,c159,s1062).registration8109,180109 -registration(r3602,c159,s1062).registration8109,180109 -registration(r3603,c83,s1062).registration8110,180141 -registration(r3603,c83,s1062).registration8110,180141 -registration(r3604,c62,s1062).registration8111,180172 -registration(r3604,c62,s1062).registration8111,180172 -registration(r3605,c250,s1062).registration8112,180203 -registration(r3605,c250,s1062).registration8112,180203 -registration(r3606,c6,s1063).registration8113,180235 -registration(r3606,c6,s1063).registration8113,180235 -registration(r3607,c120,s1063).registration8114,180265 -registration(r3607,c120,s1063).registration8114,180265 -registration(r3608,c244,s1063).registration8115,180297 -registration(r3608,c244,s1063).registration8115,180297 -registration(r3609,c80,s1064).registration8116,180329 -registration(r3609,c80,s1064).registration8116,180329 -registration(r3610,c164,s1064).registration8117,180360 -registration(r3610,c164,s1064).registration8117,180360 -registration(r3611,c174,s1064).registration8118,180392 -registration(r3611,c174,s1064).registration8118,180392 -registration(r3612,c84,s1065).registration8119,180424 -registration(r3612,c84,s1065).registration8119,180424 -registration(r3613,c204,s1065).registration8120,180455 -registration(r3613,c204,s1065).registration8120,180455 -registration(r3614,c193,s1065).registration8121,180487 -registration(r3614,c193,s1065).registration8121,180487 -registration(r3615,c160,s1065).registration8122,180519 -registration(r3615,c160,s1065).registration8122,180519 -registration(r3616,c53,s1065).registration8123,180551 -registration(r3616,c53,s1065).registration8123,180551 -registration(r3617,c102,s1066).registration8124,180582 -registration(r3617,c102,s1066).registration8124,180582 -registration(r3618,c61,s1066).registration8125,180614 -registration(r3618,c61,s1066).registration8125,180614 -registration(r3619,c115,s1066).registration8126,180645 -registration(r3619,c115,s1066).registration8126,180645 -registration(r3620,c109,s1067).registration8127,180677 -registration(r3620,c109,s1067).registration8127,180677 -registration(r3621,c144,s1067).registration8128,180709 -registration(r3621,c144,s1067).registration8128,180709 -registration(r3622,c54,s1067).registration8129,180741 -registration(r3622,c54,s1067).registration8129,180741 -registration(r3623,c227,s1067).registration8130,180772 -registration(r3623,c227,s1067).registration8130,180772 -registration(r3624,c34,s1068).registration8131,180804 -registration(r3624,c34,s1068).registration8131,180804 -registration(r3625,c221,s1068).registration8132,180835 -registration(r3625,c221,s1068).registration8132,180835 -registration(r3626,c228,s1068).registration8133,180867 -registration(r3626,c228,s1068).registration8133,180867 -registration(r3627,c85,s1068).registration8134,180899 -registration(r3627,c85,s1068).registration8134,180899 -registration(r3628,c254,s1069).registration8135,180930 -registration(r3628,c254,s1069).registration8135,180930 -registration(r3629,c23,s1069).registration8136,180962 -registration(r3629,c23,s1069).registration8136,180962 -registration(r3630,c41,s1069).registration8137,180993 -registration(r3630,c41,s1069).registration8137,180993 -registration(r3631,c94,s1070).registration8138,181024 -registration(r3631,c94,s1070).registration8138,181024 -registration(r3632,c30,s1070).registration8139,181055 -registration(r3632,c30,s1070).registration8139,181055 -registration(r3633,c25,s1070).registration8140,181086 -registration(r3633,c25,s1070).registration8140,181086 -registration(r3634,c224,s1070).registration8141,181117 -registration(r3634,c224,s1070).registration8141,181117 -registration(r3635,c203,s1071).registration8142,181149 -registration(r3635,c203,s1071).registration8142,181149 -registration(r3636,c248,s1071).registration8143,181181 -registration(r3636,c248,s1071).registration8143,181181 -registration(r3637,c114,s1071).registration8144,181213 -registration(r3637,c114,s1071).registration8144,181213 -registration(r3638,c54,s1071).registration8145,181245 -registration(r3638,c54,s1071).registration8145,181245 -registration(r3639,c239,s1072).registration8146,181276 -registration(r3639,c239,s1072).registration8146,181276 -registration(r3640,c155,s1072).registration8147,181308 -registration(r3640,c155,s1072).registration8147,181308 -registration(r3641,c82,s1072).registration8148,181340 -registration(r3641,c82,s1072).registration8148,181340 -registration(r3642,c96,s1073).registration8149,181371 -registration(r3642,c96,s1073).registration8149,181371 -registration(r3643,c98,s1073).registration8150,181402 -registration(r3643,c98,s1073).registration8150,181402 -registration(r3644,c71,s1073).registration8151,181433 -registration(r3644,c71,s1073).registration8151,181433 -registration(r3645,c44,s1074).registration8152,181464 -registration(r3645,c44,s1074).registration8152,181464 -registration(r3646,c172,s1074).registration8153,181495 -registration(r3646,c172,s1074).registration8153,181495 -registration(r3647,c149,s1074).registration8154,181527 -registration(r3647,c149,s1074).registration8154,181527 -registration(r3648,c170,s1074).registration8155,181559 -registration(r3648,c170,s1074).registration8155,181559 -registration(r3649,c46,s1075).registration8156,181591 -registration(r3649,c46,s1075).registration8156,181591 -registration(r3650,c76,s1075).registration8157,181622 -registration(r3650,c76,s1075).registration8157,181622 -registration(r3651,c115,s1075).registration8158,181653 -registration(r3651,c115,s1075).registration8158,181653 -registration(r3652,c140,s1076).registration8159,181685 -registration(r3652,c140,s1076).registration8159,181685 -registration(r3653,c182,s1076).registration8160,181717 -registration(r3653,c182,s1076).registration8160,181717 -registration(r3654,c74,s1076).registration8161,181749 -registration(r3654,c74,s1076).registration8161,181749 -registration(r3655,c67,s1077).registration8162,181780 -registration(r3655,c67,s1077).registration8162,181780 -registration(r3656,c60,s1077).registration8163,181811 -registration(r3656,c60,s1077).registration8163,181811 -registration(r3657,c181,s1077).registration8164,181842 -registration(r3657,c181,s1077).registration8164,181842 -registration(r3658,c164,s1077).registration8165,181874 -registration(r3658,c164,s1077).registration8165,181874 -registration(r3659,c22,s1078).registration8166,181906 -registration(r3659,c22,s1078).registration8166,181906 -registration(r3660,c118,s1078).registration8167,181937 -registration(r3660,c118,s1078).registration8167,181937 -registration(r3661,c35,s1078).registration8168,181969 -registration(r3661,c35,s1078).registration8168,181969 -registration(r3662,c133,s1079).registration8169,182000 -registration(r3662,c133,s1079).registration8169,182000 -registration(r3663,c48,s1079).registration8170,182032 -registration(r3663,c48,s1079).registration8170,182032 -registration(r3664,c88,s1079).registration8171,182063 -registration(r3664,c88,s1079).registration8171,182063 -registration(r3665,c4,s1080).registration8172,182094 -registration(r3665,c4,s1080).registration8172,182094 -registration(r3666,c90,s1080).registration8173,182124 -registration(r3666,c90,s1080).registration8173,182124 -registration(r3667,c99,s1080).registration8174,182155 -registration(r3667,c99,s1080).registration8174,182155 -registration(r3668,c145,s1080).registration8175,182186 -registration(r3668,c145,s1080).registration8175,182186 -registration(r3669,c250,s1081).registration8176,182218 -registration(r3669,c250,s1081).registration8176,182218 -registration(r3670,c121,s1081).registration8177,182250 -registration(r3670,c121,s1081).registration8177,182250 -registration(r3671,c28,s1081).registration8178,182282 -registration(r3671,c28,s1081).registration8178,182282 -registration(r3672,c210,s1081).registration8179,182313 -registration(r3672,c210,s1081).registration8179,182313 -registration(r3673,c175,s1082).registration8180,182345 -registration(r3673,c175,s1082).registration8180,182345 -registration(r3674,c207,s1082).registration8181,182377 -registration(r3674,c207,s1082).registration8181,182377 -registration(r3675,c84,s1082).registration8182,182409 -registration(r3675,c84,s1082).registration8182,182409 -registration(r3676,c10,s1082).registration8183,182440 -registration(r3676,c10,s1082).registration8183,182440 -registration(r3677,c108,s1083).registration8184,182471 -registration(r3677,c108,s1083).registration8184,182471 -registration(r3678,c46,s1083).registration8185,182503 -registration(r3678,c46,s1083).registration8185,182503 -registration(r3679,c175,s1083).registration8186,182534 -registration(r3679,c175,s1083).registration8186,182534 -registration(r3680,c209,s1084).registration8187,182566 -registration(r3680,c209,s1084).registration8187,182566 -registration(r3681,c106,s1084).registration8188,182598 -registration(r3681,c106,s1084).registration8188,182598 -registration(r3682,c122,s1084).registration8189,182630 -registration(r3682,c122,s1084).registration8189,182630 -registration(r3683,c211,s1085).registration8190,182662 -registration(r3683,c211,s1085).registration8190,182662 -registration(r3684,c27,s1085).registration8191,182694 -registration(r3684,c27,s1085).registration8191,182694 -registration(r3685,c249,s1085).registration8192,182725 -registration(r3685,c249,s1085).registration8192,182725 -registration(r3686,c90,s1086).registration8193,182757 -registration(r3686,c90,s1086).registration8193,182757 -registration(r3687,c134,s1086).registration8194,182788 -registration(r3687,c134,s1086).registration8194,182788 -registration(r3688,c124,s1086).registration8195,182820 -registration(r3688,c124,s1086).registration8195,182820 -registration(r3689,c246,s1087).registration8196,182852 -registration(r3689,c246,s1087).registration8196,182852 -registration(r3690,c7,s1087).registration8197,182884 -registration(r3690,c7,s1087).registration8197,182884 -registration(r3691,c228,s1087).registration8198,182914 -registration(r3691,c228,s1087).registration8198,182914 -registration(r3692,c148,s1088).registration8199,182946 -registration(r3692,c148,s1088).registration8199,182946 -registration(r3693,c203,s1088).registration8200,182978 -registration(r3693,c203,s1088).registration8200,182978 -registration(r3694,c48,s1088).registration8201,183010 -registration(r3694,c48,s1088).registration8201,183010 -registration(r3695,c58,s1089).registration8202,183041 -registration(r3695,c58,s1089).registration8202,183041 -registration(r3696,c244,s1089).registration8203,183072 -registration(r3696,c244,s1089).registration8203,183072 -registration(r3697,c6,s1089).registration8204,183104 -registration(r3697,c6,s1089).registration8204,183104 -registration(r3698,c171,s1090).registration8205,183134 -registration(r3698,c171,s1090).registration8205,183134 -registration(r3699,c187,s1090).registration8206,183166 -registration(r3699,c187,s1090).registration8206,183166 -registration(r3700,c226,s1090).registration8207,183198 -registration(r3700,c226,s1090).registration8207,183198 -registration(r3701,c17,s1090).registration8208,183230 -registration(r3701,c17,s1090).registration8208,183230 -registration(r3702,c249,s1091).registration8209,183261 -registration(r3702,c249,s1091).registration8209,183261 -registration(r3703,c45,s1091).registration8210,183293 -registration(r3703,c45,s1091).registration8210,183293 -registration(r3704,c119,s1091).registration8211,183324 -registration(r3704,c119,s1091).registration8211,183324 -registration(r3705,c210,s1092).registration8212,183356 -registration(r3705,c210,s1092).registration8212,183356 -registration(r3706,c86,s1092).registration8213,183388 -registration(r3706,c86,s1092).registration8213,183388 -registration(r3707,c31,s1092).registration8214,183419 -registration(r3707,c31,s1092).registration8214,183419 -registration(r3708,c21,s1093).registration8215,183450 -registration(r3708,c21,s1093).registration8215,183450 -registration(r3709,c197,s1093).registration8216,183481 -registration(r3709,c197,s1093).registration8216,183481 -registration(r3710,c188,s1093).registration8217,183513 -registration(r3710,c188,s1093).registration8217,183513 -registration(r3711,c159,s1093).registration8218,183545 -registration(r3711,c159,s1093).registration8218,183545 -registration(r3712,c221,s1094).registration8219,183577 -registration(r3712,c221,s1094).registration8219,183577 -registration(r3713,c208,s1094).registration8220,183609 -registration(r3713,c208,s1094).registration8220,183609 -registration(r3714,c216,s1094).registration8221,183641 -registration(r3714,c216,s1094).registration8221,183641 -registration(r3715,c203,s1094).registration8222,183673 -registration(r3715,c203,s1094).registration8222,183673 -registration(r3716,c188,s1095).registration8223,183705 -registration(r3716,c188,s1095).registration8223,183705 -registration(r3717,c245,s1095).registration8224,183737 -registration(r3717,c245,s1095).registration8224,183737 -registration(r3718,c68,s1095).registration8225,183769 -registration(r3718,c68,s1095).registration8225,183769 -registration(r3719,c39,s1096).registration8226,183800 -registration(r3719,c39,s1096).registration8226,183800 -registration(r3720,c142,s1096).registration8227,183831 -registration(r3720,c142,s1096).registration8227,183831 -registration(r3721,c194,s1096).registration8228,183863 -registration(r3721,c194,s1096).registration8228,183863 -registration(r3722,c239,s1097).registration8229,183895 -registration(r3722,c239,s1097).registration8229,183895 -registration(r3723,c29,s1097).registration8230,183927 -registration(r3723,c29,s1097).registration8230,183927 -registration(r3724,c89,s1097).registration8231,183958 -registration(r3724,c89,s1097).registration8231,183958 -registration(r3725,c176,s1098).registration8232,183989 -registration(r3725,c176,s1098).registration8232,183989 -registration(r3726,c177,s1098).registration8233,184021 -registration(r3726,c177,s1098).registration8233,184021 -registration(r3727,c172,s1098).registration8234,184053 -registration(r3727,c172,s1098).registration8234,184053 -registration(r3728,c115,s1099).registration8235,184085 -registration(r3728,c115,s1099).registration8235,184085 -registration(r3729,c68,s1099).registration8236,184117 -registration(r3729,c68,s1099).registration8236,184117 -registration(r3730,c217,s1099).registration8237,184148 -registration(r3730,c217,s1099).registration8237,184148 -registration(r3731,c150,s1099).registration8238,184180 -registration(r3731,c150,s1099).registration8238,184180 -registration(r3732,c228,s1100).registration8239,184212 -registration(r3732,c228,s1100).registration8239,184212 -registration(r3733,c111,s1100).registration8240,184244 -registration(r3733,c111,s1100).registration8240,184244 -registration(r3734,c107,s1100).registration8241,184276 -registration(r3734,c107,s1100).registration8241,184276 -registration(r3735,c41,s1101).registration8242,184308 -registration(r3735,c41,s1101).registration8242,184308 -registration(r3736,c229,s1101).registration8243,184339 -registration(r3736,c229,s1101).registration8243,184339 -registration(r3737,c130,s1101).registration8244,184371 -registration(r3737,c130,s1101).registration8244,184371 -registration(r3738,c170,s1102).registration8245,184403 -registration(r3738,c170,s1102).registration8245,184403 -registration(r3739,c31,s1102).registration8246,184435 -registration(r3739,c31,s1102).registration8246,184435 -registration(r3740,c88,s1102).registration8247,184466 -registration(r3740,c88,s1102).registration8247,184466 -registration(r3741,c70,s1103).registration8248,184497 -registration(r3741,c70,s1103).registration8248,184497 -registration(r3742,c111,s1103).registration8249,184528 -registration(r3742,c111,s1103).registration8249,184528 -registration(r3743,c0,s1103).registration8250,184560 -registration(r3743,c0,s1103).registration8250,184560 -registration(r3744,c176,s1104).registration8251,184590 -registration(r3744,c176,s1104).registration8251,184590 -registration(r3745,c136,s1104).registration8252,184622 -registration(r3745,c136,s1104).registration8252,184622 -registration(r3746,c13,s1104).registration8253,184654 -registration(r3746,c13,s1104).registration8253,184654 -registration(r3747,c129,s1105).registration8254,184685 -registration(r3747,c129,s1105).registration8254,184685 -registration(r3748,c124,s1105).registration8255,184717 -registration(r3748,c124,s1105).registration8255,184717 -registration(r3749,c41,s1105).registration8256,184749 -registration(r3749,c41,s1105).registration8256,184749 -registration(r3750,c224,s1105).registration8257,184780 -registration(r3750,c224,s1105).registration8257,184780 -registration(r3751,c122,s1106).registration8258,184812 -registration(r3751,c122,s1106).registration8258,184812 -registration(r3752,c131,s1106).registration8259,184844 -registration(r3752,c131,s1106).registration8259,184844 -registration(r3753,c76,s1106).registration8260,184876 -registration(r3753,c76,s1106).registration8260,184876 -registration(r3754,c117,s1107).registration8261,184907 -registration(r3754,c117,s1107).registration8261,184907 -registration(r3755,c80,s1107).registration8262,184939 -registration(r3755,c80,s1107).registration8262,184939 -registration(r3756,c66,s1107).registration8263,184970 -registration(r3756,c66,s1107).registration8263,184970 -registration(r3757,c231,s1107).registration8264,185001 -registration(r3757,c231,s1107).registration8264,185001 -registration(r3758,c38,s1108).registration8265,185033 -registration(r3758,c38,s1108).registration8265,185033 -registration(r3759,c63,s1108).registration8266,185064 -registration(r3759,c63,s1108).registration8266,185064 -registration(r3760,c64,s1108).registration8267,185095 -registration(r3760,c64,s1108).registration8267,185095 -registration(r3761,c173,s1109).registration8268,185126 -registration(r3761,c173,s1109).registration8268,185126 -registration(r3762,c206,s1109).registration8269,185158 -registration(r3762,c206,s1109).registration8269,185158 -registration(r3763,c92,s1109).registration8270,185190 -registration(r3763,c92,s1109).registration8270,185190 -registration(r3764,c126,s1109).registration8271,185221 -registration(r3764,c126,s1109).registration8271,185221 -registration(r3765,c27,s1110).registration8272,185253 -registration(r3765,c27,s1110).registration8272,185253 -registration(r3766,c182,s1110).registration8273,185284 -registration(r3766,c182,s1110).registration8273,185284 -registration(r3767,c56,s1110).registration8274,185316 -registration(r3767,c56,s1110).registration8274,185316 -registration(r3768,c96,s1111).registration8275,185347 -registration(r3768,c96,s1111).registration8275,185347 -registration(r3769,c49,s1111).registration8276,185378 -registration(r3769,c49,s1111).registration8276,185378 -registration(r3770,c70,s1111).registration8277,185409 -registration(r3770,c70,s1111).registration8277,185409 -registration(r3771,c201,s1112).registration8278,185440 -registration(r3771,c201,s1112).registration8278,185440 -registration(r3772,c141,s1112).registration8279,185472 -registration(r3772,c141,s1112).registration8279,185472 -registration(r3773,c23,s1112).registration8280,185504 -registration(r3773,c23,s1112).registration8280,185504 -registration(r3774,c104,s1112).registration8281,185535 -registration(r3774,c104,s1112).registration8281,185535 -registration(r3775,c205,s1113).registration8282,185567 -registration(r3775,c205,s1113).registration8282,185567 -registration(r3776,c10,s1113).registration8283,185599 -registration(r3776,c10,s1113).registration8283,185599 -registration(r3777,c79,s1113).registration8284,185630 -registration(r3777,c79,s1113).registration8284,185630 -registration(r3778,c141,s1113).registration8285,185661 -registration(r3778,c141,s1113).registration8285,185661 -registration(r3779,c249,s1114).registration8286,185693 -registration(r3779,c249,s1114).registration8286,185693 -registration(r3780,c254,s1114).registration8287,185725 -registration(r3780,c254,s1114).registration8287,185725 -registration(r3781,c18,s1114).registration8288,185757 -registration(r3781,c18,s1114).registration8288,185757 -registration(r3782,c112,s1115).registration8289,185788 -registration(r3782,c112,s1115).registration8289,185788 -registration(r3783,c181,s1115).registration8290,185820 -registration(r3783,c181,s1115).registration8290,185820 -registration(r3784,c74,s1115).registration8291,185852 -registration(r3784,c74,s1115).registration8291,185852 -registration(r3785,c1,s1116).registration8292,185883 -registration(r3785,c1,s1116).registration8292,185883 -registration(r3786,c143,s1116).registration8293,185913 -registration(r3786,c143,s1116).registration8293,185913 -registration(r3787,c108,s1116).registration8294,185945 -registration(r3787,c108,s1116).registration8294,185945 -registration(r3788,c158,s1117).registration8295,185977 -registration(r3788,c158,s1117).registration8295,185977 -registration(r3789,c123,s1117).registration8296,186009 -registration(r3789,c123,s1117).registration8296,186009 -registration(r3790,c48,s1117).registration8297,186041 -registration(r3790,c48,s1117).registration8297,186041 -registration(r3791,c190,s1118).registration8298,186072 -registration(r3791,c190,s1118).registration8298,186072 -registration(r3792,c97,s1118).registration8299,186104 -registration(r3792,c97,s1118).registration8299,186104 -registration(r3793,c207,s1118).registration8300,186135 -registration(r3793,c207,s1118).registration8300,186135 -registration(r3794,c155,s1119).registration8301,186167 -registration(r3794,c155,s1119).registration8301,186167 -registration(r3795,c205,s1119).registration8302,186199 -registration(r3795,c205,s1119).registration8302,186199 -registration(r3796,c25,s1119).registration8303,186231 -registration(r3796,c25,s1119).registration8303,186231 -registration(r3797,c167,s1120).registration8304,186262 -registration(r3797,c167,s1120).registration8304,186262 -registration(r3798,c79,s1120).registration8305,186294 -registration(r3798,c79,s1120).registration8305,186294 -registration(r3799,c252,s1120).registration8306,186325 -registration(r3799,c252,s1120).registration8306,186325 -registration(r3800,c200,s1121).registration8307,186357 -registration(r3800,c200,s1121).registration8307,186357 -registration(r3801,c42,s1121).registration8308,186389 -registration(r3801,c42,s1121).registration8308,186389 -registration(r3802,c171,s1121).registration8309,186420 -registration(r3802,c171,s1121).registration8309,186420 -registration(r3803,c129,s1121).registration8310,186452 -registration(r3803,c129,s1121).registration8310,186452 -registration(r3804,c21,s1122).registration8311,186484 -registration(r3804,c21,s1122).registration8311,186484 -registration(r3805,c16,s1122).registration8312,186515 -registration(r3805,c16,s1122).registration8312,186515 -registration(r3806,c232,s1122).registration8313,186546 -registration(r3806,c232,s1122).registration8313,186546 -registration(r3807,c135,s1122).registration8314,186578 -registration(r3807,c135,s1122).registration8314,186578 -registration(r3808,c197,s1123).registration8315,186610 -registration(r3808,c197,s1123).registration8315,186610 -registration(r3809,c49,s1123).registration8316,186642 -registration(r3809,c49,s1123).registration8316,186642 -registration(r3810,c210,s1123).registration8317,186673 -registration(r3810,c210,s1123).registration8317,186673 -registration(r3811,c240,s1123).registration8318,186705 -registration(r3811,c240,s1123).registration8318,186705 -registration(r3812,c217,s1124).registration8319,186737 -registration(r3812,c217,s1124).registration8319,186737 -registration(r3813,c178,s1124).registration8320,186769 -registration(r3813,c178,s1124).registration8320,186769 -registration(r3814,c254,s1124).registration8321,186801 -registration(r3814,c254,s1124).registration8321,186801 -registration(r3815,c23,s1125).registration8322,186833 -registration(r3815,c23,s1125).registration8322,186833 -registration(r3816,c203,s1125).registration8323,186864 -registration(r3816,c203,s1125).registration8323,186864 -registration(r3817,c125,s1125).registration8324,186896 -registration(r3817,c125,s1125).registration8324,186896 -registration(r3818,c120,s1125).registration8325,186928 -registration(r3818,c120,s1125).registration8325,186928 -registration(r3819,c120,s1126).registration8326,186960 -registration(r3819,c120,s1126).registration8326,186960 -registration(r3820,c19,s1126).registration8327,186992 -registration(r3820,c19,s1126).registration8327,186992 -registration(r3821,c66,s1126).registration8328,187023 -registration(r3821,c66,s1126).registration8328,187023 -registration(r3822,c85,s1127).registration8329,187054 -registration(r3822,c85,s1127).registration8329,187054 -registration(r3823,c36,s1127).registration8330,187085 -registration(r3823,c36,s1127).registration8330,187085 -registration(r3824,c60,s1127).registration8331,187116 -registration(r3824,c60,s1127).registration8331,187116 -registration(r3825,c36,s1128).registration8332,187147 -registration(r3825,c36,s1128).registration8332,187147 -registration(r3826,c180,s1128).registration8333,187178 -registration(r3826,c180,s1128).registration8333,187178 -registration(r3827,c55,s1128).registration8334,187210 -registration(r3827,c55,s1128).registration8334,187210 -registration(r3828,c104,s1129).registration8335,187241 -registration(r3828,c104,s1129).registration8335,187241 -registration(r3829,c125,s1129).registration8336,187273 -registration(r3829,c125,s1129).registration8336,187273 -registration(r3830,c134,s1129).registration8337,187305 -registration(r3830,c134,s1129).registration8337,187305 -registration(r3831,c94,s1130).registration8338,187337 -registration(r3831,c94,s1130).registration8338,187337 -registration(r3832,c11,s1130).registration8339,187368 -registration(r3832,c11,s1130).registration8339,187368 -registration(r3833,c175,s1130).registration8340,187399 -registration(r3833,c175,s1130).registration8340,187399 -registration(r3834,c198,s1131).registration8341,187431 -registration(r3834,c198,s1131).registration8341,187431 -registration(r3835,c158,s1131).registration8342,187463 -registration(r3835,c158,s1131).registration8342,187463 -registration(r3836,c8,s1131).registration8343,187495 -registration(r3836,c8,s1131).registration8343,187495 -registration(r3837,c129,s1132).registration8344,187525 -registration(r3837,c129,s1132).registration8344,187525 -registration(r3838,c254,s1132).registration8345,187557 -registration(r3838,c254,s1132).registration8345,187557 -registration(r3839,c205,s1132).registration8346,187589 -registration(r3839,c205,s1132).registration8346,187589 -registration(r3840,c141,s1133).registration8347,187621 -registration(r3840,c141,s1133).registration8347,187621 -registration(r3841,c24,s1133).registration8348,187653 -registration(r3841,c24,s1133).registration8348,187653 -registration(r3842,c198,s1133).registration8349,187684 -registration(r3842,c198,s1133).registration8349,187684 -registration(r3843,c252,s1134).registration8350,187716 -registration(r3843,c252,s1134).registration8350,187716 -registration(r3844,c236,s1134).registration8351,187748 -registration(r3844,c236,s1134).registration8351,187748 -registration(r3845,c55,s1134).registration8352,187780 -registration(r3845,c55,s1134).registration8352,187780 -registration(r3846,c151,s1134).registration8353,187811 -registration(r3846,c151,s1134).registration8353,187811 -registration(r3847,c155,s1135).registration8354,187843 -registration(r3847,c155,s1135).registration8354,187843 -registration(r3848,c20,s1135).registration8355,187875 -registration(r3848,c20,s1135).registration8355,187875 -registration(r3849,c56,s1135).registration8356,187906 -registration(r3849,c56,s1135).registration8356,187906 -registration(r3850,c150,s1136).registration8357,187937 -registration(r3850,c150,s1136).registration8357,187937 -registration(r3851,c255,s1136).registration8358,187969 -registration(r3851,c255,s1136).registration8358,187969 -registration(r3852,c115,s1136).registration8359,188001 -registration(r3852,c115,s1136).registration8359,188001 -registration(r3853,c59,s1137).registration8360,188033 -registration(r3853,c59,s1137).registration8360,188033 -registration(r3854,c9,s1137).registration8361,188064 -registration(r3854,c9,s1137).registration8361,188064 -registration(r3855,c148,s1137).registration8362,188094 -registration(r3855,c148,s1137).registration8362,188094 -registration(r3856,c21,s1138).registration8363,188126 -registration(r3856,c21,s1138).registration8363,188126 -registration(r3857,c192,s1138).registration8364,188157 -registration(r3857,c192,s1138).registration8364,188157 -registration(r3858,c145,s1138).registration8365,188189 -registration(r3858,c145,s1138).registration8365,188189 -registration(r3859,c30,s1139).registration8366,188221 -registration(r3859,c30,s1139).registration8366,188221 -registration(r3860,c242,s1139).registration8367,188252 -registration(r3860,c242,s1139).registration8367,188252 -registration(r3861,c40,s1139).registration8368,188284 -registration(r3861,c40,s1139).registration8368,188284 -registration(r3862,c36,s1140).registration8369,188315 -registration(r3862,c36,s1140).registration8369,188315 -registration(r3863,c212,s1140).registration8370,188346 -registration(r3863,c212,s1140).registration8370,188346 -registration(r3864,c173,s1140).registration8371,188378 -registration(r3864,c173,s1140).registration8371,188378 -registration(r3865,c96,s1141).registration8372,188410 -registration(r3865,c96,s1141).registration8372,188410 -registration(r3866,c242,s1141).registration8373,188441 -registration(r3866,c242,s1141).registration8373,188441 -registration(r3867,c129,s1141).registration8374,188473 -registration(r3867,c129,s1141).registration8374,188473 -registration(r3868,c70,s1142).registration8375,188505 -registration(r3868,c70,s1142).registration8375,188505 -registration(r3869,c46,s1142).registration8376,188536 -registration(r3869,c46,s1142).registration8376,188536 -registration(r3870,c231,s1142).registration8377,188567 -registration(r3870,c231,s1142).registration8377,188567 -registration(r3871,c114,s1143).registration8378,188599 -registration(r3871,c114,s1143).registration8378,188599 -registration(r3872,c246,s1143).registration8379,188631 -registration(r3872,c246,s1143).registration8379,188631 -registration(r3873,c161,s1143).registration8380,188663 -registration(r3873,c161,s1143).registration8380,188663 -registration(r3874,c183,s1143).registration8381,188695 -registration(r3874,c183,s1143).registration8381,188695 -registration(r3875,c27,s1144).registration8382,188727 -registration(r3875,c27,s1144).registration8382,188727 -registration(r3876,c119,s1144).registration8383,188758 -registration(r3876,c119,s1144).registration8383,188758 -registration(r3877,c247,s1144).registration8384,188790 -registration(r3877,c247,s1144).registration8384,188790 -registration(r3878,c22,s1145).registration8385,188822 -registration(r3878,c22,s1145).registration8385,188822 -registration(r3879,c231,s1145).registration8386,188853 -registration(r3879,c231,s1145).registration8386,188853 -registration(r3880,c0,s1145).registration8387,188885 -registration(r3880,c0,s1145).registration8387,188885 -registration(r3881,c37,s1146).registration8388,188915 -registration(r3881,c37,s1146).registration8388,188915 -registration(r3882,c211,s1146).registration8389,188946 -registration(r3882,c211,s1146).registration8389,188946 -registration(r3883,c11,s1146).registration8390,188978 -registration(r3883,c11,s1146).registration8390,188978 -registration(r3884,c108,s1147).registration8391,189009 -registration(r3884,c108,s1147).registration8391,189009 -registration(r3885,c111,s1147).registration8392,189041 -registration(r3885,c111,s1147).registration8392,189041 -registration(r3886,c193,s1147).registration8393,189073 -registration(r3886,c193,s1147).registration8393,189073 -registration(r3887,c85,s1147).registration8394,189105 -registration(r3887,c85,s1147).registration8394,189105 -registration(r3888,c50,s1147).registration8395,189136 -registration(r3888,c50,s1147).registration8395,189136 -registration(r3889,c61,s1148).registration8396,189167 -registration(r3889,c61,s1148).registration8396,189167 -registration(r3890,c195,s1148).registration8397,189198 -registration(r3890,c195,s1148).registration8397,189198 -registration(r3891,c205,s1148).registration8398,189230 -registration(r3891,c205,s1148).registration8398,189230 -registration(r3892,c110,s1149).registration8399,189262 -registration(r3892,c110,s1149).registration8399,189262 -registration(r3893,c182,s1149).registration8400,189294 -registration(r3893,c182,s1149).registration8400,189294 -registration(r3894,c112,s1149).registration8401,189326 -registration(r3894,c112,s1149).registration8401,189326 -registration(r3895,c232,s1150).registration8402,189358 -registration(r3895,c232,s1150).registration8402,189358 -registration(r3896,c203,s1150).registration8403,189390 -registration(r3896,c203,s1150).registration8403,189390 -registration(r3897,c197,s1150).registration8404,189422 -registration(r3897,c197,s1150).registration8404,189422 -registration(r3898,c173,s1151).registration8405,189454 -registration(r3898,c173,s1151).registration8405,189454 -registration(r3899,c194,s1151).registration8406,189486 -registration(r3899,c194,s1151).registration8406,189486 -registration(r3900,c225,s1151).registration8407,189518 -registration(r3900,c225,s1151).registration8407,189518 -registration(r3901,c231,s1151).registration8408,189550 -registration(r3901,c231,s1151).registration8408,189550 -registration(r3902,c22,s1152).registration8409,189582 -registration(r3902,c22,s1152).registration8409,189582 -registration(r3903,c100,s1152).registration8410,189613 -registration(r3903,c100,s1152).registration8410,189613 -registration(r3904,c243,s1152).registration8411,189645 -registration(r3904,c243,s1152).registration8411,189645 -registration(r3905,c180,s1153).registration8412,189677 -registration(r3905,c180,s1153).registration8412,189677 -registration(r3906,c134,s1153).registration8413,189709 -registration(r3906,c134,s1153).registration8413,189709 -registration(r3907,c41,s1153).registration8414,189741 -registration(r3907,c41,s1153).registration8414,189741 -registration(r3908,c103,s1154).registration8415,189772 -registration(r3908,c103,s1154).registration8415,189772 -registration(r3909,c127,s1154).registration8416,189804 -registration(r3909,c127,s1154).registration8416,189804 -registration(r3910,c136,s1154).registration8417,189836 -registration(r3910,c136,s1154).registration8417,189836 -registration(r3911,c56,s1154).registration8418,189868 -registration(r3911,c56,s1154).registration8418,189868 -registration(r3912,c205,s1155).registration8419,189899 -registration(r3912,c205,s1155).registration8419,189899 -registration(r3913,c168,s1155).registration8420,189931 -registration(r3913,c168,s1155).registration8420,189931 -registration(r3914,c202,s1155).registration8421,189963 -registration(r3914,c202,s1155).registration8421,189963 -registration(r3915,c151,s1156).registration8422,189995 -registration(r3915,c151,s1156).registration8422,189995 -registration(r3916,c101,s1156).registration8423,190027 -registration(r3916,c101,s1156).registration8423,190027 -registration(r3917,c82,s1156).registration8424,190059 -registration(r3917,c82,s1156).registration8424,190059 -registration(r3918,c20,s1156).registration8425,190090 -registration(r3918,c20,s1156).registration8425,190090 -registration(r3919,c91,s1157).registration8426,190121 -registration(r3919,c91,s1157).registration8426,190121 -registration(r3920,c30,s1157).registration8427,190152 -registration(r3920,c30,s1157).registration8427,190152 -registration(r3921,c252,s1157).registration8428,190183 -registration(r3921,c252,s1157).registration8428,190183 -registration(r3922,c53,s1157).registration8429,190215 -registration(r3922,c53,s1157).registration8429,190215 -registration(r3923,c2,s1158).registration8430,190246 -registration(r3923,c2,s1158).registration8430,190246 -registration(r3924,c184,s1158).registration8431,190276 -registration(r3924,c184,s1158).registration8431,190276 -registration(r3925,c52,s1158).registration8432,190308 -registration(r3925,c52,s1158).registration8432,190308 -registration(r3926,c93,s1159).registration8433,190339 -registration(r3926,c93,s1159).registration8433,190339 -registration(r3927,c116,s1159).registration8434,190370 -registration(r3927,c116,s1159).registration8434,190370 -registration(r3928,c250,s1159).registration8435,190402 -registration(r3928,c250,s1159).registration8435,190402 -registration(r3929,c130,s1160).registration8436,190434 -registration(r3929,c130,s1160).registration8436,190434 -registration(r3930,c220,s1160).registration8437,190466 -registration(r3930,c220,s1160).registration8437,190466 -registration(r3931,c43,s1160).registration8438,190498 -registration(r3931,c43,s1160).registration8438,190498 -registration(r3932,c213,s1161).registration8439,190529 -registration(r3932,c213,s1161).registration8439,190529 -registration(r3933,c68,s1161).registration8440,190561 -registration(r3933,c68,s1161).registration8440,190561 -registration(r3934,c72,s1161).registration8441,190592 -registration(r3934,c72,s1161).registration8441,190592 -registration(r3935,c173,s1162).registration8442,190623 -registration(r3935,c173,s1162).registration8442,190623 -registration(r3936,c187,s1162).registration8443,190655 -registration(r3936,c187,s1162).registration8443,190655 -registration(r3937,c85,s1162).registration8444,190687 -registration(r3937,c85,s1162).registration8444,190687 -registration(r3938,c177,s1163).registration8445,190718 -registration(r3938,c177,s1163).registration8445,190718 -registration(r3939,c224,s1163).registration8446,190750 -registration(r3939,c224,s1163).registration8446,190750 -registration(r3940,c203,s1163).registration8447,190782 -registration(r3940,c203,s1163).registration8447,190782 -registration(r3941,c44,s1163).registration8448,190814 -registration(r3941,c44,s1163).registration8448,190814 -registration(r3942,c195,s1164).registration8449,190845 -registration(r3942,c195,s1164).registration8449,190845 -registration(r3943,c205,s1164).registration8450,190877 -registration(r3943,c205,s1164).registration8450,190877 -registration(r3944,c95,s1164).registration8451,190909 -registration(r3944,c95,s1164).registration8451,190909 -registration(r3945,c188,s1164).registration8452,190940 -registration(r3945,c188,s1164).registration8452,190940 -registration(r3946,c239,s1165).registration8453,190972 -registration(r3946,c239,s1165).registration8453,190972 -registration(r3947,c6,s1165).registration8454,191004 -registration(r3947,c6,s1165).registration8454,191004 -registration(r3948,c129,s1165).registration8455,191034 -registration(r3948,c129,s1165).registration8455,191034 -registration(r3949,c93,s1166).registration8456,191066 -registration(r3949,c93,s1166).registration8456,191066 -registration(r3950,c15,s1166).registration8457,191097 -registration(r3950,c15,s1166).registration8457,191097 -registration(r3951,c1,s1166).registration8458,191128 -registration(r3951,c1,s1166).registration8458,191128 -registration(r3952,c229,s1166).registration8459,191158 -registration(r3952,c229,s1166).registration8459,191158 -registration(r3953,c79,s1167).registration8460,191190 -registration(r3953,c79,s1167).registration8460,191190 -registration(r3954,c76,s1167).registration8461,191221 -registration(r3954,c76,s1167).registration8461,191221 -registration(r3955,c33,s1167).registration8462,191252 -registration(r3955,c33,s1167).registration8462,191252 -registration(r3956,c121,s1167).registration8463,191283 -registration(r3956,c121,s1167).registration8463,191283 -registration(r3957,c190,s1168).registration8464,191315 -registration(r3957,c190,s1168).registration8464,191315 -registration(r3958,c215,s1168).registration8465,191347 -registration(r3958,c215,s1168).registration8465,191347 -registration(r3959,c41,s1168).registration8466,191379 -registration(r3959,c41,s1168).registration8466,191379 -registration(r3960,c235,s1169).registration8467,191410 -registration(r3960,c235,s1169).registration8467,191410 -registration(r3961,c179,s1169).registration8468,191442 -registration(r3961,c179,s1169).registration8468,191442 -registration(r3962,c207,s1169).registration8469,191474 -registration(r3962,c207,s1169).registration8469,191474 -registration(r3963,c48,s1170).registration8470,191506 -registration(r3963,c48,s1170).registration8470,191506 -registration(r3964,c41,s1170).registration8471,191537 -registration(r3964,c41,s1170).registration8471,191537 -registration(r3965,c143,s1170).registration8472,191568 -registration(r3965,c143,s1170).registration8472,191568 -registration(r3966,c150,s1170).registration8473,191600 -registration(r3966,c150,s1170).registration8473,191600 -registration(r3967,c111,s1171).registration8474,191632 -registration(r3967,c111,s1171).registration8474,191632 -registration(r3968,c252,s1171).registration8475,191664 -registration(r3968,c252,s1171).registration8475,191664 -registration(r3969,c29,s1171).registration8476,191696 -registration(r3969,c29,s1171).registration8476,191696 -registration(r3970,c31,s1171).registration8477,191727 -registration(r3970,c31,s1171).registration8477,191727 -registration(r3971,c212,s1172).registration8478,191758 -registration(r3971,c212,s1172).registration8478,191758 -registration(r3972,c240,s1172).registration8479,191790 -registration(r3972,c240,s1172).registration8479,191790 -registration(r3973,c99,s1172).registration8480,191822 -registration(r3973,c99,s1172).registration8480,191822 -registration(r3974,c60,s1172).registration8481,191853 -registration(r3974,c60,s1172).registration8481,191853 -registration(r3975,c33,s1173).registration8482,191884 -registration(r3975,c33,s1173).registration8482,191884 -registration(r3976,c70,s1173).registration8483,191915 -registration(r3976,c70,s1173).registration8483,191915 -registration(r3977,c255,s1173).registration8484,191946 -registration(r3977,c255,s1173).registration8484,191946 -registration(r3978,c41,s1173).registration8485,191978 -registration(r3978,c41,s1173).registration8485,191978 -registration(r3979,c127,s1174).registration8486,192009 -registration(r3979,c127,s1174).registration8486,192009 -registration(r3980,c192,s1174).registration8487,192041 -registration(r3980,c192,s1174).registration8487,192041 -registration(r3981,c20,s1174).registration8488,192073 -registration(r3981,c20,s1174).registration8488,192073 -registration(r3982,c195,s1175).registration8489,192104 -registration(r3982,c195,s1175).registration8489,192104 -registration(r3983,c181,s1175).registration8490,192136 -registration(r3983,c181,s1175).registration8490,192136 -registration(r3984,c192,s1175).registration8491,192168 -registration(r3984,c192,s1175).registration8491,192168 -registration(r3985,c175,s1176).registration8492,192200 -registration(r3985,c175,s1176).registration8492,192200 -registration(r3986,c6,s1176).registration8493,192232 -registration(r3986,c6,s1176).registration8493,192232 -registration(r3987,c217,s1176).registration8494,192262 -registration(r3987,c217,s1176).registration8494,192262 -registration(r3988,c2,s1176).registration8495,192294 -registration(r3988,c2,s1176).registration8495,192294 -registration(r3989,c236,s1177).registration8496,192324 -registration(r3989,c236,s1177).registration8496,192324 -registration(r3990,c14,s1177).registration8497,192356 -registration(r3990,c14,s1177).registration8497,192356 -registration(r3991,c22,s1177).registration8498,192387 -registration(r3991,c22,s1177).registration8498,192387 -registration(r3992,c122,s1178).registration8499,192418 -registration(r3992,c122,s1178).registration8499,192418 -registration(r3993,c229,s1178).registration8500,192450 -registration(r3993,c229,s1178).registration8500,192450 -registration(r3994,c60,s1178).registration8501,192482 -registration(r3994,c60,s1178).registration8501,192482 -registration(r3995,c6,s1178).registration8502,192513 -registration(r3995,c6,s1178).registration8502,192513 -registration(r3996,c0,s1179).registration8503,192543 -registration(r3996,c0,s1179).registration8503,192543 -registration(r3997,c231,s1179).registration8504,192573 -registration(r3997,c231,s1179).registration8504,192573 -registration(r3998,c158,s1179).registration8505,192605 -registration(r3998,c158,s1179).registration8505,192605 -registration(r3999,c103,s1179).registration8506,192637 -registration(r3999,c103,s1179).registration8506,192637 -registration(r4000,c61,s1180).registration8507,192669 -registration(r4000,c61,s1180).registration8507,192669 -registration(r4001,c155,s1180).registration8508,192700 -registration(r4001,c155,s1180).registration8508,192700 -registration(r4002,c240,s1180).registration8509,192732 -registration(r4002,c240,s1180).registration8509,192732 -registration(r4003,c81,s1180).registration8510,192764 -registration(r4003,c81,s1180).registration8510,192764 -registration(r4004,c238,s1181).registration8511,192795 -registration(r4004,c238,s1181).registration8511,192795 -registration(r4005,c149,s1181).registration8512,192827 -registration(r4005,c149,s1181).registration8512,192827 -registration(r4006,c96,s1181).registration8513,192859 -registration(r4006,c96,s1181).registration8513,192859 -registration(r4007,c128,s1182).registration8514,192890 -registration(r4007,c128,s1182).registration8514,192890 -registration(r4008,c247,s1182).registration8515,192922 -registration(r4008,c247,s1182).registration8515,192922 -registration(r4009,c101,s1182).registration8516,192954 -registration(r4009,c101,s1182).registration8516,192954 -registration(r4010,c123,s1182).registration8517,192986 -registration(r4010,c123,s1182).registration8517,192986 -registration(r4011,c45,s1183).registration8518,193018 -registration(r4011,c45,s1183).registration8518,193018 -registration(r4012,c5,s1183).registration8519,193049 -registration(r4012,c5,s1183).registration8519,193049 -registration(r4013,c246,s1183).registration8520,193079 -registration(r4013,c246,s1183).registration8520,193079 -registration(r4014,c67,s1183).registration8521,193111 -registration(r4014,c67,s1183).registration8521,193111 -registration(r4015,c26,s1184).registration8522,193142 -registration(r4015,c26,s1184).registration8522,193142 -registration(r4016,c196,s1184).registration8523,193173 -registration(r4016,c196,s1184).registration8523,193173 -registration(r4017,c247,s1184).registration8524,193205 -registration(r4017,c247,s1184).registration8524,193205 -registration(r4018,c99,s1184).registration8525,193237 -registration(r4018,c99,s1184).registration8525,193237 -registration(r4019,c105,s1184).registration8526,193268 -registration(r4019,c105,s1184).registration8526,193268 -registration(r4020,c195,s1185).registration8527,193300 -registration(r4020,c195,s1185).registration8527,193300 -registration(r4021,c94,s1185).registration8528,193332 -registration(r4021,c94,s1185).registration8528,193332 -registration(r4022,c4,s1185).registration8529,193363 -registration(r4022,c4,s1185).registration8529,193363 -registration(r4023,c86,s1186).registration8530,193393 -registration(r4023,c86,s1186).registration8530,193393 -registration(r4024,c102,s1186).registration8531,193424 -registration(r4024,c102,s1186).registration8531,193424 -registration(r4025,c76,s1186).registration8532,193456 -registration(r4025,c76,s1186).registration8532,193456 -registration(r4026,c66,s1187).registration8533,193487 -registration(r4026,c66,s1187).registration8533,193487 -registration(r4027,c92,s1187).registration8534,193518 -registration(r4027,c92,s1187).registration8534,193518 -registration(r4028,c72,s1187).registration8535,193549 -registration(r4028,c72,s1187).registration8535,193549 -registration(r4029,c180,s1188).registration8536,193580 -registration(r4029,c180,s1188).registration8536,193580 -registration(r4030,c63,s1188).registration8537,193612 -registration(r4030,c63,s1188).registration8537,193612 -registration(r4031,c61,s1188).registration8538,193643 -registration(r4031,c61,s1188).registration8538,193643 -registration(r4032,c52,s1189).registration8539,193674 -registration(r4032,c52,s1189).registration8539,193674 -registration(r4033,c245,s1189).registration8540,193705 -registration(r4033,c245,s1189).registration8540,193705 -registration(r4034,c134,s1189).registration8541,193737 -registration(r4034,c134,s1189).registration8541,193737 -registration(r4035,c15,s1189).registration8542,193769 -registration(r4035,c15,s1189).registration8542,193769 -registration(r4036,c35,s1190).registration8543,193800 -registration(r4036,c35,s1190).registration8543,193800 -registration(r4037,c16,s1190).registration8544,193831 -registration(r4037,c16,s1190).registration8544,193831 -registration(r4038,c175,s1190).registration8545,193862 -registration(r4038,c175,s1190).registration8545,193862 -registration(r4039,c113,s1191).registration8546,193894 -registration(r4039,c113,s1191).registration8546,193894 -registration(r4040,c163,s1191).registration8547,193926 -registration(r4040,c163,s1191).registration8547,193926 -registration(r4041,c126,s1191).registration8548,193958 -registration(r4041,c126,s1191).registration8548,193958 -registration(r4042,c2,s1191).registration8549,193990 -registration(r4042,c2,s1191).registration8549,193990 -registration(r4043,c140,s1192).registration8550,194020 -registration(r4043,c140,s1192).registration8550,194020 -registration(r4044,c79,s1192).registration8551,194052 -registration(r4044,c79,s1192).registration8551,194052 -registration(r4045,c194,s1192).registration8552,194083 -registration(r4045,c194,s1192).registration8552,194083 -registration(r4046,c29,s1193).registration8553,194115 -registration(r4046,c29,s1193).registration8553,194115 -registration(r4047,c156,s1193).registration8554,194146 -registration(r4047,c156,s1193).registration8554,194146 -registration(r4048,c204,s1193).registration8555,194178 -registration(r4048,c204,s1193).registration8555,194178 -registration(r4049,c11,s1194).registration8556,194210 -registration(r4049,c11,s1194).registration8556,194210 -registration(r4050,c31,s1194).registration8557,194241 -registration(r4050,c31,s1194).registration8557,194241 -registration(r4051,c52,s1194).registration8558,194272 -registration(r4051,c52,s1194).registration8558,194272 -registration(r4052,c39,s1195).registration8559,194303 -registration(r4052,c39,s1195).registration8559,194303 -registration(r4053,c215,s1195).registration8560,194334 -registration(r4053,c215,s1195).registration8560,194334 -registration(r4054,c126,s1195).registration8561,194366 -registration(r4054,c126,s1195).registration8561,194366 -registration(r4055,c162,s1195).registration8562,194398 -registration(r4055,c162,s1195).registration8562,194398 -registration(r4056,c72,s1196).registration8563,194430 -registration(r4056,c72,s1196).registration8563,194430 -registration(r4057,c208,s1196).registration8564,194461 -registration(r4057,c208,s1196).registration8564,194461 -registration(r4058,c230,s1196).registration8565,194493 -registration(r4058,c230,s1196).registration8565,194493 -registration(r4059,c137,s1197).registration8566,194525 -registration(r4059,c137,s1197).registration8566,194525 -registration(r4060,c64,s1197).registration8567,194557 -registration(r4060,c64,s1197).registration8567,194557 -registration(r4061,c104,s1197).registration8568,194588 -registration(r4061,c104,s1197).registration8568,194588 -registration(r4062,c244,s1197).registration8569,194620 -registration(r4062,c244,s1197).registration8569,194620 -registration(r4063,c220,s1198).registration8570,194652 -registration(r4063,c220,s1198).registration8570,194652 -registration(r4064,c214,s1198).registration8571,194684 -registration(r4064,c214,s1198).registration8571,194684 -registration(r4065,c71,s1198).registration8572,194716 -registration(r4065,c71,s1198).registration8572,194716 -registration(r4066,c227,s1199).registration8573,194747 -registration(r4066,c227,s1199).registration8573,194747 -registration(r4067,c58,s1199).registration8574,194779 -registration(r4067,c58,s1199).registration8574,194779 -registration(r4068,c212,s1199).registration8575,194810 -registration(r4068,c212,s1199).registration8575,194810 -registration(r4069,c243,s1200).registration8576,194842 -registration(r4069,c243,s1200).registration8576,194842 -registration(r4070,c101,s1200).registration8577,194874 -registration(r4070,c101,s1200).registration8577,194874 -registration(r4071,c149,s1200).registration8578,194906 -registration(r4071,c149,s1200).registration8578,194906 -registration(r4072,c108,s1201).registration8579,194938 -registration(r4072,c108,s1201).registration8579,194938 -registration(r4073,c197,s1201).registration8580,194970 -registration(r4073,c197,s1201).registration8580,194970 -registration(r4074,c196,s1201).registration8581,195002 -registration(r4074,c196,s1201).registration8581,195002 -registration(r4075,c13,s1202).registration8582,195034 -registration(r4075,c13,s1202).registration8582,195034 -registration(r4076,c95,s1202).registration8583,195065 -registration(r4076,c95,s1202).registration8583,195065 -registration(r4077,c77,s1202).registration8584,195096 -registration(r4077,c77,s1202).registration8584,195096 -registration(r4078,c214,s1203).registration8585,195127 -registration(r4078,c214,s1203).registration8585,195127 -registration(r4079,c16,s1203).registration8586,195159 -registration(r4079,c16,s1203).registration8586,195159 -registration(r4080,c9,s1203).registration8587,195190 -registration(r4080,c9,s1203).registration8587,195190 -registration(r4081,c253,s1203).registration8588,195220 -registration(r4081,c253,s1203).registration8588,195220 -registration(r4082,c62,s1204).registration8589,195252 -registration(r4082,c62,s1204).registration8589,195252 -registration(r4083,c253,s1204).registration8590,195283 -registration(r4083,c253,s1204).registration8590,195283 -registration(r4084,c69,s1204).registration8591,195315 -registration(r4084,c69,s1204).registration8591,195315 -registration(r4085,c40,s1205).registration8592,195346 -registration(r4085,c40,s1205).registration8592,195346 -registration(r4086,c231,s1205).registration8593,195377 -registration(r4086,c231,s1205).registration8593,195377 -registration(r4087,c199,s1205).registration8594,195409 -registration(r4087,c199,s1205).registration8594,195409 -registration(r4088,c185,s1205).registration8595,195441 -registration(r4088,c185,s1205).registration8595,195441 -registration(r4089,c194,s1206).registration8596,195473 -registration(r4089,c194,s1206).registration8596,195473 -registration(r4090,c195,s1206).registration8597,195505 -registration(r4090,c195,s1206).registration8597,195505 -registration(r4091,c1,s1206).registration8598,195537 -registration(r4091,c1,s1206).registration8598,195537 -registration(r4092,c198,s1206).registration8599,195567 -registration(r4092,c198,s1206).registration8599,195567 -registration(r4093,c22,s1207).registration8600,195599 -registration(r4093,c22,s1207).registration8600,195599 -registration(r4094,c191,s1207).registration8601,195630 -registration(r4094,c191,s1207).registration8601,195630 -registration(r4095,c45,s1207).registration8602,195662 -registration(r4095,c45,s1207).registration8602,195662 -registration(r4096,c30,s1207).registration8603,195693 -registration(r4096,c30,s1207).registration8603,195693 -registration(r4097,c244,s1208).registration8604,195724 -registration(r4097,c244,s1208).registration8604,195724 -registration(r4098,c190,s1208).registration8605,195756 -registration(r4098,c190,s1208).registration8605,195756 -registration(r4099,c80,s1208).registration8606,195788 -registration(r4099,c80,s1208).registration8606,195788 -registration(r4100,c200,s1208).registration8607,195819 -registration(r4100,c200,s1208).registration8607,195819 -registration(r4101,c43,s1209).registration8608,195851 -registration(r4101,c43,s1209).registration8608,195851 -registration(r4102,c198,s1209).registration8609,195882 -registration(r4102,c198,s1209).registration8609,195882 -registration(r4103,c242,s1209).registration8610,195914 -registration(r4103,c242,s1209).registration8610,195914 -registration(r4104,c10,s1209).registration8611,195946 -registration(r4104,c10,s1209).registration8611,195946 -registration(r4105,c28,s1210).registration8612,195977 -registration(r4105,c28,s1210).registration8612,195977 -registration(r4106,c52,s1210).registration8613,196008 -registration(r4106,c52,s1210).registration8613,196008 -registration(r4107,c136,s1210).registration8614,196039 -registration(r4107,c136,s1210).registration8614,196039 -registration(r4108,c181,s1211).registration8615,196071 -registration(r4108,c181,s1211).registration8615,196071 -registration(r4109,c158,s1211).registration8616,196103 -registration(r4109,c158,s1211).registration8616,196103 -registration(r4110,c81,s1211).registration8617,196135 -registration(r4110,c81,s1211).registration8617,196135 -registration(r4111,c163,s1212).registration8618,196166 -registration(r4111,c163,s1212).registration8618,196166 -registration(r4112,c169,s1212).registration8619,196198 -registration(r4112,c169,s1212).registration8619,196198 -registration(r4113,c101,s1212).registration8620,196230 -registration(r4113,c101,s1212).registration8620,196230 -registration(r4114,c146,s1213).registration8621,196262 -registration(r4114,c146,s1213).registration8621,196262 -registration(r4115,c222,s1213).registration8622,196294 -registration(r4115,c222,s1213).registration8622,196294 -registration(r4116,c133,s1213).registration8623,196326 -registration(r4116,c133,s1213).registration8623,196326 -registration(r4117,c209,s1213).registration8624,196358 -registration(r4117,c209,s1213).registration8624,196358 -registration(r4118,c94,s1214).registration8625,196390 -registration(r4118,c94,s1214).registration8625,196390 -registration(r4119,c215,s1214).registration8626,196421 -registration(r4119,c215,s1214).registration8626,196421 -registration(r4120,c14,s1214).registration8627,196453 -registration(r4120,c14,s1214).registration8627,196453 -registration(r4121,c3,s1214).registration8628,196484 -registration(r4121,c3,s1214).registration8628,196484 -registration(r4122,c4,s1215).registration8629,196514 -registration(r4122,c4,s1215).registration8629,196514 -registration(r4123,c45,s1215).registration8630,196544 -registration(r4123,c45,s1215).registration8630,196544 -registration(r4124,c223,s1215).registration8631,196575 -registration(r4124,c223,s1215).registration8631,196575 -registration(r4125,c19,s1216).registration8632,196607 -registration(r4125,c19,s1216).registration8632,196607 -registration(r4126,c45,s1216).registration8633,196638 -registration(r4126,c45,s1216).registration8633,196638 -registration(r4127,c46,s1216).registration8634,196669 -registration(r4127,c46,s1216).registration8634,196669 -registration(r4128,c203,s1217).registration8635,196700 -registration(r4128,c203,s1217).registration8635,196700 -registration(r4129,c245,s1217).registration8636,196732 -registration(r4129,c245,s1217).registration8636,196732 -registration(r4130,c90,s1217).registration8637,196764 -registration(r4130,c90,s1217).registration8637,196764 -registration(r4131,c3,s1218).registration8638,196795 -registration(r4131,c3,s1218).registration8638,196795 -registration(r4132,c210,s1218).registration8639,196825 -registration(r4132,c210,s1218).registration8639,196825 -registration(r4133,c83,s1218).registration8640,196857 -registration(r4133,c83,s1218).registration8640,196857 -registration(r4134,c48,s1219).registration8641,196888 -registration(r4134,c48,s1219).registration8641,196888 -registration(r4135,c242,s1219).registration8642,196919 -registration(r4135,c242,s1219).registration8642,196919 -registration(r4136,c114,s1219).registration8643,196951 -registration(r4136,c114,s1219).registration8643,196951 -registration(r4137,c57,s1219).registration8644,196983 -registration(r4137,c57,s1219).registration8644,196983 -registration(r4138,c218,s1220).registration8645,197014 -registration(r4138,c218,s1220).registration8645,197014 -registration(r4139,c71,s1220).registration8646,197046 -registration(r4139,c71,s1220).registration8646,197046 -registration(r4140,c226,s1220).registration8647,197077 -registration(r4140,c226,s1220).registration8647,197077 -registration(r4141,c230,s1220).registration8648,197109 -registration(r4141,c230,s1220).registration8648,197109 -registration(r4142,c10,s1221).registration8649,197141 -registration(r4142,c10,s1221).registration8649,197141 -registration(r4143,c252,s1221).registration8650,197172 -registration(r4143,c252,s1221).registration8650,197172 -registration(r4144,c138,s1221).registration8651,197204 -registration(r4144,c138,s1221).registration8651,197204 -registration(r4145,c183,s1221).registration8652,197236 -registration(r4145,c183,s1221).registration8652,197236 -registration(r4146,c128,s1222).registration8653,197268 -registration(r4146,c128,s1222).registration8653,197268 -registration(r4147,c178,s1222).registration8654,197300 -registration(r4147,c178,s1222).registration8654,197300 -registration(r4148,c152,s1222).registration8655,197332 -registration(r4148,c152,s1222).registration8655,197332 -registration(r4149,c243,s1223).registration8656,197364 -registration(r4149,c243,s1223).registration8656,197364 -registration(r4150,c183,s1223).registration8657,197396 -registration(r4150,c183,s1223).registration8657,197396 -registration(r4151,c63,s1223).registration8658,197428 -registration(r4151,c63,s1223).registration8658,197428 -registration(r4152,c146,s1224).registration8659,197459 -registration(r4152,c146,s1224).registration8659,197459 -registration(r4153,c99,s1224).registration8660,197491 -registration(r4153,c99,s1224).registration8660,197491 -registration(r4154,c239,s1224).registration8661,197522 -registration(r4154,c239,s1224).registration8661,197522 -registration(r4155,c97,s1225).registration8662,197554 -registration(r4155,c97,s1225).registration8662,197554 -registration(r4156,c198,s1225).registration8663,197585 -registration(r4156,c198,s1225).registration8663,197585 -registration(r4157,c143,s1225).registration8664,197617 -registration(r4157,c143,s1225).registration8664,197617 -registration(r4158,c161,s1225).registration8665,197649 -registration(r4158,c161,s1225).registration8665,197649 -registration(r4159,c19,s1226).registration8666,197681 -registration(r4159,c19,s1226).registration8666,197681 -registration(r4160,c127,s1226).registration8667,197712 -registration(r4160,c127,s1226).registration8667,197712 -registration(r4161,c243,s1226).registration8668,197744 -registration(r4161,c243,s1226).registration8668,197744 -registration(r4162,c239,s1227).registration8669,197776 -registration(r4162,c239,s1227).registration8669,197776 -registration(r4163,c133,s1227).registration8670,197808 -registration(r4163,c133,s1227).registration8670,197808 -registration(r4164,c219,s1227).registration8671,197840 -registration(r4164,c219,s1227).registration8671,197840 -registration(r4165,c92,s1228).registration8672,197872 -registration(r4165,c92,s1228).registration8672,197872 -registration(r4166,c177,s1228).registration8673,197903 -registration(r4166,c177,s1228).registration8673,197903 -registration(r4167,c214,s1228).registration8674,197935 -registration(r4167,c214,s1228).registration8674,197935 -registration(r4168,c201,s1229).registration8675,197967 -registration(r4168,c201,s1229).registration8675,197967 -registration(r4169,c96,s1229).registration8676,197999 -registration(r4169,c96,s1229).registration8676,197999 -registration(r4170,c152,s1229).registration8677,198030 -registration(r4170,c152,s1229).registration8677,198030 -registration(r4171,c43,s1230).registration8678,198062 -registration(r4171,c43,s1230).registration8678,198062 -registration(r4172,c37,s1230).registration8679,198093 -registration(r4172,c37,s1230).registration8679,198093 -registration(r4173,c218,s1230).registration8680,198124 -registration(r4173,c218,s1230).registration8680,198124 -registration(r4174,c59,s1231).registration8681,198156 -registration(r4174,c59,s1231).registration8681,198156 -registration(r4175,c182,s1231).registration8682,198187 -registration(r4175,c182,s1231).registration8682,198187 -registration(r4176,c11,s1231).registration8683,198219 -registration(r4176,c11,s1231).registration8683,198219 -registration(r4177,c226,s1232).registration8684,198250 -registration(r4177,c226,s1232).registration8684,198250 -registration(r4178,c128,s1232).registration8685,198282 -registration(r4178,c128,s1232).registration8685,198282 -registration(r4179,c213,s1232).registration8686,198314 -registration(r4179,c213,s1232).registration8686,198314 -registration(r4180,c95,s1233).registration8687,198346 -registration(r4180,c95,s1233).registration8687,198346 -registration(r4181,c197,s1233).registration8688,198377 -registration(r4181,c197,s1233).registration8688,198377 -registration(r4182,c0,s1233).registration8689,198409 -registration(r4182,c0,s1233).registration8689,198409 -registration(r4183,c61,s1234).registration8690,198439 -registration(r4183,c61,s1234).registration8690,198439 -registration(r4184,c152,s1234).registration8691,198470 -registration(r4184,c152,s1234).registration8691,198470 -registration(r4185,c117,s1234).registration8692,198502 -registration(r4185,c117,s1234).registration8692,198502 -registration(r4186,c64,s1234).registration8693,198534 -registration(r4186,c64,s1234).registration8693,198534 -registration(r4187,c221,s1235).registration8694,198565 -registration(r4187,c221,s1235).registration8694,198565 -registration(r4188,c160,s1235).registration8695,198597 -registration(r4188,c160,s1235).registration8695,198597 -registration(r4189,c100,s1235).registration8696,198629 -registration(r4189,c100,s1235).registration8696,198629 -registration(r4190,c145,s1236).registration8697,198661 -registration(r4190,c145,s1236).registration8697,198661 -registration(r4191,c196,s1236).registration8698,198693 -registration(r4191,c196,s1236).registration8698,198693 -registration(r4192,c100,s1236).registration8699,198725 -registration(r4192,c100,s1236).registration8699,198725 -registration(r4193,c160,s1237).registration8700,198757 -registration(r4193,c160,s1237).registration8700,198757 -registration(r4194,c54,s1237).registration8701,198789 -registration(r4194,c54,s1237).registration8701,198789 -registration(r4195,c76,s1237).registration8702,198820 -registration(r4195,c76,s1237).registration8702,198820 -registration(r4196,c142,s1237).registration8703,198851 -registration(r4196,c142,s1237).registration8703,198851 -registration(r4197,c141,s1237).registration8704,198883 -registration(r4197,c141,s1237).registration8704,198883 -registration(r4198,c99,s1238).registration8705,198915 -registration(r4198,c99,s1238).registration8705,198915 -registration(r4199,c5,s1238).registration8706,198946 -registration(r4199,c5,s1238).registration8706,198946 -registration(r4200,c10,s1238).registration8707,198976 -registration(r4200,c10,s1238).registration8707,198976 -registration(r4201,c10,s1239).registration8708,199007 -registration(r4201,c10,s1239).registration8708,199007 -registration(r4202,c254,s1239).registration8709,199038 -registration(r4202,c254,s1239).registration8709,199038 -registration(r4203,c143,s1239).registration8710,199070 -registration(r4203,c143,s1239).registration8710,199070 -registration(r4204,c4,s1240).registration8711,199102 -registration(r4204,c4,s1240).registration8711,199102 -registration(r4205,c92,s1240).registration8712,199132 -registration(r4205,c92,s1240).registration8712,199132 -registration(r4206,c214,s1240).registration8713,199163 -registration(r4206,c214,s1240).registration8713,199163 -registration(r4207,c118,s1241).registration8714,199195 -registration(r4207,c118,s1241).registration8714,199195 -registration(r4208,c55,s1241).registration8715,199227 -registration(r4208,c55,s1241).registration8715,199227 -registration(r4209,c216,s1241).registration8716,199258 -registration(r4209,c216,s1241).registration8716,199258 -registration(r4210,c200,s1241).registration8717,199290 -registration(r4210,c200,s1241).registration8717,199290 -registration(r4211,c103,s1242).registration8718,199322 -registration(r4211,c103,s1242).registration8718,199322 -registration(r4212,c73,s1242).registration8719,199354 -registration(r4212,c73,s1242).registration8719,199354 -registration(r4213,c221,s1242).registration8720,199385 -registration(r4213,c221,s1242).registration8720,199385 -registration(r4214,c128,s1242).registration8721,199417 -registration(r4214,c128,s1242).registration8721,199417 -registration(r4215,c20,s1242).registration8722,199449 -registration(r4215,c20,s1242).registration8722,199449 -registration(r4216,c13,s1243).registration8723,199480 -registration(r4216,c13,s1243).registration8723,199480 -registration(r4217,c90,s1243).registration8724,199511 -registration(r4217,c90,s1243).registration8724,199511 -registration(r4218,c163,s1243).registration8725,199542 -registration(r4218,c163,s1243).registration8725,199542 -registration(r4219,c171,s1244).registration8726,199574 -registration(r4219,c171,s1244).registration8726,199574 -registration(r4220,c52,s1244).registration8727,199606 -registration(r4220,c52,s1244).registration8727,199606 -registration(r4221,c42,s1244).registration8728,199637 -registration(r4221,c42,s1244).registration8728,199637 -registration(r4222,c187,s1244).registration8729,199668 -registration(r4222,c187,s1244).registration8729,199668 -registration(r4223,c254,s1245).registration8730,199700 -registration(r4223,c254,s1245).registration8730,199700 -registration(r4224,c200,s1245).registration8731,199732 -registration(r4224,c200,s1245).registration8731,199732 -registration(r4225,c189,s1245).registration8732,199764 -registration(r4225,c189,s1245).registration8732,199764 -registration(r4226,c145,s1246).registration8733,199796 -registration(r4226,c145,s1246).registration8733,199796 -registration(r4227,c147,s1246).registration8734,199828 -registration(r4227,c147,s1246).registration8734,199828 -registration(r4228,c21,s1246).registration8735,199860 -registration(r4228,c21,s1246).registration8735,199860 -registration(r4229,c24,s1247).registration8736,199891 -registration(r4229,c24,s1247).registration8736,199891 -registration(r4230,c146,s1247).registration8737,199922 -registration(r4230,c146,s1247).registration8737,199922 -registration(r4231,c7,s1247).registration8738,199954 -registration(r4231,c7,s1247).registration8738,199954 -registration(r4232,c229,s1248).registration8739,199984 -registration(r4232,c229,s1248).registration8739,199984 -registration(r4233,c133,s1248).registration8740,200016 -registration(r4233,c133,s1248).registration8740,200016 -registration(r4234,c91,s1248).registration8741,200048 -registration(r4234,c91,s1248).registration8741,200048 -registration(r4235,c155,s1248).registration8742,200079 -registration(r4235,c155,s1248).registration8742,200079 -registration(r4236,c104,s1249).registration8743,200111 -registration(r4236,c104,s1249).registration8743,200111 -registration(r4237,c60,s1249).registration8744,200143 -registration(r4237,c60,s1249).registration8744,200143 -registration(r4238,c219,s1249).registration8745,200174 -registration(r4238,c219,s1249).registration8745,200174 -registration(r4239,c15,s1250).registration8746,200206 -registration(r4239,c15,s1250).registration8746,200206 -registration(r4240,c242,s1250).registration8747,200237 -registration(r4240,c242,s1250).registration8747,200237 -registration(r4241,c158,s1250).registration8748,200269 -registration(r4241,c158,s1250).registration8748,200269 -registration(r4242,c156,s1251).registration8749,200301 -registration(r4242,c156,s1251).registration8749,200301 -registration(r4243,c11,s1251).registration8750,200333 -registration(r4243,c11,s1251).registration8750,200333 -registration(r4244,c108,s1251).registration8751,200364 -registration(r4244,c108,s1251).registration8751,200364 -registration(r4245,c253,s1252).registration8752,200396 -registration(r4245,c253,s1252).registration8752,200396 -registration(r4246,c137,s1252).registration8753,200428 -registration(r4246,c137,s1252).registration8753,200428 -registration(r4247,c192,s1252).registration8754,200460 -registration(r4247,c192,s1252).registration8754,200460 -registration(r4248,c216,s1253).registration8755,200492 -registration(r4248,c216,s1253).registration8755,200492 -registration(r4249,c89,s1253).registration8756,200524 -registration(r4249,c89,s1253).registration8756,200524 -registration(r4250,c252,s1253).registration8757,200555 -registration(r4250,c252,s1253).registration8757,200555 -registration(r4251,c226,s1254).registration8758,200587 -registration(r4251,c226,s1254).registration8758,200587 -registration(r4252,c221,s1254).registration8759,200619 -registration(r4252,c221,s1254).registration8759,200619 -registration(r4253,c144,s1254).registration8760,200651 -registration(r4253,c144,s1254).registration8760,200651 -registration(r4254,c250,s1255).registration8761,200683 -registration(r4254,c250,s1255).registration8761,200683 -registration(r4255,c89,s1255).registration8762,200715 -registration(r4255,c89,s1255).registration8762,200715 -registration(r4256,c182,s1255).registration8763,200746 -registration(r4256,c182,s1255).registration8763,200746 -registration(r4257,c158,s1255).registration8764,200778 -registration(r4257,c158,s1255).registration8764,200778 -registration(r4258,c230,s1256).registration8765,200810 -registration(r4258,c230,s1256).registration8765,200810 -registration(r4259,c20,s1256).registration8766,200842 -registration(r4259,c20,s1256).registration8766,200842 -registration(r4260,c62,s1256).registration8767,200873 -registration(r4260,c62,s1256).registration8767,200873 -registration(r4261,c193,s1256).registration8768,200904 -registration(r4261,c193,s1256).registration8768,200904 -registration(r4262,c52,s1257).registration8769,200936 -registration(r4262,c52,s1257).registration8769,200936 -registration(r4263,c46,s1257).registration8770,200967 -registration(r4263,c46,s1257).registration8770,200967 -registration(r4264,c210,s1257).registration8771,200998 -registration(r4264,c210,s1257).registration8771,200998 -registration(r4265,c92,s1257).registration8772,201030 -registration(r4265,c92,s1257).registration8772,201030 -registration(r4266,c159,s1258).registration8773,201061 -registration(r4266,c159,s1258).registration8773,201061 -registration(r4267,c243,s1258).registration8774,201093 -registration(r4267,c243,s1258).registration8774,201093 -registration(r4268,c79,s1258).registration8775,201125 -registration(r4268,c79,s1258).registration8775,201125 -registration(r4269,c77,s1259).registration8776,201156 -registration(r4269,c77,s1259).registration8776,201156 -registration(r4270,c209,s1259).registration8777,201187 -registration(r4270,c209,s1259).registration8777,201187 -registration(r4271,c130,s1259).registration8778,201219 -registration(r4271,c130,s1259).registration8778,201219 -registration(r4272,c175,s1259).registration8779,201251 -registration(r4272,c175,s1259).registration8779,201251 -registration(r4273,c32,s1259).registration8780,201283 -registration(r4273,c32,s1259).registration8780,201283 -registration(r4274,c41,s1260).registration8781,201314 -registration(r4274,c41,s1260).registration8781,201314 -registration(r4275,c14,s1260).registration8782,201345 -registration(r4275,c14,s1260).registration8782,201345 -registration(r4276,c124,s1260).registration8783,201376 -registration(r4276,c124,s1260).registration8783,201376 -registration(r4277,c157,s1261).registration8784,201408 -registration(r4277,c157,s1261).registration8784,201408 -registration(r4278,c127,s1261).registration8785,201440 -registration(r4278,c127,s1261).registration8785,201440 -registration(r4279,c203,s1261).registration8786,201472 -registration(r4279,c203,s1261).registration8786,201472 -registration(r4280,c244,s1262).registration8787,201504 -registration(r4280,c244,s1262).registration8787,201504 -registration(r4281,c115,s1262).registration8788,201536 -registration(r4281,c115,s1262).registration8788,201536 -registration(r4282,c152,s1262).registration8789,201568 -registration(r4282,c152,s1262).registration8789,201568 -registration(r4283,c163,s1262).registration8790,201600 -registration(r4283,c163,s1262).registration8790,201600 -registration(r4284,c7,s1263).registration8791,201632 -registration(r4284,c7,s1263).registration8791,201632 -registration(r4285,c207,s1263).registration8792,201662 -registration(r4285,c207,s1263).registration8792,201662 -registration(r4286,c197,s1263).registration8793,201694 -registration(r4286,c197,s1263).registration8793,201694 -registration(r4287,c22,s1264).registration8794,201726 -registration(r4287,c22,s1264).registration8794,201726 -registration(r4288,c33,s1264).registration8795,201757 -registration(r4288,c33,s1264).registration8795,201757 -registration(r4289,c15,s1264).registration8796,201788 -registration(r4289,c15,s1264).registration8796,201788 -registration(r4290,c145,s1265).registration8797,201819 -registration(r4290,c145,s1265).registration8797,201819 -registration(r4291,c148,s1265).registration8798,201851 -registration(r4291,c148,s1265).registration8798,201851 -registration(r4292,c162,s1265).registration8799,201883 -registration(r4292,c162,s1265).registration8799,201883 -registration(r4293,c202,s1266).registration8800,201915 -registration(r4293,c202,s1266).registration8800,201915 -registration(r4294,c178,s1266).registration8801,201947 -registration(r4294,c178,s1266).registration8801,201947 -registration(r4295,c47,s1266).registration8802,201979 -registration(r4295,c47,s1266).registration8802,201979 -registration(r4296,c205,s1267).registration8803,202010 -registration(r4296,c205,s1267).registration8803,202010 -registration(r4297,c42,s1267).registration8804,202042 -registration(r4297,c42,s1267).registration8804,202042 -registration(r4298,c99,s1267).registration8805,202073 -registration(r4298,c99,s1267).registration8805,202073 -registration(r4299,c87,s1268).registration8806,202104 -registration(r4299,c87,s1268).registration8806,202104 -registration(r4300,c244,s1268).registration8807,202135 -registration(r4300,c244,s1268).registration8807,202135 -registration(r4301,c129,s1268).registration8808,202167 -registration(r4301,c129,s1268).registration8808,202167 -registration(r4302,c236,s1269).registration8809,202199 -registration(r4302,c236,s1269).registration8809,202199 -registration(r4303,c135,s1269).registration8810,202231 -registration(r4303,c135,s1269).registration8810,202231 -registration(r4304,c101,s1269).registration8811,202263 -registration(r4304,c101,s1269).registration8811,202263 -registration(r4305,c40,s1269).registration8812,202295 -registration(r4305,c40,s1269).registration8812,202295 -registration(r4306,c201,s1270).registration8813,202326 -registration(r4306,c201,s1270).registration8813,202326 -registration(r4307,c80,s1270).registration8814,202358 -registration(r4307,c80,s1270).registration8814,202358 -registration(r4308,c56,s1270).registration8815,202389 -registration(r4308,c56,s1270).registration8815,202389 -registration(r4309,c66,s1270).registration8816,202420 -registration(r4309,c66,s1270).registration8816,202420 -registration(r4310,c192,s1271).registration8817,202451 -registration(r4310,c192,s1271).registration8817,202451 -registration(r4311,c227,s1271).registration8818,202483 -registration(r4311,c227,s1271).registration8818,202483 -registration(r4312,c111,s1271).registration8819,202515 -registration(r4312,c111,s1271).registration8819,202515 -registration(r4313,c35,s1272).registration8820,202547 -registration(r4313,c35,s1272).registration8820,202547 -registration(r4314,c165,s1272).registration8821,202578 -registration(r4314,c165,s1272).registration8821,202578 -registration(r4315,c89,s1272).registration8822,202610 -registration(r4315,c89,s1272).registration8822,202610 -registration(r4316,c131,s1273).registration8823,202641 -registration(r4316,c131,s1273).registration8823,202641 -registration(r4317,c31,s1273).registration8824,202673 -registration(r4317,c31,s1273).registration8824,202673 -registration(r4318,c243,s1273).registration8825,202704 -registration(r4318,c243,s1273).registration8825,202704 -registration(r4319,c231,s1274).registration8826,202736 -registration(r4319,c231,s1274).registration8826,202736 -registration(r4320,c237,s1274).registration8827,202768 -registration(r4320,c237,s1274).registration8827,202768 -registration(r4321,c247,s1274).registration8828,202800 -registration(r4321,c247,s1274).registration8828,202800 -registration(r4322,c126,s1275).registration8829,202832 -registration(r4322,c126,s1275).registration8829,202832 -registration(r4323,c229,s1275).registration8830,202864 -registration(r4323,c229,s1275).registration8830,202864 -registration(r4324,c140,s1275).registration8831,202896 -registration(r4324,c140,s1275).registration8831,202896 -registration(r4325,c84,s1275).registration8832,202928 -registration(r4325,c84,s1275).registration8832,202928 -registration(r4326,c254,s1276).registration8833,202959 -registration(r4326,c254,s1276).registration8833,202959 -registration(r4327,c71,s1276).registration8834,202991 -registration(r4327,c71,s1276).registration8834,202991 -registration(r4328,c130,s1276).registration8835,203022 -registration(r4328,c130,s1276).registration8835,203022 -registration(r4329,c66,s1276).registration8836,203054 -registration(r4329,c66,s1276).registration8836,203054 -registration(r4330,c36,s1277).registration8837,203085 -registration(r4330,c36,s1277).registration8837,203085 -registration(r4331,c131,s1277).registration8838,203116 -registration(r4331,c131,s1277).registration8838,203116 -registration(r4332,c184,s1277).registration8839,203148 -registration(r4332,c184,s1277).registration8839,203148 -registration(r4333,c93,s1278).registration8840,203180 -registration(r4333,c93,s1278).registration8840,203180 -registration(r4334,c44,s1278).registration8841,203211 -registration(r4334,c44,s1278).registration8841,203211 -registration(r4335,c100,s1278).registration8842,203242 -registration(r4335,c100,s1278).registration8842,203242 -registration(r4336,c130,s1279).registration8843,203274 -registration(r4336,c130,s1279).registration8843,203274 -registration(r4337,c195,s1279).registration8844,203306 -registration(r4337,c195,s1279).registration8844,203306 -registration(r4338,c28,s1279).registration8845,203338 -registration(r4338,c28,s1279).registration8845,203338 -registration(r4339,c10,s1280).registration8846,203369 -registration(r4339,c10,s1280).registration8846,203369 -registration(r4340,c240,s1280).registration8847,203400 -registration(r4340,c240,s1280).registration8847,203400 -registration(r4341,c42,s1280).registration8848,203432 -registration(r4341,c42,s1280).registration8848,203432 -registration(r4342,c15,s1281).registration8849,203463 -registration(r4342,c15,s1281).registration8849,203463 -registration(r4343,c112,s1281).registration8850,203494 -registration(r4343,c112,s1281).registration8850,203494 -registration(r4344,c30,s1281).registration8851,203526 -registration(r4344,c30,s1281).registration8851,203526 -registration(r4345,c197,s1281).registration8852,203557 -registration(r4345,c197,s1281).registration8852,203557 -registration(r4346,c102,s1281).registration8853,203589 -registration(r4346,c102,s1281).registration8853,203589 -registration(r4347,c71,s1282).registration8854,203621 -registration(r4347,c71,s1282).registration8854,203621 -registration(r4348,c94,s1282).registration8855,203652 -registration(r4348,c94,s1282).registration8855,203652 -registration(r4349,c122,s1282).registration8856,203683 -registration(r4349,c122,s1282).registration8856,203683 -registration(r4350,c253,s1283).registration8857,203715 -registration(r4350,c253,s1283).registration8857,203715 -registration(r4351,c66,s1283).registration8858,203747 -registration(r4351,c66,s1283).registration8858,203747 -registration(r4352,c86,s1283).registration8859,203778 -registration(r4352,c86,s1283).registration8859,203778 -registration(r4353,c130,s1284).registration8860,203809 -registration(r4353,c130,s1284).registration8860,203809 -registration(r4354,c7,s1284).registration8861,203841 -registration(r4354,c7,s1284).registration8861,203841 -registration(r4355,c112,s1284).registration8862,203871 -registration(r4355,c112,s1284).registration8862,203871 -registration(r4356,c140,s1284).registration8863,203903 -registration(r4356,c140,s1284).registration8863,203903 -registration(r4357,c79,s1285).registration8864,203935 -registration(r4357,c79,s1285).registration8864,203935 -registration(r4358,c133,s1285).registration8865,203966 -registration(r4358,c133,s1285).registration8865,203966 -registration(r4359,c223,s1285).registration8866,203998 -registration(r4359,c223,s1285).registration8866,203998 -registration(r4360,c9,s1286).registration8867,204030 -registration(r4360,c9,s1286).registration8867,204030 -registration(r4361,c62,s1286).registration8868,204060 -registration(r4361,c62,s1286).registration8868,204060 -registration(r4362,c229,s1286).registration8869,204091 -registration(r4362,c229,s1286).registration8869,204091 -registration(r4363,c173,s1286).registration8870,204123 -registration(r4363,c173,s1286).registration8870,204123 -registration(r4364,c55,s1286).registration8871,204155 -registration(r4364,c55,s1286).registration8871,204155 -registration(r4365,c114,s1287).registration8872,204186 -registration(r4365,c114,s1287).registration8872,204186 -registration(r4366,c32,s1287).registration8873,204218 -registration(r4366,c32,s1287).registration8873,204218 -registration(r4367,c158,s1287).registration8874,204249 -registration(r4367,c158,s1287).registration8874,204249 -registration(r4368,c23,s1288).registration8875,204281 -registration(r4368,c23,s1288).registration8875,204281 -registration(r4369,c68,s1288).registration8876,204312 -registration(r4369,c68,s1288).registration8876,204312 -registration(r4370,c1,s1288).registration8877,204343 -registration(r4370,c1,s1288).registration8877,204343 -registration(r4371,c135,s1288).registration8878,204373 -registration(r4371,c135,s1288).registration8878,204373 -registration(r4372,c185,s1289).registration8879,204405 -registration(r4372,c185,s1289).registration8879,204405 -registration(r4373,c38,s1289).registration8880,204437 -registration(r4373,c38,s1289).registration8880,204437 -registration(r4374,c219,s1289).registration8881,204468 -registration(r4374,c219,s1289).registration8881,204468 -registration(r4375,c14,s1290).registration8882,204500 -registration(r4375,c14,s1290).registration8882,204500 -registration(r4376,c76,s1290).registration8883,204531 -registration(r4376,c76,s1290).registration8883,204531 -registration(r4377,c204,s1290).registration8884,204562 -registration(r4377,c204,s1290).registration8884,204562 -registration(r4378,c171,s1291).registration8885,204594 -registration(r4378,c171,s1291).registration8885,204594 -registration(r4379,c183,s1291).registration8886,204626 -registration(r4379,c183,s1291).registration8886,204626 -registration(r4380,c70,s1291).registration8887,204658 -registration(r4380,c70,s1291).registration8887,204658 -registration(r4381,c44,s1292).registration8888,204689 -registration(r4381,c44,s1292).registration8888,204689 -registration(r4382,c206,s1292).registration8889,204720 -registration(r4382,c206,s1292).registration8889,204720 -registration(r4383,c161,s1292).registration8890,204752 -registration(r4383,c161,s1292).registration8890,204752 -registration(r4384,c5,s1292).registration8891,204784 -registration(r4384,c5,s1292).registration8891,204784 -registration(r4385,c81,s1292).registration8892,204814 -registration(r4385,c81,s1292).registration8892,204814 -registration(r4386,c163,s1293).registration8893,204845 -registration(r4386,c163,s1293).registration8893,204845 -registration(r4387,c205,s1293).registration8894,204877 -registration(r4387,c205,s1293).registration8894,204877 -registration(r4388,c208,s1293).registration8895,204909 -registration(r4388,c208,s1293).registration8895,204909 -registration(r4389,c210,s1293).registration8896,204941 -registration(r4389,c210,s1293).registration8896,204941 -registration(r4390,c207,s1294).registration8897,204973 -registration(r4390,c207,s1294).registration8897,204973 -registration(r4391,c151,s1294).registration8898,205005 -registration(r4391,c151,s1294).registration8898,205005 -registration(r4392,c41,s1294).registration8899,205037 -registration(r4392,c41,s1294).registration8899,205037 -registration(r4393,c4,s1295).registration8900,205068 -registration(r4393,c4,s1295).registration8900,205068 -registration(r4394,c74,s1295).registration8901,205098 -registration(r4394,c74,s1295).registration8901,205098 -registration(r4395,c87,s1295).registration8902,205129 -registration(r4395,c87,s1295).registration8902,205129 -registration(r4396,c151,s1295).registration8903,205160 -registration(r4396,c151,s1295).registration8903,205160 -registration(r4397,c113,s1295).registration8904,205192 -registration(r4397,c113,s1295).registration8904,205192 -registration(r4398,c103,s1296).registration8905,205224 -registration(r4398,c103,s1296).registration8905,205224 -registration(r4399,c205,s1296).registration8906,205256 -registration(r4399,c205,s1296).registration8906,205256 -registration(r4400,c39,s1296).registration8907,205288 -registration(r4400,c39,s1296).registration8907,205288 -registration(r4401,c28,s1297).registration8908,205319 -registration(r4401,c28,s1297).registration8908,205319 -registration(r4402,c219,s1297).registration8909,205350 -registration(r4402,c219,s1297).registration8909,205350 -registration(r4403,c80,s1297).registration8910,205382 -registration(r4403,c80,s1297).registration8910,205382 -registration(r4404,c86,s1297).registration8911,205413 -registration(r4404,c86,s1297).registration8911,205413 -registration(r4405,c209,s1298).registration8912,205444 -registration(r4405,c209,s1298).registration8912,205444 -registration(r4406,c91,s1298).registration8913,205476 -registration(r4406,c91,s1298).registration8913,205476 -registration(r4407,c249,s1298).registration8914,205507 -registration(r4407,c249,s1298).registration8914,205507 -registration(r4408,c178,s1298).registration8915,205539 -registration(r4408,c178,s1298).registration8915,205539 -registration(r4409,c176,s1299).registration8916,205571 -registration(r4409,c176,s1299).registration8916,205571 -registration(r4410,c253,s1299).registration8917,205603 -registration(r4410,c253,s1299).registration8917,205603 -registration(r4411,c130,s1299).registration8918,205635 -registration(r4411,c130,s1299).registration8918,205635 -registration(r4412,c12,s1299).registration8919,205667 -registration(r4412,c12,s1299).registration8919,205667 -registration(r4413,c6,s1300).registration8920,205698 -registration(r4413,c6,s1300).registration8920,205698 -registration(r4414,c44,s1300).registration8921,205728 -registration(r4414,c44,s1300).registration8921,205728 -registration(r4415,c87,s1300).registration8922,205759 -registration(r4415,c87,s1300).registration8922,205759 -registration(r4416,c236,s1301).registration8923,205790 -registration(r4416,c236,s1301).registration8923,205790 -registration(r4417,c125,s1301).registration8924,205822 -registration(r4417,c125,s1301).registration8924,205822 -registration(r4418,c174,s1301).registration8925,205854 -registration(r4418,c174,s1301).registration8925,205854 -registration(r4419,c214,s1302).registration8926,205886 -registration(r4419,c214,s1302).registration8926,205886 -registration(r4420,c2,s1302).registration8927,205918 -registration(r4420,c2,s1302).registration8927,205918 -registration(r4421,c205,s1302).registration8928,205948 -registration(r4421,c205,s1302).registration8928,205948 -registration(r4422,c30,s1303).registration8929,205980 -registration(r4422,c30,s1303).registration8929,205980 -registration(r4423,c177,s1303).registration8930,206011 -registration(r4423,c177,s1303).registration8930,206011 -registration(r4424,c232,s1303).registration8931,206043 -registration(r4424,c232,s1303).registration8931,206043 -registration(r4425,c68,s1304).registration8932,206075 -registration(r4425,c68,s1304).registration8932,206075 -registration(r4426,c109,s1304).registration8933,206106 -registration(r4426,c109,s1304).registration8933,206106 -registration(r4427,c34,s1304).registration8934,206138 -registration(r4427,c34,s1304).registration8934,206138 -registration(r4428,c211,s1304).registration8935,206169 -registration(r4428,c211,s1304).registration8935,206169 -registration(r4429,c108,s1305).registration8936,206201 -registration(r4429,c108,s1305).registration8936,206201 -registration(r4430,c164,s1305).registration8937,206233 -registration(r4430,c164,s1305).registration8937,206233 -registration(r4431,c27,s1305).registration8938,206265 -registration(r4431,c27,s1305).registration8938,206265 -registration(r4432,c34,s1306).registration8939,206296 -registration(r4432,c34,s1306).registration8939,206296 -registration(r4433,c191,s1306).registration8940,206327 -registration(r4433,c191,s1306).registration8940,206327 -registration(r4434,c7,s1306).registration8941,206359 -registration(r4434,c7,s1306).registration8941,206359 -registration(r4435,c243,s1307).registration8942,206389 -registration(r4435,c243,s1307).registration8942,206389 -registration(r4436,c253,s1307).registration8943,206421 -registration(r4436,c253,s1307).registration8943,206421 -registration(r4437,c172,s1307).registration8944,206453 -registration(r4437,c172,s1307).registration8944,206453 -registration(r4438,c132,s1308).registration8945,206485 -registration(r4438,c132,s1308).registration8945,206485 -registration(r4439,c74,s1308).registration8946,206517 -registration(r4439,c74,s1308).registration8946,206517 -registration(r4440,c22,s1308).registration8947,206548 -registration(r4440,c22,s1308).registration8947,206548 -registration(r4441,c53,s1308).registration8948,206579 -registration(r4441,c53,s1308).registration8948,206579 -registration(r4442,c40,s1309).registration8949,206610 -registration(r4442,c40,s1309).registration8949,206610 -registration(r4443,c17,s1309).registration8950,206641 -registration(r4443,c17,s1309).registration8950,206641 -registration(r4444,c170,s1309).registration8951,206672 -registration(r4444,c170,s1309).registration8951,206672 -registration(r4445,c22,s1310).registration8952,206704 -registration(r4445,c22,s1310).registration8952,206704 -registration(r4446,c206,s1310).registration8953,206735 -registration(r4446,c206,s1310).registration8953,206735 -registration(r4447,c196,s1310).registration8954,206767 -registration(r4447,c196,s1310).registration8954,206767 -registration(r4448,c49,s1311).registration8955,206799 -registration(r4448,c49,s1311).registration8955,206799 -registration(r4449,c220,s1311).registration8956,206830 -registration(r4449,c220,s1311).registration8956,206830 -registration(r4450,c188,s1311).registration8957,206862 -registration(r4450,c188,s1311).registration8957,206862 -registration(r4451,c224,s1312).registration8958,206894 -registration(r4451,c224,s1312).registration8958,206894 -registration(r4452,c131,s1312).registration8959,206926 -registration(r4452,c131,s1312).registration8959,206926 -registration(r4453,c148,s1312).registration8960,206958 -registration(r4453,c148,s1312).registration8960,206958 -registration(r4454,c136,s1313).registration8961,206990 -registration(r4454,c136,s1313).registration8961,206990 -registration(r4455,c93,s1313).registration8962,207022 -registration(r4455,c93,s1313).registration8962,207022 -registration(r4456,c47,s1313).registration8963,207053 -registration(r4456,c47,s1313).registration8963,207053 -registration(r4457,c180,s1314).registration8964,207084 -registration(r4457,c180,s1314).registration8964,207084 -registration(r4458,c27,s1314).registration8965,207116 -registration(r4458,c27,s1314).registration8965,207116 -registration(r4459,c190,s1314).registration8966,207147 -registration(r4459,c190,s1314).registration8966,207147 -registration(r4460,c68,s1314).registration8967,207179 -registration(r4460,c68,s1314).registration8967,207179 -registration(r4461,c83,s1315).registration8968,207210 -registration(r4461,c83,s1315).registration8968,207210 -registration(r4462,c85,s1315).registration8969,207241 -registration(r4462,c85,s1315).registration8969,207241 -registration(r4463,c157,s1315).registration8970,207272 -registration(r4463,c157,s1315).registration8970,207272 -registration(r4464,c179,s1316).registration8971,207304 -registration(r4464,c179,s1316).registration8971,207304 -registration(r4465,c205,s1316).registration8972,207336 -registration(r4465,c205,s1316).registration8972,207336 -registration(r4466,c110,s1316).registration8973,207368 -registration(r4466,c110,s1316).registration8973,207368 -registration(r4467,c160,s1317).registration8974,207400 -registration(r4467,c160,s1317).registration8974,207400 -registration(r4468,c200,s1317).registration8975,207432 -registration(r4468,c200,s1317).registration8975,207432 -registration(r4469,c43,s1317).registration8976,207464 -registration(r4469,c43,s1317).registration8976,207464 -registration(r4470,c12,s1318).registration8977,207495 -registration(r4470,c12,s1318).registration8977,207495 -registration(r4471,c233,s1318).registration8978,207526 -registration(r4471,c233,s1318).registration8978,207526 -registration(r4472,c234,s1318).registration8979,207558 -registration(r4472,c234,s1318).registration8979,207558 -registration(r4473,c114,s1319).registration8980,207590 -registration(r4473,c114,s1319).registration8980,207590 -registration(r4474,c201,s1319).registration8981,207622 -registration(r4474,c201,s1319).registration8981,207622 -registration(r4475,c156,s1319).registration8982,207654 -registration(r4475,c156,s1319).registration8982,207654 -registration(r4476,c80,s1320).registration8983,207686 -registration(r4476,c80,s1320).registration8983,207686 -registration(r4477,c94,s1320).registration8984,207717 -registration(r4477,c94,s1320).registration8984,207717 -registration(r4478,c46,s1320).registration8985,207748 -registration(r4478,c46,s1320).registration8985,207748 -registration(r4479,c33,s1321).registration8986,207779 -registration(r4479,c33,s1321).registration8986,207779 -registration(r4480,c208,s1321).registration8987,207810 -registration(r4480,c208,s1321).registration8987,207810 -registration(r4481,c247,s1321).registration8988,207842 -registration(r4481,c247,s1321).registration8988,207842 -registration(r4482,c161,s1322).registration8989,207874 -registration(r4482,c161,s1322).registration8989,207874 -registration(r4483,c113,s1322).registration8990,207906 -registration(r4483,c113,s1322).registration8990,207906 -registration(r4484,c156,s1322).registration8991,207938 -registration(r4484,c156,s1322).registration8991,207938 -registration(r4485,c92,s1322).registration8992,207970 -registration(r4485,c92,s1322).registration8992,207970 -registration(r4486,c178,s1322).registration8993,208001 -registration(r4486,c178,s1322).registration8993,208001 -registration(r4487,c37,s1323).registration8994,208033 -registration(r4487,c37,s1323).registration8994,208033 -registration(r4488,c55,s1323).registration8995,208064 -registration(r4488,c55,s1323).registration8995,208064 -registration(r4489,c22,s1323).registration8996,208095 -registration(r4489,c22,s1323).registration8996,208095 -registration(r4490,c255,s1324).registration8997,208126 -registration(r4490,c255,s1324).registration8997,208126 -registration(r4491,c99,s1324).registration8998,208158 -registration(r4491,c99,s1324).registration8998,208158 -registration(r4492,c174,s1324).registration8999,208189 -registration(r4492,c174,s1324).registration8999,208189 -registration(r4493,c120,s1325).registration9000,208221 -registration(r4493,c120,s1325).registration9000,208221 -registration(r4494,c8,s1325).registration9001,208253 -registration(r4494,c8,s1325).registration9001,208253 -registration(r4495,c26,s1325).registration9002,208283 -registration(r4495,c26,s1325).registration9002,208283 -registration(r4496,c119,s1326).registration9003,208314 -registration(r4496,c119,s1326).registration9003,208314 -registration(r4497,c23,s1326).registration9004,208346 -registration(r4497,c23,s1326).registration9004,208346 -registration(r4498,c213,s1326).registration9005,208377 -registration(r4498,c213,s1326).registration9005,208377 -registration(r4499,c57,s1326).registration9006,208409 -registration(r4499,c57,s1326).registration9006,208409 -registration(r4500,c16,s1327).registration9007,208440 -registration(r4500,c16,s1327).registration9007,208440 -registration(r4501,c247,s1327).registration9008,208471 -registration(r4501,c247,s1327).registration9008,208471 -registration(r4502,c117,s1327).registration9009,208503 -registration(r4502,c117,s1327).registration9009,208503 -registration(r4503,c18,s1328).registration9010,208535 -registration(r4503,c18,s1328).registration9010,208535 -registration(r4504,c194,s1328).registration9011,208566 -registration(r4504,c194,s1328).registration9011,208566 -registration(r4505,c199,s1328).registration9012,208598 -registration(r4505,c199,s1328).registration9012,208598 -registration(r4506,c115,s1328).registration9013,208630 -registration(r4506,c115,s1328).registration9013,208630 -registration(r4507,c83,s1329).registration9014,208662 -registration(r4507,c83,s1329).registration9014,208662 -registration(r4508,c138,s1329).registration9015,208693 -registration(r4508,c138,s1329).registration9015,208693 -registration(r4509,c102,s1329).registration9016,208725 -registration(r4509,c102,s1329).registration9016,208725 -registration(r4510,c202,s1330).registration9017,208757 -registration(r4510,c202,s1330).registration9017,208757 -registration(r4511,c69,s1330).registration9018,208789 -registration(r4511,c69,s1330).registration9018,208789 -registration(r4512,c245,s1330).registration9019,208820 -registration(r4512,c245,s1330).registration9019,208820 -registration(r4513,c254,s1331).registration9020,208852 -registration(r4513,c254,s1331).registration9020,208852 -registration(r4514,c185,s1331).registration9021,208884 -registration(r4514,c185,s1331).registration9021,208884 -registration(r4515,c167,s1331).registration9022,208916 -registration(r4515,c167,s1331).registration9022,208916 -registration(r4516,c192,s1331).registration9023,208948 -registration(r4516,c192,s1331).registration9023,208948 -registration(r4517,c45,s1332).registration9024,208980 -registration(r4517,c45,s1332).registration9024,208980 -registration(r4518,c76,s1332).registration9025,209011 -registration(r4518,c76,s1332).registration9025,209011 -registration(r4519,c250,s1332).registration9026,209042 -registration(r4519,c250,s1332).registration9026,209042 -registration(r4520,c241,s1333).registration9027,209074 -registration(r4520,c241,s1333).registration9027,209074 -registration(r4521,c72,s1333).registration9028,209106 -registration(r4521,c72,s1333).registration9028,209106 -registration(r4522,c14,s1333).registration9029,209137 -registration(r4522,c14,s1333).registration9029,209137 -registration(r4523,c209,s1334).registration9030,209168 -registration(r4523,c209,s1334).registration9030,209168 -registration(r4524,c33,s1334).registration9031,209200 -registration(r4524,c33,s1334).registration9031,209200 -registration(r4525,c120,s1334).registration9032,209231 -registration(r4525,c120,s1334).registration9032,209231 -registration(r4526,c203,s1334).registration9033,209263 -registration(r4526,c203,s1334).registration9033,209263 -registration(r4527,c206,s1335).registration9034,209295 -registration(r4527,c206,s1335).registration9034,209295 -registration(r4528,c115,s1335).registration9035,209327 -registration(r4528,c115,s1335).registration9035,209327 -registration(r4529,c98,s1335).registration9036,209359 -registration(r4529,c98,s1335).registration9036,209359 -registration(r4530,c168,s1336).registration9037,209390 -registration(r4530,c168,s1336).registration9037,209390 -registration(r4531,c77,s1336).registration9038,209422 -registration(r4531,c77,s1336).registration9038,209422 -registration(r4532,c224,s1336).registration9039,209453 -registration(r4532,c224,s1336).registration9039,209453 -registration(r4533,c154,s1337).registration9040,209485 -registration(r4533,c154,s1337).registration9040,209485 -registration(r4534,c16,s1337).registration9041,209517 -registration(r4534,c16,s1337).registration9041,209517 -registration(r4535,c164,s1337).registration9042,209548 -registration(r4535,c164,s1337).registration9042,209548 -registration(r4536,c209,s1338).registration9043,209580 -registration(r4536,c209,s1338).registration9043,209580 -registration(r4537,c23,s1338).registration9044,209612 -registration(r4537,c23,s1338).registration9044,209612 -registration(r4538,c202,s1338).registration9045,209643 -registration(r4538,c202,s1338).registration9045,209643 -registration(r4539,c188,s1339).registration9046,209675 -registration(r4539,c188,s1339).registration9046,209675 -registration(r4540,c237,s1339).registration9047,209707 -registration(r4540,c237,s1339).registration9047,209707 -registration(r4541,c129,s1339).registration9048,209739 -registration(r4541,c129,s1339).registration9048,209739 -registration(r4542,c71,s1339).registration9049,209771 -registration(r4542,c71,s1339).registration9049,209771 -registration(r4543,c58,s1340).registration9050,209802 -registration(r4543,c58,s1340).registration9050,209802 -registration(r4544,c192,s1340).registration9051,209833 -registration(r4544,c192,s1340).registration9051,209833 -registration(r4545,c152,s1340).registration9052,209865 -registration(r4545,c152,s1340).registration9052,209865 -registration(r4546,c102,s1341).registration9053,209897 -registration(r4546,c102,s1341).registration9053,209897 -registration(r4547,c188,s1341).registration9054,209929 -registration(r4547,c188,s1341).registration9054,209929 -registration(r4548,c239,s1341).registration9055,209961 -registration(r4548,c239,s1341).registration9055,209961 -registration(r4549,c152,s1342).registration9056,209993 -registration(r4549,c152,s1342).registration9056,209993 -registration(r4550,c12,s1342).registration9057,210025 -registration(r4550,c12,s1342).registration9057,210025 -registration(r4551,c219,s1342).registration9058,210056 -registration(r4551,c219,s1342).registration9058,210056 -registration(r4552,c89,s1342).registration9059,210088 -registration(r4552,c89,s1342).registration9059,210088 -registration(r4553,c16,s1343).registration9060,210119 -registration(r4553,c16,s1343).registration9060,210119 -registration(r4554,c253,s1343).registration9061,210150 -registration(r4554,c253,s1343).registration9061,210150 -registration(r4555,c66,s1343).registration9062,210182 -registration(r4555,c66,s1343).registration9062,210182 -registration(r4556,c89,s1344).registration9063,210213 -registration(r4556,c89,s1344).registration9063,210213 -registration(r4557,c172,s1344).registration9064,210244 -registration(r4557,c172,s1344).registration9064,210244 -registration(r4558,c115,s1344).registration9065,210276 -registration(r4558,c115,s1344).registration9065,210276 -registration(r4559,c97,s1345).registration9066,210308 -registration(r4559,c97,s1345).registration9066,210308 -registration(r4560,c80,s1345).registration9067,210339 -registration(r4560,c80,s1345).registration9067,210339 -registration(r4561,c130,s1345).registration9068,210370 -registration(r4561,c130,s1345).registration9068,210370 -registration(r4562,c188,s1346).registration9069,210402 -registration(r4562,c188,s1346).registration9069,210402 -registration(r4563,c105,s1346).registration9070,210434 -registration(r4563,c105,s1346).registration9070,210434 -registration(r4564,c60,s1346).registration9071,210466 -registration(r4564,c60,s1346).registration9071,210466 -registration(r4565,c246,s1346).registration9072,210497 -registration(r4565,c246,s1346).registration9072,210497 -registration(r4566,c192,s1347).registration9073,210529 -registration(r4566,c192,s1347).registration9073,210529 -registration(r4567,c229,s1347).registration9074,210561 -registration(r4567,c229,s1347).registration9074,210561 -registration(r4568,c97,s1347).registration9075,210593 -registration(r4568,c97,s1347).registration9075,210593 -registration(r4569,c111,s1348).registration9076,210624 -registration(r4569,c111,s1348).registration9076,210624 -registration(r4570,c150,s1348).registration9077,210656 -registration(r4570,c150,s1348).registration9077,210656 -registration(r4571,c125,s1348).registration9078,210688 -registration(r4571,c125,s1348).registration9078,210688 -registration(r4572,c142,s1348).registration9079,210720 -registration(r4572,c142,s1348).registration9079,210720 -registration(r4573,c198,s1349).registration9080,210752 -registration(r4573,c198,s1349).registration9080,210752 -registration(r4574,c77,s1349).registration9081,210784 -registration(r4574,c77,s1349).registration9081,210784 -registration(r4575,c112,s1349).registration9082,210815 -registration(r4575,c112,s1349).registration9082,210815 -registration(r4576,c28,s1350).registration9083,210847 -registration(r4576,c28,s1350).registration9083,210847 -registration(r4577,c8,s1350).registration9084,210878 -registration(r4577,c8,s1350).registration9084,210878 -registration(r4578,c118,s1350).registration9085,210908 -registration(r4578,c118,s1350).registration9085,210908 -registration(r4579,c197,s1351).registration9086,210940 -registration(r4579,c197,s1351).registration9086,210940 -registration(r4580,c8,s1351).registration9087,210972 -registration(r4580,c8,s1351).registration9087,210972 -registration(r4581,c20,s1351).registration9088,211002 -registration(r4581,c20,s1351).registration9088,211002 -registration(r4582,c125,s1352).registration9089,211033 -registration(r4582,c125,s1352).registration9089,211033 -registration(r4583,c167,s1352).registration9090,211065 -registration(r4583,c167,s1352).registration9090,211065 -registration(r4584,c200,s1352).registration9091,211097 -registration(r4584,c200,s1352).registration9091,211097 -registration(r4585,c136,s1353).registration9092,211129 -registration(r4585,c136,s1353).registration9092,211129 -registration(r4586,c89,s1353).registration9093,211161 -registration(r4586,c89,s1353).registration9093,211161 -registration(r4587,c173,s1353).registration9094,211192 -registration(r4587,c173,s1353).registration9094,211192 -registration(r4588,c28,s1354).registration9095,211224 -registration(r4588,c28,s1354).registration9095,211224 -registration(r4589,c218,s1354).registration9096,211255 -registration(r4589,c218,s1354).registration9096,211255 -registration(r4590,c85,s1354).registration9097,211287 -registration(r4590,c85,s1354).registration9097,211287 -registration(r4591,c228,s1355).registration9098,211318 -registration(r4591,c228,s1355).registration9098,211318 -registration(r4592,c171,s1355).registration9099,211350 -registration(r4592,c171,s1355).registration9099,211350 -registration(r4593,c51,s1355).registration9100,211382 -registration(r4593,c51,s1355).registration9100,211382 -registration(r4594,c218,s1356).registration9101,211413 -registration(r4594,c218,s1356).registration9101,211413 -registration(r4595,c112,s1356).registration9102,211445 -registration(r4595,c112,s1356).registration9102,211445 -registration(r4596,c73,s1356).registration9103,211477 -registration(r4596,c73,s1356).registration9103,211477 -registration(r4597,c180,s1357).registration9104,211508 -registration(r4597,c180,s1357).registration9104,211508 -registration(r4598,c21,s1357).registration9105,211540 -registration(r4598,c21,s1357).registration9105,211540 -registration(r4599,c255,s1357).registration9106,211571 -registration(r4599,c255,s1357).registration9106,211571 -registration(r4600,c195,s1358).registration9107,211603 -registration(r4600,c195,s1358).registration9107,211603 -registration(r4601,c69,s1358).registration9108,211635 -registration(r4601,c69,s1358).registration9108,211635 -registration(r4602,c38,s1358).registration9109,211666 -registration(r4602,c38,s1358).registration9109,211666 -registration(r4603,c113,s1359).registration9110,211697 -registration(r4603,c113,s1359).registration9110,211697 -registration(r4604,c21,s1359).registration9111,211729 -registration(r4604,c21,s1359).registration9111,211729 -registration(r4605,c19,s1359).registration9112,211760 -registration(r4605,c19,s1359).registration9112,211760 -registration(r4606,c90,s1359).registration9113,211791 -registration(r4606,c90,s1359).registration9113,211791 -registration(r4607,c58,s1360).registration9114,211822 -registration(r4607,c58,s1360).registration9114,211822 -registration(r4608,c52,s1360).registration9115,211853 -registration(r4608,c52,s1360).registration9115,211853 -registration(r4609,c66,s1360).registration9116,211884 -registration(r4609,c66,s1360).registration9116,211884 -registration(r4610,c26,s1360).registration9117,211915 -registration(r4610,c26,s1360).registration9117,211915 -registration(r4611,c205,s1360).registration9118,211946 -registration(r4611,c205,s1360).registration9118,211946 -registration(r4612,c78,s1361).registration9119,211978 -registration(r4612,c78,s1361).registration9119,211978 -registration(r4613,c121,s1361).registration9120,212009 -registration(r4613,c121,s1361).registration9120,212009 -registration(r4614,c13,s1361).registration9121,212041 -registration(r4614,c13,s1361).registration9121,212041 -registration(r4615,c234,s1361).registration9122,212072 -registration(r4615,c234,s1361).registration9122,212072 -registration(r4616,c120,s1362).registration9123,212104 -registration(r4616,c120,s1362).registration9123,212104 -registration(r4617,c226,s1362).registration9124,212136 -registration(r4617,c226,s1362).registration9124,212136 -registration(r4618,c12,s1362).registration9125,212168 -registration(r4618,c12,s1362).registration9125,212168 -registration(r4619,c211,s1363).registration9126,212199 -registration(r4619,c211,s1363).registration9126,212199 -registration(r4620,c14,s1363).registration9127,212231 -registration(r4620,c14,s1363).registration9127,212231 -registration(r4621,c164,s1363).registration9128,212262 -registration(r4621,c164,s1363).registration9128,212262 -registration(r4622,c53,s1363).registration9129,212294 -registration(r4622,c53,s1363).registration9129,212294 -registration(r4623,c210,s1363).registration9130,212325 -registration(r4623,c210,s1363).registration9130,212325 -registration(r4624,c166,s1364).registration9131,212357 -registration(r4624,c166,s1364).registration9131,212357 -registration(r4625,c70,s1364).registration9132,212389 -registration(r4625,c70,s1364).registration9132,212389 -registration(r4626,c230,s1364).registration9133,212420 -registration(r4626,c230,s1364).registration9133,212420 -registration(r4627,c208,s1365).registration9134,212452 -registration(r4627,c208,s1365).registration9134,212452 -registration(r4628,c255,s1365).registration9135,212484 -registration(r4628,c255,s1365).registration9135,212484 -registration(r4629,c211,s1365).registration9136,212516 -registration(r4629,c211,s1365).registration9136,212516 -registration(r4630,c32,s1365).registration9137,212548 -registration(r4630,c32,s1365).registration9137,212548 -registration(r4631,c54,s1366).registration9138,212579 -registration(r4631,c54,s1366).registration9138,212579 -registration(r4632,c237,s1366).registration9139,212610 -registration(r4632,c237,s1366).registration9139,212610 -registration(r4633,c62,s1366).registration9140,212642 -registration(r4633,c62,s1366).registration9140,212642 -registration(r4634,c102,s1367).registration9141,212673 -registration(r4634,c102,s1367).registration9141,212673 -registration(r4635,c154,s1367).registration9142,212705 -registration(r4635,c154,s1367).registration9142,212705 -registration(r4636,c82,s1367).registration9143,212737 -registration(r4636,c82,s1367).registration9143,212737 -registration(r4637,c95,s1368).registration9144,212768 -registration(r4637,c95,s1368).registration9144,212768 -registration(r4638,c110,s1368).registration9145,212799 -registration(r4638,c110,s1368).registration9145,212799 -registration(r4639,c92,s1368).registration9146,212831 -registration(r4639,c92,s1368).registration9146,212831 -registration(r4640,c2,s1369).registration9147,212862 -registration(r4640,c2,s1369).registration9147,212862 -registration(r4641,c77,s1369).registration9148,212892 -registration(r4641,c77,s1369).registration9148,212892 -registration(r4642,c178,s1369).registration9149,212923 -registration(r4642,c178,s1369).registration9149,212923 -registration(r4643,c89,s1369).registration9150,212955 -registration(r4643,c89,s1369).registration9150,212955 -registration(r4644,c122,s1370).registration9151,212986 -registration(r4644,c122,s1370).registration9151,212986 -registration(r4645,c4,s1370).registration9152,213018 -registration(r4645,c4,s1370).registration9152,213018 -registration(r4646,c30,s1370).registration9153,213048 -registration(r4646,c30,s1370).registration9153,213048 -registration(r4647,c214,s1370).registration9154,213079 -registration(r4647,c214,s1370).registration9154,213079 -registration(r4648,c239,s1370).registration9155,213111 -registration(r4648,c239,s1370).registration9155,213111 -registration(r4649,c231,s1371).registration9156,213143 -registration(r4649,c231,s1371).registration9156,213143 -registration(r4650,c61,s1371).registration9157,213175 -registration(r4650,c61,s1371).registration9157,213175 -registration(r4651,c221,s1371).registration9158,213206 -registration(r4651,c221,s1371).registration9158,213206 -registration(r4652,c42,s1371).registration9159,213238 -registration(r4652,c42,s1371).registration9159,213238 -registration(r4653,c203,s1371).registration9160,213269 -registration(r4653,c203,s1371).registration9160,213269 -registration(r4654,c37,s1372).registration9161,213301 -registration(r4654,c37,s1372).registration9161,213301 -registration(r4655,c131,s1372).registration9162,213332 -registration(r4655,c131,s1372).registration9162,213332 -registration(r4656,c103,s1372).registration9163,213364 -registration(r4656,c103,s1372).registration9163,213364 -registration(r4657,c227,s1373).registration9164,213396 -registration(r4657,c227,s1373).registration9164,213396 -registration(r4658,c215,s1373).registration9165,213428 -registration(r4658,c215,s1373).registration9165,213428 -registration(r4659,c207,s1373).registration9166,213460 -registration(r4659,c207,s1373).registration9166,213460 -registration(r4660,c76,s1373).registration9167,213492 -registration(r4660,c76,s1373).registration9167,213492 -registration(r4661,c67,s1374).registration9168,213523 -registration(r4661,c67,s1374).registration9168,213523 -registration(r4662,c88,s1374).registration9169,213554 -registration(r4662,c88,s1374).registration9169,213554 -registration(r4663,c255,s1374).registration9170,213585 -registration(r4663,c255,s1374).registration9170,213585 -registration(r4664,c88,s1375).registration9171,213617 -registration(r4664,c88,s1375).registration9171,213617 -registration(r4665,c242,s1375).registration9172,213648 -registration(r4665,c242,s1375).registration9172,213648 -registration(r4666,c124,s1375).registration9173,213680 -registration(r4666,c124,s1375).registration9173,213680 -registration(r4667,c81,s1375).registration9174,213712 -registration(r4667,c81,s1375).registration9174,213712 -registration(r4668,c147,s1376).registration9175,213743 -registration(r4668,c147,s1376).registration9175,213743 -registration(r4669,c252,s1376).registration9176,213775 -registration(r4669,c252,s1376).registration9176,213775 -registration(r4670,c56,s1376).registration9177,213807 -registration(r4670,c56,s1376).registration9177,213807 -registration(r4671,c86,s1377).registration9178,213838 -registration(r4671,c86,s1377).registration9178,213838 -registration(r4672,c251,s1377).registration9179,213869 -registration(r4672,c251,s1377).registration9179,213869 -registration(r4673,c246,s1377).registration9180,213901 -registration(r4673,c246,s1377).registration9180,213901 -registration(r4674,c32,s1377).registration9181,213933 -registration(r4674,c32,s1377).registration9181,213933 -registration(r4675,c139,s1378).registration9182,213964 -registration(r4675,c139,s1378).registration9182,213964 -registration(r4676,c154,s1378).registration9183,213996 -registration(r4676,c154,s1378).registration9183,213996 -registration(r4677,c221,s1378).registration9184,214028 -registration(r4677,c221,s1378).registration9184,214028 -registration(r4678,c174,s1379).registration9185,214060 -registration(r4678,c174,s1379).registration9185,214060 -registration(r4679,c175,s1379).registration9186,214092 -registration(r4679,c175,s1379).registration9186,214092 -registration(r4680,c125,s1379).registration9187,214124 -registration(r4680,c125,s1379).registration9187,214124 -registration(r4681,c214,s1380).registration9188,214156 -registration(r4681,c214,s1380).registration9188,214156 -registration(r4682,c252,s1380).registration9189,214188 -registration(r4682,c252,s1380).registration9189,214188 -registration(r4683,c105,s1380).registration9190,214220 -registration(r4683,c105,s1380).registration9190,214220 -registration(r4684,c92,s1381).registration9191,214252 -registration(r4684,c92,s1381).registration9191,214252 -registration(r4685,c202,s1381).registration9192,214283 -registration(r4685,c202,s1381).registration9192,214283 -registration(r4686,c201,s1381).registration9193,214315 -registration(r4686,c201,s1381).registration9193,214315 -registration(r4687,c93,s1381).registration9194,214347 -registration(r4687,c93,s1381).registration9194,214347 -registration(r4688,c102,s1382).registration9195,214378 -registration(r4688,c102,s1382).registration9195,214378 -registration(r4689,c85,s1382).registration9196,214410 -registration(r4689,c85,s1382).registration9196,214410 -registration(r4690,c45,s1382).registration9197,214441 -registration(r4690,c45,s1382).registration9197,214441 -registration(r4691,c41,s1383).registration9198,214472 -registration(r4691,c41,s1383).registration9198,214472 -registration(r4692,c58,s1383).registration9199,214503 -registration(r4692,c58,s1383).registration9199,214503 -registration(r4693,c208,s1383).registration9200,214534 -registration(r4693,c208,s1383).registration9200,214534 -registration(r4694,c91,s1384).registration9201,214566 -registration(r4694,c91,s1384).registration9201,214566 -registration(r4695,c228,s1384).registration9202,214597 -registration(r4695,c228,s1384).registration9202,214597 -registration(r4696,c145,s1384).registration9203,214629 -registration(r4696,c145,s1384).registration9203,214629 -registration(r4697,c63,s1385).registration9204,214661 -registration(r4697,c63,s1385).registration9204,214661 -registration(r4698,c120,s1385).registration9205,214692 -registration(r4698,c120,s1385).registration9205,214692 -registration(r4699,c213,s1385).registration9206,214724 -registration(r4699,c213,s1385).registration9206,214724 -registration(r4700,c172,s1386).registration9207,214756 -registration(r4700,c172,s1386).registration9207,214756 -registration(r4701,c55,s1386).registration9208,214788 -registration(r4701,c55,s1386).registration9208,214788 -registration(r4702,c212,s1386).registration9209,214819 -registration(r4702,c212,s1386).registration9209,214819 -registration(r4703,c48,s1387).registration9210,214851 -registration(r4703,c48,s1387).registration9210,214851 -registration(r4704,c195,s1387).registration9211,214882 -registration(r4704,c195,s1387).registration9211,214882 -registration(r4705,c87,s1387).registration9212,214914 -registration(r4705,c87,s1387).registration9212,214914 -registration(r4706,c180,s1388).registration9213,214945 -registration(r4706,c180,s1388).registration9213,214945 -registration(r4707,c0,s1388).registration9214,214977 -registration(r4707,c0,s1388).registration9214,214977 -registration(r4708,c53,s1388).registration9215,215007 -registration(r4708,c53,s1388).registration9215,215007 -registration(r4709,c225,s1389).registration9216,215038 -registration(r4709,c225,s1389).registration9216,215038 -registration(r4710,c11,s1389).registration9217,215070 -registration(r4710,c11,s1389).registration9217,215070 -registration(r4711,c123,s1389).registration9218,215101 -registration(r4711,c123,s1389).registration9218,215101 -registration(r4712,c47,s1390).registration9219,215133 -registration(r4712,c47,s1390).registration9219,215133 -registration(r4713,c12,s1390).registration9220,215164 -registration(r4713,c12,s1390).registration9220,215164 -registration(r4714,c60,s1390).registration9221,215195 -registration(r4714,c60,s1390).registration9221,215195 -registration(r4715,c146,s1391).registration9222,215226 -registration(r4715,c146,s1391).registration9222,215226 -registration(r4716,c0,s1391).registration9223,215258 -registration(r4716,c0,s1391).registration9223,215258 -registration(r4717,c79,s1391).registration9224,215288 -registration(r4717,c79,s1391).registration9224,215288 -registration(r4718,c185,s1392).registration9225,215319 -registration(r4718,c185,s1392).registration9225,215319 -registration(r4719,c19,s1392).registration9226,215351 -registration(r4719,c19,s1392).registration9226,215351 -registration(r4720,c116,s1392).registration9227,215382 -registration(r4720,c116,s1392).registration9227,215382 -registration(r4721,c1,s1392).registration9228,215414 -registration(r4721,c1,s1392).registration9228,215414 -registration(r4722,c191,s1393).registration9229,215444 -registration(r4722,c191,s1393).registration9229,215444 -registration(r4723,c209,s1393).registration9230,215476 -registration(r4723,c209,s1393).registration9230,215476 -registration(r4724,c87,s1393).registration9231,215508 -registration(r4724,c87,s1393).registration9231,215508 -registration(r4725,c12,s1394).registration9232,215539 -registration(r4725,c12,s1394).registration9232,215539 -registration(r4726,c91,s1394).registration9233,215570 -registration(r4726,c91,s1394).registration9233,215570 -registration(r4727,c230,s1394).registration9234,215601 -registration(r4727,c230,s1394).registration9234,215601 -registration(r4728,c199,s1395).registration9235,215633 -registration(r4728,c199,s1395).registration9235,215633 -registration(r4729,c251,s1395).registration9236,215665 -registration(r4729,c251,s1395).registration9236,215665 -registration(r4730,c24,s1395).registration9237,215697 -registration(r4730,c24,s1395).registration9237,215697 -registration(r4731,c72,s1396).registration9238,215728 -registration(r4731,c72,s1396).registration9238,215728 -registration(r4732,c134,s1396).registration9239,215759 -registration(r4732,c134,s1396).registration9239,215759 -registration(r4733,c141,s1396).registration9240,215791 -registration(r4733,c141,s1396).registration9240,215791 -registration(r4734,c92,s1396).registration9241,215823 -registration(r4734,c92,s1396).registration9241,215823 -registration(r4735,c10,s1396).registration9242,215854 -registration(r4735,c10,s1396).registration9242,215854 -registration(r4736,c171,s1397).registration9243,215885 -registration(r4736,c171,s1397).registration9243,215885 -registration(r4737,c134,s1397).registration9244,215917 -registration(r4737,c134,s1397).registration9244,215917 -registration(r4738,c70,s1397).registration9245,215949 -registration(r4738,c70,s1397).registration9245,215949 -registration(r4739,c187,s1398).registration9246,215980 -registration(r4739,c187,s1398).registration9246,215980 -registration(r4740,c244,s1398).registration9247,216012 -registration(r4740,c244,s1398).registration9247,216012 -registration(r4741,c166,s1398).registration9248,216044 -registration(r4741,c166,s1398).registration9248,216044 -registration(r4742,c121,s1399).registration9249,216076 -registration(r4742,c121,s1399).registration9249,216076 -registration(r4743,c21,s1399).registration9250,216108 -registration(r4743,c21,s1399).registration9250,216108 -registration(r4744,c12,s1399).registration9251,216139 -registration(r4744,c12,s1399).registration9251,216139 -registration(r4745,c35,s1399).registration9252,216170 -registration(r4745,c35,s1399).registration9252,216170 -registration(r4746,c16,s1400).registration9253,216201 -registration(r4746,c16,s1400).registration9253,216201 -registration(r4747,c18,s1400).registration9254,216232 -registration(r4747,c18,s1400).registration9254,216232 -registration(r4748,c4,s1400).registration9255,216263 -registration(r4748,c4,s1400).registration9255,216263 -registration(r4749,c31,s1400).registration9256,216293 -registration(r4749,c31,s1400).registration9256,216293 -registration(r4750,c81,s1401).registration9257,216324 -registration(r4750,c81,s1401).registration9257,216324 -registration(r4751,c95,s1401).registration9258,216355 -registration(r4751,c95,s1401).registration9258,216355 -registration(r4752,c102,s1401).registration9259,216386 -registration(r4752,c102,s1401).registration9259,216386 -registration(r4753,c110,s1402).registration9260,216418 -registration(r4753,c110,s1402).registration9260,216418 -registration(r4754,c52,s1402).registration9261,216450 -registration(r4754,c52,s1402).registration9261,216450 -registration(r4755,c11,s1402).registration9262,216481 -registration(r4755,c11,s1402).registration9262,216481 -registration(r4756,c146,s1403).registration9263,216512 -registration(r4756,c146,s1403).registration9263,216512 -registration(r4757,c192,s1403).registration9264,216544 -registration(r4757,c192,s1403).registration9264,216544 -registration(r4758,c69,s1403).registration9265,216576 -registration(r4758,c69,s1403).registration9265,216576 -registration(r4759,c123,s1403).registration9266,216607 -registration(r4759,c123,s1403).registration9266,216607 -registration(r4760,c212,s1404).registration9267,216639 -registration(r4760,c212,s1404).registration9267,216639 -registration(r4761,c56,s1404).registration9268,216671 -registration(r4761,c56,s1404).registration9268,216671 -registration(r4762,c237,s1404).registration9269,216702 -registration(r4762,c237,s1404).registration9269,216702 -registration(r4763,c250,s1405).registration9270,216734 -registration(r4763,c250,s1405).registration9270,216734 -registration(r4764,c120,s1405).registration9271,216766 -registration(r4764,c120,s1405).registration9271,216766 -registration(r4765,c111,s1405).registration9272,216798 -registration(r4765,c111,s1405).registration9272,216798 -registration(r4766,c129,s1406).registration9273,216830 -registration(r4766,c129,s1406).registration9273,216830 -registration(r4767,c101,s1406).registration9274,216862 -registration(r4767,c101,s1406).registration9274,216862 -registration(r4768,c97,s1406).registration9275,216894 -registration(r4768,c97,s1406).registration9275,216894 -registration(r4769,c179,s1407).registration9276,216925 -registration(r4769,c179,s1407).registration9276,216925 -registration(r4770,c238,s1407).registration9277,216957 -registration(r4770,c238,s1407).registration9277,216957 -registration(r4771,c231,s1407).registration9278,216989 -registration(r4771,c231,s1407).registration9278,216989 -registration(r4772,c86,s1408).registration9279,217021 -registration(r4772,c86,s1408).registration9279,217021 -registration(r4773,c192,s1408).registration9280,217052 -registration(r4773,c192,s1408).registration9280,217052 -registration(r4774,c229,s1408).registration9281,217084 -registration(r4774,c229,s1408).registration9281,217084 -registration(r4775,c119,s1409).registration9282,217116 -registration(r4775,c119,s1409).registration9282,217116 -registration(r4776,c144,s1409).registration9283,217148 -registration(r4776,c144,s1409).registration9283,217148 -registration(r4777,c230,s1409).registration9284,217180 -registration(r4777,c230,s1409).registration9284,217180 -registration(r4778,c31,s1409).registration9285,217212 -registration(r4778,c31,s1409).registration9285,217212 -registration(r4779,c121,s1410).registration9286,217243 -registration(r4779,c121,s1410).registration9286,217243 -registration(r4780,c67,s1410).registration9287,217275 -registration(r4780,c67,s1410).registration9287,217275 -registration(r4781,c13,s1410).registration9288,217306 -registration(r4781,c13,s1410).registration9288,217306 -registration(r4782,c7,s1411).registration9289,217337 -registration(r4782,c7,s1411).registration9289,217337 -registration(r4783,c65,s1411).registration9290,217367 -registration(r4783,c65,s1411).registration9290,217367 -registration(r4784,c2,s1411).registration9291,217398 -registration(r4784,c2,s1411).registration9291,217398 -registration(r4785,c132,s1412).registration9292,217428 -registration(r4785,c132,s1412).registration9292,217428 -registration(r4786,c207,s1412).registration9293,217460 -registration(r4786,c207,s1412).registration9293,217460 -registration(r4787,c44,s1412).registration9294,217492 -registration(r4787,c44,s1412).registration9294,217492 -registration(r4788,c82,s1412).registration9295,217523 -registration(r4788,c82,s1412).registration9295,217523 -registration(r4789,c1,s1413).registration9296,217554 -registration(r4789,c1,s1413).registration9296,217554 -registration(r4790,c58,s1413).registration9297,217584 -registration(r4790,c58,s1413).registration9297,217584 -registration(r4791,c108,s1413).registration9298,217615 -registration(r4791,c108,s1413).registration9298,217615 -registration(r4792,c43,s1414).registration9299,217647 -registration(r4792,c43,s1414).registration9299,217647 -registration(r4793,c194,s1414).registration9300,217678 -registration(r4793,c194,s1414).registration9300,217678 -registration(r4794,c96,s1414).registration9301,217710 -registration(r4794,c96,s1414).registration9301,217710 -registration(r4795,c239,s1415).registration9302,217741 -registration(r4795,c239,s1415).registration9302,217741 -registration(r4796,c176,s1415).registration9303,217773 -registration(r4796,c176,s1415).registration9303,217773 -registration(r4797,c221,s1415).registration9304,217805 -registration(r4797,c221,s1415).registration9304,217805 -registration(r4798,c87,s1416).registration9305,217837 -registration(r4798,c87,s1416).registration9305,217837 -registration(r4799,c63,s1416).registration9306,217868 -registration(r4799,c63,s1416).registration9306,217868 -registration(r4800,c223,s1416).registration9307,217899 -registration(r4800,c223,s1416).registration9307,217899 -registration(r4801,c209,s1416).registration9308,217931 -registration(r4801,c209,s1416).registration9308,217931 -registration(r4802,c94,s1417).registration9309,217963 -registration(r4802,c94,s1417).registration9309,217963 -registration(r4803,c211,s1417).registration9310,217994 -registration(r4803,c211,s1417).registration9310,217994 -registration(r4804,c79,s1417).registration9311,218026 -registration(r4804,c79,s1417).registration9311,218026 -registration(r4805,c87,s1417).registration9312,218057 -registration(r4805,c87,s1417).registration9312,218057 -registration(r4806,c85,s1417).registration9313,218088 -registration(r4806,c85,s1417).registration9313,218088 -registration(r4807,c106,s1418).registration9314,218119 -registration(r4807,c106,s1418).registration9314,218119 -registration(r4808,c113,s1418).registration9315,218151 -registration(r4808,c113,s1418).registration9315,218151 -registration(r4809,c53,s1418).registration9316,218183 -registration(r4809,c53,s1418).registration9316,218183 -registration(r4810,c161,s1419).registration9317,218214 -registration(r4810,c161,s1419).registration9317,218214 -registration(r4811,c72,s1419).registration9318,218246 -registration(r4811,c72,s1419).registration9318,218246 -registration(r4812,c59,s1419).registration9319,218277 -registration(r4812,c59,s1419).registration9319,218277 -registration(r4813,c156,s1419).registration9320,218308 -registration(r4813,c156,s1419).registration9320,218308 -registration(r4814,c151,s1420).registration9321,218340 -registration(r4814,c151,s1420).registration9321,218340 -registration(r4815,c67,s1420).registration9322,218372 -registration(r4815,c67,s1420).registration9322,218372 -registration(r4816,c139,s1420).registration9323,218403 -registration(r4816,c139,s1420).registration9323,218403 -registration(r4817,c134,s1420).registration9324,218435 -registration(r4817,c134,s1420).registration9324,218435 -registration(r4818,c27,s1421).registration9325,218467 -registration(r4818,c27,s1421).registration9325,218467 -registration(r4819,c121,s1421).registration9326,218498 -registration(r4819,c121,s1421).registration9326,218498 -registration(r4820,c199,s1421).registration9327,218530 -registration(r4820,c199,s1421).registration9327,218530 -registration(r4821,c152,s1422).registration9328,218562 -registration(r4821,c152,s1422).registration9328,218562 -registration(r4822,c224,s1422).registration9329,218594 -registration(r4822,c224,s1422).registration9329,218594 -registration(r4823,c246,s1422).registration9330,218626 -registration(r4823,c246,s1422).registration9330,218626 -registration(r4824,c31,s1422).registration9331,218658 -registration(r4824,c31,s1422).registration9331,218658 -registration(r4825,c195,s1423).registration9332,218689 -registration(r4825,c195,s1423).registration9332,218689 -registration(r4826,c78,s1423).registration9333,218721 -registration(r4826,c78,s1423).registration9333,218721 -registration(r4827,c117,s1423).registration9334,218752 -registration(r4827,c117,s1423).registration9334,218752 -registration(r4828,c191,s1423).registration9335,218784 -registration(r4828,c191,s1423).registration9335,218784 -registration(r4829,c154,s1424).registration9336,218816 -registration(r4829,c154,s1424).registration9336,218816 -registration(r4830,c106,s1424).registration9337,218848 -registration(r4830,c106,s1424).registration9337,218848 -registration(r4831,c75,s1424).registration9338,218880 -registration(r4831,c75,s1424).registration9338,218880 -registration(r4832,c24,s1425).registration9339,218911 -registration(r4832,c24,s1425).registration9339,218911 -registration(r4833,c237,s1425).registration9340,218942 -registration(r4833,c237,s1425).registration9340,218942 -registration(r4834,c67,s1425).registration9341,218974 -registration(r4834,c67,s1425).registration9341,218974 -registration(r4835,c206,s1425).registration9342,219005 -registration(r4835,c206,s1425).registration9342,219005 -registration(r4836,c250,s1426).registration9343,219037 -registration(r4836,c250,s1426).registration9343,219037 -registration(r4837,c82,s1426).registration9344,219069 -registration(r4837,c82,s1426).registration9344,219069 -registration(r4838,c86,s1426).registration9345,219100 -registration(r4838,c86,s1426).registration9345,219100 -registration(r4839,c203,s1426).registration9346,219131 -registration(r4839,c203,s1426).registration9346,219131 -registration(r4840,c15,s1426).registration9347,219163 -registration(r4840,c15,s1426).registration9347,219163 -registration(r4841,c99,s1427).registration9348,219194 -registration(r4841,c99,s1427).registration9348,219194 -registration(r4842,c181,s1427).registration9349,219225 -registration(r4842,c181,s1427).registration9349,219225 -registration(r4843,c240,s1427).registration9350,219257 -registration(r4843,c240,s1427).registration9350,219257 -registration(r4844,c31,s1427).registration9351,219289 -registration(r4844,c31,s1427).registration9351,219289 -registration(r4845,c122,s1428).registration9352,219320 -registration(r4845,c122,s1428).registration9352,219320 -registration(r4846,c228,s1428).registration9353,219352 -registration(r4846,c228,s1428).registration9353,219352 -registration(r4847,c110,s1428).registration9354,219384 -registration(r4847,c110,s1428).registration9354,219384 -registration(r4848,c46,s1428).registration9355,219416 -registration(r4848,c46,s1428).registration9355,219416 -registration(r4849,c154,s1429).registration9356,219447 -registration(r4849,c154,s1429).registration9356,219447 -registration(r4850,c173,s1429).registration9357,219479 -registration(r4850,c173,s1429).registration9357,219479 -registration(r4851,c153,s1429).registration9358,219511 -registration(r4851,c153,s1429).registration9358,219511 -registration(r4852,c65,s1430).registration9359,219543 -registration(r4852,c65,s1430).registration9359,219543 -registration(r4853,c255,s1430).registration9360,219574 -registration(r4853,c255,s1430).registration9360,219574 -registration(r4854,c125,s1430).registration9361,219606 -registration(r4854,c125,s1430).registration9361,219606 -registration(r4855,c174,s1431).registration9362,219638 -registration(r4855,c174,s1431).registration9362,219638 -registration(r4856,c82,s1431).registration9363,219670 -registration(r4856,c82,s1431).registration9363,219670 -registration(r4857,c170,s1431).registration9364,219701 -registration(r4857,c170,s1431).registration9364,219701 -registration(r4858,c168,s1431).registration9365,219733 -registration(r4858,c168,s1431).registration9365,219733 -registration(r4859,c206,s1432).registration9366,219765 -registration(r4859,c206,s1432).registration9366,219765 -registration(r4860,c197,s1432).registration9367,219797 -registration(r4860,c197,s1432).registration9367,219797 -registration(r4861,c208,s1432).registration9368,219829 -registration(r4861,c208,s1432).registration9368,219829 -registration(r4862,c121,s1432).registration9369,219861 -registration(r4862,c121,s1432).registration9369,219861 -registration(r4863,c140,s1433).registration9370,219893 -registration(r4863,c140,s1433).registration9370,219893 -registration(r4864,c155,s1433).registration9371,219925 -registration(r4864,c155,s1433).registration9371,219925 -registration(r4865,c224,s1433).registration9372,219957 -registration(r4865,c224,s1433).registration9372,219957 -registration(r4866,c125,s1433).registration9373,219989 -registration(r4866,c125,s1433).registration9373,219989 -registration(r4867,c246,s1434).registration9374,220021 -registration(r4867,c246,s1434).registration9374,220021 -registration(r4868,c144,s1434).registration9375,220053 -registration(r4868,c144,s1434).registration9375,220053 -registration(r4869,c125,s1434).registration9376,220085 -registration(r4869,c125,s1434).registration9376,220085 -registration(r4870,c25,s1435).registration9377,220117 -registration(r4870,c25,s1435).registration9377,220117 -registration(r4871,c120,s1435).registration9378,220148 -registration(r4871,c120,s1435).registration9378,220148 -registration(r4872,c206,s1435).registration9379,220180 -registration(r4872,c206,s1435).registration9379,220180 -registration(r4873,c75,s1436).registration9380,220212 -registration(r4873,c75,s1436).registration9380,220212 -registration(r4874,c223,s1436).registration9381,220243 -registration(r4874,c223,s1436).registration9381,220243 -registration(r4875,c40,s1436).registration9382,220275 -registration(r4875,c40,s1436).registration9382,220275 -registration(r4876,c211,s1436).registration9383,220306 -registration(r4876,c211,s1436).registration9383,220306 -registration(r4877,c252,s1437).registration9384,220338 -registration(r4877,c252,s1437).registration9384,220338 -registration(r4878,c218,s1437).registration9385,220370 -registration(r4878,c218,s1437).registration9385,220370 -registration(r4879,c146,s1437).registration9386,220402 -registration(r4879,c146,s1437).registration9386,220402 -registration(r4880,c100,s1438).registration9387,220434 -registration(r4880,c100,s1438).registration9387,220434 -registration(r4881,c253,s1438).registration9388,220466 -registration(r4881,c253,s1438).registration9388,220466 -registration(r4882,c28,s1438).registration9389,220498 -registration(r4882,c28,s1438).registration9389,220498 -registration(r4883,c138,s1438).registration9390,220529 -registration(r4883,c138,s1438).registration9390,220529 -registration(r4884,c4,s1439).registration9391,220561 -registration(r4884,c4,s1439).registration9391,220561 -registration(r4885,c145,s1439).registration9392,220591 -registration(r4885,c145,s1439).registration9392,220591 -registration(r4886,c55,s1439).registration9393,220623 -registration(r4886,c55,s1439).registration9393,220623 -registration(r4887,c200,s1440).registration9394,220654 -registration(r4887,c200,s1440).registration9394,220654 -registration(r4888,c210,s1440).registration9395,220686 -registration(r4888,c210,s1440).registration9395,220686 -registration(r4889,c24,s1440).registration9396,220718 -registration(r4889,c24,s1440).registration9396,220718 -registration(r4890,c236,s1440).registration9397,220749 -registration(r4890,c236,s1440).registration9397,220749 -registration(r4891,c212,s1441).registration9398,220781 -registration(r4891,c212,s1441).registration9398,220781 -registration(r4892,c70,s1441).registration9399,220813 -registration(r4892,c70,s1441).registration9399,220813 -registration(r4893,c8,s1441).registration9400,220844 -registration(r4893,c8,s1441).registration9400,220844 -registration(r4894,c38,s1441).registration9401,220874 -registration(r4894,c38,s1441).registration9401,220874 -registration(r4895,c27,s1441).registration9402,220905 -registration(r4895,c27,s1441).registration9402,220905 -registration(r4896,c88,s1442).registration9403,220936 -registration(r4896,c88,s1442).registration9403,220936 -registration(r4897,c5,s1442).registration9404,220967 -registration(r4897,c5,s1442).registration9404,220967 -registration(r4898,c24,s1442).registration9405,220997 -registration(r4898,c24,s1442).registration9405,220997 -registration(r4899,c226,s1443).registration9406,221028 -registration(r4899,c226,s1443).registration9406,221028 -registration(r4900,c213,s1443).registration9407,221060 -registration(r4900,c213,s1443).registration9407,221060 -registration(r4901,c253,s1443).registration9408,221092 -registration(r4901,c253,s1443).registration9408,221092 -registration(r4902,c33,s1444).registration9409,221124 -registration(r4902,c33,s1444).registration9409,221124 -registration(r4903,c106,s1444).registration9410,221155 -registration(r4903,c106,s1444).registration9410,221155 -registration(r4904,c171,s1444).registration9411,221187 -registration(r4904,c171,s1444).registration9411,221187 -registration(r4905,c250,s1444).registration9412,221219 -registration(r4905,c250,s1444).registration9412,221219 -registration(r4906,c121,s1445).registration9413,221251 -registration(r4906,c121,s1445).registration9413,221251 -registration(r4907,c130,s1445).registration9414,221283 -registration(r4907,c130,s1445).registration9414,221283 -registration(r4908,c169,s1445).registration9415,221315 -registration(r4908,c169,s1445).registration9415,221315 -registration(r4909,c175,s1446).registration9416,221347 -registration(r4909,c175,s1446).registration9416,221347 -registration(r4910,c56,s1446).registration9417,221379 -registration(r4910,c56,s1446).registration9417,221379 -registration(r4911,c43,s1446).registration9418,221410 -registration(r4911,c43,s1446).registration9418,221410 -registration(r4912,c52,s1447).registration9419,221441 -registration(r4912,c52,s1447).registration9419,221441 -registration(r4913,c164,s1447).registration9420,221472 -registration(r4913,c164,s1447).registration9420,221472 -registration(r4914,c166,s1447).registration9421,221504 -registration(r4914,c166,s1447).registration9421,221504 -registration(r4915,c254,s1448).registration9422,221536 -registration(r4915,c254,s1448).registration9422,221536 -registration(r4916,c106,s1448).registration9423,221568 -registration(r4916,c106,s1448).registration9423,221568 -registration(r4917,c213,s1448).registration9424,221600 -registration(r4917,c213,s1448).registration9424,221600 -registration(r4918,c4,s1448).registration9425,221632 -registration(r4918,c4,s1448).registration9425,221632 -registration(r4919,c9,s1449).registration9426,221662 -registration(r4919,c9,s1449).registration9426,221662 -registration(r4920,c1,s1449).registration9427,221692 -registration(r4920,c1,s1449).registration9427,221692 -registration(r4921,c153,s1449).registration9428,221722 -registration(r4921,c153,s1449).registration9428,221722 -registration(r4922,c3,s1449).registration9429,221754 -registration(r4922,c3,s1449).registration9429,221754 -registration(r4923,c166,s1450).registration9430,221784 -registration(r4923,c166,s1450).registration9430,221784 -registration(r4924,c72,s1450).registration9431,221816 -registration(r4924,c72,s1450).registration9431,221816 -registration(r4925,c253,s1450).registration9432,221847 -registration(r4925,c253,s1450).registration9432,221847 -registration(r4926,c127,s1451).registration9433,221879 -registration(r4926,c127,s1451).registration9433,221879 -registration(r4927,c48,s1451).registration9434,221911 -registration(r4927,c48,s1451).registration9434,221911 -registration(r4928,c14,s1451).registration9435,221942 -registration(r4928,c14,s1451).registration9435,221942 -registration(r4929,c224,s1451).registration9436,221973 -registration(r4929,c224,s1451).registration9436,221973 -registration(r4930,c69,s1452).registration9437,222005 -registration(r4930,c69,s1452).registration9437,222005 -registration(r4931,c100,s1452).registration9438,222036 -registration(r4931,c100,s1452).registration9438,222036 -registration(r4932,c199,s1452).registration9439,222068 -registration(r4932,c199,s1452).registration9439,222068 -registration(r4933,c109,s1452).registration9440,222100 -registration(r4933,c109,s1452).registration9440,222100 -registration(r4934,c223,s1453).registration9441,222132 -registration(r4934,c223,s1453).registration9441,222132 -registration(r4935,c198,s1453).registration9442,222164 -registration(r4935,c198,s1453).registration9442,222164 -registration(r4936,c106,s1453).registration9443,222196 -registration(r4936,c106,s1453).registration9443,222196 -registration(r4937,c157,s1454).registration9444,222228 -registration(r4937,c157,s1454).registration9444,222228 -registration(r4938,c78,s1454).registration9445,222260 -registration(r4938,c78,s1454).registration9445,222260 -registration(r4939,c86,s1454).registration9446,222291 -registration(r4939,c86,s1454).registration9446,222291 -registration(r4940,c239,s1455).registration9447,222322 -registration(r4940,c239,s1455).registration9447,222322 -registration(r4941,c162,s1455).registration9448,222354 -registration(r4941,c162,s1455).registration9448,222354 -registration(r4942,c114,s1455).registration9449,222386 -registration(r4942,c114,s1455).registration9449,222386 -registration(r4943,c187,s1456).registration9450,222418 -registration(r4943,c187,s1456).registration9450,222418 -registration(r4944,c239,s1456).registration9451,222450 -registration(r4944,c239,s1456).registration9451,222450 -registration(r4945,c208,s1456).registration9452,222482 -registration(r4945,c208,s1456).registration9452,222482 -registration(r4946,c1,s1457).registration9453,222514 -registration(r4946,c1,s1457).registration9453,222514 -registration(r4947,c140,s1457).registration9454,222544 -registration(r4947,c140,s1457).registration9454,222544 -registration(r4948,c136,s1457).registration9455,222576 -registration(r4948,c136,s1457).registration9455,222576 -registration(r4949,c205,s1458).registration9456,222608 -registration(r4949,c205,s1458).registration9456,222608 -registration(r4950,c68,s1458).registration9457,222640 -registration(r4950,c68,s1458).registration9457,222640 -registration(r4951,c154,s1458).registration9458,222671 -registration(r4951,c154,s1458).registration9458,222671 -registration(r4952,c7,s1459).registration9459,222703 -registration(r4952,c7,s1459).registration9459,222703 -registration(r4953,c39,s1459).registration9460,222733 -registration(r4953,c39,s1459).registration9460,222733 -registration(r4954,c19,s1459).registration9461,222764 -registration(r4954,c19,s1459).registration9461,222764 -registration(r4955,c176,s1460).registration9462,222795 -registration(r4955,c176,s1460).registration9462,222795 -registration(r4956,c15,s1460).registration9463,222827 -registration(r4956,c15,s1460).registration9463,222827 -registration(r4957,c192,s1460).registration9464,222858 -registration(r4957,c192,s1460).registration9464,222858 -registration(r4958,c182,s1460).registration9465,222890 -registration(r4958,c182,s1460).registration9465,222890 -registration(r4959,c246,s1460).registration9466,222922 -registration(r4959,c246,s1460).registration9466,222922 -registration(r4960,c89,s1461).registration9467,222954 -registration(r4960,c89,s1461).registration9467,222954 -registration(r4961,c132,s1461).registration9468,222985 -registration(r4961,c132,s1461).registration9468,222985 -registration(r4962,c232,s1461).registration9469,223017 -registration(r4962,c232,s1461).registration9469,223017 -registration(r4963,c215,s1462).registration9470,223049 -registration(r4963,c215,s1462).registration9470,223049 -registration(r4964,c115,s1462).registration9471,223081 -registration(r4964,c115,s1462).registration9471,223081 -registration(r4965,c188,s1462).registration9472,223113 -registration(r4965,c188,s1462).registration9472,223113 -registration(r4966,c73,s1463).registration9473,223145 -registration(r4966,c73,s1463).registration9473,223145 -registration(r4967,c207,s1463).registration9474,223176 -registration(r4967,c207,s1463).registration9474,223176 -registration(r4968,c86,s1463).registration9475,223208 -registration(r4968,c86,s1463).registration9475,223208 -registration(r4969,c156,s1463).registration9476,223239 -registration(r4969,c156,s1463).registration9476,223239 -registration(r4970,c183,s1464).registration9477,223271 -registration(r4970,c183,s1464).registration9477,223271 -registration(r4971,c227,s1464).registration9478,223303 -registration(r4971,c227,s1464).registration9478,223303 -registration(r4972,c231,s1464).registration9479,223335 -registration(r4972,c231,s1464).registration9479,223335 -registration(r4973,c249,s1464).registration9480,223367 -registration(r4973,c249,s1464).registration9480,223367 -registration(r4974,c48,s1465).registration9481,223399 -registration(r4974,c48,s1465).registration9481,223399 -registration(r4975,c123,s1465).registration9482,223430 -registration(r4975,c123,s1465).registration9482,223430 -registration(r4976,c170,s1465).registration9483,223462 -registration(r4976,c170,s1465).registration9483,223462 -registration(r4977,c177,s1466).registration9484,223494 -registration(r4977,c177,s1466).registration9484,223494 -registration(r4978,c247,s1466).registration9485,223526 -registration(r4978,c247,s1466).registration9485,223526 -registration(r4979,c75,s1466).registration9486,223558 -registration(r4979,c75,s1466).registration9486,223558 -registration(r4980,c207,s1467).registration9487,223589 -registration(r4980,c207,s1467).registration9487,223589 -registration(r4981,c143,s1467).registration9488,223621 -registration(r4981,c143,s1467).registration9488,223621 -registration(r4982,c245,s1467).registration9489,223653 -registration(r4982,c245,s1467).registration9489,223653 -registration(r4983,c102,s1467).registration9490,223685 -registration(r4983,c102,s1467).registration9490,223685 -registration(r4984,c203,s1468).registration9491,223717 -registration(r4984,c203,s1468).registration9491,223717 -registration(r4985,c173,s1468).registration9492,223749 -registration(r4985,c173,s1468).registration9492,223749 -registration(r4986,c222,s1468).registration9493,223781 -registration(r4986,c222,s1468).registration9493,223781 -registration(r4987,c123,s1468).registration9494,223813 -registration(r4987,c123,s1468).registration9494,223813 -registration(r4988,c50,s1469).registration9495,223845 -registration(r4988,c50,s1469).registration9495,223845 -registration(r4989,c25,s1469).registration9496,223876 -registration(r4989,c25,s1469).registration9496,223876 -registration(r4990,c207,s1469).registration9497,223907 -registration(r4990,c207,s1469).registration9497,223907 -registration(r4991,c182,s1470).registration9498,223939 -registration(r4991,c182,s1470).registration9498,223939 -registration(r4992,c168,s1470).registration9499,223971 -registration(r4992,c168,s1470).registration9499,223971 -registration(r4993,c6,s1470).registration9500,224003 -registration(r4993,c6,s1470).registration9500,224003 -registration(r4994,c130,s1471).registration9501,224033 -registration(r4994,c130,s1471).registration9501,224033 -registration(r4995,c90,s1471).registration9502,224065 -registration(r4995,c90,s1471).registration9502,224065 -registration(r4996,c26,s1471).registration9503,224096 -registration(r4996,c26,s1471).registration9503,224096 -registration(r4997,c18,s1471).registration9504,224127 -registration(r4997,c18,s1471).registration9504,224127 -registration(r4998,c9,s1472).registration9505,224158 -registration(r4998,c9,s1472).registration9505,224158 -registration(r4999,c179,s1472).registration9506,224188 -registration(r4999,c179,s1472).registration9506,224188 -registration(r5000,c100,s1472).registration9507,224220 -registration(r5000,c100,s1472).registration9507,224220 -registration(r5001,c89,s1473).registration9508,224252 -registration(r5001,c89,s1473).registration9508,224252 -registration(r5002,c231,s1473).registration9509,224283 -registration(r5002,c231,s1473).registration9509,224283 -registration(r5003,c170,s1473).registration9510,224315 -registration(r5003,c170,s1473).registration9510,224315 -registration(r5004,c89,s1474).registration9511,224347 -registration(r5004,c89,s1474).registration9511,224347 -registration(r5005,c161,s1474).registration9512,224378 -registration(r5005,c161,s1474).registration9512,224378 -registration(r5006,c201,s1474).registration9513,224410 -registration(r5006,c201,s1474).registration9513,224410 -registration(r5007,c250,s1475).registration9514,224442 -registration(r5007,c250,s1475).registration9514,224442 -registration(r5008,c238,s1475).registration9515,224474 -registration(r5008,c238,s1475).registration9515,224474 -registration(r5009,c164,s1475).registration9516,224506 -registration(r5009,c164,s1475).registration9516,224506 -registration(r5010,c92,s1476).registration9517,224538 -registration(r5010,c92,s1476).registration9517,224538 -registration(r5011,c142,s1476).registration9518,224569 -registration(r5011,c142,s1476).registration9518,224569 -registration(r5012,c243,s1476).registration9519,224601 -registration(r5012,c243,s1476).registration9519,224601 -registration(r5013,c103,s1476).registration9520,224633 -registration(r5013,c103,s1476).registration9520,224633 -registration(r5014,c103,s1477).registration9521,224665 -registration(r5014,c103,s1477).registration9521,224665 -registration(r5015,c131,s1477).registration9522,224697 -registration(r5015,c131,s1477).registration9522,224697 -registration(r5016,c50,s1477).registration9523,224729 -registration(r5016,c50,s1477).registration9523,224729 -registration(r5017,c61,s1478).registration9524,224760 -registration(r5017,c61,s1478).registration9524,224760 -registration(r5018,c38,s1478).registration9525,224791 -registration(r5018,c38,s1478).registration9525,224791 -registration(r5019,c249,s1478).registration9526,224822 -registration(r5019,c249,s1478).registration9526,224822 -registration(r5020,c106,s1478).registration9527,224854 -registration(r5020,c106,s1478).registration9527,224854 -registration(r5021,c254,s1479).registration9528,224886 -registration(r5021,c254,s1479).registration9528,224886 -registration(r5022,c20,s1479).registration9529,224918 -registration(r5022,c20,s1479).registration9529,224918 -registration(r5023,c22,s1479).registration9530,224949 -registration(r5023,c22,s1479).registration9530,224949 -registration(r5024,c183,s1480).registration9531,224980 -registration(r5024,c183,s1480).registration9531,224980 -registration(r5025,c121,s1480).registration9532,225012 -registration(r5025,c121,s1480).registration9532,225012 -registration(r5026,c66,s1480).registration9533,225044 -registration(r5026,c66,s1480).registration9533,225044 -registration(r5027,c50,s1481).registration9534,225075 -registration(r5027,c50,s1481).registration9534,225075 -registration(r5028,c52,s1481).registration9535,225106 -registration(r5028,c52,s1481).registration9535,225106 -registration(r5029,c91,s1481).registration9536,225137 -registration(r5029,c91,s1481).registration9536,225137 -registration(r5030,c145,s1481).registration9537,225168 -registration(r5030,c145,s1481).registration9537,225168 -registration(r5031,c18,s1482).registration9538,225200 -registration(r5031,c18,s1482).registration9538,225200 -registration(r5032,c156,s1482).registration9539,225231 -registration(r5032,c156,s1482).registration9539,225231 -registration(r5033,c80,s1482).registration9540,225263 -registration(r5033,c80,s1482).registration9540,225263 -registration(r5034,c211,s1482).registration9541,225294 -registration(r5034,c211,s1482).registration9541,225294 -registration(r5035,c187,s1483).registration9542,225326 -registration(r5035,c187,s1483).registration9542,225326 -registration(r5036,c118,s1483).registration9543,225358 -registration(r5036,c118,s1483).registration9543,225358 -registration(r5037,c104,s1483).registration9544,225390 -registration(r5037,c104,s1483).registration9544,225390 -registration(r5038,c98,s1484).registration9545,225422 -registration(r5038,c98,s1484).registration9545,225422 -registration(r5039,c14,s1484).registration9546,225453 -registration(r5039,c14,s1484).registration9546,225453 -registration(r5040,c5,s1484).registration9547,225484 -registration(r5040,c5,s1484).registration9547,225484 -registration(r5041,c27,s1484).registration9548,225514 -registration(r5041,c27,s1484).registration9548,225514 -registration(r5042,c204,s1485).registration9549,225545 -registration(r5042,c204,s1485).registration9549,225545 -registration(r5043,c189,s1485).registration9550,225577 -registration(r5043,c189,s1485).registration9550,225577 -registration(r5044,c134,s1485).registration9551,225609 -registration(r5044,c134,s1485).registration9551,225609 -registration(r5045,c202,s1486).registration9552,225641 -registration(r5045,c202,s1486).registration9552,225641 -registration(r5046,c17,s1486).registration9553,225673 -registration(r5046,c17,s1486).registration9553,225673 -registration(r5047,c172,s1486).registration9554,225704 -registration(r5047,c172,s1486).registration9554,225704 -registration(r5048,c7,s1487).registration9555,225736 -registration(r5048,c7,s1487).registration9555,225736 -registration(r5049,c29,s1487).registration9556,225766 -registration(r5049,c29,s1487).registration9556,225766 -registration(r5050,c213,s1487).registration9557,225797 -registration(r5050,c213,s1487).registration9557,225797 -registration(r5051,c113,s1487).registration9558,225829 -registration(r5051,c113,s1487).registration9558,225829 -registration(r5052,c64,s1488).registration9559,225861 -registration(r5052,c64,s1488).registration9559,225861 -registration(r5053,c182,s1488).registration9560,225892 -registration(r5053,c182,s1488).registration9560,225892 -registration(r5054,c116,s1488).registration9561,225924 -registration(r5054,c116,s1488).registration9561,225924 -registration(r5055,c112,s1488).registration9562,225956 -registration(r5055,c112,s1488).registration9562,225956 -registration(r5056,c124,s1489).registration9563,225988 -registration(r5056,c124,s1489).registration9563,225988 -registration(r5057,c104,s1489).registration9564,226020 -registration(r5057,c104,s1489).registration9564,226020 -registration(r5058,c136,s1489).registration9565,226052 -registration(r5058,c136,s1489).registration9565,226052 -registration(r5059,c141,s1490).registration9566,226084 -registration(r5059,c141,s1490).registration9566,226084 -registration(r5060,c149,s1490).registration9567,226116 -registration(r5060,c149,s1490).registration9567,226116 -registration(r5061,c131,s1490).registration9568,226148 -registration(r5061,c131,s1490).registration9568,226148 -registration(r5062,c66,s1491).registration9569,226180 -registration(r5062,c66,s1491).registration9569,226180 -registration(r5063,c47,s1491).registration9570,226211 -registration(r5063,c47,s1491).registration9570,226211 -registration(r5064,c229,s1491).registration9571,226242 -registration(r5064,c229,s1491).registration9571,226242 -registration(r5065,c246,s1492).registration9572,226274 -registration(r5065,c246,s1492).registration9572,226274 -registration(r5066,c39,s1492).registration9573,226306 -registration(r5066,c39,s1492).registration9573,226306 -registration(r5067,c247,s1492).registration9574,226337 -registration(r5067,c247,s1492).registration9574,226337 -registration(r5068,c19,s1492).registration9575,226369 -registration(r5068,c19,s1492).registration9575,226369 -registration(r5069,c16,s1493).registration9576,226400 -registration(r5069,c16,s1493).registration9576,226400 -registration(r5070,c31,s1493).registration9577,226431 -registration(r5070,c31,s1493).registration9577,226431 -registration(r5071,c67,s1493).registration9578,226462 -registration(r5071,c67,s1493).registration9578,226462 -registration(r5072,c248,s1494).registration9579,226493 -registration(r5072,c248,s1494).registration9579,226493 -registration(r5073,c245,s1494).registration9580,226525 -registration(r5073,c245,s1494).registration9580,226525 -registration(r5074,c113,s1494).registration9581,226557 -registration(r5074,c113,s1494).registration9581,226557 -registration(r5075,c238,s1495).registration9582,226589 -registration(r5075,c238,s1495).registration9582,226589 -registration(r5076,c210,s1495).registration9583,226621 -registration(r5076,c210,s1495).registration9583,226621 -registration(r5077,c105,s1495).registration9584,226653 -registration(r5077,c105,s1495).registration9584,226653 -registration(r5078,c247,s1496).registration9585,226685 -registration(r5078,c247,s1496).registration9585,226685 -registration(r5079,c99,s1496).registration9586,226717 -registration(r5079,c99,s1496).registration9586,226717 -registration(r5080,c206,s1496).registration9587,226748 -registration(r5080,c206,s1496).registration9587,226748 -registration(r5081,c16,s1497).registration9588,226780 -registration(r5081,c16,s1497).registration9588,226780 -registration(r5082,c207,s1497).registration9589,226811 -registration(r5082,c207,s1497).registration9589,226811 -registration(r5083,c170,s1497).registration9590,226843 -registration(r5083,c170,s1497).registration9590,226843 -registration(r5084,c161,s1498).registration9591,226875 -registration(r5084,c161,s1498).registration9591,226875 -registration(r5085,c179,s1498).registration9592,226907 -registration(r5085,c179,s1498).registration9592,226907 -registration(r5086,c193,s1498).registration9593,226939 -registration(r5086,c193,s1498).registration9593,226939 -registration(r5087,c212,s1499).registration9594,226971 -registration(r5087,c212,s1499).registration9594,226971 -registration(r5088,c238,s1499).registration9595,227003 -registration(r5088,c238,s1499).registration9595,227003 -registration(r5089,c0,s1499).registration9596,227035 -registration(r5089,c0,s1499).registration9596,227035 -registration(r5090,c112,s1499).registration9597,227065 -registration(r5090,c112,s1499).registration9597,227065 -registration(r5091,c14,s1500).registration9598,227097 -registration(r5091,c14,s1500).registration9598,227097 -registration(r5092,c103,s1500).registration9599,227128 -registration(r5092,c103,s1500).registration9599,227128 -registration(r5093,c210,s1500).registration9600,227160 -registration(r5093,c210,s1500).registration9600,227160 -registration(r5094,c192,s1501).registration9601,227192 -registration(r5094,c192,s1501).registration9601,227192 -registration(r5095,c74,s1501).registration9602,227224 -registration(r5095,c74,s1501).registration9602,227224 -registration(r5096,c178,s1501).registration9603,227255 -registration(r5096,c178,s1501).registration9603,227255 -registration(r5097,c171,s1502).registration9604,227287 -registration(r5097,c171,s1502).registration9604,227287 -registration(r5098,c241,s1502).registration9605,227319 -registration(r5098,c241,s1502).registration9605,227319 -registration(r5099,c99,s1502).registration9606,227351 -registration(r5099,c99,s1502).registration9606,227351 -registration(r5100,c117,s1503).registration9607,227382 -registration(r5100,c117,s1503).registration9607,227382 -registration(r5101,c26,s1503).registration9608,227414 -registration(r5101,c26,s1503).registration9608,227414 -registration(r5102,c97,s1503).registration9609,227445 -registration(r5102,c97,s1503).registration9609,227445 -registration(r5103,c228,s1503).registration9610,227476 -registration(r5103,c228,s1503).registration9610,227476 -registration(r5104,c179,s1503).registration9611,227508 -registration(r5104,c179,s1503).registration9611,227508 -registration(r5105,c165,s1504).registration9612,227540 -registration(r5105,c165,s1504).registration9612,227540 -registration(r5106,c225,s1504).registration9613,227572 -registration(r5106,c225,s1504).registration9613,227572 -registration(r5107,c148,s1504).registration9614,227604 -registration(r5107,c148,s1504).registration9614,227604 -registration(r5108,c149,s1505).registration9615,227636 -registration(r5108,c149,s1505).registration9615,227636 -registration(r5109,c144,s1505).registration9616,227668 -registration(r5109,c144,s1505).registration9616,227668 -registration(r5110,c63,s1505).registration9617,227700 -registration(r5110,c63,s1505).registration9617,227700 -registration(r5111,c166,s1506).registration9618,227731 -registration(r5111,c166,s1506).registration9618,227731 -registration(r5112,c199,s1506).registration9619,227763 -registration(r5112,c199,s1506).registration9619,227763 -registration(r5113,c23,s1506).registration9620,227795 -registration(r5113,c23,s1506).registration9620,227795 -registration(r5114,c98,s1507).registration9621,227826 -registration(r5114,c98,s1507).registration9621,227826 -registration(r5115,c163,s1507).registration9622,227857 -registration(r5115,c163,s1507).registration9622,227857 -registration(r5116,c21,s1507).registration9623,227889 -registration(r5116,c21,s1507).registration9623,227889 -registration(r5117,c7,s1508).registration9624,227920 -registration(r5117,c7,s1508).registration9624,227920 -registration(r5118,c93,s1508).registration9625,227950 -registration(r5118,c93,s1508).registration9625,227950 -registration(r5119,c154,s1508).registration9626,227981 -registration(r5119,c154,s1508).registration9626,227981 -registration(r5120,c180,s1509).registration9627,228013 -registration(r5120,c180,s1509).registration9627,228013 -registration(r5121,c32,s1509).registration9628,228045 -registration(r5121,c32,s1509).registration9628,228045 -registration(r5122,c211,s1509).registration9629,228076 -registration(r5122,c211,s1509).registration9629,228076 -registration(r5123,c133,s1509).registration9630,228108 -registration(r5123,c133,s1509).registration9630,228108 -registration(r5124,c62,s1510).registration9631,228140 -registration(r5124,c62,s1510).registration9631,228140 -registration(r5125,c4,s1510).registration9632,228171 -registration(r5125,c4,s1510).registration9632,228171 -registration(r5126,c28,s1510).registration9633,228201 -registration(r5126,c28,s1510).registration9633,228201 -registration(r5127,c177,s1511).registration9634,228232 -registration(r5127,c177,s1511).registration9634,228232 -registration(r5128,c72,s1511).registration9635,228264 -registration(r5128,c72,s1511).registration9635,228264 -registration(r5129,c19,s1511).registration9636,228295 -registration(r5129,c19,s1511).registration9636,228295 -registration(r5130,c186,s1512).registration9637,228326 -registration(r5130,c186,s1512).registration9637,228326 -registration(r5131,c109,s1512).registration9638,228358 -registration(r5131,c109,s1512).registration9638,228358 -registration(r5132,c0,s1512).registration9639,228390 -registration(r5132,c0,s1512).registration9639,228390 -registration(r5133,c99,s1513).registration9640,228420 -registration(r5133,c99,s1513).registration9640,228420 -registration(r5134,c77,s1513).registration9641,228451 -registration(r5134,c77,s1513).registration9641,228451 -registration(r5135,c11,s1513).registration9642,228482 -registration(r5135,c11,s1513).registration9642,228482 -registration(r5136,c19,s1514).registration9643,228513 -registration(r5136,c19,s1514).registration9643,228513 -registration(r5137,c185,s1514).registration9644,228544 -registration(r5137,c185,s1514).registration9644,228544 -registration(r5138,c53,s1514).registration9645,228576 -registration(r5138,c53,s1514).registration9645,228576 -registration(r5139,c233,s1515).registration9646,228607 -registration(r5139,c233,s1515).registration9646,228607 -registration(r5140,c242,s1515).registration9647,228639 -registration(r5140,c242,s1515).registration9647,228639 -registration(r5141,c93,s1515).registration9648,228671 -registration(r5141,c93,s1515).registration9648,228671 -registration(r5142,c227,s1515).registration9649,228702 -registration(r5142,c227,s1515).registration9649,228702 -registration(r5143,c191,s1516).registration9650,228734 -registration(r5143,c191,s1516).registration9650,228734 -registration(r5144,c26,s1516).registration9651,228766 -registration(r5144,c26,s1516).registration9651,228766 -registration(r5145,c0,s1516).registration9652,228797 -registration(r5145,c0,s1516).registration9652,228797 -registration(r5146,c178,s1517).registration9653,228827 -registration(r5146,c178,s1517).registration9653,228827 -registration(r5147,c193,s1517).registration9654,228859 -registration(r5147,c193,s1517).registration9654,228859 -registration(r5148,c2,s1517).registration9655,228891 -registration(r5148,c2,s1517).registration9655,228891 -registration(r5149,c188,s1518).registration9656,228921 -registration(r5149,c188,s1518).registration9656,228921 -registration(r5150,c200,s1518).registration9657,228953 -registration(r5150,c200,s1518).registration9657,228953 -registration(r5151,c168,s1518).registration9658,228985 -registration(r5151,c168,s1518).registration9658,228985 -registration(r5152,c12,s1519).registration9659,229017 -registration(r5152,c12,s1519).registration9659,229017 -registration(r5153,c180,s1519).registration9660,229048 -registration(r5153,c180,s1519).registration9660,229048 -registration(r5154,c202,s1519).registration9661,229080 -registration(r5154,c202,s1519).registration9661,229080 -registration(r5155,c221,s1520).registration9662,229112 -registration(r5155,c221,s1520).registration9662,229112 -registration(r5156,c33,s1520).registration9663,229144 -registration(r5156,c33,s1520).registration9663,229144 -registration(r5157,c132,s1520).registration9664,229175 -registration(r5157,c132,s1520).registration9664,229175 -registration(r5158,c109,s1521).registration9665,229207 -registration(r5158,c109,s1521).registration9665,229207 -registration(r5159,c162,s1521).registration9666,229239 -registration(r5159,c162,s1521).registration9666,229239 -registration(r5160,c11,s1521).registration9667,229271 -registration(r5160,c11,s1521).registration9667,229271 -registration(r5161,c240,s1522).registration9668,229302 -registration(r5161,c240,s1522).registration9668,229302 -registration(r5162,c174,s1522).registration9669,229334 -registration(r5162,c174,s1522).registration9669,229334 -registration(r5163,c211,s1522).registration9670,229366 -registration(r5163,c211,s1522).registration9670,229366 -registration(r5164,c193,s1522).registration9671,229398 -registration(r5164,c193,s1522).registration9671,229398 -registration(r5165,c163,s1523).registration9672,229430 -registration(r5165,c163,s1523).registration9672,229430 -registration(r5166,c232,s1523).registration9673,229462 -registration(r5166,c232,s1523).registration9673,229462 -registration(r5167,c196,s1523).registration9674,229494 -registration(r5167,c196,s1523).registration9674,229494 -registration(r5168,c130,s1524).registration9675,229526 -registration(r5168,c130,s1524).registration9675,229526 -registration(r5169,c198,s1524).registration9676,229558 -registration(r5169,c198,s1524).registration9676,229558 -registration(r5170,c59,s1524).registration9677,229590 -registration(r5170,c59,s1524).registration9677,229590 -registration(r5171,c72,s1525).registration9678,229621 -registration(r5171,c72,s1525).registration9678,229621 -registration(r5172,c157,s1525).registration9679,229652 -registration(r5172,c157,s1525).registration9679,229652 -registration(r5173,c77,s1525).registration9680,229684 -registration(r5173,c77,s1525).registration9680,229684 -registration(r5174,c42,s1526).registration9681,229715 -registration(r5174,c42,s1526).registration9681,229715 -registration(r5175,c211,s1526).registration9682,229746 -registration(r5175,c211,s1526).registration9682,229746 -registration(r5176,c114,s1526).registration9683,229778 -registration(r5176,c114,s1526).registration9683,229778 -registration(r5177,c223,s1527).registration9684,229810 -registration(r5177,c223,s1527).registration9684,229810 -registration(r5178,c124,s1527).registration9685,229842 -registration(r5178,c124,s1527).registration9685,229842 -registration(r5179,c139,s1527).registration9686,229874 -registration(r5179,c139,s1527).registration9686,229874 -registration(r5180,c124,s1528).registration9687,229906 -registration(r5180,c124,s1528).registration9687,229906 -registration(r5181,c127,s1528).registration9688,229938 -registration(r5181,c127,s1528).registration9688,229938 -registration(r5182,c9,s1528).registration9689,229970 -registration(r5182,c9,s1528).registration9689,229970 -registration(r5183,c204,s1529).registration9690,230000 -registration(r5183,c204,s1529).registration9690,230000 -registration(r5184,c17,s1529).registration9691,230032 -registration(r5184,c17,s1529).registration9691,230032 -registration(r5185,c142,s1529).registration9692,230063 -registration(r5185,c142,s1529).registration9692,230063 -registration(r5186,c32,s1529).registration9693,230095 -registration(r5186,c32,s1529).registration9693,230095 -registration(r5187,c20,s1530).registration9694,230126 -registration(r5187,c20,s1530).registration9694,230126 -registration(r5188,c213,s1530).registration9695,230157 -registration(r5188,c213,s1530).registration9695,230157 -registration(r5189,c92,s1530).registration9696,230189 -registration(r5189,c92,s1530).registration9696,230189 -registration(r5190,c164,s1531).registration9697,230220 -registration(r5190,c164,s1531).registration9697,230220 -registration(r5191,c154,s1531).registration9698,230252 -registration(r5191,c154,s1531).registration9698,230252 -registration(r5192,c166,s1531).registration9699,230284 -registration(r5192,c166,s1531).registration9699,230284 -registration(r5193,c208,s1532).registration9700,230316 -registration(r5193,c208,s1532).registration9700,230316 -registration(r5194,c40,s1532).registration9701,230348 -registration(r5194,c40,s1532).registration9701,230348 -registration(r5195,c249,s1532).registration9702,230379 -registration(r5195,c249,s1532).registration9702,230379 -registration(r5196,c217,s1533).registration9703,230411 -registration(r5196,c217,s1533).registration9703,230411 -registration(r5197,c39,s1533).registration9704,230443 -registration(r5197,c39,s1533).registration9704,230443 -registration(r5198,c53,s1533).registration9705,230474 -registration(r5198,c53,s1533).registration9705,230474 -registration(r5199,c176,s1534).registration9706,230505 -registration(r5199,c176,s1534).registration9706,230505 -registration(r5200,c39,s1534).registration9707,230537 -registration(r5200,c39,s1534).registration9707,230537 -registration(r5201,c103,s1534).registration9708,230568 -registration(r5201,c103,s1534).registration9708,230568 -registration(r5202,c206,s1534).registration9709,230600 -registration(r5202,c206,s1534).registration9709,230600 -registration(r5203,c47,s1535).registration9710,230632 -registration(r5203,c47,s1535).registration9710,230632 -registration(r5204,c92,s1535).registration9711,230663 -registration(r5204,c92,s1535).registration9711,230663 -registration(r5205,c198,s1535).registration9712,230694 -registration(r5205,c198,s1535).registration9712,230694 -registration(r5206,c218,s1536).registration9713,230726 -registration(r5206,c218,s1536).registration9713,230726 -registration(r5207,c19,s1536).registration9714,230758 -registration(r5207,c19,s1536).registration9714,230758 -registration(r5208,c215,s1536).registration9715,230789 -registration(r5208,c215,s1536).registration9715,230789 -registration(r5209,c124,s1537).registration9716,230821 -registration(r5209,c124,s1537).registration9716,230821 -registration(r5210,c113,s1537).registration9717,230853 -registration(r5210,c113,s1537).registration9717,230853 -registration(r5211,c18,s1537).registration9718,230885 -registration(r5211,c18,s1537).registration9718,230885 -registration(r5212,c226,s1538).registration9719,230916 -registration(r5212,c226,s1538).registration9719,230916 -registration(r5213,c250,s1538).registration9720,230948 -registration(r5213,c250,s1538).registration9720,230948 -registration(r5214,c242,s1538).registration9721,230980 -registration(r5214,c242,s1538).registration9721,230980 -registration(r5215,c204,s1539).registration9722,231012 -registration(r5215,c204,s1539).registration9722,231012 -registration(r5216,c180,s1539).registration9723,231044 -registration(r5216,c180,s1539).registration9723,231044 -registration(r5217,c216,s1539).registration9724,231076 -registration(r5217,c216,s1539).registration9724,231076 -registration(r5218,c135,s1539).registration9725,231108 -registration(r5218,c135,s1539).registration9725,231108 -registration(r5219,c157,s1540).registration9726,231140 -registration(r5219,c157,s1540).registration9726,231140 -registration(r5220,c121,s1540).registration9727,231172 -registration(r5220,c121,s1540).registration9727,231172 -registration(r5221,c167,s1540).registration9728,231204 -registration(r5221,c167,s1540).registration9728,231204 -registration(r5222,c213,s1541).registration9729,231236 -registration(r5222,c213,s1541).registration9729,231236 -registration(r5223,c197,s1541).registration9730,231268 -registration(r5223,c197,s1541).registration9730,231268 -registration(r5224,c114,s1541).registration9731,231300 -registration(r5224,c114,s1541).registration9731,231300 -registration(r5225,c66,s1541).registration9732,231332 -registration(r5225,c66,s1541).registration9732,231332 -registration(r5226,c40,s1542).registration9733,231363 -registration(r5226,c40,s1542).registration9733,231363 -registration(r5227,c26,s1542).registration9734,231394 -registration(r5227,c26,s1542).registration9734,231394 -registration(r5228,c37,s1542).registration9735,231425 -registration(r5228,c37,s1542).registration9735,231425 -registration(r5229,c150,s1543).registration9736,231456 -registration(r5229,c150,s1543).registration9736,231456 -registration(r5230,c166,s1543).registration9737,231488 -registration(r5230,c166,s1543).registration9737,231488 -registration(r5231,c104,s1543).registration9738,231520 -registration(r5231,c104,s1543).registration9738,231520 -registration(r5232,c100,s1544).registration9739,231552 -registration(r5232,c100,s1544).registration9739,231552 -registration(r5233,c132,s1544).registration9740,231584 -registration(r5233,c132,s1544).registration9740,231584 -registration(r5234,c22,s1544).registration9741,231616 -registration(r5234,c22,s1544).registration9741,231616 -registration(r5235,c80,s1544).registration9742,231647 -registration(r5235,c80,s1544).registration9742,231647 -registration(r5236,c224,s1545).registration9743,231678 -registration(r5236,c224,s1545).registration9743,231678 -registration(r5237,c197,s1545).registration9744,231710 -registration(r5237,c197,s1545).registration9744,231710 -registration(r5238,c221,s1545).registration9745,231742 -registration(r5238,c221,s1545).registration9745,231742 -registration(r5239,c88,s1546).registration9746,231774 -registration(r5239,c88,s1546).registration9746,231774 -registration(r5240,c15,s1546).registration9747,231805 -registration(r5240,c15,s1546).registration9747,231805 -registration(r5241,c206,s1546).registration9748,231836 -registration(r5241,c206,s1546).registration9748,231836 -registration(r5242,c229,s1546).registration9749,231868 -registration(r5242,c229,s1546).registration9749,231868 -registration(r5243,c120,s1547).registration9750,231900 -registration(r5243,c120,s1547).registration9750,231900 -registration(r5244,c249,s1547).registration9751,231932 -registration(r5244,c249,s1547).registration9751,231932 -registration(r5245,c214,s1547).registration9752,231964 -registration(r5245,c214,s1547).registration9752,231964 -registration(r5246,c241,s1547).registration9753,231996 -registration(r5246,c241,s1547).registration9753,231996 -registration(r5247,c234,s1548).registration9754,232028 -registration(r5247,c234,s1548).registration9754,232028 -registration(r5248,c181,s1548).registration9755,232060 -registration(r5248,c181,s1548).registration9755,232060 -registration(r5249,c136,s1548).registration9756,232092 -registration(r5249,c136,s1548).registration9756,232092 -registration(r5250,c242,s1549).registration9757,232124 -registration(r5250,c242,s1549).registration9757,232124 -registration(r5251,c17,s1549).registration9758,232156 -registration(r5251,c17,s1549).registration9758,232156 -registration(r5252,c229,s1549).registration9759,232187 -registration(r5252,c229,s1549).registration9759,232187 -registration(r5253,c253,s1550).registration9760,232219 -registration(r5253,c253,s1550).registration9760,232219 -registration(r5254,c94,s1550).registration9761,232251 -registration(r5254,c94,s1550).registration9761,232251 -registration(r5255,c228,s1550).registration9762,232282 -registration(r5255,c228,s1550).registration9762,232282 -registration(r5256,c170,s1551).registration9763,232314 -registration(r5256,c170,s1551).registration9763,232314 -registration(r5257,c167,s1551).registration9764,232346 -registration(r5257,c167,s1551).registration9764,232346 -registration(r5258,c166,s1551).registration9765,232378 -registration(r5258,c166,s1551).registration9765,232378 -registration(r5259,c0,s1551).registration9766,232410 -registration(r5259,c0,s1551).registration9766,232410 -registration(r5260,c219,s1552).registration9767,232440 -registration(r5260,c219,s1552).registration9767,232440 -registration(r5261,c5,s1552).registration9768,232472 -registration(r5261,c5,s1552).registration9768,232472 -registration(r5262,c155,s1552).registration9769,232502 -registration(r5262,c155,s1552).registration9769,232502 -registration(r5263,c149,s1553).registration9770,232534 -registration(r5263,c149,s1553).registration9770,232534 -registration(r5264,c70,s1553).registration9771,232566 -registration(r5264,c70,s1553).registration9771,232566 -registration(r5265,c67,s1553).registration9772,232597 -registration(r5265,c67,s1553).registration9772,232597 -registration(r5266,c46,s1554).registration9773,232628 -registration(r5266,c46,s1554).registration9773,232628 -registration(r5267,c110,s1554).registration9774,232659 -registration(r5267,c110,s1554).registration9774,232659 -registration(r5268,c195,s1554).registration9775,232691 -registration(r5268,c195,s1554).registration9775,232691 -registration(r5269,c181,s1555).registration9776,232723 -registration(r5269,c181,s1555).registration9776,232723 -registration(r5270,c193,s1555).registration9777,232755 -registration(r5270,c193,s1555).registration9777,232755 -registration(r5271,c174,s1555).registration9778,232787 -registration(r5271,c174,s1555).registration9778,232787 -registration(r5272,c84,s1555).registration9779,232819 -registration(r5272,c84,s1555).registration9779,232819 -registration(r5273,c107,s1556).registration9780,232850 -registration(r5273,c107,s1556).registration9780,232850 -registration(r5274,c58,s1556).registration9781,232882 -registration(r5274,c58,s1556).registration9781,232882 -registration(r5275,c120,s1556).registration9782,232913 -registration(r5275,c120,s1556).registration9782,232913 -registration(r5276,c31,s1557).registration9783,232945 -registration(r5276,c31,s1557).registration9783,232945 -registration(r5277,c83,s1557).registration9784,232976 -registration(r5277,c83,s1557).registration9784,232976 -registration(r5278,c243,s1557).registration9785,233007 -registration(r5278,c243,s1557).registration9785,233007 -registration(r5279,c9,s1557).registration9786,233039 -registration(r5279,c9,s1557).registration9786,233039 -registration(r5280,c36,s1558).registration9787,233069 -registration(r5280,c36,s1558).registration9787,233069 -registration(r5281,c166,s1558).registration9788,233100 -registration(r5281,c166,s1558).registration9788,233100 -registration(r5282,c63,s1558).registration9789,233132 -registration(r5282,c63,s1558).registration9789,233132 -registration(r5283,c134,s1559).registration9790,233163 -registration(r5283,c134,s1559).registration9790,233163 -registration(r5284,c231,s1559).registration9791,233195 -registration(r5284,c231,s1559).registration9791,233195 -registration(r5285,c243,s1559).registration9792,233227 -registration(r5285,c243,s1559).registration9792,233227 -registration(r5286,c95,s1559).registration9793,233259 -registration(r5286,c95,s1559).registration9793,233259 -registration(r5287,c130,s1560).registration9794,233290 -registration(r5287,c130,s1560).registration9794,233290 -registration(r5288,c198,s1560).registration9795,233322 -registration(r5288,c198,s1560).registration9795,233322 -registration(r5289,c43,s1560).registration9796,233354 -registration(r5289,c43,s1560).registration9796,233354 -registration(r5290,c219,s1561).registration9797,233385 -registration(r5290,c219,s1561).registration9797,233385 -registration(r5291,c68,s1561).registration9798,233417 -registration(r5291,c68,s1561).registration9798,233417 -registration(r5292,c220,s1561).registration9799,233448 -registration(r5292,c220,s1561).registration9799,233448 -registration(r5293,c22,s1562).registration9800,233480 -registration(r5293,c22,s1562).registration9800,233480 -registration(r5294,c0,s1562).registration9801,233511 -registration(r5294,c0,s1562).registration9801,233511 -registration(r5295,c92,s1562).registration9802,233541 -registration(r5295,c92,s1562).registration9802,233541 -registration(r5296,c175,s1562).registration9803,233572 -registration(r5296,c175,s1562).registration9803,233572 -registration(r5297,c239,s1563).registration9804,233604 -registration(r5297,c239,s1563).registration9804,233604 -registration(r5298,c62,s1563).registration9805,233636 -registration(r5298,c62,s1563).registration9805,233636 -registration(r5299,c184,s1563).registration9806,233667 -registration(r5299,c184,s1563).registration9806,233667 -registration(r5300,c94,s1564).registration9807,233699 -registration(r5300,c94,s1564).registration9807,233699 -registration(r5301,c253,s1564).registration9808,233730 -registration(r5301,c253,s1564).registration9808,233730 -registration(r5302,c6,s1564).registration9809,233762 -registration(r5302,c6,s1564).registration9809,233762 -registration(r5303,c238,s1565).registration9810,233792 -registration(r5303,c238,s1565).registration9810,233792 -registration(r5304,c141,s1565).registration9811,233824 -registration(r5304,c141,s1565).registration9811,233824 -registration(r5305,c66,s1565).registration9812,233856 -registration(r5305,c66,s1565).registration9812,233856 -registration(r5306,c239,s1565).registration9813,233887 -registration(r5306,c239,s1565).registration9813,233887 -registration(r5307,c202,s1566).registration9814,233919 -registration(r5307,c202,s1566).registration9814,233919 -registration(r5308,c26,s1566).registration9815,233951 -registration(r5308,c26,s1566).registration9815,233951 -registration(r5309,c253,s1566).registration9816,233982 -registration(r5309,c253,s1566).registration9816,233982 -registration(r5310,c65,s1567).registration9817,234014 -registration(r5310,c65,s1567).registration9817,234014 -registration(r5311,c45,s1567).registration9818,234045 -registration(r5311,c45,s1567).registration9818,234045 -registration(r5312,c128,s1567).registration9819,234076 -registration(r5312,c128,s1567).registration9819,234076 -registration(r5313,c127,s1568).registration9820,234108 -registration(r5313,c127,s1568).registration9820,234108 -registration(r5314,c77,s1568).registration9821,234140 -registration(r5314,c77,s1568).registration9821,234140 -registration(r5315,c63,s1568).registration9822,234171 -registration(r5315,c63,s1568).registration9822,234171 -registration(r5316,c47,s1569).registration9823,234202 -registration(r5316,c47,s1569).registration9823,234202 -registration(r5317,c221,s1569).registration9824,234233 -registration(r5317,c221,s1569).registration9824,234233 -registration(r5318,c180,s1569).registration9825,234265 -registration(r5318,c180,s1569).registration9825,234265 -registration(r5319,c19,s1570).registration9826,234297 -registration(r5319,c19,s1570).registration9826,234297 -registration(r5320,c236,s1570).registration9827,234328 -registration(r5320,c236,s1570).registration9827,234328 -registration(r5321,c71,s1570).registration9828,234360 -registration(r5321,c71,s1570).registration9828,234360 -registration(r5322,c53,s1571).registration9829,234391 -registration(r5322,c53,s1571).registration9829,234391 -registration(r5323,c60,s1571).registration9830,234422 -registration(r5323,c60,s1571).registration9830,234422 -registration(r5324,c179,s1571).registration9831,234453 -registration(r5324,c179,s1571).registration9831,234453 -registration(r5325,c120,s1571).registration9832,234485 -registration(r5325,c120,s1571).registration9832,234485 -registration(r5326,c3,s1572).registration9833,234517 -registration(r5326,c3,s1572).registration9833,234517 -registration(r5327,c70,s1572).registration9834,234547 -registration(r5327,c70,s1572).registration9834,234547 -registration(r5328,c118,s1572).registration9835,234578 -registration(r5328,c118,s1572).registration9835,234578 -registration(r5329,c183,s1573).registration9836,234610 -registration(r5329,c183,s1573).registration9836,234610 -registration(r5330,c129,s1573).registration9837,234642 -registration(r5330,c129,s1573).registration9837,234642 -registration(r5331,c188,s1573).registration9838,234674 -registration(r5331,c188,s1573).registration9838,234674 -registration(r5332,c59,s1574).registration9839,234706 -registration(r5332,c59,s1574).registration9839,234706 -registration(r5333,c247,s1574).registration9840,234737 -registration(r5333,c247,s1574).registration9840,234737 -registration(r5334,c6,s1574).registration9841,234769 -registration(r5334,c6,s1574).registration9841,234769 -registration(r5335,c53,s1575).registration9842,234799 -registration(r5335,c53,s1575).registration9842,234799 -registration(r5336,c183,s1575).registration9843,234830 -registration(r5336,c183,s1575).registration9843,234830 -registration(r5337,c168,s1575).registration9844,234862 -registration(r5337,c168,s1575).registration9844,234862 -registration(r5338,c248,s1575).registration9845,234894 -registration(r5338,c248,s1575).registration9845,234894 -registration(r5339,c16,s1576).registration9846,234926 -registration(r5339,c16,s1576).registration9846,234926 -registration(r5340,c64,s1576).registration9847,234957 -registration(r5340,c64,s1576).registration9847,234957 -registration(r5341,c108,s1576).registration9848,234988 -registration(r5341,c108,s1576).registration9848,234988 -registration(r5342,c167,s1577).registration9849,235020 -registration(r5342,c167,s1577).registration9849,235020 -registration(r5343,c50,s1577).registration9850,235052 -registration(r5343,c50,s1577).registration9850,235052 -registration(r5344,c174,s1577).registration9851,235083 -registration(r5344,c174,s1577).registration9851,235083 -registration(r5345,c178,s1578).registration9852,235115 -registration(r5345,c178,s1578).registration9852,235115 -registration(r5346,c24,s1578).registration9853,235147 -registration(r5346,c24,s1578).registration9853,235147 -registration(r5347,c33,s1578).registration9854,235178 -registration(r5347,c33,s1578).registration9854,235178 -registration(r5348,c85,s1578).registration9855,235209 -registration(r5348,c85,s1578).registration9855,235209 -registration(r5349,c137,s1579).registration9856,235240 -registration(r5349,c137,s1579).registration9856,235240 -registration(r5350,c15,s1579).registration9857,235272 -registration(r5350,c15,s1579).registration9857,235272 -registration(r5351,c129,s1579).registration9858,235303 -registration(r5351,c129,s1579).registration9858,235303 -registration(r5352,c121,s1580).registration9859,235335 -registration(r5352,c121,s1580).registration9859,235335 -registration(r5353,c85,s1580).registration9860,235367 -registration(r5353,c85,s1580).registration9860,235367 -registration(r5354,c36,s1580).registration9861,235398 -registration(r5354,c36,s1580).registration9861,235398 -registration(r5355,c220,s1581).registration9862,235429 -registration(r5355,c220,s1581).registration9862,235429 -registration(r5356,c22,s1581).registration9863,235461 -registration(r5356,c22,s1581).registration9863,235461 -registration(r5357,c175,s1581).registration9864,235492 -registration(r5357,c175,s1581).registration9864,235492 -registration(r5358,c192,s1582).registration9865,235524 -registration(r5358,c192,s1582).registration9865,235524 -registration(r5359,c20,s1582).registration9866,235556 -registration(r5359,c20,s1582).registration9866,235556 -registration(r5360,c62,s1582).registration9867,235587 -registration(r5360,c62,s1582).registration9867,235587 -registration(r5361,c229,s1583).registration9868,235618 -registration(r5361,c229,s1583).registration9868,235618 -registration(r5362,c114,s1583).registration9869,235650 -registration(r5362,c114,s1583).registration9869,235650 -registration(r5363,c54,s1583).registration9870,235682 -registration(r5363,c54,s1583).registration9870,235682 -registration(r5364,c233,s1583).registration9871,235713 -registration(r5364,c233,s1583).registration9871,235713 -registration(r5365,c207,s1584).registration9872,235745 -registration(r5365,c207,s1584).registration9872,235745 -registration(r5366,c62,s1584).registration9873,235777 -registration(r5366,c62,s1584).registration9873,235777 -registration(r5367,c240,s1584).registration9874,235808 -registration(r5367,c240,s1584).registration9874,235808 -registration(r5368,c22,s1584).registration9875,235840 -registration(r5368,c22,s1584).registration9875,235840 -registration(r5369,c52,s1585).registration9876,235871 -registration(r5369,c52,s1585).registration9876,235871 -registration(r5370,c152,s1585).registration9877,235902 -registration(r5370,c152,s1585).registration9877,235902 -registration(r5371,c201,s1585).registration9878,235934 -registration(r5371,c201,s1585).registration9878,235934 -registration(r5372,c30,s1585).registration9879,235966 -registration(r5372,c30,s1585).registration9879,235966 -registration(r5373,c164,s1586).registration9880,235997 -registration(r5373,c164,s1586).registration9880,235997 -registration(r5374,c126,s1586).registration9881,236029 -registration(r5374,c126,s1586).registration9881,236029 -registration(r5375,c171,s1586).registration9882,236061 -registration(r5375,c171,s1586).registration9882,236061 -registration(r5376,c91,s1587).registration9883,236093 -registration(r5376,c91,s1587).registration9883,236093 -registration(r5377,c85,s1587).registration9884,236124 -registration(r5377,c85,s1587).registration9884,236124 -registration(r5378,c105,s1587).registration9885,236155 -registration(r5378,c105,s1587).registration9885,236155 -registration(r5379,c107,s1587).registration9886,236187 -registration(r5379,c107,s1587).registration9886,236187 -registration(r5380,c91,s1588).registration9887,236219 -registration(r5380,c91,s1588).registration9887,236219 -registration(r5381,c242,s1588).registration9888,236250 -registration(r5381,c242,s1588).registration9888,236250 -registration(r5382,c139,s1588).registration9889,236282 -registration(r5382,c139,s1588).registration9889,236282 -registration(r5383,c66,s1588).registration9890,236314 -registration(r5383,c66,s1588).registration9890,236314 -registration(r5384,c236,s1589).registration9891,236345 -registration(r5384,c236,s1589).registration9891,236345 -registration(r5385,c18,s1589).registration9892,236377 -registration(r5385,c18,s1589).registration9892,236377 -registration(r5386,c20,s1589).registration9893,236408 -registration(r5386,c20,s1589).registration9893,236408 -registration(r5387,c3,s1589).registration9894,236439 -registration(r5387,c3,s1589).registration9894,236439 -registration(r5388,c66,s1590).registration9895,236469 -registration(r5388,c66,s1590).registration9895,236469 -registration(r5389,c125,s1590).registration9896,236500 -registration(r5389,c125,s1590).registration9896,236500 -registration(r5390,c108,s1590).registration9897,236532 -registration(r5390,c108,s1590).registration9897,236532 -registration(r5391,c235,s1591).registration9898,236564 -registration(r5391,c235,s1591).registration9898,236564 -registration(r5392,c236,s1591).registration9899,236596 -registration(r5392,c236,s1591).registration9899,236596 -registration(r5393,c100,s1591).registration9900,236628 -registration(r5393,c100,s1591).registration9900,236628 -registration(r5394,c16,s1592).registration9901,236660 -registration(r5394,c16,s1592).registration9901,236660 -registration(r5395,c17,s1592).registration9902,236691 -registration(r5395,c17,s1592).registration9902,236691 -registration(r5396,c0,s1592).registration9903,236722 -registration(r5396,c0,s1592).registration9903,236722 -registration(r5397,c104,s1593).registration9904,236752 -registration(r5397,c104,s1593).registration9904,236752 -registration(r5398,c134,s1593).registration9905,236784 -registration(r5398,c134,s1593).registration9905,236784 -registration(r5399,c209,s1593).registration9906,236816 -registration(r5399,c209,s1593).registration9906,236816 -registration(r5400,c226,s1593).registration9907,236848 -registration(r5400,c226,s1593).registration9907,236848 -registration(r5401,c155,s1594).registration9908,236880 -registration(r5401,c155,s1594).registration9908,236880 -registration(r5402,c176,s1594).registration9909,236912 -registration(r5402,c176,s1594).registration9909,236912 -registration(r5403,c237,s1594).registration9910,236944 -registration(r5403,c237,s1594).registration9910,236944 -registration(r5404,c0,s1595).registration9911,236976 -registration(r5404,c0,s1595).registration9911,236976 -registration(r5405,c242,s1595).registration9912,237006 -registration(r5405,c242,s1595).registration9912,237006 -registration(r5406,c199,s1595).registration9913,237038 -registration(r5406,c199,s1595).registration9913,237038 -registration(r5407,c43,s1595).registration9914,237070 -registration(r5407,c43,s1595).registration9914,237070 -registration(r5408,c128,s1595).registration9915,237101 -registration(r5408,c128,s1595).registration9915,237101 -registration(r5409,c150,s1596).registration9916,237133 -registration(r5409,c150,s1596).registration9916,237133 -registration(r5410,c229,s1596).registration9917,237165 -registration(r5410,c229,s1596).registration9917,237165 -registration(r5411,c198,s1596).registration9918,237197 -registration(r5411,c198,s1596).registration9918,237197 -registration(r5412,c43,s1597).registration9919,237229 -registration(r5412,c43,s1597).registration9919,237229 -registration(r5413,c17,s1597).registration9920,237260 -registration(r5413,c17,s1597).registration9920,237260 -registration(r5414,c62,s1597).registration9921,237291 -registration(r5414,c62,s1597).registration9921,237291 -registration(r5415,c63,s1597).registration9922,237322 -registration(r5415,c63,s1597).registration9922,237322 -registration(r5416,c167,s1598).registration9923,237353 -registration(r5416,c167,s1598).registration9923,237353 -registration(r5417,c137,s1598).registration9924,237385 -registration(r5417,c137,s1598).registration9924,237385 -registration(r5418,c165,s1598).registration9925,237417 -registration(r5418,c165,s1598).registration9925,237417 -registration(r5419,c89,s1598).registration9926,237449 -registration(r5419,c89,s1598).registration9926,237449 -registration(r5420,c15,s1599).registration9927,237480 -registration(r5420,c15,s1599).registration9927,237480 -registration(r5421,c31,s1599).registration9928,237511 -registration(r5421,c31,s1599).registration9928,237511 -registration(r5422,c81,s1599).registration9929,237542 -registration(r5422,c81,s1599).registration9929,237542 -registration(r5423,c48,s1599).registration9930,237573 -registration(r5423,c48,s1599).registration9930,237573 -registration(r5424,c91,s1600).registration9931,237604 -registration(r5424,c91,s1600).registration9931,237604 -registration(r5425,c13,s1600).registration9932,237635 -registration(r5425,c13,s1600).registration9932,237635 -registration(r5426,c34,s1600).registration9933,237666 -registration(r5426,c34,s1600).registration9933,237666 -registration(r5427,c17,s1600).registration9934,237697 -registration(r5427,c17,s1600).registration9934,237697 -registration(r5428,c46,s1601).registration9935,237728 -registration(r5428,c46,s1601).registration9935,237728 -registration(r5429,c145,s1601).registration9936,237759 -registration(r5429,c145,s1601).registration9936,237759 -registration(r5430,c227,s1601).registration9937,237791 -registration(r5430,c227,s1601).registration9937,237791 -registration(r5431,c88,s1601).registration9938,237823 -registration(r5431,c88,s1601).registration9938,237823 -registration(r5432,c229,s1602).registration9939,237854 -registration(r5432,c229,s1602).registration9939,237854 -registration(r5433,c131,s1602).registration9940,237886 -registration(r5433,c131,s1602).registration9940,237886 -registration(r5434,c118,s1602).registration9941,237918 -registration(r5434,c118,s1602).registration9941,237918 -registration(r5435,c191,s1602).registration9942,237950 -registration(r5435,c191,s1602).registration9942,237950 -registration(r5436,c95,s1603).registration9943,237982 -registration(r5436,c95,s1603).registration9943,237982 -registration(r5437,c103,s1603).registration9944,238013 -registration(r5437,c103,s1603).registration9944,238013 -registration(r5438,c36,s1603).registration9945,238045 -registration(r5438,c36,s1603).registration9945,238045 -registration(r5439,c149,s1603).registration9946,238076 -registration(r5439,c149,s1603).registration9946,238076 -registration(r5440,c186,s1604).registration9947,238108 -registration(r5440,c186,s1604).registration9947,238108 -registration(r5441,c162,s1604).registration9948,238140 -registration(r5441,c162,s1604).registration9948,238140 -registration(r5442,c157,s1604).registration9949,238172 -registration(r5442,c157,s1604).registration9949,238172 -registration(r5443,c97,s1604).registration9950,238204 -registration(r5443,c97,s1604).registration9950,238204 -registration(r5444,c57,s1605).registration9951,238235 -registration(r5444,c57,s1605).registration9951,238235 -registration(r5445,c190,s1605).registration9952,238266 -registration(r5445,c190,s1605).registration9952,238266 -registration(r5446,c183,s1605).registration9953,238298 -registration(r5446,c183,s1605).registration9953,238298 -registration(r5447,c201,s1606).registration9954,238330 -registration(r5447,c201,s1606).registration9954,238330 -registration(r5448,c167,s1606).registration9955,238362 -registration(r5448,c167,s1606).registration9955,238362 -registration(r5449,c16,s1606).registration9956,238394 -registration(r5449,c16,s1606).registration9956,238394 -registration(r5450,c36,s1607).registration9957,238425 -registration(r5450,c36,s1607).registration9957,238425 -registration(r5451,c179,s1607).registration9958,238456 -registration(r5451,c179,s1607).registration9958,238456 -registration(r5452,c241,s1607).registration9959,238488 -registration(r5452,c241,s1607).registration9959,238488 -registration(r5453,c55,s1607).registration9960,238520 -registration(r5453,c55,s1607).registration9960,238520 -registration(r5454,c44,s1608).registration9961,238551 -registration(r5454,c44,s1608).registration9961,238551 -registration(r5455,c246,s1608).registration9962,238582 -registration(r5455,c246,s1608).registration9962,238582 -registration(r5456,c3,s1608).registration9963,238614 -registration(r5456,c3,s1608).registration9963,238614 -registration(r5457,c40,s1609).registration9964,238644 -registration(r5457,c40,s1609).registration9964,238644 -registration(r5458,c145,s1609).registration9965,238675 -registration(r5458,c145,s1609).registration9965,238675 -registration(r5459,c242,s1609).registration9966,238707 -registration(r5459,c242,s1609).registration9966,238707 -registration(r5460,c149,s1610).registration9967,238739 -registration(r5460,c149,s1610).registration9967,238739 -registration(r5461,c69,s1610).registration9968,238771 -registration(r5461,c69,s1610).registration9968,238771 -registration(r5462,c86,s1610).registration9969,238802 -registration(r5462,c86,s1610).registration9969,238802 -registration(r5463,c143,s1611).registration9970,238833 -registration(r5463,c143,s1611).registration9970,238833 -registration(r5464,c183,s1611).registration9971,238865 -registration(r5464,c183,s1611).registration9971,238865 -registration(r5465,c169,s1611).registration9972,238897 -registration(r5465,c169,s1611).registration9972,238897 -registration(r5466,c114,s1612).registration9973,238929 -registration(r5466,c114,s1612).registration9973,238929 -registration(r5467,c148,s1612).registration9974,238961 -registration(r5467,c148,s1612).registration9974,238961 -registration(r5468,c171,s1612).registration9975,238993 -registration(r5468,c171,s1612).registration9975,238993 -registration(r5469,c207,s1612).registration9976,239025 -registration(r5469,c207,s1612).registration9976,239025 -registration(r5470,c128,s1613).registration9977,239057 -registration(r5470,c128,s1613).registration9977,239057 -registration(r5471,c16,s1613).registration9978,239089 -registration(r5471,c16,s1613).registration9978,239089 -registration(r5472,c218,s1613).registration9979,239120 -registration(r5472,c218,s1613).registration9979,239120 -registration(r5473,c6,s1614).registration9980,239152 -registration(r5473,c6,s1614).registration9980,239152 -registration(r5474,c174,s1614).registration9981,239182 -registration(r5474,c174,s1614).registration9981,239182 -registration(r5475,c125,s1614).registration9982,239214 -registration(r5475,c125,s1614).registration9982,239214 -registration(r5476,c165,s1614).registration9983,239246 -registration(r5476,c165,s1614).registration9983,239246 -registration(r5477,c36,s1615).registration9984,239278 -registration(r5477,c36,s1615).registration9984,239278 -registration(r5478,c253,s1615).registration9985,239309 -registration(r5478,c253,s1615).registration9985,239309 -registration(r5479,c77,s1615).registration9986,239341 -registration(r5479,c77,s1615).registration9986,239341 -registration(r5480,c146,s1616).registration9987,239372 -registration(r5480,c146,s1616).registration9987,239372 -registration(r5481,c198,s1616).registration9988,239404 -registration(r5481,c198,s1616).registration9988,239404 -registration(r5482,c138,s1616).registration9989,239436 -registration(r5482,c138,s1616).registration9989,239436 -registration(r5483,c66,s1617).registration9990,239468 -registration(r5483,c66,s1617).registration9990,239468 -registration(r5484,c45,s1617).registration9991,239499 -registration(r5484,c45,s1617).registration9991,239499 -registration(r5485,c65,s1617).registration9992,239530 -registration(r5485,c65,s1617).registration9992,239530 -registration(r5486,c212,s1618).registration9993,239561 -registration(r5486,c212,s1618).registration9993,239561 -registration(r5487,c134,s1618).registration9994,239593 -registration(r5487,c134,s1618).registration9994,239593 -registration(r5488,c108,s1618).registration9995,239625 -registration(r5488,c108,s1618).registration9995,239625 -registration(r5489,c238,s1619).registration9996,239657 -registration(r5489,c238,s1619).registration9996,239657 -registration(r5490,c4,s1619).registration9997,239689 -registration(r5490,c4,s1619).registration9997,239689 -registration(r5491,c48,s1619).registration9998,239719 -registration(r5491,c48,s1619).registration9998,239719 -registration(r5492,c54,s1620).registration9999,239750 -registration(r5492,c54,s1620).registration9999,239750 -registration(r5493,c83,s1620).registration10000,239781 -registration(r5493,c83,s1620).registration10000,239781 -registration(r5494,c252,s1620).registration10001,239812 -registration(r5494,c252,s1620).registration10001,239812 -registration(r5495,c161,s1621).registration10002,239844 -registration(r5495,c161,s1621).registration10002,239844 -registration(r5496,c238,s1621).registration10003,239876 -registration(r5496,c238,s1621).registration10003,239876 -registration(r5497,c91,s1621).registration10004,239908 -registration(r5497,c91,s1621).registration10004,239908 -registration(r5498,c239,s1622).registration10005,239939 -registration(r5498,c239,s1622).registration10005,239939 -registration(r5499,c128,s1622).registration10006,239971 -registration(r5499,c128,s1622).registration10006,239971 -registration(r5500,c36,s1622).registration10007,240003 -registration(r5500,c36,s1622).registration10007,240003 -registration(r5501,c121,s1622).registration10008,240034 -registration(r5501,c121,s1622).registration10008,240034 -registration(r5502,c189,s1623).registration10009,240066 -registration(r5502,c189,s1623).registration10009,240066 -registration(r5503,c50,s1623).registration10010,240098 -registration(r5503,c50,s1623).registration10010,240098 -registration(r5504,c186,s1623).registration10011,240129 -registration(r5504,c186,s1623).registration10011,240129 -registration(r5505,c143,s1624).registration10012,240161 -registration(r5505,c143,s1624).registration10012,240161 -registration(r5506,c32,s1624).registration10013,240193 -registration(r5506,c32,s1624).registration10013,240193 -registration(r5507,c64,s1624).registration10014,240224 -registration(r5507,c64,s1624).registration10014,240224 -registration(r5508,c46,s1625).registration10015,240255 -registration(r5508,c46,s1625).registration10015,240255 -registration(r5509,c137,s1625).registration10016,240286 -registration(r5509,c137,s1625).registration10016,240286 -registration(r5510,c166,s1625).registration10017,240318 -registration(r5510,c166,s1625).registration10017,240318 -registration(r5511,c220,s1625).registration10018,240350 -registration(r5511,c220,s1625).registration10018,240350 -registration(r5512,c38,s1626).registration10019,240382 -registration(r5512,c38,s1626).registration10019,240382 -registration(r5513,c3,s1626).registration10020,240413 -registration(r5513,c3,s1626).registration10020,240413 -registration(r5514,c166,s1626).registration10021,240443 -registration(r5514,c166,s1626).registration10021,240443 -registration(r5515,c147,s1627).registration10022,240475 -registration(r5515,c147,s1627).registration10022,240475 -registration(r5516,c225,s1627).registration10023,240507 -registration(r5516,c225,s1627).registration10023,240507 -registration(r5517,c145,s1627).registration10024,240539 -registration(r5517,c145,s1627).registration10024,240539 -registration(r5518,c20,s1628).registration10025,240571 -registration(r5518,c20,s1628).registration10025,240571 -registration(r5519,c23,s1628).registration10026,240602 -registration(r5519,c23,s1628).registration10026,240602 -registration(r5520,c77,s1628).registration10027,240633 -registration(r5520,c77,s1628).registration10027,240633 -registration(r5521,c146,s1628).registration10028,240664 -registration(r5521,c146,s1628).registration10028,240664 -registration(r5522,c76,s1628).registration10029,240696 -registration(r5522,c76,s1628).registration10029,240696 -registration(r5523,c75,s1629).registration10030,240727 -registration(r5523,c75,s1629).registration10030,240727 -registration(r5524,c164,s1629).registration10031,240758 -registration(r5524,c164,s1629).registration10031,240758 -registration(r5525,c30,s1629).registration10032,240790 -registration(r5525,c30,s1629).registration10032,240790 -registration(r5526,c95,s1630).registration10033,240821 -registration(r5526,c95,s1630).registration10033,240821 -registration(r5527,c94,s1630).registration10034,240852 -registration(r5527,c94,s1630).registration10034,240852 -registration(r5528,c57,s1630).registration10035,240883 -registration(r5528,c57,s1630).registration10035,240883 -registration(r5529,c224,s1631).registration10036,240914 -registration(r5529,c224,s1631).registration10036,240914 -registration(r5530,c97,s1631).registration10037,240946 -registration(r5530,c97,s1631).registration10037,240946 -registration(r5531,c239,s1631).registration10038,240977 -registration(r5531,c239,s1631).registration10038,240977 -registration(r5532,c242,s1632).registration10039,241009 -registration(r5532,c242,s1632).registration10039,241009 -registration(r5533,c97,s1632).registration10040,241041 -registration(r5533,c97,s1632).registration10040,241041 -registration(r5534,c13,s1632).registration10041,241072 -registration(r5534,c13,s1632).registration10041,241072 -registration(r5535,c239,s1633).registration10042,241103 -registration(r5535,c239,s1633).registration10042,241103 -registration(r5536,c42,s1633).registration10043,241135 -registration(r5536,c42,s1633).registration10043,241135 -registration(r5537,c231,s1633).registration10044,241166 -registration(r5537,c231,s1633).registration10044,241166 -registration(r5538,c255,s1634).registration10045,241198 -registration(r5538,c255,s1634).registration10045,241198 -registration(r5539,c13,s1634).registration10046,241230 -registration(r5539,c13,s1634).registration10046,241230 -registration(r5540,c88,s1634).registration10047,241261 -registration(r5540,c88,s1634).registration10047,241261 -registration(r5541,c164,s1634).registration10048,241292 -registration(r5541,c164,s1634).registration10048,241292 -registration(r5542,c219,s1635).registration10049,241324 -registration(r5542,c219,s1635).registration10049,241324 -registration(r5543,c186,s1635).registration10050,241356 -registration(r5543,c186,s1635).registration10050,241356 -registration(r5544,c194,s1635).registration10051,241388 -registration(r5544,c194,s1635).registration10051,241388 -registration(r5545,c34,s1636).registration10052,241420 -registration(r5545,c34,s1636).registration10052,241420 -registration(r5546,c21,s1636).registration10053,241451 -registration(r5546,c21,s1636).registration10053,241451 -registration(r5547,c185,s1636).registration10054,241482 -registration(r5547,c185,s1636).registration10054,241482 -registration(r5548,c153,s1637).registration10055,241514 -registration(r5548,c153,s1637).registration10055,241514 -registration(r5549,c17,s1637).registration10056,241546 -registration(r5549,c17,s1637).registration10056,241546 -registration(r5550,c236,s1637).registration10057,241577 -registration(r5550,c236,s1637).registration10057,241577 -registration(r5551,c223,s1638).registration10058,241609 -registration(r5551,c223,s1638).registration10058,241609 -registration(r5552,c182,s1638).registration10059,241641 -registration(r5552,c182,s1638).registration10059,241641 -registration(r5553,c167,s1638).registration10060,241673 -registration(r5553,c167,s1638).registration10060,241673 -registration(r5554,c152,s1639).registration10061,241705 -registration(r5554,c152,s1639).registration10061,241705 -registration(r5555,c162,s1639).registration10062,241737 -registration(r5555,c162,s1639).registration10062,241737 -registration(r5556,c148,s1639).registration10063,241769 -registration(r5556,c148,s1639).registration10063,241769 -registration(r5557,c149,s1640).registration10064,241801 -registration(r5557,c149,s1640).registration10064,241801 -registration(r5558,c101,s1640).registration10065,241833 -registration(r5558,c101,s1640).registration10065,241833 -registration(r5559,c55,s1640).registration10066,241865 -registration(r5559,c55,s1640).registration10066,241865 -registration(r5560,c125,s1640).registration10067,241896 -registration(r5560,c125,s1640).registration10067,241896 -registration(r5561,c0,s1641).registration10068,241928 -registration(r5561,c0,s1641).registration10068,241928 -registration(r5562,c56,s1641).registration10069,241958 -registration(r5562,c56,s1641).registration10069,241958 -registration(r5563,c159,s1641).registration10070,241989 -registration(r5563,c159,s1641).registration10070,241989 -registration(r5564,c193,s1642).registration10071,242021 -registration(r5564,c193,s1642).registration10071,242021 -registration(r5565,c204,s1642).registration10072,242053 -registration(r5565,c204,s1642).registration10072,242053 -registration(r5566,c111,s1642).registration10073,242085 -registration(r5566,c111,s1642).registration10073,242085 -registration(r5567,c9,s1643).registration10074,242117 -registration(r5567,c9,s1643).registration10074,242117 -registration(r5568,c131,s1643).registration10075,242147 -registration(r5568,c131,s1643).registration10075,242147 -registration(r5569,c183,s1643).registration10076,242179 -registration(r5569,c183,s1643).registration10076,242179 -registration(r5570,c150,s1643).registration10077,242211 -registration(r5570,c150,s1643).registration10077,242211 -registration(r5571,c22,s1644).registration10078,242243 -registration(r5571,c22,s1644).registration10078,242243 -registration(r5572,c198,s1644).registration10079,242274 -registration(r5572,c198,s1644).registration10079,242274 -registration(r5573,c13,s1644).registration10080,242306 -registration(r5573,c13,s1644).registration10080,242306 -registration(r5574,c175,s1645).registration10081,242337 -registration(r5574,c175,s1645).registration10081,242337 -registration(r5575,c90,s1645).registration10082,242369 -registration(r5575,c90,s1645).registration10082,242369 -registration(r5576,c183,s1645).registration10083,242400 -registration(r5576,c183,s1645).registration10083,242400 -registration(r5577,c29,s1646).registration10084,242432 -registration(r5577,c29,s1646).registration10084,242432 -registration(r5578,c199,s1646).registration10085,242463 -registration(r5578,c199,s1646).registration10085,242463 -registration(r5579,c20,s1646).registration10086,242495 -registration(r5579,c20,s1646).registration10086,242495 -registration(r5580,c20,s1647).registration10087,242526 -registration(r5580,c20,s1647).registration10087,242526 -registration(r5581,c210,s1647).registration10088,242557 -registration(r5581,c210,s1647).registration10088,242557 -registration(r5582,c67,s1647).registration10089,242589 -registration(r5582,c67,s1647).registration10089,242589 -registration(r5583,c4,s1648).registration10090,242620 -registration(r5583,c4,s1648).registration10090,242620 -registration(r5584,c152,s1648).registration10091,242650 -registration(r5584,c152,s1648).registration10091,242650 -registration(r5585,c249,s1648).registration10092,242682 -registration(r5585,c249,s1648).registration10092,242682 -registration(r5586,c2,s1649).registration10093,242714 -registration(r5586,c2,s1649).registration10093,242714 -registration(r5587,c249,s1649).registration10094,242744 -registration(r5587,c249,s1649).registration10094,242744 -registration(r5588,c25,s1649).registration10095,242776 -registration(r5588,c25,s1649).registration10095,242776 -registration(r5589,c174,s1649).registration10096,242807 -registration(r5589,c174,s1649).registration10096,242807 -registration(r5590,c121,s1650).registration10097,242839 -registration(r5590,c121,s1650).registration10097,242839 -registration(r5591,c221,s1650).registration10098,242871 -registration(r5591,c221,s1650).registration10098,242871 -registration(r5592,c187,s1650).registration10099,242903 -registration(r5592,c187,s1650).registration10099,242903 -registration(r5593,c107,s1651).registration10100,242935 -registration(r5593,c107,s1651).registration10100,242935 -registration(r5594,c152,s1651).registration10101,242967 -registration(r5594,c152,s1651).registration10101,242967 -registration(r5595,c242,s1651).registration10102,242999 -registration(r5595,c242,s1651).registration10102,242999 -registration(r5596,c15,s1652).registration10103,243031 -registration(r5596,c15,s1652).registration10103,243031 -registration(r5597,c194,s1652).registration10104,243062 -registration(r5597,c194,s1652).registration10104,243062 -registration(r5598,c156,s1652).registration10105,243094 -registration(r5598,c156,s1652).registration10105,243094 -registration(r5599,c177,s1653).registration10106,243126 -registration(r5599,c177,s1653).registration10106,243126 -registration(r5600,c123,s1653).registration10107,243158 -registration(r5600,c123,s1653).registration10107,243158 -registration(r5601,c169,s1653).registration10108,243190 -registration(r5601,c169,s1653).registration10108,243190 -registration(r5602,c174,s1653).registration10109,243222 -registration(r5602,c174,s1653).registration10109,243222 -registration(r5603,c21,s1654).registration10110,243254 -registration(r5603,c21,s1654).registration10110,243254 -registration(r5604,c254,s1654).registration10111,243285 -registration(r5604,c254,s1654).registration10111,243285 -registration(r5605,c37,s1654).registration10112,243317 -registration(r5605,c37,s1654).registration10112,243317 -registration(r5606,c30,s1654).registration10113,243348 -registration(r5606,c30,s1654).registration10113,243348 -registration(r5607,c143,s1655).registration10114,243379 -registration(r5607,c143,s1655).registration10114,243379 -registration(r5608,c99,s1655).registration10115,243411 -registration(r5608,c99,s1655).registration10115,243411 -registration(r5609,c52,s1655).registration10116,243442 -registration(r5609,c52,s1655).registration10116,243442 -registration(r5610,c17,s1656).registration10117,243473 -registration(r5610,c17,s1656).registration10117,243473 -registration(r5611,c251,s1656).registration10118,243504 -registration(r5611,c251,s1656).registration10118,243504 -registration(r5612,c27,s1656).registration10119,243536 -registration(r5612,c27,s1656).registration10119,243536 -registration(r5613,c178,s1657).registration10120,243567 -registration(r5613,c178,s1657).registration10120,243567 -registration(r5614,c62,s1657).registration10121,243599 -registration(r5614,c62,s1657).registration10121,243599 -registration(r5615,c97,s1657).registration10122,243630 -registration(r5615,c97,s1657).registration10122,243630 -registration(r5616,c35,s1658).registration10123,243661 -registration(r5616,c35,s1658).registration10123,243661 -registration(r5617,c215,s1658).registration10124,243692 -registration(r5617,c215,s1658).registration10124,243692 -registration(r5618,c247,s1658).registration10125,243724 -registration(r5618,c247,s1658).registration10125,243724 -registration(r5619,c115,s1659).registration10126,243756 -registration(r5619,c115,s1659).registration10126,243756 -registration(r5620,c51,s1659).registration10127,243788 -registration(r5620,c51,s1659).registration10127,243788 -registration(r5621,c5,s1659).registration10128,243819 -registration(r5621,c5,s1659).registration10128,243819 -registration(r5622,c26,s1660).registration10129,243849 -registration(r5622,c26,s1660).registration10129,243849 -registration(r5623,c120,s1660).registration10130,243880 -registration(r5623,c120,s1660).registration10130,243880 -registration(r5624,c6,s1660).registration10131,243912 -registration(r5624,c6,s1660).registration10131,243912 -registration(r5625,c36,s1661).registration10132,243942 -registration(r5625,c36,s1661).registration10132,243942 -registration(r5626,c33,s1661).registration10133,243973 -registration(r5626,c33,s1661).registration10133,243973 -registration(r5627,c221,s1661).registration10134,244004 -registration(r5627,c221,s1661).registration10134,244004 -registration(r5628,c185,s1662).registration10135,244036 -registration(r5628,c185,s1662).registration10135,244036 -registration(r5629,c106,s1662).registration10136,244068 -registration(r5629,c106,s1662).registration10136,244068 -registration(r5630,c90,s1662).registration10137,244100 -registration(r5630,c90,s1662).registration10137,244100 -registration(r5631,c194,s1663).registration10138,244131 -registration(r5631,c194,s1663).registration10138,244131 -registration(r5632,c134,s1663).registration10139,244163 -registration(r5632,c134,s1663).registration10139,244163 -registration(r5633,c245,s1663).registration10140,244195 -registration(r5633,c245,s1663).registration10140,244195 -registration(r5634,c192,s1663).registration10141,244227 -registration(r5634,c192,s1663).registration10141,244227 -registration(r5635,c71,s1664).registration10142,244259 -registration(r5635,c71,s1664).registration10142,244259 -registration(r5636,c153,s1664).registration10143,244290 -registration(r5636,c153,s1664).registration10143,244290 -registration(r5637,c58,s1664).registration10144,244322 -registration(r5637,c58,s1664).registration10144,244322 -registration(r5638,c175,s1664).registration10145,244353 -registration(r5638,c175,s1664).registration10145,244353 -registration(r5639,c6,s1665).registration10146,244385 -registration(r5639,c6,s1665).registration10146,244385 -registration(r5640,c39,s1665).registration10147,244415 -registration(r5640,c39,s1665).registration10147,244415 -registration(r5641,c41,s1665).registration10148,244446 -registration(r5641,c41,s1665).registration10148,244446 -registration(r5642,c158,s1666).registration10149,244477 -registration(r5642,c158,s1666).registration10149,244477 -registration(r5643,c238,s1666).registration10150,244509 -registration(r5643,c238,s1666).registration10150,244509 -registration(r5644,c210,s1666).registration10151,244541 -registration(r5644,c210,s1666).registration10151,244541 -registration(r5645,c18,s1666).registration10152,244573 -registration(r5645,c18,s1666).registration10152,244573 -registration(r5646,c245,s1667).registration10153,244604 -registration(r5646,c245,s1667).registration10153,244604 -registration(r5647,c107,s1667).registration10154,244636 -registration(r5647,c107,s1667).registration10154,244636 -registration(r5648,c83,s1667).registration10155,244668 -registration(r5648,c83,s1667).registration10155,244668 -registration(r5649,c175,s1668).registration10156,244699 -registration(r5649,c175,s1668).registration10156,244699 -registration(r5650,c130,s1668).registration10157,244731 -registration(r5650,c130,s1668).registration10157,244731 -registration(r5651,c141,s1668).registration10158,244763 -registration(r5651,c141,s1668).registration10158,244763 -registration(r5652,c131,s1668).registration10159,244795 -registration(r5652,c131,s1668).registration10159,244795 -registration(r5653,c149,s1669).registration10160,244827 -registration(r5653,c149,s1669).registration10160,244827 -registration(r5654,c204,s1669).registration10161,244859 -registration(r5654,c204,s1669).registration10161,244859 -registration(r5655,c198,s1669).registration10162,244891 -registration(r5655,c198,s1669).registration10162,244891 -registration(r5656,c2,s1670).registration10163,244923 -registration(r5656,c2,s1670).registration10163,244923 -registration(r5657,c175,s1670).registration10164,244953 -registration(r5657,c175,s1670).registration10164,244953 -registration(r5658,c134,s1670).registration10165,244985 -registration(r5658,c134,s1670).registration10165,244985 -registration(r5659,c173,s1671).registration10166,245017 -registration(r5659,c173,s1671).registration10166,245017 -registration(r5660,c216,s1671).registration10167,245049 -registration(r5660,c216,s1671).registration10167,245049 -registration(r5661,c155,s1671).registration10168,245081 -registration(r5661,c155,s1671).registration10168,245081 -registration(r5662,c139,s1672).registration10169,245113 -registration(r5662,c139,s1672).registration10169,245113 -registration(r5663,c193,s1672).registration10170,245145 -registration(r5663,c193,s1672).registration10170,245145 -registration(r5664,c143,s1672).registration10171,245177 -registration(r5664,c143,s1672).registration10171,245177 -registration(r5665,c132,s1673).registration10172,245209 -registration(r5665,c132,s1673).registration10172,245209 -registration(r5666,c11,s1673).registration10173,245241 -registration(r5666,c11,s1673).registration10173,245241 -registration(r5667,c10,s1673).registration10174,245272 -registration(r5667,c10,s1673).registration10174,245272 -registration(r5668,c226,s1673).registration10175,245303 -registration(r5668,c226,s1673).registration10175,245303 -registration(r5669,c182,s1674).registration10176,245335 -registration(r5669,c182,s1674).registration10176,245335 -registration(r5670,c111,s1674).registration10177,245367 -registration(r5670,c111,s1674).registration10177,245367 -registration(r5671,c43,s1674).registration10178,245399 -registration(r5671,c43,s1674).registration10178,245399 -registration(r5672,c193,s1675).registration10179,245430 -registration(r5672,c193,s1675).registration10179,245430 -registration(r5673,c140,s1675).registration10180,245462 -registration(r5673,c140,s1675).registration10180,245462 -registration(r5674,c186,s1675).registration10181,245494 -registration(r5674,c186,s1675).registration10181,245494 -registration(r5675,c189,s1676).registration10182,245526 -registration(r5675,c189,s1676).registration10182,245526 -registration(r5676,c76,s1676).registration10183,245558 -registration(r5676,c76,s1676).registration10183,245558 -registration(r5677,c120,s1676).registration10184,245589 -registration(r5677,c120,s1676).registration10184,245589 -registration(r5678,c37,s1676).registration10185,245621 -registration(r5678,c37,s1676).registration10185,245621 -registration(r5679,c70,s1677).registration10186,245652 -registration(r5679,c70,s1677).registration10186,245652 -registration(r5680,c159,s1677).registration10187,245683 -registration(r5680,c159,s1677).registration10187,245683 -registration(r5681,c20,s1677).registration10188,245715 -registration(r5681,c20,s1677).registration10188,245715 -registration(r5682,c214,s1677).registration10189,245746 -registration(r5682,c214,s1677).registration10189,245746 -registration(r5683,c76,s1678).registration10190,245778 -registration(r5683,c76,s1678).registration10190,245778 -registration(r5684,c202,s1678).registration10191,245809 -registration(r5684,c202,s1678).registration10191,245809 -registration(r5685,c139,s1678).registration10192,245841 -registration(r5685,c139,s1678).registration10192,245841 -registration(r5686,c149,s1679).registration10193,245873 -registration(r5686,c149,s1679).registration10193,245873 -registration(r5687,c3,s1679).registration10194,245905 -registration(r5687,c3,s1679).registration10194,245905 -registration(r5688,c183,s1679).registration10195,245935 -registration(r5688,c183,s1679).registration10195,245935 -registration(r5689,c39,s1680).registration10196,245967 -registration(r5689,c39,s1680).registration10196,245967 -registration(r5690,c124,s1680).registration10197,245998 -registration(r5690,c124,s1680).registration10197,245998 -registration(r5691,c122,s1680).registration10198,246030 -registration(r5691,c122,s1680).registration10198,246030 -registration(r5692,c61,s1680).registration10199,246062 -registration(r5692,c61,s1680).registration10199,246062 -registration(r5693,c215,s1680).registration10200,246093 -registration(r5693,c215,s1680).registration10200,246093 -registration(r5694,c218,s1681).registration10201,246125 -registration(r5694,c218,s1681).registration10201,246125 -registration(r5695,c249,s1681).registration10202,246157 -registration(r5695,c249,s1681).registration10202,246157 -registration(r5696,c146,s1681).registration10203,246189 -registration(r5696,c146,s1681).registration10203,246189 -registration(r5697,c112,s1681).registration10204,246221 -registration(r5697,c112,s1681).registration10204,246221 -registration(r5698,c40,s1681).registration10205,246253 -registration(r5698,c40,s1681).registration10205,246253 -registration(r5699,c151,s1682).registration10206,246284 -registration(r5699,c151,s1682).registration10206,246284 -registration(r5700,c72,s1682).registration10207,246316 -registration(r5700,c72,s1682).registration10207,246316 -registration(r5701,c200,s1682).registration10208,246347 -registration(r5701,c200,s1682).registration10208,246347 -registration(r5702,c243,s1682).registration10209,246379 -registration(r5702,c243,s1682).registration10209,246379 -registration(r5703,c129,s1683).registration10210,246411 -registration(r5703,c129,s1683).registration10210,246411 -registration(r5704,c82,s1683).registration10211,246443 -registration(r5704,c82,s1683).registration10211,246443 -registration(r5705,c189,s1683).registration10212,246474 -registration(r5705,c189,s1683).registration10212,246474 -registration(r5706,c34,s1683).registration10213,246506 -registration(r5706,c34,s1683).registration10213,246506 -registration(r5707,c162,s1684).registration10214,246537 -registration(r5707,c162,s1684).registration10214,246537 -registration(r5708,c38,s1684).registration10215,246569 -registration(r5708,c38,s1684).registration10215,246569 -registration(r5709,c73,s1684).registration10216,246600 -registration(r5709,c73,s1684).registration10216,246600 -registration(r5710,c112,s1685).registration10217,246631 -registration(r5710,c112,s1685).registration10217,246631 -registration(r5711,c109,s1685).registration10218,246663 -registration(r5711,c109,s1685).registration10218,246663 -registration(r5712,c91,s1685).registration10219,246695 -registration(r5712,c91,s1685).registration10219,246695 -registration(r5713,c99,s1686).registration10220,246726 -registration(r5713,c99,s1686).registration10220,246726 -registration(r5714,c98,s1686).registration10221,246757 -registration(r5714,c98,s1686).registration10221,246757 -registration(r5715,c134,s1686).registration10222,246788 -registration(r5715,c134,s1686).registration10222,246788 -registration(r5716,c173,s1687).registration10223,246820 -registration(r5716,c173,s1687).registration10223,246820 -registration(r5717,c206,s1687).registration10224,246852 -registration(r5717,c206,s1687).registration10224,246852 -registration(r5718,c248,s1687).registration10225,246884 -registration(r5718,c248,s1687).registration10225,246884 -registration(r5719,c65,s1688).registration10226,246916 -registration(r5719,c65,s1688).registration10226,246916 -registration(r5720,c158,s1688).registration10227,246947 -registration(r5720,c158,s1688).registration10227,246947 -registration(r5721,c17,s1688).registration10228,246979 -registration(r5721,c17,s1688).registration10228,246979 -registration(r5722,c147,s1689).registration10229,247010 -registration(r5722,c147,s1689).registration10229,247010 -registration(r5723,c154,s1689).registration10230,247042 -registration(r5723,c154,s1689).registration10230,247042 -registration(r5724,c77,s1689).registration10231,247074 -registration(r5724,c77,s1689).registration10231,247074 -registration(r5725,c224,s1690).registration10232,247105 -registration(r5725,c224,s1690).registration10232,247105 -registration(r5726,c67,s1690).registration10233,247137 -registration(r5726,c67,s1690).registration10233,247137 -registration(r5727,c228,s1690).registration10234,247168 -registration(r5727,c228,s1690).registration10234,247168 -registration(r5728,c53,s1690).registration10235,247200 -registration(r5728,c53,s1690).registration10235,247200 -registration(r5729,c154,s1691).registration10236,247231 -registration(r5729,c154,s1691).registration10236,247231 -registration(r5730,c164,s1691).registration10237,247263 -registration(r5730,c164,s1691).registration10237,247263 -registration(r5731,c33,s1691).registration10238,247295 -registration(r5731,c33,s1691).registration10238,247295 -registration(r5732,c78,s1691).registration10239,247326 -registration(r5732,c78,s1691).registration10239,247326 -registration(r5733,c137,s1692).registration10240,247357 -registration(r5733,c137,s1692).registration10240,247357 -registration(r5734,c212,s1692).registration10241,247389 -registration(r5734,c212,s1692).registration10241,247389 -registration(r5735,c226,s1692).registration10242,247421 -registration(r5735,c226,s1692).registration10242,247421 -registration(r5736,c176,s1693).registration10243,247453 -registration(r5736,c176,s1693).registration10243,247453 -registration(r5737,c120,s1693).registration10244,247485 -registration(r5737,c120,s1693).registration10244,247485 -registration(r5738,c87,s1693).registration10245,247517 -registration(r5738,c87,s1693).registration10245,247517 -registration(r5739,c186,s1693).registration10246,247548 -registration(r5739,c186,s1693).registration10246,247548 -registration(r5740,c40,s1694).registration10247,247580 -registration(r5740,c40,s1694).registration10247,247580 -registration(r5741,c1,s1694).registration10248,247611 -registration(r5741,c1,s1694).registration10248,247611 -registration(r5742,c136,s1694).registration10249,247641 -registration(r5742,c136,s1694).registration10249,247641 -registration(r5743,c213,s1695).registration10250,247673 -registration(r5743,c213,s1695).registration10250,247673 -registration(r5744,c91,s1695).registration10251,247705 -registration(r5744,c91,s1695).registration10251,247705 -registration(r5745,c87,s1695).registration10252,247736 -registration(r5745,c87,s1695).registration10252,247736 -registration(r5746,c59,s1696).registration10253,247767 -registration(r5746,c59,s1696).registration10253,247767 -registration(r5747,c223,s1696).registration10254,247798 -registration(r5747,c223,s1696).registration10254,247798 -registration(r5748,c212,s1696).registration10255,247830 -registration(r5748,c212,s1696).registration10255,247830 -registration(r5749,c121,s1696).registration10256,247862 -registration(r5749,c121,s1696).registration10256,247862 -registration(r5750,c34,s1697).registration10257,247894 -registration(r5750,c34,s1697).registration10257,247894 -registration(r5751,c160,s1697).registration10258,247925 -registration(r5751,c160,s1697).registration10258,247925 -registration(r5752,c200,s1697).registration10259,247957 -registration(r5752,c200,s1697).registration10259,247957 -registration(r5753,c155,s1697).registration10260,247989 -registration(r5753,c155,s1697).registration10260,247989 -registration(r5754,c138,s1698).registration10261,248021 -registration(r5754,c138,s1698).registration10261,248021 -registration(r5755,c169,s1698).registration10262,248053 -registration(r5755,c169,s1698).registration10262,248053 -registration(r5756,c29,s1698).registration10263,248085 -registration(r5756,c29,s1698).registration10263,248085 -registration(r5757,c117,s1698).registration10264,248116 -registration(r5757,c117,s1698).registration10264,248116 -registration(r5758,c81,s1699).registration10265,248148 -registration(r5758,c81,s1699).registration10265,248148 -registration(r5759,c220,s1699).registration10266,248179 -registration(r5759,c220,s1699).registration10266,248179 -registration(r5760,c108,s1699).registration10267,248211 -registration(r5760,c108,s1699).registration10267,248211 -registration(r5761,c243,s1700).registration10268,248243 -registration(r5761,c243,s1700).registration10268,248243 -registration(r5762,c53,s1700).registration10269,248275 -registration(r5762,c53,s1700).registration10269,248275 -registration(r5763,c120,s1700).registration10270,248306 -registration(r5763,c120,s1700).registration10270,248306 -registration(r5764,c207,s1701).registration10271,248338 -registration(r5764,c207,s1701).registration10271,248338 -registration(r5765,c127,s1701).registration10272,248370 -registration(r5765,c127,s1701).registration10272,248370 -registration(r5766,c47,s1701).registration10273,248402 -registration(r5766,c47,s1701).registration10273,248402 -registration(r5767,c95,s1701).registration10274,248433 -registration(r5767,c95,s1701).registration10274,248433 -registration(r5768,c12,s1701).registration10275,248464 -registration(r5768,c12,s1701).registration10275,248464 -registration(r5769,c216,s1702).registration10276,248495 -registration(r5769,c216,s1702).registration10276,248495 -registration(r5770,c125,s1702).registration10277,248527 -registration(r5770,c125,s1702).registration10277,248527 -registration(r5771,c47,s1702).registration10278,248559 -registration(r5771,c47,s1702).registration10278,248559 -registration(r5772,c215,s1703).registration10279,248590 -registration(r5772,c215,s1703).registration10279,248590 -registration(r5773,c162,s1703).registration10280,248622 -registration(r5773,c162,s1703).registration10280,248622 -registration(r5774,c226,s1703).registration10281,248654 -registration(r5774,c226,s1703).registration10281,248654 -registration(r5775,c255,s1704).registration10282,248686 -registration(r5775,c255,s1704).registration10282,248686 -registration(r5776,c156,s1704).registration10283,248718 -registration(r5776,c156,s1704).registration10283,248718 -registration(r5777,c109,s1704).registration10284,248750 -registration(r5777,c109,s1704).registration10284,248750 -registration(r5778,c74,s1705).registration10285,248782 -registration(r5778,c74,s1705).registration10285,248782 -registration(r5779,c225,s1705).registration10286,248813 -registration(r5779,c225,s1705).registration10286,248813 -registration(r5780,c105,s1705).registration10287,248845 -registration(r5780,c105,s1705).registration10287,248845 -registration(r5781,c213,s1705).registration10288,248877 -registration(r5781,c213,s1705).registration10288,248877 -registration(r5782,c160,s1706).registration10289,248909 -registration(r5782,c160,s1706).registration10289,248909 -registration(r5783,c158,s1706).registration10290,248941 -registration(r5783,c158,s1706).registration10290,248941 -registration(r5784,c47,s1706).registration10291,248973 -registration(r5784,c47,s1706).registration10291,248973 -registration(r5785,c96,s1706).registration10292,249004 -registration(r5785,c96,s1706).registration10292,249004 -registration(r5786,c123,s1707).registration10293,249035 -registration(r5786,c123,s1707).registration10293,249035 -registration(r5787,c126,s1707).registration10294,249067 -registration(r5787,c126,s1707).registration10294,249067 -registration(r5788,c100,s1707).registration10295,249099 -registration(r5788,c100,s1707).registration10295,249099 -registration(r5789,c227,s1708).registration10296,249131 -registration(r5789,c227,s1708).registration10296,249131 -registration(r5790,c183,s1708).registration10297,249163 -registration(r5790,c183,s1708).registration10297,249163 -registration(r5791,c207,s1708).registration10298,249195 -registration(r5791,c207,s1708).registration10298,249195 -registration(r5792,c142,s1708).registration10299,249227 -registration(r5792,c142,s1708).registration10299,249227 -registration(r5793,c11,s1709).registration10300,249259 -registration(r5793,c11,s1709).registration10300,249259 -registration(r5794,c242,s1709).registration10301,249290 -registration(r5794,c242,s1709).registration10301,249290 -registration(r5795,c190,s1709).registration10302,249322 -registration(r5795,c190,s1709).registration10302,249322 -registration(r5796,c143,s1709).registration10303,249354 -registration(r5796,c143,s1709).registration10303,249354 -registration(r5797,c128,s1709).registration10304,249386 -registration(r5797,c128,s1709).registration10304,249386 -registration(r5798,c127,s1710).registration10305,249418 -registration(r5798,c127,s1710).registration10305,249418 -registration(r5799,c119,s1710).registration10306,249450 -registration(r5799,c119,s1710).registration10306,249450 -registration(r5800,c98,s1710).registration10307,249482 -registration(r5800,c98,s1710).registration10307,249482 -registration(r5801,c56,s1711).registration10308,249513 -registration(r5801,c56,s1711).registration10308,249513 -registration(r5802,c136,s1711).registration10309,249544 -registration(r5802,c136,s1711).registration10309,249544 -registration(r5803,c64,s1711).registration10310,249576 -registration(r5803,c64,s1711).registration10310,249576 -registration(r5804,c176,s1712).registration10311,249607 -registration(r5804,c176,s1712).registration10311,249607 -registration(r5805,c247,s1712).registration10312,249639 -registration(r5805,c247,s1712).registration10312,249639 -registration(r5806,c24,s1712).registration10313,249671 -registration(r5806,c24,s1712).registration10313,249671 -registration(r5807,c116,s1712).registration10314,249702 -registration(r5807,c116,s1712).registration10314,249702 -registration(r5808,c181,s1713).registration10315,249734 -registration(r5808,c181,s1713).registration10315,249734 -registration(r5809,c204,s1713).registration10316,249766 -registration(r5809,c204,s1713).registration10316,249766 -registration(r5810,c97,s1713).registration10317,249798 -registration(r5810,c97,s1713).registration10317,249798 -registration(r5811,c139,s1714).registration10318,249829 -registration(r5811,c139,s1714).registration10318,249829 -registration(r5812,c254,s1714).registration10319,249861 -registration(r5812,c254,s1714).registration10319,249861 -registration(r5813,c15,s1714).registration10320,249893 -registration(r5813,c15,s1714).registration10320,249893 -registration(r5814,c206,s1715).registration10321,249924 -registration(r5814,c206,s1715).registration10321,249924 -registration(r5815,c162,s1715).registration10322,249956 -registration(r5815,c162,s1715).registration10322,249956 -registration(r5816,c127,s1715).registration10323,249988 -registration(r5816,c127,s1715).registration10323,249988 -registration(r5817,c0,s1715).registration10324,250020 -registration(r5817,c0,s1715).registration10324,250020 -registration(r5818,c116,s1716).registration10325,250050 -registration(r5818,c116,s1716).registration10325,250050 -registration(r5819,c135,s1716).registration10326,250082 -registration(r5819,c135,s1716).registration10326,250082 -registration(r5820,c233,s1716).registration10327,250114 -registration(r5820,c233,s1716).registration10327,250114 -registration(r5821,c190,s1716).registration10328,250146 -registration(r5821,c190,s1716).registration10328,250146 -registration(r5822,c85,s1717).registration10329,250178 -registration(r5822,c85,s1717).registration10329,250178 -registration(r5823,c151,s1717).registration10330,250209 -registration(r5823,c151,s1717).registration10330,250209 -registration(r5824,c40,s1717).registration10331,250241 -registration(r5824,c40,s1717).registration10331,250241 -registration(r5825,c142,s1717).registration10332,250272 -registration(r5825,c142,s1717).registration10332,250272 -registration(r5826,c50,s1718).registration10333,250304 -registration(r5826,c50,s1718).registration10333,250304 -registration(r5827,c3,s1718).registration10334,250335 -registration(r5827,c3,s1718).registration10334,250335 -registration(r5828,c191,s1718).registration10335,250365 -registration(r5828,c191,s1718).registration10335,250365 -registration(r5829,c33,s1719).registration10336,250397 -registration(r5829,c33,s1719).registration10336,250397 -registration(r5830,c86,s1719).registration10337,250428 -registration(r5830,c86,s1719).registration10337,250428 -registration(r5831,c109,s1719).registration10338,250459 -registration(r5831,c109,s1719).registration10338,250459 -registration(r5832,c124,s1720).registration10339,250491 -registration(r5832,c124,s1720).registration10339,250491 -registration(r5833,c67,s1720).registration10340,250523 -registration(r5833,c67,s1720).registration10340,250523 -registration(r5834,c69,s1720).registration10341,250554 -registration(r5834,c69,s1720).registration10341,250554 -registration(r5835,c197,s1721).registration10342,250585 -registration(r5835,c197,s1721).registration10342,250585 -registration(r5836,c71,s1721).registration10343,250617 -registration(r5836,c71,s1721).registration10343,250617 -registration(r5837,c10,s1721).registration10344,250648 -registration(r5837,c10,s1721).registration10344,250648 -registration(r5838,c145,s1722).registration10345,250679 -registration(r5838,c145,s1722).registration10345,250679 -registration(r5839,c175,s1722).registration10346,250711 -registration(r5839,c175,s1722).registration10346,250711 -registration(r5840,c209,s1722).registration10347,250743 -registration(r5840,c209,s1722).registration10347,250743 -registration(r5841,c38,s1722).registration10348,250775 -registration(r5841,c38,s1722).registration10348,250775 -registration(r5842,c231,s1723).registration10349,250806 -registration(r5842,c231,s1723).registration10349,250806 -registration(r5843,c72,s1723).registration10350,250838 -registration(r5843,c72,s1723).registration10350,250838 -registration(r5844,c44,s1723).registration10351,250869 -registration(r5844,c44,s1723).registration10351,250869 -registration(r5845,c94,s1724).registration10352,250900 -registration(r5845,c94,s1724).registration10352,250900 -registration(r5846,c121,s1724).registration10353,250931 -registration(r5846,c121,s1724).registration10353,250931 -registration(r5847,c73,s1724).registration10354,250963 -registration(r5847,c73,s1724).registration10354,250963 -registration(r5848,c107,s1725).registration10355,250994 -registration(r5848,c107,s1725).registration10355,250994 -registration(r5849,c157,s1725).registration10356,251026 -registration(r5849,c157,s1725).registration10356,251026 -registration(r5850,c181,s1725).registration10357,251058 -registration(r5850,c181,s1725).registration10357,251058 -registration(r5851,c241,s1725).registration10358,251090 -registration(r5851,c241,s1725).registration10358,251090 -registration(r5852,c90,s1725).registration10359,251122 -registration(r5852,c90,s1725).registration10359,251122 -registration(r5853,c53,s1726).registration10360,251153 -registration(r5853,c53,s1726).registration10360,251153 -registration(r5854,c125,s1726).registration10361,251184 -registration(r5854,c125,s1726).registration10361,251184 -registration(r5855,c67,s1726).registration10362,251216 -registration(r5855,c67,s1726).registration10362,251216 -registration(r5856,c77,s1727).registration10363,251247 -registration(r5856,c77,s1727).registration10363,251247 -registration(r5857,c193,s1727).registration10364,251278 -registration(r5857,c193,s1727).registration10364,251278 -registration(r5858,c128,s1727).registration10365,251310 -registration(r5858,c128,s1727).registration10365,251310 -registration(r5859,c81,s1728).registration10366,251342 -registration(r5859,c81,s1728).registration10366,251342 -registration(r5860,c47,s1728).registration10367,251373 -registration(r5860,c47,s1728).registration10367,251373 -registration(r5861,c145,s1728).registration10368,251404 -registration(r5861,c145,s1728).registration10368,251404 -registration(r5862,c218,s1728).registration10369,251436 -registration(r5862,c218,s1728).registration10369,251436 -registration(r5863,c164,s1729).registration10370,251468 -registration(r5863,c164,s1729).registration10370,251468 -registration(r5864,c140,s1729).registration10371,251500 -registration(r5864,c140,s1729).registration10371,251500 -registration(r5865,c99,s1729).registration10372,251532 -registration(r5865,c99,s1729).registration10372,251532 -registration(r5866,c6,s1729).registration10373,251563 -registration(r5866,c6,s1729).registration10373,251563 -registration(r5867,c74,s1730).registration10374,251593 -registration(r5867,c74,s1730).registration10374,251593 -registration(r5868,c79,s1730).registration10375,251624 -registration(r5868,c79,s1730).registration10375,251624 -registration(r5869,c25,s1730).registration10376,251655 -registration(r5869,c25,s1730).registration10376,251655 -registration(r5870,c50,s1730).registration10377,251686 -registration(r5870,c50,s1730).registration10377,251686 -registration(r5871,c215,s1731).registration10378,251717 -registration(r5871,c215,s1731).registration10378,251717 -registration(r5872,c53,s1731).registration10379,251749 -registration(r5872,c53,s1731).registration10379,251749 -registration(r5873,c142,s1731).registration10380,251780 -registration(r5873,c142,s1731).registration10380,251780 -registration(r5874,c178,s1731).registration10381,251812 -registration(r5874,c178,s1731).registration10381,251812 -registration(r5875,c9,s1732).registration10382,251844 -registration(r5875,c9,s1732).registration10382,251844 -registration(r5876,c119,s1732).registration10383,251874 -registration(r5876,c119,s1732).registration10383,251874 -registration(r5877,c31,s1732).registration10384,251906 -registration(r5877,c31,s1732).registration10384,251906 -registration(r5878,c253,s1733).registration10385,251937 -registration(r5878,c253,s1733).registration10385,251937 -registration(r5879,c59,s1733).registration10386,251969 -registration(r5879,c59,s1733).registration10386,251969 -registration(r5880,c72,s1733).registration10387,252000 -registration(r5880,c72,s1733).registration10387,252000 -registration(r5881,c203,s1733).registration10388,252031 -registration(r5881,c203,s1733).registration10388,252031 -registration(r5882,c67,s1734).registration10389,252063 -registration(r5882,c67,s1734).registration10389,252063 -registration(r5883,c166,s1734).registration10390,252094 -registration(r5883,c166,s1734).registration10390,252094 -registration(r5884,c101,s1734).registration10391,252126 -registration(r5884,c101,s1734).registration10391,252126 -registration(r5885,c105,s1734).registration10392,252158 -registration(r5885,c105,s1734).registration10392,252158 -registration(r5886,c214,s1735).registration10393,252190 -registration(r5886,c214,s1735).registration10393,252190 -registration(r5887,c184,s1735).registration10394,252222 -registration(r5887,c184,s1735).registration10394,252222 -registration(r5888,c177,s1735).registration10395,252254 -registration(r5888,c177,s1735).registration10395,252254 -registration(r5889,c211,s1735).registration10396,252286 -registration(r5889,c211,s1735).registration10396,252286 -registration(r5890,c42,s1736).registration10397,252318 -registration(r5890,c42,s1736).registration10397,252318 -registration(r5891,c5,s1736).registration10398,252349 -registration(r5891,c5,s1736).registration10398,252349 -registration(r5892,c115,s1736).registration10399,252379 -registration(r5892,c115,s1736).registration10399,252379 -registration(r5893,c127,s1737).registration10400,252411 -registration(r5893,c127,s1737).registration10400,252411 -registration(r5894,c18,s1737).registration10401,252443 -registration(r5894,c18,s1737).registration10401,252443 -registration(r5895,c101,s1737).registration10402,252474 -registration(r5895,c101,s1737).registration10402,252474 -registration(r5896,c131,s1738).registration10403,252506 -registration(r5896,c131,s1738).registration10403,252506 -registration(r5897,c83,s1738).registration10404,252538 -registration(r5897,c83,s1738).registration10404,252538 -registration(r5898,c127,s1738).registration10405,252569 -registration(r5898,c127,s1738).registration10405,252569 -registration(r5899,c200,s1739).registration10406,252601 -registration(r5899,c200,s1739).registration10406,252601 -registration(r5900,c172,s1739).registration10407,252633 -registration(r5900,c172,s1739).registration10407,252633 -registration(r5901,c91,s1739).registration10408,252665 -registration(r5901,c91,s1739).registration10408,252665 -registration(r5902,c2,s1740).registration10409,252696 -registration(r5902,c2,s1740).registration10409,252696 -registration(r5903,c237,s1740).registration10410,252726 -registration(r5903,c237,s1740).registration10410,252726 -registration(r5904,c192,s1740).registration10411,252758 -registration(r5904,c192,s1740).registration10411,252758 -registration(r5905,c85,s1740).registration10412,252790 -registration(r5905,c85,s1740).registration10412,252790 -registration(r5906,c198,s1741).registration10413,252821 -registration(r5906,c198,s1741).registration10413,252821 -registration(r5907,c8,s1741).registration10414,252853 -registration(r5907,c8,s1741).registration10414,252853 -registration(r5908,c188,s1741).registration10415,252883 -registration(r5908,c188,s1741).registration10415,252883 -registration(r5909,c231,s1742).registration10416,252915 -registration(r5909,c231,s1742).registration10416,252915 -registration(r5910,c159,s1742).registration10417,252947 -registration(r5910,c159,s1742).registration10417,252947 -registration(r5911,c20,s1742).registration10418,252979 -registration(r5911,c20,s1742).registration10418,252979 -registration(r5912,c148,s1743).registration10419,253010 -registration(r5912,c148,s1743).registration10419,253010 -registration(r5913,c89,s1743).registration10420,253042 -registration(r5913,c89,s1743).registration10420,253042 -registration(r5914,c154,s1743).registration10421,253073 -registration(r5914,c154,s1743).registration10421,253073 -registration(r5915,c226,s1743).registration10422,253105 -registration(r5915,c226,s1743).registration10422,253105 -registration(r5916,c112,s1743).registration10423,253137 -registration(r5916,c112,s1743).registration10423,253137 -registration(r5917,c98,s1744).registration10424,253169 -registration(r5917,c98,s1744).registration10424,253169 -registration(r5918,c157,s1744).registration10425,253200 -registration(r5918,c157,s1744).registration10425,253200 -registration(r5919,c0,s1744).registration10426,253232 -registration(r5919,c0,s1744).registration10426,253232 -registration(r5920,c73,s1744).registration10427,253262 -registration(r5920,c73,s1744).registration10427,253262 -registration(r5921,c179,s1745).registration10428,253293 -registration(r5921,c179,s1745).registration10428,253293 -registration(r5922,c57,s1745).registration10429,253325 -registration(r5922,c57,s1745).registration10429,253325 -registration(r5923,c94,s1745).registration10430,253356 -registration(r5923,c94,s1745).registration10430,253356 -registration(r5924,c107,s1746).registration10431,253387 -registration(r5924,c107,s1746).registration10431,253387 -registration(r5925,c246,s1746).registration10432,253419 -registration(r5925,c246,s1746).registration10432,253419 -registration(r5926,c145,s1746).registration10433,253451 -registration(r5926,c145,s1746).registration10433,253451 -registration(r5927,c255,s1746).registration10434,253483 -registration(r5927,c255,s1746).registration10434,253483 -registration(r5928,c205,s1747).registration10435,253515 -registration(r5928,c205,s1747).registration10435,253515 -registration(r5929,c161,s1747).registration10436,253547 -registration(r5929,c161,s1747).registration10436,253547 -registration(r5930,c53,s1747).registration10437,253579 -registration(r5930,c53,s1747).registration10437,253579 -registration(r5931,c125,s1748).registration10438,253610 -registration(r5931,c125,s1748).registration10438,253610 -registration(r5932,c162,s1748).registration10439,253642 -registration(r5932,c162,s1748).registration10439,253642 -registration(r5933,c74,s1748).registration10440,253674 -registration(r5933,c74,s1748).registration10440,253674 -registration(r5934,c103,s1749).registration10441,253705 -registration(r5934,c103,s1749).registration10441,253705 -registration(r5935,c185,s1749).registration10442,253737 -registration(r5935,c185,s1749).registration10442,253737 -registration(r5936,c87,s1749).registration10443,253769 -registration(r5936,c87,s1749).registration10443,253769 -registration(r5937,c245,s1749).registration10444,253800 -registration(r5937,c245,s1749).registration10444,253800 -registration(r5938,c217,s1750).registration10445,253832 -registration(r5938,c217,s1750).registration10445,253832 -registration(r5939,c69,s1750).registration10446,253864 -registration(r5939,c69,s1750).registration10446,253864 -registration(r5940,c62,s1750).registration10447,253895 -registration(r5940,c62,s1750).registration10447,253895 -registration(r5941,c121,s1751).registration10448,253926 -registration(r5941,c121,s1751).registration10448,253926 -registration(r5942,c149,s1751).registration10449,253958 -registration(r5942,c149,s1751).registration10449,253958 -registration(r5943,c154,s1751).registration10450,253990 -registration(r5943,c154,s1751).registration10450,253990 -registration(r5944,c143,s1751).registration10451,254022 -registration(r5944,c143,s1751).registration10451,254022 -registration(r5945,c5,s1752).registration10452,254054 -registration(r5945,c5,s1752).registration10452,254054 -registration(r5946,c51,s1752).registration10453,254084 -registration(r5946,c51,s1752).registration10453,254084 -registration(r5947,c144,s1752).registration10454,254115 -registration(r5947,c144,s1752).registration10454,254115 -registration(r5948,c49,s1752).registration10455,254147 -registration(r5948,c49,s1752).registration10455,254147 -registration(r5949,c139,s1753).registration10456,254178 -registration(r5949,c139,s1753).registration10456,254178 -registration(r5950,c109,s1753).registration10457,254210 -registration(r5950,c109,s1753).registration10457,254210 -registration(r5951,c231,s1753).registration10458,254242 -registration(r5951,c231,s1753).registration10458,254242 -registration(r5952,c15,s1753).registration10459,254274 -registration(r5952,c15,s1753).registration10459,254274 -registration(r5953,c222,s1753).registration10460,254305 -registration(r5953,c222,s1753).registration10460,254305 -registration(r5954,c75,s1754).registration10461,254337 -registration(r5954,c75,s1754).registration10461,254337 -registration(r5955,c154,s1754).registration10462,254368 -registration(r5955,c154,s1754).registration10462,254368 -registration(r5956,c152,s1754).registration10463,254400 -registration(r5956,c152,s1754).registration10463,254400 -registration(r5957,c180,s1755).registration10464,254432 -registration(r5957,c180,s1755).registration10464,254432 -registration(r5958,c152,s1755).registration10465,254464 -registration(r5958,c152,s1755).registration10465,254464 -registration(r5959,c75,s1755).registration10466,254496 -registration(r5959,c75,s1755).registration10466,254496 -registration(r5960,c130,s1756).registration10467,254527 -registration(r5960,c130,s1756).registration10467,254527 -registration(r5961,c243,s1756).registration10468,254559 -registration(r5961,c243,s1756).registration10468,254559 -registration(r5962,c80,s1756).registration10469,254591 -registration(r5962,c80,s1756).registration10469,254591 -registration(r5963,c141,s1756).registration10470,254622 -registration(r5963,c141,s1756).registration10470,254622 -registration(r5964,c23,s1757).registration10471,254654 -registration(r5964,c23,s1757).registration10471,254654 -registration(r5965,c30,s1757).registration10472,254685 -registration(r5965,c30,s1757).registration10472,254685 -registration(r5966,c203,s1757).registration10473,254716 -registration(r5966,c203,s1757).registration10473,254716 -registration(r5967,c31,s1758).registration10474,254748 -registration(r5967,c31,s1758).registration10474,254748 -registration(r5968,c75,s1758).registration10475,254779 -registration(r5968,c75,s1758).registration10475,254779 -registration(r5969,c221,s1758).registration10476,254810 -registration(r5969,c221,s1758).registration10476,254810 -registration(r5970,c196,s1759).registration10477,254842 -registration(r5970,c196,s1759).registration10477,254842 -registration(r5971,c178,s1759).registration10478,254874 -registration(r5971,c178,s1759).registration10478,254874 -registration(r5972,c200,s1759).registration10479,254906 -registration(r5972,c200,s1759).registration10479,254906 -registration(r5973,c19,s1760).registration10480,254938 -registration(r5973,c19,s1760).registration10480,254938 -registration(r5974,c144,s1760).registration10481,254969 -registration(r5974,c144,s1760).registration10481,254969 -registration(r5975,c43,s1760).registration10482,255001 -registration(r5975,c43,s1760).registration10482,255001 -registration(r5976,c223,s1760).registration10483,255032 -registration(r5976,c223,s1760).registration10483,255032 -registration(r5977,c79,s1761).registration10484,255064 -registration(r5977,c79,s1761).registration10484,255064 -registration(r5978,c80,s1761).registration10485,255095 -registration(r5978,c80,s1761).registration10485,255095 -registration(r5979,c217,s1761).registration10486,255126 -registration(r5979,c217,s1761).registration10486,255126 -registration(r5980,c209,s1761).registration10487,255158 -registration(r5980,c209,s1761).registration10487,255158 -registration(r5981,c120,s1762).registration10488,255190 -registration(r5981,c120,s1762).registration10488,255190 -registration(r5982,c233,s1762).registration10489,255222 -registration(r5982,c233,s1762).registration10489,255222 -registration(r5983,c89,s1762).registration10490,255254 -registration(r5983,c89,s1762).registration10490,255254 -registration(r5984,c119,s1762).registration10491,255285 -registration(r5984,c119,s1762).registration10491,255285 -registration(r5985,c8,s1763).registration10492,255317 -registration(r5985,c8,s1763).registration10492,255317 -registration(r5986,c76,s1763).registration10493,255347 -registration(r5986,c76,s1763).registration10493,255347 -registration(r5987,c37,s1763).registration10494,255378 -registration(r5987,c37,s1763).registration10494,255378 -registration(r5988,c151,s1763).registration10495,255409 -registration(r5988,c151,s1763).registration10495,255409 -registration(r5989,c211,s1763).registration10496,255441 -registration(r5989,c211,s1763).registration10496,255441 -registration(r5990,c77,s1764).registration10497,255473 -registration(r5990,c77,s1764).registration10497,255473 -registration(r5991,c199,s1764).registration10498,255504 -registration(r5991,c199,s1764).registration10498,255504 -registration(r5992,c133,s1764).registration10499,255536 -registration(r5992,c133,s1764).registration10499,255536 -registration(r5993,c190,s1764).registration10500,255568 -registration(r5993,c190,s1764).registration10500,255568 -registration(r5994,c40,s1764).registration10501,255600 -registration(r5994,c40,s1764).registration10501,255600 -registration(r5995,c78,s1765).registration10502,255631 -registration(r5995,c78,s1765).registration10502,255631 -registration(r5996,c66,s1765).registration10503,255662 -registration(r5996,c66,s1765).registration10503,255662 -registration(r5997,c224,s1765).registration10504,255693 -registration(r5997,c224,s1765).registration10504,255693 -registration(r5998,c47,s1765).registration10505,255725 -registration(r5998,c47,s1765).registration10505,255725 -registration(r5999,c162,s1766).registration10506,255756 -registration(r5999,c162,s1766).registration10506,255756 -registration(r6000,c251,s1766).registration10507,255788 -registration(r6000,c251,s1766).registration10507,255788 -registration(r6001,c86,s1766).registration10508,255820 -registration(r6001,c86,s1766).registration10508,255820 -registration(r6002,c208,s1767).registration10509,255851 -registration(r6002,c208,s1767).registration10509,255851 -registration(r6003,c93,s1767).registration10510,255883 -registration(r6003,c93,s1767).registration10510,255883 -registration(r6004,c34,s1767).registration10511,255914 -registration(r6004,c34,s1767).registration10511,255914 -registration(r6005,c96,s1767).registration10512,255945 -registration(r6005,c96,s1767).registration10512,255945 -registration(r6006,c22,s1768).registration10513,255976 -registration(r6006,c22,s1768).registration10513,255976 -registration(r6007,c170,s1768).registration10514,256007 -registration(r6007,c170,s1768).registration10514,256007 -registration(r6008,c192,s1768).registration10515,256039 -registration(r6008,c192,s1768).registration10515,256039 -registration(r6009,c194,s1769).registration10516,256071 -registration(r6009,c194,s1769).registration10516,256071 -registration(r6010,c16,s1769).registration10517,256103 -registration(r6010,c16,s1769).registration10517,256103 -registration(r6011,c142,s1769).registration10518,256134 -registration(r6011,c142,s1769).registration10518,256134 -registration(r6012,c164,s1770).registration10519,256166 -registration(r6012,c164,s1770).registration10519,256166 -registration(r6013,c72,s1770).registration10520,256198 -registration(r6013,c72,s1770).registration10520,256198 -registration(r6014,c175,s1770).registration10521,256229 -registration(r6014,c175,s1770).registration10521,256229 -registration(r6015,c241,s1771).registration10522,256261 -registration(r6015,c241,s1771).registration10522,256261 -registration(r6016,c172,s1771).registration10523,256293 -registration(r6016,c172,s1771).registration10523,256293 -registration(r6017,c233,s1771).registration10524,256325 -registration(r6017,c233,s1771).registration10524,256325 -registration(r6018,c219,s1771).registration10525,256357 -registration(r6018,c219,s1771).registration10525,256357 -registration(r6019,c13,s1772).registration10526,256389 -registration(r6019,c13,s1772).registration10526,256389 -registration(r6020,c53,s1772).registration10527,256420 -registration(r6020,c53,s1772).registration10527,256420 -registration(r6021,c0,s1772).registration10528,256451 -registration(r6021,c0,s1772).registration10528,256451 -registration(r6022,c96,s1772).registration10529,256481 -registration(r6022,c96,s1772).registration10529,256481 -registration(r6023,c249,s1773).registration10530,256512 -registration(r6023,c249,s1773).registration10530,256512 -registration(r6024,c18,s1773).registration10531,256544 -registration(r6024,c18,s1773).registration10531,256544 -registration(r6025,c189,s1773).registration10532,256575 -registration(r6025,c189,s1773).registration10532,256575 -registration(r6026,c104,s1773).registration10533,256607 -registration(r6026,c104,s1773).registration10533,256607 -registration(r6027,c84,s1774).registration10534,256639 -registration(r6027,c84,s1774).registration10534,256639 -registration(r6028,c103,s1774).registration10535,256670 -registration(r6028,c103,s1774).registration10535,256670 -registration(r6029,c169,s1774).registration10536,256702 -registration(r6029,c169,s1774).registration10536,256702 -registration(r6030,c120,s1774).registration10537,256734 -registration(r6030,c120,s1774).registration10537,256734 -registration(r6031,c162,s1775).registration10538,256766 -registration(r6031,c162,s1775).registration10538,256766 -registration(r6032,c14,s1775).registration10539,256798 -registration(r6032,c14,s1775).registration10539,256798 -registration(r6033,c219,s1775).registration10540,256829 -registration(r6033,c219,s1775).registration10540,256829 -registration(r6034,c169,s1776).registration10541,256861 -registration(r6034,c169,s1776).registration10541,256861 -registration(r6035,c130,s1776).registration10542,256893 -registration(r6035,c130,s1776).registration10542,256893 -registration(r6036,c174,s1776).registration10543,256925 -registration(r6036,c174,s1776).registration10543,256925 -registration(r6037,c192,s1777).registration10544,256957 -registration(r6037,c192,s1777).registration10544,256957 -registration(r6038,c51,s1777).registration10545,256989 -registration(r6038,c51,s1777).registration10545,256989 -registration(r6039,c248,s1777).registration10546,257020 -registration(r6039,c248,s1777).registration10546,257020 -registration(r6040,c249,s1778).registration10547,257052 -registration(r6040,c249,s1778).registration10547,257052 -registration(r6041,c164,s1778).registration10548,257084 -registration(r6041,c164,s1778).registration10548,257084 -registration(r6042,c107,s1778).registration10549,257116 -registration(r6042,c107,s1778).registration10549,257116 -registration(r6043,c127,s1779).registration10550,257148 -registration(r6043,c127,s1779).registration10550,257148 -registration(r6044,c21,s1779).registration10551,257180 -registration(r6044,c21,s1779).registration10551,257180 -registration(r6045,c51,s1779).registration10552,257211 -registration(r6045,c51,s1779).registration10552,257211 -registration(r6046,c135,s1780).registration10553,257242 -registration(r6046,c135,s1780).registration10553,257242 -registration(r6047,c14,s1780).registration10554,257274 -registration(r6047,c14,s1780).registration10554,257274 -registration(r6048,c40,s1780).registration10555,257305 -registration(r6048,c40,s1780).registration10555,257305 -registration(r6049,c94,s1781).registration10556,257336 -registration(r6049,c94,s1781).registration10556,257336 -registration(r6050,c64,s1781).registration10557,257367 -registration(r6050,c64,s1781).registration10557,257367 -registration(r6051,c150,s1781).registration10558,257398 -registration(r6051,c150,s1781).registration10558,257398 -registration(r6052,c82,s1781).registration10559,257430 -registration(r6052,c82,s1781).registration10559,257430 -registration(r6053,c227,s1782).registration10560,257461 -registration(r6053,c227,s1782).registration10560,257461 -registration(r6054,c173,s1782).registration10561,257493 -registration(r6054,c173,s1782).registration10561,257493 -registration(r6055,c0,s1782).registration10562,257525 -registration(r6055,c0,s1782).registration10562,257525 -registration(r6056,c192,s1782).registration10563,257555 -registration(r6056,c192,s1782).registration10563,257555 -registration(r6057,c109,s1783).registration10564,257587 -registration(r6057,c109,s1783).registration10564,257587 -registration(r6058,c19,s1783).registration10565,257619 -registration(r6058,c19,s1783).registration10565,257619 -registration(r6059,c144,s1783).registration10566,257650 -registration(r6059,c144,s1783).registration10566,257650 -registration(r6060,c52,s1783).registration10567,257682 -registration(r6060,c52,s1783).registration10567,257682 -registration(r6061,c66,s1784).registration10568,257713 -registration(r6061,c66,s1784).registration10568,257713 -registration(r6062,c101,s1784).registration10569,257744 -registration(r6062,c101,s1784).registration10569,257744 -registration(r6063,c210,s1784).registration10570,257776 -registration(r6063,c210,s1784).registration10570,257776 -registration(r6064,c4,s1785).registration10571,257808 -registration(r6064,c4,s1785).registration10571,257808 -registration(r6065,c105,s1785).registration10572,257838 -registration(r6065,c105,s1785).registration10572,257838 -registration(r6066,c249,s1785).registration10573,257870 -registration(r6066,c249,s1785).registration10573,257870 -registration(r6067,c33,s1786).registration10574,257902 -registration(r6067,c33,s1786).registration10574,257902 -registration(r6068,c43,s1786).registration10575,257933 -registration(r6068,c43,s1786).registration10575,257933 -registration(r6069,c255,s1786).registration10576,257964 -registration(r6069,c255,s1786).registration10576,257964 -registration(r6070,c148,s1787).registration10577,257996 -registration(r6070,c148,s1787).registration10577,257996 -registration(r6071,c187,s1787).registration10578,258028 -registration(r6071,c187,s1787).registration10578,258028 -registration(r6072,c150,s1787).registration10579,258060 -registration(r6072,c150,s1787).registration10579,258060 -registration(r6073,c69,s1788).registration10580,258092 -registration(r6073,c69,s1788).registration10580,258092 -registration(r6074,c231,s1788).registration10581,258123 -registration(r6074,c231,s1788).registration10581,258123 -registration(r6075,c216,s1788).registration10582,258155 -registration(r6075,c216,s1788).registration10582,258155 -registration(r6076,c70,s1789).registration10583,258187 -registration(r6076,c70,s1789).registration10583,258187 -registration(r6077,c116,s1789).registration10584,258218 -registration(r6077,c116,s1789).registration10584,258218 -registration(r6078,c54,s1789).registration10585,258250 -registration(r6078,c54,s1789).registration10585,258250 -registration(r6079,c130,s1789).registration10586,258281 -registration(r6079,c130,s1789).registration10586,258281 -registration(r6080,c93,s1790).registration10587,258313 -registration(r6080,c93,s1790).registration10587,258313 -registration(r6081,c230,s1790).registration10588,258344 -registration(r6081,c230,s1790).registration10588,258344 -registration(r6082,c60,s1790).registration10589,258376 -registration(r6082,c60,s1790).registration10589,258376 -registration(r6083,c98,s1790).registration10590,258407 -registration(r6083,c98,s1790).registration10590,258407 -registration(r6084,c136,s1791).registration10591,258438 -registration(r6084,c136,s1791).registration10591,258438 -registration(r6085,c90,s1791).registration10592,258470 -registration(r6085,c90,s1791).registration10592,258470 -registration(r6086,c205,s1791).registration10593,258501 -registration(r6086,c205,s1791).registration10593,258501 -registration(r6087,c124,s1791).registration10594,258533 -registration(r6087,c124,s1791).registration10594,258533 -registration(r6088,c255,s1792).registration10595,258565 -registration(r6088,c255,s1792).registration10595,258565 -registration(r6089,c251,s1792).registration10596,258597 -registration(r6089,c251,s1792).registration10596,258597 -registration(r6090,c97,s1792).registration10597,258629 -registration(r6090,c97,s1792).registration10597,258629 -registration(r6091,c248,s1793).registration10598,258660 -registration(r6091,c248,s1793).registration10598,258660 -registration(r6092,c122,s1793).registration10599,258692 -registration(r6092,c122,s1793).registration10599,258692 -registration(r6093,c86,s1793).registration10600,258724 -registration(r6093,c86,s1793).registration10600,258724 -registration(r6094,c47,s1794).registration10601,258755 -registration(r6094,c47,s1794).registration10601,258755 -registration(r6095,c158,s1794).registration10602,258786 -registration(r6095,c158,s1794).registration10602,258786 -registration(r6096,c9,s1794).registration10603,258818 -registration(r6096,c9,s1794).registration10603,258818 -registration(r6097,c65,s1794).registration10604,258848 -registration(r6097,c65,s1794).registration10604,258848 -registration(r6098,c146,s1795).registration10605,258879 -registration(r6098,c146,s1795).registration10605,258879 -registration(r6099,c145,s1795).registration10606,258911 -registration(r6099,c145,s1795).registration10606,258911 -registration(r6100,c172,s1795).registration10607,258943 -registration(r6100,c172,s1795).registration10607,258943 -registration(r6101,c232,s1796).registration10608,258975 -registration(r6101,c232,s1796).registration10608,258975 -registration(r6102,c15,s1796).registration10609,259007 -registration(r6102,c15,s1796).registration10609,259007 -registration(r6103,c217,s1796).registration10610,259038 -registration(r6103,c217,s1796).registration10610,259038 -registration(r6104,c150,s1796).registration10611,259070 -registration(r6104,c150,s1796).registration10611,259070 -registration(r6105,c247,s1797).registration10612,259102 -registration(r6105,c247,s1797).registration10612,259102 -registration(r6106,c151,s1797).registration10613,259134 -registration(r6106,c151,s1797).registration10613,259134 -registration(r6107,c177,s1797).registration10614,259166 -registration(r6107,c177,s1797).registration10614,259166 -registration(r6108,c174,s1798).registration10615,259198 -registration(r6108,c174,s1798).registration10615,259198 -registration(r6109,c79,s1798).registration10616,259230 -registration(r6109,c79,s1798).registration10616,259230 -registration(r6110,c43,s1798).registration10617,259261 -registration(r6110,c43,s1798).registration10617,259261 -registration(r6111,c166,s1799).registration10618,259292 -registration(r6111,c166,s1799).registration10618,259292 -registration(r6112,c189,s1799).registration10619,259324 -registration(r6112,c189,s1799).registration10619,259324 -registration(r6113,c133,s1799).registration10620,259356 -registration(r6113,c133,s1799).registration10620,259356 -registration(r6114,c237,s1799).registration10621,259388 -registration(r6114,c237,s1799).registration10621,259388 -registration(r6115,c17,s1799).registration10622,259420 -registration(r6115,c17,s1799).registration10622,259420 -registration(r6116,c99,s1800).registration10623,259451 -registration(r6116,c99,s1800).registration10623,259451 -registration(r6117,c54,s1800).registration10624,259482 -registration(r6117,c54,s1800).registration10624,259482 -registration(r6118,c82,s1800).registration10625,259513 -registration(r6118,c82,s1800).registration10625,259513 -registration(r6119,c253,s1801).registration10626,259544 -registration(r6119,c253,s1801).registration10626,259544 -registration(r6120,c228,s1801).registration10627,259576 -registration(r6120,c228,s1801).registration10627,259576 -registration(r6121,c64,s1801).registration10628,259608 -registration(r6121,c64,s1801).registration10628,259608 -registration(r6122,c27,s1802).registration10629,259639 -registration(r6122,c27,s1802).registration10629,259639 -registration(r6123,c16,s1802).registration10630,259670 -registration(r6123,c16,s1802).registration10630,259670 -registration(r6124,c140,s1802).registration10631,259701 -registration(r6124,c140,s1802).registration10631,259701 -registration(r6125,c36,s1802).registration10632,259733 -registration(r6125,c36,s1802).registration10632,259733 -registration(r6126,c2,s1803).registration10633,259764 -registration(r6126,c2,s1803).registration10633,259764 -registration(r6127,c245,s1803).registration10634,259794 -registration(r6127,c245,s1803).registration10634,259794 -registration(r6128,c186,s1803).registration10635,259826 -registration(r6128,c186,s1803).registration10635,259826 -registration(r6129,c230,s1804).registration10636,259858 -registration(r6129,c230,s1804).registration10636,259858 -registration(r6130,c23,s1804).registration10637,259890 -registration(r6130,c23,s1804).registration10637,259890 -registration(r6131,c142,s1804).registration10638,259921 -registration(r6131,c142,s1804).registration10638,259921 -registration(r6132,c21,s1805).registration10639,259953 -registration(r6132,c21,s1805).registration10639,259953 -registration(r6133,c149,s1805).registration10640,259984 -registration(r6133,c149,s1805).registration10640,259984 -registration(r6134,c194,s1805).registration10641,260016 -registration(r6134,c194,s1805).registration10641,260016 -registration(r6135,c36,s1806).registration10642,260048 -registration(r6135,c36,s1806).registration10642,260048 -registration(r6136,c113,s1806).registration10643,260079 -registration(r6136,c113,s1806).registration10643,260079 -registration(r6137,c248,s1806).registration10644,260111 -registration(r6137,c248,s1806).registration10644,260111 -registration(r6138,c57,s1806).registration10645,260143 -registration(r6138,c57,s1806).registration10645,260143 -registration(r6139,c254,s1807).registration10646,260174 -registration(r6139,c254,s1807).registration10646,260174 -registration(r6140,c122,s1807).registration10647,260206 -registration(r6140,c122,s1807).registration10647,260206 -registration(r6141,c219,s1807).registration10648,260238 -registration(r6141,c219,s1807).registration10648,260238 -registration(r6142,c236,s1808).registration10649,260270 -registration(r6142,c236,s1808).registration10649,260270 -registration(r6143,c125,s1808).registration10650,260302 -registration(r6143,c125,s1808).registration10650,260302 -registration(r6144,c229,s1808).registration10651,260334 -registration(r6144,c229,s1808).registration10651,260334 -registration(r6145,c232,s1809).registration10652,260366 -registration(r6145,c232,s1809).registration10652,260366 -registration(r6146,c233,s1809).registration10653,260398 -registration(r6146,c233,s1809).registration10653,260398 -registration(r6147,c91,s1809).registration10654,260430 -registration(r6147,c91,s1809).registration10654,260430 -registration(r6148,c66,s1809).registration10655,260461 -registration(r6148,c66,s1809).registration10655,260461 -registration(r6149,c176,s1810).registration10656,260492 -registration(r6149,c176,s1810).registration10656,260492 -registration(r6150,c190,s1810).registration10657,260524 -registration(r6150,c190,s1810).registration10657,260524 -registration(r6151,c207,s1810).registration10658,260556 -registration(r6151,c207,s1810).registration10658,260556 -registration(r6152,c100,s1811).registration10659,260588 -registration(r6152,c100,s1811).registration10659,260588 -registration(r6153,c70,s1811).registration10660,260620 -registration(r6153,c70,s1811).registration10660,260620 -registration(r6154,c14,s1811).registration10661,260651 -registration(r6154,c14,s1811).registration10661,260651 -registration(r6155,c109,s1811).registration10662,260682 -registration(r6155,c109,s1811).registration10662,260682 -registration(r6156,c2,s1812).registration10663,260714 -registration(r6156,c2,s1812).registration10663,260714 -registration(r6157,c133,s1812).registration10664,260744 -registration(r6157,c133,s1812).registration10664,260744 -registration(r6158,c184,s1812).registration10665,260776 -registration(r6158,c184,s1812).registration10665,260776 -registration(r6159,c51,s1813).registration10666,260808 -registration(r6159,c51,s1813).registration10666,260808 -registration(r6160,c213,s1813).registration10667,260839 -registration(r6160,c213,s1813).registration10667,260839 -registration(r6161,c118,s1813).registration10668,260871 -registration(r6161,c118,s1813).registration10668,260871 -registration(r6162,c244,s1814).registration10669,260903 -registration(r6162,c244,s1814).registration10669,260903 -registration(r6163,c174,s1814).registration10670,260935 -registration(r6163,c174,s1814).registration10670,260935 -registration(r6164,c181,s1814).registration10671,260967 -registration(r6164,c181,s1814).registration10671,260967 -registration(r6165,c159,s1815).registration10672,260999 -registration(r6165,c159,s1815).registration10672,260999 -registration(r6166,c242,s1815).registration10673,261031 -registration(r6166,c242,s1815).registration10673,261031 -registration(r6167,c49,s1815).registration10674,261063 -registration(r6167,c49,s1815).registration10674,261063 -registration(r6168,c226,s1816).registration10675,261094 -registration(r6168,c226,s1816).registration10675,261094 -registration(r6169,c140,s1816).registration10676,261126 -registration(r6169,c140,s1816).registration10676,261126 -registration(r6170,c5,s1816).registration10677,261158 -registration(r6170,c5,s1816).registration10677,261158 -registration(r6171,c105,s1817).registration10678,261188 -registration(r6171,c105,s1817).registration10678,261188 -registration(r6172,c175,s1817).registration10679,261220 -registration(r6172,c175,s1817).registration10679,261220 -registration(r6173,c112,s1817).registration10680,261252 -registration(r6173,c112,s1817).registration10680,261252 -registration(r6174,c239,s1817).registration10681,261284 -registration(r6174,c239,s1817).registration10681,261284 -registration(r6175,c119,s1818).registration10682,261316 -registration(r6175,c119,s1818).registration10682,261316 -registration(r6176,c160,s1818).registration10683,261348 -registration(r6176,c160,s1818).registration10683,261348 -registration(r6177,c168,s1818).registration10684,261380 -registration(r6177,c168,s1818).registration10684,261380 -registration(r6178,c219,s1818).registration10685,261412 -registration(r6178,c219,s1818).registration10685,261412 -registration(r6179,c68,s1819).registration10686,261444 -registration(r6179,c68,s1819).registration10686,261444 -registration(r6180,c154,s1819).registration10687,261475 -registration(r6180,c154,s1819).registration10687,261475 -registration(r6181,c164,s1819).registration10688,261507 -registration(r6181,c164,s1819).registration10688,261507 -registration(r6182,c142,s1819).registration10689,261539 -registration(r6182,c142,s1819).registration10689,261539 -registration(r6183,c187,s1820).registration10690,261571 -registration(r6183,c187,s1820).registration10690,261571 -registration(r6184,c36,s1820).registration10691,261603 -registration(r6184,c36,s1820).registration10691,261603 -registration(r6185,c236,s1820).registration10692,261634 -registration(r6185,c236,s1820).registration10692,261634 -registration(r6186,c29,s1820).registration10693,261666 -registration(r6186,c29,s1820).registration10693,261666 -registration(r6187,c41,s1821).registration10694,261697 -registration(r6187,c41,s1821).registration10694,261697 -registration(r6188,c78,s1821).registration10695,261728 -registration(r6188,c78,s1821).registration10695,261728 -registration(r6189,c0,s1821).registration10696,261759 -registration(r6189,c0,s1821).registration10696,261759 -registration(r6190,c104,s1822).registration10697,261789 -registration(r6190,c104,s1822).registration10697,261789 -registration(r6191,c24,s1822).registration10698,261821 -registration(r6191,c24,s1822).registration10698,261821 -registration(r6192,c188,s1822).registration10699,261852 -registration(r6192,c188,s1822).registration10699,261852 -registration(r6193,c137,s1822).registration10700,261884 -registration(r6193,c137,s1822).registration10700,261884 -registration(r6194,c49,s1822).registration10701,261916 -registration(r6194,c49,s1822).registration10701,261916 -registration(r6195,c120,s1823).registration10702,261947 -registration(r6195,c120,s1823).registration10702,261947 -registration(r6196,c167,s1823).registration10703,261979 -registration(r6196,c167,s1823).registration10703,261979 -registration(r6197,c209,s1823).registration10704,262011 -registration(r6197,c209,s1823).registration10704,262011 -registration(r6198,c23,s1823).registration10705,262043 -registration(r6198,c23,s1823).registration10705,262043 -registration(r6199,c250,s1824).registration10706,262074 -registration(r6199,c250,s1824).registration10706,262074 -registration(r6200,c91,s1824).registration10707,262106 -registration(r6200,c91,s1824).registration10707,262106 -registration(r6201,c142,s1824).registration10708,262137 -registration(r6201,c142,s1824).registration10708,262137 -registration(r6202,c29,s1825).registration10709,262169 -registration(r6202,c29,s1825).registration10709,262169 -registration(r6203,c242,s1825).registration10710,262200 -registration(r6203,c242,s1825).registration10710,262200 -registration(r6204,c30,s1825).registration10711,262232 -registration(r6204,c30,s1825).registration10711,262232 -registration(r6205,c120,s1826).registration10712,262263 -registration(r6205,c120,s1826).registration10712,262263 -registration(r6206,c89,s1826).registration10713,262295 -registration(r6206,c89,s1826).registration10713,262295 -registration(r6207,c251,s1826).registration10714,262326 -registration(r6207,c251,s1826).registration10714,262326 -registration(r6208,c252,s1827).registration10715,262358 -registration(r6208,c252,s1827).registration10715,262358 -registration(r6209,c88,s1827).registration10716,262390 -registration(r6209,c88,s1827).registration10716,262390 -registration(r6210,c249,s1827).registration10717,262421 -registration(r6210,c249,s1827).registration10717,262421 -registration(r6211,c182,s1828).registration10718,262453 -registration(r6211,c182,s1828).registration10718,262453 -registration(r6212,c122,s1828).registration10719,262485 -registration(r6212,c122,s1828).registration10719,262485 -registration(r6213,c249,s1828).registration10720,262517 -registration(r6213,c249,s1828).registration10720,262517 -registration(r6214,c113,s1829).registration10721,262549 -registration(r6214,c113,s1829).registration10721,262549 -registration(r6215,c142,s1829).registration10722,262581 -registration(r6215,c142,s1829).registration10722,262581 -registration(r6216,c125,s1829).registration10723,262613 -registration(r6216,c125,s1829).registration10723,262613 -registration(r6217,c113,s1830).registration10724,262645 -registration(r6217,c113,s1830).registration10724,262645 -registration(r6218,c141,s1830).registration10725,262677 -registration(r6218,c141,s1830).registration10725,262677 -registration(r6219,c1,s1830).registration10726,262709 -registration(r6219,c1,s1830).registration10726,262709 -registration(r6220,c44,s1830).registration10727,262739 -registration(r6220,c44,s1830).registration10727,262739 -registration(r6221,c29,s1831).registration10728,262770 -registration(r6221,c29,s1831).registration10728,262770 -registration(r6222,c30,s1831).registration10729,262801 -registration(r6222,c30,s1831).registration10729,262801 -registration(r6223,c130,s1831).registration10730,262832 -registration(r6223,c130,s1831).registration10730,262832 -registration(r6224,c249,s1832).registration10731,262864 -registration(r6224,c249,s1832).registration10731,262864 -registration(r6225,c185,s1832).registration10732,262896 -registration(r6225,c185,s1832).registration10732,262896 -registration(r6226,c247,s1832).registration10733,262928 -registration(r6226,c247,s1832).registration10733,262928 -registration(r6227,c244,s1833).registration10734,262960 -registration(r6227,c244,s1833).registration10734,262960 -registration(r6228,c243,s1833).registration10735,262992 -registration(r6228,c243,s1833).registration10735,262992 -registration(r6229,c91,s1833).registration10736,263024 -registration(r6229,c91,s1833).registration10736,263024 -registration(r6230,c18,s1834).registration10737,263055 -registration(r6230,c18,s1834).registration10737,263055 -registration(r6231,c211,s1834).registration10738,263086 -registration(r6231,c211,s1834).registration10738,263086 -registration(r6232,c95,s1834).registration10739,263118 -registration(r6232,c95,s1834).registration10739,263118 -registration(r6233,c209,s1835).registration10740,263149 -registration(r6233,c209,s1835).registration10740,263149 -registration(r6234,c135,s1835).registration10741,263181 -registration(r6234,c135,s1835).registration10741,263181 -registration(r6235,c253,s1835).registration10742,263213 -registration(r6235,c253,s1835).registration10742,263213 -registration(r6236,c109,s1835).registration10743,263245 -registration(r6236,c109,s1835).registration10743,263245 -registration(r6237,c239,s1836).registration10744,263277 -registration(r6237,c239,s1836).registration10744,263277 -registration(r6238,c46,s1836).registration10745,263309 -registration(r6238,c46,s1836).registration10745,263309 -registration(r6239,c111,s1836).registration10746,263340 -registration(r6239,c111,s1836).registration10746,263340 -registration(r6240,c146,s1836).registration10747,263372 -registration(r6240,c146,s1836).registration10747,263372 -registration(r6241,c57,s1837).registration10748,263404 -registration(r6241,c57,s1837).registration10748,263404 -registration(r6242,c19,s1837).registration10749,263435 -registration(r6242,c19,s1837).registration10749,263435 -registration(r6243,c237,s1837).registration10750,263466 -registration(r6243,c237,s1837).registration10750,263466 -registration(r6244,c167,s1837).registration10751,263498 -registration(r6244,c167,s1837).registration10751,263498 -registration(r6245,c46,s1838).registration10752,263530 -registration(r6245,c46,s1838).registration10752,263530 -registration(r6246,c169,s1838).registration10753,263561 -registration(r6246,c169,s1838).registration10753,263561 -registration(r6247,c9,s1838).registration10754,263593 -registration(r6247,c9,s1838).registration10754,263593 -registration(r6248,c157,s1838).registration10755,263623 -registration(r6248,c157,s1838).registration10755,263623 -registration(r6249,c123,s1839).registration10756,263655 -registration(r6249,c123,s1839).registration10756,263655 -registration(r6250,c2,s1839).registration10757,263687 -registration(r6250,c2,s1839).registration10757,263687 -registration(r6251,c120,s1839).registration10758,263717 -registration(r6251,c120,s1839).registration10758,263717 -registration(r6252,c113,s1840).registration10759,263749 -registration(r6252,c113,s1840).registration10759,263749 -registration(r6253,c206,s1840).registration10760,263781 -registration(r6253,c206,s1840).registration10760,263781 -registration(r6254,c51,s1840).registration10761,263813 -registration(r6254,c51,s1840).registration10761,263813 -registration(r6255,c150,s1841).registration10762,263844 -registration(r6255,c150,s1841).registration10762,263844 -registration(r6256,c38,s1841).registration10763,263876 -registration(r6256,c38,s1841).registration10763,263876 -registration(r6257,c59,s1841).registration10764,263907 -registration(r6257,c59,s1841).registration10764,263907 -registration(r6258,c170,s1842).registration10765,263938 -registration(r6258,c170,s1842).registration10765,263938 -registration(r6259,c161,s1842).registration10766,263970 -registration(r6259,c161,s1842).registration10766,263970 -registration(r6260,c231,s1842).registration10767,264002 -registration(r6260,c231,s1842).registration10767,264002 -registration(r6261,c250,s1843).registration10768,264034 -registration(r6261,c250,s1843).registration10768,264034 -registration(r6262,c36,s1843).registration10769,264066 -registration(r6262,c36,s1843).registration10769,264066 -registration(r6263,c16,s1843).registration10770,264097 -registration(r6263,c16,s1843).registration10770,264097 -registration(r6264,c203,s1843).registration10771,264128 -registration(r6264,c203,s1843).registration10771,264128 -registration(r6265,c177,s1844).registration10772,264160 -registration(r6265,c177,s1844).registration10772,264160 -registration(r6266,c214,s1844).registration10773,264192 -registration(r6266,c214,s1844).registration10773,264192 -registration(r6267,c96,s1844).registration10774,264224 -registration(r6267,c96,s1844).registration10774,264224 -registration(r6268,c220,s1845).registration10775,264255 -registration(r6268,c220,s1845).registration10775,264255 -registration(r6269,c81,s1845).registration10776,264287 -registration(r6269,c81,s1845).registration10776,264287 -registration(r6270,c179,s1845).registration10777,264318 -registration(r6270,c179,s1845).registration10777,264318 -registration(r6271,c180,s1845).registration10778,264350 -registration(r6271,c180,s1845).registration10778,264350 -registration(r6272,c249,s1845).registration10779,264382 -registration(r6272,c249,s1845).registration10779,264382 -registration(r6273,c231,s1846).registration10780,264414 -registration(r6273,c231,s1846).registration10780,264414 -registration(r6274,c31,s1846).registration10781,264446 -registration(r6274,c31,s1846).registration10781,264446 -registration(r6275,c197,s1846).registration10782,264477 -registration(r6275,c197,s1846).registration10782,264477 -registration(r6276,c0,s1847).registration10783,264509 -registration(r6276,c0,s1847).registration10783,264509 -registration(r6277,c5,s1847).registration10784,264539 -registration(r6277,c5,s1847).registration10784,264539 -registration(r6278,c155,s1847).registration10785,264569 -registration(r6278,c155,s1847).registration10785,264569 -registration(r6279,c130,s1848).registration10786,264601 -registration(r6279,c130,s1848).registration10786,264601 -registration(r6280,c226,s1848).registration10787,264633 -registration(r6280,c226,s1848).registration10787,264633 -registration(r6281,c129,s1848).registration10788,264665 -registration(r6281,c129,s1848).registration10788,264665 -registration(r6282,c147,s1848).registration10789,264697 -registration(r6282,c147,s1848).registration10789,264697 -registration(r6283,c133,s1849).registration10790,264729 -registration(r6283,c133,s1849).registration10790,264729 -registration(r6284,c212,s1849).registration10791,264761 -registration(r6284,c212,s1849).registration10791,264761 -registration(r6285,c209,s1849).registration10792,264793 -registration(r6285,c209,s1849).registration10792,264793 -registration(r6286,c51,s1850).registration10793,264825 -registration(r6286,c51,s1850).registration10793,264825 -registration(r6287,c134,s1850).registration10794,264856 -registration(r6287,c134,s1850).registration10794,264856 -registration(r6288,c229,s1850).registration10795,264888 -registration(r6288,c229,s1850).registration10795,264888 -registration(r6289,c215,s1850).registration10796,264920 -registration(r6289,c215,s1850).registration10796,264920 -registration(r6290,c59,s1851).registration10797,264952 -registration(r6290,c59,s1851).registration10797,264952 -registration(r6291,c141,s1851).registration10798,264983 -registration(r6291,c141,s1851).registration10798,264983 -registration(r6292,c192,s1851).registration10799,265015 -registration(r6292,c192,s1851).registration10799,265015 -registration(r6293,c223,s1852).registration10800,265047 -registration(r6293,c223,s1852).registration10800,265047 -registration(r6294,c251,s1852).registration10801,265079 -registration(r6294,c251,s1852).registration10801,265079 -registration(r6295,c241,s1852).registration10802,265111 -registration(r6295,c241,s1852).registration10802,265111 -registration(r6296,c252,s1852).registration10803,265143 -registration(r6296,c252,s1852).registration10803,265143 -registration(r6297,c192,s1853).registration10804,265175 -registration(r6297,c192,s1853).registration10804,265175 -registration(r6298,c166,s1853).registration10805,265207 -registration(r6298,c166,s1853).registration10805,265207 -registration(r6299,c157,s1853).registration10806,265239 -registration(r6299,c157,s1853).registration10806,265239 -registration(r6300,c32,s1854).registration10807,265271 -registration(r6300,c32,s1854).registration10807,265271 -registration(r6301,c192,s1854).registration10808,265302 -registration(r6301,c192,s1854).registration10808,265302 -registration(r6302,c145,s1854).registration10809,265334 -registration(r6302,c145,s1854).registration10809,265334 -registration(r6303,c101,s1855).registration10810,265366 -registration(r6303,c101,s1855).registration10810,265366 -registration(r6304,c134,s1855).registration10811,265398 -registration(r6304,c134,s1855).registration10811,265398 -registration(r6305,c124,s1855).registration10812,265430 -registration(r6305,c124,s1855).registration10812,265430 -registration(r6306,c186,s1855).registration10813,265462 -registration(r6306,c186,s1855).registration10813,265462 -registration(r6307,c245,s1855).registration10814,265494 -registration(r6307,c245,s1855).registration10814,265494 -registration(r6308,c202,s1856).registration10815,265526 -registration(r6308,c202,s1856).registration10815,265526 -registration(r6309,c219,s1856).registration10816,265558 -registration(r6309,c219,s1856).registration10816,265558 -registration(r6310,c142,s1856).registration10817,265590 -registration(r6310,c142,s1856).registration10817,265590 -registration(r6311,c103,s1856).registration10818,265622 -registration(r6311,c103,s1856).registration10818,265622 -registration(r6312,c60,s1857).registration10819,265654 -registration(r6312,c60,s1857).registration10819,265654 -registration(r6313,c220,s1857).registration10820,265685 -registration(r6313,c220,s1857).registration10820,265685 -registration(r6314,c47,s1857).registration10821,265717 -registration(r6314,c47,s1857).registration10821,265717 -registration(r6315,c84,s1858).registration10822,265748 -registration(r6315,c84,s1858).registration10822,265748 -registration(r6316,c51,s1858).registration10823,265779 -registration(r6316,c51,s1858).registration10823,265779 -registration(r6317,c199,s1858).registration10824,265810 -registration(r6317,c199,s1858).registration10824,265810 -registration(r6318,c219,s1858).registration10825,265842 -registration(r6318,c219,s1858).registration10825,265842 -registration(r6319,c88,s1859).registration10826,265874 -registration(r6319,c88,s1859).registration10826,265874 -registration(r6320,c102,s1859).registration10827,265905 -registration(r6320,c102,s1859).registration10827,265905 -registration(r6321,c135,s1859).registration10828,265937 -registration(r6321,c135,s1859).registration10828,265937 -registration(r6322,c247,s1859).registration10829,265969 -registration(r6322,c247,s1859).registration10829,265969 -registration(r6323,c93,s1860).registration10830,266001 -registration(r6323,c93,s1860).registration10830,266001 -registration(r6324,c94,s1860).registration10831,266032 -registration(r6324,c94,s1860).registration10831,266032 -registration(r6325,c192,s1860).registration10832,266063 -registration(r6325,c192,s1860).registration10832,266063 -registration(r6326,c121,s1861).registration10833,266095 -registration(r6326,c121,s1861).registration10833,266095 -registration(r6327,c221,s1861).registration10834,266127 -registration(r6327,c221,s1861).registration10834,266127 -registration(r6328,c98,s1861).registration10835,266159 -registration(r6328,c98,s1861).registration10835,266159 -registration(r6329,c242,s1862).registration10836,266190 -registration(r6329,c242,s1862).registration10836,266190 -registration(r6330,c74,s1862).registration10837,266222 -registration(r6330,c74,s1862).registration10837,266222 -registration(r6331,c33,s1862).registration10838,266253 -registration(r6331,c33,s1862).registration10838,266253 -registration(r6332,c254,s1863).registration10839,266284 -registration(r6332,c254,s1863).registration10839,266284 -registration(r6333,c113,s1863).registration10840,266316 -registration(r6333,c113,s1863).registration10840,266316 -registration(r6334,c189,s1863).registration10841,266348 -registration(r6334,c189,s1863).registration10841,266348 -registration(r6335,c241,s1864).registration10842,266380 -registration(r6335,c241,s1864).registration10842,266380 -registration(r6336,c148,s1864).registration10843,266412 -registration(r6336,c148,s1864).registration10843,266412 -registration(r6337,c219,s1864).registration10844,266444 -registration(r6337,c219,s1864).registration10844,266444 -registration(r6338,c52,s1865).registration10845,266476 -registration(r6338,c52,s1865).registration10845,266476 -registration(r6339,c50,s1865).registration10846,266507 -registration(r6339,c50,s1865).registration10846,266507 -registration(r6340,c130,s1865).registration10847,266538 -registration(r6340,c130,s1865).registration10847,266538 -registration(r6341,c187,s1865).registration10848,266570 -registration(r6341,c187,s1865).registration10848,266570 -registration(r6342,c170,s1866).registration10849,266602 -registration(r6342,c170,s1866).registration10849,266602 -registration(r6343,c135,s1866).registration10850,266634 -registration(r6343,c135,s1866).registration10850,266634 -registration(r6344,c121,s1866).registration10851,266666 -registration(r6344,c121,s1866).registration10851,266666 -registration(r6345,c243,s1867).registration10852,266698 -registration(r6345,c243,s1867).registration10852,266698 -registration(r6346,c98,s1867).registration10853,266730 -registration(r6346,c98,s1867).registration10853,266730 -registration(r6347,c87,s1867).registration10854,266761 -registration(r6347,c87,s1867).registration10854,266761 -registration(r6348,c73,s1867).registration10855,266792 -registration(r6348,c73,s1867).registration10855,266792 -registration(r6349,c130,s1868).registration10856,266823 -registration(r6349,c130,s1868).registration10856,266823 -registration(r6350,c61,s1868).registration10857,266855 -registration(r6350,c61,s1868).registration10857,266855 -registration(r6351,c141,s1868).registration10858,266886 -registration(r6351,c141,s1868).registration10858,266886 -registration(r6352,c59,s1868).registration10859,266918 -registration(r6352,c59,s1868).registration10859,266918 -registration(r6353,c199,s1869).registration10860,266949 -registration(r6353,c199,s1869).registration10860,266949 -registration(r6354,c9,s1869).registration10861,266981 -registration(r6354,c9,s1869).registration10861,266981 -registration(r6355,c196,s1869).registration10862,267011 -registration(r6355,c196,s1869).registration10862,267011 -registration(r6356,c161,s1870).registration10863,267043 -registration(r6356,c161,s1870).registration10863,267043 -registration(r6357,c133,s1870).registration10864,267075 -registration(r6357,c133,s1870).registration10864,267075 -registration(r6358,c154,s1870).registration10865,267107 -registration(r6358,c154,s1870).registration10865,267107 -registration(r6359,c27,s1871).registration10866,267139 -registration(r6359,c27,s1871).registration10866,267139 -registration(r6360,c35,s1871).registration10867,267170 -registration(r6360,c35,s1871).registration10867,267170 -registration(r6361,c227,s1871).registration10868,267201 -registration(r6361,c227,s1871).registration10868,267201 -registration(r6362,c107,s1872).registration10869,267233 -registration(r6362,c107,s1872).registration10869,267233 -registration(r6363,c80,s1872).registration10870,267265 -registration(r6363,c80,s1872).registration10870,267265 -registration(r6364,c82,s1872).registration10871,267296 -registration(r6364,c82,s1872).registration10871,267296 -registration(r6365,c181,s1873).registration10872,267327 -registration(r6365,c181,s1873).registration10872,267327 -registration(r6366,c184,s1873).registration10873,267359 -registration(r6366,c184,s1873).registration10873,267359 -registration(r6367,c123,s1873).registration10874,267391 -registration(r6367,c123,s1873).registration10874,267391 -registration(r6368,c254,s1873).registration10875,267423 -registration(r6368,c254,s1873).registration10875,267423 -registration(r6369,c15,s1874).registration10876,267455 -registration(r6369,c15,s1874).registration10876,267455 -registration(r6370,c143,s1874).registration10877,267486 -registration(r6370,c143,s1874).registration10877,267486 -registration(r6371,c7,s1874).registration10878,267518 -registration(r6371,c7,s1874).registration10878,267518 -registration(r6372,c206,s1875).registration10879,267548 -registration(r6372,c206,s1875).registration10879,267548 -registration(r6373,c84,s1875).registration10880,267580 -registration(r6373,c84,s1875).registration10880,267580 -registration(r6374,c82,s1875).registration10881,267611 -registration(r6374,c82,s1875).registration10881,267611 -registration(r6375,c244,s1876).registration10882,267642 -registration(r6375,c244,s1876).registration10882,267642 -registration(r6376,c14,s1876).registration10883,267674 -registration(r6376,c14,s1876).registration10883,267674 -registration(r6377,c142,s1876).registration10884,267705 -registration(r6377,c142,s1876).registration10884,267705 -registration(r6378,c170,s1877).registration10885,267737 -registration(r6378,c170,s1877).registration10885,267737 -registration(r6379,c236,s1877).registration10886,267769 -registration(r6379,c236,s1877).registration10886,267769 -registration(r6380,c169,s1877).registration10887,267801 -registration(r6380,c169,s1877).registration10887,267801 -registration(r6381,c22,s1878).registration10888,267833 -registration(r6381,c22,s1878).registration10888,267833 -registration(r6382,c209,s1878).registration10889,267864 -registration(r6382,c209,s1878).registration10889,267864 -registration(r6383,c12,s1878).registration10890,267896 -registration(r6383,c12,s1878).registration10890,267896 -registration(r6384,c193,s1878).registration10891,267927 -registration(r6384,c193,s1878).registration10891,267927 -registration(r6385,c46,s1879).registration10892,267959 -registration(r6385,c46,s1879).registration10892,267959 -registration(r6386,c145,s1879).registration10893,267990 -registration(r6386,c145,s1879).registration10893,267990 -registration(r6387,c148,s1879).registration10894,268022 -registration(r6387,c148,s1879).registration10894,268022 -registration(r6388,c143,s1879).registration10895,268054 -registration(r6388,c143,s1879).registration10895,268054 -registration(r6389,c191,s1880).registration10896,268086 -registration(r6389,c191,s1880).registration10896,268086 -registration(r6390,c151,s1880).registration10897,268118 -registration(r6390,c151,s1880).registration10897,268118 -registration(r6391,c237,s1880).registration10898,268150 -registration(r6391,c237,s1880).registration10898,268150 -registration(r6392,c66,s1881).registration10899,268182 -registration(r6392,c66,s1881).registration10899,268182 -registration(r6393,c160,s1881).registration10900,268213 -registration(r6393,c160,s1881).registration10900,268213 -registration(r6394,c238,s1881).registration10901,268245 -registration(r6394,c238,s1881).registration10901,268245 -registration(r6395,c252,s1882).registration10902,268277 -registration(r6395,c252,s1882).registration10902,268277 -registration(r6396,c196,s1882).registration10903,268309 -registration(r6396,c196,s1882).registration10903,268309 -registration(r6397,c93,s1882).registration10904,268341 -registration(r6397,c93,s1882).registration10904,268341 -registration(r6398,c74,s1883).registration10905,268372 -registration(r6398,c74,s1883).registration10905,268372 -registration(r6399,c111,s1883).registration10906,268403 -registration(r6399,c111,s1883).registration10906,268403 -registration(r6400,c240,s1883).registration10907,268435 -registration(r6400,c240,s1883).registration10907,268435 -registration(r6401,c133,s1883).registration10908,268467 -registration(r6401,c133,s1883).registration10908,268467 -registration(r6402,c17,s1884).registration10909,268499 -registration(r6402,c17,s1884).registration10909,268499 -registration(r6403,c251,s1884).registration10910,268530 -registration(r6403,c251,s1884).registration10910,268530 -registration(r6404,c213,s1884).registration10911,268562 -registration(r6404,c213,s1884).registration10911,268562 -registration(r6405,c103,s1884).registration10912,268594 -registration(r6405,c103,s1884).registration10912,268594 -registration(r6406,c102,s1885).registration10913,268626 -registration(r6406,c102,s1885).registration10913,268626 -registration(r6407,c89,s1885).registration10914,268658 -registration(r6407,c89,s1885).registration10914,268658 -registration(r6408,c248,s1885).registration10915,268689 -registration(r6408,c248,s1885).registration10915,268689 -registration(r6409,c25,s1885).registration10916,268721 -registration(r6409,c25,s1885).registration10916,268721 -registration(r6410,c246,s1886).registration10917,268752 -registration(r6410,c246,s1886).registration10917,268752 -registration(r6411,c102,s1886).registration10918,268784 -registration(r6411,c102,s1886).registration10918,268784 -registration(r6412,c244,s1886).registration10919,268816 -registration(r6412,c244,s1886).registration10919,268816 -registration(r6413,c226,s1886).registration10920,268848 -registration(r6413,c226,s1886).registration10920,268848 -registration(r6414,c112,s1887).registration10921,268880 -registration(r6414,c112,s1887).registration10921,268880 -registration(r6415,c154,s1887).registration10922,268912 -registration(r6415,c154,s1887).registration10922,268912 -registration(r6416,c224,s1887).registration10923,268944 -registration(r6416,c224,s1887).registration10923,268944 -registration(r6417,c163,s1888).registration10924,268976 -registration(r6417,c163,s1888).registration10924,268976 -registration(r6418,c166,s1888).registration10925,269008 -registration(r6418,c166,s1888).registration10925,269008 -registration(r6419,c66,s1888).registration10926,269040 -registration(r6419,c66,s1888).registration10926,269040 -registration(r6420,c149,s1888).registration10927,269071 -registration(r6420,c149,s1888).registration10927,269071 -registration(r6421,c151,s1889).registration10928,269103 -registration(r6421,c151,s1889).registration10928,269103 -registration(r6422,c87,s1889).registration10929,269135 -registration(r6422,c87,s1889).registration10929,269135 -registration(r6423,c88,s1889).registration10930,269166 -registration(r6423,c88,s1889).registration10930,269166 -registration(r6424,c43,s1889).registration10931,269197 -registration(r6424,c43,s1889).registration10931,269197 -registration(r6425,c187,s1890).registration10932,269228 -registration(r6425,c187,s1890).registration10932,269228 -registration(r6426,c149,s1890).registration10933,269260 -registration(r6426,c149,s1890).registration10933,269260 -registration(r6427,c145,s1890).registration10934,269292 -registration(r6427,c145,s1890).registration10934,269292 -registration(r6428,c140,s1890).registration10935,269324 -registration(r6428,c140,s1890).registration10935,269324 -registration(r6429,c46,s1891).registration10936,269356 -registration(r6429,c46,s1891).registration10936,269356 -registration(r6430,c29,s1891).registration10937,269387 -registration(r6430,c29,s1891).registration10937,269387 -registration(r6431,c147,s1891).registration10938,269418 -registration(r6431,c147,s1891).registration10938,269418 -registration(r6432,c204,s1891).registration10939,269450 -registration(r6432,c204,s1891).registration10939,269450 -registration(r6433,c155,s1892).registration10940,269482 -registration(r6433,c155,s1892).registration10940,269482 -registration(r6434,c247,s1892).registration10941,269514 -registration(r6434,c247,s1892).registration10941,269514 -registration(r6435,c59,s1892).registration10942,269546 -registration(r6435,c59,s1892).registration10942,269546 -registration(r6436,c113,s1893).registration10943,269577 -registration(r6436,c113,s1893).registration10943,269577 -registration(r6437,c45,s1893).registration10944,269609 -registration(r6437,c45,s1893).registration10944,269609 -registration(r6438,c124,s1893).registration10945,269640 -registration(r6438,c124,s1893).registration10945,269640 -registration(r6439,c111,s1893).registration10946,269672 -registration(r6439,c111,s1893).registration10946,269672 -registration(r6440,c173,s1894).registration10947,269704 -registration(r6440,c173,s1894).registration10947,269704 -registration(r6441,c183,s1894).registration10948,269736 -registration(r6441,c183,s1894).registration10948,269736 -registration(r6442,c36,s1894).registration10949,269768 -registration(r6442,c36,s1894).registration10949,269768 -registration(r6443,c16,s1894).registration10950,269799 -registration(r6443,c16,s1894).registration10950,269799 -registration(r6444,c50,s1895).registration10951,269830 -registration(r6444,c50,s1895).registration10951,269830 -registration(r6445,c60,s1895).registration10952,269861 -registration(r6445,c60,s1895).registration10952,269861 -registration(r6446,c115,s1895).registration10953,269892 -registration(r6446,c115,s1895).registration10953,269892 -registration(r6447,c136,s1896).registration10954,269924 -registration(r6447,c136,s1896).registration10954,269924 -registration(r6448,c85,s1896).registration10955,269956 -registration(r6448,c85,s1896).registration10955,269956 -registration(r6449,c107,s1896).registration10956,269987 -registration(r6449,c107,s1896).registration10956,269987 -registration(r6450,c253,s1897).registration10957,270019 -registration(r6450,c253,s1897).registration10957,270019 -registration(r6451,c76,s1897).registration10958,270051 -registration(r6451,c76,s1897).registration10958,270051 -registration(r6452,c134,s1897).registration10959,270082 -registration(r6452,c134,s1897).registration10959,270082 -registration(r6453,c125,s1898).registration10960,270114 -registration(r6453,c125,s1898).registration10960,270114 -registration(r6454,c4,s1898).registration10961,270146 -registration(r6454,c4,s1898).registration10961,270146 -registration(r6455,c30,s1898).registration10962,270176 -registration(r6455,c30,s1898).registration10962,270176 -registration(r6456,c75,s1899).registration10963,270207 -registration(r6456,c75,s1899).registration10963,270207 -registration(r6457,c208,s1899).registration10964,270238 -registration(r6457,c208,s1899).registration10964,270238 -registration(r6458,c141,s1899).registration10965,270270 -registration(r6458,c141,s1899).registration10965,270270 -registration(r6459,c59,s1900).registration10966,270302 -registration(r6459,c59,s1900).registration10966,270302 -registration(r6460,c115,s1900).registration10967,270333 -registration(r6460,c115,s1900).registration10967,270333 -registration(r6461,c131,s1900).registration10968,270365 -registration(r6461,c131,s1900).registration10968,270365 -registration(r6462,c57,s1901).registration10969,270397 -registration(r6462,c57,s1901).registration10969,270397 -registration(r6463,c115,s1901).registration10970,270428 -registration(r6463,c115,s1901).registration10970,270428 -registration(r6464,c192,s1901).registration10971,270460 -registration(r6464,c192,s1901).registration10971,270460 -registration(r6465,c142,s1902).registration10972,270492 -registration(r6465,c142,s1902).registration10972,270492 -registration(r6466,c53,s1902).registration10973,270524 -registration(r6466,c53,s1902).registration10973,270524 -registration(r6467,c146,s1902).registration10974,270555 -registration(r6467,c146,s1902).registration10974,270555 -registration(r6468,c5,s1903).registration10975,270587 -registration(r6468,c5,s1903).registration10975,270587 -registration(r6469,c247,s1903).registration10976,270617 -registration(r6469,c247,s1903).registration10976,270617 -registration(r6470,c57,s1903).registration10977,270649 -registration(r6470,c57,s1903).registration10977,270649 -registration(r6471,c33,s1904).registration10978,270680 -registration(r6471,c33,s1904).registration10978,270680 -registration(r6472,c10,s1904).registration10979,270711 -registration(r6472,c10,s1904).registration10979,270711 -registration(r6473,c197,s1904).registration10980,270742 -registration(r6473,c197,s1904).registration10980,270742 -registration(r6474,c59,s1905).registration10981,270774 -registration(r6474,c59,s1905).registration10981,270774 -registration(r6475,c139,s1905).registration10982,270805 -registration(r6475,c139,s1905).registration10982,270805 -registration(r6476,c47,s1905).registration10983,270837 -registration(r6476,c47,s1905).registration10983,270837 -registration(r6477,c141,s1906).registration10984,270868 -registration(r6477,c141,s1906).registration10984,270868 -registration(r6478,c4,s1906).registration10985,270900 -registration(r6478,c4,s1906).registration10985,270900 -registration(r6479,c186,s1906).registration10986,270930 -registration(r6479,c186,s1906).registration10986,270930 -registration(r6480,c69,s1906).registration10987,270962 -registration(r6480,c69,s1906).registration10987,270962 -registration(r6481,c74,s1907).registration10988,270993 -registration(r6481,c74,s1907).registration10988,270993 -registration(r6482,c184,s1907).registration10989,271024 -registration(r6482,c184,s1907).registration10989,271024 -registration(r6483,c253,s1907).registration10990,271056 -registration(r6483,c253,s1907).registration10990,271056 -registration(r6484,c140,s1908).registration10991,271088 -registration(r6484,c140,s1908).registration10991,271088 -registration(r6485,c44,s1908).registration10992,271120 -registration(r6485,c44,s1908).registration10992,271120 -registration(r6486,c133,s1908).registration10993,271151 -registration(r6486,c133,s1908).registration10993,271151 -registration(r6487,c139,s1908).registration10994,271183 -registration(r6487,c139,s1908).registration10994,271183 -registration(r6488,c124,s1909).registration10995,271215 -registration(r6488,c124,s1909).registration10995,271215 -registration(r6489,c82,s1909).registration10996,271247 -registration(r6489,c82,s1909).registration10996,271247 -registration(r6490,c23,s1909).registration10997,271278 -registration(r6490,c23,s1909).registration10997,271278 -registration(r6491,c33,s1910).registration10998,271309 -registration(r6491,c33,s1910).registration10998,271309 -registration(r6492,c1,s1910).registration10999,271340 -registration(r6492,c1,s1910).registration10999,271340 -registration(r6493,c179,s1910).registration11000,271370 -registration(r6493,c179,s1910).registration11000,271370 -registration(r6494,c62,s1911).registration11001,271402 -registration(r6494,c62,s1911).registration11001,271402 -registration(r6495,c177,s1911).registration11002,271433 -registration(r6495,c177,s1911).registration11002,271433 -registration(r6496,c6,s1911).registration11003,271465 -registration(r6496,c6,s1911).registration11003,271465 -registration(r6497,c11,s1912).registration11004,271495 -registration(r6497,c11,s1912).registration11004,271495 -registration(r6498,c64,s1912).registration11005,271526 -registration(r6498,c64,s1912).registration11005,271526 -registration(r6499,c80,s1912).registration11006,271557 -registration(r6499,c80,s1912).registration11006,271557 -registration(r6500,c153,s1913).registration11007,271588 -registration(r6500,c153,s1913).registration11007,271588 -registration(r6501,c8,s1913).registration11008,271620 -registration(r6501,c8,s1913).registration11008,271620 -registration(r6502,c122,s1913).registration11009,271650 -registration(r6502,c122,s1913).registration11009,271650 -registration(r6503,c6,s1914).registration11010,271682 -registration(r6503,c6,s1914).registration11010,271682 -registration(r6504,c189,s1914).registration11011,271712 -registration(r6504,c189,s1914).registration11011,271712 -registration(r6505,c130,s1914).registration11012,271744 -registration(r6505,c130,s1914).registration11012,271744 -registration(r6506,c13,s1915).registration11013,271776 -registration(r6506,c13,s1915).registration11013,271776 -registration(r6507,c9,s1915).registration11014,271807 -registration(r6507,c9,s1915).registration11014,271807 -registration(r6508,c42,s1915).registration11015,271837 -registration(r6508,c42,s1915).registration11015,271837 -registration(r6509,c72,s1915).registration11016,271868 -registration(r6509,c72,s1915).registration11016,271868 -registration(r6510,c71,s1916).registration11017,271899 -registration(r6510,c71,s1916).registration11017,271899 -registration(r6511,c72,s1916).registration11018,271930 -registration(r6511,c72,s1916).registration11018,271930 -registration(r6512,c81,s1916).registration11019,271961 -registration(r6512,c81,s1916).registration11019,271961 -registration(r6513,c142,s1917).registration11020,271992 -registration(r6513,c142,s1917).registration11020,271992 -registration(r6514,c121,s1917).registration11021,272024 -registration(r6514,c121,s1917).registration11021,272024 -registration(r6515,c139,s1917).registration11022,272056 -registration(r6515,c139,s1917).registration11022,272056 -registration(r6516,c185,s1917).registration11023,272088 -registration(r6516,c185,s1917).registration11023,272088 -registration(r6517,c83,s1918).registration11024,272120 -registration(r6517,c83,s1918).registration11024,272120 -registration(r6518,c7,s1918).registration11025,272151 -registration(r6518,c7,s1918).registration11025,272151 -registration(r6519,c231,s1918).registration11026,272181 -registration(r6519,c231,s1918).registration11026,272181 -registration(r6520,c240,s1919).registration11027,272213 -registration(r6520,c240,s1919).registration11027,272213 -registration(r6521,c74,s1919).registration11028,272245 -registration(r6521,c74,s1919).registration11028,272245 -registration(r6522,c49,s1919).registration11029,272276 -registration(r6522,c49,s1919).registration11029,272276 -registration(r6523,c239,s1920).registration11030,272307 -registration(r6523,c239,s1920).registration11030,272307 -registration(r6524,c111,s1920).registration11031,272339 -registration(r6524,c111,s1920).registration11031,272339 -registration(r6525,c221,s1920).registration11032,272371 -registration(r6525,c221,s1920).registration11032,272371 -registration(r6526,c232,s1921).registration11033,272403 -registration(r6526,c232,s1921).registration11033,272403 -registration(r6527,c239,s1921).registration11034,272435 -registration(r6527,c239,s1921).registration11034,272435 -registration(r6528,c161,s1921).registration11035,272467 -registration(r6528,c161,s1921).registration11035,272467 -registration(r6529,c138,s1921).registration11036,272499 -registration(r6529,c138,s1921).registration11036,272499 -registration(r6530,c118,s1922).registration11037,272531 -registration(r6530,c118,s1922).registration11037,272531 -registration(r6531,c220,s1922).registration11038,272563 -registration(r6531,c220,s1922).registration11038,272563 -registration(r6532,c178,s1922).registration11039,272595 -registration(r6532,c178,s1922).registration11039,272595 -registration(r6533,c44,s1923).registration11040,272627 -registration(r6533,c44,s1923).registration11040,272627 -registration(r6534,c136,s1923).registration11041,272658 -registration(r6534,c136,s1923).registration11041,272658 -registration(r6535,c126,s1923).registration11042,272690 -registration(r6535,c126,s1923).registration11042,272690 -registration(r6536,c209,s1923).registration11043,272722 -registration(r6536,c209,s1923).registration11043,272722 -registration(r6537,c236,s1924).registration11044,272754 -registration(r6537,c236,s1924).registration11044,272754 -registration(r6538,c6,s1924).registration11045,272786 -registration(r6538,c6,s1924).registration11045,272786 -registration(r6539,c161,s1924).registration11046,272816 -registration(r6539,c161,s1924).registration11046,272816 -registration(r6540,c236,s1925).registration11047,272848 -registration(r6540,c236,s1925).registration11047,272848 -registration(r6541,c191,s1925).registration11048,272880 -registration(r6541,c191,s1925).registration11048,272880 -registration(r6542,c227,s1925).registration11049,272912 -registration(r6542,c227,s1925).registration11049,272912 -registration(r6543,c84,s1926).registration11050,272944 -registration(r6543,c84,s1926).registration11050,272944 -registration(r6544,c28,s1926).registration11051,272975 -registration(r6544,c28,s1926).registration11051,272975 -registration(r6545,c119,s1926).registration11052,273006 -registration(r6545,c119,s1926).registration11052,273006 -registration(r6546,c102,s1926).registration11053,273038 -registration(r6546,c102,s1926).registration11053,273038 -registration(r6547,c116,s1927).registration11054,273070 -registration(r6547,c116,s1927).registration11054,273070 -registration(r6548,c50,s1927).registration11055,273102 -registration(r6548,c50,s1927).registration11055,273102 -registration(r6549,c242,s1927).registration11056,273133 -registration(r6549,c242,s1927).registration11056,273133 -registration(r6550,c206,s1928).registration11057,273165 -registration(r6550,c206,s1928).registration11057,273165 -registration(r6551,c18,s1928).registration11058,273197 -registration(r6551,c18,s1928).registration11058,273197 -registration(r6552,c165,s1928).registration11059,273228 -registration(r6552,c165,s1928).registration11059,273228 -registration(r6553,c46,s1929).registration11060,273260 -registration(r6553,c46,s1929).registration11060,273260 -registration(r6554,c183,s1929).registration11061,273291 -registration(r6554,c183,s1929).registration11061,273291 -registration(r6555,c36,s1929).registration11062,273323 -registration(r6555,c36,s1929).registration11062,273323 -registration(r6556,c17,s1930).registration11063,273354 -registration(r6556,c17,s1930).registration11063,273354 -registration(r6557,c85,s1930).registration11064,273385 -registration(r6557,c85,s1930).registration11064,273385 -registration(r6558,c42,s1930).registration11065,273416 -registration(r6558,c42,s1930).registration11065,273416 -registration(r6559,c22,s1931).registration11066,273447 -registration(r6559,c22,s1931).registration11066,273447 -registration(r6560,c96,s1931).registration11067,273478 -registration(r6560,c96,s1931).registration11067,273478 -registration(r6561,c49,s1931).registration11068,273509 -registration(r6561,c49,s1931).registration11068,273509 -registration(r6562,c134,s1931).registration11069,273540 -registration(r6562,c134,s1931).registration11069,273540 -registration(r6563,c112,s1932).registration11070,273572 -registration(r6563,c112,s1932).registration11070,273572 -registration(r6564,c135,s1932).registration11071,273604 -registration(r6564,c135,s1932).registration11071,273604 -registration(r6565,c85,s1932).registration11072,273636 -registration(r6565,c85,s1932).registration11072,273636 -registration(r6566,c203,s1933).registration11073,273667 -registration(r6566,c203,s1933).registration11073,273667 -registration(r6567,c167,s1933).registration11074,273699 -registration(r6567,c167,s1933).registration11074,273699 -registration(r6568,c222,s1933).registration11075,273731 -registration(r6568,c222,s1933).registration11075,273731 -registration(r6569,c81,s1933).registration11076,273763 -registration(r6569,c81,s1933).registration11076,273763 -registration(r6570,c61,s1934).registration11077,273794 -registration(r6570,c61,s1934).registration11077,273794 -registration(r6571,c248,s1934).registration11078,273825 -registration(r6571,c248,s1934).registration11078,273825 -registration(r6572,c228,s1934).registration11079,273857 -registration(r6572,c228,s1934).registration11079,273857 -registration(r6573,c155,s1934).registration11080,273889 -registration(r6573,c155,s1934).registration11080,273889 -registration(r6574,c161,s1935).registration11081,273921 -registration(r6574,c161,s1935).registration11081,273921 -registration(r6575,c115,s1935).registration11082,273953 -registration(r6575,c115,s1935).registration11082,273953 -registration(r6576,c36,s1935).registration11083,273985 -registration(r6576,c36,s1935).registration11083,273985 -registration(r6577,c78,s1936).registration11084,274016 -registration(r6577,c78,s1936).registration11084,274016 -registration(r6578,c83,s1936).registration11085,274047 -registration(r6578,c83,s1936).registration11085,274047 -registration(r6579,c19,s1936).registration11086,274078 -registration(r6579,c19,s1936).registration11086,274078 -registration(r6580,c68,s1937).registration11087,274109 -registration(r6580,c68,s1937).registration11087,274109 -registration(r6581,c185,s1937).registration11088,274140 -registration(r6581,c185,s1937).registration11088,274140 -registration(r6582,c195,s1937).registration11089,274172 -registration(r6582,c195,s1937).registration11089,274172 -registration(r6583,c74,s1937).registration11090,274204 -registration(r6583,c74,s1937).registration11090,274204 -registration(r6584,c31,s1938).registration11091,274235 -registration(r6584,c31,s1938).registration11091,274235 -registration(r6585,c159,s1938).registration11092,274266 -registration(r6585,c159,s1938).registration11092,274266 -registration(r6586,c55,s1938).registration11093,274298 -registration(r6586,c55,s1938).registration11093,274298 -registration(r6587,c20,s1939).registration11094,274329 -registration(r6587,c20,s1939).registration11094,274329 -registration(r6588,c23,s1939).registration11095,274360 -registration(r6588,c23,s1939).registration11095,274360 -registration(r6589,c154,s1939).registration11096,274391 -registration(r6589,c154,s1939).registration11096,274391 -registration(r6590,c145,s1940).registration11097,274423 -registration(r6590,c145,s1940).registration11097,274423 -registration(r6591,c166,s1940).registration11098,274455 -registration(r6591,c166,s1940).registration11098,274455 -registration(r6592,c209,s1940).registration11099,274487 -registration(r6592,c209,s1940).registration11099,274487 -registration(r6593,c115,s1941).registration11100,274519 -registration(r6593,c115,s1941).registration11100,274519 -registration(r6594,c43,s1941).registration11101,274551 -registration(r6594,c43,s1941).registration11101,274551 -registration(r6595,c104,s1941).registration11102,274582 -registration(r6595,c104,s1941).registration11102,274582 -registration(r6596,c243,s1941).registration11103,274614 -registration(r6596,c243,s1941).registration11103,274614 -registration(r6597,c121,s1942).registration11104,274646 -registration(r6597,c121,s1942).registration11104,274646 -registration(r6598,c7,s1942).registration11105,274678 -registration(r6598,c7,s1942).registration11105,274678 -registration(r6599,c28,s1942).registration11106,274708 -registration(r6599,c28,s1942).registration11106,274708 -registration(r6600,c77,s1942).registration11107,274739 -registration(r6600,c77,s1942).registration11107,274739 -registration(r6601,c240,s1943).registration11108,274770 -registration(r6601,c240,s1943).registration11108,274770 -registration(r6602,c21,s1943).registration11109,274802 -registration(r6602,c21,s1943).registration11109,274802 -registration(r6603,c254,s1943).registration11110,274833 -registration(r6603,c254,s1943).registration11110,274833 -registration(r6604,c157,s1944).registration11111,274865 -registration(r6604,c157,s1944).registration11111,274865 -registration(r6605,c112,s1944).registration11112,274897 -registration(r6605,c112,s1944).registration11112,274897 -registration(r6606,c32,s1944).registration11113,274929 -registration(r6606,c32,s1944).registration11113,274929 -registration(r6607,c55,s1945).registration11114,274960 -registration(r6607,c55,s1945).registration11114,274960 -registration(r6608,c126,s1945).registration11115,274991 -registration(r6608,c126,s1945).registration11115,274991 -registration(r6609,c71,s1945).registration11116,275023 -registration(r6609,c71,s1945).registration11116,275023 -registration(r6610,c238,s1945).registration11117,275054 -registration(r6610,c238,s1945).registration11117,275054 -registration(r6611,c92,s1946).registration11118,275086 -registration(r6611,c92,s1946).registration11118,275086 -registration(r6612,c199,s1946).registration11119,275117 -registration(r6612,c199,s1946).registration11119,275117 -registration(r6613,c48,s1946).registration11120,275149 -registration(r6613,c48,s1946).registration11120,275149 -registration(r6614,c152,s1947).registration11121,275180 -registration(r6614,c152,s1947).registration11121,275180 -registration(r6615,c246,s1947).registration11122,275212 -registration(r6615,c246,s1947).registration11122,275212 -registration(r6616,c229,s1947).registration11123,275244 -registration(r6616,c229,s1947).registration11123,275244 -registration(r6617,c238,s1948).registration11124,275276 -registration(r6617,c238,s1948).registration11124,275276 -registration(r6618,c106,s1948).registration11125,275308 -registration(r6618,c106,s1948).registration11125,275308 -registration(r6619,c157,s1948).registration11126,275340 -registration(r6619,c157,s1948).registration11126,275340 -registration(r6620,c142,s1949).registration11127,275372 -registration(r6620,c142,s1949).registration11127,275372 -registration(r6621,c80,s1949).registration11128,275404 -registration(r6621,c80,s1949).registration11128,275404 -registration(r6622,c62,s1949).registration11129,275435 -registration(r6622,c62,s1949).registration11129,275435 -registration(r6623,c220,s1950).registration11130,275466 -registration(r6623,c220,s1950).registration11130,275466 -registration(r6624,c58,s1950).registration11131,275498 -registration(r6624,c58,s1950).registration11131,275498 -registration(r6625,c166,s1950).registration11132,275529 -registration(r6625,c166,s1950).registration11132,275529 -registration(r6626,c222,s1951).registration11133,275561 -registration(r6626,c222,s1951).registration11133,275561 -registration(r6627,c62,s1951).registration11134,275593 -registration(r6627,c62,s1951).registration11134,275593 -registration(r6628,c8,s1951).registration11135,275624 -registration(r6628,c8,s1951).registration11135,275624 -registration(r6629,c246,s1952).registration11136,275654 -registration(r6629,c246,s1952).registration11136,275654 -registration(r6630,c197,s1952).registration11137,275686 -registration(r6630,c197,s1952).registration11137,275686 -registration(r6631,c21,s1952).registration11138,275718 -registration(r6631,c21,s1952).registration11138,275718 -registration(r6632,c149,s1952).registration11139,275749 -registration(r6632,c149,s1952).registration11139,275749 -registration(r6633,c191,s1952).registration11140,275781 -registration(r6633,c191,s1952).registration11140,275781 -registration(r6634,c140,s1953).registration11141,275813 -registration(r6634,c140,s1953).registration11141,275813 -registration(r6635,c239,s1953).registration11142,275845 -registration(r6635,c239,s1953).registration11142,275845 -registration(r6636,c15,s1953).registration11143,275877 -registration(r6636,c15,s1953).registration11143,275877 -registration(r6637,c123,s1954).registration11144,275908 -registration(r6637,c123,s1954).registration11144,275908 -registration(r6638,c155,s1954).registration11145,275940 -registration(r6638,c155,s1954).registration11145,275940 -registration(r6639,c24,s1954).registration11146,275972 -registration(r6639,c24,s1954).registration11146,275972 -registration(r6640,c104,s1954).registration11147,276003 -registration(r6640,c104,s1954).registration11147,276003 -registration(r6641,c249,s1955).registration11148,276035 -registration(r6641,c249,s1955).registration11148,276035 -registration(r6642,c242,s1955).registration11149,276067 -registration(r6642,c242,s1955).registration11149,276067 -registration(r6643,c237,s1955).registration11150,276099 -registration(r6643,c237,s1955).registration11150,276099 -registration(r6644,c148,s1955).registration11151,276131 -registration(r6644,c148,s1955).registration11151,276131 -registration(r6645,c151,s1956).registration11152,276163 -registration(r6645,c151,s1956).registration11152,276163 -registration(r6646,c239,s1956).registration11153,276195 -registration(r6646,c239,s1956).registration11153,276195 -registration(r6647,c115,s1956).registration11154,276227 -registration(r6647,c115,s1956).registration11154,276227 -registration(r6648,c222,s1957).registration11155,276259 -registration(r6648,c222,s1957).registration11155,276259 -registration(r6649,c36,s1957).registration11156,276291 -registration(r6649,c36,s1957).registration11156,276291 -registration(r6650,c239,s1957).registration11157,276322 -registration(r6650,c239,s1957).registration11157,276322 -registration(r6651,c22,s1958).registration11158,276354 -registration(r6651,c22,s1958).registration11158,276354 -registration(r6652,c60,s1958).registration11159,276385 -registration(r6652,c60,s1958).registration11159,276385 -registration(r6653,c69,s1958).registration11160,276416 -registration(r6653,c69,s1958).registration11160,276416 -registration(r6654,c51,s1959).registration11161,276447 -registration(r6654,c51,s1959).registration11161,276447 -registration(r6655,c231,s1959).registration11162,276478 -registration(r6655,c231,s1959).registration11162,276478 -registration(r6656,c197,s1959).registration11163,276510 -registration(r6656,c197,s1959).registration11163,276510 -registration(r6657,c98,s1959).registration11164,276542 -registration(r6657,c98,s1959).registration11164,276542 -registration(r6658,c41,s1960).registration11165,276573 -registration(r6658,c41,s1960).registration11165,276573 -registration(r6659,c29,s1960).registration11166,276604 -registration(r6659,c29,s1960).registration11166,276604 -registration(r6660,c139,s1960).registration11167,276635 -registration(r6660,c139,s1960).registration11167,276635 -registration(r6661,c126,s1960).registration11168,276667 -registration(r6661,c126,s1960).registration11168,276667 -registration(r6662,c130,s1961).registration11169,276699 -registration(r6662,c130,s1961).registration11169,276699 -registration(r6663,c237,s1961).registration11170,276731 -registration(r6663,c237,s1961).registration11170,276731 -registration(r6664,c172,s1961).registration11171,276763 -registration(r6664,c172,s1961).registration11171,276763 -registration(r6665,c132,s1961).registration11172,276795 -registration(r6665,c132,s1961).registration11172,276795 -registration(r6666,c141,s1962).registration11173,276827 -registration(r6666,c141,s1962).registration11173,276827 -registration(r6667,c90,s1962).registration11174,276859 -registration(r6667,c90,s1962).registration11174,276859 -registration(r6668,c149,s1962).registration11175,276890 -registration(r6668,c149,s1962).registration11175,276890 -registration(r6669,c132,s1963).registration11176,276922 -registration(r6669,c132,s1963).registration11176,276922 -registration(r6670,c17,s1963).registration11177,276954 -registration(r6670,c17,s1963).registration11177,276954 -registration(r6671,c187,s1963).registration11178,276985 -registration(r6671,c187,s1963).registration11178,276985 -registration(r6672,c255,s1964).registration11179,277017 -registration(r6672,c255,s1964).registration11179,277017 -registration(r6673,c113,s1964).registration11180,277049 -registration(r6673,c113,s1964).registration11180,277049 -registration(r6674,c21,s1964).registration11181,277081 -registration(r6674,c21,s1964).registration11181,277081 -registration(r6675,c88,s1964).registration11182,277112 -registration(r6675,c88,s1964).registration11182,277112 -registration(r6676,c68,s1965).registration11183,277143 -registration(r6676,c68,s1965).registration11183,277143 -registration(r6677,c187,s1965).registration11184,277174 -registration(r6677,c187,s1965).registration11184,277174 -registration(r6678,c59,s1965).registration11185,277206 -registration(r6678,c59,s1965).registration11185,277206 -registration(r6679,c199,s1966).registration11186,277237 -registration(r6679,c199,s1966).registration11186,277237 -registration(r6680,c1,s1966).registration11187,277269 -registration(r6680,c1,s1966).registration11187,277269 -registration(r6681,c240,s1966).registration11188,277299 -registration(r6681,c240,s1966).registration11188,277299 -registration(r6682,c222,s1967).registration11189,277331 -registration(r6682,c222,s1967).registration11189,277331 -registration(r6683,c242,s1967).registration11190,277363 -registration(r6683,c242,s1967).registration11190,277363 -registration(r6684,c155,s1967).registration11191,277395 -registration(r6684,c155,s1967).registration11191,277395 -registration(r6685,c42,s1968).registration11192,277427 -registration(r6685,c42,s1968).registration11192,277427 -registration(r6686,c189,s1968).registration11193,277458 -registration(r6686,c189,s1968).registration11193,277458 -registration(r6687,c35,s1968).registration11194,277490 -registration(r6687,c35,s1968).registration11194,277490 -registration(r6688,c168,s1969).registration11195,277521 -registration(r6688,c168,s1969).registration11195,277521 -registration(r6689,c167,s1969).registration11196,277553 -registration(r6689,c167,s1969).registration11196,277553 -registration(r6690,c249,s1969).registration11197,277585 -registration(r6690,c249,s1969).registration11197,277585 -registration(r6691,c248,s1970).registration11198,277617 -registration(r6691,c248,s1970).registration11198,277617 -registration(r6692,c179,s1970).registration11199,277649 -registration(r6692,c179,s1970).registration11199,277649 -registration(r6693,c11,s1970).registration11200,277681 -registration(r6693,c11,s1970).registration11200,277681 -registration(r6694,c14,s1970).registration11201,277712 -registration(r6694,c14,s1970).registration11201,277712 -registration(r6695,c111,s1971).registration11202,277743 -registration(r6695,c111,s1971).registration11202,277743 -registration(r6696,c201,s1971).registration11203,277775 -registration(r6696,c201,s1971).registration11203,277775 -registration(r6697,c34,s1971).registration11204,277807 -registration(r6697,c34,s1971).registration11204,277807 -registration(r6698,c234,s1972).registration11205,277838 -registration(r6698,c234,s1972).registration11205,277838 -registration(r6699,c222,s1972).registration11206,277870 -registration(r6699,c222,s1972).registration11206,277870 -registration(r6700,c145,s1972).registration11207,277902 -registration(r6700,c145,s1972).registration11207,277902 -registration(r6701,c97,s1972).registration11208,277934 -registration(r6701,c97,s1972).registration11208,277934 -registration(r6702,c34,s1973).registration11209,277965 -registration(r6702,c34,s1973).registration11209,277965 -registration(r6703,c255,s1973).registration11210,277996 -registration(r6703,c255,s1973).registration11210,277996 -registration(r6704,c210,s1973).registration11211,278028 -registration(r6704,c210,s1973).registration11211,278028 -registration(r6705,c144,s1973).registration11212,278060 -registration(r6705,c144,s1973).registration11212,278060 -registration(r6706,c213,s1974).registration11213,278092 -registration(r6706,c213,s1974).registration11213,278092 -registration(r6707,c191,s1974).registration11214,278124 -registration(r6707,c191,s1974).registration11214,278124 -registration(r6708,c206,s1974).registration11215,278156 -registration(r6708,c206,s1974).registration11215,278156 -registration(r6709,c199,s1975).registration11216,278188 -registration(r6709,c199,s1975).registration11216,278188 -registration(r6710,c191,s1975).registration11217,278220 -registration(r6710,c191,s1975).registration11217,278220 -registration(r6711,c93,s1975).registration11218,278252 -registration(r6711,c93,s1975).registration11218,278252 -registration(r6712,c105,s1976).registration11219,278283 -registration(r6712,c105,s1976).registration11219,278283 -registration(r6713,c236,s1976).registration11220,278315 -registration(r6713,c236,s1976).registration11220,278315 -registration(r6714,c130,s1976).registration11221,278347 -registration(r6714,c130,s1976).registration11221,278347 -registration(r6715,c75,s1977).registration11222,278379 -registration(r6715,c75,s1977).registration11222,278379 -registration(r6716,c115,s1977).registration11223,278410 -registration(r6716,c115,s1977).registration11223,278410 -registration(r6717,c57,s1977).registration11224,278442 -registration(r6717,c57,s1977).registration11224,278442 -registration(r6718,c25,s1978).registration11225,278473 -registration(r6718,c25,s1978).registration11225,278473 -registration(r6719,c128,s1978).registration11226,278504 -registration(r6719,c128,s1978).registration11226,278504 -registration(r6720,c142,s1978).registration11227,278536 -registration(r6720,c142,s1978).registration11227,278536 -registration(r6721,c175,s1979).registration11228,278568 -registration(r6721,c175,s1979).registration11228,278568 -registration(r6722,c123,s1979).registration11229,278600 -registration(r6722,c123,s1979).registration11229,278600 -registration(r6723,c195,s1979).registration11230,278632 -registration(r6723,c195,s1979).registration11230,278632 -registration(r6724,c84,s1980).registration11231,278664 -registration(r6724,c84,s1980).registration11231,278664 -registration(r6725,c53,s1980).registration11232,278695 -registration(r6725,c53,s1980).registration11232,278695 -registration(r6726,c103,s1980).registration11233,278726 -registration(r6726,c103,s1980).registration11233,278726 -registration(r6727,c179,s1980).registration11234,278758 -registration(r6727,c179,s1980).registration11234,278758 -registration(r6728,c234,s1981).registration11235,278790 -registration(r6728,c234,s1981).registration11235,278790 -registration(r6729,c114,s1981).registration11236,278822 -registration(r6729,c114,s1981).registration11236,278822 -registration(r6730,c44,s1981).registration11237,278854 -registration(r6730,c44,s1981).registration11237,278854 -registration(r6731,c149,s1982).registration11238,278885 -registration(r6731,c149,s1982).registration11238,278885 -registration(r6732,c152,s1982).registration11239,278917 -registration(r6732,c152,s1982).registration11239,278917 -registration(r6733,c104,s1982).registration11240,278949 -registration(r6733,c104,s1982).registration11240,278949 -registration(r6734,c180,s1983).registration11241,278981 -registration(r6734,c180,s1983).registration11241,278981 -registration(r6735,c87,s1983).registration11242,279013 -registration(r6735,c87,s1983).registration11242,279013 -registration(r6736,c46,s1983).registration11243,279044 -registration(r6736,c46,s1983).registration11243,279044 -registration(r6737,c72,s1984).registration11244,279075 -registration(r6737,c72,s1984).registration11244,279075 -registration(r6738,c33,s1984).registration11245,279106 -registration(r6738,c33,s1984).registration11245,279106 -registration(r6739,c67,s1984).registration11246,279137 -registration(r6739,c67,s1984).registration11246,279137 -registration(r6740,c242,s1984).registration11247,279168 -registration(r6740,c242,s1984).registration11247,279168 -registration(r6741,c65,s1985).registration11248,279200 -registration(r6741,c65,s1985).registration11248,279200 -registration(r6742,c213,s1985).registration11249,279231 -registration(r6742,c213,s1985).registration11249,279231 -registration(r6743,c83,s1985).registration11250,279263 -registration(r6743,c83,s1985).registration11250,279263 -registration(r6744,c136,s1985).registration11251,279294 -registration(r6744,c136,s1985).registration11251,279294 -registration(r6745,c78,s1986).registration11252,279326 -registration(r6745,c78,s1986).registration11252,279326 -registration(r6746,c75,s1986).registration11253,279357 -registration(r6746,c75,s1986).registration11253,279357 -registration(r6747,c58,s1986).registration11254,279388 -registration(r6747,c58,s1986).registration11254,279388 -registration(r6748,c54,s1986).registration11255,279419 -registration(r6748,c54,s1986).registration11255,279419 -registration(r6749,c73,s1987).registration11256,279450 -registration(r6749,c73,s1987).registration11256,279450 -registration(r6750,c226,s1987).registration11257,279481 -registration(r6750,c226,s1987).registration11257,279481 -registration(r6751,c148,s1987).registration11258,279513 -registration(r6751,c148,s1987).registration11258,279513 -registration(r6752,c253,s1988).registration11259,279545 -registration(r6752,c253,s1988).registration11259,279545 -registration(r6753,c195,s1988).registration11260,279577 -registration(r6753,c195,s1988).registration11260,279577 -registration(r6754,c109,s1988).registration11261,279609 -registration(r6754,c109,s1988).registration11261,279609 -registration(r6755,c156,s1988).registration11262,279641 -registration(r6755,c156,s1988).registration11262,279641 -registration(r6756,c84,s1989).registration11263,279673 -registration(r6756,c84,s1989).registration11263,279673 -registration(r6757,c210,s1989).registration11264,279704 -registration(r6757,c210,s1989).registration11264,279704 -registration(r6758,c230,s1989).registration11265,279736 -registration(r6758,c230,s1989).registration11265,279736 -registration(r6759,c170,s1989).registration11266,279768 -registration(r6759,c170,s1989).registration11266,279768 -registration(r6760,c136,s1990).registration11267,279800 -registration(r6760,c136,s1990).registration11267,279800 -registration(r6761,c7,s1990).registration11268,279832 -registration(r6761,c7,s1990).registration11268,279832 -registration(r6762,c237,s1990).registration11269,279862 -registration(r6762,c237,s1990).registration11269,279862 -registration(r6763,c213,s1991).registration11270,279894 -registration(r6763,c213,s1991).registration11270,279894 -registration(r6764,c135,s1991).registration11271,279926 -registration(r6764,c135,s1991).registration11271,279926 -registration(r6765,c226,s1991).registration11272,279958 -registration(r6765,c226,s1991).registration11272,279958 -registration(r6766,c210,s1991).registration11273,279990 -registration(r6766,c210,s1991).registration11273,279990 -registration(r6767,c63,s1991).registration11274,280022 -registration(r6767,c63,s1991).registration11274,280022 -registration(r6768,c10,s1992).registration11275,280053 -registration(r6768,c10,s1992).registration11275,280053 -registration(r6769,c202,s1992).registration11276,280084 -registration(r6769,c202,s1992).registration11276,280084 -registration(r6770,c137,s1992).registration11277,280116 -registration(r6770,c137,s1992).registration11277,280116 -registration(r6771,c104,s1993).registration11278,280148 -registration(r6771,c104,s1993).registration11278,280148 -registration(r6772,c103,s1993).registration11279,280180 -registration(r6772,c103,s1993).registration11279,280180 -registration(r6773,c91,s1993).registration11280,280212 -registration(r6773,c91,s1993).registration11280,280212 -registration(r6774,c215,s1993).registration11281,280243 -registration(r6774,c215,s1993).registration11281,280243 -registration(r6775,c72,s1993).registration11282,280275 -registration(r6775,c72,s1993).registration11282,280275 -registration(r6776,c116,s1994).registration11283,280306 -registration(r6776,c116,s1994).registration11283,280306 -registration(r6777,c99,s1994).registration11284,280338 -registration(r6777,c99,s1994).registration11284,280338 -registration(r6778,c27,s1994).registration11285,280369 -registration(r6778,c27,s1994).registration11285,280369 -registration(r6779,c49,s1995).registration11286,280400 -registration(r6779,c49,s1995).registration11286,280400 -registration(r6780,c5,s1995).registration11287,280431 -registration(r6780,c5,s1995).registration11287,280431 -registration(r6781,c100,s1995).registration11288,280461 -registration(r6781,c100,s1995).registration11288,280461 -registration(r6782,c193,s1996).registration11289,280493 -registration(r6782,c193,s1996).registration11289,280493 -registration(r6783,c146,s1996).registration11290,280525 -registration(r6783,c146,s1996).registration11290,280525 -registration(r6784,c199,s1996).registration11291,280557 -registration(r6784,c199,s1996).registration11291,280557 -registration(r6785,c234,s1997).registration11292,280589 -registration(r6785,c234,s1997).registration11292,280589 -registration(r6786,c28,s1997).registration11293,280621 -registration(r6786,c28,s1997).registration11293,280621 -registration(r6787,c146,s1997).registration11294,280652 -registration(r6787,c146,s1997).registration11294,280652 -registration(r6788,c39,s1997).registration11295,280684 -registration(r6788,c39,s1997).registration11295,280684 -registration(r6789,c181,s1998).registration11296,280715 -registration(r6789,c181,s1998).registration11296,280715 -registration(r6790,c20,s1998).registration11297,280747 -registration(r6790,c20,s1998).registration11297,280747 -registration(r6791,c187,s1998).registration11298,280778 -registration(r6791,c187,s1998).registration11298,280778 -registration(r6792,c124,s1998).registration11299,280810 -registration(r6792,c124,s1998).registration11299,280810 -registration(r6793,c74,s1998).registration11300,280842 -registration(r6793,c74,s1998).registration11300,280842 -registration(r6794,c83,s1999).registration11301,280873 -registration(r6794,c83,s1999).registration11301,280873 -registration(r6795,c37,s1999).registration11302,280904 -registration(r6795,c37,s1999).registration11302,280904 -registration(r6796,c149,s1999).registration11303,280935 -registration(r6796,c149,s1999).registration11303,280935 -registration(r6797,c176,s2000).registration11304,280967 -registration(r6797,c176,s2000).registration11304,280967 -registration(r6798,c33,s2000).registration11305,280999 -registration(r6798,c33,s2000).registration11305,280999 -registration(r6799,c99,s2000).registration11306,281030 -registration(r6799,c99,s2000).registration11306,281030 -registration(r6800,c199,s2000).registration11307,281061 -registration(r6800,c199,s2000).registration11307,281061 -registration(r6801,c26,s2001).registration11308,281093 -registration(r6801,c26,s2001).registration11308,281093 -registration(r6802,c24,s2001).registration11309,281124 -registration(r6802,c24,s2001).registration11309,281124 -registration(r6803,c136,s2001).registration11310,281155 -registration(r6803,c136,s2001).registration11310,281155 -registration(r6804,c208,s2002).registration11311,281187 -registration(r6804,c208,s2002).registration11311,281187 -registration(r6805,c35,s2002).registration11312,281219 -registration(r6805,c35,s2002).registration11312,281219 -registration(r6806,c202,s2002).registration11313,281250 -registration(r6806,c202,s2002).registration11313,281250 -registration(r6807,c246,s2003).registration11314,281282 -registration(r6807,c246,s2003).registration11314,281282 -registration(r6808,c20,s2003).registration11315,281314 -registration(r6808,c20,s2003).registration11315,281314 -registration(r6809,c19,s2003).registration11316,281345 -registration(r6809,c19,s2003).registration11316,281345 -registration(r6810,c206,s2003).registration11317,281376 -registration(r6810,c206,s2003).registration11317,281376 -registration(r6811,c201,s2004).registration11318,281408 -registration(r6811,c201,s2004).registration11318,281408 -registration(r6812,c165,s2004).registration11319,281440 -registration(r6812,c165,s2004).registration11319,281440 -registration(r6813,c230,s2004).registration11320,281472 -registration(r6813,c230,s2004).registration11320,281472 -registration(r6814,c249,s2004).registration11321,281504 -registration(r6814,c249,s2004).registration11321,281504 -registration(r6815,c168,s2004).registration11322,281536 -registration(r6815,c168,s2004).registration11322,281536 -registration(r6816,c193,s2005).registration11323,281568 -registration(r6816,c193,s2005).registration11323,281568 -registration(r6817,c148,s2005).registration11324,281600 -registration(r6817,c148,s2005).registration11324,281600 -registration(r6818,c89,s2005).registration11325,281632 -registration(r6818,c89,s2005).registration11325,281632 -registration(r6819,c60,s2006).registration11326,281663 -registration(r6819,c60,s2006).registration11326,281663 -registration(r6820,c9,s2006).registration11327,281694 -registration(r6820,c9,s2006).registration11327,281694 -registration(r6821,c191,s2006).registration11328,281724 -registration(r6821,c191,s2006).registration11328,281724 -registration(r6822,c72,s2006).registration11329,281756 -registration(r6822,c72,s2006).registration11329,281756 -registration(r6823,c5,s2007).registration11330,281787 -registration(r6823,c5,s2007).registration11330,281787 -registration(r6824,c2,s2007).registration11331,281817 -registration(r6824,c2,s2007).registration11331,281817 -registration(r6825,c24,s2007).registration11332,281847 -registration(r6825,c24,s2007).registration11332,281847 -registration(r6826,c206,s2007).registration11333,281878 -registration(r6826,c206,s2007).registration11333,281878 -registration(r6827,c224,s2007).registration11334,281910 -registration(r6827,c224,s2007).registration11334,281910 -registration(r6828,c196,s2008).registration11335,281942 -registration(r6828,c196,s2008).registration11335,281942 -registration(r6829,c23,s2008).registration11336,281974 -registration(r6829,c23,s2008).registration11336,281974 -registration(r6830,c243,s2008).registration11337,282005 -registration(r6830,c243,s2008).registration11337,282005 -registration(r6831,c194,s2009).registration11338,282037 -registration(r6831,c194,s2009).registration11338,282037 -registration(r6832,c58,s2009).registration11339,282069 -registration(r6832,c58,s2009).registration11339,282069 -registration(r6833,c231,s2009).registration11340,282100 -registration(r6833,c231,s2009).registration11340,282100 -registration(r6834,c225,s2010).registration11341,282132 -registration(r6834,c225,s2010).registration11341,282132 -registration(r6835,c179,s2010).registration11342,282164 -registration(r6835,c179,s2010).registration11342,282164 -registration(r6836,c249,s2010).registration11343,282196 -registration(r6836,c249,s2010).registration11343,282196 -registration(r6837,c83,s2011).registration11344,282228 -registration(r6837,c83,s2011).registration11344,282228 -registration(r6838,c134,s2011).registration11345,282259 -registration(r6838,c134,s2011).registration11345,282259 -registration(r6839,c65,s2011).registration11346,282291 -registration(r6839,c65,s2011).registration11346,282291 -registration(r6840,c1,s2012).registration11347,282322 -registration(r6840,c1,s2012).registration11347,282322 -registration(r6841,c231,s2012).registration11348,282352 -registration(r6841,c231,s2012).registration11348,282352 -registration(r6842,c177,s2012).registration11349,282384 -registration(r6842,c177,s2012).registration11349,282384 -registration(r6843,c181,s2013).registration11350,282416 -registration(r6843,c181,s2013).registration11350,282416 -registration(r6844,c94,s2013).registration11351,282448 -registration(r6844,c94,s2013).registration11351,282448 -registration(r6845,c22,s2013).registration11352,282479 -registration(r6845,c22,s2013).registration11352,282479 -registration(r6846,c247,s2014).registration11353,282510 -registration(r6846,c247,s2014).registration11353,282510 -registration(r6847,c71,s2014).registration11354,282542 -registration(r6847,c71,s2014).registration11354,282542 -registration(r6848,c122,s2014).registration11355,282573 -registration(r6848,c122,s2014).registration11355,282573 -registration(r6849,c188,s2015).registration11356,282605 -registration(r6849,c188,s2015).registration11356,282605 -registration(r6850,c172,s2015).registration11357,282637 -registration(r6850,c172,s2015).registration11357,282637 -registration(r6851,c242,s2015).registration11358,282669 -registration(r6851,c242,s2015).registration11358,282669 -registration(r6852,c66,s2016).registration11359,282701 -registration(r6852,c66,s2016).registration11359,282701 -registration(r6853,c133,s2016).registration11360,282732 -registration(r6853,c133,s2016).registration11360,282732 -registration(r6854,c9,s2016).registration11361,282764 -registration(r6854,c9,s2016).registration11361,282764 -registration(r6855,c83,s2016).registration11362,282794 -registration(r6855,c83,s2016).registration11362,282794 -registration(r6856,c143,s2017).registration11363,282825 -registration(r6856,c143,s2017).registration11363,282825 -registration(r6857,c173,s2017).registration11364,282857 -registration(r6857,c173,s2017).registration11364,282857 -registration(r6858,c148,s2017).registration11365,282889 -registration(r6858,c148,s2017).registration11365,282889 -registration(r6859,c60,s2017).registration11366,282921 -registration(r6859,c60,s2017).registration11366,282921 -registration(r6860,c7,s2018).registration11367,282952 -registration(r6860,c7,s2018).registration11367,282952 -registration(r6861,c239,s2018).registration11368,282982 -registration(r6861,c239,s2018).registration11368,282982 -registration(r6862,c220,s2018).registration11369,283014 -registration(r6862,c220,s2018).registration11369,283014 -registration(r6863,c60,s2019).registration11370,283046 -registration(r6863,c60,s2019).registration11370,283046 -registration(r6864,c11,s2019).registration11371,283077 -registration(r6864,c11,s2019).registration11371,283077 -registration(r6865,c40,s2019).registration11372,283108 -registration(r6865,c40,s2019).registration11372,283108 -registration(r6866,c113,s2019).registration11373,283139 -registration(r6866,c113,s2019).registration11373,283139 -registration(r6867,c26,s2020).registration11374,283171 -registration(r6867,c26,s2020).registration11374,283171 -registration(r6868,c237,s2020).registration11375,283202 -registration(r6868,c237,s2020).registration11375,283202 -registration(r6869,c40,s2020).registration11376,283234 -registration(r6869,c40,s2020).registration11376,283234 -registration(r6870,c26,s2021).registration11377,283265 -registration(r6870,c26,s2021).registration11377,283265 -registration(r6871,c122,s2021).registration11378,283296 -registration(r6871,c122,s2021).registration11378,283296 -registration(r6872,c240,s2021).registration11379,283328 -registration(r6872,c240,s2021).registration11379,283328 -registration(r6873,c249,s2022).registration11380,283360 -registration(r6873,c249,s2022).registration11380,283360 -registration(r6874,c151,s2022).registration11381,283392 -registration(r6874,c151,s2022).registration11381,283392 -registration(r6875,c37,s2022).registration11382,283424 -registration(r6875,c37,s2022).registration11382,283424 -registration(r6876,c211,s2022).registration11383,283455 -registration(r6876,c211,s2022).registration11383,283455 -registration(r6877,c225,s2023).registration11384,283487 -registration(r6877,c225,s2023).registration11384,283487 -registration(r6878,c69,s2023).registration11385,283519 -registration(r6878,c69,s2023).registration11385,283519 -registration(r6879,c16,s2023).registration11386,283550 -registration(r6879,c16,s2023).registration11386,283550 -registration(r6880,c255,s2024).registration11387,283581 -registration(r6880,c255,s2024).registration11387,283581 -registration(r6881,c84,s2024).registration11388,283613 -registration(r6881,c84,s2024).registration11388,283613 -registration(r6882,c65,s2024).registration11389,283644 -registration(r6882,c65,s2024).registration11389,283644 -registration(r6883,c77,s2025).registration11390,283675 -registration(r6883,c77,s2025).registration11390,283675 -registration(r6884,c204,s2025).registration11391,283706 -registration(r6884,c204,s2025).registration11391,283706 -registration(r6885,c48,s2025).registration11392,283738 -registration(r6885,c48,s2025).registration11392,283738 -registration(r6886,c75,s2026).registration11393,283769 -registration(r6886,c75,s2026).registration11393,283769 -registration(r6887,c61,s2026).registration11394,283800 -registration(r6887,c61,s2026).registration11394,283800 -registration(r6888,c100,s2026).registration11395,283831 -registration(r6888,c100,s2026).registration11395,283831 -registration(r6889,c216,s2026).registration11396,283863 -registration(r6889,c216,s2026).registration11396,283863 -registration(r6890,c155,s2027).registration11397,283895 -registration(r6890,c155,s2027).registration11397,283895 -registration(r6891,c200,s2027).registration11398,283927 -registration(r6891,c200,s2027).registration11398,283927 -registration(r6892,c218,s2027).registration11399,283959 -registration(r6892,c218,s2027).registration11399,283959 -registration(r6893,c114,s2028).registration11400,283991 -registration(r6893,c114,s2028).registration11400,283991 -registration(r6894,c192,s2028).registration11401,284023 -registration(r6894,c192,s2028).registration11401,284023 -registration(r6895,c15,s2028).registration11402,284055 -registration(r6895,c15,s2028).registration11402,284055 -registration(r6896,c240,s2029).registration11403,284086 -registration(r6896,c240,s2029).registration11403,284086 -registration(r6897,c222,s2029).registration11404,284118 -registration(r6897,c222,s2029).registration11404,284118 -registration(r6898,c162,s2029).registration11405,284150 -registration(r6898,c162,s2029).registration11405,284150 -registration(r6899,c163,s2029).registration11406,284182 -registration(r6899,c163,s2029).registration11406,284182 -registration(r6900,c188,s2030).registration11407,284214 -registration(r6900,c188,s2030).registration11407,284214 -registration(r6901,c110,s2030).registration11408,284246 -registration(r6901,c110,s2030).registration11408,284246 -registration(r6902,c71,s2030).registration11409,284278 -registration(r6902,c71,s2030).registration11409,284278 -registration(r6903,c20,s2031).registration11410,284309 -registration(r6903,c20,s2031).registration11410,284309 -registration(r6904,c126,s2031).registration11411,284340 -registration(r6904,c126,s2031).registration11411,284340 -registration(r6905,c11,s2031).registration11412,284372 -registration(r6905,c11,s2031).registration11412,284372 -registration(r6906,c73,s2032).registration11413,284403 -registration(r6906,c73,s2032).registration11413,284403 -registration(r6907,c180,s2032).registration11414,284434 -registration(r6907,c180,s2032).registration11414,284434 -registration(r6908,c235,s2032).registration11415,284466 -registration(r6908,c235,s2032).registration11415,284466 -registration(r6909,c49,s2032).registration11416,284498 -registration(r6909,c49,s2032).registration11416,284498 -registration(r6910,c234,s2033).registration11417,284529 -registration(r6910,c234,s2033).registration11417,284529 -registration(r6911,c13,s2033).registration11418,284561 -registration(r6911,c13,s2033).registration11418,284561 -registration(r6912,c32,s2033).registration11419,284592 -registration(r6912,c32,s2033).registration11419,284592 -registration(r6913,c224,s2034).registration11420,284623 -registration(r6913,c224,s2034).registration11420,284623 -registration(r6914,c187,s2034).registration11421,284655 -registration(r6914,c187,s2034).registration11421,284655 -registration(r6915,c24,s2034).registration11422,284687 -registration(r6915,c24,s2034).registration11422,284687 -registration(r6916,c248,s2035).registration11423,284718 -registration(r6916,c248,s2035).registration11423,284718 -registration(r6917,c23,s2035).registration11424,284750 -registration(r6917,c23,s2035).registration11424,284750 -registration(r6918,c20,s2035).registration11425,284781 -registration(r6918,c20,s2035).registration11425,284781 -registration(r6919,c187,s2035).registration11426,284812 -registration(r6919,c187,s2035).registration11426,284812 -registration(r6920,c148,s2036).registration11427,284844 -registration(r6920,c148,s2036).registration11427,284844 -registration(r6921,c4,s2036).registration11428,284876 -registration(r6921,c4,s2036).registration11428,284876 -registration(r6922,c30,s2036).registration11429,284906 -registration(r6922,c30,s2036).registration11429,284906 -registration(r6923,c157,s2036).registration11430,284937 -registration(r6923,c157,s2036).registration11430,284937 -registration(r6924,c93,s2037).registration11431,284969 -registration(r6924,c93,s2037).registration11431,284969 -registration(r6925,c106,s2037).registration11432,285000 -registration(r6925,c106,s2037).registration11432,285000 -registration(r6926,c101,s2037).registration11433,285032 -registration(r6926,c101,s2037).registration11433,285032 -registration(r6927,c79,s2037).registration11434,285064 -registration(r6927,c79,s2037).registration11434,285064 -registration(r6928,c200,s2038).registration11435,285095 -registration(r6928,c200,s2038).registration11435,285095 -registration(r6929,c80,s2038).registration11436,285127 -registration(r6929,c80,s2038).registration11436,285127 -registration(r6930,c214,s2038).registration11437,285158 -registration(r6930,c214,s2038).registration11437,285158 -registration(r6931,c246,s2039).registration11438,285190 -registration(r6931,c246,s2039).registration11438,285190 -registration(r6932,c94,s2039).registration11439,285222 -registration(r6932,c94,s2039).registration11439,285222 -registration(r6933,c220,s2039).registration11440,285253 -registration(r6933,c220,s2039).registration11440,285253 -registration(r6934,c245,s2039).registration11441,285285 -registration(r6934,c245,s2039).registration11441,285285 -registration(r6935,c74,s2040).registration11442,285317 -registration(r6935,c74,s2040).registration11442,285317 -registration(r6936,c200,s2040).registration11443,285348 -registration(r6936,c200,s2040).registration11443,285348 -registration(r6937,c239,s2040).registration11444,285380 -registration(r6937,c239,s2040).registration11444,285380 -registration(r6938,c21,s2041).registration11445,285412 -registration(r6938,c21,s2041).registration11445,285412 -registration(r6939,c30,s2041).registration11446,285443 -registration(r6939,c30,s2041).registration11446,285443 -registration(r6940,c173,s2041).registration11447,285474 -registration(r6940,c173,s2041).registration11447,285474 -registration(r6941,c203,s2041).registration11448,285506 -registration(r6941,c203,s2041).registration11448,285506 -registration(r6942,c251,s2042).registration11449,285538 -registration(r6942,c251,s2042).registration11449,285538 -registration(r6943,c58,s2042).registration11450,285570 -registration(r6943,c58,s2042).registration11450,285570 -registration(r6944,c103,s2042).registration11451,285601 -registration(r6944,c103,s2042).registration11451,285601 -registration(r6945,c204,s2043).registration11452,285633 -registration(r6945,c204,s2043).registration11452,285633 -registration(r6946,c254,s2043).registration11453,285665 -registration(r6946,c254,s2043).registration11453,285665 -registration(r6947,c193,s2043).registration11454,285697 -registration(r6947,c193,s2043).registration11454,285697 -registration(r6948,c197,s2043).registration11455,285729 -registration(r6948,c197,s2043).registration11455,285729 -registration(r6949,c242,s2043).registration11456,285761 -registration(r6949,c242,s2043).registration11456,285761 -registration(r6950,c120,s2044).registration11457,285793 -registration(r6950,c120,s2044).registration11457,285793 -registration(r6951,c112,s2044).registration11458,285825 -registration(r6951,c112,s2044).registration11458,285825 -registration(r6952,c234,s2044).registration11459,285857 -registration(r6952,c234,s2044).registration11459,285857 -registration(r6953,c193,s2045).registration11460,285889 -registration(r6953,c193,s2045).registration11460,285889 -registration(r6954,c243,s2045).registration11461,285921 -registration(r6954,c243,s2045).registration11461,285921 -registration(r6955,c68,s2045).registration11462,285953 -registration(r6955,c68,s2045).registration11462,285953 -registration(r6956,c186,s2045).registration11463,285984 -registration(r6956,c186,s2045).registration11463,285984 -registration(r6957,c109,s2046).registration11464,286016 -registration(r6957,c109,s2046).registration11464,286016 -registration(r6958,c151,s2046).registration11465,286048 -registration(r6958,c151,s2046).registration11465,286048 -registration(r6959,c73,s2046).registration11466,286080 -registration(r6959,c73,s2046).registration11466,286080 -registration(r6960,c243,s2047).registration11467,286111 -registration(r6960,c243,s2047).registration11467,286111 -registration(r6961,c172,s2047).registration11468,286143 -registration(r6961,c172,s2047).registration11468,286143 -registration(r6962,c15,s2047).registration11469,286175 -registration(r6962,c15,s2047).registration11469,286175 -registration(r6963,c118,s2048).registration11470,286206 -registration(r6963,c118,s2048).registration11470,286206 -registration(r6964,c70,s2048).registration11471,286238 -registration(r6964,c70,s2048).registration11471,286238 -registration(r6965,c142,s2048).registration11472,286269 -registration(r6965,c142,s2048).registration11472,286269 -registration(r6966,c79,s2049).registration11473,286301 -registration(r6966,c79,s2049).registration11473,286301 -registration(r6967,c96,s2049).registration11474,286332 -registration(r6967,c96,s2049).registration11474,286332 -registration(r6968,c11,s2049).registration11475,286363 -registration(r6968,c11,s2049).registration11475,286363 -registration(r6969,c132,s2050).registration11476,286394 -registration(r6969,c132,s2050).registration11476,286394 -registration(r6970,c212,s2050).registration11477,286426 -registration(r6970,c212,s2050).registration11477,286426 -registration(r6971,c61,s2050).registration11478,286458 -registration(r6971,c61,s2050).registration11478,286458 -registration(r6972,c254,s2050).registration11479,286489 -registration(r6972,c254,s2050).registration11479,286489 -registration(r6973,c80,s2051).registration11480,286521 -registration(r6973,c80,s2051).registration11480,286521 -registration(r6974,c103,s2051).registration11481,286552 -registration(r6974,c103,s2051).registration11481,286552 -registration(r6975,c10,s2051).registration11482,286584 -registration(r6975,c10,s2051).registration11482,286584 -registration(r6976,c156,s2051).registration11483,286615 -registration(r6976,c156,s2051).registration11483,286615 -registration(r6977,c162,s2052).registration11484,286647 -registration(r6977,c162,s2052).registration11484,286647 -registration(r6978,c229,s2052).registration11485,286679 -registration(r6978,c229,s2052).registration11485,286679 -registration(r6979,c3,s2052).registration11486,286711 -registration(r6979,c3,s2052).registration11486,286711 -registration(r6980,c176,s2053).registration11487,286741 -registration(r6980,c176,s2053).registration11487,286741 -registration(r6981,c246,s2053).registration11488,286773 -registration(r6981,c246,s2053).registration11488,286773 -registration(r6982,c199,s2053).registration11489,286805 -registration(r6982,c199,s2053).registration11489,286805 -registration(r6983,c14,s2054).registration11490,286837 -registration(r6983,c14,s2054).registration11490,286837 -registration(r6984,c39,s2054).registration11491,286868 -registration(r6984,c39,s2054).registration11491,286868 -registration(r6985,c176,s2054).registration11492,286899 -registration(r6985,c176,s2054).registration11492,286899 -registration(r6986,c15,s2055).registration11493,286931 -registration(r6986,c15,s2055).registration11493,286931 -registration(r6987,c96,s2055).registration11494,286962 -registration(r6987,c96,s2055).registration11494,286962 -registration(r6988,c217,s2055).registration11495,286993 -registration(r6988,c217,s2055).registration11495,286993 -registration(r6989,c172,s2056).registration11496,287025 -registration(r6989,c172,s2056).registration11496,287025 -registration(r6990,c160,s2056).registration11497,287057 -registration(r6990,c160,s2056).registration11497,287057 -registration(r6991,c65,s2056).registration11498,287089 -registration(r6991,c65,s2056).registration11498,287089 -registration(r6992,c145,s2057).registration11499,287120 -registration(r6992,c145,s2057).registration11499,287120 -registration(r6993,c54,s2057).registration11500,287152 -registration(r6993,c54,s2057).registration11500,287152 -registration(r6994,c170,s2057).registration11501,287183 -registration(r6994,c170,s2057).registration11501,287183 -registration(r6995,c33,s2058).registration11502,287215 -registration(r6995,c33,s2058).registration11502,287215 -registration(r6996,c65,s2058).registration11503,287246 -registration(r6996,c65,s2058).registration11503,287246 -registration(r6997,c183,s2058).registration11504,287277 -registration(r6997,c183,s2058).registration11504,287277 -registration(r6998,c40,s2058).registration11505,287309 -registration(r6998,c40,s2058).registration11505,287309 -registration(r6999,c214,s2059).registration11506,287340 -registration(r6999,c214,s2059).registration11506,287340 -registration(r7000,c29,s2059).registration11507,287372 -registration(r7000,c29,s2059).registration11507,287372 -registration(r7001,c88,s2059).registration11508,287403 -registration(r7001,c88,s2059).registration11508,287403 -registration(r7002,c102,s2060).registration11509,287434 -registration(r7002,c102,s2060).registration11509,287434 -registration(r7003,c150,s2060).registration11510,287466 -registration(r7003,c150,s2060).registration11510,287466 -registration(r7004,c58,s2060).registration11511,287498 -registration(r7004,c58,s2060).registration11511,287498 -registration(r7005,c74,s2060).registration11512,287529 -registration(r7005,c74,s2060).registration11512,287529 -registration(r7006,c25,s2061).registration11513,287560 -registration(r7006,c25,s2061).registration11513,287560 -registration(r7007,c229,s2061).registration11514,287591 -registration(r7007,c229,s2061).registration11514,287591 -registration(r7008,c172,s2061).registration11515,287623 -registration(r7008,c172,s2061).registration11515,287623 -registration(r7009,c78,s2062).registration11516,287655 -registration(r7009,c78,s2062).registration11516,287655 -registration(r7010,c64,s2062).registration11517,287686 -registration(r7010,c64,s2062).registration11517,287686 -registration(r7011,c98,s2062).registration11518,287717 -registration(r7011,c98,s2062).registration11518,287717 -registration(r7012,c151,s2063).registration11519,287748 -registration(r7012,c151,s2063).registration11519,287748 -registration(r7013,c152,s2063).registration11520,287780 -registration(r7013,c152,s2063).registration11520,287780 -registration(r7014,c110,s2063).registration11521,287812 -registration(r7014,c110,s2063).registration11521,287812 -registration(r7015,c175,s2064).registration11522,287844 -registration(r7015,c175,s2064).registration11522,287844 -registration(r7016,c32,s2064).registration11523,287876 -registration(r7016,c32,s2064).registration11523,287876 -registration(r7017,c223,s2064).registration11524,287907 -registration(r7017,c223,s2064).registration11524,287907 -registration(r7018,c180,s2065).registration11525,287939 -registration(r7018,c180,s2065).registration11525,287939 -registration(r7019,c245,s2065).registration11526,287971 -registration(r7019,c245,s2065).registration11526,287971 -registration(r7020,c8,s2065).registration11527,288003 -registration(r7020,c8,s2065).registration11527,288003 -registration(r7021,c127,s2065).registration11528,288033 -registration(r7021,c127,s2065).registration11528,288033 -registration(r7022,c186,s2066).registration11529,288065 -registration(r7022,c186,s2066).registration11529,288065 -registration(r7023,c187,s2066).registration11530,288097 -registration(r7023,c187,s2066).registration11530,288097 -registration(r7024,c40,s2066).registration11531,288129 -registration(r7024,c40,s2066).registration11531,288129 -registration(r7025,c66,s2066).registration11532,288160 -registration(r7025,c66,s2066).registration11532,288160 -registration(r7026,c171,s2067).registration11533,288191 -registration(r7026,c171,s2067).registration11533,288191 -registration(r7027,c178,s2067).registration11534,288223 -registration(r7027,c178,s2067).registration11534,288223 -registration(r7028,c64,s2067).registration11535,288255 -registration(r7028,c64,s2067).registration11535,288255 -registration(r7029,c129,s2067).registration11536,288286 -registration(r7029,c129,s2067).registration11536,288286 -registration(r7030,c158,s2068).registration11537,288318 -registration(r7030,c158,s2068).registration11537,288318 -registration(r7031,c238,s2068).registration11538,288350 -registration(r7031,c238,s2068).registration11538,288350 -registration(r7032,c83,s2068).registration11539,288382 -registration(r7032,c83,s2068).registration11539,288382 -registration(r7033,c195,s2069).registration11540,288413 -registration(r7033,c195,s2069).registration11540,288413 -registration(r7034,c158,s2069).registration11541,288445 -registration(r7034,c158,s2069).registration11541,288445 -registration(r7035,c62,s2069).registration11542,288477 -registration(r7035,c62,s2069).registration11542,288477 -registration(r7036,c29,s2070).registration11543,288508 -registration(r7036,c29,s2070).registration11543,288508 -registration(r7037,c75,s2070).registration11544,288539 -registration(r7037,c75,s2070).registration11544,288539 -registration(r7038,c113,s2070).registration11545,288570 -registration(r7038,c113,s2070).registration11545,288570 -registration(r7039,c121,s2071).registration11546,288602 -registration(r7039,c121,s2071).registration11546,288602 -registration(r7040,c247,s2071).registration11547,288634 -registration(r7040,c247,s2071).registration11547,288634 -registration(r7041,c191,s2071).registration11548,288666 -registration(r7041,c191,s2071).registration11548,288666 -registration(r7042,c123,s2072).registration11549,288698 -registration(r7042,c123,s2072).registration11549,288698 -registration(r7043,c16,s2072).registration11550,288730 -registration(r7043,c16,s2072).registration11550,288730 -registration(r7044,c119,s2072).registration11551,288761 -registration(r7044,c119,s2072).registration11551,288761 -registration(r7045,c34,s2073).registration11552,288793 -registration(r7045,c34,s2073).registration11552,288793 -registration(r7046,c51,s2073).registration11553,288824 -registration(r7046,c51,s2073).registration11553,288824 -registration(r7047,c149,s2073).registration11554,288855 -registration(r7047,c149,s2073).registration11554,288855 -registration(r7048,c22,s2073).registration11555,288887 -registration(r7048,c22,s2073).registration11555,288887 -registration(r7049,c254,s2074).registration11556,288918 -registration(r7049,c254,s2074).registration11556,288918 -registration(r7050,c32,s2074).registration11557,288950 -registration(r7050,c32,s2074).registration11557,288950 -registration(r7051,c106,s2074).registration11558,288981 -registration(r7051,c106,s2074).registration11558,288981 -registration(r7052,c45,s2075).registration11559,289013 -registration(r7052,c45,s2075).registration11559,289013 -registration(r7053,c211,s2075).registration11560,289044 -registration(r7053,c211,s2075).registration11560,289044 -registration(r7054,c229,s2075).registration11561,289076 -registration(r7054,c229,s2075).registration11561,289076 -registration(r7055,c3,s2076).registration11562,289108 -registration(r7055,c3,s2076).registration11562,289108 -registration(r7056,c235,s2076).registration11563,289138 -registration(r7056,c235,s2076).registration11563,289138 -registration(r7057,c5,s2076).registration11564,289170 -registration(r7057,c5,s2076).registration11564,289170 -registration(r7058,c126,s2076).registration11565,289200 -registration(r7058,c126,s2076).registration11565,289200 -registration(r7059,c205,s2077).registration11566,289232 -registration(r7059,c205,s2077).registration11566,289232 -registration(r7060,c235,s2077).registration11567,289264 -registration(r7060,c235,s2077).registration11567,289264 -registration(r7061,c100,s2077).registration11568,289296 -registration(r7061,c100,s2077).registration11568,289296 -registration(r7062,c118,s2078).registration11569,289328 -registration(r7062,c118,s2078).registration11569,289328 -registration(r7063,c246,s2078).registration11570,289360 -registration(r7063,c246,s2078).registration11570,289360 -registration(r7064,c229,s2078).registration11571,289392 -registration(r7064,c229,s2078).registration11571,289392 -registration(r7065,c24,s2078).registration11572,289424 -registration(r7065,c24,s2078).registration11572,289424 -registration(r7066,c95,s2079).registration11573,289455 -registration(r7066,c95,s2079).registration11573,289455 -registration(r7067,c122,s2079).registration11574,289486 -registration(r7067,c122,s2079).registration11574,289486 -registration(r7068,c75,s2079).registration11575,289518 -registration(r7068,c75,s2079).registration11575,289518 -registration(r7069,c108,s2080).registration11576,289549 -registration(r7069,c108,s2080).registration11576,289549 -registration(r7070,c224,s2080).registration11577,289581 -registration(r7070,c224,s2080).registration11577,289581 -registration(r7071,c172,s2080).registration11578,289613 -registration(r7071,c172,s2080).registration11578,289613 -registration(r7072,c13,s2080).registration11579,289645 -registration(r7072,c13,s2080).registration11579,289645 -registration(r7073,c248,s2081).registration11580,289676 -registration(r7073,c248,s2081).registration11580,289676 -registration(r7074,c173,s2081).registration11581,289708 -registration(r7074,c173,s2081).registration11581,289708 -registration(r7075,c19,s2081).registration11582,289740 -registration(r7075,c19,s2081).registration11582,289740 -registration(r7076,c24,s2082).registration11583,289771 -registration(r7076,c24,s2082).registration11583,289771 -registration(r7077,c211,s2082).registration11584,289802 -registration(r7077,c211,s2082).registration11584,289802 -registration(r7078,c195,s2082).registration11585,289834 -registration(r7078,c195,s2082).registration11585,289834 -registration(r7079,c175,s2083).registration11586,289866 -registration(r7079,c175,s2083).registration11586,289866 -registration(r7080,c251,s2083).registration11587,289898 -registration(r7080,c251,s2083).registration11587,289898 -registration(r7081,c31,s2083).registration11588,289930 -registration(r7081,c31,s2083).registration11588,289930 -registration(r7082,c114,s2083).registration11589,289961 -registration(r7082,c114,s2083).registration11589,289961 -registration(r7083,c253,s2083).registration11590,289993 -registration(r7083,c253,s2083).registration11590,289993 -registration(r7084,c60,s2084).registration11591,290025 -registration(r7084,c60,s2084).registration11591,290025 -registration(r7085,c48,s2084).registration11592,290056 -registration(r7085,c48,s2084).registration11592,290056 -registration(r7086,c22,s2084).registration11593,290087 -registration(r7086,c22,s2084).registration11593,290087 -registration(r7087,c98,s2085).registration11594,290118 -registration(r7087,c98,s2085).registration11594,290118 -registration(r7088,c17,s2085).registration11595,290149 -registration(r7088,c17,s2085).registration11595,290149 -registration(r7089,c35,s2085).registration11596,290180 -registration(r7089,c35,s2085).registration11596,290180 -registration(r7090,c207,s2086).registration11597,290211 -registration(r7090,c207,s2086).registration11597,290211 -registration(r7091,c226,s2086).registration11598,290243 -registration(r7091,c226,s2086).registration11598,290243 -registration(r7092,c255,s2086).registration11599,290275 -registration(r7092,c255,s2086).registration11599,290275 -registration(r7093,c173,s2087).registration11600,290307 -registration(r7093,c173,s2087).registration11600,290307 -registration(r7094,c99,s2087).registration11601,290339 -registration(r7094,c99,s2087).registration11601,290339 -registration(r7095,c216,s2087).registration11602,290370 -registration(r7095,c216,s2087).registration11602,290370 -registration(r7096,c170,s2088).registration11603,290402 -registration(r7096,c170,s2088).registration11603,290402 -registration(r7097,c10,s2088).registration11604,290434 -registration(r7097,c10,s2088).registration11604,290434 -registration(r7098,c19,s2088).registration11605,290465 -registration(r7098,c19,s2088).registration11605,290465 -registration(r7099,c14,s2089).registration11606,290496 -registration(r7099,c14,s2089).registration11606,290496 -registration(r7100,c108,s2089).registration11607,290527 -registration(r7100,c108,s2089).registration11607,290527 -registration(r7101,c208,s2089).registration11608,290559 -registration(r7101,c208,s2089).registration11608,290559 -registration(r7102,c205,s2090).registration11609,290591 -registration(r7102,c205,s2090).registration11609,290591 -registration(r7103,c188,s2090).registration11610,290623 -registration(r7103,c188,s2090).registration11610,290623 -registration(r7104,c177,s2090).registration11611,290655 -registration(r7104,c177,s2090).registration11611,290655 -registration(r7105,c93,s2091).registration11612,290687 -registration(r7105,c93,s2091).registration11612,290687 -registration(r7106,c70,s2091).registration11613,290718 -registration(r7106,c70,s2091).registration11613,290718 -registration(r7107,c108,s2091).registration11614,290749 -registration(r7107,c108,s2091).registration11614,290749 -registration(r7108,c92,s2091).registration11615,290781 -registration(r7108,c92,s2091).registration11615,290781 -registration(r7109,c79,s2092).registration11616,290812 -registration(r7109,c79,s2092).registration11616,290812 -registration(r7110,c248,s2092).registration11617,290843 -registration(r7110,c248,s2092).registration11617,290843 -registration(r7111,c92,s2092).registration11618,290875 -registration(r7111,c92,s2092).registration11618,290875 -registration(r7112,c9,s2093).registration11619,290906 -registration(r7112,c9,s2093).registration11619,290906 -registration(r7113,c3,s2093).registration11620,290936 -registration(r7113,c3,s2093).registration11620,290936 -registration(r7114,c173,s2093).registration11621,290966 -registration(r7114,c173,s2093).registration11621,290966 -registration(r7115,c87,s2094).registration11622,290998 -registration(r7115,c87,s2094).registration11622,290998 -registration(r7116,c90,s2094).registration11623,291029 -registration(r7116,c90,s2094).registration11623,291029 -registration(r7117,c146,s2094).registration11624,291060 -registration(r7117,c146,s2094).registration11624,291060 -registration(r7118,c160,s2094).registration11625,291092 -registration(r7118,c160,s2094).registration11625,291092 -registration(r7119,c14,s2095).registration11626,291124 -registration(r7119,c14,s2095).registration11626,291124 -registration(r7120,c228,s2095).registration11627,291155 -registration(r7120,c228,s2095).registration11627,291155 -registration(r7121,c33,s2095).registration11628,291187 -registration(r7121,c33,s2095).registration11628,291187 -registration(r7122,c222,s2096).registration11629,291218 -registration(r7122,c222,s2096).registration11629,291218 -registration(r7123,c68,s2096).registration11630,291250 -registration(r7123,c68,s2096).registration11630,291250 -registration(r7124,c150,s2096).registration11631,291281 -registration(r7124,c150,s2096).registration11631,291281 -registration(r7125,c221,s2097).registration11632,291313 -registration(r7125,c221,s2097).registration11632,291313 -registration(r7126,c162,s2097).registration11633,291345 -registration(r7126,c162,s2097).registration11633,291345 -registration(r7127,c34,s2097).registration11634,291377 -registration(r7127,c34,s2097).registration11634,291377 -registration(r7128,c114,s2097).registration11635,291408 -registration(r7128,c114,s2097).registration11635,291408 -registration(r7129,c236,s2098).registration11636,291440 -registration(r7129,c236,s2098).registration11636,291440 -registration(r7130,c91,s2098).registration11637,291472 -registration(r7130,c91,s2098).registration11637,291472 -registration(r7131,c18,s2098).registration11638,291503 -registration(r7131,c18,s2098).registration11638,291503 -registration(r7132,c21,s2099).registration11639,291534 -registration(r7132,c21,s2099).registration11639,291534 -registration(r7133,c110,s2099).registration11640,291565 -registration(r7133,c110,s2099).registration11640,291565 -registration(r7134,c181,s2099).registration11641,291597 -registration(r7134,c181,s2099).registration11641,291597 -registration(r7135,c14,s2100).registration11642,291629 -registration(r7135,c14,s2100).registration11642,291629 -registration(r7136,c39,s2100).registration11643,291660 -registration(r7136,c39,s2100).registration11643,291660 -registration(r7137,c104,s2100).registration11644,291691 -registration(r7137,c104,s2100).registration11644,291691 -registration(r7138,c199,s2100).registration11645,291723 -registration(r7138,c199,s2100).registration11645,291723 -registration(r7139,c6,s2101).registration11646,291755 -registration(r7139,c6,s2101).registration11646,291755 -registration(r7140,c231,s2101).registration11647,291785 -registration(r7140,c231,s2101).registration11647,291785 -registration(r7141,c8,s2101).registration11648,291817 -registration(r7141,c8,s2101).registration11648,291817 -registration(r7142,c75,s2102).registration11649,291847 -registration(r7142,c75,s2102).registration11649,291847 -registration(r7143,c80,s2102).registration11650,291878 -registration(r7143,c80,s2102).registration11650,291878 -registration(r7144,c253,s2102).registration11651,291909 -registration(r7144,c253,s2102).registration11651,291909 -registration(r7145,c160,s2102).registration11652,291941 -registration(r7145,c160,s2102).registration11652,291941 -registration(r7146,c16,s2103).registration11653,291973 -registration(r7146,c16,s2103).registration11653,291973 -registration(r7147,c33,s2103).registration11654,292004 -registration(r7147,c33,s2103).registration11654,292004 -registration(r7148,c161,s2103).registration11655,292035 -registration(r7148,c161,s2103).registration11655,292035 -registration(r7149,c253,s2103).registration11656,292067 -registration(r7149,c253,s2103).registration11656,292067 -registration(r7150,c150,s2104).registration11657,292099 -registration(r7150,c150,s2104).registration11657,292099 -registration(r7151,c206,s2104).registration11658,292131 -registration(r7151,c206,s2104).registration11658,292131 -registration(r7152,c97,s2104).registration11659,292163 -registration(r7152,c97,s2104).registration11659,292163 -registration(r7153,c22,s2105).registration11660,292194 -registration(r7153,c22,s2105).registration11660,292194 -registration(r7154,c66,s2105).registration11661,292225 -registration(r7154,c66,s2105).registration11661,292225 -registration(r7155,c0,s2105).registration11662,292256 -registration(r7155,c0,s2105).registration11662,292256 -registration(r7156,c105,s2105).registration11663,292286 -registration(r7156,c105,s2105).registration11663,292286 -registration(r7157,c71,s2106).registration11664,292318 -registration(r7157,c71,s2106).registration11664,292318 -registration(r7158,c46,s2106).registration11665,292349 -registration(r7158,c46,s2106).registration11665,292349 -registration(r7159,c223,s2106).registration11666,292380 -registration(r7159,c223,s2106).registration11666,292380 -registration(r7160,c230,s2106).registration11667,292412 -registration(r7160,c230,s2106).registration11667,292412 -registration(r7161,c8,s2107).registration11668,292444 -registration(r7161,c8,s2107).registration11668,292444 -registration(r7162,c219,s2107).registration11669,292474 -registration(r7162,c219,s2107).registration11669,292474 -registration(r7163,c50,s2107).registration11670,292506 -registration(r7163,c50,s2107).registration11670,292506 -registration(r7164,c32,s2108).registration11671,292537 -registration(r7164,c32,s2108).registration11671,292537 -registration(r7165,c133,s2108).registration11672,292568 -registration(r7165,c133,s2108).registration11672,292568 -registration(r7166,c120,s2108).registration11673,292600 -registration(r7166,c120,s2108).registration11673,292600 -registration(r7167,c167,s2108).registration11674,292632 -registration(r7167,c167,s2108).registration11674,292632 -registration(r7168,c182,s2108).registration11675,292664 -registration(r7168,c182,s2108).registration11675,292664 -registration(r7169,c179,s2109).registration11676,292696 -registration(r7169,c179,s2109).registration11676,292696 -registration(r7170,c22,s2109).registration11677,292728 -registration(r7170,c22,s2109).registration11677,292728 -registration(r7171,c75,s2109).registration11678,292759 -registration(r7171,c75,s2109).registration11678,292759 -registration(r7172,c247,s2110).registration11679,292790 -registration(r7172,c247,s2110).registration11679,292790 -registration(r7173,c189,s2110).registration11680,292822 -registration(r7173,c189,s2110).registration11680,292822 -registration(r7174,c142,s2110).registration11681,292854 -registration(r7174,c142,s2110).registration11681,292854 -registration(r7175,c181,s2111).registration11682,292886 -registration(r7175,c181,s2111).registration11682,292886 -registration(r7176,c160,s2111).registration11683,292918 -registration(r7176,c160,s2111).registration11683,292918 -registration(r7177,c39,s2111).registration11684,292950 -registration(r7177,c39,s2111).registration11684,292950 -registration(r7178,c6,s2112).registration11685,292981 -registration(r7178,c6,s2112).registration11685,292981 -registration(r7179,c76,s2112).registration11686,293011 -registration(r7179,c76,s2112).registration11686,293011 -registration(r7180,c229,s2112).registration11687,293042 -registration(r7180,c229,s2112).registration11687,293042 -registration(r7181,c192,s2113).registration11688,293074 -registration(r7181,c192,s2113).registration11688,293074 -registration(r7182,c30,s2113).registration11689,293106 -registration(r7182,c30,s2113).registration11689,293106 -registration(r7183,c171,s2113).registration11690,293137 -registration(r7183,c171,s2113).registration11690,293137 -registration(r7184,c48,s2114).registration11691,293169 -registration(r7184,c48,s2114).registration11691,293169 -registration(r7185,c17,s2114).registration11692,293200 -registration(r7185,c17,s2114).registration11692,293200 -registration(r7186,c113,s2114).registration11693,293231 -registration(r7186,c113,s2114).registration11693,293231 -registration(r7187,c37,s2114).registration11694,293263 -registration(r7187,c37,s2114).registration11694,293263 -registration(r7188,c138,s2115).registration11695,293294 -registration(r7188,c138,s2115).registration11695,293294 -registration(r7189,c66,s2115).registration11696,293326 -registration(r7189,c66,s2115).registration11696,293326 -registration(r7190,c112,s2115).registration11697,293357 -registration(r7190,c112,s2115).registration11697,293357 -registration(r7191,c188,s2115).registration11698,293389 -registration(r7191,c188,s2115).registration11698,293389 -registration(r7192,c202,s2116).registration11699,293421 -registration(r7192,c202,s2116).registration11699,293421 -registration(r7193,c75,s2116).registration11700,293453 -registration(r7193,c75,s2116).registration11700,293453 -registration(r7194,c160,s2116).registration11701,293484 -registration(r7194,c160,s2116).registration11701,293484 -registration(r7195,c64,s2116).registration11702,293516 -registration(r7195,c64,s2116).registration11702,293516 -registration(r7196,c177,s2117).registration11703,293547 -registration(r7196,c177,s2117).registration11703,293547 -registration(r7197,c253,s2117).registration11704,293579 -registration(r7197,c253,s2117).registration11704,293579 -registration(r7198,c17,s2117).registration11705,293611 -registration(r7198,c17,s2117).registration11705,293611 -registration(r7199,c246,s2118).registration11706,293642 -registration(r7199,c246,s2118).registration11706,293642 -registration(r7200,c163,s2118).registration11707,293674 -registration(r7200,c163,s2118).registration11707,293674 -registration(r7201,c155,s2118).registration11708,293706 -registration(r7201,c155,s2118).registration11708,293706 -registration(r7202,c72,s2119).registration11709,293738 -registration(r7202,c72,s2119).registration11709,293738 -registration(r7203,c80,s2119).registration11710,293769 -registration(r7203,c80,s2119).registration11710,293769 -registration(r7204,c2,s2119).registration11711,293800 -registration(r7204,c2,s2119).registration11711,293800 -registration(r7205,c114,s2120).registration11712,293830 -registration(r7205,c114,s2120).registration11712,293830 -registration(r7206,c80,s2120).registration11713,293862 -registration(r7206,c80,s2120).registration11713,293862 -registration(r7207,c142,s2120).registration11714,293893 -registration(r7207,c142,s2120).registration11714,293893 -registration(r7208,c207,s2121).registration11715,293925 -registration(r7208,c207,s2121).registration11715,293925 -registration(r7209,c8,s2121).registration11716,293957 -registration(r7209,c8,s2121).registration11716,293957 -registration(r7210,c232,s2121).registration11717,293987 -registration(r7210,c232,s2121).registration11717,293987 -registration(r7211,c178,s2122).registration11718,294019 -registration(r7211,c178,s2122).registration11718,294019 -registration(r7212,c214,s2122).registration11719,294051 -registration(r7212,c214,s2122).registration11719,294051 -registration(r7213,c17,s2122).registration11720,294083 -registration(r7213,c17,s2122).registration11720,294083 -registration(r7214,c83,s2123).registration11721,294114 -registration(r7214,c83,s2123).registration11721,294114 -registration(r7215,c237,s2123).registration11722,294145 -registration(r7215,c237,s2123).registration11722,294145 -registration(r7216,c212,s2123).registration11723,294177 -registration(r7216,c212,s2123).registration11723,294177 -registration(r7217,c30,s2124).registration11724,294209 -registration(r7217,c30,s2124).registration11724,294209 -registration(r7218,c91,s2124).registration11725,294240 -registration(r7218,c91,s2124).registration11725,294240 -registration(r7219,c73,s2124).registration11726,294271 -registration(r7219,c73,s2124).registration11726,294271 -registration(r7220,c12,s2124).registration11727,294302 -registration(r7220,c12,s2124).registration11727,294302 -registration(r7221,c4,s2125).registration11728,294333 -registration(r7221,c4,s2125).registration11728,294333 -registration(r7222,c98,s2125).registration11729,294363 -registration(r7222,c98,s2125).registration11729,294363 -registration(r7223,c16,s2125).registration11730,294394 -registration(r7223,c16,s2125).registration11730,294394 -registration(r7224,c130,s2126).registration11731,294425 -registration(r7224,c130,s2126).registration11731,294425 -registration(r7225,c206,s2126).registration11732,294457 -registration(r7225,c206,s2126).registration11732,294457 -registration(r7226,c80,s2126).registration11733,294489 -registration(r7226,c80,s2126).registration11733,294489 -registration(r7227,c169,s2126).registration11734,294520 -registration(r7227,c169,s2126).registration11734,294520 -registration(r7228,c34,s2126).registration11735,294552 -registration(r7228,c34,s2126).registration11735,294552 -registration(r7229,c146,s2127).registration11736,294583 -registration(r7229,c146,s2127).registration11736,294583 -registration(r7230,c172,s2127).registration11737,294615 -registration(r7230,c172,s2127).registration11737,294615 -registration(r7231,c147,s2127).registration11738,294647 -registration(r7231,c147,s2127).registration11738,294647 -registration(r7232,c165,s2128).registration11739,294679 -registration(r7232,c165,s2128).registration11739,294679 -registration(r7233,c128,s2128).registration11740,294711 -registration(r7233,c128,s2128).registration11740,294711 -registration(r7234,c89,s2128).registration11741,294743 -registration(r7234,c89,s2128).registration11741,294743 -registration(r7235,c47,s2129).registration11742,294774 -registration(r7235,c47,s2129).registration11742,294774 -registration(r7236,c93,s2129).registration11743,294805 -registration(r7236,c93,s2129).registration11743,294805 -registration(r7237,c18,s2129).registration11744,294836 -registration(r7237,c18,s2129).registration11744,294836 -registration(r7238,c92,s2130).registration11745,294867 -registration(r7238,c92,s2130).registration11745,294867 -registration(r7239,c9,s2130).registration11746,294898 -registration(r7239,c9,s2130).registration11746,294898 -registration(r7240,c202,s2130).registration11747,294928 -registration(r7240,c202,s2130).registration11747,294928 -registration(r7241,c43,s2130).registration11748,294960 -registration(r7241,c43,s2130).registration11748,294960 -registration(r7242,c121,s2131).registration11749,294991 -registration(r7242,c121,s2131).registration11749,294991 -registration(r7243,c139,s2131).registration11750,295023 -registration(r7243,c139,s2131).registration11750,295023 -registration(r7244,c239,s2131).registration11751,295055 -registration(r7244,c239,s2131).registration11751,295055 -registration(r7245,c64,s2132).registration11752,295087 -registration(r7245,c64,s2132).registration11752,295087 -registration(r7246,c22,s2132).registration11753,295118 -registration(r7246,c22,s2132).registration11753,295118 -registration(r7247,c3,s2132).registration11754,295149 -registration(r7247,c3,s2132).registration11754,295149 -registration(r7248,c149,s2133).registration11755,295179 -registration(r7248,c149,s2133).registration11755,295179 -registration(r7249,c13,s2133).registration11756,295211 -registration(r7249,c13,s2133).registration11756,295211 -registration(r7250,c206,s2133).registration11757,295242 -registration(r7250,c206,s2133).registration11757,295242 -registration(r7251,c115,s2134).registration11758,295274 -registration(r7251,c115,s2134).registration11758,295274 -registration(r7252,c90,s2134).registration11759,295306 -registration(r7252,c90,s2134).registration11759,295306 -registration(r7253,c234,s2134).registration11760,295337 -registration(r7253,c234,s2134).registration11760,295337 -registration(r7254,c25,s2135).registration11761,295369 -registration(r7254,c25,s2135).registration11761,295369 -registration(r7255,c201,s2135).registration11762,295400 -registration(r7255,c201,s2135).registration11762,295400 -registration(r7256,c220,s2135).registration11763,295432 -registration(r7256,c220,s2135).registration11763,295432 -registration(r7257,c56,s2136).registration11764,295464 -registration(r7257,c56,s2136).registration11764,295464 -registration(r7258,c113,s2136).registration11765,295495 -registration(r7258,c113,s2136).registration11765,295495 -registration(r7259,c74,s2136).registration11766,295527 -registration(r7259,c74,s2136).registration11766,295527 -registration(r7260,c117,s2137).registration11767,295558 -registration(r7260,c117,s2137).registration11767,295558 -registration(r7261,c27,s2137).registration11768,295590 -registration(r7261,c27,s2137).registration11768,295590 -registration(r7262,c8,s2137).registration11769,295621 -registration(r7262,c8,s2137).registration11769,295621 -registration(r7263,c98,s2137).registration11770,295651 -registration(r7263,c98,s2137).registration11770,295651 -registration(r7264,c165,s2138).registration11771,295682 -registration(r7264,c165,s2138).registration11771,295682 -registration(r7265,c46,s2138).registration11772,295714 -registration(r7265,c46,s2138).registration11772,295714 -registration(r7266,c101,s2138).registration11773,295745 -registration(r7266,c101,s2138).registration11773,295745 -registration(r7267,c106,s2138).registration11774,295777 -registration(r7267,c106,s2138).registration11774,295777 -registration(r7268,c21,s2139).registration11775,295809 -registration(r7268,c21,s2139).registration11775,295809 -registration(r7269,c56,s2139).registration11776,295840 -registration(r7269,c56,s2139).registration11776,295840 -registration(r7270,c212,s2139).registration11777,295871 -registration(r7270,c212,s2139).registration11777,295871 -registration(r7271,c46,s2140).registration11778,295903 -registration(r7271,c46,s2140).registration11778,295903 -registration(r7272,c145,s2140).registration11779,295934 -registration(r7272,c145,s2140).registration11779,295934 -registration(r7273,c23,s2140).registration11780,295966 -registration(r7273,c23,s2140).registration11780,295966 -registration(r7274,c224,s2141).registration11781,295997 -registration(r7274,c224,s2141).registration11781,295997 -registration(r7275,c211,s2141).registration11782,296029 -registration(r7275,c211,s2141).registration11782,296029 -registration(r7276,c18,s2141).registration11783,296061 -registration(r7276,c18,s2141).registration11783,296061 -registration(r7277,c130,s2141).registration11784,296092 -registration(r7277,c130,s2141).registration11784,296092 -registration(r7278,c171,s2142).registration11785,296124 -registration(r7278,c171,s2142).registration11785,296124 -registration(r7279,c175,s2142).registration11786,296156 -registration(r7279,c175,s2142).registration11786,296156 -registration(r7280,c1,s2142).registration11787,296188 -registration(r7280,c1,s2142).registration11787,296188 -registration(r7281,c203,s2142).registration11788,296218 -registration(r7281,c203,s2142).registration11788,296218 -registration(r7282,c132,s2142).registration11789,296250 -registration(r7282,c132,s2142).registration11789,296250 -registration(r7283,c227,s2143).registration11790,296282 -registration(r7283,c227,s2143).registration11790,296282 -registration(r7284,c107,s2143).registration11791,296314 -registration(r7284,c107,s2143).registration11791,296314 -registration(r7285,c43,s2143).registration11792,296346 -registration(r7285,c43,s2143).registration11792,296346 -registration(r7286,c208,s2143).registration11793,296377 -registration(r7286,c208,s2143).registration11793,296377 -registration(r7287,c123,s2144).registration11794,296409 -registration(r7287,c123,s2144).registration11794,296409 -registration(r7288,c203,s2144).registration11795,296441 -registration(r7288,c203,s2144).registration11795,296441 -registration(r7289,c72,s2144).registration11796,296473 -registration(r7289,c72,s2144).registration11796,296473 -registration(r7290,c238,s2145).registration11797,296504 -registration(r7290,c238,s2145).registration11797,296504 -registration(r7291,c94,s2145).registration11798,296536 -registration(r7291,c94,s2145).registration11798,296536 -registration(r7292,c205,s2145).registration11799,296567 -registration(r7292,c205,s2145).registration11799,296567 -registration(r7293,c197,s2146).registration11800,296599 -registration(r7293,c197,s2146).registration11800,296599 -registration(r7294,c41,s2146).registration11801,296631 -registration(r7294,c41,s2146).registration11801,296631 -registration(r7295,c86,s2146).registration11802,296662 -registration(r7295,c86,s2146).registration11802,296662 -registration(r7296,c182,s2147).registration11803,296693 -registration(r7296,c182,s2147).registration11803,296693 -registration(r7297,c166,s2147).registration11804,296725 -registration(r7297,c166,s2147).registration11804,296725 -registration(r7298,c192,s2147).registration11805,296757 -registration(r7298,c192,s2147).registration11805,296757 -registration(r7299,c192,s2148).registration11806,296789 -registration(r7299,c192,s2148).registration11806,296789 -registration(r7300,c130,s2148).registration11807,296821 -registration(r7300,c130,s2148).registration11807,296821 -registration(r7301,c32,s2148).registration11808,296853 -registration(r7301,c32,s2148).registration11808,296853 -registration(r7302,c4,s2148).registration11809,296884 -registration(r7302,c4,s2148).registration11809,296884 -registration(r7303,c54,s2149).registration11810,296914 -registration(r7303,c54,s2149).registration11810,296914 -registration(r7304,c52,s2149).registration11811,296945 -registration(r7304,c52,s2149).registration11811,296945 -registration(r7305,c22,s2149).registration11812,296976 -registration(r7305,c22,s2149).registration11812,296976 -registration(r7306,c105,s2149).registration11813,297007 -registration(r7306,c105,s2149).registration11813,297007 -registration(r7307,c210,s2150).registration11814,297039 -registration(r7307,c210,s2150).registration11814,297039 -registration(r7308,c176,s2150).registration11815,297071 -registration(r7308,c176,s2150).registration11815,297071 -registration(r7309,c69,s2150).registration11816,297103 -registration(r7309,c69,s2150).registration11816,297103 -registration(r7310,c164,s2151).registration11817,297134 -registration(r7310,c164,s2151).registration11817,297134 -registration(r7311,c63,s2151).registration11818,297166 -registration(r7311,c63,s2151).registration11818,297166 -registration(r7312,c30,s2151).registration11819,297197 -registration(r7312,c30,s2151).registration11819,297197 -registration(r7313,c5,s2151).registration11820,297228 -registration(r7313,c5,s2151).registration11820,297228 -registration(r7314,c111,s2152).registration11821,297258 -registration(r7314,c111,s2152).registration11821,297258 -registration(r7315,c159,s2152).registration11822,297290 -registration(r7315,c159,s2152).registration11822,297290 -registration(r7316,c132,s2152).registration11823,297322 -registration(r7316,c132,s2152).registration11823,297322 -registration(r7317,c69,s2152).registration11824,297354 -registration(r7317,c69,s2152).registration11824,297354 -registration(r7318,c136,s2153).registration11825,297385 -registration(r7318,c136,s2153).registration11825,297385 -registration(r7319,c156,s2153).registration11826,297417 -registration(r7319,c156,s2153).registration11826,297417 -registration(r7320,c5,s2153).registration11827,297449 -registration(r7320,c5,s2153).registration11827,297449 -registration(r7321,c190,s2153).registration11828,297479 -registration(r7321,c190,s2153).registration11828,297479 -registration(r7322,c20,s2154).registration11829,297511 -registration(r7322,c20,s2154).registration11829,297511 -registration(r7323,c193,s2154).registration11830,297542 -registration(r7323,c193,s2154).registration11830,297542 -registration(r7324,c6,s2154).registration11831,297574 -registration(r7324,c6,s2154).registration11831,297574 -registration(r7325,c14,s2155).registration11832,297604 -registration(r7325,c14,s2155).registration11832,297604 -registration(r7326,c178,s2155).registration11833,297635 -registration(r7326,c178,s2155).registration11833,297635 -registration(r7327,c106,s2155).registration11834,297667 -registration(r7327,c106,s2155).registration11834,297667 -registration(r7328,c176,s2156).registration11835,297699 -registration(r7328,c176,s2156).registration11835,297699 -registration(r7329,c82,s2156).registration11836,297731 -registration(r7329,c82,s2156).registration11836,297731 -registration(r7330,c2,s2156).registration11837,297762 -registration(r7330,c2,s2156).registration11837,297762 -registration(r7331,c32,s2157).registration11838,297792 -registration(r7331,c32,s2157).registration11838,297792 -registration(r7332,c110,s2157).registration11839,297823 -registration(r7332,c110,s2157).registration11839,297823 -registration(r7333,c152,s2157).registration11840,297855 -registration(r7333,c152,s2157).registration11840,297855 -registration(r7334,c55,s2158).registration11841,297887 -registration(r7334,c55,s2158).registration11841,297887 -registration(r7335,c237,s2158).registration11842,297918 -registration(r7335,c237,s2158).registration11842,297918 -registration(r7336,c4,s2158).registration11843,297950 -registration(r7336,c4,s2158).registration11843,297950 -registration(r7337,c141,s2158).registration11844,297980 -registration(r7337,c141,s2158).registration11844,297980 -registration(r7338,c25,s2159).registration11845,298012 -registration(r7338,c25,s2159).registration11845,298012 -registration(r7339,c56,s2159).registration11846,298043 -registration(r7339,c56,s2159).registration11846,298043 -registration(r7340,c153,s2159).registration11847,298074 -registration(r7340,c153,s2159).registration11847,298074 -registration(r7341,c174,s2159).registration11848,298106 -registration(r7341,c174,s2159).registration11848,298106 -registration(r7342,c152,s2160).registration11849,298138 -registration(r7342,c152,s2160).registration11849,298138 -registration(r7343,c13,s2160).registration11850,298170 -registration(r7343,c13,s2160).registration11850,298170 -registration(r7344,c247,s2160).registration11851,298201 -registration(r7344,c247,s2160).registration11851,298201 -registration(r7345,c169,s2160).registration11852,298233 -registration(r7345,c169,s2160).registration11852,298233 -registration(r7346,c220,s2161).registration11853,298265 -registration(r7346,c220,s2161).registration11853,298265 -registration(r7347,c252,s2161).registration11854,298297 -registration(r7347,c252,s2161).registration11854,298297 -registration(r7348,c12,s2161).registration11855,298329 -registration(r7348,c12,s2161).registration11855,298329 -registration(r7349,c14,s2162).registration11856,298360 -registration(r7349,c14,s2162).registration11856,298360 -registration(r7350,c224,s2162).registration11857,298391 -registration(r7350,c224,s2162).registration11857,298391 -registration(r7351,c225,s2162).registration11858,298423 -registration(r7351,c225,s2162).registration11858,298423 -registration(r7352,c78,s2162).registration11859,298455 -registration(r7352,c78,s2162).registration11859,298455 -registration(r7353,c152,s2163).registration11860,298486 -registration(r7353,c152,s2163).registration11860,298486 -registration(r7354,c44,s2163).registration11861,298518 -registration(r7354,c44,s2163).registration11861,298518 -registration(r7355,c176,s2163).registration11862,298549 -registration(r7355,c176,s2163).registration11862,298549 -registration(r7356,c46,s2163).registration11863,298581 -registration(r7356,c46,s2163).registration11863,298581 -registration(r7357,c184,s2164).registration11864,298612 -registration(r7357,c184,s2164).registration11864,298612 -registration(r7358,c189,s2164).registration11865,298644 -registration(r7358,c189,s2164).registration11865,298644 -registration(r7359,c70,s2164).registration11866,298676 -registration(r7359,c70,s2164).registration11866,298676 -registration(r7360,c30,s2165).registration11867,298707 -registration(r7360,c30,s2165).registration11867,298707 -registration(r7361,c247,s2165).registration11868,298738 -registration(r7361,c247,s2165).registration11868,298738 -registration(r7362,c4,s2165).registration11869,298770 -registration(r7362,c4,s2165).registration11869,298770 -registration(r7363,c251,s2165).registration11870,298800 -registration(r7363,c251,s2165).registration11870,298800 -registration(r7364,c40,s2166).registration11871,298832 -registration(r7364,c40,s2166).registration11871,298832 -registration(r7365,c33,s2166).registration11872,298863 -registration(r7365,c33,s2166).registration11872,298863 -registration(r7366,c166,s2166).registration11873,298894 -registration(r7366,c166,s2166).registration11873,298894 -registration(r7367,c29,s2166).registration11874,298926 -registration(r7367,c29,s2166).registration11874,298926 -registration(r7368,c145,s2167).registration11875,298957 -registration(r7368,c145,s2167).registration11875,298957 -registration(r7369,c108,s2167).registration11876,298989 -registration(r7369,c108,s2167).registration11876,298989 -registration(r7370,c193,s2167).registration11877,299021 -registration(r7370,c193,s2167).registration11877,299021 -registration(r7371,c239,s2168).registration11878,299053 -registration(r7371,c239,s2168).registration11878,299053 -registration(r7372,c191,s2168).registration11879,299085 -registration(r7372,c191,s2168).registration11879,299085 -registration(r7373,c199,s2168).registration11880,299117 -registration(r7373,c199,s2168).registration11880,299117 -registration(r7374,c119,s2169).registration11881,299149 -registration(r7374,c119,s2169).registration11881,299149 -registration(r7375,c14,s2169).registration11882,299181 -registration(r7375,c14,s2169).registration11882,299181 -registration(r7376,c30,s2169).registration11883,299212 -registration(r7376,c30,s2169).registration11883,299212 -registration(r7377,c219,s2170).registration11884,299243 -registration(r7377,c219,s2170).registration11884,299243 -registration(r7378,c237,s2170).registration11885,299275 -registration(r7378,c237,s2170).registration11885,299275 -registration(r7379,c181,s2170).registration11886,299307 -registration(r7379,c181,s2170).registration11886,299307 -registration(r7380,c11,s2170).registration11887,299339 -registration(r7380,c11,s2170).registration11887,299339 -registration(r7381,c53,s2171).registration11888,299370 -registration(r7381,c53,s2171).registration11888,299370 -registration(r7382,c195,s2171).registration11889,299401 -registration(r7382,c195,s2171).registration11889,299401 -registration(r7383,c178,s2171).registration11890,299433 -registration(r7383,c178,s2171).registration11890,299433 -registration(r7384,c236,s2171).registration11891,299465 -registration(r7384,c236,s2171).registration11891,299465 -registration(r7385,c215,s2172).registration11892,299497 -registration(r7385,c215,s2172).registration11892,299497 -registration(r7386,c241,s2172).registration11893,299529 -registration(r7386,c241,s2172).registration11893,299529 -registration(r7387,c242,s2172).registration11894,299561 -registration(r7387,c242,s2172).registration11894,299561 -registration(r7388,c95,s2173).registration11895,299593 -registration(r7388,c95,s2173).registration11895,299593 -registration(r7389,c73,s2173).registration11896,299624 -registration(r7389,c73,s2173).registration11896,299624 -registration(r7390,c244,s2173).registration11897,299655 -registration(r7390,c244,s2173).registration11897,299655 -registration(r7391,c180,s2174).registration11898,299687 -registration(r7391,c180,s2174).registration11898,299687 -registration(r7392,c117,s2174).registration11899,299719 -registration(r7392,c117,s2174).registration11899,299719 -registration(r7393,c194,s2174).registration11900,299751 -registration(r7393,c194,s2174).registration11900,299751 -registration(r7394,c208,s2175).registration11901,299783 -registration(r7394,c208,s2175).registration11901,299783 -registration(r7395,c190,s2175).registration11902,299815 -registration(r7395,c190,s2175).registration11902,299815 -registration(r7396,c146,s2175).registration11903,299847 -registration(r7396,c146,s2175).registration11903,299847 -registration(r7397,c128,s2176).registration11904,299879 -registration(r7397,c128,s2176).registration11904,299879 -registration(r7398,c77,s2176).registration11905,299911 -registration(r7398,c77,s2176).registration11905,299911 -registration(r7399,c204,s2176).registration11906,299942 -registration(r7399,c204,s2176).registration11906,299942 -registration(r7400,c1,s2177).registration11907,299974 -registration(r7400,c1,s2177).registration11907,299974 -registration(r7401,c80,s2177).registration11908,300004 -registration(r7401,c80,s2177).registration11908,300004 -registration(r7402,c176,s2177).registration11909,300035 -registration(r7402,c176,s2177).registration11909,300035 -registration(r7403,c59,s2177).registration11910,300067 -registration(r7403,c59,s2177).registration11910,300067 -registration(r7404,c9,s2178).registration11911,300098 -registration(r7404,c9,s2178).registration11911,300098 -registration(r7405,c45,s2178).registration11912,300128 -registration(r7405,c45,s2178).registration11912,300128 -registration(r7406,c119,s2178).registration11913,300159 -registration(r7406,c119,s2178).registration11913,300159 -registration(r7407,c213,s2179).registration11914,300191 -registration(r7407,c213,s2179).registration11914,300191 -registration(r7408,c220,s2179).registration11915,300223 -registration(r7408,c220,s2179).registration11915,300223 -registration(r7409,c161,s2179).registration11916,300255 -registration(r7409,c161,s2179).registration11916,300255 -registration(r7410,c86,s2179).registration11917,300287 -registration(r7410,c86,s2179).registration11917,300287 -registration(r7411,c250,s2180).registration11918,300318 -registration(r7411,c250,s2180).registration11918,300318 -registration(r7412,c215,s2180).registration11919,300350 -registration(r7412,c215,s2180).registration11919,300350 -registration(r7413,c248,s2180).registration11920,300382 -registration(r7413,c248,s2180).registration11920,300382 -registration(r7414,c184,s2181).registration11921,300414 -registration(r7414,c184,s2181).registration11921,300414 -registration(r7415,c124,s2181).registration11922,300446 -registration(r7415,c124,s2181).registration11922,300446 -registration(r7416,c63,s2181).registration11923,300478 -registration(r7416,c63,s2181).registration11923,300478 -registration(r7417,c142,s2182).registration11924,300509 -registration(r7417,c142,s2182).registration11924,300509 -registration(r7418,c29,s2182).registration11925,300541 -registration(r7418,c29,s2182).registration11925,300541 -registration(r7419,c137,s2182).registration11926,300572 -registration(r7419,c137,s2182).registration11926,300572 -registration(r7420,c217,s2182).registration11927,300604 -registration(r7420,c217,s2182).registration11927,300604 -registration(r7421,c58,s2183).registration11928,300636 -registration(r7421,c58,s2183).registration11928,300636 -registration(r7422,c82,s2183).registration11929,300667 -registration(r7422,c82,s2183).registration11929,300667 -registration(r7423,c20,s2183).registration11930,300698 -registration(r7423,c20,s2183).registration11930,300698 -registration(r7424,c65,s2184).registration11931,300729 -registration(r7424,c65,s2184).registration11931,300729 -registration(r7425,c51,s2184).registration11932,300760 -registration(r7425,c51,s2184).registration11932,300760 -registration(r7426,c239,s2184).registration11933,300791 -registration(r7426,c239,s2184).registration11933,300791 -registration(r7427,c203,s2184).registration11934,300823 -registration(r7427,c203,s2184).registration11934,300823 -registration(r7428,c147,s2185).registration11935,300855 -registration(r7428,c147,s2185).registration11935,300855 -registration(r7429,c141,s2185).registration11936,300887 -registration(r7429,c141,s2185).registration11936,300887 -registration(r7430,c226,s2185).registration11937,300919 -registration(r7430,c226,s2185).registration11937,300919 -registration(r7431,c186,s2186).registration11938,300951 -registration(r7431,c186,s2186).registration11938,300951 -registration(r7432,c228,s2186).registration11939,300983 -registration(r7432,c228,s2186).registration11939,300983 -registration(r7433,c112,s2186).registration11940,301015 -registration(r7433,c112,s2186).registration11940,301015 -registration(r7434,c238,s2187).registration11941,301047 -registration(r7434,c238,s2187).registration11941,301047 -registration(r7435,c161,s2187).registration11942,301079 -registration(r7435,c161,s2187).registration11942,301079 -registration(r7436,c237,s2187).registration11943,301111 -registration(r7436,c237,s2187).registration11943,301111 -registration(r7437,c12,s2187).registration11944,301143 -registration(r7437,c12,s2187).registration11944,301143 -registration(r7438,c118,s2188).registration11945,301174 -registration(r7438,c118,s2188).registration11945,301174 -registration(r7439,c187,s2188).registration11946,301206 -registration(r7439,c187,s2188).registration11946,301206 -registration(r7440,c43,s2188).registration11947,301238 -registration(r7440,c43,s2188).registration11947,301238 -registration(r7441,c125,s2189).registration11948,301269 -registration(r7441,c125,s2189).registration11948,301269 -registration(r7442,c100,s2189).registration11949,301301 -registration(r7442,c100,s2189).registration11949,301301 -registration(r7443,c180,s2189).registration11950,301333 -registration(r7443,c180,s2189).registration11950,301333 -registration(r7444,c231,s2190).registration11951,301365 -registration(r7444,c231,s2190).registration11951,301365 -registration(r7445,c200,s2190).registration11952,301397 -registration(r7445,c200,s2190).registration11952,301397 -registration(r7446,c149,s2190).registration11953,301429 -registration(r7446,c149,s2190).registration11953,301429 -registration(r7447,c41,s2191).registration11954,301461 -registration(r7447,c41,s2191).registration11954,301461 -registration(r7448,c127,s2191).registration11955,301492 -registration(r7448,c127,s2191).registration11955,301492 -registration(r7449,c118,s2191).registration11956,301524 -registration(r7449,c118,s2191).registration11956,301524 -registration(r7450,c7,s2191).registration11957,301556 -registration(r7450,c7,s2191).registration11957,301556 -registration(r7451,c248,s2191).registration11958,301586 -registration(r7451,c248,s2191).registration11958,301586 -registration(r7452,c121,s2192).registration11959,301618 -registration(r7452,c121,s2192).registration11959,301618 -registration(r7453,c147,s2192).registration11960,301650 -registration(r7453,c147,s2192).registration11960,301650 -registration(r7454,c149,s2192).registration11961,301682 -registration(r7454,c149,s2192).registration11961,301682 -registration(r7455,c130,s2193).registration11962,301714 -registration(r7455,c130,s2193).registration11962,301714 -registration(r7456,c84,s2193).registration11963,301746 -registration(r7456,c84,s2193).registration11963,301746 -registration(r7457,c103,s2193).registration11964,301777 -registration(r7457,c103,s2193).registration11964,301777 -registration(r7458,c34,s2194).registration11965,301809 -registration(r7458,c34,s2194).registration11965,301809 -registration(r7459,c187,s2194).registration11966,301840 -registration(r7459,c187,s2194).registration11966,301840 -registration(r7460,c26,s2194).registration11967,301872 -registration(r7460,c26,s2194).registration11967,301872 -registration(r7461,c58,s2194).registration11968,301903 -registration(r7461,c58,s2194).registration11968,301903 -registration(r7462,c203,s2195).registration11969,301934 -registration(r7462,c203,s2195).registration11969,301934 -registration(r7463,c18,s2195).registration11970,301966 -registration(r7463,c18,s2195).registration11970,301966 -registration(r7464,c38,s2195).registration11971,301997 -registration(r7464,c38,s2195).registration11971,301997 -registration(r7465,c188,s2196).registration11972,302028 -registration(r7465,c188,s2196).registration11972,302028 -registration(r7466,c163,s2196).registration11973,302060 -registration(r7466,c163,s2196).registration11973,302060 -registration(r7467,c112,s2196).registration11974,302092 -registration(r7467,c112,s2196).registration11974,302092 -registration(r7468,c232,s2196).registration11975,302124 -registration(r7468,c232,s2196).registration11975,302124 -registration(r7469,c250,s2197).registration11976,302156 -registration(r7469,c250,s2197).registration11976,302156 -registration(r7470,c42,s2197).registration11977,302188 -registration(r7470,c42,s2197).registration11977,302188 -registration(r7471,c24,s2197).registration11978,302219 -registration(r7471,c24,s2197).registration11978,302219 -registration(r7472,c171,s2198).registration11979,302250 -registration(r7472,c171,s2198).registration11979,302250 -registration(r7473,c134,s2198).registration11980,302282 -registration(r7473,c134,s2198).registration11980,302282 -registration(r7474,c12,s2198).registration11981,302314 -registration(r7474,c12,s2198).registration11981,302314 -registration(r7475,c97,s2198).registration11982,302345 -registration(r7475,c97,s2198).registration11982,302345 -registration(r7476,c72,s2199).registration11983,302376 -registration(r7476,c72,s2199).registration11983,302376 -registration(r7477,c153,s2199).registration11984,302407 -registration(r7477,c153,s2199).registration11984,302407 -registration(r7478,c44,s2199).registration11985,302439 -registration(r7478,c44,s2199).registration11985,302439 -registration(r7479,c71,s2200).registration11986,302470 -registration(r7479,c71,s2200).registration11986,302470 -registration(r7480,c131,s2200).registration11987,302501 -registration(r7480,c131,s2200).registration11987,302501 -registration(r7481,c141,s2200).registration11988,302533 -registration(r7481,c141,s2200).registration11988,302533 -registration(r7482,c159,s2201).registration11989,302565 -registration(r7482,c159,s2201).registration11989,302565 -registration(r7483,c236,s2201).registration11990,302597 -registration(r7483,c236,s2201).registration11990,302597 -registration(r7484,c1,s2201).registration11991,302629 -registration(r7484,c1,s2201).registration11991,302629 -registration(r7485,c165,s2202).registration11992,302659 -registration(r7485,c165,s2202).registration11992,302659 -registration(r7486,c237,s2202).registration11993,302691 -registration(r7486,c237,s2202).registration11993,302691 -registration(r7487,c141,s2202).registration11994,302723 -registration(r7487,c141,s2202).registration11994,302723 -registration(r7488,c137,s2203).registration11995,302755 -registration(r7488,c137,s2203).registration11995,302755 -registration(r7489,c243,s2203).registration11996,302787 -registration(r7489,c243,s2203).registration11996,302787 -registration(r7490,c236,s2203).registration11997,302819 -registration(r7490,c236,s2203).registration11997,302819 -registration(r7491,c153,s2204).registration11998,302851 -registration(r7491,c153,s2204).registration11998,302851 -registration(r7492,c2,s2204).registration11999,302883 -registration(r7492,c2,s2204).registration11999,302883 -registration(r7493,c165,s2204).registration12000,302913 -registration(r7493,c165,s2204).registration12000,302913 -registration(r7494,c7,s2204).registration12001,302945 -registration(r7494,c7,s2204).registration12001,302945 -registration(r7495,c195,s2205).registration12002,302975 -registration(r7495,c195,s2205).registration12002,302975 -registration(r7496,c165,s2205).registration12003,303007 -registration(r7496,c165,s2205).registration12003,303007 -registration(r7497,c50,s2205).registration12004,303039 -registration(r7497,c50,s2205).registration12004,303039 -registration(r7498,c249,s2205).registration12005,303070 -registration(r7498,c249,s2205).registration12005,303070 -registration(r7499,c178,s2206).registration12006,303102 -registration(r7499,c178,s2206).registration12006,303102 -registration(r7500,c134,s2206).registration12007,303134 -registration(r7500,c134,s2206).registration12007,303134 -registration(r7501,c64,s2206).registration12008,303166 -registration(r7501,c64,s2206).registration12008,303166 -registration(r7502,c38,s2206).registration12009,303197 -registration(r7502,c38,s2206).registration12009,303197 -registration(r7503,c3,s2206).registration12010,303228 -registration(r7503,c3,s2206).registration12010,303228 -registration(r7504,c162,s2207).registration12011,303258 -registration(r7504,c162,s2207).registration12011,303258 -registration(r7505,c214,s2207).registration12012,303290 -registration(r7505,c214,s2207).registration12012,303290 -registration(r7506,c168,s2207).registration12013,303322 -registration(r7506,c168,s2207).registration12013,303322 -registration(r7507,c113,s2208).registration12014,303354 -registration(r7507,c113,s2208).registration12014,303354 -registration(r7508,c99,s2208).registration12015,303386 -registration(r7508,c99,s2208).registration12015,303386 -registration(r7509,c238,s2208).registration12016,303417 -registration(r7509,c238,s2208).registration12016,303417 -registration(r7510,c106,s2209).registration12017,303449 -registration(r7510,c106,s2209).registration12017,303449 -registration(r7511,c252,s2209).registration12018,303481 -registration(r7511,c252,s2209).registration12018,303481 -registration(r7512,c233,s2209).registration12019,303513 -registration(r7512,c233,s2209).registration12019,303513 -registration(r7513,c101,s2210).registration12020,303545 -registration(r7513,c101,s2210).registration12020,303545 -registration(r7514,c122,s2210).registration12021,303577 -registration(r7514,c122,s2210).registration12021,303577 -registration(r7515,c168,s2210).registration12022,303609 -registration(r7515,c168,s2210).registration12022,303609 -registration(r7516,c31,s2210).registration12023,303641 -registration(r7516,c31,s2210).registration12023,303641 -registration(r7517,c88,s2211).registration12024,303672 -registration(r7517,c88,s2211).registration12024,303672 -registration(r7518,c25,s2211).registration12025,303703 -registration(r7518,c25,s2211).registration12025,303703 -registration(r7519,c84,s2211).registration12026,303734 -registration(r7519,c84,s2211).registration12026,303734 -registration(r7520,c161,s2211).registration12027,303765 -registration(r7520,c161,s2211).registration12027,303765 -registration(r7521,c13,s2212).registration12028,303797 -registration(r7521,c13,s2212).registration12028,303797 -registration(r7522,c198,s2212).registration12029,303828 -registration(r7522,c198,s2212).registration12029,303828 -registration(r7523,c194,s2212).registration12030,303860 -registration(r7523,c194,s2212).registration12030,303860 -registration(r7524,c104,s2212).registration12031,303892 -registration(r7524,c104,s2212).registration12031,303892 -registration(r7525,c185,s2213).registration12032,303924 -registration(r7525,c185,s2213).registration12032,303924 -registration(r7526,c248,s2213).registration12033,303956 -registration(r7526,c248,s2213).registration12033,303956 -registration(r7527,c254,s2213).registration12034,303988 -registration(r7527,c254,s2213).registration12034,303988 -registration(r7528,c91,s2213).registration12035,304020 -registration(r7528,c91,s2213).registration12035,304020 -registration(r7529,c143,s2214).registration12036,304051 -registration(r7529,c143,s2214).registration12036,304051 -registration(r7530,c174,s2214).registration12037,304083 -registration(r7530,c174,s2214).registration12037,304083 -registration(r7531,c87,s2214).registration12038,304115 -registration(r7531,c87,s2214).registration12038,304115 -registration(r7532,c197,s2215).registration12039,304146 -registration(r7532,c197,s2215).registration12039,304146 -registration(r7533,c44,s2215).registration12040,304178 -registration(r7533,c44,s2215).registration12040,304178 -registration(r7534,c254,s2215).registration12041,304209 -registration(r7534,c254,s2215).registration12041,304209 -registration(r7535,c39,s2216).registration12042,304241 -registration(r7535,c39,s2216).registration12042,304241 -registration(r7536,c95,s2216).registration12043,304272 -registration(r7536,c95,s2216).registration12043,304272 -registration(r7537,c175,s2216).registration12044,304303 -registration(r7537,c175,s2216).registration12044,304303 -registration(r7538,c2,s2217).registration12045,304335 -registration(r7538,c2,s2217).registration12045,304335 -registration(r7539,c140,s2217).registration12046,304365 -registration(r7539,c140,s2217).registration12046,304365 -registration(r7540,c26,s2217).registration12047,304397 -registration(r7540,c26,s2217).registration12047,304397 -registration(r7541,c223,s2218).registration12048,304428 -registration(r7541,c223,s2218).registration12048,304428 -registration(r7542,c90,s2218).registration12049,304460 -registration(r7542,c90,s2218).registration12049,304460 -registration(r7543,c169,s2218).registration12050,304491 -registration(r7543,c169,s2218).registration12050,304491 -registration(r7544,c99,s2219).registration12051,304523 -registration(r7544,c99,s2219).registration12051,304523 -registration(r7545,c65,s2219).registration12052,304554 -registration(r7545,c65,s2219).registration12052,304554 -registration(r7546,c243,s2219).registration12053,304585 -registration(r7546,c243,s2219).registration12053,304585 -registration(r7547,c224,s2220).registration12054,304617 -registration(r7547,c224,s2220).registration12054,304617 -registration(r7548,c29,s2220).registration12055,304649 -registration(r7548,c29,s2220).registration12055,304649 -registration(r7549,c76,s2220).registration12056,304680 -registration(r7549,c76,s2220).registration12056,304680 -registration(r7550,c228,s2221).registration12057,304711 -registration(r7550,c228,s2221).registration12057,304711 -registration(r7551,c254,s2221).registration12058,304743 -registration(r7551,c254,s2221).registration12058,304743 -registration(r7552,c212,s2221).registration12059,304775 -registration(r7552,c212,s2221).registration12059,304775 -registration(r7553,c170,s2222).registration12060,304807 -registration(r7553,c170,s2222).registration12060,304807 -registration(r7554,c10,s2222).registration12061,304839 -registration(r7554,c10,s2222).registration12061,304839 -registration(r7555,c156,s2222).registration12062,304870 -registration(r7555,c156,s2222).registration12062,304870 -registration(r7556,c21,s2223).registration12063,304902 -registration(r7556,c21,s2223).registration12063,304902 -registration(r7557,c93,s2223).registration12064,304933 -registration(r7557,c93,s2223).registration12064,304933 -registration(r7558,c24,s2223).registration12065,304964 -registration(r7558,c24,s2223).registration12065,304964 -registration(r7559,c244,s2223).registration12066,304995 -registration(r7559,c244,s2223).registration12066,304995 -registration(r7560,c15,s2224).registration12067,305027 -registration(r7560,c15,s2224).registration12067,305027 -registration(r7561,c80,s2224).registration12068,305058 -registration(r7561,c80,s2224).registration12068,305058 -registration(r7562,c92,s2224).registration12069,305089 -registration(r7562,c92,s2224).registration12069,305089 -registration(r7563,c190,s2225).registration12070,305120 -registration(r7563,c190,s2225).registration12070,305120 -registration(r7564,c153,s2225).registration12071,305152 -registration(r7564,c153,s2225).registration12071,305152 -registration(r7565,c54,s2225).registration12072,305184 -registration(r7565,c54,s2225).registration12072,305184 -registration(r7566,c24,s2226).registration12073,305215 -registration(r7566,c24,s2226).registration12073,305215 -registration(r7567,c106,s2226).registration12074,305246 -registration(r7567,c106,s2226).registration12074,305246 -registration(r7568,c133,s2226).registration12075,305278 -registration(r7568,c133,s2226).registration12075,305278 -registration(r7569,c105,s2226).registration12076,305310 -registration(r7569,c105,s2226).registration12076,305310 -registration(r7570,c78,s2227).registration12077,305342 -registration(r7570,c78,s2227).registration12077,305342 -registration(r7571,c233,s2227).registration12078,305373 -registration(r7571,c233,s2227).registration12078,305373 -registration(r7572,c76,s2227).registration12079,305405 -registration(r7572,c76,s2227).registration12079,305405 -registration(r7573,c87,s2228).registration12080,305436 -registration(r7573,c87,s2228).registration12080,305436 -registration(r7574,c41,s2228).registration12081,305467 -registration(r7574,c41,s2228).registration12081,305467 -registration(r7575,c238,s2228).registration12082,305498 -registration(r7575,c238,s2228).registration12082,305498 -registration(r7576,c74,s2229).registration12083,305530 -registration(r7576,c74,s2229).registration12083,305530 -registration(r7577,c250,s2229).registration12084,305561 -registration(r7577,c250,s2229).registration12084,305561 -registration(r7578,c110,s2229).registration12085,305593 -registration(r7578,c110,s2229).registration12085,305593 -registration(r7579,c125,s2230).registration12086,305625 -registration(r7579,c125,s2230).registration12086,305625 -registration(r7580,c143,s2230).registration12087,305657 -registration(r7580,c143,s2230).registration12087,305657 -registration(r7581,c6,s2230).registration12088,305689 -registration(r7581,c6,s2230).registration12088,305689 -registration(r7582,c196,s2231).registration12089,305719 -registration(r7582,c196,s2231).registration12089,305719 -registration(r7583,c110,s2231).registration12090,305751 -registration(r7583,c110,s2231).registration12090,305751 -registration(r7584,c9,s2231).registration12091,305783 -registration(r7584,c9,s2231).registration12091,305783 -registration(r7585,c167,s2231).registration12092,305813 -registration(r7585,c167,s2231).registration12092,305813 -registration(r7586,c122,s2231).registration12093,305845 -registration(r7586,c122,s2231).registration12093,305845 -registration(r7587,c44,s2232).registration12094,305877 -registration(r7587,c44,s2232).registration12094,305877 -registration(r7588,c115,s2232).registration12095,305908 -registration(r7588,c115,s2232).registration12095,305908 -registration(r7589,c142,s2232).registration12096,305940 -registration(r7589,c142,s2232).registration12096,305940 -registration(r7590,c119,s2233).registration12097,305972 -registration(r7590,c119,s2233).registration12097,305972 -registration(r7591,c226,s2233).registration12098,306004 -registration(r7591,c226,s2233).registration12098,306004 -registration(r7592,c77,s2233).registration12099,306036 -registration(r7592,c77,s2233).registration12099,306036 -registration(r7593,c57,s2233).registration12100,306067 -registration(r7593,c57,s2233).registration12100,306067 -registration(r7594,c250,s2234).registration12101,306098 -registration(r7594,c250,s2234).registration12101,306098 -registration(r7595,c28,s2234).registration12102,306130 -registration(r7595,c28,s2234).registration12102,306130 -registration(r7596,c182,s2234).registration12103,306161 -registration(r7596,c182,s2234).registration12103,306161 -registration(r7597,c37,s2234).registration12104,306193 -registration(r7597,c37,s2234).registration12104,306193 -registration(r7598,c131,s2235).registration12105,306224 -registration(r7598,c131,s2235).registration12105,306224 -registration(r7599,c195,s2235).registration12106,306256 -registration(r7599,c195,s2235).registration12106,306256 -registration(r7600,c161,s2235).registration12107,306288 -registration(r7600,c161,s2235).registration12107,306288 -registration(r7601,c203,s2235).registration12108,306320 -registration(r7601,c203,s2235).registration12108,306320 -registration(r7602,c229,s2236).registration12109,306352 -registration(r7602,c229,s2236).registration12109,306352 -registration(r7603,c142,s2236).registration12110,306384 -registration(r7603,c142,s2236).registration12110,306384 -registration(r7604,c230,s2236).registration12111,306416 -registration(r7604,c230,s2236).registration12111,306416 -registration(r7605,c141,s2237).registration12112,306448 -registration(r7605,c141,s2237).registration12112,306448 -registration(r7606,c17,s2237).registration12113,306480 -registration(r7606,c17,s2237).registration12113,306480 -registration(r7607,c27,s2237).registration12114,306511 -registration(r7607,c27,s2237).registration12114,306511 -registration(r7608,c169,s2238).registration12115,306542 -registration(r7608,c169,s2238).registration12115,306542 -registration(r7609,c79,s2238).registration12116,306574 -registration(r7609,c79,s2238).registration12116,306574 -registration(r7610,c69,s2238).registration12117,306605 -registration(r7610,c69,s2238).registration12117,306605 -registration(r7611,c49,s2238).registration12118,306636 -registration(r7611,c49,s2238).registration12118,306636 -registration(r7612,c44,s2239).registration12119,306667 -registration(r7612,c44,s2239).registration12119,306667 -registration(r7613,c108,s2239).registration12120,306698 -registration(r7613,c108,s2239).registration12120,306698 -registration(r7614,c11,s2239).registration12121,306730 -registration(r7614,c11,s2239).registration12121,306730 -registration(r7615,c138,s2239).registration12122,306761 -registration(r7615,c138,s2239).registration12122,306761 -registration(r7616,c107,s2240).registration12123,306793 -registration(r7616,c107,s2240).registration12123,306793 -registration(r7617,c160,s2240).registration12124,306825 -registration(r7617,c160,s2240).registration12124,306825 -registration(r7618,c230,s2240).registration12125,306857 -registration(r7618,c230,s2240).registration12125,306857 -registration(r7619,c136,s2241).registration12126,306889 -registration(r7619,c136,s2241).registration12126,306889 -registration(r7620,c2,s2241).registration12127,306921 -registration(r7620,c2,s2241).registration12127,306921 -registration(r7621,c47,s2241).registration12128,306951 -registration(r7621,c47,s2241).registration12128,306951 -registration(r7622,c190,s2242).registration12129,306982 -registration(r7622,c190,s2242).registration12129,306982 -registration(r7623,c229,s2242).registration12130,307014 -registration(r7623,c229,s2242).registration12130,307014 -registration(r7624,c213,s2242).registration12131,307046 -registration(r7624,c213,s2242).registration12131,307046 -registration(r7625,c231,s2243).registration12132,307078 -registration(r7625,c231,s2243).registration12132,307078 -registration(r7626,c121,s2243).registration12133,307110 -registration(r7626,c121,s2243).registration12133,307110 -registration(r7627,c44,s2243).registration12134,307142 -registration(r7627,c44,s2243).registration12134,307142 -registration(r7628,c124,s2243).registration12135,307173 -registration(r7628,c124,s2243).registration12135,307173 -registration(r7629,c177,s2244).registration12136,307205 -registration(r7629,c177,s2244).registration12136,307205 -registration(r7630,c67,s2244).registration12137,307237 -registration(r7630,c67,s2244).registration12137,307237 -registration(r7631,c173,s2244).registration12138,307268 -registration(r7631,c173,s2244).registration12138,307268 -registration(r7632,c25,s2245).registration12139,307300 -registration(r7632,c25,s2245).registration12139,307300 -registration(r7633,c81,s2245).registration12140,307331 -registration(r7633,c81,s2245).registration12140,307331 -registration(r7634,c151,s2245).registration12141,307362 -registration(r7634,c151,s2245).registration12141,307362 -registration(r7635,c3,s2245).registration12142,307394 -registration(r7635,c3,s2245).registration12142,307394 -registration(r7636,c66,s2246).registration12143,307424 -registration(r7636,c66,s2246).registration12143,307424 -registration(r7637,c249,s2246).registration12144,307455 -registration(r7637,c249,s2246).registration12144,307455 -registration(r7638,c241,s2246).registration12145,307487 -registration(r7638,c241,s2246).registration12145,307487 -registration(r7639,c245,s2247).registration12146,307519 -registration(r7639,c245,s2247).registration12146,307519 -registration(r7640,c212,s2247).registration12147,307551 -registration(r7640,c212,s2247).registration12147,307551 -registration(r7641,c127,s2247).registration12148,307583 -registration(r7641,c127,s2247).registration12148,307583 -registration(r7642,c101,s2248).registration12149,307615 -registration(r7642,c101,s2248).registration12149,307615 -registration(r7643,c179,s2248).registration12150,307647 -registration(r7643,c179,s2248).registration12150,307647 -registration(r7644,c241,s2248).registration12151,307679 -registration(r7644,c241,s2248).registration12151,307679 -registration(r7645,c107,s2249).registration12152,307711 -registration(r7645,c107,s2249).registration12152,307711 -registration(r7646,c5,s2249).registration12153,307743 -registration(r7646,c5,s2249).registration12153,307743 -registration(r7647,c6,s2249).registration12154,307773 -registration(r7647,c6,s2249).registration12154,307773 -registration(r7648,c182,s2250).registration12155,307803 -registration(r7648,c182,s2250).registration12155,307803 -registration(r7649,c209,s2250).registration12156,307835 -registration(r7649,c209,s2250).registration12156,307835 -registration(r7650,c46,s2250).registration12157,307867 -registration(r7650,c46,s2250).registration12157,307867 -registration(r7651,c72,s2251).registration12158,307898 -registration(r7651,c72,s2251).registration12158,307898 -registration(r7652,c77,s2251).registration12159,307929 -registration(r7652,c77,s2251).registration12159,307929 -registration(r7653,c216,s2251).registration12160,307960 -registration(r7653,c216,s2251).registration12160,307960 -registration(r7654,c219,s2252).registration12161,307992 -registration(r7654,c219,s2252).registration12161,307992 -registration(r7655,c44,s2252).registration12162,308024 -registration(r7655,c44,s2252).registration12162,308024 -registration(r7656,c88,s2252).registration12163,308055 -registration(r7656,c88,s2252).registration12163,308055 -registration(r7657,c217,s2253).registration12164,308086 -registration(r7657,c217,s2253).registration12164,308086 -registration(r7658,c194,s2253).registration12165,308118 -registration(r7658,c194,s2253).registration12165,308118 -registration(r7659,c167,s2253).registration12166,308150 -registration(r7659,c167,s2253).registration12166,308150 -registration(r7660,c60,s2254).registration12167,308182 -registration(r7660,c60,s2254).registration12167,308182 -registration(r7661,c192,s2254).registration12168,308213 -registration(r7661,c192,s2254).registration12168,308213 -registration(r7662,c82,s2254).registration12169,308245 -registration(r7662,c82,s2254).registration12169,308245 -registration(r7663,c153,s2254).registration12170,308276 -registration(r7663,c153,s2254).registration12170,308276 -registration(r7664,c153,s2255).registration12171,308308 -registration(r7664,c153,s2255).registration12171,308308 -registration(r7665,c159,s2255).registration12172,308340 -registration(r7665,c159,s2255).registration12172,308340 -registration(r7666,c242,s2255).registration12173,308372 -registration(r7666,c242,s2255).registration12173,308372 -registration(r7667,c32,s2255).registration12174,308404 -registration(r7667,c32,s2255).registration12174,308404 -registration(r7668,c248,s2256).registration12175,308435 -registration(r7668,c248,s2256).registration12175,308435 -registration(r7669,c79,s2256).registration12176,308467 -registration(r7669,c79,s2256).registration12176,308467 -registration(r7670,c165,s2256).registration12177,308498 -registration(r7670,c165,s2256).registration12177,308498 -registration(r7671,c242,s2257).registration12178,308530 -registration(r7671,c242,s2257).registration12178,308530 -registration(r7672,c18,s2257).registration12179,308562 -registration(r7672,c18,s2257).registration12179,308562 -registration(r7673,c131,s2257).registration12180,308593 -registration(r7673,c131,s2257).registration12180,308593 -registration(r7674,c176,s2258).registration12181,308625 -registration(r7674,c176,s2258).registration12181,308625 -registration(r7675,c169,s2258).registration12182,308657 -registration(r7675,c169,s2258).registration12182,308657 -registration(r7676,c188,s2258).registration12183,308689 -registration(r7676,c188,s2258).registration12183,308689 -registration(r7677,c127,s2259).registration12184,308721 -registration(r7677,c127,s2259).registration12184,308721 -registration(r7678,c44,s2259).registration12185,308753 -registration(r7678,c44,s2259).registration12185,308753 -registration(r7679,c222,s2259).registration12186,308784 -registration(r7679,c222,s2259).registration12186,308784 -registration(r7680,c104,s2259).registration12187,308816 -registration(r7680,c104,s2259).registration12187,308816 -registration(r7681,c113,s2260).registration12188,308848 -registration(r7681,c113,s2260).registration12188,308848 -registration(r7682,c151,s2260).registration12189,308880 -registration(r7682,c151,s2260).registration12189,308880 -registration(r7683,c55,s2260).registration12190,308912 -registration(r7683,c55,s2260).registration12190,308912 -registration(r7684,c215,s2260).registration12191,308943 -registration(r7684,c215,s2260).registration12191,308943 -registration(r7685,c81,s2261).registration12192,308975 -registration(r7685,c81,s2261).registration12192,308975 -registration(r7686,c87,s2261).registration12193,309006 -registration(r7686,c87,s2261).registration12193,309006 -registration(r7687,c247,s2261).registration12194,309037 -registration(r7687,c247,s2261).registration12194,309037 -registration(r7688,c71,s2262).registration12195,309069 -registration(r7688,c71,s2262).registration12195,309069 -registration(r7689,c160,s2262).registration12196,309100 -registration(r7689,c160,s2262).registration12196,309100 -registration(r7690,c137,s2262).registration12197,309132 -registration(r7690,c137,s2262).registration12197,309132 -registration(r7691,c155,s2263).registration12198,309164 -registration(r7691,c155,s2263).registration12198,309164 -registration(r7692,c99,s2263).registration12199,309196 -registration(r7692,c99,s2263).registration12199,309196 -registration(r7693,c227,s2263).registration12200,309227 -registration(r7693,c227,s2263).registration12200,309227 -registration(r7694,c140,s2263).registration12201,309259 -registration(r7694,c140,s2263).registration12201,309259 -registration(r7695,c69,s2264).registration12202,309291 -registration(r7695,c69,s2264).registration12202,309291 -registration(r7696,c152,s2264).registration12203,309322 -registration(r7696,c152,s2264).registration12203,309322 -registration(r7697,c16,s2264).registration12204,309354 -registration(r7697,c16,s2264).registration12204,309354 -registration(r7698,c239,s2265).registration12205,309385 -registration(r7698,c239,s2265).registration12205,309385 -registration(r7699,c226,s2265).registration12206,309417 -registration(r7699,c226,s2265).registration12206,309417 -registration(r7700,c45,s2265).registration12207,309449 -registration(r7700,c45,s2265).registration12207,309449 -registration(r7701,c196,s2266).registration12208,309480 -registration(r7701,c196,s2266).registration12208,309480 -registration(r7702,c198,s2266).registration12209,309512 -registration(r7702,c198,s2266).registration12209,309512 -registration(r7703,c178,s2266).registration12210,309544 -registration(r7703,c178,s2266).registration12210,309544 -registration(r7704,c4,s2267).registration12211,309576 -registration(r7704,c4,s2267).registration12211,309576 -registration(r7705,c76,s2267).registration12212,309606 -registration(r7705,c76,s2267).registration12212,309606 -registration(r7706,c150,s2267).registration12213,309637 -registration(r7706,c150,s2267).registration12213,309637 -registration(r7707,c221,s2268).registration12214,309669 -registration(r7707,c221,s2268).registration12214,309669 -registration(r7708,c158,s2268).registration12215,309701 -registration(r7708,c158,s2268).registration12215,309701 -registration(r7709,c36,s2268).registration12216,309733 -registration(r7709,c36,s2268).registration12216,309733 -registration(r7710,c192,s2268).registration12217,309764 -registration(r7710,c192,s2268).registration12217,309764 -registration(r7711,c33,s2269).registration12218,309796 -registration(r7711,c33,s2269).registration12218,309796 -registration(r7712,c20,s2269).registration12219,309827 -registration(r7712,c20,s2269).registration12219,309827 -registration(r7713,c75,s2269).registration12220,309858 -registration(r7713,c75,s2269).registration12220,309858 -registration(r7714,c142,s2270).registration12221,309889 -registration(r7714,c142,s2270).registration12221,309889 -registration(r7715,c206,s2270).registration12222,309921 -registration(r7715,c206,s2270).registration12222,309921 -registration(r7716,c178,s2270).registration12223,309953 -registration(r7716,c178,s2270).registration12223,309953 -registration(r7717,c161,s2271).registration12224,309985 -registration(r7717,c161,s2271).registration12224,309985 -registration(r7718,c54,s2271).registration12225,310017 -registration(r7718,c54,s2271).registration12225,310017 -registration(r7719,c193,s2271).registration12226,310048 -registration(r7719,c193,s2271).registration12226,310048 -registration(r7720,c139,s2271).registration12227,310080 -registration(r7720,c139,s2271).registration12227,310080 -registration(r7721,c246,s2272).registration12228,310112 -registration(r7721,c246,s2272).registration12228,310112 -registration(r7722,c63,s2272).registration12229,310144 -registration(r7722,c63,s2272).registration12229,310144 -registration(r7723,c122,s2272).registration12230,310175 -registration(r7723,c122,s2272).registration12230,310175 -registration(r7724,c198,s2273).registration12231,310207 -registration(r7724,c198,s2273).registration12231,310207 -registration(r7725,c41,s2273).registration12232,310239 -registration(r7725,c41,s2273).registration12232,310239 -registration(r7726,c68,s2273).registration12233,310270 -registration(r7726,c68,s2273).registration12233,310270 -registration(r7727,c227,s2273).registration12234,310301 -registration(r7727,c227,s2273).registration12234,310301 -registration(r7728,c135,s2274).registration12235,310333 -registration(r7728,c135,s2274).registration12235,310333 -registration(r7729,c197,s2274).registration12236,310365 -registration(r7729,c197,s2274).registration12236,310365 -registration(r7730,c20,s2274).registration12237,310397 -registration(r7730,c20,s2274).registration12237,310397 -registration(r7731,c40,s2275).registration12238,310428 -registration(r7731,c40,s2275).registration12238,310428 -registration(r7732,c146,s2275).registration12239,310459 -registration(r7732,c146,s2275).registration12239,310459 -registration(r7733,c28,s2275).registration12240,310491 -registration(r7733,c28,s2275).registration12240,310491 -registration(r7734,c234,s2275).registration12241,310522 -registration(r7734,c234,s2275).registration12241,310522 -registration(r7735,c124,s2276).registration12242,310554 -registration(r7735,c124,s2276).registration12242,310554 -registration(r7736,c115,s2276).registration12243,310586 -registration(r7736,c115,s2276).registration12243,310586 -registration(r7737,c126,s2276).registration12244,310618 -registration(r7737,c126,s2276).registration12244,310618 -registration(r7738,c172,s2276).registration12245,310650 -registration(r7738,c172,s2276).registration12245,310650 -registration(r7739,c78,s2277).registration12246,310682 -registration(r7739,c78,s2277).registration12246,310682 -registration(r7740,c55,s2277).registration12247,310713 -registration(r7740,c55,s2277).registration12247,310713 -registration(r7741,c196,s2277).registration12248,310744 -registration(r7741,c196,s2277).registration12248,310744 -registration(r7742,c62,s2278).registration12249,310776 -registration(r7742,c62,s2278).registration12249,310776 -registration(r7743,c217,s2278).registration12250,310807 -registration(r7743,c217,s2278).registration12250,310807 -registration(r7744,c188,s2278).registration12251,310839 -registration(r7744,c188,s2278).registration12251,310839 -registration(r7745,c2,s2278).registration12252,310871 -registration(r7745,c2,s2278).registration12252,310871 -registration(r7746,c104,s2278).registration12253,310901 -registration(r7746,c104,s2278).registration12253,310901 -registration(r7747,c9,s2279).registration12254,310933 -registration(r7747,c9,s2279).registration12254,310933 -registration(r7748,c228,s2279).registration12255,310963 -registration(r7748,c228,s2279).registration12255,310963 -registration(r7749,c240,s2279).registration12256,310995 -registration(r7749,c240,s2279).registration12256,310995 -registration(r7750,c57,s2280).registration12257,311027 -registration(r7750,c57,s2280).registration12257,311027 -registration(r7751,c181,s2280).registration12258,311058 -registration(r7751,c181,s2280).registration12258,311058 -registration(r7752,c32,s2280).registration12259,311090 -registration(r7752,c32,s2280).registration12259,311090 -registration(r7753,c235,s2281).registration12260,311121 -registration(r7753,c235,s2281).registration12260,311121 -registration(r7754,c236,s2281).registration12261,311153 -registration(r7754,c236,s2281).registration12261,311153 -registration(r7755,c186,s2281).registration12262,311185 -registration(r7755,c186,s2281).registration12262,311185 -registration(r7756,c57,s2282).registration12263,311217 -registration(r7756,c57,s2282).registration12263,311217 -registration(r7757,c135,s2282).registration12264,311248 -registration(r7757,c135,s2282).registration12264,311248 -registration(r7758,c12,s2282).registration12265,311280 -registration(r7758,c12,s2282).registration12265,311280 -registration(r7759,c67,s2283).registration12266,311311 -registration(r7759,c67,s2283).registration12266,311311 -registration(r7760,c60,s2283).registration12267,311342 -registration(r7760,c60,s2283).registration12267,311342 -registration(r7761,c26,s2283).registration12268,311373 -registration(r7761,c26,s2283).registration12268,311373 -registration(r7762,c243,s2284).registration12269,311404 -registration(r7762,c243,s2284).registration12269,311404 -registration(r7763,c119,s2284).registration12270,311436 -registration(r7763,c119,s2284).registration12270,311436 -registration(r7764,c129,s2284).registration12271,311468 -registration(r7764,c129,s2284).registration12271,311468 -registration(r7765,c233,s2285).registration12272,311500 -registration(r7765,c233,s2285).registration12272,311500 -registration(r7766,c0,s2285).registration12273,311532 -registration(r7766,c0,s2285).registration12273,311532 -registration(r7767,c92,s2285).registration12274,311562 -registration(r7767,c92,s2285).registration12274,311562 -registration(r7768,c85,s2286).registration12275,311593 -registration(r7768,c85,s2286).registration12275,311593 -registration(r7769,c19,s2286).registration12276,311624 -registration(r7769,c19,s2286).registration12276,311624 -registration(r7770,c133,s2286).registration12277,311655 -registration(r7770,c133,s2286).registration12277,311655 -registration(r7771,c85,s2287).registration12278,311687 -registration(r7771,c85,s2287).registration12278,311687 -registration(r7772,c97,s2287).registration12279,311718 -registration(r7772,c97,s2287).registration12279,311718 -registration(r7773,c203,s2287).registration12280,311749 -registration(r7773,c203,s2287).registration12280,311749 -registration(r7774,c200,s2287).registration12281,311781 -registration(r7774,c200,s2287).registration12281,311781 -registration(r7775,c74,s2287).registration12282,311813 -registration(r7775,c74,s2287).registration12282,311813 -registration(r7776,c79,s2288).registration12283,311844 -registration(r7776,c79,s2288).registration12283,311844 -registration(r7777,c56,s2288).registration12284,311875 -registration(r7777,c56,s2288).registration12284,311875 -registration(r7778,c196,s2288).registration12285,311906 -registration(r7778,c196,s2288).registration12285,311906 -registration(r7779,c124,s2288).registration12286,311938 -registration(r7779,c124,s2288).registration12286,311938 -registration(r7780,c63,s2288).registration12287,311970 -registration(r7780,c63,s2288).registration12287,311970 -registration(r7781,c55,s2289).registration12288,312001 -registration(r7781,c55,s2289).registration12288,312001 -registration(r7782,c124,s2289).registration12289,312032 -registration(r7782,c124,s2289).registration12289,312032 -registration(r7783,c51,s2289).registration12290,312064 -registration(r7783,c51,s2289).registration12290,312064 -registration(r7784,c42,s2290).registration12291,312095 -registration(r7784,c42,s2290).registration12291,312095 -registration(r7785,c40,s2290).registration12292,312126 -registration(r7785,c40,s2290).registration12292,312126 -registration(r7786,c231,s2290).registration12293,312157 -registration(r7786,c231,s2290).registration12293,312157 -registration(r7787,c133,s2290).registration12294,312189 -registration(r7787,c133,s2290).registration12294,312189 -registration(r7788,c249,s2291).registration12295,312221 -registration(r7788,c249,s2291).registration12295,312221 -registration(r7789,c217,s2291).registration12296,312253 -registration(r7789,c217,s2291).registration12296,312253 -registration(r7790,c210,s2291).registration12297,312285 -registration(r7790,c210,s2291).registration12297,312285 -registration(r7791,c179,s2292).registration12298,312317 -registration(r7791,c179,s2292).registration12298,312317 -registration(r7792,c211,s2292).registration12299,312349 -registration(r7792,c211,s2292).registration12299,312349 -registration(r7793,c176,s2292).registration12300,312381 -registration(r7793,c176,s2292).registration12300,312381 -registration(r7794,c122,s2293).registration12301,312413 -registration(r7794,c122,s2293).registration12301,312413 -registration(r7795,c171,s2293).registration12302,312445 -registration(r7795,c171,s2293).registration12302,312445 -registration(r7796,c48,s2293).registration12303,312477 -registration(r7796,c48,s2293).registration12303,312477 -registration(r7797,c245,s2294).registration12304,312508 -registration(r7797,c245,s2294).registration12304,312508 -registration(r7798,c239,s2294).registration12305,312540 -registration(r7798,c239,s2294).registration12305,312540 -registration(r7799,c95,s2294).registration12306,312572 -registration(r7799,c95,s2294).registration12306,312572 -registration(r7800,c151,s2294).registration12307,312603 -registration(r7800,c151,s2294).registration12307,312603 -registration(r7801,c113,s2295).registration12308,312635 -registration(r7801,c113,s2295).registration12308,312635 -registration(r7802,c99,s2295).registration12309,312667 -registration(r7802,c99,s2295).registration12309,312667 -registration(r7803,c71,s2295).registration12310,312698 -registration(r7803,c71,s2295).registration12310,312698 -registration(r7804,c112,s2296).registration12311,312729 -registration(r7804,c112,s2296).registration12311,312729 -registration(r7805,c84,s2296).registration12312,312761 -registration(r7805,c84,s2296).registration12312,312761 -registration(r7806,c184,s2296).registration12313,312792 -registration(r7806,c184,s2296).registration12313,312792 -registration(r7807,c177,s2296).registration12314,312824 -registration(r7807,c177,s2296).registration12314,312824 -registration(r7808,c207,s2297).registration12315,312856 -registration(r7808,c207,s2297).registration12315,312856 -registration(r7809,c235,s2297).registration12316,312888 -registration(r7809,c235,s2297).registration12316,312888 -registration(r7810,c47,s2297).registration12317,312920 -registration(r7810,c47,s2297).registration12317,312920 -registration(r7811,c157,s2297).registration12318,312951 -registration(r7811,c157,s2297).registration12318,312951 -registration(r7812,c208,s2297).registration12319,312983 -registration(r7812,c208,s2297).registration12319,312983 -registration(r7813,c29,s2298).registration12320,313015 -registration(r7813,c29,s2298).registration12320,313015 -registration(r7814,c232,s2298).registration12321,313046 -registration(r7814,c232,s2298).registration12321,313046 -registration(r7815,c76,s2298).registration12322,313078 -registration(r7815,c76,s2298).registration12322,313078 -registration(r7816,c22,s2298).registration12323,313109 -registration(r7816,c22,s2298).registration12323,313109 -registration(r7817,c172,s2299).registration12324,313140 -registration(r7817,c172,s2299).registration12324,313140 -registration(r7818,c13,s2299).registration12325,313172 -registration(r7818,c13,s2299).registration12325,313172 -registration(r7819,c7,s2299).registration12326,313203 -registration(r7819,c7,s2299).registration12326,313203 -registration(r7820,c3,s2299).registration12327,313233 -registration(r7820,c3,s2299).registration12327,313233 -registration(r7821,c165,s2300).registration12328,313263 -registration(r7821,c165,s2300).registration12328,313263 -registration(r7822,c116,s2300).registration12329,313295 -registration(r7822,c116,s2300).registration12329,313295 -registration(r7823,c154,s2300).registration12330,313327 -registration(r7823,c154,s2300).registration12330,313327 -registration(r7824,c40,s2301).registration12331,313359 -registration(r7824,c40,s2301).registration12331,313359 -registration(r7825,c93,s2301).registration12332,313390 -registration(r7825,c93,s2301).registration12332,313390 -registration(r7826,c56,s2301).registration12333,313421 -registration(r7826,c56,s2301).registration12333,313421 -registration(r7827,c78,s2302).registration12334,313452 -registration(r7827,c78,s2302).registration12334,313452 -registration(r7828,c147,s2302).registration12335,313483 -registration(r7828,c147,s2302).registration12335,313483 -registration(r7829,c32,s2302).registration12336,313515 -registration(r7829,c32,s2302).registration12336,313515 -registration(r7830,c64,s2303).registration12337,313546 -registration(r7830,c64,s2303).registration12337,313546 -registration(r7831,c216,s2303).registration12338,313577 -registration(r7831,c216,s2303).registration12338,313577 -registration(r7832,c196,s2303).registration12339,313609 -registration(r7832,c196,s2303).registration12339,313609 -registration(r7833,c245,s2303).registration12340,313641 -registration(r7833,c245,s2303).registration12340,313641 -registration(r7834,c93,s2304).registration12341,313673 -registration(r7834,c93,s2304).registration12341,313673 -registration(r7835,c190,s2304).registration12342,313704 -registration(r7835,c190,s2304).registration12342,313704 -registration(r7836,c198,s2304).registration12343,313736 -registration(r7836,c198,s2304).registration12343,313736 -registration(r7837,c211,s2305).registration12344,313768 -registration(r7837,c211,s2305).registration12344,313768 -registration(r7838,c123,s2305).registration12345,313800 -registration(r7838,c123,s2305).registration12345,313800 -registration(r7839,c118,s2305).registration12346,313832 -registration(r7839,c118,s2305).registration12346,313832 -registration(r7840,c28,s2306).registration12347,313864 -registration(r7840,c28,s2306).registration12347,313864 -registration(r7841,c76,s2306).registration12348,313895 -registration(r7841,c76,s2306).registration12348,313895 -registration(r7842,c78,s2306).registration12349,313926 -registration(r7842,c78,s2306).registration12349,313926 -registration(r7843,c47,s2306).registration12350,313957 -registration(r7843,c47,s2306).registration12350,313957 -registration(r7844,c102,s2307).registration12351,313988 -registration(r7844,c102,s2307).registration12351,313988 -registration(r7845,c104,s2307).registration12352,314020 -registration(r7845,c104,s2307).registration12352,314020 -registration(r7846,c86,s2307).registration12353,314052 -registration(r7846,c86,s2307).registration12353,314052 -registration(r7847,c233,s2308).registration12354,314083 -registration(r7847,c233,s2308).registration12354,314083 -registration(r7848,c216,s2308).registration12355,314115 -registration(r7848,c216,s2308).registration12355,314115 -registration(r7849,c239,s2308).registration12356,314147 -registration(r7849,c239,s2308).registration12356,314147 -registration(r7850,c197,s2308).registration12357,314179 -registration(r7850,c197,s2308).registration12357,314179 -registration(r7851,c112,s2309).registration12358,314211 -registration(r7851,c112,s2309).registration12358,314211 -registration(r7852,c43,s2309).registration12359,314243 -registration(r7852,c43,s2309).registration12359,314243 -registration(r7853,c189,s2309).registration12360,314274 -registration(r7853,c189,s2309).registration12360,314274 -registration(r7854,c137,s2309).registration12361,314306 -registration(r7854,c137,s2309).registration12361,314306 -registration(r7855,c226,s2310).registration12362,314338 -registration(r7855,c226,s2310).registration12362,314338 -registration(r7856,c254,s2310).registration12363,314370 -registration(r7856,c254,s2310).registration12363,314370 -registration(r7857,c229,s2310).registration12364,314402 -registration(r7857,c229,s2310).registration12364,314402 -registration(r7858,c93,s2311).registration12365,314434 -registration(r7858,c93,s2311).registration12365,314434 -registration(r7859,c142,s2311).registration12366,314465 -registration(r7859,c142,s2311).registration12366,314465 -registration(r7860,c43,s2311).registration12367,314497 -registration(r7860,c43,s2311).registration12367,314497 -registration(r7861,c121,s2312).registration12368,314528 -registration(r7861,c121,s2312).registration12368,314528 -registration(r7862,c132,s2312).registration12369,314560 -registration(r7862,c132,s2312).registration12369,314560 -registration(r7863,c9,s2312).registration12370,314592 -registration(r7863,c9,s2312).registration12370,314592 -registration(r7864,c112,s2313).registration12371,314622 -registration(r7864,c112,s2313).registration12371,314622 -registration(r7865,c69,s2313).registration12372,314654 -registration(r7865,c69,s2313).registration12372,314654 -registration(r7866,c164,s2313).registration12373,314685 -registration(r7866,c164,s2313).registration12373,314685 -registration(r7867,c46,s2313).registration12374,314717 -registration(r7867,c46,s2313).registration12374,314717 -registration(r7868,c22,s2314).registration12375,314748 -registration(r7868,c22,s2314).registration12375,314748 -registration(r7869,c218,s2314).registration12376,314779 -registration(r7869,c218,s2314).registration12376,314779 -registration(r7870,c151,s2314).registration12377,314811 -registration(r7870,c151,s2314).registration12377,314811 -registration(r7871,c195,s2315).registration12378,314843 -registration(r7871,c195,s2315).registration12378,314843 -registration(r7872,c154,s2315).registration12379,314875 -registration(r7872,c154,s2315).registration12379,314875 -registration(r7873,c103,s2315).registration12380,314907 -registration(r7873,c103,s2315).registration12380,314907 -registration(r7874,c73,s2315).registration12381,314939 -registration(r7874,c73,s2315).registration12381,314939 -registration(r7875,c75,s2316).registration12382,314970 -registration(r7875,c75,s2316).registration12382,314970 -registration(r7876,c252,s2316).registration12383,315001 -registration(r7876,c252,s2316).registration12383,315001 -registration(r7877,c1,s2316).registration12384,315033 -registration(r7877,c1,s2316).registration12384,315033 -registration(r7878,c142,s2317).registration12385,315063 -registration(r7878,c142,s2317).registration12385,315063 -registration(r7879,c240,s2317).registration12386,315095 -registration(r7879,c240,s2317).registration12386,315095 -registration(r7880,c211,s2317).registration12387,315127 -registration(r7880,c211,s2317).registration12387,315127 -registration(r7881,c88,s2318).registration12388,315159 -registration(r7881,c88,s2318).registration12388,315159 -registration(r7882,c114,s2318).registration12389,315190 -registration(r7882,c114,s2318).registration12389,315190 -registration(r7883,c89,s2318).registration12390,315222 -registration(r7883,c89,s2318).registration12390,315222 -registration(r7884,c159,s2319).registration12391,315253 -registration(r7884,c159,s2319).registration12391,315253 -registration(r7885,c230,s2319).registration12392,315285 -registration(r7885,c230,s2319).registration12392,315285 -registration(r7886,c9,s2319).registration12393,315317 -registration(r7886,c9,s2319).registration12393,315317 -registration(r7887,c32,s2320).registration12394,315347 -registration(r7887,c32,s2320).registration12394,315347 -registration(r7888,c169,s2320).registration12395,315378 -registration(r7888,c169,s2320).registration12395,315378 -registration(r7889,c251,s2320).registration12396,315410 -registration(r7889,c251,s2320).registration12396,315410 -registration(r7890,c190,s2321).registration12397,315442 -registration(r7890,c190,s2321).registration12397,315442 -registration(r7891,c152,s2321).registration12398,315474 -registration(r7891,c152,s2321).registration12398,315474 -registration(r7892,c91,s2321).registration12399,315506 -registration(r7892,c91,s2321).registration12399,315506 -registration(r7893,c175,s2321).registration12400,315537 -registration(r7893,c175,s2321).registration12400,315537 -registration(r7894,c87,s2322).registration12401,315569 -registration(r7894,c87,s2322).registration12401,315569 -registration(r7895,c171,s2322).registration12402,315600 -registration(r7895,c171,s2322).registration12402,315600 -registration(r7896,c167,s2322).registration12403,315632 -registration(r7896,c167,s2322).registration12403,315632 -registration(r7897,c5,s2322).registration12404,315664 -registration(r7897,c5,s2322).registration12404,315664 -registration(r7898,c12,s2323).registration12405,315694 -registration(r7898,c12,s2323).registration12405,315694 -registration(r7899,c218,s2323).registration12406,315725 -registration(r7899,c218,s2323).registration12406,315725 -registration(r7900,c159,s2323).registration12407,315757 -registration(r7900,c159,s2323).registration12407,315757 -registration(r7901,c19,s2323).registration12408,315789 -registration(r7901,c19,s2323).registration12408,315789 -registration(r7902,c208,s2324).registration12409,315820 -registration(r7902,c208,s2324).registration12409,315820 -registration(r7903,c117,s2324).registration12410,315852 -registration(r7903,c117,s2324).registration12410,315852 -registration(r7904,c245,s2324).registration12411,315884 -registration(r7904,c245,s2324).registration12411,315884 -registration(r7905,c255,s2325).registration12412,315916 -registration(r7905,c255,s2325).registration12412,315916 -registration(r7906,c62,s2325).registration12413,315948 -registration(r7906,c62,s2325).registration12413,315948 -registration(r7907,c192,s2325).registration12414,315979 -registration(r7907,c192,s2325).registration12414,315979 -registration(r7908,c231,s2325).registration12415,316011 -registration(r7908,c231,s2325).registration12415,316011 -registration(r7909,c29,s2326).registration12416,316043 -registration(r7909,c29,s2326).registration12416,316043 -registration(r7910,c221,s2326).registration12417,316074 -registration(r7910,c221,s2326).registration12417,316074 -registration(r7911,c123,s2326).registration12418,316106 -registration(r7911,c123,s2326).registration12418,316106 -registration(r7912,c135,s2327).registration12419,316138 -registration(r7912,c135,s2327).registration12419,316138 -registration(r7913,c101,s2327).registration12420,316170 -registration(r7913,c101,s2327).registration12420,316170 -registration(r7914,c224,s2327).registration12421,316202 -registration(r7914,c224,s2327).registration12421,316202 -registration(r7915,c137,s2327).registration12422,316234 -registration(r7915,c137,s2327).registration12422,316234 -registration(r7916,c250,s2328).registration12423,316266 -registration(r7916,c250,s2328).registration12423,316266 -registration(r7917,c22,s2328).registration12424,316298 -registration(r7917,c22,s2328).registration12424,316298 -registration(r7918,c191,s2328).registration12425,316329 -registration(r7918,c191,s2328).registration12425,316329 -registration(r7919,c239,s2328).registration12426,316361 -registration(r7919,c239,s2328).registration12426,316361 -registration(r7920,c125,s2329).registration12427,316393 -registration(r7920,c125,s2329).registration12427,316393 -registration(r7921,c35,s2329).registration12428,316425 -registration(r7921,c35,s2329).registration12428,316425 -registration(r7922,c114,s2329).registration12429,316456 -registration(r7922,c114,s2329).registration12429,316456 -registration(r7923,c104,s2330).registration12430,316488 -registration(r7923,c104,s2330).registration12430,316488 -registration(r7924,c190,s2330).registration12431,316520 -registration(r7924,c190,s2330).registration12431,316520 -registration(r7925,c246,s2330).registration12432,316552 -registration(r7925,c246,s2330).registration12432,316552 -registration(r7926,c182,s2331).registration12433,316584 -registration(r7926,c182,s2331).registration12433,316584 -registration(r7927,c134,s2331).registration12434,316616 -registration(r7927,c134,s2331).registration12434,316616 -registration(r7928,c229,s2331).registration12435,316648 -registration(r7928,c229,s2331).registration12435,316648 -registration(r7929,c194,s2332).registration12436,316680 -registration(r7929,c194,s2332).registration12436,316680 -registration(r7930,c238,s2332).registration12437,316712 -registration(r7930,c238,s2332).registration12437,316712 -registration(r7931,c89,s2332).registration12438,316744 -registration(r7931,c89,s2332).registration12438,316744 -registration(r7932,c192,s2333).registration12439,316775 -registration(r7932,c192,s2333).registration12439,316775 -registration(r7933,c221,s2333).registration12440,316807 -registration(r7933,c221,s2333).registration12440,316807 -registration(r7934,c83,s2333).registration12441,316839 -registration(r7934,c83,s2333).registration12441,316839 -registration(r7935,c78,s2334).registration12442,316870 -registration(r7935,c78,s2334).registration12442,316870 -registration(r7936,c232,s2334).registration12443,316901 -registration(r7936,c232,s2334).registration12443,316901 -registration(r7937,c37,s2334).registration12444,316933 -registration(r7937,c37,s2334).registration12444,316933 -registration(r7938,c134,s2335).registration12445,316964 -registration(r7938,c134,s2335).registration12445,316964 -registration(r7939,c211,s2335).registration12446,316996 -registration(r7939,c211,s2335).registration12446,316996 -registration(r7940,c252,s2335).registration12447,317028 -registration(r7940,c252,s2335).registration12447,317028 -registration(r7941,c148,s2335).registration12448,317060 -registration(r7941,c148,s2335).registration12448,317060 -registration(r7942,c96,s2336).registration12449,317092 -registration(r7942,c96,s2336).registration12449,317092 -registration(r7943,c224,s2336).registration12450,317123 -registration(r7943,c224,s2336).registration12450,317123 -registration(r7944,c139,s2336).registration12451,317155 -registration(r7944,c139,s2336).registration12451,317155 -registration(r7945,c66,s2337).registration12452,317187 -registration(r7945,c66,s2337).registration12452,317187 -registration(r7946,c79,s2337).registration12453,317218 -registration(r7946,c79,s2337).registration12453,317218 -registration(r7947,c195,s2337).registration12454,317249 -registration(r7947,c195,s2337).registration12454,317249 -registration(r7948,c133,s2338).registration12455,317281 -registration(r7948,c133,s2338).registration12455,317281 -registration(r7949,c164,s2338).registration12456,317313 -registration(r7949,c164,s2338).registration12456,317313 -registration(r7950,c76,s2338).registration12457,317345 -registration(r7950,c76,s2338).registration12457,317345 -registration(r7951,c13,s2338).registration12458,317376 -registration(r7951,c13,s2338).registration12458,317376 -registration(r7952,c95,s2339).registration12459,317407 -registration(r7952,c95,s2339).registration12459,317407 -registration(r7953,c110,s2339).registration12460,317438 -registration(r7953,c110,s2339).registration12460,317438 -registration(r7954,c223,s2339).registration12461,317470 -registration(r7954,c223,s2339).registration12461,317470 -registration(r7955,c199,s2340).registration12462,317502 -registration(r7955,c199,s2340).registration12462,317502 -registration(r7956,c235,s2340).registration12463,317534 -registration(r7956,c235,s2340).registration12463,317534 -registration(r7957,c17,s2340).registration12464,317566 -registration(r7957,c17,s2340).registration12464,317566 -registration(r7958,c228,s2341).registration12465,317597 -registration(r7958,c228,s2341).registration12465,317597 -registration(r7959,c155,s2341).registration12466,317629 -registration(r7959,c155,s2341).registration12466,317629 -registration(r7960,c105,s2341).registration12467,317661 -registration(r7960,c105,s2341).registration12467,317661 -registration(r7961,c48,s2341).registration12468,317693 -registration(r7961,c48,s2341).registration12468,317693 -registration(r7962,c230,s2342).registration12469,317724 -registration(r7962,c230,s2342).registration12469,317724 -registration(r7963,c187,s2342).registration12470,317756 -registration(r7963,c187,s2342).registration12470,317756 -registration(r7964,c145,s2342).registration12471,317788 -registration(r7964,c145,s2342).registration12471,317788 -registration(r7965,c225,s2343).registration12472,317820 -registration(r7965,c225,s2343).registration12472,317820 -registration(r7966,c133,s2343).registration12473,317852 -registration(r7966,c133,s2343).registration12473,317852 -registration(r7967,c179,s2343).registration12474,317884 -registration(r7967,c179,s2343).registration12474,317884 -registration(r7968,c87,s2343).registration12475,317916 -registration(r7968,c87,s2343).registration12475,317916 -registration(r7969,c33,s2344).registration12476,317947 -registration(r7969,c33,s2344).registration12476,317947 -registration(r7970,c142,s2344).registration12477,317978 -registration(r7970,c142,s2344).registration12477,317978 -registration(r7971,c113,s2344).registration12478,318010 -registration(r7971,c113,s2344).registration12478,318010 -registration(r7972,c237,s2344).registration12479,318042 -registration(r7972,c237,s2344).registration12479,318042 -registration(r7973,c14,s2345).registration12480,318074 -registration(r7973,c14,s2345).registration12480,318074 -registration(r7974,c178,s2345).registration12481,318105 -registration(r7974,c178,s2345).registration12481,318105 -registration(r7975,c155,s2345).registration12482,318137 -registration(r7975,c155,s2345).registration12482,318137 -registration(r7976,c173,s2346).registration12483,318169 -registration(r7976,c173,s2346).registration12483,318169 -registration(r7977,c116,s2346).registration12484,318201 -registration(r7977,c116,s2346).registration12484,318201 -registration(r7978,c14,s2346).registration12485,318233 -registration(r7978,c14,s2346).registration12485,318233 -registration(r7979,c121,s2346).registration12486,318264 -registration(r7979,c121,s2346).registration12486,318264 -registration(r7980,c152,s2347).registration12487,318296 -registration(r7980,c152,s2347).registration12487,318296 -registration(r7981,c65,s2347).registration12488,318328 -registration(r7981,c65,s2347).registration12488,318328 -registration(r7982,c67,s2347).registration12489,318359 -registration(r7982,c67,s2347).registration12489,318359 -registration(r7983,c214,s2348).registration12490,318390 -registration(r7983,c214,s2348).registration12490,318390 -registration(r7984,c66,s2348).registration12491,318422 -registration(r7984,c66,s2348).registration12491,318422 -registration(r7985,c253,s2348).registration12492,318453 -registration(r7985,c253,s2348).registration12492,318453 -registration(r7986,c177,s2349).registration12493,318485 -registration(r7986,c177,s2349).registration12493,318485 -registration(r7987,c140,s2349).registration12494,318517 -registration(r7987,c140,s2349).registration12494,318517 -registration(r7988,c213,s2349).registration12495,318549 -registration(r7988,c213,s2349).registration12495,318549 -registration(r7989,c173,s2349).registration12496,318581 -registration(r7989,c173,s2349).registration12496,318581 -registration(r7990,c123,s2350).registration12497,318613 -registration(r7990,c123,s2350).registration12497,318613 -registration(r7991,c222,s2350).registration12498,318645 -registration(r7991,c222,s2350).registration12498,318645 -registration(r7992,c80,s2350).registration12499,318677 -registration(r7992,c80,s2350).registration12499,318677 -registration(r7993,c3,s2351).registration12500,318708 -registration(r7993,c3,s2351).registration12500,318708 -registration(r7994,c246,s2351).registration12501,318738 -registration(r7994,c246,s2351).registration12501,318738 -registration(r7995,c192,s2351).registration12502,318770 -registration(r7995,c192,s2351).registration12502,318770 -registration(r7996,c54,s2352).registration12503,318802 -registration(r7996,c54,s2352).registration12503,318802 -registration(r7997,c175,s2352).registration12504,318833 -registration(r7997,c175,s2352).registration12504,318833 -registration(r7998,c53,s2352).registration12505,318865 -registration(r7998,c53,s2352).registration12505,318865 -registration(r7999,c207,s2352).registration12506,318896 -registration(r7999,c207,s2352).registration12506,318896 -registration(r8000,c137,s2353).registration12507,318928 -registration(r8000,c137,s2353).registration12507,318928 -registration(r8001,c106,s2353).registration12508,318960 -registration(r8001,c106,s2353).registration12508,318960 -registration(r8002,c77,s2353).registration12509,318992 -registration(r8002,c77,s2353).registration12509,318992 -registration(r8003,c145,s2354).registration12510,319023 -registration(r8003,c145,s2354).registration12510,319023 -registration(r8004,c133,s2354).registration12511,319055 -registration(r8004,c133,s2354).registration12511,319055 -registration(r8005,c249,s2354).registration12512,319087 -registration(r8005,c249,s2354).registration12512,319087 -registration(r8006,c134,s2355).registration12513,319119 -registration(r8006,c134,s2355).registration12513,319119 -registration(r8007,c48,s2355).registration12514,319151 -registration(r8007,c48,s2355).registration12514,319151 -registration(r8008,c65,s2355).registration12515,319182 -registration(r8008,c65,s2355).registration12515,319182 -registration(r8009,c189,s2356).registration12516,319213 -registration(r8009,c189,s2356).registration12516,319213 -registration(r8010,c19,s2356).registration12517,319245 -registration(r8010,c19,s2356).registration12517,319245 -registration(r8011,c229,s2356).registration12518,319276 -registration(r8011,c229,s2356).registration12518,319276 -registration(r8012,c255,s2356).registration12519,319308 -registration(r8012,c255,s2356).registration12519,319308 -registration(r8013,c15,s2357).registration12520,319340 -registration(r8013,c15,s2357).registration12520,319340 -registration(r8014,c193,s2357).registration12521,319371 -registration(r8014,c193,s2357).registration12521,319371 -registration(r8015,c136,s2357).registration12522,319403 -registration(r8015,c136,s2357).registration12522,319403 -registration(r8016,c55,s2358).registration12523,319435 -registration(r8016,c55,s2358).registration12523,319435 -registration(r8017,c233,s2358).registration12524,319466 -registration(r8017,c233,s2358).registration12524,319466 -registration(r8018,c62,s2358).registration12525,319498 -registration(r8018,c62,s2358).registration12525,319498 -registration(r8019,c199,s2359).registration12526,319529 -registration(r8019,c199,s2359).registration12526,319529 -registration(r8020,c202,s2359).registration12527,319561 -registration(r8020,c202,s2359).registration12527,319561 -registration(r8021,c6,s2359).registration12528,319593 -registration(r8021,c6,s2359).registration12528,319593 -registration(r8022,c150,s2359).registration12529,319623 -registration(r8022,c150,s2359).registration12529,319623 -registration(r8023,c213,s2360).registration12530,319655 -registration(r8023,c213,s2360).registration12530,319655 -registration(r8024,c5,s2360).registration12531,319687 -registration(r8024,c5,s2360).registration12531,319687 -registration(r8025,c242,s2360).registration12532,319717 -registration(r8025,c242,s2360).registration12532,319717 -registration(r8026,c139,s2360).registration12533,319749 -registration(r8026,c139,s2360).registration12533,319749 -registration(r8027,c77,s2360).registration12534,319781 -registration(r8027,c77,s2360).registration12534,319781 -registration(r8028,c193,s2361).registration12535,319812 -registration(r8028,c193,s2361).registration12535,319812 -registration(r8029,c182,s2361).registration12536,319844 -registration(r8029,c182,s2361).registration12536,319844 -registration(r8030,c11,s2361).registration12537,319876 -registration(r8030,c11,s2361).registration12537,319876 -registration(r8031,c35,s2362).registration12538,319907 -registration(r8031,c35,s2362).registration12538,319907 -registration(r8032,c212,s2362).registration12539,319938 -registration(r8032,c212,s2362).registration12539,319938 -registration(r8033,c132,s2362).registration12540,319970 -registration(r8033,c132,s2362).registration12540,319970 -registration(r8034,c149,s2362).registration12541,320002 -registration(r8034,c149,s2362).registration12541,320002 -registration(r8035,c230,s2362).registration12542,320034 -registration(r8035,c230,s2362).registration12542,320034 -registration(r8036,c140,s2363).registration12543,320066 -registration(r8036,c140,s2363).registration12543,320066 -registration(r8037,c68,s2363).registration12544,320098 -registration(r8037,c68,s2363).registration12544,320098 -registration(r8038,c207,s2363).registration12545,320129 -registration(r8038,c207,s2363).registration12545,320129 -registration(r8039,c135,s2364).registration12546,320161 -registration(r8039,c135,s2364).registration12546,320161 -registration(r8040,c146,s2364).registration12547,320193 -registration(r8040,c146,s2364).registration12547,320193 -registration(r8041,c109,s2364).registration12548,320225 -registration(r8041,c109,s2364).registration12548,320225 -registration(r8042,c122,s2365).registration12549,320257 -registration(r8042,c122,s2365).registration12549,320257 -registration(r8043,c37,s2365).registration12550,320289 -registration(r8043,c37,s2365).registration12550,320289 -registration(r8044,c183,s2365).registration12551,320320 -registration(r8044,c183,s2365).registration12551,320320 -registration(r8045,c195,s2365).registration12552,320352 -registration(r8045,c195,s2365).registration12552,320352 -registration(r8046,c11,s2366).registration12553,320384 -registration(r8046,c11,s2366).registration12553,320384 -registration(r8047,c59,s2366).registration12554,320415 -registration(r8047,c59,s2366).registration12554,320415 -registration(r8048,c17,s2366).registration12555,320446 -registration(r8048,c17,s2366).registration12555,320446 -registration(r8049,c28,s2367).registration12556,320477 -registration(r8049,c28,s2367).registration12556,320477 -registration(r8050,c162,s2367).registration12557,320508 -registration(r8050,c162,s2367).registration12557,320508 -registration(r8051,c141,s2367).registration12558,320540 -registration(r8051,c141,s2367).registration12558,320540 -registration(r8052,c17,s2368).registration12559,320572 -registration(r8052,c17,s2368).registration12559,320572 -registration(r8053,c115,s2368).registration12560,320603 -registration(r8053,c115,s2368).registration12560,320603 -registration(r8054,c12,s2368).registration12561,320635 -registration(r8054,c12,s2368).registration12561,320635 -registration(r8055,c89,s2368).registration12562,320666 -registration(r8055,c89,s2368).registration12562,320666 -registration(r8056,c100,s2369).registration12563,320697 -registration(r8056,c100,s2369).registration12563,320697 -registration(r8057,c39,s2369).registration12564,320729 -registration(r8057,c39,s2369).registration12564,320729 -registration(r8058,c99,s2369).registration12565,320760 -registration(r8058,c99,s2369).registration12565,320760 -registration(r8059,c175,s2369).registration12566,320791 -registration(r8059,c175,s2369).registration12566,320791 -registration(r8060,c119,s2370).registration12567,320823 -registration(r8060,c119,s2370).registration12567,320823 -registration(r8061,c60,s2370).registration12568,320855 -registration(r8061,c60,s2370).registration12568,320855 -registration(r8062,c215,s2370).registration12569,320886 -registration(r8062,c215,s2370).registration12569,320886 -registration(r8063,c141,s2371).registration12570,320918 -registration(r8063,c141,s2371).registration12570,320918 -registration(r8064,c112,s2371).registration12571,320950 -registration(r8064,c112,s2371).registration12571,320950 -registration(r8065,c122,s2371).registration12572,320982 -registration(r8065,c122,s2371).registration12572,320982 -registration(r8066,c181,s2372).registration12573,321014 -registration(r8066,c181,s2372).registration12573,321014 -registration(r8067,c97,s2372).registration12574,321046 -registration(r8067,c97,s2372).registration12574,321046 -registration(r8068,c72,s2372).registration12575,321077 -registration(r8068,c72,s2372).registration12575,321077 -registration(r8069,c234,s2373).registration12576,321108 -registration(r8069,c234,s2373).registration12576,321108 -registration(r8070,c52,s2373).registration12577,321140 -registration(r8070,c52,s2373).registration12577,321140 -registration(r8071,c189,s2373).registration12578,321171 -registration(r8071,c189,s2373).registration12578,321171 -registration(r8072,c48,s2374).registration12579,321203 -registration(r8072,c48,s2374).registration12579,321203 -registration(r8073,c109,s2374).registration12580,321234 -registration(r8073,c109,s2374).registration12580,321234 -registration(r8074,c101,s2374).registration12581,321266 -registration(r8074,c101,s2374).registration12581,321266 -registration(r8075,c201,s2374).registration12582,321298 -registration(r8075,c201,s2374).registration12582,321298 -registration(r8076,c176,s2375).registration12583,321330 -registration(r8076,c176,s2375).registration12583,321330 -registration(r8077,c104,s2375).registration12584,321362 -registration(r8077,c104,s2375).registration12584,321362 -registration(r8078,c210,s2375).registration12585,321394 -registration(r8078,c210,s2375).registration12585,321394 -registration(r8079,c73,s2376).registration12586,321426 -registration(r8079,c73,s2376).registration12586,321426 -registration(r8080,c156,s2376).registration12587,321457 -registration(r8080,c156,s2376).registration12587,321457 -registration(r8081,c52,s2376).registration12588,321489 -registration(r8081,c52,s2376).registration12588,321489 -registration(r8082,c194,s2377).registration12589,321520 -registration(r8082,c194,s2377).registration12589,321520 -registration(r8083,c170,s2377).registration12590,321552 -registration(r8083,c170,s2377).registration12590,321552 -registration(r8084,c119,s2377).registration12591,321584 -registration(r8084,c119,s2377).registration12591,321584 -registration(r8085,c39,s2377).registration12592,321616 -registration(r8085,c39,s2377).registration12592,321616 -registration(r8086,c116,s2377).registration12593,321647 -registration(r8086,c116,s2377).registration12593,321647 -registration(r8087,c112,s2378).registration12594,321679 -registration(r8087,c112,s2378).registration12594,321679 -registration(r8088,c212,s2378).registration12595,321711 -registration(r8088,c212,s2378).registration12595,321711 -registration(r8089,c243,s2378).registration12596,321743 -registration(r8089,c243,s2378).registration12596,321743 -registration(r8090,c176,s2378).registration12597,321775 -registration(r8090,c176,s2378).registration12597,321775 -registration(r8091,c187,s2379).registration12598,321807 -registration(r8091,c187,s2379).registration12598,321807 -registration(r8092,c78,s2379).registration12599,321839 -registration(r8092,c78,s2379).registration12599,321839 -registration(r8093,c225,s2379).registration12600,321870 -registration(r8093,c225,s2379).registration12600,321870 -registration(r8094,c179,s2379).registration12601,321902 -registration(r8094,c179,s2379).registration12601,321902 -registration(r8095,c46,s2380).registration12602,321934 -registration(r8095,c46,s2380).registration12602,321934 -registration(r8096,c125,s2380).registration12603,321965 -registration(r8096,c125,s2380).registration12603,321965 -registration(r8097,c26,s2380).registration12604,321997 -registration(r8097,c26,s2380).registration12604,321997 -registration(r8098,c121,s2381).registration12605,322028 -registration(r8098,c121,s2381).registration12605,322028 -registration(r8099,c246,s2381).registration12606,322060 -registration(r8099,c246,s2381).registration12606,322060 -registration(r8100,c152,s2381).registration12607,322092 -registration(r8100,c152,s2381).registration12607,322092 -registration(r8101,c43,s2381).registration12608,322124 -registration(r8101,c43,s2381).registration12608,322124 -registration(r8102,c19,s2382).registration12609,322155 -registration(r8102,c19,s2382).registration12609,322155 -registration(r8103,c238,s2382).registration12610,322186 -registration(r8103,c238,s2382).registration12610,322186 -registration(r8104,c127,s2382).registration12611,322218 -registration(r8104,c127,s2382).registration12611,322218 -registration(r8105,c166,s2382).registration12612,322250 -registration(r8105,c166,s2382).registration12612,322250 -registration(r8106,c186,s2383).registration12613,322282 -registration(r8106,c186,s2383).registration12613,322282 -registration(r8107,c119,s2383).registration12614,322314 -registration(r8107,c119,s2383).registration12614,322314 -registration(r8108,c22,s2383).registration12615,322346 -registration(r8108,c22,s2383).registration12615,322346 -registration(r8109,c113,s2384).registration12616,322377 -registration(r8109,c113,s2384).registration12616,322377 -registration(r8110,c152,s2384).registration12617,322409 -registration(r8110,c152,s2384).registration12617,322409 -registration(r8111,c27,s2384).registration12618,322441 -registration(r8111,c27,s2384).registration12618,322441 -registration(r8112,c231,s2384).registration12619,322472 -registration(r8112,c231,s2384).registration12619,322472 -registration(r8113,c86,s2385).registration12620,322504 -registration(r8113,c86,s2385).registration12620,322504 -registration(r8114,c155,s2385).registration12621,322535 -registration(r8114,c155,s2385).registration12621,322535 -registration(r8115,c103,s2385).registration12622,322567 -registration(r8115,c103,s2385).registration12622,322567 -registration(r8116,c130,s2385).registration12623,322599 -registration(r8116,c130,s2385).registration12623,322599 -registration(r8117,c29,s2386).registration12624,322631 -registration(r8117,c29,s2386).registration12624,322631 -registration(r8118,c104,s2386).registration12625,322662 -registration(r8118,c104,s2386).registration12625,322662 -registration(r8119,c251,s2386).registration12626,322694 -registration(r8119,c251,s2386).registration12626,322694 -registration(r8120,c0,s2386).registration12627,322726 -registration(r8120,c0,s2386).registration12627,322726 -registration(r8121,c64,s2386).registration12628,322756 -registration(r8121,c64,s2386).registration12628,322756 -registration(r8122,c212,s2387).registration12629,322787 -registration(r8122,c212,s2387).registration12629,322787 -registration(r8123,c36,s2387).registration12630,322819 -registration(r8123,c36,s2387).registration12630,322819 -registration(r8124,c47,s2387).registration12631,322850 -registration(r8124,c47,s2387).registration12631,322850 -registration(r8125,c48,s2388).registration12632,322881 -registration(r8125,c48,s2388).registration12632,322881 -registration(r8126,c249,s2388).registration12633,322912 -registration(r8126,c249,s2388).registration12633,322912 -registration(r8127,c106,s2388).registration12634,322944 -registration(r8127,c106,s2388).registration12634,322944 -registration(r8128,c248,s2388).registration12635,322976 -registration(r8128,c248,s2388).registration12635,322976 -registration(r8129,c19,s2389).registration12636,323008 -registration(r8129,c19,s2389).registration12636,323008 -registration(r8130,c130,s2389).registration12637,323039 -registration(r8130,c130,s2389).registration12637,323039 -registration(r8131,c146,s2389).registration12638,323071 -registration(r8131,c146,s2389).registration12638,323071 -registration(r8132,c176,s2389).registration12639,323103 -registration(r8132,c176,s2389).registration12639,323103 -registration(r8133,c45,s2390).registration12640,323135 -registration(r8133,c45,s2390).registration12640,323135 -registration(r8134,c5,s2390).registration12641,323166 -registration(r8134,c5,s2390).registration12641,323166 -registration(r8135,c21,s2390).registration12642,323196 -registration(r8135,c21,s2390).registration12642,323196 -registration(r8136,c45,s2391).registration12643,323227 -registration(r8136,c45,s2391).registration12643,323227 -registration(r8137,c22,s2391).registration12644,323258 -registration(r8137,c22,s2391).registration12644,323258 -registration(r8138,c168,s2391).registration12645,323289 -registration(r8138,c168,s2391).registration12645,323289 -registration(r8139,c188,s2391).registration12646,323321 -registration(r8139,c188,s2391).registration12646,323321 -registration(r8140,c149,s2392).registration12647,323353 -registration(r8140,c149,s2392).registration12647,323353 -registration(r8141,c35,s2392).registration12648,323385 -registration(r8141,c35,s2392).registration12648,323385 -registration(r8142,c252,s2392).registration12649,323416 -registration(r8142,c252,s2392).registration12649,323416 -registration(r8143,c42,s2393).registration12650,323448 -registration(r8143,c42,s2393).registration12650,323448 -registration(r8144,c189,s2393).registration12651,323479 -registration(r8144,c189,s2393).registration12651,323479 -registration(r8145,c247,s2393).registration12652,323511 -registration(r8145,c247,s2393).registration12652,323511 -registration(r8146,c98,s2394).registration12653,323543 -registration(r8146,c98,s2394).registration12653,323543 -registration(r8147,c4,s2394).registration12654,323574 -registration(r8147,c4,s2394).registration12654,323574 -registration(r8148,c200,s2394).registration12655,323604 -registration(r8148,c200,s2394).registration12655,323604 -registration(r8149,c74,s2394).registration12656,323636 -registration(r8149,c74,s2394).registration12656,323636 -registration(r8150,c238,s2395).registration12657,323667 -registration(r8150,c238,s2395).registration12657,323667 -registration(r8151,c71,s2395).registration12658,323699 -registration(r8151,c71,s2395).registration12658,323699 -registration(r8152,c249,s2395).registration12659,323730 -registration(r8152,c249,s2395).registration12659,323730 -registration(r8153,c254,s2396).registration12660,323762 -registration(r8153,c254,s2396).registration12660,323762 -registration(r8154,c123,s2396).registration12661,323794 -registration(r8154,c123,s2396).registration12661,323794 -registration(r8155,c9,s2396).registration12662,323826 -registration(r8155,c9,s2396).registration12662,323826 -registration(r8156,c32,s2397).registration12663,323856 -registration(r8156,c32,s2397).registration12663,323856 -registration(r8157,c50,s2397).registration12664,323887 -registration(r8157,c50,s2397).registration12664,323887 -registration(r8158,c63,s2397).registration12665,323918 -registration(r8158,c63,s2397).registration12665,323918 -registration(r8159,c237,s2397).registration12666,323949 -registration(r8159,c237,s2397).registration12666,323949 -registration(r8160,c86,s2398).registration12667,323981 -registration(r8160,c86,s2398).registration12667,323981 -registration(r8161,c233,s2398).registration12668,324012 -registration(r8161,c233,s2398).registration12668,324012 -registration(r8162,c61,s2398).registration12669,324044 -registration(r8162,c61,s2398).registration12669,324044 -registration(r8163,c251,s2398).registration12670,324075 -registration(r8163,c251,s2398).registration12670,324075 -registration(r8164,c149,s2399).registration12671,324107 -registration(r8164,c149,s2399).registration12671,324107 -registration(r8165,c111,s2399).registration12672,324139 -registration(r8165,c111,s2399).registration12672,324139 -registration(r8166,c179,s2399).registration12673,324171 -registration(r8166,c179,s2399).registration12673,324171 -registration(r8167,c123,s2400).registration12674,324203 -registration(r8167,c123,s2400).registration12674,324203 -registration(r8168,c84,s2400).registration12675,324235 -registration(r8168,c84,s2400).registration12675,324235 -registration(r8169,c140,s2400).registration12676,324266 -registration(r8169,c140,s2400).registration12676,324266 -registration(r8170,c211,s2401).registration12677,324298 -registration(r8170,c211,s2401).registration12677,324298 -registration(r8171,c189,s2401).registration12678,324330 -registration(r8171,c189,s2401).registration12678,324330 -registration(r8172,c168,s2401).registration12679,324362 -registration(r8172,c168,s2401).registration12679,324362 -registration(r8173,c37,s2402).registration12680,324394 -registration(r8173,c37,s2402).registration12680,324394 -registration(r8174,c81,s2402).registration12681,324425 -registration(r8174,c81,s2402).registration12681,324425 -registration(r8175,c70,s2402).registration12682,324456 -registration(r8175,c70,s2402).registration12682,324456 -registration(r8176,c119,s2403).registration12683,324487 -registration(r8176,c119,s2403).registration12683,324487 -registration(r8177,c13,s2403).registration12684,324519 -registration(r8177,c13,s2403).registration12684,324519 -registration(r8178,c165,s2403).registration12685,324550 -registration(r8178,c165,s2403).registration12685,324550 -registration(r8179,c250,s2404).registration12686,324582 -registration(r8179,c250,s2404).registration12686,324582 -registration(r8180,c79,s2404).registration12687,324614 -registration(r8180,c79,s2404).registration12687,324614 -registration(r8181,c31,s2404).registration12688,324645 -registration(r8181,c31,s2404).registration12688,324645 -registration(r8182,c27,s2405).registration12689,324676 -registration(r8182,c27,s2405).registration12689,324676 -registration(r8183,c46,s2405).registration12690,324707 -registration(r8183,c46,s2405).registration12690,324707 -registration(r8184,c212,s2405).registration12691,324738 -registration(r8184,c212,s2405).registration12691,324738 -registration(r8185,c73,s2405).registration12692,324770 -registration(r8185,c73,s2405).registration12692,324770 -registration(r8186,c74,s2406).registration12693,324801 -registration(r8186,c74,s2406).registration12693,324801 -registration(r8187,c123,s2406).registration12694,324832 -registration(r8187,c123,s2406).registration12694,324832 -registration(r8188,c212,s2406).registration12695,324864 -registration(r8188,c212,s2406).registration12695,324864 -registration(r8189,c188,s2406).registration12696,324896 -registration(r8189,c188,s2406).registration12696,324896 -registration(r8190,c206,s2407).registration12697,324928 -registration(r8190,c206,s2407).registration12697,324928 -registration(r8191,c102,s2407).registration12698,324960 -registration(r8191,c102,s2407).registration12698,324960 -registration(r8192,c239,s2407).registration12699,324992 -registration(r8192,c239,s2407).registration12699,324992 -registration(r8193,c64,s2408).registration12700,325024 -registration(r8193,c64,s2408).registration12700,325024 -registration(r8194,c209,s2408).registration12701,325055 -registration(r8194,c209,s2408).registration12701,325055 -registration(r8195,c92,s2408).registration12702,325087 -registration(r8195,c92,s2408).registration12702,325087 -registration(r8196,c105,s2409).registration12703,325118 -registration(r8196,c105,s2409).registration12703,325118 -registration(r8197,c86,s2409).registration12704,325150 -registration(r8197,c86,s2409).registration12704,325150 -registration(r8198,c175,s2409).registration12705,325181 -registration(r8198,c175,s2409).registration12705,325181 -registration(r8199,c254,s2410).registration12706,325213 -registration(r8199,c254,s2410).registration12706,325213 -registration(r8200,c105,s2410).registration12707,325245 -registration(r8200,c105,s2410).registration12707,325245 -registration(r8201,c233,s2410).registration12708,325277 -registration(r8201,c233,s2410).registration12708,325277 -registration(r8202,c24,s2411).registration12709,325309 -registration(r8202,c24,s2411).registration12709,325309 -registration(r8203,c55,s2411).registration12710,325340 -registration(r8203,c55,s2411).registration12710,325340 -registration(r8204,c86,s2411).registration12711,325371 -registration(r8204,c86,s2411).registration12711,325371 -registration(r8205,c159,s2412).registration12712,325402 -registration(r8205,c159,s2412).registration12712,325402 -registration(r8206,c184,s2412).registration12713,325434 -registration(r8206,c184,s2412).registration12713,325434 -registration(r8207,c81,s2412).registration12714,325466 -registration(r8207,c81,s2412).registration12714,325466 -registration(r8208,c249,s2413).registration12715,325497 -registration(r8208,c249,s2413).registration12715,325497 -registration(r8209,c124,s2413).registration12716,325529 -registration(r8209,c124,s2413).registration12716,325529 -registration(r8210,c220,s2413).registration12717,325561 -registration(r8210,c220,s2413).registration12717,325561 -registration(r8211,c105,s2413).registration12718,325593 -registration(r8211,c105,s2413).registration12718,325593 -registration(r8212,c40,s2414).registration12719,325625 -registration(r8212,c40,s2414).registration12719,325625 -registration(r8213,c217,s2414).registration12720,325656 -registration(r8213,c217,s2414).registration12720,325656 -registration(r8214,c198,s2414).registration12721,325688 -registration(r8214,c198,s2414).registration12721,325688 -registration(r8215,c48,s2414).registration12722,325720 -registration(r8215,c48,s2414).registration12722,325720 -registration(r8216,c49,s2415).registration12723,325751 -registration(r8216,c49,s2415).registration12723,325751 -registration(r8217,c210,s2415).registration12724,325782 -registration(r8217,c210,s2415).registration12724,325782 -registration(r8218,c122,s2415).registration12725,325814 -registration(r8218,c122,s2415).registration12725,325814 -registration(r8219,c229,s2416).registration12726,325846 -registration(r8219,c229,s2416).registration12726,325846 -registration(r8220,c108,s2416).registration12727,325878 -registration(r8220,c108,s2416).registration12727,325878 -registration(r8221,c50,s2416).registration12728,325910 -registration(r8221,c50,s2416).registration12728,325910 -registration(r8222,c105,s2417).registration12729,325941 -registration(r8222,c105,s2417).registration12729,325941 -registration(r8223,c192,s2417).registration12730,325973 -registration(r8223,c192,s2417).registration12730,325973 -registration(r8224,c195,s2417).registration12731,326005 -registration(r8224,c195,s2417).registration12731,326005 -registration(r8225,c123,s2418).registration12732,326037 -registration(r8225,c123,s2418).registration12732,326037 -registration(r8226,c57,s2418).registration12733,326069 -registration(r8226,c57,s2418).registration12733,326069 -registration(r8227,c13,s2418).registration12734,326100 -registration(r8227,c13,s2418).registration12734,326100 -registration(r8228,c138,s2419).registration12735,326131 -registration(r8228,c138,s2419).registration12735,326131 -registration(r8229,c207,s2419).registration12736,326163 -registration(r8229,c207,s2419).registration12736,326163 -registration(r8230,c28,s2419).registration12737,326195 -registration(r8230,c28,s2419).registration12737,326195 -registration(r8231,c69,s2420).registration12738,326226 -registration(r8231,c69,s2420).registration12738,326226 -registration(r8232,c108,s2420).registration12739,326257 -registration(r8232,c108,s2420).registration12739,326257 -registration(r8233,c255,s2420).registration12740,326289 -registration(r8233,c255,s2420).registration12740,326289 -registration(r8234,c142,s2420).registration12741,326321 -registration(r8234,c142,s2420).registration12741,326321 -registration(r8235,c80,s2420).registration12742,326353 -registration(r8235,c80,s2420).registration12742,326353 -registration(r8236,c96,s2421).registration12743,326384 -registration(r8236,c96,s2421).registration12743,326384 -registration(r8237,c171,s2421).registration12744,326415 -registration(r8237,c171,s2421).registration12744,326415 -registration(r8238,c212,s2421).registration12745,326447 -registration(r8238,c212,s2421).registration12745,326447 -registration(r8239,c143,s2421).registration12746,326479 -registration(r8239,c143,s2421).registration12746,326479 -registration(r8240,c99,s2422).registration12747,326511 -registration(r8240,c99,s2422).registration12747,326511 -registration(r8241,c250,s2422).registration12748,326542 -registration(r8241,c250,s2422).registration12748,326542 -registration(r8242,c196,s2422).registration12749,326574 -registration(r8242,c196,s2422).registration12749,326574 -registration(r8243,c136,s2423).registration12750,326606 -registration(r8243,c136,s2423).registration12750,326606 -registration(r8244,c180,s2423).registration12751,326638 -registration(r8244,c180,s2423).registration12751,326638 -registration(r8245,c25,s2423).registration12752,326670 -registration(r8245,c25,s2423).registration12752,326670 -registration(r8246,c238,s2423).registration12753,326701 -registration(r8246,c238,s2423).registration12753,326701 -registration(r8247,c245,s2423).registration12754,326733 -registration(r8247,c245,s2423).registration12754,326733 -registration(r8248,c34,s2424).registration12755,326765 -registration(r8248,c34,s2424).registration12755,326765 -registration(r8249,c178,s2424).registration12756,326796 -registration(r8249,c178,s2424).registration12756,326796 -registration(r8250,c196,s2424).registration12757,326828 -registration(r8250,c196,s2424).registration12757,326828 -registration(r8251,c253,s2425).registration12758,326860 -registration(r8251,c253,s2425).registration12758,326860 -registration(r8252,c131,s2425).registration12759,326892 -registration(r8252,c131,s2425).registration12759,326892 -registration(r8253,c175,s2425).registration12760,326924 -registration(r8253,c175,s2425).registration12760,326924 -registration(r8254,c62,s2426).registration12761,326956 -registration(r8254,c62,s2426).registration12761,326956 -registration(r8255,c45,s2426).registration12762,326987 -registration(r8255,c45,s2426).registration12762,326987 -registration(r8256,c245,s2426).registration12763,327018 -registration(r8256,c245,s2426).registration12763,327018 -registration(r8257,c200,s2427).registration12764,327050 -registration(r8257,c200,s2427).registration12764,327050 -registration(r8258,c208,s2427).registration12765,327082 -registration(r8258,c208,s2427).registration12765,327082 -registration(r8259,c103,s2427).registration12766,327114 -registration(r8259,c103,s2427).registration12766,327114 -registration(r8260,c51,s2427).registration12767,327146 -registration(r8260,c51,s2427).registration12767,327146 -registration(r8261,c206,s2428).registration12768,327177 -registration(r8261,c206,s2428).registration12768,327177 -registration(r8262,c0,s2428).registration12769,327209 -registration(r8262,c0,s2428).registration12769,327209 -registration(r8263,c30,s2428).registration12770,327239 -registration(r8263,c30,s2428).registration12770,327239 -registration(r8264,c55,s2429).registration12771,327270 -registration(r8264,c55,s2429).registration12771,327270 -registration(r8265,c91,s2429).registration12772,327301 -registration(r8265,c91,s2429).registration12772,327301 -registration(r8266,c163,s2429).registration12773,327332 -registration(r8266,c163,s2429).registration12773,327332 -registration(r8267,c197,s2430).registration12774,327364 -registration(r8267,c197,s2430).registration12774,327364 -registration(r8268,c16,s2430).registration12775,327396 -registration(r8268,c16,s2430).registration12775,327396 -registration(r8269,c22,s2430).registration12776,327427 -registration(r8269,c22,s2430).registration12776,327427 -registration(r8270,c86,s2430).registration12777,327458 -registration(r8270,c86,s2430).registration12777,327458 -registration(r8271,c137,s2430).registration12778,327489 -registration(r8271,c137,s2430).registration12778,327489 -registration(r8272,c5,s2431).registration12779,327521 -registration(r8272,c5,s2431).registration12779,327521 -registration(r8273,c17,s2431).registration12780,327551 -registration(r8273,c17,s2431).registration12780,327551 -registration(r8274,c46,s2431).registration12781,327582 -registration(r8274,c46,s2431).registration12781,327582 -registration(r8275,c33,s2432).registration12782,327613 -registration(r8275,c33,s2432).registration12782,327613 -registration(r8276,c227,s2432).registration12783,327644 -registration(r8276,c227,s2432).registration12783,327644 -registration(r8277,c22,s2432).registration12784,327676 -registration(r8277,c22,s2432).registration12784,327676 -registration(r8278,c127,s2433).registration12785,327707 -registration(r8278,c127,s2433).registration12785,327707 -registration(r8279,c243,s2433).registration12786,327739 -registration(r8279,c243,s2433).registration12786,327739 -registration(r8280,c230,s2433).registration12787,327771 -registration(r8280,c230,s2433).registration12787,327771 -registration(r8281,c231,s2434).registration12788,327803 -registration(r8281,c231,s2434).registration12788,327803 -registration(r8282,c0,s2434).registration12789,327835 -registration(r8282,c0,s2434).registration12789,327835 -registration(r8283,c26,s2434).registration12790,327865 -registration(r8283,c26,s2434).registration12790,327865 -registration(r8284,c116,s2435).registration12791,327896 -registration(r8284,c116,s2435).registration12791,327896 -registration(r8285,c63,s2435).registration12792,327928 -registration(r8285,c63,s2435).registration12792,327928 -registration(r8286,c151,s2435).registration12793,327959 -registration(r8286,c151,s2435).registration12793,327959 -registration(r8287,c168,s2435).registration12794,327991 -registration(r8287,c168,s2435).registration12794,327991 -registration(r8288,c218,s2436).registration12795,328023 -registration(r8288,c218,s2436).registration12795,328023 -registration(r8289,c9,s2436).registration12796,328055 -registration(r8289,c9,s2436).registration12796,328055 -registration(r8290,c253,s2436).registration12797,328085 -registration(r8290,c253,s2436).registration12797,328085 -registration(r8291,c2,s2437).registration12798,328117 -registration(r8291,c2,s2437).registration12798,328117 -registration(r8292,c254,s2437).registration12799,328147 -registration(r8292,c254,s2437).registration12799,328147 -registration(r8293,c189,s2437).registration12800,328179 -registration(r8293,c189,s2437).registration12800,328179 -registration(r8294,c223,s2438).registration12801,328211 -registration(r8294,c223,s2438).registration12801,328211 -registration(r8295,c42,s2438).registration12802,328243 -registration(r8295,c42,s2438).registration12802,328243 -registration(r8296,c84,s2438).registration12803,328274 -registration(r8296,c84,s2438).registration12803,328274 -registration(r8297,c211,s2439).registration12804,328305 -registration(r8297,c211,s2439).registration12804,328305 -registration(r8298,c189,s2439).registration12805,328337 -registration(r8298,c189,s2439).registration12805,328337 -registration(r8299,c197,s2439).registration12806,328369 -registration(r8299,c197,s2439).registration12806,328369 -registration(r8300,c173,s2440).registration12807,328401 -registration(r8300,c173,s2440).registration12807,328401 -registration(r8301,c182,s2440).registration12808,328433 -registration(r8301,c182,s2440).registration12808,328433 -registration(r8302,c152,s2440).registration12809,328465 -registration(r8302,c152,s2440).registration12809,328465 -registration(r8303,c14,s2441).registration12810,328497 -registration(r8303,c14,s2441).registration12810,328497 -registration(r8304,c138,s2441).registration12811,328528 -registration(r8304,c138,s2441).registration12811,328528 -registration(r8305,c132,s2441).registration12812,328560 -registration(r8305,c132,s2441).registration12812,328560 -registration(r8306,c43,s2442).registration12813,328592 -registration(r8306,c43,s2442).registration12813,328592 -registration(r8307,c175,s2442).registration12814,328623 -registration(r8307,c175,s2442).registration12814,328623 -registration(r8308,c151,s2442).registration12815,328655 -registration(r8308,c151,s2442).registration12815,328655 -registration(r8309,c157,s2442).registration12816,328687 -registration(r8309,c157,s2442).registration12816,328687 -registration(r8310,c44,s2442).registration12817,328719 -registration(r8310,c44,s2442).registration12817,328719 -registration(r8311,c155,s2443).registration12818,328750 -registration(r8311,c155,s2443).registration12818,328750 -registration(r8312,c231,s2443).registration12819,328782 -registration(r8312,c231,s2443).registration12819,328782 -registration(r8313,c114,s2443).registration12820,328814 -registration(r8313,c114,s2443).registration12820,328814 -registration(r8314,c158,s2444).registration12821,328846 -registration(r8314,c158,s2444).registration12821,328846 -registration(r8315,c44,s2444).registration12822,328878 -registration(r8315,c44,s2444).registration12822,328878 -registration(r8316,c145,s2444).registration12823,328909 -registration(r8316,c145,s2444).registration12823,328909 -registration(r8317,c79,s2444).registration12824,328941 -registration(r8317,c79,s2444).registration12824,328941 -registration(r8318,c67,s2445).registration12825,328972 -registration(r8318,c67,s2445).registration12825,328972 -registration(r8319,c182,s2445).registration12826,329003 -registration(r8319,c182,s2445).registration12826,329003 -registration(r8320,c208,s2445).registration12827,329035 -registration(r8320,c208,s2445).registration12827,329035 -registration(r8321,c106,s2446).registration12828,329067 -registration(r8321,c106,s2446).registration12828,329067 -registration(r8322,c59,s2446).registration12829,329099 -registration(r8322,c59,s2446).registration12829,329099 -registration(r8323,c89,s2446).registration12830,329130 -registration(r8323,c89,s2446).registration12830,329130 -registration(r8324,c221,s2447).registration12831,329161 -registration(r8324,c221,s2447).registration12831,329161 -registration(r8325,c77,s2447).registration12832,329193 -registration(r8325,c77,s2447).registration12832,329193 -registration(r8326,c84,s2447).registration12833,329224 -registration(r8326,c84,s2447).registration12833,329224 -registration(r8327,c252,s2447).registration12834,329255 -registration(r8327,c252,s2447).registration12834,329255 -registration(r8328,c50,s2448).registration12835,329287 -registration(r8328,c50,s2448).registration12835,329287 -registration(r8329,c154,s2448).registration12836,329318 -registration(r8329,c154,s2448).registration12836,329318 -registration(r8330,c21,s2448).registration12837,329350 -registration(r8330,c21,s2448).registration12837,329350 -registration(r8331,c253,s2449).registration12838,329381 -registration(r8331,c253,s2449).registration12838,329381 -registration(r8332,c209,s2449).registration12839,329413 -registration(r8332,c209,s2449).registration12839,329413 -registration(r8333,c14,s2449).registration12840,329445 -registration(r8333,c14,s2449).registration12840,329445 -registration(r8334,c59,s2450).registration12841,329476 -registration(r8334,c59,s2450).registration12841,329476 -registration(r8335,c87,s2450).registration12842,329507 -registration(r8335,c87,s2450).registration12842,329507 -registration(r8336,c238,s2450).registration12843,329538 -registration(r8336,c238,s2450).registration12843,329538 -registration(r8337,c49,s2451).registration12844,329570 -registration(r8337,c49,s2451).registration12844,329570 -registration(r8338,c241,s2451).registration12845,329601 -registration(r8338,c241,s2451).registration12845,329601 -registration(r8339,c118,s2451).registration12846,329633 -registration(r8339,c118,s2451).registration12846,329633 -registration(r8340,c93,s2451).registration12847,329665 -registration(r8340,c93,s2451).registration12847,329665 -registration(r8341,c93,s2452).registration12848,329696 -registration(r8341,c93,s2452).registration12848,329696 -registration(r8342,c183,s2452).registration12849,329727 -registration(r8342,c183,s2452).registration12849,329727 -registration(r8343,c89,s2452).registration12850,329759 -registration(r8343,c89,s2452).registration12850,329759 -registration(r8344,c149,s2452).registration12851,329790 -registration(r8344,c149,s2452).registration12851,329790 -registration(r8345,c118,s2453).registration12852,329822 -registration(r8345,c118,s2453).registration12852,329822 -registration(r8346,c159,s2453).registration12853,329854 -registration(r8346,c159,s2453).registration12853,329854 -registration(r8347,c164,s2453).registration12854,329886 -registration(r8347,c164,s2453).registration12854,329886 -registration(r8348,c61,s2454).registration12855,329918 -registration(r8348,c61,s2454).registration12855,329918 -registration(r8349,c121,s2454).registration12856,329949 -registration(r8349,c121,s2454).registration12856,329949 -registration(r8350,c48,s2454).registration12857,329981 -registration(r8350,c48,s2454).registration12857,329981 -registration(r8351,c3,s2455).registration12858,330012 -registration(r8351,c3,s2455).registration12858,330012 -registration(r8352,c129,s2455).registration12859,330042 -registration(r8352,c129,s2455).registration12859,330042 -registration(r8353,c59,s2455).registration12860,330074 -registration(r8353,c59,s2455).registration12860,330074 -registration(r8354,c145,s2456).registration12861,330105 -registration(r8354,c145,s2456).registration12861,330105 -registration(r8355,c98,s2456).registration12862,330137 -registration(r8355,c98,s2456).registration12862,330137 -registration(r8356,c248,s2456).registration12863,330168 -registration(r8356,c248,s2456).registration12863,330168 -registration(r8357,c233,s2457).registration12864,330200 -registration(r8357,c233,s2457).registration12864,330200 -registration(r8358,c173,s2457).registration12865,330232 -registration(r8358,c173,s2457).registration12865,330232 -registration(r8359,c181,s2457).registration12866,330264 -registration(r8359,c181,s2457).registration12866,330264 -registration(r8360,c19,s2458).registration12867,330296 -registration(r8360,c19,s2458).registration12867,330296 -registration(r8361,c255,s2458).registration12868,330327 -registration(r8361,c255,s2458).registration12868,330327 -registration(r8362,c231,s2458).registration12869,330359 -registration(r8362,c231,s2458).registration12869,330359 -registration(r8363,c143,s2459).registration12870,330391 -registration(r8363,c143,s2459).registration12870,330391 -registration(r8364,c172,s2459).registration12871,330423 -registration(r8364,c172,s2459).registration12871,330423 -registration(r8365,c50,s2459).registration12872,330455 -registration(r8365,c50,s2459).registration12872,330455 -registration(r8366,c5,s2459).registration12873,330486 -registration(r8366,c5,s2459).registration12873,330486 -registration(r8367,c113,s2460).registration12874,330516 -registration(r8367,c113,s2460).registration12874,330516 -registration(r8368,c136,s2460).registration12875,330548 -registration(r8368,c136,s2460).registration12875,330548 -registration(r8369,c53,s2460).registration12876,330580 -registration(r8369,c53,s2460).registration12876,330580 -registration(r8370,c57,s2461).registration12877,330611 -registration(r8370,c57,s2461).registration12877,330611 -registration(r8371,c102,s2461).registration12878,330642 -registration(r8371,c102,s2461).registration12878,330642 -registration(r8372,c56,s2461).registration12879,330674 -registration(r8372,c56,s2461).registration12879,330674 -registration(r8373,c203,s2461).registration12880,330705 -registration(r8373,c203,s2461).registration12880,330705 -registration(r8374,c16,s2462).registration12881,330737 -registration(r8374,c16,s2462).registration12881,330737 -registration(r8375,c26,s2462).registration12882,330768 -registration(r8375,c26,s2462).registration12882,330768 -registration(r8376,c3,s2462).registration12883,330799 -registration(r8376,c3,s2462).registration12883,330799 -registration(r8377,c178,s2462).registration12884,330829 -registration(r8377,c178,s2462).registration12884,330829 -registration(r8378,c90,s2463).registration12885,330861 -registration(r8378,c90,s2463).registration12885,330861 -registration(r8379,c75,s2463).registration12886,330892 -registration(r8379,c75,s2463).registration12886,330892 -registration(r8380,c63,s2463).registration12887,330923 -registration(r8380,c63,s2463).registration12887,330923 -registration(r8381,c40,s2464).registration12888,330954 -registration(r8381,c40,s2464).registration12888,330954 -registration(r8382,c164,s2464).registration12889,330985 -registration(r8382,c164,s2464).registration12889,330985 -registration(r8383,c223,s2464).registration12890,331017 -registration(r8383,c223,s2464).registration12890,331017 -registration(r8384,c18,s2465).registration12891,331049 -registration(r8384,c18,s2465).registration12891,331049 -registration(r8385,c236,s2465).registration12892,331080 -registration(r8385,c236,s2465).registration12892,331080 -registration(r8386,c95,s2465).registration12893,331112 -registration(r8386,c95,s2465).registration12893,331112 -registration(r8387,c93,s2465).registration12894,331143 -registration(r8387,c93,s2465).registration12894,331143 -registration(r8388,c77,s2466).registration12895,331174 -registration(r8388,c77,s2466).registration12895,331174 -registration(r8389,c65,s2466).registration12896,331205 -registration(r8389,c65,s2466).registration12896,331205 -registration(r8390,c229,s2466).registration12897,331236 -registration(r8390,c229,s2466).registration12897,331236 -registration(r8391,c31,s2467).registration12898,331268 -registration(r8391,c31,s2467).registration12898,331268 -registration(r8392,c54,s2467).registration12899,331299 -registration(r8392,c54,s2467).registration12899,331299 -registration(r8393,c201,s2467).registration12900,331330 -registration(r8393,c201,s2467).registration12900,331330 -registration(r8394,c226,s2468).registration12901,331362 -registration(r8394,c226,s2468).registration12901,331362 -registration(r8395,c237,s2468).registration12902,331394 -registration(r8395,c237,s2468).registration12902,331394 -registration(r8396,c233,s2468).registration12903,331426 -registration(r8396,c233,s2468).registration12903,331426 -registration(r8397,c69,s2469).registration12904,331458 -registration(r8397,c69,s2469).registration12904,331458 -registration(r8398,c49,s2469).registration12905,331489 -registration(r8398,c49,s2469).registration12905,331489 -registration(r8399,c223,s2469).registration12906,331520 -registration(r8399,c223,s2469).registration12906,331520 -registration(r8400,c7,s2470).registration12907,331552 -registration(r8400,c7,s2470).registration12907,331552 -registration(r8401,c87,s2470).registration12908,331582 -registration(r8401,c87,s2470).registration12908,331582 -registration(r8402,c92,s2470).registration12909,331613 -registration(r8402,c92,s2470).registration12909,331613 -registration(r8403,c109,s2471).registration12910,331644 -registration(r8403,c109,s2471).registration12910,331644 -registration(r8404,c172,s2471).registration12911,331676 -registration(r8404,c172,s2471).registration12911,331676 -registration(r8405,c7,s2471).registration12912,331708 -registration(r8405,c7,s2471).registration12912,331708 -registration(r8406,c239,s2471).registration12913,331738 -registration(r8406,c239,s2471).registration12913,331738 -registration(r8407,c210,s2472).registration12914,331770 -registration(r8407,c210,s2472).registration12914,331770 -registration(r8408,c74,s2472).registration12915,331802 -registration(r8408,c74,s2472).registration12915,331802 -registration(r8409,c213,s2472).registration12916,331833 -registration(r8409,c213,s2472).registration12916,331833 -registration(r8410,c243,s2473).registration12917,331865 -registration(r8410,c243,s2473).registration12917,331865 -registration(r8411,c142,s2473).registration12918,331897 -registration(r8411,c142,s2473).registration12918,331897 -registration(r8412,c186,s2473).registration12919,331929 -registration(r8412,c186,s2473).registration12919,331929 -registration(r8413,c157,s2474).registration12920,331961 -registration(r8413,c157,s2474).registration12920,331961 -registration(r8414,c204,s2474).registration12921,331993 -registration(r8414,c204,s2474).registration12921,331993 -registration(r8415,c191,s2474).registration12922,332025 -registration(r8415,c191,s2474).registration12922,332025 -registration(r8416,c5,s2475).registration12923,332057 -registration(r8416,c5,s2475).registration12923,332057 -registration(r8417,c182,s2475).registration12924,332087 -registration(r8417,c182,s2475).registration12924,332087 -registration(r8418,c74,s2475).registration12925,332119 -registration(r8418,c74,s2475).registration12925,332119 -registration(r8419,c82,s2475).registration12926,332150 -registration(r8419,c82,s2475).registration12926,332150 -registration(r8420,c15,s2476).registration12927,332181 -registration(r8420,c15,s2476).registration12927,332181 -registration(r8421,c142,s2476).registration12928,332212 -registration(r8421,c142,s2476).registration12928,332212 -registration(r8422,c18,s2476).registration12929,332244 -registration(r8422,c18,s2476).registration12929,332244 -registration(r8423,c189,s2477).registration12930,332275 -registration(r8423,c189,s2477).registration12930,332275 -registration(r8424,c191,s2477).registration12931,332307 -registration(r8424,c191,s2477).registration12931,332307 -registration(r8425,c126,s2477).registration12932,332339 -registration(r8425,c126,s2477).registration12932,332339 -registration(r8426,c81,s2478).registration12933,332371 -registration(r8426,c81,s2478).registration12933,332371 -registration(r8427,c17,s2478).registration12934,332402 -registration(r8427,c17,s2478).registration12934,332402 -registration(r8428,c131,s2478).registration12935,332433 -registration(r8428,c131,s2478).registration12935,332433 -registration(r8429,c119,s2478).registration12936,332465 -registration(r8429,c119,s2478).registration12936,332465 -registration(r8430,c58,s2479).registration12937,332497 -registration(r8430,c58,s2479).registration12937,332497 -registration(r8431,c190,s2479).registration12938,332528 -registration(r8431,c190,s2479).registration12938,332528 -registration(r8432,c85,s2479).registration12939,332560 -registration(r8432,c85,s2479).registration12939,332560 -registration(r8433,c93,s2479).registration12940,332591 -registration(r8433,c93,s2479).registration12940,332591 -registration(r8434,c208,s2479).registration12941,332622 -registration(r8434,c208,s2479).registration12941,332622 -registration(r8435,c224,s2480).registration12942,332654 -registration(r8435,c224,s2480).registration12942,332654 -registration(r8436,c139,s2480).registration12943,332686 -registration(r8436,c139,s2480).registration12943,332686 -registration(r8437,c212,s2480).registration12944,332718 -registration(r8437,c212,s2480).registration12944,332718 -registration(r8438,c141,s2481).registration12945,332750 -registration(r8438,c141,s2481).registration12945,332750 -registration(r8439,c201,s2481).registration12946,332782 -registration(r8439,c201,s2481).registration12946,332782 -registration(r8440,c39,s2481).registration12947,332814 -registration(r8440,c39,s2481).registration12947,332814 -registration(r8441,c57,s2482).registration12948,332845 -registration(r8441,c57,s2482).registration12948,332845 -registration(r8442,c85,s2482).registration12949,332876 -registration(r8442,c85,s2482).registration12949,332876 -registration(r8443,c81,s2482).registration12950,332907 -registration(r8443,c81,s2482).registration12950,332907 -registration(r8444,c209,s2482).registration12951,332938 -registration(r8444,c209,s2482).registration12951,332938 -registration(r8445,c189,s2483).registration12952,332970 -registration(r8445,c189,s2483).registration12952,332970 -registration(r8446,c194,s2483).registration12953,333002 -registration(r8446,c194,s2483).registration12953,333002 -registration(r8447,c34,s2483).registration12954,333034 -registration(r8447,c34,s2483).registration12954,333034 -registration(r8448,c206,s2484).registration12955,333065 -registration(r8448,c206,s2484).registration12955,333065 -registration(r8449,c211,s2484).registration12956,333097 -registration(r8449,c211,s2484).registration12956,333097 -registration(r8450,c185,s2484).registration12957,333129 -registration(r8450,c185,s2484).registration12957,333129 -registration(r8451,c143,s2484).registration12958,333161 -registration(r8451,c143,s2484).registration12958,333161 -registration(r8452,c23,s2484).registration12959,333193 -registration(r8452,c23,s2484).registration12959,333193 -registration(r8453,c237,s2485).registration12960,333224 -registration(r8453,c237,s2485).registration12960,333224 -registration(r8454,c49,s2485).registration12961,333256 -registration(r8454,c49,s2485).registration12961,333256 -registration(r8455,c230,s2485).registration12962,333287 -registration(r8455,c230,s2485).registration12962,333287 -registration(r8456,c187,s2486).registration12963,333319 -registration(r8456,c187,s2486).registration12963,333319 -registration(r8457,c100,s2486).registration12964,333351 -registration(r8457,c100,s2486).registration12964,333351 -registration(r8458,c146,s2486).registration12965,333383 -registration(r8458,c146,s2486).registration12965,333383 -registration(r8459,c186,s2486).registration12966,333415 -registration(r8459,c186,s2486).registration12966,333415 -registration(r8460,c230,s2487).registration12967,333447 -registration(r8460,c230,s2487).registration12967,333447 -registration(r8461,c131,s2487).registration12968,333479 -registration(r8461,c131,s2487).registration12968,333479 -registration(r8462,c243,s2487).registration12969,333511 -registration(r8462,c243,s2487).registration12969,333511 -registration(r8463,c234,s2488).registration12970,333543 -registration(r8463,c234,s2488).registration12970,333543 -registration(r8464,c79,s2488).registration12971,333575 -registration(r8464,c79,s2488).registration12971,333575 -registration(r8465,c165,s2488).registration12972,333606 -registration(r8465,c165,s2488).registration12972,333606 -registration(r8466,c200,s2488).registration12973,333638 -registration(r8466,c200,s2488).registration12973,333638 -registration(r8467,c119,s2489).registration12974,333670 -registration(r8467,c119,s2489).registration12974,333670 -registration(r8468,c85,s2489).registration12975,333702 -registration(r8468,c85,s2489).registration12975,333702 -registration(r8469,c151,s2489).registration12976,333733 -registration(r8469,c151,s2489).registration12976,333733 -registration(r8470,c160,s2489).registration12977,333765 -registration(r8470,c160,s2489).registration12977,333765 -registration(r8471,c220,s2490).registration12978,333797 -registration(r8471,c220,s2490).registration12978,333797 -registration(r8472,c33,s2490).registration12979,333829 -registration(r8472,c33,s2490).registration12979,333829 -registration(r8473,c182,s2490).registration12980,333860 -registration(r8473,c182,s2490).registration12980,333860 -registration(r8474,c157,s2491).registration12981,333892 -registration(r8474,c157,s2491).registration12981,333892 -registration(r8475,c151,s2491).registration12982,333924 -registration(r8475,c151,s2491).registration12982,333924 -registration(r8476,c15,s2491).registration12983,333956 -registration(r8476,c15,s2491).registration12983,333956 -registration(r8477,c162,s2492).registration12984,333987 -registration(r8477,c162,s2492).registration12984,333987 -registration(r8478,c163,s2492).registration12985,334019 -registration(r8478,c163,s2492).registration12985,334019 -registration(r8479,c41,s2492).registration12986,334051 -registration(r8479,c41,s2492).registration12986,334051 -registration(r8480,c173,s2493).registration12987,334082 -registration(r8480,c173,s2493).registration12987,334082 -registration(r8481,c80,s2493).registration12988,334114 -registration(r8481,c80,s2493).registration12988,334114 -registration(r8482,c197,s2493).registration12989,334145 -registration(r8482,c197,s2493).registration12989,334145 -registration(r8483,c20,s2494).registration12990,334177 -registration(r8483,c20,s2494).registration12990,334177 -registration(r8484,c41,s2494).registration12991,334208 -registration(r8484,c41,s2494).registration12991,334208 -registration(r8485,c227,s2494).registration12992,334239 -registration(r8485,c227,s2494).registration12992,334239 -registration(r8486,c241,s2494).registration12993,334271 -registration(r8486,c241,s2494).registration12993,334271 -registration(r8487,c124,s2495).registration12994,334303 -registration(r8487,c124,s2495).registration12994,334303 -registration(r8488,c136,s2495).registration12995,334335 -registration(r8488,c136,s2495).registration12995,334335 -registration(r8489,c165,s2495).registration12996,334367 -registration(r8489,c165,s2495).registration12996,334367 -registration(r8490,c128,s2495).registration12997,334399 -registration(r8490,c128,s2495).registration12997,334399 -registration(r8491,c174,s2496).registration12998,334431 -registration(r8491,c174,s2496).registration12998,334431 -registration(r8492,c222,s2496).registration12999,334463 -registration(r8492,c222,s2496).registration12999,334463 -registration(r8493,c73,s2496).registration13000,334495 -registration(r8493,c73,s2496).registration13000,334495 -registration(r8494,c123,s2496).registration13001,334526 -registration(r8494,c123,s2496).registration13001,334526 -registration(r8495,c17,s2497).registration13002,334558 -registration(r8495,c17,s2497).registration13002,334558 -registration(r8496,c213,s2497).registration13003,334589 -registration(r8496,c213,s2497).registration13003,334589 -registration(r8497,c222,s2497).registration13004,334621 -registration(r8497,c222,s2497).registration13004,334621 -registration(r8498,c7,s2498).registration13005,334653 -registration(r8498,c7,s2498).registration13005,334653 -registration(r8499,c17,s2498).registration13006,334683 -registration(r8499,c17,s2498).registration13006,334683 -registration(r8500,c1,s2498).registration13007,334714 -registration(r8500,c1,s2498).registration13007,334714 -registration(r8501,c199,s2499).registration13008,334744 -registration(r8501,c199,s2499).registration13008,334744 -registration(r8502,c54,s2499).registration13009,334776 -registration(r8502,c54,s2499).registration13009,334776 -registration(r8503,c156,s2499).registration13010,334807 -registration(r8503,c156,s2499).registration13010,334807 -registration(r8504,c127,s2500).registration13011,334839 -registration(r8504,c127,s2500).registration13011,334839 -registration(r8505,c1,s2500).registration13012,334871 -registration(r8505,c1,s2500).registration13012,334871 -registration(r8506,c80,s2500).registration13013,334901 -registration(r8506,c80,s2500).registration13013,334901 -registration(r8507,c216,s2501).registration13014,334932 -registration(r8507,c216,s2501).registration13014,334932 -registration(r8508,c125,s2501).registration13015,334964 -registration(r8508,c125,s2501).registration13015,334964 -registration(r8509,c11,s2501).registration13016,334996 -registration(r8509,c11,s2501).registration13016,334996 -registration(r8510,c185,s2502).registration13017,335027 -registration(r8510,c185,s2502).registration13017,335027 -registration(r8511,c221,s2502).registration13018,335059 -registration(r8511,c221,s2502).registration13018,335059 -registration(r8512,c73,s2502).registration13019,335091 -registration(r8512,c73,s2502).registration13019,335091 -registration(r8513,c44,s2503).registration13020,335122 -registration(r8513,c44,s2503).registration13020,335122 -registration(r8514,c204,s2503).registration13021,335153 -registration(r8514,c204,s2503).registration13021,335153 -registration(r8515,c47,s2503).registration13022,335185 -registration(r8515,c47,s2503).registration13022,335185 -registration(r8516,c128,s2503).registration13023,335216 -registration(r8516,c128,s2503).registration13023,335216 -registration(r8517,c18,s2504).registration13024,335248 -registration(r8517,c18,s2504).registration13024,335248 -registration(r8518,c145,s2504).registration13025,335279 -registration(r8518,c145,s2504).registration13025,335279 -registration(r8519,c169,s2504).registration13026,335311 -registration(r8519,c169,s2504).registration13026,335311 -registration(r8520,c111,s2505).registration13027,335343 -registration(r8520,c111,s2505).registration13027,335343 -registration(r8521,c254,s2505).registration13028,335375 -registration(r8521,c254,s2505).registration13028,335375 -registration(r8522,c142,s2505).registration13029,335407 -registration(r8522,c142,s2505).registration13029,335407 -registration(r8523,c14,s2506).registration13030,335439 -registration(r8523,c14,s2506).registration13030,335439 -registration(r8524,c78,s2506).registration13031,335470 -registration(r8524,c78,s2506).registration13031,335470 -registration(r8525,c175,s2506).registration13032,335501 -registration(r8525,c175,s2506).registration13032,335501 -registration(r8526,c135,s2507).registration13033,335533 -registration(r8526,c135,s2507).registration13033,335533 -registration(r8527,c102,s2507).registration13034,335565 -registration(r8527,c102,s2507).registration13034,335565 -registration(r8528,c215,s2507).registration13035,335597 -registration(r8528,c215,s2507).registration13035,335597 -registration(r8529,c144,s2508).registration13036,335629 -registration(r8529,c144,s2508).registration13036,335629 -registration(r8530,c100,s2508).registration13037,335661 -registration(r8530,c100,s2508).registration13037,335661 -registration(r8531,c176,s2508).registration13038,335693 -registration(r8531,c176,s2508).registration13038,335693 -registration(r8532,c219,s2509).registration13039,335725 -registration(r8532,c219,s2509).registration13039,335725 -registration(r8533,c24,s2509).registration13040,335757 -registration(r8533,c24,s2509).registration13040,335757 -registration(r8534,c236,s2509).registration13041,335788 -registration(r8534,c236,s2509).registration13041,335788 -registration(r8535,c147,s2510).registration13042,335820 -registration(r8535,c147,s2510).registration13042,335820 -registration(r8536,c248,s2510).registration13043,335852 -registration(r8536,c248,s2510).registration13043,335852 -registration(r8537,c41,s2510).registration13044,335884 -registration(r8537,c41,s2510).registration13044,335884 -registration(r8538,c28,s2511).registration13045,335915 -registration(r8538,c28,s2511).registration13045,335915 -registration(r8539,c172,s2511).registration13046,335946 -registration(r8539,c172,s2511).registration13046,335946 -registration(r8540,c191,s2511).registration13047,335978 -registration(r8540,c191,s2511).registration13047,335978 -registration(r8541,c28,s2512).registration13048,336010 -registration(r8541,c28,s2512).registration13048,336010 -registration(r8542,c186,s2512).registration13049,336041 -registration(r8542,c186,s2512).registration13049,336041 -registration(r8543,c69,s2512).registration13050,336073 -registration(r8543,c69,s2512).registration13050,336073 -registration(r8544,c16,s2513).registration13051,336104 -registration(r8544,c16,s2513).registration13051,336104 -registration(r8545,c83,s2513).registration13052,336135 -registration(r8545,c83,s2513).registration13052,336135 -registration(r8546,c8,s2513).registration13053,336166 -registration(r8546,c8,s2513).registration13053,336166 -registration(r8547,c110,s2514).registration13054,336196 -registration(r8547,c110,s2514).registration13054,336196 -registration(r8548,c121,s2514).registration13055,336228 -registration(r8548,c121,s2514).registration13055,336228 -registration(r8549,c61,s2514).registration13056,336260 -registration(r8549,c61,s2514).registration13056,336260 -registration(r8550,c197,s2514).registration13057,336291 -registration(r8550,c197,s2514).registration13057,336291 -registration(r8551,c249,s2515).registration13058,336323 -registration(r8551,c249,s2515).registration13058,336323 -registration(r8552,c220,s2515).registration13059,336355 -registration(r8552,c220,s2515).registration13059,336355 -registration(r8553,c231,s2515).registration13060,336387 -registration(r8553,c231,s2515).registration13060,336387 -registration(r8554,c124,s2516).registration13061,336419 -registration(r8554,c124,s2516).registration13061,336419 -registration(r8555,c216,s2516).registration13062,336451 -registration(r8555,c216,s2516).registration13062,336451 -registration(r8556,c160,s2516).registration13063,336483 -registration(r8556,c160,s2516).registration13063,336483 -registration(r8557,c189,s2517).registration13064,336515 -registration(r8557,c189,s2517).registration13064,336515 -registration(r8558,c99,s2517).registration13065,336547 -registration(r8558,c99,s2517).registration13065,336547 -registration(r8559,c86,s2517).registration13066,336578 -registration(r8559,c86,s2517).registration13066,336578 -registration(r8560,c116,s2518).registration13067,336609 -registration(r8560,c116,s2518).registration13067,336609 -registration(r8561,c34,s2518).registration13068,336641 -registration(r8561,c34,s2518).registration13068,336641 -registration(r8562,c161,s2518).registration13069,336672 -registration(r8562,c161,s2518).registration13069,336672 -registration(r8563,c178,s2519).registration13070,336704 -registration(r8563,c178,s2519).registration13070,336704 -registration(r8564,c146,s2519).registration13071,336736 -registration(r8564,c146,s2519).registration13071,336736 -registration(r8565,c205,s2519).registration13072,336768 -registration(r8565,c205,s2519).registration13072,336768 -registration(r8566,c59,s2520).registration13073,336800 -registration(r8566,c59,s2520).registration13073,336800 -registration(r8567,c18,s2520).registration13074,336831 -registration(r8567,c18,s2520).registration13074,336831 -registration(r8568,c171,s2520).registration13075,336862 -registration(r8568,c171,s2520).registration13075,336862 -registration(r8569,c167,s2521).registration13076,336894 -registration(r8569,c167,s2521).registration13076,336894 -registration(r8570,c82,s2521).registration13077,336926 -registration(r8570,c82,s2521).registration13077,336926 -registration(r8571,c181,s2521).registration13078,336957 -registration(r8571,c181,s2521).registration13078,336957 -registration(r8572,c42,s2521).registration13079,336989 -registration(r8572,c42,s2521).registration13079,336989 -registration(r8573,c12,s2522).registration13080,337020 -registration(r8573,c12,s2522).registration13080,337020 -registration(r8574,c10,s2522).registration13081,337051 -registration(r8574,c10,s2522).registration13081,337051 -registration(r8575,c203,s2522).registration13082,337082 -registration(r8575,c203,s2522).registration13082,337082 -registration(r8576,c136,s2523).registration13083,337114 -registration(r8576,c136,s2523).registration13083,337114 -registration(r8577,c40,s2523).registration13084,337146 -registration(r8577,c40,s2523).registration13084,337146 -registration(r8578,c250,s2523).registration13085,337177 -registration(r8578,c250,s2523).registration13085,337177 -registration(r8579,c111,s2524).registration13086,337209 -registration(r8579,c111,s2524).registration13086,337209 -registration(r8580,c20,s2524).registration13087,337241 -registration(r8580,c20,s2524).registration13087,337241 -registration(r8581,c38,s2524).registration13088,337272 -registration(r8581,c38,s2524).registration13088,337272 -registration(r8582,c215,s2525).registration13089,337303 -registration(r8582,c215,s2525).registration13089,337303 -registration(r8583,c66,s2525).registration13090,337335 -registration(r8583,c66,s2525).registration13090,337335 -registration(r8584,c166,s2525).registration13091,337366 -registration(r8584,c166,s2525).registration13091,337366 -registration(r8585,c226,s2526).registration13092,337398 -registration(r8585,c226,s2526).registration13092,337398 -registration(r8586,c131,s2526).registration13093,337430 -registration(r8586,c131,s2526).registration13093,337430 -registration(r8587,c89,s2526).registration13094,337462 -registration(r8587,c89,s2526).registration13094,337462 -registration(r8588,c1,s2527).registration13095,337493 -registration(r8588,c1,s2527).registration13095,337493 -registration(r8589,c142,s2527).registration13096,337523 -registration(r8589,c142,s2527).registration13096,337523 -registration(r8590,c17,s2527).registration13097,337555 -registration(r8590,c17,s2527).registration13097,337555 -registration(r8591,c59,s2528).registration13098,337586 -registration(r8591,c59,s2528).registration13098,337586 -registration(r8592,c158,s2528).registration13099,337617 -registration(r8592,c158,s2528).registration13099,337617 -registration(r8593,c203,s2528).registration13100,337649 -registration(r8593,c203,s2528).registration13100,337649 -registration(r8594,c98,s2528).registration13101,337681 -registration(r8594,c98,s2528).registration13101,337681 -registration(r8595,c143,s2529).registration13102,337712 -registration(r8595,c143,s2529).registration13102,337712 -registration(r8596,c138,s2529).registration13103,337744 -registration(r8596,c138,s2529).registration13103,337744 -registration(r8597,c104,s2529).registration13104,337776 -registration(r8597,c104,s2529).registration13104,337776 -registration(r8598,c216,s2529).registration13105,337808 -registration(r8598,c216,s2529).registration13105,337808 -registration(r8599,c149,s2530).registration13106,337840 -registration(r8599,c149,s2530).registration13106,337840 -registration(r8600,c53,s2530).registration13107,337872 -registration(r8600,c53,s2530).registration13107,337872 -registration(r8601,c135,s2530).registration13108,337903 -registration(r8601,c135,s2530).registration13108,337903 -registration(r8602,c202,s2530).registration13109,337935 -registration(r8602,c202,s2530).registration13109,337935 -registration(r8603,c21,s2531).registration13110,337967 -registration(r8603,c21,s2531).registration13110,337967 -registration(r8604,c127,s2531).registration13111,337998 -registration(r8604,c127,s2531).registration13111,337998 -registration(r8605,c121,s2531).registration13112,338030 -registration(r8605,c121,s2531).registration13112,338030 -registration(r8606,c211,s2531).registration13113,338062 -registration(r8606,c211,s2531).registration13113,338062 -registration(r8607,c52,s2532).registration13114,338094 -registration(r8607,c52,s2532).registration13114,338094 -registration(r8608,c95,s2532).registration13115,338125 -registration(r8608,c95,s2532).registration13115,338125 -registration(r8609,c213,s2532).registration13116,338156 -registration(r8609,c213,s2532).registration13116,338156 -registration(r8610,c102,s2533).registration13117,338188 -registration(r8610,c102,s2533).registration13117,338188 -registration(r8611,c131,s2533).registration13118,338220 -registration(r8611,c131,s2533).registration13118,338220 -registration(r8612,c171,s2533).registration13119,338252 -registration(r8612,c171,s2533).registration13119,338252 -registration(r8613,c77,s2533).registration13120,338284 -registration(r8613,c77,s2533).registration13120,338284 -registration(r8614,c102,s2534).registration13121,338315 -registration(r8614,c102,s2534).registration13121,338315 -registration(r8615,c189,s2534).registration13122,338347 -registration(r8615,c189,s2534).registration13122,338347 -registration(r8616,c63,s2534).registration13123,338379 -registration(r8616,c63,s2534).registration13123,338379 -registration(r8617,c193,s2534).registration13124,338410 -registration(r8617,c193,s2534).registration13124,338410 -registration(r8618,c0,s2535).registration13125,338442 -registration(r8618,c0,s2535).registration13125,338442 -registration(r8619,c254,s2535).registration13126,338472 -registration(r8619,c254,s2535).registration13126,338472 -registration(r8620,c86,s2535).registration13127,338504 -registration(r8620,c86,s2535).registration13127,338504 -registration(r8621,c196,s2536).registration13128,338535 -registration(r8621,c196,s2536).registration13128,338535 -registration(r8622,c67,s2536).registration13129,338567 -registration(r8622,c67,s2536).registration13129,338567 -registration(r8623,c81,s2536).registration13130,338598 -registration(r8623,c81,s2536).registration13130,338598 -registration(r8624,c202,s2537).registration13131,338629 -registration(r8624,c202,s2537).registration13131,338629 -registration(r8625,c211,s2537).registration13132,338661 -registration(r8625,c211,s2537).registration13132,338661 -registration(r8626,c196,s2537).registration13133,338693 -registration(r8626,c196,s2537).registration13133,338693 -registration(r8627,c36,s2537).registration13134,338725 -registration(r8627,c36,s2537).registration13134,338725 -registration(r8628,c114,s2538).registration13135,338756 -registration(r8628,c114,s2538).registration13135,338756 -registration(r8629,c201,s2538).registration13136,338788 -registration(r8629,c201,s2538).registration13136,338788 -registration(r8630,c147,s2538).registration13137,338820 -registration(r8630,c147,s2538).registration13137,338820 -registration(r8631,c62,s2539).registration13138,338852 -registration(r8631,c62,s2539).registration13138,338852 -registration(r8632,c220,s2539).registration13139,338883 -registration(r8632,c220,s2539).registration13139,338883 -registration(r8633,c154,s2539).registration13140,338915 -registration(r8633,c154,s2539).registration13140,338915 -registration(r8634,c87,s2540).registration13141,338947 -registration(r8634,c87,s2540).registration13141,338947 -registration(r8635,c47,s2540).registration13142,338978 -registration(r8635,c47,s2540).registration13142,338978 -registration(r8636,c52,s2540).registration13143,339009 -registration(r8636,c52,s2540).registration13143,339009 -registration(r8637,c52,s2541).registration13144,339040 -registration(r8637,c52,s2541).registration13144,339040 -registration(r8638,c125,s2541).registration13145,339071 -registration(r8638,c125,s2541).registration13145,339071 -registration(r8639,c71,s2541).registration13146,339103 -registration(r8639,c71,s2541).registration13146,339103 -registration(r8640,c11,s2541).registration13147,339134 -registration(r8640,c11,s2541).registration13147,339134 -registration(r8641,c173,s2542).registration13148,339165 -registration(r8641,c173,s2542).registration13148,339165 -registration(r8642,c83,s2542).registration13149,339197 -registration(r8642,c83,s2542).registration13149,339197 -registration(r8643,c230,s2542).registration13150,339228 -registration(r8643,c230,s2542).registration13150,339228 -registration(r8644,c184,s2542).registration13151,339260 -registration(r8644,c184,s2542).registration13151,339260 -registration(r8645,c53,s2543).registration13152,339292 -registration(r8645,c53,s2543).registration13152,339292 -registration(r8646,c187,s2543).registration13153,339323 -registration(r8646,c187,s2543).registration13153,339323 -registration(r8647,c192,s2543).registration13154,339355 -registration(r8647,c192,s2543).registration13154,339355 -registration(r8648,c136,s2543).registration13155,339387 -registration(r8648,c136,s2543).registration13155,339387 -registration(r8649,c238,s2544).registration13156,339419 -registration(r8649,c238,s2544).registration13156,339419 -registration(r8650,c5,s2544).registration13157,339451 -registration(r8650,c5,s2544).registration13157,339451 -registration(r8651,c213,s2544).registration13158,339481 -registration(r8651,c213,s2544).registration13158,339481 -registration(r8652,c225,s2544).registration13159,339513 -registration(r8652,c225,s2544).registration13159,339513 -registration(r8653,c27,s2545).registration13160,339545 -registration(r8653,c27,s2545).registration13160,339545 -registration(r8654,c37,s2545).registration13161,339576 -registration(r8654,c37,s2545).registration13161,339576 -registration(r8655,c200,s2545).registration13162,339607 -registration(r8655,c200,s2545).registration13162,339607 -registration(r8656,c70,s2546).registration13163,339639 -registration(r8656,c70,s2546).registration13163,339639 -registration(r8657,c59,s2546).registration13164,339670 -registration(r8657,c59,s2546).registration13164,339670 -registration(r8658,c141,s2546).registration13165,339701 -registration(r8658,c141,s2546).registration13165,339701 -registration(r8659,c246,s2547).registration13166,339733 -registration(r8659,c246,s2547).registration13166,339733 -registration(r8660,c197,s2547).registration13167,339765 -registration(r8660,c197,s2547).registration13167,339765 -registration(r8661,c140,s2547).registration13168,339797 -registration(r8661,c140,s2547).registration13168,339797 -registration(r8662,c114,s2547).registration13169,339829 -registration(r8662,c114,s2547).registration13169,339829 -registration(r8663,c20,s2548).registration13170,339861 -registration(r8663,c20,s2548).registration13170,339861 -registration(r8664,c56,s2548).registration13171,339892 -registration(r8664,c56,s2548).registration13171,339892 -registration(r8665,c45,s2548).registration13172,339923 -registration(r8665,c45,s2548).registration13172,339923 -registration(r8666,c236,s2549).registration13173,339954 -registration(r8666,c236,s2549).registration13173,339954 -registration(r8667,c163,s2549).registration13174,339986 -registration(r8667,c163,s2549).registration13174,339986 -registration(r8668,c32,s2549).registration13175,340018 -registration(r8668,c32,s2549).registration13175,340018 -registration(r8669,c38,s2550).registration13176,340049 -registration(r8669,c38,s2550).registration13176,340049 -registration(r8670,c76,s2550).registration13177,340080 -registration(r8670,c76,s2550).registration13177,340080 -registration(r8671,c190,s2550).registration13178,340111 -registration(r8671,c190,s2550).registration13178,340111 -registration(r8672,c188,s2550).registration13179,340143 -registration(r8672,c188,s2550).registration13179,340143 -registration(r8673,c45,s2551).registration13180,340175 -registration(r8673,c45,s2551).registration13180,340175 -registration(r8674,c133,s2551).registration13181,340206 -registration(r8674,c133,s2551).registration13181,340206 -registration(r8675,c36,s2551).registration13182,340238 -registration(r8675,c36,s2551).registration13182,340238 -registration(r8676,c96,s2552).registration13183,340269 -registration(r8676,c96,s2552).registration13183,340269 -registration(r8677,c17,s2552).registration13184,340300 -registration(r8677,c17,s2552).registration13184,340300 -registration(r8678,c142,s2552).registration13185,340331 -registration(r8678,c142,s2552).registration13185,340331 -registration(r8679,c83,s2552).registration13186,340363 -registration(r8679,c83,s2552).registration13186,340363 -registration(r8680,c112,s2553).registration13187,340394 -registration(r8680,c112,s2553).registration13187,340394 -registration(r8681,c172,s2553).registration13188,340426 -registration(r8681,c172,s2553).registration13188,340426 -registration(r8682,c108,s2553).registration13189,340458 -registration(r8682,c108,s2553).registration13189,340458 -registration(r8683,c165,s2554).registration13190,340490 -registration(r8683,c165,s2554).registration13190,340490 -registration(r8684,c17,s2554).registration13191,340522 -registration(r8684,c17,s2554).registration13191,340522 -registration(r8685,c9,s2554).registration13192,340553 -registration(r8685,c9,s2554).registration13192,340553 -registration(r8686,c173,s2555).registration13193,340583 -registration(r8686,c173,s2555).registration13193,340583 -registration(r8687,c185,s2555).registration13194,340615 -registration(r8687,c185,s2555).registration13194,340615 -registration(r8688,c115,s2555).registration13195,340647 -registration(r8688,c115,s2555).registration13195,340647 -registration(r8689,c191,s2556).registration13196,340679 -registration(r8689,c191,s2556).registration13196,340679 -registration(r8690,c253,s2556).registration13197,340711 -registration(r8690,c253,s2556).registration13197,340711 -registration(r8691,c231,s2556).registration13198,340743 -registration(r8691,c231,s2556).registration13198,340743 -registration(r8692,c21,s2557).registration13199,340775 -registration(r8692,c21,s2557).registration13199,340775 -registration(r8693,c0,s2557).registration13200,340806 -registration(r8693,c0,s2557).registration13200,340806 -registration(r8694,c253,s2557).registration13201,340836 -registration(r8694,c253,s2557).registration13201,340836 -registration(r8695,c94,s2558).registration13202,340868 -registration(r8695,c94,s2558).registration13202,340868 -registration(r8696,c172,s2558).registration13203,340899 -registration(r8696,c172,s2558).registration13203,340899 -registration(r8697,c88,s2558).registration13204,340931 -registration(r8697,c88,s2558).registration13204,340931 -registration(r8698,c173,s2559).registration13205,340962 -registration(r8698,c173,s2559).registration13205,340962 -registration(r8699,c178,s2559).registration13206,340994 -registration(r8699,c178,s2559).registration13206,340994 -registration(r8700,c94,s2559).registration13207,341026 -registration(r8700,c94,s2559).registration13207,341026 -registration(r8701,c149,s2559).registration13208,341057 -registration(r8701,c149,s2559).registration13208,341057 -registration(r8702,c193,s2559).registration13209,341089 -registration(r8702,c193,s2559).registration13209,341089 -registration(r8703,c167,s2560).registration13210,341121 -registration(r8703,c167,s2560).registration13210,341121 -registration(r8704,c40,s2560).registration13211,341153 -registration(r8704,c40,s2560).registration13211,341153 -registration(r8705,c89,s2560).registration13212,341184 -registration(r8705,c89,s2560).registration13212,341184 -registration(r8706,c19,s2561).registration13213,341215 -registration(r8706,c19,s2561).registration13213,341215 -registration(r8707,c27,s2561).registration13214,341246 -registration(r8707,c27,s2561).registration13214,341246 -registration(r8708,c22,s2561).registration13215,341277 -registration(r8708,c22,s2561).registration13215,341277 -registration(r8709,c19,s2562).registration13216,341308 -registration(r8709,c19,s2562).registration13216,341308 -registration(r8710,c220,s2562).registration13217,341339 -registration(r8710,c220,s2562).registration13217,341339 -registration(r8711,c86,s2562).registration13218,341371 -registration(r8711,c86,s2562).registration13218,341371 -registration(r8712,c86,s2563).registration13219,341402 -registration(r8712,c86,s2563).registration13219,341402 -registration(r8713,c232,s2563).registration13220,341433 -registration(r8713,c232,s2563).registration13220,341433 -registration(r8714,c140,s2563).registration13221,341465 -registration(r8714,c140,s2563).registration13221,341465 -registration(r8715,c70,s2563).registration13222,341497 -registration(r8715,c70,s2563).registration13222,341497 -registration(r8716,c123,s2564).registration13223,341528 -registration(r8716,c123,s2564).registration13223,341528 -registration(r8717,c136,s2564).registration13224,341560 -registration(r8717,c136,s2564).registration13224,341560 -registration(r8718,c236,s2564).registration13225,341592 -registration(r8718,c236,s2564).registration13225,341592 -registration(r8719,c57,s2564).registration13226,341624 -registration(r8719,c57,s2564).registration13226,341624 -registration(r8720,c67,s2565).registration13227,341655 -registration(r8720,c67,s2565).registration13227,341655 -registration(r8721,c208,s2565).registration13228,341686 -registration(r8721,c208,s2565).registration13228,341686 -registration(r8722,c108,s2565).registration13229,341718 -registration(r8722,c108,s2565).registration13229,341718 -registration(r8723,c120,s2565).registration13230,341750 -registration(r8723,c120,s2565).registration13230,341750 -registration(r8724,c94,s2566).registration13231,341782 -registration(r8724,c94,s2566).registration13231,341782 -registration(r8725,c30,s2566).registration13232,341813 -registration(r8725,c30,s2566).registration13232,341813 -registration(r8726,c108,s2566).registration13233,341844 -registration(r8726,c108,s2566).registration13233,341844 -registration(r8727,c129,s2567).registration13234,341876 -registration(r8727,c129,s2567).registration13234,341876 -registration(r8728,c100,s2567).registration13235,341908 -registration(r8728,c100,s2567).registration13235,341908 -registration(r8729,c18,s2567).registration13236,341940 -registration(r8729,c18,s2567).registration13236,341940 -registration(r8730,c105,s2568).registration13237,341971 -registration(r8730,c105,s2568).registration13237,341971 -registration(r8731,c128,s2568).registration13238,342003 -registration(r8731,c128,s2568).registration13238,342003 -registration(r8732,c50,s2568).registration13239,342035 -registration(r8732,c50,s2568).registration13239,342035 -registration(r8733,c191,s2569).registration13240,342066 -registration(r8733,c191,s2569).registration13240,342066 -registration(r8734,c226,s2569).registration13241,342098 -registration(r8734,c226,s2569).registration13241,342098 -registration(r8735,c174,s2569).registration13242,342130 -registration(r8735,c174,s2569).registration13242,342130 -registration(r8736,c55,s2570).registration13243,342162 -registration(r8736,c55,s2570).registration13243,342162 -registration(r8737,c228,s2570).registration13244,342193 -registration(r8737,c228,s2570).registration13244,342193 -registration(r8738,c134,s2570).registration13245,342225 -registration(r8738,c134,s2570).registration13245,342225 -registration(r8739,c202,s2570).registration13246,342257 -registration(r8739,c202,s2570).registration13246,342257 -registration(r8740,c66,s2571).registration13247,342289 -registration(r8740,c66,s2571).registration13247,342289 -registration(r8741,c157,s2571).registration13248,342320 -registration(r8741,c157,s2571).registration13248,342320 -registration(r8742,c207,s2571).registration13249,342352 -registration(r8742,c207,s2571).registration13249,342352 -registration(r8743,c44,s2571).registration13250,342384 -registration(r8743,c44,s2571).registration13250,342384 -registration(r8744,c217,s2572).registration13251,342415 -registration(r8744,c217,s2572).registration13251,342415 -registration(r8745,c156,s2572).registration13252,342447 -registration(r8745,c156,s2572).registration13252,342447 -registration(r8746,c158,s2572).registration13253,342479 -registration(r8746,c158,s2572).registration13253,342479 -registration(r8747,c29,s2572).registration13254,342511 -registration(r8747,c29,s2572).registration13254,342511 -registration(r8748,c37,s2572).registration13255,342542 -registration(r8748,c37,s2572).registration13255,342542 -registration(r8749,c178,s2573).registration13256,342573 -registration(r8749,c178,s2573).registration13256,342573 -registration(r8750,c67,s2573).registration13257,342605 -registration(r8750,c67,s2573).registration13257,342605 -registration(r8751,c142,s2573).registration13258,342636 -registration(r8751,c142,s2573).registration13258,342636 -registration(r8752,c117,s2573).registration13259,342668 -registration(r8752,c117,s2573).registration13259,342668 -registration(r8753,c156,s2574).registration13260,342700 -registration(r8753,c156,s2574).registration13260,342700 -registration(r8754,c52,s2574).registration13261,342732 -registration(r8754,c52,s2574).registration13261,342732 -registration(r8755,c48,s2574).registration13262,342763 -registration(r8755,c48,s2574).registration13262,342763 -registration(r8756,c143,s2574).registration13263,342794 -registration(r8756,c143,s2574).registration13263,342794 -registration(r8757,c132,s2575).registration13264,342826 -registration(r8757,c132,s2575).registration13264,342826 -registration(r8758,c17,s2575).registration13265,342858 -registration(r8758,c17,s2575).registration13265,342858 -registration(r8759,c22,s2575).registration13266,342889 -registration(r8759,c22,s2575).registration13266,342889 -registration(r8760,c224,s2576).registration13267,342920 -registration(r8760,c224,s2576).registration13267,342920 -registration(r8761,c55,s2576).registration13268,342952 -registration(r8761,c55,s2576).registration13268,342952 -registration(r8762,c222,s2576).registration13269,342983 -registration(r8762,c222,s2576).registration13269,342983 -registration(r8763,c16,s2577).registration13270,343015 -registration(r8763,c16,s2577).registration13270,343015 -registration(r8764,c220,s2577).registration13271,343046 -registration(r8764,c220,s2577).registration13271,343046 -registration(r8765,c202,s2577).registration13272,343078 -registration(r8765,c202,s2577).registration13272,343078 -registration(r8766,c221,s2578).registration13273,343110 -registration(r8766,c221,s2578).registration13273,343110 -registration(r8767,c202,s2578).registration13274,343142 -registration(r8767,c202,s2578).registration13274,343142 -registration(r8768,c124,s2578).registration13275,343174 -registration(r8768,c124,s2578).registration13275,343174 -registration(r8769,c125,s2578).registration13276,343206 -registration(r8769,c125,s2578).registration13276,343206 -registration(r8770,c144,s2579).registration13277,343238 -registration(r8770,c144,s2579).registration13277,343238 -registration(r8771,c177,s2579).registration13278,343270 -registration(r8771,c177,s2579).registration13278,343270 -registration(r8772,c54,s2579).registration13279,343302 -registration(r8772,c54,s2579).registration13279,343302 -registration(r8773,c108,s2580).registration13280,343333 -registration(r8773,c108,s2580).registration13280,343333 -registration(r8774,c16,s2580).registration13281,343365 -registration(r8774,c16,s2580).registration13281,343365 -registration(r8775,c153,s2580).registration13282,343396 -registration(r8775,c153,s2580).registration13282,343396 -registration(r8776,c29,s2581).registration13283,343428 -registration(r8776,c29,s2581).registration13283,343428 -registration(r8777,c171,s2581).registration13284,343459 -registration(r8777,c171,s2581).registration13284,343459 -registration(r8778,c182,s2581).registration13285,343491 -registration(r8778,c182,s2581).registration13285,343491 -registration(r8779,c237,s2581).registration13286,343523 -registration(r8779,c237,s2581).registration13286,343523 -registration(r8780,c75,s2582).registration13287,343555 -registration(r8780,c75,s2582).registration13287,343555 -registration(r8781,c204,s2582).registration13288,343586 -registration(r8781,c204,s2582).registration13288,343586 -registration(r8782,c69,s2582).registration13289,343618 -registration(r8782,c69,s2582).registration13289,343618 -registration(r8783,c33,s2583).registration13290,343649 -registration(r8783,c33,s2583).registration13290,343649 -registration(r8784,c9,s2583).registration13291,343680 -registration(r8784,c9,s2583).registration13291,343680 -registration(r8785,c139,s2583).registration13292,343710 -registration(r8785,c139,s2583).registration13292,343710 -registration(r8786,c85,s2584).registration13293,343742 -registration(r8786,c85,s2584).registration13293,343742 -registration(r8787,c26,s2584).registration13294,343773 -registration(r8787,c26,s2584).registration13294,343773 -registration(r8788,c233,s2584).registration13295,343804 -registration(r8788,c233,s2584).registration13295,343804 -registration(r8789,c122,s2585).registration13296,343836 -registration(r8789,c122,s2585).registration13296,343836 -registration(r8790,c132,s2585).registration13297,343868 -registration(r8790,c132,s2585).registration13297,343868 -registration(r8791,c18,s2585).registration13298,343900 -registration(r8791,c18,s2585).registration13298,343900 -registration(r8792,c127,s2586).registration13299,343931 -registration(r8792,c127,s2586).registration13299,343931 -registration(r8793,c105,s2586).registration13300,343963 -registration(r8793,c105,s2586).registration13300,343963 -registration(r8794,c106,s2586).registration13301,343995 -registration(r8794,c106,s2586).registration13301,343995 -registration(r8795,c9,s2586).registration13302,344027 -registration(r8795,c9,s2586).registration13302,344027 -registration(r8796,c196,s2587).registration13303,344057 -registration(r8796,c196,s2587).registration13303,344057 -registration(r8797,c190,s2587).registration13304,344089 -registration(r8797,c190,s2587).registration13304,344089 -registration(r8798,c153,s2587).registration13305,344121 -registration(r8798,c153,s2587).registration13305,344121 -registration(r8799,c229,s2588).registration13306,344153 -registration(r8799,c229,s2588).registration13306,344153 -registration(r8800,c125,s2588).registration13307,344185 -registration(r8800,c125,s2588).registration13307,344185 -registration(r8801,c155,s2588).registration13308,344217 -registration(r8801,c155,s2588).registration13308,344217 -registration(r8802,c89,s2588).registration13309,344249 -registration(r8802,c89,s2588).registration13309,344249 -registration(r8803,c44,s2589).registration13310,344280 -registration(r8803,c44,s2589).registration13310,344280 -registration(r8804,c229,s2589).registration13311,344311 -registration(r8804,c229,s2589).registration13311,344311 -registration(r8805,c90,s2589).registration13312,344343 -registration(r8805,c90,s2589).registration13312,344343 -registration(r8806,c58,s2589).registration13313,344374 -registration(r8806,c58,s2589).registration13313,344374 -registration(r8807,c251,s2590).registration13314,344405 -registration(r8807,c251,s2590).registration13314,344405 -registration(r8808,c13,s2590).registration13315,344437 -registration(r8808,c13,s2590).registration13315,344437 -registration(r8809,c80,s2590).registration13316,344468 -registration(r8809,c80,s2590).registration13316,344468 -registration(r8810,c98,s2591).registration13317,344499 -registration(r8810,c98,s2591).registration13317,344499 -registration(r8811,c207,s2591).registration13318,344530 -registration(r8811,c207,s2591).registration13318,344530 -registration(r8812,c99,s2591).registration13319,344562 -registration(r8812,c99,s2591).registration13319,344562 -registration(r8813,c205,s2592).registration13320,344593 -registration(r8813,c205,s2592).registration13320,344593 -registration(r8814,c251,s2592).registration13321,344625 -registration(r8814,c251,s2592).registration13321,344625 -registration(r8815,c67,s2592).registration13322,344657 -registration(r8815,c67,s2592).registration13322,344657 -registration(r8816,c3,s2593).registration13323,344688 -registration(r8816,c3,s2593).registration13323,344688 -registration(r8817,c239,s2593).registration13324,344718 -registration(r8817,c239,s2593).registration13324,344718 -registration(r8818,c113,s2593).registration13325,344750 -registration(r8818,c113,s2593).registration13325,344750 -registration(r8819,c239,s2594).registration13326,344782 -registration(r8819,c239,s2594).registration13326,344782 -registration(r8820,c244,s2594).registration13327,344814 -registration(r8820,c244,s2594).registration13327,344814 -registration(r8821,c248,s2594).registration13328,344846 -registration(r8821,c248,s2594).registration13328,344846 -registration(r8822,c36,s2595).registration13329,344878 -registration(r8822,c36,s2595).registration13329,344878 -registration(r8823,c48,s2595).registration13330,344909 -registration(r8823,c48,s2595).registration13330,344909 -registration(r8824,c11,s2595).registration13331,344940 -registration(r8824,c11,s2595).registration13331,344940 -registration(r8825,c127,s2596).registration13332,344971 -registration(r8825,c127,s2596).registration13332,344971 -registration(r8826,c51,s2596).registration13333,345003 -registration(r8826,c51,s2596).registration13333,345003 -registration(r8827,c119,s2596).registration13334,345034 -registration(r8827,c119,s2596).registration13334,345034 -registration(r8828,c9,s2597).registration13335,345066 -registration(r8828,c9,s2597).registration13335,345066 -registration(r8829,c50,s2597).registration13336,345096 -registration(r8829,c50,s2597).registration13336,345096 -registration(r8830,c121,s2597).registration13337,345127 -registration(r8830,c121,s2597).registration13337,345127 -registration(r8831,c179,s2597).registration13338,345159 -registration(r8831,c179,s2597).registration13338,345159 -registration(r8832,c57,s2598).registration13339,345191 -registration(r8832,c57,s2598).registration13339,345191 -registration(r8833,c15,s2598).registration13340,345222 -registration(r8833,c15,s2598).registration13340,345222 -registration(r8834,c246,s2598).registration13341,345253 -registration(r8834,c246,s2598).registration13341,345253 -registration(r8835,c249,s2599).registration13342,345285 -registration(r8835,c249,s2599).registration13342,345285 -registration(r8836,c125,s2599).registration13343,345317 -registration(r8836,c125,s2599).registration13343,345317 -registration(r8837,c65,s2599).registration13344,345349 -registration(r8837,c65,s2599).registration13344,345349 -registration(r8838,c49,s2600).registration13345,345380 -registration(r8838,c49,s2600).registration13345,345380 -registration(r8839,c71,s2600).registration13346,345411 -registration(r8839,c71,s2600).registration13346,345411 -registration(r8840,c75,s2600).registration13347,345442 -registration(r8840,c75,s2600).registration13347,345442 -registration(r8841,c110,s2601).registration13348,345473 -registration(r8841,c110,s2601).registration13348,345473 -registration(r8842,c172,s2601).registration13349,345505 -registration(r8842,c172,s2601).registration13349,345505 -registration(r8843,c3,s2601).registration13350,345537 -registration(r8843,c3,s2601).registration13350,345537 -registration(r8844,c130,s2601).registration13351,345567 -registration(r8844,c130,s2601).registration13351,345567 -registration(r8845,c217,s2602).registration13352,345599 -registration(r8845,c217,s2602).registration13352,345599 -registration(r8846,c141,s2602).registration13353,345631 -registration(r8846,c141,s2602).registration13353,345631 -registration(r8847,c80,s2602).registration13354,345663 -registration(r8847,c80,s2602).registration13354,345663 -registration(r8848,c131,s2603).registration13355,345694 -registration(r8848,c131,s2603).registration13355,345694 -registration(r8849,c251,s2603).registration13356,345726 -registration(r8849,c251,s2603).registration13356,345726 -registration(r8850,c4,s2603).registration13357,345758 -registration(r8850,c4,s2603).registration13357,345758 -registration(r8851,c62,s2604).registration13358,345788 -registration(r8851,c62,s2604).registration13358,345788 -registration(r8852,c167,s2604).registration13359,345819 -registration(r8852,c167,s2604).registration13359,345819 -registration(r8853,c164,s2604).registration13360,345851 -registration(r8853,c164,s2604).registration13360,345851 -registration(r8854,c157,s2605).registration13361,345883 -registration(r8854,c157,s2605).registration13361,345883 -registration(r8855,c73,s2605).registration13362,345915 -registration(r8855,c73,s2605).registration13362,345915 -registration(r8856,c185,s2605).registration13363,345946 -registration(r8856,c185,s2605).registration13363,345946 -registration(r8857,c234,s2606).registration13364,345978 -registration(r8857,c234,s2606).registration13364,345978 -registration(r8858,c54,s2606).registration13365,346010 -registration(r8858,c54,s2606).registration13365,346010 -registration(r8859,c229,s2606).registration13366,346041 -registration(r8859,c229,s2606).registration13366,346041 -registration(r8860,c85,s2606).registration13367,346073 -registration(r8860,c85,s2606).registration13367,346073 -registration(r8861,c19,s2607).registration13368,346104 -registration(r8861,c19,s2607).registration13368,346104 -registration(r8862,c50,s2607).registration13369,346135 -registration(r8862,c50,s2607).registration13369,346135 -registration(r8863,c251,s2607).registration13370,346166 -registration(r8863,c251,s2607).registration13370,346166 -registration(r8864,c179,s2607).registration13371,346198 -registration(r8864,c179,s2607).registration13371,346198 -registration(r8865,c184,s2608).registration13372,346230 -registration(r8865,c184,s2608).registration13372,346230 -registration(r8866,c5,s2608).registration13373,346262 -registration(r8866,c5,s2608).registration13373,346262 -registration(r8867,c88,s2608).registration13374,346292 -registration(r8867,c88,s2608).registration13374,346292 -registration(r8868,c84,s2609).registration13375,346323 -registration(r8868,c84,s2609).registration13375,346323 -registration(r8869,c85,s2609).registration13376,346354 -registration(r8869,c85,s2609).registration13376,346354 -registration(r8870,c31,s2609).registration13377,346385 -registration(r8870,c31,s2609).registration13377,346385 -registration(r8871,c148,s2609).registration13378,346416 -registration(r8871,c148,s2609).registration13378,346416 -registration(r8872,c166,s2610).registration13379,346448 -registration(r8872,c166,s2610).registration13379,346448 -registration(r8873,c94,s2610).registration13380,346480 -registration(r8873,c94,s2610).registration13380,346480 -registration(r8874,c61,s2610).registration13381,346511 -registration(r8874,c61,s2610).registration13381,346511 -registration(r8875,c246,s2611).registration13382,346542 -registration(r8875,c246,s2611).registration13382,346542 -registration(r8876,c52,s2611).registration13383,346574 -registration(r8876,c52,s2611).registration13383,346574 -registration(r8877,c69,s2611).registration13384,346605 -registration(r8877,c69,s2611).registration13384,346605 -registration(r8878,c43,s2612).registration13385,346636 -registration(r8878,c43,s2612).registration13385,346636 -registration(r8879,c72,s2612).registration13386,346667 -registration(r8879,c72,s2612).registration13386,346667 -registration(r8880,c154,s2612).registration13387,346698 -registration(r8880,c154,s2612).registration13387,346698 -registration(r8881,c202,s2613).registration13388,346730 -registration(r8881,c202,s2613).registration13388,346730 -registration(r8882,c124,s2613).registration13389,346762 -registration(r8882,c124,s2613).registration13389,346762 -registration(r8883,c132,s2613).registration13390,346794 -registration(r8883,c132,s2613).registration13390,346794 -registration(r8884,c60,s2614).registration13391,346826 -registration(r8884,c60,s2614).registration13391,346826 -registration(r8885,c132,s2614).registration13392,346857 -registration(r8885,c132,s2614).registration13392,346857 -registration(r8886,c171,s2614).registration13393,346889 -registration(r8886,c171,s2614).registration13393,346889 -registration(r8887,c255,s2614).registration13394,346921 -registration(r8887,c255,s2614).registration13394,346921 -registration(r8888,c225,s2615).registration13395,346953 -registration(r8888,c225,s2615).registration13395,346953 -registration(r8889,c44,s2615).registration13396,346985 -registration(r8889,c44,s2615).registration13396,346985 -registration(r8890,c1,s2615).registration13397,347016 -registration(r8890,c1,s2615).registration13397,347016 -registration(r8891,c168,s2616).registration13398,347046 -registration(r8891,c168,s2616).registration13398,347046 -registration(r8892,c211,s2616).registration13399,347078 -registration(r8892,c211,s2616).registration13399,347078 -registration(r8893,c49,s2616).registration13400,347110 -registration(r8893,c49,s2616).registration13400,347110 -registration(r8894,c40,s2617).registration13401,347141 -registration(r8894,c40,s2617).registration13401,347141 -registration(r8895,c33,s2617).registration13402,347172 -registration(r8895,c33,s2617).registration13402,347172 -registration(r8896,c194,s2617).registration13403,347203 -registration(r8896,c194,s2617).registration13403,347203 -registration(r8897,c141,s2617).registration13404,347235 -registration(r8897,c141,s2617).registration13404,347235 -registration(r8898,c80,s2618).registration13405,347267 -registration(r8898,c80,s2618).registration13405,347267 -registration(r8899,c38,s2618).registration13406,347298 -registration(r8899,c38,s2618).registration13406,347298 -registration(r8900,c112,s2618).registration13407,347329 -registration(r8900,c112,s2618).registration13407,347329 -registration(r8901,c236,s2619).registration13408,347361 -registration(r8901,c236,s2619).registration13408,347361 -registration(r8902,c47,s2619).registration13409,347393 -registration(r8902,c47,s2619).registration13409,347393 -registration(r8903,c112,s2619).registration13410,347424 -registration(r8903,c112,s2619).registration13410,347424 -registration(r8904,c244,s2620).registration13411,347456 -registration(r8904,c244,s2620).registration13411,347456 -registration(r8905,c233,s2620).registration13412,347488 -registration(r8905,c233,s2620).registration13412,347488 -registration(r8906,c249,s2620).registration13413,347520 -registration(r8906,c249,s2620).registration13413,347520 -registration(r8907,c230,s2620).registration13414,347552 -registration(r8907,c230,s2620).registration13414,347552 -registration(r8908,c46,s2621).registration13415,347584 -registration(r8908,c46,s2621).registration13415,347584 -registration(r8909,c234,s2621).registration13416,347615 -registration(r8909,c234,s2621).registration13416,347615 -registration(r8910,c80,s2621).registration13417,347647 -registration(r8910,c80,s2621).registration13417,347647 -registration(r8911,c147,s2621).registration13418,347678 -registration(r8911,c147,s2621).registration13418,347678 -registration(r8912,c85,s2621).registration13419,347710 -registration(r8912,c85,s2621).registration13419,347710 -registration(r8913,c128,s2622).registration13420,347741 -registration(r8913,c128,s2622).registration13420,347741 -registration(r8914,c160,s2622).registration13421,347773 -registration(r8914,c160,s2622).registration13421,347773 -registration(r8915,c124,s2622).registration13422,347805 -registration(r8915,c124,s2622).registration13422,347805 -registration(r8916,c134,s2623).registration13423,347837 -registration(r8916,c134,s2623).registration13423,347837 -registration(r8917,c47,s2623).registration13424,347869 -registration(r8917,c47,s2623).registration13424,347869 -registration(r8918,c80,s2623).registration13425,347900 -registration(r8918,c80,s2623).registration13425,347900 -registration(r8919,c190,s2624).registration13426,347931 -registration(r8919,c190,s2624).registration13426,347931 -registration(r8920,c130,s2624).registration13427,347963 -registration(r8920,c130,s2624).registration13427,347963 -registration(r8921,c71,s2624).registration13428,347995 -registration(r8921,c71,s2624).registration13428,347995 -registration(r8922,c184,s2625).registration13429,348026 -registration(r8922,c184,s2625).registration13429,348026 -registration(r8923,c234,s2625).registration13430,348058 -registration(r8923,c234,s2625).registration13430,348058 -registration(r8924,c31,s2625).registration13431,348090 -registration(r8924,c31,s2625).registration13431,348090 -registration(r8925,c25,s2626).registration13432,348121 -registration(r8925,c25,s2626).registration13432,348121 -registration(r8926,c174,s2626).registration13433,348152 -registration(r8926,c174,s2626).registration13433,348152 -registration(r8927,c190,s2626).registration13434,348184 -registration(r8927,c190,s2626).registration13434,348184 -registration(r8928,c168,s2627).registration13435,348216 -registration(r8928,c168,s2627).registration13435,348216 -registration(r8929,c68,s2627).registration13436,348248 -registration(r8929,c68,s2627).registration13436,348248 -registration(r8930,c255,s2627).registration13437,348279 -registration(r8930,c255,s2627).registration13437,348279 -registration(r8931,c83,s2628).registration13438,348311 -registration(r8931,c83,s2628).registration13438,348311 -registration(r8932,c188,s2628).registration13439,348342 -registration(r8932,c188,s2628).registration13439,348342 -registration(r8933,c9,s2628).registration13440,348374 -registration(r8933,c9,s2628).registration13440,348374 -registration(r8934,c107,s2629).registration13441,348404 -registration(r8934,c107,s2629).registration13441,348404 -registration(r8935,c86,s2629).registration13442,348436 -registration(r8935,c86,s2629).registration13442,348436 -registration(r8936,c143,s2629).registration13443,348467 -registration(r8936,c143,s2629).registration13443,348467 -registration(r8937,c230,s2629).registration13444,348499 -registration(r8937,c230,s2629).registration13444,348499 -registration(r8938,c121,s2630).registration13445,348531 -registration(r8938,c121,s2630).registration13445,348531 -registration(r8939,c178,s2630).registration13446,348563 -registration(r8939,c178,s2630).registration13446,348563 -registration(r8940,c45,s2630).registration13447,348595 -registration(r8940,c45,s2630).registration13447,348595 -registration(r8941,c100,s2630).registration13448,348626 -registration(r8941,c100,s2630).registration13448,348626 -registration(r8942,c15,s2631).registration13449,348658 -registration(r8942,c15,s2631).registration13449,348658 -registration(r8943,c133,s2631).registration13450,348689 -registration(r8943,c133,s2631).registration13450,348689 -registration(r8944,c149,s2631).registration13451,348721 -registration(r8944,c149,s2631).registration13451,348721 -registration(r8945,c66,s2632).registration13452,348753 -registration(r8945,c66,s2632).registration13452,348753 -registration(r8946,c161,s2632).registration13453,348784 -registration(r8946,c161,s2632).registration13453,348784 -registration(r8947,c147,s2632).registration13454,348816 -registration(r8947,c147,s2632).registration13454,348816 -registration(r8948,c73,s2632).registration13455,348848 -registration(r8948,c73,s2632).registration13455,348848 -registration(r8949,c30,s2633).registration13456,348879 -registration(r8949,c30,s2633).registration13456,348879 -registration(r8950,c133,s2633).registration13457,348910 -registration(r8950,c133,s2633).registration13457,348910 -registration(r8951,c65,s2633).registration13458,348942 -registration(r8951,c65,s2633).registration13458,348942 -registration(r8952,c73,s2634).registration13459,348973 -registration(r8952,c73,s2634).registration13459,348973 -registration(r8953,c66,s2634).registration13460,349004 -registration(r8953,c66,s2634).registration13460,349004 -registration(r8954,c161,s2634).registration13461,349035 -registration(r8954,c161,s2634).registration13461,349035 -registration(r8955,c47,s2635).registration13462,349067 -registration(r8955,c47,s2635).registration13462,349067 -registration(r8956,c112,s2635).registration13463,349098 -registration(r8956,c112,s2635).registration13463,349098 -registration(r8957,c200,s2635).registration13464,349130 -registration(r8957,c200,s2635).registration13464,349130 -registration(r8958,c234,s2635).registration13465,349162 -registration(r8958,c234,s2635).registration13465,349162 -registration(r8959,c67,s2636).registration13466,349194 -registration(r8959,c67,s2636).registration13466,349194 -registration(r8960,c15,s2636).registration13467,349225 -registration(r8960,c15,s2636).registration13467,349225 -registration(r8961,c223,s2636).registration13468,349256 -registration(r8961,c223,s2636).registration13468,349256 -registration(r8962,c31,s2636).registration13469,349288 -registration(r8962,c31,s2636).registration13469,349288 -registration(r8963,c190,s2637).registration13470,349319 -registration(r8963,c190,s2637).registration13470,349319 -registration(r8964,c2,s2637).registration13471,349351 -registration(r8964,c2,s2637).registration13471,349351 -registration(r8965,c3,s2637).registration13472,349381 -registration(r8965,c3,s2637).registration13472,349381 -registration(r8966,c163,s2637).registration13473,349411 -registration(r8966,c163,s2637).registration13473,349411 -registration(r8967,c33,s2638).registration13474,349443 -registration(r8967,c33,s2638).registration13474,349443 -registration(r8968,c237,s2638).registration13475,349474 -registration(r8968,c237,s2638).registration13475,349474 -registration(r8969,c109,s2638).registration13476,349506 -registration(r8969,c109,s2638).registration13476,349506 -registration(r8970,c174,s2639).registration13477,349538 -registration(r8970,c174,s2639).registration13477,349538 -registration(r8971,c179,s2639).registration13478,349570 -registration(r8971,c179,s2639).registration13478,349570 -registration(r8972,c180,s2639).registration13479,349602 -registration(r8972,c180,s2639).registration13479,349602 -registration(r8973,c84,s2640).registration13480,349634 -registration(r8973,c84,s2640).registration13480,349634 -registration(r8974,c173,s2640).registration13481,349665 -registration(r8974,c173,s2640).registration13481,349665 -registration(r8975,c143,s2640).registration13482,349697 -registration(r8975,c143,s2640).registration13482,349697 -registration(r8976,c87,s2640).registration13483,349729 -registration(r8976,c87,s2640).registration13483,349729 -registration(r8977,c153,s2641).registration13484,349760 -registration(r8977,c153,s2641).registration13484,349760 -registration(r8978,c8,s2641).registration13485,349792 -registration(r8978,c8,s2641).registration13485,349792 -registration(r8979,c210,s2641).registration13486,349822 -registration(r8979,c210,s2641).registration13486,349822 -registration(r8980,c176,s2641).registration13487,349854 -registration(r8980,c176,s2641).registration13487,349854 -registration(r8981,c7,s2642).registration13488,349886 -registration(r8981,c7,s2642).registration13488,349886 -registration(r8982,c55,s2642).registration13489,349916 -registration(r8982,c55,s2642).registration13489,349916 -registration(r8983,c21,s2642).registration13490,349947 -registration(r8983,c21,s2642).registration13490,349947 -registration(r8984,c22,s2643).registration13491,349978 -registration(r8984,c22,s2643).registration13491,349978 -registration(r8985,c200,s2643).registration13492,350009 -registration(r8985,c200,s2643).registration13492,350009 -registration(r8986,c221,s2643).registration13493,350041 -registration(r8986,c221,s2643).registration13493,350041 -registration(r8987,c202,s2644).registration13494,350073 -registration(r8987,c202,s2644).registration13494,350073 -registration(r8988,c25,s2644).registration13495,350105 -registration(r8988,c25,s2644).registration13495,350105 -registration(r8989,c43,s2644).registration13496,350136 -registration(r8989,c43,s2644).registration13496,350136 -registration(r8990,c221,s2645).registration13497,350167 -registration(r8990,c221,s2645).registration13497,350167 -registration(r8991,c240,s2645).registration13498,350199 -registration(r8991,c240,s2645).registration13498,350199 -registration(r8992,c190,s2645).registration13499,350231 -registration(r8992,c190,s2645).registration13499,350231 -registration(r8993,c109,s2646).registration13500,350263 -registration(r8993,c109,s2646).registration13500,350263 -registration(r8994,c97,s2646).registration13501,350295 -registration(r8994,c97,s2646).registration13501,350295 -registration(r8995,c202,s2646).registration13502,350326 -registration(r8995,c202,s2646).registration13502,350326 -registration(r8996,c99,s2647).registration13503,350358 -registration(r8996,c99,s2647).registration13503,350358 -registration(r8997,c148,s2647).registration13504,350389 -registration(r8997,c148,s2647).registration13504,350389 -registration(r8998,c139,s2647).registration13505,350421 -registration(r8998,c139,s2647).registration13505,350421 -registration(r8999,c60,s2648).registration13506,350453 -registration(r8999,c60,s2648).registration13506,350453 -registration(r9000,c73,s2648).registration13507,350484 -registration(r9000,c73,s2648).registration13507,350484 -registration(r9001,c226,s2648).registration13508,350515 -registration(r9001,c226,s2648).registration13508,350515 -registration(r9002,c26,s2648).registration13509,350547 -registration(r9002,c26,s2648).registration13509,350547 -registration(r9003,c103,s2649).registration13510,350578 -registration(r9003,c103,s2649).registration13510,350578 -registration(r9004,c216,s2649).registration13511,350610 -registration(r9004,c216,s2649).registration13511,350610 -registration(r9005,c247,s2649).registration13512,350642 -registration(r9005,c247,s2649).registration13512,350642 -registration(r9006,c192,s2649).registration13513,350674 -registration(r9006,c192,s2649).registration13513,350674 -registration(r9007,c45,s2650).registration13514,350706 -registration(r9007,c45,s2650).registration13514,350706 -registration(r9008,c236,s2650).registration13515,350737 -registration(r9008,c236,s2650).registration13515,350737 -registration(r9009,c254,s2650).registration13516,350769 -registration(r9009,c254,s2650).registration13516,350769 -registration(r9010,c239,s2651).registration13517,350801 -registration(r9010,c239,s2651).registration13517,350801 -registration(r9011,c180,s2651).registration13518,350833 -registration(r9011,c180,s2651).registration13518,350833 -registration(r9012,c155,s2651).registration13519,350865 -registration(r9012,c155,s2651).registration13519,350865 -registration(r9013,c254,s2651).registration13520,350897 -registration(r9013,c254,s2651).registration13520,350897 -registration(r9014,c255,s2652).registration13521,350929 -registration(r9014,c255,s2652).registration13521,350929 -registration(r9015,c173,s2652).registration13522,350961 -registration(r9015,c173,s2652).registration13522,350961 -registration(r9016,c183,s2652).registration13523,350993 -registration(r9016,c183,s2652).registration13523,350993 -registration(r9017,c67,s2653).registration13524,351025 -registration(r9017,c67,s2653).registration13524,351025 -registration(r9018,c164,s2653).registration13525,351056 -registration(r9018,c164,s2653).registration13525,351056 -registration(r9019,c237,s2653).registration13526,351088 -registration(r9019,c237,s2653).registration13526,351088 -registration(r9020,c207,s2654).registration13527,351120 -registration(r9020,c207,s2654).registration13527,351120 -registration(r9021,c209,s2654).registration13528,351152 -registration(r9021,c209,s2654).registration13528,351152 -registration(r9022,c252,s2654).registration13529,351184 -registration(r9022,c252,s2654).registration13529,351184 -registration(r9023,c212,s2655).registration13530,351216 -registration(r9023,c212,s2655).registration13530,351216 -registration(r9024,c226,s2655).registration13531,351248 -registration(r9024,c226,s2655).registration13531,351248 -registration(r9025,c76,s2655).registration13532,351280 -registration(r9025,c76,s2655).registration13532,351280 -registration(r9026,c122,s2656).registration13533,351311 -registration(r9026,c122,s2656).registration13533,351311 -registration(r9027,c131,s2656).registration13534,351343 -registration(r9027,c131,s2656).registration13534,351343 -registration(r9028,c163,s2656).registration13535,351375 -registration(r9028,c163,s2656).registration13535,351375 -registration(r9029,c145,s2657).registration13536,351407 -registration(r9029,c145,s2657).registration13536,351407 -registration(r9030,c36,s2657).registration13537,351439 -registration(r9030,c36,s2657).registration13537,351439 -registration(r9031,c234,s2657).registration13538,351470 -registration(r9031,c234,s2657).registration13538,351470 -registration(r9032,c232,s2658).registration13539,351502 -registration(r9032,c232,s2658).registration13539,351502 -registration(r9033,c197,s2658).registration13540,351534 -registration(r9033,c197,s2658).registration13540,351534 -registration(r9034,c246,s2658).registration13541,351566 -registration(r9034,c246,s2658).registration13541,351566 -registration(r9035,c55,s2658).registration13542,351598 -registration(r9035,c55,s2658).registration13542,351598 -registration(r9036,c229,s2659).registration13543,351629 -registration(r9036,c229,s2659).registration13543,351629 -registration(r9037,c204,s2659).registration13544,351661 -registration(r9037,c204,s2659).registration13544,351661 -registration(r9038,c37,s2659).registration13545,351693 -registration(r9038,c37,s2659).registration13545,351693 -registration(r9039,c245,s2660).registration13546,351724 -registration(r9039,c245,s2660).registration13546,351724 -registration(r9040,c54,s2660).registration13547,351756 -registration(r9040,c54,s2660).registration13547,351756 -registration(r9041,c182,s2660).registration13548,351787 -registration(r9041,c182,s2660).registration13548,351787 -registration(r9042,c140,s2661).registration13549,351819 -registration(r9042,c140,s2661).registration13549,351819 -registration(r9043,c194,s2661).registration13550,351851 -registration(r9043,c194,s2661).registration13550,351851 -registration(r9044,c188,s2661).registration13551,351883 -registration(r9044,c188,s2661).registration13551,351883 -registration(r9045,c100,s2661).registration13552,351915 -registration(r9045,c100,s2661).registration13552,351915 -registration(r9046,c166,s2662).registration13553,351947 -registration(r9046,c166,s2662).registration13553,351947 -registration(r9047,c8,s2662).registration13554,351979 -registration(r9047,c8,s2662).registration13554,351979 -registration(r9048,c165,s2662).registration13555,352009 -registration(r9048,c165,s2662).registration13555,352009 -registration(r9049,c202,s2663).registration13556,352041 -registration(r9049,c202,s2663).registration13556,352041 -registration(r9050,c222,s2663).registration13557,352073 -registration(r9050,c222,s2663).registration13557,352073 -registration(r9051,c96,s2663).registration13558,352105 -registration(r9051,c96,s2663).registration13558,352105 -registration(r9052,c197,s2663).registration13559,352136 -registration(r9052,c197,s2663).registration13559,352136 -registration(r9053,c7,s2663).registration13560,352168 -registration(r9053,c7,s2663).registration13560,352168 -registration(r9054,c104,s2664).registration13561,352198 -registration(r9054,c104,s2664).registration13561,352198 -registration(r9055,c79,s2664).registration13562,352230 -registration(r9055,c79,s2664).registration13562,352230 -registration(r9056,c63,s2664).registration13563,352261 -registration(r9056,c63,s2664).registration13563,352261 -registration(r9057,c103,s2664).registration13564,352292 -registration(r9057,c103,s2664).registration13564,352292 -registration(r9058,c179,s2665).registration13565,352324 -registration(r9058,c179,s2665).registration13565,352324 -registration(r9059,c215,s2665).registration13566,352356 -registration(r9059,c215,s2665).registration13566,352356 -registration(r9060,c91,s2665).registration13567,352388 -registration(r9060,c91,s2665).registration13567,352388 -registration(r9061,c60,s2666).registration13568,352419 -registration(r9061,c60,s2666).registration13568,352419 -registration(r9062,c90,s2666).registration13569,352450 -registration(r9062,c90,s2666).registration13569,352450 -registration(r9063,c26,s2666).registration13570,352481 -registration(r9063,c26,s2666).registration13570,352481 -registration(r9064,c63,s2666).registration13571,352512 -registration(r9064,c63,s2666).registration13571,352512 -registration(r9065,c100,s2667).registration13572,352543 -registration(r9065,c100,s2667).registration13572,352543 -registration(r9066,c76,s2667).registration13573,352575 -registration(r9066,c76,s2667).registration13573,352575 -registration(r9067,c228,s2667).registration13574,352606 -registration(r9067,c228,s2667).registration13574,352606 -registration(r9068,c216,s2668).registration13575,352638 -registration(r9068,c216,s2668).registration13575,352638 -registration(r9069,c6,s2668).registration13576,352670 -registration(r9069,c6,s2668).registration13576,352670 -registration(r9070,c188,s2668).registration13577,352700 -registration(r9070,c188,s2668).registration13577,352700 -registration(r9071,c206,s2669).registration13578,352732 -registration(r9071,c206,s2669).registration13578,352732 -registration(r9072,c124,s2669).registration13579,352764 -registration(r9072,c124,s2669).registration13579,352764 -registration(r9073,c142,s2669).registration13580,352796 -registration(r9073,c142,s2669).registration13580,352796 -registration(r9074,c222,s2670).registration13581,352828 -registration(r9074,c222,s2670).registration13581,352828 -registration(r9075,c21,s2670).registration13582,352860 -registration(r9075,c21,s2670).registration13582,352860 -registration(r9076,c52,s2670).registration13583,352891 -registration(r9076,c52,s2670).registration13583,352891 -registration(r9077,c230,s2671).registration13584,352922 -registration(r9077,c230,s2671).registration13584,352922 -registration(r9078,c209,s2671).registration13585,352954 -registration(r9078,c209,s2671).registration13585,352954 -registration(r9079,c215,s2671).registration13586,352986 -registration(r9079,c215,s2671).registration13586,352986 -registration(r9080,c20,s2672).registration13587,353018 -registration(r9080,c20,s2672).registration13587,353018 -registration(r9081,c43,s2672).registration13588,353049 -registration(r9081,c43,s2672).registration13588,353049 -registration(r9082,c125,s2672).registration13589,353080 -registration(r9082,c125,s2672).registration13589,353080 -registration(r9083,c66,s2672).registration13590,353112 -registration(r9083,c66,s2672).registration13590,353112 -registration(r9084,c119,s2673).registration13591,353143 -registration(r9084,c119,s2673).registration13591,353143 -registration(r9085,c142,s2673).registration13592,353175 -registration(r9085,c142,s2673).registration13592,353175 -registration(r9086,c159,s2673).registration13593,353207 -registration(r9086,c159,s2673).registration13593,353207 -registration(r9087,c118,s2674).registration13594,353239 -registration(r9087,c118,s2674).registration13594,353239 -registration(r9088,c234,s2674).registration13595,353271 -registration(r9088,c234,s2674).registration13595,353271 -registration(r9089,c60,s2674).registration13596,353303 -registration(r9089,c60,s2674).registration13596,353303 -registration(r9090,c82,s2674).registration13597,353334 -registration(r9090,c82,s2674).registration13597,353334 -registration(r9091,c170,s2674).registration13598,353365 -registration(r9091,c170,s2674).registration13598,353365 -registration(r9092,c224,s2675).registration13599,353397 -registration(r9092,c224,s2675).registration13599,353397 -registration(r9093,c223,s2675).registration13600,353429 -registration(r9093,c223,s2675).registration13600,353429 -registration(r9094,c143,s2675).registration13601,353461 -registration(r9094,c143,s2675).registration13601,353461 -registration(r9095,c196,s2676).registration13602,353493 -registration(r9095,c196,s2676).registration13602,353493 -registration(r9096,c185,s2676).registration13603,353525 -registration(r9096,c185,s2676).registration13603,353525 -registration(r9097,c112,s2676).registration13604,353557 -registration(r9097,c112,s2676).registration13604,353557 -registration(r9098,c73,s2677).registration13605,353589 -registration(r9098,c73,s2677).registration13605,353589 -registration(r9099,c124,s2677).registration13606,353620 -registration(r9099,c124,s2677).registration13606,353620 -registration(r9100,c238,s2677).registration13607,353652 -registration(r9100,c238,s2677).registration13607,353652 -registration(r9101,c106,s2678).registration13608,353684 -registration(r9101,c106,s2678).registration13608,353684 -registration(r9102,c113,s2678).registration13609,353716 -registration(r9102,c113,s2678).registration13609,353716 -registration(r9103,c231,s2678).registration13610,353748 -registration(r9103,c231,s2678).registration13610,353748 -registration(r9104,c232,s2678).registration13611,353780 -registration(r9104,c232,s2678).registration13611,353780 -registration(r9105,c196,s2679).registration13612,353812 -registration(r9105,c196,s2679).registration13612,353812 -registration(r9106,c204,s2679).registration13613,353844 -registration(r9106,c204,s2679).registration13613,353844 -registration(r9107,c245,s2679).registration13614,353876 -registration(r9107,c245,s2679).registration13614,353876 -registration(r9108,c50,s2680).registration13615,353908 -registration(r9108,c50,s2680).registration13615,353908 -registration(r9109,c104,s2680).registration13616,353939 -registration(r9109,c104,s2680).registration13616,353939 -registration(r9110,c9,s2680).registration13617,353971 -registration(r9110,c9,s2680).registration13617,353971 -registration(r9111,c234,s2680).registration13618,354001 -registration(r9111,c234,s2680).registration13618,354001 -registration(r9112,c30,s2681).registration13619,354033 -registration(r9112,c30,s2681).registration13619,354033 -registration(r9113,c163,s2681).registration13620,354064 -registration(r9113,c163,s2681).registration13620,354064 -registration(r9114,c170,s2681).registration13621,354096 -registration(r9114,c170,s2681).registration13621,354096 -registration(r9115,c103,s2681).registration13622,354128 -registration(r9115,c103,s2681).registration13622,354128 -registration(r9116,c134,s2682).registration13623,354160 -registration(r9116,c134,s2682).registration13623,354160 -registration(r9117,c18,s2682).registration13624,354192 -registration(r9117,c18,s2682).registration13624,354192 -registration(r9118,c240,s2682).registration13625,354223 -registration(r9118,c240,s2682).registration13625,354223 -registration(r9119,c223,s2683).registration13626,354255 -registration(r9119,c223,s2683).registration13626,354255 -registration(r9120,c45,s2683).registration13627,354287 -registration(r9120,c45,s2683).registration13627,354287 -registration(r9121,c54,s2683).registration13628,354318 -registration(r9121,c54,s2683).registration13628,354318 -registration(r9122,c29,s2684).registration13629,354349 -registration(r9122,c29,s2684).registration13629,354349 -registration(r9123,c111,s2684).registration13630,354380 -registration(r9123,c111,s2684).registration13630,354380 -registration(r9124,c136,s2684).registration13631,354412 -registration(r9124,c136,s2684).registration13631,354412 -registration(r9125,c83,s2685).registration13632,354444 -registration(r9125,c83,s2685).registration13632,354444 -registration(r9126,c137,s2685).registration13633,354475 -registration(r9126,c137,s2685).registration13633,354475 -registration(r9127,c110,s2685).registration13634,354507 -registration(r9127,c110,s2685).registration13634,354507 -registration(r9128,c188,s2685).registration13635,354539 -registration(r9128,c188,s2685).registration13635,354539 -registration(r9129,c20,s2686).registration13636,354571 -registration(r9129,c20,s2686).registration13636,354571 -registration(r9130,c249,s2686).registration13637,354602 -registration(r9130,c249,s2686).registration13637,354602 -registration(r9131,c232,s2686).registration13638,354634 -registration(r9131,c232,s2686).registration13638,354634 -registration(r9132,c139,s2686).registration13639,354666 -registration(r9132,c139,s2686).registration13639,354666 -registration(r9133,c168,s2687).registration13640,354698 -registration(r9133,c168,s2687).registration13640,354698 -registration(r9134,c43,s2687).registration13641,354730 -registration(r9134,c43,s2687).registration13641,354730 -registration(r9135,c244,s2687).registration13642,354761 -registration(r9135,c244,s2687).registration13642,354761 -registration(r9136,c178,s2687).registration13643,354793 -registration(r9136,c178,s2687).registration13643,354793 -registration(r9137,c252,s2687).registration13644,354825 -registration(r9137,c252,s2687).registration13644,354825 -registration(r9138,c130,s2688).registration13645,354857 -registration(r9138,c130,s2688).registration13645,354857 -registration(r9139,c150,s2688).registration13646,354889 -registration(r9139,c150,s2688).registration13646,354889 -registration(r9140,c219,s2688).registration13647,354921 -registration(r9140,c219,s2688).registration13647,354921 -registration(r9141,c37,s2689).registration13648,354953 -registration(r9141,c37,s2689).registration13648,354953 -registration(r9142,c79,s2689).registration13649,354984 -registration(r9142,c79,s2689).registration13649,354984 -registration(r9143,c232,s2689).registration13650,355015 -registration(r9143,c232,s2689).registration13650,355015 -registration(r9144,c123,s2690).registration13651,355047 -registration(r9144,c123,s2690).registration13651,355047 -registration(r9145,c200,s2690).registration13652,355079 -registration(r9145,c200,s2690).registration13652,355079 -registration(r9146,c41,s2690).registration13653,355111 -registration(r9146,c41,s2690).registration13653,355111 -registration(r9147,c54,s2690).registration13654,355142 -registration(r9147,c54,s2690).registration13654,355142 -registration(r9148,c191,s2691).registration13655,355173 -registration(r9148,c191,s2691).registration13655,355173 -registration(r9149,c12,s2691).registration13656,355205 -registration(r9149,c12,s2691).registration13656,355205 -registration(r9150,c73,s2691).registration13657,355236 -registration(r9150,c73,s2691).registration13657,355236 -registration(r9151,c71,s2692).registration13658,355267 -registration(r9151,c71,s2692).registration13658,355267 -registration(r9152,c208,s2692).registration13659,355298 -registration(r9152,c208,s2692).registration13659,355298 -registration(r9153,c130,s2692).registration13660,355330 -registration(r9153,c130,s2692).registration13660,355330 -registration(r9154,c118,s2693).registration13661,355362 -registration(r9154,c118,s2693).registration13661,355362 -registration(r9155,c251,s2693).registration13662,355394 -registration(r9155,c251,s2693).registration13662,355394 -registration(r9156,c174,s2693).registration13663,355426 -registration(r9156,c174,s2693).registration13663,355426 -registration(r9157,c49,s2694).registration13664,355458 -registration(r9157,c49,s2694).registration13664,355458 -registration(r9158,c19,s2694).registration13665,355489 -registration(r9158,c19,s2694).registration13665,355489 -registration(r9159,c212,s2694).registration13666,355520 -registration(r9159,c212,s2694).registration13666,355520 -registration(r9160,c249,s2695).registration13667,355552 -registration(r9160,c249,s2695).registration13667,355552 -registration(r9161,c48,s2695).registration13668,355584 -registration(r9161,c48,s2695).registration13668,355584 -registration(r9162,c198,s2695).registration13669,355615 -registration(r9162,c198,s2695).registration13669,355615 -registration(r9163,c67,s2695).registration13670,355647 -registration(r9163,c67,s2695).registration13670,355647 -registration(r9164,c86,s2696).registration13671,355678 -registration(r9164,c86,s2696).registration13671,355678 -registration(r9165,c48,s2696).registration13672,355709 -registration(r9165,c48,s2696).registration13672,355709 -registration(r9166,c71,s2696).registration13673,355740 -registration(r9166,c71,s2696).registration13673,355740 -registration(r9167,c7,s2697).registration13674,355771 -registration(r9167,c7,s2697).registration13674,355771 -registration(r9168,c153,s2697).registration13675,355801 -registration(r9168,c153,s2697).registration13675,355801 -registration(r9169,c174,s2697).registration13676,355833 -registration(r9169,c174,s2697).registration13676,355833 -registration(r9170,c245,s2698).registration13677,355865 -registration(r9170,c245,s2698).registration13677,355865 -registration(r9171,c144,s2698).registration13678,355897 -registration(r9171,c144,s2698).registration13678,355897 -registration(r9172,c17,s2698).registration13679,355929 -registration(r9172,c17,s2698).registration13679,355929 -registration(r9173,c136,s2699).registration13680,355960 -registration(r9173,c136,s2699).registration13680,355960 -registration(r9174,c225,s2699).registration13681,355992 -registration(r9174,c225,s2699).registration13681,355992 -registration(r9175,c60,s2699).registration13682,356024 -registration(r9175,c60,s2699).registration13682,356024 -registration(r9176,c217,s2699).registration13683,356055 -registration(r9176,c217,s2699).registration13683,356055 -registration(r9177,c24,s2700).registration13684,356087 -registration(r9177,c24,s2700).registration13684,356087 -registration(r9178,c174,s2700).registration13685,356118 -registration(r9178,c174,s2700).registration13685,356118 -registration(r9179,c80,s2700).registration13686,356150 -registration(r9179,c80,s2700).registration13686,356150 -registration(r9180,c128,s2701).registration13687,356181 -registration(r9180,c128,s2701).registration13687,356181 -registration(r9181,c190,s2701).registration13688,356213 -registration(r9181,c190,s2701).registration13688,356213 -registration(r9182,c52,s2701).registration13689,356245 -registration(r9182,c52,s2701).registration13689,356245 -registration(r9183,c139,s2701).registration13690,356276 -registration(r9183,c139,s2701).registration13690,356276 -registration(r9184,c184,s2702).registration13691,356308 -registration(r9184,c184,s2702).registration13691,356308 -registration(r9185,c72,s2702).registration13692,356340 -registration(r9185,c72,s2702).registration13692,356340 -registration(r9186,c23,s2702).registration13693,356371 -registration(r9186,c23,s2702).registration13693,356371 -registration(r9187,c80,s2702).registration13694,356402 -registration(r9187,c80,s2702).registration13694,356402 -registration(r9188,c203,s2703).registration13695,356433 -registration(r9188,c203,s2703).registration13695,356433 -registration(r9189,c16,s2703).registration13696,356465 -registration(r9189,c16,s2703).registration13696,356465 -registration(r9190,c64,s2703).registration13697,356496 -registration(r9190,c64,s2703).registration13697,356496 -registration(r9191,c82,s2704).registration13698,356527 -registration(r9191,c82,s2704).registration13698,356527 -registration(r9192,c167,s2704).registration13699,356558 -registration(r9192,c167,s2704).registration13699,356558 -registration(r9193,c46,s2704).registration13700,356590 -registration(r9193,c46,s2704).registration13700,356590 -registration(r9194,c107,s2705).registration13701,356621 -registration(r9194,c107,s2705).registration13701,356621 -registration(r9195,c223,s2705).registration13702,356653 -registration(r9195,c223,s2705).registration13702,356653 -registration(r9196,c97,s2705).registration13703,356685 -registration(r9196,c97,s2705).registration13703,356685 -registration(r9197,c15,s2706).registration13704,356716 -registration(r9197,c15,s2706).registration13704,356716 -registration(r9198,c42,s2706).registration13705,356747 -registration(r9198,c42,s2706).registration13705,356747 -registration(r9199,c239,s2706).registration13706,356778 -registration(r9199,c239,s2706).registration13706,356778 -registration(r9200,c173,s2707).registration13707,356810 -registration(r9200,c173,s2707).registration13707,356810 -registration(r9201,c235,s2707).registration13708,356842 -registration(r9201,c235,s2707).registration13708,356842 -registration(r9202,c50,s2707).registration13709,356874 -registration(r9202,c50,s2707).registration13709,356874 -registration(r9203,c235,s2708).registration13710,356905 -registration(r9203,c235,s2708).registration13710,356905 -registration(r9204,c247,s2708).registration13711,356937 -registration(r9204,c247,s2708).registration13711,356937 -registration(r9205,c141,s2708).registration13712,356969 -registration(r9205,c141,s2708).registration13712,356969 -registration(r9206,c70,s2708).registration13713,357001 -registration(r9206,c70,s2708).registration13713,357001 -registration(r9207,c213,s2709).registration13714,357032 -registration(r9207,c213,s2709).registration13714,357032 -registration(r9208,c87,s2709).registration13715,357064 -registration(r9208,c87,s2709).registration13715,357064 -registration(r9209,c128,s2709).registration13716,357095 -registration(r9209,c128,s2709).registration13716,357095 -registration(r9210,c210,s2710).registration13717,357127 -registration(r9210,c210,s2710).registration13717,357127 -registration(r9211,c61,s2710).registration13718,357159 -registration(r9211,c61,s2710).registration13718,357159 -registration(r9212,c39,s2710).registration13719,357190 -registration(r9212,c39,s2710).registration13719,357190 -registration(r9213,c147,s2711).registration13720,357221 -registration(r9213,c147,s2711).registration13720,357221 -registration(r9214,c139,s2711).registration13721,357253 -registration(r9214,c139,s2711).registration13721,357253 -registration(r9215,c39,s2711).registration13722,357285 -registration(r9215,c39,s2711).registration13722,357285 -registration(r9216,c55,s2712).registration13723,357316 -registration(r9216,c55,s2712).registration13723,357316 -registration(r9217,c151,s2712).registration13724,357347 -registration(r9217,c151,s2712).registration13724,357347 -registration(r9218,c115,s2712).registration13725,357379 -registration(r9218,c115,s2712).registration13725,357379 -registration(r9219,c33,s2713).registration13726,357411 -registration(r9219,c33,s2713).registration13726,357411 -registration(r9220,c218,s2713).registration13727,357442 -registration(r9220,c218,s2713).registration13727,357442 -registration(r9221,c117,s2713).registration13728,357474 -registration(r9221,c117,s2713).registration13728,357474 -registration(r9222,c97,s2714).registration13729,357506 -registration(r9222,c97,s2714).registration13729,357506 -registration(r9223,c199,s2714).registration13730,357537 -registration(r9223,c199,s2714).registration13730,357537 -registration(r9224,c224,s2714).registration13731,357569 -registration(r9224,c224,s2714).registration13731,357569 -registration(r9225,c32,s2714).registration13732,357601 -registration(r9225,c32,s2714).registration13732,357601 -registration(r9226,c65,s2715).registration13733,357632 -registration(r9226,c65,s2715).registration13733,357632 -registration(r9227,c102,s2715).registration13734,357663 -registration(r9227,c102,s2715).registration13734,357663 -registration(r9228,c161,s2715).registration13735,357695 -registration(r9228,c161,s2715).registration13735,357695 -registration(r9229,c115,s2716).registration13736,357727 -registration(r9229,c115,s2716).registration13736,357727 -registration(r9230,c21,s2716).registration13737,357759 -registration(r9230,c21,s2716).registration13737,357759 -registration(r9231,c135,s2716).registration13738,357790 -registration(r9231,c135,s2716).registration13738,357790 -registration(r9232,c219,s2716).registration13739,357822 -registration(r9232,c219,s2716).registration13739,357822 -registration(r9233,c173,s2716).registration13740,357854 -registration(r9233,c173,s2716).registration13740,357854 -registration(r9234,c3,s2717).registration13741,357886 -registration(r9234,c3,s2717).registration13741,357886 -registration(r9235,c135,s2717).registration13742,357916 -registration(r9235,c135,s2717).registration13742,357916 -registration(r9236,c50,s2717).registration13743,357948 -registration(r9236,c50,s2717).registration13743,357948 -registration(r9237,c166,s2717).registration13744,357979 -registration(r9237,c166,s2717).registration13744,357979 -registration(r9238,c40,s2718).registration13745,358011 -registration(r9238,c40,s2718).registration13745,358011 -registration(r9239,c97,s2718).registration13746,358042 -registration(r9239,c97,s2718).registration13746,358042 -registration(r9240,c199,s2718).registration13747,358073 -registration(r9240,c199,s2718).registration13747,358073 -registration(r9241,c215,s2718).registration13748,358105 -registration(r9241,c215,s2718).registration13748,358105 -registration(r9242,c84,s2719).registration13749,358137 -registration(r9242,c84,s2719).registration13749,358137 -registration(r9243,c56,s2719).registration13750,358168 -registration(r9243,c56,s2719).registration13750,358168 -registration(r9244,c95,s2719).registration13751,358199 -registration(r9244,c95,s2719).registration13751,358199 -registration(r9245,c109,s2720).registration13752,358230 -registration(r9245,c109,s2720).registration13752,358230 -registration(r9246,c84,s2720).registration13753,358262 -registration(r9246,c84,s2720).registration13753,358262 -registration(r9247,c229,s2720).registration13754,358293 -registration(r9247,c229,s2720).registration13754,358293 -registration(r9248,c188,s2721).registration13755,358325 -registration(r9248,c188,s2721).registration13755,358325 -registration(r9249,c50,s2721).registration13756,358357 -registration(r9249,c50,s2721).registration13756,358357 -registration(r9250,c106,s2721).registration13757,358388 -registration(r9250,c106,s2721).registration13757,358388 -registration(r9251,c139,s2722).registration13758,358420 -registration(r9251,c139,s2722).registration13758,358420 -registration(r9252,c174,s2722).registration13759,358452 -registration(r9252,c174,s2722).registration13759,358452 -registration(r9253,c210,s2722).registration13760,358484 -registration(r9253,c210,s2722).registration13760,358484 -registration(r9254,c89,s2723).registration13761,358516 -registration(r9254,c89,s2723).registration13761,358516 -registration(r9255,c107,s2723).registration13762,358547 -registration(r9255,c107,s2723).registration13762,358547 -registration(r9256,c235,s2723).registration13763,358579 -registration(r9256,c235,s2723).registration13763,358579 -registration(r9257,c20,s2723).registration13764,358611 -registration(r9257,c20,s2723).registration13764,358611 -registration(r9258,c217,s2724).registration13765,358642 -registration(r9258,c217,s2724).registration13765,358642 -registration(r9259,c214,s2724).registration13766,358674 -registration(r9259,c214,s2724).registration13766,358674 -registration(r9260,c23,s2724).registration13767,358706 -registration(r9260,c23,s2724).registration13767,358706 -registration(r9261,c108,s2725).registration13768,358737 -registration(r9261,c108,s2725).registration13768,358737 -registration(r9262,c232,s2725).registration13769,358769 -registration(r9262,c232,s2725).registration13769,358769 -registration(r9263,c205,s2725).registration13770,358801 -registration(r9263,c205,s2725).registration13770,358801 -registration(r9264,c59,s2726).registration13771,358833 -registration(r9264,c59,s2726).registration13771,358833 -registration(r9265,c245,s2726).registration13772,358864 -registration(r9265,c245,s2726).registration13772,358864 -registration(r9266,c113,s2726).registration13773,358896 -registration(r9266,c113,s2726).registration13773,358896 -registration(r9267,c235,s2726).registration13774,358928 -registration(r9267,c235,s2726).registration13774,358928 -registration(r9268,c65,s2726).registration13775,358960 -registration(r9268,c65,s2726).registration13775,358960 -registration(r9269,c86,s2727).registration13776,358991 -registration(r9269,c86,s2727).registration13776,358991 -registration(r9270,c1,s2727).registration13777,359022 -registration(r9270,c1,s2727).registration13777,359022 -registration(r9271,c250,s2727).registration13778,359052 -registration(r9271,c250,s2727).registration13778,359052 -registration(r9272,c205,s2728).registration13779,359084 -registration(r9272,c205,s2728).registration13779,359084 -registration(r9273,c26,s2728).registration13780,359116 -registration(r9273,c26,s2728).registration13780,359116 -registration(r9274,c96,s2728).registration13781,359147 -registration(r9274,c96,s2728).registration13781,359147 -registration(r9275,c133,s2728).registration13782,359178 -registration(r9275,c133,s2728).registration13782,359178 -registration(r9276,c158,s2729).registration13783,359210 -registration(r9276,c158,s2729).registration13783,359210 -registration(r9277,c149,s2729).registration13784,359242 -registration(r9277,c149,s2729).registration13784,359242 -registration(r9278,c95,s2729).registration13785,359274 -registration(r9278,c95,s2729).registration13785,359274 -registration(r9279,c119,s2730).registration13786,359305 -registration(r9279,c119,s2730).registration13786,359305 -registration(r9280,c39,s2730).registration13787,359337 -registration(r9280,c39,s2730).registration13787,359337 -registration(r9281,c221,s2730).registration13788,359368 -registration(r9281,c221,s2730).registration13788,359368 -registration(r9282,c170,s2730).registration13789,359400 -registration(r9282,c170,s2730).registration13789,359400 -registration(r9283,c132,s2731).registration13790,359432 -registration(r9283,c132,s2731).registration13790,359432 -registration(r9284,c157,s2731).registration13791,359464 -registration(r9284,c157,s2731).registration13791,359464 -registration(r9285,c229,s2731).registration13792,359496 -registration(r9285,c229,s2731).registration13792,359496 -registration(r9286,c244,s2731).registration13793,359528 -registration(r9286,c244,s2731).registration13793,359528 -registration(r9287,c102,s2732).registration13794,359560 -registration(r9287,c102,s2732).registration13794,359560 -registration(r9288,c61,s2732).registration13795,359592 -registration(r9288,c61,s2732).registration13795,359592 -registration(r9289,c54,s2732).registration13796,359623 -registration(r9289,c54,s2732).registration13796,359623 -registration(r9290,c49,s2733).registration13797,359654 -registration(r9290,c49,s2733).registration13797,359654 -registration(r9291,c158,s2733).registration13798,359685 -registration(r9291,c158,s2733).registration13798,359685 -registration(r9292,c238,s2733).registration13799,359717 -registration(r9292,c238,s2733).registration13799,359717 -registration(r9293,c77,s2734).registration13800,359749 -registration(r9293,c77,s2734).registration13800,359749 -registration(r9294,c36,s2734).registration13801,359780 -registration(r9294,c36,s2734).registration13801,359780 -registration(r9295,c62,s2734).registration13802,359811 -registration(r9295,c62,s2734).registration13802,359811 -registration(r9296,c211,s2735).registration13803,359842 -registration(r9296,c211,s2735).registration13803,359842 -registration(r9297,c249,s2735).registration13804,359874 -registration(r9297,c249,s2735).registration13804,359874 -registration(r9298,c58,s2735).registration13805,359906 -registration(r9298,c58,s2735).registration13805,359906 -registration(r9299,c99,s2736).registration13806,359937 -registration(r9299,c99,s2736).registration13806,359937 -registration(r9300,c29,s2736).registration13807,359968 -registration(r9300,c29,s2736).registration13807,359968 -registration(r9301,c84,s2736).registration13808,359999 -registration(r9301,c84,s2736).registration13808,359999 -registration(r9302,c216,s2737).registration13809,360030 -registration(r9302,c216,s2737).registration13809,360030 -registration(r9303,c17,s2737).registration13810,360062 -registration(r9303,c17,s2737).registration13810,360062 -registration(r9304,c173,s2737).registration13811,360093 -registration(r9304,c173,s2737).registration13811,360093 -registration(r9305,c161,s2737).registration13812,360125 -registration(r9305,c161,s2737).registration13812,360125 -registration(r9306,c184,s2738).registration13813,360157 -registration(r9306,c184,s2738).registration13813,360157 -registration(r9307,c94,s2738).registration13814,360189 -registration(r9307,c94,s2738).registration13814,360189 -registration(r9308,c217,s2738).registration13815,360220 -registration(r9308,c217,s2738).registration13815,360220 -registration(r9309,c10,s2739).registration13816,360252 -registration(r9309,c10,s2739).registration13816,360252 -registration(r9310,c20,s2739).registration13817,360283 -registration(r9310,c20,s2739).registration13817,360283 -registration(r9311,c141,s2739).registration13818,360314 -registration(r9311,c141,s2739).registration13818,360314 -registration(r9312,c204,s2739).registration13819,360346 -registration(r9312,c204,s2739).registration13819,360346 -registration(r9313,c45,s2740).registration13820,360378 -registration(r9313,c45,s2740).registration13820,360378 -registration(r9314,c9,s2740).registration13821,360409 -registration(r9314,c9,s2740).registration13821,360409 -registration(r9315,c116,s2740).registration13822,360439 -registration(r9315,c116,s2740).registration13822,360439 -registration(r9316,c108,s2741).registration13823,360471 -registration(r9316,c108,s2741).registration13823,360471 -registration(r9317,c44,s2741).registration13824,360503 -registration(r9317,c44,s2741).registration13824,360503 -registration(r9318,c30,s2741).registration13825,360534 -registration(r9318,c30,s2741).registration13825,360534 -registration(r9319,c60,s2742).registration13826,360565 -registration(r9319,c60,s2742).registration13826,360565 -registration(r9320,c49,s2742).registration13827,360596 -registration(r9320,c49,s2742).registration13827,360596 -registration(r9321,c4,s2742).registration13828,360627 -registration(r9321,c4,s2742).registration13828,360627 -registration(r9322,c11,s2742).registration13829,360657 -registration(r9322,c11,s2742).registration13829,360657 -registration(r9323,c179,s2742).registration13830,360688 -registration(r9323,c179,s2742).registration13830,360688 -registration(r9324,c93,s2743).registration13831,360720 -registration(r9324,c93,s2743).registration13831,360720 -registration(r9325,c55,s2743).registration13832,360751 -registration(r9325,c55,s2743).registration13832,360751 -registration(r9326,c85,s2743).registration13833,360782 -registration(r9326,c85,s2743).registration13833,360782 -registration(r9327,c151,s2743).registration13834,360813 -registration(r9327,c151,s2743).registration13834,360813 -registration(r9328,c140,s2743).registration13835,360845 -registration(r9328,c140,s2743).registration13835,360845 -registration(r9329,c53,s2744).registration13836,360877 -registration(r9329,c53,s2744).registration13836,360877 -registration(r9330,c58,s2744).registration13837,360908 -registration(r9330,c58,s2744).registration13837,360908 -registration(r9331,c160,s2744).registration13838,360939 -registration(r9331,c160,s2744).registration13838,360939 -registration(r9332,c107,s2745).registration13839,360971 -registration(r9332,c107,s2745).registration13839,360971 -registration(r9333,c156,s2745).registration13840,361003 -registration(r9333,c156,s2745).registration13840,361003 -registration(r9334,c112,s2745).registration13841,361035 -registration(r9334,c112,s2745).registration13841,361035 -registration(r9335,c96,s2745).registration13842,361067 -registration(r9335,c96,s2745).registration13842,361067 -registration(r9336,c82,s2746).registration13843,361098 -registration(r9336,c82,s2746).registration13843,361098 -registration(r9337,c124,s2746).registration13844,361129 -registration(r9337,c124,s2746).registration13844,361129 -registration(r9338,c143,s2746).registration13845,361161 -registration(r9338,c143,s2746).registration13845,361161 -registration(r9339,c30,s2747).registration13846,361193 -registration(r9339,c30,s2747).registration13846,361193 -registration(r9340,c173,s2747).registration13847,361224 -registration(r9340,c173,s2747).registration13847,361224 -registration(r9341,c139,s2747).registration13848,361256 -registration(r9341,c139,s2747).registration13848,361256 -registration(r9342,c178,s2747).registration13849,361288 -registration(r9342,c178,s2747).registration13849,361288 -registration(r9343,c57,s2748).registration13850,361320 -registration(r9343,c57,s2748).registration13850,361320 -registration(r9344,c100,s2748).registration13851,361351 -registration(r9344,c100,s2748).registration13851,361351 -registration(r9345,c244,s2748).registration13852,361383 -registration(r9345,c244,s2748).registration13852,361383 -registration(r9346,c10,s2749).registration13853,361415 -registration(r9346,c10,s2749).registration13853,361415 -registration(r9347,c7,s2749).registration13854,361446 -registration(r9347,c7,s2749).registration13854,361446 -registration(r9348,c232,s2749).registration13855,361476 -registration(r9348,c232,s2749).registration13855,361476 -registration(r9349,c34,s2750).registration13856,361508 -registration(r9349,c34,s2750).registration13856,361508 -registration(r9350,c55,s2750).registration13857,361539 -registration(r9350,c55,s2750).registration13857,361539 -registration(r9351,c254,s2750).registration13858,361570 -registration(r9351,c254,s2750).registration13858,361570 -registration(r9352,c154,s2751).registration13859,361602 -registration(r9352,c154,s2751).registration13859,361602 -registration(r9353,c213,s2751).registration13860,361634 -registration(r9353,c213,s2751).registration13860,361634 -registration(r9354,c23,s2751).registration13861,361666 -registration(r9354,c23,s2751).registration13861,361666 -registration(r9355,c105,s2752).registration13862,361697 -registration(r9355,c105,s2752).registration13862,361697 -registration(r9356,c38,s2752).registration13863,361729 -registration(r9356,c38,s2752).registration13863,361729 -registration(r9357,c198,s2752).registration13864,361760 -registration(r9357,c198,s2752).registration13864,361760 -registration(r9358,c228,s2753).registration13865,361792 -registration(r9358,c228,s2753).registration13865,361792 -registration(r9359,c135,s2753).registration13866,361824 -registration(r9359,c135,s2753).registration13866,361824 -registration(r9360,c12,s2753).registration13867,361856 -registration(r9360,c12,s2753).registration13867,361856 -registration(r9361,c57,s2753).registration13868,361887 -registration(r9361,c57,s2753).registration13868,361887 -registration(r9362,c66,s2754).registration13869,361918 -registration(r9362,c66,s2754).registration13869,361918 -registration(r9363,c157,s2754).registration13870,361949 -registration(r9363,c157,s2754).registration13870,361949 -registration(r9364,c151,s2754).registration13871,361981 -registration(r9364,c151,s2754).registration13871,361981 -registration(r9365,c162,s2755).registration13872,362013 -registration(r9365,c162,s2755).registration13872,362013 -registration(r9366,c187,s2755).registration13873,362045 -registration(r9366,c187,s2755).registration13873,362045 -registration(r9367,c63,s2755).registration13874,362077 -registration(r9367,c63,s2755).registration13874,362077 -registration(r9368,c98,s2756).registration13875,362108 -registration(r9368,c98,s2756).registration13875,362108 -registration(r9369,c112,s2756).registration13876,362139 -registration(r9369,c112,s2756).registration13876,362139 -registration(r9370,c247,s2756).registration13877,362171 -registration(r9370,c247,s2756).registration13877,362171 -registration(r9371,c145,s2756).registration13878,362203 -registration(r9371,c145,s2756).registration13878,362203 -registration(r9372,c156,s2757).registration13879,362235 -registration(r9372,c156,s2757).registration13879,362235 -registration(r9373,c41,s2757).registration13880,362267 -registration(r9373,c41,s2757).registration13880,362267 -registration(r9374,c60,s2757).registration13881,362298 -registration(r9374,c60,s2757).registration13881,362298 -registration(r9375,c98,s2758).registration13882,362329 -registration(r9375,c98,s2758).registration13882,362329 -registration(r9376,c154,s2758).registration13883,362360 -registration(r9376,c154,s2758).registration13883,362360 -registration(r9377,c110,s2758).registration13884,362392 -registration(r9377,c110,s2758).registration13884,362392 -registration(r9378,c245,s2759).registration13885,362424 -registration(r9378,c245,s2759).registration13885,362424 -registration(r9379,c238,s2759).registration13886,362456 -registration(r9379,c238,s2759).registration13886,362456 -registration(r9380,c134,s2759).registration13887,362488 -registration(r9380,c134,s2759).registration13887,362488 -registration(r9381,c146,s2759).registration13888,362520 -registration(r9381,c146,s2759).registration13888,362520 -registration(r9382,c204,s2760).registration13889,362552 -registration(r9382,c204,s2760).registration13889,362552 -registration(r9383,c42,s2760).registration13890,362584 -registration(r9383,c42,s2760).registration13890,362584 -registration(r9384,c125,s2760).registration13891,362615 -registration(r9384,c125,s2760).registration13891,362615 -registration(r9385,c205,s2760).registration13892,362647 -registration(r9385,c205,s2760).registration13892,362647 -registration(r9386,c99,s2761).registration13893,362679 -registration(r9386,c99,s2761).registration13893,362679 -registration(r9387,c6,s2761).registration13894,362710 -registration(r9387,c6,s2761).registration13894,362710 -registration(r9388,c50,s2761).registration13895,362740 -registration(r9388,c50,s2761).registration13895,362740 -registration(r9389,c40,s2762).registration13896,362771 -registration(r9389,c40,s2762).registration13896,362771 -registration(r9390,c141,s2762).registration13897,362802 -registration(r9390,c141,s2762).registration13897,362802 -registration(r9391,c136,s2762).registration13898,362834 -registration(r9391,c136,s2762).registration13898,362834 -registration(r9392,c178,s2762).registration13899,362866 -registration(r9392,c178,s2762).registration13899,362866 -registration(r9393,c245,s2763).registration13900,362898 -registration(r9393,c245,s2763).registration13900,362898 -registration(r9394,c254,s2763).registration13901,362930 -registration(r9394,c254,s2763).registration13901,362930 -registration(r9395,c68,s2763).registration13902,362962 -registration(r9395,c68,s2763).registration13902,362962 -registration(r9396,c179,s2764).registration13903,362993 -registration(r9396,c179,s2764).registration13903,362993 -registration(r9397,c58,s2764).registration13904,363025 -registration(r9397,c58,s2764).registration13904,363025 -registration(r9398,c23,s2764).registration13905,363056 -registration(r9398,c23,s2764).registration13905,363056 -registration(r9399,c159,s2764).registration13906,363087 -registration(r9399,c159,s2764).registration13906,363087 -registration(r9400,c215,s2765).registration13907,363119 -registration(r9400,c215,s2765).registration13907,363119 -registration(r9401,c189,s2765).registration13908,363151 -registration(r9401,c189,s2765).registration13908,363151 -registration(r9402,c104,s2765).registration13909,363183 -registration(r9402,c104,s2765).registration13909,363183 -registration(r9403,c230,s2766).registration13910,363215 -registration(r9403,c230,s2766).registration13910,363215 -registration(r9404,c199,s2766).registration13911,363247 -registration(r9404,c199,s2766).registration13911,363247 -registration(r9405,c180,s2766).registration13912,363279 -registration(r9405,c180,s2766).registration13912,363279 -registration(r9406,c43,s2766).registration13913,363311 -registration(r9406,c43,s2766).registration13913,363311 -registration(r9407,c80,s2767).registration13914,363342 -registration(r9407,c80,s2767).registration13914,363342 -registration(r9408,c242,s2767).registration13915,363373 -registration(r9408,c242,s2767).registration13915,363373 -registration(r9409,c50,s2767).registration13916,363405 -registration(r9409,c50,s2767).registration13916,363405 -registration(r9410,c186,s2768).registration13917,363436 -registration(r9410,c186,s2768).registration13917,363436 -registration(r9411,c51,s2768).registration13918,363468 -registration(r9411,c51,s2768).registration13918,363468 -registration(r9412,c169,s2768).registration13919,363499 -registration(r9412,c169,s2768).registration13919,363499 -registration(r9413,c167,s2768).registration13920,363531 -registration(r9413,c167,s2768).registration13920,363531 -registration(r9414,c177,s2769).registration13921,363563 -registration(r9414,c177,s2769).registration13921,363563 -registration(r9415,c128,s2769).registration13922,363595 -registration(r9415,c128,s2769).registration13922,363595 -registration(r9416,c64,s2769).registration13923,363627 -registration(r9416,c64,s2769).registration13923,363627 -registration(r9417,c88,s2770).registration13924,363658 -registration(r9417,c88,s2770).registration13924,363658 -registration(r9418,c13,s2770).registration13925,363689 -registration(r9418,c13,s2770).registration13925,363689 -registration(r9419,c231,s2770).registration13926,363720 -registration(r9419,c231,s2770).registration13926,363720 -registration(r9420,c164,s2771).registration13927,363752 -registration(r9420,c164,s2771).registration13927,363752 -registration(r9421,c96,s2771).registration13928,363784 -registration(r9421,c96,s2771).registration13928,363784 -registration(r9422,c137,s2771).registration13929,363815 -registration(r9422,c137,s2771).registration13929,363815 -registration(r9423,c81,s2772).registration13930,363847 -registration(r9423,c81,s2772).registration13930,363847 -registration(r9424,c67,s2772).registration13931,363878 -registration(r9424,c67,s2772).registration13931,363878 -registration(r9425,c103,s2772).registration13932,363909 -registration(r9425,c103,s2772).registration13932,363909 -registration(r9426,c183,s2773).registration13933,363941 -registration(r9426,c183,s2773).registration13933,363941 -registration(r9427,c111,s2773).registration13934,363973 -registration(r9427,c111,s2773).registration13934,363973 -registration(r9428,c49,s2773).registration13935,364005 -registration(r9428,c49,s2773).registration13935,364005 -registration(r9429,c239,s2773).registration13936,364036 -registration(r9429,c239,s2773).registration13936,364036 -registration(r9430,c100,s2774).registration13937,364068 -registration(r9430,c100,s2774).registration13937,364068 -registration(r9431,c153,s2774).registration13938,364100 -registration(r9431,c153,s2774).registration13938,364100 -registration(r9432,c88,s2774).registration13939,364132 -registration(r9432,c88,s2774).registration13939,364132 -registration(r9433,c10,s2775).registration13940,364163 -registration(r9433,c10,s2775).registration13940,364163 -registration(r9434,c15,s2775).registration13941,364194 -registration(r9434,c15,s2775).registration13941,364194 -registration(r9435,c131,s2775).registration13942,364225 -registration(r9435,c131,s2775).registration13942,364225 -registration(r9436,c219,s2776).registration13943,364257 -registration(r9436,c219,s2776).registration13943,364257 -registration(r9437,c123,s2776).registration13944,364289 -registration(r9437,c123,s2776).registration13944,364289 -registration(r9438,c178,s2776).registration13945,364321 -registration(r9438,c178,s2776).registration13945,364321 -registration(r9439,c87,s2777).registration13946,364353 -registration(r9439,c87,s2777).registration13946,364353 -registration(r9440,c52,s2777).registration13947,364384 -registration(r9440,c52,s2777).registration13947,364384 -registration(r9441,c234,s2777).registration13948,364415 -registration(r9441,c234,s2777).registration13948,364415 -registration(r9442,c60,s2778).registration13949,364447 -registration(r9442,c60,s2778).registration13949,364447 -registration(r9443,c40,s2778).registration13950,364478 -registration(r9443,c40,s2778).registration13950,364478 -registration(r9444,c226,s2778).registration13951,364509 -registration(r9444,c226,s2778).registration13951,364509 -registration(r9445,c154,s2778).registration13952,364541 -registration(r9445,c154,s2778).registration13952,364541 -registration(r9446,c41,s2779).registration13953,364573 -registration(r9446,c41,s2779).registration13953,364573 -registration(r9447,c91,s2779).registration13954,364604 -registration(r9447,c91,s2779).registration13954,364604 -registration(r9448,c202,s2779).registration13955,364635 -registration(r9448,c202,s2779).registration13955,364635 -registration(r9449,c71,s2779).registration13956,364667 -registration(r9449,c71,s2779).registration13956,364667 -registration(r9450,c178,s2779).registration13957,364698 -registration(r9450,c178,s2779).registration13957,364698 -registration(r9451,c161,s2780).registration13958,364730 -registration(r9451,c161,s2780).registration13958,364730 -registration(r9452,c188,s2780).registration13959,364762 -registration(r9452,c188,s2780).registration13959,364762 -registration(r9453,c244,s2780).registration13960,364794 -registration(r9453,c244,s2780).registration13960,364794 -registration(r9454,c119,s2781).registration13961,364826 -registration(r9454,c119,s2781).registration13961,364826 -registration(r9455,c26,s2781).registration13962,364858 -registration(r9455,c26,s2781).registration13962,364858 -registration(r9456,c151,s2781).registration13963,364889 -registration(r9456,c151,s2781).registration13963,364889 -registration(r9457,c73,s2782).registration13964,364921 -registration(r9457,c73,s2782).registration13964,364921 -registration(r9458,c38,s2782).registration13965,364952 -registration(r9458,c38,s2782).registration13965,364952 -registration(r9459,c246,s2782).registration13966,364983 -registration(r9459,c246,s2782).registration13966,364983 -registration(r9460,c224,s2783).registration13967,365015 -registration(r9460,c224,s2783).registration13967,365015 -registration(r9461,c134,s2783).registration13968,365047 -registration(r9461,c134,s2783).registration13968,365047 -registration(r9462,c214,s2783).registration13969,365079 -registration(r9462,c214,s2783).registration13969,365079 -registration(r9463,c174,s2783).registration13970,365111 -registration(r9463,c174,s2783).registration13970,365111 -registration(r9464,c214,s2784).registration13971,365143 -registration(r9464,c214,s2784).registration13971,365143 -registration(r9465,c215,s2784).registration13972,365175 -registration(r9465,c215,s2784).registration13972,365175 -registration(r9466,c82,s2784).registration13973,365207 -registration(r9466,c82,s2784).registration13973,365207 -registration(r9467,c49,s2784).registration13974,365238 -registration(r9467,c49,s2784).registration13974,365238 -registration(r9468,c25,s2784).registration13975,365269 -registration(r9468,c25,s2784).registration13975,365269 -registration(r9469,c121,s2785).registration13976,365300 -registration(r9469,c121,s2785).registration13976,365300 -registration(r9470,c76,s2785).registration13977,365332 -registration(r9470,c76,s2785).registration13977,365332 -registration(r9471,c204,s2785).registration13978,365363 -registration(r9471,c204,s2785).registration13978,365363 -registration(r9472,c8,s2785).registration13979,365395 -registration(r9472,c8,s2785).registration13979,365395 -registration(r9473,c198,s2786).registration13980,365425 -registration(r9473,c198,s2786).registration13980,365425 -registration(r9474,c212,s2786).registration13981,365457 -registration(r9474,c212,s2786).registration13981,365457 -registration(r9475,c55,s2786).registration13982,365489 -registration(r9475,c55,s2786).registration13982,365489 -registration(r9476,c138,s2787).registration13983,365520 -registration(r9476,c138,s2787).registration13983,365520 -registration(r9477,c117,s2787).registration13984,365552 -registration(r9477,c117,s2787).registration13984,365552 -registration(r9478,c181,s2787).registration13985,365584 -registration(r9478,c181,s2787).registration13985,365584 -registration(r9479,c86,s2788).registration13986,365616 -registration(r9479,c86,s2788).registration13986,365616 -registration(r9480,c11,s2788).registration13987,365647 -registration(r9480,c11,s2788).registration13987,365647 -registration(r9481,c78,s2788).registration13988,365678 -registration(r9481,c78,s2788).registration13988,365678 -registration(r9482,c106,s2789).registration13989,365709 -registration(r9482,c106,s2789).registration13989,365709 -registration(r9483,c140,s2789).registration13990,365741 -registration(r9483,c140,s2789).registration13990,365741 -registration(r9484,c156,s2789).registration13991,365773 -registration(r9484,c156,s2789).registration13991,365773 -registration(r9485,c239,s2790).registration13992,365805 -registration(r9485,c239,s2790).registration13992,365805 -registration(r9486,c66,s2790).registration13993,365837 -registration(r9486,c66,s2790).registration13993,365837 -registration(r9487,c149,s2790).registration13994,365868 -registration(r9487,c149,s2790).registration13994,365868 -registration(r9488,c91,s2790).registration13995,365900 -registration(r9488,c91,s2790).registration13995,365900 -registration(r9489,c89,s2790).registration13996,365931 -registration(r9489,c89,s2790).registration13996,365931 -registration(r9490,c40,s2791).registration13997,365962 -registration(r9490,c40,s2791).registration13997,365962 -registration(r9491,c42,s2791).registration13998,365993 -registration(r9491,c42,s2791).registration13998,365993 -registration(r9492,c99,s2791).registration13999,366024 -registration(r9492,c99,s2791).registration13999,366024 -registration(r9493,c54,s2792).registration14000,366055 -registration(r9493,c54,s2792).registration14000,366055 -registration(r9494,c32,s2792).registration14001,366086 -registration(r9494,c32,s2792).registration14001,366086 -registration(r9495,c208,s2792).registration14002,366117 -registration(r9495,c208,s2792).registration14002,366117 -registration(r9496,c70,s2793).registration14003,366149 -registration(r9496,c70,s2793).registration14003,366149 -registration(r9497,c87,s2793).registration14004,366180 -registration(r9497,c87,s2793).registration14004,366180 -registration(r9498,c93,s2793).registration14005,366211 -registration(r9498,c93,s2793).registration14005,366211 -registration(r9499,c103,s2794).registration14006,366242 -registration(r9499,c103,s2794).registration14006,366242 -registration(r9500,c1,s2794).registration14007,366274 -registration(r9500,c1,s2794).registration14007,366274 -registration(r9501,c138,s2794).registration14008,366304 -registration(r9501,c138,s2794).registration14008,366304 -registration(r9502,c21,s2795).registration14009,366336 -registration(r9502,c21,s2795).registration14009,366336 -registration(r9503,c229,s2795).registration14010,366367 -registration(r9503,c229,s2795).registration14010,366367 -registration(r9504,c174,s2795).registration14011,366399 -registration(r9504,c174,s2795).registration14011,366399 -registration(r9505,c241,s2796).registration14012,366431 -registration(r9505,c241,s2796).registration14012,366431 -registration(r9506,c13,s2796).registration14013,366463 -registration(r9506,c13,s2796).registration14013,366463 -registration(r9507,c225,s2796).registration14014,366494 -registration(r9507,c225,s2796).registration14014,366494 -registration(r9508,c59,s2796).registration14015,366526 -registration(r9508,c59,s2796).registration14015,366526 -registration(r9509,c117,s2797).registration14016,366557 -registration(r9509,c117,s2797).registration14016,366557 -registration(r9510,c70,s2797).registration14017,366589 -registration(r9510,c70,s2797).registration14017,366589 -registration(r9511,c158,s2797).registration14018,366620 -registration(r9511,c158,s2797).registration14018,366620 -registration(r9512,c212,s2798).registration14019,366652 -registration(r9512,c212,s2798).registration14019,366652 -registration(r9513,c126,s2798).registration14020,366684 -registration(r9513,c126,s2798).registration14020,366684 -registration(r9514,c6,s2798).registration14021,366716 -registration(r9514,c6,s2798).registration14021,366716 -registration(r9515,c77,s2798).registration14022,366746 -registration(r9515,c77,s2798).registration14022,366746 -registration(r9516,c205,s2799).registration14023,366777 -registration(r9516,c205,s2799).registration14023,366777 -registration(r9517,c133,s2799).registration14024,366809 -registration(r9517,c133,s2799).registration14024,366809 -registration(r9518,c1,s2799).registration14025,366841 -registration(r9518,c1,s2799).registration14025,366841 -registration(r9519,c3,s2800).registration14026,366871 -registration(r9519,c3,s2800).registration14026,366871 -registration(r9520,c4,s2800).registration14027,366901 -registration(r9520,c4,s2800).registration14027,366901 -registration(r9521,c56,s2800).registration14028,366931 -registration(r9521,c56,s2800).registration14028,366931 -registration(r9522,c30,s2800).registration14029,366962 -registration(r9522,c30,s2800).registration14029,366962 -registration(r9523,c31,s2801).registration14030,366993 -registration(r9523,c31,s2801).registration14030,366993 -registration(r9524,c145,s2801).registration14031,367024 -registration(r9524,c145,s2801).registration14031,367024 -registration(r9525,c242,s2801).registration14032,367056 -registration(r9525,c242,s2801).registration14032,367056 -registration(r9526,c158,s2801).registration14033,367088 -registration(r9526,c158,s2801).registration14033,367088 -registration(r9527,c93,s2802).registration14034,367120 -registration(r9527,c93,s2802).registration14034,367120 -registration(r9528,c187,s2802).registration14035,367151 -registration(r9528,c187,s2802).registration14035,367151 -registration(r9529,c15,s2802).registration14036,367183 -registration(r9529,c15,s2802).registration14036,367183 -registration(r9530,c173,s2802).registration14037,367214 -registration(r9530,c173,s2802).registration14037,367214 -registration(r9531,c49,s2803).registration14038,367246 -registration(r9531,c49,s2803).registration14038,367246 -registration(r9532,c56,s2803).registration14039,367277 -registration(r9532,c56,s2803).registration14039,367277 -registration(r9533,c130,s2803).registration14040,367308 -registration(r9533,c130,s2803).registration14040,367308 -registration(r9534,c248,s2804).registration14041,367340 -registration(r9534,c248,s2804).registration14041,367340 -registration(r9535,c217,s2804).registration14042,367372 -registration(r9535,c217,s2804).registration14042,367372 -registration(r9536,c139,s2804).registration14043,367404 -registration(r9536,c139,s2804).registration14043,367404 -registration(r9537,c142,s2805).registration14044,367436 -registration(r9537,c142,s2805).registration14044,367436 -registration(r9538,c62,s2805).registration14045,367468 -registration(r9538,c62,s2805).registration14045,367468 -registration(r9539,c77,s2805).registration14046,367499 -registration(r9539,c77,s2805).registration14046,367499 -registration(r9540,c132,s2806).registration14047,367530 -registration(r9540,c132,s2806).registration14047,367530 -registration(r9541,c3,s2806).registration14048,367562 -registration(r9541,c3,s2806).registration14048,367562 -registration(r9542,c91,s2806).registration14049,367592 -registration(r9542,c91,s2806).registration14049,367592 -registration(r9543,c236,s2806).registration14050,367623 -registration(r9543,c236,s2806).registration14050,367623 -registration(r9544,c147,s2807).registration14051,367655 -registration(r9544,c147,s2807).registration14051,367655 -registration(r9545,c50,s2807).registration14052,367687 -registration(r9545,c50,s2807).registration14052,367687 -registration(r9546,c138,s2807).registration14053,367718 -registration(r9546,c138,s2807).registration14053,367718 -registration(r9547,c69,s2808).registration14054,367750 -registration(r9547,c69,s2808).registration14054,367750 -registration(r9548,c119,s2808).registration14055,367781 -registration(r9548,c119,s2808).registration14055,367781 -registration(r9549,c99,s2808).registration14056,367813 -registration(r9549,c99,s2808).registration14056,367813 -registration(r9550,c149,s2808).registration14057,367844 -registration(r9550,c149,s2808).registration14057,367844 -registration(r9551,c127,s2809).registration14058,367876 -registration(r9551,c127,s2809).registration14058,367876 -registration(r9552,c166,s2809).registration14059,367908 -registration(r9552,c166,s2809).registration14059,367908 -registration(r9553,c67,s2809).registration14060,367940 -registration(r9553,c67,s2809).registration14060,367940 -registration(r9554,c30,s2810).registration14061,367971 -registration(r9554,c30,s2810).registration14061,367971 -registration(r9555,c75,s2810).registration14062,368002 -registration(r9555,c75,s2810).registration14062,368002 -registration(r9556,c101,s2810).registration14063,368033 -registration(r9556,c101,s2810).registration14063,368033 -registration(r9557,c162,s2811).registration14064,368065 -registration(r9557,c162,s2811).registration14064,368065 -registration(r9558,c204,s2811).registration14065,368097 -registration(r9558,c204,s2811).registration14065,368097 -registration(r9559,c106,s2811).registration14066,368129 -registration(r9559,c106,s2811).registration14066,368129 -registration(r9560,c110,s2812).registration14067,368161 -registration(r9560,c110,s2812).registration14067,368161 -registration(r9561,c64,s2812).registration14068,368193 -registration(r9561,c64,s2812).registration14068,368193 -registration(r9562,c242,s2812).registration14069,368224 -registration(r9562,c242,s2812).registration14069,368224 -registration(r9563,c134,s2812).registration14070,368256 -registration(r9563,c134,s2812).registration14070,368256 -registration(r9564,c195,s2813).registration14071,368288 -registration(r9564,c195,s2813).registration14071,368288 -registration(r9565,c182,s2813).registration14072,368320 -registration(r9565,c182,s2813).registration14072,368320 -registration(r9566,c238,s2813).registration14073,368352 -registration(r9566,c238,s2813).registration14073,368352 -registration(r9567,c100,s2814).registration14074,368384 -registration(r9567,c100,s2814).registration14074,368384 -registration(r9568,c183,s2814).registration14075,368416 -registration(r9568,c183,s2814).registration14075,368416 -registration(r9569,c67,s2814).registration14076,368448 -registration(r9569,c67,s2814).registration14076,368448 -registration(r9570,c194,s2815).registration14077,368479 -registration(r9570,c194,s2815).registration14077,368479 -registration(r9571,c47,s2815).registration14078,368511 -registration(r9571,c47,s2815).registration14078,368511 -registration(r9572,c143,s2815).registration14079,368542 -registration(r9572,c143,s2815).registration14079,368542 -registration(r9573,c173,s2816).registration14080,368574 -registration(r9573,c173,s2816).registration14080,368574 -registration(r9574,c203,s2816).registration14081,368606 -registration(r9574,c203,s2816).registration14081,368606 -registration(r9575,c49,s2816).registration14082,368638 -registration(r9575,c49,s2816).registration14082,368638 -registration(r9576,c164,s2816).registration14083,368669 -registration(r9576,c164,s2816).registration14083,368669 -registration(r9577,c249,s2817).registration14084,368701 -registration(r9577,c249,s2817).registration14084,368701 -registration(r9578,c16,s2817).registration14085,368733 -registration(r9578,c16,s2817).registration14085,368733 -registration(r9579,c185,s2817).registration14086,368764 -registration(r9579,c185,s2817).registration14086,368764 -registration(r9580,c250,s2818).registration14087,368796 -registration(r9580,c250,s2818).registration14087,368796 -registration(r9581,c60,s2818).registration14088,368828 -registration(r9581,c60,s2818).registration14088,368828 -registration(r9582,c16,s2818).registration14089,368859 -registration(r9582,c16,s2818).registration14089,368859 -registration(r9583,c195,s2818).registration14090,368890 -registration(r9583,c195,s2818).registration14090,368890 -registration(r9584,c221,s2819).registration14091,368922 -registration(r9584,c221,s2819).registration14091,368922 -registration(r9585,c176,s2819).registration14092,368954 -registration(r9585,c176,s2819).registration14092,368954 -registration(r9586,c40,s2819).registration14093,368986 -registration(r9586,c40,s2819).registration14093,368986 -registration(r9587,c223,s2819).registration14094,369017 -registration(r9587,c223,s2819).registration14094,369017 -registration(r9588,c29,s2820).registration14095,369049 -registration(r9588,c29,s2820).registration14095,369049 -registration(r9589,c159,s2820).registration14096,369080 -registration(r9589,c159,s2820).registration14096,369080 -registration(r9590,c43,s2820).registration14097,369112 -registration(r9590,c43,s2820).registration14097,369112 -registration(r9591,c185,s2821).registration14098,369143 -registration(r9591,c185,s2821).registration14098,369143 -registration(r9592,c96,s2821).registration14099,369175 -registration(r9592,c96,s2821).registration14099,369175 -registration(r9593,c156,s2821).registration14100,369206 -registration(r9593,c156,s2821).registration14100,369206 -registration(r9594,c207,s2821).registration14101,369238 -registration(r9594,c207,s2821).registration14101,369238 -registration(r9595,c148,s2822).registration14102,369270 -registration(r9595,c148,s2822).registration14102,369270 -registration(r9596,c210,s2822).registration14103,369302 -registration(r9596,c210,s2822).registration14103,369302 -registration(r9597,c163,s2822).registration14104,369334 -registration(r9597,c163,s2822).registration14104,369334 -registration(r9598,c93,s2823).registration14105,369366 -registration(r9598,c93,s2823).registration14105,369366 -registration(r9599,c215,s2823).registration14106,369397 -registration(r9599,c215,s2823).registration14106,369397 -registration(r9600,c99,s2823).registration14107,369429 -registration(r9600,c99,s2823).registration14107,369429 -registration(r9601,c116,s2823).registration14108,369460 -registration(r9601,c116,s2823).registration14108,369460 -registration(r9602,c125,s2824).registration14109,369492 -registration(r9602,c125,s2824).registration14109,369492 -registration(r9603,c215,s2824).registration14110,369524 -registration(r9603,c215,s2824).registration14110,369524 -registration(r9604,c72,s2824).registration14111,369556 -registration(r9604,c72,s2824).registration14111,369556 -registration(r9605,c113,s2825).registration14112,369587 -registration(r9605,c113,s2825).registration14112,369587 -registration(r9606,c52,s2825).registration14113,369619 -registration(r9606,c52,s2825).registration14113,369619 -registration(r9607,c160,s2825).registration14114,369650 -registration(r9607,c160,s2825).registration14114,369650 -registration(r9608,c62,s2826).registration14115,369682 -registration(r9608,c62,s2826).registration14115,369682 -registration(r9609,c124,s2826).registration14116,369713 -registration(r9609,c124,s2826).registration14116,369713 -registration(r9610,c50,s2826).registration14117,369745 -registration(r9610,c50,s2826).registration14117,369745 -registration(r9611,c53,s2826).registration14118,369776 -registration(r9611,c53,s2826).registration14118,369776 -registration(r9612,c170,s2827).registration14119,369807 -registration(r9612,c170,s2827).registration14119,369807 -registration(r9613,c156,s2827).registration14120,369839 -registration(r9613,c156,s2827).registration14120,369839 -registration(r9614,c193,s2827).registration14121,369871 -registration(r9614,c193,s2827).registration14121,369871 -registration(r9615,c145,s2827).registration14122,369903 -registration(r9615,c145,s2827).registration14122,369903 -registration(r9616,c28,s2828).registration14123,369935 -registration(r9616,c28,s2828).registration14123,369935 -registration(r9617,c190,s2828).registration14124,369966 -registration(r9617,c190,s2828).registration14124,369966 -registration(r9618,c118,s2828).registration14125,369998 -registration(r9618,c118,s2828).registration14125,369998 -registration(r9619,c217,s2829).registration14126,370030 -registration(r9619,c217,s2829).registration14126,370030 -registration(r9620,c208,s2829).registration14127,370062 -registration(r9620,c208,s2829).registration14127,370062 -registration(r9621,c168,s2829).registration14128,370094 -registration(r9621,c168,s2829).registration14128,370094 -registration(r9622,c129,s2830).registration14129,370126 -registration(r9622,c129,s2830).registration14129,370126 -registration(r9623,c151,s2830).registration14130,370158 -registration(r9623,c151,s2830).registration14130,370158 -registration(r9624,c171,s2830).registration14131,370190 -registration(r9624,c171,s2830).registration14131,370190 -registration(r9625,c8,s2830).registration14132,370222 -registration(r9625,c8,s2830).registration14132,370222 -registration(r9626,c170,s2831).registration14133,370252 -registration(r9626,c170,s2831).registration14133,370252 -registration(r9627,c89,s2831).registration14134,370284 -registration(r9627,c89,s2831).registration14134,370284 -registration(r9628,c49,s2831).registration14135,370315 -registration(r9628,c49,s2831).registration14135,370315 -registration(r9629,c100,s2832).registration14136,370346 -registration(r9629,c100,s2832).registration14136,370346 -registration(r9630,c247,s2832).registration14137,370378 -registration(r9630,c247,s2832).registration14137,370378 -registration(r9631,c11,s2832).registration14138,370410 -registration(r9631,c11,s2832).registration14138,370410 -registration(r9632,c168,s2833).registration14139,370441 -registration(r9632,c168,s2833).registration14139,370441 -registration(r9633,c185,s2833).registration14140,370473 -registration(r9633,c185,s2833).registration14140,370473 -registration(r9634,c27,s2833).registration14141,370505 -registration(r9634,c27,s2833).registration14141,370505 -registration(r9635,c55,s2834).registration14142,370536 -registration(r9635,c55,s2834).registration14142,370536 -registration(r9636,c152,s2834).registration14143,370567 -registration(r9636,c152,s2834).registration14143,370567 -registration(r9637,c195,s2834).registration14144,370599 -registration(r9637,c195,s2834).registration14144,370599 -registration(r9638,c157,s2834).registration14145,370631 -registration(r9638,c157,s2834).registration14145,370631 -registration(r9639,c131,s2835).registration14146,370663 -registration(r9639,c131,s2835).registration14146,370663 -registration(r9640,c215,s2835).registration14147,370695 -registration(r9640,c215,s2835).registration14147,370695 -registration(r9641,c235,s2835).registration14148,370727 -registration(r9641,c235,s2835).registration14148,370727 -registration(r9642,c129,s2836).registration14149,370759 -registration(r9642,c129,s2836).registration14149,370759 -registration(r9643,c124,s2836).registration14150,370791 -registration(r9643,c124,s2836).registration14150,370791 -registration(r9644,c99,s2836).registration14151,370823 -registration(r9644,c99,s2836).registration14151,370823 -registration(r9645,c14,s2837).registration14152,370854 -registration(r9645,c14,s2837).registration14152,370854 -registration(r9646,c229,s2837).registration14153,370885 -registration(r9646,c229,s2837).registration14153,370885 -registration(r9647,c141,s2837).registration14154,370917 -registration(r9647,c141,s2837).registration14154,370917 -registration(r9648,c242,s2838).registration14155,370949 -registration(r9648,c242,s2838).registration14155,370949 -registration(r9649,c238,s2838).registration14156,370981 -registration(r9649,c238,s2838).registration14156,370981 -registration(r9650,c197,s2838).registration14157,371013 -registration(r9650,c197,s2838).registration14157,371013 -registration(r9651,c111,s2839).registration14158,371045 -registration(r9651,c111,s2839).registration14158,371045 -registration(r9652,c165,s2839).registration14159,371077 -registration(r9652,c165,s2839).registration14159,371077 -registration(r9653,c173,s2839).registration14160,371109 -registration(r9653,c173,s2839).registration14160,371109 -registration(r9654,c228,s2840).registration14161,371141 -registration(r9654,c228,s2840).registration14161,371141 -registration(r9655,c224,s2840).registration14162,371173 -registration(r9655,c224,s2840).registration14162,371173 -registration(r9656,c179,s2840).registration14163,371205 -registration(r9656,c179,s2840).registration14163,371205 -registration(r9657,c81,s2840).registration14164,371237 -registration(r9657,c81,s2840).registration14164,371237 -registration(r9658,c25,s2841).registration14165,371268 -registration(r9658,c25,s2841).registration14165,371268 -registration(r9659,c231,s2841).registration14166,371299 -registration(r9659,c231,s2841).registration14166,371299 -registration(r9660,c61,s2841).registration14167,371331 -registration(r9660,c61,s2841).registration14167,371331 -registration(r9661,c191,s2842).registration14168,371362 -registration(r9661,c191,s2842).registration14168,371362 -registration(r9662,c105,s2842).registration14169,371394 -registration(r9662,c105,s2842).registration14169,371394 -registration(r9663,c164,s2842).registration14170,371426 -registration(r9663,c164,s2842).registration14170,371426 -registration(r9664,c179,s2843).registration14171,371458 -registration(r9664,c179,s2843).registration14171,371458 -registration(r9665,c47,s2843).registration14172,371490 -registration(r9665,c47,s2843).registration14172,371490 -registration(r9666,c84,s2843).registration14173,371521 -registration(r9666,c84,s2843).registration14173,371521 -registration(r9667,c70,s2844).registration14174,371552 -registration(r9667,c70,s2844).registration14174,371552 -registration(r9668,c156,s2844).registration14175,371583 -registration(r9668,c156,s2844).registration14175,371583 -registration(r9669,c178,s2844).registration14176,371615 -registration(r9669,c178,s2844).registration14176,371615 -registration(r9670,c44,s2844).registration14177,371647 -registration(r9670,c44,s2844).registration14177,371647 -registration(r9671,c215,s2844).registration14178,371678 -registration(r9671,c215,s2844).registration14178,371678 -registration(r9672,c218,s2845).registration14179,371710 -registration(r9672,c218,s2845).registration14179,371710 -registration(r9673,c107,s2845).registration14180,371742 -registration(r9673,c107,s2845).registration14180,371742 -registration(r9674,c199,s2845).registration14181,371774 -registration(r9674,c199,s2845).registration14181,371774 -registration(r9675,c125,s2846).registration14182,371806 -registration(r9675,c125,s2846).registration14182,371806 -registration(r9676,c85,s2846).registration14183,371838 -registration(r9676,c85,s2846).registration14183,371838 -registration(r9677,c92,s2846).registration14184,371869 -registration(r9677,c92,s2846).registration14184,371869 -registration(r9678,c67,s2847).registration14185,371900 -registration(r9678,c67,s2847).registration14185,371900 -registration(r9679,c13,s2847).registration14186,371931 -registration(r9679,c13,s2847).registration14186,371931 -registration(r9680,c93,s2847).registration14187,371962 -registration(r9680,c93,s2847).registration14187,371962 -registration(r9681,c197,s2848).registration14188,371993 -registration(r9681,c197,s2848).registration14188,371993 -registration(r9682,c40,s2848).registration14189,372025 -registration(r9682,c40,s2848).registration14189,372025 -registration(r9683,c22,s2848).registration14190,372056 -registration(r9683,c22,s2848).registration14190,372056 -registration(r9684,c70,s2849).registration14191,372087 -registration(r9684,c70,s2849).registration14191,372087 -registration(r9685,c223,s2849).registration14192,372118 -registration(r9685,c223,s2849).registration14192,372118 -registration(r9686,c136,s2849).registration14193,372150 -registration(r9686,c136,s2849).registration14193,372150 -registration(r9687,c37,s2849).registration14194,372182 -registration(r9687,c37,s2849).registration14194,372182 -registration(r9688,c227,s2849).registration14195,372213 -registration(r9688,c227,s2849).registration14195,372213 -registration(r9689,c87,s2850).registration14196,372245 -registration(r9689,c87,s2850).registration14196,372245 -registration(r9690,c81,s2850).registration14197,372276 -registration(r9690,c81,s2850).registration14197,372276 -registration(r9691,c4,s2850).registration14198,372307 -registration(r9691,c4,s2850).registration14198,372307 -registration(r9692,c44,s2850).registration14199,372337 -registration(r9692,c44,s2850).registration14199,372337 -registration(r9693,c245,s2851).registration14200,372368 -registration(r9693,c245,s2851).registration14200,372368 -registration(r9694,c233,s2851).registration14201,372400 -registration(r9694,c233,s2851).registration14201,372400 -registration(r9695,c187,s2851).registration14202,372432 -registration(r9695,c187,s2851).registration14202,372432 -registration(r9696,c25,s2852).registration14203,372464 -registration(r9696,c25,s2852).registration14203,372464 -registration(r9697,c67,s2852).registration14204,372495 -registration(r9697,c67,s2852).registration14204,372495 -registration(r9698,c176,s2852).registration14205,372526 -registration(r9698,c176,s2852).registration14205,372526 -registration(r9699,c11,s2853).registration14206,372558 -registration(r9699,c11,s2853).registration14206,372558 -registration(r9700,c225,s2853).registration14207,372589 -registration(r9700,c225,s2853).registration14207,372589 -registration(r9701,c30,s2853).registration14208,372621 -registration(r9701,c30,s2853).registration14208,372621 -registration(r9702,c53,s2853).registration14209,372652 -registration(r9702,c53,s2853).registration14209,372652 -registration(r9703,c92,s2854).registration14210,372683 -registration(r9703,c92,s2854).registration14210,372683 -registration(r9704,c231,s2854).registration14211,372714 -registration(r9704,c231,s2854).registration14211,372714 -registration(r9705,c122,s2854).registration14212,372746 -registration(r9705,c122,s2854).registration14212,372746 -registration(r9706,c171,s2855).registration14213,372778 -registration(r9706,c171,s2855).registration14213,372778 -registration(r9707,c96,s2855).registration14214,372810 -registration(r9707,c96,s2855).registration14214,372810 -registration(r9708,c148,s2855).registration14215,372841 -registration(r9708,c148,s2855).registration14215,372841 -registration(r9709,c230,s2856).registration14216,372873 -registration(r9709,c230,s2856).registration14216,372873 -registration(r9710,c146,s2856).registration14217,372905 -registration(r9710,c146,s2856).registration14217,372905 -registration(r9711,c228,s2856).registration14218,372937 -registration(r9711,c228,s2856).registration14218,372937 -registration(r9712,c3,s2856).registration14219,372969 -registration(r9712,c3,s2856).registration14219,372969 -registration(r9713,c253,s2857).registration14220,372999 -registration(r9713,c253,s2857).registration14220,372999 -registration(r9714,c191,s2857).registration14221,373031 -registration(r9714,c191,s2857).registration14221,373031 -registration(r9715,c77,s2857).registration14222,373063 -registration(r9715,c77,s2857).registration14222,373063 -registration(r9716,c145,s2858).registration14223,373094 -registration(r9716,c145,s2858).registration14223,373094 -registration(r9717,c237,s2858).registration14224,373126 -registration(r9717,c237,s2858).registration14224,373126 -registration(r9718,c54,s2858).registration14225,373158 -registration(r9718,c54,s2858).registration14225,373158 -registration(r9719,c24,s2859).registration14226,373189 -registration(r9719,c24,s2859).registration14226,373189 -registration(r9720,c255,s2859).registration14227,373220 -registration(r9720,c255,s2859).registration14227,373220 -registration(r9721,c201,s2859).registration14228,373252 -registration(r9721,c201,s2859).registration14228,373252 -registration(r9722,c52,s2859).registration14229,373284 -registration(r9722,c52,s2859).registration14229,373284 -registration(r9723,c9,s2859).registration14230,373315 -registration(r9723,c9,s2859).registration14230,373315 -registration(r9724,c174,s2860).registration14231,373345 -registration(r9724,c174,s2860).registration14231,373345 -registration(r9725,c97,s2860).registration14232,373377 -registration(r9725,c97,s2860).registration14232,373377 -registration(r9726,c121,s2860).registration14233,373408 -registration(r9726,c121,s2860).registration14233,373408 -registration(r9727,c13,s2861).registration14234,373440 -registration(r9727,c13,s2861).registration14234,373440 -registration(r9728,c232,s2861).registration14235,373471 -registration(r9728,c232,s2861).registration14235,373471 -registration(r9729,c123,s2861).registration14236,373503 -registration(r9729,c123,s2861).registration14236,373503 -registration(r9730,c96,s2862).registration14237,373535 -registration(r9730,c96,s2862).registration14237,373535 -registration(r9731,c7,s2862).registration14238,373566 -registration(r9731,c7,s2862).registration14238,373566 -registration(r9732,c127,s2862).registration14239,373596 -registration(r9732,c127,s2862).registration14239,373596 -registration(r9733,c63,s2862).registration14240,373628 -registration(r9733,c63,s2862).registration14240,373628 -registration(r9734,c138,s2863).registration14241,373659 -registration(r9734,c138,s2863).registration14241,373659 -registration(r9735,c66,s2863).registration14242,373691 -registration(r9735,c66,s2863).registration14242,373691 -registration(r9736,c24,s2863).registration14243,373722 -registration(r9736,c24,s2863).registration14243,373722 -registration(r9737,c48,s2863).registration14244,373753 -registration(r9737,c48,s2863).registration14244,373753 -registration(r9738,c254,s2864).registration14245,373784 -registration(r9738,c254,s2864).registration14245,373784 -registration(r9739,c40,s2864).registration14246,373816 -registration(r9739,c40,s2864).registration14246,373816 -registration(r9740,c104,s2864).registration14247,373847 -registration(r9740,c104,s2864).registration14247,373847 -registration(r9741,c138,s2865).registration14248,373879 -registration(r9741,c138,s2865).registration14248,373879 -registration(r9742,c49,s2865).registration14249,373911 -registration(r9742,c49,s2865).registration14249,373911 -registration(r9743,c26,s2865).registration14250,373942 -registration(r9743,c26,s2865).registration14250,373942 -registration(r9744,c124,s2866).registration14251,373973 -registration(r9744,c124,s2866).registration14251,373973 -registration(r9745,c13,s2866).registration14252,374005 -registration(r9745,c13,s2866).registration14252,374005 -registration(r9746,c59,s2866).registration14253,374036 -registration(r9746,c59,s2866).registration14253,374036 -registration(r9747,c35,s2866).registration14254,374067 -registration(r9747,c35,s2866).registration14254,374067 -registration(r9748,c186,s2867).registration14255,374098 -registration(r9748,c186,s2867).registration14255,374098 -registration(r9749,c15,s2867).registration14256,374130 -registration(r9749,c15,s2867).registration14256,374130 -registration(r9750,c158,s2867).registration14257,374161 -registration(r9750,c158,s2867).registration14257,374161 -registration(r9751,c23,s2867).registration14258,374193 -registration(r9751,c23,s2867).registration14258,374193 -registration(r9752,c87,s2867).registration14259,374224 -registration(r9752,c87,s2867).registration14259,374224 -registration(r9753,c27,s2868).registration14260,374255 -registration(r9753,c27,s2868).registration14260,374255 -registration(r9754,c92,s2868).registration14261,374286 -registration(r9754,c92,s2868).registration14261,374286 -registration(r9755,c225,s2868).registration14262,374317 -registration(r9755,c225,s2868).registration14262,374317 -registration(r9756,c253,s2869).registration14263,374349 -registration(r9756,c253,s2869).registration14263,374349 -registration(r9757,c140,s2869).registration14264,374381 -registration(r9757,c140,s2869).registration14264,374381 -registration(r9758,c196,s2869).registration14265,374413 -registration(r9758,c196,s2869).registration14265,374413 -registration(r9759,c45,s2870).registration14266,374445 -registration(r9759,c45,s2870).registration14266,374445 -registration(r9760,c250,s2870).registration14267,374476 -registration(r9760,c250,s2870).registration14267,374476 -registration(r9761,c169,s2870).registration14268,374508 -registration(r9761,c169,s2870).registration14268,374508 -registration(r9762,c196,s2870).registration14269,374540 -registration(r9762,c196,s2870).registration14269,374540 -registration(r9763,c75,s2871).registration14270,374572 -registration(r9763,c75,s2871).registration14270,374572 -registration(r9764,c12,s2871).registration14271,374603 -registration(r9764,c12,s2871).registration14271,374603 -registration(r9765,c65,s2871).registration14272,374634 -registration(r9765,c65,s2871).registration14272,374634 -registration(r9766,c127,s2872).registration14273,374665 -registration(r9766,c127,s2872).registration14273,374665 -registration(r9767,c115,s2872).registration14274,374697 -registration(r9767,c115,s2872).registration14274,374697 -registration(r9768,c105,s2872).registration14275,374729 -registration(r9768,c105,s2872).registration14275,374729 -registration(r9769,c8,s2873).registration14276,374761 -registration(r9769,c8,s2873).registration14276,374761 -registration(r9770,c85,s2873).registration14277,374791 -registration(r9770,c85,s2873).registration14277,374791 -registration(r9771,c155,s2873).registration14278,374822 -registration(r9771,c155,s2873).registration14278,374822 -registration(r9772,c173,s2873).registration14279,374854 -registration(r9772,c173,s2873).registration14279,374854 -registration(r9773,c130,s2874).registration14280,374886 -registration(r9773,c130,s2874).registration14280,374886 -registration(r9774,c142,s2874).registration14281,374918 -registration(r9774,c142,s2874).registration14281,374918 -registration(r9775,c19,s2874).registration14282,374950 -registration(r9775,c19,s2874).registration14282,374950 -registration(r9776,c160,s2875).registration14283,374981 -registration(r9776,c160,s2875).registration14283,374981 -registration(r9777,c188,s2875).registration14284,375013 -registration(r9777,c188,s2875).registration14284,375013 -registration(r9778,c135,s2875).registration14285,375045 -registration(r9778,c135,s2875).registration14285,375045 -registration(r9779,c130,s2876).registration14286,375077 -registration(r9779,c130,s2876).registration14286,375077 -registration(r9780,c1,s2876).registration14287,375109 -registration(r9780,c1,s2876).registration14287,375109 -registration(r9781,c161,s2876).registration14288,375139 -registration(r9781,c161,s2876).registration14288,375139 -registration(r9782,c236,s2877).registration14289,375171 -registration(r9782,c236,s2877).registration14289,375171 -registration(r9783,c187,s2877).registration14290,375203 -registration(r9783,c187,s2877).registration14290,375203 -registration(r9784,c6,s2877).registration14291,375235 -registration(r9784,c6,s2877).registration14291,375235 -registration(r9785,c133,s2877).registration14292,375265 -registration(r9785,c133,s2877).registration14292,375265 -registration(r9786,c184,s2878).registration14293,375297 -registration(r9786,c184,s2878).registration14293,375297 -registration(r9787,c109,s2878).registration14294,375329 -registration(r9787,c109,s2878).registration14294,375329 -registration(r9788,c192,s2878).registration14295,375361 -registration(r9788,c192,s2878).registration14295,375361 -registration(r9789,c21,s2879).registration14296,375393 -registration(r9789,c21,s2879).registration14296,375393 -registration(r9790,c214,s2879).registration14297,375424 -registration(r9790,c214,s2879).registration14297,375424 -registration(r9791,c156,s2879).registration14298,375456 -registration(r9791,c156,s2879).registration14298,375456 -registration(r9792,c30,s2880).registration14299,375488 -registration(r9792,c30,s2880).registration14299,375488 -registration(r9793,c80,s2880).registration14300,375519 -registration(r9793,c80,s2880).registration14300,375519 -registration(r9794,c159,s2880).registration14301,375550 -registration(r9794,c159,s2880).registration14301,375550 -registration(r9795,c219,s2880).registration14302,375582 -registration(r9795,c219,s2880).registration14302,375582 -registration(r9796,c209,s2881).registration14303,375614 -registration(r9796,c209,s2881).registration14303,375614 -registration(r9797,c98,s2881).registration14304,375646 -registration(r9797,c98,s2881).registration14304,375646 -registration(r9798,c151,s2881).registration14305,375677 -registration(r9798,c151,s2881).registration14305,375677 -registration(r9799,c152,s2882).registration14306,375709 -registration(r9799,c152,s2882).registration14306,375709 -registration(r9800,c91,s2882).registration14307,375741 -registration(r9800,c91,s2882).registration14307,375741 -registration(r9801,c148,s2882).registration14308,375772 -registration(r9801,c148,s2882).registration14308,375772 -registration(r9802,c80,s2883).registration14309,375804 -registration(r9802,c80,s2883).registration14309,375804 -registration(r9803,c101,s2883).registration14310,375835 -registration(r9803,c101,s2883).registration14310,375835 -registration(r9804,c141,s2883).registration14311,375867 -registration(r9804,c141,s2883).registration14311,375867 -registration(r9805,c68,s2884).registration14312,375899 -registration(r9805,c68,s2884).registration14312,375899 -registration(r9806,c193,s2884).registration14313,375930 -registration(r9806,c193,s2884).registration14313,375930 -registration(r9807,c170,s2884).registration14314,375962 -registration(r9807,c170,s2884).registration14314,375962 -registration(r9808,c192,s2885).registration14315,375994 -registration(r9808,c192,s2885).registration14315,375994 -registration(r9809,c86,s2885).registration14316,376026 -registration(r9809,c86,s2885).registration14316,376026 -registration(r9810,c213,s2885).registration14317,376057 -registration(r9810,c213,s2885).registration14317,376057 -registration(r9811,c243,s2886).registration14318,376089 -registration(r9811,c243,s2886).registration14318,376089 -registration(r9812,c208,s2886).registration14319,376121 -registration(r9812,c208,s2886).registration14319,376121 -registration(r9813,c128,s2886).registration14320,376153 -registration(r9813,c128,s2886).registration14320,376153 -registration(r9814,c171,s2886).registration14321,376185 -registration(r9814,c171,s2886).registration14321,376185 -registration(r9815,c219,s2887).registration14322,376217 -registration(r9815,c219,s2887).registration14322,376217 -registration(r9816,c15,s2887).registration14323,376249 -registration(r9816,c15,s2887).registration14323,376249 -registration(r9817,c88,s2887).registration14324,376280 -registration(r9817,c88,s2887).registration14324,376280 -registration(r9818,c241,s2888).registration14325,376311 -registration(r9818,c241,s2888).registration14325,376311 -registration(r9819,c240,s2888).registration14326,376343 -registration(r9819,c240,s2888).registration14326,376343 -registration(r9820,c137,s2888).registration14327,376375 -registration(r9820,c137,s2888).registration14327,376375 -registration(r9821,c218,s2889).registration14328,376407 -registration(r9821,c218,s2889).registration14328,376407 -registration(r9822,c179,s2889).registration14329,376439 -registration(r9822,c179,s2889).registration14329,376439 -registration(r9823,c197,s2889).registration14330,376471 -registration(r9823,c197,s2889).registration14330,376471 -registration(r9824,c157,s2889).registration14331,376503 -registration(r9824,c157,s2889).registration14331,376503 -registration(r9825,c240,s2889).registration14332,376535 -registration(r9825,c240,s2889).registration14332,376535 -registration(r9826,c73,s2890).registration14333,376567 -registration(r9826,c73,s2890).registration14333,376567 -registration(r9827,c139,s2890).registration14334,376598 -registration(r9827,c139,s2890).registration14334,376598 -registration(r9828,c40,s2890).registration14335,376630 -registration(r9828,c40,s2890).registration14335,376630 -registration(r9829,c225,s2890).registration14336,376661 -registration(r9829,c225,s2890).registration14336,376661 -registration(r9830,c140,s2891).registration14337,376693 -registration(r9830,c140,s2891).registration14337,376693 -registration(r9831,c196,s2891).registration14338,376725 -registration(r9831,c196,s2891).registration14338,376725 -registration(r9832,c241,s2891).registration14339,376757 -registration(r9832,c241,s2891).registration14339,376757 -registration(r9833,c250,s2892).registration14340,376789 -registration(r9833,c250,s2892).registration14340,376789 -registration(r9834,c9,s2892).registration14341,376821 -registration(r9834,c9,s2892).registration14341,376821 -registration(r9835,c6,s2892).registration14342,376851 -registration(r9835,c6,s2892).registration14342,376851 -registration(r9836,c96,s2892).registration14343,376881 -registration(r9836,c96,s2892).registration14343,376881 -registration(r9837,c108,s2893).registration14344,376912 -registration(r9837,c108,s2893).registration14344,376912 -registration(r9838,c14,s2893).registration14345,376944 -registration(r9838,c14,s2893).registration14345,376944 -registration(r9839,c80,s2893).registration14346,376975 -registration(r9839,c80,s2893).registration14346,376975 -registration(r9840,c160,s2894).registration14347,377006 -registration(r9840,c160,s2894).registration14347,377006 -registration(r9841,c151,s2894).registration14348,377038 -registration(r9841,c151,s2894).registration14348,377038 -registration(r9842,c114,s2894).registration14349,377070 -registration(r9842,c114,s2894).registration14349,377070 -registration(r9843,c162,s2895).registration14350,377102 -registration(r9843,c162,s2895).registration14350,377102 -registration(r9844,c243,s2895).registration14351,377134 -registration(r9844,c243,s2895).registration14351,377134 -registration(r9845,c103,s2895).registration14352,377166 -registration(r9845,c103,s2895).registration14352,377166 -registration(r9846,c242,s2896).registration14353,377198 -registration(r9846,c242,s2896).registration14353,377198 -registration(r9847,c187,s2896).registration14354,377230 -registration(r9847,c187,s2896).registration14354,377230 -registration(r9848,c70,s2896).registration14355,377262 -registration(r9848,c70,s2896).registration14355,377262 -registration(r9849,c211,s2897).registration14356,377293 -registration(r9849,c211,s2897).registration14356,377293 -registration(r9850,c151,s2897).registration14357,377325 -registration(r9850,c151,s2897).registration14357,377325 -registration(r9851,c170,s2897).registration14358,377357 -registration(r9851,c170,s2897).registration14358,377357 -registration(r9852,c222,s2897).registration14359,377389 -registration(r9852,c222,s2897).registration14359,377389 -registration(r9853,c58,s2898).registration14360,377421 -registration(r9853,c58,s2898).registration14360,377421 -registration(r9854,c228,s2898).registration14361,377452 -registration(r9854,c228,s2898).registration14361,377452 -registration(r9855,c123,s2898).registration14362,377484 -registration(r9855,c123,s2898).registration14362,377484 -registration(r9856,c231,s2899).registration14363,377516 -registration(r9856,c231,s2899).registration14363,377516 -registration(r9857,c98,s2899).registration14364,377548 -registration(r9857,c98,s2899).registration14364,377548 -registration(r9858,c148,s2899).registration14365,377579 -registration(r9858,c148,s2899).registration14365,377579 -registration(r9859,c52,s2900).registration14366,377611 -registration(r9859,c52,s2900).registration14366,377611 -registration(r9860,c221,s2900).registration14367,377642 -registration(r9860,c221,s2900).registration14367,377642 -registration(r9861,c111,s2900).registration14368,377674 -registration(r9861,c111,s2900).registration14368,377674 -registration(r9862,c18,s2901).registration14369,377706 -registration(r9862,c18,s2901).registration14369,377706 -registration(r9863,c124,s2901).registration14370,377737 -registration(r9863,c124,s2901).registration14370,377737 -registration(r9864,c163,s2901).registration14371,377769 -registration(r9864,c163,s2901).registration14371,377769 -registration(r9865,c149,s2902).registration14372,377801 -registration(r9865,c149,s2902).registration14372,377801 -registration(r9866,c97,s2902).registration14373,377833 -registration(r9866,c97,s2902).registration14373,377833 -registration(r9867,c0,s2902).registration14374,377864 -registration(r9867,c0,s2902).registration14374,377864 -registration(r9868,c212,s2902).registration14375,377894 -registration(r9868,c212,s2902).registration14375,377894 -registration(r9869,c2,s2903).registration14376,377926 -registration(r9869,c2,s2903).registration14376,377926 -registration(r9870,c197,s2903).registration14377,377956 -registration(r9870,c197,s2903).registration14377,377956 -registration(r9871,c6,s2903).registration14378,377988 -registration(r9871,c6,s2903).registration14378,377988 -registration(r9872,c64,s2904).registration14379,378018 -registration(r9872,c64,s2904).registration14379,378018 -registration(r9873,c196,s2904).registration14380,378049 -registration(r9873,c196,s2904).registration14380,378049 -registration(r9874,c229,s2904).registration14381,378081 -registration(r9874,c229,s2904).registration14381,378081 -registration(r9875,c204,s2904).registration14382,378113 -registration(r9875,c204,s2904).registration14382,378113 -registration(r9876,c247,s2905).registration14383,378145 -registration(r9876,c247,s2905).registration14383,378145 -registration(r9877,c156,s2905).registration14384,378177 -registration(r9877,c156,s2905).registration14384,378177 -registration(r9878,c18,s2905).registration14385,378209 -registration(r9878,c18,s2905).registration14385,378209 -registration(r9879,c239,s2906).registration14386,378240 -registration(r9879,c239,s2906).registration14386,378240 -registration(r9880,c98,s2906).registration14387,378272 -registration(r9880,c98,s2906).registration14387,378272 -registration(r9881,c90,s2906).registration14388,378303 -registration(r9881,c90,s2906).registration14388,378303 -registration(r9882,c117,s2906).registration14389,378334 -registration(r9882,c117,s2906).registration14389,378334 -registration(r9883,c205,s2907).registration14390,378366 -registration(r9883,c205,s2907).registration14390,378366 -registration(r9884,c26,s2907).registration14391,378398 -registration(r9884,c26,s2907).registration14391,378398 -registration(r9885,c144,s2907).registration14392,378429 -registration(r9885,c144,s2907).registration14392,378429 -registration(r9886,c145,s2908).registration14393,378461 -registration(r9886,c145,s2908).registration14393,378461 -registration(r9887,c205,s2908).registration14394,378493 -registration(r9887,c205,s2908).registration14394,378493 -registration(r9888,c150,s2908).registration14395,378525 -registration(r9888,c150,s2908).registration14395,378525 -registration(r9889,c91,s2909).registration14396,378557 -registration(r9889,c91,s2909).registration14396,378557 -registration(r9890,c108,s2909).registration14397,378588 -registration(r9890,c108,s2909).registration14397,378588 -registration(r9891,c176,s2909).registration14398,378620 -registration(r9891,c176,s2909).registration14398,378620 -registration(r9892,c116,s2910).registration14399,378652 -registration(r9892,c116,s2910).registration14399,378652 -registration(r9893,c171,s2910).registration14400,378684 -registration(r9893,c171,s2910).registration14400,378684 -registration(r9894,c64,s2910).registration14401,378716 -registration(r9894,c64,s2910).registration14401,378716 -registration(r9895,c56,s2911).registration14402,378747 -registration(r9895,c56,s2911).registration14402,378747 -registration(r9896,c26,s2911).registration14403,378778 -registration(r9896,c26,s2911).registration14403,378778 -registration(r9897,c139,s2911).registration14404,378809 -registration(r9897,c139,s2911).registration14404,378809 -registration(r9898,c236,s2911).registration14405,378841 -registration(r9898,c236,s2911).registration14405,378841 -registration(r9899,c141,s2912).registration14406,378873 -registration(r9899,c141,s2912).registration14406,378873 -registration(r9900,c71,s2912).registration14407,378905 -registration(r9900,c71,s2912).registration14407,378905 -registration(r9901,c165,s2912).registration14408,378936 -registration(r9901,c165,s2912).registration14408,378936 -registration(r9902,c30,s2912).registration14409,378968 -registration(r9902,c30,s2912).registration14409,378968 -registration(r9903,c29,s2913).registration14410,378999 -registration(r9903,c29,s2913).registration14410,378999 -registration(r9904,c176,s2913).registration14411,379030 -registration(r9904,c176,s2913).registration14411,379030 -registration(r9905,c214,s2913).registration14412,379062 -registration(r9905,c214,s2913).registration14412,379062 -registration(r9906,c163,s2914).registration14413,379094 -registration(r9906,c163,s2914).registration14413,379094 -registration(r9907,c47,s2914).registration14414,379126 -registration(r9907,c47,s2914).registration14414,379126 -registration(r9908,c168,s2914).registration14415,379157 -registration(r9908,c168,s2914).registration14415,379157 -registration(r9909,c20,s2915).registration14416,379189 -registration(r9909,c20,s2915).registration14416,379189 -registration(r9910,c35,s2915).registration14417,379220 -registration(r9910,c35,s2915).registration14417,379220 -registration(r9911,c82,s2915).registration14418,379251 -registration(r9911,c82,s2915).registration14418,379251 -registration(r9912,c252,s2916).registration14419,379282 -registration(r9912,c252,s2916).registration14419,379282 -registration(r9913,c0,s2916).registration14420,379314 -registration(r9913,c0,s2916).registration14420,379314 -registration(r9914,c20,s2916).registration14421,379344 -registration(r9914,c20,s2916).registration14421,379344 -registration(r9915,c45,s2917).registration14422,379375 -registration(r9915,c45,s2917).registration14422,379375 -registration(r9916,c255,s2917).registration14423,379406 -registration(r9916,c255,s2917).registration14423,379406 -registration(r9917,c100,s2917).registration14424,379438 -registration(r9917,c100,s2917).registration14424,379438 -registration(r9918,c122,s2917).registration14425,379470 -registration(r9918,c122,s2917).registration14425,379470 -registration(r9919,c97,s2918).registration14426,379502 -registration(r9919,c97,s2918).registration14426,379502 -registration(r9920,c30,s2918).registration14427,379533 -registration(r9920,c30,s2918).registration14427,379533 -registration(r9921,c245,s2918).registration14428,379564 -registration(r9921,c245,s2918).registration14428,379564 -registration(r9922,c18,s2919).registration14429,379596 -registration(r9922,c18,s2919).registration14429,379596 -registration(r9923,c49,s2919).registration14430,379627 -registration(r9923,c49,s2919).registration14430,379627 -registration(r9924,c103,s2919).registration14431,379658 -registration(r9924,c103,s2919).registration14431,379658 -registration(r9925,c9,s2920).registration14432,379690 -registration(r9925,c9,s2920).registration14432,379690 -registration(r9926,c218,s2920).registration14433,379720 -registration(r9926,c218,s2920).registration14433,379720 -registration(r9927,c27,s2920).registration14434,379752 -registration(r9927,c27,s2920).registration14434,379752 -registration(r9928,c47,s2921).registration14435,379783 -registration(r9928,c47,s2921).registration14435,379783 -registration(r9929,c159,s2921).registration14436,379814 -registration(r9929,c159,s2921).registration14436,379814 -registration(r9930,c183,s2921).registration14437,379846 -registration(r9930,c183,s2921).registration14437,379846 -registration(r9931,c180,s2922).registration14438,379878 -registration(r9931,c180,s2922).registration14438,379878 -registration(r9932,c240,s2922).registration14439,379910 -registration(r9932,c240,s2922).registration14439,379910 -registration(r9933,c73,s2922).registration14440,379942 -registration(r9933,c73,s2922).registration14440,379942 -registration(r9934,c40,s2922).registration14441,379973 -registration(r9934,c40,s2922).registration14441,379973 -registration(r9935,c40,s2923).registration14442,380004 -registration(r9935,c40,s2923).registration14442,380004 -registration(r9936,c141,s2923).registration14443,380035 -registration(r9936,c141,s2923).registration14443,380035 -registration(r9937,c146,s2923).registration14444,380067 -registration(r9937,c146,s2923).registration14444,380067 -registration(r9938,c243,s2924).registration14445,380099 -registration(r9938,c243,s2924).registration14445,380099 -registration(r9939,c191,s2924).registration14446,380131 -registration(r9939,c191,s2924).registration14446,380131 -registration(r9940,c115,s2924).registration14447,380163 -registration(r9940,c115,s2924).registration14447,380163 -registration(r9941,c134,s2925).registration14448,380195 -registration(r9941,c134,s2925).registration14448,380195 -registration(r9942,c165,s2925).registration14449,380227 -registration(r9942,c165,s2925).registration14449,380227 -registration(r9943,c184,s2925).registration14450,380259 -registration(r9943,c184,s2925).registration14450,380259 -registration(r9944,c23,s2925).registration14451,380291 -registration(r9944,c23,s2925).registration14451,380291 -registration(r9945,c12,s2926).registration14452,380322 -registration(r9945,c12,s2926).registration14452,380322 -registration(r9946,c51,s2926).registration14453,380353 -registration(r9946,c51,s2926).registration14453,380353 -registration(r9947,c63,s2926).registration14454,380384 -registration(r9947,c63,s2926).registration14454,380384 -registration(r9948,c221,s2927).registration14455,380415 -registration(r9948,c221,s2927).registration14455,380415 -registration(r9949,c41,s2927).registration14456,380447 -registration(r9949,c41,s2927).registration14456,380447 -registration(r9950,c81,s2927).registration14457,380478 -registration(r9950,c81,s2927).registration14457,380478 -registration(r9951,c222,s2927).registration14458,380509 -registration(r9951,c222,s2927).registration14458,380509 -registration(r9952,c93,s2928).registration14459,380541 -registration(r9952,c93,s2928).registration14459,380541 -registration(r9953,c6,s2928).registration14460,380572 -registration(r9953,c6,s2928).registration14460,380572 -registration(r9954,c108,s2928).registration14461,380602 -registration(r9954,c108,s2928).registration14461,380602 -registration(r9955,c248,s2928).registration14462,380634 -registration(r9955,c248,s2928).registration14462,380634 -registration(r9956,c102,s2929).registration14463,380666 -registration(r9956,c102,s2929).registration14463,380666 -registration(r9957,c209,s2929).registration14464,380698 -registration(r9957,c209,s2929).registration14464,380698 -registration(r9958,c120,s2929).registration14465,380730 -registration(r9958,c120,s2929).registration14465,380730 -registration(r9959,c236,s2930).registration14466,380762 -registration(r9959,c236,s2930).registration14466,380762 -registration(r9960,c204,s2930).registration14467,380794 -registration(r9960,c204,s2930).registration14467,380794 -registration(r9961,c225,s2930).registration14468,380826 -registration(r9961,c225,s2930).registration14468,380826 -registration(r9962,c153,s2931).registration14469,380858 -registration(r9962,c153,s2931).registration14469,380858 -registration(r9963,c165,s2931).registration14470,380890 -registration(r9963,c165,s2931).registration14470,380890 -registration(r9964,c137,s2931).registration14471,380922 -registration(r9964,c137,s2931).registration14471,380922 -registration(r9965,c189,s2932).registration14472,380954 -registration(r9965,c189,s2932).registration14472,380954 -registration(r9966,c152,s2932).registration14473,380986 -registration(r9966,c152,s2932).registration14473,380986 -registration(r9967,c36,s2932).registration14474,381018 -registration(r9967,c36,s2932).registration14474,381018 -registration(r9968,c118,s2932).registration14475,381049 -registration(r9968,c118,s2932).registration14475,381049 -registration(r9969,c113,s2933).registration14476,381081 -registration(r9969,c113,s2933).registration14476,381081 -registration(r9970,c139,s2933).registration14477,381113 -registration(r9970,c139,s2933).registration14477,381113 -registration(r9971,c44,s2933).registration14478,381145 -registration(r9971,c44,s2933).registration14478,381145 -registration(r9972,c51,s2934).registration14479,381176 -registration(r9972,c51,s2934).registration14479,381176 -registration(r9973,c29,s2934).registration14480,381207 -registration(r9973,c29,s2934).registration14480,381207 -registration(r9974,c188,s2934).registration14481,381238 -registration(r9974,c188,s2934).registration14481,381238 -registration(r9975,c35,s2934).registration14482,381270 -registration(r9975,c35,s2934).registration14482,381270 -registration(r9976,c51,s2935).registration14483,381301 -registration(r9976,c51,s2935).registration14483,381301 -registration(r9977,c142,s2935).registration14484,381332 -registration(r9977,c142,s2935).registration14484,381332 -registration(r9978,c124,s2935).registration14485,381364 -registration(r9978,c124,s2935).registration14485,381364 -registration(r9979,c74,s2936).registration14486,381396 -registration(r9979,c74,s2936).registration14486,381396 -registration(r9980,c166,s2936).registration14487,381427 -registration(r9980,c166,s2936).registration14487,381427 -registration(r9981,c238,s2936).registration14488,381459 -registration(r9981,c238,s2936).registration14488,381459 -registration(r9982,c147,s2937).registration14489,381491 -registration(r9982,c147,s2937).registration14489,381491 -registration(r9983,c71,s2937).registration14490,381523 -registration(r9983,c71,s2937).registration14490,381523 -registration(r9984,c155,s2937).registration14491,381554 -registration(r9984,c155,s2937).registration14491,381554 -registration(r9985,c51,s2937).registration14492,381586 -registration(r9985,c51,s2937).registration14492,381586 -registration(r9986,c106,s2938).registration14493,381617 -registration(r9986,c106,s2938).registration14493,381617 -registration(r9987,c36,s2938).registration14494,381649 -registration(r9987,c36,s2938).registration14494,381649 -registration(r9988,c172,s2938).registration14495,381680 -registration(r9988,c172,s2938).registration14495,381680 -registration(r9989,c54,s2939).registration14496,381712 -registration(r9989,c54,s2939).registration14496,381712 -registration(r9990,c230,s2939).registration14497,381743 -registration(r9990,c230,s2939).registration14497,381743 -registration(r9991,c72,s2939).registration14498,381775 -registration(r9991,c72,s2939).registration14498,381775 -registration(r9992,c25,s2939).registration14499,381806 -registration(r9992,c25,s2939).registration14499,381806 -registration(r9993,c218,s2940).registration14500,381837 -registration(r9993,c218,s2940).registration14500,381837 -registration(r9994,c124,s2940).registration14501,381869 -registration(r9994,c124,s2940).registration14501,381869 -registration(r9995,c123,s2940).registration14502,381901 -registration(r9995,c123,s2940).registration14502,381901 -registration(r9996,c10,s2941).registration14503,381933 -registration(r9996,c10,s2941).registration14503,381933 -registration(r9997,c121,s2941).registration14504,381964 -registration(r9997,c121,s2941).registration14504,381964 -registration(r9998,c117,s2941).registration14505,381996 -registration(r9998,c117,s2941).registration14505,381996 -registration(r9999,c27,s2942).registration14506,382028 -registration(r9999,c27,s2942).registration14506,382028 -registration(r10000,c116,s2942).registration14507,382059 -registration(r10000,c116,s2942).registration14507,382059 -registration(r10001,c129,s2942).registration14508,382092 -registration(r10001,c129,s2942).registration14508,382092 -registration(r10002,c200,s2942).registration14509,382125 -registration(r10002,c200,s2942).registration14509,382125 -registration(r10003,c247,s2943).registration14510,382158 -registration(r10003,c247,s2943).registration14510,382158 -registration(r10004,c76,s2943).registration14511,382191 -registration(r10004,c76,s2943).registration14511,382191 -registration(r10005,c203,s2943).registration14512,382223 -registration(r10005,c203,s2943).registration14512,382223 -registration(r10006,c182,s2943).registration14513,382256 -registration(r10006,c182,s2943).registration14513,382256 -registration(r10007,c215,s2944).registration14514,382289 -registration(r10007,c215,s2944).registration14514,382289 -registration(r10008,c112,s2944).registration14515,382322 -registration(r10008,c112,s2944).registration14515,382322 -registration(r10009,c134,s2944).registration14516,382355 -registration(r10009,c134,s2944).registration14516,382355 -registration(r10010,c85,s2944).registration14517,382388 -registration(r10010,c85,s2944).registration14517,382388 -registration(r10011,c43,s2945).registration14518,382420 -registration(r10011,c43,s2945).registration14518,382420 -registration(r10012,c112,s2945).registration14519,382452 -registration(r10012,c112,s2945).registration14519,382452 -registration(r10013,c53,s2945).registration14520,382485 -registration(r10013,c53,s2945).registration14520,382485 -registration(r10014,c237,s2945).registration14521,382517 -registration(r10014,c237,s2945).registration14521,382517 -registration(r10015,c2,s2946).registration14522,382550 -registration(r10015,c2,s2946).registration14522,382550 -registration(r10016,c157,s2946).registration14523,382581 -registration(r10016,c157,s2946).registration14523,382581 -registration(r10017,c188,s2946).registration14524,382614 -registration(r10017,c188,s2946).registration14524,382614 -registration(r10018,c65,s2946).registration14525,382647 -registration(r10018,c65,s2946).registration14525,382647 -registration(r10019,c63,s2947).registration14526,382679 -registration(r10019,c63,s2947).registration14526,382679 -registration(r10020,c46,s2947).registration14527,382711 -registration(r10020,c46,s2947).registration14527,382711 -registration(r10021,c181,s2947).registration14528,382743 -registration(r10021,c181,s2947).registration14528,382743 -registration(r10022,c188,s2948).registration14529,382776 -registration(r10022,c188,s2948).registration14529,382776 -registration(r10023,c134,s2948).registration14530,382809 -registration(r10023,c134,s2948).registration14530,382809 -registration(r10024,c128,s2948).registration14531,382842 -registration(r10024,c128,s2948).registration14531,382842 -registration(r10025,c82,s2948).registration14532,382875 -registration(r10025,c82,s2948).registration14532,382875 -registration(r10026,c192,s2949).registration14533,382907 -registration(r10026,c192,s2949).registration14533,382907 -registration(r10027,c68,s2949).registration14534,382940 -registration(r10027,c68,s2949).registration14534,382940 -registration(r10028,c132,s2949).registration14535,382972 -registration(r10028,c132,s2949).registration14535,382972 -registration(r10029,c203,s2949).registration14536,383005 -registration(r10029,c203,s2949).registration14536,383005 -registration(r10030,c136,s2950).registration14537,383038 -registration(r10030,c136,s2950).registration14537,383038 -registration(r10031,c154,s2950).registration14538,383071 -registration(r10031,c154,s2950).registration14538,383071 -registration(r10032,c189,s2950).registration14539,383104 -registration(r10032,c189,s2950).registration14539,383104 -registration(r10033,c194,s2951).registration14540,383137 -registration(r10033,c194,s2951).registration14540,383137 -registration(r10034,c229,s2951).registration14541,383170 -registration(r10034,c229,s2951).registration14541,383170 -registration(r10035,c128,s2951).registration14542,383203 -registration(r10035,c128,s2951).registration14542,383203 -registration(r10036,c61,s2952).registration14543,383236 -registration(r10036,c61,s2952).registration14543,383236 -registration(r10037,c66,s2952).registration14544,383268 -registration(r10037,c66,s2952).registration14544,383268 -registration(r10038,c149,s2952).registration14545,383300 -registration(r10038,c149,s2952).registration14545,383300 -registration(r10039,c195,s2953).registration14546,383333 -registration(r10039,c195,s2953).registration14546,383333 -registration(r10040,c51,s2953).registration14547,383366 -registration(r10040,c51,s2953).registration14547,383366 -registration(r10041,c65,s2953).registration14548,383398 -registration(r10041,c65,s2953).registration14548,383398 -registration(r10042,c200,s2954).registration14549,383430 -registration(r10042,c200,s2954).registration14549,383430 -registration(r10043,c207,s2954).registration14550,383463 -registration(r10043,c207,s2954).registration14550,383463 -registration(r10044,c249,s2954).registration14551,383496 -registration(r10044,c249,s2954).registration14551,383496 -registration(r10045,c122,s2954).registration14552,383529 -registration(r10045,c122,s2954).registration14552,383529 -registration(r10046,c96,s2955).registration14553,383562 -registration(r10046,c96,s2955).registration14553,383562 -registration(r10047,c0,s2955).registration14554,383594 -registration(r10047,c0,s2955).registration14554,383594 -registration(r10048,c235,s2955).registration14555,383625 -registration(r10048,c235,s2955).registration14555,383625 -registration(r10049,c146,s2955).registration14556,383658 -registration(r10049,c146,s2955).registration14556,383658 -registration(r10050,c198,s2956).registration14557,383691 -registration(r10050,c198,s2956).registration14557,383691 -registration(r10051,c79,s2956).registration14558,383724 -registration(r10051,c79,s2956).registration14558,383724 -registration(r10052,c108,s2956).registration14559,383756 -registration(r10052,c108,s2956).registration14559,383756 -registration(r10053,c81,s2956).registration14560,383789 -registration(r10053,c81,s2956).registration14560,383789 -registration(r10054,c23,s2957).registration14561,383821 -registration(r10054,c23,s2957).registration14561,383821 -registration(r10055,c216,s2957).registration14562,383853 -registration(r10055,c216,s2957).registration14562,383853 -registration(r10056,c211,s2957).registration14563,383886 -registration(r10056,c211,s2957).registration14563,383886 -registration(r10057,c104,s2957).registration14564,383919 -registration(r10057,c104,s2957).registration14564,383919 -registration(r10058,c211,s2958).registration14565,383952 -registration(r10058,c211,s2958).registration14565,383952 -registration(r10059,c154,s2958).registration14566,383985 -registration(r10059,c154,s2958).registration14566,383985 -registration(r10060,c43,s2958).registration14567,384018 -registration(r10060,c43,s2958).registration14567,384018 -registration(r10061,c220,s2958).registration14568,384050 -registration(r10061,c220,s2958).registration14568,384050 -registration(r10062,c247,s2959).registration14569,384083 -registration(r10062,c247,s2959).registration14569,384083 -registration(r10063,c164,s2959).registration14570,384116 -registration(r10063,c164,s2959).registration14570,384116 -registration(r10064,c71,s2959).registration14571,384149 -registration(r10064,c71,s2959).registration14571,384149 -registration(r10065,c196,s2960).registration14572,384181 -registration(r10065,c196,s2960).registration14572,384181 -registration(r10066,c170,s2960).registration14573,384214 -registration(r10066,c170,s2960).registration14573,384214 -registration(r10067,c33,s2960).registration14574,384247 -registration(r10067,c33,s2960).registration14574,384247 -registration(r10068,c77,s2961).registration14575,384279 -registration(r10068,c77,s2961).registration14575,384279 -registration(r10069,c88,s2961).registration14576,384311 -registration(r10069,c88,s2961).registration14576,384311 -registration(r10070,c10,s2961).registration14577,384343 -registration(r10070,c10,s2961).registration14577,384343 -registration(r10071,c168,s2961).registration14578,384375 -registration(r10071,c168,s2961).registration14578,384375 -registration(r10072,c169,s2962).registration14579,384408 -registration(r10072,c169,s2962).registration14579,384408 -registration(r10073,c186,s2962).registration14580,384441 -registration(r10073,c186,s2962).registration14580,384441 -registration(r10074,c200,s2962).registration14581,384474 -registration(r10074,c200,s2962).registration14581,384474 -registration(r10075,c155,s2963).registration14582,384507 -registration(r10075,c155,s2963).registration14582,384507 -registration(r10076,c21,s2963).registration14583,384540 -registration(r10076,c21,s2963).registration14583,384540 -registration(r10077,c173,s2963).registration14584,384572 -registration(r10077,c173,s2963).registration14584,384572 -registration(r10078,c233,s2963).registration14585,384605 -registration(r10078,c233,s2963).registration14585,384605 -registration(r10079,c48,s2964).registration14586,384638 -registration(r10079,c48,s2964).registration14586,384638 -registration(r10080,c240,s2964).registration14587,384670 -registration(r10080,c240,s2964).registration14587,384670 -registration(r10081,c36,s2964).registration14588,384703 -registration(r10081,c36,s2964).registration14588,384703 -registration(r10082,c201,s2965).registration14589,384735 -registration(r10082,c201,s2965).registration14589,384735 -registration(r10083,c241,s2965).registration14590,384768 -registration(r10083,c241,s2965).registration14590,384768 -registration(r10084,c216,s2965).registration14591,384801 -registration(r10084,c216,s2965).registration14591,384801 -registration(r10085,c131,s2966).registration14592,384834 -registration(r10085,c131,s2966).registration14592,384834 -registration(r10086,c172,s2966).registration14593,384867 -registration(r10086,c172,s2966).registration14593,384867 -registration(r10087,c122,s2966).registration14594,384900 -registration(r10087,c122,s2966).registration14594,384900 -registration(r10088,c249,s2966).registration14595,384933 -registration(r10088,c249,s2966).registration14595,384933 -registration(r10089,c36,s2967).registration14596,384966 -registration(r10089,c36,s2967).registration14596,384966 -registration(r10090,c12,s2967).registration14597,384998 -registration(r10090,c12,s2967).registration14597,384998 -registration(r10091,c123,s2967).registration14598,385030 -registration(r10091,c123,s2967).registration14598,385030 -registration(r10092,c52,s2968).registration14599,385063 -registration(r10092,c52,s2968).registration14599,385063 -registration(r10093,c100,s2968).registration14600,385095 -registration(r10093,c100,s2968).registration14600,385095 -registration(r10094,c120,s2968).registration14601,385128 -registration(r10094,c120,s2968).registration14601,385128 -registration(r10095,c141,s2969).registration14602,385161 -registration(r10095,c141,s2969).registration14602,385161 -registration(r10096,c115,s2969).registration14603,385194 -registration(r10096,c115,s2969).registration14603,385194 -registration(r10097,c3,s2969).registration14604,385227 -registration(r10097,c3,s2969).registration14604,385227 -registration(r10098,c51,s2970).registration14605,385258 -registration(r10098,c51,s2970).registration14605,385258 -registration(r10099,c104,s2970).registration14606,385290 -registration(r10099,c104,s2970).registration14606,385290 -registration(r10100,c226,s2970).registration14607,385323 -registration(r10100,c226,s2970).registration14607,385323 -registration(r10101,c171,s2971).registration14608,385356 -registration(r10101,c171,s2971).registration14608,385356 -registration(r10102,c207,s2971).registration14609,385389 -registration(r10102,c207,s2971).registration14609,385389 -registration(r10103,c40,s2971).registration14610,385422 -registration(r10103,c40,s2971).registration14610,385422 -registration(r10104,c172,s2972).registration14611,385454 -registration(r10104,c172,s2972).registration14611,385454 -registration(r10105,c226,s2972).registration14612,385487 -registration(r10105,c226,s2972).registration14612,385487 -registration(r10106,c0,s2972).registration14613,385520 -registration(r10106,c0,s2972).registration14613,385520 -registration(r10107,c211,s2973).registration14614,385551 -registration(r10107,c211,s2973).registration14614,385551 -registration(r10108,c236,s2973).registration14615,385584 -registration(r10108,c236,s2973).registration14615,385584 -registration(r10109,c231,s2973).registration14616,385617 -registration(r10109,c231,s2973).registration14616,385617 -registration(r10110,c159,s2974).registration14617,385650 -registration(r10110,c159,s2974).registration14617,385650 -registration(r10111,c129,s2974).registration14618,385683 -registration(r10111,c129,s2974).registration14618,385683 -registration(r10112,c235,s2974).registration14619,385716 -registration(r10112,c235,s2974).registration14619,385716 -registration(r10113,c72,s2974).registration14620,385749 -registration(r10113,c72,s2974).registration14620,385749 -registration(r10114,c164,s2975).registration14621,385781 -registration(r10114,c164,s2975).registration14621,385781 -registration(r10115,c189,s2975).registration14622,385814 -registration(r10115,c189,s2975).registration14622,385814 -registration(r10116,c238,s2975).registration14623,385847 -registration(r10116,c238,s2975).registration14623,385847 -registration(r10117,c120,s2975).registration14624,385880 -registration(r10117,c120,s2975).registration14624,385880 -registration(r10118,c130,s2975).registration14625,385913 -registration(r10118,c130,s2975).registration14625,385913 -registration(r10119,c92,s2976).registration14626,385946 -registration(r10119,c92,s2976).registration14626,385946 -registration(r10120,c255,s2976).registration14627,385978 -registration(r10120,c255,s2976).registration14627,385978 -registration(r10121,c211,s2976).registration14628,386011 -registration(r10121,c211,s2976).registration14628,386011 -registration(r10122,c205,s2976).registration14629,386044 -registration(r10122,c205,s2976).registration14629,386044 -registration(r10123,c62,s2977).registration14630,386077 -registration(r10123,c62,s2977).registration14630,386077 -registration(r10124,c85,s2977).registration14631,386109 -registration(r10124,c85,s2977).registration14631,386109 -registration(r10125,c170,s2977).registration14632,386141 -registration(r10125,c170,s2977).registration14632,386141 -registration(r10126,c86,s2977).registration14633,386174 -registration(r10126,c86,s2977).registration14633,386174 -registration(r10127,c252,s2978).registration14634,386206 -registration(r10127,c252,s2978).registration14634,386206 -registration(r10128,c41,s2978).registration14635,386239 -registration(r10128,c41,s2978).registration14635,386239 -registration(r10129,c93,s2978).registration14636,386271 -registration(r10129,c93,s2978).registration14636,386271 -registration(r10130,c228,s2979).registration14637,386303 -registration(r10130,c228,s2979).registration14637,386303 -registration(r10131,c131,s2979).registration14638,386336 -registration(r10131,c131,s2979).registration14638,386336 -registration(r10132,c249,s2979).registration14639,386369 -registration(r10132,c249,s2979).registration14639,386369 -registration(r10133,c66,s2980).registration14640,386402 -registration(r10133,c66,s2980).registration14640,386402 -registration(r10134,c186,s2980).registration14641,386434 -registration(r10134,c186,s2980).registration14641,386434 -registration(r10135,c63,s2980).registration14642,386467 -registration(r10135,c63,s2980).registration14642,386467 -registration(r10136,c91,s2981).registration14643,386499 -registration(r10136,c91,s2981).registration14643,386499 -registration(r10137,c122,s2981).registration14644,386531 -registration(r10137,c122,s2981).registration14644,386531 -registration(r10138,c203,s2981).registration14645,386564 -registration(r10138,c203,s2981).registration14645,386564 -registration(r10139,c202,s2982).registration14646,386597 -registration(r10139,c202,s2982).registration14646,386597 -registration(r10140,c179,s2982).registration14647,386630 -registration(r10140,c179,s2982).registration14647,386630 -registration(r10141,c222,s2982).registration14648,386663 -registration(r10141,c222,s2982).registration14648,386663 -registration(r10142,c28,s2983).registration14649,386696 -registration(r10142,c28,s2983).registration14649,386696 -registration(r10143,c238,s2983).registration14650,386728 -registration(r10143,c238,s2983).registration14650,386728 -registration(r10144,c90,s2983).registration14651,386761 -registration(r10144,c90,s2983).registration14651,386761 -registration(r10145,c202,s2984).registration14652,386793 -registration(r10145,c202,s2984).registration14652,386793 -registration(r10146,c57,s2984).registration14653,386826 -registration(r10146,c57,s2984).registration14653,386826 -registration(r10147,c109,s2984).registration14654,386858 -registration(r10147,c109,s2984).registration14654,386858 -registration(r10148,c30,s2984).registration14655,386891 -registration(r10148,c30,s2984).registration14655,386891 -registration(r10149,c12,s2985).registration14656,386923 -registration(r10149,c12,s2985).registration14656,386923 -registration(r10150,c163,s2985).registration14657,386955 -registration(r10150,c163,s2985).registration14657,386955 -registration(r10151,c222,s2985).registration14658,386988 -registration(r10151,c222,s2985).registration14658,386988 -registration(r10152,c32,s2986).registration14659,387021 -registration(r10152,c32,s2986).registration14659,387021 -registration(r10153,c151,s2986).registration14660,387053 -registration(r10153,c151,s2986).registration14660,387053 -registration(r10154,c126,s2986).registration14661,387086 -registration(r10154,c126,s2986).registration14661,387086 -registration(r10155,c63,s2986).registration14662,387119 -registration(r10155,c63,s2986).registration14662,387119 -registration(r10156,c154,s2987).registration14663,387151 -registration(r10156,c154,s2987).registration14663,387151 -registration(r10157,c10,s2987).registration14664,387184 -registration(r10157,c10,s2987).registration14664,387184 -registration(r10158,c187,s2987).registration14665,387216 -registration(r10158,c187,s2987).registration14665,387216 -registration(r10159,c110,s2988).registration14666,387249 -registration(r10159,c110,s2988).registration14666,387249 -registration(r10160,c77,s2988).registration14667,387282 -registration(r10160,c77,s2988).registration14667,387282 -registration(r10161,c109,s2988).registration14668,387314 -registration(r10161,c109,s2988).registration14668,387314 -registration(r10162,c106,s2988).registration14669,387347 -registration(r10162,c106,s2988).registration14669,387347 -registration(r10163,c121,s2989).registration14670,387380 -registration(r10163,c121,s2989).registration14670,387380 -registration(r10164,c168,s2989).registration14671,387413 -registration(r10164,c168,s2989).registration14671,387413 -registration(r10165,c159,s2989).registration14672,387446 -registration(r10165,c159,s2989).registration14672,387446 -registration(r10166,c12,s2990).registration14673,387479 -registration(r10166,c12,s2990).registration14673,387479 -registration(r10167,c108,s2990).registration14674,387511 -registration(r10167,c108,s2990).registration14674,387511 -registration(r10168,c0,s2990).registration14675,387544 -registration(r10168,c0,s2990).registration14675,387544 -registration(r10169,c163,s2991).registration14676,387575 -registration(r10169,c163,s2991).registration14676,387575 -registration(r10170,c206,s2991).registration14677,387608 -registration(r10170,c206,s2991).registration14677,387608 -registration(r10171,c84,s2991).registration14678,387641 -registration(r10171,c84,s2991).registration14678,387641 -registration(r10172,c235,s2992).registration14679,387673 -registration(r10172,c235,s2992).registration14679,387673 -registration(r10173,c96,s2992).registration14680,387706 -registration(r10173,c96,s2992).registration14680,387706 -registration(r10174,c15,s2992).registration14681,387738 -registration(r10174,c15,s2992).registration14681,387738 -registration(r10175,c60,s2992).registration14682,387770 -registration(r10175,c60,s2992).registration14682,387770 -registration(r10176,c53,s2993).registration14683,387802 -registration(r10176,c53,s2993).registration14683,387802 -registration(r10177,c246,s2993).registration14684,387834 -registration(r10177,c246,s2993).registration14684,387834 -registration(r10178,c25,s2993).registration14685,387867 -registration(r10178,c25,s2993).registration14685,387867 -registration(r10179,c101,s2993).registration14686,387899 -registration(r10179,c101,s2993).registration14686,387899 -registration(r10180,c119,s2994).registration14687,387932 -registration(r10180,c119,s2994).registration14687,387932 -registration(r10181,c132,s2994).registration14688,387965 -registration(r10181,c132,s2994).registration14688,387965 -registration(r10182,c210,s2994).registration14689,387998 -registration(r10182,c210,s2994).registration14689,387998 -registration(r10183,c121,s2995).registration14690,388031 -registration(r10183,c121,s2995).registration14690,388031 -registration(r10184,c114,s2995).registration14691,388064 -registration(r10184,c114,s2995).registration14691,388064 -registration(r10185,c65,s2995).registration14692,388097 -registration(r10185,c65,s2995).registration14692,388097 -registration(r10186,c173,s2996).registration14693,388129 -registration(r10186,c173,s2996).registration14693,388129 -registration(r10187,c91,s2996).registration14694,388162 -registration(r10187,c91,s2996).registration14694,388162 -registration(r10188,c112,s2996).registration14695,388194 -registration(r10188,c112,s2996).registration14695,388194 -registration(r10189,c255,s2996).registration14696,388227 -registration(r10189,c255,s2996).registration14696,388227 -registration(r10190,c123,s2997).registration14697,388260 -registration(r10190,c123,s2997).registration14697,388260 -registration(r10191,c226,s2997).registration14698,388293 -registration(r10191,c226,s2997).registration14698,388293 -registration(r10192,c45,s2997).registration14699,388326 -registration(r10192,c45,s2997).registration14699,388326 -registration(r10193,c61,s2998).registration14700,388358 -registration(r10193,c61,s2998).registration14700,388358 -registration(r10194,c146,s2998).registration14701,388390 -registration(r10194,c146,s2998).registration14701,388390 -registration(r10195,c127,s2998).registration14702,388423 -registration(r10195,c127,s2998).registration14702,388423 -registration(r10196,c117,s2999).registration14703,388456 -registration(r10196,c117,s2999).registration14703,388456 -registration(r10197,c0,s2999).registration14704,388489 -registration(r10197,c0,s2999).registration14704,388489 -registration(r10198,c209,s2999).registration14705,388520 -registration(r10198,c209,s2999).registration14705,388520 -registration(r10199,c72,s3000).registration14706,388553 -registration(r10199,c72,s3000).registration14706,388553 -registration(r10200,c95,s3000).registration14707,388585 -registration(r10200,c95,s3000).registration14707,388585 -registration(r10201,c57,s3000).registration14708,388617 -registration(r10201,c57,s3000).registration14708,388617 -registration(r10202,c92,s3000).registration14709,388649 -registration(r10202,c92,s3000).registration14709,388649 -registration(r10203,c143,s3001).registration14710,388681 -registration(r10203,c143,s3001).registration14710,388681 -registration(r10204,c158,s3001).registration14711,388714 -registration(r10204,c158,s3001).registration14711,388714 -registration(r10205,c14,s3001).registration14712,388747 -registration(r10205,c14,s3001).registration14712,388747 -registration(r10206,c75,s3001).registration14713,388779 -registration(r10206,c75,s3001).registration14713,388779 -registration(r10207,c127,s3002).registration14714,388811 -registration(r10207,c127,s3002).registration14714,388811 -registration(r10208,c113,s3002).registration14715,388844 -registration(r10208,c113,s3002).registration14715,388844 -registration(r10209,c105,s3002).registration14716,388877 -registration(r10209,c105,s3002).registration14716,388877 -registration(r10210,c76,s3003).registration14717,388910 -registration(r10210,c76,s3003).registration14717,388910 -registration(r10211,c236,s3003).registration14718,388942 -registration(r10211,c236,s3003).registration14718,388942 -registration(r10212,c84,s3003).registration14719,388975 -registration(r10212,c84,s3003).registration14719,388975 -registration(r10213,c229,s3003).registration14720,389007 -registration(r10213,c229,s3003).registration14720,389007 -registration(r10214,c15,s3004).registration14721,389040 -registration(r10214,c15,s3004).registration14721,389040 -registration(r10215,c17,s3004).registration14722,389072 -registration(r10215,c17,s3004).registration14722,389072 -registration(r10216,c174,s3004).registration14723,389104 -registration(r10216,c174,s3004).registration14723,389104 -registration(r10217,c127,s3004).registration14724,389137 -registration(r10217,c127,s3004).registration14724,389137 -registration(r10218,c95,s3005).registration14725,389170 -registration(r10218,c95,s3005).registration14725,389170 -registration(r10219,c121,s3005).registration14726,389202 -registration(r10219,c121,s3005).registration14726,389202 -registration(r10220,c200,s3005).registration14727,389235 -registration(r10220,c200,s3005).registration14727,389235 -registration(r10221,c228,s3006).registration14728,389268 -registration(r10221,c228,s3006).registration14728,389268 -registration(r10222,c26,s3006).registration14729,389301 -registration(r10222,c26,s3006).registration14729,389301 -registration(r10223,c102,s3006).registration14730,389333 -registration(r10223,c102,s3006).registration14730,389333 -registration(r10224,c116,s3007).registration14731,389366 -registration(r10224,c116,s3007).registration14731,389366 -registration(r10225,c131,s3007).registration14732,389399 -registration(r10225,c131,s3007).registration14732,389399 -registration(r10226,c3,s3007).registration14733,389432 -registration(r10226,c3,s3007).registration14733,389432 -registration(r10227,c118,s3007).registration14734,389463 -registration(r10227,c118,s3007).registration14734,389463 -registration(r10228,c74,s3008).registration14735,389496 -registration(r10228,c74,s3008).registration14735,389496 -registration(r10229,c193,s3008).registration14736,389528 -registration(r10229,c193,s3008).registration14736,389528 -registration(r10230,c99,s3008).registration14737,389561 -registration(r10230,c99,s3008).registration14737,389561 -registration(r10231,c183,s3009).registration14738,389593 -registration(r10231,c183,s3009).registration14738,389593 -registration(r10232,c38,s3009).registration14739,389626 -registration(r10232,c38,s3009).registration14739,389626 -registration(r10233,c216,s3009).registration14740,389658 -registration(r10233,c216,s3009).registration14740,389658 -registration(r10234,c232,s3010).registration14741,389691 -registration(r10234,c232,s3010).registration14741,389691 -registration(r10235,c75,s3010).registration14742,389724 -registration(r10235,c75,s3010).registration14742,389724 -registration(r10236,c187,s3010).registration14743,389756 -registration(r10236,c187,s3010).registration14743,389756 -registration(r10237,c27,s3011).registration14744,389789 -registration(r10237,c27,s3011).registration14744,389789 -registration(r10238,c115,s3011).registration14745,389821 -registration(r10238,c115,s3011).registration14745,389821 -registration(r10239,c147,s3011).registration14746,389854 -registration(r10239,c147,s3011).registration14746,389854 -registration(r10240,c120,s3011).registration14747,389887 -registration(r10240,c120,s3011).registration14747,389887 -registration(r10241,c243,s3012).registration14748,389920 -registration(r10241,c243,s3012).registration14748,389920 -registration(r10242,c138,s3012).registration14749,389953 -registration(r10242,c138,s3012).registration14749,389953 -registration(r10243,c234,s3012).registration14750,389986 -registration(r10243,c234,s3012).registration14750,389986 -registration(r10244,c109,s3012).registration14751,390019 -registration(r10244,c109,s3012).registration14751,390019 -registration(r10245,c175,s3013).registration14752,390052 -registration(r10245,c175,s3013).registration14752,390052 -registration(r10246,c223,s3013).registration14753,390085 -registration(r10246,c223,s3013).registration14753,390085 -registration(r10247,c112,s3013).registration14754,390118 -registration(r10247,c112,s3013).registration14754,390118 -registration(r10248,c41,s3013).registration14755,390151 -registration(r10248,c41,s3013).registration14755,390151 -registration(r10249,c135,s3013).registration14756,390183 -registration(r10249,c135,s3013).registration14756,390183 -registration(r10250,c192,s3014).registration14757,390216 -registration(r10250,c192,s3014).registration14757,390216 -registration(r10251,c224,s3014).registration14758,390249 -registration(r10251,c224,s3014).registration14758,390249 -registration(r10252,c62,s3014).registration14759,390282 -registration(r10252,c62,s3014).registration14759,390282 -registration(r10253,c221,s3015).registration14760,390314 -registration(r10253,c221,s3015).registration14760,390314 -registration(r10254,c29,s3015).registration14761,390347 -registration(r10254,c29,s3015).registration14761,390347 -registration(r10255,c160,s3015).registration14762,390379 -registration(r10255,c160,s3015).registration14762,390379 -registration(r10256,c216,s3015).registration14763,390412 -registration(r10256,c216,s3015).registration14763,390412 -registration(r10257,c244,s3016).registration14764,390445 -registration(r10257,c244,s3016).registration14764,390445 -registration(r10258,c243,s3016).registration14765,390478 -registration(r10258,c243,s3016).registration14765,390478 -registration(r10259,c12,s3016).registration14766,390511 -registration(r10259,c12,s3016).registration14766,390511 -registration(r10260,c49,s3017).registration14767,390543 -registration(r10260,c49,s3017).registration14767,390543 -registration(r10261,c254,s3017).registration14768,390575 -registration(r10261,c254,s3017).registration14768,390575 -registration(r10262,c193,s3017).registration14769,390608 -registration(r10262,c193,s3017).registration14769,390608 -registration(r10263,c110,s3018).registration14770,390641 -registration(r10263,c110,s3018).registration14770,390641 -registration(r10264,c189,s3018).registration14771,390674 -registration(r10264,c189,s3018).registration14771,390674 -registration(r10265,c88,s3018).registration14772,390707 -registration(r10265,c88,s3018).registration14772,390707 -registration(r10266,c156,s3018).registration14773,390739 -registration(r10266,c156,s3018).registration14773,390739 -registration(r10267,c66,s3019).registration14774,390772 -registration(r10267,c66,s3019).registration14774,390772 -registration(r10268,c198,s3019).registration14775,390804 -registration(r10268,c198,s3019).registration14775,390804 -registration(r10269,c253,s3019).registration14776,390837 -registration(r10269,c253,s3019).registration14776,390837 -registration(r10270,c221,s3020).registration14777,390870 -registration(r10270,c221,s3020).registration14777,390870 -registration(r10271,c9,s3020).registration14778,390903 -registration(r10271,c9,s3020).registration14778,390903 -registration(r10272,c110,s3020).registration14779,390934 -registration(r10272,c110,s3020).registration14779,390934 -registration(r10273,c139,s3021).registration14780,390967 -registration(r10273,c139,s3021).registration14780,390967 -registration(r10274,c53,s3021).registration14781,391000 -registration(r10274,c53,s3021).registration14781,391000 -registration(r10275,c15,s3021).registration14782,391032 -registration(r10275,c15,s3021).registration14782,391032 -registration(r10276,c4,s3022).registration14783,391064 -registration(r10276,c4,s3022).registration14783,391064 -registration(r10277,c90,s3022).registration14784,391095 -registration(r10277,c90,s3022).registration14784,391095 -registration(r10278,c221,s3022).registration14785,391127 -registration(r10278,c221,s3022).registration14785,391127 -registration(r10279,c15,s3022).registration14786,391160 -registration(r10279,c15,s3022).registration14786,391160 -registration(r10280,c138,s3023).registration14787,391192 -registration(r10280,c138,s3023).registration14787,391192 -registration(r10281,c235,s3023).registration14788,391225 -registration(r10281,c235,s3023).registration14788,391225 -registration(r10282,c202,s3023).registration14789,391258 -registration(r10282,c202,s3023).registration14789,391258 -registration(r10283,c136,s3024).registration14790,391291 -registration(r10283,c136,s3024).registration14790,391291 -registration(r10284,c206,s3024).registration14791,391324 -registration(r10284,c206,s3024).registration14791,391324 -registration(r10285,c117,s3024).registration14792,391357 -registration(r10285,c117,s3024).registration14792,391357 -registration(r10286,c153,s3024).registration14793,391390 -registration(r10286,c153,s3024).registration14793,391390 -registration(r10287,c235,s3025).registration14794,391423 -registration(r10287,c235,s3025).registration14794,391423 -registration(r10288,c149,s3025).registration14795,391456 -registration(r10288,c149,s3025).registration14795,391456 -registration(r10289,c130,s3025).registration14796,391489 -registration(r10289,c130,s3025).registration14796,391489 -registration(r10290,c140,s3026).registration14797,391522 -registration(r10290,c140,s3026).registration14797,391522 -registration(r10291,c224,s3026).registration14798,391555 -registration(r10291,c224,s3026).registration14798,391555 -registration(r10292,c8,s3026).registration14799,391588 -registration(r10292,c8,s3026).registration14799,391588 -registration(r10293,c62,s3027).registration14800,391619 -registration(r10293,c62,s3027).registration14800,391619 -registration(r10294,c131,s3027).registration14801,391651 -registration(r10294,c131,s3027).registration14801,391651 -registration(r10295,c210,s3027).registration14802,391684 -registration(r10295,c210,s3027).registration14802,391684 -registration(r10296,c135,s3027).registration14803,391717 -registration(r10296,c135,s3027).registration14803,391717 -registration(r10297,c235,s3027).registration14804,391750 -registration(r10297,c235,s3027).registration14804,391750 -registration(r10298,c19,s3028).registration14805,391783 -registration(r10298,c19,s3028).registration14805,391783 -registration(r10299,c85,s3028).registration14806,391815 -registration(r10299,c85,s3028).registration14806,391815 -registration(r10300,c249,s3028).registration14807,391847 -registration(r10300,c249,s3028).registration14807,391847 -registration(r10301,c196,s3029).registration14808,391880 -registration(r10301,c196,s3029).registration14808,391880 -registration(r10302,c18,s3029).registration14809,391913 -registration(r10302,c18,s3029).registration14809,391913 -registration(r10303,c152,s3029).registration14810,391945 -registration(r10303,c152,s3029).registration14810,391945 -registration(r10304,c15,s3030).registration14811,391978 -registration(r10304,c15,s3030).registration14811,391978 -registration(r10305,c114,s3030).registration14812,392010 -registration(r10305,c114,s3030).registration14812,392010 -registration(r10306,c122,s3030).registration14813,392043 -registration(r10306,c122,s3030).registration14813,392043 -registration(r10307,c15,s3031).registration14814,392076 -registration(r10307,c15,s3031).registration14814,392076 -registration(r10308,c76,s3031).registration14815,392108 -registration(r10308,c76,s3031).registration14815,392108 -registration(r10309,c208,s3031).registration14816,392140 -registration(r10309,c208,s3031).registration14816,392140 -registration(r10310,c177,s3032).registration14817,392173 -registration(r10310,c177,s3032).registration14817,392173 -registration(r10311,c137,s3032).registration14818,392206 -registration(r10311,c137,s3032).registration14818,392206 -registration(r10312,c75,s3032).registration14819,392239 -registration(r10312,c75,s3032).registration14819,392239 -registration(r10313,c201,s3032).registration14820,392271 -registration(r10313,c201,s3032).registration14820,392271 -registration(r10314,c239,s3033).registration14821,392304 -registration(r10314,c239,s3033).registration14821,392304 -registration(r10315,c213,s3033).registration14822,392337 -registration(r10315,c213,s3033).registration14822,392337 -registration(r10316,c86,s3033).registration14823,392370 -registration(r10316,c86,s3033).registration14823,392370 -registration(r10317,c192,s3033).registration14824,392402 -registration(r10317,c192,s3033).registration14824,392402 -registration(r10318,c111,s3034).registration14825,392435 -registration(r10318,c111,s3034).registration14825,392435 -registration(r10319,c187,s3034).registration14826,392468 -registration(r10319,c187,s3034).registration14826,392468 -registration(r10320,c7,s3034).registration14827,392501 -registration(r10320,c7,s3034).registration14827,392501 -registration(r10321,c25,s3035).registration14828,392532 -registration(r10321,c25,s3035).registration14828,392532 -registration(r10322,c72,s3035).registration14829,392564 -registration(r10322,c72,s3035).registration14829,392564 -registration(r10323,c205,s3035).registration14830,392596 -registration(r10323,c205,s3035).registration14830,392596 -registration(r10324,c63,s3036).registration14831,392629 -registration(r10324,c63,s3036).registration14831,392629 -registration(r10325,c115,s3036).registration14832,392661 -registration(r10325,c115,s3036).registration14832,392661 -registration(r10326,c32,s3036).registration14833,392694 -registration(r10326,c32,s3036).registration14833,392694 -registration(r10327,c108,s3037).registration14834,392726 -registration(r10327,c108,s3037).registration14834,392726 -registration(r10328,c109,s3037).registration14835,392759 -registration(r10328,c109,s3037).registration14835,392759 -registration(r10329,c4,s3037).registration14836,392792 -registration(r10329,c4,s3037).registration14836,392792 -registration(r10330,c144,s3037).registration14837,392823 -registration(r10330,c144,s3037).registration14837,392823 -registration(r10331,c145,s3038).registration14838,392856 -registration(r10331,c145,s3038).registration14838,392856 -registration(r10332,c59,s3038).registration14839,392889 -registration(r10332,c59,s3038).registration14839,392889 -registration(r10333,c87,s3038).registration14840,392921 -registration(r10333,c87,s3038).registration14840,392921 -registration(r10334,c45,s3038).registration14841,392953 -registration(r10334,c45,s3038).registration14841,392953 -registration(r10335,c183,s3039).registration14842,392985 -registration(r10335,c183,s3039).registration14842,392985 -registration(r10336,c70,s3039).registration14843,393018 -registration(r10336,c70,s3039).registration14843,393018 -registration(r10337,c239,s3039).registration14844,393050 -registration(r10337,c239,s3039).registration14844,393050 -registration(r10338,c180,s3039).registration14845,393083 -registration(r10338,c180,s3039).registration14845,393083 -registration(r10339,c40,s3040).registration14846,393116 -registration(r10339,c40,s3040).registration14846,393116 -registration(r10340,c101,s3040).registration14847,393148 -registration(r10340,c101,s3040).registration14847,393148 -registration(r10341,c42,s3040).registration14848,393181 -registration(r10341,c42,s3040).registration14848,393181 -registration(r10342,c246,s3041).registration14849,393213 -registration(r10342,c246,s3041).registration14849,393213 -registration(r10343,c59,s3041).registration14850,393246 -registration(r10343,c59,s3041).registration14850,393246 -registration(r10344,c4,s3041).registration14851,393278 -registration(r10344,c4,s3041).registration14851,393278 -registration(r10345,c37,s3042).registration14852,393309 -registration(r10345,c37,s3042).registration14852,393309 -registration(r10346,c210,s3042).registration14853,393341 -registration(r10346,c210,s3042).registration14853,393341 -registration(r10347,c49,s3042).registration14854,393374 -registration(r10347,c49,s3042).registration14854,393374 -registration(r10348,c53,s3043).registration14855,393406 -registration(r10348,c53,s3043).registration14855,393406 -registration(r10349,c215,s3043).registration14856,393438 -registration(r10349,c215,s3043).registration14856,393438 -registration(r10350,c94,s3043).registration14857,393471 -registration(r10350,c94,s3043).registration14857,393471 -registration(r10351,c154,s3044).registration14858,393503 -registration(r10351,c154,s3044).registration14858,393503 -registration(r10352,c27,s3044).registration14859,393536 -registration(r10352,c27,s3044).registration14859,393536 -registration(r10353,c202,s3044).registration14860,393568 -registration(r10353,c202,s3044).registration14860,393568 -registration(r10354,c129,s3045).registration14861,393601 -registration(r10354,c129,s3045).registration14861,393601 -registration(r10355,c11,s3045).registration14862,393634 -registration(r10355,c11,s3045).registration14862,393634 -registration(r10356,c57,s3045).registration14863,393666 -registration(r10356,c57,s3045).registration14863,393666 -registration(r10357,c227,s3046).registration14864,393698 -registration(r10357,c227,s3046).registration14864,393698 -registration(r10358,c202,s3046).registration14865,393731 -registration(r10358,c202,s3046).registration14865,393731 -registration(r10359,c38,s3046).registration14866,393764 -registration(r10359,c38,s3046).registration14866,393764 -registration(r10360,c12,s3046).registration14867,393796 -registration(r10360,c12,s3046).registration14867,393796 -registration(r10361,c4,s3047).registration14868,393828 -registration(r10361,c4,s3047).registration14868,393828 -registration(r10362,c73,s3047).registration14869,393859 -registration(r10362,c73,s3047).registration14869,393859 -registration(r10363,c217,s3047).registration14870,393891 -registration(r10363,c217,s3047).registration14870,393891 -registration(r10364,c254,s3048).registration14871,393924 -registration(r10364,c254,s3048).registration14871,393924 -registration(r10365,c12,s3048).registration14872,393957 -registration(r10365,c12,s3048).registration14872,393957 -registration(r10366,c41,s3048).registration14873,393989 -registration(r10366,c41,s3048).registration14873,393989 -registration(r10367,c94,s3049).registration14874,394021 -registration(r10367,c94,s3049).registration14874,394021 -registration(r10368,c105,s3049).registration14875,394053 -registration(r10368,c105,s3049).registration14875,394053 -registration(r10369,c171,s3049).registration14876,394086 -registration(r10369,c171,s3049).registration14876,394086 -registration(r10370,c210,s3049).registration14877,394119 -registration(r10370,c210,s3049).registration14877,394119 -registration(r10371,c62,s3050).registration14878,394152 -registration(r10371,c62,s3050).registration14878,394152 -registration(r10372,c156,s3050).registration14879,394184 -registration(r10372,c156,s3050).registration14879,394184 -registration(r10373,c10,s3050).registration14880,394217 -registration(r10373,c10,s3050).registration14880,394217 -registration(r10374,c22,s3050).registration14881,394249 -registration(r10374,c22,s3050).registration14881,394249 -registration(r10375,c194,s3051).registration14882,394281 -registration(r10375,c194,s3051).registration14882,394281 -registration(r10376,c190,s3051).registration14883,394314 -registration(r10376,c190,s3051).registration14883,394314 -registration(r10377,c216,s3051).registration14884,394347 -registration(r10377,c216,s3051).registration14884,394347 -registration(r10378,c254,s3052).registration14885,394380 -registration(r10378,c254,s3052).registration14885,394380 -registration(r10379,c179,s3052).registration14886,394413 -registration(r10379,c179,s3052).registration14886,394413 -registration(r10380,c150,s3052).registration14887,394446 -registration(r10380,c150,s3052).registration14887,394446 -registration(r10381,c224,s3053).registration14888,394479 -registration(r10381,c224,s3053).registration14888,394479 -registration(r10382,c171,s3053).registration14889,394512 -registration(r10382,c171,s3053).registration14889,394512 -registration(r10383,c242,s3053).registration14890,394545 -registration(r10383,c242,s3053).registration14890,394545 -registration(r10384,c255,s3054).registration14891,394578 -registration(r10384,c255,s3054).registration14891,394578 -registration(r10385,c1,s3054).registration14892,394611 -registration(r10385,c1,s3054).registration14892,394611 -registration(r10386,c61,s3054).registration14893,394642 -registration(r10386,c61,s3054).registration14893,394642 -registration(r10387,c165,s3055).registration14894,394674 -registration(r10387,c165,s3055).registration14894,394674 -registration(r10388,c247,s3055).registration14895,394707 -registration(r10388,c247,s3055).registration14895,394707 -registration(r10389,c130,s3055).registration14896,394740 -registration(r10389,c130,s3055).registration14896,394740 -registration(r10390,c194,s3056).registration14897,394773 -registration(r10390,c194,s3056).registration14897,394773 -registration(r10391,c19,s3056).registration14898,394806 -registration(r10391,c19,s3056).registration14898,394806 -registration(r10392,c71,s3056).registration14899,394838 -registration(r10392,c71,s3056).registration14899,394838 -registration(r10393,c93,s3056).registration14900,394870 -registration(r10393,c93,s3056).registration14900,394870 -registration(r10394,c12,s3057).registration14901,394902 -registration(r10394,c12,s3057).registration14901,394902 -registration(r10395,c240,s3057).registration14902,394934 -registration(r10395,c240,s3057).registration14902,394934 -registration(r10396,c53,s3057).registration14903,394967 -registration(r10396,c53,s3057).registration14903,394967 -registration(r10397,c51,s3058).registration14904,394999 -registration(r10397,c51,s3058).registration14904,394999 -registration(r10398,c103,s3058).registration14905,395031 -registration(r10398,c103,s3058).registration14905,395031 -registration(r10399,c19,s3058).registration14906,395064 -registration(r10399,c19,s3058).registration14906,395064 -registration(r10400,c31,s3058).registration14907,395096 -registration(r10400,c31,s3058).registration14907,395096 -registration(r10401,c178,s3059).registration14908,395128 -registration(r10401,c178,s3059).registration14908,395128 -registration(r10402,c17,s3059).registration14909,395161 -registration(r10402,c17,s3059).registration14909,395161 -registration(r10403,c205,s3059).registration14910,395193 -registration(r10403,c205,s3059).registration14910,395193 -registration(r10404,c207,s3059).registration14911,395226 -registration(r10404,c207,s3059).registration14911,395226 -registration(r10405,c154,s3060).registration14912,395259 -registration(r10405,c154,s3060).registration14912,395259 -registration(r10406,c93,s3060).registration14913,395292 -registration(r10406,c93,s3060).registration14913,395292 -registration(r10407,c46,s3060).registration14914,395324 -registration(r10407,c46,s3060).registration14914,395324 -registration(r10408,c178,s3061).registration14915,395356 -registration(r10408,c178,s3061).registration14915,395356 -registration(r10409,c184,s3061).registration14916,395389 -registration(r10409,c184,s3061).registration14916,395389 -registration(r10410,c144,s3061).registration14917,395422 -registration(r10410,c144,s3061).registration14917,395422 -registration(r10411,c216,s3062).registration14918,395455 -registration(r10411,c216,s3062).registration14918,395455 -registration(r10412,c190,s3062).registration14919,395488 -registration(r10412,c190,s3062).registration14919,395488 -registration(r10413,c253,s3062).registration14920,395521 -registration(r10413,c253,s3062).registration14920,395521 -registration(r10414,c238,s3063).registration14921,395554 -registration(r10414,c238,s3063).registration14921,395554 -registration(r10415,c104,s3063).registration14922,395587 -registration(r10415,c104,s3063).registration14922,395587 -registration(r10416,c126,s3063).registration14923,395620 -registration(r10416,c126,s3063).registration14923,395620 -registration(r10417,c229,s3064).registration14924,395653 -registration(r10417,c229,s3064).registration14924,395653 -registration(r10418,c124,s3064).registration14925,395686 -registration(r10418,c124,s3064).registration14925,395686 -registration(r10419,c162,s3064).registration14926,395719 -registration(r10419,c162,s3064).registration14926,395719 -registration(r10420,c112,s3064).registration14927,395752 -registration(r10420,c112,s3064).registration14927,395752 -registration(r10421,c21,s3065).registration14928,395785 -registration(r10421,c21,s3065).registration14928,395785 -registration(r10422,c63,s3065).registration14929,395817 -registration(r10422,c63,s3065).registration14929,395817 -registration(r10423,c180,s3065).registration14930,395849 -registration(r10423,c180,s3065).registration14930,395849 -registration(r10424,c12,s3065).registration14931,395882 -registration(r10424,c12,s3065).registration14931,395882 -registration(r10425,c132,s3066).registration14932,395914 -registration(r10425,c132,s3066).registration14932,395914 -registration(r10426,c59,s3066).registration14933,395947 -registration(r10426,c59,s3066).registration14933,395947 -registration(r10427,c144,s3066).registration14934,395979 -registration(r10427,c144,s3066).registration14934,395979 -registration(r10428,c72,s3067).registration14935,396012 -registration(r10428,c72,s3067).registration14935,396012 -registration(r10429,c107,s3067).registration14936,396044 -registration(r10429,c107,s3067).registration14936,396044 -registration(r10430,c98,s3067).registration14937,396077 -registration(r10430,c98,s3067).registration14937,396077 -registration(r10431,c66,s3067).registration14938,396109 -registration(r10431,c66,s3067).registration14938,396109 -registration(r10432,c17,s3067).registration14939,396141 -registration(r10432,c17,s3067).registration14939,396141 -registration(r10433,c119,s3068).registration14940,396173 -registration(r10433,c119,s3068).registration14940,396173 -registration(r10434,c237,s3068).registration14941,396206 -registration(r10434,c237,s3068).registration14941,396206 -registration(r10435,c0,s3068).registration14942,396239 -registration(r10435,c0,s3068).registration14942,396239 -registration(r10436,c106,s3069).registration14943,396270 -registration(r10436,c106,s3069).registration14943,396270 -registration(r10437,c126,s3069).registration14944,396303 -registration(r10437,c126,s3069).registration14944,396303 -registration(r10438,c81,s3069).registration14945,396336 -registration(r10438,c81,s3069).registration14945,396336 -registration(r10439,c86,s3069).registration14946,396368 -registration(r10439,c86,s3069).registration14946,396368 -registration(r10440,c89,s3070).registration14947,396400 -registration(r10440,c89,s3070).registration14947,396400 -registration(r10441,c119,s3070).registration14948,396432 -registration(r10441,c119,s3070).registration14948,396432 -registration(r10442,c108,s3070).registration14949,396465 -registration(r10442,c108,s3070).registration14949,396465 -registration(r10443,c148,s3070).registration14950,396498 -registration(r10443,c148,s3070).registration14950,396498 -registration(r10444,c165,s3071).registration14951,396531 -registration(r10444,c165,s3071).registration14951,396531 -registration(r10445,c121,s3071).registration14952,396564 -registration(r10445,c121,s3071).registration14952,396564 -registration(r10446,c23,s3071).registration14953,396597 -registration(r10446,c23,s3071).registration14953,396597 -registration(r10447,c241,s3071).registration14954,396629 -registration(r10447,c241,s3071).registration14954,396629 -registration(r10448,c207,s3072).registration14955,396662 -registration(r10448,c207,s3072).registration14955,396662 -registration(r10449,c81,s3072).registration14956,396695 -registration(r10449,c81,s3072).registration14956,396695 -registration(r10450,c92,s3072).registration14957,396727 -registration(r10450,c92,s3072).registration14957,396727 -registration(r10451,c103,s3072).registration14958,396759 -registration(r10451,c103,s3072).registration14958,396759 -registration(r10452,c83,s3073).registration14959,396792 -registration(r10452,c83,s3073).registration14959,396792 -registration(r10453,c121,s3073).registration14960,396824 -registration(r10453,c121,s3073).registration14960,396824 -registration(r10454,c22,s3073).registration14961,396857 -registration(r10454,c22,s3073).registration14961,396857 -registration(r10455,c247,s3074).registration14962,396889 -registration(r10455,c247,s3074).registration14962,396889 -registration(r10456,c172,s3074).registration14963,396922 -registration(r10456,c172,s3074).registration14963,396922 -registration(r10457,c226,s3074).registration14964,396955 -registration(r10457,c226,s3074).registration14964,396955 -registration(r10458,c203,s3075).registration14965,396988 -registration(r10458,c203,s3075).registration14965,396988 -registration(r10459,c149,s3075).registration14966,397021 -registration(r10459,c149,s3075).registration14966,397021 -registration(r10460,c85,s3075).registration14967,397054 -registration(r10460,c85,s3075).registration14967,397054 -registration(r10461,c12,s3075).registration14968,397086 -registration(r10461,c12,s3075).registration14968,397086 -registration(r10462,c188,s3076).registration14969,397118 -registration(r10462,c188,s3076).registration14969,397118 -registration(r10463,c55,s3076).registration14970,397151 -registration(r10463,c55,s3076).registration14970,397151 -registration(r10464,c84,s3076).registration14971,397183 -registration(r10464,c84,s3076).registration14971,397183 -registration(r10465,c108,s3077).registration14972,397215 -registration(r10465,c108,s3077).registration14972,397215 -registration(r10466,c66,s3077).registration14973,397248 -registration(r10466,c66,s3077).registration14973,397248 -registration(r10467,c188,s3077).registration14974,397280 -registration(r10467,c188,s3077).registration14974,397280 -registration(r10468,c13,s3077).registration14975,397313 -registration(r10468,c13,s3077).registration14975,397313 -registration(r10469,c185,s3078).registration14976,397345 -registration(r10469,c185,s3078).registration14976,397345 -registration(r10470,c67,s3078).registration14977,397378 -registration(r10470,c67,s3078).registration14977,397378 -registration(r10471,c116,s3078).registration14978,397410 -registration(r10471,c116,s3078).registration14978,397410 -registration(r10472,c237,s3079).registration14979,397443 -registration(r10472,c237,s3079).registration14979,397443 -registration(r10473,c110,s3079).registration14980,397476 -registration(r10473,c110,s3079).registration14980,397476 -registration(r10474,c215,s3079).registration14981,397509 -registration(r10474,c215,s3079).registration14981,397509 -registration(r10475,c134,s3080).registration14982,397542 -registration(r10475,c134,s3080).registration14982,397542 -registration(r10476,c74,s3080).registration14983,397575 -registration(r10476,c74,s3080).registration14983,397575 -registration(r10477,c220,s3080).registration14984,397607 -registration(r10477,c220,s3080).registration14984,397607 -registration(r10478,c114,s3080).registration14985,397640 -registration(r10478,c114,s3080).registration14985,397640 -registration(r10479,c219,s3081).registration14986,397673 -registration(r10479,c219,s3081).registration14986,397673 -registration(r10480,c58,s3081).registration14987,397706 -registration(r10480,c58,s3081).registration14987,397706 -registration(r10481,c127,s3081).registration14988,397738 -registration(r10481,c127,s3081).registration14988,397738 -registration(r10482,c183,s3082).registration14989,397771 -registration(r10482,c183,s3082).registration14989,397771 -registration(r10483,c241,s3082).registration14990,397804 -registration(r10483,c241,s3082).registration14990,397804 -registration(r10484,c88,s3082).registration14991,397837 -registration(r10484,c88,s3082).registration14991,397837 -registration(r10485,c156,s3083).registration14992,397869 -registration(r10485,c156,s3083).registration14992,397869 -registration(r10486,c37,s3083).registration14993,397902 -registration(r10486,c37,s3083).registration14993,397902 -registration(r10487,c187,s3083).registration14994,397934 -registration(r10487,c187,s3083).registration14994,397934 -registration(r10488,c116,s3084).registration14995,397967 -registration(r10488,c116,s3084).registration14995,397967 -registration(r10489,c242,s3084).registration14996,398000 -registration(r10489,c242,s3084).registration14996,398000 -registration(r10490,c168,s3084).registration14997,398033 -registration(r10490,c168,s3084).registration14997,398033 -registration(r10491,c149,s3085).registration14998,398066 -registration(r10491,c149,s3085).registration14998,398066 -registration(r10492,c59,s3085).registration14999,398099 -registration(r10492,c59,s3085).registration14999,398099 -registration(r10493,c98,s3085).registration15000,398131 -registration(r10493,c98,s3085).registration15000,398131 -registration(r10494,c232,s3086).registration15001,398163 -registration(r10494,c232,s3086).registration15001,398163 -registration(r10495,c70,s3086).registration15002,398196 -registration(r10495,c70,s3086).registration15002,398196 -registration(r10496,c127,s3086).registration15003,398228 -registration(r10496,c127,s3086).registration15003,398228 -registration(r10497,c242,s3087).registration15004,398261 -registration(r10497,c242,s3087).registration15004,398261 -registration(r10498,c73,s3087).registration15005,398294 -registration(r10498,c73,s3087).registration15005,398294 -registration(r10499,c151,s3087).registration15006,398326 -registration(r10499,c151,s3087).registration15006,398326 -registration(r10500,c142,s3088).registration15007,398359 -registration(r10500,c142,s3088).registration15007,398359 -registration(r10501,c41,s3088).registration15008,398392 -registration(r10501,c41,s3088).registration15008,398392 -registration(r10502,c216,s3088).registration15009,398424 -registration(r10502,c216,s3088).registration15009,398424 -registration(r10503,c54,s3089).registration15010,398457 -registration(r10503,c54,s3089).registration15010,398457 -registration(r10504,c132,s3089).registration15011,398489 -registration(r10504,c132,s3089).registration15011,398489 -registration(r10505,c186,s3089).registration15012,398522 -registration(r10505,c186,s3089).registration15012,398522 -registration(r10506,c238,s3089).registration15013,398555 -registration(r10506,c238,s3089).registration15013,398555 -registration(r10507,c102,s3090).registration15014,398588 -registration(r10507,c102,s3090).registration15014,398588 -registration(r10508,c36,s3090).registration15015,398621 -registration(r10508,c36,s3090).registration15015,398621 -registration(r10509,c151,s3090).registration15016,398653 -registration(r10509,c151,s3090).registration15016,398653 -registration(r10510,c174,s3090).registration15017,398686 -registration(r10510,c174,s3090).registration15017,398686 -registration(r10511,c111,s3090).registration15018,398719 -registration(r10511,c111,s3090).registration15018,398719 -registration(r10512,c15,s3091).registration15019,398752 -registration(r10512,c15,s3091).registration15019,398752 -registration(r10513,c41,s3091).registration15020,398784 -registration(r10513,c41,s3091).registration15020,398784 -registration(r10514,c19,s3091).registration15021,398816 -registration(r10514,c19,s3091).registration15021,398816 -registration(r10515,c146,s3092).registration15022,398848 -registration(r10515,c146,s3092).registration15022,398848 -registration(r10516,c101,s3092).registration15023,398881 -registration(r10516,c101,s3092).registration15023,398881 -registration(r10517,c204,s3092).registration15024,398914 -registration(r10517,c204,s3092).registration15024,398914 -registration(r10518,c99,s3093).registration15025,398947 -registration(r10518,c99,s3093).registration15025,398947 -registration(r10519,c247,s3093).registration15026,398979 -registration(r10519,c247,s3093).registration15026,398979 -registration(r10520,c150,s3093).registration15027,399012 -registration(r10520,c150,s3093).registration15027,399012 -registration(r10521,c110,s3093).registration15028,399045 -registration(r10521,c110,s3093).registration15028,399045 -registration(r10522,c218,s3094).registration15029,399078 -registration(r10522,c218,s3094).registration15029,399078 -registration(r10523,c180,s3094).registration15030,399111 -registration(r10523,c180,s3094).registration15030,399111 -registration(r10524,c163,s3094).registration15031,399144 -registration(r10524,c163,s3094).registration15031,399144 -registration(r10525,c150,s3095).registration15032,399177 -registration(r10525,c150,s3095).registration15032,399177 -registration(r10526,c144,s3095).registration15033,399210 -registration(r10526,c144,s3095).registration15033,399210 -registration(r10527,c92,s3095).registration15034,399243 -registration(r10527,c92,s3095).registration15034,399243 -registration(r10528,c243,s3096).registration15035,399275 -registration(r10528,c243,s3096).registration15035,399275 -registration(r10529,c47,s3096).registration15036,399308 -registration(r10529,c47,s3096).registration15036,399308 -registration(r10530,c99,s3096).registration15037,399340 -registration(r10530,c99,s3096).registration15037,399340 -registration(r10531,c158,s3096).registration15038,399372 -registration(r10531,c158,s3096).registration15038,399372 -registration(r10532,c71,s3097).registration15039,399405 -registration(r10532,c71,s3097).registration15039,399405 -registration(r10533,c177,s3097).registration15040,399437 -registration(r10533,c177,s3097).registration15040,399437 -registration(r10534,c107,s3097).registration15041,399470 -registration(r10534,c107,s3097).registration15041,399470 -registration(r10535,c209,s3098).registration15042,399503 -registration(r10535,c209,s3098).registration15042,399503 -registration(r10536,c131,s3098).registration15043,399536 -registration(r10536,c131,s3098).registration15043,399536 -registration(r10537,c199,s3098).registration15044,399569 -registration(r10537,c199,s3098).registration15044,399569 -registration(r10538,c190,s3099).registration15045,399602 -registration(r10538,c190,s3099).registration15045,399602 -registration(r10539,c23,s3099).registration15046,399635 -registration(r10539,c23,s3099).registration15046,399635 -registration(r10540,c218,s3099).registration15047,399667 -registration(r10540,c218,s3099).registration15047,399667 -registration(r10541,c180,s3100).registration15048,399700 -registration(r10541,c180,s3100).registration15048,399700 -registration(r10542,c148,s3100).registration15049,399733 -registration(r10542,c148,s3100).registration15049,399733 -registration(r10543,c42,s3100).registration15050,399766 -registration(r10543,c42,s3100).registration15050,399766 -registration(r10544,c4,s3100).registration15051,399798 -registration(r10544,c4,s3100).registration15051,399798 -registration(r10545,c165,s3101).registration15052,399829 -registration(r10545,c165,s3101).registration15052,399829 -registration(r10546,c97,s3101).registration15053,399862 -registration(r10546,c97,s3101).registration15053,399862 -registration(r10547,c189,s3101).registration15054,399894 -registration(r10547,c189,s3101).registration15054,399894 -registration(r10548,c236,s3102).registration15055,399927 -registration(r10548,c236,s3102).registration15055,399927 -registration(r10549,c189,s3102).registration15056,399960 -registration(r10549,c189,s3102).registration15056,399960 -registration(r10550,c115,s3102).registration15057,399993 -registration(r10550,c115,s3102).registration15057,399993 -registration(r10551,c187,s3102).registration15058,400026 -registration(r10551,c187,s3102).registration15058,400026 -registration(r10552,c59,s3103).registration15059,400059 -registration(r10552,c59,s3103).registration15059,400059 -registration(r10553,c157,s3103).registration15060,400091 -registration(r10553,c157,s3103).registration15060,400091 -registration(r10554,c115,s3103).registration15061,400124 -registration(r10554,c115,s3103).registration15061,400124 -registration(r10555,c247,s3104).registration15062,400157 -registration(r10555,c247,s3104).registration15062,400157 -registration(r10556,c69,s3104).registration15063,400190 -registration(r10556,c69,s3104).registration15063,400190 -registration(r10557,c238,s3104).registration15064,400222 -registration(r10557,c238,s3104).registration15064,400222 -registration(r10558,c7,s3104).registration15065,400255 -registration(r10558,c7,s3104).registration15065,400255 -registration(r10559,c185,s3105).registration15066,400286 -registration(r10559,c185,s3105).registration15066,400286 -registration(r10560,c229,s3105).registration15067,400319 -registration(r10560,c229,s3105).registration15067,400319 -registration(r10561,c140,s3105).registration15068,400352 -registration(r10561,c140,s3105).registration15068,400352 -registration(r10562,c183,s3106).registration15069,400385 -registration(r10562,c183,s3106).registration15069,400385 -registration(r10563,c129,s3106).registration15070,400418 -registration(r10563,c129,s3106).registration15070,400418 -registration(r10564,c126,s3106).registration15071,400451 -registration(r10564,c126,s3106).registration15071,400451 -registration(r10565,c225,s3106).registration15072,400484 -registration(r10565,c225,s3106).registration15072,400484 -registration(r10566,c53,s3107).registration15073,400517 -registration(r10566,c53,s3107).registration15073,400517 -registration(r10567,c129,s3107).registration15074,400549 -registration(r10567,c129,s3107).registration15074,400549 -registration(r10568,c54,s3107).registration15075,400582 -registration(r10568,c54,s3107).registration15075,400582 -registration(r10569,c64,s3107).registration15076,400614 -registration(r10569,c64,s3107).registration15076,400614 -registration(r10570,c172,s3108).registration15077,400646 -registration(r10570,c172,s3108).registration15077,400646 -registration(r10571,c112,s3108).registration15078,400679 -registration(r10571,c112,s3108).registration15078,400679 -registration(r10572,c102,s3108).registration15079,400712 -registration(r10572,c102,s3108).registration15079,400712 -registration(r10573,c219,s3108).registration15080,400745 -registration(r10573,c219,s3108).registration15080,400745 -registration(r10574,c102,s3109).registration15081,400778 -registration(r10574,c102,s3109).registration15081,400778 -registration(r10575,c124,s3109).registration15082,400811 -registration(r10575,c124,s3109).registration15082,400811 -registration(r10576,c211,s3109).registration15083,400844 -registration(r10576,c211,s3109).registration15083,400844 -registration(r10577,c177,s3110).registration15084,400877 -registration(r10577,c177,s3110).registration15084,400877 -registration(r10578,c176,s3110).registration15085,400910 -registration(r10578,c176,s3110).registration15085,400910 -registration(r10579,c114,s3110).registration15086,400943 -registration(r10579,c114,s3110).registration15086,400943 -registration(r10580,c0,s3111).registration15087,400976 -registration(r10580,c0,s3111).registration15087,400976 -registration(r10581,c216,s3111).registration15088,401007 -registration(r10581,c216,s3111).registration15088,401007 -registration(r10582,c17,s3111).registration15089,401040 -registration(r10582,c17,s3111).registration15089,401040 -registration(r10583,c144,s3112).registration15090,401072 -registration(r10583,c144,s3112).registration15090,401072 -registration(r10584,c48,s3112).registration15091,401105 -registration(r10584,c48,s3112).registration15091,401105 -registration(r10585,c129,s3112).registration15092,401137 -registration(r10585,c129,s3112).registration15092,401137 -registration(r10586,c2,s3113).registration15093,401170 -registration(r10586,c2,s3113).registration15093,401170 -registration(r10587,c167,s3113).registration15094,401201 -registration(r10587,c167,s3113).registration15094,401201 -registration(r10588,c136,s3113).registration15095,401234 -registration(r10588,c136,s3113).registration15095,401234 -registration(r10589,c52,s3114).registration15096,401267 -registration(r10589,c52,s3114).registration15096,401267 -registration(r10590,c179,s3114).registration15097,401299 -registration(r10590,c179,s3114).registration15097,401299 -registration(r10591,c186,s3114).registration15098,401332 -registration(r10591,c186,s3114).registration15098,401332 -registration(r10592,c193,s3114).registration15099,401365 -registration(r10592,c193,s3114).registration15099,401365 -registration(r10593,c130,s3115).registration15100,401398 -registration(r10593,c130,s3115).registration15100,401398 -registration(r10594,c60,s3115).registration15101,401431 -registration(r10594,c60,s3115).registration15101,401431 -registration(r10595,c103,s3115).registration15102,401463 -registration(r10595,c103,s3115).registration15102,401463 -registration(r10596,c169,s3115).registration15103,401496 -registration(r10596,c169,s3115).registration15103,401496 -registration(r10597,c225,s3115).registration15104,401529 -registration(r10597,c225,s3115).registration15104,401529 -registration(r10598,c27,s3116).registration15105,401562 -registration(r10598,c27,s3116).registration15105,401562 -registration(r10599,c132,s3116).registration15106,401594 -registration(r10599,c132,s3116).registration15106,401594 -registration(r10600,c119,s3116).registration15107,401627 -registration(r10600,c119,s3116).registration15107,401627 -registration(r10601,c92,s3116).registration15108,401660 -registration(r10601,c92,s3116).registration15108,401660 -registration(r10602,c211,s3117).registration15109,401692 -registration(r10602,c211,s3117).registration15109,401692 -registration(r10603,c182,s3117).registration15110,401725 -registration(r10603,c182,s3117).registration15110,401725 -registration(r10604,c24,s3117).registration15111,401758 -registration(r10604,c24,s3117).registration15111,401758 -registration(r10605,c56,s3117).registration15112,401790 -registration(r10605,c56,s3117).registration15112,401790 -registration(r10606,c106,s3118).registration15113,401822 -registration(r10606,c106,s3118).registration15113,401822 -registration(r10607,c59,s3118).registration15114,401855 -registration(r10607,c59,s3118).registration15114,401855 -registration(r10608,c48,s3118).registration15115,401887 -registration(r10608,c48,s3118).registration15115,401887 -registration(r10609,c131,s3119).registration15116,401919 -registration(r10609,c131,s3119).registration15116,401919 -registration(r10610,c39,s3119).registration15117,401952 -registration(r10610,c39,s3119).registration15117,401952 -registration(r10611,c49,s3119).registration15118,401984 -registration(r10611,c49,s3119).registration15118,401984 -registration(r10612,c241,s3120).registration15119,402016 -registration(r10612,c241,s3120).registration15119,402016 -registration(r10613,c208,s3120).registration15120,402049 -registration(r10613,c208,s3120).registration15120,402049 -registration(r10614,c196,s3120).registration15121,402082 -registration(r10614,c196,s3120).registration15121,402082 -registration(r10615,c56,s3120).registration15122,402115 -registration(r10615,c56,s3120).registration15122,402115 -registration(r10616,c214,s3121).registration15123,402147 -registration(r10616,c214,s3121).registration15123,402147 -registration(r10617,c82,s3121).registration15124,402180 -registration(r10617,c82,s3121).registration15124,402180 -registration(r10618,c213,s3121).registration15125,402212 -registration(r10618,c213,s3121).registration15125,402212 -registration(r10619,c77,s3122).registration15126,402245 -registration(r10619,c77,s3122).registration15126,402245 -registration(r10620,c14,s3122).registration15127,402277 -registration(r10620,c14,s3122).registration15127,402277 -registration(r10621,c52,s3122).registration15128,402309 -registration(r10621,c52,s3122).registration15128,402309 -registration(r10622,c234,s3123).registration15129,402341 -registration(r10622,c234,s3123).registration15129,402341 -registration(r10623,c238,s3123).registration15130,402374 -registration(r10623,c238,s3123).registration15130,402374 -registration(r10624,c228,s3123).registration15131,402407 -registration(r10624,c228,s3123).registration15131,402407 -registration(r10625,c118,s3123).registration15132,402440 -registration(r10625,c118,s3123).registration15132,402440 -registration(r10626,c94,s3124).registration15133,402473 -registration(r10626,c94,s3124).registration15133,402473 -registration(r10627,c169,s3124).registration15134,402505 -registration(r10627,c169,s3124).registration15134,402505 -registration(r10628,c68,s3124).registration15135,402538 -registration(r10628,c68,s3124).registration15135,402538 -registration(r10629,c108,s3124).registration15136,402570 -registration(r10629,c108,s3124).registration15136,402570 -registration(r10630,c12,s3125).registration15137,402603 -registration(r10630,c12,s3125).registration15137,402603 -registration(r10631,c105,s3125).registration15138,402635 -registration(r10631,c105,s3125).registration15138,402635 -registration(r10632,c176,s3125).registration15139,402668 -registration(r10632,c176,s3125).registration15139,402668 -registration(r10633,c117,s3126).registration15140,402701 -registration(r10633,c117,s3126).registration15140,402701 -registration(r10634,c44,s3126).registration15141,402734 -registration(r10634,c44,s3126).registration15141,402734 -registration(r10635,c115,s3126).registration15142,402766 -registration(r10635,c115,s3126).registration15142,402766 -registration(r10636,c198,s3126).registration15143,402799 -registration(r10636,c198,s3126).registration15143,402799 -registration(r10637,c65,s3127).registration15144,402832 -registration(r10637,c65,s3127).registration15144,402832 -registration(r10638,c245,s3127).registration15145,402864 -registration(r10638,c245,s3127).registration15145,402864 -registration(r10639,c156,s3127).registration15146,402897 -registration(r10639,c156,s3127).registration15146,402897 -registration(r10640,c207,s3127).registration15147,402930 -registration(r10640,c207,s3127).registration15147,402930 -registration(r10641,c100,s3128).registration15148,402963 -registration(r10641,c100,s3128).registration15148,402963 -registration(r10642,c229,s3128).registration15149,402996 -registration(r10642,c229,s3128).registration15149,402996 -registration(r10643,c186,s3128).registration15150,403029 -registration(r10643,c186,s3128).registration15150,403029 -registration(r10644,c222,s3129).registration15151,403062 -registration(r10644,c222,s3129).registration15151,403062 -registration(r10645,c201,s3129).registration15152,403095 -registration(r10645,c201,s3129).registration15152,403095 -registration(r10646,c29,s3129).registration15153,403128 -registration(r10646,c29,s3129).registration15153,403128 -registration(r10647,c98,s3130).registration15154,403160 -registration(r10647,c98,s3130).registration15154,403160 -registration(r10648,c25,s3130).registration15155,403192 -registration(r10648,c25,s3130).registration15155,403192 -registration(r10649,c159,s3130).registration15156,403224 -registration(r10649,c159,s3130).registration15156,403224 -registration(r10650,c7,s3130).registration15157,403257 -registration(r10650,c7,s3130).registration15157,403257 -registration(r10651,c126,s3131).registration15158,403288 -registration(r10651,c126,s3131).registration15158,403288 -registration(r10652,c36,s3131).registration15159,403321 -registration(r10652,c36,s3131).registration15159,403321 -registration(r10653,c66,s3131).registration15160,403353 -registration(r10653,c66,s3131).registration15160,403353 -registration(r10654,c182,s3132).registration15161,403385 -registration(r10654,c182,s3132).registration15161,403385 -registration(r10655,c95,s3132).registration15162,403418 -registration(r10655,c95,s3132).registration15162,403418 -registration(r10656,c83,s3132).registration15163,403450 -registration(r10656,c83,s3132).registration15163,403450 -registration(r10657,c73,s3133).registration15164,403482 -registration(r10657,c73,s3133).registration15164,403482 -registration(r10658,c24,s3133).registration15165,403514 -registration(r10658,c24,s3133).registration15165,403514 -registration(r10659,c48,s3133).registration15166,403546 -registration(r10659,c48,s3133).registration15166,403546 -registration(r10660,c147,s3134).registration15167,403578 -registration(r10660,c147,s3134).registration15167,403578 -registration(r10661,c50,s3134).registration15168,403611 -registration(r10661,c50,s3134).registration15168,403611 -registration(r10662,c164,s3134).registration15169,403643 -registration(r10662,c164,s3134).registration15169,403643 -registration(r10663,c129,s3135).registration15170,403676 -registration(r10663,c129,s3135).registration15170,403676 -registration(r10664,c176,s3135).registration15171,403709 -registration(r10664,c176,s3135).registration15171,403709 -registration(r10665,c28,s3135).registration15172,403742 -registration(r10665,c28,s3135).registration15172,403742 -registration(r10666,c127,s3135).registration15173,403774 -registration(r10666,c127,s3135).registration15173,403774 -registration(r10667,c215,s3136).registration15174,403807 -registration(r10667,c215,s3136).registration15174,403807 -registration(r10668,c193,s3136).registration15175,403840 -registration(r10668,c193,s3136).registration15175,403840 -registration(r10669,c77,s3136).registration15176,403873 -registration(r10669,c77,s3136).registration15176,403873 -registration(r10670,c204,s3137).registration15177,403905 -registration(r10670,c204,s3137).registration15177,403905 -registration(r10671,c33,s3137).registration15178,403938 -registration(r10671,c33,s3137).registration15178,403938 -registration(r10672,c12,s3137).registration15179,403970 -registration(r10672,c12,s3137).registration15179,403970 -registration(r10673,c194,s3138).registration15180,404002 -registration(r10673,c194,s3138).registration15180,404002 -registration(r10674,c32,s3138).registration15181,404035 -registration(r10674,c32,s3138).registration15181,404035 -registration(r10675,c199,s3138).registration15182,404067 -registration(r10675,c199,s3138).registration15182,404067 -registration(r10676,c16,s3139).registration15183,404100 -registration(r10676,c16,s3139).registration15183,404100 -registration(r10677,c88,s3139).registration15184,404132 -registration(r10677,c88,s3139).registration15184,404132 -registration(r10678,c240,s3139).registration15185,404164 -registration(r10678,c240,s3139).registration15185,404164 -registration(r10679,c132,s3140).registration15186,404197 -registration(r10679,c132,s3140).registration15186,404197 -registration(r10680,c144,s3140).registration15187,404230 -registration(r10680,c144,s3140).registration15187,404230 -registration(r10681,c227,s3140).registration15188,404263 -registration(r10681,c227,s3140).registration15188,404263 -registration(r10682,c101,s3141).registration15189,404296 -registration(r10682,c101,s3141).registration15189,404296 -registration(r10683,c26,s3141).registration15190,404329 -registration(r10683,c26,s3141).registration15190,404329 -registration(r10684,c172,s3141).registration15191,404361 -registration(r10684,c172,s3141).registration15191,404361 -registration(r10685,c62,s3141).registration15192,404394 -registration(r10685,c62,s3141).registration15192,404394 -registration(r10686,c251,s3141).registration15193,404426 -registration(r10686,c251,s3141).registration15193,404426 -registration(r10687,c0,s3142).registration15194,404459 -registration(r10687,c0,s3142).registration15194,404459 -registration(r10688,c122,s3142).registration15195,404490 -registration(r10688,c122,s3142).registration15195,404490 -registration(r10689,c248,s3142).registration15196,404523 -registration(r10689,c248,s3142).registration15196,404523 -registration(r10690,c26,s3143).registration15197,404556 -registration(r10690,c26,s3143).registration15197,404556 -registration(r10691,c215,s3143).registration15198,404588 -registration(r10691,c215,s3143).registration15198,404588 -registration(r10692,c6,s3143).registration15199,404621 -registration(r10692,c6,s3143).registration15199,404621 -registration(r10693,c39,s3144).registration15200,404652 -registration(r10693,c39,s3144).registration15200,404652 -registration(r10694,c84,s3144).registration15201,404684 -registration(r10694,c84,s3144).registration15201,404684 -registration(r10695,c217,s3144).registration15202,404716 -registration(r10695,c217,s3144).registration15202,404716 -registration(r10696,c48,s3145).registration15203,404749 -registration(r10696,c48,s3145).registration15203,404749 -registration(r10697,c217,s3145).registration15204,404781 -registration(r10697,c217,s3145).registration15204,404781 -registration(r10698,c192,s3145).registration15205,404814 -registration(r10698,c192,s3145).registration15205,404814 -registration(r10699,c81,s3146).registration15206,404847 -registration(r10699,c81,s3146).registration15206,404847 -registration(r10700,c85,s3146).registration15207,404879 -registration(r10700,c85,s3146).registration15207,404879 -registration(r10701,c200,s3146).registration15208,404911 -registration(r10701,c200,s3146).registration15208,404911 -registration(r10702,c226,s3147).registration15209,404944 -registration(r10702,c226,s3147).registration15209,404944 -registration(r10703,c139,s3147).registration15210,404977 -registration(r10703,c139,s3147).registration15210,404977 -registration(r10704,c220,s3147).registration15211,405010 -registration(r10704,c220,s3147).registration15211,405010 -registration(r10705,c181,s3147).registration15212,405043 -registration(r10705,c181,s3147).registration15212,405043 -registration(r10706,c32,s3148).registration15213,405076 -registration(r10706,c32,s3148).registration15213,405076 -registration(r10707,c49,s3148).registration15214,405108 -registration(r10707,c49,s3148).registration15214,405108 -registration(r10708,c209,s3148).registration15215,405140 -registration(r10708,c209,s3148).registration15215,405140 -registration(r10709,c235,s3149).registration15216,405173 -registration(r10709,c235,s3149).registration15216,405173 -registration(r10710,c194,s3149).registration15217,405206 -registration(r10710,c194,s3149).registration15217,405206 -registration(r10711,c124,s3149).registration15218,405239 -registration(r10711,c124,s3149).registration15218,405239 -registration(r10712,c164,s3150).registration15219,405272 -registration(r10712,c164,s3150).registration15219,405272 -registration(r10713,c205,s3150).registration15220,405305 -registration(r10713,c205,s3150).registration15220,405305 -registration(r10714,c54,s3150).registration15221,405338 -registration(r10714,c54,s3150).registration15221,405338 -registration(r10715,c103,s3150).registration15222,405370 -registration(r10715,c103,s3150).registration15222,405370 -registration(r10716,c102,s3151).registration15223,405403 -registration(r10716,c102,s3151).registration15223,405403 -registration(r10717,c242,s3151).registration15224,405436 -registration(r10717,c242,s3151).registration15224,405436 -registration(r10718,c215,s3151).registration15225,405469 -registration(r10718,c215,s3151).registration15225,405469 -registration(r10719,c45,s3152).registration15226,405502 -registration(r10719,c45,s3152).registration15226,405502 -registration(r10720,c140,s3152).registration15227,405534 -registration(r10720,c140,s3152).registration15227,405534 -registration(r10721,c35,s3152).registration15228,405567 -registration(r10721,c35,s3152).registration15228,405567 -registration(r10722,c175,s3153).registration15229,405599 -registration(r10722,c175,s3153).registration15229,405599 -registration(r10723,c196,s3153).registration15230,405632 -registration(r10723,c196,s3153).registration15230,405632 -registration(r10724,c142,s3153).registration15231,405665 -registration(r10724,c142,s3153).registration15231,405665 -registration(r10725,c176,s3154).registration15232,405698 -registration(r10725,c176,s3154).registration15232,405698 -registration(r10726,c150,s3154).registration15233,405731 -registration(r10726,c150,s3154).registration15233,405731 -registration(r10727,c108,s3154).registration15234,405764 -registration(r10727,c108,s3154).registration15234,405764 -registration(r10728,c87,s3154).registration15235,405797 -registration(r10728,c87,s3154).registration15235,405797 -registration(r10729,c95,s3155).registration15236,405829 -registration(r10729,c95,s3155).registration15236,405829 -registration(r10730,c140,s3155).registration15237,405861 -registration(r10730,c140,s3155).registration15237,405861 -registration(r10731,c210,s3155).registration15238,405894 -registration(r10731,c210,s3155).registration15238,405894 -registration(r10732,c159,s3155).registration15239,405927 -registration(r10732,c159,s3155).registration15239,405927 -registration(r10733,c243,s3156).registration15240,405960 -registration(r10733,c243,s3156).registration15240,405960 -registration(r10734,c189,s3156).registration15241,405993 -registration(r10734,c189,s3156).registration15241,405993 -registration(r10735,c207,s3156).registration15242,406026 -registration(r10735,c207,s3156).registration15242,406026 -registration(r10736,c194,s3156).registration15243,406059 -registration(r10736,c194,s3156).registration15243,406059 -registration(r10737,c51,s3157).registration15244,406092 -registration(r10737,c51,s3157).registration15244,406092 -registration(r10738,c232,s3157).registration15245,406124 -registration(r10738,c232,s3157).registration15245,406124 -registration(r10739,c7,s3157).registration15246,406157 -registration(r10739,c7,s3157).registration15246,406157 -registration(r10740,c43,s3158).registration15247,406188 -registration(r10740,c43,s3158).registration15247,406188 -registration(r10741,c72,s3158).registration15248,406220 -registration(r10741,c72,s3158).registration15248,406220 -registration(r10742,c227,s3158).registration15249,406252 -registration(r10742,c227,s3158).registration15249,406252 -registration(r10743,c115,s3158).registration15250,406285 -registration(r10743,c115,s3158).registration15250,406285 -registration(r10744,c64,s3159).registration15251,406318 -registration(r10744,c64,s3159).registration15251,406318 -registration(r10745,c169,s3159).registration15252,406350 -registration(r10745,c169,s3159).registration15252,406350 -registration(r10746,c34,s3159).registration15253,406383 -registration(r10746,c34,s3159).registration15253,406383 -registration(r10747,c191,s3159).registration15254,406415 -registration(r10747,c191,s3159).registration15254,406415 -registration(r10748,c230,s3160).registration15255,406448 -registration(r10748,c230,s3160).registration15255,406448 -registration(r10749,c110,s3160).registration15256,406481 -registration(r10749,c110,s3160).registration15256,406481 -registration(r10750,c29,s3160).registration15257,406514 -registration(r10750,c29,s3160).registration15257,406514 -registration(r10751,c218,s3161).registration15258,406546 -registration(r10751,c218,s3161).registration15258,406546 -registration(r10752,c163,s3161).registration15259,406579 -registration(r10752,c163,s3161).registration15259,406579 -registration(r10753,c224,s3161).registration15260,406612 -registration(r10753,c224,s3161).registration15260,406612 -registration(r10754,c176,s3162).registration15261,406645 -registration(r10754,c176,s3162).registration15261,406645 -registration(r10755,c40,s3162).registration15262,406678 -registration(r10755,c40,s3162).registration15262,406678 -registration(r10756,c134,s3162).registration15263,406710 -registration(r10756,c134,s3162).registration15263,406710 -registration(r10757,c111,s3163).registration15264,406743 -registration(r10757,c111,s3163).registration15264,406743 -registration(r10758,c123,s3163).registration15265,406776 -registration(r10758,c123,s3163).registration15265,406776 -registration(r10759,c189,s3163).registration15266,406809 -registration(r10759,c189,s3163).registration15266,406809 -registration(r10760,c4,s3164).registration15267,406842 -registration(r10760,c4,s3164).registration15267,406842 -registration(r10761,c198,s3164).registration15268,406873 -registration(r10761,c198,s3164).registration15268,406873 -registration(r10762,c128,s3164).registration15269,406906 -registration(r10762,c128,s3164).registration15269,406906 -registration(r10763,c57,s3164).registration15270,406939 -registration(r10763,c57,s3164).registration15270,406939 -registration(r10764,c185,s3165).registration15271,406971 -registration(r10764,c185,s3165).registration15271,406971 -registration(r10765,c91,s3165).registration15272,407004 -registration(r10765,c91,s3165).registration15272,407004 -registration(r10766,c153,s3165).registration15273,407036 -registration(r10766,c153,s3165).registration15273,407036 -registration(r10767,c128,s3165).registration15274,407069 -registration(r10767,c128,s3165).registration15274,407069 -registration(r10768,c63,s3166).registration15275,407102 -registration(r10768,c63,s3166).registration15275,407102 -registration(r10769,c56,s3166).registration15276,407134 -registration(r10769,c56,s3166).registration15276,407134 -registration(r10770,c243,s3166).registration15277,407166 -registration(r10770,c243,s3166).registration15277,407166 -registration(r10771,c151,s3166).registration15278,407199 -registration(r10771,c151,s3166).registration15278,407199 -registration(r10772,c96,s3167).registration15279,407232 -registration(r10772,c96,s3167).registration15279,407232 -registration(r10773,c224,s3167).registration15280,407264 -registration(r10773,c224,s3167).registration15280,407264 -registration(r10774,c249,s3167).registration15281,407297 -registration(r10774,c249,s3167).registration15281,407297 -registration(r10775,c9,s3167).registration15282,407330 -registration(r10775,c9,s3167).registration15282,407330 -registration(r10776,c133,s3168).registration15283,407361 -registration(r10776,c133,s3168).registration15283,407361 -registration(r10777,c101,s3168).registration15284,407394 -registration(r10777,c101,s3168).registration15284,407394 -registration(r10778,c239,s3168).registration15285,407427 -registration(r10778,c239,s3168).registration15285,407427 -registration(r10779,c33,s3168).registration15286,407460 -registration(r10779,c33,s3168).registration15286,407460 -registration(r10780,c167,s3169).registration15287,407492 -registration(r10780,c167,s3169).registration15287,407492 -registration(r10781,c39,s3169).registration15288,407525 -registration(r10781,c39,s3169).registration15288,407525 -registration(r10782,c153,s3169).registration15289,407557 -registration(r10782,c153,s3169).registration15289,407557 -registration(r10783,c56,s3169).registration15290,407590 -registration(r10783,c56,s3169).registration15290,407590 -registration(r10784,c233,s3170).registration15291,407622 -registration(r10784,c233,s3170).registration15291,407622 -registration(r10785,c242,s3170).registration15292,407655 -registration(r10785,c242,s3170).registration15292,407655 -registration(r10786,c45,s3170).registration15293,407688 -registration(r10786,c45,s3170).registration15293,407688 -registration(r10787,c72,s3171).registration15294,407720 -registration(r10787,c72,s3171).registration15294,407720 -registration(r10788,c4,s3171).registration15295,407752 -registration(r10788,c4,s3171).registration15295,407752 -registration(r10789,c1,s3171).registration15296,407783 -registration(r10789,c1,s3171).registration15296,407783 -registration(r10790,c130,s3172).registration15297,407814 -registration(r10790,c130,s3172).registration15297,407814 -registration(r10791,c148,s3172).registration15298,407847 -registration(r10791,c148,s3172).registration15298,407847 -registration(r10792,c143,s3172).registration15299,407880 -registration(r10792,c143,s3172).registration15299,407880 -registration(r10793,c136,s3173).registration15300,407913 -registration(r10793,c136,s3173).registration15300,407913 -registration(r10794,c244,s3173).registration15301,407946 -registration(r10794,c244,s3173).registration15301,407946 -registration(r10795,c125,s3173).registration15302,407979 -registration(r10795,c125,s3173).registration15302,407979 -registration(r10796,c120,s3173).registration15303,408012 -registration(r10796,c120,s3173).registration15303,408012 -registration(r10797,c248,s3174).registration15304,408045 -registration(r10797,c248,s3174).registration15304,408045 -registration(r10798,c122,s3174).registration15305,408078 -registration(r10798,c122,s3174).registration15305,408078 -registration(r10799,c6,s3174).registration15306,408111 -registration(r10799,c6,s3174).registration15306,408111 -registration(r10800,c46,s3174).registration15307,408142 -registration(r10800,c46,s3174).registration15307,408142 -registration(r10801,c100,s3175).registration15308,408174 -registration(r10801,c100,s3175).registration15308,408174 -registration(r10802,c73,s3175).registration15309,408207 -registration(r10802,c73,s3175).registration15309,408207 -registration(r10803,c103,s3175).registration15310,408239 -registration(r10803,c103,s3175).registration15310,408239 -registration(r10804,c88,s3176).registration15311,408272 -registration(r10804,c88,s3176).registration15311,408272 -registration(r10805,c101,s3176).registration15312,408304 -registration(r10805,c101,s3176).registration15312,408304 -registration(r10806,c184,s3176).registration15313,408337 -registration(r10806,c184,s3176).registration15313,408337 -registration(r10807,c173,s3176).registration15314,408370 -registration(r10807,c173,s3176).registration15314,408370 -registration(r10808,c28,s3177).registration15315,408403 -registration(r10808,c28,s3177).registration15315,408403 -registration(r10809,c47,s3177).registration15316,408435 -registration(r10809,c47,s3177).registration15316,408435 -registration(r10810,c181,s3177).registration15317,408467 -registration(r10810,c181,s3177).registration15317,408467 -registration(r10811,c68,s3178).registration15318,408500 -registration(r10811,c68,s3178).registration15318,408500 -registration(r10812,c130,s3178).registration15319,408532 -registration(r10812,c130,s3178).registration15319,408532 -registration(r10813,c56,s3178).registration15320,408565 -registration(r10813,c56,s3178).registration15320,408565 -registration(r10814,c183,s3179).registration15321,408597 -registration(r10814,c183,s3179).registration15321,408597 -registration(r10815,c214,s3179).registration15322,408630 -registration(r10815,c214,s3179).registration15322,408630 -registration(r10816,c239,s3179).registration15323,408663 -registration(r10816,c239,s3179).registration15323,408663 -registration(r10817,c106,s3180).registration15324,408696 -registration(r10817,c106,s3180).registration15324,408696 -registration(r10818,c161,s3180).registration15325,408729 -registration(r10818,c161,s3180).registration15325,408729 -registration(r10819,c153,s3180).registration15326,408762 -registration(r10819,c153,s3180).registration15326,408762 -registration(r10820,c254,s3181).registration15327,408795 -registration(r10820,c254,s3181).registration15327,408795 -registration(r10821,c213,s3181).registration15328,408828 -registration(r10821,c213,s3181).registration15328,408828 -registration(r10822,c52,s3181).registration15329,408861 -registration(r10822,c52,s3181).registration15329,408861 -registration(r10823,c140,s3181).registration15330,408893 -registration(r10823,c140,s3181).registration15330,408893 -registration(r10824,c153,s3182).registration15331,408926 -registration(r10824,c153,s3182).registration15331,408926 -registration(r10825,c193,s3182).registration15332,408959 -registration(r10825,c193,s3182).registration15332,408959 -registration(r10826,c167,s3182).registration15333,408992 -registration(r10826,c167,s3182).registration15333,408992 -registration(r10827,c195,s3183).registration15334,409025 -registration(r10827,c195,s3183).registration15334,409025 -registration(r10828,c116,s3183).registration15335,409058 -registration(r10828,c116,s3183).registration15335,409058 -registration(r10829,c50,s3183).registration15336,409091 -registration(r10829,c50,s3183).registration15336,409091 -registration(r10830,c119,s3184).registration15337,409123 -registration(r10830,c119,s3184).registration15337,409123 -registration(r10831,c227,s3184).registration15338,409156 -registration(r10831,c227,s3184).registration15338,409156 -registration(r10832,c112,s3184).registration15339,409189 -registration(r10832,c112,s3184).registration15339,409189 -registration(r10833,c40,s3185).registration15340,409222 -registration(r10833,c40,s3185).registration15340,409222 -registration(r10834,c26,s3185).registration15341,409254 -registration(r10834,c26,s3185).registration15341,409254 -registration(r10835,c75,s3185).registration15342,409286 -registration(r10835,c75,s3185).registration15342,409286 -registration(r10836,c180,s3186).registration15343,409318 -registration(r10836,c180,s3186).registration15343,409318 -registration(r10837,c100,s3186).registration15344,409351 -registration(r10837,c100,s3186).registration15344,409351 -registration(r10838,c131,s3186).registration15345,409384 -registration(r10838,c131,s3186).registration15345,409384 -registration(r10839,c129,s3187).registration15346,409417 -registration(r10839,c129,s3187).registration15346,409417 -registration(r10840,c22,s3187).registration15347,409450 -registration(r10840,c22,s3187).registration15347,409450 -registration(r10841,c104,s3187).registration15348,409482 -registration(r10841,c104,s3187).registration15348,409482 -registration(r10842,c245,s3187).registration15349,409515 -registration(r10842,c245,s3187).registration15349,409515 -registration(r10843,c79,s3188).registration15350,409548 -registration(r10843,c79,s3188).registration15350,409548 -registration(r10844,c225,s3188).registration15351,409580 -registration(r10844,c225,s3188).registration15351,409580 -registration(r10845,c156,s3188).registration15352,409613 -registration(r10845,c156,s3188).registration15352,409613 -registration(r10846,c96,s3189).registration15353,409646 -registration(r10846,c96,s3189).registration15353,409646 -registration(r10847,c11,s3189).registration15354,409678 -registration(r10847,c11,s3189).registration15354,409678 -registration(r10848,c148,s3189).registration15355,409710 -registration(r10848,c148,s3189).registration15355,409710 -registration(r10849,c10,s3190).registration15356,409743 -registration(r10849,c10,s3190).registration15356,409743 -registration(r10850,c166,s3190).registration15357,409775 -registration(r10850,c166,s3190).registration15357,409775 -registration(r10851,c181,s3190).registration15358,409808 -registration(r10851,c181,s3190).registration15358,409808 -registration(r10852,c221,s3190).registration15359,409841 -registration(r10852,c221,s3190).registration15359,409841 -registration(r10853,c106,s3191).registration15360,409874 -registration(r10853,c106,s3191).registration15360,409874 -registration(r10854,c73,s3191).registration15361,409907 -registration(r10854,c73,s3191).registration15361,409907 -registration(r10855,c161,s3191).registration15362,409939 -registration(r10855,c161,s3191).registration15362,409939 -registration(r10856,c5,s3192).registration15363,409972 -registration(r10856,c5,s3192).registration15363,409972 -registration(r10857,c215,s3192).registration15364,410003 -registration(r10857,c215,s3192).registration15364,410003 -registration(r10858,c62,s3192).registration15365,410036 -registration(r10858,c62,s3192).registration15365,410036 -registration(r10859,c84,s3193).registration15366,410068 -registration(r10859,c84,s3193).registration15366,410068 -registration(r10860,c162,s3193).registration15367,410100 -registration(r10860,c162,s3193).registration15367,410100 -registration(r10861,c15,s3193).registration15368,410133 -registration(r10861,c15,s3193).registration15368,410133 -registration(r10862,c95,s3194).registration15369,410165 -registration(r10862,c95,s3194).registration15369,410165 -registration(r10863,c86,s3194).registration15370,410197 -registration(r10863,c86,s3194).registration15370,410197 -registration(r10864,c51,s3194).registration15371,410229 -registration(r10864,c51,s3194).registration15371,410229 -registration(r10865,c148,s3195).registration15372,410261 -registration(r10865,c148,s3195).registration15372,410261 -registration(r10866,c0,s3195).registration15373,410294 -registration(r10866,c0,s3195).registration15373,410294 -registration(r10867,c74,s3195).registration15374,410325 -registration(r10867,c74,s3195).registration15374,410325 -registration(r10868,c84,s3196).registration15375,410357 -registration(r10868,c84,s3196).registration15375,410357 -registration(r10869,c253,s3196).registration15376,410389 -registration(r10869,c253,s3196).registration15376,410389 -registration(r10870,c248,s3196).registration15377,410422 -registration(r10870,c248,s3196).registration15377,410422 -registration(r10871,c214,s3197).registration15378,410455 -registration(r10871,c214,s3197).registration15378,410455 -registration(r10872,c13,s3197).registration15379,410488 -registration(r10872,c13,s3197).registration15379,410488 -registration(r10873,c72,s3197).registration15380,410520 -registration(r10873,c72,s3197).registration15380,410520 -registration(r10874,c70,s3198).registration15381,410552 -registration(r10874,c70,s3198).registration15381,410552 -registration(r10875,c125,s3198).registration15382,410584 -registration(r10875,c125,s3198).registration15382,410584 -registration(r10876,c56,s3198).registration15383,410617 -registration(r10876,c56,s3198).registration15383,410617 -registration(r10877,c145,s3199).registration15384,410649 -registration(r10877,c145,s3199).registration15384,410649 -registration(r10878,c217,s3199).registration15385,410682 -registration(r10878,c217,s3199).registration15385,410682 -registration(r10879,c86,s3199).registration15386,410715 -registration(r10879,c86,s3199).registration15386,410715 -registration(r10880,c238,s3200).registration15387,410747 -registration(r10880,c238,s3200).registration15387,410747 -registration(r10881,c0,s3200).registration15388,410780 -registration(r10881,c0,s3200).registration15388,410780 -registration(r10882,c163,s3200).registration15389,410811 -registration(r10882,c163,s3200).registration15389,410811 -registration(r10883,c245,s3200).registration15390,410844 -registration(r10883,c245,s3200).registration15390,410844 -registration(r10884,c183,s3201).registration15391,410877 -registration(r10884,c183,s3201).registration15391,410877 -registration(r10885,c245,s3201).registration15392,410910 -registration(r10885,c245,s3201).registration15392,410910 -registration(r10886,c162,s3201).registration15393,410943 -registration(r10886,c162,s3201).registration15393,410943 -registration(r10887,c57,s3201).registration15394,410976 -registration(r10887,c57,s3201).registration15394,410976 -registration(r10888,c12,s3202).registration15395,411008 -registration(r10888,c12,s3202).registration15395,411008 -registration(r10889,c52,s3202).registration15396,411040 -registration(r10889,c52,s3202).registration15396,411040 -registration(r10890,c156,s3202).registration15397,411072 -registration(r10890,c156,s3202).registration15397,411072 -registration(r10891,c10,s3202).registration15398,411105 -registration(r10891,c10,s3202).registration15398,411105 -registration(r10892,c83,s3203).registration15399,411137 -registration(r10892,c83,s3203).registration15399,411137 -registration(r10893,c130,s3203).registration15400,411169 -registration(r10893,c130,s3203).registration15400,411169 -registration(r10894,c10,s3203).registration15401,411202 -registration(r10894,c10,s3203).registration15401,411202 -registration(r10895,c67,s3204).registration15402,411234 -registration(r10895,c67,s3204).registration15402,411234 -registration(r10896,c30,s3204).registration15403,411266 -registration(r10896,c30,s3204).registration15403,411266 -registration(r10897,c180,s3204).registration15404,411298 -registration(r10897,c180,s3204).registration15404,411298 -registration(r10898,c10,s3205).registration15405,411331 -registration(r10898,c10,s3205).registration15405,411331 -registration(r10899,c119,s3205).registration15406,411363 -registration(r10899,c119,s3205).registration15406,411363 -registration(r10900,c69,s3205).registration15407,411396 -registration(r10900,c69,s3205).registration15407,411396 -registration(r10901,c232,s3206).registration15408,411428 -registration(r10901,c232,s3206).registration15408,411428 -registration(r10902,c27,s3206).registration15409,411461 -registration(r10902,c27,s3206).registration15409,411461 -registration(r10903,c108,s3206).registration15410,411493 -registration(r10903,c108,s3206).registration15410,411493 -registration(r10904,c98,s3207).registration15411,411526 -registration(r10904,c98,s3207).registration15411,411526 -registration(r10905,c231,s3207).registration15412,411558 -registration(r10905,c231,s3207).registration15412,411558 -registration(r10906,c224,s3207).registration15413,411591 -registration(r10906,c224,s3207).registration15413,411591 -registration(r10907,c238,s3208).registration15414,411624 -registration(r10907,c238,s3208).registration15414,411624 -registration(r10908,c207,s3208).registration15415,411657 -registration(r10908,c207,s3208).registration15415,411657 -registration(r10909,c122,s3208).registration15416,411690 -registration(r10909,c122,s3208).registration15416,411690 -registration(r10910,c36,s3209).registration15417,411723 -registration(r10910,c36,s3209).registration15417,411723 -registration(r10911,c76,s3209).registration15418,411755 -registration(r10911,c76,s3209).registration15418,411755 -registration(r10912,c93,s3209).registration15419,411787 -registration(r10912,c93,s3209).registration15419,411787 -registration(r10913,c229,s3209).registration15420,411819 -registration(r10913,c229,s3209).registration15420,411819 -registration(r10914,c113,s3210).registration15421,411852 -registration(r10914,c113,s3210).registration15421,411852 -registration(r10915,c3,s3210).registration15422,411885 -registration(r10915,c3,s3210).registration15422,411885 -registration(r10916,c14,s3210).registration15423,411916 -registration(r10916,c14,s3210).registration15423,411916 -registration(r10917,c24,s3211).registration15424,411948 -registration(r10917,c24,s3211).registration15424,411948 -registration(r10918,c190,s3211).registration15425,411980 -registration(r10918,c190,s3211).registration15425,411980 -registration(r10919,c64,s3211).registration15426,412013 -registration(r10919,c64,s3211).registration15426,412013 -registration(r10920,c53,s3211).registration15427,412045 -registration(r10920,c53,s3211).registration15427,412045 -registration(r10921,c46,s3211).registration15428,412077 -registration(r10921,c46,s3211).registration15428,412077 -registration(r10922,c161,s3212).registration15429,412109 -registration(r10922,c161,s3212).registration15429,412109 -registration(r10923,c107,s3212).registration15430,412142 -registration(r10923,c107,s3212).registration15430,412142 -registration(r10924,c0,s3212).registration15431,412175 -registration(r10924,c0,s3212).registration15431,412175 -registration(r10925,c82,s3212).registration15432,412206 -registration(r10925,c82,s3212).registration15432,412206 -registration(r10926,c161,s3213).registration15433,412238 -registration(r10926,c161,s3213).registration15433,412238 -registration(r10927,c50,s3213).registration15434,412271 -registration(r10927,c50,s3213).registration15434,412271 -registration(r10928,c209,s3213).registration15435,412303 -registration(r10928,c209,s3213).registration15435,412303 -registration(r10929,c201,s3214).registration15436,412336 -registration(r10929,c201,s3214).registration15436,412336 -registration(r10930,c76,s3214).registration15437,412369 -registration(r10930,c76,s3214).registration15437,412369 -registration(r10931,c210,s3214).registration15438,412401 -registration(r10931,c210,s3214).registration15438,412401 -registration(r10932,c168,s3214).registration15439,412434 -registration(r10932,c168,s3214).registration15439,412434 -registration(r10933,c251,s3214).registration15440,412467 -registration(r10933,c251,s3214).registration15440,412467 -registration(r10934,c3,s3215).registration15441,412500 -registration(r10934,c3,s3215).registration15441,412500 -registration(r10935,c115,s3215).registration15442,412531 -registration(r10935,c115,s3215).registration15442,412531 -registration(r10936,c255,s3215).registration15443,412564 -registration(r10936,c255,s3215).registration15443,412564 -registration(r10937,c185,s3215).registration15444,412597 -registration(r10937,c185,s3215).registration15444,412597 -registration(r10938,c42,s3216).registration15445,412630 -registration(r10938,c42,s3216).registration15445,412630 -registration(r10939,c120,s3216).registration15446,412662 -registration(r10939,c120,s3216).registration15446,412662 -registration(r10940,c58,s3216).registration15447,412695 -registration(r10940,c58,s3216).registration15447,412695 -registration(r10941,c97,s3217).registration15448,412727 -registration(r10941,c97,s3217).registration15448,412727 -registration(r10942,c106,s3217).registration15449,412759 -registration(r10942,c106,s3217).registration15449,412759 -registration(r10943,c78,s3217).registration15450,412792 -registration(r10943,c78,s3217).registration15450,412792 -registration(r10944,c83,s3218).registration15451,412824 -registration(r10944,c83,s3218).registration15451,412824 -registration(r10945,c31,s3218).registration15452,412856 -registration(r10945,c31,s3218).registration15452,412856 -registration(r10946,c77,s3218).registration15453,412888 -registration(r10946,c77,s3218).registration15453,412888 -registration(r10947,c30,s3219).registration15454,412920 -registration(r10947,c30,s3219).registration15454,412920 -registration(r10948,c103,s3219).registration15455,412952 -registration(r10948,c103,s3219).registration15455,412952 -registration(r10949,c0,s3219).registration15456,412985 -registration(r10949,c0,s3219).registration15456,412985 -registration(r10950,c210,s3220).registration15457,413016 -registration(r10950,c210,s3220).registration15457,413016 -registration(r10951,c253,s3220).registration15458,413049 -registration(r10951,c253,s3220).registration15458,413049 -registration(r10952,c91,s3220).registration15459,413082 -registration(r10952,c91,s3220).registration15459,413082 -registration(r10953,c96,s3221).registration15460,413114 -registration(r10953,c96,s3221).registration15460,413114 -registration(r10954,c69,s3221).registration15461,413146 -registration(r10954,c69,s3221).registration15461,413146 -registration(r10955,c248,s3221).registration15462,413178 -registration(r10955,c248,s3221).registration15462,413178 -registration(r10956,c241,s3222).registration15463,413211 -registration(r10956,c241,s3222).registration15463,413211 -registration(r10957,c155,s3222).registration15464,413244 -registration(r10957,c155,s3222).registration15464,413244 -registration(r10958,c118,s3222).registration15465,413277 -registration(r10958,c118,s3222).registration15465,413277 -registration(r10959,c215,s3222).registration15466,413310 -registration(r10959,c215,s3222).registration15466,413310 -registration(r10960,c139,s3222).registration15467,413343 -registration(r10960,c139,s3222).registration15467,413343 -registration(r10961,c66,s3223).registration15468,413376 -registration(r10961,c66,s3223).registration15468,413376 -registration(r10962,c116,s3223).registration15469,413408 -registration(r10962,c116,s3223).registration15469,413408 -registration(r10963,c90,s3223).registration15470,413441 -registration(r10963,c90,s3223).registration15470,413441 -registration(r10964,c122,s3224).registration15471,413473 -registration(r10964,c122,s3224).registration15471,413473 -registration(r10965,c250,s3224).registration15472,413506 -registration(r10965,c250,s3224).registration15472,413506 -registration(r10966,c188,s3224).registration15473,413539 -registration(r10966,c188,s3224).registration15473,413539 -registration(r10967,c35,s3224).registration15474,413572 -registration(r10967,c35,s3224).registration15474,413572 -registration(r10968,c204,s3225).registration15475,413604 -registration(r10968,c204,s3225).registration15475,413604 -registration(r10969,c0,s3225).registration15476,413637 -registration(r10969,c0,s3225).registration15476,413637 -registration(r10970,c215,s3225).registration15477,413668 -registration(r10970,c215,s3225).registration15477,413668 -registration(r10971,c51,s3226).registration15478,413701 -registration(r10971,c51,s3226).registration15478,413701 -registration(r10972,c114,s3226).registration15479,413733 -registration(r10972,c114,s3226).registration15479,413733 -registration(r10973,c247,s3226).registration15480,413766 -registration(r10973,c247,s3226).registration15480,413766 -registration(r10974,c239,s3227).registration15481,413799 -registration(r10974,c239,s3227).registration15481,413799 -registration(r10975,c5,s3227).registration15482,413832 -registration(r10975,c5,s3227).registration15482,413832 -registration(r10976,c183,s3227).registration15483,413863 -registration(r10976,c183,s3227).registration15483,413863 -registration(r10977,c47,s3228).registration15484,413896 -registration(r10977,c47,s3228).registration15484,413896 -registration(r10978,c12,s3228).registration15485,413928 -registration(r10978,c12,s3228).registration15485,413928 -registration(r10979,c122,s3228).registration15486,413960 -registration(r10979,c122,s3228).registration15486,413960 -registration(r10980,c187,s3229).registration15487,413993 -registration(r10980,c187,s3229).registration15487,413993 -registration(r10981,c200,s3229).registration15488,414026 -registration(r10981,c200,s3229).registration15488,414026 -registration(r10982,c244,s3229).registration15489,414059 -registration(r10982,c244,s3229).registration15489,414059 -registration(r10983,c111,s3230).registration15490,414092 -registration(r10983,c111,s3230).registration15490,414092 -registration(r10984,c98,s3230).registration15491,414125 -registration(r10984,c98,s3230).registration15491,414125 -registration(r10985,c75,s3230).registration15492,414157 -registration(r10985,c75,s3230).registration15492,414157 -registration(r10986,c111,s3231).registration15493,414189 -registration(r10986,c111,s3231).registration15493,414189 -registration(r10987,c8,s3231).registration15494,414222 -registration(r10987,c8,s3231).registration15494,414222 -registration(r10988,c125,s3231).registration15495,414253 -registration(r10988,c125,s3231).registration15495,414253 -registration(r10989,c123,s3232).registration15496,414286 -registration(r10989,c123,s3232).registration15496,414286 -registration(r10990,c122,s3232).registration15497,414319 -registration(r10990,c122,s3232).registration15497,414319 -registration(r10991,c25,s3232).registration15498,414352 -registration(r10991,c25,s3232).registration15498,414352 -registration(r10992,c209,s3232).registration15499,414384 -registration(r10992,c209,s3232).registration15499,414384 -registration(r10993,c98,s3233).registration15500,414417 -registration(r10993,c98,s3233).registration15500,414417 -registration(r10994,c19,s3233).registration15501,414449 -registration(r10994,c19,s3233).registration15501,414449 -registration(r10995,c137,s3233).registration15502,414481 -registration(r10995,c137,s3233).registration15502,414481 -registration(r10996,c183,s3234).registration15503,414514 -registration(r10996,c183,s3234).registration15503,414514 -registration(r10997,c80,s3234).registration15504,414547 -registration(r10997,c80,s3234).registration15504,414547 -registration(r10998,c46,s3234).registration15505,414579 -registration(r10998,c46,s3234).registration15505,414579 -registration(r10999,c234,s3234).registration15506,414611 -registration(r10999,c234,s3234).registration15506,414611 -registration(r11000,c212,s3235).registration15507,414644 -registration(r11000,c212,s3235).registration15507,414644 -registration(r11001,c223,s3235).registration15508,414677 -registration(r11001,c223,s3235).registration15508,414677 -registration(r11002,c82,s3235).registration15509,414710 -registration(r11002,c82,s3235).registration15509,414710 -registration(r11003,c182,s3236).registration15510,414742 -registration(r11003,c182,s3236).registration15510,414742 -registration(r11004,c175,s3236).registration15511,414775 -registration(r11004,c175,s3236).registration15511,414775 -registration(r11005,c136,s3236).registration15512,414808 -registration(r11005,c136,s3236).registration15512,414808 -registration(r11006,c31,s3236).registration15513,414841 -registration(r11006,c31,s3236).registration15513,414841 -registration(r11007,c175,s3237).registration15514,414873 -registration(r11007,c175,s3237).registration15514,414873 -registration(r11008,c101,s3237).registration15515,414906 -registration(r11008,c101,s3237).registration15515,414906 -registration(r11009,c57,s3237).registration15516,414939 -registration(r11009,c57,s3237).registration15516,414939 -registration(r11010,c225,s3237).registration15517,414971 -registration(r11010,c225,s3237).registration15517,414971 -registration(r11011,c156,s3238).registration15518,415004 -registration(r11011,c156,s3238).registration15518,415004 -registration(r11012,c239,s3238).registration15519,415037 -registration(r11012,c239,s3238).registration15519,415037 -registration(r11013,c36,s3238).registration15520,415070 -registration(r11013,c36,s3238).registration15520,415070 -registration(r11014,c173,s3238).registration15521,415102 -registration(r11014,c173,s3238).registration15521,415102 -registration(r11015,c66,s3239).registration15522,415135 -registration(r11015,c66,s3239).registration15522,415135 -registration(r11016,c184,s3239).registration15523,415167 -registration(r11016,c184,s3239).registration15523,415167 -registration(r11017,c101,s3239).registration15524,415200 -registration(r11017,c101,s3239).registration15524,415200 -registration(r11018,c113,s3240).registration15525,415233 -registration(r11018,c113,s3240).registration15525,415233 -registration(r11019,c126,s3240).registration15526,415266 -registration(r11019,c126,s3240).registration15526,415266 -registration(r11020,c209,s3240).registration15527,415299 -registration(r11020,c209,s3240).registration15527,415299 -registration(r11021,c36,s3241).registration15528,415332 -registration(r11021,c36,s3241).registration15528,415332 -registration(r11022,c169,s3241).registration15529,415364 -registration(r11022,c169,s3241).registration15529,415364 -registration(r11023,c171,s3241).registration15530,415397 -registration(r11023,c171,s3241).registration15530,415397 -registration(r11024,c52,s3242).registration15531,415430 -registration(r11024,c52,s3242).registration15531,415430 -registration(r11025,c13,s3242).registration15532,415462 -registration(r11025,c13,s3242).registration15532,415462 -registration(r11026,c122,s3242).registration15533,415494 -registration(r11026,c122,s3242).registration15533,415494 -registration(r11027,c223,s3243).registration15534,415527 -registration(r11027,c223,s3243).registration15534,415527 -registration(r11028,c1,s3243).registration15535,415560 -registration(r11028,c1,s3243).registration15535,415560 -registration(r11029,c231,s3243).registration15536,415591 -registration(r11029,c231,s3243).registration15536,415591 -registration(r11030,c132,s3244).registration15537,415624 -registration(r11030,c132,s3244).registration15537,415624 -registration(r11031,c175,s3244).registration15538,415657 -registration(r11031,c175,s3244).registration15538,415657 -registration(r11032,c120,s3244).registration15539,415690 -registration(r11032,c120,s3244).registration15539,415690 -registration(r11033,c39,s3245).registration15540,415723 -registration(r11033,c39,s3245).registration15540,415723 -registration(r11034,c198,s3245).registration15541,415755 -registration(r11034,c198,s3245).registration15541,415755 -registration(r11035,c106,s3245).registration15542,415788 -registration(r11035,c106,s3245).registration15542,415788 -registration(r11036,c81,s3246).registration15543,415821 -registration(r11036,c81,s3246).registration15543,415821 -registration(r11037,c253,s3246).registration15544,415853 -registration(r11037,c253,s3246).registration15544,415853 -registration(r11038,c214,s3246).registration15545,415886 -registration(r11038,c214,s3246).registration15545,415886 -registration(r11039,c66,s3246).registration15546,415919 -registration(r11039,c66,s3246).registration15546,415919 -registration(r11040,c71,s3247).registration15547,415951 -registration(r11040,c71,s3247).registration15547,415951 -registration(r11041,c236,s3247).registration15548,415983 -registration(r11041,c236,s3247).registration15548,415983 -registration(r11042,c221,s3247).registration15549,416016 -registration(r11042,c221,s3247).registration15549,416016 -registration(r11043,c69,s3247).registration15550,416049 -registration(r11043,c69,s3247).registration15550,416049 -registration(r11044,c47,s3247).registration15551,416081 -registration(r11044,c47,s3247).registration15551,416081 -registration(r11045,c191,s3248).registration15552,416113 -registration(r11045,c191,s3248).registration15552,416113 -registration(r11046,c217,s3248).registration15553,416146 -registration(r11046,c217,s3248).registration15553,416146 -registration(r11047,c238,s3248).registration15554,416179 -registration(r11047,c238,s3248).registration15554,416179 -registration(r11048,c213,s3249).registration15555,416212 -registration(r11048,c213,s3249).registration15555,416212 -registration(r11049,c94,s3249).registration15556,416245 -registration(r11049,c94,s3249).registration15556,416245 -registration(r11050,c47,s3249).registration15557,416277 -registration(r11050,c47,s3249).registration15557,416277 -registration(r11051,c170,s3249).registration15558,416309 -registration(r11051,c170,s3249).registration15558,416309 -registration(r11052,c222,s3250).registration15559,416342 -registration(r11052,c222,s3250).registration15559,416342 -registration(r11053,c192,s3250).registration15560,416375 -registration(r11053,c192,s3250).registration15560,416375 -registration(r11054,c208,s3250).registration15561,416408 -registration(r11054,c208,s3250).registration15561,416408 -registration(r11055,c92,s3250).registration15562,416441 -registration(r11055,c92,s3250).registration15562,416441 -registration(r11056,c253,s3251).registration15563,416473 -registration(r11056,c253,s3251).registration15563,416473 -registration(r11057,c124,s3251).registration15564,416506 -registration(r11057,c124,s3251).registration15564,416506 -registration(r11058,c91,s3251).registration15565,416539 -registration(r11058,c91,s3251).registration15565,416539 -registration(r11059,c159,s3252).registration15566,416571 -registration(r11059,c159,s3252).registration15566,416571 -registration(r11060,c8,s3252).registration15567,416604 -registration(r11060,c8,s3252).registration15567,416604 -registration(r11061,c231,s3252).registration15568,416635 -registration(r11061,c231,s3252).registration15568,416635 -registration(r11062,c9,s3253).registration15569,416668 -registration(r11062,c9,s3253).registration15569,416668 -registration(r11063,c210,s3253).registration15570,416699 -registration(r11063,c210,s3253).registration15570,416699 -registration(r11064,c248,s3253).registration15571,416732 -registration(r11064,c248,s3253).registration15571,416732 -registration(r11065,c210,s3254).registration15572,416765 -registration(r11065,c210,s3254).registration15572,416765 -registration(r11066,c40,s3254).registration15573,416798 -registration(r11066,c40,s3254).registration15573,416798 -registration(r11067,c48,s3254).registration15574,416830 -registration(r11067,c48,s3254).registration15574,416830 -registration(r11068,c143,s3255).registration15575,416862 -registration(r11068,c143,s3255).registration15575,416862 -registration(r11069,c222,s3255).registration15576,416895 -registration(r11069,c222,s3255).registration15576,416895 -registration(r11070,c87,s3255).registration15577,416928 -registration(r11070,c87,s3255).registration15577,416928 -registration(r11071,c54,s3256).registration15578,416960 -registration(r11071,c54,s3256).registration15578,416960 -registration(r11072,c95,s3256).registration15579,416992 -registration(r11072,c95,s3256).registration15579,416992 -registration(r11073,c90,s3256).registration15580,417024 -registration(r11073,c90,s3256).registration15580,417024 -registration(r11074,c184,s3257).registration15581,417056 -registration(r11074,c184,s3257).registration15581,417056 -registration(r11075,c217,s3257).registration15582,417089 -registration(r11075,c217,s3257).registration15582,417089 -registration(r11076,c7,s3257).registration15583,417122 -registration(r11076,c7,s3257).registration15583,417122 -registration(r11077,c172,s3257).registration15584,417153 -registration(r11077,c172,s3257).registration15584,417153 -registration(r11078,c179,s3258).registration15585,417186 -registration(r11078,c179,s3258).registration15585,417186 -registration(r11079,c182,s3258).registration15586,417219 -registration(r11079,c182,s3258).registration15586,417219 -registration(r11080,c141,s3258).registration15587,417252 -registration(r11080,c141,s3258).registration15587,417252 -registration(r11081,c152,s3259).registration15588,417285 -registration(r11081,c152,s3259).registration15588,417285 -registration(r11082,c18,s3259).registration15589,417318 -registration(r11082,c18,s3259).registration15589,417318 -registration(r11083,c148,s3259).registration15590,417350 -registration(r11083,c148,s3259).registration15590,417350 -registration(r11084,c103,s3260).registration15591,417383 -registration(r11084,c103,s3260).registration15591,417383 -registration(r11085,c251,s3260).registration15592,417416 -registration(r11085,c251,s3260).registration15592,417416 -registration(r11086,c211,s3260).registration15593,417449 -registration(r11086,c211,s3260).registration15593,417449 -registration(r11087,c248,s3260).registration15594,417482 -registration(r11087,c248,s3260).registration15594,417482 -registration(r11088,c243,s3261).registration15595,417515 -registration(r11088,c243,s3261).registration15595,417515 -registration(r11089,c81,s3261).registration15596,417548 -registration(r11089,c81,s3261).registration15596,417548 -registration(r11090,c1,s3261).registration15597,417580 -registration(r11090,c1,s3261).registration15597,417580 -registration(r11091,c95,s3262).registration15598,417611 -registration(r11091,c95,s3262).registration15598,417611 -registration(r11092,c214,s3262).registration15599,417643 -registration(r11092,c214,s3262).registration15599,417643 -registration(r11093,c99,s3262).registration15600,417676 -registration(r11093,c99,s3262).registration15600,417676 -registration(r11094,c60,s3263).registration15601,417708 -registration(r11094,c60,s3263).registration15601,417708 -registration(r11095,c241,s3263).registration15602,417740 -registration(r11095,c241,s3263).registration15602,417740 -registration(r11096,c162,s3263).registration15603,417773 -registration(r11096,c162,s3263).registration15603,417773 -registration(r11097,c86,s3264).registration15604,417806 -registration(r11097,c86,s3264).registration15604,417806 -registration(r11098,c161,s3264).registration15605,417838 -registration(r11098,c161,s3264).registration15605,417838 -registration(r11099,c38,s3264).registration15606,417871 -registration(r11099,c38,s3264).registration15606,417871 -registration(r11100,c191,s3265).registration15607,417903 -registration(r11100,c191,s3265).registration15607,417903 -registration(r11101,c167,s3265).registration15608,417936 -registration(r11101,c167,s3265).registration15608,417936 -registration(r11102,c210,s3265).registration15609,417969 -registration(r11102,c210,s3265).registration15609,417969 -registration(r11103,c57,s3266).registration15610,418002 -registration(r11103,c57,s3266).registration15610,418002 -registration(r11104,c141,s3266).registration15611,418034 -registration(r11104,c141,s3266).registration15611,418034 -registration(r11105,c33,s3266).registration15612,418067 -registration(r11105,c33,s3266).registration15612,418067 -registration(r11106,c132,s3267).registration15613,418099 -registration(r11106,c132,s3267).registration15613,418099 -registration(r11107,c66,s3267).registration15614,418132 -registration(r11107,c66,s3267).registration15614,418132 -registration(r11108,c216,s3267).registration15615,418164 -registration(r11108,c216,s3267).registration15615,418164 -registration(r11109,c96,s3268).registration15616,418197 -registration(r11109,c96,s3268).registration15616,418197 -registration(r11110,c230,s3268).registration15617,418229 -registration(r11110,c230,s3268).registration15617,418229 -registration(r11111,c149,s3268).registration15618,418262 -registration(r11111,c149,s3268).registration15618,418262 -registration(r11112,c36,s3269).registration15619,418295 -registration(r11112,c36,s3269).registration15619,418295 -registration(r11113,c1,s3269).registration15620,418327 -registration(r11113,c1,s3269).registration15620,418327 -registration(r11114,c193,s3269).registration15621,418358 -registration(r11114,c193,s3269).registration15621,418358 -registration(r11115,c88,s3270).registration15622,418391 -registration(r11115,c88,s3270).registration15622,418391 -registration(r11116,c29,s3270).registration15623,418423 -registration(r11116,c29,s3270).registration15623,418423 -registration(r11117,c142,s3270).registration15624,418455 -registration(r11117,c142,s3270).registration15624,418455 -registration(r11118,c202,s3271).registration15625,418488 -registration(r11118,c202,s3271).registration15625,418488 -registration(r11119,c62,s3271).registration15626,418521 -registration(r11119,c62,s3271).registration15626,418521 -registration(r11120,c92,s3271).registration15627,418553 -registration(r11120,c92,s3271).registration15627,418553 -registration(r11121,c169,s3272).registration15628,418585 -registration(r11121,c169,s3272).registration15628,418585 -registration(r11122,c214,s3272).registration15629,418618 -registration(r11122,c214,s3272).registration15629,418618 -registration(r11123,c92,s3272).registration15630,418651 -registration(r11123,c92,s3272).registration15630,418651 -registration(r11124,c228,s3272).registration15631,418683 -registration(r11124,c228,s3272).registration15631,418683 -registration(r11125,c79,s3273).registration15632,418716 -registration(r11125,c79,s3273).registration15632,418716 -registration(r11126,c105,s3273).registration15633,418748 -registration(r11126,c105,s3273).registration15633,418748 -registration(r11127,c189,s3273).registration15634,418781 -registration(r11127,c189,s3273).registration15634,418781 -registration(r11128,c29,s3273).registration15635,418814 -registration(r11128,c29,s3273).registration15635,418814 -registration(r11129,c187,s3274).registration15636,418846 -registration(r11129,c187,s3274).registration15636,418846 -registration(r11130,c190,s3274).registration15637,418879 -registration(r11130,c190,s3274).registration15637,418879 -registration(r11131,c226,s3274).registration15638,418912 -registration(r11131,c226,s3274).registration15638,418912 -registration(r11132,c228,s3275).registration15639,418945 -registration(r11132,c228,s3275).registration15639,418945 -registration(r11133,c75,s3275).registration15640,418978 -registration(r11133,c75,s3275).registration15640,418978 -registration(r11134,c169,s3275).registration15641,419010 -registration(r11134,c169,s3275).registration15641,419010 -registration(r11135,c199,s3276).registration15642,419043 -registration(r11135,c199,s3276).registration15642,419043 -registration(r11136,c93,s3276).registration15643,419076 -registration(r11136,c93,s3276).registration15643,419076 -registration(r11137,c35,s3276).registration15644,419108 -registration(r11137,c35,s3276).registration15644,419108 -registration(r11138,c99,s3276).registration15645,419140 -registration(r11138,c99,s3276).registration15645,419140 -registration(r11139,c216,s3277).registration15646,419172 -registration(r11139,c216,s3277).registration15646,419172 -registration(r11140,c195,s3277).registration15647,419205 -registration(r11140,c195,s3277).registration15647,419205 -registration(r11141,c50,s3277).registration15648,419238 -registration(r11141,c50,s3277).registration15648,419238 -registration(r11142,c144,s3278).registration15649,419270 -registration(r11142,c144,s3278).registration15649,419270 -registration(r11143,c76,s3278).registration15650,419303 -registration(r11143,c76,s3278).registration15650,419303 -registration(r11144,c192,s3278).registration15651,419335 -registration(r11144,c192,s3278).registration15651,419335 -registration(r11145,c40,s3279).registration15652,419368 -registration(r11145,c40,s3279).registration15652,419368 -registration(r11146,c50,s3279).registration15653,419400 -registration(r11146,c50,s3279).registration15653,419400 -registration(r11147,c115,s3279).registration15654,419432 -registration(r11147,c115,s3279).registration15654,419432 -registration(r11148,c45,s3280).registration15655,419465 -registration(r11148,c45,s3280).registration15655,419465 -registration(r11149,c14,s3280).registration15656,419497 -registration(r11149,c14,s3280).registration15656,419497 -registration(r11150,c51,s3280).registration15657,419529 -registration(r11150,c51,s3280).registration15657,419529 -registration(r11151,c21,s3281).registration15658,419561 -registration(r11151,c21,s3281).registration15658,419561 -registration(r11152,c5,s3281).registration15659,419593 -registration(r11152,c5,s3281).registration15659,419593 -registration(r11153,c156,s3281).registration15660,419624 -registration(r11153,c156,s3281).registration15660,419624 -registration(r11154,c99,s3282).registration15661,419657 -registration(r11154,c99,s3282).registration15661,419657 -registration(r11155,c67,s3282).registration15662,419689 -registration(r11155,c67,s3282).registration15662,419689 -registration(r11156,c206,s3282).registration15663,419721 -registration(r11156,c206,s3282).registration15663,419721 -registration(r11157,c49,s3283).registration15664,419754 -registration(r11157,c49,s3283).registration15664,419754 -registration(r11158,c183,s3283).registration15665,419786 -registration(r11158,c183,s3283).registration15665,419786 -registration(r11159,c48,s3283).registration15666,419819 -registration(r11159,c48,s3283).registration15666,419819 -registration(r11160,c202,s3284).registration15667,419851 -registration(r11160,c202,s3284).registration15667,419851 -registration(r11161,c244,s3284).registration15668,419884 -registration(r11161,c244,s3284).registration15668,419884 -registration(r11162,c132,s3284).registration15669,419917 -registration(r11162,c132,s3284).registration15669,419917 -registration(r11163,c34,s3285).registration15670,419950 -registration(r11163,c34,s3285).registration15670,419950 -registration(r11164,c179,s3285).registration15671,419982 -registration(r11164,c179,s3285).registration15671,419982 -registration(r11165,c154,s3285).registration15672,420015 -registration(r11165,c154,s3285).registration15672,420015 -registration(r11166,c233,s3285).registration15673,420048 -registration(r11166,c233,s3285).registration15673,420048 -registration(r11167,c194,s3286).registration15674,420081 -registration(r11167,c194,s3286).registration15674,420081 -registration(r11168,c17,s3286).registration15675,420114 -registration(r11168,c17,s3286).registration15675,420114 -registration(r11169,c27,s3286).registration15676,420146 -registration(r11169,c27,s3286).registration15676,420146 -registration(r11170,c50,s3286).registration15677,420178 -registration(r11170,c50,s3286).registration15677,420178 -registration(r11171,c129,s3287).registration15678,420210 -registration(r11171,c129,s3287).registration15678,420210 -registration(r11172,c159,s3287).registration15679,420243 -registration(r11172,c159,s3287).registration15679,420243 -registration(r11173,c22,s3287).registration15680,420276 -registration(r11173,c22,s3287).registration15680,420276 -registration(r11174,c2,s3287).registration15681,420308 -registration(r11174,c2,s3287).registration15681,420308 -registration(r11175,c249,s3288).registration15682,420339 -registration(r11175,c249,s3288).registration15682,420339 -registration(r11176,c224,s3288).registration15683,420372 -registration(r11176,c224,s3288).registration15683,420372 -registration(r11177,c197,s3288).registration15684,420405 -registration(r11177,c197,s3288).registration15684,420405 -registration(r11178,c151,s3288).registration15685,420438 -registration(r11178,c151,s3288).registration15685,420438 -registration(r11179,c142,s3289).registration15686,420471 -registration(r11179,c142,s3289).registration15686,420471 -registration(r11180,c210,s3289).registration15687,420504 -registration(r11180,c210,s3289).registration15687,420504 -registration(r11181,c193,s3289).registration15688,420537 -registration(r11181,c193,s3289).registration15688,420537 -registration(r11182,c77,s3290).registration15689,420570 -registration(r11182,c77,s3290).registration15689,420570 -registration(r11183,c236,s3290).registration15690,420602 -registration(r11183,c236,s3290).registration15690,420602 -registration(r11184,c122,s3290).registration15691,420635 -registration(r11184,c122,s3290).registration15691,420635 -registration(r11185,c134,s3290).registration15692,420668 -registration(r11185,c134,s3290).registration15692,420668 -registration(r11186,c3,s3290).registration15693,420701 -registration(r11186,c3,s3290).registration15693,420701 -registration(r11187,c111,s3291).registration15694,420732 -registration(r11187,c111,s3291).registration15694,420732 -registration(r11188,c209,s3291).registration15695,420765 -registration(r11188,c209,s3291).registration15695,420765 -registration(r11189,c21,s3291).registration15696,420798 -registration(r11189,c21,s3291).registration15696,420798 -registration(r11190,c25,s3292).registration15697,420830 -registration(r11190,c25,s3292).registration15697,420830 -registration(r11191,c187,s3292).registration15698,420862 -registration(r11191,c187,s3292).registration15698,420862 -registration(r11192,c206,s3292).registration15699,420895 -registration(r11192,c206,s3292).registration15699,420895 -registration(r11193,c249,s3293).registration15700,420928 -registration(r11193,c249,s3293).registration15700,420928 -registration(r11194,c185,s3293).registration15701,420961 -registration(r11194,c185,s3293).registration15701,420961 -registration(r11195,c44,s3293).registration15702,420994 -registration(r11195,c44,s3293).registration15702,420994 -registration(r11196,c243,s3294).registration15703,421026 -registration(r11196,c243,s3294).registration15703,421026 -registration(r11197,c30,s3294).registration15704,421059 -registration(r11197,c30,s3294).registration15704,421059 -registration(r11198,c53,s3294).registration15705,421091 -registration(r11198,c53,s3294).registration15705,421091 -registration(r11199,c7,s3295).registration15706,421123 -registration(r11199,c7,s3295).registration15706,421123 -registration(r11200,c173,s3295).registration15707,421154 -registration(r11200,c173,s3295).registration15707,421154 -registration(r11201,c48,s3295).registration15708,421187 -registration(r11201,c48,s3295).registration15708,421187 -registration(r11202,c28,s3296).registration15709,421219 -registration(r11202,c28,s3296).registration15709,421219 -registration(r11203,c219,s3296).registration15710,421251 -registration(r11203,c219,s3296).registration15710,421251 -registration(r11204,c250,s3296).registration15711,421284 -registration(r11204,c250,s3296).registration15711,421284 -registration(r11205,c254,s3297).registration15712,421317 -registration(r11205,c254,s3297).registration15712,421317 -registration(r11206,c18,s3297).registration15713,421350 -registration(r11206,c18,s3297).registration15713,421350 -registration(r11207,c186,s3297).registration15714,421382 -registration(r11207,c186,s3297).registration15714,421382 -registration(r11208,c156,s3297).registration15715,421415 -registration(r11208,c156,s3297).registration15715,421415 -registration(r11209,c45,s3297).registration15716,421448 -registration(r11209,c45,s3297).registration15716,421448 -registration(r11210,c88,s3298).registration15717,421480 -registration(r11210,c88,s3298).registration15717,421480 -registration(r11211,c213,s3298).registration15718,421512 -registration(r11211,c213,s3298).registration15718,421512 -registration(r11212,c229,s3298).registration15719,421545 -registration(r11212,c229,s3298).registration15719,421545 -registration(r11213,c205,s3298).registration15720,421578 -registration(r11213,c205,s3298).registration15720,421578 -registration(r11214,c88,s3299).registration15721,421611 -registration(r11214,c88,s3299).registration15721,421611 -registration(r11215,c194,s3299).registration15722,421643 -registration(r11215,c194,s3299).registration15722,421643 -registration(r11216,c58,s3299).registration15723,421676 -registration(r11216,c58,s3299).registration15723,421676 -registration(r11217,c111,s3300).registration15724,421708 -registration(r11217,c111,s3300).registration15724,421708 -registration(r11218,c55,s3300).registration15725,421741 -registration(r11218,c55,s3300).registration15725,421741 -registration(r11219,c141,s3300).registration15726,421773 -registration(r11219,c141,s3300).registration15726,421773 -registration(r11220,c189,s3301).registration15727,421806 -registration(r11220,c189,s3301).registration15727,421806 -registration(r11221,c215,s3301).registration15728,421839 -registration(r11221,c215,s3301).registration15728,421839 -registration(r11222,c223,s3301).registration15729,421872 -registration(r11222,c223,s3301).registration15729,421872 -registration(r11223,c218,s3302).registration15730,421905 -registration(r11223,c218,s3302).registration15730,421905 -registration(r11224,c123,s3302).registration15731,421938 -registration(r11224,c123,s3302).registration15731,421938 -registration(r11225,c156,s3302).registration15732,421971 -registration(r11225,c156,s3302).registration15732,421971 -registration(r11226,c87,s3303).registration15733,422004 -registration(r11226,c87,s3303).registration15733,422004 -registration(r11227,c236,s3303).registration15734,422036 -registration(r11227,c236,s3303).registration15734,422036 -registration(r11228,c42,s3303).registration15735,422069 -registration(r11228,c42,s3303).registration15735,422069 -registration(r11229,c132,s3303).registration15736,422101 -registration(r11229,c132,s3303).registration15736,422101 -registration(r11230,c53,s3304).registration15737,422134 -registration(r11230,c53,s3304).registration15737,422134 -registration(r11231,c254,s3304).registration15738,422166 -registration(r11231,c254,s3304).registration15738,422166 -registration(r11232,c174,s3304).registration15739,422199 -registration(r11232,c174,s3304).registration15739,422199 -registration(r11233,c156,s3304).registration15740,422232 -registration(r11233,c156,s3304).registration15740,422232 -registration(r11234,c197,s3304).registration15741,422265 -registration(r11234,c197,s3304).registration15741,422265 -registration(r11235,c216,s3305).registration15742,422298 -registration(r11235,c216,s3305).registration15742,422298 -registration(r11236,c83,s3305).registration15743,422331 -registration(r11236,c83,s3305).registration15743,422331 -registration(r11237,c165,s3305).registration15744,422363 -registration(r11237,c165,s3305).registration15744,422363 -registration(r11238,c51,s3306).registration15745,422396 -registration(r11238,c51,s3306).registration15745,422396 -registration(r11239,c191,s3306).registration15746,422428 -registration(r11239,c191,s3306).registration15746,422428 -registration(r11240,c111,s3306).registration15747,422461 -registration(r11240,c111,s3306).registration15747,422461 -registration(r11241,c79,s3307).registration15748,422494 -registration(r11241,c79,s3307).registration15748,422494 -registration(r11242,c201,s3307).registration15749,422526 -registration(r11242,c201,s3307).registration15749,422526 -registration(r11243,c72,s3307).registration15750,422559 -registration(r11243,c72,s3307).registration15750,422559 -registration(r11244,c68,s3307).registration15751,422591 -registration(r11244,c68,s3307).registration15751,422591 -registration(r11245,c2,s3308).registration15752,422623 -registration(r11245,c2,s3308).registration15752,422623 -registration(r11246,c211,s3308).registration15753,422654 -registration(r11246,c211,s3308).registration15753,422654 -registration(r11247,c61,s3308).registration15754,422687 -registration(r11247,c61,s3308).registration15754,422687 -registration(r11248,c156,s3309).registration15755,422719 -registration(r11248,c156,s3309).registration15755,422719 -registration(r11249,c8,s3309).registration15756,422752 -registration(r11249,c8,s3309).registration15756,422752 -registration(r11250,c130,s3309).registration15757,422783 -registration(r11250,c130,s3309).registration15757,422783 -registration(r11251,c49,s3309).registration15758,422816 -registration(r11251,c49,s3309).registration15758,422816 -registration(r11252,c214,s3310).registration15759,422848 -registration(r11252,c214,s3310).registration15759,422848 -registration(r11253,c164,s3310).registration15760,422881 -registration(r11253,c164,s3310).registration15760,422881 -registration(r11254,c56,s3310).registration15761,422914 -registration(r11254,c56,s3310).registration15761,422914 -registration(r11255,c139,s3311).registration15762,422946 -registration(r11255,c139,s3311).registration15762,422946 -registration(r11256,c66,s3311).registration15763,422979 -registration(r11256,c66,s3311).registration15763,422979 -registration(r11257,c198,s3311).registration15764,423011 -registration(r11257,c198,s3311).registration15764,423011 -registration(r11258,c117,s3311).registration15765,423044 -registration(r11258,c117,s3311).registration15765,423044 -registration(r11259,c134,s3312).registration15766,423077 -registration(r11259,c134,s3312).registration15766,423077 -registration(r11260,c101,s3312).registration15767,423110 -registration(r11260,c101,s3312).registration15767,423110 -registration(r11261,c26,s3312).registration15768,423143 -registration(r11261,c26,s3312).registration15768,423143 -registration(r11262,c99,s3312).registration15769,423175 -registration(r11262,c99,s3312).registration15769,423175 -registration(r11263,c255,s3313).registration15770,423207 -registration(r11263,c255,s3313).registration15770,423207 -registration(r11264,c116,s3313).registration15771,423240 -registration(r11264,c116,s3313).registration15771,423240 -registration(r11265,c71,s3313).registration15772,423273 -registration(r11265,c71,s3313).registration15772,423273 -registration(r11266,c72,s3313).registration15773,423305 -registration(r11266,c72,s3313).registration15773,423305 -registration(r11267,c240,s3314).registration15774,423337 -registration(r11267,c240,s3314).registration15774,423337 -registration(r11268,c71,s3314).registration15775,423370 -registration(r11268,c71,s3314).registration15775,423370 -registration(r11269,c33,s3314).registration15776,423402 -registration(r11269,c33,s3314).registration15776,423402 -registration(r11270,c244,s3315).registration15777,423434 -registration(r11270,c244,s3315).registration15777,423434 -registration(r11271,c0,s3315).registration15778,423467 -registration(r11271,c0,s3315).registration15778,423467 -registration(r11272,c251,s3315).registration15779,423498 -registration(r11272,c251,s3315).registration15779,423498 -registration(r11273,c52,s3316).registration15780,423531 -registration(r11273,c52,s3316).registration15780,423531 -registration(r11274,c103,s3316).registration15781,423563 -registration(r11274,c103,s3316).registration15781,423563 -registration(r11275,c35,s3316).registration15782,423596 -registration(r11275,c35,s3316).registration15782,423596 -registration(r11276,c232,s3317).registration15783,423628 -registration(r11276,c232,s3317).registration15783,423628 -registration(r11277,c213,s3317).registration15784,423661 -registration(r11277,c213,s3317).registration15784,423661 -registration(r11278,c31,s3317).registration15785,423694 -registration(r11278,c31,s3317).registration15785,423694 -registration(r11279,c133,s3318).registration15786,423726 -registration(r11279,c133,s3318).registration15786,423726 -registration(r11280,c136,s3318).registration15787,423759 -registration(r11280,c136,s3318).registration15787,423759 -registration(r11281,c51,s3318).registration15788,423792 -registration(r11281,c51,s3318).registration15788,423792 -registration(r11282,c50,s3319).registration15789,423824 -registration(r11282,c50,s3319).registration15789,423824 -registration(r11283,c41,s3319).registration15790,423856 -registration(r11283,c41,s3319).registration15790,423856 -registration(r11284,c53,s3319).registration15791,423888 -registration(r11284,c53,s3319).registration15791,423888 -registration(r11285,c185,s3320).registration15792,423920 -registration(r11285,c185,s3320).registration15792,423920 -registration(r11286,c36,s3320).registration15793,423953 -registration(r11286,c36,s3320).registration15793,423953 -registration(r11287,c186,s3320).registration15794,423985 -registration(r11287,c186,s3320).registration15794,423985 -registration(r11288,c131,s3320).registration15795,424018 -registration(r11288,c131,s3320).registration15795,424018 -registration(r11289,c207,s3321).registration15796,424051 -registration(r11289,c207,s3321).registration15796,424051 -registration(r11290,c30,s3321).registration15797,424084 -registration(r11290,c30,s3321).registration15797,424084 -registration(r11291,c127,s3321).registration15798,424116 -registration(r11291,c127,s3321).registration15798,424116 -registration(r11292,c179,s3322).registration15799,424149 -registration(r11292,c179,s3322).registration15799,424149 -registration(r11293,c1,s3322).registration15800,424182 -registration(r11293,c1,s3322).registration15800,424182 -registration(r11294,c231,s3322).registration15801,424213 -registration(r11294,c231,s3322).registration15801,424213 -registration(r11295,c208,s3323).registration15802,424246 -registration(r11295,c208,s3323).registration15802,424246 -registration(r11296,c74,s3323).registration15803,424279 -registration(r11296,c74,s3323).registration15803,424279 -registration(r11297,c201,s3323).registration15804,424311 -registration(r11297,c201,s3323).registration15804,424311 -registration(r11298,c79,s3324).registration15805,424344 -registration(r11298,c79,s3324).registration15805,424344 -registration(r11299,c198,s3324).registration15806,424376 -registration(r11299,c198,s3324).registration15806,424376 -registration(r11300,c219,s3324).registration15807,424409 -registration(r11300,c219,s3324).registration15807,424409 -registration(r11301,c176,s3324).registration15808,424442 -registration(r11301,c176,s3324).registration15808,424442 -registration(r11302,c45,s3324).registration15809,424475 -registration(r11302,c45,s3324).registration15809,424475 -registration(r11303,c229,s3325).registration15810,424507 -registration(r11303,c229,s3325).registration15810,424507 -registration(r11304,c66,s3325).registration15811,424540 -registration(r11304,c66,s3325).registration15811,424540 -registration(r11305,c161,s3325).registration15812,424572 -registration(r11305,c161,s3325).registration15812,424572 -registration(r11306,c91,s3326).registration15813,424605 -registration(r11306,c91,s3326).registration15813,424605 -registration(r11307,c123,s3326).registration15814,424637 -registration(r11307,c123,s3326).registration15814,424637 -registration(r11308,c134,s3326).registration15815,424670 -registration(r11308,c134,s3326).registration15815,424670 -registration(r11309,c164,s3327).registration15816,424703 -registration(r11309,c164,s3327).registration15816,424703 -registration(r11310,c94,s3327).registration15817,424736 -registration(r11310,c94,s3327).registration15817,424736 -registration(r11311,c228,s3327).registration15818,424768 -registration(r11311,c228,s3327).registration15818,424768 -registration(r11312,c230,s3327).registration15819,424801 -registration(r11312,c230,s3327).registration15819,424801 -registration(r11313,c79,s3328).registration15820,424834 -registration(r11313,c79,s3328).registration15820,424834 -registration(r11314,c134,s3328).registration15821,424866 -registration(r11314,c134,s3328).registration15821,424866 -registration(r11315,c146,s3328).registration15822,424899 -registration(r11315,c146,s3328).registration15822,424899 -registration(r11316,c209,s3328).registration15823,424932 -registration(r11316,c209,s3328).registration15823,424932 -registration(r11317,c93,s3329).registration15824,424965 -registration(r11317,c93,s3329).registration15824,424965 -registration(r11318,c121,s3329).registration15825,424997 -registration(r11318,c121,s3329).registration15825,424997 -registration(r11319,c172,s3329).registration15826,425030 -registration(r11319,c172,s3329).registration15826,425030 -registration(r11320,c82,s3329).registration15827,425063 -registration(r11320,c82,s3329).registration15827,425063 -registration(r11321,c212,s3330).registration15828,425095 -registration(r11321,c212,s3330).registration15828,425095 -registration(r11322,c97,s3330).registration15829,425128 -registration(r11322,c97,s3330).registration15829,425128 -registration(r11323,c223,s3330).registration15830,425160 -registration(r11323,c223,s3330).registration15830,425160 -registration(r11324,c128,s3331).registration15831,425193 -registration(r11324,c128,s3331).registration15831,425193 -registration(r11325,c88,s3331).registration15832,425226 -registration(r11325,c88,s3331).registration15832,425226 -registration(r11326,c12,s3331).registration15833,425258 -registration(r11326,c12,s3331).registration15833,425258 -registration(r11327,c146,s3332).registration15834,425290 -registration(r11327,c146,s3332).registration15834,425290 -registration(r11328,c187,s3332).registration15835,425323 -registration(r11328,c187,s3332).registration15835,425323 -registration(r11329,c29,s3332).registration15836,425356 -registration(r11329,c29,s3332).registration15836,425356 -registration(r11330,c2,s3332).registration15837,425388 -registration(r11330,c2,s3332).registration15837,425388 -registration(r11331,c158,s3333).registration15838,425419 -registration(r11331,c158,s3333).registration15838,425419 -registration(r11332,c45,s3333).registration15839,425452 -registration(r11332,c45,s3333).registration15839,425452 -registration(r11333,c232,s3333).registration15840,425484 -registration(r11333,c232,s3333).registration15840,425484 -registration(r11334,c122,s3334).registration15841,425517 -registration(r11334,c122,s3334).registration15841,425517 -registration(r11335,c13,s3334).registration15842,425550 -registration(r11335,c13,s3334).registration15842,425550 -registration(r11336,c133,s3334).registration15843,425582 -registration(r11336,c133,s3334).registration15843,425582 -registration(r11337,c253,s3335).registration15844,425615 -registration(r11337,c253,s3335).registration15844,425615 -registration(r11338,c128,s3335).registration15845,425648 -registration(r11338,c128,s3335).registration15845,425648 -registration(r11339,c142,s3335).registration15846,425681 -registration(r11339,c142,s3335).registration15846,425681 -registration(r11340,c97,s3335).registration15847,425714 -registration(r11340,c97,s3335).registration15847,425714 -registration(r11341,c178,s3336).registration15848,425746 -registration(r11341,c178,s3336).registration15848,425746 -registration(r11342,c16,s3336).registration15849,425779 -registration(r11342,c16,s3336).registration15849,425779 -registration(r11343,c29,s3336).registration15850,425811 -registration(r11343,c29,s3336).registration15850,425811 -registration(r11344,c118,s3337).registration15851,425843 -registration(r11344,c118,s3337).registration15851,425843 -registration(r11345,c99,s3337).registration15852,425876 -registration(r11345,c99,s3337).registration15852,425876 -registration(r11346,c108,s3337).registration15853,425908 -registration(r11346,c108,s3337).registration15853,425908 -registration(r11347,c39,s3338).registration15854,425941 -registration(r11347,c39,s3338).registration15854,425941 -registration(r11348,c104,s3338).registration15855,425973 -registration(r11348,c104,s3338).registration15855,425973 -registration(r11349,c45,s3338).registration15856,426006 -registration(r11349,c45,s3338).registration15856,426006 -registration(r11350,c203,s3339).registration15857,426038 -registration(r11350,c203,s3339).registration15857,426038 -registration(r11351,c111,s3339).registration15858,426071 -registration(r11351,c111,s3339).registration15858,426071 -registration(r11352,c83,s3339).registration15859,426104 -registration(r11352,c83,s3339).registration15859,426104 -registration(r11353,c206,s3339).registration15860,426136 -registration(r11353,c206,s3339).registration15860,426136 -registration(r11354,c199,s3340).registration15861,426169 -registration(r11354,c199,s3340).registration15861,426169 -registration(r11355,c168,s3340).registration15862,426202 -registration(r11355,c168,s3340).registration15862,426202 -registration(r11356,c162,s3340).registration15863,426235 -registration(r11356,c162,s3340).registration15863,426235 -registration(r11357,c165,s3340).registration15864,426268 -registration(r11357,c165,s3340).registration15864,426268 -registration(r11358,c192,s3340).registration15865,426301 -registration(r11358,c192,s3340).registration15865,426301 -registration(r11359,c247,s3341).registration15866,426334 -registration(r11359,c247,s3341).registration15866,426334 -registration(r11360,c86,s3341).registration15867,426367 -registration(r11360,c86,s3341).registration15867,426367 -registration(r11361,c35,s3341).registration15868,426399 -registration(r11361,c35,s3341).registration15868,426399 -registration(r11362,c64,s3342).registration15869,426431 -registration(r11362,c64,s3342).registration15869,426431 -registration(r11363,c2,s3342).registration15870,426463 -registration(r11363,c2,s3342).registration15870,426463 -registration(r11364,c247,s3342).registration15871,426494 -registration(r11364,c247,s3342).registration15871,426494 -registration(r11365,c99,s3343).registration15872,426527 -registration(r11365,c99,s3343).registration15872,426527 -registration(r11366,c1,s3343).registration15873,426559 -registration(r11366,c1,s3343).registration15873,426559 -registration(r11367,c92,s3343).registration15874,426590 -registration(r11367,c92,s3343).registration15874,426590 -registration(r11368,c137,s3344).registration15875,426622 -registration(r11368,c137,s3344).registration15875,426622 -registration(r11369,c206,s3344).registration15876,426655 -registration(r11369,c206,s3344).registration15876,426655 -registration(r11370,c212,s3344).registration15877,426688 -registration(r11370,c212,s3344).registration15877,426688 -registration(r11371,c39,s3345).registration15878,426721 -registration(r11371,c39,s3345).registration15878,426721 -registration(r11372,c14,s3345).registration15879,426753 -registration(r11372,c14,s3345).registration15879,426753 -registration(r11373,c100,s3345).registration15880,426785 -registration(r11373,c100,s3345).registration15880,426785 -registration(r11374,c12,s3346).registration15881,426818 -registration(r11374,c12,s3346).registration15881,426818 -registration(r11375,c153,s3346).registration15882,426850 -registration(r11375,c153,s3346).registration15882,426850 -registration(r11376,c7,s3346).registration15883,426883 -registration(r11376,c7,s3346).registration15883,426883 -registration(r11377,c200,s3347).registration15884,426914 -registration(r11377,c200,s3347).registration15884,426914 -registration(r11378,c170,s3347).registration15885,426947 -registration(r11378,c170,s3347).registration15885,426947 -registration(r11379,c21,s3347).registration15886,426980 -registration(r11379,c21,s3347).registration15886,426980 -registration(r11380,c124,s3348).registration15887,427012 -registration(r11380,c124,s3348).registration15887,427012 -registration(r11381,c44,s3348).registration15888,427045 -registration(r11381,c44,s3348).registration15888,427045 -registration(r11382,c87,s3348).registration15889,427077 -registration(r11382,c87,s3348).registration15889,427077 -registration(r11383,c189,s3349).registration15890,427109 -registration(r11383,c189,s3349).registration15890,427109 -registration(r11384,c215,s3349).registration15891,427142 -registration(r11384,c215,s3349).registration15891,427142 -registration(r11385,c228,s3349).registration15892,427175 -registration(r11385,c228,s3349).registration15892,427175 -registration(r11386,c98,s3349).registration15893,427208 -registration(r11386,c98,s3349).registration15893,427208 -registration(r11387,c163,s3350).registration15894,427240 -registration(r11387,c163,s3350).registration15894,427240 -registration(r11388,c49,s3350).registration15895,427273 -registration(r11388,c49,s3350).registration15895,427273 -registration(r11389,c33,s3350).registration15896,427305 -registration(r11389,c33,s3350).registration15896,427305 -registration(r11390,c73,s3351).registration15897,427337 -registration(r11390,c73,s3351).registration15897,427337 -registration(r11391,c6,s3351).registration15898,427369 -registration(r11391,c6,s3351).registration15898,427369 -registration(r11392,c212,s3351).registration15899,427400 -registration(r11392,c212,s3351).registration15899,427400 -registration(r11393,c224,s3352).registration15900,427433 -registration(r11393,c224,s3352).registration15900,427433 -registration(r11394,c216,s3352).registration15901,427466 -registration(r11394,c216,s3352).registration15901,427466 -registration(r11395,c228,s3352).registration15902,427499 -registration(r11395,c228,s3352).registration15902,427499 -registration(r11396,c172,s3353).registration15903,427532 -registration(r11396,c172,s3353).registration15903,427532 -registration(r11397,c62,s3353).registration15904,427565 -registration(r11397,c62,s3353).registration15904,427565 -registration(r11398,c173,s3353).registration15905,427597 -registration(r11398,c173,s3353).registration15905,427597 -registration(r11399,c41,s3354).registration15906,427630 -registration(r11399,c41,s3354).registration15906,427630 -registration(r11400,c197,s3354).registration15907,427662 -registration(r11400,c197,s3354).registration15907,427662 -registration(r11401,c235,s3354).registration15908,427695 -registration(r11401,c235,s3354).registration15908,427695 -registration(r11402,c168,s3355).registration15909,427728 -registration(r11402,c168,s3355).registration15909,427728 -registration(r11403,c116,s3355).registration15910,427761 -registration(r11403,c116,s3355).registration15910,427761 -registration(r11404,c140,s3355).registration15911,427794 -registration(r11404,c140,s3355).registration15911,427794 -registration(r11405,c218,s3356).registration15912,427827 -registration(r11405,c218,s3356).registration15912,427827 -registration(r11406,c101,s3356).registration15913,427860 -registration(r11406,c101,s3356).registration15913,427860 -registration(r11407,c10,s3356).registration15914,427893 -registration(r11407,c10,s3356).registration15914,427893 -registration(r11408,c123,s3357).registration15915,427925 -registration(r11408,c123,s3357).registration15915,427925 -registration(r11409,c69,s3357).registration15916,427958 -registration(r11409,c69,s3357).registration15916,427958 -registration(r11410,c101,s3357).registration15917,427990 -registration(r11410,c101,s3357).registration15917,427990 -registration(r11411,c65,s3358).registration15918,428023 -registration(r11411,c65,s3358).registration15918,428023 -registration(r11412,c48,s3358).registration15919,428055 -registration(r11412,c48,s3358).registration15919,428055 -registration(r11413,c96,s3358).registration15920,428087 -registration(r11413,c96,s3358).registration15920,428087 -registration(r11414,c197,s3358).registration15921,428119 -registration(r11414,c197,s3358).registration15921,428119 -registration(r11415,c210,s3359).registration15922,428152 -registration(r11415,c210,s3359).registration15922,428152 -registration(r11416,c3,s3359).registration15923,428185 -registration(r11416,c3,s3359).registration15923,428185 -registration(r11417,c163,s3359).registration15924,428216 -registration(r11417,c163,s3359).registration15924,428216 -registration(r11418,c205,s3360).registration15925,428249 -registration(r11418,c205,s3360).registration15925,428249 -registration(r11419,c47,s3360).registration15926,428282 -registration(r11419,c47,s3360).registration15926,428282 -registration(r11420,c130,s3360).registration15927,428314 -registration(r11420,c130,s3360).registration15927,428314 -registration(r11421,c43,s3361).registration15928,428347 -registration(r11421,c43,s3361).registration15928,428347 -registration(r11422,c222,s3361).registration15929,428379 -registration(r11422,c222,s3361).registration15929,428379 -registration(r11423,c100,s3361).registration15930,428412 -registration(r11423,c100,s3361).registration15930,428412 -registration(r11424,c62,s3362).registration15931,428445 -registration(r11424,c62,s3362).registration15931,428445 -registration(r11425,c86,s3362).registration15932,428477 -registration(r11425,c86,s3362).registration15932,428477 -registration(r11426,c193,s3362).registration15933,428509 -registration(r11426,c193,s3362).registration15933,428509 -registration(r11427,c59,s3363).registration15934,428542 -registration(r11427,c59,s3363).registration15934,428542 -registration(r11428,c129,s3363).registration15935,428574 -registration(r11428,c129,s3363).registration15935,428574 -registration(r11429,c24,s3363).registration15936,428607 -registration(r11429,c24,s3363).registration15936,428607 -registration(r11430,c91,s3363).registration15937,428639 -registration(r11430,c91,s3363).registration15937,428639 -registration(r11431,c187,s3364).registration15938,428671 -registration(r11431,c187,s3364).registration15938,428671 -registration(r11432,c101,s3364).registration15939,428704 -registration(r11432,c101,s3364).registration15939,428704 -registration(r11433,c128,s3364).registration15940,428737 -registration(r11433,c128,s3364).registration15940,428737 -registration(r11434,c82,s3365).registration15941,428770 -registration(r11434,c82,s3365).registration15941,428770 -registration(r11435,c132,s3365).registration15942,428802 -registration(r11435,c132,s3365).registration15942,428802 -registration(r11436,c1,s3365).registration15943,428835 -registration(r11436,c1,s3365).registration15943,428835 -registration(r11437,c207,s3365).registration15944,428866 -registration(r11437,c207,s3365).registration15944,428866 -registration(r11438,c236,s3366).registration15945,428899 -registration(r11438,c236,s3366).registration15945,428899 -registration(r11439,c157,s3366).registration15946,428932 -registration(r11439,c157,s3366).registration15946,428932 -registration(r11440,c56,s3366).registration15947,428965 -registration(r11440,c56,s3366).registration15947,428965 -registration(r11441,c23,s3367).registration15948,428997 -registration(r11441,c23,s3367).registration15948,428997 -registration(r11442,c41,s3367).registration15949,429029 -registration(r11442,c41,s3367).registration15949,429029 -registration(r11443,c185,s3367).registration15950,429061 -registration(r11443,c185,s3367).registration15950,429061 -registration(r11444,c14,s3368).registration15951,429094 -registration(r11444,c14,s3368).registration15951,429094 -registration(r11445,c143,s3368).registration15952,429126 -registration(r11445,c143,s3368).registration15952,429126 -registration(r11446,c163,s3368).registration15953,429159 -registration(r11446,c163,s3368).registration15953,429159 -registration(r11447,c35,s3369).registration15954,429192 -registration(r11447,c35,s3369).registration15954,429192 -registration(r11448,c219,s3369).registration15955,429224 -registration(r11448,c219,s3369).registration15955,429224 -registration(r11449,c86,s3369).registration15956,429257 -registration(r11449,c86,s3369).registration15956,429257 -registration(r11450,c54,s3369).registration15957,429289 -registration(r11450,c54,s3369).registration15957,429289 -registration(r11451,c145,s3369).registration15958,429321 -registration(r11451,c145,s3369).registration15958,429321 -registration(r11452,c182,s3370).registration15959,429354 -registration(r11452,c182,s3370).registration15959,429354 -registration(r11453,c146,s3370).registration15960,429387 -registration(r11453,c146,s3370).registration15960,429387 -registration(r11454,c237,s3370).registration15961,429420 -registration(r11454,c237,s3370).registration15961,429420 -registration(r11455,c22,s3370).registration15962,429453 -registration(r11455,c22,s3370).registration15962,429453 -registration(r11456,c197,s3371).registration15963,429485 -registration(r11456,c197,s3371).registration15963,429485 -registration(r11457,c49,s3371).registration15964,429518 -registration(r11457,c49,s3371).registration15964,429518 -registration(r11458,c189,s3371).registration15965,429550 -registration(r11458,c189,s3371).registration15965,429550 -registration(r11459,c246,s3372).registration15966,429583 -registration(r11459,c246,s3372).registration15966,429583 -registration(r11460,c118,s3372).registration15967,429616 -registration(r11460,c118,s3372).registration15967,429616 -registration(r11461,c154,s3372).registration15968,429649 -registration(r11461,c154,s3372).registration15968,429649 -registration(r11462,c160,s3372).registration15969,429682 -registration(r11462,c160,s3372).registration15969,429682 -registration(r11463,c220,s3373).registration15970,429715 -registration(r11463,c220,s3373).registration15970,429715 -registration(r11464,c8,s3373).registration15971,429748 -registration(r11464,c8,s3373).registration15971,429748 -registration(r11465,c98,s3373).registration15972,429779 -registration(r11465,c98,s3373).registration15972,429779 -registration(r11466,c37,s3374).registration15973,429811 -registration(r11466,c37,s3374).registration15973,429811 -registration(r11467,c55,s3374).registration15974,429843 -registration(r11467,c55,s3374).registration15974,429843 -registration(r11468,c206,s3374).registration15975,429875 -registration(r11468,c206,s3374).registration15975,429875 -registration(r11469,c141,s3374).registration15976,429908 -registration(r11469,c141,s3374).registration15976,429908 -registration(r11470,c54,s3375).registration15977,429941 -registration(r11470,c54,s3375).registration15977,429941 -registration(r11471,c159,s3375).registration15978,429973 -registration(r11471,c159,s3375).registration15978,429973 -registration(r11472,c136,s3375).registration15979,430006 -registration(r11472,c136,s3375).registration15979,430006 -registration(r11473,c117,s3375).registration15980,430039 -registration(r11473,c117,s3375).registration15980,430039 -registration(r11474,c245,s3376).registration15981,430072 -registration(r11474,c245,s3376).registration15981,430072 -registration(r11475,c72,s3376).registration15982,430105 -registration(r11475,c72,s3376).registration15982,430105 -registration(r11476,c100,s3376).registration15983,430137 -registration(r11476,c100,s3376).registration15983,430137 -registration(r11477,c34,s3377).registration15984,430170 -registration(r11477,c34,s3377).registration15984,430170 -registration(r11478,c110,s3377).registration15985,430202 -registration(r11478,c110,s3377).registration15985,430202 -registration(r11479,c75,s3377).registration15986,430235 -registration(r11479,c75,s3377).registration15986,430235 -registration(r11480,c229,s3377).registration15987,430267 -registration(r11480,c229,s3377).registration15987,430267 -registration(r11481,c38,s3378).registration15988,430300 -registration(r11481,c38,s3378).registration15988,430300 -registration(r11482,c134,s3378).registration15989,430332 -registration(r11482,c134,s3378).registration15989,430332 -registration(r11483,c57,s3378).registration15990,430365 -registration(r11483,c57,s3378).registration15990,430365 -registration(r11484,c143,s3378).registration15991,430397 -registration(r11484,c143,s3378).registration15991,430397 -registration(r11485,c109,s3379).registration15992,430430 -registration(r11485,c109,s3379).registration15992,430430 -registration(r11486,c56,s3379).registration15993,430463 -registration(r11486,c56,s3379).registration15993,430463 -registration(r11487,c193,s3379).registration15994,430495 -registration(r11487,c193,s3379).registration15994,430495 -registration(r11488,c194,s3379).registration15995,430528 -registration(r11488,c194,s3379).registration15995,430528 -registration(r11489,c49,s3380).registration15996,430561 -registration(r11489,c49,s3380).registration15996,430561 -registration(r11490,c254,s3380).registration15997,430593 -registration(r11490,c254,s3380).registration15997,430593 -registration(r11491,c247,s3380).registration15998,430626 -registration(r11491,c247,s3380).registration15998,430626 -registration(r11492,c229,s3381).registration15999,430659 -registration(r11492,c229,s3381).registration15999,430659 -registration(r11493,c2,s3381).registration16000,430692 -registration(r11493,c2,s3381).registration16000,430692 -registration(r11494,c252,s3381).registration16001,430723 -registration(r11494,c252,s3381).registration16001,430723 -registration(r11495,c96,s3382).registration16002,430756 -registration(r11495,c96,s3382).registration16002,430756 -registration(r11496,c150,s3382).registration16003,430788 -registration(r11496,c150,s3382).registration16003,430788 -registration(r11497,c198,s3382).registration16004,430821 -registration(r11497,c198,s3382).registration16004,430821 -registration(r11498,c16,s3382).registration16005,430854 -registration(r11498,c16,s3382).registration16005,430854 -registration(r11499,c155,s3383).registration16006,430886 -registration(r11499,c155,s3383).registration16006,430886 -registration(r11500,c233,s3383).registration16007,430919 -registration(r11500,c233,s3383).registration16007,430919 -registration(r11501,c246,s3383).registration16008,430952 -registration(r11501,c246,s3383).registration16008,430952 -registration(r11502,c47,s3384).registration16009,430985 -registration(r11502,c47,s3384).registration16009,430985 -registration(r11503,c196,s3384).registration16010,431017 -registration(r11503,c196,s3384).registration16010,431017 -registration(r11504,c253,s3384).registration16011,431050 -registration(r11504,c253,s3384).registration16011,431050 -registration(r11505,c54,s3384).registration16012,431083 -registration(r11505,c54,s3384).registration16012,431083 -registration(r11506,c140,s3385).registration16013,431115 -registration(r11506,c140,s3385).registration16013,431115 -registration(r11507,c214,s3385).registration16014,431148 -registration(r11507,c214,s3385).registration16014,431148 -registration(r11508,c60,s3385).registration16015,431181 -registration(r11508,c60,s3385).registration16015,431181 -registration(r11509,c58,s3385).registration16016,431213 -registration(r11509,c58,s3385).registration16016,431213 -registration(r11510,c71,s3386).registration16017,431245 -registration(r11510,c71,s3386).registration16017,431245 -registration(r11511,c216,s3386).registration16018,431277 -registration(r11511,c216,s3386).registration16018,431277 -registration(r11512,c192,s3386).registration16019,431310 -registration(r11512,c192,s3386).registration16019,431310 -registration(r11513,c219,s3386).registration16020,431343 -registration(r11513,c219,s3386).registration16020,431343 -registration(r11514,c8,s3387).registration16021,431376 -registration(r11514,c8,s3387).registration16021,431376 -registration(r11515,c39,s3387).registration16022,431407 -registration(r11515,c39,s3387).registration16022,431407 -registration(r11516,c30,s3387).registration16023,431439 -registration(r11516,c30,s3387).registration16023,431439 -registration(r11517,c160,s3388).registration16024,431471 -registration(r11517,c160,s3388).registration16024,431471 -registration(r11518,c163,s3388).registration16025,431504 -registration(r11518,c163,s3388).registration16025,431504 -registration(r11519,c253,s3388).registration16026,431537 -registration(r11519,c253,s3388).registration16026,431537 -registration(r11520,c244,s3389).registration16027,431570 -registration(r11520,c244,s3389).registration16027,431570 -registration(r11521,c253,s3389).registration16028,431603 -registration(r11521,c253,s3389).registration16028,431603 -registration(r11522,c251,s3389).registration16029,431636 -registration(r11522,c251,s3389).registration16029,431636 -registration(r11523,c191,s3389).registration16030,431669 -registration(r11523,c191,s3389).registration16030,431669 -registration(r11524,c240,s3390).registration16031,431702 -registration(r11524,c240,s3390).registration16031,431702 -registration(r11525,c244,s3390).registration16032,431735 -registration(r11525,c244,s3390).registration16032,431735 -registration(r11526,c48,s3390).registration16033,431768 -registration(r11526,c48,s3390).registration16033,431768 -registration(r11527,c109,s3391).registration16034,431800 -registration(r11527,c109,s3391).registration16034,431800 -registration(r11528,c203,s3391).registration16035,431833 -registration(r11528,c203,s3391).registration16035,431833 -registration(r11529,c210,s3391).registration16036,431866 -registration(r11529,c210,s3391).registration16036,431866 -registration(r11530,c168,s3391).registration16037,431899 -registration(r11530,c168,s3391).registration16037,431899 -registration(r11531,c105,s3392).registration16038,431932 -registration(r11531,c105,s3392).registration16038,431932 -registration(r11532,c64,s3392).registration16039,431965 -registration(r11532,c64,s3392).registration16039,431965 -registration(r11533,c133,s3392).registration16040,431997 -registration(r11533,c133,s3392).registration16040,431997 -registration(r11534,c73,s3392).registration16041,432030 -registration(r11534,c73,s3392).registration16041,432030 -registration(r11535,c68,s3393).registration16042,432062 -registration(r11535,c68,s3393).registration16042,432062 -registration(r11536,c232,s3393).registration16043,432094 -registration(r11536,c232,s3393).registration16043,432094 -registration(r11537,c151,s3393).registration16044,432127 -registration(r11537,c151,s3393).registration16044,432127 -registration(r11538,c149,s3394).registration16045,432160 -registration(r11538,c149,s3394).registration16045,432160 -registration(r11539,c33,s3394).registration16046,432193 -registration(r11539,c33,s3394).registration16046,432193 -registration(r11540,c25,s3394).registration16047,432225 -registration(r11540,c25,s3394).registration16047,432225 -registration(r11541,c21,s3394).registration16048,432257 -registration(r11541,c21,s3394).registration16048,432257 -registration(r11542,c173,s3395).registration16049,432289 -registration(r11542,c173,s3395).registration16049,432289 -registration(r11543,c226,s3395).registration16050,432322 -registration(r11543,c226,s3395).registration16050,432322 -registration(r11544,c16,s3395).registration16051,432355 -registration(r11544,c16,s3395).registration16051,432355 -registration(r11545,c65,s3396).registration16052,432387 -registration(r11545,c65,s3396).registration16052,432387 -registration(r11546,c26,s3396).registration16053,432419 -registration(r11546,c26,s3396).registration16053,432419 -registration(r11547,c161,s3396).registration16054,432451 -registration(r11547,c161,s3396).registration16054,432451 -registration(r11548,c114,s3397).registration16055,432484 -registration(r11548,c114,s3397).registration16055,432484 -registration(r11549,c86,s3397).registration16056,432517 -registration(r11549,c86,s3397).registration16056,432517 -registration(r11550,c249,s3397).registration16057,432549 -registration(r11550,c249,s3397).registration16057,432549 -registration(r11551,c192,s3397).registration16058,432582 -registration(r11551,c192,s3397).registration16058,432582 -registration(r11552,c160,s3398).registration16059,432615 -registration(r11552,c160,s3398).registration16059,432615 -registration(r11553,c231,s3398).registration16060,432648 -registration(r11553,c231,s3398).registration16060,432648 -registration(r11554,c130,s3398).registration16061,432681 -registration(r11554,c130,s3398).registration16061,432681 -registration(r11555,c106,s3398).registration16062,432714 -registration(r11555,c106,s3398).registration16062,432714 -registration(r11556,c227,s3399).registration16063,432747 -registration(r11556,c227,s3399).registration16063,432747 -registration(r11557,c17,s3399).registration16064,432780 -registration(r11557,c17,s3399).registration16064,432780 -registration(r11558,c247,s3399).registration16065,432812 -registration(r11558,c247,s3399).registration16065,432812 -registration(r11559,c16,s3400).registration16066,432845 -registration(r11559,c16,s3400).registration16066,432845 -registration(r11560,c1,s3400).registration16067,432877 -registration(r11560,c1,s3400).registration16067,432877 -registration(r11561,c85,s3400).registration16068,432908 -registration(r11561,c85,s3400).registration16068,432908 -registration(r11562,c176,s3400).registration16069,432940 -registration(r11562,c176,s3400).registration16069,432940 -registration(r11563,c55,s3401).registration16070,432973 -registration(r11563,c55,s3401).registration16070,432973 -registration(r11564,c78,s3401).registration16071,433005 -registration(r11564,c78,s3401).registration16071,433005 -registration(r11565,c12,s3401).registration16072,433037 -registration(r11565,c12,s3401).registration16072,433037 -registration(r11566,c173,s3402).registration16073,433069 -registration(r11566,c173,s3402).registration16073,433069 -registration(r11567,c40,s3402).registration16074,433102 -registration(r11567,c40,s3402).registration16074,433102 -registration(r11568,c79,s3402).registration16075,433134 -registration(r11568,c79,s3402).registration16075,433134 -registration(r11569,c128,s3402).registration16076,433166 -registration(r11569,c128,s3402).registration16076,433166 -registration(r11570,c60,s3403).registration16077,433199 -registration(r11570,c60,s3403).registration16077,433199 -registration(r11571,c64,s3403).registration16078,433231 -registration(r11571,c64,s3403).registration16078,433231 -registration(r11572,c131,s3403).registration16079,433263 -registration(r11572,c131,s3403).registration16079,433263 -registration(r11573,c5,s3403).registration16080,433296 -registration(r11573,c5,s3403).registration16080,433296 -registration(r11574,c41,s3404).registration16081,433327 -registration(r11574,c41,s3404).registration16081,433327 -registration(r11575,c84,s3404).registration16082,433359 -registration(r11575,c84,s3404).registration16082,433359 -registration(r11576,c114,s3404).registration16083,433391 -registration(r11576,c114,s3404).registration16083,433391 -registration(r11577,c102,s3404).registration16084,433424 -registration(r11577,c102,s3404).registration16084,433424 -registration(r11578,c132,s3405).registration16085,433457 -registration(r11578,c132,s3405).registration16085,433457 -registration(r11579,c153,s3405).registration16086,433490 -registration(r11579,c153,s3405).registration16086,433490 -registration(r11580,c120,s3405).registration16087,433523 -registration(r11580,c120,s3405).registration16087,433523 -registration(r11581,c160,s3406).registration16088,433556 -registration(r11581,c160,s3406).registration16088,433556 -registration(r11582,c54,s3406).registration16089,433589 -registration(r11582,c54,s3406).registration16089,433589 -registration(r11583,c35,s3406).registration16090,433621 -registration(r11583,c35,s3406).registration16090,433621 -registration(r11584,c48,s3407).registration16091,433653 -registration(r11584,c48,s3407).registration16091,433653 -registration(r11585,c82,s3407).registration16092,433685 -registration(r11585,c82,s3407).registration16092,433685 -registration(r11586,c236,s3407).registration16093,433717 -registration(r11586,c236,s3407).registration16093,433717 -registration(r11587,c58,s3408).registration16094,433750 -registration(r11587,c58,s3408).registration16094,433750 -registration(r11588,c253,s3408).registration16095,433782 -registration(r11588,c253,s3408).registration16095,433782 -registration(r11589,c248,s3408).registration16096,433815 -registration(r11589,c248,s3408).registration16096,433815 -registration(r11590,c58,s3409).registration16097,433848 -registration(r11590,c58,s3409).registration16097,433848 -registration(r11591,c5,s3409).registration16098,433880 -registration(r11591,c5,s3409).registration16098,433880 -registration(r11592,c24,s3409).registration16099,433911 -registration(r11592,c24,s3409).registration16099,433911 -registration(r11593,c66,s3409).registration16100,433943 -registration(r11593,c66,s3409).registration16100,433943 -registration(r11594,c181,s3410).registration16101,433975 -registration(r11594,c181,s3410).registration16101,433975 -registration(r11595,c124,s3410).registration16102,434008 -registration(r11595,c124,s3410).registration16102,434008 -registration(r11596,c76,s3410).registration16103,434041 -registration(r11596,c76,s3410).registration16103,434041 -registration(r11597,c229,s3410).registration16104,434073 -registration(r11597,c229,s3410).registration16104,434073 -registration(r11598,c180,s3411).registration16105,434106 -registration(r11598,c180,s3411).registration16105,434106 -registration(r11599,c94,s3411).registration16106,434139 -registration(r11599,c94,s3411).registration16106,434139 -registration(r11600,c88,s3411).registration16107,434171 -registration(r11600,c88,s3411).registration16107,434171 -registration(r11601,c143,s3412).registration16108,434203 -registration(r11601,c143,s3412).registration16108,434203 -registration(r11602,c197,s3412).registration16109,434236 -registration(r11602,c197,s3412).registration16109,434236 -registration(r11603,c216,s3412).registration16110,434269 -registration(r11603,c216,s3412).registration16110,434269 -registration(r11604,c246,s3412).registration16111,434302 -registration(r11604,c246,s3412).registration16111,434302 -registration(r11605,c255,s3412).registration16112,434335 -registration(r11605,c255,s3412).registration16112,434335 -registration(r11606,c211,s3413).registration16113,434368 -registration(r11606,c211,s3413).registration16113,434368 -registration(r11607,c163,s3413).registration16114,434401 -registration(r11607,c163,s3413).registration16114,434401 -registration(r11608,c58,s3413).registration16115,434434 -registration(r11608,c58,s3413).registration16115,434434 -registration(r11609,c190,s3414).registration16116,434466 -registration(r11609,c190,s3414).registration16116,434466 -registration(r11610,c12,s3414).registration16117,434499 -registration(r11610,c12,s3414).registration16117,434499 -registration(r11611,c216,s3414).registration16118,434531 -registration(r11611,c216,s3414).registration16118,434531 -registration(r11612,c57,s3414).registration16119,434564 -registration(r11612,c57,s3414).registration16119,434564 -registration(r11613,c206,s3415).registration16120,434596 -registration(r11613,c206,s3415).registration16120,434596 -registration(r11614,c99,s3415).registration16121,434629 -registration(r11614,c99,s3415).registration16121,434629 -registration(r11615,c238,s3415).registration16122,434661 -registration(r11615,c238,s3415).registration16122,434661 -registration(r11616,c9,s3416).registration16123,434694 -registration(r11616,c9,s3416).registration16123,434694 -registration(r11617,c49,s3416).registration16124,434725 -registration(r11617,c49,s3416).registration16124,434725 -registration(r11618,c132,s3416).registration16125,434757 -registration(r11618,c132,s3416).registration16125,434757 -registration(r11619,c220,s3417).registration16126,434790 -registration(r11619,c220,s3417).registration16126,434790 -registration(r11620,c95,s3417).registration16127,434823 -registration(r11620,c95,s3417).registration16127,434823 -registration(r11621,c143,s3417).registration16128,434855 -registration(r11621,c143,s3417).registration16128,434855 -registration(r11622,c103,s3417).registration16129,434888 -registration(r11622,c103,s3417).registration16129,434888 -registration(r11623,c127,s3418).registration16130,434921 -registration(r11623,c127,s3418).registration16130,434921 -registration(r11624,c27,s3418).registration16131,434954 -registration(r11624,c27,s3418).registration16131,434954 -registration(r11625,c146,s3418).registration16132,434986 -registration(r11625,c146,s3418).registration16132,434986 -registration(r11626,c53,s3419).registration16133,435019 -registration(r11626,c53,s3419).registration16133,435019 -registration(r11627,c186,s3419).registration16134,435051 -registration(r11627,c186,s3419).registration16134,435051 -registration(r11628,c193,s3419).registration16135,435084 -registration(r11628,c193,s3419).registration16135,435084 -registration(r11629,c205,s3420).registration16136,435117 -registration(r11629,c205,s3420).registration16136,435117 -registration(r11630,c170,s3420).registration16137,435150 -registration(r11630,c170,s3420).registration16137,435150 -registration(r11631,c59,s3420).registration16138,435183 -registration(r11631,c59,s3420).registration16138,435183 -registration(r11632,c10,s3421).registration16139,435215 -registration(r11632,c10,s3421).registration16139,435215 -registration(r11633,c85,s3421).registration16140,435247 -registration(r11633,c85,s3421).registration16140,435247 -registration(r11634,c211,s3421).registration16141,435279 -registration(r11634,c211,s3421).registration16141,435279 -registration(r11635,c221,s3421).registration16142,435312 -registration(r11635,c221,s3421).registration16142,435312 -registration(r11636,c135,s3422).registration16143,435345 -registration(r11636,c135,s3422).registration16143,435345 -registration(r11637,c138,s3422).registration16144,435378 -registration(r11637,c138,s3422).registration16144,435378 -registration(r11638,c155,s3422).registration16145,435411 -registration(r11638,c155,s3422).registration16145,435411 -registration(r11639,c101,s3422).registration16146,435444 -registration(r11639,c101,s3422).registration16146,435444 -registration(r11640,c166,s3423).registration16147,435477 -registration(r11640,c166,s3423).registration16147,435477 -registration(r11641,c210,s3423).registration16148,435510 -registration(r11641,c210,s3423).registration16148,435510 -registration(r11642,c31,s3423).registration16149,435543 -registration(r11642,c31,s3423).registration16149,435543 -registration(r11643,c82,s3423).registration16150,435575 -registration(r11643,c82,s3423).registration16150,435575 -registration(r11644,c159,s3424).registration16151,435607 -registration(r11644,c159,s3424).registration16151,435607 -registration(r11645,c209,s3424).registration16152,435640 -registration(r11645,c209,s3424).registration16152,435640 -registration(r11646,c42,s3424).registration16153,435673 -registration(r11646,c42,s3424).registration16153,435673 -registration(r11647,c235,s3425).registration16154,435705 -registration(r11647,c235,s3425).registration16154,435705 -registration(r11648,c166,s3425).registration16155,435738 -registration(r11648,c166,s3425).registration16155,435738 -registration(r11649,c3,s3425).registration16156,435771 -registration(r11649,c3,s3425).registration16156,435771 -registration(r11650,c63,s3426).registration16157,435802 -registration(r11650,c63,s3426).registration16157,435802 -registration(r11651,c170,s3426).registration16158,435834 -registration(r11651,c170,s3426).registration16158,435834 -registration(r11652,c54,s3426).registration16159,435867 -registration(r11652,c54,s3426).registration16159,435867 -registration(r11653,c10,s3427).registration16160,435899 -registration(r11653,c10,s3427).registration16160,435899 -registration(r11654,c161,s3427).registration16161,435931 -registration(r11654,c161,s3427).registration16161,435931 -registration(r11655,c5,s3427).registration16162,435964 -registration(r11655,c5,s3427).registration16162,435964 -registration(r11656,c143,s3427).registration16163,435995 -registration(r11656,c143,s3427).registration16163,435995 -registration(r11657,c131,s3428).registration16164,436028 -registration(r11657,c131,s3428).registration16164,436028 -registration(r11658,c62,s3428).registration16165,436061 -registration(r11658,c62,s3428).registration16165,436061 -registration(r11659,c246,s3428).registration16166,436093 -registration(r11659,c246,s3428).registration16166,436093 -registration(r11660,c200,s3429).registration16167,436126 -registration(r11660,c200,s3429).registration16167,436126 -registration(r11661,c157,s3429).registration16168,436159 -registration(r11661,c157,s3429).registration16168,436159 -registration(r11662,c243,s3429).registration16169,436192 -registration(r11662,c243,s3429).registration16169,436192 -registration(r11663,c216,s3429).registration16170,436225 -registration(r11663,c216,s3429).registration16170,436225 -registration(r11664,c235,s3430).registration16171,436258 -registration(r11664,c235,s3430).registration16171,436258 -registration(r11665,c4,s3430).registration16172,436291 -registration(r11665,c4,s3430).registration16172,436291 -registration(r11666,c103,s3430).registration16173,436322 -registration(r11666,c103,s3430).registration16173,436322 -registration(r11667,c14,s3431).registration16174,436355 -registration(r11667,c14,s3431).registration16174,436355 -registration(r11668,c123,s3431).registration16175,436387 -registration(r11668,c123,s3431).registration16175,436387 -registration(r11669,c169,s3431).registration16176,436420 -registration(r11669,c169,s3431).registration16176,436420 -registration(r11670,c82,s3432).registration16177,436453 -registration(r11670,c82,s3432).registration16177,436453 -registration(r11671,c153,s3432).registration16178,436485 -registration(r11671,c153,s3432).registration16178,436485 -registration(r11672,c5,s3432).registration16179,436518 -registration(r11672,c5,s3432).registration16179,436518 -registration(r11673,c165,s3433).registration16180,436549 -registration(r11673,c165,s3433).registration16180,436549 -registration(r11674,c86,s3433).registration16181,436582 -registration(r11674,c86,s3433).registration16181,436582 -registration(r11675,c139,s3433).registration16182,436614 -registration(r11675,c139,s3433).registration16182,436614 -registration(r11676,c14,s3434).registration16183,436647 -registration(r11676,c14,s3434).registration16183,436647 -registration(r11677,c12,s3434).registration16184,436679 -registration(r11677,c12,s3434).registration16184,436679 -registration(r11678,c221,s3434).registration16185,436711 -registration(r11678,c221,s3434).registration16185,436711 -registration(r11679,c165,s3435).registration16186,436744 -registration(r11679,c165,s3435).registration16186,436744 -registration(r11680,c42,s3435).registration16187,436777 -registration(r11680,c42,s3435).registration16187,436777 -registration(r11681,c229,s3435).registration16188,436809 -registration(r11681,c229,s3435).registration16188,436809 -registration(r11682,c119,s3435).registration16189,436842 -registration(r11682,c119,s3435).registration16189,436842 -registration(r11683,c171,s3436).registration16190,436875 -registration(r11683,c171,s3436).registration16190,436875 -registration(r11684,c8,s3436).registration16191,436908 -registration(r11684,c8,s3436).registration16191,436908 -registration(r11685,c222,s3436).registration16192,436939 -registration(r11685,c222,s3436).registration16192,436939 -registration(r11686,c248,s3436).registration16193,436972 -registration(r11686,c248,s3436).registration16193,436972 -registration(r11687,c158,s3437).registration16194,437005 -registration(r11687,c158,s3437).registration16194,437005 -registration(r11688,c161,s3437).registration16195,437038 -registration(r11688,c161,s3437).registration16195,437038 -registration(r11689,c77,s3437).registration16196,437071 -registration(r11689,c77,s3437).registration16196,437071 -registration(r11690,c231,s3438).registration16197,437103 -registration(r11690,c231,s3438).registration16197,437103 -registration(r11691,c93,s3438).registration16198,437136 -registration(r11691,c93,s3438).registration16198,437136 -registration(r11692,c68,s3438).registration16199,437168 -registration(r11692,c68,s3438).registration16199,437168 -registration(r11693,c156,s3438).registration16200,437200 -registration(r11693,c156,s3438).registration16200,437200 -registration(r11694,c22,s3439).registration16201,437233 -registration(r11694,c22,s3439).registration16201,437233 -registration(r11695,c209,s3439).registration16202,437265 -registration(r11695,c209,s3439).registration16202,437265 -registration(r11696,c131,s3439).registration16203,437298 -registration(r11696,c131,s3439).registration16203,437298 -registration(r11697,c222,s3439).registration16204,437331 -registration(r11697,c222,s3439).registration16204,437331 -registration(r11698,c177,s3440).registration16205,437364 -registration(r11698,c177,s3440).registration16205,437364 -registration(r11699,c207,s3440).registration16206,437397 -registration(r11699,c207,s3440).registration16206,437397 -registration(r11700,c5,s3440).registration16207,437430 -registration(r11700,c5,s3440).registration16207,437430 -registration(r11701,c197,s3441).registration16208,437461 -registration(r11701,c197,s3441).registration16208,437461 -registration(r11702,c224,s3441).registration16209,437494 -registration(r11702,c224,s3441).registration16209,437494 -registration(r11703,c44,s3441).registration16210,437527 -registration(r11703,c44,s3441).registration16210,437527 -registration(r11704,c11,s3442).registration16211,437559 -registration(r11704,c11,s3442).registration16211,437559 -registration(r11705,c149,s3442).registration16212,437591 -registration(r11705,c149,s3442).registration16212,437591 -registration(r11706,c224,s3442).registration16213,437624 -registration(r11706,c224,s3442).registration16213,437624 -registration(r11707,c129,s3443).registration16214,437657 -registration(r11707,c129,s3443).registration16214,437657 -registration(r11708,c70,s3443).registration16215,437690 -registration(r11708,c70,s3443).registration16215,437690 -registration(r11709,c141,s3443).registration16216,437722 -registration(r11709,c141,s3443).registration16216,437722 -registration(r11710,c235,s3443).registration16217,437755 -registration(r11710,c235,s3443).registration16217,437755 -registration(r11711,c186,s3444).registration16218,437788 -registration(r11711,c186,s3444).registration16218,437788 -registration(r11712,c183,s3444).registration16219,437821 -registration(r11712,c183,s3444).registration16219,437821 -registration(r11713,c239,s3444).registration16220,437854 -registration(r11713,c239,s3444).registration16220,437854 -registration(r11714,c192,s3445).registration16221,437887 -registration(r11714,c192,s3445).registration16221,437887 -registration(r11715,c217,s3445).registration16222,437920 -registration(r11715,c217,s3445).registration16222,437920 -registration(r11716,c243,s3445).registration16223,437953 -registration(r11716,c243,s3445).registration16223,437953 -registration(r11717,c165,s3446).registration16224,437986 -registration(r11717,c165,s3446).registration16224,437986 -registration(r11718,c109,s3446).registration16225,438019 -registration(r11718,c109,s3446).registration16225,438019 -registration(r11719,c63,s3446).registration16226,438052 -registration(r11719,c63,s3446).registration16226,438052 -registration(r11720,c5,s3446).registration16227,438084 -registration(r11720,c5,s3446).registration16227,438084 -registration(r11721,c98,s3447).registration16228,438115 -registration(r11721,c98,s3447).registration16228,438115 -registration(r11722,c78,s3447).registration16229,438147 -registration(r11722,c78,s3447).registration16229,438147 -registration(r11723,c120,s3447).registration16230,438179 -registration(r11723,c120,s3447).registration16230,438179 -registration(r11724,c12,s3448).registration16231,438212 -registration(r11724,c12,s3448).registration16231,438212 -registration(r11725,c44,s3448).registration16232,438244 -registration(r11725,c44,s3448).registration16232,438244 -registration(r11726,c83,s3448).registration16233,438276 -registration(r11726,c83,s3448).registration16233,438276 -registration(r11727,c153,s3449).registration16234,438308 -registration(r11727,c153,s3449).registration16234,438308 -registration(r11728,c204,s3449).registration16235,438341 -registration(r11728,c204,s3449).registration16235,438341 -registration(r11729,c34,s3449).registration16236,438374 -registration(r11729,c34,s3449).registration16236,438374 -registration(r11730,c220,s3450).registration16237,438406 -registration(r11730,c220,s3450).registration16237,438406 -registration(r11731,c127,s3450).registration16238,438439 -registration(r11731,c127,s3450).registration16238,438439 -registration(r11732,c165,s3450).registration16239,438472 -registration(r11732,c165,s3450).registration16239,438472 -registration(r11733,c102,s3451).registration16240,438505 -registration(r11733,c102,s3451).registration16240,438505 -registration(r11734,c12,s3451).registration16241,438538 -registration(r11734,c12,s3451).registration16241,438538 -registration(r11735,c66,s3451).registration16242,438570 -registration(r11735,c66,s3451).registration16242,438570 -registration(r11736,c72,s3451).registration16243,438602 -registration(r11736,c72,s3451).registration16243,438602 -registration(r11737,c114,s3452).registration16244,438634 -registration(r11737,c114,s3452).registration16244,438634 -registration(r11738,c135,s3452).registration16245,438667 -registration(r11738,c135,s3452).registration16245,438667 -registration(r11739,c105,s3452).registration16246,438700 -registration(r11739,c105,s3452).registration16246,438700 -registration(r11740,c204,s3453).registration16247,438733 -registration(r11740,c204,s3453).registration16247,438733 -registration(r11741,c228,s3453).registration16248,438766 -registration(r11741,c228,s3453).registration16248,438766 -registration(r11742,c3,s3453).registration16249,438799 -registration(r11742,c3,s3453).registration16249,438799 -registration(r11743,c62,s3453).registration16250,438830 -registration(r11743,c62,s3453).registration16250,438830 -registration(r11744,c69,s3453).registration16251,438862 -registration(r11744,c69,s3453).registration16251,438862 -registration(r11745,c144,s3454).registration16252,438894 -registration(r11745,c144,s3454).registration16252,438894 -registration(r11746,c78,s3454).registration16253,438927 -registration(r11746,c78,s3454).registration16253,438927 -registration(r11747,c242,s3454).registration16254,438959 -registration(r11747,c242,s3454).registration16254,438959 -registration(r11748,c26,s3454).registration16255,438992 -registration(r11748,c26,s3454).registration16255,438992 -registration(r11749,c239,s3454).registration16256,439024 -registration(r11749,c239,s3454).registration16256,439024 -registration(r11750,c209,s3455).registration16257,439057 -registration(r11750,c209,s3455).registration16257,439057 -registration(r11751,c241,s3455).registration16258,439090 -registration(r11751,c241,s3455).registration16258,439090 -registration(r11752,c111,s3455).registration16259,439123 -registration(r11752,c111,s3455).registration16259,439123 -registration(r11753,c189,s3455).registration16260,439156 -registration(r11753,c189,s3455).registration16260,439156 -registration(r11754,c221,s3456).registration16261,439189 -registration(r11754,c221,s3456).registration16261,439189 -registration(r11755,c49,s3456).registration16262,439222 -registration(r11755,c49,s3456).registration16262,439222 -registration(r11756,c0,s3456).registration16263,439254 -registration(r11756,c0,s3456).registration16263,439254 -registration(r11757,c232,s3457).registration16264,439285 -registration(r11757,c232,s3457).registration16264,439285 -registration(r11758,c84,s3457).registration16265,439318 -registration(r11758,c84,s3457).registration16265,439318 -registration(r11759,c255,s3457).registration16266,439350 -registration(r11759,c255,s3457).registration16266,439350 -registration(r11760,c139,s3458).registration16267,439383 -registration(r11760,c139,s3458).registration16267,439383 -registration(r11761,c31,s3458).registration16268,439416 -registration(r11761,c31,s3458).registration16268,439416 -registration(r11762,c206,s3458).registration16269,439448 -registration(r11762,c206,s3458).registration16269,439448 -registration(r11763,c12,s3459).registration16270,439481 -registration(r11763,c12,s3459).registration16270,439481 -registration(r11764,c158,s3459).registration16271,439513 -registration(r11764,c158,s3459).registration16271,439513 -registration(r11765,c124,s3459).registration16272,439546 -registration(r11765,c124,s3459).registration16272,439546 -registration(r11766,c110,s3460).registration16273,439579 -registration(r11766,c110,s3460).registration16273,439579 -registration(r11767,c198,s3460).registration16274,439612 -registration(r11767,c198,s3460).registration16274,439612 -registration(r11768,c7,s3460).registration16275,439645 -registration(r11768,c7,s3460).registration16275,439645 -registration(r11769,c217,s3461).registration16276,439676 -registration(r11769,c217,s3461).registration16276,439676 -registration(r11770,c115,s3461).registration16277,439709 -registration(r11770,c115,s3461).registration16277,439709 -registration(r11771,c37,s3461).registration16278,439742 -registration(r11771,c37,s3461).registration16278,439742 -registration(r11772,c228,s3462).registration16279,439774 -registration(r11772,c228,s3462).registration16279,439774 -registration(r11773,c46,s3462).registration16280,439807 -registration(r11773,c46,s3462).registration16280,439807 -registration(r11774,c202,s3462).registration16281,439839 -registration(r11774,c202,s3462).registration16281,439839 -registration(r11775,c67,s3462).registration16282,439872 -registration(r11775,c67,s3462).registration16282,439872 -registration(r11776,c205,s3463).registration16283,439904 -registration(r11776,c205,s3463).registration16283,439904 -registration(r11777,c101,s3463).registration16284,439937 -registration(r11777,c101,s3463).registration16284,439937 -registration(r11778,c66,s3463).registration16285,439970 -registration(r11778,c66,s3463).registration16285,439970 -registration(r11779,c80,s3463).registration16286,440002 -registration(r11779,c80,s3463).registration16286,440002 -registration(r11780,c62,s3464).registration16287,440034 -registration(r11780,c62,s3464).registration16287,440034 -registration(r11781,c29,s3464).registration16288,440066 -registration(r11781,c29,s3464).registration16288,440066 -registration(r11782,c94,s3464).registration16289,440098 -registration(r11782,c94,s3464).registration16289,440098 -registration(r11783,c250,s3464).registration16290,440130 -registration(r11783,c250,s3464).registration16290,440130 -registration(r11784,c242,s3465).registration16291,440163 -registration(r11784,c242,s3465).registration16291,440163 -registration(r11785,c197,s3465).registration16292,440196 -registration(r11785,c197,s3465).registration16292,440196 -registration(r11786,c230,s3465).registration16293,440229 -registration(r11786,c230,s3465).registration16293,440229 -registration(r11787,c238,s3466).registration16294,440262 -registration(r11787,c238,s3466).registration16294,440262 -registration(r11788,c226,s3466).registration16295,440295 -registration(r11788,c226,s3466).registration16295,440295 -registration(r11789,c66,s3466).registration16296,440328 -registration(r11789,c66,s3466).registration16296,440328 -registration(r11790,c104,s3467).registration16297,440360 -registration(r11790,c104,s3467).registration16297,440360 -registration(r11791,c24,s3467).registration16298,440393 -registration(r11791,c24,s3467).registration16298,440393 -registration(r11792,c240,s3467).registration16299,440425 -registration(r11792,c240,s3467).registration16299,440425 -registration(r11793,c187,s3468).registration16300,440458 -registration(r11793,c187,s3468).registration16300,440458 -registration(r11794,c49,s3468).registration16301,440491 -registration(r11794,c49,s3468).registration16301,440491 -registration(r11795,c89,s3468).registration16302,440523 -registration(r11795,c89,s3468).registration16302,440523 -registration(r11796,c190,s3469).registration16303,440555 -registration(r11796,c190,s3469).registration16303,440555 -registration(r11797,c65,s3469).registration16304,440588 -registration(r11797,c65,s3469).registration16304,440588 -registration(r11798,c30,s3469).registration16305,440620 -registration(r11798,c30,s3469).registration16305,440620 -registration(r11799,c15,s3469).registration16306,440652 -registration(r11799,c15,s3469).registration16306,440652 -registration(r11800,c44,s3470).registration16307,440684 -registration(r11800,c44,s3470).registration16307,440684 -registration(r11801,c109,s3470).registration16308,440716 -registration(r11801,c109,s3470).registration16308,440716 -registration(r11802,c212,s3470).registration16309,440749 -registration(r11802,c212,s3470).registration16309,440749 -registration(r11803,c198,s3471).registration16310,440782 -registration(r11803,c198,s3471).registration16310,440782 -registration(r11804,c29,s3471).registration16311,440815 -registration(r11804,c29,s3471).registration16311,440815 -registration(r11805,c79,s3471).registration16312,440847 -registration(r11805,c79,s3471).registration16312,440847 -registration(r11806,c169,s3471).registration16313,440879 -registration(r11806,c169,s3471).registration16313,440879 -registration(r11807,c10,s3472).registration16314,440912 -registration(r11807,c10,s3472).registration16314,440912 -registration(r11808,c236,s3472).registration16315,440944 -registration(r11808,c236,s3472).registration16315,440944 -registration(r11809,c5,s3472).registration16316,440977 -registration(r11809,c5,s3472).registration16316,440977 -registration(r11810,c30,s3473).registration16317,441008 -registration(r11810,c30,s3473).registration16317,441008 -registration(r11811,c83,s3473).registration16318,441040 -registration(r11811,c83,s3473).registration16318,441040 -registration(r11812,c163,s3473).registration16319,441072 -registration(r11812,c163,s3473).registration16319,441072 -registration(r11813,c212,s3473).registration16320,441105 -registration(r11813,c212,s3473).registration16320,441105 -registration(r11814,c190,s3474).registration16321,441138 -registration(r11814,c190,s3474).registration16321,441138 -registration(r11815,c12,s3474).registration16322,441171 -registration(r11815,c12,s3474).registration16322,441171 -registration(r11816,c211,s3474).registration16323,441203 -registration(r11816,c211,s3474).registration16323,441203 -registration(r11817,c241,s3475).registration16324,441236 -registration(r11817,c241,s3475).registration16324,441236 -registration(r11818,c139,s3475).registration16325,441269 -registration(r11818,c139,s3475).registration16325,441269 -registration(r11819,c93,s3475).registration16326,441302 -registration(r11819,c93,s3475).registration16326,441302 -registration(r11820,c202,s3476).registration16327,441334 -registration(r11820,c202,s3476).registration16327,441334 -registration(r11821,c34,s3476).registration16328,441367 -registration(r11821,c34,s3476).registration16328,441367 -registration(r11822,c15,s3476).registration16329,441399 -registration(r11822,c15,s3476).registration16329,441399 -registration(r11823,c233,s3476).registration16330,441431 -registration(r11823,c233,s3476).registration16330,441431 -registration(r11824,c128,s3476).registration16331,441464 -registration(r11824,c128,s3476).registration16331,441464 -registration(r11825,c15,s3477).registration16332,441497 -registration(r11825,c15,s3477).registration16332,441497 -registration(r11826,c215,s3477).registration16333,441529 -registration(r11826,c215,s3477).registration16333,441529 -registration(r11827,c189,s3477).registration16334,441562 -registration(r11827,c189,s3477).registration16334,441562 -registration(r11828,c195,s3477).registration16335,441595 -registration(r11828,c195,s3477).registration16335,441595 -registration(r11829,c123,s3478).registration16336,441628 -registration(r11829,c123,s3478).registration16336,441628 -registration(r11830,c24,s3478).registration16337,441661 -registration(r11830,c24,s3478).registration16337,441661 -registration(r11831,c226,s3478).registration16338,441693 -registration(r11831,c226,s3478).registration16338,441693 -registration(r11832,c71,s3479).registration16339,441726 -registration(r11832,c71,s3479).registration16339,441726 -registration(r11833,c220,s3479).registration16340,441758 -registration(r11833,c220,s3479).registration16340,441758 -registration(r11834,c143,s3479).registration16341,441791 -registration(r11834,c143,s3479).registration16341,441791 -registration(r11835,c233,s3479).registration16342,441824 -registration(r11835,c233,s3479).registration16342,441824 -registration(r11836,c131,s3480).registration16343,441857 -registration(r11836,c131,s3480).registration16343,441857 -registration(r11837,c55,s3480).registration16344,441890 -registration(r11837,c55,s3480).registration16344,441890 -registration(r11838,c85,s3480).registration16345,441922 -registration(r11838,c85,s3480).registration16345,441922 -registration(r11839,c150,s3480).registration16346,441954 -registration(r11839,c150,s3480).registration16346,441954 -registration(r11840,c200,s3481).registration16347,441987 -registration(r11840,c200,s3481).registration16347,441987 -registration(r11841,c95,s3481).registration16348,442020 -registration(r11841,c95,s3481).registration16348,442020 -registration(r11842,c198,s3481).registration16349,442052 -registration(r11842,c198,s3481).registration16349,442052 -registration(r11843,c176,s3482).registration16350,442085 -registration(r11843,c176,s3482).registration16350,442085 -registration(r11844,c6,s3482).registration16351,442118 -registration(r11844,c6,s3482).registration16351,442118 -registration(r11845,c19,s3482).registration16352,442149 -registration(r11845,c19,s3482).registration16352,442149 -registration(r11846,c209,s3483).registration16353,442181 -registration(r11846,c209,s3483).registration16353,442181 -registration(r11847,c217,s3483).registration16354,442214 -registration(r11847,c217,s3483).registration16354,442214 -registration(r11848,c160,s3483).registration16355,442247 -registration(r11848,c160,s3483).registration16355,442247 -registration(r11849,c186,s3484).registration16356,442280 -registration(r11849,c186,s3484).registration16356,442280 -registration(r11850,c118,s3484).registration16357,442313 -registration(r11850,c118,s3484).registration16357,442313 -registration(r11851,c35,s3484).registration16358,442346 -registration(r11851,c35,s3484).registration16358,442346 -registration(r11852,c0,s3485).registration16359,442378 -registration(r11852,c0,s3485).registration16359,442378 -registration(r11853,c6,s3485).registration16360,442409 -registration(r11853,c6,s3485).registration16360,442409 -registration(r11854,c197,s3485).registration16361,442440 -registration(r11854,c197,s3485).registration16361,442440 -registration(r11855,c72,s3486).registration16362,442473 -registration(r11855,c72,s3486).registration16362,442473 -registration(r11856,c32,s3486).registration16363,442505 -registration(r11856,c32,s3486).registration16363,442505 -registration(r11857,c189,s3486).registration16364,442537 -registration(r11857,c189,s3486).registration16364,442537 -registration(r11858,c97,s3487).registration16365,442570 -registration(r11858,c97,s3487).registration16365,442570 -registration(r11859,c33,s3487).registration16366,442602 -registration(r11859,c33,s3487).registration16366,442602 -registration(r11860,c22,s3487).registration16367,442634 -registration(r11860,c22,s3487).registration16367,442634 -registration(r11861,c250,s3487).registration16368,442666 -registration(r11861,c250,s3487).registration16368,442666 -registration(r11862,c216,s3488).registration16369,442699 -registration(r11862,c216,s3488).registration16369,442699 -registration(r11863,c1,s3488).registration16370,442732 -registration(r11863,c1,s3488).registration16370,442732 -registration(r11864,c187,s3488).registration16371,442763 -registration(r11864,c187,s3488).registration16371,442763 -registration(r11865,c140,s3489).registration16372,442796 -registration(r11865,c140,s3489).registration16372,442796 -registration(r11866,c113,s3489).registration16373,442829 -registration(r11866,c113,s3489).registration16373,442829 -registration(r11867,c129,s3489).registration16374,442862 -registration(r11867,c129,s3489).registration16374,442862 -registration(r11868,c200,s3489).registration16375,442895 -registration(r11868,c200,s3489).registration16375,442895 -registration(r11869,c152,s3490).registration16376,442928 -registration(r11869,c152,s3490).registration16376,442928 -registration(r11870,c235,s3490).registration16377,442961 -registration(r11870,c235,s3490).registration16377,442961 -registration(r11871,c177,s3490).registration16378,442994 -registration(r11871,c177,s3490).registration16378,442994 -registration(r11872,c184,s3491).registration16379,443027 -registration(r11872,c184,s3491).registration16379,443027 -registration(r11873,c28,s3491).registration16380,443060 -registration(r11873,c28,s3491).registration16380,443060 -registration(r11874,c213,s3491).registration16381,443092 -registration(r11874,c213,s3491).registration16381,443092 -registration(r11875,c100,s3491).registration16382,443125 -registration(r11875,c100,s3491).registration16382,443125 -registration(r11876,c222,s3492).registration16383,443158 -registration(r11876,c222,s3492).registration16383,443158 -registration(r11877,c188,s3492).registration16384,443191 -registration(r11877,c188,s3492).registration16384,443191 -registration(r11878,c170,s3492).registration16385,443224 -registration(r11878,c170,s3492).registration16385,443224 -registration(r11879,c193,s3493).registration16386,443257 -registration(r11879,c193,s3493).registration16386,443257 -registration(r11880,c103,s3493).registration16387,443290 -registration(r11880,c103,s3493).registration16387,443290 -registration(r11881,c217,s3493).registration16388,443323 -registration(r11881,c217,s3493).registration16388,443323 -registration(r11882,c218,s3494).registration16389,443356 -registration(r11882,c218,s3494).registration16389,443356 -registration(r11883,c37,s3494).registration16390,443389 -registration(r11883,c37,s3494).registration16390,443389 -registration(r11884,c216,s3494).registration16391,443421 -registration(r11884,c216,s3494).registration16391,443421 -registration(r11885,c75,s3495).registration16392,443454 -registration(r11885,c75,s3495).registration16392,443454 -registration(r11886,c58,s3495).registration16393,443486 -registration(r11886,c58,s3495).registration16393,443486 -registration(r11887,c212,s3495).registration16394,443518 -registration(r11887,c212,s3495).registration16394,443518 -registration(r11888,c119,s3495).registration16395,443551 -registration(r11888,c119,s3495).registration16395,443551 -registration(r11889,c255,s3496).registration16396,443584 -registration(r11889,c255,s3496).registration16396,443584 -registration(r11890,c40,s3496).registration16397,443617 -registration(r11890,c40,s3496).registration16397,443617 -registration(r11891,c195,s3496).registration16398,443649 -registration(r11891,c195,s3496).registration16398,443649 -registration(r11892,c224,s3497).registration16399,443682 -registration(r11892,c224,s3497).registration16399,443682 -registration(r11893,c190,s3497).registration16400,443715 -registration(r11893,c190,s3497).registration16400,443715 -registration(r11894,c1,s3497).registration16401,443748 -registration(r11894,c1,s3497).registration16401,443748 -registration(r11895,c223,s3498).registration16402,443779 -registration(r11895,c223,s3498).registration16402,443779 -registration(r11896,c2,s3498).registration16403,443812 -registration(r11896,c2,s3498).registration16403,443812 -registration(r11897,c96,s3498).registration16404,443843 -registration(r11897,c96,s3498).registration16404,443843 -registration(r11898,c225,s3498).registration16405,443875 -registration(r11898,c225,s3498).registration16405,443875 -registration(r11899,c135,s3498).registration16406,443908 -registration(r11899,c135,s3498).registration16406,443908 -registration(r11900,c186,s3499).registration16407,443941 -registration(r11900,c186,s3499).registration16407,443941 -registration(r11901,c139,s3499).registration16408,443974 -registration(r11901,c139,s3499).registration16408,443974 -registration(r11902,c201,s3499).registration16409,444007 -registration(r11902,c201,s3499).registration16409,444007 -registration(r11903,c162,s3500).registration16410,444040 -registration(r11903,c162,s3500).registration16410,444040 -registration(r11904,c77,s3500).registration16411,444073 -registration(r11904,c77,s3500).registration16411,444073 -registration(r11905,c101,s3500).registration16412,444105 -registration(r11905,c101,s3500).registration16412,444105 -registration(r11906,c57,s3501).registration16413,444138 -registration(r11906,c57,s3501).registration16413,444138 -registration(r11907,c1,s3501).registration16414,444170 -registration(r11907,c1,s3501).registration16414,444170 -registration(r11908,c255,s3501).registration16415,444201 -registration(r11908,c255,s3501).registration16415,444201 -registration(r11909,c40,s3501).registration16416,444234 -registration(r11909,c40,s3501).registration16416,444234 -registration(r11910,c107,s3502).registration16417,444266 -registration(r11910,c107,s3502).registration16417,444266 -registration(r11911,c235,s3502).registration16418,444299 -registration(r11911,c235,s3502).registration16418,444299 -registration(r11912,c8,s3502).registration16419,444332 -registration(r11912,c8,s3502).registration16419,444332 -registration(r11913,c10,s3503).registration16420,444363 -registration(r11913,c10,s3503).registration16420,444363 -registration(r11914,c145,s3503).registration16421,444395 -registration(r11914,c145,s3503).registration16421,444395 -registration(r11915,c95,s3503).registration16422,444428 -registration(r11915,c95,s3503).registration16422,444428 -registration(r11916,c191,s3504).registration16423,444460 -registration(r11916,c191,s3504).registration16423,444460 -registration(r11917,c9,s3504).registration16424,444493 -registration(r11917,c9,s3504).registration16424,444493 -registration(r11918,c117,s3504).registration16425,444524 -registration(r11918,c117,s3504).registration16425,444524 -registration(r11919,c47,s3505).registration16426,444557 -registration(r11919,c47,s3505).registration16426,444557 -registration(r11920,c110,s3505).registration16427,444589 -registration(r11920,c110,s3505).registration16427,444589 -registration(r11921,c89,s3505).registration16428,444622 -registration(r11921,c89,s3505).registration16428,444622 -registration(r11922,c251,s3505).registration16429,444654 -registration(r11922,c251,s3505).registration16429,444654 -registration(r11923,c18,s3506).registration16430,444687 -registration(r11923,c18,s3506).registration16430,444687 -registration(r11924,c133,s3506).registration16431,444719 -registration(r11924,c133,s3506).registration16431,444719 -registration(r11925,c233,s3506).registration16432,444752 -registration(r11925,c233,s3506).registration16432,444752 -registration(r11926,c235,s3507).registration16433,444785 -registration(r11926,c235,s3507).registration16433,444785 -registration(r11927,c154,s3507).registration16434,444818 -registration(r11927,c154,s3507).registration16434,444818 -registration(r11928,c100,s3507).registration16435,444851 -registration(r11928,c100,s3507).registration16435,444851 -registration(r11929,c208,s3508).registration16436,444884 -registration(r11929,c208,s3508).registration16436,444884 -registration(r11930,c215,s3508).registration16437,444917 -registration(r11930,c215,s3508).registration16437,444917 -registration(r11931,c201,s3508).registration16438,444950 -registration(r11931,c201,s3508).registration16438,444950 -registration(r11932,c128,s3508).registration16439,444983 -registration(r11932,c128,s3508).registration16439,444983 -registration(r11933,c173,s3509).registration16440,445016 -registration(r11933,c173,s3509).registration16440,445016 -registration(r11934,c225,s3509).registration16441,445049 -registration(r11934,c225,s3509).registration16441,445049 -registration(r11935,c190,s3509).registration16442,445082 -registration(r11935,c190,s3509).registration16442,445082 -registration(r11936,c200,s3510).registration16443,445115 -registration(r11936,c200,s3510).registration16443,445115 -registration(r11937,c181,s3510).registration16444,445148 -registration(r11937,c181,s3510).registration16444,445148 -registration(r11938,c129,s3510).registration16445,445181 -registration(r11938,c129,s3510).registration16445,445181 -registration(r11939,c239,s3511).registration16446,445214 -registration(r11939,c239,s3511).registration16446,445214 -registration(r11940,c178,s3511).registration16447,445247 -registration(r11940,c178,s3511).registration16447,445247 -registration(r11941,c169,s3511).registration16448,445280 -registration(r11941,c169,s3511).registration16448,445280 -registration(r11942,c173,s3511).registration16449,445313 -registration(r11942,c173,s3511).registration16449,445313 -registration(r11943,c148,s3512).registration16450,445346 -registration(r11943,c148,s3512).registration16450,445346 -registration(r11944,c152,s3512).registration16451,445379 -registration(r11944,c152,s3512).registration16451,445379 -registration(r11945,c88,s3512).registration16452,445412 -registration(r11945,c88,s3512).registration16452,445412 -registration(r11946,c243,s3513).registration16453,445444 -registration(r11946,c243,s3513).registration16453,445444 -registration(r11947,c183,s3513).registration16454,445477 -registration(r11947,c183,s3513).registration16454,445477 -registration(r11948,c110,s3513).registration16455,445510 -registration(r11948,c110,s3513).registration16455,445510 -registration(r11949,c70,s3514).registration16456,445543 -registration(r11949,c70,s3514).registration16456,445543 -registration(r11950,c130,s3514).registration16457,445575 -registration(r11950,c130,s3514).registration16457,445575 -registration(r11951,c165,s3514).registration16458,445608 -registration(r11951,c165,s3514).registration16458,445608 -registration(r11952,c81,s3515).registration16459,445641 -registration(r11952,c81,s3515).registration16459,445641 -registration(r11953,c170,s3515).registration16460,445673 -registration(r11953,c170,s3515).registration16460,445673 -registration(r11954,c22,s3515).registration16461,445706 -registration(r11954,c22,s3515).registration16461,445706 -registration(r11955,c223,s3516).registration16462,445738 -registration(r11955,c223,s3516).registration16462,445738 -registration(r11956,c72,s3516).registration16463,445771 -registration(r11956,c72,s3516).registration16463,445771 -registration(r11957,c204,s3516).registration16464,445803 -registration(r11957,c204,s3516).registration16464,445803 -registration(r11958,c187,s3516).registration16465,445836 -registration(r11958,c187,s3516).registration16465,445836 -registration(r11959,c235,s3517).registration16466,445869 -registration(r11959,c235,s3517).registration16466,445869 -registration(r11960,c215,s3517).registration16467,445902 -registration(r11960,c215,s3517).registration16467,445902 -registration(r11961,c203,s3517).registration16468,445935 -registration(r11961,c203,s3517).registration16468,445935 -registration(r11962,c97,s3518).registration16469,445968 -registration(r11962,c97,s3518).registration16469,445968 -registration(r11963,c50,s3518).registration16470,446000 -registration(r11963,c50,s3518).registration16470,446000 -registration(r11964,c239,s3518).registration16471,446032 -registration(r11964,c239,s3518).registration16471,446032 -registration(r11965,c226,s3519).registration16472,446065 -registration(r11965,c226,s3519).registration16472,446065 -registration(r11966,c108,s3519).registration16473,446098 -registration(r11966,c108,s3519).registration16473,446098 -registration(r11967,c37,s3519).registration16474,446131 -registration(r11967,c37,s3519).registration16474,446131 -registration(r11968,c108,s3520).registration16475,446163 -registration(r11968,c108,s3520).registration16475,446163 -registration(r11969,c26,s3520).registration16476,446196 -registration(r11969,c26,s3520).registration16476,446196 -registration(r11970,c155,s3520).registration16477,446228 -registration(r11970,c155,s3520).registration16477,446228 -registration(r11971,c236,s3521).registration16478,446261 -registration(r11971,c236,s3521).registration16478,446261 -registration(r11972,c222,s3521).registration16479,446294 -registration(r11972,c222,s3521).registration16479,446294 -registration(r11973,c135,s3521).registration16480,446327 -registration(r11973,c135,s3521).registration16480,446327 -registration(r11974,c102,s3521).registration16481,446360 -registration(r11974,c102,s3521).registration16481,446360 -registration(r11975,c199,s3522).registration16482,446393 -registration(r11975,c199,s3522).registration16482,446393 -registration(r11976,c247,s3522).registration16483,446426 -registration(r11976,c247,s3522).registration16483,446426 -registration(r11977,c158,s3522).registration16484,446459 -registration(r11977,c158,s3522).registration16484,446459 -registration(r11978,c139,s3523).registration16485,446492 -registration(r11978,c139,s3523).registration16485,446492 -registration(r11979,c206,s3523).registration16486,446525 -registration(r11979,c206,s3523).registration16486,446525 -registration(r11980,c128,s3523).registration16487,446558 -registration(r11980,c128,s3523).registration16487,446558 -registration(r11981,c99,s3523).registration16488,446591 -registration(r11981,c99,s3523).registration16488,446591 -registration(r11982,c89,s3524).registration16489,446623 -registration(r11982,c89,s3524).registration16489,446623 -registration(r11983,c83,s3524).registration16490,446655 -registration(r11983,c83,s3524).registration16490,446655 -registration(r11984,c152,s3524).registration16491,446687 -registration(r11984,c152,s3524).registration16491,446687 -registration(r11985,c54,s3524).registration16492,446720 -registration(r11985,c54,s3524).registration16492,446720 -registration(r11986,c52,s3524).registration16493,446752 -registration(r11986,c52,s3524).registration16493,446752 -registration(r11987,c208,s3525).registration16494,446784 -registration(r11987,c208,s3525).registration16494,446784 -registration(r11988,c251,s3525).registration16495,446817 -registration(r11988,c251,s3525).registration16495,446817 -registration(r11989,c160,s3525).registration16496,446850 -registration(r11989,c160,s3525).registration16496,446850 -registration(r11990,c215,s3526).registration16497,446883 -registration(r11990,c215,s3526).registration16497,446883 -registration(r11991,c92,s3526).registration16498,446916 -registration(r11991,c92,s3526).registration16498,446916 -registration(r11992,c130,s3526).registration16499,446948 -registration(r11992,c130,s3526).registration16499,446948 -registration(r11993,c0,s3527).registration16500,446981 -registration(r11993,c0,s3527).registration16500,446981 -registration(r11994,c224,s3527).registration16501,447012 -registration(r11994,c224,s3527).registration16501,447012 -registration(r11995,c76,s3527).registration16502,447045 -registration(r11995,c76,s3527).registration16502,447045 -registration(r11996,c236,s3528).registration16503,447077 -registration(r11996,c236,s3528).registration16503,447077 -registration(r11997,c189,s3528).registration16504,447110 -registration(r11997,c189,s3528).registration16504,447110 -registration(r11998,c139,s3528).registration16505,447143 -registration(r11998,c139,s3528).registration16505,447143 -registration(r11999,c14,s3529).registration16506,447176 -registration(r11999,c14,s3529).registration16506,447176 -registration(r12000,c159,s3529).registration16507,447208 -registration(r12000,c159,s3529).registration16507,447208 -registration(r12001,c241,s3529).registration16508,447241 -registration(r12001,c241,s3529).registration16508,447241 -registration(r12002,c69,s3530).registration16509,447274 -registration(r12002,c69,s3530).registration16509,447274 -registration(r12003,c137,s3530).registration16510,447306 -registration(r12003,c137,s3530).registration16510,447306 -registration(r12004,c7,s3530).registration16511,447339 -registration(r12004,c7,s3530).registration16511,447339 -registration(r12005,c61,s3531).registration16512,447370 -registration(r12005,c61,s3531).registration16512,447370 -registration(r12006,c77,s3531).registration16513,447402 -registration(r12006,c77,s3531).registration16513,447402 -registration(r12007,c138,s3531).registration16514,447434 -registration(r12007,c138,s3531).registration16514,447434 -registration(r12008,c31,s3532).registration16515,447467 -registration(r12008,c31,s3532).registration16515,447467 -registration(r12009,c183,s3532).registration16516,447499 -registration(r12009,c183,s3532).registration16516,447499 -registration(r12010,c147,s3532).registration16517,447532 -registration(r12010,c147,s3532).registration16517,447532 -registration(r12011,c120,s3533).registration16518,447565 -registration(r12011,c120,s3533).registration16518,447565 -registration(r12012,c162,s3533).registration16519,447598 -registration(r12012,c162,s3533).registration16519,447598 -registration(r12013,c77,s3533).registration16520,447631 -registration(r12013,c77,s3533).registration16520,447631 -registration(r12014,c38,s3534).registration16521,447663 -registration(r12014,c38,s3534).registration16521,447663 -registration(r12015,c178,s3534).registration16522,447695 -registration(r12015,c178,s3534).registration16522,447695 -registration(r12016,c41,s3534).registration16523,447728 -registration(r12016,c41,s3534).registration16523,447728 -registration(r12017,c182,s3534).registration16524,447760 -registration(r12017,c182,s3534).registration16524,447760 -registration(r12018,c192,s3535).registration16525,447793 -registration(r12018,c192,s3535).registration16525,447793 -registration(r12019,c201,s3535).registration16526,447826 -registration(r12019,c201,s3535).registration16526,447826 -registration(r12020,c165,s3535).registration16527,447859 -registration(r12020,c165,s3535).registration16527,447859 -registration(r12021,c236,s3536).registration16528,447892 -registration(r12021,c236,s3536).registration16528,447892 -registration(r12022,c59,s3536).registration16529,447925 -registration(r12022,c59,s3536).registration16529,447925 -registration(r12023,c201,s3536).registration16530,447957 -registration(r12023,c201,s3536).registration16530,447957 -registration(r12024,c7,s3537).registration16531,447990 -registration(r12024,c7,s3537).registration16531,447990 -registration(r12025,c181,s3537).registration16532,448021 -registration(r12025,c181,s3537).registration16532,448021 -registration(r12026,c84,s3537).registration16533,448054 -registration(r12026,c84,s3537).registration16533,448054 -registration(r12027,c115,s3538).registration16534,448086 -registration(r12027,c115,s3538).registration16534,448086 -registration(r12028,c158,s3538).registration16535,448119 -registration(r12028,c158,s3538).registration16535,448119 -registration(r12029,c128,s3538).registration16536,448152 -registration(r12029,c128,s3538).registration16536,448152 -registration(r12030,c11,s3538).registration16537,448185 -registration(r12030,c11,s3538).registration16537,448185 -registration(r12031,c183,s3539).registration16538,448217 -registration(r12031,c183,s3539).registration16538,448217 -registration(r12032,c89,s3539).registration16539,448250 -registration(r12032,c89,s3539).registration16539,448250 -registration(r12033,c190,s3539).registration16540,448282 -registration(r12033,c190,s3539).registration16540,448282 -registration(r12034,c127,s3539).registration16541,448315 -registration(r12034,c127,s3539).registration16541,448315 -registration(r12035,c75,s3540).registration16542,448348 -registration(r12035,c75,s3540).registration16542,448348 -registration(r12036,c50,s3540).registration16543,448380 -registration(r12036,c50,s3540).registration16543,448380 -registration(r12037,c155,s3540).registration16544,448412 -registration(r12037,c155,s3540).registration16544,448412 -registration(r12038,c243,s3540).registration16545,448445 -registration(r12038,c243,s3540).registration16545,448445 -registration(r12039,c168,s3541).registration16546,448478 -registration(r12039,c168,s3541).registration16546,448478 -registration(r12040,c165,s3541).registration16547,448511 -registration(r12040,c165,s3541).registration16547,448511 -registration(r12041,c38,s3541).registration16548,448544 -registration(r12041,c38,s3541).registration16548,448544 -registration(r12042,c241,s3542).registration16549,448576 -registration(r12042,c241,s3542).registration16549,448576 -registration(r12043,c253,s3542).registration16550,448609 -registration(r12043,c253,s3542).registration16550,448609 -registration(r12044,c169,s3542).registration16551,448642 -registration(r12044,c169,s3542).registration16551,448642 -registration(r12045,c255,s3543).registration16552,448675 -registration(r12045,c255,s3543).registration16552,448675 -registration(r12046,c223,s3543).registration16553,448708 -registration(r12046,c223,s3543).registration16553,448708 -registration(r12047,c157,s3543).registration16554,448741 -registration(r12047,c157,s3543).registration16554,448741 -registration(r12048,c30,s3544).registration16555,448774 -registration(r12048,c30,s3544).registration16555,448774 -registration(r12049,c136,s3544).registration16556,448806 -registration(r12049,c136,s3544).registration16556,448806 -registration(r12050,c138,s3544).registration16557,448839 -registration(r12050,c138,s3544).registration16557,448839 -registration(r12051,c63,s3544).registration16558,448872 -registration(r12051,c63,s3544).registration16558,448872 -registration(r12052,c214,s3545).registration16559,448904 -registration(r12052,c214,s3545).registration16559,448904 -registration(r12053,c97,s3545).registration16560,448937 -registration(r12053,c97,s3545).registration16560,448937 -registration(r12054,c100,s3545).registration16561,448969 -registration(r12054,c100,s3545).registration16561,448969 -registration(r12055,c150,s3546).registration16562,449002 -registration(r12055,c150,s3546).registration16562,449002 -registration(r12056,c225,s3546).registration16563,449035 -registration(r12056,c225,s3546).registration16563,449035 -registration(r12057,c174,s3546).registration16564,449068 -registration(r12057,c174,s3546).registration16564,449068 -registration(r12058,c87,s3547).registration16565,449101 -registration(r12058,c87,s3547).registration16565,449101 -registration(r12059,c47,s3547).registration16566,449133 -registration(r12059,c47,s3547).registration16566,449133 -registration(r12060,c110,s3547).registration16567,449165 -registration(r12060,c110,s3547).registration16567,449165 -registration(r12061,c95,s3547).registration16568,449198 -registration(r12061,c95,s3547).registration16568,449198 -registration(r12062,c233,s3548).registration16569,449230 -registration(r12062,c233,s3548).registration16569,449230 -registration(r12063,c187,s3548).registration16570,449263 -registration(r12063,c187,s3548).registration16570,449263 -registration(r12064,c86,s3548).registration16571,449296 -registration(r12064,c86,s3548).registration16571,449296 -registration(r12065,c55,s3549).registration16572,449328 -registration(r12065,c55,s3549).registration16572,449328 -registration(r12066,c58,s3549).registration16573,449360 -registration(r12066,c58,s3549).registration16573,449360 -registration(r12067,c45,s3549).registration16574,449392 -registration(r12067,c45,s3549).registration16574,449392 -registration(r12068,c181,s3550).registration16575,449424 -registration(r12068,c181,s3550).registration16575,449424 -registration(r12069,c63,s3550).registration16576,449457 -registration(r12069,c63,s3550).registration16576,449457 -registration(r12070,c112,s3550).registration16577,449489 -registration(r12070,c112,s3550).registration16577,449489 -registration(r12071,c70,s3550).registration16578,449522 -registration(r12071,c70,s3550).registration16578,449522 -registration(r12072,c87,s3551).registration16579,449554 -registration(r12072,c87,s3551).registration16579,449554 -registration(r12073,c135,s3551).registration16580,449586 -registration(r12073,c135,s3551).registration16580,449586 -registration(r12074,c141,s3551).registration16581,449619 -registration(r12074,c141,s3551).registration16581,449619 -registration(r12075,c29,s3551).registration16582,449652 -registration(r12075,c29,s3551).registration16582,449652 -registration(r12076,c180,s3552).registration16583,449684 -registration(r12076,c180,s3552).registration16583,449684 -registration(r12077,c167,s3552).registration16584,449717 -registration(r12077,c167,s3552).registration16584,449717 -registration(r12078,c179,s3552).registration16585,449750 -registration(r12078,c179,s3552).registration16585,449750 -registration(r12079,c216,s3552).registration16586,449783 -registration(r12079,c216,s3552).registration16586,449783 -registration(r12080,c248,s3552).registration16587,449816 -registration(r12080,c248,s3552).registration16587,449816 -registration(r12081,c233,s3553).registration16588,449849 -registration(r12081,c233,s3553).registration16588,449849 -registration(r12082,c127,s3553).registration16589,449882 -registration(r12082,c127,s3553).registration16589,449882 -registration(r12083,c224,s3553).registration16590,449915 -registration(r12083,c224,s3553).registration16590,449915 -registration(r12084,c124,s3554).registration16591,449948 -registration(r12084,c124,s3554).registration16591,449948 -registration(r12085,c96,s3554).registration16592,449981 -registration(r12085,c96,s3554).registration16592,449981 -registration(r12086,c14,s3554).registration16593,450013 -registration(r12086,c14,s3554).registration16593,450013 -registration(r12087,c196,s3555).registration16594,450045 -registration(r12087,c196,s3555).registration16594,450045 -registration(r12088,c14,s3555).registration16595,450078 -registration(r12088,c14,s3555).registration16595,450078 -registration(r12089,c69,s3555).registration16596,450110 -registration(r12089,c69,s3555).registration16596,450110 -registration(r12090,c126,s3555).registration16597,450142 -registration(r12090,c126,s3555).registration16597,450142 -registration(r12091,c39,s3556).registration16598,450175 -registration(r12091,c39,s3556).registration16598,450175 -registration(r12092,c196,s3556).registration16599,450207 -registration(r12092,c196,s3556).registration16599,450207 -registration(r12093,c146,s3556).registration16600,450240 -registration(r12093,c146,s3556).registration16600,450240 -registration(r12094,c152,s3557).registration16601,450273 -registration(r12094,c152,s3557).registration16601,450273 -registration(r12095,c205,s3557).registration16602,450306 -registration(r12095,c205,s3557).registration16602,450306 -registration(r12096,c189,s3557).registration16603,450339 -registration(r12096,c189,s3557).registration16603,450339 -registration(r12097,c114,s3558).registration16604,450372 -registration(r12097,c114,s3558).registration16604,450372 -registration(r12098,c88,s3558).registration16605,450405 -registration(r12098,c88,s3558).registration16605,450405 -registration(r12099,c77,s3558).registration16606,450437 -registration(r12099,c77,s3558).registration16606,450437 -registration(r12100,c55,s3559).registration16607,450469 -registration(r12100,c55,s3559).registration16607,450469 -registration(r12101,c20,s3559).registration16608,450501 -registration(r12101,c20,s3559).registration16608,450501 -registration(r12102,c50,s3559).registration16609,450533 -registration(r12102,c50,s3559).registration16609,450533 -registration(r12103,c174,s3560).registration16610,450565 -registration(r12103,c174,s3560).registration16610,450565 -registration(r12104,c61,s3560).registration16611,450598 -registration(r12104,c61,s3560).registration16611,450598 -registration(r12105,c251,s3560).registration16612,450630 -registration(r12105,c251,s3560).registration16612,450630 -registration(r12106,c191,s3561).registration16613,450663 -registration(r12106,c191,s3561).registration16613,450663 -registration(r12107,c114,s3561).registration16614,450696 -registration(r12107,c114,s3561).registration16614,450696 -registration(r12108,c18,s3561).registration16615,450729 -registration(r12108,c18,s3561).registration16615,450729 -registration(r12109,c77,s3562).registration16616,450761 -registration(r12109,c77,s3562).registration16616,450761 -registration(r12110,c235,s3562).registration16617,450793 -registration(r12110,c235,s3562).registration16617,450793 -registration(r12111,c180,s3562).registration16618,450826 -registration(r12111,c180,s3562).registration16618,450826 -registration(r12112,c5,s3563).registration16619,450859 -registration(r12112,c5,s3563).registration16619,450859 -registration(r12113,c119,s3563).registration16620,450890 -registration(r12113,c119,s3563).registration16620,450890 -registration(r12114,c104,s3563).registration16621,450923 -registration(r12114,c104,s3563).registration16621,450923 -registration(r12115,c221,s3564).registration16622,450956 -registration(r12115,c221,s3564).registration16622,450956 -registration(r12116,c54,s3564).registration16623,450989 -registration(r12116,c54,s3564).registration16623,450989 -registration(r12117,c29,s3564).registration16624,451021 -registration(r12117,c29,s3564).registration16624,451021 -registration(r12118,c202,s3564).registration16625,451053 -registration(r12118,c202,s3564).registration16625,451053 -registration(r12119,c99,s3565).registration16626,451086 -registration(r12119,c99,s3565).registration16626,451086 -registration(r12120,c223,s3565).registration16627,451118 -registration(r12120,c223,s3565).registration16627,451118 -registration(r12121,c160,s3565).registration16628,451151 -registration(r12121,c160,s3565).registration16628,451151 -registration(r12122,c79,s3566).registration16629,451184 -registration(r12122,c79,s3566).registration16629,451184 -registration(r12123,c126,s3566).registration16630,451216 -registration(r12123,c126,s3566).registration16630,451216 -registration(r12124,c199,s3566).registration16631,451249 -registration(r12124,c199,s3566).registration16631,451249 -registration(r12125,c134,s3567).registration16632,451282 -registration(r12125,c134,s3567).registration16632,451282 -registration(r12126,c38,s3567).registration16633,451315 -registration(r12126,c38,s3567).registration16633,451315 -registration(r12127,c94,s3567).registration16634,451347 -registration(r12127,c94,s3567).registration16634,451347 -registration(r12128,c172,s3567).registration16635,451379 -registration(r12128,c172,s3567).registration16635,451379 -registration(r12129,c54,s3568).registration16636,451412 -registration(r12129,c54,s3568).registration16636,451412 -registration(r12130,c205,s3568).registration16637,451444 -registration(r12130,c205,s3568).registration16637,451444 -registration(r12131,c138,s3568).registration16638,451477 -registration(r12131,c138,s3568).registration16638,451477 -registration(r12132,c2,s3569).registration16639,451510 -registration(r12132,c2,s3569).registration16639,451510 -registration(r12133,c58,s3569).registration16640,451541 -registration(r12133,c58,s3569).registration16640,451541 -registration(r12134,c151,s3569).registration16641,451573 -registration(r12134,c151,s3569).registration16641,451573 -registration(r12135,c205,s3569).registration16642,451606 -registration(r12135,c205,s3569).registration16642,451606 -registration(r12136,c227,s3570).registration16643,451639 -registration(r12136,c227,s3570).registration16643,451639 -registration(r12137,c66,s3570).registration16644,451672 -registration(r12137,c66,s3570).registration16644,451672 -registration(r12138,c152,s3570).registration16645,451704 -registration(r12138,c152,s3570).registration16645,451704 -registration(r12139,c120,s3571).registration16646,451737 -registration(r12139,c120,s3571).registration16646,451737 -registration(r12140,c243,s3571).registration16647,451770 -registration(r12140,c243,s3571).registration16647,451770 -registration(r12141,c229,s3571).registration16648,451803 -registration(r12141,c229,s3571).registration16648,451803 -registration(r12142,c100,s3572).registration16649,451836 -registration(r12142,c100,s3572).registration16649,451836 -registration(r12143,c11,s3572).registration16650,451869 -registration(r12143,c11,s3572).registration16650,451869 -registration(r12144,c247,s3572).registration16651,451901 -registration(r12144,c247,s3572).registration16651,451901 -registration(r12145,c30,s3573).registration16652,451934 -registration(r12145,c30,s3573).registration16652,451934 -registration(r12146,c14,s3573).registration16653,451966 -registration(r12146,c14,s3573).registration16653,451966 -registration(r12147,c221,s3573).registration16654,451998 -registration(r12147,c221,s3573).registration16654,451998 -registration(r12148,c20,s3574).registration16655,452031 -registration(r12148,c20,s3574).registration16655,452031 -registration(r12149,c3,s3574).registration16656,452063 -registration(r12149,c3,s3574).registration16656,452063 -registration(r12150,c70,s3574).registration16657,452094 -registration(r12150,c70,s3574).registration16657,452094 -registration(r12151,c70,s3575).registration16658,452126 -registration(r12151,c70,s3575).registration16658,452126 -registration(r12152,c31,s3575).registration16659,452158 -registration(r12152,c31,s3575).registration16659,452158 -registration(r12153,c109,s3575).registration16660,452190 -registration(r12153,c109,s3575).registration16660,452190 -registration(r12154,c55,s3575).registration16661,452223 -registration(r12154,c55,s3575).registration16661,452223 -registration(r12155,c241,s3576).registration16662,452255 -registration(r12155,c241,s3576).registration16662,452255 -registration(r12156,c121,s3576).registration16663,452288 -registration(r12156,c121,s3576).registration16663,452288 -registration(r12157,c209,s3576).registration16664,452321 -registration(r12157,c209,s3576).registration16664,452321 -registration(r12158,c73,s3576).registration16665,452354 -registration(r12158,c73,s3576).registration16665,452354 -registration(r12159,c55,s3577).registration16666,452386 -registration(r12159,c55,s3577).registration16666,452386 -registration(r12160,c7,s3577).registration16667,452418 -registration(r12160,c7,s3577).registration16667,452418 -registration(r12161,c143,s3577).registration16668,452449 -registration(r12161,c143,s3577).registration16668,452449 -registration(r12162,c153,s3578).registration16669,452482 -registration(r12162,c153,s3578).registration16669,452482 -registration(r12163,c113,s3578).registration16670,452515 -registration(r12163,c113,s3578).registration16670,452515 -registration(r12164,c28,s3578).registration16671,452548 -registration(r12164,c28,s3578).registration16671,452548 -registration(r12165,c144,s3578).registration16672,452580 -registration(r12165,c144,s3578).registration16672,452580 -registration(r12166,c9,s3578).registration16673,452613 -registration(r12166,c9,s3578).registration16673,452613 -registration(r12167,c198,s3579).registration16674,452644 -registration(r12167,c198,s3579).registration16674,452644 -registration(r12168,c229,s3579).registration16675,452677 -registration(r12168,c229,s3579).registration16675,452677 -registration(r12169,c29,s3579).registration16676,452710 -registration(r12169,c29,s3579).registration16676,452710 -registration(r12170,c4,s3579).registration16677,452742 -registration(r12170,c4,s3579).registration16677,452742 -registration(r12171,c160,s3580).registration16678,452773 -registration(r12171,c160,s3580).registration16678,452773 -registration(r12172,c113,s3580).registration16679,452806 -registration(r12172,c113,s3580).registration16679,452806 -registration(r12173,c35,s3580).registration16680,452839 -registration(r12173,c35,s3580).registration16680,452839 -registration(r12174,c127,s3580).registration16681,452871 -registration(r12174,c127,s3580).registration16681,452871 -registration(r12175,c70,s3581).registration16682,452904 -registration(r12175,c70,s3581).registration16682,452904 -registration(r12176,c112,s3581).registration16683,452936 -registration(r12176,c112,s3581).registration16683,452936 -registration(r12177,c213,s3581).registration16684,452969 -registration(r12177,c213,s3581).registration16684,452969 -registration(r12178,c179,s3581).registration16685,453002 -registration(r12178,c179,s3581).registration16685,453002 -registration(r12179,c98,s3582).registration16686,453035 -registration(r12179,c98,s3582).registration16686,453035 -registration(r12180,c234,s3582).registration16687,453067 -registration(r12180,c234,s3582).registration16687,453067 -registration(r12181,c253,s3582).registration16688,453100 -registration(r12181,c253,s3582).registration16688,453100 -registration(r12182,c105,s3583).registration16689,453133 -registration(r12182,c105,s3583).registration16689,453133 -registration(r12183,c139,s3583).registration16690,453166 -registration(r12183,c139,s3583).registration16690,453166 -registration(r12184,c214,s3583).registration16691,453199 -registration(r12184,c214,s3583).registration16691,453199 -registration(r12185,c101,s3584).registration16692,453232 -registration(r12185,c101,s3584).registration16692,453232 -registration(r12186,c177,s3584).registration16693,453265 -registration(r12186,c177,s3584).registration16693,453265 -registration(r12187,c193,s3584).registration16694,453298 -registration(r12187,c193,s3584).registration16694,453298 -registration(r12188,c150,s3584).registration16695,453331 -registration(r12188,c150,s3584).registration16695,453331 -registration(r12189,c246,s3585).registration16696,453364 -registration(r12189,c246,s3585).registration16696,453364 -registration(r12190,c193,s3585).registration16697,453397 -registration(r12190,c193,s3585).registration16697,453397 -registration(r12191,c226,s3585).registration16698,453430 -registration(r12191,c226,s3585).registration16698,453430 -registration(r12192,c7,s3586).registration16699,453463 -registration(r12192,c7,s3586).registration16699,453463 -registration(r12193,c163,s3586).registration16700,453494 -registration(r12193,c163,s3586).registration16700,453494 -registration(r12194,c178,s3586).registration16701,453527 -registration(r12194,c178,s3586).registration16701,453527 -registration(r12195,c34,s3587).registration16702,453560 -registration(r12195,c34,s3587).registration16702,453560 -registration(r12196,c57,s3587).registration16703,453592 -registration(r12196,c57,s3587).registration16703,453592 -registration(r12197,c1,s3587).registration16704,453624 -registration(r12197,c1,s3587).registration16704,453624 -registration(r12198,c101,s3587).registration16705,453655 -registration(r12198,c101,s3587).registration16705,453655 -registration(r12199,c191,s3588).registration16706,453688 -registration(r12199,c191,s3588).registration16706,453688 -registration(r12200,c43,s3588).registration16707,453721 -registration(r12200,c43,s3588).registration16707,453721 -registration(r12201,c85,s3588).registration16708,453753 -registration(r12201,c85,s3588).registration16708,453753 -registration(r12202,c149,s3588).registration16709,453785 -registration(r12202,c149,s3588).registration16709,453785 -registration(r12203,c250,s3589).registration16710,453818 -registration(r12203,c250,s3589).registration16710,453818 -registration(r12204,c27,s3589).registration16711,453851 -registration(r12204,c27,s3589).registration16711,453851 -registration(r12205,c151,s3589).registration16712,453883 -registration(r12205,c151,s3589).registration16712,453883 -registration(r12206,c88,s3590).registration16713,453916 -registration(r12206,c88,s3590).registration16713,453916 -registration(r12207,c140,s3590).registration16714,453948 -registration(r12207,c140,s3590).registration16714,453948 -registration(r12208,c100,s3590).registration16715,453981 -registration(r12208,c100,s3590).registration16715,453981 -registration(r12209,c38,s3591).registration16716,454014 -registration(r12209,c38,s3591).registration16716,454014 -registration(r12210,c27,s3591).registration16717,454046 -registration(r12210,c27,s3591).registration16717,454046 -registration(r12211,c24,s3591).registration16718,454078 -registration(r12211,c24,s3591).registration16718,454078 -registration(r12212,c188,s3591).registration16719,454110 -registration(r12212,c188,s3591).registration16719,454110 -registration(r12213,c12,s3592).registration16720,454143 -registration(r12213,c12,s3592).registration16720,454143 -registration(r12214,c133,s3592).registration16721,454175 -registration(r12214,c133,s3592).registration16721,454175 -registration(r12215,c165,s3592).registration16722,454208 -registration(r12215,c165,s3592).registration16722,454208 -registration(r12216,c190,s3592).registration16723,454241 -registration(r12216,c190,s3592).registration16723,454241 -registration(r12217,c3,s3593).registration16724,454274 -registration(r12217,c3,s3593).registration16724,454274 -registration(r12218,c236,s3593).registration16725,454305 -registration(r12218,c236,s3593).registration16725,454305 -registration(r12219,c11,s3593).registration16726,454338 -registration(r12219,c11,s3593).registration16726,454338 -registration(r12220,c96,s3593).registration16727,454370 -registration(r12220,c96,s3593).registration16727,454370 -registration(r12221,c231,s3594).registration16728,454402 -registration(r12221,c231,s3594).registration16728,454402 -registration(r12222,c172,s3594).registration16729,454435 -registration(r12222,c172,s3594).registration16729,454435 -registration(r12223,c62,s3594).registration16730,454468 -registration(r12223,c62,s3594).registration16730,454468 -registration(r12224,c214,s3595).registration16731,454500 -registration(r12224,c214,s3595).registration16731,454500 -registration(r12225,c66,s3595).registration16732,454533 -registration(r12225,c66,s3595).registration16732,454533 -registration(r12226,c148,s3595).registration16733,454565 -registration(r12226,c148,s3595).registration16733,454565 -registration(r12227,c206,s3595).registration16734,454598 -registration(r12227,c206,s3595).registration16734,454598 -registration(r12228,c102,s3596).registration16735,454631 -registration(r12228,c102,s3596).registration16735,454631 -registration(r12229,c81,s3596).registration16736,454664 -registration(r12229,c81,s3596).registration16736,454664 -registration(r12230,c31,s3596).registration16737,454696 -registration(r12230,c31,s3596).registration16737,454696 -registration(r12231,c122,s3597).registration16738,454728 -registration(r12231,c122,s3597).registration16738,454728 -registration(r12232,c165,s3597).registration16739,454761 -registration(r12232,c165,s3597).registration16739,454761 -registration(r12233,c38,s3597).registration16740,454794 -registration(r12233,c38,s3597).registration16740,454794 -registration(r12234,c203,s3597).registration16741,454826 -registration(r12234,c203,s3597).registration16741,454826 -registration(r12235,c180,s3598).registration16742,454859 -registration(r12235,c180,s3598).registration16742,454859 -registration(r12236,c232,s3598).registration16743,454892 -registration(r12236,c232,s3598).registration16743,454892 -registration(r12237,c112,s3598).registration16744,454925 -registration(r12237,c112,s3598).registration16744,454925 -registration(r12238,c123,s3599).registration16745,454958 -registration(r12238,c123,s3599).registration16745,454958 -registration(r12239,c124,s3599).registration16746,454991 -registration(r12239,c124,s3599).registration16746,454991 -registration(r12240,c236,s3599).registration16747,455024 -registration(r12240,c236,s3599).registration16747,455024 -registration(r12241,c153,s3600).registration16748,455057 -registration(r12241,c153,s3600).registration16748,455057 -registration(r12242,c26,s3600).registration16749,455090 -registration(r12242,c26,s3600).registration16749,455090 -registration(r12243,c70,s3600).registration16750,455122 -registration(r12243,c70,s3600).registration16750,455122 -registration(r12244,c136,s3601).registration16751,455154 -registration(r12244,c136,s3601).registration16751,455154 -registration(r12245,c246,s3601).registration16752,455187 -registration(r12245,c246,s3601).registration16752,455187 -registration(r12246,c31,s3601).registration16753,455220 -registration(r12246,c31,s3601).registration16753,455220 -registration(r12247,c134,s3602).registration16754,455252 -registration(r12247,c134,s3602).registration16754,455252 -registration(r12248,c169,s3602).registration16755,455285 -registration(r12248,c169,s3602).registration16755,455285 -registration(r12249,c15,s3602).registration16756,455318 -registration(r12249,c15,s3602).registration16756,455318 -registration(r12250,c20,s3602).registration16757,455350 -registration(r12250,c20,s3602).registration16757,455350 -registration(r12251,c173,s3603).registration16758,455382 -registration(r12251,c173,s3603).registration16758,455382 -registration(r12252,c58,s3603).registration16759,455415 -registration(r12252,c58,s3603).registration16759,455415 -registration(r12253,c16,s3603).registration16760,455447 -registration(r12253,c16,s3603).registration16760,455447 -registration(r12254,c197,s3603).registration16761,455479 -registration(r12254,c197,s3603).registration16761,455479 -registration(r12255,c191,s3604).registration16762,455512 -registration(r12255,c191,s3604).registration16762,455512 -registration(r12256,c118,s3604).registration16763,455545 -registration(r12256,c118,s3604).registration16763,455545 -registration(r12257,c125,s3604).registration16764,455578 -registration(r12257,c125,s3604).registration16764,455578 -registration(r12258,c249,s3605).registration16765,455611 -registration(r12258,c249,s3605).registration16765,455611 -registration(r12259,c128,s3605).registration16766,455644 -registration(r12259,c128,s3605).registration16766,455644 -registration(r12260,c205,s3605).registration16767,455677 -registration(r12260,c205,s3605).registration16767,455677 -registration(r12261,c231,s3605).registration16768,455710 -registration(r12261,c231,s3605).registration16768,455710 -registration(r12262,c163,s3606).registration16769,455743 -registration(r12262,c163,s3606).registration16769,455743 -registration(r12263,c123,s3606).registration16770,455776 -registration(r12263,c123,s3606).registration16770,455776 -registration(r12264,c217,s3606).registration16771,455809 -registration(r12264,c217,s3606).registration16771,455809 -registration(r12265,c113,s3606).registration16772,455842 -registration(r12265,c113,s3606).registration16772,455842 -registration(r12266,c131,s3607).registration16773,455875 -registration(r12266,c131,s3607).registration16773,455875 -registration(r12267,c98,s3607).registration16774,455908 -registration(r12267,c98,s3607).registration16774,455908 -registration(r12268,c126,s3607).registration16775,455940 -registration(r12268,c126,s3607).registration16775,455940 -registration(r12269,c114,s3607).registration16776,455973 -registration(r12269,c114,s3607).registration16776,455973 -registration(r12270,c64,s3608).registration16777,456006 -registration(r12270,c64,s3608).registration16777,456006 -registration(r12271,c252,s3608).registration16778,456038 -registration(r12271,c252,s3608).registration16778,456038 -registration(r12272,c51,s3608).registration16779,456071 -registration(r12272,c51,s3608).registration16779,456071 -registration(r12273,c11,s3608).registration16780,456103 -registration(r12273,c11,s3608).registration16780,456103 -registration(r12274,c128,s3609).registration16781,456135 -registration(r12274,c128,s3609).registration16781,456135 -registration(r12275,c210,s3609).registration16782,456168 -registration(r12275,c210,s3609).registration16782,456168 -registration(r12276,c202,s3609).registration16783,456201 -registration(r12276,c202,s3609).registration16783,456201 -registration(r12277,c95,s3610).registration16784,456234 -registration(r12277,c95,s3610).registration16784,456234 -registration(r12278,c234,s3610).registration16785,456266 -registration(r12278,c234,s3610).registration16785,456266 -registration(r12279,c72,s3610).registration16786,456299 -registration(r12279,c72,s3610).registration16786,456299 -registration(r12280,c166,s3611).registration16787,456331 -registration(r12280,c166,s3611).registration16787,456331 -registration(r12281,c250,s3611).registration16788,456364 -registration(r12281,c250,s3611).registration16788,456364 -registration(r12282,c159,s3611).registration16789,456397 -registration(r12282,c159,s3611).registration16789,456397 -registration(r12283,c121,s3612).registration16790,456430 -registration(r12283,c121,s3612).registration16790,456430 -registration(r12284,c117,s3612).registration16791,456463 -registration(r12284,c117,s3612).registration16791,456463 -registration(r12285,c233,s3612).registration16792,456496 -registration(r12285,c233,s3612).registration16792,456496 -registration(r12286,c75,s3613).registration16793,456529 -registration(r12286,c75,s3613).registration16793,456529 -registration(r12287,c240,s3613).registration16794,456561 -registration(r12287,c240,s3613).registration16794,456561 -registration(r12288,c37,s3613).registration16795,456594 -registration(r12288,c37,s3613).registration16795,456594 -registration(r12289,c102,s3614).registration16796,456626 -registration(r12289,c102,s3614).registration16796,456626 -registration(r12290,c187,s3614).registration16797,456659 -registration(r12290,c187,s3614).registration16797,456659 -registration(r12291,c170,s3614).registration16798,456692 -registration(r12291,c170,s3614).registration16798,456692 -registration(r12292,c181,s3615).registration16799,456725 -registration(r12292,c181,s3615).registration16799,456725 -registration(r12293,c97,s3615).registration16800,456758 -registration(r12293,c97,s3615).registration16800,456758 -registration(r12294,c154,s3615).registration16801,456790 -registration(r12294,c154,s3615).registration16801,456790 -registration(r12295,c234,s3616).registration16802,456823 -registration(r12295,c234,s3616).registration16802,456823 -registration(r12296,c223,s3616).registration16803,456856 -registration(r12296,c223,s3616).registration16803,456856 -registration(r12297,c67,s3616).registration16804,456889 -registration(r12297,c67,s3616).registration16804,456889 -registration(r12298,c253,s3617).registration16805,456921 -registration(r12298,c253,s3617).registration16805,456921 -registration(r12299,c218,s3617).registration16806,456954 -registration(r12299,c218,s3617).registration16806,456954 -registration(r12300,c185,s3617).registration16807,456987 -registration(r12300,c185,s3617).registration16807,456987 -registration(r12301,c48,s3617).registration16808,457020 -registration(r12301,c48,s3617).registration16808,457020 -registration(r12302,c24,s3618).registration16809,457052 -registration(r12302,c24,s3618).registration16809,457052 -registration(r12303,c155,s3618).registration16810,457084 -registration(r12303,c155,s3618).registration16810,457084 -registration(r12304,c27,s3618).registration16811,457117 -registration(r12304,c27,s3618).registration16811,457117 -registration(r12305,c101,s3619).registration16812,457149 -registration(r12305,c101,s3619).registration16812,457149 -registration(r12306,c122,s3619).registration16813,457182 -registration(r12306,c122,s3619).registration16813,457182 -registration(r12307,c185,s3619).registration16814,457215 -registration(r12307,c185,s3619).registration16814,457215 -registration(r12308,c241,s3619).registration16815,457248 -registration(r12308,c241,s3619).registration16815,457248 -registration(r12309,c223,s3619).registration16816,457281 -registration(r12309,c223,s3619).registration16816,457281 -registration(r12310,c155,s3620).registration16817,457314 -registration(r12310,c155,s3620).registration16817,457314 -registration(r12311,c0,s3620).registration16818,457347 -registration(r12311,c0,s3620).registration16818,457347 -registration(r12312,c168,s3620).registration16819,457378 -registration(r12312,c168,s3620).registration16819,457378 -registration(r12313,c67,s3621).registration16820,457411 -registration(r12313,c67,s3621).registration16820,457411 -registration(r12314,c210,s3621).registration16821,457443 -registration(r12314,c210,s3621).registration16821,457443 -registration(r12315,c186,s3621).registration16822,457476 -registration(r12315,c186,s3621).registration16822,457476 -registration(r12316,c177,s3621).registration16823,457509 -registration(r12316,c177,s3621).registration16823,457509 -registration(r12317,c98,s3622).registration16824,457542 -registration(r12317,c98,s3622).registration16824,457542 -registration(r12318,c115,s3622).registration16825,457574 -registration(r12318,c115,s3622).registration16825,457574 -registration(r12319,c252,s3622).registration16826,457607 -registration(r12319,c252,s3622).registration16826,457607 -registration(r12320,c155,s3622).registration16827,457640 -registration(r12320,c155,s3622).registration16827,457640 -registration(r12321,c97,s3623).registration16828,457673 -registration(r12321,c97,s3623).registration16828,457673 -registration(r12322,c95,s3623).registration16829,457705 -registration(r12322,c95,s3623).registration16829,457705 -registration(r12323,c179,s3623).registration16830,457737 -registration(r12323,c179,s3623).registration16830,457737 -registration(r12324,c61,s3624).registration16831,457770 -registration(r12324,c61,s3624).registration16831,457770 -registration(r12325,c144,s3624).registration16832,457802 -registration(r12325,c144,s3624).registration16832,457802 -registration(r12326,c224,s3624).registration16833,457835 -registration(r12326,c224,s3624).registration16833,457835 -registration(r12327,c4,s3625).registration16834,457868 -registration(r12327,c4,s3625).registration16834,457868 -registration(r12328,c169,s3625).registration16835,457899 -registration(r12328,c169,s3625).registration16835,457899 -registration(r12329,c105,s3625).registration16836,457932 -registration(r12329,c105,s3625).registration16836,457932 -registration(r12330,c105,s3626).registration16837,457965 -registration(r12330,c105,s3626).registration16837,457965 -registration(r12331,c140,s3626).registration16838,457998 -registration(r12331,c140,s3626).registration16838,457998 -registration(r12332,c150,s3626).registration16839,458031 -registration(r12332,c150,s3626).registration16839,458031 -registration(r12333,c103,s3627).registration16840,458064 -registration(r12333,c103,s3627).registration16840,458064 -registration(r12334,c135,s3627).registration16841,458097 -registration(r12334,c135,s3627).registration16841,458097 -registration(r12335,c253,s3627).registration16842,458130 -registration(r12335,c253,s3627).registration16842,458130 -registration(r12336,c134,s3627).registration16843,458163 -registration(r12336,c134,s3627).registration16843,458163 -registration(r12337,c141,s3628).registration16844,458196 -registration(r12337,c141,s3628).registration16844,458196 -registration(r12338,c131,s3628).registration16845,458229 -registration(r12338,c131,s3628).registration16845,458229 -registration(r12339,c156,s3628).registration16846,458262 -registration(r12339,c156,s3628).registration16846,458262 -registration(r12340,c254,s3628).registration16847,458295 -registration(r12340,c254,s3628).registration16847,458295 -registration(r12341,c27,s3629).registration16848,458328 -registration(r12341,c27,s3629).registration16848,458328 -registration(r12342,c209,s3629).registration16849,458360 -registration(r12342,c209,s3629).registration16849,458360 -registration(r12343,c250,s3629).registration16850,458393 -registration(r12343,c250,s3629).registration16850,458393 -registration(r12344,c138,s3629).registration16851,458426 -registration(r12344,c138,s3629).registration16851,458426 -registration(r12345,c118,s3630).registration16852,458459 -registration(r12345,c118,s3630).registration16852,458459 -registration(r12346,c198,s3630).registration16853,458492 -registration(r12346,c198,s3630).registration16853,458492 -registration(r12347,c212,s3630).registration16854,458525 -registration(r12347,c212,s3630).registration16854,458525 -registration(r12348,c61,s3631).registration16855,458558 -registration(r12348,c61,s3631).registration16855,458558 -registration(r12349,c95,s3631).registration16856,458590 -registration(r12349,c95,s3631).registration16856,458590 -registration(r12350,c180,s3631).registration16857,458622 -registration(r12350,c180,s3631).registration16857,458622 -registration(r12351,c72,s3632).registration16858,458655 -registration(r12351,c72,s3632).registration16858,458655 -registration(r12352,c115,s3632).registration16859,458687 -registration(r12352,c115,s3632).registration16859,458687 -registration(r12353,c187,s3632).registration16860,458720 -registration(r12353,c187,s3632).registration16860,458720 -registration(r12354,c183,s3633).registration16861,458753 -registration(r12354,c183,s3633).registration16861,458753 -registration(r12355,c202,s3633).registration16862,458786 -registration(r12355,c202,s3633).registration16862,458786 -registration(r12356,c128,s3633).registration16863,458819 -registration(r12356,c128,s3633).registration16863,458819 -registration(r12357,c86,s3633).registration16864,458852 -registration(r12357,c86,s3633).registration16864,458852 -registration(r12358,c178,s3633).registration16865,458884 -registration(r12358,c178,s3633).registration16865,458884 -registration(r12359,c19,s3634).registration16866,458917 -registration(r12359,c19,s3634).registration16866,458917 -registration(r12360,c36,s3634).registration16867,458949 -registration(r12360,c36,s3634).registration16867,458949 -registration(r12361,c177,s3634).registration16868,458981 -registration(r12361,c177,s3634).registration16868,458981 -registration(r12362,c245,s3634).registration16869,459014 -registration(r12362,c245,s3634).registration16869,459014 -registration(r12363,c197,s3635).registration16870,459047 -registration(r12363,c197,s3635).registration16870,459047 -registration(r12364,c3,s3635).registration16871,459080 -registration(r12364,c3,s3635).registration16871,459080 -registration(r12365,c54,s3635).registration16872,459111 -registration(r12365,c54,s3635).registration16872,459111 -registration(r12366,c10,s3636).registration16873,459143 -registration(r12366,c10,s3636).registration16873,459143 -registration(r12367,c182,s3636).registration16874,459175 -registration(r12367,c182,s3636).registration16874,459175 -registration(r12368,c57,s3636).registration16875,459208 -registration(r12368,c57,s3636).registration16875,459208 -registration(r12369,c237,s3636).registration16876,459240 -registration(r12369,c237,s3636).registration16876,459240 -registration(r12370,c239,s3637).registration16877,459273 -registration(r12370,c239,s3637).registration16877,459273 -registration(r12371,c0,s3637).registration16878,459306 -registration(r12371,c0,s3637).registration16878,459306 -registration(r12372,c54,s3637).registration16879,459337 -registration(r12372,c54,s3637).registration16879,459337 -registration(r12373,c230,s3638).registration16880,459369 -registration(r12373,c230,s3638).registration16880,459369 -registration(r12374,c92,s3638).registration16881,459402 -registration(r12374,c92,s3638).registration16881,459402 -registration(r12375,c114,s3638).registration16882,459434 -registration(r12375,c114,s3638).registration16882,459434 -registration(r12376,c137,s3639).registration16883,459467 -registration(r12376,c137,s3639).registration16883,459467 -registration(r12377,c8,s3639).registration16884,459500 -registration(r12377,c8,s3639).registration16884,459500 -registration(r12378,c227,s3639).registration16885,459531 -registration(r12378,c227,s3639).registration16885,459531 -registration(r12379,c6,s3639).registration16886,459564 -registration(r12379,c6,s3639).registration16886,459564 -registration(r12380,c236,s3640).registration16887,459595 -registration(r12380,c236,s3640).registration16887,459595 -registration(r12381,c75,s3640).registration16888,459628 -registration(r12381,c75,s3640).registration16888,459628 -registration(r12382,c251,s3640).registration16889,459660 -registration(r12382,c251,s3640).registration16889,459660 -registration(r12383,c254,s3640).registration16890,459693 -registration(r12383,c254,s3640).registration16890,459693 -registration(r12384,c206,s3641).registration16891,459726 -registration(r12384,c206,s3641).registration16891,459726 -registration(r12385,c77,s3641).registration16892,459759 -registration(r12385,c77,s3641).registration16892,459759 -registration(r12386,c200,s3641).registration16893,459791 -registration(r12386,c200,s3641).registration16893,459791 -registration(r12387,c2,s3641).registration16894,459824 -registration(r12387,c2,s3641).registration16894,459824 -registration(r12388,c33,s3642).registration16895,459855 -registration(r12388,c33,s3642).registration16895,459855 -registration(r12389,c25,s3642).registration16896,459887 -registration(r12389,c25,s3642).registration16896,459887 -registration(r12390,c239,s3642).registration16897,459919 -registration(r12390,c239,s3642).registration16897,459919 -registration(r12391,c26,s3642).registration16898,459952 -registration(r12391,c26,s3642).registration16898,459952 -registration(r12392,c116,s3642).registration16899,459984 -registration(r12392,c116,s3642).registration16899,459984 -registration(r12393,c212,s3643).registration16900,460017 -registration(r12393,c212,s3643).registration16900,460017 -registration(r12394,c11,s3643).registration16901,460050 -registration(r12394,c11,s3643).registration16901,460050 -registration(r12395,c207,s3643).registration16902,460082 -registration(r12395,c207,s3643).registration16902,460082 -registration(r12396,c174,s3644).registration16903,460115 -registration(r12396,c174,s3644).registration16903,460115 -registration(r12397,c208,s3644).registration16904,460148 -registration(r12397,c208,s3644).registration16904,460148 -registration(r12398,c196,s3644).registration16905,460181 -registration(r12398,c196,s3644).registration16905,460181 -registration(r12399,c226,s3644).registration16906,460214 -registration(r12399,c226,s3644).registration16906,460214 -registration(r12400,c151,s3645).registration16907,460247 -registration(r12400,c151,s3645).registration16907,460247 -registration(r12401,c249,s3645).registration16908,460280 -registration(r12401,c249,s3645).registration16908,460280 -registration(r12402,c46,s3645).registration16909,460313 -registration(r12402,c46,s3645).registration16909,460313 -registration(r12403,c64,s3646).registration16910,460345 -registration(r12403,c64,s3646).registration16910,460345 -registration(r12404,c145,s3646).registration16911,460377 -registration(r12404,c145,s3646).registration16911,460377 -registration(r12405,c96,s3646).registration16912,460410 -registration(r12405,c96,s3646).registration16912,460410 -registration(r12406,c57,s3647).registration16913,460442 -registration(r12406,c57,s3647).registration16913,460442 -registration(r12407,c146,s3647).registration16914,460474 -registration(r12407,c146,s3647).registration16914,460474 -registration(r12408,c93,s3647).registration16915,460507 -registration(r12408,c93,s3647).registration16915,460507 -registration(r12409,c76,s3648).registration16916,460539 -registration(r12409,c76,s3648).registration16916,460539 -registration(r12410,c107,s3648).registration16917,460571 -registration(r12410,c107,s3648).registration16917,460571 -registration(r12411,c197,s3648).registration16918,460604 -registration(r12411,c197,s3648).registration16918,460604 -registration(r12412,c153,s3649).registration16919,460637 -registration(r12412,c153,s3649).registration16919,460637 -registration(r12413,c124,s3649).registration16920,460670 -registration(r12413,c124,s3649).registration16920,460670 -registration(r12414,c174,s3649).registration16921,460703 -registration(r12414,c174,s3649).registration16921,460703 -registration(r12415,c92,s3650).registration16922,460736 -registration(r12415,c92,s3650).registration16922,460736 -registration(r12416,c177,s3650).registration16923,460768 -registration(r12416,c177,s3650).registration16923,460768 -registration(r12417,c255,s3650).registration16924,460801 -registration(r12417,c255,s3650).registration16924,460801 -registration(r12418,c225,s3651).registration16925,460834 -registration(r12418,c225,s3651).registration16925,460834 -registration(r12419,c132,s3651).registration16926,460867 -registration(r12419,c132,s3651).registration16926,460867 -registration(r12420,c183,s3651).registration16927,460900 -registration(r12420,c183,s3651).registration16927,460900 -registration(r12421,c23,s3651).registration16928,460933 -registration(r12421,c23,s3651).registration16928,460933 -registration(r12422,c80,s3652).registration16929,460965 -registration(r12422,c80,s3652).registration16929,460965 -registration(r12423,c169,s3652).registration16930,460997 -registration(r12423,c169,s3652).registration16930,460997 -registration(r12424,c171,s3652).registration16931,461030 -registration(r12424,c171,s3652).registration16931,461030 -registration(r12425,c229,s3652).registration16932,461063 -registration(r12425,c229,s3652).registration16932,461063 -registration(r12426,c111,s3653).registration16933,461096 -registration(r12426,c111,s3653).registration16933,461096 -registration(r12427,c96,s3653).registration16934,461129 -registration(r12427,c96,s3653).registration16934,461129 -registration(r12428,c62,s3653).registration16935,461161 -registration(r12428,c62,s3653).registration16935,461161 -registration(r12429,c174,s3653).registration16936,461193 -registration(r12429,c174,s3653).registration16936,461193 -registration(r12430,c223,s3654).registration16937,461226 -registration(r12430,c223,s3654).registration16937,461226 -registration(r12431,c30,s3654).registration16938,461259 -registration(r12431,c30,s3654).registration16938,461259 -registration(r12432,c136,s3654).registration16939,461291 -registration(r12432,c136,s3654).registration16939,461291 -registration(r12433,c55,s3655).registration16940,461324 -registration(r12433,c55,s3655).registration16940,461324 -registration(r12434,c90,s3655).registration16941,461356 -registration(r12434,c90,s3655).registration16941,461356 -registration(r12435,c214,s3655).registration16942,461388 -registration(r12435,c214,s3655).registration16942,461388 -registration(r12436,c212,s3655).registration16943,461421 -registration(r12436,c212,s3655).registration16943,461421 -registration(r12437,c129,s3656).registration16944,461454 -registration(r12437,c129,s3656).registration16944,461454 -registration(r12438,c201,s3656).registration16945,461487 -registration(r12438,c201,s3656).registration16945,461487 -registration(r12439,c182,s3656).registration16946,461520 -registration(r12439,c182,s3656).registration16946,461520 -registration(r12440,c128,s3656).registration16947,461553 -registration(r12440,c128,s3656).registration16947,461553 -registration(r12441,c30,s3657).registration16948,461586 -registration(r12441,c30,s3657).registration16948,461586 -registration(r12442,c204,s3657).registration16949,461618 -registration(r12442,c204,s3657).registration16949,461618 -registration(r12443,c22,s3657).registration16950,461651 -registration(r12443,c22,s3657).registration16950,461651 -registration(r12444,c244,s3658).registration16951,461683 -registration(r12444,c244,s3658).registration16951,461683 -registration(r12445,c202,s3658).registration16952,461716 -registration(r12445,c202,s3658).registration16952,461716 -registration(r12446,c91,s3658).registration16953,461749 -registration(r12446,c91,s3658).registration16953,461749 -registration(r12447,c154,s3658).registration16954,461781 -registration(r12447,c154,s3658).registration16954,461781 -registration(r12448,c126,s3659).registration16955,461814 -registration(r12448,c126,s3659).registration16955,461814 -registration(r12449,c218,s3659).registration16956,461847 -registration(r12449,c218,s3659).registration16956,461847 -registration(r12450,c69,s3659).registration16957,461880 -registration(r12450,c69,s3659).registration16957,461880 -registration(r12451,c207,s3660).registration16958,461912 -registration(r12451,c207,s3660).registration16958,461912 -registration(r12452,c214,s3660).registration16959,461945 -registration(r12452,c214,s3660).registration16959,461945 -registration(r12453,c147,s3660).registration16960,461978 -registration(r12453,c147,s3660).registration16960,461978 -registration(r12454,c46,s3660).registration16961,462011 -registration(r12454,c46,s3660).registration16961,462011 -registration(r12455,c154,s3661).registration16962,462043 -registration(r12455,c154,s3661).registration16962,462043 -registration(r12456,c58,s3661).registration16963,462076 -registration(r12456,c58,s3661).registration16963,462076 -registration(r12457,c64,s3661).registration16964,462108 -registration(r12457,c64,s3661).registration16964,462108 -registration(r12458,c4,s3661).registration16965,462140 -registration(r12458,c4,s3661).registration16965,462140 -registration(r12459,c34,s3662).registration16966,462171 -registration(r12459,c34,s3662).registration16966,462171 -registration(r12460,c134,s3662).registration16967,462203 -registration(r12460,c134,s3662).registration16967,462203 -registration(r12461,c189,s3662).registration16968,462236 -registration(r12461,c189,s3662).registration16968,462236 -registration(r12462,c211,s3663).registration16969,462269 -registration(r12462,c211,s3663).registration16969,462269 -registration(r12463,c8,s3663).registration16970,462302 -registration(r12463,c8,s3663).registration16970,462302 -registration(r12464,c201,s3663).registration16971,462333 -registration(r12464,c201,s3663).registration16971,462333 -registration(r12465,c38,s3664).registration16972,462366 -registration(r12465,c38,s3664).registration16972,462366 -registration(r12466,c44,s3664).registration16973,462398 -registration(r12466,c44,s3664).registration16973,462398 -registration(r12467,c0,s3664).registration16974,462430 -registration(r12467,c0,s3664).registration16974,462430 -registration(r12468,c218,s3665).registration16975,462461 -registration(r12468,c218,s3665).registration16975,462461 -registration(r12469,c8,s3665).registration16976,462494 -registration(r12469,c8,s3665).registration16976,462494 -registration(r12470,c6,s3665).registration16977,462525 -registration(r12470,c6,s3665).registration16977,462525 -registration(r12471,c220,s3666).registration16978,462556 -registration(r12471,c220,s3666).registration16978,462556 -registration(r12472,c104,s3666).registration16979,462589 -registration(r12472,c104,s3666).registration16979,462589 -registration(r12473,c221,s3666).registration16980,462622 -registration(r12473,c221,s3666).registration16980,462622 -registration(r12474,c209,s3666).registration16981,462655 -registration(r12474,c209,s3666).registration16981,462655 -registration(r12475,c70,s3667).registration16982,462688 -registration(r12475,c70,s3667).registration16982,462688 -registration(r12476,c18,s3667).registration16983,462720 -registration(r12476,c18,s3667).registration16983,462720 -registration(r12477,c147,s3667).registration16984,462752 -registration(r12477,c147,s3667).registration16984,462752 -registration(r12478,c182,s3667).registration16985,462785 -registration(r12478,c182,s3667).registration16985,462785 -registration(r12479,c208,s3668).registration16986,462818 -registration(r12479,c208,s3668).registration16986,462818 -registration(r12480,c196,s3668).registration16987,462851 -registration(r12480,c196,s3668).registration16987,462851 -registration(r12481,c246,s3668).registration16988,462884 -registration(r12481,c246,s3668).registration16988,462884 -registration(r12482,c150,s3668).registration16989,462917 -registration(r12482,c150,s3668).registration16989,462917 -registration(r12483,c237,s3669).registration16990,462950 -registration(r12483,c237,s3669).registration16990,462950 -registration(r12484,c95,s3669).registration16991,462983 -registration(r12484,c95,s3669).registration16991,462983 -registration(r12485,c210,s3669).registration16992,463015 -registration(r12485,c210,s3669).registration16992,463015 -registration(r12486,c138,s3669).registration16993,463048 -registration(r12486,c138,s3669).registration16993,463048 -registration(r12487,c213,s3670).registration16994,463081 -registration(r12487,c213,s3670).registration16994,463081 -registration(r12488,c52,s3670).registration16995,463114 -registration(r12488,c52,s3670).registration16995,463114 -registration(r12489,c174,s3670).registration16996,463146 -registration(r12489,c174,s3670).registration16996,463146 -registration(r12490,c130,s3671).registration16997,463179 -registration(r12490,c130,s3671).registration16997,463179 -registration(r12491,c181,s3671).registration16998,463212 -registration(r12491,c181,s3671).registration16998,463212 -registration(r12492,c24,s3671).registration16999,463245 -registration(r12492,c24,s3671).registration16999,463245 -registration(r12493,c36,s3672).registration17000,463277 -registration(r12493,c36,s3672).registration17000,463277 -registration(r12494,c190,s3672).registration17001,463309 -registration(r12494,c190,s3672).registration17001,463309 -registration(r12495,c10,s3672).registration17002,463342 -registration(r12495,c10,s3672).registration17002,463342 -registration(r12496,c157,s3673).registration17003,463374 -registration(r12496,c157,s3673).registration17003,463374 -registration(r12497,c182,s3673).registration17004,463407 -registration(r12497,c182,s3673).registration17004,463407 -registration(r12498,c218,s3673).registration17005,463440 -registration(r12498,c218,s3673).registration17005,463440 -registration(r12499,c159,s3674).registration17006,463473 -registration(r12499,c159,s3674).registration17006,463473 -registration(r12500,c72,s3674).registration17007,463506 -registration(r12500,c72,s3674).registration17007,463506 -registration(r12501,c171,s3674).registration17008,463538 -registration(r12501,c171,s3674).registration17008,463538 -registration(r12502,c151,s3675).registration17009,463571 -registration(r12502,c151,s3675).registration17009,463571 -registration(r12503,c153,s3675).registration17010,463604 -registration(r12503,c153,s3675).registration17010,463604 -registration(r12504,c25,s3675).registration17011,463637 -registration(r12504,c25,s3675).registration17011,463637 -registration(r12505,c237,s3675).registration17012,463669 -registration(r12505,c237,s3675).registration17012,463669 -registration(r12506,c129,s3676).registration17013,463702 -registration(r12506,c129,s3676).registration17013,463702 -registration(r12507,c89,s3676).registration17014,463735 -registration(r12507,c89,s3676).registration17014,463735 -registration(r12508,c156,s3676).registration17015,463767 -registration(r12508,c156,s3676).registration17015,463767 -registration(r12509,c30,s3677).registration17016,463800 -registration(r12509,c30,s3677).registration17016,463800 -registration(r12510,c19,s3677).registration17017,463832 -registration(r12510,c19,s3677).registration17017,463832 -registration(r12511,c174,s3677).registration17018,463864 -registration(r12511,c174,s3677).registration17018,463864 -registration(r12512,c166,s3677).registration17019,463897 -registration(r12512,c166,s3677).registration17019,463897 -registration(r12513,c198,s3678).registration17020,463930 -registration(r12513,c198,s3678).registration17020,463930 -registration(r12514,c175,s3678).registration17021,463963 -registration(r12514,c175,s3678).registration17021,463963 -registration(r12515,c61,s3678).registration17022,463996 -registration(r12515,c61,s3678).registration17022,463996 -registration(r12516,c244,s3679).registration17023,464028 -registration(r12516,c244,s3679).registration17023,464028 -registration(r12517,c113,s3679).registration17024,464061 -registration(r12517,c113,s3679).registration17024,464061 -registration(r12518,c160,s3679).registration17025,464094 -registration(r12518,c160,s3679).registration17025,464094 -registration(r12519,c232,s3679).registration17026,464127 -registration(r12519,c232,s3679).registration17026,464127 -registration(r12520,c38,s3680).registration17027,464160 -registration(r12520,c38,s3680).registration17027,464160 -registration(r12521,c75,s3680).registration17028,464192 -registration(r12521,c75,s3680).registration17028,464192 -registration(r12522,c49,s3680).registration17029,464224 -registration(r12522,c49,s3680).registration17029,464224 -registration(r12523,c74,s3681).registration17030,464256 -registration(r12523,c74,s3681).registration17030,464256 -registration(r12524,c106,s3681).registration17031,464288 -registration(r12524,c106,s3681).registration17031,464288 -registration(r12525,c8,s3681).registration17032,464321 -registration(r12525,c8,s3681).registration17032,464321 -registration(r12526,c97,s3682).registration17033,464352 -registration(r12526,c97,s3682).registration17033,464352 -registration(r12527,c212,s3682).registration17034,464384 -registration(r12527,c212,s3682).registration17034,464384 -registration(r12528,c72,s3682).registration17035,464417 -registration(r12528,c72,s3682).registration17035,464417 -registration(r12529,c93,s3683).registration17036,464449 -registration(r12529,c93,s3683).registration17036,464449 -registration(r12530,c165,s3683).registration17037,464481 -registration(r12530,c165,s3683).registration17037,464481 -registration(r12531,c251,s3683).registration17038,464514 -registration(r12531,c251,s3683).registration17038,464514 -registration(r12532,c119,s3683).registration17039,464547 -registration(r12532,c119,s3683).registration17039,464547 -registration(r12533,c180,s3684).registration17040,464580 -registration(r12533,c180,s3684).registration17040,464580 -registration(r12534,c183,s3684).registration17041,464613 -registration(r12534,c183,s3684).registration17041,464613 -registration(r12535,c89,s3684).registration17042,464646 -registration(r12535,c89,s3684).registration17042,464646 -registration(r12536,c170,s3684).registration17043,464678 -registration(r12536,c170,s3684).registration17043,464678 -registration(r12537,c162,s3685).registration17044,464711 -registration(r12537,c162,s3685).registration17044,464711 -registration(r12538,c38,s3685).registration17045,464744 -registration(r12538,c38,s3685).registration17045,464744 -registration(r12539,c222,s3685).registration17046,464776 -registration(r12539,c222,s3685).registration17046,464776 -registration(r12540,c41,s3686).registration17047,464809 -registration(r12540,c41,s3686).registration17047,464809 -registration(r12541,c188,s3686).registration17048,464841 -registration(r12541,c188,s3686).registration17048,464841 -registration(r12542,c11,s3686).registration17049,464874 -registration(r12542,c11,s3686).registration17049,464874 -registration(r12543,c6,s3686).registration17050,464906 -registration(r12543,c6,s3686).registration17050,464906 -registration(r12544,c21,s3687).registration17051,464937 -registration(r12544,c21,s3687).registration17051,464937 -registration(r12545,c63,s3687).registration17052,464969 -registration(r12545,c63,s3687).registration17052,464969 -registration(r12546,c96,s3687).registration17053,465001 -registration(r12546,c96,s3687).registration17053,465001 -registration(r12547,c169,s3687).registration17054,465033 -registration(r12547,c169,s3687).registration17054,465033 -registration(r12548,c110,s3688).registration17055,465066 -registration(r12548,c110,s3688).registration17055,465066 -registration(r12549,c6,s3688).registration17056,465099 -registration(r12549,c6,s3688).registration17056,465099 -registration(r12550,c5,s3688).registration17057,465130 -registration(r12550,c5,s3688).registration17057,465130 -registration(r12551,c1,s3688).registration17058,465161 -registration(r12551,c1,s3688).registration17058,465161 -registration(r12552,c141,s3688).registration17059,465192 -registration(r12552,c141,s3688).registration17059,465192 -registration(r12553,c195,s3689).registration17060,465225 -registration(r12553,c195,s3689).registration17060,465225 -registration(r12554,c189,s3689).registration17061,465258 -registration(r12554,c189,s3689).registration17061,465258 -registration(r12555,c66,s3689).registration17062,465291 -registration(r12555,c66,s3689).registration17062,465291 -registration(r12556,c191,s3689).registration17063,465323 -registration(r12556,c191,s3689).registration17063,465323 -registration(r12557,c234,s3690).registration17064,465356 -registration(r12557,c234,s3690).registration17064,465356 -registration(r12558,c97,s3690).registration17065,465389 -registration(r12558,c97,s3690).registration17065,465389 -registration(r12559,c20,s3690).registration17066,465421 -registration(r12559,c20,s3690).registration17066,465421 -registration(r12560,c98,s3691).registration17067,465453 -registration(r12560,c98,s3691).registration17067,465453 -registration(r12561,c241,s3691).registration17068,465485 -registration(r12561,c241,s3691).registration17068,465485 -registration(r12562,c169,s3691).registration17069,465518 -registration(r12562,c169,s3691).registration17069,465518 -registration(r12563,c176,s3692).registration17070,465551 -registration(r12563,c176,s3692).registration17070,465551 -registration(r12564,c226,s3692).registration17071,465584 -registration(r12564,c226,s3692).registration17071,465584 -registration(r12565,c19,s3692).registration17072,465617 -registration(r12565,c19,s3692).registration17072,465617 -registration(r12566,c138,s3693).registration17073,465649 -registration(r12566,c138,s3693).registration17073,465649 -registration(r12567,c3,s3693).registration17074,465682 -registration(r12567,c3,s3693).registration17074,465682 -registration(r12568,c233,s3693).registration17075,465713 -registration(r12568,c233,s3693).registration17075,465713 -registration(r12569,c239,s3693).registration17076,465746 -registration(r12569,c239,s3693).registration17076,465746 -registration(r12570,c12,s3694).registration17077,465779 -registration(r12570,c12,s3694).registration17077,465779 -registration(r12571,c10,s3694).registration17078,465811 -registration(r12571,c10,s3694).registration17078,465811 -registration(r12572,c249,s3694).registration17079,465843 -registration(r12572,c249,s3694).registration17079,465843 -registration(r12573,c183,s3695).registration17080,465876 -registration(r12573,c183,s3695).registration17080,465876 -registration(r12574,c219,s3695).registration17081,465909 -registration(r12574,c219,s3695).registration17081,465909 -registration(r12575,c236,s3695).registration17082,465942 -registration(r12575,c236,s3695).registration17082,465942 -registration(r12576,c214,s3696).registration17083,465975 -registration(r12576,c214,s3696).registration17083,465975 -registration(r12577,c217,s3696).registration17084,466008 -registration(r12577,c217,s3696).registration17084,466008 -registration(r12578,c222,s3696).registration17085,466041 -registration(r12578,c222,s3696).registration17085,466041 -registration(r12579,c64,s3697).registration17086,466074 -registration(r12579,c64,s3697).registration17086,466074 -registration(r12580,c145,s3697).registration17087,466106 -registration(r12580,c145,s3697).registration17087,466106 -registration(r12581,c113,s3697).registration17088,466139 -registration(r12581,c113,s3697).registration17088,466139 -registration(r12582,c34,s3698).registration17089,466172 -registration(r12582,c34,s3698).registration17089,466172 -registration(r12583,c144,s3698).registration17090,466204 -registration(r12583,c144,s3698).registration17090,466204 -registration(r12584,c163,s3698).registration17091,466237 -registration(r12584,c163,s3698).registration17091,466237 -registration(r12585,c209,s3698).registration17092,466270 -registration(r12585,c209,s3698).registration17092,466270 -registration(r12586,c20,s3698).registration17093,466303 -registration(r12586,c20,s3698).registration17093,466303 -registration(r12587,c186,s3699).registration17094,466335 -registration(r12587,c186,s3699).registration17094,466335 -registration(r12588,c38,s3699).registration17095,466368 -registration(r12588,c38,s3699).registration17095,466368 -registration(r12589,c30,s3699).registration17096,466400 -registration(r12589,c30,s3699).registration17096,466400 -registration(r12590,c42,s3699).registration17097,466432 -registration(r12590,c42,s3699).registration17097,466432 -registration(r12591,c163,s3700).registration17098,466464 -registration(r12591,c163,s3700).registration17098,466464 -registration(r12592,c203,s3700).registration17099,466497 -registration(r12592,c203,s3700).registration17099,466497 -registration(r12593,c247,s3700).registration17100,466530 -registration(r12593,c247,s3700).registration17100,466530 -registration(r12594,c227,s3701).registration17101,466563 -registration(r12594,c227,s3701).registration17101,466563 -registration(r12595,c209,s3701).registration17102,466596 -registration(r12595,c209,s3701).registration17102,466596 -registration(r12596,c109,s3701).registration17103,466629 -registration(r12596,c109,s3701).registration17103,466629 -registration(r12597,c76,s3702).registration17104,466662 -registration(r12597,c76,s3702).registration17104,466662 -registration(r12598,c89,s3702).registration17105,466694 -registration(r12598,c89,s3702).registration17105,466694 -registration(r12599,c115,s3702).registration17106,466726 -registration(r12599,c115,s3702).registration17106,466726 -registration(r12600,c228,s3703).registration17107,466759 -registration(r12600,c228,s3703).registration17107,466759 -registration(r12601,c58,s3703).registration17108,466792 -registration(r12601,c58,s3703).registration17108,466792 -registration(r12602,c121,s3703).registration17109,466824 -registration(r12602,c121,s3703).registration17109,466824 -registration(r12603,c201,s3703).registration17110,466857 -registration(r12603,c201,s3703).registration17110,466857 -registration(r12604,c24,s3703).registration17111,466890 -registration(r12604,c24,s3703).registration17111,466890 -registration(r12605,c154,s3704).registration17112,466922 -registration(r12605,c154,s3704).registration17112,466922 -registration(r12606,c73,s3704).registration17113,466955 -registration(r12606,c73,s3704).registration17113,466955 -registration(r12607,c45,s3704).registration17114,466987 -registration(r12607,c45,s3704).registration17114,466987 -registration(r12608,c75,s3705).registration17115,467019 -registration(r12608,c75,s3705).registration17115,467019 -registration(r12609,c0,s3705).registration17116,467051 -registration(r12609,c0,s3705).registration17116,467051 -registration(r12610,c163,s3705).registration17117,467082 -registration(r12610,c163,s3705).registration17117,467082 -registration(r12611,c109,s3706).registration17118,467115 -registration(r12611,c109,s3706).registration17118,467115 -registration(r12612,c107,s3706).registration17119,467148 -registration(r12612,c107,s3706).registration17119,467148 -registration(r12613,c254,s3706).registration17120,467181 -registration(r12613,c254,s3706).registration17120,467181 -registration(r12614,c79,s3706).registration17121,467214 -registration(r12614,c79,s3706).registration17121,467214 -registration(r12615,c130,s3707).registration17122,467246 -registration(r12615,c130,s3707).registration17122,467246 -registration(r12616,c10,s3707).registration17123,467279 -registration(r12616,c10,s3707).registration17123,467279 -registration(r12617,c124,s3707).registration17124,467311 -registration(r12617,c124,s3707).registration17124,467311 -registration(r12618,c239,s3708).registration17125,467344 -registration(r12618,c239,s3708).registration17125,467344 -registration(r12619,c91,s3708).registration17126,467377 -registration(r12619,c91,s3708).registration17126,467377 -registration(r12620,c77,s3708).registration17127,467409 -registration(r12620,c77,s3708).registration17127,467409 -registration(r12621,c198,s3709).registration17128,467441 -registration(r12621,c198,s3709).registration17128,467441 -registration(r12622,c218,s3709).registration17129,467474 -registration(r12622,c218,s3709).registration17129,467474 -registration(r12623,c95,s3709).registration17130,467507 -registration(r12623,c95,s3709).registration17130,467507 -registration(r12624,c251,s3710).registration17131,467539 -registration(r12624,c251,s3710).registration17131,467539 -registration(r12625,c44,s3710).registration17132,467572 -registration(r12625,c44,s3710).registration17132,467572 -registration(r12626,c32,s3710).registration17133,467604 -registration(r12626,c32,s3710).registration17133,467604 -registration(r12627,c108,s3711).registration17134,467636 -registration(r12627,c108,s3711).registration17134,467636 -registration(r12628,c80,s3711).registration17135,467669 -registration(r12628,c80,s3711).registration17135,467669 -registration(r12629,c62,s3711).registration17136,467701 -registration(r12629,c62,s3711).registration17136,467701 -registration(r12630,c172,s3712).registration17137,467733 -registration(r12630,c172,s3712).registration17137,467733 -registration(r12631,c77,s3712).registration17138,467766 -registration(r12631,c77,s3712).registration17138,467766 -registration(r12632,c243,s3712).registration17139,467798 -registration(r12632,c243,s3712).registration17139,467798 -registration(r12633,c196,s3713).registration17140,467831 -registration(r12633,c196,s3713).registration17140,467831 -registration(r12634,c66,s3713).registration17141,467864 -registration(r12634,c66,s3713).registration17141,467864 -registration(r12635,c167,s3713).registration17142,467896 -registration(r12635,c167,s3713).registration17142,467896 -registration(r12636,c12,s3713).registration17143,467929 -registration(r12636,c12,s3713).registration17143,467929 -registration(r12637,c48,s3714).registration17144,467961 -registration(r12637,c48,s3714).registration17144,467961 -registration(r12638,c109,s3714).registration17145,467993 -registration(r12638,c109,s3714).registration17145,467993 -registration(r12639,c90,s3714).registration17146,468026 -registration(r12639,c90,s3714).registration17146,468026 -registration(r12640,c2,s3714).registration17147,468058 -registration(r12640,c2,s3714).registration17147,468058 -registration(r12641,c222,s3714).registration17148,468089 -registration(r12641,c222,s3714).registration17148,468089 -registration(r12642,c98,s3715).registration17149,468122 -registration(r12642,c98,s3715).registration17149,468122 -registration(r12643,c4,s3715).registration17150,468154 -registration(r12643,c4,s3715).registration17150,468154 -registration(r12644,c209,s3715).registration17151,468185 -registration(r12644,c209,s3715).registration17151,468185 -registration(r12645,c241,s3715).registration17152,468218 -registration(r12645,c241,s3715).registration17152,468218 -registration(r12646,c174,s3716).registration17153,468251 -registration(r12646,c174,s3716).registration17153,468251 -registration(r12647,c205,s3716).registration17154,468284 -registration(r12647,c205,s3716).registration17154,468284 -registration(r12648,c92,s3716).registration17155,468317 -registration(r12648,c92,s3716).registration17155,468317 -registration(r12649,c62,s3716).registration17156,468349 -registration(r12649,c62,s3716).registration17156,468349 -registration(r12650,c244,s3717).registration17157,468381 -registration(r12650,c244,s3717).registration17157,468381 -registration(r12651,c183,s3717).registration17158,468414 -registration(r12651,c183,s3717).registration17158,468414 -registration(r12652,c139,s3717).registration17159,468447 -registration(r12652,c139,s3717).registration17159,468447 -registration(r12653,c41,s3718).registration17160,468480 -registration(r12653,c41,s3718).registration17160,468480 -registration(r12654,c173,s3718).registration17161,468512 -registration(r12654,c173,s3718).registration17161,468512 -registration(r12655,c187,s3718).registration17162,468545 -registration(r12655,c187,s3718).registration17162,468545 -registration(r12656,c204,s3719).registration17163,468578 -registration(r12656,c204,s3719).registration17163,468578 -registration(r12657,c222,s3719).registration17164,468611 -registration(r12657,c222,s3719).registration17164,468611 -registration(r12658,c30,s3719).registration17165,468644 -registration(r12658,c30,s3719).registration17165,468644 -registration(r12659,c34,s3720).registration17166,468676 -registration(r12659,c34,s3720).registration17166,468676 -registration(r12660,c60,s3720).registration17167,468708 -registration(r12660,c60,s3720).registration17167,468708 -registration(r12661,c91,s3720).registration17168,468740 -registration(r12661,c91,s3720).registration17168,468740 -registration(r12662,c160,s3720).registration17169,468772 -registration(r12662,c160,s3720).registration17169,468772 -registration(r12663,c210,s3721).registration17170,468805 -registration(r12663,c210,s3721).registration17170,468805 -registration(r12664,c252,s3721).registration17171,468838 -registration(r12664,c252,s3721).registration17171,468838 -registration(r12665,c141,s3721).registration17172,468871 -registration(r12665,c141,s3721).registration17172,468871 -registration(r12666,c91,s3722).registration17173,468904 -registration(r12666,c91,s3722).registration17173,468904 -registration(r12667,c33,s3722).registration17174,468936 -registration(r12667,c33,s3722).registration17174,468936 -registration(r12668,c171,s3722).registration17175,468968 -registration(r12668,c171,s3722).registration17175,468968 -registration(r12669,c159,s3723).registration17176,469001 -registration(r12669,c159,s3723).registration17176,469001 -registration(r12670,c31,s3723).registration17177,469034 -registration(r12670,c31,s3723).registration17177,469034 -registration(r12671,c236,s3723).registration17178,469066 -registration(r12671,c236,s3723).registration17178,469066 -registration(r12672,c22,s3724).registration17179,469099 -registration(r12672,c22,s3724).registration17179,469099 -registration(r12673,c52,s3724).registration17180,469131 -registration(r12673,c52,s3724).registration17180,469131 -registration(r12674,c85,s3724).registration17181,469163 -registration(r12674,c85,s3724).registration17181,469163 -registration(r12675,c32,s3724).registration17182,469195 -registration(r12675,c32,s3724).registration17182,469195 -registration(r12676,c199,s3725).registration17183,469227 -registration(r12676,c199,s3725).registration17183,469227 -registration(r12677,c64,s3725).registration17184,469260 -registration(r12677,c64,s3725).registration17184,469260 -registration(r12678,c89,s3725).registration17185,469292 -registration(r12678,c89,s3725).registration17185,469292 -registration(r12679,c149,s3726).registration17186,469324 -registration(r12679,c149,s3726).registration17186,469324 -registration(r12680,c89,s3726).registration17187,469357 -registration(r12680,c89,s3726).registration17187,469357 -registration(r12681,c100,s3726).registration17188,469389 -registration(r12681,c100,s3726).registration17188,469389 -registration(r12682,c54,s3727).registration17189,469422 -registration(r12682,c54,s3727).registration17189,469422 -registration(r12683,c48,s3727).registration17190,469454 -registration(r12683,c48,s3727).registration17190,469454 -registration(r12684,c70,s3727).registration17191,469486 -registration(r12684,c70,s3727).registration17191,469486 -registration(r12685,c160,s3728).registration17192,469518 -registration(r12685,c160,s3728).registration17192,469518 -registration(r12686,c27,s3728).registration17193,469551 -registration(r12686,c27,s3728).registration17193,469551 -registration(r12687,c135,s3728).registration17194,469583 -registration(r12687,c135,s3728).registration17194,469583 -registration(r12688,c122,s3728).registration17195,469616 -registration(r12688,c122,s3728).registration17195,469616 -registration(r12689,c39,s3728).registration17196,469649 -registration(r12689,c39,s3728).registration17196,469649 -registration(r12690,c103,s3729).registration17197,469681 -registration(r12690,c103,s3729).registration17197,469681 -registration(r12691,c174,s3729).registration17198,469714 -registration(r12691,c174,s3729).registration17198,469714 -registration(r12692,c192,s3729).registration17199,469747 -registration(r12692,c192,s3729).registration17199,469747 -registration(r12693,c19,s3730).registration17200,469780 -registration(r12693,c19,s3730).registration17200,469780 -registration(r12694,c103,s3730).registration17201,469812 -registration(r12694,c103,s3730).registration17201,469812 -registration(r12695,c4,s3730).registration17202,469845 -registration(r12695,c4,s3730).registration17202,469845 -registration(r12696,c70,s3730).registration17203,469876 -registration(r12696,c70,s3730).registration17203,469876 -registration(r12697,c141,s3731).registration17204,469908 -registration(r12697,c141,s3731).registration17204,469908 -registration(r12698,c45,s3731).registration17205,469941 -registration(r12698,c45,s3731).registration17205,469941 -registration(r12699,c168,s3731).registration17206,469973 -registration(r12699,c168,s3731).registration17206,469973 -registration(r12700,c134,s3731).registration17207,470006 -registration(r12700,c134,s3731).registration17207,470006 -registration(r12701,c86,s3731).registration17208,470039 -registration(r12701,c86,s3731).registration17208,470039 -registration(r12702,c61,s3732).registration17209,470071 -registration(r12702,c61,s3732).registration17209,470071 -registration(r12703,c67,s3732).registration17210,470103 -registration(r12703,c67,s3732).registration17210,470103 -registration(r12704,c136,s3732).registration17211,470135 -registration(r12704,c136,s3732).registration17211,470135 -registration(r12705,c100,s3733).registration17212,470168 -registration(r12705,c100,s3733).registration17212,470168 -registration(r12706,c35,s3733).registration17213,470201 -registration(r12706,c35,s3733).registration17213,470201 -registration(r12707,c87,s3733).registration17214,470233 -registration(r12707,c87,s3733).registration17214,470233 -registration(r12708,c211,s3733).registration17215,470265 -registration(r12708,c211,s3733).registration17215,470265 -registration(r12709,c18,s3734).registration17216,470298 -registration(r12709,c18,s3734).registration17216,470298 -registration(r12710,c83,s3734).registration17217,470330 -registration(r12710,c83,s3734).registration17217,470330 -registration(r12711,c59,s3734).registration17218,470362 -registration(r12711,c59,s3734).registration17218,470362 -registration(r12712,c185,s3734).registration17219,470394 -registration(r12712,c185,s3734).registration17219,470394 -registration(r12713,c163,s3735).registration17220,470427 -registration(r12713,c163,s3735).registration17220,470427 -registration(r12714,c38,s3735).registration17221,470460 -registration(r12714,c38,s3735).registration17221,470460 -registration(r12715,c30,s3735).registration17222,470492 -registration(r12715,c30,s3735).registration17222,470492 -registration(r12716,c76,s3736).registration17223,470524 -registration(r12716,c76,s3736).registration17223,470524 -registration(r12717,c236,s3736).registration17224,470556 -registration(r12717,c236,s3736).registration17224,470556 -registration(r12718,c230,s3736).registration17225,470589 -registration(r12718,c230,s3736).registration17225,470589 -registration(r12719,c9,s3737).registration17226,470622 -registration(r12719,c9,s3737).registration17226,470622 -registration(r12720,c0,s3737).registration17227,470653 -registration(r12720,c0,s3737).registration17227,470653 -registration(r12721,c161,s3737).registration17228,470684 -registration(r12721,c161,s3737).registration17228,470684 -registration(r12722,c226,s3738).registration17229,470717 -registration(r12722,c226,s3738).registration17229,470717 -registration(r12723,c232,s3738).registration17230,470750 -registration(r12723,c232,s3738).registration17230,470750 -registration(r12724,c191,s3738).registration17231,470783 -registration(r12724,c191,s3738).registration17231,470783 -registration(r12725,c75,s3738).registration17232,470816 -registration(r12725,c75,s3738).registration17232,470816 -registration(r12726,c118,s3739).registration17233,470848 -registration(r12726,c118,s3739).registration17233,470848 -registration(r12727,c56,s3739).registration17234,470881 -registration(r12727,c56,s3739).registration17234,470881 -registration(r12728,c16,s3739).registration17235,470913 -registration(r12728,c16,s3739).registration17235,470913 -registration(r12729,c99,s3740).registration17236,470945 -registration(r12729,c99,s3740).registration17236,470945 -registration(r12730,c132,s3740).registration17237,470977 -registration(r12730,c132,s3740).registration17237,470977 -registration(r12731,c12,s3740).registration17238,471010 -registration(r12731,c12,s3740).registration17238,471010 -registration(r12732,c175,s3741).registration17239,471042 -registration(r12732,c175,s3741).registration17239,471042 -registration(r12733,c155,s3741).registration17240,471075 -registration(r12733,c155,s3741).registration17240,471075 -registration(r12734,c90,s3741).registration17241,471108 -registration(r12734,c90,s3741).registration17241,471108 -registration(r12735,c167,s3742).registration17242,471140 -registration(r12735,c167,s3742).registration17242,471140 -registration(r12736,c66,s3742).registration17243,471173 -registration(r12736,c66,s3742).registration17243,471173 -registration(r12737,c221,s3742).registration17244,471205 -registration(r12737,c221,s3742).registration17244,471205 -registration(r12738,c214,s3742).registration17245,471238 -registration(r12738,c214,s3742).registration17245,471238 -registration(r12739,c32,s3743).registration17246,471271 -registration(r12739,c32,s3743).registration17246,471271 -registration(r12740,c119,s3743).registration17247,471303 -registration(r12740,c119,s3743).registration17247,471303 -registration(r12741,c71,s3743).registration17248,471336 -registration(r12741,c71,s3743).registration17248,471336 -registration(r12742,c47,s3744).registration17249,471368 -registration(r12742,c47,s3744).registration17249,471368 -registration(r12743,c31,s3744).registration17250,471400 -registration(r12743,c31,s3744).registration17250,471400 -registration(r12744,c122,s3744).registration17251,471432 -registration(r12744,c122,s3744).registration17251,471432 -registration(r12745,c240,s3744).registration17252,471465 -registration(r12745,c240,s3744).registration17252,471465 -registration(r12746,c181,s3745).registration17253,471498 -registration(r12746,c181,s3745).registration17253,471498 -registration(r12747,c20,s3745).registration17254,471531 -registration(r12747,c20,s3745).registration17254,471531 -registration(r12748,c58,s3745).registration17255,471563 -registration(r12748,c58,s3745).registration17255,471563 -registration(r12749,c120,s3745).registration17256,471595 -registration(r12749,c120,s3745).registration17256,471595 -registration(r12750,c12,s3746).registration17257,471628 -registration(r12750,c12,s3746).registration17257,471628 -registration(r12751,c237,s3746).registration17258,471660 -registration(r12751,c237,s3746).registration17258,471660 -registration(r12752,c250,s3746).registration17259,471693 -registration(r12752,c250,s3746).registration17259,471693 -registration(r12753,c85,s3747).registration17260,471726 -registration(r12753,c85,s3747).registration17260,471726 -registration(r12754,c18,s3747).registration17261,471758 -registration(r12754,c18,s3747).registration17261,471758 -registration(r12755,c128,s3747).registration17262,471790 -registration(r12755,c128,s3747).registration17262,471790 -registration(r12756,c92,s3748).registration17263,471823 -registration(r12756,c92,s3748).registration17263,471823 -registration(r12757,c29,s3748).registration17264,471855 -registration(r12757,c29,s3748).registration17264,471855 -registration(r12758,c44,s3748).registration17265,471887 -registration(r12758,c44,s3748).registration17265,471887 -registration(r12759,c163,s3749).registration17266,471919 -registration(r12759,c163,s3749).registration17266,471919 -registration(r12760,c137,s3749).registration17267,471952 -registration(r12760,c137,s3749).registration17267,471952 -registration(r12761,c157,s3749).registration17268,471985 -registration(r12761,c157,s3749).registration17268,471985 -registration(r12762,c189,s3750).registration17269,472018 -registration(r12762,c189,s3750).registration17269,472018 -registration(r12763,c118,s3750).registration17270,472051 -registration(r12763,c118,s3750).registration17270,472051 -registration(r12764,c53,s3750).registration17271,472084 -registration(r12764,c53,s3750).registration17271,472084 -registration(r12765,c234,s3751).registration17272,472116 -registration(r12765,c234,s3751).registration17272,472116 -registration(r12766,c213,s3751).registration17273,472149 -registration(r12766,c213,s3751).registration17273,472149 -registration(r12767,c158,s3751).registration17274,472182 -registration(r12767,c158,s3751).registration17274,472182 -registration(r12768,c93,s3752).registration17275,472215 -registration(r12768,c93,s3752).registration17275,472215 -registration(r12769,c248,s3752).registration17276,472247 -registration(r12769,c248,s3752).registration17276,472247 -registration(r12770,c59,s3752).registration17277,472280 -registration(r12770,c59,s3752).registration17277,472280 -registration(r12771,c197,s3753).registration17278,472312 -registration(r12771,c197,s3753).registration17278,472312 -registration(r12772,c171,s3753).registration17279,472345 -registration(r12772,c171,s3753).registration17279,472345 -registration(r12773,c199,s3753).registration17280,472378 -registration(r12773,c199,s3753).registration17280,472378 -registration(r12774,c27,s3754).registration17281,472411 -registration(r12774,c27,s3754).registration17281,472411 -registration(r12775,c161,s3754).registration17282,472443 -registration(r12775,c161,s3754).registration17282,472443 -registration(r12776,c199,s3754).registration17283,472476 -registration(r12776,c199,s3754).registration17283,472476 -registration(r12777,c5,s3755).registration17284,472509 -registration(r12777,c5,s3755).registration17284,472509 -registration(r12778,c235,s3755).registration17285,472540 -registration(r12778,c235,s3755).registration17285,472540 -registration(r12779,c109,s3755).registration17286,472573 -registration(r12779,c109,s3755).registration17286,472573 -registration(r12780,c38,s3756).registration17287,472606 -registration(r12780,c38,s3756).registration17287,472606 -registration(r12781,c96,s3756).registration17288,472638 -registration(r12781,c96,s3756).registration17288,472638 -registration(r12782,c95,s3756).registration17289,472670 -registration(r12782,c95,s3756).registration17289,472670 -registration(r12783,c198,s3756).registration17290,472702 -registration(r12783,c198,s3756).registration17290,472702 -registration(r12784,c71,s3757).registration17291,472735 -registration(r12784,c71,s3757).registration17291,472735 -registration(r12785,c248,s3757).registration17292,472767 -registration(r12785,c248,s3757).registration17292,472767 -registration(r12786,c101,s3757).registration17293,472800 -registration(r12786,c101,s3757).registration17293,472800 -registration(r12787,c69,s3757).registration17294,472833 -registration(r12787,c69,s3757).registration17294,472833 -registration(r12788,c42,s3758).registration17295,472865 -registration(r12788,c42,s3758).registration17295,472865 -registration(r12789,c130,s3758).registration17296,472897 -registration(r12789,c130,s3758).registration17296,472897 -registration(r12790,c25,s3758).registration17297,472930 -registration(r12790,c25,s3758).registration17297,472930 -registration(r12791,c198,s3759).registration17298,472962 -registration(r12791,c198,s3759).registration17298,472962 -registration(r12792,c164,s3759).registration17299,472995 -registration(r12792,c164,s3759).registration17299,472995 -registration(r12793,c138,s3759).registration17300,473028 -registration(r12793,c138,s3759).registration17300,473028 -registration(r12794,c44,s3760).registration17301,473061 -registration(r12794,c44,s3760).registration17301,473061 -registration(r12795,c55,s3760).registration17302,473093 -registration(r12795,c55,s3760).registration17302,473093 -registration(r12796,c9,s3760).registration17303,473125 -registration(r12796,c9,s3760).registration17303,473125 -registration(r12797,c62,s3760).registration17304,473156 -registration(r12797,c62,s3760).registration17304,473156 -registration(r12798,c125,s3761).registration17305,473188 -registration(r12798,c125,s3761).registration17305,473188 -registration(r12799,c223,s3761).registration17306,473221 -registration(r12799,c223,s3761).registration17306,473221 -registration(r12800,c221,s3761).registration17307,473254 -registration(r12800,c221,s3761).registration17307,473254 -registration(r12801,c61,s3762).registration17308,473287 -registration(r12801,c61,s3762).registration17308,473287 -registration(r12802,c1,s3762).registration17309,473319 -registration(r12802,c1,s3762).registration17309,473319 -registration(r12803,c97,s3762).registration17310,473350 -registration(r12803,c97,s3762).registration17310,473350 -registration(r12804,c73,s3762).registration17311,473382 -registration(r12804,c73,s3762).registration17311,473382 -registration(r12805,c104,s3763).registration17312,473414 -registration(r12805,c104,s3763).registration17312,473414 -registration(r12806,c123,s3763).registration17313,473447 -registration(r12806,c123,s3763).registration17313,473447 -registration(r12807,c159,s3763).registration17314,473480 -registration(r12807,c159,s3763).registration17314,473480 -registration(r12808,c167,s3763).registration17315,473513 -registration(r12808,c167,s3763).registration17315,473513 -registration(r12809,c68,s3763).registration17316,473546 -registration(r12809,c68,s3763).registration17316,473546 -registration(r12810,c133,s3764).registration17317,473578 -registration(r12810,c133,s3764).registration17317,473578 -registration(r12811,c103,s3764).registration17318,473611 -registration(r12811,c103,s3764).registration17318,473611 -registration(r12812,c11,s3764).registration17319,473644 -registration(r12812,c11,s3764).registration17319,473644 -registration(r12813,c244,s3764).registration17320,473676 -registration(r12813,c244,s3764).registration17320,473676 -registration(r12814,c235,s3765).registration17321,473709 -registration(r12814,c235,s3765).registration17321,473709 -registration(r12815,c32,s3765).registration17322,473742 -registration(r12815,c32,s3765).registration17322,473742 -registration(r12816,c178,s3765).registration17323,473774 -registration(r12816,c178,s3765).registration17323,473774 -registration(r12817,c239,s3765).registration17324,473807 -registration(r12817,c239,s3765).registration17324,473807 -registration(r12818,c234,s3766).registration17325,473840 -registration(r12818,c234,s3766).registration17325,473840 -registration(r12819,c174,s3766).registration17326,473873 -registration(r12819,c174,s3766).registration17326,473873 -registration(r12820,c205,s3766).registration17327,473906 -registration(r12820,c205,s3766).registration17327,473906 -registration(r12821,c13,s3767).registration17328,473939 -registration(r12821,c13,s3767).registration17328,473939 -registration(r12822,c4,s3767).registration17329,473971 -registration(r12822,c4,s3767).registration17329,473971 -registration(r12823,c86,s3767).registration17330,474002 -registration(r12823,c86,s3767).registration17330,474002 -registration(r12824,c159,s3767).registration17331,474034 -registration(r12824,c159,s3767).registration17331,474034 -registration(r12825,c198,s3768).registration17332,474067 -registration(r12825,c198,s3768).registration17332,474067 -registration(r12826,c111,s3768).registration17333,474100 -registration(r12826,c111,s3768).registration17333,474100 -registration(r12827,c25,s3768).registration17334,474133 -registration(r12827,c25,s3768).registration17334,474133 -registration(r12828,c192,s3769).registration17335,474165 -registration(r12828,c192,s3769).registration17335,474165 -registration(r12829,c133,s3769).registration17336,474198 -registration(r12829,c133,s3769).registration17336,474198 -registration(r12830,c224,s3769).registration17337,474231 -registration(r12830,c224,s3769).registration17337,474231 -registration(r12831,c236,s3770).registration17338,474264 -registration(r12831,c236,s3770).registration17338,474264 -registration(r12832,c111,s3770).registration17339,474297 -registration(r12832,c111,s3770).registration17339,474297 -registration(r12833,c225,s3770).registration17340,474330 -registration(r12833,c225,s3770).registration17340,474330 -registration(r12834,c3,s3771).registration17341,474363 -registration(r12834,c3,s3771).registration17341,474363 -registration(r12835,c27,s3771).registration17342,474394 -registration(r12835,c27,s3771).registration17342,474394 -registration(r12836,c82,s3771).registration17343,474426 -registration(r12836,c82,s3771).registration17343,474426 -registration(r12837,c60,s3771).registration17344,474458 -registration(r12837,c60,s3771).registration17344,474458 -registration(r12838,c228,s3772).registration17345,474490 -registration(r12838,c228,s3772).registration17345,474490 -registration(r12839,c215,s3772).registration17346,474523 -registration(r12839,c215,s3772).registration17346,474523 -registration(r12840,c2,s3772).registration17347,474556 -registration(r12840,c2,s3772).registration17347,474556 -registration(r12841,c7,s3773).registration17348,474587 -registration(r12841,c7,s3773).registration17348,474587 -registration(r12842,c142,s3773).registration17349,474618 -registration(r12842,c142,s3773).registration17349,474618 -registration(r12843,c83,s3773).registration17350,474651 -registration(r12843,c83,s3773).registration17350,474651 -registration(r12844,c45,s3773).registration17351,474683 -registration(r12844,c45,s3773).registration17351,474683 -registration(r12845,c128,s3773).registration17352,474715 -registration(r12845,c128,s3773).registration17352,474715 -registration(r12846,c70,s3774).registration17353,474748 -registration(r12846,c70,s3774).registration17353,474748 -registration(r12847,c126,s3774).registration17354,474780 -registration(r12847,c126,s3774).registration17354,474780 -registration(r12848,c26,s3774).registration17355,474813 -registration(r12848,c26,s3774).registration17355,474813 -registration(r12849,c4,s3774).registration17356,474845 -registration(r12849,c4,s3774).registration17356,474845 -registration(r12850,c75,s3775).registration17357,474876 -registration(r12850,c75,s3775).registration17357,474876 -registration(r12851,c242,s3775).registration17358,474908 -registration(r12851,c242,s3775).registration17358,474908 -registration(r12852,c230,s3775).registration17359,474941 -registration(r12852,c230,s3775).registration17359,474941 -registration(r12853,c79,s3776).registration17360,474974 -registration(r12853,c79,s3776).registration17360,474974 -registration(r12854,c22,s3776).registration17361,475006 -registration(r12854,c22,s3776).registration17361,475006 -registration(r12855,c217,s3776).registration17362,475038 -registration(r12855,c217,s3776).registration17362,475038 -registration(r12856,c13,s3777).registration17363,475071 -registration(r12856,c13,s3777).registration17363,475071 -registration(r12857,c116,s3777).registration17364,475103 -registration(r12857,c116,s3777).registration17364,475103 -registration(r12858,c163,s3777).registration17365,475136 -registration(r12858,c163,s3777).registration17365,475136 -registration(r12859,c165,s3778).registration17366,475169 -registration(r12859,c165,s3778).registration17366,475169 -registration(r12860,c43,s3778).registration17367,475202 -registration(r12860,c43,s3778).registration17367,475202 -registration(r12861,c50,s3778).registration17368,475234 -registration(r12861,c50,s3778).registration17368,475234 -registration(r12862,c133,s3779).registration17369,475266 -registration(r12862,c133,s3779).registration17369,475266 -registration(r12863,c188,s3779).registration17370,475299 -registration(r12863,c188,s3779).registration17370,475299 -registration(r12864,c230,s3779).registration17371,475332 -registration(r12864,c230,s3779).registration17371,475332 -registration(r12865,c45,s3780).registration17372,475365 -registration(r12865,c45,s3780).registration17372,475365 -registration(r12866,c28,s3780).registration17373,475397 -registration(r12866,c28,s3780).registration17373,475397 -registration(r12867,c87,s3780).registration17374,475429 -registration(r12867,c87,s3780).registration17374,475429 -registration(r12868,c81,s3780).registration17375,475461 -registration(r12868,c81,s3780).registration17375,475461 -registration(r12869,c127,s3781).registration17376,475493 -registration(r12869,c127,s3781).registration17376,475493 -registration(r12870,c19,s3781).registration17377,475526 -registration(r12870,c19,s3781).registration17377,475526 -registration(r12871,c56,s3781).registration17378,475558 -registration(r12871,c56,s3781).registration17378,475558 -registration(r12872,c134,s3782).registration17379,475590 -registration(r12872,c134,s3782).registration17379,475590 -registration(r12873,c81,s3782).registration17380,475623 -registration(r12873,c81,s3782).registration17380,475623 -registration(r12874,c193,s3782).registration17381,475655 -registration(r12874,c193,s3782).registration17381,475655 -registration(r12875,c206,s3783).registration17382,475688 -registration(r12875,c206,s3783).registration17382,475688 -registration(r12876,c100,s3783).registration17383,475721 -registration(r12876,c100,s3783).registration17383,475721 -registration(r12877,c91,s3783).registration17384,475754 -registration(r12877,c91,s3783).registration17384,475754 -registration(r12878,c1,s3784).registration17385,475786 -registration(r12878,c1,s3784).registration17385,475786 -registration(r12879,c236,s3784).registration17386,475817 -registration(r12879,c236,s3784).registration17386,475817 -registration(r12880,c227,s3784).registration17387,475850 -registration(r12880,c227,s3784).registration17387,475850 -registration(r12881,c104,s3785).registration17388,475883 -registration(r12881,c104,s3785).registration17388,475883 -registration(r12882,c106,s3785).registration17389,475916 -registration(r12882,c106,s3785).registration17389,475916 -registration(r12883,c141,s3785).registration17390,475949 -registration(r12883,c141,s3785).registration17390,475949 -registration(r12884,c166,s3785).registration17391,475982 -registration(r12884,c166,s3785).registration17391,475982 -registration(r12885,c35,s3786).registration17392,476015 -registration(r12885,c35,s3786).registration17392,476015 -registration(r12886,c251,s3786).registration17393,476047 -registration(r12886,c251,s3786).registration17393,476047 -registration(r12887,c237,s3786).registration17394,476080 -registration(r12887,c237,s3786).registration17394,476080 -registration(r12888,c109,s3787).registration17395,476113 -registration(r12888,c109,s3787).registration17395,476113 -registration(r12889,c87,s3787).registration17396,476146 -registration(r12889,c87,s3787).registration17396,476146 -registration(r12890,c132,s3787).registration17397,476178 -registration(r12890,c132,s3787).registration17397,476178 -registration(r12891,c10,s3788).registration17398,476211 -registration(r12891,c10,s3788).registration17398,476211 -registration(r12892,c251,s3788).registration17399,476243 -registration(r12892,c251,s3788).registration17399,476243 -registration(r12893,c0,s3788).registration17400,476276 -registration(r12893,c0,s3788).registration17400,476276 -registration(r12894,c207,s3789).registration17401,476307 -registration(r12894,c207,s3789).registration17401,476307 -registration(r12895,c95,s3789).registration17402,476340 -registration(r12895,c95,s3789).registration17402,476340 -registration(r12896,c16,s3789).registration17403,476372 -registration(r12896,c16,s3789).registration17403,476372 -registration(r12897,c19,s3789).registration17404,476404 -registration(r12897,c19,s3789).registration17404,476404 -registration(r12898,c125,s3790).registration17405,476436 -registration(r12898,c125,s3790).registration17405,476436 -registration(r12899,c245,s3790).registration17406,476469 -registration(r12899,c245,s3790).registration17406,476469 -registration(r12900,c191,s3790).registration17407,476502 -registration(r12900,c191,s3790).registration17407,476502 -registration(r12901,c93,s3790).registration17408,476535 -registration(r12901,c93,s3790).registration17408,476535 -registration(r12902,c175,s3790).registration17409,476567 -registration(r12902,c175,s3790).registration17409,476567 -registration(r12903,c102,s3791).registration17410,476600 -registration(r12903,c102,s3791).registration17410,476600 -registration(r12904,c208,s3791).registration17411,476633 -registration(r12904,c208,s3791).registration17411,476633 -registration(r12905,c106,s3791).registration17412,476666 -registration(r12905,c106,s3791).registration17412,476666 -registration(r12906,c88,s3792).registration17413,476699 -registration(r12906,c88,s3792).registration17413,476699 -registration(r12907,c206,s3792).registration17414,476731 -registration(r12907,c206,s3792).registration17414,476731 -registration(r12908,c23,s3792).registration17415,476764 -registration(r12908,c23,s3792).registration17415,476764 -registration(r12909,c155,s3792).registration17416,476796 -registration(r12909,c155,s3792).registration17416,476796 -registration(r12910,c110,s3793).registration17417,476829 -registration(r12910,c110,s3793).registration17417,476829 -registration(r12911,c101,s3793).registration17418,476862 -registration(r12911,c101,s3793).registration17418,476862 -registration(r12912,c166,s3793).registration17419,476895 -registration(r12912,c166,s3793).registration17419,476895 -registration(r12913,c160,s3794).registration17420,476928 -registration(r12913,c160,s3794).registration17420,476928 -registration(r12914,c30,s3794).registration17421,476961 -registration(r12914,c30,s3794).registration17421,476961 -registration(r12915,c55,s3794).registration17422,476993 -registration(r12915,c55,s3794).registration17422,476993 -registration(r12916,c48,s3794).registration17423,477025 -registration(r12916,c48,s3794).registration17423,477025 -registration(r12917,c18,s3795).registration17424,477057 -registration(r12917,c18,s3795).registration17424,477057 -registration(r12918,c66,s3795).registration17425,477089 -registration(r12918,c66,s3795).registration17425,477089 -registration(r12919,c69,s3795).registration17426,477121 -registration(r12919,c69,s3795).registration17426,477121 -registration(r12920,c2,s3795).registration17427,477153 -registration(r12920,c2,s3795).registration17427,477153 -registration(r12921,c102,s3796).registration17428,477184 -registration(r12921,c102,s3796).registration17428,477184 -registration(r12922,c44,s3796).registration17429,477217 -registration(r12922,c44,s3796).registration17429,477217 -registration(r12923,c23,s3796).registration17430,477249 -registration(r12923,c23,s3796).registration17430,477249 -registration(r12924,c130,s3797).registration17431,477281 -registration(r12924,c130,s3797).registration17431,477281 -registration(r12925,c86,s3797).registration17432,477314 -registration(r12925,c86,s3797).registration17432,477314 -registration(r12926,c201,s3797).registration17433,477346 -registration(r12926,c201,s3797).registration17433,477346 -registration(r12927,c224,s3797).registration17434,477379 -registration(r12927,c224,s3797).registration17434,477379 -registration(r12928,c160,s3798).registration17435,477412 -registration(r12928,c160,s3798).registration17435,477412 -registration(r12929,c75,s3798).registration17436,477445 -registration(r12929,c75,s3798).registration17436,477445 -registration(r12930,c123,s3798).registration17437,477477 -registration(r12930,c123,s3798).registration17437,477477 -registration(r12931,c179,s3798).registration17438,477510 -registration(r12931,c179,s3798).registration17438,477510 -registration(r12932,c120,s3798).registration17439,477543 -registration(r12932,c120,s3798).registration17439,477543 -registration(r12933,c25,s3799).registration17440,477576 -registration(r12933,c25,s3799).registration17440,477576 -registration(r12934,c193,s3799).registration17441,477608 -registration(r12934,c193,s3799).registration17441,477608 -registration(r12935,c151,s3799).registration17442,477641 -registration(r12935,c151,s3799).registration17442,477641 -registration(r12936,c199,s3800).registration17443,477674 -registration(r12936,c199,s3800).registration17443,477674 -registration(r12937,c23,s3800).registration17444,477707 -registration(r12937,c23,s3800).registration17444,477707 -registration(r12938,c213,s3800).registration17445,477739 -registration(r12938,c213,s3800).registration17445,477739 -registration(r12939,c91,s3800).registration17446,477772 -registration(r12939,c91,s3800).registration17446,477772 -registration(r12940,c11,s3801).registration17447,477804 -registration(r12940,c11,s3801).registration17447,477804 -registration(r12941,c195,s3801).registration17448,477836 -registration(r12941,c195,s3801).registration17448,477836 -registration(r12942,c68,s3801).registration17449,477869 -registration(r12942,c68,s3801).registration17449,477869 -registration(r12943,c17,s3802).registration17450,477901 -registration(r12943,c17,s3802).registration17450,477901 -registration(r12944,c54,s3802).registration17451,477933 -registration(r12944,c54,s3802).registration17451,477933 -registration(r12945,c93,s3802).registration17452,477965 -registration(r12945,c93,s3802).registration17452,477965 -registration(r12946,c54,s3803).registration17453,477997 -registration(r12946,c54,s3803).registration17453,477997 -registration(r12947,c142,s3803).registration17454,478029 -registration(r12947,c142,s3803).registration17454,478029 -registration(r12948,c223,s3803).registration17455,478062 -registration(r12948,c223,s3803).registration17455,478062 -registration(r12949,c90,s3804).registration17456,478095 -registration(r12949,c90,s3804).registration17456,478095 -registration(r12950,c230,s3804).registration17457,478127 -registration(r12950,c230,s3804).registration17457,478127 -registration(r12951,c140,s3804).registration17458,478160 -registration(r12951,c140,s3804).registration17458,478160 -registration(r12952,c166,s3805).registration17459,478193 -registration(r12952,c166,s3805).registration17459,478193 -registration(r12953,c61,s3805).registration17460,478226 -registration(r12953,c61,s3805).registration17460,478226 -registration(r12954,c247,s3805).registration17461,478258 -registration(r12954,c247,s3805).registration17461,478258 -registration(r12955,c190,s3806).registration17462,478291 -registration(r12955,c190,s3806).registration17462,478291 -registration(r12956,c13,s3806).registration17463,478324 -registration(r12956,c13,s3806).registration17463,478324 -registration(r12957,c212,s3806).registration17464,478356 -registration(r12957,c212,s3806).registration17464,478356 -registration(r12958,c177,s3807).registration17465,478389 -registration(r12958,c177,s3807).registration17465,478389 -registration(r12959,c211,s3807).registration17466,478422 -registration(r12959,c211,s3807).registration17466,478422 -registration(r12960,c43,s3807).registration17467,478455 -registration(r12960,c43,s3807).registration17467,478455 -registration(r12961,c6,s3807).registration17468,478487 -registration(r12961,c6,s3807).registration17468,478487 -registration(r12962,c6,s3808).registration17469,478518 -registration(r12962,c6,s3808).registration17469,478518 -registration(r12963,c66,s3808).registration17470,478549 -registration(r12963,c66,s3808).registration17470,478549 -registration(r12964,c100,s3808).registration17471,478581 -registration(r12964,c100,s3808).registration17471,478581 -registration(r12965,c153,s3809).registration17472,478614 -registration(r12965,c153,s3809).registration17472,478614 -registration(r12966,c252,s3809).registration17473,478647 -registration(r12966,c252,s3809).registration17473,478647 -registration(r12967,c30,s3809).registration17474,478680 -registration(r12967,c30,s3809).registration17474,478680 -registration(r12968,c121,s3810).registration17475,478712 -registration(r12968,c121,s3810).registration17475,478712 -registration(r12969,c87,s3810).registration17476,478745 -registration(r12969,c87,s3810).registration17476,478745 -registration(r12970,c100,s3810).registration17477,478777 -registration(r12970,c100,s3810).registration17477,478777 -registration(r12971,c10,s3811).registration17478,478810 -registration(r12971,c10,s3811).registration17478,478810 -registration(r12972,c51,s3811).registration17479,478842 -registration(r12972,c51,s3811).registration17479,478842 -registration(r12973,c174,s3811).registration17480,478874 -registration(r12973,c174,s3811).registration17480,478874 -registration(r12974,c52,s3811).registration17481,478907 -registration(r12974,c52,s3811).registration17481,478907 -registration(r12975,c15,s3812).registration17482,478939 -registration(r12975,c15,s3812).registration17482,478939 -registration(r12976,c7,s3812).registration17483,478971 -registration(r12976,c7,s3812).registration17483,478971 -registration(r12977,c54,s3812).registration17484,479002 -registration(r12977,c54,s3812).registration17484,479002 -registration(r12978,c8,s3813).registration17485,479034 -registration(r12978,c8,s3813).registration17485,479034 -registration(r12979,c164,s3813).registration17486,479065 -registration(r12979,c164,s3813).registration17486,479065 -registration(r12980,c174,s3813).registration17487,479098 -registration(r12980,c174,s3813).registration17487,479098 -registration(r12981,c170,s3813).registration17488,479131 -registration(r12981,c170,s3813).registration17488,479131 -registration(r12982,c85,s3814).registration17489,479164 -registration(r12982,c85,s3814).registration17489,479164 -registration(r12983,c13,s3814).registration17490,479196 -registration(r12983,c13,s3814).registration17490,479196 -registration(r12984,c36,s3814).registration17491,479228 -registration(r12984,c36,s3814).registration17491,479228 -registration(r12985,c32,s3815).registration17492,479260 -registration(r12985,c32,s3815).registration17492,479260 -registration(r12986,c180,s3815).registration17493,479292 -registration(r12986,c180,s3815).registration17493,479292 -registration(r12987,c24,s3815).registration17494,479325 -registration(r12987,c24,s3815).registration17494,479325 -registration(r12988,c112,s3815).registration17495,479357 -registration(r12988,c112,s3815).registration17495,479357 -registration(r12989,c91,s3816).registration17496,479390 -registration(r12989,c91,s3816).registration17496,479390 -registration(r12990,c34,s3816).registration17497,479422 -registration(r12990,c34,s3816).registration17497,479422 -registration(r12991,c39,s3816).registration17498,479454 -registration(r12991,c39,s3816).registration17498,479454 -registration(r12992,c213,s3817).registration17499,479486 -registration(r12992,c213,s3817).registration17499,479486 -registration(r12993,c103,s3817).registration17500,479519 -registration(r12993,c103,s3817).registration17500,479519 -registration(r12994,c136,s3817).registration17501,479552 -registration(r12994,c136,s3817).registration17501,479552 -registration(r12995,c144,s3818).registration17502,479585 -registration(r12995,c144,s3818).registration17502,479585 -registration(r12996,c118,s3818).registration17503,479618 -registration(r12996,c118,s3818).registration17503,479618 -registration(r12997,c238,s3818).registration17504,479651 -registration(r12997,c238,s3818).registration17504,479651 -registration(r12998,c146,s3819).registration17505,479684 -registration(r12998,c146,s3819).registration17505,479684 -registration(r12999,c247,s3819).registration17506,479717 -registration(r12999,c247,s3819).registration17506,479717 -registration(r13000,c147,s3819).registration17507,479750 -registration(r13000,c147,s3819).registration17507,479750 -registration(r13001,c233,s3820).registration17508,479783 -registration(r13001,c233,s3820).registration17508,479783 -registration(r13002,c74,s3820).registration17509,479816 -registration(r13002,c74,s3820).registration17509,479816 -registration(r13003,c207,s3820).registration17510,479848 -registration(r13003,c207,s3820).registration17510,479848 -registration(r13004,c240,s3821).registration17511,479881 -registration(r13004,c240,s3821).registration17511,479881 -registration(r13005,c50,s3821).registration17512,479914 -registration(r13005,c50,s3821).registration17512,479914 -registration(r13006,c11,s3821).registration17513,479946 -registration(r13006,c11,s3821).registration17513,479946 -registration(r13007,c123,s3822).registration17514,479978 -registration(r13007,c123,s3822).registration17514,479978 -registration(r13008,c67,s3822).registration17515,480011 -registration(r13008,c67,s3822).registration17515,480011 -registration(r13009,c132,s3822).registration17516,480043 -registration(r13009,c132,s3822).registration17516,480043 -registration(r13010,c217,s3823).registration17517,480076 -registration(r13010,c217,s3823).registration17517,480076 -registration(r13011,c119,s3823).registration17518,480109 -registration(r13011,c119,s3823).registration17518,480109 -registration(r13012,c16,s3823).registration17519,480142 -registration(r13012,c16,s3823).registration17519,480142 -registration(r13013,c135,s3824).registration17520,480174 -registration(r13013,c135,s3824).registration17520,480174 -registration(r13014,c242,s3824).registration17521,480207 -registration(r13014,c242,s3824).registration17521,480207 -registration(r13015,c48,s3824).registration17522,480240 -registration(r13015,c48,s3824).registration17522,480240 -registration(r13016,c176,s3825).registration17523,480272 -registration(r13016,c176,s3825).registration17523,480272 -registration(r13017,c8,s3825).registration17524,480305 -registration(r13017,c8,s3825).registration17524,480305 -registration(r13018,c51,s3825).registration17525,480336 -registration(r13018,c51,s3825).registration17525,480336 -registration(r13019,c223,s3826).registration17526,480368 -registration(r13019,c223,s3826).registration17526,480368 -registration(r13020,c44,s3826).registration17527,480401 -registration(r13020,c44,s3826).registration17527,480401 -registration(r13021,c145,s3826).registration17528,480433 -registration(r13021,c145,s3826).registration17528,480433 -registration(r13022,c132,s3827).registration17529,480466 -registration(r13022,c132,s3827).registration17529,480466 -registration(r13023,c159,s3827).registration17530,480499 -registration(r13023,c159,s3827).registration17530,480499 -registration(r13024,c222,s3827).registration17531,480532 -registration(r13024,c222,s3827).registration17531,480532 -registration(r13025,c62,s3828).registration17532,480565 -registration(r13025,c62,s3828).registration17532,480565 -registration(r13026,c12,s3828).registration17533,480597 -registration(r13026,c12,s3828).registration17533,480597 -registration(r13027,c202,s3828).registration17534,480629 -registration(r13027,c202,s3828).registration17534,480629 -registration(r13028,c115,s3829).registration17535,480662 -registration(r13028,c115,s3829).registration17535,480662 -registration(r13029,c155,s3829).registration17536,480695 -registration(r13029,c155,s3829).registration17536,480695 -registration(r13030,c38,s3829).registration17537,480728 -registration(r13030,c38,s3829).registration17537,480728 -registration(r13031,c225,s3830).registration17538,480760 -registration(r13031,c225,s3830).registration17538,480760 -registration(r13032,c12,s3830).registration17539,480793 -registration(r13032,c12,s3830).registration17539,480793 -registration(r13033,c239,s3830).registration17540,480825 -registration(r13033,c239,s3830).registration17540,480825 -registration(r13034,c129,s3830).registration17541,480858 -registration(r13034,c129,s3830).registration17541,480858 -registration(r13035,c194,s3830).registration17542,480891 -registration(r13035,c194,s3830).registration17542,480891 -registration(r13036,c139,s3831).registration17543,480924 -registration(r13036,c139,s3831).registration17543,480924 -registration(r13037,c93,s3831).registration17544,480957 -registration(r13037,c93,s3831).registration17544,480957 -registration(r13038,c7,s3831).registration17545,480989 -registration(r13038,c7,s3831).registration17545,480989 -registration(r13039,c52,s3832).registration17546,481020 -registration(r13039,c52,s3832).registration17546,481020 -registration(r13040,c100,s3832).registration17547,481052 -registration(r13040,c100,s3832).registration17547,481052 -registration(r13041,c235,s3832).registration17548,481085 -registration(r13041,c235,s3832).registration17548,481085 -registration(r13042,c138,s3833).registration17549,481118 -registration(r13042,c138,s3833).registration17549,481118 -registration(r13043,c190,s3833).registration17550,481151 -registration(r13043,c190,s3833).registration17550,481151 -registration(r13044,c119,s3833).registration17551,481184 -registration(r13044,c119,s3833).registration17551,481184 -registration(r13045,c252,s3833).registration17552,481217 -registration(r13045,c252,s3833).registration17552,481217 -registration(r13046,c219,s3834).registration17553,481250 -registration(r13046,c219,s3834).registration17553,481250 -registration(r13047,c188,s3834).registration17554,481283 -registration(r13047,c188,s3834).registration17554,481283 -registration(r13048,c51,s3834).registration17555,481316 -registration(r13048,c51,s3834).registration17555,481316 -registration(r13049,c91,s3835).registration17556,481348 -registration(r13049,c91,s3835).registration17556,481348 -registration(r13050,c212,s3835).registration17557,481380 -registration(r13050,c212,s3835).registration17557,481380 -registration(r13051,c84,s3835).registration17558,481413 -registration(r13051,c84,s3835).registration17558,481413 -registration(r13052,c68,s3836).registration17559,481445 -registration(r13052,c68,s3836).registration17559,481445 -registration(r13053,c80,s3836).registration17560,481477 -registration(r13053,c80,s3836).registration17560,481477 -registration(r13054,c99,s3836).registration17561,481509 -registration(r13054,c99,s3836).registration17561,481509 -registration(r13055,c238,s3836).registration17562,481541 -registration(r13055,c238,s3836).registration17562,481541 -registration(r13056,c204,s3837).registration17563,481574 -registration(r13056,c204,s3837).registration17563,481574 -registration(r13057,c26,s3837).registration17564,481607 -registration(r13057,c26,s3837).registration17564,481607 -registration(r13058,c191,s3837).registration17565,481639 -registration(r13058,c191,s3837).registration17565,481639 -registration(r13059,c78,s3837).registration17566,481672 -registration(r13059,c78,s3837).registration17566,481672 -registration(r13060,c245,s3837).registration17567,481704 -registration(r13060,c245,s3837).registration17567,481704 -registration(r13061,c46,s3838).registration17568,481737 -registration(r13061,c46,s3838).registration17568,481737 -registration(r13062,c11,s3838).registration17569,481769 -registration(r13062,c11,s3838).registration17569,481769 -registration(r13063,c128,s3838).registration17570,481801 -registration(r13063,c128,s3838).registration17570,481801 -registration(r13064,c144,s3839).registration17571,481834 -registration(r13064,c144,s3839).registration17571,481834 -registration(r13065,c232,s3839).registration17572,481867 -registration(r13065,c232,s3839).registration17572,481867 -registration(r13066,c9,s3839).registration17573,481900 -registration(r13066,c9,s3839).registration17573,481900 -registration(r13067,c61,s3840).registration17574,481931 -registration(r13067,c61,s3840).registration17574,481931 -registration(r13068,c188,s3840).registration17575,481963 -registration(r13068,c188,s3840).registration17575,481963 -registration(r13069,c253,s3840).registration17576,481996 -registration(r13069,c253,s3840).registration17576,481996 -registration(r13070,c82,s3841).registration17577,482029 -registration(r13070,c82,s3841).registration17577,482029 -registration(r13071,c213,s3841).registration17578,482061 -registration(r13071,c213,s3841).registration17578,482061 -registration(r13072,c112,s3841).registration17579,482094 -registration(r13072,c112,s3841).registration17579,482094 -registration(r13073,c210,s3841).registration17580,482127 -registration(r13073,c210,s3841).registration17580,482127 -registration(r13074,c6,s3842).registration17581,482160 -registration(r13074,c6,s3842).registration17581,482160 -registration(r13075,c56,s3842).registration17582,482191 -registration(r13075,c56,s3842).registration17582,482191 -registration(r13076,c193,s3842).registration17583,482223 -registration(r13076,c193,s3842).registration17583,482223 -registration(r13077,c129,s3843).registration17584,482256 -registration(r13077,c129,s3843).registration17584,482256 -registration(r13078,c221,s3843).registration17585,482289 -registration(r13078,c221,s3843).registration17585,482289 -registration(r13079,c160,s3843).registration17586,482322 -registration(r13079,c160,s3843).registration17586,482322 -registration(r13080,c207,s3844).registration17587,482355 -registration(r13080,c207,s3844).registration17587,482355 -registration(r13081,c175,s3844).registration17588,482388 -registration(r13081,c175,s3844).registration17588,482388 -registration(r13082,c81,s3844).registration17589,482421 -registration(r13082,c81,s3844).registration17589,482421 -registration(r13083,c226,s3845).registration17590,482453 -registration(r13083,c226,s3845).registration17590,482453 -registration(r13084,c163,s3845).registration17591,482486 -registration(r13084,c163,s3845).registration17591,482486 -registration(r13085,c61,s3845).registration17592,482519 -registration(r13085,c61,s3845).registration17592,482519 -registration(r13086,c123,s3846).registration17593,482551 -registration(r13086,c123,s3846).registration17593,482551 -registration(r13087,c11,s3846).registration17594,482584 -registration(r13087,c11,s3846).registration17594,482584 -registration(r13088,c72,s3846).registration17595,482616 -registration(r13088,c72,s3846).registration17595,482616 -registration(r13089,c157,s3846).registration17596,482648 -registration(r13089,c157,s3846).registration17596,482648 -registration(r13090,c232,s3847).registration17597,482681 -registration(r13090,c232,s3847).registration17597,482681 -registration(r13091,c12,s3847).registration17598,482714 -registration(r13091,c12,s3847).registration17598,482714 -registration(r13092,c51,s3847).registration17599,482746 -registration(r13092,c51,s3847).registration17599,482746 -registration(r13093,c223,s3847).registration17600,482778 -registration(r13093,c223,s3847).registration17600,482778 -registration(r13094,c69,s3848).registration17601,482811 -registration(r13094,c69,s3848).registration17601,482811 -registration(r13095,c161,s3848).registration17602,482843 -registration(r13095,c161,s3848).registration17602,482843 -registration(r13096,c12,s3848).registration17603,482876 -registration(r13096,c12,s3848).registration17603,482876 -registration(r13097,c234,s3848).registration17604,482908 -registration(r13097,c234,s3848).registration17604,482908 -registration(r13098,c57,s3849).registration17605,482941 -registration(r13098,c57,s3849).registration17605,482941 -registration(r13099,c199,s3849).registration17606,482973 -registration(r13099,c199,s3849).registration17606,482973 -registration(r13100,c188,s3849).registration17607,483006 -registration(r13100,c188,s3849).registration17607,483006 -registration(r13101,c119,s3849).registration17608,483039 -registration(r13101,c119,s3849).registration17608,483039 -registration(r13102,c196,s3849).registration17609,483072 -registration(r13102,c196,s3849).registration17609,483072 -registration(r13103,c172,s3850).registration17610,483105 -registration(r13103,c172,s3850).registration17610,483105 -registration(r13104,c241,s3850).registration17611,483138 -registration(r13104,c241,s3850).registration17611,483138 -registration(r13105,c104,s3850).registration17612,483171 -registration(r13105,c104,s3850).registration17612,483171 -registration(r13106,c179,s3851).registration17613,483204 -registration(r13106,c179,s3851).registration17613,483204 -registration(r13107,c100,s3851).registration17614,483237 -registration(r13107,c100,s3851).registration17614,483237 -registration(r13108,c76,s3851).registration17615,483270 -registration(r13108,c76,s3851).registration17615,483270 -registration(r13109,c232,s3852).registration17616,483302 -registration(r13109,c232,s3852).registration17616,483302 -registration(r13110,c150,s3852).registration17617,483335 -registration(r13110,c150,s3852).registration17617,483335 -registration(r13111,c97,s3852).registration17618,483368 -registration(r13111,c97,s3852).registration17618,483368 -registration(r13112,c111,s3853).registration17619,483400 -registration(r13112,c111,s3853).registration17619,483400 -registration(r13113,c213,s3853).registration17620,483433 -registration(r13113,c213,s3853).registration17620,483433 -registration(r13114,c3,s3853).registration17621,483466 -registration(r13114,c3,s3853).registration17621,483466 -registration(r13115,c16,s3854).registration17622,483497 -registration(r13115,c16,s3854).registration17622,483497 -registration(r13116,c77,s3854).registration17623,483529 -registration(r13116,c77,s3854).registration17623,483529 -registration(r13117,c154,s3854).registration17624,483561 -registration(r13117,c154,s3854).registration17624,483561 -registration(r13118,c97,s3855).registration17625,483594 -registration(r13118,c97,s3855).registration17625,483594 -registration(r13119,c183,s3855).registration17626,483626 -registration(r13119,c183,s3855).registration17626,483626 -registration(r13120,c143,s3855).registration17627,483659 -registration(r13120,c143,s3855).registration17627,483659 -registration(r13121,c84,s3856).registration17628,483692 -registration(r13121,c84,s3856).registration17628,483692 -registration(r13122,c133,s3856).registration17629,483724 -registration(r13122,c133,s3856).registration17629,483724 -registration(r13123,c184,s3856).registration17630,483757 -registration(r13123,c184,s3856).registration17630,483757 -registration(r13124,c249,s3857).registration17631,483790 -registration(r13124,c249,s3857).registration17631,483790 -registration(r13125,c113,s3857).registration17632,483823 -registration(r13125,c113,s3857).registration17632,483823 -registration(r13126,c211,s3857).registration17633,483856 -registration(r13126,c211,s3857).registration17633,483856 -registration(r13127,c77,s3858).registration17634,483889 -registration(r13127,c77,s3858).registration17634,483889 -registration(r13128,c46,s3858).registration17635,483921 -registration(r13128,c46,s3858).registration17635,483921 -registration(r13129,c5,s3858).registration17636,483953 -registration(r13129,c5,s3858).registration17636,483953 -registration(r13130,c207,s3858).registration17637,483984 -registration(r13130,c207,s3858).registration17637,483984 -registration(r13131,c30,s3859).registration17638,484017 -registration(r13131,c30,s3859).registration17638,484017 -registration(r13132,c249,s3859).registration17639,484049 -registration(r13132,c249,s3859).registration17639,484049 -registration(r13133,c209,s3859).registration17640,484082 -registration(r13133,c209,s3859).registration17640,484082 -registration(r13134,c227,s3860).registration17641,484115 -registration(r13134,c227,s3860).registration17641,484115 -registration(r13135,c33,s3860).registration17642,484148 -registration(r13135,c33,s3860).registration17642,484148 -registration(r13136,c10,s3860).registration17643,484180 -registration(r13136,c10,s3860).registration17643,484180 -registration(r13137,c107,s3861).registration17644,484212 -registration(r13137,c107,s3861).registration17644,484212 -registration(r13138,c149,s3861).registration17645,484245 -registration(r13138,c149,s3861).registration17645,484245 -registration(r13139,c54,s3861).registration17646,484278 -registration(r13139,c54,s3861).registration17646,484278 -registration(r13140,c139,s3862).registration17647,484310 -registration(r13140,c139,s3862).registration17647,484310 -registration(r13141,c201,s3862).registration17648,484343 -registration(r13141,c201,s3862).registration17648,484343 -registration(r13142,c19,s3862).registration17649,484376 -registration(r13142,c19,s3862).registration17649,484376 -registration(r13143,c12,s3863).registration17650,484408 -registration(r13143,c12,s3863).registration17650,484408 -registration(r13144,c186,s3863).registration17651,484440 -registration(r13144,c186,s3863).registration17651,484440 -registration(r13145,c13,s3863).registration17652,484473 -registration(r13145,c13,s3863).registration17652,484473 -registration(r13146,c91,s3863).registration17653,484505 -registration(r13146,c91,s3863).registration17653,484505 -registration(r13147,c129,s3864).registration17654,484537 -registration(r13147,c129,s3864).registration17654,484537 -registration(r13148,c45,s3864).registration17655,484570 -registration(r13148,c45,s3864).registration17655,484570 -registration(r13149,c9,s3864).registration17656,484602 -registration(r13149,c9,s3864).registration17656,484602 -registration(r13150,c40,s3865).registration17657,484633 -registration(r13150,c40,s3865).registration17657,484633 -registration(r13151,c159,s3865).registration17658,484665 -registration(r13151,c159,s3865).registration17658,484665 -registration(r13152,c207,s3865).registration17659,484698 -registration(r13152,c207,s3865).registration17659,484698 -registration(r13153,c178,s3865).registration17660,484731 -registration(r13153,c178,s3865).registration17660,484731 -registration(r13154,c30,s3866).registration17661,484764 -registration(r13154,c30,s3866).registration17661,484764 -registration(r13155,c25,s3866).registration17662,484796 -registration(r13155,c25,s3866).registration17662,484796 -registration(r13156,c145,s3866).registration17663,484828 -registration(r13156,c145,s3866).registration17663,484828 -registration(r13157,c37,s3867).registration17664,484861 -registration(r13157,c37,s3867).registration17664,484861 -registration(r13158,c252,s3867).registration17665,484893 -registration(r13158,c252,s3867).registration17665,484893 -registration(r13159,c200,s3867).registration17666,484926 -registration(r13159,c200,s3867).registration17666,484926 -registration(r13160,c145,s3868).registration17667,484959 -registration(r13160,c145,s3868).registration17667,484959 -registration(r13161,c149,s3868).registration17668,484992 -registration(r13161,c149,s3868).registration17668,484992 -registration(r13162,c208,s3868).registration17669,485025 -registration(r13162,c208,s3868).registration17669,485025 -registration(r13163,c139,s3869).registration17670,485058 -registration(r13163,c139,s3869).registration17670,485058 -registration(r13164,c214,s3869).registration17671,485091 -registration(r13164,c214,s3869).registration17671,485091 -registration(r13165,c244,s3869).registration17672,485124 -registration(r13165,c244,s3869).registration17672,485124 -registration(r13166,c116,s3869).registration17673,485157 -registration(r13166,c116,s3869).registration17673,485157 -registration(r13167,c224,s3870).registration17674,485190 -registration(r13167,c224,s3870).registration17674,485190 -registration(r13168,c57,s3870).registration17675,485223 -registration(r13168,c57,s3870).registration17675,485223 -registration(r13169,c27,s3870).registration17676,485255 -registration(r13169,c27,s3870).registration17676,485255 -registration(r13170,c186,s3871).registration17677,485287 -registration(r13170,c186,s3871).registration17677,485287 -registration(r13171,c172,s3871).registration17678,485320 -registration(r13171,c172,s3871).registration17678,485320 -registration(r13172,c94,s3871).registration17679,485353 -registration(r13172,c94,s3871).registration17679,485353 -registration(r13173,c125,s3872).registration17680,485385 -registration(r13173,c125,s3872).registration17680,485385 -registration(r13174,c227,s3872).registration17681,485418 -registration(r13174,c227,s3872).registration17681,485418 -registration(r13175,c239,s3872).registration17682,485451 -registration(r13175,c239,s3872).registration17682,485451 -registration(r13176,c20,s3873).registration17683,485484 -registration(r13176,c20,s3873).registration17683,485484 -registration(r13177,c64,s3873).registration17684,485516 -registration(r13177,c64,s3873).registration17684,485516 -registration(r13178,c49,s3873).registration17685,485548 -registration(r13178,c49,s3873).registration17685,485548 -registration(r13179,c194,s3874).registration17686,485580 -registration(r13179,c194,s3874).registration17686,485580 -registration(r13180,c43,s3874).registration17687,485613 -registration(r13180,c43,s3874).registration17687,485613 -registration(r13181,c151,s3874).registration17688,485645 -registration(r13181,c151,s3874).registration17688,485645 -registration(r13182,c35,s3875).registration17689,485678 -registration(r13182,c35,s3875).registration17689,485678 -registration(r13183,c99,s3875).registration17690,485710 -registration(r13183,c99,s3875).registration17690,485710 -registration(r13184,c194,s3875).registration17691,485742 -registration(r13184,c194,s3875).registration17691,485742 -registration(r13185,c55,s3876).registration17692,485775 -registration(r13185,c55,s3876).registration17692,485775 -registration(r13186,c183,s3876).registration17693,485807 -registration(r13186,c183,s3876).registration17693,485807 -registration(r13187,c205,s3876).registration17694,485840 -registration(r13187,c205,s3876).registration17694,485840 -registration(r13188,c47,s3877).registration17695,485873 -registration(r13188,c47,s3877).registration17695,485873 -registration(r13189,c13,s3877).registration17696,485905 -registration(r13189,c13,s3877).registration17696,485905 -registration(r13190,c67,s3877).registration17697,485937 -registration(r13190,c67,s3877).registration17697,485937 -registration(r13191,c160,s3878).registration17698,485969 -registration(r13191,c160,s3878).registration17698,485969 -registration(r13192,c12,s3878).registration17699,486002 -registration(r13192,c12,s3878).registration17699,486002 -registration(r13193,c187,s3878).registration17700,486034 -registration(r13193,c187,s3878).registration17700,486034 -registration(r13194,c35,s3879).registration17701,486067 -registration(r13194,c35,s3879).registration17701,486067 -registration(r13195,c165,s3879).registration17702,486099 -registration(r13195,c165,s3879).registration17702,486099 -registration(r13196,c143,s3879).registration17703,486132 -registration(r13196,c143,s3879).registration17703,486132 -registration(r13197,c87,s3880).registration17704,486165 -registration(r13197,c87,s3880).registration17704,486165 -registration(r13198,c22,s3880).registration17705,486197 -registration(r13198,c22,s3880).registration17705,486197 -registration(r13199,c104,s3880).registration17706,486229 -registration(r13199,c104,s3880).registration17706,486229 -registration(r13200,c52,s3881).registration17707,486262 -registration(r13200,c52,s3881).registration17707,486262 -registration(r13201,c18,s3881).registration17708,486294 -registration(r13201,c18,s3881).registration17708,486294 -registration(r13202,c5,s3881).registration17709,486326 -registration(r13202,c5,s3881).registration17709,486326 -registration(r13203,c153,s3882).registration17710,486357 -registration(r13203,c153,s3882).registration17710,486357 -registration(r13204,c46,s3882).registration17711,486390 -registration(r13204,c46,s3882).registration17711,486390 -registration(r13205,c161,s3882).registration17712,486422 -registration(r13205,c161,s3882).registration17712,486422 -registration(r13206,c54,s3883).registration17713,486455 -registration(r13206,c54,s3883).registration17713,486455 -registration(r13207,c150,s3883).registration17714,486487 -registration(r13207,c150,s3883).registration17714,486487 -registration(r13208,c143,s3883).registration17715,486520 -registration(r13208,c143,s3883).registration17715,486520 -registration(r13209,c102,s3883).registration17716,486553 -registration(r13209,c102,s3883).registration17716,486553 -registration(r13210,c25,s3884).registration17717,486586 -registration(r13210,c25,s3884).registration17717,486586 -registration(r13211,c51,s3884).registration17718,486618 -registration(r13211,c51,s3884).registration17718,486618 -registration(r13212,c34,s3884).registration17719,486650 -registration(r13212,c34,s3884).registration17719,486650 -registration(r13213,c68,s3885).registration17720,486682 -registration(r13213,c68,s3885).registration17720,486682 -registration(r13214,c79,s3885).registration17721,486714 -registration(r13214,c79,s3885).registration17721,486714 -registration(r13215,c18,s3885).registration17722,486746 -registration(r13215,c18,s3885).registration17722,486746 -registration(r13216,c106,s3886).registration17723,486778 -registration(r13216,c106,s3886).registration17723,486778 -registration(r13217,c176,s3886).registration17724,486811 -registration(r13217,c176,s3886).registration17724,486811 -registration(r13218,c240,s3886).registration17725,486844 -registration(r13218,c240,s3886).registration17725,486844 -registration(r13219,c37,s3887).registration17726,486877 -registration(r13219,c37,s3887).registration17726,486877 -registration(r13220,c108,s3887).registration17727,486909 -registration(r13220,c108,s3887).registration17727,486909 -registration(r13221,c89,s3887).registration17728,486942 -registration(r13221,c89,s3887).registration17728,486942 -registration(r13222,c85,s3887).registration17729,486974 -registration(r13222,c85,s3887).registration17729,486974 -registration(r13223,c73,s3888).registration17730,487006 -registration(r13223,c73,s3888).registration17730,487006 -registration(r13224,c246,s3888).registration17731,487038 -registration(r13224,c246,s3888).registration17731,487038 -registration(r13225,c88,s3888).registration17732,487071 -registration(r13225,c88,s3888).registration17732,487071 -registration(r13226,c237,s3888).registration17733,487103 -registration(r13226,c237,s3888).registration17733,487103 -registration(r13227,c90,s3889).registration17734,487136 -registration(r13227,c90,s3889).registration17734,487136 -registration(r13228,c165,s3889).registration17735,487168 -registration(r13228,c165,s3889).registration17735,487168 -registration(r13229,c20,s3889).registration17736,487201 -registration(r13229,c20,s3889).registration17736,487201 -registration(r13230,c70,s3890).registration17737,487233 -registration(r13230,c70,s3890).registration17737,487233 -registration(r13231,c226,s3890).registration17738,487265 -registration(r13231,c226,s3890).registration17738,487265 -registration(r13232,c104,s3890).registration17739,487298 -registration(r13232,c104,s3890).registration17739,487298 -registration(r13233,c182,s3890).registration17740,487331 -registration(r13233,c182,s3890).registration17740,487331 -registration(r13234,c219,s3891).registration17741,487364 -registration(r13234,c219,s3891).registration17741,487364 -registration(r13235,c191,s3891).registration17742,487397 -registration(r13235,c191,s3891).registration17742,487397 -registration(r13236,c63,s3891).registration17743,487430 -registration(r13236,c63,s3891).registration17743,487430 -registration(r13237,c49,s3892).registration17744,487462 -registration(r13237,c49,s3892).registration17744,487462 -registration(r13238,c159,s3892).registration17745,487494 -registration(r13238,c159,s3892).registration17745,487494 -registration(r13239,c196,s3892).registration17746,487527 -registration(r13239,c196,s3892).registration17746,487527 -registration(r13240,c28,s3892).registration17747,487560 -registration(r13240,c28,s3892).registration17747,487560 -registration(r13241,c113,s3893).registration17748,487592 -registration(r13241,c113,s3893).registration17748,487592 -registration(r13242,c97,s3893).registration17749,487625 -registration(r13242,c97,s3893).registration17749,487625 -registration(r13243,c15,s3893).registration17750,487657 -registration(r13243,c15,s3893).registration17750,487657 -registration(r13244,c103,s3894).registration17751,487689 -registration(r13244,c103,s3894).registration17751,487689 -registration(r13245,c134,s3894).registration17752,487722 -registration(r13245,c134,s3894).registration17752,487722 -registration(r13246,c133,s3894).registration17753,487755 -registration(r13246,c133,s3894).registration17753,487755 -registration(r13247,c43,s3895).registration17754,487788 -registration(r13247,c43,s3895).registration17754,487788 -registration(r13248,c107,s3895).registration17755,487820 -registration(r13248,c107,s3895).registration17755,487820 -registration(r13249,c162,s3895).registration17756,487853 -registration(r13249,c162,s3895).registration17756,487853 -registration(r13250,c131,s3896).registration17757,487886 -registration(r13250,c131,s3896).registration17757,487886 -registration(r13251,c81,s3896).registration17758,487919 -registration(r13251,c81,s3896).registration17758,487919 -registration(r13252,c122,s3896).registration17759,487951 -registration(r13252,c122,s3896).registration17759,487951 -registration(r13253,c86,s3896).registration17760,487984 -registration(r13253,c86,s3896).registration17760,487984 -registration(r13254,c107,s3897).registration17761,488016 -registration(r13254,c107,s3897).registration17761,488016 -registration(r13255,c72,s3897).registration17762,488049 -registration(r13255,c72,s3897).registration17762,488049 -registration(r13256,c156,s3897).registration17763,488081 -registration(r13256,c156,s3897).registration17763,488081 -registration(r13257,c59,s3898).registration17764,488114 -registration(r13257,c59,s3898).registration17764,488114 -registration(r13258,c159,s3898).registration17765,488146 -registration(r13258,c159,s3898).registration17765,488146 -registration(r13259,c208,s3898).registration17766,488179 -registration(r13259,c208,s3898).registration17766,488179 -registration(r13260,c65,s3899).registration17767,488212 -registration(r13260,c65,s3899).registration17767,488212 -registration(r13261,c169,s3899).registration17768,488244 -registration(r13261,c169,s3899).registration17768,488244 -registration(r13262,c204,s3899).registration17769,488277 -registration(r13262,c204,s3899).registration17769,488277 -registration(r13263,c51,s3899).registration17770,488310 -registration(r13263,c51,s3899).registration17770,488310 -registration(r13264,c131,s3900).registration17771,488342 -registration(r13264,c131,s3900).registration17771,488342 -registration(r13265,c135,s3900).registration17772,488375 -registration(r13265,c135,s3900).registration17772,488375 -registration(r13266,c139,s3900).registration17773,488408 -registration(r13266,c139,s3900).registration17773,488408 -registration(r13267,c245,s3901).registration17774,488441 -registration(r13267,c245,s3901).registration17774,488441 -registration(r13268,c5,s3901).registration17775,488474 -registration(r13268,c5,s3901).registration17775,488474 -registration(r13269,c155,s3901).registration17776,488505 -registration(r13269,c155,s3901).registration17776,488505 -registration(r13270,c237,s3902).registration17777,488538 -registration(r13270,c237,s3902).registration17777,488538 -registration(r13271,c33,s3902).registration17778,488571 -registration(r13271,c33,s3902).registration17778,488571 -registration(r13272,c53,s3902).registration17779,488603 -registration(r13272,c53,s3902).registration17779,488603 -registration(r13273,c159,s3903).registration17780,488635 -registration(r13273,c159,s3903).registration17780,488635 -registration(r13274,c62,s3903).registration17781,488668 -registration(r13274,c62,s3903).registration17781,488668 -registration(r13275,c20,s3903).registration17782,488700 -registration(r13275,c20,s3903).registration17782,488700 -registration(r13276,c79,s3904).registration17783,488732 -registration(r13276,c79,s3904).registration17783,488732 -registration(r13277,c26,s3904).registration17784,488764 -registration(r13277,c26,s3904).registration17784,488764 -registration(r13278,c137,s3904).registration17785,488796 -registration(r13278,c137,s3904).registration17785,488796 -registration(r13279,c202,s3905).registration17786,488829 -registration(r13279,c202,s3905).registration17786,488829 -registration(r13280,c63,s3905).registration17787,488862 -registration(r13280,c63,s3905).registration17787,488862 -registration(r13281,c163,s3905).registration17788,488894 -registration(r13281,c163,s3905).registration17788,488894 -registration(r13282,c215,s3906).registration17789,488927 -registration(r13282,c215,s3906).registration17789,488927 -registration(r13283,c74,s3906).registration17790,488960 -registration(r13283,c74,s3906).registration17790,488960 -registration(r13284,c199,s3906).registration17791,488992 -registration(r13284,c199,s3906).registration17791,488992 -registration(r13285,c121,s3907).registration17792,489025 -registration(r13285,c121,s3907).registration17792,489025 -registration(r13286,c86,s3907).registration17793,489058 -registration(r13286,c86,s3907).registration17793,489058 -registration(r13287,c180,s3907).registration17794,489090 -registration(r13287,c180,s3907).registration17794,489090 -registration(r13288,c253,s3907).registration17795,489123 -registration(r13288,c253,s3907).registration17795,489123 -registration(r13289,c2,s3908).registration17796,489156 -registration(r13289,c2,s3908).registration17796,489156 -registration(r13290,c32,s3908).registration17797,489187 -registration(r13290,c32,s3908).registration17797,489187 -registration(r13291,c114,s3908).registration17798,489219 -registration(r13291,c114,s3908).registration17798,489219 -registration(r13292,c17,s3909).registration17799,489252 -registration(r13292,c17,s3909).registration17799,489252 -registration(r13293,c55,s3909).registration17800,489284 -registration(r13293,c55,s3909).registration17800,489284 -registration(r13294,c172,s3909).registration17801,489316 -registration(r13294,c172,s3909).registration17801,489316 -registration(r13295,c252,s3910).registration17802,489349 -registration(r13295,c252,s3910).registration17802,489349 -registration(r13296,c167,s3910).registration17803,489382 -registration(r13296,c167,s3910).registration17803,489382 -registration(r13297,c120,s3910).registration17804,489415 -registration(r13297,c120,s3910).registration17804,489415 -registration(r13298,c67,s3911).registration17805,489448 -registration(r13298,c67,s3911).registration17805,489448 -registration(r13299,c211,s3911).registration17806,489480 -registration(r13299,c211,s3911).registration17806,489480 -registration(r13300,c34,s3911).registration17807,489513 -registration(r13300,c34,s3911).registration17807,489513 -registration(r13301,c20,s3911).registration17808,489545 -registration(r13301,c20,s3911).registration17808,489545 -registration(r13302,c86,s3912).registration17809,489577 -registration(r13302,c86,s3912).registration17809,489577 -registration(r13303,c220,s3912).registration17810,489609 -registration(r13303,c220,s3912).registration17810,489609 -registration(r13304,c91,s3912).registration17811,489642 -registration(r13304,c91,s3912).registration17811,489642 -registration(r13305,c85,s3912).registration17812,489674 -registration(r13305,c85,s3912).registration17812,489674 -registration(r13306,c184,s3913).registration17813,489706 -registration(r13306,c184,s3913).registration17813,489706 -registration(r13307,c106,s3913).registration17814,489739 -registration(r13307,c106,s3913).registration17814,489739 -registration(r13308,c175,s3913).registration17815,489772 -registration(r13308,c175,s3913).registration17815,489772 -registration(r13309,c207,s3914).registration17816,489805 -registration(r13309,c207,s3914).registration17816,489805 -registration(r13310,c103,s3914).registration17817,489838 -registration(r13310,c103,s3914).registration17817,489838 -registration(r13311,c101,s3914).registration17818,489871 -registration(r13311,c101,s3914).registration17818,489871 -registration(r13312,c157,s3915).registration17819,489904 -registration(r13312,c157,s3915).registration17819,489904 -registration(r13313,c19,s3915).registration17820,489937 -registration(r13313,c19,s3915).registration17820,489937 -registration(r13314,c6,s3915).registration17821,489969 -registration(r13314,c6,s3915).registration17821,489969 -registration(r13315,c175,s3915).registration17822,490000 -registration(r13315,c175,s3915).registration17822,490000 -registration(r13316,c6,s3916).registration17823,490033 -registration(r13316,c6,s3916).registration17823,490033 -registration(r13317,c163,s3916).registration17824,490064 -registration(r13317,c163,s3916).registration17824,490064 -registration(r13318,c46,s3916).registration17825,490097 -registration(r13318,c46,s3916).registration17825,490097 -registration(r13319,c80,s3917).registration17826,490129 -registration(r13319,c80,s3917).registration17826,490129 -registration(r13320,c85,s3917).registration17827,490161 -registration(r13320,c85,s3917).registration17827,490161 -registration(r13321,c140,s3917).registration17828,490193 -registration(r13321,c140,s3917).registration17828,490193 -registration(r13322,c103,s3918).registration17829,490226 -registration(r13322,c103,s3918).registration17829,490226 -registration(r13323,c166,s3918).registration17830,490259 -registration(r13323,c166,s3918).registration17830,490259 -registration(r13324,c176,s3918).registration17831,490292 -registration(r13324,c176,s3918).registration17831,490292 -registration(r13325,c105,s3919).registration17832,490325 -registration(r13325,c105,s3919).registration17832,490325 -registration(r13326,c40,s3919).registration17833,490358 -registration(r13326,c40,s3919).registration17833,490358 -registration(r13327,c8,s3919).registration17834,490390 -registration(r13327,c8,s3919).registration17834,490390 -registration(r13328,c216,s3920).registration17835,490421 -registration(r13328,c216,s3920).registration17835,490421 -registration(r13329,c198,s3920).registration17836,490454 -registration(r13329,c198,s3920).registration17836,490454 -registration(r13330,c252,s3920).registration17837,490487 -registration(r13330,c252,s3920).registration17837,490487 -registration(r13331,c153,s3921).registration17838,490520 -registration(r13331,c153,s3921).registration17838,490520 -registration(r13332,c84,s3921).registration17839,490553 -registration(r13332,c84,s3921).registration17839,490553 -registration(r13333,c71,s3921).registration17840,490585 -registration(r13333,c71,s3921).registration17840,490585 -registration(r13334,c101,s3921).registration17841,490617 -registration(r13334,c101,s3921).registration17841,490617 -registration(r13335,c44,s3922).registration17842,490650 -registration(r13335,c44,s3922).registration17842,490650 -registration(r13336,c7,s3922).registration17843,490682 -registration(r13336,c7,s3922).registration17843,490682 -registration(r13337,c37,s3922).registration17844,490713 -registration(r13337,c37,s3922).registration17844,490713 -registration(r13338,c117,s3923).registration17845,490745 -registration(r13338,c117,s3923).registration17845,490745 -registration(r13339,c204,s3923).registration17846,490778 -registration(r13339,c204,s3923).registration17846,490778 -registration(r13340,c10,s3923).registration17847,490811 -registration(r13340,c10,s3923).registration17847,490811 -registration(r13341,c113,s3924).registration17848,490843 -registration(r13341,c113,s3924).registration17848,490843 -registration(r13342,c101,s3924).registration17849,490876 -registration(r13342,c101,s3924).registration17849,490876 -registration(r13343,c39,s3924).registration17850,490909 -registration(r13343,c39,s3924).registration17850,490909 -registration(r13344,c190,s3924).registration17851,490941 -registration(r13344,c190,s3924).registration17851,490941 -registration(r13345,c88,s3925).registration17852,490974 -registration(r13345,c88,s3925).registration17852,490974 -registration(r13346,c198,s3925).registration17853,491006 -registration(r13346,c198,s3925).registration17853,491006 -registration(r13347,c240,s3925).registration17854,491039 -registration(r13347,c240,s3925).registration17854,491039 -registration(r13348,c184,s3926).registration17855,491072 -registration(r13348,c184,s3926).registration17855,491072 -registration(r13349,c236,s3926).registration17856,491105 -registration(r13349,c236,s3926).registration17856,491105 -registration(r13350,c222,s3926).registration17857,491138 -registration(r13350,c222,s3926).registration17857,491138 -registration(r13351,c52,s3927).registration17858,491171 -registration(r13351,c52,s3927).registration17858,491171 -registration(r13352,c66,s3927).registration17859,491203 -registration(r13352,c66,s3927).registration17859,491203 -registration(r13353,c173,s3927).registration17860,491235 -registration(r13353,c173,s3927).registration17860,491235 -registration(r13354,c217,s3928).registration17861,491268 -registration(r13354,c217,s3928).registration17861,491268 -registration(r13355,c159,s3928).registration17862,491301 -registration(r13355,c159,s3928).registration17862,491301 -registration(r13356,c92,s3928).registration17863,491334 -registration(r13356,c92,s3928).registration17863,491334 -registration(r13357,c210,s3928).registration17864,491366 -registration(r13357,c210,s3928).registration17864,491366 -registration(r13358,c28,s3929).registration17865,491399 -registration(r13358,c28,s3929).registration17865,491399 -registration(r13359,c42,s3929).registration17866,491431 -registration(r13359,c42,s3929).registration17866,491431 -registration(r13360,c147,s3929).registration17867,491463 -registration(r13360,c147,s3929).registration17867,491463 -registration(r13361,c248,s3930).registration17868,491496 -registration(r13361,c248,s3930).registration17868,491496 -registration(r13362,c186,s3930).registration17869,491529 -registration(r13362,c186,s3930).registration17869,491529 -registration(r13363,c202,s3930).registration17870,491562 -registration(r13363,c202,s3930).registration17870,491562 -registration(r13364,c36,s3931).registration17871,491595 -registration(r13364,c36,s3931).registration17871,491595 -registration(r13365,c125,s3931).registration17872,491627 -registration(r13365,c125,s3931).registration17872,491627 -registration(r13366,c61,s3931).registration17873,491660 -registration(r13366,c61,s3931).registration17873,491660 -registration(r13367,c28,s3931).registration17874,491692 -registration(r13367,c28,s3931).registration17874,491692 -registration(r13368,c255,s3932).registration17875,491724 -registration(r13368,c255,s3932).registration17875,491724 -registration(r13369,c251,s3932).registration17876,491757 -registration(r13369,c251,s3932).registration17876,491757 -registration(r13370,c236,s3932).registration17877,491790 -registration(r13370,c236,s3932).registration17877,491790 -registration(r13371,c47,s3932).registration17878,491823 -registration(r13371,c47,s3932).registration17878,491823 -registration(r13372,c49,s3933).registration17879,491855 -registration(r13372,c49,s3933).registration17879,491855 -registration(r13373,c200,s3933).registration17880,491887 -registration(r13373,c200,s3933).registration17880,491887 -registration(r13374,c104,s3933).registration17881,491920 -registration(r13374,c104,s3933).registration17881,491920 -registration(r13375,c106,s3933).registration17882,491953 -registration(r13375,c106,s3933).registration17882,491953 -registration(r13376,c91,s3934).registration17883,491986 -registration(r13376,c91,s3934).registration17883,491986 -registration(r13377,c137,s3934).registration17884,492018 -registration(r13377,c137,s3934).registration17884,492018 -registration(r13378,c152,s3934).registration17885,492051 -registration(r13378,c152,s3934).registration17885,492051 -registration(r13379,c42,s3935).registration17886,492084 -registration(r13379,c42,s3935).registration17886,492084 -registration(r13380,c11,s3935).registration17887,492116 -registration(r13380,c11,s3935).registration17887,492116 -registration(r13381,c78,s3935).registration17888,492148 -registration(r13381,c78,s3935).registration17888,492148 -registration(r13382,c199,s3935).registration17889,492180 -registration(r13382,c199,s3935).registration17889,492180 -registration(r13383,c217,s3935).registration17890,492213 -registration(r13383,c217,s3935).registration17890,492213 -registration(r13384,c19,s3936).registration17891,492246 -registration(r13384,c19,s3936).registration17891,492246 -registration(r13385,c61,s3936).registration17892,492278 -registration(r13385,c61,s3936).registration17892,492278 -registration(r13386,c87,s3936).registration17893,492310 -registration(r13386,c87,s3936).registration17893,492310 -registration(r13387,c114,s3937).registration17894,492342 -registration(r13387,c114,s3937).registration17894,492342 -registration(r13388,c69,s3937).registration17895,492375 -registration(r13388,c69,s3937).registration17895,492375 -registration(r13389,c80,s3937).registration17896,492407 -registration(r13389,c80,s3937).registration17896,492407 -registration(r13390,c213,s3938).registration17897,492439 -registration(r13390,c213,s3938).registration17897,492439 -registration(r13391,c158,s3938).registration17898,492472 -registration(r13391,c158,s3938).registration17898,492472 -registration(r13392,c99,s3938).registration17899,492505 -registration(r13392,c99,s3938).registration17899,492505 -registration(r13393,c103,s3938).registration17900,492537 -registration(r13393,c103,s3938).registration17900,492537 -registration(r13394,c18,s3939).registration17901,492570 -registration(r13394,c18,s3939).registration17901,492570 -registration(r13395,c209,s3939).registration17902,492602 -registration(r13395,c209,s3939).registration17902,492602 -registration(r13396,c145,s3939).registration17903,492635 -registration(r13396,c145,s3939).registration17903,492635 -registration(r13397,c40,s3940).registration17904,492668 -registration(r13397,c40,s3940).registration17904,492668 -registration(r13398,c230,s3940).registration17905,492700 -registration(r13398,c230,s3940).registration17905,492700 -registration(r13399,c12,s3940).registration17906,492733 -registration(r13399,c12,s3940).registration17906,492733 -registration(r13400,c89,s3941).registration17907,492765 -registration(r13400,c89,s3941).registration17907,492765 -registration(r13401,c117,s3941).registration17908,492797 -registration(r13401,c117,s3941).registration17908,492797 -registration(r13402,c185,s3941).registration17909,492830 -registration(r13402,c185,s3941).registration17909,492830 -registration(r13403,c204,s3942).registration17910,492863 -registration(r13403,c204,s3942).registration17910,492863 -registration(r13404,c174,s3942).registration17911,492896 -registration(r13404,c174,s3942).registration17911,492896 -registration(r13405,c163,s3942).registration17912,492929 -registration(r13405,c163,s3942).registration17912,492929 -registration(r13406,c0,s3942).registration17913,492962 -registration(r13406,c0,s3942).registration17913,492962 -registration(r13407,c99,s3942).registration17914,492993 -registration(r13407,c99,s3942).registration17914,492993 -registration(r13408,c80,s3943).registration17915,493025 -registration(r13408,c80,s3943).registration17915,493025 -registration(r13409,c135,s3943).registration17916,493057 -registration(r13409,c135,s3943).registration17916,493057 -registration(r13410,c152,s3943).registration17917,493090 -registration(r13410,c152,s3943).registration17917,493090 -registration(r13411,c37,s3943).registration17918,493123 -registration(r13411,c37,s3943).registration17918,493123 -registration(r13412,c45,s3944).registration17919,493155 -registration(r13412,c45,s3944).registration17919,493155 -registration(r13413,c142,s3944).registration17920,493187 -registration(r13413,c142,s3944).registration17920,493187 -registration(r13414,c200,s3944).registration17921,493220 -registration(r13414,c200,s3944).registration17921,493220 -registration(r13415,c89,s3945).registration17922,493253 -registration(r13415,c89,s3945).registration17922,493253 -registration(r13416,c175,s3945).registration17923,493285 -registration(r13416,c175,s3945).registration17923,493285 -registration(r13417,c186,s3945).registration17924,493318 -registration(r13417,c186,s3945).registration17924,493318 -registration(r13418,c197,s3946).registration17925,493351 -registration(r13418,c197,s3946).registration17925,493351 -registration(r13419,c213,s3946).registration17926,493384 -registration(r13419,c213,s3946).registration17926,493384 -registration(r13420,c133,s3946).registration17927,493417 -registration(r13420,c133,s3946).registration17927,493417 -registration(r13421,c73,s3946).registration17928,493450 -registration(r13421,c73,s3946).registration17928,493450 -registration(r13422,c146,s3947).registration17929,493482 -registration(r13422,c146,s3947).registration17929,493482 -registration(r13423,c153,s3947).registration17930,493515 -registration(r13423,c153,s3947).registration17930,493515 -registration(r13424,c12,s3947).registration17931,493548 -registration(r13424,c12,s3947).registration17931,493548 -registration(r13425,c42,s3948).registration17932,493580 -registration(r13425,c42,s3948).registration17932,493580 -registration(r13426,c66,s3948).registration17933,493612 -registration(r13426,c66,s3948).registration17933,493612 -registration(r13427,c86,s3948).registration17934,493644 -registration(r13427,c86,s3948).registration17934,493644 -registration(r13428,c220,s3949).registration17935,493676 -registration(r13428,c220,s3949).registration17935,493676 -registration(r13429,c37,s3949).registration17936,493709 -registration(r13429,c37,s3949).registration17936,493709 -registration(r13430,c184,s3949).registration17937,493741 -registration(r13430,c184,s3949).registration17937,493741 -registration(r13431,c33,s3949).registration17938,493774 -registration(r13431,c33,s3949).registration17938,493774 -registration(r13432,c144,s3950).registration17939,493806 -registration(r13432,c144,s3950).registration17939,493806 -registration(r13433,c234,s3950).registration17940,493839 -registration(r13433,c234,s3950).registration17940,493839 -registration(r13434,c39,s3950).registration17941,493872 -registration(r13434,c39,s3950).registration17941,493872 -registration(r13435,c214,s3951).registration17942,493904 -registration(r13435,c214,s3951).registration17942,493904 -registration(r13436,c169,s3951).registration17943,493937 -registration(r13436,c169,s3951).registration17943,493937 -registration(r13437,c198,s3951).registration17944,493970 -registration(r13437,c198,s3951).registration17944,493970 -registration(r13438,c156,s3952).registration17945,494003 -registration(r13438,c156,s3952).registration17945,494003 -registration(r13439,c241,s3952).registration17946,494036 -registration(r13439,c241,s3952).registration17946,494036 -registration(r13440,c141,s3952).registration17947,494069 -registration(r13440,c141,s3952).registration17947,494069 -registration(r13441,c32,s3952).registration17948,494102 -registration(r13441,c32,s3952).registration17948,494102 -registration(r13442,c128,s3953).registration17949,494134 -registration(r13442,c128,s3953).registration17949,494134 -registration(r13443,c62,s3953).registration17950,494167 -registration(r13443,c62,s3953).registration17950,494167 -registration(r13444,c99,s3953).registration17951,494199 -registration(r13444,c99,s3953).registration17951,494199 -registration(r13445,c164,s3954).registration17952,494231 -registration(r13445,c164,s3954).registration17952,494231 -registration(r13446,c20,s3954).registration17953,494264 -registration(r13446,c20,s3954).registration17953,494264 -registration(r13447,c246,s3954).registration17954,494296 -registration(r13447,c246,s3954).registration17954,494296 -registration(r13448,c28,s3955).registration17955,494329 -registration(r13448,c28,s3955).registration17955,494329 -registration(r13449,c240,s3955).registration17956,494361 -registration(r13449,c240,s3955).registration17956,494361 -registration(r13450,c243,s3955).registration17957,494394 -registration(r13450,c243,s3955).registration17957,494394 -registration(r13451,c131,s3956).registration17958,494427 -registration(r13451,c131,s3956).registration17958,494427 -registration(r13452,c41,s3956).registration17959,494460 -registration(r13452,c41,s3956).registration17959,494460 -registration(r13453,c254,s3956).registration17960,494492 -registration(r13453,c254,s3956).registration17960,494492 -registration(r13454,c212,s3957).registration17961,494525 -registration(r13454,c212,s3957).registration17961,494525 -registration(r13455,c29,s3957).registration17962,494558 -registration(r13455,c29,s3957).registration17962,494558 -registration(r13456,c54,s3957).registration17963,494590 -registration(r13456,c54,s3957).registration17963,494590 -registration(r13457,c210,s3958).registration17964,494622 -registration(r13457,c210,s3958).registration17964,494622 -registration(r13458,c49,s3958).registration17965,494655 -registration(r13458,c49,s3958).registration17965,494655 -registration(r13459,c27,s3958).registration17966,494687 -registration(r13459,c27,s3958).registration17966,494687 -registration(r13460,c61,s3959).registration17967,494719 -registration(r13460,c61,s3959).registration17967,494719 -registration(r13461,c58,s3959).registration17968,494751 -registration(r13461,c58,s3959).registration17968,494751 -registration(r13462,c162,s3959).registration17969,494783 -registration(r13462,c162,s3959).registration17969,494783 -registration(r13463,c10,s3960).registration17970,494816 -registration(r13463,c10,s3960).registration17970,494816 -registration(r13464,c69,s3960).registration17971,494848 -registration(r13464,c69,s3960).registration17971,494848 -registration(r13465,c14,s3960).registration17972,494880 -registration(r13465,c14,s3960).registration17972,494880 -registration(r13466,c126,s3960).registration17973,494912 -registration(r13466,c126,s3960).registration17973,494912 -registration(r13467,c29,s3961).registration17974,494945 -registration(r13467,c29,s3961).registration17974,494945 -registration(r13468,c109,s3961).registration17975,494977 -registration(r13468,c109,s3961).registration17975,494977 -registration(r13469,c241,s3961).registration17976,495010 -registration(r13469,c241,s3961).registration17976,495010 -registration(r13470,c117,s3962).registration17977,495043 -registration(r13470,c117,s3962).registration17977,495043 -registration(r13471,c134,s3962).registration17978,495076 -registration(r13471,c134,s3962).registration17978,495076 -registration(r13472,c66,s3962).registration17979,495109 -registration(r13472,c66,s3962).registration17979,495109 -registration(r13473,c23,s3963).registration17980,495141 -registration(r13473,c23,s3963).registration17980,495141 -registration(r13474,c6,s3963).registration17981,495173 -registration(r13474,c6,s3963).registration17981,495173 -registration(r13475,c44,s3963).registration17982,495204 -registration(r13475,c44,s3963).registration17982,495204 -registration(r13476,c252,s3964).registration17983,495236 -registration(r13476,c252,s3964).registration17983,495236 -registration(r13477,c136,s3964).registration17984,495269 -registration(r13477,c136,s3964).registration17984,495269 -registration(r13478,c175,s3964).registration17985,495302 -registration(r13478,c175,s3964).registration17985,495302 -registration(r13479,c236,s3965).registration17986,495335 -registration(r13479,c236,s3965).registration17986,495335 -registration(r13480,c241,s3965).registration17987,495368 -registration(r13480,c241,s3965).registration17987,495368 -registration(r13481,c141,s3965).registration17988,495401 -registration(r13481,c141,s3965).registration17988,495401 -registration(r13482,c153,s3966).registration17989,495434 -registration(r13482,c153,s3966).registration17989,495434 -registration(r13483,c210,s3966).registration17990,495467 -registration(r13483,c210,s3966).registration17990,495467 -registration(r13484,c249,s3966).registration17991,495500 -registration(r13484,c249,s3966).registration17991,495500 -registration(r13485,c248,s3967).registration17992,495533 -registration(r13485,c248,s3967).registration17992,495533 -registration(r13486,c184,s3967).registration17993,495566 -registration(r13486,c184,s3967).registration17993,495566 -registration(r13487,c187,s3967).registration17994,495599 -registration(r13487,c187,s3967).registration17994,495599 -registration(r13488,c255,s3967).registration17995,495632 -registration(r13488,c255,s3967).registration17995,495632 -registration(r13489,c94,s3968).registration17996,495665 -registration(r13489,c94,s3968).registration17996,495665 -registration(r13490,c156,s3968).registration17997,495697 -registration(r13490,c156,s3968).registration17997,495697 -registration(r13491,c66,s3968).registration17998,495730 -registration(r13491,c66,s3968).registration17998,495730 -registration(r13492,c90,s3969).registration17999,495762 -registration(r13492,c90,s3969).registration17999,495762 -registration(r13493,c77,s3969).registration18000,495794 -registration(r13493,c77,s3969).registration18000,495794 -registration(r13494,c188,s3969).registration18001,495826 -registration(r13494,c188,s3969).registration18001,495826 -registration(r13495,c184,s3970).registration18002,495859 -registration(r13495,c184,s3970).registration18002,495859 -registration(r13496,c59,s3970).registration18003,495892 -registration(r13496,c59,s3970).registration18003,495892 -registration(r13497,c144,s3970).registration18004,495924 -registration(r13497,c144,s3970).registration18004,495924 -registration(r13498,c124,s3970).registration18005,495957 -registration(r13498,c124,s3970).registration18005,495957 -registration(r13499,c97,s3971).registration18006,495990 -registration(r13499,c97,s3971).registration18006,495990 -registration(r13500,c183,s3971).registration18007,496022 -registration(r13500,c183,s3971).registration18007,496022 -registration(r13501,c10,s3971).registration18008,496055 -registration(r13501,c10,s3971).registration18008,496055 -registration(r13502,c220,s3972).registration18009,496087 -registration(r13502,c220,s3972).registration18009,496087 -registration(r13503,c70,s3972).registration18010,496120 -registration(r13503,c70,s3972).registration18010,496120 -registration(r13504,c236,s3972).registration18011,496152 -registration(r13504,c236,s3972).registration18011,496152 -registration(r13505,c61,s3972).registration18012,496185 -registration(r13505,c61,s3972).registration18012,496185 -registration(r13506,c230,s3973).registration18013,496217 -registration(r13506,c230,s3973).registration18013,496217 -registration(r13507,c39,s3973).registration18014,496250 -registration(r13507,c39,s3973).registration18014,496250 -registration(r13508,c185,s3973).registration18015,496282 -registration(r13508,c185,s3973).registration18015,496282 -registration(r13509,c86,s3974).registration18016,496315 -registration(r13509,c86,s3974).registration18016,496315 -registration(r13510,c40,s3974).registration18017,496347 -registration(r13510,c40,s3974).registration18017,496347 -registration(r13511,c206,s3974).registration18018,496379 -registration(r13511,c206,s3974).registration18018,496379 -registration(r13512,c27,s3975).registration18019,496412 -registration(r13512,c27,s3975).registration18019,496412 -registration(r13513,c163,s3975).registration18020,496444 -registration(r13513,c163,s3975).registration18020,496444 -registration(r13514,c53,s3975).registration18021,496477 -registration(r13514,c53,s3975).registration18021,496477 -registration(r13515,c112,s3976).registration18022,496509 -registration(r13515,c112,s3976).registration18022,496509 -registration(r13516,c141,s3976).registration18023,496542 -registration(r13516,c141,s3976).registration18023,496542 -registration(r13517,c203,s3976).registration18024,496575 -registration(r13517,c203,s3976).registration18024,496575 -registration(r13518,c43,s3976).registration18025,496608 -registration(r13518,c43,s3976).registration18025,496608 -registration(r13519,c81,s3977).registration18026,496640 -registration(r13519,c81,s3977).registration18026,496640 -registration(r13520,c21,s3977).registration18027,496672 -registration(r13520,c21,s3977).registration18027,496672 -registration(r13521,c122,s3977).registration18028,496704 -registration(r13521,c122,s3977).registration18028,496704 -registration(r13522,c191,s3978).registration18029,496737 -registration(r13522,c191,s3978).registration18029,496737 -registration(r13523,c141,s3978).registration18030,496770 -registration(r13523,c141,s3978).registration18030,496770 -registration(r13524,c27,s3978).registration18031,496803 -registration(r13524,c27,s3978).registration18031,496803 -registration(r13525,c2,s3978).registration18032,496835 -registration(r13525,c2,s3978).registration18032,496835 -registration(r13526,c37,s3979).registration18033,496866 -registration(r13526,c37,s3979).registration18033,496866 -registration(r13527,c237,s3979).registration18034,496898 -registration(r13527,c237,s3979).registration18034,496898 -registration(r13528,c231,s3979).registration18035,496931 -registration(r13528,c231,s3979).registration18035,496931 -registration(r13529,c16,s3980).registration18036,496964 -registration(r13529,c16,s3980).registration18036,496964 -registration(r13530,c122,s3980).registration18037,496996 -registration(r13530,c122,s3980).registration18037,496996 -registration(r13531,c44,s3980).registration18038,497029 -registration(r13531,c44,s3980).registration18038,497029 -registration(r13532,c206,s3981).registration18039,497061 -registration(r13532,c206,s3981).registration18039,497061 -registration(r13533,c200,s3981).registration18040,497094 -registration(r13533,c200,s3981).registration18040,497094 -registration(r13534,c145,s3981).registration18041,497127 -registration(r13534,c145,s3981).registration18041,497127 -registration(r13535,c57,s3981).registration18042,497160 -registration(r13535,c57,s3981).registration18042,497160 -registration(r13536,c245,s3981).registration18043,497192 -registration(r13536,c245,s3981).registration18043,497192 -registration(r13537,c212,s3982).registration18044,497225 -registration(r13537,c212,s3982).registration18044,497225 -registration(r13538,c42,s3982).registration18045,497258 -registration(r13538,c42,s3982).registration18045,497258 -registration(r13539,c33,s3982).registration18046,497290 -registration(r13539,c33,s3982).registration18046,497290 -registration(r13540,c65,s3982).registration18047,497322 -registration(r13540,c65,s3982).registration18047,497322 -registration(r13541,c199,s3983).registration18048,497354 -registration(r13541,c199,s3983).registration18048,497354 -registration(r13542,c49,s3983).registration18049,497387 -registration(r13542,c49,s3983).registration18049,497387 -registration(r13543,c90,s3983).registration18050,497419 -registration(r13543,c90,s3983).registration18050,497419 -registration(r13544,c88,s3984).registration18051,497451 -registration(r13544,c88,s3984).registration18051,497451 -registration(r13545,c136,s3984).registration18052,497483 -registration(r13545,c136,s3984).registration18052,497483 -registration(r13546,c78,s3984).registration18053,497516 -registration(r13546,c78,s3984).registration18053,497516 -registration(r13547,c55,s3985).registration18054,497548 -registration(r13547,c55,s3985).registration18054,497548 -registration(r13548,c42,s3985).registration18055,497580 -registration(r13548,c42,s3985).registration18055,497580 -registration(r13549,c186,s3985).registration18056,497612 -registration(r13549,c186,s3985).registration18056,497612 -registration(r13550,c229,s3986).registration18057,497645 -registration(r13550,c229,s3986).registration18057,497645 -registration(r13551,c219,s3986).registration18058,497678 -registration(r13551,c219,s3986).registration18058,497678 -registration(r13552,c58,s3986).registration18059,497711 -registration(r13552,c58,s3986).registration18059,497711 -registration(r13553,c206,s3987).registration18060,497743 -registration(r13553,c206,s3987).registration18060,497743 -registration(r13554,c222,s3987).registration18061,497776 -registration(r13554,c222,s3987).registration18061,497776 -registration(r13555,c225,s3987).registration18062,497809 -registration(r13555,c225,s3987).registration18062,497809 -registration(r13556,c181,s3988).registration18063,497842 -registration(r13556,c181,s3988).registration18063,497842 -registration(r13557,c25,s3988).registration18064,497875 -registration(r13557,c25,s3988).registration18064,497875 -registration(r13558,c245,s3988).registration18065,497907 -registration(r13558,c245,s3988).registration18065,497907 -registration(r13559,c144,s3989).registration18066,497940 -registration(r13559,c144,s3989).registration18066,497940 -registration(r13560,c162,s3989).registration18067,497973 -registration(r13560,c162,s3989).registration18067,497973 -registration(r13561,c137,s3989).registration18068,498006 -registration(r13561,c137,s3989).registration18068,498006 -registration(r13562,c216,s3990).registration18069,498039 -registration(r13562,c216,s3990).registration18069,498039 -registration(r13563,c67,s3990).registration18070,498072 -registration(r13563,c67,s3990).registration18070,498072 -registration(r13564,c127,s3990).registration18071,498104 -registration(r13564,c127,s3990).registration18071,498104 -registration(r13565,c193,s3990).registration18072,498137 -registration(r13565,c193,s3990).registration18072,498137 -registration(r13566,c95,s3991).registration18073,498170 -registration(r13566,c95,s3991).registration18073,498170 -registration(r13567,c237,s3991).registration18074,498202 -registration(r13567,c237,s3991).registration18074,498202 -registration(r13568,c174,s3991).registration18075,498235 -registration(r13568,c174,s3991).registration18075,498235 -registration(r13569,c147,s3992).registration18076,498268 -registration(r13569,c147,s3992).registration18076,498268 -registration(r13570,c132,s3992).registration18077,498301 -registration(r13570,c132,s3992).registration18077,498301 -registration(r13571,c206,s3992).registration18078,498334 -registration(r13571,c206,s3992).registration18078,498334 -registration(r13572,c156,s3992).registration18079,498367 -registration(r13572,c156,s3992).registration18079,498367 -registration(r13573,c37,s3993).registration18080,498400 -registration(r13573,c37,s3993).registration18080,498400 -registration(r13574,c12,s3993).registration18081,498432 -registration(r13574,c12,s3993).registration18081,498432 -registration(r13575,c139,s3993).registration18082,498464 -registration(r13575,c139,s3993).registration18082,498464 -registration(r13576,c163,s3994).registration18083,498497 -registration(r13576,c163,s3994).registration18083,498497 -registration(r13577,c238,s3994).registration18084,498530 -registration(r13577,c238,s3994).registration18084,498530 -registration(r13578,c154,s3994).registration18085,498563 -registration(r13578,c154,s3994).registration18085,498563 -registration(r13579,c61,s3995).registration18086,498596 -registration(r13579,c61,s3995).registration18086,498596 -registration(r13580,c136,s3995).registration18087,498628 -registration(r13580,c136,s3995).registration18087,498628 -registration(r13581,c106,s3995).registration18088,498661 -registration(r13581,c106,s3995).registration18088,498661 -registration(r13582,c173,s3996).registration18089,498694 -registration(r13582,c173,s3996).registration18089,498694 -registration(r13583,c180,s3996).registration18090,498727 -registration(r13583,c180,s3996).registration18090,498727 -registration(r13584,c134,s3996).registration18091,498760 -registration(r13584,c134,s3996).registration18091,498760 -registration(r13585,c231,s3997).registration18092,498793 -registration(r13585,c231,s3997).registration18092,498793 -registration(r13586,c92,s3997).registration18093,498826 -registration(r13586,c92,s3997).registration18093,498826 -registration(r13587,c87,s3997).registration18094,498858 -registration(r13587,c87,s3997).registration18094,498858 -registration(r13588,c235,s3998).registration18095,498890 -registration(r13588,c235,s3998).registration18095,498890 -registration(r13589,c19,s3998).registration18096,498923 -registration(r13589,c19,s3998).registration18096,498923 -registration(r13590,c188,s3998).registration18097,498955 -registration(r13590,c188,s3998).registration18097,498955 -registration(r13591,c63,s3998).registration18098,498988 -registration(r13591,c63,s3998).registration18098,498988 -registration(r13592,c88,s3999).registration18099,499020 -registration(r13592,c88,s3999).registration18099,499020 -registration(r13593,c75,s3999).registration18100,499052 -registration(r13593,c75,s3999).registration18100,499052 -registration(r13594,c228,s3999).registration18101,499084 -registration(r13594,c228,s3999).registration18101,499084 -registration(r13595,c136,s3999).registration18102,499117 -registration(r13595,c136,s3999).registration18102,499117 -registration(r13596,c63,s4000).registration18103,499150 -registration(r13596,c63,s4000).registration18103,499150 -registration(r13597,c168,s4000).registration18104,499182 -registration(r13597,c168,s4000).registration18104,499182 -registration(r13598,c132,s4000).registration18105,499215 -registration(r13598,c132,s4000).registration18105,499215 -registration(r13599,c13,s4001).registration18106,499248 -registration(r13599,c13,s4001).registration18106,499248 -registration(r13600,c41,s4001).registration18107,499280 -registration(r13600,c41,s4001).registration18107,499280 -registration(r13601,c27,s4001).registration18108,499312 -registration(r13601,c27,s4001).registration18108,499312 -registration(r13602,c206,s4002).registration18109,499344 -registration(r13602,c206,s4002).registration18109,499344 -registration(r13603,c244,s4002).registration18110,499377 -registration(r13603,c244,s4002).registration18110,499377 -registration(r13604,c69,s4002).registration18111,499410 -registration(r13604,c69,s4002).registration18111,499410 -registration(r13605,c163,s4003).registration18112,499442 -registration(r13605,c163,s4003).registration18112,499442 -registration(r13606,c207,s4003).registration18113,499475 -registration(r13606,c207,s4003).registration18113,499475 -registration(r13607,c106,s4003).registration18114,499508 -registration(r13607,c106,s4003).registration18114,499508 -registration(r13608,c127,s4004).registration18115,499541 -registration(r13608,c127,s4004).registration18115,499541 -registration(r13609,c79,s4004).registration18116,499574 -registration(r13609,c79,s4004).registration18116,499574 -registration(r13610,c237,s4004).registration18117,499606 -registration(r13610,c237,s4004).registration18117,499606 -registration(r13611,c69,s4005).registration18118,499639 -registration(r13611,c69,s4005).registration18118,499639 -registration(r13612,c10,s4005).registration18119,499671 -registration(r13612,c10,s4005).registration18119,499671 -registration(r13613,c142,s4005).registration18120,499703 -registration(r13613,c142,s4005).registration18120,499703 -registration(r13614,c21,s4005).registration18121,499736 -registration(r13614,c21,s4005).registration18121,499736 -registration(r13615,c214,s4006).registration18122,499768 -registration(r13615,c214,s4006).registration18122,499768 -registration(r13616,c190,s4006).registration18123,499801 -registration(r13616,c190,s4006).registration18123,499801 -registration(r13617,c152,s4006).registration18124,499834 -registration(r13617,c152,s4006).registration18124,499834 -registration(r13618,c167,s4007).registration18125,499867 -registration(r13618,c167,s4007).registration18125,499867 -registration(r13619,c189,s4007).registration18126,499900 -registration(r13619,c189,s4007).registration18126,499900 -registration(r13620,c192,s4007).registration18127,499933 -registration(r13620,c192,s4007).registration18127,499933 -registration(r13621,c146,s4007).registration18128,499966 -registration(r13621,c146,s4007).registration18128,499966 -registration(r13622,c9,s4008).registration18129,499999 -registration(r13622,c9,s4008).registration18129,499999 -registration(r13623,c218,s4008).registration18130,500030 -registration(r13623,c218,s4008).registration18130,500030 -registration(r13624,c6,s4008).registration18131,500063 -registration(r13624,c6,s4008).registration18131,500063 -registration(r13625,c214,s4009).registration18132,500094 -registration(r13625,c214,s4009).registration18132,500094 -registration(r13626,c80,s4009).registration18133,500127 -registration(r13626,c80,s4009).registration18133,500127 -registration(r13627,c16,s4009).registration18134,500159 -registration(r13627,c16,s4009).registration18134,500159 -registration(r13628,c96,s4010).registration18135,500191 -registration(r13628,c96,s4010).registration18135,500191 -registration(r13629,c127,s4010).registration18136,500223 -registration(r13629,c127,s4010).registration18136,500223 -registration(r13630,c143,s4010).registration18137,500256 -registration(r13630,c143,s4010).registration18137,500256 -registration(r13631,c197,s4010).registration18138,500289 -registration(r13631,c197,s4010).registration18138,500289 -registration(r13632,c151,s4011).registration18139,500322 -registration(r13632,c151,s4011).registration18139,500322 -registration(r13633,c91,s4011).registration18140,500355 -registration(r13633,c91,s4011).registration18140,500355 -registration(r13634,c176,s4011).registration18141,500387 -registration(r13634,c176,s4011).registration18141,500387 -registration(r13635,c110,s4011).registration18142,500420 -registration(r13635,c110,s4011).registration18142,500420 -registration(r13636,c70,s4012).registration18143,500453 -registration(r13636,c70,s4012).registration18143,500453 -registration(r13637,c199,s4012).registration18144,500485 -registration(r13637,c199,s4012).registration18144,500485 -registration(r13638,c20,s4012).registration18145,500518 -registration(r13638,c20,s4012).registration18145,500518 -registration(r13639,c212,s4013).registration18146,500550 -registration(r13639,c212,s4013).registration18146,500550 -registration(r13640,c1,s4013).registration18147,500583 -registration(r13640,c1,s4013).registration18147,500583 -registration(r13641,c25,s4013).registration18148,500614 -registration(r13641,c25,s4013).registration18148,500614 -registration(r13642,c242,s4013).registration18149,500646 -registration(r13642,c242,s4013).registration18149,500646 -registration(r13643,c105,s4014).registration18150,500679 -registration(r13643,c105,s4014).registration18150,500679 -registration(r13644,c240,s4014).registration18151,500712 -registration(r13644,c240,s4014).registration18151,500712 -registration(r13645,c112,s4014).registration18152,500745 -registration(r13645,c112,s4014).registration18152,500745 -registration(r13646,c128,s4015).registration18153,500778 -registration(r13646,c128,s4015).registration18153,500778 -registration(r13647,c208,s4015).registration18154,500811 -registration(r13647,c208,s4015).registration18154,500811 -registration(r13648,c16,s4015).registration18155,500844 -registration(r13648,c16,s4015).registration18155,500844 -registration(r13649,c158,s4016).registration18156,500876 -registration(r13649,c158,s4016).registration18156,500876 -registration(r13650,c235,s4016).registration18157,500909 -registration(r13650,c235,s4016).registration18157,500909 -registration(r13651,c19,s4016).registration18158,500942 -registration(r13651,c19,s4016).registration18158,500942 -registration(r13652,c111,s4017).registration18159,500974 -registration(r13652,c111,s4017).registration18159,500974 -registration(r13653,c231,s4017).registration18160,501007 -registration(r13653,c231,s4017).registration18160,501007 -registration(r13654,c47,s4017).registration18161,501040 -registration(r13654,c47,s4017).registration18161,501040 -registration(r13655,c118,s4018).registration18162,501072 -registration(r13655,c118,s4018).registration18162,501072 -registration(r13656,c104,s4018).registration18163,501105 -registration(r13656,c104,s4018).registration18163,501105 -registration(r13657,c106,s4018).registration18164,501138 -registration(r13657,c106,s4018).registration18164,501138 -registration(r13658,c63,s4019).registration18165,501171 -registration(r13658,c63,s4019).registration18165,501171 -registration(r13659,c102,s4019).registration18166,501203 -registration(r13659,c102,s4019).registration18166,501203 -registration(r13660,c6,s4019).registration18167,501236 -registration(r13660,c6,s4019).registration18167,501236 -registration(r13661,c248,s4020).registration18168,501267 -registration(r13661,c248,s4020).registration18168,501267 -registration(r13662,c11,s4020).registration18169,501300 -registration(r13662,c11,s4020).registration18169,501300 -registration(r13663,c97,s4020).registration18170,501332 -registration(r13663,c97,s4020).registration18170,501332 -registration(r13664,c161,s4021).registration18171,501364 -registration(r13664,c161,s4021).registration18171,501364 -registration(r13665,c234,s4021).registration18172,501397 -registration(r13665,c234,s4021).registration18172,501397 -registration(r13666,c27,s4021).registration18173,501430 -registration(r13666,c27,s4021).registration18173,501430 -registration(r13667,c106,s4022).registration18174,501462 -registration(r13667,c106,s4022).registration18174,501462 -registration(r13668,c80,s4022).registration18175,501495 -registration(r13668,c80,s4022).registration18175,501495 -registration(r13669,c184,s4022).registration18176,501527 -registration(r13669,c184,s4022).registration18176,501527 -registration(r13670,c58,s4023).registration18177,501560 -registration(r13670,c58,s4023).registration18177,501560 -registration(r13671,c238,s4023).registration18178,501592 -registration(r13671,c238,s4023).registration18178,501592 -registration(r13672,c111,s4023).registration18179,501625 -registration(r13672,c111,s4023).registration18179,501625 -registration(r13673,c197,s4024).registration18180,501658 -registration(r13673,c197,s4024).registration18180,501658 -registration(r13674,c224,s4024).registration18181,501691 -registration(r13674,c224,s4024).registration18181,501691 -registration(r13675,c249,s4024).registration18182,501724 -registration(r13675,c249,s4024).registration18182,501724 -registration(r13676,c68,s4024).registration18183,501757 -registration(r13676,c68,s4024).registration18183,501757 -registration(r13677,c111,s4025).registration18184,501789 -registration(r13677,c111,s4025).registration18184,501789 -registration(r13678,c171,s4025).registration18185,501822 -registration(r13678,c171,s4025).registration18185,501822 -registration(r13679,c236,s4025).registration18186,501855 -registration(r13679,c236,s4025).registration18186,501855 -registration(r13680,c27,s4025).registration18187,501888 -registration(r13680,c27,s4025).registration18187,501888 -registration(r13681,c29,s4026).registration18188,501920 -registration(r13681,c29,s4026).registration18188,501920 -registration(r13682,c125,s4026).registration18189,501952 -registration(r13682,c125,s4026).registration18189,501952 -registration(r13683,c79,s4026).registration18190,501985 -registration(r13683,c79,s4026).registration18190,501985 -registration(r13684,c57,s4026).registration18191,502017 -registration(r13684,c57,s4026).registration18191,502017 -registration(r13685,c131,s4027).registration18192,502049 -registration(r13685,c131,s4027).registration18192,502049 -registration(r13686,c208,s4027).registration18193,502082 -registration(r13686,c208,s4027).registration18193,502082 -registration(r13687,c4,s4027).registration18194,502115 -registration(r13687,c4,s4027).registration18194,502115 -registration(r13688,c188,s4027).registration18195,502146 -registration(r13688,c188,s4027).registration18195,502146 -registration(r13689,c108,s4028).registration18196,502179 -registration(r13689,c108,s4028).registration18196,502179 -registration(r13690,c170,s4028).registration18197,502212 -registration(r13690,c170,s4028).registration18197,502212 -registration(r13691,c247,s4028).registration18198,502245 -registration(r13691,c247,s4028).registration18198,502245 -registration(r13692,c96,s4028).registration18199,502278 -registration(r13692,c96,s4028).registration18199,502278 -registration(r13693,c234,s4029).registration18200,502310 -registration(r13693,c234,s4029).registration18200,502310 -registration(r13694,c223,s4029).registration18201,502343 -registration(r13694,c223,s4029).registration18201,502343 -registration(r13695,c65,s4029).registration18202,502376 -registration(r13695,c65,s4029).registration18202,502376 -registration(r13696,c134,s4029).registration18203,502408 -registration(r13696,c134,s4029).registration18203,502408 -registration(r13697,c202,s4030).registration18204,502441 -registration(r13697,c202,s4030).registration18204,502441 -registration(r13698,c127,s4030).registration18205,502474 -registration(r13698,c127,s4030).registration18205,502474 -registration(r13699,c49,s4030).registration18206,502507 -registration(r13699,c49,s4030).registration18206,502507 -registration(r13700,c77,s4031).registration18207,502539 -registration(r13700,c77,s4031).registration18207,502539 -registration(r13701,c157,s4031).registration18208,502571 -registration(r13701,c157,s4031).registration18208,502571 -registration(r13702,c176,s4031).registration18209,502604 -registration(r13702,c176,s4031).registration18209,502604 -registration(r13703,c23,s4032).registration18210,502637 -registration(r13703,c23,s4032).registration18210,502637 -registration(r13704,c232,s4032).registration18211,502669 -registration(r13704,c232,s4032).registration18211,502669 -registration(r13705,c37,s4032).registration18212,502702 -registration(r13705,c37,s4032).registration18212,502702 -registration(r13706,c41,s4033).registration18213,502734 -registration(r13706,c41,s4033).registration18213,502734 -registration(r13707,c138,s4033).registration18214,502766 -registration(r13707,c138,s4033).registration18214,502766 -registration(r13708,c218,s4033).registration18215,502799 -registration(r13708,c218,s4033).registration18215,502799 -registration(r13709,c132,s4034).registration18216,502832 -registration(r13709,c132,s4034).registration18216,502832 -registration(r13710,c221,s4034).registration18217,502865 -registration(r13710,c221,s4034).registration18217,502865 -registration(r13711,c80,s4034).registration18218,502898 -registration(r13711,c80,s4034).registration18218,502898 -registration(r13712,c59,s4035).registration18219,502930 -registration(r13712,c59,s4035).registration18219,502930 -registration(r13713,c127,s4035).registration18220,502962 -registration(r13713,c127,s4035).registration18220,502962 -registration(r13714,c130,s4035).registration18221,502995 -registration(r13714,c130,s4035).registration18221,502995 -registration(r13715,c144,s4035).registration18222,503028 -registration(r13715,c144,s4035).registration18222,503028 -registration(r13716,c235,s4035).registration18223,503061 -registration(r13716,c235,s4035).registration18223,503061 -registration(r13717,c15,s4036).registration18224,503094 -registration(r13717,c15,s4036).registration18224,503094 -registration(r13718,c59,s4036).registration18225,503126 -registration(r13718,c59,s4036).registration18225,503126 -registration(r13719,c162,s4036).registration18226,503158 -registration(r13719,c162,s4036).registration18226,503158 -registration(r13720,c63,s4037).registration18227,503191 -registration(r13720,c63,s4037).registration18227,503191 -registration(r13721,c82,s4037).registration18228,503223 -registration(r13721,c82,s4037).registration18228,503223 -registration(r13722,c83,s4037).registration18229,503255 -registration(r13722,c83,s4037).registration18229,503255 -registration(r13723,c107,s4037).registration18230,503287 -registration(r13723,c107,s4037).registration18230,503287 -registration(r13724,c80,s4038).registration18231,503320 -registration(r13724,c80,s4038).registration18231,503320 -registration(r13725,c5,s4038).registration18232,503352 -registration(r13725,c5,s4038).registration18232,503352 -registration(r13726,c243,s4038).registration18233,503383 -registration(r13726,c243,s4038).registration18233,503383 -registration(r13727,c205,s4039).registration18234,503416 -registration(r13727,c205,s4039).registration18234,503416 -registration(r13728,c95,s4039).registration18235,503449 -registration(r13728,c95,s4039).registration18235,503449 -registration(r13729,c133,s4039).registration18236,503481 -registration(r13729,c133,s4039).registration18236,503481 -registration(r13730,c214,s4040).registration18237,503514 -registration(r13730,c214,s4040).registration18237,503514 -registration(r13731,c240,s4040).registration18238,503547 -registration(r13731,c240,s4040).registration18238,503547 -registration(r13732,c122,s4040).registration18239,503580 -registration(r13732,c122,s4040).registration18239,503580 -registration(r13733,c109,s4040).registration18240,503613 -registration(r13733,c109,s4040).registration18240,503613 -registration(r13734,c50,s4041).registration18241,503646 -registration(r13734,c50,s4041).registration18241,503646 -registration(r13735,c254,s4041).registration18242,503678 -registration(r13735,c254,s4041).registration18242,503678 -registration(r13736,c5,s4041).registration18243,503711 -registration(r13736,c5,s4041).registration18243,503711 -registration(r13737,c14,s4041).registration18244,503742 -registration(r13737,c14,s4041).registration18244,503742 -registration(r13738,c191,s4042).registration18245,503774 -registration(r13738,c191,s4042).registration18245,503774 -registration(r13739,c175,s4042).registration18246,503807 -registration(r13739,c175,s4042).registration18246,503807 -registration(r13740,c200,s4042).registration18247,503840 -registration(r13740,c200,s4042).registration18247,503840 -registration(r13741,c26,s4042).registration18248,503873 -registration(r13741,c26,s4042).registration18248,503873 -registration(r13742,c42,s4043).registration18249,503905 -registration(r13742,c42,s4043).registration18249,503905 -registration(r13743,c108,s4043).registration18250,503937 -registration(r13743,c108,s4043).registration18250,503937 -registration(r13744,c85,s4043).registration18251,503970 -registration(r13744,c85,s4043).registration18251,503970 -registration(r13745,c72,s4044).registration18252,504002 -registration(r13745,c72,s4044).registration18252,504002 -registration(r13746,c244,s4044).registration18253,504034 -registration(r13746,c244,s4044).registration18253,504034 -registration(r13747,c0,s4044).registration18254,504067 -registration(r13747,c0,s4044).registration18254,504067 -registration(r13748,c85,s4044).registration18255,504098 -registration(r13748,c85,s4044).registration18255,504098 -registration(r13749,c103,s4045).registration18256,504130 -registration(r13749,c103,s4045).registration18256,504130 -registration(r13750,c146,s4045).registration18257,504163 -registration(r13750,c146,s4045).registration18257,504163 -registration(r13751,c90,s4045).registration18258,504196 -registration(r13751,c90,s4045).registration18258,504196 -registration(r13752,c110,s4045).registration18259,504228 -registration(r13752,c110,s4045).registration18259,504228 -registration(r13753,c198,s4046).registration18260,504261 -registration(r13753,c198,s4046).registration18260,504261 -registration(r13754,c10,s4046).registration18261,504294 -registration(r13754,c10,s4046).registration18261,504294 -registration(r13755,c159,s4046).registration18262,504326 -registration(r13755,c159,s4046).registration18262,504326 -registration(r13756,c189,s4046).registration18263,504359 -registration(r13756,c189,s4046).registration18263,504359 -registration(r13757,c211,s4047).registration18264,504392 -registration(r13757,c211,s4047).registration18264,504392 -registration(r13758,c80,s4047).registration18265,504425 -registration(r13758,c80,s4047).registration18265,504425 -registration(r13759,c124,s4047).registration18266,504457 -registration(r13759,c124,s4047).registration18266,504457 -registration(r13760,c122,s4047).registration18267,504490 -registration(r13760,c122,s4047).registration18267,504490 -registration(r13761,c133,s4048).registration18268,504523 -registration(r13761,c133,s4048).registration18268,504523 -registration(r13762,c51,s4048).registration18269,504556 -registration(r13762,c51,s4048).registration18269,504556 -registration(r13763,c166,s4048).registration18270,504588 -registration(r13763,c166,s4048).registration18270,504588 -registration(r13764,c31,s4049).registration18271,504621 -registration(r13764,c31,s4049).registration18271,504621 -registration(r13765,c98,s4049).registration18272,504653 -registration(r13765,c98,s4049).registration18272,504653 -registration(r13766,c210,s4049).registration18273,504685 -registration(r13766,c210,s4049).registration18273,504685 -registration(r13767,c99,s4049).registration18274,504718 -registration(r13767,c99,s4049).registration18274,504718 -registration(r13768,c104,s4050).registration18275,504750 -registration(r13768,c104,s4050).registration18275,504750 -registration(r13769,c231,s4050).registration18276,504783 -registration(r13769,c231,s4050).registration18276,504783 -registration(r13770,c78,s4050).registration18277,504816 -registration(r13770,c78,s4050).registration18277,504816 -registration(r13771,c167,s4051).registration18278,504848 -registration(r13771,c167,s4051).registration18278,504848 -registration(r13772,c8,s4051).registration18279,504881 -registration(r13772,c8,s4051).registration18279,504881 -registration(r13773,c177,s4051).registration18280,504912 -registration(r13773,c177,s4051).registration18280,504912 -registration(r13774,c81,s4051).registration18281,504945 -registration(r13774,c81,s4051).registration18281,504945 -registration(r13775,c51,s4052).registration18282,504977 -registration(r13775,c51,s4052).registration18282,504977 -registration(r13776,c35,s4052).registration18283,505009 -registration(r13776,c35,s4052).registration18283,505009 -registration(r13777,c14,s4052).registration18284,505041 -registration(r13777,c14,s4052).registration18284,505041 -registration(r13778,c118,s4052).registration18285,505073 -registration(r13778,c118,s4052).registration18285,505073 -registration(r13779,c137,s4053).registration18286,505106 -registration(r13779,c137,s4053).registration18286,505106 -registration(r13780,c142,s4053).registration18287,505139 -registration(r13780,c142,s4053).registration18287,505139 -registration(r13781,c6,s4053).registration18288,505172 -registration(r13781,c6,s4053).registration18288,505172 -registration(r13782,c194,s4053).registration18289,505203 -registration(r13782,c194,s4053).registration18289,505203 -registration(r13783,c255,s4054).registration18290,505236 -registration(r13783,c255,s4054).registration18290,505236 -registration(r13784,c74,s4054).registration18291,505269 -registration(r13784,c74,s4054).registration18291,505269 -registration(r13785,c203,s4054).registration18292,505301 -registration(r13785,c203,s4054).registration18292,505301 -registration(r13786,c223,s4054).registration18293,505334 -registration(r13786,c223,s4054).registration18293,505334 -registration(r13787,c195,s4055).registration18294,505367 -registration(r13787,c195,s4055).registration18294,505367 -registration(r13788,c4,s4055).registration18295,505400 -registration(r13788,c4,s4055).registration18295,505400 -registration(r13789,c73,s4055).registration18296,505431 -registration(r13789,c73,s4055).registration18296,505431 -registration(r13790,c67,s4056).registration18297,505463 -registration(r13790,c67,s4056).registration18297,505463 -registration(r13791,c238,s4056).registration18298,505495 -registration(r13791,c238,s4056).registration18298,505495 -registration(r13792,c251,s4056).registration18299,505528 -registration(r13792,c251,s4056).registration18299,505528 -registration(r13793,c105,s4057).registration18300,505561 -registration(r13793,c105,s4057).registration18300,505561 -registration(r13794,c95,s4057).registration18301,505594 -registration(r13794,c95,s4057).registration18301,505594 -registration(r13795,c241,s4057).registration18302,505626 -registration(r13795,c241,s4057).registration18302,505626 -registration(r13796,c255,s4058).registration18303,505659 -registration(r13796,c255,s4058).registration18303,505659 -registration(r13797,c163,s4058).registration18304,505692 -registration(r13797,c163,s4058).registration18304,505692 -registration(r13798,c247,s4058).registration18305,505725 -registration(r13798,c247,s4058).registration18305,505725 -registration(r13799,c132,s4058).registration18306,505758 -registration(r13799,c132,s4058).registration18306,505758 -registration(r13800,c145,s4059).registration18307,505791 -registration(r13800,c145,s4059).registration18307,505791 -registration(r13801,c60,s4059).registration18308,505824 -registration(r13801,c60,s4059).registration18308,505824 -registration(r13802,c71,s4059).registration18309,505856 -registration(r13802,c71,s4059).registration18309,505856 -registration(r13803,c146,s4060).registration18310,505888 -registration(r13803,c146,s4060).registration18310,505888 -registration(r13804,c9,s4060).registration18311,505921 -registration(r13804,c9,s4060).registration18311,505921 -registration(r13805,c159,s4060).registration18312,505952 -registration(r13805,c159,s4060).registration18312,505952 -registration(r13806,c98,s4061).registration18313,505985 -registration(r13806,c98,s4061).registration18313,505985 -registration(r13807,c180,s4061).registration18314,506017 -registration(r13807,c180,s4061).registration18314,506017 -registration(r13808,c49,s4061).registration18315,506050 -registration(r13808,c49,s4061).registration18315,506050 -registration(r13809,c7,s4061).registration18316,506082 -registration(r13809,c7,s4061).registration18316,506082 -registration(r13810,c252,s4062).registration18317,506113 -registration(r13810,c252,s4062).registration18317,506113 -registration(r13811,c3,s4062).registration18318,506146 -registration(r13811,c3,s4062).registration18318,506146 -registration(r13812,c193,s4062).registration18319,506177 -registration(r13812,c193,s4062).registration18319,506177 -registration(r13813,c33,s4063).registration18320,506210 -registration(r13813,c33,s4063).registration18320,506210 -registration(r13814,c142,s4063).registration18321,506242 -registration(r13814,c142,s4063).registration18321,506242 -registration(r13815,c10,s4063).registration18322,506275 -registration(r13815,c10,s4063).registration18322,506275 -registration(r13816,c174,s4064).registration18323,506307 -registration(r13816,c174,s4064).registration18323,506307 -registration(r13817,c156,s4064).registration18324,506340 -registration(r13817,c156,s4064).registration18324,506340 -registration(r13818,c24,s4064).registration18325,506373 -registration(r13818,c24,s4064).registration18325,506373 -registration(r13819,c170,s4064).registration18326,506405 -registration(r13819,c170,s4064).registration18326,506405 -registration(r13820,c25,s4065).registration18327,506438 -registration(r13820,c25,s4065).registration18327,506438 -registration(r13821,c106,s4065).registration18328,506470 -registration(r13821,c106,s4065).registration18328,506470 -registration(r13822,c231,s4065).registration18329,506503 -registration(r13822,c231,s4065).registration18329,506503 -registration(r13823,c240,s4066).registration18330,506536 -registration(r13823,c240,s4066).registration18330,506536 -registration(r13824,c245,s4066).registration18331,506569 -registration(r13824,c245,s4066).registration18331,506569 -registration(r13825,c170,s4066).registration18332,506602 -registration(r13825,c170,s4066).registration18332,506602 -registration(r13826,c96,s4067).registration18333,506635 -registration(r13826,c96,s4067).registration18333,506635 -registration(r13827,c11,s4067).registration18334,506667 -registration(r13827,c11,s4067).registration18334,506667 -registration(r13828,c102,s4067).registration18335,506699 -registration(r13828,c102,s4067).registration18335,506699 -registration(r13829,c98,s4068).registration18336,506732 -registration(r13829,c98,s4068).registration18336,506732 -registration(r13830,c108,s4068).registration18337,506764 -registration(r13830,c108,s4068).registration18337,506764 -registration(r13831,c67,s4068).registration18338,506797 -registration(r13831,c67,s4068).registration18338,506797 -registration(r13832,c101,s4069).registration18339,506829 -registration(r13832,c101,s4069).registration18339,506829 -registration(r13833,c141,s4069).registration18340,506862 -registration(r13833,c141,s4069).registration18340,506862 -registration(r13834,c227,s4069).registration18341,506895 -registration(r13834,c227,s4069).registration18341,506895 -registration(r13835,c25,s4069).registration18342,506928 -registration(r13835,c25,s4069).registration18342,506928 -registration(r13836,c167,s4070).registration18343,506960 -registration(r13836,c167,s4070).registration18343,506960 -registration(r13837,c50,s4070).registration18344,506993 -registration(r13837,c50,s4070).registration18344,506993 -registration(r13838,c110,s4070).registration18345,507025 -registration(r13838,c110,s4070).registration18345,507025 -registration(r13839,c136,s4071).registration18346,507058 -registration(r13839,c136,s4071).registration18346,507058 -registration(r13840,c52,s4071).registration18347,507091 -registration(r13840,c52,s4071).registration18347,507091 -registration(r13841,c196,s4071).registration18348,507123 -registration(r13841,c196,s4071).registration18348,507123 -registration(r13842,c180,s4071).registration18349,507156 -registration(r13842,c180,s4071).registration18349,507156 -registration(r13843,c211,s4072).registration18350,507189 -registration(r13843,c211,s4072).registration18350,507189 -registration(r13844,c221,s4072).registration18351,507222 -registration(r13844,c221,s4072).registration18351,507222 -registration(r13845,c141,s4072).registration18352,507255 -registration(r13845,c141,s4072).registration18352,507255 -registration(r13846,c61,s4072).registration18353,507288 -registration(r13846,c61,s4072).registration18353,507288 -registration(r13847,c144,s4073).registration18354,507320 -registration(r13847,c144,s4073).registration18354,507320 -registration(r13848,c166,s4073).registration18355,507353 -registration(r13848,c166,s4073).registration18355,507353 -registration(r13849,c27,s4073).registration18356,507386 -registration(r13849,c27,s4073).registration18356,507386 -registration(r13850,c95,s4073).registration18357,507418 -registration(r13850,c95,s4073).registration18357,507418 -registration(r13851,c242,s4074).registration18358,507450 -registration(r13851,c242,s4074).registration18358,507450 -registration(r13852,c233,s4074).registration18359,507483 -registration(r13852,c233,s4074).registration18359,507483 -registration(r13853,c195,s4074).registration18360,507516 -registration(r13853,c195,s4074).registration18360,507516 -registration(r13854,c207,s4075).registration18361,507549 -registration(r13854,c207,s4075).registration18361,507549 -registration(r13855,c152,s4075).registration18362,507582 -registration(r13855,c152,s4075).registration18362,507582 -registration(r13856,c94,s4075).registration18363,507615 -registration(r13856,c94,s4075).registration18363,507615 -registration(r13857,c206,s4076).registration18364,507647 -registration(r13857,c206,s4076).registration18364,507647 -registration(r13858,c64,s4076).registration18365,507680 -registration(r13858,c64,s4076).registration18365,507680 -registration(r13859,c167,s4076).registration18366,507712 -registration(r13859,c167,s4076).registration18366,507712 -registration(r13860,c108,s4077).registration18367,507745 -registration(r13860,c108,s4077).registration18367,507745 -registration(r13861,c53,s4077).registration18368,507778 -registration(r13861,c53,s4077).registration18368,507778 -registration(r13862,c167,s4077).registration18369,507810 -registration(r13862,c167,s4077).registration18369,507810 -registration(r13863,c9,s4077).registration18370,507843 -registration(r13863,c9,s4077).registration18370,507843 -registration(r13864,c176,s4078).registration18371,507874 -registration(r13864,c176,s4078).registration18371,507874 -registration(r13865,c52,s4078).registration18372,507907 -registration(r13865,c52,s4078).registration18372,507907 -registration(r13866,c194,s4078).registration18373,507939 -registration(r13866,c194,s4078).registration18373,507939 -registration(r13867,c104,s4079).registration18374,507972 -registration(r13867,c104,s4079).registration18374,507972 -registration(r13868,c101,s4079).registration18375,508005 -registration(r13868,c101,s4079).registration18375,508005 -registration(r13869,c185,s4079).registration18376,508038 -registration(r13869,c185,s4079).registration18376,508038 -registration(r13870,c170,s4080).registration18377,508071 -registration(r13870,c170,s4080).registration18377,508071 -registration(r13871,c99,s4080).registration18378,508104 -registration(r13871,c99,s4080).registration18378,508104 -registration(r13872,c138,s4080).registration18379,508136 -registration(r13872,c138,s4080).registration18379,508136 -registration(r13873,c48,s4080).registration18380,508169 -registration(r13873,c48,s4080).registration18380,508169 -registration(r13874,c193,s4081).registration18381,508201 -registration(r13874,c193,s4081).registration18381,508201 -registration(r13875,c144,s4081).registration18382,508234 -registration(r13875,c144,s4081).registration18382,508234 -registration(r13876,c209,s4081).registration18383,508267 -registration(r13876,c209,s4081).registration18383,508267 -registration(r13877,c17,s4082).registration18384,508300 -registration(r13877,c17,s4082).registration18384,508300 -registration(r13878,c54,s4082).registration18385,508332 -registration(r13878,c54,s4082).registration18385,508332 -registration(r13879,c181,s4082).registration18386,508364 -registration(r13879,c181,s4082).registration18386,508364 -registration(r13880,c234,s4083).registration18387,508397 -registration(r13880,c234,s4083).registration18387,508397 -registration(r13881,c45,s4083).registration18388,508430 -registration(r13881,c45,s4083).registration18388,508430 -registration(r13882,c195,s4083).registration18389,508462 -registration(r13882,c195,s4083).registration18389,508462 -registration(r13883,c115,s4084).registration18390,508495 -registration(r13883,c115,s4084).registration18390,508495 -registration(r13884,c40,s4084).registration18391,508528 -registration(r13884,c40,s4084).registration18391,508528 -registration(r13885,c116,s4084).registration18392,508560 -registration(r13885,c116,s4084).registration18392,508560 -registration(r13886,c219,s4085).registration18393,508593 -registration(r13886,c219,s4085).registration18393,508593 -registration(r13887,c36,s4085).registration18394,508626 -registration(r13887,c36,s4085).registration18394,508626 -registration(r13888,c166,s4085).registration18395,508658 -registration(r13888,c166,s4085).registration18395,508658 -registration(r13889,c81,s4086).registration18396,508691 -registration(r13889,c81,s4086).registration18396,508691 -registration(r13890,c185,s4086).registration18397,508723 -registration(r13890,c185,s4086).registration18397,508723 -registration(r13891,c117,s4086).registration18398,508756 -registration(r13891,c117,s4086).registration18398,508756 -registration(r13892,c207,s4087).registration18399,508789 -registration(r13892,c207,s4087).registration18399,508789 -registration(r13893,c60,s4087).registration18400,508822 -registration(r13893,c60,s4087).registration18400,508822 -registration(r13894,c122,s4087).registration18401,508854 -registration(r13894,c122,s4087).registration18401,508854 -registration(r13895,c217,s4088).registration18402,508887 -registration(r13895,c217,s4088).registration18402,508887 -registration(r13896,c177,s4088).registration18403,508920 -registration(r13896,c177,s4088).registration18403,508920 -registration(r13897,c255,s4088).registration18404,508953 -registration(r13897,c255,s4088).registration18404,508953 -registration(r13898,c161,s4089).registration18405,508986 -registration(r13898,c161,s4089).registration18405,508986 -registration(r13899,c120,s4089).registration18406,509019 -registration(r13899,c120,s4089).registration18406,509019 -registration(r13900,c101,s4089).registration18407,509052 -registration(r13900,c101,s4089).registration18407,509052 -registration(r13901,c23,s4090).registration18408,509085 -registration(r13901,c23,s4090).registration18408,509085 -registration(r13902,c217,s4090).registration18409,509117 -registration(r13902,c217,s4090).registration18409,509117 -registration(r13903,c149,s4090).registration18410,509150 -registration(r13903,c149,s4090).registration18410,509150 -registration(r13904,c131,s4091).registration18411,509183 -registration(r13904,c131,s4091).registration18411,509183 -registration(r13905,c102,s4091).registration18412,509216 -registration(r13905,c102,s4091).registration18412,509216 -registration(r13906,c188,s4091).registration18413,509249 -registration(r13906,c188,s4091).registration18413,509249 -registration(r13907,c187,s4091).registration18414,509282 -registration(r13907,c187,s4091).registration18414,509282 -registration(r13908,c123,s4092).registration18415,509315 -registration(r13908,c123,s4092).registration18415,509315 -registration(r13909,c116,s4092).registration18416,509348 -registration(r13909,c116,s4092).registration18416,509348 -registration(r13910,c27,s4092).registration18417,509381 -registration(r13910,c27,s4092).registration18417,509381 -registration(r13911,c235,s4093).registration18418,509413 -registration(r13911,c235,s4093).registration18418,509413 -registration(r13912,c51,s4093).registration18419,509446 -registration(r13912,c51,s4093).registration18419,509446 -registration(r13913,c216,s4093).registration18420,509478 -registration(r13913,c216,s4093).registration18420,509478 -registration(r13914,c178,s4094).registration18421,509511 -registration(r13914,c178,s4094).registration18421,509511 -registration(r13915,c61,s4094).registration18422,509544 -registration(r13915,c61,s4094).registration18422,509544 -registration(r13916,c252,s4094).registration18423,509576 -registration(r13916,c252,s4094).registration18423,509576 -registration(r13917,c158,s4095).registration18424,509609 -registration(r13917,c158,s4095).registration18424,509609 -registration(r13918,c186,s4095).registration18425,509642 -registration(r13918,c186,s4095).registration18425,509642 -registration(r13919,c221,s4095).registration18426,509675 -registration(r13919,c221,s4095).registration18426,509675 -registration(r13920,c39,s4095).registration18427,509708 -registration(r13920,c39,s4095).registration18427,509708 - -packages/CLPBN/examples/School/school_32.yap,110548 -total_professors(32).total_professors2,3 -total_professors(32).total_professors2,3 -total_courses(64).total_courses4,26 -total_courses(64).total_courses4,26 -total_students(256).total_students6,46 -total_students(256).total_students6,46 -professor(p0).professor21,232 -professor(p0).professor21,232 -professor(p1).professor22,247 -professor(p1).professor22,247 -professor(p2).professor23,262 -professor(p2).professor23,262 -professor(p3).professor24,277 -professor(p3).professor24,277 -professor(p4).professor25,292 -professor(p4).professor25,292 -professor(p5).professor26,307 -professor(p5).professor26,307 -professor(p6).professor27,322 -professor(p6).professor27,322 -professor(p7).professor28,337 -professor(p7).professor28,337 -professor(p8).professor29,352 -professor(p8).professor29,352 -professor(p9).professor30,367 -professor(p9).professor30,367 -professor(p10).professor31,382 -professor(p10).professor31,382 -professor(p11).professor32,398 -professor(p11).professor32,398 -professor(p12).professor33,414 -professor(p12).professor33,414 -professor(p13).professor34,430 -professor(p13).professor34,430 -professor(p14).professor35,446 -professor(p14).professor35,446 -professor(p15).professor36,462 -professor(p15).professor36,462 -professor(p16).professor37,478 -professor(p16).professor37,478 -professor(p17).professor38,494 -professor(p17).professor38,494 -professor(p18).professor39,510 -professor(p18).professor39,510 -professor(p19).professor40,526 -professor(p19).professor40,526 -professor(p20).professor41,542 -professor(p20).professor41,542 -professor(p21).professor42,558 -professor(p21).professor42,558 -professor(p22).professor43,574 -professor(p22).professor43,574 -professor(p23).professor44,590 -professor(p23).professor44,590 -professor(p24).professor45,606 -professor(p24).professor45,606 -professor(p25).professor46,622 -professor(p25).professor46,622 -professor(p26).professor47,638 -professor(p26).professor47,638 -professor(p27).professor48,654 -professor(p27).professor48,654 -professor(p28).professor49,670 -professor(p28).professor49,670 -professor(p29).professor50,686 -professor(p29).professor50,686 -professor(p30).professor51,702 -professor(p30).professor51,702 -professor(p31).professor52,718 -professor(p31).professor52,718 -course(c0,p24).course55,736 -course(c0,p24).course55,736 -course(c1,p7).course56,752 -course(c1,p7).course56,752 -course(c2,p16).course57,767 -course(c2,p16).course57,767 -course(c3,p27).course58,783 -course(c3,p27).course58,783 -course(c4,p25).course59,799 -course(c4,p25).course59,799 -course(c5,p6).course60,815 -course(c5,p6).course60,815 -course(c6,p28).course61,830 -course(c6,p28).course61,830 -course(c7,p1).course62,846 -course(c7,p1).course62,846 -course(c8,p29).course63,861 -course(c8,p29).course63,861 -course(c9,p23).course64,877 -course(c9,p23).course64,877 -course(c10,p17).course65,893 -course(c10,p17).course65,893 -course(c11,p16).course66,910 -course(c11,p16).course66,910 -course(c12,p11).course67,927 -course(c12,p11).course67,927 -course(c13,p28).course68,944 -course(c13,p28).course68,944 -course(c14,p13).course69,961 -course(c14,p13).course69,961 -course(c15,p7).course70,978 -course(c15,p7).course70,978 -course(c16,p21).course71,994 -course(c16,p21).course71,994 -course(c17,p15).course72,1011 -course(c17,p15).course72,1011 -course(c18,p8).course73,1028 -course(c18,p8).course73,1028 -course(c19,p30).course74,1044 -course(c19,p30).course74,1044 -course(c20,p1).course75,1061 -course(c20,p1).course75,1061 -course(c21,p23).course76,1077 -course(c21,p23).course76,1077 -course(c22,p11).course77,1094 -course(c22,p11).course77,1094 -course(c23,p9).course78,1111 -course(c23,p9).course78,1111 -course(c24,p0).course79,1127 -course(c24,p0).course79,1127 -course(c25,p30).course80,1143 -course(c25,p30).course80,1143 -course(c26,p15).course81,1160 -course(c26,p15).course81,1160 -course(c27,p4).course82,1177 -course(c27,p4).course82,1177 -course(c28,p26).course83,1193 -course(c28,p26).course83,1193 -course(c29,p29).course84,1210 -course(c29,p29).course84,1210 -course(c30,p31).course85,1227 -course(c30,p31).course85,1227 -course(c31,p19).course86,1244 -course(c31,p19).course86,1244 -course(c32,p5).course87,1261 -course(c32,p5).course87,1261 -course(c33,p14).course88,1277 -course(c33,p14).course88,1277 -course(c34,p14).course89,1294 -course(c34,p14).course89,1294 -course(c35,p25).course90,1311 -course(c35,p25).course90,1311 -course(c36,p21).course91,1328 -course(c36,p21).course91,1328 -course(c37,p10).course92,1345 -course(c37,p10).course92,1345 -course(c38,p2).course93,1362 -course(c38,p2).course93,1362 -course(c39,p20).course94,1378 -course(c39,p20).course94,1378 -course(c40,p3).course95,1395 -course(c40,p3).course95,1395 -course(c41,p18).course96,1411 -course(c41,p18).course96,1411 -course(c42,p9).course97,1428 -course(c42,p9).course97,1428 -course(c43,p20).course98,1444 -course(c43,p20).course98,1444 -course(c44,p17).course99,1461 -course(c44,p17).course99,1461 -course(c45,p19).course100,1478 -course(c45,p19).course100,1478 -course(c46,p6).course101,1495 -course(c46,p6).course101,1495 -course(c47,p4).course102,1511 -course(c47,p4).course102,1511 -course(c48,p12).course103,1527 -course(c48,p12).course103,1527 -course(c49,p10).course104,1544 -course(c49,p10).course104,1544 -course(c50,p2).course105,1561 -course(c50,p2).course105,1561 -course(c51,p22).course106,1577 -course(c51,p22).course106,1577 -course(c52,p31).course107,1594 -course(c52,p31).course107,1594 -course(c53,p24).course108,1611 -course(c53,p24).course108,1611 -course(c54,p0).course109,1628 -course(c54,p0).course109,1628 -course(c55,p5).course110,1644 -course(c55,p5).course110,1644 -course(c56,p22).course111,1660 -course(c56,p22).course111,1660 -course(c57,p13).course112,1677 -course(c57,p13).course112,1677 -course(c58,p18).course113,1694 -course(c58,p18).course113,1694 -course(c59,p12).course114,1711 -course(c59,p12).course114,1711 -course(c60,p27).course115,1728 -course(c60,p27).course115,1728 -course(c61,p3).course116,1745 -course(c61,p3).course116,1745 -course(c62,p8).course117,1761 -course(c62,p8).course117,1761 -course(c63,p26).course118,1777 -course(c63,p26).course118,1777 -student(s0).student121,1796 -student(s0).student121,1796 -student(s1).student122,1809 -student(s1).student122,1809 -student(s2).student123,1822 -student(s2).student123,1822 -student(s3).student124,1835 -student(s3).student124,1835 -student(s4).student125,1848 -student(s4).student125,1848 -student(s5).student126,1861 -student(s5).student126,1861 -student(s6).student127,1874 -student(s6).student127,1874 -student(s7).student128,1887 -student(s7).student128,1887 -student(s8).student129,1900 -student(s8).student129,1900 -student(s9).student130,1913 -student(s9).student130,1913 -student(s10).student131,1926 -student(s10).student131,1926 -student(s11).student132,1940 -student(s11).student132,1940 -student(s12).student133,1954 -student(s12).student133,1954 -student(s13).student134,1968 -student(s13).student134,1968 -student(s14).student135,1982 -student(s14).student135,1982 -student(s15).student136,1996 -student(s15).student136,1996 -student(s16).student137,2010 -student(s16).student137,2010 -student(s17).student138,2024 -student(s17).student138,2024 -student(s18).student139,2038 -student(s18).student139,2038 -student(s19).student140,2052 -student(s19).student140,2052 -student(s20).student141,2066 -student(s20).student141,2066 -student(s21).student142,2080 -student(s21).student142,2080 -student(s22).student143,2094 -student(s22).student143,2094 -student(s23).student144,2108 -student(s23).student144,2108 -student(s24).student145,2122 -student(s24).student145,2122 -student(s25).student146,2136 -student(s25).student146,2136 -student(s26).student147,2150 -student(s26).student147,2150 -student(s27).student148,2164 -student(s27).student148,2164 -student(s28).student149,2178 -student(s28).student149,2178 -student(s29).student150,2192 -student(s29).student150,2192 -student(s30).student151,2206 -student(s30).student151,2206 -student(s31).student152,2220 -student(s31).student152,2220 -student(s32).student153,2234 -student(s32).student153,2234 -student(s33).student154,2248 -student(s33).student154,2248 -student(s34).student155,2262 -student(s34).student155,2262 -student(s35).student156,2276 -student(s35).student156,2276 -student(s36).student157,2290 -student(s36).student157,2290 -student(s37).student158,2304 -student(s37).student158,2304 -student(s38).student159,2318 -student(s38).student159,2318 -student(s39).student160,2332 -student(s39).student160,2332 -student(s40).student161,2346 -student(s40).student161,2346 -student(s41).student162,2360 -student(s41).student162,2360 -student(s42).student163,2374 -student(s42).student163,2374 -student(s43).student164,2388 -student(s43).student164,2388 -student(s44).student165,2402 -student(s44).student165,2402 -student(s45).student166,2416 -student(s45).student166,2416 -student(s46).student167,2430 -student(s46).student167,2430 -student(s47).student168,2444 -student(s47).student168,2444 -student(s48).student169,2458 -student(s48).student169,2458 -student(s49).student170,2472 -student(s49).student170,2472 -student(s50).student171,2486 -student(s50).student171,2486 -student(s51).student172,2500 -student(s51).student172,2500 -student(s52).student173,2514 -student(s52).student173,2514 -student(s53).student174,2528 -student(s53).student174,2528 -student(s54).student175,2542 -student(s54).student175,2542 -student(s55).student176,2556 -student(s55).student176,2556 -student(s56).student177,2570 -student(s56).student177,2570 -student(s57).student178,2584 -student(s57).student178,2584 -student(s58).student179,2598 -student(s58).student179,2598 -student(s59).student180,2612 -student(s59).student180,2612 -student(s60).student181,2626 -student(s60).student181,2626 -student(s61).student182,2640 -student(s61).student182,2640 -student(s62).student183,2654 -student(s62).student183,2654 -student(s63).student184,2668 -student(s63).student184,2668 -student(s64).student185,2682 -student(s64).student185,2682 -student(s65).student186,2696 -student(s65).student186,2696 -student(s66).student187,2710 -student(s66).student187,2710 -student(s67).student188,2724 -student(s67).student188,2724 -student(s68).student189,2738 -student(s68).student189,2738 -student(s69).student190,2752 -student(s69).student190,2752 -student(s70).student191,2766 -student(s70).student191,2766 -student(s71).student192,2780 -student(s71).student192,2780 -student(s72).student193,2794 -student(s72).student193,2794 -student(s73).student194,2808 -student(s73).student194,2808 -student(s74).student195,2822 -student(s74).student195,2822 -student(s75).student196,2836 -student(s75).student196,2836 -student(s76).student197,2850 -student(s76).student197,2850 -student(s77).student198,2864 -student(s77).student198,2864 -student(s78).student199,2878 -student(s78).student199,2878 -student(s79).student200,2892 -student(s79).student200,2892 -student(s80).student201,2906 -student(s80).student201,2906 -student(s81).student202,2920 -student(s81).student202,2920 -student(s82).student203,2934 -student(s82).student203,2934 -student(s83).student204,2948 -student(s83).student204,2948 -student(s84).student205,2962 -student(s84).student205,2962 -student(s85).student206,2976 -student(s85).student206,2976 -student(s86).student207,2990 -student(s86).student207,2990 -student(s87).student208,3004 -student(s87).student208,3004 -student(s88).student209,3018 -student(s88).student209,3018 -student(s89).student210,3032 -student(s89).student210,3032 -student(s90).student211,3046 -student(s90).student211,3046 -student(s91).student212,3060 -student(s91).student212,3060 -student(s92).student213,3074 -student(s92).student213,3074 -student(s93).student214,3088 -student(s93).student214,3088 -student(s94).student215,3102 -student(s94).student215,3102 -student(s95).student216,3116 -student(s95).student216,3116 -student(s96).student217,3130 -student(s96).student217,3130 -student(s97).student218,3144 -student(s97).student218,3144 -student(s98).student219,3158 -student(s98).student219,3158 -student(s99).student220,3172 -student(s99).student220,3172 -student(s100).student221,3186 -student(s100).student221,3186 -student(s101).student222,3201 -student(s101).student222,3201 -student(s102).student223,3216 -student(s102).student223,3216 -student(s103).student224,3231 -student(s103).student224,3231 -student(s104).student225,3246 -student(s104).student225,3246 -student(s105).student226,3261 -student(s105).student226,3261 -student(s106).student227,3276 -student(s106).student227,3276 -student(s107).student228,3291 -student(s107).student228,3291 -student(s108).student229,3306 -student(s108).student229,3306 -student(s109).student230,3321 -student(s109).student230,3321 -student(s110).student231,3336 -student(s110).student231,3336 -student(s111).student232,3351 -student(s111).student232,3351 -student(s112).student233,3366 -student(s112).student233,3366 -student(s113).student234,3381 -student(s113).student234,3381 -student(s114).student235,3396 -student(s114).student235,3396 -student(s115).student236,3411 -student(s115).student236,3411 -student(s116).student237,3426 -student(s116).student237,3426 -student(s117).student238,3441 -student(s117).student238,3441 -student(s118).student239,3456 -student(s118).student239,3456 -student(s119).student240,3471 -student(s119).student240,3471 -student(s120).student241,3486 -student(s120).student241,3486 -student(s121).student242,3501 -student(s121).student242,3501 -student(s122).student243,3516 -student(s122).student243,3516 -student(s123).student244,3531 -student(s123).student244,3531 -student(s124).student245,3546 -student(s124).student245,3546 -student(s125).student246,3561 -student(s125).student246,3561 -student(s126).student247,3576 -student(s126).student247,3576 -student(s127).student248,3591 -student(s127).student248,3591 -student(s128).student249,3606 -student(s128).student249,3606 -student(s129).student250,3621 -student(s129).student250,3621 -student(s130).student251,3636 -student(s130).student251,3636 -student(s131).student252,3651 -student(s131).student252,3651 -student(s132).student253,3666 -student(s132).student253,3666 -student(s133).student254,3681 -student(s133).student254,3681 -student(s134).student255,3696 -student(s134).student255,3696 -student(s135).student256,3711 -student(s135).student256,3711 -student(s136).student257,3726 -student(s136).student257,3726 -student(s137).student258,3741 -student(s137).student258,3741 -student(s138).student259,3756 -student(s138).student259,3756 -student(s139).student260,3771 -student(s139).student260,3771 -student(s140).student261,3786 -student(s140).student261,3786 -student(s141).student262,3801 -student(s141).student262,3801 -student(s142).student263,3816 -student(s142).student263,3816 -student(s143).student264,3831 -student(s143).student264,3831 -student(s144).student265,3846 -student(s144).student265,3846 -student(s145).student266,3861 -student(s145).student266,3861 -student(s146).student267,3876 -student(s146).student267,3876 -student(s147).student268,3891 -student(s147).student268,3891 -student(s148).student269,3906 -student(s148).student269,3906 -student(s149).student270,3921 -student(s149).student270,3921 -student(s150).student271,3936 -student(s150).student271,3936 -student(s151).student272,3951 -student(s151).student272,3951 -student(s152).student273,3966 -student(s152).student273,3966 -student(s153).student274,3981 -student(s153).student274,3981 -student(s154).student275,3996 -student(s154).student275,3996 -student(s155).student276,4011 -student(s155).student276,4011 -student(s156).student277,4026 -student(s156).student277,4026 -student(s157).student278,4041 -student(s157).student278,4041 -student(s158).student279,4056 -student(s158).student279,4056 -student(s159).student280,4071 -student(s159).student280,4071 -student(s160).student281,4086 -student(s160).student281,4086 -student(s161).student282,4101 -student(s161).student282,4101 -student(s162).student283,4116 -student(s162).student283,4116 -student(s163).student284,4131 -student(s163).student284,4131 -student(s164).student285,4146 -student(s164).student285,4146 -student(s165).student286,4161 -student(s165).student286,4161 -student(s166).student287,4176 -student(s166).student287,4176 -student(s167).student288,4191 -student(s167).student288,4191 -student(s168).student289,4206 -student(s168).student289,4206 -student(s169).student290,4221 -student(s169).student290,4221 -student(s170).student291,4236 -student(s170).student291,4236 -student(s171).student292,4251 -student(s171).student292,4251 -student(s172).student293,4266 -student(s172).student293,4266 -student(s173).student294,4281 -student(s173).student294,4281 -student(s174).student295,4296 -student(s174).student295,4296 -student(s175).student296,4311 -student(s175).student296,4311 -student(s176).student297,4326 -student(s176).student297,4326 -student(s177).student298,4341 -student(s177).student298,4341 -student(s178).student299,4356 -student(s178).student299,4356 -student(s179).student300,4371 -student(s179).student300,4371 -student(s180).student301,4386 -student(s180).student301,4386 -student(s181).student302,4401 -student(s181).student302,4401 -student(s182).student303,4416 -student(s182).student303,4416 -student(s183).student304,4431 -student(s183).student304,4431 -student(s184).student305,4446 -student(s184).student305,4446 -student(s185).student306,4461 -student(s185).student306,4461 -student(s186).student307,4476 -student(s186).student307,4476 -student(s187).student308,4491 -student(s187).student308,4491 -student(s188).student309,4506 -student(s188).student309,4506 -student(s189).student310,4521 -student(s189).student310,4521 -student(s190).student311,4536 -student(s190).student311,4536 -student(s191).student312,4551 -student(s191).student312,4551 -student(s192).student313,4566 -student(s192).student313,4566 -student(s193).student314,4581 -student(s193).student314,4581 -student(s194).student315,4596 -student(s194).student315,4596 -student(s195).student316,4611 -student(s195).student316,4611 -student(s196).student317,4626 -student(s196).student317,4626 -student(s197).student318,4641 -student(s197).student318,4641 -student(s198).student319,4656 -student(s198).student319,4656 -student(s199).student320,4671 -student(s199).student320,4671 -student(s200).student321,4686 -student(s200).student321,4686 -student(s201).student322,4701 -student(s201).student322,4701 -student(s202).student323,4716 -student(s202).student323,4716 -student(s203).student324,4731 -student(s203).student324,4731 -student(s204).student325,4746 -student(s204).student325,4746 -student(s205).student326,4761 -student(s205).student326,4761 -student(s206).student327,4776 -student(s206).student327,4776 -student(s207).student328,4791 -student(s207).student328,4791 -student(s208).student329,4806 -student(s208).student329,4806 -student(s209).student330,4821 -student(s209).student330,4821 -student(s210).student331,4836 -student(s210).student331,4836 -student(s211).student332,4851 -student(s211).student332,4851 -student(s212).student333,4866 -student(s212).student333,4866 -student(s213).student334,4881 -student(s213).student334,4881 -student(s214).student335,4896 -student(s214).student335,4896 -student(s215).student336,4911 -student(s215).student336,4911 -student(s216).student337,4926 -student(s216).student337,4926 -student(s217).student338,4941 -student(s217).student338,4941 -student(s218).student339,4956 -student(s218).student339,4956 -student(s219).student340,4971 -student(s219).student340,4971 -student(s220).student341,4986 -student(s220).student341,4986 -student(s221).student342,5001 -student(s221).student342,5001 -student(s222).student343,5016 -student(s222).student343,5016 -student(s223).student344,5031 -student(s223).student344,5031 -student(s224).student345,5046 -student(s224).student345,5046 -student(s225).student346,5061 -student(s225).student346,5061 -student(s226).student347,5076 -student(s226).student347,5076 -student(s227).student348,5091 -student(s227).student348,5091 -student(s228).student349,5106 -student(s228).student349,5106 -student(s229).student350,5121 -student(s229).student350,5121 -student(s230).student351,5136 -student(s230).student351,5136 -student(s231).student352,5151 -student(s231).student352,5151 -student(s232).student353,5166 -student(s232).student353,5166 -student(s233).student354,5181 -student(s233).student354,5181 -student(s234).student355,5196 -student(s234).student355,5196 -student(s235).student356,5211 -student(s235).student356,5211 -student(s236).student357,5226 -student(s236).student357,5226 -student(s237).student358,5241 -student(s237).student358,5241 -student(s238).student359,5256 -student(s238).student359,5256 -student(s239).student360,5271 -student(s239).student360,5271 -student(s240).student361,5286 -student(s240).student361,5286 -student(s241).student362,5301 -student(s241).student362,5301 -student(s242).student363,5316 -student(s242).student363,5316 -student(s243).student364,5331 -student(s243).student364,5331 -student(s244).student365,5346 -student(s244).student365,5346 -student(s245).student366,5361 -student(s245).student366,5361 -student(s246).student367,5376 -student(s246).student367,5376 -student(s247).student368,5391 -student(s247).student368,5391 -student(s248).student369,5406 -student(s248).student369,5406 -student(s249).student370,5421 -student(s249).student370,5421 -student(s250).student371,5436 -student(s250).student371,5436 -student(s251).student372,5451 -student(s251).student372,5451 -student(s252).student373,5466 -student(s252).student373,5466 -student(s253).student374,5481 -student(s253).student374,5481 -student(s254).student375,5496 -student(s254).student375,5496 -student(s255).student376,5511 -student(s255).student376,5511 -registration(r0,c16,s0).registration379,5528 -registration(r0,c16,s0).registration379,5528 -registration(r1,c10,s0).registration380,5553 -registration(r1,c10,s0).registration380,5553 -registration(r2,c57,s0).registration381,5578 -registration(r2,c57,s0).registration381,5578 -registration(r3,c22,s1).registration382,5603 -registration(r3,c22,s1).registration382,5603 -registration(r4,c55,s1).registration383,5628 -registration(r4,c55,s1).registration383,5628 -registration(r5,c27,s1).registration384,5653 -registration(r5,c27,s1).registration384,5653 -registration(r6,c14,s2).registration385,5678 -registration(r6,c14,s2).registration385,5678 -registration(r7,c52,s2).registration386,5703 -registration(r7,c52,s2).registration386,5703 -registration(r8,c10,s2).registration387,5728 -registration(r8,c10,s2).registration387,5728 -registration(r9,c47,s3).registration388,5753 -registration(r9,c47,s3).registration388,5753 -registration(r10,c16,s3).registration389,5778 -registration(r10,c16,s3).registration389,5778 -registration(r11,c62,s3).registration390,5804 -registration(r11,c62,s3).registration390,5804 -registration(r12,c12,s4).registration391,5830 -registration(r12,c12,s4).registration391,5830 -registration(r13,c11,s4).registration392,5856 -registration(r13,c11,s4).registration392,5856 -registration(r14,c17,s4).registration393,5882 -registration(r14,c17,s4).registration393,5882 -registration(r15,c52,s5).registration394,5908 -registration(r15,c52,s5).registration394,5908 -registration(r16,c1,s5).registration395,5934 -registration(r16,c1,s5).registration395,5934 -registration(r17,c35,s5).registration396,5959 -registration(r17,c35,s5).registration396,5959 -registration(r18,c0,s6).registration397,5985 -registration(r18,c0,s6).registration397,5985 -registration(r19,c7,s6).registration398,6010 -registration(r19,c7,s6).registration398,6010 -registration(r20,c40,s6).registration399,6035 -registration(r20,c40,s6).registration399,6035 -registration(r21,c62,s7).registration400,6061 -registration(r21,c62,s7).registration400,6061 -registration(r22,c16,s7).registration401,6087 -registration(r22,c16,s7).registration401,6087 -registration(r23,c34,s7).registration402,6113 -registration(r23,c34,s7).registration402,6113 -registration(r24,c60,s8).registration403,6139 -registration(r24,c60,s8).registration403,6139 -registration(r25,c39,s8).registration404,6165 -registration(r25,c39,s8).registration404,6165 -registration(r26,c43,s8).registration405,6191 -registration(r26,c43,s8).registration405,6191 -registration(r27,c17,s8).registration406,6217 -registration(r27,c17,s8).registration406,6217 -registration(r28,c55,s9).registration407,6243 -registration(r28,c55,s9).registration407,6243 -registration(r29,c34,s9).registration408,6269 -registration(r29,c34,s9).registration408,6269 -registration(r30,c35,s9).registration409,6295 -registration(r30,c35,s9).registration409,6295 -registration(r31,c48,s10).registration410,6321 -registration(r31,c48,s10).registration410,6321 -registration(r32,c60,s10).registration411,6348 -registration(r32,c60,s10).registration411,6348 -registration(r33,c2,s10).registration412,6375 -registration(r33,c2,s10).registration412,6375 -registration(r34,c54,s11).registration413,6401 -registration(r34,c54,s11).registration413,6401 -registration(r35,c42,s11).registration414,6428 -registration(r35,c42,s11).registration414,6428 -registration(r36,c9,s11).registration415,6455 -registration(r36,c9,s11).registration415,6455 -registration(r37,c11,s11).registration416,6481 -registration(r37,c11,s11).registration416,6481 -registration(r38,c51,s12).registration417,6508 -registration(r38,c51,s12).registration417,6508 -registration(r39,c47,s12).registration418,6535 -registration(r39,c47,s12).registration418,6535 -registration(r40,c4,s12).registration419,6562 -registration(r40,c4,s12).registration419,6562 -registration(r41,c20,s13).registration420,6588 -registration(r41,c20,s13).registration420,6588 -registration(r42,c0,s13).registration421,6615 -registration(r42,c0,s13).registration421,6615 -registration(r43,c9,s13).registration422,6641 -registration(r43,c9,s13).registration422,6641 -registration(r44,c61,s13).registration423,6667 -registration(r44,c61,s13).registration423,6667 -registration(r45,c55,s14).registration424,6694 -registration(r45,c55,s14).registration424,6694 -registration(r46,c5,s14).registration425,6721 -registration(r46,c5,s14).registration425,6721 -registration(r47,c3,s14).registration426,6747 -registration(r47,c3,s14).registration426,6747 -registration(r48,c38,s15).registration427,6773 -registration(r48,c38,s15).registration427,6773 -registration(r49,c1,s15).registration428,6800 -registration(r49,c1,s15).registration428,6800 -registration(r50,c46,s15).registration429,6826 -registration(r50,c46,s15).registration429,6826 -registration(r51,c42,s16).registration430,6853 -registration(r51,c42,s16).registration430,6853 -registration(r52,c27,s16).registration431,6880 -registration(r52,c27,s16).registration431,6880 -registration(r53,c26,s16).registration432,6907 -registration(r53,c26,s16).registration432,6907 -registration(r54,c6,s17).registration433,6934 -registration(r54,c6,s17).registration433,6934 -registration(r55,c27,s17).registration434,6960 -registration(r55,c27,s17).registration434,6960 -registration(r56,c0,s17).registration435,6987 -registration(r56,c0,s17).registration435,6987 -registration(r57,c51,s18).registration436,7013 -registration(r57,c51,s18).registration436,7013 -registration(r58,c63,s18).registration437,7040 -registration(r58,c63,s18).registration437,7040 -registration(r59,c41,s18).registration438,7067 -registration(r59,c41,s18).registration438,7067 -registration(r60,c63,s19).registration439,7094 -registration(r60,c63,s19).registration439,7094 -registration(r61,c18,s19).registration440,7121 -registration(r61,c18,s19).registration440,7121 -registration(r62,c54,s19).registration441,7148 -registration(r62,c54,s19).registration441,7148 -registration(r63,c15,s19).registration442,7175 -registration(r63,c15,s19).registration442,7175 -registration(r64,c3,s20).registration443,7202 -registration(r64,c3,s20).registration443,7202 -registration(r65,c22,s20).registration444,7228 -registration(r65,c22,s20).registration444,7228 -registration(r66,c43,s20).registration445,7255 -registration(r66,c43,s20).registration445,7255 -registration(r67,c17,s21).registration446,7282 -registration(r67,c17,s21).registration446,7282 -registration(r68,c34,s21).registration447,7309 -registration(r68,c34,s21).registration447,7309 -registration(r69,c0,s21).registration448,7336 -registration(r69,c0,s21).registration448,7336 -registration(r70,c42,s22).registration449,7362 -registration(r70,c42,s22).registration449,7362 -registration(r71,c7,s22).registration450,7389 -registration(r71,c7,s22).registration450,7389 -registration(r72,c46,s22).registration451,7415 -registration(r72,c46,s22).registration451,7415 -registration(r73,c52,s23).registration452,7442 -registration(r73,c52,s23).registration452,7442 -registration(r74,c21,s23).registration453,7469 -registration(r74,c21,s23).registration453,7469 -registration(r75,c27,s23).registration454,7496 -registration(r75,c27,s23).registration454,7496 -registration(r76,c60,s23).registration455,7523 -registration(r76,c60,s23).registration455,7523 -registration(r77,c2,s24).registration456,7550 -registration(r77,c2,s24).registration456,7550 -registration(r78,c38,s24).registration457,7576 -registration(r78,c38,s24).registration457,7576 -registration(r79,c32,s24).registration458,7603 -registration(r79,c32,s24).registration458,7603 -registration(r80,c51,s25).registration459,7630 -registration(r80,c51,s25).registration459,7630 -registration(r81,c39,s25).registration460,7657 -registration(r81,c39,s25).registration460,7657 -registration(r82,c49,s25).registration461,7684 -registration(r82,c49,s25).registration461,7684 -registration(r83,c15,s25).registration462,7711 -registration(r83,c15,s25).registration462,7711 -registration(r84,c25,s26).registration463,7738 -registration(r84,c25,s26).registration463,7738 -registration(r85,c59,s26).registration464,7765 -registration(r85,c59,s26).registration464,7765 -registration(r86,c21,s26).registration465,7792 -registration(r86,c21,s26).registration465,7792 -registration(r87,c56,s27).registration466,7819 -registration(r87,c56,s27).registration466,7819 -registration(r88,c43,s27).registration467,7846 -registration(r88,c43,s27).registration467,7846 -registration(r89,c55,s27).registration468,7873 -registration(r89,c55,s27).registration468,7873 -registration(r90,c21,s27).registration469,7900 -registration(r90,c21,s27).registration469,7900 -registration(r91,c57,s28).registration470,7927 -registration(r91,c57,s28).registration470,7927 -registration(r92,c17,s28).registration471,7954 -registration(r92,c17,s28).registration471,7954 -registration(r93,c26,s28).registration472,7981 -registration(r93,c26,s28).registration472,7981 -registration(r94,c53,s29).registration473,8008 -registration(r94,c53,s29).registration473,8008 -registration(r95,c48,s29).registration474,8035 -registration(r95,c48,s29).registration474,8035 -registration(r96,c34,s29).registration475,8062 -registration(r96,c34,s29).registration475,8062 -registration(r97,c50,s29).registration476,8089 -registration(r97,c50,s29).registration476,8089 -registration(r98,c35,s29).registration477,8116 -registration(r98,c35,s29).registration477,8116 -registration(r99,c36,s30).registration478,8143 -registration(r99,c36,s30).registration478,8143 -registration(r100,c48,s30).registration479,8170 -registration(r100,c48,s30).registration479,8170 -registration(r101,c23,s30).registration480,8198 -registration(r101,c23,s30).registration480,8198 -registration(r102,c33,s30).registration481,8226 -registration(r102,c33,s30).registration481,8226 -registration(r103,c28,s31).registration482,8254 -registration(r103,c28,s31).registration482,8254 -registration(r104,c23,s31).registration483,8282 -registration(r104,c23,s31).registration483,8282 -registration(r105,c53,s31).registration484,8310 -registration(r105,c53,s31).registration484,8310 -registration(r106,c32,s32).registration485,8338 -registration(r106,c32,s32).registration485,8338 -registration(r107,c37,s32).registration486,8366 -registration(r107,c37,s32).registration486,8366 -registration(r108,c38,s32).registration487,8394 -registration(r108,c38,s32).registration487,8394 -registration(r109,c27,s32).registration488,8422 -registration(r109,c27,s32).registration488,8422 -registration(r110,c34,s33).registration489,8450 -registration(r110,c34,s33).registration489,8450 -registration(r111,c28,s33).registration490,8478 -registration(r111,c28,s33).registration490,8478 -registration(r112,c43,s33).registration491,8506 -registration(r112,c43,s33).registration491,8506 -registration(r113,c24,s34).registration492,8534 -registration(r113,c24,s34).registration492,8534 -registration(r114,c28,s34).registration493,8562 -registration(r114,c28,s34).registration493,8562 -registration(r115,c45,s34).registration494,8590 -registration(r115,c45,s34).registration494,8590 -registration(r116,c63,s34).registration495,8618 -registration(r116,c63,s34).registration495,8618 -registration(r117,c60,s35).registration496,8646 -registration(r117,c60,s35).registration496,8646 -registration(r118,c9,s35).registration497,8674 -registration(r118,c9,s35).registration497,8674 -registration(r119,c22,s35).registration498,8701 -registration(r119,c22,s35).registration498,8701 -registration(r120,c46,s36).registration499,8729 -registration(r120,c46,s36).registration499,8729 -registration(r121,c44,s36).registration500,8757 -registration(r121,c44,s36).registration500,8757 -registration(r122,c26,s36).registration501,8785 -registration(r122,c26,s36).registration501,8785 -registration(r123,c9,s36).registration502,8813 -registration(r123,c9,s36).registration502,8813 -registration(r124,c62,s37).registration503,8840 -registration(r124,c62,s37).registration503,8840 -registration(r125,c33,s37).registration504,8868 -registration(r125,c33,s37).registration504,8868 -registration(r126,c31,s37).registration505,8896 -registration(r126,c31,s37).registration505,8896 -registration(r127,c6,s37).registration506,8924 -registration(r127,c6,s37).registration506,8924 -registration(r128,c43,s38).registration507,8951 -registration(r128,c43,s38).registration507,8951 -registration(r129,c35,s38).registration508,8979 -registration(r129,c35,s38).registration508,8979 -registration(r130,c56,s38).registration509,9007 -registration(r130,c56,s38).registration509,9007 -registration(r131,c32,s38).registration510,9035 -registration(r131,c32,s38).registration510,9035 -registration(r132,c2,s39).registration511,9063 -registration(r132,c2,s39).registration511,9063 -registration(r133,c56,s39).registration512,9090 -registration(r133,c56,s39).registration512,9090 -registration(r134,c58,s39).registration513,9118 -registration(r134,c58,s39).registration513,9118 -registration(r135,c3,s40).registration514,9146 -registration(r135,c3,s40).registration514,9146 -registration(r136,c29,s40).registration515,9173 -registration(r136,c29,s40).registration515,9173 -registration(r137,c22,s40).registration516,9201 -registration(r137,c22,s40).registration516,9201 -registration(r138,c39,s40).registration517,9229 -registration(r138,c39,s40).registration517,9229 -registration(r139,c32,s41).registration518,9257 -registration(r139,c32,s41).registration518,9257 -registration(r140,c31,s41).registration519,9285 -registration(r140,c31,s41).registration519,9285 -registration(r141,c25,s41).registration520,9313 -registration(r141,c25,s41).registration520,9313 -registration(r142,c36,s42).registration521,9341 -registration(r142,c36,s42).registration521,9341 -registration(r143,c24,s42).registration522,9369 -registration(r143,c24,s42).registration522,9369 -registration(r144,c47,s42).registration523,9397 -registration(r144,c47,s42).registration523,9397 -registration(r145,c15,s43).registration524,9425 -registration(r145,c15,s43).registration524,9425 -registration(r146,c1,s43).registration525,9453 -registration(r146,c1,s43).registration525,9453 -registration(r147,c2,s43).registration526,9480 -registration(r147,c2,s43).registration526,9480 -registration(r148,c37,s44).registration527,9507 -registration(r148,c37,s44).registration527,9507 -registration(r149,c14,s44).registration528,9535 -registration(r149,c14,s44).registration528,9535 -registration(r150,c60,s44).registration529,9563 -registration(r150,c60,s44).registration529,9563 -registration(r151,c62,s45).registration530,9591 -registration(r151,c62,s45).registration530,9591 -registration(r152,c29,s45).registration531,9619 -registration(r152,c29,s45).registration531,9619 -registration(r153,c43,s45).registration532,9647 -registration(r153,c43,s45).registration532,9647 -registration(r154,c46,s45).registration533,9675 -registration(r154,c46,s45).registration533,9675 -registration(r155,c57,s46).registration534,9703 -registration(r155,c57,s46).registration534,9703 -registration(r156,c25,s46).registration535,9731 -registration(r156,c25,s46).registration535,9731 -registration(r157,c46,s46).registration536,9759 -registration(r157,c46,s46).registration536,9759 -registration(r158,c15,s46).registration537,9787 -registration(r158,c15,s46).registration537,9787 -registration(r159,c0,s47).registration538,9815 -registration(r159,c0,s47).registration538,9815 -registration(r160,c33,s47).registration539,9842 -registration(r160,c33,s47).registration539,9842 -registration(r161,c30,s47).registration540,9870 -registration(r161,c30,s47).registration540,9870 -registration(r162,c55,s47).registration541,9898 -registration(r162,c55,s47).registration541,9898 -registration(r163,c43,s48).registration542,9926 -registration(r163,c43,s48).registration542,9926 -registration(r164,c38,s48).registration543,9954 -registration(r164,c38,s48).registration543,9954 -registration(r165,c50,s48).registration544,9982 -registration(r165,c50,s48).registration544,9982 -registration(r166,c51,s49).registration545,10010 -registration(r166,c51,s49).registration545,10010 -registration(r167,c17,s49).registration546,10038 -registration(r167,c17,s49).registration546,10038 -registration(r168,c23,s49).registration547,10066 -registration(r168,c23,s49).registration547,10066 -registration(r169,c18,s50).registration548,10094 -registration(r169,c18,s50).registration548,10094 -registration(r170,c63,s50).registration549,10122 -registration(r170,c63,s50).registration549,10122 -registration(r171,c16,s50).registration550,10150 -registration(r171,c16,s50).registration550,10150 -registration(r172,c60,s51).registration551,10178 -registration(r172,c60,s51).registration551,10178 -registration(r173,c44,s51).registration552,10206 -registration(r173,c44,s51).registration552,10206 -registration(r174,c32,s51).registration553,10234 -registration(r174,c32,s51).registration553,10234 -registration(r175,c59,s52).registration554,10262 -registration(r175,c59,s52).registration554,10262 -registration(r176,c26,s52).registration555,10290 -registration(r176,c26,s52).registration555,10290 -registration(r177,c7,s52).registration556,10318 -registration(r177,c7,s52).registration556,10318 -registration(r178,c42,s52).registration557,10345 -registration(r178,c42,s52).registration557,10345 -registration(r179,c33,s52).registration558,10373 -registration(r179,c33,s52).registration558,10373 -registration(r180,c9,s53).registration559,10401 -registration(r180,c9,s53).registration559,10401 -registration(r181,c5,s53).registration560,10428 -registration(r181,c5,s53).registration560,10428 -registration(r182,c39,s53).registration561,10455 -registration(r182,c39,s53).registration561,10455 -registration(r183,c49,s53).registration562,10483 -registration(r183,c49,s53).registration562,10483 -registration(r184,c50,s54).registration563,10511 -registration(r184,c50,s54).registration563,10511 -registration(r185,c43,s54).registration564,10539 -registration(r185,c43,s54).registration564,10539 -registration(r186,c55,s54).registration565,10567 -registration(r186,c55,s54).registration565,10567 -registration(r187,c14,s55).registration566,10595 -registration(r187,c14,s55).registration566,10595 -registration(r188,c0,s55).registration567,10623 -registration(r188,c0,s55).registration567,10623 -registration(r189,c31,s55).registration568,10650 -registration(r189,c31,s55).registration568,10650 -registration(r190,c47,s55).registration569,10678 -registration(r190,c47,s55).registration569,10678 -registration(r191,c50,s56).registration570,10706 -registration(r191,c50,s56).registration570,10706 -registration(r192,c29,s56).registration571,10734 -registration(r192,c29,s56).registration571,10734 -registration(r193,c42,s56).registration572,10762 -registration(r193,c42,s56).registration572,10762 -registration(r194,c22,s57).registration573,10790 -registration(r194,c22,s57).registration573,10790 -registration(r195,c7,s57).registration574,10818 -registration(r195,c7,s57).registration574,10818 -registration(r196,c59,s57).registration575,10845 -registration(r196,c59,s57).registration575,10845 -registration(r197,c60,s58).registration576,10873 -registration(r197,c60,s58).registration576,10873 -registration(r198,c26,s58).registration577,10901 -registration(r198,c26,s58).registration577,10901 -registration(r199,c23,s58).registration578,10929 -registration(r199,c23,s58).registration578,10929 -registration(r200,c29,s59).registration579,10957 -registration(r200,c29,s59).registration579,10957 -registration(r201,c4,s59).registration580,10985 -registration(r201,c4,s59).registration580,10985 -registration(r202,c38,s59).registration581,11012 -registration(r202,c38,s59).registration581,11012 -registration(r203,c24,s60).registration582,11040 -registration(r203,c24,s60).registration582,11040 -registration(r204,c59,s60).registration583,11068 -registration(r204,c59,s60).registration583,11068 -registration(r205,c9,s60).registration584,11096 -registration(r205,c9,s60).registration584,11096 -registration(r206,c23,s61).registration585,11123 -registration(r206,c23,s61).registration585,11123 -registration(r207,c63,s61).registration586,11151 -registration(r207,c63,s61).registration586,11151 -registration(r208,c22,s61).registration587,11179 -registration(r208,c22,s61).registration587,11179 -registration(r209,c6,s62).registration588,11207 -registration(r209,c6,s62).registration588,11207 -registration(r210,c43,s62).registration589,11234 -registration(r210,c43,s62).registration589,11234 -registration(r211,c30,s62).registration590,11262 -registration(r211,c30,s62).registration590,11262 -registration(r212,c29,s62).registration591,11290 -registration(r212,c29,s62).registration591,11290 -registration(r213,c7,s63).registration592,11318 -registration(r213,c7,s63).registration592,11318 -registration(r214,c19,s63).registration593,11345 -registration(r214,c19,s63).registration593,11345 -registration(r215,c25,s63).registration594,11373 -registration(r215,c25,s63).registration594,11373 -registration(r216,c20,s64).registration595,11401 -registration(r216,c20,s64).registration595,11401 -registration(r217,c19,s64).registration596,11429 -registration(r217,c19,s64).registration596,11429 -registration(r218,c57,s64).registration597,11457 -registration(r218,c57,s64).registration597,11457 -registration(r219,c22,s65).registration598,11485 -registration(r219,c22,s65).registration598,11485 -registration(r220,c55,s65).registration599,11513 -registration(r220,c55,s65).registration599,11513 -registration(r221,c30,s65).registration600,11541 -registration(r221,c30,s65).registration600,11541 -registration(r222,c53,s65).registration601,11569 -registration(r222,c53,s65).registration601,11569 -registration(r223,c32,s66).registration602,11597 -registration(r223,c32,s66).registration602,11597 -registration(r224,c19,s66).registration603,11625 -registration(r224,c19,s66).registration603,11625 -registration(r225,c53,s66).registration604,11653 -registration(r225,c53,s66).registration604,11653 -registration(r226,c53,s67).registration605,11681 -registration(r226,c53,s67).registration605,11681 -registration(r227,c48,s67).registration606,11709 -registration(r227,c48,s67).registration606,11709 -registration(r228,c35,s67).registration607,11737 -registration(r228,c35,s67).registration607,11737 -registration(r229,c15,s68).registration608,11765 -registration(r229,c15,s68).registration608,11765 -registration(r230,c20,s68).registration609,11793 -registration(r230,c20,s68).registration609,11793 -registration(r231,c41,s68).registration610,11821 -registration(r231,c41,s68).registration610,11821 -registration(r232,c49,s69).registration611,11849 -registration(r232,c49,s69).registration611,11849 -registration(r233,c44,s69).registration612,11877 -registration(r233,c44,s69).registration612,11877 -registration(r234,c9,s69).registration613,11905 -registration(r234,c9,s69).registration613,11905 -registration(r235,c30,s70).registration614,11932 -registration(r235,c30,s70).registration614,11932 -registration(r236,c61,s70).registration615,11960 -registration(r236,c61,s70).registration615,11960 -registration(r237,c8,s70).registration616,11988 -registration(r237,c8,s70).registration616,11988 -registration(r238,c31,s71).registration617,12015 -registration(r238,c31,s71).registration617,12015 -registration(r239,c8,s71).registration618,12043 -registration(r239,c8,s71).registration618,12043 -registration(r240,c20,s71).registration619,12070 -registration(r240,c20,s71).registration619,12070 -registration(r241,c18,s71).registration620,12098 -registration(r241,c18,s71).registration620,12098 -registration(r242,c38,s71).registration621,12126 -registration(r242,c38,s71).registration621,12126 -registration(r243,c37,s72).registration622,12154 -registration(r243,c37,s72).registration622,12154 -registration(r244,c0,s72).registration623,12182 -registration(r244,c0,s72).registration623,12182 -registration(r245,c62,s72).registration624,12209 -registration(r245,c62,s72).registration624,12209 -registration(r246,c47,s73).registration625,12237 -registration(r246,c47,s73).registration625,12237 -registration(r247,c53,s73).registration626,12265 -registration(r247,c53,s73).registration626,12265 -registration(r248,c41,s73).registration627,12293 -registration(r248,c41,s73).registration627,12293 -registration(r249,c62,s73).registration628,12321 -registration(r249,c62,s73).registration628,12321 -registration(r250,c16,s74).registration629,12349 -registration(r250,c16,s74).registration629,12349 -registration(r251,c31,s74).registration630,12377 -registration(r251,c31,s74).registration630,12377 -registration(r252,c48,s74).registration631,12405 -registration(r252,c48,s74).registration631,12405 -registration(r253,c11,s74).registration632,12433 -registration(r253,c11,s74).registration632,12433 -registration(r254,c43,s75).registration633,12461 -registration(r254,c43,s75).registration633,12461 -registration(r255,c26,s75).registration634,12489 -registration(r255,c26,s75).registration634,12489 -registration(r256,c22,s75).registration635,12517 -registration(r256,c22,s75).registration635,12517 -registration(r257,c40,s76).registration636,12545 -registration(r257,c40,s76).registration636,12545 -registration(r258,c31,s76).registration637,12573 -registration(r258,c31,s76).registration637,12573 -registration(r259,c2,s76).registration638,12601 -registration(r259,c2,s76).registration638,12601 -registration(r260,c7,s77).registration639,12628 -registration(r260,c7,s77).registration639,12628 -registration(r261,c3,s77).registration640,12655 -registration(r261,c3,s77).registration640,12655 -registration(r262,c63,s77).registration641,12682 -registration(r262,c63,s77).registration641,12682 -registration(r263,c0,s78).registration642,12710 -registration(r263,c0,s78).registration642,12710 -registration(r264,c43,s78).registration643,12737 -registration(r264,c43,s78).registration643,12737 -registration(r265,c57,s78).registration644,12765 -registration(r265,c57,s78).registration644,12765 -registration(r266,c46,s79).registration645,12793 -registration(r266,c46,s79).registration645,12793 -registration(r267,c32,s79).registration646,12821 -registration(r267,c32,s79).registration646,12821 -registration(r268,c1,s79).registration647,12849 -registration(r268,c1,s79).registration647,12849 -registration(r269,c18,s80).registration648,12876 -registration(r269,c18,s80).registration648,12876 -registration(r270,c17,s80).registration649,12904 -registration(r270,c17,s80).registration649,12904 -registration(r271,c14,s80).registration650,12932 -registration(r271,c14,s80).registration650,12932 -registration(r272,c8,s81).registration651,12960 -registration(r272,c8,s81).registration651,12960 -registration(r273,c63,s81).registration652,12987 -registration(r273,c63,s81).registration652,12987 -registration(r274,c56,s81).registration653,13015 -registration(r274,c56,s81).registration653,13015 -registration(r275,c28,s82).registration654,13043 -registration(r275,c28,s82).registration654,13043 -registration(r276,c8,s82).registration655,13071 -registration(r276,c8,s82).registration655,13071 -registration(r277,c9,s82).registration656,13098 -registration(r277,c9,s82).registration656,13098 -registration(r278,c61,s83).registration657,13125 -registration(r278,c61,s83).registration657,13125 -registration(r279,c38,s83).registration658,13153 -registration(r279,c38,s83).registration658,13153 -registration(r280,c60,s83).registration659,13181 -registration(r280,c60,s83).registration659,13181 -registration(r281,c38,s84).registration660,13209 -registration(r281,c38,s84).registration660,13209 -registration(r282,c60,s84).registration661,13237 -registration(r282,c60,s84).registration661,13237 -registration(r283,c63,s84).registration662,13265 -registration(r283,c63,s84).registration662,13265 -registration(r284,c25,s85).registration663,13293 -registration(r284,c25,s85).registration663,13293 -registration(r285,c13,s85).registration664,13321 -registration(r285,c13,s85).registration664,13321 -registration(r286,c20,s85).registration665,13349 -registration(r286,c20,s85).registration665,13349 -registration(r287,c52,s85).registration666,13377 -registration(r287,c52,s85).registration666,13377 -registration(r288,c45,s86).registration667,13405 -registration(r288,c45,s86).registration667,13405 -registration(r289,c17,s86).registration668,13433 -registration(r289,c17,s86).registration668,13433 -registration(r290,c2,s86).registration669,13461 -registration(r290,c2,s86).registration669,13461 -registration(r291,c48,s86).registration670,13488 -registration(r291,c48,s86).registration670,13488 -registration(r292,c0,s86).registration671,13516 -registration(r292,c0,s86).registration671,13516 -registration(r293,c40,s87).registration672,13543 -registration(r293,c40,s87).registration672,13543 -registration(r294,c44,s87).registration673,13571 -registration(r294,c44,s87).registration673,13571 -registration(r295,c41,s87).registration674,13599 -registration(r295,c41,s87).registration674,13599 -registration(r296,c53,s87).registration675,13627 -registration(r296,c53,s87).registration675,13627 -registration(r297,c37,s88).registration676,13655 -registration(r297,c37,s88).registration676,13655 -registration(r298,c47,s88).registration677,13683 -registration(r298,c47,s88).registration677,13683 -registration(r299,c48,s88).registration678,13711 -registration(r299,c48,s88).registration678,13711 -registration(r300,c44,s89).registration679,13739 -registration(r300,c44,s89).registration679,13739 -registration(r301,c32,s89).registration680,13767 -registration(r301,c32,s89).registration680,13767 -registration(r302,c18,s89).registration681,13795 -registration(r302,c18,s89).registration681,13795 -registration(r303,c50,s90).registration682,13823 -registration(r303,c50,s90).registration682,13823 -registration(r304,c26,s90).registration683,13851 -registration(r304,c26,s90).registration683,13851 -registration(r305,c58,s90).registration684,13879 -registration(r305,c58,s90).registration684,13879 -registration(r306,c45,s90).registration685,13907 -registration(r306,c45,s90).registration685,13907 -registration(r307,c0,s91).registration686,13935 -registration(r307,c0,s91).registration686,13935 -registration(r308,c35,s91).registration687,13962 -registration(r308,c35,s91).registration687,13962 -registration(r309,c4,s91).registration688,13990 -registration(r309,c4,s91).registration688,13990 -registration(r310,c4,s92).registration689,14017 -registration(r310,c4,s92).registration689,14017 -registration(r311,c1,s92).registration690,14044 -registration(r311,c1,s92).registration690,14044 -registration(r312,c49,s92).registration691,14071 -registration(r312,c49,s92).registration691,14071 -registration(r313,c42,s92).registration692,14099 -registration(r313,c42,s92).registration692,14099 -registration(r314,c47,s93).registration693,14127 -registration(r314,c47,s93).registration693,14127 -registration(r315,c48,s93).registration694,14155 -registration(r315,c48,s93).registration694,14155 -registration(r316,c17,s93).registration695,14183 -registration(r316,c17,s93).registration695,14183 -registration(r317,c1,s94).registration696,14211 -registration(r317,c1,s94).registration696,14211 -registration(r318,c18,s94).registration697,14238 -registration(r318,c18,s94).registration697,14238 -registration(r319,c35,s94).registration698,14266 -registration(r319,c35,s94).registration698,14266 -registration(r320,c3,s95).registration699,14294 -registration(r320,c3,s95).registration699,14294 -registration(r321,c0,s95).registration700,14321 -registration(r321,c0,s95).registration700,14321 -registration(r322,c38,s95).registration701,14348 -registration(r322,c38,s95).registration701,14348 -registration(r323,c1,s96).registration702,14376 -registration(r323,c1,s96).registration702,14376 -registration(r324,c30,s96).registration703,14403 -registration(r324,c30,s96).registration703,14403 -registration(r325,c52,s96).registration704,14431 -registration(r325,c52,s96).registration704,14431 -registration(r326,c52,s97).registration705,14459 -registration(r326,c52,s97).registration705,14459 -registration(r327,c18,s97).registration706,14487 -registration(r327,c18,s97).registration706,14487 -registration(r328,c55,s97).registration707,14515 -registration(r328,c55,s97).registration707,14515 -registration(r329,c56,s97).registration708,14543 -registration(r329,c56,s97).registration708,14543 -registration(r330,c8,s98).registration709,14571 -registration(r330,c8,s98).registration709,14571 -registration(r331,c41,s98).registration710,14598 -registration(r331,c41,s98).registration710,14598 -registration(r332,c1,s98).registration711,14626 -registration(r332,c1,s98).registration711,14626 -registration(r333,c49,s98).registration712,14653 -registration(r333,c49,s98).registration712,14653 -registration(r334,c35,s99).registration713,14681 -registration(r334,c35,s99).registration713,14681 -registration(r335,c23,s99).registration714,14709 -registration(r335,c23,s99).registration714,14709 -registration(r336,c18,s99).registration715,14737 -registration(r336,c18,s99).registration715,14737 -registration(r337,c36,s100).registration716,14765 -registration(r337,c36,s100).registration716,14765 -registration(r338,c27,s100).registration717,14794 -registration(r338,c27,s100).registration717,14794 -registration(r339,c6,s100).registration718,14823 -registration(r339,c6,s100).registration718,14823 -registration(r340,c7,s101).registration719,14851 -registration(r340,c7,s101).registration719,14851 -registration(r341,c8,s101).registration720,14879 -registration(r341,c8,s101).registration720,14879 -registration(r342,c3,s101).registration721,14907 -registration(r342,c3,s101).registration721,14907 -registration(r343,c35,s101).registration722,14935 -registration(r343,c35,s101).registration722,14935 -registration(r344,c47,s102).registration723,14964 -registration(r344,c47,s102).registration723,14964 -registration(r345,c57,s102).registration724,14993 -registration(r345,c57,s102).registration724,14993 -registration(r346,c20,s102).registration725,15022 -registration(r346,c20,s102).registration725,15022 -registration(r347,c11,s102).registration726,15051 -registration(r347,c11,s102).registration726,15051 -registration(r348,c41,s103).registration727,15080 -registration(r348,c41,s103).registration727,15080 -registration(r349,c4,s103).registration728,15109 -registration(r349,c4,s103).registration728,15109 -registration(r350,c8,s103).registration729,15137 -registration(r350,c8,s103).registration729,15137 -registration(r351,c9,s104).registration730,15165 -registration(r351,c9,s104).registration730,15165 -registration(r352,c37,s104).registration731,15193 -registration(r352,c37,s104).registration731,15193 -registration(r353,c52,s104).registration732,15222 -registration(r353,c52,s104).registration732,15222 -registration(r354,c12,s104).registration733,15251 -registration(r354,c12,s104).registration733,15251 -registration(r355,c13,s105).registration734,15280 -registration(r355,c13,s105).registration734,15280 -registration(r356,c2,s105).registration735,15309 -registration(r356,c2,s105).registration735,15309 -registration(r357,c38,s105).registration736,15337 -registration(r357,c38,s105).registration736,15337 -registration(r358,c44,s106).registration737,15366 -registration(r358,c44,s106).registration737,15366 -registration(r359,c18,s106).registration738,15395 -registration(r359,c18,s106).registration738,15395 -registration(r360,c62,s106).registration739,15424 -registration(r360,c62,s106).registration739,15424 -registration(r361,c2,s107).registration740,15453 -registration(r361,c2,s107).registration740,15453 -registration(r362,c47,s107).registration741,15481 -registration(r362,c47,s107).registration741,15481 -registration(r363,c35,s107).registration742,15510 -registration(r363,c35,s107).registration742,15510 -registration(r364,c29,s108).registration743,15539 -registration(r364,c29,s108).registration743,15539 -registration(r365,c57,s108).registration744,15568 -registration(r365,c57,s108).registration744,15568 -registration(r366,c1,s108).registration745,15597 -registration(r366,c1,s108).registration745,15597 -registration(r367,c43,s108).registration746,15625 -registration(r367,c43,s108).registration746,15625 -registration(r368,c45,s109).registration747,15654 -registration(r368,c45,s109).registration747,15654 -registration(r369,c13,s109).registration748,15683 -registration(r369,c13,s109).registration748,15683 -registration(r370,c29,s109).registration749,15712 -registration(r370,c29,s109).registration749,15712 -registration(r371,c2,s110).registration750,15741 -registration(r371,c2,s110).registration750,15741 -registration(r372,c16,s110).registration751,15769 -registration(r372,c16,s110).registration751,15769 -registration(r373,c19,s110).registration752,15798 -registration(r373,c19,s110).registration752,15798 -registration(r374,c29,s110).registration753,15827 -registration(r374,c29,s110).registration753,15827 -registration(r375,c13,s111).registration754,15856 -registration(r375,c13,s111).registration754,15856 -registration(r376,c1,s111).registration755,15885 -registration(r376,c1,s111).registration755,15885 -registration(r377,c18,s111).registration756,15913 -registration(r377,c18,s111).registration756,15913 -registration(r378,c36,s112).registration757,15942 -registration(r378,c36,s112).registration757,15942 -registration(r379,c42,s112).registration758,15971 -registration(r379,c42,s112).registration758,15971 -registration(r380,c32,s112).registration759,16000 -registration(r380,c32,s112).registration759,16000 -registration(r381,c17,s113).registration760,16029 -registration(r381,c17,s113).registration760,16029 -registration(r382,c35,s113).registration761,16058 -registration(r382,c35,s113).registration761,16058 -registration(r383,c16,s113).registration762,16087 -registration(r383,c16,s113).registration762,16087 -registration(r384,c11,s114).registration763,16116 -registration(r384,c11,s114).registration763,16116 -registration(r385,c50,s114).registration764,16145 -registration(r385,c50,s114).registration764,16145 -registration(r386,c40,s114).registration765,16174 -registration(r386,c40,s114).registration765,16174 -registration(r387,c22,s115).registration766,16203 -registration(r387,c22,s115).registration766,16203 -registration(r388,c31,s115).registration767,16232 -registration(r388,c31,s115).registration767,16232 -registration(r389,c59,s115).registration768,16261 -registration(r389,c59,s115).registration768,16261 -registration(r390,c62,s116).registration769,16290 -registration(r390,c62,s116).registration769,16290 -registration(r391,c1,s116).registration770,16319 -registration(r391,c1,s116).registration770,16319 -registration(r392,c8,s116).registration771,16347 -registration(r392,c8,s116).registration771,16347 -registration(r393,c30,s116).registration772,16375 -registration(r393,c30,s116).registration772,16375 -registration(r394,c23,s117).registration773,16404 -registration(r394,c23,s117).registration773,16404 -registration(r395,c32,s117).registration774,16433 -registration(r395,c32,s117).registration774,16433 -registration(r396,c56,s117).registration775,16462 -registration(r396,c56,s117).registration775,16462 -registration(r397,c12,s117).registration776,16491 -registration(r397,c12,s117).registration776,16491 -registration(r398,c46,s118).registration777,16520 -registration(r398,c46,s118).registration777,16520 -registration(r399,c47,s118).registration778,16549 -registration(r399,c47,s118).registration778,16549 -registration(r400,c25,s118).registration779,16578 -registration(r400,c25,s118).registration779,16578 -registration(r401,c61,s118).registration780,16607 -registration(r401,c61,s118).registration780,16607 -registration(r402,c44,s119).registration781,16636 -registration(r402,c44,s119).registration781,16636 -registration(r403,c49,s119).registration782,16665 -registration(r403,c49,s119).registration782,16665 -registration(r404,c61,s119).registration783,16694 -registration(r404,c61,s119).registration783,16694 -registration(r405,c38,s120).registration784,16723 -registration(r405,c38,s120).registration784,16723 -registration(r406,c8,s120).registration785,16752 -registration(r406,c8,s120).registration785,16752 -registration(r407,c0,s120).registration786,16780 -registration(r407,c0,s120).registration786,16780 -registration(r408,c60,s121).registration787,16808 -registration(r408,c60,s121).registration787,16808 -registration(r409,c45,s121).registration788,16837 -registration(r409,c45,s121).registration788,16837 -registration(r410,c28,s121).registration789,16866 -registration(r410,c28,s121).registration789,16866 -registration(r411,c37,s122).registration790,16895 -registration(r411,c37,s122).registration790,16895 -registration(r412,c4,s122).registration791,16924 -registration(r412,c4,s122).registration791,16924 -registration(r413,c15,s122).registration792,16952 -registration(r413,c15,s122).registration792,16952 -registration(r414,c28,s122).registration793,16981 -registration(r414,c28,s122).registration793,16981 -registration(r415,c4,s123).registration794,17010 -registration(r415,c4,s123).registration794,17010 -registration(r416,c31,s123).registration795,17038 -registration(r416,c31,s123).registration795,17038 -registration(r417,c59,s123).registration796,17067 -registration(r417,c59,s123).registration796,17067 -registration(r418,c42,s124).registration797,17096 -registration(r418,c42,s124).registration797,17096 -registration(r419,c59,s124).registration798,17125 -registration(r419,c59,s124).registration798,17125 -registration(r420,c39,s124).registration799,17154 -registration(r420,c39,s124).registration799,17154 -registration(r421,c21,s125).registration800,17183 -registration(r421,c21,s125).registration800,17183 -registration(r422,c29,s125).registration801,17212 -registration(r422,c29,s125).registration801,17212 -registration(r423,c54,s125).registration802,17241 -registration(r423,c54,s125).registration802,17241 -registration(r424,c28,s126).registration803,17270 -registration(r424,c28,s126).registration803,17270 -registration(r425,c22,s126).registration804,17299 -registration(r425,c22,s126).registration804,17299 -registration(r426,c0,s126).registration805,17328 -registration(r426,c0,s126).registration805,17328 -registration(r427,c61,s127).registration806,17356 -registration(r427,c61,s127).registration806,17356 -registration(r428,c7,s127).registration807,17385 -registration(r428,c7,s127).registration807,17385 -registration(r429,c28,s127).registration808,17413 -registration(r429,c28,s127).registration808,17413 -registration(r430,c1,s128).registration809,17442 -registration(r430,c1,s128).registration809,17442 -registration(r431,c60,s128).registration810,17470 -registration(r431,c60,s128).registration810,17470 -registration(r432,c7,s128).registration811,17499 -registration(r432,c7,s128).registration811,17499 -registration(r433,c52,s129).registration812,17527 -registration(r433,c52,s129).registration812,17527 -registration(r434,c18,s129).registration813,17556 -registration(r434,c18,s129).registration813,17556 -registration(r435,c55,s129).registration814,17585 -registration(r435,c55,s129).registration814,17585 -registration(r436,c4,s130).registration815,17614 -registration(r436,c4,s130).registration815,17614 -registration(r437,c27,s130).registration816,17642 -registration(r437,c27,s130).registration816,17642 -registration(r438,c46,s130).registration817,17671 -registration(r438,c46,s130).registration817,17671 -registration(r439,c39,s130).registration818,17700 -registration(r439,c39,s130).registration818,17700 -registration(r440,c3,s131).registration819,17729 -registration(r440,c3,s131).registration819,17729 -registration(r441,c35,s131).registration820,17757 -registration(r441,c35,s131).registration820,17757 -registration(r442,c29,s131).registration821,17786 -registration(r442,c29,s131).registration821,17786 -registration(r443,c57,s132).registration822,17815 -registration(r443,c57,s132).registration822,17815 -registration(r444,c38,s132).registration823,17844 -registration(r444,c38,s132).registration823,17844 -registration(r445,c34,s132).registration824,17873 -registration(r445,c34,s132).registration824,17873 -registration(r446,c32,s133).registration825,17902 -registration(r446,c32,s133).registration825,17902 -registration(r447,c24,s133).registration826,17931 -registration(r447,c24,s133).registration826,17931 -registration(r448,c1,s133).registration827,17960 -registration(r448,c1,s133).registration827,17960 -registration(r449,c3,s134).registration828,17988 -registration(r449,c3,s134).registration828,17988 -registration(r450,c21,s134).registration829,18016 -registration(r450,c21,s134).registration829,18016 -registration(r451,c25,s134).registration830,18045 -registration(r451,c25,s134).registration830,18045 -registration(r452,c13,s135).registration831,18074 -registration(r452,c13,s135).registration831,18074 -registration(r453,c36,s135).registration832,18103 -registration(r453,c36,s135).registration832,18103 -registration(r454,c35,s135).registration833,18132 -registration(r454,c35,s135).registration833,18132 -registration(r455,c40,s136).registration834,18161 -registration(r455,c40,s136).registration834,18161 -registration(r456,c24,s136).registration835,18190 -registration(r456,c24,s136).registration835,18190 -registration(r457,c5,s136).registration836,18219 -registration(r457,c5,s136).registration836,18219 -registration(r458,c44,s137).registration837,18247 -registration(r458,c44,s137).registration837,18247 -registration(r459,c25,s137).registration838,18276 -registration(r459,c25,s137).registration838,18276 -registration(r460,c2,s137).registration839,18305 -registration(r460,c2,s137).registration839,18305 -registration(r461,c43,s137).registration840,18333 -registration(r461,c43,s137).registration840,18333 -registration(r462,c2,s138).registration841,18362 -registration(r462,c2,s138).registration841,18362 -registration(r463,c19,s138).registration842,18390 -registration(r463,c19,s138).registration842,18390 -registration(r464,c9,s138).registration843,18419 -registration(r464,c9,s138).registration843,18419 -registration(r465,c41,s139).registration844,18447 -registration(r465,c41,s139).registration844,18447 -registration(r466,c46,s139).registration845,18476 -registration(r466,c46,s139).registration845,18476 -registration(r467,c58,s139).registration846,18505 -registration(r467,c58,s139).registration846,18505 -registration(r468,c63,s139).registration847,18534 -registration(r468,c63,s139).registration847,18534 -registration(r469,c22,s140).registration848,18563 -registration(r469,c22,s140).registration848,18563 -registration(r470,c24,s140).registration849,18592 -registration(r470,c24,s140).registration849,18592 -registration(r471,c14,s140).registration850,18621 -registration(r471,c14,s140).registration850,18621 -registration(r472,c37,s140).registration851,18650 -registration(r472,c37,s140).registration851,18650 -registration(r473,c38,s141).registration852,18679 -registration(r473,c38,s141).registration852,18679 -registration(r474,c33,s141).registration853,18708 -registration(r474,c33,s141).registration853,18708 -registration(r475,c9,s141).registration854,18737 -registration(r475,c9,s141).registration854,18737 -registration(r476,c15,s142).registration855,18765 -registration(r476,c15,s142).registration855,18765 -registration(r477,c37,s142).registration856,18794 -registration(r477,c37,s142).registration856,18794 -registration(r478,c26,s142).registration857,18823 -registration(r478,c26,s142).registration857,18823 -registration(r479,c29,s143).registration858,18852 -registration(r479,c29,s143).registration858,18852 -registration(r480,c5,s143).registration859,18881 -registration(r480,c5,s143).registration859,18881 -registration(r481,c42,s143).registration860,18909 -registration(r481,c42,s143).registration860,18909 -registration(r482,c8,s143).registration861,18938 -registration(r482,c8,s143).registration861,18938 -registration(r483,c11,s144).registration862,18966 -registration(r483,c11,s144).registration862,18966 -registration(r484,c29,s144).registration863,18995 -registration(r484,c29,s144).registration863,18995 -registration(r485,c54,s144).registration864,19024 -registration(r485,c54,s144).registration864,19024 -registration(r486,c47,s144).registration865,19053 -registration(r486,c47,s144).registration865,19053 -registration(r487,c54,s145).registration866,19082 -registration(r487,c54,s145).registration866,19082 -registration(r488,c9,s145).registration867,19111 -registration(r488,c9,s145).registration867,19111 -registration(r489,c44,s145).registration868,19139 -registration(r489,c44,s145).registration868,19139 -registration(r490,c60,s146).registration869,19168 -registration(r490,c60,s146).registration869,19168 -registration(r491,c15,s146).registration870,19197 -registration(r491,c15,s146).registration870,19197 -registration(r492,c5,s146).registration871,19226 -registration(r492,c5,s146).registration871,19226 -registration(r493,c39,s147).registration872,19254 -registration(r493,c39,s147).registration872,19254 -registration(r494,c57,s147).registration873,19283 -registration(r494,c57,s147).registration873,19283 -registration(r495,c3,s147).registration874,19312 -registration(r495,c3,s147).registration874,19312 -registration(r496,c41,s147).registration875,19340 -registration(r496,c41,s147).registration875,19340 -registration(r497,c60,s148).registration876,19369 -registration(r497,c60,s148).registration876,19369 -registration(r498,c4,s148).registration877,19398 -registration(r498,c4,s148).registration877,19398 -registration(r499,c39,s148).registration878,19426 -registration(r499,c39,s148).registration878,19426 -registration(r500,c18,s148).registration879,19455 -registration(r500,c18,s148).registration879,19455 -registration(r501,c28,s149).registration880,19484 -registration(r501,c28,s149).registration880,19484 -registration(r502,c18,s149).registration881,19513 -registration(r502,c18,s149).registration881,19513 -registration(r503,c15,s149).registration882,19542 -registration(r503,c15,s149).registration882,19542 -registration(r504,c5,s150).registration883,19571 -registration(r504,c5,s150).registration883,19571 -registration(r505,c29,s150).registration884,19599 -registration(r505,c29,s150).registration884,19599 -registration(r506,c57,s150).registration885,19628 -registration(r506,c57,s150).registration885,19628 -registration(r507,c3,s151).registration886,19657 -registration(r507,c3,s151).registration886,19657 -registration(r508,c35,s151).registration887,19685 -registration(r508,c35,s151).registration887,19685 -registration(r509,c33,s151).registration888,19714 -registration(r509,c33,s151).registration888,19714 -registration(r510,c48,s152).registration889,19743 -registration(r510,c48,s152).registration889,19743 -registration(r511,c41,s152).registration890,19772 -registration(r511,c41,s152).registration890,19772 -registration(r512,c13,s152).registration891,19801 -registration(r512,c13,s152).registration891,19801 -registration(r513,c6,s153).registration892,19830 -registration(r513,c6,s153).registration892,19830 -registration(r514,c42,s153).registration893,19858 -registration(r514,c42,s153).registration893,19858 -registration(r515,c53,s153).registration894,19887 -registration(r515,c53,s153).registration894,19887 -registration(r516,c49,s154).registration895,19916 -registration(r516,c49,s154).registration895,19916 -registration(r517,c19,s154).registration896,19945 -registration(r517,c19,s154).registration896,19945 -registration(r518,c59,s154).registration897,19974 -registration(r518,c59,s154).registration897,19974 -registration(r519,c29,s154).registration898,20003 -registration(r519,c29,s154).registration898,20003 -registration(r520,c40,s155).registration899,20032 -registration(r520,c40,s155).registration899,20032 -registration(r521,c48,s155).registration900,20061 -registration(r521,c48,s155).registration900,20061 -registration(r522,c28,s155).registration901,20090 -registration(r522,c28,s155).registration901,20090 -registration(r523,c34,s156).registration902,20119 -registration(r523,c34,s156).registration902,20119 -registration(r524,c45,s156).registration903,20148 -registration(r524,c45,s156).registration903,20148 -registration(r525,c24,s156).registration904,20177 -registration(r525,c24,s156).registration904,20177 -registration(r526,c28,s156).registration905,20206 -registration(r526,c28,s156).registration905,20206 -registration(r527,c58,s157).registration906,20235 -registration(r527,c58,s157).registration906,20235 -registration(r528,c34,s157).registration907,20264 -registration(r528,c34,s157).registration907,20264 -registration(r529,c1,s157).registration908,20293 -registration(r529,c1,s157).registration908,20293 -registration(r530,c43,s158).registration909,20321 -registration(r530,c43,s158).registration909,20321 -registration(r531,c38,s158).registration910,20350 -registration(r531,c38,s158).registration910,20350 -registration(r532,c57,s158).registration911,20379 -registration(r532,c57,s158).registration911,20379 -registration(r533,c35,s159).registration912,20408 -registration(r533,c35,s159).registration912,20408 -registration(r534,c50,s159).registration913,20437 -registration(r534,c50,s159).registration913,20437 -registration(r535,c60,s159).registration914,20466 -registration(r535,c60,s159).registration914,20466 -registration(r536,c16,s160).registration915,20495 -registration(r536,c16,s160).registration915,20495 -registration(r537,c49,s160).registration916,20524 -registration(r537,c49,s160).registration916,20524 -registration(r538,c47,s160).registration917,20553 -registration(r538,c47,s160).registration917,20553 -registration(r539,c23,s161).registration918,20582 -registration(r539,c23,s161).registration918,20582 -registration(r540,c31,s161).registration919,20611 -registration(r540,c31,s161).registration919,20611 -registration(r541,c27,s161).registration920,20640 -registration(r541,c27,s161).registration920,20640 -registration(r542,c62,s162).registration921,20669 -registration(r542,c62,s162).registration921,20669 -registration(r543,c21,s162).registration922,20698 -registration(r543,c21,s162).registration922,20698 -registration(r544,c23,s162).registration923,20727 -registration(r544,c23,s162).registration923,20727 -registration(r545,c52,s163).registration924,20756 -registration(r545,c52,s163).registration924,20756 -registration(r546,c16,s163).registration925,20785 -registration(r546,c16,s163).registration925,20785 -registration(r547,c58,s163).registration926,20814 -registration(r547,c58,s163).registration926,20814 -registration(r548,c14,s164).registration927,20843 -registration(r548,c14,s164).registration927,20843 -registration(r549,c34,s164).registration928,20872 -registration(r549,c34,s164).registration928,20872 -registration(r550,c16,s164).registration929,20901 -registration(r550,c16,s164).registration929,20901 -registration(r551,c32,s164).registration930,20930 -registration(r551,c32,s164).registration930,20930 -registration(r552,c42,s165).registration931,20959 -registration(r552,c42,s165).registration931,20959 -registration(r553,c18,s165).registration932,20988 -registration(r553,c18,s165).registration932,20988 -registration(r554,c58,s165).registration933,21017 -registration(r554,c58,s165).registration933,21017 -registration(r555,c11,s166).registration934,21046 -registration(r555,c11,s166).registration934,21046 -registration(r556,c18,s166).registration935,21075 -registration(r556,c18,s166).registration935,21075 -registration(r557,c39,s166).registration936,21104 -registration(r557,c39,s166).registration936,21104 -registration(r558,c62,s167).registration937,21133 -registration(r558,c62,s167).registration937,21133 -registration(r559,c24,s167).registration938,21162 -registration(r559,c24,s167).registration938,21162 -registration(r560,c44,s167).registration939,21191 -registration(r560,c44,s167).registration939,21191 -registration(r561,c43,s168).registration940,21220 -registration(r561,c43,s168).registration940,21220 -registration(r562,c60,s168).registration941,21249 -registration(r562,c60,s168).registration941,21249 -registration(r563,c46,s168).registration942,21278 -registration(r563,c46,s168).registration942,21278 -registration(r564,c18,s168).registration943,21307 -registration(r564,c18,s168).registration943,21307 -registration(r565,c17,s169).registration944,21336 -registration(r565,c17,s169).registration944,21336 -registration(r566,c14,s169).registration945,21365 -registration(r566,c14,s169).registration945,21365 -registration(r567,c26,s169).registration946,21394 -registration(r567,c26,s169).registration946,21394 -registration(r568,c59,s170).registration947,21423 -registration(r568,c59,s170).registration947,21423 -registration(r569,c11,s170).registration948,21452 -registration(r569,c11,s170).registration948,21452 -registration(r570,c36,s170).registration949,21481 -registration(r570,c36,s170).registration949,21481 -registration(r571,c15,s170).registration950,21510 -registration(r571,c15,s170).registration950,21510 -registration(r572,c45,s171).registration951,21539 -registration(r572,c45,s171).registration951,21539 -registration(r573,c3,s171).registration952,21568 -registration(r573,c3,s171).registration952,21568 -registration(r574,c48,s171).registration953,21596 -registration(r574,c48,s171).registration953,21596 -registration(r575,c2,s172).registration954,21625 -registration(r575,c2,s172).registration954,21625 -registration(r576,c11,s172).registration955,21653 -registration(r576,c11,s172).registration955,21653 -registration(r577,c9,s172).registration956,21682 -registration(r577,c9,s172).registration956,21682 -registration(r578,c35,s172).registration957,21710 -registration(r578,c35,s172).registration957,21710 -registration(r579,c63,s173).registration958,21739 -registration(r579,c63,s173).registration958,21739 -registration(r580,c46,s173).registration959,21768 -registration(r580,c46,s173).registration959,21768 -registration(r581,c56,s173).registration960,21797 -registration(r581,c56,s173).registration960,21797 -registration(r582,c41,s174).registration961,21826 -registration(r582,c41,s174).registration961,21826 -registration(r583,c44,s174).registration962,21855 -registration(r583,c44,s174).registration962,21855 -registration(r584,c63,s174).registration963,21884 -registration(r584,c63,s174).registration963,21884 -registration(r585,c60,s174).registration964,21913 -registration(r585,c60,s174).registration964,21913 -registration(r586,c38,s175).registration965,21942 -registration(r586,c38,s175).registration965,21942 -registration(r587,c57,s175).registration966,21971 -registration(r587,c57,s175).registration966,21971 -registration(r588,c41,s175).registration967,22000 -registration(r588,c41,s175).registration967,22000 -registration(r589,c13,s175).registration968,22029 -registration(r589,c13,s175).registration968,22029 -registration(r590,c60,s176).registration969,22058 -registration(r590,c60,s176).registration969,22058 -registration(r591,c13,s176).registration970,22087 -registration(r591,c13,s176).registration970,22087 -registration(r592,c29,s176).registration971,22116 -registration(r592,c29,s176).registration971,22116 -registration(r593,c12,s177).registration972,22145 -registration(r593,c12,s177).registration972,22145 -registration(r594,c15,s177).registration973,22174 -registration(r594,c15,s177).registration973,22174 -registration(r595,c33,s177).registration974,22203 -registration(r595,c33,s177).registration974,22203 -registration(r596,c41,s178).registration975,22232 -registration(r596,c41,s178).registration975,22232 -registration(r597,c33,s178).registration976,22261 -registration(r597,c33,s178).registration976,22261 -registration(r598,c34,s178).registration977,22290 -registration(r598,c34,s178).registration977,22290 -registration(r599,c32,s178).registration978,22319 -registration(r599,c32,s178).registration978,22319 -registration(r600,c5,s179).registration979,22348 -registration(r600,c5,s179).registration979,22348 -registration(r601,c14,s179).registration980,22376 -registration(r601,c14,s179).registration980,22376 -registration(r602,c61,s179).registration981,22405 -registration(r602,c61,s179).registration981,22405 -registration(r603,c60,s180).registration982,22434 -registration(r603,c60,s180).registration982,22434 -registration(r604,c58,s180).registration983,22463 -registration(r604,c58,s180).registration983,22463 -registration(r605,c53,s180).registration984,22492 -registration(r605,c53,s180).registration984,22492 -registration(r606,c31,s180).registration985,22521 -registration(r606,c31,s180).registration985,22521 -registration(r607,c51,s181).registration986,22550 -registration(r607,c51,s181).registration986,22550 -registration(r608,c2,s181).registration987,22579 -registration(r608,c2,s181).registration987,22579 -registration(r609,c52,s181).registration988,22607 -registration(r609,c52,s181).registration988,22607 -registration(r610,c63,s181).registration989,22636 -registration(r610,c63,s181).registration989,22636 -registration(r611,c29,s181).registration990,22665 -registration(r611,c29,s181).registration990,22665 -registration(r612,c41,s182).registration991,22694 -registration(r612,c41,s182).registration991,22694 -registration(r613,c19,s182).registration992,22723 -registration(r613,c19,s182).registration992,22723 -registration(r614,c43,s182).registration993,22752 -registration(r614,c43,s182).registration993,22752 -registration(r615,c58,s183).registration994,22781 -registration(r615,c58,s183).registration994,22781 -registration(r616,c16,s183).registration995,22810 -registration(r616,c16,s183).registration995,22810 -registration(r617,c30,s183).registration996,22839 -registration(r617,c30,s183).registration996,22839 -registration(r618,c42,s184).registration997,22868 -registration(r618,c42,s184).registration997,22868 -registration(r619,c63,s184).registration998,22897 -registration(r619,c63,s184).registration998,22897 -registration(r620,c5,s184).registration999,22926 -registration(r620,c5,s184).registration999,22926 -registration(r621,c2,s184).registration1000,22954 -registration(r621,c2,s184).registration1000,22954 -registration(r622,c30,s185).registration1001,22982 -registration(r622,c30,s185).registration1001,22982 -registration(r623,c5,s185).registration1002,23011 -registration(r623,c5,s185).registration1002,23011 -registration(r624,c62,s185).registration1003,23039 -registration(r624,c62,s185).registration1003,23039 -registration(r625,c8,s186).registration1004,23068 -registration(r625,c8,s186).registration1004,23068 -registration(r626,c59,s186).registration1005,23096 -registration(r626,c59,s186).registration1005,23096 -registration(r627,c44,s186).registration1006,23125 -registration(r627,c44,s186).registration1006,23125 -registration(r628,c33,s187).registration1007,23154 -registration(r628,c33,s187).registration1007,23154 -registration(r629,c61,s187).registration1008,23183 -registration(r629,c61,s187).registration1008,23183 -registration(r630,c60,s187).registration1009,23212 -registration(r630,c60,s187).registration1009,23212 -registration(r631,c38,s188).registration1010,23241 -registration(r631,c38,s188).registration1010,23241 -registration(r632,c55,s188).registration1011,23270 -registration(r632,c55,s188).registration1011,23270 -registration(r633,c6,s188).registration1012,23299 -registration(r633,c6,s188).registration1012,23299 -registration(r634,c1,s189).registration1013,23327 -registration(r634,c1,s189).registration1013,23327 -registration(r635,c47,s189).registration1014,23355 -registration(r635,c47,s189).registration1014,23355 -registration(r636,c10,s189).registration1015,23384 -registration(r636,c10,s189).registration1015,23384 -registration(r637,c52,s190).registration1016,23413 -registration(r637,c52,s190).registration1016,23413 -registration(r638,c28,s190).registration1017,23442 -registration(r638,c28,s190).registration1017,23442 -registration(r639,c39,s190).registration1018,23471 -registration(r639,c39,s190).registration1018,23471 -registration(r640,c42,s191).registration1019,23500 -registration(r640,c42,s191).registration1019,23500 -registration(r641,c3,s191).registration1020,23529 -registration(r641,c3,s191).registration1020,23529 -registration(r642,c48,s191).registration1021,23557 -registration(r642,c48,s191).registration1021,23557 -registration(r643,c44,s192).registration1022,23586 -registration(r643,c44,s192).registration1022,23586 -registration(r644,c50,s192).registration1023,23615 -registration(r644,c50,s192).registration1023,23615 -registration(r645,c24,s192).registration1024,23644 -registration(r645,c24,s192).registration1024,23644 -registration(r646,c24,s193).registration1025,23673 -registration(r646,c24,s193).registration1025,23673 -registration(r647,c59,s193).registration1026,23702 -registration(r647,c59,s193).registration1026,23702 -registration(r648,c42,s193).registration1027,23731 -registration(r648,c42,s193).registration1027,23731 -registration(r649,c6,s194).registration1028,23760 -registration(r649,c6,s194).registration1028,23760 -registration(r650,c60,s194).registration1029,23788 -registration(r650,c60,s194).registration1029,23788 -registration(r651,c23,s194).registration1030,23817 -registration(r651,c23,s194).registration1030,23817 -registration(r652,c3,s195).registration1031,23846 -registration(r652,c3,s195).registration1031,23846 -registration(r653,c15,s195).registration1032,23874 -registration(r653,c15,s195).registration1032,23874 -registration(r654,c11,s195).registration1033,23903 -registration(r654,c11,s195).registration1033,23903 -registration(r655,c45,s196).registration1034,23932 -registration(r655,c45,s196).registration1034,23932 -registration(r656,c1,s196).registration1035,23961 -registration(r656,c1,s196).registration1035,23961 -registration(r657,c10,s196).registration1036,23989 -registration(r657,c10,s196).registration1036,23989 -registration(r658,c51,s197).registration1037,24018 -registration(r658,c51,s197).registration1037,24018 -registration(r659,c63,s197).registration1038,24047 -registration(r659,c63,s197).registration1038,24047 -registration(r660,c40,s197).registration1039,24076 -registration(r660,c40,s197).registration1039,24076 -registration(r661,c7,s198).registration1040,24105 -registration(r661,c7,s198).registration1040,24105 -registration(r662,c16,s198).registration1041,24133 -registration(r662,c16,s198).registration1041,24133 -registration(r663,c28,s198).registration1042,24162 -registration(r663,c28,s198).registration1042,24162 -registration(r664,c8,s199).registration1043,24191 -registration(r664,c8,s199).registration1043,24191 -registration(r665,c57,s199).registration1044,24219 -registration(r665,c57,s199).registration1044,24219 -registration(r666,c37,s199).registration1045,24248 -registration(r666,c37,s199).registration1045,24248 -registration(r667,c4,s200).registration1046,24277 -registration(r667,c4,s200).registration1046,24277 -registration(r668,c58,s200).registration1047,24305 -registration(r668,c58,s200).registration1047,24305 -registration(r669,c12,s200).registration1048,24334 -registration(r669,c12,s200).registration1048,24334 -registration(r670,c39,s200).registration1049,24363 -registration(r670,c39,s200).registration1049,24363 -registration(r671,c31,s201).registration1050,24392 -registration(r671,c31,s201).registration1050,24392 -registration(r672,c21,s201).registration1051,24421 -registration(r672,c21,s201).registration1051,24421 -registration(r673,c50,s201).registration1052,24450 -registration(r673,c50,s201).registration1052,24450 -registration(r674,c30,s201).registration1053,24479 -registration(r674,c30,s201).registration1053,24479 -registration(r675,c46,s202).registration1054,24508 -registration(r675,c46,s202).registration1054,24508 -registration(r676,c12,s202).registration1055,24537 -registration(r676,c12,s202).registration1055,24537 -registration(r677,c52,s202).registration1056,24566 -registration(r677,c52,s202).registration1056,24566 -registration(r678,c51,s202).registration1057,24595 -registration(r678,c51,s202).registration1057,24595 -registration(r679,c63,s203).registration1058,24624 -registration(r679,c63,s203).registration1058,24624 -registration(r680,c35,s203).registration1059,24653 -registration(r680,c35,s203).registration1059,24653 -registration(r681,c28,s203).registration1060,24682 -registration(r681,c28,s203).registration1060,24682 -registration(r682,c51,s203).registration1061,24711 -registration(r682,c51,s203).registration1061,24711 -registration(r683,c40,s204).registration1062,24740 -registration(r683,c40,s204).registration1062,24740 -registration(r684,c29,s204).registration1063,24769 -registration(r684,c29,s204).registration1063,24769 -registration(r685,c1,s204).registration1064,24798 -registration(r685,c1,s204).registration1064,24798 -registration(r686,c53,s204).registration1065,24826 -registration(r686,c53,s204).registration1065,24826 -registration(r687,c49,s205).registration1066,24855 -registration(r687,c49,s205).registration1066,24855 -registration(r688,c7,s205).registration1067,24884 -registration(r688,c7,s205).registration1067,24884 -registration(r689,c46,s205).registration1068,24912 -registration(r689,c46,s205).registration1068,24912 -registration(r690,c54,s206).registration1069,24941 -registration(r690,c54,s206).registration1069,24941 -registration(r691,c36,s206).registration1070,24970 -registration(r691,c36,s206).registration1070,24970 -registration(r692,c2,s206).registration1071,24999 -registration(r692,c2,s206).registration1071,24999 -registration(r693,c23,s206).registration1072,25027 -registration(r693,c23,s206).registration1072,25027 -registration(r694,c14,s207).registration1073,25056 -registration(r694,c14,s207).registration1073,25056 -registration(r695,c54,s207).registration1074,25085 -registration(r695,c54,s207).registration1074,25085 -registration(r696,c29,s207).registration1075,25114 -registration(r696,c29,s207).registration1075,25114 -registration(r697,c50,s208).registration1076,25143 -registration(r697,c50,s208).registration1076,25143 -registration(r698,c27,s208).registration1077,25172 -registration(r698,c27,s208).registration1077,25172 -registration(r699,c30,s208).registration1078,25201 -registration(r699,c30,s208).registration1078,25201 -registration(r700,c59,s209).registration1079,25230 -registration(r700,c59,s209).registration1079,25230 -registration(r701,c56,s209).registration1080,25259 -registration(r701,c56,s209).registration1080,25259 -registration(r702,c50,s209).registration1081,25288 -registration(r702,c50,s209).registration1081,25288 -registration(r703,c17,s210).registration1082,25317 -registration(r703,c17,s210).registration1082,25317 -registration(r704,c53,s210).registration1083,25346 -registration(r704,c53,s210).registration1083,25346 -registration(r705,c4,s210).registration1084,25375 -registration(r705,c4,s210).registration1084,25375 -registration(r706,c53,s211).registration1085,25403 -registration(r706,c53,s211).registration1085,25403 -registration(r707,c28,s211).registration1086,25432 -registration(r707,c28,s211).registration1086,25432 -registration(r708,c25,s211).registration1087,25461 -registration(r708,c25,s211).registration1087,25461 -registration(r709,c15,s211).registration1088,25490 -registration(r709,c15,s211).registration1088,25490 -registration(r710,c25,s212).registration1089,25519 -registration(r710,c25,s212).registration1089,25519 -registration(r711,c3,s212).registration1090,25548 -registration(r711,c3,s212).registration1090,25548 -registration(r712,c30,s212).registration1091,25576 -registration(r712,c30,s212).registration1091,25576 -registration(r713,c43,s213).registration1092,25605 -registration(r713,c43,s213).registration1092,25605 -registration(r714,c37,s213).registration1093,25634 -registration(r714,c37,s213).registration1093,25634 -registration(r715,c16,s213).registration1094,25663 -registration(r715,c16,s213).registration1094,25663 -registration(r716,c15,s213).registration1095,25692 -registration(r716,c15,s213).registration1095,25692 -registration(r717,c34,s213).registration1096,25721 -registration(r717,c34,s213).registration1096,25721 -registration(r718,c46,s214).registration1097,25750 -registration(r718,c46,s214).registration1097,25750 -registration(r719,c53,s214).registration1098,25779 -registration(r719,c53,s214).registration1098,25779 -registration(r720,c33,s214).registration1099,25808 -registration(r720,c33,s214).registration1099,25808 -registration(r721,c22,s215).registration1100,25837 -registration(r721,c22,s215).registration1100,25837 -registration(r722,c30,s215).registration1101,25866 -registration(r722,c30,s215).registration1101,25866 -registration(r723,c16,s215).registration1102,25895 -registration(r723,c16,s215).registration1102,25895 -registration(r724,c20,s216).registration1103,25924 -registration(r724,c20,s216).registration1103,25924 -registration(r725,c60,s216).registration1104,25953 -registration(r725,c60,s216).registration1104,25953 -registration(r726,c62,s216).registration1105,25982 -registration(r726,c62,s216).registration1105,25982 -registration(r727,c25,s216).registration1106,26011 -registration(r727,c25,s216).registration1106,26011 -registration(r728,c62,s217).registration1107,26040 -registration(r728,c62,s217).registration1107,26040 -registration(r729,c25,s217).registration1108,26069 -registration(r729,c25,s217).registration1108,26069 -registration(r730,c40,s217).registration1109,26098 -registration(r730,c40,s217).registration1109,26098 -registration(r731,c6,s218).registration1110,26127 -registration(r731,c6,s218).registration1110,26127 -registration(r732,c9,s218).registration1111,26155 -registration(r732,c9,s218).registration1111,26155 -registration(r733,c18,s218).registration1112,26183 -registration(r733,c18,s218).registration1112,26183 -registration(r734,c33,s219).registration1113,26212 -registration(r734,c33,s219).registration1113,26212 -registration(r735,c56,s219).registration1114,26241 -registration(r735,c56,s219).registration1114,26241 -registration(r736,c63,s219).registration1115,26270 -registration(r736,c63,s219).registration1115,26270 -registration(r737,c45,s220).registration1116,26299 -registration(r737,c45,s220).registration1116,26299 -registration(r738,c25,s220).registration1117,26328 -registration(r738,c25,s220).registration1117,26328 -registration(r739,c62,s220).registration1118,26357 -registration(r739,c62,s220).registration1118,26357 -registration(r740,c19,s220).registration1119,26386 -registration(r740,c19,s220).registration1119,26386 -registration(r741,c54,s221).registration1120,26415 -registration(r741,c54,s221).registration1120,26415 -registration(r742,c24,s221).registration1121,26444 -registration(r742,c24,s221).registration1121,26444 -registration(r743,c60,s221).registration1122,26473 -registration(r743,c60,s221).registration1122,26473 -registration(r744,c44,s221).registration1123,26502 -registration(r744,c44,s221).registration1123,26502 -registration(r745,c8,s222).registration1124,26531 -registration(r745,c8,s222).registration1124,26531 -registration(r746,c56,s222).registration1125,26559 -registration(r746,c56,s222).registration1125,26559 -registration(r747,c18,s222).registration1126,26588 -registration(r747,c18,s222).registration1126,26588 -registration(r748,c43,s223).registration1127,26617 -registration(r748,c43,s223).registration1127,26617 -registration(r749,c10,s223).registration1128,26646 -registration(r749,c10,s223).registration1128,26646 -registration(r750,c15,s223).registration1129,26675 -registration(r750,c15,s223).registration1129,26675 -registration(r751,c17,s223).registration1130,26704 -registration(r751,c17,s223).registration1130,26704 -registration(r752,c26,s224).registration1131,26733 -registration(r752,c26,s224).registration1131,26733 -registration(r753,c2,s224).registration1132,26762 -registration(r753,c2,s224).registration1132,26762 -registration(r754,c6,s224).registration1133,26790 -registration(r754,c6,s224).registration1133,26790 -registration(r755,c5,s225).registration1134,26818 -registration(r755,c5,s225).registration1134,26818 -registration(r756,c32,s225).registration1135,26846 -registration(r756,c32,s225).registration1135,26846 -registration(r757,c23,s225).registration1136,26875 -registration(r757,c23,s225).registration1136,26875 -registration(r758,c20,s226).registration1137,26904 -registration(r758,c20,s226).registration1137,26904 -registration(r759,c11,s226).registration1138,26933 -registration(r759,c11,s226).registration1138,26933 -registration(r760,c2,s226).registration1139,26962 -registration(r760,c2,s226).registration1139,26962 -registration(r761,c29,s226).registration1140,26990 -registration(r761,c29,s226).registration1140,26990 -registration(r762,c37,s227).registration1141,27019 -registration(r762,c37,s227).registration1141,27019 -registration(r763,c12,s227).registration1142,27048 -registration(r763,c12,s227).registration1142,27048 -registration(r764,c10,s227).registration1143,27077 -registration(r764,c10,s227).registration1143,27077 -registration(r765,c3,s228).registration1144,27106 -registration(r765,c3,s228).registration1144,27106 -registration(r766,c47,s228).registration1145,27134 -registration(r766,c47,s228).registration1145,27134 -registration(r767,c54,s228).registration1146,27163 -registration(r767,c54,s228).registration1146,27163 -registration(r768,c0,s229).registration1147,27192 -registration(r768,c0,s229).registration1147,27192 -registration(r769,c10,s229).registration1148,27220 -registration(r769,c10,s229).registration1148,27220 -registration(r770,c37,s229).registration1149,27249 -registration(r770,c37,s229).registration1149,27249 -registration(r771,c62,s230).registration1150,27278 -registration(r771,c62,s230).registration1150,27278 -registration(r772,c19,s230).registration1151,27307 -registration(r772,c19,s230).registration1151,27307 -registration(r773,c38,s230).registration1152,27336 -registration(r773,c38,s230).registration1152,27336 -registration(r774,c44,s231).registration1153,27365 -registration(r774,c44,s231).registration1153,27365 -registration(r775,c25,s231).registration1154,27394 -registration(r775,c25,s231).registration1154,27394 -registration(r776,c37,s231).registration1155,27423 -registration(r776,c37,s231).registration1155,27423 -registration(r777,c58,s232).registration1156,27452 -registration(r777,c58,s232).registration1156,27452 -registration(r778,c42,s232).registration1157,27481 -registration(r778,c42,s232).registration1157,27481 -registration(r779,c22,s232).registration1158,27510 -registration(r779,c22,s232).registration1158,27510 -registration(r780,c51,s233).registration1159,27539 -registration(r780,c51,s233).registration1159,27539 -registration(r781,c8,s233).registration1160,27568 -registration(r781,c8,s233).registration1160,27568 -registration(r782,c58,s233).registration1161,27596 -registration(r782,c58,s233).registration1161,27596 -registration(r783,c14,s234).registration1162,27625 -registration(r783,c14,s234).registration1162,27625 -registration(r784,c0,s234).registration1163,27654 -registration(r784,c0,s234).registration1163,27654 -registration(r785,c23,s234).registration1164,27682 -registration(r785,c23,s234).registration1164,27682 -registration(r786,c59,s234).registration1165,27711 -registration(r786,c59,s234).registration1165,27711 -registration(r787,c5,s235).registration1166,27740 -registration(r787,c5,s235).registration1166,27740 -registration(r788,c4,s235).registration1167,27768 -registration(r788,c4,s235).registration1167,27768 -registration(r789,c23,s235).registration1168,27796 -registration(r789,c23,s235).registration1168,27796 -registration(r790,c21,s236).registration1169,27825 -registration(r790,c21,s236).registration1169,27825 -registration(r791,c42,s236).registration1170,27854 -registration(r791,c42,s236).registration1170,27854 -registration(r792,c12,s236).registration1171,27883 -registration(r792,c12,s236).registration1171,27883 -registration(r793,c57,s237).registration1172,27912 -registration(r793,c57,s237).registration1172,27912 -registration(r794,c40,s237).registration1173,27941 -registration(r794,c40,s237).registration1173,27941 -registration(r795,c30,s237).registration1174,27970 -registration(r795,c30,s237).registration1174,27970 -registration(r796,c26,s238).registration1175,27999 -registration(r796,c26,s238).registration1175,27999 -registration(r797,c4,s238).registration1176,28028 -registration(r797,c4,s238).registration1176,28028 -registration(r798,c21,s238).registration1177,28056 -registration(r798,c21,s238).registration1177,28056 -registration(r799,c8,s239).registration1178,28085 -registration(r799,c8,s239).registration1178,28085 -registration(r800,c7,s239).registration1179,28113 -registration(r800,c7,s239).registration1179,28113 -registration(r801,c45,s239).registration1180,28141 -registration(r801,c45,s239).registration1180,28141 -registration(r802,c47,s239).registration1181,28170 -registration(r802,c47,s239).registration1181,28170 -registration(r803,c7,s240).registration1182,28199 -registration(r803,c7,s240).registration1182,28199 -registration(r804,c4,s240).registration1183,28227 -registration(r804,c4,s240).registration1183,28227 -registration(r805,c0,s240).registration1184,28255 -registration(r805,c0,s240).registration1184,28255 -registration(r806,c54,s240).registration1185,28283 -registration(r806,c54,s240).registration1185,28283 -registration(r807,c9,s240).registration1186,28312 -registration(r807,c9,s240).registration1186,28312 -registration(r808,c11,s241).registration1187,28340 -registration(r808,c11,s241).registration1187,28340 -registration(r809,c29,s241).registration1188,28369 -registration(r809,c29,s241).registration1188,28369 -registration(r810,c45,s241).registration1189,28398 -registration(r810,c45,s241).registration1189,28398 -registration(r811,c58,s241).registration1190,28427 -registration(r811,c58,s241).registration1190,28427 -registration(r812,c48,s242).registration1191,28456 -registration(r812,c48,s242).registration1191,28456 -registration(r813,c0,s242).registration1192,28485 -registration(r813,c0,s242).registration1192,28485 -registration(r814,c51,s242).registration1193,28513 -registration(r814,c51,s242).registration1193,28513 -registration(r815,c12,s243).registration1194,28542 -registration(r815,c12,s243).registration1194,28542 -registration(r816,c24,s243).registration1195,28571 -registration(r816,c24,s243).registration1195,28571 -registration(r817,c59,s243).registration1196,28600 -registration(r817,c59,s243).registration1196,28600 -registration(r818,c58,s244).registration1197,28629 -registration(r818,c58,s244).registration1197,28629 -registration(r819,c4,s244).registration1198,28658 -registration(r819,c4,s244).registration1198,28658 -registration(r820,c52,s244).registration1199,28686 -registration(r820,c52,s244).registration1199,28686 -registration(r821,c47,s244).registration1200,28715 -registration(r821,c47,s244).registration1200,28715 -registration(r822,c49,s245).registration1201,28744 -registration(r822,c49,s245).registration1201,28744 -registration(r823,c43,s245).registration1202,28773 -registration(r823,c43,s245).registration1202,28773 -registration(r824,c3,s245).registration1203,28802 -registration(r824,c3,s245).registration1203,28802 -registration(r825,c5,s246).registration1204,28830 -registration(r825,c5,s246).registration1204,28830 -registration(r826,c44,s246).registration1205,28858 -registration(r826,c44,s246).registration1205,28858 -registration(r827,c51,s246).registration1206,28887 -registration(r827,c51,s246).registration1206,28887 -registration(r828,c15,s247).registration1207,28916 -registration(r828,c15,s247).registration1207,28916 -registration(r829,c58,s247).registration1208,28945 -registration(r829,c58,s247).registration1208,28945 -registration(r830,c25,s247).registration1209,28974 -registration(r830,c25,s247).registration1209,28974 -registration(r831,c9,s248).registration1210,29003 -registration(r831,c9,s248).registration1210,29003 -registration(r832,c23,s248).registration1211,29031 -registration(r832,c23,s248).registration1211,29031 -registration(r833,c40,s248).registration1212,29060 -registration(r833,c40,s248).registration1212,29060 -registration(r834,c52,s249).registration1213,29089 -registration(r834,c52,s249).registration1213,29089 -registration(r835,c59,s249).registration1214,29118 -registration(r835,c59,s249).registration1214,29118 -registration(r836,c50,s249).registration1215,29147 -registration(r836,c50,s249).registration1215,29147 -registration(r837,c38,s249).registration1216,29176 -registration(r837,c38,s249).registration1216,29176 -registration(r838,c10,s250).registration1217,29205 -registration(r838,c10,s250).registration1217,29205 -registration(r839,c30,s250).registration1218,29234 -registration(r839,c30,s250).registration1218,29234 -registration(r840,c49,s250).registration1219,29263 -registration(r840,c49,s250).registration1219,29263 -registration(r841,c34,s251).registration1220,29292 -registration(r841,c34,s251).registration1220,29292 -registration(r842,c41,s251).registration1221,29321 -registration(r842,c41,s251).registration1221,29321 -registration(r843,c27,s251).registration1222,29350 -registration(r843,c27,s251).registration1222,29350 -registration(r844,c34,s252).registration1223,29379 -registration(r844,c34,s252).registration1223,29379 -registration(r845,c4,s252).registration1224,29408 -registration(r845,c4,s252).registration1224,29408 -registration(r846,c8,s252).registration1225,29436 -registration(r846,c8,s252).registration1225,29436 -registration(r847,c23,s253).registration1226,29464 -registration(r847,c23,s253).registration1226,29464 -registration(r848,c42,s253).registration1227,29493 -registration(r848,c42,s253).registration1227,29493 -registration(r849,c20,s253).registration1228,29522 -registration(r849,c20,s253).registration1228,29522 -registration(r850,c30,s254).registration1229,29551 -registration(r850,c30,s254).registration1229,29551 -registration(r851,c5,s254).registration1230,29580 -registration(r851,c5,s254).registration1230,29580 -registration(r852,c7,s254).registration1231,29608 -registration(r852,c7,s254).registration1231,29608 -registration(r853,c61,s254).registration1232,29636 -registration(r853,c61,s254).registration1232,29636 -registration(r854,c60,s255).registration1233,29665 -registration(r854,c60,s255).registration1233,29665 -registration(r855,c48,s255).registration1234,29694 -registration(r855,c48,s255).registration1234,29694 -registration(r856,c0,s255).registration1235,29723 -registration(r856,c0,s255).registration1235,29723 - -packages/CLPBN/examples/School/school_64.yap,453136 -total_professors(64).total_professors2,3 -total_professors(64).total_professors2,3 -total_courses(128).total_courses4,26 -total_courses(128).total_courses4,26 -total_students(1024).total_students6,47 -total_students(1024).total_students6,47 -professor(p0).professor21,234 -professor(p0).professor21,234 -professor(p1).professor22,249 -professor(p1).professor22,249 -professor(p2).professor23,264 -professor(p2).professor23,264 -professor(p3).professor24,279 -professor(p3).professor24,279 -professor(p4).professor25,294 -professor(p4).professor25,294 -professor(p5).professor26,309 -professor(p5).professor26,309 -professor(p6).professor27,324 -professor(p6).professor27,324 -professor(p7).professor28,339 -professor(p7).professor28,339 -professor(p8).professor29,354 -professor(p8).professor29,354 -professor(p9).professor30,369 -professor(p9).professor30,369 -professor(p10).professor31,384 -professor(p10).professor31,384 -professor(p11).professor32,400 -professor(p11).professor32,400 -professor(p12).professor33,416 -professor(p12).professor33,416 -professor(p13).professor34,432 -professor(p13).professor34,432 -professor(p14).professor35,448 -professor(p14).professor35,448 -professor(p15).professor36,464 -professor(p15).professor36,464 -professor(p16).professor37,480 -professor(p16).professor37,480 -professor(p17).professor38,496 -professor(p17).professor38,496 -professor(p18).professor39,512 -professor(p18).professor39,512 -professor(p19).professor40,528 -professor(p19).professor40,528 -professor(p20).professor41,544 -professor(p20).professor41,544 -professor(p21).professor42,560 -professor(p21).professor42,560 -professor(p22).professor43,576 -professor(p22).professor43,576 -professor(p23).professor44,592 -professor(p23).professor44,592 -professor(p24).professor45,608 -professor(p24).professor45,608 -professor(p25).professor46,624 -professor(p25).professor46,624 -professor(p26).professor47,640 -professor(p26).professor47,640 -professor(p27).professor48,656 -professor(p27).professor48,656 -professor(p28).professor49,672 -professor(p28).professor49,672 -professor(p29).professor50,688 -professor(p29).professor50,688 -professor(p30).professor51,704 -professor(p30).professor51,704 -professor(p31).professor52,720 -professor(p31).professor52,720 -professor(p32).professor53,736 -professor(p32).professor53,736 -professor(p33).professor54,752 -professor(p33).professor54,752 -professor(p34).professor55,768 -professor(p34).professor55,768 -professor(p35).professor56,784 -professor(p35).professor56,784 -professor(p36).professor57,800 -professor(p36).professor57,800 -professor(p37).professor58,816 -professor(p37).professor58,816 -professor(p38).professor59,832 -professor(p38).professor59,832 -professor(p39).professor60,848 -professor(p39).professor60,848 -professor(p40).professor61,864 -professor(p40).professor61,864 -professor(p41).professor62,880 -professor(p41).professor62,880 -professor(p42).professor63,896 -professor(p42).professor63,896 -professor(p43).professor64,912 -professor(p43).professor64,912 -professor(p44).professor65,928 -professor(p44).professor65,928 -professor(p45).professor66,944 -professor(p45).professor66,944 -professor(p46).professor67,960 -professor(p46).professor67,960 -professor(p47).professor68,976 -professor(p47).professor68,976 -professor(p48).professor69,992 -professor(p48).professor69,992 -professor(p49).professor70,1008 -professor(p49).professor70,1008 -professor(p50).professor71,1024 -professor(p50).professor71,1024 -professor(p51).professor72,1040 -professor(p51).professor72,1040 -professor(p52).professor73,1056 -professor(p52).professor73,1056 -professor(p53).professor74,1072 -professor(p53).professor74,1072 -professor(p54).professor75,1088 -professor(p54).professor75,1088 -professor(p55).professor76,1104 -professor(p55).professor76,1104 -professor(p56).professor77,1120 -professor(p56).professor77,1120 -professor(p57).professor78,1136 -professor(p57).professor78,1136 -professor(p58).professor79,1152 -professor(p58).professor79,1152 -professor(p59).professor80,1168 -professor(p59).professor80,1168 -professor(p60).professor81,1184 -professor(p60).professor81,1184 -professor(p61).professor82,1200 -professor(p61).professor82,1200 -professor(p62).professor83,1216 -professor(p62).professor83,1216 -professor(p63).professor84,1232 -professor(p63).professor84,1232 -course(c0,p2).course87,1250 -course(c0,p2).course87,1250 -course(c1,p4).course88,1265 -course(c1,p4).course88,1265 -course(c2,p25).course89,1280 -course(c2,p25).course89,1280 -course(c3,p32).course90,1296 -course(c3,p32).course90,1296 -course(c4,p45).course91,1312 -course(c4,p45).course91,1312 -course(c5,p23).course92,1328 -course(c5,p23).course92,1328 -course(c6,p50).course93,1344 -course(c6,p50).course93,1344 -course(c7,p14).course94,1360 -course(c7,p14).course94,1360 -course(c8,p31).course95,1376 -course(c8,p31).course95,1376 -course(c9,p1).course96,1392 -course(c9,p1).course96,1392 -course(c10,p23).course97,1407 -course(c10,p23).course97,1407 -course(c11,p58).course98,1424 -course(c11,p58).course98,1424 -course(c12,p18).course99,1441 -course(c12,p18).course99,1441 -course(c13,p27).course100,1458 -course(c13,p27).course100,1458 -course(c14,p29).course101,1475 -course(c14,p29).course101,1475 -course(c15,p21).course102,1492 -course(c15,p21).course102,1492 -course(c16,p37).course103,1509 -course(c16,p37).course103,1509 -course(c17,p13).course104,1526 -course(c17,p13).course104,1526 -course(c18,p19).course105,1543 -course(c18,p19).course105,1543 -course(c19,p17).course106,1560 -course(c19,p17).course106,1560 -course(c20,p8).course107,1577 -course(c20,p8).course107,1577 -course(c21,p15).course108,1593 -course(c21,p15).course108,1593 -course(c22,p22).course109,1610 -course(c22,p22).course109,1610 -course(c23,p7).course110,1627 -course(c23,p7).course110,1627 -course(c24,p55).course111,1643 -course(c24,p55).course111,1643 -course(c25,p63).course112,1660 -course(c25,p63).course112,1660 -course(c26,p28).course113,1677 -course(c26,p28).course113,1677 -course(c27,p4).course114,1694 -course(c27,p4).course114,1694 -course(c28,p41).course115,1710 -course(c28,p41).course115,1710 -course(c29,p10).course116,1727 -course(c29,p10).course116,1727 -course(c30,p38).course117,1744 -course(c30,p38).course117,1744 -course(c31,p44).course118,1761 -course(c31,p44).course118,1761 -course(c32,p12).course119,1778 -course(c32,p12).course119,1778 -course(c33,p59).course120,1795 -course(c33,p59).course120,1795 -course(c34,p9).course121,1812 -course(c34,p9).course121,1812 -course(c35,p52).course122,1828 -course(c35,p52).course122,1828 -course(c36,p26).course123,1845 -course(c36,p26).course123,1845 -course(c37,p57).course124,1862 -course(c37,p57).course124,1862 -course(c38,p1).course125,1879 -course(c38,p1).course125,1879 -course(c39,p53).course126,1895 -course(c39,p53).course126,1895 -course(c40,p60).course127,1912 -course(c40,p60).course127,1912 -course(c41,p24).course128,1929 -course(c41,p24).course128,1929 -course(c42,p35).course129,1946 -course(c42,p35).course129,1946 -course(c43,p9).course130,1963 -course(c43,p9).course130,1963 -course(c44,p51).course131,1979 -course(c44,p51).course131,1979 -course(c45,p62).course132,1996 -course(c45,p62).course132,1996 -course(c46,p37).course133,2013 -course(c46,p37).course133,2013 -course(c47,p27).course134,2030 -course(c47,p27).course134,2030 -course(c48,p20).course135,2047 -course(c48,p20).course135,2047 -course(c49,p50).course136,2064 -course(c49,p50).course136,2064 -course(c50,p43).course137,2081 -course(c50,p43).course137,2081 -course(c51,p34).course138,2098 -course(c51,p34).course138,2098 -course(c52,p0).course139,2115 -course(c52,p0).course139,2115 -course(c53,p59).course140,2131 -course(c53,p59).course140,2131 -course(c54,p40).course141,2148 -course(c54,p40).course141,2148 -course(c55,p56).course142,2165 -course(c55,p56).course142,2165 -course(c56,p61).course143,2182 -course(c56,p61).course143,2182 -course(c57,p57).course144,2199 -course(c57,p57).course144,2199 -course(c58,p45).course145,2216 -course(c58,p45).course145,2216 -course(c59,p36).course146,2233 -course(c59,p36).course146,2233 -course(c60,p53).course147,2250 -course(c60,p53).course147,2250 -course(c61,p20).course148,2267 -course(c61,p20).course148,2267 -course(c62,p3).course149,2284 -course(c62,p3).course149,2284 -course(c63,p8).course150,2300 -course(c63,p8).course150,2300 -course(c64,p18).course151,2316 -course(c64,p18).course151,2316 -course(c65,p11).course152,2333 -course(c65,p11).course152,2333 -course(c66,p63).course153,2350 -course(c66,p63).course153,2350 -course(c67,p32).course154,2367 -course(c67,p32).course154,2367 -course(c68,p5).course155,2384 -course(c68,p5).course155,2384 -course(c69,p3).course156,2400 -course(c69,p3).course156,2400 -course(c70,p16).course157,2416 -course(c70,p16).course157,2416 -course(c71,p11).course158,2433 -course(c71,p11).course158,2433 -course(c72,p21).course159,2450 -course(c72,p21).course159,2450 -course(c73,p48).course160,2467 -course(c73,p48).course160,2467 -course(c74,p6).course161,2484 -course(c74,p6).course161,2484 -course(c75,p13).course162,2500 -course(c75,p13).course162,2500 -course(c76,p49).course163,2517 -course(c76,p49).course163,2517 -course(c77,p44).course164,2534 -course(c77,p44).course164,2534 -course(c78,p25).course165,2551 -course(c78,p25).course165,2551 -course(c79,p60).course166,2568 -course(c79,p60).course166,2568 -course(c80,p19).course167,2585 -course(c80,p19).course167,2585 -course(c81,p43).course168,2602 -course(c81,p43).course168,2602 -course(c82,p35).course169,2619 -course(c82,p35).course169,2619 -course(c83,p0).course170,2636 -course(c83,p0).course170,2636 -course(c84,p47).course171,2652 -course(c84,p47).course171,2652 -course(c85,p62).course172,2669 -course(c85,p62).course172,2669 -course(c86,p2).course173,2686 -course(c86,p2).course173,2686 -course(c87,p29).course174,2702 -course(c87,p29).course174,2702 -course(c88,p36).course175,2719 -course(c88,p36).course175,2719 -course(c89,p42).course176,2736 -course(c89,p42).course176,2736 -course(c90,p46).course177,2753 -course(c90,p46).course177,2753 -course(c91,p30).course178,2770 -course(c91,p30).course178,2770 -course(c92,p42).course179,2787 -course(c92,p42).course179,2787 -course(c93,p47).course180,2804 -course(c93,p47).course180,2804 -course(c94,p38).course181,2821 -course(c94,p38).course181,2821 -course(c95,p5).course182,2838 -course(c95,p5).course182,2838 -course(c96,p56).course183,2854 -course(c96,p56).course183,2854 -course(c97,p15).course184,2871 -course(c97,p15).course184,2871 -course(c98,p30).course185,2888 -course(c98,p30).course185,2888 -course(c99,p58).course186,2905 -course(c99,p58).course186,2905 -course(c100,p54).course187,2922 -course(c100,p54).course187,2922 -course(c101,p41).course188,2940 -course(c101,p41).course188,2940 -course(c102,p55).course189,2958 -course(c102,p55).course189,2958 -course(c103,p12).course190,2976 -course(c103,p12).course190,2976 -course(c104,p24).course191,2994 -course(c104,p24).course191,2994 -course(c105,p7).course192,3012 -course(c105,p7).course192,3012 -course(c106,p16).course193,3029 -course(c106,p16).course193,3029 -course(c107,p51).course194,3047 -course(c107,p51).course194,3047 -course(c108,p26).course195,3065 -course(c108,p26).course195,3065 -course(c109,p33).course196,3083 -course(c109,p33).course196,3083 -course(c110,p40).course197,3101 -course(c110,p40).course197,3101 -course(c111,p48).course198,3119 -course(c111,p48).course198,3119 -course(c112,p61).course199,3137 -course(c112,p61).course199,3137 -course(c113,p10).course200,3155 -course(c113,p10).course200,3155 -course(c114,p52).course201,3173 -course(c114,p52).course201,3173 -course(c115,p49).course202,3191 -course(c115,p49).course202,3191 -course(c116,p17).course203,3209 -course(c116,p17).course203,3209 -course(c117,p28).course204,3227 -course(c117,p28).course204,3227 -course(c118,p34).course205,3245 -course(c118,p34).course205,3245 -course(c119,p46).course206,3263 -course(c119,p46).course206,3263 -course(c120,p33).course207,3281 -course(c120,p33).course207,3281 -course(c121,p22).course208,3299 -course(c121,p22).course208,3299 -course(c122,p31).course209,3317 -course(c122,p31).course209,3317 -course(c123,p14).course210,3335 -course(c123,p14).course210,3335 -course(c124,p54).course211,3353 -course(c124,p54).course211,3353 -course(c125,p39).course212,3371 -course(c125,p39).course212,3371 -course(c126,p39).course213,3389 -course(c126,p39).course213,3389 -course(c127,p6).course214,3407 -course(c127,p6).course214,3407 -student(s0).student217,3426 -student(s0).student217,3426 -student(s1).student218,3439 -student(s1).student218,3439 -student(s2).student219,3452 -student(s2).student219,3452 -student(s3).student220,3465 -student(s3).student220,3465 -student(s4).student221,3478 -student(s4).student221,3478 -student(s5).student222,3491 -student(s5).student222,3491 -student(s6).student223,3504 -student(s6).student223,3504 -student(s7).student224,3517 -student(s7).student224,3517 -student(s8).student225,3530 -student(s8).student225,3530 -student(s9).student226,3543 -student(s9).student226,3543 -student(s10).student227,3556 -student(s10).student227,3556 -student(s11).student228,3570 -student(s11).student228,3570 -student(s12).student229,3584 -student(s12).student229,3584 -student(s13).student230,3598 -student(s13).student230,3598 -student(s14).student231,3612 -student(s14).student231,3612 -student(s15).student232,3626 -student(s15).student232,3626 -student(s16).student233,3640 -student(s16).student233,3640 -student(s17).student234,3654 -student(s17).student234,3654 -student(s18).student235,3668 -student(s18).student235,3668 -student(s19).student236,3682 -student(s19).student236,3682 -student(s20).student237,3696 -student(s20).student237,3696 -student(s21).student238,3710 -student(s21).student238,3710 -student(s22).student239,3724 -student(s22).student239,3724 -student(s23).student240,3738 -student(s23).student240,3738 -student(s24).student241,3752 -student(s24).student241,3752 -student(s25).student242,3766 -student(s25).student242,3766 -student(s26).student243,3780 -student(s26).student243,3780 -student(s27).student244,3794 -student(s27).student244,3794 -student(s28).student245,3808 -student(s28).student245,3808 -student(s29).student246,3822 -student(s29).student246,3822 -student(s30).student247,3836 -student(s30).student247,3836 -student(s31).student248,3850 -student(s31).student248,3850 -student(s32).student249,3864 -student(s32).student249,3864 -student(s33).student250,3878 -student(s33).student250,3878 -student(s34).student251,3892 -student(s34).student251,3892 -student(s35).student252,3906 -student(s35).student252,3906 -student(s36).student253,3920 -student(s36).student253,3920 -student(s37).student254,3934 -student(s37).student254,3934 -student(s38).student255,3948 -student(s38).student255,3948 -student(s39).student256,3962 -student(s39).student256,3962 -student(s40).student257,3976 -student(s40).student257,3976 -student(s41).student258,3990 -student(s41).student258,3990 -student(s42).student259,4004 -student(s42).student259,4004 -student(s43).student260,4018 -student(s43).student260,4018 -student(s44).student261,4032 -student(s44).student261,4032 -student(s45).student262,4046 -student(s45).student262,4046 -student(s46).student263,4060 -student(s46).student263,4060 -student(s47).student264,4074 -student(s47).student264,4074 -student(s48).student265,4088 -student(s48).student265,4088 -student(s49).student266,4102 -student(s49).student266,4102 -student(s50).student267,4116 -student(s50).student267,4116 -student(s51).student268,4130 -student(s51).student268,4130 -student(s52).student269,4144 -student(s52).student269,4144 -student(s53).student270,4158 -student(s53).student270,4158 -student(s54).student271,4172 -student(s54).student271,4172 -student(s55).student272,4186 -student(s55).student272,4186 -student(s56).student273,4200 -student(s56).student273,4200 -student(s57).student274,4214 -student(s57).student274,4214 -student(s58).student275,4228 -student(s58).student275,4228 -student(s59).student276,4242 -student(s59).student276,4242 -student(s60).student277,4256 -student(s60).student277,4256 -student(s61).student278,4270 -student(s61).student278,4270 -student(s62).student279,4284 -student(s62).student279,4284 -student(s63).student280,4298 -student(s63).student280,4298 -student(s64).student281,4312 -student(s64).student281,4312 -student(s65).student282,4326 -student(s65).student282,4326 -student(s66).student283,4340 -student(s66).student283,4340 -student(s67).student284,4354 -student(s67).student284,4354 -student(s68).student285,4368 -student(s68).student285,4368 -student(s69).student286,4382 -student(s69).student286,4382 -student(s70).student287,4396 -student(s70).student287,4396 -student(s71).student288,4410 -student(s71).student288,4410 -student(s72).student289,4424 -student(s72).student289,4424 -student(s73).student290,4438 -student(s73).student290,4438 -student(s74).student291,4452 -student(s74).student291,4452 -student(s75).student292,4466 -student(s75).student292,4466 -student(s76).student293,4480 -student(s76).student293,4480 -student(s77).student294,4494 -student(s77).student294,4494 -student(s78).student295,4508 -student(s78).student295,4508 -student(s79).student296,4522 -student(s79).student296,4522 -student(s80).student297,4536 -student(s80).student297,4536 -student(s81).student298,4550 -student(s81).student298,4550 -student(s82).student299,4564 -student(s82).student299,4564 -student(s83).student300,4578 -student(s83).student300,4578 -student(s84).student301,4592 -student(s84).student301,4592 -student(s85).student302,4606 -student(s85).student302,4606 -student(s86).student303,4620 -student(s86).student303,4620 -student(s87).student304,4634 -student(s87).student304,4634 -student(s88).student305,4648 -student(s88).student305,4648 -student(s89).student306,4662 -student(s89).student306,4662 -student(s90).student307,4676 -student(s90).student307,4676 -student(s91).student308,4690 -student(s91).student308,4690 -student(s92).student309,4704 -student(s92).student309,4704 -student(s93).student310,4718 -student(s93).student310,4718 -student(s94).student311,4732 -student(s94).student311,4732 -student(s95).student312,4746 -student(s95).student312,4746 -student(s96).student313,4760 -student(s96).student313,4760 -student(s97).student314,4774 -student(s97).student314,4774 -student(s98).student315,4788 -student(s98).student315,4788 -student(s99).student316,4802 -student(s99).student316,4802 -student(s100).student317,4816 -student(s100).student317,4816 -student(s101).student318,4831 -student(s101).student318,4831 -student(s102).student319,4846 -student(s102).student319,4846 -student(s103).student320,4861 -student(s103).student320,4861 -student(s104).student321,4876 -student(s104).student321,4876 -student(s105).student322,4891 -student(s105).student322,4891 -student(s106).student323,4906 -student(s106).student323,4906 -student(s107).student324,4921 -student(s107).student324,4921 -student(s108).student325,4936 -student(s108).student325,4936 -student(s109).student326,4951 -student(s109).student326,4951 -student(s110).student327,4966 -student(s110).student327,4966 -student(s111).student328,4981 -student(s111).student328,4981 -student(s112).student329,4996 -student(s112).student329,4996 -student(s113).student330,5011 -student(s113).student330,5011 -student(s114).student331,5026 -student(s114).student331,5026 -student(s115).student332,5041 -student(s115).student332,5041 -student(s116).student333,5056 -student(s116).student333,5056 -student(s117).student334,5071 -student(s117).student334,5071 -student(s118).student335,5086 -student(s118).student335,5086 -student(s119).student336,5101 -student(s119).student336,5101 -student(s120).student337,5116 -student(s120).student337,5116 -student(s121).student338,5131 -student(s121).student338,5131 -student(s122).student339,5146 -student(s122).student339,5146 -student(s123).student340,5161 -student(s123).student340,5161 -student(s124).student341,5176 -student(s124).student341,5176 -student(s125).student342,5191 -student(s125).student342,5191 -student(s126).student343,5206 -student(s126).student343,5206 -student(s127).student344,5221 -student(s127).student344,5221 -student(s128).student345,5236 -student(s128).student345,5236 -student(s129).student346,5251 -student(s129).student346,5251 -student(s130).student347,5266 -student(s130).student347,5266 -student(s131).student348,5281 -student(s131).student348,5281 -student(s132).student349,5296 -student(s132).student349,5296 -student(s133).student350,5311 -student(s133).student350,5311 -student(s134).student351,5326 -student(s134).student351,5326 -student(s135).student352,5341 -student(s135).student352,5341 -student(s136).student353,5356 -student(s136).student353,5356 -student(s137).student354,5371 -student(s137).student354,5371 -student(s138).student355,5386 -student(s138).student355,5386 -student(s139).student356,5401 -student(s139).student356,5401 -student(s140).student357,5416 -student(s140).student357,5416 -student(s141).student358,5431 -student(s141).student358,5431 -student(s142).student359,5446 -student(s142).student359,5446 -student(s143).student360,5461 -student(s143).student360,5461 -student(s144).student361,5476 -student(s144).student361,5476 -student(s145).student362,5491 -student(s145).student362,5491 -student(s146).student363,5506 -student(s146).student363,5506 -student(s147).student364,5521 -student(s147).student364,5521 -student(s148).student365,5536 -student(s148).student365,5536 -student(s149).student366,5551 -student(s149).student366,5551 -student(s150).student367,5566 -student(s150).student367,5566 -student(s151).student368,5581 -student(s151).student368,5581 -student(s152).student369,5596 -student(s152).student369,5596 -student(s153).student370,5611 -student(s153).student370,5611 -student(s154).student371,5626 -student(s154).student371,5626 -student(s155).student372,5641 -student(s155).student372,5641 -student(s156).student373,5656 -student(s156).student373,5656 -student(s157).student374,5671 -student(s157).student374,5671 -student(s158).student375,5686 -student(s158).student375,5686 -student(s159).student376,5701 -student(s159).student376,5701 -student(s160).student377,5716 -student(s160).student377,5716 -student(s161).student378,5731 -student(s161).student378,5731 -student(s162).student379,5746 -student(s162).student379,5746 -student(s163).student380,5761 -student(s163).student380,5761 -student(s164).student381,5776 -student(s164).student381,5776 -student(s165).student382,5791 -student(s165).student382,5791 -student(s166).student383,5806 -student(s166).student383,5806 -student(s167).student384,5821 -student(s167).student384,5821 -student(s168).student385,5836 -student(s168).student385,5836 -student(s169).student386,5851 -student(s169).student386,5851 -student(s170).student387,5866 -student(s170).student387,5866 -student(s171).student388,5881 -student(s171).student388,5881 -student(s172).student389,5896 -student(s172).student389,5896 -student(s173).student390,5911 -student(s173).student390,5911 -student(s174).student391,5926 -student(s174).student391,5926 -student(s175).student392,5941 -student(s175).student392,5941 -student(s176).student393,5956 -student(s176).student393,5956 -student(s177).student394,5971 -student(s177).student394,5971 -student(s178).student395,5986 -student(s178).student395,5986 -student(s179).student396,6001 -student(s179).student396,6001 -student(s180).student397,6016 -student(s180).student397,6016 -student(s181).student398,6031 -student(s181).student398,6031 -student(s182).student399,6046 -student(s182).student399,6046 -student(s183).student400,6061 -student(s183).student400,6061 -student(s184).student401,6076 -student(s184).student401,6076 -student(s185).student402,6091 -student(s185).student402,6091 -student(s186).student403,6106 -student(s186).student403,6106 -student(s187).student404,6121 -student(s187).student404,6121 -student(s188).student405,6136 -student(s188).student405,6136 -student(s189).student406,6151 -student(s189).student406,6151 -student(s190).student407,6166 -student(s190).student407,6166 -student(s191).student408,6181 -student(s191).student408,6181 -student(s192).student409,6196 -student(s192).student409,6196 -student(s193).student410,6211 -student(s193).student410,6211 -student(s194).student411,6226 -student(s194).student411,6226 -student(s195).student412,6241 -student(s195).student412,6241 -student(s196).student413,6256 -student(s196).student413,6256 -student(s197).student414,6271 -student(s197).student414,6271 -student(s198).student415,6286 -student(s198).student415,6286 -student(s199).student416,6301 -student(s199).student416,6301 -student(s200).student417,6316 -student(s200).student417,6316 -student(s201).student418,6331 -student(s201).student418,6331 -student(s202).student419,6346 -student(s202).student419,6346 -student(s203).student420,6361 -student(s203).student420,6361 -student(s204).student421,6376 -student(s204).student421,6376 -student(s205).student422,6391 -student(s205).student422,6391 -student(s206).student423,6406 -student(s206).student423,6406 -student(s207).student424,6421 -student(s207).student424,6421 -student(s208).student425,6436 -student(s208).student425,6436 -student(s209).student426,6451 -student(s209).student426,6451 -student(s210).student427,6466 -student(s210).student427,6466 -student(s211).student428,6481 -student(s211).student428,6481 -student(s212).student429,6496 -student(s212).student429,6496 -student(s213).student430,6511 -student(s213).student430,6511 -student(s214).student431,6526 -student(s214).student431,6526 -student(s215).student432,6541 -student(s215).student432,6541 -student(s216).student433,6556 -student(s216).student433,6556 -student(s217).student434,6571 -student(s217).student434,6571 -student(s218).student435,6586 -student(s218).student435,6586 -student(s219).student436,6601 -student(s219).student436,6601 -student(s220).student437,6616 -student(s220).student437,6616 -student(s221).student438,6631 -student(s221).student438,6631 -student(s222).student439,6646 -student(s222).student439,6646 -student(s223).student440,6661 -student(s223).student440,6661 -student(s224).student441,6676 -student(s224).student441,6676 -student(s225).student442,6691 -student(s225).student442,6691 -student(s226).student443,6706 -student(s226).student443,6706 -student(s227).student444,6721 -student(s227).student444,6721 -student(s228).student445,6736 -student(s228).student445,6736 -student(s229).student446,6751 -student(s229).student446,6751 -student(s230).student447,6766 -student(s230).student447,6766 -student(s231).student448,6781 -student(s231).student448,6781 -student(s232).student449,6796 -student(s232).student449,6796 -student(s233).student450,6811 -student(s233).student450,6811 -student(s234).student451,6826 -student(s234).student451,6826 -student(s235).student452,6841 -student(s235).student452,6841 -student(s236).student453,6856 -student(s236).student453,6856 -student(s237).student454,6871 -student(s237).student454,6871 -student(s238).student455,6886 -student(s238).student455,6886 -student(s239).student456,6901 -student(s239).student456,6901 -student(s240).student457,6916 -student(s240).student457,6916 -student(s241).student458,6931 -student(s241).student458,6931 -student(s242).student459,6946 -student(s242).student459,6946 -student(s243).student460,6961 -student(s243).student460,6961 -student(s244).student461,6976 -student(s244).student461,6976 -student(s245).student462,6991 -student(s245).student462,6991 -student(s246).student463,7006 -student(s246).student463,7006 -student(s247).student464,7021 -student(s247).student464,7021 -student(s248).student465,7036 -student(s248).student465,7036 -student(s249).student466,7051 -student(s249).student466,7051 -student(s250).student467,7066 -student(s250).student467,7066 -student(s251).student468,7081 -student(s251).student468,7081 -student(s252).student469,7096 -student(s252).student469,7096 -student(s253).student470,7111 -student(s253).student470,7111 -student(s254).student471,7126 -student(s254).student471,7126 -student(s255).student472,7141 -student(s255).student472,7141 -student(s256).student473,7156 -student(s256).student473,7156 -student(s257).student474,7171 -student(s257).student474,7171 -student(s258).student475,7186 -student(s258).student475,7186 -student(s259).student476,7201 -student(s259).student476,7201 -student(s260).student477,7216 -student(s260).student477,7216 -student(s261).student478,7231 -student(s261).student478,7231 -student(s262).student479,7246 -student(s262).student479,7246 -student(s263).student480,7261 -student(s263).student480,7261 -student(s264).student481,7276 -student(s264).student481,7276 -student(s265).student482,7291 -student(s265).student482,7291 -student(s266).student483,7306 -student(s266).student483,7306 -student(s267).student484,7321 -student(s267).student484,7321 -student(s268).student485,7336 -student(s268).student485,7336 -student(s269).student486,7351 -student(s269).student486,7351 -student(s270).student487,7366 -student(s270).student487,7366 -student(s271).student488,7381 -student(s271).student488,7381 -student(s272).student489,7396 -student(s272).student489,7396 -student(s273).student490,7411 -student(s273).student490,7411 -student(s274).student491,7426 -student(s274).student491,7426 -student(s275).student492,7441 -student(s275).student492,7441 -student(s276).student493,7456 -student(s276).student493,7456 -student(s277).student494,7471 -student(s277).student494,7471 -student(s278).student495,7486 -student(s278).student495,7486 -student(s279).student496,7501 -student(s279).student496,7501 -student(s280).student497,7516 -student(s280).student497,7516 -student(s281).student498,7531 -student(s281).student498,7531 -student(s282).student499,7546 -student(s282).student499,7546 -student(s283).student500,7561 -student(s283).student500,7561 -student(s284).student501,7576 -student(s284).student501,7576 -student(s285).student502,7591 -student(s285).student502,7591 -student(s286).student503,7606 -student(s286).student503,7606 -student(s287).student504,7621 -student(s287).student504,7621 -student(s288).student505,7636 -student(s288).student505,7636 -student(s289).student506,7651 -student(s289).student506,7651 -student(s290).student507,7666 -student(s290).student507,7666 -student(s291).student508,7681 -student(s291).student508,7681 -student(s292).student509,7696 -student(s292).student509,7696 -student(s293).student510,7711 -student(s293).student510,7711 -student(s294).student511,7726 -student(s294).student511,7726 -student(s295).student512,7741 -student(s295).student512,7741 -student(s296).student513,7756 -student(s296).student513,7756 -student(s297).student514,7771 -student(s297).student514,7771 -student(s298).student515,7786 -student(s298).student515,7786 -student(s299).student516,7801 -student(s299).student516,7801 -student(s300).student517,7816 -student(s300).student517,7816 -student(s301).student518,7831 -student(s301).student518,7831 -student(s302).student519,7846 -student(s302).student519,7846 -student(s303).student520,7861 -student(s303).student520,7861 -student(s304).student521,7876 -student(s304).student521,7876 -student(s305).student522,7891 -student(s305).student522,7891 -student(s306).student523,7906 -student(s306).student523,7906 -student(s307).student524,7921 -student(s307).student524,7921 -student(s308).student525,7936 -student(s308).student525,7936 -student(s309).student526,7951 -student(s309).student526,7951 -student(s310).student527,7966 -student(s310).student527,7966 -student(s311).student528,7981 -student(s311).student528,7981 -student(s312).student529,7996 -student(s312).student529,7996 -student(s313).student530,8011 -student(s313).student530,8011 -student(s314).student531,8026 -student(s314).student531,8026 -student(s315).student532,8041 -student(s315).student532,8041 -student(s316).student533,8056 -student(s316).student533,8056 -student(s317).student534,8071 -student(s317).student534,8071 -student(s318).student535,8086 -student(s318).student535,8086 -student(s319).student536,8101 -student(s319).student536,8101 -student(s320).student537,8116 -student(s320).student537,8116 -student(s321).student538,8131 -student(s321).student538,8131 -student(s322).student539,8146 -student(s322).student539,8146 -student(s323).student540,8161 -student(s323).student540,8161 -student(s324).student541,8176 -student(s324).student541,8176 -student(s325).student542,8191 -student(s325).student542,8191 -student(s326).student543,8206 -student(s326).student543,8206 -student(s327).student544,8221 -student(s327).student544,8221 -student(s328).student545,8236 -student(s328).student545,8236 -student(s329).student546,8251 -student(s329).student546,8251 -student(s330).student547,8266 -student(s330).student547,8266 -student(s331).student548,8281 -student(s331).student548,8281 -student(s332).student549,8296 -student(s332).student549,8296 -student(s333).student550,8311 -student(s333).student550,8311 -student(s334).student551,8326 -student(s334).student551,8326 -student(s335).student552,8341 -student(s335).student552,8341 -student(s336).student553,8356 -student(s336).student553,8356 -student(s337).student554,8371 -student(s337).student554,8371 -student(s338).student555,8386 -student(s338).student555,8386 -student(s339).student556,8401 -student(s339).student556,8401 -student(s340).student557,8416 -student(s340).student557,8416 -student(s341).student558,8431 -student(s341).student558,8431 -student(s342).student559,8446 -student(s342).student559,8446 -student(s343).student560,8461 -student(s343).student560,8461 -student(s344).student561,8476 -student(s344).student561,8476 -student(s345).student562,8491 -student(s345).student562,8491 -student(s346).student563,8506 -student(s346).student563,8506 -student(s347).student564,8521 -student(s347).student564,8521 -student(s348).student565,8536 -student(s348).student565,8536 -student(s349).student566,8551 -student(s349).student566,8551 -student(s350).student567,8566 -student(s350).student567,8566 -student(s351).student568,8581 -student(s351).student568,8581 -student(s352).student569,8596 -student(s352).student569,8596 -student(s353).student570,8611 -student(s353).student570,8611 -student(s354).student571,8626 -student(s354).student571,8626 -student(s355).student572,8641 -student(s355).student572,8641 -student(s356).student573,8656 -student(s356).student573,8656 -student(s357).student574,8671 -student(s357).student574,8671 -student(s358).student575,8686 -student(s358).student575,8686 -student(s359).student576,8701 -student(s359).student576,8701 -student(s360).student577,8716 -student(s360).student577,8716 -student(s361).student578,8731 -student(s361).student578,8731 -student(s362).student579,8746 -student(s362).student579,8746 -student(s363).student580,8761 -student(s363).student580,8761 -student(s364).student581,8776 -student(s364).student581,8776 -student(s365).student582,8791 -student(s365).student582,8791 -student(s366).student583,8806 -student(s366).student583,8806 -student(s367).student584,8821 -student(s367).student584,8821 -student(s368).student585,8836 -student(s368).student585,8836 -student(s369).student586,8851 -student(s369).student586,8851 -student(s370).student587,8866 -student(s370).student587,8866 -student(s371).student588,8881 -student(s371).student588,8881 -student(s372).student589,8896 -student(s372).student589,8896 -student(s373).student590,8911 -student(s373).student590,8911 -student(s374).student591,8926 -student(s374).student591,8926 -student(s375).student592,8941 -student(s375).student592,8941 -student(s376).student593,8956 -student(s376).student593,8956 -student(s377).student594,8971 -student(s377).student594,8971 -student(s378).student595,8986 -student(s378).student595,8986 -student(s379).student596,9001 -student(s379).student596,9001 -student(s380).student597,9016 -student(s380).student597,9016 -student(s381).student598,9031 -student(s381).student598,9031 -student(s382).student599,9046 -student(s382).student599,9046 -student(s383).student600,9061 -student(s383).student600,9061 -student(s384).student601,9076 -student(s384).student601,9076 -student(s385).student602,9091 -student(s385).student602,9091 -student(s386).student603,9106 -student(s386).student603,9106 -student(s387).student604,9121 -student(s387).student604,9121 -student(s388).student605,9136 -student(s388).student605,9136 -student(s389).student606,9151 -student(s389).student606,9151 -student(s390).student607,9166 -student(s390).student607,9166 -student(s391).student608,9181 -student(s391).student608,9181 -student(s392).student609,9196 -student(s392).student609,9196 -student(s393).student610,9211 -student(s393).student610,9211 -student(s394).student611,9226 -student(s394).student611,9226 -student(s395).student612,9241 -student(s395).student612,9241 -student(s396).student613,9256 -student(s396).student613,9256 -student(s397).student614,9271 -student(s397).student614,9271 -student(s398).student615,9286 -student(s398).student615,9286 -student(s399).student616,9301 -student(s399).student616,9301 -student(s400).student617,9316 -student(s400).student617,9316 -student(s401).student618,9331 -student(s401).student618,9331 -student(s402).student619,9346 -student(s402).student619,9346 -student(s403).student620,9361 -student(s403).student620,9361 -student(s404).student621,9376 -student(s404).student621,9376 -student(s405).student622,9391 -student(s405).student622,9391 -student(s406).student623,9406 -student(s406).student623,9406 -student(s407).student624,9421 -student(s407).student624,9421 -student(s408).student625,9436 -student(s408).student625,9436 -student(s409).student626,9451 -student(s409).student626,9451 -student(s410).student627,9466 -student(s410).student627,9466 -student(s411).student628,9481 -student(s411).student628,9481 -student(s412).student629,9496 -student(s412).student629,9496 -student(s413).student630,9511 -student(s413).student630,9511 -student(s414).student631,9526 -student(s414).student631,9526 -student(s415).student632,9541 -student(s415).student632,9541 -student(s416).student633,9556 -student(s416).student633,9556 -student(s417).student634,9571 -student(s417).student634,9571 -student(s418).student635,9586 -student(s418).student635,9586 -student(s419).student636,9601 -student(s419).student636,9601 -student(s420).student637,9616 -student(s420).student637,9616 -student(s421).student638,9631 -student(s421).student638,9631 -student(s422).student639,9646 -student(s422).student639,9646 -student(s423).student640,9661 -student(s423).student640,9661 -student(s424).student641,9676 -student(s424).student641,9676 -student(s425).student642,9691 -student(s425).student642,9691 -student(s426).student643,9706 -student(s426).student643,9706 -student(s427).student644,9721 -student(s427).student644,9721 -student(s428).student645,9736 -student(s428).student645,9736 -student(s429).student646,9751 -student(s429).student646,9751 -student(s430).student647,9766 -student(s430).student647,9766 -student(s431).student648,9781 -student(s431).student648,9781 -student(s432).student649,9796 -student(s432).student649,9796 -student(s433).student650,9811 -student(s433).student650,9811 -student(s434).student651,9826 -student(s434).student651,9826 -student(s435).student652,9841 -student(s435).student652,9841 -student(s436).student653,9856 -student(s436).student653,9856 -student(s437).student654,9871 -student(s437).student654,9871 -student(s438).student655,9886 -student(s438).student655,9886 -student(s439).student656,9901 -student(s439).student656,9901 -student(s440).student657,9916 -student(s440).student657,9916 -student(s441).student658,9931 -student(s441).student658,9931 -student(s442).student659,9946 -student(s442).student659,9946 -student(s443).student660,9961 -student(s443).student660,9961 -student(s444).student661,9976 -student(s444).student661,9976 -student(s445).student662,9991 -student(s445).student662,9991 -student(s446).student663,10006 -student(s446).student663,10006 -student(s447).student664,10021 -student(s447).student664,10021 -student(s448).student665,10036 -student(s448).student665,10036 -student(s449).student666,10051 -student(s449).student666,10051 -student(s450).student667,10066 -student(s450).student667,10066 -student(s451).student668,10081 -student(s451).student668,10081 -student(s452).student669,10096 -student(s452).student669,10096 -student(s453).student670,10111 -student(s453).student670,10111 -student(s454).student671,10126 -student(s454).student671,10126 -student(s455).student672,10141 -student(s455).student672,10141 -student(s456).student673,10156 -student(s456).student673,10156 -student(s457).student674,10171 -student(s457).student674,10171 -student(s458).student675,10186 -student(s458).student675,10186 -student(s459).student676,10201 -student(s459).student676,10201 -student(s460).student677,10216 -student(s460).student677,10216 -student(s461).student678,10231 -student(s461).student678,10231 -student(s462).student679,10246 -student(s462).student679,10246 -student(s463).student680,10261 -student(s463).student680,10261 -student(s464).student681,10276 -student(s464).student681,10276 -student(s465).student682,10291 -student(s465).student682,10291 -student(s466).student683,10306 -student(s466).student683,10306 -student(s467).student684,10321 -student(s467).student684,10321 -student(s468).student685,10336 -student(s468).student685,10336 -student(s469).student686,10351 -student(s469).student686,10351 -student(s470).student687,10366 -student(s470).student687,10366 -student(s471).student688,10381 -student(s471).student688,10381 -student(s472).student689,10396 -student(s472).student689,10396 -student(s473).student690,10411 -student(s473).student690,10411 -student(s474).student691,10426 -student(s474).student691,10426 -student(s475).student692,10441 -student(s475).student692,10441 -student(s476).student693,10456 -student(s476).student693,10456 -student(s477).student694,10471 -student(s477).student694,10471 -student(s478).student695,10486 -student(s478).student695,10486 -student(s479).student696,10501 -student(s479).student696,10501 -student(s480).student697,10516 -student(s480).student697,10516 -student(s481).student698,10531 -student(s481).student698,10531 -student(s482).student699,10546 -student(s482).student699,10546 -student(s483).student700,10561 -student(s483).student700,10561 -student(s484).student701,10576 -student(s484).student701,10576 -student(s485).student702,10591 -student(s485).student702,10591 -student(s486).student703,10606 -student(s486).student703,10606 -student(s487).student704,10621 -student(s487).student704,10621 -student(s488).student705,10636 -student(s488).student705,10636 -student(s489).student706,10651 -student(s489).student706,10651 -student(s490).student707,10666 -student(s490).student707,10666 -student(s491).student708,10681 -student(s491).student708,10681 -student(s492).student709,10696 -student(s492).student709,10696 -student(s493).student710,10711 -student(s493).student710,10711 -student(s494).student711,10726 -student(s494).student711,10726 -student(s495).student712,10741 -student(s495).student712,10741 -student(s496).student713,10756 -student(s496).student713,10756 -student(s497).student714,10771 -student(s497).student714,10771 -student(s498).student715,10786 -student(s498).student715,10786 -student(s499).student716,10801 -student(s499).student716,10801 -student(s500).student717,10816 -student(s500).student717,10816 -student(s501).student718,10831 -student(s501).student718,10831 -student(s502).student719,10846 -student(s502).student719,10846 -student(s503).student720,10861 -student(s503).student720,10861 -student(s504).student721,10876 -student(s504).student721,10876 -student(s505).student722,10891 -student(s505).student722,10891 -student(s506).student723,10906 -student(s506).student723,10906 -student(s507).student724,10921 -student(s507).student724,10921 -student(s508).student725,10936 -student(s508).student725,10936 -student(s509).student726,10951 -student(s509).student726,10951 -student(s510).student727,10966 -student(s510).student727,10966 -student(s511).student728,10981 -student(s511).student728,10981 -student(s512).student729,10996 -student(s512).student729,10996 -student(s513).student730,11011 -student(s513).student730,11011 -student(s514).student731,11026 -student(s514).student731,11026 -student(s515).student732,11041 -student(s515).student732,11041 -student(s516).student733,11056 -student(s516).student733,11056 -student(s517).student734,11071 -student(s517).student734,11071 -student(s518).student735,11086 -student(s518).student735,11086 -student(s519).student736,11101 -student(s519).student736,11101 -student(s520).student737,11116 -student(s520).student737,11116 -student(s521).student738,11131 -student(s521).student738,11131 -student(s522).student739,11146 -student(s522).student739,11146 -student(s523).student740,11161 -student(s523).student740,11161 -student(s524).student741,11176 -student(s524).student741,11176 -student(s525).student742,11191 -student(s525).student742,11191 -student(s526).student743,11206 -student(s526).student743,11206 -student(s527).student744,11221 -student(s527).student744,11221 -student(s528).student745,11236 -student(s528).student745,11236 -student(s529).student746,11251 -student(s529).student746,11251 -student(s530).student747,11266 -student(s530).student747,11266 -student(s531).student748,11281 -student(s531).student748,11281 -student(s532).student749,11296 -student(s532).student749,11296 -student(s533).student750,11311 -student(s533).student750,11311 -student(s534).student751,11326 -student(s534).student751,11326 -student(s535).student752,11341 -student(s535).student752,11341 -student(s536).student753,11356 -student(s536).student753,11356 -student(s537).student754,11371 -student(s537).student754,11371 -student(s538).student755,11386 -student(s538).student755,11386 -student(s539).student756,11401 -student(s539).student756,11401 -student(s540).student757,11416 -student(s540).student757,11416 -student(s541).student758,11431 -student(s541).student758,11431 -student(s542).student759,11446 -student(s542).student759,11446 -student(s543).student760,11461 -student(s543).student760,11461 -student(s544).student761,11476 -student(s544).student761,11476 -student(s545).student762,11491 -student(s545).student762,11491 -student(s546).student763,11506 -student(s546).student763,11506 -student(s547).student764,11521 -student(s547).student764,11521 -student(s548).student765,11536 -student(s548).student765,11536 -student(s549).student766,11551 -student(s549).student766,11551 -student(s550).student767,11566 -student(s550).student767,11566 -student(s551).student768,11581 -student(s551).student768,11581 -student(s552).student769,11596 -student(s552).student769,11596 -student(s553).student770,11611 -student(s553).student770,11611 -student(s554).student771,11626 -student(s554).student771,11626 -student(s555).student772,11641 -student(s555).student772,11641 -student(s556).student773,11656 -student(s556).student773,11656 -student(s557).student774,11671 -student(s557).student774,11671 -student(s558).student775,11686 -student(s558).student775,11686 -student(s559).student776,11701 -student(s559).student776,11701 -student(s560).student777,11716 -student(s560).student777,11716 -student(s561).student778,11731 -student(s561).student778,11731 -student(s562).student779,11746 -student(s562).student779,11746 -student(s563).student780,11761 -student(s563).student780,11761 -student(s564).student781,11776 -student(s564).student781,11776 -student(s565).student782,11791 -student(s565).student782,11791 -student(s566).student783,11806 -student(s566).student783,11806 -student(s567).student784,11821 -student(s567).student784,11821 -student(s568).student785,11836 -student(s568).student785,11836 -student(s569).student786,11851 -student(s569).student786,11851 -student(s570).student787,11866 -student(s570).student787,11866 -student(s571).student788,11881 -student(s571).student788,11881 -student(s572).student789,11896 -student(s572).student789,11896 -student(s573).student790,11911 -student(s573).student790,11911 -student(s574).student791,11926 -student(s574).student791,11926 -student(s575).student792,11941 -student(s575).student792,11941 -student(s576).student793,11956 -student(s576).student793,11956 -student(s577).student794,11971 -student(s577).student794,11971 -student(s578).student795,11986 -student(s578).student795,11986 -student(s579).student796,12001 -student(s579).student796,12001 -student(s580).student797,12016 -student(s580).student797,12016 -student(s581).student798,12031 -student(s581).student798,12031 -student(s582).student799,12046 -student(s582).student799,12046 -student(s583).student800,12061 -student(s583).student800,12061 -student(s584).student801,12076 -student(s584).student801,12076 -student(s585).student802,12091 -student(s585).student802,12091 -student(s586).student803,12106 -student(s586).student803,12106 -student(s587).student804,12121 -student(s587).student804,12121 -student(s588).student805,12136 -student(s588).student805,12136 -student(s589).student806,12151 -student(s589).student806,12151 -student(s590).student807,12166 -student(s590).student807,12166 -student(s591).student808,12181 -student(s591).student808,12181 -student(s592).student809,12196 -student(s592).student809,12196 -student(s593).student810,12211 -student(s593).student810,12211 -student(s594).student811,12226 -student(s594).student811,12226 -student(s595).student812,12241 -student(s595).student812,12241 -student(s596).student813,12256 -student(s596).student813,12256 -student(s597).student814,12271 -student(s597).student814,12271 -student(s598).student815,12286 -student(s598).student815,12286 -student(s599).student816,12301 -student(s599).student816,12301 -student(s600).student817,12316 -student(s600).student817,12316 -student(s601).student818,12331 -student(s601).student818,12331 -student(s602).student819,12346 -student(s602).student819,12346 -student(s603).student820,12361 -student(s603).student820,12361 -student(s604).student821,12376 -student(s604).student821,12376 -student(s605).student822,12391 -student(s605).student822,12391 -student(s606).student823,12406 -student(s606).student823,12406 -student(s607).student824,12421 -student(s607).student824,12421 -student(s608).student825,12436 -student(s608).student825,12436 -student(s609).student826,12451 -student(s609).student826,12451 -student(s610).student827,12466 -student(s610).student827,12466 -student(s611).student828,12481 -student(s611).student828,12481 -student(s612).student829,12496 -student(s612).student829,12496 -student(s613).student830,12511 -student(s613).student830,12511 -student(s614).student831,12526 -student(s614).student831,12526 -student(s615).student832,12541 -student(s615).student832,12541 -student(s616).student833,12556 -student(s616).student833,12556 -student(s617).student834,12571 -student(s617).student834,12571 -student(s618).student835,12586 -student(s618).student835,12586 -student(s619).student836,12601 -student(s619).student836,12601 -student(s620).student837,12616 -student(s620).student837,12616 -student(s621).student838,12631 -student(s621).student838,12631 -student(s622).student839,12646 -student(s622).student839,12646 -student(s623).student840,12661 -student(s623).student840,12661 -student(s624).student841,12676 -student(s624).student841,12676 -student(s625).student842,12691 -student(s625).student842,12691 -student(s626).student843,12706 -student(s626).student843,12706 -student(s627).student844,12721 -student(s627).student844,12721 -student(s628).student845,12736 -student(s628).student845,12736 -student(s629).student846,12751 -student(s629).student846,12751 -student(s630).student847,12766 -student(s630).student847,12766 -student(s631).student848,12781 -student(s631).student848,12781 -student(s632).student849,12796 -student(s632).student849,12796 -student(s633).student850,12811 -student(s633).student850,12811 -student(s634).student851,12826 -student(s634).student851,12826 -student(s635).student852,12841 -student(s635).student852,12841 -student(s636).student853,12856 -student(s636).student853,12856 -student(s637).student854,12871 -student(s637).student854,12871 -student(s638).student855,12886 -student(s638).student855,12886 -student(s639).student856,12901 -student(s639).student856,12901 -student(s640).student857,12916 -student(s640).student857,12916 -student(s641).student858,12931 -student(s641).student858,12931 -student(s642).student859,12946 -student(s642).student859,12946 -student(s643).student860,12961 -student(s643).student860,12961 -student(s644).student861,12976 -student(s644).student861,12976 -student(s645).student862,12991 -student(s645).student862,12991 -student(s646).student863,13006 -student(s646).student863,13006 -student(s647).student864,13021 -student(s647).student864,13021 -student(s648).student865,13036 -student(s648).student865,13036 -student(s649).student866,13051 -student(s649).student866,13051 -student(s650).student867,13066 -student(s650).student867,13066 -student(s651).student868,13081 -student(s651).student868,13081 -student(s652).student869,13096 -student(s652).student869,13096 -student(s653).student870,13111 -student(s653).student870,13111 -student(s654).student871,13126 -student(s654).student871,13126 -student(s655).student872,13141 -student(s655).student872,13141 -student(s656).student873,13156 -student(s656).student873,13156 -student(s657).student874,13171 -student(s657).student874,13171 -student(s658).student875,13186 -student(s658).student875,13186 -student(s659).student876,13201 -student(s659).student876,13201 -student(s660).student877,13216 -student(s660).student877,13216 -student(s661).student878,13231 -student(s661).student878,13231 -student(s662).student879,13246 -student(s662).student879,13246 -student(s663).student880,13261 -student(s663).student880,13261 -student(s664).student881,13276 -student(s664).student881,13276 -student(s665).student882,13291 -student(s665).student882,13291 -student(s666).student883,13306 -student(s666).student883,13306 -student(s667).student884,13321 -student(s667).student884,13321 -student(s668).student885,13336 -student(s668).student885,13336 -student(s669).student886,13351 -student(s669).student886,13351 -student(s670).student887,13366 -student(s670).student887,13366 -student(s671).student888,13381 -student(s671).student888,13381 -student(s672).student889,13396 -student(s672).student889,13396 -student(s673).student890,13411 -student(s673).student890,13411 -student(s674).student891,13426 -student(s674).student891,13426 -student(s675).student892,13441 -student(s675).student892,13441 -student(s676).student893,13456 -student(s676).student893,13456 -student(s677).student894,13471 -student(s677).student894,13471 -student(s678).student895,13486 -student(s678).student895,13486 -student(s679).student896,13501 -student(s679).student896,13501 -student(s680).student897,13516 -student(s680).student897,13516 -student(s681).student898,13531 -student(s681).student898,13531 -student(s682).student899,13546 -student(s682).student899,13546 -student(s683).student900,13561 -student(s683).student900,13561 -student(s684).student901,13576 -student(s684).student901,13576 -student(s685).student902,13591 -student(s685).student902,13591 -student(s686).student903,13606 -student(s686).student903,13606 -student(s687).student904,13621 -student(s687).student904,13621 -student(s688).student905,13636 -student(s688).student905,13636 -student(s689).student906,13651 -student(s689).student906,13651 -student(s690).student907,13666 -student(s690).student907,13666 -student(s691).student908,13681 -student(s691).student908,13681 -student(s692).student909,13696 -student(s692).student909,13696 -student(s693).student910,13711 -student(s693).student910,13711 -student(s694).student911,13726 -student(s694).student911,13726 -student(s695).student912,13741 -student(s695).student912,13741 -student(s696).student913,13756 -student(s696).student913,13756 -student(s697).student914,13771 -student(s697).student914,13771 -student(s698).student915,13786 -student(s698).student915,13786 -student(s699).student916,13801 -student(s699).student916,13801 -student(s700).student917,13816 -student(s700).student917,13816 -student(s701).student918,13831 -student(s701).student918,13831 -student(s702).student919,13846 -student(s702).student919,13846 -student(s703).student920,13861 -student(s703).student920,13861 -student(s704).student921,13876 -student(s704).student921,13876 -student(s705).student922,13891 -student(s705).student922,13891 -student(s706).student923,13906 -student(s706).student923,13906 -student(s707).student924,13921 -student(s707).student924,13921 -student(s708).student925,13936 -student(s708).student925,13936 -student(s709).student926,13951 -student(s709).student926,13951 -student(s710).student927,13966 -student(s710).student927,13966 -student(s711).student928,13981 -student(s711).student928,13981 -student(s712).student929,13996 -student(s712).student929,13996 -student(s713).student930,14011 -student(s713).student930,14011 -student(s714).student931,14026 -student(s714).student931,14026 -student(s715).student932,14041 -student(s715).student932,14041 -student(s716).student933,14056 -student(s716).student933,14056 -student(s717).student934,14071 -student(s717).student934,14071 -student(s718).student935,14086 -student(s718).student935,14086 -student(s719).student936,14101 -student(s719).student936,14101 -student(s720).student937,14116 -student(s720).student937,14116 -student(s721).student938,14131 -student(s721).student938,14131 -student(s722).student939,14146 -student(s722).student939,14146 -student(s723).student940,14161 -student(s723).student940,14161 -student(s724).student941,14176 -student(s724).student941,14176 -student(s725).student942,14191 -student(s725).student942,14191 -student(s726).student943,14206 -student(s726).student943,14206 -student(s727).student944,14221 -student(s727).student944,14221 -student(s728).student945,14236 -student(s728).student945,14236 -student(s729).student946,14251 -student(s729).student946,14251 -student(s730).student947,14266 -student(s730).student947,14266 -student(s731).student948,14281 -student(s731).student948,14281 -student(s732).student949,14296 -student(s732).student949,14296 -student(s733).student950,14311 -student(s733).student950,14311 -student(s734).student951,14326 -student(s734).student951,14326 -student(s735).student952,14341 -student(s735).student952,14341 -student(s736).student953,14356 -student(s736).student953,14356 -student(s737).student954,14371 -student(s737).student954,14371 -student(s738).student955,14386 -student(s738).student955,14386 -student(s739).student956,14401 -student(s739).student956,14401 -student(s740).student957,14416 -student(s740).student957,14416 -student(s741).student958,14431 -student(s741).student958,14431 -student(s742).student959,14446 -student(s742).student959,14446 -student(s743).student960,14461 -student(s743).student960,14461 -student(s744).student961,14476 -student(s744).student961,14476 -student(s745).student962,14491 -student(s745).student962,14491 -student(s746).student963,14506 -student(s746).student963,14506 -student(s747).student964,14521 -student(s747).student964,14521 -student(s748).student965,14536 -student(s748).student965,14536 -student(s749).student966,14551 -student(s749).student966,14551 -student(s750).student967,14566 -student(s750).student967,14566 -student(s751).student968,14581 -student(s751).student968,14581 -student(s752).student969,14596 -student(s752).student969,14596 -student(s753).student970,14611 -student(s753).student970,14611 -student(s754).student971,14626 -student(s754).student971,14626 -student(s755).student972,14641 -student(s755).student972,14641 -student(s756).student973,14656 -student(s756).student973,14656 -student(s757).student974,14671 -student(s757).student974,14671 -student(s758).student975,14686 -student(s758).student975,14686 -student(s759).student976,14701 -student(s759).student976,14701 -student(s760).student977,14716 -student(s760).student977,14716 -student(s761).student978,14731 -student(s761).student978,14731 -student(s762).student979,14746 -student(s762).student979,14746 -student(s763).student980,14761 -student(s763).student980,14761 -student(s764).student981,14776 -student(s764).student981,14776 -student(s765).student982,14791 -student(s765).student982,14791 -student(s766).student983,14806 -student(s766).student983,14806 -student(s767).student984,14821 -student(s767).student984,14821 -student(s768).student985,14836 -student(s768).student985,14836 -student(s769).student986,14851 -student(s769).student986,14851 -student(s770).student987,14866 -student(s770).student987,14866 -student(s771).student988,14881 -student(s771).student988,14881 -student(s772).student989,14896 -student(s772).student989,14896 -student(s773).student990,14911 -student(s773).student990,14911 -student(s774).student991,14926 -student(s774).student991,14926 -student(s775).student992,14941 -student(s775).student992,14941 -student(s776).student993,14956 -student(s776).student993,14956 -student(s777).student994,14971 -student(s777).student994,14971 -student(s778).student995,14986 -student(s778).student995,14986 -student(s779).student996,15001 -student(s779).student996,15001 -student(s780).student997,15016 -student(s780).student997,15016 -student(s781).student998,15031 -student(s781).student998,15031 -student(s782).student999,15046 -student(s782).student999,15046 -student(s783).student1000,15061 -student(s783).student1000,15061 -student(s784).student1001,15076 -student(s784).student1001,15076 -student(s785).student1002,15091 -student(s785).student1002,15091 -student(s786).student1003,15106 -student(s786).student1003,15106 -student(s787).student1004,15121 -student(s787).student1004,15121 -student(s788).student1005,15136 -student(s788).student1005,15136 -student(s789).student1006,15151 -student(s789).student1006,15151 -student(s790).student1007,15166 -student(s790).student1007,15166 -student(s791).student1008,15181 -student(s791).student1008,15181 -student(s792).student1009,15196 -student(s792).student1009,15196 -student(s793).student1010,15211 -student(s793).student1010,15211 -student(s794).student1011,15226 -student(s794).student1011,15226 -student(s795).student1012,15241 -student(s795).student1012,15241 -student(s796).student1013,15256 -student(s796).student1013,15256 -student(s797).student1014,15271 -student(s797).student1014,15271 -student(s798).student1015,15286 -student(s798).student1015,15286 -student(s799).student1016,15301 -student(s799).student1016,15301 -student(s800).student1017,15316 -student(s800).student1017,15316 -student(s801).student1018,15331 -student(s801).student1018,15331 -student(s802).student1019,15346 -student(s802).student1019,15346 -student(s803).student1020,15361 -student(s803).student1020,15361 -student(s804).student1021,15376 -student(s804).student1021,15376 -student(s805).student1022,15391 -student(s805).student1022,15391 -student(s806).student1023,15406 -student(s806).student1023,15406 -student(s807).student1024,15421 -student(s807).student1024,15421 -student(s808).student1025,15436 -student(s808).student1025,15436 -student(s809).student1026,15451 -student(s809).student1026,15451 -student(s810).student1027,15466 -student(s810).student1027,15466 -student(s811).student1028,15481 -student(s811).student1028,15481 -student(s812).student1029,15496 -student(s812).student1029,15496 -student(s813).student1030,15511 -student(s813).student1030,15511 -student(s814).student1031,15526 -student(s814).student1031,15526 -student(s815).student1032,15541 -student(s815).student1032,15541 -student(s816).student1033,15556 -student(s816).student1033,15556 -student(s817).student1034,15571 -student(s817).student1034,15571 -student(s818).student1035,15586 -student(s818).student1035,15586 -student(s819).student1036,15601 -student(s819).student1036,15601 -student(s820).student1037,15616 -student(s820).student1037,15616 -student(s821).student1038,15631 -student(s821).student1038,15631 -student(s822).student1039,15646 -student(s822).student1039,15646 -student(s823).student1040,15661 -student(s823).student1040,15661 -student(s824).student1041,15676 -student(s824).student1041,15676 -student(s825).student1042,15691 -student(s825).student1042,15691 -student(s826).student1043,15706 -student(s826).student1043,15706 -student(s827).student1044,15721 -student(s827).student1044,15721 -student(s828).student1045,15736 -student(s828).student1045,15736 -student(s829).student1046,15751 -student(s829).student1046,15751 -student(s830).student1047,15766 -student(s830).student1047,15766 -student(s831).student1048,15781 -student(s831).student1048,15781 -student(s832).student1049,15796 -student(s832).student1049,15796 -student(s833).student1050,15811 -student(s833).student1050,15811 -student(s834).student1051,15826 -student(s834).student1051,15826 -student(s835).student1052,15841 -student(s835).student1052,15841 -student(s836).student1053,15856 -student(s836).student1053,15856 -student(s837).student1054,15871 -student(s837).student1054,15871 -student(s838).student1055,15886 -student(s838).student1055,15886 -student(s839).student1056,15901 -student(s839).student1056,15901 -student(s840).student1057,15916 -student(s840).student1057,15916 -student(s841).student1058,15931 -student(s841).student1058,15931 -student(s842).student1059,15946 -student(s842).student1059,15946 -student(s843).student1060,15961 -student(s843).student1060,15961 -student(s844).student1061,15976 -student(s844).student1061,15976 -student(s845).student1062,15991 -student(s845).student1062,15991 -student(s846).student1063,16006 -student(s846).student1063,16006 -student(s847).student1064,16021 -student(s847).student1064,16021 -student(s848).student1065,16036 -student(s848).student1065,16036 -student(s849).student1066,16051 -student(s849).student1066,16051 -student(s850).student1067,16066 -student(s850).student1067,16066 -student(s851).student1068,16081 -student(s851).student1068,16081 -student(s852).student1069,16096 -student(s852).student1069,16096 -student(s853).student1070,16111 -student(s853).student1070,16111 -student(s854).student1071,16126 -student(s854).student1071,16126 -student(s855).student1072,16141 -student(s855).student1072,16141 -student(s856).student1073,16156 -student(s856).student1073,16156 -student(s857).student1074,16171 -student(s857).student1074,16171 -student(s858).student1075,16186 -student(s858).student1075,16186 -student(s859).student1076,16201 -student(s859).student1076,16201 -student(s860).student1077,16216 -student(s860).student1077,16216 -student(s861).student1078,16231 -student(s861).student1078,16231 -student(s862).student1079,16246 -student(s862).student1079,16246 -student(s863).student1080,16261 -student(s863).student1080,16261 -student(s864).student1081,16276 -student(s864).student1081,16276 -student(s865).student1082,16291 -student(s865).student1082,16291 -student(s866).student1083,16306 -student(s866).student1083,16306 -student(s867).student1084,16321 -student(s867).student1084,16321 -student(s868).student1085,16336 -student(s868).student1085,16336 -student(s869).student1086,16351 -student(s869).student1086,16351 -student(s870).student1087,16366 -student(s870).student1087,16366 -student(s871).student1088,16381 -student(s871).student1088,16381 -student(s872).student1089,16396 -student(s872).student1089,16396 -student(s873).student1090,16411 -student(s873).student1090,16411 -student(s874).student1091,16426 -student(s874).student1091,16426 -student(s875).student1092,16441 -student(s875).student1092,16441 -student(s876).student1093,16456 -student(s876).student1093,16456 -student(s877).student1094,16471 -student(s877).student1094,16471 -student(s878).student1095,16486 -student(s878).student1095,16486 -student(s879).student1096,16501 -student(s879).student1096,16501 -student(s880).student1097,16516 -student(s880).student1097,16516 -student(s881).student1098,16531 -student(s881).student1098,16531 -student(s882).student1099,16546 -student(s882).student1099,16546 -student(s883).student1100,16561 -student(s883).student1100,16561 -student(s884).student1101,16576 -student(s884).student1101,16576 -student(s885).student1102,16591 -student(s885).student1102,16591 -student(s886).student1103,16606 -student(s886).student1103,16606 -student(s887).student1104,16621 -student(s887).student1104,16621 -student(s888).student1105,16636 -student(s888).student1105,16636 -student(s889).student1106,16651 -student(s889).student1106,16651 -student(s890).student1107,16666 -student(s890).student1107,16666 -student(s891).student1108,16681 -student(s891).student1108,16681 -student(s892).student1109,16696 -student(s892).student1109,16696 -student(s893).student1110,16711 -student(s893).student1110,16711 -student(s894).student1111,16726 -student(s894).student1111,16726 -student(s895).student1112,16741 -student(s895).student1112,16741 -student(s896).student1113,16756 -student(s896).student1113,16756 -student(s897).student1114,16771 -student(s897).student1114,16771 -student(s898).student1115,16786 -student(s898).student1115,16786 -student(s899).student1116,16801 -student(s899).student1116,16801 -student(s900).student1117,16816 -student(s900).student1117,16816 -student(s901).student1118,16831 -student(s901).student1118,16831 -student(s902).student1119,16846 -student(s902).student1119,16846 -student(s903).student1120,16861 -student(s903).student1120,16861 -student(s904).student1121,16876 -student(s904).student1121,16876 -student(s905).student1122,16891 -student(s905).student1122,16891 -student(s906).student1123,16906 -student(s906).student1123,16906 -student(s907).student1124,16921 -student(s907).student1124,16921 -student(s908).student1125,16936 -student(s908).student1125,16936 -student(s909).student1126,16951 -student(s909).student1126,16951 -student(s910).student1127,16966 -student(s910).student1127,16966 -student(s911).student1128,16981 -student(s911).student1128,16981 -student(s912).student1129,16996 -student(s912).student1129,16996 -student(s913).student1130,17011 -student(s913).student1130,17011 -student(s914).student1131,17026 -student(s914).student1131,17026 -student(s915).student1132,17041 -student(s915).student1132,17041 -student(s916).student1133,17056 -student(s916).student1133,17056 -student(s917).student1134,17071 -student(s917).student1134,17071 -student(s918).student1135,17086 -student(s918).student1135,17086 -student(s919).student1136,17101 -student(s919).student1136,17101 -student(s920).student1137,17116 -student(s920).student1137,17116 -student(s921).student1138,17131 -student(s921).student1138,17131 -student(s922).student1139,17146 -student(s922).student1139,17146 -student(s923).student1140,17161 -student(s923).student1140,17161 -student(s924).student1141,17176 -student(s924).student1141,17176 -student(s925).student1142,17191 -student(s925).student1142,17191 -student(s926).student1143,17206 -student(s926).student1143,17206 -student(s927).student1144,17221 -student(s927).student1144,17221 -student(s928).student1145,17236 -student(s928).student1145,17236 -student(s929).student1146,17251 -student(s929).student1146,17251 -student(s930).student1147,17266 -student(s930).student1147,17266 -student(s931).student1148,17281 -student(s931).student1148,17281 -student(s932).student1149,17296 -student(s932).student1149,17296 -student(s933).student1150,17311 -student(s933).student1150,17311 -student(s934).student1151,17326 -student(s934).student1151,17326 -student(s935).student1152,17341 -student(s935).student1152,17341 -student(s936).student1153,17356 -student(s936).student1153,17356 -student(s937).student1154,17371 -student(s937).student1154,17371 -student(s938).student1155,17386 -student(s938).student1155,17386 -student(s939).student1156,17401 -student(s939).student1156,17401 -student(s940).student1157,17416 -student(s940).student1157,17416 -student(s941).student1158,17431 -student(s941).student1158,17431 -student(s942).student1159,17446 -student(s942).student1159,17446 -student(s943).student1160,17461 -student(s943).student1160,17461 -student(s944).student1161,17476 -student(s944).student1161,17476 -student(s945).student1162,17491 -student(s945).student1162,17491 -student(s946).student1163,17506 -student(s946).student1163,17506 -student(s947).student1164,17521 -student(s947).student1164,17521 -student(s948).student1165,17536 -student(s948).student1165,17536 -student(s949).student1166,17551 -student(s949).student1166,17551 -student(s950).student1167,17566 -student(s950).student1167,17566 -student(s951).student1168,17581 -student(s951).student1168,17581 -student(s952).student1169,17596 -student(s952).student1169,17596 -student(s953).student1170,17611 -student(s953).student1170,17611 -student(s954).student1171,17626 -student(s954).student1171,17626 -student(s955).student1172,17641 -student(s955).student1172,17641 -student(s956).student1173,17656 -student(s956).student1173,17656 -student(s957).student1174,17671 -student(s957).student1174,17671 -student(s958).student1175,17686 -student(s958).student1175,17686 -student(s959).student1176,17701 -student(s959).student1176,17701 -student(s960).student1177,17716 -student(s960).student1177,17716 -student(s961).student1178,17731 -student(s961).student1178,17731 -student(s962).student1179,17746 -student(s962).student1179,17746 -student(s963).student1180,17761 -student(s963).student1180,17761 -student(s964).student1181,17776 -student(s964).student1181,17776 -student(s965).student1182,17791 -student(s965).student1182,17791 -student(s966).student1183,17806 -student(s966).student1183,17806 -student(s967).student1184,17821 -student(s967).student1184,17821 -student(s968).student1185,17836 -student(s968).student1185,17836 -student(s969).student1186,17851 -student(s969).student1186,17851 -student(s970).student1187,17866 -student(s970).student1187,17866 -student(s971).student1188,17881 -student(s971).student1188,17881 -student(s972).student1189,17896 -student(s972).student1189,17896 -student(s973).student1190,17911 -student(s973).student1190,17911 -student(s974).student1191,17926 -student(s974).student1191,17926 -student(s975).student1192,17941 -student(s975).student1192,17941 -student(s976).student1193,17956 -student(s976).student1193,17956 -student(s977).student1194,17971 -student(s977).student1194,17971 -student(s978).student1195,17986 -student(s978).student1195,17986 -student(s979).student1196,18001 -student(s979).student1196,18001 -student(s980).student1197,18016 -student(s980).student1197,18016 -student(s981).student1198,18031 -student(s981).student1198,18031 -student(s982).student1199,18046 -student(s982).student1199,18046 -student(s983).student1200,18061 -student(s983).student1200,18061 -student(s984).student1201,18076 -student(s984).student1201,18076 -student(s985).student1202,18091 -student(s985).student1202,18091 -student(s986).student1203,18106 -student(s986).student1203,18106 -student(s987).student1204,18121 -student(s987).student1204,18121 -student(s988).student1205,18136 -student(s988).student1205,18136 -student(s989).student1206,18151 -student(s989).student1206,18151 -student(s990).student1207,18166 -student(s990).student1207,18166 -student(s991).student1208,18181 -student(s991).student1208,18181 -student(s992).student1209,18196 -student(s992).student1209,18196 -student(s993).student1210,18211 -student(s993).student1210,18211 -student(s994).student1211,18226 -student(s994).student1211,18226 -student(s995).student1212,18241 -student(s995).student1212,18241 -student(s996).student1213,18256 -student(s996).student1213,18256 -student(s997).student1214,18271 -student(s997).student1214,18271 -student(s998).student1215,18286 -student(s998).student1215,18286 -student(s999).student1216,18301 -student(s999).student1216,18301 -student(s1000).student1217,18316 -student(s1000).student1217,18316 -student(s1001).student1218,18332 -student(s1001).student1218,18332 -student(s1002).student1219,18348 -student(s1002).student1219,18348 -student(s1003).student1220,18364 -student(s1003).student1220,18364 -student(s1004).student1221,18380 -student(s1004).student1221,18380 -student(s1005).student1222,18396 -student(s1005).student1222,18396 -student(s1006).student1223,18412 -student(s1006).student1223,18412 -student(s1007).student1224,18428 -student(s1007).student1224,18428 -student(s1008).student1225,18444 -student(s1008).student1225,18444 -student(s1009).student1226,18460 -student(s1009).student1226,18460 -student(s1010).student1227,18476 -student(s1010).student1227,18476 -student(s1011).student1228,18492 -student(s1011).student1228,18492 -student(s1012).student1229,18508 -student(s1012).student1229,18508 -student(s1013).student1230,18524 -student(s1013).student1230,18524 -student(s1014).student1231,18540 -student(s1014).student1231,18540 -student(s1015).student1232,18556 -student(s1015).student1232,18556 -student(s1016).student1233,18572 -student(s1016).student1233,18572 -student(s1017).student1234,18588 -student(s1017).student1234,18588 -student(s1018).student1235,18604 -student(s1018).student1235,18604 -student(s1019).student1236,18620 -student(s1019).student1236,18620 -student(s1020).student1237,18636 -student(s1020).student1237,18636 -student(s1021).student1238,18652 -student(s1021).student1238,18652 -student(s1022).student1239,18668 -student(s1022).student1239,18668 -student(s1023).student1240,18684 -student(s1023).student1240,18684 -registration(r0,c65,s0).registration1243,18702 -registration(r0,c65,s0).registration1243,18702 -registration(r1,c18,s0).registration1244,18727 -registration(r1,c18,s0).registration1244,18727 -registration(r2,c39,s0).registration1245,18752 -registration(r2,c39,s0).registration1245,18752 -registration(r3,c89,s1).registration1246,18777 -registration(r3,c89,s1).registration1246,18777 -registration(r4,c64,s1).registration1247,18802 -registration(r4,c64,s1).registration1247,18802 -registration(r5,c54,s1).registration1248,18827 -registration(r5,c54,s1).registration1248,18827 -registration(r6,c1,s1).registration1249,18852 -registration(r6,c1,s1).registration1249,18852 -registration(r7,c97,s2).registration1250,18876 -registration(r7,c97,s2).registration1250,18876 -registration(r8,c12,s2).registration1251,18901 -registration(r8,c12,s2).registration1251,18901 -registration(r9,c38,s2).registration1252,18926 -registration(r9,c38,s2).registration1252,18926 -registration(r10,c45,s2).registration1253,18951 -registration(r10,c45,s2).registration1253,18951 -registration(r11,c24,s3).registration1254,18977 -registration(r11,c24,s3).registration1254,18977 -registration(r12,c28,s3).registration1255,19003 -registration(r12,c28,s3).registration1255,19003 -registration(r13,c98,s3).registration1256,19029 -registration(r13,c98,s3).registration1256,19029 -registration(r14,c118,s3).registration1257,19055 -registration(r14,c118,s3).registration1257,19055 -registration(r15,c72,s4).registration1258,19082 -registration(r15,c72,s4).registration1258,19082 -registration(r16,c81,s4).registration1259,19108 -registration(r16,c81,s4).registration1259,19108 -registration(r17,c94,s4).registration1260,19134 -registration(r17,c94,s4).registration1260,19134 -registration(r18,c11,s4).registration1261,19160 -registration(r18,c11,s4).registration1261,19160 -registration(r19,c26,s5).registration1262,19186 -registration(r19,c26,s5).registration1262,19186 -registration(r20,c58,s5).registration1263,19212 -registration(r20,c58,s5).registration1263,19212 -registration(r21,c25,s5).registration1264,19238 -registration(r21,c25,s5).registration1264,19238 -registration(r22,c86,s6).registration1265,19264 -registration(r22,c86,s6).registration1265,19264 -registration(r23,c91,s6).registration1266,19290 -registration(r23,c91,s6).registration1266,19290 -registration(r24,c57,s6).registration1267,19316 -registration(r24,c57,s6).registration1267,19316 -registration(r25,c18,s6).registration1268,19342 -registration(r25,c18,s6).registration1268,19342 -registration(r26,c24,s7).registration1269,19368 -registration(r26,c24,s7).registration1269,19368 -registration(r27,c67,s7).registration1270,19394 -registration(r27,c67,s7).registration1270,19394 -registration(r28,c42,s7).registration1271,19420 -registration(r28,c42,s7).registration1271,19420 -registration(r29,c38,s8).registration1272,19446 -registration(r29,c38,s8).registration1272,19446 -registration(r30,c42,s8).registration1273,19472 -registration(r30,c42,s8).registration1273,19472 -registration(r31,c21,s8).registration1274,19498 -registration(r31,c21,s8).registration1274,19498 -registration(r32,c120,s9).registration1275,19524 -registration(r32,c120,s9).registration1275,19524 -registration(r33,c33,s9).registration1276,19551 -registration(r33,c33,s9).registration1276,19551 -registration(r34,c71,s9).registration1277,19577 -registration(r34,c71,s9).registration1277,19577 -registration(r35,c24,s10).registration1278,19603 -registration(r35,c24,s10).registration1278,19603 -registration(r36,c76,s10).registration1279,19630 -registration(r36,c76,s10).registration1279,19630 -registration(r37,c2,s10).registration1280,19657 -registration(r37,c2,s10).registration1280,19657 -registration(r38,c29,s11).registration1281,19683 -registration(r38,c29,s11).registration1281,19683 -registration(r39,c94,s11).registration1282,19710 -registration(r39,c94,s11).registration1282,19710 -registration(r40,c63,s11).registration1283,19737 -registration(r40,c63,s11).registration1283,19737 -registration(r41,c21,s12).registration1284,19764 -registration(r41,c21,s12).registration1284,19764 -registration(r42,c39,s12).registration1285,19791 -registration(r42,c39,s12).registration1285,19791 -registration(r43,c120,s12).registration1286,19818 -registration(r43,c120,s12).registration1286,19818 -registration(r44,c65,s13).registration1287,19846 -registration(r44,c65,s13).registration1287,19846 -registration(r45,c70,s13).registration1288,19873 -registration(r45,c70,s13).registration1288,19873 -registration(r46,c124,s13).registration1289,19900 -registration(r46,c124,s13).registration1289,19900 -registration(r47,c101,s14).registration1290,19928 -registration(r47,c101,s14).registration1290,19928 -registration(r48,c18,s14).registration1291,19956 -registration(r48,c18,s14).registration1291,19956 -registration(r49,c21,s14).registration1292,19983 -registration(r49,c21,s14).registration1292,19983 -registration(r50,c89,s15).registration1293,20010 -registration(r50,c89,s15).registration1293,20010 -registration(r51,c115,s15).registration1294,20037 -registration(r51,c115,s15).registration1294,20037 -registration(r52,c114,s15).registration1295,20065 -registration(r52,c114,s15).registration1295,20065 -registration(r53,c94,s16).registration1296,20093 -registration(r53,c94,s16).registration1296,20093 -registration(r54,c56,s16).registration1297,20120 -registration(r54,c56,s16).registration1297,20120 -registration(r55,c45,s16).registration1298,20147 -registration(r55,c45,s16).registration1298,20147 -registration(r56,c83,s17).registration1299,20174 -registration(r56,c83,s17).registration1299,20174 -registration(r57,c126,s17).registration1300,20201 -registration(r57,c126,s17).registration1300,20201 -registration(r58,c57,s17).registration1301,20229 -registration(r58,c57,s17).registration1301,20229 -registration(r59,c73,s17).registration1302,20256 -registration(r59,c73,s17).registration1302,20256 -registration(r60,c41,s18).registration1303,20283 -registration(r60,c41,s18).registration1303,20283 -registration(r61,c112,s18).registration1304,20310 -registration(r61,c112,s18).registration1304,20310 -registration(r62,c113,s18).registration1305,20338 -registration(r62,c113,s18).registration1305,20338 -registration(r63,c51,s19).registration1306,20366 -registration(r63,c51,s19).registration1306,20366 -registration(r64,c27,s19).registration1307,20393 -registration(r64,c27,s19).registration1307,20393 -registration(r65,c38,s19).registration1308,20420 -registration(r65,c38,s19).registration1308,20420 -registration(r66,c11,s19).registration1309,20447 -registration(r66,c11,s19).registration1309,20447 -registration(r67,c49,s20).registration1310,20474 -registration(r67,c49,s20).registration1310,20474 -registration(r68,c26,s20).registration1311,20501 -registration(r68,c26,s20).registration1311,20501 -registration(r69,c6,s20).registration1312,20528 -registration(r69,c6,s20).registration1312,20528 -registration(r70,c116,s20).registration1313,20554 -registration(r70,c116,s20).registration1313,20554 -registration(r71,c117,s21).registration1314,20582 -registration(r71,c117,s21).registration1314,20582 -registration(r72,c21,s21).registration1315,20610 -registration(r72,c21,s21).registration1315,20610 -registration(r73,c91,s21).registration1316,20637 -registration(r73,c91,s21).registration1316,20637 -registration(r74,c10,s22).registration1317,20664 -registration(r74,c10,s22).registration1317,20664 -registration(r75,c53,s22).registration1318,20691 -registration(r75,c53,s22).registration1318,20691 -registration(r76,c43,s22).registration1319,20718 -registration(r76,c43,s22).registration1319,20718 -registration(r77,c102,s23).registration1320,20745 -registration(r77,c102,s23).registration1320,20745 -registration(r78,c113,s23).registration1321,20773 -registration(r78,c113,s23).registration1321,20773 -registration(r79,c125,s23).registration1322,20801 -registration(r79,c125,s23).registration1322,20801 -registration(r80,c109,s24).registration1323,20829 -registration(r80,c109,s24).registration1323,20829 -registration(r81,c80,s24).registration1324,20857 -registration(r81,c80,s24).registration1324,20857 -registration(r82,c112,s24).registration1325,20884 -registration(r82,c112,s24).registration1325,20884 -registration(r83,c4,s24).registration1326,20912 -registration(r83,c4,s24).registration1326,20912 -registration(r84,c59,s24).registration1327,20938 -registration(r84,c59,s24).registration1327,20938 -registration(r85,c35,s25).registration1328,20965 -registration(r85,c35,s25).registration1328,20965 -registration(r86,c18,s25).registration1329,20992 -registration(r86,c18,s25).registration1329,20992 -registration(r87,c73,s25).registration1330,21019 -registration(r87,c73,s25).registration1330,21019 -registration(r88,c79,s26).registration1331,21046 -registration(r88,c79,s26).registration1331,21046 -registration(r89,c86,s26).registration1332,21073 -registration(r89,c86,s26).registration1332,21073 -registration(r90,c33,s26).registration1333,21100 -registration(r90,c33,s26).registration1333,21100 -registration(r91,c55,s27).registration1334,21127 -registration(r91,c55,s27).registration1334,21127 -registration(r92,c37,s27).registration1335,21154 -registration(r92,c37,s27).registration1335,21154 -registration(r93,c31,s27).registration1336,21181 -registration(r93,c31,s27).registration1336,21181 -registration(r94,c48,s27).registration1337,21208 -registration(r94,c48,s27).registration1337,21208 -registration(r95,c49,s28).registration1338,21235 -registration(r95,c49,s28).registration1338,21235 -registration(r96,c13,s28).registration1339,21262 -registration(r96,c13,s28).registration1339,21262 -registration(r97,c8,s28).registration1340,21289 -registration(r97,c8,s28).registration1340,21289 -registration(r98,c126,s28).registration1341,21315 -registration(r98,c126,s28).registration1341,21315 -registration(r99,c119,s28).registration1342,21343 -registration(r99,c119,s28).registration1342,21343 -registration(r100,c24,s29).registration1343,21371 -registration(r100,c24,s29).registration1343,21371 -registration(r101,c115,s29).registration1344,21399 -registration(r101,c115,s29).registration1344,21399 -registration(r102,c73,s29).registration1345,21428 -registration(r102,c73,s29).registration1345,21428 -registration(r103,c9,s29).registration1346,21456 -registration(r103,c9,s29).registration1346,21456 -registration(r104,c21,s30).registration1347,21483 -registration(r104,c21,s30).registration1347,21483 -registration(r105,c71,s30).registration1348,21511 -registration(r105,c71,s30).registration1348,21511 -registration(r106,c113,s30).registration1349,21539 -registration(r106,c113,s30).registration1349,21539 -registration(r107,c69,s30).registration1350,21568 -registration(r107,c69,s30).registration1350,21568 -registration(r108,c86,s31).registration1351,21596 -registration(r108,c86,s31).registration1351,21596 -registration(r109,c94,s31).registration1352,21624 -registration(r109,c94,s31).registration1352,21624 -registration(r110,c27,s31).registration1353,21652 -registration(r110,c27,s31).registration1353,21652 -registration(r111,c104,s32).registration1354,21680 -registration(r111,c104,s32).registration1354,21680 -registration(r112,c48,s32).registration1355,21709 -registration(r112,c48,s32).registration1355,21709 -registration(r113,c77,s32).registration1356,21737 -registration(r113,c77,s32).registration1356,21737 -registration(r114,c54,s32).registration1357,21765 -registration(r114,c54,s32).registration1357,21765 -registration(r115,c93,s33).registration1358,21793 -registration(r115,c93,s33).registration1358,21793 -registration(r116,c105,s33).registration1359,21821 -registration(r116,c105,s33).registration1359,21821 -registration(r117,c11,s33).registration1360,21850 -registration(r117,c11,s33).registration1360,21850 -registration(r118,c10,s33).registration1361,21878 -registration(r118,c10,s33).registration1361,21878 -registration(r119,c107,s34).registration1362,21906 -registration(r119,c107,s34).registration1362,21906 -registration(r120,c121,s34).registration1363,21935 -registration(r120,c121,s34).registration1363,21935 -registration(r121,c34,s34).registration1364,21964 -registration(r121,c34,s34).registration1364,21964 -registration(r122,c44,s35).registration1365,21992 -registration(r122,c44,s35).registration1365,21992 -registration(r123,c105,s35).registration1366,22020 -registration(r123,c105,s35).registration1366,22020 -registration(r124,c16,s35).registration1367,22049 -registration(r124,c16,s35).registration1367,22049 -registration(r125,c1,s36).registration1368,22077 -registration(r125,c1,s36).registration1368,22077 -registration(r126,c107,s36).registration1369,22104 -registration(r126,c107,s36).registration1369,22104 -registration(r127,c63,s36).registration1370,22133 -registration(r127,c63,s36).registration1370,22133 -registration(r128,c29,s37).registration1371,22161 -registration(r128,c29,s37).registration1371,22161 -registration(r129,c99,s37).registration1372,22189 -registration(r129,c99,s37).registration1372,22189 -registration(r130,c58,s37).registration1373,22217 -registration(r130,c58,s37).registration1373,22217 -registration(r131,c107,s38).registration1374,22245 -registration(r131,c107,s38).registration1374,22245 -registration(r132,c18,s38).registration1375,22274 -registration(r132,c18,s38).registration1375,22274 -registration(r133,c84,s38).registration1376,22302 -registration(r133,c84,s38).registration1376,22302 -registration(r134,c50,s38).registration1377,22330 -registration(r134,c50,s38).registration1377,22330 -registration(r135,c11,s39).registration1378,22358 -registration(r135,c11,s39).registration1378,22358 -registration(r136,c28,s39).registration1379,22386 -registration(r136,c28,s39).registration1379,22386 -registration(r137,c25,s39).registration1380,22414 -registration(r137,c25,s39).registration1380,22414 -registration(r138,c39,s39).registration1381,22442 -registration(r138,c39,s39).registration1381,22442 -registration(r139,c5,s39).registration1382,22470 -registration(r139,c5,s39).registration1382,22470 -registration(r140,c73,s40).registration1383,22497 -registration(r140,c73,s40).registration1383,22497 -registration(r141,c99,s40).registration1384,22525 -registration(r141,c99,s40).registration1384,22525 -registration(r142,c71,s40).registration1385,22553 -registration(r142,c71,s40).registration1385,22553 -registration(r143,c88,s41).registration1386,22581 -registration(r143,c88,s41).registration1386,22581 -registration(r144,c55,s41).registration1387,22609 -registration(r144,c55,s41).registration1387,22609 -registration(r145,c124,s41).registration1388,22637 -registration(r145,c124,s41).registration1388,22637 -registration(r146,c59,s42).registration1389,22666 -registration(r146,c59,s42).registration1389,22666 -registration(r147,c33,s42).registration1390,22694 -registration(r147,c33,s42).registration1390,22694 -registration(r148,c101,s42).registration1391,22722 -registration(r148,c101,s42).registration1391,22722 -registration(r149,c30,s42).registration1392,22751 -registration(r149,c30,s42).registration1392,22751 -registration(r150,c29,s43).registration1393,22779 -registration(r150,c29,s43).registration1393,22779 -registration(r151,c82,s43).registration1394,22807 -registration(r151,c82,s43).registration1394,22807 -registration(r152,c10,s43).registration1395,22835 -registration(r152,c10,s43).registration1395,22835 -registration(r153,c45,s44).registration1396,22863 -registration(r153,c45,s44).registration1396,22863 -registration(r154,c64,s44).registration1397,22891 -registration(r154,c64,s44).registration1397,22891 -registration(r155,c90,s44).registration1398,22919 -registration(r155,c90,s44).registration1398,22919 -registration(r156,c113,s45).registration1399,22947 -registration(r156,c113,s45).registration1399,22947 -registration(r157,c69,s45).registration1400,22976 -registration(r157,c69,s45).registration1400,22976 -registration(r158,c1,s45).registration1401,23004 -registration(r158,c1,s45).registration1401,23004 -registration(r159,c74,s46).registration1402,23031 -registration(r159,c74,s46).registration1402,23031 -registration(r160,c89,s46).registration1403,23059 -registration(r160,c89,s46).registration1403,23059 -registration(r161,c19,s46).registration1404,23087 -registration(r161,c19,s46).registration1404,23087 -registration(r162,c109,s47).registration1405,23115 -registration(r162,c109,s47).registration1405,23115 -registration(r163,c120,s47).registration1406,23144 -registration(r163,c120,s47).registration1406,23144 -registration(r164,c33,s47).registration1407,23173 -registration(r164,c33,s47).registration1407,23173 -registration(r165,c93,s48).registration1408,23201 -registration(r165,c93,s48).registration1408,23201 -registration(r166,c105,s48).registration1409,23229 -registration(r166,c105,s48).registration1409,23229 -registration(r167,c0,s48).registration1410,23258 -registration(r167,c0,s48).registration1410,23258 -registration(r168,c31,s49).registration1411,23285 -registration(r168,c31,s49).registration1411,23285 -registration(r169,c84,s49).registration1412,23313 -registration(r169,c84,s49).registration1412,23313 -registration(r170,c65,s49).registration1413,23341 -registration(r170,c65,s49).registration1413,23341 -registration(r171,c104,s49).registration1414,23369 -registration(r171,c104,s49).registration1414,23369 -registration(r172,c88,s50).registration1415,23398 -registration(r172,c88,s50).registration1415,23398 -registration(r173,c67,s50).registration1416,23426 -registration(r173,c67,s50).registration1416,23426 -registration(r174,c64,s50).registration1417,23454 -registration(r174,c64,s50).registration1417,23454 -registration(r175,c30,s50).registration1418,23482 -registration(r175,c30,s50).registration1418,23482 -registration(r176,c87,s51).registration1419,23510 -registration(r176,c87,s51).registration1419,23510 -registration(r177,c32,s51).registration1420,23538 -registration(r177,c32,s51).registration1420,23538 -registration(r178,c42,s51).registration1421,23566 -registration(r178,c42,s51).registration1421,23566 -registration(r179,c3,s52).registration1422,23594 -registration(r179,c3,s52).registration1422,23594 -registration(r180,c56,s52).registration1423,23621 -registration(r180,c56,s52).registration1423,23621 -registration(r181,c43,s52).registration1424,23649 -registration(r181,c43,s52).registration1424,23649 -registration(r182,c35,s53).registration1425,23677 -registration(r182,c35,s53).registration1425,23677 -registration(r183,c75,s53).registration1426,23705 -registration(r183,c75,s53).registration1426,23705 -registration(r184,c108,s53).registration1427,23733 -registration(r184,c108,s53).registration1427,23733 -registration(r185,c85,s54).registration1428,23762 -registration(r185,c85,s54).registration1428,23762 -registration(r186,c63,s54).registration1429,23790 -registration(r186,c63,s54).registration1429,23790 -registration(r187,c95,s54).registration1430,23818 -registration(r187,c95,s54).registration1430,23818 -registration(r188,c50,s55).registration1431,23846 -registration(r188,c50,s55).registration1431,23846 -registration(r189,c5,s55).registration1432,23874 -registration(r189,c5,s55).registration1432,23874 -registration(r190,c11,s55).registration1433,23901 -registration(r190,c11,s55).registration1433,23901 -registration(r191,c98,s56).registration1434,23929 -registration(r191,c98,s56).registration1434,23929 -registration(r192,c122,s56).registration1435,23957 -registration(r192,c122,s56).registration1435,23957 -registration(r193,c46,s56).registration1436,23986 -registration(r193,c46,s56).registration1436,23986 -registration(r194,c99,s57).registration1437,24014 -registration(r194,c99,s57).registration1437,24014 -registration(r195,c75,s57).registration1438,24042 -registration(r195,c75,s57).registration1438,24042 -registration(r196,c57,s57).registration1439,24070 -registration(r196,c57,s57).registration1439,24070 -registration(r197,c111,s57).registration1440,24098 -registration(r197,c111,s57).registration1440,24098 -registration(r198,c16,s58).registration1441,24127 -registration(r198,c16,s58).registration1441,24127 -registration(r199,c39,s58).registration1442,24155 -registration(r199,c39,s58).registration1442,24155 -registration(r200,c82,s58).registration1443,24183 -registration(r200,c82,s58).registration1443,24183 -registration(r201,c117,s59).registration1444,24211 -registration(r201,c117,s59).registration1444,24211 -registration(r202,c4,s59).registration1445,24240 -registration(r202,c4,s59).registration1445,24240 -registration(r203,c55,s59).registration1446,24267 -registration(r203,c55,s59).registration1446,24267 -registration(r204,c13,s60).registration1447,24295 -registration(r204,c13,s60).registration1447,24295 -registration(r205,c116,s60).registration1448,24323 -registration(r205,c116,s60).registration1448,24323 -registration(r206,c14,s60).registration1449,24352 -registration(r206,c14,s60).registration1449,24352 -registration(r207,c64,s61).registration1450,24380 -registration(r207,c64,s61).registration1450,24380 -registration(r208,c88,s61).registration1451,24408 -registration(r208,c88,s61).registration1451,24408 -registration(r209,c95,s61).registration1452,24436 -registration(r209,c95,s61).registration1452,24436 -registration(r210,c65,s62).registration1453,24464 -registration(r210,c65,s62).registration1453,24464 -registration(r211,c113,s62).registration1454,24492 -registration(r211,c113,s62).registration1454,24492 -registration(r212,c118,s62).registration1455,24521 -registration(r212,c118,s62).registration1455,24521 -registration(r213,c88,s62).registration1456,24550 -registration(r213,c88,s62).registration1456,24550 -registration(r214,c1,s63).registration1457,24578 -registration(r214,c1,s63).registration1457,24578 -registration(r215,c70,s63).registration1458,24605 -registration(r215,c70,s63).registration1458,24605 -registration(r216,c102,s63).registration1459,24633 -registration(r216,c102,s63).registration1459,24633 -registration(r217,c118,s64).registration1460,24662 -registration(r217,c118,s64).registration1460,24662 -registration(r218,c24,s64).registration1461,24691 -registration(r218,c24,s64).registration1461,24691 -registration(r219,c61,s64).registration1462,24719 -registration(r219,c61,s64).registration1462,24719 -registration(r220,c50,s65).registration1463,24747 -registration(r220,c50,s65).registration1463,24747 -registration(r221,c53,s65).registration1464,24775 -registration(r221,c53,s65).registration1464,24775 -registration(r222,c27,s65).registration1465,24803 -registration(r222,c27,s65).registration1465,24803 -registration(r223,c41,s66).registration1466,24831 -registration(r223,c41,s66).registration1466,24831 -registration(r224,c92,s66).registration1467,24859 -registration(r224,c92,s66).registration1467,24859 -registration(r225,c112,s66).registration1468,24887 -registration(r225,c112,s66).registration1468,24887 -registration(r226,c48,s67).registration1469,24916 -registration(r226,c48,s67).registration1469,24916 -registration(r227,c84,s67).registration1470,24944 -registration(r227,c84,s67).registration1470,24944 -registration(r228,c14,s67).registration1471,24972 -registration(r228,c14,s67).registration1471,24972 -registration(r229,c80,s68).registration1472,25000 -registration(r229,c80,s68).registration1472,25000 -registration(r230,c24,s68).registration1473,25028 -registration(r230,c24,s68).registration1473,25028 -registration(r231,c16,s68).registration1474,25056 -registration(r231,c16,s68).registration1474,25056 -registration(r232,c37,s68).registration1475,25084 -registration(r232,c37,s68).registration1475,25084 -registration(r233,c8,s69).registration1476,25112 -registration(r233,c8,s69).registration1476,25112 -registration(r234,c106,s69).registration1477,25139 -registration(r234,c106,s69).registration1477,25139 -registration(r235,c80,s69).registration1478,25168 -registration(r235,c80,s69).registration1478,25168 -registration(r236,c71,s70).registration1479,25196 -registration(r236,c71,s70).registration1479,25196 -registration(r237,c17,s70).registration1480,25224 -registration(r237,c17,s70).registration1480,25224 -registration(r238,c20,s70).registration1481,25252 -registration(r238,c20,s70).registration1481,25252 -registration(r239,c70,s71).registration1482,25280 -registration(r239,c70,s71).registration1482,25280 -registration(r240,c43,s71).registration1483,25308 -registration(r240,c43,s71).registration1483,25308 -registration(r241,c17,s71).registration1484,25336 -registration(r241,c17,s71).registration1484,25336 -registration(r242,c59,s71).registration1485,25364 -registration(r242,c59,s71).registration1485,25364 -registration(r243,c10,s72).registration1486,25392 -registration(r243,c10,s72).registration1486,25392 -registration(r244,c127,s72).registration1487,25420 -registration(r244,c127,s72).registration1487,25420 -registration(r245,c54,s72).registration1488,25449 -registration(r245,c54,s72).registration1488,25449 -registration(r246,c10,s73).registration1489,25477 -registration(r246,c10,s73).registration1489,25477 -registration(r247,c74,s73).registration1490,25505 -registration(r247,c74,s73).registration1490,25505 -registration(r248,c88,s73).registration1491,25533 -registration(r248,c88,s73).registration1491,25533 -registration(r249,c112,s74).registration1492,25561 -registration(r249,c112,s74).registration1492,25561 -registration(r250,c53,s74).registration1493,25590 -registration(r250,c53,s74).registration1493,25590 -registration(r251,c32,s74).registration1494,25618 -registration(r251,c32,s74).registration1494,25618 -registration(r252,c31,s74).registration1495,25646 -registration(r252,c31,s74).registration1495,25646 -registration(r253,c127,s75).registration1496,25674 -registration(r253,c127,s75).registration1496,25674 -registration(r254,c111,s75).registration1497,25703 -registration(r254,c111,s75).registration1497,25703 -registration(r255,c34,s75).registration1498,25732 -registration(r255,c34,s75).registration1498,25732 -registration(r256,c52,s76).registration1499,25760 -registration(r256,c52,s76).registration1499,25760 -registration(r257,c106,s76).registration1500,25788 -registration(r257,c106,s76).registration1500,25788 -registration(r258,c46,s76).registration1501,25817 -registration(r258,c46,s76).registration1501,25817 -registration(r259,c91,s77).registration1502,25845 -registration(r259,c91,s77).registration1502,25845 -registration(r260,c59,s77).registration1503,25873 -registration(r260,c59,s77).registration1503,25873 -registration(r261,c95,s77).registration1504,25901 -registration(r261,c95,s77).registration1504,25901 -registration(r262,c106,s78).registration1505,25929 -registration(r262,c106,s78).registration1505,25929 -registration(r263,c104,s78).registration1506,25958 -registration(r263,c104,s78).registration1506,25958 -registration(r264,c44,s78).registration1507,25987 -registration(r264,c44,s78).registration1507,25987 -registration(r265,c55,s79).registration1508,26015 -registration(r265,c55,s79).registration1508,26015 -registration(r266,c111,s79).registration1509,26043 -registration(r266,c111,s79).registration1509,26043 -registration(r267,c113,s79).registration1510,26072 -registration(r267,c113,s79).registration1510,26072 -registration(r268,c96,s79).registration1511,26101 -registration(r268,c96,s79).registration1511,26101 -registration(r269,c18,s80).registration1512,26129 -registration(r269,c18,s80).registration1512,26129 -registration(r270,c44,s80).registration1513,26157 -registration(r270,c44,s80).registration1513,26157 -registration(r271,c118,s80).registration1514,26185 -registration(r271,c118,s80).registration1514,26185 -registration(r272,c118,s81).registration1515,26214 -registration(r272,c118,s81).registration1515,26214 -registration(r273,c35,s81).registration1516,26243 -registration(r273,c35,s81).registration1516,26243 -registration(r274,c119,s81).registration1517,26271 -registration(r274,c119,s81).registration1517,26271 -registration(r275,c43,s82).registration1518,26300 -registration(r275,c43,s82).registration1518,26300 -registration(r276,c55,s82).registration1519,26328 -registration(r276,c55,s82).registration1519,26328 -registration(r277,c9,s82).registration1520,26356 -registration(r277,c9,s82).registration1520,26356 -registration(r278,c100,s83).registration1521,26383 -registration(r278,c100,s83).registration1521,26383 -registration(r279,c17,s83).registration1522,26412 -registration(r279,c17,s83).registration1522,26412 -registration(r280,c70,s83).registration1523,26440 -registration(r280,c70,s83).registration1523,26440 -registration(r281,c48,s83).registration1524,26468 -registration(r281,c48,s83).registration1524,26468 -registration(r282,c57,s84).registration1525,26496 -registration(r282,c57,s84).registration1525,26496 -registration(r283,c53,s84).registration1526,26524 -registration(r283,c53,s84).registration1526,26524 -registration(r284,c86,s84).registration1527,26552 -registration(r284,c86,s84).registration1527,26552 -registration(r285,c69,s85).registration1528,26580 -registration(r285,c69,s85).registration1528,26580 -registration(r286,c67,s85).registration1529,26608 -registration(r286,c67,s85).registration1529,26608 -registration(r287,c75,s85).registration1530,26636 -registration(r287,c75,s85).registration1530,26636 -registration(r288,c93,s86).registration1531,26664 -registration(r288,c93,s86).registration1531,26664 -registration(r289,c124,s86).registration1532,26692 -registration(r289,c124,s86).registration1532,26692 -registration(r290,c27,s86).registration1533,26721 -registration(r290,c27,s86).registration1533,26721 -registration(r291,c80,s86).registration1534,26749 -registration(r291,c80,s86).registration1534,26749 -registration(r292,c51,s86).registration1535,26777 -registration(r292,c51,s86).registration1535,26777 -registration(r293,c72,s87).registration1536,26805 -registration(r293,c72,s87).registration1536,26805 -registration(r294,c94,s87).registration1537,26833 -registration(r294,c94,s87).registration1537,26833 -registration(r295,c14,s87).registration1538,26861 -registration(r295,c14,s87).registration1538,26861 -registration(r296,c25,s87).registration1539,26889 -registration(r296,c25,s87).registration1539,26889 -registration(r297,c73,s88).registration1540,26917 -registration(r297,c73,s88).registration1540,26917 -registration(r298,c124,s88).registration1541,26945 -registration(r298,c124,s88).registration1541,26945 -registration(r299,c126,s88).registration1542,26974 -registration(r299,c126,s88).registration1542,26974 -registration(r300,c77,s89).registration1543,27003 -registration(r300,c77,s89).registration1543,27003 -registration(r301,c99,s89).registration1544,27031 -registration(r301,c99,s89).registration1544,27031 -registration(r302,c116,s89).registration1545,27059 -registration(r302,c116,s89).registration1545,27059 -registration(r303,c24,s89).registration1546,27088 -registration(r303,c24,s89).registration1546,27088 -registration(r304,c89,s90).registration1547,27116 -registration(r304,c89,s90).registration1547,27116 -registration(r305,c6,s90).registration1548,27144 -registration(r305,c6,s90).registration1548,27144 -registration(r306,c17,s90).registration1549,27171 -registration(r306,c17,s90).registration1549,27171 -registration(r307,c97,s91).registration1550,27199 -registration(r307,c97,s91).registration1550,27199 -registration(r308,c66,s91).registration1551,27227 -registration(r308,c66,s91).registration1551,27227 -registration(r309,c45,s91).registration1552,27255 -registration(r309,c45,s91).registration1552,27255 -registration(r310,c62,s92).registration1553,27283 -registration(r310,c62,s92).registration1553,27283 -registration(r311,c46,s92).registration1554,27311 -registration(r311,c46,s92).registration1554,27311 -registration(r312,c114,s92).registration1555,27339 -registration(r312,c114,s92).registration1555,27339 -registration(r313,c80,s93).registration1556,27368 -registration(r313,c80,s93).registration1556,27368 -registration(r314,c1,s93).registration1557,27396 -registration(r314,c1,s93).registration1557,27396 -registration(r315,c107,s93).registration1558,27423 -registration(r315,c107,s93).registration1558,27423 -registration(r316,c52,s94).registration1559,27452 -registration(r316,c52,s94).registration1559,27452 -registration(r317,c98,s94).registration1560,27480 -registration(r317,c98,s94).registration1560,27480 -registration(r318,c24,s94).registration1561,27508 -registration(r318,c24,s94).registration1561,27508 -registration(r319,c38,s94).registration1562,27536 -registration(r319,c38,s94).registration1562,27536 -registration(r320,c115,s95).registration1563,27564 -registration(r320,c115,s95).registration1563,27564 -registration(r321,c26,s95).registration1564,27593 -registration(r321,c26,s95).registration1564,27593 -registration(r322,c107,s95).registration1565,27621 -registration(r322,c107,s95).registration1565,27621 -registration(r323,c100,s95).registration1566,27650 -registration(r323,c100,s95).registration1566,27650 -registration(r324,c19,s96).registration1567,27679 -registration(r324,c19,s96).registration1567,27679 -registration(r325,c118,s96).registration1568,27707 -registration(r325,c118,s96).registration1568,27707 -registration(r326,c98,s96).registration1569,27736 -registration(r326,c98,s96).registration1569,27736 -registration(r327,c38,s97).registration1570,27764 -registration(r327,c38,s97).registration1570,27764 -registration(r328,c18,s97).registration1571,27792 -registration(r328,c18,s97).registration1571,27792 -registration(r329,c54,s97).registration1572,27820 -registration(r329,c54,s97).registration1572,27820 -registration(r330,c82,s97).registration1573,27848 -registration(r330,c82,s97).registration1573,27848 -registration(r331,c119,s98).registration1574,27876 -registration(r331,c119,s98).registration1574,27876 -registration(r332,c67,s98).registration1575,27905 -registration(r332,c67,s98).registration1575,27905 -registration(r333,c90,s98).registration1576,27933 -registration(r333,c90,s98).registration1576,27933 -registration(r334,c69,s99).registration1577,27961 -registration(r334,c69,s99).registration1577,27961 -registration(r335,c45,s99).registration1578,27989 -registration(r335,c45,s99).registration1578,27989 -registration(r336,c97,s99).registration1579,28017 -registration(r336,c97,s99).registration1579,28017 -registration(r337,c121,s99).registration1580,28045 -registration(r337,c121,s99).registration1580,28045 -registration(r338,c11,s100).registration1581,28074 -registration(r338,c11,s100).registration1581,28074 -registration(r339,c55,s100).registration1582,28103 -registration(r339,c55,s100).registration1582,28103 -registration(r340,c95,s100).registration1583,28132 -registration(r340,c95,s100).registration1583,28132 -registration(r341,c75,s101).registration1584,28161 -registration(r341,c75,s101).registration1584,28161 -registration(r342,c11,s101).registration1585,28190 -registration(r342,c11,s101).registration1585,28190 -registration(r343,c55,s101).registration1586,28219 -registration(r343,c55,s101).registration1586,28219 -registration(r344,c31,s101).registration1587,28248 -registration(r344,c31,s101).registration1587,28248 -registration(r345,c117,s102).registration1588,28277 -registration(r345,c117,s102).registration1588,28277 -registration(r346,c3,s102).registration1589,28307 -registration(r346,c3,s102).registration1589,28307 -registration(r347,c7,s102).registration1590,28335 -registration(r347,c7,s102).registration1590,28335 -registration(r348,c60,s102).registration1591,28363 -registration(r348,c60,s102).registration1591,28363 -registration(r349,c33,s103).registration1592,28392 -registration(r349,c33,s103).registration1592,28392 -registration(r350,c103,s103).registration1593,28421 -registration(r350,c103,s103).registration1593,28421 -registration(r351,c31,s103).registration1594,28451 -registration(r351,c31,s103).registration1594,28451 -registration(r352,c122,s104).registration1595,28480 -registration(r352,c122,s104).registration1595,28480 -registration(r353,c97,s104).registration1596,28510 -registration(r353,c97,s104).registration1596,28510 -registration(r354,c113,s104).registration1597,28539 -registration(r354,c113,s104).registration1597,28539 -registration(r355,c80,s104).registration1598,28569 -registration(r355,c80,s104).registration1598,28569 -registration(r356,c59,s105).registration1599,28598 -registration(r356,c59,s105).registration1599,28598 -registration(r357,c32,s105).registration1600,28627 -registration(r357,c32,s105).registration1600,28627 -registration(r358,c76,s105).registration1601,28656 -registration(r358,c76,s105).registration1601,28656 -registration(r359,c43,s106).registration1602,28685 -registration(r359,c43,s106).registration1602,28685 -registration(r360,c70,s106).registration1603,28714 -registration(r360,c70,s106).registration1603,28714 -registration(r361,c40,s106).registration1604,28743 -registration(r361,c40,s106).registration1604,28743 -registration(r362,c95,s107).registration1605,28772 -registration(r362,c95,s107).registration1605,28772 -registration(r363,c9,s107).registration1606,28801 -registration(r363,c9,s107).registration1606,28801 -registration(r364,c113,s107).registration1607,28829 -registration(r364,c113,s107).registration1607,28829 -registration(r365,c126,s107).registration1608,28859 -registration(r365,c126,s107).registration1608,28859 -registration(r366,c19,s108).registration1609,28889 -registration(r366,c19,s108).registration1609,28889 -registration(r367,c26,s108).registration1610,28918 -registration(r367,c26,s108).registration1610,28918 -registration(r368,c10,s108).registration1611,28947 -registration(r368,c10,s108).registration1611,28947 -registration(r369,c114,s109).registration1612,28976 -registration(r369,c114,s109).registration1612,28976 -registration(r370,c110,s109).registration1613,29006 -registration(r370,c110,s109).registration1613,29006 -registration(r371,c83,s109).registration1614,29036 -registration(r371,c83,s109).registration1614,29036 -registration(r372,c55,s110).registration1615,29065 -registration(r372,c55,s110).registration1615,29065 -registration(r373,c16,s110).registration1616,29094 -registration(r373,c16,s110).registration1616,29094 -registration(r374,c43,s110).registration1617,29123 -registration(r374,c43,s110).registration1617,29123 -registration(r375,c103,s111).registration1618,29152 -registration(r375,c103,s111).registration1618,29152 -registration(r376,c104,s111).registration1619,29182 -registration(r376,c104,s111).registration1619,29182 -registration(r377,c46,s111).registration1620,29212 -registration(r377,c46,s111).registration1620,29212 -registration(r378,c90,s112).registration1621,29241 -registration(r378,c90,s112).registration1621,29241 -registration(r379,c116,s112).registration1622,29270 -registration(r379,c116,s112).registration1622,29270 -registration(r380,c103,s112).registration1623,29300 -registration(r380,c103,s112).registration1623,29300 -registration(r381,c72,s113).registration1624,29330 -registration(r381,c72,s113).registration1624,29330 -registration(r382,c90,s113).registration1625,29359 -registration(r382,c90,s113).registration1625,29359 -registration(r383,c54,s113).registration1626,29388 -registration(r383,c54,s113).registration1626,29388 -registration(r384,c43,s114).registration1627,29417 -registration(r384,c43,s114).registration1627,29417 -registration(r385,c105,s114).registration1628,29446 -registration(r385,c105,s114).registration1628,29446 -registration(r386,c114,s114).registration1629,29476 -registration(r386,c114,s114).registration1629,29476 -registration(r387,c46,s115).registration1630,29506 -registration(r387,c46,s115).registration1630,29506 -registration(r388,c41,s115).registration1631,29535 -registration(r388,c41,s115).registration1631,29535 -registration(r389,c40,s115).registration1632,29564 -registration(r389,c40,s115).registration1632,29564 -registration(r390,c73,s115).registration1633,29593 -registration(r390,c73,s115).registration1633,29593 -registration(r391,c60,s115).registration1634,29622 -registration(r391,c60,s115).registration1634,29622 -registration(r392,c88,s116).registration1635,29651 -registration(r392,c88,s116).registration1635,29651 -registration(r393,c62,s116).registration1636,29680 -registration(r393,c62,s116).registration1636,29680 -registration(r394,c2,s116).registration1637,29709 -registration(r394,c2,s116).registration1637,29709 -registration(r395,c106,s117).registration1638,29737 -registration(r395,c106,s117).registration1638,29737 -registration(r396,c105,s117).registration1639,29767 -registration(r396,c105,s117).registration1639,29767 -registration(r397,c83,s117).registration1640,29797 -registration(r397,c83,s117).registration1640,29797 -registration(r398,c72,s118).registration1641,29826 -registration(r398,c72,s118).registration1641,29826 -registration(r399,c18,s118).registration1642,29855 -registration(r399,c18,s118).registration1642,29855 -registration(r400,c23,s118).registration1643,29884 -registration(r400,c23,s118).registration1643,29884 -registration(r401,c91,s118).registration1644,29913 -registration(r401,c91,s118).registration1644,29913 -registration(r402,c69,s119).registration1645,29942 -registration(r402,c69,s119).registration1645,29942 -registration(r403,c48,s119).registration1646,29971 -registration(r403,c48,s119).registration1646,29971 -registration(r404,c74,s119).registration1647,30000 -registration(r404,c74,s119).registration1647,30000 -registration(r405,c60,s120).registration1648,30029 -registration(r405,c60,s120).registration1648,30029 -registration(r406,c39,s120).registration1649,30058 -registration(r406,c39,s120).registration1649,30058 -registration(r407,c84,s120).registration1650,30087 -registration(r407,c84,s120).registration1650,30087 -registration(r408,c124,s121).registration1651,30116 -registration(r408,c124,s121).registration1651,30116 -registration(r409,c109,s121).registration1652,30146 -registration(r409,c109,s121).registration1652,30146 -registration(r410,c24,s121).registration1653,30176 -registration(r410,c24,s121).registration1653,30176 -registration(r411,c41,s121).registration1654,30205 -registration(r411,c41,s121).registration1654,30205 -registration(r412,c79,s122).registration1655,30234 -registration(r412,c79,s122).registration1655,30234 -registration(r413,c43,s122).registration1656,30263 -registration(r413,c43,s122).registration1656,30263 -registration(r414,c46,s122).registration1657,30292 -registration(r414,c46,s122).registration1657,30292 -registration(r415,c24,s122).registration1658,30321 -registration(r415,c24,s122).registration1658,30321 -registration(r416,c74,s123).registration1659,30350 -registration(r416,c74,s123).registration1659,30350 -registration(r417,c64,s123).registration1660,30379 -registration(r417,c64,s123).registration1660,30379 -registration(r418,c94,s123).registration1661,30408 -registration(r418,c94,s123).registration1661,30408 -registration(r419,c83,s123).registration1662,30437 -registration(r419,c83,s123).registration1662,30437 -registration(r420,c33,s124).registration1663,30466 -registration(r420,c33,s124).registration1663,30466 -registration(r421,c47,s124).registration1664,30495 -registration(r421,c47,s124).registration1664,30495 -registration(r422,c101,s124).registration1665,30524 -registration(r422,c101,s124).registration1665,30524 -registration(r423,c47,s125).registration1666,30554 -registration(r423,c47,s125).registration1666,30554 -registration(r424,c87,s125).registration1667,30583 -registration(r424,c87,s125).registration1667,30583 -registration(r425,c121,s125).registration1668,30612 -registration(r425,c121,s125).registration1668,30612 -registration(r426,c76,s126).registration1669,30642 -registration(r426,c76,s126).registration1669,30642 -registration(r427,c87,s126).registration1670,30671 -registration(r427,c87,s126).registration1670,30671 -registration(r428,c79,s126).registration1671,30700 -registration(r428,c79,s126).registration1671,30700 -registration(r429,c105,s127).registration1672,30729 -registration(r429,c105,s127).registration1672,30729 -registration(r430,c88,s127).registration1673,30759 -registration(r430,c88,s127).registration1673,30759 -registration(r431,c110,s127).registration1674,30788 -registration(r431,c110,s127).registration1674,30788 -registration(r432,c26,s128).registration1675,30818 -registration(r432,c26,s128).registration1675,30818 -registration(r433,c9,s128).registration1676,30847 -registration(r433,c9,s128).registration1676,30847 -registration(r434,c31,s128).registration1677,30875 -registration(r434,c31,s128).registration1677,30875 -registration(r435,c104,s129).registration1678,30904 -registration(r435,c104,s129).registration1678,30904 -registration(r436,c114,s129).registration1679,30934 -registration(r436,c114,s129).registration1679,30934 -registration(r437,c127,s129).registration1680,30964 -registration(r437,c127,s129).registration1680,30964 -registration(r438,c116,s130).registration1681,30994 -registration(r438,c116,s130).registration1681,30994 -registration(r439,c28,s130).registration1682,31024 -registration(r439,c28,s130).registration1682,31024 -registration(r440,c115,s130).registration1683,31053 -registration(r440,c115,s130).registration1683,31053 -registration(r441,c82,s130).registration1684,31083 -registration(r441,c82,s130).registration1684,31083 -registration(r442,c9,s131).registration1685,31112 -registration(r442,c9,s131).registration1685,31112 -registration(r443,c90,s131).registration1686,31140 -registration(r443,c90,s131).registration1686,31140 -registration(r444,c76,s131).registration1687,31169 -registration(r444,c76,s131).registration1687,31169 -registration(r445,c25,s132).registration1688,31198 -registration(r445,c25,s132).registration1688,31198 -registration(r446,c76,s132).registration1689,31227 -registration(r446,c76,s132).registration1689,31227 -registration(r447,c42,s132).registration1690,31256 -registration(r447,c42,s132).registration1690,31256 -registration(r448,c18,s132).registration1691,31285 -registration(r448,c18,s132).registration1691,31285 -registration(r449,c59,s133).registration1692,31314 -registration(r449,c59,s133).registration1692,31314 -registration(r450,c127,s133).registration1693,31343 -registration(r450,c127,s133).registration1693,31343 -registration(r451,c109,s133).registration1694,31373 -registration(r451,c109,s133).registration1694,31373 -registration(r452,c119,s133).registration1695,31403 -registration(r452,c119,s133).registration1695,31403 -registration(r453,c1,s134).registration1696,31433 -registration(r453,c1,s134).registration1696,31433 -registration(r454,c74,s134).registration1697,31461 -registration(r454,c74,s134).registration1697,31461 -registration(r455,c26,s134).registration1698,31490 -registration(r455,c26,s134).registration1698,31490 -registration(r456,c26,s135).registration1699,31519 -registration(r456,c26,s135).registration1699,31519 -registration(r457,c101,s135).registration1700,31548 -registration(r457,c101,s135).registration1700,31548 -registration(r458,c1,s135).registration1701,31578 -registration(r458,c1,s135).registration1701,31578 -registration(r459,c2,s135).registration1702,31606 -registration(r459,c2,s135).registration1702,31606 -registration(r460,c104,s136).registration1703,31634 -registration(r460,c104,s136).registration1703,31634 -registration(r461,c4,s136).registration1704,31664 -registration(r461,c4,s136).registration1704,31664 -registration(r462,c72,s136).registration1705,31692 -registration(r462,c72,s136).registration1705,31692 -registration(r463,c21,s137).registration1706,31721 -registration(r463,c21,s137).registration1706,31721 -registration(r464,c102,s137).registration1707,31750 -registration(r464,c102,s137).registration1707,31750 -registration(r465,c57,s137).registration1708,31780 -registration(r465,c57,s137).registration1708,31780 -registration(r466,c98,s138).registration1709,31809 -registration(r466,c98,s138).registration1709,31809 -registration(r467,c16,s138).registration1710,31838 -registration(r467,c16,s138).registration1710,31838 -registration(r468,c66,s138).registration1711,31867 -registration(r468,c66,s138).registration1711,31867 -registration(r469,c65,s139).registration1712,31896 -registration(r469,c65,s139).registration1712,31896 -registration(r470,c100,s139).registration1713,31925 -registration(r470,c100,s139).registration1713,31925 -registration(r471,c46,s139).registration1714,31955 -registration(r471,c46,s139).registration1714,31955 -registration(r472,c49,s140).registration1715,31984 -registration(r472,c49,s140).registration1715,31984 -registration(r473,c36,s140).registration1716,32013 -registration(r473,c36,s140).registration1716,32013 -registration(r474,c118,s140).registration1717,32042 -registration(r474,c118,s140).registration1717,32042 -registration(r475,c16,s141).registration1718,32072 -registration(r475,c16,s141).registration1718,32072 -registration(r476,c0,s141).registration1719,32101 -registration(r476,c0,s141).registration1719,32101 -registration(r477,c98,s141).registration1720,32129 -registration(r477,c98,s141).registration1720,32129 -registration(r478,c87,s141).registration1721,32158 -registration(r478,c87,s141).registration1721,32158 -registration(r479,c7,s142).registration1722,32187 -registration(r479,c7,s142).registration1722,32187 -registration(r480,c6,s142).registration1723,32215 -registration(r480,c6,s142).registration1723,32215 -registration(r481,c34,s142).registration1724,32243 -registration(r481,c34,s142).registration1724,32243 -registration(r482,c53,s143).registration1725,32272 -registration(r482,c53,s143).registration1725,32272 -registration(r483,c94,s143).registration1726,32301 -registration(r483,c94,s143).registration1726,32301 -registration(r484,c30,s143).registration1727,32330 -registration(r484,c30,s143).registration1727,32330 -registration(r485,c1,s143).registration1728,32359 -registration(r485,c1,s143).registration1728,32359 -registration(r486,c116,s144).registration1729,32387 -registration(r486,c116,s144).registration1729,32387 -registration(r487,c82,s144).registration1730,32417 -registration(r487,c82,s144).registration1730,32417 -registration(r488,c119,s144).registration1731,32446 -registration(r488,c119,s144).registration1731,32446 -registration(r489,c90,s144).registration1732,32476 -registration(r489,c90,s144).registration1732,32476 -registration(r490,c112,s145).registration1733,32505 -registration(r490,c112,s145).registration1733,32505 -registration(r491,c110,s145).registration1734,32535 -registration(r491,c110,s145).registration1734,32535 -registration(r492,c55,s145).registration1735,32565 -registration(r492,c55,s145).registration1735,32565 -registration(r493,c45,s145).registration1736,32594 -registration(r493,c45,s145).registration1736,32594 -registration(r494,c61,s146).registration1737,32623 -registration(r494,c61,s146).registration1737,32623 -registration(r495,c116,s146).registration1738,32652 -registration(r495,c116,s146).registration1738,32652 -registration(r496,c63,s146).registration1739,32682 -registration(r496,c63,s146).registration1739,32682 -registration(r497,c94,s147).registration1740,32711 -registration(r497,c94,s147).registration1740,32711 -registration(r498,c63,s147).registration1741,32740 -registration(r498,c63,s147).registration1741,32740 -registration(r499,c45,s147).registration1742,32769 -registration(r499,c45,s147).registration1742,32769 -registration(r500,c78,s148).registration1743,32798 -registration(r500,c78,s148).registration1743,32798 -registration(r501,c93,s148).registration1744,32827 -registration(r501,c93,s148).registration1744,32827 -registration(r502,c43,s148).registration1745,32856 -registration(r502,c43,s148).registration1745,32856 -registration(r503,c59,s148).registration1746,32885 -registration(r503,c59,s148).registration1746,32885 -registration(r504,c104,s149).registration1747,32914 -registration(r504,c104,s149).registration1747,32914 -registration(r505,c75,s149).registration1748,32944 -registration(r505,c75,s149).registration1748,32944 -registration(r506,c76,s149).registration1749,32973 -registration(r506,c76,s149).registration1749,32973 -registration(r507,c67,s150).registration1750,33002 -registration(r507,c67,s150).registration1750,33002 -registration(r508,c29,s150).registration1751,33031 -registration(r508,c29,s150).registration1751,33031 -registration(r509,c51,s150).registration1752,33060 -registration(r509,c51,s150).registration1752,33060 -registration(r510,c34,s150).registration1753,33089 -registration(r510,c34,s150).registration1753,33089 -registration(r511,c87,s151).registration1754,33118 -registration(r511,c87,s151).registration1754,33118 -registration(r512,c46,s151).registration1755,33147 -registration(r512,c46,s151).registration1755,33147 -registration(r513,c54,s151).registration1756,33176 -registration(r513,c54,s151).registration1756,33176 -registration(r514,c108,s151).registration1757,33205 -registration(r514,c108,s151).registration1757,33205 -registration(r515,c69,s152).registration1758,33235 -registration(r515,c69,s152).registration1758,33235 -registration(r516,c41,s152).registration1759,33264 -registration(r516,c41,s152).registration1759,33264 -registration(r517,c0,s152).registration1760,33293 -registration(r517,c0,s152).registration1760,33293 -registration(r518,c45,s153).registration1761,33321 -registration(r518,c45,s153).registration1761,33321 -registration(r519,c8,s153).registration1762,33350 -registration(r519,c8,s153).registration1762,33350 -registration(r520,c49,s153).registration1763,33378 -registration(r520,c49,s153).registration1763,33378 -registration(r521,c92,s154).registration1764,33407 -registration(r521,c92,s154).registration1764,33407 -registration(r522,c0,s154).registration1765,33436 -registration(r522,c0,s154).registration1765,33436 -registration(r523,c34,s154).registration1766,33464 -registration(r523,c34,s154).registration1766,33464 -registration(r524,c110,s155).registration1767,33493 -registration(r524,c110,s155).registration1767,33493 -registration(r525,c115,s155).registration1768,33523 -registration(r525,c115,s155).registration1768,33523 -registration(r526,c68,s155).registration1769,33553 -registration(r526,c68,s155).registration1769,33553 -registration(r527,c54,s155).registration1770,33582 -registration(r527,c54,s155).registration1770,33582 -registration(r528,c65,s156).registration1771,33611 -registration(r528,c65,s156).registration1771,33611 -registration(r529,c87,s156).registration1772,33640 -registration(r529,c87,s156).registration1772,33640 -registration(r530,c112,s156).registration1773,33669 -registration(r530,c112,s156).registration1773,33669 -registration(r531,c31,s157).registration1774,33699 -registration(r531,c31,s157).registration1774,33699 -registration(r532,c25,s157).registration1775,33728 -registration(r532,c25,s157).registration1775,33728 -registration(r533,c54,s157).registration1776,33757 -registration(r533,c54,s157).registration1776,33757 -registration(r534,c69,s157).registration1777,33786 -registration(r534,c69,s157).registration1777,33786 -registration(r535,c53,s158).registration1778,33815 -registration(r535,c53,s158).registration1778,33815 -registration(r536,c68,s158).registration1779,33844 -registration(r536,c68,s158).registration1779,33844 -registration(r537,c30,s158).registration1780,33873 -registration(r537,c30,s158).registration1780,33873 -registration(r538,c39,s159).registration1781,33902 -registration(r538,c39,s159).registration1781,33902 -registration(r539,c78,s159).registration1782,33931 -registration(r539,c78,s159).registration1782,33931 -registration(r540,c110,s159).registration1783,33960 -registration(r540,c110,s159).registration1783,33960 -registration(r541,c42,s159).registration1784,33990 -registration(r541,c42,s159).registration1784,33990 -registration(r542,c47,s160).registration1785,34019 -registration(r542,c47,s160).registration1785,34019 -registration(r543,c81,s160).registration1786,34048 -registration(r543,c81,s160).registration1786,34048 -registration(r544,c88,s160).registration1787,34077 -registration(r544,c88,s160).registration1787,34077 -registration(r545,c29,s161).registration1788,34106 -registration(r545,c29,s161).registration1788,34106 -registration(r546,c45,s161).registration1789,34135 -registration(r546,c45,s161).registration1789,34135 -registration(r547,c125,s161).registration1790,34164 -registration(r547,c125,s161).registration1790,34164 -registration(r548,c109,s161).registration1791,34194 -registration(r548,c109,s161).registration1791,34194 -registration(r549,c113,s162).registration1792,34224 -registration(r549,c113,s162).registration1792,34224 -registration(r550,c81,s162).registration1793,34254 -registration(r550,c81,s162).registration1793,34254 -registration(r551,c3,s162).registration1794,34283 -registration(r551,c3,s162).registration1794,34283 -registration(r552,c107,s162).registration1795,34311 -registration(r552,c107,s162).registration1795,34311 -registration(r553,c28,s163).registration1796,34341 -registration(r553,c28,s163).registration1796,34341 -registration(r554,c48,s163).registration1797,34370 -registration(r554,c48,s163).registration1797,34370 -registration(r555,c53,s163).registration1798,34399 -registration(r555,c53,s163).registration1798,34399 -registration(r556,c83,s164).registration1799,34428 -registration(r556,c83,s164).registration1799,34428 -registration(r557,c112,s164).registration1800,34457 -registration(r557,c112,s164).registration1800,34457 -registration(r558,c100,s164).registration1801,34487 -registration(r558,c100,s164).registration1801,34487 -registration(r559,c82,s165).registration1802,34517 -registration(r559,c82,s165).registration1802,34517 -registration(r560,c7,s165).registration1803,34546 -registration(r560,c7,s165).registration1803,34546 -registration(r561,c104,s165).registration1804,34574 -registration(r561,c104,s165).registration1804,34574 -registration(r562,c58,s166).registration1805,34604 -registration(r562,c58,s166).registration1805,34604 -registration(r563,c24,s166).registration1806,34633 -registration(r563,c24,s166).registration1806,34633 -registration(r564,c87,s166).registration1807,34662 -registration(r564,c87,s166).registration1807,34662 -registration(r565,c3,s167).registration1808,34691 -registration(r565,c3,s167).registration1808,34691 -registration(r566,c124,s167).registration1809,34719 -registration(r566,c124,s167).registration1809,34719 -registration(r567,c55,s167).registration1810,34749 -registration(r567,c55,s167).registration1810,34749 -registration(r568,c40,s168).registration1811,34778 -registration(r568,c40,s168).registration1811,34778 -registration(r569,c67,s168).registration1812,34807 -registration(r569,c67,s168).registration1812,34807 -registration(r570,c85,s168).registration1813,34836 -registration(r570,c85,s168).registration1813,34836 -registration(r571,c14,s169).registration1814,34865 -registration(r571,c14,s169).registration1814,34865 -registration(r572,c86,s169).registration1815,34894 -registration(r572,c86,s169).registration1815,34894 -registration(r573,c95,s169).registration1816,34923 -registration(r573,c95,s169).registration1816,34923 -registration(r574,c81,s170).registration1817,34952 -registration(r574,c81,s170).registration1817,34952 -registration(r575,c22,s170).registration1818,34981 -registration(r575,c22,s170).registration1818,34981 -registration(r576,c24,s170).registration1819,35010 -registration(r576,c24,s170).registration1819,35010 -registration(r577,c87,s170).registration1820,35039 -registration(r577,c87,s170).registration1820,35039 -registration(r578,c9,s171).registration1821,35068 -registration(r578,c9,s171).registration1821,35068 -registration(r579,c25,s171).registration1822,35096 -registration(r579,c25,s171).registration1822,35096 -registration(r580,c64,s171).registration1823,35125 -registration(r580,c64,s171).registration1823,35125 -registration(r581,c121,s172).registration1824,35154 -registration(r581,c121,s172).registration1824,35154 -registration(r582,c99,s172).registration1825,35184 -registration(r582,c99,s172).registration1825,35184 -registration(r583,c38,s172).registration1826,35213 -registration(r583,c38,s172).registration1826,35213 -registration(r584,c41,s173).registration1827,35242 -registration(r584,c41,s173).registration1827,35242 -registration(r585,c117,s173).registration1828,35271 -registration(r585,c117,s173).registration1828,35271 -registration(r586,c81,s173).registration1829,35301 -registration(r586,c81,s173).registration1829,35301 -registration(r587,c122,s174).registration1830,35330 -registration(r587,c122,s174).registration1830,35330 -registration(r588,c93,s174).registration1831,35360 -registration(r588,c93,s174).registration1831,35360 -registration(r589,c27,s174).registration1832,35389 -registration(r589,c27,s174).registration1832,35389 -registration(r590,c42,s174).registration1833,35418 -registration(r590,c42,s174).registration1833,35418 -registration(r591,c10,s175).registration1834,35447 -registration(r591,c10,s175).registration1834,35447 -registration(r592,c107,s175).registration1835,35476 -registration(r592,c107,s175).registration1835,35476 -registration(r593,c110,s175).registration1836,35506 -registration(r593,c110,s175).registration1836,35506 -registration(r594,c4,s176).registration1837,35536 -registration(r594,c4,s176).registration1837,35536 -registration(r595,c75,s176).registration1838,35564 -registration(r595,c75,s176).registration1838,35564 -registration(r596,c116,s176).registration1839,35593 -registration(r596,c116,s176).registration1839,35593 -registration(r597,c33,s176).registration1840,35623 -registration(r597,c33,s176).registration1840,35623 -registration(r598,c46,s177).registration1841,35652 -registration(r598,c46,s177).registration1841,35652 -registration(r599,c96,s177).registration1842,35681 -registration(r599,c96,s177).registration1842,35681 -registration(r600,c73,s177).registration1843,35710 -registration(r600,c73,s177).registration1843,35710 -registration(r601,c45,s178).registration1844,35739 -registration(r601,c45,s178).registration1844,35739 -registration(r602,c36,s178).registration1845,35768 -registration(r602,c36,s178).registration1845,35768 -registration(r603,c82,s178).registration1846,35797 -registration(r603,c82,s178).registration1846,35797 -registration(r604,c71,s179).registration1847,35826 -registration(r604,c71,s179).registration1847,35826 -registration(r605,c25,s179).registration1848,35855 -registration(r605,c25,s179).registration1848,35855 -registration(r606,c106,s179).registration1849,35884 -registration(r606,c106,s179).registration1849,35884 -registration(r607,c19,s179).registration1850,35914 -registration(r607,c19,s179).registration1850,35914 -registration(r608,c41,s180).registration1851,35943 -registration(r608,c41,s180).registration1851,35943 -registration(r609,c72,s180).registration1852,35972 -registration(r609,c72,s180).registration1852,35972 -registration(r610,c85,s180).registration1853,36001 -registration(r610,c85,s180).registration1853,36001 -registration(r611,c64,s181).registration1854,36030 -registration(r611,c64,s181).registration1854,36030 -registration(r612,c67,s181).registration1855,36059 -registration(r612,c67,s181).registration1855,36059 -registration(r613,c4,s181).registration1856,36088 -registration(r613,c4,s181).registration1856,36088 -registration(r614,c79,s182).registration1857,36116 -registration(r614,c79,s182).registration1857,36116 -registration(r615,c115,s182).registration1858,36145 -registration(r615,c115,s182).registration1858,36145 -registration(r616,c92,s182).registration1859,36175 -registration(r616,c92,s182).registration1859,36175 -registration(r617,c11,s183).registration1860,36204 -registration(r617,c11,s183).registration1860,36204 -registration(r618,c81,s183).registration1861,36233 -registration(r618,c81,s183).registration1861,36233 -registration(r619,c58,s183).registration1862,36262 -registration(r619,c58,s183).registration1862,36262 -registration(r620,c42,s183).registration1863,36291 -registration(r620,c42,s183).registration1863,36291 -registration(r621,c46,s184).registration1864,36320 -registration(r621,c46,s184).registration1864,36320 -registration(r622,c124,s184).registration1865,36349 -registration(r622,c124,s184).registration1865,36349 -registration(r623,c48,s184).registration1866,36379 -registration(r623,c48,s184).registration1866,36379 -registration(r624,c73,s185).registration1867,36408 -registration(r624,c73,s185).registration1867,36408 -registration(r625,c103,s185).registration1868,36437 -registration(r625,c103,s185).registration1868,36437 -registration(r626,c80,s185).registration1869,36467 -registration(r626,c80,s185).registration1869,36467 -registration(r627,c123,s186).registration1870,36496 -registration(r627,c123,s186).registration1870,36496 -registration(r628,c37,s186).registration1871,36526 -registration(r628,c37,s186).registration1871,36526 -registration(r629,c4,s186).registration1872,36555 -registration(r629,c4,s186).registration1872,36555 -registration(r630,c69,s187).registration1873,36583 -registration(r630,c69,s187).registration1873,36583 -registration(r631,c18,s187).registration1874,36612 -registration(r631,c18,s187).registration1874,36612 -registration(r632,c124,s187).registration1875,36641 -registration(r632,c124,s187).registration1875,36641 -registration(r633,c76,s188).registration1876,36671 -registration(r633,c76,s188).registration1876,36671 -registration(r634,c54,s188).registration1877,36700 -registration(r634,c54,s188).registration1877,36700 -registration(r635,c55,s188).registration1878,36729 -registration(r635,c55,s188).registration1878,36729 -registration(r636,c65,s189).registration1879,36758 -registration(r636,c65,s189).registration1879,36758 -registration(r637,c13,s189).registration1880,36787 -registration(r637,c13,s189).registration1880,36787 -registration(r638,c99,s189).registration1881,36816 -registration(r638,c99,s189).registration1881,36816 -registration(r639,c75,s190).registration1882,36845 -registration(r639,c75,s190).registration1882,36845 -registration(r640,c121,s190).registration1883,36874 -registration(r640,c121,s190).registration1883,36874 -registration(r641,c51,s190).registration1884,36904 -registration(r641,c51,s190).registration1884,36904 -registration(r642,c119,s191).registration1885,36933 -registration(r642,c119,s191).registration1885,36933 -registration(r643,c69,s191).registration1886,36963 -registration(r643,c69,s191).registration1886,36963 -registration(r644,c93,s191).registration1887,36992 -registration(r644,c93,s191).registration1887,36992 -registration(r645,c13,s192).registration1888,37021 -registration(r645,c13,s192).registration1888,37021 -registration(r646,c68,s192).registration1889,37050 -registration(r646,c68,s192).registration1889,37050 -registration(r647,c73,s192).registration1890,37079 -registration(r647,c73,s192).registration1890,37079 -registration(r648,c20,s192).registration1891,37108 -registration(r648,c20,s192).registration1891,37108 -registration(r649,c87,s193).registration1892,37137 -registration(r649,c87,s193).registration1892,37137 -registration(r650,c37,s193).registration1893,37166 -registration(r650,c37,s193).registration1893,37166 -registration(r651,c61,s193).registration1894,37195 -registration(r651,c61,s193).registration1894,37195 -registration(r652,c9,s194).registration1895,37224 -registration(r652,c9,s194).registration1895,37224 -registration(r653,c82,s194).registration1896,37252 -registration(r653,c82,s194).registration1896,37252 -registration(r654,c55,s194).registration1897,37281 -registration(r654,c55,s194).registration1897,37281 -registration(r655,c120,s195).registration1898,37310 -registration(r655,c120,s195).registration1898,37310 -registration(r656,c82,s195).registration1899,37340 -registration(r656,c82,s195).registration1899,37340 -registration(r657,c92,s195).registration1900,37369 -registration(r657,c92,s195).registration1900,37369 -registration(r658,c40,s195).registration1901,37398 -registration(r658,c40,s195).registration1901,37398 -registration(r659,c61,s196).registration1902,37427 -registration(r659,c61,s196).registration1902,37427 -registration(r660,c64,s196).registration1903,37456 -registration(r660,c64,s196).registration1903,37456 -registration(r661,c36,s196).registration1904,37485 -registration(r661,c36,s196).registration1904,37485 -registration(r662,c106,s197).registration1905,37514 -registration(r662,c106,s197).registration1905,37514 -registration(r663,c19,s197).registration1906,37544 -registration(r663,c19,s197).registration1906,37544 -registration(r664,c0,s197).registration1907,37573 -registration(r664,c0,s197).registration1907,37573 -registration(r665,c34,s197).registration1908,37601 -registration(r665,c34,s197).registration1908,37601 -registration(r666,c86,s198).registration1909,37630 -registration(r666,c86,s198).registration1909,37630 -registration(r667,c50,s198).registration1910,37659 -registration(r667,c50,s198).registration1910,37659 -registration(r668,c89,s198).registration1911,37688 -registration(r668,c89,s198).registration1911,37688 -registration(r669,c10,s198).registration1912,37717 -registration(r669,c10,s198).registration1912,37717 -registration(r670,c84,s199).registration1913,37746 -registration(r670,c84,s199).registration1913,37746 -registration(r671,c37,s199).registration1914,37775 -registration(r671,c37,s199).registration1914,37775 -registration(r672,c126,s199).registration1915,37804 -registration(r672,c126,s199).registration1915,37804 -registration(r673,c53,s200).registration1916,37834 -registration(r673,c53,s200).registration1916,37834 -registration(r674,c35,s200).registration1917,37863 -registration(r674,c35,s200).registration1917,37863 -registration(r675,c114,s200).registration1918,37892 -registration(r675,c114,s200).registration1918,37892 -registration(r676,c79,s201).registration1919,37922 -registration(r676,c79,s201).registration1919,37922 -registration(r677,c114,s201).registration1920,37951 -registration(r677,c114,s201).registration1920,37951 -registration(r678,c2,s201).registration1921,37981 -registration(r678,c2,s201).registration1921,37981 -registration(r679,c66,s202).registration1922,38009 -registration(r679,c66,s202).registration1922,38009 -registration(r680,c29,s202).registration1923,38038 -registration(r680,c29,s202).registration1923,38038 -registration(r681,c101,s202).registration1924,38067 -registration(r681,c101,s202).registration1924,38067 -registration(r682,c120,s202).registration1925,38097 -registration(r682,c120,s202).registration1925,38097 -registration(r683,c123,s203).registration1926,38127 -registration(r683,c123,s203).registration1926,38127 -registration(r684,c22,s203).registration1927,38157 -registration(r684,c22,s203).registration1927,38157 -registration(r685,c26,s203).registration1928,38186 -registration(r685,c26,s203).registration1928,38186 -registration(r686,c77,s204).registration1929,38215 -registration(r686,c77,s204).registration1929,38215 -registration(r687,c24,s204).registration1930,38244 -registration(r687,c24,s204).registration1930,38244 -registration(r688,c4,s204).registration1931,38273 -registration(r688,c4,s204).registration1931,38273 -registration(r689,c90,s204).registration1932,38301 -registration(r689,c90,s204).registration1932,38301 -registration(r690,c125,s205).registration1933,38330 -registration(r690,c125,s205).registration1933,38330 -registration(r691,c21,s205).registration1934,38360 -registration(r691,c21,s205).registration1934,38360 -registration(r692,c55,s205).registration1935,38389 -registration(r692,c55,s205).registration1935,38389 -registration(r693,c90,s206).registration1936,38418 -registration(r693,c90,s206).registration1936,38418 -registration(r694,c104,s206).registration1937,38447 -registration(r694,c104,s206).registration1937,38447 -registration(r695,c121,s206).registration1938,38477 -registration(r695,c121,s206).registration1938,38477 -registration(r696,c107,s207).registration1939,38507 -registration(r696,c107,s207).registration1939,38507 -registration(r697,c83,s207).registration1940,38537 -registration(r697,c83,s207).registration1940,38537 -registration(r698,c48,s207).registration1941,38566 -registration(r698,c48,s207).registration1941,38566 -registration(r699,c78,s207).registration1942,38595 -registration(r699,c78,s207).registration1942,38595 -registration(r700,c1,s208).registration1943,38624 -registration(r700,c1,s208).registration1943,38624 -registration(r701,c17,s208).registration1944,38652 -registration(r701,c17,s208).registration1944,38652 -registration(r702,c87,s208).registration1945,38681 -registration(r702,c87,s208).registration1945,38681 -registration(r703,c110,s208).registration1946,38710 -registration(r703,c110,s208).registration1946,38710 -registration(r704,c19,s209).registration1947,38740 -registration(r704,c19,s209).registration1947,38740 -registration(r705,c76,s209).registration1948,38769 -registration(r705,c76,s209).registration1948,38769 -registration(r706,c91,s209).registration1949,38798 -registration(r706,c91,s209).registration1949,38798 -registration(r707,c95,s210).registration1950,38827 -registration(r707,c95,s210).registration1950,38827 -registration(r708,c56,s210).registration1951,38856 -registration(r708,c56,s210).registration1951,38856 -registration(r709,c123,s210).registration1952,38885 -registration(r709,c123,s210).registration1952,38885 -registration(r710,c17,s211).registration1953,38915 -registration(r710,c17,s211).registration1953,38915 -registration(r711,c112,s211).registration1954,38944 -registration(r711,c112,s211).registration1954,38944 -registration(r712,c44,s211).registration1955,38974 -registration(r712,c44,s211).registration1955,38974 -registration(r713,c20,s212).registration1956,39003 -registration(r713,c20,s212).registration1956,39003 -registration(r714,c86,s212).registration1957,39032 -registration(r714,c86,s212).registration1957,39032 -registration(r715,c28,s212).registration1958,39061 -registration(r715,c28,s212).registration1958,39061 -registration(r716,c111,s213).registration1959,39090 -registration(r716,c111,s213).registration1959,39090 -registration(r717,c126,s213).registration1960,39120 -registration(r717,c126,s213).registration1960,39120 -registration(r718,c91,s213).registration1961,39150 -registration(r718,c91,s213).registration1961,39150 -registration(r719,c75,s213).registration1962,39179 -registration(r719,c75,s213).registration1962,39179 -registration(r720,c23,s214).registration1963,39208 -registration(r720,c23,s214).registration1963,39208 -registration(r721,c37,s214).registration1964,39237 -registration(r721,c37,s214).registration1964,39237 -registration(r722,c88,s214).registration1965,39266 -registration(r722,c88,s214).registration1965,39266 -registration(r723,c108,s214).registration1966,39295 -registration(r723,c108,s214).registration1966,39295 -registration(r724,c110,s215).registration1967,39325 -registration(r724,c110,s215).registration1967,39325 -registration(r725,c108,s215).registration1968,39355 -registration(r725,c108,s215).registration1968,39355 -registration(r726,c75,s215).registration1969,39385 -registration(r726,c75,s215).registration1969,39385 -registration(r727,c5,s216).registration1970,39414 -registration(r727,c5,s216).registration1970,39414 -registration(r728,c79,s216).registration1971,39442 -registration(r728,c79,s216).registration1971,39442 -registration(r729,c6,s216).registration1972,39471 -registration(r729,c6,s216).registration1972,39471 -registration(r730,c118,s217).registration1973,39499 -registration(r730,c118,s217).registration1973,39499 -registration(r731,c103,s217).registration1974,39529 -registration(r731,c103,s217).registration1974,39529 -registration(r732,c59,s217).registration1975,39559 -registration(r732,c59,s217).registration1975,39559 -registration(r733,c18,s218).registration1976,39588 -registration(r733,c18,s218).registration1976,39588 -registration(r734,c92,s218).registration1977,39617 -registration(r734,c92,s218).registration1977,39617 -registration(r735,c73,s218).registration1978,39646 -registration(r735,c73,s218).registration1978,39646 -registration(r736,c72,s219).registration1979,39675 -registration(r736,c72,s219).registration1979,39675 -registration(r737,c48,s219).registration1980,39704 -registration(r737,c48,s219).registration1980,39704 -registration(r738,c83,s219).registration1981,39733 -registration(r738,c83,s219).registration1981,39733 -registration(r739,c15,s219).registration1982,39762 -registration(r739,c15,s219).registration1982,39762 -registration(r740,c57,s220).registration1983,39791 -registration(r740,c57,s220).registration1983,39791 -registration(r741,c104,s220).registration1984,39820 -registration(r741,c104,s220).registration1984,39820 -registration(r742,c12,s220).registration1985,39850 -registration(r742,c12,s220).registration1985,39850 -registration(r743,c123,s221).registration1986,39879 -registration(r743,c123,s221).registration1986,39879 -registration(r744,c56,s221).registration1987,39909 -registration(r744,c56,s221).registration1987,39909 -registration(r745,c32,s221).registration1988,39938 -registration(r745,c32,s221).registration1988,39938 -registration(r746,c38,s221).registration1989,39967 -registration(r746,c38,s221).registration1989,39967 -registration(r747,c30,s222).registration1990,39996 -registration(r747,c30,s222).registration1990,39996 -registration(r748,c11,s222).registration1991,40025 -registration(r748,c11,s222).registration1991,40025 -registration(r749,c98,s222).registration1992,40054 -registration(r749,c98,s222).registration1992,40054 -registration(r750,c74,s222).registration1993,40083 -registration(r750,c74,s222).registration1993,40083 -registration(r751,c59,s223).registration1994,40112 -registration(r751,c59,s223).registration1994,40112 -registration(r752,c66,s223).registration1995,40141 -registration(r752,c66,s223).registration1995,40141 -registration(r753,c72,s223).registration1996,40170 -registration(r753,c72,s223).registration1996,40170 -registration(r754,c17,s224).registration1997,40199 -registration(r754,c17,s224).registration1997,40199 -registration(r755,c34,s224).registration1998,40228 -registration(r755,c34,s224).registration1998,40228 -registration(r756,c107,s224).registration1999,40257 -registration(r756,c107,s224).registration1999,40257 -registration(r757,c62,s225).registration2000,40287 -registration(r757,c62,s225).registration2000,40287 -registration(r758,c111,s225).registration2001,40316 -registration(r758,c111,s225).registration2001,40316 -registration(r759,c97,s225).registration2002,40346 -registration(r759,c97,s225).registration2002,40346 -registration(r760,c74,s226).registration2003,40375 -registration(r760,c74,s226).registration2003,40375 -registration(r761,c52,s226).registration2004,40404 -registration(r761,c52,s226).registration2004,40404 -registration(r762,c116,s226).registration2005,40433 -registration(r762,c116,s226).registration2005,40433 -registration(r763,c44,s227).registration2006,40463 -registration(r763,c44,s227).registration2006,40463 -registration(r764,c64,s227).registration2007,40492 -registration(r764,c64,s227).registration2007,40492 -registration(r765,c0,s227).registration2008,40521 -registration(r765,c0,s227).registration2008,40521 -registration(r766,c30,s228).registration2009,40549 -registration(r766,c30,s228).registration2009,40549 -registration(r767,c61,s228).registration2010,40578 -registration(r767,c61,s228).registration2010,40578 -registration(r768,c73,s228).registration2011,40607 -registration(r768,c73,s228).registration2011,40607 -registration(r769,c19,s229).registration2012,40636 -registration(r769,c19,s229).registration2012,40636 -registration(r770,c88,s229).registration2013,40665 -registration(r770,c88,s229).registration2013,40665 -registration(r771,c0,s229).registration2014,40694 -registration(r771,c0,s229).registration2014,40694 -registration(r772,c31,s230).registration2015,40722 -registration(r772,c31,s230).registration2015,40722 -registration(r773,c108,s230).registration2016,40751 -registration(r773,c108,s230).registration2016,40751 -registration(r774,c71,s230).registration2017,40781 -registration(r774,c71,s230).registration2017,40781 -registration(r775,c69,s230).registration2018,40810 -registration(r775,c69,s230).registration2018,40810 -registration(r776,c72,s231).registration2019,40839 -registration(r776,c72,s231).registration2019,40839 -registration(r777,c53,s231).registration2020,40868 -registration(r777,c53,s231).registration2020,40868 -registration(r778,c124,s231).registration2021,40897 -registration(r778,c124,s231).registration2021,40897 -registration(r779,c71,s232).registration2022,40927 -registration(r779,c71,s232).registration2022,40927 -registration(r780,c37,s232).registration2023,40956 -registration(r780,c37,s232).registration2023,40956 -registration(r781,c82,s232).registration2024,40985 -registration(r781,c82,s232).registration2024,40985 -registration(r782,c126,s233).registration2025,41014 -registration(r782,c126,s233).registration2025,41014 -registration(r783,c37,s233).registration2026,41044 -registration(r783,c37,s233).registration2026,41044 -registration(r784,c86,s233).registration2027,41073 -registration(r784,c86,s233).registration2027,41073 -registration(r785,c116,s233).registration2028,41102 -registration(r785,c116,s233).registration2028,41102 -registration(r786,c109,s234).registration2029,41132 -registration(r786,c109,s234).registration2029,41132 -registration(r787,c83,s234).registration2030,41162 -registration(r787,c83,s234).registration2030,41162 -registration(r788,c18,s234).registration2031,41191 -registration(r788,c18,s234).registration2031,41191 -registration(r789,c106,s235).registration2032,41220 -registration(r789,c106,s235).registration2032,41220 -registration(r790,c44,s235).registration2033,41250 -registration(r790,c44,s235).registration2033,41250 -registration(r791,c66,s235).registration2034,41279 -registration(r791,c66,s235).registration2034,41279 -registration(r792,c76,s235).registration2035,41308 -registration(r792,c76,s235).registration2035,41308 -registration(r793,c87,s236).registration2036,41337 -registration(r793,c87,s236).registration2036,41337 -registration(r794,c85,s236).registration2037,41366 -registration(r794,c85,s236).registration2037,41366 -registration(r795,c117,s236).registration2038,41395 -registration(r795,c117,s236).registration2038,41395 -registration(r796,c43,s237).registration2039,41425 -registration(r796,c43,s237).registration2039,41425 -registration(r797,c110,s237).registration2040,41454 -registration(r797,c110,s237).registration2040,41454 -registration(r798,c15,s237).registration2041,41484 -registration(r798,c15,s237).registration2041,41484 -registration(r799,c54,s237).registration2042,41513 -registration(r799,c54,s237).registration2042,41513 -registration(r800,c91,s238).registration2043,41542 -registration(r800,c91,s238).registration2043,41542 -registration(r801,c27,s238).registration2044,41571 -registration(r801,c27,s238).registration2044,41571 -registration(r802,c11,s238).registration2045,41600 -registration(r802,c11,s238).registration2045,41600 -registration(r803,c98,s239).registration2046,41629 -registration(r803,c98,s239).registration2046,41629 -registration(r804,c10,s239).registration2047,41658 -registration(r804,c10,s239).registration2047,41658 -registration(r805,c76,s239).registration2048,41687 -registration(r805,c76,s239).registration2048,41687 -registration(r806,c32,s240).registration2049,41716 -registration(r806,c32,s240).registration2049,41716 -registration(r807,c106,s240).registration2050,41745 -registration(r807,c106,s240).registration2050,41745 -registration(r808,c36,s240).registration2051,41775 -registration(r808,c36,s240).registration2051,41775 -registration(r809,c85,s240).registration2052,41804 -registration(r809,c85,s240).registration2052,41804 -registration(r810,c75,s241).registration2053,41833 -registration(r810,c75,s241).registration2053,41833 -registration(r811,c101,s241).registration2054,41862 -registration(r811,c101,s241).registration2054,41862 -registration(r812,c28,s241).registration2055,41892 -registration(r812,c28,s241).registration2055,41892 -registration(r813,c115,s242).registration2056,41921 -registration(r813,c115,s242).registration2056,41921 -registration(r814,c110,s242).registration2057,41951 -registration(r814,c110,s242).registration2057,41951 -registration(r815,c46,s242).registration2058,41981 -registration(r815,c46,s242).registration2058,41981 -registration(r816,c26,s242).registration2059,42010 -registration(r816,c26,s242).registration2059,42010 -registration(r817,c33,s243).registration2060,42039 -registration(r817,c33,s243).registration2060,42039 -registration(r818,c36,s243).registration2061,42068 -registration(r818,c36,s243).registration2061,42068 -registration(r819,c84,s243).registration2062,42097 -registration(r819,c84,s243).registration2062,42097 -registration(r820,c111,s244).registration2063,42126 -registration(r820,c111,s244).registration2063,42126 -registration(r821,c97,s244).registration2064,42156 -registration(r821,c97,s244).registration2064,42156 -registration(r822,c88,s244).registration2065,42185 -registration(r822,c88,s244).registration2065,42185 -registration(r823,c100,s245).registration2066,42214 -registration(r823,c100,s245).registration2066,42214 -registration(r824,c125,s245).registration2067,42244 -registration(r824,c125,s245).registration2067,42244 -registration(r825,c29,s245).registration2068,42274 -registration(r825,c29,s245).registration2068,42274 -registration(r826,c8,s246).registration2069,42303 -registration(r826,c8,s246).registration2069,42303 -registration(r827,c0,s246).registration2070,42331 -registration(r827,c0,s246).registration2070,42331 -registration(r828,c40,s246).registration2071,42359 -registration(r828,c40,s246).registration2071,42359 -registration(r829,c114,s247).registration2072,42388 -registration(r829,c114,s247).registration2072,42388 -registration(r830,c66,s247).registration2073,42418 -registration(r830,c66,s247).registration2073,42418 -registration(r831,c109,s247).registration2074,42447 -registration(r831,c109,s247).registration2074,42447 -registration(r832,c96,s247).registration2075,42477 -registration(r832,c96,s247).registration2075,42477 -registration(r833,c92,s248).registration2076,42506 -registration(r833,c92,s248).registration2076,42506 -registration(r834,c47,s248).registration2077,42535 -registration(r834,c47,s248).registration2077,42535 -registration(r835,c115,s248).registration2078,42564 -registration(r835,c115,s248).registration2078,42564 -registration(r836,c21,s249).registration2079,42594 -registration(r836,c21,s249).registration2079,42594 -registration(r837,c27,s249).registration2080,42623 -registration(r837,c27,s249).registration2080,42623 -registration(r838,c35,s249).registration2081,42652 -registration(r838,c35,s249).registration2081,42652 -registration(r839,c17,s250).registration2082,42681 -registration(r839,c17,s250).registration2082,42681 -registration(r840,c78,s250).registration2083,42710 -registration(r840,c78,s250).registration2083,42710 -registration(r841,c115,s250).registration2084,42739 -registration(r841,c115,s250).registration2084,42739 -registration(r842,c87,s250).registration2085,42769 -registration(r842,c87,s250).registration2085,42769 -registration(r843,c64,s251).registration2086,42798 -registration(r843,c64,s251).registration2086,42798 -registration(r844,c48,s251).registration2087,42827 -registration(r844,c48,s251).registration2087,42827 -registration(r845,c52,s251).registration2088,42856 -registration(r845,c52,s251).registration2088,42856 -registration(r846,c53,s252).registration2089,42885 -registration(r846,c53,s252).registration2089,42885 -registration(r847,c6,s252).registration2090,42914 -registration(r847,c6,s252).registration2090,42914 -registration(r848,c23,s252).registration2091,42942 -registration(r848,c23,s252).registration2091,42942 -registration(r849,c120,s252).registration2092,42971 -registration(r849,c120,s252).registration2092,42971 -registration(r850,c117,s253).registration2093,43001 -registration(r850,c117,s253).registration2093,43001 -registration(r851,c99,s253).registration2094,43031 -registration(r851,c99,s253).registration2094,43031 -registration(r852,c88,s253).registration2095,43060 -registration(r852,c88,s253).registration2095,43060 -registration(r853,c9,s254).registration2096,43089 -registration(r853,c9,s254).registration2096,43089 -registration(r854,c75,s254).registration2097,43117 -registration(r854,c75,s254).registration2097,43117 -registration(r855,c56,s254).registration2098,43146 -registration(r855,c56,s254).registration2098,43146 -registration(r856,c83,s255).registration2099,43175 -registration(r856,c83,s255).registration2099,43175 -registration(r857,c121,s255).registration2100,43204 -registration(r857,c121,s255).registration2100,43204 -registration(r858,c74,s255).registration2101,43234 -registration(r858,c74,s255).registration2101,43234 -registration(r859,c25,s255).registration2102,43263 -registration(r859,c25,s255).registration2102,43263 -registration(r860,c97,s256).registration2103,43292 -registration(r860,c97,s256).registration2103,43292 -registration(r861,c77,s256).registration2104,43321 -registration(r861,c77,s256).registration2104,43321 -registration(r862,c44,s256).registration2105,43350 -registration(r862,c44,s256).registration2105,43350 -registration(r863,c94,s256).registration2106,43379 -registration(r863,c94,s256).registration2106,43379 -registration(r864,c109,s257).registration2107,43408 -registration(r864,c109,s257).registration2107,43408 -registration(r865,c110,s257).registration2108,43438 -registration(r865,c110,s257).registration2108,43438 -registration(r866,c23,s257).registration2109,43468 -registration(r866,c23,s257).registration2109,43468 -registration(r867,c46,s258).registration2110,43497 -registration(r867,c46,s258).registration2110,43497 -registration(r868,c41,s258).registration2111,43526 -registration(r868,c41,s258).registration2111,43526 -registration(r869,c108,s258).registration2112,43555 -registration(r869,c108,s258).registration2112,43555 -registration(r870,c31,s258).registration2113,43585 -registration(r870,c31,s258).registration2113,43585 -registration(r871,c97,s259).registration2114,43614 -registration(r871,c97,s259).registration2114,43614 -registration(r872,c119,s259).registration2115,43643 -registration(r872,c119,s259).registration2115,43643 -registration(r873,c17,s259).registration2116,43673 -registration(r873,c17,s259).registration2116,43673 -registration(r874,c74,s260).registration2117,43702 -registration(r874,c74,s260).registration2117,43702 -registration(r875,c65,s260).registration2118,43731 -registration(r875,c65,s260).registration2118,43731 -registration(r876,c35,s260).registration2119,43760 -registration(r876,c35,s260).registration2119,43760 -registration(r877,c111,s261).registration2120,43789 -registration(r877,c111,s261).registration2120,43789 -registration(r878,c10,s261).registration2121,43819 -registration(r878,c10,s261).registration2121,43819 -registration(r879,c71,s261).registration2122,43848 -registration(r879,c71,s261).registration2122,43848 -registration(r880,c107,s261).registration2123,43877 -registration(r880,c107,s261).registration2123,43877 -registration(r881,c54,s261).registration2124,43907 -registration(r881,c54,s261).registration2124,43907 -registration(r882,c37,s262).registration2125,43936 -registration(r882,c37,s262).registration2125,43936 -registration(r883,c36,s262).registration2126,43965 -registration(r883,c36,s262).registration2126,43965 -registration(r884,c21,s262).registration2127,43994 -registration(r884,c21,s262).registration2127,43994 -registration(r885,c17,s262).registration2128,44023 -registration(r885,c17,s262).registration2128,44023 -registration(r886,c53,s263).registration2129,44052 -registration(r886,c53,s263).registration2129,44052 -registration(r887,c6,s263).registration2130,44081 -registration(r887,c6,s263).registration2130,44081 -registration(r888,c93,s263).registration2131,44109 -registration(r888,c93,s263).registration2131,44109 -registration(r889,c101,s264).registration2132,44138 -registration(r889,c101,s264).registration2132,44138 -registration(r890,c0,s264).registration2133,44168 -registration(r890,c0,s264).registration2133,44168 -registration(r891,c67,s264).registration2134,44196 -registration(r891,c67,s264).registration2134,44196 -registration(r892,c86,s265).registration2135,44225 -registration(r892,c86,s265).registration2135,44225 -registration(r893,c50,s265).registration2136,44254 -registration(r893,c50,s265).registration2136,44254 -registration(r894,c59,s265).registration2137,44283 -registration(r894,c59,s265).registration2137,44283 -registration(r895,c95,s266).registration2138,44312 -registration(r895,c95,s266).registration2138,44312 -registration(r896,c61,s266).registration2139,44341 -registration(r896,c61,s266).registration2139,44341 -registration(r897,c48,s266).registration2140,44370 -registration(r897,c48,s266).registration2140,44370 -registration(r898,c120,s267).registration2141,44399 -registration(r898,c120,s267).registration2141,44399 -registration(r899,c88,s267).registration2142,44429 -registration(r899,c88,s267).registration2142,44429 -registration(r900,c52,s267).registration2143,44458 -registration(r900,c52,s267).registration2143,44458 -registration(r901,c15,s267).registration2144,44487 -registration(r901,c15,s267).registration2144,44487 -registration(r902,c49,s268).registration2145,44516 -registration(r902,c49,s268).registration2145,44516 -registration(r903,c38,s268).registration2146,44545 -registration(r903,c38,s268).registration2146,44545 -registration(r904,c109,s268).registration2147,44574 -registration(r904,c109,s268).registration2147,44574 -registration(r905,c35,s269).registration2148,44604 -registration(r905,c35,s269).registration2148,44604 -registration(r906,c74,s269).registration2149,44633 -registration(r906,c74,s269).registration2149,44633 -registration(r907,c50,s269).registration2150,44662 -registration(r907,c50,s269).registration2150,44662 -registration(r908,c61,s269).registration2151,44691 -registration(r908,c61,s269).registration2151,44691 -registration(r909,c3,s269).registration2152,44720 -registration(r909,c3,s269).registration2152,44720 -registration(r910,c1,s270).registration2153,44748 -registration(r910,c1,s270).registration2153,44748 -registration(r911,c95,s270).registration2154,44776 -registration(r911,c95,s270).registration2154,44776 -registration(r912,c124,s270).registration2155,44805 -registration(r912,c124,s270).registration2155,44805 -registration(r913,c55,s270).registration2156,44835 -registration(r913,c55,s270).registration2156,44835 -registration(r914,c119,s271).registration2157,44864 -registration(r914,c119,s271).registration2157,44864 -registration(r915,c6,s271).registration2158,44894 -registration(r915,c6,s271).registration2158,44894 -registration(r916,c23,s271).registration2159,44922 -registration(r916,c23,s271).registration2159,44922 -registration(r917,c101,s272).registration2160,44951 -registration(r917,c101,s272).registration2160,44951 -registration(r918,c126,s272).registration2161,44981 -registration(r918,c126,s272).registration2161,44981 -registration(r919,c46,s272).registration2162,45011 -registration(r919,c46,s272).registration2162,45011 -registration(r920,c60,s273).registration2163,45040 -registration(r920,c60,s273).registration2163,45040 -registration(r921,c78,s273).registration2164,45069 -registration(r921,c78,s273).registration2164,45069 -registration(r922,c13,s273).registration2165,45098 -registration(r922,c13,s273).registration2165,45098 -registration(r923,c122,s274).registration2166,45127 -registration(r923,c122,s274).registration2166,45127 -registration(r924,c50,s274).registration2167,45157 -registration(r924,c50,s274).registration2167,45157 -registration(r925,c73,s274).registration2168,45186 -registration(r925,c73,s274).registration2168,45186 -registration(r926,c123,s275).registration2169,45215 -registration(r926,c123,s275).registration2169,45215 -registration(r927,c33,s275).registration2170,45245 -registration(r927,c33,s275).registration2170,45245 -registration(r928,c58,s275).registration2171,45274 -registration(r928,c58,s275).registration2171,45274 -registration(r929,c37,s275).registration2172,45303 -registration(r929,c37,s275).registration2172,45303 -registration(r930,c114,s276).registration2173,45332 -registration(r930,c114,s276).registration2173,45332 -registration(r931,c32,s276).registration2174,45362 -registration(r931,c32,s276).registration2174,45362 -registration(r932,c18,s276).registration2175,45391 -registration(r932,c18,s276).registration2175,45391 -registration(r933,c88,s276).registration2176,45420 -registration(r933,c88,s276).registration2176,45420 -registration(r934,c9,s276).registration2177,45449 -registration(r934,c9,s276).registration2177,45449 -registration(r935,c111,s277).registration2178,45477 -registration(r935,c111,s277).registration2178,45477 -registration(r936,c63,s277).registration2179,45507 -registration(r936,c63,s277).registration2179,45507 -registration(r937,c64,s277).registration2180,45536 -registration(r937,c64,s277).registration2180,45536 -registration(r938,c112,s278).registration2181,45565 -registration(r938,c112,s278).registration2181,45565 -registration(r939,c19,s278).registration2182,45595 -registration(r939,c19,s278).registration2182,45595 -registration(r940,c113,s278).registration2183,45624 -registration(r940,c113,s278).registration2183,45624 -registration(r941,c126,s279).registration2184,45654 -registration(r941,c126,s279).registration2184,45654 -registration(r942,c27,s279).registration2185,45684 -registration(r942,c27,s279).registration2185,45684 -registration(r943,c86,s279).registration2186,45713 -registration(r943,c86,s279).registration2186,45713 -registration(r944,c32,s280).registration2187,45742 -registration(r944,c32,s280).registration2187,45742 -registration(r945,c23,s280).registration2188,45771 -registration(r945,c23,s280).registration2188,45771 -registration(r946,c76,s280).registration2189,45800 -registration(r946,c76,s280).registration2189,45800 -registration(r947,c5,s281).registration2190,45829 -registration(r947,c5,s281).registration2190,45829 -registration(r948,c48,s281).registration2191,45857 -registration(r948,c48,s281).registration2191,45857 -registration(r949,c94,s281).registration2192,45886 -registration(r949,c94,s281).registration2192,45886 -registration(r950,c127,s282).registration2193,45915 -registration(r950,c127,s282).registration2193,45915 -registration(r951,c82,s282).registration2194,45945 -registration(r951,c82,s282).registration2194,45945 -registration(r952,c36,s282).registration2195,45974 -registration(r952,c36,s282).registration2195,45974 -registration(r953,c47,s283).registration2196,46003 -registration(r953,c47,s283).registration2196,46003 -registration(r954,c72,s283).registration2197,46032 -registration(r954,c72,s283).registration2197,46032 -registration(r955,c29,s283).registration2198,46061 -registration(r955,c29,s283).registration2198,46061 -registration(r956,c91,s284).registration2199,46090 -registration(r956,c91,s284).registration2199,46090 -registration(r957,c96,s284).registration2200,46119 -registration(r957,c96,s284).registration2200,46119 -registration(r958,c47,s284).registration2201,46148 -registration(r958,c47,s284).registration2201,46148 -registration(r959,c17,s284).registration2202,46177 -registration(r959,c17,s284).registration2202,46177 -registration(r960,c76,s285).registration2203,46206 -registration(r960,c76,s285).registration2203,46206 -registration(r961,c40,s285).registration2204,46235 -registration(r961,c40,s285).registration2204,46235 -registration(r962,c105,s285).registration2205,46264 -registration(r962,c105,s285).registration2205,46264 -registration(r963,c9,s286).registration2206,46294 -registration(r963,c9,s286).registration2206,46294 -registration(r964,c93,s286).registration2207,46322 -registration(r964,c93,s286).registration2207,46322 -registration(r965,c66,s286).registration2208,46351 -registration(r965,c66,s286).registration2208,46351 -registration(r966,c72,s286).registration2209,46380 -registration(r966,c72,s286).registration2209,46380 -registration(r967,c86,s287).registration2210,46409 -registration(r967,c86,s287).registration2210,46409 -registration(r968,c116,s287).registration2211,46438 -registration(r968,c116,s287).registration2211,46438 -registration(r969,c8,s287).registration2212,46468 -registration(r969,c8,s287).registration2212,46468 -registration(r970,c92,s288).registration2213,46496 -registration(r970,c92,s288).registration2213,46496 -registration(r971,c29,s288).registration2214,46525 -registration(r971,c29,s288).registration2214,46525 -registration(r972,c75,s288).registration2215,46554 -registration(r972,c75,s288).registration2215,46554 -registration(r973,c18,s289).registration2216,46583 -registration(r973,c18,s289).registration2216,46583 -registration(r974,c88,s289).registration2217,46612 -registration(r974,c88,s289).registration2217,46612 -registration(r975,c61,s289).registration2218,46641 -registration(r975,c61,s289).registration2218,46641 -registration(r976,c29,s290).registration2219,46670 -registration(r976,c29,s290).registration2219,46670 -registration(r977,c96,s290).registration2220,46699 -registration(r977,c96,s290).registration2220,46699 -registration(r978,c0,s290).registration2221,46728 -registration(r978,c0,s290).registration2221,46728 -registration(r979,c76,s291).registration2222,46756 -registration(r979,c76,s291).registration2222,46756 -registration(r980,c84,s291).registration2223,46785 -registration(r980,c84,s291).registration2223,46785 -registration(r981,c91,s291).registration2224,46814 -registration(r981,c91,s291).registration2224,46814 -registration(r982,c73,s291).registration2225,46843 -registration(r982,c73,s291).registration2225,46843 -registration(r983,c111,s292).registration2226,46872 -registration(r983,c111,s292).registration2226,46872 -registration(r984,c13,s292).registration2227,46902 -registration(r984,c13,s292).registration2227,46902 -registration(r985,c11,s292).registration2228,46931 -registration(r985,c11,s292).registration2228,46931 -registration(r986,c85,s292).registration2229,46960 -registration(r986,c85,s292).registration2229,46960 -registration(r987,c121,s293).registration2230,46989 -registration(r987,c121,s293).registration2230,46989 -registration(r988,c93,s293).registration2231,47019 -registration(r988,c93,s293).registration2231,47019 -registration(r989,c88,s293).registration2232,47048 -registration(r989,c88,s293).registration2232,47048 -registration(r990,c119,s294).registration2233,47077 -registration(r990,c119,s294).registration2233,47077 -registration(r991,c55,s294).registration2234,47107 -registration(r991,c55,s294).registration2234,47107 -registration(r992,c115,s294).registration2235,47136 -registration(r992,c115,s294).registration2235,47136 -registration(r993,c76,s295).registration2236,47166 -registration(r993,c76,s295).registration2236,47166 -registration(r994,c2,s295).registration2237,47195 -registration(r994,c2,s295).registration2237,47195 -registration(r995,c122,s295).registration2238,47223 -registration(r995,c122,s295).registration2238,47223 -registration(r996,c90,s296).registration2239,47253 -registration(r996,c90,s296).registration2239,47253 -registration(r997,c0,s296).registration2240,47282 -registration(r997,c0,s296).registration2240,47282 -registration(r998,c74,s296).registration2241,47310 -registration(r998,c74,s296).registration2241,47310 -registration(r999,c31,s297).registration2242,47339 -registration(r999,c31,s297).registration2242,47339 -registration(r1000,c39,s297).registration2243,47368 -registration(r1000,c39,s297).registration2243,47368 -registration(r1001,c96,s297).registration2244,47398 -registration(r1001,c96,s297).registration2244,47398 -registration(r1002,c79,s297).registration2245,47428 -registration(r1002,c79,s297).registration2245,47428 -registration(r1003,c119,s298).registration2246,47458 -registration(r1003,c119,s298).registration2246,47458 -registration(r1004,c23,s298).registration2247,47489 -registration(r1004,c23,s298).registration2247,47489 -registration(r1005,c84,s298).registration2248,47519 -registration(r1005,c84,s298).registration2248,47519 -registration(r1006,c78,s299).registration2249,47549 -registration(r1006,c78,s299).registration2249,47549 -registration(r1007,c43,s299).registration2250,47579 -registration(r1007,c43,s299).registration2250,47579 -registration(r1008,c83,s299).registration2251,47609 -registration(r1008,c83,s299).registration2251,47609 -registration(r1009,c74,s300).registration2252,47639 -registration(r1009,c74,s300).registration2252,47639 -registration(r1010,c114,s300).registration2253,47669 -registration(r1010,c114,s300).registration2253,47669 -registration(r1011,c90,s300).registration2254,47700 -registration(r1011,c90,s300).registration2254,47700 -registration(r1012,c59,s300).registration2255,47730 -registration(r1012,c59,s300).registration2255,47730 -registration(r1013,c17,s301).registration2256,47760 -registration(r1013,c17,s301).registration2256,47760 -registration(r1014,c55,s301).registration2257,47790 -registration(r1014,c55,s301).registration2257,47790 -registration(r1015,c39,s301).registration2258,47820 -registration(r1015,c39,s301).registration2258,47820 -registration(r1016,c41,s301).registration2259,47850 -registration(r1016,c41,s301).registration2259,47850 -registration(r1017,c124,s302).registration2260,47880 -registration(r1017,c124,s302).registration2260,47880 -registration(r1018,c92,s302).registration2261,47911 -registration(r1018,c92,s302).registration2261,47911 -registration(r1019,c116,s302).registration2262,47941 -registration(r1019,c116,s302).registration2262,47941 -registration(r1020,c83,s302).registration2263,47972 -registration(r1020,c83,s302).registration2263,47972 -registration(r1021,c5,s303).registration2264,48002 -registration(r1021,c5,s303).registration2264,48002 -registration(r1022,c17,s303).registration2265,48031 -registration(r1022,c17,s303).registration2265,48031 -registration(r1023,c38,s303).registration2266,48061 -registration(r1023,c38,s303).registration2266,48061 -registration(r1024,c122,s304).registration2267,48091 -registration(r1024,c122,s304).registration2267,48091 -registration(r1025,c74,s304).registration2268,48122 -registration(r1025,c74,s304).registration2268,48122 -registration(r1026,c31,s304).registration2269,48152 -registration(r1026,c31,s304).registration2269,48152 -registration(r1027,c115,s305).registration2270,48182 -registration(r1027,c115,s305).registration2270,48182 -registration(r1028,c2,s305).registration2271,48213 -registration(r1028,c2,s305).registration2271,48213 -registration(r1029,c93,s305).registration2272,48242 -registration(r1029,c93,s305).registration2272,48242 -registration(r1030,c57,s306).registration2273,48272 -registration(r1030,c57,s306).registration2273,48272 -registration(r1031,c77,s306).registration2274,48302 -registration(r1031,c77,s306).registration2274,48302 -registration(r1032,c49,s306).registration2275,48332 -registration(r1032,c49,s306).registration2275,48332 -registration(r1033,c105,s307).registration2276,48362 -registration(r1033,c105,s307).registration2276,48362 -registration(r1034,c8,s307).registration2277,48393 -registration(r1034,c8,s307).registration2277,48393 -registration(r1035,c17,s307).registration2278,48422 -registration(r1035,c17,s307).registration2278,48422 -registration(r1036,c13,s308).registration2279,48452 -registration(r1036,c13,s308).registration2279,48452 -registration(r1037,c88,s308).registration2280,48482 -registration(r1037,c88,s308).registration2280,48482 -registration(r1038,c38,s308).registration2281,48512 -registration(r1038,c38,s308).registration2281,48512 -registration(r1039,c124,s309).registration2282,48542 -registration(r1039,c124,s309).registration2282,48542 -registration(r1040,c46,s309).registration2283,48573 -registration(r1040,c46,s309).registration2283,48573 -registration(r1041,c108,s309).registration2284,48603 -registration(r1041,c108,s309).registration2284,48603 -registration(r1042,c21,s310).registration2285,48634 -registration(r1042,c21,s310).registration2285,48634 -registration(r1043,c28,s310).registration2286,48664 -registration(r1043,c28,s310).registration2286,48664 -registration(r1044,c120,s310).registration2287,48694 -registration(r1044,c120,s310).registration2287,48694 -registration(r1045,c111,s311).registration2288,48725 -registration(r1045,c111,s311).registration2288,48725 -registration(r1046,c40,s311).registration2289,48756 -registration(r1046,c40,s311).registration2289,48756 -registration(r1047,c101,s311).registration2290,48786 -registration(r1047,c101,s311).registration2290,48786 -registration(r1048,c91,s312).registration2291,48817 -registration(r1048,c91,s312).registration2291,48817 -registration(r1049,c7,s312).registration2292,48847 -registration(r1049,c7,s312).registration2292,48847 -registration(r1050,c52,s312).registration2293,48876 -registration(r1050,c52,s312).registration2293,48876 -registration(r1051,c104,s312).registration2294,48906 -registration(r1051,c104,s312).registration2294,48906 -registration(r1052,c119,s312).registration2295,48937 -registration(r1052,c119,s312).registration2295,48937 -registration(r1053,c112,s313).registration2296,48968 -registration(r1053,c112,s313).registration2296,48968 -registration(r1054,c35,s313).registration2297,48999 -registration(r1054,c35,s313).registration2297,48999 -registration(r1055,c114,s313).registration2298,49029 -registration(r1055,c114,s313).registration2298,49029 -registration(r1056,c75,s314).registration2299,49060 -registration(r1056,c75,s314).registration2299,49060 -registration(r1057,c70,s314).registration2300,49090 -registration(r1057,c70,s314).registration2300,49090 -registration(r1058,c90,s314).registration2301,49120 -registration(r1058,c90,s314).registration2301,49120 -registration(r1059,c9,s315).registration2302,49150 -registration(r1059,c9,s315).registration2302,49150 -registration(r1060,c23,s315).registration2303,49179 -registration(r1060,c23,s315).registration2303,49179 -registration(r1061,c101,s315).registration2304,49209 -registration(r1061,c101,s315).registration2304,49209 -registration(r1062,c0,s316).registration2305,49240 -registration(r1062,c0,s316).registration2305,49240 -registration(r1063,c46,s316).registration2306,49269 -registration(r1063,c46,s316).registration2306,49269 -registration(r1064,c97,s316).registration2307,49299 -registration(r1064,c97,s316).registration2307,49299 -registration(r1065,c10,s317).registration2308,49329 -registration(r1065,c10,s317).registration2308,49329 -registration(r1066,c74,s317).registration2309,49359 -registration(r1066,c74,s317).registration2309,49359 -registration(r1067,c108,s317).registration2310,49389 -registration(r1067,c108,s317).registration2310,49389 -registration(r1068,c115,s318).registration2311,49420 -registration(r1068,c115,s318).registration2311,49420 -registration(r1069,c36,s318).registration2312,49451 -registration(r1069,c36,s318).registration2312,49451 -registration(r1070,c51,s318).registration2313,49481 -registration(r1070,c51,s318).registration2313,49481 -registration(r1071,c43,s319).registration2314,49511 -registration(r1071,c43,s319).registration2314,49511 -registration(r1072,c76,s319).registration2315,49541 -registration(r1072,c76,s319).registration2315,49541 -registration(r1073,c93,s319).registration2316,49571 -registration(r1073,c93,s319).registration2316,49571 -registration(r1074,c14,s320).registration2317,49601 -registration(r1074,c14,s320).registration2317,49601 -registration(r1075,c105,s320).registration2318,49631 -registration(r1075,c105,s320).registration2318,49631 -registration(r1076,c52,s320).registration2319,49662 -registration(r1076,c52,s320).registration2319,49662 -registration(r1077,c119,s320).registration2320,49692 -registration(r1077,c119,s320).registration2320,49692 -registration(r1078,c114,s321).registration2321,49723 -registration(r1078,c114,s321).registration2321,49723 -registration(r1079,c39,s321).registration2322,49754 -registration(r1079,c39,s321).registration2322,49754 -registration(r1080,c91,s321).registration2323,49784 -registration(r1080,c91,s321).registration2323,49784 -registration(r1081,c92,s322).registration2324,49814 -registration(r1081,c92,s322).registration2324,49814 -registration(r1082,c85,s322).registration2325,49844 -registration(r1082,c85,s322).registration2325,49844 -registration(r1083,c51,s322).registration2326,49874 -registration(r1083,c51,s322).registration2326,49874 -registration(r1084,c62,s323).registration2327,49904 -registration(r1084,c62,s323).registration2327,49904 -registration(r1085,c9,s323).registration2328,49934 -registration(r1085,c9,s323).registration2328,49934 -registration(r1086,c96,s323).registration2329,49963 -registration(r1086,c96,s323).registration2329,49963 -registration(r1087,c82,s324).registration2330,49993 -registration(r1087,c82,s324).registration2330,49993 -registration(r1088,c85,s324).registration2331,50023 -registration(r1088,c85,s324).registration2331,50023 -registration(r1089,c99,s324).registration2332,50053 -registration(r1089,c99,s324).registration2332,50053 -registration(r1090,c14,s324).registration2333,50083 -registration(r1090,c14,s324).registration2333,50083 -registration(r1091,c121,s325).registration2334,50113 -registration(r1091,c121,s325).registration2334,50113 -registration(r1092,c105,s325).registration2335,50144 -registration(r1092,c105,s325).registration2335,50144 -registration(r1093,c44,s325).registration2336,50175 -registration(r1093,c44,s325).registration2336,50175 -registration(r1094,c22,s326).registration2337,50205 -registration(r1094,c22,s326).registration2337,50205 -registration(r1095,c27,s326).registration2338,50235 -registration(r1095,c27,s326).registration2338,50235 -registration(r1096,c98,s326).registration2339,50265 -registration(r1096,c98,s326).registration2339,50265 -registration(r1097,c84,s326).registration2340,50295 -registration(r1097,c84,s326).registration2340,50295 -registration(r1098,c80,s327).registration2341,50325 -registration(r1098,c80,s327).registration2341,50325 -registration(r1099,c109,s327).registration2342,50355 -registration(r1099,c109,s327).registration2342,50355 -registration(r1100,c124,s327).registration2343,50386 -registration(r1100,c124,s327).registration2343,50386 -registration(r1101,c82,s328).registration2344,50417 -registration(r1101,c82,s328).registration2344,50417 -registration(r1102,c89,s328).registration2345,50447 -registration(r1102,c89,s328).registration2345,50447 -registration(r1103,c9,s328).registration2346,50477 -registration(r1103,c9,s328).registration2346,50477 -registration(r1104,c20,s328).registration2347,50506 -registration(r1104,c20,s328).registration2347,50506 -registration(r1105,c38,s329).registration2348,50536 -registration(r1105,c38,s329).registration2348,50536 -registration(r1106,c71,s329).registration2349,50566 -registration(r1106,c71,s329).registration2349,50566 -registration(r1107,c67,s329).registration2350,50596 -registration(r1107,c67,s329).registration2350,50596 -registration(r1108,c38,s330).registration2351,50626 -registration(r1108,c38,s330).registration2351,50626 -registration(r1109,c40,s330).registration2352,50656 -registration(r1109,c40,s330).registration2352,50656 -registration(r1110,c43,s330).registration2353,50686 -registration(r1110,c43,s330).registration2353,50686 -registration(r1111,c20,s331).registration2354,50716 -registration(r1111,c20,s331).registration2354,50716 -registration(r1112,c98,s331).registration2355,50746 -registration(r1112,c98,s331).registration2355,50746 -registration(r1113,c7,s331).registration2356,50776 -registration(r1113,c7,s331).registration2356,50776 -registration(r1114,c120,s331).registration2357,50805 -registration(r1114,c120,s331).registration2357,50805 -registration(r1115,c111,s332).registration2358,50836 -registration(r1115,c111,s332).registration2358,50836 -registration(r1116,c32,s332).registration2359,50867 -registration(r1116,c32,s332).registration2359,50867 -registration(r1117,c52,s332).registration2360,50897 -registration(r1117,c52,s332).registration2360,50897 -registration(r1118,c33,s333).registration2361,50927 -registration(r1118,c33,s333).registration2361,50927 -registration(r1119,c64,s333).registration2362,50957 -registration(r1119,c64,s333).registration2362,50957 -registration(r1120,c21,s333).registration2363,50987 -registration(r1120,c21,s333).registration2363,50987 -registration(r1121,c110,s333).registration2364,51017 -registration(r1121,c110,s333).registration2364,51017 -registration(r1122,c117,s334).registration2365,51048 -registration(r1122,c117,s334).registration2365,51048 -registration(r1123,c87,s334).registration2366,51079 -registration(r1123,c87,s334).registration2366,51079 -registration(r1124,c5,s334).registration2367,51109 -registration(r1124,c5,s334).registration2367,51109 -registration(r1125,c126,s334).registration2368,51138 -registration(r1125,c126,s334).registration2368,51138 -registration(r1126,c76,s335).registration2369,51169 -registration(r1126,c76,s335).registration2369,51169 -registration(r1127,c120,s335).registration2370,51199 -registration(r1127,c120,s335).registration2370,51199 -registration(r1128,c104,s335).registration2371,51230 -registration(r1128,c104,s335).registration2371,51230 -registration(r1129,c19,s336).registration2372,51261 -registration(r1129,c19,s336).registration2372,51261 -registration(r1130,c41,s336).registration2373,51291 -registration(r1130,c41,s336).registration2373,51291 -registration(r1131,c65,s336).registration2374,51321 -registration(r1131,c65,s336).registration2374,51321 -registration(r1132,c74,s336).registration2375,51351 -registration(r1132,c74,s336).registration2375,51351 -registration(r1133,c54,s337).registration2376,51381 -registration(r1133,c54,s337).registration2376,51381 -registration(r1134,c4,s337).registration2377,51411 -registration(r1134,c4,s337).registration2377,51411 -registration(r1135,c107,s337).registration2378,51440 -registration(r1135,c107,s337).registration2378,51440 -registration(r1136,c31,s338).registration2379,51471 -registration(r1136,c31,s338).registration2379,51471 -registration(r1137,c105,s338).registration2380,51501 -registration(r1137,c105,s338).registration2380,51501 -registration(r1138,c22,s338).registration2381,51532 -registration(r1138,c22,s338).registration2381,51532 -registration(r1139,c44,s339).registration2382,51562 -registration(r1139,c44,s339).registration2382,51562 -registration(r1140,c45,s339).registration2383,51592 -registration(r1140,c45,s339).registration2383,51592 -registration(r1141,c60,s339).registration2384,51622 -registration(r1141,c60,s339).registration2384,51622 -registration(r1142,c20,s340).registration2385,51652 -registration(r1142,c20,s340).registration2385,51652 -registration(r1143,c33,s340).registration2386,51682 -registration(r1143,c33,s340).registration2386,51682 -registration(r1144,c44,s340).registration2387,51712 -registration(r1144,c44,s340).registration2387,51712 -registration(r1145,c110,s340).registration2388,51742 -registration(r1145,c110,s340).registration2388,51742 -registration(r1146,c11,s341).registration2389,51773 -registration(r1146,c11,s341).registration2389,51773 -registration(r1147,c88,s341).registration2390,51803 -registration(r1147,c88,s341).registration2390,51803 -registration(r1148,c107,s341).registration2391,51833 -registration(r1148,c107,s341).registration2391,51833 -registration(r1149,c19,s342).registration2392,51864 -registration(r1149,c19,s342).registration2392,51864 -registration(r1150,c107,s342).registration2393,51894 -registration(r1150,c107,s342).registration2393,51894 -registration(r1151,c20,s342).registration2394,51925 -registration(r1151,c20,s342).registration2394,51925 -registration(r1152,c73,s343).registration2395,51955 -registration(r1152,c73,s343).registration2395,51955 -registration(r1153,c35,s343).registration2396,51985 -registration(r1153,c35,s343).registration2396,51985 -registration(r1154,c31,s343).registration2397,52015 -registration(r1154,c31,s343).registration2397,52015 -registration(r1155,c63,s344).registration2398,52045 -registration(r1155,c63,s344).registration2398,52045 -registration(r1156,c89,s344).registration2399,52075 -registration(r1156,c89,s344).registration2399,52075 -registration(r1157,c96,s344).registration2400,52105 -registration(r1157,c96,s344).registration2400,52105 -registration(r1158,c2,s344).registration2401,52135 -registration(r1158,c2,s344).registration2401,52135 -registration(r1159,c45,s344).registration2402,52164 -registration(r1159,c45,s344).registration2402,52164 -registration(r1160,c62,s345).registration2403,52194 -registration(r1160,c62,s345).registration2403,52194 -registration(r1161,c38,s345).registration2404,52224 -registration(r1161,c38,s345).registration2404,52224 -registration(r1162,c80,s345).registration2405,52254 -registration(r1162,c80,s345).registration2405,52254 -registration(r1163,c123,s346).registration2406,52284 -registration(r1163,c123,s346).registration2406,52284 -registration(r1164,c100,s346).registration2407,52315 -registration(r1164,c100,s346).registration2407,52315 -registration(r1165,c52,s346).registration2408,52346 -registration(r1165,c52,s346).registration2408,52346 -registration(r1166,c13,s347).registration2409,52376 -registration(r1166,c13,s347).registration2409,52376 -registration(r1167,c93,s347).registration2410,52406 -registration(r1167,c93,s347).registration2410,52406 -registration(r1168,c28,s347).registration2411,52436 -registration(r1168,c28,s347).registration2411,52436 -registration(r1169,c7,s348).registration2412,52466 -registration(r1169,c7,s348).registration2412,52466 -registration(r1170,c13,s348).registration2413,52495 -registration(r1170,c13,s348).registration2413,52495 -registration(r1171,c18,s348).registration2414,52525 -registration(r1171,c18,s348).registration2414,52525 -registration(r1172,c51,s349).registration2415,52555 -registration(r1172,c51,s349).registration2415,52555 -registration(r1173,c92,s349).registration2416,52585 -registration(r1173,c92,s349).registration2416,52585 -registration(r1174,c69,s349).registration2417,52615 -registration(r1174,c69,s349).registration2417,52615 -registration(r1175,c30,s350).registration2418,52645 -registration(r1175,c30,s350).registration2418,52645 -registration(r1176,c92,s350).registration2419,52675 -registration(r1176,c92,s350).registration2419,52675 -registration(r1177,c27,s350).registration2420,52705 -registration(r1177,c27,s350).registration2420,52705 -registration(r1178,c73,s351).registration2421,52735 -registration(r1178,c73,s351).registration2421,52735 -registration(r1179,c94,s351).registration2422,52765 -registration(r1179,c94,s351).registration2422,52765 -registration(r1180,c15,s351).registration2423,52795 -registration(r1180,c15,s351).registration2423,52795 -registration(r1181,c48,s351).registration2424,52825 -registration(r1181,c48,s351).registration2424,52825 -registration(r1182,c20,s352).registration2425,52855 -registration(r1182,c20,s352).registration2425,52855 -registration(r1183,c23,s352).registration2426,52885 -registration(r1183,c23,s352).registration2426,52885 -registration(r1184,c12,s352).registration2427,52915 -registration(r1184,c12,s352).registration2427,52915 -registration(r1185,c6,s352).registration2428,52945 -registration(r1185,c6,s352).registration2428,52945 -registration(r1186,c99,s353).registration2429,52974 -registration(r1186,c99,s353).registration2429,52974 -registration(r1187,c34,s353).registration2430,53004 -registration(r1187,c34,s353).registration2430,53004 -registration(r1188,c18,s353).registration2431,53034 -registration(r1188,c18,s353).registration2431,53034 -registration(r1189,c31,s354).registration2432,53064 -registration(r1189,c31,s354).registration2432,53064 -registration(r1190,c101,s354).registration2433,53094 -registration(r1190,c101,s354).registration2433,53094 -registration(r1191,c100,s354).registration2434,53125 -registration(r1191,c100,s354).registration2434,53125 -registration(r1192,c64,s354).registration2435,53156 -registration(r1192,c64,s354).registration2435,53156 -registration(r1193,c58,s355).registration2436,53186 -registration(r1193,c58,s355).registration2436,53186 -registration(r1194,c21,s355).registration2437,53216 -registration(r1194,c21,s355).registration2437,53216 -registration(r1195,c92,s355).registration2438,53246 -registration(r1195,c92,s355).registration2438,53246 -registration(r1196,c119,s356).registration2439,53276 -registration(r1196,c119,s356).registration2439,53276 -registration(r1197,c121,s356).registration2440,53307 -registration(r1197,c121,s356).registration2440,53307 -registration(r1198,c89,s356).registration2441,53338 -registration(r1198,c89,s356).registration2441,53338 -registration(r1199,c106,s357).registration2442,53368 -registration(r1199,c106,s357).registration2442,53368 -registration(r1200,c89,s357).registration2443,53399 -registration(r1200,c89,s357).registration2443,53399 -registration(r1201,c9,s357).registration2444,53429 -registration(r1201,c9,s357).registration2444,53429 -registration(r1202,c31,s358).registration2445,53458 -registration(r1202,c31,s358).registration2445,53458 -registration(r1203,c78,s358).registration2446,53488 -registration(r1203,c78,s358).registration2446,53488 -registration(r1204,c117,s358).registration2447,53518 -registration(r1204,c117,s358).registration2447,53518 -registration(r1205,c89,s359).registration2448,53549 -registration(r1205,c89,s359).registration2448,53549 -registration(r1206,c72,s359).registration2449,53579 -registration(r1206,c72,s359).registration2449,53579 -registration(r1207,c124,s359).registration2450,53609 -registration(r1207,c124,s359).registration2450,53609 -registration(r1208,c27,s360).registration2451,53640 -registration(r1208,c27,s360).registration2451,53640 -registration(r1209,c19,s360).registration2452,53670 -registration(r1209,c19,s360).registration2452,53670 -registration(r1210,c88,s360).registration2453,53700 -registration(r1210,c88,s360).registration2453,53700 -registration(r1211,c45,s360).registration2454,53730 -registration(r1211,c45,s360).registration2454,53730 -registration(r1212,c76,s360).registration2455,53760 -registration(r1212,c76,s360).registration2455,53760 -registration(r1213,c66,s361).registration2456,53790 -registration(r1213,c66,s361).registration2456,53790 -registration(r1214,c117,s361).registration2457,53820 -registration(r1214,c117,s361).registration2457,53820 -registration(r1215,c36,s361).registration2458,53851 -registration(r1215,c36,s361).registration2458,53851 -registration(r1216,c30,s362).registration2459,53881 -registration(r1216,c30,s362).registration2459,53881 -registration(r1217,c15,s362).registration2460,53911 -registration(r1217,c15,s362).registration2460,53911 -registration(r1218,c47,s362).registration2461,53941 -registration(r1218,c47,s362).registration2461,53941 -registration(r1219,c8,s363).registration2462,53971 -registration(r1219,c8,s363).registration2462,53971 -registration(r1220,c0,s363).registration2463,54000 -registration(r1220,c0,s363).registration2463,54000 -registration(r1221,c61,s363).registration2464,54029 -registration(r1221,c61,s363).registration2464,54029 -registration(r1222,c10,s364).registration2465,54059 -registration(r1222,c10,s364).registration2465,54059 -registration(r1223,c108,s364).registration2466,54089 -registration(r1223,c108,s364).registration2466,54089 -registration(r1224,c70,s364).registration2467,54120 -registration(r1224,c70,s364).registration2467,54120 -registration(r1225,c15,s365).registration2468,54150 -registration(r1225,c15,s365).registration2468,54150 -registration(r1226,c111,s365).registration2469,54180 -registration(r1226,c111,s365).registration2469,54180 -registration(r1227,c115,s365).registration2470,54211 -registration(r1227,c115,s365).registration2470,54211 -registration(r1228,c10,s365).registration2471,54242 -registration(r1228,c10,s365).registration2471,54242 -registration(r1229,c89,s365).registration2472,54272 -registration(r1229,c89,s365).registration2472,54272 -registration(r1230,c28,s366).registration2473,54302 -registration(r1230,c28,s366).registration2473,54302 -registration(r1231,c51,s366).registration2474,54332 -registration(r1231,c51,s366).registration2474,54332 -registration(r1232,c115,s366).registration2475,54362 -registration(r1232,c115,s366).registration2475,54362 -registration(r1233,c104,s367).registration2476,54393 -registration(r1233,c104,s367).registration2476,54393 -registration(r1234,c12,s367).registration2477,54424 -registration(r1234,c12,s367).registration2477,54424 -registration(r1235,c42,s367).registration2478,54454 -registration(r1235,c42,s367).registration2478,54454 -registration(r1236,c57,s368).registration2479,54484 -registration(r1236,c57,s368).registration2479,54484 -registration(r1237,c4,s368).registration2480,54514 -registration(r1237,c4,s368).registration2480,54514 -registration(r1238,c34,s368).registration2481,54543 -registration(r1238,c34,s368).registration2481,54543 -registration(r1239,c35,s368).registration2482,54573 -registration(r1239,c35,s368).registration2482,54573 -registration(r1240,c112,s369).registration2483,54603 -registration(r1240,c112,s369).registration2483,54603 -registration(r1241,c4,s369).registration2484,54634 -registration(r1241,c4,s369).registration2484,54634 -registration(r1242,c66,s369).registration2485,54663 -registration(r1242,c66,s369).registration2485,54663 -registration(r1243,c8,s370).registration2486,54693 -registration(r1243,c8,s370).registration2486,54693 -registration(r1244,c111,s370).registration2487,54722 -registration(r1244,c111,s370).registration2487,54722 -registration(r1245,c54,s370).registration2488,54753 -registration(r1245,c54,s370).registration2488,54753 -registration(r1246,c94,s370).registration2489,54783 -registration(r1246,c94,s370).registration2489,54783 -registration(r1247,c25,s371).registration2490,54813 -registration(r1247,c25,s371).registration2490,54813 -registration(r1248,c105,s371).registration2491,54843 -registration(r1248,c105,s371).registration2491,54843 -registration(r1249,c48,s371).registration2492,54874 -registration(r1249,c48,s371).registration2492,54874 -registration(r1250,c98,s371).registration2493,54904 -registration(r1250,c98,s371).registration2493,54904 -registration(r1251,c102,s372).registration2494,54934 -registration(r1251,c102,s372).registration2494,54934 -registration(r1252,c109,s372).registration2495,54965 -registration(r1252,c109,s372).registration2495,54965 -registration(r1253,c86,s372).registration2496,54996 -registration(r1253,c86,s372).registration2496,54996 -registration(r1254,c2,s373).registration2497,55026 -registration(r1254,c2,s373).registration2497,55026 -registration(r1255,c38,s373).registration2498,55055 -registration(r1255,c38,s373).registration2498,55055 -registration(r1256,c39,s373).registration2499,55085 -registration(r1256,c39,s373).registration2499,55085 -registration(r1257,c71,s374).registration2500,55115 -registration(r1257,c71,s374).registration2500,55115 -registration(r1258,c112,s374).registration2501,55145 -registration(r1258,c112,s374).registration2501,55145 -registration(r1259,c54,s374).registration2502,55176 -registration(r1259,c54,s374).registration2502,55176 -registration(r1260,c59,s375).registration2503,55206 -registration(r1260,c59,s375).registration2503,55206 -registration(r1261,c44,s375).registration2504,55236 -registration(r1261,c44,s375).registration2504,55236 -registration(r1262,c92,s375).registration2505,55266 -registration(r1262,c92,s375).registration2505,55266 -registration(r1263,c75,s376).registration2506,55296 -registration(r1263,c75,s376).registration2506,55296 -registration(r1264,c98,s376).registration2507,55326 -registration(r1264,c98,s376).registration2507,55326 -registration(r1265,c77,s376).registration2508,55356 -registration(r1265,c77,s376).registration2508,55356 -registration(r1266,c104,s376).registration2509,55386 -registration(r1266,c104,s376).registration2509,55386 -registration(r1267,c19,s377).registration2510,55417 -registration(r1267,c19,s377).registration2510,55417 -registration(r1268,c60,s377).registration2511,55447 -registration(r1268,c60,s377).registration2511,55447 -registration(r1269,c92,s377).registration2512,55477 -registration(r1269,c92,s377).registration2512,55477 -registration(r1270,c31,s377).registration2513,55507 -registration(r1270,c31,s377).registration2513,55507 -registration(r1271,c6,s378).registration2514,55537 -registration(r1271,c6,s378).registration2514,55537 -registration(r1272,c119,s378).registration2515,55566 -registration(r1272,c119,s378).registration2515,55566 -registration(r1273,c18,s378).registration2516,55597 -registration(r1273,c18,s378).registration2516,55597 -registration(r1274,c121,s378).registration2517,55627 -registration(r1274,c121,s378).registration2517,55627 -registration(r1275,c38,s379).registration2518,55658 -registration(r1275,c38,s379).registration2518,55658 -registration(r1276,c54,s379).registration2519,55688 -registration(r1276,c54,s379).registration2519,55688 -registration(r1277,c97,s379).registration2520,55718 -registration(r1277,c97,s379).registration2520,55718 -registration(r1278,c24,s380).registration2521,55748 -registration(r1278,c24,s380).registration2521,55748 -registration(r1279,c89,s380).registration2522,55778 -registration(r1279,c89,s380).registration2522,55778 -registration(r1280,c7,s380).registration2523,55808 -registration(r1280,c7,s380).registration2523,55808 -registration(r1281,c100,s380).registration2524,55837 -registration(r1281,c100,s380).registration2524,55837 -registration(r1282,c127,s381).registration2525,55868 -registration(r1282,c127,s381).registration2525,55868 -registration(r1283,c59,s381).registration2526,55899 -registration(r1283,c59,s381).registration2526,55899 -registration(r1284,c46,s381).registration2527,55929 -registration(r1284,c46,s381).registration2527,55929 -registration(r1285,c88,s381).registration2528,55959 -registration(r1285,c88,s381).registration2528,55959 -registration(r1286,c108,s382).registration2529,55989 -registration(r1286,c108,s382).registration2529,55989 -registration(r1287,c113,s382).registration2530,56020 -registration(r1287,c113,s382).registration2530,56020 -registration(r1288,c106,s382).registration2531,56051 -registration(r1288,c106,s382).registration2531,56051 -registration(r1289,c5,s383).registration2532,56082 -registration(r1289,c5,s383).registration2532,56082 -registration(r1290,c72,s383).registration2533,56111 -registration(r1290,c72,s383).registration2533,56111 -registration(r1291,c15,s383).registration2534,56141 -registration(r1291,c15,s383).registration2534,56141 -registration(r1292,c63,s383).registration2535,56171 -registration(r1292,c63,s383).registration2535,56171 -registration(r1293,c12,s384).registration2536,56201 -registration(r1293,c12,s384).registration2536,56201 -registration(r1294,c57,s384).registration2537,56231 -registration(r1294,c57,s384).registration2537,56231 -registration(r1295,c89,s384).registration2538,56261 -registration(r1295,c89,s384).registration2538,56261 -registration(r1296,c58,s385).registration2539,56291 -registration(r1296,c58,s385).registration2539,56291 -registration(r1297,c33,s385).registration2540,56321 -registration(r1297,c33,s385).registration2540,56321 -registration(r1298,c20,s385).registration2541,56351 -registration(r1298,c20,s385).registration2541,56351 -registration(r1299,c28,s386).registration2542,56381 -registration(r1299,c28,s386).registration2542,56381 -registration(r1300,c38,s386).registration2543,56411 -registration(r1300,c38,s386).registration2543,56411 -registration(r1301,c1,s386).registration2544,56441 -registration(r1301,c1,s386).registration2544,56441 -registration(r1302,c60,s387).registration2545,56470 -registration(r1302,c60,s387).registration2545,56470 -registration(r1303,c46,s387).registration2546,56500 -registration(r1303,c46,s387).registration2546,56500 -registration(r1304,c6,s387).registration2547,56530 -registration(r1304,c6,s387).registration2547,56530 -registration(r1305,c115,s387).registration2548,56559 -registration(r1305,c115,s387).registration2548,56559 -registration(r1306,c54,s388).registration2549,56590 -registration(r1306,c54,s388).registration2549,56590 -registration(r1307,c115,s388).registration2550,56620 -registration(r1307,c115,s388).registration2550,56620 -registration(r1308,c27,s388).registration2551,56651 -registration(r1308,c27,s388).registration2551,56651 -registration(r1309,c120,s388).registration2552,56681 -registration(r1309,c120,s388).registration2552,56681 -registration(r1310,c18,s389).registration2553,56712 -registration(r1310,c18,s389).registration2553,56712 -registration(r1311,c4,s389).registration2554,56742 -registration(r1311,c4,s389).registration2554,56742 -registration(r1312,c35,s389).registration2555,56771 -registration(r1312,c35,s389).registration2555,56771 -registration(r1313,c92,s389).registration2556,56801 -registration(r1313,c92,s389).registration2556,56801 -registration(r1314,c12,s390).registration2557,56831 -registration(r1314,c12,s390).registration2557,56831 -registration(r1315,c68,s390).registration2558,56861 -registration(r1315,c68,s390).registration2558,56861 -registration(r1316,c74,s390).registration2559,56891 -registration(r1316,c74,s390).registration2559,56891 -registration(r1317,c94,s391).registration2560,56921 -registration(r1317,c94,s391).registration2560,56921 -registration(r1318,c24,s391).registration2561,56951 -registration(r1318,c24,s391).registration2561,56951 -registration(r1319,c98,s391).registration2562,56981 -registration(r1319,c98,s391).registration2562,56981 -registration(r1320,c98,s392).registration2563,57011 -registration(r1320,c98,s392).registration2563,57011 -registration(r1321,c122,s392).registration2564,57041 -registration(r1321,c122,s392).registration2564,57041 -registration(r1322,c97,s392).registration2565,57072 -registration(r1322,c97,s392).registration2565,57072 -registration(r1323,c105,s393).registration2566,57102 -registration(r1323,c105,s393).registration2566,57102 -registration(r1324,c100,s393).registration2567,57133 -registration(r1324,c100,s393).registration2567,57133 -registration(r1325,c47,s393).registration2568,57164 -registration(r1325,c47,s393).registration2568,57164 -registration(r1326,c35,s394).registration2569,57194 -registration(r1326,c35,s394).registration2569,57194 -registration(r1327,c120,s394).registration2570,57224 -registration(r1327,c120,s394).registration2570,57224 -registration(r1328,c30,s394).registration2571,57255 -registration(r1328,c30,s394).registration2571,57255 -registration(r1329,c49,s395).registration2572,57285 -registration(r1329,c49,s395).registration2572,57285 -registration(r1330,c31,s395).registration2573,57315 -registration(r1330,c31,s395).registration2573,57315 -registration(r1331,c125,s395).registration2574,57345 -registration(r1331,c125,s395).registration2574,57345 -registration(r1332,c89,s396).registration2575,57376 -registration(r1332,c89,s396).registration2575,57376 -registration(r1333,c114,s396).registration2576,57406 -registration(r1333,c114,s396).registration2576,57406 -registration(r1334,c117,s396).registration2577,57437 -registration(r1334,c117,s396).registration2577,57437 -registration(r1335,c91,s397).registration2578,57468 -registration(r1335,c91,s397).registration2578,57468 -registration(r1336,c1,s397).registration2579,57498 -registration(r1336,c1,s397).registration2579,57498 -registration(r1337,c80,s397).registration2580,57527 -registration(r1337,c80,s397).registration2580,57527 -registration(r1338,c15,s398).registration2581,57557 -registration(r1338,c15,s398).registration2581,57557 -registration(r1339,c32,s398).registration2582,57587 -registration(r1339,c32,s398).registration2582,57587 -registration(r1340,c119,s398).registration2583,57617 -registration(r1340,c119,s398).registration2583,57617 -registration(r1341,c32,s399).registration2584,57648 -registration(r1341,c32,s399).registration2584,57648 -registration(r1342,c92,s399).registration2585,57678 -registration(r1342,c92,s399).registration2585,57678 -registration(r1343,c36,s399).registration2586,57708 -registration(r1343,c36,s399).registration2586,57708 -registration(r1344,c64,s400).registration2587,57738 -registration(r1344,c64,s400).registration2587,57738 -registration(r1345,c116,s400).registration2588,57768 -registration(r1345,c116,s400).registration2588,57768 -registration(r1346,c47,s400).registration2589,57799 -registration(r1346,c47,s400).registration2589,57799 -registration(r1347,c11,s400).registration2590,57829 -registration(r1347,c11,s400).registration2590,57829 -registration(r1348,c17,s401).registration2591,57859 -registration(r1348,c17,s401).registration2591,57859 -registration(r1349,c48,s401).registration2592,57889 -registration(r1349,c48,s401).registration2592,57889 -registration(r1350,c9,s401).registration2593,57919 -registration(r1350,c9,s401).registration2593,57919 -registration(r1351,c98,s402).registration2594,57948 -registration(r1351,c98,s402).registration2594,57948 -registration(r1352,c104,s402).registration2595,57978 -registration(r1352,c104,s402).registration2595,57978 -registration(r1353,c85,s402).registration2596,58009 -registration(r1353,c85,s402).registration2596,58009 -registration(r1354,c32,s402).registration2597,58039 -registration(r1354,c32,s402).registration2597,58039 -registration(r1355,c6,s403).registration2598,58069 -registration(r1355,c6,s403).registration2598,58069 -registration(r1356,c114,s403).registration2599,58098 -registration(r1356,c114,s403).registration2599,58098 -registration(r1357,c111,s403).registration2600,58129 -registration(r1357,c111,s403).registration2600,58129 -registration(r1358,c1,s403).registration2601,58160 -registration(r1358,c1,s403).registration2601,58160 -registration(r1359,c122,s403).registration2602,58189 -registration(r1359,c122,s403).registration2602,58189 -registration(r1360,c116,s404).registration2603,58220 -registration(r1360,c116,s404).registration2603,58220 -registration(r1361,c78,s404).registration2604,58251 -registration(r1361,c78,s404).registration2604,58251 -registration(r1362,c26,s404).registration2605,58281 -registration(r1362,c26,s404).registration2605,58281 -registration(r1363,c107,s405).registration2606,58311 -registration(r1363,c107,s405).registration2606,58311 -registration(r1364,c8,s405).registration2607,58342 -registration(r1364,c8,s405).registration2607,58342 -registration(r1365,c51,s405).registration2608,58371 -registration(r1365,c51,s405).registration2608,58371 -registration(r1366,c18,s406).registration2609,58401 -registration(r1366,c18,s406).registration2609,58401 -registration(r1367,c111,s406).registration2610,58431 -registration(r1367,c111,s406).registration2610,58431 -registration(r1368,c68,s406).registration2611,58462 -registration(r1368,c68,s406).registration2611,58462 -registration(r1369,c77,s407).registration2612,58492 -registration(r1369,c77,s407).registration2612,58492 -registration(r1370,c26,s407).registration2613,58522 -registration(r1370,c26,s407).registration2613,58522 -registration(r1371,c0,s407).registration2614,58552 -registration(r1371,c0,s407).registration2614,58552 -registration(r1372,c88,s407).registration2615,58581 -registration(r1372,c88,s407).registration2615,58581 -registration(r1373,c53,s408).registration2616,58611 -registration(r1373,c53,s408).registration2616,58611 -registration(r1374,c35,s408).registration2617,58641 -registration(r1374,c35,s408).registration2617,58641 -registration(r1375,c9,s408).registration2618,58671 -registration(r1375,c9,s408).registration2618,58671 -registration(r1376,c121,s408).registration2619,58700 -registration(r1376,c121,s408).registration2619,58700 -registration(r1377,c63,s409).registration2620,58731 -registration(r1377,c63,s409).registration2620,58731 -registration(r1378,c23,s409).registration2621,58761 -registration(r1378,c23,s409).registration2621,58761 -registration(r1379,c9,s409).registration2622,58791 -registration(r1379,c9,s409).registration2622,58791 -registration(r1380,c89,s409).registration2623,58820 -registration(r1380,c89,s409).registration2623,58820 -registration(r1381,c84,s410).registration2624,58850 -registration(r1381,c84,s410).registration2624,58850 -registration(r1382,c92,s410).registration2625,58880 -registration(r1382,c92,s410).registration2625,58880 -registration(r1383,c74,s410).registration2626,58910 -registration(r1383,c74,s410).registration2626,58910 -registration(r1384,c127,s411).registration2627,58940 -registration(r1384,c127,s411).registration2627,58940 -registration(r1385,c30,s411).registration2628,58971 -registration(r1385,c30,s411).registration2628,58971 -registration(r1386,c29,s411).registration2629,59001 -registration(r1386,c29,s411).registration2629,59001 -registration(r1387,c13,s411).registration2630,59031 -registration(r1387,c13,s411).registration2630,59031 -registration(r1388,c54,s412).registration2631,59061 -registration(r1388,c54,s412).registration2631,59061 -registration(r1389,c45,s412).registration2632,59091 -registration(r1389,c45,s412).registration2632,59091 -registration(r1390,c47,s412).registration2633,59121 -registration(r1390,c47,s412).registration2633,59121 -registration(r1391,c95,s413).registration2634,59151 -registration(r1391,c95,s413).registration2634,59151 -registration(r1392,c83,s413).registration2635,59181 -registration(r1392,c83,s413).registration2635,59181 -registration(r1393,c6,s413).registration2636,59211 -registration(r1393,c6,s413).registration2636,59211 -registration(r1394,c120,s413).registration2637,59240 -registration(r1394,c120,s413).registration2637,59240 -registration(r1395,c80,s413).registration2638,59271 -registration(r1395,c80,s413).registration2638,59271 -registration(r1396,c14,s414).registration2639,59301 -registration(r1396,c14,s414).registration2639,59301 -registration(r1397,c9,s414).registration2640,59331 -registration(r1397,c9,s414).registration2640,59331 -registration(r1398,c18,s414).registration2641,59360 -registration(r1398,c18,s414).registration2641,59360 -registration(r1399,c76,s414).registration2642,59390 -registration(r1399,c76,s414).registration2642,59390 -registration(r1400,c50,s415).registration2643,59420 -registration(r1400,c50,s415).registration2643,59420 -registration(r1401,c107,s415).registration2644,59450 -registration(r1401,c107,s415).registration2644,59450 -registration(r1402,c31,s415).registration2645,59481 -registration(r1402,c31,s415).registration2645,59481 -registration(r1403,c56,s415).registration2646,59511 -registration(r1403,c56,s415).registration2646,59511 -registration(r1404,c115,s416).registration2647,59541 -registration(r1404,c115,s416).registration2647,59541 -registration(r1405,c55,s416).registration2648,59572 -registration(r1405,c55,s416).registration2648,59572 -registration(r1406,c125,s416).registration2649,59602 -registration(r1406,c125,s416).registration2649,59602 -registration(r1407,c73,s416).registration2650,59633 -registration(r1407,c73,s416).registration2650,59633 -registration(r1408,c113,s416).registration2651,59663 -registration(r1408,c113,s416).registration2651,59663 -registration(r1409,c0,s417).registration2652,59694 -registration(r1409,c0,s417).registration2652,59694 -registration(r1410,c58,s417).registration2653,59723 -registration(r1410,c58,s417).registration2653,59723 -registration(r1411,c35,s417).registration2654,59753 -registration(r1411,c35,s417).registration2654,59753 -registration(r1412,c2,s418).registration2655,59783 -registration(r1412,c2,s418).registration2655,59783 -registration(r1413,c38,s418).registration2656,59812 -registration(r1413,c38,s418).registration2656,59812 -registration(r1414,c111,s418).registration2657,59842 -registration(r1414,c111,s418).registration2657,59842 -registration(r1415,c30,s418).registration2658,59873 -registration(r1415,c30,s418).registration2658,59873 -registration(r1416,c105,s419).registration2659,59903 -registration(r1416,c105,s419).registration2659,59903 -registration(r1417,c44,s419).registration2660,59934 -registration(r1417,c44,s419).registration2660,59934 -registration(r1418,c8,s419).registration2661,59964 -registration(r1418,c8,s419).registration2661,59964 -registration(r1419,c28,s420).registration2662,59993 -registration(r1419,c28,s420).registration2662,59993 -registration(r1420,c70,s420).registration2663,60023 -registration(r1420,c70,s420).registration2663,60023 -registration(r1421,c6,s420).registration2664,60053 -registration(r1421,c6,s420).registration2664,60053 -registration(r1422,c102,s420).registration2665,60082 -registration(r1422,c102,s420).registration2665,60082 -registration(r1423,c63,s420).registration2666,60113 -registration(r1423,c63,s420).registration2666,60113 -registration(r1424,c68,s421).registration2667,60143 -registration(r1424,c68,s421).registration2667,60143 -registration(r1425,c8,s421).registration2668,60173 -registration(r1425,c8,s421).registration2668,60173 -registration(r1426,c119,s421).registration2669,60202 -registration(r1426,c119,s421).registration2669,60202 -registration(r1427,c65,s422).registration2670,60233 -registration(r1427,c65,s422).registration2670,60233 -registration(r1428,c78,s422).registration2671,60263 -registration(r1428,c78,s422).registration2671,60263 -registration(r1429,c12,s422).registration2672,60293 -registration(r1429,c12,s422).registration2672,60293 -registration(r1430,c47,s422).registration2673,60323 -registration(r1430,c47,s422).registration2673,60323 -registration(r1431,c19,s423).registration2674,60353 -registration(r1431,c19,s423).registration2674,60353 -registration(r1432,c113,s423).registration2675,60383 -registration(r1432,c113,s423).registration2675,60383 -registration(r1433,c50,s423).registration2676,60414 -registration(r1433,c50,s423).registration2676,60414 -registration(r1434,c73,s424).registration2677,60444 -registration(r1434,c73,s424).registration2677,60444 -registration(r1435,c88,s424).registration2678,60474 -registration(r1435,c88,s424).registration2678,60474 -registration(r1436,c95,s424).registration2679,60504 -registration(r1436,c95,s424).registration2679,60504 -registration(r1437,c104,s424).registration2680,60534 -registration(r1437,c104,s424).registration2680,60534 -registration(r1438,c46,s425).registration2681,60565 -registration(r1438,c46,s425).registration2681,60565 -registration(r1439,c89,s425).registration2682,60595 -registration(r1439,c89,s425).registration2682,60595 -registration(r1440,c4,s425).registration2683,60625 -registration(r1440,c4,s425).registration2683,60625 -registration(r1441,c12,s426).registration2684,60654 -registration(r1441,c12,s426).registration2684,60654 -registration(r1442,c90,s426).registration2685,60684 -registration(r1442,c90,s426).registration2685,60684 -registration(r1443,c117,s426).registration2686,60714 -registration(r1443,c117,s426).registration2686,60714 -registration(r1444,c125,s427).registration2687,60745 -registration(r1444,c125,s427).registration2687,60745 -registration(r1445,c66,s427).registration2688,60776 -registration(r1445,c66,s427).registration2688,60776 -registration(r1446,c96,s427).registration2689,60806 -registration(r1446,c96,s427).registration2689,60806 -registration(r1447,c4,s427).registration2690,60836 -registration(r1447,c4,s427).registration2690,60836 -registration(r1448,c36,s428).registration2691,60865 -registration(r1448,c36,s428).registration2691,60865 -registration(r1449,c71,s428).registration2692,60895 -registration(r1449,c71,s428).registration2692,60895 -registration(r1450,c56,s428).registration2693,60925 -registration(r1450,c56,s428).registration2693,60925 -registration(r1451,c41,s429).registration2694,60955 -registration(r1451,c41,s429).registration2694,60955 -registration(r1452,c5,s429).registration2695,60985 -registration(r1452,c5,s429).registration2695,60985 -registration(r1453,c20,s429).registration2696,61014 -registration(r1453,c20,s429).registration2696,61014 -registration(r1454,c80,s429).registration2697,61044 -registration(r1454,c80,s429).registration2697,61044 -registration(r1455,c104,s430).registration2698,61074 -registration(r1455,c104,s430).registration2698,61074 -registration(r1456,c3,s430).registration2699,61105 -registration(r1456,c3,s430).registration2699,61105 -registration(r1457,c114,s430).registration2700,61134 -registration(r1457,c114,s430).registration2700,61134 -registration(r1458,c75,s431).registration2701,61165 -registration(r1458,c75,s431).registration2701,61165 -registration(r1459,c85,s431).registration2702,61195 -registration(r1459,c85,s431).registration2702,61195 -registration(r1460,c36,s431).registration2703,61225 -registration(r1460,c36,s431).registration2703,61225 -registration(r1461,c127,s432).registration2704,61255 -registration(r1461,c127,s432).registration2704,61255 -registration(r1462,c31,s432).registration2705,61286 -registration(r1462,c31,s432).registration2705,61286 -registration(r1463,c46,s432).registration2706,61316 -registration(r1463,c46,s432).registration2706,61316 -registration(r1464,c113,s433).registration2707,61346 -registration(r1464,c113,s433).registration2707,61346 -registration(r1465,c127,s433).registration2708,61377 -registration(r1465,c127,s433).registration2708,61377 -registration(r1466,c51,s433).registration2709,61408 -registration(r1466,c51,s433).registration2709,61408 -registration(r1467,c88,s434).registration2710,61438 -registration(r1467,c88,s434).registration2710,61438 -registration(r1468,c60,s434).registration2711,61468 -registration(r1468,c60,s434).registration2711,61468 -registration(r1469,c103,s434).registration2712,61498 -registration(r1469,c103,s434).registration2712,61498 -registration(r1470,c15,s434).registration2713,61529 -registration(r1470,c15,s434).registration2713,61529 -registration(r1471,c50,s435).registration2714,61559 -registration(r1471,c50,s435).registration2714,61559 -registration(r1472,c43,s435).registration2715,61589 -registration(r1472,c43,s435).registration2715,61589 -registration(r1473,c25,s435).registration2716,61619 -registration(r1473,c25,s435).registration2716,61619 -registration(r1474,c23,s435).registration2717,61649 -registration(r1474,c23,s435).registration2717,61649 -registration(r1475,c4,s435).registration2718,61679 -registration(r1475,c4,s435).registration2718,61679 -registration(r1476,c10,s436).registration2719,61708 -registration(r1476,c10,s436).registration2719,61708 -registration(r1477,c83,s436).registration2720,61738 -registration(r1477,c83,s436).registration2720,61738 -registration(r1478,c54,s436).registration2721,61768 -registration(r1478,c54,s436).registration2721,61768 -registration(r1479,c91,s437).registration2722,61798 -registration(r1479,c91,s437).registration2722,61798 -registration(r1480,c0,s437).registration2723,61828 -registration(r1480,c0,s437).registration2723,61828 -registration(r1481,c11,s437).registration2724,61857 -registration(r1481,c11,s437).registration2724,61857 -registration(r1482,c56,s438).registration2725,61887 -registration(r1482,c56,s438).registration2725,61887 -registration(r1483,c120,s438).registration2726,61917 -registration(r1483,c120,s438).registration2726,61917 -registration(r1484,c61,s438).registration2727,61948 -registration(r1484,c61,s438).registration2727,61948 -registration(r1485,c114,s439).registration2728,61978 -registration(r1485,c114,s439).registration2728,61978 -registration(r1486,c30,s439).registration2729,62009 -registration(r1486,c30,s439).registration2729,62009 -registration(r1487,c38,s439).registration2730,62039 -registration(r1487,c38,s439).registration2730,62039 -registration(r1488,c13,s440).registration2731,62069 -registration(r1488,c13,s440).registration2731,62069 -registration(r1489,c119,s440).registration2732,62099 -registration(r1489,c119,s440).registration2732,62099 -registration(r1490,c114,s440).registration2733,62130 -registration(r1490,c114,s440).registration2733,62130 -registration(r1491,c30,s441).registration2734,62161 -registration(r1491,c30,s441).registration2734,62161 -registration(r1492,c55,s441).registration2735,62191 -registration(r1492,c55,s441).registration2735,62191 -registration(r1493,c43,s441).registration2736,62221 -registration(r1493,c43,s441).registration2736,62221 -registration(r1494,c48,s442).registration2737,62251 -registration(r1494,c48,s442).registration2737,62251 -registration(r1495,c64,s442).registration2738,62281 -registration(r1495,c64,s442).registration2738,62281 -registration(r1496,c11,s442).registration2739,62311 -registration(r1496,c11,s442).registration2739,62311 -registration(r1497,c53,s442).registration2740,62341 -registration(r1497,c53,s442).registration2740,62341 -registration(r1498,c66,s443).registration2741,62371 -registration(r1498,c66,s443).registration2741,62371 -registration(r1499,c21,s443).registration2742,62401 -registration(r1499,c21,s443).registration2742,62401 -registration(r1500,c62,s443).registration2743,62431 -registration(r1500,c62,s443).registration2743,62431 -registration(r1501,c119,s444).registration2744,62461 -registration(r1501,c119,s444).registration2744,62461 -registration(r1502,c21,s444).registration2745,62492 -registration(r1502,c21,s444).registration2745,62492 -registration(r1503,c114,s444).registration2746,62522 -registration(r1503,c114,s444).registration2746,62522 -registration(r1504,c100,s444).registration2747,62553 -registration(r1504,c100,s444).registration2747,62553 -registration(r1505,c63,s445).registration2748,62584 -registration(r1505,c63,s445).registration2748,62584 -registration(r1506,c51,s445).registration2749,62614 -registration(r1506,c51,s445).registration2749,62614 -registration(r1507,c48,s445).registration2750,62644 -registration(r1507,c48,s445).registration2750,62644 -registration(r1508,c40,s446).registration2751,62674 -registration(r1508,c40,s446).registration2751,62674 -registration(r1509,c14,s446).registration2752,62704 -registration(r1509,c14,s446).registration2752,62704 -registration(r1510,c94,s446).registration2753,62734 -registration(r1510,c94,s446).registration2753,62734 -registration(r1511,c20,s447).registration2754,62764 -registration(r1511,c20,s447).registration2754,62764 -registration(r1512,c125,s447).registration2755,62794 -registration(r1512,c125,s447).registration2755,62794 -registration(r1513,c98,s447).registration2756,62825 -registration(r1513,c98,s447).registration2756,62825 -registration(r1514,c35,s448).registration2757,62855 -registration(r1514,c35,s448).registration2757,62855 -registration(r1515,c89,s448).registration2758,62885 -registration(r1515,c89,s448).registration2758,62885 -registration(r1516,c20,s448).registration2759,62915 -registration(r1516,c20,s448).registration2759,62915 -registration(r1517,c86,s448).registration2760,62945 -registration(r1517,c86,s448).registration2760,62945 -registration(r1518,c79,s449).registration2761,62975 -registration(r1518,c79,s449).registration2761,62975 -registration(r1519,c76,s449).registration2762,63005 -registration(r1519,c76,s449).registration2762,63005 -registration(r1520,c115,s449).registration2763,63035 -registration(r1520,c115,s449).registration2763,63035 -registration(r1521,c66,s449).registration2764,63066 -registration(r1521,c66,s449).registration2764,63066 -registration(r1522,c121,s449).registration2765,63096 -registration(r1522,c121,s449).registration2765,63096 -registration(r1523,c100,s450).registration2766,63127 -registration(r1523,c100,s450).registration2766,63127 -registration(r1524,c22,s450).registration2767,63158 -registration(r1524,c22,s450).registration2767,63158 -registration(r1525,c94,s450).registration2768,63188 -registration(r1525,c94,s450).registration2768,63188 -registration(r1526,c15,s451).registration2769,63218 -registration(r1526,c15,s451).registration2769,63218 -registration(r1527,c64,s451).registration2770,63248 -registration(r1527,c64,s451).registration2770,63248 -registration(r1528,c10,s451).registration2771,63278 -registration(r1528,c10,s451).registration2771,63278 -registration(r1529,c104,s452).registration2772,63308 -registration(r1529,c104,s452).registration2772,63308 -registration(r1530,c10,s452).registration2773,63339 -registration(r1530,c10,s452).registration2773,63339 -registration(r1531,c123,s452).registration2774,63369 -registration(r1531,c123,s452).registration2774,63369 -registration(r1532,c93,s452).registration2775,63400 -registration(r1532,c93,s452).registration2775,63400 -registration(r1533,c75,s453).registration2776,63430 -registration(r1533,c75,s453).registration2776,63430 -registration(r1534,c54,s453).registration2777,63460 -registration(r1534,c54,s453).registration2777,63460 -registration(r1535,c3,s453).registration2778,63490 -registration(r1535,c3,s453).registration2778,63490 -registration(r1536,c60,s454).registration2779,63519 -registration(r1536,c60,s454).registration2779,63519 -registration(r1537,c50,s454).registration2780,63549 -registration(r1537,c50,s454).registration2780,63549 -registration(r1538,c33,s454).registration2781,63579 -registration(r1538,c33,s454).registration2781,63579 -registration(r1539,c0,s454).registration2782,63609 -registration(r1539,c0,s454).registration2782,63609 -registration(r1540,c18,s454).registration2783,63638 -registration(r1540,c18,s454).registration2783,63638 -registration(r1541,c68,s455).registration2784,63668 -registration(r1541,c68,s455).registration2784,63668 -registration(r1542,c31,s455).registration2785,63698 -registration(r1542,c31,s455).registration2785,63698 -registration(r1543,c11,s455).registration2786,63728 -registration(r1543,c11,s455).registration2786,63728 -registration(r1544,c106,s456).registration2787,63758 -registration(r1544,c106,s456).registration2787,63758 -registration(r1545,c77,s456).registration2788,63789 -registration(r1545,c77,s456).registration2788,63789 -registration(r1546,c0,s456).registration2789,63819 -registration(r1546,c0,s456).registration2789,63819 -registration(r1547,c11,s456).registration2790,63848 -registration(r1547,c11,s456).registration2790,63848 -registration(r1548,c49,s457).registration2791,63878 -registration(r1548,c49,s457).registration2791,63878 -registration(r1549,c92,s457).registration2792,63908 -registration(r1549,c92,s457).registration2792,63908 -registration(r1550,c116,s457).registration2793,63938 -registration(r1550,c116,s457).registration2793,63938 -registration(r1551,c113,s458).registration2794,63969 -registration(r1551,c113,s458).registration2794,63969 -registration(r1552,c67,s458).registration2795,64000 -registration(r1552,c67,s458).registration2795,64000 -registration(r1553,c54,s458).registration2796,64030 -registration(r1553,c54,s458).registration2796,64030 -registration(r1554,c58,s459).registration2797,64060 -registration(r1554,c58,s459).registration2797,64060 -registration(r1555,c98,s459).registration2798,64090 -registration(r1555,c98,s459).registration2798,64090 -registration(r1556,c70,s459).registration2799,64120 -registration(r1556,c70,s459).registration2799,64120 -registration(r1557,c105,s459).registration2800,64150 -registration(r1557,c105,s459).registration2800,64150 -registration(r1558,c3,s460).registration2801,64181 -registration(r1558,c3,s460).registration2801,64181 -registration(r1559,c22,s460).registration2802,64210 -registration(r1559,c22,s460).registration2802,64210 -registration(r1560,c126,s460).registration2803,64240 -registration(r1560,c126,s460).registration2803,64240 -registration(r1561,c89,s460).registration2804,64271 -registration(r1561,c89,s460).registration2804,64271 -registration(r1562,c33,s461).registration2805,64301 -registration(r1562,c33,s461).registration2805,64301 -registration(r1563,c2,s461).registration2806,64331 -registration(r1563,c2,s461).registration2806,64331 -registration(r1564,c84,s461).registration2807,64360 -registration(r1564,c84,s461).registration2807,64360 -registration(r1565,c80,s461).registration2808,64390 -registration(r1565,c80,s461).registration2808,64390 -registration(r1566,c5,s462).registration2809,64420 -registration(r1566,c5,s462).registration2809,64420 -registration(r1567,c94,s462).registration2810,64449 -registration(r1567,c94,s462).registration2810,64449 -registration(r1568,c95,s462).registration2811,64479 -registration(r1568,c95,s462).registration2811,64479 -registration(r1569,c82,s463).registration2812,64509 -registration(r1569,c82,s463).registration2812,64509 -registration(r1570,c115,s463).registration2813,64539 -registration(r1570,c115,s463).registration2813,64539 -registration(r1571,c17,s463).registration2814,64570 -registration(r1571,c17,s463).registration2814,64570 -registration(r1572,c73,s464).registration2815,64600 -registration(r1572,c73,s464).registration2815,64600 -registration(r1573,c1,s464).registration2816,64630 -registration(r1573,c1,s464).registration2816,64630 -registration(r1574,c51,s464).registration2817,64659 -registration(r1574,c51,s464).registration2817,64659 -registration(r1575,c100,s464).registration2818,64689 -registration(r1575,c100,s464).registration2818,64689 -registration(r1576,c122,s465).registration2819,64720 -registration(r1576,c122,s465).registration2819,64720 -registration(r1577,c119,s465).registration2820,64751 -registration(r1577,c119,s465).registration2820,64751 -registration(r1578,c96,s465).registration2821,64782 -registration(r1578,c96,s465).registration2821,64782 -registration(r1579,c94,s465).registration2822,64812 -registration(r1579,c94,s465).registration2822,64812 -registration(r1580,c20,s466).registration2823,64842 -registration(r1580,c20,s466).registration2823,64842 -registration(r1581,c103,s466).registration2824,64872 -registration(r1581,c103,s466).registration2824,64872 -registration(r1582,c126,s466).registration2825,64903 -registration(r1582,c126,s466).registration2825,64903 -registration(r1583,c82,s467).registration2826,64934 -registration(r1583,c82,s467).registration2826,64934 -registration(r1584,c64,s467).registration2827,64964 -registration(r1584,c64,s467).registration2827,64964 -registration(r1585,c57,s467).registration2828,64994 -registration(r1585,c57,s467).registration2828,64994 -registration(r1586,c24,s468).registration2829,65024 -registration(r1586,c24,s468).registration2829,65024 -registration(r1587,c5,s468).registration2830,65054 -registration(r1587,c5,s468).registration2830,65054 -registration(r1588,c126,s468).registration2831,65083 -registration(r1588,c126,s468).registration2831,65083 -registration(r1589,c113,s469).registration2832,65114 -registration(r1589,c113,s469).registration2832,65114 -registration(r1590,c100,s469).registration2833,65145 -registration(r1590,c100,s469).registration2833,65145 -registration(r1591,c28,s469).registration2834,65176 -registration(r1591,c28,s469).registration2834,65176 -registration(r1592,c30,s470).registration2835,65206 -registration(r1592,c30,s470).registration2835,65206 -registration(r1593,c92,s470).registration2836,65236 -registration(r1593,c92,s470).registration2836,65236 -registration(r1594,c50,s470).registration2837,65266 -registration(r1594,c50,s470).registration2837,65266 -registration(r1595,c85,s470).registration2838,65296 -registration(r1595,c85,s470).registration2838,65296 -registration(r1596,c122,s471).registration2839,65326 -registration(r1596,c122,s471).registration2839,65326 -registration(r1597,c54,s471).registration2840,65357 -registration(r1597,c54,s471).registration2840,65357 -registration(r1598,c42,s471).registration2841,65387 -registration(r1598,c42,s471).registration2841,65387 -registration(r1599,c23,s471).registration2842,65417 -registration(r1599,c23,s471).registration2842,65417 -registration(r1600,c111,s472).registration2843,65447 -registration(r1600,c111,s472).registration2843,65447 -registration(r1601,c22,s472).registration2844,65478 -registration(r1601,c22,s472).registration2844,65478 -registration(r1602,c118,s472).registration2845,65508 -registration(r1602,c118,s472).registration2845,65508 -registration(r1603,c55,s473).registration2846,65539 -registration(r1603,c55,s473).registration2846,65539 -registration(r1604,c19,s473).registration2847,65569 -registration(r1604,c19,s473).registration2847,65569 -registration(r1605,c16,s473).registration2848,65599 -registration(r1605,c16,s473).registration2848,65599 -registration(r1606,c22,s474).registration2849,65629 -registration(r1606,c22,s474).registration2849,65629 -registration(r1607,c124,s474).registration2850,65659 -registration(r1607,c124,s474).registration2850,65659 -registration(r1608,c127,s474).registration2851,65690 -registration(r1608,c127,s474).registration2851,65690 -registration(r1609,c100,s475).registration2852,65721 -registration(r1609,c100,s475).registration2852,65721 -registration(r1610,c11,s475).registration2853,65752 -registration(r1610,c11,s475).registration2853,65752 -registration(r1611,c23,s475).registration2854,65782 -registration(r1611,c23,s475).registration2854,65782 -registration(r1612,c43,s475).registration2855,65812 -registration(r1612,c43,s475).registration2855,65812 -registration(r1613,c68,s476).registration2856,65842 -registration(r1613,c68,s476).registration2856,65842 -registration(r1614,c44,s476).registration2857,65872 -registration(r1614,c44,s476).registration2857,65872 -registration(r1615,c73,s476).registration2858,65902 -registration(r1615,c73,s476).registration2858,65902 -registration(r1616,c127,s477).registration2859,65932 -registration(r1616,c127,s477).registration2859,65932 -registration(r1617,c29,s477).registration2860,65963 -registration(r1617,c29,s477).registration2860,65963 -registration(r1618,c47,s477).registration2861,65993 -registration(r1618,c47,s477).registration2861,65993 -registration(r1619,c93,s477).registration2862,66023 -registration(r1619,c93,s477).registration2862,66023 -registration(r1620,c46,s478).registration2863,66053 -registration(r1620,c46,s478).registration2863,66053 -registration(r1621,c83,s478).registration2864,66083 -registration(r1621,c83,s478).registration2864,66083 -registration(r1622,c119,s478).registration2865,66113 -registration(r1622,c119,s478).registration2865,66113 -registration(r1623,c10,s478).registration2866,66144 -registration(r1623,c10,s478).registration2866,66144 -registration(r1624,c40,s478).registration2867,66174 -registration(r1624,c40,s478).registration2867,66174 -registration(r1625,c9,s479).registration2868,66204 -registration(r1625,c9,s479).registration2868,66204 -registration(r1626,c55,s479).registration2869,66233 -registration(r1626,c55,s479).registration2869,66233 -registration(r1627,c64,s479).registration2870,66263 -registration(r1627,c64,s479).registration2870,66263 -registration(r1628,c54,s479).registration2871,66293 -registration(r1628,c54,s479).registration2871,66293 -registration(r1629,c114,s480).registration2872,66323 -registration(r1629,c114,s480).registration2872,66323 -registration(r1630,c26,s480).registration2873,66354 -registration(r1630,c26,s480).registration2873,66354 -registration(r1631,c58,s480).registration2874,66384 -registration(r1631,c58,s480).registration2874,66384 -registration(r1632,c44,s480).registration2875,66414 -registration(r1632,c44,s480).registration2875,66414 -registration(r1633,c124,s481).registration2876,66444 -registration(r1633,c124,s481).registration2876,66444 -registration(r1634,c112,s481).registration2877,66475 -registration(r1634,c112,s481).registration2877,66475 -registration(r1635,c17,s481).registration2878,66506 -registration(r1635,c17,s481).registration2878,66506 -registration(r1636,c56,s482).registration2879,66536 -registration(r1636,c56,s482).registration2879,66536 -registration(r1637,c69,s482).registration2880,66566 -registration(r1637,c69,s482).registration2880,66566 -registration(r1638,c0,s482).registration2881,66596 -registration(r1638,c0,s482).registration2881,66596 -registration(r1639,c94,s483).registration2882,66625 -registration(r1639,c94,s483).registration2882,66625 -registration(r1640,c5,s483).registration2883,66655 -registration(r1640,c5,s483).registration2883,66655 -registration(r1641,c12,s483).registration2884,66684 -registration(r1641,c12,s483).registration2884,66684 -registration(r1642,c36,s484).registration2885,66714 -registration(r1642,c36,s484).registration2885,66714 -registration(r1643,c61,s484).registration2886,66744 -registration(r1643,c61,s484).registration2886,66744 -registration(r1644,c8,s484).registration2887,66774 -registration(r1644,c8,s484).registration2887,66774 -registration(r1645,c63,s485).registration2888,66803 -registration(r1645,c63,s485).registration2888,66803 -registration(r1646,c12,s485).registration2889,66833 -registration(r1646,c12,s485).registration2889,66833 -registration(r1647,c75,s485).registration2890,66863 -registration(r1647,c75,s485).registration2890,66863 -registration(r1648,c61,s486).registration2891,66893 -registration(r1648,c61,s486).registration2891,66893 -registration(r1649,c16,s486).registration2892,66923 -registration(r1649,c16,s486).registration2892,66923 -registration(r1650,c117,s486).registration2893,66953 -registration(r1650,c117,s486).registration2893,66953 -registration(r1651,c90,s487).registration2894,66984 -registration(r1651,c90,s487).registration2894,66984 -registration(r1652,c67,s487).registration2895,67014 -registration(r1652,c67,s487).registration2895,67014 -registration(r1653,c46,s487).registration2896,67044 -registration(r1653,c46,s487).registration2896,67044 -registration(r1654,c17,s487).registration2897,67074 -registration(r1654,c17,s487).registration2897,67074 -registration(r1655,c36,s488).registration2898,67104 -registration(r1655,c36,s488).registration2898,67104 -registration(r1656,c78,s488).registration2899,67134 -registration(r1656,c78,s488).registration2899,67134 -registration(r1657,c18,s488).registration2900,67164 -registration(r1657,c18,s488).registration2900,67164 -registration(r1658,c44,s488).registration2901,67194 -registration(r1658,c44,s488).registration2901,67194 -registration(r1659,c18,s489).registration2902,67224 -registration(r1659,c18,s489).registration2902,67224 -registration(r1660,c55,s489).registration2903,67254 -registration(r1660,c55,s489).registration2903,67254 -registration(r1661,c35,s489).registration2904,67284 -registration(r1661,c35,s489).registration2904,67284 -registration(r1662,c92,s489).registration2905,67314 -registration(r1662,c92,s489).registration2905,67314 -registration(r1663,c23,s490).registration2906,67344 -registration(r1663,c23,s490).registration2906,67344 -registration(r1664,c41,s490).registration2907,67374 -registration(r1664,c41,s490).registration2907,67374 -registration(r1665,c38,s490).registration2908,67404 -registration(r1665,c38,s490).registration2908,67404 -registration(r1666,c113,s491).registration2909,67434 -registration(r1666,c113,s491).registration2909,67434 -registration(r1667,c76,s491).registration2910,67465 -registration(r1667,c76,s491).registration2910,67465 -registration(r1668,c112,s491).registration2911,67495 -registration(r1668,c112,s491).registration2911,67495 -registration(r1669,c103,s492).registration2912,67526 -registration(r1669,c103,s492).registration2912,67526 -registration(r1670,c118,s492).registration2913,67557 -registration(r1670,c118,s492).registration2913,67557 -registration(r1671,c25,s492).registration2914,67588 -registration(r1671,c25,s492).registration2914,67588 -registration(r1672,c73,s493).registration2915,67618 -registration(r1672,c73,s493).registration2915,67618 -registration(r1673,c46,s493).registration2916,67648 -registration(r1673,c46,s493).registration2916,67648 -registration(r1674,c68,s493).registration2917,67678 -registration(r1674,c68,s493).registration2917,67678 -registration(r1675,c18,s494).registration2918,67708 -registration(r1675,c18,s494).registration2918,67708 -registration(r1676,c110,s494).registration2919,67738 -registration(r1676,c110,s494).registration2919,67738 -registration(r1677,c95,s494).registration2920,67769 -registration(r1677,c95,s494).registration2920,67769 -registration(r1678,c114,s495).registration2921,67799 -registration(r1678,c114,s495).registration2921,67799 -registration(r1679,c117,s495).registration2922,67830 -registration(r1679,c117,s495).registration2922,67830 -registration(r1680,c3,s495).registration2923,67861 -registration(r1680,c3,s495).registration2923,67861 -registration(r1681,c80,s495).registration2924,67890 -registration(r1681,c80,s495).registration2924,67890 -registration(r1682,c25,s496).registration2925,67920 -registration(r1682,c25,s496).registration2925,67920 -registration(r1683,c122,s496).registration2926,67950 -registration(r1683,c122,s496).registration2926,67950 -registration(r1684,c9,s496).registration2927,67981 -registration(r1684,c9,s496).registration2927,67981 -registration(r1685,c122,s497).registration2928,68010 -registration(r1685,c122,s497).registration2928,68010 -registration(r1686,c61,s497).registration2929,68041 -registration(r1686,c61,s497).registration2929,68041 -registration(r1687,c33,s497).registration2930,68071 -registration(r1687,c33,s497).registration2930,68071 -registration(r1688,c9,s498).registration2931,68101 -registration(r1688,c9,s498).registration2931,68101 -registration(r1689,c33,s498).registration2932,68130 -registration(r1689,c33,s498).registration2932,68130 -registration(r1690,c54,s498).registration2933,68160 -registration(r1690,c54,s498).registration2933,68160 -registration(r1691,c126,s499).registration2934,68190 -registration(r1691,c126,s499).registration2934,68190 -registration(r1692,c121,s499).registration2935,68221 -registration(r1692,c121,s499).registration2935,68221 -registration(r1693,c31,s499).registration2936,68252 -registration(r1693,c31,s499).registration2936,68252 -registration(r1694,c50,s500).registration2937,68282 -registration(r1694,c50,s500).registration2937,68282 -registration(r1695,c73,s500).registration2938,68312 -registration(r1695,c73,s500).registration2938,68312 -registration(r1696,c45,s500).registration2939,68342 -registration(r1696,c45,s500).registration2939,68342 -registration(r1697,c33,s501).registration2940,68372 -registration(r1697,c33,s501).registration2940,68372 -registration(r1698,c102,s501).registration2941,68402 -registration(r1698,c102,s501).registration2941,68402 -registration(r1699,c44,s501).registration2942,68433 -registration(r1699,c44,s501).registration2942,68433 -registration(r1700,c15,s502).registration2943,68463 -registration(r1700,c15,s502).registration2943,68463 -registration(r1701,c61,s502).registration2944,68493 -registration(r1701,c61,s502).registration2944,68493 -registration(r1702,c49,s502).registration2945,68523 -registration(r1702,c49,s502).registration2945,68523 -registration(r1703,c45,s502).registration2946,68553 -registration(r1703,c45,s502).registration2946,68553 -registration(r1704,c19,s503).registration2947,68583 -registration(r1704,c19,s503).registration2947,68583 -registration(r1705,c107,s503).registration2948,68613 -registration(r1705,c107,s503).registration2948,68613 -registration(r1706,c4,s503).registration2949,68644 -registration(r1706,c4,s503).registration2949,68644 -registration(r1707,c14,s503).registration2950,68673 -registration(r1707,c14,s503).registration2950,68673 -registration(r1708,c94,s504).registration2951,68703 -registration(r1708,c94,s504).registration2951,68703 -registration(r1709,c59,s504).registration2952,68733 -registration(r1709,c59,s504).registration2952,68733 -registration(r1710,c89,s504).registration2953,68763 -registration(r1710,c89,s504).registration2953,68763 -registration(r1711,c84,s505).registration2954,68793 -registration(r1711,c84,s505).registration2954,68793 -registration(r1712,c90,s505).registration2955,68823 -registration(r1712,c90,s505).registration2955,68823 -registration(r1713,c20,s505).registration2956,68853 -registration(r1713,c20,s505).registration2956,68853 -registration(r1714,c94,s505).registration2957,68883 -registration(r1714,c94,s505).registration2957,68883 -registration(r1715,c81,s506).registration2958,68913 -registration(r1715,c81,s506).registration2958,68913 -registration(r1716,c126,s506).registration2959,68943 -registration(r1716,c126,s506).registration2959,68943 -registration(r1717,c5,s506).registration2960,68974 -registration(r1717,c5,s506).registration2960,68974 -registration(r1718,c50,s507).registration2961,69003 -registration(r1718,c50,s507).registration2961,69003 -registration(r1719,c21,s507).registration2962,69033 -registration(r1719,c21,s507).registration2962,69033 -registration(r1720,c28,s507).registration2963,69063 -registration(r1720,c28,s507).registration2963,69063 -registration(r1721,c77,s508).registration2964,69093 -registration(r1721,c77,s508).registration2964,69093 -registration(r1722,c91,s508).registration2965,69123 -registration(r1722,c91,s508).registration2965,69123 -registration(r1723,c127,s508).registration2966,69153 -registration(r1723,c127,s508).registration2966,69153 -registration(r1724,c106,s509).registration2967,69184 -registration(r1724,c106,s509).registration2967,69184 -registration(r1725,c50,s509).registration2968,69215 -registration(r1725,c50,s509).registration2968,69215 -registration(r1726,c43,s509).registration2969,69245 -registration(r1726,c43,s509).registration2969,69245 -registration(r1727,c10,s510).registration2970,69275 -registration(r1727,c10,s510).registration2970,69275 -registration(r1728,c45,s510).registration2971,69305 -registration(r1728,c45,s510).registration2971,69305 -registration(r1729,c27,s510).registration2972,69335 -registration(r1729,c27,s510).registration2972,69335 -registration(r1730,c111,s511).registration2973,69365 -registration(r1730,c111,s511).registration2973,69365 -registration(r1731,c30,s511).registration2974,69396 -registration(r1731,c30,s511).registration2974,69396 -registration(r1732,c123,s511).registration2975,69426 -registration(r1732,c123,s511).registration2975,69426 -registration(r1733,c43,s511).registration2976,69457 -registration(r1733,c43,s511).registration2976,69457 -registration(r1734,c100,s512).registration2977,69487 -registration(r1734,c100,s512).registration2977,69487 -registration(r1735,c40,s512).registration2978,69518 -registration(r1735,c40,s512).registration2978,69518 -registration(r1736,c94,s512).registration2979,69548 -registration(r1736,c94,s512).registration2979,69548 -registration(r1737,c16,s512).registration2980,69578 -registration(r1737,c16,s512).registration2980,69578 -registration(r1738,c108,s513).registration2981,69608 -registration(r1738,c108,s513).registration2981,69608 -registration(r1739,c41,s513).registration2982,69639 -registration(r1739,c41,s513).registration2982,69639 -registration(r1740,c82,s513).registration2983,69669 -registration(r1740,c82,s513).registration2983,69669 -registration(r1741,c45,s514).registration2984,69699 -registration(r1741,c45,s514).registration2984,69699 -registration(r1742,c63,s514).registration2985,69729 -registration(r1742,c63,s514).registration2985,69729 -registration(r1743,c37,s514).registration2986,69759 -registration(r1743,c37,s514).registration2986,69759 -registration(r1744,c89,s515).registration2987,69789 -registration(r1744,c89,s515).registration2987,69789 -registration(r1745,c71,s515).registration2988,69819 -registration(r1745,c71,s515).registration2988,69819 -registration(r1746,c26,s515).registration2989,69849 -registration(r1746,c26,s515).registration2989,69849 -registration(r1747,c71,s516).registration2990,69879 -registration(r1747,c71,s516).registration2990,69879 -registration(r1748,c53,s516).registration2991,69909 -registration(r1748,c53,s516).registration2991,69909 -registration(r1749,c22,s516).registration2992,69939 -registration(r1749,c22,s516).registration2992,69939 -registration(r1750,c53,s517).registration2993,69969 -registration(r1750,c53,s517).registration2993,69969 -registration(r1751,c41,s517).registration2994,69999 -registration(r1751,c41,s517).registration2994,69999 -registration(r1752,c56,s517).registration2995,70029 -registration(r1752,c56,s517).registration2995,70029 -registration(r1753,c27,s517).registration2996,70059 -registration(r1753,c27,s517).registration2996,70059 -registration(r1754,c9,s518).registration2997,70089 -registration(r1754,c9,s518).registration2997,70089 -registration(r1755,c97,s518).registration2998,70118 -registration(r1755,c97,s518).registration2998,70118 -registration(r1756,c114,s518).registration2999,70148 -registration(r1756,c114,s518).registration2999,70148 -registration(r1757,c113,s518).registration3000,70179 -registration(r1757,c113,s518).registration3000,70179 -registration(r1758,c64,s519).registration3001,70210 -registration(r1758,c64,s519).registration3001,70210 -registration(r1759,c69,s519).registration3002,70240 -registration(r1759,c69,s519).registration3002,70240 -registration(r1760,c30,s519).registration3003,70270 -registration(r1760,c30,s519).registration3003,70270 -registration(r1761,c93,s520).registration3004,70300 -registration(r1761,c93,s520).registration3004,70300 -registration(r1762,c92,s520).registration3005,70330 -registration(r1762,c92,s520).registration3005,70330 -registration(r1763,c14,s520).registration3006,70360 -registration(r1763,c14,s520).registration3006,70360 -registration(r1764,c54,s520).registration3007,70390 -registration(r1764,c54,s520).registration3007,70390 -registration(r1765,c34,s521).registration3008,70420 -registration(r1765,c34,s521).registration3008,70420 -registration(r1766,c82,s521).registration3009,70450 -registration(r1766,c82,s521).registration3009,70450 -registration(r1767,c42,s521).registration3010,70480 -registration(r1767,c42,s521).registration3010,70480 -registration(r1768,c65,s521).registration3011,70510 -registration(r1768,c65,s521).registration3011,70510 -registration(r1769,c24,s522).registration3012,70540 -registration(r1769,c24,s522).registration3012,70540 -registration(r1770,c44,s522).registration3013,70570 -registration(r1770,c44,s522).registration3013,70570 -registration(r1771,c118,s522).registration3014,70600 -registration(r1771,c118,s522).registration3014,70600 -registration(r1772,c87,s523).registration3015,70631 -registration(r1772,c87,s523).registration3015,70631 -registration(r1773,c68,s523).registration3016,70661 -registration(r1773,c68,s523).registration3016,70661 -registration(r1774,c127,s523).registration3017,70691 -registration(r1774,c127,s523).registration3017,70691 -registration(r1775,c114,s524).registration3018,70722 -registration(r1775,c114,s524).registration3018,70722 -registration(r1776,c120,s524).registration3019,70753 -registration(r1776,c120,s524).registration3019,70753 -registration(r1777,c24,s524).registration3020,70784 -registration(r1777,c24,s524).registration3020,70784 -registration(r1778,c94,s525).registration3021,70814 -registration(r1778,c94,s525).registration3021,70814 -registration(r1779,c112,s525).registration3022,70844 -registration(r1779,c112,s525).registration3022,70844 -registration(r1780,c113,s525).registration3023,70875 -registration(r1780,c113,s525).registration3023,70875 -registration(r1781,c78,s526).registration3024,70906 -registration(r1781,c78,s526).registration3024,70906 -registration(r1782,c95,s526).registration3025,70936 -registration(r1782,c95,s526).registration3025,70936 -registration(r1783,c84,s526).registration3026,70966 -registration(r1783,c84,s526).registration3026,70966 -registration(r1784,c53,s526).registration3027,70996 -registration(r1784,c53,s526).registration3027,70996 -registration(r1785,c87,s527).registration3028,71026 -registration(r1785,c87,s527).registration3028,71026 -registration(r1786,c96,s527).registration3029,71056 -registration(r1786,c96,s527).registration3029,71056 -registration(r1787,c98,s527).registration3030,71086 -registration(r1787,c98,s527).registration3030,71086 -registration(r1788,c122,s528).registration3031,71116 -registration(r1788,c122,s528).registration3031,71116 -registration(r1789,c10,s528).registration3032,71147 -registration(r1789,c10,s528).registration3032,71147 -registration(r1790,c25,s528).registration3033,71177 -registration(r1790,c25,s528).registration3033,71177 -registration(r1791,c112,s529).registration3034,71207 -registration(r1791,c112,s529).registration3034,71207 -registration(r1792,c2,s529).registration3035,71238 -registration(r1792,c2,s529).registration3035,71238 -registration(r1793,c109,s529).registration3036,71267 -registration(r1793,c109,s529).registration3036,71267 -registration(r1794,c96,s530).registration3037,71298 -registration(r1794,c96,s530).registration3037,71298 -registration(r1795,c73,s530).registration3038,71328 -registration(r1795,c73,s530).registration3038,71328 -registration(r1796,c65,s530).registration3039,71358 -registration(r1796,c65,s530).registration3039,71358 -registration(r1797,c32,s530).registration3040,71388 -registration(r1797,c32,s530).registration3040,71388 -registration(r1798,c34,s531).registration3041,71418 -registration(r1798,c34,s531).registration3041,71418 -registration(r1799,c115,s531).registration3042,71448 -registration(r1799,c115,s531).registration3042,71448 -registration(r1800,c112,s531).registration3043,71479 -registration(r1800,c112,s531).registration3043,71479 -registration(r1801,c81,s532).registration3044,71510 -registration(r1801,c81,s532).registration3044,71510 -registration(r1802,c68,s532).registration3045,71540 -registration(r1802,c68,s532).registration3045,71540 -registration(r1803,c71,s532).registration3046,71570 -registration(r1803,c71,s532).registration3046,71570 -registration(r1804,c59,s532).registration3047,71600 -registration(r1804,c59,s532).registration3047,71600 -registration(r1805,c104,s533).registration3048,71630 -registration(r1805,c104,s533).registration3048,71630 -registration(r1806,c30,s533).registration3049,71661 -registration(r1806,c30,s533).registration3049,71661 -registration(r1807,c125,s533).registration3050,71691 -registration(r1807,c125,s533).registration3050,71691 -registration(r1808,c24,s533).registration3051,71722 -registration(r1808,c24,s533).registration3051,71722 -registration(r1809,c35,s533).registration3052,71752 -registration(r1809,c35,s533).registration3052,71752 -registration(r1810,c86,s534).registration3053,71782 -registration(r1810,c86,s534).registration3053,71782 -registration(r1811,c118,s534).registration3054,71812 -registration(r1811,c118,s534).registration3054,71812 -registration(r1812,c18,s534).registration3055,71843 -registration(r1812,c18,s534).registration3055,71843 -registration(r1813,c100,s535).registration3056,71873 -registration(r1813,c100,s535).registration3056,71873 -registration(r1814,c2,s535).registration3057,71904 -registration(r1814,c2,s535).registration3057,71904 -registration(r1815,c69,s535).registration3058,71933 -registration(r1815,c69,s535).registration3058,71933 -registration(r1816,c119,s536).registration3059,71963 -registration(r1816,c119,s536).registration3059,71963 -registration(r1817,c48,s536).registration3060,71994 -registration(r1817,c48,s536).registration3060,71994 -registration(r1818,c102,s536).registration3061,72024 -registration(r1818,c102,s536).registration3061,72024 -registration(r1819,c35,s536).registration3062,72055 -registration(r1819,c35,s536).registration3062,72055 -registration(r1820,c9,s537).registration3063,72085 -registration(r1820,c9,s537).registration3063,72085 -registration(r1821,c103,s537).registration3064,72114 -registration(r1821,c103,s537).registration3064,72114 -registration(r1822,c41,s537).registration3065,72145 -registration(r1822,c41,s537).registration3065,72145 -registration(r1823,c49,s538).registration3066,72175 -registration(r1823,c49,s538).registration3066,72175 -registration(r1824,c11,s538).registration3067,72205 -registration(r1824,c11,s538).registration3067,72205 -registration(r1825,c78,s538).registration3068,72235 -registration(r1825,c78,s538).registration3068,72235 -registration(r1826,c42,s538).registration3069,72265 -registration(r1826,c42,s538).registration3069,72265 -registration(r1827,c35,s539).registration3070,72295 -registration(r1827,c35,s539).registration3070,72295 -registration(r1828,c67,s539).registration3071,72325 -registration(r1828,c67,s539).registration3071,72325 -registration(r1829,c84,s539).registration3072,72355 -registration(r1829,c84,s539).registration3072,72355 -registration(r1830,c74,s539).registration3073,72385 -registration(r1830,c74,s539).registration3073,72385 -registration(r1831,c89,s540).registration3074,72415 -registration(r1831,c89,s540).registration3074,72415 -registration(r1832,c114,s540).registration3075,72445 -registration(r1832,c114,s540).registration3075,72445 -registration(r1833,c46,s540).registration3076,72476 -registration(r1833,c46,s540).registration3076,72476 -registration(r1834,c116,s541).registration3077,72506 -registration(r1834,c116,s541).registration3077,72506 -registration(r1835,c106,s541).registration3078,72537 -registration(r1835,c106,s541).registration3078,72537 -registration(r1836,c58,s541).registration3079,72568 -registration(r1836,c58,s541).registration3079,72568 -registration(r1837,c34,s542).registration3080,72598 -registration(r1837,c34,s542).registration3080,72598 -registration(r1838,c5,s542).registration3081,72628 -registration(r1838,c5,s542).registration3081,72628 -registration(r1839,c66,s542).registration3082,72657 -registration(r1839,c66,s542).registration3082,72657 -registration(r1840,c41,s542).registration3083,72687 -registration(r1840,c41,s542).registration3083,72687 -registration(r1841,c36,s543).registration3084,72717 -registration(r1841,c36,s543).registration3084,72717 -registration(r1842,c93,s543).registration3085,72747 -registration(r1842,c93,s543).registration3085,72747 -registration(r1843,c86,s543).registration3086,72777 -registration(r1843,c86,s543).registration3086,72777 -registration(r1844,c36,s544).registration3087,72807 -registration(r1844,c36,s544).registration3087,72807 -registration(r1845,c111,s544).registration3088,72837 -registration(r1845,c111,s544).registration3088,72837 -registration(r1846,c18,s544).registration3089,72868 -registration(r1846,c18,s544).registration3089,72868 -registration(r1847,c85,s544).registration3090,72898 -registration(r1847,c85,s544).registration3090,72898 -registration(r1848,c66,s545).registration3091,72928 -registration(r1848,c66,s545).registration3091,72928 -registration(r1849,c89,s545).registration3092,72958 -registration(r1849,c89,s545).registration3092,72958 -registration(r1850,c111,s545).registration3093,72988 -registration(r1850,c111,s545).registration3093,72988 -registration(r1851,c50,s545).registration3094,73019 -registration(r1851,c50,s545).registration3094,73019 -registration(r1852,c60,s546).registration3095,73049 -registration(r1852,c60,s546).registration3095,73049 -registration(r1853,c113,s546).registration3096,73079 -registration(r1853,c113,s546).registration3096,73079 -registration(r1854,c87,s546).registration3097,73110 -registration(r1854,c87,s546).registration3097,73110 -registration(r1855,c18,s547).registration3098,73140 -registration(r1855,c18,s547).registration3098,73140 -registration(r1856,c29,s547).registration3099,73170 -registration(r1856,c29,s547).registration3099,73170 -registration(r1857,c121,s547).registration3100,73200 -registration(r1857,c121,s547).registration3100,73200 -registration(r1858,c58,s548).registration3101,73231 -registration(r1858,c58,s548).registration3101,73231 -registration(r1859,c47,s548).registration3102,73261 -registration(r1859,c47,s548).registration3102,73261 -registration(r1860,c48,s548).registration3103,73291 -registration(r1860,c48,s548).registration3103,73291 -registration(r1861,c13,s549).registration3104,73321 -registration(r1861,c13,s549).registration3104,73321 -registration(r1862,c58,s549).registration3105,73351 -registration(r1862,c58,s549).registration3105,73351 -registration(r1863,c41,s549).registration3106,73381 -registration(r1863,c41,s549).registration3106,73381 -registration(r1864,c24,s550).registration3107,73411 -registration(r1864,c24,s550).registration3107,73411 -registration(r1865,c9,s550).registration3108,73441 -registration(r1865,c9,s550).registration3108,73441 -registration(r1866,c77,s550).registration3109,73470 -registration(r1866,c77,s550).registration3109,73470 -registration(r1867,c15,s551).registration3110,73500 -registration(r1867,c15,s551).registration3110,73500 -registration(r1868,c5,s551).registration3111,73530 -registration(r1868,c5,s551).registration3111,73530 -registration(r1869,c79,s551).registration3112,73559 -registration(r1869,c79,s551).registration3112,73559 -registration(r1870,c49,s552).registration3113,73589 -registration(r1870,c49,s552).registration3113,73589 -registration(r1871,c89,s552).registration3114,73619 -registration(r1871,c89,s552).registration3114,73619 -registration(r1872,c41,s552).registration3115,73649 -registration(r1872,c41,s552).registration3115,73649 -registration(r1873,c9,s552).registration3116,73679 -registration(r1873,c9,s552).registration3116,73679 -registration(r1874,c27,s552).registration3117,73708 -registration(r1874,c27,s552).registration3117,73708 -registration(r1875,c38,s553).registration3118,73738 -registration(r1875,c38,s553).registration3118,73738 -registration(r1876,c0,s553).registration3119,73768 -registration(r1876,c0,s553).registration3119,73768 -registration(r1877,c80,s553).registration3120,73797 -registration(r1877,c80,s553).registration3120,73797 -registration(r1878,c127,s554).registration3121,73827 -registration(r1878,c127,s554).registration3121,73827 -registration(r1879,c119,s554).registration3122,73858 -registration(r1879,c119,s554).registration3122,73858 -registration(r1880,c29,s554).registration3123,73889 -registration(r1880,c29,s554).registration3123,73889 -registration(r1881,c86,s554).registration3124,73919 -registration(r1881,c86,s554).registration3124,73919 -registration(r1882,c124,s555).registration3125,73949 -registration(r1882,c124,s555).registration3125,73949 -registration(r1883,c125,s555).registration3126,73980 -registration(r1883,c125,s555).registration3126,73980 -registration(r1884,c52,s555).registration3127,74011 -registration(r1884,c52,s555).registration3127,74011 -registration(r1885,c6,s555).registration3128,74041 -registration(r1885,c6,s555).registration3128,74041 -registration(r1886,c64,s555).registration3129,74070 -registration(r1886,c64,s555).registration3129,74070 -registration(r1887,c102,s556).registration3130,74100 -registration(r1887,c102,s556).registration3130,74100 -registration(r1888,c18,s556).registration3131,74131 -registration(r1888,c18,s556).registration3131,74131 -registration(r1889,c69,s556).registration3132,74161 -registration(r1889,c69,s556).registration3132,74161 -registration(r1890,c126,s557).registration3133,74191 -registration(r1890,c126,s557).registration3133,74191 -registration(r1891,c101,s557).registration3134,74222 -registration(r1891,c101,s557).registration3134,74222 -registration(r1892,c8,s557).registration3135,74253 -registration(r1892,c8,s557).registration3135,74253 -registration(r1893,c18,s558).registration3136,74282 -registration(r1893,c18,s558).registration3136,74282 -registration(r1894,c47,s558).registration3137,74312 -registration(r1894,c47,s558).registration3137,74312 -registration(r1895,c10,s558).registration3138,74342 -registration(r1895,c10,s558).registration3138,74342 -registration(r1896,c90,s559).registration3139,74372 -registration(r1896,c90,s559).registration3139,74372 -registration(r1897,c0,s559).registration3140,74402 -registration(r1897,c0,s559).registration3140,74402 -registration(r1898,c106,s559).registration3141,74431 -registration(r1898,c106,s559).registration3141,74431 -registration(r1899,c8,s560).registration3142,74462 -registration(r1899,c8,s560).registration3142,74462 -registration(r1900,c45,s560).registration3143,74491 -registration(r1900,c45,s560).registration3143,74491 -registration(r1901,c127,s560).registration3144,74521 -registration(r1901,c127,s560).registration3144,74521 -registration(r1902,c124,s561).registration3145,74552 -registration(r1902,c124,s561).registration3145,74552 -registration(r1903,c21,s561).registration3146,74583 -registration(r1903,c21,s561).registration3146,74583 -registration(r1904,c63,s561).registration3147,74613 -registration(r1904,c63,s561).registration3147,74613 -registration(r1905,c24,s561).registration3148,74643 -registration(r1905,c24,s561).registration3148,74643 -registration(r1906,c105,s562).registration3149,74673 -registration(r1906,c105,s562).registration3149,74673 -registration(r1907,c41,s562).registration3150,74704 -registration(r1907,c41,s562).registration3150,74704 -registration(r1908,c69,s562).registration3151,74734 -registration(r1908,c69,s562).registration3151,74734 -registration(r1909,c67,s563).registration3152,74764 -registration(r1909,c67,s563).registration3152,74764 -registration(r1910,c5,s563).registration3153,74794 -registration(r1910,c5,s563).registration3153,74794 -registration(r1911,c98,s563).registration3154,74823 -registration(r1911,c98,s563).registration3154,74823 -registration(r1912,c116,s564).registration3155,74853 -registration(r1912,c116,s564).registration3155,74853 -registration(r1913,c26,s564).registration3156,74884 -registration(r1913,c26,s564).registration3156,74884 -registration(r1914,c127,s564).registration3157,74914 -registration(r1914,c127,s564).registration3157,74914 -registration(r1915,c89,s565).registration3158,74945 -registration(r1915,c89,s565).registration3158,74945 -registration(r1916,c44,s565).registration3159,74975 -registration(r1916,c44,s565).registration3159,74975 -registration(r1917,c52,s565).registration3160,75005 -registration(r1917,c52,s565).registration3160,75005 -registration(r1918,c60,s566).registration3161,75035 -registration(r1918,c60,s566).registration3161,75035 -registration(r1919,c96,s566).registration3162,75065 -registration(r1919,c96,s566).registration3162,75065 -registration(r1920,c35,s566).registration3163,75095 -registration(r1920,c35,s566).registration3163,75095 -registration(r1921,c31,s566).registration3164,75125 -registration(r1921,c31,s566).registration3164,75125 -registration(r1922,c49,s567).registration3165,75155 -registration(r1922,c49,s567).registration3165,75155 -registration(r1923,c74,s567).registration3166,75185 -registration(r1923,c74,s567).registration3166,75185 -registration(r1924,c35,s567).registration3167,75215 -registration(r1924,c35,s567).registration3167,75215 -registration(r1925,c13,s568).registration3168,75245 -registration(r1925,c13,s568).registration3168,75245 -registration(r1926,c115,s568).registration3169,75275 -registration(r1926,c115,s568).registration3169,75275 -registration(r1927,c15,s568).registration3170,75306 -registration(r1927,c15,s568).registration3170,75306 -registration(r1928,c82,s569).registration3171,75336 -registration(r1928,c82,s569).registration3171,75336 -registration(r1929,c50,s569).registration3172,75366 -registration(r1929,c50,s569).registration3172,75366 -registration(r1930,c46,s569).registration3173,75396 -registration(r1930,c46,s569).registration3173,75396 -registration(r1931,c35,s570).registration3174,75426 -registration(r1931,c35,s570).registration3174,75426 -registration(r1932,c89,s570).registration3175,75456 -registration(r1932,c89,s570).registration3175,75456 -registration(r1933,c39,s570).registration3176,75486 -registration(r1933,c39,s570).registration3176,75486 -registration(r1934,c1,s571).registration3177,75516 -registration(r1934,c1,s571).registration3177,75516 -registration(r1935,c124,s571).registration3178,75545 -registration(r1935,c124,s571).registration3178,75545 -registration(r1936,c86,s571).registration3179,75576 -registration(r1936,c86,s571).registration3179,75576 -registration(r1937,c19,s572).registration3180,75606 -registration(r1937,c19,s572).registration3180,75606 -registration(r1938,c22,s572).registration3181,75636 -registration(r1938,c22,s572).registration3181,75636 -registration(r1939,c70,s572).registration3182,75666 -registration(r1939,c70,s572).registration3182,75666 -registration(r1940,c102,s573).registration3183,75696 -registration(r1940,c102,s573).registration3183,75696 -registration(r1941,c96,s573).registration3184,75727 -registration(r1941,c96,s573).registration3184,75727 -registration(r1942,c106,s573).registration3185,75757 -registration(r1942,c106,s573).registration3185,75757 -registration(r1943,c41,s573).registration3186,75788 -registration(r1943,c41,s573).registration3186,75788 -registration(r1944,c24,s574).registration3187,75818 -registration(r1944,c24,s574).registration3187,75818 -registration(r1945,c30,s574).registration3188,75848 -registration(r1945,c30,s574).registration3188,75848 -registration(r1946,c67,s574).registration3189,75878 -registration(r1946,c67,s574).registration3189,75878 -registration(r1947,c20,s575).registration3190,75908 -registration(r1947,c20,s575).registration3190,75908 -registration(r1948,c119,s575).registration3191,75938 -registration(r1948,c119,s575).registration3191,75938 -registration(r1949,c26,s575).registration3192,75969 -registration(r1949,c26,s575).registration3192,75969 -registration(r1950,c61,s576).registration3193,75999 -registration(r1950,c61,s576).registration3193,75999 -registration(r1951,c43,s576).registration3194,76029 -registration(r1951,c43,s576).registration3194,76029 -registration(r1952,c72,s576).registration3195,76059 -registration(r1952,c72,s576).registration3195,76059 -registration(r1953,c79,s576).registration3196,76089 -registration(r1953,c79,s576).registration3196,76089 -registration(r1954,c9,s577).registration3197,76119 -registration(r1954,c9,s577).registration3197,76119 -registration(r1955,c38,s577).registration3198,76148 -registration(r1955,c38,s577).registration3198,76148 -registration(r1956,c125,s577).registration3199,76178 -registration(r1956,c125,s577).registration3199,76178 -registration(r1957,c19,s578).registration3200,76209 -registration(r1957,c19,s578).registration3200,76209 -registration(r1958,c112,s578).registration3201,76239 -registration(r1958,c112,s578).registration3201,76239 -registration(r1959,c103,s578).registration3202,76270 -registration(r1959,c103,s578).registration3202,76270 -registration(r1960,c73,s579).registration3203,76301 -registration(r1960,c73,s579).registration3203,76301 -registration(r1961,c29,s579).registration3204,76331 -registration(r1961,c29,s579).registration3204,76331 -registration(r1962,c98,s579).registration3205,76361 -registration(r1962,c98,s579).registration3205,76361 -registration(r1963,c121,s580).registration3206,76391 -registration(r1963,c121,s580).registration3206,76391 -registration(r1964,c17,s580).registration3207,76422 -registration(r1964,c17,s580).registration3207,76422 -registration(r1965,c19,s580).registration3208,76452 -registration(r1965,c19,s580).registration3208,76452 -registration(r1966,c39,s581).registration3209,76482 -registration(r1966,c39,s581).registration3209,76482 -registration(r1967,c55,s581).registration3210,76512 -registration(r1967,c55,s581).registration3210,76512 -registration(r1968,c21,s581).registration3211,76542 -registration(r1968,c21,s581).registration3211,76542 -registration(r1969,c83,s582).registration3212,76572 -registration(r1969,c83,s582).registration3212,76572 -registration(r1970,c38,s582).registration3213,76602 -registration(r1970,c38,s582).registration3213,76602 -registration(r1971,c29,s582).registration3214,76632 -registration(r1971,c29,s582).registration3214,76632 -registration(r1972,c103,s583).registration3215,76662 -registration(r1972,c103,s583).registration3215,76662 -registration(r1973,c105,s583).registration3216,76693 -registration(r1973,c105,s583).registration3216,76693 -registration(r1974,c26,s583).registration3217,76724 -registration(r1974,c26,s583).registration3217,76724 -registration(r1975,c82,s583).registration3218,76754 -registration(r1975,c82,s583).registration3218,76754 -registration(r1976,c120,s584).registration3219,76784 -registration(r1976,c120,s584).registration3219,76784 -registration(r1977,c4,s584).registration3220,76815 -registration(r1977,c4,s584).registration3220,76815 -registration(r1978,c59,s584).registration3221,76844 -registration(r1978,c59,s584).registration3221,76844 -registration(r1979,c4,s585).registration3222,76874 -registration(r1979,c4,s585).registration3222,76874 -registration(r1980,c74,s585).registration3223,76903 -registration(r1980,c74,s585).registration3223,76903 -registration(r1981,c61,s585).registration3224,76933 -registration(r1981,c61,s585).registration3224,76933 -registration(r1982,c55,s586).registration3225,76963 -registration(r1982,c55,s586).registration3225,76963 -registration(r1983,c9,s586).registration3226,76993 -registration(r1983,c9,s586).registration3226,76993 -registration(r1984,c45,s586).registration3227,77022 -registration(r1984,c45,s586).registration3227,77022 -registration(r1985,c85,s586).registration3228,77052 -registration(r1985,c85,s586).registration3228,77052 -registration(r1986,c45,s587).registration3229,77082 -registration(r1986,c45,s587).registration3229,77082 -registration(r1987,c27,s587).registration3230,77112 -registration(r1987,c27,s587).registration3230,77112 -registration(r1988,c80,s587).registration3231,77142 -registration(r1988,c80,s587).registration3231,77142 -registration(r1989,c110,s587).registration3232,77172 -registration(r1989,c110,s587).registration3232,77172 -registration(r1990,c34,s588).registration3233,77203 -registration(r1990,c34,s588).registration3233,77203 -registration(r1991,c78,s588).registration3234,77233 -registration(r1991,c78,s588).registration3234,77233 -registration(r1992,c108,s588).registration3235,77263 -registration(r1992,c108,s588).registration3235,77263 -registration(r1993,c55,s588).registration3236,77294 -registration(r1993,c55,s588).registration3236,77294 -registration(r1994,c112,s588).registration3237,77324 -registration(r1994,c112,s588).registration3237,77324 -registration(r1995,c75,s589).registration3238,77355 -registration(r1995,c75,s589).registration3238,77355 -registration(r1996,c90,s589).registration3239,77385 -registration(r1996,c90,s589).registration3239,77385 -registration(r1997,c104,s589).registration3240,77415 -registration(r1997,c104,s589).registration3240,77415 -registration(r1998,c20,s589).registration3241,77446 -registration(r1998,c20,s589).registration3241,77446 -registration(r1999,c44,s590).registration3242,77476 -registration(r1999,c44,s590).registration3242,77476 -registration(r2000,c26,s590).registration3243,77506 -registration(r2000,c26,s590).registration3243,77506 -registration(r2001,c95,s590).registration3244,77536 -registration(r2001,c95,s590).registration3244,77536 -registration(r2002,c121,s590).registration3245,77566 -registration(r2002,c121,s590).registration3245,77566 -registration(r2003,c34,s591).registration3246,77597 -registration(r2003,c34,s591).registration3246,77597 -registration(r2004,c27,s591).registration3247,77627 -registration(r2004,c27,s591).registration3247,77627 -registration(r2005,c40,s591).registration3248,77657 -registration(r2005,c40,s591).registration3248,77657 -registration(r2006,c33,s591).registration3249,77687 -registration(r2006,c33,s591).registration3249,77687 -registration(r2007,c70,s592).registration3250,77717 -registration(r2007,c70,s592).registration3250,77717 -registration(r2008,c60,s592).registration3251,77747 -registration(r2008,c60,s592).registration3251,77747 -registration(r2009,c76,s592).registration3252,77777 -registration(r2009,c76,s592).registration3252,77777 -registration(r2010,c65,s593).registration3253,77807 -registration(r2010,c65,s593).registration3253,77807 -registration(r2011,c109,s593).registration3254,77837 -registration(r2011,c109,s593).registration3254,77837 -registration(r2012,c121,s593).registration3255,77868 -registration(r2012,c121,s593).registration3255,77868 -registration(r2013,c49,s594).registration3256,77899 -registration(r2013,c49,s594).registration3256,77899 -registration(r2014,c53,s594).registration3257,77929 -registration(r2014,c53,s594).registration3257,77929 -registration(r2015,c103,s594).registration3258,77959 -registration(r2015,c103,s594).registration3258,77959 -registration(r2016,c80,s594).registration3259,77990 -registration(r2016,c80,s594).registration3259,77990 -registration(r2017,c77,s595).registration3260,78020 -registration(r2017,c77,s595).registration3260,78020 -registration(r2018,c36,s595).registration3261,78050 -registration(r2018,c36,s595).registration3261,78050 -registration(r2019,c101,s595).registration3262,78080 -registration(r2019,c101,s595).registration3262,78080 -registration(r2020,c67,s596).registration3263,78111 -registration(r2020,c67,s596).registration3263,78111 -registration(r2021,c99,s596).registration3264,78141 -registration(r2021,c99,s596).registration3264,78141 -registration(r2022,c82,s596).registration3265,78171 -registration(r2022,c82,s596).registration3265,78171 -registration(r2023,c110,s596).registration3266,78201 -registration(r2023,c110,s596).registration3266,78201 -registration(r2024,c100,s597).registration3267,78232 -registration(r2024,c100,s597).registration3267,78232 -registration(r2025,c30,s597).registration3268,78263 -registration(r2025,c30,s597).registration3268,78263 -registration(r2026,c15,s597).registration3269,78293 -registration(r2026,c15,s597).registration3269,78293 -registration(r2027,c76,s598).registration3270,78323 -registration(r2027,c76,s598).registration3270,78323 -registration(r2028,c42,s598).registration3271,78353 -registration(r2028,c42,s598).registration3271,78353 -registration(r2029,c47,s598).registration3272,78383 -registration(r2029,c47,s598).registration3272,78383 -registration(r2030,c29,s599).registration3273,78413 -registration(r2030,c29,s599).registration3273,78413 -registration(r2031,c113,s599).registration3274,78443 -registration(r2031,c113,s599).registration3274,78443 -registration(r2032,c25,s599).registration3275,78474 -registration(r2032,c25,s599).registration3275,78474 -registration(r2033,c36,s599).registration3276,78504 -registration(r2033,c36,s599).registration3276,78504 -registration(r2034,c124,s600).registration3277,78534 -registration(r2034,c124,s600).registration3277,78534 -registration(r2035,c31,s600).registration3278,78565 -registration(r2035,c31,s600).registration3278,78565 -registration(r2036,c93,s600).registration3279,78595 -registration(r2036,c93,s600).registration3279,78595 -registration(r2037,c2,s601).registration3280,78625 -registration(r2037,c2,s601).registration3280,78625 -registration(r2038,c49,s601).registration3281,78654 -registration(r2038,c49,s601).registration3281,78654 -registration(r2039,c102,s601).registration3282,78684 -registration(r2039,c102,s601).registration3282,78684 -registration(r2040,c73,s602).registration3283,78715 -registration(r2040,c73,s602).registration3283,78715 -registration(r2041,c20,s602).registration3284,78745 -registration(r2041,c20,s602).registration3284,78745 -registration(r2042,c50,s602).registration3285,78775 -registration(r2042,c50,s602).registration3285,78775 -registration(r2043,c22,s602).registration3286,78805 -registration(r2043,c22,s602).registration3286,78805 -registration(r2044,c110,s603).registration3287,78835 -registration(r2044,c110,s603).registration3287,78835 -registration(r2045,c18,s603).registration3288,78866 -registration(r2045,c18,s603).registration3288,78866 -registration(r2046,c118,s603).registration3289,78896 -registration(r2046,c118,s603).registration3289,78896 -registration(r2047,c33,s604).registration3290,78927 -registration(r2047,c33,s604).registration3290,78927 -registration(r2048,c3,s604).registration3291,78957 -registration(r2048,c3,s604).registration3291,78957 -registration(r2049,c88,s604).registration3292,78986 -registration(r2049,c88,s604).registration3292,78986 -registration(r2050,c32,s604).registration3293,79016 -registration(r2050,c32,s604).registration3293,79016 -registration(r2051,c40,s605).registration3294,79046 -registration(r2051,c40,s605).registration3294,79046 -registration(r2052,c53,s605).registration3295,79076 -registration(r2052,c53,s605).registration3295,79076 -registration(r2053,c108,s605).registration3296,79106 -registration(r2053,c108,s605).registration3296,79106 -registration(r2054,c11,s606).registration3297,79137 -registration(r2054,c11,s606).registration3297,79137 -registration(r2055,c85,s606).registration3298,79167 -registration(r2055,c85,s606).registration3298,79167 -registration(r2056,c126,s606).registration3299,79197 -registration(r2056,c126,s606).registration3299,79197 -registration(r2057,c47,s607).registration3300,79228 -registration(r2057,c47,s607).registration3300,79228 -registration(r2058,c95,s607).registration3301,79258 -registration(r2058,c95,s607).registration3301,79258 -registration(r2059,c25,s607).registration3302,79288 -registration(r2059,c25,s607).registration3302,79288 -registration(r2060,c46,s608).registration3303,79318 -registration(r2060,c46,s608).registration3303,79318 -registration(r2061,c86,s608).registration3304,79348 -registration(r2061,c86,s608).registration3304,79348 -registration(r2062,c120,s608).registration3305,79378 -registration(r2062,c120,s608).registration3305,79378 -registration(r2063,c103,s609).registration3306,79409 -registration(r2063,c103,s609).registration3306,79409 -registration(r2064,c68,s609).registration3307,79440 -registration(r2064,c68,s609).registration3307,79440 -registration(r2065,c98,s609).registration3308,79470 -registration(r2065,c98,s609).registration3308,79470 -registration(r2066,c4,s610).registration3309,79500 -registration(r2066,c4,s610).registration3309,79500 -registration(r2067,c62,s610).registration3310,79529 -registration(r2067,c62,s610).registration3310,79529 -registration(r2068,c123,s610).registration3311,79559 -registration(r2068,c123,s610).registration3311,79559 -registration(r2069,c93,s610).registration3312,79590 -registration(r2069,c93,s610).registration3312,79590 -registration(r2070,c59,s611).registration3313,79620 -registration(r2070,c59,s611).registration3313,79620 -registration(r2071,c19,s611).registration3314,79650 -registration(r2071,c19,s611).registration3314,79650 -registration(r2072,c49,s611).registration3315,79680 -registration(r2072,c49,s611).registration3315,79680 -registration(r2073,c60,s612).registration3316,79710 -registration(r2073,c60,s612).registration3316,79710 -registration(r2074,c7,s612).registration3317,79740 -registration(r2074,c7,s612).registration3317,79740 -registration(r2075,c68,s612).registration3318,79769 -registration(r2075,c68,s612).registration3318,79769 -registration(r2076,c114,s613).registration3319,79799 -registration(r2076,c114,s613).registration3319,79799 -registration(r2077,c20,s613).registration3320,79830 -registration(r2077,c20,s613).registration3320,79830 -registration(r2078,c121,s613).registration3321,79860 -registration(r2078,c121,s613).registration3321,79860 -registration(r2079,c60,s613).registration3322,79891 -registration(r2079,c60,s613).registration3322,79891 -registration(r2080,c108,s614).registration3323,79921 -registration(r2080,c108,s614).registration3323,79921 -registration(r2081,c53,s614).registration3324,79952 -registration(r2081,c53,s614).registration3324,79952 -registration(r2082,c89,s614).registration3325,79982 -registration(r2082,c89,s614).registration3325,79982 -registration(r2083,c30,s615).registration3326,80012 -registration(r2083,c30,s615).registration3326,80012 -registration(r2084,c60,s615).registration3327,80042 -registration(r2084,c60,s615).registration3327,80042 -registration(r2085,c88,s615).registration3328,80072 -registration(r2085,c88,s615).registration3328,80072 -registration(r2086,c22,s616).registration3329,80102 -registration(r2086,c22,s616).registration3329,80102 -registration(r2087,c62,s616).registration3330,80132 -registration(r2087,c62,s616).registration3330,80132 -registration(r2088,c84,s616).registration3331,80162 -registration(r2088,c84,s616).registration3331,80162 -registration(r2089,c14,s616).registration3332,80192 -registration(r2089,c14,s616).registration3332,80192 -registration(r2090,c7,s617).registration3333,80222 -registration(r2090,c7,s617).registration3333,80222 -registration(r2091,c52,s617).registration3334,80251 -registration(r2091,c52,s617).registration3334,80251 -registration(r2092,c66,s617).registration3335,80281 -registration(r2092,c66,s617).registration3335,80281 -registration(r2093,c73,s618).registration3336,80311 -registration(r2093,c73,s618).registration3336,80311 -registration(r2094,c16,s618).registration3337,80341 -registration(r2094,c16,s618).registration3337,80341 -registration(r2095,c38,s618).registration3338,80371 -registration(r2095,c38,s618).registration3338,80371 -registration(r2096,c58,s618).registration3339,80401 -registration(r2096,c58,s618).registration3339,80401 -registration(r2097,c34,s619).registration3340,80431 -registration(r2097,c34,s619).registration3340,80431 -registration(r2098,c24,s619).registration3341,80461 -registration(r2098,c24,s619).registration3341,80461 -registration(r2099,c119,s619).registration3342,80491 -registration(r2099,c119,s619).registration3342,80491 -registration(r2100,c46,s619).registration3343,80522 -registration(r2100,c46,s619).registration3343,80522 -registration(r2101,c36,s620).registration3344,80552 -registration(r2101,c36,s620).registration3344,80552 -registration(r2102,c95,s620).registration3345,80582 -registration(r2102,c95,s620).registration3345,80582 -registration(r2103,c74,s620).registration3346,80612 -registration(r2103,c74,s620).registration3346,80612 -registration(r2104,c35,s621).registration3347,80642 -registration(r2104,c35,s621).registration3347,80642 -registration(r2105,c4,s621).registration3348,80672 -registration(r2105,c4,s621).registration3348,80672 -registration(r2106,c92,s621).registration3349,80701 -registration(r2106,c92,s621).registration3349,80701 -registration(r2107,c47,s622).registration3350,80731 -registration(r2107,c47,s622).registration3350,80731 -registration(r2108,c45,s622).registration3351,80761 -registration(r2108,c45,s622).registration3351,80761 -registration(r2109,c70,s622).registration3352,80791 -registration(r2109,c70,s622).registration3352,80791 -registration(r2110,c121,s623).registration3353,80821 -registration(r2110,c121,s623).registration3353,80821 -registration(r2111,c127,s623).registration3354,80852 -registration(r2111,c127,s623).registration3354,80852 -registration(r2112,c2,s623).registration3355,80883 -registration(r2112,c2,s623).registration3355,80883 -registration(r2113,c18,s624).registration3356,80912 -registration(r2113,c18,s624).registration3356,80912 -registration(r2114,c15,s624).registration3357,80942 -registration(r2114,c15,s624).registration3357,80942 -registration(r2115,c114,s624).registration3358,80972 -registration(r2115,c114,s624).registration3358,80972 -registration(r2116,c73,s624).registration3359,81003 -registration(r2116,c73,s624).registration3359,81003 -registration(r2117,c47,s624).registration3360,81033 -registration(r2117,c47,s624).registration3360,81033 -registration(r2118,c64,s625).registration3361,81063 -registration(r2118,c64,s625).registration3361,81063 -registration(r2119,c95,s625).registration3362,81093 -registration(r2119,c95,s625).registration3362,81093 -registration(r2120,c51,s625).registration3363,81123 -registration(r2120,c51,s625).registration3363,81123 -registration(r2121,c19,s625).registration3364,81153 -registration(r2121,c19,s625).registration3364,81153 -registration(r2122,c57,s626).registration3365,81183 -registration(r2122,c57,s626).registration3365,81183 -registration(r2123,c70,s626).registration3366,81213 -registration(r2123,c70,s626).registration3366,81213 -registration(r2124,c46,s626).registration3367,81243 -registration(r2124,c46,s626).registration3367,81243 -registration(r2125,c11,s627).registration3368,81273 -registration(r2125,c11,s627).registration3368,81273 -registration(r2126,c23,s627).registration3369,81303 -registration(r2126,c23,s627).registration3369,81303 -registration(r2127,c14,s627).registration3370,81333 -registration(r2127,c14,s627).registration3370,81333 -registration(r2128,c83,s628).registration3371,81363 -registration(r2128,c83,s628).registration3371,81363 -registration(r2129,c121,s628).registration3372,81393 -registration(r2129,c121,s628).registration3372,81393 -registration(r2130,c120,s628).registration3373,81424 -registration(r2130,c120,s628).registration3373,81424 -registration(r2131,c123,s629).registration3374,81455 -registration(r2131,c123,s629).registration3374,81455 -registration(r2132,c54,s629).registration3375,81486 -registration(r2132,c54,s629).registration3375,81486 -registration(r2133,c66,s629).registration3376,81516 -registration(r2133,c66,s629).registration3376,81516 -registration(r2134,c70,s629).registration3377,81546 -registration(r2134,c70,s629).registration3377,81546 -registration(r2135,c35,s630).registration3378,81576 -registration(r2135,c35,s630).registration3378,81576 -registration(r2136,c15,s630).registration3379,81606 -registration(r2136,c15,s630).registration3379,81606 -registration(r2137,c74,s630).registration3380,81636 -registration(r2137,c74,s630).registration3380,81636 -registration(r2138,c41,s631).registration3381,81666 -registration(r2138,c41,s631).registration3381,81666 -registration(r2139,c6,s631).registration3382,81696 -registration(r2139,c6,s631).registration3382,81696 -registration(r2140,c64,s631).registration3383,81725 -registration(r2140,c64,s631).registration3383,81725 -registration(r2141,c121,s632).registration3384,81755 -registration(r2141,c121,s632).registration3384,81755 -registration(r2142,c115,s632).registration3385,81786 -registration(r2142,c115,s632).registration3385,81786 -registration(r2143,c72,s632).registration3386,81817 -registration(r2143,c72,s632).registration3386,81817 -registration(r2144,c84,s633).registration3387,81847 -registration(r2144,c84,s633).registration3387,81847 -registration(r2145,c108,s633).registration3388,81877 -registration(r2145,c108,s633).registration3388,81877 -registration(r2146,c76,s633).registration3389,81908 -registration(r2146,c76,s633).registration3389,81908 -registration(r2147,c47,s633).registration3390,81938 -registration(r2147,c47,s633).registration3390,81938 -registration(r2148,c9,s634).registration3391,81968 -registration(r2148,c9,s634).registration3391,81968 -registration(r2149,c42,s634).registration3392,81997 -registration(r2149,c42,s634).registration3392,81997 -registration(r2150,c110,s634).registration3393,82027 -registration(r2150,c110,s634).registration3393,82027 -registration(r2151,c37,s634).registration3394,82058 -registration(r2151,c37,s634).registration3394,82058 -registration(r2152,c69,s635).registration3395,82088 -registration(r2152,c69,s635).registration3395,82088 -registration(r2153,c50,s635).registration3396,82118 -registration(r2153,c50,s635).registration3396,82118 -registration(r2154,c108,s635).registration3397,82148 -registration(r2154,c108,s635).registration3397,82148 -registration(r2155,c123,s636).registration3398,82179 -registration(r2155,c123,s636).registration3398,82179 -registration(r2156,c68,s636).registration3399,82210 -registration(r2156,c68,s636).registration3399,82210 -registration(r2157,c40,s636).registration3400,82240 -registration(r2157,c40,s636).registration3400,82240 -registration(r2158,c47,s637).registration3401,82270 -registration(r2158,c47,s637).registration3401,82270 -registration(r2159,c11,s637).registration3402,82300 -registration(r2159,c11,s637).registration3402,82300 -registration(r2160,c28,s637).registration3403,82330 -registration(r2160,c28,s637).registration3403,82330 -registration(r2161,c16,s637).registration3404,82360 -registration(r2161,c16,s637).registration3404,82360 -registration(r2162,c18,s638).registration3405,82390 -registration(r2162,c18,s638).registration3405,82390 -registration(r2163,c91,s638).registration3406,82420 -registration(r2163,c91,s638).registration3406,82420 -registration(r2164,c79,s638).registration3407,82450 -registration(r2164,c79,s638).registration3407,82450 -registration(r2165,c28,s639).registration3408,82480 -registration(r2165,c28,s639).registration3408,82480 -registration(r2166,c119,s639).registration3409,82510 -registration(r2166,c119,s639).registration3409,82510 -registration(r2167,c120,s639).registration3410,82541 -registration(r2167,c120,s639).registration3410,82541 -registration(r2168,c33,s639).registration3411,82572 -registration(r2168,c33,s639).registration3411,82572 -registration(r2169,c44,s640).registration3412,82602 -registration(r2169,c44,s640).registration3412,82602 -registration(r2170,c4,s640).registration3413,82632 -registration(r2170,c4,s640).registration3413,82632 -registration(r2171,c71,s640).registration3414,82661 -registration(r2171,c71,s640).registration3414,82661 -registration(r2172,c121,s641).registration3415,82691 -registration(r2172,c121,s641).registration3415,82691 -registration(r2173,c61,s641).registration3416,82722 -registration(r2173,c61,s641).registration3416,82722 -registration(r2174,c68,s641).registration3417,82752 -registration(r2174,c68,s641).registration3417,82752 -registration(r2175,c9,s642).registration3418,82782 -registration(r2175,c9,s642).registration3418,82782 -registration(r2176,c121,s642).registration3419,82811 -registration(r2176,c121,s642).registration3419,82811 -registration(r2177,c6,s642).registration3420,82842 -registration(r2177,c6,s642).registration3420,82842 -registration(r2178,c18,s643).registration3421,82871 -registration(r2178,c18,s643).registration3421,82871 -registration(r2179,c20,s643).registration3422,82901 -registration(r2179,c20,s643).registration3422,82901 -registration(r2180,c114,s643).registration3423,82931 -registration(r2180,c114,s643).registration3423,82931 -registration(r2181,c37,s643).registration3424,82962 -registration(r2181,c37,s643).registration3424,82962 -registration(r2182,c115,s643).registration3425,82992 -registration(r2182,c115,s643).registration3425,82992 -registration(r2183,c115,s644).registration3426,83023 -registration(r2183,c115,s644).registration3426,83023 -registration(r2184,c107,s644).registration3427,83054 -registration(r2184,c107,s644).registration3427,83054 -registration(r2185,c57,s644).registration3428,83085 -registration(r2185,c57,s644).registration3428,83085 -registration(r2186,c99,s644).registration3429,83115 -registration(r2186,c99,s644).registration3429,83115 -registration(r2187,c78,s645).registration3430,83145 -registration(r2187,c78,s645).registration3430,83145 -registration(r2188,c101,s645).registration3431,83175 -registration(r2188,c101,s645).registration3431,83175 -registration(r2189,c83,s645).registration3432,83206 -registration(r2189,c83,s645).registration3432,83206 -registration(r2190,c27,s646).registration3433,83236 -registration(r2190,c27,s646).registration3433,83236 -registration(r2191,c77,s646).registration3434,83266 -registration(r2191,c77,s646).registration3434,83266 -registration(r2192,c51,s646).registration3435,83296 -registration(r2192,c51,s646).registration3435,83296 -registration(r2193,c11,s646).registration3436,83326 -registration(r2193,c11,s646).registration3436,83326 -registration(r2194,c101,s647).registration3437,83356 -registration(r2194,c101,s647).registration3437,83356 -registration(r2195,c68,s647).registration3438,83387 -registration(r2195,c68,s647).registration3438,83387 -registration(r2196,c0,s647).registration3439,83417 -registration(r2196,c0,s647).registration3439,83417 -registration(r2197,c120,s648).registration3440,83446 -registration(r2197,c120,s648).registration3440,83446 -registration(r2198,c7,s648).registration3441,83477 -registration(r2198,c7,s648).registration3441,83477 -registration(r2199,c93,s648).registration3442,83506 -registration(r2199,c93,s648).registration3442,83506 -registration(r2200,c122,s648).registration3443,83536 -registration(r2200,c122,s648).registration3443,83536 -registration(r2201,c47,s649).registration3444,83567 -registration(r2201,c47,s649).registration3444,83567 -registration(r2202,c126,s649).registration3445,83597 -registration(r2202,c126,s649).registration3445,83597 -registration(r2203,c103,s649).registration3446,83628 -registration(r2203,c103,s649).registration3446,83628 -registration(r2204,c34,s650).registration3447,83659 -registration(r2204,c34,s650).registration3447,83659 -registration(r2205,c52,s650).registration3448,83689 -registration(r2205,c52,s650).registration3448,83689 -registration(r2206,c80,s650).registration3449,83719 -registration(r2206,c80,s650).registration3449,83719 -registration(r2207,c54,s650).registration3450,83749 -registration(r2207,c54,s650).registration3450,83749 -registration(r2208,c41,s651).registration3451,83779 -registration(r2208,c41,s651).registration3451,83779 -registration(r2209,c125,s651).registration3452,83809 -registration(r2209,c125,s651).registration3452,83809 -registration(r2210,c30,s651).registration3453,83840 -registration(r2210,c30,s651).registration3453,83840 -registration(r2211,c82,s652).registration3454,83870 -registration(r2211,c82,s652).registration3454,83870 -registration(r2212,c89,s652).registration3455,83900 -registration(r2212,c89,s652).registration3455,83900 -registration(r2213,c86,s652).registration3456,83930 -registration(r2213,c86,s652).registration3456,83930 -registration(r2214,c27,s653).registration3457,83960 -registration(r2214,c27,s653).registration3457,83960 -registration(r2215,c76,s653).registration3458,83990 -registration(r2215,c76,s653).registration3458,83990 -registration(r2216,c30,s653).registration3459,84020 -registration(r2216,c30,s653).registration3459,84020 -registration(r2217,c37,s654).registration3460,84050 -registration(r2217,c37,s654).registration3460,84050 -registration(r2218,c68,s654).registration3461,84080 -registration(r2218,c68,s654).registration3461,84080 -registration(r2219,c80,s654).registration3462,84110 -registration(r2219,c80,s654).registration3462,84110 -registration(r2220,c0,s655).registration3463,84140 -registration(r2220,c0,s655).registration3463,84140 -registration(r2221,c31,s655).registration3464,84169 -registration(r2221,c31,s655).registration3464,84169 -registration(r2222,c34,s655).registration3465,84199 -registration(r2222,c34,s655).registration3465,84199 -registration(r2223,c68,s655).registration3466,84229 -registration(r2223,c68,s655).registration3466,84229 -registration(r2224,c87,s656).registration3467,84259 -registration(r2224,c87,s656).registration3467,84259 -registration(r2225,c89,s656).registration3468,84289 -registration(r2225,c89,s656).registration3468,84289 -registration(r2226,c23,s656).registration3469,84319 -registration(r2226,c23,s656).registration3469,84319 -registration(r2227,c64,s656).registration3470,84349 -registration(r2227,c64,s656).registration3470,84349 -registration(r2228,c87,s657).registration3471,84379 -registration(r2228,c87,s657).registration3471,84379 -registration(r2229,c45,s657).registration3472,84409 -registration(r2229,c45,s657).registration3472,84409 -registration(r2230,c5,s657).registration3473,84439 -registration(r2230,c5,s657).registration3473,84439 -registration(r2231,c94,s657).registration3474,84468 -registration(r2231,c94,s657).registration3474,84468 -registration(r2232,c121,s658).registration3475,84498 -registration(r2232,c121,s658).registration3475,84498 -registration(r2233,c75,s658).registration3476,84529 -registration(r2233,c75,s658).registration3476,84529 -registration(r2234,c28,s658).registration3477,84559 -registration(r2234,c28,s658).registration3477,84559 -registration(r2235,c23,s658).registration3478,84589 -registration(r2235,c23,s658).registration3478,84589 -registration(r2236,c123,s659).registration3479,84619 -registration(r2236,c123,s659).registration3479,84619 -registration(r2237,c91,s659).registration3480,84650 -registration(r2237,c91,s659).registration3480,84650 -registration(r2238,c96,s659).registration3481,84680 -registration(r2238,c96,s659).registration3481,84680 -registration(r2239,c0,s660).registration3482,84710 -registration(r2239,c0,s660).registration3482,84710 -registration(r2240,c121,s660).registration3483,84739 -registration(r2240,c121,s660).registration3483,84739 -registration(r2241,c44,s660).registration3484,84770 -registration(r2241,c44,s660).registration3484,84770 -registration(r2242,c80,s661).registration3485,84800 -registration(r2242,c80,s661).registration3485,84800 -registration(r2243,c39,s661).registration3486,84830 -registration(r2243,c39,s661).registration3486,84830 -registration(r2244,c94,s661).registration3487,84860 -registration(r2244,c94,s661).registration3487,84860 -registration(r2245,c117,s661).registration3488,84890 -registration(r2245,c117,s661).registration3488,84890 -registration(r2246,c1,s662).registration3489,84921 -registration(r2246,c1,s662).registration3489,84921 -registration(r2247,c17,s662).registration3490,84950 -registration(r2247,c17,s662).registration3490,84950 -registration(r2248,c55,s662).registration3491,84980 -registration(r2248,c55,s662).registration3491,84980 -registration(r2249,c59,s663).registration3492,85010 -registration(r2249,c59,s663).registration3492,85010 -registration(r2250,c124,s663).registration3493,85040 -registration(r2250,c124,s663).registration3493,85040 -registration(r2251,c63,s663).registration3494,85071 -registration(r2251,c63,s663).registration3494,85071 -registration(r2252,c12,s664).registration3495,85101 -registration(r2252,c12,s664).registration3495,85101 -registration(r2253,c55,s664).registration3496,85131 -registration(r2253,c55,s664).registration3496,85131 -registration(r2254,c10,s664).registration3497,85161 -registration(r2254,c10,s664).registration3497,85161 -registration(r2255,c6,s665).registration3498,85191 -registration(r2255,c6,s665).registration3498,85191 -registration(r2256,c127,s665).registration3499,85220 -registration(r2256,c127,s665).registration3499,85220 -registration(r2257,c81,s665).registration3500,85251 -registration(r2257,c81,s665).registration3500,85251 -registration(r2258,c82,s666).registration3501,85281 -registration(r2258,c82,s666).registration3501,85281 -registration(r2259,c63,s666).registration3502,85311 -registration(r2259,c63,s666).registration3502,85311 -registration(r2260,c89,s666).registration3503,85341 -registration(r2260,c89,s666).registration3503,85341 -registration(r2261,c40,s667).registration3504,85371 -registration(r2261,c40,s667).registration3504,85371 -registration(r2262,c24,s667).registration3505,85401 -registration(r2262,c24,s667).registration3505,85401 -registration(r2263,c56,s667).registration3506,85431 -registration(r2263,c56,s667).registration3506,85431 -registration(r2264,c45,s668).registration3507,85461 -registration(r2264,c45,s668).registration3507,85461 -registration(r2265,c81,s668).registration3508,85491 -registration(r2265,c81,s668).registration3508,85491 -registration(r2266,c42,s668).registration3509,85521 -registration(r2266,c42,s668).registration3509,85521 -registration(r2267,c106,s669).registration3510,85551 -registration(r2267,c106,s669).registration3510,85551 -registration(r2268,c31,s669).registration3511,85582 -registration(r2268,c31,s669).registration3511,85582 -registration(r2269,c39,s669).registration3512,85612 -registration(r2269,c39,s669).registration3512,85612 -registration(r2270,c29,s670).registration3513,85642 -registration(r2270,c29,s670).registration3513,85642 -registration(r2271,c54,s670).registration3514,85672 -registration(r2271,c54,s670).registration3514,85672 -registration(r2272,c113,s670).registration3515,85702 -registration(r2272,c113,s670).registration3515,85702 -registration(r2273,c98,s671).registration3516,85733 -registration(r2273,c98,s671).registration3516,85733 -registration(r2274,c46,s671).registration3517,85763 -registration(r2274,c46,s671).registration3517,85763 -registration(r2275,c89,s671).registration3518,85793 -registration(r2275,c89,s671).registration3518,85793 -registration(r2276,c5,s672).registration3519,85823 -registration(r2276,c5,s672).registration3519,85823 -registration(r2277,c8,s672).registration3520,85852 -registration(r2277,c8,s672).registration3520,85852 -registration(r2278,c54,s672).registration3521,85881 -registration(r2278,c54,s672).registration3521,85881 -registration(r2279,c15,s673).registration3522,85911 -registration(r2279,c15,s673).registration3522,85911 -registration(r2280,c6,s673).registration3523,85941 -registration(r2280,c6,s673).registration3523,85941 -registration(r2281,c18,s673).registration3524,85970 -registration(r2281,c18,s673).registration3524,85970 -registration(r2282,c43,s674).registration3525,86000 -registration(r2282,c43,s674).registration3525,86000 -registration(r2283,c116,s674).registration3526,86030 -registration(r2283,c116,s674).registration3526,86030 -registration(r2284,c40,s674).registration3527,86061 -registration(r2284,c40,s674).registration3527,86061 -registration(r2285,c83,s675).registration3528,86091 -registration(r2285,c83,s675).registration3528,86091 -registration(r2286,c64,s675).registration3529,86121 -registration(r2286,c64,s675).registration3529,86121 -registration(r2287,c121,s675).registration3530,86151 -registration(r2287,c121,s675).registration3530,86151 -registration(r2288,c51,s676).registration3531,86182 -registration(r2288,c51,s676).registration3531,86182 -registration(r2289,c24,s676).registration3532,86212 -registration(r2289,c24,s676).registration3532,86212 -registration(r2290,c33,s676).registration3533,86242 -registration(r2290,c33,s676).registration3533,86242 -registration(r2291,c123,s677).registration3534,86272 -registration(r2291,c123,s677).registration3534,86272 -registration(r2292,c6,s677).registration3535,86303 -registration(r2292,c6,s677).registration3535,86303 -registration(r2293,c111,s677).registration3536,86332 -registration(r2293,c111,s677).registration3536,86332 -registration(r2294,c101,s678).registration3537,86363 -registration(r2294,c101,s678).registration3537,86363 -registration(r2295,c90,s678).registration3538,86394 -registration(r2295,c90,s678).registration3538,86394 -registration(r2296,c65,s678).registration3539,86424 -registration(r2296,c65,s678).registration3539,86424 -registration(r2297,c58,s679).registration3540,86454 -registration(r2297,c58,s679).registration3540,86454 -registration(r2298,c42,s679).registration3541,86484 -registration(r2298,c42,s679).registration3541,86484 -registration(r2299,c65,s679).registration3542,86514 -registration(r2299,c65,s679).registration3542,86514 -registration(r2300,c23,s680).registration3543,86544 -registration(r2300,c23,s680).registration3543,86544 -registration(r2301,c119,s680).registration3544,86574 -registration(r2301,c119,s680).registration3544,86574 -registration(r2302,c102,s680).registration3545,86605 -registration(r2302,c102,s680).registration3545,86605 -registration(r2303,c64,s681).registration3546,86636 -registration(r2303,c64,s681).registration3546,86636 -registration(r2304,c19,s681).registration3547,86666 -registration(r2304,c19,s681).registration3547,86666 -registration(r2305,c15,s681).registration3548,86696 -registration(r2305,c15,s681).registration3548,86696 -registration(r2306,c122,s681).registration3549,86726 -registration(r2306,c122,s681).registration3549,86726 -registration(r2307,c108,s682).registration3550,86757 -registration(r2307,c108,s682).registration3550,86757 -registration(r2308,c40,s682).registration3551,86788 -registration(r2308,c40,s682).registration3551,86788 -registration(r2309,c27,s682).registration3552,86818 -registration(r2309,c27,s682).registration3552,86818 -registration(r2310,c105,s682).registration3553,86848 -registration(r2310,c105,s682).registration3553,86848 -registration(r2311,c22,s682).registration3554,86879 -registration(r2311,c22,s682).registration3554,86879 -registration(r2312,c90,s683).registration3555,86909 -registration(r2312,c90,s683).registration3555,86909 -registration(r2313,c108,s683).registration3556,86939 -registration(r2313,c108,s683).registration3556,86939 -registration(r2314,c81,s683).registration3557,86970 -registration(r2314,c81,s683).registration3557,86970 -registration(r2315,c21,s684).registration3558,87000 -registration(r2315,c21,s684).registration3558,87000 -registration(r2316,c91,s684).registration3559,87030 -registration(r2316,c91,s684).registration3559,87030 -registration(r2317,c1,s684).registration3560,87060 -registration(r2317,c1,s684).registration3560,87060 -registration(r2318,c66,s684).registration3561,87089 -registration(r2318,c66,s684).registration3561,87089 -registration(r2319,c27,s685).registration3562,87119 -registration(r2319,c27,s685).registration3562,87119 -registration(r2320,c119,s685).registration3563,87149 -registration(r2320,c119,s685).registration3563,87149 -registration(r2321,c89,s685).registration3564,87180 -registration(r2321,c89,s685).registration3564,87180 -registration(r2322,c94,s685).registration3565,87210 -registration(r2322,c94,s685).registration3565,87210 -registration(r2323,c97,s686).registration3566,87240 -registration(r2323,c97,s686).registration3566,87240 -registration(r2324,c30,s686).registration3567,87270 -registration(r2324,c30,s686).registration3567,87270 -registration(r2325,c46,s686).registration3568,87300 -registration(r2325,c46,s686).registration3568,87300 -registration(r2326,c61,s687).registration3569,87330 -registration(r2326,c61,s687).registration3569,87330 -registration(r2327,c108,s687).registration3570,87360 -registration(r2327,c108,s687).registration3570,87360 -registration(r2328,c68,s687).registration3571,87391 -registration(r2328,c68,s687).registration3571,87391 -registration(r2329,c85,s687).registration3572,87421 -registration(r2329,c85,s687).registration3572,87421 -registration(r2330,c79,s688).registration3573,87451 -registration(r2330,c79,s688).registration3573,87451 -registration(r2331,c31,s688).registration3574,87481 -registration(r2331,c31,s688).registration3574,87481 -registration(r2332,c108,s688).registration3575,87511 -registration(r2332,c108,s688).registration3575,87511 -registration(r2333,c62,s688).registration3576,87542 -registration(r2333,c62,s688).registration3576,87542 -registration(r2334,c105,s689).registration3577,87572 -registration(r2334,c105,s689).registration3577,87572 -registration(r2335,c83,s689).registration3578,87603 -registration(r2335,c83,s689).registration3578,87603 -registration(r2336,c84,s689).registration3579,87633 -registration(r2336,c84,s689).registration3579,87633 -registration(r2337,c37,s690).registration3580,87663 -registration(r2337,c37,s690).registration3580,87663 -registration(r2338,c74,s690).registration3581,87693 -registration(r2338,c74,s690).registration3581,87693 -registration(r2339,c23,s690).registration3582,87723 -registration(r2339,c23,s690).registration3582,87723 -registration(r2340,c113,s691).registration3583,87753 -registration(r2340,c113,s691).registration3583,87753 -registration(r2341,c83,s691).registration3584,87784 -registration(r2341,c83,s691).registration3584,87784 -registration(r2342,c32,s691).registration3585,87814 -registration(r2342,c32,s691).registration3585,87814 -registration(r2343,c53,s691).registration3586,87844 -registration(r2343,c53,s691).registration3586,87844 -registration(r2344,c57,s692).registration3587,87874 -registration(r2344,c57,s692).registration3587,87874 -registration(r2345,c38,s692).registration3588,87904 -registration(r2345,c38,s692).registration3588,87904 -registration(r2346,c22,s692).registration3589,87934 -registration(r2346,c22,s692).registration3589,87934 -registration(r2347,c92,s692).registration3590,87964 -registration(r2347,c92,s692).registration3590,87964 -registration(r2348,c92,s693).registration3591,87994 -registration(r2348,c92,s693).registration3591,87994 -registration(r2349,c26,s693).registration3592,88024 -registration(r2349,c26,s693).registration3592,88024 -registration(r2350,c48,s693).registration3593,88054 -registration(r2350,c48,s693).registration3593,88054 -registration(r2351,c29,s694).registration3594,88084 -registration(r2351,c29,s694).registration3594,88084 -registration(r2352,c86,s694).registration3595,88114 -registration(r2352,c86,s694).registration3595,88114 -registration(r2353,c70,s694).registration3596,88144 -registration(r2353,c70,s694).registration3596,88144 -registration(r2354,c26,s695).registration3597,88174 -registration(r2354,c26,s695).registration3597,88174 -registration(r2355,c50,s695).registration3598,88204 -registration(r2355,c50,s695).registration3598,88204 -registration(r2356,c4,s695).registration3599,88234 -registration(r2356,c4,s695).registration3599,88234 -registration(r2357,c78,s696).registration3600,88263 -registration(r2357,c78,s696).registration3600,88263 -registration(r2358,c7,s696).registration3601,88293 -registration(r2358,c7,s696).registration3601,88293 -registration(r2359,c24,s696).registration3602,88322 -registration(r2359,c24,s696).registration3602,88322 -registration(r2360,c121,s696).registration3603,88352 -registration(r2360,c121,s696).registration3603,88352 -registration(r2361,c49,s697).registration3604,88383 -registration(r2361,c49,s697).registration3604,88383 -registration(r2362,c4,s697).registration3605,88413 -registration(r2362,c4,s697).registration3605,88413 -registration(r2363,c34,s697).registration3606,88442 -registration(r2363,c34,s697).registration3606,88442 -registration(r2364,c72,s698).registration3607,88472 -registration(r2364,c72,s698).registration3607,88472 -registration(r2365,c7,s698).registration3608,88502 -registration(r2365,c7,s698).registration3608,88502 -registration(r2366,c52,s698).registration3609,88531 -registration(r2366,c52,s698).registration3609,88531 -registration(r2367,c16,s699).registration3610,88561 -registration(r2367,c16,s699).registration3610,88561 -registration(r2368,c117,s699).registration3611,88591 -registration(r2368,c117,s699).registration3611,88591 -registration(r2369,c21,s699).registration3612,88622 -registration(r2369,c21,s699).registration3612,88622 -registration(r2370,c49,s700).registration3613,88652 -registration(r2370,c49,s700).registration3613,88652 -registration(r2371,c18,s700).registration3614,88682 -registration(r2371,c18,s700).registration3614,88682 -registration(r2372,c118,s700).registration3615,88712 -registration(r2372,c118,s700).registration3615,88712 -registration(r2373,c82,s700).registration3616,88743 -registration(r2373,c82,s700).registration3616,88743 -registration(r2374,c64,s700).registration3617,88773 -registration(r2374,c64,s700).registration3617,88773 -registration(r2375,c86,s701).registration3618,88803 -registration(r2375,c86,s701).registration3618,88803 -registration(r2376,c1,s701).registration3619,88833 -registration(r2376,c1,s701).registration3619,88833 -registration(r2377,c23,s701).registration3620,88862 -registration(r2377,c23,s701).registration3620,88862 -registration(r2378,c47,s701).registration3621,88892 -registration(r2378,c47,s701).registration3621,88892 -registration(r2379,c53,s702).registration3622,88922 -registration(r2379,c53,s702).registration3622,88922 -registration(r2380,c2,s702).registration3623,88952 -registration(r2380,c2,s702).registration3623,88952 -registration(r2381,c27,s702).registration3624,88981 -registration(r2381,c27,s702).registration3624,88981 -registration(r2382,c62,s702).registration3625,89011 -registration(r2382,c62,s702).registration3625,89011 -registration(r2383,c87,s703).registration3626,89041 -registration(r2383,c87,s703).registration3626,89041 -registration(r2384,c67,s703).registration3627,89071 -registration(r2384,c67,s703).registration3627,89071 -registration(r2385,c4,s703).registration3628,89101 -registration(r2385,c4,s703).registration3628,89101 -registration(r2386,c96,s704).registration3629,89130 -registration(r2386,c96,s704).registration3629,89130 -registration(r2387,c66,s704).registration3630,89160 -registration(r2387,c66,s704).registration3630,89160 -registration(r2388,c8,s704).registration3631,89190 -registration(r2388,c8,s704).registration3631,89190 -registration(r2389,c68,s705).registration3632,89219 -registration(r2389,c68,s705).registration3632,89219 -registration(r2390,c5,s705).registration3633,89249 -registration(r2390,c5,s705).registration3633,89249 -registration(r2391,c10,s705).registration3634,89278 -registration(r2391,c10,s705).registration3634,89278 -registration(r2392,c23,s706).registration3635,89308 -registration(r2392,c23,s706).registration3635,89308 -registration(r2393,c41,s706).registration3636,89338 -registration(r2393,c41,s706).registration3636,89338 -registration(r2394,c13,s706).registration3637,89368 -registration(r2394,c13,s706).registration3637,89368 -registration(r2395,c15,s707).registration3638,89398 -registration(r2395,c15,s707).registration3638,89398 -registration(r2396,c111,s707).registration3639,89428 -registration(r2396,c111,s707).registration3639,89428 -registration(r2397,c36,s707).registration3640,89459 -registration(r2397,c36,s707).registration3640,89459 -registration(r2398,c30,s707).registration3641,89489 -registration(r2398,c30,s707).registration3641,89489 -registration(r2399,c28,s708).registration3642,89519 -registration(r2399,c28,s708).registration3642,89519 -registration(r2400,c57,s708).registration3643,89549 -registration(r2400,c57,s708).registration3643,89549 -registration(r2401,c65,s708).registration3644,89579 -registration(r2401,c65,s708).registration3644,89579 -registration(r2402,c24,s709).registration3645,89609 -registration(r2402,c24,s709).registration3645,89609 -registration(r2403,c103,s709).registration3646,89639 -registration(r2403,c103,s709).registration3646,89639 -registration(r2404,c122,s709).registration3647,89670 -registration(r2404,c122,s709).registration3647,89670 -registration(r2405,c90,s710).registration3648,89701 -registration(r2405,c90,s710).registration3648,89701 -registration(r2406,c59,s710).registration3649,89731 -registration(r2406,c59,s710).registration3649,89731 -registration(r2407,c103,s710).registration3650,89761 -registration(r2407,c103,s710).registration3650,89761 -registration(r2408,c42,s710).registration3651,89792 -registration(r2408,c42,s710).registration3651,89792 -registration(r2409,c54,s711).registration3652,89822 -registration(r2409,c54,s711).registration3652,89822 -registration(r2410,c28,s711).registration3653,89852 -registration(r2410,c28,s711).registration3653,89852 -registration(r2411,c3,s711).registration3654,89882 -registration(r2411,c3,s711).registration3654,89882 -registration(r2412,c44,s712).registration3655,89911 -registration(r2412,c44,s712).registration3655,89911 -registration(r2413,c64,s712).registration3656,89941 -registration(r2413,c64,s712).registration3656,89941 -registration(r2414,c12,s712).registration3657,89971 -registration(r2414,c12,s712).registration3657,89971 -registration(r2415,c124,s713).registration3658,90001 -registration(r2415,c124,s713).registration3658,90001 -registration(r2416,c79,s713).registration3659,90032 -registration(r2416,c79,s713).registration3659,90032 -registration(r2417,c104,s713).registration3660,90062 -registration(r2417,c104,s713).registration3660,90062 -registration(r2418,c5,s714).registration3661,90093 -registration(r2418,c5,s714).registration3661,90093 -registration(r2419,c83,s714).registration3662,90122 -registration(r2419,c83,s714).registration3662,90122 -registration(r2420,c106,s714).registration3663,90152 -registration(r2420,c106,s714).registration3663,90152 -registration(r2421,c3,s715).registration3664,90183 -registration(r2421,c3,s715).registration3664,90183 -registration(r2422,c15,s715).registration3665,90212 -registration(r2422,c15,s715).registration3665,90212 -registration(r2423,c69,s715).registration3666,90242 -registration(r2423,c69,s715).registration3666,90242 -registration(r2424,c31,s716).registration3667,90272 -registration(r2424,c31,s716).registration3667,90272 -registration(r2425,c56,s716).registration3668,90302 -registration(r2425,c56,s716).registration3668,90302 -registration(r2426,c85,s716).registration3669,90332 -registration(r2426,c85,s716).registration3669,90332 -registration(r2427,c0,s717).registration3670,90362 -registration(r2427,c0,s717).registration3670,90362 -registration(r2428,c6,s717).registration3671,90391 -registration(r2428,c6,s717).registration3671,90391 -registration(r2429,c104,s717).registration3672,90420 -registration(r2429,c104,s717).registration3672,90420 -registration(r2430,c57,s717).registration3673,90451 -registration(r2430,c57,s717).registration3673,90451 -registration(r2431,c48,s718).registration3674,90481 -registration(r2431,c48,s718).registration3674,90481 -registration(r2432,c121,s718).registration3675,90511 -registration(r2432,c121,s718).registration3675,90511 -registration(r2433,c41,s718).registration3676,90542 -registration(r2433,c41,s718).registration3676,90542 -registration(r2434,c37,s719).registration3677,90572 -registration(r2434,c37,s719).registration3677,90572 -registration(r2435,c44,s719).registration3678,90602 -registration(r2435,c44,s719).registration3678,90602 -registration(r2436,c51,s719).registration3679,90632 -registration(r2436,c51,s719).registration3679,90632 -registration(r2437,c55,s720).registration3680,90662 -registration(r2437,c55,s720).registration3680,90662 -registration(r2438,c19,s720).registration3681,90692 -registration(r2438,c19,s720).registration3681,90692 -registration(r2439,c65,s720).registration3682,90722 -registration(r2439,c65,s720).registration3682,90722 -registration(r2440,c67,s721).registration3683,90752 -registration(r2440,c67,s721).registration3683,90752 -registration(r2441,c111,s721).registration3684,90782 -registration(r2441,c111,s721).registration3684,90782 -registration(r2442,c32,s721).registration3685,90813 -registration(r2442,c32,s721).registration3685,90813 -registration(r2443,c63,s722).registration3686,90843 -registration(r2443,c63,s722).registration3686,90843 -registration(r2444,c118,s722).registration3687,90873 -registration(r2444,c118,s722).registration3687,90873 -registration(r2445,c49,s722).registration3688,90904 -registration(r2445,c49,s722).registration3688,90904 -registration(r2446,c66,s722).registration3689,90934 -registration(r2446,c66,s722).registration3689,90934 -registration(r2447,c21,s723).registration3690,90964 -registration(r2447,c21,s723).registration3690,90964 -registration(r2448,c43,s723).registration3691,90994 -registration(r2448,c43,s723).registration3691,90994 -registration(r2449,c55,s723).registration3692,91024 -registration(r2449,c55,s723).registration3692,91024 -registration(r2450,c103,s724).registration3693,91054 -registration(r2450,c103,s724).registration3693,91054 -registration(r2451,c70,s724).registration3694,91085 -registration(r2451,c70,s724).registration3694,91085 -registration(r2452,c113,s724).registration3695,91115 -registration(r2452,c113,s724).registration3695,91115 -registration(r2453,c22,s724).registration3696,91146 -registration(r2453,c22,s724).registration3696,91146 -registration(r2454,c110,s725).registration3697,91176 -registration(r2454,c110,s725).registration3697,91176 -registration(r2455,c66,s725).registration3698,91207 -registration(r2455,c66,s725).registration3698,91207 -registration(r2456,c87,s725).registration3699,91237 -registration(r2456,c87,s725).registration3699,91237 -registration(r2457,c107,s726).registration3700,91267 -registration(r2457,c107,s726).registration3700,91267 -registration(r2458,c4,s726).registration3701,91298 -registration(r2458,c4,s726).registration3701,91298 -registration(r2459,c90,s726).registration3702,91327 -registration(r2459,c90,s726).registration3702,91327 -registration(r2460,c74,s727).registration3703,91357 -registration(r2460,c74,s727).registration3703,91357 -registration(r2461,c104,s727).registration3704,91387 -registration(r2461,c104,s727).registration3704,91387 -registration(r2462,c7,s727).registration3705,91418 -registration(r2462,c7,s727).registration3705,91418 -registration(r2463,c126,s728).registration3706,91447 -registration(r2463,c126,s728).registration3706,91447 -registration(r2464,c88,s728).registration3707,91478 -registration(r2464,c88,s728).registration3707,91478 -registration(r2465,c55,s728).registration3708,91508 -registration(r2465,c55,s728).registration3708,91508 -registration(r2466,c76,s728).registration3709,91538 -registration(r2466,c76,s728).registration3709,91538 -registration(r2467,c106,s729).registration3710,91568 -registration(r2467,c106,s729).registration3710,91568 -registration(r2468,c65,s729).registration3711,91599 -registration(r2468,c65,s729).registration3711,91599 -registration(r2469,c27,s729).registration3712,91629 -registration(r2469,c27,s729).registration3712,91629 -registration(r2470,c98,s730).registration3713,91659 -registration(r2470,c98,s730).registration3713,91659 -registration(r2471,c35,s730).registration3714,91689 -registration(r2471,c35,s730).registration3714,91689 -registration(r2472,c108,s730).registration3715,91719 -registration(r2472,c108,s730).registration3715,91719 -registration(r2473,c91,s731).registration3716,91750 -registration(r2473,c91,s731).registration3716,91750 -registration(r2474,c54,s731).registration3717,91780 -registration(r2474,c54,s731).registration3717,91780 -registration(r2475,c18,s731).registration3718,91810 -registration(r2475,c18,s731).registration3718,91810 -registration(r2476,c125,s732).registration3719,91840 -registration(r2476,c125,s732).registration3719,91840 -registration(r2477,c35,s732).registration3720,91871 -registration(r2477,c35,s732).registration3720,91871 -registration(r2478,c12,s732).registration3721,91901 -registration(r2478,c12,s732).registration3721,91901 -registration(r2479,c86,s733).registration3722,91931 -registration(r2479,c86,s733).registration3722,91931 -registration(r2480,c45,s733).registration3723,91961 -registration(r2480,c45,s733).registration3723,91961 -registration(r2481,c115,s733).registration3724,91991 -registration(r2481,c115,s733).registration3724,91991 -registration(r2482,c113,s734).registration3725,92022 -registration(r2482,c113,s734).registration3725,92022 -registration(r2483,c85,s734).registration3726,92053 -registration(r2483,c85,s734).registration3726,92053 -registration(r2484,c13,s734).registration3727,92083 -registration(r2484,c13,s734).registration3727,92083 -registration(r2485,c91,s735).registration3728,92113 -registration(r2485,c91,s735).registration3728,92113 -registration(r2486,c28,s735).registration3729,92143 -registration(r2486,c28,s735).registration3729,92143 -registration(r2487,c36,s735).registration3730,92173 -registration(r2487,c36,s735).registration3730,92173 -registration(r2488,c77,s736).registration3731,92203 -registration(r2488,c77,s736).registration3731,92203 -registration(r2489,c90,s736).registration3732,92233 -registration(r2489,c90,s736).registration3732,92233 -registration(r2490,c114,s736).registration3733,92263 -registration(r2490,c114,s736).registration3733,92263 -registration(r2491,c45,s737).registration3734,92294 -registration(r2491,c45,s737).registration3734,92294 -registration(r2492,c20,s737).registration3735,92324 -registration(r2492,c20,s737).registration3735,92324 -registration(r2493,c4,s737).registration3736,92354 -registration(r2493,c4,s737).registration3736,92354 -registration(r2494,c53,s738).registration3737,92383 -registration(r2494,c53,s738).registration3737,92383 -registration(r2495,c61,s738).registration3738,92413 -registration(r2495,c61,s738).registration3738,92413 -registration(r2496,c89,s738).registration3739,92443 -registration(r2496,c89,s738).registration3739,92443 -registration(r2497,c69,s738).registration3740,92473 -registration(r2497,c69,s738).registration3740,92473 -registration(r2498,c25,s739).registration3741,92503 -registration(r2498,c25,s739).registration3741,92503 -registration(r2499,c48,s739).registration3742,92533 -registration(r2499,c48,s739).registration3742,92533 -registration(r2500,c57,s739).registration3743,92563 -registration(r2500,c57,s739).registration3743,92563 -registration(r2501,c6,s739).registration3744,92593 -registration(r2501,c6,s739).registration3744,92593 -registration(r2502,c109,s740).registration3745,92622 -registration(r2502,c109,s740).registration3745,92622 -registration(r2503,c20,s740).registration3746,92653 -registration(r2503,c20,s740).registration3746,92653 -registration(r2504,c91,s740).registration3747,92683 -registration(r2504,c91,s740).registration3747,92683 -registration(r2505,c120,s741).registration3748,92713 -registration(r2505,c120,s741).registration3748,92713 -registration(r2506,c115,s741).registration3749,92744 -registration(r2506,c115,s741).registration3749,92744 -registration(r2507,c101,s741).registration3750,92775 -registration(r2507,c101,s741).registration3750,92775 -registration(r2508,c64,s742).registration3751,92806 -registration(r2508,c64,s742).registration3751,92806 -registration(r2509,c57,s742).registration3752,92836 -registration(r2509,c57,s742).registration3752,92836 -registration(r2510,c123,s742).registration3753,92866 -registration(r2510,c123,s742).registration3753,92866 -registration(r2511,c102,s742).registration3754,92897 -registration(r2511,c102,s742).registration3754,92897 -registration(r2512,c17,s742).registration3755,92928 -registration(r2512,c17,s742).registration3755,92928 -registration(r2513,c38,s743).registration3756,92958 -registration(r2513,c38,s743).registration3756,92958 -registration(r2514,c69,s743).registration3757,92988 -registration(r2514,c69,s743).registration3757,92988 -registration(r2515,c72,s743).registration3758,93018 -registration(r2515,c72,s743).registration3758,93018 -registration(r2516,c10,s744).registration3759,93048 -registration(r2516,c10,s744).registration3759,93048 -registration(r2517,c102,s744).registration3760,93078 -registration(r2517,c102,s744).registration3760,93078 -registration(r2518,c98,s744).registration3761,93109 -registration(r2518,c98,s744).registration3761,93109 -registration(r2519,c28,s744).registration3762,93139 -registration(r2519,c28,s744).registration3762,93139 -registration(r2520,c58,s745).registration3763,93169 -registration(r2520,c58,s745).registration3763,93169 -registration(r2521,c28,s745).registration3764,93199 -registration(r2521,c28,s745).registration3764,93199 -registration(r2522,c71,s745).registration3765,93229 -registration(r2522,c71,s745).registration3765,93229 -registration(r2523,c34,s746).registration3766,93259 -registration(r2523,c34,s746).registration3766,93259 -registration(r2524,c119,s746).registration3767,93289 -registration(r2524,c119,s746).registration3767,93289 -registration(r2525,c32,s746).registration3768,93320 -registration(r2525,c32,s746).registration3768,93320 -registration(r2526,c7,s747).registration3769,93350 -registration(r2526,c7,s747).registration3769,93350 -registration(r2527,c98,s747).registration3770,93379 -registration(r2527,c98,s747).registration3770,93379 -registration(r2528,c45,s747).registration3771,93409 -registration(r2528,c45,s747).registration3771,93409 -registration(r2529,c41,s748).registration3772,93439 -registration(r2529,c41,s748).registration3772,93439 -registration(r2530,c86,s748).registration3773,93469 -registration(r2530,c86,s748).registration3773,93469 -registration(r2531,c2,s748).registration3774,93499 -registration(r2531,c2,s748).registration3774,93499 -registration(r2532,c41,s749).registration3775,93528 -registration(r2532,c41,s749).registration3775,93528 -registration(r2533,c127,s749).registration3776,93558 -registration(r2533,c127,s749).registration3776,93558 -registration(r2534,c49,s749).registration3777,93589 -registration(r2534,c49,s749).registration3777,93589 -registration(r2535,c29,s749).registration3778,93619 -registration(r2535,c29,s749).registration3778,93619 -registration(r2536,c114,s750).registration3779,93649 -registration(r2536,c114,s750).registration3779,93649 -registration(r2537,c1,s750).registration3780,93680 -registration(r2537,c1,s750).registration3780,93680 -registration(r2538,c94,s750).registration3781,93709 -registration(r2538,c94,s750).registration3781,93709 -registration(r2539,c29,s750).registration3782,93739 -registration(r2539,c29,s750).registration3782,93739 -registration(r2540,c37,s751).registration3783,93769 -registration(r2540,c37,s751).registration3783,93769 -registration(r2541,c99,s751).registration3784,93799 -registration(r2541,c99,s751).registration3784,93799 -registration(r2542,c65,s751).registration3785,93829 -registration(r2542,c65,s751).registration3785,93829 -registration(r2543,c57,s751).registration3786,93859 -registration(r2543,c57,s751).registration3786,93859 -registration(r2544,c119,s752).registration3787,93889 -registration(r2544,c119,s752).registration3787,93889 -registration(r2545,c32,s752).registration3788,93920 -registration(r2545,c32,s752).registration3788,93920 -registration(r2546,c37,s752).registration3789,93950 -registration(r2546,c37,s752).registration3789,93950 -registration(r2547,c82,s752).registration3790,93980 -registration(r2547,c82,s752).registration3790,93980 -registration(r2548,c70,s753).registration3791,94010 -registration(r2548,c70,s753).registration3791,94010 -registration(r2549,c30,s753).registration3792,94040 -registration(r2549,c30,s753).registration3792,94040 -registration(r2550,c124,s753).registration3793,94070 -registration(r2550,c124,s753).registration3793,94070 -registration(r2551,c54,s754).registration3794,94101 -registration(r2551,c54,s754).registration3794,94101 -registration(r2552,c6,s754).registration3795,94131 -registration(r2552,c6,s754).registration3795,94131 -registration(r2553,c76,s754).registration3796,94160 -registration(r2553,c76,s754).registration3796,94160 -registration(r2554,c88,s755).registration3797,94190 -registration(r2554,c88,s755).registration3797,94190 -registration(r2555,c83,s755).registration3798,94220 -registration(r2555,c83,s755).registration3798,94220 -registration(r2556,c115,s755).registration3799,94250 -registration(r2556,c115,s755).registration3799,94250 -registration(r2557,c82,s756).registration3800,94281 -registration(r2557,c82,s756).registration3800,94281 -registration(r2558,c84,s756).registration3801,94311 -registration(r2558,c84,s756).registration3801,94311 -registration(r2559,c115,s756).registration3802,94341 -registration(r2559,c115,s756).registration3802,94341 -registration(r2560,c86,s757).registration3803,94372 -registration(r2560,c86,s757).registration3803,94372 -registration(r2561,c45,s757).registration3804,94402 -registration(r2561,c45,s757).registration3804,94402 -registration(r2562,c79,s757).registration3805,94432 -registration(r2562,c79,s757).registration3805,94432 -registration(r2563,c71,s758).registration3806,94462 -registration(r2563,c71,s758).registration3806,94462 -registration(r2564,c125,s758).registration3807,94492 -registration(r2564,c125,s758).registration3807,94492 -registration(r2565,c12,s758).registration3808,94523 -registration(r2565,c12,s758).registration3808,94523 -registration(r2566,c95,s758).registration3809,94553 -registration(r2566,c95,s758).registration3809,94553 -registration(r2567,c12,s759).registration3810,94583 -registration(r2567,c12,s759).registration3810,94583 -registration(r2568,c32,s759).registration3811,94613 -registration(r2568,c32,s759).registration3811,94613 -registration(r2569,c92,s759).registration3812,94643 -registration(r2569,c92,s759).registration3812,94643 -registration(r2570,c18,s760).registration3813,94673 -registration(r2570,c18,s760).registration3813,94673 -registration(r2571,c49,s760).registration3814,94703 -registration(r2571,c49,s760).registration3814,94703 -registration(r2572,c13,s760).registration3815,94733 -registration(r2572,c13,s760).registration3815,94733 -registration(r2573,c101,s761).registration3816,94763 -registration(r2573,c101,s761).registration3816,94763 -registration(r2574,c28,s761).registration3817,94794 -registration(r2574,c28,s761).registration3817,94794 -registration(r2575,c91,s761).registration3818,94824 -registration(r2575,c91,s761).registration3818,94824 -registration(r2576,c46,s762).registration3819,94854 -registration(r2576,c46,s762).registration3819,94854 -registration(r2577,c5,s762).registration3820,94884 -registration(r2577,c5,s762).registration3820,94884 -registration(r2578,c100,s762).registration3821,94913 -registration(r2578,c100,s762).registration3821,94913 -registration(r2579,c58,s763).registration3822,94944 -registration(r2579,c58,s763).registration3822,94944 -registration(r2580,c73,s763).registration3823,94974 -registration(r2580,c73,s763).registration3823,94974 -registration(r2581,c80,s763).registration3824,95004 -registration(r2581,c80,s763).registration3824,95004 -registration(r2582,c47,s763).registration3825,95034 -registration(r2582,c47,s763).registration3825,95034 -registration(r2583,c20,s763).registration3826,95064 -registration(r2583,c20,s763).registration3826,95064 -registration(r2584,c61,s764).registration3827,95094 -registration(r2584,c61,s764).registration3827,95094 -registration(r2585,c92,s764).registration3828,95124 -registration(r2585,c92,s764).registration3828,95124 -registration(r2586,c21,s764).registration3829,95154 -registration(r2586,c21,s764).registration3829,95154 -registration(r2587,c53,s765).registration3830,95184 -registration(r2587,c53,s765).registration3830,95184 -registration(r2588,c121,s765).registration3831,95214 -registration(r2588,c121,s765).registration3831,95214 -registration(r2589,c19,s765).registration3832,95245 -registration(r2589,c19,s765).registration3832,95245 -registration(r2590,c68,s765).registration3833,95275 -registration(r2590,c68,s765).registration3833,95275 -registration(r2591,c4,s766).registration3834,95305 -registration(r2591,c4,s766).registration3834,95305 -registration(r2592,c84,s766).registration3835,95334 -registration(r2592,c84,s766).registration3835,95334 -registration(r2593,c45,s766).registration3836,95364 -registration(r2593,c45,s766).registration3836,95364 -registration(r2594,c8,s767).registration3837,95394 -registration(r2594,c8,s767).registration3837,95394 -registration(r2595,c27,s767).registration3838,95423 -registration(r2595,c27,s767).registration3838,95423 -registration(r2596,c98,s767).registration3839,95453 -registration(r2596,c98,s767).registration3839,95453 -registration(r2597,c70,s768).registration3840,95483 -registration(r2597,c70,s768).registration3840,95483 -registration(r2598,c81,s768).registration3841,95513 -registration(r2598,c81,s768).registration3841,95513 -registration(r2599,c31,s768).registration3842,95543 -registration(r2599,c31,s768).registration3842,95543 -registration(r2600,c24,s768).registration3843,95573 -registration(r2600,c24,s768).registration3843,95573 -registration(r2601,c24,s769).registration3844,95603 -registration(r2601,c24,s769).registration3844,95603 -registration(r2602,c74,s769).registration3845,95633 -registration(r2602,c74,s769).registration3845,95633 -registration(r2603,c6,s769).registration3846,95663 -registration(r2603,c6,s769).registration3846,95663 -registration(r2604,c99,s769).registration3847,95692 -registration(r2604,c99,s769).registration3847,95692 -registration(r2605,c66,s770).registration3848,95722 -registration(r2605,c66,s770).registration3848,95722 -registration(r2606,c36,s770).registration3849,95752 -registration(r2606,c36,s770).registration3849,95752 -registration(r2607,c76,s770).registration3850,95782 -registration(r2607,c76,s770).registration3850,95782 -registration(r2608,c95,s771).registration3851,95812 -registration(r2608,c95,s771).registration3851,95812 -registration(r2609,c110,s771).registration3852,95842 -registration(r2609,c110,s771).registration3852,95842 -registration(r2610,c40,s771).registration3853,95873 -registration(r2610,c40,s771).registration3853,95873 -registration(r2611,c125,s772).registration3854,95903 -registration(r2611,c125,s772).registration3854,95903 -registration(r2612,c80,s772).registration3855,95934 -registration(r2612,c80,s772).registration3855,95934 -registration(r2613,c92,s772).registration3856,95964 -registration(r2613,c92,s772).registration3856,95964 -registration(r2614,c120,s773).registration3857,95994 -registration(r2614,c120,s773).registration3857,95994 -registration(r2615,c78,s773).registration3858,96025 -registration(r2615,c78,s773).registration3858,96025 -registration(r2616,c15,s773).registration3859,96055 -registration(r2616,c15,s773).registration3859,96055 -registration(r2617,c22,s773).registration3860,96085 -registration(r2617,c22,s773).registration3860,96085 -registration(r2618,c56,s774).registration3861,96115 -registration(r2618,c56,s774).registration3861,96115 -registration(r2619,c22,s774).registration3862,96145 -registration(r2619,c22,s774).registration3862,96145 -registration(r2620,c122,s774).registration3863,96175 -registration(r2620,c122,s774).registration3863,96175 -registration(r2621,c67,s775).registration3864,96206 -registration(r2621,c67,s775).registration3864,96206 -registration(r2622,c45,s775).registration3865,96236 -registration(r2622,c45,s775).registration3865,96236 -registration(r2623,c93,s775).registration3866,96266 -registration(r2623,c93,s775).registration3866,96266 -registration(r2624,c30,s775).registration3867,96296 -registration(r2624,c30,s775).registration3867,96296 -registration(r2625,c111,s776).registration3868,96326 -registration(r2625,c111,s776).registration3868,96326 -registration(r2626,c92,s776).registration3869,96357 -registration(r2626,c92,s776).registration3869,96357 -registration(r2627,c22,s776).registration3870,96387 -registration(r2627,c22,s776).registration3870,96387 -registration(r2628,c60,s776).registration3871,96417 -registration(r2628,c60,s776).registration3871,96417 -registration(r2629,c53,s776).registration3872,96447 -registration(r2629,c53,s776).registration3872,96447 -registration(r2630,c96,s777).registration3873,96477 -registration(r2630,c96,s777).registration3873,96477 -registration(r2631,c121,s777).registration3874,96507 -registration(r2631,c121,s777).registration3874,96507 -registration(r2632,c50,s777).registration3875,96538 -registration(r2632,c50,s777).registration3875,96538 -registration(r2633,c33,s778).registration3876,96568 -registration(r2633,c33,s778).registration3876,96568 -registration(r2634,c10,s778).registration3877,96598 -registration(r2634,c10,s778).registration3877,96598 -registration(r2635,c79,s778).registration3878,96628 -registration(r2635,c79,s778).registration3878,96628 -registration(r2636,c103,s779).registration3879,96658 -registration(r2636,c103,s779).registration3879,96658 -registration(r2637,c6,s779).registration3880,96689 -registration(r2637,c6,s779).registration3880,96689 -registration(r2638,c123,s779).registration3881,96718 -registration(r2638,c123,s779).registration3881,96718 -registration(r2639,c117,s780).registration3882,96749 -registration(r2639,c117,s780).registration3882,96749 -registration(r2640,c71,s780).registration3883,96780 -registration(r2640,c71,s780).registration3883,96780 -registration(r2641,c76,s780).registration3884,96810 -registration(r2641,c76,s780).registration3884,96810 -registration(r2642,c40,s781).registration3885,96840 -registration(r2642,c40,s781).registration3885,96840 -registration(r2643,c4,s781).registration3886,96870 -registration(r2643,c4,s781).registration3886,96870 -registration(r2644,c8,s781).registration3887,96899 -registration(r2644,c8,s781).registration3887,96899 -registration(r2645,c100,s782).registration3888,96928 -registration(r2645,c100,s782).registration3888,96928 -registration(r2646,c94,s782).registration3889,96959 -registration(r2646,c94,s782).registration3889,96959 -registration(r2647,c0,s782).registration3890,96989 -registration(r2647,c0,s782).registration3890,96989 -registration(r2648,c54,s783).registration3891,97018 -registration(r2648,c54,s783).registration3891,97018 -registration(r2649,c1,s783).registration3892,97048 -registration(r2649,c1,s783).registration3892,97048 -registration(r2650,c94,s783).registration3893,97077 -registration(r2650,c94,s783).registration3893,97077 -registration(r2651,c52,s784).registration3894,97107 -registration(r2651,c52,s784).registration3894,97107 -registration(r2652,c10,s784).registration3895,97137 -registration(r2652,c10,s784).registration3895,97137 -registration(r2653,c63,s784).registration3896,97167 -registration(r2653,c63,s784).registration3896,97167 -registration(r2654,c123,s784).registration3897,97197 -registration(r2654,c123,s784).registration3897,97197 -registration(r2655,c105,s785).registration3898,97228 -registration(r2655,c105,s785).registration3898,97228 -registration(r2656,c1,s785).registration3899,97259 -registration(r2656,c1,s785).registration3899,97259 -registration(r2657,c84,s785).registration3900,97288 -registration(r2657,c84,s785).registration3900,97288 -registration(r2658,c30,s785).registration3901,97318 -registration(r2658,c30,s785).registration3901,97318 -registration(r2659,c81,s786).registration3902,97348 -registration(r2659,c81,s786).registration3902,97348 -registration(r2660,c106,s786).registration3903,97378 -registration(r2660,c106,s786).registration3903,97378 -registration(r2661,c3,s786).registration3904,97409 -registration(r2661,c3,s786).registration3904,97409 -registration(r2662,c8,s786).registration3905,97438 -registration(r2662,c8,s786).registration3905,97438 -registration(r2663,c79,s787).registration3906,97467 -registration(r2663,c79,s787).registration3906,97467 -registration(r2664,c91,s787).registration3907,97497 -registration(r2664,c91,s787).registration3907,97497 -registration(r2665,c122,s787).registration3908,97527 -registration(r2665,c122,s787).registration3908,97527 -registration(r2666,c123,s788).registration3909,97558 -registration(r2666,c123,s788).registration3909,97558 -registration(r2667,c84,s788).registration3910,97589 -registration(r2667,c84,s788).registration3910,97589 -registration(r2668,c30,s788).registration3911,97619 -registration(r2668,c30,s788).registration3911,97619 -registration(r2669,c125,s789).registration3912,97649 -registration(r2669,c125,s789).registration3912,97649 -registration(r2670,c27,s789).registration3913,97680 -registration(r2670,c27,s789).registration3913,97680 -registration(r2671,c10,s789).registration3914,97710 -registration(r2671,c10,s789).registration3914,97710 -registration(r2672,c72,s790).registration3915,97740 -registration(r2672,c72,s790).registration3915,97740 -registration(r2673,c51,s790).registration3916,97770 -registration(r2673,c51,s790).registration3916,97770 -registration(r2674,c33,s790).registration3917,97800 -registration(r2674,c33,s790).registration3917,97800 -registration(r2675,c35,s791).registration3918,97830 -registration(r2675,c35,s791).registration3918,97830 -registration(r2676,c118,s791).registration3919,97860 -registration(r2676,c118,s791).registration3919,97860 -registration(r2677,c39,s791).registration3920,97891 -registration(r2677,c39,s791).registration3920,97891 -registration(r2678,c121,s792).registration3921,97921 -registration(r2678,c121,s792).registration3921,97921 -registration(r2679,c44,s792).registration3922,97952 -registration(r2679,c44,s792).registration3922,97952 -registration(r2680,c67,s792).registration3923,97982 -registration(r2680,c67,s792).registration3923,97982 -registration(r2681,c75,s793).registration3924,98012 -registration(r2681,c75,s793).registration3924,98012 -registration(r2682,c16,s793).registration3925,98042 -registration(r2682,c16,s793).registration3925,98042 -registration(r2683,c29,s793).registration3926,98072 -registration(r2683,c29,s793).registration3926,98072 -registration(r2684,c87,s794).registration3927,98102 -registration(r2684,c87,s794).registration3927,98102 -registration(r2685,c64,s794).registration3928,98132 -registration(r2685,c64,s794).registration3928,98132 -registration(r2686,c25,s794).registration3929,98162 -registration(r2686,c25,s794).registration3929,98162 -registration(r2687,c112,s795).registration3930,98192 -registration(r2687,c112,s795).registration3930,98192 -registration(r2688,c115,s795).registration3931,98223 -registration(r2688,c115,s795).registration3931,98223 -registration(r2689,c13,s795).registration3932,98254 -registration(r2689,c13,s795).registration3932,98254 -registration(r2690,c52,s796).registration3933,98284 -registration(r2690,c52,s796).registration3933,98284 -registration(r2691,c67,s796).registration3934,98314 -registration(r2691,c67,s796).registration3934,98314 -registration(r2692,c88,s796).registration3935,98344 -registration(r2692,c88,s796).registration3935,98344 -registration(r2693,c117,s797).registration3936,98374 -registration(r2693,c117,s797).registration3936,98374 -registration(r2694,c122,s797).registration3937,98405 -registration(r2694,c122,s797).registration3937,98405 -registration(r2695,c90,s797).registration3938,98436 -registration(r2695,c90,s797).registration3938,98436 -registration(r2696,c28,s798).registration3939,98466 -registration(r2696,c28,s798).registration3939,98466 -registration(r2697,c22,s798).registration3940,98496 -registration(r2697,c22,s798).registration3940,98496 -registration(r2698,c106,s798).registration3941,98526 -registration(r2698,c106,s798).registration3941,98526 -registration(r2699,c43,s799).registration3942,98557 -registration(r2699,c43,s799).registration3942,98557 -registration(r2700,c42,s799).registration3943,98587 -registration(r2700,c42,s799).registration3943,98587 -registration(r2701,c105,s799).registration3944,98617 -registration(r2701,c105,s799).registration3944,98617 -registration(r2702,c45,s800).registration3945,98648 -registration(r2702,c45,s800).registration3945,98648 -registration(r2703,c30,s800).registration3946,98678 -registration(r2703,c30,s800).registration3946,98678 -registration(r2704,c51,s800).registration3947,98708 -registration(r2704,c51,s800).registration3947,98708 -registration(r2705,c36,s800).registration3948,98738 -registration(r2705,c36,s800).registration3948,98738 -registration(r2706,c55,s801).registration3949,98768 -registration(r2706,c55,s801).registration3949,98768 -registration(r2707,c8,s801).registration3950,98798 -registration(r2707,c8,s801).registration3950,98798 -registration(r2708,c50,s801).registration3951,98827 -registration(r2708,c50,s801).registration3951,98827 -registration(r2709,c103,s802).registration3952,98857 -registration(r2709,c103,s802).registration3952,98857 -registration(r2710,c117,s802).registration3953,98888 -registration(r2710,c117,s802).registration3953,98888 -registration(r2711,c4,s802).registration3954,98919 -registration(r2711,c4,s802).registration3954,98919 -registration(r2712,c122,s803).registration3955,98948 -registration(r2712,c122,s803).registration3955,98948 -registration(r2713,c57,s803).registration3956,98979 -registration(r2713,c57,s803).registration3956,98979 -registration(r2714,c53,s803).registration3957,99009 -registration(r2714,c53,s803).registration3957,99009 -registration(r2715,c117,s803).registration3958,99039 -registration(r2715,c117,s803).registration3958,99039 -registration(r2716,c45,s804).registration3959,99070 -registration(r2716,c45,s804).registration3959,99070 -registration(r2717,c97,s804).registration3960,99100 -registration(r2717,c97,s804).registration3960,99100 -registration(r2718,c50,s804).registration3961,99130 -registration(r2718,c50,s804).registration3961,99130 -registration(r2719,c12,s804).registration3962,99160 -registration(r2719,c12,s804).registration3962,99160 -registration(r2720,c111,s805).registration3963,99190 -registration(r2720,c111,s805).registration3963,99190 -registration(r2721,c83,s805).registration3964,99221 -registration(r2721,c83,s805).registration3964,99221 -registration(r2722,c76,s805).registration3965,99251 -registration(r2722,c76,s805).registration3965,99251 -registration(r2723,c127,s806).registration3966,99281 -registration(r2723,c127,s806).registration3966,99281 -registration(r2724,c99,s806).registration3967,99312 -registration(r2724,c99,s806).registration3967,99312 -registration(r2725,c8,s806).registration3968,99342 -registration(r2725,c8,s806).registration3968,99342 -registration(r2726,c16,s807).registration3969,99371 -registration(r2726,c16,s807).registration3969,99371 -registration(r2727,c87,s807).registration3970,99401 -registration(r2727,c87,s807).registration3970,99401 -registration(r2728,c77,s807).registration3971,99431 -registration(r2728,c77,s807).registration3971,99431 -registration(r2729,c67,s808).registration3972,99461 -registration(r2729,c67,s808).registration3972,99461 -registration(r2730,c65,s808).registration3973,99491 -registration(r2730,c65,s808).registration3973,99491 -registration(r2731,c125,s808).registration3974,99521 -registration(r2731,c125,s808).registration3974,99521 -registration(r2732,c54,s809).registration3975,99552 -registration(r2732,c54,s809).registration3975,99552 -registration(r2733,c83,s809).registration3976,99582 -registration(r2733,c83,s809).registration3976,99582 -registration(r2734,c84,s809).registration3977,99612 -registration(r2734,c84,s809).registration3977,99612 -registration(r2735,c2,s810).registration3978,99642 -registration(r2735,c2,s810).registration3978,99642 -registration(r2736,c15,s810).registration3979,99671 -registration(r2736,c15,s810).registration3979,99671 -registration(r2737,c88,s810).registration3980,99701 -registration(r2737,c88,s810).registration3980,99701 -registration(r2738,c28,s810).registration3981,99731 -registration(r2738,c28,s810).registration3981,99731 -registration(r2739,c119,s811).registration3982,99761 -registration(r2739,c119,s811).registration3982,99761 -registration(r2740,c110,s811).registration3983,99792 -registration(r2740,c110,s811).registration3983,99792 -registration(r2741,c2,s811).registration3984,99823 -registration(r2741,c2,s811).registration3984,99823 -registration(r2742,c96,s811).registration3985,99852 -registration(r2742,c96,s811).registration3985,99852 -registration(r2743,c121,s811).registration3986,99882 -registration(r2743,c121,s811).registration3986,99882 -registration(r2744,c106,s812).registration3987,99913 -registration(r2744,c106,s812).registration3987,99913 -registration(r2745,c38,s812).registration3988,99944 -registration(r2745,c38,s812).registration3988,99944 -registration(r2746,c20,s812).registration3989,99974 -registration(r2746,c20,s812).registration3989,99974 -registration(r2747,c99,s813).registration3990,100004 -registration(r2747,c99,s813).registration3990,100004 -registration(r2748,c55,s813).registration3991,100034 -registration(r2748,c55,s813).registration3991,100034 -registration(r2749,c59,s813).registration3992,100064 -registration(r2749,c59,s813).registration3992,100064 -registration(r2750,c56,s814).registration3993,100094 -registration(r2750,c56,s814).registration3993,100094 -registration(r2751,c68,s814).registration3994,100124 -registration(r2751,c68,s814).registration3994,100124 -registration(r2752,c54,s814).registration3995,100154 -registration(r2752,c54,s814).registration3995,100154 -registration(r2753,c11,s814).registration3996,100184 -registration(r2753,c11,s814).registration3996,100184 -registration(r2754,c28,s815).registration3997,100214 -registration(r2754,c28,s815).registration3997,100214 -registration(r2755,c62,s815).registration3998,100244 -registration(r2755,c62,s815).registration3998,100244 -registration(r2756,c13,s815).registration3999,100274 -registration(r2756,c13,s815).registration3999,100274 -registration(r2757,c22,s815).registration4000,100304 -registration(r2757,c22,s815).registration4000,100304 -registration(r2758,c69,s816).registration4001,100334 -registration(r2758,c69,s816).registration4001,100334 -registration(r2759,c74,s816).registration4002,100364 -registration(r2759,c74,s816).registration4002,100364 -registration(r2760,c13,s816).registration4003,100394 -registration(r2760,c13,s816).registration4003,100394 -registration(r2761,c33,s817).registration4004,100424 -registration(r2761,c33,s817).registration4004,100424 -registration(r2762,c22,s817).registration4005,100454 -registration(r2762,c22,s817).registration4005,100454 -registration(r2763,c80,s817).registration4006,100484 -registration(r2763,c80,s817).registration4006,100484 -registration(r2764,c118,s817).registration4007,100514 -registration(r2764,c118,s817).registration4007,100514 -registration(r2765,c48,s818).registration4008,100545 -registration(r2765,c48,s818).registration4008,100545 -registration(r2766,c123,s818).registration4009,100575 -registration(r2766,c123,s818).registration4009,100575 -registration(r2767,c115,s818).registration4010,100606 -registration(r2767,c115,s818).registration4010,100606 -registration(r2768,c51,s818).registration4011,100637 -registration(r2768,c51,s818).registration4011,100637 -registration(r2769,c58,s819).registration4012,100667 -registration(r2769,c58,s819).registration4012,100667 -registration(r2770,c45,s819).registration4013,100697 -registration(r2770,c45,s819).registration4013,100697 -registration(r2771,c104,s819).registration4014,100727 -registration(r2771,c104,s819).registration4014,100727 -registration(r2772,c87,s820).registration4015,100758 -registration(r2772,c87,s820).registration4015,100758 -registration(r2773,c21,s820).registration4016,100788 -registration(r2773,c21,s820).registration4016,100788 -registration(r2774,c113,s820).registration4017,100818 -registration(r2774,c113,s820).registration4017,100818 -registration(r2775,c126,s821).registration4018,100849 -registration(r2775,c126,s821).registration4018,100849 -registration(r2776,c31,s821).registration4019,100880 -registration(r2776,c31,s821).registration4019,100880 -registration(r2777,c104,s821).registration4020,100910 -registration(r2777,c104,s821).registration4020,100910 -registration(r2778,c99,s821).registration4021,100941 -registration(r2778,c99,s821).registration4021,100941 -registration(r2779,c33,s822).registration4022,100971 -registration(r2779,c33,s822).registration4022,100971 -registration(r2780,c24,s822).registration4023,101001 -registration(r2780,c24,s822).registration4023,101001 -registration(r2781,c1,s822).registration4024,101031 -registration(r2781,c1,s822).registration4024,101031 -registration(r2782,c81,s823).registration4025,101060 -registration(r2782,c81,s823).registration4025,101060 -registration(r2783,c94,s823).registration4026,101090 -registration(r2783,c94,s823).registration4026,101090 -registration(r2784,c47,s823).registration4027,101120 -registration(r2784,c47,s823).registration4027,101120 -registration(r2785,c42,s823).registration4028,101150 -registration(r2785,c42,s823).registration4028,101150 -registration(r2786,c59,s824).registration4029,101180 -registration(r2786,c59,s824).registration4029,101180 -registration(r2787,c34,s824).registration4030,101210 -registration(r2787,c34,s824).registration4030,101210 -registration(r2788,c95,s824).registration4031,101240 -registration(r2788,c95,s824).registration4031,101240 -registration(r2789,c12,s825).registration4032,101270 -registration(r2789,c12,s825).registration4032,101270 -registration(r2790,c83,s825).registration4033,101300 -registration(r2790,c83,s825).registration4033,101300 -registration(r2791,c91,s825).registration4034,101330 -registration(r2791,c91,s825).registration4034,101330 -registration(r2792,c113,s826).registration4035,101360 -registration(r2792,c113,s826).registration4035,101360 -registration(r2793,c97,s826).registration4036,101391 -registration(r2793,c97,s826).registration4036,101391 -registration(r2794,c31,s826).registration4037,101421 -registration(r2794,c31,s826).registration4037,101421 -registration(r2795,c63,s827).registration4038,101451 -registration(r2795,c63,s827).registration4038,101451 -registration(r2796,c46,s827).registration4039,101481 -registration(r2796,c46,s827).registration4039,101481 -registration(r2797,c117,s827).registration4040,101511 -registration(r2797,c117,s827).registration4040,101511 -registration(r2798,c22,s828).registration4041,101542 -registration(r2798,c22,s828).registration4041,101542 -registration(r2799,c61,s828).registration4042,101572 -registration(r2799,c61,s828).registration4042,101572 -registration(r2800,c100,s828).registration4043,101602 -registration(r2800,c100,s828).registration4043,101602 -registration(r2801,c52,s829).registration4044,101633 -registration(r2801,c52,s829).registration4044,101633 -registration(r2802,c57,s829).registration4045,101663 -registration(r2802,c57,s829).registration4045,101663 -registration(r2803,c28,s829).registration4046,101693 -registration(r2803,c28,s829).registration4046,101693 -registration(r2804,c71,s830).registration4047,101723 -registration(r2804,c71,s830).registration4047,101723 -registration(r2805,c54,s830).registration4048,101753 -registration(r2805,c54,s830).registration4048,101753 -registration(r2806,c106,s830).registration4049,101783 -registration(r2806,c106,s830).registration4049,101783 -registration(r2807,c71,s831).registration4050,101814 -registration(r2807,c71,s831).registration4050,101814 -registration(r2808,c50,s831).registration4051,101844 -registration(r2808,c50,s831).registration4051,101844 -registration(r2809,c117,s831).registration4052,101874 -registration(r2809,c117,s831).registration4052,101874 -registration(r2810,c33,s832).registration4053,101905 -registration(r2810,c33,s832).registration4053,101905 -registration(r2811,c20,s832).registration4054,101935 -registration(r2811,c20,s832).registration4054,101935 -registration(r2812,c7,s832).registration4055,101965 -registration(r2812,c7,s832).registration4055,101965 -registration(r2813,c104,s833).registration4056,101994 -registration(r2813,c104,s833).registration4056,101994 -registration(r2814,c0,s833).registration4057,102025 -registration(r2814,c0,s833).registration4057,102025 -registration(r2815,c8,s833).registration4058,102054 -registration(r2815,c8,s833).registration4058,102054 -registration(r2816,c106,s834).registration4059,102083 -registration(r2816,c106,s834).registration4059,102083 -registration(r2817,c117,s834).registration4060,102114 -registration(r2817,c117,s834).registration4060,102114 -registration(r2818,c96,s834).registration4061,102145 -registration(r2818,c96,s834).registration4061,102145 -registration(r2819,c78,s835).registration4062,102175 -registration(r2819,c78,s835).registration4062,102175 -registration(r2820,c3,s835).registration4063,102205 -registration(r2820,c3,s835).registration4063,102205 -registration(r2821,c9,s835).registration4064,102234 -registration(r2821,c9,s835).registration4064,102234 -registration(r2822,c80,s836).registration4065,102263 -registration(r2822,c80,s836).registration4065,102263 -registration(r2823,c50,s836).registration4066,102293 -registration(r2823,c50,s836).registration4066,102293 -registration(r2824,c54,s836).registration4067,102323 -registration(r2824,c54,s836).registration4067,102323 -registration(r2825,c89,s837).registration4068,102353 -registration(r2825,c89,s837).registration4068,102353 -registration(r2826,c1,s837).registration4069,102383 -registration(r2826,c1,s837).registration4069,102383 -registration(r2827,c13,s837).registration4070,102412 -registration(r2827,c13,s837).registration4070,102412 -registration(r2828,c49,s838).registration4071,102442 -registration(r2828,c49,s838).registration4071,102442 -registration(r2829,c112,s838).registration4072,102472 -registration(r2829,c112,s838).registration4072,102472 -registration(r2830,c56,s838).registration4073,102503 -registration(r2830,c56,s838).registration4073,102503 -registration(r2831,c18,s839).registration4074,102533 -registration(r2831,c18,s839).registration4074,102533 -registration(r2832,c34,s839).registration4075,102563 -registration(r2832,c34,s839).registration4075,102563 -registration(r2833,c51,s839).registration4076,102593 -registration(r2833,c51,s839).registration4076,102593 -registration(r2834,c87,s839).registration4077,102623 -registration(r2834,c87,s839).registration4077,102623 -registration(r2835,c5,s840).registration4078,102653 -registration(r2835,c5,s840).registration4078,102653 -registration(r2836,c117,s840).registration4079,102682 -registration(r2836,c117,s840).registration4079,102682 -registration(r2837,c56,s840).registration4080,102713 -registration(r2837,c56,s840).registration4080,102713 -registration(r2838,c6,s841).registration4081,102743 -registration(r2838,c6,s841).registration4081,102743 -registration(r2839,c87,s841).registration4082,102772 -registration(r2839,c87,s841).registration4082,102772 -registration(r2840,c77,s841).registration4083,102802 -registration(r2840,c77,s841).registration4083,102802 -registration(r2841,c29,s842).registration4084,102832 -registration(r2841,c29,s842).registration4084,102832 -registration(r2842,c37,s842).registration4085,102862 -registration(r2842,c37,s842).registration4085,102862 -registration(r2843,c12,s842).registration4086,102892 -registration(r2843,c12,s842).registration4086,102892 -registration(r2844,c102,s843).registration4087,102922 -registration(r2844,c102,s843).registration4087,102922 -registration(r2845,c89,s843).registration4088,102953 -registration(r2845,c89,s843).registration4088,102953 -registration(r2846,c9,s843).registration4089,102983 -registration(r2846,c9,s843).registration4089,102983 -registration(r2847,c59,s844).registration4090,103012 -registration(r2847,c59,s844).registration4090,103012 -registration(r2848,c37,s844).registration4091,103042 -registration(r2848,c37,s844).registration4091,103042 -registration(r2849,c56,s844).registration4092,103072 -registration(r2849,c56,s844).registration4092,103072 -registration(r2850,c74,s845).registration4093,103102 -registration(r2850,c74,s845).registration4093,103102 -registration(r2851,c22,s845).registration4094,103132 -registration(r2851,c22,s845).registration4094,103132 -registration(r2852,c8,s845).registration4095,103162 -registration(r2852,c8,s845).registration4095,103162 -registration(r2853,c95,s845).registration4096,103191 -registration(r2853,c95,s845).registration4096,103191 -registration(r2854,c105,s846).registration4097,103221 -registration(r2854,c105,s846).registration4097,103221 -registration(r2855,c13,s846).registration4098,103252 -registration(r2855,c13,s846).registration4098,103252 -registration(r2856,c23,s846).registration4099,103282 -registration(r2856,c23,s846).registration4099,103282 -registration(r2857,c29,s847).registration4100,103312 -registration(r2857,c29,s847).registration4100,103312 -registration(r2858,c19,s847).registration4101,103342 -registration(r2858,c19,s847).registration4101,103342 -registration(r2859,c33,s847).registration4102,103372 -registration(r2859,c33,s847).registration4102,103372 -registration(r2860,c106,s847).registration4103,103402 -registration(r2860,c106,s847).registration4103,103402 -registration(r2861,c51,s848).registration4104,103433 -registration(r2861,c51,s848).registration4104,103433 -registration(r2862,c119,s848).registration4105,103463 -registration(r2862,c119,s848).registration4105,103463 -registration(r2863,c22,s848).registration4106,103494 -registration(r2863,c22,s848).registration4106,103494 -registration(r2864,c113,s849).registration4107,103524 -registration(r2864,c113,s849).registration4107,103524 -registration(r2865,c58,s849).registration4108,103555 -registration(r2865,c58,s849).registration4108,103555 -registration(r2866,c18,s849).registration4109,103585 -registration(r2866,c18,s849).registration4109,103585 -registration(r2867,c55,s850).registration4110,103615 -registration(r2867,c55,s850).registration4110,103615 -registration(r2868,c40,s850).registration4111,103645 -registration(r2868,c40,s850).registration4111,103645 -registration(r2869,c107,s850).registration4112,103675 -registration(r2869,c107,s850).registration4112,103675 -registration(r2870,c115,s850).registration4113,103706 -registration(r2870,c115,s850).registration4113,103706 -registration(r2871,c22,s850).registration4114,103737 -registration(r2871,c22,s850).registration4114,103737 -registration(r2872,c88,s851).registration4115,103767 -registration(r2872,c88,s851).registration4115,103767 -registration(r2873,c26,s851).registration4116,103797 -registration(r2873,c26,s851).registration4116,103797 -registration(r2874,c118,s851).registration4117,103827 -registration(r2874,c118,s851).registration4117,103827 -registration(r2875,c13,s852).registration4118,103858 -registration(r2875,c13,s852).registration4118,103858 -registration(r2876,c127,s852).registration4119,103888 -registration(r2876,c127,s852).registration4119,103888 -registration(r2877,c121,s852).registration4120,103919 -registration(r2877,c121,s852).registration4120,103919 -registration(r2878,c27,s852).registration4121,103950 -registration(r2878,c27,s852).registration4121,103950 -registration(r2879,c57,s853).registration4122,103980 -registration(r2879,c57,s853).registration4122,103980 -registration(r2880,c125,s853).registration4123,104010 -registration(r2880,c125,s853).registration4123,104010 -registration(r2881,c89,s853).registration4124,104041 -registration(r2881,c89,s853).registration4124,104041 -registration(r2882,c112,s854).registration4125,104071 -registration(r2882,c112,s854).registration4125,104071 -registration(r2883,c29,s854).registration4126,104102 -registration(r2883,c29,s854).registration4126,104102 -registration(r2884,c82,s854).registration4127,104132 -registration(r2884,c82,s854).registration4127,104132 -registration(r2885,c101,s855).registration4128,104162 -registration(r2885,c101,s855).registration4128,104162 -registration(r2886,c81,s855).registration4129,104193 -registration(r2886,c81,s855).registration4129,104193 -registration(r2887,c78,s855).registration4130,104223 -registration(r2887,c78,s855).registration4130,104223 -registration(r2888,c59,s856).registration4131,104253 -registration(r2888,c59,s856).registration4131,104253 -registration(r2889,c43,s856).registration4132,104283 -registration(r2889,c43,s856).registration4132,104283 -registration(r2890,c110,s856).registration4133,104313 -registration(r2890,c110,s856).registration4133,104313 -registration(r2891,c70,s857).registration4134,104344 -registration(r2891,c70,s857).registration4134,104344 -registration(r2892,c88,s857).registration4135,104374 -registration(r2892,c88,s857).registration4135,104374 -registration(r2893,c56,s857).registration4136,104404 -registration(r2893,c56,s857).registration4136,104404 -registration(r2894,c0,s857).registration4137,104434 -registration(r2894,c0,s857).registration4137,104434 -registration(r2895,c8,s858).registration4138,104463 -registration(r2895,c8,s858).registration4138,104463 -registration(r2896,c122,s858).registration4139,104492 -registration(r2896,c122,s858).registration4139,104492 -registration(r2897,c113,s858).registration4140,104523 -registration(r2897,c113,s858).registration4140,104523 -registration(r2898,c44,s858).registration4141,104554 -registration(r2898,c44,s858).registration4141,104554 -registration(r2899,c25,s859).registration4142,104584 -registration(r2899,c25,s859).registration4142,104584 -registration(r2900,c111,s859).registration4143,104614 -registration(r2900,c111,s859).registration4143,104614 -registration(r2901,c26,s859).registration4144,104645 -registration(r2901,c26,s859).registration4144,104645 -registration(r2902,c95,s859).registration4145,104675 -registration(r2902,c95,s859).registration4145,104675 -registration(r2903,c97,s860).registration4146,104705 -registration(r2903,c97,s860).registration4146,104705 -registration(r2904,c64,s860).registration4147,104735 -registration(r2904,c64,s860).registration4147,104735 -registration(r2905,c16,s860).registration4148,104765 -registration(r2905,c16,s860).registration4148,104765 -registration(r2906,c96,s860).registration4149,104795 -registration(r2906,c96,s860).registration4149,104795 -registration(r2907,c99,s861).registration4150,104825 -registration(r2907,c99,s861).registration4150,104825 -registration(r2908,c14,s861).registration4151,104855 -registration(r2908,c14,s861).registration4151,104855 -registration(r2909,c29,s861).registration4152,104885 -registration(r2909,c29,s861).registration4152,104885 -registration(r2910,c125,s861).registration4153,104915 -registration(r2910,c125,s861).registration4153,104915 -registration(r2911,c83,s862).registration4154,104946 -registration(r2911,c83,s862).registration4154,104946 -registration(r2912,c67,s862).registration4155,104976 -registration(r2912,c67,s862).registration4155,104976 -registration(r2913,c50,s862).registration4156,105006 -registration(r2913,c50,s862).registration4156,105006 -registration(r2914,c77,s862).registration4157,105036 -registration(r2914,c77,s862).registration4157,105036 -registration(r2915,c84,s863).registration4158,105066 -registration(r2915,c84,s863).registration4158,105066 -registration(r2916,c85,s863).registration4159,105096 -registration(r2916,c85,s863).registration4159,105096 -registration(r2917,c45,s863).registration4160,105126 -registration(r2917,c45,s863).registration4160,105126 -registration(r2918,c67,s864).registration4161,105156 -registration(r2918,c67,s864).registration4161,105156 -registration(r2919,c114,s864).registration4162,105186 -registration(r2919,c114,s864).registration4162,105186 -registration(r2920,c9,s864).registration4163,105217 -registration(r2920,c9,s864).registration4163,105217 -registration(r2921,c24,s864).registration4164,105246 -registration(r2921,c24,s864).registration4164,105246 -registration(r2922,c18,s865).registration4165,105276 -registration(r2922,c18,s865).registration4165,105276 -registration(r2923,c68,s865).registration4166,105306 -registration(r2923,c68,s865).registration4166,105306 -registration(r2924,c121,s865).registration4167,105336 -registration(r2924,c121,s865).registration4167,105336 -registration(r2925,c64,s866).registration4168,105367 -registration(r2925,c64,s866).registration4168,105367 -registration(r2926,c103,s866).registration4169,105397 -registration(r2926,c103,s866).registration4169,105397 -registration(r2927,c52,s866).registration4170,105428 -registration(r2927,c52,s866).registration4170,105428 -registration(r2928,c82,s867).registration4171,105458 -registration(r2928,c82,s867).registration4171,105458 -registration(r2929,c51,s867).registration4172,105488 -registration(r2929,c51,s867).registration4172,105488 -registration(r2930,c116,s867).registration4173,105518 -registration(r2930,c116,s867).registration4173,105518 -registration(r2931,c56,s867).registration4174,105549 -registration(r2931,c56,s867).registration4174,105549 -registration(r2932,c96,s868).registration4175,105579 -registration(r2932,c96,s868).registration4175,105579 -registration(r2933,c19,s868).registration4176,105609 -registration(r2933,c19,s868).registration4176,105609 -registration(r2934,c5,s868).registration4177,105639 -registration(r2934,c5,s868).registration4177,105639 -registration(r2935,c104,s868).registration4178,105668 -registration(r2935,c104,s868).registration4178,105668 -registration(r2936,c65,s869).registration4179,105699 -registration(r2936,c65,s869).registration4179,105699 -registration(r2937,c45,s869).registration4180,105729 -registration(r2937,c45,s869).registration4180,105729 -registration(r2938,c75,s869).registration4181,105759 -registration(r2938,c75,s869).registration4181,105759 -registration(r2939,c31,s869).registration4182,105789 -registration(r2939,c31,s869).registration4182,105789 -registration(r2940,c56,s870).registration4183,105819 -registration(r2940,c56,s870).registration4183,105819 -registration(r2941,c44,s870).registration4184,105849 -registration(r2941,c44,s870).registration4184,105849 -registration(r2942,c109,s870).registration4185,105879 -registration(r2942,c109,s870).registration4185,105879 -registration(r2943,c102,s871).registration4186,105910 -registration(r2943,c102,s871).registration4186,105910 -registration(r2944,c30,s871).registration4187,105941 -registration(r2944,c30,s871).registration4187,105941 -registration(r2945,c68,s871).registration4188,105971 -registration(r2945,c68,s871).registration4188,105971 -registration(r2946,c122,s871).registration4189,106001 -registration(r2946,c122,s871).registration4189,106001 -registration(r2947,c74,s872).registration4190,106032 -registration(r2947,c74,s872).registration4190,106032 -registration(r2948,c123,s872).registration4191,106062 -registration(r2948,c123,s872).registration4191,106062 -registration(r2949,c76,s872).registration4192,106093 -registration(r2949,c76,s872).registration4192,106093 -registration(r2950,c121,s873).registration4193,106123 -registration(r2950,c121,s873).registration4193,106123 -registration(r2951,c4,s873).registration4194,106154 -registration(r2951,c4,s873).registration4194,106154 -registration(r2952,c40,s873).registration4195,106183 -registration(r2952,c40,s873).registration4195,106183 -registration(r2953,c46,s873).registration4196,106213 -registration(r2953,c46,s873).registration4196,106213 -registration(r2954,c109,s874).registration4197,106243 -registration(r2954,c109,s874).registration4197,106243 -registration(r2955,c126,s874).registration4198,106274 -registration(r2955,c126,s874).registration4198,106274 -registration(r2956,c7,s874).registration4199,106305 -registration(r2956,c7,s874).registration4199,106305 -registration(r2957,c82,s875).registration4200,106334 -registration(r2957,c82,s875).registration4200,106334 -registration(r2958,c53,s875).registration4201,106364 -registration(r2958,c53,s875).registration4201,106364 -registration(r2959,c77,s875).registration4202,106394 -registration(r2959,c77,s875).registration4202,106394 -registration(r2960,c122,s876).registration4203,106424 -registration(r2960,c122,s876).registration4203,106424 -registration(r2961,c20,s876).registration4204,106455 -registration(r2961,c20,s876).registration4204,106455 -registration(r2962,c57,s876).registration4205,106485 -registration(r2962,c57,s876).registration4205,106485 -registration(r2963,c87,s877).registration4206,106515 -registration(r2963,c87,s877).registration4206,106515 -registration(r2964,c47,s877).registration4207,106545 -registration(r2964,c47,s877).registration4207,106545 -registration(r2965,c33,s877).registration4208,106575 -registration(r2965,c33,s877).registration4208,106575 -registration(r2966,c108,s878).registration4209,106605 -registration(r2966,c108,s878).registration4209,106605 -registration(r2967,c88,s878).registration4210,106636 -registration(r2967,c88,s878).registration4210,106636 -registration(r2968,c118,s878).registration4211,106666 -registration(r2968,c118,s878).registration4211,106666 -registration(r2969,c112,s879).registration4212,106697 -registration(r2969,c112,s879).registration4212,106697 -registration(r2970,c109,s879).registration4213,106728 -registration(r2970,c109,s879).registration4213,106728 -registration(r2971,c113,s879).registration4214,106759 -registration(r2971,c113,s879).registration4214,106759 -registration(r2972,c29,s879).registration4215,106790 -registration(r2972,c29,s879).registration4215,106790 -registration(r2973,c56,s880).registration4216,106820 -registration(r2973,c56,s880).registration4216,106820 -registration(r2974,c4,s880).registration4217,106850 -registration(r2974,c4,s880).registration4217,106850 -registration(r2975,c38,s880).registration4218,106879 -registration(r2975,c38,s880).registration4218,106879 -registration(r2976,c121,s881).registration4219,106909 -registration(r2976,c121,s881).registration4219,106909 -registration(r2977,c30,s881).registration4220,106940 -registration(r2977,c30,s881).registration4220,106940 -registration(r2978,c127,s881).registration4221,106970 -registration(r2978,c127,s881).registration4221,106970 -registration(r2979,c119,s881).registration4222,107001 -registration(r2979,c119,s881).registration4222,107001 -registration(r2980,c52,s882).registration4223,107032 -registration(r2980,c52,s882).registration4223,107032 -registration(r2981,c70,s882).registration4224,107062 -registration(r2981,c70,s882).registration4224,107062 -registration(r2982,c100,s882).registration4225,107092 -registration(r2982,c100,s882).registration4225,107092 -registration(r2983,c19,s883).registration4226,107123 -registration(r2983,c19,s883).registration4226,107123 -registration(r2984,c81,s883).registration4227,107153 -registration(r2984,c81,s883).registration4227,107153 -registration(r2985,c122,s883).registration4228,107183 -registration(r2985,c122,s883).registration4228,107183 -registration(r2986,c83,s884).registration4229,107214 -registration(r2986,c83,s884).registration4229,107214 -registration(r2987,c51,s884).registration4230,107244 -registration(r2987,c51,s884).registration4230,107244 -registration(r2988,c38,s884).registration4231,107274 -registration(r2988,c38,s884).registration4231,107274 -registration(r2989,c21,s885).registration4232,107304 -registration(r2989,c21,s885).registration4232,107304 -registration(r2990,c13,s885).registration4233,107334 -registration(r2990,c13,s885).registration4233,107334 -registration(r2991,c111,s885).registration4234,107364 -registration(r2991,c111,s885).registration4234,107364 -registration(r2992,c40,s886).registration4235,107395 -registration(r2992,c40,s886).registration4235,107395 -registration(r2993,c31,s886).registration4236,107425 -registration(r2993,c31,s886).registration4236,107425 -registration(r2994,c83,s886).registration4237,107455 -registration(r2994,c83,s886).registration4237,107455 -registration(r2995,c81,s886).registration4238,107485 -registration(r2995,c81,s886).registration4238,107485 -registration(r2996,c47,s887).registration4239,107515 -registration(r2996,c47,s887).registration4239,107515 -registration(r2997,c81,s887).registration4240,107545 -registration(r2997,c81,s887).registration4240,107545 -registration(r2998,c108,s887).registration4241,107575 -registration(r2998,c108,s887).registration4241,107575 -registration(r2999,c33,s888).registration4242,107606 -registration(r2999,c33,s888).registration4242,107606 -registration(r3000,c1,s888).registration4243,107636 -registration(r3000,c1,s888).registration4243,107636 -registration(r3001,c47,s888).registration4244,107665 -registration(r3001,c47,s888).registration4244,107665 -registration(r3002,c65,s889).registration4245,107695 -registration(r3002,c65,s889).registration4245,107695 -registration(r3003,c33,s889).registration4246,107725 -registration(r3003,c33,s889).registration4246,107725 -registration(r3004,c25,s889).registration4247,107755 -registration(r3004,c25,s889).registration4247,107755 -registration(r3005,c109,s890).registration4248,107785 -registration(r3005,c109,s890).registration4248,107785 -registration(r3006,c50,s890).registration4249,107816 -registration(r3006,c50,s890).registration4249,107816 -registration(r3007,c6,s890).registration4250,107846 -registration(r3007,c6,s890).registration4250,107846 -registration(r3008,c87,s890).registration4251,107875 -registration(r3008,c87,s890).registration4251,107875 -registration(r3009,c23,s891).registration4252,107905 -registration(r3009,c23,s891).registration4252,107905 -registration(r3010,c71,s891).registration4253,107935 -registration(r3010,c71,s891).registration4253,107935 -registration(r3011,c55,s891).registration4254,107965 -registration(r3011,c55,s891).registration4254,107965 -registration(r3012,c87,s892).registration4255,107995 -registration(r3012,c87,s892).registration4255,107995 -registration(r3013,c22,s892).registration4256,108025 -registration(r3013,c22,s892).registration4256,108025 -registration(r3014,c127,s892).registration4257,108055 -registration(r3014,c127,s892).registration4257,108055 -registration(r3015,c46,s893).registration4258,108086 -registration(r3015,c46,s893).registration4258,108086 -registration(r3016,c122,s893).registration4259,108116 -registration(r3016,c122,s893).registration4259,108116 -registration(r3017,c78,s893).registration4260,108147 -registration(r3017,c78,s893).registration4260,108147 -registration(r3018,c112,s894).registration4261,108177 -registration(r3018,c112,s894).registration4261,108177 -registration(r3019,c107,s894).registration4262,108208 -registration(r3019,c107,s894).registration4262,108208 -registration(r3020,c114,s894).registration4263,108239 -registration(r3020,c114,s894).registration4263,108239 -registration(r3021,c50,s894).registration4264,108270 -registration(r3021,c50,s894).registration4264,108270 -registration(r3022,c98,s895).registration4265,108300 -registration(r3022,c98,s895).registration4265,108300 -registration(r3023,c36,s895).registration4266,108330 -registration(r3023,c36,s895).registration4266,108330 -registration(r3024,c50,s895).registration4267,108360 -registration(r3024,c50,s895).registration4267,108360 -registration(r3025,c101,s895).registration4268,108390 -registration(r3025,c101,s895).registration4268,108390 -registration(r3026,c72,s896).registration4269,108421 -registration(r3026,c72,s896).registration4269,108421 -registration(r3027,c26,s896).registration4270,108451 -registration(r3027,c26,s896).registration4270,108451 -registration(r3028,c60,s896).registration4271,108481 -registration(r3028,c60,s896).registration4271,108481 -registration(r3029,c3,s897).registration4272,108511 -registration(r3029,c3,s897).registration4272,108511 -registration(r3030,c28,s897).registration4273,108540 -registration(r3030,c28,s897).registration4273,108540 -registration(r3031,c118,s897).registration4274,108570 -registration(r3031,c118,s897).registration4274,108570 -registration(r3032,c12,s898).registration4275,108601 -registration(r3032,c12,s898).registration4275,108601 -registration(r3033,c114,s898).registration4276,108631 -registration(r3033,c114,s898).registration4276,108631 -registration(r3034,c29,s898).registration4277,108662 -registration(r3034,c29,s898).registration4277,108662 -registration(r3035,c23,s899).registration4278,108692 -registration(r3035,c23,s899).registration4278,108692 -registration(r3036,c62,s899).registration4279,108722 -registration(r3036,c62,s899).registration4279,108722 -registration(r3037,c11,s899).registration4280,108752 -registration(r3037,c11,s899).registration4280,108752 -registration(r3038,c119,s900).registration4281,108782 -registration(r3038,c119,s900).registration4281,108782 -registration(r3039,c77,s900).registration4282,108813 -registration(r3039,c77,s900).registration4282,108813 -registration(r3040,c110,s900).registration4283,108843 -registration(r3040,c110,s900).registration4283,108843 -registration(r3041,c2,s900).registration4284,108874 -registration(r3041,c2,s900).registration4284,108874 -registration(r3042,c39,s901).registration4285,108903 -registration(r3042,c39,s901).registration4285,108903 -registration(r3043,c53,s901).registration4286,108933 -registration(r3043,c53,s901).registration4286,108933 -registration(r3044,c19,s901).registration4287,108963 -registration(r3044,c19,s901).registration4287,108963 -registration(r3045,c92,s902).registration4288,108993 -registration(r3045,c92,s902).registration4288,108993 -registration(r3046,c83,s902).registration4289,109023 -registration(r3046,c83,s902).registration4289,109023 -registration(r3047,c85,s902).registration4290,109053 -registration(r3047,c85,s902).registration4290,109053 -registration(r3048,c89,s902).registration4291,109083 -registration(r3048,c89,s902).registration4291,109083 -registration(r3049,c92,s903).registration4292,109113 -registration(r3049,c92,s903).registration4292,109113 -registration(r3050,c124,s903).registration4293,109143 -registration(r3050,c124,s903).registration4293,109143 -registration(r3051,c74,s903).registration4294,109174 -registration(r3051,c74,s903).registration4294,109174 -registration(r3052,c60,s903).registration4295,109204 -registration(r3052,c60,s903).registration4295,109204 -registration(r3053,c108,s904).registration4296,109234 -registration(r3053,c108,s904).registration4296,109234 -registration(r3054,c120,s904).registration4297,109265 -registration(r3054,c120,s904).registration4297,109265 -registration(r3055,c93,s904).registration4298,109296 -registration(r3055,c93,s904).registration4298,109296 -registration(r3056,c53,s904).registration4299,109326 -registration(r3056,c53,s904).registration4299,109326 -registration(r3057,c95,s905).registration4300,109356 -registration(r3057,c95,s905).registration4300,109356 -registration(r3058,c101,s905).registration4301,109386 -registration(r3058,c101,s905).registration4301,109386 -registration(r3059,c97,s905).registration4302,109417 -registration(r3059,c97,s905).registration4302,109417 -registration(r3060,c100,s906).registration4303,109447 -registration(r3060,c100,s906).registration4303,109447 -registration(r3061,c48,s906).registration4304,109478 -registration(r3061,c48,s906).registration4304,109478 -registration(r3062,c38,s906).registration4305,109508 -registration(r3062,c38,s906).registration4305,109508 -registration(r3063,c102,s906).registration4306,109538 -registration(r3063,c102,s906).registration4306,109538 -registration(r3064,c68,s907).registration4307,109569 -registration(r3064,c68,s907).registration4307,109569 -registration(r3065,c127,s907).registration4308,109599 -registration(r3065,c127,s907).registration4308,109599 -registration(r3066,c23,s907).registration4309,109630 -registration(r3066,c23,s907).registration4309,109630 -registration(r3067,c85,s907).registration4310,109660 -registration(r3067,c85,s907).registration4310,109660 -registration(r3068,c30,s908).registration4311,109690 -registration(r3068,c30,s908).registration4311,109690 -registration(r3069,c47,s908).registration4312,109720 -registration(r3069,c47,s908).registration4312,109720 -registration(r3070,c54,s908).registration4313,109750 -registration(r3070,c54,s908).registration4313,109750 -registration(r3071,c5,s909).registration4314,109780 -registration(r3071,c5,s909).registration4314,109780 -registration(r3072,c36,s909).registration4315,109809 -registration(r3072,c36,s909).registration4315,109809 -registration(r3073,c57,s909).registration4316,109839 -registration(r3073,c57,s909).registration4316,109839 -registration(r3074,c22,s910).registration4317,109869 -registration(r3074,c22,s910).registration4317,109869 -registration(r3075,c118,s910).registration4318,109899 -registration(r3075,c118,s910).registration4318,109899 -registration(r3076,c82,s910).registration4319,109930 -registration(r3076,c82,s910).registration4319,109930 -registration(r3077,c85,s910).registration4320,109960 -registration(r3077,c85,s910).registration4320,109960 -registration(r3078,c98,s911).registration4321,109990 -registration(r3078,c98,s911).registration4321,109990 -registration(r3079,c3,s911).registration4322,110020 -registration(r3079,c3,s911).registration4322,110020 -registration(r3080,c13,s911).registration4323,110049 -registration(r3080,c13,s911).registration4323,110049 -registration(r3081,c51,s912).registration4324,110079 -registration(r3081,c51,s912).registration4324,110079 -registration(r3082,c82,s912).registration4325,110109 -registration(r3082,c82,s912).registration4325,110109 -registration(r3083,c25,s912).registration4326,110139 -registration(r3083,c25,s912).registration4326,110139 -registration(r3084,c24,s912).registration4327,110169 -registration(r3084,c24,s912).registration4327,110169 -registration(r3085,c6,s913).registration4328,110199 -registration(r3085,c6,s913).registration4328,110199 -registration(r3086,c47,s913).registration4329,110228 -registration(r3086,c47,s913).registration4329,110228 -registration(r3087,c110,s913).registration4330,110258 -registration(r3087,c110,s913).registration4330,110258 -registration(r3088,c29,s914).registration4331,110289 -registration(r3088,c29,s914).registration4331,110289 -registration(r3089,c19,s914).registration4332,110319 -registration(r3089,c19,s914).registration4332,110319 -registration(r3090,c104,s914).registration4333,110349 -registration(r3090,c104,s914).registration4333,110349 -registration(r3091,c25,s914).registration4334,110380 -registration(r3091,c25,s914).registration4334,110380 -registration(r3092,c81,s914).registration4335,110410 -registration(r3092,c81,s914).registration4335,110410 -registration(r3093,c11,s915).registration4336,110440 -registration(r3093,c11,s915).registration4336,110440 -registration(r3094,c40,s915).registration4337,110470 -registration(r3094,c40,s915).registration4337,110470 -registration(r3095,c103,s915).registration4338,110500 -registration(r3095,c103,s915).registration4338,110500 -registration(r3096,c123,s915).registration4339,110531 -registration(r3096,c123,s915).registration4339,110531 -registration(r3097,c86,s916).registration4340,110562 -registration(r3097,c86,s916).registration4340,110562 -registration(r3098,c50,s916).registration4341,110592 -registration(r3098,c50,s916).registration4341,110592 -registration(r3099,c74,s916).registration4342,110622 -registration(r3099,c74,s916).registration4342,110622 -registration(r3100,c17,s917).registration4343,110652 -registration(r3100,c17,s917).registration4343,110652 -registration(r3101,c14,s917).registration4344,110682 -registration(r3101,c14,s917).registration4344,110682 -registration(r3102,c116,s917).registration4345,110712 -registration(r3102,c116,s917).registration4345,110712 -registration(r3103,c98,s918).registration4346,110743 -registration(r3103,c98,s918).registration4346,110743 -registration(r3104,c122,s918).registration4347,110773 -registration(r3104,c122,s918).registration4347,110773 -registration(r3105,c63,s918).registration4348,110804 -registration(r3105,c63,s918).registration4348,110804 -registration(r3106,c47,s919).registration4349,110834 -registration(r3106,c47,s919).registration4349,110834 -registration(r3107,c71,s919).registration4350,110864 -registration(r3107,c71,s919).registration4350,110864 -registration(r3108,c118,s919).registration4351,110894 -registration(r3108,c118,s919).registration4351,110894 -registration(r3109,c94,s920).registration4352,110925 -registration(r3109,c94,s920).registration4352,110925 -registration(r3110,c101,s920).registration4353,110955 -registration(r3110,c101,s920).registration4353,110955 -registration(r3111,c115,s920).registration4354,110986 -registration(r3111,c115,s920).registration4354,110986 -registration(r3112,c126,s921).registration4355,111017 -registration(r3112,c126,s921).registration4355,111017 -registration(r3113,c18,s921).registration4356,111048 -registration(r3113,c18,s921).registration4356,111048 -registration(r3114,c29,s921).registration4357,111078 -registration(r3114,c29,s921).registration4357,111078 -registration(r3115,c5,s921).registration4358,111108 -registration(r3115,c5,s921).registration4358,111108 -registration(r3116,c86,s922).registration4359,111137 -registration(r3116,c86,s922).registration4359,111137 -registration(r3117,c64,s922).registration4360,111167 -registration(r3117,c64,s922).registration4360,111167 -registration(r3118,c80,s922).registration4361,111197 -registration(r3118,c80,s922).registration4361,111197 -registration(r3119,c99,s922).registration4362,111227 -registration(r3119,c99,s922).registration4362,111227 -registration(r3120,c62,s923).registration4363,111257 -registration(r3120,c62,s923).registration4363,111257 -registration(r3121,c117,s923).registration4364,111287 -registration(r3121,c117,s923).registration4364,111287 -registration(r3122,c70,s923).registration4365,111318 -registration(r3122,c70,s923).registration4365,111318 -registration(r3123,c65,s924).registration4366,111348 -registration(r3123,c65,s924).registration4366,111348 -registration(r3124,c38,s924).registration4367,111378 -registration(r3124,c38,s924).registration4367,111378 -registration(r3125,c64,s924).registration4368,111408 -registration(r3125,c64,s924).registration4368,111408 -registration(r3126,c7,s925).registration4369,111438 -registration(r3126,c7,s925).registration4369,111438 -registration(r3127,c98,s925).registration4370,111467 -registration(r3127,c98,s925).registration4370,111467 -registration(r3128,c35,s925).registration4371,111497 -registration(r3128,c35,s925).registration4371,111497 -registration(r3129,c7,s926).registration4372,111527 -registration(r3129,c7,s926).registration4372,111527 -registration(r3130,c86,s926).registration4373,111556 -registration(r3130,c86,s926).registration4373,111556 -registration(r3131,c43,s926).registration4374,111586 -registration(r3131,c43,s926).registration4374,111586 -registration(r3132,c62,s927).registration4375,111616 -registration(r3132,c62,s927).registration4375,111616 -registration(r3133,c90,s927).registration4376,111646 -registration(r3133,c90,s927).registration4376,111646 -registration(r3134,c83,s927).registration4377,111676 -registration(r3134,c83,s927).registration4377,111676 -registration(r3135,c42,s928).registration4378,111706 -registration(r3135,c42,s928).registration4378,111706 -registration(r3136,c14,s928).registration4379,111736 -registration(r3136,c14,s928).registration4379,111736 -registration(r3137,c49,s928).registration4380,111766 -registration(r3137,c49,s928).registration4380,111766 -registration(r3138,c19,s928).registration4381,111796 -registration(r3138,c19,s928).registration4381,111796 -registration(r3139,c25,s929).registration4382,111826 -registration(r3139,c25,s929).registration4382,111826 -registration(r3140,c5,s929).registration4383,111856 -registration(r3140,c5,s929).registration4383,111856 -registration(r3141,c89,s929).registration4384,111885 -registration(r3141,c89,s929).registration4384,111885 -registration(r3142,c93,s929).registration4385,111915 -registration(r3142,c93,s929).registration4385,111915 -registration(r3143,c39,s930).registration4386,111945 -registration(r3143,c39,s930).registration4386,111945 -registration(r3144,c29,s930).registration4387,111975 -registration(r3144,c29,s930).registration4387,111975 -registration(r3145,c5,s930).registration4388,112005 -registration(r3145,c5,s930).registration4388,112005 -registration(r3146,c103,s931).registration4389,112034 -registration(r3146,c103,s931).registration4389,112034 -registration(r3147,c32,s931).registration4390,112065 -registration(r3147,c32,s931).registration4390,112065 -registration(r3148,c6,s931).registration4391,112095 -registration(r3148,c6,s931).registration4391,112095 -registration(r3149,c92,s932).registration4392,112124 -registration(r3149,c92,s932).registration4392,112124 -registration(r3150,c82,s932).registration4393,112154 -registration(r3150,c82,s932).registration4393,112154 -registration(r3151,c102,s932).registration4394,112184 -registration(r3151,c102,s932).registration4394,112184 -registration(r3152,c62,s932).registration4395,112215 -registration(r3152,c62,s932).registration4395,112215 -registration(r3153,c5,s933).registration4396,112245 -registration(r3153,c5,s933).registration4396,112245 -registration(r3154,c95,s933).registration4397,112274 -registration(r3154,c95,s933).registration4397,112274 -registration(r3155,c32,s933).registration4398,112304 -registration(r3155,c32,s933).registration4398,112304 -registration(r3156,c79,s934).registration4399,112334 -registration(r3156,c79,s934).registration4399,112334 -registration(r3157,c10,s934).registration4400,112364 -registration(r3157,c10,s934).registration4400,112364 -registration(r3158,c124,s934).registration4401,112394 -registration(r3158,c124,s934).registration4401,112394 -registration(r3159,c2,s935).registration4402,112425 -registration(r3159,c2,s935).registration4402,112425 -registration(r3160,c59,s935).registration4403,112454 -registration(r3160,c59,s935).registration4403,112454 -registration(r3161,c37,s935).registration4404,112484 -registration(r3161,c37,s935).registration4404,112484 -registration(r3162,c76,s936).registration4405,112514 -registration(r3162,c76,s936).registration4405,112514 -registration(r3163,c124,s936).registration4406,112544 -registration(r3163,c124,s936).registration4406,112544 -registration(r3164,c91,s936).registration4407,112575 -registration(r3164,c91,s936).registration4407,112575 -registration(r3165,c66,s937).registration4408,112605 -registration(r3165,c66,s937).registration4408,112605 -registration(r3166,c107,s937).registration4409,112635 -registration(r3166,c107,s937).registration4409,112635 -registration(r3167,c39,s937).registration4410,112666 -registration(r3167,c39,s937).registration4410,112666 -registration(r3168,c4,s937).registration4411,112696 -registration(r3168,c4,s937).registration4411,112696 -registration(r3169,c62,s938).registration4412,112725 -registration(r3169,c62,s938).registration4412,112725 -registration(r3170,c121,s938).registration4413,112755 -registration(r3170,c121,s938).registration4413,112755 -registration(r3171,c52,s938).registration4414,112786 -registration(r3171,c52,s938).registration4414,112786 -registration(r3172,c58,s939).registration4415,112816 -registration(r3172,c58,s939).registration4415,112816 -registration(r3173,c47,s939).registration4416,112846 -registration(r3173,c47,s939).registration4416,112846 -registration(r3174,c90,s939).registration4417,112876 -registration(r3174,c90,s939).registration4417,112876 -registration(r3175,c41,s940).registration4418,112906 -registration(r3175,c41,s940).registration4418,112906 -registration(r3176,c116,s940).registration4419,112936 -registration(r3176,c116,s940).registration4419,112936 -registration(r3177,c25,s940).registration4420,112967 -registration(r3177,c25,s940).registration4420,112967 -registration(r3178,c23,s940).registration4421,112997 -registration(r3178,c23,s940).registration4421,112997 -registration(r3179,c71,s941).registration4422,113027 -registration(r3179,c71,s941).registration4422,113027 -registration(r3180,c60,s941).registration4423,113057 -registration(r3180,c60,s941).registration4423,113057 -registration(r3181,c123,s941).registration4424,113087 -registration(r3181,c123,s941).registration4424,113087 -registration(r3182,c118,s941).registration4425,113118 -registration(r3182,c118,s941).registration4425,113118 -registration(r3183,c120,s942).registration4426,113149 -registration(r3183,c120,s942).registration4426,113149 -registration(r3184,c82,s942).registration4427,113180 -registration(r3184,c82,s942).registration4427,113180 -registration(r3185,c23,s942).registration4428,113210 -registration(r3185,c23,s942).registration4428,113210 -registration(r3186,c64,s943).registration4429,113240 -registration(r3186,c64,s943).registration4429,113240 -registration(r3187,c38,s943).registration4430,113270 -registration(r3187,c38,s943).registration4430,113270 -registration(r3188,c83,s943).registration4431,113300 -registration(r3188,c83,s943).registration4431,113300 -registration(r3189,c76,s944).registration4432,113330 -registration(r3189,c76,s944).registration4432,113330 -registration(r3190,c121,s944).registration4433,113360 -registration(r3190,c121,s944).registration4433,113360 -registration(r3191,c52,s944).registration4434,113391 -registration(r3191,c52,s944).registration4434,113391 -registration(r3192,c50,s944).registration4435,113421 -registration(r3192,c50,s944).registration4435,113421 -registration(r3193,c96,s945).registration4436,113451 -registration(r3193,c96,s945).registration4436,113451 -registration(r3194,c28,s945).registration4437,113481 -registration(r3194,c28,s945).registration4437,113481 -registration(r3195,c2,s945).registration4438,113511 -registration(r3195,c2,s945).registration4438,113511 -registration(r3196,c17,s945).registration4439,113540 -registration(r3196,c17,s945).registration4439,113540 -registration(r3197,c21,s946).registration4440,113570 -registration(r3197,c21,s946).registration4440,113570 -registration(r3198,c42,s946).registration4441,113600 -registration(r3198,c42,s946).registration4441,113600 -registration(r3199,c57,s946).registration4442,113630 -registration(r3199,c57,s946).registration4442,113630 -registration(r3200,c51,s947).registration4443,113660 -registration(r3200,c51,s947).registration4443,113660 -registration(r3201,c122,s947).registration4444,113690 -registration(r3201,c122,s947).registration4444,113690 -registration(r3202,c111,s947).registration4445,113721 -registration(r3202,c111,s947).registration4445,113721 -registration(r3203,c68,s948).registration4446,113752 -registration(r3203,c68,s948).registration4446,113752 -registration(r3204,c66,s948).registration4447,113782 -registration(r3204,c66,s948).registration4447,113782 -registration(r3205,c46,s948).registration4448,113812 -registration(r3205,c46,s948).registration4448,113812 -registration(r3206,c2,s948).registration4449,113842 -registration(r3206,c2,s948).registration4449,113842 -registration(r3207,c85,s949).registration4450,113871 -registration(r3207,c85,s949).registration4450,113871 -registration(r3208,c70,s949).registration4451,113901 -registration(r3208,c70,s949).registration4451,113901 -registration(r3209,c57,s949).registration4452,113931 -registration(r3209,c57,s949).registration4452,113931 -registration(r3210,c112,s950).registration4453,113961 -registration(r3210,c112,s950).registration4453,113961 -registration(r3211,c40,s950).registration4454,113992 -registration(r3211,c40,s950).registration4454,113992 -registration(r3212,c115,s950).registration4455,114022 -registration(r3212,c115,s950).registration4455,114022 -registration(r3213,c16,s950).registration4456,114053 -registration(r3213,c16,s950).registration4456,114053 -registration(r3214,c87,s951).registration4457,114083 -registration(r3214,c87,s951).registration4457,114083 -registration(r3215,c18,s951).registration4458,114113 -registration(r3215,c18,s951).registration4458,114113 -registration(r3216,c34,s951).registration4459,114143 -registration(r3216,c34,s951).registration4459,114143 -registration(r3217,c75,s952).registration4460,114173 -registration(r3217,c75,s952).registration4460,114173 -registration(r3218,c44,s952).registration4461,114203 -registration(r3218,c44,s952).registration4461,114203 -registration(r3219,c5,s952).registration4462,114233 -registration(r3219,c5,s952).registration4462,114233 -registration(r3220,c0,s953).registration4463,114262 -registration(r3220,c0,s953).registration4463,114262 -registration(r3221,c35,s953).registration4464,114291 -registration(r3221,c35,s953).registration4464,114291 -registration(r3222,c11,s953).registration4465,114321 -registration(r3222,c11,s953).registration4465,114321 -registration(r3223,c77,s954).registration4466,114351 -registration(r3223,c77,s954).registration4466,114351 -registration(r3224,c35,s954).registration4467,114381 -registration(r3224,c35,s954).registration4467,114381 -registration(r3225,c106,s954).registration4468,114411 -registration(r3225,c106,s954).registration4468,114411 -registration(r3226,c63,s955).registration4469,114442 -registration(r3226,c63,s955).registration4469,114442 -registration(r3227,c23,s955).registration4470,114472 -registration(r3227,c23,s955).registration4470,114472 -registration(r3228,c52,s955).registration4471,114502 -registration(r3228,c52,s955).registration4471,114502 -registration(r3229,c36,s956).registration4472,114532 -registration(r3229,c36,s956).registration4472,114532 -registration(r3230,c9,s956).registration4473,114562 -registration(r3230,c9,s956).registration4473,114562 -registration(r3231,c75,s956).registration4474,114591 -registration(r3231,c75,s956).registration4474,114591 -registration(r3232,c92,s956).registration4475,114621 -registration(r3232,c92,s956).registration4475,114621 -registration(r3233,c81,s957).registration4476,114651 -registration(r3233,c81,s957).registration4476,114651 -registration(r3234,c36,s957).registration4477,114681 -registration(r3234,c36,s957).registration4477,114681 -registration(r3235,c125,s957).registration4478,114711 -registration(r3235,c125,s957).registration4478,114711 -registration(r3236,c72,s958).registration4479,114742 -registration(r3236,c72,s958).registration4479,114742 -registration(r3237,c114,s958).registration4480,114772 -registration(r3237,c114,s958).registration4480,114772 -registration(r3238,c83,s958).registration4481,114803 -registration(r3238,c83,s958).registration4481,114803 -registration(r3239,c84,s959).registration4482,114833 -registration(r3239,c84,s959).registration4482,114833 -registration(r3240,c29,s959).registration4483,114863 -registration(r3240,c29,s959).registration4483,114863 -registration(r3241,c92,s959).registration4484,114893 -registration(r3241,c92,s959).registration4484,114893 -registration(r3242,c41,s959).registration4485,114923 -registration(r3242,c41,s959).registration4485,114923 -registration(r3243,c108,s960).registration4486,114953 -registration(r3243,c108,s960).registration4486,114953 -registration(r3244,c110,s960).registration4487,114984 -registration(r3244,c110,s960).registration4487,114984 -registration(r3245,c121,s960).registration4488,115015 -registration(r3245,c121,s960).registration4488,115015 -registration(r3246,c17,s961).registration4489,115046 -registration(r3246,c17,s961).registration4489,115046 -registration(r3247,c26,s961).registration4490,115076 -registration(r3247,c26,s961).registration4490,115076 -registration(r3248,c14,s961).registration4491,115106 -registration(r3248,c14,s961).registration4491,115106 -registration(r3249,c24,s962).registration4492,115136 -registration(r3249,c24,s962).registration4492,115136 -registration(r3250,c52,s962).registration4493,115166 -registration(r3250,c52,s962).registration4493,115166 -registration(r3251,c56,s962).registration4494,115196 -registration(r3251,c56,s962).registration4494,115196 -registration(r3252,c9,s962).registration4495,115226 -registration(r3252,c9,s962).registration4495,115226 -registration(r3253,c80,s963).registration4496,115255 -registration(r3253,c80,s963).registration4496,115255 -registration(r3254,c12,s963).registration4497,115285 -registration(r3254,c12,s963).registration4497,115285 -registration(r3255,c78,s963).registration4498,115315 -registration(r3255,c78,s963).registration4498,115315 -registration(r3256,c65,s964).registration4499,115345 -registration(r3256,c65,s964).registration4499,115345 -registration(r3257,c113,s964).registration4500,115375 -registration(r3257,c113,s964).registration4500,115375 -registration(r3258,c80,s964).registration4501,115406 -registration(r3258,c80,s964).registration4501,115406 -registration(r3259,c69,s964).registration4502,115436 -registration(r3259,c69,s964).registration4502,115436 -registration(r3260,c112,s965).registration4503,115466 -registration(r3260,c112,s965).registration4503,115466 -registration(r3261,c15,s965).registration4504,115497 -registration(r3261,c15,s965).registration4504,115497 -registration(r3262,c115,s965).registration4505,115527 -registration(r3262,c115,s965).registration4505,115527 -registration(r3263,c98,s966).registration4506,115558 -registration(r3263,c98,s966).registration4506,115558 -registration(r3264,c19,s966).registration4507,115588 -registration(r3264,c19,s966).registration4507,115588 -registration(r3265,c99,s966).registration4508,115618 -registration(r3265,c99,s966).registration4508,115618 -registration(r3266,c36,s966).registration4509,115648 -registration(r3266,c36,s966).registration4509,115648 -registration(r3267,c31,s967).registration4510,115678 -registration(r3267,c31,s967).registration4510,115678 -registration(r3268,c12,s967).registration4511,115708 -registration(r3268,c12,s967).registration4511,115708 -registration(r3269,c60,s967).registration4512,115738 -registration(r3269,c60,s967).registration4512,115738 -registration(r3270,c115,s968).registration4513,115768 -registration(r3270,c115,s968).registration4513,115768 -registration(r3271,c98,s968).registration4514,115799 -registration(r3271,c98,s968).registration4514,115799 -registration(r3272,c78,s968).registration4515,115829 -registration(r3272,c78,s968).registration4515,115829 -registration(r3273,c91,s969).registration4516,115859 -registration(r3273,c91,s969).registration4516,115859 -registration(r3274,c75,s969).registration4517,115889 -registration(r3274,c75,s969).registration4517,115889 -registration(r3275,c80,s969).registration4518,115919 -registration(r3275,c80,s969).registration4518,115919 -registration(r3276,c65,s969).registration4519,115949 -registration(r3276,c65,s969).registration4519,115949 -registration(r3277,c1,s970).registration4520,115979 -registration(r3277,c1,s970).registration4520,115979 -registration(r3278,c33,s970).registration4521,116008 -registration(r3278,c33,s970).registration4521,116008 -registration(r3279,c10,s970).registration4522,116038 -registration(r3279,c10,s970).registration4522,116038 -registration(r3280,c26,s970).registration4523,116068 -registration(r3280,c26,s970).registration4523,116068 -registration(r3281,c99,s971).registration4524,116098 -registration(r3281,c99,s971).registration4524,116098 -registration(r3282,c42,s971).registration4525,116128 -registration(r3282,c42,s971).registration4525,116128 -registration(r3283,c21,s971).registration4526,116158 -registration(r3283,c21,s971).registration4526,116158 -registration(r3284,c121,s972).registration4527,116188 -registration(r3284,c121,s972).registration4527,116188 -registration(r3285,c85,s972).registration4528,116219 -registration(r3285,c85,s972).registration4528,116219 -registration(r3286,c98,s972).registration4529,116249 -registration(r3286,c98,s972).registration4529,116249 -registration(r3287,c111,s973).registration4530,116279 -registration(r3287,c111,s973).registration4530,116279 -registration(r3288,c49,s973).registration4531,116310 -registration(r3288,c49,s973).registration4531,116310 -registration(r3289,c44,s973).registration4532,116340 -registration(r3289,c44,s973).registration4532,116340 -registration(r3290,c16,s974).registration4533,116370 -registration(r3290,c16,s974).registration4533,116370 -registration(r3291,c0,s974).registration4534,116400 -registration(r3291,c0,s974).registration4534,116400 -registration(r3292,c35,s974).registration4535,116429 -registration(r3292,c35,s974).registration4535,116429 -registration(r3293,c110,s975).registration4536,116459 -registration(r3293,c110,s975).registration4536,116459 -registration(r3294,c20,s975).registration4537,116490 -registration(r3294,c20,s975).registration4537,116490 -registration(r3295,c12,s975).registration4538,116520 -registration(r3295,c12,s975).registration4538,116520 -registration(r3296,c13,s976).registration4539,116550 -registration(r3296,c13,s976).registration4539,116550 -registration(r3297,c29,s976).registration4540,116580 -registration(r3297,c29,s976).registration4540,116580 -registration(r3298,c98,s976).registration4541,116610 -registration(r3298,c98,s976).registration4541,116610 -registration(r3299,c123,s977).registration4542,116640 -registration(r3299,c123,s977).registration4542,116640 -registration(r3300,c96,s977).registration4543,116671 -registration(r3300,c96,s977).registration4543,116671 -registration(r3301,c87,s977).registration4544,116701 -registration(r3301,c87,s977).registration4544,116701 -registration(r3302,c38,s977).registration4545,116731 -registration(r3302,c38,s977).registration4545,116731 -registration(r3303,c10,s977).registration4546,116761 -registration(r3303,c10,s977).registration4546,116761 -registration(r3304,c125,s978).registration4547,116791 -registration(r3304,c125,s978).registration4547,116791 -registration(r3305,c121,s978).registration4548,116822 -registration(r3305,c121,s978).registration4548,116822 -registration(r3306,c1,s978).registration4549,116853 -registration(r3306,c1,s978).registration4549,116853 -registration(r3307,c51,s979).registration4550,116882 -registration(r3307,c51,s979).registration4550,116882 -registration(r3308,c32,s979).registration4551,116912 -registration(r3308,c32,s979).registration4551,116912 -registration(r3309,c26,s979).registration4552,116942 -registration(r3309,c26,s979).registration4552,116942 -registration(r3310,c26,s980).registration4553,116972 -registration(r3310,c26,s980).registration4553,116972 -registration(r3311,c123,s980).registration4554,117002 -registration(r3311,c123,s980).registration4554,117002 -registration(r3312,c115,s980).registration4555,117033 -registration(r3312,c115,s980).registration4555,117033 -registration(r3313,c9,s981).registration4556,117064 -registration(r3313,c9,s981).registration4556,117064 -registration(r3314,c3,s981).registration4557,117093 -registration(r3314,c3,s981).registration4557,117093 -registration(r3315,c102,s981).registration4558,117122 -registration(r3315,c102,s981).registration4558,117122 -registration(r3316,c2,s981).registration4559,117153 -registration(r3316,c2,s981).registration4559,117153 -registration(r3317,c67,s982).registration4560,117182 -registration(r3317,c67,s982).registration4560,117182 -registration(r3318,c15,s982).registration4561,117212 -registration(r3318,c15,s982).registration4561,117212 -registration(r3319,c48,s982).registration4562,117242 -registration(r3319,c48,s982).registration4562,117242 -registration(r3320,c9,s983).registration4563,117272 -registration(r3320,c9,s983).registration4563,117272 -registration(r3321,c81,s983).registration4564,117301 -registration(r3321,c81,s983).registration4564,117301 -registration(r3322,c24,s983).registration4565,117331 -registration(r3322,c24,s983).registration4565,117331 -registration(r3323,c20,s984).registration4566,117361 -registration(r3323,c20,s984).registration4566,117361 -registration(r3324,c28,s984).registration4567,117391 -registration(r3324,c28,s984).registration4567,117391 -registration(r3325,c94,s984).registration4568,117421 -registration(r3325,c94,s984).registration4568,117421 -registration(r3326,c5,s984).registration4569,117451 -registration(r3326,c5,s984).registration4569,117451 -registration(r3327,c41,s984).registration4570,117480 -registration(r3327,c41,s984).registration4570,117480 -registration(r3328,c32,s985).registration4571,117510 -registration(r3328,c32,s985).registration4571,117510 -registration(r3329,c107,s985).registration4572,117540 -registration(r3329,c107,s985).registration4572,117540 -registration(r3330,c88,s985).registration4573,117571 -registration(r3330,c88,s985).registration4573,117571 -registration(r3331,c77,s986).registration4574,117601 -registration(r3331,c77,s986).registration4574,117601 -registration(r3332,c50,s986).registration4575,117631 -registration(r3332,c50,s986).registration4575,117631 -registration(r3333,c81,s986).registration4576,117661 -registration(r3333,c81,s986).registration4576,117661 -registration(r3334,c54,s987).registration4577,117691 -registration(r3334,c54,s987).registration4577,117691 -registration(r3335,c57,s987).registration4578,117721 -registration(r3335,c57,s987).registration4578,117721 -registration(r3336,c72,s987).registration4579,117751 -registration(r3336,c72,s987).registration4579,117751 -registration(r3337,c86,s988).registration4580,117781 -registration(r3337,c86,s988).registration4580,117781 -registration(r3338,c105,s988).registration4581,117811 -registration(r3338,c105,s988).registration4581,117811 -registration(r3339,c58,s988).registration4582,117842 -registration(r3339,c58,s988).registration4582,117842 -registration(r3340,c12,s989).registration4583,117872 -registration(r3340,c12,s989).registration4583,117872 -registration(r3341,c94,s989).registration4584,117902 -registration(r3341,c94,s989).registration4584,117902 -registration(r3342,c21,s989).registration4585,117932 -registration(r3342,c21,s989).registration4585,117932 -registration(r3343,c48,s990).registration4586,117962 -registration(r3343,c48,s990).registration4586,117962 -registration(r3344,c70,s990).registration4587,117992 -registration(r3344,c70,s990).registration4587,117992 -registration(r3345,c123,s990).registration4588,118022 -registration(r3345,c123,s990).registration4588,118022 -registration(r3346,c35,s991).registration4589,118053 -registration(r3346,c35,s991).registration4589,118053 -registration(r3347,c87,s991).registration4590,118083 -registration(r3347,c87,s991).registration4590,118083 -registration(r3348,c67,s991).registration4591,118113 -registration(r3348,c67,s991).registration4591,118113 -registration(r3349,c42,s991).registration4592,118143 -registration(r3349,c42,s991).registration4592,118143 -registration(r3350,c73,s992).registration4593,118173 -registration(r3350,c73,s992).registration4593,118173 -registration(r3351,c69,s992).registration4594,118203 -registration(r3351,c69,s992).registration4594,118203 -registration(r3352,c123,s992).registration4595,118233 -registration(r3352,c123,s992).registration4595,118233 -registration(r3353,c49,s993).registration4596,118264 -registration(r3353,c49,s993).registration4596,118264 -registration(r3354,c88,s993).registration4597,118294 -registration(r3354,c88,s993).registration4597,118294 -registration(r3355,c66,s993).registration4598,118324 -registration(r3355,c66,s993).registration4598,118324 -registration(r3356,c25,s994).registration4599,118354 -registration(r3356,c25,s994).registration4599,118354 -registration(r3357,c84,s994).registration4600,118384 -registration(r3357,c84,s994).registration4600,118384 -registration(r3358,c15,s994).registration4601,118414 -registration(r3358,c15,s994).registration4601,118414 -registration(r3359,c27,s995).registration4602,118444 -registration(r3359,c27,s995).registration4602,118444 -registration(r3360,c63,s995).registration4603,118474 -registration(r3360,c63,s995).registration4603,118474 -registration(r3361,c92,s995).registration4604,118504 -registration(r3361,c92,s995).registration4604,118504 -registration(r3362,c50,s995).registration4605,118534 -registration(r3362,c50,s995).registration4605,118534 -registration(r3363,c75,s995).registration4606,118564 -registration(r3363,c75,s995).registration4606,118564 -registration(r3364,c45,s996).registration4607,118594 -registration(r3364,c45,s996).registration4607,118594 -registration(r3365,c66,s996).registration4608,118624 -registration(r3365,c66,s996).registration4608,118624 -registration(r3366,c33,s996).registration4609,118654 -registration(r3366,c33,s996).registration4609,118654 -registration(r3367,c102,s996).registration4610,118684 -registration(r3367,c102,s996).registration4610,118684 -registration(r3368,c77,s997).registration4611,118715 -registration(r3368,c77,s997).registration4611,118715 -registration(r3369,c44,s997).registration4612,118745 -registration(r3369,c44,s997).registration4612,118745 -registration(r3370,c15,s997).registration4613,118775 -registration(r3370,c15,s997).registration4613,118775 -registration(r3371,c114,s997).registration4614,118805 -registration(r3371,c114,s997).registration4614,118805 -registration(r3372,c54,s997).registration4615,118836 -registration(r3372,c54,s997).registration4615,118836 -registration(r3373,c109,s998).registration4616,118866 -registration(r3373,c109,s998).registration4616,118866 -registration(r3374,c59,s998).registration4617,118897 -registration(r3374,c59,s998).registration4617,118897 -registration(r3375,c15,s998).registration4618,118927 -registration(r3375,c15,s998).registration4618,118927 -registration(r3376,c100,s999).registration4619,118957 -registration(r3376,c100,s999).registration4619,118957 -registration(r3377,c73,s999).registration4620,118988 -registration(r3377,c73,s999).registration4620,118988 -registration(r3378,c122,s999).registration4621,119018 -registration(r3378,c122,s999).registration4621,119018 -registration(r3379,c65,s1000).registration4622,119049 -registration(r3379,c65,s1000).registration4622,119049 -registration(r3380,c15,s1000).registration4623,119080 -registration(r3380,c15,s1000).registration4623,119080 -registration(r3381,c105,s1000).registration4624,119111 -registration(r3381,c105,s1000).registration4624,119111 -registration(r3382,c27,s1000).registration4625,119143 -registration(r3382,c27,s1000).registration4625,119143 -registration(r3383,c40,s1001).registration4626,119174 -registration(r3383,c40,s1001).registration4626,119174 -registration(r3384,c94,s1001).registration4627,119205 -registration(r3384,c94,s1001).registration4627,119205 -registration(r3385,c72,s1001).registration4628,119236 -registration(r3385,c72,s1001).registration4628,119236 -registration(r3386,c25,s1001).registration4629,119267 -registration(r3386,c25,s1001).registration4629,119267 -registration(r3387,c4,s1002).registration4630,119298 -registration(r3387,c4,s1002).registration4630,119298 -registration(r3388,c102,s1002).registration4631,119328 -registration(r3388,c102,s1002).registration4631,119328 -registration(r3389,c103,s1002).registration4632,119360 -registration(r3389,c103,s1002).registration4632,119360 -registration(r3390,c125,s1003).registration4633,119392 -registration(r3390,c125,s1003).registration4633,119392 -registration(r3391,c35,s1003).registration4634,119424 -registration(r3391,c35,s1003).registration4634,119424 -registration(r3392,c1,s1003).registration4635,119455 -registration(r3392,c1,s1003).registration4635,119455 -registration(r3393,c62,s1003).registration4636,119485 -registration(r3393,c62,s1003).registration4636,119485 -registration(r3394,c67,s1004).registration4637,119516 -registration(r3394,c67,s1004).registration4637,119516 -registration(r3395,c65,s1004).registration4638,119547 -registration(r3395,c65,s1004).registration4638,119547 -registration(r3396,c101,s1004).registration4639,119578 -registration(r3396,c101,s1004).registration4639,119578 -registration(r3397,c95,s1004).registration4640,119610 -registration(r3397,c95,s1004).registration4640,119610 -registration(r3398,c27,s1005).registration4641,119641 -registration(r3398,c27,s1005).registration4641,119641 -registration(r3399,c54,s1005).registration4642,119672 -registration(r3399,c54,s1005).registration4642,119672 -registration(r3400,c33,s1005).registration4643,119703 -registration(r3400,c33,s1005).registration4643,119703 -registration(r3401,c61,s1006).registration4644,119734 -registration(r3401,c61,s1006).registration4644,119734 -registration(r3402,c63,s1006).registration4645,119765 -registration(r3402,c63,s1006).registration4645,119765 -registration(r3403,c57,s1006).registration4646,119796 -registration(r3403,c57,s1006).registration4646,119796 -registration(r3404,c2,s1007).registration4647,119827 -registration(r3404,c2,s1007).registration4647,119827 -registration(r3405,c81,s1007).registration4648,119857 -registration(r3405,c81,s1007).registration4648,119857 -registration(r3406,c30,s1007).registration4649,119888 -registration(r3406,c30,s1007).registration4649,119888 -registration(r3407,c4,s1008).registration4650,119919 -registration(r3407,c4,s1008).registration4650,119919 -registration(r3408,c3,s1008).registration4651,119949 -registration(r3408,c3,s1008).registration4651,119949 -registration(r3409,c8,s1008).registration4652,119979 -registration(r3409,c8,s1008).registration4652,119979 -registration(r3410,c44,s1008).registration4653,120009 -registration(r3410,c44,s1008).registration4653,120009 -registration(r3411,c125,s1009).registration4654,120040 -registration(r3411,c125,s1009).registration4654,120040 -registration(r3412,c52,s1009).registration4655,120072 -registration(r3412,c52,s1009).registration4655,120072 -registration(r3413,c59,s1009).registration4656,120103 -registration(r3413,c59,s1009).registration4656,120103 -registration(r3414,c125,s1010).registration4657,120134 -registration(r3414,c125,s1010).registration4657,120134 -registration(r3415,c32,s1010).registration4658,120166 -registration(r3415,c32,s1010).registration4658,120166 -registration(r3416,c30,s1010).registration4659,120197 -registration(r3416,c30,s1010).registration4659,120197 -registration(r3417,c127,s1010).registration4660,120228 -registration(r3417,c127,s1010).registration4660,120228 -registration(r3418,c62,s1011).registration4661,120260 -registration(r3418,c62,s1011).registration4661,120260 -registration(r3419,c32,s1011).registration4662,120291 -registration(r3419,c32,s1011).registration4662,120291 -registration(r3420,c102,s1011).registration4663,120322 -registration(r3420,c102,s1011).registration4663,120322 -registration(r3421,c37,s1012).registration4664,120354 -registration(r3421,c37,s1012).registration4664,120354 -registration(r3422,c23,s1012).registration4665,120385 -registration(r3422,c23,s1012).registration4665,120385 -registration(r3423,c69,s1012).registration4666,120416 -registration(r3423,c69,s1012).registration4666,120416 -registration(r3424,c22,s1013).registration4667,120447 -registration(r3424,c22,s1013).registration4667,120447 -registration(r3425,c97,s1013).registration4668,120478 -registration(r3425,c97,s1013).registration4668,120478 -registration(r3426,c55,s1013).registration4669,120509 -registration(r3426,c55,s1013).registration4669,120509 -registration(r3427,c58,s1014).registration4670,120540 -registration(r3427,c58,s1014).registration4670,120540 -registration(r3428,c115,s1014).registration4671,120571 -registration(r3428,c115,s1014).registration4671,120571 -registration(r3429,c97,s1014).registration4672,120603 -registration(r3429,c97,s1014).registration4672,120603 -registration(r3430,c95,s1015).registration4673,120634 -registration(r3430,c95,s1015).registration4673,120634 -registration(r3431,c112,s1015).registration4674,120665 -registration(r3431,c112,s1015).registration4674,120665 -registration(r3432,c87,s1015).registration4675,120697 -registration(r3432,c87,s1015).registration4675,120697 -registration(r3433,c86,s1016).registration4676,120728 -registration(r3433,c86,s1016).registration4676,120728 -registration(r3434,c58,s1016).registration4677,120759 -registration(r3434,c58,s1016).registration4677,120759 -registration(r3435,c7,s1016).registration4678,120790 -registration(r3435,c7,s1016).registration4678,120790 -registration(r3436,c66,s1017).registration4679,120820 -registration(r3436,c66,s1017).registration4679,120820 -registration(r3437,c29,s1017).registration4680,120851 -registration(r3437,c29,s1017).registration4680,120851 -registration(r3438,c92,s1017).registration4681,120882 -registration(r3438,c92,s1017).registration4681,120882 -registration(r3439,c57,s1018).registration4682,120913 -registration(r3439,c57,s1018).registration4682,120913 -registration(r3440,c77,s1018).registration4683,120944 -registration(r3440,c77,s1018).registration4683,120944 -registration(r3441,c18,s1018).registration4684,120975 -registration(r3441,c18,s1018).registration4684,120975 -registration(r3442,c45,s1018).registration4685,121006 -registration(r3442,c45,s1018).registration4685,121006 -registration(r3443,c20,s1019).registration4686,121037 -registration(r3443,c20,s1019).registration4686,121037 -registration(r3444,c113,s1019).registration4687,121068 -registration(r3444,c113,s1019).registration4687,121068 -registration(r3445,c99,s1019).registration4688,121100 -registration(r3445,c99,s1019).registration4688,121100 -registration(r3446,c86,s1019).registration4689,121131 -registration(r3446,c86,s1019).registration4689,121131 -registration(r3447,c115,s1020).registration4690,121162 -registration(r3447,c115,s1020).registration4690,121162 -registration(r3448,c56,s1020).registration4691,121194 -registration(r3448,c56,s1020).registration4691,121194 -registration(r3449,c89,s1020).registration4692,121225 -registration(r3449,c89,s1020).registration4692,121225 -registration(r3450,c23,s1020).registration4693,121256 -registration(r3450,c23,s1020).registration4693,121256 -registration(r3451,c105,s1021).registration4694,121287 -registration(r3451,c105,s1021).registration4694,121287 -registration(r3452,c50,s1021).registration4695,121319 -registration(r3452,c50,s1021).registration4695,121319 -registration(r3453,c49,s1021).registration4696,121350 -registration(r3453,c49,s1021).registration4696,121350 -registration(r3454,c58,s1022).registration4697,121381 -registration(r3454,c58,s1022).registration4697,121381 -registration(r3455,c31,s1022).registration4698,121412 -registration(r3455,c31,s1022).registration4698,121412 -registration(r3456,c41,s1022).registration4699,121443 -registration(r3456,c41,s1022).registration4699,121443 -registration(r3457,c5,s1023).registration4700,121474 -registration(r3457,c5,s1023).registration4700,121474 -registration(r3458,c37,s1023).registration4701,121504 -registration(r3458,c37,s1023).registration4701,121504 -registration(r3459,c57,s1023).registration4702,121535 -registration(r3459,c57,s1023).registration4702,121535 - -packages/CLPBN/examples/School/tables.yap,0 - -packages/CLPBN/horus/BayesBall.cpp,748 -#define assert(assert2,16 -namespace Horus {Horus10,92 -BayesBall::BayesBall (FactorGraph& fg)BayesBall12,111 -BayesBall::BayesBall (FactorGraph& fg)Horus::BayesBall::BayesBall12,111 -BayesBall::getMinimalFactorGraph (FactorGraph& fg, VarIds vids)getMinimalFactorGraph21,226 -BayesBall::getMinimalFactorGraph (FactorGraph& fg, VarIds vids)Horus::BayesBall::getMinimalFactorGraph21,226 -BayesBall::getMinimalFactorGraph (const VarIds& queryIds)getMinimalFactorGraph30,373 -BayesBall::getMinimalFactorGraph (const VarIds& queryIds)Horus::BayesBall::getMinimalFactorGraph30,373 -BayesBall::constructGraph (FactorGraph* fg) constconstructGraph75,1530 -BayesBall::constructGraph (FactorGraph* fg) constHorus::BayesBall::constructGraph75,1530 - -packages/CLPBN/horus/BayesBall.h,1665 -#define YAP_PACKAGES_CLPBN_HORUS_BAYESBALL_H_YAP_PACKAGES_CLPBN_HORUS_BAYESBALL_H_2,46 -namespace Horus {Horus13,219 -class BayesBall {BayesBall15,238 -class BayesBall {Horus::BayesBall15,238 - struct ScheduleInfo {ScheduleInfo24,447 - struct ScheduleInfo {Horus::BayesBall::ScheduleInfo24,447 - ScheduleInfo (BBNode* n, bool vfp, bool vfc)ScheduleInfo25,473 - ScheduleInfo (BBNode* n, bool vfp, bool vfc)Horus::BayesBall::ScheduleInfo::ScheduleInfo25,473 - BBNode* node;node28,594 - BBNode* node;Horus::BayesBall::ScheduleInfo::node28,594 - bool visitedFromParent;visitedFromParent29,615 - bool visitedFromParent;Horus::BayesBall::ScheduleInfo::visitedFromParent29,615 - bool visitedFromChild;visitedFromChild30,649 - bool visitedFromChild;Horus::BayesBall::ScheduleInfo::visitedFromChild30,649 - typedef std::queue> Scheduling;Scheduling33,690 - typedef std::queue> Scheduling;Horus::BayesBall::Scheduling33,690 - FactorGraph& fg_;fg_41,950 - FactorGraph& fg_;Horus::BayesBall::fg_41,950 - BayesBallGraph& dag_;dag_42,976 - BayesBallGraph& dag_;Horus::BayesBall::dag_42,976 -BayesBall::scheduleParents (const BBNode* n, Scheduling& sch) constscheduleParents48,1021 -BayesBall::scheduleParents (const BBNode* n, Scheduling& sch) constHorus::BayesBall::scheduleParents48,1021 -BayesBall::scheduleChilds (const BBNode* n, Scheduling& sch) constscheduleChilds60,1300 -BayesBall::scheduleChilds (const BBNode* n, Scheduling& sch) constHorus::BayesBall::scheduleChilds60,1300 - -packages/CLPBN/horus/BayesBallGraph.cpp,1000 -#define assert(assert3,17 -namespace Horus {Horus16,175 -BayesBallGraph::addNode (BBNode* n)addNode19,199 -BayesBallGraph::addNode (BBNode* n)Horus::BayesBallGraph::addNode19,199 -BayesBallGraph::addEdge (VarId vid1, VarId vid2)addEdge29,356 -BayesBallGraph::addEdge (VarId vid1, VarId vid2)Horus::BayesBallGraph::addEdge29,356 -BayesBallGraph::getNode (VarId vid) constgetNode44,734 -BayesBallGraph::getNode (VarId vid) constHorus::BayesBallGraph::getNode44,734 -BayesBallGraph::getNode (VarId vid)getNode54,922 -BayesBallGraph::getNode (VarId vid)Horus::BayesBallGraph::getNode54,922 -BayesBallGraph::setIndexes()setIndexes64,1101 -BayesBallGraph::setIndexes()Horus::BayesBallGraph::setIndexes64,1101 -BayesBallGraph::clear()clear74,1222 -BayesBallGraph::clear()Horus::BayesBallGraph::clear74,1222 -BayesBallGraph::exportToGraphViz (const char* fileName)exportToGraphViz84,1333 -BayesBallGraph::exportToGraphViz (const char* fileName)Horus::BayesBallGraph::exportToGraphViz84,1333 - -packages/CLPBN/horus/BayesBallGraph.h,3649 -#define YAP_PACKAGES_CLPBN_HORUS_BAYESBALLGRAPH_H_YAP_PACKAGES_CLPBN_HORUS_BAYESBALLGRAPH_H_2,51 -namespace Horus {Horus11,185 -class BBNode : public Var {BBNode13,204 -class BBNode : public Var {Horus::BBNode13,204 - BBNode (Var* v) : Var (v), visited_(false),BBNode15,242 - BBNode (Var* v) : Var (v), visited_(false),Horus::BBNode::BBNode15,242 - const std::vector& childs() const { return childs_; }childs18,344 - const std::vector& childs() const { return childs_; }Horus::BBNode::childs18,344 - std::vector& childs() { return childs_; }childs20,412 - std::vector& childs() { return childs_; }Horus::BBNode::childs20,412 - const std::vector& parents() const { return parents_; }parents22,468 - const std::vector& parents() const { return parents_; }Horus::BBNode::parents22,468 - std::vector& parents() { return parents_; }parents24,538 - std::vector& parents() { return parents_; }Horus::BBNode::parents24,538 - void addParent (BBNode* p) { parents_.push_back (p); }addParent26,596 - void addParent (BBNode* p) { parents_.push_back (p); }Horus::BBNode::addParent26,596 - void addChild (BBNode* c) { childs_.push_back (c); }addChild28,656 - void addChild (BBNode* c) { childs_.push_back (c); }Horus::BBNode::addChild28,656 - bool isVisited() const { return visited_; }isVisited30,714 - bool isVisited() const { return visited_; }Horus::BBNode::isVisited30,714 - void setAsVisited() { visited_ = true; }setAsVisited32,763 - void setAsVisited() { visited_ = true; }Horus::BBNode::setAsVisited32,763 - bool isMarkedAbove() const { return markedAbove_; }isMarkedAbove34,809 - bool isMarkedAbove() const { return markedAbove_; }Horus::BBNode::isMarkedAbove34,809 - void markAbove() { markedAbove_ = true; }markAbove36,866 - void markAbove() { markedAbove_ = true; }Horus::BBNode::markAbove36,866 - bool isMarkedBelow() const { return markedBelow_; }isMarkedBelow38,913 - bool isMarkedBelow() const { return markedBelow_; }Horus::BBNode::isMarkedBelow38,913 - void markBelow() { markedBelow_ = true; }markBelow40,970 - void markBelow() { markedBelow_ = true; }Horus::BBNode::markBelow40,970 - void clear() { visited_ = markedAbove_ = markedBelow_ = false; }clear42,1017 - void clear() { visited_ = markedAbove_ = markedBelow_ = false; }Horus::BBNode::clear42,1017 - bool visited_;visited_45,1098 - bool visited_;Horus::BBNode::visited_45,1098 - bool markedAbove_;markedAbove_46,1117 - bool markedAbove_;Horus::BBNode::markedAbove_46,1117 - bool markedBelow_;markedBelow_47,1140 - bool markedBelow_;Horus::BBNode::markedBelow_47,1140 - std::vector childs_;childs_49,1164 - std::vector childs_;Horus::BBNode::childs_49,1164 - std::vector parents_;parents_50,1198 - std::vector parents_;Horus::BBNode::parents_50,1198 -class BayesBallGraph {BayesBallGraph54,1238 -class BayesBallGraph {Horus::BayesBallGraph54,1238 - BayesBallGraph() { }BayesBallGraph56,1271 - BayesBallGraph() { }Horus::BayesBallGraph::BayesBallGraph56,1271 - bool empty() const { return nodes_.empty(); }empty58,1297 - bool empty() const { return nodes_.empty(); }Horus::BayesBallGraph::empty58,1297 - std::vector nodes_;nodes_75,1599 - std::vector nodes_;Horus::BayesBallGraph::nodes_75,1599 - std::unordered_map varMap_;varMap_76,1647 - std::unordered_map varMap_;Horus::BayesBallGraph::varMap_76,1647 - -packages/CLPBN/horus/BeliefProp.cpp,4122 -namespace Horus {Horus13,166 -double BeliefProp::accuracy_ = 0.0001;accuracy_15,185 -double BeliefProp::accuracy_ = 0.0001;Horus::BeliefProp::accuracy_15,185 -unsigned BeliefProp::maxIter_ = 1000;maxIter_16,227 -unsigned BeliefProp::maxIter_ = 1000;Horus::BeliefProp::maxIter_16,227 -BeliefProp::MsgSchedule BeliefProp::schedule_ =schedule_18,268 -BeliefProp::MsgSchedule BeliefProp::schedule_ =Horus::BeliefProp::schedule_18,268 -BeliefProp::BeliefProp (const FactorGraph& fg)BeliefProp23,349 -BeliefProp::BeliefProp (const FactorGraph& fg)Horus::BeliefProp::BeliefProp23,349 -BeliefProp::~BeliefProp()~BeliefProp31,456 -BeliefProp::~BeliefProp()Horus::BeliefProp::~BeliefProp31,456 -BeliefProp::solveQuery (VarIds queryVids)solveQuery42,587 -BeliefProp::solveQuery (VarIds queryVids)Horus::BeliefProp::solveQuery42,587 -BeliefProp::printSolverFlags() constprintSolverFlags53,794 -BeliefProp::printSolverFlags() constHorus::BeliefProp::printSolverFlags53,794 -BeliefProp::getPosterioriOf (VarId vid)getPosterioriOf74,1451 -BeliefProp::getPosterioriOf (VarId vid)Horus::BeliefProp::getPosterioriOf74,1451 -BeliefProp::getJointDistributionOf (const VarIds& jointVarIds)getJointDistributionOf107,2248 -BeliefProp::getJointDistributionOf (const VarIds& jointVarIds)Horus::BeliefProp::getJointDistributionOf107,2248 -BeliefProp::getFactorJoint (getFactorJoint130,2780 -BeliefProp::getFactorJoint (Horus::BeliefProp::getFactorJoint130,2780 -BeliefProp::BpLink::BpLink (FacNode* fn, VarNode* vn)BpLink157,3405 -BeliefProp::BpLink::BpLink (FacNode* fn, VarNode* vn)Horus::BeliefProp::BpLink::BpLink157,3405 -BeliefProp::BpLink::clearResidual()clearResidual171,3685 -BeliefProp::BpLink::clearResidual()Horus::BeliefProp::BpLink::clearResidual171,3685 -BeliefProp::BpLink::updateResidual()updateResidual179,3752 -BeliefProp::BpLink::updateResidual()Horus::BeliefProp::BpLink::updateResidual179,3752 -BeliefProp::BpLink::updateMessage()updateMessage187,3848 -BeliefProp::BpLink::updateMessage()Horus::BeliefProp::BpLink::updateMessage187,3848 -BeliefProp::BpLink::toString() consttoString195,3932 -BeliefProp::BpLink::toString() constHorus::BeliefProp::BpLink::toString195,3932 -BeliefProp::calculateAndUpdateMessage (BpLink* link, bool calcResidual)calculateAndUpdateMessage207,4090 -BeliefProp::calculateAndUpdateMessage (BpLink* link, bool calcResidual)Horus::BeliefProp::calculateAndUpdateMessage207,4090 -BeliefProp::calculateMessage (BpLink* link, bool calcResidual)calculateMessage223,4410 -BeliefProp::calculateMessage (BpLink* link, bool calcResidual)Horus::BeliefProp::calculateMessage223,4410 -BeliefProp::updateMessage (BpLink* link)updateMessage238,4685 -BeliefProp::updateMessage (BpLink* link)Horus::BeliefProp::updateMessage238,4685 -BeliefProp::runSolver()runSolver250,4877 -BeliefProp::runSolver()Horus::BeliefProp::runSolver250,4877 -BeliefProp::createLinks()createLinks299,6177 -BeliefProp::createLinks()Horus::BeliefProp::createLinks299,6177 -BeliefProp::maxResidualSchedule()maxResidualSchedule313,6493 -BeliefProp::maxResidualSchedule()Horus::BeliefProp::maxResidualSchedule313,6493 -BeliefProp::calcFactorToVarMsg (BpLink* link)calcFactorToVarMsg370,8250 -BeliefProp::calcFactorToVarMsg (BpLink* link)Horus::BeliefProp::calcFactorToVarMsg370,8250 -BeliefProp::getVarToFactorMsg (const BpLink* link)getVarToFactorMsg435,10529 -BeliefProp::getVarToFactorMsg (const BpLink* link)Horus::BeliefProp::getVarToFactorMsg435,10529 -BeliefProp::getJointByConditioning (const VarIds& jointVarIds) constgetJointByConditioning478,11543 -BeliefProp::getJointByConditioning (const VarIds& jointVarIds) constHorus::BeliefProp::getJointByConditioning478,11543 -BeliefProp::initializeSolver()initializeSolver487,11724 -BeliefProp::initializeSolver()Horus::BeliefProp::initializeSolver487,11724 -BeliefProp::converged()converged511,12351 -BeliefProp::converged()Horus::BeliefProp::converged511,12351 -BeliefProp::printLinkInformation() constprintLinkInformation560,13417 -BeliefProp::printLinkInformation() constHorus::BeliefProp::printLinkInformation560,13417 - -packages/CLPBN/horus/BeliefProp.h,6144 -#define YAP_PACKAGES_CLPBN_HORUS_BELIEFPROP_H_YAP_PACKAGES_CLPBN_HORUS_BELIEFPROP_H_2,47 -namespace Horus {Horus12,200 -class BeliefProp : public GroundSolver {BeliefProp14,219 -class BeliefProp : public GroundSolver {Horus::BeliefProp14,219 - enum class MsgSchedule {MsgSchedule19,304 - enum class MsgSchedule {Horus::BeliefProp::MsgSchedule19,304 - seqFixedSch,seqFixedSch20,333 - seqFixedSch,Horus::BeliefProp::MsgSchedule::seqFixedSch20,333 - seqRandomSch,seqRandomSch21,352 - seqRandomSch,Horus::BeliefProp::MsgSchedule::seqRandomSch21,352 - parallelSch,parallelSch22,372 - parallelSch,Horus::BeliefProp::MsgSchedule::parallelSch22,372 - static double accuracy() { return accuracy_; }accuracy40,725 - static double accuracy() { return accuracy_; }Horus::BeliefProp::accuracy40,725 - static void setAccuracy (double acc) { accuracy_ = acc; }setAccuracy42,777 - static void setAccuracy (double acc) { accuracy_ = acc; }Horus::BeliefProp::setAccuracy42,777 - static unsigned maxIterations() { return maxIter_; }maxIterations44,840 - static unsigned maxIterations() { return maxIter_; }Horus::BeliefProp::maxIterations44,840 - static void setMaxIterations (unsigned mi) { maxIter_ = mi; }setMaxIterations46,898 - static void setMaxIterations (unsigned mi) { maxIter_ = mi; }Horus::BeliefProp::setMaxIterations46,898 - static MsgSchedule msgSchedule() { return schedule_; }msgSchedule48,965 - static MsgSchedule msgSchedule() { return schedule_; }Horus::BeliefProp::msgSchedule48,965 - static void setMsgSchedule (MsgSchedule sch) { schedule_ = sch; }setMsgSchedule50,1025 - static void setMsgSchedule (MsgSchedule sch) { schedule_ = sch; }Horus::BeliefProp::setMsgSchedule50,1025 - class BpLink {BpLink53,1109 - class BpLink {Horus::BeliefProp::BpLink53,1109 - virtual ~BpLink() { };~BpLink57,1186 - virtual ~BpLink() { };Horus::BeliefProp::BpLink::~BpLink57,1186 - FacNode* facNode() const { return fac_; }facNode59,1218 - FacNode* facNode() const { return fac_; }Horus::BeliefProp::BpLink::facNode59,1218 - VarNode* varNode() const { return var_; }varNode61,1269 - VarNode* varNode() const { return var_; }Horus::BeliefProp::BpLink::varNode61,1269 - const Params& message() const { return *currMsg_; }message63,1320 - const Params& message() const { return *currMsg_; }Horus::BeliefProp::BpLink::message63,1320 - Params& nextMessage() { return *nextMsg_; }nextMessage65,1381 - Params& nextMessage() { return *nextMsg_; }Horus::BeliefProp::BpLink::nextMessage65,1381 - double residual() const { return residual_; }residual67,1434 - double residual() const { return residual_; }Horus::BeliefProp::BpLink::residual67,1434 - FacNode* fac_;fac_78,1647 - FacNode* fac_;Horus::BeliefProp::BpLink::fac_78,1647 - VarNode* var_;var_79,1671 - VarNode* var_;Horus::BeliefProp::BpLink::var_79,1671 - Params v1_;v1_80,1695 - Params v1_;Horus::BeliefProp::BpLink::v1_80,1695 - Params v2_;v2_81,1718 - Params v2_;Horus::BeliefProp::BpLink::v2_81,1718 - Params* currMsg_;currMsg_82,1741 - Params* currMsg_;Horus::BeliefProp::BpLink::currMsg_82,1741 - Params* nextMsg_;nextMsg_83,1769 - Params* nextMsg_;Horus::BeliefProp::BpLink::nextMsg_83,1769 - double residual_;residual_84,1797 - double residual_;Horus::BeliefProp::BpLink::residual_84,1797 - struct CmpResidual {CmpResidual90,1893 - struct CmpResidual {Horus::BeliefProp::CmpResidual90,1893 - bool operator() (const BpLink* l1, const BpLink* l2) {operator ()91,1918 - bool operator() (const BpLink* l1, const BpLink* l2) {Horus::BeliefProp::CmpResidual::operator ()91,1918 - typedef std::vector BpLinks;BpLinks95,2036 - typedef std::vector BpLinks;Horus::BeliefProp::BpLinks95,2036 - typedef std::multiset SortedOrder;SortedOrder96,2109 - typedef std::multiset SortedOrder;Horus::BeliefProp::SortedOrder96,2109 - typedef std::unordered_map BpLinkMap;BpLinkMap97,2186 - typedef std::unordered_map BpLinkMap;Horus::BeliefProp::BpLinkMap97,2186 - BpLinks links_;links_121,2805 - BpLinks links_;Horus::BeliefProp::links_121,2805 - unsigned nIters_;nIters_122,2843 - unsigned nIters_;Horus::BeliefProp::nIters_122,2843 - bool runned_;runned_123,2882 - bool runned_;Horus::BeliefProp::runned_123,2882 - SortedOrder sortedOrder_;sortedOrder_124,2921 - SortedOrder sortedOrder_;Horus::BeliefProp::sortedOrder_124,2921 - BpLinkMap linkMap_;linkMap_125,2965 - BpLinkMap linkMap_;Horus::BeliefProp::linkMap_125,2965 - static double accuracy_;accuracy_127,3006 - static double accuracy_;Horus::BeliefProp::accuracy_127,3006 - std::vector varsLinks_;varsLinks_136,3160 - std::vector varsLinks_;Horus::BeliefProp::varsLinks_136,3160 - std::vector facsLinks_;facsLinks_137,3202 - std::vector facsLinks_;Horus::BeliefProp::facsLinks_137,3202 - static unsigned maxIter_;maxIter_139,3245 - static unsigned maxIter_;Horus::BeliefProp::maxIter_139,3245 - static MsgSchedule schedule_;schedule_140,3285 - static MsgSchedule schedule_;Horus::BeliefProp::schedule_140,3285 -BeliefProp::getLinks (const VarNode* var)getLinks148,3404 -BeliefProp::getLinks (const VarNode* var)Horus::BeliefProp::getLinks148,3404 -BeliefProp::getLinks (const FacNode* fac)getLinks156,3519 -BeliefProp::getLinks (const FacNode* fac)Horus::BeliefProp::getLinks156,3519 - -packages/CLPBN/horus/ConstraintTree.cpp,11265 -namespace Horus {Horus11,125 -class CTNode {CTNode13,144 -class CTNode {Horus::CTNode13,144 - CTNode (const CTNode& n, const CTChilds& chs = CTChilds()) CTNode15,169 - CTNode (const CTNode& n, const CTChilds& chs = CTChilds()) Horus::CTNode::CTNode15,169 - CTNode (Symbol s, unsigned l, const CTChilds& chs = CTChilds())CTNode18,301 - CTNode (Symbol s, unsigned l, const CTChilds& chs = CTChilds())Horus::CTNode::CTNode18,301 - unsigned level() const { return level_; }level21,420 - unsigned level() const { return level_; }Horus::CTNode::level21,420 - void setLevel (unsigned level) { level_ = level; }setLevel23,467 - void setLevel (unsigned level) { level_ = level; }Horus::CTNode::setLevel23,467 - Symbol symbol() const { return symbol_; }symbol25,523 - Symbol symbol() const { return symbol_; }Horus::CTNode::symbol25,523 - void setSymbol (Symbol s) { symbol_ = s; }setSymbol27,570 - void setSymbol (Symbol s) { symbol_ = s; }Horus::CTNode::setSymbol27,570 - CTChilds& childs() { return childs_; }childs29,618 - CTChilds& childs() { return childs_; }Horus::CTNode::childs29,618 - const CTChilds& childs() const { return childs_; }childs31,662 - const CTChilds& childs() const { return childs_; }Horus::CTNode::childs31,662 - size_t nrChilds() const { return childs_.size(); }nrChilds33,718 - size_t nrChilds() const { return childs_.size(); }Horus::CTNode::nrChilds33,718 - bool isRoot() const { return level_ == 0; }isRoot35,774 - bool isRoot() const { return level_ == 0; }Horus::CTNode::isRoot35,774 - bool isLeaf() const { return childs_.empty(); }isLeaf37,823 - bool isLeaf() const { return childs_.empty(); }Horus::CTNode::isLeaf37,823 - Symbol symbol_;symbol_60,1300 - Symbol symbol_;Horus::CTNode::symbol_60,1300 - CTChilds childs_;childs_61,1324 - CTChilds childs_;Horus::CTNode::childs_61,1324 - unsigned level_;level_62,1348 - unsigned level_;Horus::CTNode::level_62,1348 -CTNode::findSymbol (Symbol symb)findSymbol70,1434 -CTNode::findSymbol (Symbol symb)Horus::CTNode::findSymbol70,1434 -CmpSymbol::operator() (const CTNode* n1, const CTNode* n2) constoperator ()79,1540 -CmpSymbol::operator() (const CTNode* n1, const CTNode* n2) constHorus::CmpSymbol::operator ()79,1540 -CTNode::mergeSubtree (CTNode* n, bool updateLevels)mergeSubtree87,1655 -CTNode::mergeSubtree (CTNode* n, bool updateLevels)Horus::CTNode::mergeSubtree87,1655 -CTNode::removeChild (CTNode* child)removeChild109,2159 -CTNode::removeChild (CTNode* child)Horus::CTNode::removeChild109,2159 -CTNode::removeChilds()removeChilds118,2270 -CTNode::removeChilds()Horus::CTNode::removeChilds118,2270 -CTNode::removeAndDeleteChild (CTNode* child)removeAndDeleteChild126,2324 -CTNode::removeAndDeleteChild (CTNode* child)Horus::CTNode::removeAndDeleteChild126,2324 -CTNode::removeAndDeleteAllChilds()removeAndDeleteAllChilds135,2437 -CTNode::removeAndDeleteAllChilds()Horus::CTNode::removeAndDeleteAllChilds135,2437 -CTNode::childSymbols() constchildSymbols147,2636 -CTNode::childSymbols() constHorus::CTNode::childSymbols147,2636 -CTNode::updateChildLevels (CTNode* n, unsigned level)updateChildLevels160,2857 -CTNode::updateChildLevels (CTNode* n, unsigned level)Horus::CTNode::updateChildLevels160,2857 -CTNode::copySubtree (const CTNode* root1)copySubtree180,3335 -CTNode::copySubtree (const CTNode* root1)Horus::CTNode::copySubtree180,3335 -CTNode::deleteSubtree (CTNode* n)deleteSubtree211,4256 -CTNode::deleteSubtree (CTNode* n)Horus::CTNode::deleteSubtree211,4256 -operator<< (std::ostream& out, const CTNode& n)operator <<225,4503 -operator<< (std::ostream& out, const CTNode& n)Horus::operator <<225,4503 -ConstraintTree::ConstraintTree (unsigned nrLvs)ConstraintTree234,4629 -ConstraintTree::ConstraintTree (unsigned nrLvs)Horus::ConstraintTree::ConstraintTree234,4629 -ConstraintTree::ConstraintTree (const LogVars& logVars)ConstraintTree245,4837 -ConstraintTree::ConstraintTree (const LogVars& logVars)Horus::ConstraintTree::ConstraintTree245,4837 -ConstraintTree::ConstraintTree (ConstraintTree254,4994 -ConstraintTree::ConstraintTree (Horus::ConstraintTree::ConstraintTree254,4994 -ConstraintTree::ConstraintTree (ConstraintTree268,5260 -ConstraintTree::ConstraintTree (Horus::ConstraintTree::ConstraintTree268,5260 -ConstraintTree::ConstraintTree (const ConstraintTree& ct)ConstraintTree291,5852 -ConstraintTree::ConstraintTree (const ConstraintTree& ct)Horus::ConstraintTree::ConstraintTree291,5852 -ConstraintTree::ConstraintTree (ConstraintTree298,5931 -ConstraintTree::ConstraintTree (Horus::ConstraintTree::ConstraintTree298,5931 -ConstraintTree::~ConstraintTree()~ConstraintTree310,6159 -ConstraintTree::~ConstraintTree()Horus::ConstraintTree::~ConstraintTree310,6159 -ConstraintTree::empty() constempty318,6238 -ConstraintTree::empty() constHorus::ConstraintTree::empty318,6238 -ConstraintTree::addTuple (const Tuple& tuple)addTuple326,6314 -ConstraintTree::addTuple (const Tuple& tuple)Horus::ConstraintTree::addTuple326,6314 -ConstraintTree::containsTuple (const Tuple& tuple)containsTuple344,6728 -ConstraintTree::containsTuple (const Tuple& tuple)Horus::ConstraintTree::containsTuple344,6728 -ConstraintTree::moveToTop (const LogVars& lvs)moveToTop361,7053 -ConstraintTree::moveToTop (const LogVars& lvs)Horus::ConstraintTree::moveToTop361,7053 -ConstraintTree::moveToBottom (const LogVars& lvs)moveToBottom375,7324 -ConstraintTree::moveToBottom (const LogVars& lvs)Horus::ConstraintTree::moveToBottom375,7324 -ConstraintTree::join (ConstraintTree* ct, bool oneTwoOne)join390,7663 -ConstraintTree::join (ConstraintTree* ct, bool oneTwoOne)Horus::ConstraintTree::join390,7663 -ConstraintTree::getLevel (LogVar X) constgetLevel444,9177 -ConstraintTree::getLevel (LogVar X) constHorus::ConstraintTree::getLevel444,9177 -ConstraintTree::rename (LogVar X_old, LogVar X_new)rename454,9359 -ConstraintTree::rename (LogVar X_old, LogVar X_new)Horus::ConstraintTree::rename454,9359 -ConstraintTree::applySubstitution (const Substitution& theta)applySubstitution472,9708 -ConstraintTree::applySubstitution (const Substitution& theta)Horus::ConstraintTree::applySubstitution472,9708 -ConstraintTree::project (const LogVarSet& X)project483,9922 -ConstraintTree::project (const LogVarSet& X)Horus::ConstraintTree::project483,9922 -ConstraintTree::projectedCopy (const LogVarSet& X)projectedCopy492,10054 -ConstraintTree::projectedCopy (const LogVarSet& X)Horus::ConstraintTree::projectedCopy492,10054 -ConstraintTree::remove (const LogVarSet& X)remove502,10183 -ConstraintTree::remove (const LogVarSet& X)Horus::ConstraintTree::remove502,10183 -ConstraintTree::ConstraintTree::isSingleton (LogVar X)isSingleton522,10625 -ConstraintTree::ConstraintTree::isSingleton (LogVar X)Horus::ConstraintTree::ConstraintTree::isSingleton522,10625 -ConstraintTree::singletons()singletons550,11193 -ConstraintTree::singletons()Horus::ConstraintTree::singletons550,11193 -ConstraintTree::tupleSet (unsigned stopLevel) consttupleSet564,11418 -ConstraintTree::tupleSet (unsigned stopLevel) constHorus::ConstraintTree::tupleSet564,11418 -ConstraintTree::tupleSet (const LogVars& originalLvs)tupleSet578,11686 -ConstraintTree::tupleSet (const LogVars& originalLvs)Horus::ConstraintTree::tupleSet578,11686 -ConstraintTree::exportToGraphViz (exportToGraphViz617,12712 -ConstraintTree::exportToGraphViz (Horus::ConstraintTree::exportToGraphViz617,12712 -ConstraintTree::isCountNormalized (const LogVarSet& Ys)isCountNormalized669,14342 -ConstraintTree::isCountNormalized (const LogVarSet& Ys)Horus::ConstraintTree::isCountNormalized669,14342 -ConstraintTree::getConditionalCount (const LogVarSet& Ys)getConditionalCount695,14944 -ConstraintTree::getConditionalCount (const LogVarSet& Ys)Horus::ConstraintTree::getConditionalCount695,14944 -ConstraintTree::getConditionalCounts (const LogVarSet& Ys)getConditionalCounts719,15428 -ConstraintTree::getConditionalCounts (const LogVarSet& Ys)Horus::ConstraintTree::getConditionalCounts719,15428 -ConstraintTree::isCartesianProduct (const LogVarSet& Xs)isCartesianProduct743,16043 -ConstraintTree::isCartesianProduct (const LogVarSet& Xs)Horus::ConstraintTree::isCartesianProduct743,16043 -ConstraintTree::split (const Tuple& tuple)split767,16610 -ConstraintTree::split (const Tuple& tuple)Horus::ConstraintTree::split767,16610 -ConstraintTree::split (split778,16901 -ConstraintTree::split (Horus::ConstraintTree::split778,16901 -ConstraintTree::countNormalize (const LogVarSet& Ys)countNormalize804,17833 -ConstraintTree::countNormalize (const LogVarSet& Ys)Horus::ConstraintTree::countNormalize804,17833 -ConstraintTree::jointCountNormalize (jointCountNormalize838,18902 -ConstraintTree::jointCountNormalize (Horus::ConstraintTree::jointCountNormalize838,18902 -ConstraintTree::expand (LogVar X)expand929,21721 -ConstraintTree::expand (LogVar X)Horus::ConstraintTree::expand929,21721 -ConstraintTree::ground (LogVar X)ground966,22824 -ConstraintTree::ground (LogVar X)Horus::ConstraintTree::ground966,22824 -ConstraintTree::cloneLogVar (LogVar X_1, LogVar X_2)cloneLogVar985,23271 -ConstraintTree::cloneLogVar (LogVar X_1, LogVar X_2)Horus::ConstraintTree::cloneLogVar985,23271 -ConstraintTree::operator= (const ConstraintTree& ct)operator =1000,23633 -ConstraintTree::operator= (const ConstraintTree& ct)Horus::ConstraintTree::operator =1000,23633 -ConstraintTree::countTuples (const CTNode* n) constcountTuples1013,23854 -ConstraintTree::countTuples (const CTNode* n) constHorus::ConstraintTree::countTuples1013,23854 -ConstraintTree::getNodesBelow (CTNode* fromHere) constgetNodesBelow1030,24164 -ConstraintTree::getNodesBelow (CTNode* fromHere) constHorus::ConstraintTree::getNodesBelow1030,24164 -ConstraintTree::getNodesAtLevel (unsigned level) constgetNodesAtLevel1050,24586 -ConstraintTree::getNodesAtLevel (unsigned level) constHorus::ConstraintTree::getNodesAtLevel1050,24586 -ConstraintTree::nrNodes (const CTNode* n) constnrNodes1076,25148 -ConstraintTree::nrNodes (const CTNode* n) constHorus::ConstraintTree::nrNodes1076,25148 -ConstraintTree::appendOnBottom (CTNode* n, const CTChilds& childs)appendOnBottom1091,25418 -ConstraintTree::appendOnBottom (CTNode* n, const CTChilds& childs)Horus::ConstraintTree::appendOnBottom1091,25418 -ConstraintTree::swapLogVar (LogVar X)swapLogVar1115,25958 -ConstraintTree::swapLogVar (LogVar X)Horus::ConstraintTree::swapLogVar1115,25958 -ConstraintTree::join (join1145,26972 -ConstraintTree::join (Horus::ConstraintTree::join1145,26972 -ConstraintTree::getTuples (getTuples1167,27456 -ConstraintTree::getTuples (Horus::ConstraintTree::getTuples1167,27456 -ConstraintTree::size() constsize1201,28307 -ConstraintTree::size() constHorus::ConstraintTree::size1201,28307 -ConstraintTree::nrSymbols (LogVar X)nrSymbols1209,28382 -ConstraintTree::nrSymbols (LogVar X)Horus::ConstraintTree::nrSymbols1209,28382 -ConstraintTree::countNormalize (countNormalize1218,28520 -ConstraintTree::countNormalize (Horus::ConstraintTree::countNormalize1218,28520 -ConstraintTree::split (split1245,29303 -ConstraintTree::split (Horus::ConstraintTree::split1245,29303 - -packages/CLPBN/horus/ConstraintTree.h,1570 -#define YAP_PACKAGES_CLPBN_HORUS_CONSTRAINTTREE_H_YAP_PACKAGES_CLPBN_HORUS_CONSTRAINTTREE_H_2,51 -namespace Horus {Horus14,229 -typedef std::vector CTNodes;CTNodes20,286 -typedef std::vector CTNodes;Horus::CTNodes20,286 -typedef std::vector ConstraintTrees;ConstraintTrees21,333 -typedef std::vector ConstraintTrees;Horus::ConstraintTrees21,333 -struct CmpSymbol {CmpSymbol24,390 -struct CmpSymbol {Horus::CmpSymbol24,390 -typedef TinySet CTChilds;CTChilds29,476 -typedef TinySet CTChilds;Horus::CTChilds29,476 -class ConstraintTree {ConstraintTree32,526 -class ConstraintTree {Horus::ConstraintTree32,526 - CTNode* root() const { return root_; }root48,891 - CTNode* root() const { return root_; }Horus::ConstraintTree::root48,891 - CTNode* root_;root_142,3129 - CTNode* root_;Horus::ConstraintTree::root_142,3129 - LogVars logVars_;logVars_143,3151 - LogVars logVars_;Horus::ConstraintTree::logVars_143,3151 - LogVarSet logVarSet_;logVarSet_144,3176 - LogVarSet logVarSet_;Horus::ConstraintTree::logVarSet_144,3176 -ConstraintTree::logVars() constlogVars150,3231 -ConstraintTree::logVars() constHorus::ConstraintTree::logVars150,3231 -ConstraintTree::logVarSet() constlogVarSet159,3360 -ConstraintTree::logVarSet() constHorus::ConstraintTree::logVarSet159,3360 -ConstraintTree::nrLogVars() constnrLogVars168,3483 -ConstraintTree::nrLogVars() constHorus::ConstraintTree::nrLogVars168,3483 - -packages/CLPBN/horus/CountingBp.cpp,5075 -namespace Horus {Horus10,110 -class VarCluster {VarCluster12,129 -class VarCluster {Horus::VarCluster12,129 - VarCluster (const VarNodes& vs) : members_(vs) { }VarCluster14,158 - VarCluster (const VarNodes& vs) : members_(vs) { }Horus::VarCluster::VarCluster14,158 - const VarNode* first() const { return members_.front(); }first16,214 - const VarNode* first() const { return members_.front(); }Horus::VarCluster::first16,214 - const VarNodes& members() const { return members_; }members18,277 - const VarNodes& members() const { return members_; }Horus::VarCluster::members18,277 - VarNode* representative() const { return repr_; }representative20,335 - VarNode* representative() const { return repr_; }Horus::VarCluster::representative20,335 - void setRepresentative (VarNode* vn) { repr_ = vn; }setRepresentative22,390 - void setRepresentative (VarNode* vn) { repr_ = vn; }Horus::VarCluster::setRepresentative22,390 - VarNodes members_;members_25,459 - VarNodes members_;Horus::VarCluster::members_25,459 - VarNode* repr_;repr_26,483 - VarNode* repr_;Horus::VarCluster::repr_26,483 -class FacCluster {FacCluster33,554 -class FacCluster {Horus::FacCluster33,554 - typedef std::vector VarClusters;VarClusters35,584 - typedef std::vector VarClusters;Horus::FacCluster::VarClusters35,584 - FacCluster (const FacNodes& fcs, const VarClusters& vcs)FacCluster38,645 - FacCluster (const FacNodes& fcs, const VarClusters& vcs)Horus::FacCluster::FacCluster38,645 - const FacNode* first() const { return members_.front(); }first41,754 - const FacNode* first() const { return members_.front(); }Horus::FacCluster::first41,754 - const FacNodes& members() const { return members_; }members43,817 - const FacNodes& members() const { return members_; }Horus::FacCluster::members43,817 - FacNode* representative() const { return repr_; }representative45,875 - FacNode* representative() const { return repr_; }Horus::FacCluster::representative45,875 - void setRepresentative (FacNode* fn) { repr_ = fn; }setRepresentative47,930 - void setRepresentative (FacNode* fn) { repr_ = fn; }Horus::FacCluster::setRepresentative47,930 - VarClusters& varClusters() { return varClusters_; }varClusters49,988 - VarClusters& varClusters() { return varClusters_; }Horus::FacCluster::varClusters49,988 - FacNodes members_;members_51,1045 - FacNodes members_;Horus::FacCluster::members_51,1045 - FacNode* repr_;repr_52,1072 - FacNode* repr_;Horus::FacCluster::repr_52,1072 - VarClusters varClusters_;varClusters_53,1096 - VarClusters varClusters_;Horus::FacCluster::varClusters_53,1096 -bool CountingBp::fif_ = true;fif_60,1177 -bool CountingBp::fif_ = true;Horus::CountingBp::fif_60,1177 -CountingBp::CountingBp (const FactorGraph& fg)CountingBp63,1209 -CountingBp::CountingBp (const FactorGraph& fg)Horus::CountingBp::CountingBp63,1209 -CountingBp::~CountingBp()~CountingBp75,1473 -CountingBp::~CountingBp()Horus::CountingBp::~CountingBp75,1473 -CountingBp::printSolverFlags() constprintSolverFlags90,1725 -CountingBp::printSolverFlags() constHorus::CountingBp::printSolverFlags90,1725 -CountingBp::solveQuery (VarIds queryVids)solveQuery113,2489 -CountingBp::solveQuery (VarIds queryVids)Horus::CountingBp::solveQuery113,2489 -CountingBp::findIdenticalFactors()findIdenticalFactors148,3458 -CountingBp::findIdenticalFactors()Horus::CountingBp::findIdenticalFactors148,3458 -CountingBp::setInitialColors()setInitialColors182,4306 -CountingBp::setInitialColors()Horus::CountingBp::setInitialColors182,4306 -CountingBp::createGroups()createGroups222,5541 -CountingBp::createGroups()Horus::CountingBp::createGroups222,5541 -CountingBp::createClusters (createClusters286,7596 -CountingBp::createClusters (Horus::CountingBp::createClusters286,7596 -CountingBp::getSignature (const VarNode* varNode)getSignature320,8675 -CountingBp::getSignature (const VarNode* varNode)Horus::CountingBp::getSignature320,8675 -CountingBp::getSignature (const FacNode* facNode)getSignature338,9153 -CountingBp::getSignature (const FacNode* facNode)Horus::CountingBp::getSignature338,9153 -CountingBp::getRepresentative (VarId vid)getRepresentative353,9470 -CountingBp::getRepresentative (VarId vid)Horus::CountingBp::getRepresentative353,9470 -CountingBp::getRepresentative (FacNode* fn)getRepresentative363,9671 -CountingBp::getRepresentative (FacNode* fn)Horus::CountingBp::getRepresentative363,9671 -CountingBp::getCompressedFactorGraph()getCompressedFactorGraph376,9917 -CountingBp::getCompressedFactorGraph()Horus::CountingBp::getCompressedFactorGraph376,9917 -CountingBp::getWeights() constgetWeights405,10838 -CountingBp::getWeights() constHorus::CountingBp::getWeights405,10838 -CountingBp::getWeight (getWeight424,11326 -CountingBp::getWeight (Horus::CountingBp::getWeight424,11326 -CountingBp::printGroups (printGroups447,11900 -CountingBp::printGroups (Horus::CountingBp::printGroups447,11900 - -packages/CLPBN/horus/CountingBp.h,5331 -#define YAP_PACKAGES_CLPBN_HORUS_COUNTINGBP_H_YAP_PACKAGES_CLPBN_HORUS_COUNTINGBP_H_2,47 -namespace Horus {Horus12,211 -hash_combine (size_t seed, const T& v)hash_combine20,319 -hash_combine (size_t seed, const T& v)Horus::hash_combine20,319 -namespace std {std28,465 -template struct hash> {hash30,482 -template struct hash> {std::hash30,482 - size_t operator() (const std::pair& p) const {operator ()31,550 - size_t operator() (const std::pair& p) const {std::hash::operator ()31,550 -template struct hash>hash35,680 -template struct hash>std::hash35,680 - size_t operator() (const std::vector& vec) constoperator ()37,732 - size_t operator() (const std::vector& vec) conststd::hash::operator ()37,732 -namespace Horus {Horus52,1066 -class CountingBp : public GroundSolver {CountingBp54,1085 -class CountingBp : public GroundSolver {Horus::CountingBp54,1085 - static void setFindIdenticalFactorsFlag (bool fif) { fif_ = fif; }setFindIdenticalFactorsFlag64,1265 - static void setFindIdenticalFactorsFlag (bool fif) { fif_ = fif; }Horus::CountingBp::setFindIdenticalFactorsFlag64,1265 - typedef long Color;Color67,1348 - typedef long Color;Horus::CountingBp::Color67,1348 - typedef std::vector Colors;Colors68,1411 - typedef std::vector Colors;Horus::CountingBp::Colors68,1411 - typedef std::vector> VarSignature;VarSignature70,1476 - typedef std::vector> VarSignature;Horus::CountingBp::VarSignature70,1476 - typedef std::vector FacSignature;FacSignature71,1546 - typedef std::vector FacSignature;Horus::CountingBp::FacSignature71,1546 - typedef std::vector VarClusters;VarClusters73,1617 - typedef std::vector VarClusters;Horus::CountingBp::VarClusters73,1617 - typedef std::vector FacClusters;FacClusters74,1686 - typedef std::vector FacClusters;Horus::CountingBp::FacClusters74,1686 - typedef std::unordered_map DistColorMap;DistColorMap76,1756 - typedef std::unordered_map DistColorMap;Horus::CountingBp::DistColorMap76,1756 - typedef std::unordered_map VarColorMap;VarColorMap77,1826 - typedef std::unordered_map VarColorMap;Horus::CountingBp::VarColorMap77,1826 - typedef std::unordered_map VarSignMap;VarSignMap78,1895 - typedef std::unordered_map VarSignMap;Horus::CountingBp::VarSignMap78,1895 - typedef std::unordered_map FacSignMap;FacSignMap79,1963 - typedef std::unordered_map FacSignMap;Horus::CountingBp::FacSignMap79,1963 - typedef std::unordered_map VarClusterMap;VarClusterMap80,2031 - typedef std::unordered_map VarClusterMap;Horus::CountingBp::VarClusterMap80,2031 - Color freeColor_;freeColor_117,2926 - Color freeColor_;Horus::CountingBp::freeColor_117,2926 - Colors varColors_;varColors_118,2962 - Colors varColors_;Horus::CountingBp::varColors_118,2962 - Colors facColors_;facColors_119,2998 - Colors facColors_;Horus::CountingBp::facColors_119,2998 - VarClusters varClusters_;varClusters_120,3034 - VarClusters varClusters_;Horus::CountingBp::varClusters_120,3034 - FacClusters facClusters_;facClusters_121,3072 - FacClusters facClusters_;Horus::CountingBp::facClusters_121,3072 - VarClusterMap varClusterMap_;varClusterMap_122,3110 - VarClusterMap varClusterMap_;Horus::CountingBp::varClusterMap_122,3110 - const FactorGraph* compressedFg_;compressedFg_123,3150 - const FactorGraph* compressedFg_;Horus::CountingBp::compressedFg_123,3150 - WeightedBp* solver_;solver_124,3189 - WeightedBp* solver_;Horus::CountingBp::solver_124,3189 - static bool fif_;fif_126,3223 - static bool fif_;Horus::CountingBp::fif_126,3223 -CountingBp::getNewColor()getNewColor134,3320 -CountingBp::getNewColor()Horus::CountingBp::getNewColor134,3320 -CountingBp::getColor (const VarNode* vn) constgetColor143,3420 -CountingBp::getColor (const VarNode* vn) constHorus::CountingBp::getColor143,3420 -CountingBp::getColor (const FacNode* fn) constgetColor151,3536 -CountingBp::getColor (const FacNode* fn) constHorus::CountingBp::getColor151,3536 -CountingBp::setColor (const VarNode* vn, CountingBp::Color c)setColor159,3639 -CountingBp::setColor (const VarNode* vn, CountingBp::Color c)Horus::CountingBp::setColor159,3639 -CountingBp::setColor (const FacNode* fn, Color c)setColor167,3754 -CountingBp::setColor (const FacNode* fn, Color c)Horus::CountingBp::setColor167,3754 - -packages/CLPBN/horus/ElimGraph.cpp,1595 -namespace Horus {Horus7,65 -ElimGraph::ElimHeuristic ElimGraph::elimHeuristic_ =elimHeuristic_9,84 -ElimGraph::ElimHeuristic ElimGraph::elimHeuristic_ =Horus::ElimGraph::elimHeuristic_9,84 -ElimGraph::ElimGraph (const std::vector& factors)ElimGraph13,174 -ElimGraph::ElimGraph (const std::vector& factors)Horus::ElimGraph::ElimGraph13,174 -ElimGraph::~ElimGraph()~ElimGraph44,1022 -ElimGraph::~ElimGraph()Horus::ElimGraph::~ElimGraph44,1022 -ElimGraph::getEliminatingOrder (const VarIds& excludedVids)getEliminatingOrder54,1133 -ElimGraph::getEliminatingOrder (const VarIds& excludedVids)Horus::ElimGraph::getEliminatingOrder54,1133 -ElimGraph::print() constprint80,1851 -ElimGraph::print() constHorus::ElimGraph::print80,1851 -ElimGraph::exportToGraphViz (exportToGraphViz95,2178 -ElimGraph::exportToGraphViz (Horus::ElimGraph::exportToGraphViz95,2178 -ElimGraph::getEliminationOrder (getEliminationOrder138,3413 -ElimGraph::getEliminationOrder (Horus::ElimGraph::getEliminationOrder138,3413 -ElimGraph::addNode (EGNode* n)addNode160,3995 -ElimGraph::addNode (EGNode* n)Horus::ElimGraph::addNode160,3995 -ElimGraph::getEGNode (VarId vid) constgetEGNode170,4162 -ElimGraph::getEGNode (VarId vid) constHorus::ElimGraph::getEGNode170,4162 -ElimGraph::getLowestCostNode() constgetLowestCostNode180,4360 -ElimGraph::getLowestCostNode() constHorus::ElimGraph::getLowestCostNode180,4360 -ElimGraph::connectAllNeighbors (const EGNode* n)connectAllNeighbors232,5691 -ElimGraph::connectAllNeighbors (const EGNode* n)Horus::ElimGraph::connectAllNeighbors232,5691 - -packages/CLPBN/horus/ElimGraph.h,4073 -#define YAP_PACKAGES_CLPBN_HORUS_ELIMGRAPH_H_YAP_PACKAGES_CLPBN_HORUS_ELIMGRAPH_H_2,46 -namespace Horus {Horus14,224 -class ElimGraph {ElimGraph16,243 -class ElimGraph {Horus::ElimGraph16,243 - enum class ElimHeuristic {ElimHeuristic18,271 - enum class ElimHeuristic {Horus::ElimGraph::ElimHeuristic18,271 - sequentialEh,sequentialEh19,302 - sequentialEh,Horus::ElimGraph::ElimHeuristic::sequentialEh19,302 - minNeighborsEh,minNeighborsEh20,322 - minNeighborsEh,Horus::ElimGraph::ElimHeuristic::minNeighborsEh20,322 - minWeightEh,minWeightEh21,344 - minWeightEh,Horus::ElimGraph::ElimHeuristic::minWeightEh21,344 - minFillEh,minFillEh22,363 - minFillEh,Horus::ElimGraph::ElimHeuristic::minFillEh22,363 - static ElimHeuristic elimHeuristic() { return elimHeuristic_; }elimHeuristic39,697 - static ElimHeuristic elimHeuristic() { return elimHeuristic_; }Horus::ElimGraph::elimHeuristic39,697 - static void setElimHeuristic (ElimHeuristic eh) { elimHeuristic_ = eh; }setElimHeuristic41,766 - static void setElimHeuristic (ElimHeuristic eh) { elimHeuristic_ = eh; }Horus::ElimGraph::setElimHeuristic41,766 - typedef TinySet EGNeighs;EGNeighs46,874 - typedef TinySet EGNeighs;Horus::ElimGraph::EGNeighs46,874 - class EGNode : public Var {EGNode48,914 - class EGNode : public Var {Horus::ElimGraph::EGNode48,914 - EGNode (VarId vid, unsigned range) : Var (vid, range) { }EGNode50,960 - EGNode (VarId vid, unsigned range) : Var (vid, range) { }Horus::ElimGraph::EGNode::EGNode50,960 - void addNeighbor (EGNode* n) { neighs_.insert (n); }addNeighbor52,1027 - void addNeighbor (EGNode* n) { neighs_.insert (n); }Horus::ElimGraph::EGNode::addNeighbor52,1027 - void removeNeighbor (EGNode* n) { neighs_.remove (n); }removeNeighbor54,1090 - void removeNeighbor (EGNode* n) { neighs_.remove (n); }Horus::ElimGraph::EGNode::removeNeighbor54,1090 - bool isNeighbor (EGNode* n) const { return neighs_.contains (n); }isNeighbor56,1155 - bool isNeighbor (EGNode* n) const { return neighs_.contains (n); }Horus::ElimGraph::EGNode::isNeighbor56,1155 - const EGNeighs& neighbors() const { return neighs_; }neighbors58,1231 - const EGNeighs& neighbors() const { return neighs_; }Horus::ElimGraph::EGNode::neighbors58,1231 - EGNeighs neighs_;neighs_61,1309 - EGNeighs neighs_;Horus::ElimGraph::EGNode::neighs_61,1309 - std::vector nodes_;nodes_84,1812 - std::vector nodes_;Horus::ElimGraph::nodes_84,1812 - EGNeighs unmarked_;unmarked_85,1860 - EGNeighs unmarked_;Horus::ElimGraph::unmarked_85,1860 - std::unordered_map varMap_;varMap_86,1911 - std::unordered_map varMap_;Horus::ElimGraph::varMap_86,1911 - static ElimHeuristic elimHeuristic_;elimHeuristic_88,1961 - static ElimHeuristic elimHeuristic_;Horus::ElimGraph::elimHeuristic_88,1961 -ElimGraph::addEdge (EGNode* n1, EGNode* n2)addEdge100,2134 -ElimGraph::addEdge (EGNode* n1, EGNode* n2)Horus::ElimGraph::addEdge100,2134 -ElimGraph::getNeighborsCost (const EGNode* n) constgetNeighborsCost110,2270 -ElimGraph::getNeighborsCost (const EGNode* n) constHorus::ElimGraph::getNeighborsCost110,2270 -ElimGraph::getWeightCost (const EGNode* n) constgetWeightCost118,2377 -ElimGraph::getWeightCost (const EGNode* n) constHorus::ElimGraph::getWeightCost118,2377 -ElimGraph::getFillCost (const EGNode* n) constgetFillCost131,2611 -ElimGraph::getFillCost (const EGNode* n) constHorus::ElimGraph::getFillCost131,2611 -ElimGraph::getWeightedFillCost (const EGNode* n) constgetWeightedFillCost150,2993 -ElimGraph::getWeightedFillCost (const EGNode* n) constHorus::ElimGraph::getWeightedFillCost150,2993 -ElimGraph::neighbors (EGNode* n1, EGNode* n2) constneighbors169,3419 -ElimGraph::neighbors (EGNode* n1, EGNode* n2) constHorus::ElimGraph::neighbors169,3419 - -packages/CLPBN/horus/Factor.cpp,1455 -namespace Horus {Horus12,141 -Factor::Factor (Factor14,160 -Factor::Factor (Horus::Factor::Factor14,160 -Factor::Factor (Factor29,418 -Factor::Factor (Horus::Factor::Factor29,418 -Factor::sumOut (VarId vid)sumOut46,746 -Factor::sumOut (VarId vid)Horus::Factor::sumOut46,746 -Factor::sumOutAllExcept (VarId vid)sumOutAllExcept63,1083 -Factor::sumOutAllExcept (VarId vid)Horus::Factor::sumOutAllExcept63,1083 -Factor::sumOutAllExcept (const VarIds& vids)sumOutAllExcept72,1213 -Factor::sumOutAllExcept (const VarIds& vids)Horus::Factor::sumOutAllExcept72,1213 -Factor::sumOutAllExceptIndex (size_t idx)sumOutAllExceptIndex85,1474 -Factor::sumOutAllExceptIndex (size_t idx)Horus::Factor::sumOutAllExceptIndex85,1474 -Factor::multiply (const Factor& g)multiply96,1651 -Factor::multiply (const Factor& g)Horus::Factor::multiply96,1651 -Factor::getLabel() constgetLabel109,1818 -Factor::getLabel() constHorus::Factor::getLabel109,1818 -Factor::print() constprint124,2051 -Factor::print() constHorus::Factor::print124,2051 -Factor::sumOutFirstVariable()sumOutFirstVariable145,2559 -Factor::sumOutFirstVariable()Horus::Factor::sumOutFirstVariable145,2559 -Factor::sumOutLastVariable()sumOutLastVariable169,3090 -Factor::sumOutLastVariable()Horus::Factor::sumOutLastVariable169,3090 -Factor::sumOutArgs (const std::vector& mask)sumOutArgs194,3629 -Factor::sumOutArgs (const std::vector& mask)Horus::Factor::sumOutArgs194,3629 - -packages/CLPBN/horus/Factor.h,316 -#define YAP_PACKAGES_CLPBN_HORUS_FACTOR_H_YAP_PACKAGES_CLPBN_HORUS_FACTOR_H_2,43 -namespace Horus {Horus13,191 -class Factor : public GenericFactor {Factor15,210 -class Factor : public GenericFactor {Horus::Factor15,210 - Factor() { }Factor17,265 - Factor() { }Horus::Factor::Factor17,265 - -packages/CLPBN/horus/FactorGraph.cpp,3467 -namespace Horus {Horus11,130 -bool FactorGraph::exportLd_ = false;exportLd_13,149 -bool FactorGraph::exportLd_ = false;Horus::FactorGraph::exportLd_13,149 -bool FactorGraph::exportUai_ = false;exportUai_14,187 -bool FactorGraph::exportUai_ = false;Horus::FactorGraph::exportUai_14,187 -bool FactorGraph::exportGv_ = false;exportGv_15,225 -bool FactorGraph::exportGv_ = false;Horus::FactorGraph::exportGv_15,225 -bool FactorGraph::printFg_ = false;printFg_16,263 -bool FactorGraph::printFg_ = false;Horus::FactorGraph::printFg_16,263 -FactorGraph::FactorGraph (const FactorGraph& fg)FactorGraph19,303 -FactorGraph::FactorGraph (const FactorGraph& fg)Horus::FactorGraph::FactorGraph19,303 -FactorGraph::~FactorGraph()~FactorGraph26,373 -FactorGraph::~FactorGraph()Horus::FactorGraph::~FactorGraph26,373 -FactorGraph::addFactor (const Factor& factor)addFactor39,571 -FactorGraph::addFactor (const Factor& factor)Horus::FactorGraph::addFactor39,571 -FactorGraph::addVarNode (VarNode* vn)addVarNode59,1036 -FactorGraph::addVarNode (VarNode* vn)Horus::FactorGraph::addVarNode59,1036 -FactorGraph::addFacNode (FacNode* fn)addFacNode69,1206 -FactorGraph::addFacNode (FacNode* fn)Horus::FactorGraph::addFacNode69,1206 -FactorGraph::addEdge (VarNode* vn, FacNode* fn)addEdge78,1323 -FactorGraph::addEdge (VarNode* vn, FacNode* fn)Horus::FactorGraph::addEdge78,1323 -FactorGraph::isTree() constisTree87,1431 -FactorGraph::isTree() constHorus::FactorGraph::isTree87,1431 -FactorGraph::getStructure()getStructure95,1509 -FactorGraph::getStructure()Horus::FactorGraph::getStructure95,1509 -FactorGraph::print() constprint115,1965 -FactorGraph::print() constHorus::FactorGraph::print115,1965 -FactorGraph::exportToLibDai (const char* fileName) constexportToLibDai138,2624 -FactorGraph::exportToLibDai (const char* fileName) constHorus::FactorGraph::exportToLibDai138,2624 -FactorGraph::exportToUai (const char* fileName) constexportToUai170,3514 -FactorGraph::exportToUai (const char* fileName) constHorus::FactorGraph::exportToUai170,3514 -FactorGraph::exportToGraphViz (const char* fileName) constexportToGraphViz217,4897 -FactorGraph::exportToGraphViz (const char* fileName) constHorus::FactorGraph::exportToGraphViz217,4897 -FactorGraph::operator= (const FactorGraph& fg)operator =252,5964 -FactorGraph::operator= (const FactorGraph& fg)Horus::FactorGraph::operator =252,5964 -FactorGraph::readFromUaiFormat (const char* fileName)readFromUaiFormat272,6324 -FactorGraph::readFromUaiFormat (const char* fileName)Horus::FactorGraph::readFromUaiFormat272,6324 -FactorGraph::readFromLibDaiFormat (const char* fileName)readFromLibDaiFormat359,8792 -FactorGraph::readFromLibDaiFormat (const char* fileName)Horus::FactorGraph::readFromLibDaiFormat359,8792 -FactorGraph::clone (const FactorGraph& fg)clone427,10521 -FactorGraph::clone (const FactorGraph& fg)Horus::FactorGraph::clone427,10521 -FactorGraph::containsCycle() constcontainsCycle448,11109 -FactorGraph::containsCycle() constHorus::FactorGraph::containsCycle448,11109 -FactorGraph::containsCycle (containsCycle466,11521 -FactorGraph::containsCycle (Horus::FactorGraph::containsCycle466,11521 -FactorGraph::containsCycle (containsCycle491,12146 -FactorGraph::containsCycle (Horus::FactorGraph::containsCycle491,12146 -FactorGraph::ignoreLines (std::ifstream& is)ignoreLines516,12768 -FactorGraph::ignoreLines (std::ifstream& is)Horus::FactorGraph::ignoreLines516,12768 - -packages/CLPBN/horus/FactorGraph.h,7842 -#define YAP_PACKAGES_CLPBN_HORUS_FACTORGRAPH_H_YAP_PACKAGES_CLPBN_HORUS_FACTORGRAPH_H_2,48 -namespace Horus {Horus14,247 -class VarNode : public Var {VarNode19,283 -class VarNode : public Var {Horus::VarNode19,283 - VarNode (VarId varId, unsigned nrStates,VarNode21,322 - VarNode (VarId varId, unsigned nrStates,Horus::VarNode::VarNode21,322 - VarNode (const Var* v) : Var (v) { }VarNode25,460 - VarNode (const Var* v) : Var (v) { }Horus::VarNode::VarNode25,460 - void addNeighbor (FacNode* fn) { neighs_.push_back (fn); }addNeighbor27,502 - void addNeighbor (FacNode* fn) { neighs_.push_back (fn); }Horus::VarNode::addNeighbor27,502 - const FacNodes& neighbors() const { return neighs_; }neighbors29,566 - const FacNodes& neighbors() const { return neighs_; }Horus::VarNode::neighbors29,566 - FacNodes neighs_;neighs_32,636 - FacNodes neighs_;Horus::VarNode::neighs_32,636 -class FacNode {FacNode39,705 -class FacNode {Horus::FacNode39,705 - FacNode (const Factor& f) : factor_(f), index_(-1) { }FacNode41,731 - FacNode (const Factor& f) : factor_(f), index_(-1) { }Horus::FacNode::FacNode41,731 - const Factor& factor() const { return factor_; }factor43,791 - const Factor& factor() const { return factor_; }Horus::FacNode::factor43,791 - Factor& factor() { return factor_; }factor45,845 - Factor& factor() { return factor_; }Horus::FacNode::factor45,845 - void addNeighbor (VarNode* vn) { neighs_.push_back (vn); }addNeighbor47,887 - void addNeighbor (VarNode* vn) { neighs_.push_back (vn); }Horus::FacNode::addNeighbor47,887 - const VarNodes& neighbors() const { return neighs_; }neighbors49,951 - const VarNodes& neighbors() const { return neighs_; }Horus::FacNode::neighbors49,951 - size_t getIndex() const { return index_; }getIndex51,1010 - size_t getIndex() const { return index_; }Horus::FacNode::getIndex51,1010 - void setIndex (size_t index) { index_ = index; }setIndex53,1058 - void setIndex (size_t index) { index_ = index; }Horus::FacNode::setIndex53,1058 - std::string getLabel() { return factor_.getLabel(); }getLabel55,1112 - std::string getLabel() { return factor_.getLabel(); }Horus::FacNode::getLabel55,1112 - VarNodes neighs_;neighs_58,1182 - VarNodes neighs_;Horus::FacNode::neighs_58,1182 - Factor factor_;factor_59,1205 - Factor factor_;Horus::FacNode::factor_59,1205 - size_t index_;index_60,1228 - size_t index_;Horus::FacNode::index_60,1228 -class FactorGraph {FactorGraph67,1297 -class FactorGraph {Horus::FactorGraph67,1297 - FactorGraph() : bayesFactors_(false) { }FactorGraph69,1327 - FactorGraph() : bayesFactors_(false) { }Horus::FactorGraph::FactorGraph69,1327 - const VarNodes& varNodes() const { return varNodes_; }varNodes75,1432 - const VarNodes& varNodes() const { return varNodes_; }Horus::FactorGraph::varNodes75,1432 - const FacNodes& facNodes() const { return facNodes_; }facNodes77,1492 - const FacNodes& facNodes() const { return facNodes_; }Horus::FactorGraph::facNodes77,1492 - void setFactorsAsBayesian() { bayesFactors_ = true; }setFactorsAsBayesian79,1552 - void setFactorsAsBayesian() { bayesFactors_ = true; }Horus::FactorGraph::setFactorsAsBayesian79,1552 - bool bayesianFactors() const { return bayesFactors_; }bayesianFactors81,1611 - bool bayesianFactors() const { return bayesFactors_; }Horus::FactorGraph::bayesianFactors81,1611 - size_t nrVarNodes() const { return varNodes_.size(); }nrVarNodes83,1671 - size_t nrVarNodes() const { return varNodes_.size(); }Horus::FactorGraph::nrVarNodes83,1671 - size_t nrFacNodes() const { return facNodes_.size(); }nrFacNodes85,1731 - size_t nrFacNodes() const { return facNodes_.size(); }Horus::FactorGraph::nrFacNodes85,1731 - static bool exportToLibDai() { return exportLd_; }exportToLibDai115,2377 - static bool exportToLibDai() { return exportLd_; }Horus::FactorGraph::exportToLibDai115,2377 - static bool exportToUai() { return exportUai_; }exportToUai117,2433 - static bool exportToUai() { return exportUai_; }Horus::FactorGraph::exportToUai117,2433 - static bool exportGraphViz() { return exportGv_; }exportGraphViz119,2487 - static bool exportGraphViz() { return exportGv_; }Horus::FactorGraph::exportGraphViz119,2487 - static bool printFactorGraph() { return printFg_; }printFactorGraph121,2543 - static bool printFactorGraph() { return printFg_; }Horus::FactorGraph::printFactorGraph121,2543 - static void enableExportToLibDai() { exportLd_ = true; }enableExportToLibDai123,2600 - static void enableExportToLibDai() { exportLd_ = true; }Horus::FactorGraph::enableExportToLibDai123,2600 - static void disableExportToLibDai() { exportLd_ = false; }disableExportToLibDai125,2662 - static void disableExportToLibDai() { exportLd_ = false; }Horus::FactorGraph::disableExportToLibDai125,2662 - static void enableExportToUai() { exportUai_ = true; }enableExportToUai127,2726 - static void enableExportToUai() { exportUai_ = true; }Horus::FactorGraph::enableExportToUai127,2726 - static void disableExportToUai() { exportUai_ = false; }disableExportToUai129,2786 - static void disableExportToUai() { exportUai_ = false; }Horus::FactorGraph::disableExportToUai129,2786 - static void enableExportToGraphViz() { exportGv_ = true; }enableExportToGraphViz131,2848 - static void enableExportToGraphViz() { exportGv_ = true; }Horus::FactorGraph::enableExportToGraphViz131,2848 - static void disableExportToGraphViz() { exportGv_ = false; }disableExportToGraphViz133,2912 - static void disableExportToGraphViz() { exportGv_ = false; }Horus::FactorGraph::disableExportToGraphViz133,2912 - static void enablePrintFactorGraph() { printFg_ = true; }enablePrintFactorGraph135,2978 - static void enablePrintFactorGraph() { printFg_ = true; }Horus::FactorGraph::enablePrintFactorGraph135,2978 - static void disablePrintFactorGraph() { printFg_ = false; }disablePrintFactorGraph137,3041 - static void disablePrintFactorGraph() { printFg_ = false; }Horus::FactorGraph::disablePrintFactorGraph137,3041 - typedef std::unordered_map VarMap;VarMap140,3117 - typedef std::unordered_map VarMap;Horus::FactorGraph::VarMap140,3117 - VarNodes varNodes_;varNodes_154,3522 - VarNodes varNodes_;Horus::FactorGraph::varNodes_154,3522 - FacNodes facNodes_;facNodes_155,3553 - FacNodes facNodes_;Horus::FactorGraph::facNodes_155,3553 - VarMap varMap_;varMap_156,3584 - VarMap varMap_;Horus::FactorGraph::varMap_156,3584 - BayesBallGraph structure_;structure_157,3613 - BayesBallGraph structure_;Horus::FactorGraph::structure_157,3613 - bool bayesFactors_;bayesFactors_158,3645 - bool bayesFactors_;Horus::FactorGraph::bayesFactors_158,3645 - static bool exportLd_;exportLd_160,3681 - static bool exportLd_;Horus::FactorGraph::exportLd_160,3681 - static bool exportUai_;exportUai_161,3712 - static bool exportUai_;Horus::FactorGraph::exportUai_161,3712 - static bool exportGv_;exportGv_162,3744 - static bool exportGv_;Horus::FactorGraph::exportGv_162,3744 - static bool printFg_;printFg_163,3775 - static bool printFg_;Horus::FactorGraph::printFg_163,3775 -FactorGraph::getVarNode (VarId vid) constgetVarNode169,3827 -FactorGraph::getVarNode (VarId vid) constHorus::FactorGraph::getVarNode169,3827 -struct sortByVarId {sortByVarId177,3973 -struct sortByVarId {Horus::sortByVarId177,3973 - bool operator()(VarNode* vn1, VarNode* vn2) {operator ()178,3994 - bool operator()(VarNode* vn1, VarNode* vn2) {Horus::sortByVarId::operator ()178,3994 - -packages/CLPBN/horus/GenericFactor.cpp,2265 -namespace Horus {Horus8,95 -GenericFactor::argument (size_t idx) constargument11,145 -GenericFactor::argument (size_t idx) constHorus::GenericFactor::argument11,145 -GenericFactor::argument (size_t idx)argument20,275 -GenericFactor::argument (size_t idx)Horus::GenericFactor::argument20,275 -GenericFactor::range (size_t idx) constrange29,405 -GenericFactor::range (size_t idx) constHorus::GenericFactor::range29,405 -GenericFactor::contains (const T& arg) constcontains38,538 -GenericFactor::contains (const T& arg) constHorus::GenericFactor::contains38,538 -GenericFactor::contains (const std::vector& args) constcontains46,658 -GenericFactor::contains (const std::vector& args) constHorus::GenericFactor::contains46,658 -GenericFactor::setParams (const Params& newParams)setParams59,883 -GenericFactor::setParams (const Params& newParams)Horus::GenericFactor::setParams59,883 -GenericFactor::operator[] (size_t idx) constoperator []68,1055 -GenericFactor::operator[] (size_t idx) constHorus::GenericFactor::operator []68,1055 -GenericFactor::operator[] (size_t idx)operator []77,1196 -GenericFactor::operator[] (size_t idx)Horus::GenericFactor::operator []77,1196 -GenericFactor::multiply (const GenericFactor& g)multiply86,1341 -GenericFactor::multiply (const GenericFactor& g)Horus::GenericFactor::multiply86,1341 -GenericFactor::sumOutIndex (size_t idx)sumOutIndex133,2551 -GenericFactor::sumOutIndex (size_t idx)Horus::GenericFactor::sumOutIndex133,2551 -GenericFactor::absorveEvidence (const T& arg, unsigned obsIdx)absorveEvidence159,3252 -GenericFactor::absorveEvidence (const T& arg, unsigned obsIdx)Horus::GenericFactor::absorveEvidence159,3252 -GenericFactor::reorderArguments (const std::vector& new_args)reorderArguments182,3839 -GenericFactor::reorderArguments (const std::vector& new_args)Horus::GenericFactor::reorderArguments182,3839 -GenericFactor::extend (unsigned range_prod)extend208,4508 -GenericFactor::extend (unsigned range_prod)Horus::GenericFactor::extend208,4508 -GenericFactor::cartesianProduct (cartesianProduct225,4915 -GenericFactor::cartesianProduct (Horus::GenericFactor::cartesianProduct225,4915 - -packages/CLPBN/horus/GenericFactor.h,2434 -#define YAP_PACKAGES_CLPBN_HORUS_GENERICFACTOR_H_YAP_PACKAGES_CLPBN_HORUS_GENERICFACTOR_H_2,50 -namespace Horus {Horus9,140 -class GenericFactor {GenericFactor12,181 -class GenericFactor {Horus::GenericFactor12,181 - const std::vector& arguments() const { return args_; }arguments14,213 - const std::vector& arguments() const { return args_; }Horus::GenericFactor::arguments14,213 - std::vector& arguments() { return args_; }arguments16,276 - std::vector& arguments() { return args_; }Horus::GenericFactor::arguments16,276 - const Ranges& ranges() const { return ranges_; }ranges18,327 - const Ranges& ranges() const { return ranges_; }Horus::GenericFactor::ranges18,327 - const Params& params() const { return params_; }params20,381 - const Params& params() const { return params_; }Horus::GenericFactor::params20,381 - Params& params() { return params_; }params22,435 - Params& params() { return params_; }Horus::GenericFactor::params22,435 - size_t nrArguments() const { return args_.size(); }nrArguments24,477 - size_t nrArguments() const { return args_.size(); }Horus::GenericFactor::nrArguments24,477 - size_t size() const { return params_.size(); }size26,534 - size_t size() const { return params_.size(); }Horus::GenericFactor::size26,534 - unsigned distId() const { return distId_; }distId28,586 - unsigned distId() const { return distId_; }Horus::GenericFactor::distId28,586 - void setDistId (unsigned id) { distId_ = id; }setDistId30,635 - void setDistId (unsigned id) { distId_ = id; }Horus::GenericFactor::setDistId30,635 - void normalize() { LogAware::normalize (params_); }normalize32,687 - void normalize() { LogAware::normalize (params_); }Horus::GenericFactor::normalize32,687 - size_t indexOf (const T& t) const { return Util::indexOf (args_, t); }indexOf34,744 - size_t indexOf (const T& t) const { return Util::indexOf (args_, t); }Horus::GenericFactor::indexOf34,744 - std::vector args_;args_61,1388 - std::vector args_;Horus::GenericFactor::args_61,1388 - Ranges ranges_;ranges_62,1415 - Ranges ranges_;Horus::GenericFactor::ranges_62,1415 - Params params_;params_63,1444 - Params params_;Horus::GenericFactor::params_63,1444 - unsigned distId_;distId_64,1473 - unsigned distId_;Horus::GenericFactor::distId_64,1473 - -packages/CLPBN/horus/GroundSolver.cpp,492 -namespace Horus {Horus16,232 -GroundSolver::printAnswer (const VarIds& vids)printAnswer19,256 -GroundSolver::printAnswer (const VarIds& vids)Horus::GroundSolver::printAnswer19,256 -GroundSolver::printAllPosterioris()printAllPosterioris46,993 -GroundSolver::printAllPosterioris()Horus::GroundSolver::printAllPosterioris46,993 -GroundSolver::getJointByConditioning (getJointByConditioning58,1218 -GroundSolver::getJointByConditioning (Horus::GroundSolver::getJointByConditioning58,1218 - -packages/CLPBN/horus/GroundSolver.h,731 -#define YAP_PACKAGES_CLPBN_HORUS_GROUNDSOLVER_H_YAP_PACKAGES_CLPBN_HORUS_GROUNDSOLVER_H_2,49 -namespace Horus {Horus8,145 -class GroundSolver {GroundSolver10,164 -class GroundSolver {Horus::GroundSolver10,164 - GroundSolver (const FactorGraph& factorGraph) : fg(factorGraph) { }GroundSolver12,195 - GroundSolver (const FactorGraph& factorGraph) : fg(factorGraph) { }Horus::GroundSolver::GroundSolver12,195 - virtual ~GroundSolver() { } // ensure that subclass destructor is called~GroundSolver14,268 - virtual ~GroundSolver() { } // ensure that subclass destructor is calledHorus::GroundSolver::~GroundSolver14,268 - const FactorGraph& fg;fg28,649 - const FactorGraph& fg;Horus::GroundSolver::fg28,649 - -packages/CLPBN/horus/Histogram.cpp,1755 -namespace Horus {Horus10,104 -HistogramSet::HistogramSet (unsigned size, unsigned range)HistogramSet12,123 -HistogramSet::HistogramSet (unsigned size, unsigned range)Horus::HistogramSet::HistogramSet12,123 -HistogramSet::nextHistogram()nextHistogram22,256 -HistogramSet::nextHistogram()Horus::HistogramSet::nextHistogram22,256 -HistogramSet::operator[] (size_t idx) constoperator []39,563 -HistogramSet::operator[] (size_t idx) constHorus::HistogramSet::operator []39,563 -HistogramSet::nrHistograms() constnrHistograms48,675 -HistogramSet::nrHistograms() constHorus::HistogramSet::nrHistograms48,675 -HistogramSet::reset()reset56,781 -HistogramSet::reset()Horus::HistogramSet::reset56,781 -HistogramSet::getHistograms (unsigned N, unsigned R)getHistograms65,902 -HistogramSet::getHistograms (unsigned N, unsigned R)Horus::HistogramSet::getHistograms65,902 -HistogramSet::nrHistograms (unsigned N, unsigned R)nrHistograms81,1217 -HistogramSet::nrHistograms (unsigned N, unsigned R)Horus::HistogramSet::nrHistograms81,1217 -HistogramSet::findIndex (findIndex89,1333 -HistogramSet::findIndex (Horus::HistogramSet::findIndex89,1333 -HistogramSet::getNumAssigns (unsigned N, unsigned R)getNumAssigns102,1668 -HistogramSet::getNumAssigns (unsigned N, unsigned R)Horus::HistogramSet::getNumAssigns102,1668 -HistogramSet::maxCount (size_t idx) constmaxCount124,2195 -HistogramSet::maxCount (size_t idx) constHorus::HistogramSet::maxCount124,2195 -HistogramSet::clearAfter (size_t idx)clearAfter136,2353 -HistogramSet::clearAfter (size_t idx)Horus::HistogramSet::clearAfter136,2353 -operator<< (std::ostream& os, const HistogramSet& hs)operator <<144,2467 -operator<< (std::ostream& os, const HistogramSet& hs)Horus::operator <<144,2467 - -packages/CLPBN/horus/Histogram.h,448 -#define YAP_PACKAGES_CLPBN_HORUS_HISTOGRAM_H_YAP_PACKAGES_CLPBN_HORUS_HISTOGRAM_H_2,46 -typedef std::vector Histogram;Histogram9,151 -namespace Horus {Horus12,194 -class HistogramSet {HistogramSet14,213 -class HistogramSet {Horus::HistogramSet14,213 - unsigned size_;size_42,851 - unsigned size_;Horus::HistogramSet::size_42,851 - Histogram hist_;hist_43,873 - Histogram hist_;Horus::HistogramSet::hist_43,873 - -packages/CLPBN/horus/Horus.h,2825 -#define YAP_PACKAGES_CLPBN_HORUS_HORUS_H_YAP_PACKAGES_CLPBN_HORUS_HORUS_H_2,42 -#define DISALLOW_COPY_AND_ASSIGN(DISALLOW_COPY_AND_ASSIGN4,85 -#define DISALLOW_COPY(DISALLOW_COPY8,210 -#define DISALLOW_ASSIGN(DISALLOW_ASSIGN11,275 -namespace Horus {Horus18,384 -typedef std::vector Params;Params25,459 -typedef std::vector Params;Horus::Params25,459 -typedef unsigned VarId;VarId26,500 -typedef unsigned VarId;Horus::VarId26,500 -typedef std::vector VarIds;VarIds27,540 -typedef std::vector VarIds;Horus::VarIds27,540 -typedef std::vector Vars;Vars28,581 -typedef std::vector Vars;Horus::Vars28,581 -typedef std::vector VarNodes;VarNodes29,620 -typedef std::vector VarNodes;Horus::VarNodes29,620 -typedef std::vector FacNodes;FacNodes30,663 -typedef std::vector FacNodes;Horus::FacNodes30,663 -typedef std::vector Factors;Factors31,706 -typedef std::vector Factors;Horus::Factors31,706 -typedef std::vector States;States32,748 -typedef std::vector States;Horus::States32,748 -typedef std::vector Ranges;Ranges33,789 -typedef std::vector Ranges;Horus::Ranges33,789 -typedef unsigned long long ullong;ullong34,830 -typedef unsigned long long ullong;Horus::ullong34,830 -enum class LiftedSolverType {LiftedSolverType37,873 -enum class LiftedSolverType {Horus::LiftedSolverType37,873 - lveSolver, // generalized counting first-order variable eliminationlveSolver38,903 - lveSolver, // generalized counting first-order variable eliminationHorus::LiftedSolverType::lveSolver38,903 - lbpSolver, // lifted first-order belief propagationlbpSolver39,974 - lbpSolver, // lifted first-order belief propagationHorus::LiftedSolverType::lbpSolver39,974 -enum class GroundSolverType {GroundSolverType44,1092 -enum class GroundSolverType {Horus::GroundSolverType44,1092 - veSolver, // variable eliminationveSolver45,1122 - veSolver, // variable eliminationHorus::GroundSolverType::veSolver45,1122 - bpSolver, // belief propagationbpSolver46,1160 - bpSolver, // belief propagationHorus::GroundSolverType::bpSolver46,1160 -namespace Globals {Globals51,1246 -namespace Globals {Horus::Globals51,1246 -namespace Constants {Constants64,1430 -namespace Constants {Horus::Constants64,1430 -const bool showBpCalcs = false;showBpCalcs67,1504 -const bool showBpCalcs = false;Horus::Constants::showBpCalcs67,1504 -const int unobserved = -1;unobserved69,1537 -const int unobserved = -1;Horus::Constants::unobserved69,1537 -const unsigned precision = 8;precision72,1619 -const unsigned precision = 8;Horus::Constants::precision72,1619 - -packages/CLPBN/horus/HorusCli.cpp,721 -const std::string usage = "usage: ./hcli [solver=hve|bp|cbp] \usage23,426 -const std::string usage = "usage: ./hcli [solver=hve|bp|cbp] \__anon420::usage23,426 -main (int argc, const char* argv[])main31,560 -readHorusFlags (int argc, const char* argv[])readHorusFlags69,1541 -readHorusFlags (int argc, const char* argv[])__anon421::readHorusFlags69,1541 -readFactorGraph (Horus::FactorGraph& fg, const char* s)readFactorGraph98,2265 -readFactorGraph (Horus::FactorGraph& fg, const char* s)__anon421::readFactorGraph98,2265 -readQueryAndEvidence (readQueryAndEvidence116,2830 -readQueryAndEvidence (__anon421::readQueryAndEvidence116,2830 -runSolver (runSolver187,5278 -runSolver (__anon421::runSolver187,5278 - -packages/CLPBN/horus/HorusYap.cpp,2593 -namespace Horus {Horus23,412 -typedef std::pair LiftedNetwork;LiftedNetwork42,739 -typedef std::pair LiftedNetwork;Horus::LiftedNetwork42,739 -static YAP_Bool createLiftedNetwork() {createLiftedNetwork44,810 -static YAP_Bool createLiftedNetwork() {Horus::createLiftedNetwork44,810 -static YAP_Bool createGroundNetwork() {createGroundNetwork78,1757 -static YAP_Bool createGroundNetwork() {Horus::createGroundNetwork78,1757 -static YAP_Bool runLiftedSolver() {runLiftedSolver130,3597 -static YAP_Bool runLiftedSolver() {Horus::runLiftedSolver130,3597 -static YAP_Bool runGroundSolver() {runGroundSolver189,5549 -static YAP_Bool runGroundSolver() {Horus::runGroundSolver189,5549 -static YAP_Bool setParfactorsParams() {setParfactorsParams242,6879 -static YAP_Bool setParfactorsParams() {Horus::setParfactorsParams242,6879 -static YAP_Bool setFactorsParams() {setFactorsParams264,7704 -static YAP_Bool setFactorsParams() {Horus::setFactorsParams264,7704 -static YAP_Bool setVarsInformation() {setVarsInformation285,8530 -static YAP_Bool setVarsInformation() {Horus::setVarsInformation285,8530 -static YAP_Bool setHorusFlag() {setHorusFlag311,9348 -static YAP_Bool setHorusFlag() {Horus::setHorusFlag311,9348 -static YAP_Bool freeGroundNetwork() {freeGroundNetwork332,9960 -static YAP_Bool freeGroundNetwork() {Horus::freeGroundNetwork332,9960 -static YAP_Bool freeLiftedNetwork() {freeLiftedNetwork337,10065 -static YAP_Bool freeLiftedNetwork() {Horus::freeLiftedNetwork337,10065 -Parfactor *readParfactor(YAP_Term pfTerm) {readParfactor347,10272 -Parfactor *readParfactor(YAP_Term pfTerm) {Horus::__anon423::readParfactor347,10272 -ObservedFormulas *readLiftedEvidence(YAP_Term observedList) {readLiftedEvidence425,13052 -ObservedFormulas *readLiftedEvidence(YAP_Term observedList) {Horus::__anon423::readLiftedEvidence425,13052 -std::vector readUnsignedList(YAP_Term list) {readUnsignedList466,14633 -std::vector readUnsignedList(YAP_Term list) {Horus::__anon423::readUnsignedList466,14633 -Params readParameters(YAP_Term paramL) {readParameters475,14872 -Params readParameters(YAP_Term paramL) {Horus::__anon423::readParameters475,14872 -YAP_Term fillSolutionList(const std::vector &results) {fillSolutionList493,15312 -YAP_Term fillSolutionList(const std::vector &results) {Horus::__anon423::fillSolutionList493,15312 -extern "C" void init_predicates() {init_predicates511,15883 -extern "C" void init_predicates() {Horus::init_predicates511,15883 - -packages/CLPBN/horus/Indexer.cpp,339 -namespace Horus {Horus7,62 -operator<< (std::ostream& os, const Indexer& indexer)operator <<10,95 -operator<< (std::ostream& os, const Indexer& indexer)Horus::operator <<10,95 -operator<< (std::ostream &os, const MapIndexer& indexer)operator <<22,300 -operator<< (std::ostream &os, const MapIndexer& indexer)Horus::operator <<22,300 - -packages/CLPBN/horus/Indexer.h,3897 -#define YAP_PACKAGES_CLPBN_HORUS_INDEXER_H_YAP_PACKAGES_CLPBN_HORUS_INDEXER_H_2,44 -namespace Horus {Horus11,168 -class Indexer {Indexer13,187 -class Indexer {Horus::Indexer13,187 - size_t index_;index_42,713 - size_t index_;Horus::Indexer::index_42,713 - Ranges indices_;indices_43,746 - Ranges indices_;Horus::Indexer::indices_43,746 - const Ranges& ranges_;ranges_44,781 - const Ranges& ranges_;Horus::Indexer::ranges_44,781 - size_t size_;size_45,815 - size_t size_;Horus::Indexer::size_45,815 - std::vector offsets_;offsets_46,847 - std::vector offsets_;Horus::Indexer::offsets_46,847 -Indexer::Indexer (const Ranges& ranges, bool calcOffsets)Indexer54,936 -Indexer::Indexer (const Ranges& ranges, bool calcOffsets)Horus::Indexer::Indexer54,936 -Indexer::increment()increment66,1165 -Indexer::increment()Horus::Indexer::increment66,1165 -Indexer::incrementDimension (size_t dim)incrementDimension82,1381 -Indexer::incrementDimension (size_t dim)Horus::Indexer::incrementDimension82,1381 -Indexer::incrementExceptDimension (size_t dim)incrementExceptDimension94,1608 -Indexer::incrementExceptDimension (size_t dim)Horus::Indexer::incrementExceptDimension94,1608 -Indexer::operator++()operator ++115,2017 -Indexer::operator++()Horus::Indexer::operator ++115,2017 -Indexer::operator size_t() constoperator size_t124,2084 -Indexer::operator size_t() constHorus::Indexer::operator size_t124,2084 -Indexer::operator[] (size_t dim) constoperator []132,2157 -Indexer::operator[] (size_t dim) constHorus::Indexer::operator []132,2157 -Indexer::valid() constvalid142,2292 -Indexer::valid() constHorus::Indexer::valid142,2292 -Indexer::reset()reset150,2359 -Indexer::reset()Horus::Indexer::reset150,2359 -Indexer::resetDimension (size_t dim)resetDimension159,2461 -Indexer::resetDimension (size_t dim)Horus::Indexer::resetDimension159,2461 -Indexer::size() constsize168,2582 -Indexer::size() constHorus::Indexer::size168,2582 -Indexer::calculateOffsets()calculateOffsets176,2640 -Indexer::calculateOffsets()Horus::Indexer::calculateOffsets176,2640 -class MapIndexer {MapIndexer188,2829 -class MapIndexer {Horus::MapIndexer188,2829 - size_t index_;index_214,3410 - size_t index_;Horus::MapIndexer::index_214,3410 - Ranges indices_;indices_215,3443 - Ranges indices_;Horus::MapIndexer::indices_215,3443 - const Ranges& ranges_;ranges_216,3478 - const Ranges& ranges_;Horus::MapIndexer::ranges_216,3478 - bool valid_;valid_217,3512 - bool valid_;Horus::MapIndexer::valid_217,3512 - std::vector offsets_;offsets_218,3545 - std::vector offsets_;Horus::MapIndexer::offsets_218,3545 -MapIndexer::MapIndexer (MapIndexer226,3637 -MapIndexer::MapIndexer (Horus::MapIndexer::MapIndexer226,3637 -MapIndexer::MapIndexer (const Ranges& ranges, size_t dim)MapIndexer246,4042 -MapIndexer::MapIndexer (const Ranges& ranges, size_t dim)Horus::MapIndexer::MapIndexer246,4042 -MapIndexer::MapIndexer (MapIndexer263,4401 -MapIndexer::MapIndexer (Horus::MapIndexer::MapIndexer263,4401 -MapIndexer::operator++()operator ++287,5067 -MapIndexer::operator++()Horus::MapIndexer::operator ++287,5067 -MapIndexer::operator size_t() constoperator size_t307,5398 -MapIndexer::operator size_t() constHorus::MapIndexer::operator size_t307,5398 -MapIndexer::operator[] (size_t dim) constoperator []316,5494 -MapIndexer::operator[] (size_t dim) constHorus::MapIndexer::operator []316,5494 -MapIndexer::valid() constvalid326,5632 -MapIndexer::valid() constHorus::MapIndexer::valid326,5632 -MapIndexer::reset()reset334,5694 -MapIndexer::reset()Horus::MapIndexer::reset334,5694 - -packages/CLPBN/horus/LiftedBp.cpp,1488 -namespace Horus {Horus11,143 -LiftedBp::LiftedBp (const ParfactorList& parfactorList)LiftedBp13,162 -LiftedBp::LiftedBp (const ParfactorList& parfactorList)Horus::LiftedBp::LiftedBp13,162 -LiftedBp::~LiftedBp()~LiftedBp23,354 -LiftedBp::~LiftedBp()Horus::LiftedBp::~LiftedBp23,354 -LiftedBp::solveQuery (const Grounds& query)solveQuery32,422 -LiftedBp::solveQuery (const Grounds& query)Horus::LiftedBp::solveQuery32,422 -LiftedBp::printSolverFlags() constprintSolverFlags67,1252 -LiftedBp::printSolverFlags() constHorus::LiftedBp::printSolverFlags67,1252 -LiftedBp::refineParfactors()refineParfactors89,1956 -LiftedBp::refineParfactors()Horus::LiftedBp::refineParfactors89,1956 -LiftedBp::iterate()iterate103,2156 -LiftedBp::iterate()Horus::LiftedBp::iterate103,2156 -LiftedBp::getQueryGroups (const Grounds& query)getQueryGroups125,2714 -LiftedBp::getQueryGroups (const Grounds& query)Horus::LiftedBp::getQueryGroups125,2714 -LiftedBp::createFactorGraph()createFactorGraph144,3164 -LiftedBp::createFactorGraph()Horus::LiftedBp::createFactorGraph144,3164 -LiftedBp::getWeights() constgetWeights161,3599 -LiftedBp::getWeights() constHorus::LiftedBp::getWeights161,3599 -LiftedBp::rangeOfGround (const Ground& gr)rangeOfGround181,4154 -LiftedBp::rangeOfGround (const Ground& gr)Horus::LiftedBp::rangeOfGround181,4154 -LiftedBp::getJointByConditioning (getJointByConditioning197,4489 -LiftedBp::getJointByConditioning (Horus::LiftedBp::getJointByConditioning197,4489 - -packages/CLPBN/horus/LiftedBp.h,526 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDBP_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDBP_H_2,45 -namespace Horus {Horus11,186 -class LiftedBp : public LiftedSolver{LiftedBp16,243 -class LiftedBp : public LiftedSolver{Horus::LiftedBp16,243 - ParfactorList pfList_;pfList_41,763 - ParfactorList pfList_;Horus::LiftedBp::pfList_41,763 - WeightedBp* solver_;solver_42,791 - WeightedBp* solver_;Horus::LiftedBp::solver_42,791 - FactorGraph* fg_;fg_43,819 - FactorGraph* fg_;Horus::LiftedBp::fg_43,819 - -packages/CLPBN/horus/LiftedKc.cpp,16063 -namespace Horus {Horus15,220 -enum class CircuitNodeType {CircuitNodeType17,239 -enum class CircuitNodeType {Horus::CircuitNodeType17,239 - orCnt,orCnt18,268 - orCnt,Horus::CircuitNodeType::orCnt18,268 - andCnt,andCnt19,277 - andCnt,Horus::CircuitNodeType::andCnt19,277 - setOrCnt,setOrCnt20,287 - setOrCnt,Horus::CircuitNodeType::setOrCnt20,287 - setAndCnt,setAndCnt21,299 - setAndCnt,Horus::CircuitNodeType::setAndCnt21,299 - incExcCnt,incExcCnt22,312 - incExcCnt,Horus::CircuitNodeType::incExcCnt22,312 - leafCnt,leafCnt23,325 - leafCnt,Horus::CircuitNodeType::leafCnt23,325 - smoothCnt,smoothCnt24,336 - smoothCnt,Horus::CircuitNodeType::smoothCnt24,336 - trueCnt,trueCnt25,349 - trueCnt,Horus::CircuitNodeType::trueCnt25,349 -class CircuitNode {CircuitNode31,389 -class CircuitNode {Horus::CircuitNode31,389 - CircuitNode() { }CircuitNode33,419 - CircuitNode() { }Horus::CircuitNode::CircuitNode33,419 - virtual ~CircuitNode() { }~CircuitNode35,442 - virtual ~CircuitNode() { }Horus::CircuitNode::~CircuitNode35,442 -class OrNode : public CircuitNode {OrNode42,519 -class OrNode : public CircuitNode {Horus::OrNode42,519 - OrNode() : CircuitNode(), leftBranch_(0), rightBranch_(0) { }OrNode44,565 - OrNode() : CircuitNode(), leftBranch_(0), rightBranch_(0) { }Horus::OrNode::OrNode44,565 - CircuitNode** leftBranch () { return &leftBranch_; }leftBranch48,647 - CircuitNode** leftBranch () { return &leftBranch_; }Horus::OrNode::leftBranch48,647 - CircuitNode** rightBranch() { return &rightBranch_; }rightBranch49,704 - CircuitNode** rightBranch() { return &rightBranch_; }Horus::OrNode::rightBranch49,704 - CircuitNode* leftBranch_;leftBranch_54,802 - CircuitNode* leftBranch_;Horus::OrNode::leftBranch_54,802 - CircuitNode* rightBranch_;rightBranch_55,833 - CircuitNode* rightBranch_;Horus::OrNode::rightBranch_55,833 -class AndNode : public CircuitNode {AndNode60,871 -class AndNode : public CircuitNode {Horus::AndNode60,871 - AndNode() : CircuitNode(), leftBranch_(0), rightBranch_(0) { }AndNode62,918 - AndNode() : CircuitNode(), leftBranch_(0), rightBranch_(0) { }Horus::AndNode::AndNode62,918 - AndNode (CircuitNode* leftBranch, CircuitNode* rightBranch)AndNode64,986 - AndNode (CircuitNode* leftBranch, CircuitNode* rightBranch)Horus::AndNode::AndNode64,986 - CircuitNode** leftBranch () { return &leftBranch_; }leftBranch70,1157 - CircuitNode** leftBranch () { return &leftBranch_; }Horus::AndNode::leftBranch70,1157 - CircuitNode** rightBranch() { return &rightBranch_; }rightBranch71,1215 - CircuitNode** rightBranch() { return &rightBranch_; }Horus::AndNode::rightBranch71,1215 - CircuitNode* leftBranch_;leftBranch_76,1313 - CircuitNode* leftBranch_;Horus::AndNode::leftBranch_76,1313 - CircuitNode* rightBranch_;rightBranch_77,1344 - CircuitNode* rightBranch_;Horus::AndNode::rightBranch_77,1344 -class SetOrNode : public CircuitNode {SetOrNode82,1382 -class SetOrNode : public CircuitNode {Horus::SetOrNode82,1382 - SetOrNode (unsigned nrGroundings)SetOrNode84,1431 - SetOrNode (unsigned nrGroundings)Horus::SetOrNode::SetOrNode84,1431 - CircuitNode** follow() { return &follow_; }follow89,1557 - CircuitNode** follow() { return &follow_; }Horus::SetOrNode::follow89,1557 - static unsigned nrPositives() { return nrPos_; }nrPositives91,1606 - static unsigned nrPositives() { return nrPos_; }Horus::SetOrNode::nrPositives91,1606 - static unsigned nrNegatives() { return nrNeg_; }nrNegatives93,1660 - static unsigned nrNegatives() { return nrNeg_; }Horus::SetOrNode::nrNegatives93,1660 - static bool isSet() { return nrPos_ >= 0; }isSet95,1714 - static bool isSet() { return nrPos_ >= 0; }Horus::SetOrNode::isSet95,1714 - CircuitNode* follow_;follow_100,1802 - CircuitNode* follow_;Horus::SetOrNode::follow_100,1802 - unsigned nrGroundings_;nrGroundings_101,1829 - unsigned nrGroundings_;Horus::SetOrNode::nrGroundings_101,1829 - static int nrPos_;nrPos_102,1862 - static int nrPos_;Horus::SetOrNode::nrPos_102,1862 - static int nrNeg_;nrNeg_103,1888 - static int nrNeg_;Horus::SetOrNode::nrNeg_103,1888 -class SetAndNode : public CircuitNode {SetAndNode108,1920 -class SetAndNode : public CircuitNode {Horus::SetAndNode108,1920 - SetAndNode (unsigned nrGroundings)SetAndNode110,1970 - SetAndNode (unsigned nrGroundings)Horus::SetAndNode::SetAndNode110,1970 - CircuitNode** follow() { return &follow_; }follow115,2098 - CircuitNode** follow() { return &follow_; }Horus::SetAndNode::follow115,2098 - CircuitNode* follow_;follow_120,2186 - CircuitNode* follow_;Horus::SetAndNode::follow_120,2186 - unsigned nrGroundings_;nrGroundings_121,2213 - unsigned nrGroundings_;Horus::SetAndNode::nrGroundings_121,2213 -class IncExcNode : public CircuitNode {IncExcNode126,2252 -class IncExcNode : public CircuitNode {Horus::IncExcNode126,2252 - IncExcNode()IncExcNode128,2302 - IncExcNode()Horus::IncExcNode::IncExcNode128,2302 - CircuitNode** plus1Branch() { return &plus1Branch_; }plus1Branch133,2418 - CircuitNode** plus1Branch() { return &plus1Branch_; }Horus::IncExcNode::plus1Branch133,2418 - CircuitNode** plus2Branch() { return &plus2Branch_; }plus2Branch134,2476 - CircuitNode** plus2Branch() { return &plus2Branch_; }Horus::IncExcNode::plus2Branch134,2476 - CircuitNode** minusBranch() { return &minusBranch_; }minusBranch135,2534 - CircuitNode** minusBranch() { return &minusBranch_; }Horus::IncExcNode::minusBranch135,2534 - CircuitNode* plus1Branch_;plus1Branch_140,2632 - CircuitNode* plus1Branch_;Horus::IncExcNode::plus1Branch_140,2632 - CircuitNode* plus2Branch_;plus2Branch_141,2664 - CircuitNode* plus2Branch_;Horus::IncExcNode::plus2Branch_141,2664 - CircuitNode* minusBranch_;minusBranch_142,2696 - CircuitNode* minusBranch_;Horus::IncExcNode::minusBranch_142,2696 -class LeafNode : public CircuitNode {LeafNode147,2734 -class LeafNode : public CircuitNode {Horus::LeafNode147,2734 - LeafNode (Clause* clause, const LiftedWCNF& lwcnf)LeafNode149,2782 - LeafNode (Clause* clause, const LiftedWCNF& lwcnf)Horus::LeafNode::LeafNode149,2782 - const Clause* clause() const { return clause_; }clause154,2915 - const Clause* clause() const { return clause_; }Horus::LeafNode::clause154,2915 - Clause* clause() { return clause_; }clause156,2969 - Clause* clause() { return clause_; }Horus::LeafNode::clause156,2969 - Clause* clause_;clause_161,3050 - Clause* clause_;Horus::LeafNode::clause_161,3050 - const LiftedWCNF& lwcnf_;lwcnf_162,3082 - const LiftedWCNF& lwcnf_;Horus::LeafNode::lwcnf_162,3082 -class SmoothNode : public CircuitNode {SmoothNode167,3119 -class SmoothNode : public CircuitNode {Horus::SmoothNode167,3119 - SmoothNode (const Clauses& clauses, const LiftedWCNF& lwcnf)SmoothNode169,3169 - SmoothNode (const Clauses& clauses, const LiftedWCNF& lwcnf)Horus::SmoothNode::SmoothNode169,3169 - const Clauses& clauses() const { return clauses_; }clauses174,3316 - const Clauses& clauses() const { return clauses_; }Horus::SmoothNode::clauses174,3316 - Clauses clauses() { return clauses_; }clauses176,3373 - Clauses clauses() { return clauses_; }Horus::SmoothNode::clauses176,3373 - Clauses clauses_;clauses_181,3456 - Clauses clauses_;Horus::SmoothNode::clauses_181,3456 - const LiftedWCNF& lwcnf_;lwcnf_182,3489 - const LiftedWCNF& lwcnf_;Horus::SmoothNode::lwcnf_182,3489 -class TrueNode : public CircuitNode {TrueNode187,3526 -class TrueNode : public CircuitNode {Horus::TrueNode187,3526 - TrueNode() : CircuitNode() { }TrueNode189,3574 - TrueNode() : CircuitNode() { }Horus::TrueNode::TrueNode189,3574 -class CompilationFailedNode : public CircuitNode {CompilationFailedNode196,3643 -class CompilationFailedNode : public CircuitNode {Horus::CompilationFailedNode196,3643 - CompilationFailedNode() : CircuitNode() { }CompilationFailedNode198,3704 - CompilationFailedNode() : CircuitNode() { }Horus::CompilationFailedNode::CompilationFailedNode198,3704 -class LiftedCircuit {LiftedCircuit205,3786 -class LiftedCircuit {Horus::LiftedCircuit205,3786 - CircuitNode* root_;root_268,5648 - CircuitNode* root_;Horus::LiftedCircuit::root_268,5648 - const LiftedWCNF* lwcnf_;lwcnf_269,5678 - const LiftedWCNF* lwcnf_;Horus::LiftedCircuit::lwcnf_269,5678 - bool compilationSucceeded_;compilationSucceeded_270,5709 - bool compilationSucceeded_;Horus::LiftedCircuit::compilationSucceeded_270,5709 - Clauses backupClauses_;backupClauses_271,5741 - Clauses backupClauses_;Horus::LiftedCircuit::backupClauses_271,5741 - std::unordered_map originClausesMap_;originClausesMap_272,5769 - std::unordered_map originClausesMap_;Horus::LiftedCircuit::originClausesMap_272,5769 - std::unordered_map explanationMap_;explanationMap_273,5839 - std::unordered_map explanationMap_;Horus::LiftedCircuit::explanationMap_273,5839 -OrNode::~OrNode()~OrNode280,5960 -OrNode::~OrNode()Horus::OrNode::~OrNode280,5960 -OrNode::weight() constweight289,6037 -OrNode::weight() constHorus::OrNode::weight289,6037 -AndNode::~AndNode()~AndNode298,6205 -AndNode::~AndNode()Horus::AndNode::~AndNode298,6205 -AndNode::weight() constweight307,6284 -AndNode::weight() constHorus::AndNode::weight307,6284 -int SetOrNode::nrPos_ = -1;nrPos_316,6439 -int SetOrNode::nrPos_ = -1;Horus::SetOrNode::nrPos_316,6439 -int SetOrNode::nrNeg_ = -1;nrNeg_317,6467 -int SetOrNode::nrNeg_ = -1;Horus::SetOrNode::nrNeg_317,6467 -SetOrNode::~SetOrNode()~SetOrNode321,6498 -SetOrNode::~SetOrNode()Horus::SetOrNode::~SetOrNode321,6498 -SetOrNode::weight() constweight329,6554 -SetOrNode::weight() constHorus::SetOrNode::weight329,6554 -SetAndNode::~SetAndNode()~SetAndNode351,7103 -SetAndNode::~SetAndNode()Horus::SetAndNode::~SetAndNode351,7103 -SetAndNode::weight() constweight359,7161 -SetAndNode::weight() constHorus::SetAndNode::weight359,7161 -IncExcNode::~IncExcNode()~IncExcNode366,7254 -IncExcNode::~IncExcNode()Horus::IncExcNode::~IncExcNode366,7254 -IncExcNode::weight() constweight376,7363 -IncExcNode::weight() constHorus::IncExcNode::weight376,7363 -LeafNode::~LeafNode()~LeafNode391,7700 -LeafNode::~LeafNode()Horus::LeafNode::~LeafNode391,7700 -LeafNode::weight() constweight399,7754 -LeafNode::weight() constHorus::LeafNode::weight399,7754 -SmoothNode::~SmoothNode()~SmoothNode436,9025 -SmoothNode::~SmoothNode()Horus::SmoothNode::~SmoothNode436,9025 -SmoothNode::weight() constweight444,9101 -SmoothNode::weight() constHorus::SmoothNode::weight444,9101 -TrueNode::weight() constweight479,10228 -TrueNode::weight() constHorus::TrueNode::weight479,10228 -CompilationFailedNode::weight() constweight487,10300 -CompilationFailedNode::weight() constHorus::CompilationFailedNode::weight487,10300 -LiftedCircuit::LiftedCircuit (const LiftedWCNF* lwcnf)LiftedCircuit496,10443 -LiftedCircuit::LiftedCircuit (const LiftedWCNF* lwcnf)Horus::LiftedCircuit::LiftedCircuit496,10443 -LiftedCircuit::~LiftedCircuit()~LiftedCircuit520,11099 -LiftedCircuit::~LiftedCircuit()Horus::LiftedCircuit::~LiftedCircuit520,11099 -LiftedCircuit::isCompilationSucceeded() constisCompilationSucceeded534,11348 -LiftedCircuit::isCompilationSucceeded() constHorus::LiftedCircuit::isCompilationSucceeded534,11348 -LiftedCircuit::getWeightedModelCount() constgetWeightedModelCount542,11440 -LiftedCircuit::getWeightedModelCount() constHorus::LiftedCircuit::getWeightedModelCount542,11440 -LiftedCircuit::exportToGraphViz (const char* fileName)exportToGraphViz551,11557 -LiftedCircuit::exportToGraphViz (const char* fileName)Horus::LiftedCircuit::exportToGraphViz551,11557 -LiftedCircuit::compile (compile569,11938 -LiftedCircuit::compile (Horus::LiftedCircuit::compile569,11938 -LiftedCircuit::tryUnitPropagation (tryUnitPropagation623,12874 -LiftedCircuit::tryUnitPropagation (Horus::LiftedCircuit::tryUnitPropagation623,12874 -LiftedCircuit::tryIndependence (tryIndependence687,14877 -LiftedCircuit::tryIndependence (Horus::LiftedCircuit::tryIndependence687,14877 -LiftedCircuit::tryShannonDecomp (tryShannonDecomp731,16030 -LiftedCircuit::tryShannonDecomp (Horus::LiftedCircuit::tryShannonDecomp731,16030 -LiftedCircuit::tryInclusionExclusion (tryInclusionExclusion776,17298 -LiftedCircuit::tryInclusionExclusion (Horus::LiftedCircuit::tryInclusionExclusion776,17298 -LiftedCircuit::tryIndepPartialGrounding (tryIndepPartialGrounding855,19756 -LiftedCircuit::tryIndepPartialGrounding (Horus::LiftedCircuit::tryIndepPartialGrounding855,19756 -LiftedCircuit::tryIndepPartialGroundingAux (tryIndepPartialGroundingAux893,20870 -LiftedCircuit::tryIndepPartialGroundingAux (Horus::LiftedCircuit::tryIndepPartialGroundingAux893,20870 -LiftedCircuit::tryAtomCounting (tryAtomCounting935,22080 -LiftedCircuit::tryAtomCounting (Horus::LiftedCircuit::tryAtomCounting935,22080 -LiftedCircuit::shatterCountedLogVars (Clauses& clauses)shatterCountedLogVars988,23902 -LiftedCircuit::shatterCountedLogVars (Clauses& clauses)Horus::LiftedCircuit::shatterCountedLogVars988,23902 -LiftedCircuit::shatterCountedLogVarsAux (Clauses& clauses)shatterCountedLogVarsAux996,24017 -LiftedCircuit::shatterCountedLogVarsAux (Clauses& clauses)Horus::LiftedCircuit::shatterCountedLogVarsAux996,24017 -LiftedCircuit::shatterCountedLogVarsAux (shatterCountedLogVarsAux1012,24341 -LiftedCircuit::shatterCountedLogVarsAux (Horus::LiftedCircuit::shatterCountedLogVarsAux1012,24341 -LiftedCircuit::independentClause (independentClause1049,25544 -LiftedCircuit::independentClause (Horus::LiftedCircuit::independentClause1049,25544 -LiftedCircuit::independentLiteral (independentLiteral1064,25816 -LiftedCircuit::independentLiteral (Horus::LiftedCircuit::independentLiteral1064,25816 -LiftedCircuit::smoothCircuit (CircuitNode* node)smoothCircuit1080,26145 -LiftedCircuit::smoothCircuit (CircuitNode* node)Horus::LiftedCircuit::smoothCircuit1080,26145 -LiftedCircuit::createSmoothNode (createSmoothNode1183,29551 -LiftedCircuit::createSmoothNode (Horus::LiftedCircuit::createSmoothNode1183,29551 -LiftedCircuit::getAllPossibleTypes (unsigned nrLogVars) constgetAllPossibleTypes1226,30937 -LiftedCircuit::getAllPossibleTypes (unsigned nrLogVars) constHorus::LiftedCircuit::getAllPossibleTypes1226,30937 -LiftedCircuit::containsTypes (containsTypes1256,31614 -LiftedCircuit::containsTypes (Horus::LiftedCircuit::containsTypes1256,31614 -LiftedCircuit::getCircuitNodeType (const CircuitNode* node) constgetCircuitNodeType1279,32074 -LiftedCircuit::getCircuitNodeType (const CircuitNode* node) constHorus::LiftedCircuit::getCircuitNodeType1279,32074 -LiftedCircuit::exportToGraphViz (CircuitNode* node, std::ofstream& os)exportToGraphViz1309,33079 -LiftedCircuit::exportToGraphViz (CircuitNode* node, std::ofstream& os)Horus::LiftedCircuit::exportToGraphViz1309,33079 -LiftedCircuit::escapeNode (const CircuitNode* node) constescapeNode1471,37977 -LiftedCircuit::escapeNode (const CircuitNode* node) constHorus::LiftedCircuit::escapeNode1471,37977 -LiftedCircuit::getExplanationString (CircuitNode* node)getExplanationString1481,38128 -LiftedCircuit::getExplanationString (CircuitNode* node)Horus::LiftedCircuit::getExplanationString1481,38128 -LiftedCircuit::printClauses (printClauses1491,38287 -LiftedCircuit::printClauses (Horus::LiftedCircuit::printClauses1491,38287 -LiftedKc::solveQuery (const Grounds& query)solveQuery1518,39042 -LiftedKc::solveQuery (const Grounds& query)Horus::LiftedKc::solveQuery1518,39042 -LiftedKc::printSolverFlags() constprintSolverFlags1573,40628 -LiftedKc::printSolverFlags() constHorus::LiftedKc::printSolverFlags1573,40628 - -packages/CLPBN/horus/LiftedKc.h,367 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDKC_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDKC_H_2,45 -namespace Horus {Horus8,146 -class LiftedKc : public LiftedSolver {LiftedKc10,165 -class LiftedKc : public LiftedSolver {Horus::LiftedKc10,165 - LiftedKc (const ParfactorList& pfList)LiftedKc12,214 - LiftedKc (const ParfactorList& pfList)Horus::LiftedKc::LiftedKc12,214 - -packages/CLPBN/horus/LiftedOperations.cpp,1295 -namespace Horus {Horus8,88 -namespace LiftedOperations {LiftedOperations10,107 -namespace LiftedOperations {Horus::LiftedOperations10,107 -shatterAgainstQuery (ParfactorList& pfList, const Grounds& query)shatterAgainstQuery19,223 -shatterAgainstQuery (ParfactorList& pfList, const Grounds& query)Horus::LiftedOperations::shatterAgainstQuery19,223 -runWeakBayesBall (ParfactorList& pfList, const Grounds& query)runWeakBayesBall70,1740 -runWeakBayesBall (ParfactorList& pfList, const Grounds& query)Horus::LiftedOperations::runWeakBayesBall70,1740 -absorveEvidence (ParfactorList& pfList, ObservedFormulas& obsFormulas)absorveEvidence129,3346 -absorveEvidence (ParfactorList& pfList, ObservedFormulas& obsFormulas)Horus::LiftedOperations::absorveEvidence129,3346 -countNormalize (Parfactor* g, const LogVarSet& set)countNormalize166,4382 -countNormalize (Parfactor* g, const LogVarSet& set)Horus::LiftedOperations::countNormalize166,4382 -calcGroundMultiplication (Parfactor pf)calcGroundMultiplication183,4749 -calcGroundMultiplication (Parfactor pf)Horus::LiftedOperations::calcGroundMultiplication183,4749 -absorve (ObservedFormula& obsFormula, Parfactor* g)absorve218,5754 -absorve (ObservedFormula& obsFormula, Parfactor* g)Horus::LiftedOperations::__anon425::absorve218,5754 - -packages/CLPBN/horus/LiftedOperations.h,244 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H_2,53 -namespace Horus {Horus7,136 -namespace LiftedOperations {LiftedOperations9,155 -namespace LiftedOperations {Horus::LiftedOperations9,155 - -packages/CLPBN/horus/LiftedSolver.h,727 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDSOLVER_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDSOLVER_H_2,49 -namespace Horus {Horus7,128 -class LiftedSolver {LiftedSolver9,147 -class LiftedSolver {Horus::LiftedSolver9,147 - LiftedSolver (const ParfactorList& pfList)LiftedSolver11,178 - LiftedSolver (const ParfactorList& pfList)Horus::LiftedSolver::LiftedSolver11,178 - virtual ~LiftedSolver() { } // ensure that subclass destructor is called~LiftedSolver14,262 - virtual ~LiftedSolver() { } // ensure that subclass destructor is calledHorus::LiftedSolver::~LiftedSolver14,262 - const ParfactorList& parfactorList;parfactorList21,460 - const ParfactorList& parfactorList;Horus::LiftedSolver::parfactorList21,460 - -packages/CLPBN/horus/LiftedUtils.cpp,1436 -namespace Horus {Horus8,68 -namespace LiftedUtils {LiftedUtils10,87 -namespace LiftedUtils {Horus::LiftedUtils10,87 -std::unordered_map symbolDict;symbolDict12,112 -std::unordered_map symbolDict;Horus::LiftedUtils::symbolDict12,112 -getSymbol (const std::string& symbolName)getSymbol16,175 -getSymbol (const std::string& symbolName)Horus::LiftedUtils::getSymbol16,175 -printSymbolDictionary()printSymbolDictionary31,480 -printSymbolDictionary()Horus::LiftedUtils::printSymbolDictionary31,480 -operator<< (std::ostream& os, const Symbol& s)operator <<46,734 -operator<< (std::ostream& os, const Symbol& s)Horus::operator <<46,734 -operator<< (std::ostream& os, const LogVar& X)operator <<61,1068 -operator<< (std::ostream& os, const LogVar& X)Horus::operator <<61,1068 -operator<< (std::ostream& os, const Tuple& t)operator <<73,1310 -operator<< (std::ostream& os, const Tuple& t)Horus::operator <<73,1310 -operator<< (std::ostream& os, const Ground& gr)operator <<86,1505 -operator<< (std::ostream& os, const Ground& gr)Horus::operator <<86,1505 -Substitution::getDiscardedLogVars() constgetDiscardedLogVars101,1738 -Substitution::getDiscardedLogVars() constHorus::Substitution::getDiscardedLogVars101,1738 -operator<< (std::ostream& os, const Substitution& theta)operator <<121,2144 -operator<< (std::ostream& os, const Substitution& theta)Horus::operator <<121,2144 - -packages/CLPBN/horus/LiftedUtils.h,5423 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDUTILS_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDUTILS_H_2,48 -namespace Horus {Horus13,219 -class Symbol {Symbol15,238 -class Symbol {Horus::Symbol15,238 - Symbol() : id_(Util::maxUnsigned()) { }Symbol17,263 - Symbol() : id_(Util::maxUnsigned()) { }Horus::Symbol::Symbol17,263 - Symbol (unsigned id) : id_(id) { }Symbol19,308 - Symbol (unsigned id) : id_(id) { }Horus::Symbol::Symbol19,308 - operator unsigned() const { return id_; }operator unsigned21,348 - operator unsigned() const { return id_; }Horus::Symbol::operator unsigned21,348 - bool valid() const { return id_ != Util::maxUnsigned(); }valid23,395 - bool valid() const { return id_ != Util::maxUnsigned(); }Horus::Symbol::valid23,395 - static Symbol invalid() { return Symbol(); }invalid25,458 - static Symbol invalid() { return Symbol(); }Horus::Symbol::invalid25,458 - unsigned id_;id_30,588 - unsigned id_;Horus::Symbol::id_30,588 -class LogVar {LogVar34,611 -class LogVar {Horus::LogVar34,611 - LogVar() : id_(Util::maxUnsigned()) { }LogVar36,636 - LogVar() : id_(Util::maxUnsigned()) { }Horus::LogVar::LogVar36,636 - LogVar (unsigned id) : id_(id) { }LogVar38,681 - LogVar (unsigned id) : id_(id) { }Horus::LogVar::LogVar38,681 - operator unsigned() const { return id_; }operator unsigned40,721 - operator unsigned() const { return id_; }Horus::LogVar::operator unsigned40,721 - unsigned id_;id_49,901 - unsigned id_;Horus::LogVar::id_49,901 -LogVar::operator++()operator ++55,940 -LogVar::operator++()Horus::LogVar::operator ++55,940 -LogVar::valid() constvalid65,1026 -LogVar::valid() constHorus::LogVar::valid65,1026 -namespace std {std73,1114 -template <> struct hash {hash75,1131 -template <> struct hash {std::hash75,1131 - size_t operator() (const Horus::Symbol& s) const {operator ()76,1172 - size_t operator() (const Horus::Symbol& s) const {std::hash::operator ()76,1172 -template <> struct hash {hash80,1268 -template <> struct hash {std::hash80,1268 - size_t operator() (const Horus::LogVar& X) const {operator ()81,1309 - size_t operator() (const Horus::LogVar& X) const {std::hash::operator ()81,1309 -namespace Horus {Horus88,1427 -typedef std::vector Symbols;Symbols90,1446 -typedef std::vector Symbols;Horus::Symbols90,1446 -typedef std::vector Tuple;Tuple91,1484 -typedef std::vector Tuple;Horus::Tuple91,1484 -typedef std::vector Tuples;Tuples92,1520 -typedef std::vector Tuples;Horus::Tuples92,1520 -typedef std::vector LogVars;LogVars93,1557 -typedef std::vector LogVars;Horus::LogVars93,1557 -typedef TinySet SymbolSet;SymbolSet94,1595 -typedef TinySet SymbolSet;Horus::SymbolSet94,1595 -typedef TinySet LogVarSet;LogVarSet95,1635 -typedef TinySet LogVarSet;Horus::LogVarSet95,1635 -typedef TinySet TupleSet;TupleSet96,1675 -typedef TinySet TupleSet;Horus::TupleSet96,1675 -namespace LiftedUtils {LiftedUtils102,1774 -namespace LiftedUtils {Horus::LiftedUtils102,1774 -class Ground {Ground112,1875 -class Ground {Horus::Ground112,1875 - Ground (Symbol f) : functor_(f) { }Ground114,1900 - Ground (Symbol f) : functor_(f) { }Horus::Ground::Ground114,1900 - Ground (Symbol f, const Symbols& args)Ground116,1941 - Ground (Symbol f, const Symbols& args)Horus::Ground::Ground116,1941 - Symbol functor() const { return functor_; }functor119,2024 - Symbol functor() const { return functor_; }Horus::Ground::functor119,2024 - Symbols args() const { return args_; }args121,2073 - Symbols args() const { return args_; }Horus::Ground::args121,2073 - size_t arity() const { return args_.size(); }arity123,2117 - size_t arity() const { return args_.size(); }Horus::Ground::arity123,2117 - bool isAtom() const { return args_.empty(); }isAtom125,2168 - bool isAtom() const { return args_.empty(); }Horus::Ground::isAtom125,2168 - Symbol functor_;functor_130,2299 - Symbol functor_;Horus::Ground::functor_130,2299 - Symbols args_;args_131,2322 - Symbols args_;Horus::Ground::args_131,2322 -typedef std::vector Grounds;Grounds134,2346 -typedef std::vector Grounds;Horus::Grounds134,2346 -class Substitution {Substitution138,2386 -class Substitution {Horus::Substitution138,2386 - std::unordered_map subs_;subs_156,2773 - std::unordered_map subs_;Horus::Substitution::subs_156,2773 -Substitution::add (LogVar X_old, LogVar X_new)add163,2838 -Substitution::add (LogVar X_old, LogVar X_new)Horus::Substitution::add163,2838 -Substitution::rename (LogVar X_old, LogVar X_new)rename172,3003 -Substitution::rename (LogVar X_old, LogVar X_new)Horus::Substitution::rename172,3003 -Substitution::newNameFor (LogVar X) constnewNameFor181,3154 -Substitution::newNameFor (LogVar X) constHorus::Substitution::newNameFor181,3154 -Substitution::containsReplacementFor (LogVar X) constcontainsReplacementFor194,3373 -Substitution::containsReplacementFor (LogVar X) constHorus::Substitution::containsReplacementFor194,3373 -Substitution::nrReplacements() constnrReplacements202,3484 -Substitution::nrReplacements() constHorus::Substitution::nrReplacements202,3484 - -packages/CLPBN/horus/LiftedVe.cpp,6507 -namespace Horus {Horus17,244 -class LiftedOperator {LiftedOperator19,263 -class LiftedOperator {Horus::LiftedOperator19,263 - virtual ~LiftedOperator() { }~LiftedOperator21,296 - virtual ~LiftedOperator() { }Horus::LiftedOperator::~LiftedOperator21,296 -class ProductOperator : public LiftedOperator {ProductOperator43,772 -class ProductOperator : public LiftedOperator {Horus::ProductOperator43,772 - ProductOperator (ProductOperator45,830 - ProductOperator (Horus::ProductOperator::ProductOperator45,830 - ParfactorList::iterator g1_;g1_62,1212 - ParfactorList::iterator g1_;Horus::ProductOperator::g1_62,1212 - ParfactorList::iterator g2_;g2_63,1246 - ParfactorList::iterator g2_;Horus::ProductOperator::g2_63,1246 - ParfactorList& pfList_;pfList_64,1280 - ParfactorList& pfList_;Horus::ProductOperator::pfList_64,1280 -class SumOutOperator : public LiftedOperator {SumOutOperator71,1373 -class SumOutOperator : public LiftedOperator {Horus::SumOutOperator71,1373 - SumOutOperator (PrvGroup group, ParfactorList& pfList)SumOutOperator73,1430 - SumOutOperator (PrvGroup group, ParfactorList& pfList)Horus::SumOutOperator::SumOutOperator73,1430 - PrvGroup group_;group_90,1856 - PrvGroup group_;Horus::SumOutOperator::group_90,1856 - ParfactorList& pfList_;pfList_91,1884 - ParfactorList& pfList_;Horus::SumOutOperator::pfList_91,1884 -class CountingOperator : public LiftedOperator {CountingOperator98,1967 -class CountingOperator : public LiftedOperator {Horus::CountingOperator98,1967 - CountingOperator (CountingOperator100,2026 - CountingOperator (Horus::CountingOperator::CountingOperator100,2026 - ParfactorList::iterator pfIter_;pfIter_117,2398 - ParfactorList::iterator pfIter_;Horus::CountingOperator::pfIter_117,2398 - LogVar X_;X_118,2436 - LogVar X_;Horus::CountingOperator::X_118,2436 - ParfactorList& pfList_;pfList_119,2469 - ParfactorList& pfList_;Horus::CountingOperator::pfList_119,2469 -class GroundOperator : public LiftedOperator {GroundOperator126,2563 -class GroundOperator : public LiftedOperator {Horus::GroundOperator126,2563 - GroundOperator (GroundOperator128,2620 - GroundOperator (Horus::GroundOperator::GroundOperator128,2620 - PrvGroup group_;group_145,3014 - PrvGroup group_;Horus::GroundOperator::group_145,3014 - unsigned lvIndex_;lvIndex_146,3042 - unsigned lvIndex_;Horus::GroundOperator::lvIndex_146,3042 - ParfactorList& pfList_;pfList_147,3072 - ParfactorList& pfList_;Horus::GroundOperator::pfList_147,3072 -LiftedOperator::getValidOps (getValidOps155,3184 -LiftedOperator::getValidOps (Horus::LiftedOperator::getValidOps155,3184 -LiftedOperator::printValidOps (printValidOps183,4087 -LiftedOperator::printValidOps (Horus::LiftedOperator::printValidOps183,4087 -LiftedOperator::getParfactorsWithGroup (getParfactorsWithGroup198,4443 -LiftedOperator::getParfactorsWithGroup (Horus::LiftedOperator::getParfactorsWithGroup198,4443 -ProductOperator::getLogCost()getLogCost215,4785 -ProductOperator::getLogCost()Horus::ProductOperator::getLogCost215,4785 -ProductOperator::apply()apply223,4852 -ProductOperator::apply()Horus::ProductOperator::apply223,4852 -ProductOperator::getValidOps (ParfactorList& pfList)getValidOps236,5070 -ProductOperator::getValidOps (ParfactorList& pfList)Horus::ProductOperator::getValidOps236,5070 -ProductOperator::toString()toString275,5947 -ProductOperator::toString()Horus::ProductOperator::toString275,5947 -ProductOperator::validOp (Parfactor* g1, Parfactor* g2)validOp289,6207 -ProductOperator::validOp (Parfactor* g1, Parfactor* g2)Horus::ProductOperator::validOp289,6207 -SumOutOperator::getLogCost()getLogCost314,6932 -SumOutOperator::getLogCost()Horus::SumOutOperator::getLogCost314,6932 -SumOutOperator::apply()apply349,7782 -SumOutOperator::apply()Horus::SumOutOperator::apply349,7782 -SumOutOperator::getValidOps (getValidOps381,8649 -SumOutOperator::getValidOps (Horus::SumOutOperator::getValidOps381,8649 -SumOutOperator::toString()toString408,9342 -SumOutOperator::toString()Horus::SumOutOperator::toString408,9342 -SumOutOperator::validOp (validOp425,9876 -SumOutOperator::validOp (Horus::SumOutOperator::validOp425,9876 -SumOutOperator::isToEliminate (isToEliminate457,10675 -SumOutOperator::isToEliminate (Horus::SumOutOperator::isToEliminate457,10675 -CountingOperator::getLogCost()getLogCost481,11225 -CountingOperator::getLogCost()Horus::CountingOperator::getLogCost481,11225 -CountingOperator::apply()apply516,12339 -CountingOperator::apply()Horus::CountingOperator::apply516,12339 -CountingOperator::getValidOps (ParfactorList& pfList)getValidOps540,12991 -CountingOperator::getValidOps (ParfactorList& pfList)Horus::CountingOperator::getValidOps540,12991 -CountingOperator::toString()toString561,13489 -CountingOperator::toString()Horus::CountingOperator::toString561,13489 -CountingOperator::validOp (Parfactor* g, LogVar X)validOp582,14025 -CountingOperator::validOp (Parfactor* g, LogVar X)Horus::CountingOperator::validOp582,14025 -GroundOperator::getLogCost()getLogCost601,14385 -GroundOperator::getLogCost()Horus::GroundOperator::getLogCost601,14385 -GroundOperator::apply()apply654,16222 -GroundOperator::apply()Horus::GroundOperator::apply654,16222 -GroundOperator::getValidOps (ParfactorList& pfList)getValidOps684,16990 -GroundOperator::getValidOps (ParfactorList& pfList)Horus::GroundOperator::getValidOps684,16990 -GroundOperator::toString()toString711,17781 -GroundOperator::toString()Horus::GroundOperator::toString711,17781 -GroundOperator::getAffectedFormulas()getAffectedFormulas739,18639 -GroundOperator::getAffectedFormulas()Horus::GroundOperator::getAffectedFormulas739,18639 -LiftedVe::solveQuery (const Grounds& query)solveQuery775,19815 -LiftedVe::solveQuery (const Grounds& query)Horus::LiftedVe::solveQuery775,19815 -LiftedVe::printSolverFlags() constprintSolverFlags791,20110 -LiftedVe::printSolverFlags() constHorus::LiftedVe::printSolverFlags791,20110 -LiftedVe::runSolver (const Grounds& query)runSolver803,20313 -LiftedVe::runSolver (const Grounds& query)Horus::LiftedVe::runSolver803,20313 -LiftedVe::getBestOperation (const Grounds& query)getBestOperation850,21523 -LiftedVe::getBestOperation (const Grounds& query)Horus::LiftedVe::getBestOperation850,21523 - -packages/CLPBN/horus/LiftedVe.h,593 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDVE_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDVE_H_2,45 -namespace Horus {Horus8,146 -class LiftedVe : public LiftedSolver {LiftedVe13,189 -class LiftedVe : public LiftedSolver {Horus::LiftedVe13,189 - LiftedVe (const ParfactorList& pfList)LiftedVe15,238 - LiftedVe (const ParfactorList& pfList)Horus::LiftedVe::LiftedVe15,238 - ParfactorList pfList_;pfList_27,495 - ParfactorList pfList_;Horus::LiftedVe::pfList_27,495 - double largestCost_;largestCost_28,523 - double largestCost_;Horus::LiftedVe::largestCost_28,523 - -packages/CLPBN/horus/LiftedWCNF.cpp,6028 -namespace Horus {Horus12,162 -Literal::isGround (isGround15,186 -Literal::isGround (Horus::Literal::isGround15,186 -Literal::indexOfLogVar (LogVar X) constindexOfLogVar30,427 -Literal::indexOfLogVar (LogVar X) constHorus::Literal::indexOfLogVar30,427 -Literal::toString (toString38,524 -Literal::toString (Horus::Literal::toString38,524 -operator<< (std::ostream& os, const Literal& lit)operator <<73,1413 -operator<< (std::ostream& os, const Literal& lit)Horus::operator <<73,1413 -Clause::addLiteralComplemented (const Literal& lit)addLiteralComplemented82,1512 -Clause::addLiteralComplemented (const Literal& lit)Horus::Clause::addLiteralComplemented82,1512 -Clause::containsLiteral (LiteralId lid) constcontainsLiteral92,1695 -Clause::containsLiteral (LiteralId lid) constHorus::Clause::containsLiteral92,1695 -Clause::containsPositiveLiteral (containsPositiveLiteral105,1885 -Clause::containsPositiveLiteral (Horus::Clause::containsPositiveLiteral105,1885 -Clause::containsNegativeLiteral (containsNegativeLiteral122,2191 -Clause::containsNegativeLiteral (Horus::Clause::containsNegativeLiteral122,2191 -Clause::removeLiterals (LiteralId lid)removeLiterals139,2497 -Clause::removeLiterals (LiteralId lid)Horus::Clause::removeLiterals139,2497 -Clause::removePositiveLiterals (removePositiveLiterals154,2695 -Clause::removePositiveLiterals (Horus::Clause::removePositiveLiterals154,2695 -Clause::removeNegativeLiterals (removeNegativeLiterals173,3007 -Clause::removeNegativeLiterals (Horus::Clause::removeNegativeLiterals173,3007 -Clause::isCountedLogVar (LogVar X) constisCountedLogVar192,3321 -Clause::isCountedLogVar (LogVar X) constHorus::Clause::isCountedLogVar192,3321 -Clause::isPositiveCountedLogVar (LogVar X) constisPositiveCountedLogVar202,3494 -Clause::isPositiveCountedLogVar (LogVar X) constHorus::Clause::isPositiveCountedLogVar202,3494 -Clause::isNegativeCountedLogVar (LogVar X) constisNegativeCountedLogVar211,3638 -Clause::isNegativeCountedLogVar (LogVar X) constHorus::Clause::isNegativeCountedLogVar211,3638 -Clause::isIpgLogVar (LogVar X) constisIpgLogVar220,3782 -Clause::isIpgLogVar (LogVar X) constHorus::Clause::isIpgLogVar220,3782 -Clause::lidSet() constlidSet229,3923 -Clause::lidSet() constHorus::Clause::lidSet229,3923 -Clause::ipgCandidates() constipgCandidates241,4103 -Clause::ipgCandidates() constHorus::Clause::ipgCandidates241,4103 -Clause::logVarTypes (size_t litIdx) constlogVarTypes266,4627 -Clause::logVarTypes (size_t litIdx) constHorus::Clause::logVarTypes266,4627 -Clause::removeLiteral (size_t litIdx)removeLiteral285,5065 -Clause::removeLiteral (size_t litIdx)Horus::Clause::removeLiteral285,5065 -Clause::independentClauses (Clause& c1, Clause& c2)independentClauses299,5386 -Clause::independentClauses (Clause& c1, Clause& c2)Horus::Clause::independentClauses299,5386 -Clause::copyClauses (const Clauses& clauses)copyClauses317,5784 -Clause::copyClauses (const Clauses& clauses)Horus::Clause::copyClauses317,5784 -Clause::printClauses (const Clauses& clauses)printClauses330,6004 -Clause::printClauses (const Clauses& clauses)Horus::Clause::printClauses330,6004 -Clause::deleteClauses (Clauses& clauses)deleteClauses340,6157 -Clause::deleteClauses (Clauses& clauses)Horus::Clause::deleteClauses340,6157 -operator<< (std::ostream& os, const Clause& clause)operator <<350,6294 -operator<< (std::ostream& os, const Clause& clause)Horus::operator <<350,6294 -Clause::getLogVarSetExcluding (size_t idx) constgetLogVarSetExcluding368,6753 -Clause::getLogVarSetExcluding (size_t idx) constHorus::Clause::getLogVarSetExcluding368,6753 -operator<< (std::ostream& os, const LitLvTypes& lit)operator <<382,6971 -operator<< (std::ostream& os, const LitLvTypes& lit)Horus::operator <<382,6971 -LitLvTypes::setAllFullLogVars()setAllFullLogVars399,7336 -LitLvTypes::setAllFullLogVars()Horus::LitLvTypes::setAllFullLogVars399,7336 -LiftedWCNF::LiftedWCNF (const ParfactorList& pfList)LiftedWCNF406,7444 -LiftedWCNF::LiftedWCNF (const ParfactorList& pfList)Horus::LiftedWCNF::LiftedWCNF406,7444 -LiftedWCNF::~LiftedWCNF()~LiftedWCNF473,9264 -LiftedWCNF::~LiftedWCNF()Horus::LiftedWCNF::~LiftedWCNF473,9264 -LiftedWCNF::addWeight (LiteralId lid, double posW, double negW)addWeight481,9338 -LiftedWCNF::addWeight (LiteralId lid, double posW, double negW)Horus::LiftedWCNF::addWeight481,9338 -LiftedWCNF::posWeight (LiteralId lid) constposWeight489,9463 -LiftedWCNF::posWeight (LiteralId lid) constHorus::LiftedWCNF::posWeight489,9463 -LiftedWCNF::negWeight (LiteralId lid) constnegWeight499,9695 -LiftedWCNF::negWeight (LiteralId lid) constHorus::LiftedWCNF::negWeight499,9695 -LiftedWCNF::prvGroupLiterals (PrvGroup prvGroup)prvGroupLiterals509,9944 -LiftedWCNF::prvGroupLiterals (PrvGroup prvGroup)Horus::LiftedWCNF::prvGroupLiterals509,9944 -LiftedWCNF::createClause (LiteralId lid) constcreateClause518,10077 -LiftedWCNF::createClause (LiteralId lid) constHorus::LiftedWCNF::createClause518,10077 -LiftedWCNF::getLiteralId (PrvGroup prvGroup, unsigned range)getLiteralId538,10559 -LiftedWCNF::getLiteralId (PrvGroup prvGroup, unsigned range)Horus::LiftedWCNF::getLiteralId538,10559 -LiftedWCNF::addIndicatorClauses (const ParfactorList& pfList)addIndicatorClauses547,10708 -LiftedWCNF::addIndicatorClauses (const ParfactorList& pfList)Horus::LiftedWCNF::addIndicatorClauses547,10708 -LiftedWCNF::addParameterClauses (const ParfactorList& pfList)addParameterClauses585,12092 -LiftedWCNF::addParameterClauses (const ParfactorList& pfList)Horus::LiftedWCNF::addParameterClauses585,12092 -LiftedWCNF::printFormulaIndicators() constprintFormulaIndicators628,13543 -LiftedWCNF::printFormulaIndicators() constHorus::LiftedWCNF::printFormulaIndicators628,13543 -LiftedWCNF::printWeights() constprintWeights657,14379 -LiftedWCNF::printWeights() constHorus::LiftedWCNF::printWeights657,14379 -LiftedWCNF::printClauses() constprintClauses672,14719 -LiftedWCNF::printClauses() constHorus::LiftedWCNF::printClauses672,14719 - -packages/CLPBN/horus/LiftedWCNF.h,8909 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDWCNF_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDWCNF_H_2,47 -namespace Horus {Horus14,256 -enum class LogVarType {LogVarType18,297 -enum class LogVarType {Horus::LogVarType18,297 - fullLvt,fullLvt19,321 - fullLvt,Horus::LogVarType::fullLvt19,321 - posLvt,posLvt20,332 - posLvt,Horus::LogVarType::posLvt20,332 -inline bool operator< (LogVarType lvt1, LogVarType lvt2)operator <27,386 -inline bool operator< (LogVarType lvt1, LogVarType lvt2)Horus::operator <27,386 -typedef long LiteralId;LiteralId34,482 -typedef long LiteralId;Horus::LiteralId34,482 -typedef std::vector LogVarTypes;LogVarTypes35,526 -typedef std::vector LogVarTypes;Horus::LogVarTypes35,526 -class Literal {Literal38,574 -class Literal {Horus::Literal38,574 - Literal (LiteralId lid, const LogVars& lvs)Literal40,600 - Literal (LiteralId lid, const LogVars& lvs)Horus::Literal::Literal40,600 - Literal (const Literal& lit, bool negated)Literal43,705 - Literal (const Literal& lit, bool negated)Horus::Literal::Literal43,705 - LiteralId lid() const { return lid_; }lid46,825 - LiteralId lid() const { return lid_; }Horus::Literal::lid46,825 - LogVars logVars() const { return logVars_; }logVars48,869 - LogVars logVars() const { return logVars_; }Horus::Literal::logVars48,869 - size_t nrLogVars() const { return logVars_.size(); }nrLogVars50,919 - size_t nrLogVars() const { return logVars_.size(); }Horus::Literal::nrLogVars50,919 - LogVarSet logVarSet() const { return LogVarSet (logVars_); }logVarSet52,977 - LogVarSet logVarSet() const { return LogVarSet (logVars_); }Horus::Literal::logVarSet52,977 - void complement() { negated_ = !negated_; }complement54,1043 - void complement() { negated_ = !negated_; }Horus::Literal::complement54,1043 - bool isPositive() const { return negated_ == false; }isPositive56,1092 - bool isPositive() const { return negated_ == false; }Horus::Literal::isPositive56,1092 - bool isNegative() const { return negated_; }isNegative58,1151 - bool isNegative() const { return negated_; }Horus::Literal::isNegative58,1151 - LiteralId lid_;lid_72,1578 - LiteralId lid_;Horus::Literal::lid_72,1578 - LogVars logVars_;logVars_73,1599 - LogVars logVars_;Horus::Literal::logVars_73,1599 - bool negated_;negated_74,1624 - bool negated_;Horus::Literal::negated_74,1624 -typedef std::vector Literals;Literals77,1653 -typedef std::vector Literals;Horus::Literals77,1653 -class Clause {Clause81,1695 -class Clause {Horus::Clause81,1695 - Clause (const ConstraintTree& ct = ConstraintTree({})) : constr_(ct) { }Clause83,1720 - Clause (const ConstraintTree& ct = ConstraintTree({})) : constr_(ct) { }Horus::Clause::Clause83,1720 - Clause (std::vector> names) :Clause85,1798 - Clause (std::vector> names) :Horus::Clause::Clause85,1798 - void addLiteral (const Literal& l) { literals_.push_back (l); }addLiteral88,1902 - void addLiteral (const Literal& l) { literals_.push_back (l); }Horus::Clause::addLiteral88,1902 - const Literals& literals() const { return literals_; }literals90,1971 - const Literals& literals() const { return literals_; }Horus::Clause::literals90,1971 - Literals& literals() { return literals_; }literals92,2031 - Literals& literals() { return literals_; }Horus::Clause::literals92,2031 - size_t nrLiterals() const { return literals_.size(); }nrLiterals94,2079 - size_t nrLiterals() const { return literals_.size(); }Horus::Clause::nrLiterals94,2079 - const ConstraintTree& constr() const { return constr_; }constr96,2139 - const ConstraintTree& constr() const { return constr_; }Horus::Clause::constr96,2139 - ConstraintTree constr() { return constr_; }constr98,2201 - ConstraintTree constr() { return constr_; }Horus::Clause::constr98,2201 - bool isUnit() const { return literals_.size() == 1; }isUnit100,2250 - bool isUnit() const { return literals_.size() == 1; }Horus::Clause::isUnit100,2250 - LogVarSet ipgLogVars() const { return ipgLvs_; }ipgLogVars102,2309 - LogVarSet ipgLogVars() const { return ipgLvs_; }Horus::Clause::ipgLogVars102,2309 - void addIpgLogVar (LogVar X) { ipgLvs_.insert (X); }addIpgLogVar104,2363 - void addIpgLogVar (LogVar X) { ipgLvs_.insert (X); }Horus::Clause::addIpgLogVar104,2363 - void addPosCountedLogVar (LogVar X) { posCountedLvs_.insert (X); }addPosCountedLogVar106,2421 - void addPosCountedLogVar (LogVar X) { posCountedLvs_.insert (X); }Horus::Clause::addPosCountedLogVar106,2421 - void addNegCountedLogVar (LogVar X) { negCountedLvs_.insert (X); }addNegCountedLogVar108,2493 - void addNegCountedLogVar (LogVar X) { negCountedLvs_.insert (X); }Horus::Clause::addNegCountedLogVar108,2493 - LogVarSet posCountedLogVars() const { return posCountedLvs_; }posCountedLogVars110,2565 - LogVarSet posCountedLogVars() const { return posCountedLvs_; }Horus::Clause::posCountedLogVars110,2565 - LogVarSet negCountedLogVars() const { return negCountedLvs_; }negCountedLogVars112,2633 - LogVarSet negCountedLogVars() const { return negCountedLvs_; }Horus::Clause::negCountedLogVars112,2633 - unsigned nrPosCountedLogVars() const { return posCountedLvs_.size(); }nrPosCountedLogVars114,2701 - unsigned nrPosCountedLogVars() const { return posCountedLvs_.size(); }Horus::Clause::nrPosCountedLogVars114,2701 - unsigned nrNegCountedLogVars() const { return negCountedLvs_.size(); }nrNegCountedLogVars116,2777 - unsigned nrNegCountedLogVars() const { return negCountedLvs_.size(); }Horus::Clause::nrNegCountedLogVars116,2777 - Literals literals_;literals_162,4077 - Literals literals_;Horus::Clause::literals_162,4077 - LogVarSet ipgLvs_;ipgLvs_163,4108 - LogVarSet ipgLvs_;Horus::Clause::ipgLvs_163,4108 - LogVarSet posCountedLvs_;posCountedLvs_164,4137 - LogVarSet posCountedLvs_;Horus::Clause::posCountedLvs_164,4137 - LogVarSet negCountedLvs_;negCountedLvs_165,4173 - LogVarSet negCountedLvs_;Horus::Clause::negCountedLvs_165,4173 - ConstraintTree constr_;constr_166,4209 - ConstraintTree constr_;Horus::Clause::constr_166,4209 -typedef std::vector Clauses;Clauses171,4273 -typedef std::vector Clauses;Horus::Clauses171,4273 -class LitLvTypes {LitLvTypes175,4314 -class LitLvTypes {Horus::LitLvTypes175,4314 - LitLvTypes (LiteralId lid, const LogVarTypes& lvTypes) :LitLvTypes177,4343 - LitLvTypes (LiteralId lid, const LogVarTypes& lvTypes) :Horus::LitLvTypes::LitLvTypes177,4343 - LiteralId lid() const { return lid_; }lid180,4446 - LiteralId lid() const { return lid_; }Horus::LitLvTypes::lid180,4446 - const LogVarTypes& logVarTypes() const { return lvTypes_; }logVarTypes182,4490 - const LogVarTypes& logVarTypes() const { return lvTypes_; }Horus::LitLvTypes::logVarTypes182,4490 - LiteralId lid_;lid_189,4670 - LiteralId lid_;Horus::LitLvTypes::lid_189,4670 - LogVarTypes lvTypes_;lvTypes_190,4693 - LogVarTypes lvTypes_;Horus::LitLvTypes::lvTypes_190,4693 -struct CmpLitLvTypesCmpLitLvTypes195,4726 -struct CmpLitLvTypesHorus::CmpLitLvTypes195,4726 - bool operator() (operator ()197,4749 - bool operator() (Horus::CmpLitLvTypes::operator ()197,4749 -typedef TinySet LitLvTypesSet;LitLvTypesSet211,5035 -typedef TinySet LitLvTypesSet;Horus::LitLvTypesSet211,5035 -class LiftedWCNF {LiftedWCNF215,5096 -class LiftedWCNF {Horus::LiftedWCNF215,5096 - const Clauses& clauses() const { return clauses_; }clauses221,5191 - const Clauses& clauses() const { return clauses_; }Horus::LiftedWCNF::clauses221,5191 - Clauses clauses_;clauses_246,5820 - Clauses clauses_;Horus::LiftedWCNF::clauses_246,5820 - LiteralId freeLiteralId_;freeLiteralId_247,5891 - LiteralId freeLiteralId_;Horus::LiftedWCNF::freeLiteralId_247,5891 - const ParfactorList& pfList_;pfList_248,5968 - const ParfactorList& pfList_;Horus::LiftedWCNF::pfList_248,5968 - std::unordered_map> map_;map_249,6038 - std::unordered_map> map_;Horus::LiftedWCNF::map_249,6038 - std::unordered_map> weights_;weights_250,6105 - std::unordered_map> weights_;Horus::LiftedWCNF::weights_250,6105 - -packages/CLPBN/horus/Parfactor.cpp,6575 -namespace Horus {Horus13,166 -Parfactor::Parfactor (Parfactor15,185 -Parfactor::Parfactor (Horus::Parfactor::Parfactor15,185 -Parfactor::Parfactor (const Parfactor* g, const Tuple& tuple)Parfactor58,1348 -Parfactor::Parfactor (const Parfactor* g, const Tuple& tuple)Horus::Parfactor::Parfactor58,1348 -Parfactor::Parfactor (const Parfactor* g, ConstraintTree* constr)Parfactor70,1640 -Parfactor::Parfactor (const Parfactor* g, ConstraintTree* constr)Horus::Parfactor::Parfactor70,1640 -Parfactor::Parfactor (const Parfactor& g)Parfactor82,1900 -Parfactor::Parfactor (const Parfactor& g)Horus::Parfactor::Parfactor82,1900 -Parfactor::~Parfactor()~Parfactor94,2158 -Parfactor::~Parfactor()Horus::Parfactor::~Parfactor94,2158 -Parfactor::countedLogVars() constcountedLogVars102,2217 -Parfactor::countedLogVars() constHorus::Parfactor::countedLogVars102,2217 -Parfactor::uncountedLogVars() constuncountedLogVars116,2433 -Parfactor::uncountedLogVars() constHorus::Parfactor::uncountedLogVars116,2433 -Parfactor::elimLogVars() constelimLogVars124,2536 -Parfactor::elimLogVars() constHorus::Parfactor::elimLogVars124,2536 -Parfactor::exclusiveLogVars (size_t fIdx) constexclusiveLogVars135,2741 -Parfactor::exclusiveLogVars (size_t fIdx) constHorus::Parfactor::exclusiveLogVars135,2741 -Parfactor::sumOutIndex (size_t fIdx)sumOutIndex150,3020 -Parfactor::sumOutIndex (size_t fIdx)Horus::Parfactor::sumOutIndex150,3020 -Parfactor::multiply (Parfactor& g)multiply188,4057 -Parfactor::multiply (Parfactor& g)Horus::Parfactor::multiply188,4057 -Parfactor::canCountConvert (LogVar X)canCountConvert200,4299 -Parfactor::canCountConvert (LogVar X)Horus::Parfactor::canCountConvert200,4299 -Parfactor::countConvert (LogVar X)countConvert224,4737 -Parfactor::countConvert (LogVar X)Horus::Parfactor::countConvert224,4737 -Parfactor::expand (LogVar X, LogVar X_new1, LogVar X_new2)expand276,6154 -Parfactor::expand (LogVar X, LogVar X_new1, LogVar X_new2)Horus::Parfactor::expand276,6154 -Parfactor::fullExpand (LogVar X)fullExpand321,7507 -Parfactor::fullExpand (LogVar X)Horus::Parfactor::fullExpand321,7507 -Parfactor::reorderAccordingGrounds (const Grounds& grounds)reorderAccordingGrounds364,8809 -Parfactor::reorderAccordingGrounds (const Grounds& grounds)Horus::Parfactor::reorderAccordingGrounds364,8809 -Parfactor::absorveEvidence (const ProbFormula& formula, unsigned evidence)absorveEvidence386,9387 -Parfactor::absorveEvidence (const ProbFormula& formula, unsigned evidence)Horus::Parfactor::absorveEvidence386,9387 -Parfactor::setNewGroups()setNewGroups401,9835 -Parfactor::setNewGroups()Horus::Parfactor::setNewGroups401,9835 -Parfactor::applySubstitution (const Substitution& theta)applySubstitution411,9975 -Parfactor::applySubstitution (const Substitution& theta)Horus::Parfactor::applySubstitution411,9975 -Parfactor::indexOfGround (const Ground& ground) constindexOfGround429,10409 -Parfactor::indexOfGround (const Ground& ground) constHorus::Parfactor::indexOfGround429,10409 -Parfactor::findGroup (const Ground& ground) constfindGroup448,10815 -Parfactor::findGroup (const Ground& ground) constHorus::Parfactor::findGroup448,10815 -Parfactor::containsGround (const Ground& ground) constcontainsGround459,11024 -Parfactor::containsGround (const Ground& ground) constHorus::Parfactor::containsGround459,11024 -Parfactor::containsGrounds (const Grounds& grounds) constcontainsGrounds467,11160 -Parfactor::containsGrounds (const Grounds& grounds) constHorus::Parfactor::containsGrounds467,11160 -Parfactor::containsGroup (PrvGroup group) constcontainsGroup491,11734 -Parfactor::containsGroup (PrvGroup group) constHorus::Parfactor::containsGroup491,11734 -Parfactor::containsGroups (std::vector groups) constcontainsGroups504,11922 -Parfactor::containsGroups (std::vector groups) constHorus::Parfactor::containsGroups504,11922 -Parfactor::nrFormulas (LogVar X) constnrFormulas517,12139 -Parfactor::nrFormulas (LogVar X) constHorus::Parfactor::nrFormulas517,12139 -Parfactor::indexOfLogVar (LogVar X) constindexOfLogVar531,12332 -Parfactor::indexOfLogVar (LogVar X) constHorus::Parfactor::indexOfLogVar531,12332 -Parfactor::indexOfGroup (PrvGroup group) constindexOfGroup547,12577 -Parfactor::indexOfGroup (PrvGroup group) constHorus::Parfactor::indexOfGroup547,12577 -Parfactor::nrFormulasWithGroup (PrvGroup group) constnrFormulasWithGroup562,12804 -Parfactor::nrFormulasWithGroup (PrvGroup group) constHorus::Parfactor::nrFormulasWithGroup562,12804 -Parfactor::getAllGroups() constgetAllGroups576,13034 -Parfactor::getAllGroups() constHorus::Parfactor::getAllGroups576,13034 -Parfactor::getLabel() constgetLabel588,13233 -Parfactor::getLabel() constHorus::Parfactor::getLabel588,13233 -Parfactor::print (bool printParams) constprint606,13559 -Parfactor::print (bool printParams) constHorus::Parfactor::print606,13559 -Parfactor::printParameters() constprintParameters646,14582 -Parfactor::printParameters() constHorus::Parfactor::printParameters646,14582 -Parfactor::printProjections() constprintProjections680,15403 -Parfactor::printProjections() constHorus::Parfactor::printProjections680,15403 -Parfactor::expandPotential (expandPotential694,15679 -Parfactor::expandPotential (Horus::Parfactor::expandPotential694,15679 -Parfactor::simplifyCountingFormulas (size_t fIdx)simplifyCountingFormulas751,17145 -Parfactor::simplifyCountingFormulas (size_t fIdx)Horus::Parfactor::simplifyCountingFormulas751,17145 -Parfactor::simplifyGrounds()simplifyGrounds772,17711 -Parfactor::simplifyGrounds()Horus::Parfactor::simplifyGrounds772,17711 -Parfactor::canMultiply (Parfactor* g1, Parfactor* g2)canMultiply794,18192 -Parfactor::canMultiply (Parfactor* g1, Parfactor* g2)Horus::Parfactor::canMultiply794,18192 -Parfactor::simplifyParfactor (size_t fIdx1, size_t fIdx2)simplifyParfactor810,18625 -Parfactor::simplifyParfactor (size_t fIdx1, size_t fIdx2)Horus::Parfactor::simplifyParfactor810,18625 -Parfactor::getAlignLogVars (Parfactor* g1, Parfactor* g2)getAlignLogVars833,19199 -Parfactor::getAlignLogVars (Parfactor* g1, Parfactor* g2)Horus::Parfactor::getAlignLogVars833,19199 -Parfactor::alignAndExponentiate (Parfactor* g1, Parfactor* g2)alignAndExponentiate861,20004 -Parfactor::alignAndExponentiate (Parfactor* g1, Parfactor* g2)Horus::Parfactor::alignAndExponentiate861,20004 -Parfactor::alignLogicalVars (Parfactor* g1, Parfactor* g2)alignLogicalVars880,20638 -Parfactor::alignLogicalVars (Parfactor* g1, Parfactor* g2)Horus::Parfactor::alignLogicalVars880,20638 - -packages/CLPBN/horus/Parfactor.h,1202 -#define YAP_PACKAGES_CLPBN_HORUS_PARFACTOR_H_YAP_PACKAGES_CLPBN_HORUS_PARFACTOR_H_2,46 -namespace Horus {Horus14,256 -class Parfactor : public GenericFactor {Parfactor16,275 -class Parfactor : public GenericFactor {Horus::Parfactor16,275 - ConstraintTree* constr() { return constr_; }constr29,586 - ConstraintTree* constr() { return constr_; }Horus::Parfactor::constr29,586 - const ConstraintTree* constr() const { return constr_; }constr31,636 - const ConstraintTree* constr() const { return constr_; }Horus::Parfactor::constr31,636 - const LogVars& logVars() const { return constr_->logVars(); }logVars33,698 - const LogVars& logVars() const { return constr_->logVars(); }Horus::Parfactor::logVars33,698 - const LogVarSet& logVarSet() const { return constr_->logVarSet(); }logVarSet35,765 - const LogVarSet& logVarSet() const { return constr_->logVarSet(); }Horus::Parfactor::logVarSet35,765 - ConstraintTree* constr_;constr_114,2599 - ConstraintTree* constr_;Horus::Parfactor::constr_114,2599 -typedef std::vector Parfactors;Parfactors119,2666 -typedef std::vector Parfactors;Horus::Parfactors119,2666 - -packages/CLPBN/horus/ParfactorList.cpp,4055 -namespace Horus {Horus10,106 -ParfactorList::ParfactorList (const ParfactorList& pfList)ParfactorList12,125 -ParfactorList::ParfactorList (const ParfactorList& pfList)Horus::ParfactorList::ParfactorList12,125 -ParfactorList::ParfactorList (const Parfactors& pfs)ParfactorList23,331 -ParfactorList::ParfactorList (const Parfactors& pfs)Horus::ParfactorList::ParfactorList23,331 -ParfactorList::~ParfactorList()~ParfactorList30,404 -ParfactorList::~ParfactorList()Horus::ParfactorList::~ParfactorList30,404 -ParfactorList::add (Parfactor* pf)add42,565 -ParfactorList::add (Parfactor* pf)Horus::ParfactorList::add42,565 -ParfactorList::add (const Parfactors& pfs)add51,661 -ParfactorList::add (const Parfactors& pfs)Horus::ParfactorList::add51,661 -ParfactorList::addShattered (Parfactor* pf)addShattered62,825 -ParfactorList::addShattered (Parfactor* pf)Horus::ParfactorList::addShattered62,825 -ParfactorList::insertShattered (insertShattered72,992 -ParfactorList::insertShattered (Horus::ParfactorList::insertShattered72,992 -ParfactorList::remove (std::list::iterator it)remove83,1186 -ParfactorList::remove (std::list::iterator it)Horus::ParfactorList::remove83,1186 -ParfactorList::removeAndDelete (std::list::iterator it)removeAndDelete91,1313 -ParfactorList::removeAndDelete (std::list::iterator it)Horus::ParfactorList::removeAndDelete91,1313 -ParfactorList::isAllShattered() constisAllShattered100,1436 -ParfactorList::isAllShattered() constHorus::ParfactorList::isAllShattered100,1436 -struct sortByParams {sortByParams121,1870 -struct sortByParams {Horus::sortByParams121,1870 - bool operator() (const Parfactor* pf1, const Parfactor* pf2) constoperator ()122,1892 - bool operator() (const Parfactor* pf1, const Parfactor* pf2) constHorus::sortByParams::operator ()122,1892 -ParfactorList::print() constprint137,2216 -ParfactorList::print() constHorus::ParfactorList::print137,2216 -ParfactorList::operator= (const ParfactorList& pfList)operator =150,2479 -ParfactorList::operator= (const ParfactorList& pfList)Horus::ParfactorList::operator =150,2479 -ParfactorList::isShattered (const Parfactor* g) constisShattered171,2893 -ParfactorList::isShattered (const Parfactor* g) constHorus::ParfactorList::isShattered171,2893 -ParfactorList::isShattered (isShattered207,3878 -ParfactorList::isShattered (Horus::ParfactorList::isShattered207,3878 -ParfactorList::addToShatteredList (Parfactor* g)addToShatteredList248,4985 -ParfactorList::addToShatteredList (Parfactor* g)Horus::ParfactorList::addToShatteredList248,4985 -ParfactorList::shatterAgainstMySelf (Parfactor* g)shatterAgainstMySelf289,6038 -ParfactorList::shatterAgainstMySelf (Parfactor* g)Horus::ParfactorList::shatterAgainstMySelf289,6038 -ParfactorList::shatterAgainstMySelf2 (Parfactor* g)shatterAgainstMySelf2320,6710 -ParfactorList::shatterAgainstMySelf2 (Parfactor* g)Horus::ParfactorList::shatterAgainstMySelf2320,6710 -ParfactorList::shatterAgainstMySelf (shatterAgainstMySelf341,7269 -ParfactorList::shatterAgainstMySelf (Horus::ParfactorList::shatterAgainstMySelf341,7269 -ParfactorList::shatter (Parfactor* g1, Parfactor* g2)shatter436,9900 -ParfactorList::shatter (Parfactor* g1, Parfactor* g2)Horus::ParfactorList::shatter436,9900 -ParfactorList::shatter (shatter459,10546 -ParfactorList::shatter (Horus::ParfactorList::shatter459,10546 -ParfactorList::shatter (shatter552,13492 -ParfactorList::shatter (Horus::ParfactorList::shatter552,13492 -ParfactorList::updateGroups (PrvGroup oldGroup, PrvGroup newGroup)updateGroups604,15017 -ParfactorList::updateGroups (PrvGroup oldGroup, PrvGroup newGroup)Horus::ParfactorList::updateGroups604,15017 -ParfactorList::proper (proper620,15389 -ParfactorList::proper (Horus::ParfactorList::proper620,15389 -ParfactorList::identical (identical631,15602 -ParfactorList::identical (Horus::ParfactorList::identical631,15602 -ParfactorList::disjoint (disjoint649,15959 -ParfactorList::disjoint (Horus::ParfactorList::disjoint649,15959 - -packages/CLPBN/horus/ParfactorList.h,1901 -#define YAP_PACKAGES_CLPBN_HORUS_PARFACTORLIST_H_YAP_PACKAGES_CLPBN_HORUS_PARFACTORLIST_H_2,50 -namespace Horus {Horus10,168 -class ParfactorList {ParfactorList15,206 -class ParfactorList {Horus::ParfactorList15,206 - ParfactorList() { }ParfactorList17,238 - ParfactorList() { }Horus::ParfactorList::ParfactorList17,238 - const std::list& parfactors() const { return pfList_; }parfactors25,368 - const std::list& parfactors() const { return pfList_; }Horus::ParfactorList::parfactors25,368 - void clear() { pfList_.clear(); }clear27,441 - void clear() { pfList_.clear(); }Horus::ParfactorList::clear27,441 - size_t size() const { return pfList_.size(); }size29,480 - size_t size() const { return pfList_.size(); }Horus::ParfactorList::size29,480 - typedef std::list::iterator iterator;iterator31,532 - typedef std::list::iterator iterator;Horus::ParfactorList::iterator31,532 - iterator begin() { return pfList_.begin(); }begin33,587 - iterator begin() { return pfList_.begin(); }Horus::ParfactorList::begin33,587 - iterator end() { return pfList_.end(); }end35,637 - iterator end() { return pfList_.end(); }Horus::ParfactorList::end35,637 - typedef std::list::const_iterator const_iterator;const_iterator37,683 - typedef std::list::const_iterator const_iterator;Horus::ParfactorList::const_iterator37,683 - const_iterator begin() const { return pfList_.begin(); }begin39,750 - const_iterator begin() const { return pfList_.begin(); }Horus::ParfactorList::begin39,750 - const_iterator end() const { return pfList_.end(); }end41,812 - const_iterator end() const { return pfList_.end(); }Horus::ParfactorList::end41,812 - std::list pfList_;pfList_105,2476 - std::list pfList_;Horus::ParfactorList::pfList_105,2476 - -packages/CLPBN/horus/ProbFormula.cpp,2405 -namespace Horus {Horus9,69 -PrvGroup ProbFormula::freeGroup_ = 0;freeGroup_11,88 -PrvGroup ProbFormula::freeGroup_ = 0;Horus::ProbFormula::freeGroup_11,88 -ProbFormula::sameSkeletonAs (const ProbFormula& f) constsameSkeletonAs16,134 -ProbFormula::sameSkeletonAs (const ProbFormula& f) constHorus::ProbFormula::sameSkeletonAs16,134 -ProbFormula::contains (LogVar lv) constcontains24,269 -ProbFormula::contains (LogVar lv) constHorus::ProbFormula::contains24,269 -ProbFormula::contains (LogVarSet s) constcontains32,361 -ProbFormula::contains (LogVarSet s) constHorus::ProbFormula::contains32,361 -ProbFormula::indexOf (LogVar X) constindexOf40,461 -ProbFormula::indexOf (LogVar X) constHorus::ProbFormula::indexOf40,461 -ProbFormula::isAtom() constisAtom48,549 -ProbFormula::isAtom() constHorus::ProbFormula::isAtom48,549 -ProbFormula::isCounting() constisCounting56,616 -ProbFormula::isCounting() constHorus::ProbFormula::isCounting56,616 -ProbFormula::countedLogVar() constcountedLogVar64,695 -ProbFormula::countedLogVar() constHorus::ProbFormula::countedLogVar64,695 -ProbFormula::setCountedLogVar (LogVar lv)setCountedLogVar73,792 -ProbFormula::setCountedLogVar (LogVar lv)Horus::ProbFormula::setCountedLogVar73,792 -ProbFormula::clearCountedLogVar()clearCountedLogVar81,869 -ProbFormula::clearCountedLogVar()Horus::ProbFormula::clearCountedLogVar81,869 -ProbFormula::rename (LogVar oldName, LogVar newName)rename89,944 -ProbFormula::rename (LogVar oldName, LogVar newName)Horus::ProbFormula::rename89,944 -operator<< (std::ostream& os, const ProbFormula& f)operator <<104,1225 -operator<< (std::ostream& os, const ProbFormula& f)Horus::operator <<104,1225 -ProbFormula::getNewGroup()getNewGroup125,1624 -ProbFormula::getNewGroup()Horus::ProbFormula::getNewGroup125,1624 -ObservedFormula::ObservedFormula (Symbol f, unsigned a, unsigned ev)ObservedFormula134,1759 -ObservedFormula::ObservedFormula (Symbol f, unsigned a, unsigned ev)Horus::ObservedFormula::ObservedFormula134,1759 -ObservedFormula::ObservedFormula (Symbol f, unsigned ev, const Tuple& tuple)ObservedFormula142,1892 -ObservedFormula::ObservedFormula (Symbol f, unsigned ev, const Tuple& tuple)Horus::ObservedFormula::ObservedFormula142,1892 -operator<< (std::ostream& os, const ObservedFormula& of)operator <<151,2090 -operator<< (std::ostream& os, const ObservedFormula& of)Horus::operator <<151,2090 - -packages/CLPBN/horus/ProbFormula.h,4686 -#define YAP_PACKAGES_CLPBN_HORUS_PROBFORMULA_H_YAP_PACKAGES_CLPBN_HORUS_PROBFORMULA_H_2,48 -namespace Horus {Horus13,227 -typedef unsigned long PrvGroup;PrvGroup15,246 -typedef unsigned long PrvGroup;Horus::PrvGroup15,246 -class ProbFormula {ProbFormula17,279 -class ProbFormula {Horus::ProbFormula17,279 - ProbFormula (Symbol f, const LogVars& lvs, unsigned range)ProbFormula19,309 - ProbFormula (Symbol f, const LogVars& lvs, unsigned range)Horus::ProbFormula::ProbFormula19,309 - ProbFormula (Symbol f, unsigned r)ProbFormula23,503 - ProbFormula (Symbol f, unsigned r)Horus::ProbFormula::ProbFormula23,503 - Symbol functor() const { return functor_; }functor27,636 - Symbol functor() const { return functor_; }Horus::ProbFormula::functor27,636 - unsigned arity() const { return logVars_.size(); }arity29,685 - unsigned arity() const { return logVars_.size(); }Horus::ProbFormula::arity29,685 - unsigned range() const { return range_; }range31,741 - unsigned range() const { return range_; }Horus::ProbFormula::range31,741 - LogVars& logVars() { return logVars_; }logVars33,788 - LogVars& logVars() { return logVars_; }Horus::ProbFormula::logVars33,788 - const LogVars& logVars() const { return logVars_; }logVars35,833 - const LogVars& logVars() const { return logVars_; }Horus::ProbFormula::logVars35,833 - LogVarSet logVarSet() const { return LogVarSet (logVars_); }logVarSet37,890 - LogVarSet logVarSet() const { return LogVarSet (logVars_); }Horus::ProbFormula::logVarSet37,890 - PrvGroup group() const { return group_; }group39,956 - PrvGroup group() const { return group_; }Horus::ProbFormula::group39,956 - void setGroup (PrvGroup g) { group_ = g; }setGroup41,1003 - void setGroup (PrvGroup g) { group_ = g; }Horus::ProbFormula::setGroup41,1003 - Symbol functor_;functor_73,1624 - Symbol functor_;Horus::ProbFormula::functor_73,1624 - LogVars logVars_;logVars_74,1649 - LogVars logVars_;Horus::ProbFormula::logVars_74,1649 - unsigned range_;range_75,1674 - unsigned range_;Horus::ProbFormula::range_75,1674 - LogVar countedLogVar_;countedLogVar_76,1697 - LogVar countedLogVar_;Horus::ProbFormula::countedLogVar_76,1697 - PrvGroup group_;group_77,1728 - PrvGroup group_;Horus::ProbFormula::group_77,1728 - static PrvGroup freeGroup_;freeGroup_78,1751 - static PrvGroup freeGroup_;Horus::ProbFormula::freeGroup_78,1751 -typedef std::vector ProbFormulas;ProbFormulas81,1787 -typedef std::vector ProbFormulas;Horus::ProbFormulas81,1787 -operator== (const ProbFormula& f1, const ProbFormula& f2)operator ==85,1848 -operator== (const ProbFormula& f1, const ProbFormula& f2)Horus::operator ==85,1848 -class ObservedFormula {ObservedFormula92,1976 -class ObservedFormula {Horus::ObservedFormula92,1976 - Symbol functor() const { return functor_; }functor98,2134 - Symbol functor() const { return functor_; }Horus::ObservedFormula::functor98,2134 - unsigned arity() const { return arity_; }arity100,2183 - unsigned arity() const { return arity_; }Horus::ObservedFormula::arity100,2183 - unsigned evidence() const { return evidence_; }evidence102,2230 - unsigned evidence() const { return evidence_; }Horus::ObservedFormula::evidence102,2230 - void setEvidence (unsigned ev) { evidence_ = ev; }setEvidence104,2284 - void setEvidence (unsigned ev) { evidence_ = ev; }Horus::ObservedFormula::setEvidence104,2284 - ConstraintTree& constr() { return constr_; }constr106,2340 - ConstraintTree& constr() { return constr_; }Horus::ObservedFormula::constr106,2340 - bool isAtom() const { return arity_ == 0; }isAtom108,2390 - bool isAtom() const { return arity_ == 0; }Horus::ObservedFormula::isAtom108,2390 - void addTuple (const Tuple& tuple) { constr_.addTuple (tuple); }addTuple110,2439 - void addTuple (const Tuple& tuple) { constr_.addTuple (tuple); }Horus::ObservedFormula::addTuple110,2439 - Symbol functor_;functor_116,2607 - Symbol functor_;Horus::ObservedFormula::functor_116,2607 - unsigned arity_;arity_117,2637 - unsigned arity_;Horus::ObservedFormula::arity_117,2637 - unsigned evidence_;evidence_118,2665 - unsigned evidence_;Horus::ObservedFormula::evidence_118,2665 - ConstraintTree constr_;constr_119,2696 - ConstraintTree constr_;Horus::ObservedFormula::constr_119,2696 -typedef std::vector ObservedFormulas;ObservedFormulas122,2729 -typedef std::vector ObservedFormulas;Horus::ObservedFormulas122,2729 - -packages/CLPBN/horus/TinySet.h,6260 -#define YAP_PACKAGES_CLPBN_HORUS_TINYSET_H_YAP_PACKAGES_CLPBN_HORUS_TINYSET_H_2,44 -namespace Horus {Horus9,149 -class TinySet {TinySet12,223 -class TinySet {Horus::TinySet12,223 - typedef typename std::vector::iterator iterator;iterator14,249 - typedef typename std::vector::iterator iterator;Horus::TinySet::iterator14,249 - typedef typename std::vector::const_iterator const_iterator;const_iterator15,311 - typedef typename std::vector::const_iterator const_iterator;Horus::TinySet::const_iterator15,311 - TinySet (const TinySet& s)TinySet17,380 - TinySet (const TinySet& s)Horus::TinySet::TinySet17,380 - TinySet (const Compare& cmp = Compare())TinySet20,453 - TinySet (const Compare& cmp = Compare())Horus::TinySet::TinySet20,453 - TinySet (const T& t, const Compare& cmp = Compare())TinySet23,531 - TinySet (const T& t, const Compare& cmp = Compare())Horus::TinySet::TinySet23,531 - iterator begin() { return vec_.begin(); }begin83,1824 - iterator begin() { return vec_.begin(); }Horus::TinySet::begin83,1824 - iterator end () { return vec_.end(); }end84,1883 - iterator end () { return vec_.end(); }Horus::TinySet::end84,1883 - const_iterator begin() const { return vec_.begin(); }begin85,1942 - const_iterator begin() const { return vec_.begin(); }Horus::TinySet::begin85,1942 - const_iterator end () const { return vec_.end(); }end86,2001 - const_iterator end () const { return vec_.end(); }Horus::TinySet::end86,2001 - friend bool operator== (const TinySet& s1, const TinySet& s2)operator ==93,2160 - friend bool operator== (const TinySet& s1, const TinySet& s2)Horus::TinySet::operator ==93,2160 - friend bool operator!= (const TinySet& s1, const TinySet& s2)operator !=98,2272 - friend bool operator!= (const TinySet& s1, const TinySet& s2)Horus::TinySet::operator !=98,2272 - friend std::ostream& operator<< (std::ostream& out, const TinySet& s)operator <<103,2388 - friend std::ostream& operator<< (std::ostream& out, const TinySet& s)Horus::TinySet::operator <<103,2388 - std::vector vec_;vec_114,2673 - std::vector vec_;Horus::TinySet::vec_114,2673 - Compare cmp_;cmp_115,2699 - Compare cmp_;Horus::TinySet::cmp_115,2699 -TinySet::TinySet (const std::vector& elements, const C& cmp)TinySet121,2772 -TinySet::TinySet (const std::vector& elements, const C& cmp)Horus::TinySet::TinySet121,2772 -TinySet::insert (const T& t)insert132,3064 -TinySet::insert (const T& t)Horus::TinySet::insert132,3064 -TinySet::insert_sorted (const T& t)insert_sorted144,3290 -TinySet::insert_sorted (const T& t)Horus::TinySet::insert_sorted144,3290 -TinySet::remove (const T& t)remove153,3433 -TinySet::remove (const T& t)Horus::TinySet::remove153,3433 -TinySet::find (const T& t) constfind164,3659 -TinySet::find (const T& t) constHorus::TinySet::find164,3659 -TinySet::find (const T& t)find173,3894 -TinySet::find (const T& t)Horus::TinySet::find173,3894 -TinySet::operator| (const TinySet& s) constoperator |183,4114 -TinySet::operator| (const TinySet& s) constHorus::TinySet::operator |183,4114 -TinySet::operator& (const TinySet& s) constoperator &198,4413 -TinySet::operator& (const TinySet& s) constHorus::TinySet::operator &198,4413 -TinySet::operator- (const TinySet& s) constoperator -213,4717 -TinySet::operator- (const TinySet& s) constHorus::TinySet::operator -213,4717 -TinySet::operator|= (const TinySet& s)operator |=227,4999 -TinySet::operator|= (const TinySet& s)Horus::TinySet::operator |=227,4999 -TinySet::operator&= (const TinySet& s)operator &=235,5135 -TinySet::operator&= (const TinySet& s)Horus::TinySet::operator &=235,5135 -TinySet::operator-= (const TinySet& s)operator -=243,5271 -TinySet::operator-= (const TinySet& s)Horus::TinySet::operator -=243,5271 -TinySet::contains (const T& t) constcontains251,5398 -TinySet::contains (const T& t) constHorus::TinySet::contains251,5398 -TinySet::contains (const TinySet& s) constcontains260,5565 -TinySet::contains (const TinySet& s) constHorus::TinySet::contains260,5565 -TinySet::in (const TinySet& s) constin271,5772 -TinySet::in (const TinySet& s) constHorus::TinySet::in271,5772 -TinySet::intersects (const TinySet& s) constintersects282,5973 -TinySet::intersects (const TinySet& s) constHorus::TinySet::intersects282,5973 -TinySet::operator[] (typename std::vector::size_type i) constoperator []290,6113 -TinySet::operator[] (typename std::vector::size_type i) constHorus::TinySet::operator []290,6113 -TinySet::operator[] (typename std::vector::size_type i)operator []298,6252 -TinySet::operator[] (typename std::vector::size_type i)Horus::TinySet::operator []298,6252 -TinySet::front() constfront306,6384 -TinySet::front() constHorus::TinySet::front306,6384 -TinySet::front()front314,6486 -TinySet::front()Horus::TinySet::front314,6486 -TinySet::back() constback322,6581 -TinySet::back() constHorus::TinySet::back322,6581 -TinySet::back()back330,6681 -TinySet::back()Horus::TinySet::back330,6681 -TinySet::elements() constelements338,6794 -TinySet::elements() constHorus::TinySet::elements338,6794 -TinySet::empty() constempty346,6893 -TinySet::empty() constHorus::TinySet::empty346,6893 -TinySet::size() constsize354,7027 -TinySet::size() constHorus::TinySet::size354,7027 -TinySet::clear()clear362,7129 -TinySet::clear()Horus::TinySet::clear362,7129 -TinySet::reserve (typename std::vector::size_type size)reserve370,7220 -TinySet::reserve (typename std::vector::size_type size)Horus::TinySet::reserve370,7220 -TinySet::unique_cmp (iterator first, iterator last)unique_cmp378,7380 -TinySet::unique_cmp (iterator first, iterator last)Horus::TinySet::unique_cmp378,7380 -TinySet::consistent() constconsistent395,7679 -TinySet::consistent() constHorus::TinySet::consistent395,7679 - -packages/CLPBN/horus/unit_tests/BeliefPropTest.cpp,542 -namespace Horus {Horus6,77 -namespace UnitTests {UnitTests8,96 -namespace UnitTests {Horus::UnitTests8,96 -class BeliefPropTest : public CppUnit::TestFixture {BeliefPropTest10,119 -class BeliefPropTest : public CppUnit::TestFixture {Horus::UnitTests::BeliefPropTest10,119 -BeliefPropTest::testMarginals()testMarginals23,376 -BeliefPropTest::testMarginals()Horus::UnitTests::BeliefPropTest::testMarginals23,376 -BeliefPropTest::testJoint()testJoint36,683 -BeliefPropTest::testJoint()Horus::UnitTests::BeliefPropTest::testJoint36,683 - -packages/CLPBN/horus/unit_tests/Common.cpp,950 -namespace Horus {Horus13,158 -namespace UnitTests {UnitTests15,177 -namespace UnitTests {Horus::UnitTests15,177 -const std::string modelFile = "../examples/complex.fg" ;modelFile17,200 -const std::string modelFile = "../examples/complex.fg" ;Horus::UnitTests::modelFile17,200 -const std::vector marginalProbs = {marginalProbs20,259 -const std::vector marginalProbs = {Horus::UnitTests::marginalProbs20,259 -const Params jointProbs = {jointProbs34,822 -const Params jointProbs = {Horus::UnitTests::jointProbs34,822 -generateRandomParams (Ranges ranges)generateRandomParams58,1645 -generateRandomParams (Ranges ranges)Horus::UnitTests::generateRandomParams58,1645 -similiar (double v1, double v2)similiar73,1966 -similiar (double v1, double v2)Horus::UnitTests::similiar73,1966 -similiar (const Params& p1, const Params& p2)similiar82,2086 -similiar (const Params& p1, const Params& p2)Horus::UnitTests::similiar82,2086 - -packages/CLPBN/horus/unit_tests/Common.h,115 -namespace Horus {Horus9,107 -namespace UnitTests {UnitTests11,126 -namespace UnitTests {Horus::UnitTests11,126 - -packages/CLPBN/horus/unit_tests/CountingBpTest.cpp,542 -namespace Horus {Horus6,77 -namespace UnitTests {UnitTests8,96 -namespace UnitTests {Horus::UnitTests8,96 -class CountingBpTest : public CppUnit::TestFixture {CountingBpTest10,119 -class CountingBpTest : public CppUnit::TestFixture {Horus::UnitTests::CountingBpTest10,119 -CountingBpTest::testMarginals()testMarginals23,376 -CountingBpTest::testMarginals()Horus::UnitTests::CountingBpTest::testMarginals23,376 -CountingBpTest::testJoint()testJoint36,683 -CountingBpTest::testJoint()Horus::UnitTests::CountingBpTest::testJoint36,683 - -packages/CLPBN/horus/unit_tests/FactorTest.cpp,516 -namespace Horus {Horus7,66 -namespace UnitTests {UnitTests9,85 -namespace UnitTests {Horus::UnitTests9,85 -class FactorTest : public CppUnit::TestFixture {FactorTest11,108 -class FactorTest : public CppUnit::TestFixture {Horus::UnitTests::FactorTest11,108 -FactorTest::testSummingOut()testSummingOut24,363 -FactorTest::testSummingOut()Horus::UnitTests::FactorTest::testSummingOut24,363 -FactorTest::testProduct()testProduct70,2387 -FactorTest::testProduct()Horus::UnitTests::FactorTest::testProduct70,2387 - -packages/CLPBN/horus/unit_tests/UnitTesting.cpp,22 -int main()main7,118 - -packages/CLPBN/horus/unit_tests/VarElimTest.cpp,512 -namespace Horus {Horus6,74 -namespace UnitTests {UnitTests8,93 -namespace UnitTests {Horus::UnitTests8,93 -class VarElimTest : public CppUnit::TestFixture {VarElimTest10,116 -class VarElimTest : public CppUnit::TestFixture {Horus::UnitTests::VarElimTest10,116 -VarElimTest::testMarginals()testMarginals23,367 -VarElimTest::testMarginals()Horus::UnitTests::VarElimTest::testMarginals23,367 -VarElimTest::testJoint()testJoint36,668 -VarElimTest::testJoint()Horus::UnitTests::VarElimTest::testJoint36,668 - -packages/CLPBN/horus/Util.cpp,3908 -namespace Horus {Horus7,88 -namespace Globals {Globals9,107 -namespace Globals {Horus::Globals9,107 -bool logDomain = false;logDomain11,128 -bool logDomain = false;Horus::Globals::logDomain11,128 -unsigned verbosity = 0;verbosity13,153 -unsigned verbosity = 0;Horus::Globals::verbosity13,153 -LiftedSolverType liftedSolver = LiftedSolverType::lveSolver;liftedSolver15,178 -LiftedSolverType liftedSolver = LiftedSolverType::lveSolver;Horus::Globals::liftedSolver15,178 -GroundSolverType groundSolver = GroundSolverType::veSolver;groundSolver17,240 -GroundSolverType groundSolver = GroundSolverType::veSolver;Horus::Globals::groundSolver17,240 -namespace Util {Util23,306 -namespace Util {Horus::Util23,306 -toString (const bool& b)toString26,348 -toString (const bool& b)Horus::Util::toString26,348 -stringToUnsigned (std::string str)stringToUnsigned36,461 -stringToUnsigned (std::string str)Horus::Util::stringToUnsigned36,461 -stringToDouble (std::string str)stringToDouble52,726 -stringToDouble (std::string str)Horus::Util::stringToDouble52,726 -factorial (unsigned num)factorial64,851 -factorial (unsigned num)Horus::Util::factorial64,851 -logFactorial (unsigned num)logFactorial76,991 -logFactorial (unsigned num)Horus::Util::logFactorial76,991 -nrCombinations (unsigned n, unsigned k)nrCombinations92,1228 -nrCombinations (unsigned n, unsigned k)Horus::Util::nrCombinations92,1228 -sizeExpected (const Ranges& ranges)sizeExpected117,1689 -sizeExpected (const Ranges& ranges)Horus::Util::sizeExpected117,1689 -nrDigits (int num)nrDigits126,1836 -nrDigits (int num)Horus::Util::nrDigits126,1836 -isInteger (const std::string& s)isInteger139,1960 -isInteger (const std::string& s)Horus::Util::isInteger139,1960 -parametersToString (const Params& v, unsigned precision)parametersToString152,2152 -parametersToString (const Params& v, unsigned precision)Horus::Util::parametersToString152,2152 -getStateLines (const Vars& vars)getStateLines168,2431 -getStateLines (const Vars& vars)Horus::Util::getStateLines168,2431 -bool invalidValue (std::string option, std::string value)invalidValue191,2950 -bool invalidValue (std::string option, std::string value)Horus::Util::invalidValue191,2950 -setHorusFlag (std::string option, std::string value)setHorusFlag202,3166 -setHorusFlag (std::string option, std::string value)Horus::Util::setHorusFlag202,3166 -printHeader (std::string header, std::ostream& os)printHeader307,7003 -printHeader (std::string header, std::ostream& os)Horus::Util::printHeader307,7003 -printSubHeader (std::string header, std::ostream& os)printSubHeader317,7147 -printSubHeader (std::string header, std::ostream& os)Horus::Util::printSubHeader317,7147 -printAsteriskLine (std::ostream& os)printAsteriskLine327,7290 -printAsteriskLine (std::ostream& os)Horus::Util::printAsteriskLine327,7290 -printDashedLine (std::ostream& os)printDashedLine337,7448 -printDashedLine (std::ostream& os)Horus::Util::printDashedLine337,7448 -namespace LogAware {LogAware348,7621 -namespace LogAware {Horus::LogAware348,7621 -normalize (Params& v)normalize351,7648 -normalize (Params& v)Horus::LogAware::normalize351,7648 -getL1Distance (const Params& v1, const Params& v2)getL1Distance368,8002 -getL1Distance (const Params& v1, const Params& v2)Horus::LogAware::getL1Distance368,8002 -getMaxNorm (const Params& v1, const Params& v2)getMaxNorm385,8443 -getMaxNorm (const Params& v1, const Params& v2)Horus::LogAware::getMaxNorm385,8443 -pow (double base, unsigned iexp)pow402,8883 -pow (double base, unsigned iexp)Horus::LogAware::pow402,8883 -pow (double base, double exp)pow412,9009 -pow (double base, double exp)Horus::LogAware::pow412,9009 -pow (Params& v, unsigned iexp)pow423,9171 -pow (Params& v, unsigned iexp)Horus::LogAware::pow423,9171 -pow (Params& v, double exp)pow434,9300 -pow (Params& v, double exp)Horus::LogAware::pow434,9300 - -packages/CLPBN/horus/Util.h,6715 -#define YAP_PACKAGES_CLPBN_HORUS_UTIL_H_YAP_PACKAGES_CLPBN_HORUS_UTIL_H_2,41 -namespace Horus {Horus20,334 -const double NEG_INF = -std::numeric_limits::infinity();NEG_INF24,366 -const double NEG_INF = -std::numeric_limits::infinity();Horus::__anon426::NEG_INF24,366 -namespace Util {Util29,436 -namespace Util {Horus::Util29,436 -Util::addToVector (std::vector& v, const std::vector& elements)addToVector110,2256 -Util::addToVector (std::vector& v, const std::vector& elements)Horus::Util::addToVector110,2256 -Util::addToSet (std::set& s, const std::vector& elements)addToSet118,2416 -Util::addToSet (std::set& s, const std::vector& elements)Horus::Util::addToSet118,2416 -Util::addToQueue (std::queue& q, const std::vector& elements)addToQueue126,2561 -Util::addToQueue (std::queue& q, const std::vector& elements)Horus::Util::addToQueue126,2561 -Util::contains (const std::vector& v, const T& e)contains136,2742 -Util::contains (const std::vector& v, const T& e)Horus::Util::contains136,2742 -Util::contains (const std::set& s, const T& e)contains144,2884 -Util::contains (const std::set& s, const T& e)Horus::Util::contains144,2884 -Util::contains (const std::unordered_map& m, const K& k)contains152,3012 -Util::contains (const std::unordered_map& m, const K& k)Horus::Util::contains152,3012 -Util::indexOf (const std::vector& v, const T& e)indexOf160,3143 -Util::indexOf (const std::vector& v, const T& e)Horus::Util::indexOf160,3143 -Util::apply_n_times (apply_n_times169,3311 -Util::apply_n_times (Horus::Util::apply_n_times169,3311 -Util::log (std::vector& v)log191,3860 -Util::log (std::vector& v)Horus::Util::log191,3860 -Util::exp (std::vector& v)exp199,3981 -Util::exp (std::vector& v)Horus::Util::exp199,3981 -Util::elementsToString (const std::vector& v, std::string sep)elementsToString207,4109 -Util::elementsToString (const std::vector& v, std::string sep)Horus::Util::elementsToString207,4109 -Util::toString (const T& t)toString219,4346 -Util::toString (const T& t)Horus::Util::toString219,4346 -Util::logSum (double x, double y)logSum229,4449 -Util::logSum (double x, double y)Horus::Util::logSum229,4449 -Util::maxUnsigned()maxUnsigned262,5195 -Util::maxUnsigned()Horus::Util::maxUnsigned262,5195 -namespace LogAware {LogAware269,5269 -namespace LogAware {Horus::LogAware269,5269 -inline double one() { return Globals::logDomain ? 0.0 : 1.0; }one271,5291 -inline double one() { return Globals::logDomain ? 0.0 : 1.0; }Horus::LogAware::one271,5291 -inline double zero() { return Globals::logDomain ? NEG_INF : 0.0; }zero272,5367 -inline double zero() { return Globals::logDomain ? NEG_INF : 0.0; }Horus::LogAware::zero272,5367 -inline double addIdenty() { return Globals::logDomain ? NEG_INF : 0.0; }addIdenty273,5443 -inline double addIdenty() { return Globals::logDomain ? NEG_INF : 0.0; }Horus::LogAware::addIdenty273,5443 -inline double multIdenty() { return Globals::logDomain ? 0.0 : 1.0; }multIdenty274,5519 -inline double multIdenty() { return Globals::logDomain ? 0.0 : 1.0; }Horus::LogAware::multIdenty274,5519 -inline double withEvidence() { return Globals::logDomain ? 0.0 : 1.0; }withEvidence275,5595 -inline double withEvidence() { return Globals::logDomain ? 0.0 : 1.0; }Horus::LogAware::withEvidence275,5595 -inline double noEvidence() { return Globals::logDomain ? NEG_INF : 0.0; }noEvidence276,5671 -inline double noEvidence() { return Globals::logDomain ? NEG_INF : 0.0; }Horus::LogAware::noEvidence276,5671 -inline double log (double v) { return Globals::logDomain ? ::log (v) : v; }log277,5747 -inline double log (double v) { return Globals::logDomain ? ::log (v) : v; }Horus::LogAware::log277,5747 -inline double exp (double v) { return Globals::logDomain ? ::exp (v) : v; }exp278,5823 -inline double exp (double v) { return Globals::logDomain ? ::exp (v) : v; }Horus::LogAware::exp278,5823 -operator+=(std::vector& v, double val)operator +=299,6209 -operator+=(std::vector& v, double val)Horus::operator +=299,6209 -operator-=(std::vector& v, double val)operator -=308,6382 -operator-=(std::vector& v, double val)Horus::operator -=308,6382 -operator*=(std::vector& v, double val)operator *=317,6556 -operator*=(std::vector& v, double val)Horus::operator *=317,6556 -operator/=(std::vector& v, double val)operator /=326,6735 -operator/=(std::vector& v, double val)Horus::operator /=326,6735 -operator+=(std::vector& a, const std::vector& b)operator +=335,6911 -operator+=(std::vector& a, const std::vector& b)Horus::operator +=335,6911 -operator-=(std::vector& a, const std::vector& b)operator -=345,7121 -operator-=(std::vector& a, const std::vector& b)Horus::operator -=345,7121 -operator*=(std::vector& a, const std::vector& b)operator *=355,7332 -operator*=(std::vector& a, const std::vector& b)Horus::operator *=355,7332 -operator/=(std::vector& a, const std::vector& b)operator /=365,7548 -operator/=(std::vector& a, const std::vector& b)Horus::operator /=365,7548 -operator^=(std::vector& v, double exp)operator ^=375,7761 -operator^=(std::vector& v, double exp)Horus::operator ^=375,7761 -operator^=(std::vector& v, int iexp)operator ^=384,7962 -operator^=(std::vector& v, int iexp)Horus::operator ^=384,7962 -operator<< (std::ostream& os, const std::vector& v)operator <<393,8168 -operator<< (std::ostream& os, const std::vector& v)Horus::operator <<393,8168 -namespace FuncObj {FuncObj402,8312 -namespace FuncObj {Horus::FuncObj402,8312 -struct max : public std::binary_function {max405,8354 -struct max : public std::binary_function {Horus::FuncObj::max405,8354 - T operator() (const T& x, const T& y) const {operator ()406,8406 - T operator() (const T& x, const T& y) const {Horus::FuncObj::max::operator ()406,8406 -struct abs_diff : public std::binary_function {abs_diff413,8509 -struct abs_diff : public std::binary_function {Horus::FuncObj::abs_diff413,8509 - T operator() (const T& x, const T& y) const {operator ()414,8566 - T operator() (const T& x, const T& y) const {Horus::FuncObj::abs_diff::operator ()414,8566 -struct abs_diff_exp : public std::binary_function {abs_diff_exp421,8672 -struct abs_diff_exp : public std::binary_function {Horus::FuncObj::abs_diff_exp421,8672 - T operator() (const T& x, const T& y) const {operator ()422,8733 - T operator() (const T& x, const T& y) const {Horus::FuncObj::abs_diff_exp::operator ()422,8733 - -packages/CLPBN/horus/Var.cpp,1077 -namespace Horus {Horus6,39 -std::unordered_map Var::varsInfo_;varsInfo_8,58 -std::unordered_map Var::varsInfo_;Horus::Var::varsInfo_8,58 -Var::Var (const Var* v)Var11,116 -Var::Var (const Var* v)Horus::Var::Var11,116 -Var::Var (VarId varId, unsigned range, int evidence)Var21,266 -Var::Var (VarId varId, unsigned range, int evidence)Horus::Var::Var21,266 -Var::isValidState (int stateIndex)isValidState34,490 -Var::isValidState (int stateIndex)Horus::Var::isValidState34,490 -Var::setEvidence (int evidence)setEvidence42,592 -Var::setEvidence (int evidence)Horus::Var::setEvidence42,592 -Var::label() constlabel51,703 -Var::label() constHorus::Var::label51,703 -Var::states() conststates65,934 -Var::states() constHorus::Var::states65,934 -Var::addVarInfo (addVarInfo83,1252 -Var::addVarInfo (Horus::Var::addVarInfo83,1252 -Var::varsHaveInfo()varsHaveInfo93,1459 -Var::varsHaveInfo()Horus::Var::varsHaveInfo93,1459 -Var::clearVarsInfo()clearVarsInfo101,1528 -Var::clearVarsInfo()Horus::Var::clearVarsInfo101,1528 - -packages/CLPBN/horus/Var.h,2077 -#define YAP_PACKAGES_CLPBN_HORUS_VAR_H_YAP_PACKAGES_CLPBN_HORUS_VAR_H_2,40 -namespace Horus {Horus13,184 -class Var {Var15,203 -class Var {Horus::Var15,203 - virtual ~Var() { };~Var21,320 - virtual ~Var() { };Horus::Var::~Var21,320 - VarId varId() const { return varId_; }varId23,345 - VarId varId() const { return varId_; }Horus::Var::varId23,345 - unsigned range() const { return range_; }range25,389 - unsigned range() const { return range_; }Horus::Var::range25,389 - int getEvidence() const { return evidence_; }getEvidence27,436 - int getEvidence() const { return evidence_; }Horus::Var::getEvidence27,436 - size_t getIndex() const { return index_; }getIndex29,488 - size_t getIndex() const { return index_; }Horus::Var::getIndex29,488 - void setIndex (size_t idx) { index_ = idx; }setIndex31,536 - void setIndex (size_t idx) { index_ = idx; }Horus::Var::setIndex31,536 - typedef std::pair VarInfo;VarInfo57,1025 - typedef std::pair VarInfo;Horus::Var::VarInfo57,1025 - VarId varId_;varId_59,1078 - VarId varId_;Horus::Var::varId_59,1078 - unsigned range_;range_60,1100 - unsigned range_;Horus::Var::range_60,1100 - int evidence_;evidence_61,1122 - int evidence_;Horus::Var::evidence_61,1122 - size_t index_;index_62,1147 - size_t index_;Horus::Var::index_62,1147 - static std::unordered_map varsInfo_;varsInfo_64,1170 - static std::unordered_map varsInfo_;Horus::Var::varsInfo_64,1170 -Var::hasEvidence() consthasEvidence72,1281 -Var::hasEvidence() constHorus::Var::hasEvidence72,1281 -Var::operator size_t() constoperator size_t80,1365 -Var::operator size_t() constHorus::Var::operator size_t80,1365 -Var::operator== (const Var& var) constoperator ==88,1430 -Var::operator== (const Var& var) constHorus::Var::operator ==88,1430 -Var::operator!= (const Var& var) constoperator !=97,1582 -Var::operator!= (const Var& var) constHorus::Var::operator !=97,1582 - -packages/CLPBN/horus/VarElim.cpp,957 -namespace Horus {Horus11,145 -VarElim::solveQuery (VarIds queryVids)solveQuery14,171 -VarElim::solveQuery (VarIds queryVids)Horus::VarElim::solveQuery14,171 -VarElim::printSolverFlags() constprintSolverFlags40,738 -VarElim::printSolverFlags() constHorus::VarElim::printSolverFlags40,738 -VarElim::createFactorList()createFactorList61,1465 -VarElim::createFactorList()Horus::VarElim::createFactorList61,1465 -VarElim::absorveEvidence()absorveEvidence83,2050 -VarElim::absorveEvidence()Horus::VarElim::absorveEvidence83,2050 -VarElim::processFactorList (const VarIds& queryVids)processFactorList116,3009 -VarElim::processFactorList (const VarIds& queryVids)Horus::VarElim::processFactorList116,3009 -VarElim::eliminate (VarId vid)eliminate161,4212 -VarElim::eliminate (VarId vid)Horus::VarElim::eliminate161,4212 -VarElim::printActiveFactors()printActiveFactors193,5020 -VarElim::printActiveFactors()Horus::VarElim::printActiveFactors193,5020 - -packages/CLPBN/horus/VarElim.h,1017 -#define YAP_PACKAGES_CLPBN_HORUS_VARELIM_H_YAP_PACKAGES_CLPBN_HORUS_VARELIM_H_2,44 -namespace Horus {Horus12,205 -class VarElim : public GroundSolver {VarElim14,224 -class VarElim : public GroundSolver {Horus::VarElim14,224 - VarElim (const FactorGraph& fg) : GroundSolver (fg) { }VarElim16,272 - VarElim (const FactorGraph& fg) : GroundSolver (fg) { }Horus::VarElim::VarElim16,272 - ~VarElim() { }~VarElim18,333 - ~VarElim() { }Horus::VarElim::~VarElim18,333 - Factors factorList_;factorList_35,599 - Factors factorList_;Horus::VarElim::factorList_35,599 - unsigned largestFactorSize_;largestFactorSize_36,626 - unsigned largestFactorSize_;Horus::VarElim::largestFactorSize_36,626 - unsigned totalFactorSize_;totalFactorSize_37,660 - unsigned totalFactorSize_;Horus::VarElim::totalFactorSize_37,660 - std::unordered_map> varMap_;varMap_38,692 - std::unordered_map> varMap_;Horus::VarElim::varMap_38,692 - -packages/CLPBN/horus/WeightedBp.cpp,1308 -namespace Horus {Horus9,86 -WeightedBp::WeightedBp (WeightedBp11,105 -WeightedBp::WeightedBp (Horus::WeightedBp::WeightedBp11,105 -WeightedBp::~WeightedBp()~WeightedBp21,263 -WeightedBp::~WeightedBp()Horus::WeightedBp::~WeightedBp21,263 -WeightedBp::getPosterioriOf (VarId vid)getPosterioriOf32,394 -WeightedBp::getPosterioriOf (VarId vid)Horus::WeightedBp::getPosterioriOf32,394 -WeightedBp::WeightedLink::WeightedLink (WeightedLink66,1290 -WeightedBp::WeightedLink::WeightedLink (Horus::WeightedBp::WeightedLink::WeightedLink66,1290 -WeightedBp::createLinks()createLinks80,1516 -WeightedBp::createLinks()Horus::WeightedBp::createLinks80,1516 -WeightedBp::maxResidualSchedule()maxResidualSchedule113,2410 -WeightedBp::maxResidualSchedule()Horus::WeightedBp::maxResidualSchedule113,2410 -WeightedBp::calcFactorToVarMsg (BpLink* _link)calcFactorToVarMsg190,5074 -WeightedBp::calcFactorToVarMsg (BpLink* _link)Horus::WeightedBp::calcFactorToVarMsg190,5074 -WeightedBp::getVarToFactorMsg (const BpLink* _link)getVarToFactorMsg268,7855 -WeightedBp::getVarToFactorMsg (const BpLink* _link)Horus::WeightedBp::getVarToFactorMsg268,7855 -WeightedBp::printLinkInformation() constprintLinkInformation317,9358 -WeightedBp::printLinkInformation() constHorus::WeightedBp::printLinkInformation317,9358 - -packages/CLPBN/horus/WeightedBp.h,1591 -#define YAP_PACKAGES_CLPBN_HORUS_WEIGHTEDBP_H_YAP_PACKAGES_CLPBN_HORUS_WEIGHTEDBP_H_2,47 -namespace Horus {Horus7,121 -class WeightedBp : public BeliefProp {WeightedBp9,140 -class WeightedBp : public BeliefProp {Horus::WeightedBp9,140 - class WeightedLink : public BeliefProp::BpLink {WeightedLink19,357 - class WeightedLink : public BeliefProp::BpLink {Horus::WeightedBp::WeightedLink19,357 - size_t index() const { return index_; }index24,519 - size_t index() const { return index_; }Horus::WeightedBp::WeightedLink::index24,519 - unsigned weight() const { return weight_; }weight26,569 - unsigned weight() const { return weight_; }Horus::WeightedBp::WeightedLink::weight26,569 - const Params& powMessage() const { return pwdMsg_; }powMessage28,623 - const Params& powMessage() const { return pwdMsg_; }Horus::WeightedBp::WeightedLink::powMessage28,623 - size_t index_;index_33,734 - size_t index_;Horus::WeightedBp::WeightedLink::index_33,734 - unsigned weight_;weight_34,761 - unsigned weight_;Horus::WeightedBp::WeightedLink::weight_34,761 - Params pwdMsg_;pwdMsg_35,789 - Params pwdMsg_;Horus::WeightedBp::WeightedLink::pwdMsg_35,789 - std::vector> weights_;weights_50,1067 - std::vector> weights_;Horus::WeightedBp::weights_50,1067 -WeightedBp::WeightedLink::updateMessage()updateMessage59,1181 -WeightedBp::WeightedLink::updateMessage()Horus::WeightedBp::WeightedLink::updateMessage59,1181 - -packages/CLPBN/html/index.html,0 - -packages/CLPBN/learning/aleph_params.yap,5894 -:- dynamic rt/2, inited/1.dynamic17,323 -:- dynamic rt/2, inited/1.dynamic17,323 -:- multifile user:cost/3.multifile66,1379 -:- multifile user:cost/3.multifile66,1379 -disable_solver(_,_) :-disable_solver80,1832 -disable_solver(_,_) :-disable_solver80,1832 -disable_solver(_,_) :-disable_solver80,1832 -disable_solver(_) :-disable_solver82,1872 -disable_solver(_) :-disable_solver82,1872 -disable_solver(_) :-disable_solver82,1872 -disable_solver :-disable_solver85,1911 -enable_solver(_) :-enable_solver89,1997 -enable_solver(_) :-enable_solver89,1997 -enable_solver(_) :-enable_solver89,1997 -enable_solver(_,_) :-enable_solver91,2033 -enable_solver(_,_) :-enable_solver91,2033 -enable_solver(_,_) :-enable_solver91,2033 -enable_solver :-enable_solver94,2072 -add_new_clause(_,(H :- _),_,_) :-add_new_clause99,2204 -add_new_clause(_,(H :- _),_,_) :-add_new_clause99,2204 -add_new_clause(_,(H :- _),_,_) :-add_new_clause99,2204 -add_new_clause(_,(_ :- true),_,_) :- !.add_new_clause109,2354 -add_new_clause(_,(_ :- true),_,_) :- !.add_new_clause109,2354 -add_new_clause(_,(_ :- true),_,_) :- !.add_new_clause109,2354 -add_new_clause(_,(H :- B),_,_) :-add_new_clause110,2394 -add_new_clause(_,(H :- B),_,_) :-add_new_clause110,2394 -add_new_clause(_,(H :- B),_,_) :-add_new_clause110,2394 -update_tabled_theory(H) :-update_tabled_theory136,2927 -update_tabled_theory(H) :-update_tabled_theory136,2927 -update_tabled_theory(H) :-update_tabled_theory136,2927 -update_tabled_theory(_).update_tabled_theory142,3077 -update_tabled_theory(_).update_tabled_theory142,3077 -update_theory(H) :-update_theory144,3103 -update_theory(H) :-update_theory144,3103 -update_theory(H) :-update_theory144,3103 -update_theory(_).update_theory150,3213 -update_theory(_).update_theory150,3213 -add_correct_cpt((G,B),(G,NB)) :-add_correct_cpt152,3232 -add_correct_cpt((G,B),(G,NB)) :-add_correct_cpt152,3232 -add_correct_cpt((G,B),(G,NB)) :-add_correct_cpt152,3232 -add_correct_cpt((clpbn:{V = K with Tab }), ({V = K with NTab})) :-add_correct_cpt154,3289 -add_correct_cpt((clpbn:{V = K with Tab }), ({V = K with NTab})) :-add_correct_cpt154,3289 -add_correct_cpt((clpbn:{V = K with Tab }), ({V = K with NTab})) :-add_correct_cpt154,3289 -add_correct_cpt(({V = K with Tab }), ({V = K with NTab})) :-add_correct_cpt156,3382 -add_correct_cpt(({V = K with Tab }), ({V = K with NTab})) :-add_correct_cpt156,3382 -add_correct_cpt(({V = K with Tab }), ({V = K with NTab})) :-add_correct_cpt156,3382 -correct_tab(p(Vs,_),K,p(Vs,TDist)) :-correct_tab159,3470 -correct_tab(p(Vs,_),K,p(Vs,TDist)) :-correct_tab159,3470 -correct_tab(p(Vs,_),K,p(Vs,TDist)) :-correct_tab159,3470 -correct_tab(p(Vs,_,Ps),K,p(Vs,TDist,Ps)) :-correct_tab162,3559 -correct_tab(p(Vs,_,Ps),K,p(Vs,TDist,Ps)) :-correct_tab162,3559 -correct_tab(p(Vs,_,Ps),K,p(Vs,TDist,Ps)) :-correct_tab162,3559 -user:cost((H :- B),Inf,Score) :-cost167,3731 -user:cost((H :- B),Inf,Score) :-cost167,3731 -user:cost(H,_Inf,Score) :- !,cost190,4173 -user:cost(H,_Inf,Score) :- !,cost190,4173 -check_info(_).check_info196,4373 -check_info(_).check_info196,4373 -init_clpbn_cost(_, Score) :-init_clpbn_cost198,4389 -init_clpbn_cost(_, Score) :-init_clpbn_cost198,4389 -init_clpbn_cost(_, Score) :-init_clpbn_cost198,4389 -init_clpbn_cost(H, Score) :-init_clpbn_cost200,4437 -init_clpbn_cost(H, Score) :-init_clpbn_cost200,4437 -init_clpbn_cost(H, Score) :-init_clpbn_cost200,4437 -domain(H, K, RV, D) :-domain227,5109 -domain(H, K, RV, D) :-domain227,5109 -domain(H, K, RV, D) :-domain227,5109 -domain(H, K, V, D) :-domain240,5351 -domain(H, K, V, D) :-domain240,5351 -domain(H, K, V, D) :-domain240,5351 -key_from_head(H,K,V) :-key_from_head245,5454 -key_from_head(H,K,V) :-key_from_head245,5454 -key_from_head(H,K,V) :-key_from_head245,5454 -rewrite_body((A,B), (user:NA,NB), [V|Vs], [D|Ds], Tail) :-rewrite_body261,5944 -rewrite_body((A,B), (user:NA,NB), [V|Vs], [D|Ds], Tail) :-rewrite_body261,5944 -rewrite_body((A,B), (user:NA,NB), [V|Vs], [D|Ds], Tail) :-rewrite_body261,5944 -rewrite_body((A,B), (user:A,NB), Vs, Ds, Tail) :- !,rewrite_body264,6070 -rewrite_body((A,B), (user:A,NB), Vs, Ds, Tail) :- !,rewrite_body264,6070 -rewrite_body((A,B), (user:A,NB), Vs, Ds, Tail) :- !,rewrite_body264,6070 -rewrite_body(A,(user:NA,Tail), [V], [D], Tail) :-rewrite_body266,6158 -rewrite_body(A,(user:NA,Tail), [V], [D], Tail) :-rewrite_body266,6158 -rewrite_body(A,(user:NA,Tail), [V], [D], Tail) :-rewrite_body266,6158 -rewrite_body(A, (user:A,Tail), [], [], Tail).rewrite_body268,6239 -rewrite_body(A, (user:A,Tail), [], [], Tail).rewrite_body268,6239 -rewrite_goal(A,V,D,NA) :-rewrite_goal271,6319 -rewrite_goal(A,V,D,NA) :-rewrite_goal271,6319 -rewrite_goal(A,V,D,NA) :-rewrite_goal271,6319 -replace_last_var([_],V,[V]) :- !.replace_last_var287,6616 -replace_last_var([_],V,[V]) :- !.replace_last_var287,6616 -replace_last_var([_],V,[V]) :- !.replace_last_var287,6616 -replace_last_var([A|Args],V,[A|NArgs]) :-replace_last_var288,6650 -replace_last_var([A|Args],V,[A|NArgs]) :-replace_last_var288,6650 -replace_last_var([A|Args],V,[A|NArgs]) :-replace_last_var288,6650 -cpt_score(Lik) :-cpt_score295,6749 -cpt_score(Lik) :-cpt_score295,6749 -cpt_score(Lik) :-cpt_score295,6749 -complete_clpbn_cost(_AlephClause).complete_clpbn_cost304,6999 -complete_clpbn_cost(_AlephClause).complete_clpbn_cost304,6999 -random_type(A,B) :-random_type306,7035 -random_type(A,B) :-random_type306,7035 -random_type(A,B) :-random_type306,7035 -uniform_cpt(Ds, CPTList) :-uniform_cpt310,7075 -uniform_cpt(Ds, CPTList) :-uniform_cpt310,7075 -uniform_cpt(Ds, CPTList) :-uniform_cpt310,7075 -lengths([], []).lengths314,7157 -lengths([], []).lengths314,7157 -lengths([D|Ds], [L|Ls]) :-lengths315,7174 -lengths([D|Ds], [L|Ls]) :-lengths315,7174 -lengths([D|Ds], [L|Ls]) :-lengths315,7174 - -packages/CLPBN/learning/bnt_parms.yap,3281 -:- dynamic bnt_em_max_iter/1.dynamic29,501 -:- dynamic bnt_em_max_iter/1.dynamic29,501 -bnt_em_max_iter(10).bnt_em_max_iter30,531 -bnt_em_max_iter(10).bnt_em_max_iter30,531 -learn_parameters(Items, Tables) :-learn_parameters40,642 -learn_parameters(Items, Tables) :-learn_parameters40,642 -learn_parameters(Items, Tables) :-learn_parameters40,642 -run_all([]).run_all55,1092 -run_all([]).run_all55,1092 -run_all([G|Gs]) :-run_all56,1105 -run_all([G|Gs]) :-run_all56,1105 -run_all([G|Gs]) :-run_all56,1105 -clpbn_vars(Vs,BVars) :-clpbn_vars60,1154 -clpbn_vars(Vs,BVars) :-clpbn_vars60,1154 -clpbn_vars(Vs,BVars) :-clpbn_vars60,1154 -get_clpbn_vars([],[]).get_clpbn_vars65,1247 -get_clpbn_vars([],[]).get_clpbn_vars65,1247 -get_clpbn_vars([V|GVars],[K-V|CLPBNGVars]) :-get_clpbn_vars66,1270 -get_clpbn_vars([V|GVars],[K-V|CLPBNGVars]) :-get_clpbn_vars66,1270 -get_clpbn_vars([V|GVars],[K-V|CLPBNGVars]) :-get_clpbn_vars66,1270 -get_clpbn_vars([_|GVars],CLPBNGVars) :-get_clpbn_vars69,1384 -get_clpbn_vars([_|GVars],CLPBNGVars) :-get_clpbn_vars69,1384 -get_clpbn_vars([_|GVars],CLPBNGVars) :-get_clpbn_vars69,1384 -merge_vars([],[]).merge_vars72,1460 -merge_vars([],[]).merge_vars72,1460 -merge_vars([K-V|KVs],[V|BVars]) :-merge_vars73,1479 -merge_vars([K-V|KVs],[V|BVars]) :-merge_vars73,1479 -merge_vars([K-V|KVs],[V|BVars]) :-merge_vars73,1479 -get_var_has_same_key([K-V|KVs],K,V,KVs0) :- !,get_var_has_same_key77,1577 -get_var_has_same_key([K-V|KVs],K,V,KVs0) :- !,get_var_has_same_key77,1577 -get_var_has_same_key([K-V|KVs],K,V,KVs0) :- !,get_var_has_same_key77,1577 -get_var_has_same_key(KVs,_,_,KVs).get_var_has_same_key79,1661 -get_var_has_same_key(KVs,_,_,KVs).get_var_has_same_key79,1661 -mk_sample(AllVars,NVars, LL) :-mk_sample82,1698 -mk_sample(AllVars,NVars, LL) :-mk_sample82,1698 -mk_sample(AllVars,NVars, LL) :-mk_sample82,1698 -add2sample([], []).add2sample87,1823 -add2sample([], []).add2sample87,1823 -add2sample([V|Vs],[val(VId,1,Val)|Vals]) :-add2sample88,1843 -add2sample([V|Vs],[val(VId,1,Val)|Vals]) :-add2sample88,1843 -add2sample([V|Vs],[val(VId,1,Val)|Vals]) :-add2sample88,1843 -add2sample([_V|Vs],Vals) :-add2sample94,2054 -add2sample([_V|Vs],Vals) :-add2sample94,2054 -add2sample([_V|Vs],Vals) :-add2sample94,2054 -evidence_val(Ev,Val,[Ev|_],Val) :- !.evidence_val97,2106 -evidence_val(Ev,Val,[Ev|_],Val) :- !.evidence_val97,2106 -evidence_val(Ev,Val,[Ev|_],Val) :- !.evidence_val97,2106 -evidence_val(Ev,I0,[_|Domain],Val) :-evidence_val98,2144 -evidence_val(Ev,I0,[_|Domain],Val) :-evidence_val98,2144 -evidence_val(Ev,I0,[_|Domain],Val) :-evidence_val98,2144 -bnt_learn_parameters(_,_) :-bnt_learn_parameters102,2229 -bnt_learn_parameters(_,_) :-bnt_learn_parameters102,2229 -bnt_learn_parameters(_,_) :-bnt_learn_parameters102,2229 -get_parameters([],[]).get_parameters112,2552 -get_parameters([],[]).get_parameters112,2552 -get_parameters([Rep-v(_,_,_)|Reps],[CPT|CPTs]) :-get_parameters113,2575 -get_parameters([Rep-v(_,_,_)|Reps],[CPT|CPTs]) :-get_parameters113,2575 -get_parameters([Rep-v(_,_,_)|Reps],[CPT|CPTs]) :-get_parameters113,2575 -get_new_table(Rep,CPT) :-get_new_table117,2679 -get_new_table(Rep,CPT) :-get_new_table117,2679 -get_new_table(Rep,CPT) :-get_new_table117,2679 - -packages/CLPBN/learning/em.yap,13028 -em(Items, MaxError, MaxIts, Tables, Likelihood) :-em75,1265 -em(Items, MaxError, MaxIts, Tables, Likelihood) :-em75,1265 -em(Items, MaxError, MaxIts, Tables, Likelihood) :-em75,1265 -em(_, _, _, Tables, Likelihood) :-em82,1545 -em(_, _, _, Tables, Likelihood) :-em82,1545 -em(_, _, _, Tables, Likelihood) :-em82,1545 -handle_em(error(repeated_parents)) :- !,handle_em86,1622 -handle_em(error(repeated_parents)) :- !,handle_em86,1622 -handle_em(error(repeated_parents)) :- !,handle_em86,1622 -handle_em(Error) :-handle_em89,1698 -handle_em(Error) :-handle_em89,1698 -handle_em(Error) :-handle_em89,1698 -end_em(state(_AllDists, _AllDistInstances, _MargKeys, SolverState)) :-end_em93,1735 -end_em(state(_AllDists, _AllDistInstances, _MargKeys, SolverState)) :-end_em93,1735 -end_em(state(_AllDists, _AllDistInstances, _MargKeys, SolverState)) :-end_em93,1735 -end_em(_).end_em96,1866 -end_em(_).end_em96,1866 -init_em(Items, State) :-init_em107,2362 -init_em(Items, State) :-init_em107,2362 -init_em(Items, State) :-init_em107,2362 -setup_em_network(Items, state(AllDists, AllDistInstances, MargKeys, SolverState)) :-setup_em_network116,2588 -setup_em_network(Items, state(AllDists, AllDistInstances, MargKeys, SolverState)) :-setup_em_network116,2588 -setup_em_network(Items, state(AllDists, AllDistInstances, MargKeys, SolverState)) :-setup_em_network116,2588 -setup_em_network(Items, state(AllDists, AllDistInstances, MargVars, SolverState)) :-setup_em_network124,2999 -setup_em_network(Items, state(AllDists, AllDistInstances, MargVars, SolverState)) :-setup_em_network124,2999 -setup_em_network(Items, state(AllDists, AllDistInstances, MargVars, SolverState)) :-setup_em_network124,2999 -run_examples(user:Exs, Keys, Factors, EList) :-run_examples136,3498 -run_examples(user:Exs, Keys, Factors, EList) :-run_examples136,3498 -run_examples(user:Exs, Keys, Factors, EList) :-run_examples136,3498 -run_examples(Items, Keys, Factors, EList) :-run_examples141,3739 -run_examples(Items, Keys, Factors, EList) :-run_examples141,3739 -run_examples(Items, Keys, Factors, EList) :-run_examples141,3739 -add_key(Ex, I:Ex, I, I1) :-add_key144,3824 -add_key(Ex, I:Ex, I, I1) :-add_key144,3824 -add_key(Ex, I:Ex, I, I1) :-add_key144,3824 -join_example( ex(EKs, EFs, EEs), Keys0, Keys, Factors0, Factors, EList0, EList, I0, I) :-join_example147,3865 -join_example( ex(EKs, EFs, EEs), Keys0, Keys, Factors0, Factors, EList0, EList, I0, I) :-join_example147,3865 -join_example( ex(EKs, EFs, EEs), Keys0, Keys, Factors0, Factors, EList0, EList, I0, I) :-join_example147,3865 -process_key(I0, K, Keys0, [I0:K|Keys0]).process_key153,4107 -process_key(I0, K, Keys0, [I0:K|Keys0]).process_key153,4107 -process_factor(I0, f(Type, Id, Keys), Keys0, [f(Type, Id, NKeys)|Keys0]) :-process_factor155,4149 -process_factor(I0, f(Type, Id, Keys), Keys0, [f(Type, Id, NKeys)|Keys0]) :-process_factor155,4149 -process_factor(I0, f(Type, Id, Keys), Keys0, [f(Type, Id, NKeys)|Keys0]) :-process_factor155,4149 -update_key(I0, K, I0:K).update_key158,4265 -update_key(I0, K, I0:K).update_key158,4265 -process_ev(I0, K=V, Es0, [(I0:K)=V|Es0]).process_ev160,4291 -process_ev(I0, K=V, Es0, [(I0:K)=V|Es0]).process_ev160,4291 -run_example([_:Items|_], Keys, Factors, EList) :-run_example162,4334 -run_example([_:Items|_], Keys, Factors, EList) :-run_example162,4334 -run_example([_:Items|_], Keys, Factors, EList) :-run_example162,4334 -run_example([_|LItems], Keys, Factors, EList) :-run_example164,4427 -run_example([_|LItems], Keys, Factors, EList) :-run_example164,4427 -run_example([_|LItems], Keys, Factors, EList) :-run_example164,4427 -run_ex(Items, Keys, Factors, EList) :-run_ex167,4521 -run_ex(Items, Keys, Factors, EList) :-run_ex167,4521 -run_ex(Items, Keys, Factors, EList) :-run_ex167,4521 -em_loop(Its, Likelihood0, State, MaxError, MaxIts, LikelihoodF, FTables) :-em_loop178,4880 -em_loop(Its, Likelihood0, State, MaxError, MaxIts, LikelihoodF, FTables) :-em_loop178,4880 -em_loop(Its, Likelihood0, State, MaxError, MaxIts, LikelihoodF, FTables) :-em_loop178,4880 -ltables([], []).ltables197,5371 -ltables([], []).ltables197,5371 -ltables([Id-T|Tables], [Key-LTable|FTables]) :-ltables198,5388 -ltables([Id-T|Tables], [Key-LTable|FTables]) :-ltables198,5388 -ltables([Id-T|Tables], [Key-LTable|FTables]) :-ltables198,5388 -generate_dists(Factors, EList, AllDists, AllInfo, MargVars) :-generate_dists204,5516 -generate_dists(Factors, EList, AllDists, AllInfo, MargVars) :-generate_dists204,5516 -generate_dists(Factors, EList, AllDists, AllInfo, MargVars) :-generate_dists204,5516 -elist_to_hash(K=V, Ev0, Ev) :-elist_to_hash212,5785 -elist_to_hash(K=V, Ev0, Ev) :-elist_to_hash212,5785 -elist_to_hash(K=V, Ev0, Ev) :-elist_to_hash212,5785 -process_factor(Ev, f(bayes,Id,Ks), i(Id, Ks, Cases, NonEvs)) :-process_factor215,5848 -process_factor(Ev, f(bayes,Id,Ks), i(Id, Ks, Cases, NonEvs)) :-process_factor215,5848 -process_factor(Ev, f(bayes,Id,Ks), i(Id, Ks, Cases, NonEvs)) :-process_factor215,5848 -fetch_evidence(Ev, K, E, NonEvs, NonEvs) :-fetch_evidence219,6011 -fetch_evidence(Ev, K, E, NonEvs, NonEvs) :-fetch_evidence219,6011 -fetch_evidence(Ev, K, E, NonEvs, NonEvs) :-fetch_evidence219,6011 -fetch_evidence(_Ev, K, Ns, NonEvs, [K|NonEvs]) :-fetch_evidence221,6084 -fetch_evidence(_Ev, K, Ns, NonEvs, [K|NonEvs]) :-fetch_evidence221,6084 -fetch_evidence(_Ev, K, Ns, NonEvs, [K|NonEvs]) :-fetch_evidence221,6084 -domain_to_number(_, I0, I0, I) :-domain_to_number225,6192 -domain_to_number(_, I0, I0, I) :-domain_to_number225,6192 -domain_to_number(_, I0, I0, I) :-domain_to_number225,6192 -different_dists(AllVars, AllDists, AllInfo, MargVars) :-different_dists230,6298 -different_dists(AllVars, AllDists, AllInfo, MargVars) :-different_dists230,6298 -different_dists(AllVars, AllDists, AllInfo, MargVars) :-different_dists230,6298 -all_dists([], _, []).all_dists244,6750 -all_dists([], _, []).all_dists244,6750 -all_dists([V|AllVars], AllVars0, [i(Id, [V|Parents], Cases, Hiddens)|Dists]) :-all_dists245,6772 -all_dists([V|AllVars], AllVars0, [i(Id, [V|Parents], Cases, Hiddens)|Dists]) :-all_dists245,6772 -all_dists([V|AllVars], AllVars0, [i(Id, [V|Parents], Cases, Hiddens)|Dists]) :-all_dists245,6772 -generate_hidden_cases([], [], []).generate_hidden_cases262,7232 -generate_hidden_cases([], [], []).generate_hidden_cases262,7232 -generate_hidden_cases([V|Parents], [P|Cases], Hiddens) :-generate_hidden_cases263,7267 -generate_hidden_cases([V|Parents], [P|Cases], Hiddens) :-generate_hidden_cases263,7267 -generate_hidden_cases([V|Parents], [P|Cases], Hiddens) :-generate_hidden_cases263,7267 -generate_hidden_cases([V|Parents], [Cases|MoreCases], [V|Hiddens]) :-generate_hidden_cases266,7412 -generate_hidden_cases([V|Parents], [Cases|MoreCases], [V|Hiddens]) :-generate_hidden_cases266,7412 -generate_hidden_cases([V|Parents], [Cases|MoreCases], [V|Hiddens]) :-generate_hidden_cases266,7412 -gen_cases(Sz, Sz, []) :- !.gen_cases272,7627 -gen_cases(Sz, Sz, []) :- !.gen_cases272,7627 -gen_cases(Sz, Sz, []) :- !.gen_cases272,7627 -gen_cases(I, Sz, [I|Cases]) :-gen_cases273,7655 -gen_cases(I, Sz, [I|Cases]) :-gen_cases273,7655 -gen_cases(I, Sz, [I|Cases]) :-gen_cases273,7655 -uncompact_cases(CompactCases, Cases) :-uncompact_cases277,7726 -uncompact_cases(CompactCases, Cases) :-uncompact_cases277,7726 -uncompact_cases(CompactCases, Cases) :-uncompact_cases277,7726 -is_case([], []).is_case280,7819 -is_case([], []).is_case280,7819 -is_case([A|CompactCases], [A|Case]) :-is_case281,7836 -is_case([A|CompactCases], [A|Case]) :-is_case281,7836 -is_case([A|CompactCases], [A|Case]) :-is_case281,7836 -is_case([L|CompactCases], [C|Case]) :-is_case284,7921 -is_case([L|CompactCases], [C|Case]) :-is_case284,7921 -is_case([L|CompactCases], [C|Case]) :-is_case284,7921 -group([], [], []) --> [].group288,8006 -group([], [], []) --> [].group288,8006 -group([], [], []) --> [].group288,8006 -group([i(Id,Ps,Cs,[])|Dists1], [Id|Ids], [Id-[i(Id,Ps,Cs,[])|Extra]|AllInfo]) --> !,group289,8032 -group([i(Id,Ps,Cs,[])|Dists1], [Id|Ids], [Id-[i(Id,Ps,Cs,[])|Extra]|AllInfo]) --> !,group289,8032 -group([i(Id,Ps,Cs,[])|Dists1], [Id|Ids], [Id-[i(Id,Ps,Cs,[])|Extra]|AllInfo]) --> !,group289,8032 -group([i(Id,Ps,Cs,Hs)|Dists1], [Id|Ids], [Id-[i(Id,Ps,Cs,Hs)|Extra]|AllInfo]) -->group292,8180 -group([i(Id,Ps,Cs,Hs)|Dists1], [Id|Ids], [Id-[i(Id,Ps,Cs,Hs)|Extra]|AllInfo]) -->group292,8180 -group([i(Id,Ps,Cs,Hs)|Dists1], [Id|Ids], [Id-[i(Id,Ps,Cs,Hs)|Extra]|AllInfo]) -->group292,8180 -same_id([i(Id,Vs,Cases,[])|Dists1], Id, [i(Id, Vs, Cases, [])|Extra], Rest) --> !,same_id297,8333 -same_id([i(Id,Vs,Cases,[])|Dists1], Id, [i(Id, Vs, Cases, [])|Extra], Rest) --> !,same_id297,8333 -same_id([i(Id,Vs,Cases,[])|Dists1], Id, [i(Id, Vs, Cases, [])|Extra], Rest) --> !,same_id297,8333 -same_id([i(Id,Vs,Cases,Hs)|Dists1], Id, [i(Id, Vs, Cases, Hs)|Extra], Rest) --> !,same_id299,8451 -same_id([i(Id,Vs,Cases,Hs)|Dists1], Id, [i(Id, Vs, Cases, Hs)|Extra], Rest) --> !,same_id299,8451 -same_id([i(Id,Vs,Cases,Hs)|Dists1], Id, [i(Id, Vs, Cases, Hs)|Extra], Rest) --> !,same_id299,8451 -same_id(Dists, _, [], Dists) --> [].same_id302,8576 -same_id(Dists, _, [], Dists) --> [].same_id302,8576 -same_id(Dists, _, [], Dists) --> [].same_id302,8576 -compact_mvars([], []).compact_mvars305,8615 -compact_mvars([], []).compact_mvars305,8615 -compact_mvars([X1,X2|MargVars], CMVars) :- X1 == X2, !,compact_mvars306,8638 -compact_mvars([X1,X2|MargVars], CMVars) :- X1 == X2, !,compact_mvars306,8638 -compact_mvars([X1,X2|MargVars], CMVars) :- X1 == X2, !,compact_mvars306,8638 -compact_mvars([X|MargVars], [X|CMVars]) :- !,compact_mvars308,8733 -compact_mvars([X|MargVars], [X|CMVars]) :- !,compact_mvars308,8733 -compact_mvars([X|MargVars], [X|CMVars]) :- !,compact_mvars308,8733 -estimate(state(_, _, Margs, SolverState), LPs) :-estimate311,8814 -estimate(state(_, _, Margs, SolverState), LPs) :-estimate311,8814 -estimate(state(_, _, Margs, SolverState), LPs) :-estimate311,8814 -estimate(state(_, _, Margs, SolverState), LPs) :-estimate314,8936 -estimate(state(_, _, Margs, SolverState), LPs) :-estimate314,8936 -estimate(state(_, _, Margs, SolverState), LPs) :-estimate314,8936 -maximise(state(_,DistInstances,MargVars,_), Tables, LPs, Likelihood) :-maximise317,9031 -maximise(state(_,DistInstances,MargVars,_), Tables, LPs, Likelihood) :-maximise317,9031 -maximise(state(_,DistInstances,MargVars,_), Tables, LPs, Likelihood) :-maximise317,9031 -create_mdist_table(Vs, Ps, MDistTable0, MDistTable) :-create_mdist_table322,9281 -create_mdist_table(Vs, Ps, MDistTable0, MDistTable) :-create_mdist_table322,9281 -create_mdist_table(Vs, Ps, MDistTable0, MDistTable) :-create_mdist_table322,9281 -compute_parameters([], [], _, Lik, Lik, _).compute_parameters325,9382 -compute_parameters([], [], _, Lik, Lik, _).compute_parameters325,9382 -compute_parameters([Id-Samples|Dists], [Id-NewTable|Tables], MDistTable, Lik0, Lik, LPs:MargVars) :-compute_parameters326,9426 -compute_parameters([Id-Samples|Dists], [Id-NewTable|Tables], MDistTable, Lik0, Lik, LPs:MargVars) :-compute_parameters326,9426 -compute_parameters([Id-Samples|Dists], [Id-NewTable|Tables], MDistTable, Lik0, Lik, LPs:MargVars) :-compute_parameters326,9426 -add_samples([], _, _).add_samples338,10002 -add_samples([], _, _).add_samples338,10002 -add_samples([i(_,_,[Case],[])|Samples], Table, MDistTable) :- !,add_samples339,10025 -add_samples([i(_,_,[Case],[])|Samples], Table, MDistTable) :- !,add_samples339,10025 -add_samples([i(_,_,[Case],[])|Samples], Table, MDistTable) :- !,add_samples339,10025 -add_samples([i(_,_,Cases,Hiddens)|Samples], Table, MDistTable) :-add_samples342,10161 -add_samples([i(_,_,Cases,Hiddens)|Samples], Table, MDistTable) :-add_samples342,10161 -add_samples([i(_,_,Cases,Hiddens)|Samples], Table, MDistTable) :-add_samples342,10161 -run_sample([], [], _).run_sample348,10407 -run_sample([], [], _).run_sample348,10407 -run_sample([C|Cases], [P|Ps], Table) :-run_sample349,10430 -run_sample([C|Cases], [P|Ps], Table) :-run_sample349,10430 -run_sample([C|Cases], [P|Ps], Table) :-run_sample349,10430 -call_run_all(Mod:Items) :-call_run_all353,10528 -call_run_all(Mod:Items) :-call_run_all353,10528 -call_run_all(Mod:Items) :-call_run_all353,10528 -call_run_all(Mod:Items) :-call_run_all356,10619 -call_run_all(Mod:Items) :-call_run_all356,10619 -call_run_all(Mod:Items) :-call_run_all356,10619 -backtrack_run_all([Item|_], Mod) :-backtrack_run_all359,10668 -backtrack_run_all([Item|_], Mod) :-backtrack_run_all359,10668 -backtrack_run_all([Item|_], Mod) :-backtrack_run_all359,10668 -backtrack_run_all([_|Items], Mod) :-backtrack_run_all362,10728 -backtrack_run_all([_|Items], Mod) :-backtrack_run_all362,10728 -backtrack_run_all([_|Items], Mod) :-backtrack_run_all362,10728 -backtrack_run_all([], _).backtrack_run_all364,10797 -backtrack_run_all([], _).backtrack_run_all364,10797 - -packages/CLPBN/learning/learn_mln_wgts.yap,7281 -:- dynamic diff/4, lit/1, i/2.dynamic34,523 -:- dynamic diff/4, lit/1, i/2.dynamic34,523 -prior_means(_, 0.0).prior_means36,555 -prior_means(_, 0.0).prior_means36,555 -prior_dev(_, 1.0).prior_dev37,576 -prior_dev(_, 1.0).prior_dev37,576 -learn_mln_generative :-learn_mln_generative39,596 -set_weights :-set_weights43,643 -adjust_lprior(Lik0, Lik) :-adjust_lprior51,785 -adjust_lprior(Lik0, Lik) :-adjust_lprior51,785 -adjust_lprior(Lik0, Lik) :-adjust_lprior51,785 -adjust_lprior(Lik0, Lik) :-adjust_lprior53,829 -adjust_lprior(Lik0, Lik) :-adjust_lprior53,829 -adjust_lprior(Lik0, Lik) :-adjust_lprior53,829 -add_lprior(Id-WI, Lik0, Lik) :-add_lprior57,929 -add_lprior(Id-WI, Lik0, Lik) :-add_lprior57,929 -add_lprior(Id-WI, Lik0, Lik) :-add_lprior57,929 -likelihood(Lik) :-likelihood63,1049 -likelihood(Lik) :-likelihood63,1049 -likelihood(Lik) :-likelihood63,1049 -derive :-derive83,1452 -derive :-derive98,1833 -adjust_prior(Lik0, _, Lik) :-adjust_prior110,2036 -adjust_prior(Lik0, _, Lik) :-adjust_prior110,2036 -adjust_prior(Lik0, _, Lik) :-adjust_prior110,2036 -adjust_prior(Sum, Id, NSum) :-adjust_prior112,2082 -adjust_prior(Sum, Id, NSum) :-adjust_prior112,2082 -adjust_prior(Sum, Id, NSum) :-adjust_prior112,2082 -:- dynamic old_fx/1.dynamic118,2202 -:- dynamic old_fx/1.dynamic118,2202 -old_fx(+inf).old_fx120,2224 -old_fx(+inf).old_fx120,2224 -user:progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls, Out) :-progress125,2403 -user:progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls, Out) :-progress125,2403 -user:evaluate(FX,_N,_Step) :-evaluate136,2932 -user:evaluate(FX,_N,_Step) :-evaluate136,2932 -init_vars(Ev, Pr) :-init_vars141,3006 -init_vars(Ev, Pr) :-init_vars141,3006 -init_vars(Ev, Pr) :-init_vars141,3006 -init_vars(_, _).init_vars149,3216 -init_vars(_, _).init_vars149,3216 -output_stat(BestF, Status) :-output_stat151,3234 -output_stat(BestF, Status) :-output_stat151,3234 -output_stat(BestF, Status) :-output_stat151,3234 -optimize :-optimize159,3397 -compile :-compile166,3566 -compile :-compile171,3625 -init_compiler :-init_compiler179,3722 -init_trie :-init_trie193,3976 -init_trie :-init_trie198,4079 -collect_literals :-collect_literals202,4144 -add_lit(K) :-add_lit209,4317 -add_lit(K) :-add_lit209,4317 -add_lit(K) :-add_lit209,4317 -compile_literals :-compile_literals214,4411 -ground_lit(K) :- ground_lit230,4799 -ground_lit(K) :- ground_lit230,4799 -ground_lit(K) :- ground_lit230,4799 -ground_lit(Ar, Ar, _K).ground_lit234,4861 -ground_lit(Ar, Ar, _K).ground_lit234,4861 -ground_lit(I0, Ar, K) :-ground_lit235,4885 -ground_lit(I0, Ar, K) :-ground_lit235,4885 -ground_lit(I0, Ar, K) :-ground_lit235,4885 -compile_pw(VId) :-compile_pw241,4987 -compile_pw(VId) :-compile_pw241,4987 -compile_pw(VId) :-compile_pw241,4987 -compile(VId, Val) :-compile245,5063 -compile(VId, Val) :-compile245,5063 -compile(VId, Val) :-compile245,5063 -store( T , E ) :-store260,5387 -store( T , E ) :-store260,5387 -store( T , E ) :-store260,5387 -store( T , E ) :-store266,5511 -store( T , E ) :-store266,5511 -store( T , E ) :-store266,5511 -merge_lits([], [], []).merge_lits270,5582 -merge_lits([], [], []).merge_lits270,5582 -merge_lits([N*p(F,W,A1,A2,I1,I2), p(F,W,A3,A4,I3,I4)|FsS], FsM, Is) :-merge_lits271,5606 -merge_lits([N*p(F,W,A1,A2,I1,I2), p(F,W,A3,A4,I3,I4)|FsS], FsM, Is) :-merge_lits271,5606 -merge_lits([N*p(F,W,A1,A2,I1,I2), p(F,W,A3,A4,I3,I4)|FsS], FsM, Is) :-merge_lits271,5606 -merge_lits([p(F,W,A1,A2,I1,I2), p(F,W,A3,A4,I3,I4)|FsS], FsM, Is) :-merge_lits278,5787 -merge_lits([p(F,W,A1,A2,I1,I2), p(F,W,A3,A4,I3,I4)|FsS], FsM, Is) :-merge_lits278,5787 -merge_lits([p(F,W,A1,A2,I1,I2), p(F,W,A3,A4,I3,I4)|FsS], FsM, Is) :-merge_lits278,5787 -merge_lits([p(F,W,A1,A2,I1,I2) | FsS], [p(F,1,W,A1,A2)|FsM], [n(F,1,I1,I2)|Is]) :-merge_lits284,5953 -merge_lits([p(F,W,A1,A2,I1,I2) | FsS], [p(F,1,W,A1,A2)|FsM], [n(F,1,I1,I2)|Is]) :-merge_lits284,5953 -merge_lits([p(F,W,A1,A2,I1,I2) | FsS], [p(F,1,W,A1,A2)|FsM], [n(F,1,I1,I2)|Is]) :-merge_lits284,5953 -merge_lits([N*p(F,W,A1,A2,I1,I2) | FsS], [p(F,N,W,A1,A2)|FsM], [n(F,N,I1,I2)|Is]) :-merge_lits286,6063 -merge_lits([N*p(F,W,A1,A2,I1,I2) | FsS], [p(F,N,W,A1,A2)|FsM], [n(F,N,I1,I2)|Is]) :-merge_lits286,6063 -merge_lits([N*p(F,W,A1,A2,I1,I2) | FsS], [p(F,N,W,A1,A2)|FsM], [n(F,N,I1,I2)|Is]) :-merge_lits286,6063 -find_prob(VId, E, ParFactor, W, P0, P1, I0, I1) :-find_prob289,6176 -find_prob(VId, E, ParFactor, W, P0, P1, I0, I1) :-find_prob289,6176 -find_prob(VId, E, ParFactor, W, P0, P1, I0, I1) :-find_prob289,6176 -expand_domain(VIdPol, true - Lits) :- !,expand_domain315,6870 -expand_domain(VIdPol, true - Lits) :- !,expand_domain315,6870 -expand_domain(VIdPol, true - Lits) :- !,expand_domain315,6870 -expand_domain(VIdPol, Dom-Lits) :-expand_domain318,6952 -expand_domain(VIdPol, Dom-Lits) :-expand_domain318,6952 -expand_domain(VIdPol, Dom-Lits) :-expand_domain318,6952 -false_literal(L-(-), L).false_literal325,7145 -false_literal(L-(-), L).false_literal325,7145 -false_literal(VId-_, L) :-false_literal326,7170 -false_literal(VId-_, L) :-false_literal326,7170 -false_literal(VId-_, L) :-false_literal326,7170 -true_literal(L-(+), L) :- !.true_literal331,7240 -true_literal(L-(+), L) :- !.true_literal331,7240 -true_literal(L-(+), L) :- !.true_literal331,7240 -true_literal(VId-_, L) :-true_literal332,7269 -true_literal(VId-_, L) :-true_literal332,7269 -true_literal(VId-_, L) :-true_literal332,7269 -deletei([true-Lits|More], K, [true-NLits|More], -) :-deletei336,7327 -deletei([true-Lits|More], K, [true-NLits|More], -) :-deletei336,7327 -deletei([true-Lits|More], K, [true-NLits|More], -) :-deletei336,7327 -deletei([true-Lits|More], K, [true-Lits|NMore], -) :- !,deletei338,7412 -deletei([true-Lits|More], K, [true-Lits|NMore], -) :- !,deletei338,7412 -deletei([true-Lits|More], K, [true-Lits|NMore], -) :- !,deletei338,7412 -deletei(More, K, NMore, +) :-deletei340,7500 -deletei(More, K, NMore, +) :-deletei340,7500 -deletei(More, K, NMore, +) :-deletei340,7500 -deletei([Dom-Lits|More], K, [Dom-NLits|More]) :-deletei343,7557 -deletei([Dom-Lits|More], K, [Dom-NLits|More]) :-deletei343,7557 -deletei([Dom-Lits|More], K, [Dom-NLits|More]) :-deletei343,7557 -deletei([DomLits|More], K, [DomLits|NMore]) :-deletei345,7637 -deletei([DomLits|More], K, [DomLits|NMore]) :-deletei345,7637 -deletei([DomLits|More], K, [DomLits|NMore]) :-deletei345,7637 -force_delete([Elem|List], Elem, List).force_delete348,7711 -force_delete([Elem|List], Elem, List).force_delete348,7711 -force_delete([Head|List], Elem, [Head|Residue]) :-force_delete349,7750 -force_delete([Head|List], Elem, [Head|Residue]) :-force_delete349,7750 -force_delete([Head|List], Elem, [Head|Residue]) :-force_delete349,7750 -inc(Id) :-inc352,7838 -inc(Id) :-inc352,7838 -inc(Id) :-inc352,7838 -peval(Ref, P) :-peval356,7891 -peval(Ref, P) :-peval356,7891 -peval(Ref, P) :-peval356,7891 -peval(Ps, P0, P1) :-peval362,8051 -peval(Ps, P0, P1) :-peval362,8051 -peval(Ps, P0, P1) :-peval362,8051 -p_eval(p(WId, N, W, P0, P1), AP0, A0, AP1, A1) :-p_eval369,8197 -p_eval(p(WId, N, W, P0, P1), AP0, A0, AP1, A1) :-p_eval369,8197 -p_eval(p(WId, N, W, P0, P1), AP0, A0, AP1, A1) :-p_eval369,8197 - -packages/CLPBN/learning/learn_utils.yap,3434 -run_all([]).run_all33,557 -run_all([]).run_all33,557 -run_all([G|Gs]) :-run_all34,570 -run_all([G|Gs]) :-run_all34,570 -run_all([G|Gs]) :-run_all34,570 -run_all(M:Gs) :-run_all36,612 -run_all(M:Gs) :-run_all36,612 -run_all(M:Gs) :-run_all36,612 -run_all([],_).run_all40,667 -run_all([],_).run_all40,667 -run_all([example(Gs0)|Gs],M) :-run_all41,682 -run_all([example(Gs0)|Gs],M) :-run_all41,682 -run_all([example(Gs0)|Gs],M) :-run_all41,682 -run_all([G|Gs],M) :-run_all44,747 -run_all([G|Gs],M) :-run_all44,747 -run_all([G|Gs],M) :-run_all44,747 -clpbn_vars(Vs,BVars) :-clpbn_vars48,833 -clpbn_vars(Vs,BVars) :-clpbn_vars48,833 -clpbn_vars(Vs,BVars) :-clpbn_vars48,833 -get_clpbn_vars([],[]).get_clpbn_vars53,926 -get_clpbn_vars([],[]).get_clpbn_vars53,926 -get_clpbn_vars([V|GVars],[K-V|CLPBNGVars]) :-get_clpbn_vars54,949 -get_clpbn_vars([V|GVars],[K-V|CLPBNGVars]) :-get_clpbn_vars54,949 -get_clpbn_vars([V|GVars],[K-V|CLPBNGVars]) :-get_clpbn_vars54,949 -get_clpbn_vars([_|GVars],CLPBNGVars) :-get_clpbn_vars57,1063 -get_clpbn_vars([_|GVars],CLPBNGVars) :-get_clpbn_vars57,1063 -get_clpbn_vars([_|GVars],CLPBNGVars) :-get_clpbn_vars57,1063 -merge_vars([],[]).merge_vars60,1139 -merge_vars([],[]).merge_vars60,1139 -merge_vars([K-V|KVs],[V|BVars]) :-merge_vars61,1158 -merge_vars([K-V|KVs],[V|BVars]) :-merge_vars61,1158 -merge_vars([K-V|KVs],[V|BVars]) :-merge_vars61,1158 -get_var_has_same_key([K-V|KVs],K,V,KVs0) :- !,get_var_has_same_key65,1256 -get_var_has_same_key([K-V|KVs],K,V,KVs0) :- !,get_var_has_same_key65,1256 -get_var_has_same_key([K-V|KVs],K,V,KVs0) :- !,get_var_has_same_key65,1256 -get_var_has_same_key(KVs,_,_,KVs).get_var_has_same_key67,1341 -get_var_has_same_key(KVs,_,_,KVs).get_var_has_same_key67,1341 -soften_sample(T0,T) :-soften_sample69,1377 -soften_sample(T0,T) :-soften_sample69,1377 -soften_sample(T0,T) :-soften_sample69,1377 -soften_sample(no,T,T).soften_sample73,1474 -soften_sample(no,T,T).soften_sample73,1474 -soften_sample(m_estimate(M), T0, T) :-soften_sample74,1497 -soften_sample(m_estimate(M), T0, T) :-soften_sample74,1497 -soften_sample(m_estimate(M), T0, T) :-soften_sample74,1497 -soften_sample(auto_m, T0,T) :-soften_sample78,1629 -soften_sample(auto_m, T0,T) :-soften_sample78,1629 -soften_sample(auto_m, T0,T) :-soften_sample78,1629 -soften_sample(laplace,T0,T) :-soften_sample84,1795 -soften_sample(laplace,T0,T) :-soften_sample84,1795 -soften_sample(laplace,T0,T) :-soften_sample84,1795 -normalise_counts(MAT,NMAT) :-normalise_counts88,1860 -normalise_counts(MAT,NMAT) :-normalise_counts88,1860 -normalise_counts(MAT,NMAT) :-normalise_counts88,1860 -compute_likelihood(Table0, NewTable, DeltaLik) :-compute_likelihood92,1963 -compute_likelihood(Table0, NewTable, DeltaLik) :-compute_likelihood92,1963 -compute_likelihood(Table0, NewTable, DeltaLik) :-compute_likelihood92,1963 -sum_prods([],[],DeltaLik,DeltaLik).sum_prods98,2131 -sum_prods([],[],DeltaLik,DeltaLik).sum_prods98,2131 -sum_prods([0.0|L1],[_|L2],DeltaLik0,DeltaLik) :- !,sum_prods99,2167 -sum_prods([0.0|L1],[_|L2],DeltaLik0,DeltaLik) :- !,sum_prods99,2167 -sum_prods([0.0|L1],[_|L2],DeltaLik0,DeltaLik) :- !,sum_prods99,2167 -sum_prods([Count|L1],[Log|L2],DeltaLik0,DeltaLik) :- !,sum_prods101,2257 -sum_prods([Count|L1],[Log|L2],DeltaLik0,DeltaLik) :- !,sum_prods101,2257 -sum_prods([Count|L1],[Log|L2],DeltaLik0,DeltaLik) :- !,sum_prods101,2257 - -packages/CLPBN/learning/mle.yap,3690 -learn_parameters(Items, Tables) :-learn_parameters33,525 -learn_parameters(Items, Tables) :-learn_parameters33,525 -learn_parameters(Items, Tables) :-learn_parameters33,525 -learn_parameters(Items, Tables, Extras) :-learn_parameters39,628 -learn_parameters(Items, Tables, Extras) :-learn_parameters39,628 -learn_parameters(Items, Tables, Extras) :-learn_parameters39,628 -parameters_from_evidence(AllVars, Sample, Extras) :-parameters_from_evidence47,853 -parameters_from_evidence(AllVars, Sample, Extras) :-parameters_from_evidence47,853 -parameters_from_evidence(AllVars, Sample, Extras) :-parameters_from_evidence47,853 -mk_sample_from_evidence(AllVars, SortedSample) :-mk_sample_from_evidence51,991 -mk_sample_from_evidence(AllVars, SortedSample) :-mk_sample_from_evidence51,991 -mk_sample_from_evidence(AllVars, SortedSample) :-mk_sample_from_evidence51,991 -mk_sample(AllVars, SortedSample) :-mk_sample55,1111 -mk_sample(AllVars, SortedSample) :-mk_sample55,1111 -mk_sample(AllVars, SortedSample) :-mk_sample55,1111 -add2sample([], []).add2sample62,1277 -add2sample([], []).add2sample62,1277 -add2sample([V|Vs],[val(Id,[Ev|EParents])|Vals]) :-add2sample63,1298 -add2sample([V|Vs],[val(Id,[Ev|EParents])|Vals]) :-add2sample63,1298 -add2sample([V|Vs],[val(Id,[Ev|EParents])|Vals]) :-add2sample63,1298 -get_eparents([P|Parents], [E|EParents]) :-get_eparents68,1460 -get_eparents([P|Parents], [E|EParents]) :-get_eparents68,1460 -get_eparents([P|Parents], [E|EParents]) :-get_eparents68,1460 -get_eparents([], []).get_eparents71,1572 -get_eparents([], []).get_eparents71,1572 -add_evidence2sample([], []).add_evidence2sample78,1682 -add_evidence2sample([], []).add_evidence2sample78,1682 -add_evidence2sample([V|Vs],[val(Id,[Ev|EParents])|Vals]) :-add_evidence2sample79,1712 -add_evidence2sample([V|Vs],[val(Id,[Ev|EParents])|Vals]) :-add_evidence2sample79,1712 -add_evidence2sample([V|Vs],[val(Id,[Ev|EParents])|Vals]) :-add_evidence2sample79,1712 -add_evidence2sample([_|Vs],Vals) :-add_evidence2sample83,1896 -add_evidence2sample([_|Vs],Vals) :-add_evidence2sample83,1896 -add_evidence2sample([_|Vs],Vals) :-add_evidence2sample83,1896 -get_eveparents([P|Parents], [E|EParents]) :-get_eveparents86,1965 -get_eveparents([P|Parents], [E|EParents]) :-get_eveparents86,1965 -get_eveparents([P|Parents], [E|EParents]) :-get_eveparents86,1965 -get_eveparents([], []).get_eveparents89,2079 -get_eveparents([], []).get_eveparents89,2079 -compute_tables(Parameters, Sample, NewTables) :-compute_tables92,2105 -compute_tables(Parameters, Sample, NewTables) :-compute_tables92,2105 -compute_tables(Parameters, Sample, NewTables) :-compute_tables92,2105 -estimator([], []).estimator96,2227 -estimator([], []).estimator96,2227 -estimator([val(Id,Sample)|Samples], [NewDist|Tables]) :-estimator97,2246 -estimator([val(Id,Sample)|Samples], [NewDist|Tables]) :-estimator97,2246 -estimator([val(Id,Sample)|Samples], [NewDist|Tables]) :-estimator97,2246 -id_samples(_, [], [], []).id_samples108,2598 -id_samples(_, [], [], []).id_samples108,2598 -id_samples(Id, [val(Id,Sample)|Samples], [Sample|IdSamples], MoreSamples) :- !,id_samples109,2625 -id_samples(Id, [val(Id,Sample)|Samples], [Sample|IdSamples], MoreSamples) :- !,id_samples109,2625 -id_samples(Id, [val(Id,Sample)|Samples], [Sample|IdSamples], MoreSamples) :- !,id_samples109,2625 -id_samples(_, Samples, [], Samples).id_samples111,2755 -id_samples(_, Samples, [], Samples).id_samples111,2755 -mle([Sample|IdSamples], Table) :-mle113,2793 -mle([Sample|IdSamples], Table) :-mle113,2793 -mle([Sample|IdSamples], Table) :-mle113,2793 -mle([], _).mle116,2879 -mle([], _).mle116,2879 - -packages/CLPBN/mlns.yap,13279 -:- dynamic mln/1, mln/2, mln_domain/4, mln/5, mln_w/2, mln_domain/5, mln_type_def/1.dynamic17,293 -:- dynamic mln/1, mln/2, mln_domain/4, mln/5, mln_w/2, mln_domain/5, mln_type_def/1.dynamic17,293 -user:term_expansion(mln_domain(P),[]) :-term_expansion19,379 -user:term_expansion(mln_domain(P),[]) :-term_expansion19,379 -user:term_expansion( mln(W: D), pfl:factor(markov,Id,FList,FV,Phi,Constraints)) :-term_expansion22,440 -user:term_expansion( mln(W: D), pfl:factor(markov,Id,FList,FV,Phi,Constraints)) :-term_expansion22,440 -user:term_expansion( mln(W: D), _) :-term_expansion24,587 -user:term_expansion( mln(W: D), _) :-term_expansion24,587 -user:term_expansion(end_of_file,_) :-term_expansion27,670 -user:term_expansion(end_of_file,_) :-term_expansion27,670 -user:term_expansion(end_of_file,end_of_file).term_expansion31,793 -expand_domain((P1,P2)) :- !,expand_domain33,840 -expand_domain((P1,P2)) :- !,expand_domain33,840 -expand_domain((P1,P2)) :- !,expand_domain33,840 -expand_domain(P) :-expand_domain36,909 -expand_domain(P) :-expand_domain36,909 -expand_domain(P) :-expand_domain36,909 -do_type(NP, Type, I0, I) :-do_type42,1038 -do_type(NP, Type, I0, I) :-do_type42,1038 -do_type(NP, Type, I0, I) :-do_type42,1038 -add_mln_domain(TypeG, NP, I0, A, _) :-add_mln_domain49,1202 -add_mln_domain(TypeG, NP, I0, A, _) :-add_mln_domain49,1202 -add_mln_domain(TypeG, NP, I0, A, _) :-add_mln_domain49,1202 -add_mln_domain(TypeG, _NP, _I0, _A, _) :-add_mln_domain55,1364 -add_mln_domain(TypeG, _NP, _I0, _A, _) :-add_mln_domain55,1364 -add_mln_domain(TypeG, _NP, _I0, _A, _) :-add_mln_domain55,1364 -add_mln_domain(TypeG, NP, I0, A, Type) :-add_mln_domain57,1445 -add_mln_domain(TypeG, NP, I0, A, Type) :-add_mln_domain57,1445 -add_mln_domain(TypeG, NP, I0, A, Type) :-add_mln_domain57,1445 -translate_to_factor(W, D, Lits, Id, Vs, Phi, Domain) :-translate_to_factor66,1642 -translate_to_factor(W, D, Lits, Id, Vs, Phi, Domain) :-translate_to_factor66,1642 -translate_to_factor(W, D, Lits, Id, Vs, Phi, Domain) :-translate_to_factor66,1642 -empty_goal(_-[]).empty_goal99,2505 -empty_goal(_-[]).empty_goal99,2505 -find_pos([], [], []).find_pos101,2524 -find_pos([], [], []).find_pos101,2524 -find_pos([-Lit|Lits], LP, [Lit|Pos]) :- !,find_pos102,2546 -find_pos([-Lit|Lits], LP, [Lit|Pos]) :- !,find_pos102,2546 -find_pos([-Lit|Lits], LP, [Lit|Pos]) :- !,find_pos102,2546 -find_pos([Lit|Lits], [Lit|LP], Pos) :-find_pos104,2615 -find_pos([Lit|Lits], [Lit|LP], Pos) :-find_pos104,2615 -find_pos([Lit|Lits], [Lit|LP], Pos) :-find_pos104,2615 -make_clause(Id, Do, Vs, Domain, _Lits, Fs, Head) :-make_clause110,2737 -make_clause(Id, Do, Vs, Domain, _Lits, Fs, Head) :-make_clause110,2737 -make_clause(Id, Do, Vs, Domain, _Lits, Fs, Head) :-make_clause110,2737 -order_body(disj, Fs, Bd0) :-order_body116,2910 -order_body(disj, Fs, Bd0) :-order_body116,2910 -order_body(disj, Fs, Bd0) :-order_body116,2910 -order_body(conj, Fs, Bd0) :-order_body118,2961 -order_body(conj, Fs, Bd0) :-order_body118,2961 -order_body(conj, Fs, Bd0) :-order_body118,2961 -order_body([-G], (\+ G)). order_body122,3014 -order_body([-G], (\+ G)). order_body122,3014 -order_body([G], (G)). order_body123,3041 -order_body([G], (G)). order_body123,3041 -order_body([-G|Gs], (\+G ; NGs)) :-order_body124,3065 -order_body([-G|Gs], (\+G ; NGs)) :-order_body124,3065 -order_body([-G|Gs], (\+G ; NGs)) :-order_body124,3065 -order_body([G|Gs], (G ; NGs)) :-order_body126,3123 -order_body([G|Gs], (G ; NGs)) :-order_body126,3123 -order_body([G|Gs], (G ; NGs)) :-order_body126,3123 -ander_body([-G], (\+ G)). ander_body129,3179 -ander_body([-G], (\+ G)). ander_body129,3179 -ander_body([G], (G)). ander_body130,3206 -ander_body([G], (G)). ander_body130,3206 -ander_body([-G|Gs], (\+G , NGs)) :-ander_body131,3230 -ander_body([-G|Gs], (\+G , NGs)) :-ander_body131,3230 -ander_body([-G|Gs], (\+G , NGs)) :-ander_body131,3230 -ander_body([G|Gs], (G , NGs)) :-ander_body133,3288 -ander_body([G|Gs], (G , NGs)) :-ander_body133,3288 -ander_body([G|Gs], (G , NGs)) :-ander_body133,3288 -add_domain([G], (G,B0), B0) :- !.add_domain136,3344 -add_domain([G], (G,B0), B0) :- !.add_domain136,3344 -add_domain([G], (G,B0), B0) :- !.add_domain136,3344 -add_domain([G|Gs], (G,NGs), G0) :-add_domain137,3378 -add_domain([G|Gs], (G,NGs), G0) :-add_domain137,3378 -add_domain([G|Gs], (G,NGs), G0) :-add_domain137,3378 -new_skolem(Id, Lit) :-new_skolem140,3440 -new_skolem(Id, Lit) :-new_skolem140,3440 -new_skolem(Id, Lit) :-new_skolem140,3440 -mln(0).mln144,3526 -mln(0).mln144,3526 -new_mln(Id) :-new_mln146,3535 -new_mln(Id) :-new_mln146,3535 -new_mln(Id) :-new_mln146,3535 -merge_domain_lits( Domain, Domain-Gs, Vs, [V|Vs], LP0, LPF) :-merge_domain_lits151,3603 -merge_domain_lits( Domain, Domain-Gs, Vs, [V|Vs], LP0, LPF) :-merge_domain_lits151,3603 -merge_domain_lits( Domain, Domain-Gs, Vs, [V|Vs], LP0, LPF) :-merge_domain_lits151,3603 -delete_with_v([], _Vs, [], []).delete_with_v155,3725 -delete_with_v([], _Vs, [], []).delete_with_v155,3725 -delete_with_v([G|LP0], Vs, LPF, NGs) :-delete_with_v156,3757 -delete_with_v([G|LP0], Vs, LPF, NGs) :-delete_with_v156,3757 -delete_with_v([G|LP0], Vs, LPF, NGs) :-delete_with_v156,3757 -disj_to_list((C1;C2), L1, L10, L, L0) :-disj_to_list171,3996 -disj_to_list((C1;C2), L1, L10, L, L0) :-disj_to_list171,3996 -disj_to_list((C1;C2), L1, L10, L, L0) :-disj_to_list171,3996 -disj_to_list((C1+C2), L1, L10, L, L0) :-disj_to_list175,4115 -disj_to_list((C1+C2), L1, L10, L, L0) :-disj_to_list175,4115 -disj_to_list((C1+C2), L1, L10, L, L0) :-disj_to_list175,4115 -disj_to_list2((C1;C2), L1, L10, L, L0) :-disj_to_list2180,4235 -disj_to_list2((C1;C2), L1, L10, L, L0) :-disj_to_list2180,4235 -disj_to_list2((C1;C2), L1, L10, L, L0) :-disj_to_list2180,4235 -disj_to_list2((C1+C2), L1, L10, L, L0) :-disj_to_list2184,4355 -disj_to_list2((C1+C2), L1, L10, L, L0) :-disj_to_list2184,4355 -disj_to_list2((C1+C2), L1, L10, L, L0) :-disj_to_list2184,4355 -disj_to_list2((_C1,_C2), _L1, _L10, _L, _L0) :- !, fail.disj_to_list2188,4475 -disj_to_list2((_C1,_C2), _L1, _L10, _L, _L0) :- !, fail.disj_to_list2188,4475 -disj_to_list2((_C1,_C2), _L1, _L10, _L, _L0) :- !, fail.disj_to_list2188,4475 -disj_to_list2((_C1*_C2), _L1, _L10, _L, _L0) :- !, fail.disj_to_list2189,4532 -disj_to_list2((_C1*_C2), _L1, _L10, _L, _L0) :- !, fail.disj_to_list2189,4532 -disj_to_list2((_C1*_C2), _L1, _L10, _L, _L0) :- !, fail.disj_to_list2189,4532 -disj_to_list2((\+ C), [(-C)|L1], L1, [C|L], L) :- !.disj_to_list2190,4589 -disj_to_list2((\+ C), [(-C)|L1], L1, [C|L], L) :- !.disj_to_list2190,4589 -disj_to_list2((\+ C), [(-C)|L1], L1, [C|L], L) :- !.disj_to_list2190,4589 -disj_to_list2((- C), [(-C)|L1], L1, [C|L], L) :- !.disj_to_list2191,4642 -disj_to_list2((- C), [(-C)|L1], L1, [C|L], L) :- !.disj_to_list2191,4642 -disj_to_list2((- C), [(-C)|L1], L1, [C|L], L) :- !.disj_to_list2191,4642 -disj_to_list2(C, [C|L1], L1, [C|L], L).disj_to_list2192,4694 -disj_to_list2(C, [C|L1], L1, [C|L], L).disj_to_list2192,4694 -conj_to_list((C1,C2), L1, L10, L, L0) :-conj_to_list194,4735 -conj_to_list((C1,C2), L1, L10, L, L0) :-conj_to_list194,4735 -conj_to_list((C1,C2), L1, L10, L, L0) :-conj_to_list194,4735 -conj_to_list((C1*C2), L1, L10, L, L0) :-conj_to_list198,4854 -conj_to_list((C1*C2), L1, L10, L, L0) :-conj_to_list198,4854 -conj_to_list((C1*C2), L1, L10, L, L0) :-conj_to_list198,4854 -conj_to_list2((_C1;_C2), _L1, _L10, _L, _L0) :- !, fail.conj_to_list2203,4974 -conj_to_list2((_C1;_C2), _L1, _L10, _L, _L0) :- !, fail.conj_to_list2203,4974 -conj_to_list2((_C1;_C2), _L1, _L10, _L, _L0) :- !, fail.conj_to_list2203,4974 -conj_to_list2((_C1+_C2), _L1, _L10, _L, _L0) :- !, fail.conj_to_list2204,5031 -conj_to_list2((_C1+_C2), _L1, _L10, _L, _L0) :- !, fail.conj_to_list2204,5031 -conj_to_list2((_C1+_C2), _L1, _L10, _L, _L0) :- !, fail.conj_to_list2204,5031 -conj_to_list2((C1,C2), L1, L10, L, L0) :-conj_to_list2205,5088 -conj_to_list2((C1,C2), L1, L10, L, L0) :-conj_to_list2205,5088 -conj_to_list2((C1,C2), L1, L10, L, L0) :-conj_to_list2205,5088 -conj_to_list2((C1*C2), L1, L10, L, L0) :-conj_to_list2209,5208 -conj_to_list2((C1*C2), L1, L10, L, L0) :-conj_to_list2209,5208 -conj_to_list2((C1*C2), L1, L10, L, L0) :-conj_to_list2209,5208 -conj_to_list2((\+ C), [(C)|L1], L1, [C|L], L) :- !.conj_to_list2213,5328 -conj_to_list2((\+ C), [(C)|L1], L1, [C|L], L) :- !.conj_to_list2213,5328 -conj_to_list2((\+ C), [(C)|L1], L1, [C|L], L) :- !.conj_to_list2213,5328 -conj_to_list2((- C), [(C)|L1], L1, [C|L], L) :- !.conj_to_list2214,5381 -conj_to_list2((- C), [(C)|L1], L1, [C|L], L) :- !.conj_to_list2214,5381 -conj_to_list2((- C), [(C)|L1], L1, [C|L], L) :- !.conj_to_list2214,5381 -conj_to_list2(C, [-C|L1], L1, [C|L], L).conj_to_list2215,5432 -conj_to_list2(C, [-C|L1], L1, [C|L], L).conj_to_list2215,5432 -remove_not(-G, G) :- !.remove_not217,5474 -remove_not(-G, G) :- !.remove_not217,5474 -remove_not(-G, G) :- !.remove_not217,5474 -remove_not( G, G).remove_not218,5498 -remove_not( G, G).remove_not218,5498 -weight([(- _)], W0, W1, P) :- !,weight223,5579 -weight([(- _)], W0, W1, P) :- !,weight223,5579 -weight([(- _)], W0, W1, P) :- !,weight223,5579 -weight([_], W0, W1, P) :- !,weight226,5672 -weight([_], W0, W1, P) :- !,weight226,5672 -weight([_], W0, W1, P) :- !,weight226,5672 -weight([(- _)|R], W0, W1, P) :- !,weight229,5762 -weight([(- _)|R], W0, W1, P) :- !,weight229,5762 -weight([(- _)|R], W0, W1, P) :- !,weight229,5762 -weight([_|R], W0, W1, P) :-weight232,5893 -weight([_|R], W0, W1, P) :-weight232,5893 -weight([_|R], W0, W1, P) :-weight232,5893 -create_domain(Lits, Domain) :-create_domain236,6018 -create_domain(Lits, Domain) :-create_domain236,6018 -create_domain(Lits, Domain) :-create_domain236,6018 -create_goals(Lit) -->create_goals240,6115 -create_goals(Lit) -->create_goals240,6115 -create_goals(Lit) -->create_goals240,6115 -create_dgoal(Arity, Arity, _Lit) --> !.create_dgoal244,6197 -create_dgoal(Arity, Arity, _Lit) --> !.create_dgoal244,6197 -create_dgoal(Arity, Arity, _Lit) --> !.create_dgoal244,6197 -create_dgoal(I0, Arity, Lit) -->create_dgoal245,6237 -create_dgoal(I0, Arity, Lit) -->create_dgoal245,6237 -create_dgoal(I0, Arity, Lit) -->create_dgoal245,6237 -cnf(V) --> { var(V) }, !,cnf253,6453 -cnf(V) --> { var(V) }, !,cnf253,6453 -cnf(V) --> { var(V) }, !,cnf253,6453 -cnf((A->B)) --> !,cnf255,6487 -cnf((A->B)) --> !,cnf255,6487 -cnf((A->B)) --> !,cnf255,6487 -cnf((A*B)) --> !,cnf257,6518 -cnf((A*B)) --> !,cnf257,6518 -cnf((A*B)) --> !,cnf257,6518 -cnf((A,B)) --> !,cnf260,6554 -cnf((A,B)) --> !,cnf260,6554 -cnf((A,B)) --> !,cnf260,6554 -cnf((-A)) --> !,cnf263,6590 -cnf((-A)) --> !,cnf263,6590 -cnf((-A)) --> !,cnf263,6590 -cnf((\+ A)) --> !,cnf266,6636 -cnf((\+ A)) --> !,cnf266,6636 -cnf((\+ A)) --> !,cnf266,6636 -cnf(A+B, Lf, L0) :- !,cnf269,6684 -cnf(A+B, Lf, L0) :- !,cnf269,6684 -cnf(A+B, Lf, L0) :- !,cnf269,6684 -cnf((A;B), Lf, L0) :- !,cnf273,6769 -cnf((A;B), Lf, L0) :- !,cnf273,6769 -cnf((A;B), Lf, L0) :- !,cnf273,6769 -cnf((A==B)) --> !,cnf277,6856 -cnf((A==B)) --> !,cnf277,6856 -cnf((A==B)) --> !,cnf277,6856 -cnf(xor(A,B)) --> !,cnf280,6905 -cnf(xor(A,B)) --> !,cnf280,6905 -cnf(xor(A,B)) --> !,cnf280,6905 -cnf(A) -->cnf283,6952 -cnf(A) -->cnf283,6952 -cnf(A) -->cnf283,6952 -or(LB, Disj, Lf, L0) :-or286,6972 -or(LB, Disj, Lf, L0) :-or286,6972 -or(LB, Disj, Lf, L0) :-or286,6972 -add( Disj, El) -->add289,7029 -add( Disj, El) -->add289,7029 -add( Disj, El) -->add289,7029 -neg(Els) -->neg294,7110 -neg(Els) -->neg294,7110 -neg(Els) -->neg294,7110 -neg(El, Conj) :-neg298,7169 -neg(El, Conj) :-neg298,7169 -neg(El, Conj) :-neg298,7169 -neg2(-X, [X]) :- !.neg2301,7213 -neg2(-X, [X]) :- !.neg2301,7213 -neg2(-X, [X]) :- !.neg2301,7213 -neg2(X, [-X]).neg2302,7233 -neg2(X, [-X]).neg2302,7233 -orl([C1,C2|C]) -->orl304,7249 -orl([C1,C2|C]) -->orl304,7249 -orl([C1,C2|C]) -->orl304,7249 -orl([Cs]) -->orl307,7314 -orl([Cs]) -->orl307,7314 -orl([Cs]) -->orl307,7314 -clean_cnf(CNF, NCNF) :-clean_cnf310,7334 -clean_cnf(CNF, NCNF) :-clean_cnf310,7334 -clean_cnf(CNF, NCNF) :-clean_cnf310,7334 -all_true(Id, V) :-all_true318,7429 -all_true(Id, V) :-all_true318,7429 -all_true(Id, V) :-all_true318,7429 -portray_mln :-portray_mln329,7634 -portray_mln(Stream) :-portray_mln332,7678 -portray_mln(Stream) :-portray_mln332,7678 -portray_mln(Stream) :-portray_mln332,7678 -portray_mln(_Stream).portray_mln340,7866 -portray_mln(_Stream).portray_mln340,7866 -portray_lits(Stream, [L1]) :- !,portray_lits342,7889 -portray_lits(Stream, [L1]) :- !,portray_lits342,7889 -portray_lits(Stream, [L1]) :- !,portray_lits342,7889 -portray_lits(Stream, [L1|Ls]) :- !,portray_lits344,7950 -portray_lits(Stream, [L1|Ls]) :- !,portray_lits344,7950 -portray_lits(Stream, [L1|Ls]) :- !,portray_lits344,7950 -portray_lit( Stream, -L ) :- !,portray_lit349,8072 -portray_lit( Stream, -L ) :- !,portray_lit349,8072 -portray_lit( Stream, -L ) :- !,portray_lit349,8072 -portray_lit( Stream, L ) :-portray_lit351,8138 -portray_lit( Stream, L ) :-portray_lit351,8138 -portray_lit( Stream, L ) :-portray_lit351,8138 - -packages/CLPBN/pfl.tex,112 -\newcommand{\optionsection}[1] {\subsection*{\texttt{#1}}}texttt #121,566 -\section{Language}Language85,3899 - -packages/CLPBN/pfl.yap,7868 -person(anna).person103,4280 -person(anna).person103,4280 -person(bob).person104,4294 -person(bob).person104,4294 -constraint(a,b).constraint124,5468 -constraint(a,b).constraint124,5468 -constraint(b,d).constraint125,5485 -constraint(b,d).constraint125,5485 -constraint(d,e).constraint126,5502 -constraint(d,e).constraint126,5502 -data(t, t, t, t).data272,11990 -data(t, t, t, t).data272,11990 -data(_, t, _, t).data273,12008 -data(_, t, _, t).data273,12008 -data(t, t, f, f).data274,12026 -data(t, t, f, f).data274,12026 -data(t, t, f, t).data275,12044 -data(t, t, f, t).data275,12044 -data(t, _, _, t).data276,12062 -data(t, _, _, t).data276,12062 -data(t, f, t, t).data277,12080 -data(t, f, t, t).data277,12080 -data(t, t, f, t).data278,12098 -data(t, t, f, t).data278,12098 -data(t, _, f, f).data279,12116 -data(t, _, f, f).data279,12116 -data(t, t, f, f).data280,12134 -data(t, t, f, f).data280,12134 -data(f, f, t, t).data281,12152 -data(f, f, t, t).data281,12152 -main :-main283,12171 -scan_data([cloudy(C), sprinkler(S), rain(R), wet_grass(W)]) :-scan_data288,12274 -scan_data([cloudy(C), sprinkler(S), rain(R), wet_grass(W)]) :-scan_data288,12274 -scan_data([cloudy(C), sprinkler(S), rain(R), wet_grass(W)]) :-scan_data288,12274 -:- dynamic factor/6, skolem_in/2, skolem/2, preprocess/3, evidence/2, id/1.dynamic379,16117 -:- dynamic factor/6, skolem_in/2, skolem/2, preprocess/3, evidence/2, id/1.dynamic379,16117 -user:term_expansion( bayes((Formula ; Phi ; Constraints)), pfl:factor(bayes,Id,FList,FV,Phi,Constraints)) :-term_expansion381,16194 -user:term_expansion( bayes((Formula ; Phi ; Constraints)), pfl:factor(bayes,Id,FList,FV,Phi,Constraints)) :-term_expansion381,16194 -user:term_expansion( markov((Formula ; Phi ; Constraints)), pfl:factor(markov,Id,FList,FV,Phi,Constraints)) :-term_expansion387,16424 -user:term_expansion( markov((Formula ; Phi ; Constraints)), pfl:factor(markov,Id,FList,FV,Phi,Constraints)) :-term_expansion387,16424 -user:term_expansion( Id@N, L ) :-term_expansion393,16656 -user:term_expansion( Id@N, L ) :-term_expansion393,16656 -user:term_expansion( Goal, [] ) :-term_expansion397,16775 -user:term_expansion( Goal, [] ) :-term_expansion397,16775 -user:term_expansion( Goal, [] ) :-term_expansion402,16973 -user:term_expansion( Goal, [] ) :-term_expansion402,16973 -add_ground_factor(bayes, Domain, Vars, CPT, Id) :-add_ground_factor415,17316 -add_ground_factor(bayes, Domain, Vars, CPT, Id) :-add_ground_factor415,17316 -add_ground_factor(bayes, Domain, Vars, CPT, Id) :-add_ground_factor415,17316 -skolem(_Id:Key,Dom) :- skolem(Key, Dom).skolem422,17531 -skolem(_Id:Key,Dom) :- skolem(Key, Dom).skolem422,17531 -skolem(_Id:Key,Dom) :- skolem(Key, Dom).skolem422,17531 -skolem(_Id:Key,Dom) :- skolem(Key, Dom).skolem422,17531 -skolem(_Id:Key,Dom) :- skolem(Key, Dom).skolem422,17531 -defined_in_factor(Key, Factor) :-defined_in_factor424,17573 -defined_in_factor(Key, Factor) :-defined_in_factor424,17573 -defined_in_factor(Key, Factor) :-defined_in_factor424,17573 -defined_in_factor(Key, Factor) :-defined_in_factor428,17750 -defined_in_factor(Key, Factor) :-defined_in_factor428,17750 -defined_in_factor(Key, Factor) :-defined_in_factor428,17750 -defined_in_factor(Key, Id, 0) :-defined_in_factor435,17937 -defined_in_factor(Key, Id, 0) :-defined_in_factor435,17937 -defined_in_factor(Key, Id, 0) :-defined_in_factor435,17937 -defined_in_factor(Key, Id, I) :-defined_in_factor438,18053 -defined_in_factor(Key, Id, I) :-defined_in_factor438,18053 -defined_in_factor(Key, Id, I) :-defined_in_factor438,18053 -generate_entity(N, N, _, _) :- !.generate_entity444,18184 -generate_entity(N, N, _, _) :- !.generate_entity444,18184 -generate_entity(N, N, _, _) :- !.generate_entity444,18184 -generate_entity(I0, _N, Id, T) :-generate_entity445,18218 -generate_entity(I0, _N, Id, T) :-generate_entity445,18218 -generate_entity(I0, _N, Id, T) :-generate_entity445,18218 -generate_entity(I0, N, Id, T) :-generate_entity448,18294 -generate_entity(I0, N, Id, T) :-generate_entity448,18294 -generate_entity(I0, N, Id, T) :-generate_entity448,18294 -id(0).id452,18371 -id(0).id452,18371 -new_id(Id) :-new_id454,18379 -new_id(Id) :-new_id454,18379 -new_id(Id) :-new_id454,18379 -process_args(V, _Id, _I0, _I ) --> { var(V) }, !,process_args459,18444 -process_args(V, _Id, _I0, _I ) --> { var(V) }, !,process_args459,18444 -process_args(V, _Id, _I0, _I ) --> { var(V) }, !,process_args459,18444 -process_args((Arg1,V), Id, I0, I ) --> { var(V) }, !,process_args461,18551 -process_args((Arg1,V), Id, I0, I ) --> { var(V) }, !,process_args461,18551 -process_args((Arg1,V), Id, I0, I ) --> { var(V) }, !,process_args461,18551 -process_args((Arg1,Arg2), Id, I0, I ) --> !,process_args465,18654 -process_args((Arg1,Arg2), Id, I0, I ) --> !,process_args465,18654 -process_args((Arg1,Arg2), Id, I0, I ) --> !,process_args465,18654 -process_args(Arg1, Id, I0, I ) -->process_args468,18764 -process_args(Arg1, Id, I0, I ) -->process_args468,18764 -process_args(Arg1, Id, I0, I ) -->process_args468,18764 -process_arg(Sk::D, Id, _I) -->process_arg472,18843 -process_arg(Sk::D, Id, _I) -->process_arg472,18843 -process_arg(Sk::D, Id, _I) -->process_arg472,18843 -process_arg(Sk, Id, _I) -->process_arg479,18942 -process_arg(Sk, Id, _I) -->process_arg479,18942 -process_arg(Sk, Id, _I) -->process_arg479,18942 -new_skolem(Sk, D) :-new_skolem493,19201 -new_skolem(Sk, D) :-new_skolem493,19201 -new_skolem(Sk, D) :-new_skolem493,19201 -new_skolem(Sk, D) :-new_skolem503,19432 -new_skolem(Sk, D) :-new_skolem503,19432 -new_skolem(Sk, D) :-new_skolem503,19432 -interface_predicate(Sk) :-interface_predicate515,19681 -interface_predicate(Sk) :-interface_predicate515,19681 -interface_predicate(Sk) :-interface_predicate515,19681 -insert_atts(Var,Sk) :-insert_atts527,19967 -insert_atts(Var,Sk) :-insert_atts527,19967 -insert_atts(Var,Sk) :-insert_atts527,19967 -add_evidence(Sk,Var) :-add_evidence530,20023 -add_evidence(Sk,Var) :-add_evidence530,20023 -add_evidence(Sk,Var) :-add_evidence530,20023 -get_pfl_cpt(Id, Keys, Ev, NewKeys, Out) :-get_pfl_cpt541,20253 -get_pfl_cpt(Id, Keys, Ev, NewKeys, Out) :-get_pfl_cpt541,20253 -get_pfl_cpt(Id, Keys, Ev, NewKeys, Out) :-get_pfl_cpt541,20253 -get_pfl_cpt(Id, Keys, _, Keys, Out) :-get_pfl_cpt545,20424 -get_pfl_cpt(Id, Keys, _, Keys, Out) :-get_pfl_cpt545,20424 -get_pfl_cpt(Id, Keys, _, Keys, Out) :-get_pfl_cpt545,20424 -get_pfl_parameters(Id, Keys, Out) :-get_pfl_parameters549,20563 -get_pfl_parameters(Id, Keys, Out) :-get_pfl_parameters549,20563 -get_pfl_parameters(Id, Keys, Out) :-get_pfl_parameters549,20563 -new_pfl_parameters(Id, Keys, NewPhi) :-new_pfl_parameters554,20701 -new_pfl_parameters(Id, Keys, NewPhi) :-new_pfl_parameters554,20701 -new_pfl_parameters(Id, Keys, NewPhi) :-new_pfl_parameters554,20701 -new_pfl_parameters(_Id, _Keys, _NewPhi).new_pfl_parameters558,20853 -new_pfl_parameters(_Id, _Keys, _NewPhi).new_pfl_parameters558,20853 -get_pfl_factor_sizes(Id, DSizes) :-get_pfl_factor_sizes560,20895 -get_pfl_factor_sizes(Id, DSizes) :-get_pfl_factor_sizes560,20895 -get_pfl_factor_sizes(Id, DSizes) :-get_pfl_factor_sizes560,20895 -get_sizes([], []).get_sizes564,21011 -get_sizes([], []).get_sizes564,21011 -get_sizes(Key.FList, Sz.DSizes) :-get_sizes565,21030 -get_sizes(Key.FList, Sz.DSizes) :-get_sizes565,21030 -get_sizes(Key.FList, Sz.DSizes) :-get_sizes565,21030 -get_first_pvariable(Id,Var) :-get_first_pvariable571,21177 -get_first_pvariable(Id,Var) :-get_first_pvariable571,21177 -get_first_pvariable(Id,Var) :-get_first_pvariable571,21177 -get_factor_pvariable(Id,Var) :-get_factor_pvariable575,21303 -get_factor_pvariable(Id,Var) :-get_factor_pvariable575,21303 -get_factor_pvariable(Id,Var) :-get_factor_pvariable575,21303 - -packages/clpfd.yap,33576 -preference_satisfied(X-Y, B) :-preference_satisfied125,3352 -preference_satisfied(X-Y, B) :-preference_satisfied125,3352 -preference_satisfied(X-Y, B) :-preference_satisfied125,3352 -matrix:array_extension(_.._ , gecode_clpfd:build).array_extension242,5908 -build( I..J, _, Size, L) :-build244,5960 -build( I..J, _, Size, L) :-build244,5960 -build( I..J, _, Size, L) :-build244,5960 -matrix:rhs_opaque(X) :- constraint(X).rhs_opaque248,6022 -matrix:rhs_opaque(X) :- constraint(X).rhs_opaque248,6022 -matrix:rhs_opaque(X) :- constraint(X).rhs_opaque248,6022 -constraint( (_ #> _) ).constraint250,6062 -constraint( (_ #> _) ).constraint250,6062 -constraint( (_ #< _) ).constraint251,6086 -constraint( (_ #< _) ).constraint251,6086 -constraint( (_ #>= _) ).constraint252,6110 -constraint( (_ #>= _) ).constraint252,6110 -constraint( (_ #=< _) ).constraint253,6135 -constraint( (_ #=< _) ).constraint253,6135 -constraint( (_ #= _) ).constraint254,6160 -constraint( (_ #= _) ).constraint254,6160 -constraint( (_ #\= _) ).constraint255,6184 -constraint( (_ #\= _) ).constraint255,6184 -constraint( (_ #\ _) ).constraint256,6209 -constraint( (_ #\ _) ).constraint256,6209 -constraint( (_ #<==> _) ).constraint257,6233 -constraint( (_ #<==> _) ).constraint257,6233 -constraint( (_ #==> _) ).constraint258,6260 -constraint( (_ #==> _) ).constraint258,6260 -constraint( (_ #<== _) ).constraint259,6286 -constraint( (_ #<== _) ).constraint259,6286 -constraint( (_ #\/ _) ).constraint260,6312 -constraint( (_ #\/ _) ).constraint260,6312 -constraint( (_ #/\ _) ).constraint261,6337 -constraint( (_ #/\ _) ).constraint261,6337 -constraint( in(_, _) ). %2,constraint262,6362 -constraint( in(_, _) ). %2,constraint262,6362 -constraint( ins(_, _) ). %2,constraint263,6390 -constraint( ins(_, _) ). %2,constraint263,6390 -constraint( all_different(_) ). %1,constraint264,6419 -constraint( all_different(_) ). %1,constraint264,6419 -constraint( all_distinct(_) ). %1,constraint265,6455 -constraint( all_distinct(_) ). %1,constraint265,6455 -constraint( all_distinct(_,_) ). %1,constraint266,6490 -constraint( all_distinct(_,_) ). %1,constraint266,6490 -constraint( sum(_, _, _) ). %3,constraint267,6527 -constraint( sum(_, _, _) ). %3,constraint267,6527 -constraint( scalar_product(_, _, _, _) ). %4,constraint268,6559 -constraint( scalar_product(_, _, _, _) ). %4,constraint268,6559 -constraint( min(_, _) ). %2,constraint269,6605 -constraint( min(_, _) ). %2,constraint269,6605 -constraint( minimum(_, _) ). %2,constraint270,6634 -constraint( minimum(_, _) ). %2,constraint270,6634 -constraint( max(_, _) ). %2,constraint271,6667 -constraint( max(_, _) ). %2,constraint271,6667 -constraint( maximum(_, _) ). %2,constraint272,6696 -constraint( maximum(_, _) ). %2,constraint272,6696 -constraint( in_relation(_, _) ). %2,constraint273,6729 -constraint( in_relation(_, _) ). %2,constraint273,6729 -constraint( in_dfa(_, _) ). %2,constraint274,6766 -constraint( in_dfa(_, _) ). %2,constraint274,6766 -constraint( in_dfa(_, _, _, _) ). %2,constraint275,6798 -constraint( in_dfa(_, _, _, _) ). %2,constraint275,6798 -constraint( tuples_in(_, _) ). %2,constraint276,6836 -constraint( tuples_in(_, _) ). %2,constraint276,6836 -constraint( labeling(_, _) ). %2,constraint277,6871 -constraint( labeling(_, _) ). %2,constraint277,6871 -constraint( label(_) ). %1,constraint278,6905 -constraint( label(_) ). %1,constraint278,6905 -constraint( indomain(_) ). %1,constraint279,6933 -constraint( indomain(_) ). %1,constraint279,6933 -constraint( lex_chain(_) ). %1,constraint280,6964 -constraint( lex_chain(_) ). %1,constraint280,6964 -constraint( serialized(_, _) ). %2,constraint281,6996 -constraint( serialized(_, _) ). %2,constraint281,6996 -constraint( global_cardinality(_, _) ). %2,constraint282,7032 -constraint( global_cardinality(_, _) ). %2,constraint282,7032 -constraint( global_cardinality(_, _, _) ). %3,constraint283,7076 -constraint( global_cardinality(_, _, _) ). %3,constraint283,7076 -constraint( circuit(_) ). %1,constraint284,7123 -constraint( circuit(_) ). %1,constraint284,7123 -constraint( element(_, _, _) ). %3,constraint285,7153 -constraint( element(_, _, _) ). %3,constraint285,7153 -constraint( automaton(_, _, _) ). %3,constraint286,7189 -constraint( automaton(_, _, _) ). %3,constraint286,7189 -constraint( automaton(_, _, _, _, _, _, _, _) ). %8,constraint287,7227 -constraint( automaton(_, _, _, _, _, _, _, _) ). %8,constraint287,7227 -constraint( transpose(_, _) ). %2,constraint288,7280 -constraint( transpose(_, _) ). %2,constraint288,7280 -constraint( zcompare(_, _, _) ). %3,constraint289,7315 -constraint( zcompare(_, _, _) ). %3,constraint289,7315 -constraint( chain(_, _) ). %2,constraint290,7352 -constraint( chain(_, _) ). %2,constraint290,7352 -constraint( element(_, _) ). %2,constraint291,7383 -constraint( element(_, _) ). %2,constraint291,7383 -constraint( fd_var(_) ). %1,constraint292,7416 -constraint( fd_var(_) ). %1,constraint292,7416 -constraint( fd_inf(_, _) ). %2,constraint293,7445 -constraint( fd_inf(_, _) ). %2,constraint293,7445 -constraint( fd_sup(_, _) ). %2,constraint294,7477 -constraint( fd_sup(_, _) ). %2,constraint294,7477 -constraint( fd_size(_, _) ). %2,constraint295,7509 -constraint( fd_size(_, _) ). %2,constraint295,7509 -constraint( fd_dom(_, _) ). %2constraint296,7542 -constraint( fd_dom(_, _) ). %2constraint296,7542 -constraint( clause(_, _, _, _) ). %2constraint297,7573 -constraint( clause(_, _, _, _) ). %2constraint297,7573 -process_constraints((B0,B1), (NB0, NB1), Env) :-process_constraints300,7612 -process_constraints((B0,B1), (NB0, NB1), Env) :-process_constraints300,7612 -process_constraints((B0,B1), (NB0, NB1), Env) :-process_constraints300,7612 -process_constraints(B, B, env(_Space)) :-process_constraints303,7733 -process_constraints(B, B, env(_Space)) :-process_constraints303,7733 -process_constraints(B, B, env(_Space)) :-process_constraints303,7733 -process_constraints(B, B, _Env).process_constraints305,7794 -process_constraints(B, B, _Env).process_constraints305,7794 -sum( L, Op, V) :-sum383,9264 -sum( L, Op, V) :-sum383,9264 -sum( L, Op, V) :-sum383,9264 -'#\\'(A) :-#\\412,9958 -'#\\'(A) :-#\\412,9958 -'#\\'(A) :-#\\412,9958 -boolvar( X ) :-boolvar454,10958 -boolvar( X ) :-boolvar454,10958 -boolvar( X ) :-boolvar454,10958 -boolvars( Xs ) :-boolvars458,11043 -boolvars( Xs ) :-boolvars458,11043 -boolvars( Xs ) :-boolvars458,11043 -all_different( Xs ) :-all_different467,11259 -all_different( Xs ) :-all_different467,11259 -all_different( Xs ) :-all_different467,11259 -all_distinct( Xs ) :-all_distinct472,11355 -all_distinct( Xs ) :-all_distinct472,11355 -all_distinct( Xs ) :-all_distinct472,11355 -all_distinct( Cs, Xs ) :-all_distinct476,11448 -all_distinct( Cs, Xs ) :-all_distinct476,11448 -all_distinct( Cs, Xs ) :-all_distinct476,11448 -scalar_product( Cs, Vs, Rels, X ) :-scalar_product480,11549 -scalar_product( Cs, Vs, Rels, X ) :-scalar_product480,11549 -scalar_product( Cs, Vs, Rels, X ) :-scalar_product480,11549 -lex_chain( Cs ) :-lex_chain484,11672 -lex_chain( Cs ) :-lex_chain484,11672 -lex_chain( Cs ) :-lex_chain484,11672 -minimum( V, Xs ) :-minimum488,11760 -minimum( V, Xs ) :-minimum488,11760 -minimum( V, Xs ) :-minimum488,11760 -min( Xs, V ) :-min493,11872 -min( Xs, V ) :-min493,11872 -min( Xs, V ) :-min493,11872 -maximum( V, Xs ) :-maximum498,11980 -maximum( V, Xs ) :-maximum498,11980 -maximum( V, Xs ) :-maximum498,11980 -max( Xs, V ) :-max503,12092 -max( Xs, V ) :-max503,12092 -max( Xs, V ) :-max503,12092 -element( V, Xs ) :-element508,12200 -element( V, Xs ) :-element508,12200 -element( V, Xs ) :-element508,12200 -in_relation( Xs, Rel ) :-in_relation513,12305 -in_relation( Xs, Rel ) :-in_relation513,12305 -in_relation( Xs, Rel ) :-in_relation513,12305 -in_dfa( Xs, Rel ) :-in_dfa517,12403 -in_dfa( Xs, Rel ) :-in_dfa517,12403 -in_dfa( Xs, Rel ) :-in_dfa517,12403 -in_dfa( Xs, S0, Ts, Fs ) :-in_dfa521,12491 -in_dfa( Xs, S0, Ts, Fs ) :-in_dfa521,12491 -in_dfa( Xs, S0, Ts, Fs ) :-in_dfa521,12491 -clause( and, Ps, Ns, V ) :-clause525,12593 -clause( and, Ps, Ns, V ) :-clause525,12593 -clause( and, Ps, Ns, V ) :-clause525,12593 -clause( or, Ps, Ns, V ) :-clause531,12736 -clause( or, Ps, Ns, V ) :-clause531,12736 -clause( or, Ps, Ns, V ) :-clause531,12736 -labeling(Opts, Xs) :-labeling538,12878 -labeling(Opts, Xs) :-labeling538,12878 -labeling(Opts, Xs) :-labeling538,12878 -processs_lab_opt(leftmost, _, 'INT_VAR_NONE', BranchVal, BranchVal).processs_lab_opt547,13161 -processs_lab_opt(leftmost, _, 'INT_VAR_NONE', BranchVal, BranchVal).processs_lab_opt547,13161 -processs_lab_opt(min, _, 'INT_VAR_SIZE_MIN', BranchVal, BranchVal).processs_lab_opt548,13230 -processs_lab_opt(min, _, 'INT_VAR_SIZE_MIN', BranchVal, BranchVal).processs_lab_opt548,13230 -processs_lab_opt(max, _, 'INT_VAR_SIZE_MAX', BranchVal, BranchVal).processs_lab_opt549,13298 -processs_lab_opt(max, _, 'INT_VAR_SIZE_MAX', BranchVal, BranchVal).processs_lab_opt549,13298 -processs_lab_opt(ff, _, 'INT_VAR_DEGREE_MIN', BranchVal, BranchVal).processs_lab_opt550,13366 -processs_lab_opt(ff, _, 'INT_VAR_DEGREE_MIN', BranchVal, BranchVal).processs_lab_opt550,13366 -processs_lab_opt(min_step, BranchVar, BranchVar, _, 'INT_VAL_MIN').processs_lab_opt551,13435 -processs_lab_opt(min_step, BranchVar, BranchVar, _, 'INT_VAL_MIN').processs_lab_opt551,13435 -processs_lab_opt(max_step, BranchVar, BranchVar, _, 'INT_VAL_MIN').processs_lab_opt552,13503 -processs_lab_opt(max_step, BranchVar, BranchVar, _, 'INT_VAL_MIN').processs_lab_opt552,13503 -processs_lab_opt(bisect, BranchVar, BranchVar, _, 'INT_VAL_MED').processs_lab_opt553,13571 -processs_lab_opt(bisect, BranchVar, BranchVar, _, 'INT_VAL_MED').processs_lab_opt553,13571 -processs_lab_opt(enum, BranchVar, BranchVar, _, 'INT_VALUES_MIN').processs_lab_opt554,13637 -processs_lab_opt(enum, BranchVar, BranchVar, _, 'INT_VALUES_MIN').processs_lab_opt554,13637 -maximize(V) :-maximize557,13706 -maximize(V) :-maximize557,13706 -maximize(V) :-maximize557,13706 -minimize(V) :-minimize562,13782 -minimize(V) :-minimize562,13782 -minimize(V) :-minimize562,13782 -extensional_constraint( Tuples, TupleSet) :-extensional_constraint567,13858 -extensional_constraint( Tuples, TupleSet) :-extensional_constraint567,13858 -extensional_constraint( Tuples, TupleSet) :-extensional_constraint567,13858 -dfa( S0, Transitions, Finals, DFA) :-dfa570,13937 -dfa( S0, Transitions, Finals, DFA) :-dfa570,13937 -dfa( S0, Transitions, Finals, DFA) :-dfa570,13937 -check(V, NV) :-check574,14017 -check(V, NV) :-check574,14017 -check(V, NV) :-check574,14017 -post( ( A #= B), Env, Reify) :-post586,14526 -post( ( A #= B), Env, Reify) :-post586,14526 -post( ( A #= B), Env, Reify) :-post586,14526 -post( ( A #\= B), Env, Reify) :-post588,14596 -post( ( A #\= B), Env, Reify) :-post588,14596 -post( ( A #\= B), Env, Reify) :-post588,14596 -post( ( A #> B), Env, Reify) :-post590,14668 -post( ( A #> B), Env, Reify) :-post590,14668 -post( ( A #> B), Env, Reify) :-post590,14668 -post( ( A #< B), Env, Reify) :-post592,14738 -post( ( A #< B), Env, Reify) :-post592,14738 -post( ( A #< B), Env, Reify) :-post592,14738 -post( ( A #>= B), Env, Reify) :-post594,14808 -post( ( A #>= B), Env, Reify) :-post594,14808 -post( ( A #>= B), Env, Reify) :-post594,14808 -post( ( A #=< B), Env, Reify) :-post596,14880 -post( ( A #=< B), Env, Reify) :-post596,14880 -post( ( A #=< B), Env, Reify) :-post596,14880 -post( rel( A, Op), Space-Map, Reify):-post599,14965 -post( rel( A, Op), Space-Map, Reify):-post599,14965 -post( rel( A, Op), Space-Map, Reify):-post599,14965 -post( rel( A, Op, B), Space-Map, Reify):-post607,15211 -post( rel( A, Op, B), Space-Map, Reify):-post607,15211 -post( rel( A, Op, B), Space-Map, Reify):-post607,15211 -post( rel( A, Op, B), Space-Map, Reify) :-post616,15470 -post( rel( A, Op, B), Space-Map, Reify) :-post616,15470 -post( rel( A, Op, B), Space-Map, Reify) :-post616,15470 -post( rel( A, Op, B ), Space-Map, Reify):-post624,15655 -post( rel( A, Op, B ), Space-Map, Reify):-post624,15655 -post( rel( A, Op, B ), Space-Map, Reify):-post624,15655 -post( rel( sum(L), Op, Out), Space-Map, Reify):- !,post633,15976 -post( rel( sum(L), Op, Out), Space-Map, Reify):- !,post633,15976 -post( rel( sum(L), Op, Out), Space-Map, Reify):- !,post633,15976 -post( rel( count(X, Y), Op, Out), Space-Map, Reify):- !,post644,16350 -post( rel( count(X, Y), Op, Out), Space-Map, Reify):- !,post644,16350 -post( rel( count(X, Y), Op, Out), Space-Map, Reify):- !,post644,16350 -post( rel( sum(Foreach, Cond), Op, Out), Space-Map, Reify):- !,post656,16849 -post( rel( sum(Foreach, Cond), Op, Out), Space-Map, Reify):- !,post656,16849 -post( rel( sum(Foreach, Cond), Op, Out), Space-Map, Reify):- !,post656,16849 -post( rel(A1+A2, Op, B), Space-Map, Reify):-post667,17260 -post( rel(A1+A2, Op, B), Space-Map, Reify):-post667,17260 -post( rel(A1+A2, Op, B), Space-Map, Reify):-post667,17260 -post( rel(A1-A2, Op, B), Space-Map, Reify):-post684,17745 -post( rel(A1-A2, Op, B), Space-Map, Reify):-post684,17745 -post( rel(A1-A2, Op, B), Space-Map, Reify):-post684,17745 -post( rel(A, Op, B), Space-Map, Reify):-post701,18230 -post( rel(A, Op, B), Space-Map, Reify):-post701,18230 -post( rel(A, Op, B), Space-Map, Reify):-post701,18230 -post( rel(A, Op, B), Space-Map, Reify):-post711,18520 -post( rel(A, Op, B), Space-Map, Reify):-post711,18520 -post( rel(A, Op, B), Space-Map, Reify):-post711,18520 -post( rel(A, Op, B), Space-Map, Reify):-post719,18739 -post( rel(A, Op, B), Space-Map, Reify):-post719,18739 -post( rel(A, Op, B), Space-Map, Reify):-post719,18739 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post729,19024 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post729,19024 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post729,19024 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post737,19273 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post737,19273 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post737,19273 -post( all_different( Xs ), Space-Map, Reify) :-post745,19511 -post( all_different( Xs ), Space-Map, Reify) :-post745,19511 -post( all_different( Xs ), Space-Map, Reify) :-post745,19511 -post( all_distinct( Xs ), Space-Map, Reify) :-post752,19699 -post( all_distinct( Xs ), Space-Map, Reify) :-post752,19699 -post( all_distinct( Xs ), Space-Map, Reify) :-post752,19699 -post( all_distinct( Cs , Xs ), Space-Map, Reify) :-post759,19885 -post( all_distinct( Cs , Xs ), Space-Map, Reify) :-post759,19885 -post( all_distinct( Cs , Xs ), Space-Map, Reify) :-post759,19885 -post(in_tupleset(Xs, Tuples), Space-Map, Reify) :-post766,20084 -post(in_tupleset(Xs, Tuples), Space-Map, Reify) :-post766,20084 -post(in_tupleset(Xs, Tuples), Space-Map, Reify) :-post766,20084 -post(in_tupleset(Xs, TS), Space-Map, Reify) :-post775,20336 -post(in_tupleset(Xs, TS), Space-Map, Reify) :-post775,20336 -post(in_tupleset(Xs, TS), Space-Map, Reify) :-post775,20336 -post(in_dfa(Xs, S0, Trs, Fs), Space-Map, Reify) :-post782,20530 -post(in_dfa(Xs, S0, Trs, Fs), Space-Map, Reify) :-post782,20530 -post(in_dfa(Xs, S0, Trs, Fs), Space-Map, Reify) :-post782,20530 -post(in_dfa(Xs, TS), Space-Map, Reify) :-post790,20759 -post(in_dfa(Xs, TS), Space-Map, Reify) :-post790,20759 -post(in_dfa(Xs, TS), Space-Map, Reify) :-post790,20759 -post(element(V, Xs), Space-Map, Reify) :-post798,20944 -post(element(V, Xs), Space-Map, Reify) :-post798,20944 -post(element(V, Xs), Space-Map, Reify) :-post798,20944 -post(clause( Type, Ps, Ns, V), Space-Map, Reify) :-post807,21123 -post(clause( Type, Ps, Ns, V), Space-Map, Reify) :-post807,21123 -post(clause( Type, Ps, Ns, V), Space-Map, Reify) :-post807,21123 -gecode_arith_op( (#=) , 'IRT_EQ' ).gecode_arith_op817,21380 -gecode_arith_op( (#=) , 'IRT_EQ' ).gecode_arith_op817,21380 -gecode_arith_op( (#\=) , 'IRT_NQ' ).gecode_arith_op818,21417 -gecode_arith_op( (#\=) , 'IRT_NQ' ).gecode_arith_op818,21417 -gecode_arith_op( (#>) , 'IRT_GR' ).gecode_arith_op819,21454 -gecode_arith_op( (#>) , 'IRT_GR' ).gecode_arith_op819,21454 -gecode_arith_op( (#>=) , 'IRT_GQ' ).gecode_arith_op820,21491 -gecode_arith_op( (#>=) , 'IRT_GQ' ).gecode_arith_op820,21491 -gecode_arith_op( (#<) , 'IRT_LE' ).gecode_arith_op821,21528 -gecode_arith_op( (#<) , 'IRT_LE' ).gecode_arith_op821,21528 -gecode_arith_op( (#=<) , 'IRT_LQ' ).gecode_arith_op822,21565 -gecode_arith_op( (#=<) , 'IRT_LQ' ).gecode_arith_op822,21565 -reverse_arith_op( (#=) , (#=) ).reverse_arith_op824,21603 -reverse_arith_op( (#=) , (#=) ).reverse_arith_op824,21603 -reverse_arith_op( (#\=) , (#\=) ).reverse_arith_op825,21638 -reverse_arith_op( (#\=) , (#\=) ).reverse_arith_op825,21638 -reverse_arith_op( (#>) , (#<) ).reverse_arith_op826,21674 -reverse_arith_op( (#>) , (#<) ).reverse_arith_op826,21674 -reverse_arith_op( (#>=) , (#=<) ).reverse_arith_op827,21709 -reverse_arith_op( (#>=) , (#=<) ).reverse_arith_op827,21709 -reverse_arith_op( (#<) , (#>) ).reverse_arith_op828,21745 -reverse_arith_op( (#<) , (#>) ).reverse_arith_op828,21745 -reverse_arith_op( (#=<) , (#>=) ).reverse_arith_op829,21780 -reverse_arith_op( (#=<) , (#>=) ).reverse_arith_op829,21780 -linearize(V, C, [A|As], As, [C|CAs], CAs, I, I, _-Map) :-linearize831,21817 -linearize(V, C, [A|As], As, [C|CAs], CAs, I, I, _-Map) :-linearize831,21817 -linearize(V, C, [A|As], As, [C|CAs], CAs, I, I, _-Map) :-linearize831,21817 -linearize(A+B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize834,21902 -linearize(A+B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize834,21902 -linearize(A+B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize834,21902 -linearize(A-B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize837,22054 -linearize(A-B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize837,22054 -linearize(A-B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize837,22054 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize841,22218 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize841,22218 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize841,22218 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize844,22295 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize844,22295 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize844,22295 -linearize(C1*B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize848,22406 -linearize(C1*B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize848,22406 -linearize(C1*B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize848,22406 -linearize(B*C1, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize852,22537 -linearize(B*C1, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize852,22537 -linearize(B*C1, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize852,22537 -linearize(AC, C, [A|Bs], Bs, [C|CBs], CBs, I, I, Env) :-linearize856,22668 -linearize(AC, C, [A|Bs], Bs, [C|CBs], CBs, I, I, Env) :-linearize856,22668 -linearize(AC, C, [A|Bs], Bs, [C|CBs], CBs, I, I, Env) :-linearize856,22668 -arith('/\\'(_,_), (/\)).arith862,22793 -arith('/\\'(_,_), (/\)).arith862,22793 -arith('\\/'(_,_), (\/)).arith863,22818 -arith('\\/'(_,_), (\/)).arith863,22818 -arith('=>'(_,_), (=>)).arith864,22843 -arith('=>'(_,_), (=>)).arith864,22843 -arith('<=>'(_,_), (<=>)).arith865,22867 -arith('<=>'(_,_), (<=>)).arith865,22867 -arith(xor(_,_), xor).arith866,22893 -arith(xor(_,_), xor).arith866,22893 -arith(abs(_), abs).arith867,22915 -arith(abs(_), abs).arith867,22915 -arith(min(_), min).arith868,22935 -arith(min(_), min).arith868,22935 -arith(max(_), max).arith869,22955 -arith(max(_), max).arith869,22955 -arith(min(_,_), min).arith870,22975 -arith(min(_,_), min).arith870,22975 -arith(max(_,_), max).arith871,22997 -arith(max(_,_), max).arith871,22997 -arith((_ * _), times).arith872,23019 -arith((_ * _), times).arith872,23019 -arith((_ / _), div).arith873,23042 -arith((_ / _), div).arith873,23042 -arith(sum(_), sum).arith874,23063 -arith(sum(_), sum).arith874,23063 -arith(sum(_,_), sum).arith875,23083 -arith(sum(_,_), sum).arith875,23083 -arith(count(_,_), count).arith876,23105 -arith(count(_,_), count).arith876,23105 -equality(V, V, _Env) :-equality880,23239 -equality(V, V, _Env) :-equality880,23239 -equality(V, V, _Env) :-equality880,23239 -equality(V, V, _Env) :-equality882,23277 -equality(V, V, _Env) :-equality882,23277 -equality(V, V, _Env) :-equality882,23277 -equality(abs(V), NV, Env) :-equality884,23319 -equality(abs(V), NV, Env) :-equality884,23319 -equality(abs(V), NV, Env) :-equality884,23319 -equality(min(V), NV, Env) :-equality887,23401 -equality(min(V), NV, Env) :-equality887,23401 -equality(min(V), NV, Env) :-equality887,23401 -equality(max(V), NV, Env) :-equality890,23496 -equality(max(V), NV, Env) :-equality890,23496 -equality(max(V), NV, Env) :-equality890,23496 -equality(V1+V2, NV, Env) :-equality893,23591 -equality(V1+V2, NV, Env) :-equality893,23591 -equality(V1+V2, NV, Env) :-equality893,23591 -equality(V1-V2, NV, Env) :-equality897,23707 -equality(V1-V2, NV, Env) :-equality897,23707 -equality(V1-V2, NV, Env) :-equality897,23707 -equality(V1*V2, NV, Env) :-equality901,23824 -equality(V1*V2, NV, Env) :-equality901,23824 -equality(V1*V2, NV, Env) :-equality901,23824 -equality(V1/V2, NV, Env) :-equality905,23941 -equality(V1/V2, NV, Env) :-equality905,23941 -equality(V1/V2, NV, Env) :-equality905,23941 -equality(V1 mod V2, NV, Env) :-equality909,24056 -equality(V1 mod V2, NV, Env) :-equality909,24056 -equality(V1 mod V2, NV, Env) :-equality909,24056 -equality(max( V1 , V2), NV, Env) :-equality913,24177 -equality(max( V1 , V2), NV, Env) :-equality913,24177 -equality(max( V1 , V2), NV, Env) :-equality913,24177 -equality(min( V1 , V2), NV, Env) :-equality917,24302 -equality(min( V1 , V2), NV, Env) :-equality917,24302 -equality(min( V1 , V2), NV, Env) :-equality917,24302 -equality(sum( V ), NV, Env) :-equality921,24427 -equality(sum( V ), NV, Env) :-equality921,24427 -equality(sum( V ), NV, Env) :-equality921,24427 -equality(sum( C, G ), NV, Env) :-equality924,24524 -equality(sum( C, G ), NV, Env) :-equality924,24524 -equality(sum( C, G ), NV, Env) :-equality924,24524 -equality('/\\'( V1 , V2), NV, Env) :-equality926,24590 -equality('/\\'( V1 , V2), NV, Env) :-equality926,24590 -equality('/\\'( V1 , V2), NV, Env) :-equality926,24590 -equality('\\/'( V1 , V2), NV, Env) :-equality930,24716 -equality('\\/'( V1 , V2), NV, Env) :-equality930,24716 -equality('\\/'( V1 , V2), NV, Env) :-equality930,24716 -equality('<=>'( V1 , V2), NV, Env) :-equality934,24842 -equality('<=>'( V1 , V2), NV, Env) :-equality934,24842 -equality('<=>'( V1 , V2), NV, Env) :-equality934,24842 -equality('=>'( V1 , V2), NV, Env) :-equality938,24969 -equality('=>'( V1 , V2), NV, Env) :-equality938,24969 -equality('=>'( V1 , V2), NV, Env) :-equality938,24969 -equality('xor'( V1 , V2), NV, Env) :-equality942,25094 -equality('xor'( V1 , V2), NV, Env) :-equality942,25094 -equality('xor'( V1 , V2), NV, Env) :-equality942,25094 -equality_l(Env, V0, V) :-equality_l947,25222 -equality_l(Env, V0, V) :-equality_l947,25222 -equality_l(Env, V0, V) :-equality_l947,25222 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c951,25286 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c951,25286 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c951,25286 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c962,25542 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c962,25542 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c962,25542 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c969,25692 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c969,25692 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c969,25692 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c973,25808 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c973,25808 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c973,25808 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c986,26072 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c986,26072 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c986,26072 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c997,26332 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c997,26332 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c997,26332 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c1005,26528 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c1005,26528 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c1005,26528 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c1009,26662 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c1009,26662 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c1009,26662 -new_arith( abs, V, NV, Space-Map) :-new_arith1020,26914 -new_arith( abs, V, NV, Space-Map) :-new_arith1020,26914 -new_arith( abs, V, NV, Space-Map) :-new_arith1020,26914 -new_arith( min, V, NV, Space-Map) :-new_arith1032,27202 -new_arith( min, V, NV, Space-Map) :-new_arith1032,27202 -new_arith( min, V, NV, Space-Map) :-new_arith1032,27202 -new_arith( max, V, NV, Space-Map) :-new_arith1041,27438 -new_arith( max, V, NV, Space-Map) :-new_arith1041,27438 -new_arith( max, V, NV, Space-Map) :-new_arith1041,27438 -new_arith( sum, V, NV, Space-Map) :-new_arith1050,27674 -new_arith( sum, V, NV, Space-Map) :-new_arith1050,27674 -new_arith( sum, V, NV, Space-Map) :-new_arith1050,27674 -new_arith( minus, V1, V2, NV, Space-Map) :-new_arith1057,27872 -new_arith( minus, V1, V2, NV, Space-Map) :-new_arith1057,27872 -new_arith( minus, V1, V2, NV, Space-Map) :-new_arith1057,27872 -new_arith( plus, V1, V2, NV, Space-Map) :-new_arith1066,28121 -new_arith( plus, V1, V2, NV, Space-Map) :-new_arith1066,28121 -new_arith( plus, V1, V2, NV, Space-Map) :-new_arith1066,28121 -new_arith( min, V1, V2, NV, Space-Map) :-new_arith1075,28368 -new_arith( min, V1, V2, NV, Space-Map) :-new_arith1075,28368 -new_arith( min, V1, V2, NV, Space-Map) :-new_arith1075,28368 -new_arith( max, V1, V2, NV, Space-Map) :-new_arith1084,28603 -new_arith( max, V1, V2, NV, Space-Map) :-new_arith1084,28603 -new_arith( max, V1, V2, NV, Space-Map) :-new_arith1084,28603 -new_arith( times, V1, V2, NV, Space-Map) :-new_arith1093,28838 -new_arith( times, V1, V2, NV, Space-Map) :-new_arith1093,28838 -new_arith( times, V1, V2, NV, Space-Map) :-new_arith1093,28838 -new_arith( (div), V1, V2, NV, Space-Map) :-new_arith1102,29103 -new_arith( (div), V1, V2, NV, Space-Map) :-new_arith1102,29103 -new_arith( (div), V1, V2, NV, Space-Map) :-new_arith1102,29103 -new_arith( (mod), V1, V2, NV, Space-Map) :-new_arith1111,29362 -new_arith( (mod), V1, V2, NV, Space-Map) :-new_arith1111,29362 -new_arith( (mod), V1, V2, NV, Space-Map) :-new_arith1111,29362 -new_arith( sum, Foreach, Cond, NV, Space-Map) :-new_arith1120,29596 -new_arith( sum, Foreach, Cond, NV, Space-Map) :-new_arith1120,29596 -new_arith( sum, Foreach, Cond, NV, Space-Map) :-new_arith1120,29596 -new_arith( (/\), V1, V2, NV, Space-Map) :-new_arith1128,29845 -new_arith( (/\), V1, V2, NV, Space-Map) :-new_arith1128,29845 -new_arith( (/\), V1, V2, NV, Space-Map) :-new_arith1128,29845 -new_arith( (\/), V1, V2, NV, Space-Map) :-new_arith1135,30007 -new_arith( (\/), V1, V2, NV, Space-Map) :-new_arith1135,30007 -new_arith( (\/), V1, V2, NV, Space-Map) :-new_arith1135,30007 -new_arith( (=>), V1, V2, NV, Space-Map) :-new_arith1142,30168 -new_arith( (=>), V1, V2, NV, Space-Map) :-new_arith1142,30168 -new_arith( (=>), V1, V2, NV, Space-Map) :-new_arith1142,30168 -new_arith( (<=>), V1, V2, NV, Space-Map) :-new_arith1150,30331 -new_arith( (<=>), V1, V2, NV, Space-Map) :-new_arith1150,30331 -new_arith( (<=>), V1, V2, NV, Space-Map) :-new_arith1150,30331 -new_arith( xor, V1, V2, NV, Space-Map) :-new_arith1157,30494 -new_arith( xor, V1, V2, NV, Space-Map) :-new_arith1157,30494 -new_arith( xor, V1, V2, NV, Space-Map) :-new_arith1157,30494 -min_times(Min1,Min2,Max1,Max2,Min) :-min_times1166,30657 -min_times(Min1,Min2,Max1,Max2,Min) :-min_times1166,30657 -min_times(Min1,Min2,Max1,Max2,Min) :-min_times1166,30657 -max_times(Min1,Min2,Max1,Max2,Max) :-max_times1169,30763 -max_times(Min1,Min2,Max1,Max2,Max) :-max_times1169,30763 -max_times(Min1,Min2,Max1,Max2,Max) :-max_times1169,30763 -min_div(Min1,Min20,Max1,Max20,Min) :-min_div1172,30869 -min_div(Min1,Min20,Max1,Max20,Min) :-min_div1172,30869 -min_div(Min1,Min20,Max1,Max20,Min) :-min_div1172,30869 -max_div(Min1,Min20,Max1,Max20,Max) :-max_div1177,31077 -max_div(Min1,Min20,Max1,Max20,Max) :-max_div1177,31077 -max_div(Min1,Min20,Max1,Max20,Max) :-max_div1177,31077 -min_l(Map, V, Min0, Min, Max0, Max) :-min_l1182,31285 -min_l(Map, V, Min0, Min, Max0, Max) :-min_l1182,31285 -min_l(Map, V, Min0, Min, Max0, Max) :-min_l1182,31285 -max_l(Map, V, Min0, Min, Max0, Max) :-max_l1187,31402 -max_l(Map, V, Min0, Min, Max0, Max) :-max_l1187,31402 -max_l(Map, V, Min0, Min, Max0, Max) :-max_l1187,31402 -sum_l(Map, V, Min0, Min, Max0, Max) :-sum_l1192,31519 -sum_l(Map, V, Min0, Min, Max0, Max) :-sum_l1192,31519 -sum_l(Map, V, Min0, Min, Max0, Max) :-sum_l1192,31519 -in_c(A, A, _y) :-in_c1198,31629 -in_c(A, A, _y) :-in_c1198,31629 -in_c(A, A, _y) :-in_c1198,31629 -in_c(C, A, Space-Map) :-in_c1200,31660 -in_c(C, A, Space-Map) :-in_c1200,31660 -in_c(C, A, Space-Map) :-in_c1200,31660 -in_c_l(Env, V, IV) :-in_c_l1207,31798 -in_c_l(Env, V, IV) :-in_c_l1207,31798 -in_c_l(Env, V, IV) :-in_c_l1207,31798 -user:term_expansion( ( H :- B), (H :- (gecode_clpfd:init_gecode(Space, Me), NB, gecode_clpfd:close_gecode(Space, Vs, Me)) ) ) :-term_expansion1210,31840 -user:term_expansion( ( H :- B), (H :- (gecode_clpfd:init_gecode(Space, Me), NB, gecode_clpfd:close_gecode(Space, Vs, Me)) ) ) :-term_expansion1210,31840 -init_gecode(Space, old) :-init_gecode1216,32068 -init_gecode(Space, old) :-init_gecode1216,32068 -init_gecode(Space, old) :-init_gecode1216,32068 -init_gecode(Space-Map, new) :-init_gecode1218,32147 -init_gecode(Space-Map, new) :-init_gecode1218,32147 -init_gecode(Space-Map, new) :-init_gecode1218,32147 -close_gecode(_Space, _Vs, old) :- !.close_gecode1223,32263 -close_gecode(_Space, _Vs, old) :- !.close_gecode1223,32263 -close_gecode(_Space, _Vs, old) :- !.close_gecode1223,32263 -close_gecode(Space-Map, Vs0, new) :-close_gecode1224,32300 -close_gecode(Space-Map, Vs0, new) :-close_gecode1224,32300 -close_gecode(Space-Map, Vs0, new) :-close_gecode1224,32300 -intvar(Map, V) :-intvar1232,32513 -intvar(Map, V) :-intvar1232,32513 -intvar(Map, V) :-intvar1232,32513 -get_home(Home) :-get_home1235,32549 -get_home(Home) :-get_home1235,32549 -get_home(Home) :-get_home1235,32549 -cond2list((List where Goal), El, Cs, Vs) :- !,cond2list1238,32599 -cond2list((List where Goal), El, Cs, Vs) :- !,cond2list1238,32599 -cond2list((List where Goal), El, Cs, Vs) :- !,cond2list1238,32599 -cond2list(List, El, Cs, Vs) :- !,cond2list1240,32700 -cond2list(List, El, Cs, Vs) :- !,cond2list1240,32700 -cond2list(List, El, Cs, Vs) :- !,cond2list1240,32700 -add_el(G0, El, Cs-Vs, [C|Cs]-[V|Vs]) :-add_el1243,32789 -add_el(G0, El, Cs-Vs, [C|Cs]-[V|Vs]) :-add_el1243,32789 -add_el(G0, El, Cs-Vs, [C|Cs]-[V|Vs]) :-add_el1243,32789 -add_el(_G0, _El, Cs-Vs, Cs-Vs).add_el1247,32951 -add_el(_G0, _El, Cs-Vs, Cs-Vs).add_el1247,32951 -attr_unify_hook(_, _) :-attr_unify_hook1252,33082 -attr_unify_hook(_, _) :-attr_unify_hook1252,33082 -attr_unify_hook(_, _) :-attr_unify_hook1252,33082 -attr_unify_hook(v(IV1,_,_), Y) :-attr_unify_hook1254,33140 -attr_unify_hook(v(IV1,_,_), Y) :-attr_unify_hook1254,33140 -attr_unify_hook(v(IV1,_,_), Y) :-attr_unify_hook1254,33140 -attribute_goals(X) -->attribute_goals1269,33556 -attribute_goals(X) -->attribute_goals1269,33556 -attribute_goals(X) -->attribute_goals1269,33556 -m(X, Y, A, B, _Map) :-m1273,33650 -m(X, Y, A, B, _Map) :-m1273,33650 -m(X, Y, A, B, _Map) :-m1273,33650 -m(NV, OV, NA, NB, Vs) :-m1276,33716 -m(NV, OV, NA, NB, Vs) :-m1276,33716 -m(NV, OV, NA, NB, Vs) :-m1276,33716 -m(NV, OV, NA, NB, [_|Vs]) :-m1279,33780 -m(NV, OV, NA, NB, [_|Vs]) :-m1279,33780 -m(NV, OV, NA, NB, [_|Vs]) :-m1279,33780 -lm(A, B, Map, X, Y) :-lm1283,33837 -lm(A, B, Map, X, Y) :-lm1283,33837 -lm(A, B, Map, X, Y) :-lm1283,33837 -l(V, IV, _) :-l1286,33882 -l(V, IV, _) :-l1286,33882 -l(V, IV, _) :-l1286,33882 -l(_NV, _OV, Vs) :-l1289,33941 -l(_NV, _OV, Vs) :-l1289,33941 -l(_NV, _OV, Vs) :-l1289,33941 -l(NV, OV, [v(V, OV, _A, _B)|_Vs]) :-l1292,33980 -l(NV, OV, [v(V, OV, _A, _B)|_Vs]) :-l1292,33980 -l(NV, OV, [v(V, OV, _A, _B)|_Vs]) :-l1292,33980 -l(NV, OV, [_|Vs]) :-l1294,34030 -l(NV, OV, [_|Vs]) :-l1294,34030 -l(NV, OV, [_|Vs]) :-l1294,34030 -ll(Map, X, Y) :-ll1298,34071 -ll(Map, X, Y) :-ll1298,34071 -ll(Map, X, Y) :-ll1298,34071 -l(V, IV, A, B, _) :-l1301,34104 -l(V, IV, A, B, _) :-l1301,34104 -l(V, IV, A, B, _) :-l1301,34104 -l(_NV, _OV, _, _, Vs) :-l1305,34170 -l(_NV, _OV, _, _, Vs) :-l1305,34170 -l(_NV, _OV, _, _, Vs) :-l1305,34170 -l(NV, OV, A, B, [v(V, OV, A, B)|_Vs]) :-l1308,34215 -l(NV, OV, A, B, [v(V, OV, A, B)|_Vs]) :-l1308,34215 -l(NV, OV, A, B, [v(V, OV, A, B)|_Vs]) :-l1308,34215 -l(NV, OV, A, B, [_|Vs]) :-l1310,34269 -l(NV, OV, A, B, [_|Vs]) :-l1310,34269 -l(NV, OV, A, B, [_|Vs]) :-l1310,34269 -is_one(1).is_one1314,34322 -is_one(1).is_one1314,34322 - -packages/clpqr/ChangeLog,0 - -packages/clpqr/clpq/bb_q.pl,3076 -bb_inf(Is,Term,Inf) :-bb_inf71,2256 -bb_inf(Is,Term,Inf) :-bb_inf71,2256 -bb_inf(Is,Term,Inf) :-bb_inf71,2256 -bb_inf(Is,Term,Inf,Vertex) :-bb_inf74,2304 -bb_inf(Is,Term,Inf,Vertex) :-bb_inf74,2304 -bb_inf(Is,Term,Inf,Vertex) :-bb_inf74,2304 -bb_inf_internal(Is,Lin,_,_) :-bb_inf_internal84,2624 -bb_inf_internal(Is,Lin,_,_) :-bb_inf_internal84,2624 -bb_inf_internal(Is,Lin,_,_) :-bb_inf_internal84,2624 -bb_inf_internal(_,_,Inf,Vertex) :-bb_inf_internal93,2840 -bb_inf_internal(_,_,Inf,Vertex) :-bb_inf_internal93,2840 -bb_inf_internal(_,_,Inf,Vertex) :-bb_inf_internal93,2840 -bb_loop(Opt,Is) :-bb_loop102,3063 -bb_loop(Opt,Is) :-bb_loop102,3063 -bb_loop(Opt,Is) :-bb_loop102,3063 -bb_reoptimize(Obj,Inf) :- bb_reoptimize118,3556 -bb_reoptimize(Obj,Inf) :- bb_reoptimize118,3556 -bb_reoptimize(Obj,Inf) :- bb_reoptimize118,3556 -bb_reoptimize(Obj,Inf) :- bb_reoptimize121,3617 -bb_reoptimize(Obj,Inf) :- bb_reoptimize121,3617 -bb_reoptimize(Obj,Inf) :- bb_reoptimize121,3617 -bb_better_bound(Inf) :-bb_better_bound129,3779 -bb_better_bound(Inf) :-bb_better_bound129,3779 -bb_better_bound(Inf) :-bb_better_bound129,3779 -bb_branch(V,U,_) :- {V =< U}.bb_branch137,3969 -bb_branch(V,U,_) :- {V =< U}.bb_branch137,3969 -bb_branch(V,U,_) :- {V =< U}.bb_branch137,3969 -bb_branch(V,_,L) :- {V >= L}.bb_branch138,3999 -bb_branch(V,_,L) :- {V >= L}.bb_branch138,3999 -bb_branch(V,_,L) :- {V >= L}.bb_branch138,3999 -vertex_value([],[]).vertex_value144,4130 -vertex_value([],[]).vertex_value144,4130 -vertex_value([X|Xs],[V|Vs]) :-vertex_value145,4151 -vertex_value([X|Xs],[V|Vs]) :-vertex_value145,4151 -vertex_value([X|Xs],[V|Vs]) :-vertex_value145,4151 -rhs_value(Xn,Value) :- rhs_value153,4302 -rhs_value(Xn,Value) :- rhs_value153,4302 -rhs_value(Xn,Value) :- rhs_value153,4302 -bb_first_nonint([I|Is],[Rhs|Rhss],Viol,F,C) :-bb_first_nonint169,4801 -bb_first_nonint([I|Is],[Rhs|Rhss],Viol,F,C) :-bb_first_nonint169,4801 -bb_first_nonint([I|Is],[Rhs|Rhss],Viol,F,C) :-bb_first_nonint169,4801 -bb_intern([],[]).bb_intern182,5099 -bb_intern([],[]).bb_intern182,5099 -bb_intern([X|Xs],[Xi|Xis]) :-bb_intern183,5117 -bb_intern([X|Xs],[Xi|Xis]) :-bb_intern183,5117 -bb_intern([X|Xs],[Xi|Xis]) :-bb_intern183,5117 -bb_intern([],X,_) :- bb_intern196,5467 -bb_intern([],X,_) :- bb_intern196,5467 -bb_intern([],X,_) :- bb_intern196,5467 -bb_intern([v(I,[])],X,_) :- bb_intern199,5501 -bb_intern([v(I,[])],X,_) :- bb_intern199,5501 -bb_intern([v(I,[])],X,_) :- bb_intern199,5501 -bb_intern([v(1,[V^1])],X,_) :-bb_intern203,5555 -bb_intern([v(1,[V^1])],X,_) :-bb_intern203,5555 -bb_intern([v(1,[V^1])],X,_) :-bb_intern203,5555 -bb_intern(_,_,Term) :-bb_intern208,5640 -bb_intern(_,_,Term) :-bb_intern208,5640 -bb_intern(_,_,Term) :-bb_intern208,5640 -bb_narrow_lower(X) :-bb_narrow_lower218,5992 -bb_narrow_lower(X) :-bb_narrow_lower218,5992 -bb_narrow_lower(X) :-bb_narrow_lower218,5992 -bb_narrow_upper(X) :-bb_narrow_upper232,6244 -bb_narrow_upper(X) :-bb_narrow_upper232,6244 -bb_narrow_upper(X) :-bb_narrow_upper232,6244 - -packages/clpqr/clpq/bv_q.pl,31280 -deref(Lin,Lind) :-deref156,4028 -deref(Lin,Lind) :-deref156,4028 -deref(Lin,Lind) :-deref156,4028 -log_deref(0,Vs,Vs,Lin) :-log_deref170,4491 -log_deref(0,Vs,Vs,Lin) :-log_deref170,4491 -log_deref(0,Vs,Vs,Lin) :-log_deref170,4491 -log_deref(1,[v(K,[X^1])|Vs],Vs,Lin) :-log_deref173,4535 -log_deref(1,[v(K,[X^1])|Vs],Vs,Lin) :-log_deref173,4535 -log_deref(1,[v(K,[X^1])|Vs],Vs,Lin) :-log_deref173,4535 -log_deref(2,[v(Kx,[X^1]),v(Ky,[Y^1])|Vs],Vs,Lin) :-log_deref177,4627 -log_deref(2,[v(Kx,[X^1]),v(Ky,[Y^1])|Vs],Vs,Lin) :-log_deref177,4627 -log_deref(2,[v(Kx,[X^1]),v(Ky,[Y^1])|Vs],Vs,Lin) :-log_deref177,4627 -log_deref(N,V0,V2,Lin) :-log_deref182,4752 -log_deref(N,V0,V2,Lin) :-log_deref182,4752 -log_deref(N,V0,V2,Lin) :-log_deref182,4752 -deref_var(X,Lin) :-deref_var194,4997 -deref_var(X,Lin) :-deref_var194,4997 -deref_var(X,Lin) :-deref_var194,4997 -var_with_def_assign(Var,Lin) :-var_with_def_assign216,5509 -var_with_def_assign(Var,Lin) :-var_with_def_assign216,5509 -var_with_def_assign(Var,Lin) :-var_with_def_assign216,5509 -var_with_def_intern(Type,Var,Lin,Strict) :-var_with_def_intern238,5976 -var_with_def_intern(Type,Var,Lin,Strict) :-var_with_def_intern238,5976 -var_with_def_intern(Type,Var,Lin,Strict) :-var_with_def_intern238,5976 -var_intern(Type,Var,Strict) :-var_intern249,6212 -var_intern(Type,Var,Strict) :-var_intern249,6212 -var_intern(Type,Var,Strict) :-var_intern249,6212 -var_intern(Var,Class) :- % for ordered/1 but otherwise free varsvar_intern258,6398 -var_intern(Var,Class) :- % for ordered/1 but otherwise free varsvar_intern258,6398 -var_intern(Var,Class) :- % for ordered/1 but otherwise free varsvar_intern258,6398 -var_intern(Var,Class) :-var_intern264,6562 -var_intern(Var,Class) :-var_intern264,6562 -var_intern(Var,Class) :-var_intern264,6562 -export_binding([]).export_binding275,6904 -export_binding([]).export_binding275,6904 -export_binding([X-Y|Gs]) :-export_binding276,6924 -export_binding([X-Y|Gs]) :-export_binding276,6924 -export_binding([X-Y|Gs]) :-export_binding276,6924 -'solve_='(Nf) :-solve_=284,7061 -'solve_='(Nf) :-solve_=284,7061 -'solve_='(Nf) :-solve_=284,7061 -'solve_=\\='(Nf) :-solve_=\\=292,7245 -'solve_=\\='(Nf) :-solve_=\\=292,7245 -'solve_=\\='(Nf) :-solve_=\\=292,7245 -'solve_<'(Nf) :-solve_<308,7630 -'solve_<'(Nf) :-solve_<308,7630 -'solve_<'(Nf) :-solve_<308,7630 -'solve_=<'(Nf) :-solve_=<316,7769 -'solve_=<'(Nf) :-solve_=<316,7769 -'solve_=<'(Nf) :-solve_=<316,7769 -maximize(Term) :-maximize320,7829 -maximize(Term) :-maximize320,7829 -maximize(Term) :-maximize320,7829 -minimize(Term) :-minimize348,8731 -minimize(Term) :-minimize348,8731 -minimize(Term) :-minimize348,8731 -minimize_lin(Lin) :-minimize_lin356,8919 -minimize_lin(Lin) :-minimize_lin356,8919 -minimize_lin(Lin) :-minimize_lin356,8919 -sup(Expression,Sup) :-sup363,9070 -sup(Expression,Sup) :-sup363,9070 -sup(Expression,Sup) :-sup363,9070 -sup(Expression,Sup,Vector,Vertex) :-sup366,9122 -sup(Expression,Sup,Vector,Vertex) :-sup366,9122 -sup(Expression,Sup,Vector,Vertex) :-sup366,9122 -inf(Expression,Inf) :-inf369,9198 -inf(Expression,Inf) :-inf369,9198 -inf(Expression,Inf) :-inf369,9198 -inf(Expression,Inf,Vector,Vertex) :-inf372,9250 -inf(Expression,Inf,Vector,Vertex) :-inf372,9250 -inf(Expression,Inf,Vector,Vertex) :-inf372,9250 -inf_lin(Lin,_,Vector,_) :-inf_lin377,9436 -inf_lin(Lin,_,Vector,_) :-inf_lin377,9436 -inf_lin(Lin,_,Vector,_) :-inf_lin377,9436 -inf_lin(_,Infimum,_,Vertex) :-inf_lin385,9689 -inf_lin(_,Infimum,_,Vertex) :-inf_lin385,9689 -inf_lin(_,Infimum,_,Vertex) :-inf_lin385,9689 -assign([],[]).assign396,9990 -assign([],[]).assign396,9990 -assign([X|Xs],[Y|Ys]) :-assign397,10005 -assign([X|Xs],[Y|Ys]) :-assign397,10005 -assign([X|Xs],[Y|Ys]) :-assign397,10005 -iterate_dec(OptVar,Opt) :-iterate_dec428,11090 -iterate_dec(OptVar,Opt) :-iterate_dec428,11090 -iterate_dec(OptVar,Opt) :-iterate_dec428,11090 -iterate_inc(OptVar,Opt) :-iterate_inc444,11522 -iterate_inc(OptVar,Opt) :-iterate_inc444,11522 -iterate_inc(OptVar,Opt) :-iterate_inc444,11522 -dec_step_cont([],optimum,Cont,Cont).dec_step_cont462,11973 -dec_step_cont([],optimum,Cont,Cont).dec_step_cont462,11973 -dec_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-dec_step_cont463,12010 -dec_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-dec_step_cont463,12010 -dec_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-dec_step_cont463,12010 -inc_step_cont([],optimum,Cont,Cont).inc_step_cont472,12260 -inc_step_cont([],optimum,Cont,Cont).inc_step_cont472,12260 -inc_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-inc_step_cont473,12297 -inc_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-inc_step_cont473,12297 -inc_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-inc_step_cont473,12297 -dec_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont482,12547 -dec_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont482,12547 -dec_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont482,12547 -dec_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont492,12836 -dec_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont492,12836 -dec_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont492,12836 -dec_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont499,13069 -dec_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont499,13069 -dec_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont499,13069 -dec_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont508,13331 -dec_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont508,13331 -dec_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont508,13331 -dec_step_2_cont(t_none,l(V*_,_),_,unlimited(V,t_none),Cont,Cont).dec_step_2_cont515,13564 -dec_step_2_cont(t_none,l(V*_,_),_,unlimited(V,t_none),Cont,Cont).dec_step_2_cont515,13564 -inc_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont519,13633 -inc_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont519,13633 -inc_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont519,13633 -inc_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont528,13895 -inc_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont528,13895 -inc_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont528,13895 -inc_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont535,14128 -inc_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont535,14128 -inc_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont535,14128 -inc_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont544,14390 -inc_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont544,14390 -inc_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont544,14390 -inc_step_2_cont(t_none,l(V*_,_),_,unlimited(V,t_none),Cont,Cont).inc_step_2_cont551,14623 -inc_step_2_cont(t_none,l(V*_,_),_,unlimited(V,t_none),Cont,Cont).inc_step_2_cont551,14623 -replace_in_cont([],_,_,[]).replace_in_cont553,14690 -replace_in_cont([],_,_,[]).replace_in_cont553,14690 -replace_in_cont([H1|T1],X,Y,[H2|T2]) :-replace_in_cont554,14718 -replace_in_cont([H1|T1],X,Y,[H2|T2]) :-replace_in_cont554,14718 -replace_in_cont([H1|T1],X,Y,[H2|T2]) :-replace_in_cont554,14718 -dec_step([],optimum).dec_step562,14848 -dec_step([],optimum).dec_step562,14848 -dec_step([l(V*K,OrdV)|Vs],Status) :-dec_step563,14870 -dec_step([l(V*K,OrdV)|Vs],Status) :-dec_step563,14870 -dec_step([l(V*K,OrdV)|Vs],Status) :-dec_step563,14870 -dec_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-dec_step_2572,15063 -dec_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-dec_step_2572,15063 -dec_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-dec_step_2572,15063 -dec_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2580,15265 -dec_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2580,15265 -dec_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2580,15265 -dec_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-dec_step_2586,15438 -dec_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-dec_step_2586,15438 -dec_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-dec_step_2586,15438 -dec_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2593,15613 -dec_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2593,15613 -dec_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2593,15613 -dec_step_2(t_none,l(V*_,_),_,unlimited(V,t_none)). dec_step_2599,15786 -dec_step_2(t_none,l(V*_,_),_,unlimited(V,t_none)). dec_step_2599,15786 -inc_step([],optimum). % if status has not been set yet: no changesinc_step601,15839 -inc_step([],optimum). % if status has not been set yet: no changesinc_step601,15839 -inc_step([l(V*K,OrdV)|Vs],Status) :-inc_step602,15906 -inc_step([l(V*K,OrdV)|Vs],Status) :-inc_step602,15906 -inc_step([l(V*K,OrdV)|Vs],Status) :-inc_step602,15906 -inc_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-inc_step_2611,16096 -inc_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-inc_step_2611,16096 -inc_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-inc_step_2611,16096 -inc_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2618,16271 -inc_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2618,16271 -inc_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2618,16271 -inc_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-inc_step_2624,16444 -inc_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-inc_step_2624,16444 -inc_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-inc_step_2624,16444 -inc_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2631,16619 -inc_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2631,16619 -inc_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2631,16619 -inc_step_2(t_none,l(V*_,_),_,unlimited(V,t_none)).inc_step_2637,16792 -inc_step_2(t_none,l(V*_,_),_,unlimited(V,t_none)).inc_step_2637,16792 -ub(Class,OrdX,Ub) :-ub656,17406 -ub(Class,OrdX,Ub) :-ub656,17406 -ub(Class,OrdX,Ub) :-ub656,17406 -ub_first([Dep|Deps],OrdX,Tightest) :-ub_first667,17776 -ub_first([Dep|Deps],OrdX,Tightest) :-ub_first667,17776 -ub_first([Dep|Deps],OrdX,Tightest) :-ub_first667,17776 -ub([],_,T0,T0).ub681,18090 -ub([],_,T0,T0).ub681,18090 -ub([Dep|Deps],OrdX,T0,T1) :-ub682,18106 -ub([Dep|Deps],OrdX,T0,T1) :-ub682,18106 -ub([Dep|Deps],OrdX,T0,T1) :-ub682,18106 -ub_inner(t_l(L),OrdX,Lin,t_L(L),Ub) :-ub_inner698,18494 -ub_inner(t_l(L),OrdX,Lin,t_L(L),Ub) :-ub_inner698,18494 -ub_inner(t_l(L),OrdX,Lin,t_L(L),Ub) :-ub_inner698,18494 -ub_inner(t_u(U),OrdX,Lin,t_U(U),Ub) :-ub_inner702,18594 -ub_inner(t_u(U),OrdX,Lin,t_U(U),Ub) :-ub_inner702,18594 -ub_inner(t_u(U),OrdX,Lin,t_U(U),Ub) :-ub_inner702,18594 -ub_inner(t_lu(L,U),OrdX,Lin,W,Ub) :-ub_inner706,18694 -ub_inner(t_lu(L,U),OrdX,Lin,W,Ub) :-ub_inner706,18694 -ub_inner(t_lu(L,U),OrdX,Lin,W,Ub) :-ub_inner706,18694 -lb(Class,OrdX,Lb) :-lb725,19295 -lb(Class,OrdX,Lb) :-lb725,19295 -lb(Class,OrdX,Lb) :-lb725,19295 -lb_first([Dep|Deps],OrdX,Tightest) :-lb_first738,19753 -lb_first([Dep|Deps],OrdX,Tightest) :-lb_first738,19753 -lb_first([Dep|Deps],OrdX,Tightest) :-lb_first738,19753 -lb([],_,T0,T0).lb753,20208 -lb([],_,T0,T0).lb753,20208 -lb([Dep|Deps],OrdX,T0,T1) :-lb754,20224 -lb([Dep|Deps],OrdX,T0,T1) :-lb754,20224 -lb([Dep|Deps],OrdX,T0,T1) :-lb754,20224 -lb_inner(t_l(L),OrdX,Lin,t_L(L),Lb) :-lb_inner780,21144 -lb_inner(t_l(L),OrdX,Lin,t_L(L),Lb) :-lb_inner780,21144 -lb_inner(t_l(L),OrdX,Lin,t_L(L),Lb) :-lb_inner780,21144 -lb_inner(t_u(U),OrdX,Lin,t_U(U),Lb) :-lb_inner786,21351 -lb_inner(t_u(U),OrdX,Lin,t_U(U),Lb) :-lb_inner786,21351 -lb_inner(t_u(U),OrdX,Lin,t_U(U),Lb) :-lb_inner786,21351 -lb_inner(t_lu(L,U),OrdX,Lin,W,Lb) :-lb_inner790,21458 -lb_inner(t_lu(L,U),OrdX,Lin,W,Lb) :-lb_inner790,21458 -lb_inner(t_lu(L,U),OrdX,Lin,W,Lb) :-lb_inner790,21458 -solve(Lin) :-solve808,21964 -solve(Lin) :-solve808,21964 -solve(Lin) :-solve808,21964 -solve([],_,I,Bind0,Bind0) :-solve817,22164 -solve([],_,I,Bind0,Bind0) :-solve817,22164 -solve([],_,I,Bind0,Bind0) :-solve817,22164 -solve(H,Lin,_,Bind0,BindT) :-solve820,22207 -solve(H,Lin,_,Bind0,BindT) :-solve820,22207 -solve(H,Lin,_,Bind0,BindT) :-solve820,22207 -solve_x(Lin,X) :-solve_x879,24092 -solve_x(Lin,X) :-solve_x879,24092 -solve_x(Lin,X) :-solve_x879,24092 -solve_x([],_,I,_,Bind0,Bind0) :-solve_x884,24187 -solve_x([],_,I,_,Bind0,Bind0) :-solve_x884,24187 -solve_x([],_,I,_,Bind0,Bind0) :-solve_x884,24187 -solve_x(H,Lin,_,X,Bind0,BindT) :-solve_x887,24234 -solve_x(H,Lin,_,X,Bind0,BindT) :-solve_x887,24234 -solve_x(H,Lin,_,X,Bind0,BindT) :-solve_x887,24234 -solve_ord_x(Lin,OrdX,ClassX) :-solve_ord_x911,24965 -solve_ord_x(Lin,OrdX,ClassX) :-solve_ord_x911,24965 -solve_ord_x(Lin,OrdX,ClassX) :-solve_ord_x911,24965 -solve_ord_x([],_,I,_,_,Bind0,Bind0) :-solve_ord_x916,25088 -solve_ord_x([],_,I,_,_,Bind0,Bind0) :-solve_ord_x916,25088 -solve_ord_x([],_,I,_,_,Bind0,Bind0) :-solve_ord_x916,25088 -solve_ord_x([_|_],Lin,_,OrdX,ClassX,Bind0,BindT) :-solve_ord_x918,25137 -solve_ord_x([_|_],Lin,_,OrdX,ClassX,Bind0,BindT) :-solve_ord_x918,25137 -solve_ord_x([_|_],Lin,_,OrdX,ClassX,Bind0,BindT) :-solve_ord_x918,25137 -sd([],Class0,Class0,Preference0,Preference0,NV0,NV0).sd940,25942 -sd([],Class0,Class0,Preference0,Preference0,NV0,NV0).sd940,25942 -sd([l(X*K,_)|Xs],Class0,ClassN,Preference0,PreferenceN,NV0,NVt) :-sd941,25996 -sd([l(X*K,_)|Xs],Class0,ClassN,Preference0,PreferenceN,NV0,NVt) :-sd941,25996 -sd([l(X*K,_)|Xs],Class0,ClassN,Preference0,PreferenceN,NV0,NVt) :-sd941,25996 -preference(A,B,Pref) :-preference967,26876 -preference(A,B,Pref) :-preference967,26876 -preference(A,B,Pref) :-preference967,26876 -eq_classes(NV,_,Cs) :-eq_classes982,27304 -eq_classes(NV,_,Cs) :-eq_classes982,27304 -eq_classes(NV,_,Cs) :-eq_classes982,27304 -eq_classes(NV,NVT,Cs) :-eq_classes986,27356 -eq_classes(NV,NVT,Cs) :-eq_classes986,27356 -eq_classes(NV,NVT,Cs) :-eq_classes986,27356 -equate([],_).equate991,27530 -equate([],_).equate991,27530 -equate([X|Xs],X) :- equate(Xs,X).equate992,27544 -equate([X|Xs],X) :- equate(Xs,X).equate992,27544 -equate([X|Xs],X) :- equate(Xs,X).equate992,27544 -equate([X|Xs],X) :- equate(Xs,X).equate992,27544 -equate([X|Xs],X) :- equate(Xs,X).equate992,27544 -attach_class(Xs,_) :-attach_class997,27636 -attach_class(Xs,_) :-attach_class997,27636 -attach_class(Xs,_) :-attach_class997,27636 -attach_class([X|Xs],Class) :-attach_class1000,27679 -attach_class([X|Xs],Class) :-attach_class1000,27679 -attach_class([X|Xs],Class) :-attach_class1000,27679 -unconstrained(Lin,Uc,Kuc,Rest) :-unconstrained1010,27939 -unconstrained(Lin,Uc,Kuc,Rest) :-unconstrained1010,27939 -unconstrained(Lin,Uc,Kuc,Rest) :-unconstrained1010,27939 -same_class([],_).same_class1022,28218 -same_class([],_).same_class1022,28218 -same_class([l(X*_,_)|Xs],Class) :-same_class1023,28236 -same_class([l(X*_,_)|Xs],Class) :-same_class1023,28236 -same_class([l(X*_,_)|Xs],Class) :-same_class1023,28236 -get_or_add_class(X,Class) :-get_or_add_class1032,28464 -get_or_add_class(X,Class) :-get_or_add_class1032,28464 -get_or_add_class(X,Class) :-get_or_add_class1032,28464 -allvars(X,Allvars) :-allvars1045,28757 -allvars(X,Allvars) :-allvars1045,28757 -allvars(X,Allvars) :-allvars1045,28757 -deactivate_bound(t_l(_),_).deactivate_bound1056,29035 -deactivate_bound(t_l(_),_).deactivate_bound1056,29035 -deactivate_bound(t_u(_),_).deactivate_bound1057,29063 -deactivate_bound(t_u(_),_).deactivate_bound1057,29063 -deactivate_bound(t_lu(_,_),_).deactivate_bound1058,29091 -deactivate_bound(t_lu(_,_),_).deactivate_bound1058,29091 -deactivate_bound(t_L(L),X) :-deactivate_bound1059,29122 -deactivate_bound(t_L(L),X) :-deactivate_bound1059,29122 -deactivate_bound(t_L(L),X) :-deactivate_bound1059,29122 -deactivate_bound(t_Lu(L,U),X) :-deactivate_bound1062,29203 -deactivate_bound(t_Lu(L,U),X) :-deactivate_bound1062,29203 -deactivate_bound(t_Lu(L,U),X) :-deactivate_bound1062,29203 -deactivate_bound(t_U(U),X) :-deactivate_bound1065,29290 -deactivate_bound(t_U(U),X) :-deactivate_bound1065,29290 -deactivate_bound(t_U(U),X) :-deactivate_bound1065,29290 -deactivate_bound(t_lU(L,U),X) :-deactivate_bound1068,29371 -deactivate_bound(t_lU(L,U),X) :-deactivate_bound1068,29371 -deactivate_bound(t_lU(L,U),X) :-deactivate_bound1068,29371 -intro_at(X,Value,Type) :-intro_at1079,29728 -intro_at(X,Value,Type) :-intro_at1079,29728 -intro_at(X,Value,Type) :-intro_at1079,29728 -undet_active([_,_|H]) :-undet_active1094,30083 -undet_active([_,_|H]) :-undet_active1094,30083 -undet_active([_,_|H]) :-undet_active1094,30083 -undet_active_h([]).undet_active_h1102,30281 -undet_active_h([]).undet_active_h1102,30281 -undet_active_h([l(X*_,_)|Xs]) :-undet_active_h1103,30301 -undet_active_h([l(X*_,_)|Xs]) :-undet_active_h1103,30301 -undet_active_h([l(X*_,_)|Xs]) :-undet_active_h1103,30301 -undet_active(t_none,_). % type_activityundet_active1114,30562 -undet_active(t_none,_). % type_activityundet_active1114,30562 -undet_active(t_L(_),_).undet_active1115,30602 -undet_active(t_L(_),_).undet_active1115,30602 -undet_active(t_Lu(_,_),_).undet_active1116,30626 -undet_active(t_Lu(_,_),_).undet_active1116,30626 -undet_active(t_U(_),_).undet_active1117,30653 -undet_active(t_U(_),_).undet_active1117,30653 -undet_active(t_lU(_,_),_).undet_active1118,30677 -undet_active(t_lU(_,_),_).undet_active1118,30677 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1119,30704 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1119,30704 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1119,30704 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1119,30704 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1119,30704 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1120,30752 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1120,30752 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1120,30752 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1120,30752 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1120,30752 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1121,30800 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1121,30800 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1121,30800 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1121,30800 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1121,30800 -determine_active_dec([_,_|H]) :-determine_active_dec1130,31146 -determine_active_dec([_,_|H]) :-determine_active_dec1130,31146 -determine_active_dec([_,_|H]) :-determine_active_dec1130,31146 -determine_active_inc([_,_|H]) :-determine_active_inc1140,31495 -determine_active_inc([_,_|H]) :-determine_active_inc1140,31495 -determine_active_inc([_,_|H]) :-determine_active_inc1140,31495 -determine_active([],_).determine_active1150,31817 -determine_active([],_).determine_active1150,31817 -determine_active([l(X*K,_)|Xs],S) :-determine_active1151,31841 -determine_active([l(X*K,_)|Xs],S) :-determine_active1151,31841 -determine_active([l(X*K,_)|Xs],S) :-determine_active1151,31841 -determine_active(t_L(_),_,_,_).determine_active1157,31982 -determine_active(t_L(_),_,_,_).determine_active1157,31982 -determine_active(t_Lu(_,_),_,_,_).determine_active1158,32014 -determine_active(t_Lu(_,_),_,_,_).determine_active1158,32014 -determine_active(t_U(_),_,_,_).determine_active1159,32049 -determine_active(t_U(_),_,_,_).determine_active1159,32049 -determine_active(t_lU(_,_),_,_,_).determine_active1160,32081 -determine_active(t_lU(_,_),_,_,_).determine_active1160,32081 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1161,32116 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1161,32116 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1161,32116 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1161,32116 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1161,32116 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1162,32172 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1162,32172 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1162,32172 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1162,32172 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1162,32172 -determine_active(t_lu(L,U),X,K,S) :-determine_active1163,32228 -determine_active(t_lu(L,U),X,K,S) :-determine_active1163,32228 -determine_active(t_lu(L,U),X,K,S) :-determine_active1163,32228 -detach_bounds(V) :-detach_bounds1175,32416 -detach_bounds(V) :-detach_bounds1175,32416 -detach_bounds(V) :-detach_bounds1175,32416 -detach_bounds_vlv(OrdV,Lin,Class,Var,NewLin) :-detach_bounds_vlv1196,32928 -detach_bounds_vlv(OrdV,Lin,Class,Var,NewLin) :-detach_bounds_vlv1196,32928 -detach_bounds_vlv(OrdV,Lin,Class,Var,NewLin) :-detach_bounds_vlv1196,32928 -basis_drop(X) :-basis_drop1219,33594 -basis_drop(X) :-basis_drop1219,33594 -basis_drop(X) :-basis_drop1219,33594 -basis(X,Basis) :-basis1228,33757 -basis(X,Basis) :-basis1228,33757 -basis(X,Basis) :-basis1228,33757 -basis_add(X,NewBasis) :-basis_add1238,33957 -basis_add(X,NewBasis) :-basis_add1238,33957 -basis_add(X,NewBasis) :-basis_add1238,33957 -basis_pivot(Leave,Enter) :-basis_pivot1248,34188 -basis_pivot(Leave,Enter) :-basis_pivot1248,34188 -basis_pivot(Leave,Enter) :-basis_pivot1248,34188 -pivot(Dep,Indep) :-pivot1265,34642 -pivot(Dep,Indep) :-pivot1265,34642 -pivot(Dep,Indep) :-pivot1265,34642 -pivot_a(Dep,Indep,Vb,Wd) :-pivot_a1285,35220 -pivot_a(Dep,Indep,Vb,Wd) :-pivot_a1285,35220 -pivot_a(Dep,Indep,Vb,Wd) :-pivot_a1285,35220 -pivot_b(Vub,V,Vb,Wd) :-pivot_b1295,35468 -pivot_b(Vub,V,Vb,Wd) :-pivot_b1295,35468 -pivot_b(Vub,V,Vb,Wd) :-pivot_b1295,35468 -pivot_b_delta(t_Lu(L,U),Delta) :- Delta is L-U.pivot_b_delta1306,35737 -pivot_b_delta(t_Lu(L,U),Delta) :- Delta is L-U.pivot_b_delta1306,35737 -pivot_b_delta(t_Lu(L,U),Delta) :- Delta is L-U.pivot_b_delta1306,35737 -pivot_b_delta(t_lU(L,U),Delta) :- Delta is U-L.pivot_b_delta1307,35785 -pivot_b_delta(t_lU(L,U),Delta) :- Delta is U-L.pivot_b_delta1307,35785 -pivot_b_delta(t_lU(L,U),Delta) :- Delta is U-L.pivot_b_delta1307,35785 -select_active_bound(t_L(L),L).select_active_bound1313,35944 -select_active_bound(t_L(L),L).select_active_bound1313,35944 -select_active_bound(t_Lu(L,_),L).select_active_bound1314,35975 -select_active_bound(t_Lu(L,_),L).select_active_bound1314,35975 -select_active_bound(t_U(U),U).select_active_bound1315,36009 -select_active_bound(t_U(U),U).select_active_bound1315,36009 -select_active_bound(t_lU(_,U),U).select_active_bound1316,36040 -select_active_bound(t_lU(_,U),U).select_active_bound1316,36040 -select_active_bound(t_none,0).select_active_bound1317,36074 -select_active_bound(t_none,0).select_active_bound1317,36074 -select_active_bound(t_l(_),0).select_active_bound1321,36126 -select_active_bound(t_l(_),0).select_active_bound1321,36126 -select_active_bound(t_u(_),0).select_active_bound1322,36157 -select_active_bound(t_u(_),0).select_active_bound1322,36157 -select_active_bound(t_lu(_,_),0).select_active_bound1323,36188 -select_active_bound(t_lu(_,_),0).select_active_bound1323,36188 -pivot(Dep,Class,IndepOrd,DepAct,IndAct) :-pivot1335,36415 -pivot(Dep,Class,IndepOrd,DepAct,IndAct) :-pivot1335,36415 -pivot(Dep,Class,IndepOrd,DepAct,IndAct) :-pivot1335,36415 -pivot_vlv(Dep,Class,IndepOrd,DepAct,AbvI,Lin) :-pivot_vlv1359,37283 -pivot_vlv(Dep,Class,IndepOrd,DepAct,AbvI,Lin) :-pivot_vlv1359,37283 -pivot_vlv(Dep,Class,IndepOrd,DepAct,AbvI,Lin) :-pivot_vlv1359,37283 -backsubst_delta(Class,OrdX,X,Delta) :-backsubst_delta1381,38069 -backsubst_delta(Class,OrdX,X,Delta) :-backsubst_delta1381,38069 -backsubst_delta(Class,OrdX,X,Delta) :-backsubst_delta1381,38069 -backsubst(Class,OrdX,Lin) :-backsubst1389,38306 -backsubst(Class,OrdX,Lin) :-backsubst1389,38306 -backsubst(Class,OrdX,Lin) :-backsubst1389,38306 -bs(Xs,_,_) :-bs1401,38581 -bs(Xs,_,_) :-bs1401,38581 -bs(Xs,_,_) :-bs1401,38581 -bs([X|Xs],OrdV,Lin) :-bs1404,38609 -bs([X|Xs],OrdV,Lin) :-bs1404,38609 -bs([X|Xs],OrdV,Lin) :-bs1404,38609 -bs_collect_bindings(Xs,_,_,Bind0,BindT) :-bs_collect_bindings1427,39351 -bs_collect_bindings(Xs,_,_,Bind0,BindT) :-bs_collect_bindings1427,39351 -bs_collect_bindings(Xs,_,_,Bind0,BindT) :-bs_collect_bindings1427,39351 -bs_collect_bindings([X|Xs],OrdV,Lin,Bind0,BindT) :-bs_collect_bindings1431,39424 -bs_collect_bindings([X|Xs],OrdV,Lin,Bind0,BindT) :-bs_collect_bindings1431,39424 -bs_collect_bindings([X|Xs],OrdV,Lin,Bind0,BindT) :-bs_collect_bindings1431,39424 -bs_collect_binding([],X,Inhom) --> [X-Inhom].bs_collect_binding1447,39981 -bs_collect_binding([],X,Inhom) --> [X-Inhom].bs_collect_binding1447,39981 -bs_collect_binding([],X,Inhom) --> [X-Inhom].bs_collect_binding1447,39981 -bs_collect_binding([_|_],_,_) --> [].bs_collect_binding1448,40027 -bs_collect_binding([_|_],_,_) --> [].bs_collect_binding1448,40027 -bs_collect_binding([_|_],_,_) --> [].bs_collect_binding1448,40027 -rcbl([],Bind0,Bind0).rcbl1458,40124 -rcbl([],Bind0,Bind0).rcbl1458,40124 -rcbl([X|Continuation],Bind0,BindT) :-rcbl1459,40146 -rcbl([X|Continuation],Bind0,BindT) :-rcbl1459,40146 -rcbl([X|Continuation],Bind0,BindT) :-rcbl1459,40146 -rcb_cont(X,Status,Violated,ContIn,ContOut) :-rcb_cont1465,40369 -rcb_cont(X,Status,Violated,ContIn,ContOut) :-rcb_cont1465,40369 -rcb_cont(X,Status,Violated,ContIn,ContOut) :-rcb_cont1465,40369 -reconsider(X) :-reconsider1496,41217 -reconsider(X) :-reconsider1496,41217 -reconsider(X) :-reconsider1496,41217 -reconsider(_).reconsider1501,41332 -reconsider(_).reconsider1501,41332 -rcb(X,Status,Violated) :-rcb1519,42066 -rcb(X,Status,Violated) :-rcb1519,42066 -rcb(X,Status,Violated) :-rcb1519,42066 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1548,42816 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1548,42816 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1548,42816 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1548,42816 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1548,42816 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1549,42895 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1549,42895 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1549,42895 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1549,42895 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1549,42895 -rcbl_status(unlimited(Indep,DepT),X,Cont,B0,Bt,Violated) :-rcbl_status1550,42974 -rcbl_status(unlimited(Indep,DepT),X,Cont,B0,Bt,Violated) :-rcbl_status1550,42974 -rcbl_status(unlimited(Indep,DepT),X,Cont,B0,Bt,Violated) :-rcbl_status1550,42974 -rcbl_opt(l(L),X,Continuation,B0,B1) :-rcbl_opt1560,43388 -rcbl_opt(l(L),X,Continuation,B0,B1) :-rcbl_opt1560,43388 -rcbl_opt(l(L),X,Continuation,B0,B1) :-rcbl_opt1560,43388 -rcbl_opt(u(U),X,Continuation,B0,B1) :-rcbl_opt1581,43931 -rcbl_opt(u(U),X,Continuation,B0,B1) :-rcbl_opt1581,43931 -rcbl_opt(u(U),X,Continuation,B0,B1) :-rcbl_opt1581,43931 -rcbl_app(l(L),X,Continuation,B0,B1) :-rcbl_app1606,44527 -rcbl_app(l(L),X,Continuation,B0,B1) :-rcbl_app1606,44527 -rcbl_app(l(L),X,Continuation,B0,B1) :-rcbl_app1606,44527 -rcbl_app(u(U),X,Continuation,B0,B1) :-rcbl_app1614,44758 -rcbl_app(u(U),X,Continuation,B0,B1) :-rcbl_app1614,44758 -rcbl_app(u(U),X,Continuation,B0,B1) :-rcbl_app1614,44758 -rcbl_unl(l(L),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1625,45035 -rcbl_unl(l(L),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1625,45035 -rcbl_unl(l(L),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1625,45035 -rcbl_unl(u(U),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1628,45163 -rcbl_unl(u(U),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1628,45163 -rcbl_unl(u(U),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1628,45163 -narrow_u(t_u(_),X,U) :-narrow_u1637,45410 -narrow_u(t_u(_),X,U) :-narrow_u1637,45410 -narrow_u(t_u(_),X,U) :-narrow_u1637,45410 -narrow_u(t_lu(L,_),X,U) :-narrow_u1640,45485 -narrow_u(t_lu(L,_),X,U) :-narrow_u1640,45485 -narrow_u(t_lu(L,_),X,U) :-narrow_u1640,45485 -narrow_l( t_l(_), X, L) :-narrow_l1649,45685 -narrow_l( t_l(_), X, L) :-narrow_l1649,45685 -narrow_l( t_l(_), X, L) :-narrow_l1649,45685 -narrow_l( t_lu(_,U), X, L) :-narrow_l1653,45767 -narrow_l( t_lu(_,U), X, L) :-narrow_l1653,45767 -narrow_l( t_lu(_,U), X, L) :-narrow_l1653,45767 -dump_var(t_none,V,I,H) --> dump_var1664,46104 -dump_var(t_none,V,I,H) --> dump_var1664,46104 -dump_var(t_none,V,I,H) --> dump_var1664,46104 -dump_var(t_L(L),V,I,H) -->dump_var1677,46267 -dump_var(t_L(L),V,I,H) -->dump_var1677,46267 -dump_var(t_L(L),V,I,H) -->dump_var1677,46267 -dump_var(t_l(L),V,I,H) -->dump_var1683,46470 -dump_var(t_l(L),V,I,H) -->dump_var1683,46470 -dump_var(t_l(L),V,I,H) -->dump_var1683,46470 -dump_var(t_U(U),V,I,H) -->dump_var1700,46865 -dump_var(t_U(U),V,I,H) -->dump_var1700,46865 -dump_var(t_U(U),V,I,H) -->dump_var1700,46865 -dump_var(t_u(U),V,I,H) -->dump_var1703,46921 -dump_var(t_u(U),V,I,H) -->dump_var1703,46921 -dump_var(t_u(U),V,I,H) -->dump_var1703,46921 -dump_var(t_Lu(L,U),V,I,H) -->dump_var1720,47308 -dump_var(t_Lu(L,U),V,I,H) -->dump_var1720,47308 -dump_var(t_Lu(L,U),V,I,H) -->dump_var1720,47308 -dump_var(t_lU(L,U),V,I,H) -->dump_var1724,47392 -dump_var(t_lU(L,U),V,I,H) -->dump_var1724,47392 -dump_var(t_lU(L,U),V,I,H) -->dump_var1724,47392 -dump_var(t_lu(L,U),V,I,H) -->dump_var1728,47476 -dump_var(t_lu(L,U),V,I,H) -->dump_var1728,47476 -dump_var(t_lu(L,U),V,I,H) -->dump_var1728,47476 -dump_var(T,V,I,H) --> % should not happendump_var1732,47560 -dump_var(T,V,I,H) --> % should not happendump_var1732,47560 -dump_var(T,V,I,H) --> % should not happendump_var1732,47560 -dump_strict(0,Result,_,Result).dump_strict1742,47939 -dump_strict(0,Result,_,Result).dump_strict1742,47939 -dump_strict(1,_,Result,Result).dump_strict1743,47971 -dump_strict(1,_,Result,Result).dump_strict1743,47971 -dump_strict(2,_,Result,Result).dump_strict1744,48003 -dump_strict(2,_,Result,Result).dump_strict1744,48003 -dump_nz(_,H,I) -->dump_nz1752,48182 -dump_nz(_,H,I) -->dump_nz1752,48182 -dump_nz(_,H,I) -->dump_nz1752,48182 - -packages/clpqr/clpq/fourmotz_q.pl,8029 -fm_elim(Vs,Target,Pivots) :-fm_elim78,2308 -fm_elim(Vs,Target,Pivots) :-fm_elim78,2308 -fm_elim(Vs,Target,Pivots) :-fm_elim78,2308 -prefilter([],[]).prefilter87,2572 -prefilter([],[]).prefilter87,2572 -prefilter([V|Vs],Res) :-prefilter88,2590 -prefilter([V|Vs],Res) :-prefilter88,2590 -prefilter([V|Vs],Res) :-prefilter88,2590 -fm_elim_int([],_,Pivots) :- % donefm_elim_int103,2959 -fm_elim_int([],_,Pivots) :- % donefm_elim_int103,2959 -fm_elim_int([],_,Pivots) :- % donefm_elim_int103,2959 -fm_elim_int(Vs,Target,Pivots) :-fm_elim_int105,3011 -fm_elim_int(Vs,Target,Pivots) :-fm_elim_int105,3011 -fm_elim_int(Vs,Target,Pivots) :-fm_elim_int105,3011 -best(Vs,Best,Rest) :-best121,3393 -best(Vs,Best,Rest) :-best121,3393 -best(Vs,Best,Rest) :-best121,3393 -fm_cp_filter(Vs,Delta,N) :-fm_cp_filter133,3833 -fm_cp_filter(Vs,Delta,N) :-fm_cp_filter133,3833 -fm_cp_filter(Vs,Delta,N) :-fm_cp_filter133,3833 -mem([X|Xs],X,Xs).mem153,4404 -mem([X|Xs],X,Xs).mem153,4404 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4422 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4422 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4422 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4422 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4422 -select_nth(List,N,Nth,Others) :-select_nth160,4589 -select_nth(List,N,Nth,Others) :-select_nth160,4589 -select_nth(List,N,Nth,Others) :-select_nth160,4589 -select_nth([X|Xs],N,N,X,Xs) :- !.select_nth163,4657 -select_nth([X|Xs],N,N,X,Xs) :- !.select_nth163,4657 -select_nth([X|Xs],N,N,X,Xs) :- !.select_nth163,4657 -select_nth([Y|Ys],M,N,X,[Y|Xs]) :-select_nth164,4691 -select_nth([Y|Ys],M,N,X,[Y|Xs]) :-select_nth164,4691 -select_nth([Y|Ys],M,N,X,[Y|Xs]) :-select_nth164,4691 -elim_min(V,Occ,Target,Pivots,NewPivots) :-elim_min172,4857 -elim_min(V,Occ,Target,Pivots,NewPivots) :-elim_min172,4857 -elim_min(V,Occ,Target,Pivots,NewPivots) :-elim_min172,4857 -reverse_pivot([]).reverse_pivot185,5153 -reverse_pivot([]).reverse_pivot185,5153 -reverse_pivot([I:D|Ps]) :-reverse_pivot186,5172 -reverse_pivot([I:D|Ps]) :-reverse_pivot186,5172 -reverse_pivot([I:D|Ps]) :-reverse_pivot186,5172 -unkeep([]).unkeep201,5444 -unkeep([]).unkeep201,5444 -unkeep([_:D|Ps]) :-unkeep202,5456 -unkeep([_:D|Ps]) :-unkeep202,5456 -unkeep([_:D|Ps]) :-unkeep202,5456 -fm_detach( []).fm_detach212,5579 -fm_detach( []).fm_detach212,5579 -fm_detach([V:_|Vs]) :-fm_detach213,5595 -fm_detach([V:_|Vs]) :-fm_detach213,5595 -fm_detach([V:_|Vs]) :-fm_detach213,5595 -activate_crossproduct([]).activate_crossproduct222,5832 -activate_crossproduct([]).activate_crossproduct222,5832 -activate_crossproduct([lez(Strict,Lin)|News]) :-activate_crossproduct223,5859 -activate_crossproduct([lez(Strict,Lin)|News]) :-activate_crossproduct223,5859 -activate_crossproduct([lez(Strict,Lin)|News]) :-activate_crossproduct223,5859 -crossproduct([]) --> [].crossproduct237,6301 -crossproduct([]) --> [].crossproduct237,6301 -crossproduct([]) --> [].crossproduct237,6301 -crossproduct([A|As]) -->crossproduct238,6326 -crossproduct([A|As]) -->crossproduct238,6326 -crossproduct([A|As]) -->crossproduct238,6326 -crossproduct([],_) --> [].crossproduct254,6852 -crossproduct([],_) --> [].crossproduct254,6852 -crossproduct([],_) --> [].crossproduct254,6852 -crossproduct([B:Kb|Bs],A:Ka) -->crossproduct255,6879 -crossproduct([B:Kb|Bs],A:Ka) -->crossproduct255,6879 -crossproduct([B:Kb|Bs],A:Ka) -->crossproduct255,6879 -cross_lower(Ta,Tb,K,Lin,Strict) -->cross_lower297,8403 -cross_lower(Ta,Tb,K,Lin,Strict) -->cross_lower297,8403 -cross_lower(Ta,Tb,K,Lin,Strict) -->cross_lower297,8403 -cross_lower(_,_,_,_,_) --> [].cross_lower308,8645 -cross_lower(_,_,_,_,_) --> [].cross_lower308,8645 -cross_lower(_,_,_,_,_) --> [].cross_lower308,8645 -cross_upper(Ta,Tb,K,Lin,Strict) -->cross_upper316,8855 -cross_upper(Ta,Tb,K,Lin,Strict) -->cross_upper316,8855 -cross_upper(Ta,Tb,K,Lin,Strict) -->cross_upper316,8855 -cross_upper(_,_,_,_,_) --> [].cross_upper327,9097 -cross_upper(_,_,_,_,_) --> [].cross_upper327,9097 -cross_upper(_,_,_,_,_) --> [].cross_upper327,9097 -lower(t_l(L),L).lower336,9340 -lower(t_l(L),L).lower336,9340 -lower(t_lu(L,_),L).lower337,9357 -lower(t_lu(L,_),L).lower337,9357 -lower(t_L(L),L).lower338,9377 -lower(t_L(L),L).lower338,9377 -lower(t_Lu(L,_),L).lower339,9394 -lower(t_Lu(L,_),L).lower339,9394 -lower(t_lU(L,_),L).lower340,9414 -lower(t_lU(L,_),L).lower340,9414 -upper(t_u(U),U).upper347,9530 -upper(t_u(U),U).upper347,9530 -upper(t_lu(_,U),U).upper348,9547 -upper(t_lu(_,U),U).upper348,9547 -upper(t_U(U),U).upper349,9567 -upper(t_U(U),U).upper349,9567 -upper(t_Lu(_,U),U).upper350,9584 -upper(t_Lu(_,U),U).upper350,9584 -upper(t_lU(_,U),U).upper351,9604 -upper(t_lU(_,U),U).upper351,9604 -flip(t_l(X),t_u(X)).flip358,9754 -flip(t_l(X),t_u(X)).flip358,9754 -flip(t_u(X),t_l(X)).flip359,9775 -flip(t_u(X),t_l(X)).flip359,9775 -flip(t_lu(X,Y),t_lu(Y,X)).flip360,9796 -flip(t_lu(X,Y),t_lu(Y,X)).flip360,9796 -flip(t_L(X),t_u(X)).flip361,9823 -flip(t_L(X),t_u(X)).flip361,9823 -flip(t_U(X),t_l(X)).flip362,9844 -flip(t_U(X),t_l(X)).flip362,9844 -flip(t_lU(X,Y),t_lu(Y,X)).flip363,9865 -flip(t_lU(X,Y),t_lu(Y,X)).flip363,9865 -flip(t_Lu(X,Y),t_lu(Y,X)).flip364,9892 -flip(t_Lu(X,Y),t_lu(Y,X)).flip364,9892 -flip_strict(0,0).flip_strict370,10008 -flip_strict(0,0).flip_strict370,10008 -flip_strict(1,2).flip_strict371,10026 -flip_strict(1,2).flip_strict371,10026 -flip_strict(2,1).flip_strict372,10044 -flip_strict(2,1).flip_strict372,10044 -flip_strict(3,3).flip_strict373,10062 -flip_strict(3,3).flip_strict373,10062 -cp_card([],Ci,Ci).cp_card380,10198 -cp_card([],Ci,Ci).cp_card380,10198 -cp_card([A|As],Ci,Co) :-cp_card381,10217 -cp_card([A|As],Ci,Co) :-cp_card381,10217 -cp_card([A|As],Ci,Co) :-cp_card381,10217 -cp_card([],_,Ci,Ci).cp_card390,10413 -cp_card([],_,Ci,Ci).cp_card390,10413 -cp_card([B:Kb|Bs],A:Ka,Ci,Co) :-cp_card391,10434 -cp_card([B:Kb|Bs],A:Ka,Ci,Co) :-cp_card391,10434 -cp_card([B:Kb|Bs],A:Ka,Ci,Co) :-cp_card391,10434 -cp_card_lower(Ta,Tb,Si,So) :-cp_card_lower409,10878 -cp_card_lower(Ta,Tb,Si,So) :-cp_card_lower409,10878 -cp_card_lower(Ta,Tb,Si,So) :-cp_card_lower409,10878 -cp_card_lower(_,_,Si,Si).cp_card_lower414,10953 -cp_card_lower(_,_,Si,Si).cp_card_lower414,10953 -cp_card_upper(Ta,Tb,Si,So) :-cp_card_upper420,11082 -cp_card_upper(Ta,Tb,Si,So) :-cp_card_upper420,11082 -cp_card_upper(Ta,Tb,Si,So) :-cp_card_upper420,11082 -cp_card_upper(_,_,Si,Si).cp_card_upper425,11157 -cp_card_upper(_,_,Si,Si).cp_card_upper425,11157 -occurences(V,Occ) :-occurences435,11514 -occurences(V,Occ) :-occurences435,11514 -occurences(V,Occ) :-occurences435,11514 -occurences(De,_,[]) :- occurences448,11929 -occurences(De,_,[]) :- occurences448,11929 -occurences(De,_,[]) :- occurences448,11929 -occurences([D|De],OrdV,Occ) :-occurences451,11967 -occurences([D|De],OrdV,Occ) :-occurences451,11967 -occurences([D|De],OrdV,Occ) :-occurences451,11967 -occ_type_filter(t_l(_)).occ_type_filter466,12339 -occ_type_filter(t_l(_)).occ_type_filter466,12339 -occ_type_filter(t_u(_)).occ_type_filter467,12364 -occ_type_filter(t_u(_)).occ_type_filter467,12364 -occ_type_filter(t_lu(_,_)).occ_type_filter468,12389 -occ_type_filter(t_lu(_,_)).occ_type_filter468,12389 -occ_type_filter(t_L(_)).occ_type_filter469,12417 -occ_type_filter(t_L(_)).occ_type_filter469,12417 -occ_type_filter(t_U(_)).occ_type_filter470,12442 -occ_type_filter(t_U(_)).occ_type_filter470,12442 -occ_type_filter(t_lU(_,_)).occ_type_filter471,12467 -occ_type_filter(t_lU(_,_)).occ_type_filter471,12467 -occ_type_filter(t_Lu(_,_)).occ_type_filter472,12495 -occ_type_filter(t_Lu(_,_)).occ_type_filter472,12495 -occurs(V) :-occurs479,12646 -occurs(V) :-occurs479,12646 -occurs(V) :-occurs479,12646 -occurs(De,_) :- occurs491,12923 -occurs(De,_) :- occurs491,12923 -occurs(De,_) :- occurs491,12923 -occurs([D|De],OrdV) :-occurs495,12961 -occurs([D|De],OrdV) :-occurs495,12961 -occurs([D|De],OrdV) :-occurs495,12961 - -packages/clpqr/clpq/ineq_q.pl,17511 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq85,2584 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq85,2584 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq85,2584 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq85,2584 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq85,2584 -ineq([v(K,[X^1])|Tail],I,Lin,Strictness) :-ineq86,2638 -ineq([v(K,[X^1])|Tail],I,Lin,Strictness) :-ineq86,2638 -ineq([v(K,[X^1])|Tail],I,Lin,Strictness) :-ineq86,2638 -ineq_cases([],I,_,Strictness,X,K) :- % K*X + I < 0 or K*X + I =< 0ineq_cases89,2723 -ineq_cases([],I,_,Strictness,X,K) :- % K*X + I < 0 or K*X + I =< 0ineq_cases89,2723 -ineq_cases([],I,_,Strictness,X,K) :- % K*X + I < 0 or K*X + I =< 0ineq_cases89,2723 -ineq_cases([_|_],_,Lin,Strictness,_,_) :-ineq_cases91,2819 -ineq_cases([_|_],_,Lin,Strictness,_,_) :-ineq_cases91,2819 -ineq_cases([_|_],_,Lin,Strictness,_,_) :-ineq_cases91,2819 -ineq_ground(strict,I) :- I < 0.ineq_ground100,3055 -ineq_ground(strict,I) :- I < 0.ineq_ground100,3055 -ineq_ground(strict,I) :- I < 0.ineq_ground100,3055 -ineq_ground(nonstrict,I) :- I =< 0.ineq_ground101,3087 -ineq_ground(nonstrict,I) :- I =< 0.ineq_ground101,3087 -ineq_ground(nonstrict,I) :- I =< 0.ineq_ground101,3087 -ineq_one(strict,X,K,I) :-ineq_one107,3208 -ineq_one(strict,X,K,I) :-ineq_one107,3208 -ineq_one(strict,X,K,I) :-ineq_one107,3208 -ineq_one(nonstrict,X,K,I) :-ineq_one120,3586 -ineq_one(nonstrict,X,K,I) :-ineq_one120,3586 -ineq_one(nonstrict,X,K,I) :-ineq_one120,3586 -ineq_one_s_p_0(X) :-ineq_one_s_p_0140,4096 -ineq_one_s_p_0(X) :-ineq_one_s_p_0140,4096 -ineq_one_s_p_0(X) :-ineq_one_s_p_0140,4096 -ineq_one_s_p_0(X) :- % new variable, nothing depends on itineq_one_s_p_0149,4367 -ineq_one_s_p_0(X) :- % new variable, nothing depends on itineq_one_s_p_0149,4367 -ineq_one_s_p_0(X) :- % new variable, nothing depends on itineq_one_s_p_0149,4367 -ineq_one_s_n_0(X) :-ineq_one_s_n_0156,4556 -ineq_one_s_n_0(X) :-ineq_one_s_n_0156,4556 -ineq_one_s_n_0(X) :-ineq_one_s_n_0156,4556 -ineq_one_s_n_0(X) :-ineq_one_s_n_0165,4797 -ineq_one_s_n_0(X) :-ineq_one_s_n_0165,4797 -ineq_one_s_n_0(X) :-ineq_one_s_n_0165,4797 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i172,4952 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i172,4952 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i172,4952 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i181,5197 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i181,5197 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i181,5197 -ineq_one_s_n_i(X,I) :-ineq_one_s_n_i189,5371 -ineq_one_s_n_i(X,I) :-ineq_one_s_n_i189,5371 -ineq_one_s_n_i(X,I) :-ineq_one_s_n_i189,5371 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i198,5616 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i198,5616 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i198,5616 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i198,5616 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i198,5616 -ineq_one_old_s_p_0([],_,Ix) :- Ix < 0. % X = I: Ix < 0ineq_one_old_s_p_0204,5823 -ineq_one_old_s_p_0([],_,Ix) :- Ix < 0. % X = I: Ix < 0ineq_one_old_s_p_0204,5823 -ineq_one_old_s_p_0([],_,Ix) :- Ix < 0. % X = I: Ix < 0ineq_one_old_s_p_0204,5823 -ineq_one_old_s_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_s_p_0205,5878 -ineq_one_old_s_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_s_p_0205,5878 -ineq_one_old_s_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_s_p_0205,5878 -ineq_one_old_s_n_0([],_,Ix) :- Ix > 0. % X = I: Ix > 0ineq_one_old_s_n_0221,6376 -ineq_one_old_s_n_0([],_,Ix) :- Ix > 0. % X = I: Ix > 0ineq_one_old_s_n_0221,6376 -ineq_one_old_s_n_0([],_,Ix) :- Ix > 0. % X = I: Ix > 0ineq_one_old_s_n_0221,6376 -ineq_one_old_s_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_s_n_0222,6431 -ineq_one_old_s_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_s_n_0222,6431 -ineq_one_old_s_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_s_n_0222,6431 -ineq_one_old_s_p_i([],I,_,Ix) :- I + Ix < 0. % X = Iineq_one_old_s_p_i239,6899 -ineq_one_old_s_p_i([],I,_,Ix) :- I + Ix < 0. % X = Iineq_one_old_s_p_i239,6899 -ineq_one_old_s_p_i([],I,_,Ix) :- I + Ix < 0. % X = Iineq_one_old_s_p_i239,6899 -ineq_one_old_s_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_p_i240,6952 -ineq_one_old_s_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_p_i240,6952 -ineq_one_old_s_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_p_i240,6952 -ineq_one_old_s_n_i([],I,_,Ix) :- I - Ix < 0. % X = Iineq_one_old_s_n_i257,7425 -ineq_one_old_s_n_i([],I,_,Ix) :- I - Ix < 0. % X = Iineq_one_old_s_n_i257,7425 -ineq_one_old_s_n_i([],I,_,Ix) :- I - Ix < 0. % X = Iineq_one_old_s_n_i257,7425 -ineq_one_old_s_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_n_i258,7478 -ineq_one_old_s_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_n_i258,7478 -ineq_one_old_s_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_n_i258,7478 -ineq_one_n_p_0(X) :-ineq_one_n_p_0277,7960 -ineq_one_n_p_0(X) :-ineq_one_n_p_0277,7960 -ineq_one_n_p_0(X) :-ineq_one_n_p_0277,7960 -ineq_one_n_p_0(X) :- % new variable, nothing depends on itineq_one_n_p_0286,8231 -ineq_one_n_p_0(X) :- % new variable, nothing depends on itineq_one_n_p_0286,8231 -ineq_one_n_p_0(X) :- % new variable, nothing depends on itineq_one_n_p_0286,8231 -ineq_one_n_n_0(X) :-ineq_one_n_n_0293,8393 -ineq_one_n_n_0(X) :-ineq_one_n_n_0293,8393 -ineq_one_n_n_0(X) :-ineq_one_n_n_0293,8393 -ineq_one_n_n_0(X) :-ineq_one_n_n_0302,8634 -ineq_one_n_n_0(X) :-ineq_one_n_n_0302,8634 -ineq_one_n_n_0(X) :-ineq_one_n_n_0302,8634 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i309,8761 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i309,8761 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i309,8761 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i318,9006 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i318,9006 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i318,9006 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i326,9152 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i326,9152 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i326,9152 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i335,9397 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i335,9397 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i335,9397 -ineq_one_old_n_p_0([],_,Ix) :- Ix =< 0. % X =Iineq_one_old_n_p_0342,9577 -ineq_one_old_n_p_0([],_,Ix) :- Ix =< 0. % X =Iineq_one_old_n_p_0342,9577 -ineq_one_old_n_p_0([],_,Ix) :- Ix =< 0. % X =Iineq_one_old_n_p_0342,9577 -ineq_one_old_n_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_n_p_0343,9624 -ineq_one_old_n_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_n_p_0343,9624 -ineq_one_old_n_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_n_p_0343,9624 -ineq_one_old_n_n_0([],_,Ix) :- Ix >= 0. % X = Iineq_one_old_n_n_0359,10067 -ineq_one_old_n_n_0([],_,Ix) :- Ix >= 0. % X = Iineq_one_old_n_n_0359,10067 -ineq_one_old_n_n_0([],_,Ix) :- Ix >= 0. % X = Iineq_one_old_n_n_0359,10067 -ineq_one_old_n_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_n_n_0360,10115 -ineq_one_old_n_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_n_n_0360,10115 -ineq_one_old_n_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_n_n_0360,10115 -ineq_one_old_n_p_i([],I,_,Ix) :- I + Ix =< 0. % X = Iineq_one_old_n_p_i377,10590 -ineq_one_old_n_p_i([],I,_,Ix) :- I + Ix =< 0. % X = Iineq_one_old_n_p_i377,10590 -ineq_one_old_n_p_i([],I,_,Ix) :- I + Ix =< 0. % X = Iineq_one_old_n_p_i377,10590 -ineq_one_old_n_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_p_i378,10644 -ineq_one_old_n_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_p_i378,10644 -ineq_one_old_n_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_p_i378,10644 -ineq_one_old_n_n_i([],I,_,Ix) :- I - Ix =< 0. % X = Iineq_one_old_n_n_i395,11123 -ineq_one_old_n_n_i([],I,_,Ix) :- I - Ix =< 0. % X = Iineq_one_old_n_n_i395,11123 -ineq_one_old_n_n_i([],I,_,Ix) :- I - Ix =< 0. % X = Iineq_one_old_n_n_i395,11123 -ineq_one_old_n_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_n_i396,11177 -ineq_one_old_n_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_n_i396,11177 -ineq_one_old_n_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_n_i396,11177 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more415,11674 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more415,11674 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more415,11674 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more415,11674 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more415,11674 -ineq_more([l(X*K,_)|Tail],Id,Lind,Strictness) :-ineq_more416,11751 -ineq_more([l(X*K,_)|Tail],Id,Lind,Strictness) :-ineq_more416,11751 -ineq_more([l(X*K,_)|Tail],Id,Lind,Strictness) :-ineq_more416,11751 -ineq_more(strict,Lind) :-ineq_more431,12173 -ineq_more(strict,Lind) :-ineq_more431,12173 -ineq_more(strict,Lind) :-ineq_more431,12173 -ineq_more(nonstrict,Lind) :-ineq_more452,13076 -ineq_more(nonstrict,Lind) :-ineq_more452,13076 -ineq_more(nonstrict,Lind) :-ineq_more452,13076 -update_indep(strict,X,K,Bound) :-update_indep481,14161 -update_indep(strict,X,K,Bound) :-update_indep481,14161 -update_indep(strict,X,K,Bound) :-update_indep481,14161 -update_indep(nonstrict,X,K,Bound) :-update_indep490,14449 -update_indep(nonstrict,X,K,Bound) :-update_indep490,14449 -update_indep(nonstrict,X,K,Bound) :-update_indep490,14449 -udl(t_none,X,Lin,Bound,_Sold) :-udl536,15699 -udl(t_none,X,Lin,Bound,_Sold) :-udl536,15699 -udl(t_none,X,Lin,Bound,_Sold) :-udl536,15699 -udl(t_l(L),X,Lin,Bound,Sold) :-udl552,16158 -udl(t_l(L),X,Lin,Bound,Sold) :-udl552,16158 -udl(t_l(L),X,Lin,Bound,Sold) :-udl552,16158 -udl(t_u(U),X,Lin,Bound,_Sold) :-udl562,16383 -udl(t_u(U),X,Lin,Bound,_Sold) :-udl562,16383 -udl(t_u(U),X,Lin,Bound,_Sold) :-udl562,16383 -udl(t_lu(L,U),X,Lin,Bound,Sold) :-udl570,16679 -udl(t_lu(L,U),X,Lin,Bound,Sold) :-udl570,16679 -udl(t_lu(L,U),X,Lin,Bound,Sold) :-udl570,16679 -udls(t_none,X,Lin,Bound,_Sold) :-udls591,17177 -udls(t_none,X,Lin,Bound,_Sold) :-udls591,17177 -udls(t_none,X,Lin,Bound,_Sold) :-udls591,17177 -udls(t_l(L),X,Lin,Bound,Sold) :-udls609,17781 -udls(t_l(L),X,Lin,Bound,Sold) :-udls609,17781 -udls(t_l(L),X,Lin,Bound,Sold) :-udls609,17781 -udls(t_u(U),X,Lin,Bound,Sold) :-udls623,18156 -udls(t_u(U),X,Lin,Bound,Sold) :-udls623,18156 -udls(t_u(U),X,Lin,Bound,Sold) :-udls623,18156 -udls(t_lu(L,U),X,Lin,Bound,Sold) :-udls630,18389 -udls(t_lu(L,U),X,Lin,Bound,Sold) :-udls630,18389 -udls(t_lu(L,U),X,Lin,Bound,Sold) :-udls630,18389 -udu(t_none,X,Lin,Bound,_Sold) :-udu653,19097 -udu(t_none,X,Lin,Bound,_Sold) :-udu653,19097 -udu(t_none,X,Lin,Bound,_Sold) :-udu653,19097 -udu(t_u(U),X,Lin,Bound,Sold) :-udu671,19717 -udu(t_u(U),X,Lin,Bound,Sold) :-udu671,19717 -udu(t_u(U),X,Lin,Bound,Sold) :-udu671,19717 -udu(t_l(L),X,Lin,Bound,_Sold) :-udu680,19941 -udu(t_l(L),X,Lin,Bound,_Sold) :-udu680,19941 -udu(t_l(L),X,Lin,Bound,_Sold) :-udu680,19941 -udu(t_lu(L,U),X,Lin,Bound,Sold) :-udu688,20169 -udu(t_lu(L,U),X,Lin,Bound,Sold) :-udu688,20169 -udu(t_lu(L,U),X,Lin,Bound,Sold) :-udu688,20169 -udus(t_none,X,Lin,Bound,_Sold) :-udus709,20667 -udus(t_none,X,Lin,Bound,_Sold) :-udus709,20667 -udus(t_none,X,Lin,Bound,_Sold) :-udus709,20667 -udus(t_u(U),X,Lin,Bound,Sold) :-udus727,21272 -udus(t_u(U),X,Lin,Bound,Sold) :-udus727,21272 -udus(t_u(U),X,Lin,Bound,Sold) :-udus727,21272 -udus(t_l(L),X,Lin,Bound,Sold) :-udus742,21746 -udus(t_l(L),X,Lin,Bound,Sold) :-udus742,21746 -udus(t_l(L),X,Lin,Bound,Sold) :-udus742,21746 -udus(t_lu(L,U),X,Lin,Bound,Sold) :-udus749,21992 -udus(t_lu(L,U),X,Lin,Bound,Sold) :-udus749,21992 -udus(t_lu(L,U),X,Lin,Bound,Sold) :-udus749,21992 -uiu(t_none,X,_Lin,Bound,_) :- % X had no boundsuiu772,22697 -uiu(t_none,X,_Lin,Bound,_) :- % X had no boundsuiu772,22697 -uiu(t_none,X,_Lin,Bound,_) :- % X had no boundsuiu772,22697 -uiu(t_u(U),X,_Lin,Bound,Sold) :-uiu776,22830 -uiu(t_u(U),X,_Lin,Bound,Sold) :-uiu776,22830 -uiu(t_u(U),X,_Lin,Bound,Sold) :-uiu776,22830 -uiu(t_l(L),X,Lin,Bound,_Sold) :-uiu788,23265 -uiu(t_l(L),X,Lin,Bound,_Sold) :-uiu788,23265 -uiu(t_l(L),X,Lin,Bound,_Sold) :-uiu788,23265 -uiu(t_L(L),X,Lin,Bound,_Sold) :-uiu796,23538 -uiu(t_L(L),X,Lin,Bound,_Sold) :-uiu796,23538 -uiu(t_L(L),X,Lin,Bound,_Sold) :-uiu796,23538 -uiu(t_lu(L,U),X,Lin,Bound,Sold) :-uiu803,23701 -uiu(t_lu(L,U),X,Lin,Bound,Sold) :-uiu803,23701 -uiu(t_lu(L,U),X,Lin,Bound,Sold) :-uiu803,23701 -uiu(t_Lu(L,U),X,Lin,Bound,Sold) :-uiu816,23980 -uiu(t_Lu(L,U),X,Lin,Bound,Sold) :-uiu816,23980 -uiu(t_Lu(L,U),X,Lin,Bound,Sold) :-uiu816,23980 -uiu(t_U(U),X,_Lin,Bound,Sold) :-uiu829,24261 -uiu(t_U(U),X,_Lin,Bound,Sold) :-uiu829,24261 -uiu(t_U(U),X,_Lin,Bound,Sold) :-uiu829,24261 -uiu(t_lU(L,U),X,Lin,Bound,Sold) :-uiu852,24864 -uiu(t_lU(L,U),X,Lin,Bound,Sold) :-uiu852,24864 -uiu(t_lU(L,U),X,Lin,Bound,Sold) :-uiu852,24864 -uius(t_none,X,_Lin,Bound,_Sold) :-uius887,25819 -uius(t_none,X,_Lin,Bound,_Sold) :-uius887,25819 -uius(t_none,X,_Lin,Bound,_Sold) :-uius887,25819 -uius(t_u(U),X,_Lin,Bound,Sold) :-uius891,25939 -uius(t_u(U),X,_Lin,Bound,Sold) :-uius891,25939 -uius(t_u(U),X,_Lin,Bound,Sold) :-uius891,25939 -uius(t_l(L),X,_Lin,Bound,Sold) :-uius903,26234 -uius(t_l(L),X,_Lin,Bound,Sold) :-uius903,26234 -uius(t_l(L),X,_Lin,Bound,Sold) :-uius903,26234 -uius(t_L(L),X,_Lin,Bound,Sold) :-uius909,26395 -uius(t_L(L),X,_Lin,Bound,Sold) :-uius909,26395 -uius(t_L(L),X,_Lin,Bound,Sold) :-uius909,26395 -uius(t_lu(L,U),X,_Lin,Bound,Sold) :-uius915,26556 -uius(t_lu(L,U),X,_Lin,Bound,Sold) :-uius915,26556 -uius(t_lu(L,U),X,_Lin,Bound,Sold) :-uius915,26556 -uius(t_Lu(L,U),X,_Lin,Bound,Sold) :-uius928,26873 -uius(t_Lu(L,U),X,_Lin,Bound,Sold) :-uius928,26873 -uius(t_Lu(L,U),X,_Lin,Bound,Sold) :-uius928,26873 -uius(t_U(U),X,_Lin,Bound,Sold) :-uius941,27190 -uius(t_U(U),X,_Lin,Bound,Sold) :-uius941,27190 -uius(t_U(U),X,_Lin,Bound,Sold) :-uius941,27190 -uius(t_lU(L,U),X,_Lin,Bound,Sold) :-uius968,27899 -uius(t_lU(L,U),X,_Lin,Bound,Sold) :-uius968,27899 -uius(t_lU(L,U),X,_Lin,Bound,Sold) :-uius968,27899 -uil(t_none,X,_Lin,Bound,_Sold) :-uil1004,28841 -uil(t_none,X,_Lin,Bound,_Sold) :-uil1004,28841 -uil(t_none,X,_Lin,Bound,_Sold) :-uil1004,28841 -uil(t_l(L),X,_Lin,Bound,Sold) :-uil1008,28960 -uil(t_l(L),X,_Lin,Bound,Sold) :-uil1008,28960 -uil(t_l(L),X,_Lin,Bound,Sold) :-uil1008,28960 -uil(t_u(U),X,Lin,Bound,_Sold) :-uil1016,29149 -uil(t_u(U),X,Lin,Bound,_Sold) :-uil1016,29149 -uil(t_u(U),X,Lin,Bound,_Sold) :-uil1016,29149 -uil(t_U(U),X,Lin,Bound,_Sold) :-uil1023,29312 -uil(t_U(U),X,Lin,Bound,_Sold) :-uil1023,29312 -uil(t_U(U),X,Lin,Bound,_Sold) :-uil1023,29312 -uil(t_lu(L,U),X,Lin,Bound,Sold) :-uil1030,29475 -uil(t_lu(L,U),X,Lin,Bound,Sold) :-uil1030,29475 -uil(t_lu(L,U),X,Lin,Bound,Sold) :-uil1030,29475 -uil(t_lU(L,U),X,Lin,Bound,Sold) :-uil1043,29756 -uil(t_lU(L,U),X,Lin,Bound,Sold) :-uil1043,29756 -uil(t_lU(L,U),X,Lin,Bound,Sold) :-uil1043,29756 -uil(t_L(L),X,_Lin,Bound,Sold) :-uil1056,30037 -uil(t_L(L),X,_Lin,Bound,Sold) :-uil1056,30037 -uil(t_L(L),X,_Lin,Bound,Sold) :-uil1056,30037 -uil(t_Lu(L,U),X,Lin,Bound,Sold) :-uil1079,30640 -uil(t_Lu(L,U),X,Lin,Bound,Sold) :-uil1079,30640 -uil(t_Lu(L,U),X,Lin,Bound,Sold) :-uil1079,30640 -uils(t_none,X,_Lin,Bound,_Sold) :-uils1114,31589 -uils(t_none,X,_Lin,Bound,_Sold) :-uils1114,31589 -uils(t_none,X,_Lin,Bound,_Sold) :-uils1114,31589 -uils(t_l(L),X,_Lin,Bound,Sold) :-uils1118,31709 -uils(t_l(L),X,_Lin,Bound,Sold) :-uils1118,31709 -uils(t_l(L),X,_Lin,Bound,Sold) :-uils1118,31709 -uils(t_u(U),X,_Lin,Bound,Sold) :-uils1130,32004 -uils(t_u(U),X,_Lin,Bound,Sold) :-uils1130,32004 -uils(t_u(U),X,_Lin,Bound,Sold) :-uils1130,32004 -uils(t_U(U),X,_Lin,Bound,Sold) :-uils1136,32165 -uils(t_U(U),X,_Lin,Bound,Sold) :-uils1136,32165 -uils(t_U(U),X,_Lin,Bound,Sold) :-uils1136,32165 -uils(t_lu(L,U),X,_Lin,Bound,Sold) :-uils1142,32326 -uils(t_lu(L,U),X,_Lin,Bound,Sold) :-uils1142,32326 -uils(t_lu(L,U),X,_Lin,Bound,Sold) :-uils1142,32326 -uils(t_lU(L,U),X,_Lin,Bound,Sold) :-uils1155,32643 -uils(t_lU(L,U),X,_Lin,Bound,Sold) :-uils1155,32643 -uils(t_lU(L,U),X,_Lin,Bound,Sold) :-uils1155,32643 -uils(t_L(L),X,_Lin,Bound,Sold) :-uils1168,32960 -uils(t_L(L),X,_Lin,Bound,Sold) :-uils1168,32960 -uils(t_L(L),X,_Lin,Bound,Sold) :-uils1168,32960 -uils(t_Lu(L,U),X,_Lin,Bound,Sold) :-uils1195,33669 -uils(t_Lu(L,U),X,_Lin,Bound,Sold) :-uils1195,33669 -uils(t_Lu(L,U),X,_Lin,Bound,Sold) :-uils1195,33669 -reconsider_upper(X,[I,R|H],U) :-reconsider_upper1239,35055 -reconsider_upper(X,[I,R|H],U) :-reconsider_upper1239,35055 -reconsider_upper(X,[I,R|H],U) :-reconsider_upper1239,35055 -reconsider_upper( _, _, _).reconsider_upper1245,35228 -reconsider_upper( _, _, _).reconsider_upper1245,35228 -reconsider_lower(X,[I,R|H],L) :-reconsider_lower1256,35585 -reconsider_lower(X,[I,R|H],L) :-reconsider_lower1256,35585 -reconsider_lower(X,[I,R|H],L) :-reconsider_lower1256,35585 -reconsider_lower(_,_,_).reconsider_lower1262,35758 -reconsider_lower(_,_,_).reconsider_lower1262,35758 -solve_bound(Lin,Bound) :-solve_bound1273,35972 -solve_bound(Lin,Bound) :-solve_bound1273,35972 -solve_bound(Lin,Bound) :-solve_bound1273,35972 -solve_bound(Lin,Bound) :-solve_bound1277,36029 -solve_bound(Lin,Bound) :-solve_bound1277,36029 -solve_bound(Lin,Bound) :-solve_bound1277,36029 - -packages/clpqr/clpq/itf_q.pl,6898 -do_checks(Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks66,2081 -do_checks(Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks66,2081 -do_checks(Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks66,2081 -numbers_only(Y) :-numbers_only73,2242 -numbers_only(Y) :-numbers_only73,2242 -numbers_only(Y) :-numbers_only73,2242 -verify_nonzero(nonzero,Y) :-verify_nonzero85,2488 -verify_nonzero(nonzero,Y) :-verify_nonzero85,2488 -verify_nonzero(nonzero,Y) :-verify_nonzero85,2488 -verify_nonzero(n,_). % X is not nonzeroverify_nonzero93,2672 -verify_nonzero(n,_). % X is not nonzeroverify_nonzero93,2672 -verify_type(type(Type),strictness(Strict),Y) -->verify_type101,2949 -verify_type(type(Type),strictness(Strict),Y) -->verify_type101,2949 -verify_type(type(Type),strictness(Strict),Y) -->verify_type101,2949 -verify_type(n,n,_) --> [].verify_type103,3028 -verify_type(n,n,_) --> [].verify_type103,3028 -verify_type(n,n,_) --> [].verify_type103,3028 -verify_type2(Y,TypeX,StrictX) -->verify_type2105,3056 -verify_type2(Y,TypeX,StrictX) -->verify_type2105,3056 -verify_type2(Y,TypeX,StrictX) -->verify_type2105,3056 -verify_type2(Y,TypeX,StrictX) -->verify_type2109,3140 -verify_type2(Y,TypeX,StrictX) -->verify_type2109,3140 -verify_type2(Y,TypeX,StrictX) -->verify_type2109,3140 -verify_type_nonvar(t_none,_,_).verify_type_nonvar116,3336 -verify_type_nonvar(t_none,_,_).verify_type_nonvar116,3336 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar117,3368 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar117,3368 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar117,3368 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar117,3368 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar117,3368 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar118,3422 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar118,3422 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar118,3422 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar118,3422 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar118,3422 -verify_type_nonvar(t_lu(L,U),Value,S) :-verify_type_nonvar119,3476 -verify_type_nonvar(t_lu(L,U),Value,S) :-verify_type_nonvar119,3476 -verify_type_nonvar(t_lu(L,U),Value,S) :-verify_type_nonvar119,3476 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3551 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3551 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3551 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3551 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3551 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3605 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3605 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3605 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3605 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3605 -verify_type_nonvar(t_Lu(L,U),Value,S) :-verify_type_nonvar124,3659 -verify_type_nonvar(t_Lu(L,U),Value,S) :-verify_type_nonvar124,3659 -verify_type_nonvar(t_Lu(L,U),Value,S) :-verify_type_nonvar124,3659 -verify_type_nonvar(t_lU(L,U),Value,S) :-verify_type_nonvar127,3734 -verify_type_nonvar(t_lU(L,U),Value,S) :-verify_type_nonvar127,3734 -verify_type_nonvar(t_lU(L,U),Value,S) :-verify_type_nonvar127,3734 -ilb(S,L,V) :-ilb141,4097 -ilb(S,L,V) :-ilb141,4097 -ilb(S,L,V) :-ilb141,4097 -ilb(_,L,V) :- L < V. % strictilb145,4152 -ilb(_,L,V) :- L < V. % strictilb145,4152 -ilb(_,L,V) :- L < V. % strictilb145,4152 -iub(S,U,V) :-iub147,4183 -iub(S,U,V) :-iub147,4183 -iub(S,U,V) :-iub147,4183 -iub(_,U,V) :- V < U. % strictiub151,4238 -iub(_,U,V) :- V < U. % strictiub151,4238 -iub(_,U,V) :- V < U. % strictiub151,4238 -verify_type_var(t_none,_,_) --> [].verify_type_var163,4586 -verify_type_var(t_none,_,_) --> [].verify_type_var163,4586 -verify_type_var(t_none,_,_) --> [].verify_type_var163,4586 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var164,4622 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var164,4622 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var164,4622 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var164,4622 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var164,4622 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var165,4666 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var165,4666 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var165,4666 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var165,4666 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var165,4666 -verify_type_var(t_lu(L,U),Y,S) -->verify_type_var166,4710 -verify_type_var(t_lu(L,U),Y,S) -->verify_type_var166,4710 -verify_type_var(t_lu(L,U),Y,S) -->verify_type_var166,4710 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var169,4771 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var169,4771 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var169,4771 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var169,4771 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var169,4771 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var170,4815 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var170,4815 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var170,4815 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var170,4815 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var170,4815 -verify_type_var(t_Lu(L,U),Y,S) -->verify_type_var171,4859 -verify_type_var(t_Lu(L,U),Y,S) -->verify_type_var171,4859 -verify_type_var(t_Lu(L,U),Y,S) -->verify_type_var171,4859 -verify_type_var(t_lU(L,U),Y,S) -->verify_type_var174,4920 -verify_type_var(t_lU(L,U),Y,S) -->verify_type_var174,4920 -verify_type_var(t_lU(L,U),Y,S) -->verify_type_var174,4920 -llb(S,L,V) -->llb182,5173 -llb(S,L,V) -->llb182,5173 -llb(S,L,V) -->llb182,5173 -llb(_,L,V) --> [clpq:{L < V}].llb186,5227 -llb(_,L,V) --> [clpq:{L < V}].llb186,5227 -llb(_,L,V) --> [clpq:{L < V}].llb186,5227 -lub(S,U,V) -->lub188,5259 -lub(S,U,V) -->lub188,5259 -lub(S,U,V) -->lub188,5259 -lub(_,U,V) --> [clpq:{V < U}].lub192,5313 -lub(_,U,V) --> [clpq:{V < U}].lub192,5313 -lub(_,U,V) --> [clpq:{V < U}].lub192,5313 -verify_lin(order(OrdX),class(Class),lin(LinX),Y) :-verify_lin202,5668 -verify_lin(order(OrdX),class(Class),lin(LinX),Y) :-verify_lin202,5668 -verify_lin(order(OrdX),class(Class),lin(LinX),Y) :-verify_lin202,5668 -verify_lin(_,_,_,_)verify_lin222,6235 -verify_lin(_,_,_,_)verify_lin222,6235 - -packages/clpqr/clpq/nf_q.pl,29157 -goal_expansion(geler(X,Y),geler(clpq,X,Y)).goal_expansion78,2293 -goal_expansion(geler(X,Y),geler(clpq,X,Y)).goal_expansion78,2293 -entailed(C) :-entailed141,3521 -entailed(C) :-entailed141,3521 -entailed(C) :-entailed141,3521 -negate(Rel,_) :- negate150,3698 -negate(Rel,_) :- negate150,3698 -negate(Rel,_) :- negate150,3698 -negate((A,B),(Na;Nb)) :- negate154,3777 -negate((A,B),(Na;Nb)) :- negate154,3777 -negate((A,B),(Na;Nb)) :- negate154,3777 -negate((A;B),(Na,Nb)) :- negate158,3837 -negate((A;B),(Na,Nb)) :- negate158,3837 -negate((A;B),(Na,Nb)) :- negate158,3837 -negate(A=B) :- !.negate162,3897 -negate(A=B) :- !.negate162,3897 -negate(A=B) :- !.negate162,3897 -negate(A>B,A=B,A=B,A=B) :- !.negate164,3943 -negate(A=B) :- !.negate164,3943 -negate(A=B) :- !.negate164,3943 -negate(A>=B,A=B,A=B,Aexpnonlin_2599,13113 -nonlin_2(pow(A,B),A,B,exp(X,Y),X,Y). % pow->expnonlin_2599,13113 -nonlin_2(A^B,A,B,exp(X,Y),X,Y).nonlin_2600,13161 -nonlin_2(A^B,A,B,exp(X,Y),X,Y).nonlin_2600,13161 -nf_nonlin_1(Skel,An,S1,Norm) :-nf_nonlin_1602,13194 -nf_nonlin_1(Skel,An,S1,Norm) :-nf_nonlin_1602,13194 -nf_nonlin_1(Skel,An,S1,Norm) :-nf_nonlin_1602,13194 -nf_nonlin_2(Skel,A1n,A2n,S1,S2,Norm) :-nf_nonlin_2608,13343 -nf_nonlin_2(Skel,A1n,A2n,S1,S2,Norm) :-nf_nonlin_2608,13343 -nf_nonlin_2(Skel,A1n,A2n,S1,S2,Norm) :-nf_nonlin_2608,13343 -nl_eval(abs(X),R) :- R is abs(X).nl_eval623,13716 -nl_eval(abs(X),R) :- R is abs(X).nl_eval623,13716 -nl_eval(abs(X),R) :- R is abs(X).nl_eval623,13716 -nl_eval(abs(X),R) :- R is abs(X).nl_eval623,13716 -nl_eval(abs(X),R) :- R is abs(X).nl_eval623,13716 -nl_eval(sin(X),R) :- R is sin(X).nl_eval624,13750 -nl_eval(sin(X),R) :- R is sin(X).nl_eval624,13750 -nl_eval(sin(X),R) :- R is sin(X).nl_eval624,13750 -nl_eval(sin(X),R) :- R is sin(X).nl_eval624,13750 -nl_eval(sin(X),R) :- R is sin(X).nl_eval624,13750 -nl_eval(cos(X),R) :- R is cos(X).nl_eval625,13784 -nl_eval(cos(X),R) :- R is cos(X).nl_eval625,13784 -nl_eval(cos(X),R) :- R is cos(X).nl_eval625,13784 -nl_eval(cos(X),R) :- R is cos(X).nl_eval625,13784 -nl_eval(cos(X),R) :- R is cos(X).nl_eval625,13784 -nl_eval(tan(X),R) :- R is tan(X).nl_eval626,13818 -nl_eval(tan(X),R) :- R is tan(X).nl_eval626,13818 -nl_eval(tan(X),R) :- R is tan(X).nl_eval626,13818 -nl_eval(tan(X),R) :- R is tan(X).nl_eval626,13818 -nl_eval(tan(X),R) :- R is tan(X).nl_eval626,13818 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval629,13935 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval629,13935 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval629,13935 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval629,13935 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval629,13935 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval630,13973 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval630,13973 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval630,13973 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval630,13973 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval630,13973 -nl_eval(exp(X,Y),R) :- R is X**Y.nl_eval631,14011 -nl_eval(exp(X,Y),R) :- R is X**Y.nl_eval631,14011 -nl_eval(exp(X,Y),R) :- R is X**Y.nl_eval631,14011 -nf_constant([],Z) :- Z = 0.nf_constant637,14095 -nf_constant([],Z) :- Z = 0.nf_constant637,14095 -nf_constant([],Z) :- Z = 0.nf_constant637,14095 -nf_constant([v(K,[])],K).nf_constant638,14123 -nf_constant([v(K,[])],K).nf_constant638,14123 -split([],[],0).split648,14372 -split([],[],0).split648,14372 -split([First|T],H,I) :- split649,14388 -split([First|T],H,I) :- split649,14388 -split([First|T],H,I) :- split649,14388 -nf_add([],Bs,Bs).nf_add662,14807 -nf_add([],Bs,Bs).nf_add662,14807 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add663,14825 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add663,14825 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add663,14825 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add663,14825 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add663,14825 -nf_add([],A,As,Cs) :- Cs = [A|As].nf_add665,14870 -nf_add([],A,As,Cs) :- Cs = [A|As].nf_add665,14870 -nf_add([],A,As,Cs) :- Cs = [A|As].nf_add665,14870 -nf_add([B|Bs],A,As,Cs) :- nf_add666,14905 -nf_add([B|Bs],A,As,Cs) :- nf_add666,14905 -nf_add([B|Bs],A,As,Cs) :- nf_add666,14905 -nf_add_case(<,A,As,Cs,B,Bs,_,_,_) :-nf_add_case678,15289 -nf_add_case(<,A,As,Cs,B,Bs,_,_,_) :-nf_add_case678,15289 -nf_add_case(<,A,As,Cs,B,Bs,_,_,_) :-nf_add_case678,15289 -nf_add_case(>,A,As,Cs,B,Bs,_,_,_) :-nf_add_case681,15365 -nf_add_case(>,A,As,Cs,B,Bs,_,_,_) :-nf_add_case681,15365 -nf_add_case(>,A,As,Cs,B,Bs,_,_,_) :-nf_add_case681,15365 -nf_add_case(=,_,As,Cs,_,Bs,Ka,Kb,Pa) :-nf_add_case684,15441 -nf_add_case(=,_,As,Cs,_,Bs,Ka,Kb,Pa) :-nf_add_case684,15441 -nf_add_case(=,_,As,Cs,_,Bs,Ka,Kb,Pa) :-nf_add_case684,15441 -nf_mul(A,B,Res) :- nf_mul692,15591 -nf_mul(A,B,Res) :- nf_mul692,15591 -nf_mul(A,B,Res) :- nf_mul692,15591 -nf_mul_log(0,As,As,_,_,[]) :- !.nf_mul_log697,15692 -nf_mul_log(0,As,As,_,_,[]) :- !.nf_mul_log697,15692 -nf_mul_log(0,As,As,_,_,[]) :- !.nf_mul_log697,15692 -nf_mul_log(1,[A|As],As,Lb,B,R) :- nf_mul_log698,15725 -nf_mul_log(1,[A|As],As,Lb,B,R) :- nf_mul_log698,15725 -nf_mul_log(1,[A|As],As,Lb,B,R) :- nf_mul_log698,15725 -nf_mul_log(2,[A1,A2|As],As,Lb,B,R) :- nf_mul_log701,15797 -nf_mul_log(2,[A1,A2|As],As,Lb,B,R) :- nf_mul_log701,15797 -nf_mul_log(2,[A1,A2|As],As,Lb,B,R) :- nf_mul_log701,15797 -nf_mul_log(N,A0,A2,Lb,B,R) :- nf_mul_log706,15934 -nf_mul_log(N,A0,A2,Lb,B,R) :- nf_mul_log706,15934 -nf_mul_log(N,A0,A2,Lb,B,R) :- nf_mul_log706,15934 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2715,16148 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2715,16148 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2715,16148 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2715,16148 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2715,16148 -nf_add_2_case(<,Af,Bf,[Af,Bf],_,_,_).nf_add_2_case721,16300 -nf_add_2_case(<,Af,Bf,[Af,Bf],_,_,_).nf_add_2_case721,16300 -nf_add_2_case(>,Af,Bf,[Bf,Af],_,_,_).nf_add_2_case722,16338 -nf_add_2_case(>,Af,Bf,[Bf,Af],_,_,_).nf_add_2_case722,16338 -nf_add_2_case(=,_, _,Res,Ka,Kb,Pa) :-nf_add_2_case723,16376 -nf_add_2_case(=,_, _,Res,Ka,Kb,Pa) :-nf_add_2_case723,16376 -nf_add_2_case(=,_, _,Res,Ka,Kb,Pa) :-nf_add_2_case723,16376 -nf_mul_k([],_,[]).nf_mul_k733,16625 -nf_mul_k([],_,[]).nf_mul_k733,16625 -nf_mul_k([v(I,P)|Vs],K,[v(Ki,P)|Vks]) :-nf_mul_k734,16644 -nf_mul_k([v(I,P)|Vs],K,[v(Ki,P)|Vks]) :-nf_mul_k734,16644 -nf_mul_k([v(I,P)|Vs],K,[v(Ki,P)|Vks]) :-nf_mul_k734,16644 -nf_mul_factor(v(K,[]),Sum,Res) :-nf_mul_factor742,16879 -nf_mul_factor(v(K,[]),Sum,Res) :-nf_mul_factor742,16879 -nf_mul_factor(v(K,[]),Sum,Res) :-nf_mul_factor742,16879 -nf_mul_factor(F,Sum,Res) :-nf_mul_factor745,16939 -nf_mul_factor(F,Sum,Res) :-nf_mul_factor745,16939 -nf_mul_factor(F,Sum,Res) :-nf_mul_factor745,16939 -nf_mul_factor_log(0,As,As,_,[]) :- !.nf_mul_factor_log755,17236 -nf_mul_factor_log(0,As,As,_,[]) :- !.nf_mul_factor_log755,17236 -nf_mul_factor_log(0,As,As,_,[]) :- !.nf_mul_factor_log755,17236 -nf_mul_factor_log(1,[A|As],As,F,[R]) :- nf_mul_factor_log756,17274 -nf_mul_factor_log(1,[A|As],As,F,[R]) :- nf_mul_factor_log756,17274 -nf_mul_factor_log(1,[A|As],As,F,[R]) :- nf_mul_factor_log756,17274 -nf_mul_factor_log(2,[A,B|As],As,F,Res) :- nf_mul_factor_log759,17333 -nf_mul_factor_log(2,[A,B|As],As,F,Res) :- nf_mul_factor_log759,17333 -nf_mul_factor_log(2,[A,B|As],As,F,Res) :- nf_mul_factor_log759,17333 -nf_mul_factor_log(N,A0,A2,F,R) :- nf_mul_factor_log764,17432 -nf_mul_factor_log(N,A0,A2,F,R) :- nf_mul_factor_log764,17432 -nf_mul_factor_log(N,A0,A2,F,R) :- nf_mul_factor_log764,17432 -mult(v(Ka,La),v(Kb,Lb),v(Kc,Lc)) :- mult775,17667 -mult(v(Ka,La),v(Kb,Lb),v(Kc,Lc)) :- mult775,17667 -mult(v(Ka,La),v(Kb,Lb),v(Kc,Lc)) :- mult775,17667 -pmerge([],Bs,Bs).pmerge783,17854 -pmerge([],Bs,Bs).pmerge783,17854 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge784,17872 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge784,17872 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge784,17872 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge784,17872 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge784,17872 -pmerge([],A,As,Res) :- Res = [A|As].pmerge786,17917 -pmerge([],A,As,Res) :- Res = [A|As].pmerge786,17917 -pmerge([],A,As,Res) :- Res = [A|As].pmerge786,17917 -pmerge([B|Bs],A,As,Res) :- pmerge787,17954 -pmerge([B|Bs],A,As,Res) :- pmerge787,17954 -pmerge([B|Bs],A,As,Res) :- pmerge787,17954 -pmerge_case(<,A,As,Res,B,Bs,_,_,_) :-pmerge_case800,18297 -pmerge_case(<,A,As,Res,B,Bs,_,_,_) :-pmerge_case800,18297 -pmerge_case(<,A,As,Res,B,Bs,_,_,_) :-pmerge_case800,18297 -pmerge_case(>,A,As,Res,B,Bs,_,_,_) :-pmerge_case803,18375 -pmerge_case(>,A,As,Res,B,Bs,_,_,_) :-pmerge_case803,18375 -pmerge_case(>,A,As,Res,B,Bs,_,_,_) :-pmerge_case803,18375 -pmerge_case(=,_,As,Res,_,Bs,Ka,Kb,Xa) :-pmerge_case806,18453 -pmerge_case(=,_,As,Res,_,Bs,Ka,Kb,Xa) :-pmerge_case806,18453 -pmerge_case(=,_,As,Res,_,Bs,Ka,Kb,Xa) :-pmerge_case806,18453 -nf_div([],_,_) :-nf_div819,18747 -nf_div([],_,_) :-nf_div819,18747 -nf_div([],_,_) :-nf_div819,18747 -nf_div([v(K,P)],Sum,Res) :- nf_div823,18839 -nf_div([v(K,P)],Sum,Res) :- nf_div823,18839 -nf_div([v(K,P)],Sum,Res) :- nf_div823,18839 -nf_div(D,A,[v(1,[(A/D)^1])]).nf_div828,18943 -nf_div(D,A,[v(1,[(A/D)^1])]).nf_div828,18943 -zero_division :- fail. % raise_exception(_) ?zero_division833,19039 -mult_exp([],_,[]).mult_exp839,19238 -mult_exp([],_,[]).mult_exp839,19238 -mult_exp([X^P|Xs],K,[X^I|Tail]) :- mult_exp840,19257 -mult_exp([X^P|Xs],K,[X^I|Tail]) :- mult_exp840,19257 -mult_exp([X^P|Xs],K,[X^I|Tail]) :- mult_exp840,19257 -nf_power(N,Sum,Norm) :- nf_power849,19495 -nf_power(N,Sum,Norm) :- nf_power849,19495 -nf_power(N,Sum,Norm) :- nf_power849,19495 -nf_power_pos(1,Sum,Norm) :- nf_power_pos868,19888 -nf_power_pos(1,Sum,Norm) :- nf_power_pos868,19888 -nf_power_pos(1,Sum,Norm) :- nf_power_pos868,19888 -nf_power_pos(N,Sum,Norm) :- nf_power_pos871,19934 -nf_power_pos(N,Sum,Norm) :- nf_power_pos871,19934 -nf_power_pos(N,Sum,Norm) :- nf_power_pos871,19934 -binom(Sum,1,Power) :- binom879,20054 -binom(Sum,1,Power) :- binom879,20054 -binom(Sum,1,Power) :- binom879,20054 -binom([],_,[]).binom882,20095 -binom([],_,[]).binom882,20095 -binom([A|Bs],N,Power) :- binom883,20111 -binom([A|Bs],N,Power) :- binom883,20111 -binom([A|Bs],N,Power) :- binom883,20111 -combine_powers([],[],_,_,_,Pi,Pi).combine_powers893,20340 -combine_powers([],[],_,_,_,Pi,Pi).combine_powers893,20340 -combine_powers([A|As],[B|Bs],L,R,C,Pi,Po) :- combine_powers894,20375 -combine_powers([A|As],[B|Bs],L,R,C,Pi,Po) :- combine_powers894,20375 -combine_powers([A|As],[B|Bs],L,R,C,Pi,Po) :- combine_powers894,20375 -nf_power_factor(v(K,P),N,v(Kn,Pn)) :- nf_power_factor903,20561 -nf_power_factor(v(K,P),N,v(Kn,Pn)) :- nf_power_factor903,20561 -nf_power_factor(v(K,P),N,v(Kn,Pn)) :- nf_power_factor903,20561 -factor_powers(0,_,Prev,[[Prev]]) :- !.factor_powers907,20633 -factor_powers(0,_,Prev,[[Prev]]) :- !.factor_powers907,20633 -factor_powers(0,_,Prev,[[Prev]]) :- !.factor_powers907,20633 -factor_powers(N,F,Prev,[[Prev]|Ps]) :- factor_powers908,20672 -factor_powers(N,F,Prev,[[Prev]|Ps]) :- factor_powers908,20672 -factor_powers(N,F,Prev,[[Prev]|Ps]) :- factor_powers908,20672 -sum_powers(0,_,Prev,[Prev|Lt],Lt) :- !.sum_powers912,20775 -sum_powers(0,_,Prev,[Prev|Lt],Lt) :- !.sum_powers912,20775 -sum_powers(0,_,Prev,[Prev|Lt],Lt) :- !.sum_powers912,20775 -sum_powers(N,S,Prev,L0,Lt) :- sum_powers913,20815 -sum_powers(N,S,Prev,L0,Lt) :- sum_powers913,20815 -sum_powers(N,S,Prev,L0,Lt) :- sum_powers913,20815 -repair(Sum,Norm) :- repair919,21000 -repair(Sum,Norm) :- repair919,21000 -repair(Sum,Norm) :- repair919,21000 -repair_log(0,As,As,[]) :- !.repair_log922,21074 -repair_log(0,As,As,[]) :- !.repair_log922,21074 -repair_log(0,As,As,[]) :- !.repair_log922,21074 -repair_log(1,[v(Ka,Pa)|As],As,R) :- repair_log923,21103 -repair_log(1,[v(Ka,Pa)|As],As,R) :- repair_log923,21103 -repair_log(1,[v(Ka,Pa)|As],As,R) :- repair_log923,21103 -repair_log(2,[v(Ka,Pa),v(Kb,Pb)|As],As,R) :- repair_log926,21167 -repair_log(2,[v(Ka,Pa),v(Kb,Pb)|As],As,R) :- repair_log926,21167 -repair_log(2,[v(Ka,Pa),v(Kb,Pb)|As],As,R) :- repair_log926,21167 -repair_log(N,A0,A2,R) :-repair_log931,21283 -repair_log(N,A0,A2,R) :-repair_log931,21283 -repair_log(N,A0,A2,R) :-repair_log931,21283 -repair_term(K,P,Norm) :-repair_term938,21400 -repair_term(K,P,Norm) :-repair_term938,21400 -repair_term(K,P,Norm) :-repair_term938,21400 -repair_p_log(0,Ps,Ps,[],L0,L0) :- !.repair_p_log943,21518 -repair_p_log(0,Ps,Ps,[],L0,L0) :- !.repair_p_log943,21518 -repair_p_log(0,Ps,Ps,[],L0,L0) :- !.repair_p_log943,21518 -repair_p_log(1,[X^P|Ps],Ps,R,L0,L1) :- repair_p_log944,21555 -repair_p_log(1,[X^P|Ps],Ps,R,L0,L1) :- repair_p_log944,21555 -repair_p_log(1,[X^P|Ps],Ps,R,L0,L1) :- repair_p_log944,21555 -repair_p_log(2,[X^Px,Y^Py|Ps],Ps,R,L0,L2) :- repair_p_log947,21623 -repair_p_log(2,[X^Px,Y^Py|Ps],Ps,R,L0,L2) :- repair_p_log947,21623 -repair_p_log(2,[X^Px,Y^Py|Ps],Ps,R,L0,L2) :- repair_p_log947,21623 -repair_p_log(N,P0,P2,R,L0,L2) :-repair_p_log952,21743 -repair_p_log(N,P0,P2,R,L0,L2) :-repair_p_log952,21743 -repair_p_log(N,P0,P2,R,L0,L2) :-repair_p_log952,21743 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p959,21884 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p959,21884 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p959,21884 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p959,21884 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p959,21884 -repair_p(Term,P,[],L0,L1) :- repair_p960,21930 -repair_p(Term,P,[],L0,L1) :- repair_p960,21930 -repair_p(Term,P,[],L0,L1) :- repair_p960,21930 -repair_p_one(Term,TermN) :- repair_p_one970,22197 -repair_p_one(Term,TermN) :- repair_p_one970,22197 -repair_p_one(Term,TermN) :- repair_p_one970,22197 -repair_p_one(A1/A2,TermN) :-repair_p_one973,22291 -repair_p_one(A1/A2,TermN) :-repair_p_one973,22291 -repair_p_one(A1/A2,TermN) :-repair_p_one973,22291 -repair_p_one(Term,TermN) :-repair_p_one978,22382 -repair_p_one(Term,TermN) :-repair_p_one978,22382 -repair_p_one(Term,TermN) :-repair_p_one978,22382 -repair_p_one(Term,TermN) :-repair_p_one983,22492 -repair_p_one(Term,TermN) :-repair_p_one983,22492 -repair_p_one(Term,TermN) :-repair_p_one983,22492 -repair_p_one(Term,TermN) :-repair_p_one989,22636 -repair_p_one(Term,TermN) :-repair_p_one989,22636 -repair_p_one(Term,TermN) :-repair_p_one989,22636 -nf_length([],Li,Li).nf_length992,22682 -nf_length([],Li,Li).nf_length992,22682 -nf_length([_|R],Li,Lo) :-nf_length993,22703 -nf_length([_|R],Li,Lo) :-nf_length993,22703 -nf_length([_|R],Li,Lo) :-nf_length993,22703 -nf2term([],0).nf2term1002,22941 -nf2term([],0).nf2term1002,22941 -nf2term([F|Fs],T) :-nf2term1004,22999 -nf2term([F|Fs],T) :-nf2term1004,22999 -nf2term([F|Fs],T) :-nf2term1004,22999 -yfx([],T0,T0).yfx1008,23081 -yfx([],T0,T0).yfx1008,23081 -yfx([F|Fs],T0,TN) :-yfx1009,23096 -yfx([F|Fs],T0,TN) :-yfx1009,23096 -yfx([F|Fs],T0,TN) :-yfx1009,23096 -f02t(v(K,P),T) :-f02t1018,23293 -f02t(v(K,P),T) :-f02t1018,23293 -f02t(v(K,P),T) :-f02t1018,23293 -fn2t(v(K,P),Term,Op) :-fn2t1035,23594 -fn2t(v(K,P),Term,Op) :-fn2t1035,23594 -fn2t(v(K,P),Term,Op) :-fn2t1035,23594 -p2term([X^P|Xs],Term) :-p2term1052,23866 -p2term([X^P|Xs],Term) :-p2term1052,23866 -p2term([X^P|Xs],Term) :-p2term1052,23866 -exp2term(1,X,X) :- !.exp2term1064,24059 -exp2term(1,X,X) :- !.exp2term1064,24059 -exp2term(1,X,X) :- !.exp2term1064,24059 -exp2term(-1,X,1/X) :- !. exp2term1065,24081 -exp2term(-1,X,1/X) :- !. exp2term1065,24081 -exp2term(-1,X,1/X) :- !. exp2term1065,24081 -exp2term(P,X,Term) :-exp2term1066,24107 -exp2term(P,X,Term) :-exp2term1066,24107 -exp2term(P,X,Term) :-exp2term1066,24107 -pe2term(X,Term) :- pe2term1070,24163 -pe2term(X,Term) :- pe2term1070,24163 -pe2term(X,Term) :- pe2term1070,24163 -pe2term(X,Term) :-pe2term1073,24203 -pe2term(X,Term) :-pe2term1073,24203 -pe2term(X,Term) :-pe2term1073,24203 -pe2term_args([],[]).pe2term_args1079,24303 -pe2term_args([],[]).pe2term_args1079,24303 -pe2term_args([A|As],[T|Ts]) :-pe2term_args1080,24324 -pe2term_args([A|As],[T|Ts]) :-pe2term_args1080,24324 -pe2term_args([A|As],[T|Ts]) :-pe2term_args1080,24324 -transg(resubmit_eq(Nf)) -->transg1091,24597 -transg(resubmit_eq(Nf)) -->transg1091,24597 -transg(resubmit_eq(Nf)) -->transg1091,24597 -transg(resubmit_lt(Nf)) -->transg1097,24692 -transg(resubmit_lt(Nf)) -->transg1097,24692 -transg(resubmit_lt(Nf)) -->transg1097,24692 -transg(resubmit_le(Nf)) -->transg1103,24787 -transg(resubmit_le(Nf)) -->transg1103,24787 -transg(resubmit_le(Nf)) -->transg1103,24787 -transg(resubmit_ne(Nf)) -->transg1109,24883 -transg(resubmit_ne(Nf)) -->transg1109,24883 -transg(resubmit_ne(Nf)) -->transg1109,24883 -transg(wait_linear_retry(Nf,Res,Goal)) -->transg1115,24980 -transg(wait_linear_retry(Nf,Res,Goal)) -->transg1115,24980 -transg(wait_linear_retry(Nf,Res,Goal)) -->transg1115,24980 - -packages/clpqr/clpq/store_q.pl,7247 -normalize_scalar(S,[S,0]).normalize_scalar62,2154 -normalize_scalar(S,[S,0]).normalize_scalar62,2154 -renormalize([I,R|Hom],Lin) :-renormalize72,2539 -renormalize([I,R|Hom],Lin) :-renormalize72,2539 -renormalize([I,R|Hom],Lin) :-renormalize72,2539 -renormalize_log(1,[Term|Xs],Xs,Lin) :-renormalize_log82,2811 -renormalize_log(1,[Term|Xs],Xs,Lin) :-renormalize_log82,2811 -renormalize_log(1,[Term|Xs],Xs,Lin) :-renormalize_log82,2811 -renormalize_log(2,[A,B|Xs],Xs,Lin) :-renormalize_log86,2906 -renormalize_log(2,[A,B|Xs],Xs,Lin) :-renormalize_log86,2906 -renormalize_log(2,[A,B|Xs],Xs,Lin) :-renormalize_log86,2906 -renormalize_log(N,L0,L2,Lin) :-renormalize_log93,3073 -renormalize_log(N,L0,L2,Lin) :-renormalize_log93,3073 -renormalize_log(N,L0,L2,Lin) :-renormalize_log93,3073 -renormalize_log_one(X,Term,Res) :-renormalize_log_one104,3327 -renormalize_log_one(X,Term,Res) :-renormalize_log_one104,3327 -renormalize_log_one(X,Term,Res) :-renormalize_log_one104,3327 -renormalize_log_one(X,Term,Res) :-renormalize_log_one110,3489 -renormalize_log_one(X,Term,Res) :-renormalize_log_one110,3489 -renormalize_log_one(X,Term,Res) :-renormalize_log_one110,3489 -add_linear_ff(LinA,Ka,LinB,Kb,LinC) :-add_linear_ff123,3882 -add_linear_ff(LinA,Ka,LinB,Kb,LinC) :-add_linear_ff123,3882 -add_linear_ff(LinA,Ka,LinB,Kb,LinC) :-add_linear_ff123,3882 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh136,4236 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh136,4236 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh136,4236 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh136,4236 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh136,4236 -add_linear_ffh([l(X*Kx,OrdX)|Xs],Ka,Ys,Kb,Zs) :-add_linear_ffh137,4289 -add_linear_ffh([l(X*Kx,OrdX)|Xs],Ka,Ys,Kb,Zs) :-add_linear_ffh137,4289 -add_linear_ffh([l(X*Kx,OrdX)|Xs],Ka,Ys,Kb,Zs) :-add_linear_ffh137,4289 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh145,4602 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh145,4602 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh145,4602 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh145,4602 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh145,4602 -add_linear_ffh([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka,Kb) :-add_linear_ffh146,4680 -add_linear_ffh([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka,Kb) :-add_linear_ffh146,4680 -add_linear_ffh([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka,Kb) :-add_linear_ffh146,4680 -add_linear_f1(LinA,Ka,LinB,LinC) :-add_linear_f1169,5260 -add_linear_f1(LinA,Ka,LinB,LinC) :-add_linear_f1169,5260 -add_linear_f1(LinA,Ka,LinB,LinC) :-add_linear_f1169,5260 -add_linear_f1h([],_,Ys,Ys).add_linear_f1h181,5501 -add_linear_f1h([],_,Ys,Ys).add_linear_f1h181,5501 -add_linear_f1h([l(X*Kx,OrdX)|Xs],Ka,Ys,Zs) :-add_linear_f1h182,5529 -add_linear_f1h([l(X*Kx,OrdX)|Xs],Ka,Ys,Zs) :-add_linear_f1h182,5529 -add_linear_f1h([l(X*Kx,OrdX)|Xs],Ka,Ys,Zs) :-add_linear_f1h182,5529 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h189,5706 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h189,5706 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h189,5706 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h189,5706 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h189,5706 -add_linear_f1h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka) :-add_linear_f1h190,5782 -add_linear_f1h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka) :-add_linear_f1h190,5782 -add_linear_f1h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka) :-add_linear_f1h190,5782 -add_linear_11(LinA,LinB,LinC) :-add_linear_11212,6335 -add_linear_11(LinA,LinB,LinC) :-add_linear_11212,6335 -add_linear_11(LinA,LinB,LinC) :-add_linear_11212,6335 -add_linear_11h([],Ys,Ys).add_linear_11h224,6572 -add_linear_11h([],Ys,Ys).add_linear_11h224,6572 -add_linear_11h([l(X*Kx,OrdX)|Xs],Ys,Zs) :-add_linear_11h225,6598 -add_linear_11h([l(X*Kx,OrdX)|Xs],Ys,Zs) :-add_linear_11h225,6598 -add_linear_11h([l(X*Kx,OrdX)|Xs],Ys,Zs) :-add_linear_11h225,6598 -add_linear_11h([],X,Kx,OrdX,Xs,[l(X*Kx,OrdX)|Xs]).add_linear_11h232,6777 -add_linear_11h([],X,Kx,OrdX,Xs,[l(X*Kx,OrdX)|Xs]).add_linear_11h232,6777 -add_linear_11h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs) :-add_linear_11h233,6828 -add_linear_11h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs) :-add_linear_11h233,6828 -add_linear_11h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs) :-add_linear_11h233,6828 -mult_linear_factor(Lin,K,Mult) :-mult_linear_factor255,7380 -mult_linear_factor(Lin,K,Mult) :-mult_linear_factor255,7380 -mult_linear_factor(Lin,K,Mult) :-mult_linear_factor255,7380 -mult_linear_factor(Lin,K,Res) :-mult_linear_factor259,7441 -mult_linear_factor(Lin,K,Res) :-mult_linear_factor259,7441 -mult_linear_factor(Lin,K,Res) :-mult_linear_factor259,7441 -mult_hom([],_,[]).mult_hom271,7673 -mult_hom([],_,[]).mult_hom271,7673 -mult_hom([l(A*Fa,OrdA)|As],F,[l(A*Fan,OrdA)|Afs]) :-mult_hom272,7692 -mult_hom([l(A*Fa,OrdA)|As],F,[l(A*Fan,OrdA)|Afs]) :-mult_hom272,7692 -mult_hom([l(A*Fa,OrdA)|As],F,[l(A*Fan,OrdA)|Afs]) :-mult_hom272,7692 -nf_substitute(OrdV,LinV,LinX,LinX1) :-nf_substitute282,7963 -nf_substitute(OrdV,LinV,LinX,LinX1) :-nf_substitute282,7963 -nf_substitute(OrdV,LinV,LinX,LinX1) :-nf_substitute282,7963 -delete_factor(OrdV,Lin,Res,Coeff) :-delete_factor291,8242 -delete_factor(OrdV,Lin,Res,Coeff) :-delete_factor291,8242 -delete_factor(OrdV,Lin,Res,Coeff) :-delete_factor291,8242 -delete_factor_hom(VOrd,[Car|Cdr],RCdr,RKoeff) :-delete_factor_hom301,8497 -delete_factor_hom(VOrd,[Car|Cdr],RCdr,RKoeff) :-delete_factor_hom301,8497 -delete_factor_hom(VOrd,[Car|Cdr],RCdr,RKoeff) :-delete_factor_hom301,8497 -nf_coeff_of([_,_|Hom],VOrd,Coeff) :-nf_coeff_of317,8824 -nf_coeff_of([_,_|Hom],VOrd,Coeff) :-nf_coeff_of317,8824 -nf_coeff_of([_,_|Hom],VOrd,Coeff) :-nf_coeff_of317,8824 -nf_coeff_hom([l(_*K,OVar)|Vs],OVid,Coeff) :-nf_coeff_hom325,9025 -nf_coeff_hom([l(_*K,OVar)|Vs],OVid,Coeff) :-nf_coeff_hom325,9025 -nf_coeff_hom([l(_*K,OVar)|Vs],OVid,Coeff) :-nf_coeff_hom325,9025 -nf_rhs_x(Lin,OrdX,Rhs,K) :-nf_rhs_x337,9277 -nf_rhs_x(Lin,OrdX,Rhs,K) :-nf_rhs_x337,9277 -nf_rhs_x(Lin,OrdX,Rhs,K) :-nf_rhs_x337,9277 -isolate(OrdN,Lin,Lin1) :-isolate347,9602 -isolate(OrdN,Lin,Lin1) :-isolate347,9602 -isolate(OrdN,Lin,Lin1) :-isolate347,9602 -indep(Lin,OrdX) :-indep356,9782 -indep(Lin,OrdX) :-indep356,9782 -indep(Lin,OrdX) :-indep356,9782 -nf2sum([],I,I).nf2sum367,10028 -nf2sum([],I,I).nf2sum367,10028 -nf2sum([X|Xs],I,Sum) :-nf2sum368,10044 -nf2sum([X|Xs],I,Sum) :-nf2sum368,10044 -nf2sum([X|Xs],I,Sum) :-nf2sum368,10044 -hom2sum([],Term,Term).hom2sum387,10472 -hom2sum([],Term,Term).hom2sum387,10472 -hom2sum([l(Var*K,_)|Cs],Sofar,Term) :-hom2sum388,10495 -hom2sum([l(Var*K,_)|Cs],Sofar,Term) :-hom2sum388,10495 -hom2sum([l(Var*K,_)|Cs],Sofar,Term) :-hom2sum388,10495 - -packages/clpqr/clpq.pl,1207 -user:portray_message(warning,import(_,_,clpq,private)).portray_message65,2137 -prolog:message(query(YesNo,Bindings)) --> !,message101,2824 -prolog:message(query(YesNo,Bindings)) --> !,message101,2824 -dump_toplevel_bindings(Bindings,Constraints) :-dump_toplevel_bindings107,3023 -dump_toplevel_bindings(Bindings,Constraints) :-dump_toplevel_bindings107,3023 -dump_toplevel_bindings(Bindings,Constraints) :-dump_toplevel_bindings107,3023 -dump_vars_names([],_,[],[]).dump_vars_names111,3145 -dump_vars_names([],_,[],[]).dump_vars_names111,3145 -dump_vars_names([Name=Term|Rest],Seen,Vars,Names) :-dump_vars_names112,3174 -dump_vars_names([Name=Term|Rest],Seen,Vars,Names) :-dump_vars_names112,3174 -dump_vars_names([Name=Term|Rest],Seen,Vars,Names) :-dump_vars_names112,3174 -dump_format([],[]).dump_format127,3530 -dump_format([],[]).dump_format127,3530 -dump_format([X|Xs],['{~w}'-[X],nl|Rest]) :-dump_format128,3550 -dump_format([X|Xs],['{~w}'-[X],nl|Rest]) :-dump_format128,3550 -dump_format([X|Xs],['{~w}'-[X],nl|Rest]) :-dump_format128,3550 -memberchk_eq(X,[Y|Ys]) :-memberchk_eq131,3618 -memberchk_eq(X,[Y|Ys]) :-memberchk_eq131,3618 -memberchk_eq(X,[Y|Ys]) :-memberchk_eq131,3618 - -packages/clpqr/clpqr/class.pl,3085 -attr_unify_hook(class(CLP,La,Lat,ABasis,PrioA),Y) :-attr_unify_hook71,2405 -attr_unify_hook(class(CLP,La,Lat,ABasis,PrioA),Y) :-attr_unify_hook71,2405 -attr_unify_hook(class(CLP,La,Lat,ABasis,PrioA),Y) :-attr_unify_hook71,2405 -attr_unify_hook(_,_).attr_unify_hook79,2644 -attr_unify_hook(_,_).attr_unify_hook79,2644 -class_new(Class,CLP,All,AllT,Basis) :-class_new81,2667 -class_new(Class,CLP,All,AllT,Basis) :-class_new81,2667 -class_new(Class,CLP,All,AllT,Basis) :-class_new81,2667 -class_get_prio(Class,Priority) :- class_get_prio85,2770 -class_get_prio(Class,Priority) :- class_get_prio85,2770 -class_get_prio(Class,Priority) :- class_get_prio85,2770 -class_get_clp(Class,CLP) :-class_get_clp88,2854 -class_get_clp(Class,CLP) :-class_get_clp88,2854 -class_get_clp(Class,CLP) :-class_get_clp88,2854 -class_put_prio(Class,Priority) :- class_put_prio91,2926 -class_put_prio(Class,Priority) :- class_put_prio91,2926 -class_put_prio(Class,Priority) :- class_put_prio91,2926 -class_drop(Class,X) :-class_drop95,3073 -class_drop(Class,X) :-class_drop95,3073 -class_drop(Class,X) :-class_drop95,3073 -class_allvars(Class,All) :- get_attr(Class,class,class(_,All,_,_,_)).class_allvars101,3300 -class_allvars(Class,All) :- get_attr(Class,class,class(_,All,_,_,_)).class_allvars101,3300 -class_allvars(Class,All) :- get_attr(Class,class,class(_,All,_,_,_)).class_allvars101,3300 -class_allvars(Class,All) :- get_attr(Class,class,class(_,All,_,_,_)).class_allvars101,3300 -class_allvars(Class,All) :- get_attr(Class,class,class(_,All,_,_,_)).class_allvars101,3300 -class_basis(Class,Basis) :- get_attr(Class,class,class(_,_,_,Basis,_)).class_basis107,3437 -class_basis(Class,Basis) :- get_attr(Class,class,class(_,_,_,Basis,_)).class_basis107,3437 -class_basis(Class,Basis) :- get_attr(Class,class,class(_,_,_,Basis,_)).class_basis107,3437 -class_basis(Class,Basis) :- get_attr(Class,class,class(_,_,_,Basis,_)).class_basis107,3437 -class_basis(Class,Basis) :- get_attr(Class,class,class(_,_,_,Basis,_)).class_basis107,3437 -class_basis_add(Class,X,NewBasis) :-class_basis_add113,3606 -class_basis_add(Class,X,NewBasis) :-class_basis_add113,3606 -class_basis_add(Class,X,NewBasis) :-class_basis_add113,3606 -class_basis_drop(Class,X) :-class_basis_drop122,3881 -class_basis_drop(Class,X) :-class_basis_drop122,3881 -class_basis_drop(Class,X) :-class_basis_drop122,3881 -class_basis_drop(_,_).class_basis_drop128,4106 -class_basis_drop(_,_).class_basis_drop128,4106 -class_basis_pivot(Class,Enter,Leave) :-class_basis_pivot134,4259 -class_basis_pivot(Class,Enter,Leave) :-class_basis_pivot134,4259 -class_basis_pivot(Class,Enter,Leave) :-class_basis_pivot134,4259 -delete_first(L,_,Res) :-delete_first145,4635 -delete_first(L,_,Res) :-delete_first145,4635 -delete_first(L,_,Res) :-delete_first145,4635 -delete_first([],_,[]).delete_first149,4683 -delete_first([],_,[]).delete_first149,4683 -delete_first([Y|Ys],X,Res) :-delete_first150,4706 -delete_first([Y|Ys],X,Res) :-delete_first150,4706 -delete_first([Y|Ys],X,Res) :-delete_first150,4706 - -packages/clpqr/clpqr/dump.pl,5442 -dump([],[],[]) :- !.dump83,2592 -dump([],[],[]) :- !.dump83,2592 -dump([],[],[]) :- !.dump83,2592 -dump(Target,NewVars,Constraints) :-dump84,2613 -dump(Target,NewVars,Constraints) :-dump84,2613 -dump(Target,NewVars,Constraints) :-dump84,2613 -projecting_assert(QClause) :-projecting_assert107,3460 -projecting_assert(QClause) :-projecting_assert107,3460 -projecting_assert(QClause) :-projecting_assert107,3460 -projecting_assert(Clause) :- % not our businessprojecting_assert121,3863 -projecting_assert(Clause) :- % not our businessprojecting_assert121,3863 -projecting_assert(Clause) :- % not our businessprojecting_assert121,3863 -copy_term_clpq(Term,Copy,Constraints) :-copy_term_clpq124,3929 -copy_term_clpq(Term,Copy,Constraints) :-copy_term_clpq124,3929 -copy_term_clpq(Term,Copy,Constraints) :-copy_term_clpq124,3929 -l2c([X|Xs],Conj) :-l2c143,4676 -l2c([X|Xs],Conj) :-l2c143,4676 -l2c([X|Xs],Conj) :-l2c143,4676 -proper_varlist(X) :-proper_varlist155,4902 -proper_varlist(X) :-proper_varlist155,4902 -proper_varlist(X) :-proper_varlist155,4902 -proper_varlist([]).proper_varlist159,4943 -proper_varlist([]).proper_varlist159,4943 -proper_varlist([X|Xs]) :-proper_varlist160,4963 -proper_varlist([X|Xs]) :-proper_varlist160,4963 -proper_varlist([X|Xs]) :-proper_varlist160,4963 -related_linear_vars(Vs,All) :-related_linear_vars169,5139 -related_linear_vars(Vs,All) :-related_linear_vars169,5139 -related_linear_vars(Vs,All) :-related_linear_vars169,5139 -related_linear_sys([],S0,L0) :- assoc_to_list(S0,L0).related_linear_sys182,5533 -related_linear_sys([],S0,L0) :- assoc_to_list(S0,L0).related_linear_sys182,5533 -related_linear_sys([],S0,L0) :- assoc_to_list(S0,L0).related_linear_sys182,5533 -related_linear_sys([],S0,L0) :- assoc_to_list(S0,L0).related_linear_sys182,5533 -related_linear_sys([],S0,L0) :- assoc_to_list(S0,L0).related_linear_sys182,5533 -related_linear_sys([V|Vs],S0,S2) :-related_linear_sys183,5587 -related_linear_sys([V|Vs],S0,S2) :-related_linear_sys183,5587 -related_linear_sys([V|Vs],S0,S2) :-related_linear_sys183,5587 -related_linear_vars([]) --> [].related_linear_vars197,5971 -related_linear_vars([]) --> [].related_linear_vars197,5971 -related_linear_vars([]) --> [].related_linear_vars197,5971 -related_linear_vars([S-_|Ss]) -->related_linear_vars198,6003 -related_linear_vars([S-_|Ss]) -->related_linear_vars198,6003 -related_linear_vars([S-_|Ss]) -->related_linear_vars198,6003 -cpvars(Xs) --> {var(Xs)}, !.cpvars210,6227 -cpvars(Xs) --> {var(Xs)}, !.cpvars210,6227 -cpvars(Xs) --> {var(Xs)}, !.cpvars210,6227 -cpvars([X|Xs]) -->cpvars211,6256 -cpvars([X|Xs]) -->cpvars211,6256 -cpvars([X|Xs]) -->cpvars211,6256 -nonlin_crux(All,Gss) :-nonlin_crux224,6511 -nonlin_crux(All,Gss) :-nonlin_crux224,6511 -nonlin_crux(All,Gss) :-nonlin_crux224,6511 -nonlin_strip([],[]).nonlin_strip233,6795 -nonlin_strip([],[]).nonlin_strip233,6795 -nonlin_strip([_:What|Gs],Res) :-nonlin_strip234,6816 -nonlin_strip([_:What|Gs],Res) :-nonlin_strip234,6816 -nonlin_strip([_:What|Gs],Res) :-nonlin_strip234,6816 -all_attribute_goals([]) --> [].all_attribute_goals241,6934 -all_attribute_goals([]) --> [].all_attribute_goals241,6934 -all_attribute_goals([]) --> [].all_attribute_goals241,6934 -all_attribute_goals([V|Vs]) -->all_attribute_goals242,6966 -all_attribute_goals([V|Vs]) -->all_attribute_goals242,6966 -all_attribute_goals([V|Vs]) -->all_attribute_goals242,6966 -mapping([],[],D0,D0).mapping253,7261 -mapping([],[],D0,D0).mapping253,7261 -mapping([T|Ts],[N|Ns],D0,D2) :-mapping254,7283 -mapping([T|Ts],[N|Ns],D0,D2) :-mapping254,7283 -mapping([T|Ts],[N|Ns],D0,D2) :-mapping254,7283 -copy(Term,Copy,D0,D1) :-copy266,7706 -copy(Term,Copy,D0,D1) :-copy266,7706 -copy(Term,Copy,D0,D1) :-copy266,7706 -copy(Term,Copy,D0,D1) :-copy273,7837 -copy(Term,Copy,D0,D1) :-copy273,7837 -copy(Term,Copy,D0,D1) :-copy273,7837 -copy(0,_,_,D0,D0) :- !.copy286,8246 -copy(0,_,_,D0,D0) :- !.copy286,8246 -copy(0,_,_,D0,D0) :- !.copy286,8246 -copy(1,T,C,D0,D1) :- !,copy287,8270 -copy(1,T,C,D0,D1) :- !,copy287,8270 -copy(1,T,C,D0,D1) :- !,copy287,8270 -copy(2,T,C,D0,D2) :- !,copy291,8346 -copy(2,T,C,D0,D2) :- !,copy291,8346 -copy(2,T,C,D0,D2) :- !,copy291,8346 -copy(N,T,C,D0,D2) :-copy298,8474 -copy(N,T,C,D0,D2) :-copy298,8474 -copy(N,T,C,D0,D2) :-copy298,8474 -itf:attribute_goals(V) -->attribute_goals311,8771 -itf:attribute_goals(V) -->attribute_goals311,8771 -class:attribute_goals(_) --> [].attribute_goals321,8956 -class:attribute_goals(_) --> [].attribute_goals321,8956 -geler:attribute_goals(V) --> itf:attribute_goals(V).attribute_goals323,8990 -geler:attribute_goals(V) --> itf:attribute_goals(V).attribute_goals323,8990 -geler:attribute_goals(V) --> itf:attribute_goals(V).attribute_goals323,8990 -del_itf([]).del_itf325,9044 -del_itf([]).del_itf325,9044 -del_itf([H|T]) :-del_itf326,9057 -del_itf([H|T]) :-del_itf326,9057 -del_itf([H|T]) :-del_itf326,9057 -list_to_conj([], true) :- !.list_to_conj331,9109 -list_to_conj([], true) :- !.list_to_conj331,9109 -list_to_conj([], true) :- !.list_to_conj331,9109 -list_to_conj([X], X) :- !.list_to_conj332,9138 -list_to_conj([X], X) :- !.list_to_conj332,9138 -list_to_conj([X], X) :- !.list_to_conj332,9138 -list_to_conj([H|T0], (H,T)) :-list_to_conj333,9165 -list_to_conj([H|T0], (H,T)) :-list_to_conj333,9165 -list_to_conj([H|T0], (H,T)) :-list_to_conj333,9165 - -packages/clpqr/clpqr/geler.pl,2348 -l2conj([X|Xs],Conj) :-l2conj52,2001 -l2conj([X|Xs],Conj) :-l2conj52,2001 -l2conj([X|Xs],Conj) :-l2conj52,2001 -nonexhausted(run(Mutex,G)) -->nonexhausted65,2263 -nonexhausted(run(Mutex,G)) -->nonexhausted65,2263 -nonexhausted(run(Mutex,G)) -->nonexhausted65,2263 -nonexhausted((A,B)) -->nonexhausted70,2335 -nonexhausted((A,B)) -->nonexhausted70,2335 -nonexhausted((A,B)) -->nonexhausted70,2335 -attr_unify_hook(g(CLP,goals(Gx),_),Y) :-attr_unify_hook74,2396 -attr_unify_hook(g(CLP,goals(Gx),_),Y) :-attr_unify_hook74,2396 -attr_unify_hook(g(CLP,goals(Gx),_),Y) :-attr_unify_hook74,2396 -attr_unify_hook(_,_). % no goals in Xattr_unify_hook102,3185 -attr_unify_hook(_,_). % no goals in Xattr_unify_hook102,3185 -project_nonlin(_,Cvas,Reachable) :-project_nonlin107,3253 -project_nonlin(_,Cvas,Reachable) :-project_nonlin107,3253 -project_nonlin(_,Cvas,Reachable) :-project_nonlin107,3253 -collect_nonlin([]) --> [].collect_nonlin114,3393 -collect_nonlin([]) --> [].collect_nonlin114,3393 -collect_nonlin([]) --> [].collect_nonlin114,3393 -collect_nonlin([X|Xs]) -->collect_nonlin115,3420 -collect_nonlin([X|Xs]) -->collect_nonlin115,3420 -collect_nonlin([X|Xs]) -->collect_nonlin115,3420 -trans((A,B)) -->trans130,3925 -trans((A,B)) -->trans130,3925 -trans((A,B)) -->trans130,3925 -trans(run(Mutex,Gs)) -->trans133,3964 -trans(run(Mutex,Gs)) -->trans133,3964 -trans(run(Mutex,Gs)) -->trans133,3964 -transg((A,B)) -->transg140,4061 -transg((A,B)) -->transg140,4061 -transg((A,B)) -->transg140,4061 -transg(M:G) -->transg144,4107 -transg(M:G) -->transg144,4107 -transg(M:G) -->transg144,4107 -transg(G) --> [G].transg147,4141 -transg(G) --> [G].transg147,4141 -transg(G) --> [G].transg147,4141 -run(Mutex,_) :- nonvar(Mutex).run156,4388 -run(Mutex,_) :- nonvar(Mutex).run156,4388 -run(Mutex,_) :- nonvar(Mutex).run156,4388 -run(Mutex,_) :- nonvar(Mutex).run156,4388 -run(Mutex,_) :- nonvar(Mutex).run156,4388 -run(Mutex,G) :-run157,4419 -run(Mutex,G) :-run157,4419 -run(Mutex,G) :-run157,4419 -geler(CLP,Vars,Goal) :-geler168,4694 -geler(CLP,Vars,Goal) :-geler168,4694 -geler(CLP,Vars,Goal) :-geler168,4694 -attach([],_,_).attach178,5007 -attach([],_,_).attach178,5007 -attach([V|Vs],CLP,Goal) :-attach179,5023 -attach([V|Vs],CLP,Goal) :-attach179,5023 -attach([V|Vs],CLP,Goal) :-attach179,5023 - -packages/clpqr/clpqr/itf.pl,2787 -clp_type(Var,Type) :-clp_type52,1963 -clp_type(Var,Type) :-clp_type52,1963 -clp_type(Var,Type) :-clp_type52,1963 -dump_linear(V) -->dump_linear59,2088 -dump_linear(V) -->dump_linear59,2088 -dump_linear(V) -->dump_linear59,2088 -dump_linear(_) --> [].dump_linear83,2496 -dump_linear(_) --> [].dump_linear83,2496 -dump_linear(_) --> [].dump_linear83,2496 -dump_v(clpq,Type,V,I,H) --> bv_q:dump_var(Type,V,I,H).dump_v85,2520 -dump_v(clpq,Type,V,I,H) --> bv_q:dump_var(Type,V,I,H).dump_v85,2520 -dump_v(clpq,Type,V,I,H) --> bv_q:dump_var(Type,V,I,H).dump_v85,2520 -dump_v(clpq,Type,V,I,H) --> bv_q:dump_var(Type,V,I,H).dump_v85,2520 -dump_v(clpq,Type,V,I,H) --> bv_q:dump_var(Type,V,I,H).dump_v85,2520 -dump_v(clpr,Type,V,I,H) --> bv_r:dump_var(Type,V,I,H).dump_v86,2575 -dump_v(clpr,Type,V,I,H) --> bv_r:dump_var(Type,V,I,H).dump_v86,2575 -dump_v(clpr,Type,V,I,H) --> bv_r:dump_var(Type,V,I,H).dump_v86,2575 -dump_v(clpr,Type,V,I,H) --> bv_r:dump_var(Type,V,I,H).dump_v86,2575 -dump_v(clpr,Type,V,I,H) --> bv_r:dump_var(Type,V,I,H).dump_v86,2575 -dump_nonzero(V) -->dump_nonzero88,2631 -dump_nonzero(V) -->dump_nonzero88,2631 -dump_nonzero(V) -->dump_nonzero88,2631 -dump_nonzero(_) --> [].dump_nonzero98,2804 -dump_nonzero(_) --> [].dump_nonzero98,2804 -dump_nonzero(_) --> [].dump_nonzero98,2804 -dump_nz(clpq,V,H,I) --> bv_q:dump_nz(V,H,I).dump_nz100,2829 -dump_nz(clpq,V,H,I) --> bv_q:dump_nz(V,H,I).dump_nz100,2829 -dump_nz(clpq,V,H,I) --> bv_q:dump_nz(V,H,I).dump_nz100,2829 -dump_nz(clpq,V,H,I) --> bv_q:dump_nz(V,H,I).dump_nz100,2829 -dump_nz(clpq,V,H,I) --> bv_q:dump_nz(V,H,I).dump_nz100,2829 -dump_nz(clpr,V,H,I) --> bv_r:dump_nz(V,H,I).dump_nz101,2874 -dump_nz(clpr,V,H,I) --> bv_r:dump_nz(V,H,I).dump_nz101,2874 -dump_nz(clpr,V,H,I) --> bv_r:dump_nz(V,H,I).dump_nz101,2874 -dump_nz(clpr,V,H,I) --> bv_r:dump_nz(V,H,I).dump_nz101,2874 -dump_nz(clpr,V,H,I) --> bv_r:dump_nz(V,H,I).dump_nz101,2874 -attr_unify_hook(t(CLP,n,n,n,n,n,n,n,_,_,_),Y) :-attr_unify_hook103,2920 -attr_unify_hook(t(CLP,n,n,n,n,n,n,n,_,_,_),Y) :-attr_unify_hook103,2920 -attr_unify_hook(t(CLP,n,n,n,n,n,n,n,_,_,_),Y) :-attr_unify_hook103,2920 -attr_unify_hook(t(CLP,Ty,St,Li,Or,Cl,_,No,_,_,_),Y) :-attr_unify_hook111,3139 -attr_unify_hook(t(CLP,Ty,St,Li,Or,Cl,_,No,_,_,_),Y) :-attr_unify_hook111,3139 -attr_unify_hook(t(CLP,Ty,St,Li,Or,Cl,_,No,_,_,_),Y) :-attr_unify_hook111,3139 -do_checks(clpq,Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks121,3426 -do_checks(clpq,Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks121,3426 -do_checks(clpq,Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks121,3426 -do_checks(clpr,Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks123,3516 -do_checks(clpr,Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks123,3516 -do_checks(clpr,Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks123,3516 - -packages/clpqr/clpqr/ordering.pl,3161 -ordering(X) :-ordering69,2149 -ordering(X) :-ordering69,2149 -ordering(X) :-ordering69,2149 -ordering(A>B) :-ordering73,2184 -ordering(A>B) :-ordering73,2184 -ordering(A>B) :-ordering73,2184 -ordering(A [].gen_edges173,4349 -gen_edges([]) --> [].gen_edges173,4349 -gen_edges([]) --> [].gen_edges173,4349 -gen_edges([X|Xs]) -->gen_edges174,4371 -gen_edges([X|Xs]) -->gen_edges174,4371 -gen_edges([X|Xs]) -->gen_edges174,4371 -gen_edges([],_) --> [].gen_edges178,4428 -gen_edges([],_) --> [].gen_edges178,4428 -gen_edges([],_) --> [].gen_edges178,4428 -gen_edges([Y|Ys],X) -->gen_edges179,4452 -gen_edges([Y|Ys],X) -->gen_edges179,4452 -gen_edges([Y|Ys],X) -->gen_edges179,4452 -group([],[]).group187,4567 -group([],[]).group187,4567 -group([K-Kl|Ks],Res) :-group188,4581 -group([K-Kl|Ks],Res) :-group188,4581 -group([K-Kl|Ks],Res) :-group188,4581 -group([],K,Kl,[K-Kl]).group191,4627 -group([],K,Kl,[K-Kl]).group191,4627 -group([L-Ll|Ls],K,Kl,Res) :-group192,4650 -group([L-Ll|Ls],K,Kl,Res) :-group192,4650 -group([L-Ll|Ls],K,Kl,Res) :-group192,4650 - -packages/clpqr/clpqr/project.pl,6945 -project_attributes(TargetVars,Cvas) :-project_attributes76,2281 -project_attributes(TargetVars,Cvas) :-project_attributes76,2281 -project_attributes(TargetVars,Cvas) :-project_attributes76,2281 -fm_elim(clpq,Avs,Tvs,Pivots) :- fourmotz_q:fm_elim(Avs,Tvs,Pivots).fm_elim95,2865 -fm_elim(clpq,Avs,Tvs,Pivots) :- fourmotz_q:fm_elim(Avs,Tvs,Pivots).fm_elim95,2865 -fm_elim(clpq,Avs,Tvs,Pivots) :- fourmotz_q:fm_elim(Avs,Tvs,Pivots).fm_elim95,2865 -fm_elim(clpq,Avs,Tvs,Pivots) :- fourmotz_q:fm_elim(Avs,Tvs,Pivots).fm_elim95,2865 -fm_elim(clpq,Avs,Tvs,Pivots) :- fourmotz_q:fm_elim(Avs,Tvs,Pivots).fm_elim95,2865 -fm_elim(clpr,Avs,Tvs,Pivots) :- fourmotz_r:fm_elim(Avs,Tvs,Pivots).fm_elim96,2933 -fm_elim(clpr,Avs,Tvs,Pivots) :- fourmotz_r:fm_elim(Avs,Tvs,Pivots).fm_elim96,2933 -fm_elim(clpr,Avs,Tvs,Pivots) :- fourmotz_r:fm_elim(Avs,Tvs,Pivots).fm_elim96,2933 -fm_elim(clpr,Avs,Tvs,Pivots) :- fourmotz_r:fm_elim(Avs,Tvs,Pivots).fm_elim96,2933 -fm_elim(clpr,Avs,Tvs,Pivots) :- fourmotz_r:fm_elim(Avs,Tvs,Pivots).fm_elim96,2933 -get_clp([],_).get_clp98,3002 -get_clp([],_).get_clp98,3002 -get_clp([H|T],CLP) :-get_clp99,3017 -get_clp([H|T],CLP) :-get_clp99,3017 -get_clp([H|T],CLP) :-get_clp99,3017 -mark_target([]).mark_target110,3190 -mark_target([]).mark_target110,3190 -mark_target([V|Vs]) :-mark_target111,3207 -mark_target([V|Vs]) :-mark_target111,3207 -mark_target([V|Vs]) :-mark_target111,3207 -mark_keep([]).mark_keep123,3397 -mark_keep([]).mark_keep123,3397 -mark_keep([V|Vs]) :-mark_keep124,3412 -mark_keep([V|Vs]) :-mark_keep124,3412 -mark_keep([V|Vs]) :-mark_keep124,3412 -make_target_indep(Ts,Ps) :- make_target_indep(Ts,[],Ps).make_target_indep135,3688 -make_target_indep(Ts,Ps) :- make_target_indep(Ts,[],Ps).make_target_indep135,3688 -make_target_indep(Ts,Ps) :- make_target_indep(Ts,[],Ps).make_target_indep135,3688 -make_target_indep(Ts,Ps) :- make_target_indep(Ts,[],Ps).make_target_indep135,3688 -make_target_indep(Ts,Ps) :- make_target_indep(Ts,[],Ps).make_target_indep135,3688 -make_target_indep([],Ps,Ps).make_target_indep143,4065 -make_target_indep([],Ps,Ps).make_target_indep143,4065 -make_target_indep([T|Ts],Ps0,Pst) :-make_target_indep144,4094 -make_target_indep([T|Ts],Ps0,Pst) :-make_target_indep144,4094 -make_target_indep([T|Ts],Ps0,Pst) :-make_target_indep144,4094 -nontarget([l(V*_,_)|Vs],Nt) :-nontarget167,4721 -nontarget([l(V*_,_)|Vs],Nt) :-nontarget167,4721 -nontarget([l(V*_,_)|Vs],Nt) :-nontarget167,4721 -drop_dep(Vs) :- drop_dep179,4923 -drop_dep(Vs) :- drop_dep179,4923 -drop_dep(Vs) :- drop_dep179,4923 -drop_dep([]).drop_dep182,4954 -drop_dep([]).drop_dep182,4954 -drop_dep([V|Vs]) :-drop_dep183,4968 -drop_dep([V|Vs]) :-drop_dep183,4968 -drop_dep([V|Vs]) :-drop_dep183,4968 -drop_dep_one(V) :-drop_dep_one193,5276 -drop_dep_one(V) :-drop_dep_one193,5276 -drop_dep_one(V) :-drop_dep_one193,5276 -drop_dep_one(_).drop_dep_one203,5499 -drop_dep_one(_).drop_dep_one203,5499 -indep(clpq,Lin,OrdV) :- store_q:indep(Lin,OrdV).indep205,5517 -indep(clpq,Lin,OrdV) :- store_q:indep(Lin,OrdV).indep205,5517 -indep(clpq,Lin,OrdV) :- store_q:indep(Lin,OrdV).indep205,5517 -indep(clpq,Lin,OrdV) :- store_q:indep(Lin,OrdV).indep205,5517 -indep(clpq,Lin,OrdV) :- store_q:indep(Lin,OrdV).indep205,5517 -indep(clpr,Lin,OrdV) :- store_r:indep(Lin,OrdV).indep206,5566 -indep(clpr,Lin,OrdV) :- store_r:indep(Lin,OrdV).indep206,5566 -indep(clpr,Lin,OrdV) :- store_r:indep(Lin,OrdV).indep206,5566 -indep(clpr,Lin,OrdV) :- store_r:indep(Lin,OrdV).indep206,5566 -indep(clpr,Lin,OrdV) :- store_r:indep(Lin,OrdV).indep206,5566 -pivot(clpq,T,Class,Ord,Type,IndAct) :- bv_q:pivot(T,Class,Ord,Type,IndAct).pivot208,5616 -pivot(clpq,T,Class,Ord,Type,IndAct) :- bv_q:pivot(T,Class,Ord,Type,IndAct).pivot208,5616 -pivot(clpq,T,Class,Ord,Type,IndAct) :- bv_q:pivot(T,Class,Ord,Type,IndAct).pivot208,5616 -pivot(clpq,T,Class,Ord,Type,IndAct) :- bv_q:pivot(T,Class,Ord,Type,IndAct).pivot208,5616 -pivot(clpq,T,Class,Ord,Type,IndAct) :- bv_q:pivot(T,Class,Ord,Type,IndAct).pivot208,5616 -pivot(clpr,T,Class,Ord,Type,IndAct) :- bv_r:pivot(T,Class,Ord,Type,IndAct).pivot209,5692 -pivot(clpr,T,Class,Ord,Type,IndAct) :- bv_r:pivot(T,Class,Ord,Type,IndAct).pivot209,5692 -pivot(clpr,T,Class,Ord,Type,IndAct) :- bv_r:pivot(T,Class,Ord,Type,IndAct).pivot209,5692 -pivot(clpr,T,Class,Ord,Type,IndAct) :- bv_r:pivot(T,Class,Ord,Type,IndAct).pivot209,5692 -pivot(clpr,T,Class,Ord,Type,IndAct) :- bv_r:pivot(T,Class,Ord,Type,IndAct).pivot209,5692 -renormalize(clpq,Lin,New) :- store_q:renormalize(Lin,New).renormalize211,5769 -renormalize(clpq,Lin,New) :- store_q:renormalize(Lin,New).renormalize211,5769 -renormalize(clpq,Lin,New) :- store_q:renormalize(Lin,New).renormalize211,5769 -renormalize(clpq,Lin,New) :- store_q:renormalize(Lin,New).renormalize211,5769 -renormalize(clpq,Lin,New) :- store_q:renormalize(Lin,New).renormalize211,5769 -renormalize(clpr,Lin,New) :- store_r:renormalize(Lin,New).renormalize212,5828 -renormalize(clpr,Lin,New) :- store_r:renormalize(Lin,New).renormalize212,5828 -renormalize(clpr,Lin,New) :- store_r:renormalize(Lin,New).renormalize212,5828 -renormalize(clpr,Lin,New) :- store_r:renormalize(Lin,New).renormalize212,5828 -renormalize(clpr,Lin,New) :- store_r:renormalize(Lin,New).renormalize212,5828 -drop_lin_atts([]).drop_lin_atts219,6053 -drop_lin_atts([]).drop_lin_atts219,6053 -drop_lin_atts([V|Vs]) :-drop_lin_atts220,6072 -drop_lin_atts([V|Vs]) :-drop_lin_atts220,6072 -drop_lin_atts([V|Vs]) :-drop_lin_atts220,6072 -impose_ordering(Cvas) :-impose_ordering229,6230 -impose_ordering(Cvas) :-impose_ordering229,6230 -impose_ordering(Cvas) :-impose_ordering229,6230 -impose_ordering_sys([]).impose_ordering_sys233,6306 -impose_ordering_sys([]).impose_ordering_sys233,6306 -impose_ordering_sys([S|Ss]) :-impose_ordering_sys234,6331 -impose_ordering_sys([S|Ss]) :-impose_ordering_sys234,6331 -impose_ordering_sys([S|Ss]) :-impose_ordering_sys234,6331 -arrange([],_).arrange239,6441 -arrange([],_).arrange239,6441 -arrange(Arr,S) :- arrange240,6456 -arrange(Arr,S) :- arrange240,6456 -arrange(Arr,S) :- arrange240,6456 -order(Xs,N,M) :- order248,6586 -order(Xs,N,M) :- order248,6586 -order(Xs,N,M) :- order248,6586 -order([],N,N).order252,6626 -order([],N,N).order252,6626 -order([X|Xs],N,M) :-order253,6641 -order([X|Xs],N,M) :-order253,6641 -order([X|Xs],N,M) :-order253,6641 -renorm_all(Xs) :- renorm_all268,6930 -renorm_all(Xs) :- renorm_all268,6930 -renorm_all(Xs) :- renorm_all268,6930 -renorm_all([X|Xs]) :-renorm_all271,6963 -renorm_all([X|Xs]) :-renorm_all271,6963 -renorm_all([X|Xs]) :-renorm_all271,6963 -arrange_pivot(Xs) :- arrange_pivot286,7337 -arrange_pivot(Xs) :- arrange_pivot286,7337 -arrange_pivot(Xs) :- arrange_pivot286,7337 -arrange_pivot([X|Xs]) :-arrange_pivot289,7373 -arrange_pivot([X|Xs]) :-arrange_pivot289,7373 -arrange_pivot([X|Xs]) :-arrange_pivot289,7373 - -packages/clpqr/clpqr/redund.pl,5051 -systems([],Si,Si).systems63,2201 -systems([],Si,Si).systems63,2201 -systems([V|Vs],Si,So) :-systems64,2220 -systems([V|Vs],Si,So) :-systems64,2220 -systems([V|Vs],Si,So) :-systems64,2220 -not_memq([],_).not_memq77,2475 -not_memq([],_).not_memq77,2475 -not_memq([Y|Ys],X) :-not_memq78,2491 -not_memq([Y|Ys],X) :-not_memq78,2491 -not_memq([Y|Ys],X) :-not_memq78,2491 -redundancy_systems([]).redundancy_systems86,2662 -redundancy_systems([]).redundancy_systems86,2662 -redundancy_systems([S|Sys]) :-redundancy_systems87,2686 -redundancy_systems([S|Sys]) :-redundancy_systems87,2686 -redundancy_systems([S|Sys]) :-redundancy_systems87,2686 -redundancy_vars(Vs) :-redundancy_vars97,2911 -redundancy_vars(Vs) :-redundancy_vars97,2911 -redundancy_vars(Vs) :-redundancy_vars97,2911 -redundancy_vars(Vs) :-redundancy_vars100,2958 -redundancy_vars(Vs) :-redundancy_vars100,2958 -redundancy_vars(Vs) :-redundancy_vars100,2958 -redundancy_vs(Vs) :- redundancy_vs112,3252 -redundancy_vs(Vs) :- redundancy_vs112,3252 -redundancy_vs(Vs) :- redundancy_vs112,3252 -redundancy_vs([]).redundancy_vs115,3288 -redundancy_vs([]).redundancy_vs115,3288 -redundancy_vs([V|Vs]) :-redundancy_vs116,3307 -redundancy_vs([V|Vs]) :-redundancy_vs116,3307 -redundancy_vs([V|Vs]) :-redundancy_vs116,3307 -redundant(t_l(L),X,Strict) :-redundant132,3839 -redundant(t_l(L),X,Strict) :-redundant132,3839 -redundant(t_l(L),X,Strict) :-redundant132,3839 -redundant(t_u(U),X,Strict) :-redundant139,4080 -redundant(t_u(U),X,Strict) :-redundant139,4080 -redundant(t_u(U),X,Strict) :-redundant139,4080 -redundant(t_lu(L,U),X,Strict) :-redundant145,4209 -redundant(t_lu(L,U),X,Strict) :-redundant145,4209 -redundant(t_lu(L,U),X,Strict) :-redundant145,4209 -redundant(t_L(L),X,Strict) :-redundant165,4677 -redundant(t_L(L),X,Strict) :-redundant165,4677 -redundant(t_L(L),X,Strict) :-redundant165,4677 -redundant(t_U(U),X,Strict) :-redundant173,4870 -redundant(t_U(U),X,Strict) :-redundant173,4870 -redundant(t_U(U),X,Strict) :-redundant173,4870 -redundant(t_Lu(L,U),X,Strict) :-redundant181,5063 -redundant(t_Lu(L,U),X,Strict) :-redundant181,5063 -redundant(t_Lu(L,U),X,Strict) :-redundant181,5063 -redundant(t_lU(L,U),X,Strict) :-redundant203,5590 -redundant(t_lU(L,U),X,Strict) :-redundant203,5590 -redundant(t_lU(L,U),X,Strict) :-redundant203,5590 -strictness_parts(Strict,Lower,Upper) :-strictness_parts231,6270 -strictness_parts(Strict,Lower,Upper) :-strictness_parts231,6270 -strictness_parts(Strict,Lower,Upper) :-strictness_parts231,6270 -negate_l(0,CLP,L,X) :- negate_l241,6594 -negate_l(0,CLP,L,X) :- negate_l241,6594 -negate_l(0,CLP,L,X) :- negate_l241,6594 -negate_l(1,CLP,L,X) :- negate_l245,6643 -negate_l(1,CLP,L,X) :- negate_l245,6643 -negate_l(1,CLP,L,X) :- negate_l245,6643 -negate_l(2,CLP,L,X) :-negate_l249,6692 -negate_l(2,CLP,L,X) :-negate_l249,6692 -negate_l(2,CLP,L,X) :-negate_l249,6692 -negate_l(3,CLP,L,X) :-negate_l253,6741 -negate_l(3,CLP,L,X) :-negate_l253,6741 -negate_l(3,CLP,L,X) :-negate_l253,6741 -negate_l(_,_,_,_).negate_l257,6790 -negate_l(_,_,_,_).negate_l257,6790 -negate_u(0,CLP,U,X) :-negate_u265,7047 -negate_u(0,CLP,U,X) :-negate_u265,7047 -negate_u(0,CLP,U,X) :-negate_u265,7047 -negate_u(1,CLP,U,X) :- negate_u269,7095 -negate_u(1,CLP,U,X) :- negate_u269,7095 -negate_u(1,CLP,U,X) :- negate_u269,7095 -negate_u(2,CLP,U,X) :- negate_u273,7145 -negate_u(2,CLP,U,X) :- negate_u273,7145 -negate_u(2,CLP,U,X) :- negate_u273,7145 -negate_u(3,CLP,U,X) :- negate_u277,7194 -negate_u(3,CLP,U,X) :- negate_u277,7194 -negate_u(3,CLP,U,X) :- negate_u277,7194 -negate_u(_,_,_,_).negate_u281,7244 -negate_u(_,_,_,_).negate_u281,7244 -detach_bounds(clpq,X) :- bv_q:detach_bounds(X).detach_bounds285,7276 -detach_bounds(clpq,X) :- bv_q:detach_bounds(X).detach_bounds285,7276 -detach_bounds(clpq,X) :- bv_q:detach_bounds(X).detach_bounds285,7276 -detach_bounds(clpq,X) :- bv_q:detach_bounds(X).detach_bounds285,7276 -detach_bounds(clpq,X) :- bv_q:detach_bounds(X).detach_bounds285,7276 -detach_bounds(clpr,X) :- bv_r:detach_bounds(X).detach_bounds286,7324 -detach_bounds(clpr,X) :- bv_r:detach_bounds(X).detach_bounds286,7324 -detach_bounds(clpr,X) :- bv_r:detach_bounds(X).detach_bounds286,7324 -detach_bounds(clpr,X) :- bv_r:detach_bounds(X).detach_bounds286,7324 -detach_bounds(clpr,X) :- bv_r:detach_bounds(X).detach_bounds286,7324 -intro_at(clpq,A,B,C) :- bv_q:intro_at(A,B,C).intro_at288,7373 -intro_at(clpq,A,B,C) :- bv_q:intro_at(A,B,C).intro_at288,7373 -intro_at(clpq,A,B,C) :- bv_q:intro_at(A,B,C).intro_at288,7373 -intro_at(clpq,A,B,C) :- bv_q:intro_at(A,B,C).intro_at288,7373 -intro_at(clpq,A,B,C) :- bv_q:intro_at(A,B,C).intro_at288,7373 -intro_at(clpr,A,B,C) :- bv_r:intro_at(A,B,C).intro_at289,7419 -intro_at(clpr,A,B,C) :- bv_r:intro_at(A,B,C).intro_at289,7419 -intro_at(clpr,A,B,C) :- bv_r:intro_at(A,B,C).intro_at289,7419 -intro_at(clpr,A,B,C) :- bv_r:intro_at(A,B,C).intro_at289,7419 -intro_at(clpr,A,B,C) :- bv_r:intro_at(A,B,C).intro_at289,7419 - -packages/clpqr/clpr/bb_r.pl,3427 -bb_inf(Is,Term,Inf) :-bb_inf72,2362 -bb_inf(Is,Term,Inf) :-bb_inf72,2362 -bb_inf(Is,Term,Inf) :-bb_inf72,2362 -bb_inf(Is,Term,Inf,Vertex,Eps) :-bb_inf75,2416 -bb_inf(Is,Term,Inf,Vertex,Eps) :-bb_inf75,2416 -bb_inf(Is,Term,Inf,Vertex,Eps) :-bb_inf75,2416 -bb_inf_internal(Is,Lin,Eps,_,_) :-bb_inf_internal88,2885 -bb_inf_internal(Is,Lin,Eps,_,_) :-bb_inf_internal88,2885 -bb_inf_internal(Is,Lin,Eps,_,_) :-bb_inf_internal88,2885 -bb_inf_internal(_,_,_,Inf,Vertex) :-bb_inf_internal97,3113 -bb_inf_internal(_,_,_,Inf,Vertex) :-bb_inf_internal97,3113 -bb_inf_internal(_,_,_,Inf,Vertex) :-bb_inf_internal97,3113 -bb_loop(Opt,Is,Eps) :-bb_loop108,3460 -bb_loop(Opt,Is,Eps) :-bb_loop108,3460 -bb_loop(Opt,Is,Eps) :-bb_loop108,3460 -bb_reoptimize(Obj,Inf) :- bb_reoptimize125,4009 -bb_reoptimize(Obj,Inf) :- bb_reoptimize125,4009 -bb_reoptimize(Obj,Inf) :- bb_reoptimize125,4009 -bb_reoptimize(Obj,Inf) :- bb_reoptimize128,4070 -bb_reoptimize(Obj,Inf) :- bb_reoptimize128,4070 -bb_reoptimize(Obj,Inf) :- bb_reoptimize128,4070 -bb_better_bound(Inf) :-bb_better_bound136,4232 -bb_better_bound(Inf) :-bb_better_bound136,4232 -bb_better_bound(Inf) :-bb_better_bound136,4232 -bb_branch(V,U,_) :- {V =< U}.bb_branch143,4431 -bb_branch(V,U,_) :- {V =< U}.bb_branch143,4431 -bb_branch(V,U,_) :- {V =< U}.bb_branch143,4431 -bb_branch(V,_,L) :- {V >= L}.bb_branch144,4461 -bb_branch(V,_,L) :- {V >= L}.bb_branch144,4461 -bb_branch(V,_,L) :- {V >= L}.bb_branch144,4461 -vertex_value([],[]).vertex_value150,4592 -vertex_value([],[]).vertex_value150,4592 -vertex_value([X|Xs],[V|Vs]) :-vertex_value151,4613 -vertex_value([X|Xs],[V|Vs]) :-vertex_value151,4613 -vertex_value([X|Xs],[V|Vs]) :-vertex_value151,4613 -rhs_value(Xn,Value) :- rhs_value159,4764 -rhs_value(Xn,Value) :- rhs_value159,4764 -rhs_value(Xn,Value) :- rhs_value159,4764 -bb_first_nonint([I|Is],[Rhs|Rhss],Eps,Viol,F,C) :-bb_first_nonint175,5263 -bb_first_nonint([I|Is],[Rhs|Rhss],Eps,Viol,F,C) :-bb_first_nonint175,5263 -bb_first_nonint([I|Is],[Rhs|Rhss],Eps,Viol,F,C) :-bb_first_nonint175,5263 -round_values([],[]).round_values189,5629 -round_values([],[]).round_values189,5629 -round_values([X|Xs],[Y|Ys]) :-round_values190,5650 -round_values([X|Xs],[Y|Ys]) :-round_values190,5650 -round_values([X|Xs],[Y|Ys]) :-round_values190,5650 -bb_intern([],[],_).bb_intern199,5849 -bb_intern([],[],_).bb_intern199,5849 -bb_intern([X|Xs],[Xi|Xis],Eps) :-bb_intern200,5869 -bb_intern([X|Xs],[Xi|Xis],Eps) :-bb_intern200,5869 -bb_intern([X|Xs],[Xi|Xis],Eps) :-bb_intern200,5869 -bb_intern([],X,_,_) :- bb_intern213,6235 -bb_intern([],X,_,_) :- bb_intern213,6235 -bb_intern([],X,_,_) :- bb_intern213,6235 -bb_intern([v(I,[])],X,_,Eps) :- bb_intern216,6273 -bb_intern([v(I,[])],X,_,Eps) :- bb_intern216,6273 -bb_intern([v(I,[])],X,_,Eps) :- bb_intern216,6273 -bb_intern([v(One,[V^1])],X,_,_) :-bb_intern220,6378 -bb_intern([v(One,[V^1])],X,_,_) :-bb_intern220,6378 -bb_intern([v(One,[V^1])],X,_,_) :-bb_intern220,6378 -bb_intern(_,_,Term,_) :-bb_intern228,6522 -bb_intern(_,_,Term,_) :-bb_intern228,6522 -bb_intern(_,_,Term,_) :-bb_intern228,6522 -bb_narrow_lower(X) :-bb_narrow_lower238,6878 -bb_narrow_lower(X) :-bb_narrow_lower238,6878 -bb_narrow_lower(X) :-bb_narrow_lower238,6878 -bb_narrow_upper(X) :-bb_narrow_upper252,7138 -bb_narrow_upper(X) :-bb_narrow_upper252,7138 -bb_narrow_upper(X) :-bb_narrow_upper252,7138 - -packages/clpqr/clpr/bv_r.pl,31599 -deref(Lin,Lind) :-deref157,4047 -deref(Lin,Lind) :-deref157,4047 -deref(Lin,Lind) :-deref157,4047 -log_deref(0,Vs,Vs,Lin) :-log_deref171,4510 -log_deref(0,Vs,Vs,Lin) :-log_deref171,4510 -log_deref(0,Vs,Vs,Lin) :-log_deref171,4510 -log_deref(1,[v(K,[X^1])|Vs],Vs,Lin) :-log_deref174,4558 -log_deref(1,[v(K,[X^1])|Vs],Vs,Lin) :-log_deref174,4558 -log_deref(1,[v(K,[X^1])|Vs],Vs,Lin) :-log_deref174,4558 -log_deref(2,[v(Kx,[X^1]),v(Ky,[Y^1])|Vs],Vs,Lin) :-log_deref178,4650 -log_deref(2,[v(Kx,[X^1]),v(Ky,[Y^1])|Vs],Vs,Lin) :-log_deref178,4650 -log_deref(2,[v(Kx,[X^1]),v(Ky,[Y^1])|Vs],Vs,Lin) :-log_deref178,4650 -log_deref(N,V0,V2,Lin) :-log_deref183,4775 -log_deref(N,V0,V2,Lin) :-log_deref183,4775 -log_deref(N,V0,V2,Lin) :-log_deref183,4775 -deref_var(X,Lin) :-deref_var195,5020 -deref_var(X,Lin) :-deref_var195,5020 -deref_var(X,Lin) :-deref_var195,5020 -var_with_def_assign(Var,Lin) :-var_with_def_assign217,5544 -var_with_def_assign(Var,Lin) :-var_with_def_assign217,5544 -var_with_def_assign(Var,Lin) :-var_with_def_assign217,5544 -var_with_def_intern(Type,Var,Lin,Strict) :-var_with_def_intern242,6106 -var_with_def_intern(Type,Var,Lin,Strict) :-var_with_def_intern242,6106 -var_with_def_intern(Type,Var,Lin,Strict) :-var_with_def_intern242,6106 -var_intern(Type,Var,Strict) :-var_intern253,6342 -var_intern(Type,Var,Strict) :-var_intern253,6342 -var_intern(Type,Var,Strict) :-var_intern253,6342 -var_intern(Var,Class) :- % for ordered/1 but otherwise free varsvar_intern262,6534 -var_intern(Var,Class) :- % for ordered/1 but otherwise free varsvar_intern262,6534 -var_intern(Var,Class) :- % for ordered/1 but otherwise free varsvar_intern262,6534 -var_intern(Var,Class) :-var_intern268,6698 -var_intern(Var,Class) :-var_intern268,6698 -var_intern(Var,Class) :-var_intern268,6698 -export_binding([]).export_binding279,7046 -export_binding([]).export_binding279,7046 -export_binding([X-Y|Gs]) :-export_binding280,7066 -export_binding([X-Y|Gs]) :-export_binding280,7066 -export_binding([X-Y|Gs]) :-export_binding280,7066 -export_binding(Y,X) :-export_binding289,7266 -export_binding(Y,X) :-export_binding289,7266 -export_binding(Y,X) :-export_binding289,7266 -export_binding(Y,X) :-export_binding292,7306 -export_binding(Y,X) :-export_binding292,7306 -export_binding(Y,X) :-export_binding292,7306 -'solve_='(Nf) :-solve_=304,7499 -'solve_='(Nf) :-solve_=304,7499 -'solve_='(Nf) :-solve_=304,7499 -'solve_=\\='(Nf) :-solve_=\\=312,7683 -'solve_=\\='(Nf) :-solve_=\\=312,7683 -'solve_=\\='(Nf) :-solve_=\\=312,7683 -'solve_<'(Nf) :-solve_<329,8152 -'solve_<'(Nf) :-solve_<329,8152 -'solve_<'(Nf) :-solve_<329,8152 -'solve_=<'(Nf) :-solve_=<337,8291 -'solve_=<'(Nf) :-solve_=<337,8291 -'solve_=<'(Nf) :-solve_=<337,8291 -maximize(Term) :-maximize341,8351 -maximize(Term) :-maximize341,8351 -maximize(Term) :-maximize341,8351 -minimize(Term) :-minimize369,9253 -minimize(Term) :-minimize369,9253 -minimize(Term) :-minimize369,9253 -minimize_lin(Lin) :-minimize_lin377,9441 -minimize_lin(Lin) :-minimize_lin377,9441 -minimize_lin(Lin) :-minimize_lin377,9441 -sup(Expression,Sup) :-sup384,9592 -sup(Expression,Sup) :-sup384,9592 -sup(Expression,Sup) :-sup384,9592 -sup(Expression,Sup,Vector,Vertex) :-sup387,9644 -sup(Expression,Sup,Vector,Vertex) :-sup387,9644 -sup(Expression,Sup,Vector,Vertex) :-sup387,9644 -inf(Expression,Inf) :-inf390,9720 -inf(Expression,Inf) :-inf390,9720 -inf(Expression,Inf) :-inf390,9720 -inf(Expression,Inf,Vector,Vertex) :-inf393,9772 -inf(Expression,Inf,Vector,Vertex) :-inf393,9772 -inf(Expression,Inf,Vector,Vertex) :-inf393,9772 -inf_lin(Lin,_,Vector,_) :-inf_lin398,9958 -inf_lin(Lin,_,Vector,_) :-inf_lin398,9958 -inf_lin(Lin,_,Vector,_) :-inf_lin398,9958 -inf_lin(_,Infimum,_,Vertex) :-inf_lin406,10211 -inf_lin(_,Infimum,_,Vertex) :-inf_lin406,10211 -inf_lin(_,Infimum,_,Vertex) :-inf_lin406,10211 -assign([],[]).assign417,10512 -assign([],[]).assign417,10512 -assign([X|Xs],[Y|Ys]) :-assign418,10527 -assign([X|Xs],[Y|Ys]) :-assign418,10527 -assign([X|Xs],[Y|Ys]) :-assign418,10527 -iterate_dec(OptVar,Opt) :-iterate_dec449,11612 -iterate_dec(OptVar,Opt) :-iterate_dec449,11612 -iterate_dec(OptVar,Opt) :-iterate_dec449,11612 -iterate_inc(OptVar,Opt) :-iterate_inc465,12044 -iterate_inc(OptVar,Opt) :-iterate_inc465,12044 -iterate_inc(OptVar,Opt) :-iterate_inc465,12044 -dec_step_cont([],optimum,Cont,Cont).dec_step_cont482,12494 -dec_step_cont([],optimum,Cont,Cont).dec_step_cont482,12494 -dec_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-dec_step_cont483,12531 -dec_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-dec_step_cont483,12531 -dec_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-dec_step_cont483,12531 -inc_step_cont([],optimum,Cont,Cont).inc_step_cont492,12781 -inc_step_cont([],optimum,Cont,Cont).inc_step_cont492,12781 -inc_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-inc_step_cont493,12818 -inc_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-inc_step_cont493,12818 -inc_step_cont([l(V*K,OrdV)|Vs],Status,ContIn,ContOut) :-inc_step_cont493,12818 -dec_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont502,13068 -dec_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont502,13068 -dec_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont502,13068 -dec_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont512,13363 -dec_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont512,13363 -dec_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont512,13363 -dec_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont519,13602 -dec_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont519,13602 -dec_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-dec_step_2_cont519,13602 -dec_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont528,13871 -dec_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont528,13871 -dec_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-dec_step_2_cont528,13871 -dec_step_2_cont(t_none,l(V*_,_),_,unlimited(V,t_none),Cont,Cont).dec_step_2_cont535,14111 -dec_step_2_cont(t_none,l(V*_,_),_,unlimited(V,t_none),Cont,Cont).dec_step_2_cont535,14111 -inc_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont539,14180 -inc_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont539,14180 -inc_step_2_cont(t_U(U),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont539,14180 -inc_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont548,14449 -inc_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont548,14449 -inc_step_2_cont(t_lU(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont548,14449 -inc_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont555,14689 -inc_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont555,14689 -inc_step_2_cont(t_L(L),l(V*K,OrdV),Class,Status,ContIn,ContOut) :-inc_step_2_cont555,14689 -inc_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont564,14957 -inc_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont564,14957 -inc_step_2_cont(t_Lu(L,U),l(V*K,OrdV),Class,applied,ContIn,ContOut) :-inc_step_2_cont564,14957 -inc_step_2_cont(t_none,l(V*_,_),_,unlimited(V,t_none),Cont,Cont).inc_step_2_cont571,15196 -inc_step_2_cont(t_none,l(V*_,_),_,unlimited(V,t_none),Cont,Cont).inc_step_2_cont571,15196 -replace_in_cont([],_,_,[]).replace_in_cont573,15263 -replace_in_cont([],_,_,[]).replace_in_cont573,15263 -replace_in_cont([H1|T1],X,Y,[H2|T2]) :-replace_in_cont574,15291 -replace_in_cont([H1|T1],X,Y,[H2|T2]) :-replace_in_cont574,15291 -replace_in_cont([H1|T1],X,Y,[H2|T2]) :-replace_in_cont574,15291 -dec_step([],optimum).dec_step582,15421 -dec_step([],optimum).dec_step582,15421 -dec_step([l(V*K,OrdV)|Vs],Status) :-dec_step583,15443 -dec_step([l(V*K,OrdV)|Vs],Status) :-dec_step583,15443 -dec_step([l(V*K,OrdV)|Vs],Status) :-dec_step583,15443 -dec_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-dec_step_2592,15636 -dec_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-dec_step_2592,15636 -dec_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-dec_step_2592,15636 -dec_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2600,15844 -dec_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2600,15844 -dec_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2600,15844 -dec_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-dec_step_2606,16023 -dec_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-dec_step_2606,16023 -dec_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-dec_step_2606,16023 -dec_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2613,16205 -dec_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2613,16205 -dec_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-dec_step_2613,16205 -dec_step_2(t_none,l(V*_,_),_,unlimited(V,t_none)). dec_step_2619,16385 -dec_step_2(t_none,l(V*_,_),_,unlimited(V,t_none)). dec_step_2619,16385 -inc_step([],optimum). % if status has not been set yet: no changesinc_step621,16438 -inc_step([],optimum). % if status has not been set yet: no changesinc_step621,16438 -inc_step([l(V*K,OrdV)|Vs],Status) :-inc_step622,16505 -inc_step([l(V*K,OrdV)|Vs],Status) :-inc_step622,16505 -inc_step([l(V*K,OrdV)|Vs],Status) :-inc_step622,16505 -inc_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-inc_step_2631,16695 -inc_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-inc_step_2631,16695 -inc_step_2(t_U(U),l(V*K,OrdV),Class,Status) :-inc_step_2631,16695 -inc_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2638,16877 -inc_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2638,16877 -inc_step_2(t_lU(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2638,16877 -inc_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-inc_step_2644,17057 -inc_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-inc_step_2644,17057 -inc_step_2(t_L(L),l(V*K,OrdV),Class,Status) :-inc_step_2644,17057 -inc_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2651,17238 -inc_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2651,17238 -inc_step_2(t_Lu(L,U),l(V*K,OrdV),Class,applied) :-inc_step_2651,17238 -inc_step_2(t_none,l(V*_,_),_,unlimited(V,t_none)).inc_step_2657,17417 -inc_step_2(t_none,l(V*_,_),_,unlimited(V,t_none)).inc_step_2657,17417 -ub(Class,OrdX,Ub) :-ub676,18031 -ub(Class,OrdX,Ub) :-ub676,18031 -ub(Class,OrdX,Ub) :-ub676,18031 -ub_first([Dep|Deps],OrdX,Tightest) :-ub_first687,18401 -ub_first([Dep|Deps],OrdX,Tightest) :-ub_first687,18401 -ub_first([Dep|Deps],OrdX,Tightest) :-ub_first687,18401 -ub([],_,T0,T0).ub701,18731 -ub([],_,T0,T0).ub701,18731 -ub([Dep|Deps],OrdX,T0,T1) :-ub702,18747 -ub([Dep|Deps],OrdX,T0,T1) :-ub702,18747 -ub([Dep|Deps],OrdX,T0,T1) :-ub702,18747 -ub_inner(t_l(L),OrdX,Lin,t_L(L),Ub) :-ub_inner720,19271 -ub_inner(t_l(L),OrdX,Lin,t_L(L),Ub) :-ub_inner720,19271 -ub_inner(t_l(L),OrdX,Lin,t_L(L),Ub) :-ub_inner720,19271 -ub_inner(t_u(U),OrdX,Lin,t_U(U),Ub) :-ub_inner725,19441 -ub_inner(t_u(U),OrdX,Lin,t_U(U),Ub) :-ub_inner725,19441 -ub_inner(t_u(U),OrdX,Lin,t_U(U),Ub) :-ub_inner725,19441 -ub_inner(t_lu(L,U),OrdX,Lin,W,Ub) :-ub_inner729,19548 -ub_inner(t_lu(L,U),OrdX,Lin,W,Ub) :-ub_inner729,19548 -ub_inner(t_lu(L,U),OrdX,Lin,W,Ub) :-ub_inner729,19548 -lb(Class,OrdX,Lb) :-lb748,20162 -lb(Class,OrdX,Lb) :-lb748,20162 -lb(Class,OrdX,Lb) :-lb748,20162 -lb_first([Dep|Deps],OrdX,Tightest) :-lb_first761,20620 -lb_first([Dep|Deps],OrdX,Tightest) :-lb_first761,20620 -lb_first([Dep|Deps],OrdX,Tightest) :-lb_first761,20620 -lb([],_,T0,T0).lb776,21089 -lb([],_,T0,T0).lb776,21089 -lb([Dep|Deps],OrdX,T0,T1) :-lb777,21105 -lb([Dep|Deps],OrdX,T0,T1) :-lb777,21105 -lb([Dep|Deps],OrdX,T0,T1) :-lb777,21105 -lb_inner(t_l(L),OrdX,Lin,t_L(L),Lb) :-lb_inner803,22060 -lb_inner(t_l(L),OrdX,Lin,t_L(L),Lb) :-lb_inner803,22060 -lb_inner(t_l(L),OrdX,Lin,t_L(L),Lb) :-lb_inner803,22060 -lb_inner(t_u(U),OrdX,Lin,t_U(U),Lb) :-lb_inner809,22274 -lb_inner(t_u(U),OrdX,Lin,t_U(U),Lb) :-lb_inner809,22274 -lb_inner(t_u(U),OrdX,Lin,t_U(U),Lb) :-lb_inner809,22274 -lb_inner(t_lu(L,U),OrdX,Lin,W,Lb) :-lb_inner813,22381 -lb_inner(t_lu(L,U),OrdX,Lin,W,Lb) :-lb_inner813,22381 -lb_inner(t_lu(L,U),OrdX,Lin,W,Lb) :-lb_inner813,22381 -solve(Lin) :-solve831,22886 -solve(Lin) :-solve831,22886 -solve(Lin) :-solve831,22886 -solve([],_,I,Bind0,Bind0) :-solve840,23086 -solve([],_,I,Bind0,Bind0) :-solve840,23086 -solve([],_,I,Bind0,Bind0) :-solve840,23086 -solve(H,Lin,_,Bind0,BindT) :-solve844,23190 -solve(H,Lin,_,Bind0,BindT) :-solve844,23190 -solve(H,Lin,_,Bind0,BindT) :-solve844,23190 -solve_x(Lin,X) :-solve_x903,25075 -solve_x(Lin,X) :-solve_x903,25075 -solve_x(Lin,X) :-solve_x903,25075 -solve_x([],_,I,_,Bind0,Bind0) :-solve_x908,25170 -solve_x([],_,I,_,Bind0,Bind0) :-solve_x908,25170 -solve_x([],_,I,_,Bind0,Bind0) :-solve_x908,25170 -solve_x(H,Lin,_,X,Bind0,BindT) :-solve_x913,25279 -solve_x(H,Lin,_,X,Bind0,BindT) :-solve_x913,25279 -solve_x(H,Lin,_,X,Bind0,BindT) :-solve_x913,25279 -solve_ord_x(Lin,OrdX,ClassX) :-solve_ord_x937,26010 -solve_ord_x(Lin,OrdX,ClassX) :-solve_ord_x937,26010 -solve_ord_x(Lin,OrdX,ClassX) :-solve_ord_x937,26010 -solve_ord_x([],_,I,_,_,Bind0,Bind0) :-solve_ord_x942,26133 -solve_ord_x([],_,I,_,_,Bind0,Bind0) :-solve_ord_x942,26133 -solve_ord_x([],_,I,_,_,Bind0,Bind0) :-solve_ord_x942,26133 -solve_ord_x([_|_],Lin,_,OrdX,ClassX,Bind0,BindT) :-solve_ord_x945,26213 -solve_ord_x([_|_],Lin,_,OrdX,ClassX,Bind0,BindT) :-solve_ord_x945,26213 -solve_ord_x([_|_],Lin,_,OrdX,ClassX,Bind0,BindT) :-solve_ord_x945,26213 -sd([],Class0,Class0,Preference0,Preference0,NV0,NV0).sd967,27018 -sd([],Class0,Class0,Preference0,Preference0,NV0,NV0).sd967,27018 -sd([l(X*K,_)|Xs],Class0,ClassN,Preference0,PreferenceN,NV0,NVt) :-sd968,27072 -sd([l(X*K,_)|Xs],Class0,ClassN,Preference0,PreferenceN,NV0,NVt) :-sd968,27072 -sd([l(X*K,_)|Xs],Class0,ClassN,Preference0,PreferenceN,NV0,NVt) :-sd968,27072 -preference(A,B,Pref) :-preference994,27952 -preference(A,B,Pref) :-preference994,27952 -preference(A,B,Pref) :-preference994,27952 -eq_classes(NV,_,Cs) :-eq_classes1009,28380 -eq_classes(NV,_,Cs) :-eq_classes1009,28380 -eq_classes(NV,_,Cs) :-eq_classes1009,28380 -eq_classes(NV,NVT,Cs) :-eq_classes1013,28432 -eq_classes(NV,NVT,Cs) :-eq_classes1013,28432 -eq_classes(NV,NVT,Cs) :-eq_classes1013,28432 -equate([],_).equate1018,28606 -equate([],_).equate1018,28606 -equate([X|Xs],X) :- equate(Xs,X).equate1019,28620 -equate([X|Xs],X) :- equate(Xs,X).equate1019,28620 -equate([X|Xs],X) :- equate(Xs,X).equate1019,28620 -equate([X|Xs],X) :- equate(Xs,X).equate1019,28620 -equate([X|Xs],X) :- equate(Xs,X).equate1019,28620 -attach_class(Xs,_) :-attach_class1024,28712 -attach_class(Xs,_) :-attach_class1024,28712 -attach_class(Xs,_) :-attach_class1024,28712 -attach_class([X|Xs],Class) :-attach_class1027,28755 -attach_class([X|Xs],Class) :-attach_class1027,28755 -attach_class([X|Xs],Class) :-attach_class1027,28755 -unconstrained(Lin,Uc,Kuc,Rest) :-unconstrained1037,29015 -unconstrained(Lin,Uc,Kuc,Rest) :-unconstrained1037,29015 -unconstrained(Lin,Uc,Kuc,Rest) :-unconstrained1037,29015 -same_class([],_).same_class1049,29294 -same_class([],_).same_class1049,29294 -same_class([l(X*_,_)|Xs],Class) :-same_class1050,29312 -same_class([l(X*_,_)|Xs],Class) :-same_class1050,29312 -same_class([l(X*_,_)|Xs],Class) :-same_class1050,29312 -get_or_add_class(X,Class) :-get_or_add_class1059,29540 -get_or_add_class(X,Class) :-get_or_add_class1059,29540 -get_or_add_class(X,Class) :-get_or_add_class1059,29540 -allvars(X,Allvars) :-allvars1072,29833 -allvars(X,Allvars) :-allvars1072,29833 -allvars(X,Allvars) :-allvars1072,29833 -deactivate_bound(t_l(_),_).deactivate_bound1083,30111 -deactivate_bound(t_l(_),_).deactivate_bound1083,30111 -deactivate_bound(t_u(_),_).deactivate_bound1084,30139 -deactivate_bound(t_u(_),_).deactivate_bound1084,30139 -deactivate_bound(t_lu(_,_),_).deactivate_bound1085,30167 -deactivate_bound(t_lu(_,_),_).deactivate_bound1085,30167 -deactivate_bound(t_L(L),X) :-deactivate_bound1086,30198 -deactivate_bound(t_L(L),X) :-deactivate_bound1086,30198 -deactivate_bound(t_L(L),X) :-deactivate_bound1086,30198 -deactivate_bound(t_Lu(L,U),X) :-deactivate_bound1089,30279 -deactivate_bound(t_Lu(L,U),X) :-deactivate_bound1089,30279 -deactivate_bound(t_Lu(L,U),X) :-deactivate_bound1089,30279 -deactivate_bound(t_U(U),X) :-deactivate_bound1092,30366 -deactivate_bound(t_U(U),X) :-deactivate_bound1092,30366 -deactivate_bound(t_U(U),X) :-deactivate_bound1092,30366 -deactivate_bound(t_lU(L,U),X) :-deactivate_bound1095,30447 -deactivate_bound(t_lU(L,U),X) :-deactivate_bound1095,30447 -deactivate_bound(t_lU(L,U),X) :-deactivate_bound1095,30447 -intro_at(X,Value,Type) :-intro_at1106,30804 -intro_at(X,Value,Type) :-intro_at1106,30804 -intro_at(X,Value,Type) :-intro_at1106,30804 -undet_active([_,_|H]) :-undet_active1122,31203 -undet_active([_,_|H]) :-undet_active1122,31203 -undet_active([_,_|H]) :-undet_active1122,31203 -undet_active_h([]).undet_active_h1130,31401 -undet_active_h([]).undet_active_h1130,31401 -undet_active_h([l(X*_,_)|Xs]) :-undet_active_h1131,31421 -undet_active_h([l(X*_,_)|Xs]) :-undet_active_h1131,31421 -undet_active_h([l(X*_,_)|Xs]) :-undet_active_h1131,31421 -undet_active(t_none,_). % type_activityundet_active1142,31682 -undet_active(t_none,_). % type_activityundet_active1142,31682 -undet_active(t_L(_),_).undet_active1143,31722 -undet_active(t_L(_),_).undet_active1143,31722 -undet_active(t_Lu(_,_),_).undet_active1144,31746 -undet_active(t_Lu(_,_),_).undet_active1144,31746 -undet_active(t_U(_),_).undet_active1145,31773 -undet_active(t_U(_),_).undet_active1145,31773 -undet_active(t_lU(_,_),_).undet_active1146,31797 -undet_active(t_lU(_,_),_).undet_active1146,31797 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1147,31824 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1147,31824 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1147,31824 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1147,31824 -undet_active(t_l(L),X) :- intro_at(X,L,t_L(L)).undet_active1147,31824 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1148,31872 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1148,31872 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1148,31872 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1148,31872 -undet_active(t_u(U),X) :- intro_at(X,U,t_U(U)).undet_active1148,31872 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1149,31920 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1149,31920 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1149,31920 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1149,31920 -undet_active(t_lu(L,U),X) :- intro_at(X,L,t_Lu(L,U)).undet_active1149,31920 -determine_active_dec([_,_|H]) :-determine_active_dec1158,32266 -determine_active_dec([_,_|H]) :-determine_active_dec1158,32266 -determine_active_dec([_,_|H]) :-determine_active_dec1158,32266 -determine_active_inc([_,_|H]) :-determine_active_inc1168,32615 -determine_active_inc([_,_|H]) :-determine_active_inc1168,32615 -determine_active_inc([_,_|H]) :-determine_active_inc1168,32615 -determine_active([],_).determine_active1178,32937 -determine_active([],_).determine_active1178,32937 -determine_active([l(X*K,_)|Xs],S) :-determine_active1179,32961 -determine_active([l(X*K,_)|Xs],S) :-determine_active1179,32961 -determine_active([l(X*K,_)|Xs],S) :-determine_active1179,32961 -determine_active(t_L(_),_,_,_).determine_active1185,33102 -determine_active(t_L(_),_,_,_).determine_active1185,33102 -determine_active(t_Lu(_,_),_,_,_).determine_active1186,33134 -determine_active(t_Lu(_,_),_,_,_).determine_active1186,33134 -determine_active(t_U(_),_,_,_).determine_active1187,33169 -determine_active(t_U(_),_,_,_).determine_active1187,33169 -determine_active(t_lU(_,_),_,_,_).determine_active1188,33201 -determine_active(t_lU(_,_),_,_,_).determine_active1188,33201 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1189,33236 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1189,33236 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1189,33236 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1189,33236 -determine_active(t_l(L),X,_,_) :- intro_at(X,L,t_L(L)).determine_active1189,33236 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1190,33292 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1190,33292 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1190,33292 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1190,33292 -determine_active(t_u(U),X,_,_) :- intro_at(X,U,t_U(U)).determine_active1190,33292 -determine_active(t_lu(L,U),X,K,S) :-determine_active1191,33348 -determine_active(t_lu(L,U),X,K,S) :-determine_active1191,33348 -determine_active(t_lu(L,U),X,K,S) :-determine_active1191,33348 -detach_bounds(V) :-detach_bounds1203,33571 -detach_bounds(V) :-detach_bounds1203,33571 -detach_bounds(V) :-detach_bounds1203,33571 -detach_bounds_vlv(OrdV,Lin,Class,Var,NewLin) :-detach_bounds_vlv1224,34083 -detach_bounds_vlv(OrdV,Lin,Class,Var,NewLin) :-detach_bounds_vlv1224,34083 -detach_bounds_vlv(OrdV,Lin,Class,Var,NewLin) :-detach_bounds_vlv1224,34083 -basis_drop(X) :-basis_drop1247,34749 -basis_drop(X) :-basis_drop1247,34749 -basis_drop(X) :-basis_drop1247,34749 -basis(X,Basis) :-basis1256,34912 -basis(X,Basis) :-basis1256,34912 -basis(X,Basis) :-basis1256,34912 -basis_add(X,NewBasis) :-basis_add1266,35112 -basis_add(X,NewBasis) :-basis_add1266,35112 -basis_add(X,NewBasis) :-basis_add1266,35112 -basis_pivot(Leave,Enter) :-basis_pivot1276,35343 -basis_pivot(Leave,Enter) :-basis_pivot1276,35343 -basis_pivot(Leave,Enter) :-basis_pivot1276,35343 -pivot(Dep,Indep) :-pivot1293,35797 -pivot(Dep,Indep) :-pivot1293,35797 -pivot(Dep,Indep) :-pivot1293,35797 -pivot_a(Dep,Indep,Vb,Wd) :-pivot_a1313,36378 -pivot_a(Dep,Indep,Vb,Wd) :-pivot_a1313,36378 -pivot_a(Dep,Indep,Vb,Wd) :-pivot_a1313,36378 -pivot_b(Vub,V,Vb,Wd) :-pivot_b1323,36626 -pivot_b(Vub,V,Vb,Wd) :-pivot_b1323,36626 -pivot_b(Vub,V,Vb,Wd) :-pivot_b1323,36626 -pivot_b_delta(t_Lu(L,U),Delta) :- Delta is L-U.pivot_b_delta1334,36895 -pivot_b_delta(t_Lu(L,U),Delta) :- Delta is L-U.pivot_b_delta1334,36895 -pivot_b_delta(t_Lu(L,U),Delta) :- Delta is L-U.pivot_b_delta1334,36895 -pivot_b_delta(t_lU(L,U),Delta) :- Delta is U-L.pivot_b_delta1335,36943 -pivot_b_delta(t_lU(L,U),Delta) :- Delta is U-L.pivot_b_delta1335,36943 -pivot_b_delta(t_lU(L,U),Delta) :- Delta is U-L.pivot_b_delta1335,36943 -select_active_bound(t_L(L),L).select_active_bound1341,37102 -select_active_bound(t_L(L),L).select_active_bound1341,37102 -select_active_bound(t_Lu(L,_),L).select_active_bound1342,37133 -select_active_bound(t_Lu(L,_),L).select_active_bound1342,37133 -select_active_bound(t_U(U),U).select_active_bound1343,37167 -select_active_bound(t_U(U),U).select_active_bound1343,37167 -select_active_bound(t_lU(_,U),U).select_active_bound1344,37198 -select_active_bound(t_lU(_,U),U).select_active_bound1344,37198 -select_active_bound(t_none,0.0).select_active_bound1345,37232 -select_active_bound(t_none,0.0).select_active_bound1345,37232 -select_active_bound(t_l(_),0.0).select_active_bound1349,37286 -select_active_bound(t_l(_),0.0).select_active_bound1349,37286 -select_active_bound(t_u(_),0.0).select_active_bound1350,37319 -select_active_bound(t_u(_),0.0).select_active_bound1350,37319 -select_active_bound(t_lu(_,_),0.0).select_active_bound1351,37352 -select_active_bound(t_lu(_,_),0.0).select_active_bound1351,37352 -pivot(Dep,Class,IndepOrd,DepAct,IndAct) :-pivot1363,37581 -pivot(Dep,Class,IndepOrd,DepAct,IndAct) :-pivot1363,37581 -pivot(Dep,Class,IndepOrd,DepAct,IndAct) :-pivot1363,37581 -pivot_vlv(Dep,Class,IndepOrd,DepAct,AbvI,Lin) :-pivot_vlv1380,38183 -pivot_vlv(Dep,Class,IndepOrd,DepAct,AbvI,Lin) :-pivot_vlv1380,38183 -pivot_vlv(Dep,Class,IndepOrd,DepAct,AbvI,Lin) :-pivot_vlv1380,38183 -backsubst_delta(Class,OrdX,X,Delta) :-backsubst_delta1402,38973 -backsubst_delta(Class,OrdX,X,Delta) :-backsubst_delta1402,38973 -backsubst_delta(Class,OrdX,X,Delta) :-backsubst_delta1402,38973 -backsubst(Class,OrdX,Lin) :-backsubst1410,39214 -backsubst(Class,OrdX,Lin) :-backsubst1410,39214 -backsubst(Class,OrdX,Lin) :-backsubst1410,39214 -bs(Xs,_,_) :-bs1422,39489 -bs(Xs,_,_) :-bs1422,39489 -bs(Xs,_,_) :-bs1422,39489 -bs([X|Xs],OrdV,Lin) :-bs1425,39517 -bs([X|Xs],OrdV,Lin) :-bs1425,39517 -bs([X|Xs],OrdV,Lin) :-bs1425,39517 -bs_collect_bindings(Xs,_,_,Bind0,BindT) :-bs_collect_bindings1448,40259 -bs_collect_bindings(Xs,_,_,Bind0,BindT) :-bs_collect_bindings1448,40259 -bs_collect_bindings(Xs,_,_,Bind0,BindT) :-bs_collect_bindings1448,40259 -bs_collect_bindings([X|Xs],OrdV,Lin,Bind0,BindT) :-bs_collect_bindings1452,40332 -bs_collect_bindings([X|Xs],OrdV,Lin,Bind0,BindT) :-bs_collect_bindings1452,40332 -bs_collect_bindings([X|Xs],OrdV,Lin,Bind0,BindT) :-bs_collect_bindings1452,40332 -bs_collect_binding([],X,Inhom) --> [X-Inhom].bs_collect_binding1468,40889 -bs_collect_binding([],X,Inhom) --> [X-Inhom].bs_collect_binding1468,40889 -bs_collect_binding([],X,Inhom) --> [X-Inhom].bs_collect_binding1468,40889 -bs_collect_binding([_|_],_,_) --> [].bs_collect_binding1469,40935 -bs_collect_binding([_|_],_,_) --> [].bs_collect_binding1469,40935 -bs_collect_binding([_|_],_,_) --> [].bs_collect_binding1469,40935 -rcbl([],Bind0,Bind0).rcbl1479,41032 -rcbl([],Bind0,Bind0).rcbl1479,41032 -rcbl([X|Continuation],Bind0,BindT) :-rcbl1480,41054 -rcbl([X|Continuation],Bind0,BindT) :-rcbl1480,41054 -rcbl([X|Continuation],Bind0,BindT) :-rcbl1480,41054 -rcb_cont(X,Status,Violated,ContIn,ContOut) :-rcb_cont1486,41276 -rcb_cont(X,Status,Violated,ContIn,ContOut) :-rcb_cont1486,41276 -rcb_cont(X,Status,Violated,ContIn,ContOut) :-rcb_cont1486,41276 -reconsider(X) :-reconsider1517,42163 -reconsider(X) :-reconsider1517,42163 -reconsider(X) :-reconsider1517,42163 -reconsider(_).reconsider1522,42278 -reconsider(_).reconsider1522,42278 -rcb(X,Status,Violated) :-rcb1540,43012 -rcb(X,Status,Violated) :-rcb1540,43012 -rcb(X,Status,Violated) :-rcb1540,43012 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1569,43847 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1569,43847 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1569,43847 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1569,43847 -rcbl_status(optimum,X,Cont,B0,Bt,Violated) :- rcbl_opt(Violated,X,Cont,B0,Bt).rcbl_status1569,43847 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1570,43926 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1570,43926 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1570,43926 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1570,43926 -rcbl_status(applied,X,Cont,B0,Bt,Violated) :- rcbl_app(Violated,X,Cont,B0,Bt).rcbl_status1570,43926 -rcbl_status(unlimited(Indep,DepT),X,Cont,B0,Bt,Violated) :-rcbl_status1571,44005 -rcbl_status(unlimited(Indep,DepT),X,Cont,B0,Bt,Violated) :-rcbl_status1571,44005 -rcbl_status(unlimited(Indep,DepT),X,Cont,B0,Bt,Violated) :-rcbl_status1571,44005 -rcbl_opt(l(L),X,Continuation,B0,B1) :-rcbl_opt1581,44419 -rcbl_opt(l(L),X,Continuation,B0,B1) :-rcbl_opt1581,44419 -rcbl_opt(l(L),X,Continuation,B0,B1) :-rcbl_opt1581,44419 -rcbl_opt(u(U),X,Continuation,B0,B1) :-rcbl_opt1603,45020 -rcbl_opt(u(U),X,Continuation,B0,B1) :-rcbl_opt1603,45020 -rcbl_opt(u(U),X,Continuation,B0,B1) :-rcbl_opt1603,45020 -rcbl_app(l(L),X,Continuation,B0,B1) :-rcbl_app1629,45674 -rcbl_app(l(L),X,Continuation,B0,B1) :-rcbl_app1629,45674 -rcbl_app(l(L),X,Continuation,B0,B1) :-rcbl_app1629,45674 -rcbl_app(u(U),X,Continuation,B0,B1) :-rcbl_app1637,45924 -rcbl_app(u(U),X,Continuation,B0,B1) :-rcbl_app1637,45924 -rcbl_app(u(U),X,Continuation,B0,B1) :-rcbl_app1637,45924 -rcbl_unl(l(L),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1648,46221 -rcbl_unl(l(L),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1648,46221 -rcbl_unl(l(L),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1648,46221 -rcbl_unl(u(U),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1651,46349 -rcbl_unl(u(U),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1651,46349 -rcbl_unl(u(U),X,Continuation,B0,B1,Indep,DepT) :-rcbl_unl1651,46349 -narrow_u(t_u(_),X,U) :-narrow_u1660,46596 -narrow_u(t_u(_),X,U) :-narrow_u1660,46596 -narrow_u(t_u(_),X,U) :-narrow_u1660,46596 -narrow_u(t_lu(L,_),X,U) :-narrow_u1663,46671 -narrow_u(t_lu(L,_),X,U) :-narrow_u1663,46671 -narrow_u(t_lu(L,_),X,U) :-narrow_u1663,46671 -narrow_l( t_l(_), X, L) :-narrow_l1672,46871 -narrow_l( t_l(_), X, L) :-narrow_l1672,46871 -narrow_l( t_l(_), X, L) :-narrow_l1672,46871 -narrow_l( t_lu(_,U), X, L) :-narrow_l1676,46953 -narrow_l( t_lu(_,U), X, L) :-narrow_l1676,46953 -narrow_l( t_lu(_,U), X, L) :-narrow_l1676,46953 -dump_var(t_none,V,I,H) --> dump_var1687,47290 -dump_var(t_none,V,I,H) --> dump_var1687,47290 -dump_var(t_none,V,I,H) --> dump_var1687,47290 -dump_var(t_L(L),V,I,H) -->dump_var1703,47542 -dump_var(t_L(L),V,I,H) -->dump_var1703,47542 -dump_var(t_L(L),V,I,H) -->dump_var1703,47542 -dump_var(t_l(L),V,I,H) -->dump_var1709,47745 -dump_var(t_l(L),V,I,H) -->dump_var1709,47745 -dump_var(t_l(L),V,I,H) -->dump_var1709,47745 -dump_var(t_U(U),V,I,H) -->dump_var1726,48145 -dump_var(t_U(U),V,I,H) -->dump_var1726,48145 -dump_var(t_U(U),V,I,H) -->dump_var1726,48145 -dump_var(t_u(U),V,I,H) -->dump_var1729,48201 -dump_var(t_u(U),V,I,H) -->dump_var1729,48201 -dump_var(t_u(U),V,I,H) -->dump_var1729,48201 -dump_var(t_Lu(L,U),V,I,H) -->dump_var1746,48599 -dump_var(t_Lu(L,U),V,I,H) -->dump_var1746,48599 -dump_var(t_Lu(L,U),V,I,H) -->dump_var1746,48599 -dump_var(t_lU(L,U),V,I,H) -->dump_var1750,48683 -dump_var(t_lU(L,U),V,I,H) -->dump_var1750,48683 -dump_var(t_lU(L,U),V,I,H) -->dump_var1750,48683 -dump_var(t_lu(L,U),V,I,H) -->dump_var1754,48767 -dump_var(t_lu(L,U),V,I,H) -->dump_var1754,48767 -dump_var(t_lu(L,U),V,I,H) -->dump_var1754,48767 -dump_var(T,V,I,H) --> % should not happendump_var1758,48851 -dump_var(T,V,I,H) --> % should not happendump_var1758,48851 -dump_var(T,V,I,H) --> % should not happendump_var1758,48851 -dump_strict(0,Result,_,Result).dump_strict1768,49230 -dump_strict(0,Result,_,Result).dump_strict1768,49230 -dump_strict(1,_,Result,Result).dump_strict1769,49262 -dump_strict(1,_,Result,Result).dump_strict1769,49262 -dump_strict(2,_,Result,Result).dump_strict1770,49294 -dump_strict(2,_,Result,Result).dump_strict1770,49294 -dump_nz(_,H,I) -->dump_nz1778,49473 -dump_nz(_,H,I) -->dump_nz1778,49473 -dump_nz(_,H,I) -->dump_nz1778,49473 - -packages/clpqr/clpr/fourmotz_r.pl,8029 -fm_elim(Vs,Target,Pivots) :-fm_elim79,2409 -fm_elim(Vs,Target,Pivots) :-fm_elim79,2409 -fm_elim(Vs,Target,Pivots) :-fm_elim79,2409 -prefilter([],[]).prefilter88,2673 -prefilter([],[]).prefilter88,2673 -prefilter([V|Vs],Res) :-prefilter89,2691 -prefilter([V|Vs],Res) :-prefilter89,2691 -prefilter([V|Vs],Res) :-prefilter89,2691 -fm_elim_int([],_,Pivots) :- % donefm_elim_int103,3054 -fm_elim_int([],_,Pivots) :- % donefm_elim_int103,3054 -fm_elim_int([],_,Pivots) :- % donefm_elim_int103,3054 -fm_elim_int(Vs,Target,Pivots) :-fm_elim_int105,3106 -fm_elim_int(Vs,Target,Pivots) :-fm_elim_int105,3106 -fm_elim_int(Vs,Target,Pivots) :-fm_elim_int105,3106 -best(Vs,Best,Rest) :-best121,3488 -best(Vs,Best,Rest) :-best121,3488 -best(Vs,Best,Rest) :-best121,3488 -fm_cp_filter(Vs,Delta,N) :-fm_cp_filter133,3928 -fm_cp_filter(Vs,Delta,N) :-fm_cp_filter133,3928 -fm_cp_filter(Vs,Delta,N) :-fm_cp_filter133,3928 -mem([X|Xs],X,Xs).mem153,4499 -mem([X|Xs],X,Xs).mem153,4499 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4517 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4517 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4517 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4517 -mem([_|Ys],X,Xs) :- mem(Ys,X,Xs).mem154,4517 -select_nth(List,N,Nth,Others) :-select_nth160,4684 -select_nth(List,N,Nth,Others) :-select_nth160,4684 -select_nth(List,N,Nth,Others) :-select_nth160,4684 -select_nth([X|Xs],N,N,X,Xs) :- !.select_nth163,4752 -select_nth([X|Xs],N,N,X,Xs) :- !.select_nth163,4752 -select_nth([X|Xs],N,N,X,Xs) :- !.select_nth163,4752 -select_nth([Y|Ys],M,N,X,[Y|Xs]) :-select_nth164,4786 -select_nth([Y|Ys],M,N,X,[Y|Xs]) :-select_nth164,4786 -select_nth([Y|Ys],M,N,X,[Y|Xs]) :-select_nth164,4786 -elim_min(V,Occ,Target,Pivots,NewPivots) :-elim_min172,4952 -elim_min(V,Occ,Target,Pivots,NewPivots) :-elim_min172,4952 -elim_min(V,Occ,Target,Pivots,NewPivots) :-elim_min172,4952 -reverse_pivot([]).reverse_pivot185,5248 -reverse_pivot([]).reverse_pivot185,5248 -reverse_pivot([I:D|Ps]) :-reverse_pivot186,5267 -reverse_pivot([I:D|Ps]) :-reverse_pivot186,5267 -reverse_pivot([I:D|Ps]) :-reverse_pivot186,5267 -unkeep([]).unkeep201,5539 -unkeep([]).unkeep201,5539 -unkeep([_:D|Ps]) :-unkeep202,5551 -unkeep([_:D|Ps]) :-unkeep202,5551 -unkeep([_:D|Ps]) :-unkeep202,5551 -fm_detach( []).fm_detach212,5674 -fm_detach( []).fm_detach212,5674 -fm_detach([V:_|Vs]) :-fm_detach213,5690 -fm_detach([V:_|Vs]) :-fm_detach213,5690 -fm_detach([V:_|Vs]) :-fm_detach213,5690 -activate_crossproduct([]).activate_crossproduct222,5927 -activate_crossproduct([]).activate_crossproduct222,5927 -activate_crossproduct([lez(Strict,Lin)|News]) :-activate_crossproduct223,5954 -activate_crossproduct([lez(Strict,Lin)|News]) :-activate_crossproduct223,5954 -activate_crossproduct([lez(Strict,Lin)|News]) :-activate_crossproduct223,5954 -crossproduct([]) --> [].crossproduct237,6398 -crossproduct([]) --> [].crossproduct237,6398 -crossproduct([]) --> [].crossproduct237,6398 -crossproduct([A|As]) -->crossproduct238,6423 -crossproduct([A|As]) -->crossproduct238,6423 -crossproduct([A|As]) -->crossproduct238,6423 -crossproduct([],_) --> [].crossproduct254,6949 -crossproduct([],_) --> [].crossproduct254,6949 -crossproduct([],_) --> [].crossproduct254,6949 -crossproduct([B:Kb|Bs],A:Ka) -->crossproduct255,6976 -crossproduct([B:Kb|Bs],A:Ka) -->crossproduct255,6976 -crossproduct([B:Kb|Bs],A:Ka) -->crossproduct255,6976 -cross_lower(Ta,Tb,K,Lin,Strict) -->cross_lower297,8501 -cross_lower(Ta,Tb,K,Lin,Strict) -->cross_lower297,8501 -cross_lower(Ta,Tb,K,Lin,Strict) -->cross_lower297,8501 -cross_lower(_,_,_,_,_) --> [].cross_lower308,8743 -cross_lower(_,_,_,_,_) --> [].cross_lower308,8743 -cross_lower(_,_,_,_,_) --> [].cross_lower308,8743 -cross_upper(Ta,Tb,K,Lin,Strict) -->cross_upper316,8953 -cross_upper(Ta,Tb,K,Lin,Strict) -->cross_upper316,8953 -cross_upper(Ta,Tb,K,Lin,Strict) -->cross_upper316,8953 -cross_upper(_,_,_,_,_) --> [].cross_upper327,9193 -cross_upper(_,_,_,_,_) --> [].cross_upper327,9193 -cross_upper(_,_,_,_,_) --> [].cross_upper327,9193 -lower(t_l(L),L).lower336,9436 -lower(t_l(L),L).lower336,9436 -lower(t_lu(L,_),L).lower337,9453 -lower(t_lu(L,_),L).lower337,9453 -lower(t_L(L),L).lower338,9473 -lower(t_L(L),L).lower338,9473 -lower(t_Lu(L,_),L).lower339,9490 -lower(t_Lu(L,_),L).lower339,9490 -lower(t_lU(L,_),L).lower340,9510 -lower(t_lU(L,_),L).lower340,9510 -upper(t_u(U),U).upper347,9626 -upper(t_u(U),U).upper347,9626 -upper(t_lu(_,U),U).upper348,9643 -upper(t_lu(_,U),U).upper348,9643 -upper(t_U(U),U).upper349,9663 -upper(t_U(U),U).upper349,9663 -upper(t_Lu(_,U),U).upper350,9680 -upper(t_Lu(_,U),U).upper350,9680 -upper(t_lU(_,U),U).upper351,9700 -upper(t_lU(_,U),U).upper351,9700 -flip(t_l(X),t_u(X)).flip358,9850 -flip(t_l(X),t_u(X)).flip358,9850 -flip(t_u(X),t_l(X)).flip359,9871 -flip(t_u(X),t_l(X)).flip359,9871 -flip(t_lu(X,Y),t_lu(Y,X)).flip360,9892 -flip(t_lu(X,Y),t_lu(Y,X)).flip360,9892 -flip(t_L(X),t_u(X)).flip361,9919 -flip(t_L(X),t_u(X)).flip361,9919 -flip(t_U(X),t_l(X)).flip362,9940 -flip(t_U(X),t_l(X)).flip362,9940 -flip(t_lU(X,Y),t_lu(Y,X)).flip363,9961 -flip(t_lU(X,Y),t_lu(Y,X)).flip363,9961 -flip(t_Lu(X,Y),t_lu(Y,X)).flip364,9988 -flip(t_Lu(X,Y),t_lu(Y,X)).flip364,9988 -flip_strict(0,0).flip_strict370,10104 -flip_strict(0,0).flip_strict370,10104 -flip_strict(1,2).flip_strict371,10122 -flip_strict(1,2).flip_strict371,10122 -flip_strict(2,1).flip_strict372,10140 -flip_strict(2,1).flip_strict372,10140 -flip_strict(3,3).flip_strict373,10158 -flip_strict(3,3).flip_strict373,10158 -cp_card([],Ci,Ci).cp_card380,10294 -cp_card([],Ci,Ci).cp_card380,10294 -cp_card([A|As],Ci,Co) :-cp_card381,10313 -cp_card([A|As],Ci,Co) :-cp_card381,10313 -cp_card([A|As],Ci,Co) :-cp_card381,10313 -cp_card([],_,Ci,Ci).cp_card390,10509 -cp_card([],_,Ci,Ci).cp_card390,10509 -cp_card([B:Kb|Bs],A:Ka,Ci,Co) :-cp_card391,10530 -cp_card([B:Kb|Bs],A:Ka,Ci,Co) :-cp_card391,10530 -cp_card([B:Kb|Bs],A:Ka,Ci,Co) :-cp_card391,10530 -cp_card_lower(Ta,Tb,Si,So) :-cp_card_lower410,11007 -cp_card_lower(Ta,Tb,Si,So) :-cp_card_lower410,11007 -cp_card_lower(Ta,Tb,Si,So) :-cp_card_lower410,11007 -cp_card_lower(_,_,Si,Si).cp_card_lower415,11082 -cp_card_lower(_,_,Si,Si).cp_card_lower415,11082 -cp_card_upper(Ta,Tb,Si,So) :-cp_card_upper421,11211 -cp_card_upper(Ta,Tb,Si,So) :-cp_card_upper421,11211 -cp_card_upper(Ta,Tb,Si,So) :-cp_card_upper421,11211 -cp_card_upper(_,_,Si,Si).cp_card_upper426,11286 -cp_card_upper(_,_,Si,Si).cp_card_upper426,11286 -occurences(V,Occ) :-occurences436,11643 -occurences(V,Occ) :-occurences436,11643 -occurences(V,Occ) :-occurences436,11643 -occurences(De,_,[]) :- occurences449,12058 -occurences(De,_,[]) :- occurences449,12058 -occurences(De,_,[]) :- occurences449,12058 -occurences([D|De],OrdV,Occ) :-occurences452,12096 -occurences([D|De],OrdV,Occ) :-occurences452,12096 -occurences([D|De],OrdV,Occ) :-occurences452,12096 -occ_type_filter(t_l(_)).occ_type_filter467,12468 -occ_type_filter(t_l(_)).occ_type_filter467,12468 -occ_type_filter(t_u(_)).occ_type_filter468,12493 -occ_type_filter(t_u(_)).occ_type_filter468,12493 -occ_type_filter(t_lu(_,_)).occ_type_filter469,12518 -occ_type_filter(t_lu(_,_)).occ_type_filter469,12518 -occ_type_filter(t_L(_)).occ_type_filter470,12546 -occ_type_filter(t_L(_)).occ_type_filter470,12546 -occ_type_filter(t_U(_)).occ_type_filter471,12571 -occ_type_filter(t_U(_)).occ_type_filter471,12571 -occ_type_filter(t_lU(_,_)).occ_type_filter472,12596 -occ_type_filter(t_lU(_,_)).occ_type_filter472,12596 -occ_type_filter(t_Lu(_,_)).occ_type_filter473,12624 -occ_type_filter(t_Lu(_,_)).occ_type_filter473,12624 -occurs(V) :-occurs480,12775 -occurs(V) :-occurs480,12775 -occurs(V) :-occurs480,12775 -occurs(De,_) :- occurs492,13052 -occurs(De,_) :- occurs492,13052 -occurs(De,_) :- occurs492,13052 -occurs([D|De],OrdV) :-occurs496,13090 -occurs([D|De],OrdV) :-occurs496,13090 -occurs([D|De],OrdV) :-occurs496,13090 - -packages/clpqr/clpr/ineq_r.pl,17808 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq86,2688 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq86,2688 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq86,2688 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq86,2688 -ineq([],I,_,Strictness) :- ineq_ground(Strictness,I).ineq86,2688 -ineq([v(K,[X^1])|Tail],I,Lin,Strictness) :-ineq87,2742 -ineq([v(K,[X^1])|Tail],I,Lin,Strictness) :-ineq87,2742 -ineq([v(K,[X^1])|Tail],I,Lin,Strictness) :-ineq87,2742 -ineq_cases([],I,_,Strictness,X,K) :- % K*X + I < 0 or K*X + I =< 0ineq_cases90,2827 -ineq_cases([],I,_,Strictness,X,K) :- % K*X + I < 0 or K*X + I =< 0ineq_cases90,2827 -ineq_cases([],I,_,Strictness,X,K) :- % K*X + I < 0 or K*X + I =< 0ineq_cases90,2827 -ineq_cases([_|_],_,Lin,Strictness,_,_) :-ineq_cases92,2923 -ineq_cases([_|_],_,Lin,Strictness,_,_) :-ineq_cases92,2923 -ineq_cases([_|_],_,Lin,Strictness,_,_) :-ineq_cases92,2923 -ineq_ground(strict,I) :- I < -1.0e-10. % I < 0ineq_ground101,3159 -ineq_ground(strict,I) :- I < -1.0e-10. % I < 0ineq_ground101,3159 -ineq_ground(strict,I) :- I < -1.0e-10. % I < 0ineq_ground101,3159 -ineq_ground(nonstrict,I) :- I < 1.0e-10. % I =< 0ineq_ground102,3207 -ineq_ground(nonstrict,I) :- I < 1.0e-10. % I =< 0ineq_ground102,3207 -ineq_ground(nonstrict,I) :- I < 1.0e-10. % I =< 0ineq_ground102,3207 -ineq_one(strict,X,K,I) :-ineq_one108,3342 -ineq_one(strict,X,K,I) :-ineq_one108,3342 -ineq_one(strict,X,K,I) :-ineq_one108,3342 -ineq_one(nonstrict,X,K,I) :-ineq_one123,3794 -ineq_one(nonstrict,X,K,I) :-ineq_one123,3794 -ineq_one(nonstrict,X,K,I) :-ineq_one123,3794 -ineq_one_s_p_0(X) :-ineq_one_s_p_0145,4374 -ineq_one_s_p_0(X) :-ineq_one_s_p_0145,4374 -ineq_one_s_p_0(X) :-ineq_one_s_p_0145,4374 -ineq_one_s_p_0(X) :- % new variable, nothing depends on itineq_one_s_p_0154,4645 -ineq_one_s_p_0(X) :- % new variable, nothing depends on itineq_one_s_p_0154,4645 -ineq_one_s_p_0(X) :- % new variable, nothing depends on itineq_one_s_p_0154,4645 -ineq_one_s_n_0(X) :-ineq_one_s_n_0161,4836 -ineq_one_s_n_0(X) :-ineq_one_s_n_0161,4836 -ineq_one_s_n_0(X) :-ineq_one_s_n_0161,4836 -ineq_one_s_n_0(X) :-ineq_one_s_n_0170,5077 -ineq_one_s_n_0(X) :-ineq_one_s_n_0170,5077 -ineq_one_s_n_0(X) :-ineq_one_s_n_0170,5077 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i177,5234 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i177,5234 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i177,5234 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i186,5479 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i186,5479 -ineq_one_s_p_i(X,I) :-ineq_one_s_p_i186,5479 -ineq_one_s_n_i(X,I) :-ineq_one_s_n_i194,5653 -ineq_one_s_n_i(X,I) :-ineq_one_s_n_i194,5653 -ineq_one_s_n_i(X,I) :-ineq_one_s_n_i194,5653 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i203,5898 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i203,5898 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i203,5898 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i203,5898 -ineq_one_s_n_i(X,I) :- var_intern(t_l(I),X,2). % puts a strict inactive lowerbound on the variableineq_one_s_n_i203,5898 -ineq_one_old_s_p_0([],_,Ix) :- Ix < -1.0e-10. % X = I: Ix < 0ineq_one_old_s_p_0209,6105 -ineq_one_old_s_p_0([],_,Ix) :- Ix < -1.0e-10. % X = I: Ix < 0ineq_one_old_s_p_0209,6105 -ineq_one_old_s_p_0([],_,Ix) :- Ix < -1.0e-10. % X = I: Ix < 0ineq_one_old_s_p_0209,6105 -ineq_one_old_s_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_s_p_0210,6167 -ineq_one_old_s_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_s_p_0210,6167 -ineq_one_old_s_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_s_p_0210,6167 -ineq_one_old_s_n_0([],_,Ix) :- Ix > 1.0e-10. % X = I: Ix > 0ineq_one_old_s_n_0226,6662 -ineq_one_old_s_n_0([],_,Ix) :- Ix > 1.0e-10. % X = I: Ix > 0ineq_one_old_s_n_0226,6662 -ineq_one_old_s_n_0([],_,Ix) :- Ix > 1.0e-10. % X = I: Ix > 0ineq_one_old_s_n_0226,6662 -ineq_one_old_s_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_s_n_0227,6723 -ineq_one_old_s_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_s_n_0227,6723 -ineq_one_old_s_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_s_n_0227,6723 -ineq_one_old_s_p_i([],I,_,Ix) :- Ix + I < -1.0e-10. % X = Iineq_one_old_s_p_i244,7188 -ineq_one_old_s_p_i([],I,_,Ix) :- Ix + I < -1.0e-10. % X = Iineq_one_old_s_p_i244,7188 -ineq_one_old_s_p_i([],I,_,Ix) :- Ix + I < -1.0e-10. % X = Iineq_one_old_s_p_i244,7188 -ineq_one_old_s_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_p_i245,7248 -ineq_one_old_s_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_p_i245,7248 -ineq_one_old_s_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_p_i245,7248 -ineq_one_old_s_n_i([],I,_,Ix) :- -Ix + I < -1.0e-10. % X = Iineq_one_old_s_n_i262,7716 -ineq_one_old_s_n_i([],I,_,Ix) :- -Ix + I < -1.0e-10. % X = Iineq_one_old_s_n_i262,7716 -ineq_one_old_s_n_i([],I,_,Ix) :- -Ix + I < -1.0e-10. % X = Iineq_one_old_s_n_i262,7716 -ineq_one_old_s_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_n_i263,7777 -ineq_one_old_s_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_n_i263,7777 -ineq_one_old_s_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_s_n_i263,7777 -ineq_one_n_p_0(X) :-ineq_one_n_p_0282,8254 -ineq_one_n_p_0(X) :-ineq_one_n_p_0282,8254 -ineq_one_n_p_0(X) :-ineq_one_n_p_0282,8254 -ineq_one_n_p_0(X) :- % new variable, nothing depends on itineq_one_n_p_0291,8525 -ineq_one_n_p_0(X) :- % new variable, nothing depends on itineq_one_n_p_0291,8525 -ineq_one_n_p_0(X) :- % new variable, nothing depends on itineq_one_n_p_0291,8525 -ineq_one_n_n_0(X) :-ineq_one_n_n_0298,8689 -ineq_one_n_n_0(X) :-ineq_one_n_n_0298,8689 -ineq_one_n_n_0(X) :-ineq_one_n_n_0298,8689 -ineq_one_n_n_0(X) :-ineq_one_n_n_0307,8930 -ineq_one_n_n_0(X) :-ineq_one_n_n_0307,8930 -ineq_one_n_n_0(X) :-ineq_one_n_n_0307,8930 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i314,9059 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i314,9059 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i314,9059 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i323,9304 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i323,9304 -ineq_one_n_p_i(X,I) :-ineq_one_n_p_i323,9304 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i331,9450 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i331,9450 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i331,9450 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i340,9695 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i340,9695 -ineq_one_n_n_i(X,I) :-ineq_one_n_n_i340,9695 -ineq_one_old_n_p_0([],_,Ix) :- Ix < 1.0e-10. % X =Iineq_one_old_n_p_0347,9875 -ineq_one_old_n_p_0([],_,Ix) :- Ix < 1.0e-10. % X =Iineq_one_old_n_p_0347,9875 -ineq_one_old_n_p_0([],_,Ix) :- Ix < 1.0e-10. % X =Iineq_one_old_n_p_0347,9875 -ineq_one_old_n_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_n_p_0348,9927 -ineq_one_old_n_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_n_p_0348,9927 -ineq_one_old_n_p_0([l(Y*Ky,_)|Tail],X,Ix) :-ineq_one_old_n_p_0348,9927 -ineq_one_old_n_n_0([],_,Ix) :- Ix > -1.0e-10. % X = Iineq_one_old_n_n_0364,10367 -ineq_one_old_n_n_0([],_,Ix) :- Ix > -1.0e-10. % X = Iineq_one_old_n_n_0364,10367 -ineq_one_old_n_n_0([],_,Ix) :- Ix > -1.0e-10. % X = Iineq_one_old_n_n_0364,10367 -ineq_one_old_n_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_n_n_0365,10421 -ineq_one_old_n_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_n_n_0365,10421 -ineq_one_old_n_n_0([l(Y*Ky,_)|Tail], X, Ix) :-ineq_one_old_n_n_0365,10421 -ineq_one_old_n_p_i([],I,_,Ix) :- Ix + I < 1.0e-10. % X = Iineq_one_old_n_p_i382,10893 -ineq_one_old_n_p_i([],I,_,Ix) :- Ix + I < 1.0e-10. % X = Iineq_one_old_n_p_i382,10893 -ineq_one_old_n_p_i([],I,_,Ix) :- Ix + I < 1.0e-10. % X = Iineq_one_old_n_p_i382,10893 -ineq_one_old_n_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_p_i383,10952 -ineq_one_old_n_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_p_i383,10952 -ineq_one_old_n_p_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_p_i383,10952 -ineq_one_old_n_n_i([],I,_,Ix) :- -Ix + I < 1.0e-10. % X = Iineq_one_old_n_n_i400,11426 -ineq_one_old_n_n_i([],I,_,Ix) :- -Ix + I < 1.0e-10. % X = Iineq_one_old_n_n_i400,11426 -ineq_one_old_n_n_i([],I,_,Ix) :- -Ix + I < 1.0e-10. % X = Iineq_one_old_n_n_i400,11426 -ineq_one_old_n_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_n_i401,11486 -ineq_one_old_n_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_n_i401,11486 -ineq_one_old_n_n_i([l(Y*Ky,_)|Tail],I,X,Ix) :-ineq_one_old_n_n_i401,11486 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more420,11978 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more420,11978 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more420,11978 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more420,11978 -ineq_more([],I,_,Strictness) :- ineq_ground(Strictness,I). % I < 0 or I =< 0ineq_more420,11978 -ineq_more([l(X*K,_)|Tail],Id,Lind,Strictness) :-ineq_more421,12055 -ineq_more([l(X*K,_)|Tail],Id,Lind,Strictness) :-ineq_more421,12055 -ineq_more([l(X*K,_)|Tail],Id,Lind,Strictness) :-ineq_more421,12055 -ineq_more(strict,Lind) :-ineq_more436,12472 -ineq_more(strict,Lind) :-ineq_more436,12472 -ineq_more(strict,Lind) :-ineq_more436,12472 -ineq_more(nonstrict,Lind) :-ineq_more457,13382 -ineq_more(nonstrict,Lind) :-ineq_more457,13382 -ineq_more(nonstrict,Lind) :-ineq_more457,13382 -update_indep(strict,X,K,Bound) :-update_indep486,14474 -update_indep(strict,X,K,Bound) :-update_indep486,14474 -update_indep(strict,X,K,Bound) :-update_indep486,14474 -update_indep(nonstrict,X,K,Bound) :-update_indep495,14769 -update_indep(nonstrict,X,K,Bound) :-update_indep495,14769 -update_indep(nonstrict,X,K,Bound) :-update_indep495,14769 -udl(t_none,X,Lin,Bound,_Sold) :-udl541,16026 -udl(t_none,X,Lin,Bound,_Sold) :-udl541,16026 -udl(t_none,X,Lin,Bound,_Sold) :-udl541,16026 -udl(t_l(L),X,Lin,Bound,Sold) :-udl559,16628 -udl(t_l(L),X,Lin,Bound,Sold) :-udl559,16628 -udl(t_l(L),X,Lin,Bound,Sold) :-udl559,16628 -udl(t_u(U),X,Lin,Bound,_Sold) :-udl573,17150 -udl(t_u(U),X,Lin,Bound,_Sold) :-udl573,17150 -udl(t_u(U),X,Lin,Bound,_Sold) :-udl573,17150 -udl(t_lu(L,U),X,Lin,Bound,Sold) :-udl584,17608 -udl(t_lu(L,U),X,Lin,Bound,Sold) :-udl584,17608 -udl(t_lu(L,U),X,Lin,Bound,Sold) :-udl584,17608 -udls(t_none,X,Lin,Bound,_Sold) :-udls613,18494 -udls(t_none,X,Lin,Bound,_Sold) :-udls613,18494 -udls(t_none,X,Lin,Bound,_Sold) :-udls613,18494 -udls(t_l(L),X,Lin,Bound,Sold) :-udls631,19101 -udls(t_l(L),X,Lin,Bound,Sold) :-udls631,19101 -udls(t_l(L),X,Lin,Bound,Sold) :-udls631,19101 -udls(t_u(U),X,Lin,Bound,Sold) :-udls647,19605 -udls(t_u(U),X,Lin,Bound,Sold) :-udls647,19605 -udls(t_u(U),X,Lin,Bound,Sold) :-udls647,19605 -udls(t_lu(L,U),X,Lin,Bound,Sold) :-udls654,19848 -udls(t_lu(L,U),X,Lin,Bound,Sold) :-udls654,19848 -udls(t_lu(L,U),X,Lin,Bound,Sold) :-udls654,19848 -udu(t_none,X,Lin,Bound,_Sold) :-udu678,20603 -udu(t_none,X,Lin,Bound,_Sold) :-udu678,20603 -udu(t_none,X,Lin,Bound,_Sold) :-udu678,20603 -udu(t_u(U),X,Lin,Bound,Sold) :-udu696,21226 -udu(t_u(U),X,Lin,Bound,Sold) :-udu696,21226 -udu(t_u(U),X,Lin,Bound,Sold) :-udu696,21226 -udu(t_l(L),X,Lin,Bound,_Sold) :-udu709,21645 -udu(t_l(L),X,Lin,Bound,_Sold) :-udu709,21645 -udu(t_l(L),X,Lin,Bound,_Sold) :-udu709,21645 -udu(t_lu(L,U),X,Lin,Bound,Sold) :-udu720,22009 -udu(t_lu(L,U),X,Lin,Bound,Sold) :-udu720,22009 -udu(t_lu(L,U),X,Lin,Bound,Sold) :-udu720,22009 -udus(t_none,X,Lin,Bound,_Sold) :-udus749,22899 -udus(t_none,X,Lin,Bound,_Sold) :-udus749,22899 -udus(t_none,X,Lin,Bound,_Sold) :-udus749,22899 -udus(t_u(U),X,Lin,Bound,Sold) :-udus767,23507 -udus(t_u(U),X,Lin,Bound,Sold) :-udus767,23507 -udus(t_u(U),X,Lin,Bound,Sold) :-udus767,23507 -udus(t_l(L),X,Lin,Bound,Sold) :-udus783,24018 -udus(t_l(L),X,Lin,Bound,Sold) :-udus783,24018 -udus(t_l(L),X,Lin,Bound,Sold) :-udus783,24018 -udus(t_lu(L,U),X,Lin,Bound,Sold) :-udus790,24274 -udus(t_lu(L,U),X,Lin,Bound,Sold) :-udus790,24274 -udus(t_lu(L,U),X,Lin,Bound,Sold) :-udus790,24274 -uiu(t_none,X,_Lin,Bound,_) :- % X had no boundsuiu814,25026 -uiu(t_none,X,_Lin,Bound,_) :- % X had no boundsuiu814,25026 -uiu(t_none,X,_Lin,Bound,_) :- % X had no boundsuiu814,25026 -uiu(t_u(U),X,_Lin,Bound,Sold) :-uiu818,25159 -uiu(t_u(U),X,_Lin,Bound,Sold) :-uiu818,25159 -uiu(t_u(U),X,_Lin,Bound,Sold) :-uiu818,25159 -uiu(t_l(L),X,Lin,Bound,_Sold) :-uiu831,25631 -uiu(t_l(L),X,Lin,Bound,_Sold) :-uiu831,25631 -uiu(t_l(L),X,Lin,Bound,_Sold) :-uiu831,25631 -uiu(t_L(L),X,Lin,Bound,_Sold) :-uiu841,25999 -uiu(t_L(L),X,Lin,Bound,_Sold) :-uiu841,25999 -uiu(t_L(L),X,Lin,Bound,_Sold) :-uiu841,25999 -uiu(t_lu(L,U),X,Lin,Bound,Sold) :-uiu851,26290 -uiu(t_lu(L,U),X,Lin,Bound,Sold) :-uiu851,26290 -uiu(t_lu(L,U),X,Lin,Bound,Sold) :-uiu851,26290 -uiu(t_Lu(L,U),X,Lin,Bound,Sold) :- % See t_lu caseuiu871,27045 -uiu(t_Lu(L,U),X,Lin,Bound,Sold) :- % See t_lu caseuiu871,27045 -uiu(t_Lu(L,U),X,Lin,Bound,Sold) :- % See t_lu caseuiu871,27045 -uiu(t_U(U),X,_Lin,Bound,Sold) :-uiu889,27463 -uiu(t_U(U),X,_Lin,Bound,Sold) :-uiu889,27463 -uiu(t_U(U),X,_Lin,Bound,Sold) :-uiu889,27463 -uiu(t_lU(L,U),X,Lin,Bound,Sold) :-uiu917,28403 -uiu(t_lU(L,U),X,Lin,Bound,Sold) :-uiu917,28403 -uiu(t_lU(L,U),X,Lin,Bound,Sold) :-uiu917,28403 -uius(t_none,X,_Lin,Bound,_Sold) :-uius960,29743 -uius(t_none,X,_Lin,Bound,_Sold) :-uius960,29743 -uius(t_none,X,_Lin,Bound,_Sold) :-uius960,29743 -uius(t_u(U),X,_Lin,Bound,Sold) :-uius964,29863 -uius(t_u(U),X,_Lin,Bound,Sold) :-uius964,29863 -uius(t_u(U),X,_Lin,Bound,Sold) :-uius964,29863 -uius(t_l(L),X,_Lin,Bound,Sold) :-uius977,30195 -uius(t_l(L),X,_Lin,Bound,Sold) :-uius977,30195 -uius(t_l(L),X,_Lin,Bound,Sold) :-uius977,30195 -uius(t_L(L),X,_Lin,Bound,Sold) :-uius983,30366 -uius(t_L(L),X,_Lin,Bound,Sold) :-uius983,30366 -uius(t_L(L),X,_Lin,Bound,Sold) :-uius983,30366 -uius(t_lu(L,U),X,_Lin,Bound,Sold) :-uius989,30537 -uius(t_lu(L,U),X,_Lin,Bound,Sold) :-uius989,30537 -uius(t_lu(L,U),X,_Lin,Bound,Sold) :-uius989,30537 -uius(t_Lu(L,U),X,_Lin,Bound,Sold) :-uius1003,30901 -uius(t_Lu(L,U),X,_Lin,Bound,Sold) :-uius1003,30901 -uius(t_Lu(L,U),X,_Lin,Bound,Sold) :-uius1003,30901 -uius(t_U(U),X,_Lin,Bound,Sold) :-uius1017,31265 -uius(t_U(U),X,_Lin,Bound,Sold) :-uius1017,31265 -uius(t_U(U),X,_Lin,Bound,Sold) :-uius1017,31265 -uius(t_lU(L,U),X,_Lin,Bound,Sold) :-uius1045,32022 -uius(t_lU(L,U),X,_Lin,Bound,Sold) :-uius1045,32022 -uius(t_lU(L,U),X,_Lin,Bound,Sold) :-uius1045,32022 -uil(t_none,X,_Lin,Bound,_Sold) :-uil1082,33022 -uil(t_none,X,_Lin,Bound,_Sold) :-uil1082,33022 -uil(t_none,X,_Lin,Bound,_Sold) :-uil1082,33022 -uil(t_l(L),X,_Lin,Bound,Sold) :-uil1086,33141 -uil(t_l(L),X,_Lin,Bound,Sold) :-uil1086,33141 -uil(t_l(L),X,_Lin,Bound,Sold) :-uil1086,33141 -uil(t_u(U),X,Lin,Bound,_Sold) :-uil1097,33392 -uil(t_u(U),X,Lin,Bound,_Sold) :-uil1097,33392 -uil(t_u(U),X,Lin,Bound,_Sold) :-uil1097,33392 -uil(t_U(U),X,Lin,Bound,_Sold) :-uil1106,33599 -uil(t_U(U),X,Lin,Bound,_Sold) :-uil1106,33599 -uil(t_U(U),X,Lin,Bound,_Sold) :-uil1106,33599 -uil(t_lu(L,U),X,Lin,Bound,Sold) :-uil1115,33806 -uil(t_lu(L,U),X,Lin,Bound,Sold) :-uil1115,33806 -uil(t_lu(L,U),X,Lin,Bound,Sold) :-uil1115,33806 -uil(t_lU(L,U),X,Lin,Bound,Sold) :-uil1133,34208 -uil(t_lU(L,U),X,Lin,Bound,Sold) :-uil1133,34208 -uil(t_lU(L,U),X,Lin,Bound,Sold) :-uil1133,34208 -uil(t_L(L),X,_Lin,Bound,Sold) :-uil1151,34610 -uil(t_L(L),X,_Lin,Bound,Sold) :-uil1151,34610 -uil(t_L(L),X,_Lin,Bound,Sold) :-uil1151,34610 -uil(t_Lu(L,U),X,Lin,Bound,Sold) :-uil1177,35287 -uil(t_Lu(L,U),X,Lin,Bound,Sold) :-uil1177,35287 -uil(t_Lu(L,U),X,Lin,Bound,Sold) :-uil1177,35287 -uils(t_none,X,_Lin,Bound,_Sold) :-uils1217,36369 -uils(t_none,X,_Lin,Bound,_Sold) :-uils1217,36369 -uils(t_none,X,_Lin,Bound,_Sold) :-uils1217,36369 -uils(t_l(L),X,_Lin,Bound,Sold) :-uils1221,36489 -uils(t_l(L),X,_Lin,Bound,Sold) :-uils1221,36489 -uils(t_l(L),X,_Lin,Bound,Sold) :-uils1221,36489 -uils(t_u(U),X,_Lin,Bound,Sold) :-uils1234,36821 -uils(t_u(U),X,_Lin,Bound,Sold) :-uils1234,36821 -uils(t_u(U),X,_Lin,Bound,Sold) :-uils1234,36821 -uils(t_U(U),X,_Lin,Bound,Sold) :-uils1240,36992 -uils(t_U(U),X,_Lin,Bound,Sold) :-uils1240,36992 -uils(t_U(U),X,_Lin,Bound,Sold) :-uils1240,36992 -uils(t_lu(L,U),X,_Lin,Bound,Sold) :-uils1246,37163 -uils(t_lu(L,U),X,_Lin,Bound,Sold) :-uils1246,37163 -uils(t_lu(L,U),X,_Lin,Bound,Sold) :-uils1246,37163 -uils(t_lU(L,U),X,_Lin,Bound,Sold) :-uils1260,37527 -uils(t_lU(L,U),X,_Lin,Bound,Sold) :-uils1260,37527 -uils(t_lU(L,U),X,_Lin,Bound,Sold) :-uils1260,37527 -uils(t_L(L),X,_Lin,Bound,Sold) :-uils1274,37891 -uils(t_L(L),X,_Lin,Bound,Sold) :-uils1274,37891 -uils(t_L(L),X,_Lin,Bound,Sold) :-uils1274,37891 -uils(t_Lu(L,U),X,_Lin,Bound,Sold) :-uils1302,38649 -uils(t_Lu(L,U),X,_Lin,Bound,Sold) :-uils1302,38649 -uils(t_Lu(L,U),X,_Lin,Bound,Sold) :-uils1302,38649 -reconsider_upper(X,[I,R|H],U) :-reconsider_upper1341,39780 -reconsider_upper(X,[I,R|H],U) :-reconsider_upper1341,39780 -reconsider_upper(X,[I,R|H],U) :-reconsider_upper1341,39780 -reconsider_upper( _, _, _).reconsider_upper1347,39963 -reconsider_upper( _, _, _).reconsider_upper1347,39963 -reconsider_lower(X,[I,R|H],L) :-reconsider_lower1358,40327 -reconsider_lower(X,[I,R|H],L) :-reconsider_lower1358,40327 -reconsider_lower(X,[I,R|H],L) :-reconsider_lower1358,40327 -reconsider_lower(_,_,_).reconsider_lower1364,40509 -reconsider_lower(_,_,_).reconsider_lower1364,40509 -solve_bound(Lin,Bound) :-solve_bound1375,40723 -solve_bound(Lin,Bound) :-solve_bound1375,40723 -solve_bound(Lin,Bound) :-solve_bound1375,40723 -solve_bound(Lin,Bound) :-solve_bound1380,40805 -solve_bound(Lin,Bound) :-solve_bound1380,40805 -solve_bound(Lin,Bound) :-solve_bound1380,40805 - -packages/clpqr/clpr/itf_r.pl,6964 -do_checks(Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks67,2191 -do_checks(Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks67,2191 -do_checks(Y,Ty,St,Li,Or,Cl,No,Later) :-do_checks67,2191 -numbers_only(Y) :-numbers_only74,2352 -numbers_only(Y) :-numbers_only74,2352 -numbers_only(Y) :-numbers_only74,2352 -verify_nonzero(nonzero,Y) :-verify_nonzero87,2606 -verify_nonzero(nonzero,Y) :-verify_nonzero87,2606 -verify_nonzero(nonzero,Y) :-verify_nonzero87,2606 -verify_nonzero(n,_). % X is not nonzeroverify_nonzero98,2838 -verify_nonzero(n,_). % X is not nonzeroverify_nonzero98,2838 -verify_type(type(Type),strictness(Strict),Y) -->verify_type106,3115 -verify_type(type(Type),strictness(Strict),Y) -->verify_type106,3115 -verify_type(type(Type),strictness(Strict),Y) -->verify_type106,3115 -verify_type(n,n,_) --> [].verify_type108,3194 -verify_type(n,n,_) --> [].verify_type108,3194 -verify_type(n,n,_) --> [].verify_type108,3194 -verify_type2(Y,TypeX,StrictX) -->verify_type2110,3222 -verify_type2(Y,TypeX,StrictX) -->verify_type2110,3222 -verify_type2(Y,TypeX,StrictX) -->verify_type2110,3222 -verify_type2(Y,TypeX,StrictX) -->verify_type2114,3306 -verify_type2(Y,TypeX,StrictX) -->verify_type2114,3306 -verify_type2(Y,TypeX,StrictX) -->verify_type2114,3306 -verify_type_nonvar(t_none,_,_).verify_type_nonvar121,3502 -verify_type_nonvar(t_none,_,_).verify_type_nonvar121,3502 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3534 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3534 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3534 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3534 -verify_type_nonvar(t_l(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar122,3534 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3588 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3588 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3588 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3588 -verify_type_nonvar(t_u(U),Value,S) :- iub(S,U,Value).verify_type_nonvar123,3588 -verify_type_nonvar(t_lu(L,U),Value,S) :-verify_type_nonvar124,3642 -verify_type_nonvar(t_lu(L,U),Value,S) :-verify_type_nonvar124,3642 -verify_type_nonvar(t_lu(L,U),Value,S) :-verify_type_nonvar124,3642 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar127,3717 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar127,3717 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar127,3717 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar127,3717 -verify_type_nonvar(t_L(L),Value,S) :- ilb(S,L,Value).verify_type_nonvar127,3717 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar128,3771 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar128,3771 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar128,3771 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar128,3771 -verify_type_nonvar(t_U(U),Value,S) :- iub(S,U,Value).verify_type_nonvar128,3771 -verify_type_nonvar(t_Lu(L,U),Value,S) :-verify_type_nonvar129,3825 -verify_type_nonvar(t_Lu(L,U),Value,S) :-verify_type_nonvar129,3825 -verify_type_nonvar(t_Lu(L,U),Value,S) :-verify_type_nonvar129,3825 -verify_type_nonvar(t_lU(L,U),Value,S) :-verify_type_nonvar132,3900 -verify_type_nonvar(t_lU(L,U),Value,S) :-verify_type_nonvar132,3900 -verify_type_nonvar(t_lU(L,U),Value,S) :-verify_type_nonvar132,3900 -ilb(S,L,V) :-ilb146,4263 -ilb(S,L,V) :-ilb146,4263 -ilb(S,L,V) :-ilb146,4263 -ilb(_,L,V) :- L - V < -1.0e-10. % strictilb150,4327 -ilb(_,L,V) :- L - V < -1.0e-10. % strictilb150,4327 -ilb(_,L,V) :- L - V < -1.0e-10. % strictilb150,4327 -iub(S,U,V) :-iub152,4369 -iub(S,U,V) :-iub152,4369 -iub(S,U,V) :-iub152,4369 -iub(_,U,V) :- V - U < -1.0e-10. % strictiub156,4433 -iub(_,U,V) :- V - U < -1.0e-10. % strictiub156,4433 -iub(_,U,V) :- V - U < -1.0e-10. % strictiub156,4433 -verify_type_var(t_none,_,_) --> [].verify_type_var168,4792 -verify_type_var(t_none,_,_) --> [].verify_type_var168,4792 -verify_type_var(t_none,_,_) --> [].verify_type_var168,4792 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var169,4828 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var169,4828 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var169,4828 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var169,4828 -verify_type_var(t_l(L),Y,S) --> llb(S,L,Y).verify_type_var169,4828 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var170,4872 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var170,4872 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var170,4872 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var170,4872 -verify_type_var(t_u(U),Y,S) --> lub(S,U,Y).verify_type_var170,4872 -verify_type_var(t_lu(L,U),Y,S) -->verify_type_var171,4916 -verify_type_var(t_lu(L,U),Y,S) -->verify_type_var171,4916 -verify_type_var(t_lu(L,U),Y,S) -->verify_type_var171,4916 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var174,4977 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var174,4977 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var174,4977 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var174,4977 -verify_type_var(t_L(L),Y,S) --> llb(S,L,Y).verify_type_var174,4977 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var175,5021 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var175,5021 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var175,5021 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var175,5021 -verify_type_var(t_U(U),Y,S) --> lub(S,U,Y).verify_type_var175,5021 -verify_type_var(t_Lu(L,U),Y,S) -->verify_type_var176,5065 -verify_type_var(t_Lu(L,U),Y,S) -->verify_type_var176,5065 -verify_type_var(t_Lu(L,U),Y,S) -->verify_type_var176,5065 -verify_type_var(t_lU(L,U),Y,S) -->verify_type_var179,5126 -verify_type_var(t_lU(L,U),Y,S) -->verify_type_var179,5126 -verify_type_var(t_lU(L,U),Y,S) -->verify_type_var179,5126 -llb(S,L,V) -->llb187,5379 -llb(S,L,V) -->llb187,5379 -llb(S,L,V) -->llb187,5379 -llb(_,L,V) --> [clpr:{L < V}].llb191,5433 -llb(_,L,V) --> [clpr:{L < V}].llb191,5433 -llb(_,L,V) --> [clpr:{L < V}].llb191,5433 -lub(S,U,V) -->lub193,5465 -lub(S,U,V) -->lub193,5465 -lub(S,U,V) -->lub193,5465 -lub(_,U,V) --> [clpr:{V < U}].lub197,5519 -lub(_,U,V) --> [clpr:{V < U}].lub197,5519 -lub(_,U,V) --> [clpr:{V < U}].lub197,5519 -verify_lin(order(OrdX),class(Class),lin(LinX),Y) :-verify_lin207,5874 -verify_lin(order(OrdX),class(Class),lin(LinX),Y) :-verify_lin207,5874 -verify_lin(order(OrdX),class(Class),lin(LinX),Y) :-verify_lin207,5874 -verify_lin(_,_,_,_)verify_lin227,6441 -verify_lin(_,_,_,_)verify_lin227,6441 - -packages/clpqr/clpr/nf_r.pl,30541 -goal_expansion(geler(X,Y),geler(clpr,X,Y)).goal_expansion99,2724 -goal_expansion(geler(X,Y),geler(clpr,X,Y)).goal_expansion99,2724 -entailed(C) :-entailed162,3945 -entailed(C) :-entailed162,3945 -entailed(C) :-entailed162,3945 -negate(Rel,_) :-negate171,4121 -negate(Rel,_) :-negate171,4121 -negate(Rel,_) :-negate171,4121 -negate((A,B),(Na;Nb)) :-negate175,4199 -negate((A,B),(Na;Nb)) :-negate175,4199 -negate((A,B),(Na;Nb)) :-negate175,4199 -negate((A;B),(Na,Nb)) :-negate179,4258 -negate((A;B),(Na,Nb)) :-negate179,4258 -negate((A;B),(Na,Nb)) :-negate179,4258 -negate(A=B) :- !.negate183,4317 -negate(A=B) :- !.negate183,4317 -negate(A=B) :- !.negate183,4317 -negate(A>B,A=B,A=B,A=B) :- !.negate185,4363 -negate(A=B) :- !.negate185,4363 -negate(A=B) :- !.negate185,4363 -negate(A>=B,A=B,A=B,Aexpnonlin_2664,14866 -nonlin_2(pow(A,B),A,B,exp(X,Y),X,Y). % pow->expnonlin_2664,14866 -nonlin_2(A^B,A,B,exp(X,Y),X,Y).nonlin_2665,14914 -nonlin_2(A^B,A,B,exp(X,Y),X,Y).nonlin_2665,14914 -nf_nonlin_1(Skel,An,S1,Norm) :-nf_nonlin_1667,14947 -nf_nonlin_1(Skel,An,S1,Norm) :-nf_nonlin_1667,14947 -nf_nonlin_1(Skel,An,S1,Norm) :-nf_nonlin_1667,14947 -nf_nonlin_2(Skel,A1n,A2n,S1,S2,Norm) :-nf_nonlin_2673,15098 -nf_nonlin_2(Skel,A1n,A2n,S1,S2,Norm) :-nf_nonlin_2673,15098 -nf_nonlin_2(Skel,A1n,A2n,S1,S2,Norm) :-nf_nonlin_2673,15098 -nl_eval(abs(X),R) :- R is abs(X).nl_eval688,15474 -nl_eval(abs(X),R) :- R is abs(X).nl_eval688,15474 -nl_eval(abs(X),R) :- R is abs(X).nl_eval688,15474 -nl_eval(abs(X),R) :- R is abs(X).nl_eval688,15474 -nl_eval(abs(X),R) :- R is abs(X).nl_eval688,15474 -nl_eval(sin(X),R) :- R is sin(X).nl_eval689,15508 -nl_eval(sin(X),R) :- R is sin(X).nl_eval689,15508 -nl_eval(sin(X),R) :- R is sin(X).nl_eval689,15508 -nl_eval(sin(X),R) :- R is sin(X).nl_eval689,15508 -nl_eval(sin(X),R) :- R is sin(X).nl_eval689,15508 -nl_eval(cos(X),R) :- R is cos(X).nl_eval690,15542 -nl_eval(cos(X),R) :- R is cos(X).nl_eval690,15542 -nl_eval(cos(X),R) :- R is cos(X).nl_eval690,15542 -nl_eval(cos(X),R) :- R is cos(X).nl_eval690,15542 -nl_eval(cos(X),R) :- R is cos(X).nl_eval690,15542 -nl_eval(tan(X),R) :- R is tan(X).nl_eval691,15576 -nl_eval(tan(X),R) :- R is tan(X).nl_eval691,15576 -nl_eval(tan(X),R) :- R is tan(X).nl_eval691,15576 -nl_eval(tan(X),R) :- R is tan(X).nl_eval691,15576 -nl_eval(tan(X),R) :- R is tan(X).nl_eval691,15576 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval694,15693 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval694,15693 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval694,15693 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval694,15693 -nl_eval(min(X,Y),R) :- R is min(X,Y).nl_eval694,15693 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval695,15731 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval695,15731 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval695,15731 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval695,15731 -nl_eval(max(X,Y),R) :- R is max(X,Y).nl_eval695,15731 -nl_eval(exp(X,Y),R) :- R is X**Y.nl_eval696,15769 -nl_eval(exp(X,Y),R) :- R is X**Y.nl_eval696,15769 -nl_eval(exp(X,Y),R) :- R is X**Y.nl_eval696,15769 -monash_constant(X,_) :-monash_constant698,15804 -monash_constant(X,_) :-monash_constant698,15804 -monash_constant(X,_) :-monash_constant698,15804 -monash_constant(p,3.14259265).monash_constant702,15848 -monash_constant(p,3.14259265).monash_constant702,15848 -monash_constant(pi,3.14259265).monash_constant703,15879 -monash_constant(pi,3.14259265).monash_constant703,15879 -monash_constant(e,2.71828182).monash_constant704,15911 -monash_constant(e,2.71828182).monash_constant704,15911 -monash_constant(zero,1.0e-10).monash_constant705,15942 -monash_constant(zero,1.0e-10).monash_constant705,15942 -nf_constant([],0.0).nf_constant711,16023 -nf_constant([],0.0).nf_constant711,16023 -nf_constant([v(K,[])],K).nf_constant712,16044 -nf_constant([v(K,[])],K).nf_constant712,16044 -split([],[],0.0).split722,16293 -split([],[],0.0).split722,16293 -split([First|T],H,I) :-split723,16311 -split([First|T],H,I) :-split723,16311 -split([First|T],H,I) :-split723,16311 -nf_add([],Bs,Bs).nf_add736,16730 -nf_add([],Bs,Bs).nf_add736,16730 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add737,16748 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add737,16748 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add737,16748 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add737,16748 -nf_add([A|As],Bs,Cs) :- nf_add(Bs,A,As,Cs).nf_add737,16748 -nf_add([],A,As,Cs) :- Cs = [A|As].nf_add739,16793 -nf_add([],A,As,Cs) :- Cs = [A|As].nf_add739,16793 -nf_add([],A,As,Cs) :- Cs = [A|As].nf_add739,16793 -nf_add([B|Bs],A,As,Cs) :-nf_add740,16828 -nf_add([B|Bs],A,As,Cs) :-nf_add740,16828 -nf_add([B|Bs],A,As,Cs) :-nf_add740,16828 -nf_add_case(<,A,As,Cs,B,Bs,_,_,_) :-nf_add_case752,17210 -nf_add_case(<,A,As,Cs,B,Bs,_,_,_) :-nf_add_case752,17210 -nf_add_case(<,A,As,Cs,B,Bs,_,_,_) :-nf_add_case752,17210 -nf_add_case(>,A,As,Cs,B,Bs,_,_,_) :-nf_add_case755,17286 -nf_add_case(>,A,As,Cs,B,Bs,_,_,_) :-nf_add_case755,17286 -nf_add_case(>,A,As,Cs,B,Bs,_,_,_) :-nf_add_case755,17286 -nf_add_case(=,_,As,Cs,_,Bs,Ka,Kb,Pa) :-nf_add_case758,17362 -nf_add_case(=,_,As,Cs,_,Bs,Ka,Kb,Pa) :-nf_add_case758,17362 -nf_add_case(=,_,As,Cs,_,Bs,Ka,Kb,Pa) :-nf_add_case758,17362 -nf_mul(A,B,Res) :-nf_mul766,17546 -nf_mul(A,B,Res) :-nf_mul766,17546 -nf_mul(A,B,Res) :-nf_mul766,17546 -nf_mul_log(0,As,As,_,_,[]) :- !.nf_mul_log771,17645 -nf_mul_log(0,As,As,_,_,[]) :- !.nf_mul_log771,17645 -nf_mul_log(0,As,As,_,_,[]) :- !.nf_mul_log771,17645 -nf_mul_log(1,[A|As],As,Lb,B,R) :-nf_mul_log772,17678 -nf_mul_log(1,[A|As],As,Lb,B,R) :-nf_mul_log772,17678 -nf_mul_log(1,[A|As],As,Lb,B,R) :-nf_mul_log772,17678 -nf_mul_log(2,[A1,A2|As],As,Lb,B,R) :-nf_mul_log775,17749 -nf_mul_log(2,[A1,A2|As],As,Lb,B,R) :-nf_mul_log775,17749 -nf_mul_log(2,[A1,A2|As],As,Lb,B,R) :-nf_mul_log775,17749 -nf_mul_log(N,A0,A2,Lb,B,R) :-nf_mul_log780,17883 -nf_mul_log(N,A0,A2,Lb,B,R) :-nf_mul_log780,17883 -nf_mul_log(N,A0,A2,Lb,B,R) :-nf_mul_log780,17883 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2789,18095 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2789,18095 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2789,18095 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2789,18095 -nf_add_2(Af,Bf,Res) :- % unfold: nf_add([Af],[Bf],Res).nf_add_2789,18095 -nf_add_2_case(<,Af,Bf,[Af,Bf],_,_,_).nf_add_2_case795,18247 -nf_add_2_case(<,Af,Bf,[Af,Bf],_,_,_).nf_add_2_case795,18247 -nf_add_2_case(>,Af,Bf,[Bf,Af],_,_,_).nf_add_2_case796,18285 -nf_add_2_case(>,Af,Bf,[Bf,Af],_,_,_).nf_add_2_case796,18285 -nf_add_2_case(=,_, _,Res,Ka,Kb,Pa) :-nf_add_2_case797,18323 -nf_add_2_case(=,_, _,Res,Ka,Kb,Pa) :-nf_add_2_case797,18323 -nf_add_2_case(=,_, _,Res,Ka,Kb,Pa) :-nf_add_2_case797,18323 -nf_mul_k([],_,[]).nf_mul_k807,18605 -nf_mul_k([],_,[]).nf_mul_k807,18605 -nf_mul_k([v(I,P)|Vs],K,[v(Ki,P)|Vks]) :-nf_mul_k808,18624 -nf_mul_k([v(I,P)|Vs],K,[v(Ki,P)|Vks]) :-nf_mul_k808,18624 -nf_mul_k([v(I,P)|Vs],K,[v(Ki,P)|Vks]) :-nf_mul_k808,18624 -nf_mul_factor(v(K,[]),Sum,Res) :-nf_mul_factor816,18858 -nf_mul_factor(v(K,[]),Sum,Res) :-nf_mul_factor816,18858 -nf_mul_factor(v(K,[]),Sum,Res) :-nf_mul_factor816,18858 -nf_mul_factor(F,Sum,Res) :-nf_mul_factor819,18918 -nf_mul_factor(F,Sum,Res) :-nf_mul_factor819,18918 -nf_mul_factor(F,Sum,Res) :-nf_mul_factor819,18918 -nf_mul_factor_log(0,As,As,_,[]) :- !.nf_mul_factor_log829,19215 -nf_mul_factor_log(0,As,As,_,[]) :- !.nf_mul_factor_log829,19215 -nf_mul_factor_log(0,As,As,_,[]) :- !.nf_mul_factor_log829,19215 -nf_mul_factor_log(1,[A|As],As,F,[R]) :-nf_mul_factor_log830,19253 -nf_mul_factor_log(1,[A|As],As,F,[R]) :-nf_mul_factor_log830,19253 -nf_mul_factor_log(1,[A|As],As,F,[R]) :-nf_mul_factor_log830,19253 -nf_mul_factor_log(2,[A,B|As],As,F,Res) :-nf_mul_factor_log833,19311 -nf_mul_factor_log(2,[A,B|As],As,F,Res) :-nf_mul_factor_log833,19311 -nf_mul_factor_log(2,[A,B|As],As,F,Res) :-nf_mul_factor_log833,19311 -nf_mul_factor_log(N,A0,A2,F,R) :-nf_mul_factor_log838,19409 -nf_mul_factor_log(N,A0,A2,F,R) :-nf_mul_factor_log838,19409 -nf_mul_factor_log(N,A0,A2,F,R) :-nf_mul_factor_log838,19409 -mult(v(Ka,La),v(Kb,Lb),v(Kc,Lc)) :-mult849,19642 -mult(v(Ka,La),v(Kb,Lb),v(Kc,Lc)) :-mult849,19642 -mult(v(Ka,La),v(Kb,Lb),v(Kc,Lc)) :-mult849,19642 -pmerge([],Bs,Bs).pmerge857,19826 -pmerge([],Bs,Bs).pmerge857,19826 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge858,19844 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge858,19844 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge858,19844 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge858,19844 -pmerge([A|As],Bs,Cs) :- pmerge(Bs,A,As,Cs).pmerge858,19844 -pmerge([],A,As,Res) :- Res = [A|As].pmerge860,19889 -pmerge([],A,As,Res) :- Res = [A|As].pmerge860,19889 -pmerge([],A,As,Res) :- Res = [A|As].pmerge860,19889 -pmerge([B|Bs],A,As,Res) :-pmerge861,19926 -pmerge([B|Bs],A,As,Res) :-pmerge861,19926 -pmerge([B|Bs],A,As,Res) :-pmerge861,19926 -pmerge_case(<,A,As,Res,B,Bs,_,_,_) :-pmerge_case874,20268 -pmerge_case(<,A,As,Res,B,Bs,_,_,_) :-pmerge_case874,20268 -pmerge_case(<,A,As,Res,B,Bs,_,_,_) :-pmerge_case874,20268 -pmerge_case(>,A,As,Res,B,Bs,_,_,_) :-pmerge_case877,20346 -pmerge_case(>,A,As,Res,B,Bs,_,_,_) :-pmerge_case877,20346 -pmerge_case(>,A,As,Res,B,Bs,_,_,_) :-pmerge_case877,20346 -pmerge_case(=,_,As,Res,_,Bs,Ka,Kb,Xa) :-pmerge_case880,20424 -pmerge_case(=,_,As,Res,_,Bs,Ka,Kb,Xa) :-pmerge_case880,20424 -pmerge_case(=,_,As,Res,_,Bs,Ka,Kb,Xa) :-pmerge_case880,20424 -nf_div([],_,_) :-nf_div893,20717 -nf_div([],_,_) :-nf_div893,20717 -nf_div([],_,_) :-nf_div893,20717 -nf_div([v(K,P)],Sum,Res) :-nf_div897,20809 -nf_div([v(K,P)],Sum,Res) :-nf_div897,20809 -nf_div([v(K,P)],Sum,Res) :-nf_div897,20809 -nf_div(D,A,[v(1.0,[(A/D)^1])]).nf_div902,20909 -nf_div(D,A,[v(1.0,[(A/D)^1])]).nf_div902,20909 -zero_division :- fail. % raise_exception(_) ?zero_division907,21006 -mult_exp([],_,[]).mult_exp913,21204 -mult_exp([],_,[]).mult_exp913,21204 -mult_exp([X^P|Xs],K,[X^I|Tail]) :-mult_exp914,21223 -mult_exp([X^P|Xs],K,[X^I|Tail]) :-mult_exp914,21223 -mult_exp([X^P|Xs],K,[X^I|Tail]) :-mult_exp914,21223 -nf_power(N,Sum,Norm) :-nf_power923,21459 -nf_power(N,Sum,Norm) :-nf_power923,21459 -nf_power(N,Sum,Norm) :-nf_power923,21459 -nf_power_pos(1,Sum,Norm) :-nf_power_pos942,21842 -nf_power_pos(1,Sum,Norm) :-nf_power_pos942,21842 -nf_power_pos(1,Sum,Norm) :-nf_power_pos942,21842 -nf_power_pos(N,Sum,Norm) :-nf_power_pos945,21887 -nf_power_pos(N,Sum,Norm) :-nf_power_pos945,21887 -nf_power_pos(N,Sum,Norm) :-nf_power_pos945,21887 -binom(Sum,1,Power) :-binom953,22005 -binom(Sum,1,Power) :-binom953,22005 -binom(Sum,1,Power) :-binom953,22005 -binom([],_,[]).binom956,22045 -binom([],_,[]).binom956,22045 -binom([A|Bs],N,Power) :-binom957,22061 -binom([A|Bs],N,Power) :-binom957,22061 -binom([A|Bs],N,Power) :-binom957,22061 -combine_powers([],[],_,_,_,Pi,Pi).combine_powers967,22293 -combine_powers([],[],_,_,_,Pi,Pi).combine_powers967,22293 -combine_powers([A|As],[B|Bs],L,R,C,Pi,Po) :-combine_powers968,22328 -combine_powers([A|As],[B|Bs],L,R,C,Pi,Po) :-combine_powers968,22328 -combine_powers([A|As],[B|Bs],L,R,C,Pi,Po) :-combine_powers968,22328 -nf_power_factor(v(K,P),N,v(Kn,Pn)) :-nf_power_factor977,22513 -nf_power_factor(v(K,P),N,v(Kn,Pn)) :-nf_power_factor977,22513 -nf_power_factor(v(K,P),N,v(Kn,Pn)) :-nf_power_factor977,22513 -factor_powers(0,_,Prev,[[Prev]]) :- !.factor_powers981,22584 -factor_powers(0,_,Prev,[[Prev]]) :- !.factor_powers981,22584 -factor_powers(0,_,Prev,[[Prev]]) :- !.factor_powers981,22584 -factor_powers(N,F,Prev,[[Prev]|Ps]) :-factor_powers982,22623 -factor_powers(N,F,Prev,[[Prev]|Ps]) :-factor_powers982,22623 -factor_powers(N,F,Prev,[[Prev]|Ps]) :-factor_powers982,22623 -sum_powers(0,_,Prev,[Prev|Lt],Lt) :- !.sum_powers986,22724 -sum_powers(0,_,Prev,[Prev|Lt],Lt) :- !.sum_powers986,22724 -sum_powers(0,_,Prev,[Prev|Lt],Lt) :- !.sum_powers986,22724 -sum_powers(N,S,Prev,L0,Lt) :-sum_powers987,22764 -sum_powers(N,S,Prev,L0,Lt) :-sum_powers987,22764 -sum_powers(N,S,Prev,L0,Lt) :-sum_powers987,22764 -repair(Sum,Norm) :-repair993,22947 -repair(Sum,Norm) :-repair993,22947 -repair(Sum,Norm) :-repair993,22947 -repair_log(0,As,As,[]) :- !.repair_log996,23020 -repair_log(0,As,As,[]) :- !.repair_log996,23020 -repair_log(0,As,As,[]) :- !.repair_log996,23020 -repair_log(1,[v(Ka,Pa)|As],As,R) :-repair_log997,23049 -repair_log(1,[v(Ka,Pa)|As],As,R) :-repair_log997,23049 -repair_log(1,[v(Ka,Pa)|As],As,R) :-repair_log997,23049 -repair_log(2,[v(Ka,Pa),v(Kb,Pb)|As],As,R) :-repair_log1000,23112 -repair_log(2,[v(Ka,Pa),v(Kb,Pb)|As],As,R) :-repair_log1000,23112 -repair_log(2,[v(Ka,Pa),v(Kb,Pb)|As],As,R) :-repair_log1000,23112 -repair_log(N,A0,A2,R) :-repair_log1005,23227 -repair_log(N,A0,A2,R) :-repair_log1005,23227 -repair_log(N,A0,A2,R) :-repair_log1005,23227 -repair_term(K,P,Norm) :-repair_term1012,23344 -repair_term(K,P,Norm) :-repair_term1012,23344 -repair_term(K,P,Norm) :-repair_term1012,23344 -repair_p_log(0,Ps,Ps,[],L0,L0) :- !.repair_p_log1017,23464 -repair_p_log(0,Ps,Ps,[],L0,L0) :- !.repair_p_log1017,23464 -repair_p_log(0,Ps,Ps,[],L0,L0) :- !.repair_p_log1017,23464 -repair_p_log(1,[X^P|Ps],Ps,R,L0,L1) :-repair_p_log1018,23501 -repair_p_log(1,[X^P|Ps],Ps,R,L0,L1) :-repair_p_log1018,23501 -repair_p_log(1,[X^P|Ps],Ps,R,L0,L1) :-repair_p_log1018,23501 -repair_p_log(2,[X^Px,Y^Py|Ps],Ps,R,L0,L2) :-repair_p_log1021,23568 -repair_p_log(2,[X^Px,Y^Py|Ps],Ps,R,L0,L2) :-repair_p_log1021,23568 -repair_p_log(2,[X^Px,Y^Py|Ps],Ps,R,L0,L2) :-repair_p_log1021,23568 -repair_p_log(N,P0,P2,R,L0,L2) :-repair_p_log1026,23687 -repair_p_log(N,P0,P2,R,L0,L2) :-repair_p_log1026,23687 -repair_p_log(N,P0,P2,R,L0,L2) :-repair_p_log1026,23687 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p1033,23828 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p1033,23828 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p1033,23828 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p1033,23828 -repair_p(Term,P,[Term^P],L0,L0) :- var(Term).repair_p1033,23828 -repair_p(Term,P,[],L0,L1) :-repair_p1034,23874 -repair_p(Term,P,[],L0,L1) :-repair_p1034,23874 -repair_p(Term,P,[],L0,L1) :-repair_p1034,23874 -repair_p_one(Term,TermN) :-repair_p_one1044,24140 -repair_p_one(Term,TermN) :-repair_p_one1044,24140 -repair_p_one(Term,TermN) :-repair_p_one1044,24140 -repair_p_one(A1/A2,TermN) :-repair_p_one1047,24233 -repair_p_one(A1/A2,TermN) :-repair_p_one1047,24233 -repair_p_one(A1/A2,TermN) :-repair_p_one1047,24233 -repair_p_one(Term,TermN) :-repair_p_one1052,24324 -repair_p_one(Term,TermN) :-repair_p_one1052,24324 -repair_p_one(Term,TermN) :-repair_p_one1052,24324 -repair_p_one(Term,TermN) :-repair_p_one1057,24434 -repair_p_one(Term,TermN) :-repair_p_one1057,24434 -repair_p_one(Term,TermN) :-repair_p_one1057,24434 -repair_p_one(Term,TermN) :-repair_p_one1063,24578 -repair_p_one(Term,TermN) :-repair_p_one1063,24578 -repair_p_one(Term,TermN) :-repair_p_one1063,24578 -nf_length([],Li,Li).nf_length1066,24624 -nf_length([],Li,Li).nf_length1066,24624 -nf_length([_|R],Li,Lo) :-nf_length1067,24645 -nf_length([_|R],Li,Lo) :-nf_length1067,24645 -nf_length([_|R],Li,Lo) :-nf_length1067,24645 -nf2term([],0.0).nf2term1076,24882 -nf2term([],0.0).nf2term1076,24882 -nf2term([F|Fs],T) :-nf2term1078,24941 -nf2term([F|Fs],T) :-nf2term1078,24941 -nf2term([F|Fs],T) :-nf2term1078,24941 -yfx([],T0,T0).yfx1082,25023 -yfx([],T0,T0).yfx1082,25023 -yfx([F|Fs],T0,TN) :-yfx1083,25038 -yfx([F|Fs],T0,TN) :-yfx1083,25038 -yfx([F|Fs],T0,TN) :-yfx1083,25038 -f02t(v(K,P),T) :-f02t1092,25235 -f02t(v(K,P),T) :-f02t1092,25235 -f02t(v(K,P),T) :-f02t1092,25235 -fn2t(v(K,P),Term,Op) :-fn2t1111,25662 -fn2t(v(K,P),Term,Op) :-fn2t1111,25662 -fn2t(v(K,P),Term,Op) :-fn2t1111,25662 -p2term([X^P|Xs],Term) :-p2term1131,26085 -p2term([X^P|Xs],Term) :-p2term1131,26085 -p2term([X^P|Xs],Term) :-p2term1131,26085 -exp2term(1,X,X) :- !.exp2term1143,26277 -exp2term(1,X,X) :- !.exp2term1143,26277 -exp2term(1,X,X) :- !.exp2term1143,26277 -exp2term(-1,X,1.0/X) :- !.exp2term1144,26299 -exp2term(-1,X,1.0/X) :- !.exp2term1144,26299 -exp2term(-1,X,1.0/X) :- !.exp2term1144,26299 -exp2term(P,X,Term) :-exp2term1145,26326 -exp2term(P,X,Term) :-exp2term1145,26326 -exp2term(P,X,Term) :-exp2term1145,26326 -pe2term(X,Term) :-pe2term1149,26382 -pe2term(X,Term) :-pe2term1149,26382 -pe2term(X,Term) :-pe2term1149,26382 -pe2term(X,Term) :-pe2term1152,26421 -pe2term(X,Term) :-pe2term1152,26421 -pe2term(X,Term) :-pe2term1152,26421 -pe2term_args([],[]).pe2term_args1158,26518 -pe2term_args([],[]).pe2term_args1158,26518 -pe2term_args([A|As],[T|Ts]) :-pe2term_args1159,26539 -pe2term_args([A|As],[T|Ts]) :-pe2term_args1159,26539 -pe2term_args([A|As],[T|Ts]) :-pe2term_args1159,26539 -transg(resubmit_eq(Nf)) -->transg1170,26811 -transg(resubmit_eq(Nf)) -->transg1170,26811 -transg(resubmit_eq(Nf)) -->transg1170,26811 -transg(resubmit_lt(Nf)) -->transg1176,26906 -transg(resubmit_lt(Nf)) -->transg1176,26906 -transg(resubmit_lt(Nf)) -->transg1176,26906 -transg(resubmit_le(Nf)) -->transg1182,27001 -transg(resubmit_le(Nf)) -->transg1182,27001 -transg(resubmit_le(Nf)) -->transg1182,27001 -transg(resubmit_ne(Nf)) -->transg1188,27097 -transg(resubmit_ne(Nf)) -->transg1188,27097 -transg(resubmit_ne(Nf)) -->transg1188,27097 -transg(wait_linear_retry(Nf,Res,Goal)) -->transg1194,27194 -transg(wait_linear_retry(Nf,Res,Goal)) -->transg1194,27194 -transg(wait_linear_retry(Nf,Res,Goal)) -->transg1194,27194 -integerp(X) :-integerp1200,27292 -integerp(X) :-integerp1200,27292 -integerp(X) :-integerp1200,27292 -integerp(X,I) :-integerp1203,27323 -integerp(X,I) :-integerp1203,27323 -integerp(X,I) :-integerp1203,27323 - -packages/clpqr/clpr/store_r.pl,7254 -normalize_scalar(S,[S,0.0]).normalize_scalar63,2264 -normalize_scalar(S,[S,0.0]).normalize_scalar63,2264 -renormalize([I,R|Hom],Lin) :-renormalize73,2651 -renormalize([I,R|Hom],Lin) :-renormalize73,2651 -renormalize([I,R|Hom],Lin) :-renormalize73,2651 -renormalize_log(1,[Term|Xs],Xs,Lin) :-renormalize_log83,2923 -renormalize_log(1,[Term|Xs],Xs,Lin) :-renormalize_log83,2923 -renormalize_log(1,[Term|Xs],Xs,Lin) :-renormalize_log83,2923 -renormalize_log(2,[A,B|Xs],Xs,Lin) :-renormalize_log87,3018 -renormalize_log(2,[A,B|Xs],Xs,Lin) :-renormalize_log87,3018 -renormalize_log(2,[A,B|Xs],Xs,Lin) :-renormalize_log87,3018 -renormalize_log(N,L0,L2,Lin) :-renormalize_log94,3185 -renormalize_log(N,L0,L2,Lin) :-renormalize_log94,3185 -renormalize_log(N,L0,L2,Lin) :-renormalize_log94,3185 -renormalize_log_one(X,Term,Res) :-renormalize_log_one105,3439 -renormalize_log_one(X,Term,Res) :-renormalize_log_one105,3439 -renormalize_log_one(X,Term,Res) :-renormalize_log_one105,3439 -renormalize_log_one(X,Term,Res) :-renormalize_log_one111,3605 -renormalize_log_one(X,Term,Res) :-renormalize_log_one111,3605 -renormalize_log_one(X,Term,Res) :-renormalize_log_one111,3605 -add_linear_ff(LinA,Ka,LinB,Kb,LinC) :-add_linear_ff124,3998 -add_linear_ff(LinA,Ka,LinB,Kb,LinC) :-add_linear_ff124,3998 -add_linear_ff(LinA,Ka,LinB,Kb,LinC) :-add_linear_ff124,3998 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh137,4352 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh137,4352 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh137,4352 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh137,4352 -add_linear_ffh([],_,Ys,Kb,Zs) :- mult_hom(Ys,Kb,Zs).add_linear_ffh137,4352 -add_linear_ffh([l(X*Kx,OrdX)|Xs],Ka,Ys,Kb,Zs) :-add_linear_ffh138,4405 -add_linear_ffh([l(X*Kx,OrdX)|Xs],Ka,Ys,Kb,Zs) :-add_linear_ffh138,4405 -add_linear_ffh([l(X*Kx,OrdX)|Xs],Ka,Ys,Kb,Zs) :-add_linear_ffh138,4405 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh146,4718 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh146,4718 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh146,4718 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh146,4718 -add_linear_ffh([],X,Kx,OrdX,Xs,Zs,Ka,_) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_ffh146,4718 -add_linear_ffh([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka,Kb) :-add_linear_ffh147,4796 -add_linear_ffh([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka,Kb) :-add_linear_ffh147,4796 -add_linear_ffh([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka,Kb) :-add_linear_ffh147,4796 -add_linear_f1(LinA,Ka,LinB,LinC) :-add_linear_f1172,5412 -add_linear_f1(LinA,Ka,LinB,LinC) :-add_linear_f1172,5412 -add_linear_f1(LinA,Ka,LinB,LinC) :-add_linear_f1172,5412 -add_linear_f1h([],_,Ys,Ys).add_linear_f1h184,5653 -add_linear_f1h([],_,Ys,Ys).add_linear_f1h184,5653 -add_linear_f1h([l(X*Kx,OrdX)|Xs],Ka,Ys,Zs) :-add_linear_f1h185,5681 -add_linear_f1h([l(X*Kx,OrdX)|Xs],Ka,Ys,Zs) :-add_linear_f1h185,5681 -add_linear_f1h([l(X*Kx,OrdX)|Xs],Ka,Ys,Zs) :-add_linear_f1h185,5681 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h192,5858 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h192,5858 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h192,5858 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h192,5858 -add_linear_f1h([],X,Kx,OrdX,Xs,Zs,Ka) :- mult_hom([l(X*Kx,OrdX)|Xs],Ka,Zs).add_linear_f1h192,5858 -add_linear_f1h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka) :-add_linear_f1h193,5934 -add_linear_f1h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka) :-add_linear_f1h193,5934 -add_linear_f1h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs,Ka) :-add_linear_f1h193,5934 -add_linear_11(LinA,LinB,LinC) :-add_linear_11217,6525 -add_linear_11(LinA,LinB,LinC) :-add_linear_11217,6525 -add_linear_11(LinA,LinB,LinC) :-add_linear_11217,6525 -add_linear_11h([],Ys,Ys).add_linear_11h229,6762 -add_linear_11h([],Ys,Ys).add_linear_11h229,6762 -add_linear_11h([l(X*Kx,OrdX)|Xs],Ys,Zs) :-add_linear_11h230,6788 -add_linear_11h([l(X*Kx,OrdX)|Xs],Ys,Zs) :-add_linear_11h230,6788 -add_linear_11h([l(X*Kx,OrdX)|Xs],Ys,Zs) :-add_linear_11h230,6788 -add_linear_11h([],X,Kx,OrdX,Xs,[l(X*Kx,OrdX)|Xs]).add_linear_11h237,6967 -add_linear_11h([],X,Kx,OrdX,Xs,[l(X*Kx,OrdX)|Xs]).add_linear_11h237,6967 -add_linear_11h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs) :-add_linear_11h238,7018 -add_linear_11h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs) :-add_linear_11h238,7018 -add_linear_11h([l(Y*Ky,OrdY)|Ys],X,Kx,OrdX,Xs,Zs) :-add_linear_11h238,7018 -mult_linear_factor(Lin,K,Mult) :-mult_linear_factor262,7608 -mult_linear_factor(Lin,K,Mult) :-mult_linear_factor262,7608 -mult_linear_factor(Lin,K,Mult) :-mult_linear_factor262,7608 -mult_linear_factor(Lin,K,Res) :-mult_linear_factor268,7740 -mult_linear_factor(Lin,K,Res) :-mult_linear_factor268,7740 -mult_linear_factor(Lin,K,Res) :-mult_linear_factor268,7740 -mult_hom([],_,[]).mult_hom280,7972 -mult_hom([],_,[]).mult_hom280,7972 -mult_hom([l(A*Fa,OrdA)|As],F,[l(A*Fan,OrdA)|Afs]) :-mult_hom281,7991 -mult_hom([l(A*Fa,OrdA)|As],F,[l(A*Fan,OrdA)|Afs]) :-mult_hom281,7991 -mult_hom([l(A*Fa,OrdA)|As],F,[l(A*Fan,OrdA)|Afs]) :-mult_hom281,7991 -nf_substitute(OrdV,LinV,LinX,LinX1) :-nf_substitute291,8262 -nf_substitute(OrdV,LinV,LinX,LinX1) :-nf_substitute291,8262 -nf_substitute(OrdV,LinV,LinX,LinX1) :-nf_substitute291,8262 -delete_factor(OrdV,Lin,Res,Coeff) :-delete_factor300,8541 -delete_factor(OrdV,Lin,Res,Coeff) :-delete_factor300,8541 -delete_factor(OrdV,Lin,Res,Coeff) :-delete_factor300,8541 -delete_factor_hom(VOrd,[Car|Cdr],RCdr,RKoeff) :-delete_factor_hom310,8796 -delete_factor_hom(VOrd,[Car|Cdr],RCdr,RKoeff) :-delete_factor_hom310,8796 -delete_factor_hom(VOrd,[Car|Cdr],RCdr,RKoeff) :-delete_factor_hom310,8796 -nf_coeff_of([_,_|Hom],VOrd,Coeff) :-nf_coeff_of326,9123 -nf_coeff_of([_,_|Hom],VOrd,Coeff) :-nf_coeff_of326,9123 -nf_coeff_of([_,_|Hom],VOrd,Coeff) :-nf_coeff_of326,9123 -nf_coeff_hom([l(_*K,OVar)|Vs],OVid,Coeff) :-nf_coeff_hom334,9324 -nf_coeff_hom([l(_*K,OVar)|Vs],OVid,Coeff) :-nf_coeff_hom334,9324 -nf_coeff_hom([l(_*K,OVar)|Vs],OVid,Coeff) :-nf_coeff_hom334,9324 -nf_rhs_x(Lin,OrdX,Rhs,K) :-nf_rhs_x346,9576 -nf_rhs_x(Lin,OrdX,Rhs,K) :-nf_rhs_x346,9576 -nf_rhs_x(Lin,OrdX,Rhs,K) :-nf_rhs_x346,9576 -isolate(OrdN,Lin,Lin1) :-isolate356,9901 -isolate(OrdN,Lin,Lin1) :-isolate356,9901 -isolate(OrdN,Lin,Lin1) :-isolate356,9901 -indep(Lin,OrdX) :-indep365,10078 -indep(Lin,OrdX) :-indep365,10078 -indep(Lin,OrdX) :-indep365,10078 -nf2sum([],I,I).nf2sum381,10417 -nf2sum([],I,I).nf2sum381,10417 -nf2sum([X|Xs],I,Sum) :-nf2sum382,10433 -nf2sum([X|Xs],I,Sum) :-nf2sum382,10433 -nf2sum([X|Xs],I,Sum) :-nf2sum382,10433 -hom2sum([],Term,Term).hom2sum409,11031 -hom2sum([],Term,Term).hom2sum409,11031 -hom2sum([l(Var*K,_)|Cs],Sofar,Term) :-hom2sum410,11054 -hom2sum([l(Var*K,_)|Cs],Sofar,Term) :-hom2sum410,11054 -hom2sum([l(Var*K,_)|Cs],Sofar,Term) :-hom2sum410,11054 - -packages/clpqr/clpr.pl,1208 -user:portray_message(warning,import(_,_,clpr,private)).portray_message142,4259 -prolog:message(query(YesNo,Bindings)) --> !,message178,4946 -prolog:message(query(YesNo,Bindings)) --> !,message178,4946 -dump_toplevel_bindings(Bindings,Constraints) :-dump_toplevel_bindings184,5145 -dump_toplevel_bindings(Bindings,Constraints) :-dump_toplevel_bindings184,5145 -dump_toplevel_bindings(Bindings,Constraints) :-dump_toplevel_bindings184,5145 -dump_vars_names([],_,[],[]).dump_vars_names188,5267 -dump_vars_names([],_,[],[]).dump_vars_names188,5267 -dump_vars_names([Name=Term|Rest],Seen,Vars,Names) :-dump_vars_names189,5296 -dump_vars_names([Name=Term|Rest],Seen,Vars,Names) :-dump_vars_names189,5296 -dump_vars_names([Name=Term|Rest],Seen,Vars,Names) :-dump_vars_names189,5296 -dump_format([],[]).dump_format204,5652 -dump_format([],[]).dump_format204,5652 -dump_format([X|Xs],['{~w}'-[X],nl|Rest]) :-dump_format205,5672 -dump_format([X|Xs],['{~w}'-[X],nl|Rest]) :-dump_format205,5672 -dump_format([X|Xs],['{~w}'-[X],nl|Rest]) :-dump_format205,5672 -memberchk_eq(X,[Y|Ys]) :-memberchk_eq208,5740 -memberchk_eq(X,[Y|Ys]) :-memberchk_eq208,5740 -memberchk_eq(X,[Y|Ys]) :-memberchk_eq208,5740 - -packages/clpqr/install-sh,1398 -if [ x"$src" = x ]x95,1687 - dst=$srcdst104,1805 - instcmd=:instcmd108,1847 -defaultIFS=' defaultIFS153,2795 - pathcomp="${pathcomp}/"pathcomp176,3139 - if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&$dst184,3227 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&x185,3299 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&$dst185,3299 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&x186,3371 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&$dst186,3371 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fix187,3443 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi$dst187,3443 - if [ x"$transformarg" = x ] x192,3592 - if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&$dsttmp225,4337 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&x226,4410 - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&$dsttmp226,4410 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&x227,4483 - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&$dsttmp227,4483 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&x228,4556 - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&$dsttmp228,4556 - -packages/clpqr/Makefile.mak,574 -PLHOME=..\..PLHOME10,269 -LIBDIR=$(PLBASE)\libraryLIBDIR12,314 -EXDIR=$(PKGDOC)\examples\clprEXDIR13,339 -CLPDIR=$(LIBDIR)\clpCLPDIR14,369 -CLPRDIR=$(CLPDIR)\clprCLPRDIR15,390 -CLPQDIR=$(CLPDIR)\clpqCLPQDIR16,413 -CLPQRDIR=$(CLPDIR)\clpqrCLPQRDIR17,436 -PL="$(PLHOME)\bin\swipl.exe"PL18,461 -CLPRPRIV= bb_r.pl bv_r.pl fourmotz_r.pl ineq_r.pl \CLPRPRIV20,491 -CLPQPRIV= bb_q.pl bv_q.pl fourmotz_q.pl ineq_q.pl \CLPQPRIV22,573 -CLPQRPRIV= class.pl dump.pl geler.pl itf.pl ordering.pl \CLPQRPRIV24,655 -LIBPL= clpr.pl clpq.plLIBPL26,736 -EXAMPLES=EXAMPLES27,760 - -packages/clpqr/README,0 - -packages/CMakeFiles/3.5.2/CompilerIdC/CMakeCCompilerId.c,10138 -# define ID_VOID_MAINID_VOID_MAIN6,98 -# define COMPILER_ID COMPILER_ID14,303 -# define SIMULATE_ID SIMULATE_ID16,355 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR19,423 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR20,481 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH22,581 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH24,650 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK28,809 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR32,931 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR33,984 -# define COMPILER_ID COMPILER_ID37,1072 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR38,1105 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR39,1153 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH41,1243 -# define COMPILER_ID COMPILER_ID45,1374 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR46,1409 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR47,1481 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH48,1553 -# define COMPILER_ID COMPILER_ID51,1654 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53,1714 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR54,1767 -# define COMPILER_ID COMPILER_ID57,1874 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR59,1932 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR60,1987 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH62,2076 -# define COMPILER_ID COMPILER_ID66,2167 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR68,2236 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR69,2300 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH71,2389 -# define COMPILER_ID COMPILER_ID75,2479 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR78,2564 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR79,2617 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH80,2676 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2770 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2822 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,2880 -# define COMPILER_ID COMPILER_ID89,2970 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR91,3021 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR92,3072 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH93,3127 -# define COMPILER_ID COMPILER_ID96,3205 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR98,3266 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR99,3323 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH100,3385 -# define COMPILER_ID COMPILER_ID103,3503 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR105,3553 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR106,3603 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH107,3657 -# define COMPILER_ID COMPILER_ID110,3785 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR112,3834 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR113,3884 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH114,3938 -# define COMPILER_ID COMPILER_ID117,4065 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR119,4121 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR120,4171 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH121,4225 -# define COMPILER_ID COMPILER_ID124,4301 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR125,4328 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR126,4374 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH128,4460 -# define COMPILER_ID COMPILER_ID132,4549 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR133,4577 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR134,4629 -# define COMPILER_ID COMPILER_ID137,4721 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR139,4791 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR140,4860 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH141,4935 -# define COMPILER_ID COMPILER_ID144,5088 -# define COMPILER_ID COMPILER_ID147,5145 -# define COMPILER_ID COMPILER_ID150,5207 -# define COMPILER_ID COMPILER_ID153,5296 -# define SIMULATE_ID SIMULATE_ID155,5353 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR157,5390 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR158,5443 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH159,5496 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR162,5602 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR163,5655 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK165,5716 -# define COMPILER_ID COMPILER_ID168,5803 -# define SIMULATE_ID SIMULATE_ID170,5855 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR172,5892 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR173,5945 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH174,5998 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR177,6104 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR178,6157 -# define COMPILER_ID COMPILER_ID182,6243 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR183,6270 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR185,6345 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH188,6440 -# define COMPILER_ID COMPILER_ID192,6531 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR194,6583 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR195,6635 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH199,6774 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH202,6879 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK206,6982 -# define COMPILER_ID COMPILER_ID210,7154 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR213,7258 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR214,7320 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH215,7389 -# define COMPILER_ID COMPILER_ID219,7532 -# define COMPILER_ID COMPILER_ID222,7591 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR225,7685 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR226,7748 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH227,7815 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR230,7921 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR231,7983 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH232,8049 -# define COMPILER_ID COMPILER_ID237,8144 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR239,8191 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR240,8238 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH241,8289 -# define COMPILER_ID COMPILER_ID244,8408 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR247,8511 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR248,8575 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH249,8643 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR252,8750 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR253,8810 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH254,8874 -# define COMPILER_ID COMPILER_ID262,9135 -# define COMPILER_ID COMPILER_ID265,9208 -# define COMPILER_ID COMPILER_ID268,9264 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler275,9562 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate277,9649 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto281,9743 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray285,9838 -#define STRINGIFY_HELPER(STRINGIFY_HELPER288,9913 -#define STRINGIFY(STRINGIFY289,9944 -# define PLATFORM_ID PLATFORM_ID293,10088 -# define PLATFORM_ID PLATFORM_ID296,10144 -# define PLATFORM_ID PLATFORM_ID299,10202 -# define PLATFORM_ID PLATFORM_ID302,10257 -# define PLATFORM_ID PLATFORM_ID305,10350 -# define PLATFORM_ID PLATFORM_ID308,10431 -# define PLATFORM_ID PLATFORM_ID311,10510 -# define PLATFORM_ID PLATFORM_ID314,10590 -# define PLATFORM_ID PLATFORM_ID317,10659 -# define PLATFORM_ID PLATFORM_ID320,10785 -# define PLATFORM_ID PLATFORM_ID323,10871 -# define PLATFORM_ID PLATFORM_ID326,10943 -# define PLATFORM_ID PLATFORM_ID329,10998 -# define PLATFORM_ID PLATFORM_ID332,11089 -# define PLATFORM_ID PLATFORM_ID335,11164 -# define PLATFORM_ID PLATFORM_ID338,11256 -# define PLATFORM_ID PLATFORM_ID341,11333 -# define PLATFORM_ID PLATFORM_ID344,11431 -# define PLATFORM_ID PLATFORM_ID347,11488 -# define PLATFORM_ID PLATFORM_ID350,11545 -# define PLATFORM_ID PLATFORM_ID353,11615 -# define PLATFORM_ID PLATFORM_ID356,11687 -# define PLATFORM_ID PLATFORM_ID359,11777 -# define PLATFORM_ID PLATFORM_ID362,11875 -# define PLATFORM_ID PLATFORM_ID365,11968 -# define PLATFORM_ID PLATFORM_ID369,12049 -# define PLATFORM_ID PLATFORM_ID372,12104 -# define PLATFORM_ID PLATFORM_ID375,12157 -# define PLATFORM_ID PLATFORM_ID378,12214 -# define PLATFORM_ID PLATFORM_ID381,12279 -# define PLATFORM_ID PLATFORM_ID385,12342 -# define ARCHITECTURE_ID ARCHITECTURE_ID396,12685 -# define ARCHITECTURE_ID ARCHITECTURE_ID399,12763 -# define ARCHITECTURE_ID ARCHITECTURE_ID402,12820 -# define ARCHITECTURE_ID ARCHITECTURE_ID406,12894 -# define ARCHITECTURE_ID ARCHITECTURE_ID408,12950 -# define ARCHITECTURE_ID ARCHITECTURE_ID410,12994 -# define ARCHITECTURE_ID ARCHITECTURE_ID414,13080 -# define ARCHITECTURE_ID ARCHITECTURE_ID417,13136 -# define ARCHITECTURE_ID ARCHITECTURE_ID420,13203 -# define ARCHITECTURE_ID ARCHITECTURE_ID425,13289 -# define ARCHITECTURE_ID ARCHITECTURE_ID428,13346 -# define ARCHITECTURE_ID ARCHITECTURE_ID431,13413 -# define ARCHITECTURE_ID ARCHITECTURE_ID435,13457 -#define DEC(DEC439,13544 -#define HEX(HEX450,13893 -char const info_version[] = {info_version462,14255 -char const info_simulate_version[] = {info_simulate_version480,14752 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform500,15421 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch501,15489 -const char* info_language_dialect_default = "INFO" ":" "dialect_default["info_language_dialect_default506,15557 -void main() {}main520,15870 -int main(int argc, char* argv[])main522,15891 - -packages/CMakeFiles/3.5.2/CompilerIdCXX/CMakeCXXCompilerId.cpp,9959 -# define COMPILER_ID COMPILER_ID13,390 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR15,451 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR16,511 -# define COMPILER_ID COMPILER_ID19,622 -# define SIMULATE_ID SIMULATE_ID21,674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR24,742 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR25,800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH27,900 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH29,969 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK33,1128 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR37,1250 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR38,1303 -# define COMPILER_ID COMPILER_ID42,1391 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR43,1424 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR44,1472 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH46,1562 -# define COMPILER_ID COMPILER_ID50,1693 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR51,1728 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52,1800 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53,1872 -# define COMPILER_ID COMPILER_ID56,1973 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR58,2033 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR59,2086 -# define COMPILER_ID COMPILER_ID62,2193 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR64,2251 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR65,2306 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH67,2395 -# define COMPILER_ID COMPILER_ID71,2486 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR73,2555 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR74,2619 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH76,2708 -# define COMPILER_ID COMPILER_ID80,2799 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR83,2886 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR84,2940 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH85,3000 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR88,3095 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR89,3148 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH90,3207 -# define COMPILER_ID COMPILER_ID94,3299 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR96,3351 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR97,3403 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH98,3459 -# define COMPILER_ID COMPILER_ID101,3540 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR103,3603 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR104,3662 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH105,3726 -# define COMPILER_ID COMPILER_ID108,3848 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR110,3900 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR111,3952 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH112,4008 -# define COMPILER_ID COMPILER_ID115,4142 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR117,4193 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR118,4245 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH119,4301 -# define COMPILER_ID COMPILER_ID122,4434 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR124,4492 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR125,4544 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH126,4600 -# define COMPILER_ID COMPILER_ID129,4678 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR130,4705 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR131,4751 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH133,4837 -# define COMPILER_ID COMPILER_ID137,4926 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR138,4954 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR139,5006 -# define COMPILER_ID COMPILER_ID142,5098 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR144,5168 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR145,5237 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH146,5312 -# define COMPILER_ID COMPILER_ID149,5465 -# define COMPILER_ID COMPILER_ID152,5528 -# define COMPILER_ID COMPILER_ID155,5617 -# define SIMULATE_ID SIMULATE_ID157,5674 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR159,5711 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR160,5764 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH161,5817 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR164,5923 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR165,5976 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK167,6037 -# define COMPILER_ID COMPILER_ID170,6124 -# define SIMULATE_ID SIMULATE_ID172,6176 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR174,6213 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR175,6266 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH176,6319 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR179,6425 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR180,6478 -# define COMPILER_ID COMPILER_ID184,6564 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR185,6591 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR187,6666 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH190,6761 -# define COMPILER_ID COMPILER_ID194,6852 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR196,6904 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR197,6956 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH201,7095 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH204,7200 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK208,7303 -# define COMPILER_ID COMPILER_ID212,7475 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR215,7579 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR216,7641 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH217,7710 -# define COMPILER_ID COMPILER_ID221,7853 -# define COMPILER_ID COMPILER_ID224,7912 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR227,8006 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR228,8069 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH229,8136 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR232,8242 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR233,8304 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH234,8370 -# define COMPILER_ID COMPILER_ID239,8512 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR242,8615 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR243,8679 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH244,8747 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR247,8854 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR248,8914 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH249,8978 -# define COMPILER_ID COMPILER_ID257,9239 -# define COMPILER_ID COMPILER_ID260,9312 -# define COMPILER_ID COMPILER_ID263,9368 -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";info_compiler270,9666 -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";info_simulate272,9753 -char const* qnxnto = "INFO" ":" "qnxnto[]";qnxnto276,9847 -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";info_cray280,9942 -#define STRINGIFY_HELPER(STRINGIFY_HELPER283,10017 -#define STRINGIFY(STRINGIFY284,10048 -# define PLATFORM_ID PLATFORM_ID288,10192 -# define PLATFORM_ID PLATFORM_ID291,10248 -# define PLATFORM_ID PLATFORM_ID294,10306 -# define PLATFORM_ID PLATFORM_ID297,10361 -# define PLATFORM_ID PLATFORM_ID300,10454 -# define PLATFORM_ID PLATFORM_ID303,10535 -# define PLATFORM_ID PLATFORM_ID306,10614 -# define PLATFORM_ID PLATFORM_ID309,10694 -# define PLATFORM_ID PLATFORM_ID312,10763 -# define PLATFORM_ID PLATFORM_ID315,10889 -# define PLATFORM_ID PLATFORM_ID318,10975 -# define PLATFORM_ID PLATFORM_ID321,11047 -# define PLATFORM_ID PLATFORM_ID324,11102 -# define PLATFORM_ID PLATFORM_ID327,11193 -# define PLATFORM_ID PLATFORM_ID330,11268 -# define PLATFORM_ID PLATFORM_ID333,11360 -# define PLATFORM_ID PLATFORM_ID336,11437 -# define PLATFORM_ID PLATFORM_ID339,11535 -# define PLATFORM_ID PLATFORM_ID342,11592 -# define PLATFORM_ID PLATFORM_ID345,11649 -# define PLATFORM_ID PLATFORM_ID348,11719 -# define PLATFORM_ID PLATFORM_ID351,11791 -# define PLATFORM_ID PLATFORM_ID354,11881 -# define PLATFORM_ID PLATFORM_ID357,11979 -# define PLATFORM_ID PLATFORM_ID360,12072 -# define PLATFORM_ID PLATFORM_ID364,12153 -# define PLATFORM_ID PLATFORM_ID367,12208 -# define PLATFORM_ID PLATFORM_ID370,12261 -# define PLATFORM_ID PLATFORM_ID373,12318 -# define PLATFORM_ID PLATFORM_ID376,12383 -# define PLATFORM_ID PLATFORM_ID380,12446 -# define ARCHITECTURE_ID ARCHITECTURE_ID391,12789 -# define ARCHITECTURE_ID ARCHITECTURE_ID394,12867 -# define ARCHITECTURE_ID ARCHITECTURE_ID397,12924 -# define ARCHITECTURE_ID ARCHITECTURE_ID401,12998 -# define ARCHITECTURE_ID ARCHITECTURE_ID403,13054 -# define ARCHITECTURE_ID ARCHITECTURE_ID405,13098 -# define ARCHITECTURE_ID ARCHITECTURE_ID409,13184 -# define ARCHITECTURE_ID ARCHITECTURE_ID412,13240 -# define ARCHITECTURE_ID ARCHITECTURE_ID415,13307 -# define ARCHITECTURE_ID ARCHITECTURE_ID420,13393 -# define ARCHITECTURE_ID ARCHITECTURE_ID423,13450 -# define ARCHITECTURE_ID ARCHITECTURE_ID426,13517 -# define ARCHITECTURE_ID ARCHITECTURE_ID430,13561 -#define DEC(DEC434,13648 -#define HEX(HEX445,13997 -char const info_version[] = {info_version457,14359 -char const info_simulate_version[] = {info_simulate_version475,14856 -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";info_platform495,15525 -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";info_arch496,15593 -const char* info_language_dialect_default = "INFO" ":" "dialect_default["info_language_dialect_default501,15661 -int main(int argc, char* argv[])main513,15911 - -packages/CMakeFiles/CheckTypeSize/CELLSIZE.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,381 -int main(argc, argv) int argc; char *argv[];main31,682 - -packages/CMakeFiles/CheckTypeSize/RL_COMPLETION_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,392 -int main(argc, argv) int argc; char *argv[];main31,693 - -packages/CMakeFiles/CheckTypeSize/RL_HOOK_FUNC_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,386 -int main(argc, argv) int argc; char *argv[];main31,687 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_DOUBLE.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_FLOAT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,377 -int main(argc, argv) int argc; char *argv[];main31,678 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,375 -int main(argc, argv) int argc; char *argv[];main31,676 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_INT_P.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,377 -int main(argc, argv) int argc; char *argv[];main31,678 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_LONG.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,380 -int main(argc, argv) int argc; char *argv[];main31,681 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_LONG_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,380 -int main(argc, argv) int argc; char *argv[];main31,681 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_LONG_LONG.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,385 -int main(argc, argv) int argc; char *argv[];main31,686 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_LONG_LONG_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,385 -int main(argc, argv) int argc; char *argv[];main31,686 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_SHORT_INT.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,381 -int main(argc, argv) int argc; char *argv[];main31,682 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_VOID_P.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_VOIDP.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,378 -int main(argc, argv) int argc; char *argv[];main31,679 - -packages/CMakeFiles/CheckTypeSize/SIZEOF_WCHAR_T.c,285 -#undef KEYKEY6,65 -# define KEY KEY8,96 -# define KEY KEY10,157 -# define KEY KEY12,225 -# define KEY KEY14,291 -#define SIZE SIZE17,348 -char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',info_size18,379 -int main(argc, argv) int argc; char *argv[];main31,680 - -packages/CMakeFiles/git-data/HEAD,0 - -packages/CMakeFiles/git-data/head-ref,0 - -packages/CMakeFiles/Makefile2,0 - -packages/cplint/approx/bestfirst.pl,7349 -:- dynamic rule/4, def_rule/2.dynamic8,320 -:- dynamic rule/4, def_rule/2.dynamic8,320 -solve(Goals, ProbLow, ProbUp, Count, ResTime, BddTime) :-solve59,2077 -solve(Goals, ProbLow, ProbUp, Count, ResTime, BddTime) :-solve59,2077 -solve(Goals, ProbLow, ProbUp, Count, ResTime, BddTime) :-solve59,2077 -bestfirst(GoalsList, Number, Amount, MinError, ProbStep, LowerProb1, UpperProb1, Count0, Count1, ResTime0, ResTime1, BddTime0, BddTime1) :-bestfirst103,3782 -bestfirst(GoalsList, Number, Amount, MinError, ProbStep, LowerProb1, UpperProb1, Count0, Count1, ResTime0, ResTime1, BddTime0, BddTime1) :-bestfirst103,3782 -bestfirst(GoalsList, Number, Amount, MinError, ProbStep, LowerProb1, UpperProb1, Count0, Count1, ResTime0, ResTime1, BddTime0, BddTime1) :-bestfirst103,3782 -main([], _Amount, _Step, []) :- !.main171,6069 -main([], _Amount, _Step, []) :- !.main171,6069 -main([], _Amount, _Step, []) :- !.main171,6069 -main(Pending, Amount, _Step, Pending) :-main174,6185 -main(Pending, Amount, _Step, Pending) :-main174,6185 -main(Pending, Amount, _Step, Pending) :-main174,6185 -main([Prob0-(Gnd0, Var0, Goals0)|Tail], Amount, Step, Pending) :-main178,6335 -main([Prob0-(Gnd0, Var0, Goals0)|Tail], Amount, Step, Pending) :-main178,6335 -main([Prob0-(Gnd0, Var0, Goals0)|Tail], Amount, Step, Pending) :-main178,6335 -merge(Sorted, [], Sorted) :- !.merge210,7481 -merge(Sorted, [], Sorted) :- !.merge210,7481 -merge(Sorted, [], Sorted) :- !.merge210,7481 -merge([], Sorted, Sorted).merge213,7635 -merge([], Sorted, Sorted).merge213,7635 -merge([ProbA-(GndA, VarA, GoalsA)|TailA], [ProbB-(GndB, VarB, GoalsB)|TailB], [ProbA-(GndA, VarA, GoalsA)|Tail]) :-merge216,7783 -merge([ProbA-(GndA, VarA, GoalsA)|TailA], [ProbB-(GndB, VarB, GoalsB)|TailB], [ProbA-(GndA, VarA, GoalsA)|Tail]) :-merge216,7783 -merge([ProbA-(GndA, VarA, GoalsA)|TailA], [ProbB-(GndB, VarB, GoalsB)|TailB], [ProbA-(GndA, VarA, GoalsA)|Tail]) :-merge216,7783 -merge([ProbA-(GndA, VarA, GoalsA)|TailA], [ProbB-(GndB, VarB, GoalsB)|TailB], [ProbB-(GndB, VarB, GoalsB)|Tail]) :-merge221,8077 -merge([ProbA-(GndA, VarA, GoalsA)|TailA], [ProbB-(GndB, VarB, GoalsB)|TailB], [ProbB-(GndB, VarB, GoalsB)|Tail]) :-merge221,8077 -merge([ProbA-(GndA, VarA, GoalsA)|TailA], [ProbB-(GndB, VarB, GoalsB)|TailB], [ProbB-(GndB, VarB, GoalsB)|Tail]) :-merge221,8077 -separate(List, Low, Up, Next) :-separate243,8853 -separate(List, Low, Up, Next) :-separate243,8853 -separate(List, Low, Up, Next) :-separate243,8853 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate247,8994 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate247,8994 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate247,8994 -separate([_Prob-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Gnd0|Up1], Next0, Next1) :- !, separate250,9130 -separate([_Prob-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Gnd0|Up1], Next0, Next1) :- !, separate250,9130 -separate([_Prob-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Gnd0|Up1], Next0, Next1) :- !, separate250,9130 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Gnd1|Up1], Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- separate253,9282 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Gnd1|Up1], Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- separate253,9282 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Gnd1|Up1], Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- separate253,9282 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore282,10480 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore282,10480 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore282,10480 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore285,10631 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore285,10631 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore285,10631 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore290,10839 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore290,10839 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore290,10839 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore297,11120 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore297,11120 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore297,11120 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore316,11988 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore316,11988 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore316,11988 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore326,12367 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore326,12367 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore326,12367 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore336,12774 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore336,12774 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore336,12774 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres340,13010 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres340,13010 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres340,13010 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres350,13451 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres350,13451 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres350,13451 -eval_lower(Number, Prob) :- eval_lower366,14062 -eval_lower(Number, Prob) :- eval_lower366,14062 -eval_lower(Number, Prob) :- eval_lower366,14062 -eval_lower(Number, ProbLow) :-eval_lower369,14116 -eval_lower(Number, ProbLow) :-eval_lower369,14116 -eval_lower(Number, ProbLow) :-eval_lower369,14116 -eval_upper(0, ProbUp) :- !,eval_upper389,14645 -eval_upper(0, ProbUp) :- !,eval_upper389,14645 -eval_upper(0, ProbUp) :- !,eval_upper389,14645 -eval_upper(_Number, ProbUp) :-eval_upper392,14694 -eval_upper(_Number, ProbUp) :-eval_upper392,14694 -eval_upper(_Number, ProbUp) :-eval_upper392,14694 -run_file(BDDFile, BDDParFile, Prob) :-run_file407,15089 -run_file(BDDFile, BDDParFile, Prob) :-run_file407,15089 -run_file(BDDFile, BDDParFile, Prob) :-run_file407,15089 -insert_list_ptree([], _Trie).insert_list_ptree446,16190 -insert_list_ptree([], _Trie).insert_list_ptree446,16190 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree448,16223 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree448,16223 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree448,16223 - -packages/cplint/approx/bestk.pl,14064 -:- dynamic rule/4, def_rule/2.dynamic8,320 -:- dynamic rule/4, def_rule/2.dynamic8,320 -solve(Goals, Prob, ResTime, BddTime) :-solve57,1903 -solve(Goals, Prob, ResTime, BddTime) :-solve57,1903 -solve(Goals, Prob, ResTime, BddTime) :-solve57,1903 -bestk(GoalsList, K, ProbStep, Prob, ResTime, BddTime) :-bestk82,2835 -bestk(GoalsList, K, ProbStep, Prob, ResTime, BddTime) :-bestk82,2835 -bestk(GoalsList, K, ProbStep, Prob, ResTime, BddTime) :-bestk82,2835 -main(Goals, K, ProbStep, Best) :-main122,3960 -main(Goals, K, ProbStep, Best) :-main122,3960 -main(Goals, K, ProbStep, Best) :-main122,3960 -main([], _ProbStep, _Left, _Worst, Best, Best).main126,4050 -main([], _ProbStep, _Left, _Worst, Best, Best).main126,4050 -main(Goals, ProbStep, Left0, Worst0, Best0, Best1) :-main128,4101 -main(Goals, ProbStep, Left0, Worst0, Best0, Best1) :-main128,4101 -main(Goals, ProbStep, Left0, Worst0, Best0, Best1) :-main128,4101 -sepkeepbest([], Left, Left, Worst, Worst, List, List, Next, Next) :- !.sepkeepbest160,5692 -sepkeepbest([], Left, Left, Worst, Worst, List, List, Next, Next) :- !.sepkeepbest160,5692 -sepkeepbest([], Left, Left, Worst, Worst, List, List, Next, Next) :- !.sepkeepbest160,5692 -sepkeepbest([Prob0-(_Gnd0, [], [])|Tail], 0, Left1, Worst0, Worst1, List0, List1, Next0, Next1) :-sepkeepbest163,5853 -sepkeepbest([Prob0-(_Gnd0, [], [])|Tail], 0, Left1, Worst0, Worst1, List0, List1, Next0, Next1) :-sepkeepbest163,5853 -sepkeepbest([Prob0-(_Gnd0, [], [])|Tail], 0, Left1, Worst0, Worst1, List0, List1, Next0, Next1) :-sepkeepbest163,5853 -sepkeepbest([Prob0-(Gnd0, [], [])|Tail], 0, Left1, Worst0, Worst1, List0, List1, Next0, Next1) :-sepkeepbest167,6053 -sepkeepbest([Prob0-(Gnd0, [], [])|Tail], 0, Left1, Worst0, Worst1, List0, List1, Next0, Next1) :-sepkeepbest167,6053 -sepkeepbest([Prob0-(Gnd0, [], [])|Tail], 0, Left1, Worst0, Worst1, List0, List1, Next0, Next1) :-sepkeepbest167,6053 -sepkeepbest([Prob0-(Gnd0, [], [])|Tail], Left0, Left1, Worst0, Worst1, List0, List1, Next0, Next1) :- !,sepkeepbest172,6305 -sepkeepbest([Prob0-(Gnd0, [], [])|Tail], Left0, Left1, Worst0, Worst1, List0, List1, Next0, Next1) :- !,sepkeepbest172,6305 -sepkeepbest([Prob0-(Gnd0, [], [])|Tail], Left0, Left1, Worst0, Worst1, List0, List1, Next0, Next1) :- !,sepkeepbest172,6305 -sepkeepbest([Prob0-(Gnd0, Var0, Goals)|Tail], Left0, Left1, Worst0, Worst1, List0, List1, Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- sepkeepbest177,6576 -sepkeepbest([Prob0-(Gnd0, Var0, Goals)|Tail], Left0, Left1, Worst0, Worst1, List0, List1, Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- sepkeepbest177,6576 -sepkeepbest([Prob0-(Gnd0, Var0, Goals)|Tail], Left0, Left1, Worst0, Worst1, List0, List1, Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- sepkeepbest177,6576 -separate(List, Low, Up, Next) :-separate200,7378 -separate(List, Low, Up, Next) :-separate200,7378 -separate(List, Low, Up, Next) :-separate200,7378 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate204,7519 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate204,7519 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate204,7519 -separate([Prob0-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Prob0-(Gnd0, [], [])|Up1], Next0, Next1) :- !, separate207,7655 -separate([Prob0-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Prob0-(Gnd0, [], [])|Up1], Next0, Next1) :- !, separate207,7655 -separate([Prob0-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Prob0-(Gnd0, [], [])|Up1], Next0, Next1) :- !, separate207,7655 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Prob0-(Gnd0, Var0, Goals)|Up1], Next0, [Prob0-(Gnd0, Var0, Goals)|Next1]) :- separate210,7823 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Prob0-(Gnd0, Var0, Goals)|Up1], Next0, [Prob0-(Gnd0, Var0, Goals)|Next1]) :- separate210,7823 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Prob0-(Gnd0, Var0, Goals)|Up1], Next0, [Prob0-(Gnd0, Var0, Goals)|Next1]) :- separate210,7823 -separate_main([], Low, Low, Up, Up, Next, Next) :- !.separate_main213,8019 -separate_main([], Low, Low, Up, Up, Next, Next) :- !.separate_main213,8019 -separate_main([], Low, Low, Up, Up, Next, Next) :- !.separate_main213,8019 -separate_main([Prob0-_Bound0-(Gnd0, [], [])|Tail], Low0, [Prob0-(Gnd0, [], [])|Low1], Up0, [Prob0-(Gnd0, [], [])|Up1], Next0, Next1) :- !, separate_main216,8160 -separate_main([Prob0-_Bound0-(Gnd0, [], [])|Tail], Low0, [Prob0-(Gnd0, [], [])|Low1], Up0, [Prob0-(Gnd0, [], [])|Up1], Next0, Next1) :- !, separate_main216,8160 -separate_main([Prob0-_Bound0-(Gnd0, [], [])|Tail], Low0, [Prob0-(Gnd0, [], [])|Low1], Up0, [Prob0-(Gnd0, [], [])|Up1], Next0, Next1) :- !, separate_main216,8160 -separate_main([Prob0-Bound0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Prob0-Bound0-(Gnd0, Var0, Goals)|Up1], Next0, [Prob0-Bound0-(Gnd0, Var0, Goals)|Next1]) :- separate_main219,8362 -separate_main([Prob0-Bound0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Prob0-Bound0-(Gnd0, Var0, Goals)|Up1], Next0, [Prob0-Bound0-(Gnd0, Var0, Goals)|Next1]) :- separate_main219,8362 -separate_main([Prob0-Bound0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Prob0-Bound0-(Gnd0, Var0, Goals)|Up1], Next0, [Prob0-Bound0-(Gnd0, Var0, Goals)|Next1]) :- separate_main219,8362 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore245,9505 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore245,9505 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore245,9505 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore248,9656 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore248,9656 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore248,9656 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore253,9864 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore253,9864 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore253,9864 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore260,10145 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore260,10145 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore260,10145 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore279,10998 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore279,10998 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore279,10998 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore286,11276 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore286,11276 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore286,11276 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore293,11582 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore293,11582 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore293,11582 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres297,11818 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres297,11818 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres297,11818 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres304,12158 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres304,12158 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres304,12158 -keepbest(List, K, BestK) :-keepbest328,12976 -keepbest(List, K, BestK) :-keepbest328,12976 -keepbest(List, K, BestK) :-keepbest328,12976 -keepbest([Prob-(_Gnd, _Var, _Goals)|Tail], 0, Worst, List0, List1) :-keepbest334,13114 -keepbest([Prob-(_Gnd, _Var, _Goals)|Tail], 0, Worst, List0, List1) :-keepbest334,13114 -keepbest([Prob-(_Gnd, _Var, _Goals)|Tail], 0, Worst, List0, List1) :-keepbest334,13114 -keepbest([Prob-(Gnd, Var, Goals)|Tail], 0, Worst, List0, List1) :-keepbest338,13249 -keepbest([Prob-(Gnd, Var, Goals)|Tail], 0, Worst, List0, List1) :-keepbest338,13249 -keepbest([Prob-(Gnd, Var, Goals)|Tail], 0, Worst, List0, List1) :-keepbest338,13249 -keepbest([Prob-(Gnd, Var, Goals)|Tail], Left, Worst, List0, List1) :-keepbest343,13439 -keepbest([Prob-(Gnd, Var, Goals)|Tail], Left, Worst, List0, List1) :-keepbest343,13439 -keepbest([Prob-(Gnd, Var, Goals)|Tail], Left, Worst, List0, List1) :-keepbest343,13439 -keepbest([], Left, Left, Worst, Worst, List, List).keepbest350,13649 -keepbest([], Left, Left, Worst, Worst, List, List).keepbest350,13649 -keepbest([Prob-(_Gnd, _Var, _Goals)|Tail], 0, Left1, Worst0, Worst1, List0, List1) :-keepbest352,13704 -keepbest([Prob-(_Gnd, _Var, _Goals)|Tail], 0, Left1, Worst0, Worst1, List0, List1) :-keepbest352,13704 -keepbest([Prob-(_Gnd, _Var, _Goals)|Tail], 0, Left1, Worst0, Worst1, List0, List1) :-keepbest352,13704 -keepbest([Prob-(Gnd, Var, Goals)|Tail], 0, Left1, Worst0, Worst1, List0, List1) :-keepbest356,13872 -keepbest([Prob-(Gnd, Var, Goals)|Tail], 0, Left1, Worst0, Worst1, List0, List1) :-keepbest356,13872 -keepbest([Prob-(Gnd, Var, Goals)|Tail], 0, Left1, Worst0, Worst1, List0, List1) :-keepbest356,13872 -keepbest([Prob-(Gnd, Var, Goals)|Tail], Left0, Left1, Worst0, Worst1, List0, List1) :-keepbest361,14094 -keepbest([Prob-(Gnd, Var, Goals)|Tail], Left0, Left1, Worst0, Worst1, List0, List1) :-keepbest361,14094 -keepbest([Prob-(Gnd, Var, Goals)|Tail], Left0, Left1, Worst0, Worst1, List0, List1) :-keepbest361,14094 -insert(Prob-(Gnd, Var, Goals), [], _Worst, [Prob-(Gnd, Var, Goals)], Prob).insert383,14940 -insert(Prob-(Gnd, Var, Goals), [], _Worst, [Prob-(Gnd, Var, Goals)], Prob).insert383,14940 -insert(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i)|Tail], Worst, [Prob-(Gnd, Var, Goals), Prob_i-(Gnd_i, Var_i, Goals_i)|Tail], Worst) :-insert385,15019 -insert(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i)|Tail], Worst, [Prob-(Gnd, Var, Goals), Prob_i-(Gnd_i, Var_i, Goals_i)|Tail], Worst) :-insert385,15019 -insert(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i)|Tail], Worst, [Prob-(Gnd, Var, Goals), Prob_i-(Gnd_i, Var_i, Goals_i)|Tail], Worst) :-insert385,15019 -insert(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i)|Tail], Worst0, [Prob_i-(Gnd_i, Var_i, Goals_i)|Next], Worst1) :-insert388,15193 -insert(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i)|Tail], Worst0, [Prob_i-(Gnd_i, Var_i, Goals_i)|Next], Worst1) :-insert388,15193 -insert(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i)|Tail], Worst0, [Prob_i-(Gnd_i, Var_i, Goals_i)|Next], Worst1) :-insert388,15193 -discard(Prob-(Gnd, Var, Goals), [_Prob_i-(_Gnd_i, _Var_i, _Goals_i)], [Prob-(Gnd, Var, Goals)], Prob) :- !.discard411,16153 -discard(Prob-(Gnd, Var, Goals), [_Prob_i-(_Gnd_i, _Var_i, _Goals_i)], [Prob-(Gnd, Var, Goals)], Prob) :- !.discard411,16153 -discard(Prob-(Gnd, Var, Goals), [_Prob_i-(_Gnd_i, _Var_i, _Goals_i)], [Prob-(Gnd, Var, Goals)], Prob) :- !.discard411,16153 -discard(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i), Prob_l-(Gnd_l, Var_l, Goals_l)|Tail], [Prob-(Gnd, Var, Goals)|Next], Worst) :-discard413,16264 -discard(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i), Prob_l-(Gnd_l, Var_l, Goals_l)|Tail], [Prob-(Gnd, Var, Goals)|Next], Worst) :-discard413,16264 -discard(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i), Prob_l-(Gnd_l, Var_l, Goals_l)|Tail], [Prob-(Gnd, Var, Goals)|Next], Worst) :-discard413,16264 -discard(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i), Prob_l-(Gnd_l, Var_l, Goals_l)|Tail], [Prob_i-(Gnd_i, Var_i, Goals_i)|Next], Worst) :-discard417,16529 -discard(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i), Prob_l-(Gnd_l, Var_l, Goals_l)|Tail], [Prob_i-(Gnd_i, Var_i, Goals_i)|Next], Worst) :-discard417,16529 -discard(Prob-(Gnd, Var, Goals), [Prob_i-(Gnd_i, Var_i, Goals_i), Prob_l-(Gnd_l, Var_l, Goals_l)|Tail], [Prob_i-(Gnd_i, Var_i, Goals_i)|Next], Worst) :-discard417,16529 -eval_lower(Number, Prob) :- eval_lower428,16991 -eval_lower(Number, Prob) :- eval_lower428,16991 -eval_lower(Number, Prob) :- eval_lower428,16991 -eval_lower(Number, ProbLow) :-eval_lower431,17045 -eval_lower(Number, ProbLow) :-eval_lower431,17045 -eval_lower(Number, ProbLow) :-eval_lower431,17045 -eval_upper(0, ProbUp) :- !,eval_upper451,17574 -eval_upper(0, ProbUp) :- !,eval_upper451,17574 -eval_upper(0, ProbUp) :- !,eval_upper451,17574 -eval_upper(_Number, ProbUp) :-eval_upper454,17623 -eval_upper(_Number, ProbUp) :-eval_upper454,17623 -eval_upper(_Number, ProbUp) :-eval_upper454,17623 -run_file(BDDFile, BDDParFile, Prob) :-run_file469,18018 -run_file(BDDFile, BDDParFile, Prob) :-run_file469,18018 -run_file(BDDFile, BDDParFile, Prob) :-run_file469,18018 -insert_full_ptree([], _Trie).insert_full_ptree508,19137 -insert_full_ptree([], _Trie).insert_full_ptree508,19137 -insert_full_ptree([_Prob-(Gnd, _Var, _Goals)|Tail], Trie) :-insert_full_ptree510,19171 -insert_full_ptree([_Prob-(Gnd, _Var, _Goals)|Tail], Trie) :-insert_full_ptree510,19171 -insert_full_ptree([_Prob-(Gnd, _Var, _Goals)|Tail], Trie) :-insert_full_ptree510,19171 -insert_list_ptree([], _Trie).insert_list_ptree521,19463 -insert_list_ptree([], _Trie).insert_list_ptree521,19463 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree523,19496 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree523,19496 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree523,19496 - -packages/cplint/approx/deepdyn.pl,5651 -:- dynamic rule/4, def_rule/2.dynamic8,320 -:- dynamic rule/4, def_rule/2.dynamic8,320 -solve(GoalsList, ProbLow,ProbUp, ResTime, BddTime):-solve52,1689 -solve(GoalsList, ProbLow,ProbUp, ResTime, BddTime):-solve52,1689 -solve(GoalsList, ProbLow,ProbUp, ResTime, BddTime):-solve52,1689 -deepdyn(GoalsList, Number, MinError, ProbStep, LowerProb1, UpperProb1, ResTime0, ResTime1, BddTime0, BddTime1) :-deepdyn77,2460 -deepdyn(GoalsList, Number, MinError, ProbStep, LowerProb1, UpperProb1, ResTime0, ResTime1, BddTime0, BddTime1) :-deepdyn77,2460 -deepdyn(GoalsList, Number, MinError, ProbStep, LowerProb1, UpperProb1, ResTime0, ResTime1, BddTime0, BddTime1) :-deepdyn77,2460 -separate(List, Low, Up, Next) :-separate144,4545 -separate(List, Low, Up, Next) :-separate144,4545 -separate(List, Low, Up, Next) :-separate144,4545 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate148,4686 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate148,4686 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate148,4686 -separate([_Prob-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Gnd0|Up1], Next0, Next1) :- !, separate151,4822 -separate([_Prob-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Gnd0|Up1], Next0, Next1) :- !, separate151,4822 -separate([_Prob-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Gnd0|Up1], Next0, Next1) :- !, separate151,4822 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Gnd1|Up1], Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- separate154,4974 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Gnd1|Up1], Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- separate154,4974 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Gnd1|Up1], Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- separate154,4974 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore183,6172 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore183,6172 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore183,6172 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore186,6323 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore186,6323 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore186,6323 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore191,6531 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore191,6531 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore191,6531 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore198,6812 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore198,6812 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore198,6812 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore217,7680 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore217,7680 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore217,7680 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore227,8059 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore227,8059 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore227,8059 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore237,8466 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore237,8466 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore237,8466 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres241,8702 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres241,8702 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres241,8702 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres251,9143 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres251,9143 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres251,9143 -eval_lower(Number, Prob) :- eval_lower267,9754 -eval_lower(Number, Prob) :- eval_lower267,9754 -eval_lower(Number, Prob) :- eval_lower267,9754 -eval_lower(Number, ProbLow) :-eval_lower270,9808 -eval_lower(Number, ProbLow) :-eval_lower270,9808 -eval_lower(Number, ProbLow) :-eval_lower270,9808 -eval_upper(0, ProbUp) :- !,eval_upper290,10337 -eval_upper(0, ProbUp) :- !,eval_upper290,10337 -eval_upper(0, ProbUp) :- !,eval_upper290,10337 -eval_upper(_Number, ProbUp) :-eval_upper293,10386 -eval_upper(_Number, ProbUp) :-eval_upper293,10386 -eval_upper(_Number, ProbUp) :-eval_upper293,10386 -run_file(BDDFile, BDDParFile, Prob) :-run_file308,10781 -run_file(BDDFile, BDDParFile, Prob) :-run_file308,10781 -run_file(BDDFile, BDDParFile, Prob) :-run_file308,10781 -insert_list_ptree([], _Trie).insert_list_ptree347,11882 -insert_list_ptree([], _Trie).insert_list_ptree347,11882 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree349,11915 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree349,11915 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree349,11915 - -packages/cplint/approx/deepit.pl,5648 -:- dynamic rule/4, def_rule/2.dynamic8,320 -:- dynamic rule/4, def_rule/2.dynamic8,320 -solve(GoalsList, ProbLow,ProbUp, ResTime, BddTime):-solve52,1689 -solve(GoalsList, ProbLow,ProbUp, ResTime, BddTime):-solve52,1689 -solve(GoalsList, ProbLow,ProbUp, ResTime, BddTime):-solve52,1689 -deepit(GoalsList, Number, MinError, ProbBound, LowerProb1, UpperProb1, ResTime0, ResTime1, BddTime0, BddTime1) :-deepit77,2464 -deepit(GoalsList, Number, MinError, ProbBound, LowerProb1, UpperProb1, ResTime0, ResTime1, BddTime0, BddTime1) :-deepit77,2464 -deepit(GoalsList, Number, MinError, ProbBound, LowerProb1, UpperProb1, ResTime0, ResTime1, BddTime0, BddTime1) :-deepit77,2464 -separate(List, Low, Up, Next) :-separate144,4513 -separate(List, Low, Up, Next) :-separate144,4513 -separate(List, Low, Up, Next) :-separate144,4513 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate148,4654 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate148,4654 -separate([], Low, Low, Up, Up, Next, Next) :- !.separate148,4654 -separate([_Prob-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Gnd0|Up1], Next0, Next1) :- !, separate151,4790 -separate([_Prob-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Gnd0|Up1], Next0, Next1) :- !, separate151,4790 -separate([_Prob-(Gnd0, [], [])|Tail], Low0, [Gnd0|Low1], Up0, [Gnd0|Up1], Next0, Next1) :- !, separate151,4790 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Gnd1|Up1], Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- separate154,4942 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Gnd1|Up1], Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- separate154,4942 -separate([Prob0-(Gnd0, Var0, Goals)|Tail], Low0, Low1, Up0, [Gnd1|Up1], Next0, [Prob1-(Gnd1, Var1, Goals)|Next1]) :- separate154,4942 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore183,6140 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore183,6140 -explore(_ProbBound, Prob-(Gnd, Var, []), Prob-(Gnd, Var, [])) :- !. explore183,6140 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore186,6291 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore186,6291 -explore(ProbBound, Prob-(Gnd, Var, Goals), Prob-(Gnd, Var, Goals)) :-explore186,6291 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore191,6499 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore191,6499 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore191,6499 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore198,6780 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore198,6780 -explore(ProbBound, Prob0-(Gnd0, Var0, [\+ Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :- !, explore198,6780 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore217,7648 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore217,7648 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore217,7648 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore227,8027 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore227,8027 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore227,8027 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore237,8434 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore237,8434 -explore(ProbBound, Prob0-(Gnd0, Var0, [Head|Tail]), Prob1-(Gnd1, Var1, Goals1)) :-explore237,8434 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres241,8670 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres241,8670 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals)) :-explore_pres241,8670 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres251,9111 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres251,9111 -explore_pres(ProbBound, R, S, N, Goals, Prob0-(Gnd0, Var0, Goals0), Prob1-(Gnd1, Var1, Goals1)) :-explore_pres251,9111 -eval_lower(Number, Prob) :- eval_lower267,9722 -eval_lower(Number, Prob) :- eval_lower267,9722 -eval_lower(Number, Prob) :- eval_lower267,9722 -eval_lower(Number, ProbLow) :-eval_lower270,9776 -eval_lower(Number, ProbLow) :-eval_lower270,9776 -eval_lower(Number, ProbLow) :-eval_lower270,9776 -eval_upper(0, ProbUp) :- !,eval_upper290,10305 -eval_upper(0, ProbUp) :- !,eval_upper290,10305 -eval_upper(0, ProbUp) :- !,eval_upper290,10305 -eval_upper(_Number, ProbUp) :-eval_upper293,10354 -eval_upper(_Number, ProbUp) :-eval_upper293,10354 -eval_upper(_Number, ProbUp) :-eval_upper293,10354 -run_file(BDDFile, BDDParFile, Prob) :-run_file308,10749 -run_file(BDDFile, BDDParFile, Prob) :-run_file308,10749 -run_file(BDDFile, BDDParFile, Prob) :-run_file308,10749 -insert_list_ptree([], _Trie).insert_list_ptree347,11850 -insert_list_ptree([], _Trie).insert_list_ptree347,11850 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree349,11883 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree349,11883 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree349,11883 - -packages/cplint/approx/exact.pl,2916 -:- dynamic rule/4, def_rule/2.dynamic8,318 -:- dynamic rule/4, def_rule/2.dynamic8,318 -solve(GoalsList, Prob, ResTime, BddTime) :-solve53,1715 -solve(GoalsList, Prob, ResTime, BddTime) :-solve53,1715 -solve(GoalsList, Prob, ResTime, BddTime) :-solve53,1715 -exact(GoalsList, Deriv) :- exact89,2766 -exact(GoalsList, Deriv) :- exact89,2766 -exact(GoalsList, Deriv) :- exact89,2766 -exact([], C, C) :- !.exact92,2828 -exact([], C, C) :- !.exact92,2828 -exact([], C, C) :- !.exact92,2828 -exact([bagof(V, EV^G, L)|T], CIn, COut) :- !, exact94,2853 -exact([bagof(V, EV^G, L)|T], CIn, COut) :- !, exact94,2853 -exact([bagof(V, EV^G, L)|T], CIn, COut) :- !, exact94,2853 -exact([bagof(V, G, L)|T], CIn, COut) :- !, exact105,3168 -exact([bagof(V, G, L)|T], CIn, COut) :- !, exact105,3168 -exact([bagof(V, G, L)|T], CIn, COut) :- !, exact105,3168 -exact([setof(V, EV^G, L)|T], CIn, COut) :- !, exact116,3477 -exact([setof(V, EV^G, L)|T], CIn, COut) :- !, exact116,3477 -exact([setof(V, EV^G, L)|T], CIn, COut) :- !, exact116,3477 -exact([setof(V, G, L)|T], CIn, COut) :- !, exact127,3791 -exact([setof(V, G, L)|T], CIn, COut) :- !, exact127,3791 -exact([setof(V, G, L)|T], CIn, COut) :- !, exact127,3791 -exact([\+ H|T], CIn, COut) :- exact138,4099 -exact([\+ H|T], CIn, COut) :- exact138,4099 -exact([\+ H|T], CIn, COut) :- exact138,4099 -exact([\+ H |T], CIn, COut) :- !, exact143,4191 -exact([\+ H |T], CIn, COut) :- !, exact143,4191 -exact([\+ H |T], CIn, COut) :- !, exact143,4191 -exact([H|T], CIn, COut) :- exact149,4341 -exact([H|T], CIn, COut) :- exact149,4341 -exact([H|T], CIn, COut) :- exact149,4341 -exact([H|T], CIn, COut) :- exact154,4425 -exact([H|T], CIn, COut) :- exact154,4425 -exact([H|T], CIn, COut) :- exact154,4425 -exact([H|T], CIn, COut) :- exact159,4521 -exact([H|T], CIn, COut) :- exact159,4521 -exact([H|T], CIn, COut) :- exact159,4521 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres165,4632 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres165,4632 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres165,4632 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres170,4755 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres170,4755 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres170,4755 -find_rule(H, (R, S, N), Body, C) :- find_rule183,5183 -find_rule(H, (R, S, N), Body, C) :- find_rule183,5183 -find_rule(H, (R, S, N), Body, C) :- find_rule183,5183 -run_file(BDDFile, BDDParFile, Prob) :-run_file191,5471 -run_file(BDDFile, BDDParFile, Prob) :-run_file191,5471 -run_file(BDDFile, BDDParFile, Prob) :-run_file191,5471 -insert_list_ptree([], _Trie).insert_list_ptree230,6572 -insert_list_ptree([], _Trie).insert_list_ptree230,6572 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree232,6605 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree232,6605 -insert_list_ptree([Head|Tail], Trie) :-insert_list_ptree232,6605 - -packages/cplint/approx/exact_mem.pl,2432 -:- dynamic rule/4, def_rule/2.dynamic12,417 -:- dynamic rule/4, def_rule/2.dynamic12,417 -solve(GoalsList, Prob, ResTime, BddTime) :-solve65,1948 -solve(GoalsList, Prob, ResTime, BddTime) :-solve65,1948 -solve(GoalsList, Prob, ResTime, BddTime) :-solve65,1948 -exact(GoalsList, Deriv) :- exact93,2991 -exact(GoalsList, Deriv) :- exact93,2991 -exact(GoalsList, Deriv) :- exact93,2991 -exact([], C, C) :- !.exact96,3053 -exact([], C, C) :- !.exact96,3053 -exact([], C, C) :- !.exact96,3053 -exact([bagof(V, EV^G, L)|T], CIn, COut) :- !, exact98,3078 -exact([bagof(V, EV^G, L)|T], CIn, COut) :- !, exact98,3078 -exact([bagof(V, EV^G, L)|T], CIn, COut) :- !, exact98,3078 -exact([bagof(V, G, L)|T], CIn, COut) :- !, exact109,3393 -exact([bagof(V, G, L)|T], CIn, COut) :- !, exact109,3393 -exact([bagof(V, G, L)|T], CIn, COut) :- !, exact109,3393 -exact([setof(V, EV^G, L)|T], CIn, COut) :- !, exact120,3702 -exact([setof(V, EV^G, L)|T], CIn, COut) :- !, exact120,3702 -exact([setof(V, EV^G, L)|T], CIn, COut) :- !, exact120,3702 -exact([setof(V, G, L)|T], CIn, COut) :- !, exact131,4016 -exact([setof(V, G, L)|T], CIn, COut) :- !, exact131,4016 -exact([setof(V, G, L)|T], CIn, COut) :- !, exact131,4016 -exact([\+ H|T], CIn, COut) :- exact142,4324 -exact([\+ H|T], CIn, COut) :- exact142,4324 -exact([\+ H|T], CIn, COut) :- exact142,4324 -exact([\+ H |T], CIn, COut) :- !, exact147,4416 -exact([\+ H |T], CIn, COut) :- !, exact147,4416 -exact([\+ H |T], CIn, COut) :- !, exact147,4416 -exact([H|T], CIn, COut) :- exact153,4566 -exact([H|T], CIn, COut) :- exact153,4566 -exact([H|T], CIn, COut) :- exact153,4566 -exact([H|T], CIn, COut) :- exact158,4650 -exact([H|T], CIn, COut) :- exact158,4650 -exact([H|T], CIn, COut) :- exact158,4650 -exact([H|T], CIn, COut) :- exact163,4746 -exact([H|T], CIn, COut) :- exact163,4746 -exact([H|T], CIn, COut) :- exact163,4746 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres169,4857 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres169,4857 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres169,4857 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres174,4980 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres174,4980 -solve_pres(R, S, N, B, T, CIn, COut) :- solve_pres174,4980 -find_rule(H, (R, S, N), Body, C) :- find_rule187,5408 -find_rule(H, (R, S, N), Body, C) :- find_rule187,5408 -find_rule(H, (R, S, N), Body, C) :- find_rule187,5408 - -packages/cplint/approx/montecarlo.pl,3037 -:- dynamic rule/4, def_rule/2, randx/1, randy/1, randz/1.dynamic13,481 -:- dynamic rule/4, def_rule/2, randx/1, randy/1, randz/1.dynamic13,481 -randx(1).randx37,1036 -randx(1).randx37,1036 -randy(1).randy38,1047 -randy(1).randy38,1047 -randz(1).randz39,1058 -randz(1).randz39,1058 -newsample :-newsample46,1194 -solve(Goals, Samples, Time, Lower, Prob, Upper) :-solve83,2272 -solve(Goals, Samples, Time, Lower, Prob, Upper) :-solve83,2272 -solve(Goals, Samples, Time, Lower, Prob, Upper) :-solve83,2272 -montecarlo(Count, Success, Goals, K, MinError, Samples, Lower, Prob, Upper) :-montecarlo126,4145 -montecarlo(Count, Success, Goals, K, MinError, Samples, Lower, Prob, Upper) :-montecarlo126,4145 -montecarlo(Count, Success, Goals, K, MinError, Samples, Lower, Prob, Upper) :-montecarlo126,4145 -main([], Explan, Explan, 1). main169,5486 -main([], Explan, Explan, 1). main169,5486 -main([\+ Goal|Tail], Explan0, Explan1, Valid) :-main171,5519 -main([\+ Goal|Tail], Explan0, Explan1, Valid) :-main171,5519 -main([\+ Goal|Tail], Explan0, Explan1, Valid) :-main171,5519 -main([Goal|Tail], Explan0, Explan1, Valid) :-main178,5691 -main([Goal|Tail], Explan0, Explan1, Valid) :-main178,5691 -main([Goal|Tail], Explan0, Explan1, Valid) :-main178,5691 -main([Goal|Tail], Explan0, Explan1, Valid) :-main185,5854 -main([Goal|Tail], Explan0, Explan1, Valid) :-main185,5854 -main([Goal|Tail], Explan0, Explan1, Valid) :-main185,5854 -explore([Goal|Tail], _Explan, 1, Goals, []) :-explore200,6440 -explore([Goal|Tail], _Explan, 1, Goals, []) :-explore200,6440 -explore([Goal|Tail], _Explan, 1, Goals, []) :-explore200,6440 -explore([Goal|Tail], Explan, Valid, Goals, Step) :- explore204,6543 -explore([Goal|Tail], Explan, Valid, Goals, Step) :- explore204,6543 -explore([Goal|Tail], Explan, Valid, Goals, Step) :- explore204,6543 -findrule(Goal, Explan, Valid, Body, (HeadId, RuleId, Subst)) :-findrule223,7309 -findrule(Goal, Explan, Valid, Body, (HeadId, RuleId, Subst)) :-findrule223,7309 -findrule(Goal, Explan, Valid, Body, (HeadId, RuleId, Subst)) :-findrule223,7309 -sample(HeadList, HeadId) :-sample238,7835 -sample(HeadList, HeadId) :-sample238,7835 -sample(HeadList, HeadId) :-sample238,7835 -sample([_HeadTerm:HeadProb|Tail], Index, Prev, Prob, HeadId) :-sample242,7926 -sample([_HeadTerm:HeadProb|Tail], Index, Prev, Prob, HeadId) :-sample242,7926 -sample([_HeadTerm:HeadProb|Tail], Index, Prev, Prob, HeadId) :-sample242,7926 -cycle([], Explan, Explan, 0).cycle263,8724 -cycle([], Explan, Explan, 0).cycle263,8724 -cycle([(0, _Goals, Step)|Tail], Explan0, Explan1, IsSample) :- !,cycle265,8757 -cycle([(0, _Goals, Step)|Tail], Explan0, Explan1, IsSample) :- !,cycle265,8757 -cycle([(0, _Goals, Step)|Tail], Explan0, Explan1, IsSample) :- !,cycle265,8757 -cycle([(1, Goals, Step)|Tail], Explan0, Explan1, IsSample) :- cycle269,8903 -cycle([(1, Goals, Step)|Tail], Explan0, Explan1, IsSample) :- cycle269,8903 -cycle([(1, Goals, Step)|Tail], Explan0, Explan1, IsSample) :- cycle269,8903 - -packages/cplint/approx/params.pl,865 -:- dynamic setting/2.dynamic8,340 -:- dynamic setting/2.dynamic8,340 -setting(epsilon_parsing, 0.00001).setting32,859 -setting(epsilon_parsing, 0.00001).setting32,859 -setting(ground_body, false).setting44,1208 -setting(ground_body, false).setting44,1208 -setting(k, 64).setting53,1412 -setting(k, 64).setting53,1412 -setting(min_error, 0.01).setting62,1600 -setting(min_error, 0.01).setting62,1600 -setting(prob_bound, 0.001).setting72,1809 -setting(prob_bound, 0.001).setting72,1809 -setting(prob_step, 0.001).setting82,2030 -setting(prob_step, 0.001).setting82,2030 -setting(save_dot, false).setting91,2231 -setting(save_dot, false).setting91,2231 -setting(timeout, 300).setting100,2437 -setting(timeout, 300).setting100,2437 -set(Parameter, Value) :- set120,2900 -set(Parameter, Value) :- set120,2900 -set(Parameter, Value) :- set120,2900 - -packages/cplint/approx/parsing.pl,8909 -:- dynamic rule/4, def_rule/2.dynamic8,343 -:- dynamic rule/4, def_rule/2.dynamic8,343 -parse(File) :- parse29,712 -parse(File) :- parse29,712 -parse(File) :- parse29,712 -assert_rules([], _Index, _HeadList, _BodyList, _Choices, _Id, _Subst) :- !. % Closing condition.assert_rules59,1582 -assert_rules([], _Index, _HeadList, _BodyList, _Choices, _Id, _Subst) :- !. % Closing condition.assert_rules59,1582 -assert_rules([], _Index, _HeadList, _BodyList, _Choices, _Id, _Subst) :- !. % Closing condition.assert_rules59,1582 -assert_rules(['':_Prob], _Index, _HeadList, _BodyList, _Choices, _Id, _Subst) :- !.assert_rules61,1682 -assert_rules(['':_Prob], _Index, _HeadList, _BodyList, _Choices, _Id, _Subst) :- !.assert_rules61,1682 -assert_rules(['':_Prob], _Index, _HeadList, _BodyList, _Choices, _Id, _Subst) :- !.assert_rules61,1682 -assert_rules([Head:Prob|Tail], Index, HeadList, BodyList, Choices, Id, Subst) :- assert_rules63,1769 -assert_rules([Head:Prob|Tail], Index, HeadList, BodyList, Choices, Id, Subst) :- assert_rules63,1769 -assert_rules([Head:Prob|Tail], Index, HeadList, BodyList, Choices, Id, Subst) :- assert_rules63,1769 -delete_var(_Var, [], []).delete_var70,2025 -delete_var(_Var, [], []).delete_var70,2025 -delete_var(Var, [Current|Tail], [Current|Next]) :- delete_var72,2054 -delete_var(Var, [Current|Tail], [Current|Next]) :- delete_var72,2054 -delete_var(Var, [Current|Tail], [Current|Next]) :- delete_var72,2054 -delete_var(_Var, [_Head|Tail], Tail).delete_var76,2163 -delete_var(_Var, [_Head|Tail], Tail).delete_var76,2163 -extract_vars(Variable, Var0, Var1) :- extract_vars80,2208 -extract_vars(Variable, Var0, Var1) :- extract_vars80,2208 -extract_vars(Variable, Var0, Var1) :- extract_vars80,2208 -extract_vars(Term, Var0, Var1) :- extract_vars86,2355 -extract_vars(Term, Var0, Var1) :- extract_vars86,2355 -extract_vars(Term, Var0, Var1) :- extract_vars86,2355 -extract_vars_clause(end_of_file, []).extract_vars_clause92,2458 -extract_vars_clause(end_of_file, []).extract_vars_clause92,2458 -extract_vars_clause(Clause, VarNames, Couples) :- extract_vars_clause94,2499 -extract_vars_clause(Clause, VarNames, Couples) :- extract_vars_clause94,2499 -extract_vars_clause(Clause, VarNames, Couples) :- extract_vars_clause94,2499 -extract_vars_list([], Var, Var).extract_vars_list103,2684 -extract_vars_list([], Var, Var).extract_vars_list103,2684 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list105,2720 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list105,2720 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list105,2720 -get_var(Var, [Var]) :- get_var111,2846 -get_var(Var, [Var]) :- get_var111,2846 -get_var(Var, [Var]) :- get_var111,2846 -get_var(Var, Value) :- get_var114,2954 -get_var(Var, Value) :- get_var114,2954 -get_var(Var, Value) :- get_var114,2954 -get_var_list([], []).get_var_list120,3033 -get_var_list([], []).get_var_list120,3033 -get_var_list([Head|Tail], [Head|Next]) :- get_var_list122,3058 -get_var_list([Head|Tail], [Head|Next]) :- get_var_list122,3058 -get_var_list([Head|Tail], [Head|Next]) :- get_var_list122,3058 -get_var_list([Head|Tail], Vars) :- !, get_var_list126,3149 -get_var_list([Head|Tail], Vars) :- !, get_var_list126,3149 -get_var_list([Head|Tail], Vars) :- !, get_var_list126,3149 -ground_prob([]).ground_prob140,3478 -ground_prob([]).ground_prob140,3478 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob142,3498 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob142,3498 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob142,3498 -pair(_VarName, [], []).pair148,3649 -pair(_VarName, [], []).pair148,3649 -pair([VarName = _Var|TailVarName], [Var|TailVar], [VarName = Var|Tail]) :- pair150,3676 -pair([VarName = _Var|TailVarName], [Var|TailVar], [VarName = Var|Tail]) :- pair150,3676 -pair([VarName = _Var|TailVarName], [Var|TailVar], [VarName = Var|Tail]) :- pair150,3676 -process_head(HeadList, GroundHeadList) :- process_head160,4031 -process_head(HeadList, GroundHeadList) :- process_head160,4031 -process_head(HeadList, GroundHeadList) :- process_head160,4031 -process_head(HeadList, HeadList).process_head164,4159 -process_head(HeadList, HeadList).process_head164,4159 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead|Null]) :- process_head_ground171,4343 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead|Null]) :- process_head_ground171,4343 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead|Null]) :- process_head_ground171,4343 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead|Next]) :- process_head_ground180,4589 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead|Next]) :- process_head_ground180,4589 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead|Next]) :- process_head_ground180,4589 -process_body([], Vars, Vars).process_body205,4979 -process_body([], Vars, Vars).process_body205,4979 -process_body([setof(A, B^_G, _L)|Tail], Vars0, Vars1) :- !, process_body207,5012 -process_body([setof(A, B^_G, _L)|Tail], Vars0, Vars1) :- !, process_body207,5012 -process_body([setof(A, B^_G, _L)|Tail], Vars0, Vars1) :- !, process_body207,5012 -process_body([setof(A, _G, _L)|Tail], Vars0, Vars1) :- !, process_body214,5230 -process_body([setof(A, _G, _L)|Tail], Vars0, Vars1) :- !, process_body214,5230 -process_body([setof(A, _G, _L)|Tail], Vars0, Vars1) :- !, process_body214,5230 -process_body([bagof(A, B^_G, _L)|Tail], Vars0, Vars1) :- !, process_body219,5387 -process_body([bagof(A, B^_G, _L)|Tail], Vars0, Vars1) :- !, process_body219,5387 -process_body([bagof(A, B^_G, _L)|Tail], Vars0, Vars1) :- !, process_body219,5387 -process_body([bagof(A, _G, _L)|Tail], Vars0, Vars1) :- !, process_body226,5605 -process_body([bagof(A, _G, _L)|Tail], Vars0, Vars1) :- !, process_body226,5605 -process_body([bagof(A, _G, _L)|Tail], Vars0, Vars1) :- !, process_body226,5605 -process_body([_Head|Tail], Vars0, Vars1) :- !, process_body231,5762 -process_body([_Head|Tail], Vars0, Vars1) :- !, process_body231,5762 -process_body([_Head|Tail], Vars0, Vars1) :- !, process_body231,5762 -process_clauses([(end_of_file, [])], _Id).process_clauses240,5861 -process_clauses([(end_of_file, [])], _Id).process_clauses240,5861 -process_clauses([((Head :- Body), Value)|Tail], Id) :- process_clauses245,6037 -process_clauses([((Head :- Body), Value)|Tail], Id) :- process_clauses245,6037 -process_clauses([((Head :- Body), Value)|Tail], Id) :- process_clauses245,6037 -process_clauses([((Head :- Body), Value)|Tail], Id) :- process_clauses257,6516 -process_clauses([((Head :- Body), Value)|Tail], Id) :- process_clauses257,6516 -process_clauses([((Head :- Body), Value)|Tail], Id) :- process_clauses257,6516 -process_clauses([((Head :- Body), Value)|Tail], Id) :- process_clauses270,6973 -process_clauses([((Head :- Body), Value)|Tail], Id) :- process_clauses270,6973 -process_clauses([((Head :- Body), Value)|Tail], Id) :- process_clauses270,6973 -process_clauses([((Head :- Body), _V)|Tail], Id) :- !, process_clauses283,7431 -process_clauses([((Head :- Body), _V)|Tail], Id) :- !, process_clauses283,7431 -process_clauses([((Head :- Body), _V)|Tail], Id) :- !, process_clauses283,7431 -process_clauses([(Head, Value)|Tail], Id) :- process_clauses288,7585 -process_clauses([(Head, Value)|Tail], Id) :- process_clauses288,7585 -process_clauses([(Head, Value)|Tail], Id) :- process_clauses288,7585 -process_clauses([(Head, Value)|Tail], Id) :- process_clauses299,7924 -process_clauses([(Head, Value)|Tail], Id) :- process_clauses299,7924 -process_clauses([(Head, Value)|Tail], Id) :- process_clauses299,7924 -process_clauses([(Head, _V)|Tail], Id) :- process_clauses310,8264 -process_clauses([(Head, _V)|Tail], Id) :- process_clauses310,8264 -process_clauses([(Head, _V)|Tail], Id) :- process_clauses310,8264 -read_clauses(Stream, Clauses) :- read_clauses316,8374 -read_clauses(Stream, Clauses) :- read_clauses316,8374 -read_clauses(Stream, Clauses) :- read_clauses316,8374 -read_clauses_exist_body(Stream, [(Clause, Vars)|Next]) :- read_clauses_exist_body323,8540 -read_clauses_exist_body(Stream, [(Clause, Vars)|Next]) :- read_clauses_exist_body323,8540 -read_clauses_exist_body(Stream, [(Clause, Vars)|Next]) :- read_clauses_exist_body323,8540 -read_clauses_ground_body(Stream, [(Clause, Vars)|Next]) :- read_clauses_ground_body332,8796 -read_clauses_ground_body(Stream, [(Clause, Vars)|Next]) :- read_clauses_ground_body332,8796 -read_clauses_ground_body(Stream, [(Clause, Vars)|Next]) :- read_clauses_ground_body332,8796 -remove_vars([], Vars, Vars).remove_vars340,9002 -remove_vars([], Vars, Vars).remove_vars340,9002 -remove_vars([Head|Tail], Vars0, Vars1) :- remove_vars342,9034 -remove_vars([Head|Tail], Vars0, Vars1) :- remove_vars342,9034 -remove_vars([Head|Tail], Vars0, Vars1) :- remove_vars342,9034 - -packages/cplint/approx/simplecuddLPADs/general.c,357 -int IsRealNumber(char *c) {IsRealNumber198,15216 -int IsPosNumber(const char *c) {IsPosNumber210,15526 -int IsNumber(const char *c) {IsNumber220,15706 -char * freadstr(FILE *fd, const char *separators) {freadstr233,15987 -int CharIn(const char c, const char *in) {CharIn254,16507 -int patternmatch(char *pattern, char *thestr) {patternmatch263,16662 - -packages/cplint/approx/simplecuddLPADs/general.h,170 -#define IsNumberDigit(IsNumberDigit198,15231 -#define IsSignDigit(IsSignDigit199,15285 -#define isOperator(isOperator200,15339 -#define freadline(freadline201,15417 - -packages/cplint/approx/simplecuddLPADs/ProblogBDD.c,3259 -typedef struct _parameters {_parameters202,15362 - int loadfile;loadfile203,15391 - int loadfile;_parameters::loadfile203,15391 - int savedfile;savedfile204,15407 - int savedfile;_parameters::savedfile204,15407 - int exportfile;exportfile205,15424 - int exportfile;_parameters::exportfile205,15424 - int inputfile;inputfile206,15442 - int inputfile;_parameters::inputfile206,15442 - int debug;debug207,15459 - int debug;_parameters::debug207,15459 - int errorcnt;errorcnt208,15472 - int errorcnt;_parameters::errorcnt208,15472 - int *error;error209,15488 - int *error;_parameters::error209,15488 - int method;method210,15502 - int method;_parameters::method210,15502 - int queryid;queryid211,15516 - int queryid;_parameters::queryid211,15516 - int timeout;timeout212,15531 - int timeout;_parameters::timeout212,15531 - double sigmoid_slope;sigmoid_slope213,15546 - double sigmoid_slope;_parameters::sigmoid_slope213,15546 - int online;online214,15570 - int online;_parameters::online214,15570 - int maxbufsize;maxbufsize215,15584 - int maxbufsize;_parameters::maxbufsize215,15584 - char *ppid;ppid216,15602 - char *ppid;_parameters::ppid216,15602 -} parameters;parameters217,15616 -typedef struct _gradientpair {_gradientpair219,15631 - double probability;probability220,15662 - double probability;_gradientpair::probability220,15662 - double gradient;gradient221,15684 - double gradient;_gradientpair::gradient221,15684 -} gradientpair;gradientpair222,15703 -typedef struct _extmanager {_extmanager224,15720 - DdManager *manager;manager225,15749 - DdManager *manager;_extmanager::manager225,15749 - DdNode *t, *f;t226,15771 - DdNode *t, *f;_extmanager::t226,15771 - DdNode *t, *f;f226,15771 - DdNode *t, *f;_extmanager::f226,15771 - hisqueue *his;his227,15788 - hisqueue *his;_extmanager::his227,15788 - namedvars varmap;varmap228,15805 - namedvars varmap;_extmanager::varmap228,15805 -} extmanager;extmanager229,15825 -parameters params;params240,16245 -int main(int argc, char **arg) {main255,16803 -int argtype(const char *arg) {argtype475,24431 -void printhelp(int argc, char **arg) {printhelp505,25471 -parameters loadparam(int argc, char **arg) {loadparam546,27773 -void handler(int num) {handler676,30676 -void pidhandler(int num) {pidhandler681,30783 -void termhandler(int num) { exit(3); }termhandler703,31237 -double sigmoid(double x, double slope) { return 1 / (1 + exp(-x * slope)); }sigmoid707,31302 -void myexpand(extmanager MyManager, DdNode *Current) {myexpand711,31415 -double CalcProbability(extmanager MyManager, DdNode *Current) {CalcProbability732,32111 -gradientpair CalcGradient(extmanager MyManager, DdNode *Current, int TargetVar,CalcGradient765,33175 -char *extractpattern(char *thestr) {extractpattern820,35175 -int patterncalculated(char *pattern, extmanager MyManager, int loc) {patterncalculated835,35465 -double Prob(extmanager MyManager, DdNode *node, int comp)Prob845,35702 -double ProbBool(extmanager MyManager, DdNode *node, int bits, int nBit,ProbBool883,36724 -int correctPosition(int index, variable v, int posBVar)correctPosition920,37854 -double ret_prob(extmanager MyManager, DdNode *bdd) {ret_prob931,38104 - -packages/cplint/approx/simplecuddLPADs/simplecudd.c,4632 -int _debug = 0;_debug196,15227 -int _RapidLoad = 0;_RapidLoad197,15243 -int _maxbufsize = 0;_maxbufsize198,15263 -int boolVars = 0;boolVars199,15284 -DdManager *simpleBDDinit(int varcnt) {simpleBDDinit201,15303 -DdNode *HighNodeOf(DdManager *manager, DdNode *node) {HighNodeOf214,15683 -DdNode *LowNodeOf(DdManager *manager, DdNode *node) {LowNodeOf226,15984 -DdNode *D_BDDAnd(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDAnd240,16311 -DdNode *D_BDDNand(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDNand248,16507 -DdNode *D_BDDOr(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDOr256,16705 -DdNode *D_BDDNor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDNor264,16899 -DdNode *D_BDDXor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDXor272,17095 -DdNode *D_BDDXnor(DdManager *manager, DdNode *bdd1, DdNode *bdd2) {D_BDDXnor280,17291 -bddfileheader ReadFileHeader(const char *filename) {ReadFileHeader290,17514 -int CheckFileVersion(const char *version) {CheckFileVersion352,19156 -int simpleBDDtoDot(DdManager *manager, DdNode *bdd, const char *filename) {simpleBDDtoDot365,19602 -int simpleNamedBDDtoDot(DdManager *manager, namedvars varmap, DdNode *bdd,simpleNamedBDDtoDot380,19929 -int SaveNodeDump(DdManager *manager, namedvars varmap, DdNode *bdd,SaveNodeDump397,20334 -void SaveExpand(DdManager *manager, namedvars varmap, hisqueue *Nodes,SaveExpand423,21163 -DdNode *LoadNodeDump(DdManager *manager, namedvars varmap, FILE *inputfile) {LoadNodeDump469,22976 -DdNode *LoadNodeRec(DdManager *manager, namedvars varmap, hisqueue *Nodes,LoadNodeRec503,24026 -DdNode *GetIfExists(DdManager *manager, namedvars varmap, hisqueue *Nodes,GetIfExists594,27467 -void ExpandNodes(hisqueue *Nodes, int index, int nodenum) {ExpandNodes615,28165 -int LoadVariableData(namedvars varmap, char *filename) {LoadVariableData630,28648 -int LoadMultiVariableData(DdManager *mgr, namedvars varmap, char *filename) {LoadMultiVariableData665,29666 -hisqueue *InitHistory(int varcnt) {InitHistory705,30917 -void ReInitHistory(hisqueue *HisQueue, int varcnt) {ReInitHistory716,31160 -void AddNode1(int *bVar2mVar, hisqueue *HisQueue, int varstart, DdNode *node,AddNode1730,31548 -void AddNode(hisqueue *HisQueue, int varstart, DdNode *node, double dvalue,AddNode745,32260 -hisnode *GetNode1(int *bVar2mVar, hisqueue *HisQueue, int varstart,GetNode1757,32831 -hisnode *GetNode(hisqueue *HisQueue, int varstart, DdNode *node) {GetNode770,33206 -int GetNodeIndex(hisqueue *HisQueue, int varstart, DdNode *node) {GetNodeIndex781,33536 -namedvars InitNamedVars(int varcnt, int varstart) {InitNamedVars793,33806 -namedvars InitNamedMultiVars(int varcnt, int varstart, int bvarcnt) {InitNamedMultiVars815,34461 -void EnlargeNamedVars(namedvars *varmap, int newvarcnt) {EnlargeNamedVars837,35190 -int AddNamedVarAt(namedvars varmap, const char *varname, int index) {AddNamedVarAt856,35891 -int AddNamedMultiVar(DdManager *mgr, namedvars varmap, const char *varname,AddNamedMultiVar865,36150 -int AddNamedVar(namedvars varmap, const char *varname) {AddNamedVar900,37130 -void SetNamedVarValuesAt(namedvars varmap, int index, double dvalue, int ivalue,SetNamedVarValuesAt922,37676 -int SetNamedVarValues(namedvars varmap, const char *varname, double dvalue,SetNamedVarValues929,37906 -int GetNamedVarIndex(const namedvars varmap, const char *varname) {GetNamedVarIndex949,38594 -char *GetNodeVarName(DdManager *manager, namedvars varmap, DdNode *node) {GetNodeVarName960,38862 -char *GetNodeVarNameDisp(DdManager *manager, namedvars varmap, DdNode *node) {GetNodeVarNameDisp970,39129 -int RepairVarcnt(namedvars *varmap) {RepairVarcnt980,39404 -int all_loaded(namedvars varmap, int disp) {all_loaded986,39543 -DdNode *FileGenerateBDD(DdManager *manager, namedvars varmap,FileGenerateBDD1003,39887 -int getInterBDD(char *function) {getInterBDD1168,45580 -char *getFileName(const char *function) {getFileName1189,46027 -DdNode *LineParser(DdManager *manager, namedvars varmap, DdNode **inter,LineParser1206,46496 -DdNode *BDD_Operator(DdManager *manager, DdNode *bdd1, DdNode *bdd2,BDD_Operator1386,52618 -DdNode *OnlineGenerateBDD(DdManager *manager, namedvars *varmap) {OnlineGenerateBDD1413,53222 -DdNode *OnlineLineParser(DdManager *manager, namedvars *varmap, DdNode **inter,OnlineLineParser1592,59382 -int GetParam(char *inputline, int iParam) {GetParam1774,65571 -void onlinetraverse(DdManager *manager, namedvars varmap, hisqueue *HisQueue,onlinetraverse1804,66317 -DdNode *equality(DdManager *mgr, int varIndex, int value, namedvars varmap) {equality1965,71880 - -packages/cplint/approx/simplecuddLPADs/simplecudd.h,3940 -#define IsHigh(IsHigh220,15619 -#define IsLow(IsLow221,15671 -#define HIGH(HIGH222,15721 -#define LOW(LOW223,15765 -#define NOT(NOT224,15818 -#define GetIndex(GetIndex225,15851 -#define GetMVar(GetMVar226,15899 -#define GetVar(GetVar228,16056 -#define NewVar(NewVar229,16118 -#define KillBDD(KillBDD230,16166 -#define GetVarCount(GetVarCount231,16210 -#define DEBUGON DEBUGON232,16262 -#define DEBUGOFF DEBUGOFF233,16289 -#define RAPIDLOADON RAPIDLOADON234,16317 -#define RAPIDLOADOFF RAPIDLOADOFF235,16352 -#define SETMAXBUFSIZE(SETMAXBUFSIZE236,16388 -#define BDDFILE_ERROR BDDFILE_ERROR237,16435 -#define BDDFILE_OTHER BDDFILE_OTHER238,16460 -#define BDDFILE_SCRIPT BDDFILE_SCRIPT239,16484 -#define BDDFILE_NODEDUMP BDDFILE_NODEDUMP240,16509 -typedef struct _bddfileheader {_bddfileheader246,16604 - FILE *inputfile;inputfile247,16636 - FILE *inputfile;_bddfileheader::inputfile247,16636 - int version;version248,16655 - int version;_bddfileheader::version248,16655 - int varcnt;varcnt249,16670 - int varcnt;_bddfileheader::varcnt249,16670 - int bvarcnt;bvarcnt250,16684 - int bvarcnt;_bddfileheader::bvarcnt250,16684 - int varstart;varstart251,16699 - int varstart;_bddfileheader::varstart251,16699 - int intercnt;intercnt252,16715 - int intercnt;_bddfileheader::intercnt252,16715 - int filetype;filetype253,16731 - int filetype;_bddfileheader::filetype253,16731 -} bddfileheader;bddfileheader254,16747 - int nVal, nBit, init;nVal257,16782 - int nVal, nBit, init;__anon427::nVal257,16782 - int nVal, nBit, init;nBit257,16782 - int nVal, nBit, init;__anon427::nBit257,16782 - int nVal, nBit, init;init257,16782 - int nVal, nBit, init;__anon427::init257,16782 - double *probabilities;probabilities258,16806 - double *probabilities;__anon427::probabilities258,16806 - DdNode **booleanVars;booleanVars259,16831 - DdNode **booleanVars;__anon427::booleanVars259,16831 -} variable;variable260,16855 -typedef struct _namedvars {_namedvars262,16868 - int varcnt;varcnt263,16896 - int varcnt;_namedvars::varcnt263,16896 - int varstart;varstart264,16910 - int varstart;_namedvars::varstart264,16910 - char **vars;vars265,16926 - char **vars;_namedvars::vars265,16926 - int *loaded;loaded266,16941 - int *loaded;_namedvars::loaded266,16941 - double *dvalue;dvalue267,16956 - double *dvalue;_namedvars::dvalue267,16956 - int *ivalue;ivalue268,16974 - int *ivalue;_namedvars::ivalue268,16974 - void **dynvalue;dynvalue269,16989 - void **dynvalue;_namedvars::dynvalue269,16989 - variable *mvars;mvars270,17008 - variable *mvars;_namedvars::mvars270,17008 - int *bVar2mVar;bVar2mVar271,17027 - int *bVar2mVar;_namedvars::bVar2mVar271,17027 -} namedvars;namedvars272,17045 -typedef struct _hisnode {_hisnode274,17059 - DdNode *key;key275,17085 - DdNode *key;_hisnode::key275,17085 - double dvalue;dvalue276,17100 - double dvalue;_hisnode::dvalue276,17100 - int ivalue;ivalue277,17117 - int ivalue;_hisnode::ivalue277,17117 - void *dynvalue;dynvalue278,17131 - void *dynvalue;_hisnode::dynvalue278,17131 -} hisnode;hisnode279,17149 -typedef struct _hisqueue {_hisqueue281,17161 - int cnt;cnt282,17188 - int cnt;_hisqueue::cnt282,17188 - hisnode *thenode;thenode283,17199 - hisnode *thenode;_hisqueue::thenode283,17199 -} hisqueue;hisqueue284,17219 -typedef struct _nodeline {_nodeline286,17232 - char *varname;varname287,17259 - char *varname;_nodeline::varname287,17259 - char *truevar;truevar288,17276 - char *truevar;_nodeline::truevar288,17276 - char *falsevar;falsevar289,17293 - char *falsevar;_nodeline::falsevar289,17293 - int nodenum;nodenum290,17311 - int nodenum;_nodeline::nodenum290,17311 - int truenode;truenode291,17326 - int truenode;_nodeline::truenode291,17326 - int falsenode;falsenode292,17342 - int falsenode;_nodeline::falsenode292,17342 -} nodeline;nodeline293,17359 - -packages/cplint/approx/tptree_lpad.pl,16212 -sym(1,tree1) :- !.sym271,11727 -sym(1,tree1) :- !.sym271,11727 -sym(1,tree1) :- !.sym271,11727 -sym(2,tree2) :- !.sym272,11747 -sym(2,tree2) :- !.sym272,11747 -sym(2,tree2) :- !.sym272,11747 -sym(3,tree3) :- !.sym273,11767 -sym(3,tree3) :- !.sym273,11767 -sym(3,tree3) :- !.sym273,11767 -sym(N,AN) :- atomic_concat([tree,N],AN).sym274,11787 -sym(N,AN) :- atomic_concat([tree,N],AN).sym274,11787 -sym(N,AN) :- atomic_concat([tree,N],AN).sym274,11787 -sym(N,AN) :- atomic_concat([tree,N],AN).sym274,11787 -sym(N,AN) :- atomic_concat([tree,N],AN).sym274,11787 -init_ptree(ID) :-init_ptree280,11901 -init_ptree(ID) :-init_ptree280,11901 -init_ptree(ID) :-init_ptree280,11901 -delete_ptree(ID) :-delete_ptree285,11980 -delete_ptree(ID) :-delete_ptree285,11980 -delete_ptree(ID) :-delete_ptree285,11980 -delete_ptree(_).delete_ptree291,12112 -delete_ptree(_).delete_ptree291,12112 -rename_ptree(OldID,NewID) :-rename_ptree293,12132 -rename_ptree(OldID,NewID) :-rename_ptree293,12132 -rename_ptree(OldID,NewID) :-rename_ptree293,12132 -empty_ptree(ID) :-empty_ptree299,12268 -empty_ptree(ID) :-empty_ptree299,12268 -empty_ptree(ID) :-empty_ptree299,12268 -member_ptree(List,ID) :-member_ptree310,12458 -member_ptree(List,ID) :-member_ptree310,12458 -member_ptree(List,ID) :-member_ptree310,12458 -enum_member_ptree(ID,List) :-enum_member_ptree316,12587 -enum_member_ptree(ID,List) :-enum_member_ptree316,12587 -enum_member_ptree(ID,List) :-enum_member_ptree316,12587 -trie_path(Tree, List) :-trie_path321,12684 -trie_path(Tree, List) :-trie_path321,12684 -trie_path(Tree, List) :-trie_path321,12684 -insert_ptree(true,ID) :-insert_ptree328,12842 -insert_ptree(true,ID) :-insert_ptree328,12842 -insert_ptree(true,ID) :-insert_ptree328,12842 -insert_ptree(List,ID) :-insert_ptree335,12986 -insert_ptree(List,ID) :-insert_ptree335,12986 -insert_ptree(List,ID) :-insert_ptree335,12986 -delete_ptree(List,ID) :-delete_ptree343,13160 -delete_ptree(List,ID) :-delete_ptree343,13160 -delete_ptree(List,ID) :-delete_ptree343,13160 -edges_ptree(ID,[]) :-edges_ptree355,13463 -edges_ptree(ID,[]) :-edges_ptree355,13463 -edges_ptree(ID,[]) :-edges_ptree355,13463 -edges_ptree(ID,[]) :-edges_ptree358,13510 -edges_ptree(ID,[]) :-edges_ptree358,13510 -edges_ptree(ID,[]) :-edges_ptree358,13510 -edges_ptree(ID,Edges) :-edges_ptree363,13612 -edges_ptree(ID,Edges) :-edges_ptree363,13612 -edges_ptree(ID,Edges) :-edges_ptree363,13612 -trie_literal(Trie, X) :-trie_literal373,13763 -trie_literal(Trie, X) :-trie_literal373,13763 -trie_literal(Trie, X) :-trie_literal373,13763 -count_ptree(ID,N) :-count_ptree382,13927 -count_ptree(ID,N) :-count_ptree382,13927 -count_ptree(ID,N) :-count_ptree382,13927 -prune_check_ptree(_List,_TreeID) :-prune_check_ptree393,14227 -prune_check_ptree(_List,_TreeID) :-prune_check_ptree393,14227 -prune_check_ptree(_List,_TreeID) :-prune_check_ptree393,14227 -merge_ptree(ID1,_,ID3) :-merge_ptree403,14476 -merge_ptree(ID1,_,ID3) :-merge_ptree403,14476 -merge_ptree(ID1,_,ID3) :-merge_ptree403,14476 -merge_ptree(_,ID2,ID3) :-merge_ptree412,14670 -merge_ptree(_,ID2,ID3) :-merge_ptree412,14670 -merge_ptree(_,ID2,ID3) :-merge_ptree412,14670 -merge_ptree(ID1,ID2,ID3) :-merge_ptree421,14864 -merge_ptree(ID1,ID2,ID3) :-merge_ptree421,14864 -merge_ptree(ID1,ID2,ID3) :-merge_ptree421,14864 -bdd_ptree(ID,FileBDD,FileParam) :-bdd_ptree439,15306 -bdd_ptree(ID,FileBDD,FileParam) :-bdd_ptree439,15306 -bdd_ptree(ID,FileBDD,FileParam) :-bdd_ptree439,15306 -bdd_ptree_map(ID,FileBDD,FileParam,FileMapping) :-bdd_ptree_map445,15459 -bdd_ptree_map(ID,FileBDD,FileParam,FileMapping) :-bdd_ptree_map445,15459 -bdd_ptree_map(ID,FileBDD,FileParam,FileMapping) :-bdd_ptree_map445,15459 -add_probs([],[]).add_probs455,15710 -add_probs([],[]).add_probs455,15710 -add_probs([m(R,S,Num,Name)|Map],[m(R,S,Num,Name,Prob)|Mapping]) :-add_probs456,15729 -add_probs([m(R,S,Num,Name)|Map],[m(R,S,Num,Name,Prob)|Mapping]) :-add_probs456,15729 -add_probs([m(R,S,Num,Name)|Map],[m(R,S,Num,Name,Prob)|Mapping]) :-add_probs456,15729 -bdd_ptree_script(ID,FileBDD,FileParam) :-bdd_ptree_script464,16034 -bdd_ptree_script(ID,FileBDD,FileParam) :-bdd_ptree_script464,16034 -bdd_ptree_script(ID,FileBDD,FileParam) :-bdd_ptree_script464,16034 -compute_nvars([],NV,NV,NBV,NBV).compute_nvars488,16565 -compute_nvars([],NV,NV,NBV,NBV).compute_nvars488,16565 -compute_nvars([(_V,R,S)|T],NV0,NV1,NBV0,NBV1):-compute_nvars490,16601 -compute_nvars([(_V,R,S)|T],NV0,NV1,NBV0,NBV1):-compute_nvars490,16601 -compute_nvars([(_V,R,S)|T],NV0,NV1,NBV0,NBV1):-compute_nvars490,16601 -bdd_vars_script([]).bdd_vars_script506,17059 -bdd_vars_script([]).bdd_vars_script506,17059 -bdd_vars_script([(_V,R,S)|B],N) :-bdd_vars_script509,17131 -bdd_vars_script([(_V,R,S)|B],N) :-bdd_vars_script509,17131 -bdd_vars_script([(_V,R,S)|B],N) :-bdd_vars_script509,17131 -bdd_vars_script([(_V,R,S)|B]) :-bdd_vars_script513,17242 -bdd_vars_script([(_V,R,S)|B]) :-bdd_vars_script513,17242 -bdd_vars_script([(_V,R,S)|B]) :-bdd_vars_script513,17242 -print_probs([H]):-!,print_probs526,17543 -print_probs([H]):-!,print_probs526,17543 -print_probs([H]):-!,print_probs526,17543 -print_probs([H|T]):-print_probs529,17589 -print_probs([H|T]):-print_probs529,17589 -print_probs([H|T]):-print_probs529,17589 -bdd_pt(ID,false) :-bdd_pt539,17785 -bdd_pt(ID,false) :-bdd_pt539,17785 -bdd_pt(ID,false) :-bdd_pt539,17785 -bdd_pt(ID,true) :-bdd_pt544,17886 -bdd_pt(ID,true) :-bdd_pt544,17886 -bdd_pt(ID,true) :-bdd_pt544,17886 -bdd_pt(ID,CT) :-bdd_pt553,18116 -bdd_pt(ID,CT) :-bdd_pt553,18116 -bdd_pt(ID,CT) :-bdd_pt553,18116 -trie_to_tree(Trie, Tree) :-trie_to_tree559,18227 -trie_to_tree(Trie, Tree) :-trie_to_tree559,18227 -trie_to_tree(Trie, Tree) :-trie_to_tree559,18227 -add_trees([], Tree, Tree).add_trees563,18334 -add_trees([], Tree, Tree).add_trees563,18334 -add_trees([List|Paths], Tree0, Tree) :-add_trees564,18362 -add_trees([List|Paths], Tree0, Tree) :-add_trees564,18362 -add_trees([List|Paths], Tree0, Tree) :-add_trees564,18362 -ins_pt([],_T,[]) :- !. ins_pt568,18468 -ins_pt([],_T,[]) :- !. ins_pt568,18468 -ins_pt([],_T,[]) :- !. ins_pt568,18468 -ins_pt([A|B],[s(A1,AT)|OldT],NewT) :-ins_pt569,18496 -ins_pt([A|B],[s(A1,AT)|OldT],NewT) :-ins_pt569,18496 -ins_pt([A|B],[s(A1,AT)|OldT],NewT) :-ins_pt569,18496 -ins_pt([A|B],[],[s(A,NewAT)]) :-ins_pt585,18839 -ins_pt([A|B],[],[s(A,NewAT)]) :-ins_pt585,18839 -ins_pt([A|B],[],[s(A,NewAT)]) :-ins_pt585,18839 -compress_pt(T,TT) :- compress_pt596,19262 -compress_pt(T,TT) :- compress_pt596,19262 -compress_pt(T,TT) :- compress_pt596,19262 -compress_pt(T,T) :- compress_pt604,19450 -compress_pt(T,T) :- compress_pt604,19450 -compress_pt(T,T) :- compress_pt604,19450 -compress_pt(T,CT) :- compress_pt609,19620 -compress_pt(T,CT) :- compress_pt609,19620 -compress_pt(T,CT) :- compress_pt609,19620 -and_or_compression(T,CT) :-and_or_compression616,19895 -and_or_compression(T,CT) :-and_or_compression616,19895 -and_or_compression(T,CT) :-and_or_compression616,19895 -and_comp(T,AT) :-and_comp621,20044 -and_comp(T,AT) :-and_comp621,20044 -and_comp(T,AT) :-and_comp621,20044 -or_comp(T,AT) :-or_comp627,20222 -or_comp(T,AT) :-or_comp627,20222 -or_comp(T,AT) :-or_comp627,20222 -all_leaves_pt(T,L) :-all_leaves_pt632,20331 -all_leaves_pt(T,L) :-all_leaves_pt632,20331 -all_leaves_pt(T,L) :-all_leaves_pt632,20331 -some_leaf_pt([s(A,[])|_],s(A,[])).some_leaf_pt635,20386 -some_leaf_pt([s(A,[])|_],s(A,[])).some_leaf_pt635,20386 -some_leaf_pt([s(A,L)|_],s(A,L)) :-some_leaf_pt636,20422 -some_leaf_pt([s(A,L)|_],s(A,L)) :-some_leaf_pt636,20422 -some_leaf_pt([s(A,L)|_],s(A,L)) :-some_leaf_pt636,20422 -some_leaf_pt([s(_,L)|_],X) :-some_leaf_pt638,20477 -some_leaf_pt([s(_,L)|_],X) :-some_leaf_pt638,20477 -some_leaf_pt([s(_,L)|_],X) :-some_leaf_pt638,20477 -some_leaf_pt([_|L],X) :-some_leaf_pt640,20529 -some_leaf_pt([_|L],X) :-some_leaf_pt640,20529 -some_leaf_pt([_|L],X) :-some_leaf_pt640,20529 -all_leaflists_pt(L,[L]) :-all_leaflists_pt643,20578 -all_leaflists_pt(L,[L]) :-all_leaflists_pt643,20578 -all_leaflists_pt(L,[L]) :-all_leaflists_pt643,20578 -all_leaflists_pt(T,L) :-all_leaflists_pt645,20623 -all_leaflists_pt(T,L) :-all_leaflists_pt645,20623 -all_leaflists_pt(T,L) :-all_leaflists_pt645,20623 -all_leaflists_pt(_,[]).all_leaflists_pt647,20685 -all_leaflists_pt(_,[]).all_leaflists_pt647,20685 -some_leaflist_pt([s(_,L)|_],L) :-some_leaflist_pt649,20712 -some_leaflist_pt([s(_,L)|_],L) :-some_leaflist_pt649,20712 -some_leaflist_pt([s(_,L)|_],L) :-some_leaflist_pt649,20712 -some_leaflist_pt([s(_,L)|_],X) :-some_leaflist_pt651,20762 -some_leaflist_pt([s(_,L)|_],X) :-some_leaflist_pt651,20762 -some_leaflist_pt([s(_,L)|_],X) :-some_leaflist_pt651,20762 -some_leaflist_pt([_|L],X) :-some_leaflist_pt653,20822 -some_leaflist_pt([_|L],X) :-some_leaflist_pt653,20822 -some_leaflist_pt([_|L],X) :-some_leaflist_pt653,20822 -not_or_atom(T) :-not_or_atom656,20879 -not_or_atom(T) :-not_or_atom656,20879 -not_or_atom(T) :-not_or_atom656,20879 -atomlist([]).atomlist664,20961 -atomlist([]).atomlist664,20961 -atomlist([A|B]) :-atomlist665,20976 -atomlist([A|B]) :-atomlist665,20976 -atomlist([A|B]) :-atomlist665,20976 -compression_mapping([],[]).compression_mapping671,21209 -compression_mapping([],[]).compression_mapping671,21209 -compression_mapping([First|B],[N-First|BB]) :-compression_mapping672,21238 -compression_mapping([First|B],[N-First|BB]) :-compression_mapping672,21238 -compression_mapping([First|B],[N-First|BB]) :-compression_mapping672,21238 -increase_counts([]).increase_counts697,22171 -increase_counts([]).increase_counts697,22171 -increase_counts([H|T]):-increase_counts699,22195 -increase_counts([H|T]):-increase_counts699,22195 -increase_counts([H|T]):-increase_counts699,22195 -compute_or([A],Node0,Node1):-compute_or706,22332 -compute_or([A],Node0,Node1):-compute_or706,22332 -compute_or([A],Node0,Node1):-compute_or706,22332 -compute_or([A,B|T],Node0,Node1):-compute_or710,22423 -compute_or([A,B|T],Node0,Node1):-compute_or710,22423 -compute_or([A,B|T],Node0,Node1):-compute_or710,22423 -replace_pt(T,[],T).replace_pt718,22712 -replace_pt(T,[],T).replace_pt718,22712 -replace_pt([],_,[]).replace_pt719,22733 -replace_pt([],_,[]).replace_pt719,22733 -replace_pt(L,M,R) :-replace_pt720,22755 -replace_pt(L,M,R) :-replace_pt720,22755 -replace_pt(L,M,R) :-replace_pt720,22755 -replace_pt([L|LL],[M|MM],R) :-replace_pt724,22814 -replace_pt([L|LL],[M|MM],R) :-replace_pt724,22814 -replace_pt([L|LL],[M|MM],R) :-replace_pt724,22814 -replace_pt_list([T|Tree],[M|Map],[C|Compr]) :-replace_pt_list727,22884 -replace_pt_list([T|Tree],[M|Map],[C|Compr]) :-replace_pt_list727,22884 -replace_pt_list([T|Tree],[M|Map],[C|Compr]) :-replace_pt_list727,22884 -replace_pt_list([],_,[]).replace_pt_list730,23005 -replace_pt_list([],_,[]).replace_pt_list730,23005 -replace_pt_single(s(A,T),[M|Map],Res) :-replace_pt_single732,23034 -replace_pt_single(s(A,T),[M|Map],Res) :-replace_pt_single732,23034 -replace_pt_single(s(A,T),[M|Map],Res) :-replace_pt_single732,23034 -replace_pt_single(s(A,T),[M|Map],s(A,Res)) :-replace_pt_single736,23126 -replace_pt_single(s(A,T),[M|Map],s(A,Res)) :-replace_pt_single736,23126 -replace_pt_single(s(A,T),[M|Map],s(A,Res)) :-replace_pt_single736,23126 -replace_pt_single(s(A,T),[M|Map],Res) :-replace_pt_single740,23218 -replace_pt_single(s(A,T),[M|Map],Res) :-replace_pt_single740,23218 -replace_pt_single(s(A,T),[M|Map],Res) :-replace_pt_single740,23218 -replace_pt_single(s(A,T),[M|Map],s(A,TT)) :-replace_pt_single743,23295 -replace_pt_single(s(A,T),[M|Map],s(A,TT)) :-replace_pt_single743,23295 -replace_pt_single(s(A,T),[M|Map],s(A,TT)) :-replace_pt_single743,23295 -replace_pt_single(A,_,A) :-replace_pt_single745,23374 -replace_pt_single(A,_,A) :-replace_pt_single745,23374 -replace_pt_single(A,_,A) :-replace_pt_single745,23374 -output_compressed_script_only(false) :-output_compressed_script_only748,23424 -output_compressed_script_only(false) :-output_compressed_script_only748,23424 -output_compressed_script_only(false) :-output_compressed_script_only748,23424 -output_compressed_script_only(true) :-output_compressed_script_only751,23510 -output_compressed_script_only(true) :-output_compressed_script_only751,23510 -output_compressed_script_only(true) :-output_compressed_script_only751,23510 -output_compressed_script_only(T) :-output_compressed_script_only754,23587 -output_compressed_script_only(T) :-output_compressed_script_only754,23587 -output_compressed_script_only(T) :-output_compressed_script_only754,23587 -format_compression_script_only(s((V,R,S),B0)) :-format_compression_script_only767,23936 -format_compression_script_only(s((V,R,S),B0)) :-format_compression_script_only767,23936 -format_compression_script_only(s((V,R,S),B0)) :-format_compression_script_only767,23936 -format_compression_script_only([A]) :-format_compression_script_only772,24083 -format_compression_script_only([A]) :-format_compression_script_only772,24083 -format_compression_script_only([A]) :-format_compression_script_only772,24083 -format_compression_script_only([A,B|C]) :-format_compression_script_only774,24152 -format_compression_script_only([A,B|C]) :-format_compression_script_only774,24152 -format_compression_script_only([A,B|C]) :-format_compression_script_only774,24152 -output_compressed_script(false) :-output_compressed_script783,24409 -output_compressed_script(false) :-output_compressed_script783,24409 -output_compressed_script(false) :-output_compressed_script783,24409 -output_compressed_script(true) :-output_compressed_script786,24484 -output_compressed_script(true) :-output_compressed_script786,24484 -output_compressed_script(true) :-output_compressed_script786,24484 -output_compressed_script(T) :-output_compressed_script791,24752 -output_compressed_script(T) :-output_compressed_script791,24752 -output_compressed_script(T) :-output_compressed_script791,24752 -format_compression_script(s((V,R,S),B0),Short) :-!,format_compression_script802,25070 -format_compression_script(s((V,R,S),B0),Short) :-!,format_compression_script802,25070 -format_compression_script(s((V,R,S),B0),Short) :-!,format_compression_script802,25070 -format_compression_script([H1],Short):-!,format_compression_script828,25680 -format_compression_script([H1],Short):-!,format_compression_script828,25680 -format_compression_script([H1],Short):-!,format_compression_script828,25680 -format_compression_script([H1,H2],Short):-!,format_compression_script841,25975 -format_compression_script([H1,H2],Short):-!,format_compression_script841,25975 -format_compression_script([H1,H2],Short):-!,format_compression_script841,25975 -format_compression_script([H1,H2,H3|T],Short):-format_compression_script864,26485 -format_compression_script([H1,H2,H3|T],Short):-format_compression_script864,26485 -format_compression_script([H1,H2,H3|T],Short):-format_compression_script864,26485 -format_compression_script1([A],Node1,Short) :-!,format_compression_script1887,27003 -format_compression_script1([A],Node1,Short) :-!,format_compression_script1887,27003 -format_compression_script1([A],Node1,Short) :-!,format_compression_script1887,27003 -format_compression_script1([A,B|C],Node1,Short) :-format_compression_script1902,27325 -format_compression_script1([A,B|C],Node1,Short) :-format_compression_script1902,27325 -format_compression_script1([A,B|C],Node1,Short) :-format_compression_script1902,27325 -get_next_name(Name) :-get_next_name922,27793 -get_next_name(Name) :-get_next_name922,27793 -get_next_name(Name) :-get_next_name922,27793 -get_next_var_id(N,Name) :-get_next_var_id928,27903 -get_next_var_id(N,Name) :-get_next_var_id928,27903 -get_next_var_id(N,Name) :-get_next_var_id928,27903 -get_var_name(R,S,Number,NameA) :-get_var_name937,28150 -get_var_name(R,S,Number,NameA) :-get_var_name937,28150 -get_var_name(R,S,Number,NameA) :-get_var_name937,28150 -test_var_name(T) :-test_var_name943,28374 -test_var_name(T) :-test_var_name943,28374 -test_var_name(T) :-test_var_name943,28374 - -packages/cplint/approx/utility.pl,12891 -:- dynamic rule/4, def_rule/2.dynamic8,343 -:- dynamic rule/4, def_rule/2.dynamic8,343 -builtin(_A is _B).builtin21,543 -builtin(_A is _B).builtin21,543 -builtin(_A > _B).builtin22,563 -builtin(_A > _B).builtin22,563 -builtin(_A < _B).builtin23,582 -builtin(_A < _B).builtin23,582 -builtin(_A >= _B).builtin24,601 -builtin(_A >= _B).builtin24,601 -builtin(_A =< _B).builtin25,621 -builtin(_A =< _B).builtin25,621 -builtin(_A =:= _B).builtin26,641 -builtin(_A =:= _B).builtin26,641 -builtin(_A =\= _B).builtin27,662 -builtin(_A =\= _B).builtin27,662 -builtin(true).builtin28,683 -builtin(true).builtin28,683 -builtin(false).builtin29,699 -builtin(false).builtin29,699 -builtin(_A = _B).builtin30,716 -builtin(_A = _B).builtin30,716 -builtin(_A==_B).builtin31,735 -builtin(_A==_B).builtin31,735 -builtin(_A\=_B).builtin32,753 -builtin(_A\=_B).builtin32,753 -builtin(_A\==_B).builtin33,771 -builtin(_A\==_B).builtin33,771 -builtin(length(_L, _N)).builtin34,790 -builtin(length(_L, _N)).builtin34,790 -builtin(member(_El, _L)).builtin35,816 -builtin(member(_El, _L)).builtin35,816 -builtin(average(_L, _Av)).builtin36,843 -builtin(average(_L, _Av)).builtin36,843 -builtin(max_list(_L, _Max)).builtin37,871 -builtin(max_list(_L, _Max)).builtin37,871 -builtin(min_list(_L, _Max)).builtin38,901 -builtin(min_list(_L, _Max)).builtin38,901 -builtin(nth0(_, _, _)).builtin39,931 -builtin(nth0(_, _, _)).builtin39,931 -builtin(nth(_, _, _)).builtin40,956 -builtin(nth(_, _, _)).builtin40,956 -builtin(eraseall(_Id)).builtin41,980 -builtin(eraseall(_Id)).builtin41,980 -builtin(recordz(_Id, _Item, _)).builtin42,1005 -builtin(recordz(_Id, _Item, _)).builtin42,1005 -builtin(recordzifnot(_Id, _Item, _)).builtin43,1039 -builtin(recordzifnot(_Id, _Item, _)).builtin43,1039 -member_eq(Item, [Head|_Tail]) :- member_eq47,1084 -member_eq(Item, [Head|_Tail]) :- member_eq47,1084 -member_eq(Item, [Head|_Tail]) :- member_eq47,1084 -member_eq(Item, [_Head|Tail]) :- member_eq50,1139 -member_eq(Item, [_Head|Tail]) :- member_eq50,1139 -member_eq(Item, [_Head|Tail]) :- member_eq50,1139 -not_already_present_with_a_different_head(_HeadId, _RuleId, _Subst, []).not_already_present_with_a_different_head55,1205 -not_already_present_with_a_different_head(_HeadId, _RuleId, _Subst, []).not_already_present_with_a_different_head55,1205 -not_already_present_with_a_different_head(HeadId, RuleId, Subst, [(HeadId1, RuleId, Subst1)|Tail]) :- not_already_present_with_a_different_head57,1281 -not_already_present_with_a_different_head(HeadId, RuleId, Subst, [(HeadId1, RuleId, Subst1)|Tail]) :- not_already_present_with_a_different_head57,1281 -not_already_present_with_a_different_head(HeadId, RuleId, Subst, [(HeadId1, RuleId, Subst1)|Tail]) :- not_already_present_with_a_different_head57,1281 -not_already_present_with_a_different_head(HeadId, RuleId, Subst, [(_HeadId1, RuleId1, _Subst1)|Tail]) :- not_already_present_with_a_different_head61,1515 -not_already_present_with_a_different_head(HeadId, RuleId, Subst, [(_HeadId1, RuleId1, _Subst1)|Tail]) :- not_already_present_with_a_different_head61,1515 -not_already_present_with_a_different_head(HeadId, RuleId, Subst, [(_HeadId1, RuleId1, _Subst1)|Tail]) :- not_already_present_with_a_different_head61,1515 -not_different(_HeadId, _HeadId1, Subst, Subst1) :- not_different67,1725 -not_different(_HeadId, _HeadId1, Subst, Subst1) :- not_different67,1725 -not_different(_HeadId, _HeadId1, Subst, Subst1) :- not_different67,1725 -not_different(HeadId, HeadId1, Subst, Subst1) :- not_different70,1803 -not_different(HeadId, HeadId1, Subst, Subst1) :- not_different70,1803 -not_different(HeadId, HeadId1, Subst, Subst1) :- not_different70,1803 -not_different(HeadId, HeadId, Subst, Subst).not_different74,1904 -not_different(HeadId, HeadId, Subst, Subst).not_different74,1904 -get_groundc([], [], [], P, P) :- !.get_groundc78,1956 -get_groundc([], [], [], P, P) :- !.get_groundc78,1956 -get_groundc([], [], [], P, P) :- !.get_groundc78,1956 -get_groundc([H|T], [H|T1], TV, P0, P1) :- get_groundc80,1995 -get_groundc([H|T], [H|T1], TV, P0, P1) :- get_groundc80,1995 -get_groundc([H|T], [H|T1], TV, P0, P1) :- get_groundc80,1995 -get_groundc([H|T], T1, [H|TV], P0, P1) :- get_groundc88,2188 -get_groundc([H|T], T1, [H|TV], P0, P1) :- get_groundc88,2188 -get_groundc([H|T], T1, [H|TV], P0, P1) :- get_groundc88,2188 -get_prob([], P, P) :- !.get_prob91,2268 -get_prob([], P, P) :- !.get_prob91,2268 -get_prob([], P, P) :- !.get_prob91,2268 -get_prob([H|T], P0, P1) :- get_prob93,2296 -get_prob([H|T], P0, P1) :- get_prob93,2296 -get_prob([H|T], P0, P1) :- get_prob93,2296 -find_rulec(H, (R, S, N), Body, C, P) :- find_rulec103,2452 -find_rulec(H, (R, S, N), Body, C, P) :- find_rulec103,2452 -find_rulec(H, (R, S, N), Body, C, P) :- find_rulec103,2452 -var2numbers([], _N, []).var2numbers124,3242 -var2numbers([], _N, []).var2numbers124,3242 -var2numbers([(Rule, Subst)|CoupleTail], Index, [[Index, Heads, Probs]|TripleTail]) :- var2numbers126,3270 -var2numbers([(Rule, Subst)|CoupleTail], Index, [[Index, Heads, Probs]|TripleTail]) :- var2numbers126,3270 -var2numbers([(Rule, Subst)|CoupleTail], Index, [[Index, Heads, Probs]|TripleTail]) :- var2numbers126,3270 -build_formula([], [], Var, Var, Count, Count).build_formula153,4309 -build_formula([], [], Var, Var, Count, Count).build_formula153,4309 -build_formula([D|TD], [F|TF], VarIn, VarOut, C0, C1) :- build_formula156,4461 -build_formula([D|TD], [F|TF], VarIn, VarOut, C0, C1) :- build_formula156,4461 -build_formula([D|TD], [F|TF], VarIn, VarOut, C0, C1) :- build_formula156,4461 -build_formula([], [], Var, Var).build_formula164,4754 -build_formula([], [], Var, Var).build_formula164,4754 -build_formula([D|TD], [F|TF], VarIn, VarOut) :- build_formula166,4790 -build_formula([D|TD], [F|TF], VarIn, VarOut) :- build_formula166,4790 -build_formula([D|TD], [F|TF], VarIn, VarOut) :- build_formula166,4790 -build_term([], [], Var, Var).build_term172,4919 -build_term([], [], Var, Var).build_term172,4919 -build_term([(_, pruned, _)|TC], TF, VarIn, VarOut) :- !,build_term174,4952 -build_term([(_, pruned, _)|TC], TF, VarIn, VarOut) :- !,build_term174,4952 -build_term([(_, pruned, _)|TC], TF, VarIn, VarOut) :- !,build_term174,4952 -build_term([(N, R, S)|TC], [[NVar, N]|TF], VarIn, VarOut) :-build_term177,5049 -build_term([(N, R, S)|TC], [[NVar, N]|TF], VarIn, VarOut) :-build_term177,5049 -build_term([(N, R, S)|TC], [[NVar, N]|TF], VarIn, VarOut) :-build_term177,5049 -find_probs(R, S, Probs) :- find_probs186,5273 -find_probs(R, S, Probs) :- find_probs186,5273 -find_probs(R, S, Probs) :- find_probs186,5273 -get_probs(uniform(_A:1/Num, _P, _Number), ListP) :- get_probs192,5374 -get_probs(uniform(_A:1/Num, _P, _Number), ListP) :- get_probs192,5374 -get_probs(uniform(_A:1/Num, _P, _Number), ListP) :- get_probs192,5374 -get_probs([], []).get_probs196,5477 -get_probs([], []).get_probs196,5477 -get_probs([_H:P|T], [P1|T1]) :- get_probs198,5499 -get_probs([_H:P|T], [P1|T1]) :- get_probs198,5499 -get_probs([_H:P|T], [P1|T1]) :- get_probs198,5499 -list_el(0, _P, []) :- !.list_el204,5571 -list_el(0, _P, []) :- !.list_el204,5571 -list_el(0, _P, []) :- !.list_el204,5571 -list_el(N, P, [P|T]) :- list_el206,5599 -list_el(N, P, [P|T]) :- list_el206,5599 -list_el(N, P, [P|T]) :- list_el206,5599 -nth0_eq(N, N, [H|_T], Elem) :- nth0_eq225,6081 -nth0_eq(N, N, [H|_T], Elem) :- nth0_eq225,6081 -nth0_eq(N, N, [H|_T], Elem) :- nth0_eq225,6081 -nth0_eq(NIn, NOut, [_H|T], Elem) :- nth0_eq228,6130 -nth0_eq(NIn, NOut, [_H|T], Elem) :- nth0_eq228,6130 -nth0_eq(NIn, NOut, [_H|T], Elem) :- nth0_eq228,6130 -list2and([X], X) :- list2and234,6220 -list2and([X], X) :- list2and234,6220 -list2and([X], X) :- list2and234,6220 -list2and([H|T], (H, Ta)) :- !, list2and237,6260 -list2and([H|T], (H, Ta)) :- !, list2and237,6260 -list2and([H|T], (H, Ta)) :- !, list2and237,6260 -list2or([X], X) :- list2or242,6318 -list2or([X], X) :- list2or242,6318 -list2or([X], X) :- list2or242,6318 -list2or([H|T], (H ; Ta)) :- !, list2or245,6358 -list2or([H|T], (H ; Ta)) :- !, list2or245,6358 -list2or([H|T], (H ; Ta)) :- !, list2or245,6358 -choose_clausesc(_G, C, [], C).choose_clausesc250,6415 -choose_clausesc(_G, C, [], C).choose_clausesc250,6415 -choose_clausesc(CG0, CIn, [D|T], COut) :- choose_clausesc252,6449 -choose_clausesc(CG0, CIn, [D|T], COut) :- choose_clausesc252,6449 -choose_clausesc(CG0, CIn, [D|T], COut) :- choose_clausesc252,6449 -choose_clausesc(G0, CIn, [D|T], COut) :- choose_clausesc256,6575 -choose_clausesc(G0, CIn, [D|T], COut) :- choose_clausesc256,6575 -choose_clausesc(G0, CIn, [D|T], COut) :- choose_clausesc256,6575 -choose_clauses_present(N, R, S, CG0, CIn, COut, T) :- choose_clauses_present266,6831 -choose_clauses_present(N, R, S, CG0, CIn, COut, T) :- choose_clauses_present266,6831 -choose_clauses_present(N, R, S, CG0, CIn, COut, T) :- choose_clauses_present266,6831 -choose_clauses_present(N, R, S, CG0, CIn, COut, T) :- choose_clauses_present270,6993 -choose_clauses_present(N, R, S, CG0, CIn, COut, T) :- choose_clauses_present270,6993 -choose_clauses_present(N, R, S, CG0, CIn, COut, T) :- choose_clauses_present270,6993 -new_head(N, R, S, N1) :- new_head282,7351 -new_head(N, R, S, N1) :- new_head282,7351 -new_head(N, R, S, N1) :- new_head282,7351 -new_head(N, R, S, N1) :- new_head288,7508 -new_head(N, R, S, N1) :- new_head288,7508 -new_head(N, R, S, N1) :- new_head288,7508 -already_present(N, R, S, [(N, R, SH)|_T]) :- already_present301,7918 -already_present(N, R, S, [(N, R, SH)|_T]) :- already_present301,7918 -already_present(N, R, S, [(N, R, SH)|_T]) :- already_present301,7918 -already_present(N, R, S, [_H|T]) :- already_present304,7975 -already_present(N, R, S, [_H|T]) :- already_present304,7975 -already_present(N, R, S, [_H|T]) :- already_present304,7975 -already_present_with_a_different_head(N, R, S, [(NH, R, SH)|_T]) :- already_present_with_a_different_head309,8050 -already_present_with_a_different_head(N, R, S, [(NH, R, SH)|_T]) :- already_present_with_a_different_head309,8050 -already_present_with_a_different_head(N, R, S, [(NH, R, SH)|_T]) :- already_present_with_a_different_head309,8050 -already_present_with_a_different_head(N, R, S, [_H|T]) :- already_present_with_a_different_head312,8145 -already_present_with_a_different_head(N, R, S, [_H|T]) :- already_present_with_a_different_head312,8145 -already_present_with_a_different_head(N, R, S, [_H|T]) :- already_present_with_a_different_head312,8145 -already_present_with_a_different_head_ground(N, R, S, [(NH, R, SH)|_T]) :- already_present_with_a_different_head_ground315,8260 -already_present_with_a_different_head_ground(N, R, S, [(NH, R, SH)|_T]) :- already_present_with_a_different_head_ground315,8260 -already_present_with_a_different_head_ground(N, R, S, [(NH, R, SH)|_T]) :- already_present_with_a_different_head_ground315,8260 -already_present_with_a_different_head_ground(N, R, S, [_H|T]) :- already_present_with_a_different_head_ground318,8356 -already_present_with_a_different_head_ground(N, R, S, [_H|T]) :- already_present_with_a_different_head_ground318,8356 -already_present_with_a_different_head_ground(N, R, S, [_H|T]) :- already_present_with_a_different_head_ground318,8356 -impose_dif_cons(_R, _S, []) :- !.impose_dif_cons323,8489 -impose_dif_cons(_R, _S, []) :- !.impose_dif_cons323,8489 -impose_dif_cons(_R, _S, []) :- !.impose_dif_cons323,8489 -impose_dif_cons(R, S, [(_NH, R, SH)|T]) :- !, impose_dif_cons325,8526 -impose_dif_cons(R, S, [(_NH, R, SH)|T]) :- !, impose_dif_cons325,8526 -impose_dif_cons(R, S, [(_NH, R, SH)|T]) :- !, impose_dif_cons325,8526 -impose_dif_cons(R, S, [_H|T]) :- impose_dif_cons329,8619 -impose_dif_cons(R, S, [_H|T]) :- impose_dif_cons329,8619 -impose_dif_cons(R, S, [_H|T]) :- impose_dif_cons329,8619 -choose_a_head(N, R, S, [(NH, R, SH)|T], [(NH, R, SH)|T]) :- choose_a_head340,8956 -choose_a_head(N, R, S, [(NH, R, SH)|T], [(NH, R, SH)|T]) :- choose_a_head340,8956 -choose_a_head(N, R, S, [(NH, R, SH)|T], [(NH, R, SH)|T]) :- choose_a_head340,8956 -choose_a_head(N, R, S, [(NH, R, SH)|T], [(NH, R, S), (NH, R, SH)|T]) :- choose_a_head351,9396 -choose_a_head(N, R, S, [(NH, R, SH)|T], [(NH, R, S), (NH, R, SH)|T]) :- choose_a_head351,9396 -choose_a_head(N, R, S, [(NH, R, SH)|T], [(NH, R, S), (NH, R, SH)|T]) :- choose_a_head351,9396 -choose_a_head(N, R, S, [H|T], [H|T1]) :- choose_a_head356,9524 -choose_a_head(N, R, S, [H|T], [H|T1]) :- choose_a_head356,9524 -choose_a_head(N, R, S, [H|T], [H|T1]) :- choose_a_head356,9524 -listN(N, N, []) :- !.listN361,9606 -listN(N, N, []) :- !.listN361,9606 -listN(N, N, []) :- !.listN361,9606 -listN(NIn, N, [NIn|T]) :- listN363,9631 -listN(NIn, N, [NIn|T]) :- listN363,9631 -listN(NIn, N, [NIn|T]) :- listN363,9631 - -packages/cplint/Artistic,0 - -packages/cplint/COPYRIGHT_SLG,0 - -packages/cplint/cpl.pl,2553 -p(File):-p14,255 -p(File):-p14,255 -p(File):-p14,255 -sc(Goals,Evidences,Prob,CPUTime1,0.0,WallTime1,0.0):-sc17,281 -sc(Goals,Evidences,Prob,CPUTime1,0.0,WallTime1,0.0):-sc17,281 -sc(Goals,Evidences,Prob,CPUTime1,0.0,WallTime1,0.0):-sc17,281 -sc(Goals,Evidences,Prob):-sc28,612 -sc(Goals,Evidences,Prob):-sc28,612 -sc(Goals,Evidences,Prob):-sc28,612 -solve_cond(Goal,Evidence,Prob):-solve_cond34,752 -solve_cond(Goal,Evidence,Prob):-solve_cond34,752 -solve_cond(Goal,Evidence,Prob):-solve_cond34,752 -solve_cond_goals(Goals,LE,ProbGE,LGE,LDefClGE):-solve_cond_goals57,1389 -solve_cond_goals(Goals,LE,ProbGE,LGE,LDefClGE):-solve_cond_goals57,1389 -solve_cond_goals(Goals,LE,ProbGE,LGE,LDefClGE):-solve_cond_goals57,1389 -find_deriv_GE(LD,GoalsList,Deriv,Def):-find_deriv_GE68,1740 -find_deriv_GE(LD,GoalsList,Deriv,Def):-find_deriv_GE68,1740 -find_deriv_GE(LD,GoalsList,Deriv,Def):-find_deriv_GE68,1740 -s(GoalsList,Prob):-s73,1873 -s(GoalsList,Prob):-s73,1873 -s(GoalsList,Prob):-s73,1873 -s(GoalsList,Prob,CPUTime1,0.0,WallTime1,0.0):-s77,1952 -s(GoalsList,Prob,CPUTime1,0.0,WallTime1,0.0):-s77,1952 -s(GoalsList,Prob,CPUTime1,0.0,WallTime1,0.0):-s77,1952 -solve(Goal,Prob):-solve87,2223 -solve(Goal,Prob):-solve87,2223 -solve(Goal,Prob):-solve87,2223 -test_validity(L):-test_validity120,2996 -test_validity(L):-test_validity120,2996 -test_validity(L):-test_validity120,2996 -get_clauses_hb([],[],[]):-!.get_clauses_hb134,3372 -get_clauses_hb([],[],[]):-!.get_clauses_hb134,3372 -get_clauses_hb([],[],[]):-!.get_clauses_hb134,3372 -get_clauses_hb([(R,S)|T],[r(Head,Body)|TR],HB):-get_clauses_hb136,3402 -get_clauses_hb([(R,S)|T],[r(Head,Body)|TR],HB):-get_clauses_hb136,3402 -get_clauses_hb([(R,S)|T],[r(Head,Body)|TR],HB):-get_clauses_hb136,3402 -get_clauses_hb([(R,S)|T],[r([Head:1],Body)|TR],HB):-get_clauses_hb142,3557 -get_clauses_hb([(R,S)|T],[r([Head:1],Body)|TR],HB):-get_clauses_hb142,3557 -get_clauses_hb([(R,S)|T],[r([Head:1],Body)|TR],HB):-get_clauses_hb142,3557 -get_atoms([],[]):-!.get_atoms147,3693 -get_atoms([],[]):-!.get_atoms147,3693 -get_atoms([],[]):-!.get_atoms147,3693 -get_atoms([H:_P|T],[H|TA]):-get_atoms149,3715 -get_atoms([H:_P|T],[H|TA]):-get_atoms149,3715 -get_atoms([H:_P|T],[H|TA]):-get_atoms149,3715 -separate([],[],[]):-!.separate152,3764 -separate([],[],[]):-!.separate152,3764 -separate([],[],[]):-!.separate152,3764 -separate([(C,D)|T],[C|TC],Cl):-separate154,3788 -separate([(C,D)|T],[C|TC],Cl):-separate154,3788 -separate([(C,D)|T],[C|TC],Cl):-separate154,3788 - -packages/cplint/cplint.h,1464 - int var,value;var24,417 - int var,value;__anon428::var24,417 - int var,value;value24,417 - int var,value;__anon428::value24,417 -} factor;factor25,434 - int nFact;nFact29,462 - int nFact;__anon429::nFact29,462 - factor * factors;factors30,475 - factor * factors;__anon429::factors30,475 -} term;term31,495 - int nTerms;nTerms35,521 - int nTerms;__anon430::nTerms35,521 - term * terms;terms36,535 - term * terms;__anon430::terms36,535 -} expr;expr37,551 - int nVal,nBit;nVal41,577 - int nVal,nBit;__anon431::nVal41,577 - int nVal,nBit;nBit41,577 - int nVal,nBit;__anon431::nBit41,577 - double * probabilities;probabilities42,594 - double * probabilities;__anon431::probabilities42,594 - DdNode * * booleanVars;booleanVars43,620 - DdNode * * booleanVars;__anon431::booleanVars43,620 -} variable;variable44,646 - int nVar;nVar48,676 - int nVar;__anon432::nVar48,676 - int nBVar;nBVar49,688 - int nBVar;__anon432::nBVar49,688 - variable * varar;varar50,701 - variable * varar;__anon432::varar50,701 - int * bVar2mVar;bVar2mVar51,721 - int * bVar2mVar;__anon432::bVar2mVar51,721 -} variables;variables52,740 - DdNode *key;key56,772 - DdNode *key;__anon433::key56,772 - double value;value57,787 - double value;__anon433::value57,787 -} rowel;rowel58,803 - int cnt;cnt62,832 - int cnt;__anon434::cnt62,832 - rowel *row;row63,843 - rowel *row;__anon434::row63,843 -} tablerow;tablerow64,857 - -packages/cplint/cplint_Prob.c,768 -DdNode * retFunction(DdManager * mgr,expr expression, variables v)retFunction23,397 -DdNode * retTerm(DdManager * mgr,term t, variables v)retTerm47,938 -DdNode * retFactor(DdManager * mgr, factor f, variables vars)retFactor71,1431 -double Prob(DdNode *node, variables vars, tablerow * nodes)Prob115,2286 -double ProbBool(DdNode *node, int bits, int nBit,int posBVar,variable v,ProbBool162,3260 -int correctPosition(int index,variable v, DdNode * node,int posBVar)correctPosition219,4680 -double * get_value(tablerow *tab, DdNode *node) {get_value231,4985 -void destroy_table(tablerow *tab, int boolVars)destroy_table245,5241 -tablerow* init_table(int boolVars) {init_table254,5379 -void add_node(tablerow *tab, DdNode *node, double value) add_node268,5601 - -packages/cplint/cplint_yap.c,348 -variables createVars(YAP_Term t,DdManager * mgr, int create_dot, char inames[1000][20])createVars25,516 -expr createExpression(YAP_Term t)createExpression88,2327 -static YAP_Bool compute_prob(void)compute_prob128,3455 -void init_my_predicates()init_my_predicates212,5630 -FILE * open_file(char *filename, const char *mode)open_file218,5804 - -packages/cplint/doc/Makefile,0 - -packages/cplint/doc/manual.html,0 - -packages/cplint/doc/manual.tex,501 -\section{Introduction}Introduction29,676 -\section{Installation}Installation37,1276 -\section{Syntax}Syntax64,2556 -\section{Inference}Inference122,4918 -\subsection{Commands}Commands163,8970 -\subsubsection{Parameters}Parameters247,14624 -\subsection{Semantic Modules}Semantic Modules288,18123 -\subsection{Extensions}Extensions312,19999 -\subsection{Files}Files410,25771 -\section{Learning}Learning440,28554 -\subsection{Input}Input453,29793 -\subsection{Parameters}Parameters594,36166 - -packages/cplint/em/Artistic,0 - -packages/cplint/em/em.pl,24823 -setting(depth,3).setting30,636 -setting(depth,3).setting30,636 -setting(single_var,false).setting31,654 -setting(single_var,false).setting31,654 -setting(sample_size,1000). setting33,682 -setting(sample_size,1000). setting33,682 -setting(equivalent_sample_size,100).setting37,871 -setting(equivalent_sample_size,100).setting37,871 -setting(epsilon_em,0.1).setting41,1076 -setting(epsilon_em,0.1).setting41,1076 -setting(epsilon_em_fraction,0.01).setting42,1101 -setting(epsilon_em_fraction,0.01).setting42,1101 -setting(epsilon_sem,2).setting45,1251 -setting(epsilon_sem,2).setting45,1251 -setting(random_restarts_number,1).setting46,1275 -setting(random_restarts_number,1).setting46,1275 -setting(verbosity,1).setting48,1348 -setting(verbosity,1).setting48,1348 -em(File):-em52,1373 -em(File):-em52,1373 -em(File):-em52,1373 -gen_ex([],DBE,DBE).gen_ex79,2156 -gen_ex([],DBE,DBE).gen_ex79,2156 -gen_ex([H|T],DB0,DB1):-gen_ex81,2177 -gen_ex([H|T],DB0,DB1):-gen_ex81,2177 -gen_ex([H|T],DB0,DB1):-gen_ex81,2177 -cycle_head([],[],_NR,_S,_NH,_PG,_CSetList,_N):-!.cycle_head88,2303 -cycle_head([],[],_NR,_S,_NH,_PG,_CSetList,_N):-!.cycle_head88,2303 -cycle_head([],[],_NR,_S,_NH,_PG,_CSetList,_N):-!.cycle_head88,2303 -cycle_head([SSH0|T],[SSH1|T1],NR,S,NH,PG,CSetList,N):-cycle_head90,2354 -cycle_head([SSH0|T],[SSH1|T1],NR,S,NH,PG,CSetList,N):-cycle_head90,2354 -cycle_head([SSH0|T],[SSH1|T1],NR,S,NH,PG,CSetList,N):-cycle_head90,2354 -cycle_head_neg([],[],_NR,_S,_NH,_NA,_PG,_CSetList,_N):-!.cycle_head_neg103,2703 -cycle_head_neg([],[],_NR,_S,_NH,_NA,_PG,_CSetList,_N):-!.cycle_head_neg103,2703 -cycle_head_neg([],[],_NR,_S,_NH,_NA,_PG,_CSetList,_N):-!.cycle_head_neg103,2703 -cycle_head_neg([SSH0|T],[SSH1|T1],NR,S,NH,NA,PG,CSetList,N):-cycle_head_neg105,2762 -cycle_head_neg([SSH0|T],[SSH1|T1],NR,S,NH,NA,PG,CSetList,N):-cycle_head_neg105,2762 -cycle_head_neg([SSH0|T],[SSH1|T1],NR,S,NH,NA,PG,CSetList,N):-cycle_head_neg105,2762 -extract_relevant_C_sets_neg(NR,S,NH,NA,CS,CS1):-extract_relevant_C_sets_neg119,3329 -extract_relevant_C_sets_neg(NR,S,NH,NA,CS,CS1):-extract_relevant_C_sets_neg119,3329 -extract_relevant_C_sets_neg(NR,S,NH,NA,CS,CS1):-extract_relevant_C_sets_neg119,3329 -neg_choice(N,N,_NH,_NR,_S,[]):-!.neg_choice123,3441 -neg_choice(N,N,_NH,_NR,_S,[]):-!.neg_choice123,3441 -neg_choice(N,N,_NH,_NR,_S,[]):-!.neg_choice123,3441 -neg_choice(NH,NA,NH,NR,S,L):-!,neg_choice125,3476 -neg_choice(NH,NA,NH,NR,S,L):-!,neg_choice125,3476 -neg_choice(NH,NA,NH,NR,S,L):-!,neg_choice125,3476 -neg_choice(N,NA,NH,NR,S,[[(N,NR,S)]|L]):-neg_choice129,3566 -neg_choice(N,NA,NH,NR,S,[[(N,NR,S)]|L]):-neg_choice129,3566 -neg_choice(N,NA,NH,NR,S,[[(N,NR,S)]|L]):-neg_choice129,3566 -extract_relevant_C_sets(_NR,_S,_NH,[],[]):-!.extract_relevant_C_sets133,3665 -extract_relevant_C_sets(_NR,_S,_NH,[],[]):-!.extract_relevant_C_sets133,3665 -extract_relevant_C_sets(_NR,_S,_NH,[],[]):-!.extract_relevant_C_sets133,3665 -extract_relevant_C_sets(NR,S,NH,[H|T],CS):-extract_relevant_C_sets135,3712 -extract_relevant_C_sets(NR,S,NH,[H|T],CS):-extract_relevant_C_sets135,3712 -extract_relevant_C_sets(NR,S,NH,[H|T],CS):-extract_relevant_C_sets135,3712 -extract_relevant_C_sets(NR,S,NH,[H|T],[H1|CS]):-extract_relevant_C_sets139,3831 -extract_relevant_C_sets(NR,S,NH,[H|T],[H1|CS]):-extract_relevant_C_sets139,3831 -extract_relevant_C_sets(NR,S,NH,[H|T],[H1|CS]):-extract_relevant_C_sets139,3831 -extract_relevant_C_sets1(NR,S,NH,NH1,_H,T,CS):-extract_relevant_C_sets1143,3952 -extract_relevant_C_sets1(NR,S,NH,NH1,_H,T,CS):-extract_relevant_C_sets1143,3952 -extract_relevant_C_sets1(NR,S,NH,NH1,_H,T,CS):-extract_relevant_C_sets1143,3952 -extract_relevant_C_sets1(NR,S,NH,_NH1,H,T,[H|CS]):-extract_relevant_C_sets1147,4055 -extract_relevant_C_sets1(NR,S,NH,_NH1,H,T,[H|CS]):-extract_relevant_C_sets1147,4055 -extract_relevant_C_sets1(NR,S,NH,_NH1,H,T,[H|CS]):-extract_relevant_C_sets1147,4055 -compute_parameters_EM([],[],SuffStats,-1e200,_DB):-!,compute_parameters_EM153,4172 -compute_parameters_EM([],[],SuffStats,-1e200,_DB):-!,compute_parameters_EM153,4172 -compute_parameters_EM([],[],SuffStats,-1e200,_DB):-!,compute_parameters_EM153,4172 -compute_parameters_EM(Model0,Model1,SuffStats1,CLL1,DB):-compute_parameters_EM156,4248 -compute_parameters_EM(Model0,Model1,SuffStats1,CLL1,DB):-compute_parameters_EM156,4248 -compute_parameters_EM(Model0,Model1,SuffStats1,CLL1,DB):-compute_parameters_EM156,4248 -random_restarts(1,Model,SS,CLL,Model,SS,CLL,_DB):-!.random_restarts188,4895 -random_restarts(1,Model,SS,CLL,Model,SS,CLL,_DB):-!.random_restarts188,4895 -random_restarts(1,Model,SS,CLL,Model,SS,CLL,_DB):-!.random_restarts188,4895 -random_restarts(N,Model0,SS0,CLL0,Model1,SS1,CLL1,DB):-random_restarts190,4949 -random_restarts(N,Model0,SS0,CLL0,Model1,SS1,CLL1,DB):-random_restarts190,4949 -random_restarts(N,Model0,SS0,CLL0,Model1,SS1,CLL1,DB):-random_restarts190,4949 -randomize([],[]):-!.randomize215,5495 -randomize([],[]):-!.randomize215,5495 -randomize([],[]):-!.randomize215,5495 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize217,5517 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize217,5517 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize217,5517 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head223,5672 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head223,5672 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head223,5672 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head231,5797 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head231,5797 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head231,5797 -em_iteration(Model0,ModelPar,SuffStats1,CLL1,DB):-em_iteration239,5930 -em_iteration(Model0,ModelPar,SuffStats1,CLL1,DB):-em_iteration239,5930 -em_iteration(Model0,ModelPar,SuffStats1,CLL1,DB):-em_iteration239,5930 -cycle_EM(Model0,SuffStats0,CLL0,ModelPar,SuffStats,CLL,DB,N):-cycle_EM250,6253 -cycle_EM(Model0,SuffStats0,CLL0,ModelPar,SuffStats,CLL,DB,N):-cycle_EM250,6253 -cycle_EM(Model0,SuffStats0,CLL0,ModelPar,SuffStats,CLL,DB,N):-cycle_EM250,6253 -write_stats(S,SS):-write_stats273,6873 -write_stats(S,SS):-write_stats273,6873 -write_stats(S,SS):-write_stats273,6873 -write_stats_list(S,[]):-nl(S),nl(S),!.write_stats_list278,6976 -write_stats_list(S,[]):-nl(S),nl(S),!.write_stats_list278,6976 -write_stats_list(S,[]):-nl(S),nl(S),!.write_stats_list278,6976 -write_stats_list(S,[R-d(D,N,I)|T]):-write_stats_list280,7016 -write_stats_list(S,[R-d(D,N,I)|T]):-write_stats_list280,7016 -write_stats_list(S,[R-d(D,N,I)|T]):-write_stats_list280,7016 -m_step([],_SS,[]):-!.m_step284,7118 -m_step([],_SS,[]):-!.m_step284,7118 -m_step([],_SS,[]):-!.m_step284,7118 -m_step([rule(N,V,NH,HL,BL,LogF)|T],SS,[rule(N,V,NH,HL1,BL,LogF)|T1]):-m_step286,7141 -m_step([rule(N,V,NH,HL,BL,LogF)|T],SS,[rule(N,V,NH,HL1,BL,LogF)|T1]):-m_step286,7141 -m_step([rule(N,V,NH,HL,BL,LogF)|T],SS,[rule(N,V,NH,HL1,BL,LogF)|T1]):-m_step286,7141 -update_head([],[],_N,[]). update_head295,7350 -update_head([],[],_N,[]). update_head295,7350 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head297,7379 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head297,7379 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head297,7379 -compute_CLL_stats(Model,DB,CLL,SuffStats1):-compute_CLL_stats306,7552 -compute_CLL_stats(Model,DB,CLL,SuffStats1):-compute_CLL_stats306,7552 -compute_CLL_stats(Model,DB,CLL,SuffStats1):-compute_CLL_stats306,7552 -assert_model([]):-!.assert_model311,7687 -assert_model([]):-!.assert_model311,7687 -assert_model([]):-!.assert_model311,7687 -assert_model([rule(N,V,NH,HL,BL,_LogF)|T]):-assert_model313,7709 -assert_model([rule(N,V,NH,HL,BL,_LogF)|T]):-assert_model313,7709 -assert_model([rule(N,V,NH,HL,BL,_LogF)|T]):-assert_model313,7709 -retract_model:-retract_model318,7847 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules322,7939 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules322,7939 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules322,7939 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules324,7985 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules324,7985 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules324,7985 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules326,8036 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules326,8036 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules326,8036 -compute_CLL_stats_examples(DB,CLL,SuffStats1):-compute_CLL_stats_examples331,8192 -compute_CLL_stats_examples(DB,CLL,SuffStats1):-compute_CLL_stats_examples331,8192 -compute_CLL_stats_examples(DB,CLL,SuffStats1):-compute_CLL_stats_examples331,8192 -get_ouptut_atoms(O):-get_ouptut_atoms335,8323 -get_ouptut_atoms(O):-get_ouptut_atoms335,8323 -get_ouptut_atoms(O):-get_ouptut_atoms335,8323 -generate_goal([],_H,G,G):-!.generate_goal338,8382 -generate_goal([],_H,G,G):-!.generate_goal338,8382 -generate_goal([],_H,G,G):-!.generate_goal338,8382 -generate_goal([P/A|T],H,G0,G1):-generate_goal340,8412 -generate_goal([P/A|T],H,G0,G1):-generate_goal340,8412 -generate_goal([P/A|T],H,G0,G1):-generate_goal340,8412 -compute_CLL_stats_cplint([],CLL,CLL,S,S):-!.compute_CLL_stats_cplint350,8650 -compute_CLL_stats_cplint([],CLL,CLL,S,S):-!.compute_CLL_stats_cplint350,8650 -compute_CLL_stats_cplint([],CLL,CLL,S,S):-!.compute_CLL_stats_cplint350,8650 -compute_CLL_stats_cplint([\+ H|T],CLL0,CLL1,Stats0,Stats1):-!,compute_CLL_stats_cplint352,8696 -compute_CLL_stats_cplint([\+ H|T],CLL0,CLL1,Stats0,Stats1):-!,compute_CLL_stats_cplint352,8696 -compute_CLL_stats_cplint([\+ H|T],CLL0,CLL1,Stats0,Stats1):-!,compute_CLL_stats_cplint352,8696 -compute_CLL_stats_cplint([H|T],CLL0,CLL1,Stats0,Stats1):-compute_CLL_stats_cplint376,9436 -compute_CLL_stats_cplint([H|T],CLL0,CLL1,Stats0,Stats1):-compute_CLL_stats_cplint376,9436 -compute_CLL_stats_cplint([H|T],CLL0,CLL1,Stats0,Stats1):-compute_CLL_stats_cplint376,9436 -s(GoalsList,GroundLpad,CSets,Prob):-s401,9962 -s(GoalsList,GroundLpad,CSets,Prob):-s401,9962 -s(GoalsList,GroundLpad,CSets,Prob):-s401,9962 -solve(GoalsList,GroundLpad,LDup,Prob):-solve404,10042 -solve(GoalsList,GroundLpad,LDup,Prob):-solve404,10042 -solve(GoalsList,GroundLpad,LDup,Prob):-solve404,10042 -collect_stats_cplint([],_PG,_CSetList,_N,Stats,Stats):-!. collect_stats_cplint421,10609 -collect_stats_cplint([],_PG,_CSetList,_N,Stats,Stats):-!. collect_stats_cplint421,10609 -collect_stats_cplint([],_PG,_CSetList,_N,Stats,Stats):-!. collect_stats_cplint421,10609 -collect_stats_cplint([(R,S,Head,_Body)|T],PG,CSetList,N,Stats0,Stats1):-collect_stats_cplint423,10670 -collect_stats_cplint([(R,S,Head,_Body)|T],PG,CSetList,N,Stats0,Stats1):-collect_stats_cplint423,10670 -collect_stats_cplint([(R,S,Head,_Body)|T],PG,CSetList,N,Stats0,Stats1):-collect_stats_cplint423,10670 -collect_stats_cplint_neg([],_PG,_CSetList,_N,Stats,Stats):-!.collect_stats_cplint_neg436,11108 -collect_stats_cplint_neg([],_PG,_CSetList,_N,Stats,Stats):-!.collect_stats_cplint_neg436,11108 -collect_stats_cplint_neg([],_PG,_CSetList,_N,Stats,Stats):-!.collect_stats_cplint_neg436,11108 -collect_stats_cplint_neg([(R,S,Head,_Body)|T],PG,CSetList,N,Stats0,Stats1):-collect_stats_cplint_neg438,11171 -collect_stats_cplint_neg([(R,S,Head,_Body)|T],PG,CSetList,N,Stats0,Stats1):-collect_stats_cplint_neg438,11171 -collect_stats_cplint_neg([(R,S,Head,_Body)|T],PG,CSetList,N,Stats0,Stats1):-collect_stats_cplint_neg438,11171 -build_formula([],[],Var,Var,C,C).build_formula460,12143 -build_formula([],[],Var,Var,C,C).build_formula460,12143 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula462,12178 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula462,12178 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula462,12178 -build_formula([],[],Var,Var).build_formula468,12356 -build_formula([],[],Var,Var).build_formula468,12356 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula470,12387 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula470,12387 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula470,12387 -build_term([],[],Var,Var).build_term474,12510 -build_term([],[],Var,Var).build_term474,12510 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term476,12538 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term476,12538 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term476,12538 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term479,12629 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term479,12629 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term479,12629 -nth0_eq(N,N,[H|_T],El):-nth0_eq492,13084 -nth0_eq(N,N,[H|_T],El):-nth0_eq492,13084 -nth0_eq(N,N,[H|_T],El):-nth0_eq492,13084 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq495,13127 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq495,13127 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq495,13127 -var2numbers([],_N,[]).var2numbers502,13381 -var2numbers([],_N,[]).var2numbers502,13381 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers504,13405 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers504,13405 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers504,13405 -find_probs(R,S,Probs):-find_probs510,13573 -find_probs(R,S,Probs):-find_probs510,13573 -find_probs(R,S,Probs):-find_probs510,13573 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs514,13669 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs514,13669 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs514,13669 -get_probs([],[]).get_probs518,13774 -get_probs([],[]).get_probs518,13774 -get_probs([_H:P|T],[P1|T1]):-get_probs520,13793 -get_probs([_H:P|T],[P1|T1]):-get_probs520,13793 -get_probs([_H:P|T],[P1|T1]):-get_probs520,13793 -list_el(0,_P,[]):-!.list_el524,13866 -list_el(0,_P,[]):-!.list_el524,13866 -list_el(0,_P,[]):-!.list_el524,13866 -list_el(N,P,[P|T]):-list_el526,13888 -list_el(N,P,[P|T]):-list_el526,13888 -list_el(N,P,[P|T]):-list_el526,13888 -sum(_NS,[],[],[]):-!. sum530,13958 -sum(_NS,[],[],[]):-!. sum530,13958 -sum(_NS,[],[],[]):-!. sum530,13958 -sum(NS,[H0|T0],[H1|T1],[H2|T2]):-sum532,13983 -sum(NS,[H0|T0],[H1|T1],[H2|T2]):-sum532,13983 -sum(NS,[H0|T0],[H1|T1],[H2|T2]):-sum532,13983 -times(_NS,[],[]):-!. times536,14060 -times(_NS,[],[]):-!. times536,14060 -times(_NS,[],[]):-!. times536,14060 -times(NS,[H0|T0],[H1|T1]):-times538,14084 -times(NS,[H0|T0],[H1|T1]):-times538,14084 -times(NS,[H0|T0],[H1|T1]):-times538,14084 -generate_file_names(File,FileKB,FileOut,FileL,FileLPAD):-generate_file_names545,14239 -generate_file_names(File,FileKB,FileOut,FileL,FileLPAD):-generate_file_names545,14239 -generate_file_names(File,FileKB,FileOut,FileL,FileLPAD):-generate_file_names545,14239 -generate_file_name(File,Ext,FileExt):-generate_file_name551,14483 -generate_file_name(File,Ext,FileExt):-generate_file_name551,14483 -generate_file_name(File,Ext,FileExt):-generate_file_name551,14483 -set(Parameter,Value):-set557,14630 -set(Parameter,Value):-set557,14630 -set(Parameter,Value):-set557,14630 -load_initial_model(File,Model):-load_initial_model561,14723 -load_initial_model(File,Model):-load_initial_model561,14723 -load_initial_model(File,Model):-load_initial_model561,14723 -process_clauses([(end_of_file,[])],N,N,Model,Model).process_clauses567,14847 -process_clauses([(end_of_file,[])],N,N,Model,Model).process_clauses567,14847 -process_clauses([((H:-B),_V)|T],N,N2,Model0,Model1):-process_clauses569,14901 -process_clauses([((H:-B),_V)|T],N,N2,Model0,Model1):-process_clauses569,14901 -process_clauses([((H:-B),_V)|T],N,N2,Model0,Model1):-process_clauses569,14901 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V1,NH,HL,BL,0)|Model1]):-process_clauses574,15036 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V1,NH,HL,BL,0)|Model1]):-process_clauses574,15036 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V1,NH,HL,BL,0)|Model1]):-process_clauses574,15036 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V1,NH,HL,BL,0)|Model1]):-process_clauses591,15398 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V1,NH,HL,BL,0)|Model1]):-process_clauses591,15398 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V1,NH,HL,BL,0)|Model1]):-process_clauses591,15398 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V1,NH,HL,BL,0)|Model1]):-!,process_clauses608,15763 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V1,NH,HL,BL,0)|Model1]):-!,process_clauses608,15763 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V1,NH,HL,BL,0)|Model1]):-!,process_clauses608,15763 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V1,NH,HL,[],0)|Model1]):-process_clauses623,16101 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V1,NH,HL,[],0)|Model1]):-process_clauses623,16101 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V1,NH,HL,[],0)|Model1]):-process_clauses623,16101 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V1,NH,HL,[],0)|Model1]):-process_clauses638,16413 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V1,NH,HL,[],0)|Model1]):-process_clauses638,16413 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V1,NH,HL,[],0)|Model1]):-process_clauses638,16413 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V1,NH,HL,[],0)|Model1]):-process_clauses653,16727 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V1,NH,HL,[],0)|Model1]):-process_clauses653,16727 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V1,NH,HL,[],0)|Model1]):-process_clauses653,16727 -process_head([H:P|T],NHL,VI):-!,process_head670,17139 -process_head([H:P|T],NHL,VI):-!,process_head670,17139 -process_head([H:P|T],NHL,VI):-!,process_head670,17139 -process_head(HL,NHL,VI):-process_head673,17216 -process_head(HL,NHL,VI):-process_head673,17216 -process_head(HL,NHL,VI):-process_head673,17216 -process_head_random([],P,['':PNull1],_VI):-process_head_random676,17283 -process_head_random([],P,['':PNull1],_VI):-process_head_random676,17283 -process_head_random([],P,['':PNull1],_VI):-process_head_random676,17283 -process_head_random([H|T],P,[H1:PH1|NT],VI):-process_head_random684,17406 -process_head_random([H|T],P,[H1:PH1|NT],VI):-process_head_random684,17406 -process_head_random([H|T],P,[H1:PH1|NT],VI):-process_head_random684,17406 -process_head_prob([H:PH],P,[H1:PH1,'':PNull1],VI):-process_head_prob692,17578 -process_head_prob([H:PH],P,[H1:PH1,'':PNull1],VI):-process_head_prob692,17578 -process_head_prob([H:PH],P,[H1:PH1,'':PNull1],VI):-process_head_prob692,17578 -process_head_prob([H:PH|T],P,[H1:PH1|NT],VI):-process_head_prob702,17755 -process_head_prob([H:PH|T],P,[H1:PH1|NT],VI):-process_head_prob702,17755 -process_head_prob([H:PH|T],P,[H1:PH1|NT],VI):-process_head_prob702,17755 -add_int_atom([],[],_VI).add_int_atom709,17894 -add_int_atom([],[],_VI).add_int_atom709,17894 -add_int_atom([\+ H|T],[\+ H|T1],VI):-add_int_atom711,17920 -add_int_atom([\+ H|T],[\+ H|T1],VI):-add_int_atom711,17920 -add_int_atom([\+ H|T],[\+ H|T1],VI):-add_int_atom711,17920 -add_int_atom([\+ H|T],[\+ H1|T1],VI):-!,add_int_atom715,18012 -add_int_atom([\+ H|T],[\+ H1|T1],VI):-!,add_int_atom715,18012 -add_int_atom([\+ H|T],[\+ H1|T1],VI):-!,add_int_atom715,18012 -add_int_atom([H|T],[H|T1],VI):-add_int_atom720,18115 -add_int_atom([H|T],[H|T1],VI):-add_int_atom720,18115 -add_int_atom([H|T],[H|T1],VI):-add_int_atom720,18115 -add_int_atom([H|T],[H1|T1],VI):-add_int_atom724,18199 -add_int_atom([H|T],[H1|T1],VI):-add_int_atom724,18199 -add_int_atom([H|T],[H1|T1],VI):-add_int_atom724,18199 -read_clauses(S,Clauses):-read_clauses730,18346 -read_clauses(S,Clauses):-read_clauses730,18346 -read_clauses(S,Clauses):-read_clauses730,18346 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body734,18415 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body734,18415 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body734,18415 -listN(N,N,[]):-!.listN745,18579 -listN(N,N,[]):-!.listN745,18579 -listN(N,N,[]):-!.listN745,18579 -listN(NIn,N,[NIn|T]):-listN747,18598 -listN(NIn,N,[NIn|T]):-listN747,18598 -listN(NIn,N,[NIn|T]):-listN747,18598 -list0(N,N,[]):-!.list0751,18654 -list0(N,N,[]):-!.list0751,18654 -list0(N,N,[]):-!.list0751,18654 -list0(NIn,N,[0|T]):-list0753,18673 -list0(NIn,N,[0|T]):-list0753,18673 -list0(NIn,N,[0|T]):-list0753,18673 -load_models(File,ModulesList):-load_models760,18800 -load_models(File,ModulesList):-load_models760,18800 -load_models(File,ModulesList):-load_models760,18800 -read_models(Stream,[Name1|Names]):-read_models765,18921 -read_models(Stream,[Name1|Names]):-read_models765,18921 -read_models(Stream,[Name1|Names]):-read_models765,18921 -read_models(_S,[]).read_models777,19209 -read_models(_S,[]).read_models777,19209 -read_all_atoms(Stream,Name):-read_all_atoms779,19230 -read_all_atoms(Stream,Name):-read_all_atoms779,19230 -read_all_atoms(Stream,Name):-read_all_atoms779,19230 -read_all_atoms(_S,_N).read_all_atoms793,19547 -read_all_atoms(_S,_N).read_all_atoms793,19547 -list2or([],true):-!.list2or796,19572 -list2or([],true):-!.list2or796,19572 -list2or([],true):-!.list2or796,19572 -list2or([X],X):-list2or798,19594 -list2or([X],X):-list2or798,19594 -list2or([X],X):-list2or798,19594 -list2or([H|T],(H ; Ta)):-!,list2or801,19629 -list2or([H|T],(H ; Ta)):-!,list2or801,19629 -list2or([H|T],(H ; Ta)):-!,list2or801,19629 -list2and([],true):-!.list2and804,19677 -list2and([],true):-!.list2and804,19677 -list2and([],true):-!.list2and804,19677 -list2and([X],X):-list2and806,19700 -list2and([X],X):-list2and806,19700 -list2and([X],X):-list2and806,19700 -list2and([H|T],(H,Ta)):-!,list2and809,19735 -list2and([H|T],(H,Ta)):-!,list2and809,19735 -list2and([H|T],(H,Ta)):-!,list2and809,19735 -write_model([],_Stream):-!.write_model813,19788 -write_model([],_Stream):-!.write_model813,19788 -write_model([],_Stream):-!.write_model813,19788 -write_model([rule(_N,_V,_NH,HL,BL,_LogF)|Rest],Stream):-write_model815,19817 -write_model([rule(_N,_V,_NH,HL,BL,_LogF)|Rest],Stream):-write_model815,19817 -write_model([rule(_N,_V,_NH,HL,BL,_LogF)|Rest],Stream):-write_model815,19817 -write_disj_clause(S,(H:-[])):-!,write_disj_clause823,20043 -write_disj_clause(S,(H:-[])):-!,write_disj_clause823,20043 -write_disj_clause(S,(H:-[])):-!,write_disj_clause823,20043 -write_disj_clause(S,(H:-B)):-write_disj_clause826,20100 -write_disj_clause(S,(H:-B)):-write_disj_clause826,20100 -write_disj_clause(S,(H:-B)):-write_disj_clause826,20100 -write_head(S,[A:1.0|_Rest]):-!,write_head832,20198 -write_head(S,[A:1.0|_Rest]):-!,write_head832,20198 -write_head(S,[A:1.0|_Rest]):-!,write_head832,20198 -write_head(S,[A:P,'':_P]):-!,write_head836,20283 -write_head(S,[A:P,'':_P]):-!,write_head836,20283 -write_head(S,[A:P,'':_P]):-!,write_head836,20283 -write_head(S,[A:P|Rest]):-write_head840,20369 -write_head(S,[A:P|Rest]):-write_head840,20369 -write_head(S,[A:P|Rest]):-write_head840,20369 -write_body(S,[\+ A]):-!,write_body845,20479 -write_body(S,[\+ A]):-!,write_body845,20479 -write_body(S,[\+ A]):-!,write_body845,20479 -write_body(S,[A]):-!,write_body849,20561 -write_body(S,[A]):-!,write_body849,20561 -write_body(S,[A]):-!,write_body849,20561 -write_body(S,[\+ A|T]):-!,write_body853,20640 -write_body(S,[\+ A|T]):-!,write_body853,20640 -write_body(S,[\+ A|T]):-!,write_body853,20640 -write_body(S,[A|T]):-write_body858,20748 -write_body(S,[A|T]):-write_body858,20748 -write_body(S,[A|T]):-write_body858,20748 -remove_int_atom(A,A1):-remove_int_atom864,20852 -remove_int_atom(A,A1):-remove_int_atom864,20852 -remove_int_atom(A,A1):-remove_int_atom864,20852 -build_ground_lpad([],[]):-!.build_ground_lpad868,20906 -build_ground_lpad([],[]):-!.build_ground_lpad868,20906 -build_ground_lpad([],[]):-!.build_ground_lpad868,20906 -build_ground_lpad([(R,S)|T],[(R,S,Head,Body)|T1]):-build_ground_lpad870,20936 -build_ground_lpad([(R,S)|T],[(R,S,Head,Body)|T1]):-build_ground_lpad870,20936 -build_ground_lpad([(R,S)|T],[(R,S,Head,Body)|T1]):-build_ground_lpad870,20936 -remove_head([],[]).remove_head875,21054 -remove_head([],[]).remove_head875,21054 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head877,21075 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head877,21075 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head877,21075 -append_all([],L,L):-!.append_all881,21137 -append_all([],L,L):-!.append_all881,21137 -append_all([],L,L):-!.append_all881,21137 -append_all([LIntH|IntT],IntIn,IntOut):-append_all883,21161 -append_all([LIntH|IntT],IntIn,IntOut):-append_all883,21161 -append_all([LIntH|IntT],IntIn,IntOut):-append_all883,21161 - -packages/cplint/em/inference.pl,13324 -setting(epsilon_parsing,0.00001).setting23,346 -setting(epsilon_parsing,0.00001).setting23,346 -setting(save_dot,false).setting24,380 -setting(save_dot,false).setting24,380 -setting(ground_body,true). setting25,405 -setting(ground_body,true). setting25,405 -find_deriv_inf1(GoalsList,DB,Deriv):-find_deriv_inf138,907 -find_deriv_inf1(GoalsList,DB,Deriv):-find_deriv_inf138,907 -find_deriv_inf1(GoalsList,DB,Deriv):-find_deriv_inf138,907 -find_deriv_inf(GoalsList,D,Deriv):-find_deriv_inf41,985 -find_deriv_inf(GoalsList,D,Deriv):-find_deriv_inf41,985 -find_deriv_inf(GoalsList,D,Deriv):-find_deriv_inf41,985 -solve([],_D,C,C):-!.solve46,1183 -solve([],_D,C,C):-!.solve46,1183 -solve([],_D,C,C):-!.solve46,1183 -solve([\+ H|T],DB,CIn,COut):-solve48,1205 -solve([\+ H|T],DB,CIn,COut):-solve48,1205 -solve([\+ H|T],DB,CIn,COut):-solve48,1205 -solve([\+ H |T],DB,CIn,COut):-!,solve55,1355 -solve([\+ H |T],DB,CIn,COut):-!,solve55,1355 -solve([\+ H |T],DB,CIn,COut):-!,solve55,1355 -solve([H|T],D,CIn,COut):-solve74,1791 -solve([H|T],D,CIn,COut):-solve74,1791 -solve([H|T],D,CIn,COut):-solve74,1791 -solve([H|T],DB,CIn,COut):-solve79,1868 -solve([H|T],DB,CIn,COut):-solve79,1868 -solve([H|T],DB,CIn,COut):-solve79,1868 -solve([H|T],DB,CIn,COut):-solve84,1970 -solve([H|T],DB,CIn,COut):-solve84,1970 -solve([H|T],DB,CIn,COut):-solve84,1970 -solve([H|T],D,CIn,COut):-solve91,2136 -solve([H|T],D,CIn,COut):-solve91,2136 -solve([H|T],D,CIn,COut):-solve91,2136 -solve([H|T],D,CIn,COut):-solve98,2265 -solve([H|T],D,CIn,COut):-solve98,2265 -solve([H|T],D,CIn,COut):-solve98,2265 -solve([H|T],D,CIn,COut):-solve103,2356 -solve([H|T],D,CIn,COut):-solve103,2356 -solve([H|T],D,CIn,COut):-solve103,2356 -solve_pres(R,S,N,B,T,D,CIn,COut):-solve_pres108,2457 -solve_pres(R,S,N,B,T,D,CIn,COut):-solve_pres108,2457 -solve_pres(R,S,N,B,T,D,CIn,COut):-solve_pres108,2457 -solve_pres(R,S,N,B,T,D,CIn,COut):-solve_pres114,2579 -solve_pres(R,S,N,B,T,D,CIn,COut):-solve_pres114,2579 -solve_pres(R,S,N,B,T,D,CIn,COut):-solve_pres114,2579 -solve1([],_D,C,C):-!.solve1121,2699 -solve1([],_D,C,C):-!.solve1121,2699 -solve1([],_D,C,C):-!.solve1121,2699 -solve1([\+ H |T],DB,CIn,COut):-!,solve1123,2722 -solve1([\+ H |T],DB,CIn,COut):-!,solve1123,2722 -solve1([\+ H |T],DB,CIn,COut):-!,solve1123,2722 -solve1([H|T],D,CIn,COut):-solve1130,2881 -solve1([H|T],D,CIn,COut):-solve1130,2881 -solve1([H|T],D,CIn,COut):-solve1130,2881 -solve1([H|T],D,CIn,COut):-solve1135,2973 -solve1([H|T],D,CIn,COut):-solve1135,2973 -solve1([H|T],D,CIn,COut):-solve1135,2973 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head141,3076 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head141,3076 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head143,3125 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head143,3125 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head143,3125 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head146,3229 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head146,3229 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head146,3229 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head150,3345 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head150,3345 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head150,3345 -find_rule(H,(R,S,N),Body,C):-find_rule160,3697 -find_rule(H,(R,S,N),Body,C):-find_rule160,3697 -find_rule(H,(R,S,N),Body,C):-find_rule160,3697 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head164,3820 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head164,3820 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head166,3877 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head166,3877 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head166,3877 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head170,4031 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head170,4031 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head170,4031 -not_different(_N,_N1,S,S1):-not_different174,4164 -not_different(_N,_N1,S,S1):-not_different174,4164 -not_different(_N,_N1,S,S1):-not_different174,4164 -not_different(N,N1,S,S1):-not_different177,4207 -not_different(N,N1,S,S1):-not_different177,4207 -not_different(N,N1,S,S1):-not_different177,4207 -not_different(N,N,S,S).not_different181,4261 -not_different(N,N,S,S).not_different181,4261 -member_head(H,[(H:_P)|_T],N,N).member_head184,4287 -member_head(H,[(H:_P)|_T],N,N).member_head184,4287 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head186,4320 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head186,4320 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head186,4320 -choose_clauses(C,[],C).choose_clauses193,4594 -choose_clauses(C,[],C).choose_clauses193,4594 -choose_clauses(CIn,[D|T],COut):-choose_clauses195,4619 -choose_clauses(CIn,[D|T],COut):-choose_clauses195,4619 -choose_clauses(CIn,[D|T],COut):-choose_clauses195,4619 -choose_clauses(CIn,[D|T],COut):-choose_clauses202,4791 -choose_clauses(CIn,[D|T],COut):-choose_clauses202,4791 -choose_clauses(CIn,[D|T],COut):-choose_clauses202,4791 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons209,4971 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons209,4971 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons209,4971 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons211,5002 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons211,5002 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons211,5002 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons215,5082 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons215,5082 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons215,5082 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head222,5380 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head222,5380 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head224,5436 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head224,5436 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head224,5436 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head228,5552 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head228,5552 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head228,5552 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs231,5663 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs231,5663 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs231,5663 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs235,5765 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs235,5765 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs235,5765 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head241,5963 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head241,5963 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head241,5963 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head248,6176 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head248,6176 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head248,6176 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head253,6286 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head253,6286 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head253,6286 -new_head(N,R,S,N1):-new_head258,6437 -new_head(N,R,S,N1):-new_head258,6437 -new_head(N,R,S,N1):-new_head258,6437 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head264,6581 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head264,6581 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head264,6581 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head267,6666 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head267,6666 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head267,6666 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present273,6888 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present273,6888 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present273,6888 -already_present(N,R,S,[_H|T]):-already_present276,6936 -already_present(N,R,S,[_H|T]):-already_present276,6936 -already_present(N,R,S,[_H|T]):-already_present276,6936 -rem_dup_lists([],L,L).rem_dup_lists283,7219 -rem_dup_lists([],L,L).rem_dup_lists283,7219 -rem_dup_lists([H|T],L0,L):-rem_dup_lists285,7243 -rem_dup_lists([H|T],L0,L):-rem_dup_lists285,7243 -rem_dup_lists([H|T],L0,L):-rem_dup_lists285,7243 -rem_dup_lists([H|T],L0,L):-rem_dup_lists289,7343 -rem_dup_lists([H|T],L0,L):-rem_dup_lists289,7343 -rem_dup_lists([H|T],L0,L):-rem_dup_lists289,7343 -member_subset(E,[H|_T]):-member_subset292,7401 -member_subset(E,[H|_T]):-member_subset292,7401 -member_subset(E,[H|_T]):-member_subset292,7401 -member_subset(E,[_H|T]):-member_subset295,7448 -member_subset(E,[_H|T]):-member_subset295,7448 -member_subset(E,[_H|T]):-member_subset295,7448 -member_eq(A,[H|_T]):-member_eq300,7503 -member_eq(A,[H|_T]):-member_eq300,7503 -member_eq(A,[H|_T]):-member_eq300,7503 -member_eq(A,[_H|T]):-member_eq303,7538 -member_eq(A,[_H|T]):-member_eq303,7538 -member_eq(A,[_H|T]):-member_eq303,7538 -subset_my([],_).subset_my306,7579 -subset_my([],_).subset_my306,7579 -subset_my([H|T],L):-subset_my308,7597 -subset_my([H|T],L):-subset_my308,7597 -subset_my([H|T],L):-subset_my308,7597 -remove_duplicates_eq([],[]).remove_duplicates_eq312,7655 -remove_duplicates_eq([],[]).remove_duplicates_eq312,7655 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq314,7685 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq314,7685 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq314,7685 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq318,7769 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq318,7769 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq318,7769 -builtin(_A is _B).builtin321,7837 -builtin(_A is _B).builtin321,7837 -builtin(_A > _B).builtin322,7856 -builtin(_A > _B).builtin322,7856 -builtin(_A < _B).builtin323,7874 -builtin(_A < _B).builtin323,7874 -builtin(_A >= _B).builtin324,7892 -builtin(_A >= _B).builtin324,7892 -builtin(_A =< _B).builtin325,7911 -builtin(_A =< _B).builtin325,7911 -builtin(_A =:= _B).builtin326,7930 -builtin(_A =:= _B).builtin326,7930 -builtin(_A =\= _B).builtin327,7950 -builtin(_A =\= _B).builtin327,7950 -builtin(true).builtin328,7970 -builtin(true).builtin328,7970 -builtin(false).builtin329,7985 -builtin(false).builtin329,7985 -builtin(_A = _B).builtin330,8001 -builtin(_A = _B).builtin330,8001 -builtin(_A==_B).builtin331,8019 -builtin(_A==_B).builtin331,8019 -builtin(_A\=_B).builtin332,8036 -builtin(_A\=_B).builtin332,8036 -builtin(_A\==_B).builtin333,8053 -builtin(_A\==_B).builtin333,8053 -builtin(length(_L,_N)).builtin334,8071 -builtin(length(_L,_N)).builtin334,8071 -builtin(member(_El,_L)).builtin335,8095 -builtin(member(_El,_L)).builtin335,8095 -builtin(average(_L,_Av)).builtin336,8120 -builtin(average(_L,_Av)).builtin336,8120 -builtin(max_list(_L,_Max)).builtin337,8146 -builtin(max_list(_L,_Max)).builtin337,8146 -builtin(min_list(_L,_Max)).builtin338,8174 -builtin(min_list(_L,_Max)).builtin338,8174 -builtin(nth0(_,_,_)).builtin339,8202 -builtin(nth0(_,_,_)).builtin339,8202 -builtin(nth(_,_,_)).builtin340,8224 -builtin(nth(_,_,_)).builtin340,8224 -average(L,Av):-average341,8245 -average(L,Av):-average341,8245 -average(L,Av):-average341,8245 -list2or([],true):-!.list2or346,8311 -list2or([],true):-!.list2or346,8311 -list2or([],true):-!.list2or346,8311 -list2or([X],X):-list2or348,8333 -list2or([X],X):-list2or348,8333 -list2or([X],X):-list2or348,8333 -list2or([H|T],(H ; Ta)):-!,list2or351,8368 -list2or([H|T],(H ; Ta)):-!,list2or351,8368 -list2or([H|T],(H ; Ta)):-!,list2or351,8368 -list2and([],true):-!.list2and354,8416 -list2and([],true):-!.list2and354,8416 -list2and([],true):-!.list2and354,8416 -list2and([X],X):-list2and356,8439 -list2and([X],X):-list2and356,8439 -list2and([X],X):-list2and356,8439 -list2and([H|T],(H,Ta)):-!,list2and359,8474 -list2and([H|T],(H,Ta)):-!,list2and359,8474 -list2and([H|T],(H,Ta)):-!,list2and359,8474 - -packages/cplint/em/README,39 -To execute it, load em.pl withit4,55 - -packages/cplint/em/sa1.l,0 - -packages/cplint/em/sp1.l,0 - -packages/cplint/lemur/ai_train.l,0 - -packages/cplint/lemur/dv_lemur.pl,4421 -t(DV):-% dv([advisedby(A,B)],[taughtby(C,B,D),ta(C,A,D)],DV). t40,1300 -t(DV):-% dv([advisedby(A,B)],[taughtby(C,B,D),ta(C,A,D)],DV). t40,1300 -t(DV):-% dv([advisedby(A,B)],[taughtby(C,B,D),ta(C,A,D)],DV). t40,1300 -t(DV):-% dv([advisedby(A,B)],[taughtby(C,B,D),ta(C,A,D)],DV). t40,1300 -t(DV):-% dv([advisedby(A,B)],[taughtby(C,B,D),ta(C,A,D)],DV). t40,1300 -dv(H,B,DV1):- %-DV1dv46,1541 -dv(H,B,DV1):- %-DV1dv46,1541 -dv(H,B,DV1):- %-DV1dv46,1541 -input_variables_b(LitM,InputVars):-input_variables_b54,1870 -input_variables_b(LitM,InputVars):-input_variables_b54,1870 -input_variables_b(LitM,InputVars):-input_variables_b54,1870 -depth_var_head(List,VarsD):- % exit:depth_var_head([professor(_G131537)],[[_G131537,0]]) ?depth_var_head80,2407 -depth_var_head(List,VarsD):- % exit:depth_var_head([professor(_G131537)],[[_G131537,0]]) ?depth_var_head80,2407 -depth_var_head(List,VarsD):- % exit:depth_var_head([professor(_G131537)],[[_G131537,0]]) ?depth_var_head80,2407 -head_depth([],[]).head_depth84,2748 -head_depth([],[]).head_depth84,2748 -head_depth([V|R],[[V,0]|R1]):-head_depth85,2767 -head_depth([V|R],[[V,0]|R1]):-head_depth85,2767 -head_depth([V|R],[[V,0]|R1]):-head_depth85,2767 -depth_var_body(VarsH,BL,VarsD):-depth_var_body89,2822 -depth_var_body(VarsH,BL,VarsD):-depth_var_body89,2822 -depth_var_body(VarsH,BL,VarsD):-depth_var_body89,2822 -var_depth([],PrevDs1,PrevDs1,MD,MD):-!.var_depth96,3387 -var_depth([],PrevDs1,PrevDs1,MD,MD):-!.var_depth96,3387 -var_depth([],PrevDs1,PrevDs1,MD,MD):-!.var_depth96,3387 -var_depth([L|R],PrevDs,PrevDs1,_MD,MD):- %L=body atomvar_depth98,3428 -var_depth([L|R],PrevDs,PrevDs1,_MD,MD):- %L=body atomvar_depth98,3428 -var_depth([L|R],PrevDs,PrevDs1,_MD,MD):- %L=body atomvar_depth98,3428 -get_max([],_,Ds,Ds).get_max113,4439 -get_max([],_,Ds,Ds).get_max113,4439 -get_max([(MD-DsH)|T],MD0,_Ds0,Ds):-get_max115,4461 -get_max([(MD-DsH)|T],MD0,_Ds0,Ds):-get_max115,4461 -get_max([(MD-DsH)|T],MD0,_Ds0,Ds):-get_max115,4461 -get_max([_H|T],MD,Ds0,Ds):-get_max119,4534 -get_max([_H|T],MD,Ds0,Ds):-get_max119,4534 -get_max([_H|T],MD,Ds0,Ds):-get_max119,4534 -output_vars(OutVars,[],OutVars):-!.output_vars123,4587 -output_vars(OutVars,[],OutVars):-!.output_vars123,4587 -output_vars(OutVars,[],OutVars):-!.output_vars123,4587 -output_vars(BodyAtomVars,[I|InputVars],OutVars):- %esclude le variabili di input dalla lista di var del letterale del bodyoutput_vars124,4623 -output_vars(BodyAtomVars,[I|InputVars],OutVars):- %esclude le variabili di input dalla lista di var del letterale del bodyoutput_vars124,4623 -output_vars(BodyAtomVars,[I|InputVars],OutVars):- %esclude le variabili di input dalla lista di var del letterale del bodyoutput_vars124,4623 -depth_InputVars([],_,D,D).depth_InputVars129,4967 -depth_InputVars([],_,D,D).depth_InputVars129,4967 -depth_InputVars([I|Input],PrevDs,D0,D):-depth_InputVars130,4994 -depth_InputVars([I|Input],PrevDs,D0,D):-depth_InputVars130,4994 -depth_InputVars([I|Input],PrevDs,D0,D):-depth_InputVars130,4994 -member_l([[L,D]|P],I,D):- %resituisce in output la profondita' della variabile Imember_l139,5146 -member_l([[L,D]|P],I,D):- %resituisce in output la profondita' della variabile Imember_l139,5146 -member_l([[L,D]|P],I,D):- %resituisce in output la profondita' della variabile Imember_l139,5146 -member_l([_|P],I,D):-member_l141,5242 -member_l([_|P],I,D):-member_l141,5242 -member_l([_|P],I,D):-member_l141,5242 -compute_depth([],_,PD,PD):-!. %LVarD compute_depth144,5287 -compute_depth([],_,PD,PD):-!. %LVarD compute_depth144,5287 -compute_depth([],_,PD,PD):-!. %LVarD compute_depth144,5287 -compute_depth([O|Output],D,PD,RestO):- %LVarD compute_depth145,5327 -compute_depth([O|Output],D,PD,RestO):- %LVarD compute_depth145,5327 -compute_depth([O|Output],D,PD,RestO):- %LVarD compute_depth145,5327 -compute_depth([O|Output],D,PD,[[O,D]|RestO]):- %LVarD compute_depth149,5462 -compute_depth([O|Output],D,PD,[[O,D]|RestO]):- %LVarD compute_depth149,5462 -compute_depth([O|Output],D,PD,[[O,D]|RestO]):- %LVarD compute_depth149,5462 -exceed_depth([],_):-!.exceed_depth157,5816 -exceed_depth([],_):-!.exceed_depth157,5816 -exceed_depth([],_):-!.exceed_depth157,5816 -exceed_depth([H|T],MD):-exceed_depth158,5839 -exceed_depth([H|T],MD):-exceed_depth158,5839 -exceed_depth([H|T],MD):-exceed_depth158,5839 - -packages/cplint/lemur/go.sh,0 - -packages/cplint/lemur/inference_lemur.pl,30298 -rule_n(0).rule_n15,252 -rule_n(0).rule_n15,252 -setting(epsilon_parsing, 1e-5).setting17,266 -setting(epsilon_parsing, 1e-5).setting17,266 -setting(tabling, off).setting18,299 -setting(tabling, off).setting18,299 -setting(bagof,false).setting21,340 -setting(bagof,false).setting21,340 -setting(compiling,off).setting24,412 -setting(compiling,off).setting24,412 -setting(depth_bound,true). %if true, it limits the derivation of the example to the value of 'depth'setting28,468 -setting(depth_bound,true). %if true, it limits the derivation of the example to the value of 'depth'setting28,468 -setting(depth,2).setting29,571 -setting(depth,2).setting29,571 -setting(single_var,true). %false:1 variable for every grounding of a rule; true: 1 variable for rule (even if a rule has more groundings),simpler.setting30,590 -setting(single_var,true). %false:1 variable for every grounding of a rule; true: 1 variable for rule (even if a rule has more groundings),simpler.setting30,590 -load(FileIn,C1,R):-load35,783 -load(FileIn,C1,R):-load35,783 -load(FileIn,C1,R):-load35,783 -add_inter_cl(CL):-add_inter_cl42,908 -add_inter_cl(CL):-add_inter_cl42,908 -add_inter_cl(CL):-add_inter_cl42,908 -gen_cl([],[]).gen_cl48,1016 -gen_cl([],[]).gen_cl48,1016 -gen_cl([H/A|T],[C|T1]):-gen_cl50,1034 -gen_cl([H/A|T],[C|T1]):-gen_cl50,1034 -gen_cl([H/A|T],[C|T1]):-gen_cl50,1034 -assert_all([]).assert_all58,1188 -assert_all([]).assert_all58,1188 -assert_all([H|T]):-assert_all60,1207 -assert_all([H|T]):-assert_all60,1207 -assert_all([H|T]):-assert_all60,1207 -retract_all([]):-!.retract_all65,1264 -retract_all([]):-!.retract_all65,1264 -retract_all([]):-!.retract_all65,1264 -retract_all([H|T]):-retract_all67,1287 -retract_all([H|T]):-retract_all67,1287 -retract_all([H|T]):-retract_all67,1287 -read_clauses_dir(S,[Cl|Out]):-read_clauses_dir72,1347 -read_clauses_dir(S,[Cl|Out]):-read_clauses_dir72,1347 -read_clauses_dir(S,[Cl|Out]):-read_clauses_dir72,1347 -process_clauses([],C,C,R,R):-!.process_clauses81,1479 -process_clauses([],C,C,R,R):-!.process_clauses81,1479 -process_clauses([],C,C,R,R):-!.process_clauses81,1479 -process_clauses([end_of_file],C,C,R,R):-!.process_clauses83,1514 -process_clauses([end_of_file],C,C,R,R):-!.process_clauses83,1514 -process_clauses([end_of_file],C,C,R,R):-!.process_clauses83,1514 -process_clauses([H|T],C0,C1,R0,R1):-process_clauses85,1560 -process_clauses([H|T],C0,C1,R0,R1):-process_clauses85,1560 -process_clauses([H|T],C0,C1,R0,R1):-process_clauses85,1560 -get_next_rule_number(R):-get_next_rule_number108,1922 -get_next_rule_number(R):-get_next_rule_number108,1922 -get_next_rule_number(R):-get_next_rule_number108,1922 -get_node(\+ Goal,BDD):-get_node114,2013 -get_node(\+ Goal,BDD):-get_node114,2013 -get_node(\+ Goal,BDD):-get_node114,2013 -get_node(\+ Goal,BDD):-!,get_node126,2243 -get_node(\+ Goal,BDD):-!,get_node126,2243 -get_node(\+ Goal,BDD):-!,get_node126,2243 -get_node(Goal,B):-get_node136,2415 -get_node(Goal,B):-get_node136,2415 -get_node(Goal,B):-get_node136,2415 -get_node(Goal,B):- %with DB=falseget_node147,2636 -get_node(Goal,B):- %with DB=falseget_node147,2636 -get_node(Goal,B):- %with DB=falseget_node147,2636 -s(Goal,P,CPUTime1,0,WallTime1,0):-s157,2801 -s(Goal,P,CPUTime1,0,WallTime1,0):-s157,2801 -s(Goal,P,CPUTime1,0,WallTime1,0):-s157,2801 -get_var_n(R,S,Probs,V):-get_var_n177,3224 -get_var_n(R,S,Probs,V):-get_var_n177,3224 -get_var_n(R,S,Probs,V):-get_var_n177,3224 -generate_rules_fact([],_VC,_R,_Probs,_N,[],_Module).generate_rules_fact187,3365 -generate_rules_fact([],_VC,_R,_Probs,_N,[],_Module).generate_rules_fact187,3365 -generate_rules_fact([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact189,3421 -generate_rules_fact([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact189,3421 -generate_rules_fact([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact189,3421 -generate_rules_fact([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact193,3599 -generate_rules_fact([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact193,3599 -generate_rules_fact([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact193,3599 -generate_rules_fact_db([],_VC,_R,_Probs,_N,[],_Module).generate_rules_fact_db200,3849 -generate_rules_fact_db([],_VC,_R,_Probs,_N,[],_Module).generate_rules_fact_db200,3849 -generate_rules_fact_db([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact_db202,3908 -generate_rules_fact_db([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact_db202,3908 -generate_rules_fact_db([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact_db202,3908 -generate_rules_fact_db([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact_db206,4096 -generate_rules_fact_db([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact_db206,4096 -generate_rules_fact_db([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact_db206,4096 -generate_clause(Head,Body,VC,R,Probs,BDDAnd,N,Clause,Module):-generate_clause213,4359 -generate_clause(Head,Body,VC,R,Probs,BDDAnd,N,Clause,Module):-generate_clause213,4359 -generate_clause(Head,Body,VC,R,Probs,BDDAnd,N,Clause,Module):-generate_clause213,4359 -generate_clause_db(Head,Body,VC,R,Probs,DB,BDDAnd,N,Clause,Module):-generate_clause_db218,4551 -generate_clause_db(Head,Body,VC,R,Probs,DB,BDDAnd,N,Clause,Module):-generate_clause_db218,4551 -generate_clause_db(Head,Body,VC,R,Probs,DB,BDDAnd,N,Clause,Module):-generate_clause_db218,4551 -generate_rules([],_Body,_VC,_R,_Probs,_BDDAnd,_N,[],_Module).generate_rules223,4775 -generate_rules([],_Body,_VC,_R,_Probs,_BDDAnd,_N,[],_Module).generate_rules223,4775 -generate_rules([Head:_P1,'':_P2],Body,VC,R,Probs,BDDAnd,N,[Clause],Module):-!,generate_rules225,4840 -generate_rules([Head:_P1,'':_P2],Body,VC,R,Probs,BDDAnd,N,[Clause],Module):-!,generate_rules225,4840 -generate_rules([Head:_P1,'':_P2],Body,VC,R,Probs,BDDAnd,N,[Clause],Module):-!,generate_rules225,4840 -generate_rules([Head:_P|T],Body,VC,R,Probs,BDDAnd,N,[Clause|Clauses],Module):-generate_rules228,4987 -generate_rules([Head:_P|T],Body,VC,R,Probs,BDDAnd,N,[Clause|Clauses],Module):-generate_rules228,4987 -generate_rules([Head:_P|T],Body,VC,R,Probs,BDDAnd,N,[Clause|Clauses],Module):-generate_rules228,4987 -generate_rules_db([],_Body,_VC,_R,_Probs,_DB,_BDDAnd,_N,[],_Module):-!.generate_rules_db234,5213 -generate_rules_db([],_Body,_VC,_R,_Probs,_DB,_BDDAnd,_N,[],_Module):-!.generate_rules_db234,5213 -generate_rules_db([],_Body,_VC,_R,_Probs,_DB,_BDDAnd,_N,[],_Module):-!.generate_rules_db234,5213 -generate_rules_db([Head:_P1,'':_P2],Body,VC,R,Probs,DB,BDDAnd,N,[Clause],Module):-!,generate_rules_db236,5288 -generate_rules_db([Head:_P1,'':_P2],Body,VC,R,Probs,DB,BDDAnd,N,[Clause],Module):-!,generate_rules_db236,5288 -generate_rules_db([Head:_P1,'':_P2],Body,VC,R,Probs,DB,BDDAnd,N,[Clause],Module):-!,generate_rules_db236,5288 -generate_rules_db([Head:_P|T],Body,VC,R,Probs,DB,BDDAnd,N,[Clause|Clauses],Module):-generate_rules_db239,5447 -generate_rules_db([Head:_P|T],Body,VC,R,Probs,DB,BDDAnd,N,[Clause|Clauses],Module):-generate_rules_db239,5447 -generate_rules_db([Head:_P|T],Body,VC,R,Probs,DB,BDDAnd,N,[Clause|Clauses],Module):-generate_rules_db239,5447 -process_body_database([],[],_Module).process_body_database245,5701 -process_body_database([],[],_Module).process_body_database245,5701 -process_body_database([H|T],[H1|T1],Module):-process_body_database247,5742 -process_body_database([H|T],[H1|T1],Module):-process_body_database247,5742 -process_body_database([H|T],[H1|T1],Module):-process_body_database247,5742 -process_body_db([],BDD,BDD,_DB,Vars,Vars,[],_Module):-!.process_body_db252,5863 -process_body_db([],BDD,BDD,_DB,Vars,Vars,[],_Module):-!.process_body_db252,5863 -process_body_db([],BDD,BDD,_DB,Vars,Vars,[],_Module):-!.process_body_db252,5863 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db254,5923 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db254,5923 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db254,5923 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db258,6073 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db258,6073 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db258,6073 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db283,7019 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db283,7019 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db283,7019 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db287,7161 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db287,7161 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db287,7161 -process_body_def_db([],BDD,BDD,_DB,Vars,Vars,[],_Module).process_body_def_db310,7936 -process_body_def_db([],BDD,BDD,_DB,Vars,Vars,[],_Module).process_body_def_db310,7936 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db312,7997 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db312,7997 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db312,7997 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db316,8155 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db316,8155 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db316,8155 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db342,9129 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db342,9129 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db342,9129 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db346,9279 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db346,9279 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db346,9279 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def_db350,9424 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def_db350,9424 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def_db350,9424 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H1|Rest],Module):-process_body_def_db356,9679 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H1|Rest],Module):-process_body_def_db356,9679 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H1|Rest],Module):-process_body_def_db356,9679 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def_db361,9860 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def_db361,9860 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def_db361,9860 -process_body_def([],BDD,BDD,Vars,Vars,[],_Module).process_body_def368,10075 -process_body_def([],BDD,BDD,Vars,Vars,[],_Module).process_body_def368,10075 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def370,10129 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def370,10129 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def370,10129 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def374,10275 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def374,10275 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def374,10275 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def400,11191 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def400,11191 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def400,11191 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def404,11329 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def404,11329 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def404,11329 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def408,11462 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def408,11462 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def408,11462 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body_def414,11699 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body_def414,11699 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body_def414,11699 -process_body_def([H|T],BDD,BDD1,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def419,11868 -process_body_def([H|T],BDD,BDD1,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def419,11868 -process_body_def([H|T],BDD,BDD1,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def419,11868 -process_body_cw([],BDD,BDD,Vars,Vars,[],_Module).process_body_cw424,12059 -process_body_cw([],BDD,BDD,Vars,Vars,[],_Module).process_body_cw424,12059 -process_body_cw([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_cw426,12112 -process_body_cw([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_cw426,12112 -process_body_cw([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_cw426,12112 -process_body_cw([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_cw430,12256 -process_body_cw([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_cw430,12256 -process_body_cw([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_cw430,12256 -process_body_cw([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_cw439,12554 -process_body_cw([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_cw439,12554 -process_body_cw([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_cw439,12554 -process_body_cw([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_cw443,12690 -process_body_cw([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_cw443,12690 -process_body_cw([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_cw443,12690 -process_body([],BDD,BDD,Vars,Vars,[],_Module).process_body455,12978 -process_body([],BDD,BDD,Vars,Vars,[],_Module).process_body455,12978 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body457,13028 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body457,13028 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body457,13028 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body461,13166 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body461,13166 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body461,13166 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body486,14052 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body486,14052 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body486,14052 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body490,14182 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body490,14182 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body490,14182 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body507,14701 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body507,14701 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body507,14701 -given(H):-given518,15041 -given(H):-given518,15041 -given(H):-given518,15041 -given_cw(H):-given_cw523,15095 -given_cw(H):-given_cw523,15095 -given_cw(H):-given_cw523,15095 -and_list([],B,B).and_list528,15155 -and_list([],B,B).and_list528,15155 -and_list([H|T],B0,B1):-and_list530,15176 -and_list([H|T],B0,B1):-and_list530,15176 -and_list([H|T],B0,B1):-and_list530,15176 -or_list([H],H):-!.or_list535,15244 -or_list([H],H):-!.or_list535,15244 -or_list([H],H):-!.or_list535,15244 -or_list([H|T],B):-or_list537,15266 -or_list([H|T],B):-or_list537,15266 -or_list([H|T],B):-or_list537,15266 -or_list1([],B,B).or_list1541,15310 -or_list1([],B,B).or_list1541,15310 -or_list1([H|T],B0,B1):-or_list1543,15331 -or_list1([H|T],B0,B1):-or_list1543,15331 -or_list1([H|T],B0,B1):-or_list1543,15331 -set(Parameter,Value):-set549,15464 -set(Parameter,Value):-set549,15464 -set(Parameter,Value):-set549,15464 -extract_vars_list(L,[],V):-extract_vars_list553,15561 -extract_vars_list(L,[],V):-extract_vars_list553,15561 -extract_vars_list(L,[],V):-extract_vars_list553,15561 -extract_vars_term(Variable, Var0, Var1) :- extract_vars_term558,15654 -extract_vars_term(Variable, Var0, Var1) :- extract_vars_term558,15654 -extract_vars_term(Variable, Var0, Var1) :- extract_vars_term558,15654 -extract_vars_term(Term, Var0, Var1) :- extract_vars_term566,15823 -extract_vars_term(Term, Var0, Var1) :- extract_vars_term566,15823 -extract_vars_term(Term, Var0, Var1) :- extract_vars_term566,15823 -extract_vars_tree([], Var, Var).extract_vars_tree572,15932 -extract_vars_tree([], Var, Var).extract_vars_tree572,15932 -extract_vars_tree([Term|Tail], Var0, Var1) :- extract_vars_tree574,15968 -extract_vars_tree([Term|Tail], Var0, Var1) :- extract_vars_tree574,15968 -extract_vars_tree([Term|Tail], Var0, Var1) :- extract_vars_tree574,15968 -extract_vars(Variable, Var0, Var1) :- extract_vars579,16101 -extract_vars(Variable, Var0, Var1) :- extract_vars579,16101 -extract_vars(Variable, Var0, Var1) :- extract_vars579,16101 -extract_vars(Term, Var0, Var1) :- extract_vars587,16253 -extract_vars(Term, Var0, Var1) :- extract_vars587,16253 -extract_vars(Term, Var0, Var1) :- extract_vars587,16253 -extract_vars_list([], Var, Var).extract_vars_list593,16357 -extract_vars_list([], Var, Var).extract_vars_list593,16357 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list595,16393 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list595,16393 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list595,16393 -difference([],_,[]).difference600,16521 -difference([],_,[]).difference600,16521 -difference([H|T],L2,L3):-difference602,16545 -difference([H|T],L2,L3):-difference602,16545 -difference([H|T],L2,L3):-difference602,16545 -difference([H|T],L2,[H|L3]):-difference606,16620 -difference([H|T],L2,[H|L3]):-difference606,16620 -difference([H|T],L2,[H|L3]):-difference606,16620 -member_eq(E,[H|_T]):-member_eq610,16679 -member_eq(E,[H|_T]):-member_eq610,16679 -member_eq(E,[H|_T]):-member_eq610,16679 -member_eq(E,[_H|T]):-member_eq613,16715 -member_eq(E,[_H|T]):-member_eq613,16715 -member_eq(E,[_H|T]):-member_eq613,16715 -add_bdd_arg(A,BDD,A1):-add_bdd_arg617,16761 -add_bdd_arg(A,BDD,A1):-add_bdd_arg617,16761 -add_bdd_arg(A,BDD,A1):-add_bdd_arg617,16761 -add_bdd_arg_db(A,BDD,DB,A1):-add_bdd_arg_db628,16921 -add_bdd_arg_db(A,BDD,DB,A1):-add_bdd_arg_db628,16921 -add_bdd_arg_db(A,BDD,DB,A1):-add_bdd_arg_db628,16921 -add_bdd_arg(A,BDD,Module,A1):-add_bdd_arg639,17090 -add_bdd_arg(A,BDD,Module,A1):-add_bdd_arg639,17090 -add_bdd_arg(A,BDD,Module,A1):-add_bdd_arg639,17090 -add_bdd_arg_db(A,BDD,DB,Module,A1):-add_bdd_arg_db650,17264 -add_bdd_arg_db(A,BDD,DB,Module,A1):-add_bdd_arg_db650,17264 -add_bdd_arg_db(A,BDD,DB,Module,A1):-add_bdd_arg_db650,17264 -add_mod_arg(A,Module,A1):-add_mod_arg661,17449 -add_mod_arg(A,Module,A1):-add_mod_arg661,17449 -add_mod_arg(A,Module,A1):-add_mod_arg661,17449 -table_pred(A):- table_pred666,17523 -table_pred(A):- table_pred666,17523 -table_pred(A):- table_pred666,17523 -process_head(HeadList, GroundHeadList) :- process_head676,17668 -process_head(HeadList, GroundHeadList) :- process_head676,17668 -process_head(HeadList, GroundHeadList) :- process_head676,17668 -process_head(HeadList, HeadList).process_head680,17799 -process_head(HeadList, HeadList).process_head680,17799 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead1|Null]) :-!,process_head_ground687,17983 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead1|Null]) :-!,process_head_ground687,17983 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead1|Null]) :-!,process_head_ground687,17983 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead1|Next]) :- process_head_ground699,18274 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead1|Next]) :- process_head_ground699,18274 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead1|Next]) :- process_head_ground699,18274 -ground_prob([]).ground_prob705,18460 -ground_prob([]).ground_prob705,18460 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob707,18480 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob707,18480 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob707,18480 -get_probs([], []).get_probs712,18631 -get_probs([], []).get_probs712,18631 -get_probs([_H:P|T], [P1|T1]) :- get_probs714,18653 -get_probs([_H:P|T], [P1|T1]) :- get_probs714,18653 -get_probs([_H:P|T], [P1|T1]) :- get_probs714,18653 -generate_clauses_cw([],[],_N,C,C):-!.generate_clauses_cw719,18725 -generate_clauses_cw([],[],_N,C,C):-!.generate_clauses_cw719,18725 -generate_clauses_cw([],[],_N,C,C):-!.generate_clauses_cw719,18725 -generate_clauses_cw([H|T],[H1|T1],N,C0,C):-generate_clauses_cw721,18766 -generate_clauses_cw([H|T],[H1|T1],N,C0,C):-generate_clauses_cw721,18766 -generate_clauses_cw([H|T],[H1|T1],N,C0,C):-generate_clauses_cw721,18766 -gen_clause_cw((H :- Body),N,N,(H :- Body),[(H :- Body)]):-!.gen_clause_cw726,18916 -gen_clause_cw((H :- Body),N,N,(H :- Body),[(H :- Body)]):-!.gen_clause_cw726,18916 -gen_clause_cw((H :- Body),N,N,(H :- Body),[(H :- Body)]):-!.gen_clause_cw726,18916 -gen_clause_cw(def_rule(H,BodyList,Lit),N,N,def_rule(H,BodyList,Lit),Clauses) :- !,%agg. cutgen_clause_cw744,19588 -gen_clause_cw(def_rule(H,BodyList,Lit),N,N,def_rule(H,BodyList,Lit),Clauses) :- !,%agg. cutgen_clause_cw744,19588 -gen_clause_cw(def_rule(H,BodyList,Lit),N,N,def_rule(H,BodyList,Lit),Clauses) :- !,%agg. cutgen_clause_cw744,19588 -generate_clauses([],[],_N,C,C):-!.generate_clauses753,19971 -generate_clauses([],[],_N,C,C):-!.generate_clauses753,19971 -generate_clauses([],[],_N,C,C):-!.generate_clauses753,19971 -generate_clauses([H|T],[H1|T1],N,C0,C):-generate_clauses755,20009 -generate_clauses([H|T],[H1|T1],N,C0,C):-generate_clauses755,20009 -generate_clauses([H|T],[H1|T1],N,C0,C):-generate_clauses755,20009 -gen_clause((H :- Body),N,N,(H :- Body),[(H :- Body)]):-!.gen_clause761,20152 -gen_clause((H :- Body),N,N,(H :- Body),[(H :- Body)]):-!.gen_clause761,20152 -gen_clause((H :- Body),N,N,(H :- Body),[(H :- Body)]):-!.gen_clause761,20152 -gen_clause(def_rule(H,BodyList,Lit),N,N,def_rule(H,BodyList,Lit),Clauses) :- gen_clause796,21463 -gen_clause(def_rule(H,BodyList,Lit),N,N,def_rule(H,BodyList,Lit),Clauses) :- gen_clause796,21463 -gen_clause(def_rule(H,BodyList,Lit),N,N,def_rule(H,BodyList,Lit),Clauses) :- gen_clause796,21463 -gen_clause(def_rule(H,BodyList,Lit),N,N,def_rule(H,BodyList,Lit),Clauses) :- !,%agg. cutgen_clause805,21855 -gen_clause(def_rule(H,BodyList,Lit),N,N,def_rule(H,BodyList,Lit),Clauses) :- !,%agg. cutgen_clause805,21855 -gen_clause(def_rule(H,BodyList,Lit),N,N,def_rule(H,BodyList,Lit),Clauses) :- !,%agg. cutgen_clause805,21855 -user:term_expansion((Head :- Body), ((H :- Body),[])):-term_expansion814,22232 -user:term_expansion((Head :- Body), ((H :- Body),[])):-term_expansion814,22232 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList,true)])):-term_expansion817,22310 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList,true)])):-term_expansion817,22310 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList,true)])):-term_expansion838,23108 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList,true)])):-term_expansion838,23108 -user:term_expansion((Head :- Body), ([],[])) :- term_expansion858,23858 -user:term_expansion((Head :- Body), ([],[])) :- term_expansion858,23858 -user:term_expansion((Head :- Body), (Clauses,[def_rule(H,BodyList,true)])) :- term_expansion864,24169 -user:term_expansion((Head :- Body), (Clauses,[def_rule(H,BodyList,true)])) :- term_expansion864,24169 -user:term_expansion((Head :- Body), (Clauses,[def_rule(H,BodyList,true)])) :- term_expansion879,24761 -user:term_expansion((Head :- Body), (Clauses,[def_rule(H,BodyList,true)])) :- term_expansion879,24761 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList,true)])) :- term_expansion893,25328 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList,true)])) :- term_expansion893,25328 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList,true)])) :- term_expansion915,26198 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList,true)])) :- term_expansion915,26198 -user:term_expansion((Head :- Body),(Clauses,[])) :- term_expansion936,27027 -user:term_expansion((Head :- Body),(Clauses,[])) :- term_expansion936,27027 -user:term_expansion((Head :- Body),(Clauses,[def_rule(Head,BodyList,true)])) :- term_expansion943,27249 -user:term_expansion((Head :- Body),(Clauses,[def_rule(Head,BodyList,true)])) :- term_expansion943,27249 -user:term_expansion((Head :- Body),(Clauses,[def_rule(Head,BodyList,true)])) :- term_expansion955,27739 -user:term_expansion((Head :- Body),(Clauses,[def_rule(Head,BodyList,true)])) :- term_expansion955,27739 -user:term_expansion(Head,(Clauses,[rule(R,HeadList,[],true)])) :- term_expansion966,28176 -user:term_expansion(Head,(Clauses,[rule(R,HeadList,[],true)])) :- term_expansion966,28176 -user:term_expansion(Head,(Clauses,[rule(R,HeadList,[],true)])) :- term_expansion982,28718 -user:term_expansion(Head,(Clauses,[rule(R,HeadList,[],true)])) :- term_expansion982,28718 -user:term_expansion(Head,([],[])) :- term_expansion997,29250 -user:term_expansion(Head,([],[])) :- term_expansion997,29250 -user:term_expansion(Head,(Clause,[def_rule(H,[],true)])) :- term_expansion1003,29453 -user:term_expansion(Head,(Clause,[def_rule(H,[],true)])) :- term_expansion1003,29453 -user:term_expansion(Head,(Clause,[def_rule(H,[],true)])) :- term_expansion1013,29813 -user:term_expansion(Head,(Clause,[def_rule(H,[],true)])) :- term_expansion1013,29813 -user:term_expansion(Head,(Clause,[rule(R,HeadList,[],true)])) :- term_expansion1022,30142 -user:term_expansion(Head,(Clause,[rule(R,HeadList,[],true)])) :- term_expansion1022,30142 -user:term_expansion(Head,(Clause,[rule(R,HeadList,[],true)])) :- term_expansion1040,30788 -user:term_expansion(Head,(Clause,[rule(R,HeadList,[],true)])) :- term_expansion1040,30788 -user:term_expansion(Head, ((Head1:-one(One)),[def_rule(Head,[],true)])) :- term_expansion1057,31418 -user:term_expansion(Head, ((Head1:-one(One)),[def_rule(Head,[],true)])) :- term_expansion1057,31418 -user:term_expansion(Head, ((Head1:-one(One)),[def_rule(Head,[],true)])) :- term_expansion1065,31701 -user:term_expansion(Head, ((Head1:-one(One)),[def_rule(Head,[],true)])) :- term_expansion1065,31701 -builtin(_A is _B).builtin1073,31952 -builtin(_A is _B).builtin1073,31952 -builtin(_A > _B).builtin1074,31972 -builtin(_A > _B).builtin1074,31972 -builtin(_A < _B).builtin1075,31991 -builtin(_A < _B).builtin1075,31991 -builtin(_A >= _B).builtin1076,32010 -builtin(_A >= _B).builtin1076,32010 -builtin(_A =< _B).builtin1077,32030 -builtin(_A =< _B).builtin1077,32030 -builtin(_A =:= _B).builtin1078,32050 -builtin(_A =:= _B).builtin1078,32050 -builtin(_A =\= _B).builtin1079,32071 -builtin(_A =\= _B).builtin1079,32071 -builtin(true).builtin1080,32092 -builtin(true).builtin1080,32092 -builtin(false).builtin1081,32108 -builtin(false).builtin1081,32108 -builtin(_A = _B).builtin1082,32125 -builtin(_A = _B).builtin1082,32125 -builtin(_A==_B).builtin1083,32144 -builtin(_A==_B).builtin1083,32144 -builtin(_A\=_B).builtin1084,32162 -builtin(_A\=_B).builtin1084,32162 -builtin(_A\==_B).builtin1085,32180 -builtin(_A\==_B).builtin1085,32180 -builtin('!').builtin1086,32199 -builtin('!').builtin1086,32199 -builtin(length(_L,_N)).builtin1087,32214 -builtin(length(_L,_N)).builtin1087,32214 -builtin(member(_El,_L)).builtin1088,32239 -builtin(member(_El,_L)).builtin1088,32239 -builtin(average(_L,_Av)).builtin1089,32265 -builtin(average(_L,_Av)).builtin1089,32265 -builtin(max_list(_L,_Max)).builtin1090,32292 -builtin(max_list(_L,_Max)).builtin1090,32292 -builtin(min_list(_L,_Max)).builtin1091,32321 -builtin(min_list(_L,_Max)).builtin1091,32321 -builtin(nth0(_,_,_)).builtin1092,32350 -builtin(nth0(_,_,_)).builtin1092,32350 -builtin(nth(_,_,_)).builtin1093,32373 -builtin(nth(_,_,_)).builtin1093,32373 -builtin(name(_,_)).builtin1094,32395 -builtin(name(_,_)).builtin1094,32395 -builtin(float(_)).builtin1095,32416 -builtin(float(_)).builtin1095,32416 -builtin(integer(_)).builtin1096,32436 -builtin(integer(_)).builtin1096,32436 -builtin(var(_)).builtin1097,32458 -builtin(var(_)).builtin1097,32458 -builtin(_ @> _).builtin1098,32476 -builtin(_ @> _).builtin1098,32476 -builtin(memberchk(_,_)).builtin1099,32494 -builtin(memberchk(_,_)).builtin1099,32494 -average(L,Av):-average1102,32524 -average(L,Av):-average1102,32524 -average(L,Av):-average1102,32524 - -packages/cplint/lemur/lemur.pl,14344 -setting(mcts_beamsize,3).setting31,1305 -setting(mcts_beamsize,3).setting31,1305 -setting(mcts_visits,+inf).setting32,1331 -setting(mcts_visits,+inf).setting32,1331 -setting(max_var,4).setting35,1382 -setting(max_var,4).setting35,1382 -mcts(File,ParDepth,ParC,ParIter,ParRules,Covering):-mcts37,1403 -mcts(File,ParDepth,ParC,ParIter,ParRules,Covering):-mcts37,1403 -mcts(File,ParDepth,ParC,ParIter,ParRules,Covering):-mcts37,1403 -learn_struct_mcts(DB,R1,R,CLL1):- learn_struct_mcts109,3225 -learn_struct_mcts(DB,R1,R,CLL1):- learn_struct_mcts109,3225 -learn_struct_mcts(DB,R1,R,CLL1):- learn_struct_mcts109,3225 -select_the_best_bycll:-select_the_best_bycll194,5280 -select_the_best_byvisits:-select_the_best_byvisits214,5761 -mcts(InitialTheory,InitialScore,DB):-mcts233,6166 -mcts(InitialTheory,InitialScore,DB):-mcts233,6166 -mcts(InitialTheory,InitialScore,DB):-mcts233,6166 -print_graph:-print_graph245,6533 -print_graph([],S).print_graph256,6823 -print_graph([],S).print_graph256,6823 -print_graph([ID|R],S):-print_graph257,6842 -print_graph([ID|R],S):-print_graph257,6842 -print_graph([ID|R],S):-print_graph257,6842 -print_edges(ID,[],S).print_edges262,6997 -print_edges(ID,[],S).print_edges262,6997 -print_edges(ID,[ID1|R],S):-print_edges263,7019 -print_edges(ID,[ID1|R],S):-print_edges263,7019 -print_edges(ID,[ID1|R],S):-print_edges263,7019 -backup_transposition(1,Reward,_):-backup_transposition273,7256 -backup_transposition(1,Reward,_):-backup_transposition273,7256 -backup_transposition(1,Reward,_):-backup_transposition273,7256 -backup_transposition(NodeID,Reward,ParentsTranspose):-backup_transposition283,7567 -backup_transposition(NodeID,Reward,ParentsTranspose):-backup_transposition283,7567 -backup_transposition(NodeID,Reward,ParentsTranspose):-backup_transposition283,7567 -check_transposition(NodeID,Theory,SigmoidValue,ParentsTranspose):-check_transposition303,8189 -check_transposition(NodeID,Theory,SigmoidValue,ParentsTranspose):-check_transposition303,8189 -check_transposition(NodeID,Theory,SigmoidValue,ParentsTranspose):-check_transposition303,8189 -check_transposition(1,NodeID,_,SigmoidValue,ParentsTranspose):-check_transposition307,8346 -check_transposition(1,NodeID,_,SigmoidValue,ParentsTranspose):-check_transposition307,8346 -check_transposition(1,NodeID,_,SigmoidValue,ParentsTranspose):-check_transposition307,8346 -check_transposition(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_transposition309,8414 -check_transposition(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_transposition309,8414 -check_transposition(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_transposition309,8414 -check_transposition(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_transposition322,8859 -check_transposition(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_transposition322,8859 -check_transposition(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_transposition322,8859 -backup_amaf(1,Reward,_):-backup_amaf327,9026 -backup_amaf(1,Reward,_):-backup_amaf327,9026 -backup_amaf(1,Reward,_):-backup_amaf327,9026 -backup_amaf(NodeID,Reward,ParentsTranspose):-backup_amaf337,9328 -backup_amaf(NodeID,Reward,ParentsTranspose):-backup_amaf337,9328 -backup_amaf(NodeID,Reward,ParentsTranspose):-backup_amaf337,9328 -check_amaf(NodeID,Theory,SigmoidValue,ParentsTranspose):-check_amaf368,10112 -check_amaf(NodeID,Theory,SigmoidValue,ParentsTranspose):-check_amaf368,10112 -check_amaf(NodeID,Theory,SigmoidValue,ParentsTranspose):-check_amaf368,10112 -check_amaf(1,NodeID,_,SigmoidValue,ParentsTranspose):-check_amaf373,10329 -check_amaf(1,NodeID,_,SigmoidValue,ParentsTranspose):-check_amaf373,10329 -check_amaf(1,NodeID,_,SigmoidValue,ParentsTranspose):-check_amaf373,10329 -check_amaf(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_amaf378,10548 -check_amaf(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_amaf378,10548 -check_amaf(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_amaf378,10548 -check_amaf(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_amaf391,10930 -check_amaf(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_amaf391,10930 -check_amaf(Node,NodeID,Theory,SigmoidValue,ParentsTranspose):-check_amaf391,10930 -subsume_theory(Theory,TheoryN):-subsume_theory396,11079 -subsume_theory(Theory,TheoryN):-subsume_theory396,11079 -subsume_theory(Theory,TheoryN):-subsume_theory396,11079 -skolemize1([],_).skolemize1407,11323 -skolemize1([],_).skolemize1407,11323 -skolemize1([Var|R],K):-skolemize1408,11341 -skolemize1([Var|R],K):-skolemize1408,11341 -skolemize1([Var|R],K):-skolemize1408,11341 -subsume_theory1([],_).subsume_theory1415,11452 -subsume_theory1([],_).subsume_theory1415,11452 -subsume_theory1([Rule|R],TheoryN):-subsume_theory1416,11475 -subsume_theory1([Rule|R],TheoryN):-subsume_theory1416,11475 -subsume_theory1([Rule|R],TheoryN):-subsume_theory1416,11475 -subsume_theory2(Rule,[Rule1|R],R):-subsume_theory2420,11587 -subsume_theory2(Rule,[Rule1|R],R):-subsume_theory2420,11587 -subsume_theory2(Rule,[Rule1|R],R):-subsume_theory2420,11587 -subsume_theory2(Rule,[Rule1|R],[Rule1|R1]):-subsume_theory2426,11740 -subsume_theory2(Rule,[Rule1|R],[Rule1|R1]):-subsume_theory2426,11740 -subsume_theory2(Rule,[Rule1|R],[Rule1|R1]):-subsume_theory2426,11740 -subsume_body(Body,Body1):-subsume_body430,11818 -subsume_body(Body,Body1):-subsume_body430,11818 -subsume_body(Body,Body1):-subsume_body430,11818 -subsume_body1([],_).subsume_body1435,11919 -subsume_body1([],_).subsume_body1435,11919 -subsume_body1([L|R],Body):-subsume_body1436,11940 -subsume_body1([L|R],Body):-subsume_body1436,11940 -subsume_body1([L|R],Body):-subsume_body1436,11940 -same_theory(Theory0,TheoryN):-same_theory442,12017 -same_theory(Theory0,TheoryN):-same_theory442,12017 -same_theory(Theory0,TheoryN):-same_theory442,12017 -same_theory1([],[]).same_theory1449,12152 -same_theory1([],[]).same_theory1449,12152 -same_theory1([Rule|R],TheoryN):-same_theory1450,12173 -same_theory1([Rule|R],TheoryN):-same_theory1450,12173 -same_theory1([Rule|R],TheoryN):-same_theory1450,12173 -same_theory2(Rule,[Rule1|R],R):-same_theory2454,12276 -same_theory2(Rule,[Rule1|R],R):-same_theory2454,12276 -same_theory2(Rule,[Rule1|R],R):-same_theory2454,12276 -same_theory2(Rule,[Rule1|R],[Rule1|R1]):-same_theory2460,12423 -same_theory2(Rule,[Rule1|R],[Rule1|R1]):-same_theory2460,12423 -same_theory2(Rule,[Rule1|R],[Rule1|R1]):-same_theory2460,12423 -same_body(Body,Body1):-same_body464,12495 -same_body(Body,Body1):-same_body464,12495 -same_body(Body,Body1):-same_body464,12495 -same_body1([],[]).same_body1468,12579 -same_body1([],[]).same_body1468,12579 -same_body1([L|R],Body):-same_body1469,12598 -same_body1([L|R],Body):-same_body1469,12598 -same_body1([L|R],Body):-same_body1469,12598 -cycle_mcts(0,_):-cycle_mcts479,12676 -cycle_mcts(0,_):-cycle_mcts479,12676 -cycle_mcts(0,_):-cycle_mcts479,12676 -cycle_mcts(K,DB):-cycle_mcts481,12698 -cycle_mcts(K,DB):-cycle_mcts481,12698 -cycle_mcts(K,DB):-cycle_mcts481,12698 -check_pruning(ID):-check_pruning524,13967 -check_pruning(ID):-check_pruning524,13967 -check_pruning(ID):-check_pruning524,13967 -check_pruning(_ID). check_pruning535,14383 -check_pruning(_ID). check_pruning535,14383 -check_pruning(Childs,ID,NumVisits,BeamSize,Childs2):-check_pruning537,14405 -check_pruning(Childs,ID,NumVisits,BeamSize,Childs2):-check_pruning537,14405 -check_pruning(Childs,ID,NumVisits,BeamSize,Childs2):-check_pruning537,14405 -check_pruning(Childs,_,_NumVisits,_BeamSize,Childs).check_pruning546,14697 -check_pruning(Childs,_,_NumVisits,_BeamSize,Childs).check_pruning546,14697 -choose_best_childs(Childs,BeamSize,Childs1):-choose_best_childs549,14752 -choose_best_childs(Childs,BeamSize,Childs1):-choose_best_childs549,14752 -choose_best_childs(Childs,BeamSize,Childs1):-choose_best_childs549,14752 -remove_visisted([],[]).remove_visisted557,14954 -remove_visisted([],[]).remove_visisted557,14954 -remove_visisted([V-ID|R],[ID|R1]):-remove_visisted558,14978 -remove_visisted([V-ID|R],[ID|R1]):-remove_visisted558,14978 -remove_visisted([V-ID|R],[ID|R1]):-remove_visisted558,14978 -add_visisted([],[]).add_visisted561,15039 -add_visisted([],[]).add_visisted561,15039 -add_visisted([ID|R],[V-ID|R1]):-add_visisted562,15060 -add_visisted([ID|R],[V-ID|R1]):-add_visisted562,15060 -add_visisted([ID|R],[V-ID|R1]):-add_visisted562,15060 -prune([],_Childs1).prune567,15196 -prune([],_Childs1).prune567,15196 -prune([ID|R],Childs1):-prune568,15216 -prune([ID|R],Childs1):-prune568,15216 -prune([ID|R],Childs1):-prune568,15216 -prune([ID|R],Childs1):-prune572,15284 -prune([ID|R],Childs1):-prune572,15284 -prune([ID|R],Childs1):-prune572,15284 -prune_sub_tree(ID):-prune_sub_tree576,15349 -prune_sub_tree(ID):-prune_sub_tree576,15349 -prune_sub_tree(ID):-prune_sub_tree576,15349 -prune_sub_tree1([]).prune_sub_tree1580,15472 -prune_sub_tree1([]).prune_sub_tree1580,15472 -prune_sub_tree1([ID|R]):-prune_sub_tree1581,15493 -prune_sub_tree1([ID|R]):-prune_sub_tree1581,15493 -prune_sub_tree1([ID|R]):-prune_sub_tree1581,15493 -check_pruning1([],_NumVisits,1,[]).check_pruning1587,15643 -check_pruning1([],_NumVisits,1,[]).check_pruning1587,15643 -check_pruning1([ID|R],NumVisits,ToPrune,[ID|R1]):-check_pruning1588,15679 -check_pruning1([ID|R],NumVisits,ToPrune,[ID|R1]):-check_pruning1588,15679 -check_pruning1([ID|R],NumVisits,ToPrune,[ID|R1]):-check_pruning1588,15679 -check_pruning1([ID|R],NumVisits,ToPrune,R1):-check_pruning1599,15916 -check_pruning1([ID|R],NumVisits,ToPrune,R1):-check_pruning1599,15916 -check_pruning1([ID|R],NumVisits,ToPrune,R1):-check_pruning1599,15916 -tree_policy(ID,NodeID,DB,Od,Nd):-tree_policy604,16007 -tree_policy(ID,NodeID,DB,Od,Nd):-tree_policy604,16007 -tree_policy(ID,NodeID,DB,Od,Nd):-tree_policy604,16007 -default_policy(Theory, Reward, Reward, BestDefaultTheory,BestDefaultTheory,DB, Depth, MaxDepth):-default_policy692,18106 -default_policy(Theory, Reward, Reward, BestDefaultTheory,BestDefaultTheory,DB, Depth, MaxDepth):-default_policy692,18106 -default_policy(Theory, Reward, Reward, BestDefaultTheory,BestDefaultTheory,DB, Depth, MaxDepth):-default_policy692,18106 -default_policy(Theory,PrevR,Reward,PrevBestDefaultTheory,BestDefaultTheory,DB,Depth,MaxDepth):-default_policy695,18227 -default_policy(Theory,PrevR,Reward,PrevBestDefaultTheory,BestDefaultTheory,DB,Depth,MaxDepth):-default_policy695,18227 -default_policy(Theory,PrevR,Reward,PrevBestDefaultTheory,BestDefaultTheory,DB,Depth,MaxDepth):-default_policy695,18227 -minmaxvalue(Childs,MinV,MaxV):-minmaxvalue804,20572 -minmaxvalue(Childs,MinV,MaxV):-minmaxvalue804,20572 -minmaxvalue(Childs,MinV,MaxV):-minmaxvalue804,20572 -minmaxvalue([],Min,Max,Min,Max).minmaxvalue810,20715 -minmaxvalue([],Min,Max,Min,Max).minmaxvalue810,20715 -minmaxvalue([C|R],PrevMin,PrevMax,MinV,MaxV):-minmaxvalue811,20748 -minmaxvalue([C|R],PrevMin,PrevMax,MinV,MaxV):-minmaxvalue811,20748 -minmaxvalue([C|R],PrevMin,PrevMax,MinV,MaxV):-minmaxvalue811,20748 -mean_value_level(Cs,M):-mean_value_level825,21004 -mean_value_level(Cs,M):-mean_value_level825,21004 -mean_value_level(Cs,M):-mean_value_level825,21004 -mean_value_level1([],[]).mean_value_level1830,21101 -mean_value_level1([],[]).mean_value_level1830,21101 -mean_value_level1([C|R],M1):-mean_value_level1831,21127 -mean_value_level1([C|R],M1):-mean_value_level1831,21127 -mean_value_level1([C|R],M1):-mean_value_level1831,21127 -mean_value_level1([C|R],[M|Rm]):-mean_value_level1835,21228 -mean_value_level1([C|R],[M|Rm]):-mean_value_level1835,21228 -mean_value_level1([C|R],[M|Rm]):-mean_value_level1835,21228 -uct(Childs, ParentVisits, BestChild):-uct842,21360 -uct(Childs, ParentVisits, BestChild):-uct842,21360 -uct(Childs, ParentVisits, BestChild):-uct842,21360 -uct([], _CurrentBestUCT, _ParentVisits, BestChild, BestChild).uct856,21744 -uct([], _CurrentBestUCT, _ParentVisits, BestChild, BestChild).uct856,21744 -uct([Child|RestChilds], CurrentBestUCT, ParentVisits, CurrentBestChild, BestChild) :-uct857,21807 -uct([Child|RestChilds], CurrentBestUCT, ParentVisits, CurrentBestChild, BestChild) :-uct857,21807 -uct([Child|RestChilds], CurrentBestUCT, ParentVisits, CurrentBestChild, BestChild) :-uct857,21807 -uct(Childs, ParentVisits, Min, Max, BestChild):-uct875,22296 -uct(Childs, ParentVisits, Min, Max, BestChild):-uct875,22296 -uct(Childs, ParentVisits, Min, Max, BestChild):-uct875,22296 -uct([], _CurrentBestUCT, _ParentVisits, BestChild, _, _,BestChild).uct899,23008 -uct([], _CurrentBestUCT, _ParentVisits, BestChild, _, _,BestChild).uct899,23008 -uct([Child|RestChilds], CurrentBestUCT, ParentVisits, CurrentBestChild, Min, Max,BestChild) :-uct900,23076 -uct([Child|RestChilds], CurrentBestUCT, ParentVisits, CurrentBestChild, Min, Max,BestChild) :-uct900,23076 -uct([Child|RestChilds], CurrentBestUCT, ParentVisits, CurrentBestChild, Min, Max,BestChild) :-uct900,23076 -expand(ID, Theory, ParentCLL, DB, NodeID, Childs):-expand926,23896 -expand(ID, Theory, ParentCLL, DB, NodeID, Childs):-expand926,23896 -expand(ID, Theory, ParentCLL, DB, NodeID, Childs):-expand926,23896 -assert_childs([],_,_,[]).assert_childs983,25416 -assert_childs([],_,_,[]).assert_childs983,25416 -assert_childs([Spec|Rest],P,PCLL,[ID1|Childs]):-assert_childs984,25442 -assert_childs([Spec|Rest],P,PCLL,[ID1|Childs]):-assert_childs984,25442 -assert_childs([Spec|Rest],P,PCLL,[ID1|Childs]):-assert_childs984,25442 -theory_length([],X,X).theory_length999,25927 -theory_length([],X,X).theory_length999,25927 -theory_length([T|R],K,K1):-theory_length1000,25950 -theory_length([T|R],K,K1):-theory_length1000,25950 -theory_length([T|R],K,K1):-theory_length1000,25950 -score_theory(Theory0,DB,Score,Theory,R3):-score_theory1010,26076 -score_theory(Theory0,DB,Score,Theory,R3):-score_theory1010,26076 -score_theory(Theory0,DB,Score,Theory,R3):-score_theory1010,26076 -backup(1,Reward,[]):-backup1061,27313 -backup(1,Reward,[]):-backup1061,27313 -backup(1,Reward,[]):-backup1061,27313 -backup(NodeID,Reward,[Parent|R]):-backup1063,27339 -backup(NodeID,Reward,[Parent|R]):-backup1063,27339 -backup(NodeID,Reward,[Parent|R]):-backup1063,27339 - -packages/cplint/lemur/revise_lemur.pl,18494 -theory_revisions_op(Theory,TheoryRevs):-theory_revisions_op18,305 -theory_revisions_op(Theory,TheoryRevs):-theory_revisions_op18,305 -theory_revisions_op(Theory,TheoryRevs):-theory_revisions_op18,305 -theory_revisions_op(_Theory,[]).theory_revisions_op20,412 -theory_revisions_op(_Theory,[]).theory_revisions_op20,412 -filter_add_rule([],[]).filter_add_rule22,446 -filter_add_rule([],[]).filter_add_rule22,446 -filter_add_rule([add(Rule)|R],R1):-filter_add_rule23,470 -filter_add_rule([add(Rule)|R],R1):-filter_add_rule23,470 -filter_add_rule([add(Rule)|R],R1):-filter_add_rule23,470 -filter_add_rule([A|R],[A|R1]):-filter_add_rule26,534 -filter_add_rule([A|R],[A|R1]):-filter_add_rule26,534 -filter_add_rule([A|R],[A|R1]):-filter_add_rule26,534 -theory_revisions_r(Theory,TheoryRevs):-theory_revisions_r31,596 -theory_revisions_r(Theory,TheoryRevs):-theory_revisions_r31,596 -theory_revisions_r(Theory,TheoryRevs):-theory_revisions_r31,596 -theory_revisions(Theory,TheoryRevs):-theory_revisions46,900 -theory_revisions(Theory,TheoryRevs):-theory_revisions46,900 -theory_revisions(Theory,TheoryRevs):-theory_revisions46,900 -apply_operators([],_Theory,[]).apply_operators51,1033 -apply_operators([],_Theory,[]).apply_operators51,1033 -apply_operators([add(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators53,1066 -apply_operators([add(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators53,1066 -apply_operators([add(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators53,1066 -apply_operators([add_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators58,1244 -apply_operators([add_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators58,1244 -apply_operators([add_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators58,1244 -apply_operators([remove_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators64,1480 -apply_operators([remove_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators64,1480 -apply_operators([remove_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators64,1480 -apply_operators([add_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators70,1719 -apply_operators([add_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators70,1719 -apply_operators([add_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators70,1719 -apply_operators([remove_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators76,1955 -apply_operators([remove_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators76,1955 -apply_operators([remove_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators76,1955 -apply_operators([remove(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators82,2194 -apply_operators([remove(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators82,2194 -apply_operators([remove(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators82,2194 -revise_theory(Theory,Ref):-revise_theory88,2381 -revise_theory(Theory,Ref):-revise_theory88,2381 -revise_theory(Theory,Ref):-revise_theory88,2381 -revise_theory(Theory,Ref):-revise_theory91,2443 -revise_theory(Theory,Ref):-revise_theory91,2443 -revise_theory(Theory,Ref):-revise_theory91,2443 -generalize_theory(Theory,Ref):-generalize_theory95,2508 -generalize_theory(Theory,Ref):-generalize_theory95,2508 -generalize_theory(Theory,Ref):-generalize_theory95,2508 -generalize_theory(Theory,Ref):-generalize_theory100,2617 -generalize_theory(Theory,Ref):-generalize_theory100,2617 -generalize_theory(Theory,Ref):-generalize_theory100,2617 -generalize_rule(Rule,Ref):-generalize_rule107,2723 -generalize_rule(Rule,Ref):-generalize_rule107,2723 -generalize_rule(Rule,Ref):-generalize_rule107,2723 -generalize_rule(Rule,Ref):-generalize_rule110,2781 -generalize_rule(Rule,Ref):-generalize_rule110,2781 -generalize_rule(Rule,Ref):-generalize_rule110,2781 -add_rule(add(rule(ID,Head,[],Lits))):-add_rule114,2840 -add_rule(add(rule(ID,Head,[],Lits))):-add_rule114,2840 -add_rule(add(rule(ID,Head,[],Lits))):-add_rule114,2840 -add_rule(add(SpecRule)):-add_rule130,3208 -add_rule(add(SpecRule)):-add_rule130,3208 -add_rule(add(SpecRule)):-add_rule130,3208 -generate_head([H|_T],_P,[H1:0.5,'':0.5]):-generate_head142,3440 -generate_head([H|_T],_P,[H1:0.5,'':0.5]):-generate_head142,3440 -generate_head([H|_T],_P,[H1:0.5,'':0.5]):-generate_head142,3440 -check_for_constants([],[]).check_for_constants149,3597 -check_for_constants([],[]).check_for_constants149,3597 -check_for_constants([+X|R],[V|R1]):-check_for_constants150,3625 -check_for_constants([+X|R],[V|R1]):-check_for_constants150,3625 -check_for_constants([+X|R],[V|R1]):-check_for_constants150,3625 -check_for_constants([-X|R],[V|R1]):-check_for_constants153,3694 -check_for_constants([-X|R],[V|R1]):-check_for_constants153,3694 -check_for_constants([-X|R],[V|R1]):-check_for_constants153,3694 -check_for_constants([X|R],[X|R1]):-check_for_constants156,3763 -check_for_constants([X|R],[X|R1]):-check_for_constants156,3763 -check_for_constants([X|R],[X|R1]):-check_for_constants156,3763 -generate_head([_H|T],P,Head):-generate_head161,3830 -generate_head([_H|T],P,Head):-generate_head161,3830 -generate_head([_H|T],P,Head):-generate_head161,3830 -generalize_head(Rule,Ref):-generalize_head165,3890 -generalize_head(Rule,Ref):-generalize_head165,3890 -generalize_head(Rule,Ref):-generalize_head165,3890 -generalize_head1(LH,LH1,NH):-generalize_head1171,4029 -generalize_head1(LH,LH1,NH):-generalize_head1171,4029 -generalize_head1(LH,LH1,NH):-generalize_head1171,4029 -generalize_head2([X|_R],LH,LH1,PH) :-generalize_head2176,4130 -generalize_head2([X|_R],LH,LH1,PH) :-generalize_head2176,4130 -generalize_head2([X|_R],LH,LH1,PH) :-generalize_head2176,4130 -generalize_head2([_X|R],LH,LH1) :-generalize_head2190,4435 -generalize_head2([_X|R],LH,LH1) :-generalize_head2190,4435 -generalize_head2([_X|R],LH,LH1) :-generalize_head2190,4435 -add_to_head(['':PN],NH,At,[At:PA,'':PN1]):-!,add_to_head194,4502 -add_to_head(['':PN],NH,At,[At:PA,'':PN1]):-!,add_to_head194,4502 -add_to_head(['':PN],NH,At,[At:PA,'':PN1]):-!,add_to_head194,4502 -add_to_head([H:PH|T],NH,At,[H:PH1|T1]):-add_to_head198,4590 -add_to_head([H:PH|T],NH,At,[H:PH1|T1]):-add_to_head198,4590 -add_to_head([H:PH|T],NH,At,[H:PH1|T1]):-add_to_head198,4590 -get_module_var(LH,Module):-get_module_var203,4685 -get_module_var(LH,Module):-get_module_var203,4685 -get_module_var(LH,Module):-get_module_var203,4685 -generalize_body(Rule,Ref):-generalize_body208,4756 -generalize_body(Rule,Ref):-generalize_body208,4756 -generalize_body(Rule,Ref):-generalize_body208,4756 -specialize_theory(Theory,Ref):-specialize_theory217,4953 -specialize_theory(Theory,Ref):-specialize_theory217,4953 -specialize_theory(Theory,Ref):-specialize_theory217,4953 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule229,5347 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule229,5347 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule229,5347 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule247,5799 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule247,5799 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule247,5799 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule267,6482 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule267,6482 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule267,6482 -filter_modeb([],_Pred,[]).filter_modeb282,6804 -filter_modeb([],_Pred,[]).filter_modeb282,6804 -filter_modeb([Modeb|RestModeb],Pred,[Modeb|RestBSL]):-filter_modeb283,6831 -filter_modeb([Modeb|RestModeb],Pred,[Modeb|RestBSL]):-filter_modeb283,6831 -filter_modeb([Modeb|RestModeb],Pred,[Modeb|RestBSL]):-filter_modeb283,6831 -filter_modeb([_|RestModeb],Pred,RestBSL):-filter_modeb288,6971 -filter_modeb([_|RestModeb],Pred,RestBSL):-filter_modeb288,6971 -filter_modeb([_|RestModeb],Pred,RestBSL):-filter_modeb288,6971 -skolemize(Theory,Theory1):-skolemize292,7055 -skolemize(Theory,Theory1):-skolemize292,7055 -skolemize(Theory,Theory1):-skolemize292,7055 -skolemize1([],_).skolemize1297,7164 -skolemize1([],_).skolemize1297,7164 -skolemize1([Var|R],K):-skolemize1298,7182 -skolemize1([Var|R],K):-skolemize1298,7182 -skolemize1([Var|R],K):-skolemize1298,7182 -banned_clause(H,B):-banned_clause305,7291 -banned_clause(H,B):-banned_clause305,7291 -banned_clause(H,B):-banned_clause305,7291 -mysublist([],_).mysublist312,7398 -mysublist([],_).mysublist312,7398 -mysublist([A\==B|T],L):-mysublist314,7416 -mysublist([A\==B|T],L):-mysublist314,7416 -mysublist([A\==B|T],L):-mysublist314,7416 -mysublist([H|T],L):-mysublist318,7471 -mysublist([H|T],L):-mysublist318,7471 -mysublist([H|T],L):-mysublist318,7471 -check_ref(H,B):-check_ref323,7527 -check_ref(H,B):-check_ref323,7527 -check_ref(H,B):-check_ref323,7527 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule333,7659 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule333,7659 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule333,7659 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule349,8114 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule349,8114 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule349,8114 -specialize_rule([_|RLit],Rule,SpecRul,Lit):-specialize_rule375,8694 -specialize_rule([_|RLit],Rule,SpecRul,Lit):-specialize_rule375,8694 -specialize_rule([_|RLit],Rule,SpecRul,Lit):-specialize_rule375,8694 -specialize_rule_la([],_LH1,BL1,BL1).specialize_rule_la379,8783 -specialize_rule_la([],_LH1,BL1,BL1).specialize_rule_la379,8783 -specialize_rule_la([Lit1|T],LH1,BL1,BL3):-specialize_rule_la381,8821 -specialize_rule_la([Lit1|T],LH1,BL1,BL3):-specialize_rule_la381,8821 -specialize_rule_la([Lit1|T],LH1,BL1,BL3):-specialize_rule_la381,8821 -specialize_rule_la_bot([],Bot,Bot,BL,BL).specialize_rule_la_bot390,9032 -specialize_rule_la_bot([],Bot,Bot,BL,BL).specialize_rule_la_bot390,9032 -specialize_rule_la_bot([Lit|T],Bot0,Bot,BL1,BL3):-specialize_rule_la_bot392,9075 -specialize_rule_la_bot([Lit|T],Bot0,Bot,BL1,BL3):-specialize_rule_la_bot392,9075 -specialize_rule_la_bot([Lit|T],Bot0,Bot,BL1,BL3):-specialize_rule_la_bot392,9075 -remove_prob(['':_P],[]):-!.remove_prob398,9228 -remove_prob(['':_P],[]):-!.remove_prob398,9228 -remove_prob(['':_P],[]):-!.remove_prob398,9228 -remove_prob([X:_|R],[X|R1]):-remove_prob400,9257 -remove_prob([X:_|R],[X|R1]):-remove_prob400,9257 -remove_prob([X:_|R],[X|R1]):-remove_prob400,9257 -specialize_rule1(Lit,Lits,SpecLit):-specialize_rule1404,9310 -specialize_rule1(Lit,Lits,SpecLit):-specialize_rule1404,9310 -specialize_rule1(Lit,Lits,SpecLit):-specialize_rule1404,9310 -convert_to_input_vars([],[]):-!.convert_to_input_vars413,9549 -convert_to_input_vars([],[]):-!.convert_to_input_vars413,9549 -convert_to_input_vars([],[]):-!.convert_to_input_vars413,9549 -convert_to_input_vars([+T|RT],[+T|RT1]):-convert_to_input_vars415,9583 -convert_to_input_vars([+T|RT],[+T|RT1]):-convert_to_input_vars415,9583 -convert_to_input_vars([+T|RT],[+T|RT1]):-convert_to_input_vars415,9583 -convert_to_input_vars([-T|RT],[+T|RT1]):-convert_to_input_vars419,9664 -convert_to_input_vars([-T|RT],[+T|RT1]):-convert_to_input_vars419,9664 -convert_to_input_vars([-T|RT],[+T|RT1]):-convert_to_input_vars419,9664 -member_eq(X,[Y|_List]) :-member_eq423,9741 -member_eq(X,[Y|_List]) :-member_eq423,9741 -member_eq(X,[Y|_List]) :-member_eq423,9741 -member_eq(X,[_|List]) :-member_eq426,9778 -member_eq(X,[_|List]) :-member_eq426,9778 -member_eq(X,[_|List]) :-member_eq426,9778 -remove_eq(X,[Y|R],R):-remove_eq430,9826 -remove_eq(X,[Y|R],R):-remove_eq430,9826 -remove_eq(X,[Y|R],R):-remove_eq430,9826 -remove_eq(X,[_|R],R1):-remove_eq434,9865 -remove_eq(X,[_|R],R1):-remove_eq434,9865 -remove_eq(X,[_|R],R1):-remove_eq434,9865 -linked_clause(X):-linked_clause438,9912 -linked_clause(X):-linked_clause438,9912 -linked_clause(X):-linked_clause438,9912 -linked_clause([],_).linked_clause441,9955 -linked_clause([],_).linked_clause441,9955 -linked_clause([L|R],PrevLits):-linked_clause443,9977 -linked_clause([L|R],PrevLits):-linked_clause443,9977 -linked_clause([L|R],PrevLits):-linked_clause443,9977 -linked([],_).linked450,10145 -linked([],_).linked450,10145 -linked([X|R],L) :-linked452,10160 -linked([X|R],L) :-linked452,10160 -linked([X|R],L) :-linked452,10160 -input_variables(\+ LitM,InputVars):-input_variables458,10221 -input_variables(\+ LitM,InputVars):-input_variables458,10221 -input_variables(\+ LitM,InputVars):-input_variables458,10221 -input_variables(LitM,InputVars):-input_variables471,10500 -input_variables(LitM,InputVars):-input_variables471,10500 -input_variables(LitM,InputVars):-input_variables471,10500 -input_variables(LitM,InputVars):-input_variables479,10665 -input_variables(LitM,InputVars):-input_variables479,10665 -input_variables(LitM,InputVars):-input_variables479,10665 -input_vars(Lit,Lit1,InputVars):-input_vars487,10830 -input_vars(Lit,Lit1,InputVars):-input_vars487,10830 -input_vars(Lit,Lit1,InputVars):-input_vars487,10830 -input_vars1([],_,[]).input_vars1493,10944 -input_vars1([],_,[]).input_vars1493,10944 -input_vars1([V|RV],[+_T|RT],[V|RV1]):-input_vars1495,10967 -input_vars1([V|RV],[+_T|RT],[V|RV1]):-input_vars1495,10967 -input_vars1([V|RV],[+_T|RT],[V|RV1]):-input_vars1495,10967 -input_vars1([_V|RV],[_|RT],RV1):-input_vars1499,11038 -input_vars1([_V|RV],[_|RT],RV1):-input_vars1499,11038 -input_vars1([_V|RV],[_|RT],RV1):-input_vars1499,11038 -exctract_type_vars([],[]).exctract_type_vars503,11100 -exctract_type_vars([],[]).exctract_type_vars503,11100 -exctract_type_vars([Lit|RestLit],TypeVars):-exctract_type_vars505,11128 -exctract_type_vars([Lit|RestLit],TypeVars):-exctract_type_vars505,11128 -exctract_type_vars([Lit|RestLit],TypeVars):-exctract_type_vars505,11128 -take_mode(Lit):-take_mode517,11392 -take_mode(Lit):-take_mode517,11392 -take_mode(Lit):-take_mode517,11392 -take_mode(Lit):-take_mode520,11428 -take_mode(Lit):-take_mode520,11428 -take_mode(Lit):-take_mode520,11428 -take_mode(Lit):-take_mode523,11464 -take_mode(Lit):-take_mode523,11464 -take_mode(Lit):-take_mode523,11464 -type_vars([],[],[]).type_vars527,11500 -type_vars([],[],[]).type_vars527,11500 -type_vars([V|RV],[+T|RT],[V=T|RTV]):-type_vars529,11522 -type_vars([V|RV],[+T|RT],[V=T|RTV]):-type_vars529,11522 -type_vars([V|RV],[+T|RT],[V=T|RTV]):-type_vars529,11522 -type_vars([V|RV],[-T|RT],[V=T|RTV]):-atom(T),!,type_vars533,11590 -type_vars([V|RV],[-T|RT],[V=T|RTV]):-atom(T),!,type_vars533,11590 -type_vars([V|RV],[-T|RT],[V=T|RTV]):-atom(T),!,type_vars533,11590 -type_vars([_V|RV],[_T|RT],RTV):-type_vars536,11663 -type_vars([_V|RV],[_T|RT],RTV):-type_vars536,11663 -type_vars([_V|RV],[_T|RT],RTV):-type_vars536,11663 -take_var_args([],_,[]).take_var_args540,11722 -take_var_args([],_,[]).take_var_args540,11722 -take_var_args([+T|RT],TypeVars,[V|RV]):-take_var_args542,11747 -take_var_args([+T|RT],TypeVars,[V|RV]):-take_var_args542,11747 -take_var_args([+T|RT],TypeVars,[V|RV]):-take_var_args542,11747 -take_var_args([-T|RT],TypeVars,[_V|RV]):-take_var_args547,11851 -take_var_args([-T|RT],TypeVars,[_V|RV]):-take_var_args547,11851 -take_var_args([-T|RT],TypeVars,[_V|RV]):-take_var_args547,11851 -take_var_args([-T|RT],TypeVars,[V|RV]):-take_var_args551,11938 -take_var_args([-T|RT],TypeVars,[V|RV]):-take_var_args551,11938 -take_var_args([-T|RT],TypeVars,[V|RV]):-take_var_args551,11938 -take_var_args([T|RT],TypeVars,[T|RV]):-take_var_args555,12037 -take_var_args([T|RT],TypeVars,[T|RV]):-take_var_args555,12037 -take_var_args([T|RT],TypeVars,[T|RV]):-take_var_args555,12037 -choose_rule(Theory,Rule):-choose_rule560,12153 -choose_rule(Theory,Rule):-choose_rule560,12153 -choose_rule(Theory,Rule):-choose_rule560,12153 -add_rule(Theory,add(rule(ID,H,[],true))):-add_rule570,12327 -add_rule(Theory,add(rule(ID,H,[],true))):-add_rule570,12327 -add_rule(Theory,add(rule(ID,H,[],true))):-add_rule570,12327 -add_rule(Theory,TheoryGen):-add_rule578,12515 -add_rule(Theory,TheoryGen):-add_rule578,12515 -add_rule(Theory,TheoryGen):-add_rule578,12515 -add_rule([X|_R],Theory,TheoryGen) :-add_rule582,12613 -add_rule([X|_R],Theory,TheoryGen) :-add_rule582,12613 -add_rule([X|_R],Theory,TheoryGen) :-add_rule582,12613 -add_rule([_X|R],Theory,TheoryGen) :-add_rule591,12832 -add_rule([_X|R],Theory,TheoryGen) :-add_rule591,12832 -add_rule([_X|R],Theory,TheoryGen) :-add_rule591,12832 -add_probs([],['':P],P):-!.add_probs595,12903 -add_probs([],['':P],P):-!.add_probs595,12903 -add_probs([],['':P],P):-!.add_probs595,12903 -add_probs([H|T],[H:P|T1],P):-add_probs597,12931 -add_probs([H|T],[H:P|T1],P):-add_probs597,12931 -add_probs([H|T],[H:P|T1],P):-add_probs597,12931 -extract_fancy_vars(List,Vars):-extract_fancy_vars601,12984 -extract_fancy_vars(List,Vars):-extract_fancy_vars601,12984 -extract_fancy_vars(List,Vars):-extract_fancy_vars601,12984 -fancy_vars([],_,[]).fancy_vars606,13076 -fancy_vars([],_,[]).fancy_vars606,13076 -fancy_vars([X|R],N,[NN2=X|R1]):-fancy_vars608,13098 -fancy_vars([X|R],N,[NN2=X|R1]):-fancy_vars608,13098 -fancy_vars([X|R],N,[NN2=X|R1]):-fancy_vars608,13098 -delete_one([X|R],R,X).delete_one616,13225 -delete_one([X|R],R,X).delete_one616,13225 -delete_one([X|R],[X|R1],D):-delete_one618,13249 -delete_one([X|R],[X|R1],D):-delete_one618,13249 -delete_one([X|R],[X|R1],D):-delete_one618,13249 -remove_last([_X],[]) :-remove_last622,13302 -remove_last([_X],[]) :-remove_last622,13302 -remove_last([_X],[]) :-remove_last622,13302 -remove_last([X|R],[X|R1]):-remove_last625,13332 -remove_last([X|R],[X|R1]):-remove_last625,13332 -remove_last([X|R],[X|R1]):-remove_last625,13332 -delete_matching([],_El,[]).delete_matching629,13383 -delete_matching([],_El,[]).delete_matching629,13383 -delete_matching([El|T],El,T1):-!,delete_matching631,13412 -delete_matching([El|T],El,T1):-!,delete_matching631,13412 -delete_matching([El|T],El,T1):-!,delete_matching631,13412 -delete_matching([H|T],El,[H|T1]):-delete_matching634,13475 -delete_matching([H|T],El,[H|T1]):-delete_matching634,13475 -delete_matching([H|T],El,[H|T1]):-delete_matching634,13475 - -packages/cplint/lemur/slipcover_lemur.pl,41974 -setting(epsilon_em,0.0001).setting18,263 -setting(epsilon_em,0.0001).setting18,263 -setting(epsilon_em_fraction,0.00001).setting19,291 -setting(epsilon_em_fraction,0.00001).setting19,291 -setting(eps,0.0001).setting20,329 -setting(eps,0.0001).setting20,329 -setting(eps_f,0.00001).setting21,350 -setting(eps_f,0.00001).setting21,350 -setting(epsilon_sem,2).setting25,490 -setting(epsilon_sem,2).setting25,490 -setting(random_restarts_REFnumber,1).setting28,553 -setting(random_restarts_REFnumber,1).setting28,553 -setting(random_restarts_number,1).setting29,591 -setting(random_restarts_number,1).setting29,591 -setting(iterREF,-1).setting30,626 -setting(iterREF,-1).setting30,626 -setting(iter,-1).setting31,647 -setting(iter,-1).setting31,647 -setting(examples,atoms).setting32,665 -setting(examples,atoms).setting32,665 -setting(group,1).setting33,690 -setting(group,1).setting33,690 -setting(d,1). setting34,708 -setting(d,1). setting34,708 -setting(verbosity,1).setting35,724 -setting(verbosity,1).setting35,724 -setting(logzero,log(0.000001)).setting36,746 -setting(logzero,log(0.000001)).setting36,746 -setting(megaex_bottom,1). setting37,778 -setting(megaex_bottom,1). setting37,778 -setting(initial_clauses_per_megaex,1). setting38,805 -setting(initial_clauses_per_megaex,1). setting38,805 -setting(max_iter,10).setting39,846 -setting(max_iter,10).setting39,846 -setting(max_iter_structure,10000).setting40,868 -setting(max_iter_structure,10000).setting40,868 -setting(maxdepth_var,2).setting41,903 -setting(maxdepth_var,2).setting41,903 -setting(beamsize,100).setting42,928 -setting(beamsize,100).setting42,928 -setting(background_clauses,50).setting43,951 -setting(background_clauses,50).setting43,951 -setting(specialization,mode).setting46,1017 -setting(specialization,mode).setting46,1017 -setting(seed,rand(10,1231,30322)). setting49,1082 -setting(seed,rand(10,1231,30322)). setting49,1082 -setting(score,ll).setting50,1119 -setting(score,ll).setting50,1119 -sl(File):-sl53,1170 -sl(File):-sl53,1170 -sl(File):-sl53,1170 -gen_fixed([],[]).gen_fixed106,2572 -gen_fixed([],[]).gen_fixed106,2572 -gen_fixed([(H,B,BL)|T],[rule(R,H,B,BL)|T1]):-gen_fixed108,2591 -gen_fixed([(H,B,BL)|T],[rule(R,H,B,BL)|T1]):-gen_fixed108,2591 -gen_fixed([(H,B,BL)|T],[rule(R,H,B,BL)|T1]):-gen_fixed108,2591 -learn_struct_only(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct_only112,2685 -learn_struct_only(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct_only112,2685 -learn_struct_only(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct_only112,2685 -learn_struct(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct136,3544 -learn_struct(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct136,3544 -learn_struct(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct136,3544 -pick_first(0,_,[]):-!.pick_first162,4506 -pick_first(0,_,[]):-!.pick_first162,4506 -pick_first(0,_,[]):-!.pick_first162,4506 -pick_first(_,[],[]):-!.pick_first164,4530 -pick_first(_,[],[]):-!.pick_first164,4530 -pick_first(_,[],[]):-!.pick_first164,4530 -pick_first(N,[(H,_S)|T],[H|T1]):-pick_first166,4555 -pick_first(N,[(H,_S)|T],[H|T1]):-pick_first166,4555 -pick_first(N,[(H,_S)|T],[H|T1]):-pick_first166,4555 -remove_score([],[]).remove_score170,4626 -remove_score([],[]).remove_score170,4626 -remove_score([(H,_S)|T],[H|T1]):-remove_score172,4648 -remove_score([(H,_S)|T],[H|T1]):-remove_score172,4648 -remove_score([(H,_S)|T],[H|T1]):-remove_score172,4648 -cycle_structure([],R,S,_SP,_DB,R,S,_I):-!. %empty beamcycle_structure175,4705 -cycle_structure([],R,S,_SP,_DB,R,S,_I):-!. %empty beamcycle_structure175,4705 -cycle_structure([],R,S,_SP,_DB,R,S,_I):-!. %empty beamcycle_structure175,4705 -cycle_structure(_CL,R,S,_SP,_DB,R,S,0):-!. %0 iterationscycle_structure177,4762 -cycle_structure(_CL,R,S,_SP,_DB,R,S,0):-!. %0 iterationscycle_structure177,4762 -cycle_structure(_CL,R,S,_SP,_DB,R,S,0):-!. %0 iterationscycle_structure177,4762 -cycle_structure([(RH,_CLL)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure179,4821 -cycle_structure([(RH,_CLL)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure179,4821 -cycle_structure([(RH,_CLL)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure179,4821 -cycle_structure([(RH,_Score)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure197,5229 -cycle_structure([(RH,_Score)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure197,5229 -cycle_structure([(RH,_Score)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure197,5229 -em(File):-em242,6502 -em(File):-em242,6502 -em(File):-em242,6502 -learn_params(DB,R0,R,Score):- %Parameter Learninglearn_params278,7427 -learn_params(DB,R0,R,Score):- %Parameter Learninglearn_params278,7427 -learn_params(DB,R0,R,Score):- %Parameter Learninglearn_params278,7427 -update_theory_par([],_Par,[]).update_theory_par303,8164 -update_theory_par([],_Par,[]).update_theory_par303,8164 -update_theory_par([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory_par305,8196 -update_theory_par([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory_par305,8196 -update_theory_par([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory_par305,8196 -update_theory_par([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory_par308,8296 -update_theory_par([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory_par308,8296 -update_theory_par([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory_par308,8296 -update_theory_par([rule(N,_H,_B,_L)|T0],Par,T):-update_theory_par313,8384 -update_theory_par([rule(N,_H,_B,_L)|T0],Par,T):-update_theory_par313,8384 -update_theory_par([rule(N,_H,_B,_L)|T0],Par,T):-update_theory_par313,8384 -update_theory_par([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory_par318,8501 -update_theory_par([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory_par318,8501 -update_theory_par([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory_par318,8501 -update_theory(R,initial,R):-!.update_theory325,8668 -update_theory(R,initial,R):-!.update_theory325,8668 -update_theory(R,initial,R):-!.update_theory325,8668 -update_theory([],_Par,[]).update_theory327,8700 -update_theory([],_Par,[]).update_theory327,8700 -update_theory([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory329,8728 -update_theory([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory329,8728 -update_theory([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory329,8728 -update_theory([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory332,8820 -update_theory([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory332,8820 -update_theory([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory332,8820 -update_theory([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory335,8894 -update_theory([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory335,8894 -update_theory([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory335,8894 -update_head_par([],[],[]).update_head_par341,9052 -update_head_par([],[],[]).update_head_par341,9052 -update_head_par([H:_P|T0],[HP|TP],[H:HP|T]):-update_head_par343,9080 -update_head_par([H:_P|T0],[HP|TP],[H:HP|T]):-update_head_par343,9080 -update_head_par([H:_P|T0],[HP|TP],[H:HP|T]):-update_head_par343,9080 -cycle_beam([],_DB,CL,CL,CLBG,CLBG,_M):-!.cycle_beam346,9157 -cycle_beam([],_DB,CL,CL,CLBG,CLBG,_M):-!.cycle_beam346,9157 -cycle_beam([],_DB,CL,CL,CLBG,CLBG,_M):-!.cycle_beam346,9157 -cycle_beam(_Beam,_DB,CL,CL,CLBG,CLBG,0):-!.cycle_beam348,9200 -cycle_beam(_Beam,_DB,CL,CL,CLBG,CLBG,0):-!.cycle_beam348,9200 -cycle_beam(_Beam,_DB,CL,CL,CLBG,CLBG,0):-!.cycle_beam348,9200 -cycle_beam(Beam,DB,CL0,CL,CLBG0,CLBG,M):-cycle_beam350,9245 -cycle_beam(Beam,DB,CL0,CL,CLBG0,CLBG,M):-cycle_beam350,9245 -cycle_beam(Beam,DB,CL0,CL,CLBG0,CLBG,M):-cycle_beam350,9245 -cycle_clauses([],_DB,NB,NB,CL,CL,CLBG,CLBG):-!.cycle_clauses356,9473 -cycle_clauses([],_DB,NB,NB,CL,CL,CLBG,CLBG):-!.cycle_clauses356,9473 -cycle_clauses([],_DB,NB,NB,CL,CL,CLBG,CLBG):-!.cycle_clauses356,9473 -cycle_clauses([(RH,_ScoreH)|T],DB,NB0,NB,CL0,CL,CLBG0,CLBG):-cycle_clauses358,9522 -cycle_clauses([(RH,_ScoreH)|T],DB,NB0,NB,CL0,CL,CLBG0,CLBG):-cycle_clauses358,9522 -cycle_clauses([(RH,_ScoreH)|T],DB,NB0,NB,CL0,CL,CLBG0,CLBG):-cycle_clauses358,9522 -score_clause_refinements([],_N,_NR,_DB,NB,NB,CL,CL,CLBG,CLBG).score_clause_refinements365,9922 -score_clause_refinements([],_N,_NR,_DB,NB,NB,CL,CL,CLBG,CLBG).score_clause_refinements365,9922 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- %scans the list of revised theoriesscore_clause_refinements367,9986 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- %scans the list of revised theoriesscore_clause_refinements367,9986 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- %scans the list of revised theoriesscore_clause_refinements367,9986 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- score_clause_refinements378,10467 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- score_clause_refinements378,10467 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- score_clause_refinements378,10467 -range_restricted(rule(_N,HL,BL,_Lit)):-range_restricted431,12056 -range_restricted(rule(_N,HL,BL,_Lit)):-range_restricted431,12056 -range_restricted(rule(_N,HL,BL,_Lit)):-range_restricted431,12056 -sublisteq([],_).sublisteq436,12167 -sublisteq([],_).sublisteq436,12167 -sublisteq([H|T],L):-sublisteq438,12185 -sublisteq([H|T],L):-sublisteq438,12185 -sublisteq([H|T],L):-sublisteq438,12185 -target(R):-target442,12243 -target(R):-target442,12243 -target(R):-target442,12243 -get_output_preds(rule(_N,HL,_BL,_Lit),O):-get_output_preds447,12311 -get_output_preds(rule(_N,HL,_BL,_Lit),O):-get_output_preds447,12311 -get_output_preds(rule(_N,HL,_BL,_Lit),O):-get_output_preds447,12311 -scan_head(['':_],O,O):-!.scan_head450,12377 -scan_head(['':_],O,O):-!.scan_head450,12377 -scan_head(['':_],O,O):-!.scan_head450,12377 -scan_head([],O,O):-!.scan_head451,12403 -scan_head([],O,O):-!.scan_head451,12403 -scan_head([],O,O):-!.scan_head451,12403 -scan_head([H:_P|T],O0,O):-scan_head452,12425 -scan_head([H:_P|T],O0,O):-scan_head452,12425 -scan_head([H:_P|T],O0,O):-scan_head452,12425 -store_clause_refinement(Ref,RefP,Score):-store_clause_refinement463,12549 -store_clause_refinement(Ref,RefP,Score):-store_clause_refinement463,12549 -store_clause_refinement(Ref,RefP,Score):-store_clause_refinement463,12549 -store_refinement(Ref,RefP,Score):-store_refinement467,12665 -store_refinement(Ref,RefP,Score):-store_refinement467,12665 -store_refinement(Ref,RefP,Score):-store_refinement467,12665 -already_scored_clause(R,R1,Score):-already_scored_clause471,12760 -already_scored_clause(R,R1,Score):-already_scored_clause471,12760 -already_scored_clause(R,R1,Score):-already_scored_clause471,12760 -already_scored(R,R1,Score):-already_scored476,12896 -already_scored(R,R1,Score):-already_scored476,12896 -already_scored(R,R1,Score):-already_scored476,12896 -elab_clause_ref(rule(_NR,H,B,_Lits),rule(H1,B1)):-elab_clause_ref481,12979 -elab_clause_ref(rule(_NR,H,B,_Lits),rule(H1,B1)):-elab_clause_ref481,12979 -elab_clause_ref(rule(_NR,H,B,_Lits),rule(H1,B1)):-elab_clause_ref481,12979 -elab_ref([],[]).elab_ref484,13059 -elab_ref([],[]).elab_ref484,13059 -elab_ref([rule(_NR,H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref486,13077 -elab_ref([rule(_NR,H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref486,13077 -elab_ref([rule(_NR,H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref486,13077 -elab_ref([def_rule(H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref491,13205 -elab_ref([def_rule(H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref491,13205 -elab_ref([def_rule(H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref491,13205 -insert_in_order([],C,BeamSize,[C]):-insert_in_order497,13356 -insert_in_order([],C,BeamSize,[C]):-insert_in_order497,13356 -insert_in_order([],C,BeamSize,[C]):-insert_in_order497,13356 -insert_in_order(Beam,_New,0,Beam):-!.insert_in_order500,13410 -insert_in_order(Beam,_New,0,Beam):-!.insert_in_order500,13410 -insert_in_order(Beam,_New,0,Beam):-!.insert_in_order500,13410 -insert_in_order([(Th1,Heuristic1)|RestBeamIn],(Th,Heuristic),BeamSize,BeamOut):-insert_in_order502,13449 -insert_in_order([(Th1,Heuristic1)|RestBeamIn],(Th,Heuristic),BeamSize,BeamOut):-insert_in_order502,13449 -insert_in_order([(Th1,Heuristic1)|RestBeamIn],(Th,Heuristic),BeamSize,BeamOut):-insert_in_order502,13449 -remove_int_atom_list([],[]).remove_int_atom_list521,13955 -remove_int_atom_list([],[]).remove_int_atom_list521,13955 -remove_int_atom_list([A|T],[A1|T1]):-remove_int_atom_list523,13985 -remove_int_atom_list([A|T],[A1|T1]):-remove_int_atom_list523,13985 -remove_int_atom_list([A|T],[A1|T1]):-remove_int_atom_list523,13985 -remove_int_atom(A,A1):-remove_int_atom530,14089 -remove_int_atom(A,A1):-remove_int_atom530,14089 -remove_int_atom(A,A1):-remove_int_atom530,14089 -get_heads([],[]).get_heads535,14144 -get_heads([],[]).get_heads535,14144 -get_heads([_-H|T],[H|TN]):-get_heads537,14163 -get_heads([_-H|T],[H|TN]):-get_heads537,14163 -get_heads([_-H|T],[H|TN]):-get_heads537,14163 -derive_bdd_nodes([],_E,Nodes,Nodes,CLL,CLL).derive_bdd_nodes540,14211 -derive_bdd_nodes([],_E,Nodes,Nodes,CLL,CLL).derive_bdd_nodes540,14211 -derive_bdd_nodes([H|T],E,Nodes0,Nodes,CLL0,CLL):-derive_bdd_nodes542,14257 -derive_bdd_nodes([H|T],E,Nodes0,Nodes,CLL0,CLL):-derive_bdd_nodes542,14257 -derive_bdd_nodes([H|T],E,Nodes0,Nodes,CLL0,CLL):-derive_bdd_nodes542,14257 -get_node_list([],BDD,BDD,_CE).get_node_list566,14708 -get_node_list([],BDD,BDD,_CE).get_node_list566,14708 -get_node_list([H|T],BDD0,BDD,CE):-get_node_list569,14741 -get_node_list([H|T],BDD0,BDD,CE):-get_node_list569,14741 -get_node_list([H|T],BDD0,BDD,CE):-get_node_list569,14741 -derive_bdd_nodes_groupatoms_output_atoms([],_O,_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms_output_atoms575,14853 -derive_bdd_nodes_groupatoms_output_atoms([],_O,_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms_output_atoms575,14853 -derive_bdd_nodes_groupatoms_output_atoms([H|T],O,E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms_output_atoms577,14935 -derive_bdd_nodes_groupatoms_output_atoms([H|T],O,E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms_output_atoms577,14935 -derive_bdd_nodes_groupatoms_output_atoms([H|T],O,E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms_output_atoms577,14935 -derive_bdd_nodes_groupatoms([],_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms590,15310 -derive_bdd_nodes_groupatoms([],_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms590,15310 -derive_bdd_nodes_groupatoms([H|T],E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms592,15376 -derive_bdd_nodes_groupatoms([H|T],E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms592,15376 -derive_bdd_nodes_groupatoms([H|T],E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms592,15376 -get_node_list_groupatoms([],[],_CE,_Gmax,CLL,CLL,LE,LE).get_node_list_groupatoms605,15741 -get_node_list_groupatoms([],[],_CE,_Gmax,CLL,CLL,LE,LE).get_node_list_groupatoms605,15741 -get_node_list_groupatoms([H|T],[[BDD,CE1]|BDDT],CE,Gmax,CLL0,CLL,LE0,LE):-get_node_list_groupatoms607,15799 -get_node_list_groupatoms([H|T],[[BDD,CE1]|BDDT],CE,Gmax,CLL0,CLL,LE0,LE):-get_node_list_groupatoms607,15799 -get_node_list_groupatoms([H|T],[[BDD,CE1]|BDDT],CE,Gmax,CLL0,CLL,LE0,LE):-get_node_list_groupatoms607,15799 -get_bdd_group([],[],G,G,BDD,BDD,_CE,LE,LE):-!.get_bdd_group623,16188 -get_bdd_group([],[],G,G,BDD,BDD,_CE,LE,LE):-!.get_bdd_group623,16188 -get_bdd_group([],[],G,G,BDD,BDD,_CE,LE,LE):-!.get_bdd_group623,16188 -get_bdd_group(T,T,0,0,BDD,BDD,_CE,LE,LE):- !.get_bdd_group625,16236 -get_bdd_group(T,T,0,0,BDD,BDD,_CE,LE,LE):- !.get_bdd_group625,16236 -get_bdd_group(T,T,0,0,BDD,BDD,_CE,LE,LE):- !.get_bdd_group625,16236 -get_bdd_group([H|T],T1,Gmax,G1,BDD0,BDD,CE,[H|LE0],LE):-get_bdd_group627,16283 -get_bdd_group([H|T],T1,Gmax,G1,BDD0,BDD,CE,[H|LE0],LE):-get_bdd_group627,16283 -get_bdd_group([H|T],T1,Gmax,G1,BDD0,BDD,CE,[H|LE0],LE):-get_bdd_group627,16283 -random_restarts(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts635,16520 -random_restarts(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts635,16520 -random_restarts(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts635,16520 -random_restarts(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts637,16575 -random_restarts(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts637,16575 -random_restarts(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts637,16575 -random_restarts_ref(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts_ref667,17251 -random_restarts_ref(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts_ref667,17251 -random_restarts_ref(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts_ref667,17251 -random_restarts_ref(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts_ref669,17310 -random_restarts_ref(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts_ref669,17310 -random_restarts_ref(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts_ref669,17310 -score(_LE,_ExP,CLL,CLL):-score699,17991 -score(_LE,_ExP,CLL,CLL):-score699,17991 -score(_LE,_ExP,CLL,CLL):-score699,17991 -score(LE,ExP,_CLL,Score):-score702,18041 -score(LE,ExP,_CLL,Score):-score702,18041 -score(LE,ExP,_CLL,Score):-score702,18041 -compute_prob([],[],[],Pos,Pos,Neg,Neg).compute_prob709,18184 -compute_prob([],[],[],Pos,Pos,Neg,Neg).compute_prob709,18184 -compute_prob([\+ HE|TE],[HP|TP],[P- (\+ HE)|T],Pos0,Pos,Neg0,Neg):-!,compute_prob711,18225 -compute_prob([\+ HE|TE],[HP|TP],[P- (\+ HE)|T],Pos0,Pos,Neg0,Neg):-!,compute_prob711,18225 -compute_prob([\+ HE|TE],[HP|TP],[P- (\+ HE)|T],Pos0,Pos,Neg0,Neg):-!,compute_prob711,18225 -compute_prob([ HE|TE],[HP|TP],[HP- HE|T],Pos0,Pos,Neg0,Neg):-compute_prob716,18370 -compute_prob([ HE|TE],[HP|TP],[HP- HE|T],Pos0,Pos,Neg0,Neg):-compute_prob716,18370 -compute_prob([ HE|TE],[HP|TP],[HP- HE|T],Pos0,Pos,Neg0,Neg):-compute_prob716,18370 -compute_aucpr(L,Pos,Neg,A):-compute_aucpr721,18496 -compute_aucpr(L,Pos,Neg,A):-compute_aucpr721,18496 -compute_aucpr(L,Pos,Neg,A):-compute_aucpr721,18496 -compute_curve_points([],_P0,TP,FP,_FN,_TN,[1.0-Prec]):-!,compute_curve_points743,18833 -compute_curve_points([],_P0,TP,FP,_FN,_TN,[1.0-Prec]):-!,compute_curve_points743,18833 -compute_curve_points([],_P0,TP,FP,_FN,_TN,[1.0-Prec]):-!,compute_curve_points743,18833 -compute_curve_points([P- (\+ _)|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points746,18914 -compute_curve_points([P- (\+ _)|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points746,18914 -compute_curve_points([P- (\+ _)|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points746,18914 -compute_curve_points([P- _|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points760,19171 -compute_curve_points([P- _|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points760,19171 -compute_curve_points([P- _|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points760,19171 -area([],_Flag,_Pos,_TPA,_FPA,A,A).area774,19423 -area([],_Flag,_Pos,_TPA,_FPA,A,A).area774,19423 -area([R0-P0|T],Flag,Pos,TPA,FPA,A0,A):-area776,19459 -area([R0-P0|T],Flag,Pos,TPA,FPA,A0,A):-area776,19459 -area([R0-P0|T],Flag,Pos,TPA,FPA,A0,A):-area776,19459 -interpolate(I,N,_Pos,_R0,_P0,_TPA,_FPA,_TPB,_FPB,A,A):-I>N,!.interpolate798,19837 -interpolate(I,N,_Pos,_R0,_P0,_TPA,_FPA,_TPB,_FPB,A,A):-I>N,!.interpolate798,19837 -interpolate(I,N,_Pos,_R0,_P0,_TPA,_FPA,_TPB,_FPB,A,A):-I>N,!.interpolate798,19837 -interpolate(I,N,Pos,R0,P0,TPA,FPA,TPB,FPB,A0,A):-interpolate800,19900 -interpolate(I,N,Pos,R0,P0,TPA,FPA,TPB,FPB,A0,A):-interpolate800,19900 -interpolate(I,N,Pos,R0,P0,TPA,FPA,TPB,FPB,A0,A):-interpolate800,19900 -randomize([],[]):-!.randomize808,20113 -randomize([],[]):-!.randomize808,20113 -randomize([],[]):-!.randomize808,20113 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize810,20135 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize810,20135 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize810,20135 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head816,20290 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head816,20290 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head816,20290 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head824,20415 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head824,20415 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head824,20415 -update_head([],[],_N,[]):-!. update_head832,20548 -update_head([],[],_N,[]):-!. update_head832,20548 -update_head([],[],_N,[]):-!. update_head832,20548 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head834,20580 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head834,20580 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head834,20580 -generate_file_names(File,FileKB,FileIn,FileBG,FileOut,FileL):-generate_file_names844,20704 -generate_file_names(File,FileKB,FileIn,FileBG,FileOut,FileL):-generate_file_names844,20704 -generate_file_names(File,FileKB,FileIn,FileBG,FileOut,FileL):-generate_file_names844,20704 -generate_file_name(File,Ext,FileExt):-generate_file_name851,20984 -generate_file_name(File,Ext,FileExt):-generate_file_name851,20984 -generate_file_name(File,Ext,FileExt):-generate_file_name851,20984 -load_models(File,ModulesList):- %carica le interpretazioni, 1 alla voltaload_models856,21123 -load_models(File,ModulesList):- %carica le interpretazioni, 1 alla voltaload_models856,21123 -load_models(File,ModulesList):- %carica le interpretazioni, 1 alla voltaload_models856,21123 -read_models(Stream,[Name1|Names]):-read_models862,21277 -read_models(Stream,[Name1|Names]):-read_models862,21277 -read_models(Stream,[Name1|Names]):-read_models862,21277 -read_models(_S,[]).read_models874,21541 -read_models(_S,[]).read_models874,21541 -read_all_atoms(Stream,Name):-read_all_atoms877,21563 -read_all_atoms(Stream,Name):-read_all_atoms877,21563 -read_all_atoms(Stream,Name):-read_all_atoms877,21563 -read_all_atoms(_S,_N).read_all_atoms895,21922 -read_all_atoms(_S,_N).read_all_atoms895,21922 -write_param(initial,S):-!,write_param898,21947 -write_param(initial,S):-!,write_param898,21947 -write_param(initial,S):-!,write_param898,21947 -write_param(L,S):-write_param905,22163 -write_param(L,S):-write_param905,22163 -write_param(L,S):-write_param905,22163 -write_par([],S):-write_par910,22220 -write_par([],S):-write_par910,22220 -write_par([],S):-write_par910,22220 -write_par([[N,P]|T],S):-write_par914,22313 -write_par([[N,P]|T],S):-write_par914,22313 -write_par([[N,P]|T],S):-write_par914,22313 -write_rules([],_S).write_rules924,22512 -write_rules([],_S).write_rules924,22512 -write_rules([rule(_N,HL,BL,Lit)|T],S):-write_rules926,22533 -write_rules([rule(_N,HL,BL,Lit)|T],S):-write_rules926,22533 -write_rules([rule(_N,HL,BL,Lit)|T],S):-write_rules926,22533 -new_par([],[],[]).new_par934,22725 -new_par([],[],[]).new_par934,22725 -new_par([HP|TP],[Head:_|TO],[Head:HP|TN]):-new_par936,22745 -new_par([HP|TP],[Head:_|TO],[Head:HP|TN]):-new_par936,22745 -new_par([HP|TP],[Head:_|TO],[Head:HP|TN]):-new_par936,22745 -write_model([],_Stream):-!.write_model940,22812 -write_model([],_Stream):-!.write_model940,22812 -write_model([],_Stream):-!.write_model940,22812 -write_model([rule(_N,HL,BL)|Rest],Stream):-write_model942,22841 -write_model([rule(_N,HL,BL)|Rest],Stream):-write_model942,22841 -write_model([rule(_N,HL,BL)|Rest],Stream):-write_model942,22841 -write_disj_clause(S,(H:-[])):-!,write_disj_clause949,23017 -write_disj_clause(S,(H:-[])):-!,write_disj_clause949,23017 -write_disj_clause(S,(H:-[])):-!,write_disj_clause949,23017 -write_disj_clause(S,(H:-B)):-write_disj_clause953,23098 -write_disj_clause(S,(H:-B)):-write_disj_clause953,23098 -write_disj_clause(S,(H:-B)):-write_disj_clause953,23098 -write_head(S,[A:1.0|_Rest]):-!,write_head961,23196 -write_head(S,[A:1.0|_Rest]):-!,write_head961,23196 -write_head(S,[A:1.0|_Rest]):-!,write_head961,23196 -write_head(S,[A:P,'':_P]):-!, write_head965,23277 -write_head(S,[A:P,'':_P]):-!, write_head965,23277 -write_head(S,[A:P,'':_P]):-!, write_head965,23277 -write_head(S,[A:P]):-!,write_head968,23336 -write_head(S,[A:P]):-!,write_head968,23336 -write_head(S,[A:P]):-!,write_head968,23336 -write_head(S,[A:P|Rest]):-write_head971,23388 -write_head(S,[A:P|Rest]):-write_head971,23388 -write_head(S,[A:P|Rest]):-write_head971,23388 -write_body(S,[]):-write_body975,23468 -write_body(S,[]):-write_body975,23468 -write_body(S,[]):-write_body975,23468 -write_body(S,[A]):-!,write_body978,23518 -write_body(S,[A]):-!,write_body978,23518 -write_body(S,[A]):-!,write_body978,23518 -write_body(S,[A|T]):-write_body981,23574 -write_body(S,[A|T]):-write_body981,23574 -write_body(S,[A|T]):-write_body981,23574 -list2or([],true):-!.list2or986,23644 -list2or([],true):-!.list2or986,23644 -list2or([],true):-!.list2or986,23644 -list2or([X],X):-list2or988,23666 -list2or([X],X):-list2or988,23666 -list2or([X],X):-list2or988,23666 -list2or([H|T],(H ; Ta)):-!,list2or991,23701 -list2or([H|T],(H ; Ta)):-!,list2or991,23701 -list2or([H|T],(H ; Ta)):-!,list2or991,23701 -list2and([],true):-!.list2and995,23750 -list2and([],true):-!.list2and995,23750 -list2and([],true):-!.list2and995,23750 -list2and([X],X):-list2and997,23773 -list2and([X],X):-list2and997,23773 -list2and([X],X):-list2and997,23773 -list2and([H|T],(H,Ta)):-!,list2and1000,23808 -list2and([H|T],(H,Ta)):-!,list2and1000,23808 -list2and([H|T],(H,Ta)):-!,list2and1000,23808 -deduct(0,_DB,Th,Th):-!.deduct1004,23858 -deduct(0,_DB,Th,Th):-!.deduct1004,23858 -deduct(0,_DB,Th,Th):-!.deduct1004,23858 -deduct(NM,DB,InTheory0,InTheory):-deduct1006,23883 -deduct(NM,DB,InTheory0,InTheory):-deduct1006,23883 -deduct(NM,DB,InTheory0,InTheory):-deduct1006,23883 -get_head_atoms(O):-get_head_atoms1016,24126 -get_head_atoms(O):-get_head_atoms1016,24126 -get_head_atoms(O):-get_head_atoms1016,24126 -get_head_atoms(LH,LH0):-get_head_atoms1021,24232 -get_head_atoms(LH,LH0):-get_head_atoms1021,24232 -get_head_atoms(LH,LH0):-get_head_atoms1021,24232 -scan_pred_list([],[],[]).scan_pred_list1025,24326 -scan_pred_list([],[],[]).scan_pred_list1025,24326 -scan_pred_list([P/Ar|T],[(P/Ar,LHP)|LH],[(P/Ar,[])|T1]):-scan_pred_list1027,24353 -scan_pred_list([P/Ar|T],[(P/Ar,LHP)|LH],[(P/Ar,[])|T1]):-scan_pred_list1027,24353 -scan_pred_list([P/Ar|T],[(P/Ar,LHP)|LH],[(P/Ar,[])|T1]):-scan_pred_list1027,24353 -scan_pred_list([P/Ar|T],[(P/Ar,LHP)|LH],[(P/Ar,[])|T1]):-scan_pred_list1034,24617 -scan_pred_list([P/Ar|T],[(P/Ar,LHP)|LH],[(P/Ar,[])|T1]):-scan_pred_list1034,24617 -scan_pred_list([P/Ar|T],[(P/Ar,LHP)|LH],[(P/Ar,[])|T1]):-scan_pred_list1034,24617 -head_predicate(P/Ar):-head_predicate1043,24937 -head_predicate(P/Ar):-head_predicate1043,24937 -head_predicate(P/Ar):-head_predicate1043,24937 -head_predicate(P/Ar):-head_predicate1047,24995 -head_predicate(P/Ar):-head_predicate1047,24995 -head_predicate(P/Ar):-head_predicate1047,24995 -generate_top_cl([],[]):-!.generate_top_cl1053,25083 -generate_top_cl([],[]):-!.generate_top_cl1053,25083 -generate_top_cl([],[]):-!.generate_top_cl1053,25083 -generate_top_cl([(P/A,LMH)|T],[(P/A,LR)|TR]):-generate_top_cl1055,25111 -generate_top_cl([(P/A,LMH)|T],[(P/A,LR)|TR]):-generate_top_cl1055,25111 -generate_top_cl([(P/A,LMH)|T],[(P/A,LR)|TR]):-generate_top_cl1055,25111 -generate_top_cl_pred([],[]):-!.generate_top_cl_pred1059,25216 -generate_top_cl_pred([],[]):-!.generate_top_cl_pred1059,25216 -generate_top_cl_pred([],[]):-!.generate_top_cl_pred1059,25216 -generate_top_cl_pred([A|T],[(rule(R,[A1:0.5,'':0.5],[],true),-inf)|TR]):-generate_top_cl_pred1061,25249 -generate_top_cl_pred([A|T],[(rule(R,[A1:0.5,'':0.5],[],true),-inf)|TR]):-generate_top_cl_pred1061,25249 -generate_top_cl_pred([A|T],[(rule(R,[A1:0.5,'':0.5],[],true),-inf)|TR]):-generate_top_cl_pred1061,25249 -generate_head(0,_DB,_LMH,LH,LH):-!.generate_head1068,25437 -generate_head(0,_DB,_LMH,LH,LH):-!.generate_head1068,25437 -generate_head(0,_DB,_LMH,LH,LH):-!.generate_head1068,25437 -generate_head(NM,DB,LMH,LH0,LH):-generate_head1070,25474 -generate_head(NM,DB,LMH,LH0,LH):-generate_head1070,25474 -generate_head(NM,DB,LMH,LH0,LH):-generate_head1070,25474 -generate_head_ex([],_M,[],[]).generate_head_ex1076,25620 -generate_head_ex([],_M,[],[]).generate_head_ex1076,25620 -generate_head_ex([(P/A,L)|T],M,[(P/A,LH)|LHT],[(P/A,LH1)|LHT1]):-generate_head_ex1078,25652 -generate_head_ex([(P/A,L)|T],M,[(P/A,LH)|LHT],[(P/A,LH1)|LHT1]):-generate_head_ex1078,25652 -generate_head_ex([(P/A,L)|T],M,[(P/A,LH)|LHT],[(P/A,LH1)|LHT1]):-generate_head_ex1078,25652 -generate_head_pred([],_M,HL,HL):-!.generate_head_pred1083,25809 -generate_head_pred([],_M,HL,HL):-!.generate_head_pred1083,25809 -generate_head_pred([],_M,HL,HL):-!.generate_head_pred1083,25809 -generate_head_pred([(A,G,Cons,D)|T],M,H0,H1):-!,generate_head_pred1085,25846 -generate_head_pred([(A,G,Cons,D)|T],M,H0,H1):-!,generate_head_pred1085,25846 -generate_head_pred([(A,G,Cons,D)|T],M,H0,H1):-!,generate_head_pred1085,25846 -generate_head_pred([A|T],M,H0,H1):-generate_head_pred1093,26216 -generate_head_pred([A|T],M,H0,H1):-generate_head_pred1093,26216 -generate_head_pred([A|T],M,H0,H1):-generate_head_pred1093,26216 -generate_head_goal([],_M,[]).generate_head_goal1106,26614 -generate_head_goal([],_M,[]).generate_head_goal1106,26614 -generate_head_goal([H|T],M,[H1|T1]):-generate_head_goal1108,26645 -generate_head_goal([H|T],M,[H1|T1]):-generate_head_goal1108,26645 -generate_head_goal([H|T],M,[H1|T1]):-generate_head_goal1108,26645 -keep_const([],[]).keep_const1113,26747 -keep_const([],[]).keep_const1113,26747 -keep_const([- _|T],[_|T1]):-!,keep_const1115,26767 -keep_const([- _|T],[_|T1]):-!,keep_const1115,26767 -keep_const([- _|T],[_|T1]):-!,keep_const1115,26767 -keep_const([+ _|T],[_|T1]):-!,keep_const1118,26819 -keep_const([+ _|T],[_|T1]):-!,keep_const1118,26819 -keep_const([+ _|T],[_|T1]):-!,keep_const1118,26819 -keep_const([-# _|T],[_|T1]):-!,keep_const1121,26871 -keep_const([-# _|T],[_|T1]):-!,keep_const1121,26871 -keep_const([-# _|T],[_|T1]):-!,keep_const1121,26871 -keep_const([H|T],[H|T1]):-keep_const1124,26924 -keep_const([H|T],[H|T1]):-keep_const1124,26924 -keep_const([H|T],[H|T1]):-keep_const1124,26924 -sample(0,List,[],List):-!.sample1129,26974 -sample(0,List,[],List):-!.sample1129,26974 -sample(0,List,[],List):-!.sample1129,26974 -sample(N,List,List,[]):-sample1131,27002 -sample(N,List,List,[]):-sample1131,27002 -sample(N,List,List,[]):-sample1131,27002 -sample(N,List,[El|List1],Li):-sample1135,27056 -sample(N,List,[El|List1],Li):-sample1135,27056 -sample(N,List,[El|List1],Li):-sample1135,27056 -sample(0,_List,[]):-!.sample1142,27192 -sample(0,_List,[]):-!.sample1142,27192 -sample(0,_List,[]):-!.sample1142,27192 -sample(N,List,List):-sample1144,27216 -sample(N,List,List):-sample1144,27216 -sample(N,List,List):-sample1144,27216 -sample(N,List,[El|List1]):-sample1148,27267 -sample(N,List,[El|List1]):-sample1148,27267 -sample(N,List,[El|List1]):-sample1148,27267 -get_args([],[],[],A,A,AT,AT,_).get_args1155,27397 -get_args([],[],[],A,A,AT,AT,_).get_args1155,27397 -get_args([HM|TM],[H|TH],[(H,HM)|TP],A0,A,AT0,AT,M):-get_args1157,27430 -get_args([HM|TM],[H|TH],[(H,HM)|TP],A0,A,AT0,AT,M):-get_args1157,27430 -get_args([HM|TM],[H|TH],[(H,HM)|TP],A0,A,AT0,AT,M):-get_args1157,27430 -gen_head([],P,['':P]).gen_head1166,27651 -gen_head([],P,['':P]).gen_head1166,27651 -gen_head([H|T],P,[H:P|TH]):-gen_head1168,27675 -gen_head([H|T],P,[H:P|TH]):-gen_head1168,27675 -gen_head([H|T],P,[H:P|TH]):-gen_head1168,27675 -get_modeb([],B,B).get_modeb1171,27725 -get_modeb([],B,B).get_modeb1171,27725 -get_modeb([F/AA|T],B0,B):-get_modeb1173,27745 -get_modeb([F/AA|T],B0,B):-get_modeb1173,27745 -get_modeb([F/AA|T],B0,B):-get_modeb1173,27745 -generate_body([],[]).generate_body1178,27864 -generate_body([],[]).generate_body1178,27864 -generate_body([(P/A,LH)|T],[(P/A,LR)|TR]):-generate_body1180,27887 -generate_body([(P/A,LH)|T],[(P/A,LR)|TR]):-generate_body1180,27887 -generate_body([(P/A,LH)|T],[(P/A,LR)|TR]):-generate_body1180,27887 -generate_body_pred([],[]):-!.generate_body_pred1184,27984 -generate_body_pred([],[]):-!.generate_body_pred1184,27984 -generate_body_pred([],[]):-!.generate_body_pred1184,27984 -generate_body_pred([(A,H,Det)|T],[(rule(R,HP,[],BodyList),-inf)|CL0]):-!,generate_body_pred1186,28015 -generate_body_pred([(A,H,Det)|T],[(rule(R,HP,[],BodyList),-inf)|CL0]):-!,generate_body_pred1186,28015 -generate_body_pred([(A,H,Det)|T],[(rule(R,HP,[],BodyList),-inf)|CL0]):-!,generate_body_pred1186,28015 -generate_body_pred([(A,H)|T],[(rule(R,[Head:0.5,'':0.5],[],BodyList),-inf)|CL0]):-generate_body_pred1206,28805 -generate_body_pred([(A,H)|T],[(rule(R,[Head:0.5,'':0.5],[],BodyList),-inf)|CL0]):-generate_body_pred1206,28805 -generate_body_pred([(A,H)|T],[(rule(R,[Head:0.5,'':0.5],[],BodyList),-inf)|CL0]):-generate_body_pred1206,28805 -variabilize((H:-B),(H1:-B1)):-variabilize1226,29607 -variabilize((H:-B),(H1:-B1)):-variabilize1226,29607 -variabilize((H:-B),(H1:-B1)):-variabilize1226,29607 -variabilize_list([],[],A,A,_M).variabilize_list1231,29709 -variabilize_list([],[],A,A,_M).variabilize_list1231,29709 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1233,29742 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1233,29742 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1233,29742 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1241,29947 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1241,29947 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1241,29947 -variabilize_args([],[],[],A,A).variabilize_args1249,30140 -variabilize_args([],[],[],A,A).variabilize_args1249,30140 -variabilize_args([C|T],[C|TT],[C|TV],A0,A):-!,variabilize_args1251,30173 -variabilize_args([C|T],[C|TT],[C|TV],A0,A):-!,variabilize_args1251,30173 -variabilize_args([C|T],[C|TT],[C|TV],A0,A):-!,variabilize_args1251,30173 -variabilize_args([C|T],[# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1254,30255 -variabilize_args([C|T],[# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1254,30255 -variabilize_args([C|T],[# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1254,30255 -variabilize_args([C|T],[-# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1257,30341 -variabilize_args([C|T],[-# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1257,30341 -variabilize_args([C|T],[-# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1257,30341 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1260,30428 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1260,30428 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1260,30428 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1264,30530 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1264,30530 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1264,30530 -cycle_modeb(ArgsTypes,Args,ArgsTypes,Args,_BL,L,L,L,_,_M):-!.cycle_modeb1268,30619 -cycle_modeb(ArgsTypes,Args,ArgsTypes,Args,_BL,L,L,L,_,_M):-!.cycle_modeb1268,30619 -cycle_modeb(ArgsTypes,Args,ArgsTypes,Args,_BL,L,L,L,_,_M):-!.cycle_modeb1268,30619 -cycle_modeb(_ArgsTypes,_Args,_ArgsTypes1,_Args1,_BL,_L,L,L,0,_M):-!.cycle_modeb1270,30682 -cycle_modeb(_ArgsTypes,_Args,_ArgsTypes1,_Args1,_BL,_L,L,L,0,_M):-!.cycle_modeb1270,30682 -cycle_modeb(_ArgsTypes,_Args,_ArgsTypes1,_Args1,_BL,_L,L,L,0,_M):-!.cycle_modeb1270,30682 -cycle_modeb(ArgsTypes,Args,_ArgsTypes0,_Args0,BL,_L0,L1,L,D,M):-cycle_modeb1272,30752 -cycle_modeb(ArgsTypes,Args,_ArgsTypes0,_Args0,BL,_L0,L1,L,D,M):-cycle_modeb1272,30752 -cycle_modeb(ArgsTypes,Args,_ArgsTypes0,_Args0,BL,_L0,L1,L,D,M):-cycle_modeb1272,30752 -find_atoms([],ArgsTypes,Args,ArgsTypes,Args,L,L,_M).find_atoms1278,30954 -find_atoms([],ArgsTypes,Args,ArgsTypes,Args,L,L,_M).find_atoms1278,30954 -find_atoms([(R,H)|T],ArgsTypes0,Args0,ArgsTypes,Args,L0,L1,M):-find_atoms1280,31008 -find_atoms([(R,H)|T],ArgsTypes0,Args0,ArgsTypes,Args,L0,L1,M):-find_atoms1280,31008 -find_atoms([(R,H)|T],ArgsTypes0,Args0,ArgsTypes,Args,L0,L1,M):-find_atoms1280,31008 -call_atoms([],A,A).call_atoms1296,31424 -call_atoms([],A,A).call_atoms1296,31424 -call_atoms([(H,M)|T],A0,A):-call_atoms1298,31445 -call_atoms([(H,M)|T],A0,A):-call_atoms1298,31445 -call_atoms([(H,M)|T],A0,A):-call_atoms1298,31445 -extract_output_args([],_ArgsT,ArgsTypes,Args,ArgsTypes,Args).extract_output_args1304,31539 -extract_output_args([],_ArgsT,ArgsTypes,Args,ArgsTypes,Args).extract_output_args1304,31539 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1306,31602 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1306,31602 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1306,31602 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1312,31834 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1312,31834 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1312,31834 -add_const([],[],ArgsTypes,Args,ArgsTypes,Args).add_const1318,32054 -add_const([],[],ArgsTypes,Args,ArgsTypes,Args).add_const1318,32054 -add_const([_A|T],[+_T|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1320,32103 -add_const([_A|T],[+_T|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1320,32103 -add_const([_A|T],[+_T|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1320,32103 -add_const([A|T],[-Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1323,32218 -add_const([A|T],[-Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1323,32218 -add_const([A|T],[-Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1323,32218 -add_const([A|T],[-# Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1333,32487 -add_const([A|T],[-# Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1333,32487 -add_const([A|T],[-# Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1333,32487 -add_const([_A|T],[# _|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1343,32758 -add_const([_A|T],[# _|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1343,32758 -add_const([_A|T],[# _|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1343,32758 -add_const([A|T],[A|TT],ArgsTypes0,Args0,ArgsTypes,Args):-add_const1346,32873 -add_const([A|T],[A|TT],ArgsTypes0,Args0,ArgsTypes,Args):-add_const1346,32873 -add_const([A|T],[A|TT],ArgsTypes0,Args0,ArgsTypes,Args):-add_const1346,32873 -already_present([+T|_TT],[C|_TC],C,T):-!.already_present1350,32984 -already_present([+T|_TT],[C|_TC],C,T):-!.already_present1350,32984 -already_present([+T|_TT],[C|_TC],C,T):-!.already_present1350,32984 -already_present([_|TT],[_|TC],C,T):-already_present1352,33027 -already_present([_|TT],[_|TC],C,T):-already_present1352,33027 -already_present([_|TT],[_|TC],C,T):-already_present1352,33027 -instantiate_query(ArgsT,ArgsTypes,Args,F,M,A):-instantiate_query1356,33096 -instantiate_query(ArgsT,ArgsTypes,Args,F,M,A):-instantiate_query1356,33096 -instantiate_query(ArgsT,ArgsTypes,Args,F,M,A):-instantiate_query1356,33096 -instantiate_input([],_AT,_A,[]).instantiate_input1366,33268 -instantiate_input([],_AT,_A,[]).instantiate_input1366,33268 -instantiate_input([-_Type|T],AT,A,[_V|TA]):-!,instantiate_input1368,33302 -instantiate_input([-_Type|T],AT,A,[_V|TA]):-!,instantiate_input1368,33302 -instantiate_input([-_Type|T],AT,A,[_V|TA]):-!,instantiate_input1368,33302 -instantiate_input([+Type|T],AT,A,[H|TA]):-!,instantiate_input1371,33382 -instantiate_input([+Type|T],AT,A,[H|TA]):-!,instantiate_input1371,33382 -instantiate_input([+Type|T],AT,A,[H|TA]):-!,instantiate_input1371,33382 -instantiate_input([# Type|T],AT,A,[H|TA]):-!,instantiate_input1375,33486 -instantiate_input([# Type|T],AT,A,[H|TA]):-!,instantiate_input1375,33486 -instantiate_input([# Type|T],AT,A,[H|TA]):-!,instantiate_input1375,33486 -instantiate_input([-# _Type|T],AT,A,[_V|TA]):-!,instantiate_input1379,33591 -instantiate_input([-# _Type|T],AT,A,[_V|TA]):-!,instantiate_input1379,33591 -instantiate_input([-# _Type|T],AT,A,[_V|TA]):-!,instantiate_input1379,33591 -instantiate_input([C|T],AT,A,[C|TA]):-instantiate_input1383,33674 -instantiate_input([C|T],AT,A,[C|TA]):-instantiate_input1383,33674 -instantiate_input([C|T],AT,A,[C|TA]):-instantiate_input1383,33674 -find_val([T|_TT],[A|_TA],T,A).find_val1387,33747 -find_val([T|_TT],[A|_TA],T,A).find_val1387,33747 -find_val([_T|TT],[_A|TA],T,A):-find_val1389,33779 -find_val([_T|TT],[_A|TA],T,A):-find_val1389,33779 -find_val([_T|TT],[_A|TA],T,A):-find_val1389,33779 -get_output_atoms(O):-get_output_atoms1393,33836 -get_output_atoms(O):-get_output_atoms1393,33836 -get_output_atoms(O):-get_output_atoms1393,33836 -generate_goal([],_H,G,G):-!.generate_goal1397,33896 -generate_goal([],_H,G,G):-!.generate_goal1397,33896 -generate_goal([],_H,G,G):-!.generate_goal1397,33896 -generate_goal([P/A|T],H,G0,G1):-generate_goal1399,33926 -generate_goal([P/A|T],H,G0,G1):-generate_goal1399,33926 -generate_goal([P/A|T],H,G0,G1):-generate_goal1399,33926 - -packages/cplint/lpad.pl,59641 -xtrace :- xtrace55,1951 -xnotrace :- xnotrace60,2025 -isprolog(Call) :- isprolog67,2153 -isprolog(Call) :- isprolog67,2153 -isprolog(Call) :- isprolog67,2153 -slg(Call,C,D):-slg74,2293 -slg(Call,C,D):-slg74,2293 -slg(Call,C,D):-slg74,2293 -slg(Call,C0,C,D0,D):-slg77,2333 -slg(Call,C0,C,D0,D):-slg77,2333 -slg(Call,C0,C,D0,D):-slg77,2333 -get_new_atom(Atom):-get_new_atom97,2763 -get_new_atom(Atom):-get_new_atom97,2763 -get_new_atom(Atom):-get_new_atom97,2763 -s(GoalsList,Prob):-s104,2899 -s(GoalsList,Prob):-s104,2899 -s(GoalsList,Prob):-s104,2899 -s(GoalsList,Prob,CPUTime1,0.0,WallTime1,0.0):-s108,2973 -s(GoalsList,Prob,CPUTime1,0.0,WallTime1,0.0):-s108,2973 -s(GoalsList,Prob,CPUTime1,0.0,WallTime1,0.0):-s108,2973 -convert_to_goal([Goal],Goal):-Goal \= (\+ _) ,!.convert_to_goal118,3239 -convert_to_goal([Goal],Goal):-Goal \= (\+ _) ,!.convert_to_goal118,3239 -convert_to_goal([Goal],Goal):-Goal \= (\+ _) ,!.convert_to_goal118,3239 -convert_to_goal(GoalsList,Head):-convert_to_goal120,3289 -convert_to_goal(GoalsList,Head):-convert_to_goal120,3289 -convert_to_goal(GoalsList,Head):-convert_to_goal120,3289 -solve(Goal,Prob):-solve127,3444 -solve(Goal,Prob):-solve127,3444 -solve(Goal,Prob):-solve127,3444 -compute_prob(Var,For,Prob,_):-compute_prob152,3992 -compute_prob(Var,For,Prob,_):-compute_prob152,3992 -compute_prob(Var,For,Prob,_):-compute_prob152,3992 -compute_prob_term(_Var,[],Prob,Prob).compute_prob_term155,4060 -compute_prob_term(_Var,[],Prob,Prob).compute_prob_term155,4060 -compute_prob_term(Var,[H|T],Prob0,Prob):-compute_prob_term157,4099 -compute_prob_term(Var,[H|T],Prob0,Prob):-compute_prob_term157,4099 -compute_prob_term(Var,[H|T],Prob0,Prob):-compute_prob_term157,4099 -compute_prob_factor(_Var,[],PF,PF).compute_prob_factor162,4237 -compute_prob_factor(_Var,[],PF,PF).compute_prob_factor162,4237 -compute_prob_factor(Var,[[N,Value]|T],PF0,PF):-compute_prob_factor164,4274 -compute_prob_factor(Var,[[N,Value]|T],PF0,PF):-compute_prob_factor164,4274 -compute_prob_factor(Var,[[N,Value]|T],PF0,PF):-compute_prob_factor164,4274 -sc(Goals,Evidences,Prob):-sc170,4431 -sc(Goals,Evidences,Prob):-sc170,4431 -sc(Goals,Evidences,Prob):-sc170,4431 -sc(Goals,Evidences,Prob,CPUTime1,0.0,WallTime1,0.0):-sc175,4560 -sc(Goals,Evidences,Prob,CPUTime1,0.0,WallTime1,0.0):-sc175,4560 -sc(Goals,Evidences,Prob,CPUTime1,0.0,WallTime1,0.0):-sc175,4560 -solve_cond(Goal,Evidence,Prob):-solve_cond186,4881 -solve_cond(Goal,Evidence,Prob):-solve_cond186,4881 -solve_cond(Goal,Evidence,Prob):-solve_cond186,4881 -solve_cond_goals(Goals,LE,ProbGE):-solve_cond_goals199,5220 -solve_cond_goals(Goals,LE,ProbGE):-solve_cond_goals199,5220 -solve_cond_goals(Goals,LE,ProbGE):-solve_cond_goals199,5220 -solve_cond_goals(Goals,LE,0):-solve_cond_goals209,5486 -solve_cond_goals(Goals,LE,0):-solve_cond_goals209,5486 -solve_cond_goals(Goals,LE,0):-solve_cond_goals209,5486 -find_deriv_GE(LD,GoalsList,Deriv):-find_deriv_GE212,5556 -find_deriv_GE(LD,GoalsList,Deriv):-find_deriv_GE212,5556 -find_deriv_GE(LD,GoalsList,Deriv):-find_deriv_GE212,5556 -call_compute_prob(NewVarGE,FormulaGE,ProbGE):-call_compute_prob217,5680 -call_compute_prob(NewVarGE,FormulaGE,ProbGE):-call_compute_prob217,5680 -call_compute_prob(NewVarGE,FormulaGE,ProbGE):-call_compute_prob217,5680 -emptytable(0:[]).emptytable228,5951 -emptytable(0:[]).emptytable228,5951 -slgall(Call,Anss) :-slgall236,6172 -slgall(Call,Anss) :-slgall236,6172 -slgall(Call,Anss) :-slgall236,6172 -slgall(Call,Anss,N0:Tab0,N:Tab) :-slgall238,6220 -slgall(Call,Anss,N0:Tab0,N:Tab) :-slgall238,6220 -slgall(Call,Anss,N0:Tab0,N:Tab) :-slgall238,6220 -oldt(Call,Tab,C0,C,D0,D) :-oldt262,7099 -oldt(Call,Tab,C0,C,D0,D) :-oldt262,7099 -oldt(Call,Tab,C0,C,D0,D) :-oldt262,7099 -oldt(Call,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D,PC) :-oldt296,8909 -oldt(Call,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D,PC) :-oldt296,8909 -oldt(Call,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D,PC) :-oldt296,8909 -find_rules(Call,Frames,C,PossC):-find_rules318,9810 -find_rules(Call,Frames,C,PossC):-find_rules318,9810 -find_rules(Call,Frames,C,PossC):-find_rules318,9810 -find_disj_rules(Call,Fr,C,[]):- find_disj_rules326,10065 -find_disj_rules(Call,Fr,C,[]):- find_disj_rules326,10065 -find_disj_rules(Call,Fr,C,[]):- find_disj_rules326,10065 -find_disj_rulesold(Call,Fr,C,PossC):- find_disj_rulesold330,10178 -find_disj_rulesold(Call,Fr,C,PossC):- find_disj_rulesold330,10178 -find_disj_rulesold(Call,Fr,C,PossC):- find_disj_rulesold330,10178 -choose_rules([],Fr,Fr,_C,PC,PC).choose_rules352,10888 -choose_rules([],Fr,Fr,_C,PC,PC).choose_rules352,10888 -choose_rules([rule(d(Call,[]),Body,R,S,N1,LH)|LD],Fr0,Fr,C,PC0,PC):-choose_rules354,10922 -choose_rules([rule(d(Call,[]),Body,R,S,N1,LH)|LD],Fr0,Fr,C,PC0,PC):-choose_rules354,10922 -choose_rules([rule(d(Call,[]),Body,R,S,N1,LH)|LD],Fr0,Fr,C,PC0,PC):-choose_rules354,10922 -choose_rulesold([],_LD,Fr,Fr,_C,PC,PC).choose_rulesold369,11295 -choose_rulesold([],_LD,Fr,Fr,_C,PC,PC).choose_rulesold369,11295 -choose_rulesold([(R,LH)|LR],LD,Fr0,Fr,C,PC0,PC):-choose_rulesold371,11336 -choose_rulesold([(R,LH)|LR],LD,Fr0,Fr,C,PC0,PC):-choose_rulesold371,11336 -choose_rulesold([(R,LH)|LR],LD,Fr0,Fr,C,PC0,PC):-choose_rulesold371,11336 -merge_subs([],_S).merge_subs398,12178 -merge_subs([],_S).merge_subs398,12178 -merge_subs([S|ST],S):-merge_subs400,12198 -merge_subs([S|ST],S):-merge_subs400,12198 -merge_subs([S|ST],S):-merge_subs400,12198 -merge_subs([],_Call,_S).merge_subs403,12241 -merge_subs([],_Call,_S).merge_subs403,12241 -merge_subs([(S,Call)|ST],Call,S):-merge_subs405,12267 -merge_subs([(S,Call)|ST],Call,S):-merge_subs405,12267 -merge_subs([(S,Call)|ST],Call,S):-merge_subs405,12267 -consistent(_N,_R,_S,[]):-!.consistent412,12416 -consistent(_N,_R,_S,[]):-!.consistent412,12416 -consistent(_N,_R,_S,[]):-!.consistent412,12416 -consistent(N,R,S,[(_N,R1,_S)|T]):-consistent414,12445 -consistent(N,R,S,[(_N,R1,_S)|T]):-consistent414,12445 -consistent(N,R,S,[(_N,R1,_S)|T]):-consistent414,12445 -consistent(N,R,S,[(N,R,_S)|T]):-consistent419,12531 -consistent(N,R,S,[(N,R,_S)|T]):-consistent419,12531 -consistent(N,R,S,[(N,R,_S)|T]):-consistent419,12531 -consistent(N,R,S,[(N1,R,S1)|T]):-consistent423,12610 -consistent(N,R,S,[(N1,R,S1)|T]):-consistent423,12610 -consistent(N,R,S,[(N1,R,S1)|T]):-consistent423,12610 -map_oldt([],_Ggoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP,C,C,D,D).map_oldt432,12743 -map_oldt([],_Ggoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP,C,C,D,D).map_oldt432,12743 -edge_oldt(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-edge_oldt456,13655 -edge_oldt(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-edge_oldt456,13655 -edge_oldt(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-edge_oldt456,13655 -add_ans_to_C(rule(_,_,def(N),_,S,_),Tab,C,C,D,[(N,S)|D],true):-!.add_ans_to_C480,14660 -add_ans_to_C(rule(_,_,def(N),_,S,_),Tab,C,C,D,[(N,S)|D],true):-!.add_ans_to_C480,14660 -add_ans_to_C(rule(_,_,def(N),_,S,_),Tab,C,C,D,[(N,S)|D],true):-!.add_ans_to_C480,14660 -add_ans_to_C(rule(Goal,_B,R,N,S,LH),Tab,C0,C,D,D,HeadSelected):-add_ans_to_C482,14727 -add_ans_to_C(rule(Goal,_B,R,N,S,LH),Tab,C0,C,D,D,HeadSelected):-add_ans_to_C482,14727 -add_ans_to_C(rule(Goal,_B,R,N,S,LH),Tab,C0,C,D,D,HeadSelected):-add_ans_to_C482,14727 -add_to_C(R,N,S,LH,C0,C,HeadSelected):-add_to_C498,15023 -add_to_C(R,N,S,LH,C0,C,HeadSelected):-add_to_C498,15023 -add_to_C(R,N,S,LH,C0,C,HeadSelected):-add_to_C498,15023 -already_present_with_the_same_head(N,R,S,[(N,R,S)|_T]):-!.already_present_with_the_same_head514,15389 -already_present_with_the_same_head(N,R,S,[(N,R,S)|_T]):-!.already_present_with_the_same_head514,15389 -already_present_with_the_same_head(N,R,S,[(N,R,S)|_T]):-!.already_present_with_the_same_head514,15389 -already_present_with_the_same_head(N,R,S,[(_N,_R,_S)|T]):-!,already_present_with_the_same_head516,15449 -already_present_with_the_same_head(N,R,S,[(_N,_R,_S)|T]):-!,already_present_with_the_same_head516,15449 -already_present_with_the_same_head(N,R,S,[(_N,_R,_S)|T]):-!,already_present_with_the_same_head516,15449 -already_present_with_a_different_head(N,R,S,[(N1,R,S1)|_T]):-already_present_with_a_different_head524,15698 -already_present_with_a_different_head(N,R,S,[(N1,R,S1)|_T]):-already_present_with_a_different_head524,15698 -already_present_with_a_different_head(N,R,S,[(N1,R,S1)|_T]):-already_present_with_a_different_head524,15698 -already_present_with_a_different_head(N,R,S,[(_N1,_R1,_S1)|T]):-already_present_with_a_different_head527,15791 -already_present_with_a_different_head(N,R,S,[(_N1,_R1,_S1)|T]):-already_present_with_a_different_head527,15791 -already_present_with_a_different_head(N,R,S,[(_N1,_R1,_S1)|T]):-already_present_with_a_different_head527,15791 -different_head(N,N1,S,S1):-different_head530,15906 -different_head(N,N1,S,S1):-different_head530,15906 -different_head(N,N1,S,S1):-different_head530,15906 -add_PC_to_C([],C,C).add_PC_to_C537,16065 -add_PC_to_C([],C,C).add_PC_to_C537,16065 -add_PC_to_C([rule(H,B,R,N,S)|T],C0,C):-add_PC_to_C539,16087 -add_PC_to_C([rule(H,B,R,N,S)|T],C0,C):-add_PC_to_C539,16087 -add_PC_to_C([rule(H,B,R,N,S)|T],C0,C):-add_PC_to_C539,16087 -ans_edge(rule(Ans,B,Rule,Number,Sub,LH),Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-ans_edge543,16194 -ans_edge(rule(Ans,B,Rule,Number,Sub,LH),Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-ans_edge543,16194 -ans_edge(rule(Ans,B,Rule,Number,Sub,LH),Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-ans_edge543,16194 -neg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-neg_edge563,16876 -neg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-neg_edge563,16876 -neg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-neg_edge563,16876 -pos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-pos_edge594,18217 -pos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-pos_edge594,18217 -pos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-pos_edge594,18217 -aneg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-aneg_edge619,19262 -aneg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-aneg_edge619,19262 -aneg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-aneg_edge619,19262 -apos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-apos_edge643,20191 -apos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-apos_edge643,20191 -apos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-apos_edge643,20191 -apply_subst(Ggoal:Cl,d(An,Vr),Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-apply_subst654,20585 -apply_subst(Ggoal:Cl,d(An,Vr),Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-apply_subst654,20585 -apply_subst(Ggoal:Cl,d(An,Vr),Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-apply_subst654,20585 -map_nodes([],_Ans,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP,C,C,D,D).map_nodes675,21285 -map_nodes([],_Ans,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP,C,C,D,D).map_nodes675,21285 -map_nodes([Node|Nodes],Ans,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_nodes676,21347 -map_nodes([Node|Nodes],Ans,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_nodes676,21347 -map_nodes([Node|Nodes],Ans,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_nodes676,21347 -map_anss([],_Node,_Ngoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP,C,C,D,D).map_anss680,21586 -map_anss([],_Node,_Ngoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP,C,C,D,D).map_anss680,21586 -map_anss(l(_GH,Lanss),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss681,21655 -map_anss(l(_GH,Lanss),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss681,21655 -map_anss(l(_GH,Lanss),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss681,21655 -map_anss(n2(T1,_,T2),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss688,21977 -map_anss(n2(T1,_,T2),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss688,21977 -map_anss(n2(T1,_,T2),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss688,21977 -map_anss(n3(T1,_,T2,_,T3),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss691,22225 -map_anss(n3(T1,_,T2,_,T3),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss691,22225 -map_anss(n3(T1,_,T2,_,T3),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss691,22225 -map_anss_list([],_Node,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP,C,C,D,D).map_anss_list696,22564 -map_anss_list([],_Node,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP,C,C,D,D).map_anss_list696,22564 -map_anss_list([Ans|Lanss],Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss_list697,22631 -map_anss_list([Ans|Lanss],Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss_list697,22631 -map_anss_list([Ans|Lanss],Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP,C0,C,D0,D) :-map_anss_list697,22631 -return_to_disj(Nanss,Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj712,23460 -return_to_disj(Nanss,Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj712,23460 -return_to_disj(Nanss,Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj712,23460 -negative_return_all([],_Body,_Ngoal,NBody,NBody,N,N,Tcl,Tcl).negative_return_all720,23788 -negative_return_all([],_Body,_Ngoal,NBody,NBody,N,N,Tcl,Tcl).negative_return_all720,23788 -negative_return_all(l(_GH,Lanss),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all721,23850 -negative_return_all(l(_GH,Lanss),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all721,23850 -negative_return_all(l(_GH,Lanss),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all721,23850 -negative_return_all(n2(T1,_,T2),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all727,24086 -negative_return_all(n2(T1,_,T2),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all727,24086 -negative_return_all(n2(T1,_,T2),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all727,24086 -negative_return_all(n3(T1,_,T2,_,T3),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all730,24297 -negative_return_all(n3(T1,_,T2,_,T3),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all730,24297 -negative_return_all(n3(T1,_,T2,_,T3),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all730,24297 -negative_return_one(d(H,Tv),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_one735,24584 -negative_return_one(d(H,Tv),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_one735,24584 -negative_return_one(d(H,Tv),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_one735,24584 -return_to_disj_list(Lanss,Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj_list760,25403 -return_to_disj_list(Lanss,Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj_list760,25403 -return_to_disj_list(Lanss,Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj_list760,25403 -negative_return_list([],_Body,NBody,NBody,N,N,Tcl,Tcl).negative_return_list768,25725 -negative_return_list([],_Body,NBody,NBody,N,N,Tcl,Tcl).negative_return_list768,25725 -negative_return_list([d(H,[])|Lanss],Body,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_list769,25781 -negative_return_list([d(H,[])|Lanss],Body,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_list769,25781 -negative_return_list([d(H,[])|Lanss],Body,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_list769,25781 -comp_tab_ent(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-comp_tab_ent787,26357 -comp_tab_ent(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-comp_tab_ent787,26357 -comp_tab_ent(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-comp_tab_ent787,26357 -process_pos_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_pos_scc800,26886 -process_pos_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_pos_scc800,26886 -process_pos_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_pos_scc800,26886 -pop_subgoals(Ggoal,S0,S,Scc0,Scc) :-pop_subgoals815,27423 -pop_subgoals(Ggoal,S0,S,Scc0,Scc) :-pop_subgoals815,27423 -pop_subgoals(Ggoal,S0,S,Scc0,Scc) :-pop_subgoals815,27423 -complete_comp([],Tab,Tab,Alist,Alist).complete_comp827,27716 -complete_comp([],Tab,Tab,Alist,Alist).complete_comp827,27716 -complete_comp([Ggoal|Scc],Tab0,Tab,Alist0,Alist) :-complete_comp828,27755 -complete_comp([Ggoal|Scc],Tab0,Tab,Alist0,Alist) :-complete_comp828,27755 -complete_comp([Ggoal|Scc],Tab0,Tab,Alist0,Alist) :-complete_comp828,27755 -complete_one(Ggoal,Tab0,Tab,Alist0,Alist) :-complete_one845,28423 -complete_one(Ggoal,Tab0,Tab,Alist0,Alist) :-complete_one845,28423 -complete_one(Ggoal,Tab0,Tab,Alist0,Alist) :-complete_one845,28423 -setup_simp_links([],_,Slist,Slist,Tab,Tab).setup_simp_links864,28996 -setup_simp_links([],_,Slist,Slist,Tab,Tab).setup_simp_links864,28996 -setup_simp_links(l(GH,Lanss),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links865,29040 -setup_simp_links(l(GH,Lanss),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links865,29040 -setup_simp_links(l(GH,Lanss),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links865,29040 -setup_simp_links(n2(T1,_,T2),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links867,29172 -setup_simp_links(n2(T1,_,T2),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links867,29172 -setup_simp_links(n2(T1,_,T2),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links867,29172 -setup_simp_links(n3(T1,_,T2,_,T3),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links870,29343 -setup_simp_links(n3(T1,_,T2,_,T3),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links870,29343 -setup_simp_links(n3(T1,_,T2,_,T3),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links870,29343 -setup_simp_links_list([],_,_,Slist,Slist,Tab,Tab).setup_simp_links_list879,29726 -setup_simp_links_list([],_,_,Slist,Slist,Tab,Tab).setup_simp_links_list879,29726 -setup_simp_links_list([d(_,D)|Anss],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links_list880,29777 -setup_simp_links_list([d(_,D)|Anss],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links_list880,29777 -setup_simp_links_list([d(_,D)|Anss],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links_list880,29777 -links_from_one_delay([],_,_,Slist,Slist,Tab,Tab).links_from_one_delay892,30219 -links_from_one_delay([],_,_,Slist,Slist,Tab,Tab).links_from_one_delay892,30219 -links_from_one_delay([D|Ds],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-links_from_one_delay893,30269 -links_from_one_delay([D|Ds],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-links_from_one_delay893,30269 -links_from_one_delay([D|Ds],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-links_from_one_delay893,30269 -extract_known(Ggoal,Anss,Links,Slist,Klist) :-extract_known923,31193 -extract_known(Ggoal,Anss,Links,Slist,Klist) :-extract_known923,31193 -extract_known(Ggoal,Anss,Links,Slist,Klist) :-extract_known923,31193 -extract_known_anss([],_,Slist,Slist,Klist,Klist).extract_known_anss942,31686 -extract_known_anss([],_,Slist,Slist,Klist,Klist).extract_known_anss942,31686 -extract_known_anss([Link|Links],Anss,Slist0,Slist,Klist0,Klist) :-extract_known_anss943,31736 -extract_known_anss([Link|Links],Anss,Slist0,Slist,Klist0,Klist) :-extract_known_anss943,31736 -extract_known_anss([Link|Links],Anss,Slist0,Slist,Klist0,Klist) :-extract_known_anss943,31736 -extract_lit_val(Lit,Anss,Comp,Val) :-extract_lit_val959,32262 -extract_lit_val(Lit,Anss,Comp,Val) :-extract_lit_val959,32262 -extract_lit_val(Lit,Anss,Comp,Val) :-extract_lit_val959,32262 -simplify([],Tab,Tab,_Abd).simplify1003,33338 -simplify([],Tab,Tab,_Abd).simplify1003,33338 -simplify([Val-Link|Klist],Tab0,Tab,Abd) :-simplify1004,33365 -simplify([Val-Link|Klist],Tab0,Tab,Abd) :-simplify1004,33365 -simplify([Val-Link|Klist],Tab0,Tab,Abd) :-simplify1004,33365 -simplify(Val-Links,Tab0,Tab,Abd) :-simplify1007,33484 -simplify(Val-Links,Tab0,Tab,Abd) :-simplify1007,33484 -simplify(Val-Links,Tab0,Tab,Abd) :-simplify1007,33484 -simplify_list([],_,Tab,Tab,_Abd).simplify_list1010,33564 -simplify_list([],_,Tab,Tab,_Abd).simplify_list1010,33564 -simplify_list([Link|Links],Val,Tab0,Tab,Abd) :-simplify_list1011,33598 -simplify_list([Link|Links],Val,Tab0,Tab,Abd) :-simplify_list1011,33598 -simplify_list([Link|Links],Val,Tab0,Tab,Abd) :-simplify_list1011,33598 -simplify_one(Val,Link,Tab0,Tab,Abd) :-simplify_one1020,33872 -simplify_one(Val,Link,Tab0,Tab,Abd) :-simplify_one1020,33872 -simplify_one(Val,Link,Tab0,Tab,Abd) :-simplify_one1020,33872 -simplify_anss([],_,_,Anss,Anss,_).simplify_anss1053,34896 -simplify_anss([],_,_,Anss,Anss,_).simplify_anss1053,34896 -simplify_anss([Ans|Rest],Val,Lit,Anss0,Anss,C) :-simplify_anss1054,34931 -simplify_anss([Ans|Rest],Val,Lit,Anss0,Anss,C) :-simplify_anss1054,34931 -simplify_anss([Ans|Rest],Val,Lit,Anss0,Anss,C) :-simplify_anss1054,34931 -simplified_ans(Ans,Val,Lit,NewAns,C) :-simplified_ans1065,35239 -simplified_ans(Ans,Val,Lit,NewAns,C) :-simplified_ans1065,35239 -simplified_ans(Ans,Val,Lit,NewAns,C) :-simplified_ans1065,35239 -delete_lit([],_,Ds,Ds,_).delete_lit1100,36059 -delete_lit([],_,Ds,Ds,_).delete_lit1100,36059 -delete_lit([D|Rest],Lit,Ds0,Ds,C) :-delete_lit1101,36085 -delete_lit([D|Rest],Lit,Ds0,Ds,C) :-delete_lit1101,36085 -delete_lit([D|Rest],Lit,Ds0,Ds,C) :-delete_lit1101,36085 -return_aneg_nodes([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).return_aneg_nodes1110,36303 -return_aneg_nodes([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).return_aneg_nodes1110,36303 -return_aneg_nodes([(Anss,Ngoal)-ANegs|Alist],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_aneg_nodes1111,36360 -return_aneg_nodes([(Anss,Ngoal)-ANegs|Alist],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_aneg_nodes1111,36360 -return_aneg_nodes([(Anss,Ngoal)-ANegs|Alist],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_aneg_nodes1111,36360 -map_anegs([],_Anss,_Ngoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_anegs1115,36595 -map_anegs([],_Anss,_Ngoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_anegs1115,36595 -map_anegs([Node|ANegs],Anss,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anegs1116,36657 -map_anegs([Node|ANegs],Anss,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anegs1116,36657 -map_anegs([Node|ANegs],Anss,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anegs1116,36657 -process_neg_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_neg_scc1123,36970 -process_neg_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_neg_scc1123,36970 -process_neg_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_neg_scc1123,36970 -extract_subgoals(Ggoal,[Sent|S],[Sent|Scc0],Scc) :-extract_subgoals1143,37646 -extract_subgoals(Ggoal,[Sent|S],[Sent|Scc0],Scc) :-extract_subgoals1143,37646 -extract_subgoals(Ggoal,[Sent|S],[Sent|Scc0],Scc) :-extract_subgoals1143,37646 -reset_nmin([],Tab,Tab,Ds,Ds).reset_nmin1153,37946 -reset_nmin([],Tab,Tab,Ds,Ds).reset_nmin1153,37946 -reset_nmin([Ggoal|Scc],Tab0,Tab,Ds0,Ds) :-reset_nmin1154,37976 -reset_nmin([Ggoal|Scc],Tab0,Tab,Ds0,Ds) :-reset_nmin1154,37976 -reset_nmin([Ggoal|Scc],Tab0,Tab,Ds0,Ds) :-reset_nmin1154,37976 -delay_and_cont([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).delay_and_cont1162,38178 -delay_and_cont([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).delay_and_cont1162,38178 -delay_and_cont([Ggoal-Negs|Dnodes],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-delay_and_cont1163,38232 -delay_and_cont([Ggoal-Negs|Dnodes],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-delay_and_cont1163,38232 -delay_and_cont([Ggoal-Negs|Dnodes],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-delay_and_cont1163,38232 -recomp_scc([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).recomp_scc1167,38464 -recomp_scc([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).recomp_scc1167,38464 -recomp_scc([Ggoal|Scc],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-recomp_scc1168,38514 -recomp_scc([Ggoal|Scc],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-recomp_scc1168,38514 -recomp_scc([Ggoal|Scc],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-recomp_scc1168,38514 -update_mins(Ggoal,Dep,Sign,Tab0,Tab,Gdfn,Gdep) :-update_mins1179,38901 -update_mins(Ggoal,Dep,Sign,Tab0,Tab,Gdfn,Gdep) :-update_mins1179,38901 -update_mins(Ggoal,Dep,Sign,Tab0,Tab,Gdfn,Gdep) :-update_mins1179,38901 -update_lookup_mins(Ggoal,Node,Ngoal,Sign,Tab0,Tab,Dep0,Dep) :-update_lookup_mins1190,39384 -update_lookup_mins(Ggoal,Node,Ngoal,Sign,Tab0,Tab,Dep0,Dep) :-update_lookup_mins1190,39384 -update_lookup_mins(Ggoal,Node,Ngoal,Sign,Tab0,Tab,Dep0,Dep) :-update_lookup_mins1190,39384 -update_solution_mins(Ggoal,Ngoal,Sign,Tab0,Tab,Ndep,Dep0,Dep) :-update_solution_mins1207,40043 -update_solution_mins(Ggoal,Ngoal,Sign,Tab0,Tab,Ndep,Dep0,Dep) :-update_solution_mins1207,40043 -update_solution_mins(Ggoal,Ngoal,Sign,Tab0,Tab,Ndep,Dep0,Dep) :-update_solution_mins1207,40043 -compute_mins(Gpmin-Gnmin,Npmin-Nnmin,Sign,Newpmin-Newnmin) :-compute_mins1220,40445 -compute_mins(Gpmin-Gnmin,Npmin-Nnmin,Sign,Newpmin-Newnmin) :-compute_mins1220,40445 -compute_mins(Gpmin-Gnmin,Npmin-Nnmin,Sign,Newpmin-Newnmin) :-compute_mins1220,40445 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1230,40723 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1230,40723 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1230,40723 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1230,40723 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1230,40723 -ent_to_nodes(e(Nodes,_,_,_,_,_,_),Nodes).ent_to_nodes1257,41665 -ent_to_nodes(e(Nodes,_,_,_,_,_,_),Nodes).ent_to_nodes1257,41665 -ent_to_anegs(e(_,ANegs,_,_,_,_,_),ANegs).ent_to_anegs1258,41707 -ent_to_anegs(e(_,ANegs,_,_,_,_,_),ANegs).ent_to_anegs1258,41707 -ent_to_anss(e(_,_,Anss,_,_,_,_),Anss).ent_to_anss1259,41749 -ent_to_anss(e(_,_,Anss,_,_,_,_),Anss).ent_to_anss1259,41749 -ent_to_delay(e(_,_,_,Delay,_,_,_),Delay).ent_to_delay1260,41788 -ent_to_delay(e(_,_,_,Delay,_,_,_),Delay).ent_to_delay1260,41788 -ent_to_comp(e(_,_,_,_,Comp,_,_),Comp).ent_to_comp1261,41830 -ent_to_comp(e(_,_,_,_,Comp,_,_),Comp).ent_to_comp1261,41830 -ent_to_dfn(e(_,_,_,_,_,Dfn,_),Dfn).ent_to_dfn1262,41869 -ent_to_dfn(e(_,_,_,_,_,Dfn,_),Dfn).ent_to_dfn1262,41869 -ent_to_slist(e(_,_,_,_,_,_,Slist),Slist).ent_to_slist1263,41905 -ent_to_slist(e(_,_,_,_,_,_,Slist),Slist).ent_to_slist1263,41905 -get_and_reset_negs(Tab0,Ggoal,ANegs,Tab) :-get_and_reset_negs1265,41948 -get_and_reset_negs(Tab0,Ggoal,ANegs,Tab) :-get_and_reset_negs1265,41948 -get_and_reset_negs(Tab0,Ggoal,ANegs,Tab) :-get_and_reset_negs1265,41948 -add_tab_ent(Ggoal,Ent,Tab0,Tab) :- add_tab_ent1272,42193 -add_tab_ent(Ggoal,Ent,Tab0,Tab) :- add_tab_ent1272,42193 -add_tab_ent(Ggoal,Ent,Tab0,Tab) :- add_tab_ent1272,42193 -new_init_call(Call,Ggoal,Ent,S0,S,Dfn0,Dfn) :-new_init_call1280,42368 -new_init_call(Call,Ggoal,Ent,S0,S,Dfn0,Dfn) :-new_init_call1280,42368 -new_init_call(Call,Ggoal,Ent,S0,S,Dfn0,Dfn) :-new_init_call1280,42368 -new_aneg_call(Ngoal,Neg,Ent,S0,S,Dfn0,Dfn) :-new_aneg_call1289,42627 -new_aneg_call(Ngoal,Neg,Ent,S0,S,Dfn0,Dfn) :-new_aneg_call1289,42627 -new_aneg_call(Ngoal,Neg,Ent,S0,S,Dfn0,Dfn) :-new_aneg_call1289,42627 -new_pos_call(Ngoal,Node,Ent,S0,S,Dfn0,Dfn) :-new_pos_call1296,42824 -new_pos_call(Ngoal,Node,Ent,S0,S,Dfn0,Dfn) :-new_pos_call1296,42824 -new_pos_call(Ngoal,Node,Ent,S0,S,Dfn0,Dfn) :-new_pos_call1296,42824 -aneg_to_newent(Ent0,Ent,ANeg) :-aneg_to_newent1304,43033 -aneg_to_newent(Ent0,Ent,ANeg) :-aneg_to_newent1304,43033 -aneg_to_newent(Ent0,Ent,ANeg) :-aneg_to_newent1304,43033 -pos_to_newent(Ent0,Ent,Node) :-pos_to_newent1308,43179 -pos_to_newent(Ent0,Ent,Node) :-pos_to_newent1308,43179 -pos_to_newent(Ent0,Ent,Node) :-pos_to_newent1308,43179 -add_link_to_ent(Tab0,Ggoal,Link,Tab) :-add_link_to_ent1312,43324 -add_link_to_ent(Tab0,Ggoal,Link,Tab) :-add_link_to_ent1312,43324 -add_link_to_ent(Tab0,Ggoal,Link,Tab) :-add_link_to_ent1312,43324 -link_to_newent(Ent0,Ent,Link) :-link_to_newent1316,43439 -link_to_newent(Ent0,Ent,Link) :-link_to_newent1316,43439 -link_to_newent(Ent0,Ent,Link) :-link_to_newent1316,43439 -ansstree_to_list([],L,L).ansstree_to_list1321,43625 -ansstree_to_list([],L,L).ansstree_to_list1321,43625 -ansstree_to_list(l(_GH,Lanss),L0,L) :-ansstree_to_list1322,43651 -ansstree_to_list(l(_GH,Lanss),L0,L) :-ansstree_to_list1322,43651 -ansstree_to_list(l(_GH,Lanss),L0,L) :-ansstree_to_list1322,43651 -ansstree_to_list(n2(T1,_M,T2),L0,L) :-ansstree_to_list1324,43714 -ansstree_to_list(n2(T1,_M,T2),L0,L) :-ansstree_to_list1324,43714 -ansstree_to_list(n2(T1,_M,T2),L0,L) :-ansstree_to_list1324,43714 -ansstree_to_list(n3(T1,_M2,T2,_M3,T3),L0,L) :-ansstree_to_list1327,43816 -ansstree_to_list(n3(T1,_M2,T2,_M3,T3),L0,L) :-ansstree_to_list1327,43816 -ansstree_to_list(n3(T1,_M2,T2,_M3,T3),L0,L) :-ansstree_to_list1327,43816 -attach([],L,L).attach1332,43959 -attach([],L,L).attach1332,43959 -attach([d(H,B)|R],[X|L0],L) :-attach1333,43975 -attach([d(H,B)|R],[X|L0],L) :-attach1333,43975 -attach([d(H,B)|R],[X|L0],L) :-attach1333,43975 -member_anss(Ans,Anss) :-member_anss1340,44082 -member_anss(Ans,Anss) :-member_anss1340,44082 -member_anss(Ans,Anss) :-member_anss1340,44082 -member_anss_1(l(_,Lanss),Ans) :-member_anss_11343,44134 -member_anss_1(l(_,Lanss),Ans) :-member_anss_11343,44134 -member_anss_1(l(_,Lanss),Ans) :-member_anss_11343,44134 -member_anss_1(n2(T1,_,T2),Ans) :-member_anss_11345,44187 -member_anss_1(n2(T1,_,T2),Ans) :-member_anss_11345,44187 -member_anss_1(n2(T1,_,T2),Ans) :-member_anss_11345,44187 -member_anss_1(n3(T1,_,T2,_,T3),Ans) :-member_anss_11349,44289 -member_anss_1(n3(T1,_,T2,_,T3),Ans) :-member_anss_11349,44289 -member_anss_1(n3(T1,_,T2,_,T3),Ans) :-member_anss_11349,44289 -failed([]).failed1356,44463 -failed([]).failed1356,44463 -failed(l(_,[])).failed1357,44475 -failed(l(_,[])).failed1357,44475 -succeeded(l(_,Lanss)) :-succeeded1360,44555 -succeeded(l(_,Lanss)) :-succeeded1360,44555 -succeeded(l(_,Lanss)) :-succeeded1360,44555 -add_ans(Tab0,Ggoal,Ans,Nodes,Mode,Tab) :-add_ans1373,44877 -add_ans(Tab0,Ggoal,Ans,Nodes,Mode,Tab) :-add_ans1373,44877 -add_ans(Tab0,Ggoal,Ans,Nodes,Mode,Tab) :-add_ans1373,44877 -add_ans(Tab0,Ggoal,Ans,Nodes,Mode,Tab) :-add_ans1381,45045 -add_ans(Tab0,Ggoal,Ans,Nodes,Mode,Tab) :-add_ans1381,45045 -add_ans(Tab0,Ggoal,Ans,Nodes,Mode,Tab) :-add_ans1381,45045 -new_ans_ent1(Ent0,Ent,Ans,Nodes,Mode) :-new_ans_ent11390,45299 -new_ans_ent1(Ent0,Ent,Ans,Nodes,Mode) :-new_ans_ent11390,45299 -new_ans_ent1(Ent0,Ent,Ans,Nodes,Mode) :-new_ans_ent11390,45299 -new_ans_ent(Ent0,Ent,Ans,Nodes,Mode) :-new_ans_ent1404,45651 -new_ans_ent(Ent0,Ent,Ans,Nodes,Mode) :-new_ans_ent1404,45651 -new_ans_ent(Ent0,Ent,Ans,Nodes,Mode) :-new_ans_ent1404,45651 -returned_ans(d(H,Tv),Ggoal,d(H,NewTv)) :-returned_ans1429,46304 -returned_ans(d(H,Tv),Ggoal,d(H,NewTv)) :-returned_ans1429,46304 -returned_ans(d(H,Tv),Ggoal,d(H,NewTv)) :-returned_ans1429,46304 -reduce_ans(Anss0,Anss,Tab) :-reduce_ans1437,46504 -reduce_ans(Anss0,Anss,Tab) :-reduce_ans1437,46504 -reduce_ans(Anss0,Anss,Tab) :-reduce_ans1437,46504 -reduce_completed_ans([],[],_Tab).reduce_completed_ans1441,46630 -reduce_completed_ans([],[],_Tab).reduce_completed_ans1441,46630 -reduce_completed_ans(l(GH,Lanss0),l(GH,Lanss),Tab) :-reduce_completed_ans1442,46664 -reduce_completed_ans(l(GH,Lanss0),l(GH,Lanss),Tab) :-reduce_completed_ans1442,46664 -reduce_completed_ans(l(GH,Lanss0),l(GH,Lanss),Tab) :-reduce_completed_ans1442,46664 -reduce_completed_ans(n2(T1,M,T2),n2(NT1,M,NT2),Tab) :-reduce_completed_ans1444,46769 -reduce_completed_ans(n2(T1,M,T2),n2(NT1,M,NT2),Tab) :-reduce_completed_ans1444,46769 -reduce_completed_ans(n2(T1,M,T2),n2(NT1,M,NT2),Tab) :-reduce_completed_ans1444,46769 -reduce_completed_ans(n3(T1,M2,T2,M3,T3),n3(NT1,M2,NT2,M3,NT3),Tab) :-reduce_completed_ans1447,46900 -reduce_completed_ans(n3(T1,M2,T2,M3,T3),n3(NT1,M2,NT2,M3,NT3),Tab) :-reduce_completed_ans1447,46900 -reduce_completed_ans(n3(T1,M2,T2,M3,T3),n3(NT1,M2,NT2,M3,NT3),Tab) :-reduce_completed_ans1447,46900 -reduce_completed_anslist([],Lanss,Lanss,_Tab).reduce_completed_anslist1452,47085 -reduce_completed_anslist([],Lanss,Lanss,_Tab).reduce_completed_anslist1452,47085 -reduce_completed_anslist([d(G,D0)|List],Lanss0,Lanss,Tab) :-reduce_completed_anslist1453,47132 -reduce_completed_anslist([d(G,D0)|List],Lanss0,Lanss,Tab) :-reduce_completed_anslist1453,47132 -reduce_completed_anslist([d(G,D0)|List],Lanss0,Lanss,Tab) :-reduce_completed_anslist1453,47132 -filter_delays([],Fds,Fds,_DC,_V,_Tab).filter_delays1475,47930 -filter_delays([],Fds,Fds,_DC,_V,_Tab).filter_delays1475,47930 -filter_delays([Lit|Ds],Fds0,Fds,DC,V,Tab) :-filter_delays1476,47969 -filter_delays([Lit|Ds],Fds0,Fds,DC,V,Tab) :-filter_delays1476,47969 -filter_delays([Lit|Ds],Fds0,Fds,DC,V,Tab) :-filter_delays1476,47969 -lit_to_call(\+G,G).lit_to_call1498,48513 -lit_to_call(\+G,G).lit_to_call1498,48513 -lit_to_call(Gcall-_,Gcall).lit_to_call1499,48533 -lit_to_call(Gcall-_,Gcall).lit_to_call1499,48533 -not_subsumed_ans(Ans,Lanss0) :-not_subsumed_ans1501,48562 -not_subsumed_ans(Ans,Lanss0) :-not_subsumed_ans1501,48562 -not_subsumed_ans(Ans,Lanss0) :-not_subsumed_ans1501,48562 -subsumed_ans(Tv,List1,List2) :- subsumed_ans1508,48722 -subsumed_ans(Tv,List1,List2) :- subsumed_ans1508,48722 -subsumed_ans(Tv,List1,List2) :- subsumed_ans1508,48722 -subsumed_ans1(d(T,V),List) :-subsumed_ans11516,48923 -subsumed_ans1(d(T,V),List) :-subsumed_ans11516,48923 -subsumed_ans1(d(T,V),List) :-subsumed_ans11516,48923 -variantchk(G,[G1|_]) :- variant(G,G1), !.variantchk1526,49189 -variantchk(G,[G1|_]) :- variant(G,G1), !.variantchk1526,49189 -variantchk(G,[G1|_]) :- variant(G,G1), !.variantchk1526,49189 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1527,49231 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1527,49231 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1527,49231 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1527,49231 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1527,49231 -variant(A, B) :-variant1529,49272 -variant(A, B) :-variant1529,49272 -variant(A, B) :-variant1529,49272 -subsumes_chk(General, Specific) :-subsumes_chk1536,49399 -subsumes_chk(General, Specific) :-subsumes_chk1536,49399 -subsumes_chk(General, Specific) :-subsumes_chk1536,49399 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1541,49531 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1541,49531 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1541,49531 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1541,49531 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1541,49531 -subset([],_).subset1543,49603 -subset([],_).subset1543,49603 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1544,49617 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1544,49617 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1544,49617 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1544,49617 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1544,49617 -reverse([],R,R).reverse1546,49671 -reverse([],R,R).reverse1546,49671 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1547,49688 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1547,49688 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1547,49688 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1547,49688 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1547,49688 -display_stack(Stack,Tab) :-display_stack1552,49886 -display_stack(Stack,Tab) :-display_stack1552,49886 -display_stack(Stack,Tab) :-display_stack1552,49886 -display_st([],_Tab).display_st1555,49972 -display_st([],_Tab).display_st1555,49972 -display_st([Ggoal|Scc],Tab) :-display_st1556,49993 -display_st([Ggoal|Scc],Tab) :-display_st1556,49993 -display_st([Ggoal|Scc],Tab) :-display_st1556,49993 -display_dlist([]) :- nl,nl.display_dlist1571,50281 -display_dlist([]) :- nl,nl.display_dlist1571,50281 -display_dlist([]) :- nl,nl.display_dlist1571,50281 -display_dlist([Ngoal-_|Dlist]) :-display_dlist1572,50309 -display_dlist([Ngoal-_|Dlist]) :-display_dlist1572,50309 -display_dlist([Ngoal-_|Dlist]) :-display_dlist1572,50309 -display_table(Tab) :-display_table1577,50410 -display_table(Tab) :-display_table1577,50410 -display_table(Tab) :-display_table1577,50410 -display_final(Tab) :-display_final1582,50484 -display_final(Tab) :-display_final1582,50484 -display_final(Tab) :-display_final1582,50484 -display_final1([]).display_final11586,50578 -display_final1([]).display_final11586,50578 -display_final1(l(_,e(_,_,Anss,_,_,_,_))) :-display_final11587,50598 -display_final1(l(_,e(_,_,Anss,_,_,_,_))) :-display_final11587,50598 -display_final1(l(_,e(_,_,Anss,_,_,_,_))) :-display_final11587,50598 -display_final1(n2(X,_,Y)) :- display_final11589,50664 -display_final1(n2(X,_,Y)) :- display_final11589,50664 -display_final1(n2(X,_,Y)) :- display_final11589,50664 -display_final1(n3(X,_,Y,_,Z)) :- display_final11592,50740 -display_final1(n3(X,_,Y,_,Z)) :- display_final11592,50740 -display_final1(n3(X,_,Y,_,Z)) :- display_final11592,50740 -write_tab([]).write_tab1597,50844 -write_tab([]).write_tab1597,50844 -write_tab(l(G,e(Nodes,ANegs,Anss,_,Comp,Dfn:_,_))) :-write_tab1598,50859 -write_tab(l(G,e(Nodes,ANegs,Anss,_,Comp,Dfn:_,_))) :-write_tab1598,50859 -write_tab(l(G,e(Nodes,ANegs,Anss,_,Comp,Dfn:_,_))) :-write_tab1598,50859 -write_tab(n2(X,_,Y)) :- write_tab1625,51388 -write_tab(n2(X,_,Y)) :- write_tab1625,51388 -write_tab(n2(X,_,Y)) :- write_tab1625,51388 -write_tab(n3(X,_,Y,_,Z)) :- write_tab1628,51449 -write_tab(n3(X,_,Y,_,Z)) :- write_tab1628,51449 -write_tab(n3(X,_,Y,_,Z)) :- write_tab1628,51449 -write_anss([]).write_anss1633,51533 -write_anss([]).write_anss1633,51533 -write_anss(l(_,Lanss)) :-write_anss1634,51549 -write_anss(l(_,Lanss)) :-write_anss1634,51549 -write_anss(l(_,Lanss)) :-write_anss1634,51549 -write_anss(n2(T1,_,T2)) :-write_anss1636,51603 -write_anss(n2(T1,_,T2)) :-write_anss1636,51603 -write_anss(n2(T1,_,T2)) :-write_anss1636,51603 -write_anss(n3(T1,_,T2,_,T3)) :-write_anss1639,51670 -write_anss(n3(T1,_,T2,_,T3)) :-write_anss1639,51670 -write_anss(n3(T1,_,T2,_,T3)) :-write_anss1639,51670 -write_anss_list([]).write_anss_list1644,51763 -write_anss_list([]).write_anss_list1644,51763 -write_anss_list([Ans|Anss]) :-write_anss_list1645,51784 -write_anss_list([Ans|Anss]) :-write_anss_list1645,51784 -write_anss_list([Ans|Anss]) :-write_anss_list1645,51784 -write_ans(d(H,Ds)) :-write_ans1649,51863 -write_ans(d(H,Ds)) :-write_ans1649,51863 -write_ans(d(H,Ds)) :-write_ans1649,51863 -write_delay([],_).write_delay1671,52275 -write_delay([],_).write_delay1671,52275 -write_delay([D|Ds1],Sep) :-write_delay1672,52294 -write_delay([D|Ds1],Sep) :-write_delay1672,52294 -write_delay([D|Ds1],Sep) :-write_delay1672,52294 -addkey([],X,V,l(X,V)):-!.addkey1701,53164 -addkey([],X,V,l(X,V)):-!.addkey1701,53164 -addkey([],X,V,l(X,V)):-!.addkey1701,53164 -addkey(Tree,X,V,Tree1) :-addkey1702,53190 -addkey(Tree,X,V,Tree1) :-addkey1702,53190 -addkey(Tree,X,V,Tree1) :-addkey1702,53190 -find(l(X,V),Xs,V) :- X == Xs.find1707,53261 -find(l(X,V),Xs,V) :- X == Xs.find1707,53261 -find(l(X,V),Xs,V) :- X == Xs.find1707,53261 -find(n2(T1,M,T2),X,V) :-find1708,53291 -find(n2(T1,M,T2),X,V) :-find1708,53291 -find(n2(T1,M,T2),X,V) :-find1708,53291 -find(n3(T1,M2,T2,M3,T3),X,V) :-find1712,53361 -find(n3(T1,M2,T2,M3,T3),X,V) :-find1712,53361 -find(n3(T1,M2,T2,M3,T3),X,V) :-find1712,53361 -updatevs(Tab0,X,Ov,Nv,Tab) :-updatevs1724,53577 -updatevs(Tab0,X,Ov,Nv,Tab) :-updatevs1724,53577 -updatevs(Tab0,X,Ov,Nv,Tab) :-updatevs1724,53577 -updatevs(Tab,X,Ov,Nv) :-updatevs1728,53646 -updatevs(Tab,X,Ov,Nv) :-updatevs1728,53646 -updatevs(Tab,X,Ov,Nv) :-updatevs1728,53646 -updatevs(l(X,Ov),Xs,Ov,Nv,l(X,Nv)) :- X == Xs.updatevs1747,54022 -updatevs(l(X,Ov),Xs,Ov,Nv,l(X,Nv)) :- X == Xs.updatevs1747,54022 -updatevs(l(X,Ov),Xs,Ov,Nv,l(X,Nv)) :- X == Xs.updatevs1747,54022 -updatevs(n2(T1,M,T2),X,Ov,Nv,n2(NT1,M,NT2)) :-updatevs1748,54069 -updatevs(n2(T1,M,T2),X,Ov,Nv,n2(NT1,M,NT2)) :-updatevs1748,54069 -updatevs(n2(T1,M,T2),X,Ov,Nv,n2(NT1,M,NT2)) :-updatevs1748,54069 -updatevs(n3(T1,M2,T2,M3,T3),X,Ov,Nv,n3(NT1,M2,NT2,M3,NT3)) :-updatevs1752,54201 -updatevs(n3(T1,M2,T2,M3,T3),X,Ov,Nv,n3(NT1,M2,NT2,M3,NT3)) :-updatevs1752,54201 -updatevs(n3(T1,M2,T2,M3,T3),X,Ov,Nv,n3(NT1,M2,NT2,M3,NT3)) :-updatevs1752,54201 -ins2(n2(T1,M,T2),X,V,Tree) :- ins21760,54432 -ins2(n2(T1,M,T2),X,V,Tree) :- ins21760,54432 -ins2(n2(T1,M,T2),X,V,Tree) :- ins21760,54432 -ins2(n3(T1,M2,T2,M3,T3),X,V,Tree) :- ins21766,54570 -ins2(n3(T1,M2,T2,M3,T3),X,V,Tree) :- ins21766,54570 -ins2(n3(T1,M2,T2,M3,T3),X,V,Tree) :- ins21766,54570 -ins2(l(A,V),X,Vn,Tree) :-ins21776,54808 -ins2(l(A,V),X,Vn,Tree) :-ins21776,54808 -ins2(l(A,V),X,Vn,Tree) :-ins21776,54808 -cmb0(t(Tree),Tree).cmb01784,54937 -cmb0(t(Tree),Tree).cmb01784,54937 -cmb0(t(T1,M,T2),n2(T1,M,T2)).cmb01785,54957 -cmb0(t(T1,M,T2),n2(T1,M,T2)).cmb01785,54957 -cmb1(t(NT1),M,T2,t(n2(NT1,M,T2))).cmb11787,54988 -cmb1(t(NT1),M,T2,t(n2(NT1,M,T2))).cmb11787,54988 -cmb1(t(NT1a,Mb,NT1b),M,T2,t(n3(NT1a,Mb,NT1b,M,T2))).cmb11788,55023 -cmb1(t(NT1a,Mb,NT1b),M,T2,t(n3(NT1a,Mb,NT1b,M,T2))).cmb11788,55023 -cmb2(t(NT2),T1,M,t(n2(T1,M,NT2))).cmb21790,55077 -cmb2(t(NT2),T1,M,t(n2(T1,M,NT2))).cmb21790,55077 -cmb2(t(NT2a,Mb,NT2b),T1,M,t(n3(T1,M,NT2a,Mb,NT2b))).cmb21791,55112 -cmb2(t(NT2a,Mb,NT2b),T1,M,t(n3(T1,M,NT2a,Mb,NT2b))).cmb21791,55112 -cmb3(t(NT1),M2,T2,M3,T3,t(n3(NT1,M2,T2,M3,T3))).cmb31793,55166 -cmb3(t(NT1),M2,T2,M3,T3,t(n3(NT1,M2,T2,M3,T3))).cmb31793,55166 -cmb3(t(NT1a,Mb,NT1b),M2,T2,M3,T3,t(n2(NT1a,Mb,NT1b),M2,n2(T2,M3,T3))).cmb31794,55215 -cmb3(t(NT1a,Mb,NT1b),M2,T2,M3,T3,t(n2(NT1a,Mb,NT1b),M2,n2(T2,M3,T3))).cmb31794,55215 -cmb4(t(NT3),T1,M2,T2,M3,t(n3(T1,M2,T2,M3,NT3))).cmb41796,55287 -cmb4(t(NT3),T1,M2,T2,M3,t(n3(T1,M2,T2,M3,NT3))).cmb41796,55287 -cmb4(t(NT3a,Mb,NT3b),T1,M2,T2,M3,t(n2(T1,M2,T2),M3,n2(NT3a,Mb,NT3b))).cmb41797,55336 -cmb4(t(NT3a,Mb,NT3b),T1,M2,T2,M3,t(n2(T1,M2,T2),M3,n2(NT3a,Mb,NT3b))).cmb41797,55336 -cmb5(t(NT2),T1,M2,M3,T3,t(n3(T1,M2,NT2,M3,T3))).cmb51799,55408 -cmb5(t(NT2),T1,M2,M3,T3,t(n3(T1,M2,NT2,M3,T3))).cmb51799,55408 -cmb5(t(NT2a,Mb,NT2b),T1,M2,M3,T3,t(n2(T1,M2,NT2a),Mb,n2(NT2b,M3,T3))).cmb51800,55457 -cmb5(t(NT2a,Mb,NT2b),T1,M2,M3,T3,t(n2(T1,M2,NT2a),Mb,n2(NT2b,M3,T3))).cmb51800,55457 -setting(epsilon_parsing,0.00001).setting1809,55660 -setting(epsilon_parsing,0.00001).setting1809,55660 -setting(save_dot,false).setting1810,55694 -setting(save_dot,false).setting1810,55694 -setting(ground_body,true).setting1811,55719 -setting(ground_body,true).setting1811,55719 -find_rule(H,(R,S,N),Body,LH):-find_rule1817,55975 -find_rule(H,(R,S,N),Body,LH):-find_rule1817,55975 -find_rule(H,(R,S,N),Body,LH):-find_rule1817,55975 -find_rule(H,(R,S,Number),Body,C):-find_rule1823,56092 -find_rule(H,(R,S,Number),Body,C):-find_rule1823,56092 -find_rule(H,(R,S,Number),Body,C):-find_rule1823,56092 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head1828,56234 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head1828,56234 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head1830,56291 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head1830,56291 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head1830,56291 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head1834,56441 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head1834,56441 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head1834,56441 -not_different(N,N,S,S).not_different1839,56573 -not_different(N,N,S,S).not_different1839,56573 -not_different(_N,_N1,S,S1):-not_different1841,56598 -not_different(_N,_N1,S,S1):-not_different1841,56598 -not_different(_N,_N1,S,S1):-not_different1841,56598 -not_different(N,N1,S,S1):-not_different1844,56639 -not_different(N,N1,S,S1):-not_different1844,56639 -not_different(N,N1,S,S1):-not_different1844,56639 -not_different(N,N,S,S).not_different1848,56690 -not_different(N,N,S,S).not_different1848,56690 -member_head(H,[(H:_P)|_T],N,N).member_head1851,56716 -member_head(H,[(H:_P)|_T],N,N).member_head1851,56716 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head1853,56749 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head1853,56749 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head1853,56749 -rem_dup_lists([],L,L).rem_dup_lists1859,56941 -rem_dup_lists([],L,L).rem_dup_lists1859,56941 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1861,56965 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1861,56965 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1861,56965 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1865,57063 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1865,57063 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1865,57063 -member_subset(E,[H|_T]):-member_subset1868,57120 -member_subset(E,[H|_T]):-member_subset1868,57120 -member_subset(E,[H|_T]):-member_subset1868,57120 -member_subset(E,[_H|T]):-member_subset1871,57166 -member_subset(E,[_H|T]):-member_subset1871,57166 -member_subset(E,[_H|T]):-member_subset1871,57166 -rem_dup_lists_tab([],L,L).rem_dup_lists_tab1875,57215 -rem_dup_lists_tab([],L,L).rem_dup_lists_tab1875,57215 -rem_dup_lists_tab([(H,_Tab)|T],L0,L):-rem_dup_lists_tab1877,57243 -rem_dup_lists_tab([(H,_Tab)|T],L0,L):-rem_dup_lists_tab1877,57243 -rem_dup_lists_tab([(H,_Tab)|T],L0,L):-rem_dup_lists_tab1877,57243 -rem_dup_lists_tab([(H,Tab)|T],L0,L):-rem_dup_lists_tab1881,57364 -rem_dup_lists_tab([(H,Tab)|T],L0,L):-rem_dup_lists_tab1881,57364 -rem_dup_lists_tab([(H,Tab)|T],L0,L):-rem_dup_lists_tab1881,57364 -member_subset_tab(E,[(H,_Tab)|_T]):-member_subset_tab1885,57442 -member_subset_tab(E,[(H,_Tab)|_T]):-member_subset_tab1885,57442 -member_subset_tab(E,[(H,_Tab)|_T]):-member_subset_tab1885,57442 -member_subset_tab(E,[_H|T]):-member_subset_tab1888,57499 -member_subset_tab(E,[_H|T]):-member_subset_tab1888,57499 -member_subset_tab(E,[_H|T]):-member_subset_tab1888,57499 -build_formula([],[],Var,Var).build_formula1901,58005 -build_formula([],[],Var,Var).build_formula1901,58005 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula1903,58036 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula1903,58036 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula1903,58036 -build_term([],[],Var,Var).build_term1907,58145 -build_term([],[],Var,Var).build_term1907,58145 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term1909,58173 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term1909,58173 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term1909,58173 -nth0_eq(N,N,[H|_T],El):-nth0_eq1922,58558 -nth0_eq(N,N,[H|_T],El):-nth0_eq1922,58558 -nth0_eq(N,N,[H|_T],El):-nth0_eq1922,58558 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq1925,58594 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq1925,58594 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq1925,58594 -var2numbers([],_N,[]).var2numbers1932,58834 -var2numbers([],_N,[]).var2numbers1932,58834 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers1934,58858 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers1934,58858 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers1934,58858 -find_probs(R,S,Probs):-find_probs1940,58998 -find_probs(R,S,Probs):-find_probs1940,58998 -find_probs(R,S,Probs):-find_probs1940,58998 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs1944,59074 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs1944,59074 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs1944,59074 -get_probs([],[]).get_probs1948,59165 -get_probs([],[]).get_probs1948,59165 -get_probs([_H:P|T],[P1|T1]):-get_probs1950,59184 -get_probs([_H:P|T],[P1|T1]):-get_probs1950,59184 -get_probs([_H:P|T],[P1|T1]):-get_probs1950,59184 -list_el(0,_P,[]):-!.list_el1954,59243 -list_el(0,_P,[]):-!.list_el1954,59243 -list_el(0,_P,[]):-!.list_el1954,59243 -list_el(N,P,[P|T]):-list_el1956,59265 -list_el(N,P,[P|T]):-list_el1956,59265 -list_el(N,P,[P|T]):-list_el1956,59265 -p(File):-p1964,59508 -p(File):-p1964,59508 -p(File):-p1964,59508 -parse(File):-parse1967,59533 -parse(File):-parse1967,59533 -parse(File):-parse1967,59533 -process_clauses([(end_of_file,[])],_N).process_clauses1978,59774 -process_clauses([(end_of_file,[])],_N).process_clauses1978,59774 -process_clauses([((H:-B),V)|T],N):-process_clauses1980,59815 -process_clauses([((H:-B),V)|T],N):-process_clauses1980,59815 -process_clauses([((H:-B),V)|T],N):-process_clauses1980,59815 -process_clauses([((H:-B),V)|T],N):-process_clauses1991,60109 -process_clauses([((H:-B),V)|T],N):-process_clauses1991,60109 -process_clauses([((H:-B),V)|T],N):-process_clauses1991,60109 -process_clauses([((H:-B),V)|T],N):-process_clauses2003,60339 -process_clauses([((H:-B),V)|T],N):-process_clauses2003,60339 -process_clauses([((H:-B),V)|T],N):-process_clauses2003,60339 -process_clauses([((H:-B),V)|T],N):-!,process_clauses2015,60570 -process_clauses([((H:-B),V)|T],N):-!,process_clauses2015,60570 -process_clauses([((H:-B),V)|T],N):-!,process_clauses2015,60570 -process_clauses([(H,V)|T],N):-process_clauses2021,60691 -process_clauses([(H,V)|T],N):-process_clauses2021,60691 -process_clauses([(H,V)|T],N):-process_clauses2021,60691 -process_clauses([(H,V)|T],N):-process_clauses2031,60874 -process_clauses([(H,V)|T],N):-process_clauses2031,60874 -process_clauses([(H,V)|T],N):-process_clauses2031,60874 -process_clauses([(H,V)|T],N):-process_clauses2041,61058 -process_clauses([(H,V)|T],N):-process_clauses2041,61058 -process_clauses([(H,V)|T],N):-process_clauses2041,61058 -process_head(HL,NHL):-process_head2049,61280 -process_head(HL,NHL):-process_head2049,61280 -process_head(HL,NHL):-process_head2049,61280 -ground_prob([]).ground_prob2056,61372 -ground_prob([]).ground_prob2056,61372 -ground_prob([_H:PH|T]):-ground_prob2058,61390 -ground_prob([_H:PH|T]):-ground_prob2058,61390 -ground_prob([_H:PH|T]):-ground_prob2058,61390 -process_head_ground([H:PH],P,[H:PH1|Null]):-process_head_ground2062,61446 -process_head_ground([H:PH],P,[H:PH1|Null]):-process_head_ground2062,61446 -process_head_ground([H:PH],P,[H:PH1|Null]):-process_head_ground2062,61446 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground2074,61638 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground2074,61638 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground2074,61638 -process_body([],V,V).process_body2080,61841 -process_body([],V,V).process_body2080,61841 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body2082,61864 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body2082,61864 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body2082,61864 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body2089,62020 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body2089,62020 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body2089,62020 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body2094,62134 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body2094,62134 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body2094,62134 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body2101,62290 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body2101,62290 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body2101,62290 -process_body([_H|T],VIn,VOut):-!,process_body2106,62404 -process_body([_H|T],VIn,VOut):-!,process_body2106,62404 -process_body([_H|T],VIn,VOut):-!,process_body2106,62404 -get_var_list([],[]).get_var_list2109,62466 -get_var_list([],[]).get_var_list2109,62466 -get_var_list([H|T],[H|T1]):-get_var_list2111,62488 -get_var_list([H|T],[H|T1]):-get_var_list2111,62488 -get_var_list([H|T],[H|T1]):-get_var_list2111,62488 -get_var_list([H|T],VarOut):-!,get_var_list2115,62550 -get_var_list([H|T],VarOut):-!,get_var_list2115,62550 -get_var_list([H|T],VarOut):-!,get_var_list2115,62550 -get_var(A,[A]):-get_var2120,62644 -get_var(A,[A]):-get_var2120,62644 -get_var(A,[A]):-get_var2120,62644 -get_var(A,V):-get_var2123,62673 -get_var(A,V):-get_var2123,62673 -get_var(A,V):-get_var2123,62673 -remove_vars([],V,V).remove_vars2127,62728 -remove_vars([],V,V).remove_vars2127,62728 -remove_vars([H|T],VIn,VOut):-remove_vars2129,62750 -remove_vars([H|T],VIn,VOut):-remove_vars2129,62750 -remove_vars([H|T],VIn,VOut):-remove_vars2129,62750 -delete_var(_H,[],[]).delete_var2133,62829 -delete_var(_H,[],[]).delete_var2133,62829 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var2135,62852 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var2135,62852 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var2135,62852 -delete_var(_V,[_H|T],T).delete_var2139,62925 -delete_var(_V,[_H|T],T).delete_var2139,62925 -read_clauses(S,Clauses):-read_clauses2141,62951 -read_clauses(S,Clauses):-read_clauses2141,62951 -read_clauses(S,Clauses):-read_clauses2141,62951 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body2148,63090 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body2148,63090 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body2148,63090 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body2157,63242 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body2157,63242 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body2157,63242 -extract_vars_cl(end_of_file,[]).extract_vars_cl2166,63419 -extract_vars_cl(end_of_file,[]).extract_vars_cl2166,63419 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl2168,63453 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl2168,63453 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl2168,63453 -pair(_VN,[],[]).pair2177,63568 -pair(_VN,[],[]).pair2177,63568 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair2179,63586 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair2179,63586 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair2179,63586 -extract_vars(Var,V0,V):-extract_vars2182,63643 -extract_vars(Var,V0,V):-extract_vars2182,63643 -extract_vars(Var,V0,V):-extract_vars2182,63643 -extract_vars(Term,V0,V):-extract_vars2190,63740 -extract_vars(Term,V0,V):-extract_vars2190,63740 -extract_vars(Term,V0,V):-extract_vars2190,63740 -extract_vars_list([],V,V).extract_vars_list2194,63817 -extract_vars_list([],V,V).extract_vars_list2194,63817 -extract_vars_list([Term|T],V0,V):-extract_vars_list2196,63845 -extract_vars_list([Term|T],V0,V):-extract_vars_list2196,63845 -extract_vars_list([Term|T],V0,V):-extract_vars_list2196,63845 -listN(N,N,[]):-!.listN2201,63938 -listN(N,N,[]):-!.listN2201,63938 -listN(N,N,[]):-!.listN2201,63938 -listN(NIn,N,[NIn|T]):-listN2203,63957 -listN(NIn,N,[NIn|T]):-listN2203,63957 -listN(NIn,N,[NIn|T]):-listN2203,63957 -list2or([X],X):-list2or2209,64116 -list2or([X],X):-list2or2209,64116 -list2or([X],X):-list2or2209,64116 -list2or([H|T],(H ; Ta)):-!,list2or2212,64148 -list2or([H|T],(H ; Ta)):-!,list2or2212,64148 -list2or([H|T],(H ; Ta)):-!,list2or2212,64148 -list2and([X],X):-list2and2215,64193 -list2and([X],X):-list2and2215,64193 -list2and([X],X):-list2and2215,64193 -list2and([H|T],(H,Ta)):-!,list2and2218,64225 -list2and([H|T],(H,Ta)):-!,list2and2218,64225 -list2and([H|T],(H,Ta)):-!,list2and2218,64225 -member_eq(A,[H|_T]):-member_eq2221,64270 -member_eq(A,[H|_T]):-member_eq2221,64270 -member_eq(A,[H|_T]):-member_eq2221,64270 -member_eq(A,[_H|T]):-member_eq2224,64301 -member_eq(A,[_H|T]):-member_eq2224,64301 -member_eq(A,[_H|T]):-member_eq2224,64301 -subset_my([],_).subset_my2227,64341 -subset_my([],_).subset_my2227,64341 -subset_my([H|T],L):-subset_my2229,64359 -subset_my([H|T],L):-subset_my2229,64359 -subset_my([H|T],L):-subset_my2229,64359 -remove_duplicates_eq([],[]).remove_duplicates_eq2233,64415 -remove_duplicates_eq([],[]).remove_duplicates_eq2233,64415 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq2235,64445 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq2235,64445 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq2235,64445 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq2239,64527 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq2239,64527 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq2239,64527 -builtin(_A is _B).builtin2242,64594 -builtin(_A is _B).builtin2242,64594 -builtin(_A > _B).builtin2243,64613 -builtin(_A > _B).builtin2243,64613 -builtin(_A < _B).builtin2244,64631 -builtin(_A < _B).builtin2244,64631 -builtin(_A >= _B).builtin2245,64649 -builtin(_A >= _B).builtin2245,64649 -builtin(_A =< _B).builtin2246,64668 -builtin(_A =< _B).builtin2246,64668 -builtin(_A =:= _B).builtin2247,64687 -builtin(_A =:= _B).builtin2247,64687 -builtin(_A =\= _B).builtin2248,64707 -builtin(_A =\= _B).builtin2248,64707 -builtin(true).builtin2249,64727 -builtin(true).builtin2249,64727 -builtin(false).builtin2250,64742 -builtin(false).builtin2250,64742 -builtin(_A = _B).builtin2251,64758 -builtin(_A = _B).builtin2251,64758 -builtin(_A==_B).builtin2252,64776 -builtin(_A==_B).builtin2252,64776 -builtin(_A\=_B).builtin2253,64793 -builtin(_A\=_B).builtin2253,64793 -builtin(_A\==_B).builtin2254,64810 -builtin(_A\==_B).builtin2254,64810 -builtin(length(_L,_N)).builtin2255,64828 -builtin(length(_L,_N)).builtin2255,64828 -builtin(member(_El,_L)).builtin2256,64852 -builtin(member(_El,_L)).builtin2256,64852 -builtin(average(_L,_Av)).builtin2257,64877 -builtin(average(_L,_Av)).builtin2257,64877 -builtin(max_list(_L,_Max)).builtin2258,64903 -builtin(max_list(_L,_Max)).builtin2258,64903 -builtin(min_list(_L,_Max)).builtin2259,64931 -builtin(min_list(_L,_Max)).builtin2259,64931 -builtin(nth0(_,_,_)).builtin2260,64959 -builtin(nth0(_,_,_)).builtin2260,64959 -builtin(nth(_,_,_)).builtin2261,64981 -builtin(nth(_,_,_)).builtin2261,64981 -average(L,Av):-average2262,65002 -average(L,Av):-average2262,65002 -average(L,Av):-average2262,65002 -clique([],[]):-!.clique2267,65065 -clique([],[]):-!.clique2267,65065 -clique([],[]):-!.clique2267,65065 -clique(Graph,Clique):-clique2269,65084 -clique(Graph,Clique):-clique2269,65084 -clique(Graph,Clique):-clique2269,65084 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle2273,65184 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle2273,65184 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle2273,65184 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle2279,65353 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle2279,65353 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle2279,65353 -extend(_G,[],[],CompSub,CompSub):-!.extend2282,65428 -extend(_G,[],[],CompSub,CompSub):-!.extend2282,65428 -extend(_G,[],[],CompSub,CompSub):-!.extend2282,65428 -extend(G,Cand,Not,CS,CSOut):-extend2284,65466 -extend(G,Cand,Not,CS,CSOut):-extend2284,65466 -extend(G,Cand,Not,CS,CSOut):-extend2284,65466 -set(Parameter,Value):-set2288,65599 -set(Parameter,Value):-set2288,65599 -set(Parameter,Value):-set2288,65599 - -packages/cplint/lpadclpbn.pl,35427 -setting(epsilon_parsing,0.00001).setting27,660 -setting(epsilon_parsing,0.00001).setting27,660 -setting(save_dot,false).setting28,694 -setting(save_dot,false).setting28,694 -setting(ground_body,true). setting29,719 -setting(ground_body,true). setting29,719 -setting(cpt_zero,0.0001). setting35,1008 -setting(cpt_zero,0.0001). setting35,1008 -s(GL,P):-s42,1248 -s(GL,P):-s42,1248 -s(GL,P):-s42,1248 -s(_GL,0.0).s50,1433 -s(_GL,0.0).s50,1433 -sc(GL,GLC,P):-sc56,1768 -sc(GL,GLC,P):-sc56,1768 -sc(GL,GLC,P):-sc56,1768 -s(GL,P,Time1,Time2):-s81,2418 -s(GL,P,Time1,Time2):-s81,2418 -s(GL,P,Time1,Time2):-s81,2418 -s(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-s102,2902 -s(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-s102,2902 -s(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-s102,2902 -solve(GL,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve106,3024 -solve(GL,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve106,3024 -solve(GL,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve106,3024 -sc(GL,GLC,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc142,4049 -sc(GL,GLC,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc142,4049 -sc(GL,GLC,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc142,4049 -remove_head([],[]).remove_head190,5224 -remove_head([],[]).remove_head190,5224 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head192,5245 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head192,5245 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head192,5245 -append_all([],L,L):-!.append_all195,5305 -append_all([],L,L):-!.append_all195,5305 -append_all([],L,L):-!.append_all195,5305 -append_all([LIntH|IntT],IntIn,IntOut):-append_all197,5329 -append_all([LIntH|IntT],IntIn,IntOut):-append_all197,5329 -append_all([LIntH|IntT],IntIn,IntOut):-append_all197,5329 -process_goals([],[],[]).process_goals201,5434 -process_goals([],[],[]).process_goals201,5434 -process_goals([H|T],[HG|TG],[HV|TV]):-process_goals203,5460 -process_goals([H|T],[HG|TG],[HV|TV]):-process_goals203,5460 -process_goals([H|T],[HG|TG],[HV|TV]):-process_goals203,5460 -build_ground_lpad([],_N,[]).build_ground_lpad208,5559 -build_ground_lpad([],_N,[]).build_ground_lpad208,5559 -build_ground_lpad([(R,S)|T],N,[(N1,Head1,Body1)|T1]):-build_ground_lpad210,5589 -build_ground_lpad([(R,S)|T],N,[(N1,Head1,Body1)|T1]):-build_ground_lpad210,5589 -build_ground_lpad([(R,S)|T],N,[(N1,Head1,Body1)|T1]):-build_ground_lpad210,5589 -remove_built_ins([],[]):-!.remove_built_ins217,5771 -remove_built_ins([],[]):-!.remove_built_ins217,5771 -remove_built_ins([],[]):-!.remove_built_ins217,5771 -remove_built_ins([\+H|T],T1):-remove_built_ins219,5800 -remove_built_ins([\+H|T],T1):-remove_built_ins219,5800 -remove_built_ins([\+H|T],T1):-remove_built_ins219,5800 -remove_built_ins([H|T],T1):-remove_built_ins223,5872 -remove_built_ins([H|T],T1):-remove_built_ins223,5872 -remove_built_ins([H|T],T1):-remove_built_ins223,5872 -remove_built_ins([H|T],[H|T1]):-remove_built_ins227,5942 -remove_built_ins([H|T],[H|T1]):-remove_built_ins227,5942 -remove_built_ins([H|T],[H|T1]):-remove_built_ins227,5942 -merge_identical([],[]):-!.merge_identical230,6001 -merge_identical([],[]):-!.merge_identical230,6001 -merge_identical([],[]):-!.merge_identical230,6001 -merge_identical([A:P|T],[A:P1|Head]):-merge_identical232,6029 -merge_identical([A:P|T],[A:P1|Head]):-merge_identical232,6029 -merge_identical([A:P|T],[A:P1|Head]):-merge_identical232,6029 -find_identical(_A,P,[],P,[]):-!.find_identical236,6126 -find_identical(_A,P,[],P,[]):-!.find_identical236,6126 -find_identical(_A,P,[],P,[]):-!.find_identical236,6126 -find_identical(A,P0,[A:P|T],P1,T1):-!,find_identical238,6160 -find_identical(A,P0,[A:P|T],P1,T1):-!,find_identical238,6160 -find_identical(A,P0,[A:P|T],P1,T1):-!,find_identical238,6160 -find_identical(A,P0,[H:P|T],P1,[H:P|T1]):-find_identical242,6244 -find_identical(A,P0,[H:P|T],P1,[H:P|T1]):-find_identical242,6244 -find_identical(A,P0,[H:P|T],P1,[H:P|T1]):-find_identical242,6244 -convert_to_clpbn(CL,GL,LV,P,GLC):-convert_to_clpbn245,6319 -convert_to_clpbn(CL,GL,LV,P,GLC):-convert_to_clpbn245,6319 -convert_to_clpbn(CL,GL,LV,P,GLC):-convert_to_clpbn245,6319 -add_ev([],_AV).add_ev256,6605 -add_ev([],_AV).add_ev256,6605 -add_ev([\+ H|T],AV):-!,add_ev258,6622 -add_ev([\+ H|T],AV):-!,add_ev258,6622 -add_ev([\+ H|T],AV):-!,add_ev258,6622 -add_ev([H|T],AV):-add_ev263,6715 -add_ev([H|T],AV):-add_ev263,6715 -add_ev([H|T],AV):-add_ev263,6715 -convert_to_clpbn(CL,GL,LV,P):-convert_to_clpbn268,6803 -convert_to_clpbn(CL,GL,LV,P):-convert_to_clpbn268,6803 -convert_to_clpbn(CL,GL,LV,P):-convert_to_clpbn268,6803 -get_prob(GL,AV,AVL,CVL,P):- get_prob278,7069 -get_prob(GL,AV,AVL,CVL,P):- get_prob278,7069 -get_prob(GL,AV,AVL,CVL,P):- get_prob278,7069 -lookup_gvars([],_AV,[],S,S). lookup_gvars288,7396 -lookup_gvars([],_AV,[],S,S). lookup_gvars288,7396 -lookup_gvars([\+ H|T],AV,[HV|T1],Sign0,Sign2):- !,lookup_gvars290,7427 -lookup_gvars([\+ H|T],AV,[HV|T1],Sign0,Sign2):- !,lookup_gvars290,7427 -lookup_gvars([\+ H|T],AV,[HV|T1],Sign0,Sign2):- !,lookup_gvars290,7427 -lookup_gvars([H|T],AV,[HV|T1],Sign0,Sign2):- lookup_gvars296,7600 -lookup_gvars([H|T],AV,[HV|T1],Sign0,Sign2):- lookup_gvars296,7600 -lookup_gvars([H|T],AV,[HV|T1],Sign0,Sign2):- lookup_gvars296,7600 -add_atoms_tables([],[],_CL,_CV,_AV).add_atoms_tables302,7768 -add_atoms_tables([],[],_CL,_CV,_AV).add_atoms_tables302,7768 -add_atoms_tables([H|T],[HA|TA],CL,CV,AV):-add_atoms_tables304,7806 -add_atoms_tables([H|T],[HA|TA],CL,CV,AV):-add_atoms_tables304,7806 -add_atoms_tables([H|T],[HA|TA],CL,CV,AV):-add_atoms_tables304,7806 -build_table_conj(R,Table):-build_table_conj311,8003 -build_table_conj(R,Table):-build_table_conj311,8003 -build_table_conj(R,Table):-build_table_conj311,8003 -build_col_conj([],Tr,Final,Row0,Row1):-build_col_conj315,8099 -build_col_conj([],Tr,Final,Row0,Row1):-build_col_conj315,8099 -build_col_conj([],Tr,Final,Row0,Row1):-build_col_conj315,8099 -build_col_conj([\+H|RP],Tr,Final,Row0,Row2):-!,build_col_conj323,8239 -build_col_conj([\+H|RP],Tr,Final,Row0,Row2):-!,build_col_conj323,8239 -build_col_conj([\+H|RP],Tr,Final,Row0,Row2):-!,build_col_conj323,8239 -build_col_conj([H|RP],Tr,Final,Row0,Row2):-build_col_conj327,8367 -build_col_conj([H|RP],Tr,Final,Row0,Row2):-build_col_conj327,8367 -build_col_conj([H|RP],Tr,Final,Row0,Row2):-build_col_conj327,8367 -build_table_atoms(H,R,Table):-build_table_atoms331,8491 -build_table_atoms(H,R,Table):-build_table_atoms331,8491 -build_table_atoms(H,R,Table):-build_table_atoms331,8491 -build_col(A,[],Tr,Found,Row0,Row1):-build_col335,8584 -build_col(A,[],Tr,Found,Row0,Row1):-build_col335,8584 -build_col(A,[],Tr,Found,Row0,Row1):-build_col335,8584 -build_col(A,[(N,H)|RP],Tr,Found,Row0,Row1):-build_col343,8721 -build_col(A,[(N,H)|RP],Tr,Found,Row0,Row1):-build_col343,8721 -build_col(A,[(N,H)|RP],Tr,Found,Row0,Row1):-build_col343,8721 -build_col_cycle(_A,[],_RP,_Tr,_Found,Row,Row).build_col_cycle346,8812 -build_col_cycle(_A,[],_RP,_Tr,_Found,Row,Row).build_col_cycle346,8812 -build_col_cycle(A,[A:P|T],RP,Tr,Found,Row0,Row2):-!,build_col_cycle348,8861 -build_col_cycle(A,[A:P|T],RP,Tr,Found,Row0,Row2):-!,build_col_cycle348,8861 -build_col_cycle(A,[A:P|T],RP,Tr,Found,Row0,Row2):-!,build_col_cycle348,8861 -build_col_cycle(A,[_|T],RP,Tr,Found,Row0,Row2):-build_col_cycle352,8994 -build_col_cycle(A,[_|T],RP,Tr,Found,Row0,Row2):-build_col_cycle352,8994 -build_col_cycle(A,[_|T],RP,Tr,Found,Row0,Row2):-build_col_cycle352,8994 -parents([],_CV,[]).parents356,9126 -parents([],_CV,[]).parents356,9126 -parents([(N,_H)|T],CV,[V|T1]):-parents358,9147 -parents([(N,_H)|T],CV,[V|T1]):-parents358,9147 -parents([(N,_H)|T],CV,[V|T1]):-parents358,9147 -find_rules_with_atom(_A,[],[]).find_rules_with_atom362,9220 -find_rules_with_atom(_A,[],[]).find_rules_with_atom362,9220 -find_rules_with_atom(A,[(N,Head,Body)|T],[(N,Head)|R]):-find_rules_with_atom364,9253 -find_rules_with_atom(A,[(N,Head,Body)|T],[(N,Head)|R]):-find_rules_with_atom364,9253 -find_rules_with_atom(A,[(N,Head,Body)|T],[(N,Head)|R]):-find_rules_with_atom364,9253 -find_rules_with_atom(A,[_H|T],R):-find_rules_with_atom368,9362 -find_rules_with_atom(A,[_H|T],R):-find_rules_with_atom368,9362 -find_rules_with_atom(A,[_H|T],R):-find_rules_with_atom368,9362 -add_rule_tables([],[],_AV).add_rule_tables371,9428 -add_rule_tables([],[],_AV).add_rule_tables371,9428 -add_rule_tables([(N,Head,Body)|T],[CV|TCV],AV):-add_rule_tables373,9457 -add_rule_tables([(N,Head,Body)|T],[CV|TCV],AV):-add_rule_tables373,9457 -add_rule_tables([(N,Head,Body)|T],[CV|TCV],AV):-add_rule_tables373,9457 -build_table([P],L,Row):-!,build_table380,9667 -build_table([P],L,Row):-!,build_table380,9667 -build_table([P],L,Row):-!,build_table380,9667 -build_table([HP|TP],L,Tab):-build_table383,9722 -build_table([HP|TP],L,Tab):-build_table383,9722 -build_table([HP|TP],L,Tab):-build_table383,9722 -build_col([],t,HP,_PNull,[HP]):-!.build_col389,9854 -build_col([],t,HP,_PNull,[HP]):-!.build_col389,9854 -build_col([],t,HP,_PNull,[HP]):-!.build_col389,9854 -build_col([],f,_HP,PNull,[PNull]):-!.build_col391,9890 -build_col([],f,_HP,PNull,[PNull]):-!.build_col391,9890 -build_col([],f,_HP,PNull,[PNull]):-!.build_col391,9890 -build_col([\+ H|T],Truth,P,PNull,Row):-!,build_col394,9930 -build_col([\+ H|T],Truth,P,PNull,Row):-!,build_col394,9930 -build_col([\+ H|T],Truth,P,PNull,Row):-!,build_col394,9930 -build_col([_H|T],Truth,P,PNull,Row):-build_col399,10061 -build_col([_H|T],Truth,P,PNull,Row):-build_col399,10061 -build_col([_H|T],Truth,P,PNull,Row):-build_col399,10061 -get_parents([],_AV,[]).get_parents404,10190 -get_parents([],_AV,[]).get_parents404,10190 -get_parents([\+ H|T],AV,[V|T1]):-!,get_parents406,10217 -get_parents([\+ H|T],AV,[V|T1]):-!,get_parents406,10217 -get_parents([\+ H|T],AV,[V|T1]):-!,get_parents406,10217 -get_parents([H|T],AV,[V|T1]):-!,get_parents410,10298 -get_parents([H|T],AV,[V|T1]):-!,get_parents410,10298 -get_parents([H|T],AV,[V|T1]):-!,get_parents410,10298 -choice_vars([],Tr,Tr,[]).choice_vars414,10376 -choice_vars([],Tr,Tr,[]).choice_vars414,10376 -choice_vars([(N,_H,_B)|T],Tr0,Tr1,[NV|T1]):-choice_vars416,10403 -choice_vars([(N,_H,_B)|T],Tr0,Tr1,[NV|T1]):-choice_vars416,10403 -choice_vars([(N,_H,_B)|T],Tr0,Tr1,[NV|T1]):-choice_vars416,10403 -atom_vars([],Tr,Tr,[]).atom_vars420,10504 -atom_vars([],Tr,Tr,[]).atom_vars420,10504 -atom_vars([H|T],Tr0,Tr1,[VH|VT]):-atom_vars422,10529 -atom_vars([H|T],Tr0,Tr1,[VH|VT]):-atom_vars422,10529 -atom_vars([H|T],Tr0,Tr1,[VH|VT]):-atom_vars422,10529 -find_ground_atoms([],GA,GA).find_ground_atoms426,10618 -find_ground_atoms([],GA,GA).find_ground_atoms426,10618 -find_ground_atoms([(_N,Head,Body)|T],GA0,GA1):-find_ground_atoms428,10648 -find_ground_atoms([(_N,Head,Body)|T],GA0,GA1):-find_ground_atoms428,10648 -find_ground_atoms([(_N,Head,Body)|T],GA0,GA1):-find_ground_atoms428,10648 -find_atoms_body([],[]).find_atoms_body435,10831 -find_atoms_body([],[]).find_atoms_body435,10831 -find_atoms_body([\+H|T],[H|T1]):-!,find_atoms_body437,10856 -find_atoms_body([\+H|T],[H|T1]):-!,find_atoms_body437,10856 -find_atoms_body([\+H|T],[H|T1]):-!,find_atoms_body437,10856 -find_atoms_body([H|T],[H|T1]):-find_atoms_body440,10917 -find_atoms_body([H|T],[H|T1]):-find_atoms_body440,10917 -find_atoms_body([H|T],[H|T1]):-find_atoms_body440,10917 -find_atoms_head([],[],[]).find_atoms_head444,10975 -find_atoms_head([],[],[]).find_atoms_head444,10975 -find_atoms_head([H:P|T],[H|TA],[P|TP]):-find_atoms_head446,11003 -find_atoms_head([H:P|T],[H|TA],[P|TP]):-find_atoms_head446,11003 -find_atoms_head([H:P|T],[H|TA],[P|TP]):-find_atoms_head446,11003 -print_mem:-print_mem449,11072 -find_deriv(GoalsList,Deriv):-find_deriv459,11497 -find_deriv(GoalsList,Deriv):-find_deriv459,11497 -find_deriv(GoalsList,Deriv):-find_deriv459,11497 -solve([],C,C):-!.solve475,12096 -solve([],C,C):-!.solve475,12096 -solve([],C,C):-!.solve475,12096 -solve([bagof(V,EV^G,L)|T],CIn,COut):-!,solve477,12115 -solve([bagof(V,EV^G,L)|T],CIn,COut):-!,solve477,12115 -solve([bagof(V,EV^G,L)|T],CIn,COut):-!,solve477,12115 -solve([bagof(V,G,L)|T],CIn,COut):-!,solve488,12385 -solve([bagof(V,G,L)|T],CIn,COut):-!,solve488,12385 -solve([bagof(V,G,L)|T],CIn,COut):-!,solve488,12385 -solve([setof(V,EV^G,L)|T],CIn,COut):-!,solve500,12650 -solve([setof(V,EV^G,L)|T],CIn,COut):-!,solve500,12650 -solve([setof(V,EV^G,L)|T],CIn,COut):-!,solve500,12650 -solve([setof(V,G,L)|T],CIn,COut):-!,solve511,12919 -solve([setof(V,G,L)|T],CIn,COut):-!,solve511,12919 -solve([setof(V,G,L)|T],CIn,COut):-!,solve511,12919 -solve([\+ H |T],CIn,COut):-!,solve522,13182 -solve([\+ H |T],CIn,COut):-!,solve522,13182 -solve([\+ H |T],CIn,COut):-!,solve522,13182 -solve([H|T],CIn,COut):-solve532,13369 -solve([H|T],CIn,COut):-solve532,13369 -solve([H|T],CIn,COut):-solve532,13369 -solve([H|T],CIn,COut):-solve537,13439 -solve([H|T],CIn,COut):-solve537,13439 -solve([H|T],CIn,COut):-solve537,13439 -solve([H|T],CIn,COut):-solve542,13519 -solve([H|T],CIn,COut):-solve542,13519 -solve([H|T],CIn,COut):-solve542,13519 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres546,13606 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres546,13606 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres546,13606 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres551,13706 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres551,13706 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres551,13706 -build_initial_graph(N,G):-build_initial_graph556,13804 -build_initial_graph(N,G):-build_initial_graph556,13804 -build_initial_graph(N,G):-build_initial_graph556,13804 -build_graph([],_N,G,G).build_graph561,13877 -build_graph([],_N,G,G).build_graph561,13877 -build_graph([(_V,C)|T],N,GIn,GOut):-build_graph563,13903 -build_graph([(_V,C)|T],N,GIn,GOut):-build_graph563,13903 -build_graph([(_V,C)|T],N,GIn,GOut):-build_graph563,13903 -compatible(_C,[],_N,_N1,G,G). compatible568,14012 -compatible(_C,[],_N,_N1,G,G). compatible568,14012 -compatible(C,[(_V,H)|T],N,N1,GIn,GOut):-compatible570,14044 -compatible(C,[(_V,H)|T],N,N1,GIn,GOut):-compatible570,14044 -compatible(C,[(_V,H)|T],N,N1,GIn,GOut):-compatible570,14044 -compatible([],_C).compatible579,14199 -compatible([],_C).compatible579,14199 -compatible([(N,R,S)|T],C):-compatible581,14219 -compatible([(N,R,S)|T],C):-compatible581,14219 -compatible([(N,R,S)|T],C):-compatible581,14219 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head585,14311 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head585,14311 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head587,14360 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head587,14360 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head587,14360 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head590,14463 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head590,14463 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head590,14463 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head594,14577 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head594,14577 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head594,14577 -build_Cset(_LD,[],[],C,C).build_Cset600,14695 -build_Cset(_LD,[],[],C,C).build_Cset600,14695 -build_Cset(LD,[H|T],[V|L],CIn,COut):-build_Cset602,14725 -build_Cset(LD,[H|T],[V|L],CIn,COut):-build_Cset602,14725 -build_Cset(LD,[H|T],[V|L],CIn,COut):-build_Cset602,14725 -find_rule(H,(R,S,N),Body,C):-find_rule612,15062 -find_rule(H,(R,S,N),Body,C):-find_rule612,15062 -find_rule(H,(R,S,N),Body,C):-find_rule612,15062 -find_rule(H,(R,S,Number),Body,C):-find_rule617,15196 -find_rule(H,(R,S,Number),Body,C):-find_rule617,15196 -find_rule(H,(R,S,Number),Body,C):-find_rule617,15196 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head621,15337 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head621,15337 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head623,15394 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head623,15394 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head623,15394 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head627,15544 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head627,15544 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head627,15544 -not_different(_N,_N1,S,S1):-not_different631,15675 -not_different(_N,_N1,S,S1):-not_different631,15675 -not_different(_N,_N1,S,S1):-not_different631,15675 -not_different(N,N1,S,S1):-not_different634,15716 -not_different(N,N1,S,S1):-not_different634,15716 -not_different(N,N1,S,S1):-not_different634,15716 -not_different(N,N,S,S).not_different638,15767 -not_different(N,N,S,S).not_different638,15767 -member_head(H,[(H:_P)|_T],N,N).member_head641,15793 -member_head(H,[(H:_P)|_T],N,N).member_head641,15793 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head643,15826 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head643,15826 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head643,15826 -choose_clauses(C,[],C).choose_clauses650,16098 -choose_clauses(C,[],C).choose_clauses650,16098 -choose_clauses(CIn,[D|T],COut):-choose_clauses652,16123 -choose_clauses(CIn,[D|T],COut):-choose_clauses652,16123 -choose_clauses(CIn,[D|T],COut):-choose_clauses652,16123 -choose_clauses(CIn,[D|T],COut):-choose_clauses659,16290 -choose_clauses(CIn,[D|T],COut):-choose_clauses659,16290 -choose_clauses(CIn,[D|T],COut):-choose_clauses659,16290 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons666,16465 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons666,16465 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons666,16465 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons668,16496 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons668,16496 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons668,16496 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons672,16574 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons672,16574 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons672,16574 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head679,16870 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head679,16870 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head681,16926 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head681,16926 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head681,16926 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head685,17040 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head685,17040 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head685,17040 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs688,17150 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs688,17150 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs688,17150 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs692,17250 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs692,17250 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs692,17250 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head698,17446 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head698,17446 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head698,17446 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head705,17657 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head705,17657 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head705,17657 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head710,17764 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head710,17764 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head710,17764 -new_head(N,R,S,N1):-new_head715,17914 -new_head(N,R,S,N1):-new_head715,17914 -new_head(N,R,S,N1):-new_head715,17914 -new_head(N,R,S,N1):-new_head721,18042 -new_head(N,R,S,N1):-new_head721,18042 -new_head(N,R,S,N1):-new_head721,18042 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head727,18192 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head727,18192 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head727,18192 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head730,18276 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head730,18276 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head730,18276 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present736,18497 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present736,18497 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present736,18497 -already_present(N,R,S,[_H|T]):-already_present739,18544 -already_present(N,R,S,[_H|T]):-already_present739,18544 -already_present(N,R,S,[_H|T]):-already_present739,18544 -rem_dup_lists([],L,L).rem_dup_lists746,18826 -rem_dup_lists([],L,L).rem_dup_lists746,18826 -rem_dup_lists([H|T],L0,L):-rem_dup_lists748,18850 -rem_dup_lists([H|T],L0,L):-rem_dup_lists748,18850 -rem_dup_lists([H|T],L0,L):-rem_dup_lists748,18850 -rem_dup_lists([H|T],L0,L):-rem_dup_lists752,18948 -rem_dup_lists([H|T],L0,L):-rem_dup_lists752,18948 -rem_dup_lists([H|T],L0,L):-rem_dup_lists752,18948 -member_subset(E,[H|_T]):-member_subset755,19005 -member_subset(E,[H|_T]):-member_subset755,19005 -member_subset(E,[H|_T]):-member_subset755,19005 -member_subset(E,[_H|T]):-member_subset758,19051 -member_subset(E,[_H|T]):-member_subset758,19051 -member_subset(E,[_H|T]):-member_subset758,19051 -build_formula([],[],Var,Var).build_formula773,19550 -build_formula([],[],Var,Var).build_formula773,19550 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula775,19581 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula775,19581 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula775,19581 -build_term([],[],Var,Var).build_term779,19690 -build_term([],[],Var,Var).build_term779,19690 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term781,19718 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term781,19718 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term781,19718 -nth0_eq(N,N,[H|_T],El):-nth0_eq794,20103 -nth0_eq(N,N,[H|_T],El):-nth0_eq794,20103 -nth0_eq(N,N,[H|_T],El):-nth0_eq794,20103 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq797,20139 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq797,20139 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq797,20139 -var2numbers([],_N,[]).var2numbers804,20379 -var2numbers([],_N,[]).var2numbers804,20379 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers806,20403 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers806,20403 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers806,20403 -find_probs(R,S,Probs):-find_probs812,20543 -find_probs(R,S,Probs):-find_probs812,20543 -find_probs(R,S,Probs):-find_probs812,20543 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs816,20619 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs816,20619 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs816,20619 -get_probs([],[]).get_probs820,20710 -get_probs([],[]).get_probs820,20710 -get_probs([_H:P|T],[P1|T1]):-get_probs822,20729 -get_probs([_H:P|T],[P1|T1]):-get_probs822,20729 -get_probs([_H:P|T],[P1|T1]):-get_probs822,20729 -list_el(0,_P,[]):-!.list_el826,20788 -list_el(0,_P,[]):-!.list_el826,20788 -list_el(0,_P,[]):-!.list_el826,20788 -list_el(N,P,[P|T]):-list_el828,20810 -list_el(N,P,[P|T]):-list_el828,20810 -list_el(N,P,[P|T]):-list_el828,20810 -p(File):-p839,21127 -p(File):-p839,21127 -p(File):-p839,21127 -parse(File):-parse842,21152 -parse(File):-parse842,21152 -parse(File):-parse842,21152 -process_clauses([(end_of_file,[])],_N).process_clauses851,21335 -process_clauses([(end_of_file,[])],_N).process_clauses851,21335 -process_clauses([((H:-B),V)|T],N):-process_clauses853,21376 -process_clauses([((H:-B),V)|T],N):-process_clauses853,21376 -process_clauses([((H:-B),V)|T],N):-process_clauses853,21376 -process_clauses([((H:-B),V)|T],N):-process_clauses864,21670 -process_clauses([((H:-B),V)|T],N):-process_clauses864,21670 -process_clauses([((H:-B),V)|T],N):-process_clauses864,21670 -process_clauses([((H:-B),V)|T],N):-process_clauses876,21900 -process_clauses([((H:-B),V)|T],N):-process_clauses876,21900 -process_clauses([((H:-B),V)|T],N):-process_clauses876,21900 -process_clauses([((H:-B),V)|T],N):-!,process_clauses888,22131 -process_clauses([((H:-B),V)|T],N):-!,process_clauses888,22131 -process_clauses([((H:-B),V)|T],N):-!,process_clauses888,22131 -process_clauses([(H,V)|T],N):-process_clauses898,22338 -process_clauses([(H,V)|T],N):-process_clauses898,22338 -process_clauses([(H,V)|T],N):-process_clauses898,22338 -process_clauses([(H,V)|T],N):-process_clauses908,22521 -process_clauses([(H,V)|T],N):-process_clauses908,22521 -process_clauses([(H,V)|T],N):-process_clauses908,22521 -process_clauses([(H,V)|T],N):-process_clauses918,22705 -process_clauses([(H,V)|T],N):-process_clauses918,22705 -process_clauses([(H,V)|T],N):-process_clauses918,22705 -process_head(HL,NHL):-process_head929,22988 -process_head(HL,NHL):-process_head929,22988 -process_head(HL,NHL):-process_head929,22988 -ground_prob([]).ground_prob936,23082 -ground_prob([]).ground_prob936,23082 -ground_prob([_H:PH|T]):-ground_prob938,23100 -ground_prob([_H:PH|T]):-ground_prob938,23100 -ground_prob([_H:PH|T]):-ground_prob938,23100 -process_head_ground([H:PH],P,[H:PH1,'':PNull1]):-!,process_head_ground942,23156 -process_head_ground([H:PH],P,[H:PH1,'':PNull1]):-!,process_head_ground942,23156 -process_head_ground([H:PH],P,[H:PH1,'':PNull1]):-!,process_head_ground942,23156 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground951,23294 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground951,23294 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground951,23294 -process_body([],V,V).process_body957,23497 -process_body([],V,V).process_body957,23497 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body959,23520 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body959,23520 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body959,23520 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body966,23676 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body966,23676 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body966,23676 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body971,23790 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body971,23790 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body971,23790 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body978,23946 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body978,23946 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body978,23946 -process_body([_H|T],VIn,VOut):-!,process_body983,24060 -process_body([_H|T],VIn,VOut):-!,process_body983,24060 -process_body([_H|T],VIn,VOut):-!,process_body983,24060 -get_var_list([],[]).get_var_list986,24122 -get_var_list([],[]).get_var_list986,24122 -get_var_list([H|T],[H|T1]):-get_var_list988,24144 -get_var_list([H|T],[H|T1]):-get_var_list988,24144 -get_var_list([H|T],[H|T1]):-get_var_list988,24144 -get_var_list([H|T],VarOut):-!,get_var_list992,24206 -get_var_list([H|T],VarOut):-!,get_var_list992,24206 -get_var_list([H|T],VarOut):-!,get_var_list992,24206 -get_var(A,[A]):-get_var997,24300 -get_var(A,[A]):-get_var997,24300 -get_var(A,[A]):-get_var997,24300 -get_var(A,V):-get_var1000,24329 -get_var(A,V):-get_var1000,24329 -get_var(A,V):-get_var1000,24329 -remove_vars([],V,V).remove_vars1004,24384 -remove_vars([],V,V).remove_vars1004,24384 -remove_vars([H|T],VIn,VOut):-remove_vars1006,24406 -remove_vars([H|T],VIn,VOut):-remove_vars1006,24406 -remove_vars([H|T],VIn,VOut):-remove_vars1006,24406 -delete_var(_H,[],[]).delete_var1010,24485 -delete_var(_H,[],[]).delete_var1010,24485 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var1012,24508 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var1012,24508 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var1012,24508 -delete_var(_V,[_H|T],T).delete_var1016,24581 -delete_var(_V,[_H|T],T).delete_var1016,24581 -read_clauses(S,Clauses):-read_clauses1019,24659 -read_clauses(S,Clauses):-read_clauses1019,24659 -read_clauses(S,Clauses):-read_clauses1019,24659 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body1027,24799 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body1027,24799 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body1027,24799 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body1036,24951 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body1036,24951 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body1036,24951 -extract_vars_cl(end_of_file,[]).extract_vars_cl1046,25129 -extract_vars_cl(end_of_file,[]).extract_vars_cl1046,25129 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl1048,25163 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl1048,25163 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl1048,25163 -pair(_VN,[],[]).pair1058,25279 -pair(_VN,[],[]).pair1058,25279 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair1060,25297 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair1060,25297 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair1060,25297 -extract_vars(Var,V0,V):-extract_vars1064,25355 -extract_vars(Var,V0,V):-extract_vars1064,25355 -extract_vars(Var,V0,V):-extract_vars1064,25355 -extract_vars(Term,V0,V):-extract_vars1072,25452 -extract_vars(Term,V0,V):-extract_vars1072,25452 -extract_vars(Term,V0,V):-extract_vars1072,25452 -extract_vars_list([],V,V).extract_vars_list1077,25530 -extract_vars_list([],V,V).extract_vars_list1077,25530 -extract_vars_list([Term|T],V0,V):-extract_vars_list1079,25558 -extract_vars_list([Term|T],V0,V):-extract_vars_list1079,25558 -extract_vars_list([Term|T],V0,V):-extract_vars_list1079,25558 -listN(N,N,[]):-!.listN1084,25651 -listN(N,N,[]):-!.listN1084,25651 -listN(N,N,[]):-!.listN1084,25651 -listN(NIn,N,[NIn|T]):-listN1086,25670 -listN(NIn,N,[NIn|T]):-listN1086,25670 -listN(NIn,N,[NIn|T]):-listN1086,25670 -list2or([X],X):-list2or1092,25829 -list2or([X],X):-list2or1092,25829 -list2or([X],X):-list2or1092,25829 -list2or([H|T],(H ; Ta)):-!,list2or1095,25861 -list2or([H|T],(H ; Ta)):-!,list2or1095,25861 -list2or([H|T],(H ; Ta)):-!,list2or1095,25861 -list2and([X],X):-list2and1098,25906 -list2and([X],X):-list2and1098,25906 -list2and([X],X):-list2and1098,25906 -list2and([H|T],(H,Ta)):-!,list2and1101,25938 -list2and([H|T],(H,Ta)):-!,list2and1101,25938 -list2and([H|T],(H,Ta)):-!,list2and1101,25938 -member_eq(A,[H|_T]):-member_eq1104,25983 -member_eq(A,[H|_T]):-member_eq1104,25983 -member_eq(A,[H|_T]):-member_eq1104,25983 -member_eq(A,[_H|T]):-member_eq1107,26016 -member_eq(A,[_H|T]):-member_eq1107,26016 -member_eq(A,[_H|T]):-member_eq1107,26016 -subset_my([],_).subset_my1110,26056 -subset_my([],_).subset_my1110,26056 -subset_my([H|T],L):-subset_my1112,26074 -subset_my([H|T],L):-subset_my1112,26074 -subset_my([H|T],L):-subset_my1112,26074 -remove_duplicates_eq([],[]).remove_duplicates_eq1116,26130 -remove_duplicates_eq([],[]).remove_duplicates_eq1116,26130 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq1118,26160 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq1118,26160 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq1118,26160 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq1122,26242 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq1122,26242 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq1122,26242 -builtin(_A is _B).builtin1125,26309 -builtin(_A is _B).builtin1125,26309 -builtin(_A > _B).builtin1126,26328 -builtin(_A > _B).builtin1126,26328 -builtin(_A < _B).builtin1127,26346 -builtin(_A < _B).builtin1127,26346 -builtin(_A >= _B).builtin1128,26364 -builtin(_A >= _B).builtin1128,26364 -builtin(_A =< _B).builtin1129,26383 -builtin(_A =< _B).builtin1129,26383 -builtin(_A =:= _B).builtin1130,26402 -builtin(_A =:= _B).builtin1130,26402 -builtin(_A =\= _B).builtin1131,26422 -builtin(_A =\= _B).builtin1131,26422 -builtin(true).builtin1132,26442 -builtin(true).builtin1132,26442 -builtin(false).builtin1133,26457 -builtin(false).builtin1133,26457 -builtin(_A = _B).builtin1134,26473 -builtin(_A = _B).builtin1134,26473 -builtin(_A==_B).builtin1135,26491 -builtin(_A==_B).builtin1135,26491 -builtin(_A\=_B).builtin1136,26508 -builtin(_A\=_B).builtin1136,26508 -builtin(_A\==_B).builtin1137,26525 -builtin(_A\==_B).builtin1137,26525 -builtin(length(_L,_N)).builtin1138,26543 -builtin(length(_L,_N)).builtin1138,26543 -builtin(member(_El,_L)).builtin1139,26567 -builtin(member(_El,_L)).builtin1139,26567 -builtin(average(_L,_Av)).builtin1140,26592 -builtin(average(_L,_Av)).builtin1140,26592 -builtin(max_list(_L,_Max)).builtin1141,26618 -builtin(max_list(_L,_Max)).builtin1141,26618 -builtin(min_list(_L,_Max)).builtin1142,26646 -builtin(min_list(_L,_Max)).builtin1142,26646 -builtin(nth0(_,_,_)).builtin1143,26674 -builtin(nth0(_,_,_)).builtin1143,26674 -builtin(nth(_,_,_)).builtin1144,26696 -builtin(nth(_,_,_)).builtin1144,26696 -average(L,Av):-average1145,26717 -average(L,Av):-average1145,26717 -average(L,Av):-average1145,26717 -clique(Graph,Clique):-clique1150,26780 -clique(Graph,Clique):-clique1150,26780 -clique(Graph,Clique):-clique1150,26780 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1154,26880 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1154,26880 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1154,26880 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1160,27049 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1160,27049 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1160,27049 -extend(_G,[],[],CompSub,CompSub):-!.extend1163,27124 -extend(_G,[],[],CompSub,CompSub):-!.extend1163,27124 -extend(_G,[],[],CompSub,CompSub):-!.extend1163,27124 -extend(G,Cand,Not,CS,CSOut):-extend1165,27162 -extend(G,Cand,Not,CS,CSOut):-extend1165,27162 -extend(G,Cand,Not,CS,CSOut):-extend1165,27162 -set(Parameter,Value):-set1169,27295 -set(Parameter,Value):-set1169,27295 -set(Parameter,Value):-set1169,27295 - -packages/cplint/lpadsld.pl,38882 -setting(epsilon_parsing,0.00001).setting20,561 -setting(epsilon_parsing,0.00001).setting20,561 -setting(save_dot,false).setting21,595 -setting(save_dot,false).setting21,595 -setting(ground_body,true). setting22,620 -setting(ground_body,true). setting22,620 -setting(min_error,0.01).setting27,908 -setting(min_error,0.01).setting27,908 -setting(initial_depth_bound,4).setting28,933 -setting(initial_depth_bound,4).setting28,933 -setting(depth_bound,4).setting29,965 -setting(depth_bound,4).setting29,965 -setting(prob_threshold,0.00001).setting30,989 -setting(prob_threshold,0.00001).setting30,989 -setting(prob_bound,0.01).setting31,1022 -setting(prob_bound,0.01).setting31,1022 -s(GoalsList,Prob):-s38,1260 -s(GoalsList,Prob):-s38,1260 -s(GoalsList,Prob):-s38,1260 -solve(GoalsList,Prob):-solve42,1306 -solve(GoalsList,Prob):-solve42,1306 -solve(GoalsList,Prob):-solve42,1306 -solve(GoalsList,0.0):-solve54,1613 -solve(GoalsList,0.0):-solve54,1613 -solve(GoalsList,0.0):-solve54,1613 -s(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-s66,2096 -s(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-s66,2096 -s(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-s66,2096 -solve(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve70,2218 -solve(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve70,2218 -solve(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve70,2218 -si(GoalsList,ProbL,ProbU,CPUTime):-si113,3462 -si(GoalsList,ProbL,ProbU,CPUTime):-si113,3462 -si(GoalsList,ProbL,ProbU,CPUTime):-si113,3462 -solve_i(L0,Succ,D,ProbL0,ProbU0):-solve_i126,3905 -solve_i(L0,Succ,D,ProbL0,ProbU0):-solve_i126,3905 -solve_i(L0,Succ,D,ProbL0,ProbU0):-solve_i126,3905 -sir(GoalsList,ProbL,ProbU,CPUTime):-sir147,4458 -sir(GoalsList,ProbL,ProbU,CPUTime):-sir147,4458 -sir(GoalsList,ProbL,ProbU,CPUTime):-sir147,4458 -solveir(GoalsList,D,ProbL0,ProbU0):-solveir160,4958 -solveir(GoalsList,D,ProbL0,ProbU0):-solveir160,4958 -solveir(GoalsList,D,ProbL0,ProbU0):-solveir160,4958 -sic(GoalsList,ProbL,ProbU,CPUTime):-sic185,5516 -sic(GoalsList,ProbL,ProbU,CPUTime):-sic185,5516 -sic(GoalsList,ProbL,ProbU,CPUTime):-sic185,5516 -solveic(GoalsList,D,ProbL0,ProbU0):-solveic192,5706 -solveic(GoalsList,D,ProbL0,ProbU0):-solveic192,5706 -solveic(GoalsList,D,ProbL0,ProbU0):-solveic192,5706 -compute_prob_deriv(LL,ProbL):-compute_prob_deriv209,6023 -compute_prob_deriv(LL,ProbL):-compute_prob_deriv209,6023 -compute_prob_deriv(LL,ProbL):-compute_prob_deriv209,6023 -print_mem:-print_mem230,6501 -find_deriv(GoalsList,Deriv):-find_deriv240,6926 -find_deriv(GoalsList,Deriv):-find_deriv240,6926 -find_deriv(GoalsList,Deriv):-find_deriv240,6926 -find_derivr(GoalsList,DB,Deriv):-find_derivr244,7025 -find_derivr(GoalsList,DB,Deriv):-find_derivr244,7025 -find_derivr(GoalsList,DB,Deriv):-find_derivr244,7025 -sc(Goals,Evidence,Prob):-sc257,7519 -sc(Goals,Evidence,Prob):-sc257,7519 -sc(Goals,Evidence,Prob):-sc257,7519 -solve_cond(Goals,Evidence,Prob):-solve_cond260,7580 -solve_cond(Goals,Evidence,Prob):-solve_cond260,7580 -solve_cond(Goals,Evidence,Prob):-solve_cond260,7580 -sci(Goals,Evidence,ProbL,ProbU,CPUTime):-sci285,8213 -sci(Goals,Evidence,ProbL,ProbU,CPUTime):-sci285,8213 -sci(Goals,Evidence,ProbL,ProbU,CPUTime):-sci285,8213 -solve_condi(LGoals,LEvidence,SuccGE,SuccE,D,ProbL0,ProbU0):-solve_condi293,8455 -solve_condi(LGoals,LEvidence,SuccGE,SuccE,D,ProbL0,ProbU0):-solve_condi293,8455 -solve_condi(LGoals,LEvidence,SuccGE,SuccE,D,ProbL0,ProbU0):-solve_condi293,8455 -scir(Goals,Evidence,ProbL,ProbU,CPUTime):-scir338,9485 -scir(Goals,Evidence,ProbL,ProbU,CPUTime):-scir338,9485 -scir(Goals,Evidence,ProbL,ProbU,CPUTime):-scir338,9485 -solve_condir(Goals,Evidence,D,ProbL0,ProbU0):-solve_condir345,9684 -solve_condir(Goals,Evidence,D,ProbL0,ProbU0):-solve_condir345,9684 -solve_condir(Goals,Evidence,D,ProbL0,ProbU0):-solve_condir345,9684 -scic(Goals,Evidence,ProbL,ProbU,CPUTime):-scic388,10671 -scic(Goals,Evidence,ProbL,ProbU,CPUTime):-scic388,10671 -scic(Goals,Evidence,ProbL,ProbU,CPUTime):-scic388,10671 -solve_condic(Goals,Evidence,D,ProbL0,ProbU0):-solve_condic395,10870 -solve_condic(Goals,Evidence,D,ProbL0,ProbU0):-solve_condic395,10870 -solve_condic(Goals,Evidence,D,ProbL0,ProbU0):-solve_condic395,10870 -sc(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc442,12064 -sc(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc442,12064 -sc(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc442,12064 -solve_cond(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve_cond445,12201 -solve_cond(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve_cond445,12201 -solve_cond(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve_cond445,12201 -solve_cond_goals(Goals,LE,0,Time1,0):-solve_cond_goals486,13346 -solve_cond_goals(Goals,LE,0,Time1,0):-solve_cond_goals486,13346 -solve_cond_goals(Goals,LE,0,Time1,0):-solve_cond_goals486,13346 -call_compute_prob(NewVarGE,FormulaGE,ProbGE):-call_compute_prob492,13500 -call_compute_prob(NewVarGE,FormulaGE,ProbGE):-call_compute_prob492,13500 -call_compute_prob(NewVarGE,FormulaGE,ProbGE):-call_compute_prob492,13500 -find_deriv_GE(LD,GoalsList,Deriv):-find_deriv_GE508,13816 -find_deriv_GE(LD,GoalsList,Deriv):-find_deriv_GE508,13816 -find_deriv_GE(LD,GoalsList,Deriv):-find_deriv_GE508,13816 -find_deriv_GE(LD,GoalsList,DB,Deriv):-find_deriv_GE513,13934 -find_deriv_GE(LD,GoalsList,DB,Deriv):-find_deriv_GE513,13934 -find_deriv_GE(LD,GoalsList,DB,Deriv):-find_deriv_GE513,13934 -solve([],C,C):-!.solve526,14433 -solve([],C,C):-!.solve526,14433 -solve([],C,C):-!.solve526,14433 -solve([bagof(V,EV^G,L)|T],CIn,COut):-!,solve528,14452 -solve([bagof(V,EV^G,L)|T],CIn,COut):-!,solve528,14452 -solve([bagof(V,EV^G,L)|T],CIn,COut):-!,solve528,14452 -solve([bagof(V,G,L)|T],CIn,COut):-!,solve539,14722 -solve([bagof(V,G,L)|T],CIn,COut):-!,solve539,14722 -solve([bagof(V,G,L)|T],CIn,COut):-!,solve539,14722 -solve([setof(V,EV^G,L)|T],CIn,COut):-!,solve551,14987 -solve([setof(V,EV^G,L)|T],CIn,COut):-!,solve551,14987 -solve([setof(V,EV^G,L)|T],CIn,COut):-!,solve551,14987 -solve([setof(V,G,L)|T],CIn,COut):-!,solve562,15256 -solve([setof(V,G,L)|T],CIn,COut):-!,solve562,15256 -solve([setof(V,G,L)|T],CIn,COut):-!,solve562,15256 -solve([\+ H |T],CIn,COut):-!,solve573,15519 -solve([\+ H |T],CIn,COut):-!,solve573,15519 -solve([\+ H |T],CIn,COut):-!,solve573,15519 -solve([H|T],CIn,COut):-solve583,15706 -solve([H|T],CIn,COut):-solve583,15706 -solve([H|T],CIn,COut):-solve583,15706 -solve([H|T],CIn,COut):-solve588,15776 -solve([H|T],CIn,COut):-solve588,15776 -solve([H|T],CIn,COut):-solve588,15776 -solve([H|T],CIn,COut):-solve593,15856 -solve([H|T],CIn,COut):-solve593,15856 -solve([H|T],CIn,COut):-solve593,15856 -solvei([],_DB,C,C,[]):-!.solvei598,15944 -solvei([],_DB,C,C,[]):-!.solvei598,15944 -solvei([],_DB,C,C,[]):-!.solvei598,15944 -solvei(G,0,C,C,G):-!.solvei600,15971 -solvei(G,0,C,C,G):-!.solvei600,15971 -solvei(G,0,C,C,G):-!.solvei600,15971 -solvei([\+ H |T],DB,CIn,COut,G):-!,solvei602,15994 -solvei([\+ H |T],DB,CIn,COut,G):-!,solvei602,15994 -solvei([\+ H |T],DB,CIn,COut,G):-!,solvei602,15994 -solvei([H|T],DB,CIn,COut,G):-solvei617,16281 -solvei([H|T],DB,CIn,COut,G):-solvei617,16281 -solvei([H|T],DB,CIn,COut,G):-solvei617,16281 -solvei([H|T],DB,CIn,COut,G):-solvei622,16363 -solvei([H|T],DB,CIn,COut,G):-solvei622,16363 -solvei([H|T],DB,CIn,COut,G):-solvei622,16363 -solvei([H|T],DB,CIn,COut,G):-solvei628,16469 -solvei([H|T],DB,CIn,COut,G):-solvei628,16469 -solvei([H|T],DB,CIn,COut,G):-solvei628,16469 -solver([],_DB,C,C):-!.solver633,16583 -solver([],_DB,C,C):-!.solver633,16583 -solver([],_DB,C,C):-!.solver633,16583 -solver(_G,0,C,[(_,pruned,_)|C]):-!.solver635,16607 -solver(_G,0,C,[(_,pruned,_)|C]):-!.solver635,16607 -solver(_G,0,C,[(_,pruned,_)|C]):-!.solver635,16607 -solver([\+ H |T],DB,CIn,COut):-!,solver637,16644 -solver([\+ H |T],DB,CIn,COut):-!,solver637,16644 -solver([\+ H |T],DB,CIn,COut):-!,solver637,16644 -solver([H|T],DB,CIn,COut):-solver653,16963 -solver([H|T],DB,CIn,COut):-solver653,16963 -solver([H|T],DB,CIn,COut):-solver653,16963 -solver([H|T],DB,CIn,COut):-solver658,17041 -solver([H|T],DB,CIn,COut):-solver658,17041 -solver([H|T],DB,CIn,COut):-solver658,17041 -solver([H|T],DB,CIn,COut):-solver664,17143 -solver([H|T],DB,CIn,COut):-solver664,17143 -solver([H|T],DB,CIn,COut):-solver664,17143 -solvec([],_DB,C,C,P,P,false):-!.solvec670,17254 -solvec([],_DB,C,C,P,P,false):-!.solvec670,17254 -solvec([],_DB,C,C,P,P,false):-!.solvec670,17254 -solvec(_G,0,C,C,P,P,true):-!.solvec672,17288 -solvec(_G,0,C,C,P,P,true):-!.solvec672,17288 -solvec(_G,0,C,C,P,P,true):-!.solvec672,17288 -solvec(_G,_DB,C,C,P,P,true):-solvec674,17319 -solvec(_G,_DB,C,C,P,P,true):-solvec674,17319 -solvec(_G,_DB,C,C,P,P,true):-solvec674,17319 -solvec([\+ H |T],DB,CIn,COut,P0,P1,Pruned):-!,solvec678,17387 -solvec([\+ H |T],DB,CIn,COut,P0,P1,Pruned):-!,solvec678,17387 -solvec([\+ H |T],DB,CIn,COut,P0,P1,Pruned):-!,solvec678,17387 -solvec([H|T],DB,CIn,COut,P0,P1,Pruned):-solvec696,17769 -solvec([H|T],DB,CIn,COut,P0,P1,Pruned):-solvec696,17769 -solvec([H|T],DB,CIn,COut,P0,P1,Pruned):-solvec696,17769 -solvec([H|T],DB,CIn,COut,P0,P1,Pruned):-solvec701,17873 -solvec([H|T],DB,CIn,COut,P0,P1,Pruned):-solvec701,17873 -solvec([H|T],DB,CIn,COut,P0,P1,Pruned):-solvec701,17873 -solvec([H|T],DB,CIn,COut,P0,P1,Pruned):-solvec707,18001 -solvec([H|T],DB,CIn,COut,P0,P1,Pruned):-solvec707,18001 -solvec([H|T],DB,CIn,COut,P0,P1,Pruned):-solvec707,18001 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres713,18143 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres713,18143 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres713,18143 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres718,18243 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres718,18243 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres718,18243 -solve_presi(R,S,N,B,T,DB,CIn,COut,G):-solve_presi723,18341 -solve_presi(R,S,N,B,T,DB,CIn,COut,G):-solve_presi723,18341 -solve_presi(R,S,N,B,T,DB,CIn,COut,G):-solve_presi723,18341 -solve_presi(R,S,N,B,T,DB,CIn,COut,G):-solve_presi728,18459 -solve_presi(R,S,N,B,T,DB,CIn,COut,G):-solve_presi728,18459 -solve_presi(R,S,N,B,T,DB,CIn,COut,G):-solve_presi728,18459 -solve_presr(R,S,N,B,T,DB,CIn,COut):-solve_presr734,18570 -solve_presr(R,S,N,B,T,DB,CIn,COut):-solve_presr734,18570 -solve_presr(R,S,N,B,T,DB,CIn,COut):-solve_presr734,18570 -solve_presr(R,S,N,B,T,DB,CIn,COut):-solve_presr739,18684 -solve_presr(R,S,N,B,T,DB,CIn,COut):-solve_presr739,18684 -solve_presr(R,S,N,B,T,DB,CIn,COut):-solve_presr739,18684 -solve_presc(R,S,N,B,T,DB,CIn,COut,_,P0,P1,Pruned):-solve_presc745,18791 -solve_presc(R,S,N,B,T,DB,CIn,COut,_,P0,P1,Pruned):-solve_presc745,18791 -solve_presc(R,S,N,B,T,DB,CIn,COut,_,P0,P1,Pruned):-solve_presc745,18791 -solve_presc(R,S,N,B,T,DB,CIn,COut,P,P0,P1,Pruned):-solve_presc750,18933 -solve_presc(R,S,N,B,T,DB,CIn,COut,P,P0,P1,Pruned):-solve_presc750,18933 -solve_presc(R,S,N,B,T,DB,CIn,COut,P,P0,P1,Pruned):-solve_presc750,18933 -build_initial_graph(N,G):-build_initial_graph757,19081 -build_initial_graph(N,G):-build_initial_graph757,19081 -build_initial_graph(N,G):-build_initial_graph757,19081 -build_graph([],_N,G,G).build_graph762,19154 -build_graph([],_N,G,G).build_graph762,19154 -build_graph([(_V,C)|T],N,GIn,GOut):-build_graph764,19180 -build_graph([(_V,C)|T],N,GIn,GOut):-build_graph764,19180 -build_graph([(_V,C)|T],N,GIn,GOut):-build_graph764,19180 -compatible(_C,[],_N,_N1,G,G). compatible769,19289 -compatible(_C,[],_N,_N1,G,G). compatible769,19289 -compatible(C,[(_V,H)|T],N,N1,GIn,GOut):-compatible771,19321 -compatible(C,[(_V,H)|T],N,N1,GIn,GOut):-compatible771,19321 -compatible(C,[(_V,H)|T],N,N1,GIn,GOut):-compatible771,19321 -compatible([],_C).compatible780,19476 -compatible([],_C).compatible780,19476 -compatible([(N,R,S)|T],C):-compatible782,19496 -compatible([(N,R,S)|T],C):-compatible782,19496 -compatible([(N,R,S)|T],C):-compatible782,19496 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head786,19588 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head786,19588 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head788,19637 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head788,19637 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head788,19637 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head791,19740 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head791,19740 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head791,19740 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head795,19854 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head795,19854 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head795,19854 -build_Cset(_LD,[],[],C,C).build_Cset801,19972 -build_Cset(_LD,[],[],C,C).build_Cset801,19972 -build_Cset(LD,[H|T],[V|L],CIn,COut):-build_Cset803,20002 -build_Cset(LD,[H|T],[V|L],CIn,COut):-build_Cset803,20002 -build_Cset(LD,[H|T],[V|L],CIn,COut):-build_Cset803,20002 -find_rule(H,(R,S,N),Body,C):-find_rule813,20339 -find_rule(H,(R,S,N),Body,C):-find_rule813,20339 -find_rule(H,(R,S,N),Body,C):-find_rule813,20339 -find_rule(H,(R,S,Number),Body,C):-find_rule818,20480 -find_rule(H,(R,S,Number),Body,C):-find_rule818,20480 -find_rule(H,(R,S,Number),Body,C):-find_rule818,20480 -find_rulec(H,(R,S,N),Body,C,P):-find_rulec822,20620 -find_rulec(H,(R,S,N),Body,C,P):-find_rulec822,20620 -find_rulec(H,(R,S,N),Body,C,P):-find_rulec822,20620 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head828,20768 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head828,20768 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head831,20826 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head831,20826 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head831,20826 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head835,20976 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head835,20976 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head835,20976 -not_different(_N,_N1,S,S1):-not_different840,21108 -not_different(_N,_N1,S,S1):-not_different840,21108 -not_different(_N,_N1,S,S1):-not_different840,21108 -not_different(N,N1,S,S1):-not_different843,21149 -not_different(N,N1,S,S1):-not_different843,21149 -not_different(N,N1,S,S1):-not_different843,21149 -not_different(N,N,S,S).not_different847,21200 -not_different(N,N,S,S).not_different847,21200 -member_head(H,[(H:_P)|_T],N,N).member_head850,21226 -member_head(H,[(H:_P)|_T],N,N).member_head850,21226 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head852,21259 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head852,21259 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head852,21259 -member_headc(H,[(H:P)|_T],N,N,P).member_headc856,21339 -member_headc(H,[(H:P)|_T],N,N,P).member_headc856,21339 -member_headc(H,[(_H:_P)|T],NIn,NOut,P):-member_headc858,21374 -member_headc(H,[(_H:_P)|T],NIn,NOut,P):-member_headc858,21374 -member_headc(H,[(_H:_P)|T],NIn,NOut,P):-member_headc858,21374 -choose_clauses(C,[],C).choose_clauses866,21653 -choose_clauses(C,[],C).choose_clauses866,21653 -choose_clauses(CIn,[D|T],COut):-choose_clauses868,21678 -choose_clauses(CIn,[D|T],COut):-choose_clauses868,21678 -choose_clauses(CIn,[D|T],COut):-choose_clauses868,21678 -choose_clauses(CIn,[D|T],COut):-choose_clauses875,21845 -choose_clauses(CIn,[D|T],COut):-choose_clauses875,21845 -choose_clauses(CIn,[D|T],COut):-choose_clauses875,21845 -choose_clausesc(C,[],C,P,P).choose_clausesc882,22020 -choose_clausesc(C,[],C,P,P).choose_clausesc882,22020 -choose_clausesc(CIn,[D|T],COut,P0,P1):-choose_clausesc884,22050 -choose_clausesc(CIn,[D|T],COut,P0,P1):-choose_clausesc884,22050 -choose_clausesc(CIn,[D|T],COut,P0,P1):-choose_clausesc884,22050 -choose_clausesc(CIn,[D|T],COut,P0,P1):-choose_clausesc891,22238 -choose_clausesc(CIn,[D|T],COut,P0,P1):-choose_clausesc891,22238 -choose_clausesc(CIn,[D|T],COut,P0,P1):-choose_clausesc891,22238 -choose_clauses_DB(C,[],C).choose_clauses_DB902,22512 -choose_clauses_DB(C,[],C).choose_clauses_DB902,22512 -choose_clauses_DB(CIn,[D|T],COut):-choose_clauses_DB904,22540 -choose_clauses_DB(CIn,[D|T],COut):-choose_clauses_DB904,22540 -choose_clauses_DB(CIn,[D|T],COut):-choose_clauses_DB904,22540 -choose_clauses_DB(CIn,[D|T],COut):-choose_clauses_DB911,22736 -choose_clauses_DB(CIn,[D|T],COut):-choose_clauses_DB911,22736 -choose_clauses_DB(CIn,[D|T],COut):-choose_clauses_DB911,22736 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons920,22945 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons920,22945 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons920,22945 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons922,22976 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons922,22976 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons922,22976 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons926,23054 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons926,23054 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons926,23054 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head933,23350 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head933,23350 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head935,23406 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head935,23406 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head935,23406 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head939,23520 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head939,23520 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head939,23520 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs942,23630 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs942,23630 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs942,23630 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs946,23730 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs946,23730 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs946,23730 -choose_a_headc(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T],P,P):-choose_a_headc952,23926 -choose_a_headc(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T],P,P):-choose_a_headc952,23926 -choose_a_headc(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T],P,P):-choose_a_headc952,23926 -choose_a_headc(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T],P0,P1):-choose_a_headc959,24142 -choose_a_headc(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T],P0,P1):-choose_a_headc959,24142 -choose_a_headc(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T],P0,P1):-choose_a_headc959,24142 -choose_a_headc(N,R,S,[H|T],[H|T1],P0,P1):-choose_a_headc967,24340 -choose_a_headc(N,R,S,[H|T],[H|T1],P0,P1):-choose_a_headc967,24340 -choose_a_headc(N,R,S,[H|T],[H|T1],P0,P1):-choose_a_headc967,24340 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head972,24517 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head972,24517 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head972,24517 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head979,24728 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head979,24728 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head979,24728 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head984,24835 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head984,24835 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head984,24835 -new_head(N,R,S,N1):-new_head990,24986 -new_head(N,R,S,N1):-new_head990,24986 -new_head(N,R,S,N1):-new_head990,24986 -new_head(N,R,S,N1):-new_head996,25121 -new_head(N,R,S,N1):-new_head996,25121 -new_head(N,R,S,N1):-new_head996,25121 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head1002,25278 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head1002,25278 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head1002,25278 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head1005,25362 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head1005,25362 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head1005,25362 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present1011,25583 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present1011,25583 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present1011,25583 -already_present(N,R,S,[_H|T]):-already_present1014,25630 -already_present(N,R,S,[_H|T]):-already_present1014,25630 -already_present(N,R,S,[_H|T]):-already_present1014,25630 -rem_dup_lists([],L,L).rem_dup_lists1021,25912 -rem_dup_lists([],L,L).rem_dup_lists1021,25912 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1023,25936 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1023,25936 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1023,25936 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1027,26034 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1027,26034 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1027,26034 -member_subset(E,[H|_T]):-member_subset1030,26091 -member_subset(E,[H|_T]):-member_subset1030,26091 -member_subset(E,[H|_T]):-member_subset1030,26091 -member_subset(E,[_H|T]):-member_subset1033,26137 -member_subset(E,[_H|T]):-member_subset1033,26137 -member_subset(E,[_H|T]):-member_subset1033,26137 -separate_ulbi([],L,L,U,U,I,I):-!.separate_ulbi1036,26185 -separate_ulbi([],L,L,U,U,I,I):-!.separate_ulbi1036,26185 -separate_ulbi([],L,L,U,U,I,I):-!.separate_ulbi1036,26185 -separate_ulbi([([],H)|T],L0,[H|L1],U0,[H|U1],I0,I1):-separate_ulbi1038,26220 -separate_ulbi([([],H)|T],L0,[H|L1],U0,[H|U1],I0,I1):-separate_ulbi1038,26220 -separate_ulbi([([],H)|T],L0,[H|L1],U0,[H|U1],I0,I1):-separate_ulbi1038,26220 -separate_ulbi([(G,H)|T],L0,L1,U0,[H1|U1],I0,[(G,H)|I1]):-separate_ulbi1042,26316 -separate_ulbi([(G,H)|T],L0,L1,U0,[H1|U1],I0,[(G,H)|I1]):-separate_ulbi1042,26316 -separate_ulbi([(G,H)|T],L0,L1,U0,[H1|U1],I0,[(G,H)|I1]):-separate_ulbi1042,26316 -separate_ulb([],L,L,U,U):-!.separate_ulb1047,26439 -separate_ulb([],L,L,U,U):-!.separate_ulb1047,26439 -separate_ulb([],L,L,U,U):-!.separate_ulb1047,26439 -separate_ulb([H|T],L0,[H|L1],U0,[H|U1]):-separate_ulb1049,26469 -separate_ulb([H|T],L0,[H|L1],U0,[H|U1]):-separate_ulb1049,26469 -separate_ulb([H|T],L0,[H|L1],U0,[H|U1]):-separate_ulb1049,26469 -separate_ulb([H|T],L0,L1,U0,[H1|U1]):-separate_ulb1053,26556 -separate_ulb([H|T],L0,L1,U0,[H1|U1]):-separate_ulb1053,26556 -separate_ulb([H|T],L0,L1,U0,[H1|U1]):-separate_ulb1053,26556 -separate_ulbc([],L,L,P,P):-!.separate_ulbc1058,26653 -separate_ulbc([],L,L,P,P):-!.separate_ulbc1058,26653 -separate_ulbc([],L,L,P,P):-!.separate_ulbc1058,26653 -separate_ulbc([(_H,P,true)|T],L0,L1,P0,P1):-!,separate_ulbc1060,26684 -separate_ulbc([(_H,P,true)|T],L0,L1,P0,P1):-!,separate_ulbc1060,26684 -separate_ulbc([(_H,P,true)|T],L0,L1,P0,P1):-!,separate_ulbc1060,26684 -separate_ulbc([(H,_P,false)|T],L0,[H|L1],P0,P1):-separate_ulbc1064,26776 -separate_ulbc([(H,_P,false)|T],L0,[H|L1],P0,P1):-separate_ulbc1064,26776 -separate_ulbc([(H,_P,false)|T],L0,[H|L1],P0,P1):-separate_ulbc1064,26776 -get_ground([],[]):-!.get_ground1067,26858 -get_ground([],[]):-!.get_ground1067,26858 -get_ground([],[]):-!.get_ground1067,26858 -get_ground([H|T],[H|T1]):-get_ground1069,26881 -get_ground([H|T],[H|T1]):-get_ground1069,26881 -get_ground([H|T],[H|T1]):-get_ground1069,26881 -get_ground([_H|T],T1):-get_ground1073,26942 -get_ground([_H|T],T1):-get_ground1073,26942 -get_ground([_H|T],T1):-get_ground1073,26942 -build_formula([],[],Var,Var,C,C).build_formula1087,27436 -build_formula([],[],Var,Var,C,C).build_formula1087,27436 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula1089,27471 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula1089,27471 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula1089,27471 -build_formula([],[],Var,Var).build_formula1095,27621 -build_formula([],[],Var,Var).build_formula1095,27621 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula1097,27652 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula1097,27652 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula1097,27652 -build_term([],[],Var,Var).build_term1102,27762 -build_term([],[],Var,Var).build_term1102,27762 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term1104,27790 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term1104,27790 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term1104,27790 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term1107,27874 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term1107,27874 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term1107,27874 -nth0_eq(N,N,[H|_T],El):-nth0_eq1120,28259 -nth0_eq(N,N,[H|_T],El):-nth0_eq1120,28259 -nth0_eq(N,N,[H|_T],El):-nth0_eq1120,28259 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq1123,28295 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq1123,28295 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq1123,28295 -var2numbers([],_N,[]).var2numbers1130,28535 -var2numbers([],_N,[]).var2numbers1130,28535 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers1132,28559 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers1132,28559 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers1132,28559 -find_probs(R,S,Probs):-find_probs1138,28699 -find_probs(R,S,Probs):-find_probs1138,28699 -find_probs(R,S,Probs):-find_probs1138,28699 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs1142,28782 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs1142,28782 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs1142,28782 -get_probs([],[]).get_probs1146,28873 -get_probs([],[]).get_probs1146,28873 -get_probs([_H:P|T],[P1|T1]):-get_probs1148,28892 -get_probs([_H:P|T],[P1|T1]):-get_probs1148,28892 -get_probs([_H:P|T],[P1|T1]):-get_probs1148,28892 -list_el(0,_P,[]):-!.list_el1152,28951 -list_el(0,_P,[]):-!.list_el1152,28951 -list_el(0,_P,[]):-!.list_el1152,28951 -list_el(N,P,[P|T]):-list_el1154,28973 -list_el(N,P,[P|T]):-list_el1154,28973 -list_el(N,P,[P|T]):-list_el1154,28973 -p(File):-p1165,29290 -p(File):-p1165,29290 -p(File):-p1165,29290 -parse(File):-parse1168,29315 -parse(File):-parse1168,29315 -parse(File):-parse1168,29315 -process_clauses([(end_of_file,[])],_N):-!.process_clauses1179,29606 -process_clauses([(end_of_file,[])],_N):-!.process_clauses1179,29606 -process_clauses([(end_of_file,[])],_N):-!.process_clauses1179,29606 -process_clauses([((H:-B),V)|T],N):-process_clauses1181,29650 -process_clauses([((H:-B),V)|T],N):-process_clauses1181,29650 -process_clauses([((H:-B),V)|T],N):-process_clauses1181,29650 -process_clauses([((H:-B),V)|T],N):-process_clauses1193,30006 -process_clauses([((H:-B),V)|T],N):-process_clauses1193,30006 -process_clauses([((H:-B),V)|T],N):-process_clauses1193,30006 -process_clauses([((H:-B),V)|T],N):-process_clauses1206,30278 -process_clauses([((H:-B),V)|T],N):-process_clauses1206,30278 -process_clauses([((H:-B),V)|T],N):-process_clauses1206,30278 -process_clauses([((H:-B),_V)|T],N):-!,process_clauses1219,30551 -process_clauses([((H:-B),_V)|T],N):-!,process_clauses1219,30551 -process_clauses([((H:-B),_V)|T],N):-!,process_clauses1219,30551 -process_clauses([(H,V)|T],N):-process_clauses1224,30656 -process_clauses([(H,V)|T],N):-process_clauses1224,30656 -process_clauses([(H,V)|T],N):-process_clauses1224,30656 -process_clauses([(H,V)|T],N):-process_clauses1235,30880 -process_clauses([(H,V)|T],N):-process_clauses1235,30880 -process_clauses([(H,V)|T],N):-process_clauses1235,30880 -process_clauses([(H,_V)|T],N):-process_clauses1246,31105 -process_clauses([(H,_V)|T],N):-process_clauses1246,31105 -process_clauses([(H,_V)|T],N):-process_clauses1246,31105 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules1250,31186 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules1250,31186 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules1250,31186 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules1252,31232 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules1252,31232 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules1252,31232 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules1254,31283 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules1254,31283 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules1254,31283 -process_head(HL,NHL):-process_head1263,31544 -process_head(HL,NHL):-process_head1263,31544 -process_head(HL,NHL):-process_head1263,31544 -ground_prob([]).ground_prob1270,31636 -ground_prob([]).ground_prob1270,31636 -ground_prob([_H:PH|T]):-ground_prob1272,31654 -ground_prob([_H:PH|T]):-ground_prob1272,31654 -ground_prob([_H:PH|T]):-ground_prob1272,31654 -process_head_ground([H:PH],P,[H:PH1|Null]):-process_head_ground1276,31710 -process_head_ground([H:PH],P,[H:PH1|Null]):-process_head_ground1276,31710 -process_head_ground([H:PH],P,[H:PH1|Null]):-process_head_ground1276,31710 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground1288,31902 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground1288,31902 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground1288,31902 -process_body([],V,V).process_body1294,32105 -process_body([],V,V).process_body1294,32105 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1296,32128 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1296,32128 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1296,32128 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body1303,32284 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body1303,32284 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body1303,32284 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1308,32398 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1308,32398 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1308,32398 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body1315,32554 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body1315,32554 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body1315,32554 -process_body([_H|T],VIn,VOut):-!,process_body1320,32668 -process_body([_H|T],VIn,VOut):-!,process_body1320,32668 -process_body([_H|T],VIn,VOut):-!,process_body1320,32668 -get_var_list([],[]).get_var_list1323,32730 -get_var_list([],[]).get_var_list1323,32730 -get_var_list([H|T],[H|T1]):-get_var_list1325,32752 -get_var_list([H|T],[H|T1]):-get_var_list1325,32752 -get_var_list([H|T],[H|T1]):-get_var_list1325,32752 -get_var_list([H|T],VarOut):-!,get_var_list1329,32814 -get_var_list([H|T],VarOut):-!,get_var_list1329,32814 -get_var_list([H|T],VarOut):-!,get_var_list1329,32814 -get_var(A,[A]):-get_var1334,32908 -get_var(A,[A]):-get_var1334,32908 -get_var(A,[A]):-get_var1334,32908 -get_var(A,V):-get_var1337,32937 -get_var(A,V):-get_var1337,32937 -get_var(A,V):-get_var1337,32937 -remove_vars([],V,V).remove_vars1341,32992 -remove_vars([],V,V).remove_vars1341,32992 -remove_vars([H|T],VIn,VOut):-remove_vars1343,33014 -remove_vars([H|T],VIn,VOut):-remove_vars1343,33014 -remove_vars([H|T],VIn,VOut):-remove_vars1343,33014 -delete_var(_H,[],[]).delete_var1347,33093 -delete_var(_H,[],[]).delete_var1347,33093 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var1349,33116 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var1349,33116 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var1349,33116 -delete_var(_V,[_H|T],T).delete_var1353,33189 -delete_var(_V,[_H|T],T).delete_var1353,33189 -read_clauses(S,Clauses):-read_clauses1356,33267 -read_clauses(S,Clauses):-read_clauses1356,33267 -read_clauses(S,Clauses):-read_clauses1356,33267 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body1364,33407 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body1364,33407 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body1364,33407 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body1373,33559 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body1373,33559 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body1373,33559 -extract_vars_cl(end_of_file,[]).extract_vars_cl1383,33737 -extract_vars_cl(end_of_file,[]).extract_vars_cl1383,33737 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl1385,33771 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl1385,33771 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl1385,33771 -pair(_VN,[],[]).pair1395,33887 -pair(_VN,[],[]).pair1395,33887 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair1397,33905 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair1397,33905 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair1397,33905 -extract_vars(Var,V0,V):-extract_vars1401,33963 -extract_vars(Var,V0,V):-extract_vars1401,33963 -extract_vars(Var,V0,V):-extract_vars1401,33963 -extract_vars(Term,V0,V):-extract_vars1409,34060 -extract_vars(Term,V0,V):-extract_vars1409,34060 -extract_vars(Term,V0,V):-extract_vars1409,34060 -extract_vars_list([],V,V).extract_vars_list1414,34138 -extract_vars_list([],V,V).extract_vars_list1414,34138 -extract_vars_list([Term|T],V0,V):-extract_vars_list1416,34166 -extract_vars_list([Term|T],V0,V):-extract_vars_list1416,34166 -extract_vars_list([Term|T],V0,V):-extract_vars_list1416,34166 -listN(N,N,[]):-!.listN1421,34259 -listN(N,N,[]):-!.listN1421,34259 -listN(N,N,[]):-!.listN1421,34259 -listN(NIn,N,[NIn|T]):-listN1423,34278 -listN(NIn,N,[NIn|T]):-listN1423,34278 -listN(NIn,N,[NIn|T]):-listN1423,34278 -list2or([X],X):-list2or1429,34437 -list2or([X],X):-list2or1429,34437 -list2or([X],X):-list2or1429,34437 -list2or([H|T],(H ; Ta)):-!,list2or1432,34469 -list2or([H|T],(H ; Ta)):-!,list2or1432,34469 -list2or([H|T],(H ; Ta)):-!,list2or1432,34469 -list2and([X],X):-list2and1435,34514 -list2and([X],X):-list2and1435,34514 -list2and([X],X):-list2and1435,34514 -list2and([H|T],(H,Ta)):-!,list2and1438,34546 -list2and([H|T],(H,Ta)):-!,list2and1438,34546 -list2and([H|T],(H,Ta)):-!,list2and1438,34546 -member_eq(A,[H|_T]):-member_eq1441,34591 -member_eq(A,[H|_T]):-member_eq1441,34591 -member_eq(A,[H|_T]):-member_eq1441,34591 -member_eq(A,[_H|T]):-member_eq1444,34624 -member_eq(A,[_H|T]):-member_eq1444,34624 -member_eq(A,[_H|T]):-member_eq1444,34624 -subset_my([],_).subset_my1447,34664 -subset_my([],_).subset_my1447,34664 -subset_my([H|T],L):-subset_my1449,34682 -subset_my([H|T],L):-subset_my1449,34682 -subset_my([H|T],L):-subset_my1449,34682 -remove_duplicates_eq([],[]).remove_duplicates_eq1453,34738 -remove_duplicates_eq([],[]).remove_duplicates_eq1453,34738 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq1455,34768 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq1455,34768 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq1455,34768 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq1459,34850 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq1459,34850 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq1459,34850 -builtin(_A is _B).builtin1462,34917 -builtin(_A is _B).builtin1462,34917 -builtin(_A > _B).builtin1463,34936 -builtin(_A > _B).builtin1463,34936 -builtin(_A < _B).builtin1464,34954 -builtin(_A < _B).builtin1464,34954 -builtin(_A >= _B).builtin1465,34972 -builtin(_A >= _B).builtin1465,34972 -builtin(_A =< _B).builtin1466,34991 -builtin(_A =< _B).builtin1466,34991 -builtin(_A =:= _B).builtin1467,35010 -builtin(_A =:= _B).builtin1467,35010 -builtin(_A =\= _B).builtin1468,35030 -builtin(_A =\= _B).builtin1468,35030 -builtin(true).builtin1469,35050 -builtin(true).builtin1469,35050 -builtin(false).builtin1470,35065 -builtin(false).builtin1470,35065 -builtin(_A = _B).builtin1471,35081 -builtin(_A = _B).builtin1471,35081 -builtin(_A==_B).builtin1472,35099 -builtin(_A==_B).builtin1472,35099 -builtin(_A\=_B).builtin1473,35116 -builtin(_A\=_B).builtin1473,35116 -builtin(_A\==_B).builtin1474,35133 -builtin(_A\==_B).builtin1474,35133 -builtin(length(_L,_N)).builtin1475,35151 -builtin(length(_L,_N)).builtin1475,35151 -builtin(member(_El,_L)).builtin1476,35175 -builtin(member(_El,_L)).builtin1476,35175 -builtin(average(_L,_Av)).builtin1477,35200 -builtin(average(_L,_Av)).builtin1477,35200 -builtin(max_list(_L,_Max)).builtin1478,35226 -builtin(max_list(_L,_Max)).builtin1478,35226 -builtin(min_list(_L,_Max)).builtin1479,35254 -builtin(min_list(_L,_Max)).builtin1479,35254 -builtin(nth0(_,_,_)).builtin1480,35282 -builtin(nth0(_,_,_)).builtin1480,35282 -builtin(nth(_,_,_)).builtin1481,35304 -builtin(nth(_,_,_)).builtin1481,35304 -average(L,Av):-average1482,35325 -average(L,Av):-average1482,35325 -average(L,Av):-average1482,35325 -clique(Graph,Clique):-clique1487,35388 -clique(Graph,Clique):-clique1487,35388 -clique(Graph,Clique):-clique1487,35388 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1491,35488 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1491,35488 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1491,35488 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1497,35657 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1497,35657 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1497,35657 -extend(_G,[],[],CompSub,CompSub):-!.extend1500,35732 -extend(_G,[],[],CompSub,CompSub):-!.extend1500,35732 -extend(_G,[],[],CompSub,CompSub):-!.extend1500,35732 -extend(G,Cand,Not,CS,CSOut):-extend1502,35770 -extend(G,Cand,Not,CS,CSOut):-extend1502,35770 -extend(G,Cand,Not,CS,CSOut):-extend1502,35770 -set(Parameter,Value):-set1506,35903 -set(Parameter,Value):-set1506,35903 -set(Parameter,Value):-set1506,35903 - -packages/cplint/lpadvel.pl,55205 -setting(epsilon_parsing,0.00001).setting32,805 -setting(epsilon_parsing,0.00001).setting32,805 -setting(save_dot,false).setting33,839 -setting(save_dot,false).setting33,839 -setting(ground_body,true). setting34,864 -setting(ground_body,true). setting34,864 -setting(cpt_zero,0.0001). setting40,1153 -setting(cpt_zero,0.0001). setting40,1153 -setting(order,min_def). setting43,1208 -setting(order,min_def). setting43,1208 -s(GL,P):-s51,1473 -s(GL,P):-s51,1473 -s(GL,P):-s51,1473 -s(_GL,0.0).s55,1542 -s(_GL,0.0).s55,1542 -sc(GL,GL,1.0).sc62,1878 -sc(GL,GL,1.0).sc62,1878 -sc(GL,GLC,P):-sc64,1894 -sc(GL,GLC,P):-sc64,1894 -sc(GL,GLC,P):-sc64,1894 -sc(_GL,_GLC,0.0).sc72,2010 -sc(_GL,_GLC,0.0).sc72,2010 -get_ground_portion(GL,CL):-get_ground_portion74,2029 -get_ground_portion(GL,CL):-get_ground_portion74,2029 -get_ground_portion(GL,CL):-get_ground_portion74,2029 -get_ground_portion(GL,GLC,CL,Undef):-get_ground_portion81,2201 -get_ground_portion(GL,GLC,CL,Undef):-get_ground_portion81,2201 -get_ground_portion(GL,GLC,CL,Undef):-get_ground_portion81,2201 -s(GL,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-s102,2822 -s(GL,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-s102,2822 -s(GL,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-s102,2822 -print_mem:-print_mem130,3462 -sc(GL,GL,1.0,0.0,0.0,0.0,0.0).sc145,4115 -sc(GL,GL,1.0,0.0,0.0,0.0,0.0).sc145,4115 -sc(GL,GLC,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc147,4147 -sc(GL,GLC,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc147,4147 -sc(GL,GLC,P,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc147,4147 -remove_head([],[]).remove_head180,4876 -remove_head([],[]).remove_head180,4876 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head182,4897 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head182,4897 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head182,4897 -append_all([],L,L):-!.append_all185,4957 -append_all([],L,L):-!.append_all185,4957 -append_all([],L,L):-!.append_all185,4957 -append_all([LIntH|IntT],IntIn,IntOut):-append_all187,4981 -append_all([LIntH|IntT],IntIn,IntOut):-append_all187,4981 -append_all([LIntH|IntT],IntIn,IntOut):-append_all187,4981 -process_goals([],[],[]).process_goals191,5086 -process_goals([],[],[]).process_goals191,5086 -process_goals([H|T],[HG|TG],[HV|TV]):-process_goals193,5112 -process_goals([H|T],[HG|TG],[HV|TV]):-process_goals193,5112 -process_goals([H|T],[HG|TG],[HV|TV]):-process_goals193,5112 -build_ground_lpad([],_N,[]).build_ground_lpad198,5211 -build_ground_lpad([],_N,[]).build_ground_lpad198,5211 -build_ground_lpad([(R,S)|T],N,[(N1,Head1,Body1)|T1]):-build_ground_lpad200,5241 -build_ground_lpad([(R,S)|T],N,[(N1,Head1,Body1)|T1]):-build_ground_lpad200,5241 -build_ground_lpad([(R,S)|T],N,[(N1,Head1,Body1)|T1]):-build_ground_lpad200,5241 -remove_built_ins([],[]):-!.remove_built_ins207,5423 -remove_built_ins([],[]):-!.remove_built_ins207,5423 -remove_built_ins([],[]):-!.remove_built_ins207,5423 -remove_built_ins([\+H|T],T1):-remove_built_ins209,5452 -remove_built_ins([\+H|T],T1):-remove_built_ins209,5452 -remove_built_ins([\+H|T],T1):-remove_built_ins209,5452 -remove_built_ins([H|T],T1):-remove_built_ins213,5524 -remove_built_ins([H|T],T1):-remove_built_ins213,5524 -remove_built_ins([H|T],T1):-remove_built_ins213,5524 -remove_built_ins([H|T],[H|T1]):-remove_built_ins217,5594 -remove_built_ins([H|T],[H|T1]):-remove_built_ins217,5594 -remove_built_ins([H|T],[H|T1]):-remove_built_ins217,5594 -merge_identical([],[]):-!.merge_identical220,5653 -merge_identical([],[]):-!.merge_identical220,5653 -merge_identical([],[]):-!.merge_identical220,5653 -merge_identical([A:P|T],[A:P1|Head]):-merge_identical222,5681 -merge_identical([A:P|T],[A:P1|Head]):-merge_identical222,5681 -merge_identical([A:P|T],[A:P1|Head]):-merge_identical222,5681 -find_identical(_A,P,[],P,[]):-!.find_identical226,5778 -find_identical(_A,P,[],P,[]):-!.find_identical226,5778 -find_identical(_A,P,[],P,[]):-!.find_identical226,5778 -find_identical(A,P0,[A:P|T],P1,T1):-!,find_identical228,5812 -find_identical(A,P0,[A:P|T],P1,T1):-!,find_identical228,5812 -find_identical(A,P0,[A:P|T],P1,T1):-!,find_identical228,5812 -find_identical(A,P0,[H:P|T],P1,[H:P|T1]):-find_identical232,5896 -find_identical(A,P0,[H:P|T],P1,[H:P|T1]):-find_identical232,5896 -find_identical(A,P0,[H:P|T],P1,[H:P|T1]):-find_identical232,5896 -convert_to_bn(CL,GL,GLC,P):-convert_to_bn235,5971 -convert_to_bn(CL,GL,GLC,P):-convert_to_bn235,5971 -convert_to_bn(CL,GL,GLC,P):-convert_to_bn235,5971 -max_card_order([],SortedAtoms,SortedAtoms,_Graph):-!.max_card_order260,6651 -max_card_order([],SortedAtoms,SortedAtoms,_Graph):-!.max_card_order260,6651 -max_card_order([],SortedAtoms,SortedAtoms,_Graph):-!.max_card_order260,6651 -max_card_order(Atoms,SortedAtoms0,SortedAtoms1,Graph):-max_card_order262,6706 -max_card_order(Atoms,SortedAtoms0,SortedAtoms1,Graph):-max_card_order262,6706 -max_card_order(Atoms,SortedAtoms0,SortedAtoms1,Graph):-max_card_order262,6706 -find_max_card([],_SortedAtoms,_Graph,At,_MaxCard,At):-!.find_max_card267,6904 -find_max_card([],_SortedAtoms,_Graph,At,_MaxCard,At):-!.find_max_card267,6904 -find_max_card([],_SortedAtoms,_Graph,At,_MaxCard,At):-!.find_max_card267,6904 -find_max_card([HVar|T],SortedAtoms,Graph,MaxAt0,MaxCard0,MaxAt1):-find_max_card269,6962 -find_max_card([HVar|T],SortedAtoms,Graph,MaxAt0,MaxCard0,MaxAt1):-find_max_card269,6962 -find_max_card([HVar|T],SortedAtoms,Graph,MaxAt0,MaxCard0,MaxAt1):-find_max_card269,6962 -find_max_card([_HVar|T],SortedAtoms,Graph,MaxAt0,MaxCard0,MaxAt1):-find_max_card286,7312 -find_max_card([_HVar|T],SortedAtoms,Graph,MaxAt0,MaxCard0,MaxAt1):-find_max_card286,7312 -find_max_card([_HVar|T],SortedAtoms,Graph,MaxAt0,MaxCard0,MaxAt1):-find_max_card286,7312 -find_card([],_Graph,_At,Card,Card):-!.find_card289,7441 -find_card([],_Graph,_At,Card,Card):-!.find_card289,7441 -find_card([],_Graph,_At,Card,Card):-!.find_card289,7441 -find_card([H|T],Graph,At,Card0,Card1):-find_card291,7481 -find_card([H|T],Graph,At,Card0,Card1):-find_card291,7481 -find_card([H|T],Graph,At,Card0,Card1):-find_card291,7481 -compute_min_def([],_Eliminated,Graph0,Graph1,MinVar,MinVar,_MinDef0):-compute_min_def300,7631 -compute_min_def([],_Eliminated,Graph0,Graph1,MinVar,MinVar,_MinDef0):-compute_min_def300,7631 -compute_min_def([],_Eliminated,Graph0,Graph1,MinVar,MinVar,_MinDef0):-compute_min_def300,7631 -compute_min_def([HVar|TVars],Eliminated,Graph0,Graph1,MinVar0,MinVar1,MinDef0):-compute_min_def303,7751 -compute_min_def([HVar|TVars],Eliminated,Graph0,Graph1,MinVar0,MinVar1,MinDef0):-compute_min_def303,7751 -compute_min_def([HVar|TVars],Eliminated,Graph0,Graph1,MinVar0,MinVar1,MinDef0):-compute_min_def303,7751 -compute_min_def([_HVar|TVars],Eliminated,Graph0,Graph1,MinVar0,MinVar1,MinDef0):-compute_min_def319,8098 -compute_min_def([_HVar|TVars],Eliminated,Graph0,Graph1,MinVar0,MinVar1,MinDef0):-compute_min_def319,8098 -compute_min_def([_HVar|TVars],Eliminated,Graph0,Graph1,MinVar0,MinVar1,MinDef0):-compute_min_def319,8098 -compute_def(Node,UndGraph,Def):-compute_def323,8259 -compute_def(Node,UndGraph,Def):-compute_def323,8259 -compute_def(Node,UndGraph,Def):-compute_def323,8259 -section_graph([],_Graph,SG,SG):-!.section_graph332,8525 -section_graph([],_Graph,SG,SG):-!.section_graph332,8525 -section_graph([],_Graph,SG,SG):-!.section_graph332,8525 -section_graph([H|T],Graph,SecGraph0,SecGraph1):-!,section_graph334,8561 -section_graph([H|T],Graph,SecGraph0,SecGraph1):-!,section_graph334,8561 -section_graph([H|T],Graph,SecGraph0,SecGraph1):-!,section_graph334,8561 -new_edges([],_V,[]):-!.new_edges340,8767 -new_edges([],_V,[]):-!.new_edges340,8767 -new_edges([],_V,[]):-!.new_edges340,8767 -new_edges([H|T],V,[V-H|TE]):-new_edges342,8792 -new_edges([H|T],V,[V-H|TE]):-new_edges342,8792 -new_edges([H|T],V,[V-H|TE]):-new_edges342,8792 -get_prob_goal(GL,QAtoms,SortedAtoms,f(M,_D,_S),P):-get_prob_goal345,8843 -get_prob_goal(GL,QAtoms,SortedAtoms,f(M,_D,_S),P):-get_prob_goal345,8843 -get_prob_goal(GL,QAtoms,SortedAtoms,f(M,_D,_S),P):-get_prob_goal345,8843 -get_index([],_GL,[]):-!.get_index352,9044 -get_index([],_GL,[]):-!.get_index352,9044 -get_index([],_GL,[]):-!.get_index352,9044 -get_index([H|Vars1],GL,[1|Index]):-get_index354,9070 -get_index([H|Vars1],GL,[1|Index]):-get_index354,9070 -get_index([H|Vars1],GL,[1|Index]):-get_index354,9070 -get_index([H|Vars1],GL,[0|Index]):-get_index358,9152 -get_index([H|Vars1],GL,[0|Index]):-get_index358,9152 -get_index([H|Vars1],GL,[0|Index]):-get_index358,9152 -vel(IF,RF,QAtoms,GLC,Graph,SortedAtoms,OutptutTable):-vel363,9235 -vel(IF,RF,QAtoms,GLC,Graph,SortedAtoms,OutptutTable):-vel363,9235 -vel(IF,RF,QAtoms,GLC,Graph,SortedAtoms,OutptutTable):-vel363,9235 -fix_evidence([],[],_Ev):-!.fix_evidence374,9620 -fix_evidence([],[],_Ev):-!.fix_evidence374,9620 -fix_evidence([],[],_Ev):-!.fix_evidence374,9620 -fix_evidence([f(Tab,Dep,Sz)|T],[f(Tab1,Dep1,Sz1)|T1],Ev):-fix_evidence376,9649 -fix_evidence([f(Tab,Dep,Sz)|T],[f(Tab1,Dep1,Sz1)|T1],Ev):-fix_evidence376,9649 -fix_evidence([f(Tab,Dep,Sz)|T],[f(Tab1,Dep1,Sz1)|T1],Ev):-fix_evidence376,9649 -simplify_evidence([], Table, Deps, Sizes, Table, Deps, Sizes).simplify_evidence381,9783 -simplify_evidence([], Table, Deps, Sizes, Table, Deps, Sizes).simplify_evidence381,9783 -simplify_evidence([V|VDeps], Table0, Deps0, Sizes0, Table, Deps, Sizes) :-!,simplify_evidence382,9846 -simplify_evidence([V|VDeps], Table0, Deps0, Sizes0, Table, Deps, Sizes) :-!,simplify_evidence382,9846 -simplify_evidence([V|VDeps], Table0, Deps0, Sizes0, Table, Deps, Sizes) :-!,simplify_evidence382,9846 -project_from_CPT(\+H,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT389,10069 -project_from_CPT(\+H,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT389,10069 -project_from_CPT(\+H,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT389,10069 -project_from_CPT(H,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT394,10249 -project_from_CPT(H,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT394,10249 -project_from_CPT(H,tab(Table,Deps,_),tab(NewTable,NDeps,NSzs)) :-project_from_CPT394,10249 -project_from_CPT(_H,tab(Table,Deps,S),tab(Table,Deps,S)).project_from_CPT399,10427 -project_from_CPT(_H,tab(Table,Deps,S),tab(Table,Deps,S)).project_from_CPT399,10427 -sort_tables([],[],_SortedAtoms):-!.sort_tables403,10488 -sort_tables([],[],_SortedAtoms):-!.sort_tables403,10488 -sort_tables([],[],_SortedAtoms):-!.sort_tables403,10488 -sort_tables([f(Mat,Vars,_Sz)|T],[f(Mat1,Vars1,Sz1)|T1],SortedAtoms):-sort_tables405,10525 -sort_tables([f(Mat,Vars,_Sz)|T],[f(Mat1,Vars1,Sz1)|T1],SortedAtoms):-sort_tables405,10525 -sort_tables([f(Mat,Vars,_Sz)|T],[f(Mat1,Vars1,Sz1)|T1],SortedAtoms):-sort_tables405,10525 -delete_all([],L,L):-!.delete_all412,10726 -delete_all([],L,L):-!.delete_all412,10726 -delete_all([],L,L):-!.delete_all412,10726 -delete_all([H|T],L0,L1):-delete_all414,10750 -delete_all([H|T],L0,L1):-delete_all414,10750 -delete_all([H|T],L0,L1):-delete_all414,10750 -mapping(Vs0,Vs,Map) :-mapping418,10817 -mapping(Vs0,Vs,Map) :-mapping418,10817 -mapping(Vs0,Vs,Map) :-mapping418,10817 -add_indices([],[]).add_indices425,10947 -add_indices([],[]).add_indices425,10947 -add_indices([V|Vs0],[V-_|I1s]) :-add_indices426,10967 -add_indices([V|Vs0],[V-_|I1s]) :-add_indices426,10967 -add_indices([V|Vs0],[V-_|I1s]) :-add_indices426,10967 -split_map([], []).split_map429,11025 -split_map([], []).split_map429,11025 -split_map([_-M|Is], [M|Map]) :-split_map430,11044 -split_map([_-M|Is], [M|Map]) :-split_map430,11044 -split_map([_-M|Is], [M|Map]) :-split_map430,11044 -split_pos([], []).split_pos433,11098 -split_pos([], []).split_pos433,11098 -split_pos([V-_|Is], [V|Map]) :-split_pos434,11117 -split_pos([V-_|Is], [V|Map]) :-split_pos434,11117 -split_pos([V-_|Is], [V|Map]) :-split_pos434,11117 -positions([],_SA,[]):-!.positions437,11171 -positions([],_SA,[]):-!.positions437,11171 -positions([],_SA,[]):-!.positions437,11171 -positions([HV|Vars],SortedAtoms,[Pos-HV|VarsPos]):-positions439,11197 -positions([HV|Vars],SortedAtoms,[Pos-HV|VarsPos]):-positions439,11197 -positions([HV|Vars],SortedAtoms,[Pos-HV|VarsPos]):-positions439,11197 -reorder_CPT(Vars,SortedAtoms,Vars1,Map):-reorder_CPT444,11317 -reorder_CPT(Vars,SortedAtoms,Vars1,Map):-reorder_CPT444,11317 -reorder_CPT(Vars,SortedAtoms,Vars1,Map):-reorder_CPT444,11317 -add_indices([],_,[]).add_indices450,11480 -add_indices([],_,[]).add_indices450,11480 -add_indices([V|Vs0],I0,[V-I0|Is]) :-add_indices451,11502 -add_indices([V|Vs0],I0,[V-I0|Is]) :-add_indices451,11502 -add_indices([V|Vs0],I0,[V-I0|Is]) :-add_indices451,11502 -vel_cycle([],HomFact,HetFact,_Graph,SortedAtoms,Eliminated,Eliminated,f(Mat1,Dep,Sz)):-!,vel_cycle455,11576 -vel_cycle([],HomFact,HetFact,_Graph,SortedAtoms,Eliminated,Eliminated,f(Mat1,Dep,Sz)):-!,vel_cycle455,11576 -vel_cycle([],HomFact,HetFact,_Graph,SortedAtoms,Eliminated,Eliminated,f(Mat1,Dep,Sz)):-!,vel_cycle455,11576 -vel_cycle(Vars0,HomFact,HetFact,Graph0,SortedAtoms,Eliminated0,Eliminated1,OutputTable):-vel_cycle459,11754 -vel_cycle(Vars0,HomFact,HetFact,Graph0,SortedAtoms,Eliminated0,Eliminated1,OutputTable):-vel_cycle459,11754 -vel_cycle(Vars0,HomFact,HetFact,Graph0,SortedAtoms,Eliminated0,Eliminated1,OutputTable):-vel_cycle459,11754 -normalise_CPT(MAT,NMAT) :-normalise_CPT470,12200 -normalise_CPT(MAT,NMAT) :-normalise_CPT470,12200 -normalise_CPT(MAT,NMAT) :-normalise_CPT470,12200 -combine_factors(HomFacts,HetFacts,SortedAtoms,Fact):-combine_factors474,12286 -combine_factors(HomFacts,HetFacts,SortedAtoms,Fact):-combine_factors474,12286 -combine_factors(HomFacts,HetFacts,SortedAtoms,Fact):-combine_factors474,12286 -sum_out1(Var,Hom,Het,Hom2,Het2,SortedAtoms):-sum_out1479,12444 -sum_out1(Var,Hom,Het,Hom2,Het2,SortedAtoms):-sum_out1479,12444 -sum_out1(Var,Hom,Het,Hom2,Het2,SortedAtoms):-sum_out1479,12444 -update_factors(_Var,[],[],Hom,Hom,Het,Het,_SortedAtoms):-!.update_factors486,12748 -update_factors(_Var,[],[],Hom,Hom,Het,Het,_SortedAtoms):-!.update_factors486,12748 -update_factors(_Var,[],[],Hom,Hom,Het,Het,_SortedAtoms):-!.update_factors486,12748 -update_factors(Var,HomFact,[],Hom,[Fact|Hom],Het,Het,_SortedAtoms):-!,update_factors488,12809 -update_factors(Var,HomFact,[],Hom,[Fact|Hom],Het,Het,_SortedAtoms):-!,update_factors488,12809 -update_factors(Var,HomFact,[],Hom,[Fact|Hom],Het,Het,_SortedAtoms):-!,update_factors488,12809 -update_factors(Var,[],HetFact,Hom,Hom,Het,[Fact|Het],_SortedAtoms):-update_factors491,12909 -update_factors(Var,[],HetFact,Hom,Hom,Het,[Fact|Het],_SortedAtoms):-update_factors491,12909 -update_factors(Var,[],HetFact,Hom,Hom,Het,[Fact|Het],_SortedAtoms):-update_factors491,12909 -update_factors(Var,HomFact,HetFact,Hom,Hom,Het,[Fact1|Het],SortedAtoms):-update_factors494,13007 -update_factors(Var,HomFact,HetFact,Hom,Hom,Het,[Fact1|Het],SortedAtoms):-update_factors494,13007 -update_factors(Var,HomFact,HetFact,Hom,Hom,Het,[Fact1|Het],SortedAtoms):-update_factors494,13007 -sum_var(Var,f(Table,Deps,_),f(NewTable,NDeps,NSzs)):-sum_var498,13158 -sum_var(Var,f(Table,Deps,_),f(NewTable,NDeps,NSzs)):-sum_var498,13158 -sum_var(Var,f(Table,Deps,_),f(NewTable,NDeps,NSzs)):-sum_var498,13158 -combine_tables([],[],_SortedAtoms):-!.combine_tables504,13327 -combine_tables([],[],_SortedAtoms):-!.combine_tables504,13327 -combine_tables([],[],_SortedAtoms):-!.combine_tables504,13327 -combine_tables([Fact],Fact,_SortedAtoms):-!.combine_tables506,13367 -combine_tables([Fact],Fact,_SortedAtoms):-!.combine_tables506,13367 -combine_tables([Fact],Fact,_SortedAtoms):-!.combine_tables506,13367 -combine_tables([Fact1,Fact2|T],Fact,SortedAtoms):-combine_tables508,13413 -combine_tables([Fact1,Fact2|T],Fact,SortedAtoms):-combine_tables508,13413 -combine_tables([Fact1,Fact2|T],Fact,SortedAtoms):-combine_tables508,13413 -get_factors_with_var([],_V,[],[]):-!.get_factors_with_var512,13557 -get_factors_with_var([],_V,[],[]):-!.get_factors_with_var512,13557 -get_factors_with_var([],_V,[],[]):-!.get_factors_with_var512,13557 -get_factors_with_var([f(Table,Vars,Sz)|T],Var,[f(Table,Vars,Sz)|TFV],TRest):-get_factors_with_var514,13596 -get_factors_with_var([f(Table,Vars,Sz)|T],Var,[f(Table,Vars,Sz)|TFV],TRest):-get_factors_with_var514,13596 -get_factors_with_var([f(Table,Vars,Sz)|T],Var,[f(Table,Vars,Sz)|TFV],TRest):-get_factors_with_var514,13596 -get_factors_with_var([f(Table,Vars,Sz)|T],Var,TFV,[f(Table,Vars,Sz)|TRest]):-get_factors_with_var518,13737 -get_factors_with_var([f(Table,Vars,Sz)|T],Var,TFV,[f(Table,Vars,Sz)|TRest]):-get_factors_with_var518,13737 -get_factors_with_var([f(Table,Vars,Sz)|T],Var,TFV,[f(Table,Vars,Sz)|TRest]):-get_factors_with_var518,13737 -multiply_tables([], [],_SorteAtoms) :- !.multiply_tables521,13856 -multiply_tables([], [],_SorteAtoms) :- !.multiply_tables521,13856 -multiply_tables([], [],_SorteAtoms) :- !.multiply_tables521,13856 -multiply_tables([Table], Table,_SorteAtoms) :- !.multiply_tables523,13899 -multiply_tables([Table], Table,_SorteAtoms) :- !.multiply_tables523,13899 -multiply_tables([Table], Table,_SorteAtoms) :- !.multiply_tables523,13899 -multiply_tables([TAB1, TAB2| Tables], Out,SorteAtoms) :-multiply_tables524,13949 -multiply_tables([TAB1, TAB2| Tables], Out,SorteAtoms) :-multiply_tables524,13949 -multiply_tables([TAB1, TAB2| Tables], Out,SorteAtoms) :-multiply_tables524,13949 -combine_CPTs(f(Tab1, Deps1, Sz1), f(Tab2, Deps2, Sz2), F, SortedAtoms) :-combine_CPTs528,14100 -combine_CPTs(f(Tab1, Deps1, Sz1), f(Tab2, Deps2, Sz2), F, SortedAtoms) :-combine_CPTs528,14100 -combine_CPTs(f(Tab1, Deps1, Sz1), f(Tab2, Deps2, Sz2), F, SortedAtoms) :-combine_CPTs528,14100 -get_common_conv(Deps1,Deps2,CommConv):-get_common_conv541,14677 -get_common_conv(Deps1,Deps2,CommConv):-get_common_conv541,14677 -get_common_conv(Deps1,Deps2,CommConv):-get_common_conv541,14677 -get_conv([],[]):-!.get_conv546,14791 -get_conv([],[]):-!.get_conv546,14791 -get_conv([],[]):-!.get_conv546,14791 -get_conv([d(H)|T],[H|T1]):-!,get_conv548,14812 -get_conv([d(H)|T],[H|T1]):-!,get_conv548,14812 -get_conv([d(H)|T],[H|T1]):-!,get_conv548,14812 -get_conv([_H|T],T1):-!,get_conv551,14860 -get_conv([_H|T],T1):-!,get_conv551,14860 -get_conv([_H|T],T1):-!,get_conv551,14860 -sum_fact([],T,D,S,T,D,S):-!.sum_fact555,14911 -sum_fact([],T,D,S,T,D,S):-!.sum_fact555,14911 -sum_fact([],T,D,S,T,D,S):-!.sum_fact555,14911 -sum_fact([H|T],T0,D0,S0,T1,D1,S1):-sum_fact559,14972 -sum_fact([H|T],T0,D0,S0,T1,D1,S1):-sum_fact559,14972 -sum_fact([H|T],T0,D0,S0,T1,D1,S1):-sum_fact559,14972 -remove_renamed_conv([],[]):-!.remove_renamed_conv572,15426 -remove_renamed_conv([],[]):-!.remove_renamed_conv572,15426 -remove_renamed_conv([],[]):-!.remove_renamed_conv572,15426 -remove_renamed_conv([d(H,_N)|D0],[d(H)|D1]):-!,remove_renamed_conv574,15458 -remove_renamed_conv([d(H,_N)|D0],[d(H)|D1]):-!,remove_renamed_conv574,15458 -remove_renamed_conv([d(H,_N)|D0],[d(H)|D1]):-!,remove_renamed_conv574,15458 -remove_renamed_conv([H|D0],[H|D1]):-remove_renamed_conv577,15536 -remove_renamed_conv([H|D0],[H|D1]):-remove_renamed_conv577,15536 -remove_renamed_conv([H|D0],[H|D1]):-remove_renamed_conv577,15536 -update_sorted([],_NewAt,[]):-!.update_sorted582,15605 -update_sorted([],_NewAt,[]):-!.update_sorted582,15605 -update_sorted([],_NewAt,[]):-!.update_sorted582,15605 -update_sorted([d(H)|T],NewAt,[d(H,1)|T1]):-update_sorted584,15638 -update_sorted([d(H)|T],NewAt,[d(H,1)|T1]):-update_sorted584,15638 -update_sorted([d(H)|T],NewAt,[d(H,1)|T1]):-update_sorted584,15638 -update_sorted([d(H)|T],NewAt,[d(H,2)|T1]):-update_sorted588,15739 -update_sorted([d(H)|T],NewAt,[d(H,2)|T1]):-update_sorted588,15739 -update_sorted([d(H)|T],NewAt,[d(H,2)|T1]):-update_sorted588,15739 -update_sorted([H|T],NewAt,[H|T1]):-update_sorted592,15837 -update_sorted([H|T],NewAt,[H|T1]):-update_sorted592,15837 -update_sorted([H|T],NewAt,[H|T1]):-update_sorted592,15837 -update_sorted1(H,T,NewAt,[d(H,2)|T1]):-update_sorted1595,15902 -update_sorted1(H,T,NewAt,[d(H,2)|T1]):-update_sorted1595,15902 -update_sorted1(H,T,NewAt,[d(H,2)|T1]):-update_sorted1595,15902 -update_sorted1(_H,T,NewAt,T1):-update_sorted1599,15996 -update_sorted1(_H,T,NewAt,T1):-update_sorted1599,15996 -update_sorted1(_H,T,NewAt,T1):-update_sorted1599,15996 -rename_convergent(_N,_CommConv,[],[],NA,NA):-!.rename_convergent602,16057 -rename_convergent(_N,_CommConv,[],[],NA,NA):-!.rename_convergent602,16057 -rename_convergent(_N,_CommConv,[],[],NA,NA):-!.rename_convergent602,16057 -rename_convergent(N,CommConv,[d(H)|T],[d(H,N)|T1],NA0,[d(H,N)|NA1]):-rename_convergent604,16106 -rename_convergent(N,CommConv,[d(H)|T],[d(H,N)|T1],NA0,[d(H,N)|NA1]):-rename_convergent604,16106 -rename_convergent(N,CommConv,[d(H)|T],[d(H,N)|T1],NA0,[d(H,N)|NA1]):-rename_convergent604,16106 -rename_convergent(N,CommConv,[H|T],[H|T1],NA0,NA1):-rename_convergent608,16245 -rename_convergent(N,CommConv,[H|T],[H|T1],NA0,NA1):-rename_convergent608,16245 -rename_convergent(N,CommConv,[H|T],[H|T1],NA0,NA1):-rename_convergent608,16245 -multiply_CPTs(f(Tab1, Deps1, Sz1), f(Tab2, Deps2, Sz2), f(OT, NDeps, NSz), SortedAtoms) :-multiply_CPTs612,16345 -multiply_CPTs(f(Tab1, Deps1, Sz1), f(Tab2, Deps2, Sz2), f(OT, NDeps, NSz), SortedAtoms) :-multiply_CPTs612,16345 -multiply_CPTs(f(Tab1, Deps1, Sz1), f(Tab2, Deps2, Sz2), f(OT, NDeps, NSz), SortedAtoms) :-multiply_CPTs612,16345 -expand_tabs([], [], [], [], [], [], [],_SortedAtoms):-!.expand_tabs619,16628 -expand_tabs([], [], [], [], [], [], [],_SortedAtoms):-!.expand_tabs619,16628 -expand_tabs([], [], [], [], [], [], [],_SortedAtoms):-!.expand_tabs619,16628 -expand_tabs([V1|Deps1], [S1|Sz1], [], [], [0|Map1], [S1|Map2], [V1|NDeps],SortedAtoms) :-!,expand_tabs620,16685 -expand_tabs([V1|Deps1], [S1|Sz1], [], [], [0|Map1], [S1|Map2], [V1|NDeps],SortedAtoms) :-!,expand_tabs620,16685 -expand_tabs([V1|Deps1], [S1|Sz1], [], [], [0|Map1], [S1|Map2], [V1|NDeps],SortedAtoms) :-!,expand_tabs620,16685 -expand_tabs([], [], [V2|Deps2], [S2|Sz2], [S2|Map1], [0|Map2], [V2|NDeps],SortedAtoms) :-!,expand_tabs622,16842 -expand_tabs([], [], [V2|Deps2], [S2|Sz2], [S2|Map1], [0|Map2], [V2|NDeps],SortedAtoms) :-!,expand_tabs622,16842 -expand_tabs([], [], [V2|Deps2], [S2|Sz2], [S2|Map1], [0|Map2], [V2|NDeps],SortedAtoms) :-!,expand_tabs622,16842 -expand_tabs([V1|Deps1], [S1|Sz1], [V2|Deps2], [S2|Sz2], Map1, Map2, NDeps,SortedAtoms) :-expand_tabs624,16999 -expand_tabs([V1|Deps1], [S1|Sz1], [V2|Deps2], [S2|Sz2], Map1, Map2, NDeps,SortedAtoms) :-expand_tabs624,16999 -expand_tabs([V1|Deps1], [S1|Sz1], [V2|Deps2], [S2|Sz2], Map1, Map2, NDeps,SortedAtoms) :-expand_tabs624,16999 -compare_var(C,V1,V2,SortedAtoms):-compare_var647,17611 -compare_var(C,V1,V2,SortedAtoms):-compare_var647,17611 -compare_var(C,V1,V2,SortedAtoms):-compare_var647,17611 -deputy_atoms([],[]):-!.deputy_atoms652,17718 -deputy_atoms([],[]):-!.deputy_atoms652,17718 -deputy_atoms([],[]):-!.deputy_atoms652,17718 -deputy_atoms([H|T],[d(H)|T1]):-deputy_atoms654,17743 -deputy_atoms([H|T],[d(H)|T1]):-deputy_atoms654,17743 -deputy_atoms([H|T],[d(H)|T1]):-deputy_atoms654,17743 -identity_facotrs([],[],[],Graph,Graph):-!.identity_facotrs657,17797 -identity_facotrs([],[],[],Graph,Graph):-!.identity_facotrs657,17797 -identity_facotrs([],[],[],Graph,Graph):-!.identity_facotrs657,17797 -identity_facotrs([H|T],[d(H)|TD],[f(Mat,[d(H),H],[2,2])|TF],Graph0,Graph1):-identity_facotrs659,17841 -identity_facotrs([H|T],[d(H)|TD],[f(Mat,[d(H),H],[2,2])|TF],Graph0,Graph1):-identity_facotrs659,17841 -identity_facotrs([H|T],[d(H)|TD],[f(Mat,[d(H),H],[2,2])|TF],Graph0,Graph1):-identity_facotrs659,17841 -find_rules_with_atom(_A,[],[]).find_rules_with_atom665,18056 -find_rules_with_atom(_A,[],[]).find_rules_with_atom665,18056 -find_rules_with_atom(A,[(N,Head,_Body)|T],[(N,Head)|R]):-find_rules_with_atom667,18089 -find_rules_with_atom(A,[(N,Head,_Body)|T],[(N,Head)|R]):-find_rules_with_atom667,18089 -find_rules_with_atom(A,[(N,Head,_Body)|T],[(N,Head)|R]):-find_rules_with_atom667,18089 -find_rules_with_atom(A,[_H|T],R):-find_rules_with_atom671,18200 -find_rules_with_atom(A,[_H|T],R):-find_rules_with_atom671,18200 -find_rules_with_atom(A,[_H|T],R):-find_rules_with_atom671,18200 -rule_factors([],HetF,HetF,[],Graph,Graph):-!.rule_factors674,18266 -rule_factors([],HetF,HetF,[],Graph,Graph):-!.rule_factors674,18266 -rule_factors([],HetF,HetF,[],Graph,Graph):-!.rule_factors674,18266 -rule_factors([(N,Head,Body)|T],HetF0,HetF1,[f(Mat,Deps,Sizes)|HomF],Graph0,Graph1):-rule_factors676,18313 -rule_factors([(N,Head,Body)|T],HetF0,HetF1,[f(Mat,Deps,Sizes)|HomF],Graph0,Graph1):-rule_factors676,18313 -rule_factors([(N,Head,Body)|T],HetF0,HetF1,[f(Mat,Deps,Sizes)|HomF],Graph0,Graph1):-rule_factors676,18313 -build_table(Probs,FalseCol,Body,T):-!,build_table695,18933 -build_table(Probs,FalseCol,Body,T):-!,build_table695,18933 -build_table(Probs,FalseCol,Body,T):-!,build_table695,18933 -build_col([],t,Probs,_FalseCol,T0,T1):-!,build_col698,19013 -build_col([],t,Probs,_FalseCol,T0,T1):-!,build_col698,19013 -build_col([],t,Probs,_FalseCol,T0,T1):-!,build_col698,19013 -build_col([],f,_Probs,FalseCol,T0,T1):-!,build_col701,19078 -build_col([],f,_Probs,FalseCol,T0,T1):-!,build_col701,19078 -build_col([],f,_Probs,FalseCol,T0,T1):-!,build_col701,19078 -build_col([\+ _H|T],Truth,Probs,FalseCol,T0,T1):-!,build_col704,19146 -build_col([\+ _H|T],Truth,Probs,FalseCol,T0,T1):-!,build_col704,19146 -build_col([\+ _H|T],Truth,Probs,FalseCol,T0,T1):-!,build_col704,19146 -build_col([_H|T],Truth,Probs,FalseCol,T0,T1):-build_col708,19279 -build_col([_H|T],Truth,Probs,FalseCol,T0,T1):-build_col708,19279 -build_col([_H|T],Truth,Probs,FalseCol,T0,T1):-build_col708,19279 -add_hom_edges_to_graph([],_N,Graph,Graph):-!.add_hom_edges_to_graph712,19407 -add_hom_edges_to_graph([],_N,Graph,Graph):-!.add_hom_edges_to_graph712,19407 -add_hom_edges_to_graph([],_N,Graph,Graph):-!.add_hom_edges_to_graph712,19407 -add_hom_edges_to_graph([H|T],N,Graph0,Graph1):-add_hom_edges_to_graph714,19454 -add_hom_edges_to_graph([H|T],N,Graph0,Graph1):-add_hom_edges_to_graph714,19454 -add_hom_edges_to_graph([H|T],N,Graph0,Graph1):-add_hom_edges_to_graph714,19454 -add_het_edges_to_graph([''],_N,Graph,Graph):-!.add_het_edges_to_graph718,19591 -add_het_edges_to_graph([''],_N,Graph,Graph):-!.add_het_edges_to_graph718,19591 -add_het_edges_to_graph([''],_N,Graph,Graph):-!.add_het_edges_to_graph718,19591 -add_het_edges_to_graph([H|T],N,Graph0,Graph1):-add_het_edges_to_graph720,19640 -add_het_edges_to_graph([H|T],N,Graph0,Graph1):-add_het_edges_to_graph720,19640 -add_het_edges_to_graph([H|T],N,Graph0,Graph1):-add_het_edges_to_graph720,19640 -add_edges_to_graph([],_Atoms,Graph,Graph):-!.add_edges_to_graph724,19780 -add_edges_to_graph([],_Atoms,Graph,Graph):-!.add_edges_to_graph724,19780 -add_edges_to_graph([],_Atoms,Graph,Graph):-!.add_edges_to_graph724,19780 -add_edges_to_graph([H|T],Atoms,Graph0,Graph1):-add_edges_to_graph726,19827 -add_edges_to_graph([H|T],Atoms,Graph0,Graph1):-add_edges_to_graph726,19827 -add_edges_to_graph([H|T],Atoms,Graph0,Graph1):-add_edges_to_graph726,19827 -add_edges_from_atom([''],_At,Graph,Graph):-!.add_edges_from_atom730,19965 -add_edges_from_atom([''],_At,Graph,Graph):-!.add_edges_from_atom730,19965 -add_edges_from_atom([''],_At,Graph,Graph):-!.add_edges_from_atom730,19965 -add_edges_from_atom([H|T],At,Graph0,Graph1):-add_edges_from_atom732,20012 -add_edges_from_atom([H|T],At,Graph0,Graph1):-add_edges_from_atom732,20012 -add_edges_from_atom([H|T],At,Graph0,Graph1):-add_edges_from_atom732,20012 -gen_het_factors([''],_N,_LH,_Pos,HetF,HetF):-!.gen_het_factors736,20145 -gen_het_factors([''],_N,_LH,_Pos,HetF,HetF):-!.gen_het_factors736,20145 -gen_het_factors([''],_N,_LH,_Pos,HetF,HetF):-!.gen_het_factors736,20145 -gen_het_factors([H|Atoms],N,LH,Pos,HetF0,[f(Mat,[ch(N),d(H)],[LH,2])|HetF1]):-gen_het_factors738,20194 -gen_het_factors([H|Atoms],N,LH,Pos,HetF0,[f(Mat,[ch(N),d(H)],[LH,2])|HetF1]):-gen_het_factors738,20194 -gen_het_factors([H|Atoms],N,LH,Pos,HetF0,[f(Mat,[ch(N),d(H)],[LH,2])|HetF1]):-gen_het_factors738,20194 -gen_het_table(N,N,_Pos,[]):-!.gen_het_table744,20410 -gen_het_table(N,N,_Pos,[]):-!.gen_het_table744,20410 -gen_het_table(N,N,_Pos,[]):-!.gen_het_table744,20410 -gen_het_table(N0,N,N0,[0.0,1.0|T]):-!,gen_het_table746,20442 -gen_het_table(N0,N,N0,[0.0,1.0|T]):-!,gen_het_table746,20442 -gen_het_table(N0,N,N0,[0.0,1.0|T]):-!,gen_het_table746,20442 -gen_het_table(N0,N,Pos,[1.0,0.0|T]):-gen_het_table750,20522 -gen_het_table(N0,N,Pos,[1.0,0.0|T]):-gen_het_table750,20522 -gen_het_table(N0,N,Pos,[1.0,0.0|T]):-gen_het_table750,20522 -get_parents([],_AV,[]).get_parents756,20606 -get_parents([],_AV,[]).get_parents756,20606 -get_parents([\+ H|T],AV,[V|T1]):-!,get_parents758,20633 -get_parents([\+ H|T],AV,[V|T1]):-!,get_parents758,20633 -get_parents([\+ H|T],AV,[V|T1]):-!,get_parents758,20633 -get_parents([H|T],AV,[V|T1]):-!,get_parents762,20714 -get_parents([H|T],AV,[V|T1]):-!,get_parents762,20714 -get_parents([H|T],AV,[V|T1]):-!,get_parents762,20714 -choice_vars([],Tr,Tr,[]).choice_vars766,20792 -choice_vars([],Tr,Tr,[]).choice_vars766,20792 -choice_vars([(N,_H,_B)|T],Tr0,Tr1,[NV|T1]):-choice_vars768,20819 -choice_vars([(N,_H,_B)|T],Tr0,Tr1,[NV|T1]):-choice_vars768,20819 -choice_vars([(N,_H,_B)|T],Tr0,Tr1,[NV|T1]):-choice_vars768,20819 -atom_vars([],Tr,Tr,[]).atom_vars772,20920 -atom_vars([],Tr,Tr,[]).atom_vars772,20920 -atom_vars([H|T],Tr0,Tr1,[VH|VT]):-atom_vars774,20945 -atom_vars([H|T],Tr0,Tr1,[VH|VT]):-atom_vars774,20945 -atom_vars([H|T],Tr0,Tr1,[VH|VT]):-atom_vars774,20945 -find_ground_atoms([],GA,GA).find_ground_atoms778,21034 -find_ground_atoms([],GA,GA).find_ground_atoms778,21034 -find_ground_atoms([(_N,Head,Body)|T],GA0,GA1):-find_ground_atoms780,21064 -find_ground_atoms([(_N,Head,Body)|T],GA0,GA1):-find_ground_atoms780,21064 -find_ground_atoms([(_N,Head,Body)|T],GA0,GA1):-find_ground_atoms780,21064 -find_atoms_body([],[]).find_atoms_body787,21247 -find_atoms_body([],[]).find_atoms_body787,21247 -find_atoms_body([\+H|T],[H|T1]):-!,find_atoms_body789,21272 -find_atoms_body([\+H|T],[H|T1]):-!,find_atoms_body789,21272 -find_atoms_body([\+H|T],[H|T1]):-!,find_atoms_body789,21272 -find_atoms_body([H|T],[H|T1]):-find_atoms_body792,21333 -find_atoms_body([H|T],[H|T1]):-find_atoms_body792,21333 -find_atoms_body([H|T],[H|T1]):-find_atoms_body792,21333 -find_atoms_head([],[],[]).find_atoms_head796,21391 -find_atoms_head([],[],[]).find_atoms_head796,21391 -find_atoms_head([H:P|T],[H|TA],[P|TP]):-find_atoms_head798,21419 -find_atoms_head([H:P|T],[H|TA],[P|TP]):-find_atoms_head798,21419 -find_atoms_head([H:P|T],[H|TA],[P|TP]):-find_atoms_head798,21419 -find_deriv(GoalsList,Deriv):-find_deriv802,21489 -find_deriv(GoalsList,Deriv):-find_deriv802,21489 -find_deriv(GoalsList,Deriv):-find_deriv802,21489 -solve([],C,C):-!.solve818,22088 -solve([],C,C):-!.solve818,22088 -solve([],C,C):-!.solve818,22088 -solve([bagof(V,EV^G,L)|T],CIn,COut):-!,solve820,22107 -solve([bagof(V,EV^G,L)|T],CIn,COut):-!,solve820,22107 -solve([bagof(V,EV^G,L)|T],CIn,COut):-!,solve820,22107 -solve([bagof(V,G,L)|T],CIn,COut):-!,solve831,22377 -solve([bagof(V,G,L)|T],CIn,COut):-!,solve831,22377 -solve([bagof(V,G,L)|T],CIn,COut):-!,solve831,22377 -solve([setof(V,EV^G,L)|T],CIn,COut):-!,solve843,22642 -solve([setof(V,EV^G,L)|T],CIn,COut):-!,solve843,22642 -solve([setof(V,EV^G,L)|T],CIn,COut):-!,solve843,22642 -solve([setof(V,G,L)|T],CIn,COut):-!,solve854,22911 -solve([setof(V,G,L)|T],CIn,COut):-!,solve854,22911 -solve([setof(V,G,L)|T],CIn,COut):-!,solve854,22911 -solve([\+ H |T],CIn,COut):-!,solve865,23174 -solve([\+ H |T],CIn,COut):-!,solve865,23174 -solve([\+ H |T],CIn,COut):-!,solve865,23174 -solve([H|T],CIn,COut):-solve875,23361 -solve([H|T],CIn,COut):-solve875,23361 -solve([H|T],CIn,COut):-solve875,23361 -solve([H|T],CIn,COut):-solve880,23431 -solve([H|T],CIn,COut):-solve880,23431 -solve([H|T],CIn,COut):-solve880,23431 -solve([H|T],CIn,COut):-solve885,23511 -solve([H|T],CIn,COut):-solve885,23511 -solve([H|T],CIn,COut):-solve885,23511 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres889,23598 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres889,23598 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres889,23598 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres894,23698 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres894,23698 -solve_pres(R,S,N,B,T,CIn,COut):-solve_pres894,23698 -build_initial_graph(N,G):-build_initial_graph899,23796 -build_initial_graph(N,G):-build_initial_graph899,23796 -build_initial_graph(N,G):-build_initial_graph899,23796 -build_graph([],_N,G,G).build_graph904,23869 -build_graph([],_N,G,G).build_graph904,23869 -build_graph([(_V,C)|T],N,GIn,GOut):-build_graph906,23895 -build_graph([(_V,C)|T],N,GIn,GOut):-build_graph906,23895 -build_graph([(_V,C)|T],N,GIn,GOut):-build_graph906,23895 -compatible(_C,[],_N,_N1,G,G). compatible911,24004 -compatible(_C,[],_N,_N1,G,G). compatible911,24004 -compatible(C,[(_V,H)|T],N,N1,GIn,GOut):-compatible913,24036 -compatible(C,[(_V,H)|T],N,N1,GIn,GOut):-compatible913,24036 -compatible(C,[(_V,H)|T],N,N1,GIn,GOut):-compatible913,24036 -compatible([],_C).compatible922,24191 -compatible([],_C).compatible922,24191 -compatible([(N,R,S)|T],C):-compatible924,24211 -compatible([(N,R,S)|T],C):-compatible924,24211 -compatible([(N,R,S)|T],C):-compatible924,24211 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head928,24303 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head928,24303 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head930,24352 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head930,24352 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head930,24352 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head933,24455 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head933,24455 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head933,24455 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head937,24569 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head937,24569 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head937,24569 -build_Cset(_LD,[],[],C,C).build_Cset943,24687 -build_Cset(_LD,[],[],C,C).build_Cset943,24687 -build_Cset(LD,[H|T],[V|L],CIn,COut):-build_Cset945,24717 -build_Cset(LD,[H|T],[V|L],CIn,COut):-build_Cset945,24717 -build_Cset(LD,[H|T],[V|L],CIn,COut):-build_Cset945,24717 -find_rule(H,(R,S,N),Body,C):-find_rule955,25054 -find_rule(H,(R,S,N),Body,C):-find_rule955,25054 -find_rule(H,(R,S,N),Body,C):-find_rule955,25054 -find_rule(H,(R,S,Number),Body,C):-find_rule960,25188 -find_rule(H,(R,S,Number),Body,C):-find_rule960,25188 -find_rule(H,(R,S,Number),Body,C):-find_rule960,25188 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head964,25329 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head964,25329 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head966,25386 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head966,25386 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head966,25386 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head970,25536 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head970,25536 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head970,25536 -not_different(_N,_N1,S,S1):-not_different974,25667 -not_different(_N,_N1,S,S1):-not_different974,25667 -not_different(_N,_N1,S,S1):-not_different974,25667 -not_different(N,N1,S,S1):-not_different977,25708 -not_different(N,N1,S,S1):-not_different977,25708 -not_different(N,N1,S,S1):-not_different977,25708 -not_different(N,N,S,S).not_different981,25759 -not_different(N,N,S,S).not_different981,25759 -member_head(H,[(H:_P)|_T],N,N).member_head984,25785 -member_head(H,[(H:_P)|_T],N,N).member_head984,25785 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head986,25818 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head986,25818 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head986,25818 -choose_clauses(C,[],C).choose_clauses993,26090 -choose_clauses(C,[],C).choose_clauses993,26090 -choose_clauses(CIn,[D|T],COut):-choose_clauses995,26115 -choose_clauses(CIn,[D|T],COut):-choose_clauses995,26115 -choose_clauses(CIn,[D|T],COut):-choose_clauses995,26115 -choose_clauses(CIn,[D|T],COut):-choose_clauses1002,26282 -choose_clauses(CIn,[D|T],COut):-choose_clauses1002,26282 -choose_clauses(CIn,[D|T],COut):-choose_clauses1002,26282 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons1009,26457 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons1009,26457 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons1009,26457 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons1011,26488 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons1011,26488 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons1011,26488 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons1015,26566 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons1015,26566 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons1015,26566 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head1022,26862 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head1022,26862 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head1024,26918 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head1024,26918 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head1024,26918 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head1028,27032 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head1028,27032 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head1028,27032 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs1031,27142 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs1031,27142 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs1031,27142 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs1035,27242 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs1035,27242 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs1035,27242 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head1041,27438 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head1041,27438 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head1041,27438 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head1048,27649 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head1048,27649 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head1048,27649 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head1053,27756 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head1053,27756 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head1053,27756 -new_head(N,R,S,N1):-new_head1058,27906 -new_head(N,R,S,N1):-new_head1058,27906 -new_head(N,R,S,N1):-new_head1058,27906 -new_head(N,R,S,N1):-new_head1064,28034 -new_head(N,R,S,N1):-new_head1064,28034 -new_head(N,R,S,N1):-new_head1064,28034 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head1070,28184 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head1070,28184 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head1070,28184 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head1073,28268 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head1073,28268 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head1073,28268 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present1079,28489 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present1079,28489 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present1079,28489 -already_present(N,R,S,[_H|T]):-already_present1082,28536 -already_present(N,R,S,[_H|T]):-already_present1082,28536 -already_present(N,R,S,[_H|T]):-already_present1082,28536 -rem_dup_lists([],L,L).rem_dup_lists1089,28818 -rem_dup_lists([],L,L).rem_dup_lists1089,28818 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1091,28842 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1091,28842 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1091,28842 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1095,28940 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1095,28940 -rem_dup_lists([H|T],L0,L):-rem_dup_lists1095,28940 -member_subset(E,[H|_T]):-member_subset1098,28997 -member_subset(E,[H|_T]):-member_subset1098,28997 -member_subset(E,[H|_T]):-member_subset1098,28997 -member_subset(E,[_H|T]):-member_subset1101,29043 -member_subset(E,[_H|T]):-member_subset1101,29043 -member_subset(E,[_H|T]):-member_subset1101,29043 -build_formula([],[],Var,Var).build_formula1116,29542 -build_formula([],[],Var,Var).build_formula1116,29542 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula1118,29573 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula1118,29573 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula1118,29573 -build_term([],[],Var,Var).build_term1122,29682 -build_term([],[],Var,Var).build_term1122,29682 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term1124,29710 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term1124,29710 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term1124,29710 -nth0_eq(N,N,[H|_T],El):-nth0_eq1137,30095 -nth0_eq(N,N,[H|_T],El):-nth0_eq1137,30095 -nth0_eq(N,N,[H|_T],El):-nth0_eq1137,30095 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq1140,30131 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq1140,30131 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq1140,30131 -var2numbers([],_N,[]).var2numbers1147,30371 -var2numbers([],_N,[]).var2numbers1147,30371 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers1149,30395 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers1149,30395 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers1149,30395 -find_probs(R,S,Probs):-find_probs1155,30535 -find_probs(R,S,Probs):-find_probs1155,30535 -find_probs(R,S,Probs):-find_probs1155,30535 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs1159,30611 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs1159,30611 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs1159,30611 -get_probs([],[]).get_probs1163,30702 -get_probs([],[]).get_probs1163,30702 -get_probs([_H:P|T],[P1|T1]):-get_probs1165,30721 -get_probs([_H:P|T],[P1|T1]):-get_probs1165,30721 -get_probs([_H:P|T],[P1|T1]):-get_probs1165,30721 -list_el(0,_P,[]):-!.list_el1169,30780 -list_el(0,_P,[]):-!.list_el1169,30780 -list_el(0,_P,[]):-!.list_el1169,30780 -list_el(N,P,[P|T]):-list_el1171,30802 -list_el(N,P,[P|T]):-list_el1171,30802 -list_el(N,P,[P|T]):-list_el1171,30802 -p(File):-p1182,31119 -p(File):-p1182,31119 -p(File):-p1182,31119 -parse(File):-parse1185,31144 -parse(File):-parse1185,31144 -parse(File):-parse1185,31144 -process_clauses([(end_of_file,[])],_N).process_clauses1194,31327 -process_clauses([(end_of_file,[])],_N).process_clauses1194,31327 -process_clauses([((H:-B),V)|T],N):-process_clauses1196,31368 -process_clauses([((H:-B),V)|T],N):-process_clauses1196,31368 -process_clauses([((H:-B),V)|T],N):-process_clauses1196,31368 -process_clauses([((H:-B),V)|T],N):-process_clauses1207,31662 -process_clauses([((H:-B),V)|T],N):-process_clauses1207,31662 -process_clauses([((H:-B),V)|T],N):-process_clauses1207,31662 -process_clauses([((H:-B),V)|T],N):-process_clauses1219,31892 -process_clauses([((H:-B),V)|T],N):-process_clauses1219,31892 -process_clauses([((H:-B),V)|T],N):-process_clauses1219,31892 -process_clauses([((H:-B),V)|T],N):-!,process_clauses1231,32123 -process_clauses([((H:-B),V)|T],N):-!,process_clauses1231,32123 -process_clauses([((H:-B),V)|T],N):-!,process_clauses1231,32123 -process_clauses([(H,V)|T],N):-process_clauses1241,32330 -process_clauses([(H,V)|T],N):-process_clauses1241,32330 -process_clauses([(H,V)|T],N):-process_clauses1241,32330 -process_clauses([(H,V)|T],N):-process_clauses1251,32513 -process_clauses([(H,V)|T],N):-process_clauses1251,32513 -process_clauses([(H,V)|T],N):-process_clauses1251,32513 -process_clauses([(H,V)|T],N):-process_clauses1261,32697 -process_clauses([(H,V)|T],N):-process_clauses1261,32697 -process_clauses([(H,V)|T],N):-process_clauses1261,32697 -process_head(HL,NHL):-process_head1272,32980 -process_head(HL,NHL):-process_head1272,32980 -process_head(HL,NHL):-process_head1272,32980 -ground_prob([]).ground_prob1279,33074 -ground_prob([]).ground_prob1279,33074 -ground_prob([_H:PH|T]):-ground_prob1281,33092 -ground_prob([_H:PH|T]):-ground_prob1281,33092 -ground_prob([_H:PH|T]):-ground_prob1281,33092 -process_head_ground([H:PH],P,[H:PH1,'':PNull1]):-!,process_head_ground1285,33148 -process_head_ground([H:PH],P,[H:PH1,'':PNull1]):-!,process_head_ground1285,33148 -process_head_ground([H:PH],P,[H:PH1,'':PNull1]):-!,process_head_ground1285,33148 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground1294,33286 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground1294,33286 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground1294,33286 -process_body([],V,V).process_body1300,33489 -process_body([],V,V).process_body1300,33489 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1302,33512 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1302,33512 -process_body([setof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1302,33512 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body1309,33668 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body1309,33668 -process_body([setof(A,_G,_L)|T],VIn,VOut):-!,process_body1309,33668 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1314,33782 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1314,33782 -process_body([bagof(A,B^_G,_L)|T],VIn,VOut):-!,process_body1314,33782 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body1321,33938 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body1321,33938 -process_body([bagof(A,_G,_L)|T],VIn,VOut):-!,process_body1321,33938 -process_body([_H|T],VIn,VOut):-!,process_body1326,34052 -process_body([_H|T],VIn,VOut):-!,process_body1326,34052 -process_body([_H|T],VIn,VOut):-!,process_body1326,34052 -get_var_list([],[]).get_var_list1329,34114 -get_var_list([],[]).get_var_list1329,34114 -get_var_list([H|T],[H|T1]):-get_var_list1331,34136 -get_var_list([H|T],[H|T1]):-get_var_list1331,34136 -get_var_list([H|T],[H|T1]):-get_var_list1331,34136 -get_var_list([H|T],VarOut):-!,get_var_list1335,34198 -get_var_list([H|T],VarOut):-!,get_var_list1335,34198 -get_var_list([H|T],VarOut):-!,get_var_list1335,34198 -get_var(A,[A]):-get_var1340,34292 -get_var(A,[A]):-get_var1340,34292 -get_var(A,[A]):-get_var1340,34292 -get_var(A,V):-get_var1343,34321 -get_var(A,V):-get_var1343,34321 -get_var(A,V):-get_var1343,34321 -remove_vars([],V,V).remove_vars1347,34376 -remove_vars([],V,V).remove_vars1347,34376 -remove_vars([H|T],VIn,VOut):-remove_vars1349,34398 -remove_vars([H|T],VIn,VOut):-remove_vars1349,34398 -remove_vars([H|T],VIn,VOut):-remove_vars1349,34398 -delete_var(_H,[],[]).delete_var1353,34477 -delete_var(_H,[],[]).delete_var1353,34477 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var1355,34500 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var1355,34500 -delete_var(V,[VN=Var|T],[VN=Var|T1]):-delete_var1355,34500 -delete_var(_V,[_H|T],T).delete_var1359,34573 -delete_var(_V,[_H|T],T).delete_var1359,34573 -read_clauses(S,Clauses):-read_clauses1362,34651 -read_clauses(S,Clauses):-read_clauses1362,34651 -read_clauses(S,Clauses):-read_clauses1362,34651 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body1370,34791 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body1370,34791 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body1370,34791 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body1379,34943 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body1379,34943 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body1379,34943 -extract_vars_cl(end_of_file,[]).extract_vars_cl1389,35121 -extract_vars_cl(end_of_file,[]).extract_vars_cl1389,35121 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl1391,35155 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl1391,35155 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl1391,35155 -pair(_VN,[],[]).pair1401,35271 -pair(_VN,[],[]).pair1401,35271 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair1403,35289 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair1403,35289 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair1403,35289 -extract_vars(Var,V0,V):-extract_vars1407,35347 -extract_vars(Var,V0,V):-extract_vars1407,35347 -extract_vars(Var,V0,V):-extract_vars1407,35347 -extract_vars(Term,V0,V):-extract_vars1415,35444 -extract_vars(Term,V0,V):-extract_vars1415,35444 -extract_vars(Term,V0,V):-extract_vars1415,35444 -extract_vars_list([],V,V).extract_vars_list1420,35522 -extract_vars_list([],V,V).extract_vars_list1420,35522 -extract_vars_list([Term|T],V0,V):-extract_vars_list1422,35550 -extract_vars_list([Term|T],V0,V):-extract_vars_list1422,35550 -extract_vars_list([Term|T],V0,V):-extract_vars_list1422,35550 -listN(N,N,[]):-!.listN1427,35643 -listN(N,N,[]):-!.listN1427,35643 -listN(N,N,[]):-!.listN1427,35643 -listN(NIn,N,[NIn|T]):-listN1429,35662 -listN(NIn,N,[NIn|T]):-listN1429,35662 -listN(NIn,N,[NIn|T]):-listN1429,35662 -list2(N,N,[]):-!.list21433,35716 -list2(N,N,[]):-!.list21433,35716 -list2(N,N,[]):-!.list21433,35716 -list2(NIn,N,[2|T]):-list21435,35735 -list2(NIn,N,[2|T]):-list21435,35735 -list2(NIn,N,[2|T]):-list21435,35735 -list0(N,N,[]):-!.list01439,35787 -list0(N,N,[]):-!.list01439,35787 -list0(N,N,[]):-!.list01439,35787 -list0(NIn,N,[0.0|T]):-list01441,35806 -list0(NIn,N,[0.0|T]):-list01441,35806 -list0(NIn,N,[0.0|T]):-list01441,35806 -list2or([X],X):-list2or1448,35966 -list2or([X],X):-list2or1448,35966 -list2or([X],X):-list2or1448,35966 -list2or([H|T],(H ; Ta)):-!,list2or1451,35998 -list2or([H|T],(H ; Ta)):-!,list2or1451,35998 -list2or([H|T],(H ; Ta)):-!,list2or1451,35998 -list2and([X],X):-list2and1454,36043 -list2and([X],X):-list2and1454,36043 -list2and([X],X):-list2and1454,36043 -list2and([H|T],(H,Ta)):-!,list2and1457,36075 -list2and([H|T],(H,Ta)):-!,list2and1457,36075 -list2and([H|T],(H,Ta)):-!,list2and1457,36075 -member_eq(A,[H|_T]):-member_eq1460,36120 -member_eq(A,[H|_T]):-member_eq1460,36120 -member_eq(A,[H|_T]):-member_eq1460,36120 -member_eq(A,[_H|T]):-member_eq1463,36153 -member_eq(A,[_H|T]):-member_eq1463,36153 -member_eq(A,[_H|T]):-member_eq1463,36153 -subset_my([],_).subset_my1466,36193 -subset_my([],_).subset_my1466,36193 -subset_my([H|T],L):-subset_my1468,36211 -subset_my([H|T],L):-subset_my1468,36211 -subset_my([H|T],L):-subset_my1468,36211 -remove_duplicates_eq([],[]).remove_duplicates_eq1472,36267 -remove_duplicates_eq([],[]).remove_duplicates_eq1472,36267 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq1474,36297 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq1474,36297 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq1474,36297 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq1478,36379 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq1478,36379 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq1478,36379 -builtin(_A is _B).builtin1481,36446 -builtin(_A is _B).builtin1481,36446 -builtin(_A > _B).builtin1482,36465 -builtin(_A > _B).builtin1482,36465 -builtin(_A < _B).builtin1483,36483 -builtin(_A < _B).builtin1483,36483 -builtin(_A >= _B).builtin1484,36501 -builtin(_A >= _B).builtin1484,36501 -builtin(_A =< _B).builtin1485,36520 -builtin(_A =< _B).builtin1485,36520 -builtin(_A =:= _B).builtin1486,36539 -builtin(_A =:= _B).builtin1486,36539 -builtin(_A =\= _B).builtin1487,36559 -builtin(_A =\= _B).builtin1487,36559 -builtin(true).builtin1488,36579 -builtin(true).builtin1488,36579 -builtin(false).builtin1489,36594 -builtin(false).builtin1489,36594 -builtin(_A = _B).builtin1490,36610 -builtin(_A = _B).builtin1490,36610 -builtin(_A==_B).builtin1491,36628 -builtin(_A==_B).builtin1491,36628 -builtin(_A\=_B).builtin1492,36645 -builtin(_A\=_B).builtin1492,36645 -builtin(_A\==_B).builtin1493,36662 -builtin(_A\==_B).builtin1493,36662 -builtin(length(_L,_N)).builtin1494,36680 -builtin(length(_L,_N)).builtin1494,36680 -builtin(member(_El,_L)).builtin1495,36704 -builtin(member(_El,_L)).builtin1495,36704 -builtin(average(_L,_Av)).builtin1496,36729 -builtin(average(_L,_Av)).builtin1496,36729 -builtin(max_list(_L,_Max)).builtin1497,36755 -builtin(max_list(_L,_Max)).builtin1497,36755 -builtin(min_list(_L,_Max)).builtin1498,36783 -builtin(min_list(_L,_Max)).builtin1498,36783 -builtin(nth0(_,_,_)).builtin1499,36811 -builtin(nth0(_,_,_)).builtin1499,36811 -builtin(nth(_,_,_)).builtin1500,36833 -builtin(nth(_,_,_)).builtin1500,36833 -average(L,Av):-average1501,36854 -average(L,Av):-average1501,36854 -average(L,Av):-average1501,36854 -clique(Graph,Clique):-clique1506,36917 -clique(Graph,Clique):-clique1506,36917 -clique(Graph,Clique):-clique1506,36917 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1510,37017 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1510,37017 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1510,37017 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1516,37186 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1516,37186 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle1516,37186 -extend(_G,[],[],CompSub,CompSub):-!.extend1519,37261 -extend(_G,[],[],CompSub,CompSub):-!.extend1519,37261 -extend(_G,[],[],CompSub,CompSub):-!.extend1519,37261 -extend(G,Cand,Not,CS,CSOut):-extend1521,37299 -extend(G,Cand,Not,CS,CSOut):-extend1521,37299 -extend(G,Cand,Not,CS,CSOut):-extend1521,37299 -set(Parameter,Value):-set1525,37432 -set(Parameter,Value):-set1525,37432 -set(Parameter,Value):-set1525,37432 - -packages/cplint/mcintyre.pl,10881 -rule_n(1).rule_n15,282 -rule_n(1).rule_n15,282 -setting(epsilon_parsing, 0.0001).setting17,296 -setting(epsilon_parsing, 0.0001).setting17,296 -setting(compiling,true).setting19,333 -setting(compiling,true).setting19,333 -setting(k, 1000).setting28,456 -setting(k, 1000).setting28,456 -setting(min_error, 0.01).setting35,605 -setting(min_error, 0.01).setting35,605 -s(Goals, Samples, CPUTime, WallTime, Lower, Prob, Upper):-s40,640 -s(Goals, Samples, CPUTime, WallTime, Lower, Prob, Upper):-s40,640 -s(Goals, Samples, CPUTime, WallTime, Lower, Prob, Upper):-s40,640 -solve(Goals, Samples, CPUTime, WallTime, Lower, Prob, Upper) :-solve43,766 -solve(Goals, Samples, CPUTime, WallTime, Lower, Prob, Upper) :-solve43,766 -solve(Goals, Samples, CPUTime, WallTime, Lower, Prob, Upper) :-solve43,766 -montecarlo_cycle(N0, S0, Goals, K, MinError, Samples, Lower, Prob, Upper):-!,montecarlo_cycle89,2719 -montecarlo_cycle(N0, S0, Goals, K, MinError, Samples, Lower, Prob, Upper):-!,montecarlo_cycle89,2719 -montecarlo_cycle(N0, S0, Goals, K, MinError, Samples, Lower, Prob, Upper):-!,montecarlo_cycle89,2719 -montecarlo(0,N,S , _Goals,N,S):-!.montecarlo110,3349 -montecarlo(0,N,S , _Goals,N,S):-!.montecarlo110,3349 -montecarlo(0,N,S , _Goals,N,S):-!.montecarlo110,3349 -montecarlo(K1,Count, Success, Goals,N1,S1):-montecarlo112,3387 -montecarlo(K1,Count, Success, Goals,N1,S1):-montecarlo112,3387 -montecarlo(K1,Count, Success, Goals,N1,S1):-montecarlo112,3387 -member_eq(Item, [Head|_Tail]) :-member_eq127,3628 -member_eq(Item, [Head|_Tail]) :-member_eq127,3628 -member_eq(Item, [Head|_Tail]) :-member_eq127,3628 -member_eq(Item, [_Head|Tail]) :-member_eq130,3688 -member_eq(Item, [_Head|Tail]) :-member_eq130,3688 -member_eq(Item, [_Head|Tail]) :-member_eq130,3688 -list2and([X], X) :-list2and134,3751 -list2and([X], X) :-list2and134,3751 -list2and([X], X) :-list2and134,3751 -list2and([H|T], (H, Ta)) :- !,list2and137,3799 -list2and([H|T], (H, Ta)) :- !,list2and137,3799 -list2and([H|T], (H, Ta)) :- !,list2and137,3799 -list2or([X], X) :-list2or142,3856 -list2or([X], X) :-list2or142,3856 -list2or([X], X) :-list2or142,3856 -list2or([H|T], (H ; Ta)) :- !,list2or145,3900 -list2or([H|T], (H ; Ta)) :- !,list2or145,3900 -list2or([H|T], (H ; Ta)) :- !,list2or145,3900 -get_var_n(R,S,Probs,V):-get_var_n148,3952 -get_var_n(R,S,Probs,V):-get_var_n148,3952 -get_var_n(R,S,Probs,V):-get_var_n148,3952 -sample_head(_HeadList,R,VC,NH):-sample_head156,4072 -sample_head(_HeadList,R,VC,NH):-sample_head156,4072 -sample_head(_HeadList,R,VC,NH):-sample_head156,4072 -sample_head(HeadList,R,VC,NH):-sample_head159,4139 -sample_head(HeadList,R,VC,NH):-sample_head159,4139 -sample_head(HeadList,R,VC,NH):-sample_head159,4139 -generate_rules_fact([],_HeadList,_VC,_R,_Probs,_N,[]).generate_rules_fact163,4225 -generate_rules_fact([],_HeadList,_VC,_R,_Probs,_N,[]).generate_rules_fact163,4225 -generate_rules_fact([(Head:_P1),(null:_P2)],_HeadList,VC,R,Probs,N,[Clause]):-!,generate_rules_fact165,4283 -generate_rules_fact([(Head:_P1),(null:_P2)],_HeadList,VC,R,Probs,N,[Clause]):-!,generate_rules_fact165,4283 -generate_rules_fact([(Head:_P1),(null:_P2)],_HeadList,VC,R,Probs,N,[Clause]):-!,generate_rules_fact165,4283 -generate_rules_fact([(Head:_P)|T],HeadList,VC,R,Probs,N,[Clause|Clauses]):-generate_rules_fact169,4424 -generate_rules_fact([(Head:_P)|T],HeadList,VC,R,Probs,N,[Clause|Clauses]):-generate_rules_fact169,4424 -generate_rules_fact([(Head:_P)|T],HeadList,VC,R,Probs,N,[Clause|Clauses]):-generate_rules_fact169,4424 -generate_clause(Head,Body,_HeadList,VC,R,Probs,_BDDAnd,N,_Builtin,Clause):-generate_clause174,4628 -generate_clause(Head,Body,_HeadList,VC,R,Probs,_BDDAnd,N,_Builtin,Clause):-generate_clause174,4628 -generate_clause(Head,Body,_HeadList,VC,R,Probs,_BDDAnd,N,_Builtin,Clause):-generate_clause174,4628 -generate_rules([],_Body,_HeadList,_VC,_R,_Probs,_BDDAnd,_N,_Builtin,[]).generate_rules181,4848 -generate_rules([],_Body,_HeadList,_VC,_R,_Probs,_BDDAnd,_N,_Builtin,[]).generate_rules181,4848 -generate_rules([(Head:_P1),(null:_P2)],Body,HeadList,VC,R,Probs,BDDAnd,N,Builtin,[Clause]):-!,generate_rules183,4924 -generate_rules([(Head:_P1),(null:_P2)],Body,HeadList,VC,R,Probs,BDDAnd,N,Builtin,[Clause]):-!,generate_rules183,4924 -generate_rules([(Head:_P1),(null:_P2)],Body,HeadList,VC,R,Probs,BDDAnd,N,Builtin,[Clause]):-!,generate_rules183,4924 -generate_rules([(Head:_P)|T],Body,HeadList,VC,R,Probs,BDDAnd,N,Builtin,[Clause|Clauses]):-generate_rules186,5096 -generate_rules([(Head:_P)|T],Body,HeadList,VC,R,Probs,BDDAnd,N,Builtin,[Clause|Clauses]):-generate_rules186,5096 -generate_rules([(Head:_P)|T],Body,HeadList,VC,R,Probs,BDDAnd,N,Builtin,[Clause|Clauses]):-generate_rules186,5096 -set(Parameter,Value):-set194,5419 -set(Parameter,Value):-set194,5419 -set(Parameter,Value):-set194,5419 -extract_vars(Variable, Var0, Var1) :- extract_vars200,5518 -extract_vars(Variable, Var0, Var1) :- extract_vars200,5518 -extract_vars(Variable, Var0, Var1) :- extract_vars200,5518 -extract_vars(Term, Var0, Var1) :- extract_vars206,5665 -extract_vars(Term, Var0, Var1) :- extract_vars206,5665 -extract_vars(Term, Var0, Var1) :- extract_vars206,5665 -extract_vars_list([], Var, Var).extract_vars_list212,5767 -extract_vars_list([], Var, Var).extract_vars_list212,5767 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list214,5803 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list214,5803 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list214,5803 -difference([],_,[]).difference219,5927 -difference([],_,[]).difference219,5927 -difference([H|T],L2,L3):-difference221,5951 -difference([H|T],L2,L3):-difference221,5951 -difference([H|T],L2,L3):-difference221,5951 -difference([H|T],L2,[H|L3]):-difference225,6025 -difference([H|T],L2,[H|L3]):-difference225,6025 -difference([H|T],L2,[H|L3]):-difference225,6025 -process_head(HeadList, GroundHeadList) :- process_head229,6084 -process_head(HeadList, GroundHeadList) :- process_head229,6084 -process_head(HeadList, GroundHeadList) :- process_head229,6084 -process_head(HeadList, HeadList).process_head233,6212 -process_head(HeadList, HeadList).process_head233,6212 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead|Null]) :-!,process_head_ground240,6396 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead|Null]) :-!,process_head_ground240,6396 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead|Null]) :-!,process_head_ground240,6396 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead|Next]) :- process_head_ground249,6644 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead|Next]) :- process_head_ground249,6644 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead|Next]) :- process_head_ground249,6644 -ground_prob([]).ground_prob253,6798 -ground_prob([]).ground_prob253,6798 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob255,6818 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob255,6818 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob255,6818 -get_probs([], []).get_probs259,6965 -get_probs([], []).get_probs259,6965 -get_probs([_H:P|T], [P1|T1]) :- get_probs261,6987 -get_probs([_H:P|T], [P1|T1]) :- get_probs261,6987 -get_probs([_H:P|T], [P1|T1]) :- get_probs261,6987 -builtin(_A is _B).builtin265,7055 -builtin(_A is _B).builtin265,7055 -builtin(_A > _B).builtin266,7075 -builtin(_A > _B).builtin266,7075 -builtin(_A < _B).builtin267,7094 -builtin(_A < _B).builtin267,7094 -builtin(_A >= _B).builtin268,7113 -builtin(_A >= _B).builtin268,7113 -builtin(_A =< _B).builtin269,7133 -builtin(_A =< _B).builtin269,7133 -builtin(_A =:= _B).builtin270,7153 -builtin(_A =:= _B).builtin270,7153 -builtin(_A =\= _B).builtin271,7174 -builtin(_A =\= _B).builtin271,7174 -builtin(true).builtin272,7195 -builtin(true).builtin272,7195 -builtin(false).builtin273,7211 -builtin(false).builtin273,7211 -builtin(_A = _B).builtin274,7228 -builtin(_A = _B).builtin274,7228 -builtin(_A==_B).builtin275,7247 -builtin(_A==_B).builtin275,7247 -builtin(_A\=_B).builtin276,7265 -builtin(_A\=_B).builtin276,7265 -builtin(_A\==_B).builtin277,7283 -builtin(_A\==_B).builtin277,7283 -builtin(length(_L, _N)).builtin278,7302 -builtin(length(_L, _N)).builtin278,7302 -builtin(member(_El, _L)).builtin279,7328 -builtin(member(_El, _L)).builtin279,7328 -builtin(average(_L, _Av)).builtin280,7355 -builtin(average(_L, _Av)).builtin280,7355 -builtin(max_list(_L, _Max)).builtin281,7383 -builtin(max_list(_L, _Max)).builtin281,7383 -builtin(min_list(_L, _Max)).builtin282,7413 -builtin(min_list(_L, _Max)).builtin282,7413 -builtin(nth0(_, _, _)).builtin283,7443 -builtin(nth0(_, _, _)).builtin283,7443 -builtin(nth(_, _, _)).builtin284,7468 -builtin(nth(_, _, _)).builtin284,7468 -builtin(eraseall(_Id)).builtin285,7492 -builtin(eraseall(_Id)).builtin285,7492 -builtin(recordzifnot(_Id, _Item, _)).builtin286,7517 -builtin(recordzifnot(_Id, _Item, _)).builtin286,7517 -parse(FileIn,FileOut):-parse288,7558 -parse(FileIn,FileOut):-parse288,7558 -parse(FileIn,FileOut):-parse288,7558 -process_clauses([end_of_file],C,C).process_clauses297,7735 -process_clauses([end_of_file],C,C).process_clauses297,7735 -process_clauses([H|T],C0,C1):-process_clauses299,7774 -process_clauses([H|T],C0,C1):-process_clauses299,7774 -process_clauses([H|T],C0,C1):-process_clauses299,7774 -read_clauses(S,[Cl|Out]):-read_clauses312,7949 -read_clauses(S,[Cl|Out]):-read_clauses312,7949 -read_clauses(S,[Cl|Out]):-read_clauses312,7949 -write_clauses([],_).write_clauses320,8070 -write_clauses([],_).write_clauses320,8070 -write_clauses([H|T],S):-write_clauses322,8094 -write_clauses([H|T],S):-write_clauses322,8094 -write_clauses([H|T],S):-write_clauses322,8094 -sample(HeadList, HeadId) :-sample328,8183 -sample(HeadList, HeadId) :-sample328,8183 -sample(HeadList, HeadId) :-sample328,8183 -sample([HeadProb|Tail], Index, Prev, Prob, HeadId) :-sample332,8274 -sample([HeadProb|Tail], Index, Prev, Prob, HeadId) :-sample332,8274 -sample([HeadProb|Tail], Index, Prev, Prob, HeadId) :-sample332,8274 -get_next_rule_number(R):-get_next_rule_number339,8461 -get_next_rule_number(R):-get_next_rule_number339,8461 -get_next_rule_number(R):-get_next_rule_number339,8461 -user:term_expansion((Head :- Body), Clauses):-term_expansion345,8549 -user:term_expansion((Head :- Body), Clauses):-term_expansion345,8549 -user:term_expansion((Head :- Body), Clauses) :- term_expansion356,8938 -user:term_expansion((Head :- Body), Clauses) :- term_expansion356,8938 -user:term_expansion(Head,Clauses) :- term_expansion370,9378 -user:term_expansion(Head,Clauses) :- term_expansion370,9378 -user:term_expansion(Head,Clause) :- term_expansion381,9744 -user:term_expansion(Head,Clause) :- term_expansion381,9744 - -packages/cplint/picl.pl,19976 -setting(epsilon_parsing,0.00001).setting23,524 -setting(epsilon_parsing,0.00001).setting23,524 -setting(save_dot,false).setting24,558 -setting(save_dot,false).setting24,558 -setting(ground_body,false). setting25,583 -setting(ground_body,false). setting25,583 -setting(min_error,0.01).setting30,872 -setting(min_error,0.01).setting30,872 -setting(depth_bound,4).setting31,897 -setting(depth_bound,4).setting31,897 -setting(prob_threshold,0.00001).setting32,921 -setting(prob_threshold,0.00001).setting32,921 -setting(prob_bound,0.01).setting33,954 -setting(prob_bound,0.01).setting33,954 -s(GoalsList,Prob):-s40,1192 -s(GoalsList,Prob):-s40,1192 -s(GoalsList,Prob):-s40,1192 -solve(GoalsList,Prob):-solve44,1238 -solve(GoalsList,Prob):-solve44,1238 -solve(GoalsList,Prob):-solve44,1238 -solve(GoalsList,0.0):-solve55,1517 -solve(GoalsList,0.0):-solve55,1517 -solve(GoalsList,0.0):-solve55,1517 -s(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-s67,2000 -s(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-s67,2000 -s(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-s67,2000 -solve(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve71,2122 -solve(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve71,2122 -solve(GoalsList,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve71,2122 -print_mem:-print_mem98,2918 -find_deriv(GoalsList,Deriv):-find_deriv108,3343 -find_deriv(GoalsList,Deriv):-find_deriv108,3343 -find_deriv(GoalsList,Deriv):-find_deriv108,3343 -sc(Goals,Evidence,Prob):-sc121,3821 -sc(Goals,Evidence,Prob):-sc121,3821 -sc(Goals,Evidence,Prob):-sc121,3821 -solve_cond(Goals,Evidence,Prob):-solve_cond124,3882 -solve_cond(Goals,Evidence,Prob):-solve_cond124,3882 -solve_cond(Goals,Evidence,Prob):-solve_cond124,3882 -sc(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc150,4754 -sc(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc150,4754 -sc(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-sc150,4754 -solve_cond(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve_cond153,4891 -solve_cond(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve_cond153,4891 -solve_cond(Goals,Evidence,Prob,CPUTime1,CPUTime2,WallTime1,WallTime2):-solve_cond153,4891 -solve_cond_goals(Goals,LE,0,Time1,0):-solve_cond_goals182,5745 -solve_cond_goals(Goals,LE,0,Time1,0):-solve_cond_goals182,5745 -solve_cond_goals(Goals,LE,0,Time1,0):-solve_cond_goals182,5745 -call_compute_prob(NewVarGE,FormulaGE,ProbGE):-call_compute_prob188,5899 -call_compute_prob(NewVarGE,FormulaGE,ProbGE):-call_compute_prob188,5899 -call_compute_prob(NewVarGE,FormulaGE,ProbGE):-call_compute_prob188,5899 -find_deriv_GE(LD,GoalsList,Deriv):-find_deriv_GE196,6109 -find_deriv_GE(LD,GoalsList,Deriv):-find_deriv_GE196,6109 -find_deriv_GE(LD,GoalsList,Deriv):-find_deriv_GE196,6109 -solve([],C,C):-!.solve210,6596 -solve([],C,C):-!.solve210,6596 -solve([],C,C):-!.solve210,6596 -solve([\+ H|T],CIn,COut):-solve212,6615 -solve([\+ H|T],CIn,COut):-solve212,6615 -solve([\+ H|T],CIn,COut):-solve212,6615 -solve([\+ H |T],CIn,COut):-!,solve217,6693 -solve([\+ H |T],CIn,COut):-!,solve217,6693 -solve([\+ H |T],CIn,COut):-!,solve217,6693 -solve([H|T],CIn,COut):-solve223,6823 -solve([H|T],CIn,COut):-solve223,6823 -solve([H|T],CIn,COut):-solve223,6823 -solve([H|T],CIn,COut):-solve228,6893 -solve([H|T],CIn,COut):-solve228,6893 -solve([H|T],CIn,COut):-solve228,6893 -solve([H|T],CIn,COut):-solve233,6973 -solve([H|T],CIn,COut):-solve233,6973 -solve([H|T],CIn,COut):-solve233,6973 -solve_pres(R,S,N,T,CIn,COut):-solve_pres237,7056 -solve_pres(R,S,N,T,CIn,COut):-solve_pres237,7056 -solve_pres(R,S,N,T,CIn,COut):-solve_pres237,7056 -solve_pres(R,S,N,T,CIn,COut):-solve_pres241,7135 -solve_pres(R,S,N,T,CIn,COut):-solve_pres241,7135 -solve_pres(R,S,N,T,CIn,COut):-solve_pres241,7135 -solve_pres(R,S,N,T,CIn,COut):-solve_pres246,7218 -solve_pres(R,S,N,T,CIn,COut):-solve_pres246,7218 -solve_pres(R,S,N,T,CIn,COut):-solve_pres246,7218 -find_rule(H,(R,S,N),C):-find_rule257,7531 -find_rule(H,(R,S,N),C):-find_rule257,7531 -find_rule(H,(R,S,N),C):-find_rule257,7531 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head261,7639 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head261,7639 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head263,7696 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head263,7696 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head263,7696 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head267,7846 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head267,7846 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head267,7846 -not_different(_N,_N1,S,S1):-not_different272,7978 -not_different(_N,_N1,S,S1):-not_different272,7978 -not_different(_N,_N1,S,S1):-not_different272,7978 -not_different(N,N,S,S).not_different275,8019 -not_different(N,N,S,S).not_different275,8019 -choose_clauses(C,[],C).choose_clauses282,8238 -choose_clauses(C,[],C).choose_clauses282,8238 -choose_clauses(CIn,[D|T],COut):-choose_clauses284,8263 -choose_clauses(CIn,[D|T],COut):-choose_clauses284,8263 -choose_clauses(CIn,[D|T],COut):-choose_clauses284,8263 -add_inc(N,R,S,CIn,T,COut):-add_inc290,8368 -add_inc(N,R,S,CIn,T,COut):-add_inc290,8368 -add_inc(N,R,S,CIn,T,COut):-add_inc290,8368 -add_inc(N,R,S,CIn,T,COut):-add_inc294,8479 -add_inc(N,R,S,CIn,T,COut):-add_inc294,8479 -add_inc(N,R,S,CIn,T,COut):-add_inc294,8479 -set_diff([H|_T],[H|_S],[]):-!.set_diff299,8601 -set_diff([H|_T],[H|_S],[]):-!.set_diff299,8601 -set_diff([H|_T],[H|_S],[]):-!.set_diff299,8601 -set_diff([H|T],S,[H|R]):-set_diff301,8633 -set_diff([H|T],S,[H|R]):-set_diff301,8633 -set_diff([H|T],S,[H|R]):-set_diff301,8633 -set_diff(T,_S,T).set_diff304,8678 -set_diff(T,_S,T).set_diff304,8678 -set_diff([H|T],[H|S],R):-!,set_diff307,8700 -set_diff([H|T],[H|S],R):-!,set_diff307,8700 -set_diff([H|T],[H|S],R):-!,set_diff307,8700 -set_diff(T,_S,T).set_diff310,8747 -set_diff(T,_S,T).set_diff310,8747 -set_diff([],_S,[]).set_diff313,8771 -set_diff([],_S,[]).set_diff313,8771 -set_diff([H|T],S,R):-set_diff315,8792 -set_diff([H|T],S,R):-set_diff315,8792 -set_diff([H|T],S,R):-set_diff315,8792 -set_diff([H|T],S,[H|R]):-set_diff319,8849 -set_diff([H|T],S,[H|R]):-set_diff319,8849 -set_diff([H|T],S,[H|R]):-set_diff319,8849 -new_head(N,R,S,N1):-new_head324,8981 -new_head(N,R,S,N1):-new_head324,8981 -new_head(N,R,S,N1):-new_head324,8981 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head330,9116 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head330,9116 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head330,9116 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head333,9196 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head333,9196 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head333,9196 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present340,9418 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present340,9418 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present340,9418 -already_present(N,R,S,[_H|T]):-already_present343,9465 -already_present(N,R,S,[_H|T]):-already_present343,9465 -already_present(N,R,S,[_H|T]):-already_present343,9465 -rem_dup_lists([],L,L).rem_dup_lists350,9747 -rem_dup_lists([],L,L).rem_dup_lists350,9747 -rem_dup_lists([H|T],L0,L):-rem_dup_lists352,9771 -rem_dup_lists([H|T],L0,L):-rem_dup_lists352,9771 -rem_dup_lists([H|T],L0,L):-rem_dup_lists352,9771 -rem_dup_lists([H|T],L0,L):-rem_dup_lists356,9869 -rem_dup_lists([H|T],L0,L):-rem_dup_lists356,9869 -rem_dup_lists([H|T],L0,L):-rem_dup_lists356,9869 -member_subset(E,[H|_T]):-member_subset359,9926 -member_subset(E,[H|_T]):-member_subset359,9926 -member_subset(E,[H|_T]):-member_subset359,9926 -member_subset(E,[_H|T]):-member_subset362,9972 -member_subset(E,[_H|T]):-member_subset362,9972 -member_subset(E,[_H|T]):-member_subset362,9972 -build_formula([],[],Var,Var,C,C).build_formula377,10471 -build_formula([],[],Var,Var,C,C).build_formula377,10471 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula379,10506 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula379,10506 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula379,10506 -build_formula([],[],Var,Var).build_formula387,10681 -build_formula([],[],Var,Var).build_formula387,10681 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula389,10712 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula389,10712 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula389,10712 -build_term([],[],Var,Var).build_term394,10822 -build_term([],[],Var,Var).build_term394,10822 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term396,10850 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term396,10850 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term396,10850 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term399,10934 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term399,10934 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term399,10934 -nth0_eq(N,N,[H|_T],El):-nth0_eq412,11319 -nth0_eq(N,N,[H|_T],El):-nth0_eq412,11319 -nth0_eq(N,N,[H|_T],El):-nth0_eq412,11319 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq415,11355 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq415,11355 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq415,11355 -var2numbers([],_N,[]).var2numbers422,11595 -var2numbers([],_N,[]).var2numbers422,11595 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers424,11619 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers424,11619 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers424,11619 -find_probs(R,S,Probs):-find_probs430,11759 -find_probs(R,S,Probs):-find_probs430,11759 -find_probs(R,S,Probs):-find_probs430,11759 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs434,11842 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs434,11842 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs434,11842 -get_probs([],[]).get_probs438,11933 -get_probs([],[]).get_probs438,11933 -get_probs([_H:P|T],[P1|T1]):-get_probs440,11952 -get_probs([_H:P|T],[P1|T1]):-get_probs440,11952 -get_probs([_H:P|T],[P1|T1]):-get_probs440,11952 -list_el(0,_P,[]):-!.list_el444,12011 -list_el(0,_P,[]):-!.list_el444,12011 -list_el(0,_P,[]):-!.list_el444,12011 -list_el(N,P,[P|T]):-list_el446,12033 -list_el(N,P,[P|T]):-list_el446,12033 -list_el(N,P,[P|T]):-list_el446,12033 -p(File):-p457,12350 -p(File):-p457,12350 -p(File):-p457,12350 -parse(File):-parse460,12375 -parse(File):-parse460,12375 -parse(File):-parse460,12375 -process_clauses([(end_of_file,[])],_N).process_clauses470,12599 -process_clauses([(end_of_file,[])],_N).process_clauses470,12599 -process_clauses([((H <- B),_V)|T],N):-!,process_clauses472,12641 -process_clauses([((H <- B),_V)|T],N):-!,process_clauses472,12641 -process_clauses([((H <- B),_V)|T],N):-!,process_clauses472,12641 -process_clauses([((prob H),V)|T],N):-!,process_clauses478,12753 -process_clauses([((prob H),V)|T],N):-!,process_clauses478,12753 -process_clauses([((prob H),V)|T],N):-!,process_clauses478,12753 -process_clauses([(H,_V)|T],N):-process_clauses488,12975 -process_clauses([(H,_V)|T],N):-process_clauses488,12975 -process_clauses([(H,_V)|T],N):-process_clauses488,12975 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules493,13058 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules493,13058 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules493,13058 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules495,13104 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules495,13104 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules495,13104 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules497,13155 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules497,13155 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules497,13155 -process_head(HL,NHL):-process_head506,13413 -process_head(HL,NHL):-process_head506,13413 -process_head(HL,NHL):-process_head506,13413 -ground_prob([]).ground_prob513,13505 -ground_prob([]).ground_prob513,13505 -ground_prob([_H:PH|T]):-ground_prob515,13523 -ground_prob([_H:PH|T]):-ground_prob515,13523 -ground_prob([_H:PH|T]):-ground_prob515,13523 -process_head_ground([H:PH],P,[H:PH1|Null]):-process_head_ground519,13579 -process_head_ground([H:PH],P,[H:PH1|Null]):-process_head_ground519,13579 -process_head_ground([H:PH],P,[H:PH1|Null]):-process_head_ground519,13579 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground531,13771 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground531,13771 -process_head_ground([H:PH|T],P,[H:PH1|NT]):-process_head_ground531,13771 -read_clauses(S,Clauses):-read_clauses537,13926 -read_clauses(S,Clauses):-read_clauses537,13926 -read_clauses(S,Clauses):-read_clauses537,13926 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body545,14066 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body545,14066 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body545,14066 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body554,14218 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body554,14218 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body554,14218 -extract_vars_cl(end_of_file,[]).extract_vars_cl564,14396 -extract_vars_cl(end_of_file,[]).extract_vars_cl564,14396 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl566,14430 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl566,14430 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl566,14430 -pair(_VN,[],[]).pair576,14546 -pair(_VN,[],[]).pair576,14546 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair578,14564 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair578,14564 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair578,14564 -extract_vars(Var,V0,V):-extract_vars582,14622 -extract_vars(Var,V0,V):-extract_vars582,14622 -extract_vars(Var,V0,V):-extract_vars582,14622 -extract_vars(Term,V0,V):-extract_vars590,14719 -extract_vars(Term,V0,V):-extract_vars590,14719 -extract_vars(Term,V0,V):-extract_vars590,14719 -extract_vars_list([],V,V).extract_vars_list595,14797 -extract_vars_list([],V,V).extract_vars_list595,14797 -extract_vars_list([Term|T],V0,V):-extract_vars_list597,14825 -extract_vars_list([Term|T],V0,V):-extract_vars_list597,14825 -extract_vars_list([Term|T],V0,V):-extract_vars_list597,14825 -listN(N,N,[]):-!.listN602,14918 -listN(N,N,[]):-!.listN602,14918 -listN(N,N,[]):-!.listN602,14918 -listN(NIn,N,[NIn|T]):-listN604,14937 -listN(NIn,N,[NIn|T]):-listN604,14937 -listN(NIn,N,[NIn|T]):-listN604,14937 -list2or([X],X):-list2or610,15096 -list2or([X],X):-list2or610,15096 -list2or([X],X):-list2or610,15096 -list2or([H|T],(H ; Ta)):-!,list2or613,15128 -list2or([H|T],(H ; Ta)):-!,list2or613,15128 -list2or([H|T],(H ; Ta)):-!,list2or613,15128 -list2and([X],X):-list2and616,15173 -list2and([X],X):-list2and616,15173 -list2and([X],X):-list2and616,15173 -list2and([H|T],(H,Ta)):-!,list2and619,15205 -list2and([H|T],(H,Ta)):-!,list2and619,15205 -list2and([H|T],(H,Ta)):-!,list2and619,15205 -member_eq(A,[H|_T]):-member_eq622,15250 -member_eq(A,[H|_T]):-member_eq622,15250 -member_eq(A,[H|_T]):-member_eq622,15250 -member_eq(A,[_H|T]):-member_eq625,15283 -member_eq(A,[_H|T]):-member_eq625,15283 -member_eq(A,[_H|T]):-member_eq625,15283 -subset_my([],_).subset_my628,15323 -subset_my([],_).subset_my628,15323 -subset_my([H|T],L):-subset_my630,15341 -subset_my([H|T],L):-subset_my630,15341 -subset_my([H|T],L):-subset_my630,15341 -remove_duplicates_eq([],[]).remove_duplicates_eq634,15397 -remove_duplicates_eq([],[]).remove_duplicates_eq634,15397 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq636,15427 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq636,15427 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq636,15427 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq640,15509 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq640,15509 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq640,15509 -builtin(_A is _B).builtin643,15576 -builtin(_A is _B).builtin643,15576 -builtin(_A > _B).builtin644,15595 -builtin(_A > _B).builtin644,15595 -builtin(_A < _B).builtin645,15613 -builtin(_A < _B).builtin645,15613 -builtin(_A >= _B).builtin646,15631 -builtin(_A >= _B).builtin646,15631 -builtin(_A =< _B).builtin647,15650 -builtin(_A =< _B).builtin647,15650 -builtin(_A =:= _B).builtin648,15669 -builtin(_A =:= _B).builtin648,15669 -builtin(_A =\= _B).builtin649,15689 -builtin(_A =\= _B).builtin649,15689 -builtin(true).builtin650,15709 -builtin(true).builtin650,15709 -builtin(false).builtin651,15724 -builtin(false).builtin651,15724 -builtin(_A = _B).builtin652,15740 -builtin(_A = _B).builtin652,15740 -builtin(_A==_B).builtin653,15758 -builtin(_A==_B).builtin653,15758 -builtin(_A\=_B).builtin654,15775 -builtin(_A\=_B).builtin654,15775 -builtin(_A\==_B).builtin655,15792 -builtin(_A\==_B).builtin655,15792 -builtin(length(_L,_N)).builtin656,15810 -builtin(length(_L,_N)).builtin656,15810 -builtin(member(_El,_L)).builtin657,15834 -builtin(member(_El,_L)).builtin657,15834 -builtin(average(_L,_Av)).builtin658,15859 -builtin(average(_L,_Av)).builtin658,15859 -builtin(max_list(_L,_Max)).builtin659,15885 -builtin(max_list(_L,_Max)).builtin659,15885 -builtin(min_list(_L,_Max)).builtin660,15913 -builtin(min_list(_L,_Max)).builtin660,15913 -builtin(nth0(_,_,_)).builtin661,15941 -builtin(nth0(_,_,_)).builtin661,15941 -builtin(nth(_,_,_)).builtin662,15963 -builtin(nth(_,_,_)).builtin662,15963 -average(L,Av):-average663,15984 -average(L,Av):-average663,15984 -average(L,Av):-average663,15984 -clique(Graph,Clique):-clique668,16047 -clique(Graph,Clique):-clique668,16047 -clique(Graph,Clique):-clique668,16047 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle672,16147 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle672,16147 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle672,16147 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle678,16316 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle678,16316 -extend_cycle(G,[H|T],Not,CS,CSOut):-extend_cycle678,16316 -extend(_G,[],[],CompSub,CompSub):-!.extend681,16391 -extend(_G,[],[],CompSub,CompSub):-!.extend681,16391 -extend(_G,[],[],CompSub,CompSub):-!.extend681,16391 -extend(G,Cand,Not,CS,CSOut):-extend683,16429 -extend(G,Cand,Not,CS,CSOut):-extend683,16429 -extend(G,Cand,Not,CS,CSOut):-extend683,16429 -convert_body((~ A & B),[\+ A|B1]):-!,convert_body686,16497 -convert_body((~ A & B),[\+ A|B1]):-!,convert_body686,16497 -convert_body((~ A & B),[\+ A|B1]):-!,convert_body686,16497 -convert_body((A & B),[A|B1]):-!,convert_body689,16557 -convert_body((A & B),[A|B1]):-!,convert_body689,16557 -convert_body((A & B),[A|B1]):-!,convert_body689,16557 -convert_body(~ A,[\+ A]):-!.convert_body692,16612 -convert_body(~ A,[\+ A]):-!.convert_body692,16612 -convert_body(~ A,[\+ A]):-!.convert_body692,16612 -convert_body(A,[A]).convert_body694,16642 -convert_body(A,[A]).convert_body694,16642 -set(Parameter,Value):-set697,16729 -set(Parameter,Value):-set697,16729 -set(Parameter,Value):-set697,16729 - -packages/cplint/README,0 - -packages/cplint/rib/Artistic,0 - -packages/cplint/rib/hmml2.l,0 - -packages/cplint/rib/inference_ib.pl,27154 -setting(epsilon_parsing,0.00001).setting24,480 -setting(epsilon_parsing,0.00001).setting24,480 -setting(save_dot,false).setting25,514 -setting(save_dot,false).setting25,514 -setting(ground_body,true). setting26,539 -setting(ground_body,true). setting26,539 -get_atoms([],[]):-!.get_atoms41,1043 -get_atoms([],[]):-!.get_atoms41,1043 -get_atoms([],[]):-!.get_atoms41,1043 -get_atoms([\+ H|T],T1):-get_atoms43,1065 -get_atoms([\+ H|T],T1):-get_atoms43,1065 -get_atoms([\+ H|T],T1):-get_atoms43,1065 -get_atoms([H|T],T1):-get_atoms47,1126 -get_atoms([H|T],T1):-get_atoms47,1126 -get_atoms([H|T],T1):-get_atoms47,1126 -get_atoms([\+ H|T],[H1|T1]):-!,get_atoms52,1185 -get_atoms([\+ H|T],[H1|T1]):-!,get_atoms52,1185 -get_atoms([\+ H|T],[H1|T1]):-!,get_atoms52,1185 -get_atoms([H|T],[H1|T1]):-get_atoms57,1272 -get_atoms([H|T],[H1|T1]):-get_atoms57,1272 -get_atoms([H|T],[H1|T1]):-get_atoms57,1272 -lookup_gvars([],_AV,[]):-!. lookup_gvars62,1354 -lookup_gvars([],_AV,[]):-!. lookup_gvars62,1354 -lookup_gvars([],_AV,[]):-!. lookup_gvars62,1354 -lookup_gvars([\+ H|T],AV,[HV|T1]):- !,lookup_gvars64,1385 -lookup_gvars([\+ H|T],AV,[HV|T1]):- !,lookup_gvars64,1385 -lookup_gvars([\+ H|T],AV,[HV|T1]):- !,lookup_gvars64,1385 -lookup_gvars([H|T],AV,[HV|T1]):- lookup_gvars68,1476 -lookup_gvars([H|T],AV,[HV|T1]):- lookup_gvars68,1476 -lookup_gvars([H|T],AV,[HV|T1]):- lookup_gvars68,1476 -get_prob(ChoiceVar,Vars,Distr):- get_prob72,1564 -get_prob(ChoiceVar,Vars,Distr):- get_prob72,1564 -get_prob(ChoiceVar,Vars,Distr):- get_prob72,1564 -get_CL(Goal,Vars,CL):- get_CL76,1717 -get_CL(Goal,Vars,CL):- get_CL76,1717 -get_CL(Goal,Vars,CL):- get_CL76,1717 -remove_head([],[]).remove_head81,1853 -remove_head([],[]).remove_head81,1853 -remove_head([d(R,S)|T],[d(R,S)|T1]):-remove_head83,1874 -remove_head([d(R,S)|T],[d(R,S)|T1]):-remove_head83,1874 -remove_head([d(R,S)|T],[d(R,S)|T1]):-remove_head83,1874 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head87,1947 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head87,1947 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head87,1947 -append_all([],L,L):-!.append_all91,2021 -append_all([],L,L):-!.append_all91,2021 -append_all([],L,L):-!.append_all91,2021 -append_all([LIntH|IntT],IntIn,IntOut):-append_all93,2045 -append_all([LIntH|IntT],IntIn,IntOut):-append_all93,2045 -append_all([LIntH|IntT],IntIn,IntOut):-append_all93,2045 -process_goals([],[],[]):-!.process_goals97,2150 -process_goals([],[],[]):-!.process_goals97,2150 -process_goals([],[],[]):-!.process_goals97,2150 -process_goals([H|T],[HG|TG],[HV|TV]):-process_goals99,2179 -process_goals([H|T],[HG|TG],[HV|TV]):-process_goals99,2179 -process_goals([H|T],[HG|TG],[HV|TV]):-process_goals99,2179 -build_ground_lpad([],[]):-!.build_ground_lpad104,2281 -build_ground_lpad([],[]):-!.build_ground_lpad104,2281 -build_ground_lpad([],[]):-!.build_ground_lpad104,2281 -build_ground_lpad([(R,S)|T],[(R,S,Head,Body)|T1]):-build_ground_lpad106,2311 -build_ground_lpad([(R,S)|T],[(R,S,Head,Body)|T1]):-build_ground_lpad106,2311 -build_ground_lpad([(R,S)|T],[(R,S,Head,Body)|T1]):-build_ground_lpad106,2311 -add_ev([],_AV):-!.add_ev111,2429 -add_ev([],_AV):-!.add_ev111,2429 -add_ev([],_AV):-!.add_ev111,2429 -add_ev([\+ H|T],AV):-!,add_ev113,2449 -add_ev([\+ H|T],AV):-!,add_ev113,2449 -add_ev([\+ H|T],AV):-!,add_ev113,2449 -add_ev([H|T],AV):-add_ev120,2575 -add_ev([H|T],AV):-add_ev120,2575 -add_ev([H|T],AV):-add_ev120,2575 -lookup_gvars([],_AV,[],S,S):-!. lookup_gvars129,2700 -lookup_gvars([],_AV,[],S,S):-!. lookup_gvars129,2700 -lookup_gvars([],_AV,[],S,S):-!. lookup_gvars129,2700 -lookup_gvars([\+ H|T],AV,[HV|T1],Sign0,Sign2):- !,lookup_gvars131,2735 -lookup_gvars([\+ H|T],AV,[HV|T1],Sign0,Sign2):- !,lookup_gvars131,2735 -lookup_gvars([\+ H|T],AV,[HV|T1],Sign0,Sign2):- !,lookup_gvars131,2735 -lookup_gvars([H|T],AV,[HV|T1],Sign0,Sign2):- lookup_gvars137,2914 -lookup_gvars([H|T],AV,[HV|T1],Sign0,Sign2):- lookup_gvars137,2914 -lookup_gvars([H|T],AV,[HV|T1],Sign0,Sign2):- lookup_gvars137,2914 -build_table_conj(R,Table):-build_table_conj144,3089 -build_table_conj(R,Table):-build_table_conj144,3089 -build_table_conj(R,Table):-build_table_conj144,3089 -build_col_conj([],Tr,Final,Row0,Row1):-!,build_col_conj148,3187 -build_col_conj([],Tr,Final,Row0,Row1):-!,build_col_conj148,3187 -build_col_conj([],Tr,Final,Row0,Row1):-!,build_col_conj148,3187 -build_col_conj([\+_H|RP],Tr,Final,Row0,Row2):-!,build_col_conj155,3313 -build_col_conj([\+_H|RP],Tr,Final,Row0,Row2):-!,build_col_conj155,3313 -build_col_conj([\+_H|RP],Tr,Final,Row0,Row2):-!,build_col_conj155,3313 -build_col_conj([_H|RP],Tr,Final,Row0,Row2):-build_col_conj159,3444 -build_col_conj([_H|RP],Tr,Final,Row0,Row2):-build_col_conj159,3444 -build_col_conj([_H|RP],Tr,Final,Row0,Row2):-build_col_conj159,3444 -build_table_atoms(H,R,Table):-build_table_atoms163,3571 -build_table_atoms(H,R,Table):-build_table_atoms163,3571 -build_table_atoms(H,R,Table):-build_table_atoms163,3571 -build_col(_A,[],Tr,Found,Row0,Row1):-!,build_col167,3666 -build_col(_A,[],Tr,Found,Row0,Row1):-!,build_col167,3666 -build_col(_A,[],Tr,Found,Row0,Row1):-!,build_col167,3666 -build_col(A,[(_N,_S,H)|RP],Tr,Found,Row0,Row1):-build_col174,3790 -build_col(A,[(_N,_S,H)|RP],Tr,Found,Row0,Row1):-build_col174,3790 -build_col(A,[(_N,_S,H)|RP],Tr,Found,Row0,Row1):-build_col174,3790 -build_col_cycle(_A,[],_RP,_Tr,_Found,Row,Row).build_col_cycle177,3886 -build_col_cycle(_A,[],_RP,_Tr,_Found,Row,Row).build_col_cycle177,3886 -build_col_cycle(A,[A:_P|T],RP,Tr,Found,Row0,Row2):-!,build_col_cycle179,3936 -build_col_cycle(A,[A:_P|T],RP,Tr,Found,Row0,Row2):-!,build_col_cycle179,3936 -build_col_cycle(A,[A:_P|T],RP,Tr,Found,Row0,Row2):-!,build_col_cycle179,3936 -build_col_cycle(A,[_|T],RP,Tr,Found,Row0,Row2):-build_col_cycle183,4073 -build_col_cycle(A,[_|T],RP,Tr,Found,Row0,Row2):-build_col_cycle183,4073 -build_col_cycle(A,[_|T],RP,Tr,Found,Row0,Row2):-build_col_cycle183,4073 -parents([],_CV,[]):-!.parents187,4207 -parents([],_CV,[]):-!.parents187,4207 -parents([],_CV,[]):-!.parents187,4207 -parents([(N,S,_H)|T],CV,[V|T1]):-parents189,4231 -parents([(N,S,_H)|T],CV,[V|T1]):-parents189,4231 -parents([(N,S,_H)|T],CV,[V|T1]):-parents189,4231 -find_rules_with_atom(_A,[],[]):-!.find_rules_with_atom193,4314 -find_rules_with_atom(_A,[],[]):-!.find_rules_with_atom193,4314 -find_rules_with_atom(_A,[],[]):-!.find_rules_with_atom193,4314 -find_rules_with_atom(A,[(N,S,Head,_Body)|T],[(N,S,Head)|R]):-find_rules_with_atom195,4350 -find_rules_with_atom(A,[(N,S,Head,_Body)|T],[(N,S,Head)|R]):-find_rules_with_atom195,4350 -find_rules_with_atom(A,[(N,S,Head,_Body)|T],[(N,S,Head)|R]):-find_rules_with_atom195,4350 -find_rules_with_atom(A,[_H|T],R):-find_rules_with_atom199,4467 -find_rules_with_atom(A,[_H|T],R):-find_rules_with_atom199,4467 -find_rules_with_atom(A,[_H|T],R):-find_rules_with_atom199,4467 -build_table([P],L,Row):-!,build_table203,4535 -build_table([P],L,Row):-!,build_table203,4535 -build_table([P],L,Row):-!,build_table203,4535 -build_table([HP|TP],L,Tab):-build_table206,4593 -build_table([HP|TP],L,Tab):-build_table206,4593 -build_table([HP|TP],L,Tab):-build_table206,4593 -build_col([],t,HP,_PNull,[HP]):-!.build_col211,4704 -build_col([],t,HP,_PNull,[HP]):-!.build_col211,4704 -build_col([],t,HP,_PNull,[HP]):-!.build_col211,4704 -build_col([],f,_HP,PNull,[PNull]):-!.build_col213,4740 -build_col([],f,_HP,PNull,[PNull]):-!.build_col213,4740 -build_col([],f,_HP,PNull,[PNull]):-!.build_col213,4740 -build_col([\+ _H|T],Truth,P,PNull,Row):-!,build_col216,4780 -build_col([\+ _H|T],Truth,P,PNull,Row):-!,build_col216,4780 -build_col([\+ _H|T],Truth,P,PNull,Row):-!,build_col216,4780 -build_col([_H|T],Truth,P,PNull,Row):-build_col221,4915 -build_col([_H|T],Truth,P,PNull,Row):-build_col221,4915 -build_col([_H|T],Truth,P,PNull,Row):-build_col221,4915 -get_parents([],_AV,[]):-!.get_parents226,5049 -get_parents([],_AV,[]):-!.get_parents226,5049 -get_parents([],_AV,[]):-!.get_parents226,5049 -get_parents([\+ H|T],AV,[V|T1]):-!,get_parents228,5081 -get_parents([\+ H|T],AV,[V|T1]):-!,get_parents228,5081 -get_parents([\+ H|T],AV,[V|T1]):-!,get_parents228,5081 -get_parents([H|T],AV,[V|T1]):-!,get_parents232,5164 -get_parents([H|T],AV,[V|T1]):-!,get_parents232,5164 -get_parents([H|T],AV,[V|T1]):-!,get_parents232,5164 -choice_vars([],Tr,Tr,[]):-!.choice_vars236,5244 -choice_vars([],Tr,Tr,[]):-!.choice_vars236,5244 -choice_vars([],Tr,Tr,[]):-!.choice_vars236,5244 -choice_vars([(N,S,_H,_B)|T],Tr0,Tr1,[NV|T1]):-choice_vars238,5274 -choice_vars([(N,S,_H,_B)|T],Tr0,Tr1,[NV|T1]):-choice_vars238,5274 -choice_vars([(N,S,_H,_B)|T],Tr0,Tr1,[NV|T1]):-choice_vars238,5274 -atom_vars([],Tr,Tr,[]):-!.atom_vars242,5385 -atom_vars([],Tr,Tr,[]):-!.atom_vars242,5385 -atom_vars([],Tr,Tr,[]):-!.atom_vars242,5385 -atom_vars([H|T],Tr0,Tr1,[VH|VT]):-atom_vars244,5413 -atom_vars([H|T],Tr0,Tr1,[VH|VT]):-atom_vars244,5413 -atom_vars([H|T],Tr0,Tr1,[VH|VT]):-atom_vars244,5413 -find_ground_atoms([],GA,GA):-!.find_ground_atoms248,5504 -find_ground_atoms([],GA,GA):-!.find_ground_atoms248,5504 -find_ground_atoms([],GA,GA):-!.find_ground_atoms248,5504 -find_ground_atoms([(_N,_S,Head,_Body)|T],GA0,GA1):-find_ground_atoms250,5537 -find_ground_atoms([(_N,_S,Head,_Body)|T],GA0,GA1):-find_ground_atoms250,5537 -find_ground_atoms([(_N,_S,Head,_Body)|T],GA0,GA1):-find_ground_atoms250,5537 -find_atoms_body([],[]):-!.find_atoms_body255,5677 -find_atoms_body([],[]):-!.find_atoms_body255,5677 -find_atoms_body([],[]):-!.find_atoms_body255,5677 -find_atoms_body([\+H|T],[H|T1]):-!,find_atoms_body257,5705 -find_atoms_body([\+H|T],[H|T1]):-!,find_atoms_body257,5705 -find_atoms_body([\+H|T],[H|T1]):-!,find_atoms_body257,5705 -find_atoms_body([H|T],[H|T1]):-find_atoms_body260,5767 -find_atoms_body([H|T],[H|T1]):-find_atoms_body260,5767 -find_atoms_body([H|T],[H|T1]):-find_atoms_body260,5767 -find_atoms_head([],[],[]).find_atoms_head263,5825 -find_atoms_head([],[],[]).find_atoms_head263,5825 -find_atoms_head(['':P],[''],[P]):-!.find_atoms_head265,5853 -find_atoms_head(['':P],[''],[P]):-!.find_atoms_head265,5853 -find_atoms_head(['':P],[''],[P]):-!.find_atoms_head265,5853 -find_atoms_head([H:P|T],[H1|TA],[P|TP]):-find_atoms_head267,5891 -find_atoms_head([H:P|T],[H1|TA],[P|TP]):-find_atoms_head267,5891 -find_atoms_head([H:P|T],[H1|TA],[P|TP]):-find_atoms_head267,5891 -find_deriv_inf1(GoalsList,DB,Deriv):-find_deriv_inf1272,5991 -find_deriv_inf1(GoalsList,DB,Deriv):-find_deriv_inf1272,5991 -find_deriv_inf1(GoalsList,DB,Deriv):-find_deriv_inf1272,5991 -find_deriv_inf(GoalsList,Deriv):-find_deriv_inf275,6063 -find_deriv_inf(GoalsList,Deriv):-find_deriv_inf275,6063 -find_deriv_inf(GoalsList,Deriv):-find_deriv_inf275,6063 -find_deriv_inf(GoalsList,DB,Deriv):-find_deriv_inf278,6127 -find_deriv_inf(GoalsList,DB,Deriv):-find_deriv_inf278,6127 -find_deriv_inf(GoalsList,DB,Deriv):-find_deriv_inf278,6127 -solve1([],_DB,C,C):-!.solve1283,6327 -solve1([],_DB,C,C):-!.solve1283,6327 -solve1([],_DB,C,C):-!.solve1283,6327 -solve1([\+ H |T],DB,CIn,COut):-!,solve1285,6351 -solve1([\+ H |T],DB,CIn,COut):-!,solve1285,6351 -solve1([\+ H |T],DB,CIn,COut):-!,solve1285,6351 -solve1([H|T],DB,CIn,COut):-solve1297,6566 -solve1([H|T],DB,CIn,COut):-solve1297,6566 -solve1([H|T],DB,CIn,COut):-solve1297,6566 -solve1([H|T],DB,CIn,COut):-solve1305,6718 -solve1([H|T],DB,CIn,COut):-solve1305,6718 -solve1([H|T],DB,CIn,COut):-solve1305,6718 -solve([],_DB,C,C):-!.solve312,6839 -solve([],_DB,C,C):-!.solve312,6839 -solve([],_DB,C,C):-!.solve312,6839 -solve([\+ H|T],DB,CIn,COut):-solve314,6862 -solve([\+ H|T],DB,CIn,COut):-solve314,6862 -solve([\+ H|T],DB,CIn,COut):-solve314,6862 -solve([\+ H|T],DB,CIn,COut):-solve319,6947 -solve([\+ H|T],DB,CIn,COut):-solve319,6947 -solve([\+ H|T],DB,CIn,COut):-solve319,6947 -solve([\+ H|T],DB,CIn,COut):-solve326,7093 -solve([\+ H|T],DB,CIn,COut):-solve326,7093 -solve([\+ H|T],DB,CIn,COut):-solve326,7093 -solve([\+ H |T],DB,CIn,COut):-!,solve334,7233 -solve([\+ H |T],DB,CIn,COut):-!,solve334,7233 -solve([\+ H |T],DB,CIn,COut):-!,solve334,7233 -solve([H|T],DB,CIn,COut):-solve352,7550 -solve([H|T],DB,CIn,COut):-solve352,7550 -solve([H|T],DB,CIn,COut):-solve352,7550 -solve([H|T],DB,CIn,COut):-solve357,7629 -solve([H|T],DB,CIn,COut):-solve357,7629 -solve([H|T],DB,CIn,COut):-solve357,7629 -solve([H|T],DB,CIn,COut):-solve362,7713 -solve([H|T],DB,CIn,COut):-solve362,7713 -solve([H|T],DB,CIn,COut):-solve362,7713 -solve([H|T],DB,CIn,COut):-solve370,7864 -solve([H|T],DB,CIn,COut):-solve370,7864 -solve([H|T],DB,CIn,COut):-solve370,7864 -solve([H|T],DB,CIn,COut):-solve377,8002 -solve([H|T],DB,CIn,COut):-solve377,8002 -solve([H|T],DB,CIn,COut):-solve377,8002 -solve([H|T],DB,CIn,COut):-solve384,8133 -solve([H|T],DB,CIn,COut):-solve384,8133 -solve([H|T],DB,CIn,COut):-solve384,8133 -solve_pres(R,S,N,B,T,DB,CIn,COut):-solve_pres390,8252 -solve_pres(R,S,N,B,T,DB,CIn,COut):-solve_pres390,8252 -solve_pres(R,S,N,B,T,DB,CIn,COut):-solve_pres390,8252 -solve_pres(R,S,N,B,T,DB,CIn,COut):-solve_pres395,8362 -solve_pres(R,S,N,B,T,DB,CIn,COut):-solve_pres395,8362 -solve_pres(R,S,N,B,T,DB,CIn,COut):-solve_pres395,8362 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head401,8470 -not_present_with_a_different_head(_N,_R,_S,[]).not_present_with_a_different_head401,8470 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head403,8519 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head403,8519 -not_present_with_a_different_head(N,R,S,[(N,R,S)|T]):-!,not_present_with_a_different_head403,8519 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head406,8623 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head406,8623 -not_present_with_a_different_head(N,R,S,[(_N1,R,S1)|T]):-not_present_with_a_different_head406,8623 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head410,8739 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head410,8739 -not_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_present_with_a_different_head410,8739 -find_rule(H,(R,S,N),Body,C):-find_rule420,9091 -find_rule(H,(R,S,N),Body,C):-find_rule420,9091 -find_rule(H,(R,S,N),Body,C):-find_rule420,9091 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head424,9214 -not_already_present_with_a_different_head(_N,_R,_S,[]).not_already_present_with_a_different_head424,9214 -not_already_present_with_a_different_head(N,R,S,[d(_R,_S1)|T]):-!,not_already_present_with_a_different_head426,9271 -not_already_present_with_a_different_head(N,R,S,[d(_R,_S1)|T]):-!,not_already_present_with_a_different_head426,9271 -not_already_present_with_a_different_head(N,R,S,[d(_R,_S1)|T]):-!,not_already_present_with_a_different_head426,9271 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head429,9393 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head429,9393 -not_already_present_with_a_different_head(N,R,S,[(N1,R,S1)|T]):-not_already_present_with_a_different_head429,9393 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head433,9547 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head433,9547 -not_already_present_with_a_different_head(N,R,S,[(_N1,R1,_S1)|T]):-not_already_present_with_a_different_head433,9547 -not_different(_N,_N1,S,S1):-not_different437,9680 -not_different(_N,_N1,S,S1):-not_different437,9680 -not_different(_N,_N1,S,S1):-not_different437,9680 -not_different(N,N1,S,S1):-not_different440,9723 -not_different(N,N1,S,S1):-not_different440,9723 -not_different(N,N1,S,S1):-not_different440,9723 -not_different(N,N,S,S).not_different444,9777 -not_different(N,N,S,S).not_different444,9777 -member_head(H,[(H:_P)|_T],N,N).member_head447,9803 -member_head(H,[(H:_P)|_T],N,N).member_head447,9803 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head449,9836 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head449,9836 -member_head(H,[(_H:_P)|T],NIn,NOut):-member_head449,9836 -choose_clauses(C,[],C).choose_clauses456,10110 -choose_clauses(C,[],C).choose_clauses456,10110 -choose_clauses(CIn,[D|T],COut):-choose_clauses458,10135 -choose_clauses(CIn,[D|T],COut):-choose_clauses458,10135 -choose_clauses(CIn,[D|T],COut):-choose_clauses458,10135 -choose_clauses(CIn,[D|T],COut):-choose_clauses465,10307 -choose_clauses(CIn,[D|T],COut):-choose_clauses465,10307 -choose_clauses(CIn,[D|T],COut):-choose_clauses465,10307 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons472,10487 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons472,10487 -impose_dif_cons(_R,_S,[]):-!.impose_dif_cons472,10487 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons474,10518 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons474,10518 -impose_dif_cons(R,S,[(_NH,R,SH)|T]):-!,impose_dif_cons474,10518 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons478,10598 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons478,10598 -impose_dif_cons(R,S,[_H|T]):-impose_dif_cons478,10598 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head485,10896 -instantiation_present_with_the_same_head(_N,_R,_S,[]).instantiation_present_with_the_same_head485,10896 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head487,10952 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head487,10952 -instantiation_present_with_the_same_head(N,R,S,[(NH,R,SH)|T]):-instantiation_present_with_the_same_head487,10952 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head491,11068 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head491,11068 -instantiation_present_with_the_same_head(N,R,S,[_H|T]):-instantiation_present_with_the_same_head491,11068 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs494,11179 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs494,11179 -dif_head_or_subs(N,R,S,NH,_SH,T):-dif_head_or_subs494,11179 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs498,11281 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs498,11281 -dif_head_or_subs(N,R,S,N,SH,T):-dif_head_or_subs498,11281 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head504,11479 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head504,11479 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,SH)|T]):-choose_a_head504,11479 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head511,11692 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head511,11692 -choose_a_head(N,R,S,[(NH,R,SH)|T],[(NH,R,S),(NH,R,SH)|T]):-choose_a_head511,11692 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head516,11802 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head516,11802 -choose_a_head(N,R,S,[H|T],[H|T1]):-choose_a_head516,11802 -new_head(N,R,S,N1):-new_head521,11953 -new_head(N,R,S,N1):-new_head521,11953 -new_head(N,R,S,N1):-new_head521,11953 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head527,12097 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head527,12097 -already_present_with_a_different_head(N,R,S,[(NH,R,SH)|_T]):-already_present_with_a_different_head527,12097 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head530,12182 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head530,12182 -already_present_with_a_different_head(N,R,S,[_H|T]):-already_present_with_a_different_head530,12182 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present536,12404 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present536,12404 -already_present(N,R,S,[(N,R,SH)|_T]):-already_present536,12404 -already_present(N,R,S,[_H|T]):-already_present539,12452 -already_present(N,R,S,[_H|T]):-already_present539,12452 -already_present(N,R,S,[_H|T]):-already_present539,12452 -rem_dup_lists([],L,L).rem_dup_lists546,12735 -rem_dup_lists([],L,L).rem_dup_lists546,12735 -rem_dup_lists([H|T],L0,L):-rem_dup_lists548,12759 -rem_dup_lists([H|T],L0,L):-rem_dup_lists548,12759 -rem_dup_lists([H|T],L0,L):-rem_dup_lists548,12759 -rem_dup_lists([H|T],L0,L):-rem_dup_lists552,12859 -rem_dup_lists([H|T],L0,L):-rem_dup_lists552,12859 -rem_dup_lists([H|T],L0,L):-rem_dup_lists552,12859 -member_subset(E,[H|_T]):-member_subset555,12917 -member_subset(E,[H|_T]):-member_subset555,12917 -member_subset(E,[H|_T]):-member_subset555,12917 -member_subset(E,[_H|T]):-member_subset558,12964 -member_subset(E,[_H|T]):-member_subset558,12964 -member_subset(E,[_H|T]):-member_subset558,12964 -member_eq(A,[H|_T]):-member_eq563,13019 -member_eq(A,[H|_T]):-member_eq563,13019 -member_eq(A,[H|_T]):-member_eq563,13019 -member_eq(A,[_H|T]):-member_eq566,13054 -member_eq(A,[_H|T]):-member_eq566,13054 -member_eq(A,[_H|T]):-member_eq566,13054 -subset_my([],_).subset_my569,13095 -subset_my([],_).subset_my569,13095 -subset_my([H|T],L):-subset_my571,13113 -subset_my([H|T],L):-subset_my571,13113 -subset_my([H|T],L):-subset_my571,13113 -remove_duplicates_eq([],[]).remove_duplicates_eq575,13171 -remove_duplicates_eq([],[]).remove_duplicates_eq575,13171 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq577,13201 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq577,13201 -remove_duplicates_eq([H|T],T1):-remove_duplicates_eq577,13201 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq581,13285 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq581,13285 -remove_duplicates_eq([H|T],[H|T1]):-remove_duplicates_eq581,13285 -builtin(_A is _B).builtin584,13353 -builtin(_A is _B).builtin584,13353 -builtin(_A > _B).builtin585,13372 -builtin(_A > _B).builtin585,13372 -builtin(_A < _B).builtin586,13390 -builtin(_A < _B).builtin586,13390 -builtin(_A >= _B).builtin587,13408 -builtin(_A >= _B).builtin587,13408 -builtin(_A =< _B).builtin588,13427 -builtin(_A =< _B).builtin588,13427 -builtin(_A =:= _B).builtin589,13446 -builtin(_A =:= _B).builtin589,13446 -builtin(_A =\= _B).builtin590,13466 -builtin(_A =\= _B).builtin590,13466 -builtin(true).builtin591,13486 -builtin(true).builtin591,13486 -builtin(false).builtin592,13501 -builtin(false).builtin592,13501 -builtin(_A = _B).builtin593,13517 -builtin(_A = _B).builtin593,13517 -builtin(_A==_B).builtin594,13535 -builtin(_A==_B).builtin594,13535 -builtin(_A\=_B).builtin595,13552 -builtin(_A\=_B).builtin595,13552 -builtin(_A\==_B).builtin596,13569 -builtin(_A\==_B).builtin596,13569 -builtin(length(_L,_N)).builtin597,13587 -builtin(length(_L,_N)).builtin597,13587 -builtin(member(_El,_L)).builtin598,13611 -builtin(member(_El,_L)).builtin598,13611 -builtin(average(_L,_Av)).builtin599,13636 -builtin(average(_L,_Av)).builtin599,13636 -builtin(max_list(_L,_Max)).builtin600,13662 -builtin(max_list(_L,_Max)).builtin600,13662 -builtin(min_list(_L,_Max)).builtin601,13690 -builtin(min_list(_L,_Max)).builtin601,13690 -builtin(nth0(_,_,_)).builtin602,13718 -builtin(nth0(_,_,_)).builtin602,13718 -builtin(nth(_,_,_)).builtin603,13740 -builtin(nth(_,_,_)).builtin603,13740 -average(L,Av):-average604,13761 -average(L,Av):-average604,13761 -average(L,Av):-average604,13761 -list2or([],true):-!.list2or609,13827 -list2or([],true):-!.list2or609,13827 -list2or([],true):-!.list2or609,13827 -list2or([X],X):-list2or611,13849 -list2or([X],X):-list2or611,13849 -list2or([X],X):-list2or611,13849 -list2or([H|T],(H ; Ta)):-!,list2or614,13884 -list2or([H|T],(H ; Ta)):-!,list2or614,13884 -list2or([H|T],(H ; Ta)):-!,list2or614,13884 -list2and([],true):-!.list2and617,13932 -list2and([],true):-!.list2and617,13932 -list2and([],true):-!.list2and617,13932 -list2and([X],X):-list2and619,13955 -list2and([X],X):-list2and619,13955 -list2and([X],X):-list2and619,13955 -list2and([H|T],(H,Ta)):-!,list2and622,13990 -list2and([H|T],(H,Ta)):-!,list2and622,13990 -list2and([H|T],(H,Ta)):-!,list2and622,13990 -build_formula([],[],Var,Var,C,C).build_formula635,14487 -build_formula([],[],Var,Var,C,C).build_formula635,14487 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula637,14522 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula637,14522 -build_formula([D|TD],[F|TF],VarIn,VarOut,C0,C1):-build_formula637,14522 -build_formula([],[],Var,Var).build_formula645,14703 -build_formula([],[],Var,Var).build_formula645,14703 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula647,14734 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula647,14734 -build_formula([D|TD],[F|TF],VarIn,VarOut):-build_formula647,14734 -build_term([],[],Var,Var).build_term652,14846 -build_term([],[],Var,Var).build_term652,14846 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term654,14874 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term654,14874 -build_term([(_,pruned,_)|TC],TF,VarIn,VarOut):-!,build_term654,14874 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term657,14959 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term657,14959 -build_term([(N,R,S)|TC],[[NVar,N]|TF],VarIn,VarOut):-build_term657,14959 -nth0_eq(N,N,[H|_T],El):-nth0_eq670,15354 -nth0_eq(N,N,[H|_T],El):-nth0_eq670,15354 -nth0_eq(N,N,[H|_T],El):-nth0_eq670,15354 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq673,15391 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq673,15391 -nth0_eq(NIn,NOut,[_H|T],El):-nth0_eq673,15391 -var2numbers([],_N,[]).var2numbers680,15633 -var2numbers([],_N,[]).var2numbers680,15633 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers682,15657 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers682,15657 -var2numbers([(R,S)|T],N,[[N,ValNumber,Probs]|TNV]):-var2numbers682,15657 -find_probs(R,S,Probs):-find_probs688,15801 -find_probs(R,S,Probs):-find_probs688,15801 -find_probs(R,S,Probs):-find_probs688,15801 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs692,15892 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs692,15892 -get_probs(uniform(_A:1/Num,_P,_Number),ListP):-get_probs692,15892 -get_probs([],[]).get_probs696,15985 -get_probs([],[]).get_probs696,15985 -get_probs([_H:P|T],[P1|T1]):-get_probs698,16004 -get_probs([_H:P|T],[P1|T1]):-get_probs698,16004 -get_probs([_H:P|T],[P1|T1]):-get_probs698,16004 -list_el(0,_P,[]):-!.list_el702,16065 -list_el(0,_P,[]):-!.list_el702,16065 -list_el(0,_P,[]):-!.list_el702,16065 -list_el(N,P,[P|T]):-list_el704,16087 -list_el(N,P,[P|T]):-list_el704,16087 -list_el(N,P,[P|T]):-list_el704,16087 - -packages/cplint/rib/README,141 -This folder cotains RIB, a parameter learning algorithm based on the information bottleneckRIB2,1 -To execute rib, load ib.pl withrib4,94 - -packages/cplint/rib/rib.pl,70908 -setting(sample_size,1000). setting36,822 -setting(sample_size,1000). setting36,822 -setting(setrand,rand(1230,45,123)).setting37,850 -setting(setrand,rand(1230,45,123)).setting37,850 -setting(verbosity,1).setting39,887 -setting(verbosity,1).setting39,887 -setting(minimal_step,0.005).setting40,909 -setting(minimal_step,0.005).setting40,909 -setting(maximal_step,0.1).setting41,938 -setting(maximal_step,0.1).setting41,938 -setting(depth_bound,3).setting42,965 -setting(depth_bound,3).setting42,965 -setting(logsize_fraction,0.9).setting43,989 -setting(logsize_fraction,0.9).setting43,989 -setting(delta,-10).setting46,1050 -setting(delta,-10).setting46,1050 -setting(epsilon_fraction,100).setting48,1071 -setting(epsilon_fraction,100).setting48,1071 -setting(max_rules,6000).setting52,1145 -setting(max_rules,6000).setting52,1145 -ib_par(File):-ib_par75,1855 -ib_par(File):-ib_par75,1855 -ib_par(File):-ib_par75,1855 -match_subs([],_S1):-!.match_subs112,2924 -match_subs([],_S1):-!.match_subs112,2924 -match_subs([],_S1):-!.match_subs112,2924 -match_subs([_V1=S|TS],[_V2=S|TS1]):-match_subs114,2948 -match_subs([_V1=S|TS],[_V2=S|TS1]):-match_subs114,2948 -match_subs([_V1=S|TS],[_V2=S|TS1]):-match_subs114,2948 -compute_parameters_IB(Model0,Model1,I2,LogSize):-compute_parameters_IB119,3087 -compute_parameters_IB(Model0,Model1,I2,LogSize):-compute_parameters_IB119,3087 -compute_parameters_IB(Model0,Model1,I2,LogSize):-compute_parameters_IB119,3087 -build_new_model([],[]).build_new_model152,3967 -build_new_model([],[]).build_new_model152,3967 -build_new_model([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-build_new_model154,3992 -build_new_model([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-build_new_model154,3992 -build_new_model([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-build_new_model154,3992 -build_new_model([H|T],[H|T1]):-build_new_model161,4205 -build_new_model([H|T],[H|T1]):-build_new_model161,4205 -build_new_model([H|T],[H|T1]):-build_new_model161,4205 -new_dist([],[],[]):-!.new_dist166,4414 -new_dist([],[],[]):-!.new_dist166,4414 -new_dist([],[],[]):-!.new_dist166,4414 -new_dist([H:_P|HL],[P1|TP],[H:P1|HL1]):-new_dist168,4438 -new_dist([H:_P|HL],[P1|TP],[H:P1|HL1]):-new_dist168,4438 -new_dist([H:_P|HL],[P1|TP],[H:P1|HL1]):-new_dist168,4438 -build_q_Y_table(N,N):-!.build_q_Y_table176,4676 -build_q_Y_table(N,N):-!.build_q_Y_table176,4676 -build_q_Y_table(N,N):-!.build_q_Y_table176,4676 -build_q_Y_table(N,NEx):-build_q_Y_table178,4702 -build_q_Y_table(N,NEx):-build_q_Y_table178,4702 -build_q_Y_table(N,NEx):-build_q_Y_table178,4702 -iterate_IB_par(Gamma,I,I,N,_Q_ch,_Q_t,_R,_NR,LogSize,_Model):-iterate_IB_par190,4889 -iterate_IB_par(Gamma,I,I,N,_Q_ch,_Q_t,_R,_NR,LogSize,_Model):-iterate_IB_par190,4889 -iterate_IB_par(Gamma,I,I,N,_Q_ch,_Q_t,_R,_NR,LogSize,_Model):-iterate_IB_par190,4889 -iterate_IB_par(Gamma,I,I2,N,Q_ch,Q_t,R,NR,LogSize,Model):-iterate_IB_par201,5091 -iterate_IB_par(Gamma,I,I2,N,Q_ch,Q_t,R,NR,LogSize,Model):-iterate_IB_par201,5091 -iterate_IB_par(Gamma,I,I2,N,Q_ch,Q_t,R,NR,LogSize,Model):-iterate_IB_par201,5091 -maximize_P([],[]):-!.maximize_P224,5719 -maximize_P([],[]):-!.maximize_P224,5719 -maximize_P([],[]):-!.maximize_P224,5719 -maximize_P([_N-_Inst|TR],[0.0|TNR]):-!,maximize_P226,5742 -maximize_P([_N-_Inst|TR],[0.0|TNR]):-!,maximize_P226,5742 -maximize_P([_N-_Inst|TR],[0.0|TNR]):-!,maximize_P226,5742 -maximize_P([N-_Inst|TR],[_NR|TNR]):-maximize_P229,5805 -maximize_P([N-_Inst|TR],[_NR|TNR]):-maximize_P229,5805 -maximize_P([N-_Inst|TR],[_NR|TNR]):-maximize_P229,5805 -maximize_P([N-Inst|TR],[NR|TNR]):-maximize_P233,5900 -maximize_P([N-Inst|TR],[NR|TNR]):-maximize_P233,5900 -maximize_P([N-Inst|TR],[NR|TNR]):-maximize_P233,5900 -compute_theta_num(N,N,_Inst,_N,Num,Num):-!.compute_theta_num250,6420 -compute_theta_num(N,N,_Inst,_N,Num,Num):-!.compute_theta_num250,6420 -compute_theta_num(N,N,_Inst,_N,Num,Num):-!.compute_theta_num250,6420 -compute_theta_num(Y,NEx,Inst,N,Num0,Num1):-compute_theta_num252,6465 -compute_theta_num(Y,NEx,Inst,N,Num0,Num1):-compute_theta_num252,6465 -compute_theta_num(Y,NEx,Inst,N,Num0,Num1):-compute_theta_num252,6465 -compute_theta_term([],_Y,_N,_Q_Y,_Q_ch_Y_par,Term,Term):-!.compute_theta_term264,6850 -compute_theta_term([],_Y,_N,_Q_Y,_Q_ch_Y_par,Term,Term):-!.compute_theta_term264,6850 -compute_theta_term([],_Y,_N,_Q_Y,_Q_ch_Y_par,Term,Term):-!.compute_theta_term264,6850 -compute_theta_term([S|TS],Y,N,Q_Y,Q_ch_Y_par,Term0,Term1):-compute_theta_term266,6911 -compute_theta_term([S|TS],Y,N,Q_Y,Q_ch_Y_par,Term0,Term1):-compute_theta_term266,6911 -compute_theta_term([S|TS],Y,N,Q_Y,Q_ch_Y_par,Term0,Term1):-compute_theta_term266,6911 -maximize_Q(Gamma,Q_ch,Q_t,R,LogSize,NR,Gamma1):-maximize_Q278,7301 -maximize_Q(Gamma,Q_ch,Q_t,R,LogSize,NR,Gamma1):-maximize_Q278,7301 -maximize_Q(Gamma,Q_ch,Q_t,R,LogSize,NR,Gamma1):-maximize_Q278,7301 -compute_I(NEx,CH,Q_ch,T,Q_t,I):-compute_I308,8104 -compute_I(NEx,CH,Q_ch,T,Q_t,I):-compute_I308,8104 -compute_I(NEx,CH,Q_ch,T,Q_t,I):-compute_I308,8104 -compute_I(N,N,_CH,_Q_ch_par,_T,_Q_t,I,I):-!.compute_I315,8304 -compute_I(N,N,_CH,_Q_ch_par,_T,_Q_t,I,I):-!.compute_I315,8304 -compute_I(N,N,_CH,_Q_ch_par,_T,_Q_t,I,I):-!.compute_I315,8304 -compute_I(Y,NEx,CH,Q_ch_par,T,Q_t_par,I0,I1):-compute_I317,8350 -compute_I(Y,NEx,CH,Q_ch_par,T,Q_t_par,I0,I1):-compute_I317,8350 -compute_I(Y,NEx,CH,Q_ch_par,T,Q_t_par,I0,I1):-compute_I317,8350 -compute_Exp_Q_ch([],_Q_ch_par,I,I):-!.compute_Exp_Q_ch331,8771 -compute_Exp_Q_ch([],_Q_ch_par,I,I):-!.compute_Exp_Q_ch331,8771 -compute_Exp_Q_ch([],_Q_ch_par,I,I):-!.compute_Exp_Q_ch331,8771 -compute_Exp_Q_ch([ch(N,_S)|T],Q_ch_par,I0,I1):-compute_Exp_Q_ch333,8811 -compute_Exp_Q_ch([ch(N,_S)|T],Q_ch_par,I0,I1):-compute_Exp_Q_ch333,8811 -compute_Exp_Q_ch([ch(N,_S)|T],Q_ch_par,I0,I1):-compute_Exp_Q_ch333,8811 -compute_Exp_Q_ch([CH|T],Q_ch_par,I0,I1):-compute_Exp_Q_ch337,8933 -compute_Exp_Q_ch([CH|T],Q_ch_par,I0,I1):-compute_Exp_Q_ch337,8933 -compute_Exp_Q_ch([CH|T],Q_ch_par,I0,I1):-compute_Exp_Q_ch337,8933 -compute_Exp_Q_t([],_Q_t_par,I,I):-!.compute_Exp_Q_t342,9081 -compute_Exp_Q_t([],_Q_t_par,I,I):-!.compute_Exp_Q_t342,9081 -compute_Exp_Q_t([],_Q_t_par,I,I):-!.compute_Exp_Q_t342,9081 -compute_Exp_Q_t([H|T],Q_t_par,I0,I1):-compute_Exp_Q_t344,9119 -compute_Exp_Q_t([H|T],Q_t_par,I0,I1):-compute_Exp_Q_t344,9119 -compute_Exp_Q_t([H|T],Q_t_par,I0,I1):-compute_Exp_Q_t344,9119 -compute_Exp_Q_ch_val([],I,I):-!.compute_Exp_Q_ch_val351,9333 -compute_Exp_Q_ch_val([],I,I):-!.compute_Exp_Q_ch_val351,9333 -compute_Exp_Q_ch_val([],I,I):-!.compute_Exp_Q_ch_val351,9333 -compute_Exp_Q_ch_val([Q_ch|T],I0,I1):-compute_Exp_Q_ch_val353,9367 -compute_Exp_Q_ch_val([Q_ch|T],I0,I1):-compute_Exp_Q_ch_val353,9367 -compute_Exp_Q_ch_val([Q_ch|T],I0,I1):-compute_Exp_Q_ch_val353,9367 -compute_I_ch([],_Q_ch_Y_par,_Q_Y,I,I):-!.compute_I_ch359,9527 -compute_I_ch([],_Q_ch_Y_par,_Q_Y,I,I):-!.compute_I_ch359,9527 -compute_I_ch([],_Q_ch_Y_par,_Q_Y,I,I):-!.compute_I_ch359,9527 -compute_I_ch([ch(N,_S)|T],Q_ch_Y_par,Q_Y,I0,I1):-compute_I_ch361,9570 -compute_I_ch([ch(N,_S)|T],Q_ch_Y_par,Q_Y,I0,I1):-compute_I_ch361,9570 -compute_I_ch([ch(N,_S)|T],Q_ch_Y_par,Q_Y,I0,I1):-compute_I_ch361,9570 -compute_I_ch([CH|T],Q_ch_Y_par,Q_Y,I0,I1):-compute_I_ch365,9696 -compute_I_ch([CH|T],Q_ch_Y_par,Q_Y,I0,I1):-compute_I_ch365,9696 -compute_I_ch([CH|T],Q_ch_Y_par,Q_Y,I0,I1):-compute_I_ch365,9696 -compute_I_t([],_Q_t_Y_par,_Q_Y,I,I):-!.compute_I_t370,9851 -compute_I_t([],_Q_t_Y_par,_Q_Y,I,I):-!.compute_I_t370,9851 -compute_I_t([],_Q_t_Y_par,_Q_Y,I,I):-!.compute_I_t370,9851 -compute_I_t([H|T],Q_t_Y_par,Q_Y,I0,I1):-compute_I_t372,9892 -compute_I_t([H|T],Q_t_Y_par,Q_Y,I0,I1):-compute_I_t372,9892 -compute_I_t([H|T],Q_t_Y_par,Q_Y,I0,I1):-compute_I_t372,9892 -compute_exp_I([],_Q_Y,I,I):-!.compute_exp_I380,10176 -compute_exp_I([],_Q_Y,I,I):-!.compute_exp_I380,10176 -compute_exp_I([],_Q_Y,I,I):-!.compute_exp_I380,10176 -compute_exp_I([Q_ch_Y|T0],Q_Y,I0,I1):-compute_exp_I382,10208 -compute_exp_I([Q_ch_Y|T0],Q_Y,I0,I1):-compute_exp_I382,10208 -compute_exp_I([Q_ch_Y|T0],Q_Y,I0,I1):-compute_exp_I382,10208 -update_Q(NEx,NEx,_CH,[],_S):-!.update_Q389,10399 -update_Q(NEx,NEx,_CH,[],_S):-!.update_Q389,10399 -update_Q(NEx,NEx,_CH,[],_S):-!.update_Q389,10399 -update_Q(Y,NEx,CH,[QG|TQG],S):-update_Q391,10432 -update_Q(Y,NEx,CH,[QG|TQG],S):-update_Q391,10432 -update_Q(Y,NEx,CH,[QG|TQG],S):-update_Q391,10432 -update_Q_Y([],Q_ch_Y_par,[],_S,Q_ch_Y_par):-!.update_Q_Y402,10722 -update_Q_Y([],Q_ch_Y_par,[],_S,Q_ch_Y_par):-!.update_Q_Y402,10722 -update_Q_Y([],Q_ch_Y_par,[],_S,Q_ch_Y_par):-!.update_Q_Y402,10722 -update_Q_Y([ch(N,_S)|TCH],Q_ch_Y_par,TQG,S,Q_ch_Y_par1):-update_Q_Y404,10770 -update_Q_Y([ch(N,_S)|TCH],Q_ch_Y_par,TQG,S,Q_ch_Y_par1):-update_Q_Y404,10770 -update_Q_Y([ch(N,_S)|TCH],Q_ch_Y_par,TQG,S,Q_ch_Y_par1):-update_Q_Y404,10770 -update_Q_Y([CH|TCH],Q_ch_Y_par,[HQG|TQG],S,Q_ch_Y_par1):-update_Q_Y408,10912 -update_Q_Y([CH|TCH],Q_ch_Y_par,[HQG|TQG],S,Q_ch_Y_par1):-update_Q_Y408,10912 -update_Q_Y([CH|TCH],Q_ch_Y_par,[HQG|TQG],S,Q_ch_Y_par1):-update_Q_Y408,10912 -update_QT(NEx,NEx,_T,[],_S):-!.update_QT417,11210 -update_QT(NEx,NEx,_T,[],_S):-!.update_QT417,11210 -update_QT(NEx,NEx,_T,[],_S):-!.update_QT417,11210 -update_QT(Y,NEx,T,[QG|TQG],S):-update_QT419,11243 -update_QT(Y,NEx,T,[QG|TQG],S):-update_QT419,11243 -update_QT(Y,NEx,T,[QG|TQG],S):-update_QT419,11243 -update_QT_Y([],Q_t_Y_par,[],_S,Q_t_Y_par):-!.update_QT_Y427,11453 -update_QT_Y([],Q_t_Y_par,[],_S,Q_t_Y_par):-!.update_QT_Y427,11453 -update_QT_Y([],Q_t_Y_par,[],_S,Q_t_Y_par):-!.update_QT_Y427,11453 -update_QT_Y([HT|TT],Q_t_Y_par,[HQG|TQG],S,Q_t_Y_par1):-update_QT_Y429,11500 -update_QT_Y([HT|TT],Q_t_Y_par,[HQG|TQG],S,Q_t_Y_par1):-update_QT_Y429,11500 -update_QT_Y([HT|TT],Q_t_Y_par,[HQG|TQG],S,Q_t_Y_par1):-update_QT_Y429,11500 -sum_lower([],[],[]):-!. sum_lower441,11886 -sum_lower([],[],[]):-!. sum_lower441,11886 -sum_lower([],[],[]):-!. sum_lower441,11886 -sum_lower([H0|T0],[H1|T1],[H3|T2]):-sum_lower443,11913 -sum_lower([H0|T0],[H1|T1],[H3|T2]):-sum_lower443,11913 -sum_lower([H0|T0],[H1|T1],[H3|T2]):-sum_lower443,11913 -normalize(Dist1,Dist2):-normalize459,12147 -normalize(Dist1,Dist2):-normalize459,12147 -normalize(Dist1,Dist2):-normalize459,12147 -compute_step(QGrad,IGrad,QTGrad,ITGrad,LogSize,S):-compute_step469,12303 -compute_step(QGrad,IGrad,QTGrad,ITGrad,LogSize,S):-compute_step469,12303 -compute_step(QGrad,IGrad,QTGrad,ITGrad,LogSize,S):-compute_step469,12303 -compute_step([],[],_Y,S,S).compute_step478,12573 -compute_step([],[],_Y,S,S).compute_step478,12573 -compute_step([HQ|TQ],[HI|TI],Y,Sum,S):-compute_step481,12603 -compute_step([HQ|TQ],[HI|TI],Y,Sum,S):-compute_step481,12603 -compute_step([HQ|TQ],[HI|TI],Y,Sum,S):-compute_step481,12603 -compute_Q_ch([],Q_ch,Q_ch):-!.compute_Q_ch494,12872 -compute_Q_ch([],Q_ch,Q_ch):-!.compute_Q_ch494,12872 -compute_Q_ch([],Q_ch,Q_ch):-!.compute_Q_ch494,12872 -compute_Q_ch([ch(N,S)|T],Q_ch0,Q_ch1):-compute_Q_ch496,12906 -compute_Q_ch([ch(N,S)|T],Q_ch0,Q_ch1):-compute_Q_ch496,12906 -compute_Q_ch([ch(N,S)|T],Q_ch0,Q_ch1):-compute_Q_ch496,12906 -compute_Q_ch([ch(N,S)|T],Q_ch0,Q_ch1):-compute_Q_ch505,13133 -compute_Q_ch([ch(N,S)|T],Q_ch0,Q_ch1):-compute_Q_ch505,13133 -compute_Q_ch([ch(N,S)|T],Q_ch0,Q_ch1):-compute_Q_ch505,13133 -compute_Q_ch_DB(N,N,_CH,P,P):-!.compute_Q_ch_DB512,13324 -compute_Q_ch_DB(N,N,_CH,P,P):-!.compute_Q_ch_DB512,13324 -compute_Q_ch_DB(N,N,_CH,P,P):-!.compute_Q_ch_DB512,13324 -compute_Q_ch_DB(Y,NEx,CH,P0,P1):-compute_Q_ch_DB514,13358 -compute_Q_ch_DB(Y,NEx,CH,P0,P1):-compute_Q_ch_DB514,13358 -compute_Q_ch_DB(Y,NEx,CH,P0,P1):-compute_Q_ch_DB514,13358 -update_dist([],[],_PY,[]):-!.update_dist525,13669 -update_dist([],[],_PY,[]):-!.update_dist525,13669 -update_dist([],[],_PY,[]):-!.update_dist525,13669 -update_dist([HP0|P0],[HPar|Par],PY,[HP1|P1]):-update_dist527,13700 -update_dist([HP0|P0],[HPar|Par],PY,[HP1|P1]):-update_dist527,13700 -update_dist([HP0|P0],[HPar|Par],PY,[HP1|P1]):-update_dist527,13700 -compute_Q_t([],Q_t,Q_t):-!.compute_Q_t533,13823 -compute_Q_t([],Q_t,Q_t):-!.compute_Q_t533,13823 -compute_Q_t([],Q_t,Q_t):-!.compute_Q_t533,13823 -compute_Q_t([H|T],Q_t0,Q_t1):-compute_Q_t535,13854 -compute_Q_t([H|T],Q_t0,Q_t1):-compute_Q_t535,13854 -compute_Q_t([H|T],Q_t0,Q_t1):-compute_Q_t535,13854 -compute_Q_t_DB(N,N,_T,P,P):-!.compute_Q_t_DB543,14059 -compute_Q_t_DB(N,N,_T,P,P):-!.compute_Q_t_DB543,14059 -compute_Q_t_DB(N,N,_T,P,P):-!.compute_Q_t_DB543,14059 -compute_Q_t_DB(Y,NEx,T,P0,P1):-compute_Q_t_DB545,14091 -compute_Q_t_DB(Y,NEx,T,P0,P1):-compute_Q_t_DB545,14091 -compute_Q_t_DB(Y,NEx,T,P0,P1):-compute_Q_t_DB545,14091 -compute_Q_gradient(NEx,NEx,_Gamma,_Delta,_Q_ch,_Q_t,_R,_NR,_CH,_PAX,_T,[],QGrad,QGrad,IGrad,IGrad,QTGrad,QTGrad,ITGrad,ITGrad):-!.compute_Q_gradient568,15044 -compute_Q_gradient(NEx,NEx,_Gamma,_Delta,_Q_ch,_Q_t,_R,_NR,_CH,_PAX,_T,[],QGrad,QGrad,IGrad,IGrad,QTGrad,QTGrad,ITGrad,ITGrad):-!.compute_Q_gradient568,15044 -compute_Q_gradient(NEx,NEx,_Gamma,_Delta,_Q_ch,_Q_t,_R,_NR,_CH,_PAX,_T,[],QGrad,QGrad,IGrad,IGrad,QTGrad,QTGrad,ITGrad,ITGrad):-!.compute_Q_gradient568,15044 -compute_Q_gradient(Y,NEx,Gamma,Delta,Q_ch,Q_t,R,NR,CH,PAX,T,[D|DT],QGrad0,QGrad1,IGrad0,IGrad1,QTGrad0,QTGrad1,ITGrad0,ITGrad1):-compute_Q_gradient573,15219 -compute_Q_gradient(Y,NEx,Gamma,Delta,Q_ch,Q_t,R,NR,CH,PAX,T,[D|DT],QGrad0,QGrad1,IGrad0,IGrad1,QTGrad0,QTGrad1,ITGrad0,ITGrad1):-compute_Q_gradient573,15219 -compute_Q_gradient(Y,NEx,Gamma,Delta,Q_ch,Q_t,R,NR,CH,PAX,T,[D|DT],QGrad0,QGrad1,IGrad0,IGrad1,QTGrad0,QTGrad1,ITGrad0,ITGrad1):-compute_Q_gradient573,15219 -compute_U([],[],_Y,_Q_ch_Y_par,U,U).compute_U588,15950 -compute_U([],[],_Y,_Q_ch_Y_par,U,U).compute_U588,15950 -compute_U([HR-Inst|TR],[NR|TNR],Y,Q_ch_Y_par,U0,U):-compute_U590,15988 -compute_U([HR-Inst|TR],[NR|TNR],Y,Q_ch_Y_par,U0,U):-compute_U590,15988 -compute_U([HR-Inst|TR],[NR|TNR],Y,Q_ch_Y_par,U0,U):-compute_U590,15988 -compute_U_inst([],_N,_NR,_Y,_Q_ch_Y_par,U,U).compute_U_inst595,16158 -compute_U_inst([],_N,_NR,_Y,_Q_ch_Y_par,U,U).compute_U_inst595,16158 -compute_U_inst([S|TS],N,NR,Y,Q_ch_Y_par,U0,U):-compute_U_inst597,16205 -compute_U_inst([S|TS],N,NR,Y,Q_ch_Y_par,U0,U):-compute_U_inst597,16205 -compute_U_inst([S|TS],N,NR,Y,Q_ch_Y_par,U0,U):-compute_U_inst597,16205 -compute_U_inst([S|TS],N,NR,Y,Q_ch_Y_par,U0,U):-compute_U_inst610,16554 -compute_U_inst([S|TS],N,NR,Y,Q_ch_Y_par,U0,U):-compute_U_inst610,16554 -compute_U_inst([S|TS],N,NR,Y,Q_ch_Y_par,U0,U):-compute_U_inst610,16554 -scan_ch([],[],_NR,_PTB,[]).scan_ch625,16940 -scan_ch([],[],_NR,_PTB,[]).scan_ch625,16940 -scan_ch([Q_ch_yH|Q_ch_yT],[ThetaH|ThetaT],NR,PTB,[UCHH|UCHT]):-scan_ch627,16971 -scan_ch([Q_ch_yH|Q_ch_yT],[ThetaH|ThetaT],NR,PTB,[UCHH|UCHT]):-scan_ch627,16971 -scan_ch([Q_ch_yH|Q_ch_yT],[ThetaH|ThetaT],NR,PTB,[UCHH|UCHT]):-scan_ch627,16971 -compute_Nr([],[]):-!.compute_Nr642,17280 -compute_Nr([],[]):-!.compute_Nr642,17280 -compute_Nr([],[]):-!.compute_Nr642,17280 -compute_Nr([N-_Inst|TR],[1.0|TNR]):-compute_Nr644,17303 -compute_Nr([N-_Inst|TR],[1.0|TNR]):-compute_Nr644,17303 -compute_Nr([N-_Inst|TR],[1.0|TNR]):-compute_Nr644,17303 -compute_Nr([N-Inst|TR],[NR|TNR]):-compute_Nr648,17396 -compute_Nr([N-Inst|TR],[NR|TNR]):-compute_Nr648,17396 -compute_Nr([N-Inst|TR],[NR|TNR]):-compute_Nr648,17396 -compute_Nr_R(NEx,NEx,_N,_Inst,NR,NR):-!.compute_Nr_R657,17613 -compute_Nr_R(NEx,NEx,_N,_Inst,NR,NR):-!.compute_Nr_R657,17613 -compute_Nr_R(NEx,NEx,_N,_Inst,NR,NR):-!.compute_Nr_R657,17613 -compute_Nr_R(Y,NEx,N,Inst,NR0,NR1):-compute_Nr_R659,17655 -compute_Nr_R(Y,NEx,N,Inst,NR0,NR1):-compute_Nr_R659,17655 -compute_Nr_R(Y,NEx,N,Inst,NR0,NR1):-compute_Nr_R659,17655 -scan_inst([],_N,_Y,PTB,PTB).scan_inst667,17867 -scan_inst([],_N,_Y,PTB,PTB).scan_inst667,17867 -scan_inst([S|TS],N,Y,PTB0,PTB):-scan_inst669,17897 -scan_inst([S|TS],N,Y,PTB0,PTB):-scan_inst669,17897 -scan_inst([S|TS],N,Y,PTB0,PTB):-scan_inst669,17897 -prob_body([],_Y,PTSB,PTSB,[]).prob_body676,18067 -prob_body([],_Y,PTSB,PTSB,[]).prob_body676,18067 -prob_body([\+ H|T],Y,PTSB0,PTSB,B1):-!,prob_body678,18099 -prob_body([\+ H|T],Y,PTSB0,PTSB,B1):-!,prob_body678,18099 -prob_body([\+ H|T],Y,PTSB0,PTSB,B1):-!,prob_body678,18099 -prob_body([H|T],Y,PTSB0,PTSB,B1):-prob_body695,18419 -prob_body([H|T],Y,PTSB0,PTSB,B1):-prob_body695,18419 -prob_body([H|T],Y,PTSB0,PTSB,B1):-prob_body695,18419 -compute_D(NEx,NEx,_Rules,_NR,[]):-!.compute_D718,19025 -compute_D(NEx,NEx,_Rules,_NR,[]):-!.compute_D718,19025 -compute_D(NEx,NEx,_Rules,_NR,[]):-!.compute_D718,19025 -compute_D(Y,NEx,Rules,NR,[DY|TDY]):-compute_D720,19063 -compute_D(Y,NEx,Rules,NR,[DY|TDY]):-compute_D720,19063 -compute_D(Y,NEx,Rules,NR,[DY|TDY]):-compute_D720,19063 -compute_D_y([],[],_Y,[]):-!.compute_D_y728,19255 -compute_D_y([],[],_Y,[]):-!.compute_D_y728,19255 -compute_D_y([],[],_Y,[]):-!.compute_D_y728,19255 -compute_D_y([N-_Inst|TR],[1.0|TNR],Y,[N-0|DY]):-compute_D_y730,19285 -compute_D_y([N-_Inst|TR],[1.0|TNR],Y,[N-0|DY]):-compute_D_y730,19285 -compute_D_y([N-_Inst|TR],[1.0|TNR],Y,[N-0|DY]):-compute_D_y730,19285 -compute_D_y([N-Inst|TR],[NR|TNR],Y,[N-DYN|DY]):-compute_D_y734,19398 -compute_D_y([N-Inst|TR],[NR|TNR],Y,[N-DYN|DY]):-compute_D_y734,19398 -compute_D_y([N-Inst|TR],[NR|TNR],Y,[N-DYN|DY]):-compute_D_y734,19398 -compute_D_comb(L,L,_Y,_Values,_PD,[]):-!.compute_D_comb746,19776 -compute_D_comb(L,L,_Y,_Values,_PD,[]):-!.compute_D_comb746,19776 -compute_D_comb(L,L,_Y,_Values,_PD,[]):-!.compute_D_comb746,19776 -compute_D_comb(L0,L,Y,Values,PD,[DVec|TD]):-compute_D_comb748,19819 -compute_D_comb(L0,L,Y,Values,PD,[DVec|TD]):-compute_D_comb748,19819 -compute_D_comb(L0,L,Y,Values,PD,[DVec|TD]):-compute_D_comb748,19819 -scan_subs_list([],_Y,_PD,[]).scan_subs_list754,20005 -scan_subs_list([],_Y,_PD,[]).scan_subs_list754,20005 -scan_subs_list([ch(N,S)|T],Y,PD,[(B,QT,D)|DVec0]):-scan_subs_list756,20036 -scan_subs_list([ch(N,S)|T],Y,PD,[(B,QT,D)|DVec0]):-scan_subs_list756,20036 -scan_subs_list([ch(N,S)|T],Y,PD,[(B,QT,D)|DVec0]):-scan_subs_list756,20036 -compute_T([],_Theta,T,T):-!.compute_T768,20365 -compute_T([],_Theta,T,T):-!.compute_T768,20365 -compute_T([],_Theta,T,T):-!.compute_T768,20365 -compute_T([_=Val|TVal],ThetaR,T0,T1):-compute_T770,20395 -compute_T([_=Val|TVal],ThetaR,T0,T1):-compute_T770,20395 -compute_T([_=Val|TVal],ThetaR,T0,T1):-compute_T770,20395 -generate_combinations([],Y,N,L,NR,Values,DYN,[f(Values,D)|DYN]):-!,generate_combinations778,20626 -generate_combinations([],Y,N,L,NR,Values,DYN,[f(Values,D)|DYN]):-!,generate_combinations778,20626 -generate_combinations([],Y,N,L,NR,Values,DYN,[f(Values,D)|DYN]):-!,generate_combinations778,20626 -generate_combinations([S|TS],Y,N,L,NR,Values,DYN0,DYN1):-generate_combinations784,20819 -generate_combinations([S|TS],Y,N,L,NR,Values,DYN0,DYN1):-generate_combinations784,20819 -generate_combinations([S|TS],Y,N,L,NR,Values,DYN0,DYN1):-generate_combinations784,20819 -cycle_values(L,L,_Y,_N,_S,_TS,_NR,_Values,DYN,DYN):-!.cycle_values790,21017 -cycle_values(L,L,_Y,_N,_S,_TS,_NR,_Values,DYN,DYN):-!.cycle_values790,21017 -cycle_values(L,L,_Y,_N,_S,_TS,_NR,_Values,DYN,DYN):-!.cycle_values790,21017 -cycle_values(V,L,Y,N,S,TS,NR,Values,DYN0,DYN1):-cycle_values792,21075 -cycle_values(V,L,Y,N,S,TS,NR,Values,DYN0,DYN1):-cycle_values792,21075 -cycle_values(V,L,Y,N,S,TS,NR,Values,DYN0,DYN1):-cycle_values792,21075 -find_true_inst([],_N,_Ex,[]):-!.find_true_inst798,21314 -find_true_inst([],_N,_Ex,[]):-!.find_true_inst798,21314 -find_true_inst([],_N,_Ex,[]):-!.find_true_inst798,21314 -find_true_inst([S|TS],N,Ex,[S|TInst]):-find_true_inst800,21348 -find_true_inst([S|TS],N,Ex,[S|TInst]):-find_true_inst800,21348 -find_true_inst([S|TS],N,Ex,[S|TInst]):-find_true_inst800,21348 -find_true_inst([_S|TS],N,Ex,TInst):-find_true_inst806,21500 -find_true_inst([_S|TS],N,Ex,TInst):-find_true_inst806,21500 -find_true_inst([_S|TS],N,Ex,TInst):-find_true_inst806,21500 -find_true_inst_unseen([],_N,_Ex,[]):-!.find_true_inst_unseen809,21571 -find_true_inst_unseen([],_N,_Ex,[]):-!.find_true_inst_unseen809,21571 -find_true_inst_unseen([],_N,_Ex,[]):-!.find_true_inst_unseen809,21571 -find_true_inst_unseen([S|TS],N,Ex,[S|TInst]):-find_true_inst_unseen811,21612 -find_true_inst_unseen([S|TS],N,Ex,[S|TInst]):-find_true_inst_unseen811,21612 -find_true_inst_unseen([S|TS],N,Ex,[S|TInst]):-find_true_inst_unseen811,21612 -find_true_inst_unseen([_S|TS],N,Ex,TInst):-find_true_inst_unseen817,21789 -find_true_inst_unseen([_S|TS],N,Ex,TInst):-find_true_inst_unseen817,21789 -find_true_inst_unseen([_S|TS],N,Ex,TInst):-find_true_inst_unseen817,21789 -cycle_CH([],_Y,_Gamma,_Delta,_Q_ch_Y_par,_Q_Y,_Q_ch_par,_Q_t_Y_par,_PAX,_D,QGrad,QGrad,IGrad,IGrad):-!.cycle_CH823,22003 -cycle_CH([],_Y,_Gamma,_Delta,_Q_ch_Y_par,_Q_Y,_Q_ch_par,_Q_t_Y_par,_PAX,_D,QGrad,QGrad,IGrad,IGrad):-!.cycle_CH823,22003 -cycle_CH([],_Y,_Gamma,_Delta,_Q_ch_Y_par,_Q_Y,_Q_ch_par,_Q_t_Y_par,_PAX,_D,QGrad,QGrad,IGrad,IGrad):-!.cycle_CH823,22003 -cycle_CH([ch(N,_S)|T],Y,Gamma,Delta,Q_ch_Y_par,Q_Y,Q_ch_par,Q_t_Y_par,PAX,D,QGrad0,QGrad1,IGrad0,IGrad1):-cycle_CH825,22108 -cycle_CH([ch(N,_S)|T],Y,Gamma,Delta,Q_ch_Y_par,Q_Y,Q_ch_par,Q_t_Y_par,PAX,D,QGrad0,QGrad1,IGrad0,IGrad1):-cycle_CH825,22108 -cycle_CH([ch(N,_S)|T],Y,Gamma,Delta,Q_ch_Y_par,Q_Y,Q_ch_par,Q_t_Y_par,PAX,D,QGrad0,QGrad1,IGrad0,IGrad1):-cycle_CH825,22108 -cycle_CH([ch(N,S)|T],Y,Gamma,Delta,Q_ch_Y_par,Q_Y,Q_ch_par,Q_t_Y_par,PAX,D,QGrad0,QGrad1,IGrad0,IGrad1):-cycle_CH830,22349 -cycle_CH([ch(N,S)|T],Y,Gamma,Delta,Q_ch_Y_par,Q_Y,Q_ch_par,Q_t_Y_par,PAX,D,QGrad0,QGrad1,IGrad0,IGrad1):-cycle_CH830,22349 -cycle_CH([ch(N,S)|T],Y,Gamma,Delta,Q_ch_Y_par,Q_Y,Q_ch_par,Q_t_Y_par,PAX,D,QGrad0,QGrad1,IGrad0,IGrad1):-cycle_CH830,22349 -cycle_CH_values([],[],_Q_y,_E_log_Q_ch,_Gamma,[],_EEP,[],[],[]):-!.cycle_CH_values853,23370 -cycle_CH_values([],[],_Q_y,_E_log_Q_ch,_Gamma,[],_EEP,[],[],[]):-!.cycle_CH_values853,23370 -cycle_CH_values([],[],_Q_y,_E_log_Q_ch,_Gamma,[],_EEP,[],[],[]):-!.cycle_CH_values853,23370 -cycle_T([],_Y,_Gamma,_Delta,_U,_Q_ch_Y_par,_Q_Y,_Q_t_par,_Q_t_Y_par,_PAX,_D,QGrad,QGrad,IGrad,IGrad):-!.cycle_T868,23901 -cycle_T([],_Y,_Gamma,_Delta,_U,_Q_ch_Y_par,_Q_Y,_Q_t_par,_Q_t_Y_par,_PAX,_D,QGrad,QGrad,IGrad,IGrad):-!.cycle_T868,23901 -cycle_T([],_Y,_Gamma,_Delta,_U,_Q_ch_Y_par,_Q_Y,_Q_t_par,_Q_t_Y_par,_PAX,_D,QGrad,QGrad,IGrad,IGrad):-!.cycle_T868,23901 -cycle_T([TH|T],Y,Gamma,Delta,U,Q_ch_Y_par,Q_Y,Q_t_par,Q_t_Y_par,PAX,D,QGrad0,QGrad1,IGrad0,IGrad1):-cycle_T870,24007 -cycle_T([TH|T],Y,Gamma,Delta,U,Q_ch_Y_par,Q_Y,Q_t_par,Q_t_Y_par,PAX,D,QGrad0,QGrad1,IGrad0,IGrad1):-cycle_T870,24007 -cycle_T([TH|T],Y,Gamma,Delta,U,Q_ch_Y_par,Q_Y,Q_t_par,Q_t_Y_par,PAX,D,QGrad0,QGrad1,IGrad0,IGrad1):-cycle_T870,24007 -find_rules_with_T_in_the_body(TH,RT):-find_rules_with_T_in_the_body895,25149 -find_rules_with_T_in_the_body(TH,RT):-find_rules_with_T_in_the_body895,25149 -find_rules_with_T_in_the_body(TH,RT):-find_rules_with_T_in_the_body895,25149 -compute_EF([],_T,_Y,_U,_Q_ch_Y_par,Q_t_y,Q_y,EFt0,EFf0,EFt,EFf):-compute_EF899,25238 -compute_EF([],_T,_Y,_U,_Q_ch_Y_par,Q_t_y,Q_y,EFt0,EFf0,EFt,EFf):-compute_EF899,25238 -compute_EF([],_T,_Y,_U,_Q_ch_Y_par,Q_t_y,Q_y,EFt0,EFf0,EFt,EFf):-compute_EF899,25238 -compute_EF([ch(N,S)|TR],T,Y,U,Q_ch_Y_par,Q_t_y,Q_y,EFt0,EFf0,EFt,EFf):-compute_EF903,25361 -compute_EF([ch(N,S)|TR],T,Y,U,Q_ch_Y_par,Q_t_y,Q_y,EFt0,EFf0,EFt,EFf):-compute_EF903,25361 -compute_EF([ch(N,S)|TR],T,Y,U,Q_ch_Y_par,Q_t_y,Q_y,EFt0,EFf0,EFt,EFf):-compute_EF903,25361 -compute_EF([ch(N,S)|TR],T,Y,U,Q_ch_Y_par,Q_t_y,Q_y,EFt0,EFf0,EFt,EFf):-compute_EF922,25846 -compute_EF([ch(N,S)|TR],T,Y,U,Q_ch_Y_par,Q_t_y,Q_y,EFt0,EFf0,EFt,EFf):-compute_EF922,25846 -compute_EF([ch(N,S)|TR],T,Y,U,Q_ch_Y_par,Q_t_y,Q_y,EFt0,EFf0,EFt,EFf):-compute_EF922,25846 -find_U_N(U,N,UN):-find_U_N940,26328 -find_U_N(U,N,UN):-find_U_N940,26328 -find_U_N(U,N,UN):-find_U_N940,26328 -scan_UN([],_Q_ch_y,SumUt,SumUf,SumUt,SumUf).scan_UN943,26371 -scan_UN([],_Q_ch_y,SumUt,SumUf,SumUt,SumUf).scan_UN943,26371 -scan_UN([ch(N,S)-U|UT],Q_ch_y,SumUt0,SumUf0,SumUt,SumUf):-scan_UN945,26417 -scan_UN([ch(N,S)-U|UT],Q_ch_y,SumUt0,SumUf0,SumUt,SumUf):-scan_UN945,26417 -scan_UN([ch(N,S)-U|UT],Q_ch_y,SumUt0,SumUf0,SumUt,SumUf):-scan_UN945,26417 -scan_UN([ch(N,S)-U|UT],Q_ch_y,SumUt0,SumUf0,SumUt,SumUf):-scan_UN966,26878 -scan_UN([ch(N,S)-U|UT],Q_ch_y,SumUt0,SumUf0,SumUt,SumUf):-scan_UN966,26878 -scan_UN([ch(N,S)-U|UT],Q_ch_y,SumUt0,SumUf0,SumUt,SumUf):-scan_UN966,26878 -compute_EPT([],T,Pa_T,Q_ch_Y_par,_Q_t_Y,_Y,Delta,EPt0,EPf0,EPt,EPf):-compute_EPT987,27337 -compute_EPT([],T,Pa_T,Q_ch_Y_par,_Q_t_Y,_Y,Delta,EPt0,EPf0,EPt,EPf):-compute_EPT987,27337 -compute_EPT([],T,Pa_T,Q_ch_Y_par,_Q_t_Y,_Y,Delta,EPt0,EPf0,EPt,EPf):-compute_EPT987,27337 -compute_EPT([ch(N,S)|TCH],T,Pa_T,Q_ch_Y_par,Q_t_Y,Y,Delta,EPt0,EPf0,EPt,EPf):-compute_EPT992,27511 -compute_EPT([ch(N,S)|TCH],T,Pa_T,Q_ch_Y_par,Q_t_Y,Y,Delta,EPt0,EPf0,EPt,EPf):-compute_EPT992,27511 -compute_EPT([ch(N,S)|TCH],T,Pa_T,Q_ch_Y_par,Q_t_Y,Y,Delta,EPt0,EPf0,EPt,EPf):-compute_EPT992,27511 -compute_EPT([ch(N,S)|TCH],T,Pa_T,Q_ch_Y_par,Q_t_Y,Y,Delta,EPt0,EPf0,EPt,EPf):-compute_EPT1027,28273 -compute_EPT([ch(N,S)|TCH],T,Pa_T,Q_ch_Y_par,Q_t_Y,Y,Delta,EPt0,EPf0,EPt,EPf):-compute_EPT1027,28273 -compute_EPT([ch(N,S)|TCH],T,Pa_T,Q_ch_Y_par,Q_t_Y,Y,Delta,EPt0,EPf0,EPt,EPf):-compute_EPT1027,28273 -compute_prod_Pa_T([],_T,_Q_ch_Y_par,Prod,Prod).compute_prod_Pa_T1064,29362 -compute_prod_Pa_T([],_T,_Q_ch_Y_par,Prod,Prod).compute_prod_Pa_T1064,29362 -compute_prod_Pa_T([ch(N,_S)|TCH],T,Q_ch_Y_par,Prod0,Prod):-compute_prod_Pa_T1066,29411 -compute_prod_Pa_T([ch(N,_S)|TCH],T,Q_ch_Y_par,Prod0,Prod):-compute_prod_Pa_T1066,29411 -compute_prod_Pa_T([ch(N,_S)|TCH],T,Q_ch_Y_par,Prod0,Prod):-compute_prod_Pa_T1066,29411 -compute_prod_Pa_T([ch(N,S)|TCH],T,Q_ch_Y_par,Prod0,Prod):-compute_prod_Pa_T1070,29557 -compute_prod_Pa_T([ch(N,S)|TCH],T,Q_ch_Y_par,Prod0,Prod):-compute_prod_Pa_T1070,29557 -compute_prod_Pa_T([ch(N,S)|TCH],T,Q_ch_Y_par,Prod0,Prod):-compute_prod_Pa_T1070,29557 -cycle_EPT_CH_val([],[],[],S,S,0).cycle_EPT_CH_val1079,29846 -cycle_EPT_CH_val([],[],[],S,S,0).cycle_EPT_CH_val1079,29846 -cycle_EPT_CH_val([_],['':_P],[Q_ch_null_y],S,S,Q_ch_null_y):-!.cycle_EPT_CH_val1081,29881 -cycle_EPT_CH_val([_],['':_P],[Q_ch_null_y],S,S,Q_ch_null_y):-!.cycle_EPT_CH_val1081,29881 -cycle_EPT_CH_val([_],['':_P],[Q_ch_null_y],S,S,Q_ch_null_y):-!.cycle_EPT_CH_val1081,29881 -cycle_EPT_CH_val([HTheta|TTheta],[_H:_P|T],[Q_ch_yH|Q_ch_yT],S0,S,Q_ch_null_y):-cycle_EPT_CH_val1083,29946 -cycle_EPT_CH_val([HTheta|TTheta],[_H:_P|T],[Q_ch_yH|Q_ch_yT],S0,S,Q_ch_null_y):-cycle_EPT_CH_val1083,29946 -cycle_EPT_CH_val([HTheta|TTheta],[_H:_P|T],[Q_ch_yH|Q_ch_yT],S0,S,Q_ch_null_y):-cycle_EPT_CH_val1083,29946 -get_atoms_head([],[]):-!.get_atoms_head1090,30184 -get_atoms_head([],[]):-!.get_atoms_head1090,30184 -get_atoms_head([],[]):-!.get_atoms_head1090,30184 -get_atoms_head(['':_P],['']):-!.get_atoms_head1092,30211 -get_atoms_head(['':_P],['']):-!.get_atoms_head1092,30211 -get_atoms_head(['':_P],['']):-!.get_atoms_head1092,30211 -get_atoms_head([H:_P|T],[H1|T1]):-get_atoms_head1094,30245 -get_atoms_head([H:_P|T],[H1|T1]):-get_atoms_head1094,30245 -get_atoms_head([H:_P|T],[H1|T1]):-get_atoms_head1094,30245 -compute_R([],_CH,_NH,_Y,_PAX,_Q_Y,_Q_t_y,RTot,R0,R):-!,compute_R1103,30485 -compute_R([],_CH,_NH,_Y,_PAX,_Q_Y,_Q_t_y,RTot,R0,R):-!,compute_R1103,30485 -compute_R([],_CH,_NH,_Y,_PAX,_Q_Y,_Q_t_y,RTot,R0,R):-!,compute_R1103,30485 -compute_R([''],_CH,_NH,_Y,_PAX,_Q_Y,_Q_t_y,RTot,R0,R):-!,compute_R1106,30561 -compute_R([''],_CH,_NH,_Y,_PAX,_Q_Y,_Q_t_y,RTot,R0,R):-!,compute_R1106,30561 -compute_R([''],_CH,_NH,_Y,_PAX,_Q_Y,_Q_t_y,RTot,R0,R):-!,compute_R1106,30561 -compute_R([Val|T],CH,NH,Y,PAX,Q_Y,Q_t_y,RTot0,R0,R):-compute_R1110,30660 -compute_R([Val|T],CH,NH,Y,PAX,Q_Y,Q_t_y,RTot0,R0,R):-compute_R1110,30660 -compute_R([Val|T],CH,NH,Y,PAX,Q_Y,Q_t_y,RTot0,R0,R):-compute_R1110,30660 -subt([],[],_RT):-!.subt1143,31475 -subt([],[],_RT):-!.subt1143,31475 -subt([],[],_RT):-!.subt1143,31475 -subt([H|T],[H1|T1],RT):-subt1145,31496 -subt([H|T],[H1|T1],RT):-subt1145,31496 -subt([H|T],[H1|T1],RT):-subt1145,31496 -compute_R_x([],_X,_Q_Y,Prod,Prod):-!.compute_R_x1153,31679 -compute_R_x([],_X,_Q_Y,Prod,Prod):-!.compute_R_x1153,31679 -compute_R_x([],_X,_Q_Y,Prod,Prod):-!.compute_R_x1153,31679 -compute_R_x([ch(N,S)|T],X,Q_Y,Prod0,Prod1):-compute_R_x1155,31718 -compute_R_x([ch(N,S)|T],X,Q_Y,Prod0,Prod1):-compute_R_x1155,31718 -compute_R_x([ch(N,S)|T],X,Q_Y,Prod0,Prod1):-compute_R_x1155,31718 -body_true([],_Ex,1):-!.body_true1168,32113 -body_true([],_Ex,1):-!.body_true1168,32113 -body_true([],_Ex,1):-!.body_true1168,32113 -body_true([H|T],Ex,BT):-body_true1170,32138 -body_true([H|T],Ex,BT):-body_true1170,32138 -body_true([H|T],Ex,BT):-body_true1170,32138 -body_true([H|T],In,Ex,BT):-body_true1182,32302 -body_true([H|T],In,Ex,BT):-body_true1182,32302 -body_true([H|T],In,Ex,BT):-body_true1182,32302 -body_true_unseen([],[],_Ex,1):-!.body_true_unseen1196,32513 -body_true_unseen([],[],_Ex,1):-!.body_true_unseen1196,32513 -body_true_unseen([],[],_Ex,1):-!.body_true_unseen1196,32513 -body_true_unseen([\+ H|T],B,Ex,BT):-!,body_true_unseen1198,32548 -body_true_unseen([\+ H|T],B,Ex,BT):-!,body_true_unseen1198,32548 -body_true_unseen([\+ H|T],B,Ex,BT):-!,body_true_unseen1198,32548 -body_true_unseen([H|T],B,Ex,BT):-body_true_unseen1210,32752 -body_true_unseen([H|T],B,Ex,BT):-body_true_unseen1210,32752 -body_true_unseen([H|T],B,Ex,BT):-body_true_unseen1210,32752 -body_true_unseen([\+ H|T],In,B,Ex,BT):-!,body_true_unseen1222,32944 -body_true_unseen([\+ H|T],In,B,Ex,BT):-!,body_true_unseen1222,32944 -body_true_unseen([\+ H|T],In,B,Ex,BT):-!,body_true_unseen1222,32944 -body_true_unseen([H|T],In,B,Ex,BT):-body_true_unseen1236,33197 -body_true_unseen([H|T],In,B,Ex,BT):-body_true_unseen1236,33197 -body_true_unseen([H|T],In,B,Ex,BT):-body_true_unseen1236,33197 -test([]).test1252,33493 -test([]).test1252,33493 -test([H|T]):-test1254,33504 -test([H|T]):-test1254,33504 -test([H|T]):-test1254,33504 -test_unseen([],[]).test_unseen1258,33547 -test_unseen([],[]).test_unseen1258,33547 -test_unseen([\+ H|Tail],B):-!,test_unseen1260,33568 -test_unseen([\+ H|Tail],B):-!,test_unseen1260,33568 -test_unseen([\+ H|Tail],B):-!,test_unseen1260,33568 -test_unseen([H|Tail],B):-test_unseen1276,33814 -test_unseen([H|Tail],B):-test_unseen1276,33814 -test_unseen([H|Tail],B):-test_unseen1276,33814 -compute_ED([],_S,_Q_y_par,ED,ED):-!.compute_ED1293,34113 -compute_ED([],_S,_Q_y_par,ED,ED):-!.compute_ED1293,34113 -compute_ED([],_S,_Q_y_par,ED,ED):-!.compute_ED1293,34113 -compute_ED([f(Values,D)|TD],S,Q_y_par,ED0,ED1):-compute_ED1295,34151 -compute_ED([f(Values,D)|TD],S,Q_y_par,ED0,ED1):-compute_ED1295,34151 -compute_ED([f(Values,D)|TD],S,Q_y_par,ED0,ED1):-compute_ED1295,34151 -delete_matching([],_El,[]):-!.delete_matching1303,34394 -delete_matching([],_El,[]):-!.delete_matching1303,34394 -delete_matching([],_El,[]):-!.delete_matching1303,34394 -delete_matching([El|T],El,TR):-!,delete_matching1305,34426 -delete_matching([El|T],El,TR):-!,delete_matching1305,34426 -delete_matching([El|T],El,TR):-!,delete_matching1305,34426 -delete_matching([H|T],El,[H|TR]):-!,delete_matching1308,34489 -delete_matching([H|T],El,[H|TR]):-!,delete_matching1308,34489 -delete_matching([H|T],El,[H|TR]):-!,delete_matching1308,34489 -compute_term([],_Q_ch_y_par,Term,Term):-!.compute_term1316,34644 -compute_term([],_Q_ch_y_par,Term,Term):-!.compute_term1316,34644 -compute_term([],_Q_ch_y_par,Term,Term):-!.compute_term1316,34644 -compute_term([ch(N,S)=Val|TVal],Q_ch_y_par,Term0,Term1):-compute_term1318,34688 -compute_term([ch(N,S)=Val|TVal],Q_ch_y_par,Term0,Term1):-compute_term1318,34688 -compute_term([ch(N,S)=Val|TVal],Q_ch_y_par,Term0,Term1):-compute_term1318,34688 -single_rules_ed_contrib([],[]).single_rules_ed_contrib1324,34895 -single_rules_ed_contrib([],[]).single_rules_ed_contrib1324,34895 -single_rules_ed_contrib([H|T],[SR|TSR]):-single_rules_ed_contrib1326,34928 -single_rules_ed_contrib([H|T],[SR|TSR]):-single_rules_ed_contrib1326,34928 -single_rules_ed_contrib([H|T],[SR|TSR]):-single_rules_ed_contrib1326,34928 -single_rules_ed_contrib_ch_val([],SR,SR).single_rules_ed_contrib_ch_val1330,35049 -single_rules_ed_contrib_ch_val([],SR,SR).single_rules_ed_contrib_ch_val1330,35049 -single_rules_ed_contrib_ch_val([(_B,QT,D)|T],SR0,SR):-single_rules_ed_contrib_ch_val1332,35092 -single_rules_ed_contrib_ch_val([(_B,QT,D)|T],SR0,SR):-single_rules_ed_contrib_ch_val1332,35092 -single_rules_ed_contrib_ch_val([(_B,QT,D)|T],SR0,SR):-single_rules_ed_contrib_ch_val1332,35092 -sum([],[],[]):-!. sum1338,35270 -sum([],[],[]):-!. sum1338,35270 -sum([],[],[]):-!. sum1338,35270 -sum([H0|T0],[H1|T1],[H2|T2]):-sum1340,35291 -sum([H0|T0],[H1|T1],[H2|T2]):-sum1340,35291 -sum([H0|T0],[H1|T1],[H2|T2]):-sum1340,35291 -vec_times([],[],[]):-!. vec_times1346,35430 -vec_times([],[],[]):-!. vec_times1346,35430 -vec_times([],[],[]):-!. vec_times1346,35430 -vec_times([H0|T0],[H1|T1],[H2|T2]):-vec_times1348,35457 -vec_times([H0|T0],[H1|T1],[H2|T2]):-vec_times1348,35457 -vec_times([H0|T0],[H1|T1],[H2|T2]):-vec_times1348,35457 -compute_EP([],[],[],_BodyTrue,_PTB,_Q_t_Y_par,_Ex,[],[],_Delta,EEP,EEP):-!.compute_EP1360,35750 -compute_EP([],[],[],_BodyTrue,_PTB,_Q_t_Y_par,_Ex,[],[],_Delta,EEP,EEP):-!.compute_EP1360,35750 -compute_EP([],[],[],_BodyTrue,_PTB,_Q_t_Y_par,_Ex,[],[],_Delta,EEP,EEP):-!.compute_EP1360,35750 -compute_EP([''],[Prob_ch_y],[Theta],BodyTrue,PTB,_Q_t_Y_par,_Ex,[EP],[R],Delta,EEP0,EEP1):-!,compute_EP1362,35827 -compute_EP([''],[Prob_ch_y],[Theta],BodyTrue,PTB,_Q_t_Y_par,_Ex,[EP],[R],Delta,EEP0,EEP1):-!,compute_EP1362,35827 -compute_EP([''],[Prob_ch_y],[Theta],BodyTrue,PTB,_Q_t_Y_par,_Ex,[EP],[R],Delta,EEP0,EEP1):-!,compute_EP1362,35827 -compute_EP([Val|TVal],[Prob_ch_y|TP],[Theta|TTheta],BodyTrue,PTB,Q_t_Y_par,Ex,[EP|TEP],[R|TR],Delta,EEP0,EEP1):-compute_EP1366,35992 -compute_EP([Val|TVal],[Prob_ch_y|TP],[Theta|TTheta],BodyTrue,PTB,Q_t_Y_par,Ex,[EP|TEP],[R|TR],Delta,EEP0,EEP1):-compute_EP1366,35992 -compute_EP([Val|TVal],[Prob_ch_y|TP],[Theta|TTheta],BodyTrue,PTB,Q_t_Y_par,Ex,[EP|TEP],[R|TR],Delta,EEP0,EEP1):-compute_EP1366,35992 -compute_E_log_Q_ch([],[],E,E):-!.compute_E_log_Q_ch1386,36592 -compute_E_log_Q_ch([],[],E,E):-!.compute_E_log_Q_ch1386,36592 -compute_E_log_Q_ch([],[],E,E):-!.compute_E_log_Q_ch1386,36592 -compute_E_log_Q_ch([HProb_ch_y|T],[Prob_ch|T1],E0,E1):-compute_E_log_Q_ch1388,36627 -compute_E_log_Q_ch([HProb_ch_y|T],[Prob_ch|T1],E0,E1):-compute_E_log_Q_ch1388,36627 -compute_E_log_Q_ch([HProb_ch_y|T],[Prob_ch|T1],E0,E1):-compute_E_log_Q_ch1388,36627 -build_q_table(CH):-build_q_table1396,36893 -build_q_table(CH):-build_q_table1396,36893 -build_q_table(CH):-build_q_table1396,36893 -add_Q_par(N,N,_CH):-!. add_Q_par1402,37006 -add_Q_par(N,N,_CH):-!. add_Q_par1402,37006 -add_Q_par(N,N,_CH):-!. add_Q_par1402,37006 -add_Q_par(N,NEx,CH):-add_Q_par1404,37032 -add_Q_par(N,NEx,CH):-add_Q_par1404,37032 -add_Q_par(N,NEx,CH):-add_Q_par1404,37032 -add_Q_Y_par([],Q,Q). add_Q_Y_par1414,37320 -add_Q_Y_par([],Q,Q). add_Q_Y_par1414,37320 -add_Q_Y_par([ch(N,S)|T],Q0,Q1):-add_Q_Y_par1416,37344 -add_Q_Y_par([ch(N,S)|T],Q0,Q1):-add_Q_Y_par1416,37344 -add_Q_Y_par([ch(N,S)|T],Q0,Q1):-add_Q_Y_par1416,37344 -add_Q_Y_par([ch(N,S)|T],Q0,Q1):-add_Q_Y_par1421,37471 -add_Q_Y_par([ch(N,S)|T],Q0,Q1):-add_Q_Y_par1421,37471 -add_Q_Y_par([ch(N,S)|T],Q0,Q1):-add_Q_Y_par1421,37471 -gen_random_param(0,_Sum,_PertSize,_P,[]):-!.gen_random_param1433,37834 -gen_random_param(0,_Sum,_PertSize,_P,[]):-!.gen_random_param1433,37834 -gen_random_param(0,_Sum,_PertSize,_P,[]):-!.gen_random_param1433,37834 -gen_random_param(N,Sum,PertSize,P,[P1|Par]):-gen_random_param1435,37880 -gen_random_param(N,Sum,PertSize,P,[P1|Par]):-gen_random_param1435,37880 -gen_random_param(N,Sum,PertSize,P,[P1|Par]):-gen_random_param1435,37880 -build_qt_table(T):-build_qt_table1456,38357 -build_qt_table(T):-build_qt_table1456,38357 -build_qt_table(T):-build_qt_table1456,38357 -add_Qt_par(N,N,_T):-!. add_Qt_par1462,38475 -add_Qt_par(N,N,_T):-!. add_Qt_par1462,38475 -add_Qt_par(N,N,_T):-!. add_Qt_par1462,38475 -add_Qt_par(N,NEx,T):-add_Qt_par1464,38501 -add_Qt_par(N,NEx,T):-add_Qt_par1464,38501 -add_Qt_par(N,NEx,T):-add_Qt_par1464,38501 -add_Qt_Y_par([],Q,Q). add_Qt_Y_par1474,38759 -add_Qt_Y_par([],Q,Q). add_Qt_Y_par1474,38759 -add_Qt_Y_par([H|T],Q0,Q1):-add_Qt_Y_par1476,38784 -add_Qt_Y_par([H|T],Q0,Q1):-add_Qt_Y_par1476,38784 -add_Qt_Y_par([H|T],Q0,Q1):-add_Qt_Y_par1476,38784 -build_p_table(Rules):-build_p_table1486,39009 -build_p_table(Rules):-build_p_table1486,39009 -build_p_table(Rules):-build_p_table1486,39009 -add_P_par([]). add_P_par1495,39200 -add_P_par([]). add_P_par1495,39200 -add_P_par([def_rule(_N,_S,_H,_BL)|T]):-!,add_P_par1497,39218 -add_P_par([def_rule(_N,_S,_H,_BL)|T]):-!,add_P_par1497,39218 -add_P_par([def_rule(_N,_S,_H,_BL)|T]):-!,add_P_par1497,39218 -add_P_par([rule(N,_V,_NH,HL,_BL,_LogF)|T]):-add_P_par1500,39277 -add_P_par([rule(N,_V,_NH,HL,_BL,_LogF)|T]):-add_P_par1500,39277 -add_P_par([rule(N,_V,_NH,HL,_BL,_LogF)|T]):-add_P_par1500,39277 -build_network_IB(CH,PAX,T,TCh,R,LogSize):-build_network_IB1507,39478 -build_network_IB(CH,PAX,T,TCh,R,LogSize):-build_network_IB1507,39478 -build_network_IB(CH,PAX,T,TCh,R,LogSize):-build_network_IB1507,39478 -find_ground_atoms([],GA,GA,GUA,GUA):-!.find_ground_atoms1536,40226 -find_ground_atoms([],GA,GA,GUA,GUA):-!.find_ground_atoms1536,40226 -find_ground_atoms([],GA,GA,GUA,GUA):-!.find_ground_atoms1536,40226 -find_ground_atoms([d(_N,_S,H,Body)|T],GA0,GA,GUA0,GUA):-!,find_ground_atoms1538,40267 -find_ground_atoms([d(_N,_S,H,Body)|T],GA0,GA,GUA0,GUA):-!,find_ground_atoms1538,40267 -find_ground_atoms([d(_N,_S,H,Body)|T],GA0,GA,GUA0,GUA):-!,find_ground_atoms1538,40267 -find_ground_atoms([(_N,_S,Head,Body)|T],GA0,GA,GUA0,GUA):-find_ground_atoms1555,40717 -find_ground_atoms([(_N,_S,Head,Body)|T],GA0,GA,GUA0,GUA):-find_ground_atoms1555,40717 -find_ground_atoms([(_N,_S,Head,Body)|T],GA0,GA,GUA0,GUA):-find_ground_atoms1555,40717 -find_atoms_body([],GA,GA,GUA,GUA):-!.find_atoms_body1561,40918 -find_atoms_body([],GA,GA,GUA,GUA):-!.find_atoms_body1561,40918 -find_atoms_body([],GA,GA,GUA,GUA):-!.find_atoms_body1561,40918 -find_atoms_body([\+H|T],GA0,GA,GUA0,GUA):-find_atoms_body1563,40957 -find_atoms_body([\+H|T],GA0,GA,GUA0,GUA):-find_atoms_body1563,40957 -find_atoms_body([\+H|T],GA0,GA,GUA0,GUA):-find_atoms_body1563,40957 -find_atoms_body([H|T],GA0,GA,GUA0,GUA):-find_atoms_body1567,41068 -find_atoms_body([H|T],GA0,GA,GUA0,GUA):-find_atoms_body1567,41068 -find_atoms_body([H|T],GA0,GA,GUA0,GUA):-find_atoms_body1567,41068 -find_atoms_body([\+H|T],GA0,GA,GUA0,GUA):-!,find_atoms_body1572,41178 -find_atoms_body([\+H|T],GA0,GA,GUA0,GUA):-!,find_atoms_body1572,41178 -find_atoms_body([\+H|T],GA0,GA,GUA0,GUA):-!,find_atoms_body1572,41178 -find_atoms_body([H|T],GA0,GA,GUA0,GUA):-!,find_atoms_body1582,41386 -find_atoms_body([H|T],GA0,GA,GUA0,GUA):-!,find_atoms_body1582,41386 -find_atoms_body([H|T],GA0,GA,GUA0,GUA):-!,find_atoms_body1582,41386 -find_atoms_head([],GA,GA,GUA,GUA).find_atoms_head1592,41592 -find_atoms_head([],GA,GA,GUA,GUA).find_atoms_head1592,41592 -find_atoms_head(['':_P],GA,GA,GUA,GUA):-!.find_atoms_head1594,41628 -find_atoms_head(['':_P],GA,GA,GUA,GUA):-!.find_atoms_head1594,41628 -find_atoms_head(['':_P],GA,GA,GUA,GUA):-!.find_atoms_head1594,41628 -find_atoms_head([H:_P|T],GA0,GA,GUA0,GUA):-find_atoms_head1596,41672 -find_atoms_head([H:_P|T],GA0,GA,GUA0,GUA):-find_atoms_head1596,41672 -find_atoms_head([H:_P|T],GA0,GA,GUA0,GUA):-find_atoms_head1596,41672 -get_T_children([],TCh,TCh):-!.get_T_children1606,41879 -get_T_children([],TCh,TCh):-!.get_T_children1606,41879 -get_T_children([],TCh,TCh):-!.get_T_children1606,41879 -get_T_children([d(N,S,_Head,Body)|T],TCh0,TCh):-!,get_T_children1608,41911 -get_T_children([d(N,S,_Head,Body)|T],TCh0,TCh):-!,get_T_children1608,41911 -get_T_children([d(N,S,_Head,Body)|T],TCh0,TCh):-!,get_T_children1608,41911 -get_T_children([(N,S,_Head,Body)|T],TCh0,TCh):-get_T_children1612,42032 -get_T_children([(N,S,_Head,Body)|T],TCh0,TCh):-get_T_children1612,42032 -get_T_children([(N,S,_Head,Body)|T],TCh0,TCh):-get_T_children1612,42032 -scan_body_for_T([],_N,_S,TCh,TCh):-!.scan_body_for_T1618,42224 -scan_body_for_T([],_N,_S,TCh,TCh):-!.scan_body_for_T1618,42224 -scan_body_for_T([],_N,_S,TCh,TCh):-!.scan_body_for_T1618,42224 -scan_body_for_T([\+ H|T],N,S,TCh0,TCh):-!,scan_body_for_T1620,42263 -scan_body_for_T([\+ H|T],N,S,TCh0,TCh):-!,scan_body_for_T1620,42263 -scan_body_for_T([\+ H|T],N,S,TCh0,TCh):-!,scan_body_for_T1620,42263 -scan_body_for_T([H|T],N,S,TCh0,TCh):- scan_body_for_T1635,42551 -scan_body_for_T([H|T],N,S,TCh0,TCh):- scan_body_for_T1635,42551 -scan_body_for_T([H|T],N,S,TCh0,TCh):- scan_body_for_T1635,42551 -get_X_parents([],_CL,PAX,PAX):-!.get_X_parents1645,42773 -get_X_parents([],_CL,PAX,PAX):-!.get_X_parents1645,42773 -get_X_parents([],_CL,PAX,PAX):-!.get_X_parents1645,42773 -get_X_parents([X|TX],CL,PAX0,PAX1):-get_X_parents1647,42808 -get_X_parents([X|TX],CL,PAX0,PAX1):-get_X_parents1647,42808 -get_X_parents([X|TX],CL,PAX0,PAX1):-get_X_parents1647,42808 -add_parentless_X([],PAX,PAX).add_parentless_X1660,43074 -add_parentless_X([],PAX,PAX).add_parentless_X1660,43074 -add_parentless_X([X|T],PAX0,PAX1):-add_parentless_X1662,43105 -add_parentless_X([X|T],PAX0,PAX1):-add_parentless_X1662,43105 -add_parentless_X([X|T],PAX0,PAX1):-add_parentless_X1662,43105 -add_childless_T([],TCh,TCh).add_childless_T1670,43255 -add_childless_T([],TCh,TCh).add_childless_T1670,43255 -add_childless_T([T|TT],TCh0,TCh):-add_childless_T1672,43285 -add_childless_T([T|TT],TCh0,TCh):-add_childless_T1672,43285 -add_childless_T([T|TT],TCh0,TCh):-add_childless_T1672,43285 -get_X_parents([],PAX,PAX):-!.get_X_parents1683,43585 -get_X_parents([],PAX,PAX):-!.get_X_parents1683,43585 -get_X_parents([],PAX,PAX):-!.get_X_parents1683,43585 -get_X_parents([d(N,S,Head,_Body)|T],PAX0,PAX1):-get_X_parents1685,43616 -get_X_parents([d(N,S,Head,_Body)|T],PAX0,PAX1):-get_X_parents1685,43616 -get_X_parents([d(N,S,Head,_Body)|T],PAX0,PAX1):-get_X_parents1685,43616 -get_X_parents([(N,S,Head,_Body)|T],PAX0,PAX1):-get_X_parents1690,43736 -get_X_parents([(N,S,Head,_Body)|T],PAX0,PAX1):-get_X_parents1690,43736 -get_X_parents([(N,S,Head,_Body)|T],PAX0,PAX1):-get_X_parents1690,43736 -scan_head([],_N,_S,PAX,PAX).scan_head1696,43922 -scan_head([],_N,_S,PAX,PAX).scan_head1696,43922 -scan_head(['':_P],_N,_S,PAX,PAX):-!.scan_head1698,43952 -scan_head(['':_P],_N,_S,PAX,PAX):-!.scan_head1698,43952 -scan_head(['':_P],_N,_S,PAX,PAX):-!.scan_head1698,43952 -scan_head([H:_P|T],N,S,PAX0,PAX1):- scan_head1700,43990 -scan_head([H:_P|T],N,S,PAX0,PAX1):- scan_head1700,43990 -scan_head([H:_P|T],N,S,PAX0,PAX1):- scan_head1700,43990 -generate_ground(L1,GA):-generate_ground1712,44254 -generate_ground(L1,GA):-generate_ground1712,44254 -generate_ground(L1,GA):-generate_ground1712,44254 -generate_ground(L1,GA):-generate_ground1718,44427 -generate_ground(L1,GA):-generate_ground1718,44427 -generate_ground(L1,GA):-generate_ground1718,44427 -generate_ground1(N,N,_O,L0,L):-!,generate_ground11731,44776 -generate_ground1(N,N,_O,L0,L):-!,generate_ground11731,44776 -generate_ground1(N,N,_O,L0,L):-!,generate_ground11731,44776 -generate_ground1(N0,N,O,L0,L1):-generate_ground11734,44838 -generate_ground1(N0,N,O,L0,L1):-generate_ground11734,44838 -generate_ground1(N0,N,O,L0,L1):-generate_ground11734,44838 -generate_ground1_goals([],Exp,Exp).generate_ground1_goals1749,45206 -generate_ground1_goals([],Exp,Exp).generate_ground1_goals1749,45206 -generate_ground1_goals([H|T],Exp0,Exp):-generate_ground1_goals1751,45243 -generate_ground1_goals([H|T],Exp0,Exp):-generate_ground1_goals1751,45243 -generate_ground1_goals([H|T],Exp0,Exp):-generate_ground1_goals1751,45243 -add_to_tree([],L,L).add_to_tree1757,45442 -add_to_tree([],L,L).add_to_tree1757,45442 -add_to_tree([(R,S)|T],L0,L):-add_to_tree1759,45464 -add_to_tree([(R,S)|T],L0,L):-add_to_tree1759,45464 -add_to_tree([(R,S)|T],L0,L):-add_to_tree1759,45464 -generate_ground2(N,N,_O,L,L):-%write(fine),nl,generate_ground21768,45609 -generate_ground2(N,N,_O,L,L):-%write(fine),nl,generate_ground21768,45609 -generate_ground2(N,N,_O,L,L):-%write(fine),nl,generate_ground21768,45609 -generate_ground2(N0,N,O,L0,L1):-generate_ground21771,45662 -generate_ground2(N0,N,O,L0,L1):-generate_ground21771,45662 -generate_ground2(N0,N,O,L0,L1):-generate_ground21771,45662 -add_to_list([],L,L).add_to_list1782,45964 -add_to_list([],L,L).add_to_list1782,45964 -add_to_list([(R,S)|T],L0,L):-add_to_list1784,45986 -add_to_list([(R,S)|T],L0,L):-add_to_list1784,45986 -add_to_list([(R,S)|T],L0,L):-add_to_list1784,45986 -get_constants_types([],Types,Types).get_constants_types1794,46112 -get_constants_types([],Types,Types).get_constants_types1794,46112 -get_constants_types([H|T],Types0,Types1):-get_constants_types1796,46150 -get_constants_types([H|T],Types0,Types1):-get_constants_types1796,46150 -get_constants_types([H|T],Types0,Types1):-get_constants_types1796,46150 -get_const_atom([],[],_Mod,_Args1,_H,Types,Types).get_const_atom1804,46368 -get_const_atom([],[],_Mod,_Args1,_H,Types,Types).get_const_atom1804,46368 -get_const_atom([+Type|TT],[V|TV],Mod,Args1,H,Types0,Types1):-get_const_atom1806,46421 -get_const_atom([+Type|TT],[V|TV],Mod,Args1,H,Types0,Types1):-get_const_atom1806,46421 -get_const_atom([+Type|TT],[V|TV],Mod,Args1,H,Types0,Types1):-get_const_atom1806,46421 -get_const_atom([-Type|TT],[V|TV],Mod,Args1,H,Types0,Types1):-get_const_atom1812,46626 -get_const_atom([-Type|TT],[V|TV],Mod,Args1,H,Types0,Types1):-get_const_atom1812,46626 -get_const_atom([-Type|TT],[V|TV],Mod,Args1,H,Types0,Types1):-get_const_atom1812,46626 -insert_const(L,Type,Types0,Types1):-insert_const1818,46829 -insert_const(L,Type,Types0,Types1):-insert_const1818,46829 -insert_const(L,Type,Types0,Types1):-insert_const1818,46829 -asser_all_const([]).asser_all_const1827,47033 -asser_all_const([]).asser_all_const1827,47033 -asser_all_const([Type-Const|T]):-asser_all_const1829,47055 -asser_all_const([Type-Const|T]):-asser_all_const1829,47055 -asser_all_const([Type-Const|T]):-asser_all_const1829,47055 -assert_const([],_Type).assert_const1834,47189 -assert_const([],_Type).assert_const1834,47189 -assert_const([H|T],Type):-assert_const1836,47216 -assert_const([H|T],Type):-assert_const1836,47216 -assert_const([H|T],Type):-assert_const1836,47216 -ground_rules([],L,L):-!.ground_rules1844,47354 -ground_rules([],L,L):-!.ground_rules1844,47354 -ground_rules([],L,L):-!.ground_rules1844,47354 -ground_rules([rule(N,V,HL,BL)|T],L0,L1):-ground_rules1846,47380 -ground_rules([rule(N,V,HL,BL)|T],L0,L1):-ground_rules1846,47380 -ground_rules([rule(N,V,HL,BL)|T],L0,L1):-ground_rules1846,47380 -ground_rules([_H|T],L0,L1):-ground_rules1855,47622 -ground_rules([_H|T],L0,L1):-ground_rules1855,47622 -ground_rules([_H|T],L0,L1):-ground_rules1855,47622 -remove_module_head(['':P],['':P]):-!.remove_module_head1860,47746 -remove_module_head(['':P],['':P]):-!.remove_module_head1860,47746 -remove_module_head(['':P],['':P]):-!.remove_module_head1860,47746 -remove_module_head([H:P|T],[H1:P|T1]):-remove_module_head1862,47785 -remove_module_head([H:P|T],[H1:P|T1]):-remove_module_head1862,47785 -remove_module_head([H:P|T],[H1:P|T1]):-remove_module_head1862,47785 -remove_module([],[]):-!.remove_module1869,47959 -remove_module([],[]):-!.remove_module1869,47959 -remove_module([],[]):-!.remove_module1869,47959 -remove_module([\+H|T],[\+H1|T1]):-!,remove_module1871,47985 -remove_module([\+H|T],[\+H1|T1]):-!,remove_module1871,47985 -remove_module([\+H|T],[\+H1|T1]):-!,remove_module1871,47985 -remove_module([H|T],[H1|T1]):-remove_module1876,48082 -remove_module([H|T],[H1|T1]):-remove_module1876,48082 -remove_module([H|T],[H1|T1]):-remove_module1876,48082 -add_module([],_Y,[]):-!.add_module1884,48270 -add_module([],_Y,[]):-!.add_module1884,48270 -add_module([],_Y,[]):-!.add_module1884,48270 -add_module([\+H|T],Y,[\+H1|T1]):-!,add_module1886,48296 -add_module([\+H|T],Y,[\+H1|T1]):-!,add_module1886,48296 -add_module([\+H|T],Y,[\+H1|T1]):-!,add_module1886,48296 -add_module([H|T],Y,[H1|T1]):-add_module1891,48390 -add_module([H|T],Y,[H1|T1]):-add_module1891,48390 -add_module([H|T],Y,[H1|T1]):-add_module1891,48390 -ground_head(['':_P]):-!.ground_head1900,48530 -ground_head(['':_P]):-!.ground_head1900,48530 -ground_head(['':_P]):-!.ground_head1900,48530 -ground_head([H:_P|T]):-ground_head1902,48556 -ground_head([H:_P|T]):-ground_head1902,48556 -ground_head([H:_P|T]):-ground_head1902,48556 -ground_head([H:_P|T]):-ground_head1907,48623 -ground_head([H:_P|T]):-ground_head1907,48623 -ground_head([H:_P|T]):-ground_head1907,48623 -ground_body([]):-!.ground_body1914,48711 -ground_body([]):-!.ground_body1914,48711 -ground_body([]):-!.ground_body1914,48711 -ground_body([\+H|T]):-!,ground_body1916,48732 -ground_body([\+H|T]):-!,ground_body1916,48732 -ground_body([\+H|T]):-!,ground_body1916,48732 -ground_body([H|T]):-ground_body1920,48789 -ground_body([H|T]):-ground_body1920,48789 -ground_body([H|T]):-ground_body1920,48789 -ground_head(['':_P]):-!.ground_head1924,48842 -ground_head(['':_P]):-!.ground_head1924,48842 -ground_head(['':_P]):-!.ground_head1924,48842 -ground_head([H:_P|T]):-ground_head1926,48868 -ground_head([H:_P|T]):-ground_head1926,48868 -ground_head([H:_P|T]):-ground_head1926,48868 -instantiate_args([],[]).instantiate_args1935,49029 -instantiate_args([],[]).instantiate_args1935,49029 -instantiate_args([+Type|T],[V|T1]):-!,instantiate_args1937,49055 -instantiate_args([+Type|T],[V|T1]):-!,instantiate_args1937,49055 -instantiate_args([+Type|T],[V|T1]):-!,instantiate_args1937,49055 -instantiate_args([-Type|T],[V|T1]):-instantiate_args1942,49150 -instantiate_args([-Type|T],[V|T1]):-instantiate_args1942,49150 -instantiate_args([-Type|T],[V|T1]):-instantiate_args1942,49150 -ground_body([]):-!.ground_body1951,49273 -ground_body([]):-!.ground_body1951,49273 -ground_body([]):-!.ground_body1951,49273 -ground_body([\+H|T]):-!,ground_body1953,49294 -ground_body([\+H|T]):-!,ground_body1953,49294 -ground_body([\+H|T]):-!,ground_body1953,49294 -ground_body([H|T]):-ground_body1962,49456 -ground_body([H|T]):-ground_body1962,49456 -ground_body([H|T]):-ground_body1962,49456 -find_modes(Modes):-find_modes1973,49678 -find_modes(Modes):-find_modes1973,49678 -find_modes(Modes):-find_modes1973,49678 -get_types([],L,L).get_types1980,49843 -get_types([],L,L).get_types1980,49843 -get_types([H|T],L0,L1):-get_types1982,49863 -get_types([H|T],L0,L1):-get_types1982,49863 -get_types([H|T],L0,L1):-get_types1982,49863 -remove_io([],L,L).remove_io1987,49953 -remove_io([],L,L).remove_io1987,49953 -remove_io([+H|T],L0,L1):-remove_io1989,49973 -remove_io([+H|T],L0,L1):-remove_io1989,49973 -remove_io([+H|T],L0,L1):-remove_io1989,49973 -remove_io([-H|T],L0,L1):-remove_io1997,50081 -remove_io([-H|T],L0,L1):-remove_io1997,50081 -remove_io([-H|T],L0,L1):-remove_io1997,50081 -find_ground_atoms_modes([],GA,GA):-!.find_ground_atoms_modes2007,50236 -find_ground_atoms_modes([],GA,GA):-!.find_ground_atoms_modes2007,50236 -find_ground_atoms_modes([],GA,GA):-!.find_ground_atoms_modes2007,50236 -find_ground_atoms_modes([A|T],GA0,GA1):-find_ground_atoms_modes2009,50279 -find_ground_atoms_modes([A|T],GA0,GA1):-find_ground_atoms_modes2009,50279 -find_ground_atoms_modes([A|T],GA0,GA1):-find_ground_atoms_modes2009,50279 -find_ground_atoms_modes([],GA,GA):-!.find_ground_atoms_modes2031,50677 -find_ground_atoms_modes([],GA,GA):-!.find_ground_atoms_modes2031,50677 -find_ground_atoms_modes([],GA,GA):-!.find_ground_atoms_modes2031,50677 -find_ground_atoms_modes([A|T],GA0,GA1):-find_ground_atoms_modes2033,50720 -find_ground_atoms_modes([A|T],GA0,GA1):-find_ground_atoms_modes2033,50720 -find_ground_atoms_modes([A|T],GA0,GA1):-find_ground_atoms_modes2033,50720 -assert_all([]):-!.assert_all2045,51022 -assert_all([]):-!.assert_all2045,51022 -assert_all([]):-!.assert_all2045,51022 -assert_all([H|T]):-assert_all2047,51042 -assert_all([H|T]):-assert_all2047,51042 -assert_all([H|T]):-assert_all2047,51042 -choice_vars_IB([],[],LogSize,LogSize,R,R):-!.choice_vars_IB2056,51337 -choice_vars_IB([],[],LogSize,LogSize,R,R):-!.choice_vars_IB2056,51337 -choice_vars_IB([],[],LogSize,LogSize,R,R):-!.choice_vars_IB2056,51337 -choice_vars_IB([d(N,S,_H,_B)|T],CH,LogSize0,LogSize1,R0,R1):-choice_vars_IB2058,51384 -choice_vars_IB([d(N,S,_H,_B)|T],CH,LogSize0,LogSize1,R0,R1):-choice_vars_IB2058,51384 -choice_vars_IB([d(N,S,_H,_B)|T],CH,LogSize0,LogSize1,R0,R1):-choice_vars_IB2058,51384 -choice_vars_IB([(N,S,H,_B)|T],CH,LogSize0,LogSize1,R0,R1):-choice_vars_IB2074,51696 -choice_vars_IB([(N,S,H,_B)|T],CH,LogSize0,LogSize1,R0,R1):-choice_vars_IB2074,51696 -choice_vars_IB([(N,S,H,_B)|T],CH,LogSize0,LogSize1,R0,R1):-choice_vars_IB2074,51696 -generate_goal_DB(N,N,_O,GL,GL):-!.generate_goal_DB2095,52157 -generate_goal_DB(N,N,_O,GL,GL):-!.generate_goal_DB2095,52157 -generate_goal_DB(N,N,_O,GL,GL):-!.generate_goal_DB2095,52157 -generate_goal_DB(N0,N,O,G0,G1):-generate_goal_DB2097,52193 -generate_goal_DB(N0,N,O,G0,G1):-generate_goal_DB2097,52193 -generate_goal_DB(N0,N,O,G0,G1):-generate_goal_DB2097,52193 -random_restarts(1,Model,SS,CLL,Model,SS,CLL,_DB):-!.random_restarts2103,52314 -random_restarts(1,Model,SS,CLL,Model,SS,CLL,_DB):-!.random_restarts2103,52314 -random_restarts(1,Model,SS,CLL,Model,SS,CLL,_DB):-!.random_restarts2103,52314 -random_restarts(N,Model0,SS0,CLL0,Model1,SS1,CLL1,DB):-random_restarts2105,52368 -random_restarts(N,Model0,SS0,CLL0,Model1,SS1,CLL1,DB):-random_restarts2105,52368 -random_restarts(N,Model0,SS0,CLL0,Model1,SS1,CLL1,DB):-random_restarts2105,52368 -randomize([],[]):-!.randomize2128,52872 -randomize([],[]):-!.randomize2128,52872 -randomize([],[]):-!.randomize2128,52872 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-!,randomize2130,52894 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-!,randomize2130,52894 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-!,randomize2130,52894 -randomize([H|T],[H|T1]):-randomize2136,53051 -randomize([H|T],[H|T1]):-randomize2136,53051 -randomize([H|T],[H|T1]):-randomize2136,53051 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head2140,53098 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head2140,53098 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head2140,53098 -randomize_head(_Int,[H:_],P,[H:PN]):-!,randomize_head2148,53221 -randomize_head(_Int,[H:_],P,[H:PN]):-!,randomize_head2148,53221 -randomize_head(_Int,[H:_],P,[H:PN]):-!,randomize_head2148,53221 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head2151,53277 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head2151,53277 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head2151,53277 -assert_model([]):-!.assert_model2160,53449 -assert_model([]):-!.assert_model2160,53449 -assert_model([]):-!.assert_model2160,53449 -assert_model([def_rule(N,S,H,BL)|T]):-assert_model2162,53471 -assert_model([def_rule(N,S,H,BL)|T]):-assert_model2162,53471 -assert_model([def_rule(N,S,H,BL)|T]):-assert_model2162,53471 -assert_model([rule(N,V,NH,HL,BL,_LogF)|T]):-assert_model2167,53599 -assert_model([rule(N,V,NH,HL,BL,_LogF)|T]):-assert_model2167,53599 -assert_model([rule(N,V,NH,HL,BL,_LogF)|T]):-assert_model2167,53599 -retract_model:-!,retract_model2174,53780 -get_ouptut_atoms(O):-get_ouptut_atoms2180,53942 -get_ouptut_atoms(O):-get_ouptut_atoms2180,53942 -get_ouptut_atoms(O):-get_ouptut_atoms2180,53942 -generate_goal([],_H,G,G):-!.generate_goal2186,54105 -generate_goal([],_H,G,G):-!.generate_goal2186,54105 -generate_goal([],_H,G,G):-!.generate_goal2186,54105 -generate_goal([P/A|T],H,G0,G1):-generate_goal2188,54135 -generate_goal([P/A|T],H,G0,G1):-generate_goal2188,54135 -generate_goal([P/A|T],H,G0,G1):-generate_goal2188,54135 -generate_goal1([],_H,G,G):-!.generate_goal12198,54373 -generate_goal1([],_H,G,G):-!.generate_goal12198,54373 -generate_goal1([],_H,G,G):-!.generate_goal12198,54373 -generate_goal1([P/A|T],H,G0,G1):-generate_goal12200,54404 -generate_goal1([P/A|T],H,G0,G1):-generate_goal12200,54404 -generate_goal1([P/A|T],H,G0,G1):-generate_goal12200,54404 -sum(_NS,[],[],[]):-!. sum2212,54645 -sum(_NS,[],[],[]):-!. sum2212,54645 -sum(_NS,[],[],[]):-!. sum2212,54645 -sum(NS,[H0|T0],[H1|T1],[H2|T2]):-sum2214,54670 -sum(NS,[H0|T0],[H1|T1],[H2|T2]):-sum2214,54670 -sum(NS,[H0|T0],[H1|T1],[H2|T2]):-sum2214,54670 -times(_NS,[],[]):-!. times2218,54747 -times(_NS,[],[]):-!. times2218,54747 -times(_NS,[],[]):-!. times2218,54747 -times(NS,[H0|T0],[H1|T1]):-times2220,54771 -times(NS,[H0|T0],[H1|T1]):-times2220,54771 -times(NS,[H0|T0],[H1|T1]):-times2220,54771 -divide(_NS,[],[]):-!. divide2224,54836 -divide(_NS,[],[]):-!. divide2224,54836 -divide(_NS,[],[]):-!. divide2224,54836 -divide(NS,[H0|T0],[H1|T1]):-divide2226,54861 -divide(NS,[H0|T0],[H1|T1]):-divide2226,54861 -divide(NS,[H0|T0],[H1|T1]):-divide2226,54861 -set(Parameter,Value):-set2233,55018 -set(Parameter,Value):-set2233,55018 -set(Parameter,Value):-set2233,55018 -generate_file_names(File,FileKB,FileOut,FileL,FileLPAD,FileBG):-generate_file_names2237,55111 -generate_file_names(File,FileKB,FileOut,FileL,FileLPAD,FileBG):-generate_file_names2237,55111 -generate_file_names(File,FileKB,FileOut,FileL,FileLPAD,FileBG):-generate_file_names2237,55111 -generate_file_name(File,Ext,FileExt):-generate_file_name2244,55395 -generate_file_name(File,Ext,FileExt):-generate_file_name2244,55395 -generate_file_name(File,Ext,FileExt):-generate_file_name2244,55395 -load_initial_model(File,Model):-load_initial_model2249,55535 -load_initial_model(File,Model):-load_initial_model2249,55535 -load_initial_model(File,Model):-load_initial_model2249,55535 -process_clauses([(end_of_file,[])],N,N,Model,Model).process_clauses2255,55660 -process_clauses([(end_of_file,[])],N,N,Model,Model).process_clauses2255,55660 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V,NH,HL,BL,0)|Model1]):-process_clauses2257,55714 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V,NH,HL,BL,0)|Model1]):-process_clauses2257,55714 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V,NH,HL,BL,0)|Model1]):-process_clauses2257,55714 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V,NH,HL,BL,0)|Model1]):-process_clauses2269,56017 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V,NH,HL,BL,0)|Model1]):-process_clauses2269,56017 -process_clauses([((H:-B),V)|T],N,N2,Model0,[rule(N,V,NH,HL,BL,0)|Model1]):-process_clauses2269,56017 -process_clauses([((H:-B),V)|T],N,N2,Model0,[def_rule(N,V,H1,BL)|Model1]):-!,process_clauses2281,56323 -process_clauses([((H:-B),V)|T],N,N2,Model0,[def_rule(N,V,H1,BL)|Model1]):-!,process_clauses2281,56323 -process_clauses([((H:-B),V)|T],N,N2,Model0,[def_rule(N,V,H1,BL)|Model1]):-!,process_clauses2281,56323 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V,NH,HL,[],0)|Model1]):-process_clauses2288,56545 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V,NH,HL,[],0)|Model1]):-process_clauses2288,56545 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V,NH,HL,[],0)|Model1]):-process_clauses2288,56545 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V,NH,HL,[],0)|Model1]):-process_clauses2298,56798 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V,NH,HL,[],0)|Model1]):-process_clauses2298,56798 -process_clauses([(H,V)|T],N,N2,Model0,[rule(N,V,NH,HL,[],0)|Model1]):-process_clauses2298,56798 -process_clauses([(H,V)|T],N,N2,Model0,[def_rule(N,V,H1,[])|Model1]):-process_clauses2308,57053 -process_clauses([(H,V)|T],N,N2,Model0,[def_rule(N,V,H1,[])|Model1]):-process_clauses2308,57053 -process_clauses([(H,V)|T],N,N2,Model0,[def_rule(N,V,H1,[])|Model1]):-process_clauses2308,57053 -process_head([H:P|T],NHL,VI):-!,process_head2317,57367 -process_head([H:P|T],NHL,VI):-!,process_head2317,57367 -process_head([H:P|T],NHL,VI):-!,process_head2317,57367 -process_head(HL,NHL,VI):-process_head2320,57444 -process_head(HL,NHL,VI):-process_head2320,57444 -process_head(HL,NHL,VI):-process_head2320,57444 -process_head_random([],P,['':PNull1],_VI):-process_head_random2323,57511 -process_head_random([],P,['':PNull1],_VI):-process_head_random2323,57511 -process_head_random([],P,['':PNull1],_VI):-process_head_random2323,57511 -process_head_random([H|T],P,[H1:PH1|NT],VI):-process_head_random2331,57634 -process_head_random([H|T],P,[H1:PH1|NT],VI):-process_head_random2331,57634 -process_head_random([H|T],P,[H1:PH1|NT],VI):-process_head_random2331,57634 -process_head_prob([H:PH],P,[H1:PH1],VI):-process_head_prob2339,57806 -process_head_prob([H:PH],P,[H1:PH1],VI):-process_head_prob2339,57806 -process_head_prob([H:PH],P,[H1:PH1],VI):-process_head_prob2339,57806 -process_head_prob([H:PH],P,[H1:PH1,'':PNull],VI):-process_head_prob2345,57930 -process_head_prob([H:PH],P,[H1:PH1,'':PNull],VI):-process_head_prob2345,57930 -process_head_prob([H:PH],P,[H1:PH1,'':PNull],VI):-process_head_prob2345,57930 -process_head_prob([H:PH|T],P,[H1:PH1|NT],VI):-process_head_prob2350,58048 -process_head_prob([H:PH|T],P,[H1:PH1|NT],VI):-process_head_prob2350,58048 -process_head_prob([H:PH|T],P,[H1:PH1|NT],VI):-process_head_prob2350,58048 -add_int_atom([],[],_VI).add_int_atom2357,58187 -add_int_atom([],[],_VI).add_int_atom2357,58187 -add_int_atom([H|T],[H|T1],VI):-add_int_atom2359,58213 -add_int_atom([H|T],[H|T1],VI):-add_int_atom2359,58213 -add_int_atom([H|T],[H|T1],VI):-add_int_atom2359,58213 -add_int_atom([\+ H|T],[\+ H1|T1],VI):-!,add_int_atom2363,58300 -add_int_atom([\+ H|T],[\+ H1|T1],VI):-!,add_int_atom2363,58300 -add_int_atom([\+ H|T],[\+ H1|T1],VI):-!,add_int_atom2363,58300 -add_int_atom([H|T],[H1|T1],VI):-add_int_atom2368,58403 -add_int_atom([H|T],[H1|T1],VI):-add_int_atom2368,58403 -add_int_atom([H|T],[H1|T1],VI):-add_int_atom2368,58403 -read_clauses1(S,Clauses):-read_clauses12374,58550 -read_clauses1(S,Clauses):-read_clauses12374,58550 -read_clauses1(S,Clauses):-read_clauses12374,58550 -read_clauses_ground_body1(S,[(Cl,V)|Out]):-read_clauses_ground_body12378,58621 -read_clauses_ground_body1(S,[(Cl,V)|Out]):-read_clauses_ground_body12378,58621 -read_clauses_ground_body1(S,[(Cl,V)|Out]):-read_clauses_ground_body12378,58621 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules2387,58783 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules2387,58783 -assert_rules([],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules2387,58783 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules2389,58829 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules2389,58829 -assert_rules(['':_P],_Pos,_HL,_BL,_Nh,_N,_V1):-!.assert_rules2389,58829 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules2391,58880 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules2391,58880 -assert_rules([H:P|T],Pos,HL,BL,NH,N,V1):-assert_rules2391,58880 -listN(N,N,[]):-!.listN2397,59021 -listN(N,N,[]):-!.listN2397,59021 -listN(N,N,[]):-!.listN2397,59021 -listN(NIn,N,[NIn|T]):-listN2399,59040 -listN(NIn,N,[NIn|T]):-listN2399,59040 -listN(NIn,N,[NIn|T]):-listN2399,59040 -list0(N,N,[]):-!.list02403,59096 -list0(N,N,[]):-!.list02403,59096 -list0(N,N,[]):-!.list02403,59096 -list0(NIn,N,[0|T]):-list02405,59115 -list0(NIn,N,[0|T]):-list02405,59115 -list0(NIn,N,[0|T]):-list02405,59115 -list1(N,N,[]):-!.list12409,59169 -list1(N,N,[]):-!.list12409,59169 -list1(N,N,[]):-!.list12409,59169 -list1(NIn,N,[1|T]):-list12411,59188 -list1(NIn,N,[1|T]):-list12411,59188 -list1(NIn,N,[1|T]):-list12411,59188 -load_models(File):-load_models2418,59315 -load_models(File):-load_models2418,59315 -load_models(File):-load_models2418,59315 -read_models(Stream,N,NEx):-read_models2425,59460 -read_models(Stream,N,NEx):-read_models2425,59460 -read_models(Stream,N,NEx):-read_models2425,59460 -read_models(_S,N,N).read_models2432,59647 -read_models(_S,N,N).read_models2432,59647 -read_all_atoms(Stream,Name):-read_all_atoms2434,59669 -read_all_atoms(Stream,Name):-read_all_atoms2434,59669 -read_all_atoms(Stream,Name):-read_all_atoms2434,59669 -list2or([],true):-!.list2or2453,60039 -list2or([],true):-!.list2or2453,60039 -list2or([],true):-!.list2or2453,60039 -list2or([X],X):-list2or2455,60061 -list2or([X],X):-list2or2455,60061 -list2or([X],X):-list2or2455,60061 -list2or([H|T],(H ; Ta)):-!,list2or2458,60096 -list2or([H|T],(H ; Ta)):-!,list2or2458,60096 -list2or([H|T],(H ; Ta)):-!,list2or2458,60096 -list2and([],true):-!.list2and2461,60144 -list2and([],true):-!.list2and2461,60144 -list2and([],true):-!.list2and2461,60144 -list2and([X],X):-list2and2463,60167 -list2and([X],X):-list2and2463,60167 -list2and([X],X):-list2and2463,60167 -list2and([H|T],(H,Ta)):-!,list2and2466,60202 -list2and([H|T],(H,Ta)):-!,list2and2466,60202 -list2and([H|T],(H,Ta)):-!,list2and2466,60202 -lgamma1(A,B):-lgamma12469,60254 -lgamma1(A,B):-lgamma12469,60254 -lgamma1(A,B):-lgamma12469,60254 -write_model([],_Stream):-!.write_model2475,60316 -write_model([],_Stream):-!.write_model2475,60316 -write_model([],_Stream):-!.write_model2475,60316 -write_model([def_rule(_N,_S,H,[])|Rest],Stream):-!,write_model2477,60345 -write_model([def_rule(_N,_S,H,[])|Rest],Stream):-!,write_model2477,60345 -write_model([def_rule(_N,_S,H,[])|Rest],Stream):-!,write_model2477,60345 -write_model([def_rule(_N,_S,H,BL)|Rest],Stream):-!,write_model2485,60536 -write_model([def_rule(_N,_S,H,BL)|Rest],Stream):-!,write_model2485,60536 -write_model([def_rule(_N,_S,H,BL)|Rest],Stream):-!,write_model2485,60536 -write_model([rule(_N,_V,_NH,HL,BL,_LogF)|Rest],Stream):-write_model2494,60801 -write_model([rule(_N,_V,_NH,HL,BL,_LogF)|Rest],Stream):-write_model2494,60801 -write_model([rule(_N,_V,_NH,HL,BL,_LogF)|Rest],Stream):-write_model2494,60801 -write_disj_clause(S,(H:-[])):-!,write_disj_clause2502,61027 -write_disj_clause(S,(H:-[])):-!,write_disj_clause2502,61027 -write_disj_clause(S,(H:-[])):-!,write_disj_clause2502,61027 -write_disj_clause(S,(H:-B)):-write_disj_clause2505,61084 -write_disj_clause(S,(H:-B)):-write_disj_clause2505,61084 -write_disj_clause(S,(H:-B)):-write_disj_clause2505,61084 -write_head(S,[A:1.0|_Rest]):-!,write_head2511,61182 -write_head(S,[A:1.0|_Rest]):-!,write_head2511,61182 -write_head(S,[A:1.0|_Rest]):-!,write_head2511,61182 -write_head(S,[A:P,'':_P]):-!,write_head2515,61267 -write_head(S,[A:P,'':_P]):-!,write_head2515,61267 -write_head(S,[A:P,'':_P]):-!,write_head2515,61267 -write_head(S,[A:P]):-!,write_head2519,61353 -write_head(S,[A:P]):-!,write_head2519,61353 -write_head(S,[A:P]):-!,write_head2519,61353 -write_head(S,[A:P|Rest]):-write_head2523,61433 -write_head(S,[A:P|Rest]):-write_head2523,61433 -write_head(S,[A:P|Rest]):-write_head2523,61433 -write_body(S,[\+ A]):-write_body2528,61543 -write_body(S,[\+ A]):-write_body2528,61543 -write_body(S,[\+ A]):-write_body2528,61543 -write_body(S,[\+ A]):-!,write_body2532,61626 -write_body(S,[\+ A]):-!,write_body2532,61626 -write_body(S,[\+ A]):-!,write_body2532,61626 -write_body(S,[A]):-write_body2536,61709 -write_body(S,[A]):-write_body2536,61709 -write_body(S,[A]):-write_body2536,61709 -write_body(S,[A]):-!,write_body2540,61785 -write_body(S,[A]):-!,write_body2540,61785 -write_body(S,[A]):-!,write_body2540,61785 -write_body(S,[\+ A|T]):-write_body2544,61864 -write_body(S,[\+ A|T]):-write_body2544,61864 -write_body(S,[\+ A|T]):-write_body2544,61864 -write_body(S,[\+ A|T]):-!,write_body2549,61973 -write_body(S,[\+ A|T]):-!,write_body2549,61973 -write_body(S,[\+ A|T]):-!,write_body2549,61973 -write_body(S,[A|T]):-write_body2554,62081 -write_body(S,[A|T]):-write_body2554,62081 -write_body(S,[A|T]):-write_body2554,62081 -write_body(S,[A|T]):-write_body2559,62183 -write_body(S,[A|T]):-write_body2559,62183 -write_body(S,[A|T]):-write_body2559,62183 -remove_int_atom(A,A1):-remove_int_atom2565,62287 -remove_int_atom(A,A1):-remove_int_atom2565,62287 -remove_int_atom(A,A1):-remove_int_atom2565,62287 -build_ground_lpad([],[]):-!.build_ground_lpad2569,62341 -build_ground_lpad([],[]):-!.build_ground_lpad2569,62341 -build_ground_lpad([],[]):-!.build_ground_lpad2569,62341 -build_ground_lpad([d(R,S)|T],[d(R,S,Head,Body)|T1]):-!,build_ground_lpad2571,62371 -build_ground_lpad([d(R,S)|T],[d(R,S,Head,Body)|T1]):-!,build_ground_lpad2571,62371 -build_ground_lpad([d(R,S)|T],[d(R,S,Head,Body)|T1]):-!,build_ground_lpad2571,62371 -build_ground_lpad([(R,S)|T],[(R,S,Head,Body)|T1]):-build_ground_lpad2576,62507 -build_ground_lpad([(R,S)|T],[(R,S,Head,Body)|T1]):-build_ground_lpad2576,62507 -build_ground_lpad([(R,S)|T],[(R,S,Head,Body)|T1]):-build_ground_lpad2576,62507 -remove_head([],[]).remove_head2582,62640 -remove_head([],[]).remove_head2582,62640 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head2584,62661 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head2584,62661 -remove_head([(_N,R,S)|T],[(R,S)|T1]):-remove_head2584,62661 -generate_nth_pos(I, I, [Head|_], Head):-!.generate_nth_pos2588,62725 -generate_nth_pos(I, I, [Head|_], Head):-!.generate_nth_pos2588,62725 -generate_nth_pos(I, I, [Head|_], Head):-!.generate_nth_pos2588,62725 -generate_nth_pos(I, IN, [_|List], El) :-generate_nth_pos2589,62768 -generate_nth_pos(I, IN, [_|List], El) :-generate_nth_pos2589,62768 -generate_nth_pos(I, IN, [_|List], El) :-generate_nth_pos2589,62768 -my_get_value(K,V):-my_get_value2593,62861 -my_get_value(K,V):-my_get_value2593,62861 -my_get_value(K,V):-my_get_value2593,62861 -my_set_value(K,V):-my_set_value2596,62904 -my_set_value(K,V):-my_set_value2596,62904 -my_set_value(K,V):-my_set_value2596,62904 -delete_matching([],_El,[]).delete_matching2600,62959 -delete_matching([],_El,[]).delete_matching2600,62959 -delete_matching([El|T],El,T1):-!,delete_matching2602,62988 -delete_matching([El|T],El,T1):-!,delete_matching2602,62988 -delete_matching([El|T],El,T1):-!,delete_matching2602,62988 -delete_matching([H|T],El,[H|T1]):-delete_matching2605,63057 -delete_matching([H|T],El,[H|T1]):-delete_matching2605,63057 -delete_matching([H|T],El,[H|T1]):-delete_matching2605,63057 - -packages/cplint/rib/sp1.l,0 - -packages/cplint/rib/sp1npn.l,0 - -packages/cplint/semcpl.pl,17400 -setting(epsilon_parsing,0.00001).setting17,276 -setting(epsilon_parsing,0.00001).setting17,276 -setting(ground_body,false). setting18,310 -setting(ground_body,false). setting18,310 -sc(G,E,P):-sc27,672 -sc(G,E,P):-sc27,672 -sc(G,E,P):-sc27,672 -s(GoalsList,Prob):-s39,865 -s(GoalsList,Prob):-s39,865 -s(GoalsList,Prob):-s39,865 -sum_prob([],_GL,P,P):-!.sum_prob51,1311 -sum_prob([],_GL,P,P):-!.sum_prob51,1311 -sum_prob([],_GL,P,P):-!.sum_prob51,1311 -sum_prob([(State,Prob)|T],GL,P0,P):-sum_prob53,1337 -sum_prob([(State,Prob)|T],GL,P0,P):-sum_prob53,1337 -sum_prob([(State,Prob)|T],GL,P0,P):-sum_prob53,1337 -build:-build66,1609 -build(Context):-build72,1711 -build(Context):-build72,1711 -build(Context):-build72,1711 -build(Parent,State,Prob,Clauses,HB):-build90,2429 -build(Parent,State,Prob,Clauses,HB):-build90,2429 -build(Parent,State,Prob,Clauses,HB):-build90,2429 -choose_clause([],_True,_Unk,[],empty):-!.choose_clause111,3291 -choose_clause([],_True,_Unk,[],empty):-!.choose_clause111,3291 -choose_clause([],_True,_Unk,[],empty):-!.choose_clause111,3291 -choose_clause([r(Head,Body)|T],True,Unk,RemCl,Clause):-choose_clause113,3334 -choose_clause([r(Head,Body)|T],True,Unk,RemCl,Clause):-choose_clause113,3334 -choose_clause([r(Head,Body)|T],True,Unk,RemCl,Clause):-choose_clause113,3334 -remove_false([],_True,_Unk,[]):-!.remove_false127,3644 -remove_false([],_True,_Unk,[]):-!.remove_false127,3644 -remove_false([],_True,_Unk,[]):-!.remove_false127,3644 -remove_false([r(Head,Body)|T],True,Unk,RemCl):-remove_false129,3680 -remove_false([r(Head,Body)|T],True,Unk,RemCl):-remove_false129,3680 -remove_false([r(Head,Body)|T],True,Unk,RemCl):-remove_false129,3680 -body_true([],_,_,_):-!.body_true139,3875 -body_true([],_,_,_):-!.body_true139,3875 -body_true([],_,_,_):-!.body_true139,3875 -body_true([\+ H|T],True,False,Unk):-body_true141,3900 -body_true([\+ H|T],True,False,Unk):-body_true141,3900 -body_true([\+ H|T],True,False,Unk):-body_true141,3900 -body_true([H|T],True,False,Unk):-body_true150,4068 -body_true([H|T],True,False,Unk):-body_true150,4068 -body_true([H|T],True,False,Unk):-body_true150,4068 -body_true([H|T],True,False,Unk):-body_true155,4165 -body_true([H|T],True,False,Unk):-body_true155,4165 -body_true([H|T],True,False,Unk):-body_true155,4165 -body_true([],_):-!.body_true160,4253 -body_true([],_):-!.body_true160,4253 -body_true([],_):-!.body_true160,4253 -body_true([\+ H|T],True):-body_true162,4274 -body_true([\+ H|T],True):-body_true162,4274 -body_true([\+ H|T],True):-body_true162,4274 -body_true([H|T],True):-body_true166,4344 -body_true([H|T],True):-body_true166,4344 -body_true([H|T],True):-body_true166,4344 -body_undef([\+ H|T],True,False,Unk):-body_undef171,4409 -body_undef([\+ H|T],True,False,Unk):-body_undef171,4409 -body_undef([\+ H|T],True,False,Unk):-body_undef171,4409 -body_undef([\+ H|T],True,False,Unk):-body_undef175,4499 -body_undef([\+ H|T],True,False,Unk):-body_undef175,4499 -body_undef([\+ H|T],True,False,Unk):-body_undef175,4499 -body_undef([\+ H|T],True,False,Unk):-body_undef179,4608 -body_undef([\+ H|T],True,False,Unk):-body_undef179,4608 -body_undef([\+ H|T],True,False,Unk):-body_undef179,4608 -body_undef([H|T],True,False,Unk):-body_undef183,4699 -body_undef([H|T],True,False,Unk):-body_undef183,4699 -body_undef([H|T],True,False,Unk):-body_undef183,4699 -body_undef([H|T],True,False,Unk):-body_undef187,4785 -body_undef([H|T],True,False,Unk):-body_undef187,4785 -body_undef([H|T],True,False,Unk):-body_undef187,4785 -compute_three_valued(State,Clauses,False,Unknowns0,Unknowns):-compute_three_valued194,5005 -compute_three_valued(State,Clauses,False,Unknowns0,Unknowns):-compute_three_valued194,5005 -compute_three_valued(State,Clauses,False,Unknowns0,Unknowns):-compute_three_valued194,5005 -choose_clause_three_val([],_True,_False,_Unk,_,empty):-!.choose_clause_three_val209,5697 -choose_clause_three_val([],_True,_False,_Unk,_,empty):-!.choose_clause_three_val209,5697 -choose_clause_three_val([],_True,_False,_Unk,_,empty):-!.choose_clause_three_val209,5697 -choose_clause_three_val([r(Head,Body)|T],True,False,Unk,RemCl,Clause):-choose_clause_three_val211,5756 -choose_clause_three_val([r(Head,Body)|T],True,False,Unk,RemCl,Clause):-choose_clause_three_val211,5756 -choose_clause_three_val([r(Head,Body)|T],True,False,Unk,RemCl,Clause):-choose_clause_three_val211,5756 -body_false([\+ H|_T],True,_False,_Unk):-body_false220,5997 -body_false([\+ H|_T],True,_False,_Unk):-body_false220,5997 -body_false([\+ H|_T],True,_False,_Unk):-body_false220,5997 -body_false([\+ H|T],True,False,Unk):-body_false228,6119 -body_false([\+ H|T],True,False,Unk):-body_false228,6119 -body_false([\+ H|T],True,False,Unk):-body_false228,6119 -body_false([\+ _H|T],True,False,Unk):-!,body_false236,6228 -body_false([\+ _H|T],True,False,Unk):-!,body_false236,6228 -body_false([\+ _H|T],True,False,Unk):-!,body_false236,6228 -body_false([H|T],True,False,Unk):-body_false239,6301 -body_false([H|T],True,False,Unk):-body_false239,6301 -body_false([H|T],True,False,Unk):-body_false239,6301 -body_false([H|_T],_True,_False,_Unk):-body_false244,6393 -body_false([H|_T],_True,_False,_Unk):-body_false244,6393 -body_false([H|_T],_True,_False,_Unk):-body_false244,6393 -body_false([H|T],True,False,Unk):-body_false248,6461 -body_false([H|T],True,False,Unk):-body_false248,6461 -body_false([H|T],True,False,Unk):-body_false248,6461 -body_false_list([],_,_,_,_,_):-!.body_false_list253,6588 -body_false_list([],_,_,_,_,_):-!.body_false_list253,6588 -body_false_list([],_,_,_,_,_):-!.body_false_list253,6588 -body_false_list([H|T],A,Body,True,False,Unk):-body_false_list255,6623 -body_false_list([H|T],A,Body,True,False,Unk):-body_false_list255,6623 -body_false_list([H|T],A,Body,True,False,Unk):-body_false_list255,6623 -new_int([],False,False,Unk,Unk):-!.new_int266,6946 -new_int([],False,False,Unk,Unk):-!.new_int266,6946 -new_int([],False,False,Unk,Unk):-!.new_int266,6946 -new_int([H:_P|T],False0,False,Unk0,Unk):-new_int268,6983 -new_int([H:_P|T],False0,False,Unk0,Unk):-new_int268,6983 -new_int([H:_P|T],False0,False,Unk0,Unk):-new_int268,6983 -new_states(_,[],_,_,_,_):-!.new_states285,7444 -new_states(_,[],_,_,_,_):-!.new_states285,7444 -new_states(_,[],_,_,_,_):-!.new_states285,7444 -new_states(Node,[H:P|T],State,Prob,Clauses,HB):-new_states288,7476 -new_states(Node,[H:P|T],State,Prob,Clauses,HB):-new_states288,7476 -new_states(Node,[H:P|T],State,Prob,Clauses,HB):-new_states288,7476 -get_new_atom(Atom):-get_new_atom301,7766 -get_new_atom(Atom):-get_new_atom301,7766 -get_new_atom(Atom):-get_new_atom301,7766 -print:-print309,7958 -print_children(Parent,Tab):-print_children313,8007 -print_children(Parent,Tab):-print_children313,8007 -print_children(Parent,Tab):-print_children313,8007 -print_list([],_Tab):-!.print_list317,8134 -print_list([],_Tab):-!.print_list317,8134 -print_list([],_Tab):-!.print_list317,8134 -print_list([(Node,State0,Clause,Prob)|T],Tab):-print_list319,8159 -print_list([(Node,State0,Clause,Prob)|T],Tab):-print_list319,8159 -print_list([(Node,State0,Clause,Prob)|T],Tab):-print_list319,8159 -p(File):-p334,8480 -p(File):-p334,8480 -p(File):-p334,8480 -parse(File):-parse338,8515 -parse(File):-parse338,8515 -parse(File):-parse338,8515 -build_herbrand_base(HB):-build_herbrand_base358,8984 -build_herbrand_base(HB):-build_herbrand_base358,8984 -build_herbrand_base(HB):-build_herbrand_base358,8984 -inst_list([],HB,HB):-!.inst_list365,9151 -inst_list([],HB,HB):-!.inst_list365,9151 -inst_list([],HB,HB):-!.inst_list365,9151 -inst_list([H|T],HB0,HB):-inst_list367,9176 -inst_list([H|T],HB0,HB):-inst_list367,9176 -inst_list([H|T],HB0,HB):-inst_list367,9176 -instantiate([],C,C).instantiate377,9423 -instantiate([],C,C).instantiate377,9423 -instantiate([r(_V,H,B)|T],CIn,COut):-instantiate379,9445 -instantiate([r(_V,H,B)|T],CIn,COut):-instantiate379,9445 -instantiate([r(_V,H,B)|T],CIn,COut):-instantiate379,9445 -instantiate_clause_modes(H,B,BOut):-instantiate_clause_modes385,9587 -instantiate_clause_modes(H,B,BOut):-instantiate_clause_modes385,9587 -instantiate_clause_modes(H,B,BOut):-instantiate_clause_modes385,9587 -instantiate_head_modes([]):-!.instantiate_head_modes390,9687 -instantiate_head_modes([]):-!.instantiate_head_modes390,9687 -instantiate_head_modes([]):-!.instantiate_head_modes390,9687 -instantiate_head_modes([H:_P|T]):-instantiate_head_modes392,9719 -instantiate_head_modes([H:_P|T]):-instantiate_head_modes392,9719 -instantiate_head_modes([H:_P|T]):-instantiate_head_modes392,9719 -instantiate_body_modes(BL,BL):-instantiate_body_modes397,9812 -instantiate_body_modes(BL,BL):-instantiate_body_modes397,9812 -instantiate_body_modes(BL,BL):-instantiate_body_modes397,9812 -instantiate_body_modes(BL0,BL):-instantiate_body_modes400,9877 -instantiate_body_modes(BL0,BL):-instantiate_body_modes400,9877 -instantiate_body_modes(BL0,BL):-instantiate_body_modes400,9877 -instantiate_list_modes([],[]).instantiate_list_modes404,9945 -instantiate_list_modes([],[]).instantiate_list_modes404,9945 -instantiate_list_modes([H|T0],T):-instantiate_list_modes406,9977 -instantiate_list_modes([H|T0],T):-instantiate_list_modes406,9977 -instantiate_list_modes([H|T0],T):-instantiate_list_modes406,9977 -instantiate_list_modes([\+ H|T0],T):-instantiate_list_modes411,10069 -instantiate_list_modes([\+ H|T0],T):-instantiate_list_modes411,10069 -instantiate_list_modes([\+ H|T0],T):-instantiate_list_modes411,10069 -instantiate_list_modes([\+ H|T0],[\+ H|T]):-!,instantiate_list_modes416,10167 -instantiate_list_modes([\+ H|T0],[\+ H|T]):-!,instantiate_list_modes416,10167 -instantiate_list_modes([\+ H|T0],[\+ H|T]):-!,instantiate_list_modes416,10167 -instantiate_list_modes([H|T0],[H|T]):-instantiate_list_modes420,10274 -instantiate_list_modes([H|T0],[H|T]):-instantiate_list_modes420,10274 -instantiate_list_modes([H|T0],[H|T]):-instantiate_list_modes420,10274 -instantiate_atom_modes(''):-!.instantiate_atom_modes425,10374 -instantiate_atom_modes(''):-!.instantiate_atom_modes425,10374 -instantiate_atom_modes(''):-!.instantiate_atom_modes425,10374 -instantiate_atom_modes(A):-instantiate_atom_modes427,10406 -instantiate_atom_modes(A):-instantiate_atom_modes427,10406 -instantiate_atom_modes(A):-instantiate_atom_modes427,10406 -instantiate_args_modes([],[]):-!.instantiate_args_modes436,10559 -instantiate_args_modes([],[]):-!.instantiate_args_modes436,10559 -instantiate_args_modes([],[]):-!.instantiate_args_modes436,10559 -instantiate_args_modes([H|T],[TH|TT]):-instantiate_args_modes438,10594 -instantiate_args_modes([H|T],[TH|TT]):-instantiate_args_modes438,10594 -instantiate_args_modes([H|T],[TH|TT]):-instantiate_args_modes438,10594 -process_clauses([(end_of_file,[])],[]).process_clauses453,10985 -process_clauses([(end_of_file,[])],[]).process_clauses453,10985 -process_clauses([((H:-B),V)|T],[r(V,HL,BL)|T1]):-process_clauses455,11026 -process_clauses([((H:-B),V)|T],[r(V,HL,BL)|T1]):-process_clauses455,11026 -process_clauses([((H:-B),V)|T],[r(V,HL,BL)|T1]):-process_clauses455,11026 -process_clauses([((H:-B),V)|T],[r(V,HL,BL)|T1]):-process_clauses462,11172 -process_clauses([((H:-B),V)|T],[r(V,HL,BL)|T1]):-process_clauses462,11172 -process_clauses([((H:-B),V)|T],[r(V,HL,BL)|T1]):-process_clauses462,11172 -process_clauses([((H:-B),V)|T],[r(V,[H:1],BL)|T1]):-!,process_clauses469,11319 -process_clauses([((H:-B),V)|T],[r(V,[H:1],BL)|T1]):-!,process_clauses469,11319 -process_clauses([((H:-B),V)|T],[r(V,[H:1],BL)|T1]):-!,process_clauses469,11319 -process_clauses([(H,V)|T],[r(V,HL,[])|T1]):-process_clauses473,11416 -process_clauses([(H,V)|T],[r(V,HL,[])|T1]):-process_clauses473,11416 -process_clauses([(H,V)|T],[r(V,HL,[])|T1]):-process_clauses473,11416 -process_clauses([(H,V)|T],[r(V,HL,[])|T1]):-process_clauses479,11540 -process_clauses([(H,V)|T],[r(V,HL,[])|T1]):-process_clauses479,11540 -process_clauses([(H,V)|T],[r(V,HL,[])|T1]):-process_clauses479,11540 -process_clauses([(H,V)|T],[r(V,[H:1],[])|T1]):-process_clauses485,11665 -process_clauses([(H,V)|T],[r(V,[H:1],[])|T1]):-process_clauses485,11665 -process_clauses([(H,V)|T],[r(V,[H:1],[])|T1]):-process_clauses485,11665 -process_head([H:PH],P,[H:PH1|Null]):-process_head488,11738 -process_head([H:PH],P,[H:PH1|Null]):-process_head488,11738 -process_head([H:PH],P,[H:PH1|Null]):-process_head488,11738 -process_head([H:PH|T],P,[H:PH1|NT]):-process_head500,11923 -process_head([H:PH|T],P,[H:PH1|NT]):-process_head500,11923 -process_head([H:PH|T],P,[H:PH1|NT]):-process_head500,11923 -read_clauses(S,Clauses):-read_clauses508,12070 -read_clauses(S,Clauses):-read_clauses508,12070 -read_clauses(S,Clauses):-read_clauses508,12070 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body515,12209 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body515,12209 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body515,12209 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body524,12361 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body524,12361 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body524,12361 -extract_vars_cl(end_of_file,[]).extract_vars_cl536,12653 -extract_vars_cl(end_of_file,[]).extract_vars_cl536,12653 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl538,12687 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl538,12687 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl538,12687 -extract_vars(Var,V0,V):-extract_vars547,12801 -extract_vars(Var,V0,V):-extract_vars547,12801 -extract_vars(Var,V0,V):-extract_vars547,12801 -extract_vars(Term,V0,V):-extract_vars555,12898 -extract_vars(Term,V0,V):-extract_vars555,12898 -extract_vars(Term,V0,V):-extract_vars555,12898 -extract_vars_list([],V,V).extract_vars_list559,12975 -extract_vars_list([],V,V).extract_vars_list559,12975 -extract_vars_list([Term|T],V0,V):-extract_vars_list561,13003 -extract_vars_list([Term|T],V0,V):-extract_vars_list561,13003 -extract_vars_list([Term|T],V0,V):-extract_vars_list561,13003 -pair(_VN,[],[]).pair565,13095 -pair(_VN,[],[]).pair565,13095 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair567,13113 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair567,13113 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair567,13113 -list2or([X],X):-list2or571,13197 -list2or([X],X):-list2or571,13197 -list2or([X],X):-list2or571,13197 -list2or([H|T],(H ; Ta)):-!,list2or574,13230 -list2or([H|T],(H ; Ta)):-!,list2or574,13230 -list2or([H|T],(H ; Ta)):-!,list2or574,13230 -list2and([],true):-!.list2and578,13277 -list2and([],true):-!.list2and578,13277 -list2and([],true):-!.list2and578,13277 -list2and([X],X):-list2and580,13300 -list2and([X],X):-list2and580,13300 -list2and([X],X):-list2and580,13300 -list2and([H|T],(H,Ta)):-!,list2and583,13333 -list2and([H|T],(H,Ta)):-!,list2and583,13333 -list2and([H|T],(H,Ta)):-!,list2and583,13333 -builtin(_A is _B).builtin586,13379 -builtin(_A is _B).builtin586,13379 -builtin(_A > _B).builtin587,13398 -builtin(_A > _B).builtin587,13398 -builtin(_A < _B).builtin588,13416 -builtin(_A < _B).builtin588,13416 -builtin(_A >= _B).builtin589,13434 -builtin(_A >= _B).builtin589,13434 -builtin(_A =< _B).builtin590,13453 -builtin(_A =< _B).builtin590,13453 -builtin(_A =:= _B).builtin591,13472 -builtin(_A =:= _B).builtin591,13472 -builtin(_A =\= _B).builtin592,13492 -builtin(_A =\= _B).builtin592,13492 -builtin(true).builtin593,13512 -builtin(true).builtin593,13512 -builtin(false).builtin594,13527 -builtin(false).builtin594,13527 -builtin(_A = _B).builtin595,13543 -builtin(_A = _B).builtin595,13543 -builtin(_A==_B).builtin596,13561 -builtin(_A==_B).builtin596,13561 -builtin(_A\=_B).builtin597,13578 -builtin(_A\=_B).builtin597,13578 -builtin(_A\==_B).builtin598,13595 -builtin(_A\==_B).builtin598,13595 -bg(member(_El,_L)).bg600,13614 -bg(member(_El,_L)).bg600,13614 -bg(average(_L,_Av)).bg601,13634 -bg(average(_L,_Av)).bg601,13634 -bg(max_list(_L,_Max)).bg602,13655 -bg(max_list(_L,_Max)).bg602,13655 -bg(min_list(_L,_Max)).bg603,13678 -bg(min_list(_L,_Max)).bg603,13678 -average(L,Av):-average605,13702 -average(L,Av):-average605,13702 -average(L,Av):-average605,13702 -assert_all([]):-!.assert_all610,13765 -assert_all([]):-!.assert_all610,13765 -assert_all([]):-!.assert_all610,13765 -assert_all([(:- G)|T]):-!,assert_all612,13785 -assert_all([(:- G)|T]):-!,assert_all612,13785 -assert_all([(:- G)|T]):-!,assert_all612,13785 -assert_all([H|T]):-!,assert_all616,13840 -assert_all([H|T]):-!,assert_all616,13840 -assert_all([H|T]):-!,assert_all616,13840 -assert_all(C):-assert_all620,13895 -assert_all(C):-assert_all620,13895 -assert_all(C):-assert_all620,13895 -deleteall(L,[],L).deleteall623,13927 -deleteall(L,[],L).deleteall623,13927 -deleteall(L,[H|T],LOut):-deleteall625,13947 -deleteall(L,[H|T],LOut):-deleteall625,13947 -deleteall(L,[H|T],LOut):-deleteall625,13947 -member_eq(A,[H|_T]):-member_eq629,14016 -member_eq(A,[H|_T]):-member_eq629,14016 -member_eq(A,[H|_T]):-member_eq629,14016 -member_eq(A,[_H|T]):-member_eq632,14047 -member_eq(A,[_H|T]):-member_eq632,14047 -member_eq(A,[_H|T]):-member_eq632,14047 -set(Parameter,Value):-set636,14152 -set(Parameter,Value):-set636,14152 -set(Parameter,Value):-set636,14152 - -packages/cplint/semlpad.pl,16307 -:- dynamic new_number/1.dynamic13,321 -:- dynamic new_number/1.dynamic13,321 -setting(epsilon,0.00001).setting18,426 -setting(epsilon,0.00001).setting18,426 -setting(ground_body,false). setting20,481 -setting(ground_body,false). setting20,481 -setting(grounding,modes).setting27,802 -setting(grounding,modes).setting27,802 -setting(verbose,false).setting33,1013 -setting(verbose,false).setting33,1013 -new_number(0).new_number35,1038 -new_number(0).new_number35,1038 -sc(Goals,Evidence,Prob):-sc39,1125 -sc(Goals,Evidence,Prob):-sc39,1125 -sc(Goals,Evidence,Prob):-sc39,1125 -s(GoalsList,Prob):-s48,1334 -s(GoalsList,Prob):-s48,1334 -s(GoalsList,Prob):-s48,1334 -run_query([],_G,P,P).run_query53,1437 -run_query([],_G,P,P).run_query53,1437 -run_query([Prog|T],Goal,PIn,POut):-run_query55,1460 -run_query([Prog|T],Goal,PIn,POut):-run_query55,1460 -run_query([Prog|T],Goal,PIn,POut):-run_query55,1460 -run_query([_Prog|T],Goal,PIn,POut):-run_query62,1599 -run_query([_Prog|T],Goal,PIn,POut):-run_query62,1599 -run_query([_Prog|T],Goal,PIn,POut):-run_query62,1599 -convert_to_goal([Goal],Goal,_Pr):-!.convert_to_goal66,1668 -convert_to_goal([Goal],Goal,_Pr):-!.convert_to_goal66,1668 -convert_to_goal([Goal],Goal,_Pr):-!.convert_to_goal66,1668 -convert_to_goal(GoalsList,Head,Pr):-convert_to_goal68,1706 -convert_to_goal(GoalsList,Head,Pr):-convert_to_goal68,1706 -convert_to_goal(GoalsList,Head,Pr):-convert_to_goal68,1706 -get_new_atom(Atom):-get_new_atom79,1974 -get_new_atom(Atom):-get_new_atom79,1974 -get_new_atom(Atom):-get_new_atom79,1974 -assert_in_all_prog(_LC,_Prog,[]).assert_in_all_prog87,2111 -assert_in_all_prog(_LC,_Prog,[]).assert_in_all_prog87,2111 -assert_in_all_prog(LC,Prog,[PrH|PrT]):-assert_in_all_prog89,2146 -assert_in_all_prog(LC,Prog,[PrH|PrT]):-assert_in_all_prog89,2146 -assert_in_all_prog(LC,Prog,[PrH|PrT]):-assert_in_all_prog89,2146 -p(File):-p96,2333 -p(File):-p96,2333 -p(File):-p96,2333 -clean_db:-clean_db110,2643 -abolish_all([]).abolish_all123,2940 -abolish_all([]).abolish_all123,2940 -abolish_all([(P/A)|T]):-abolish_all125,2958 -abolish_all([(P/A)|T]):-abolish_all125,2958 -abolish_all([(P/A)|T]):-abolish_all125,2958 -create_programs(Clauses):-create_programs135,3312 -create_programs(Clauses):-create_programs135,3312 -create_programs(Clauses):-create_programs135,3312 -create_programs(_).create_programs154,3698 -create_programs(_).create_programs154,3698 -write_program(Name,[(prob(P):-true)]):-!,write_program156,3719 -write_program(Name,[(prob(P):-true)]):-!,write_program156,3719 -write_program(Name,[(prob(P):-true)]):-!,write_program156,3719 -write_program(Name,[(H:-B)|T]):-write_program161,3806 -write_program(Name,[(H:-B)|T]):-write_program161,3806 -write_program(Name,[(H:-B)|T]):-write_program161,3806 -elab_conj(_Name,true,true):-!.elab_conj171,4066 -elab_conj(_Name,true,true):-!.elab_conj171,4066 -elab_conj(_Name,true,true):-!.elab_conj171,4066 -elab_conj(Name,\+(B),\+(B1)):-!,elab_conj173,4098 -elab_conj(Name,\+(B),\+(B1)):-!,elab_conj173,4098 -elab_conj(Name,\+(B),\+(B1)):-!,elab_conj173,4098 -elab_conj(Name,(BL,Rest),(BL1,Rest1)):-!,elab_conj176,4157 -elab_conj(Name,(BL,Rest),(BL1,Rest1)):-!,elab_conj176,4157 -elab_conj(Name,(BL,Rest),(BL1,Rest1)):-!,elab_conj176,4157 -elab_conj(Name,bagof(V,EV^G,L),bagof(V,EV^GL,L)):-!,elab_conj180,4254 -elab_conj(Name,bagof(V,EV^G,L),bagof(V,EV^GL,L)):-!,elab_conj180,4254 -elab_conj(Name,bagof(V,EV^G,L),bagof(V,EV^GL,L)):-!,elab_conj180,4254 -elab_conj(Name,bagof(V,G,L),bagof(V,GL,L)):-!,elab_conj183,4331 -elab_conj(Name,bagof(V,G,L),bagof(V,GL,L)):-!,elab_conj183,4331 -elab_conj(Name,bagof(V,G,L),bagof(V,GL,L)):-!,elab_conj183,4331 -elab_conj(Name,setof(V,EV^G,L),setof(V,EV^GL,L)):-!,elab_conj186,4402 -elab_conj(Name,setof(V,EV^G,L),setof(V,EV^GL,L)):-!,elab_conj186,4402 -elab_conj(Name,setof(V,EV^G,L),setof(V,EV^GL,L)):-!,elab_conj186,4402 -elab_conj(Name,setof(V,G,L),setof(V,GL,L)):-!,elab_conj189,4479 -elab_conj(Name,setof(V,G,L),setof(V,GL,L)):-!,elab_conj189,4479 -elab_conj(Name,setof(V,G,L),setof(V,GL,L)):-!,elab_conj189,4479 -elab_conj(Name,findall(V,G,L),findall(V,GL,L)):-!,elab_conj192,4550 -elab_conj(Name,findall(V,G,L),findall(V,GL,L)):-!,elab_conj192,4550 -elab_conj(Name,findall(V,G,L),findall(V,GL,L)):-!,elab_conj192,4550 -elab_conj(_Name,A,A):-elab_conj195,4625 -elab_conj(_Name,A,A):-elab_conj195,4625 -elab_conj(_Name,A,A):-elab_conj195,4625 -elab_conj(_Name,A,A):-elab_conj198,4659 -elab_conj(_Name,A,A):-elab_conj198,4659 -elab_conj(_Name,A,A):-elab_conj198,4659 -elab_conj(Name,Lit,Lit1):-elab_conj201,4698 -elab_conj(Name,Lit,Lit1):-elab_conj201,4698 -elab_conj(Name,Lit,Lit1):-elab_conj201,4698 -create_single_program([],P,[(prob(P):-true)]).create_single_program207,4786 -create_single_program([],P,[(prob(P):-true)]).create_single_program207,4786 -create_single_program([],P,[(prob(P):-true)]).create_single_program207,4786 -create_single_program([],P,[(prob(P):-true)]).create_single_program207,4786 -create_single_program([],P,[(prob(P):-true)]).create_single_program207,4786 -create_single_program([r(H,B)|T],PIn,[(HA:-B)|T1]):-create_single_program209,4835 -create_single_program([r(H,B)|T],PIn,[(HA:-B)|T1]):-create_single_program209,4835 -create_single_program([r(H,B)|T],PIn,[(HA:-B)|T1]):-create_single_program209,4835 -instantiate([],C,C).instantiate219,5122 -instantiate([],C,C).instantiate219,5122 -instantiate([r(_V,[H:1],B)|T],CIn,COut):-!,instantiate221,5144 -instantiate([r(_V,[H:1],B)|T],CIn,COut):-!,instantiate221,5144 -instantiate([r(_V,[H:1],B)|T],CIn,COut):-!,instantiate221,5144 -instantiate([r(V,H,B)|T],CIn,COut):-instantiate225,5244 -instantiate([r(V,H,B)|T],CIn,COut):-instantiate225,5244 -instantiate([r(V,H,B)|T],CIn,COut):-instantiate225,5244 -instantiate_clause_modes(H,B,BOut):-instantiate_clause_modes235,5491 -instantiate_clause_modes(H,B,BOut):-instantiate_clause_modes235,5491 -instantiate_clause_modes(H,B,BOut):-instantiate_clause_modes235,5491 -instantiate_head_modes([]):-!.instantiate_head_modes242,5633 -instantiate_head_modes([]):-!.instantiate_head_modes242,5633 -instantiate_head_modes([]):-!.instantiate_head_modes242,5633 -instantiate_head_modes([H:_P|T]):-instantiate_head_modes244,5665 -instantiate_head_modes([H:_P|T]):-instantiate_head_modes244,5665 -instantiate_head_modes([H:_P|T]):-instantiate_head_modes244,5665 -instantiate_body_modes(BL,BL):-instantiate_body_modes249,5758 -instantiate_body_modes(BL,BL):-instantiate_body_modes249,5758 -instantiate_body_modes(BL,BL):-instantiate_body_modes249,5758 -instantiate_body_modes(BL0,BL):-instantiate_body_modes252,5823 -instantiate_body_modes(BL0,BL):-instantiate_body_modes252,5823 -instantiate_body_modes(BL0,BL):-instantiate_body_modes252,5823 -instantiate_list_modes([],[]).instantiate_list_modes256,5891 -instantiate_list_modes([],[]).instantiate_list_modes256,5891 -instantiate_list_modes([H|T0],T):-instantiate_list_modes258,5923 -instantiate_list_modes([H|T0],T):-instantiate_list_modes258,5923 -instantiate_list_modes([H|T0],T):-instantiate_list_modes258,5923 -instantiate_list_modes([\+ H|T0],T):-instantiate_list_modes263,6015 -instantiate_list_modes([\+ H|T0],T):-instantiate_list_modes263,6015 -instantiate_list_modes([\+ H|T0],T):-instantiate_list_modes263,6015 -instantiate_list_modes([\+ H|T0],[\+ H|T]):-!,instantiate_list_modes268,6113 -instantiate_list_modes([\+ H|T0],[\+ H|T]):-!,instantiate_list_modes268,6113 -instantiate_list_modes([\+ H|T0],[\+ H|T]):-!,instantiate_list_modes268,6113 -instantiate_list_modes([H|T0],[H|T]):-instantiate_list_modes272,6220 -instantiate_list_modes([H|T0],[H|T]):-instantiate_list_modes272,6220 -instantiate_list_modes([H|T0],[H|T]):-instantiate_list_modes272,6220 -instantiate_atom_modes(''):-!.instantiate_atom_modes277,6320 -instantiate_atom_modes(''):-!.instantiate_atom_modes277,6320 -instantiate_atom_modes(''):-!.instantiate_atom_modes277,6320 -instantiate_atom_modes(A):-instantiate_atom_modes279,6352 -instantiate_atom_modes(A):-instantiate_atom_modes279,6352 -instantiate_atom_modes(A):-instantiate_atom_modes279,6352 -instantiate_args_modes([],[]):-!.instantiate_args_modes288,6505 -instantiate_args_modes([],[]):-!.instantiate_args_modes288,6505 -instantiate_args_modes([],[]):-!.instantiate_args_modes288,6505 -instantiate_args_modes([H|T],[TH|TT]):-instantiate_args_modes290,6540 -instantiate_args_modes([H|T],[TH|TT]):-instantiate_args_modes290,6540 -instantiate_args_modes([H|T],[TH|TT]):-instantiate_args_modes290,6540 -instantiate_clause_variables([],_H,B,BOut):-instantiate_clause_variables296,6656 -instantiate_clause_variables([],_H,B,BOut):-instantiate_clause_variables296,6656 -instantiate_clause_variables([],_H,B,BOut):-instantiate_clause_variables296,6656 -instantiate_clause_variables([VarName=Var|T],H,BIn,BOut):-instantiate_clause_variables305,6813 -instantiate_clause_variables([VarName=Var|T],H,BIn,BOut):-instantiate_clause_variables305,6813 -instantiate_clause_variables([VarName=Var|T],H,BIn,BOut):-instantiate_clause_variables305,6813 -instantiate_clause_variables([VarName=_Var|T],H,BIn,BOut):-instantiate_clause_variables311,6985 -instantiate_clause_variables([VarName=_Var|T],H,BIn,BOut):-instantiate_clause_variables311,6985 -instantiate_clause_variables([VarName=_Var|T],H,BIn,BOut):-instantiate_clause_variables311,6985 -varName_present_variables(VarName):-varName_present_variables316,7135 -varName_present_variables(VarName):-varName_present_variables316,7135 -varName_present_variables(VarName):-varName_present_variables316,7135 -check_body([],[]).check_body322,7342 -check_body([],[]).check_body322,7342 -check_body([H|T],TOut):-check_body324,7362 -check_body([H|T],TOut):-check_body324,7362 -check_body([H|T],TOut):-check_body324,7362 -check_body([H|T],[H|TOut]):-check_body329,7434 -check_body([H|T],[H|TOut]):-check_body329,7434 -check_body([H|T],[H|TOut]):-check_body329,7434 -process_clauses([(end_of_file,[])],[]).process_clauses343,7825 -process_clauses([(end_of_file,[])],[]).process_clauses343,7825 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses345,7866 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses345,7866 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses345,7866 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses351,7994 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses351,7994 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses351,7994 -process_clauses([((H:-B),V)|T],[r(V,[H:1],B)|T1]):-!,process_clauses357,8123 -process_clauses([((H:-B),V)|T],[r(V,[H:1],B)|T1]):-!,process_clauses357,8123 -process_clauses([((H:-B),V)|T],[r(V,[H:1],B)|T1]):-!,process_clauses357,8123 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses360,8202 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses360,8202 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses360,8202 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses366,8328 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses366,8328 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses366,8328 -process_clauses([(H,V)|T],[r(V,[H:1],true)|T1]):-process_clauses372,8455 -process_clauses([(H,V)|T],[r(V,[H:1],true)|T1]):-process_clauses372,8455 -process_clauses([(H,V)|T],[r(V,[H:1],true)|T1]):-process_clauses372,8455 -process_head([H:PH],P,[H:PH1|Null]):-process_head375,8530 -process_head([H:PH],P,[H:PH1|Null]):-process_head375,8530 -process_head([H:PH],P,[H:PH1|Null]):-process_head375,8530 -process_head([H:PH|T],P,[H:PH1|NT]):-process_head387,8707 -process_head([H:PH|T],P,[H:PH1|NT]):-process_head387,8707 -process_head([H:PH|T],P,[H:PH1|NT]):-process_head387,8707 -read_clauses(S,Clauses):-read_clauses396,8906 -read_clauses(S,Clauses):-read_clauses396,8906 -read_clauses(S,Clauses):-read_clauses396,8906 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body404,9046 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body404,9046 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body404,9046 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body413,9198 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body413,9198 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body413,9198 -extract_vars_cl(end_of_file,[]).extract_vars_cl426,9491 -extract_vars_cl(end_of_file,[]).extract_vars_cl426,9491 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl428,9525 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl428,9525 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl428,9525 -pair(_VN,[],[]).pair438,9641 -pair(_VN,[],[]).pair438,9641 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair440,9659 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair440,9659 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair440,9659 -extract_vars(Var,V0,V):-extract_vars444,9717 -extract_vars(Var,V0,V):-extract_vars444,9717 -extract_vars(Var,V0,V):-extract_vars444,9717 -extract_vars(Term,V0,V):-extract_vars452,9814 -extract_vars(Term,V0,V):-extract_vars452,9814 -extract_vars(Term,V0,V):-extract_vars452,9814 -extract_vars_list([],V,V).extract_vars_list457,9892 -extract_vars_list([],V,V).extract_vars_list457,9892 -extract_vars_list([Term|T],V0,V):-extract_vars_list459,9920 -extract_vars_list([Term|T],V0,V):-extract_vars_list459,9920 -extract_vars_list([Term|T],V0,V):-extract_vars_list459,9920 -list2or([X],X):-list2or465,10039 -list2or([X],X):-list2or465,10039 -list2or([X],X):-list2or465,10039 -list2or([H|T],(H ; Ta)):-!,list2or468,10072 -list2or([H|T],(H ; Ta)):-!,list2or468,10072 -list2or([H|T],(H ; Ta)):-!,list2or468,10072 -list2and([],true):-!.list2and472,10119 -list2and([],true):-!.list2and472,10119 -list2and([],true):-!.list2and472,10119 -list2and([X],X):-list2and474,10142 -list2and([X],X):-list2and474,10142 -list2and([X],X):-list2and474,10142 -list2and([H|T],(H,Ta)):-!,list2and477,10175 -list2and([H|T],(H,Ta)):-!,list2and477,10175 -list2and([H|T],(H,Ta)):-!,list2and477,10175 -builtin(_A is _B).builtin481,10222 -builtin(_A is _B).builtin481,10222 -builtin(_A > _B).builtin482,10241 -builtin(_A > _B).builtin482,10241 -builtin(_A < _B).builtin483,10259 -builtin(_A < _B).builtin483,10259 -builtin(_A >= _B).builtin484,10277 -builtin(_A >= _B).builtin484,10277 -builtin(_A =< _B).builtin485,10296 -builtin(_A =< _B).builtin485,10296 -builtin(_A =:= _B).builtin486,10315 -builtin(_A =:= _B).builtin486,10315 -builtin(_A =\= _B).builtin487,10335 -builtin(_A =\= _B).builtin487,10335 -builtin(true).builtin488,10355 -builtin(true).builtin488,10355 -builtin(false).builtin489,10370 -builtin(false).builtin489,10370 -builtin(_A = _B).builtin490,10386 -builtin(_A = _B).builtin490,10386 -builtin(_A==_B).builtin491,10404 -builtin(_A==_B).builtin491,10404 -builtin(_A\=_B).builtin492,10421 -builtin(_A\=_B).builtin492,10421 -builtin(_A\==_B).builtin493,10438 -builtin(_A\==_B).builtin493,10438 -bg(member(_El,_L)).bg496,10458 -bg(member(_El,_L)).bg496,10458 -bg(average(_L,_Av)).bg497,10478 -bg(average(_L,_Av)).bg497,10478 -bg(max_list(_L,_Max)).bg498,10499 -bg(max_list(_L,_Max)).bg498,10499 -bg(min_list(_L,_Max)).bg499,10522 -bg(min_list(_L,_Max)).bg499,10522 -average(L,Av):-average502,10547 -average(L,Av):-average502,10547 -average(L,Av):-average502,10547 -assert_all([]):-!.assert_all507,10610 -assert_all([]):-!.assert_all507,10610 -assert_all([]):-!.assert_all507,10610 -assert_all([(:- G)|T]):-!,assert_all509,10630 -assert_all([(:- G)|T]):-!,assert_all509,10630 -assert_all([(:- G)|T]):-!,assert_all509,10630 -assert_all([H|T]):-!,assert_all513,10685 -assert_all([H|T]):-!,assert_all513,10685 -assert_all([H|T]):-!,assert_all513,10685 -assert_all(C):-assert_all517,10740 -assert_all(C):-assert_all517,10740 -assert_all(C):-assert_all517,10740 -member_eq(A,[H|_T]):-member_eq520,10772 -member_eq(A,[H|_T]):-member_eq520,10772 -member_eq(A,[H|_T]):-member_eq520,10772 -member_eq(A,[_H|T]):-member_eq523,10805 -member_eq(A,[_H|T]):-member_eq523,10805 -member_eq(A,[_H|T]):-member_eq523,10805 -set(Parameter,Value):-set527,10910 -set(Parameter,Value):-set527,10910 -set(Parameter,Value):-set527,10910 - -packages/cplint/semlpadsld.pl,14660 -setting(epsilon,0.00001).setting15,332 -setting(epsilon,0.00001).setting15,332 -setting(ground_body,false). setting16,358 -setting(ground_body,false). setting16,358 -setting(grounding,modes).setting22,648 -setting(grounding,modes).setting22,648 -setting(verbose,false).setting28,859 -setting(verbose,false).setting28,859 -sc(Goals,Evidence,Prob):-sc31,885 -sc(Goals,Evidence,Prob):-sc31,885 -sc(Goals,Evidence,Prob):-sc31,885 -s(GoalsList,Prob):-s37,998 -s(GoalsList,Prob):-s37,998 -s(GoalsList,Prob):-s37,998 -run_query([],_G,P,P).run_query42,1094 -run_query([],_G,P,P).run_query42,1094 -run_query([Prog|T],Goal,PIn,POut):-run_query44,1117 -run_query([Prog|T],Goal,PIn,POut):-run_query44,1117 -run_query([Prog|T],Goal,PIn,POut):-run_query44,1117 -run_query([Prog|T],Goal,PIn,POut):-run_query51,1255 -run_query([Prog|T],Goal,PIn,POut):-run_query51,1255 -run_query([Prog|T],Goal,PIn,POut):-run_query51,1255 -p(File):-p57,1413 -p(File):-p57,1413 -p(File):-p57,1413 -clean_db:-clean_db71,1723 -abolish_all([]).abolish_all78,1879 -abolish_all([]).abolish_all78,1879 -abolish_all([(P/A)|T]):-abolish_all80,1897 -abolish_all([(P/A)|T]):-abolish_all80,1897 -abolish_all([(P/A)|T]):-abolish_all80,1897 -create_programs(Clauses):-create_programs90,2251 -create_programs(Clauses):-create_programs90,2251 -create_programs(Clauses):-create_programs90,2251 -create_programs(_).create_programs109,2637 -create_programs(_).create_programs109,2637 -write_program(_Name,[]).write_program112,2659 -write_program(_Name,[]).write_program112,2659 -write_program(Name,[(H:-B)|T]):-write_program114,2685 -write_program(Name,[(H:-B)|T]):-write_program114,2685 -write_program(Name,[(H:-B)|T]):-write_program114,2685 -elab_conj(_Name,true,true):-!.elab_conj123,2915 -elab_conj(_Name,true,true):-!.elab_conj123,2915 -elab_conj(_Name,true,true):-!.elab_conj123,2915 -elab_conj(Name,\+(B),\+(B1)):-!,elab_conj125,2947 -elab_conj(Name,\+(B),\+(B1)):-!,elab_conj125,2947 -elab_conj(Name,\+(B),\+(B1)):-!,elab_conj125,2947 -elab_conj(Name,(BL,Rest),(BL1,Rest1)):-!,elab_conj128,3006 -elab_conj(Name,(BL,Rest),(BL1,Rest1)):-!,elab_conj128,3006 -elab_conj(Name,(BL,Rest),(BL1,Rest1)):-!,elab_conj128,3006 -elab_conj(Name,bagof(V,EV^G,L),bagof(V,EV^GL,L)):-!,elab_conj132,3103 -elab_conj(Name,bagof(V,EV^G,L),bagof(V,EV^GL,L)):-!,elab_conj132,3103 -elab_conj(Name,bagof(V,EV^G,L),bagof(V,EV^GL,L)):-!,elab_conj132,3103 -elab_conj(Name,bagof(V,G,L),bagof(V,GL,L)):-!,elab_conj135,3180 -elab_conj(Name,bagof(V,G,L),bagof(V,GL,L)):-!,elab_conj135,3180 -elab_conj(Name,bagof(V,G,L),bagof(V,GL,L)):-!,elab_conj135,3180 -elab_conj(Name,setof(V,EV^G,L),setof(V,EV^GL,L)):-!,elab_conj138,3251 -elab_conj(Name,setof(V,EV^G,L),setof(V,EV^GL,L)):-!,elab_conj138,3251 -elab_conj(Name,setof(V,EV^G,L),setof(V,EV^GL,L)):-!,elab_conj138,3251 -elab_conj(Name,setof(V,G,L),setof(V,GL,L)):-!,elab_conj141,3328 -elab_conj(Name,setof(V,G,L),setof(V,GL,L)):-!,elab_conj141,3328 -elab_conj(Name,setof(V,G,L),setof(V,GL,L)):-!,elab_conj141,3328 -elab_conj(Name,findall(V,G,L),findall(V,GL,L)):-!,elab_conj144,3399 -elab_conj(Name,findall(V,G,L),findall(V,GL,L)):-!,elab_conj144,3399 -elab_conj(Name,findall(V,G,L),findall(V,GL,L)):-!,elab_conj144,3399 -elab_conj(_Name,A,A):-elab_conj147,3474 -elab_conj(_Name,A,A):-elab_conj147,3474 -elab_conj(_Name,A,A):-elab_conj147,3474 -elab_conj(_Name,A,A):-elab_conj150,3508 -elab_conj(_Name,A,A):-elab_conj150,3508 -elab_conj(_Name,A,A):-elab_conj150,3508 -elab_conj(Name,Lit,Lit1):-elab_conj153,3547 -elab_conj(Name,Lit,Lit1):-elab_conj153,3547 -elab_conj(Name,Lit,Lit1):-elab_conj153,3547 -create_single_program([],P,[(prob(P):-true)]).create_single_program159,3635 -create_single_program([],P,[(prob(P):-true)]).create_single_program159,3635 -create_single_program([],P,[(prob(P):-true)]).create_single_program159,3635 -create_single_program([],P,[(prob(P):-true)]).create_single_program159,3635 -create_single_program([],P,[(prob(P):-true)]).create_single_program159,3635 -create_single_program([r(H,B)|T],PIn,[(HA:-B)|T1]):-create_single_program161,3684 -create_single_program([r(H,B)|T],PIn,[(HA:-B)|T1]):-create_single_program161,3684 -create_single_program([r(H,B)|T],PIn,[(HA:-B)|T1]):-create_single_program161,3684 -instantiate([],C,C).instantiate171,3971 -instantiate([],C,C).instantiate171,3971 -instantiate([r(_V,[H:1],B)|T],CIn,COut):-!,instantiate173,3993 -instantiate([r(_V,[H:1],B)|T],CIn,COut):-!,instantiate173,3993 -instantiate([r(_V,[H:1],B)|T],CIn,COut):-!,instantiate173,3993 -instantiate([r(V,H,B)|T],CIn,COut):-instantiate177,4093 -instantiate([r(V,H,B)|T],CIn,COut):-instantiate177,4093 -instantiate([r(V,H,B)|T],CIn,COut):-instantiate177,4093 -instantiate_clause_modes(H,B,BOut):-instantiate_clause_modes187,4340 -instantiate_clause_modes(H,B,BOut):-instantiate_clause_modes187,4340 -instantiate_clause_modes(H,B,BOut):-instantiate_clause_modes187,4340 -instantiate_head_modes([]):-!.instantiate_head_modes194,4482 -instantiate_head_modes([]):-!.instantiate_head_modes194,4482 -instantiate_head_modes([]):-!.instantiate_head_modes194,4482 -instantiate_head_modes([H:_P|T]):-instantiate_head_modes196,4514 -instantiate_head_modes([H:_P|T]):-instantiate_head_modes196,4514 -instantiate_head_modes([H:_P|T]):-instantiate_head_modes196,4514 -instantiate_body_modes(BL,BL):-instantiate_body_modes201,4607 -instantiate_body_modes(BL,BL):-instantiate_body_modes201,4607 -instantiate_body_modes(BL,BL):-instantiate_body_modes201,4607 -instantiate_body_modes(BL0,BL):-instantiate_body_modes204,4672 -instantiate_body_modes(BL0,BL):-instantiate_body_modes204,4672 -instantiate_body_modes(BL0,BL):-instantiate_body_modes204,4672 -instantiate_list_modes([],[]).instantiate_list_modes208,4740 -instantiate_list_modes([],[]).instantiate_list_modes208,4740 -instantiate_list_modes([H|T0],T):-instantiate_list_modes210,4772 -instantiate_list_modes([H|T0],T):-instantiate_list_modes210,4772 -instantiate_list_modes([H|T0],T):-instantiate_list_modes210,4772 -instantiate_list_modes([\+ H|T0],T):-instantiate_list_modes215,4864 -instantiate_list_modes([\+ H|T0],T):-instantiate_list_modes215,4864 -instantiate_list_modes([\+ H|T0],T):-instantiate_list_modes215,4864 -instantiate_list_modes([\+ H|T0],[\+ H|T]):-!,instantiate_list_modes220,4962 -instantiate_list_modes([\+ H|T0],[\+ H|T]):-!,instantiate_list_modes220,4962 -instantiate_list_modes([\+ H|T0],[\+ H|T]):-!,instantiate_list_modes220,4962 -instantiate_list_modes([H|T0],[H|T]):-instantiate_list_modes224,5069 -instantiate_list_modes([H|T0],[H|T]):-instantiate_list_modes224,5069 -instantiate_list_modes([H|T0],[H|T]):-instantiate_list_modes224,5069 -instantiate_atom_modes(''):-!.instantiate_atom_modes229,5169 -instantiate_atom_modes(''):-!.instantiate_atom_modes229,5169 -instantiate_atom_modes(''):-!.instantiate_atom_modes229,5169 -instantiate_atom_modes(A):-instantiate_atom_modes231,5201 -instantiate_atom_modes(A):-instantiate_atom_modes231,5201 -instantiate_atom_modes(A):-instantiate_atom_modes231,5201 -instantiate_args_modes([],[]):-!.instantiate_args_modes240,5354 -instantiate_args_modes([],[]):-!.instantiate_args_modes240,5354 -instantiate_args_modes([],[]):-!.instantiate_args_modes240,5354 -instantiate_args_modes([H|T],[TH|TT]):-instantiate_args_modes242,5389 -instantiate_args_modes([H|T],[TH|TT]):-instantiate_args_modes242,5389 -instantiate_args_modes([H|T],[TH|TT]):-instantiate_args_modes242,5389 -instantiate_clause_variables([],_H,B,BOut):-instantiate_clause_variables248,5505 -instantiate_clause_variables([],_H,B,BOut):-instantiate_clause_variables248,5505 -instantiate_clause_variables([],_H,B,BOut):-instantiate_clause_variables248,5505 -instantiate_clause_variables([VarName=Var|T],H,BIn,BOut):-instantiate_clause_variables257,5662 -instantiate_clause_variables([VarName=Var|T],H,BIn,BOut):-instantiate_clause_variables257,5662 -instantiate_clause_variables([VarName=Var|T],H,BIn,BOut):-instantiate_clause_variables257,5662 -instantiate_clause_variables([VarName=_Var|T],H,BIn,BOut):-instantiate_clause_variables263,5834 -instantiate_clause_variables([VarName=_Var|T],H,BIn,BOut):-instantiate_clause_variables263,5834 -instantiate_clause_variables([VarName=_Var|T],H,BIn,BOut):-instantiate_clause_variables263,5834 -varName_present_variables(VarName):-varName_present_variables268,5984 -varName_present_variables(VarName):-varName_present_variables268,5984 -varName_present_variables(VarName):-varName_present_variables268,5984 -check_body([],[]).check_body274,6191 -check_body([],[]).check_body274,6191 -check_body([H|T],TOut):-check_body276,6211 -check_body([H|T],TOut):-check_body276,6211 -check_body([H|T],TOut):-check_body276,6211 -check_body([H|T],[H|TOut]):-check_body281,6283 -check_body([H|T],[H|TOut]):-check_body281,6283 -check_body([H|T],[H|TOut]):-check_body281,6283 -process_clauses([(end_of_file,[])],[]).process_clauses295,6674 -process_clauses([(end_of_file,[])],[]).process_clauses295,6674 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses297,6715 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses297,6715 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses297,6715 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses303,6843 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses303,6843 -process_clauses([((H:-B),V)|T],[r(V,HL,B)|T1]):-process_clauses303,6843 -process_clauses([((H:-B),V)|T],[r(V,[H:1],B)|T1]):-!,process_clauses309,6972 -process_clauses([((H:-B),V)|T],[r(V,[H:1],B)|T1]):-!,process_clauses309,6972 -process_clauses([((H:-B),V)|T],[r(V,[H:1],B)|T1]):-!,process_clauses309,6972 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses312,7051 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses312,7051 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses312,7051 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses318,7177 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses318,7177 -process_clauses([(H,V)|T],[r(V,HL,true)|T1]):-process_clauses318,7177 -process_clauses([(H,V)|T],[r(V,[H:1],true)|T1]):-process_clauses324,7304 -process_clauses([(H,V)|T],[r(V,[H:1],true)|T1]):-process_clauses324,7304 -process_clauses([(H,V)|T],[r(V,[H:1],true)|T1]):-process_clauses324,7304 -process_head([H:PH],P,[H:PH1|Null]):-process_head327,7379 -process_head([H:PH],P,[H:PH1|Null]):-process_head327,7379 -process_head([H:PH],P,[H:PH1|Null]):-process_head327,7379 -process_head([H:PH|T],P,[H:PH1|NT]):-process_head339,7556 -process_head([H:PH|T],P,[H:PH1|NT]):-process_head339,7556 -process_head([H:PH|T],P,[H:PH1|NT]):-process_head339,7556 -read_clauses(S,Clauses):-read_clauses349,7757 -read_clauses(S,Clauses):-read_clauses349,7757 -read_clauses(S,Clauses):-read_clauses349,7757 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body357,7897 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body357,7897 -read_clauses_ground_body(S,[(Cl,V)|Out]):-read_clauses_ground_body357,7897 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body366,8049 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body366,8049 -read_clauses_exist_body(S,[(Cl,V)|Out]):-read_clauses_exist_body366,8049 -extract_vars_cl(end_of_file,[]).extract_vars_cl379,8342 -extract_vars_cl(end_of_file,[]).extract_vars_cl379,8342 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl381,8376 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl381,8376 -extract_vars_cl(Cl,VN,Couples):-extract_vars_cl381,8376 -pair(_VN,[],[]).pair391,8492 -pair(_VN,[],[]).pair391,8492 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair393,8510 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair393,8510 -pair([VN= _V|TVN],[V|TV],[VN=V|T]):-pair393,8510 -extract_vars(Var,V0,V):-extract_vars397,8568 -extract_vars(Var,V0,V):-extract_vars397,8568 -extract_vars(Var,V0,V):-extract_vars397,8568 -extract_vars(Term,V0,V):-extract_vars405,8665 -extract_vars(Term,V0,V):-extract_vars405,8665 -extract_vars(Term,V0,V):-extract_vars405,8665 -extract_vars_list([],V,V).extract_vars_list410,8743 -extract_vars_list([],V,V).extract_vars_list410,8743 -extract_vars_list([Term|T],V0,V):-extract_vars_list412,8771 -extract_vars_list([Term|T],V0,V):-extract_vars_list412,8771 -extract_vars_list([Term|T],V0,V):-extract_vars_list412,8771 -member_eq(A,[H|_T]):-member_eq416,8862 -member_eq(A,[H|_T]):-member_eq416,8862 -member_eq(A,[H|_T]):-member_eq416,8862 -member_eq(A,[_H|T]):-member_eq419,8895 -member_eq(A,[_H|T]):-member_eq419,8895 -member_eq(A,[_H|T]):-member_eq419,8895 -list2or([X],X):-list2or423,8962 -list2or([X],X):-list2or423,8962 -list2or([X],X):-list2or423,8962 -list2or([H|T],(H ; Ta)):-!,list2or426,8995 -list2or([H|T],(H ; Ta)):-!,list2or426,8995 -list2or([H|T],(H ; Ta)):-!,list2or426,8995 -list2and([],true):-!.list2and430,9042 -list2and([],true):-!.list2and430,9042 -list2and([],true):-!.list2and430,9042 -list2and([X],X):-list2and432,9065 -list2and([X],X):-list2and432,9065 -list2and([X],X):-list2and432,9065 -list2and([H|T],(H,Ta)):-!,list2and435,9098 -list2and([H|T],(H,Ta)):-!,list2and435,9098 -list2and([H|T],(H,Ta)):-!,list2and435,9098 -builtin(_A is _B).builtin439,9145 -builtin(_A is _B).builtin439,9145 -builtin(_A > _B).builtin440,9164 -builtin(_A > _B).builtin440,9164 -builtin(_A < _B).builtin441,9182 -builtin(_A < _B).builtin441,9182 -builtin(_A >= _B).builtin442,9200 -builtin(_A >= _B).builtin442,9200 -builtin(_A =< _B).builtin443,9219 -builtin(_A =< _B).builtin443,9219 -builtin(_A =:= _B).builtin444,9238 -builtin(_A =:= _B).builtin444,9238 -builtin(_A =\= _B).builtin445,9258 -builtin(_A =\= _B).builtin445,9258 -builtin(true).builtin446,9278 -builtin(true).builtin446,9278 -builtin(false).builtin447,9293 -builtin(false).builtin447,9293 -builtin(_A = _B).builtin448,9309 -builtin(_A = _B).builtin448,9309 -builtin(_A==_B).builtin449,9327 -builtin(_A==_B).builtin449,9327 -builtin(_A\=_B).builtin450,9344 -builtin(_A\=_B).builtin450,9344 -builtin(_A\==_B).builtin451,9361 -builtin(_A\==_B).builtin451,9361 -bg(member(_El,_L)).bg454,9381 -bg(member(_El,_L)).bg454,9381 -bg(average(_L,_Av)).bg455,9401 -bg(average(_L,_Av)).bg455,9401 -bg(max_list(_L,_Max)).bg456,9422 -bg(max_list(_L,_Max)).bg456,9422 -bg(min_list(_L,_Max)).bg457,9445 -bg(min_list(_L,_Max)).bg457,9445 -average(L,Av):-average460,9470 -average(L,Av):-average460,9470 -average(L,Av):-average460,9470 -set(Parameter,Value):-set466,9598 -set(Parameter,Value):-set466,9598 -set(Parameter,Value):-set466,9598 - -packages/cplint/slg.pl,48689 -do_term_expansion(end_of_file,_) :- !,do_term_expansion97,3654 -do_term_expansion(end_of_file,_) :- !,do_term_expansion97,3654 -do_term_expansion(end_of_file,_) :- !,do_term_expansion97,3654 -do_term_expansion((:-Com),Clauses) :- !,do_term_expansion103,3824 -do_term_expansion((:-Com),Clauses) :- !,do_term_expansion103,3824 -do_term_expansion((:-Com),Clauses) :- !,do_term_expansion103,3824 -do_term_expansion((H-->B),NewClause) :- !,do_term_expansion105,3895 -do_term_expansion((H-->B),NewClause) :- !,do_term_expansion105,3895 -do_term_expansion((H-->B),NewClause) :- !,do_term_expansion105,3895 -do_term_expansion((Head <-- Body),Clauses) :- !,do_term_expansion111,4077 -do_term_expansion((Head <-- Body),Clauses) :- !,do_term_expansion111,4077 -do_term_expansion((Head <-- Body),Clauses) :- !,do_term_expansion111,4077 -do_term_expansion(Clause,Clauses) :-do_term_expansion136,5025 -do_term_expansion(Clause,Clauses) :-do_term_expansion136,5025 -do_term_expansion(Clause,Clauses) :-do_term_expansion136,5025 -expand_command(tabled(Preds),Clauses) :-expand_command159,5774 -expand_command(tabled(Preds),Clauses) :-expand_command159,5774 -expand_command(tabled(Preds),Clauses) :-expand_command159,5774 -expand_command(prolog(Preds),Clauses) :-expand_command161,5856 -expand_command(prolog(Preds),Clauses) :-expand_command161,5856 -expand_command(prolog(Preds),Clauses) :-expand_command161,5856 -expand_command(multifile(Preds),(:-multifile(NewPreds))) :-expand_command163,5939 -expand_command(multifile(Preds),(:-multifile(NewPreds))) :-expand_command163,5939 -expand_command(multifile(Preds),(:-multifile(NewPreds))) :-expand_command163,5939 -expand_command(dynamic(Preds),(:-dynamic(NewPreds))) :-expand_command165,6036 -expand_command(dynamic(Preds),(:-dynamic(NewPreds))) :-expand_command165,6036 -expand_command(dynamic(Preds),(:-dynamic(NewPreds))) :-expand_command165,6036 -expand_command(default(D),[]) :-expand_command167,6129 -expand_command(default(D),[]) :-expand_command167,6129 -expand_command(default(D),[]) :-expand_command167,6129 -expand_command_table((Pred,Preds),Clauses0,Clauses) :- !,expand_command_table177,6360 -expand_command_table((Pred,Preds),Clauses0,Clauses) :- !,expand_command_table177,6360 -expand_command_table((Pred,Preds),Clauses0,Clauses) :- !,expand_command_table177,6360 -expand_command_table(Pred,Clauses0,Clauses) :-expand_command_table180,6516 -expand_command_table(Pred,Clauses0,Clauses) :-expand_command_table180,6516 -expand_command_table(Pred,Clauses0,Clauses) :-expand_command_table180,6516 -expand_command_table_one(Pspec,Clauses0,Clauses) :-expand_command_table_one183,6614 -expand_command_table_one(Pspec,Clauses0,Clauses) :-expand_command_table_one183,6614 -expand_command_table_one(Pspec,Clauses0,Clauses) :-expand_command_table_one183,6614 -expand_command_prolog((Pred,Preds),Clauses0,Clauses) :- !,expand_command_prolog209,7394 -expand_command_prolog((Pred,Preds),Clauses0,Clauses) :- !,expand_command_prolog209,7394 -expand_command_prolog((Pred,Preds),Clauses0,Clauses) :- !,expand_command_prolog209,7394 -expand_command_prolog(Pred,Clauses0,Clauses) :-expand_command_prolog212,7553 -expand_command_prolog(Pred,Clauses0,Clauses) :-expand_command_prolog212,7553 -expand_command_prolog(Pred,Clauses0,Clauses) :-expand_command_prolog212,7553 -expand_command_prolog_one(Pspec,Clauses0,Clauses) :-expand_command_prolog_one215,7653 -expand_command_prolog_one(Pspec,Clauses0,Clauses) :-expand_command_prolog_one215,7653 -expand_command_prolog_one(Pspec,Clauses0,Clauses) :-expand_command_prolog_one215,7653 -add_table_preds(Preds,NewPreds0,NewPreds) :-add_table_preds236,8216 -add_table_preds(Preds,NewPreds0,NewPreds) :-add_table_preds236,8216 -add_table_preds(Preds,NewPreds0,NewPreds) :-add_table_preds236,8216 -convert_tabled_clause(Head,Body,Clauses0) :-convert_tabled_clause255,8784 -convert_tabled_clause(Head,Body,Clauses0) :-convert_tabled_clause255,8784 -convert_tabled_clause(Head,Body,Clauses0) :-convert_tabled_clause255,8784 -convert_univ_clause(Head,Body,Clauses) :-convert_univ_clause265,9079 -convert_univ_clause(Head,Body,Clauses) :-convert_univ_clause265,9079 -convert_univ_clause(Head,Body,Clauses) :-convert_univ_clause265,9079 -ground0(X) :- ground(X).ground0276,9414 -ground0(X) :- ground(X).ground0276,9414 -ground0(X) :- ground(X).ground0276,9414 -ground0(X) :- ground(X).ground0276,9414 -ground0(X) :- ground(X).ground0276,9414 -conj_to_list(Term,List) :-conj_to_list278,9440 -conj_to_list(Term,List) :-conj_to_list278,9440 -conj_to_list(Term,List) :-conj_to_list278,9440 -conj_to_list(Term,List0,List) :-conj_to_list280,9496 -conj_to_list(Term,List0,List) :-conj_to_list280,9496 -conj_to_list(Term,List0,List) :-conj_to_list280,9496 -disj_to_list(Term,List) :-disj_to_list289,9698 -disj_to_list(Term,List) :-disj_to_list289,9698 -disj_to_list(Term,List) :-disj_to_list289,9698 -disj_to_list(Term,List0,List) :-disj_to_list291,9754 -disj_to_list(Term,List0,List) :-disj_to_list291,9754 -disj_to_list(Term,List0,List) :-disj_to_list291,9754 -extract_guard([],G,G,[],Cls,Cls).extract_guard300,9956 -extract_guard([],G,G,[],Cls,Cls).extract_guard300,9956 -extract_guard([Lit|List],G0,G,Rest,Cls0,Cls) :-extract_guard301,9990 -extract_guard([Lit|List],G0,G,Rest,Cls0,Cls) :-extract_guard301,9990 -extract_guard([Lit|List],G0,G,Rest,Cls0,Cls) :-extract_guard301,9990 -list_to_conj([],true).list_to_conj335,10979 -list_to_conj([],true).list_to_conj335,10979 -list_to_conj([Lit|List],G0) :-list_to_conj336,11002 -list_to_conj([Lit|List],G0) :-list_to_conj336,11002 -list_to_conj([Lit|List],G0) :-list_to_conj336,11002 -new_slg_head(Head,Body,NewHead) :-new_slg_head343,11122 -new_slg_head(Head,Body,NewHead) :-new_slg_head343,11122 -new_slg_head(Head,Body,NewHead) :-new_slg_head343,11122 -put_in_args(A,A,_,_).put_in_args352,11341 -put_in_args(A,A,_,_).put_in_args352,11341 -put_in_args(A0,A,Head,NewHead) :-put_in_args353,11363 -put_in_args(A0,A,Head,NewHead) :-put_in_args353,11363 -put_in_args(A0,A,Head,NewHead) :-put_in_args353,11363 -slg_built_in(slg(_)).slg_built_in360,11494 -slg_built_in(slg(_)).slg_built_in360,11494 -slg_built_in(_<-_).slg_built_in361,11516 -slg_built_in(_<-_).slg_built_in361,11516 -slg_built_in(slgall(_,_)).slg_built_in362,11536 -slg_built_in(slgall(_,_)).slg_built_in362,11536 -slg_built_in(slgall(_,_,_,_)).slg_built_in363,11563 -slg_built_in(slgall(_,_,_,_)).slg_built_in363,11563 -slg_built_in(emptytable(_)).slg_built_in364,11594 -slg_built_in(emptytable(_)).slg_built_in364,11594 -slg_built_in(st(_,_)).slg_built_in365,11623 -slg_built_in(st(_,_)).slg_built_in365,11623 -slg_built_in(stnot(_,_)).slg_built_in366,11646 -slg_built_in(stnot(_,_)).slg_built_in366,11646 -slg_built_in(stall(_,_,_)).slg_built_in367,11672 -slg_built_in(stall(_,_,_)).slg_built_in367,11672 -slg_built_in(stall(_,_,_,_,_)).slg_built_in368,11700 -slg_built_in(stall(_,_,_,_,_)).slg_built_in368,11700 -slg_built_in(stselect(_,_,_,_)).slg_built_in369,11732 -slg_built_in(stselect(_,_,_,_)).slg_built_in369,11732 -slg_built_in(stselect(_,_,_,_,_,_)).slg_built_in370,11765 -slg_built_in(stselect(_,_,_,_,_,_)).slg_built_in370,11765 -slg_built_in(xtrace).slg_built_in371,11802 -slg_built_in(xtrace).slg_built_in371,11802 -slg_built_in(xnotrace).slg_built_in372,11824 -slg_built_in(xnotrace).slg_built_in372,11824 -xtrace :- xtrace381,12064 -xnotrace :- xnotrace386,12138 -isprolog(Call) :-isprolog393,12266 -isprolog(Call) :-isprolog393,12266 -isprolog(Call) :-isprolog393,12266 -slg(Call) :-slg401,12446 -slg(Call) :-slg401,12446 -slg(Call) :-slg401,12446 -emptytable(0:[]).emptytable429,13182 -emptytable(0:[]).emptytable429,13182 -slgall(Call,Anss) :-slgall437,13403 -slgall(Call,Anss) :-slgall437,13403 -slgall(Call,Anss) :-slgall437,13403 -slgall(Call,Anss,N0:Tab0,N:Tab) :-slgall439,13451 -slgall(Call,Anss,N0:Tab0,N:Tab) :-slgall439,13451 -slgall(Call,Anss,N0:Tab0,N:Tab) :-slgall439,13451 -st(Call,PSM) :-st461,14158 -st(Call,PSM) :-st461,14158 -st(Call,PSM) :-st461,14158 -stnot(Call,PSM) :-stnot463,14205 -stnot(Call,PSM) :-stnot463,14205 -stnot(Call,PSM) :-stnot463,14205 -st_true_false(Call,Val,PSM) :-st_true_false466,14257 -st_true_false(Call,Val,PSM) :-st_true_false466,14257 -st_true_false(Call,Val,PSM) :-st_true_false466,14257 -stall(Call,Anss,PSM) :-stall501,15050 -stall(Call,Anss,PSM) :-stall501,15050 -stall(Call,Anss,PSM) :-stall501,15050 -stall(Call,Anss,PSM,N0:Tab0,N:Tab) :-stall504,15105 -stall(Call,Anss,PSM,N0:Tab0,N:Tab) :-stall504,15105 -stall(Call,Anss,PSM,N0:Tab0,N:Tab) :-stall504,15105 -stselect(Call,PSM0,Anss,PSM) :-stselect534,16043 -stselect(Call,PSM0,Anss,PSM) :-stselect534,16043 -stselect(Call,PSM0,Anss,PSM) :-stselect534,16043 -stselect(Call,PSM0,Anss,PSM,N0:Tab0,N:Tab) :-stselect537,16114 -stselect(Call,PSM0,Anss,PSM,N0:Tab0,N:Tab) :-stselect537,16114 -stselect(Call,PSM0,Anss,PSM,N0:Tab0,N:Tab) :-stselect537,16114 -wfsoldt(Call,PSM0,Ent,Tab0,Tab,N0,N) :-wfsoldt559,16723 -wfsoldt(Call,PSM0,Ent,Tab0,Tab,N0,N) :-wfsoldt559,16723 -wfsoldt(Call,PSM0,Ent,Tab0,Tab,N0,N) :-wfsoldt559,16723 -wfsoldt_ground([],Tab,Tab,N,N).wfsoldt_ground568,16953 -wfsoldt_ground([],Tab,Tab,N,N).wfsoldt_ground568,16953 -wfsoldt_ground([A|PSM],Tab0,Tab,N0,N) :-wfsoldt_ground569,16985 -wfsoldt_ground([A|PSM],Tab0,Tab,N0,N) :-wfsoldt_ground569,16985 -wfsoldt_ground([A|PSM],Tab0,Tab,N0,N) :-wfsoldt_ground569,16985 -wfs_newcall(Call,Tab0,Tab,N0,N) :-wfs_newcall588,17406 -wfs_newcall(Call,Tab0,Tab,N0,N) :-wfs_newcall588,17406 -wfs_newcall(Call,Tab0,Tab,N0,N) :-wfs_newcall588,17406 -collect_unds([],A,A).collect_unds598,17813 -collect_unds([],A,A).collect_unds598,17813 -collect_unds(l(_GH,Lanss),A1,A) :-collect_unds599,17835 -collect_unds(l(_GH,Lanss),A1,A) :-collect_unds599,17835 -collect_unds(l(_GH,Lanss),A1,A) :-collect_unds599,17835 -collect_unds(n2(T1,_,T2),A1,A) :-collect_unds601,17903 -collect_unds(n2(T1,_,T2),A1,A) :-collect_unds601,17903 -collect_unds(n2(T1,_,T2),A1,A) :-collect_unds601,17903 -collect_unds(n3(T1,_,T2,_,T3),A1,A) :-collect_unds604,17986 -collect_unds(n3(T1,_,T2,_,T3),A1,A) :-collect_unds604,17986 -collect_unds(n3(T1,_,T2,_,T3),A1,A) :-collect_unds604,17986 -collect_unds_lanss([],A,A).collect_unds_lanss609,18100 -collect_unds_lanss([],A,A).collect_unds_lanss609,18100 -collect_unds_lanss([d(_,D)|Lanss],A1,A) :-collect_unds_lanss610,18128 -collect_unds_lanss([d(_,D)|Lanss],A1,A) :-collect_unds_lanss610,18128 -collect_unds_lanss([d(_,D)|Lanss],A1,A) :-collect_unds_lanss610,18128 -collect_unds_list([],A,A).collect_unds_list614,18234 -collect_unds_list([],A,A).collect_unds_list614,18234 -collect_unds_list([Lit|D],[Lit|A1],A) :-collect_unds_list615,18261 -collect_unds_list([Lit|D],[Lit|A1],A) :-collect_unds_list615,18261 -collect_unds_list([Lit|D],[Lit|A1],A) :-collect_unds_list615,18261 -st(A0,A,Tab0,Tab,Abd0,Abd,DAbd0,DAbd,Plits0,Plits) :-st634,19157 -st(A0,A,Tab0,Tab,Abd0,Abd,DAbd0,DAbd,Plits0,Plits) :-st634,19157 -st(A0,A,Tab0,Tab,Abd0,Abd,DAbd0,DAbd,Plits0,Plits) :-st634,19157 -propagate_forward(G,Val,Tab0,Tab,Abd) :-propagate_forward691,21213 -propagate_forward(G,Val,Tab0,Tab,Abd) :-propagate_forward691,21213 -propagate_forward(G,Val,Tab0,Tab,Abd) :-propagate_forward691,21213 -extract_known_by_abd([],_,Slist,Slist,Klist,Klist).extract_known_by_abd704,21732 -extract_known_by_abd([],_,Slist,Slist,Klist,Klist).extract_known_by_abd704,21732 -extract_known_by_abd([Link|Links],Val,Slist0,Slist,Klist0,Klist) :-extract_known_by_abd705,21784 -extract_known_by_abd([Link|Links],Val,Slist0,Slist,Klist0,Klist) :-extract_known_by_abd705,21784 -extract_known_by_abd([Link|Links],Val,Slist0,Slist,Klist0,Klist) :-extract_known_by_abd705,21784 -propagate_backward(G,Val,Ganss,Tab0,Tab,Abd0,Abd,A,NewA) :-propagate_backward735,22775 -propagate_backward(G,Val,Ganss,Tab0,Tab,Abd0,Abd,A,NewA) :-propagate_backward735,22775 -propagate_backward(G,Val,Ganss,Tab0,Tab,Abd0,Abd,A,NewA) :-propagate_backward735,22775 -assume_list([],_Val,Tab,Tab,Abd,Abd,A,A).assume_list746,23170 -assume_list([],_Val,Tab,Tab,Abd,Abd,A,A).assume_list746,23170 -assume_list([Lit|Lits],Val,Tab0,Tab,Abd0,Abd,A0,A) :-assume_list747,23212 -assume_list([Lit|Lits],Val,Tab0,Tab,Abd0,Abd,A0,A) :-assume_list747,23212 -assume_list([Lit|Lits],Val,Tab0,Tab,Abd0,Abd,A0,A) :-assume_list747,23212 -assume_one(Ggoal-GH,_Val,Tab0,Tab,Abd0,Abd,A0,A) :-assume_one757,23588 -assume_one(Ggoal-GH,_Val,Tab0,Tab,Abd0,Abd,A0,A) :-assume_one757,23588 -assume_one(Ggoal-GH,_Val,Tab0,Tab,Abd0,Abd,A0,A) :-assume_one757,23588 -assume_one(Lit,Val,Tab0,Tab,Abd0,Abd,A0,A) :-assume_one761,23693 -assume_one(Lit,Val,Tab0,Tab,Abd0,Abd,A0,A) :-assume_one761,23693 -assume_one(Lit,Val,Tab0,Tab,Abd0,Abd,A0,A) :-assume_one761,23693 -final_check(Abd,Tab0,Tab,DAbd,Alist) :-final_check793,24545 -final_check(Abd,Tab0,Tab,DAbd,Alist) :-final_check793,24545 -final_check(Abd,Tab0,Tab,DAbd,Alist) :-final_check793,24545 -listval_to_listlit([],[]).listval_to_listlit799,24718 -listval_to_listlit([],[]).listval_to_listlit799,24718 -listval_to_listlit([Val|Vlist],[Lit|Llist]) :-listval_to_listlit800,24745 -listval_to_listlit([Val|Vlist],[Lit|Llist]) :-listval_to_listlit800,24745 -listval_to_listlit([Val|Vlist],[Lit|Llist]) :-listval_to_listlit800,24745 -val_to_lit(G-true,G).val_to_lit804,24849 -val_to_lit(G-true,G).val_to_lit804,24849 -val_to_lit(G-false,\+G).val_to_lit805,24871 -val_to_lit(G-false,\+G).val_to_lit805,24871 -check_consistency([],Tab,Tab,Alist,Alist).check_consistency821,25538 -check_consistency([],Tab,Tab,Alist,Alist).check_consistency821,25538 -check_consistency(l(G,Val),Tab0,Tab,Alist0,Alist) :-check_consistency822,25581 -check_consistency(l(G,Val),Tab0,Tab,Alist0,Alist) :-check_consistency822,25581 -check_consistency(l(G,Val),Tab0,Tab,Alist0,Alist) :-check_consistency822,25581 -check_consistency(n2(T1,_,T2),Tab0,Tab,Alist0,Alist) :-check_consistency834,25976 -check_consistency(n2(T1,_,T2),Tab0,Tab,Alist0,Alist) :-check_consistency834,25976 -check_consistency(n2(T1,_,T2),Tab0,Tab,Alist0,Alist) :-check_consistency834,25976 -check_consistency(n3(T1,_,T2,_,T3),Tab0,Tab,Alist0,Alist) :-check_consistency837,26126 -check_consistency(n3(T1,_,T2,_,T3),Tab0,Tab,Alist0,Alist) :-check_consistency837,26126 -check_consistency(n3(T1,_,T2,_,T3),Tab0,Tab,Alist0,Alist) :-check_consistency837,26126 -add_dabd([],Alist,Alist).add_dabd842,26330 -add_dabd([],Alist,Alist).add_dabd842,26330 -add_dabd(l(G,Val),[G-Val|Alist],Alist).add_dabd843,26356 -add_dabd(l(G,Val),[G-Val|Alist],Alist).add_dabd843,26356 -add_dabd(n2(T1,_,T2),Alist0,Alist) :-add_dabd844,26396 -add_dabd(n2(T1,_,T2),Alist0,Alist) :-add_dabd844,26396 -add_dabd(n2(T1,_,T2),Alist0,Alist) :-add_dabd844,26396 -add_dabd(n3(T1,_,T2,_,T3),Alist0,Alist) :-add_dabd847,26491 -add_dabd(n3(T1,_,T2,_,T3),Alist0,Alist) :-add_dabd847,26491 -add_dabd(n3(T1,_,T2,_,T3),Alist0,Alist) :-add_dabd847,26491 -oldt(Call,Tab) :-oldt858,26909 -oldt(Call,Tab) :-oldt858,26909 -oldt(Call,Tab) :-oldt858,26909 -oldt(Call,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-oldt881,27953 -oldt(Call,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-oldt881,27953 -oldt(Call,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-oldt881,27953 -map_oldt([],_Ggoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_oldt893,28414 -map_oldt([],_Ggoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_oldt893,28414 -map_oldt([Clause|Frames],Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_oldt894,28469 -map_oldt([Clause|Frames],Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_oldt894,28469 -map_oldt([Clause|Frames],Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_oldt894,28469 -edge_oldt(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-edge_oldt908,29151 -edge_oldt(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-edge_oldt908,29151 -edge_oldt(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-edge_oldt908,29151 -ans_edge(Ans,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-ans_edge928,29844 -ans_edge(Ans,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-ans_edge928,29844 -ans_edge(Ans,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-ans_edge928,29844 -neg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-neg_edge939,30257 -neg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-neg_edge939,30257 -neg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-neg_edge939,30257 -pos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-pos_edge969,31449 -pos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-pos_edge969,31449 -pos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-pos_edge969,31449 -aneg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-aneg_edge993,32395 -aneg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-aneg_edge993,32395 -aneg_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-aneg_edge993,32395 -apos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-apos_edge1017,33324 -apos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-apos_edge1017,33324 -apos_edge(Clause,Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-apos_edge1017,33324 -apply_subst(Ggoal:Cl,d(An,Vr),Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-apply_subst1028,33718 -apply_subst(Ggoal:Cl,d(An,Vr),Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-apply_subst1028,33718 -apply_subst(Ggoal:Cl,d(An,Vr),Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-apply_subst1028,33718 -map_nodes([],_Ans,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_nodes1049,34376 -map_nodes([],_Ans,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_nodes1049,34376 -map_nodes([Node|Nodes],Ans,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_nodes1050,34430 -map_nodes([Node|Nodes],Ans,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_nodes1050,34430 -map_nodes([Node|Nodes],Ans,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_nodes1050,34430 -map_anss([],_Node,_Ngoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_anss1054,34637 -map_anss([],_Node,_Ngoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_anss1054,34637 -map_anss(l(_GH,Lanss),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss1055,34698 -map_anss(l(_GH,Lanss),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss1055,34698 -map_anss(l(_GH,Lanss),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss1055,34698 -map_anss(n2(T1,_,T2),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss1062,34988 -map_anss(n2(T1,_,T2),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss1062,34988 -map_anss(n2(T1,_,T2),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss1062,34988 -map_anss(n3(T1,_,T2,_,T3),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss1065,35204 -map_anss(n3(T1,_,T2,_,T3),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss1065,35204 -map_anss(n3(T1,_,T2,_,T3),Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss1065,35204 -map_anss_list([],_Node,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_anss_list1070,35499 -map_anss_list([],_Node,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_anss_list1070,35499 -map_anss_list([Ans|Lanss],Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss_list1071,35558 -map_anss_list([Ans|Lanss],Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss_list1071,35558 -map_anss_list([Ans|Lanss],Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anss_list1071,35558 -return_to_disj(Nanss,Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj1086,36355 -return_to_disj(Nanss,Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj1086,36355 -return_to_disj(Nanss,Node,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj1086,36355 -negative_return_all([],_Body,_Ngoal,NBody,NBody,N,N,Tcl,Tcl).negative_return_all1094,36683 -negative_return_all([],_Body,_Ngoal,NBody,NBody,N,N,Tcl,Tcl).negative_return_all1094,36683 -negative_return_all(l(_GH,Lanss),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all1095,36745 -negative_return_all(l(_GH,Lanss),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all1095,36745 -negative_return_all(l(_GH,Lanss),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all1095,36745 -negative_return_all(n2(T1,_,T2),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all1101,36981 -negative_return_all(n2(T1,_,T2),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all1101,36981 -negative_return_all(n2(T1,_,T2),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all1101,36981 -negative_return_all(n3(T1,_,T2,_,T3),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all1104,37192 -negative_return_all(n3(T1,_,T2,_,T3),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all1104,37192 -negative_return_all(n3(T1,_,T2,_,T3),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_all1104,37192 -negative_return_one(d(H,Tv),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_one1109,37479 -negative_return_one(d(H,Tv),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_one1109,37479 -negative_return_one(d(H,Tv),Body,Ngoal,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_one1109,37479 -return_to_disj_list(Lanss,Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj_list1134,38298 -return_to_disj_list(Lanss,Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj_list1134,38298 -return_to_disj_list(Lanss,Node,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_to_disj_list1134,38298 -negative_return_list([],_Body,NBody,NBody,N,N,Tcl,Tcl).negative_return_list1142,38620 -negative_return_list([],_Body,NBody,NBody,N,N,Tcl,Tcl).negative_return_list1142,38620 -negative_return_list([d(H,[])|Lanss],Body,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_list1143,38676 -negative_return_list([d(H,[])|Lanss],Body,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_list1143,38676 -negative_return_list([d(H,[])|Lanss],Body,NBody0,NBody,N0,N,Tcl0,Tcl) :-negative_return_list1143,38676 -comp_tab_ent(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-comp_tab_ent1161,39252 -comp_tab_ent(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-comp_tab_ent1161,39252 -comp_tab_ent(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-comp_tab_ent1161,39252 -process_pos_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_pos_scc1174,39781 -process_pos_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_pos_scc1174,39781 -process_pos_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_pos_scc1174,39781 -pop_subgoals(Ggoal,S0,S,Scc0,Scc) :-pop_subgoals1189,40318 -pop_subgoals(Ggoal,S0,S,Scc0,Scc) :-pop_subgoals1189,40318 -pop_subgoals(Ggoal,S0,S,Scc0,Scc) :-pop_subgoals1189,40318 -complete_comp([],Tab,Tab,Alist,Alist).complete_comp1201,40611 -complete_comp([],Tab,Tab,Alist,Alist).complete_comp1201,40611 -complete_comp([Ggoal|Scc],Tab0,Tab,Alist0,Alist) :-complete_comp1202,40650 -complete_comp([Ggoal|Scc],Tab0,Tab,Alist0,Alist) :-complete_comp1202,40650 -complete_comp([Ggoal|Scc],Tab0,Tab,Alist0,Alist) :-complete_comp1202,40650 -complete_one(Ggoal,Tab0,Tab,Alist0,Alist) :-complete_one1219,41318 -complete_one(Ggoal,Tab0,Tab,Alist0,Alist) :-complete_one1219,41318 -complete_one(Ggoal,Tab0,Tab,Alist0,Alist) :-complete_one1219,41318 -setup_simp_links([],_,Slist,Slist,Tab,Tab).setup_simp_links1238,41891 -setup_simp_links([],_,Slist,Slist,Tab,Tab).setup_simp_links1238,41891 -setup_simp_links(l(GH,Lanss),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links1239,41935 -setup_simp_links(l(GH,Lanss),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links1239,41935 -setup_simp_links(l(GH,Lanss),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links1239,41935 -setup_simp_links(n2(T1,_,T2),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links1241,42067 -setup_simp_links(n2(T1,_,T2),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links1241,42067 -setup_simp_links(n2(T1,_,T2),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links1241,42067 -setup_simp_links(n3(T1,_,T2,_,T3),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links1244,42238 -setup_simp_links(n3(T1,_,T2,_,T3),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links1244,42238 -setup_simp_links(n3(T1,_,T2,_,T3),Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links1244,42238 -setup_simp_links_list([],_,_,Slist,Slist,Tab,Tab).setup_simp_links_list1253,42621 -setup_simp_links_list([],_,_,Slist,Slist,Tab,Tab).setup_simp_links_list1253,42621 -setup_simp_links_list([d(_,D)|Anss],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links_list1254,42672 -setup_simp_links_list([d(_,D)|Anss],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links_list1254,42672 -setup_simp_links_list([d(_,D)|Anss],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-setup_simp_links_list1254,42672 -links_from_one_delay([],_,_,Slist,Slist,Tab,Tab).links_from_one_delay1266,43114 -links_from_one_delay([],_,_,Slist,Slist,Tab,Tab).links_from_one_delay1266,43114 -links_from_one_delay([D|Ds],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-links_from_one_delay1267,43164 -links_from_one_delay([D|Ds],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-links_from_one_delay1267,43164 -links_from_one_delay([D|Ds],GHead,Ggoal,Slist0,Slist,Tab0,Tab) :-links_from_one_delay1267,43164 -extract_known(Ggoal,Anss,Links,Slist,Klist) :-extract_known1297,44088 -extract_known(Ggoal,Anss,Links,Slist,Klist) :-extract_known1297,44088 -extract_known(Ggoal,Anss,Links,Slist,Klist) :-extract_known1297,44088 -extract_known_anss([],_,Slist,Slist,Klist,Klist).extract_known_anss1316,44581 -extract_known_anss([],_,Slist,Slist,Klist,Klist).extract_known_anss1316,44581 -extract_known_anss([Link|Links],Anss,Slist0,Slist,Klist0,Klist) :-extract_known_anss1317,44631 -extract_known_anss([Link|Links],Anss,Slist0,Slist,Klist0,Klist) :-extract_known_anss1317,44631 -extract_known_anss([Link|Links],Anss,Slist0,Slist,Klist0,Klist) :-extract_known_anss1317,44631 -extract_lit_val(Lit,Anss,Comp,Val) :-extract_lit_val1333,45157 -extract_lit_val(Lit,Anss,Comp,Val) :-extract_lit_val1333,45157 -extract_lit_val(Lit,Anss,Comp,Val) :-extract_lit_val1333,45157 -simplify([],Tab,Tab,_Abd).simplify1377,46233 -simplify([],Tab,Tab,_Abd).simplify1377,46233 -simplify([Val-Link|Klist],Tab0,Tab,Abd) :-simplify1378,46260 -simplify([Val-Link|Klist],Tab0,Tab,Abd) :-simplify1378,46260 -simplify([Val-Link|Klist],Tab0,Tab,Abd) :-simplify1378,46260 -simplify(Val-Links,Tab0,Tab,Abd) :-simplify1381,46379 -simplify(Val-Links,Tab0,Tab,Abd) :-simplify1381,46379 -simplify(Val-Links,Tab0,Tab,Abd) :-simplify1381,46379 -simplify_list([],_,Tab,Tab,_Abd).simplify_list1384,46459 -simplify_list([],_,Tab,Tab,_Abd).simplify_list1384,46459 -simplify_list([Link|Links],Val,Tab0,Tab,Abd) :-simplify_list1385,46493 -simplify_list([Link|Links],Val,Tab0,Tab,Abd) :-simplify_list1385,46493 -simplify_list([Link|Links],Val,Tab0,Tab,Abd) :-simplify_list1385,46493 -simplify_one(Val,Link,Tab0,Tab,Abd) :-simplify_one1394,46767 -simplify_one(Val,Link,Tab0,Tab,Abd) :-simplify_one1394,46767 -simplify_one(Val,Link,Tab0,Tab,Abd) :-simplify_one1394,46767 -simplify_anss([],_,_,Anss,Anss,_).simplify_anss1427,47791 -simplify_anss([],_,_,Anss,Anss,_).simplify_anss1427,47791 -simplify_anss([Ans|Rest],Val,Lit,Anss0,Anss,C) :-simplify_anss1428,47826 -simplify_anss([Ans|Rest],Val,Lit,Anss0,Anss,C) :-simplify_anss1428,47826 -simplify_anss([Ans|Rest],Val,Lit,Anss0,Anss,C) :-simplify_anss1428,47826 -simplified_ans(Ans,Val,Lit,NewAns,C) :-simplified_ans1439,48134 -simplified_ans(Ans,Val,Lit,NewAns,C) :-simplified_ans1439,48134 -simplified_ans(Ans,Val,Lit,NewAns,C) :-simplified_ans1439,48134 -delete_lit([],_,Ds,Ds,_).delete_lit1474,48954 -delete_lit([],_,Ds,Ds,_).delete_lit1474,48954 -delete_lit([D|Rest],Lit,Ds0,Ds,C) :-delete_lit1475,48980 -delete_lit([D|Rest],Lit,Ds0,Ds,C) :-delete_lit1475,48980 -delete_lit([D|Rest],Lit,Ds0,Ds,C) :-delete_lit1475,48980 -return_aneg_nodes([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).return_aneg_nodes1484,49198 -return_aneg_nodes([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).return_aneg_nodes1484,49198 -return_aneg_nodes([(Anss,Ngoal)-ANegs|Alist],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_aneg_nodes1485,49255 -return_aneg_nodes([(Anss,Ngoal)-ANegs|Alist],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_aneg_nodes1485,49255 -return_aneg_nodes([(Anss,Ngoal)-ANegs|Alist],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-return_aneg_nodes1485,49255 -map_anegs([],_Anss,_Ngoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_anegs1489,49490 -map_anegs([],_Anss,_Ngoal,Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).map_anegs1489,49490 -map_anegs([Node|ANegs],Anss,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anegs1490,49552 -map_anegs([Node|ANegs],Anss,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anegs1490,49552 -map_anegs([Node|ANegs],Anss,Ngoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-map_anegs1490,49552 -process_neg_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_neg_scc1497,49865 -process_neg_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_neg_scc1497,49865 -process_neg_scc(Ggoal,Tab0,Tab,S0,S,Dfn0,Dfn,Dep,TP0,TP) :-process_neg_scc1497,49865 -extract_subgoals(Ggoal,[Sent|S],[Sent|Scc0],Scc) :-extract_subgoals1517,50541 -extract_subgoals(Ggoal,[Sent|S],[Sent|Scc0],Scc) :-extract_subgoals1517,50541 -extract_subgoals(Ggoal,[Sent|S],[Sent|Scc0],Scc) :-extract_subgoals1517,50541 -reset_nmin([],Tab,Tab,Ds,Ds).reset_nmin1527,50841 -reset_nmin([],Tab,Tab,Ds,Ds).reset_nmin1527,50841 -reset_nmin([Ggoal|Scc],Tab0,Tab,Ds0,Ds) :-reset_nmin1528,50871 -reset_nmin([Ggoal|Scc],Tab0,Tab,Ds0,Ds) :-reset_nmin1528,50871 -reset_nmin([Ggoal|Scc],Tab0,Tab,Ds0,Ds) :-reset_nmin1528,50871 -delay_and_cont([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).delay_and_cont1536,51073 -delay_and_cont([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).delay_and_cont1536,51073 -delay_and_cont([Ggoal-Negs|Dnodes],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-delay_and_cont1537,51127 -delay_and_cont([Ggoal-Negs|Dnodes],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-delay_and_cont1537,51127 -delay_and_cont([Ggoal-Negs|Dnodes],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-delay_and_cont1537,51127 -recomp_scc([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).recomp_scc1541,51359 -recomp_scc([],Tab,Tab,S,S,Dfn,Dfn,Dep,Dep,TP,TP).recomp_scc1541,51359 -recomp_scc([Ggoal|Scc],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-recomp_scc1542,51409 -recomp_scc([Ggoal|Scc],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-recomp_scc1542,51409 -recomp_scc([Ggoal|Scc],Tab0,Tab,S0,S,Dfn0,Dfn,Dep0,Dep,TP0,TP) :-recomp_scc1542,51409 -update_mins(Ggoal,Dep,Sign,Tab0,Tab,Gdfn,Gdep) :-update_mins1553,51796 -update_mins(Ggoal,Dep,Sign,Tab0,Tab,Gdfn,Gdep) :-update_mins1553,51796 -update_mins(Ggoal,Dep,Sign,Tab0,Tab,Gdfn,Gdep) :-update_mins1553,51796 -update_lookup_mins(Ggoal,Node,Ngoal,Sign,Tab0,Tab,Dep0,Dep) :-update_lookup_mins1564,52279 -update_lookup_mins(Ggoal,Node,Ngoal,Sign,Tab0,Tab,Dep0,Dep) :-update_lookup_mins1564,52279 -update_lookup_mins(Ggoal,Node,Ngoal,Sign,Tab0,Tab,Dep0,Dep) :-update_lookup_mins1564,52279 -update_solution_mins(Ggoal,Ngoal,Sign,Tab0,Tab,Ndep,Dep0,Dep) :-update_solution_mins1581,52938 -update_solution_mins(Ggoal,Ngoal,Sign,Tab0,Tab,Ndep,Dep0,Dep) :-update_solution_mins1581,52938 -update_solution_mins(Ggoal,Ngoal,Sign,Tab0,Tab,Ndep,Dep0,Dep) :-update_solution_mins1581,52938 -compute_mins(Gpmin-Gnmin,Npmin-Nnmin,Sign,Newpmin-Newnmin) :-compute_mins1594,53340 -compute_mins(Gpmin-Gnmin,Npmin-Nnmin,Sign,Newpmin-Newnmin) :-compute_mins1594,53340 -compute_mins(Gpmin-Gnmin,Npmin-Nnmin,Sign,Newpmin-Newnmin) :-compute_mins1594,53340 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1604,53618 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1604,53618 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1604,53618 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1604,53618 -min(X,Y,M) :- ( X @< Y -> M=X; M=Y ).min1604,53618 -ent_to_nodes(e(Nodes,_,_,_,_,_,_),Nodes).ent_to_nodes1631,54560 -ent_to_nodes(e(Nodes,_,_,_,_,_,_),Nodes).ent_to_nodes1631,54560 -ent_to_anegs(e(_,ANegs,_,_,_,_,_),ANegs).ent_to_anegs1632,54602 -ent_to_anegs(e(_,ANegs,_,_,_,_,_),ANegs).ent_to_anegs1632,54602 -ent_to_anss(e(_,_,Anss,_,_,_,_),Anss).ent_to_anss1633,54644 -ent_to_anss(e(_,_,Anss,_,_,_,_),Anss).ent_to_anss1633,54644 -ent_to_delay(e(_,_,_,Delay,_,_,_),Delay).ent_to_delay1634,54683 -ent_to_delay(e(_,_,_,Delay,_,_,_),Delay).ent_to_delay1634,54683 -ent_to_comp(e(_,_,_,_,Comp,_,_),Comp).ent_to_comp1635,54725 -ent_to_comp(e(_,_,_,_,Comp,_,_),Comp).ent_to_comp1635,54725 -ent_to_dfn(e(_,_,_,_,_,Dfn,_),Dfn).ent_to_dfn1636,54764 -ent_to_dfn(e(_,_,_,_,_,Dfn,_),Dfn).ent_to_dfn1636,54764 -ent_to_slist(e(_,_,_,_,_,_,Slist),Slist).ent_to_slist1637,54800 -ent_to_slist(e(_,_,_,_,_,_,Slist),Slist).ent_to_slist1637,54800 -get_and_reset_negs(Tab0,Ggoal,ANegs,Tab) :-get_and_reset_negs1639,54843 -get_and_reset_negs(Tab0,Ggoal,ANegs,Tab) :-get_and_reset_negs1639,54843 -get_and_reset_negs(Tab0,Ggoal,ANegs,Tab) :-get_and_reset_negs1639,54843 -add_tab_ent(Ggoal,Ent,Tab0,Tab) :- add_tab_ent1646,55088 -add_tab_ent(Ggoal,Ent,Tab0,Tab) :- add_tab_ent1646,55088 -add_tab_ent(Ggoal,Ent,Tab0,Tab) :- add_tab_ent1646,55088 -new_init_call(Call,Ggoal,Ent,S0,S,Dfn0,Dfn) :-new_init_call1654,55263 -new_init_call(Call,Ggoal,Ent,S0,S,Dfn0,Dfn) :-new_init_call1654,55263 -new_init_call(Call,Ggoal,Ent,S0,S,Dfn0,Dfn) :-new_init_call1654,55263 -new_aneg_call(Ngoal,Neg,Ent,S0,S,Dfn0,Dfn) :-new_aneg_call1663,55522 -new_aneg_call(Ngoal,Neg,Ent,S0,S,Dfn0,Dfn) :-new_aneg_call1663,55522 -new_aneg_call(Ngoal,Neg,Ent,S0,S,Dfn0,Dfn) :-new_aneg_call1663,55522 -new_pos_call(Ngoal,Node,Ent,S0,S,Dfn0,Dfn) :-new_pos_call1670,55719 -new_pos_call(Ngoal,Node,Ent,S0,S,Dfn0,Dfn) :-new_pos_call1670,55719 -new_pos_call(Ngoal,Node,Ent,S0,S,Dfn0,Dfn) :-new_pos_call1670,55719 -aneg_to_newent(Ent0,Ent,ANeg) :-aneg_to_newent1678,55928 -aneg_to_newent(Ent0,Ent,ANeg) :-aneg_to_newent1678,55928 -aneg_to_newent(Ent0,Ent,ANeg) :-aneg_to_newent1678,55928 -pos_to_newent(Ent0,Ent,Node) :-pos_to_newent1682,56074 -pos_to_newent(Ent0,Ent,Node) :-pos_to_newent1682,56074 -pos_to_newent(Ent0,Ent,Node) :-pos_to_newent1682,56074 -add_link_to_ent(Tab0,Ggoal,Link,Tab) :-add_link_to_ent1686,56219 -add_link_to_ent(Tab0,Ggoal,Link,Tab) :-add_link_to_ent1686,56219 -add_link_to_ent(Tab0,Ggoal,Link,Tab) :-add_link_to_ent1686,56219 -link_to_newent(Ent0,Ent,Link) :-link_to_newent1690,56334 -link_to_newent(Ent0,Ent,Link) :-link_to_newent1690,56334 -link_to_newent(Ent0,Ent,Link) :-link_to_newent1690,56334 -ansstree_to_list([],L,L).ansstree_to_list1695,56520 -ansstree_to_list([],L,L).ansstree_to_list1695,56520 -ansstree_to_list(l(_GH,Lanss),L0,L) :-ansstree_to_list1696,56546 -ansstree_to_list(l(_GH,Lanss),L0,L) :-ansstree_to_list1696,56546 -ansstree_to_list(l(_GH,Lanss),L0,L) :-ansstree_to_list1696,56546 -ansstree_to_list(n2(T1,_M,T2),L0,L) :-ansstree_to_list1698,56609 -ansstree_to_list(n2(T1,_M,T2),L0,L) :-ansstree_to_list1698,56609 -ansstree_to_list(n2(T1,_M,T2),L0,L) :-ansstree_to_list1698,56609 -ansstree_to_list(n3(T1,_M2,T2,_M3,T3),L0,L) :-ansstree_to_list1701,56711 -ansstree_to_list(n3(T1,_M2,T2,_M3,T3),L0,L) :-ansstree_to_list1701,56711 -ansstree_to_list(n3(T1,_M2,T2,_M3,T3),L0,L) :-ansstree_to_list1701,56711 -attach([],L,L).attach1706,56854 -attach([],L,L).attach1706,56854 -attach([d(H,B)|R],[X|L0],L) :-attach1707,56870 -attach([d(H,B)|R],[X|L0],L) :-attach1707,56870 -attach([d(H,B)|R],[X|L0],L) :-attach1707,56870 -member_anss(Ans,Anss) :-member_anss1714,56977 -member_anss(Ans,Anss) :-member_anss1714,56977 -member_anss(Ans,Anss) :-member_anss1714,56977 -member_anss_1(l(_,Lanss),Ans) :-member_anss_11717,57029 -member_anss_1(l(_,Lanss),Ans) :-member_anss_11717,57029 -member_anss_1(l(_,Lanss),Ans) :-member_anss_11717,57029 -member_anss_1(n2(T1,_,T2),Ans) :-member_anss_11719,57082 -member_anss_1(n2(T1,_,T2),Ans) :-member_anss_11719,57082 -member_anss_1(n2(T1,_,T2),Ans) :-member_anss_11719,57082 -member_anss_1(n3(T1,_,T2,_,T3),Ans) :-member_anss_11723,57184 -member_anss_1(n3(T1,_,T2,_,T3),Ans) :-member_anss_11723,57184 -member_anss_1(n3(T1,_,T2,_,T3),Ans) :-member_anss_11723,57184 -failed([]).failed1730,57358 -failed([]).failed1730,57358 -failed(l(_,[])).failed1731,57370 -failed(l(_,[])).failed1731,57370 -succeeded(l(_,Lanss)) :-succeeded1734,57450 -succeeded(l(_,Lanss)) :-succeeded1734,57450 -succeeded(l(_,Lanss)) :-succeeded1734,57450 -add_ans(Tab0,Ggoal,Ans,Nodes,Mode,Tab) :-add_ans1747,57772 -add_ans(Tab0,Ggoal,Ans,Nodes,Mode,Tab) :-add_ans1747,57772 -add_ans(Tab0,Ggoal,Ans,Nodes,Mode,Tab) :-add_ans1747,57772 -new_ans_ent(Ent0,Ent,Ans,Nodes,Mode) :-new_ans_ent1756,58026 -new_ans_ent(Ent0,Ent,Ans,Nodes,Mode) :-new_ans_ent1756,58026 -new_ans_ent(Ent0,Ent,Ans,Nodes,Mode) :-new_ans_ent1756,58026 -returned_ans(d(H,Tv),Ggoal,d(H,NewTv)) :-returned_ans1781,58679 -returned_ans(d(H,Tv),Ggoal,d(H,NewTv)) :-returned_ans1781,58679 -returned_ans(d(H,Tv),Ggoal,d(H,NewTv)) :-returned_ans1781,58679 -reduce_ans(Anss0,Anss,Tab) :-reduce_ans1789,58879 -reduce_ans(Anss0,Anss,Tab) :-reduce_ans1789,58879 -reduce_ans(Anss0,Anss,Tab) :-reduce_ans1789,58879 -reduce_completed_ans([],[],_Tab).reduce_completed_ans1793,59005 -reduce_completed_ans([],[],_Tab).reduce_completed_ans1793,59005 -reduce_completed_ans(l(GH,Lanss0),l(GH,Lanss),Tab) :-reduce_completed_ans1794,59039 -reduce_completed_ans(l(GH,Lanss0),l(GH,Lanss),Tab) :-reduce_completed_ans1794,59039 -reduce_completed_ans(l(GH,Lanss0),l(GH,Lanss),Tab) :-reduce_completed_ans1794,59039 -reduce_completed_ans(n2(T1,M,T2),n2(NT1,M,NT2),Tab) :-reduce_completed_ans1796,59144 -reduce_completed_ans(n2(T1,M,T2),n2(NT1,M,NT2),Tab) :-reduce_completed_ans1796,59144 -reduce_completed_ans(n2(T1,M,T2),n2(NT1,M,NT2),Tab) :-reduce_completed_ans1796,59144 -reduce_completed_ans(n3(T1,M2,T2,M3,T3),n3(NT1,M2,NT2,M3,NT3),Tab) :-reduce_completed_ans1799,59275 -reduce_completed_ans(n3(T1,M2,T2,M3,T3),n3(NT1,M2,NT2,M3,NT3),Tab) :-reduce_completed_ans1799,59275 -reduce_completed_ans(n3(T1,M2,T2,M3,T3),n3(NT1,M2,NT2,M3,NT3),Tab) :-reduce_completed_ans1799,59275 -reduce_completed_anslist([],Lanss,Lanss,_Tab).reduce_completed_anslist1804,59460 -reduce_completed_anslist([],Lanss,Lanss,_Tab).reduce_completed_anslist1804,59460 -reduce_completed_anslist([d(G,D0)|List],Lanss0,Lanss,Tab) :-reduce_completed_anslist1805,59507 -reduce_completed_anslist([d(G,D0)|List],Lanss0,Lanss,Tab) :-reduce_completed_anslist1805,59507 -reduce_completed_anslist([d(G,D0)|List],Lanss0,Lanss,Tab) :-reduce_completed_anslist1805,59507 -filter_delays([],Fds,Fds,_DC,_V,_Tab).filter_delays1827,60305 -filter_delays([],Fds,Fds,_DC,_V,_Tab).filter_delays1827,60305 -filter_delays([Lit|Ds],Fds0,Fds,DC,V,Tab) :-filter_delays1828,60344 -filter_delays([Lit|Ds],Fds0,Fds,DC,V,Tab) :-filter_delays1828,60344 -filter_delays([Lit|Ds],Fds0,Fds,DC,V,Tab) :-filter_delays1828,60344 -lit_to_call(\+G,G).lit_to_call1850,60888 -lit_to_call(\+G,G).lit_to_call1850,60888 -lit_to_call(Gcall-_,Gcall).lit_to_call1851,60908 -lit_to_call(Gcall-_,Gcall).lit_to_call1851,60908 -not_subsumed_ans(Ans,Lanss0) :-not_subsumed_ans1853,60937 -not_subsumed_ans(Ans,Lanss0) :-not_subsumed_ans1853,60937 -not_subsumed_ans(Ans,Lanss0) :-not_subsumed_ans1853,60937 -subsumed_ans(Tv,List1,List2) :- subsumed_ans1860,61097 -subsumed_ans(Tv,List1,List2) :- subsumed_ans1860,61097 -subsumed_ans(Tv,List1,List2) :- subsumed_ans1860,61097 -subsumed_ans1(d(T,V),List) :-subsumed_ans11868,61298 -subsumed_ans1(d(T,V),List) :-subsumed_ans11868,61298 -subsumed_ans1(d(T,V),List) :-subsumed_ans11868,61298 -variantchk(G,[G1|_]) :- variant(G,G1), !.variantchk1878,61564 -variantchk(G,[G1|_]) :- variant(G,G1), !.variantchk1878,61564 -variantchk(G,[G1|_]) :- variant(G,G1), !.variantchk1878,61564 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1879,61606 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1879,61606 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1879,61606 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1879,61606 -variantchk(G,[_|L]) :- variantchk(G,L).variantchk1879,61606 -variant(A, B) :-variant1881,61647 -variant(A, B) :-variant1881,61647 -variant(A, B) :-variant1881,61647 -subsumes_chk(General, Specific) :-subsumes_chk1888,61774 -subsumes_chk(General, Specific) :-subsumes_chk1888,61774 -subsumes_chk(General, Specific) :-subsumes_chk1888,61774 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1893,61906 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1893,61906 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1893,61906 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1893,61906 -ground(O,C) :- ground(O) -> C = O ; copy_term(O,C), numbervars(C,0,_).ground1893,61906 -subset([],_).subset1895,61978 -subset([],_).subset1895,61978 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1896,61992 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1896,61992 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1896,61992 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1896,61992 -subset([E|L1],L2) :- memberchk(E,L2), subset(L1,L2).subset1896,61992 -reverse([],R,R).reverse1898,62046 -reverse([],R,R).reverse1898,62046 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1899,62063 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1899,62063 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1899,62063 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1899,62063 -reverse([Goal|Scc],R0,R) :- reverse(Scc,[Goal|R0],R).reverse1899,62063 -display_stack(Stack,Tab) :-display_stack1904,62261 -display_stack(Stack,Tab) :-display_stack1904,62261 -display_stack(Stack,Tab) :-display_stack1904,62261 -display_st([],_Tab).display_st1907,62347 -display_st([],_Tab).display_st1907,62347 -display_st([Ggoal|Scc],Tab) :-display_st1908,62368 -display_st([Ggoal|Scc],Tab) :-display_st1908,62368 -display_st([Ggoal|Scc],Tab) :-display_st1908,62368 -display_dlist([]) :- nl,nl.display_dlist1923,62656 -display_dlist([]) :- nl,nl.display_dlist1923,62656 -display_dlist([]) :- nl,nl.display_dlist1923,62656 -display_dlist([Ngoal-_|Dlist]) :-display_dlist1924,62684 -display_dlist([Ngoal-_|Dlist]) :-display_dlist1924,62684 -display_dlist([Ngoal-_|Dlist]) :-display_dlist1924,62684 -display_table(Tab) :-display_table1929,62785 -display_table(Tab) :-display_table1929,62785 -display_table(Tab) :-display_table1929,62785 -display_final(Tab) :-display_final1934,62859 -display_final(Tab) :-display_final1934,62859 -display_final(Tab) :-display_final1934,62859 -display_final1([]).display_final11938,62953 -display_final1([]).display_final11938,62953 -display_final1(l(_,e(_,_,Anss,_,_,_,_))) :-display_final11939,62973 -display_final1(l(_,e(_,_,Anss,_,_,_,_))) :-display_final11939,62973 -display_final1(l(_,e(_,_,Anss,_,_,_,_))) :-display_final11939,62973 -display_final1(n2(X,_,Y)) :- display_final11941,63039 -display_final1(n2(X,_,Y)) :- display_final11941,63039 -display_final1(n2(X,_,Y)) :- display_final11941,63039 -display_final1(n3(X,_,Y,_,Z)) :- display_final11944,63115 -display_final1(n3(X,_,Y,_,Z)) :- display_final11944,63115 -display_final1(n3(X,_,Y,_,Z)) :- display_final11944,63115 -write_tab([]).write_tab1949,63219 -write_tab([]).write_tab1949,63219 -write_tab(l(G,e(Nodes,ANegs,Anss,_,Comp,Dfn:_,_))) :-write_tab1950,63234 -write_tab(l(G,e(Nodes,ANegs,Anss,_,Comp,Dfn:_,_))) :-write_tab1950,63234 -write_tab(l(G,e(Nodes,ANegs,Anss,_,Comp,Dfn:_,_))) :-write_tab1950,63234 -write_tab(n2(X,_,Y)) :- write_tab1977,63763 -write_tab(n2(X,_,Y)) :- write_tab1977,63763 -write_tab(n2(X,_,Y)) :- write_tab1977,63763 -write_tab(n3(X,_,Y,_,Z)) :- write_tab1980,63824 -write_tab(n3(X,_,Y,_,Z)) :- write_tab1980,63824 -write_tab(n3(X,_,Y,_,Z)) :- write_tab1980,63824 -write_anss([]).write_anss1985,63908 -write_anss([]).write_anss1985,63908 -write_anss(l(_,Lanss)) :-write_anss1986,63924 -write_anss(l(_,Lanss)) :-write_anss1986,63924 -write_anss(l(_,Lanss)) :-write_anss1986,63924 -write_anss(n2(T1,_,T2)) :-write_anss1988,63978 -write_anss(n2(T1,_,T2)) :-write_anss1988,63978 -write_anss(n2(T1,_,T2)) :-write_anss1988,63978 -write_anss(n3(T1,_,T2,_,T3)) :-write_anss1991,64045 -write_anss(n3(T1,_,T2,_,T3)) :-write_anss1991,64045 -write_anss(n3(T1,_,T2,_,T3)) :-write_anss1991,64045 -write_anss_list([]).write_anss_list1996,64138 -write_anss_list([]).write_anss_list1996,64138 -write_anss_list([Ans|Anss]) :-write_anss_list1997,64159 -write_anss_list([Ans|Anss]) :-write_anss_list1997,64159 -write_anss_list([Ans|Anss]) :-write_anss_list1997,64159 -write_ans(d(H,Ds)) :-write_ans2001,64238 -write_ans(d(H,Ds)) :-write_ans2001,64238 -write_ans(d(H,Ds)) :-write_ans2001,64238 -write_delay([],_).write_delay2023,64650 -write_delay([],_).write_delay2023,64650 -write_delay([D|Ds1],Sep) :-write_delay2024,64669 -write_delay([D|Ds1],Sep) :-write_delay2024,64669 -write_delay([D|Ds1],Sep) :-write_delay2024,64669 -addkey(Tree,X,V,Tree1) :-addkey2053,65539 -addkey(Tree,X,V,Tree1) :-addkey2053,65539 -addkey(Tree,X,V,Tree1) :-addkey2053,65539 -addkey([],X,V,l(X,V)).addkey2056,65608 -addkey([],X,V,l(X,V)).addkey2056,65608 -find(l(X,V),Xs,V) :- X == Xs.find2059,65633 -find(l(X,V),Xs,V) :- X == Xs.find2059,65633 -find(l(X,V),Xs,V) :- X == Xs.find2059,65633 -find(n2(T1,M,T2),X,V) :-find2060,65663 -find(n2(T1,M,T2),X,V) :-find2060,65663 -find(n2(T1,M,T2),X,V) :-find2060,65663 -find(n3(T1,M2,T2,M3,T3),X,V) :-find2064,65733 -find(n3(T1,M2,T2,M3,T3),X,V) :-find2064,65733 -find(n3(T1,M2,T2,M3,T3),X,V) :-find2064,65733 -updatevs(Tab0,X,Ov,Nv,Tab) :-updatevs2076,65949 -updatevs(Tab0,X,Ov,Nv,Tab) :-updatevs2076,65949 -updatevs(Tab0,X,Ov,Nv,Tab) :-updatevs2076,65949 -updatevs(Tab,X,Ov,Nv) :-updatevs2080,66018 -updatevs(Tab,X,Ov,Nv) :-updatevs2080,66018 -updatevs(Tab,X,Ov,Nv) :-updatevs2080,66018 -updatevs(l(X,Ov),Xs,Ov,Nv,l(X,Nv)) :- X == Xs.updatevs2099,66394 -updatevs(l(X,Ov),Xs,Ov,Nv,l(X,Nv)) :- X == Xs.updatevs2099,66394 -updatevs(l(X,Ov),Xs,Ov,Nv,l(X,Nv)) :- X == Xs.updatevs2099,66394 -updatevs(n2(T1,M,T2),X,Ov,Nv,n2(NT1,M,NT2)) :-updatevs2100,66441 -updatevs(n2(T1,M,T2),X,Ov,Nv,n2(NT1,M,NT2)) :-updatevs2100,66441 -updatevs(n2(T1,M,T2),X,Ov,Nv,n2(NT1,M,NT2)) :-updatevs2100,66441 -updatevs(n3(T1,M2,T2,M3,T3),X,Ov,Nv,n3(NT1,M2,NT2,M3,NT3)) :-updatevs2104,66573 -updatevs(n3(T1,M2,T2,M3,T3),X,Ov,Nv,n3(NT1,M2,NT2,M3,NT3)) :-updatevs2104,66573 -updatevs(n3(T1,M2,T2,M3,T3),X,Ov,Nv,n3(NT1,M2,NT2,M3,NT3)) :-updatevs2104,66573 -ins2(n2(T1,M,T2),X,V,Tree) :- ins22112,66804 -ins2(n2(T1,M,T2),X,V,Tree) :- ins22112,66804 -ins2(n2(T1,M,T2),X,V,Tree) :- ins22112,66804 -ins2(n3(T1,M2,T2,M3,T3),X,V,Tree) :- ins22118,66942 -ins2(n3(T1,M2,T2,M3,T3),X,V,Tree) :- ins22118,66942 -ins2(n3(T1,M2,T2,M3,T3),X,V,Tree) :- ins22118,66942 -ins2(l(A,V),X,Vn,Tree) :-ins22128,67180 -ins2(l(A,V),X,Vn,Tree) :-ins22128,67180 -ins2(l(A,V),X,Vn,Tree) :-ins22128,67180 -cmb0(t(Tree),Tree).cmb02136,67309 -cmb0(t(Tree),Tree).cmb02136,67309 -cmb0(t(T1,M,T2),n2(T1,M,T2)).cmb02137,67329 -cmb0(t(T1,M,T2),n2(T1,M,T2)).cmb02137,67329 -cmb1(t(NT1),M,T2,t(n2(NT1,M,T2))).cmb12139,67360 -cmb1(t(NT1),M,T2,t(n2(NT1,M,T2))).cmb12139,67360 -cmb1(t(NT1a,Mb,NT1b),M,T2,t(n3(NT1a,Mb,NT1b,M,T2))).cmb12140,67395 -cmb1(t(NT1a,Mb,NT1b),M,T2,t(n3(NT1a,Mb,NT1b,M,T2))).cmb12140,67395 -cmb2(t(NT2),T1,M,t(n2(T1,M,NT2))).cmb22142,67449 -cmb2(t(NT2),T1,M,t(n2(T1,M,NT2))).cmb22142,67449 -cmb2(t(NT2a,Mb,NT2b),T1,M,t(n3(T1,M,NT2a,Mb,NT2b))).cmb22143,67484 -cmb2(t(NT2a,Mb,NT2b),T1,M,t(n3(T1,M,NT2a,Mb,NT2b))).cmb22143,67484 -cmb3(t(NT1),M2,T2,M3,T3,t(n3(NT1,M2,T2,M3,T3))).cmb32145,67538 -cmb3(t(NT1),M2,T2,M3,T3,t(n3(NT1,M2,T2,M3,T3))).cmb32145,67538 -cmb3(t(NT1a,Mb,NT1b),M2,T2,M3,T3,t(n2(NT1a,Mb,NT1b),M2,n2(T2,M3,T3))).cmb32146,67587 -cmb3(t(NT1a,Mb,NT1b),M2,T2,M3,T3,t(n2(NT1a,Mb,NT1b),M2,n2(T2,M3,T3))).cmb32146,67587 -cmb4(t(NT3),T1,M2,T2,M3,t(n3(T1,M2,T2,M3,NT3))).cmb42148,67659 -cmb4(t(NT3),T1,M2,T2,M3,t(n3(T1,M2,T2,M3,NT3))).cmb42148,67659 -cmb4(t(NT3a,Mb,NT3b),T1,M2,T2,M3,t(n2(T1,M2,T2),M3,n2(NT3a,Mb,NT3b))).cmb42149,67708 -cmb4(t(NT3a,Mb,NT3b),T1,M2,T2,M3,t(n2(T1,M2,T2),M3,n2(NT3a,Mb,NT3b))).cmb42149,67708 -cmb5(t(NT2),T1,M2,M3,T3,t(n3(T1,M2,NT2,M3,T3))).cmb52151,67780 -cmb5(t(NT2),T1,M2,M3,T3,t(n3(T1,M2,NT2,M3,T3))).cmb52151,67780 -cmb5(t(NT2a,Mb,NT2b),T1,M2,M3,T3,t(n2(T1,M2,NT2a),Mb,n2(NT2b,M3,T3))).cmb52152,67829 -cmb5(t(NT2a,Mb,NT2b),T1,M2,M3,T3,t(n2(T1,M2,NT2a),Mb,n2(NT2b,M3,T3))).cmb52152,67829 -start_slg:- assertz((start_slg2154,67901 - -packages/cplint/slipcase/ai_train.l,0 - -packages/cplint/slipcase/Artistic,0 - -packages/cplint/slipcase/bddem.c,3692 -#define LOGZERO LOGZERO24,425 -#define CACHE_SLOTS CACHE_SLOTS25,455 -#define UNIQUE_SLOTS UNIQUE_SLOTS26,477 - int nVal, nRule;nVal29,518 - int nVal, nRule;__anon435::nVal29,518 - int nVal, nRule;nRule29,518 - int nVal, nRule;__anon435::nRule29,518 - int firstBoolVar;firstBoolVar30,537 - int firstBoolVar;__anon435::firstBoolVar30,537 -} variable;variable31,557 - DdNode *key;key34,587 - DdNode *key;__anon436::key34,587 - double value;value35,602 - double value;__anon436::value35,602 -} rowel;rowel36,618 - int cnt;cnt39,645 - int cnt;__anon437::cnt39,645 - rowel *row;row40,656 - rowel *row;__anon437::row40,656 -} tablerow;tablerow41,670 -tablerow *table;table43,683 -static variable **vars_ex;vars_ex45,701 -static int **bVar2mVar_ex;bVar2mVar_ex46,728 -static double *sigma;sigma47,755 -static double ***eta;eta48,777 -static double ***eta_temp;eta_temp49,799 -static double **arrayprob;arrayprob50,826 -static int *rules;rules51,853 -static DdManager **mgr_ex;mgr_ex52,872 -static int *nVars_ex;nVars_ex53,899 -static int nRules;nRules54,921 -double *nodes_probs_ex;nodes_probs_ex55,940 -double **probs_ex;probs_ex56,964 -static int *boolVars_ex;boolVars_ex57,983 -tablerow *nodesB;nodesB58,1008 -tablerow *nodesF;nodesF59,1026 -int ex, cycle;ex60,1044 -int ex, cycle;cycle60,1044 -DdNode ***nodesToVisit;nodesToVisit61,1059 -int *NnodesToVisit;NnodesToVisit62,1083 -double *example_prob;example_prob63,1103 -static YAP_Bool init(void) {init90,2133 -static YAP_Bool init_bdd(void) {init_bdd126,3190 -static YAP_Bool end_bdd(void) {end_bdd152,4018 -static YAP_Bool init_test(void) {init_test158,4081 -static YAP_Bool end_test(void) {end_test192,4968 -static double Expectation(DdNode **nodes_ex, int lenNodes) {Expectation208,5238 -static YAP_Bool end(void) {end237,6065 -static YAP_Bool ret_prob(void) {ret_prob273,6688 -double Prob(DdNode *node, int comp_par)Prob295,7174 -static YAP_Bool add_var(void) {add_var344,8655 -static YAP_Bool equality(void) {equality384,9934 -static YAP_Bool one(void) {one419,10842 -static YAP_Bool zero(void) {zero430,11052 -static YAP_Bool bdd_not(void) {bdd_not441,11269 -static YAP_Bool and (void) {and453,11523 -static YAP_Bool or (void) {or468,11910 -static YAP_Bool garbage_collect(void) {garbage_collect483,12295 -static YAP_Bool bdd_to_add(void) {bdd_to_add495,12596 -static YAP_Bool create_dot(void) {create_dot507,12883 -static YAP_Bool rec_deref(void) {rec_deref552,14101 -double ProbPath(DdNode *node, int comp_par, int nex) {ProbPath562,14284 -void Forward(DdNode *root, int nex) {Forward629,16347 -void UpdateForward(DdNode *node, int nex) {UpdateForward657,17174 -int indexMvar(DdNode *node) {indexMvar714,19086 -double GetOutsideExpe(DdNode *root, double ex_prob, int nex) {GetOutsideExpe722,19239 -void Maximization(void) {Maximization767,20529 -static YAP_Bool randomize(void) {randomize794,21161 -static YAP_Bool EM(void) {EM834,22146 -static YAP_Bool Q(void) {Q924,24622 -static YAP_Bool paths_to_non_zero(void) {paths_to_non_zero986,26281 -static YAP_Bool paths(void) {paths999,26572 -static YAP_Bool dag_size(void) {dag_size1012,26841 -void init_my_predicates()init_my_predicates1025,27103 -FILE *open_file(char *filename, const char *mode)open_file1056,28311 -tablerow *init_table(int varcnt) {init_table1068,28496 -void add_node(tablerow *tab, DdNode *node, double value) {add_node1080,28707 -void add_or_replace_node(tablerow *tab, DdNode *node, double value) {add_or_replace_node1090,29023 -double *get_value(tablerow *tab, DdNode *node) {get_value1106,29503 -void destroy_table(tablerow *tab, int varcnt) {destroy_table1118,29751 - -packages/cplint/slipcase/hep1.l,0 - -packages/cplint/slipcase/inference_sl.pl,26829 -rule_n(0).rule_n14,206 -rule_n(0).rule_n14,206 -setting(epsilon_parsing, 1e-10).setting16,218 -setting(epsilon_parsing, 1e-10).setting16,218 -setting(tabling, off).setting17,251 -setting(tabling, off).setting17,251 -setting(bagof,false).setting20,289 -setting(bagof,false).setting20,289 -setting(compiling,off).setting23,358 -setting(compiling,off).setting23,358 -setting(depth_bound,false). %if true, it limits the derivation of the example to the value of 'depth'setting27,410 -setting(depth_bound,false). %if true, it limits the derivation of the example to the value of 'depth'setting27,410 -setting(depth,2).setting28,513 -setting(depth,2).setting28,513 -setting(single_var,false). %false:1 variable for every grounding of a rule; true: 1 variable for rule (even if a rule has more groundings),simpler.setting29,531 -setting(single_var,false). %false:1 variable for every grounding of a rule; true: 1 variable for rule (even if a rule has more groundings),simpler.setting29,531 -load(FileIn,C1,R):-load34,720 -load(FileIn,C1,R):-load34,720 -load(FileIn,C1,R):-load34,720 -add_inter_cl(CL):-add_inter_cl41,838 -add_inter_cl(CL):-add_inter_cl41,838 -add_inter_cl(CL):-add_inter_cl41,838 -gen_cl([],[]).gen_cl47,940 -gen_cl([],[]).gen_cl47,940 -gen_cl([H/A|T],[C|T1]):-gen_cl49,956 -gen_cl([H/A|T],[C|T1]):-gen_cl49,956 -gen_cl([H/A|T],[C|T1]):-gen_cl49,956 -assert_all([]).assert_all57,1102 -assert_all([]).assert_all57,1102 -assert_all([H|T]):-assert_all59,1119 -assert_all([H|T]):-assert_all59,1119 -assert_all([H|T]):-assert_all59,1119 -retract_all([]):-!.retract_all64,1171 -retract_all([]):-!.retract_all64,1171 -retract_all([]):-!.retract_all64,1171 -retract_all([H|T]):-retract_all66,1192 -retract_all([H|T]):-retract_all66,1192 -retract_all([H|T]):-retract_all66,1192 -read_clauses_dir(S,[Cl|Out]):-read_clauses_dir71,1247 -read_clauses_dir(S,[Cl|Out]):-read_clauses_dir71,1247 -read_clauses_dir(S,[Cl|Out]):-read_clauses_dir71,1247 -process_clauses([],C,C,R,R):-!.process_clauses80,1370 -process_clauses([],C,C,R,R):-!.process_clauses80,1370 -process_clauses([],C,C,R,R):-!.process_clauses80,1370 -process_clauses([end_of_file],C,C,R,R):-!.process_clauses82,1403 -process_clauses([end_of_file],C,C,R,R):-!.process_clauses82,1403 -process_clauses([end_of_file],C,C,R,R):-!.process_clauses82,1403 -process_clauses([H|T],C0,C1,R0,R1):-process_clauses84,1447 -process_clauses([H|T],C0,C1,R0,R1):-process_clauses84,1447 -process_clauses([H|T],C0,C1,R0,R1):-process_clauses84,1447 -get_next_rule_number(R):-get_next_rule_number107,1786 -get_next_rule_number(R):-get_next_rule_number107,1786 -get_next_rule_number(R):-get_next_rule_number107,1786 -get_node(\+ Goal,BDD):-get_node113,1871 -get_node(\+ Goal,BDD):-get_node113,1871 -get_node(\+ Goal,BDD):-get_node113,1871 -get_node(\+ Goal,BDD):-!,get_node125,2089 -get_node(\+ Goal,BDD):-!,get_node125,2089 -get_node(\+ Goal,BDD):-!,get_node125,2089 -get_node(Goal,B):-get_node135,2251 -get_node(Goal,B):-get_node135,2251 -get_node(Goal,B):-get_node135,2251 -get_node(Goal,B):- %with DB=falseget_node146,2461 -get_node(Goal,B):- %with DB=falseget_node146,2461 -get_node(Goal,B):- %with DB=falseget_node146,2461 -s(Goal,P,CPUTime1,0,WallTime1,0):-s156,2616 -s(Goal,P,CPUTime1,0,WallTime1,0):-s156,2616 -s(Goal,P,CPUTime1,0,WallTime1,0):-s156,2616 -get_var_n(R,S,Probs,V):-get_var_n176,3019 -get_var_n(R,S,Probs,V):-get_var_n176,3019 -get_var_n(R,S,Probs,V):-get_var_n176,3019 -generate_rules_fact([],_VC,_R,_Probs,_N,[],_Module).generate_rules_fact186,3150 -generate_rules_fact([],_VC,_R,_Probs,_N,[],_Module).generate_rules_fact186,3150 -generate_rules_fact([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact188,3204 -generate_rules_fact([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact188,3204 -generate_rules_fact([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact188,3204 -generate_rules_fact([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact192,3378 -generate_rules_fact([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact192,3378 -generate_rules_fact([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact192,3378 -generate_rules_fact_db([],_VC,_R,_Probs,_N,[],_Module).generate_rules_fact_db199,3621 -generate_rules_fact_db([],_VC,_R,_Probs,_N,[],_Module).generate_rules_fact_db199,3621 -generate_rules_fact_db([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact_db201,3678 -generate_rules_fact_db([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact_db201,3678 -generate_rules_fact_db([Head:_P1,'':_P2],VC,R,Probs,N,[Clause],Module):-!,generate_rules_fact_db201,3678 -generate_rules_fact_db([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact_db205,3862 -generate_rules_fact_db([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact_db205,3862 -generate_rules_fact_db([Head:_P|T],VC,R,Probs,N,[Clause|Clauses],Module):-generate_rules_fact_db205,3862 -generate_clause(Head,Body,VC,R,Probs,BDDAnd,N,Clause,Module):-generate_clause212,4118 -generate_clause(Head,Body,VC,R,Probs,BDDAnd,N,Clause,Module):-generate_clause212,4118 -generate_clause(Head,Body,VC,R,Probs,BDDAnd,N,Clause,Module):-generate_clause212,4118 -generate_clause_db(Head,Body,VC,R,Probs,DB,BDDAnd,N,Clause,Module):-generate_clause_db217,4305 -generate_clause_db(Head,Body,VC,R,Probs,DB,BDDAnd,N,Clause,Module):-generate_clause_db217,4305 -generate_clause_db(Head,Body,VC,R,Probs,DB,BDDAnd,N,Clause,Module):-generate_clause_db217,4305 -generate_rules([],_Body,_VC,_R,_Probs,_BDDAnd,_N,[],_Module).generate_rules222,4524 -generate_rules([],_Body,_VC,_R,_Probs,_BDDAnd,_N,[],_Module).generate_rules222,4524 -generate_rules([Head:_P1,'':_P2],Body,VC,R,Probs,BDDAnd,N,[Clause],Module):-!,generate_rules224,4587 -generate_rules([Head:_P1,'':_P2],Body,VC,R,Probs,BDDAnd,N,[Clause],Module):-!,generate_rules224,4587 -generate_rules([Head:_P1,'':_P2],Body,VC,R,Probs,BDDAnd,N,[Clause],Module):-!,generate_rules224,4587 -generate_rules([Head:_P|T],Body,VC,R,Probs,BDDAnd,N,[Clause|Clauses],Module):-generate_rules227,4731 -generate_rules([Head:_P|T],Body,VC,R,Probs,BDDAnd,N,[Clause|Clauses],Module):-generate_rules227,4731 -generate_rules([Head:_P|T],Body,VC,R,Probs,BDDAnd,N,[Clause|Clauses],Module):-generate_rules227,4731 -generate_rules_db([],_Body,_VC,_R,_Probs,_DB,_BDDAnd,_N,[],_Module):-!.generate_rules_db233,4951 -generate_rules_db([],_Body,_VC,_R,_Probs,_DB,_BDDAnd,_N,[],_Module):-!.generate_rules_db233,4951 -generate_rules_db([],_Body,_VC,_R,_Probs,_DB,_BDDAnd,_N,[],_Module):-!.generate_rules_db233,4951 -generate_rules_db([Head:_P1,'':_P2],Body,VC,R,Probs,DB,BDDAnd,N,[Clause],Module):-!,generate_rules_db235,5024 -generate_rules_db([Head:_P1,'':_P2],Body,VC,R,Probs,DB,BDDAnd,N,[Clause],Module):-!,generate_rules_db235,5024 -generate_rules_db([Head:_P1,'':_P2],Body,VC,R,Probs,DB,BDDAnd,N,[Clause],Module):-!,generate_rules_db235,5024 -generate_rules_db([Head:_P|T],Body,VC,R,Probs,DB,BDDAnd,N,[Clause|Clauses],Module):-generate_rules_db238,5180 -generate_rules_db([Head:_P|T],Body,VC,R,Probs,DB,BDDAnd,N,[Clause|Clauses],Module):-generate_rules_db238,5180 -generate_rules_db([Head:_P|T],Body,VC,R,Probs,DB,BDDAnd,N,[Clause|Clauses],Module):-generate_rules_db238,5180 -process_body_database([],[],_Module).process_body_database244,5428 -process_body_database([],[],_Module).process_body_database244,5428 -process_body_database([H|T],[H1|T1],Module):-process_body_database246,5467 -process_body_database([H|T],[H1|T1],Module):-process_body_database246,5467 -process_body_database([H|T],[H1|T1],Module):-process_body_database246,5467 -process_body_db([],BDD,BDD,_DB,Vars,Vars,[],_Module):-!.process_body_db251,5583 -process_body_db([],BDD,BDD,_DB,Vars,Vars,[],_Module):-!.process_body_db251,5583 -process_body_db([],BDD,BDD,_DB,Vars,Vars,[],_Module):-!.process_body_db251,5583 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db253,5641 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db253,5641 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db253,5641 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db257,5787 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db257,5787 -process_body_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_db257,5787 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db282,6708 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db282,6708 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db282,6708 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db286,6846 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db286,6846 -process_body_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_db286,6846 -process_body_def_db([],BDD,BDD,_DB,Vars,Vars,[],_Module).process_body_def_db309,7598 -process_body_def_db([],BDD,BDD,_DB,Vars,Vars,[],_Module).process_body_def_db309,7598 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db311,7657 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db311,7657 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db311,7657 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db315,7811 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db315,7811 -process_body_def_db([\+ H|T],BDD,BDD1,DB,Vars,Vars1,[\+ H|Rest],Module):-process_body_def_db315,7811 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db341,8759 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db341,8759 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db341,8759 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db345,8905 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db345,8905 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H|Rest],Module):-process_body_def_db345,8905 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def_db349,9046 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def_db349,9046 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def_db349,9046 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H1|Rest],Module):-process_body_def_db355,9295 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H1|Rest],Module):-process_body_def_db355,9295 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,Vars1,[H1|Rest],Module):-process_body_def_db355,9295 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def_db360,9471 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def_db360,9471 -process_body_def_db([H|T],BDD,BDD1,DB,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def_db360,9471 -process_body_def([],BDD,BDD,Vars,Vars,[],_Module).process_body_def367,9679 -process_body_def([],BDD,BDD,Vars,Vars,[],_Module).process_body_def367,9679 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def369,9731 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def369,9731 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def369,9731 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def373,9873 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def373,9873 -process_body_def([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body_def373,9873 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def399,10763 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def399,10763 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def399,10763 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def403,10897 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def403,10897 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body_def403,10897 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def407,11026 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def407,11026 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[((H1,one(BDDH));H2),and(BDD,BDDH,BDD2)|Rest],Module):-process_body_def407,11026 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body_def413,11257 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body_def413,11257 -process_body_def([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body_def413,11257 -process_body_def([H|T],BDD,BDD1,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def418,11421 -process_body_def([H|T],BDD,BDD1,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def418,11421 -process_body_def([H|T],BDD,BDD1,Vars,[BDD,BDDH|Vars1],[H1,and(BDD,BDDH,BDD2)|Rest],Module):-!,process_body_def418,11421 -process_body([],BDD,BDD,Vars,Vars,[],_Module).process_body423,11607 -process_body([],BDD,BDD,Vars,Vars,[],_Module).process_body423,11607 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body425,11655 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body425,11655 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body425,11655 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body429,11789 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body429,11789 -process_body([\+ H|T],BDD,BDD1,Vars,Vars1,[\+ H|Rest],Module):-process_body429,11789 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body454,12650 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body454,12650 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body454,12650 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body458,12776 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body458,12776 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H|Rest],Module):-process_body458,12776 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body475,13278 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body475,13278 -process_body([H|T],BDD,BDD1,Vars,Vars1,[H1|Rest],Module):-process_body475,13278 -given(H):-given486,13607 -given(H):-given486,13607 -given(H):-given486,13607 -given_cw(H):-given_cw491,13656 -given_cw(H):-given_cw491,13656 -given_cw(H):-given_cw491,13656 -and_list([],B,B).and_list496,13711 -and_list([],B,B).and_list496,13711 -and_list([H|T],B0,B1):-and_list498,13730 -and_list([H|T],B0,B1):-and_list498,13730 -and_list([H|T],B0,B1):-and_list498,13730 -or_list([H],H):-!.or_list503,13793 -or_list([H],H):-!.or_list503,13793 -or_list([H],H):-!.or_list503,13793 -or_list([H|T],B):-or_list505,13813 -or_list([H|T],B):-or_list505,13813 -or_list([H|T],B):-or_list505,13813 -or_list1([],B,B).or_list1509,13853 -or_list1([],B,B).or_list1509,13853 -or_list1([H|T],B0,B1):-or_list1511,13872 -or_list1([H|T],B0,B1):-or_list1511,13872 -or_list1([H|T],B0,B1):-or_list1511,13872 -set(Parameter,Value):-set517,13999 -set(Parameter,Value):-set517,13999 -set(Parameter,Value):-set517,13999 -extract_vars(Variable, Var0, Var1) :- extract_vars523,14094 -extract_vars(Variable, Var0, Var1) :- extract_vars523,14094 -extract_vars(Variable, Var0, Var1) :- extract_vars523,14094 -extract_vars(Term, Var0, Var1) :- extract_vars531,14247 -extract_vars(Term, Var0, Var1) :- extract_vars531,14247 -extract_vars(Term, Var0, Var1) :- extract_vars531,14247 -extract_vars_list([], Var, Var).extract_vars_list537,14345 -extract_vars_list([], Var, Var).extract_vars_list537,14345 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list539,14379 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list539,14379 -extract_vars_list([Term|Tail], Var0, Var1) :- extract_vars_list539,14379 -difference([],_,[]).difference544,14500 -difference([],_,[]).difference544,14500 -difference([H|T],L2,L3):-difference546,14522 -difference([H|T],L2,L3):-difference546,14522 -difference([H|T],L2,L3):-difference546,14522 -difference([H|T],L2,[H|L3]):-difference550,14593 -difference([H|T],L2,[H|L3]):-difference550,14593 -difference([H|T],L2,[H|L3]):-difference550,14593 -member_eq(E,[H|_T]):-member_eq554,14648 -member_eq(E,[H|_T]):-member_eq554,14648 -member_eq(E,[H|_T]):-member_eq554,14648 -member_eq(E,[_H|T]):-member_eq557,14681 -member_eq(E,[_H|T]):-member_eq557,14681 -member_eq(E,[_H|T]):-member_eq557,14681 -add_bdd_arg(A,BDD,A1):-add_bdd_arg561,14723 -add_bdd_arg(A,BDD,A1):-add_bdd_arg561,14723 -add_bdd_arg(A,BDD,A1):-add_bdd_arg561,14723 -add_bdd_arg_db(A,BDD,DB,A1):-add_bdd_arg_db572,14872 -add_bdd_arg_db(A,BDD,DB,A1):-add_bdd_arg_db572,14872 -add_bdd_arg_db(A,BDD,DB,A1):-add_bdd_arg_db572,14872 -add_bdd_arg(A,BDD,Module,A1):-add_bdd_arg583,15030 -add_bdd_arg(A,BDD,Module,A1):-add_bdd_arg583,15030 -add_bdd_arg(A,BDD,Module,A1):-add_bdd_arg583,15030 -add_bdd_arg_db(A,BDD,DB,Module,A1):-add_bdd_arg_db594,15193 -add_bdd_arg_db(A,BDD,DB,Module,A1):-add_bdd_arg_db594,15193 -add_bdd_arg_db(A,BDD,DB,Module,A1):-add_bdd_arg_db594,15193 -add_mod_arg(A,Module,A1):-add_mod_arg605,15367 -add_mod_arg(A,Module,A1):-add_mod_arg605,15367 -add_mod_arg(A,Module,A1):-add_mod_arg605,15367 -table_pred(A):- table_pred610,15436 -table_pred(A):- table_pred610,15436 -table_pred(A):- table_pred610,15436 -process_head(HeadList, GroundHeadList) :- process_head620,15571 -process_head(HeadList, GroundHeadList) :- process_head620,15571 -process_head(HeadList, GroundHeadList) :- process_head620,15571 -process_head(HeadList, HeadList).process_head624,15698 -process_head(HeadList, HeadList).process_head624,15698 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead1|Null]) :-!,process_head_ground631,15875 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead1|Null]) :-!,process_head_ground631,15875 -process_head_ground([Head:ProbHead], Prob, [Head:ProbHead1|Null]) :-!,process_head_ground631,15875 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead1|Next]) :- process_head_ground643,16154 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead1|Next]) :- process_head_ground643,16154 -process_head_ground([Head:ProbHead|Tail], Prob, [Head:ProbHead1|Next]) :- process_head_ground643,16154 -ground_prob([]).ground_prob649,16334 -ground_prob([]).ground_prob649,16334 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob651,16352 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob651,16352 -ground_prob([_Head:ProbHead|Tail]) :- ground_prob651,16352 -get_probs([], []).get_probs656,16498 -get_probs([], []).get_probs656,16498 -get_probs([_H:P|T], [P1|T1]) :- get_probs658,16518 -get_probs([_H:P|T], [P1|T1]) :- get_probs658,16518 -get_probs([_H:P|T], [P1|T1]) :- get_probs658,16518 -generate_clauses([],[],_N,C,C):-!.generate_clauses663,16585 -generate_clauses([],[],_N,C,C):-!.generate_clauses663,16585 -generate_clauses([],[],_N,C,C):-!.generate_clauses663,16585 -generate_clauses([H|T],[H1|T1],N,C0,C):-generate_clauses665,16621 -generate_clauses([H|T],[H1|T1],N,C0,C):-generate_clauses665,16621 -generate_clauses([H|T],[H1|T1],N,C0,C):-generate_clauses665,16621 -gen_clause((H :- Body),N,N,(H :- Body),[(H :- Body)]):-!.gen_clause671,16758 -gen_clause((H :- Body),N,N,(H :- Body),[(H :- Body)]):-!.gen_clause671,16758 -gen_clause((H :- Body),N,N,(H :- Body),[(H :- Body)]):-!.gen_clause671,16758 -gen_clause(def_rule(H,BodyList),N,N,def_rule(H,BodyList),Clauses) :- gen_clause704,17970 -gen_clause(def_rule(H,BodyList),N,N,def_rule(H,BodyList),Clauses) :- gen_clause704,17970 -gen_clause(def_rule(H,BodyList),N,N,def_rule(H,BodyList),Clauses) :- gen_clause704,17970 -gen_clause(def_rule(H,BodyList),N,N,def_rule(H,BodyList),Clauses) :- !,%agg. cutgen_clause713,18345 -gen_clause(def_rule(H,BodyList),N,N,def_rule(H,BodyList),Clauses) :- !,%agg. cutgen_clause713,18345 -gen_clause(def_rule(H,BodyList),N,N,def_rule(H,BodyList),Clauses) :- !,%agg. cutgen_clause713,18345 -user:term_expansion((Head :- Body), ((H :- Body),[])):-term_expansion722,18705 -user:term_expansion((Head :- Body), ((H :- Body),[])):-term_expansion722,18705 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList)])):-term_expansion725,18780 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList)])):-term_expansion725,18780 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList)])):-term_expansion745,19521 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList)])):-term_expansion745,19521 -user:term_expansion((Head :- Body), ([],[])) :- term_expansion764,20215 -user:term_expansion((Head :- Body), ([],[])) :- term_expansion764,20215 -user:term_expansion((Head :- Body), (Clauses,[def_rule(H,BodyList)])) :- term_expansion770,20520 -user:term_expansion((Head :- Body), (Clauses,[def_rule(H,BodyList)])) :- term_expansion770,20520 -user:term_expansion((Head :- Body), (Clauses,[def_rule(H,BodyList)])) :- term_expansion785,21092 -user:term_expansion((Head :- Body), (Clauses,[def_rule(H,BodyList)])) :- term_expansion785,21092 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList)])) :- term_expansion799,21640 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList)])) :- term_expansion799,21640 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList)])) :- term_expansion820,22452 -user:term_expansion((Head :- Body), (Clauses,[rule(R,HeadList,BodyList)])) :- term_expansion820,22452 -user:term_expansion((Head :- Body),(Clauses,[])) :- term_expansion840,23224 -user:term_expansion((Head :- Body),(Clauses,[])) :- term_expansion840,23224 -user:term_expansion((Head :- Body),(Clauses,[def_rule(Head,BodyList)])) :- term_expansion847,23439 -user:term_expansion((Head :- Body),(Clauses,[def_rule(Head,BodyList)])) :- term_expansion847,23439 -user:term_expansion((Head :- Body),(Clauses,[def_rule(Head,BodyList)])) :- term_expansion859,23912 -user:term_expansion((Head :- Body),(Clauses,[def_rule(Head,BodyList)])) :- term_expansion859,23912 -user:term_expansion(Head,(Clauses,[rule(R,HeadList,[])])) :- term_expansion870,24333 -user:term_expansion(Head,(Clauses,[rule(R,HeadList,[])])) :- term_expansion870,24333 -user:term_expansion(Head,(Clauses,[rule(R,HeadList,[])])) :- term_expansion886,24847 -user:term_expansion(Head,(Clauses,[rule(R,HeadList,[])])) :- term_expansion886,24847 -user:term_expansion(Head,([],[])) :- term_expansion901,25352 -user:term_expansion(Head,([],[])) :- term_expansion901,25352 -user:term_expansion(Head,(Clause,[def_rule(H,[])])) :- term_expansion907,25549 -user:term_expansion(Head,(Clause,[def_rule(H,[])])) :- term_expansion907,25549 -user:term_expansion(Head,(Clause,[def_rule(H,[])])) :- term_expansion917,25894 -user:term_expansion(Head,(Clause,[def_rule(H,[])])) :- term_expansion917,25894 -user:term_expansion(Head,(Clause,[rule(R,HeadList,[])])) :- term_expansion926,26209 -user:term_expansion(Head,(Clause,[rule(R,HeadList,[])])) :- term_expansion926,26209 -user:term_expansion(Head,(Clause,[rule(R,HeadList,[])])) :- term_expansion944,26825 -user:term_expansion(Head,(Clause,[rule(R,HeadList,[])])) :- term_expansion944,26825 -user:term_expansion(Head, ((Head1:-one(One)),[def_rule(Head,[])])) :- term_expansion961,27426 -user:term_expansion(Head, ((Head1:-one(One)),[def_rule(Head,[])])) :- term_expansion961,27426 -user:term_expansion(Head, ((Head1:-one(One)),[def_rule(Head,[])])) :- term_expansion969,27696 -user:term_expansion(Head, ((Head1:-one(One)),[def_rule(Head,[])])) :- term_expansion969,27696 -builtin(_A is _B).builtin977,27934 -builtin(_A is _B).builtin977,27934 -builtin(_A > _B).builtin978,27953 -builtin(_A > _B).builtin978,27953 -builtin(_A < _B).builtin979,27971 -builtin(_A < _B).builtin979,27971 -builtin(_A >= _B).builtin980,27989 -builtin(_A >= _B).builtin980,27989 -builtin(_A =< _B).builtin981,28008 -builtin(_A =< _B).builtin981,28008 -builtin(_A =:= _B).builtin982,28027 -builtin(_A =:= _B).builtin982,28027 -builtin(_A =\= _B).builtin983,28047 -builtin(_A =\= _B).builtin983,28047 -builtin(true).builtin984,28067 -builtin(true).builtin984,28067 -builtin(false).builtin985,28082 -builtin(false).builtin985,28082 -builtin(_A = _B).builtin986,28098 -builtin(_A = _B).builtin986,28098 -builtin(_A==_B).builtin987,28116 -builtin(_A==_B).builtin987,28116 -builtin(_A\=_B).builtin988,28133 -builtin(_A\=_B).builtin988,28133 -builtin(_A\==_B).builtin989,28150 -builtin(_A\==_B).builtin989,28150 -builtin('!').builtin990,28168 -builtin('!').builtin990,28168 -builtin(length(_L,_N)).builtin991,28182 -builtin(length(_L,_N)).builtin991,28182 -builtin(member(_El,_L)).builtin992,28206 -builtin(member(_El,_L)).builtin992,28206 -builtin(average(_L,_Av)).builtin993,28231 -builtin(average(_L,_Av)).builtin993,28231 -builtin(max_list(_L,_Max)).builtin994,28257 -builtin(max_list(_L,_Max)).builtin994,28257 -builtin(min_list(_L,_Max)).builtin995,28285 -builtin(min_list(_L,_Max)).builtin995,28285 -builtin(nth0(_,_,_)).builtin996,28313 -builtin(nth0(_,_,_)).builtin996,28313 -builtin(nth(_,_,_)).builtin997,28335 -builtin(nth(_,_,_)).builtin997,28335 -builtin(name(_,_)).builtin998,28356 -builtin(name(_,_)).builtin998,28356 -builtin(float(_)).builtin999,28376 -builtin(float(_)).builtin999,28376 -builtin(integer(_)).builtin1000,28395 -builtin(integer(_)).builtin1000,28395 -builtin(var(_)).builtin1001,28416 -builtin(var(_)).builtin1001,28416 -builtin(_ @> _).builtin1002,28433 -builtin(_ @> _).builtin1002,28433 -builtin(memberchk(_,_)).builtin1003,28450 -builtin(memberchk(_,_)).builtin1003,28450 -average(L,Av):-average1006,28477 -average(L,Av):-average1006,28477 -average(L,Av):-average1006,28477 - -packages/cplint/slipcase/README,422 -This folder cotains EMBLEM, an EM parameter learning algorithm, and SLIPCASE, a structure learning algorithmEMBLEM2,1 -This folder cotains EMBLEM, an EM parameter learning algorithm, and SLIPCASE, a structure learning algorithmalgorithm2,1 -This folder cotains EMBLEM, an EM parameter learning algorithm, and SLIPCASE, a structure learning algorithmSLIPCASE2,1 -To execute EMBLEM, load slicpase.pl withEMBLEM4,112 - -packages/cplint/slipcase/revise.pl,15303 -theory_revisions_op(Theory,TheoryRevs):-theory_revisions_op16,259 -theory_revisions_op(Theory,TheoryRevs):-theory_revisions_op16,259 -theory_revisions_op(Theory,TheoryRevs):-theory_revisions_op16,259 -theory_revisions_op(_Theory,[]).theory_revisions_op19,367 -theory_revisions_op(_Theory,[]).theory_revisions_op19,367 -theory_revisions(Theory,TheoryRevs):-theory_revisions21,401 -theory_revisions(Theory,TheoryRevs):-theory_revisions21,401 -theory_revisions(Theory,TheoryRevs):-theory_revisions21,401 -apply_operators([],_Theory,[]).apply_operators26,534 -apply_operators([],_Theory,[]).apply_operators26,534 -apply_operators([add(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators28,567 -apply_operators([add(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators28,567 -apply_operators([add(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators28,567 -apply_operators([add_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators32,721 -apply_operators([add_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators32,721 -apply_operators([add_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators32,721 -apply_operators([remove_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators37,933 -apply_operators([remove_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators37,933 -apply_operators([remove_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators37,933 -apply_operators([add_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators42,1148 -apply_operators([add_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators42,1148 -apply_operators([add_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators42,1148 -apply_operators([remove_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators47,1360 -apply_operators([remove_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators47,1360 -apply_operators([remove_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators47,1360 -apply_operators([remove(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators52,1575 -apply_operators([remove(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators52,1575 -apply_operators([remove(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators52,1575 -revise_theory(Theory,Ref):-revise_theory57,1738 -revise_theory(Theory,Ref):-revise_theory57,1738 -revise_theory(Theory,Ref):-revise_theory57,1738 -revise_theory(Theory,Ref):-revise_theory60,1800 -revise_theory(Theory,Ref):-revise_theory60,1800 -revise_theory(Theory,Ref):-revise_theory60,1800 -generalize_theory(Theory,Ref):-generalize_theory64,1863 -generalize_theory(Theory,Ref):-generalize_theory64,1863 -generalize_theory(Theory,Ref):-generalize_theory64,1863 -generalize_theory(Theory,Ref):-generalize_theory69,1970 -generalize_theory(Theory,Ref):-generalize_theory69,1970 -generalize_theory(Theory,Ref):-generalize_theory69,1970 -generalize_rule(Rule,Ref):-generalize_rule76,2076 -generalize_rule(Rule,Ref):-generalize_rule76,2076 -generalize_rule(Rule,Ref):-generalize_rule76,2076 -generalize_rule(Rule,Ref):-generalize_rule79,2134 -generalize_rule(Rule,Ref):-generalize_rule79,2134 -generalize_rule(Rule,Ref):-generalize_rule79,2134 -add_rule(add(rule(ID,Head,[]))):-add_rule83,2193 -add_rule(add(rule(ID,Head,[]))):-add_rule83,2193 -add_rule(add(rule(ID,Head,[]))):-add_rule83,2193 -generate_head([H|_T],_P,[H1:0.5,'':0.5]):-generate_head92,2363 -generate_head([H|_T],_P,[H1:0.5,'':0.5]):-generate_head92,2363 -generate_head([H|_T],_P,[H1:0.5,'':0.5]):-generate_head92,2363 -generate_head([_H|T],P,Head):-generate_head97,2473 -generate_head([_H|T],P,Head):-generate_head97,2473 -generate_head([_H|T],P,Head):-generate_head97,2473 -take_const([],[]).take_const101,2533 -take_const([],[]).take_const101,2533 -take_const([+A|T],[_V|T1]):-take_const103,2553 -take_const([+A|T],[_V|T1]):-take_const103,2553 -take_const([+A|T],[_V|T1]):-take_const103,2553 -take_const([-A|T],[_V|T1]):-take_const107,2616 -take_const([-A|T],[_V|T1]):-take_const107,2616 -take_const([-A|T],[_V|T1]):-take_const107,2616 -take_const([A|T],[A|T1]):-take_const111,2679 -take_const([A|T],[A|T1]):-take_const111,2679 -take_const([A|T],[A|T1]):-take_const111,2679 -generalize_head(Rule,Ref):-generalize_head115,2728 -generalize_head(Rule,Ref):-generalize_head115,2728 -generalize_head(Rule,Ref):-generalize_head115,2728 -generalize_head1(LH,LH1,NH):-generalize_head1121,2863 -generalize_head1(LH,LH1,NH):-generalize_head1121,2863 -generalize_head1(LH,LH1,NH):-generalize_head1121,2863 -generalize_head2([X|_R],LH,LH1,PH) :-generalize_head2126,2964 -generalize_head2([X|_R],LH,LH1,PH) :-generalize_head2126,2964 -generalize_head2([X|_R],LH,LH1,PH) :-generalize_head2126,2964 -generalize_head2([_X|R],LH,LH1) :-generalize_head2140,3269 -generalize_head2([_X|R],LH,LH1) :-generalize_head2140,3269 -generalize_head2([_X|R],LH,LH1) :-generalize_head2140,3269 -add_to_head(['':PN],NH,At,[At:PA,'':PN1]):-!,add_to_head144,3336 -add_to_head(['':PN],NH,At,[At:PA,'':PN1]):-!,add_to_head144,3336 -add_to_head(['':PN],NH,At,[At:PA,'':PN1]):-!,add_to_head144,3336 -add_to_head([H:PH|T],NH,At,[H:PH1|T1]):-add_to_head148,3424 -add_to_head([H:PH|T],NH,At,[H:PH1|T1]):-add_to_head148,3424 -add_to_head([H:PH|T],NH,At,[H:PH1|T1]):-add_to_head148,3424 -get_module_var(LH,Module):-get_module_var153,3517 -get_module_var(LH,Module):-get_module_var153,3517 -get_module_var(LH,Module):-get_module_var153,3517 -generalize_body(Rule,Ref):-generalize_body158,3588 -generalize_body(Rule,Ref):-generalize_body158,3588 -generalize_body(Rule,Ref):-generalize_body158,3588 -specialize_theory(Theory,Ref):-specialize_theory167,3785 -specialize_theory(Theory,Ref):-specialize_theory167,3785 -specialize_theory(Theory,Ref):-specialize_theory167,3785 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule174,3939 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule174,3939 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule174,3939 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule179,4054 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule179,4054 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule179,4054 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule194,4439 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule194,4439 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule194,4439 -specialize_rule([_|RLit],Rule,SpecRul,Lit):-specialize_rule207,4758 -specialize_rule([_|RLit],Rule,SpecRul,Lit):-specialize_rule207,4758 -specialize_rule([_|RLit],Rule,SpecRul,Lit):-specialize_rule207,4758 -specailize_rule_la([],_LH1,BL1,BL1).specailize_rule_la211,4847 -specailize_rule_la([],_LH1,BL1,BL1).specailize_rule_la211,4847 -specailize_rule_la([Lit1|T],LH1,BL1,BL3):-specailize_rule_la213,4885 -specailize_rule_la([Lit1|T],LH1,BL1,BL3):-specailize_rule_la213,4885 -specailize_rule_la([Lit1|T],LH1,BL1,BL3):-specailize_rule_la213,4885 -remove_prob(['':_P],[]):-!.remove_prob222,5096 -remove_prob(['':_P],[]):-!.remove_prob222,5096 -remove_prob(['':_P],[]):-!.remove_prob222,5096 -remove_prob([X:_],[X]):-!.remove_prob224,5125 -remove_prob([X:_],[X]):-!.remove_prob224,5125 -remove_prob([X:_],[X]):-!.remove_prob224,5125 -remove_prob([X:_|R],[X|R1]):-remove_prob226,5153 -remove_prob([X:_|R],[X|R1]):-remove_prob226,5153 -remove_prob([X:_|R],[X|R1]):-remove_prob226,5153 -specialize_rule1(Lit,Lits,SpecLit):-specialize_rule1230,5206 -specialize_rule1(Lit,Lits,SpecLit):-specialize_rule1230,5206 -specialize_rule1(Lit,Lits,SpecLit):-specialize_rule1230,5206 -convert_to_input_vars([],[]):-!.convert_to_input_vars240,5446 -convert_to_input_vars([],[]):-!.convert_to_input_vars240,5446 -convert_to_input_vars([],[]):-!.convert_to_input_vars240,5446 -convert_to_input_vars([+T|RT],[+T|RT1]):-convert_to_input_vars242,5480 -convert_to_input_vars([+T|RT],[+T|RT1]):-convert_to_input_vars242,5480 -convert_to_input_vars([+T|RT],[+T|RT1]):-convert_to_input_vars242,5480 -convert_to_input_vars([-T|RT],[+T|RT1]):-convert_to_input_vars246,5561 -convert_to_input_vars([-T|RT],[+T|RT1]):-convert_to_input_vars246,5561 -convert_to_input_vars([-T|RT],[+T|RT1]):-convert_to_input_vars246,5561 -member_eq(X,[Y|_List]) :-member_eq250,5638 -member_eq(X,[Y|_List]) :-member_eq250,5638 -member_eq(X,[Y|_List]) :-member_eq250,5638 -member_eq(X,[_|List]) :-member_eq253,5675 -member_eq(X,[_|List]) :-member_eq253,5675 -member_eq(X,[_|List]) :-member_eq253,5675 -remove_eq(X,[Y|R],R):-remove_eq257,5723 -remove_eq(X,[Y|R],R):-remove_eq257,5723 -remove_eq(X,[Y|R],R):-remove_eq257,5723 -remove_eq(X,[_|R],R1):-remove_eq261,5762 -remove_eq(X,[_|R],R1):-remove_eq261,5762 -remove_eq(X,[_|R],R1):-remove_eq261,5762 -linked_clause(X):-linked_clause265,5809 -linked_clause(X):-linked_clause265,5809 -linked_clause(X):-linked_clause265,5809 -linked_clause([],_).linked_clause268,5852 -linked_clause([],_).linked_clause268,5852 -linked_clause([L|R],PrevLits):-linked_clause269,5873 -linked_clause([L|R],PrevLits):-linked_clause269,5873 -linked_clause([L|R],PrevLits):-linked_clause269,5873 -linked([],_).linked276,6041 -linked([],_).linked276,6041 -linked([X|R],L) :-linked278,6056 -linked([X|R],L) :-linked278,6056 -linked([X|R],L) :-linked278,6056 -input_variables(\+ LitM,InputVars):-input_variables284,6117 -input_variables(\+ LitM,InputVars):-input_variables284,6117 -input_variables(\+ LitM,InputVars):-input_variables284,6117 -input_variables(LitM,InputVars):-input_variables297,6396 -input_variables(LitM,InputVars):-input_variables297,6396 -input_variables(LitM,InputVars):-input_variables297,6396 -input_variables(LitM,InputVars):-input_variables305,6561 -input_variables(LitM,InputVars):-input_variables305,6561 -input_variables(LitM,InputVars):-input_variables305,6561 -input_vars(Lit,Lit1,InputVars):-input_vars314,6727 -input_vars(Lit,Lit1,InputVars):-input_vars314,6727 -input_vars(Lit,Lit1,InputVars):-input_vars314,6727 -input_vars1([],_,[]).input_vars1320,6841 -input_vars1([],_,[]).input_vars1320,6841 -input_vars1([V|RV],[+_T|RT],[V|RV1]):-input_vars1322,6864 -input_vars1([V|RV],[+_T|RT],[V|RV1]):-input_vars1322,6864 -input_vars1([V|RV],[+_T|RT],[V|RV1]):-input_vars1322,6864 -input_vars1([_V|RV],[_|RT],RV1):-input_vars1326,6935 -input_vars1([_V|RV],[_|RT],RV1):-input_vars1326,6935 -input_vars1([_V|RV],[_|RT],RV1):-input_vars1326,6935 -exctract_type_vars([],[]).exctract_type_vars330,6997 -exctract_type_vars([],[]).exctract_type_vars330,6997 -exctract_type_vars([Lit|RestLit],TypeVars):-exctract_type_vars332,7025 -exctract_type_vars([Lit|RestLit],TypeVars):-exctract_type_vars332,7025 -exctract_type_vars([Lit|RestLit],TypeVars):-exctract_type_vars332,7025 -take_mode(Lit):-take_mode344,7289 -take_mode(Lit):-take_mode344,7289 -take_mode(Lit):-take_mode344,7289 -take_mode(Lit):-take_mode347,7325 -take_mode(Lit):-take_mode347,7325 -take_mode(Lit):-take_mode347,7325 -take_mode(Lit):-take_mode350,7361 -take_mode(Lit):-take_mode350,7361 -take_mode(Lit):-take_mode350,7361 -type_vars([],[],[]).type_vars354,7397 -type_vars([],[],[]).type_vars354,7397 -type_vars([V|RV],[+T|RT],[V=T|RTV]):-type_vars356,7419 -type_vars([V|RV],[+T|RT],[V=T|RTV]):-type_vars356,7419 -type_vars([V|RV],[+T|RT],[V=T|RTV]):-type_vars356,7419 -type_vars([V|RV],[-T|RT],[V=T|RTV]):-atom(T),!,type_vars360,7487 -type_vars([V|RV],[-T|RT],[V=T|RTV]):-atom(T),!,type_vars360,7487 -type_vars([V|RV],[-T|RT],[V=T|RTV]):-atom(T),!,type_vars360,7487 -type_vars([_V|RV],[_T|RT],RTV):-type_vars363,7560 -type_vars([_V|RV],[_T|RT],RTV):-type_vars363,7560 -type_vars([_V|RV],[_T|RT],RTV):-type_vars363,7560 -take_var_args([],_,[]).take_var_args367,7619 -take_var_args([],_,[]).take_var_args367,7619 -take_var_args([+T|RT],TypeVars,[V|RV]):-take_var_args369,7644 -take_var_args([+T|RT],TypeVars,[V|RV]):-take_var_args369,7644 -take_var_args([+T|RT],TypeVars,[V|RV]):-take_var_args369,7644 -take_var_args([-T|RT],TypeVars,[_V|RV]):-take_var_args374,7748 -take_var_args([-T|RT],TypeVars,[_V|RV]):-take_var_args374,7748 -take_var_args([-T|RT],TypeVars,[_V|RV]):-take_var_args374,7748 -take_var_args([-T|RT],TypeVars,[V|RV]):-take_var_args378,7835 -take_var_args([-T|RT],TypeVars,[V|RV]):-take_var_args378,7835 -take_var_args([-T|RT],TypeVars,[V|RV]):-take_var_args378,7835 -take_var_args([T|RT],TypeVars,[T|RV]):-take_var_args382,7934 -take_var_args([T|RT],TypeVars,[T|RV]):-take_var_args382,7934 -take_var_args([T|RT],TypeVars,[T|RV]):-take_var_args382,7934 -choose_rule(Theory,Rule):-choose_rule388,8058 -choose_rule(Theory,Rule):-choose_rule388,8058 -choose_rule(Theory,Rule):-choose_rule388,8058 -add_rule(Theory,add(rule(ID,H,[]))):-add_rule392,8110 -add_rule(Theory,add(rule(ID,H,[]))):-add_rule392,8110 -add_rule(Theory,add(rule(ID,H,[]))):-add_rule392,8110 -add_rule(Theory,TheoryGen):-add_rule400,8288 -add_rule(Theory,TheoryGen):-add_rule400,8288 -add_rule(Theory,TheoryGen):-add_rule400,8288 -add_rule([X|_R],Theory,TheoryGen) :-add_rule404,8386 -add_rule([X|_R],Theory,TheoryGen) :-add_rule404,8386 -add_rule([X|_R],Theory,TheoryGen) :-add_rule404,8386 -add_rule([_X|R],Theory,TheoryGen) :-add_rule413,8595 -add_rule([_X|R],Theory,TheoryGen) :-add_rule413,8595 -add_rule([_X|R],Theory,TheoryGen) :-add_rule413,8595 -add_probs([],['':P],P):-!.add_probs417,8666 -add_probs([],['':P],P):-!.add_probs417,8666 -add_probs([],['':P],P):-!.add_probs417,8666 -add_probs([H|T],[H:P|T1],P):-add_probs419,8694 -add_probs([H|T],[H:P|T1],P):-add_probs419,8694 -add_probs([H|T],[H:P|T1],P):-add_probs419,8694 -extract_fancy_vars(List,Vars):-extract_fancy_vars423,8747 -extract_fancy_vars(List,Vars):-extract_fancy_vars423,8747 -extract_fancy_vars(List,Vars):-extract_fancy_vars423,8747 -fancy_vars([],_,[]).fancy_vars428,8839 -fancy_vars([],_,[]).fancy_vars428,8839 -fancy_vars([X|R],N,[NN2=X|R1]):-fancy_vars430,8861 -fancy_vars([X|R],N,[NN2=X|R1]):-fancy_vars430,8861 -fancy_vars([X|R],N,[NN2=X|R1]):-fancy_vars430,8861 -delete_one([X|R],R,X).delete_one438,8988 -delete_one([X|R],R,X).delete_one438,8988 -delete_one([X|R],[X|R1],D):-delete_one440,9012 -delete_one([X|R],[X|R1],D):-delete_one440,9012 -delete_one([X|R],[X|R1],D):-delete_one440,9012 -remove_last([_X],[]) :-remove_last444,9067 -remove_last([_X],[]) :-remove_last444,9067 -remove_last([_X],[]) :-remove_last444,9067 -remove_last([X|R],[X|R1]):-remove_last447,9097 -remove_last([X|R],[X|R1]):-remove_last447,9097 -remove_last([X|R],[X|R1]):-remove_last447,9097 -delete_matching([],_El,[]).delete_matching451,9148 -delete_matching([],_El,[]).delete_matching451,9148 -delete_matching([El|T],El,T1):-!,delete_matching453,9177 -delete_matching([El|T],El,T1):-!,delete_matching453,9177 -delete_matching([El|T],El,T1):-!,delete_matching453,9177 -delete_matching([H|T],El,[H|T1]):-delete_matching456,9240 -delete_matching([H|T],El,[H|T1]):-delete_matching456,9240 -delete_matching([H|T],El,[H|T1]):-delete_matching456,9240 - -packages/cplint/slipcase/slipcase.pl,22698 -setting(epsilon_em,0.0001).setting16,230 -setting(epsilon_em,0.0001).setting16,230 -setting(epsilon_em_fraction,0.00001).setting17,258 -setting(epsilon_em_fraction,0.00001).setting17,258 -setting(eps,0.0001).setting18,296 -setting(eps,0.0001).setting18,296 -setting(eps_f,0.00001).setting19,317 -setting(eps_f,0.00001).setting19,317 -setting(epsilon_sem,2).setting23,457 -setting(epsilon_sem,2).setting23,457 -setting(random_restarts_REFnumber,1).setting26,520 -setting(random_restarts_REFnumber,1).setting26,520 -setting(random_restarts_number,1).setting27,558 -setting(random_restarts_number,1).setting27,558 -setting(iterREF,-1).setting28,593 -setting(iterREF,-1).setting28,593 -setting(iter,-1).setting29,614 -setting(iter,-1).setting29,614 -setting(examples,atoms).setting30,632 -setting(examples,atoms).setting30,632 -setting(group,1).setting31,657 -setting(group,1).setting31,657 -setting(d,1). setting32,675 -setting(d,1). setting32,675 -setting(verbosity,1).setting33,691 -setting(verbosity,1).setting33,691 -setting(logzero,log(0.000001)).setting34,713 -setting(logzero,log(0.000001)).setting34,713 -setting(initial_clauses_modeh,1).setting35,745 -setting(initial_clauses_modeh,1).setting35,745 -setting(max_iter,10).setting36,779 -setting(max_iter,10).setting36,779 -setting(max_var,5).setting37,801 -setting(max_var,5).setting37,801 -setting(max_rules,10).setting38,821 -setting(max_rules,10).setting38,821 -setting(beamsize,20).setting39,844 -setting(beamsize,20).setting39,844 -sl(File):-sl42,868 -sl(File):-sl42,868 -sl(File):-sl42,868 -learn_struct(DB,R1,R,CLL1):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLL1learn_struct91,2398 -learn_struct(DB,R1,R,CLL1):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLL1learn_struct91,2398 -learn_struct(DB,R1,R,CLL1):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLL1learn_struct91,2398 -em(File):-em121,3519 -em(File):-em121,3519 -em(File):-em121,3519 -learn_params(DB,R0,R,CLL):- learn_params157,4432 -learn_params(DB,R0,R,CLL):- learn_params157,4432 -learn_params(DB,R0,R,CLL):- learn_params157,4432 -update_theory(R,initial,R):-!.update_theory182,5137 -update_theory(R,initial,R):-!.update_theory182,5137 -update_theory(R,initial,R):-!.update_theory182,5137 -update_theory([],_Par,[]).update_theory184,5169 -update_theory([],_Par,[]).update_theory184,5169 -update_theory([def_rule(H,B)|T0],Par,[def_rule(H,B)|T]):-!,update_theory186,5197 -update_theory([def_rule(H,B)|T0],Par,[def_rule(H,B)|T]):-!,update_theory186,5197 -update_theory([def_rule(H,B)|T0],Par,[def_rule(H,B)|T]):-!,update_theory186,5197 -update_theory([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory189,5285 -update_theory([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory189,5285 -update_theory([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory189,5285 -update_theory([rule(N,_H,_B)|T0],Par,T):-update_theory192,5359 -update_theory([rule(N,_H,_B)|T0],Par,T):-update_theory192,5359 -update_theory([rule(N,_H,_B)|T0],Par,T):-update_theory192,5359 -update_theory([rule(N,H,B)|T0],Par,[rule(N,H1,B)|T]):-update_theory196,5461 -update_theory([rule(N,H,B)|T0],Par,[rule(N,H1,B)|T]):-update_theory196,5461 -update_theory([rule(N,H,B)|T0],Par,[rule(N,H1,B)|T]):-update_theory196,5461 -update_head_par([],[],[]).update_head_par202,5615 -update_head_par([],[],[]).update_head_par202,5615 -update_head_par([H:_P|T0],[HP|TP],[H:HP|T]):-update_head_par204,5643 -update_head_par([H:_P|T0],[HP|TP],[H:HP|T]):-update_head_par204,5643 -update_head_par([H:_P|T0],[HP|TP],[H:HP|T]):-update_head_par204,5643 -cycle_struct([],_DB,R,R,_M,S,_SP,S):-!.cycle_struct208,5721 -cycle_struct([],_DB,R,R,_M,S,_SP,S):-!.cycle_struct208,5721 -cycle_struct([],_DB,R,R,_M,S,_SP,S):-!.cycle_struct208,5721 -cycle_struct(_B,_DB,R,R,_M,S,SP,S):-cycle_struct210,5762 -cycle_struct(_B,_DB,R,R,_M,S,SP,S):-cycle_struct210,5762 -cycle_struct(_B,_DB,R,R,_M,S,SP,S):-cycle_struct210,5762 -cycle_struct(_Beam,_DB,R,R,0,S,_SP,S):-!.cycle_struct222,5921 -cycle_struct(_Beam,_DB,R,R,0,S,_SP,S):-!.cycle_struct222,5921 -cycle_struct(_Beam,_DB,R,R,0,S,_SP,S):-!.cycle_struct222,5921 -cycle_struct([(RH,_ScoreH)|T],DB,R0,R,M,Score0,SP0,Score):-cycle_struct225,5965 -cycle_struct([(RH,_ScoreH)|T],DB,R0,R,M,Score0,SP0,Score):-cycle_struct225,5965 -cycle_struct([(RH,_ScoreH)|T],DB,R0,R,M,Score0,SP0,Score):-cycle_struct225,5965 -score_refinements([],B,B,_N,_NR,_DB,R,S,SP,R,S,SP).score_refinements238,6691 -score_refinements([],B,B,_N,_NR,_DB,R,S,SP,R,S,SP).score_refinements238,6691 -score_refinements([R1|T],B0,B,Nrev,NRef,DB,R0,S0,SP0,R,S,SP):- %scans the list of revised theories; returns S,R, the best (highest) score and revised theory R,after the comparisons at the endscore_refinements240,6744 -score_refinements([R1|T],B0,B,Nrev,NRef,DB,R0,S0,SP0,R,S,SP):- %scans the list of revised theories; returns S,R, the best (highest) score and revised theory R,after the comparisons at the endscore_refinements240,6744 -score_refinements([R1|T],B0,B,Nrev,NRef,DB,R0,S0,SP0,R,S,SP):- %scans the list of revised theories; returns S,R, the best (highest) score and revised theory R,after the comparisons at the endscore_refinements240,6744 -insert_in_order([],C,BeamSize,[C]):-insert_in_order284,8079 -insert_in_order([],C,BeamSize,[C]):-insert_in_order284,8079 -insert_in_order([],C,BeamSize,[C]):-insert_in_order284,8079 -insert_in_order(Beam,_New,0,Beam):-!.insert_in_order287,8133 -insert_in_order(Beam,_New,0,Beam):-!.insert_in_order287,8133 -insert_in_order(Beam,_New,0,Beam):-!.insert_in_order287,8133 -insert_in_order([(Th1,Heuristic1)|RestBeamIn],(Th,Heuristic),BeamSize,BeamOut):-insert_in_order289,8172 -insert_in_order([(Th1,Heuristic1)|RestBeamIn],(Th,Heuristic),BeamSize,BeamOut):-insert_in_order289,8172 -insert_in_order([(Th1,Heuristic1)|RestBeamIn],(Th,Heuristic),BeamSize,BeamOut):-insert_in_order289,8172 -remove_int_atom_list([],[]).remove_int_atom_list308,8678 -remove_int_atom_list([],[]).remove_int_atom_list308,8678 -remove_int_atom_list([A|T],[A1|T1]):-remove_int_atom_list310,8708 -remove_int_atom_list([A|T],[A1|T1]):-remove_int_atom_list310,8708 -remove_int_atom_list([A|T],[A1|T1]):-remove_int_atom_list310,8708 -remove_int_atom(A,A1):-remove_int_atom317,8812 -remove_int_atom(A,A1):-remove_int_atom317,8812 -remove_int_atom(A,A1):-remove_int_atom317,8812 -get_heads([],[]).get_heads322,8867 -get_heads([],[]).get_heads322,8867 -get_heads([_-H|T],[H|TN]):-get_heads324,8886 -get_heads([_-H|T],[H|TN]):-get_heads324,8886 -get_heads([_-H|T],[H|TN]):-get_heads324,8886 -derive_bdd_nodes([],_E,Nodes,Nodes,CLL,CLL).derive_bdd_nodes327,8934 -derive_bdd_nodes([],_E,Nodes,Nodes,CLL,CLL).derive_bdd_nodes327,8934 -derive_bdd_nodes([H|T],E,Nodes0,Nodes,CLL0,CLL):-derive_bdd_nodes329,8980 -derive_bdd_nodes([H|T],E,Nodes0,Nodes,CLL0,CLL):-derive_bdd_nodes329,8980 -derive_bdd_nodes([H|T],E,Nodes0,Nodes,CLL0,CLL):-derive_bdd_nodes329,8980 -get_node_list([],BDD,BDD,_CE).get_node_list353,9431 -get_node_list([],BDD,BDD,_CE).get_node_list353,9431 -get_node_list([H|T],BDD0,BDD,CE):-get_node_list355,9463 -get_node_list([H|T],BDD0,BDD,CE):-get_node_list355,9463 -get_node_list([H|T],BDD0,BDD,CE):-get_node_list355,9463 -derive_bdd_nodes_groupatoms([],_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms361,9577 -derive_bdd_nodes_groupatoms([],_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms361,9577 -derive_bdd_nodes_groupatoms([H|T],E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- %[H|T] modelsderive_bdd_nodes_groupatoms363,9643 -derive_bdd_nodes_groupatoms([H|T],E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- %[H|T] modelsderive_bdd_nodes_groupatoms363,9643 -derive_bdd_nodes_groupatoms([H|T],E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- %[H|T] modelsderive_bdd_nodes_groupatoms363,9643 -get_node_list_groupatoms([],[],_CE,_Gmax,CLL,CLL,LE,LE).get_node_list_groupatoms376,10024 -get_node_list_groupatoms([],[],_CE,_Gmax,CLL,CLL,LE,LE).get_node_list_groupatoms376,10024 -get_node_list_groupatoms([H|T],[[BDD,CE1]|BDDT],CE,Gmax,CLL0,CLL,LE0,LE):-get_node_list_groupatoms378,10082 -get_node_list_groupatoms([H|T],[[BDD,CE1]|BDDT],CE,Gmax,CLL0,CLL,LE0,LE):-get_node_list_groupatoms378,10082 -get_node_list_groupatoms([H|T],[[BDD,CE1]|BDDT],CE,Gmax,CLL0,CLL,LE0,LE):-get_node_list_groupatoms378,10082 -get_bdd_group([],[],G,G,BDD,BDD,_CE,LE,LE):-!.get_bdd_group394,10471 -get_bdd_group([],[],G,G,BDD,BDD,_CE,LE,LE):-!.get_bdd_group394,10471 -get_bdd_group([],[],G,G,BDD,BDD,_CE,LE,LE):-!.get_bdd_group394,10471 -get_bdd_group(T,T,0,0,BDD,BDD,_CE,LE,LE):- !.get_bdd_group396,10519 -get_bdd_group(T,T,0,0,BDD,BDD,_CE,LE,LE):- !.get_bdd_group396,10519 -get_bdd_group(T,T,0,0,BDD,BDD,_CE,LE,LE):- !.get_bdd_group396,10519 -get_bdd_group([H|T],T1,Gmax,G1,BDD0,BDD,CE,[H|LE0],LE):-get_bdd_group398,10566 -get_bdd_group([H|T],T1,Gmax,G1,BDD0,BDD,CE,[H|LE0],LE):-get_bdd_group398,10566 -get_bdd_group([H|T],T1,Gmax,G1,BDD0,BDD,CE,[H|LE0],LE):-get_bdd_group398,10566 -random_restarts(0,_Nodes,CLL,CLL,Par,Par,_LE):-!.random_restarts405,10772 -random_restarts(0,_Nodes,CLL,CLL,Par,Par,_LE):-!.random_restarts405,10772 -random_restarts(0,_Nodes,CLL,CLL,Par,Par,_LE):-!.random_restarts405,10772 -random_restarts(N,Nodes,CLL0,CLL,Par0,Par,LE):-random_restarts407,10823 -random_restarts(N,Nodes,CLL0,CLL,Par0,Par,LE):-random_restarts407,10823 -random_restarts(N,Nodes,CLL0,CLL,Par0,Par,LE):-random_restarts407,10823 -random_restarts_ref(0,_Nodes,CLL,CLL,Par,Par,_LE):-!.random_restarts_ref437,11460 -random_restarts_ref(0,_Nodes,CLL,CLL,Par,Par,_LE):-!.random_restarts_ref437,11460 -random_restarts_ref(0,_Nodes,CLL,CLL,Par,Par,_LE):-!.random_restarts_ref437,11460 -random_restarts_ref(N,Nodes,CLL0,CLL,Par0,Par,LE):-random_restarts_ref439,11515 -random_restarts_ref(N,Nodes,CLL0,CLL,Par0,Par,LE):-random_restarts_ref439,11515 -random_restarts_ref(N,Nodes,CLL0,CLL,Par0,Par,LE):-random_restarts_ref439,11515 -randomize([],[]):-!.randomize468,12148 -randomize([],[]):-!.randomize468,12148 -randomize([],[]):-!.randomize468,12148 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize470,12170 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize470,12170 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize470,12170 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head476,12325 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head476,12325 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head476,12325 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head484,12450 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head484,12450 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head484,12450 -update_head([],[],_N,[]):-!. update_head492,12583 -update_head([],[],_N,[]):-!. update_head492,12583 -update_head([],[],_N,[]):-!. update_head492,12583 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head494,12615 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head494,12615 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head494,12615 -generate_file_names(File,FileKB,FileIn,FileBG,FileOut,FileL):-generate_file_names504,12739 -generate_file_names(File,FileKB,FileIn,FileBG,FileOut,FileL):-generate_file_names504,12739 -generate_file_names(File,FileKB,FileIn,FileBG,FileOut,FileL):-generate_file_names504,12739 -generate_file_name(File,Ext,FileExt):-generate_file_name511,13019 -generate_file_name(File,Ext,FileExt):-generate_file_name511,13019 -generate_file_name(File,Ext,FileExt):-generate_file_name511,13019 -load_models(File,ModulesList):- %carica le interpretazioni, 1 alla voltaload_models516,13158 -load_models(File,ModulesList):- %carica le interpretazioni, 1 alla voltaload_models516,13158 -load_models(File,ModulesList):- %carica le interpretazioni, 1 alla voltaload_models516,13158 -read_models(Stream,[Name1|Names]):-read_models522,13312 -read_models(Stream,[Name1|Names]):-read_models522,13312 -read_models(Stream,[Name1|Names]):-read_models522,13312 -read_models(_S,[]).read_models534,13576 -read_models(_S,[]).read_models534,13576 -read_all_atoms(Stream,Name):-read_all_atoms537,13598 -read_all_atoms(Stream,Name):-read_all_atoms537,13598 -read_all_atoms(Stream,Name):-read_all_atoms537,13598 -read_all_atoms(_S,_N).read_all_atoms555,13957 -read_all_atoms(_S,_N).read_all_atoms555,13957 -write_param(initial,S):-!,write_param558,13982 -write_param(initial,S):-!,write_param558,13982 -write_param(initial,S):-!,write_param558,13982 -write_param(L,S):-write_param565,14182 -write_param(L,S):-write_param565,14182 -write_param(L,S):-write_param565,14182 -write_par([],S):-write_par570,14239 -write_par([],S):-write_par570,14239 -write_par([],S):-write_par570,14239 -write_par([[N,P]|T],S):-write_par574,14324 -write_par([[N,P]|T],S):-write_par574,14324 -write_par([[N,P]|T],S):-write_par574,14324 -write_rules([],_S).write_rules584,14523 -write_rules([],_S).write_rules584,14523 -write_rules([rule(_N,HL,BL)|T],S):-write_rules586,14544 -write_rules([rule(_N,HL,BL)|T],S):-write_rules586,14544 -write_rules([rule(_N,HL,BL)|T],S):-write_rules586,14544 -new_par([],[],[]).new_par593,14699 -new_par([],[],[]).new_par593,14699 -new_par([HP|TP],[Head:_|TO],[Head:HP|TN]):-new_par595,14719 -new_par([HP|TP],[Head:_|TO],[Head:HP|TN]):-new_par595,14719 -new_par([HP|TP],[Head:_|TO],[Head:HP|TN]):-new_par595,14719 -write_model([],_Stream):-!.write_model599,14786 -write_model([],_Stream):-!.write_model599,14786 -write_model([],_Stream):-!.write_model599,14786 -write_model([rule(_N,HL,BL)|Rest],Stream):-write_model601,14815 -write_model([rule(_N,HL,BL)|Rest],Stream):-write_model601,14815 -write_model([rule(_N,HL,BL)|Rest],Stream):-write_model601,14815 -write_disj_clause(S,(H:-[])):-!,write_disj_clause608,14991 -write_disj_clause(S,(H:-[])):-!,write_disj_clause608,14991 -write_disj_clause(S,(H:-[])):-!,write_disj_clause608,14991 -write_disj_clause(S,(H:-B)):-write_disj_clause612,15072 -write_disj_clause(S,(H:-B)):-write_disj_clause612,15072 -write_disj_clause(S,(H:-B)):-write_disj_clause612,15072 -write_head(S,[A:1.0|_Rest]):-!,write_head620,15170 -write_head(S,[A:1.0|_Rest]):-!,write_head620,15170 -write_head(S,[A:1.0|_Rest]):-!,write_head620,15170 -write_head(S,[A:P,'':_P]):-!, write_head623,15227 -write_head(S,[A:P,'':_P]):-!, write_head623,15227 -write_head(S,[A:P,'':_P]):-!, write_head623,15227 -write_head(S,[A:P]):-!,write_head626,15286 -write_head(S,[A:P]):-!,write_head626,15286 -write_head(S,[A:P]):-!,write_head626,15286 -write_head(S,[A:P|Rest]):-write_head629,15338 -write_head(S,[A:P|Rest]):-write_head629,15338 -write_head(S,[A:P|Rest]):-write_head629,15338 -write_body(S,[A]):-!,write_body634,15419 -write_body(S,[A]):-!,write_body634,15419 -write_body(S,[A]):-!,write_body634,15419 -write_body(S,[A|T]):-write_body637,15475 -write_body(S,[A|T]):-write_body637,15475 -write_body(S,[A|T]):-write_body637,15475 -list2or([],true):-!.list2or642,15545 -list2or([],true):-!.list2or642,15545 -list2or([],true):-!.list2or642,15545 -list2or([X],X):-list2or644,15567 -list2or([X],X):-list2or644,15567 -list2or([X],X):-list2or644,15567 -list2or([H|T],(H ; Ta)):-!,list2or647,15602 -list2or([H|T],(H ; Ta)):-!,list2or647,15602 -list2or([H|T],(H ; Ta)):-!,list2or647,15602 -list2and([],true):-!.list2and651,15651 -list2and([],true):-!.list2and651,15651 -list2and([],true):-!.list2and651,15651 -list2and([X],X):-list2and653,15674 -list2and([X],X):-list2and653,15674 -list2and([X],X):-list2and653,15674 -list2and([H|T],(H,Ta)):-!,list2and656,15709 -list2and([H|T],(H,Ta)):-!,list2and656,15709 -list2and([H|T],(H,Ta)):-!,list2and656,15709 -deduct([],Th,Th).deduct660,15759 -deduct([],Th,Th).deduct660,15759 -deduct([M|T],InTheory0,InTheory):-deduct662,15778 -deduct([M|T],InTheory0,InTheory):-deduct662,15778 -deduct([M|T],InTheory0,InTheory):-deduct662,15778 -get_head_atoms(O):-get_head_atoms670,15976 -get_head_atoms(O):-get_head_atoms670,15976 -get_head_atoms(O):-get_head_atoms670,15976 -generate_head([],_M,HL,HL):-!.generate_head674,16025 -generate_head([],_M,HL,HL):-!.generate_head674,16025 -generate_head([],_M,HL,HL):-!.generate_head674,16025 -generate_head([A|T],M,H0,H1):-generate_head676,16057 -generate_head([A|T],M,H0,H1):-generate_head676,16057 -generate_head([A|T],M,H0,H1):-generate_head676,16057 -sample(0,_List,[]):-!.sample688,16406 -sample(0,_List,[]):-!.sample688,16406 -sample(0,_List,[]):-!.sample688,16406 -sample(N,List,List):-sample690,16430 -sample(N,List,List):-sample690,16430 -sample(N,List,List):-sample690,16430 -sample(N,List,[El|List1]):-sample694,16481 -sample(N,List,[El|List1]):-sample694,16481 -sample(N,List,[El|List1]):-sample694,16481 -generate_body([],[]):-!.generate_body701,16611 -generate_body([],[]):-!.generate_body701,16611 -generate_body([],[]):-!.generate_body701,16611 -generate_body([(A,H)|T],[(Head:0.5:-Body)|CL0]):-generate_body703,16637 -generate_body([(A,H)|T],[(Head:0.5:-Body)|CL0]):-generate_body703,16637 -generate_body([(A,H)|T],[(Head:0.5:-Body)|CL0]):-generate_body703,16637 -variabilize((H:-B),(H1:-B1)):-variabilize722,17240 -variabilize((H:-B),(H1:-B1)):-variabilize722,17240 -variabilize((H:-B),(H1:-B1)):-variabilize722,17240 -variabilize_list([],[],A,A,_M).variabilize_list726,17318 -variabilize_list([],[],A,A,_M).variabilize_list726,17318 -variabilize_list([H|T],[H1|T1],A0,A,M):-variabilize_list728,17351 -variabilize_list([H|T],[H1|T1],A0,A,M):-variabilize_list728,17351 -variabilize_list([H|T],[H1|T1],A0,A,M):-variabilize_list728,17351 -variabilize_args([],[],A,A).variabilize_args735,17504 -variabilize_args([],[],A,A).variabilize_args735,17504 -variabilize_args([C|T],[V|TV],A0,A):-variabilize_args737,17534 -variabilize_args([C|T],[V|TV],A0,A):-variabilize_args737,17534 -variabilize_args([C|T],[V|TV],A0,A):-variabilize_args737,17534 -variabilize_args([C|T],[V|TV],A0,A):-variabilize_args741,17624 -variabilize_args([C|T],[V|TV],A0,A):-variabilize_args741,17624 -variabilize_args([C|T],[V|TV],A0,A):-variabilize_args741,17624 -cycle_modeb(ArgsTypes,Args,ArgsTypes,Args,_BL,L,L,L,_,_M):-!.cycle_modeb745,17701 -cycle_modeb(ArgsTypes,Args,ArgsTypes,Args,_BL,L,L,L,_,_M):-!.cycle_modeb745,17701 -cycle_modeb(ArgsTypes,Args,ArgsTypes,Args,_BL,L,L,L,_,_M):-!.cycle_modeb745,17701 -cycle_modeb(_ArgsTypes,_Args,_ArgsTypes1,_Args1,_BL,_L,L,L,0,_M):-!.cycle_modeb747,17764 -cycle_modeb(_ArgsTypes,_Args,_ArgsTypes1,_Args1,_BL,_L,L,L,0,_M):-!.cycle_modeb747,17764 -cycle_modeb(_ArgsTypes,_Args,_ArgsTypes1,_Args1,_BL,_L,L,L,0,_M):-!.cycle_modeb747,17764 -cycle_modeb(ArgsTypes,Args,_ArgsTypes0,_Args0,BL,_L0,L1,L,D,M):-cycle_modeb749,17834 -cycle_modeb(ArgsTypes,Args,_ArgsTypes0,_Args0,BL,_L0,L1,L,D,M):-cycle_modeb749,17834 -cycle_modeb(ArgsTypes,Args,_ArgsTypes0,_Args0,BL,_L0,L1,L,D,M):-cycle_modeb749,17834 -find_atoms([],ArgsTypes,Args,ArgsTypes,Args,L,L,_M).find_atoms755,18036 -find_atoms([],ArgsTypes,Args,ArgsTypes,Args,L,L,_M).find_atoms755,18036 -find_atoms([(R,H)|T],ArgsTypes0,Args0,ArgsTypes,Args,L0,L1,M):-find_atoms757,18090 -find_atoms([(R,H)|T],ArgsTypes0,Args0,ArgsTypes,Args,L0,L1,M):-find_atoms757,18090 -find_atoms([(R,H)|T],ArgsTypes0,Args0,ArgsTypes,Args,L0,L1,M):-find_atoms757,18090 -call_atoms([],A,A).call_atoms773,18502 -call_atoms([],A,A).call_atoms773,18502 -call_atoms([H|T],A0,A):-call_atoms775,18523 -call_atoms([H|T],A0,A):-call_atoms775,18523 -call_atoms([H|T],A0,A):-call_atoms775,18523 -extract_output_args([],_ArgsT,ArgsTypes,Args,ArgsTypes,Args).extract_output_args781,18609 -extract_output_args([],_ArgsT,ArgsTypes,Args,ArgsTypes,Args).extract_output_args781,18609 -extract_output_args([H|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args783,18672 -extract_output_args([H|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args783,18672 -extract_output_args([H|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args783,18672 -add_const([],[],ArgsTypes,Args,ArgsTypes,Args).add_const789,18886 -add_const([],[],ArgsTypes,Args,ArgsTypes,Args).add_const789,18886 -add_const([_A|T],[+_T|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const791,18935 -add_const([_A|T],[+_T|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const791,18935 -add_const([_A|T],[+_T|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const791,18935 -add_const([A|T],[-Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-add_const794,19050 -add_const([A|T],[-Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-add_const794,19050 -add_const([A|T],[-Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-add_const794,19050 -already_present([+T|_TT],[C|_TC],C,T):-!.already_present805,19318 -already_present([+T|_TT],[C|_TC],C,T):-!.already_present805,19318 -already_present([+T|_TT],[C|_TC],C,T):-!.already_present805,19318 -already_present([_|TT],[_|TC],C,T):-already_present807,19361 -already_present([_|TT],[_|TC],C,T):-already_present807,19361 -already_present([_|TT],[_|TC],C,T):-already_present807,19361 -instantiate_query(ArgsT,ArgsTypes,Args,F,M,A):-instantiate_query811,19430 -instantiate_query(ArgsT,ArgsTypes,Args,F,M,A):-instantiate_query811,19430 -instantiate_query(ArgsT,ArgsTypes,Args,F,M,A):-instantiate_query811,19430 -instantiate_input([],_AT,_A,[]).instantiate_input816,19548 -instantiate_input([],_AT,_A,[]).instantiate_input816,19548 -instantiate_input([-_Type|T],AT,A,[_V|TA]):-!,instantiate_input818,19582 -instantiate_input([-_Type|T],AT,A,[_V|TA]):-!,instantiate_input818,19582 -instantiate_input([-_Type|T],AT,A,[_V|TA]):-!,instantiate_input818,19582 -instantiate_input([+Type|T],AT,A,[H|TA]):-instantiate_input821,19662 -instantiate_input([+Type|T],AT,A,[H|TA]):-instantiate_input821,19662 -instantiate_input([+Type|T],AT,A,[H|TA]):-instantiate_input821,19662 -find_val([T|_TT],[A|_TA],T,A).find_val826,19765 -find_val([T|_TT],[A|_TA],T,A).find_val826,19765 -find_val([_T|TT],[_A|TA],T,A):-find_val828,19797 -find_val([_T|TT],[_A|TA],T,A):-find_val828,19797 -find_val([_T|TT],[_A|TA],T,A):-find_val828,19797 -get_output_atoms(O):-get_output_atoms832,19854 -get_output_atoms(O):-get_output_atoms832,19854 -get_output_atoms(O):-get_output_atoms832,19854 -generate_goal([],_H,G,G):-!.generate_goal836,19914 -generate_goal([],_H,G,G):-!.generate_goal836,19914 -generate_goal([],_H,G,G):-!.generate_goal836,19914 -generate_goal([P/A|T],H,G0,G1):-generate_goal838,19944 -generate_goal([P/A|T],H,G0,G1):-generate_goal838,19944 -generate_goal([P/A|T],H,G0,G1):-generate_goal838,19944 - -packages/cplint/slipcover/ai_train.l,0 - -packages/cplint/slipcover/cll1.pl,0 - -packages/cplint/slipcover/hep1.l,0 - -packages/cplint/slipcover/revise_sl.pl,20607 -theory_revisions_op(Theory,TheoryRevs):-theory_revisions_op15,257 -theory_revisions_op(Theory,TheoryRevs):-theory_revisions_op15,257 -theory_revisions_op(Theory,TheoryRevs):-theory_revisions_op15,257 -theory_revisions_op(_Theory,[]).theory_revisions_op18,365 -theory_revisions_op(_Theory,[]).theory_revisions_op18,365 -theory_revisions(Theory,TheoryRevs):-theory_revisions21,400 -theory_revisions(Theory,TheoryRevs):-theory_revisions21,400 -theory_revisions(Theory,TheoryRevs):-theory_revisions21,400 -apply_operators([],_Theory,[]).apply_operators26,533 -apply_operators([],_Theory,[]).apply_operators26,533 -apply_operators([add(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators28,566 -apply_operators([add(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators28,566 -apply_operators([add(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators28,566 -apply_operators([add_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators33,744 -apply_operators([add_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators33,744 -apply_operators([add_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators33,744 -apply_operators([remove_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators39,980 -apply_operators([remove_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators39,980 -apply_operators([remove_body(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators39,980 -apply_operators([add_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators45,1219 -apply_operators([add_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators45,1219 -apply_operators([add_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators45,1219 -apply_operators([remove_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators51,1455 -apply_operators([remove_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators51,1455 -apply_operators([remove_head(Rule1,Rule2,_A)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators51,1455 -apply_operators([remove(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators57,1694 -apply_operators([remove(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators57,1694 -apply_operators([remove(Rule)|RestOps],Theory,[NewTheory|RestTheory]) :-apply_operators57,1694 -revise_theory(Theory,Ref):-revise_theory63,1881 -revise_theory(Theory,Ref):-revise_theory63,1881 -revise_theory(Theory,Ref):-revise_theory63,1881 -revise_theory(Theory,Ref):-revise_theory66,1943 -revise_theory(Theory,Ref):-revise_theory66,1943 -revise_theory(Theory,Ref):-revise_theory66,1943 -generalize_theory(Theory,Ref):-generalize_theory70,2006 -generalize_theory(Theory,Ref):-generalize_theory70,2006 -generalize_theory(Theory,Ref):-generalize_theory70,2006 -generalize_theory(Theory,Ref):-generalize_theory75,2113 -generalize_theory(Theory,Ref):-generalize_theory75,2113 -generalize_theory(Theory,Ref):-generalize_theory75,2113 -generalize_rule(Rule,Ref):-generalize_rule82,2219 -generalize_rule(Rule,Ref):-generalize_rule82,2219 -generalize_rule(Rule,Ref):-generalize_rule82,2219 -generalize_rule(Rule,Ref):-generalize_rule85,2277 -generalize_rule(Rule,Ref):-generalize_rule85,2277 -generalize_rule(Rule,Ref):-generalize_rule85,2277 -add_rule(add(rule(ID,Head,[],Lits))):-add_rule89,2336 -add_rule(add(rule(ID,Head,[],Lits))):-add_rule89,2336 -add_rule(add(rule(ID,Head,[],Lits))):-add_rule89,2336 -add_rule(add(rule(ID,Head,[],true))):-add_rule105,2704 -add_rule(add(rule(ID,Head,[],true))):-add_rule105,2704 -add_rule(add(rule(ID,Head,[],true))):-add_rule105,2704 -generate_head([H|_T],_P,[H1:0.5,'':0.5]):-generate_head114,2879 -generate_head([H|_T],_P,[H1:0.5,'':0.5]):-generate_head114,2879 -generate_head([H|_T],_P,[H1:0.5,'':0.5]):-generate_head114,2879 -generate_head([_H|T],P,Head):-generate_head120,3002 -generate_head([_H|T],P,Head):-generate_head120,3002 -generate_head([_H|T],P,Head):-generate_head120,3002 -generalize_head(Rule,Ref):-generalize_head124,3062 -generalize_head(Rule,Ref):-generalize_head124,3062 -generalize_head(Rule,Ref):-generalize_head124,3062 -generalize_head1(LH,LH1,NH):-generalize_head1130,3197 -generalize_head1(LH,LH1,NH):-generalize_head1130,3197 -generalize_head1(LH,LH1,NH):-generalize_head1130,3197 -generalize_head2([X|_R],LH,LH1,PH) :-generalize_head2135,3298 -generalize_head2([X|_R],LH,LH1,PH) :-generalize_head2135,3298 -generalize_head2([X|_R],LH,LH1,PH) :-generalize_head2135,3298 -generalize_head2([_X|R],LH,LH1) :-generalize_head2149,3603 -generalize_head2([_X|R],LH,LH1) :-generalize_head2149,3603 -generalize_head2([_X|R],LH,LH1) :-generalize_head2149,3603 -add_to_head(['':PN],NH,At,[At:PA,'':PN1]):-!,add_to_head153,3670 -add_to_head(['':PN],NH,At,[At:PA,'':PN1]):-!,add_to_head153,3670 -add_to_head(['':PN],NH,At,[At:PA,'':PN1]):-!,add_to_head153,3670 -add_to_head([H:PH|T],NH,At,[H:PH1|T1]):-add_to_head157,3758 -add_to_head([H:PH|T],NH,At,[H:PH1|T1]):-add_to_head157,3758 -add_to_head([H:PH|T],NH,At,[H:PH1|T1]):-add_to_head157,3758 -get_module_var(LH,Module):-get_module_var162,3853 -get_module_var(LH,Module):-get_module_var162,3853 -get_module_var(LH,Module):-get_module_var162,3853 -generalize_body(Rule,Ref):-generalize_body167,3924 -generalize_body(Rule,Ref):-generalize_body167,3924 -generalize_body(Rule,Ref):-generalize_body167,3924 -specialize_theory(Theory,Ref):-specialize_theory176,4121 -specialize_theory(Theory,Ref):-specialize_theory176,4121 -specialize_theory(Theory,Ref):-specialize_theory176,4121 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule183,4313 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule183,4313 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule183,4313 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule205,4919 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule205,4919 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule205,4919 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule229,5588 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule229,5588 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule229,5588 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule251,6176 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule251,6176 -specialize_rule(Rule,SpecRule,Lit):-specialize_rule251,6176 -specialize_rule(rule(ID,LH,BL,Lits),rule(ID,LH2,BL,Lits),Lit):-specialize_rule257,6356 -specialize_rule(rule(ID,LH,BL,Lits),rule(ID,LH2,BL,Lits),Lit):-specialize_rule257,6356 -specialize_rule(rule(ID,LH,BL,Lits),rule(ID,LH2,BL,Lits),Lit):-specialize_rule257,6356 -update_head1([],_N,[]):-!.update_head1264,6542 -update_head1([],_N,[]):-!.update_head1264,6542 -update_head1([],_N,[]):-!.update_head1264,6542 -update_head1([H:_P|T],N,[H:P|T1]):-update_head1266,6570 -update_head1([H:_P|T],N,[H:P|T1]):-update_head1266,6570 -update_head1([H:_P|T],N,[H:P|T1]):-update_head1266,6570 -write_list([A]):-!,write_list270,6655 -write_list([A]):-!,write_list270,6655 -write_list([A]):-!,write_list270,6655 -write_list([A|T]):-write_list272,6715 -write_list([A|T]):-write_list272,6715 -write_list([A|T]):-write_list272,6715 -banned_clause(H,B):-banned_clause277,6796 -banned_clause(H,B):-banned_clause277,6796 -banned_clause(H,B):-banned_clause277,6796 -mysublist([],_).mysublist284,6900 -mysublist([],_).mysublist284,6900 -mysublist([H|T],L):-mysublist286,6918 -mysublist([H|T],L):-mysublist286,6918 -mysublist([H|T],L):-mysublist286,6918 -check_ref(H,B):-check_ref291,6974 -check_ref(H,B):-check_ref291,6974 -check_ref(H,B):-check_ref291,6974 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule300,7105 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule300,7105 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule300,7105 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule315,7529 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule315,7529 -specialize_rule([Lit|_RLit],Rule,SpecRul,SLit):-specialize_rule315,7529 -specialize_rule([_|RLit],Rule,SpecRul,Lit):-specialize_rule329,7887 -specialize_rule([_|RLit],Rule,SpecRul,Lit):-specialize_rule329,7887 -specialize_rule([_|RLit],Rule,SpecRul,Lit):-specialize_rule329,7887 -specialize_rule_la([],_LH1,BL1,BL1).specialize_rule_la333,7976 -specialize_rule_la([],_LH1,BL1,BL1).specialize_rule_la333,7976 -specialize_rule_la([Lit1|T],LH1,BL1,BL3):-specialize_rule_la335,8014 -specialize_rule_la([Lit1|T],LH1,BL1,BL3):-specialize_rule_la335,8014 -specialize_rule_la([Lit1|T],LH1,BL1,BL3):-specialize_rule_la335,8014 -specialize_rule_la_bot([],Bot,Bot,BL,BL).specialize_rule_la_bot344,8225 -specialize_rule_la_bot([],Bot,Bot,BL,BL).specialize_rule_la_bot344,8225 -specialize_rule_la_bot([Lit|T],Bot0,Bot,BL1,BL3):-specialize_rule_la_bot346,8268 -specialize_rule_la_bot([Lit|T],Bot0,Bot,BL1,BL3):-specialize_rule_la_bot346,8268 -specialize_rule_la_bot([Lit|T],Bot0,Bot,BL1,BL3):-specialize_rule_la_bot346,8268 -remove_prob(['':_P],[]):-!.remove_prob353,8446 -remove_prob(['':_P],[]):-!.remove_prob353,8446 -remove_prob(['':_P],[]):-!.remove_prob353,8446 -remove_prob([X:_|R],[X|R1]):-remove_prob355,8475 -remove_prob([X:_|R],[X|R1]):-remove_prob355,8475 -remove_prob([X:_|R],[X|R1]):-remove_prob355,8475 -specialize_rule1(Lit,Lits,SpecLit):-specialize_rule1359,8528 -specialize_rule1(Lit,Lits,SpecLit):-specialize_rule1359,8528 -specialize_rule1(Lit,Lits,SpecLit):-specialize_rule1359,8528 -convert_to_input_vars([],[]):-!.convert_to_input_vars368,8767 -convert_to_input_vars([],[]):-!.convert_to_input_vars368,8767 -convert_to_input_vars([],[]):-!.convert_to_input_vars368,8767 -convert_to_input_vars([+T|RT],[+T|RT1]):-convert_to_input_vars370,8801 -convert_to_input_vars([+T|RT],[+T|RT1]):-convert_to_input_vars370,8801 -convert_to_input_vars([+T|RT],[+T|RT1]):-convert_to_input_vars370,8801 -convert_to_input_vars([-T|RT],[+T|RT1]):-convert_to_input_vars374,8882 -convert_to_input_vars([-T|RT],[+T|RT1]):-convert_to_input_vars374,8882 -convert_to_input_vars([-T|RT],[+T|RT1]):-convert_to_input_vars374,8882 -member_eq(X,[Y|_List]) :-member_eq378,8959 -member_eq(X,[Y|_List]) :-member_eq378,8959 -member_eq(X,[Y|_List]) :-member_eq378,8959 -member_eq(X,[_|List]) :-member_eq381,8996 -member_eq(X,[_|List]) :-member_eq381,8996 -member_eq(X,[_|List]) :-member_eq381,8996 -remove_eq(X,[Y|R],R):-remove_eq385,9044 -remove_eq(X,[Y|R],R):-remove_eq385,9044 -remove_eq(X,[Y|R],R):-remove_eq385,9044 -remove_eq(X,[_|R],R1):-remove_eq389,9083 -remove_eq(X,[_|R],R1):-remove_eq389,9083 -remove_eq(X,[_|R],R1):-remove_eq389,9083 -linked_clause(X):-linked_clause393,9130 -linked_clause(X):-linked_clause393,9130 -linked_clause(X):-linked_clause393,9130 -linked_clause([],_).linked_clause396,9173 -linked_clause([],_).linked_clause396,9173 -linked_clause([L|R],PrevLits):-linked_clause398,9195 -linked_clause([L|R],PrevLits):-linked_clause398,9195 -linked_clause([L|R],PrevLits):-linked_clause398,9195 -linked([],_).linked405,9363 -linked([],_).linked405,9363 -linked([X|R],L) :-linked407,9378 -linked([X|R],L) :-linked407,9378 -linked([X|R],L) :-linked407,9378 -input_variables(\+ LitM,InputVars):-input_variables413,9439 -input_variables(\+ LitM,InputVars):-input_variables413,9439 -input_variables(\+ LitM,InputVars):-input_variables413,9439 -input_variables(LitM,InputVars):-input_variables426,9718 -input_variables(LitM,InputVars):-input_variables426,9718 -input_variables(LitM,InputVars):-input_variables426,9718 -input_variables(LitM,InputVars):-input_variables434,9883 -input_variables(LitM,InputVars):-input_variables434,9883 -input_variables(LitM,InputVars):-input_variables434,9883 -input_vars(Lit,Lit1,InputVars):-input_vars442,10048 -input_vars(Lit,Lit1,InputVars):-input_vars442,10048 -input_vars(Lit,Lit1,InputVars):-input_vars442,10048 -input_vars1([],_,[]).input_vars1448,10162 -input_vars1([],_,[]).input_vars1448,10162 -input_vars1([V|RV],[+_T|RT],[V|RV1]):-input_vars1450,10185 -input_vars1([V|RV],[+_T|RT],[V|RV1]):-input_vars1450,10185 -input_vars1([V|RV],[+_T|RT],[V|RV1]):-input_vars1450,10185 -input_vars1([_V|RV],[_|RT],RV1):-input_vars1454,10256 -input_vars1([_V|RV],[_|RT],RV1):-input_vars1454,10256 -input_vars1([_V|RV],[_|RT],RV1):-input_vars1454,10256 -exctract_type_vars([],[]).exctract_type_vars458,10318 -exctract_type_vars([],[]).exctract_type_vars458,10318 -exctract_type_vars([Lit|RestLit],TypeVars):-exctract_type_vars460,10346 -exctract_type_vars([Lit|RestLit],TypeVars):-exctract_type_vars460,10346 -exctract_type_vars([Lit|RestLit],TypeVars):-exctract_type_vars460,10346 -take_mode(Lit):-take_mode472,10610 -take_mode(Lit):-take_mode472,10610 -take_mode(Lit):-take_mode472,10610 -take_mode(Lit):-take_mode475,10646 -take_mode(Lit):-take_mode475,10646 -take_mode(Lit):-take_mode475,10646 -take_mode(Lit):-take_mode478,10682 -take_mode(Lit):-take_mode478,10682 -take_mode(Lit):-take_mode478,10682 -type_vars([],[],[]).type_vars482,10718 -type_vars([],[],[]).type_vars482,10718 -type_vars([V|RV],[+T|RT],[V=T|RTV]):-type_vars484,10740 -type_vars([V|RV],[+T|RT],[V=T|RTV]):-type_vars484,10740 -type_vars([V|RV],[+T|RT],[V=T|RTV]):-type_vars484,10740 -type_vars([V|RV],[-T|RT],[V=T|RTV]):-atom(T),!,type_vars488,10808 -type_vars([V|RV],[-T|RT],[V=T|RTV]):-atom(T),!,type_vars488,10808 -type_vars([V|RV],[-T|RT],[V=T|RTV]):-atom(T),!,type_vars488,10808 -type_vars([_V|RV],[_T|RT],RTV):-type_vars491,10881 -type_vars([_V|RV],[_T|RT],RTV):-type_vars491,10881 -type_vars([_V|RV],[_T|RT],RTV):-type_vars491,10881 -take_var_args([],_,[]).take_var_args495,10940 -take_var_args([],_,[]).take_var_args495,10940 -take_var_args([+T|RT],TypeVars,[V|RV]):-take_var_args497,10965 -take_var_args([+T|RT],TypeVars,[V|RV]):-take_var_args497,10965 -take_var_args([+T|RT],TypeVars,[V|RV]):-take_var_args497,10965 -take_var_args([-T|RT],TypeVars,[_V|RV]):-take_var_args502,11069 -take_var_args([-T|RT],TypeVars,[_V|RV]):-take_var_args502,11069 -take_var_args([-T|RT],TypeVars,[_V|RV]):-take_var_args502,11069 -take_var_args([-T|RT],TypeVars,[V|RV]):-take_var_args506,11156 -take_var_args([-T|RT],TypeVars,[V|RV]):-take_var_args506,11156 -take_var_args([-T|RT],TypeVars,[V|RV]):-take_var_args506,11156 -take_var_args([T|RT],TypeVars,[T|RV]):-take_var_args510,11255 -take_var_args([T|RT],TypeVars,[T|RV]):-take_var_args510,11255 -take_var_args([T|RT],TypeVars,[T|RV]):-take_var_args510,11255 -choose_rule(Theory,Rule):-choose_rule515,11371 -choose_rule(Theory,Rule):-choose_rule515,11371 -choose_rule(Theory,Rule):-choose_rule515,11371 -add_rule(Theory,add(rule(ID,H,[],true))):-add_rule519,11423 -add_rule(Theory,add(rule(ID,H,[],true))):-add_rule519,11423 -add_rule(Theory,add(rule(ID,H,[],true))):-add_rule519,11423 -add_rule(Theory,TheoryGen):-add_rule527,11611 -add_rule(Theory,TheoryGen):-add_rule527,11611 -add_rule(Theory,TheoryGen):-add_rule527,11611 -add_rule([X|_R],Theory,TheoryGen) :-add_rule531,11709 -add_rule([X|_R],Theory,TheoryGen) :-add_rule531,11709 -add_rule([X|_R],Theory,TheoryGen) :-add_rule531,11709 -add_rule([_X|R],Theory,TheoryGen) :-add_rule540,11928 -add_rule([_X|R],Theory,TheoryGen) :-add_rule540,11928 -add_rule([_X|R],Theory,TheoryGen) :-add_rule540,11928 -add_probs([],['':P],P):-!.add_probs544,11999 -add_probs([],['':P],P):-!.add_probs544,11999 -add_probs([],['':P],P):-!.add_probs544,11999 -add_probs([H|T],[H:P|T1],P):-add_probs546,12027 -add_probs([H|T],[H:P|T1],P):-add_probs546,12027 -add_probs([H|T],[H:P|T1],P):-add_probs546,12027 -extract_fancy_vars(List,Vars):-extract_fancy_vars550,12080 -extract_fancy_vars(List,Vars):-extract_fancy_vars550,12080 -extract_fancy_vars(List,Vars):-extract_fancy_vars550,12080 -fancy_vars([],_,[]).fancy_vars555,12172 -fancy_vars([],_,[]).fancy_vars555,12172 -fancy_vars([X|R],N,[NN2=X|R1]):-fancy_vars557,12194 -fancy_vars([X|R],N,[NN2=X|R1]):-fancy_vars557,12194 -fancy_vars([X|R],N,[NN2=X|R1]):-fancy_vars557,12194 -delete_one([X|R],R,X).delete_one565,12321 -delete_one([X|R],R,X).delete_one565,12321 -delete_one([X|R],[X|R1],D):-delete_one567,12345 -delete_one([X|R],[X|R1],D):-delete_one567,12345 -delete_one([X|R],[X|R1],D):-delete_one567,12345 -remove_last([_X],[]) :-remove_last571,12398 -remove_last([_X],[]) :-remove_last571,12398 -remove_last([_X],[]) :-remove_last571,12398 -remove_last([X|R],[X|R1]):-remove_last574,12428 -remove_last([X|R],[X|R1]):-remove_last574,12428 -remove_last([X|R],[X|R1]):-remove_last574,12428 -delete_matching([],_El,[]).delete_matching578,12479 -delete_matching([],_El,[]).delete_matching578,12479 -delete_matching([El|T],El,T1):-!,delete_matching580,12508 -delete_matching([El|T],El,T1):-!,delete_matching580,12508 -delete_matching([El|T],El,T1):-!,delete_matching580,12508 -delete_matching([H|T],El,[H|T1]):-delete_matching583,12571 -delete_matching([H|T],El,[H|T1]):-delete_matching583,12571 -delete_matching([H|T],El,[H|T1]):-delete_matching583,12571 -dv(H,B,DV1):- %DV1: returns a list of couples (Variable, Max depth)dv588,12706 -dv(H,B,DV1):- %DV1: returns a list of couples (Variable, Max depth)dv588,12706 -dv(H,B,DV1):- %DV1: returns a list of couples (Variable, Max depth)dv588,12706 -input_variables_b(LitM,InputVars):-input_variables_b595,12901 -input_variables_b(LitM,InputVars):-input_variables_b595,12901 -input_variables_b(LitM,InputVars):-input_variables_b595,12901 -head_depth([],[]).head_depth606,13134 -head_depth([],[]).head_depth606,13134 -head_depth([V|R],[[V,0]|R1]):-head_depth607,13153 -head_depth([V|R],[[V,0]|R1]):-head_depth607,13153 -head_depth([V|R],[[V,0]|R1]):-head_depth607,13153 -var_depth([],PrevDs1,PrevDs1,MD,MD):-!.var_depth611,13263 -var_depth([],PrevDs1,PrevDs1,MD,MD):-!.var_depth611,13263 -var_depth([],PrevDs1,PrevDs1,MD,MD):-!.var_depth611,13263 -var_depth([L|R],PrevDs,PrevDs1,_MD,MD):- %L = a body literal, MD = maximum depth set by the uservar_depth613,13304 -var_depth([L|R],PrevDs,PrevDs1,_MD,MD):- %L = a body literal, MD = maximum depth set by the uservar_depth613,13304 -var_depth([L|R],PrevDs,PrevDs1,_MD,MD):- %L = a body literal, MD = maximum depth set by the uservar_depth613,13304 -get_max([],_,Ds,Ds).get_max622,13829 -get_max([],_,Ds,Ds).get_max622,13829 -get_max([(MD-DsH)|T],MD0,_Ds0,Ds):-get_max624,13851 -get_max([(MD-DsH)|T],MD0,_Ds0,Ds):-get_max624,13851 -get_max([(MD-DsH)|T],MD0,_Ds0,Ds):-get_max624,13851 -get_max([_H|T],MD,Ds0,Ds):-get_max628,13924 -get_max([_H|T],MD,Ds0,Ds):-get_max628,13924 -get_max([_H|T],MD,Ds0,Ds):-get_max628,13924 -output_vars(OutVars,[],OutVars):-!.output_vars632,13977 -output_vars(OutVars,[],OutVars):-!.output_vars632,13977 -output_vars(OutVars,[],OutVars):-!.output_vars632,13977 -output_vars(BodyAtomVars,[I|InputVars],OutVars):- output_vars633,14013 -output_vars(BodyAtomVars,[I|InputVars],OutVars):- output_vars633,14013 -output_vars(BodyAtomVars,[I|InputVars],OutVars):- output_vars633,14013 -depth_InputVars([],_,D,D).depth_InputVars638,14229 -depth_InputVars([],_,D,D).depth_InputVars638,14229 -depth_InputVars([I|Input],PrevDs,D0,D):-depth_InputVars639,14256 -depth_InputVars([I|Input],PrevDs,D0,D):-depth_InputVars639,14256 -depth_InputVars([I|Input],PrevDs,D0,D):-depth_InputVars639,14256 -member_l([[L,D]|_P],I,D):- member_l648,14408 -member_l([[L,D]|_P],I,D):- member_l648,14408 -member_l([[L,D]|_P],I,D):- member_l648,14408 -member_l([_|P],I,D):-member_l650,14450 -member_l([_|P],I,D):-member_l650,14450 -member_l([_|P],I,D):-member_l650,14450 -compute_depth([],_,PD,PD):-!. compute_depth653,14495 -compute_depth([],_,PD,PD):-!. compute_depth653,14495 -compute_depth([],_,PD,PD):-!. compute_depth653,14495 -compute_depth([O|Output],D,PD,RestO):- compute_depth654,14528 -compute_depth([O|Output],D,PD,RestO):- compute_depth654,14528 -compute_depth([O|Output],D,PD,RestO):- compute_depth654,14528 -compute_depth([O|Output],D,PD,[[O,D]|RestO]):- compute_depth658,14631 -compute_depth([O|Output],D,PD,[[O,D]|RestO]):- compute_depth658,14631 -compute_depth([O|Output],D,PD,[[O,D]|RestO]):- compute_depth658,14631 -exceed_depth([],_):-!.exceed_depth664,14770 -exceed_depth([],_):-!.exceed_depth664,14770 -exceed_depth([],_):-!.exceed_depth664,14770 -exceed_depth([H|T],MD):-exceed_depth665,14793 -exceed_depth([H|T],MD):-exceed_depth665,14793 -exceed_depth([H|T],MD):-exceed_depth665,14793 - -packages/cplint/slipcover/slipcover.pl,39369 -setting(epsilon_em,0.0001).setting18,260 -setting(epsilon_em,0.0001).setting18,260 -setting(epsilon_em_fraction,0.00001).setting19,288 -setting(epsilon_em_fraction,0.00001).setting19,288 -setting(eps,0.0001).setting20,326 -setting(eps,0.0001).setting20,326 -setting(eps_f,0.00001).setting21,347 -setting(eps_f,0.00001).setting21,347 -setting(epsilon_sem,2).setting25,487 -setting(epsilon_sem,2).setting25,487 -setting(random_restarts_REFnumber,1).setting28,550 -setting(random_restarts_REFnumber,1).setting28,550 -setting(random_restarts_number,1).setting29,588 -setting(random_restarts_number,1).setting29,588 -setting(iterREF,-1).setting30,623 -setting(iterREF,-1).setting30,623 -setting(iter,-1).setting31,644 -setting(iter,-1).setting31,644 -setting(examples,atoms).setting32,662 -setting(examples,atoms).setting32,662 -setting(group,1).setting33,687 -setting(group,1).setting33,687 -setting(d,1). setting34,705 -setting(d,1). setting34,705 -setting(verbosity,1).setting35,721 -setting(verbosity,1).setting35,721 -setting(logzero,log(0.000001)).setting36,743 -setting(logzero,log(0.000001)).setting36,743 -setting(megaex_bottom,1). setting37,775 -setting(megaex_bottom,1). setting37,775 -setting(initial_clauses_per_megaex,1). setting38,802 -setting(initial_clauses_per_megaex,1). setting38,802 -setting(max_iter,10).setting39,843 -setting(max_iter,10).setting39,843 -setting(max_iter_structure,10000).setting40,865 -setting(max_iter_structure,10000).setting40,865 -setting(max_var,4).setting41,900 -setting(max_var,4).setting41,900 -setting(max_rules,10).setting42,920 -setting(max_rules,10).setting42,920 -setting(maxdepth_var,2).setting43,943 -setting(maxdepth_var,2).setting43,943 -setting(beamsize,100).setting44,968 -setting(beamsize,100).setting44,968 -setting(background_clauses,50).setting45,991 -setting(background_clauses,50).setting45,991 -setting(specialization,bottom).setting47,1024 -setting(specialization,bottom).setting47,1024 -setting(seed,rand(10,1231,30322)). setting51,1122 -setting(seed,rand(10,1231,30322)). setting51,1122 -setting(score,ll).setting52,1159 -setting(score,ll).setting52,1159 -sl(File):-sl55,1210 -sl(File):-sl55,1210 -sl(File):-sl55,1210 -gen_fixed([],[]).gen_fixed108,2612 -gen_fixed([],[]).gen_fixed108,2612 -gen_fixed([(H,B,BL)|T],[rule(R,H,B,BL)|T1]):-gen_fixed110,2631 -gen_fixed([(H,B,BL)|T],[rule(R,H,B,BL)|T1]):-gen_fixed110,2631 -gen_fixed([(H,B,BL)|T],[rule(R,H,B,BL)|T1]):-gen_fixed110,2631 -learn_struct_only(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct_only114,2725 -learn_struct_only(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct_only114,2725 -learn_struct_only(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct_only114,2725 -learn_struct(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct138,3584 -learn_struct(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct138,3584 -learn_struct(DB,R1,R,Score):- %+R1:initial theory of the form [rule(NR,[h],[b]],...], -R:final theory of the same form, -CLLlearn_struct138,3584 -pick_first(0,_,[]):-!.pick_first164,4546 -pick_first(0,_,[]):-!.pick_first164,4546 -pick_first(0,_,[]):-!.pick_first164,4546 -pick_first(_,[],[]):-!.pick_first166,4570 -pick_first(_,[],[]):-!.pick_first166,4570 -pick_first(_,[],[]):-!.pick_first166,4570 -pick_first(N,[(H,_S)|T],[H|T1]):-pick_first168,4595 -pick_first(N,[(H,_S)|T],[H|T1]):-pick_first168,4595 -pick_first(N,[(H,_S)|T],[H|T1]):-pick_first168,4595 -remove_score([],[]).remove_score172,4666 -remove_score([],[]).remove_score172,4666 -remove_score([(H,_S)|T],[H|T1]):-remove_score174,4688 -remove_score([(H,_S)|T],[H|T1]):-remove_score174,4688 -remove_score([(H,_S)|T],[H|T1]):-remove_score174,4688 -cycle_structure([],R,S,_SP,_DB,R,S,_I):-!. %empty beamcycle_structure177,4745 -cycle_structure([],R,S,_SP,_DB,R,S,_I):-!. %empty beamcycle_structure177,4745 -cycle_structure([],R,S,_SP,_DB,R,S,_I):-!. %empty beamcycle_structure177,4745 -cycle_structure(_CL,R,S,_SP,_DB,R,S,0):-!. %0 iterationscycle_structure179,4802 -cycle_structure(_CL,R,S,_SP,_DB,R,S,0):-!. %0 iterationscycle_structure179,4802 -cycle_structure(_CL,R,S,_SP,_DB,R,S,0):-!. %0 iterationscycle_structure179,4802 -cycle_structure([(RH,_CLL)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure181,4861 -cycle_structure([(RH,_CLL)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure181,4861 -cycle_structure([(RH,_CLL)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure181,4861 -cycle_structure([(RH,_Score)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure199,5269 -cycle_structure([(RH,_Score)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure199,5269 -cycle_structure([(RH,_Score)|RT],R0,S0,SP0,DB,R,S,M):-cycle_structure199,5269 -em(File):-em244,6542 -em(File):-em244,6542 -em(File):-em244,6542 -learn_params(DB,R0,R,Score):- %Parameter Learninglearn_params280,7467 -learn_params(DB,R0,R,Score):- %Parameter Learninglearn_params280,7467 -learn_params(DB,R0,R,Score):- %Parameter Learninglearn_params280,7467 -update_theory_par([],_Par,[]).update_theory_par305,8204 -update_theory_par([],_Par,[]).update_theory_par305,8204 -update_theory_par([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory_par307,8236 -update_theory_par([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory_par307,8236 -update_theory_par([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory_par307,8236 -update_theory_par([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory_par310,8336 -update_theory_par([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory_par310,8336 -update_theory_par([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory_par310,8336 -update_theory_par([rule(N,_H,_B,_L)|T0],Par,T):-update_theory_par313,8418 -update_theory_par([rule(N,_H,_B,_L)|T0],Par,T):-update_theory_par313,8418 -update_theory_par([rule(N,_H,_B,_L)|T0],Par,T):-update_theory_par313,8418 -update_theory_par([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory_par317,8531 -update_theory_par([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory_par317,8531 -update_theory_par([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory_par317,8531 -update_theory(R,initial,R):-!.update_theory324,8698 -update_theory(R,initial,R):-!.update_theory324,8698 -update_theory(R,initial,R):-!.update_theory324,8698 -update_theory([],_Par,[]).update_theory326,8730 -update_theory([],_Par,[]).update_theory326,8730 -update_theory([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory328,8758 -update_theory([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory328,8758 -update_theory([def_rule(H,B,L)|T0],Par,[def_rule(H,B,L)|T]):-!,update_theory328,8758 -update_theory([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory331,8850 -update_theory([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory331,8850 -update_theory([(H:-B)|T0],Par,[(H:-B)|T]):-!,update_theory331,8850 -update_theory([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory334,8924 -update_theory([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory334,8924 -update_theory([rule(N,H,B,L)|T0],Par,[rule(N,H1,B,L)|T]):-update_theory334,8924 -update_head_par([],[],[]).update_head_par340,9082 -update_head_par([],[],[]).update_head_par340,9082 -update_head_par([H:_P|T0],[HP|TP],[H:HP|T]):-update_head_par342,9110 -update_head_par([H:_P|T0],[HP|TP],[H:HP|T]):-update_head_par342,9110 -update_head_par([H:_P|T0],[HP|TP],[H:HP|T]):-update_head_par342,9110 -cycle_beam([],_DB,CL,CL,CLBG,CLBG,_M):-!.cycle_beam345,9187 -cycle_beam([],_DB,CL,CL,CLBG,CLBG,_M):-!.cycle_beam345,9187 -cycle_beam([],_DB,CL,CL,CLBG,CLBG,_M):-!.cycle_beam345,9187 -cycle_beam(_Beam,_DB,CL,CL,CLBG,CLBG,0):-!.cycle_beam347,9230 -cycle_beam(_Beam,_DB,CL,CL,CLBG,CLBG,0):-!.cycle_beam347,9230 -cycle_beam(_Beam,_DB,CL,CL,CLBG,CLBG,0):-!.cycle_beam347,9230 -cycle_beam(Beam,DB,CL0,CL,CLBG0,CLBG,M):-cycle_beam349,9275 -cycle_beam(Beam,DB,CL0,CL,CLBG0,CLBG,M):-cycle_beam349,9275 -cycle_beam(Beam,DB,CL0,CL,CLBG0,CLBG,M):-cycle_beam349,9275 -cycle_clauses([],_DB,NB,NB,CL,CL,CLBG,CLBG):-!.cycle_clauses355,9503 -cycle_clauses([],_DB,NB,NB,CL,CL,CLBG,CLBG):-!.cycle_clauses355,9503 -cycle_clauses([],_DB,NB,NB,CL,CL,CLBG,CLBG):-!.cycle_clauses355,9503 -cycle_clauses([(RH,_ScoreH)|T],DB,NB0,NB,CL0,CL,CLBG0,CLBG):-cycle_clauses357,9552 -cycle_clauses([(RH,_ScoreH)|T],DB,NB0,NB,CL0,CL,CLBG0,CLBG):-cycle_clauses357,9552 -cycle_clauses([(RH,_ScoreH)|T],DB,NB0,NB,CL0,CL,CLBG0,CLBG):-cycle_clauses357,9552 -score_clause_refinements([],_N,_NR,_DB,NB,NB,CL,CL,CLBG,CLBG).score_clause_refinements364,9952 -score_clause_refinements([],_N,_NR,_DB,NB,NB,CL,CL,CLBG,CLBG).score_clause_refinements364,9952 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- %scans the list of revised theoriesscore_clause_refinements366,10016 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- %scans the list of revised theoriesscore_clause_refinements366,10016 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- %scans the list of revised theoriesscore_clause_refinements366,10016 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- score_clause_refinements377,10497 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- score_clause_refinements377,10497 -score_clause_refinements([R1|T],Nrev,NRef,DB,NB0,NB,CL0,CL,CLBG0,CLBG):- score_clause_refinements377,10497 -range_restricted(rule(_N,HL,BL,_Lit)):-range_restricted430,12086 -range_restricted(rule(_N,HL,BL,_Lit)):-range_restricted430,12086 -range_restricted(rule(_N,HL,BL,_Lit)):-range_restricted430,12086 -sublisteq([],_).sublisteq435,12197 -sublisteq([],_).sublisteq435,12197 -sublisteq([H|T],L):-sublisteq437,12215 -sublisteq([H|T],L):-sublisteq437,12215 -sublisteq([H|T],L):-sublisteq437,12215 -target(R):-target441,12273 -target(R):-target441,12273 -target(R):-target441,12273 -get_output_preds(rule(_N,HL,_BL,_Lit),O):-get_output_preds446,12341 -get_output_preds(rule(_N,HL,_BL,_Lit),O):-get_output_preds446,12341 -get_output_preds(rule(_N,HL,_BL,_Lit),O):-get_output_preds446,12341 -scan_head(['':_],O,O):-!.scan_head449,12407 -scan_head(['':_],O,O):-!.scan_head449,12407 -scan_head(['':_],O,O):-!.scan_head449,12407 -scan_head([],O,O):-!.scan_head450,12433 -scan_head([],O,O):-!.scan_head450,12433 -scan_head([],O,O):-!.scan_head450,12433 -scan_head([H:_P|T],O0,O):-scan_head451,12455 -scan_head([H:_P|T],O0,O):-scan_head451,12455 -scan_head([H:_P|T],O0,O):-scan_head451,12455 -store_clause_refinement(Ref,RefP,Score):-store_clause_refinement462,12579 -store_clause_refinement(Ref,RefP,Score):-store_clause_refinement462,12579 -store_clause_refinement(Ref,RefP,Score):-store_clause_refinement462,12579 -store_refinement(Ref,RefP,Score):-store_refinement466,12695 -store_refinement(Ref,RefP,Score):-store_refinement466,12695 -store_refinement(Ref,RefP,Score):-store_refinement466,12695 -already_scored_clause(R,R1,Score):-already_scored_clause470,12790 -already_scored_clause(R,R1,Score):-already_scored_clause470,12790 -already_scored_clause(R,R1,Score):-already_scored_clause470,12790 -already_scored(R,R1,Score):-already_scored475,12926 -already_scored(R,R1,Score):-already_scored475,12926 -already_scored(R,R1,Score):-already_scored475,12926 -elab_clause_ref(rule(_NR,H,B,_Lits),rule(H1,B1)):-elab_clause_ref480,13009 -elab_clause_ref(rule(_NR,H,B,_Lits),rule(H1,B1)):-elab_clause_ref480,13009 -elab_clause_ref(rule(_NR,H,B,_Lits),rule(H1,B1)):-elab_clause_ref480,13009 -elab_ref([],[]).elab_ref483,13089 -elab_ref([],[]).elab_ref483,13089 -elab_ref([rule(_NR,H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref485,13107 -elab_ref([rule(_NR,H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref485,13107 -elab_ref([rule(_NR,H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref485,13107 -elab_ref([def_rule(H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref490,13235 -elab_ref([def_rule(H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref490,13235 -elab_ref([def_rule(H,B,_Lits)|T],[rule(H1,B1)|T1]):-elab_ref490,13235 -insert_in_order([],C,BeamSize,[C]):-insert_in_order496,13386 -insert_in_order([],C,BeamSize,[C]):-insert_in_order496,13386 -insert_in_order([],C,BeamSize,[C]):-insert_in_order496,13386 -insert_in_order(Beam,_New,0,Beam):-!.insert_in_order499,13440 -insert_in_order(Beam,_New,0,Beam):-!.insert_in_order499,13440 -insert_in_order(Beam,_New,0,Beam):-!.insert_in_order499,13440 -insert_in_order([(Th1,Heuristic1)|RestBeamIn],(Th,Heuristic),BeamSize,BeamOut):-insert_in_order501,13479 -insert_in_order([(Th1,Heuristic1)|RestBeamIn],(Th,Heuristic),BeamSize,BeamOut):-insert_in_order501,13479 -insert_in_order([(Th1,Heuristic1)|RestBeamIn],(Th,Heuristic),BeamSize,BeamOut):-insert_in_order501,13479 -remove_int_atom_list([],[]).remove_int_atom_list520,13985 -remove_int_atom_list([],[]).remove_int_atom_list520,13985 -remove_int_atom_list([A|T],[A1|T1]):-remove_int_atom_list522,14015 -remove_int_atom_list([A|T],[A1|T1]):-remove_int_atom_list522,14015 -remove_int_atom_list([A|T],[A1|T1]):-remove_int_atom_list522,14015 -remove_int_atom(A,A1):-remove_int_atom529,14119 -remove_int_atom(A,A1):-remove_int_atom529,14119 -remove_int_atom(A,A1):-remove_int_atom529,14119 -get_heads([],[]).get_heads534,14174 -get_heads([],[]).get_heads534,14174 -get_heads([_-H|T],[H|TN]):-get_heads536,14193 -get_heads([_-H|T],[H|TN]):-get_heads536,14193 -get_heads([_-H|T],[H|TN]):-get_heads536,14193 -derive_bdd_nodes([],_E,Nodes,Nodes,CLL,CLL).derive_bdd_nodes539,14241 -derive_bdd_nodes([],_E,Nodes,Nodes,CLL,CLL).derive_bdd_nodes539,14241 -derive_bdd_nodes([H|T],E,Nodes0,Nodes,CLL0,CLL):-derive_bdd_nodes541,14287 -derive_bdd_nodes([H|T],E,Nodes0,Nodes,CLL0,CLL):-derive_bdd_nodes541,14287 -derive_bdd_nodes([H|T],E,Nodes0,Nodes,CLL0,CLL):-derive_bdd_nodes541,14287 -get_node_list([],BDD,BDD,_CE).get_node_list565,14738 -get_node_list([],BDD,BDD,_CE).get_node_list565,14738 -get_node_list([H|T],BDD0,BDD,CE):-get_node_list568,14771 -get_node_list([H|T],BDD0,BDD,CE):-get_node_list568,14771 -get_node_list([H|T],BDD0,BDD,CE):-get_node_list568,14771 -derive_bdd_nodes_groupatoms_output_atoms([],_O,_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms_output_atoms574,14883 -derive_bdd_nodes_groupatoms_output_atoms([],_O,_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms_output_atoms574,14883 -derive_bdd_nodes_groupatoms_output_atoms([H|T],O,E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms_output_atoms576,14965 -derive_bdd_nodes_groupatoms_output_atoms([H|T],O,E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms_output_atoms576,14965 -derive_bdd_nodes_groupatoms_output_atoms([H|T],O,E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms_output_atoms576,14965 -derive_bdd_nodes_groupatoms([],_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms589,15340 -derive_bdd_nodes_groupatoms([],_E,_G,Nodes,Nodes,CLL,CLL,LE,LE).derive_bdd_nodes_groupatoms589,15340 -derive_bdd_nodes_groupatoms([H|T],E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms591,15406 -derive_bdd_nodes_groupatoms([H|T],E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms591,15406 -derive_bdd_nodes_groupatoms([H|T],E,G,Nodes0,Nodes,CLL0,CLL,LE0,LE):- derive_bdd_nodes_groupatoms591,15406 -get_node_list_groupatoms([],[],_CE,_Gmax,CLL,CLL,LE,LE).get_node_list_groupatoms604,15771 -get_node_list_groupatoms([],[],_CE,_Gmax,CLL,CLL,LE,LE).get_node_list_groupatoms604,15771 -get_node_list_groupatoms([H|T],[[BDD,CE1]|BDDT],CE,Gmax,CLL0,CLL,LE0,LE):-get_node_list_groupatoms606,15829 -get_node_list_groupatoms([H|T],[[BDD,CE1]|BDDT],CE,Gmax,CLL0,CLL,LE0,LE):-get_node_list_groupatoms606,15829 -get_node_list_groupatoms([H|T],[[BDD,CE1]|BDDT],CE,Gmax,CLL0,CLL,LE0,LE):-get_node_list_groupatoms606,15829 -get_bdd_group([],[],G,G,BDD,BDD,_CE,LE,LE):-!.get_bdd_group622,16218 -get_bdd_group([],[],G,G,BDD,BDD,_CE,LE,LE):-!.get_bdd_group622,16218 -get_bdd_group([],[],G,G,BDD,BDD,_CE,LE,LE):-!.get_bdd_group622,16218 -get_bdd_group(T,T,0,0,BDD,BDD,_CE,LE,LE):- !.get_bdd_group624,16266 -get_bdd_group(T,T,0,0,BDD,BDD,_CE,LE,LE):- !.get_bdd_group624,16266 -get_bdd_group(T,T,0,0,BDD,BDD,_CE,LE,LE):- !.get_bdd_group624,16266 -get_bdd_group([H|T],T1,Gmax,G1,BDD0,BDD,CE,[H|LE0],LE):-get_bdd_group626,16313 -get_bdd_group([H|T],T1,Gmax,G1,BDD0,BDD,CE,[H|LE0],LE):-get_bdd_group626,16313 -get_bdd_group([H|T],T1,Gmax,G1,BDD0,BDD,CE,[H|LE0],LE):-get_bdd_group626,16313 -random_restarts(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts634,16550 -random_restarts(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts634,16550 -random_restarts(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts634,16550 -random_restarts(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts636,16605 -random_restarts(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts636,16605 -random_restarts(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts636,16605 -random_restarts_ref(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts_ref666,17281 -random_restarts_ref(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts_ref666,17281 -random_restarts_ref(0,_Nodes,Score,Score,Par,Par,_LE):-!.random_restarts_ref666,17281 -random_restarts_ref(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts_ref668,17340 -random_restarts_ref(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts_ref668,17340 -random_restarts_ref(N,Nodes,Score0,Score,Par0,Par,LE):-random_restarts_ref668,17340 -score(_LE,_ExP,CLL,CLL):-score698,18021 -score(_LE,_ExP,CLL,CLL):-score698,18021 -score(_LE,_ExP,CLL,CLL):-score698,18021 -score(LE,ExP,_CLL,Score):-score701,18071 -score(LE,ExP,_CLL,Score):-score701,18071 -score(LE,ExP,_CLL,Score):-score701,18071 -compute_prob([],[],[],Pos,Pos,Neg,Neg).compute_prob708,18214 -compute_prob([],[],[],Pos,Pos,Neg,Neg).compute_prob708,18214 -compute_prob([\+ HE|TE],[HP|TP],[P- (\+ HE)|T],Pos0,Pos,Neg0,Neg):-!,compute_prob710,18255 -compute_prob([\+ HE|TE],[HP|TP],[P- (\+ HE)|T],Pos0,Pos,Neg0,Neg):-!,compute_prob710,18255 -compute_prob([\+ HE|TE],[HP|TP],[P- (\+ HE)|T],Pos0,Pos,Neg0,Neg):-!,compute_prob710,18255 -compute_prob([ HE|TE],[HP|TP],[HP- HE|T],Pos0,Pos,Neg0,Neg):-compute_prob715,18400 -compute_prob([ HE|TE],[HP|TP],[HP- HE|T],Pos0,Pos,Neg0,Neg):-compute_prob715,18400 -compute_prob([ HE|TE],[HP|TP],[HP- HE|T],Pos0,Pos,Neg0,Neg):-compute_prob715,18400 -compute_aucpr(L,Pos,Neg,A):-compute_aucpr720,18526 -compute_aucpr(L,Pos,Neg,A):-compute_aucpr720,18526 -compute_aucpr(L,Pos,Neg,A):-compute_aucpr720,18526 -compute_curve_points([],_P0,TP,FP,_FN,_TN,[1.0-Prec]):-!,compute_curve_points742,18863 -compute_curve_points([],_P0,TP,FP,_FN,_TN,[1.0-Prec]):-!,compute_curve_points742,18863 -compute_curve_points([],_P0,TP,FP,_FN,_TN,[1.0-Prec]):-!,compute_curve_points742,18863 -compute_curve_points([P- (\+ _)|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points745,18944 -compute_curve_points([P- (\+ _)|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points745,18944 -compute_curve_points([P- (\+ _)|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points745,18944 -compute_curve_points([P- _|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points759,19201 -compute_curve_points([P- _|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points759,19201 -compute_curve_points([P- _|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points759,19201 -area([],_Flag,_Pos,_TPA,_FPA,A,A).area773,19453 -area([],_Flag,_Pos,_TPA,_FPA,A,A).area773,19453 -area([R0-P0|T],Flag,Pos,TPA,FPA,A0,A):-area775,19489 -area([R0-P0|T],Flag,Pos,TPA,FPA,A0,A):-area775,19489 -area([R0-P0|T],Flag,Pos,TPA,FPA,A0,A):-area775,19489 -interpolate(I,N,_Pos,_R0,_P0,_TPA,_FPA,_TPB,_FPB,A,A):-I>N,!.interpolate797,19867 -interpolate(I,N,_Pos,_R0,_P0,_TPA,_FPA,_TPB,_FPB,A,A):-I>N,!.interpolate797,19867 -interpolate(I,N,_Pos,_R0,_P0,_TPA,_FPA,_TPB,_FPB,A,A):-I>N,!.interpolate797,19867 -interpolate(I,N,Pos,R0,P0,TPA,FPA,TPB,FPB,A0,A):-interpolate799,19930 -interpolate(I,N,Pos,R0,P0,TPA,FPA,TPB,FPB,A0,A):-interpolate799,19930 -interpolate(I,N,Pos,R0,P0,TPA,FPA,TPB,FPB,A0,A):-interpolate799,19930 -randomize([],[]):-!.randomize807,20143 -randomize([],[]):-!.randomize807,20143 -randomize([],[]):-!.randomize807,20143 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize809,20165 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize809,20165 -randomize([rule(N,V,NH,HL,BL,LogF)|T],[rule(N,V,NH,HL1,BL,LogF)|T1]):-randomize809,20165 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head815,20320 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head815,20320 -randomize_head(_Int,['':_],P,['':PNull1]):-!,randomize_head815,20320 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head823,20445 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head823,20445 -randomize_head(Int,[H:_|T],P,[H:PH1|NT]):-randomize_head823,20445 -update_head([],[],_N,[]):-!. update_head831,20578 -update_head([],[],_N,[]):-!. update_head831,20578 -update_head([],[],_N,[]):-!. update_head831,20578 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head833,20610 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head833,20610 -update_head([H:_P|T],[PU|TP],N,[H:P|T1]):-update_head833,20610 -generate_file_names(File,FileKB,FileIn,FileBG,FileOut,FileL):-generate_file_names843,20734 -generate_file_names(File,FileKB,FileIn,FileBG,FileOut,FileL):-generate_file_names843,20734 -generate_file_names(File,FileKB,FileIn,FileBG,FileOut,FileL):-generate_file_names843,20734 -generate_file_name(File,Ext,FileExt):-generate_file_name850,21014 -generate_file_name(File,Ext,FileExt):-generate_file_name850,21014 -generate_file_name(File,Ext,FileExt):-generate_file_name850,21014 -load_models(File,ModulesList):- %carica le interpretazioni, 1 alla voltaload_models855,21153 -load_models(File,ModulesList):- %carica le interpretazioni, 1 alla voltaload_models855,21153 -load_models(File,ModulesList):- %carica le interpretazioni, 1 alla voltaload_models855,21153 -read_models(Stream,[Name1|Names]):-read_models861,21307 -read_models(Stream,[Name1|Names]):-read_models861,21307 -read_models(Stream,[Name1|Names]):-read_models861,21307 -read_models(_S,[]).read_models873,21571 -read_models(_S,[]).read_models873,21571 -read_all_atoms(Stream,Name):-read_all_atoms876,21593 -read_all_atoms(Stream,Name):-read_all_atoms876,21593 -read_all_atoms(Stream,Name):-read_all_atoms876,21593 -read_all_atoms(_S,_N).read_all_atoms894,21952 -read_all_atoms(_S,_N).read_all_atoms894,21952 -write_param(initial,S):-!,write_param897,21977 -write_param(initial,S):-!,write_param897,21977 -write_param(initial,S):-!,write_param897,21977 -write_param(L,S):-write_param904,22193 -write_param(L,S):-write_param904,22193 -write_param(L,S):-write_param904,22193 -write_par([],S):-write_par909,22250 -write_par([],S):-write_par909,22250 -write_par([],S):-write_par909,22250 -write_par([[N,P]|T],S):-write_par913,22343 -write_par([[N,P]|T],S):-write_par913,22343 -write_par([[N,P]|T],S):-write_par913,22343 -write_rules([],_S).write_rules923,22542 -write_rules([],_S).write_rules923,22542 -write_rules([rule(_N,HL,BL,Lit)|T],S):-write_rules925,22563 -write_rules([rule(_N,HL,BL,Lit)|T],S):-write_rules925,22563 -write_rules([rule(_N,HL,BL,Lit)|T],S):-write_rules925,22563 -new_par([],[],[]).new_par933,22755 -new_par([],[],[]).new_par933,22755 -new_par([HP|TP],[Head:_|TO],[Head:HP|TN]):-new_par935,22775 -new_par([HP|TP],[Head:_|TO],[Head:HP|TN]):-new_par935,22775 -new_par([HP|TP],[Head:_|TO],[Head:HP|TN]):-new_par935,22775 -write_model([],_Stream):-!.write_model939,22842 -write_model([],_Stream):-!.write_model939,22842 -write_model([],_Stream):-!.write_model939,22842 -write_model([rule(_N,HL,BL)|Rest],Stream):-write_model941,22871 -write_model([rule(_N,HL,BL)|Rest],Stream):-write_model941,22871 -write_model([rule(_N,HL,BL)|Rest],Stream):-write_model941,22871 -write_disj_clause(S,(H:-[])):-!,write_disj_clause948,23047 -write_disj_clause(S,(H:-[])):-!,write_disj_clause948,23047 -write_disj_clause(S,(H:-[])):-!,write_disj_clause948,23047 -write_disj_clause(S,(H:-B)):-write_disj_clause952,23128 -write_disj_clause(S,(H:-B)):-write_disj_clause952,23128 -write_disj_clause(S,(H:-B)):-write_disj_clause952,23128 -write_head(S,[A:1.0|_Rest]):-!,write_head960,23226 -write_head(S,[A:1.0|_Rest]):-!,write_head960,23226 -write_head(S,[A:1.0|_Rest]):-!,write_head960,23226 -write_head(S,[A:P,'':_P]):-!, write_head964,23307 -write_head(S,[A:P,'':_P]):-!, write_head964,23307 -write_head(S,[A:P,'':_P]):-!, write_head964,23307 -write_head(S,[A:P]):-!,write_head967,23366 -write_head(S,[A:P]):-!,write_head967,23366 -write_head(S,[A:P]):-!,write_head967,23366 -write_head(S,[A:P|Rest]):-write_head970,23418 -write_head(S,[A:P|Rest]):-write_head970,23418 -write_head(S,[A:P|Rest]):-write_head970,23418 -write_body(S,[]):-write_body974,23498 -write_body(S,[]):-write_body974,23498 -write_body(S,[]):-write_body974,23498 -write_body(S,[A]):-!,write_body977,23548 -write_body(S,[A]):-!,write_body977,23548 -write_body(S,[A]):-!,write_body977,23548 -write_body(S,[A|T]):-write_body980,23604 -write_body(S,[A|T]):-write_body980,23604 -write_body(S,[A|T]):-write_body980,23604 -list2or([],true):-!.list2or985,23674 -list2or([],true):-!.list2or985,23674 -list2or([],true):-!.list2or985,23674 -list2or([X],X):-list2or987,23696 -list2or([X],X):-list2or987,23696 -list2or([X],X):-list2or987,23696 -list2or([H|T],(H ; Ta)):-!,list2or990,23731 -list2or([H|T],(H ; Ta)):-!,list2or990,23731 -list2or([H|T],(H ; Ta)):-!,list2or990,23731 -list2and([],true):-!.list2and994,23780 -list2and([],true):-!.list2and994,23780 -list2and([],true):-!.list2and994,23780 -list2and([X],X):-list2and996,23803 -list2and([X],X):-list2and996,23803 -list2and([X],X):-list2and996,23803 -list2and([H|T],(H,Ta)):-!,list2and999,23838 -list2and([H|T],(H,Ta)):-!,list2and999,23838 -list2and([H|T],(H,Ta)):-!,list2and999,23838 -deduct(0,_DB,Th,Th):-!.deduct1003,23888 -deduct(0,_DB,Th,Th):-!.deduct1003,23888 -deduct(0,_DB,Th,Th):-!.deduct1003,23888 -deduct(NM,DB,InTheory0,InTheory):-deduct1005,23913 -deduct(NM,DB,InTheory0,InTheory):-deduct1005,23913 -deduct(NM,DB,InTheory0,InTheory):-deduct1005,23913 -get_head_atoms(O):-get_head_atoms1015,24156 -get_head_atoms(O):-get_head_atoms1015,24156 -get_head_atoms(O):-get_head_atoms1015,24156 -generate_top_cl([],[]):-!.generate_top_cl1020,24262 -generate_top_cl([],[]):-!.generate_top_cl1020,24262 -generate_top_cl([],[]):-!.generate_top_cl1020,24262 -generate_top_cl([A|T],[(rule(R,[A1:0.5,'':0.5],[],true),-inf)|TR]):-generate_top_cl1022,24290 -generate_top_cl([A|T],[(rule(R,[A1:0.5,'':0.5],[],true),-inf)|TR]):-generate_top_cl1022,24290 -generate_top_cl([A|T],[(rule(R,[A1:0.5,'':0.5],[],true),-inf)|TR]):-generate_top_cl1022,24290 -generate_head([],_M,HL,HL):-!.generate_head1030,24469 -generate_head([],_M,HL,HL):-!.generate_head1030,24469 -generate_head([],_M,HL,HL):-!.generate_head1030,24469 -generate_head([(A,G,D)|T],M,H0,H1):-!,generate_head1032,24501 -generate_head([(A,G,D)|T],M,H0,H1):-!,generate_head1032,24501 -generate_head([(A,G,D)|T],M,H0,H1):-!,generate_head1032,24501 -generate_head([A|T],M,H0,H1):-generate_head1040,24834 -generate_head([A|T],M,H0,H1):-generate_head1040,24834 -generate_head([A|T],M,H0,H1):-generate_head1040,24834 -generate_head_goal([],_M,[]).generate_head_goal1053,25138 -generate_head_goal([],_M,[]).generate_head_goal1053,25138 -generate_head_goal([H|T],M,[H1|T1]):-generate_head_goal1055,25169 -generate_head_goal([H|T],M,[H1|T1]):-generate_head_goal1055,25169 -generate_head_goal([H|T],M,[H1|T1]):-generate_head_goal1055,25169 -keep_const([],[]).keep_const1060,25271 -keep_const([],[]).keep_const1060,25271 -keep_const([- _|T],[_|T1]):-!,keep_const1062,25291 -keep_const([- _|T],[_|T1]):-!,keep_const1062,25291 -keep_const([- _|T],[_|T1]):-!,keep_const1062,25291 -keep_const([+ _|T],[_|T1]):-!,keep_const1065,25343 -keep_const([+ _|T],[_|T1]):-!,keep_const1065,25343 -keep_const([+ _|T],[_|T1]):-!,keep_const1065,25343 -keep_const([-# _|T],[_|T1]):-!,keep_const1068,25395 -keep_const([-# _|T],[_|T1]):-!,keep_const1068,25395 -keep_const([-# _|T],[_|T1]):-!,keep_const1068,25395 -keep_const([H|T],[H|T1]):-keep_const1071,25448 -keep_const([H|T],[H|T1]):-keep_const1071,25448 -keep_const([H|T],[H|T1]):-keep_const1071,25448 -sample(0,List,[],List):-!.sample1076,25498 -sample(0,List,[],List):-!.sample1076,25498 -sample(0,List,[],List):-!.sample1076,25498 -sample(N,List,List,[]):-sample1078,25526 -sample(N,List,List,[]):-sample1078,25526 -sample(N,List,List,[]):-sample1078,25526 -sample(N,List,[El|List1],Li):-sample1082,25580 -sample(N,List,[El|List1],Li):-sample1082,25580 -sample(N,List,[El|List1],Li):-sample1082,25580 -sample(0,_List,[]):-!.sample1089,25716 -sample(0,_List,[]):-!.sample1089,25716 -sample(0,_List,[]):-!.sample1089,25716 -sample(N,List,List):-sample1091,25740 -sample(N,List,List):-sample1091,25740 -sample(N,List,List):-sample1091,25740 -sample(N,List,[El|List1]):-sample1095,25791 -sample(N,List,[El|List1]):-sample1095,25791 -sample(N,List,[El|List1]):-sample1095,25791 -get_args([],[],[],A,A,AT,AT,_).get_args1102,25921 -get_args([],[],[],A,A,AT,AT,_).get_args1102,25921 -get_args([HM|TM],[H|TH],[(H,HM)|TP],A0,A,AT0,AT,M):-get_args1104,25954 -get_args([HM|TM],[H|TH],[(H,HM)|TP],A0,A,AT0,AT,M):-get_args1104,25954 -get_args([HM|TM],[H|TH],[(H,HM)|TP],A0,A,AT0,AT,M):-get_args1104,25954 -gen_head([],P,['':P]).gen_head1113,26175 -gen_head([],P,['':P]).gen_head1113,26175 -gen_head([H|T],P,[H:P|TH]):-gen_head1115,26199 -gen_head([H|T],P,[H:P|TH]):-gen_head1115,26199 -gen_head([H|T],P,[H:P|TH]):-gen_head1115,26199 -get_modeb([],B,B).get_modeb1118,26249 -get_modeb([],B,B).get_modeb1118,26249 -get_modeb([F/AA|T],B0,B):-get_modeb1120,26269 -get_modeb([F/AA|T],B0,B):-get_modeb1120,26269 -get_modeb([F/AA|T],B0,B):-get_modeb1120,26269 -generate_body([],[]):-!.generate_body1125,26388 -generate_body([],[]):-!.generate_body1125,26388 -generate_body([],[]):-!.generate_body1125,26388 -generate_body([(A,H,Det)|T],[(rule(R,HP,[],BodyList),-inf)|CL0]):-!,generate_body1127,26414 -generate_body([(A,H,Det)|T],[(rule(R,HP,[],BodyList),-inf)|CL0]):-!,generate_body1127,26414 -generate_body([(A,H,Det)|T],[(rule(R,HP,[],BodyList),-inf)|CL0]):-!,generate_body1127,26414 -generate_body([(A,H)|T],[(rule(R,[Head:0.5,'':0.5],[],BodyList),-inf)|CL0]):-generate_body1147,27204 -generate_body([(A,H)|T],[(rule(R,[Head:0.5,'':0.5],[],BodyList),-inf)|CL0]):-generate_body1147,27204 -generate_body([(A,H)|T],[(rule(R,[Head:0.5,'':0.5],[],BodyList),-inf)|CL0]):-generate_body1147,27204 -variabilize((H:-B),(H1:-B1)):-variabilize1167,28004 -variabilize((H:-B),(H1:-B1)):-variabilize1167,28004 -variabilize((H:-B),(H1:-B1)):-variabilize1167,28004 -variabilize_list([],[],A,A,_M).variabilize_list1172,28106 -variabilize_list([],[],A,A,_M).variabilize_list1172,28106 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1174,28139 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1174,28139 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1174,28139 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1182,28344 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1182,28344 -variabilize_list([(H,Mode)|T],[H1|T1],A0,A,M):-variabilize_list1182,28344 -variabilize_args([],[],[],A,A).variabilize_args1190,28537 -variabilize_args([],[],[],A,A).variabilize_args1190,28537 -variabilize_args([C|T],[C|TT],[C|TV],A0,A):-!,variabilize_args1192,28570 -variabilize_args([C|T],[C|TT],[C|TV],A0,A):-!,variabilize_args1192,28570 -variabilize_args([C|T],[C|TT],[C|TV],A0,A):-!,variabilize_args1192,28570 -variabilize_args([C|T],[# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1195,28652 -variabilize_args([C|T],[# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1195,28652 -variabilize_args([C|T],[# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1195,28652 -variabilize_args([C|T],[-# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1198,28738 -variabilize_args([C|T],[-# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1198,28738 -variabilize_args([C|T],[-# _Ty|TT],[C|TV],A0,A):-!,variabilize_args1198,28738 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1201,28825 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1201,28825 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1201,28825 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1205,28927 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1205,28927 -variabilize_args([C|T],[_Ty|TT],[V|TV],A0,A):-variabilize_args1205,28927 -cycle_modeb(ArgsTypes,Args,ArgsTypes,Args,_BL,L,L,L,_,_M):-!.cycle_modeb1209,29016 -cycle_modeb(ArgsTypes,Args,ArgsTypes,Args,_BL,L,L,L,_,_M):-!.cycle_modeb1209,29016 -cycle_modeb(ArgsTypes,Args,ArgsTypes,Args,_BL,L,L,L,_,_M):-!.cycle_modeb1209,29016 -cycle_modeb(_ArgsTypes,_Args,_ArgsTypes1,_Args1,_BL,_L,L,L,0,_M):-!.cycle_modeb1211,29079 -cycle_modeb(_ArgsTypes,_Args,_ArgsTypes1,_Args1,_BL,_L,L,L,0,_M):-!.cycle_modeb1211,29079 -cycle_modeb(_ArgsTypes,_Args,_ArgsTypes1,_Args1,_BL,_L,L,L,0,_M):-!.cycle_modeb1211,29079 -cycle_modeb(ArgsTypes,Args,_ArgsTypes0,_Args0,BL,_L0,L1,L,D,M):-cycle_modeb1213,29149 -cycle_modeb(ArgsTypes,Args,_ArgsTypes0,_Args0,BL,_L0,L1,L,D,M):-cycle_modeb1213,29149 -cycle_modeb(ArgsTypes,Args,_ArgsTypes0,_Args0,BL,_L0,L1,L,D,M):-cycle_modeb1213,29149 -find_atoms([],ArgsTypes,Args,ArgsTypes,Args,L,L,_M).find_atoms1219,29351 -find_atoms([],ArgsTypes,Args,ArgsTypes,Args,L,L,_M).find_atoms1219,29351 -find_atoms([(R,H)|T],ArgsTypes0,Args0,ArgsTypes,Args,L0,L1,M):-find_atoms1221,29405 -find_atoms([(R,H)|T],ArgsTypes0,Args0,ArgsTypes,Args,L0,L1,M):-find_atoms1221,29405 -find_atoms([(R,H)|T],ArgsTypes0,Args0,ArgsTypes,Args,L0,L1,M):-find_atoms1221,29405 -call_atoms([],A,A).call_atoms1237,29821 -call_atoms([],A,A).call_atoms1237,29821 -call_atoms([(H,M)|T],A0,A):-call_atoms1239,29842 -call_atoms([(H,M)|T],A0,A):-call_atoms1239,29842 -call_atoms([(H,M)|T],A0,A):-call_atoms1239,29842 -extract_output_args([],_ArgsT,ArgsTypes,Args,ArgsTypes,Args).extract_output_args1245,29936 -extract_output_args([],_ArgsT,ArgsTypes,Args,ArgsTypes,Args).extract_output_args1245,29936 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1247,29999 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1247,29999 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1247,29999 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1253,30231 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1253,30231 -extract_output_args([(H,_At)|T],ArgsT,ArgsTypes0,Args0,ArgsTypes,Args):-extract_output_args1253,30231 -add_const([],[],ArgsTypes,Args,ArgsTypes,Args).add_const1259,30451 -add_const([],[],ArgsTypes,Args,ArgsTypes,Args).add_const1259,30451 -add_const([_A|T],[+_T|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1261,30500 -add_const([_A|T],[+_T|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1261,30500 -add_const([_A|T],[+_T|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1261,30500 -add_const([A|T],[-Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1264,30615 -add_const([A|T],[-Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1264,30615 -add_const([A|T],[-Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1264,30615 -add_const([A|T],[-# Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1274,30884 -add_const([A|T],[-# Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1274,30884 -add_const([A|T],[-# Type|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1274,30884 -add_const([_A|T],[# _|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1284,31155 -add_const([_A|T],[# _|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1284,31155 -add_const([_A|T],[# _|TT],ArgsTypes0,Args0,ArgsTypes,Args):-!,add_const1284,31155 -add_const([A|T],[A|TT],ArgsTypes0,Args0,ArgsTypes,Args):-add_const1287,31270 -add_const([A|T],[A|TT],ArgsTypes0,Args0,ArgsTypes,Args):-add_const1287,31270 -add_const([A|T],[A|TT],ArgsTypes0,Args0,ArgsTypes,Args):-add_const1287,31270 -already_present([+T|_TT],[C|_TC],C,T):-!.already_present1291,31381 -already_present([+T|_TT],[C|_TC],C,T):-!.already_present1291,31381 -already_present([+T|_TT],[C|_TC],C,T):-!.already_present1291,31381 -already_present([_|TT],[_|TC],C,T):-already_present1293,31424 -already_present([_|TT],[_|TC],C,T):-already_present1293,31424 -already_present([_|TT],[_|TC],C,T):-already_present1293,31424 -instantiate_query(ArgsT,ArgsTypes,Args,F,M,A):-instantiate_query1297,31493 -instantiate_query(ArgsT,ArgsTypes,Args,F,M,A):-instantiate_query1297,31493 -instantiate_query(ArgsT,ArgsTypes,Args,F,M,A):-instantiate_query1297,31493 -instantiate_input([],_AT,_A,[]).instantiate_input1307,31665 -instantiate_input([],_AT,_A,[]).instantiate_input1307,31665 -instantiate_input([-_Type|T],AT,A,[_V|TA]):-!,instantiate_input1309,31699 -instantiate_input([-_Type|T],AT,A,[_V|TA]):-!,instantiate_input1309,31699 -instantiate_input([-_Type|T],AT,A,[_V|TA]):-!,instantiate_input1309,31699 -instantiate_input([+Type|T],AT,A,[H|TA]):-!,instantiate_input1312,31779 -instantiate_input([+Type|T],AT,A,[H|TA]):-!,instantiate_input1312,31779 -instantiate_input([+Type|T],AT,A,[H|TA]):-!,instantiate_input1312,31779 -instantiate_input([# Type|T],AT,A,[H|TA]):-!,instantiate_input1316,31883 -instantiate_input([# Type|T],AT,A,[H|TA]):-!,instantiate_input1316,31883 -instantiate_input([# Type|T],AT,A,[H|TA]):-!,instantiate_input1316,31883 -instantiate_input([-# _Type|T],AT,A,[_V|TA]):-!,instantiate_input1320,31988 -instantiate_input([-# _Type|T],AT,A,[_V|TA]):-!,instantiate_input1320,31988 -instantiate_input([-# _Type|T],AT,A,[_V|TA]):-!,instantiate_input1320,31988 -instantiate_input([C|T],AT,A,[C|TA]):-instantiate_input1324,32071 -instantiate_input([C|T],AT,A,[C|TA]):-instantiate_input1324,32071 -instantiate_input([C|T],AT,A,[C|TA]):-instantiate_input1324,32071 -find_val([T|_TT],[A|_TA],T,A).find_val1328,32144 -find_val([T|_TT],[A|_TA],T,A).find_val1328,32144 -find_val([_T|TT],[_A|TA],T,A):-find_val1330,32176 -find_val([_T|TT],[_A|TA],T,A):-find_val1330,32176 -find_val([_T|TT],[_A|TA],T,A):-find_val1330,32176 -get_output_atoms(O):-get_output_atoms1334,32233 -get_output_atoms(O):-get_output_atoms1334,32233 -get_output_atoms(O):-get_output_atoms1334,32233 -generate_goal([],_H,G,G):-!.generate_goal1338,32293 -generate_goal([],_H,G,G):-!.generate_goal1338,32293 -generate_goal([],_H,G,G):-!.generate_goal1338,32293 -generate_goal([P/A|T],H,G0,G1):-generate_goal1340,32323 -generate_goal([P/A|T],H,G0,G1):-generate_goal1340,32323 -generate_goal([P/A|T],H,G0,G1):-generate_goal1340,32323 - -packages/cplint/slipcover/test.pl,10238 -setting(neg_ex,cw).setting5,77 -setting(neg_ex,cw).setting5,77 -main(TrainP,TestSets):-main8,130 -main(TrainP,TestSets):-main8,130 -main(TrainP,TestSets):-main8,130 -test([],[],_S,LG,LG,Pos,Pos,Neg,Neg,CLL,CLL).test27,688 -test([],[],_S,LG,LG,Pos,Pos,Neg,Neg,CLL,CLL).test27,688 -test([HP|TP],[HT|TT],S,LG0,LG,Pos0,Pos,Neg0,Neg,CLL0,CLL):-test29,735 -test([HP|TP],[HT|TT],S,LG0,LG,Pos0,Pos,Neg0,Neg,CLL0,CLL):-test29,735 -test([HP|TP],[HT|TT],S,LG0,LG,Pos0,Pos,Neg0,Neg,CLL0,CLL):-test29,735 -test_fold(P,F,S,LGOrd,Pos,Neg,CLL1):-test_fold37,974 -test_fold(P,F,S,LGOrd,Pos,Neg,CLL1):-test_fold37,974 -test_fold(P,F,S,LGOrd,Pos,Neg,CLL1):-test_fold37,974 -compute_areas(LG,Pos,Neg,AUCROC,AUCPR):-compute_areas77,1904 -compute_areas(LG,Pos,Neg,AUCROC,AUCPR):-compute_areas77,1904 -compute_areas(LG,Pos,Neg,AUCROC,AUCPR):-compute_areas77,1904 -compute_pointsroc([],_P0,_TP,_FP,_FN,_TN,P0,P1):-!,compute_pointsroc88,2192 -compute_pointsroc([],_P0,_TP,_FP,_FN,_TN,P0,P1):-!,compute_pointsroc88,2192 -compute_pointsroc([],_P0,_TP,_FP,_FN,_TN,P0,P1):-!,compute_pointsroc88,2192 -compute_pointsroc([P- (\+ _)|T],P0,TP,FP,FN,TN,Po0,Po1):-!,compute_pointsroc91,2272 -compute_pointsroc([P- (\+ _)|T],P0,TP,FP,FN,TN,Po0,Po1):-!,compute_pointsroc91,2272 -compute_pointsroc([P- (\+ _)|T],P0,TP,FP,FN,TN,Po0,Po1):-!,compute_pointsroc91,2272 -compute_pointsroc([P- _|T],P0,TP,FP,FN,TN,Po0,Po1):-!,compute_pointsroc105,2544 -compute_pointsroc([P- _|T],P0,TP,FP,FN,TN,Po0,Po1):-!,compute_pointsroc105,2544 -compute_pointsroc([P- _|T],P0,TP,FP,FN,TN,Po0,Po1):-!,compute_pointsroc105,2544 -hull([],FPR,TPR,AUC0,AUC1):-hull120,2808 -hull([],FPR,TPR,AUC0,AUC1):-hull120,2808 -hull([],FPR,TPR,AUC0,AUC1):-hull120,2808 -hull([FPR1-TPR1|T],FPR,TPR,AUC0,AUC1):-hull124,2873 -hull([FPR1-TPR1|T],FPR,TPR,AUC0,AUC1):-hull124,2873 -hull([FPR1-TPR1|T],FPR,TPR,AUC0,AUC1):-hull124,2873 -compute_aucpr(L,Pos,Neg,A,PR):-compute_aucpr128,2985 -compute_aucpr(L,Pos,Neg,A,PR):-compute_aucpr128,2985 -compute_aucpr(L,Pos,Neg,A,PR):-compute_aucpr128,2985 -compute_curve_points([],_P0,TP,FP,_FN,_TN,[1.0-Prec]):-!,compute_curve_points150,3331 -compute_curve_points([],_P0,TP,FP,_FN,_TN,[1.0-Prec]):-!,compute_curve_points150,3331 -compute_curve_points([],_P0,TP,FP,_FN,_TN,[1.0-Prec]):-!,compute_curve_points150,3331 -compute_curve_points([P- (\+ _)|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points153,3412 -compute_curve_points([P- (\+ _)|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points153,3412 -compute_curve_points([P- (\+ _)|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points153,3412 -compute_curve_points([P- _|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points167,3669 -compute_curve_points([P- _|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points167,3669 -compute_curve_points([P- _|T],P0,TP,FP,FN,TN,Pr):-!,compute_curve_points167,3669 -area([],_Flag,_Pos,_TPA,_FPA,A,A,PR,PR).area181,3921 -area([],_Flag,_Pos,_TPA,_FPA,A,A,PR,PR).area181,3921 -area([R0-P0|T],Flag,Pos,TPA,FPA,A0,A,PR0,PR):-area183,3963 -area([R0-P0|T],Flag,Pos,TPA,FPA,A0,A,PR0,PR):-area183,3963 -area([R0-P0|T],Flag,Pos,TPA,FPA,A0,A,PR0,PR):-area183,3963 -interpolate(I,N,_Pos,_R0,_P0,_TPA,_FPA,_TPB,_FPB,A,A,PR,PR):-I>N,!.interpolate216,4544 -interpolate(I,N,_Pos,_R0,_P0,_TPA,_FPA,_TPB,_FPB,A,A,PR,PR):-I>N,!.interpolate216,4544 -interpolate(I,N,_Pos,_R0,_P0,_TPA,_FPA,_TPB,_FPB,A,A,PR,PR):-I>N,!.interpolate216,4544 -interpolate(I,N,Pos,R0,P0,TPA,FPA,TPB,FPB,A0,A,PR0,[R-P|PR]):-interpolate218,4613 -interpolate(I,N,Pos,R0,P0,TPA,FPA,TPB,FPB,A0,A,PR0,[R-P|PR]):-interpolate218,4613 -interpolate(I,N,Pos,R0,P0,TPA,FPA,TPB,FPB,A0,A,PR0,[R-P|PR]):-interpolate218,4613 -find_ex(DB,LG,Pos,Neg):-find_ex226,4846 -find_ex(DB,LG,Pos,Neg):-find_ex226,4846 -find_ex(DB,LG,Pos,Neg):-find_ex226,4846 -find_ex(DB,LG,Pos,Neg):-find_ex231,4971 -find_ex(DB,LG,Pos,Neg):-find_ex231,4971 -find_ex(DB,LG,Pos,Neg):-find_ex231,4971 -find_ex_pred([],_DB,LG,LG,Pos,Pos,Neg,Neg).find_ex_pred237,5095 -find_ex_pred([],_DB,LG,LG,Pos,Pos,Neg,Neg).find_ex_pred237,5095 -find_ex_pred([P/A|T],DB,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_pred239,5140 -find_ex_pred([P/A|T],DB,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_pred239,5140 -find_ex_pred([P/A|T],DB,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_pred239,5140 -find_ex_db([],_At,LG,LG,Pos,Pos,Neg,Neg).find_ex_db244,5308 -find_ex_db([],_At,LG,LG,Pos,Pos,Neg,Neg).find_ex_db244,5308 -find_ex_db([H|T],At,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_db246,5351 -find_ex_db([H|T],At,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_db246,5351 -find_ex_db([H|T],At,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_db246,5351 -find_ex_pred_cw([],_DB,LG,LG,Pos,Pos,Neg,Neg).find_ex_pred_cw259,5630 -find_ex_pred_cw([],_DB,LG,LG,Pos,Pos,Neg,Neg).find_ex_pred_cw259,5630 -find_ex_pred_cw([P/A|T],DB,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_pred_cw261,5678 -find_ex_pred_cw([P/A|T],DB,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_pred_cw261,5678 -find_ex_pred_cw([P/A|T],DB,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_pred_cw261,5678 -get_types(At,Types):-get_types268,5920 -get_types(At,Types):-get_types268,5920 -get_types(At,Types):-get_types268,5920 -get_args([],[]).get_args273,5999 -get_args([],[]).get_args273,5999 -get_args([+H|T],[H|T1]):-!,get_args275,6017 -get_args([+H|T],[H|T1]):-!,get_args275,6017 -get_args([+H|T],[H|T1]):-!,get_args275,6017 -get_args([-H|T],[H|T1]):-!,get_args278,6064 -get_args([-H|T],[H|T1]):-!,get_args278,6064 -get_args([-H|T],[H|T1]):-!,get_args278,6064 -get_args([#H|T],[H|T1]):-!,get_args281,6111 -get_args([#H|T],[H|T1]):-!,get_args281,6111 -get_args([#H|T],[H|T1]):-!,get_args281,6111 -get_args([-#H|T],[H|T1]):-!,get_args284,6158 -get_args([-#H|T],[H|T1]):-!,get_args284,6158 -get_args([-#H|T],[H|T1]):-!,get_args284,6158 -get_args([H|T],[H|T1]):-get_args287,6206 -get_args([H|T],[H|T1]):-get_args287,6206 -get_args([H|T],[H|T1]):-get_args287,6206 -get_constants([],_M,[]).get_constants293,6253 -get_constants([],_M,[]).get_constants293,6253 -get_constants([Type|T],M,[(Type,Co)|C]):-get_constants295,6279 -get_constants([Type|T],M,[(Type,Co)|C]):-get_constants295,6279 -get_constants([Type|T],M,[(Type,Co)|C]):-get_constants295,6279 -find_pred_using_type(T,L):-find_pred_using_type300,6409 -find_pred_using_type(T,L):-find_pred_using_type300,6409 -find_pred_using_type(T,L):-find_pred_using_type300,6409 -pred_type(T,P,Ar,A):-pred_type303,6479 -pred_type(T,P,Ar,A):-pred_type303,6479 -pred_type(T,P,Ar,A):-pred_type303,6479 -pred_type(T,P,Ar,A):-pred_type309,6576 -pred_type(T,P,Ar,A):-pred_type309,6576 -pred_type(T,P,Ar,A):-pred_type309,6576 -scan_args([+T|_],T,A,A):-!.scan_args315,6673 -scan_args([+T|_],T,A,A):-!.scan_args315,6673 -scan_args([+T|_],T,A,A):-!.scan_args315,6673 -scan_args([-T|_],T,A,A):-!.scan_args317,6702 -scan_args([-T|_],T,A,A):-!.scan_args317,6702 -scan_args([-T|_],T,A,A):-!.scan_args317,6702 -scan_args([#T|_],T,A,A):-!.scan_args319,6731 -scan_args([#T|_],T,A,A):-!.scan_args319,6731 -scan_args([#T|_],T,A,A):-!.scan_args319,6731 -scan_args([-#T|_],T,A,A):-!.scan_args321,6760 -scan_args([-#T|_],T,A,A):-!.scan_args321,6760 -scan_args([-#T|_],T,A,A):-!.scan_args321,6760 -scan_args([_|Tail],T,A0,A):-scan_args323,6790 -scan_args([_|Tail],T,A0,A):-scan_args323,6790 -scan_args([_|Tail],T,A0,A):-scan_args323,6790 -find_constants([],_M,C,C).find_constants327,6860 -find_constants([],_M,C,C).find_constants327,6860 -find_constants([(P,Ar,A)|T],M,C0,C):-find_constants329,6888 -find_constants([(P,Ar,A)|T],M,C0,C):-find_constants329,6888 -find_constants([(P,Ar,A)|T],M,C0,C):-find_constants329,6888 -gen_goal(Arg,Ar,_A,[],[],_):-gen_goal338,7082 -gen_goal(Arg,Ar,_A,[],[],_):-gen_goal338,7082 -gen_goal(Arg,Ar,_A,[],[],_):-gen_goal338,7082 -gen_goal(A,Ar,A,[V|Args],ArgsNoV,V):-!,gen_goal341,7131 -gen_goal(A,Ar,A,[V|Args],ArgsNoV,V):-!,gen_goal341,7131 -gen_goal(A,Ar,A,[V|Args],ArgsNoV,V):-!,gen_goal341,7131 -gen_goal(Arg,Ar,A,[ArgV|Args],[ArgV|ArgsNoV],V):-gen_goal345,7227 -gen_goal(Arg,Ar,A,[ArgV|Args],[ArgV|ArgsNoV],V):-gen_goal345,7227 -gen_goal(Arg,Ar,A,[ArgV|Args],[ArgV|ArgsNoV],V):-gen_goal345,7227 -find_ex_db_cw([],_At,_Ty,LG,LG,Pos,Pos,Neg,Neg).find_ex_db_cw351,7337 -find_ex_db_cw([],_At,_Ty,LG,LG,Pos,Pos,Neg,Neg).find_ex_db_cw351,7337 -find_ex_db_cw([H|T],At,Types,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_db_cw353,7387 -find_ex_db_cw([H|T],At,Types,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_db_cw353,7387 -find_ex_db_cw([H|T],At,Types,LG0,LG,Pos0,Pos,Neg0,Neg):-find_ex_db_cw353,7387 -neg_ex([],[],At1,_C):-neg_ex369,7786 -neg_ex([],[],At1,_C):-neg_ex369,7786 -neg_ex([],[],At1,_C):-neg_ex369,7786 -neg_ex([H|T],[HT|TT],At1,C):-neg_ex372,7820 -neg_ex([H|T],[HT|TT],At1,C):-neg_ex372,7820 -neg_ex([H|T],[HT|TT],At1,C):-neg_ex372,7820 -compute_CLL_atoms([],_N,CLL,CLL,[]):-!.compute_CLL_atoms377,7910 -compute_CLL_atoms([],_N,CLL,CLL,[]):-!.compute_CLL_atoms377,7910 -compute_CLL_atoms([],_N,CLL,CLL,[]):-!.compute_CLL_atoms377,7910 -compute_CLL_atoms([\+ H|T],N,CLL0,CLL1,[PG- (\+ H)|T1]):-!,compute_CLL_atoms379,7951 -compute_CLL_atoms([\+ H|T],N,CLL0,CLL1,[PG- (\+ H)|T1]):-!,compute_CLL_atoms379,7951 -compute_CLL_atoms([\+ H|T],N,CLL0,CLL1,[PG- (\+ H)|T1]):-!,compute_CLL_atoms379,7951 -compute_CLL_atoms([H|T],N,CLL0,CLL1,[PG-H|T1]):-compute_CLL_atoms396,8273 -compute_CLL_atoms([H|T],N,CLL0,CLL1,[PG-H|T1]):-compute_CLL_atoms396,8273 -compute_CLL_atoms([H|T],N,CLL0,CLL1,[PG-H|T1]):-compute_CLL_atoms396,8273 -writes([H-H1],S):-writes413,8565 -writes([H-H1],S):-writes413,8565 -writes([H-H1],S):-writes413,8565 -writes([H-H1|T],S):-writes416,8624 -writes([H-H1|T],S):-writes416,8624 -writes([H-H1|T],S):-writes416,8624 -write_p(P,S):-write_p420,8696 -write_p(P,S):-write_p420,8696 -write_p(P,S):-write_p420,8696 -get_xy([],[],[]).get_xy439,9053 -get_xy([],[],[]).get_xy439,9053 -get_xy([X-Y|T],[X|TX],[Y|TY]):-get_xy441,9072 -get_xy([X-Y|T],[X|TX],[Y|TY]):-get_xy441,9072 -get_xy([X-Y|T],[X|TX],[Y|TY]):-get_xy441,9072 -writesf([H],S):-writesf445,9125 -writesf([H],S):-writesf445,9125 -writesf([H],S):-writesf445,9125 -writesf([H|T],S):-writesf448,9168 -writesf([H|T],S):-writesf448,9168 -writesf([H|T],S):-writesf448,9168 -write_ppr(P,S):-write_ppr452,9227 -write_ppr(P,S):-write_ppr452,9227 -write_ppr(P,S):-write_ppr452,9227 - -packages/cplint/testcpl.pl,6635 -epsilon(0.000001).epsilon15,163 -epsilon(0.000001).epsilon15,163 -close_to(V,T):-close_to17,183 -close_to(V,T):-close_to17,183 -close_to(V,T):-close_to17,183 -t:-t25,262 -t:-t35,497 -test_files([],_GB).test_files38,539 -test_files([],_GB).test_files38,539 -test_files([H|T],GB):-test_files40,560 -test_files([H|T],GB):-test_files40,560 -test_files([H|T],GB):-test_files40,560 -test_all(_F,[]).test_all50,778 -test_all(_F,[]).test_all50,778 -test_all(F,[H|T]):-test_all52,796 -test_all(F,[H|T]):-test_all52,796 -test_all(F,[H|T]):-test_all52,796 -test((s([p],P),close_to(P,0.5)),invalid,_). test65,1026 -test((s([p],P),close_to(P,0.5)),invalid,_). test65,1026 -test((s([q],P),close_to(P,0.5)),invalid,_). test66,1071 -test((s([q],P),close_to(P,0.5)),invalid,_). test66,1071 -test((s([p,q],P),close_to(P,0)),invalid,_). test67,1116 -test((s([p,q],P),close_to(P,0)),invalid,_). test67,1116 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test69,1162 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test69,1162 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test70,1237 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test70,1237 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test71,1313 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test71,1313 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test72,1390 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test72,1390 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test74,1470 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test74,1470 -test((s([win(white)],P),close_to(P,0.5)),win,_).test76,1533 -test((s([win(white)],P),close_to(P,0.5)),win,_).test76,1533 -test((s([win(black)],P),close_to(P,0.5)),win,_).test77,1582 -test((s([win(black)],P),close_to(P,0.5)),win,_).test77,1582 -test((s([win(black),win(white)],P),close_to(P,0)),win,_).test78,1631 -test((s([win(black),win(white)],P),close_to(P,0)),win,_).test78,1631 -test((s([hiv(a)],P),close_to(P,0.154)),hiv,_).test80,1690 -test((s([hiv(a)],P),close_to(P,0.154)),hiv,_).test80,1690 -test((s([hiv(b)],P),close_to(P,0.154)),hiv,_).test81,1737 -test((s([hiv(b)],P),close_to(P,0.154)),hiv,_).test81,1737 -test((s([hiv(b),hiv(a)],P),close_to(P,0.118)),hiv,_).test82,1784 -test((s([hiv(b),hiv(a)],P),close_to(P,0.118)),hiv,_).test82,1784 -test((s([\+ hiv(b),\+ hiv(a)],P),close_to(P,0.81)),hiv,_).test83,1838 -test((s([\+ hiv(b),\+ hiv(a)],P),close_to(P,0.81)),hiv,_).test83,1838 -test((s([ hiv(b),\+ hiv(a)],P),close_to(P,0.036)),hiv,_).test84,1897 -test((s([ hiv(b),\+ hiv(a)],P),close_to(P,0.036)),hiv,_).test84,1897 -test((s([\+ hiv(b),hiv(a)],P),close_to(P,0.036)),hiv,_).test85,1955 -test((s([\+ hiv(b),hiv(a)],P),close_to(P,0.036)),hiv,_).test85,1955 -test((s([push,replace],P),close_to(P,0.5)),light,_).test87,2013 -test((s([push,replace],P),close_to(P,0.5)),light,_).test87,2013 -test((s([push,light],P),close_to(P,0.5)),light,_).test88,2066 -test((s([push,light],P),close_to(P,0.5)),light,_).test88,2066 -test((s([push,light,replace],P),close_to(P,0)),light,_).test89,2117 -test((s([push,light,replace],P),close_to(P,0)),light,_).test89,2117 -test((s([light,replace],P),close_to(P,0)),light,_).test90,2174 -test((s([light,replace],P),close_to(P,0)),light,_).test90,2174 -test((s([light],P),close_to(P,0.5)),light,_).test91,2226 -test((s([light],P),close_to(P,0.5)),light,_).test91,2226 -test((s([replace],P),close_to(P,0.5)),light,_).test92,2272 -test((s([replace],P),close_to(P,0.5)),light,_).test92,2272 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test95,2322 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test95,2322 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test96,2386 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test96,2386 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test99,2452 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test99,2452 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test100,2502 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test100,2502 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test102,2551 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test102,2551 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test103,2622 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test103,2622 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test104,2693 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test104,2693 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test106,2765 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test106,2765 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test107,2847 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test107,2847 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test110,2931 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test110,2931 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test111,2983 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test111,2983 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test112,3035 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test112,3035 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test113,3087 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test113,3087 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test114,3139 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test114,3139 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test115,3190 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test115,3190 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test118,3244 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test118,3244 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test119,3298 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test119,3298 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test121,3353 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test121,3353 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test122,3407 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test122,3407 -test((s([a],P),close_to(P,0.226)),ex,_).test124,3462 -test((s([a],P),close_to(P,0.226)),ex,_).test124,3462 - -packages/cplint/testlpad.pl,7247 -epsilon(0.000001).epsilon15,164 -epsilon(0.000001).epsilon15,164 -close_to(V,T):-close_to17,184 -close_to(V,T):-close_to17,184 -close_to(V,T):-close_to17,184 -t:-t25,263 -t:-t39,627 -test_files([],_GB).test_files42,669 -test_files([],_GB).test_files42,669 -test_files([H|T],GB):-test_files44,690 -test_files([H|T],GB):-test_files44,690 -test_files([H|T],GB):-test_files44,690 -test_all(_F,[]).test_all54,908 -test_all(_F,[]).test_all54,908 -test_all(F,[H|T]):-test_all56,926 -test_all(F,[H|T]):-test_all56,926 -test_all(F,[H|T]):-test_all56,926 -test((s([a],P),close_to(P,0.18)),exist,ground_body(false)). test69,1169 -test((s([a],P),close_to(P,0.18)),exist,ground_body(false)). test69,1169 -test((s([a],P),close_to(P,0.19)),exist,ground_body(true)). test70,1230 -test((s([a],P),close_to(P,0.19)),exist,ground_body(true)). test70,1230 -test((s([a],P),close_to(P,0.276)),exist1,ground_body(false)). test72,1291 -test((s([a],P),close_to(P,0.276)),exist1,ground_body(false)). test72,1291 -test((s([a],P),close_to(P,0.3115)),exist1,ground_body(true)). test73,1354 -test((s([a],P),close_to(P,0.3115)),exist1,ground_body(true)). test73,1354 -test((s([p],P),close_to(P,0.5)),invalid,_). test75,1418 -test((s([p],P),close_to(P,0.5)),invalid,_). test75,1418 -test((s([q],P),close_to(P,0.5)),invalid,_). test76,1463 -test((s([q],P),close_to(P,0.5)),invalid,_). test76,1463 -test((s([p,q],P),close_to(P,0)),invalid,_). test77,1508 -test((s([p,q],P),close_to(P,0)),invalid,_). test77,1508 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test80,1555 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test80,1555 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test81,1630 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test81,1630 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test82,1706 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test82,1706 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test83,1783 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test83,1783 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test85,1863 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test85,1863 -test((s([win(white)],P),close_to(P,0.5)),win,_).test87,1926 -test((s([win(white)],P),close_to(P,0.5)),win,_).test87,1926 -test((s([win(black)],P),close_to(P,0.5)),win,_).test88,1975 -test((s([win(black)],P),close_to(P,0.5)),win,_).test88,1975 -test((s([win(black),win(white)],P),close_to(P,0)),win,_).test89,2024 -test((s([win(black),win(white)],P),close_to(P,0)),win,_).test89,2024 -test((s([hiv(a)],P),close_to(P,0.154)),hiv,_).test91,2083 -test((s([hiv(a)],P),close_to(P,0.154)),hiv,_).test91,2083 -test((s([hiv(b)],P),close_to(P,0.154)),hiv,_).test92,2130 -test((s([hiv(b)],P),close_to(P,0.154)),hiv,_).test92,2130 -test((s([hiv(b),hiv(a)],P),close_to(P,0.118)),hiv,_).test93,2177 -test((s([hiv(b),hiv(a)],P),close_to(P,0.118)),hiv,_).test93,2177 -test((s([\+ hiv(b),\+ hiv(a)],P),close_to(P,0.81)),hiv,_).test94,2231 -test((s([\+ hiv(b),\+ hiv(a)],P),close_to(P,0.81)),hiv,_).test94,2231 -test((s([ hiv(b),\+ hiv(a)],P),close_to(P,0.036)),hiv,_).test95,2290 -test((s([ hiv(b),\+ hiv(a)],P),close_to(P,0.036)),hiv,_).test95,2290 -test((s([\+ hiv(b),hiv(a)],P),close_to(P,0.036)),hiv,_).test96,2348 -test((s([\+ hiv(b),hiv(a)],P),close_to(P,0.036)),hiv,_).test96,2348 -test((s([push,replace],P),close_to(P,0.5)),light,_).test98,2406 -test((s([push,replace],P),close_to(P,0.5)),light,_).test98,2406 -test((s([push,light],P),close_to(P,0.5)),light,_).test99,2459 -test((s([push,light],P),close_to(P,0.5)),light,_).test99,2459 -test((s([push,light,replace],P),close_to(P,0)),light,_).test100,2510 -test((s([push,light,replace],P),close_to(P,0)),light,_).test100,2510 -test((s([light,replace],P),close_to(P,0)),light,_).test101,2567 -test((s([light,replace],P),close_to(P,0)),light,_).test101,2567 -test((s([light],P),close_to(P,0.5)),light,_).test102,2619 -test((s([light],P),close_to(P,0.5)),light,_).test102,2619 -test((s([replace],P),close_to(P,0.5)),light,_).test103,2665 -test((s([replace],P),close_to(P,0.5)),light,_).test103,2665 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test106,2715 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test106,2715 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test107,2779 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test107,2779 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test110,2845 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test110,2845 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test111,2895 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test111,2895 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test113,2944 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test113,2944 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test114,3015 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test114,3015 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test115,3086 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test115,3086 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test117,3158 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test117,3158 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test118,3240 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test118,3240 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test121,3324 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test121,3324 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test122,3376 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test122,3376 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test123,3428 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test123,3428 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test124,3480 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test124,3480 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test125,3532 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test125,3532 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test126,3583 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test126,3583 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test129,3637 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test129,3637 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test130,3691 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test130,3691 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test132,3746 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test132,3746 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test133,3800 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test133,3800 -test((s([a],P),close_to(P,0.226)),ex,_).test135,3855 -test((s([a],P),close_to(P,0.226)),ex,_).test135,3855 - -packages/cplint/testlpadclpbn.pl,16323 -epsilon(0.001).epsilon14,204 -epsilon(0.001).epsilon14,204 -close_to(V,T):-close_to16,221 -close_to(V,T):-close_to16,221 -close_to(V,T):-close_to16,221 -t:-t24,300 -t:-t33,515 -test_files([],_GB).test_files36,556 -test_files([],_GB).test_files36,556 -test_files([H|T],GB):-test_files38,577 -test_files([H|T],GB):-test_files38,577 -test_files([H|T],GB):-test_files38,577 -test_all(_F,[]).test_all47,768 -test_all(_F,[]).test_all47,768 -test_all(F,[H|T]):-test_all49,786 -test_all(F,[H|T]):-test_all49,786 -test_all(F,[H|T]):-test_all49,786 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test61,998 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test61,998 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test63,1061 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test63,1061 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test64,1136 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test64,1136 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test65,1212 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test65,1212 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test66,1289 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test66,1289 -test((s([push,replace],P),close_to(P,0.5)),light,_).test68,1369 -test((s([push,replace],P),close_to(P,0.5)),light,_).test68,1369 -test((s([push,light],P),close_to(P,0.5)),light,_).test69,1422 -test((s([push,light],P),close_to(P,0.5)),light,_).test69,1422 -test((s([push,light,replace],P),close_to(P,0)),light,_).test70,1473 -test((s([push,light,replace],P),close_to(P,0)),light,_).test70,1473 -test((s([light,replace],P),close_to(P,0)),light,_).test71,1530 -test((s([light,replace],P),close_to(P,0)),light,_).test71,1530 -test((s([light],P),close_to(P,0.5)),light,_).test72,1582 -test((s([light],P),close_to(P,0.5)),light,_).test72,1582 -test((s([replace],P),close_to(P,0.5)),light,_).test73,1628 -test((s([replace],P),close_to(P,0.5)),light,_).test73,1628 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test76,1678 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test76,1678 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test77,1748 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test77,1748 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test80,1819 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test80,1819 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test81,1890 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test81,1890 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test82,1961 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test82,1961 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test83,2032 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test83,2032 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test84,2097 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test84,2097 -test((s([female(f)],P),close_to(P,0.6)),female,_).test87,2164 -test((s([female(f)],P),close_to(P,0.6)),female,_).test87,2164 -test((s([male(f)],P),close_to(P,0.4)),female,_).test88,2215 -test((s([male(f)],P),close_to(P,0.4)),female,_).test88,2215 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test90,2265 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test90,2265 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test91,2329 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test91,2329 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test93,2394 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test93,2394 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test94,2444 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test94,2444 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test96,2493 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test96,2493 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test97,2564 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test97,2564 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test98,2635 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test98,2635 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test100,2707 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test100,2707 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test101,2789 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test101,2789 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test104,2873 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test104,2873 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test105,2925 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test105,2925 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test106,2977 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test106,2977 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test107,3029 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test107,3029 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test108,3081 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test108,3081 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test109,3132 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test109,3132 -test((s([a],P),close_to(P,0.226)),ex,_).test111,3185 -test((s([a],P),close_to(P,0.226)),ex,_).test111,3185 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test113,3227 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test113,3227 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test114,3281 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test114,3281 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test116,3336 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test116,3336 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test117,3390 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test117,3390 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test121,3447 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test121,3447 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test122,3516 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test122,3516 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test124,3586 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test124,3586 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test125,3655 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test125,3655 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test128,3726 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test128,3726 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test129,3791 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test129,3791 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test130,3856 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test130,3856 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test133,3923 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test133,3923 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test134,3993 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test134,3993 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test135,4063 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test135,4063 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test137,4134 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test137,4134 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test138,4243 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test138,4243 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test139,4354 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test139,4354 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test141,4464 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test141,4464 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test142,4559 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test142,4559 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test143,4655 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test143,4655 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test145,4752 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test145,4752 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test146,4823 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test146,4823 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test147,4894 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test147,4894 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test148,4964 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test148,4964 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test150,5035 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test150,5035 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test151,5155 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test151,5155 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test152,5276 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test152,5276 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test153,5397 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test153,5397 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test173,6939 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test173,6939 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test174,7019 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test174,7019 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test175,7098 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test175,7098 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test184,7595 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test184,7595 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test185,7697 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test185,7697 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test186,7799 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test186,7799 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test188,7901 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test188,7901 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test189,8004 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test189,8004 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test190,8107 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test190,8107 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test192,8211 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test192,8211 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test193,8328 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test193,8328 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test194,8445 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test194,8445 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test195,8561 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test195,8561 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test197,8678 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test197,8678 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test198,8745 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test198,8745 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test199,8807 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test199,8807 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test201,8875 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test201,8875 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test202,8977 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test202,8977 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test203,9079 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test203,9079 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test205,9182 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test205,9182 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test206,9248 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test206,9248 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test207,9314 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test207,9314 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test210,9381 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test210,9381 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test211,9466 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test211,9466 - -packages/cplint/testlpadsld_gbfalse.pl,16335 -epsilon(0.000001).epsilon16,231 -epsilon(0.000001).epsilon16,231 -close_to(V,T):-close_to18,251 -close_to(V,T):-close_to18,251 -close_to(V,T):-close_to18,251 -t:-t26,330 -t:-t37,606 -test_files([],_GB).test_files40,647 -test_files([],_GB).test_files40,647 -test_files([H|T],GB):-test_files42,668 -test_files([H|T],GB):-test_files42,668 -test_files([H|T],GB):-test_files42,668 -test_all(_F,[]).test_all51,859 -test_all(_F,[]).test_all51,859 -test_all(F,[H|T]):-test_all53,877 -test_all(F,[H|T]):-test_all53,877 -test_all(F,[H|T]):-test_all53,877 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test64,1148 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test64,1148 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test66,1211 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test66,1211 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test67,1286 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test67,1286 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test68,1362 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test68,1362 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test69,1439 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test69,1439 -test((s([push,replace],P),close_to(P,0.5)),light,_).test71,1519 -test((s([push,replace],P),close_to(P,0.5)),light,_).test71,1519 -test((s([push,light],P),close_to(P,0.5)),light,_).test72,1572 -test((s([push,light],P),close_to(P,0.5)),light,_).test72,1572 -test((s([push,light,replace],P),close_to(P,0)),light,_).test73,1623 -test((s([push,light,replace],P),close_to(P,0)),light,_).test73,1623 -test((s([light,replace],P),close_to(P,0)),light,_).test74,1680 -test((s([light,replace],P),close_to(P,0)),light,_).test74,1680 -test((s([light],P),close_to(P,0.5)),light,_).test75,1732 -test((s([light],P),close_to(P,0.5)),light,_).test75,1732 -test((s([replace],P),close_to(P,0.5)),light,_).test76,1778 -test((s([replace],P),close_to(P,0.5)),light,_).test76,1778 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test79,1828 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test79,1828 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test80,1898 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test80,1898 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test83,1969 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test83,1969 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test84,2040 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test84,2040 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test85,2111 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test85,2111 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test86,2182 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test86,2182 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test87,2247 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test87,2247 -test((s([female(f)],P),close_to(P,0.6)),female,_).test90,2314 -test((s([female(f)],P),close_to(P,0.6)),female,_).test90,2314 -test((s([male(f)],P),close_to(P,0.4)),female,_).test91,2365 -test((s([male(f)],P),close_to(P,0.4)),female,_).test91,2365 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test93,2415 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test93,2415 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test94,2479 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test94,2479 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test96,2544 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test96,2544 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test97,2594 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test97,2594 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test99,2643 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test99,2643 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test100,2714 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test100,2714 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test101,2785 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test101,2785 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test103,2857 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test103,2857 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test104,2939 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test104,2939 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test107,3023 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test107,3023 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test108,3075 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test108,3075 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test109,3127 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test109,3127 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test110,3179 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test110,3179 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test111,3231 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test111,3231 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test112,3282 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test112,3282 -test((s([a],P),close_to(P,0.226)),ex,_).test114,3335 -test((s([a],P),close_to(P,0.226)),ex,_).test114,3335 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test116,3377 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test116,3377 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test117,3431 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test117,3431 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test119,3486 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test119,3486 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test120,3540 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test120,3540 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test124,3597 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test124,3597 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test125,3666 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test125,3666 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test127,3736 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test127,3736 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test128,3805 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test128,3805 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test131,3876 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test131,3876 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test132,3941 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test132,3941 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test133,4006 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test133,4006 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test136,4073 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test136,4073 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test137,4143 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test137,4143 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test138,4213 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test138,4213 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test140,4284 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test140,4284 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test141,4393 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test141,4393 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test142,4504 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test142,4504 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test144,4614 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test144,4614 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test145,4709 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test145,4709 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test146,4805 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test146,4805 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test148,4902 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test148,4902 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test149,4973 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test149,4973 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test150,5044 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test150,5044 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test151,5114 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test151,5114 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test153,5185 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test153,5185 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test154,5305 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test154,5305 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test155,5426 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test155,5426 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test156,5547 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test156,5547 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test176,7089 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test176,7089 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test177,7169 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test177,7169 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test178,7248 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test178,7248 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test187,7745 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test187,7745 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test188,7847 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test188,7847 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test189,7949 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test189,7949 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test191,8051 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test191,8051 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test192,8154 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test192,8154 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test193,8257 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test193,8257 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test195,8361 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test195,8361 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test196,8478 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test196,8478 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test197,8595 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test197,8595 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test198,8711 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test198,8711 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test200,8828 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test200,8828 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test201,8895 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test201,8895 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test202,8957 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test202,8957 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test204,9025 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test204,9025 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test205,9127 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test205,9127 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test206,9229 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test206,9229 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test208,9332 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test208,9332 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test209,9398 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test209,9398 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test210,9464 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test210,9464 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test213,9531 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test213,9531 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test214,9616 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test214,9616 - -packages/cplint/testlpadsld_gbtrue.pl,16825 -epsilon(0.000001).epsilon15,203 -epsilon(0.000001).epsilon15,203 -close_to(V,T):-close_to17,223 -close_to(V,T):-close_to17,223 -close_to(V,T):-close_to17,223 -ti:-ti24,301 -ti:-ti34,592 -t:-t37,634 -t:-t48,904 -test_files([],_GB).test_files51,945 -test_files([],_GB).test_files51,945 -test_files([H|T],GB):-test_files53,966 -test_files([H|T],GB):-test_files53,966 -test_files([H|T],GB):-test_files53,966 -test_filesi([],_GB).test_filesi61,1156 -test_filesi([],_GB).test_filesi61,1156 -test_filesi([H|T],GB):-test_filesi63,1178 -test_filesi([H|T],GB):-test_filesi63,1178 -test_filesi([H|T],GB):-test_filesi63,1178 -test_all(_F,[]).test_all72,1379 -test_all(_F,[]).test_all72,1379 -test_all(F,[H|T]):-test_all74,1397 -test_all(F,[H|T]):-test_all74,1397 -test_all(F,[H|T]):-test_all74,1397 -test_alli(_F,[]).test_alli81,1526 -test_alli(_F,[]).test_alli81,1526 -test_alli(F,[H|T]):-test_alli83,1545 -test_alli(F,[H|T]):-test_alli83,1545 -test_alli(F,[H|T]):-test_alli83,1545 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test95,1883 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test95,1883 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test97,1946 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test97,1946 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test98,2021 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test98,2021 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test99,2097 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test99,2097 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test100,2174 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test100,2174 -test((s([push,replace],P),close_to(P,0.5)),light,_).test102,2254 -test((s([push,replace],P),close_to(P,0.5)),light,_).test102,2254 -test((s([push,light],P),close_to(P,0.5)),light,_).test103,2307 -test((s([push,light],P),close_to(P,0.5)),light,_).test103,2307 -test((s([push,light,replace],P),close_to(P,0)),light,_).test104,2358 -test((s([push,light,replace],P),close_to(P,0)),light,_).test104,2358 -test((s([light,replace],P),close_to(P,0)),light,_).test105,2415 -test((s([light,replace],P),close_to(P,0)),light,_).test105,2415 -test((s([light],P),close_to(P,0.5)),light,_).test106,2467 -test((s([light],P),close_to(P,0.5)),light,_).test106,2467 -test((s([replace],P),close_to(P,0.5)),light,_).test107,2513 -test((s([replace],P),close_to(P,0.5)),light,_).test107,2513 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test110,2563 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test110,2563 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test111,2633 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test111,2633 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test114,2704 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test114,2704 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test115,2775 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test115,2775 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test116,2846 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test116,2846 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test117,2917 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test117,2917 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test118,2982 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test118,2982 -test((s([female(f)],P),close_to(P,0.6)),female,_).test121,3049 -test((s([female(f)],P),close_to(P,0.6)),female,_).test121,3049 -test((s([male(f)],P),close_to(P,0.4)),female,_).test122,3100 -test((s([male(f)],P),close_to(P,0.4)),female,_).test122,3100 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test124,3150 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test124,3150 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test125,3214 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test125,3214 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test127,3279 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test127,3279 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test128,3329 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test128,3329 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test130,3378 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test130,3378 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test131,3449 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test131,3449 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test132,3520 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test132,3520 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test134,3592 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test134,3592 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test135,3674 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test135,3674 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test138,3758 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test138,3758 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test139,3810 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test139,3810 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test140,3862 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test140,3862 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test141,3914 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test141,3914 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test142,3966 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test142,3966 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test143,4017 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test143,4017 -test((s([a],P),close_to(P,0.226)),ex,_).test145,4070 -test((s([a],P),close_to(P,0.226)),ex,_).test145,4070 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test147,4112 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test147,4112 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test148,4166 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test148,4166 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test150,4221 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test150,4221 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test151,4275 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test151,4275 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test155,4332 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test155,4332 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test156,4401 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test156,4401 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test158,4471 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test158,4471 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test159,4540 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test159,4540 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test162,4611 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test162,4611 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test163,4676 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test163,4676 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test164,4741 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test164,4741 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test167,4808 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test167,4808 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test168,4878 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test168,4878 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test169,4948 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test169,4948 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test171,5019 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test171,5019 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test172,5128 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test172,5128 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test173,5239 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test173,5239 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test175,5349 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test175,5349 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test176,5444 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test176,5444 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test177,5540 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test177,5540 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test179,5637 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test179,5637 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test180,5708 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test180,5708 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test181,5779 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test181,5779 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test182,5849 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test182,5849 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test184,5920 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test184,5920 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test185,6040 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test185,6040 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test186,6161 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test186,6161 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test187,6282 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test187,6282 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test207,7824 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test207,7824 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test208,7904 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test208,7904 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test209,7983 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test209,7983 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test218,8480 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test218,8480 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test219,8582 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test219,8582 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test220,8684 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test220,8684 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test222,8786 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test222,8786 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test223,8889 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test223,8889 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test224,8992 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test224,8992 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test226,9096 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test226,9096 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test227,9213 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test227,9213 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test228,9330 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test228,9330 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test229,9446 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test229,9446 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test231,9563 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test231,9563 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test232,9630 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test232,9630 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test233,9692 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test233,9692 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test235,9760 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test235,9760 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test236,9862 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test236,9862 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test237,9964 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test237,9964 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test239,10067 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test239,10067 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test240,10133 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test240,10133 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test241,10199 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test241,10199 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test244,10266 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test244,10266 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test245,10351 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test245,10351 - -packages/cplint/testlpadsldit.pl,17044 -epsilon(0.000001).epsilon16,213 -epsilon(0.000001).epsilon16,213 -close_to(V,T):-close_to18,233 -close_to(V,T):-close_to18,233 -close_to(V,T):-close_to18,233 -t:-t25,311 -t:-t37,644 -test_filesi([],_GB).test_filesi40,685 -test_filesi([],_GB).test_filesi40,685 -test_filesi([H|T],GB):-test_filesi42,707 -test_filesi([H|T],GB):-test_filesi42,707 -test_filesi([H|T],GB):-test_filesi42,707 -test_alli(_F,[]).test_alli51,908 -test_alli(_F,[]).test_alli51,908 -test_alli(F,[H|T]):-test_alli53,927 -test_alli(F,[H|T]):-test_alli53,927 -test_alli(F,[H|T]):-test_alli53,927 -test_alli(F,[H|T]):-test_alli62,1151 -test_alli(F,[H|T]):-test_alli62,1151 -test_alli(F,[H|T]):-test_alli62,1151 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test80,1470 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test80,1470 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test82,1533 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test82,1533 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test83,1608 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test83,1608 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test84,1684 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test84,1684 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test85,1761 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test85,1761 -test((s([push,replace],P),close_to(P,0.5)),light,_).test87,1841 -test((s([push,replace],P),close_to(P,0.5)),light,_).test87,1841 -test((s([push,light],P),close_to(P,0.5)),light,_).test88,1894 -test((s([push,light],P),close_to(P,0.5)),light,_).test88,1894 -test((s([push,light,replace],P),close_to(P,0)),light,_).test89,1945 -test((s([push,light,replace],P),close_to(P,0)),light,_).test89,1945 -test((s([light,replace],P),close_to(P,0)),light,_).test90,2002 -test((s([light,replace],P),close_to(P,0)),light,_).test90,2002 -test((s([light],P),close_to(P,0.5)),light,_).test91,2054 -test((s([light],P),close_to(P,0.5)),light,_).test91,2054 -test((s([replace],P),close_to(P,0.5)),light,_).test92,2100 -test((s([replace],P),close_to(P,0.5)),light,_).test92,2100 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test95,2150 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test95,2150 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test96,2220 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test96,2220 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test99,2291 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test99,2291 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test100,2362 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test100,2362 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test101,2433 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test101,2433 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test102,2504 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test102,2504 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test103,2569 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test103,2569 -test((s([female(f)],P),close_to(P,0.6)),female,_).test106,2636 -test((s([female(f)],P),close_to(P,0.6)),female,_).test106,2636 -test((s([male(f)],P),close_to(P,0.4)),female,_).test107,2687 -test((s([male(f)],P),close_to(P,0.4)),female,_).test107,2687 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test109,2737 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test109,2737 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test110,2801 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test110,2801 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test112,2866 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test112,2866 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test113,2916 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test113,2916 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test115,2965 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test115,2965 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test116,3036 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test116,3036 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test117,3107 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test117,3107 -test((s([on(3,1)],P),close_to(P,0.0987654320987654)),threesideddice,_). test118,3178 -test((s([on(3,1)],P),close_to(P,0.0987654320987654)),threesideddice,_). test118,3178 -test((s([on(4,1)],P),close_to(P,0.0658436213991769)),threesideddice,_).test119,3252 -test((s([on(4,1)],P),close_to(P,0.0658436213991769)),threesideddice,_).test119,3252 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test121,3325 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test121,3325 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test122,3407 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test122,3407 -test((sc([on(5,1)],[on(2,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test124,3577 -test((sc([on(5,1)],[on(2,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test124,3577 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test128,3663 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test128,3663 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test129,3715 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test129,3715 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test130,3767 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test130,3767 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test131,3819 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test131,3819 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test132,3871 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test132,3871 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test133,3922 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test133,3922 -test((s([a],P),close_to(P,0.226)),ex,_).test135,3975 -test((s([a],P),close_to(P,0.226)),ex,_).test135,3975 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test137,4017 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test137,4017 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test138,4071 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test138,4071 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test140,4126 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test140,4126 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test141,4180 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test141,4180 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test145,4237 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test145,4237 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test146,4306 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test146,4306 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test148,4376 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test148,4376 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test149,4445 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test149,4445 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test152,4516 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test152,4516 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test153,4581 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test153,4581 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test154,4646 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test154,4646 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test157,4713 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test157,4713 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test158,4783 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test158,4783 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test159,4853 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test159,4853 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test161,4924 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test161,4924 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test162,5033 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test162,5033 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test163,5144 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test163,5144 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test165,5254 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test165,5254 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test166,5349 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test166,5349 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test167,5445 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test167,5445 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test169,5542 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test169,5542 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test170,5613 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test170,5613 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test171,5684 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test171,5684 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test172,5754 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test172,5754 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test174,5825 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test174,5825 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test175,5945 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test175,5945 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test176,6066 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test176,6066 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test177,6187 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test177,6187 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test197,7729 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test197,7729 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test198,7809 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test198,7809 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test199,7888 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test199,7888 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test208,8385 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test208,8385 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test209,8487 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test209,8487 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test210,8589 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test210,8589 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test212,8691 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test212,8691 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test213,8794 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test213,8794 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test214,8897 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test214,8897 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test216,9001 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test216,9001 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test217,9118 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test217,9118 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test218,9235 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test218,9235 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test219,9351 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test219,9351 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test221,9468 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test221,9468 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test222,9535 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test222,9535 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test223,9597 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test223,9597 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test225,9665 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test225,9665 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test226,9767 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test226,9767 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test227,9869 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test227,9869 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test229,9972 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test229,9972 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test230,10038 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test230,10038 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test231,10104 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test231,10104 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test234,10171 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test234,10171 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test235,10256 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test235,10256 - -packages/cplint/testlpadslditc.pl,17238 -epsilon(0.000001).epsilon16,213 -epsilon(0.000001).epsilon16,213 -close_to(V,T):-close_to18,233 -close_to(V,T):-close_to18,233 -close_to(V,T):-close_to18,233 -t:-t25,311 -t:-t37,644 -test_filesi([],_GB).test_filesi40,685 -test_filesi([],_GB).test_filesi40,685 -test_filesi([H|T],GB):-test_filesi42,707 -test_filesi([H|T],GB):-test_filesi42,707 -test_filesi([H|T],GB):-test_filesi42,707 -test_alli(_F,[]).test_alli51,908 -test_alli(_F,[]).test_alli51,908 -test_alli(F,[H|T]):-test_alli53,927 -test_alli(F,[H|T]):-test_alli53,927 -test_alli(F,[H|T]):-test_alli53,927 -test_alli(F,[H|T]):-test_alli62,1152 -test_alli(F,[H|T]):-test_alli62,1152 -test_alli(F,[H|T]):-test_alli62,1152 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test80,1471 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test80,1471 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test82,1534 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test82,1534 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test83,1609 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test83,1609 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test84,1685 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test84,1685 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test85,1762 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test85,1762 -test((s([push,replace],P),close_to(P,0.5)),light,_).test87,1842 -test((s([push,replace],P),close_to(P,0.5)),light,_).test87,1842 -test((s([push,light],P),close_to(P,0.5)),light,_).test88,1895 -test((s([push,light],P),close_to(P,0.5)),light,_).test88,1895 -test((s([push,light,replace],P),close_to(P,0)),light,_).test89,1946 -test((s([push,light,replace],P),close_to(P,0)),light,_).test89,1946 -test((s([light,replace],P),close_to(P,0)),light,_).test90,2003 -test((s([light,replace],P),close_to(P,0)),light,_).test90,2003 -test((s([light],P),close_to(P,0.5)),light,_).test91,2055 -test((s([light],P),close_to(P,0.5)),light,_).test91,2055 -test((s([replace],P),close_to(P,0.5)),light,_).test92,2101 -test((s([replace],P),close_to(P,0.5)),light,_).test92,2101 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test95,2151 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test95,2151 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test96,2221 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test96,2221 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test99,2292 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test99,2292 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test100,2363 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test100,2363 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test101,2434 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test101,2434 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test102,2505 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test102,2505 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test103,2570 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test103,2570 -test((s([female(f)],P),close_to(P,0.6)),female,_).test106,2637 -test((s([female(f)],P),close_to(P,0.6)),female,_).test106,2637 -test((s([male(f)],P),close_to(P,0.4)),female,_).test107,2688 -test((s([male(f)],P),close_to(P,0.4)),female,_).test107,2688 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test109,2738 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test109,2738 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test110,2802 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test110,2802 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test112,2867 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test112,2867 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test113,2917 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test113,2917 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test115,2966 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test115,2966 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test116,3037 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test116,3037 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test117,3108 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test117,3108 -test((s([on(3,1)],P),close_to(P,0.0987654320987654)),threesideddice,_). test118,3179 -test((s([on(3,1)],P),close_to(P,0.0987654320987654)),threesideddice,_). test118,3179 -test((s([on(4,1)],P),close_to(P,0.0658436213991769)),threesideddice,_).test119,3253 -test((s([on(4,1)],P),close_to(P,0.0658436213991769)),threesideddice,_).test119,3253 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test121,3326 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test121,3326 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test122,3408 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test122,3408 -test((sc([on(4,1)],[on(1,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test123,3490 -test((sc([on(4,1)],[on(1,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test123,3490 -test((sc([on(5,1)],[on(2,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test124,3573 -test((sc([on(5,1)],[on(2,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test124,3573 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test128,3659 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test128,3659 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test129,3711 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test129,3711 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test130,3763 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test130,3763 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test131,3815 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test131,3815 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test132,3867 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test132,3867 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test133,3918 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test133,3918 -test((s([a],P),close_to(P,0.226)),ex,_).test135,3971 -test((s([a],P),close_to(P,0.226)),ex,_).test135,3971 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test137,4013 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test137,4013 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test138,4067 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test138,4067 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test140,4122 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test140,4122 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test141,4176 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test141,4176 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test145,4233 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test145,4233 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test146,4302 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test146,4302 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test148,4372 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test148,4372 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test149,4441 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test149,4441 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test152,4512 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test152,4512 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test153,4577 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test153,4577 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test154,4642 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test154,4642 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test157,4709 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test157,4709 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test158,4779 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test158,4779 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test159,4849 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test159,4849 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test161,4920 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test161,4920 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test162,5029 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test162,5029 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test163,5140 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test163,5140 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test165,5250 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test165,5250 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test166,5345 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test166,5345 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test167,5441 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test167,5441 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test169,5538 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test169,5538 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test170,5609 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test170,5609 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test171,5680 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test171,5680 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test172,5750 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test172,5750 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test174,5821 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test174,5821 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test175,5941 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test175,5941 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test176,6062 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test176,6062 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test177,6183 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test177,6183 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test197,7725 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test197,7725 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test198,7805 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test198,7805 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test199,7884 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test199,7884 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test208,8381 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test208,8381 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test209,8483 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test209,8483 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test210,8585 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test210,8585 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test212,8687 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test212,8687 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test213,8790 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test213,8790 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test214,8893 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test214,8893 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test216,8997 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test216,8997 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test217,9114 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test217,9114 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test218,9231 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test218,9231 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test219,9347 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test219,9347 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test221,9464 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test221,9464 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test222,9531 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test222,9531 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test223,9593 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test223,9593 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test225,9661 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test225,9661 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test226,9763 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test226,9763 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test227,9865 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test227,9865 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test229,9968 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test229,9968 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test230,10034 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test230,10034 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test231,10100 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test231,10100 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test234,10167 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test234,10167 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test235,10252 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test235,10252 - -packages/cplint/testlpadslditr.pl,17234 -epsilon(0.000001).epsilon16,213 -epsilon(0.000001).epsilon16,213 -close_to(V,T):-close_to18,233 -close_to(V,T):-close_to18,233 -close_to(V,T):-close_to18,233 -t:-t25,311 -t:-t37,644 -test_filesi([],_GB).test_filesi40,685 -test_filesi([],_GB).test_filesi40,685 -test_filesi([H|T],GB):-test_filesi42,707 -test_filesi([H|T],GB):-test_filesi42,707 -test_filesi([H|T],GB):-test_filesi42,707 -test_alli(_F,[]).test_alli51,908 -test_alli(_F,[]).test_alli51,908 -test_alli(F,[H|T]):-test_alli53,927 -test_alli(F,[H|T]):-test_alli53,927 -test_alli(F,[H|T]):-test_alli53,927 -test_alli(F,[H|T]):-test_alli62,1152 -test_alli(F,[H|T]):-test_alli62,1152 -test_alli(F,[H|T]):-test_alli62,1152 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test78,1470 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test78,1470 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test80,1533 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test80,1533 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test81,1608 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test81,1608 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test82,1684 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test82,1684 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test83,1761 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test83,1761 -test((s([push,replace],P),close_to(P,0.5)),light,_).test85,1841 -test((s([push,replace],P),close_to(P,0.5)),light,_).test85,1841 -test((s([push,light],P),close_to(P,0.5)),light,_).test86,1894 -test((s([push,light],P),close_to(P,0.5)),light,_).test86,1894 -test((s([push,light,replace],P),close_to(P,0)),light,_).test87,1945 -test((s([push,light,replace],P),close_to(P,0)),light,_).test87,1945 -test((s([light,replace],P),close_to(P,0)),light,_).test88,2002 -test((s([light,replace],P),close_to(P,0)),light,_).test88,2002 -test((s([light],P),close_to(P,0.5)),light,_).test89,2054 -test((s([light],P),close_to(P,0.5)),light,_).test89,2054 -test((s([replace],P),close_to(P,0.5)),light,_).test90,2100 -test((s([replace],P),close_to(P,0.5)),light,_).test90,2100 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test93,2150 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test93,2150 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test94,2220 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test94,2220 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test97,2291 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test97,2291 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test98,2362 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test98,2362 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test99,2433 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test99,2433 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test100,2504 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test100,2504 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test101,2569 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test101,2569 -test((s([female(f)],P),close_to(P,0.6)),female,_).test104,2636 -test((s([female(f)],P),close_to(P,0.6)),female,_).test104,2636 -test((s([male(f)],P),close_to(P,0.4)),female,_).test105,2687 -test((s([male(f)],P),close_to(P,0.4)),female,_).test105,2687 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test107,2737 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test107,2737 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test108,2801 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test108,2801 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test110,2866 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test110,2866 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test111,2916 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test111,2916 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test113,2965 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test113,2965 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test114,3036 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test114,3036 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test115,3107 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test115,3107 -test((s([on(3,1)],P),close_to(P,0.0987654320987654)),threesideddice,_). test116,3178 -test((s([on(3,1)],P),close_to(P,0.0987654320987654)),threesideddice,_). test116,3178 -test((s([on(4,1)],P),close_to(P,0.0658436213991769)),threesideddice,_).test117,3252 -test((s([on(4,1)],P),close_to(P,0.0658436213991769)),threesideddice,_).test117,3252 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test119,3325 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test119,3325 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test120,3407 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test120,3407 -test((sc([on(4,1)],[on(1,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test121,3489 -test((sc([on(4,1)],[on(1,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test121,3489 -test((sc([on(5,1)],[on(2,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test122,3572 -test((sc([on(5,1)],[on(2,1)],P),close_to(P, 0.148148148148148)),threesideddice,_).test122,3572 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test126,3658 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test126,3658 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test127,3710 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test127,3710 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test128,3762 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test128,3762 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test129,3814 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test129,3814 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test130,3866 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test130,3866 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test131,3917 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test131,3917 -test((s([a],P),close_to(P,0.226)),ex,_).test133,3970 -test((s([a],P),close_to(P,0.226)),ex,_).test133,3970 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test135,4012 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test135,4012 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test136,4066 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test136,4066 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test138,4121 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test138,4121 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test139,4175 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test139,4175 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test143,4232 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test143,4232 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test144,4301 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test144,4301 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test146,4371 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test146,4371 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test147,4440 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test147,4440 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test150,4511 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test150,4511 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test151,4576 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test151,4576 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test152,4641 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test152,4641 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test155,4708 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test155,4708 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test156,4778 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test156,4778 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test157,4848 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test157,4848 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test159,4919 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test159,4919 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test160,5028 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test160,5028 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test161,5139 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test161,5139 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test163,5249 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test163,5249 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test164,5344 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test164,5344 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test165,5440 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test165,5440 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test167,5537 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test167,5537 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test168,5608 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test168,5608 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test169,5679 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test169,5679 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test170,5749 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test170,5749 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test172,5820 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test172,5820 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test173,5940 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test173,5940 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test174,6061 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test174,6061 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test175,6182 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test175,6182 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test195,7724 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test195,7724 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test196,7804 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test196,7804 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test197,7883 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test197,7883 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test206,8380 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test206,8380 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test207,8482 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test207,8482 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test208,8584 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test208,8584 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test210,8686 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test210,8686 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test211,8789 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test211,8789 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test212,8892 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test212,8892 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test214,8996 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test214,8996 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test215,9113 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test215,9113 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test216,9230 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test216,9230 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test217,9346 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test217,9346 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test219,9463 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test219,9463 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test220,9530 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test220,9530 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test221,9592 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test221,9592 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test223,9660 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test223,9660 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test224,9762 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test224,9762 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test225,9864 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test225,9864 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test227,9967 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test227,9967 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test228,10033 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test228,10033 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test229,10099 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test229,10099 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test232,10166 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test232,10166 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test233,10251 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test233,10251 - -packages/cplint/testlpadvel.pl,16405 -epsilon(0.000001).epsilon16,229 -epsilon(0.000001).epsilon16,229 -close_to(V,T):-close_to18,249 -close_to(V,T):-close_to18,249 -close_to(V,T):-close_to18,249 -t:-t25,327 -t:-t32,457 -t(Order):-t35,498 -t(Order):-t35,498 -t(Order):-t35,498 -test_files([],_GB).test_files46,731 -test_files([],_GB).test_files46,731 -test_files([H|T],GB):-test_files48,752 -test_files([H|T],GB):-test_files48,752 -test_files([H|T],GB):-test_files48,752 -test_all(_F,[]).test_all57,943 -test_all(_F,[]).test_all57,943 -test_all(F,[H|T]):-test_all59,961 -test_all(F,[H|T]):-test_all59,961 -test_all(F,[H|T]):-test_all59,961 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test71,1173 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test71,1173 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test73,1236 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test73,1236 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test74,1311 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test74,1311 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test75,1387 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test75,1387 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test76,1464 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test76,1464 -test((s([push,replace],P),close_to(P,0.5)),light,_).test78,1544 -test((s([push,replace],P),close_to(P,0.5)),light,_).test78,1544 -test((s([push,light],P),close_to(P,0.5)),light,_).test79,1597 -test((s([push,light],P),close_to(P,0.5)),light,_).test79,1597 -test((s([push,light,replace],P),close_to(P,0)),light,_).test80,1648 -test((s([push,light,replace],P),close_to(P,0)),light,_).test80,1648 -test((s([light,replace],P),close_to(P,0)),light,_).test81,1705 -test((s([light,replace],P),close_to(P,0)),light,_).test81,1705 -test((s([light],P),close_to(P,0.5)),light,_).test82,1757 -test((s([light],P),close_to(P,0.5)),light,_).test82,1757 -test((s([replace],P),close_to(P,0.5)),light,_).test83,1803 -test((s([replace],P),close_to(P,0.5)),light,_).test83,1803 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test86,1853 -test((s([\+ cites_cited(c1,p1)],P),close_to(P,0.7)),paper_ref_not,_).test86,1853 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test87,1923 -test((s([cites_citing(c1,p1)],P),close_to(P,0.14)),paper_ref_not,_).test87,1923 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test90,1994 -test((s([cites_cited(c1,p1)],P),close_to(P,0.181333333)),paper_ref,_).test90,1994 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test91,2065 -test((s([cites_cited(c1,p2)],P),close_to(P,0.181333333)),paper_ref,_).test91,2065 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test92,2136 -test((s([cites_cited(c1,p4)],P),close_to(P,0.181333333)),paper_ref,_).test92,2136 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test93,2207 -test((s([cites_cited(c1,p3)],P),close_to(P,0.228)),paper_ref,_).test93,2207 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test94,2272 -test((s([cites_cited(c1,p5)],P),close_to(P,0.228)),paper_ref,_).test94,2272 -test((s([female(f)],P),close_to(P,0.6)),female,_).test97,2339 -test((s([female(f)],P),close_to(P,0.6)),female,_).test97,2339 -test((s([male(f)],P),close_to(P,0.4)),female,_).test98,2390 -test((s([male(f)],P),close_to(P,0.4)),female,_).test98,2390 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test100,2440 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test100,2440 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test101,2504 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test101,2504 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test103,2569 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test103,2569 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test104,2619 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test104,2619 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test106,2668 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test106,2668 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test107,2739 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test107,2739 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test108,2810 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test108,2810 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test110,2882 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test110,2882 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test111,2964 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test111,2964 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test114,3048 -test((s([cg(s,1,p)],P),close_to(P,0.75)),mendel,_).test114,3048 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test115,3100 -test((s([cg(s,1,w)],P),close_to(P,0.25)),mendel,_).test115,3100 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test116,3152 -test((s([cg(s,2,p)],P),close_to(P,0.25)),mendel,_).test116,3152 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test117,3204 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test117,3204 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test118,3256 -test((s([cg(f,2,w)],P),close_to(P,0.5)),mendel,_).test118,3256 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test119,3307 -test((s([cg(s,2,w)],P),close_to(P,0.75)),mendel,_).test119,3307 -test((s([a],P),close_to(P,0.226)),ex,_).test121,3360 -test((s([a],P),close_to(P,0.226)),ex,_).test121,3360 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test123,3402 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test123,3402 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test124,3456 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test124,3456 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test126,3511 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test126,3511 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test127,3565 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test127,3565 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test131,3622 -test((s([student_rank(jane_doe,h)],P),close_to(P,0.465)),student,_).test131,3622 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test132,3691 -test((s([student_rank(jane_doe,l)],P),close_to(P,0.535)),student,_).test132,3691 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test134,3761 -test((s([course_rat(phil101,h)],P),close_to(P,0.330656)),student,_).test134,3761 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test135,3830 -test((s([course_rat(phil101,l)],P),close_to(P,0.669344)),student,_).test135,3830 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test138,3901 -test((s([professor_ability(p0,h)],P),close_to(P,0.5)),school,_).test138,3901 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test139,3966 -test((s([professor_ability(p0,m)],P),close_to(P,0.4)),school,_).test139,3966 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test140,4031 -test((s([professor_ability(p0,l)],P),close_to(P,0.1)),school,_).test140,4031 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test143,4098 -test((s([professor_popularity(p0,h)],P),close_to(P,0.531)),school,_).test143,4098 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test144,4168 -test((s([professor_popularity(p0,l)],P),close_to(P,0.175)),school,_).test144,4168 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test145,4238 -test((s([professor_popularity(p0,m)],P),close_to(P,0.294)),school,_).test145,4238 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test147,4309 -test((sc([professor_ability(p0,h)],[professor_popularity(p0,h)],P),close_to(P,0.847457627118644)),school,_).test147,4309 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test148,4418 -test((sc([professor_ability(p0,l)],[professor_popularity(p0,h)],P),close_to(P,0.00188323917137476)),school,_).test148,4418 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test149,4529 -test((sc([professor_ability(p0,m)],[professor_popularity(p0,h)],P),close_to(P,0.150659133709981)),school,_).test149,4529 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test151,4639 -test((sc([professor_popularity(p0,h)],[professor_ability(p0,h)],P),close_to(P,0.9)),school,_).test151,4639 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test152,4734 -test((sc([professor_popularity(p0,l)],[professor_ability(p0,h)],P),close_to(P,0.01)),school,_).test152,4734 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test153,4830 -test((sc([professor_popularity(p0,m)],[professor_ability(p0,h)],P),close_to(P,0.09)),school,_).test153,4830 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test155,4927 -test(( s([registration_grade(r0,1)],P),close_to(P,0.06675)),school,_).test155,4927 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test156,4998 -test(( s([registration_grade(r0,2)],P),close_to(P,0.16575)),school,_).test156,4998 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test157,5069 -test(( s([registration_grade(r0,3)],P),close_to(P, 0.356)),school,_).test157,5069 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test158,5139 -test(( s([registration_grade(r0,4)],P),close_to(P,0.4115)),school,_).test158,5139 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test160,5210 -test((sc([registration_grade(r0,1)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.15)),school,_).test160,5210 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test161,5330 -test((sc([registration_grade(r0,2)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.285)),school,_).test161,5330 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test162,5451 -test((sc([registration_grade(r0,3)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.424)),school,_).test162,5451 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test163,5572 -test((sc([registration_grade(r0,4)],[registration_course(r0,C), course_difficulty(C,h)],P),close_to(P,0.141)),school,_).test163,5572 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test183,7114 -test((s([registration_satisfaction(r0,1)],P),close_to(P,0.15197525)),school,_).test183,7114 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test184,7194 -test((s([registration_satisfaction(r0,2)],P),close_to(P,0.1533102)),school,_).test184,7194 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test185,7273 -test((s([registration_satisfaction(r0,3)],P),close_to(P,0.6947145)),school,_).test185,7273 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test194,7770 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,4)],P),close_to(P,0.04)),school,_).test194,7770 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test195,7872 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,4)],P),close_to(P,0.06)),school,_).test195,7872 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test196,7974 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,4)],P),close_to(P,0.9)),school,_).test196,7974 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test198,8076 -test((sc([registration_satisfaction(r0,1)],[registration_grade(r0,1)],P),close_to(P,0.528)),school,_).test198,8076 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test199,8179 -test((sc([registration_satisfaction(r0,2)],[registration_grade(r0,1)],P),close_to(P,0.167)),school,_).test199,8179 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test200,8282 -test((sc([registration_satisfaction(r0,3)],[registration_grade(r0,1)],P),close_to(P,0.305)),school,_).test200,8282 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test202,8386 -test((sc([ registration_grade(r0,1)],[registration_satisfaction(r0,3)],P),close_to(P,0.0293052037923492)),school,_).test202,8386 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test203,8503 -test((sc([ registration_grade(r0,2)],[registration_satisfaction(r0,3)],P),close_to(P, 0.114760451955444)),school,_).test203,8503 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test204,8620 -test((sc([ registration_grade(r0,3)],[registration_satisfaction(r0,3)],P),close_to(P,0.322837654892765)),school,_).test204,8620 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test205,8736 -test((sc([ registration_grade(r0,4)],[registration_satisfaction(r0,3)],P),close_to(P,0.533096689359442)),school,_).test205,8736 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test207,8853 -test((s([course_rating(c0,h)],P),close_to(P,0.5392099)),school,_).test207,8853 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test208,8920 -test((s([course_rating(c0,l)],P),close_to(P, 0.2)),school,_).test208,8920 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test209,8982 -test((s([course_rating(c0,m)],P),close_to(P,0.2607901)),school,_).test209,8982 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test211,9050 -test((sc([course_difficulty(c0,h)],[course_rating(c0,h)],P),close_to(P,0.235185778302661)),school,_).test211,9050 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test212,9152 -test((sc([course_difficulty(c0,l)],[course_rating(c0,h)],P),close_to(P,0.259096503977393)),school,_).test212,9152 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test213,9254 -test((sc([course_difficulty(c0,m)],[course_rating(c0,h)],P),close_to(P,0.505717717719945)),school,_).test213,9254 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test215,9357 -test((s([course_difficulty(c0,h)],P),close_to(P,0.25)),school,_).test215,9357 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test216,9423 -test((s([course_difficulty(c0,l)],P),close_to(P,0.25)),school,_).test216,9423 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test217,9489 -test((s([course_difficulty(c0,m)],P),close_to(P,0.5)),school,_).test217,9489 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test220,9556 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test220,9556 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test221,9641 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test221,9641 - -packages/cplint/testsemcpl.pl,6501 -epsilon(0.000001).epsilon15,168 -epsilon(0.000001).epsilon15,168 -close_to(V,T):-close_to17,188 -close_to(V,T):-close_to17,188 -close_to(V,T):-close_to17,188 -t:-t25,267 -t:-t39,633 -test_files([],_GB).test_files42,675 -test_files([],_GB).test_files42,675 -test_files([H|T],GB):-test_files44,696 -test_files([H|T],GB):-test_files44,696 -test_files([H|T],GB):-test_files44,696 -test_all(_F,[]).test_all54,914 -test_all(_F,[]).test_all54,914 -test_all(F,[H|T]):-test_all56,932 -test_all(F,[H|T]):-test_all56,932 -test_all(F,[H|T]):-test_all56,932 -test((s([p],P),close_to(P,0)),invalid,_). test69,1162 -test((s([p],P),close_to(P,0)),invalid,_). test69,1162 -test((s([q],P),close_to(P,0)),invalid,_). test70,1205 -test((s([q],P),close_to(P,0)),invalid,_). test70,1205 -test((s([p,q],P),close_to(P,0)),invalid,_). test71,1248 -test((s([p,q],P),close_to(P,0)),invalid,_). test71,1248 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test73,1294 -test((s([throws(mary),throws(john),break],P),close_to(P,0.46)),throws,_). test73,1294 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test74,1369 -test((s([throws(mary),throws(john),\+break],P),close_to(P,0.04)),throws,_).test74,1369 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test75,1445 -test((s([\+ throws(mary),throws(john),break],P),close_to(P,0.3)),throws,_). test75,1445 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test76,1522 -test((s([\+ throws(mary),throws(john),\+ break],P),close_to(P,0.2)),throws,_).test76,1522 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test78,1602 -test((s([death],P),close_to(P,0.305555555555556)),trigger,_).test78,1602 -test((s([win(white)],P),close_to(P,0.5)),win,_).test80,1665 -test((s([win(white)],P),close_to(P,0.5)),win,_).test80,1665 -test((s([win(black)],P),close_to(P,0.5)),win,_).test81,1714 -test((s([win(black)],P),close_to(P,0.5)),win,_).test81,1714 -test((s([win(black),win(white)],P),close_to(P,0)),win,_).test82,1763 -test((s([win(black),win(white)],P),close_to(P,0)),win,_).test82,1763 -test((s([hiv(a)],P),close_to(P,0.154)),hiv,_).test84,1822 -test((s([hiv(a)],P),close_to(P,0.154)),hiv,_).test84,1822 -test((s([hiv(b)],P),close_to(P,0.154)),hiv,_).test85,1869 -test((s([hiv(b)],P),close_to(P,0.154)),hiv,_).test85,1869 -test((s([hiv(b),hiv(a)],P),close_to(P,0.118)),hiv,_).test86,1916 -test((s([hiv(b),hiv(a)],P),close_to(P,0.118)),hiv,_).test86,1916 -test((s([\+ hiv(b),\+ hiv(a)],P),close_to(P,0.81)),hiv,_).test87,1970 -test((s([\+ hiv(b),\+ hiv(a)],P),close_to(P,0.81)),hiv,_).test87,1970 -test((s([ hiv(b),\+ hiv(a)],P),close_to(P,0.036)),hiv,_).test88,2029 -test((s([ hiv(b),\+ hiv(a)],P),close_to(P,0.036)),hiv,_).test88,2029 -test((s([\+ hiv(b),hiv(a)],P),close_to(P,0.036)),hiv,_).test89,2087 -test((s([\+ hiv(b),hiv(a)],P),close_to(P,0.036)),hiv,_).test89,2087 -test((s([push,replace],P),close_to(P,0.5)),light,_).test91,2145 -test((s([push,replace],P),close_to(P,0.5)),light,_).test91,2145 -test((s([push,light],P),close_to(P,0.5)),light,_).test92,2198 -test((s([push,light],P),close_to(P,0.5)),light,_).test92,2198 -test((s([push,light,replace],P),close_to(P,0)),light,_).test93,2249 -test((s([push,light,replace],P),close_to(P,0)),light,_).test93,2249 -test((s([light,replace],P),close_to(P,0)),light,_).test94,2306 -test((s([light,replace],P),close_to(P,0)),light,_).test94,2306 -test((s([light],P),close_to(P,0.5)),light,_).test95,2358 -test((s([light],P),close_to(P,0.5)),light,_).test95,2358 -test((s([replace],P),close_to(P,0.5)),light,_).test96,2404 -test((s([replace],P),close_to(P,0.5)),light,_).test96,2404 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test99,2454 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test99,2454 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test100,2518 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test100,2518 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test103,2584 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test103,2584 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test104,2634 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test104,2634 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test106,2683 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test106,2683 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test107,2754 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test107,2754 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test108,2825 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test108,2825 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test110,2897 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test110,2897 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test111,2979 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test111,2979 -test((s([cg(s,1,p)],P),close_to(P,0.5)),mendels,ground_body(false)).test114,3063 -test((s([cg(s,1,p)],P),close_to(P,0.5)),mendels,ground_body(false)).test114,3063 -test((s([cg(s,1,w)],P),close_to(P,0.5)),mendels,ground_body(false)).test115,3132 -test((s([cg(s,1,w)],P),close_to(P,0.5)),mendels,ground_body(false)).test115,3132 -test((s([cg(s,2,p)],P),close_to(P,1.0)),mendels,ground_body(false)).test116,3201 -test((s([cg(s,2,p)],P),close_to(P,1.0)),mendels,ground_body(false)).test116,3201 -test((s([cg(s,2,w)],P),close_to(P,0)),mendels,ground_body(false)).test117,3270 -test((s([cg(s,2,w)],P),close_to(P,0)),mendels,ground_body(false)).test117,3270 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test120,3339 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test120,3339 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test121,3393 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test121,3393 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test123,3448 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test123,3448 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test124,3502 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test124,3502 -test((s([a],P),close_to(P,0.226)),ex,_).test126,3557 -test((s([a],P),close_to(P,0.226)),ex,_).test126,3557 - -packages/cplint/testsemlpad.pl,3931 -epsilon(0.000001).epsilon10,144 -epsilon(0.000001).epsilon10,144 -close_to(V,T):-close_to12,164 -close_to(V,T):-close_to12,164 -close_to(V,T):-close_to12,164 -t:-t20,243 -t:-t44,948 -test_files([],_GB).test_files47,990 -test_files([],_GB).test_files47,990 -test_files([H|T],GB):-test_files49,1011 -test_files([H|T],GB):-test_files49,1011 -test_files([H|T],GB):-test_files49,1011 -test_all(_F,[]).test_all59,1229 -test_all(_F,[]).test_all59,1229 -test_all(F,[H|T]):-test_all61,1247 -test_all(F,[H|T]):-test_all61,1247 -test_all(F,[H|T]):-test_all61,1247 -test((s([a],P),close_to(P,0.18)),exist,ground_body(false)). test87,1655 -test((s([a],P),close_to(P,0.18)),exist,ground_body(false)). test87,1655 -test((s([a],P),close_to(P,0.19)),exist,ground_body(true)). test88,1716 -test((s([a],P),close_to(P,0.19)),exist,ground_body(true)). test88,1716 -test((s([a],P),close_to(P,0.276)),exist1,ground_body(false)). test90,1777 -test((s([a],P),close_to(P,0.276)),exist1,ground_body(false)). test90,1777 -test((s([a],P),close_to(P,0.3115)),exist1,ground_body(true)). test91,1840 -test((s([a],P),close_to(P,0.3115)),exist1,ground_body(true)). test91,1840 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test93,1904 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test93,1904 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test94,1968 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test94,1968 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test96,2033 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test96,2033 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test97,2083 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test97,2083 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test99,2132 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test99,2132 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test100,2203 -test((s([on(1,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test100,2203 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test101,2274 -test((s([on(2,1)],P),close_to(P,0.148148147703704)),threesideddice,_).test101,2274 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test103,2346 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test103,2346 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test104,2428 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test104,2428 -test((s([cg(s,1,p)],P),close_to(P,0.5)),mendels,ground_body(false)).test107,2512 -test((s([cg(s,1,p)],P),close_to(P,0.5)),mendels,ground_body(false)).test107,2512 -test((s([cg(s,1,w)],P),close_to(P,0.5)),mendels,ground_body(false)).test108,2581 -test((s([cg(s,1,w)],P),close_to(P,0.5)),mendels,ground_body(false)).test108,2581 -test((s([cg(s,2,p)],P),close_to(P,1.0)),mendels,ground_body(false)).test109,2650 -test((s([cg(s,2,p)],P),close_to(P,1.0)),mendels,ground_body(false)).test109,2650 -test((s([cg(s,2,w)],P),close_to(P,0)),mendels,ground_body(false)).test110,2719 -test((s([cg(s,2,w)],P),close_to(P,0)),mendels,ground_body(false)).test110,2719 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test113,2788 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test113,2788 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test114,2842 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test114,2842 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test116,2897 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test116,2897 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test117,2951 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test117,2951 -test((s([a],P),close_to(P,0.226)),ex,_).test119,3006 -test((s([a],P),close_to(P,0.226)),ex,_).test119,3006 - -packages/cplint/testsemlpadsld.pl,4057 -epsilon(0.000001).epsilon10,150 -epsilon(0.000001).epsilon10,150 -close_to(V,T):-close_to12,170 -close_to(V,T):-close_to12,170 -close_to(V,T):-close_to12,170 -t:-t20,249 -t:-t44,957 -test_files([],_GB).test_files47,999 -test_files([],_GB).test_files47,999 -test_files([H|T],GB):-test_files49,1020 -test_files([H|T],GB):-test_files49,1020 -test_files([H|T],GB):-test_files49,1020 -test_all(_F,[]).test_all59,1238 -test_all(_F,[]).test_all59,1238 -test_all(F,[H|T]):-test_all61,1256 -test_all(F,[H|T]):-test_all61,1256 -test_all(F,[H|T]):-test_all61,1256 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test91,1588 -test((s([a],P),close_to(P,0.1719)),exapprox,ground_body(true)).test91,1588 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test92,1652 -test((s([a],P),close_to(P,0.099)),exapprox,ground_body(false)).test92,1652 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test94,1717 -test((s([a(1)],P),close_to(P,0.2775)),exrange,_).test94,1717 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test95,1767 -test((s([a(2)],P),close_to(P,0.36)),exrange,_).test95,1767 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test97,1816 -test((s([on(0,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test97,1816 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test101,2032 -test((sc([on(2,1)],[on(0,1)],P),close_to(P,0.222222222222222)),threesideddice,_).test101,2032 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test102,2114 -test((sc([on(2,1)],[on(1,1)],P),close_to(P,0.333333333333333)),threesideddice,_).test102,2114 -test((s([cg(s,1,p)],P),close_to(P,0.5)),mendels,ground_body(false)).test105,2198 -test((s([cg(s,1,p)],P),close_to(P,0.5)),mendels,ground_body(false)).test105,2198 -test((s([cg(s,1,w)],P),close_to(P,0.5)),mendels,ground_body(false)).test106,2267 -test((s([cg(s,1,w)],P),close_to(P,0.5)),mendels,ground_body(false)).test106,2267 -test((s([cg(s,2,p)],P),close_to(P,1.0)),mendels,ground_body(false)).test107,2336 -test((s([cg(s,2,p)],P),close_to(P,1.0)),mendels,ground_body(false)).test107,2336 -test((s([cg(s,2,w)],P),close_to(P,0)),mendels,ground_body(false)).test108,2405 -test((s([cg(s,2,w)],P),close_to(P,0)),mendels,ground_body(false)).test108,2405 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,ground_body(false)).test112,2475 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,ground_body(false)).test112,2475 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,ground_body(false)).test113,2577 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,ground_body(false)).test113,2577 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test116,2768 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test116,2768 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test117,2854 -test((s([student_ranking(s0,h)],P),close_to(P,0.6646250000000005)),school_simple,_).test117,2854 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test118,2939 -test((s([student_ranking(s0,l)],P),close_to(P,0.33537499999999987)),school_simple,_).test118,2939 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test121,3029 -test((s([heads(coin1)],P),close_to(P,0.51)),coin2,_).test121,3029 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test122,3083 -test((s([heads(coin2)],P),close_to(P,0.51)),coin2,_).test122,3083 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test124,3138 -test((s([tails(coin1)],P),close_to(P,0.49)),coin2,_).test124,3138 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test125,3192 -test((s([tails(coin2)],P),close_to(P,0.49)),coin2,_).test125,3192 -test((s([a],P),close_to(P,0.226)),ex,_).test127,3247 -test((s([a],P),close_to(P,0.226)),ex,_).test127,3247 - -packages/cuda/bpreds.h,35 -#define _BPREDS_H__BPREDS_H_3,48 - -packages/cuda/bpredscpu.cpp,86 -int bpredscpu(int *dop1, int rows, int *bin, int3 numpreds, int **ret)bpredscpu3,19 - -packages/cuda/CC_CSSTree.h,1795 -#define CSSTREE_HCSSTREE_H2,19 -#define divRoundUp(divRoundUp8,104 -#define CSS_TREE_FANOUT CSS_TREE_FANOUT9,176 -typedef int Record;Record12,260 -class CC_GenericTreeCC_GenericTree14,283 - int numRecord;numRecord17,317 - int numRecord;CC_GenericTree::numRecord17,317 - Record *data;data18,334 - Record *data;CC_GenericTree::data18,334 - int numNode;numNode20,399 - int numNode;CC_GenericTree::numNode20,399 - int level;level21,414 - int level;CC_GenericTree::level21,414 - int gResult;gResult22,427 - int gResult;CC_GenericTree::gResult22,427 - CC_GenericTree(){}CC_GenericTree23,442 - CC_GenericTree(){}CC_GenericTree::CC_GenericTree23,442 - CC_GenericTree(Record *d, int numR)CC_GenericTree26,606 - CC_GenericTree(Record *d, int numR)CC_GenericTree::CC_GenericTree26,606 - virtual ~CC_GenericTree()~CC_GenericTree31,683 - virtual ~CC_GenericTree()CC_GenericTree::~CC_GenericTree31,683 -class CC_CSSTree:public CC_GenericTreeCC_CSSTree38,760 - int *ntree;ntree41,812 - int *ntree;CC_CSSTree::ntree41,812 - int fanout;fanout42,826 - int fanout;CC_CSSTree::fanout42,826 - int blockSize;blockSize43,840 - int blockSize;CC_CSSTree::blockSize43,840 - int *vStart;vStart44,857 - int *vStart;CC_CSSTree::vStart44,857 - int *vG;//vG[0] is used in computing the position for level 1.vG45,872 - int *vG;//vG[0] is used in computing the position for level 1.CC_CSSTree::vG45,872 - int numKey;numKey46,937 - int numKey;CC_CSSTree::numKey46,937 - CC_CSSTree(Record *d, int numR, int f):CC_GenericTree(d,numR)CC_CSSTree47,951 - CC_CSSTree(Record *d, int numR, int f):CC_GenericTree(d,numR)CC_CSSTree::CC_CSSTree47,951 - ~CC_CSSTree()~CC_CSSTree99,2323 - ~CC_CSSTree()CC_CSSTree::~CC_CSSTree99,2323 - void print()print106,2436 - void print()CC_CSSTree::print106,2436 - -packages/cuda/clamp.rb,63 -class Clamp < FormulaClamp7,241 - def installinstall21,789 - -packages/cuda/creator2.c,45 -int main(int argc, char *argv[])main10,454 - -packages/cuda/cuda.c,1591 -#define MAXARG MAXARG12,207 -YAP_Atom AtomEq,AtomEq14,227 - AtomGt,AtomGt15,244 - AtomLt,AtomLt16,254 - AtomGe,AtomGe17,264 - AtomLe,AtomLe18,274 - AtomDf,AtomDf19,284 - AtomNt;AtomNt20,294 -predicate *facts[MAXARG]; /*Temporary solution to maintain facts and rules*/facts22,305 -predicate *rules[MAXARG];rules23,382 -int32_t cf = 0, cr = 0;cf24,408 -int32_t cf = 0, cr = 0;cr24,408 -char names[1024];names26,433 -static int32_t query[100];query49,1012 -static int32_t qcont = 0;qcont50,1039 -static int cuda_init_query(void)cuda_init_query51,1065 -dump_mat(int32_t mat[], int32_t nrows, int32_t ncols)dump_mat63,1266 -dump_vec(int32_t vec[], int32_t rows)dump_vec77,1523 -void Cuda_Initialize( void )Cuda_Initialize96,1812 -int32_t Cuda_NewFacts(predicate *pe)Cuda_NewFacts100,1846 -int32_t Cuda_NewRule(predicate *pe)Cuda_NewRule120,2102 -int32_t Cuda_Erase(predicate *pe)Cuda_Erase130,2262 -load_facts( void ) {load_facts148,2544 -static int currentFact = 0;currentFact193,3747 -static predicate *currentPred = NULL;currentPred194,3775 -cuda_init_facts( void ) {cuda_init_facts197,3825 -cuda_load_fact( void ) {cuda_load_fact234,4743 -load_rule( void ) {load_rule265,5373 -cuda_erase( void )cuda_erase390,8540 -void setQuery(YAP_Term t1, int32_t **res)setQuery396,8649 -cuda_eval( void )cuda_eval433,9336 -cuda_coverage( void )cuda_coverage497,10549 -static int cuda_count( void )cuda_count548,11810 -static int cuda_statistics( void )cuda_statistics565,12124 -static int first_time = TRUE;first_time571,12200 -init_cuda(void)init_cuda574,12236 - -packages/cuda/cuda.yap,1542 -tell_warning :-tell_warning11,183 -:- dynamic inline/2.dynamic14,245 -:- dynamic inline/2.dynamic14,245 -cuda_inline(P, Q) :-cuda_inline20,394 -cuda_inline(P, Q) :-cuda_inline20,394 -cuda_inline(P, Q) :-cuda_inline20,394 -cuda_extensional( Call, IdFacts) :-cuda_extensional23,438 -cuda_extensional( Call, IdFacts) :-cuda_extensional23,438 -cuda_extensional( Call, IdFacts) :-cuda_extensional23,438 -count_answers(G, N) :-count_answers32,687 -count_answers(G, N) :-count_answers32,687 -count_answers(G, N) :-count_answers32,687 -cuda_rule((Head :- Body) , IdRules) :-cuda_rule42,888 -cuda_rule((Head :- Body) , IdRules) :-cuda_rule42,888 -cuda_rule((Head :- Body) , IdRules) :-cuda_rule42,888 -body_to_list( (B1, B2), LF, L0, N0, NF) :- !,body_to_list48,1028 -body_to_list( (B1, B2), LF, L0, N0, NF) :- !,body_to_list48,1028 -body_to_list( (B1, B2), LF, L0, N0, NF) :- !,body_to_list48,1028 -body_to_list( true, L, L, N, N) :- !.body_to_list51,1148 -body_to_list( true, L, L, N, N) :- !.body_to_list51,1148 -body_to_list( true, L, L, N, N) :- !.body_to_list51,1148 -body_to_list( B, NL, L, N0, N) :-body_to_list52,1186 -body_to_list( B, NL, L, N0, N) :-body_to_list52,1186 -body_to_list( B, NL, L, N0, N) :-body_to_list52,1186 -body_to_list( B, [B|L], L, N0, N) :-body_to_list55,1275 -body_to_list( B, [B|L], L, N0, N) :-body_to_list55,1275 -body_to_list( B, [B|L], L, N0, N) :-body_to_list55,1275 -cuda_query(Call) :-cuda_query58,1325 -cuda_query(Call) :-cuda_query58,1325 -cuda_query(Call) :-cuda_query58,1325 - -packages/cuda/dbio.h,31 -#define _DBIO_H__DBIO_H_2,17 - -packages/cuda/hippy/hippy,0 - -packages/cuda/joincpu.cpp,1232 -void partInlj(Record *R, int rLen, CC_CSSTree *tree, Record *S, int startS, int endS, int of1, int of2, vector *res, int *p1, int *p2, int *perm, int *proj, int wj, int halfrul, int lenrul)partInlj7,134 -void partInlj2(Record *R, int rLen, CC_CSSTree *tree, Record *S, int startS, int endS, int of1, int of2, vector *res, int *p1, int *p2, int *perm, int *proj, int cols, int wj)partInlj260,1279 -void multipartInlj(Record *R, int rLen, CC_CSSTree *tree, Record *S, int startS, int endS, int of1, int of2, vector *res, int *p1, int *p2, int *perm, int *proj, int *wj, int numj, int halfrul, int lenrul)multipartInlj121,2486 -void multipartInlj2(Record *R, int rLen, CC_CSSTree *tree, Record *S, int startS, int endS, int of1, int of2, vector *res, int *p1, int *p2, int *perm, int *proj, int cols, int *wj, int numj)multipartInlj2182,3837 -void inlj_omp(Record *R, int rLen, CC_CSSTree *tree, Record *S, int sLen, int of1, int of2, vector *res, int *p1, int *p2, int *perm, int *proj, int2 projp, int cols, int* wj, int numj, int tipo)inlj_omp251,5250 -int joincpu(int *p1, int *p2, int rLen, int sLen, int of1, int of2, list::iterator rule, int pos, int bothops, int **ret)joincpu301,6467 - -packages/cuda/lista.h,2417 -#define _LISTA_H__LISTA_H_2,18 -typedef struct Node{Node4,37 - int name;name5,58 - int name;Node::name5,58 - int *dev_address;dev_address6,69 - int *dev_address;Node::dev_address6,69 - int rows;rows7,88 - int rows;Node::rows7,88 - int size;size8,99 - int size;Node::size8,99 - int iteration;iteration9,110 - int iteration;Node::iteration9,110 - int isrule;isrule10,126 - int isrule;Node::isrule10,126 -}memnode;memnode11,139 -typedef struct auxiliar{auxiliar13,150 - int name;name14,175 - int name;auxiliar::name14,175 - int num_rows;num_rows15,186 - int num_rows;auxiliar::num_rows15,186 - int num_columns;num_columns16,201 - int num_columns;auxiliar::num_columns16,201 - int *address_host_table;address_host_table17,219 - int *address_host_table;auxiliar::address_host_table17,219 - int *rule_names;rule_names18,245 - int *rule_names;auxiliar::rule_names18,245 - int *referencias;referencias19,263 - int *referencias;auxiliar::referencias19,263 - int **select;select20,282 - int **select;auxiliar::select20,282 - int *numsel;numsel21,297 - int *numsel;auxiliar::numsel21,297 - int **project;project22,311 - int **project;auxiliar::project22,311 - int2 *projpos;projpos23,327 - int2 *projpos;auxiliar::projpos23,327 - int **selfjoin;selfjoin24,343 - int **selfjoin;auxiliar::selfjoin24,343 - int *numselfj;numselfj25,360 - int *numselfj;auxiliar::numselfj25,360 - int **wherejoin;wherejoin26,376 - int **wherejoin;auxiliar::wherejoin26,376 - int *numjoin;numjoin27,394 - int *numjoin;auxiliar::numjoin27,394 - int totalpreds;totalpreds28,409 - int totalpreds;auxiliar::totalpreds28,409 - int **preds;preds29,426 - int **preds;auxiliar::preds29,426 - int2 *numpreds;numpreds30,440 - int2 *numpreds;auxiliar::numpreds30,440 - int *negatives;negatives31,457 - int *negatives;auxiliar::negatives31,457 - char *rulename;rulename32,474 - char *rulename;auxiliar::rulename32,474 - int gen_act;gen_act33,491 - int gen_act;auxiliar::gen_act33,491 - int gen_ant;gen_ant34,505 - int gen_ant;auxiliar::gen_ant34,505 -}rulenode;rulenode35,519 -typedef struct completed{completed37,531 - int name;name38,557 - int name;completed::name38,557 - int numrules;numrules39,568 - int numrules;completed::numrules39,568 - int reduce;reduce40,583 - int reduce;completed::reduce40,583 - int reset;reset41,596 - int reset;completed::reset41,596 -}compnode;compnode42,608 - -packages/cuda/memory.h,35 -#define _MEMORY_H__MEMORY_H_2,19 - -packages/cuda/old/bpreds.h,35 -#define _BPREDS_H__BPREDS_H_2,19 - -packages/cuda/old/CC_CSSTree.h,1795 -#define CSSTREE_HCSSTREE_H2,19 -#define divRoundUp(divRoundUp8,104 -#define CSS_TREE_FANOUT CSS_TREE_FANOUT9,176 -typedef int Record;Record12,260 -class CC_GenericTreeCC_GenericTree14,283 - int numRecord;numRecord17,317 - int numRecord;CC_GenericTree::numRecord17,317 - Record *data;data18,334 - Record *data;CC_GenericTree::data18,334 - int numNode;numNode20,399 - int numNode;CC_GenericTree::numNode20,399 - int level;level21,414 - int level;CC_GenericTree::level21,414 - int gResult;gResult22,427 - int gResult;CC_GenericTree::gResult22,427 - CC_GenericTree(){}CC_GenericTree23,442 - CC_GenericTree(){}CC_GenericTree::CC_GenericTree23,442 - CC_GenericTree(Record *d, int numR)CC_GenericTree26,606 - CC_GenericTree(Record *d, int numR)CC_GenericTree::CC_GenericTree26,606 - virtual ~CC_GenericTree()~CC_GenericTree31,683 - virtual ~CC_GenericTree()CC_GenericTree::~CC_GenericTree31,683 -class CC_CSSTree:public CC_GenericTreeCC_CSSTree38,760 - int *ntree;ntree41,812 - int *ntree;CC_CSSTree::ntree41,812 - int fanout;fanout42,826 - int fanout;CC_CSSTree::fanout42,826 - int blockSize;blockSize43,840 - int blockSize;CC_CSSTree::blockSize43,840 - int *vStart;vStart44,857 - int *vStart;CC_CSSTree::vStart44,857 - int *vG;//vG[0] is used in computing the position for level 1.vG45,872 - int *vG;//vG[0] is used in computing the position for level 1.CC_CSSTree::vG45,872 - int numKey;numKey46,937 - int numKey;CC_CSSTree::numKey46,937 - CC_CSSTree(Record *d, int numR, int f):CC_GenericTree(d,numR)CC_CSSTree47,951 - CC_CSSTree(Record *d, int numR, int f):CC_GenericTree(d,numR)CC_CSSTree::CC_CSSTree47,951 - ~CC_CSSTree()~CC_CSSTree99,2323 - ~CC_CSSTree()CC_CSSTree::~CC_CSSTree99,2323 - void print()print106,2436 - void print()CC_CSSTree::print106,2436 - -packages/cuda/old/creator2.c,45 -int main(int argc, char *argv[])main10,454 - -packages/cuda/old/cuda.c,1591 -#define MAXARG MAXARG12,207 -YAP_Atom AtomEq,AtomEq14,227 - AtomGt,AtomGt15,244 - AtomLt,AtomLt16,254 - AtomGe,AtomGe17,264 - AtomLe,AtomLe18,274 - AtomDf,AtomDf19,284 - AtomNt;AtomNt20,294 -predicate *facts[MAXARG]; /*Temporary solution to maintain facts and rules*/facts22,305 -predicate *rules[MAXARG];rules23,382 -int32_t cf = 0, cr = 0;cf24,408 -int32_t cf = 0, cr = 0;cr24,408 -char names[1024];names26,433 -static int32_t query[100];query49,1012 -static int32_t qcont = 0;qcont50,1039 -static int cuda_init_query(void)cuda_init_query51,1065 -dump_mat(int32_t mat[], int32_t nrows, int32_t ncols)dump_mat63,1266 -dump_vec(int32_t vec[], int32_t rows)dump_vec77,1523 -void Cuda_Initialize( void )Cuda_Initialize96,1812 -int32_t Cuda_NewFacts(predicate *pe)Cuda_NewFacts100,1846 -int32_t Cuda_NewRule(predicate *pe)Cuda_NewRule120,2102 -int32_t Cuda_Erase(predicate *pe)Cuda_Erase130,2262 -load_facts( void ) {load_facts148,2544 -static int currentFact = 0;currentFact193,3747 -static predicate *currentPred = NULL;currentPred194,3775 -cuda_init_facts( void ) {cuda_init_facts197,3825 -cuda_load_fact( void ) {cuda_load_fact234,4743 -load_rule( void ) {load_rule265,5373 -cuda_erase( void )cuda_erase390,8540 -void setQuery(YAP_Term t1, int32_t **res)setQuery396,8649 -cuda_eval( void )cuda_eval433,9336 -cuda_coverage( void )cuda_coverage497,10549 -static int cuda_count( void )cuda_count548,11810 -static int cuda_statistics( void )cuda_statistics565,12124 -static int first_time = TRUE;first_time571,12200 -init_cuda(void)init_cuda574,12236 - -packages/cuda/old/dbio.h,31 -#define _DBIO_H__DBIO_H_2,17 - -packages/cuda/old/lista.h,2417 -#define _LISTA_H__LISTA_H_2,18 -typedef struct Node{Node4,37 - int name;name5,58 - int name;Node::name5,58 - int *dev_address;dev_address6,69 - int *dev_address;Node::dev_address6,69 - int rows;rows7,88 - int rows;Node::rows7,88 - int size;size8,99 - int size;Node::size8,99 - int iteration;iteration9,110 - int iteration;Node::iteration9,110 - int isrule;isrule10,126 - int isrule;Node::isrule10,126 -}memnode;memnode11,139 -typedef struct auxiliar{auxiliar13,150 - int name;name14,175 - int name;auxiliar::name14,175 - int num_rows;num_rows15,186 - int num_rows;auxiliar::num_rows15,186 - int num_columns;num_columns16,201 - int num_columns;auxiliar::num_columns16,201 - int *address_host_table;address_host_table17,219 - int *address_host_table;auxiliar::address_host_table17,219 - int *rule_names;rule_names18,245 - int *rule_names;auxiliar::rule_names18,245 - int *referencias;referencias19,263 - int *referencias;auxiliar::referencias19,263 - int **select;select20,282 - int **select;auxiliar::select20,282 - int *numsel;numsel21,297 - int *numsel;auxiliar::numsel21,297 - int **project;project22,311 - int **project;auxiliar::project22,311 - int2 *projpos;projpos23,327 - int2 *projpos;auxiliar::projpos23,327 - int **selfjoin;selfjoin24,343 - int **selfjoin;auxiliar::selfjoin24,343 - int *numselfj;numselfj25,360 - int *numselfj;auxiliar::numselfj25,360 - int **wherejoin;wherejoin26,376 - int **wherejoin;auxiliar::wherejoin26,376 - int *numjoin;numjoin27,394 - int *numjoin;auxiliar::numjoin27,394 - int totalpreds;totalpreds28,409 - int totalpreds;auxiliar::totalpreds28,409 - int **preds;preds29,426 - int **preds;auxiliar::preds29,426 - int2 *numpreds;numpreds30,440 - int2 *numpreds;auxiliar::numpreds30,440 - int *negatives;negatives31,457 - int *negatives;auxiliar::negatives31,457 - char *rulename;rulename32,474 - char *rulename;auxiliar::rulename32,474 - int gen_act;gen_act33,491 - int gen_act;auxiliar::gen_act33,491 - int gen_ant;gen_ant34,505 - int gen_ant;auxiliar::gen_ant34,505 -}rulenode;rulenode35,519 -typedef struct completed{completed37,531 - int name;name38,557 - int name;completed::name38,557 - int numrules;numrules39,568 - int numrules;completed::numrules39,568 - int reduce;reduce40,583 - int reduce;completed::reduce40,583 - int reset;reset41,596 - int reset;completed::reset41,596 -}compnode;compnode42,608 - -packages/cuda/old/memory.h,35 -#define _MEMORY_H__MEMORY_H_2,19 - -packages/cuda/old/pred.h,3151 -#define _PRED_H__PRED_H_2,17 -typedef struct Nodo{Nodo6,59 - int name;name7,80 - int name;Nodo::name7,80 - int num_rows;num_rows8,98 - int num_rows;Nodo::num_rows8,98 - int num_columns;num_columns9,113 - int num_columns;Nodo::num_columns9,113 - int is_fact;is_fact10,131 - int is_fact;Nodo::is_fact10,131 - int *address_host_table;address_host_table11,145 - int *address_host_table;Nodo::address_host_table11,145 - int *negatives;negatives12,171 - int *negatives;Nodo::negatives12,171 - char *predname;predname13,188 - char *predname;Nodo::predname13,188 - double *weight;weight14,205 - double *weight;Nodo::weight14,205 -}gpunode;gpunode15,222 -typedef gpunode predicate;predicate17,233 -#define DATALOG DATALOG20,279 -#define NUM_T NUM_T21,297 -#define INISIZE INISIZE22,313 -typedef struct Stats{Stats25,348 - size_t joins, selects, unions, builtins;joins26,370 - size_t joins, selects, unions, builtins;Stats::joins26,370 - size_t joins, selects, unions, builtins;selects26,370 - size_t joins, selects, unions, builtins;Stats::selects26,370 - size_t joins, selects, unions, builtins;unions26,370 - size_t joins, selects, unions, builtins;Stats::unions26,370 - size_t joins, selects, unions, builtins;builtins26,370 - size_t joins, selects, unions, builtins;Stats::builtins26,370 - size_t calls;calls27,413 - size_t calls;Stats::calls27,413 - double total_time;total_time28,429 - double total_time;Stats::total_time28,429 - float max_time, min_time;max_time29,450 - float max_time, min_time;Stats::max_time29,450 - float max_time, min_time;min_time29,450 - float max_time, min_time;Stats::min_time29,450 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;select1_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::select1_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;select2_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::select2_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;join_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::join_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;sort_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::sort_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;union_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::union_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;pred_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::pred_time30,478 -}statinfo;statinfo31,559 -#define BPOFFSET BPOFFSET37,656 -#define SBG_EQ SBG_EQ38,678 -#define SBG_GT SBG_GT39,699 -#define SBG_LT SBG_LT40,720 -#define SBG_GE SBG_GE41,741 -#define SBG_LE SBG_LE42,762 -#define SBG_DF SBG_DF43,783 - -packages/cuda/old/union2.h,11192 -#define _UNION2_H__UNION2_H_2,19 -typedef struct n2n26,102 - int v[2];v8,122 - int v[2];n2::v8,122 -}s2;s29,133 -typedef struct n3n311,139 - int v[3];v13,159 - int v[3];n3::v13,159 -}s3;s314,170 -typedef struct n4n416,176 - int v[4];v18,196 - int v[4];n4::v18,196 -}s4;s419,207 -typedef struct n5n521,213 - int v[5];v23,233 - int v[5];n5::v23,233 -}s5;s524,244 -typedef struct n6n626,250 - int v[6];v28,270 - int v[6];n6::v28,270 -}s6;s629,281 -typedef struct n7n731,287 - int v[7];v33,307 - int v[7];n7::v33,307 -}s7;s734,318 -typedef struct n8n836,324 - int v[8];v38,344 - int v[8];n8::v38,344 -}s8;s839,355 -typedef struct n9n941,361 - int v[9];v43,381 - int v[9];n9::v43,381 -}s9;s944,392 -typedef struct n10n1046,398 - int v[10];v48,419 - int v[10];n10::v48,419 -}s10;s1049,431 -typedef struct n11n1151,438 - int v[11];v53,459 - int v[11];n11::v53,459 -}s11;s1154,471 -typedef struct n12n1256,478 - int v[12];v58,499 - int v[12];n12::v58,499 -}s12;s1259,511 -typedef struct n13n1361,518 - int v[13];v63,539 - int v[13];n13::v63,539 -}s13;s1364,551 -typedef struct n14n1466,558 - int v[14];v68,579 - int v[14];n14::v68,579 -}s14;s1469,591 -typedef struct n15n1571,598 - int v[15];v73,619 - int v[15];n15::v73,619 -}s15;s1574,631 -typedef struct n16n1676,638 - int v[16];v78,659 - int v[16];n16::v78,659 -}s16;s1679,671 -typedef struct n17n1781,678 - int v[17];v83,699 - int v[17];n17::v83,699 -}s17;s1784,711 -typedef struct n18n1886,718 - int v[18];v88,739 - int v[18];n18::v88,739 -}s18;s1889,751 -typedef struct n19n1991,758 - int v[19];v93,779 - int v[19];n19::v93,779 -}s19;s1994,791 -typedef struct n20n2096,798 - int v[20];v98,819 - int v[20];n20::v98,819 -}s20;s2099,831 -struct q1q1101,838 - bool operator()(const int &r1, const int &r2)operator ()104,871 - bool operator()(const int &r1, const int &r2)q1::operator ()104,871 -struct p2p2112,975 - bool operator()(const s2 &r1, const s2 &r2)operator ()115,1008 - bool operator()(const s2 &r1, const s2 &r2)p2::operator ()115,1008 -struct q2q2127,1164 - bool operator()(const s2 &r1, const s2 &r2)operator ()130,1197 - bool operator()(const s2 &r1, const s2 &r2)q2::operator ()130,1197 -struct o2o2142,1353 - bool operator()(const s2 &r1, const s2 &r2)operator ()145,1386 - bool operator()(const s2 &r1, const s2 &r2)o2::operator ()145,1386 -struct p3p3159,1584 - bool operator()(const s3 &r1, const s3 &r2)operator ()162,1617 - bool operator()(const s3 &r1, const s3 &r2)p3::operator ()162,1617 -struct q3q3174,1773 - bool operator()(const s3 &r1, const s3 &r2)operator ()177,1806 - bool operator()(const s3 &r1, const s3 &r2)q3::operator ()177,1806 -struct o3o3189,1962 - bool operator()(const s3 &r1, const s3 &r2)operator ()192,1995 - bool operator()(const s3 &r1, const s3 &r2)o3::operator ()192,1995 -struct p4p4206,2193 - bool operator()(const s4 &r1, const s4 &r2)operator ()209,2226 - bool operator()(const s4 &r1, const s4 &r2)p4::operator ()209,2226 -struct q4q4221,2382 - bool operator()(const s4 &r1, const s4 &r2)operator ()224,2415 - bool operator()(const s4 &r1, const s4 &r2)q4::operator ()224,2415 -struct o4o4236,2571 - bool operator()(const s4 &r1, const s4 &r2)operator ()239,2604 - bool operator()(const s4 &r1, const s4 &r2)o4::operator ()239,2604 -struct p5p5253,2802 - bool operator()(const s5 &r1, const s5 &r2)operator ()256,2835 - bool operator()(const s5 &r1, const s5 &r2)p5::operator ()256,2835 -struct q5q5268,2991 - bool operator()(const s5 &r1, const s5 &r2)operator ()271,3024 - bool operator()(const s5 &r1, const s5 &r2)q5::operator ()271,3024 -struct o5o5283,3180 - bool operator()(const s5 &r1, const s5 &r2)operator ()286,3213 - bool operator()(const s5 &r1, const s5 &r2)o5::operator ()286,3213 -struct p6p6300,3411 - bool operator()(const s6 &r1, const s6 &r2)operator ()303,3444 - bool operator()(const s6 &r1, const s6 &r2)p6::operator ()303,3444 -struct q6q6315,3600 - bool operator()(const s6 &r1, const s6 &r2)operator ()318,3633 - bool operator()(const s6 &r1, const s6 &r2)q6::operator ()318,3633 -struct o6o6330,3789 - bool operator()(const s6 &r1, const s6 &r2)operator ()333,3822 - bool operator()(const s6 &r1, const s6 &r2)o6::operator ()333,3822 -struct p7p7347,4020 - bool operator()(const s7 &r1, const s7 &r2)operator ()350,4053 - bool operator()(const s7 &r1, const s7 &r2)p7::operator ()350,4053 -struct q7q7362,4209 - bool operator()(const s7 &r1, const s7 &r2)operator ()365,4242 - bool operator()(const s7 &r1, const s7 &r2)q7::operator ()365,4242 -struct o7o7377,4398 - bool operator()(const s7 &r1, const s7 &r2)operator ()380,4431 - bool operator()(const s7 &r1, const s7 &r2)o7::operator ()380,4431 -struct p8p8394,4629 - bool operator()(const s8 &r1, const s8 &r2)operator ()397,4662 - bool operator()(const s8 &r1, const s8 &r2)p8::operator ()397,4662 -struct q8q8409,4818 - bool operator()(const s8 &r1, const s8 &r2)operator ()412,4851 - bool operator()(const s8 &r1, const s8 &r2)q8::operator ()412,4851 -struct o8o8424,5007 - bool operator()(const s8 &r1, const s8 &r2)operator ()427,5040 - bool operator()(const s8 &r1, const s8 &r2)o8::operator ()427,5040 -struct p9p9441,5238 - bool operator()(const s9 &r1, const s9 &r2)operator ()444,5271 - bool operator()(const s9 &r1, const s9 &r2)p9::operator ()444,5271 -struct q9q9456,5427 - bool operator()(const s9 &r1, const s9 &r2)operator ()459,5460 - bool operator()(const s9 &r1, const s9 &r2)q9::operator ()459,5460 -struct o9o9471,5616 - bool operator()(const s9 &r1, const s9 &r2)operator ()474,5649 - bool operator()(const s9 &r1, const s9 &r2)o9::operator ()474,5649 -struct p10p10488,5847 - bool operator()(const s10 &r1, const s10 &r2)operator ()491,5881 - bool operator()(const s10 &r1, const s10 &r2)p10::operator ()491,5881 -struct q10q10503,6040 - bool operator()(const s10 &r1, const s10 &r2)operator ()506,6074 - bool operator()(const s10 &r1, const s10 &r2)q10::operator ()506,6074 -struct o10o10518,6233 - bool operator()(const s10 &r1, const s10 &r2)operator ()521,6267 - bool operator()(const s10 &r1, const s10 &r2)o10::operator ()521,6267 -struct p11p11535,6468 - bool operator()(const s11 &r1, const s11 &r2)operator ()538,6502 - bool operator()(const s11 &r1, const s11 &r2)p11::operator ()538,6502 -struct q11q11550,6661 - bool operator()(const s11 &r1, const s11 &r2)operator ()553,6695 - bool operator()(const s11 &r1, const s11 &r2)q11::operator ()553,6695 -struct o11o11565,6854 - bool operator()(const s11 &r1, const s11 &r2)operator ()568,6888 - bool operator()(const s11 &r1, const s11 &r2)o11::operator ()568,6888 -struct p12p12582,7089 - bool operator()(const s12 &r1, const s12 &r2)operator ()585,7123 - bool operator()(const s12 &r1, const s12 &r2)p12::operator ()585,7123 -struct q12q12597,7282 - bool operator()(const s12 &r1, const s12 &r2)operator ()600,7316 - bool operator()(const s12 &r1, const s12 &r2)q12::operator ()600,7316 -struct o12o12612,7475 - bool operator()(const s12 &r1, const s12 &r2)operator ()615,7509 - bool operator()(const s12 &r1, const s12 &r2)o12::operator ()615,7509 -struct p13p13629,7710 - bool operator()(const s13 &r1, const s13 &r2)operator ()632,7744 - bool operator()(const s13 &r1, const s13 &r2)p13::operator ()632,7744 -struct q13q13644,7903 - bool operator()(const s13 &r1, const s13 &r2)operator ()647,7937 - bool operator()(const s13 &r1, const s13 &r2)q13::operator ()647,7937 -struct o13o13659,8096 - bool operator()(const s13 &r1, const s13 &r2)operator ()662,8130 - bool operator()(const s13 &r1, const s13 &r2)o13::operator ()662,8130 -struct p14p14676,8331 - bool operator()(const s14 &r1, const s14 &r2)operator ()679,8365 - bool operator()(const s14 &r1, const s14 &r2)p14::operator ()679,8365 -struct q14q14691,8524 - bool operator()(const s14 &r1, const s14 &r2)operator ()694,8558 - bool operator()(const s14 &r1, const s14 &r2)q14::operator ()694,8558 -struct o14o14706,8717 - bool operator()(const s14 &r1, const s14 &r2)operator ()709,8751 - bool operator()(const s14 &r1, const s14 &r2)o14::operator ()709,8751 -struct p15p15723,8952 - bool operator()(const s15 &r1, const s15 &r2)operator ()726,8986 - bool operator()(const s15 &r1, const s15 &r2)p15::operator ()726,8986 -struct q15q15738,9145 - bool operator()(const s15 &r1, const s15 &r2)operator ()741,9179 - bool operator()(const s15 &r1, const s15 &r2)q15::operator ()741,9179 -struct o15o15753,9338 - bool operator()(const s15 &r1, const s15 &r2)operator ()756,9372 - bool operator()(const s15 &r1, const s15 &r2)o15::operator ()756,9372 -struct p16p16770,9573 - bool operator()(const s16 &r1, const s16 &r2)operator ()773,9607 - bool operator()(const s16 &r1, const s16 &r2)p16::operator ()773,9607 -struct q16q16785,9766 - bool operator()(const s16 &r1, const s16 &r2)operator ()788,9800 - bool operator()(const s16 &r1, const s16 &r2)q16::operator ()788,9800 -struct o16o16800,9959 - bool operator()(const s16 &r1, const s16 &r2)operator ()803,9993 - bool operator()(const s16 &r1, const s16 &r2)o16::operator ()803,9993 -struct p17p17817,10194 - bool operator()(const s17 &r1, const s17 &r2)operator ()820,10228 - bool operator()(const s17 &r1, const s17 &r2)p17::operator ()820,10228 -struct q17q17832,10387 - bool operator()(const s17 &r1, const s17 &r2)operator ()835,10421 - bool operator()(const s17 &r1, const s17 &r2)q17::operator ()835,10421 -struct o17o17847,10580 - bool operator()(const s17 &r1, const s17 &r2)operator ()850,10614 - bool operator()(const s17 &r1, const s17 &r2)o17::operator ()850,10614 -struct p18p18864,10815 - bool operator()(const s18 &r1, const s18 &r2)operator ()867,10849 - bool operator()(const s18 &r1, const s18 &r2)p18::operator ()867,10849 -struct q18q18879,11008 - bool operator()(const s18 &r1, const s18 &r2)operator ()882,11042 - bool operator()(const s18 &r1, const s18 &r2)q18::operator ()882,11042 -struct o18o18894,11201 - bool operator()(const s18 &r1, const s18 &r2)operator ()897,11235 - bool operator()(const s18 &r1, const s18 &r2)o18::operator ()897,11235 -struct p19p19911,11436 - bool operator()(const s19 &r1, const s19 &r2)operator ()914,11470 - bool operator()(const s19 &r1, const s19 &r2)p19::operator ()914,11470 -struct q19q19926,11629 - bool operator()(const s19 &r1, const s19 &r2)operator ()929,11663 - bool operator()(const s19 &r1, const s19 &r2)q19::operator ()929,11663 -struct o19o19941,11822 - bool operator()(const s19 &r1, const s19 &r2)operator ()944,11856 - bool operator()(const s19 &r1, const s19 &r2)o19::operator ()944,11856 -struct p20p20958,12057 - bool operator()(const s20 &r1, const s20 &r2)operator ()961,12091 - bool operator()(const s20 &r1, const s20 &r2)p20::operator ()961,12091 -struct q20q20973,12250 - bool operator()(const s20 &r1, const s20 &r2)operator ()976,12284 - bool operator()(const s20 &r1, const s20 &r2)q20::operator ()976,12284 -struct o20o20988,12443 - bool operator()(const s20 &r1, const s20 &r2)operator ()991,12477 - bool operator()(const s20 &r1, const s20 &r2)o20::operator ()991,12477 - -packages/cuda/pred.h,3151 -#define _PRED_H__PRED_H_2,17 -typedef struct Nodo{Nodo6,59 - int name;name7,80 - int name;Nodo::name7,80 - int num_rows;num_rows8,98 - int num_rows;Nodo::num_rows8,98 - int num_columns;num_columns9,113 - int num_columns;Nodo::num_columns9,113 - int is_fact;is_fact10,131 - int is_fact;Nodo::is_fact10,131 - int *address_host_table;address_host_table11,145 - int *address_host_table;Nodo::address_host_table11,145 - int *negatives;negatives12,171 - int *negatives;Nodo::negatives12,171 - char *predname;predname13,188 - char *predname;Nodo::predname13,188 - double *weight;weight14,205 - double *weight;Nodo::weight14,205 -}gpunode;gpunode15,222 -typedef gpunode predicate;predicate17,233 -#define DATALOG DATALOG20,279 -#define NUM_T NUM_T21,297 -#define INISIZE INISIZE22,313 -typedef struct Stats{Stats25,348 - size_t joins, selects, unions, builtins;joins26,370 - size_t joins, selects, unions, builtins;Stats::joins26,370 - size_t joins, selects, unions, builtins;selects26,370 - size_t joins, selects, unions, builtins;Stats::selects26,370 - size_t joins, selects, unions, builtins;unions26,370 - size_t joins, selects, unions, builtins;Stats::unions26,370 - size_t joins, selects, unions, builtins;builtins26,370 - size_t joins, selects, unions, builtins;Stats::builtins26,370 - size_t calls;calls27,413 - size_t calls;Stats::calls27,413 - double total_time;total_time28,429 - double total_time;Stats::total_time28,429 - float max_time, min_time;max_time29,450 - float max_time, min_time;Stats::max_time29,450 - float max_time, min_time;min_time29,450 - float max_time, min_time;Stats::min_time29,450 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;select1_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::select1_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;select2_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::select2_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;join_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::join_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;sort_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::sort_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;union_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::union_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;pred_time30,478 - float select1_time, select2_time, join_time, sort_time, union_time, pred_time;Stats::pred_time30,478 -}statinfo;statinfo31,559 -#define BPOFFSET BPOFFSET37,656 -#define SBG_EQ SBG_EQ38,678 -#define SBG_GT SBG_GT39,699 -#define SBG_LT SBG_LT40,720 -#define SBG_GE SBG_GE41,741 -#define SBG_LE SBG_LE42,762 -#define SBG_DF SBG_DF43,783 - -packages/cuda/selectproyectcpu.cpp,508 -int selectproyectcpu(int *dop1, int rows, int cols, int head_size, int *select, int numselect, int *selfjoin, int numselfj, int *project, int **ret)selectproyectcpu9,116 -int selectproyectcpu2(int *dop1, int rows, int cols, int *select, int numselect, int *selfjoin, int numselfj, int wj, int **ret, int **list)selectproyectcpu2127,2467 -int selectproyectcpu3(int *dop1, int rows, int cols, int *select, int numselect, int *selfjoin, int numselfj, int wj, int **ret, int **list)selectproyectcpu3265,5123 - -packages/cuda/test.yap,754 -main :-main7,89 -main2 :-main215,293 -db(1,a).db24,500 -db(1,a).db24,500 -db(2,a).db25,509 -db(2,a).db25,509 -db(5,b).db26,518 -db(5,b).db26,518 -db(4,q).db27,527 -db(4,q).db27,527 -db(6,w).db28,536 -db(6,w).db28,536 -db(10,s).db29,545 -db(10,s).db29,545 -db(11,a).db31,558 -db(11,a).db31,558 -db(12,a).db32,568 -db(12,a).db32,568 -db(15,b).db33,578 -db(15,b).db33,578 -db(14,q).db34,588 -db(14,q).db34,588 -db(16,w).db35,598 -db(16,w).db35,598 -db(110,s).db36,608 -db(110,s).db36,608 -db(21,a).db37,619 -db(21,a).db37,619 -db(22,a).db38,629 -db(22,a).db38,629 -db(25,b).db39,639 -db(25,b).db39,639 -db(24,q).db40,649 -db(24,q).db40,649 -db(26,w).db41,659 -db(26,w).db41,659 -db(210,s).db42,669 -db(210,s).db42,669 - -packages/cuda/union2.h,11192 -#define _UNION2_H__UNION2_H_2,19 -typedef struct n2n26,102 - int v[2];v8,122 - int v[2];n2::v8,122 -}s2;s29,133 -typedef struct n3n311,139 - int v[3];v13,159 - int v[3];n3::v13,159 -}s3;s314,170 -typedef struct n4n416,176 - int v[4];v18,196 - int v[4];n4::v18,196 -}s4;s419,207 -typedef struct n5n521,213 - int v[5];v23,233 - int v[5];n5::v23,233 -}s5;s524,244 -typedef struct n6n626,250 - int v[6];v28,270 - int v[6];n6::v28,270 -}s6;s629,281 -typedef struct n7n731,287 - int v[7];v33,307 - int v[7];n7::v33,307 -}s7;s734,318 -typedef struct n8n836,324 - int v[8];v38,344 - int v[8];n8::v38,344 -}s8;s839,355 -typedef struct n9n941,361 - int v[9];v43,381 - int v[9];n9::v43,381 -}s9;s944,392 -typedef struct n10n1046,398 - int v[10];v48,419 - int v[10];n10::v48,419 -}s10;s1049,431 -typedef struct n11n1151,438 - int v[11];v53,459 - int v[11];n11::v53,459 -}s11;s1154,471 -typedef struct n12n1256,478 - int v[12];v58,499 - int v[12];n12::v58,499 -}s12;s1259,511 -typedef struct n13n1361,518 - int v[13];v63,539 - int v[13];n13::v63,539 -}s13;s1364,551 -typedef struct n14n1466,558 - int v[14];v68,579 - int v[14];n14::v68,579 -}s14;s1469,591 -typedef struct n15n1571,598 - int v[15];v73,619 - int v[15];n15::v73,619 -}s15;s1574,631 -typedef struct n16n1676,638 - int v[16];v78,659 - int v[16];n16::v78,659 -}s16;s1679,671 -typedef struct n17n1781,678 - int v[17];v83,699 - int v[17];n17::v83,699 -}s17;s1784,711 -typedef struct n18n1886,718 - int v[18];v88,739 - int v[18];n18::v88,739 -}s18;s1889,751 -typedef struct n19n1991,758 - int v[19];v93,779 - int v[19];n19::v93,779 -}s19;s1994,791 -typedef struct n20n2096,798 - int v[20];v98,819 - int v[20];n20::v98,819 -}s20;s2099,831 -struct q1q1101,838 - bool operator()(const int &r1, const int &r2)operator ()104,871 - bool operator()(const int &r1, const int &r2)q1::operator ()104,871 -struct p2p2112,975 - bool operator()(const s2 &r1, const s2 &r2)operator ()115,1008 - bool operator()(const s2 &r1, const s2 &r2)p2::operator ()115,1008 -struct q2q2127,1164 - bool operator()(const s2 &r1, const s2 &r2)operator ()130,1197 - bool operator()(const s2 &r1, const s2 &r2)q2::operator ()130,1197 -struct o2o2142,1353 - bool operator()(const s2 &r1, const s2 &r2)operator ()145,1386 - bool operator()(const s2 &r1, const s2 &r2)o2::operator ()145,1386 -struct p3p3159,1584 - bool operator()(const s3 &r1, const s3 &r2)operator ()162,1617 - bool operator()(const s3 &r1, const s3 &r2)p3::operator ()162,1617 -struct q3q3174,1773 - bool operator()(const s3 &r1, const s3 &r2)operator ()177,1806 - bool operator()(const s3 &r1, const s3 &r2)q3::operator ()177,1806 -struct o3o3189,1962 - bool operator()(const s3 &r1, const s3 &r2)operator ()192,1995 - bool operator()(const s3 &r1, const s3 &r2)o3::operator ()192,1995 -struct p4p4206,2193 - bool operator()(const s4 &r1, const s4 &r2)operator ()209,2226 - bool operator()(const s4 &r1, const s4 &r2)p4::operator ()209,2226 -struct q4q4221,2382 - bool operator()(const s4 &r1, const s4 &r2)operator ()224,2415 - bool operator()(const s4 &r1, const s4 &r2)q4::operator ()224,2415 -struct o4o4236,2571 - bool operator()(const s4 &r1, const s4 &r2)operator ()239,2604 - bool operator()(const s4 &r1, const s4 &r2)o4::operator ()239,2604 -struct p5p5253,2802 - bool operator()(const s5 &r1, const s5 &r2)operator ()256,2835 - bool operator()(const s5 &r1, const s5 &r2)p5::operator ()256,2835 -struct q5q5268,2991 - bool operator()(const s5 &r1, const s5 &r2)operator ()271,3024 - bool operator()(const s5 &r1, const s5 &r2)q5::operator ()271,3024 -struct o5o5283,3180 - bool operator()(const s5 &r1, const s5 &r2)operator ()286,3213 - bool operator()(const s5 &r1, const s5 &r2)o5::operator ()286,3213 -struct p6p6300,3411 - bool operator()(const s6 &r1, const s6 &r2)operator ()303,3444 - bool operator()(const s6 &r1, const s6 &r2)p6::operator ()303,3444 -struct q6q6315,3600 - bool operator()(const s6 &r1, const s6 &r2)operator ()318,3633 - bool operator()(const s6 &r1, const s6 &r2)q6::operator ()318,3633 -struct o6o6330,3789 - bool operator()(const s6 &r1, const s6 &r2)operator ()333,3822 - bool operator()(const s6 &r1, const s6 &r2)o6::operator ()333,3822 -struct p7p7347,4020 - bool operator()(const s7 &r1, const s7 &r2)operator ()350,4053 - bool operator()(const s7 &r1, const s7 &r2)p7::operator ()350,4053 -struct q7q7362,4209 - bool operator()(const s7 &r1, const s7 &r2)operator ()365,4242 - bool operator()(const s7 &r1, const s7 &r2)q7::operator ()365,4242 -struct o7o7377,4398 - bool operator()(const s7 &r1, const s7 &r2)operator ()380,4431 - bool operator()(const s7 &r1, const s7 &r2)o7::operator ()380,4431 -struct p8p8394,4629 - bool operator()(const s8 &r1, const s8 &r2)operator ()397,4662 - bool operator()(const s8 &r1, const s8 &r2)p8::operator ()397,4662 -struct q8q8409,4818 - bool operator()(const s8 &r1, const s8 &r2)operator ()412,4851 - bool operator()(const s8 &r1, const s8 &r2)q8::operator ()412,4851 -struct o8o8424,5007 - bool operator()(const s8 &r1, const s8 &r2)operator ()427,5040 - bool operator()(const s8 &r1, const s8 &r2)o8::operator ()427,5040 -struct p9p9441,5238 - bool operator()(const s9 &r1, const s9 &r2)operator ()444,5271 - bool operator()(const s9 &r1, const s9 &r2)p9::operator ()444,5271 -struct q9q9456,5427 - bool operator()(const s9 &r1, const s9 &r2)operator ()459,5460 - bool operator()(const s9 &r1, const s9 &r2)q9::operator ()459,5460 -struct o9o9471,5616 - bool operator()(const s9 &r1, const s9 &r2)operator ()474,5649 - bool operator()(const s9 &r1, const s9 &r2)o9::operator ()474,5649 -struct p10p10488,5847 - bool operator()(const s10 &r1, const s10 &r2)operator ()491,5881 - bool operator()(const s10 &r1, const s10 &r2)p10::operator ()491,5881 -struct q10q10503,6040 - bool operator()(const s10 &r1, const s10 &r2)operator ()506,6074 - bool operator()(const s10 &r1, const s10 &r2)q10::operator ()506,6074 -struct o10o10518,6233 - bool operator()(const s10 &r1, const s10 &r2)operator ()521,6267 - bool operator()(const s10 &r1, const s10 &r2)o10::operator ()521,6267 -struct p11p11535,6468 - bool operator()(const s11 &r1, const s11 &r2)operator ()538,6502 - bool operator()(const s11 &r1, const s11 &r2)p11::operator ()538,6502 -struct q11q11550,6661 - bool operator()(const s11 &r1, const s11 &r2)operator ()553,6695 - bool operator()(const s11 &r1, const s11 &r2)q11::operator ()553,6695 -struct o11o11565,6854 - bool operator()(const s11 &r1, const s11 &r2)operator ()568,6888 - bool operator()(const s11 &r1, const s11 &r2)o11::operator ()568,6888 -struct p12p12582,7089 - bool operator()(const s12 &r1, const s12 &r2)operator ()585,7123 - bool operator()(const s12 &r1, const s12 &r2)p12::operator ()585,7123 -struct q12q12597,7282 - bool operator()(const s12 &r1, const s12 &r2)operator ()600,7316 - bool operator()(const s12 &r1, const s12 &r2)q12::operator ()600,7316 -struct o12o12612,7475 - bool operator()(const s12 &r1, const s12 &r2)operator ()615,7509 - bool operator()(const s12 &r1, const s12 &r2)o12::operator ()615,7509 -struct p13p13629,7710 - bool operator()(const s13 &r1, const s13 &r2)operator ()632,7744 - bool operator()(const s13 &r1, const s13 &r2)p13::operator ()632,7744 -struct q13q13644,7903 - bool operator()(const s13 &r1, const s13 &r2)operator ()647,7937 - bool operator()(const s13 &r1, const s13 &r2)q13::operator ()647,7937 -struct o13o13659,8096 - bool operator()(const s13 &r1, const s13 &r2)operator ()662,8130 - bool operator()(const s13 &r1, const s13 &r2)o13::operator ()662,8130 -struct p14p14676,8331 - bool operator()(const s14 &r1, const s14 &r2)operator ()679,8365 - bool operator()(const s14 &r1, const s14 &r2)p14::operator ()679,8365 -struct q14q14691,8524 - bool operator()(const s14 &r1, const s14 &r2)operator ()694,8558 - bool operator()(const s14 &r1, const s14 &r2)q14::operator ()694,8558 -struct o14o14706,8717 - bool operator()(const s14 &r1, const s14 &r2)operator ()709,8751 - bool operator()(const s14 &r1, const s14 &r2)o14::operator ()709,8751 -struct p15p15723,8952 - bool operator()(const s15 &r1, const s15 &r2)operator ()726,8986 - bool operator()(const s15 &r1, const s15 &r2)p15::operator ()726,8986 -struct q15q15738,9145 - bool operator()(const s15 &r1, const s15 &r2)operator ()741,9179 - bool operator()(const s15 &r1, const s15 &r2)q15::operator ()741,9179 -struct o15o15753,9338 - bool operator()(const s15 &r1, const s15 &r2)operator ()756,9372 - bool operator()(const s15 &r1, const s15 &r2)o15::operator ()756,9372 -struct p16p16770,9573 - bool operator()(const s16 &r1, const s16 &r2)operator ()773,9607 - bool operator()(const s16 &r1, const s16 &r2)p16::operator ()773,9607 -struct q16q16785,9766 - bool operator()(const s16 &r1, const s16 &r2)operator ()788,9800 - bool operator()(const s16 &r1, const s16 &r2)q16::operator ()788,9800 -struct o16o16800,9959 - bool operator()(const s16 &r1, const s16 &r2)operator ()803,9993 - bool operator()(const s16 &r1, const s16 &r2)o16::operator ()803,9993 -struct p17p17817,10194 - bool operator()(const s17 &r1, const s17 &r2)operator ()820,10228 - bool operator()(const s17 &r1, const s17 &r2)p17::operator ()820,10228 -struct q17q17832,10387 - bool operator()(const s17 &r1, const s17 &r2)operator ()835,10421 - bool operator()(const s17 &r1, const s17 &r2)q17::operator ()835,10421 -struct o17o17847,10580 - bool operator()(const s17 &r1, const s17 &r2)operator ()850,10614 - bool operator()(const s17 &r1, const s17 &r2)o17::operator ()850,10614 -struct p18p18864,10815 - bool operator()(const s18 &r1, const s18 &r2)operator ()867,10849 - bool operator()(const s18 &r1, const s18 &r2)p18::operator ()867,10849 -struct q18q18879,11008 - bool operator()(const s18 &r1, const s18 &r2)operator ()882,11042 - bool operator()(const s18 &r1, const s18 &r2)q18::operator ()882,11042 -struct o18o18894,11201 - bool operator()(const s18 &r1, const s18 &r2)operator ()897,11235 - bool operator()(const s18 &r1, const s18 &r2)o18::operator ()897,11235 -struct p19p19911,11436 - bool operator()(const s19 &r1, const s19 &r2)operator ()914,11470 - bool operator()(const s19 &r1, const s19 &r2)p19::operator ()914,11470 -struct q19q19926,11629 - bool operator()(const s19 &r1, const s19 &r2)operator ()929,11663 - bool operator()(const s19 &r1, const s19 &r2)q19::operator ()929,11663 -struct o19o19941,11822 - bool operator()(const s19 &r1, const s19 &r2)operator ()944,11856 - bool operator()(const s19 &r1, const s19 &r2)o19::operator ()944,11856 -struct p20p20958,12057 - bool operator()(const s20 &r1, const s20 &r2)operator ()961,12091 - bool operator()(const s20 &r1, const s20 &r2)p20::operator ()961,12091 -struct q20q20973,12250 - bool operator()(const s20 &r1, const s20 &r2)operator ()976,12284 - bool operator()(const s20 &r1, const s20 &r2)q20::operator ()976,12284 -struct o20o20988,12443 - bool operator()(const s20 &r1, const s20 &r2)operator ()991,12477 - bool operator()(const s20 &r1, const s20 &r2)o20::operator ()991,12477 - -packages/cuda/unioncpu2.cpp,67 -int unircpu(int *res, int rows, int tipo, int **ret)unircpu7,145 - -packages/CXX/Makefile,0 - -packages/examples/photo.yap,297 -photo(Ex, Solution,Amount) :-photo23,1023 -photo(Ex, Solution,Amount) :-photo23,1023 -photo(Ex, Solution,Amount) :-photo23,1023 -preferences(Space, Len, X-Y, B) :-preferences43,1633 -preferences(Space, Len, X-Y, B) :-preferences43,1633 -preferences(Space, Len, X-Y, B) :-preferences43,1633 - -packages/examples/queens.yap,844 -queens(N, Solution) :-queens23,975 -queens(N, Solution) :-queens23,975 -queens(N, Solution) :-queens23,975 -inc(_, I0, I0, I) :-inc36,1349 -inc(_, I0, I0, I) :-inc36,1349 -inc(_, I0, I0, I) :-inc36,1349 -dec(_, I0, I0, I) :-dec39,1383 -dec(_, I0, I0, I) :-dec39,1383 -dec(_, I0, I0, I) :-dec39,1383 -lqueens(N, Solution) :-lqueens45,1470 -lqueens(N, Solution) :-lqueens45,1470 -lqueens(N, Solution) :-lqueens45,1470 -lconstrain([], _, _).lconstrain55,1749 -lconstrain([], _, _).lconstrain55,1749 -lconstrain( [Q|Queens], Space, I0) :-lconstrain56,1771 -lconstrain( [Q|Queens], Space, I0) :-lconstrain56,1771 -lconstrain( [Q|Queens], Space, I0) :-lconstrain56,1771 -constrain(Q, I, Space, R, J, J1) :-constrain61,1901 -constrain(Q, I, Space, R, J, J1) :-constrain61,1901 -constrain(Q, I, Space, R, J, J1) :-constrain61,1901 - -packages/examples/send_more_money.yap,156 -send_more_money(Solution) :-send_more_money25,964 -send_more_money(Solution) :-send_more_money25,964 -send_more_money(Solution) :-send_more_money25,964 - -packages/examples/send_most_money.yap,177 -send_most_money(Solution,Amount) :-send_most_money25,964 -send_most_money(Solution,Amount) :-send_most_money25,964 -send_most_money(Solution,Amount) :-send_most_money25,964 - -packages/gecode/3.6.0/gecode_yap_auto_generated.yap,49160 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_176,6481 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_176,6481 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_177,6516 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_177,6516 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_178,6551 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_178,6551 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_179,6588 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_179,6588 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_180,6625 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_180,6625 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_181,6664 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_181,6664 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType183,6704 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType183,6704 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType183,6704 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType183,6704 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType183,6704 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType184,6758 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType184,6758 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType184,6758 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType184,6758 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType184,6758 -is_SetOpType_('SOT_UNION').is_SetOpType_186,6799 -is_SetOpType_('SOT_UNION').is_SetOpType_186,6799 -is_SetOpType_('SOT_DUNION').is_SetOpType_187,6827 -is_SetOpType_('SOT_DUNION').is_SetOpType_187,6827 -is_SetOpType_('SOT_INTER').is_SetOpType_188,6856 -is_SetOpType_('SOT_INTER').is_SetOpType_188,6856 -is_SetOpType_('SOT_MINUS').is_SetOpType_189,6884 -is_SetOpType_('SOT_MINUS').is_SetOpType_189,6884 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_191,6913 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_191,6913 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_192,6953 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_192,6953 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_193,6995 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_193,6995 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_194,7035 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_194,7035 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType196,7076 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType196,7076 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType196,7076 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType196,7076 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType196,7076 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType197,7128 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType197,7128 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType197,7128 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType197,7128 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType197,7128 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_199,7167 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_199,7167 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_200,7201 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_200,7201 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_201,7234 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_201,7234 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_202,7274 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_202,7274 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_203,7314 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_203,7314 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_204,7351 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_204,7351 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_205,7388 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_205,7388 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_206,7425 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_206,7425 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_207,7462 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_207,7462 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_208,7499 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_208,7499 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_209,7536 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_209,7536 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_210,7574 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_210,7574 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_211,7612 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_211,7612 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_212,7657 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_212,7657 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_213,7702 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_213,7702 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_214,7744 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_214,7744 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_216,7787 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_216,7787 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_217,7836 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_217,7836 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_218,7883 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_218,7883 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_219,7944 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_219,7944 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_220,8005 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_220,8005 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_221,8060 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_221,8060 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_222,8115 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_222,8115 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_223,8170 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_223,8170 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_224,8225 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_224,8225 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_225,8280 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_225,8280 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_226,8335 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_226,8335 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_227,8392 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_227,8392 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_228,8449 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_228,8449 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_229,8520 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_229,8520 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_230,8591 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_230,8591 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_231,8656 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_231,8656 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch233,8722 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch233,8722 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch233,8722 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch233,8722 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch233,8722 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch234,8780 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch234,8780 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch234,8780 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch234,8780 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch234,8780 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_236,8825 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_236,8825 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_237,8862 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_237,8862 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_238,8899 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_238,8899 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_239,8936 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_239,8936 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_240,8973 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_240,8973 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_241,9010 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_241,9010 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_242,9047 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_242,9047 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_243,9084 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_243,9084 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_245,9122 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_245,9122 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_246,9177 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_246,9177 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_247,9232 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_247,9232 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_248,9287 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_248,9287 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_249,9342 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_249,9342 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_250,9397 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_250,9397 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_251,9452 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_251,9452 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_252,9507 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_252,9507 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch254,9563 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch254,9563 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch254,9563 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch254,9563 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch254,9563 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch255,9621 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch255,9621 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch255,9621 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch255,9621 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch255,9621 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_257,9666 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_257,9666 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_258,9703 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_258,9703 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_259,9740 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_259,9740 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_260,9777 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_260,9777 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_261,9814 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_261,9814 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_262,9851 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_262,9851 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_263,9888 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_263,9888 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_264,9925 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_264,9925 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_266,9963 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_266,9963 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_267,10021 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_267,10021 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_268,10079 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_268,10079 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_269,10137 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_269,10137 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_270,10195 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_270,10195 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_271,10253 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_271,10253 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_272,10311 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_272,10311 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_273,10369 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_273,10369 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign275,10428 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign275,10428 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign275,10428 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign275,10428 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign275,10428 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign276,10480 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign276,10480 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign276,10480 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign276,10480 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign276,10480 -unary(X0,X1,X2,X3,X4,X5) :-unary278,10519 -unary(X0,X1,X2,X3,X4,X5) :-unary278,10519 -unary(X0,X1,X2,X3,X4,X5) :-unary278,10519 -sqr(X0,X1,X2,X3) :-sqr303,12066 -sqr(X0,X1,X2,X3) :-sqr303,12066 -sqr(X0,X1,X2,X3) :-sqr303,12066 -dom(X0,X1,X2,X3,X4,X5) :-dom314,12581 -dom(X0,X1,X2,X3,X4,X5) :-dom314,12581 -dom(X0,X1,X2,X3,X4,X5) :-dom314,12581 -convex(X0,X1,X2) :-convex339,14058 -convex(X0,X1,X2) :-convex339,14058 -convex(X0,X1,X2) :-convex339,14058 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap348,14447 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap348,14447 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap348,14447 -assign(X0,X1,X2) :-assign361,15158 -assign(X0,X1,X2) :-assign361,15158 -assign(X0,X1,X2) :-assign361,15158 -element(X0,X1,X2,X3) :-element390,16818 -element(X0,X1,X2,X3) :-element390,16818 -element(X0,X1,X2,X3) :-element390,16818 -sequence(X0,X1) :-sequence433,19491 -sequence(X0,X1) :-sequence433,19491 -sequence(X0,X1) :-sequence433,19491 -notMax(X0,X1,X2) :-notMax440,19769 -notMax(X0,X1,X2) :-notMax440,19769 -notMax(X0,X1,X2) :-notMax440,19769 -unary(X0,X1,X2) :-unary449,20159 -unary(X0,X1,X2) :-unary449,20159 -unary(X0,X1,X2) :-unary449,20159 -circuit(X0,X1,X2,X3) :-circuit458,20549 -circuit(X0,X1,X2,X3) :-circuit458,20549 -circuit(X0,X1,X2,X3) :-circuit458,20549 -dom(X0,X1,X2,X3,X4) :-dom475,21450 -dom(X0,X1,X2,X3,X4) :-dom475,21450 -dom(X0,X1,X2,X3,X4) :-dom475,21450 -channel(X0,X1,X2,X3) :-channel522,24333 -channel(X0,X1,X2,X3) :-channel522,24333 -channel(X0,X1,X2,X3) :-channel522,24333 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap551,26036 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap551,26036 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap551,26036 -element(X0,X1,X2,X3,X4,X5,X6) :-element572,27484 -element(X0,X1,X2,X3,X4,X5,X6) :-element572,27484 -element(X0,X1,X2,X3,X4,X5,X6) :-element572,27484 -max(X0,X1,X2) :-max639,32404 -max(X0,X1,X2) :-max639,32404 -max(X0,X1,X2) :-max639,32404 -unshare(X0,X1) :-unshare652,32995 -unshare(X0,X1) :-unshare652,32995 -unshare(X0,X1) :-unshare652,32995 -path(X0,X1,X2,X3,X4) :-path661,33370 -path(X0,X1,X2,X3,X4) :-path661,33370 -path(X0,X1,X2,X3,X4) :-path661,33370 -mult(X0,X1,X2,X3) :-mult682,34544 -mult(X0,X1,X2,X3) :-mult682,34544 -mult(X0,X1,X2,X3) :-mult682,34544 -clause(X0,X1,X2,X3,X4,X5) :-clause693,35060 -clause(X0,X1,X2,X3,X4,X5) :-clause693,35060 -clause(X0,X1,X2,X3,X4,X5) :-clause693,35060 -precede(X0,X1,X2,X3,X4) :-precede712,36210 -precede(X0,X1,X2,X3,X4) :-precede712,36210 -precede(X0,X1,X2,X3,X4) :-precede712,36210 -distinct(X0,X1) :-distinct725,36900 -distinct(X0,X1) :-distinct725,36900 -distinct(X0,X1) :-distinct725,36900 -mod(X0,X1,X2,X3,X4) :-mod732,37178 -mod(X0,X1,X2,X3,X4) :-mod732,37178 -mod(X0,X1,X2,X3,X4) :-mod732,37178 -cardinality(X0,X1,X2) :-cardinality745,37842 -cardinality(X0,X1,X2) :-cardinality745,37842 -cardinality(X0,X1,X2) :-cardinality745,37842 -atmostOne(X0,X1,X2) :-atmostOne754,38256 -atmostOne(X0,X1,X2) :-atmostOne754,38256 -atmostOne(X0,X1,X2) :-atmostOne754,38256 -channelSorted(X0,X1,X2) :-channelSorted763,38660 -channelSorted(X0,X1,X2) :-channelSorted763,38660 -channelSorted(X0,X1,X2) :-channelSorted763,38660 -linear(X0,X1,X2,X3) :-linear772,39088 -linear(X0,X1,X2,X3) :-linear772,39088 -linear(X0,X1,X2,X3) :-linear772,39088 -circuit(X0,X1) :-circuit793,40224 -circuit(X0,X1) :-circuit793,40224 -circuit(X0,X1) :-circuit793,40224 -rel(X0,X1,X2,X3,X4) :-rel800,40497 -rel(X0,X1,X2,X3,X4) :-rel800,40497 -rel(X0,X1,X2,X3,X4) :-rel800,40497 -min(X0,X1,X2,X3) :-min921,49163 -min(X0,X1,X2,X3) :-min921,49163 -min(X0,X1,X2,X3) :-min921,49163 -cardinality(X0,X1,X2,X3) :-cardinality944,50399 -cardinality(X0,X1,X2,X3) :-cardinality944,50399 -cardinality(X0,X1,X2,X3) :-cardinality944,50399 -count(X0,X1,X2,X3) :-count955,50950 -count(X0,X1,X2,X3) :-count955,50950 -count(X0,X1,X2,X3) :-count955,50950 -sqrt(X0,X1,X2) :-sqrt978,52232 -sqrt(X0,X1,X2) :-sqrt978,52232 -sqrt(X0,X1,X2) :-sqrt978,52232 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives987,52612 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives987,52612 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives987,52612 -binpacking(X0,X1,X2,X3) :-binpacking1080,60483 -binpacking(X0,X1,X2,X3) :-binpacking1080,60483 -binpacking(X0,X1,X2,X3) :-binpacking1080,60483 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1091,61043 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1091,61043 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1091,61043 -abs(X0,X1,X2,X3) :-abs1130,63763 -abs(X0,X1,X2,X3) :-abs1130,63763 -abs(X0,X1,X2,X3) :-abs1130,63763 -convex(X0,X1) :-convex1141,64276 -convex(X0,X1) :-convex1141,64276 -convex(X0,X1) :-convex1141,64276 -div(X0,X1,X2,X3) :-div1148,64541 -div(X0,X1,X2,X3) :-div1148,64541 -div(X0,X1,X2,X3) :-div1148,64541 -rel(X0,X1,X2,X3,X4,X5) :-rel1159,65051 -rel(X0,X1,X2,X3,X4,X5) :-rel1159,65051 -rel(X0,X1,X2,X3,X4,X5) :-rel1159,65051 -weights(X0,X1,X2,X3,X4) :-weights1240,70776 -weights(X0,X1,X2,X3,X4) :-weights1240,70776 -weights(X0,X1,X2,X3,X4) :-weights1240,70776 -max(X0,X1,X2,X3,X4) :-max1253,71465 -max(X0,X1,X2,X3,X4) :-max1253,71465 -max(X0,X1,X2,X3,X4) :-max1253,71465 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1266,72129 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1266,72129 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1266,72129 -unary(X0,X1,X2,X3) :-unary1287,73546 -unary(X0,X1,X2,X3) :-unary1287,73546 -unary(X0,X1,X2,X3) :-unary1287,73546 -sorted(X0,X1,X2,X3,X4) :-sorted1310,74840 -sorted(X0,X1,X2,X3,X4) :-sorted1310,74840 -sorted(X0,X1,X2,X3,X4) :-sorted1310,74840 -circuit(X0,X1,X2,X3,X4) :-circuit1323,75537 -circuit(X0,X1,X2,X3,X4) :-circuit1323,75537 -circuit(X0,X1,X2,X3,X4) :-circuit1323,75537 -dom(X0,X1,X2,X3) :-dom1346,76907 -dom(X0,X1,X2,X3) :-dom1346,76907 -dom(X0,X1,X2,X3) :-dom1346,76907 -abs(X0,X1,X2) :-abs1387,79242 -abs(X0,X1,X2) :-abs1387,79242 -abs(X0,X1,X2) :-abs1387,79242 -channel(X0,X1,X2,X3,X4) :-channel1396,79615 -channel(X0,X1,X2,X3,X4) :-channel1396,79615 -channel(X0,X1,X2,X3,X4) :-channel1396,79615 -rel(X0,X1,X2) :-rel1417,80819 -rel(X0,X1,X2) :-rel1417,80819 -rel(X0,X1,X2) :-rel1417,80819 -path(X0,X1,X2,X3) :-path1430,81423 -path(X0,X1,X2,X3) :-path1430,81423 -path(X0,X1,X2,X3) :-path1430,81423 -branch(X0,X1,X2,X3) :-branch1441,81943 -branch(X0,X1,X2,X3) :-branch1441,81943 -branch(X0,X1,X2,X3) :-branch1441,81943 -mult(X0,X1,X2,X3,X4) :-mult1464,83251 -mult(X0,X1,X2,X3,X4) :-mult1464,83251 -mult(X0,X1,X2,X3,X4) :-mult1464,83251 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1477,83922 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1477,83922 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1477,83922 -clause(X0,X1,X2,X3,X4) :-clause1504,85637 -clause(X0,X1,X2,X3,X4) :-clause1504,85637 -clause(X0,X1,X2,X3,X4) :-clause1504,85637 -precede(X0,X1,X2,X3) :-precede1519,86455 -precede(X0,X1,X2,X3) :-precede1519,86455 -precede(X0,X1,X2,X3) :-precede1519,86455 -channel(X0,X1,X2,X3,X4,X5) :-channel1540,87607 -channel(X0,X1,X2,X3,X4,X5) :-channel1540,87607 -channel(X0,X1,X2,X3,X4,X5) :-channel1540,87607 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1555,88467 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1555,88467 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1555,88467 -distinct(X0,X1,X2) :-distinct1628,94000 -distinct(X0,X1,X2) :-distinct1628,94000 -distinct(X0,X1,X2) :-distinct1628,94000 -mod(X0,X1,X2,X3) :-mod1641,94636 -mod(X0,X1,X2,X3) :-mod1641,94636 -mod(X0,X1,X2,X3) :-mod1641,94636 -sqr(X0,X1,X2) :-sqr1652,95146 -sqr(X0,X1,X2) :-sqr1652,95146 -sqr(X0,X1,X2) :-sqr1652,95146 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1661,95521 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1661,95521 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1661,95521 -path(X0,X1,X2,X3,X4,X5,X6) :-path1690,97428 -path(X0,X1,X2,X3,X4,X5,X6) :-path1690,97428 -path(X0,X1,X2,X3,X4,X5,X6) :-path1690,97428 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1721,99485 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1721,99485 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1721,99485 -sorted(X0,X1,X2) :-sorted1736,100336 -sorted(X0,X1,X2) :-sorted1736,100336 -sorted(X0,X1,X2) :-sorted1736,100336 -circuit(X0,X1,X2) :-circuit1745,100734 -circuit(X0,X1,X2) :-circuit1745,100734 -circuit(X0,X1,X2) :-circuit1745,100734 -channel(X0,X1,X2) :-channel1758,101357 -channel(X0,X1,X2) :-channel1758,101357 -channel(X0,X1,X2) :-channel1758,101357 -count(X0,X1,X2,X3,X4) :-count1783,102711 -count(X0,X1,X2,X3,X4) :-count1783,102711 -count(X0,X1,X2,X3,X4) :-count1783,102711 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1832,106000 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1832,106000 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1832,106000 -binpacking(X0,X1,X2,X3,X4) :-binpacking1909,112154 -binpacking(X0,X1,X2,X3,X4) :-binpacking1909,112154 -binpacking(X0,X1,X2,X3,X4) :-binpacking1909,112154 -linear(X0,X1,X2,X3,X4,X5) :-linear1922,112875 -linear(X0,X1,X2,X3,X4,X5) :-linear1922,112875 -linear(X0,X1,X2,X3,X4,X5) :-linear1922,112875 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap1993,117954 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap1993,117954 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap1993,117954 -div(X0,X1,X2,X3,X4) :-div2020,119788 -div(X0,X1,X2,X3,X4) :-div2020,119788 -div(X0,X1,X2,X3,X4) :-div2020,119788 -max(X0,X1,X2,X3) :-max2033,120452 -max(X0,X1,X2,X3) :-max2033,120452 -max(X0,X1,X2,X3) :-max2033,120452 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2056,121688 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2056,121688 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2056,121688 -unary(X0,X1,X2,X3,X4) :-unary2091,124140 -unary(X0,X1,X2,X3,X4) :-unary2091,124140 -unary(X0,X1,X2,X3,X4) :-unary2091,124140 -sorted(X0,X1,X2,X3) :-sorted2122,126040 -sorted(X0,X1,X2,X3) :-sorted2122,126040 -sorted(X0,X1,X2,X3) :-sorted2122,126040 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2135,126702 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2135,126702 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2135,126702 -element(X0,X1,X2,X3,X4) :-element2186,130464 -element(X0,X1,X2,X3,X4) :-element2186,130464 -element(X0,X1,X2,X3,X4) :-element2186,130464 -sequence(X0,X1,X2) :-sequence2245,134449 -sequence(X0,X1,X2) :-sequence2245,134449 -sequence(X0,X1,X2) :-sequence2245,134449 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2254,134853 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2254,134853 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2254,134853 -precede(X0,X1,X2) :-precede2271,135898 -precede(X0,X1,X2) :-precede2271,135898 -precede(X0,X1,X2) :-precede2271,135898 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2284,136523 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2284,136523 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2284,136523 -distinct(X0,X1,X2,X3) :-distinct2341,140583 -distinct(X0,X1,X2,X3) :-distinct2341,140583 -distinct(X0,X1,X2,X3) :-distinct2341,140583 -min(X0,X1,X2) :-min2352,141133 -min(X0,X1,X2) :-min2352,141133 -min(X0,X1,X2) :-min2352,141133 -sqrt(X0,X1,X2,X3) :-sqrt2365,141724 -sqrt(X0,X1,X2,X3) :-sqrt2365,141724 -sqrt(X0,X1,X2,X3) :-sqrt2365,141724 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2376,142245 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2376,142245 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2376,142245 -unshare(X0,X1,X2) :-unshare2401,143779 -unshare(X0,X1,X2) :-unshare2401,143779 -unshare(X0,X1,X2) :-unshare2401,143779 -path(X0,X1,X2,X3,X4,X5) :-path2414,144413 -path(X0,X1,X2,X3,X4,X5) :-path2414,144413 -path(X0,X1,X2,X3,X4,X5) :-path2414,144413 -divmod(X0,X1,X2,X3,X4) :-divmod2439,145915 -divmod(X0,X1,X2,X3,X4) :-divmod2439,145915 -divmod(X0,X1,X2,X3,X4) :-divmod2439,145915 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2452,146595 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2452,146595 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2452,146595 -cumulative(X0,X1,X2,X3,X4) :-cumulative2473,148090 -cumulative(X0,X1,X2,X3,X4) :-cumulative2473,148090 -cumulative(X0,X1,X2,X3,X4) :-cumulative2473,148090 -count(X0,X1,X2,X3,X4,X5) :-count2494,149327 -count(X0,X1,X2,X3,X4,X5) :-count2494,149327 -count(X0,X1,X2,X3,X4,X5) :-count2494,149327 -notMin(X0,X1,X2) :-notMin2537,152212 -notMin(X0,X1,X2) :-notMin2537,152212 -notMin(X0,X1,X2) :-notMin2537,152212 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2546,152602 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2546,152602 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2546,152602 -branch(X0,X1,X2) :-branch2603,156944 -branch(X0,X1,X2) :-branch2603,156944 -branch(X0,X1,X2) :-branch2603,156944 -dom(X0,X1,X2) :-dom2620,157802 -dom(X0,X1,X2) :-dom2620,157802 -dom(X0,X1,X2) :-dom2620,157802 -linear(X0,X1,X2,X3,X4) :-linear2637,158601 -linear(X0,X1,X2,X3,X4) :-linear2637,158601 -linear(X0,X1,X2,X3,X4) :-linear2637,158601 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2692,162188 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2692,162188 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2692,162188 -element(X0,X1,X2,X3,X4,X5) :-element2709,163220 -element(X0,X1,X2,X3,X4,X5) :-element2709,163220 -element(X0,X1,X2,X3,X4,X5) :-element2709,163220 -rel(X0,X1,X2,X3) :-rel2732,164639 -rel(X0,X1,X2,X3) :-rel2732,164639 -rel(X0,X1,X2,X3) :-rel2732,164639 -min(X0,X1,X2,X3,X4) :-min2813,170094 -min(X0,X1,X2,X3,X4) :-min2813,170094 -min(X0,X1,X2,X3,X4) :-min2813,170094 -count(X0,X1,X2) :-count2826,170758 -count(X0,X1,X2) :-count2826,170758 -count(X0,X1,X2) :-count2826,170758 - -packages/gecode/3.7.0/gecode_yap_auto_generated.yap,50704 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_LQ').is_SetRelType_175,6480 -is_SetRelType_('SRT_LQ').is_SetRelType_175,6480 -is_SetRelType_('SRT_LE').is_SetRelType_176,6506 -is_SetRelType_('SRT_LE').is_SetRelType_176,6506 -is_SetRelType_('SRT_GQ').is_SetRelType_177,6532 -is_SetRelType_('SRT_GQ').is_SetRelType_177,6532 -is_SetRelType_('SRT_GR').is_SetRelType_178,6558 -is_SetRelType_('SRT_GR').is_SetRelType_178,6558 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_180,6585 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_180,6585 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_181,6620 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_181,6620 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_182,6655 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_182,6655 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_183,6692 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_183,6692 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_184,6729 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_184,6729 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_185,6768 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_185,6768 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_186,6807 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_186,6807 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_187,6842 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_187,6842 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_188,6877 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_188,6877 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_189,6912 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_189,6912 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetOpType_('SOT_UNION').is_SetOpType_194,7043 -is_SetOpType_('SOT_UNION').is_SetOpType_194,7043 -is_SetOpType_('SOT_DUNION').is_SetOpType_195,7071 -is_SetOpType_('SOT_DUNION').is_SetOpType_195,7071 -is_SetOpType_('SOT_INTER').is_SetOpType_196,7100 -is_SetOpType_('SOT_INTER').is_SetOpType_196,7100 -is_SetOpType_('SOT_MINUS').is_SetOpType_197,7128 -is_SetOpType_('SOT_MINUS').is_SetOpType_197,7128 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_199,7157 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_199,7157 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_200,7197 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_200,7197 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_201,7239 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_201,7239 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_202,7279 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_202,7279 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_207,7411 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_207,7411 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_208,7445 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_208,7445 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_209,7478 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_209,7478 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_210,7518 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_210,7518 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_211,7558 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_211,7558 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_212,7595 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_212,7595 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_213,7632 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_213,7632 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_214,7669 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_214,7669 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_215,7706 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_215,7706 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_216,7743 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_216,7743 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_217,7780 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_217,7780 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_218,7818 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_218,7818 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_219,7856 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_219,7856 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_220,7901 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_220,7901 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_221,7946 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_221,7946 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_222,7988 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_222,7988 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_224,8031 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_224,8031 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_225,8080 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_225,8080 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_226,8127 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_226,8127 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_227,8188 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_227,8188 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_228,8249 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_228,8249 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_229,8304 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_229,8304 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_230,8359 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_230,8359 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_231,8414 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_231,8414 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_232,8469 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_232,8469 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_233,8524 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_233,8524 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_234,8579 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_234,8579 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_235,8636 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_235,8636 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_236,8693 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_236,8693 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_237,8764 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_237,8764 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_238,8835 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_238,8835 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_239,8900 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_239,8900 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_244,9069 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_244,9069 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_245,9106 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_245,9106 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_246,9143 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_246,9143 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_247,9180 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_247,9180 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_248,9217 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_248,9217 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_249,9254 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_249,9254 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_250,9291 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_250,9291 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_251,9328 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_251,9328 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_253,9366 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_253,9366 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_254,9421 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_254,9421 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_255,9476 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_255,9476 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_256,9531 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_256,9531 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_257,9586 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_257,9586 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_258,9641 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_258,9641 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_259,9696 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_259,9696 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_260,9751 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_260,9751 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_265,9910 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_265,9910 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_266,9947 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_266,9947 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_267,9984 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_267,9984 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_268,10021 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_268,10021 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_269,10058 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_269,10058 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_270,10095 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_270,10095 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_271,10132 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_271,10132 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_272,10169 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_272,10169 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_274,10207 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_274,10207 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_275,10265 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_275,10265 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_276,10323 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_276,10323 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_277,10381 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_277,10381 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_278,10439 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_278,10439 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_279,10497 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_279,10497 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_280,10555 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_280,10555 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_281,10613 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_281,10613 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -max(X0,X1,X2,X3) :-max340,14082 -max(X0,X1,X2,X3) :-max340,14082 -max(X0,X1,X2,X3) :-max340,14082 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -convex(X0,X1,X2) :-convex388,16795 -convex(X0,X1,X2) :-convex388,16795 -convex(X0,X1,X2) :-convex388,16795 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -assign(X0,X1,X2) :-assign410,17895 -assign(X0,X1,X2) :-assign410,17895 -assign(X0,X1,X2) :-assign410,17895 -element(X0,X1,X2,X3) :-element439,19555 -element(X0,X1,X2,X3) :-element439,19555 -element(X0,X1,X2,X3) :-element439,19555 -sequence(X0,X1) :-sequence482,22228 -sequence(X0,X1) :-sequence482,22228 -sequence(X0,X1) :-sequence482,22228 -notMax(X0,X1,X2) :-notMax489,22506 -notMax(X0,X1,X2) :-notMax489,22506 -notMax(X0,X1,X2) :-notMax489,22506 -unary(X0,X1,X2) :-unary498,22896 -unary(X0,X1,X2) :-unary498,22896 -unary(X0,X1,X2) :-unary498,22896 -circuit(X0,X1,X2,X3) :-circuit507,23286 -circuit(X0,X1,X2,X3) :-circuit507,23286 -circuit(X0,X1,X2,X3) :-circuit507,23286 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -channel(X0,X1,X2,X3) :-channel571,27070 -channel(X0,X1,X2,X3) :-channel571,27070 -channel(X0,X1,X2,X3) :-channel571,27070 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -max(X0,X1,X2) :-max688,35141 -max(X0,X1,X2) :-max688,35141 -max(X0,X1,X2) :-max688,35141 -unshare(X0,X1) :-unshare701,35732 -unshare(X0,X1) :-unshare701,35732 -unshare(X0,X1) :-unshare701,35732 -path(X0,X1,X2,X3,X4) :-path710,36107 -path(X0,X1,X2,X3,X4) :-path710,36107 -path(X0,X1,X2,X3,X4) :-path710,36107 -mult(X0,X1,X2,X3) :-mult731,37281 -mult(X0,X1,X2,X3) :-mult731,37281 -mult(X0,X1,X2,X3) :-mult731,37281 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -distinct(X0,X1) :-distinct774,39637 -distinct(X0,X1) :-distinct774,39637 -distinct(X0,X1) :-distinct774,39637 -member(X0,X1,X2,X3) :-member781,39915 -member(X0,X1,X2,X3) :-member781,39915 -member(X0,X1,X2,X3) :-member781,39915 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -cardinality(X0,X1,X2) :-cardinality815,41726 -cardinality(X0,X1,X2) :-cardinality815,41726 -cardinality(X0,X1,X2) :-cardinality815,41726 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -linear(X0,X1,X2,X3) :-linear842,42972 -linear(X0,X1,X2,X3) :-linear842,42972 -linear(X0,X1,X2,X3) :-linear842,42972 -circuit(X0,X1) :-circuit863,44108 -circuit(X0,X1) :-circuit863,44108 -circuit(X0,X1) :-circuit863,44108 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -min(X0,X1,X2,X3) :-min991,53047 -min(X0,X1,X2,X3) :-min991,53047 -min(X0,X1,X2,X3) :-min991,53047 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -count(X0,X1,X2,X3) :-count1025,54834 -count(X0,X1,X2,X3) :-count1025,54834 -count(X0,X1,X2,X3) :-count1025,54834 -sqrt(X0,X1,X2) :-sqrt1048,56116 -sqrt(X0,X1,X2) :-sqrt1048,56116 -sqrt(X0,X1,X2) :-sqrt1048,56116 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -abs(X0,X1,X2,X3) :-abs1221,68795 -abs(X0,X1,X2,X3) :-abs1221,68795 -abs(X0,X1,X2,X3) :-abs1221,68795 -convex(X0,X1) :-convex1232,69308 -convex(X0,X1) :-convex1232,69308 -convex(X0,X1) :-convex1232,69308 -div(X0,X1,X2,X3) :-div1239,69573 -div(X0,X1,X2,X3) :-div1239,69573 -div(X0,X1,X2,X3) :-div1239,69573 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -max(X0,X1,X2,X3,X4) :-max1344,76497 -max(X0,X1,X2,X3,X4) :-max1344,76497 -max(X0,X1,X2,X3,X4) :-max1344,76497 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -unary(X0,X1,X2,X3) :-unary1378,78578 -unary(X0,X1,X2,X3) :-unary1378,78578 -unary(X0,X1,X2,X3) :-unary1378,78578 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -dom(X0,X1,X2,X3) :-dom1437,81939 -dom(X0,X1,X2,X3) :-dom1437,81939 -dom(X0,X1,X2,X3) :-dom1437,81939 -abs(X0,X1,X2) :-abs1478,84274 -abs(X0,X1,X2) :-abs1478,84274 -abs(X0,X1,X2) :-abs1478,84274 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -rel(X0,X1,X2) :-rel1508,85851 -rel(X0,X1,X2) :-rel1508,85851 -rel(X0,X1,X2) :-rel1508,85851 -path(X0,X1,X2,X3) :-path1521,86455 -path(X0,X1,X2,X3) :-path1521,86455 -path(X0,X1,X2,X3) :-path1521,86455 -branch(X0,X1,X2,X3) :-branch1532,86975 -branch(X0,X1,X2,X3) :-branch1532,86975 -branch(X0,X1,X2,X3) :-branch1532,86975 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -precede(X0,X1,X2,X3) :-precede1610,91487 -precede(X0,X1,X2,X3) :-precede1610,91487 -precede(X0,X1,X2,X3) :-precede1610,91487 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -distinct(X0,X1,X2) :-distinct1719,99033 -distinct(X0,X1,X2) :-distinct1719,99033 -distinct(X0,X1,X2) :-distinct1719,99033 -member(X0,X1,X2,X3,X4) :-member1732,99669 -member(X0,X1,X2,X3,X4) :-member1732,99669 -member(X0,X1,X2,X3,X4) :-member1732,99669 -mod(X0,X1,X2,X3) :-mod1753,100877 -mod(X0,X1,X2,X3) :-mod1753,100877 -mod(X0,X1,X2,X3) :-mod1753,100877 -sqr(X0,X1,X2) :-sqr1764,101387 -sqr(X0,X1,X2) :-sqr1764,101387 -sqr(X0,X1,X2) :-sqr1764,101387 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -sorted(X0,X1,X2) :-sorted1848,106577 -sorted(X0,X1,X2) :-sorted1848,106577 -sorted(X0,X1,X2) :-sorted1848,106577 -circuit(X0,X1,X2) :-circuit1857,106975 -circuit(X0,X1,X2) :-circuit1857,106975 -circuit(X0,X1,X2) :-circuit1857,106975 -channel(X0,X1,X2) :-channel1870,107598 -channel(X0,X1,X2) :-channel1870,107598 -channel(X0,X1,X2) :-channel1870,107598 -count(X0,X1,X2,X3,X4) :-count1895,108952 -count(X0,X1,X2,X3,X4) :-count1895,108952 -count(X0,X1,X2,X3,X4) :-count1895,108952 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -div(X0,X1,X2,X3,X4) :-div2138,126464 -div(X0,X1,X2,X3,X4) :-div2138,126464 -div(X0,X1,X2,X3,X4) :-div2138,126464 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4) :-element2292,136419 -element(X0,X1,X2,X3,X4) :-element2292,136419 -element(X0,X1,X2,X3,X4) :-element2292,136419 -sequence(X0,X1,X2) :-sequence2363,141359 -sequence(X0,X1,X2) :-sequence2363,141359 -sequence(X0,X1,X2) :-sequence2363,141359 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -precede(X0,X1,X2) :-precede2389,142808 -precede(X0,X1,X2) :-precede2389,142808 -precede(X0,X1,X2) :-precede2389,142808 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -min(X0,X1,X2) :-min2470,148044 -min(X0,X1,X2) :-min2470,148044 -min(X0,X1,X2) :-min2470,148044 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -unshare(X0,X1,X2) :-unshare2519,150690 -unshare(X0,X1,X2) :-unshare2519,150690 -unshare(X0,X1,X2) :-unshare2519,150690 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -member(X0,X1,X2) :-member2612,156238 -member(X0,X1,X2) :-member2612,156238 -member(X0,X1,X2) :-member2612,156238 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -notMin(X0,X1,X2) :-notMin2680,160690 -notMin(X0,X1,X2) :-notMin2680,160690 -notMin(X0,X1,X2) :-notMin2680,160690 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -branch(X0,X1,X2) :-branch2746,165422 -branch(X0,X1,X2) :-branch2746,165422 -branch(X0,X1,X2) :-branch2746,165422 -dom(X0,X1,X2) :-dom2763,166280 -dom(X0,X1,X2) :-dom2763,166280 -dom(X0,X1,X2) :-dom2763,166280 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -rel(X0,X1,X2,X3) :-rel2891,174326 -rel(X0,X1,X2,X3) :-rel2891,174326 -rel(X0,X1,X2,X3) :-rel2891,174326 -min(X0,X1,X2,X3,X4) :-min2972,179781 -min(X0,X1,X2,X3,X4) :-min2972,179781 -min(X0,X1,X2,X3,X4) :-min2972,179781 -count(X0,X1,X2) :-count2985,180445 -count(X0,X1,X2) :-count2985,180445 -count(X0,X1,X2) :-count2985,180445 - -packages/gecode/3.7.1/gecode_yap_auto_generated.yap,50704 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_LQ').is_SetRelType_175,6480 -is_SetRelType_('SRT_LQ').is_SetRelType_175,6480 -is_SetRelType_('SRT_LE').is_SetRelType_176,6506 -is_SetRelType_('SRT_LE').is_SetRelType_176,6506 -is_SetRelType_('SRT_GQ').is_SetRelType_177,6532 -is_SetRelType_('SRT_GQ').is_SetRelType_177,6532 -is_SetRelType_('SRT_GR').is_SetRelType_178,6558 -is_SetRelType_('SRT_GR').is_SetRelType_178,6558 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_180,6585 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_180,6585 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_181,6620 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_181,6620 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_182,6655 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_182,6655 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_183,6692 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_183,6692 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_184,6729 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_184,6729 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_185,6768 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_185,6768 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_186,6807 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_186,6807 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_187,6842 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_187,6842 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_188,6877 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_188,6877 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_189,6912 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_189,6912 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetOpType_('SOT_UNION').is_SetOpType_194,7043 -is_SetOpType_('SOT_UNION').is_SetOpType_194,7043 -is_SetOpType_('SOT_DUNION').is_SetOpType_195,7071 -is_SetOpType_('SOT_DUNION').is_SetOpType_195,7071 -is_SetOpType_('SOT_INTER').is_SetOpType_196,7100 -is_SetOpType_('SOT_INTER').is_SetOpType_196,7100 -is_SetOpType_('SOT_MINUS').is_SetOpType_197,7128 -is_SetOpType_('SOT_MINUS').is_SetOpType_197,7128 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_199,7157 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_199,7157 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_200,7197 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_200,7197 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_201,7239 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_201,7239 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_202,7279 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_202,7279 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_207,7411 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_207,7411 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_208,7445 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_208,7445 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_209,7478 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_209,7478 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_210,7518 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_210,7518 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_211,7558 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_211,7558 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_212,7595 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_212,7595 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_213,7632 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_213,7632 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_214,7669 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_214,7669 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_215,7706 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_215,7706 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_216,7743 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_216,7743 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_217,7780 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_217,7780 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_218,7818 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_218,7818 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_219,7856 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_219,7856 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_220,7901 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_220,7901 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_221,7946 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_221,7946 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_222,7988 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_222,7988 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_224,8031 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_224,8031 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_225,8080 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_225,8080 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_226,8127 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_226,8127 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_227,8188 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_227,8188 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_228,8249 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_228,8249 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_229,8304 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_229,8304 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_230,8359 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_230,8359 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_231,8414 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_231,8414 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_232,8469 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_232,8469 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_233,8524 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_233,8524 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_234,8579 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_234,8579 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_235,8636 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_235,8636 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_236,8693 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_236,8693 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_237,8764 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_237,8764 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_238,8835 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_238,8835 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_239,8900 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_239,8900 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_244,9069 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_244,9069 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_245,9106 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_245,9106 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_246,9143 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_246,9143 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_247,9180 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_247,9180 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_248,9217 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_248,9217 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_249,9254 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_249,9254 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_250,9291 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_250,9291 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_251,9328 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_251,9328 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_253,9366 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_253,9366 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_254,9421 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_254,9421 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_255,9476 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_255,9476 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_256,9531 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_256,9531 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_257,9586 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_257,9586 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_258,9641 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_258,9641 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_259,9696 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_259,9696 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_260,9751 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_260,9751 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_265,9910 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_265,9910 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_266,9947 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_266,9947 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_267,9984 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_267,9984 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_268,10021 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_268,10021 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_269,10058 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_269,10058 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_270,10095 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_270,10095 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_271,10132 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_271,10132 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_272,10169 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_272,10169 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_274,10207 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_274,10207 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_275,10265 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_275,10265 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_276,10323 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_276,10323 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_277,10381 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_277,10381 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_278,10439 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_278,10439 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_279,10497 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_279,10497 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_280,10555 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_280,10555 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_281,10613 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_281,10613 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -max(X0,X1,X2,X3) :-max340,14082 -max(X0,X1,X2,X3) :-max340,14082 -max(X0,X1,X2,X3) :-max340,14082 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -convex(X0,X1,X2) :-convex388,16795 -convex(X0,X1,X2) :-convex388,16795 -convex(X0,X1,X2) :-convex388,16795 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -assign(X0,X1,X2) :-assign410,17895 -assign(X0,X1,X2) :-assign410,17895 -assign(X0,X1,X2) :-assign410,17895 -element(X0,X1,X2,X3) :-element439,19555 -element(X0,X1,X2,X3) :-element439,19555 -element(X0,X1,X2,X3) :-element439,19555 -sequence(X0,X1) :-sequence482,22228 -sequence(X0,X1) :-sequence482,22228 -sequence(X0,X1) :-sequence482,22228 -notMax(X0,X1,X2) :-notMax489,22506 -notMax(X0,X1,X2) :-notMax489,22506 -notMax(X0,X1,X2) :-notMax489,22506 -unary(X0,X1,X2) :-unary498,22896 -unary(X0,X1,X2) :-unary498,22896 -unary(X0,X1,X2) :-unary498,22896 -circuit(X0,X1,X2,X3) :-circuit507,23286 -circuit(X0,X1,X2,X3) :-circuit507,23286 -circuit(X0,X1,X2,X3) :-circuit507,23286 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -channel(X0,X1,X2,X3) :-channel571,27070 -channel(X0,X1,X2,X3) :-channel571,27070 -channel(X0,X1,X2,X3) :-channel571,27070 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -max(X0,X1,X2) :-max688,35141 -max(X0,X1,X2) :-max688,35141 -max(X0,X1,X2) :-max688,35141 -unshare(X0,X1) :-unshare701,35732 -unshare(X0,X1) :-unshare701,35732 -unshare(X0,X1) :-unshare701,35732 -path(X0,X1,X2,X3,X4) :-path710,36107 -path(X0,X1,X2,X3,X4) :-path710,36107 -path(X0,X1,X2,X3,X4) :-path710,36107 -mult(X0,X1,X2,X3) :-mult731,37281 -mult(X0,X1,X2,X3) :-mult731,37281 -mult(X0,X1,X2,X3) :-mult731,37281 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -distinct(X0,X1) :-distinct774,39637 -distinct(X0,X1) :-distinct774,39637 -distinct(X0,X1) :-distinct774,39637 -member(X0,X1,X2,X3) :-member781,39915 -member(X0,X1,X2,X3) :-member781,39915 -member(X0,X1,X2,X3) :-member781,39915 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -cardinality(X0,X1,X2) :-cardinality815,41726 -cardinality(X0,X1,X2) :-cardinality815,41726 -cardinality(X0,X1,X2) :-cardinality815,41726 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -linear(X0,X1,X2,X3) :-linear842,42972 -linear(X0,X1,X2,X3) :-linear842,42972 -linear(X0,X1,X2,X3) :-linear842,42972 -circuit(X0,X1) :-circuit863,44108 -circuit(X0,X1) :-circuit863,44108 -circuit(X0,X1) :-circuit863,44108 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -min(X0,X1,X2,X3) :-min991,53047 -min(X0,X1,X2,X3) :-min991,53047 -min(X0,X1,X2,X3) :-min991,53047 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -count(X0,X1,X2,X3) :-count1025,54834 -count(X0,X1,X2,X3) :-count1025,54834 -count(X0,X1,X2,X3) :-count1025,54834 -sqrt(X0,X1,X2) :-sqrt1048,56116 -sqrt(X0,X1,X2) :-sqrt1048,56116 -sqrt(X0,X1,X2) :-sqrt1048,56116 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -abs(X0,X1,X2,X3) :-abs1221,68795 -abs(X0,X1,X2,X3) :-abs1221,68795 -abs(X0,X1,X2,X3) :-abs1221,68795 -convex(X0,X1) :-convex1232,69308 -convex(X0,X1) :-convex1232,69308 -convex(X0,X1) :-convex1232,69308 -div(X0,X1,X2,X3) :-div1239,69573 -div(X0,X1,X2,X3) :-div1239,69573 -div(X0,X1,X2,X3) :-div1239,69573 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -max(X0,X1,X2,X3,X4) :-max1344,76497 -max(X0,X1,X2,X3,X4) :-max1344,76497 -max(X0,X1,X2,X3,X4) :-max1344,76497 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -unary(X0,X1,X2,X3) :-unary1378,78578 -unary(X0,X1,X2,X3) :-unary1378,78578 -unary(X0,X1,X2,X3) :-unary1378,78578 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -dom(X0,X1,X2,X3) :-dom1437,81939 -dom(X0,X1,X2,X3) :-dom1437,81939 -dom(X0,X1,X2,X3) :-dom1437,81939 -abs(X0,X1,X2) :-abs1478,84274 -abs(X0,X1,X2) :-abs1478,84274 -abs(X0,X1,X2) :-abs1478,84274 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -rel(X0,X1,X2) :-rel1508,85851 -rel(X0,X1,X2) :-rel1508,85851 -rel(X0,X1,X2) :-rel1508,85851 -path(X0,X1,X2,X3) :-path1521,86455 -path(X0,X1,X2,X3) :-path1521,86455 -path(X0,X1,X2,X3) :-path1521,86455 -branch(X0,X1,X2,X3) :-branch1532,86975 -branch(X0,X1,X2,X3) :-branch1532,86975 -branch(X0,X1,X2,X3) :-branch1532,86975 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -precede(X0,X1,X2,X3) :-precede1610,91487 -precede(X0,X1,X2,X3) :-precede1610,91487 -precede(X0,X1,X2,X3) :-precede1610,91487 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -distinct(X0,X1,X2) :-distinct1719,99033 -distinct(X0,X1,X2) :-distinct1719,99033 -distinct(X0,X1,X2) :-distinct1719,99033 -member(X0,X1,X2,X3,X4) :-member1732,99669 -member(X0,X1,X2,X3,X4) :-member1732,99669 -member(X0,X1,X2,X3,X4) :-member1732,99669 -mod(X0,X1,X2,X3) :-mod1753,100877 -mod(X0,X1,X2,X3) :-mod1753,100877 -mod(X0,X1,X2,X3) :-mod1753,100877 -sqr(X0,X1,X2) :-sqr1764,101387 -sqr(X0,X1,X2) :-sqr1764,101387 -sqr(X0,X1,X2) :-sqr1764,101387 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -sorted(X0,X1,X2) :-sorted1848,106577 -sorted(X0,X1,X2) :-sorted1848,106577 -sorted(X0,X1,X2) :-sorted1848,106577 -circuit(X0,X1,X2) :-circuit1857,106975 -circuit(X0,X1,X2) :-circuit1857,106975 -circuit(X0,X1,X2) :-circuit1857,106975 -channel(X0,X1,X2) :-channel1870,107598 -channel(X0,X1,X2) :-channel1870,107598 -channel(X0,X1,X2) :-channel1870,107598 -count(X0,X1,X2,X3,X4) :-count1895,108952 -count(X0,X1,X2,X3,X4) :-count1895,108952 -count(X0,X1,X2,X3,X4) :-count1895,108952 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -div(X0,X1,X2,X3,X4) :-div2138,126464 -div(X0,X1,X2,X3,X4) :-div2138,126464 -div(X0,X1,X2,X3,X4) :-div2138,126464 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4) :-element2292,136419 -element(X0,X1,X2,X3,X4) :-element2292,136419 -element(X0,X1,X2,X3,X4) :-element2292,136419 -sequence(X0,X1,X2) :-sequence2363,141359 -sequence(X0,X1,X2) :-sequence2363,141359 -sequence(X0,X1,X2) :-sequence2363,141359 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -precede(X0,X1,X2) :-precede2389,142808 -precede(X0,X1,X2) :-precede2389,142808 -precede(X0,X1,X2) :-precede2389,142808 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -min(X0,X1,X2) :-min2470,148044 -min(X0,X1,X2) :-min2470,148044 -min(X0,X1,X2) :-min2470,148044 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -unshare(X0,X1,X2) :-unshare2519,150690 -unshare(X0,X1,X2) :-unshare2519,150690 -unshare(X0,X1,X2) :-unshare2519,150690 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -member(X0,X1,X2) :-member2612,156238 -member(X0,X1,X2) :-member2612,156238 -member(X0,X1,X2) :-member2612,156238 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -notMin(X0,X1,X2) :-notMin2680,160690 -notMin(X0,X1,X2) :-notMin2680,160690 -notMin(X0,X1,X2) :-notMin2680,160690 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -branch(X0,X1,X2) :-branch2746,165422 -branch(X0,X1,X2) :-branch2746,165422 -branch(X0,X1,X2) :-branch2746,165422 -dom(X0,X1,X2) :-dom2763,166280 -dom(X0,X1,X2) :-dom2763,166280 -dom(X0,X1,X2) :-dom2763,166280 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -rel(X0,X1,X2,X3) :-rel2891,174326 -rel(X0,X1,X2,X3) :-rel2891,174326 -rel(X0,X1,X2,X3) :-rel2891,174326 -min(X0,X1,X2,X3,X4) :-min2972,179781 -min(X0,X1,X2,X3,X4) :-min2972,179781 -min(X0,X1,X2,X3,X4) :-min2972,179781 -count(X0,X1,X2) :-count2985,180445 -count(X0,X1,X2) :-count2985,180445 -count(X0,X1,X2) :-count2985,180445 - -packages/gecode/3.7.2/gecode_yap_auto_generated.yap,50704 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_LQ').is_SetRelType_175,6480 -is_SetRelType_('SRT_LQ').is_SetRelType_175,6480 -is_SetRelType_('SRT_LE').is_SetRelType_176,6506 -is_SetRelType_('SRT_LE').is_SetRelType_176,6506 -is_SetRelType_('SRT_GQ').is_SetRelType_177,6532 -is_SetRelType_('SRT_GQ').is_SetRelType_177,6532 -is_SetRelType_('SRT_GR').is_SetRelType_178,6558 -is_SetRelType_('SRT_GR').is_SetRelType_178,6558 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_180,6585 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_180,6585 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_181,6620 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_181,6620 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_182,6655 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_182,6655 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_183,6692 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_183,6692 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_184,6729 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_184,6729 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_185,6768 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_185,6768 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_186,6807 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_186,6807 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_187,6842 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_187,6842 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_188,6877 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_188,6877 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_189,6912 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_189,6912 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetOpType_('SOT_UNION').is_SetOpType_194,7043 -is_SetOpType_('SOT_UNION').is_SetOpType_194,7043 -is_SetOpType_('SOT_DUNION').is_SetOpType_195,7071 -is_SetOpType_('SOT_DUNION').is_SetOpType_195,7071 -is_SetOpType_('SOT_INTER').is_SetOpType_196,7100 -is_SetOpType_('SOT_INTER').is_SetOpType_196,7100 -is_SetOpType_('SOT_MINUS').is_SetOpType_197,7128 -is_SetOpType_('SOT_MINUS').is_SetOpType_197,7128 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_199,7157 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_199,7157 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_200,7197 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_200,7197 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_201,7239 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_201,7239 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_202,7279 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_202,7279 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_207,7411 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_207,7411 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_208,7445 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_208,7445 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_209,7478 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_209,7478 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_210,7518 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_210,7518 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_211,7558 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_211,7558 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_212,7595 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_212,7595 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_213,7632 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_213,7632 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_214,7669 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_214,7669 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_215,7706 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_215,7706 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_216,7743 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_216,7743 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_217,7780 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_217,7780 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_218,7818 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_218,7818 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_219,7856 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_219,7856 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_220,7901 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_220,7901 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_221,7946 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_221,7946 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_222,7988 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_222,7988 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_224,8031 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_224,8031 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_225,8080 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_225,8080 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_226,8127 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_226,8127 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_227,8188 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_227,8188 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_228,8249 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_228,8249 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_229,8304 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_229,8304 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_230,8359 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_230,8359 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_231,8414 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_231,8414 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_232,8469 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_232,8469 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_233,8524 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_233,8524 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_234,8579 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_234,8579 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_235,8636 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_235,8636 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_236,8693 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_236,8693 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_237,8764 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_237,8764 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_238,8835 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_238,8835 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_239,8900 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_239,8900 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_244,9069 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_244,9069 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_245,9106 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_245,9106 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_246,9143 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_246,9143 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_247,9180 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_247,9180 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_248,9217 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_248,9217 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_249,9254 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_249,9254 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_250,9291 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_250,9291 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_251,9328 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_251,9328 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_253,9366 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_253,9366 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_254,9421 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_254,9421 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_255,9476 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_255,9476 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_256,9531 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_256,9531 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_257,9586 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_257,9586 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_258,9641 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_258,9641 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_259,9696 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_259,9696 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_260,9751 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_260,9751 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_265,9910 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_265,9910 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_266,9947 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_266,9947 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_267,9984 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_267,9984 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_268,10021 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_268,10021 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_269,10058 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_269,10058 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_270,10095 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_270,10095 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_271,10132 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_271,10132 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_272,10169 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_272,10169 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_274,10207 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_274,10207 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_275,10265 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_275,10265 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_276,10323 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_276,10323 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_277,10381 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_277,10381 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_278,10439 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_278,10439 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_279,10497 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_279,10497 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_280,10555 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_280,10555 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_281,10613 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_281,10613 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -max(X0,X1,X2,X3) :-max340,14082 -max(X0,X1,X2,X3) :-max340,14082 -max(X0,X1,X2,X3) :-max340,14082 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -convex(X0,X1,X2) :-convex388,16795 -convex(X0,X1,X2) :-convex388,16795 -convex(X0,X1,X2) :-convex388,16795 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -assign(X0,X1,X2) :-assign410,17895 -assign(X0,X1,X2) :-assign410,17895 -assign(X0,X1,X2) :-assign410,17895 -element(X0,X1,X2,X3) :-element439,19555 -element(X0,X1,X2,X3) :-element439,19555 -element(X0,X1,X2,X3) :-element439,19555 -sequence(X0,X1) :-sequence482,22228 -sequence(X0,X1) :-sequence482,22228 -sequence(X0,X1) :-sequence482,22228 -notMax(X0,X1,X2) :-notMax489,22506 -notMax(X0,X1,X2) :-notMax489,22506 -notMax(X0,X1,X2) :-notMax489,22506 -unary(X0,X1,X2) :-unary498,22896 -unary(X0,X1,X2) :-unary498,22896 -unary(X0,X1,X2) :-unary498,22896 -circuit(X0,X1,X2,X3) :-circuit507,23286 -circuit(X0,X1,X2,X3) :-circuit507,23286 -circuit(X0,X1,X2,X3) :-circuit507,23286 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -channel(X0,X1,X2,X3) :-channel571,27070 -channel(X0,X1,X2,X3) :-channel571,27070 -channel(X0,X1,X2,X3) :-channel571,27070 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -max(X0,X1,X2) :-max688,35141 -max(X0,X1,X2) :-max688,35141 -max(X0,X1,X2) :-max688,35141 -unshare(X0,X1) :-unshare701,35732 -unshare(X0,X1) :-unshare701,35732 -unshare(X0,X1) :-unshare701,35732 -path(X0,X1,X2,X3,X4) :-path710,36107 -path(X0,X1,X2,X3,X4) :-path710,36107 -path(X0,X1,X2,X3,X4) :-path710,36107 -mult(X0,X1,X2,X3) :-mult731,37281 -mult(X0,X1,X2,X3) :-mult731,37281 -mult(X0,X1,X2,X3) :-mult731,37281 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -distinct(X0,X1) :-distinct774,39637 -distinct(X0,X1) :-distinct774,39637 -distinct(X0,X1) :-distinct774,39637 -member(X0,X1,X2,X3) :-member781,39915 -member(X0,X1,X2,X3) :-member781,39915 -member(X0,X1,X2,X3) :-member781,39915 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -cardinality(X0,X1,X2) :-cardinality815,41726 -cardinality(X0,X1,X2) :-cardinality815,41726 -cardinality(X0,X1,X2) :-cardinality815,41726 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -linear(X0,X1,X2,X3) :-linear842,42972 -linear(X0,X1,X2,X3) :-linear842,42972 -linear(X0,X1,X2,X3) :-linear842,42972 -circuit(X0,X1) :-circuit863,44108 -circuit(X0,X1) :-circuit863,44108 -circuit(X0,X1) :-circuit863,44108 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -min(X0,X1,X2,X3) :-min991,53047 -min(X0,X1,X2,X3) :-min991,53047 -min(X0,X1,X2,X3) :-min991,53047 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -count(X0,X1,X2,X3) :-count1025,54834 -count(X0,X1,X2,X3) :-count1025,54834 -count(X0,X1,X2,X3) :-count1025,54834 -sqrt(X0,X1,X2) :-sqrt1048,56116 -sqrt(X0,X1,X2) :-sqrt1048,56116 -sqrt(X0,X1,X2) :-sqrt1048,56116 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -abs(X0,X1,X2,X3) :-abs1221,68795 -abs(X0,X1,X2,X3) :-abs1221,68795 -abs(X0,X1,X2,X3) :-abs1221,68795 -convex(X0,X1) :-convex1232,69308 -convex(X0,X1) :-convex1232,69308 -convex(X0,X1) :-convex1232,69308 -div(X0,X1,X2,X3) :-div1239,69573 -div(X0,X1,X2,X3) :-div1239,69573 -div(X0,X1,X2,X3) :-div1239,69573 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -max(X0,X1,X2,X3,X4) :-max1344,76497 -max(X0,X1,X2,X3,X4) :-max1344,76497 -max(X0,X1,X2,X3,X4) :-max1344,76497 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -unary(X0,X1,X2,X3) :-unary1378,78578 -unary(X0,X1,X2,X3) :-unary1378,78578 -unary(X0,X1,X2,X3) :-unary1378,78578 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -dom(X0,X1,X2,X3) :-dom1437,81939 -dom(X0,X1,X2,X3) :-dom1437,81939 -dom(X0,X1,X2,X3) :-dom1437,81939 -abs(X0,X1,X2) :-abs1478,84274 -abs(X0,X1,X2) :-abs1478,84274 -abs(X0,X1,X2) :-abs1478,84274 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -rel(X0,X1,X2) :-rel1508,85851 -rel(X0,X1,X2) :-rel1508,85851 -rel(X0,X1,X2) :-rel1508,85851 -path(X0,X1,X2,X3) :-path1521,86455 -path(X0,X1,X2,X3) :-path1521,86455 -path(X0,X1,X2,X3) :-path1521,86455 -branch(X0,X1,X2,X3) :-branch1532,86975 -branch(X0,X1,X2,X3) :-branch1532,86975 -branch(X0,X1,X2,X3) :-branch1532,86975 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -precede(X0,X1,X2,X3) :-precede1610,91487 -precede(X0,X1,X2,X3) :-precede1610,91487 -precede(X0,X1,X2,X3) :-precede1610,91487 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -distinct(X0,X1,X2) :-distinct1719,99033 -distinct(X0,X1,X2) :-distinct1719,99033 -distinct(X0,X1,X2) :-distinct1719,99033 -member(X0,X1,X2,X3,X4) :-member1732,99669 -member(X0,X1,X2,X3,X4) :-member1732,99669 -member(X0,X1,X2,X3,X4) :-member1732,99669 -mod(X0,X1,X2,X3) :-mod1753,100877 -mod(X0,X1,X2,X3) :-mod1753,100877 -mod(X0,X1,X2,X3) :-mod1753,100877 -sqr(X0,X1,X2) :-sqr1764,101387 -sqr(X0,X1,X2) :-sqr1764,101387 -sqr(X0,X1,X2) :-sqr1764,101387 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -sorted(X0,X1,X2) :-sorted1848,106577 -sorted(X0,X1,X2) :-sorted1848,106577 -sorted(X0,X1,X2) :-sorted1848,106577 -circuit(X0,X1,X2) :-circuit1857,106975 -circuit(X0,X1,X2) :-circuit1857,106975 -circuit(X0,X1,X2) :-circuit1857,106975 -channel(X0,X1,X2) :-channel1870,107598 -channel(X0,X1,X2) :-channel1870,107598 -channel(X0,X1,X2) :-channel1870,107598 -count(X0,X1,X2,X3,X4) :-count1895,108952 -count(X0,X1,X2,X3,X4) :-count1895,108952 -count(X0,X1,X2,X3,X4) :-count1895,108952 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -div(X0,X1,X2,X3,X4) :-div2138,126464 -div(X0,X1,X2,X3,X4) :-div2138,126464 -div(X0,X1,X2,X3,X4) :-div2138,126464 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4) :-element2292,136419 -element(X0,X1,X2,X3,X4) :-element2292,136419 -element(X0,X1,X2,X3,X4) :-element2292,136419 -sequence(X0,X1,X2) :-sequence2363,141359 -sequence(X0,X1,X2) :-sequence2363,141359 -sequence(X0,X1,X2) :-sequence2363,141359 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -precede(X0,X1,X2) :-precede2389,142808 -precede(X0,X1,X2) :-precede2389,142808 -precede(X0,X1,X2) :-precede2389,142808 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -min(X0,X1,X2) :-min2470,148044 -min(X0,X1,X2) :-min2470,148044 -min(X0,X1,X2) :-min2470,148044 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -unshare(X0,X1,X2) :-unshare2519,150690 -unshare(X0,X1,X2) :-unshare2519,150690 -unshare(X0,X1,X2) :-unshare2519,150690 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -member(X0,X1,X2) :-member2612,156238 -member(X0,X1,X2) :-member2612,156238 -member(X0,X1,X2) :-member2612,156238 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -notMin(X0,X1,X2) :-notMin2680,160690 -notMin(X0,X1,X2) :-notMin2680,160690 -notMin(X0,X1,X2) :-notMin2680,160690 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -branch(X0,X1,X2) :-branch2746,165422 -branch(X0,X1,X2) :-branch2746,165422 -branch(X0,X1,X2) :-branch2746,165422 -dom(X0,X1,X2) :-dom2763,166280 -dom(X0,X1,X2) :-dom2763,166280 -dom(X0,X1,X2) :-dom2763,166280 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -rel(X0,X1,X2,X3) :-rel2891,174326 -rel(X0,X1,X2,X3) :-rel2891,174326 -rel(X0,X1,X2,X3) :-rel2891,174326 -min(X0,X1,X2,X3,X4) :-min2972,179781 -min(X0,X1,X2,X3,X4) :-min2972,179781 -min(X0,X1,X2,X3,X4) :-min2972,179781 -count(X0,X1,X2) :-count2985,180445 -count(X0,X1,X2) :-count2985,180445 -count(X0,X1,X2) :-count2985,180445 - -packages/gecode/3.7.3/gecode_yap_auto_generated.yap,50704 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_EQ').is_IntRelType_19,883 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_NQ').is_IntRelType_20,909 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LQ').is_IntRelType_21,935 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_LE').is_IntRelType_22,961 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GQ').is_IntRelType_23,987 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_GR').is_IntRelType_24,1013 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_26,1040 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_27,1075 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_28,1110 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_29,1145 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_30,1180 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_31,1215 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType33,1251 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType34,1305 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_AND').is_BoolOpType_36,1346 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_OR').is_BoolOpType_37,1373 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_IMP').is_BoolOpType_38,1399 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_EQV').is_BoolOpType_39,1426 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_XOR').is_BoolOpType_40,1453 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_42,1481 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_43,1518 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_44,1553 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_45,1590 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_46,1627 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType48,1665 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType49,1719 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_VAL').is_IntConLevel_51,1760 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_BND').is_IntConLevel_52,1788 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DOM').is_IntConLevel_53,1816 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_DEF').is_IntConLevel_54,1844 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_56,1873 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_57,1911 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_58,1949 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_59,1987 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel61,2026 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel62,2082 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXP').is_TaskType_64,2125 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXS').is_TaskType_65,2150 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXE').is_TaskType_66,2175 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_68,2201 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_69,2236 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_70,2271 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType72,2307 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType73,2357 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_75,2394 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_76,2430 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_77,2468 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_79,2508 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_80,2554 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_81,2604 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind83,2657 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind84,2729 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_86,2788 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_87,2822 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_88,2855 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_89,2895 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_90,2935 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_91,2972 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_92,3009 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_93,3046 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_94,3083 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_95,3120 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_96,3157 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_97,3195 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_98,3233 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_99,3278 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_100,3323 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_101,3365 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_102,3407 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_103,3451 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_104,3495 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_105,3539 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_107,3584 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_108,3633 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_109,3680 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_110,3741 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_111,3802 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_112,3857 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_113,3912 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_114,3967 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_115,4022 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_116,4077 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_117,4132 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_118,4189 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_119,4246 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_120,4317 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_121,4388 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_122,4453 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_123,4518 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_124,4587 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_125,4656 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_126,4725 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch128,4795 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch129,4853 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_131,4898 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_132,4931 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_133,4964 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_134,4997 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_135,5030 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_136,5069 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_137,5108 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_138,5147 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_139,5186 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_140,5222 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_142,5259 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_143,5306 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_144,5353 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_145,5400 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_146,5447 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_147,5506 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_148,5565 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_149,5624 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_150,5683 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_151,5736 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch153,5790 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch154,5848 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_156,5893 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_157,5926 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_158,5959 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_159,5992 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_161,6026 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_162,6076 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_163,6126 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_164,6176 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign166,6227 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign167,6279 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_EQ').is_SetRelType_169,6318 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_NQ').is_SetRelType_170,6344 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUB').is_SetRelType_171,6370 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_SUP').is_SetRelType_172,6397 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_DISJ').is_SetRelType_173,6424 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_CMPL').is_SetRelType_174,6452 -is_SetRelType_('SRT_LQ').is_SetRelType_175,6480 -is_SetRelType_('SRT_LQ').is_SetRelType_175,6480 -is_SetRelType_('SRT_LE').is_SetRelType_176,6506 -is_SetRelType_('SRT_LE').is_SetRelType_176,6506 -is_SetRelType_('SRT_GQ').is_SetRelType_177,6532 -is_SetRelType_('SRT_GQ').is_SetRelType_177,6532 -is_SetRelType_('SRT_GR').is_SetRelType_178,6558 -is_SetRelType_('SRT_GR').is_SetRelType_178,6558 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_180,6585 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_180,6585 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_181,6620 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_181,6620 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_182,6655 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_182,6655 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_183,6692 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_183,6692 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_184,6729 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_184,6729 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_185,6768 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_185,6768 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_186,6807 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_186,6807 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_187,6842 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_187,6842 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_188,6877 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_188,6877 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_189,6912 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_189,6912 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType191,6948 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType192,7002 -is_SetOpType_('SOT_UNION').is_SetOpType_194,7043 -is_SetOpType_('SOT_UNION').is_SetOpType_194,7043 -is_SetOpType_('SOT_DUNION').is_SetOpType_195,7071 -is_SetOpType_('SOT_DUNION').is_SetOpType_195,7071 -is_SetOpType_('SOT_INTER').is_SetOpType_196,7100 -is_SetOpType_('SOT_INTER').is_SetOpType_196,7100 -is_SetOpType_('SOT_MINUS').is_SetOpType_197,7128 -is_SetOpType_('SOT_MINUS').is_SetOpType_197,7128 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_199,7157 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_199,7157 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_200,7197 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_200,7197 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_201,7239 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_201,7239 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_202,7279 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_202,7279 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType204,7320 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType205,7372 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_207,7411 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_207,7411 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_208,7445 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_208,7445 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_209,7478 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_209,7478 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_210,7518 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_210,7518 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_211,7558 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_211,7558 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_212,7595 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_212,7595 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_213,7632 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_213,7632 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_214,7669 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_214,7669 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_215,7706 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_215,7706 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_216,7743 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_216,7743 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_217,7780 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_217,7780 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_218,7818 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_218,7818 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_219,7856 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_219,7856 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_220,7901 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_220,7901 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_221,7946 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_221,7946 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_222,7988 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_222,7988 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_224,8031 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_224,8031 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_225,8080 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_225,8080 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_226,8127 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_226,8127 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_227,8188 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_227,8188 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_228,8249 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_228,8249 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_229,8304 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_229,8304 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_230,8359 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_230,8359 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_231,8414 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_231,8414 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_232,8469 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_232,8469 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_233,8524 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_233,8524 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_234,8579 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_234,8579 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_235,8636 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_235,8636 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_236,8693 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_236,8693 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_237,8764 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_237,8764 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_238,8835 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_238,8835 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_239,8900 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_239,8900 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch241,8966 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch242,9024 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_244,9069 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_244,9069 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_245,9106 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_245,9106 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_246,9143 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_246,9143 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_247,9180 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_247,9180 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_248,9217 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_248,9217 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_249,9254 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_249,9254 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_250,9291 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_250,9291 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_251,9328 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_251,9328 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_253,9366 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_253,9366 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_254,9421 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_254,9421 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_255,9476 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_255,9476 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_256,9531 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_256,9531 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_257,9586 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_257,9586 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_258,9641 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_258,9641 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_259,9696 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_259,9696 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_260,9751 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_260,9751 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch262,9807 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch263,9865 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_265,9910 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_265,9910 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_266,9947 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_266,9947 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_267,9984 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_267,9984 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_268,10021 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_268,10021 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_269,10058 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_269,10058 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_270,10095 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_270,10095 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_271,10132 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_271,10132 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_272,10169 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_272,10169 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_274,10207 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_274,10207 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_275,10265 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_275,10265 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_276,10323 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_276,10323 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_277,10381 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_277,10381 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_278,10439 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_278,10439 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_279,10497 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_279,10497 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_280,10555 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_280,10555 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_281,10613 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_281,10613 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign283,10672 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign284,10724 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -unary(X0,X1,X2,X3,X4,X5) :-unary286,10763 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -nvalues(X0,X1,X2,X3,X4) :-nvalues311,12310 -max(X0,X1,X2,X3) :-max340,14082 -max(X0,X1,X2,X3) :-max340,14082 -max(X0,X1,X2,X3) :-max340,14082 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -dom(X0,X1,X2,X3,X4,X5) :-dom363,15318 -convex(X0,X1,X2) :-convex388,16795 -convex(X0,X1,X2) :-convex388,16795 -convex(X0,X1,X2) :-convex388,16795 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap397,17184 -assign(X0,X1,X2) :-assign410,17895 -assign(X0,X1,X2) :-assign410,17895 -assign(X0,X1,X2) :-assign410,17895 -element(X0,X1,X2,X3) :-element439,19555 -element(X0,X1,X2,X3) :-element439,19555 -element(X0,X1,X2,X3) :-element439,19555 -sequence(X0,X1) :-sequence482,22228 -sequence(X0,X1) :-sequence482,22228 -sequence(X0,X1) :-sequence482,22228 -notMax(X0,X1,X2) :-notMax489,22506 -notMax(X0,X1,X2) :-notMax489,22506 -notMax(X0,X1,X2) :-notMax489,22506 -unary(X0,X1,X2) :-unary498,22896 -unary(X0,X1,X2) :-unary498,22896 -unary(X0,X1,X2) :-unary498,22896 -circuit(X0,X1,X2,X3) :-circuit507,23286 -circuit(X0,X1,X2,X3) :-circuit507,23286 -circuit(X0,X1,X2,X3) :-circuit507,23286 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -dom(X0,X1,X2,X3,X4) :-dom524,24187 -channel(X0,X1,X2,X3) :-channel571,27070 -channel(X0,X1,X2,X3) :-channel571,27070 -channel(X0,X1,X2,X3) :-channel571,27070 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap600,28773 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -element(X0,X1,X2,X3,X4,X5,X6) :-element621,30221 -max(X0,X1,X2) :-max688,35141 -max(X0,X1,X2) :-max688,35141 -max(X0,X1,X2) :-max688,35141 -unshare(X0,X1) :-unshare701,35732 -unshare(X0,X1) :-unshare701,35732 -unshare(X0,X1) :-unshare701,35732 -path(X0,X1,X2,X3,X4) :-path710,36107 -path(X0,X1,X2,X3,X4) :-path710,36107 -path(X0,X1,X2,X3,X4) :-path710,36107 -mult(X0,X1,X2,X3) :-mult731,37281 -mult(X0,X1,X2,X3) :-mult731,37281 -mult(X0,X1,X2,X3) :-mult731,37281 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -clause(X0,X1,X2,X3,X4,X5) :-clause742,37797 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -precede(X0,X1,X2,X3,X4) :-precede761,38947 -distinct(X0,X1) :-distinct774,39637 -distinct(X0,X1) :-distinct774,39637 -distinct(X0,X1) :-distinct774,39637 -member(X0,X1,X2,X3) :-member781,39915 -member(X0,X1,X2,X3) :-member781,39915 -member(X0,X1,X2,X3) :-member781,39915 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -mod(X0,X1,X2,X3,X4) :-mod802,41062 -cardinality(X0,X1,X2) :-cardinality815,41726 -cardinality(X0,X1,X2) :-cardinality815,41726 -cardinality(X0,X1,X2) :-cardinality815,41726 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -atmostOne(X0,X1,X2) :-atmostOne824,42140 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -channelSorted(X0,X1,X2) :-channelSorted833,42544 -linear(X0,X1,X2,X3) :-linear842,42972 -linear(X0,X1,X2,X3) :-linear842,42972 -linear(X0,X1,X2,X3) :-linear842,42972 -circuit(X0,X1) :-circuit863,44108 -circuit(X0,X1) :-circuit863,44108 -circuit(X0,X1) :-circuit863,44108 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -rel(X0,X1,X2,X3,X4) :-rel870,44381 -min(X0,X1,X2,X3) :-min991,53047 -min(X0,X1,X2,X3) :-min991,53047 -min(X0,X1,X2,X3) :-min991,53047 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -cardinality(X0,X1,X2,X3) :-cardinality1014,54283 -count(X0,X1,X2,X3) :-count1025,54834 -count(X0,X1,X2,X3) :-count1025,54834 -count(X0,X1,X2,X3) :-count1025,54834 -sqrt(X0,X1,X2) :-sqrt1048,56116 -sqrt(X0,X1,X2) :-sqrt1048,56116 -sqrt(X0,X1,X2) :-sqrt1048,56116 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1057,56496 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -nvalues(X0,X1,X2,X3) :-nvalues1150,64368 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -binpacking(X0,X1,X2,X3) :-binpacking1171,65515 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1182,66075 -abs(X0,X1,X2,X3) :-abs1221,68795 -abs(X0,X1,X2,X3) :-abs1221,68795 -abs(X0,X1,X2,X3) :-abs1221,68795 -convex(X0,X1) :-convex1232,69308 -convex(X0,X1) :-convex1232,69308 -convex(X0,X1) :-convex1232,69308 -div(X0,X1,X2,X3) :-div1239,69573 -div(X0,X1,X2,X3) :-div1239,69573 -div(X0,X1,X2,X3) :-div1239,69573 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,70083 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -weights(X0,X1,X2,X3,X4) :-weights1331,75808 -max(X0,X1,X2,X3,X4) :-max1344,76497 -max(X0,X1,X2,X3,X4) :-max1344,76497 -max(X0,X1,X2,X3,X4) :-max1344,76497 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1357,77161 -unary(X0,X1,X2,X3) :-unary1378,78578 -unary(X0,X1,X2,X3) :-unary1378,78578 -unary(X0,X1,X2,X3) :-unary1378,78578 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -sorted(X0,X1,X2,X3,X4) :-sorted1401,79872 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -circuit(X0,X1,X2,X3,X4) :-circuit1414,80569 -dom(X0,X1,X2,X3) :-dom1437,81939 -dom(X0,X1,X2,X3) :-dom1437,81939 -dom(X0,X1,X2,X3) :-dom1437,81939 -abs(X0,X1,X2) :-abs1478,84274 -abs(X0,X1,X2) :-abs1478,84274 -abs(X0,X1,X2) :-abs1478,84274 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -channel(X0,X1,X2,X3,X4) :-channel1487,84647 -rel(X0,X1,X2) :-rel1508,85851 -rel(X0,X1,X2) :-rel1508,85851 -rel(X0,X1,X2) :-rel1508,85851 -path(X0,X1,X2,X3) :-path1521,86455 -path(X0,X1,X2,X3) :-path1521,86455 -path(X0,X1,X2,X3) :-path1521,86455 -branch(X0,X1,X2,X3) :-branch1532,86975 -branch(X0,X1,X2,X3) :-branch1532,86975 -branch(X0,X1,X2,X3) :-branch1532,86975 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -mult(X0,X1,X2,X3,X4) :-mult1555,88283 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1568,88954 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -clause(X0,X1,X2,X3,X4) :-clause1595,90669 -precede(X0,X1,X2,X3) :-precede1610,91487 -precede(X0,X1,X2,X3) :-precede1610,91487 -precede(X0,X1,X2,X3) :-precede1610,91487 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -channel(X0,X1,X2,X3,X4,X5) :-channel1631,92639 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1646,93499 -distinct(X0,X1,X2) :-distinct1719,99033 -distinct(X0,X1,X2) :-distinct1719,99033 -distinct(X0,X1,X2) :-distinct1719,99033 -member(X0,X1,X2,X3,X4) :-member1732,99669 -member(X0,X1,X2,X3,X4) :-member1732,99669 -member(X0,X1,X2,X3,X4) :-member1732,99669 -mod(X0,X1,X2,X3) :-mod1753,100877 -mod(X0,X1,X2,X3) :-mod1753,100877 -mod(X0,X1,X2,X3) :-mod1753,100877 -sqr(X0,X1,X2) :-sqr1764,101387 -sqr(X0,X1,X2) :-sqr1764,101387 -sqr(X0,X1,X2) :-sqr1764,101387 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1773,101762 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -path(X0,X1,X2,X3,X4,X5,X6) :-path1802,103669 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1833,105726 -sorted(X0,X1,X2) :-sorted1848,106577 -sorted(X0,X1,X2) :-sorted1848,106577 -sorted(X0,X1,X2) :-sorted1848,106577 -circuit(X0,X1,X2) :-circuit1857,106975 -circuit(X0,X1,X2) :-circuit1857,106975 -circuit(X0,X1,X2) :-circuit1857,106975 -channel(X0,X1,X2) :-channel1870,107598 -channel(X0,X1,X2) :-channel1870,107598 -channel(X0,X1,X2) :-channel1870,107598 -count(X0,X1,X2,X3,X4) :-count1895,108952 -count(X0,X1,X2,X3,X4) :-count1895,108952 -count(X0,X1,X2,X3,X4) :-count1895,108952 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1950,112675 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -binpacking(X0,X1,X2,X3,X4) :-binpacking2027,118830 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -linear(X0,X1,X2,X3,X4,X5) :-linear2040,119551 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2111,124630 -div(X0,X1,X2,X3,X4) :-div2138,126464 -div(X0,X1,X2,X3,X4) :-div2138,126464 -div(X0,X1,X2,X3,X4) :-div2138,126464 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -sqr(X0,X1,X2,X3) :-sqr2151,127128 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2162,127643 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -unary(X0,X1,X2,X3,X4) :-unary2197,130095 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -sorted(X0,X1,X2,X3) :-sorted2228,131995 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2241,132657 -element(X0,X1,X2,X3,X4) :-element2292,136419 -element(X0,X1,X2,X3,X4) :-element2292,136419 -element(X0,X1,X2,X3,X4) :-element2292,136419 -sequence(X0,X1,X2) :-sequence2363,141359 -sequence(X0,X1,X2) :-sequence2363,141359 -sequence(X0,X1,X2) :-sequence2363,141359 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2372,141763 -precede(X0,X1,X2) :-precede2389,142808 -precede(X0,X1,X2) :-precede2389,142808 -precede(X0,X1,X2) :-precede2389,142808 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2402,143433 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -distinct(X0,X1,X2,X3) :-distinct2459,147494 -min(X0,X1,X2) :-min2470,148044 -min(X0,X1,X2) :-min2470,148044 -min(X0,X1,X2) :-min2470,148044 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sqrt(X0,X1,X2,X3) :-sqrt2483,148635 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2494,149156 -unshare(X0,X1,X2) :-unshare2519,150690 -unshare(X0,X1,X2) :-unshare2519,150690 -unshare(X0,X1,X2) :-unshare2519,150690 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -path(X0,X1,X2,X3,X4,X5) :-path2532,151324 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -divmod(X0,X1,X2,X3,X4) :-divmod2557,152826 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2570,153506 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -cumulative(X0,X1,X2,X3,X4) :-cumulative2591,155001 -member(X0,X1,X2) :-member2612,156238 -member(X0,X1,X2) :-member2612,156238 -member(X0,X1,X2) :-member2612,156238 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -count(X0,X1,X2,X3,X4,X5) :-count2625,156856 -notMin(X0,X1,X2) :-notMin2680,160690 -notMin(X0,X1,X2) :-notMin2680,160690 -notMin(X0,X1,X2) :-notMin2680,160690 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2689,161080 -branch(X0,X1,X2) :-branch2746,165422 -branch(X0,X1,X2) :-branch2746,165422 -branch(X0,X1,X2) :-branch2746,165422 -dom(X0,X1,X2) :-dom2763,166280 -dom(X0,X1,X2) :-dom2763,166280 -dom(X0,X1,X2) :-dom2763,166280 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -linear(X0,X1,X2,X3,X4) :-linear2780,167079 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2835,170666 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -element(X0,X1,X2,X3,X4,X5) :-element2852,171698 -rel(X0,X1,X2,X3) :-rel2891,174326 -rel(X0,X1,X2,X3) :-rel2891,174326 -rel(X0,X1,X2,X3) :-rel2891,174326 -min(X0,X1,X2,X3,X4) :-min2972,179781 -min(X0,X1,X2,X3,X4) :-min2972,179781 -min(X0,X1,X2,X3,X4) :-min2972,179781 -count(X0,X1,X2) :-count2985,180445 -count(X0,X1,X2) :-count2985,180445 -count(X0,X1,X2) :-count2985,180445 - -packages/gecode/4.0.0/gecode_yap_auto_generated.yap,52025 -is_ReifyMode_('RM_EQV').is_ReifyMode_19,883 -is_ReifyMode_('RM_EQV').is_ReifyMode_19,883 -is_ReifyMode_('RM_IMP').is_ReifyMode_20,908 -is_ReifyMode_('RM_IMP').is_ReifyMode_20,908 -is_ReifyMode_('RM_PMI').is_ReifyMode_21,933 -is_ReifyMode_('RM_PMI').is_ReifyMode_21,933 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_23,959 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_23,959 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_24,993 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_24,993 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_25,1027 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_25,1027 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode27,1062 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode27,1062 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode27,1062 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode27,1062 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode27,1062 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode28,1114 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode28,1114 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode28,1114 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode28,1114 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode28,1114 -is_IntRelType_('IRT_EQ').is_IntRelType_30,1153 -is_IntRelType_('IRT_EQ').is_IntRelType_30,1153 -is_IntRelType_('IRT_NQ').is_IntRelType_31,1179 -is_IntRelType_('IRT_NQ').is_IntRelType_31,1179 -is_IntRelType_('IRT_LQ').is_IntRelType_32,1205 -is_IntRelType_('IRT_LQ').is_IntRelType_32,1205 -is_IntRelType_('IRT_LE').is_IntRelType_33,1231 -is_IntRelType_('IRT_LE').is_IntRelType_33,1231 -is_IntRelType_('IRT_GQ').is_IntRelType_34,1257 -is_IntRelType_('IRT_GQ').is_IntRelType_34,1257 -is_IntRelType_('IRT_GR').is_IntRelType_35,1283 -is_IntRelType_('IRT_GR').is_IntRelType_35,1283 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_37,1310 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_37,1310 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_38,1345 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_38,1345 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_39,1380 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_39,1380 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_40,1415 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_40,1415 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_41,1450 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_41,1450 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_42,1485 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_42,1485 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType44,1521 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType44,1521 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType44,1521 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType44,1521 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType44,1521 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType45,1575 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType45,1575 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType45,1575 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType45,1575 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType45,1575 -is_BoolOpType_('BOT_AND').is_BoolOpType_47,1616 -is_BoolOpType_('BOT_AND').is_BoolOpType_47,1616 -is_BoolOpType_('BOT_OR').is_BoolOpType_48,1643 -is_BoolOpType_('BOT_OR').is_BoolOpType_48,1643 -is_BoolOpType_('BOT_IMP').is_BoolOpType_49,1669 -is_BoolOpType_('BOT_IMP').is_BoolOpType_49,1669 -is_BoolOpType_('BOT_EQV').is_BoolOpType_50,1696 -is_BoolOpType_('BOT_EQV').is_BoolOpType_50,1696 -is_BoolOpType_('BOT_XOR').is_BoolOpType_51,1723 -is_BoolOpType_('BOT_XOR').is_BoolOpType_51,1723 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_53,1751 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_53,1751 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_54,1788 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_54,1788 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_55,1823 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_55,1823 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_56,1860 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_56,1860 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_57,1897 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_57,1897 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType59,1935 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType59,1935 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType59,1935 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType59,1935 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType59,1935 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType60,1989 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType60,1989 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType60,1989 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType60,1989 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType60,1989 -is_IntConLevel_('ICL_VAL').is_IntConLevel_62,2030 -is_IntConLevel_('ICL_VAL').is_IntConLevel_62,2030 -is_IntConLevel_('ICL_BND').is_IntConLevel_63,2058 -is_IntConLevel_('ICL_BND').is_IntConLevel_63,2058 -is_IntConLevel_('ICL_DOM').is_IntConLevel_64,2086 -is_IntConLevel_('ICL_DOM').is_IntConLevel_64,2086 -is_IntConLevel_('ICL_DEF').is_IntConLevel_65,2114 -is_IntConLevel_('ICL_DEF').is_IntConLevel_65,2114 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_67,2143 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_67,2143 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_68,2181 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_68,2181 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_69,2219 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_69,2219 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_70,2257 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_70,2257 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel72,2296 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel72,2296 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel72,2296 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel72,2296 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel72,2296 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel73,2352 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel73,2352 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel73,2352 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel73,2352 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel73,2352 -is_TaskType_('TT_FIXP').is_TaskType_75,2395 -is_TaskType_('TT_FIXP').is_TaskType_75,2395 -is_TaskType_('TT_FIXS').is_TaskType_76,2420 -is_TaskType_('TT_FIXS').is_TaskType_76,2420 -is_TaskType_('TT_FIXE').is_TaskType_77,2445 -is_TaskType_('TT_FIXE').is_TaskType_77,2445 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_79,2471 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_79,2471 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_80,2506 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_80,2506 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_81,2541 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_81,2541 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType83,2577 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType83,2577 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType83,2577 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType83,2577 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType83,2577 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType84,2627 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType84,2627 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType84,2627 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType84,2627 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType84,2627 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_86,2664 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_86,2664 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_87,2700 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_87,2700 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_88,2738 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_88,2738 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_90,2778 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_90,2778 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_91,2824 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_91,2824 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_92,2874 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_92,2874 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind94,2927 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind94,2927 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind94,2927 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind94,2927 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind94,2927 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind95,2999 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind95,2999 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind95,2999 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind95,2999 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind95,2999 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_97,3058 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_97,3058 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_98,3092 -is_IntVarBranch_('INT_VAR_RND').is_IntVarBranch_98,3092 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_99,3125 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_99,3125 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_100,3165 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_100,3165 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_101,3205 -is_IntVarBranch_('INT_VAR_AFC_MIN').is_IntVarBranch_101,3205 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_102,3242 -is_IntVarBranch_('INT_VAR_AFC_MAX').is_IntVarBranch_102,3242 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_103,3279 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_103,3279 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_104,3316 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_104,3316 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_105,3353 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_105,3353 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_106,3390 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_106,3390 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_107,3427 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_107,3427 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_108,3465 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_108,3465 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_109,3503 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_109,3503 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_110,3548 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_110,3548 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_111,3593 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_111,3593 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_112,3635 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_112,3635 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_113,3677 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_113,3677 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_114,3721 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_114,3721 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_115,3765 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_115,3765 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_116,3809 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_116,3809 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_118,3854 -is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').is_IntVarBranch_118,3854 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_119,3903 -is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').is_IntVarBranch_119,3903 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_120,3950 -is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').is_IntVarBranch_120,3950 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_121,4011 -is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').is_IntVarBranch_121,4011 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_122,4072 -is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').is_IntVarBranch_122,4072 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_123,4127 -is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').is_IntVarBranch_123,4127 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_124,4182 -is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').is_IntVarBranch_124,4182 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_125,4237 -is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').is_IntVarBranch_125,4237 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_126,4292 -is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').is_IntVarBranch_126,4292 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_127,4347 -is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').is_IntVarBranch_127,4347 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_128,4402 -is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').is_IntVarBranch_128,4402 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_129,4459 -is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').is_IntVarBranch_129,4459 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_130,4516 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').is_IntVarBranch_130,4516 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_131,4587 -is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').is_IntVarBranch_131,4587 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_132,4658 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').is_IntVarBranch_132,4658 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_133,4723 -is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').is_IntVarBranch_133,4723 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_134,4788 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_134,4788 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_135,4857 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_135,4857 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_136,4926 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_136,4926 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_137,4995 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_137,4995 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch139,5065 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch139,5065 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch139,5065 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch139,5065 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch139,5065 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch140,5123 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch140,5123 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch140,5123 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch140,5123 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch140,5123 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_142,5168 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_142,5168 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_143,5201 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_143,5201 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_144,5234 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_144,5234 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_145,5267 -is_IntValBranch_('INT_VAL_RND').is_IntValBranch_145,5267 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_146,5300 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_146,5300 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_147,5339 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_147,5339 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_148,5378 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_148,5378 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_149,5417 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_149,5417 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_150,5456 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_150,5456 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_151,5492 -is_IntValBranch_('INT_VALUES_MAX').is_IntValBranch_151,5492 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_153,5529 -is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').is_IntValBranch_153,5529 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_154,5576 -is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').is_IntValBranch_154,5576 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_155,5623 -is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').is_IntValBranch_155,5623 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_156,5670 -is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').is_IntValBranch_156,5670 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_157,5717 -is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').is_IntValBranch_157,5717 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_158,5776 -is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').is_IntValBranch_158,5776 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_159,5835 -is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').is_IntValBranch_159,5835 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_160,5894 -is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').is_IntValBranch_160,5894 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_161,5953 -is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').is_IntValBranch_161,5953 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_162,6006 -is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').is_IntValBranch_162,6006 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch164,6060 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch164,6060 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch164,6060 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch164,6060 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch164,6060 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch165,6118 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch165,6118 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch165,6118 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch165,6118 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch165,6118 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_167,6163 -is_IntAssign_('INT_ASSIGN_MIN').is_IntAssign_167,6163 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_168,6196 -is_IntAssign_('INT_ASSIGN_MED').is_IntAssign_168,6196 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_169,6229 -is_IntAssign_('INT_ASSIGN_MAX').is_IntAssign_169,6229 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_170,6262 -is_IntAssign_('INT_ASSIGN_RND').is_IntAssign_170,6262 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_172,6296 -is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').is_IntAssign_172,6296 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_173,6346 -is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').is_IntAssign_173,6346 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_174,6396 -is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').is_IntAssign_174,6396 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_175,6446 -is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').is_IntAssign_175,6446 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign177,6497 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign177,6497 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign177,6497 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign177,6497 -is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).is_IntAssign177,6497 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign178,6549 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign178,6549 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign178,6549 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign178,6549 -is_IntAssign(X) :- is_IntAssign(X,_).is_IntAssign178,6549 -is_SetRelType_('SRT_EQ').is_SetRelType_180,6588 -is_SetRelType_('SRT_EQ').is_SetRelType_180,6588 -is_SetRelType_('SRT_NQ').is_SetRelType_181,6614 -is_SetRelType_('SRT_NQ').is_SetRelType_181,6614 -is_SetRelType_('SRT_SUB').is_SetRelType_182,6640 -is_SetRelType_('SRT_SUB').is_SetRelType_182,6640 -is_SetRelType_('SRT_SUP').is_SetRelType_183,6667 -is_SetRelType_('SRT_SUP').is_SetRelType_183,6667 -is_SetRelType_('SRT_DISJ').is_SetRelType_184,6694 -is_SetRelType_('SRT_DISJ').is_SetRelType_184,6694 -is_SetRelType_('SRT_CMPL').is_SetRelType_185,6722 -is_SetRelType_('SRT_CMPL').is_SetRelType_185,6722 -is_SetRelType_('SRT_LQ').is_SetRelType_186,6750 -is_SetRelType_('SRT_LQ').is_SetRelType_186,6750 -is_SetRelType_('SRT_LE').is_SetRelType_187,6776 -is_SetRelType_('SRT_LE').is_SetRelType_187,6776 -is_SetRelType_('SRT_GQ').is_SetRelType_188,6802 -is_SetRelType_('SRT_GQ').is_SetRelType_188,6802 -is_SetRelType_('SRT_GR').is_SetRelType_189,6828 -is_SetRelType_('SRT_GR').is_SetRelType_189,6828 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_191,6855 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_191,6855 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_192,6890 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_192,6890 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_193,6925 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_193,6925 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_194,6962 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_194,6962 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_195,6999 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_195,6999 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_196,7038 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_196,7038 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_197,7077 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_197,7077 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_198,7112 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_198,7112 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_199,7147 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_199,7147 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_200,7182 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_200,7182 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType202,7218 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType202,7218 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType202,7218 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType202,7218 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType202,7218 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType203,7272 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType203,7272 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType203,7272 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType203,7272 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType203,7272 -is_SetOpType_('SOT_UNION').is_SetOpType_205,7313 -is_SetOpType_('SOT_UNION').is_SetOpType_205,7313 -is_SetOpType_('SOT_DUNION').is_SetOpType_206,7341 -is_SetOpType_('SOT_DUNION').is_SetOpType_206,7341 -is_SetOpType_('SOT_INTER').is_SetOpType_207,7370 -is_SetOpType_('SOT_INTER').is_SetOpType_207,7370 -is_SetOpType_('SOT_MINUS').is_SetOpType_208,7398 -is_SetOpType_('SOT_MINUS').is_SetOpType_208,7398 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_210,7427 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_210,7427 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_211,7467 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_211,7467 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_212,7509 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_212,7509 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_213,7549 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_213,7549 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType215,7590 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType215,7590 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType215,7590 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType215,7590 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType215,7590 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType216,7642 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType216,7642 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType216,7642 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType216,7642 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType216,7642 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_218,7681 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_218,7681 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_219,7715 -is_SetVarBranch_('SET_VAR_RND').is_SetVarBranch_219,7715 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_220,7748 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_220,7748 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_221,7788 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_221,7788 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_222,7828 -is_SetVarBranch_('SET_VAR_AFC_MIN').is_SetVarBranch_222,7828 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_223,7865 -is_SetVarBranch_('SET_VAR_AFC_MAX').is_SetVarBranch_223,7865 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_224,7902 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_224,7902 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_225,7939 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_225,7939 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_226,7976 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_226,7976 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_227,8013 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_227,8013 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_228,8050 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_228,8050 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_229,8088 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_229,8088 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_230,8126 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_230,8126 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_231,8171 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_231,8171 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_232,8216 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_232,8216 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_233,8258 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_233,8258 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_235,8301 -is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').is_SetVarBranch_235,8301 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_236,8350 -is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').is_SetVarBranch_236,8350 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_237,8397 -is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').is_SetVarBranch_237,8397 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_238,8458 -is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').is_SetVarBranch_238,8458 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_239,8519 -is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').is_SetVarBranch_239,8519 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_240,8574 -is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').is_SetVarBranch_240,8574 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_241,8629 -is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').is_SetVarBranch_241,8629 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_242,8684 -is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').is_SetVarBranch_242,8684 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_243,8739 -is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').is_SetVarBranch_243,8739 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_244,8794 -is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').is_SetVarBranch_244,8794 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_245,8849 -is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').is_SetVarBranch_245,8849 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_246,8906 -is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').is_SetVarBranch_246,8906 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_247,8963 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').is_SetVarBranch_247,8963 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_248,9034 -is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').is_SetVarBranch_248,9034 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_249,9105 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').is_SetVarBranch_249,9105 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_250,9170 -is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').is_SetVarBranch_250,9170 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch252,9236 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch252,9236 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch252,9236 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch252,9236 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch252,9236 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch253,9294 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch253,9294 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch253,9294 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch253,9294 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch253,9294 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_255,9339 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_255,9339 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_256,9376 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_256,9376 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_257,9413 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_257,9413 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_258,9450 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_258,9450 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_259,9487 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_259,9487 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_260,9524 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_260,9524 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_261,9561 -is_SetValBranch_('SET_VAL_RND_INC').is_SetValBranch_261,9561 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_262,9598 -is_SetValBranch_('SET_VAL_RND_EXC').is_SetValBranch_262,9598 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_264,9636 -is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').is_SetValBranch_264,9636 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_265,9691 -is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').is_SetValBranch_265,9691 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_266,9746 -is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').is_SetValBranch_266,9746 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_267,9801 -is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').is_SetValBranch_267,9801 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_268,9856 -is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').is_SetValBranch_268,9856 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_269,9911 -is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').is_SetValBranch_269,9911 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_270,9966 -is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').is_SetValBranch_270,9966 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_271,10021 -is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').is_SetValBranch_271,10021 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch273,10077 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch273,10077 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch273,10077 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch273,10077 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch273,10077 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch274,10135 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch274,10135 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch274,10135 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch274,10135 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch274,10135 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_276,10180 -is_SetAssign_('SET_ASSIGN_MIN_INC').is_SetAssign_276,10180 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_277,10217 -is_SetAssign_('SET_ASSIGN_MIN_EXC').is_SetAssign_277,10217 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_278,10254 -is_SetAssign_('SET_ASSIGN_MED_INC').is_SetAssign_278,10254 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_279,10291 -is_SetAssign_('SET_ASSIGN_MED_EXC').is_SetAssign_279,10291 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_280,10328 -is_SetAssign_('SET_ASSIGN_MAX_INC').is_SetAssign_280,10328 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_281,10365 -is_SetAssign_('SET_ASSIGN_MAX_EXC').is_SetAssign_281,10365 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_282,10402 -is_SetAssign_('SET_ASSIGN_RND_INC').is_SetAssign_282,10402 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_283,10439 -is_SetAssign_('SET_ASSIGN_RND_EXC').is_SetAssign_283,10439 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_285,10477 -is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').is_SetAssign_285,10477 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_286,10535 -is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').is_SetAssign_286,10535 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_287,10593 -is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').is_SetAssign_287,10593 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_288,10651 -is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').is_SetAssign_288,10651 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_289,10709 -is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').is_SetAssign_289,10709 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_290,10767 -is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').is_SetAssign_290,10767 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_291,10825 -is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').is_SetAssign_291,10825 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_292,10883 -is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').is_SetAssign_292,10883 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign294,10942 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign294,10942 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign294,10942 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign294,10942 -is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).is_SetAssign294,10942 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign295,10994 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign295,10994 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign295,10994 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign295,10994 -is_SetAssign(X) :- is_SetAssign(X,_).is_SetAssign295,10994 -unary(X0,X1,X2,X3,X4,X5) :-unary297,11033 -unary(X0,X1,X2,X3,X4,X5) :-unary297,11033 -unary(X0,X1,X2,X3,X4,X5) :-unary297,11033 -nvalues(X0,X1,X2,X3,X4) :-nvalues322,12580 -nvalues(X0,X1,X2,X3,X4) :-nvalues322,12580 -nvalues(X0,X1,X2,X3,X4) :-nvalues322,12580 -max(X0,X1,X2,X3) :-max351,14352 -max(X0,X1,X2,X3) :-max351,14352 -max(X0,X1,X2,X3) :-max351,14352 -dom(X0,X1,X2,X3,X4,X5) :-dom374,15588 -dom(X0,X1,X2,X3,X4,X5) :-dom374,15588 -dom(X0,X1,X2,X3,X4,X5) :-dom374,15588 -convex(X0,X1,X2) :-convex399,17063 -convex(X0,X1,X2) :-convex399,17063 -convex(X0,X1,X2) :-convex399,17063 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap408,17452 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap408,17452 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap408,17452 -assign(X0,X1,X2) :-assign421,18163 -assign(X0,X1,X2) :-assign421,18163 -assign(X0,X1,X2) :-assign421,18163 -element(X0,X1,X2,X3) :-element450,19823 -element(X0,X1,X2,X3) :-element450,19823 -element(X0,X1,X2,X3) :-element450,19823 -sequence(X0,X1) :-sequence493,22496 -sequence(X0,X1) :-sequence493,22496 -sequence(X0,X1) :-sequence493,22496 -notMax(X0,X1,X2) :-notMax500,22774 -notMax(X0,X1,X2) :-notMax500,22774 -notMax(X0,X1,X2) :-notMax500,22774 -unary(X0,X1,X2) :-unary509,23164 -unary(X0,X1,X2) :-unary509,23164 -unary(X0,X1,X2) :-unary509,23164 -circuit(X0,X1,X2,X3) :-circuit518,23554 -circuit(X0,X1,X2,X3) :-circuit518,23554 -circuit(X0,X1,X2,X3) :-circuit518,23554 -dom(X0,X1,X2,X3,X4) :-dom535,24455 -dom(X0,X1,X2,X3,X4) :-dom535,24455 -dom(X0,X1,X2,X3,X4) :-dom535,24455 -channel(X0,X1,X2,X3) :-channel582,27332 -channel(X0,X1,X2,X3) :-channel582,27332 -channel(X0,X1,X2,X3) :-channel582,27332 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap611,29035 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap611,29035 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap611,29035 -element(X0,X1,X2,X3,X4,X5,X6) :-element632,30483 -element(X0,X1,X2,X3,X4,X5,X6) :-element632,30483 -element(X0,X1,X2,X3,X4,X5,X6) :-element632,30483 -max(X0,X1,X2) :-max699,35403 -max(X0,X1,X2) :-max699,35403 -max(X0,X1,X2) :-max699,35403 -unshare(X0,X1) :-unshare712,35994 -unshare(X0,X1) :-unshare712,35994 -unshare(X0,X1) :-unshare712,35994 -path(X0,X1,X2,X3,X4) :-path721,36369 -path(X0,X1,X2,X3,X4) :-path721,36369 -path(X0,X1,X2,X3,X4) :-path721,36369 -mult(X0,X1,X2,X3) :-mult742,37543 -mult(X0,X1,X2,X3) :-mult742,37543 -mult(X0,X1,X2,X3) :-mult742,37543 -clause(X0,X1,X2,X3,X4,X5) :-clause753,38059 -clause(X0,X1,X2,X3,X4,X5) :-clause753,38059 -clause(X0,X1,X2,X3,X4,X5) :-clause753,38059 -precede(X0,X1,X2,X3,X4) :-precede772,39209 -precede(X0,X1,X2,X3,X4) :-precede772,39209 -precede(X0,X1,X2,X3,X4) :-precede772,39209 -distinct(X0,X1) :-distinct785,39899 -distinct(X0,X1) :-distinct785,39899 -distinct(X0,X1) :-distinct785,39899 -member(X0,X1,X2,X3) :-member792,40177 -member(X0,X1,X2,X3) :-member792,40177 -member(X0,X1,X2,X3) :-member792,40177 -mod(X0,X1,X2,X3,X4) :-mod813,41320 -mod(X0,X1,X2,X3,X4) :-mod813,41320 -mod(X0,X1,X2,X3,X4) :-mod813,41320 -cardinality(X0,X1,X2) :-cardinality826,41984 -cardinality(X0,X1,X2) :-cardinality826,41984 -cardinality(X0,X1,X2) :-cardinality826,41984 -atmostOne(X0,X1,X2) :-atmostOne835,42398 -atmostOne(X0,X1,X2) :-atmostOne835,42398 -atmostOne(X0,X1,X2) :-atmostOne835,42398 -channelSorted(X0,X1,X2) :-channelSorted844,42802 -channelSorted(X0,X1,X2) :-channelSorted844,42802 -channelSorted(X0,X1,X2) :-channelSorted844,42802 -linear(X0,X1,X2,X3) :-linear853,43230 -linear(X0,X1,X2,X3) :-linear853,43230 -linear(X0,X1,X2,X3) :-linear853,43230 -circuit(X0,X1) :-circuit874,44366 -circuit(X0,X1) :-circuit874,44366 -circuit(X0,X1) :-circuit874,44366 -rel(X0,X1,X2,X3,X4) :-rel881,44639 -rel(X0,X1,X2,X3,X4) :-rel881,44639 -rel(X0,X1,X2,X3,X4) :-rel881,44639 -min(X0,X1,X2,X3) :-min1002,53297 -min(X0,X1,X2,X3) :-min1002,53297 -min(X0,X1,X2,X3) :-min1002,53297 -cardinality(X0,X1,X2,X3) :-cardinality1025,54533 -cardinality(X0,X1,X2,X3) :-cardinality1025,54533 -cardinality(X0,X1,X2,X3) :-cardinality1025,54533 -count(X0,X1,X2,X3) :-count1036,55084 -count(X0,X1,X2,X3) :-count1036,55084 -count(X0,X1,X2,X3) :-count1036,55084 -sqrt(X0,X1,X2) :-sqrt1059,56366 -sqrt(X0,X1,X2) :-sqrt1059,56366 -sqrt(X0,X1,X2) :-sqrt1059,56366 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1068,56746 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1068,56746 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1068,56746 -nvalues(X0,X1,X2,X3) :-nvalues1161,64618 -nvalues(X0,X1,X2,X3) :-nvalues1161,64618 -nvalues(X0,X1,X2,X3) :-nvalues1161,64618 -binpacking(X0,X1,X2,X3) :-binpacking1182,65765 -binpacking(X0,X1,X2,X3) :-binpacking1182,65765 -binpacking(X0,X1,X2,X3) :-binpacking1182,65765 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1193,66325 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1193,66325 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1193,66325 -abs(X0,X1,X2,X3) :-abs1232,69037 -abs(X0,X1,X2,X3) :-abs1232,69037 -abs(X0,X1,X2,X3) :-abs1232,69037 -convex(X0,X1) :-convex1243,69550 -convex(X0,X1) :-convex1243,69550 -convex(X0,X1) :-convex1243,69550 -div(X0,X1,X2,X3) :-div1250,69815 -div(X0,X1,X2,X3) :-div1250,69815 -div(X0,X1,X2,X3) :-div1250,69815 -rel(X0,X1,X2,X3,X4,X5) :-rel1261,70325 -rel(X0,X1,X2,X3,X4,X5) :-rel1261,70325 -rel(X0,X1,X2,X3,X4,X5) :-rel1261,70325 -weights(X0,X1,X2,X3,X4) :-weights1342,76042 -weights(X0,X1,X2,X3,X4) :-weights1342,76042 -weights(X0,X1,X2,X3,X4) :-weights1342,76042 -max(X0,X1,X2,X3,X4) :-max1355,76731 -max(X0,X1,X2,X3,X4) :-max1355,76731 -max(X0,X1,X2,X3,X4) :-max1355,76731 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1368,77395 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1368,77395 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1368,77395 -unary(X0,X1,X2,X3) :-unary1389,78812 -unary(X0,X1,X2,X3) :-unary1389,78812 -unary(X0,X1,X2,X3) :-unary1389,78812 -sorted(X0,X1,X2,X3,X4) :-sorted1412,80106 -sorted(X0,X1,X2,X3,X4) :-sorted1412,80106 -sorted(X0,X1,X2,X3,X4) :-sorted1412,80106 -circuit(X0,X1,X2,X3,X4) :-circuit1425,80803 -circuit(X0,X1,X2,X3,X4) :-circuit1425,80803 -circuit(X0,X1,X2,X3,X4) :-circuit1425,80803 -dom(X0,X1,X2,X3) :-dom1448,82173 -dom(X0,X1,X2,X3) :-dom1448,82173 -dom(X0,X1,X2,X3) :-dom1448,82173 -abs(X0,X1,X2) :-abs1489,84504 -abs(X0,X1,X2) :-abs1489,84504 -abs(X0,X1,X2) :-abs1489,84504 -channel(X0,X1,X2,X3,X4) :-channel1498,84877 -channel(X0,X1,X2,X3,X4) :-channel1498,84877 -channel(X0,X1,X2,X3,X4) :-channel1498,84877 -rel(X0,X1,X2) :-rel1519,86081 -rel(X0,X1,X2) :-rel1519,86081 -rel(X0,X1,X2) :-rel1519,86081 -path(X0,X1,X2,X3) :-path1532,86685 -path(X0,X1,X2,X3) :-path1532,86685 -path(X0,X1,X2,X3) :-path1532,86685 -branch(X0,X1,X2,X3) :-branch1543,87205 -branch(X0,X1,X2,X3) :-branch1543,87205 -branch(X0,X1,X2,X3) :-branch1543,87205 -mult(X0,X1,X2,X3,X4) :-mult1566,88513 -mult(X0,X1,X2,X3,X4) :-mult1566,88513 -mult(X0,X1,X2,X3,X4) :-mult1566,88513 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1579,89184 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1579,89184 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1579,89184 -clause(X0,X1,X2,X3,X4) :-clause1606,90899 -clause(X0,X1,X2,X3,X4) :-clause1606,90899 -clause(X0,X1,X2,X3,X4) :-clause1606,90899 -precede(X0,X1,X2,X3) :-precede1621,91717 -precede(X0,X1,X2,X3) :-precede1621,91717 -precede(X0,X1,X2,X3) :-precede1621,91717 -channel(X0,X1,X2,X3,X4,X5) :-channel1642,92869 -channel(X0,X1,X2,X3,X4,X5) :-channel1642,92869 -channel(X0,X1,X2,X3,X4,X5) :-channel1642,92869 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1657,93729 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1657,93729 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1657,93729 -distinct(X0,X1,X2) :-distinct1730,99263 -distinct(X0,X1,X2) :-distinct1730,99263 -distinct(X0,X1,X2) :-distinct1730,99263 -member(X0,X1,X2,X3,X4) :-member1743,99899 -member(X0,X1,X2,X3,X4) :-member1743,99899 -member(X0,X1,X2,X3,X4) :-member1743,99899 -mod(X0,X1,X2,X3) :-mod1764,101103 -mod(X0,X1,X2,X3) :-mod1764,101103 -mod(X0,X1,X2,X3) :-mod1764,101103 -sqr(X0,X1,X2) :-sqr1775,101613 -sqr(X0,X1,X2) :-sqr1775,101613 -sqr(X0,X1,X2) :-sqr1775,101613 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1784,101988 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1784,101988 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1784,101988 -path(X0,X1,X2,X3,X4,X5,X6) :-path1813,103895 -path(X0,X1,X2,X3,X4,X5,X6) :-path1813,103895 -path(X0,X1,X2,X3,X4,X5,X6) :-path1813,103895 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1844,105952 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1844,105952 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1844,105952 -sorted(X0,X1,X2) :-sorted1859,106803 -sorted(X0,X1,X2) :-sorted1859,106803 -sorted(X0,X1,X2) :-sorted1859,106803 -circuit(X0,X1,X2) :-circuit1868,107201 -circuit(X0,X1,X2) :-circuit1868,107201 -circuit(X0,X1,X2) :-circuit1868,107201 -channel(X0,X1,X2) :-channel1881,107824 -channel(X0,X1,X2) :-channel1881,107824 -channel(X0,X1,X2) :-channel1881,107824 -count(X0,X1,X2,X3,X4) :-count1910,109453 -count(X0,X1,X2,X3,X4) :-count1910,109453 -count(X0,X1,X2,X3,X4) :-count1910,109453 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1965,113176 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1965,113176 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives1965,113176 -binpacking(X0,X1,X2,X3,X4) :-binpacking2042,119331 -binpacking(X0,X1,X2,X3,X4) :-binpacking2042,119331 -binpacking(X0,X1,X2,X3,X4) :-binpacking2042,119331 -linear(X0,X1,X2,X3,X4,X5) :-linear2055,120052 -linear(X0,X1,X2,X3,X4,X5) :-linear2055,120052 -linear(X0,X1,X2,X3,X4,X5) :-linear2055,120052 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2126,125115 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2126,125115 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2126,125115 -div(X0,X1,X2,X3,X4) :-div2153,126949 -div(X0,X1,X2,X3,X4) :-div2153,126949 -div(X0,X1,X2,X3,X4) :-div2153,126949 -sqr(X0,X1,X2,X3) :-sqr2166,127613 -sqr(X0,X1,X2,X3) :-sqr2166,127613 -sqr(X0,X1,X2,X3) :-sqr2166,127613 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2177,128128 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2177,128128 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2177,128128 -unary(X0,X1,X2,X3,X4) :-unary2212,130580 -unary(X0,X1,X2,X3,X4) :-unary2212,130580 -unary(X0,X1,X2,X3,X4) :-unary2212,130580 -sorted(X0,X1,X2,X3) :-sorted2243,132480 -sorted(X0,X1,X2,X3) :-sorted2243,132480 -sorted(X0,X1,X2,X3) :-sorted2243,132480 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2256,133142 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2256,133142 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2256,133142 -element(X0,X1,X2,X3,X4) :-element2307,136904 -element(X0,X1,X2,X3,X4) :-element2307,136904 -element(X0,X1,X2,X3,X4) :-element2307,136904 -sequence(X0,X1,X2) :-sequence2378,141844 -sequence(X0,X1,X2) :-sequence2378,141844 -sequence(X0,X1,X2) :-sequence2378,141844 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2387,142248 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2387,142248 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2387,142248 -precede(X0,X1,X2) :-precede2404,143293 -precede(X0,X1,X2) :-precede2404,143293 -precede(X0,X1,X2) :-precede2404,143293 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2417,143918 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2417,143918 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2417,143918 -distinct(X0,X1,X2,X3) :-distinct2474,147979 -distinct(X0,X1,X2,X3) :-distinct2474,147979 -distinct(X0,X1,X2,X3) :-distinct2474,147979 -min(X0,X1,X2) :-min2485,148529 -min(X0,X1,X2) :-min2485,148529 -min(X0,X1,X2) :-min2485,148529 -sqrt(X0,X1,X2,X3) :-sqrt2498,149120 -sqrt(X0,X1,X2,X3) :-sqrt2498,149120 -sqrt(X0,X1,X2,X3) :-sqrt2498,149120 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2509,149641 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2509,149641 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2509,149641 -unshare(X0,X1,X2) :-unshare2534,151175 -unshare(X0,X1,X2) :-unshare2534,151175 -unshare(X0,X1,X2) :-unshare2534,151175 -path(X0,X1,X2,X3,X4,X5) :-path2547,151809 -path(X0,X1,X2,X3,X4,X5) :-path2547,151809 -path(X0,X1,X2,X3,X4,X5) :-path2547,151809 -divmod(X0,X1,X2,X3,X4) :-divmod2572,153311 -divmod(X0,X1,X2,X3,X4) :-divmod2572,153311 -divmod(X0,X1,X2,X3,X4) :-divmod2572,153311 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2585,153991 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2585,153991 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2585,153991 -cumulative(X0,X1,X2,X3,X4) :-cumulative2606,155486 -cumulative(X0,X1,X2,X3,X4) :-cumulative2606,155486 -cumulative(X0,X1,X2,X3,X4) :-cumulative2606,155486 -member(X0,X1,X2) :-member2627,156723 -member(X0,X1,X2) :-member2627,156723 -member(X0,X1,X2) :-member2627,156723 -count(X0,X1,X2,X3,X4,X5) :-count2640,157341 -count(X0,X1,X2,X3,X4,X5) :-count2640,157341 -count(X0,X1,X2,X3,X4,X5) :-count2640,157341 -notMin(X0,X1,X2) :-notMin2695,161175 -notMin(X0,X1,X2) :-notMin2695,161175 -notMin(X0,X1,X2) :-notMin2695,161175 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2704,161565 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2704,161565 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative2704,161565 -branch(X0,X1,X2) :-branch2761,165908 -branch(X0,X1,X2) :-branch2761,165908 -branch(X0,X1,X2) :-branch2761,165908 -dom(X0,X1,X2) :-dom2778,166766 -dom(X0,X1,X2) :-dom2778,166766 -dom(X0,X1,X2) :-dom2778,166766 -linear(X0,X1,X2,X3,X4) :-linear2795,167565 -linear(X0,X1,X2,X3,X4) :-linear2795,167565 -linear(X0,X1,X2,X3,X4) :-linear2795,167565 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2850,171144 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2850,171144 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap2850,171144 -element(X0,X1,X2,X3,X4,X5) :-element2867,172176 -element(X0,X1,X2,X3,X4,X5) :-element2867,172176 -element(X0,X1,X2,X3,X4,X5) :-element2867,172176 -rel(X0,X1,X2,X3) :-rel2906,174804 -rel(X0,X1,X2,X3) :-rel2906,174804 -rel(X0,X1,X2,X3) :-rel2906,174804 -min(X0,X1,X2,X3,X4) :-min2987,180259 -min(X0,X1,X2,X3,X4) :-min2987,180259 -min(X0,X1,X2,X3,X4) :-min2987,180259 -count(X0,X1,X2) :-count3000,180923 -count(X0,X1,X2) :-count3000,180923 -count(X0,X1,X2) :-count3000,180923 - -packages/gecode/4.2.0/gecode_yap_auto_generated.yap,34306 -is_RestartMode_('RM_NONE').is_RestartMode_19,883 -is_RestartMode_('RM_NONE').is_RestartMode_19,883 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,911 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,911 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,943 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,943 -is_RestartMode_('RM_LUBY').is_RestartMode_22,973 -is_RestartMode_('RM_LUBY').is_RestartMode_22,973 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,1001 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,1001 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1035 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1035 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1073 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1073 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1119 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1119 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1161 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1161 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1199 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1199 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1347 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1347 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1375 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1375 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1403 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1403 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1431 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1431 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1459 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1459 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1487 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1487 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1516 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1516 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1553 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1553 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1590 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1590 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1627 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1627 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1664 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1664 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1701 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1701 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1842 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1842 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1867 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1867 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1892 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1892 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1918 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1918 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1952 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1952 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1986 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1986 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2112 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2112 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2138 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2138 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2164 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2164 -is_IntRelType_('IRT_LE').is_IntRelType_65,2190 -is_IntRelType_('IRT_LE').is_IntRelType_65,2190 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2216 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2216 -is_IntRelType_('IRT_GR').is_IntRelType_67,2242 -is_IntRelType_('IRT_GR').is_IntRelType_67,2242 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2269 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2269 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2304 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2304 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2339 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2339 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2374 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2374 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2409 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2409 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2444 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2444 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2575 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2575 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2602 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2602 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2628 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2628 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2655 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2655 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2682 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2682 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2710 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2710 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2747 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2747 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2782 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2782 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2819 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2819 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2856 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2856 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_IntConLevel_('ICL_VAL').is_IntConLevel_94,2989 -is_IntConLevel_('ICL_VAL').is_IntConLevel_94,2989 -is_IntConLevel_('ICL_BND').is_IntConLevel_95,3017 -is_IntConLevel_('ICL_BND').is_IntConLevel_95,3017 -is_IntConLevel_('ICL_DOM').is_IntConLevel_96,3045 -is_IntConLevel_('ICL_DOM').is_IntConLevel_96,3045 -is_IntConLevel_('ICL_DEF').is_IntConLevel_97,3073 -is_IntConLevel_('ICL_DEF').is_IntConLevel_97,3073 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_99,3102 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_99,3102 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_100,3140 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_100,3140 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_101,3178 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_101,3178 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_102,3216 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_102,3216 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_TaskType_('TT_FIXP').is_TaskType_107,3354 -is_TaskType_('TT_FIXP').is_TaskType_107,3354 -is_TaskType_('TT_FIXS').is_TaskType_108,3379 -is_TaskType_('TT_FIXS').is_TaskType_108,3379 -is_TaskType_('TT_FIXE').is_TaskType_109,3404 -is_TaskType_('TT_FIXE').is_TaskType_109,3404 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_111,3430 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_111,3430 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_112,3465 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_112,3465 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_113,3500 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_113,3500 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_118,3623 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_118,3623 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_119,3659 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_119,3659 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_120,3697 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_120,3697 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_122,3737 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_122,3737 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_123,3783 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_123,3783 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_124,3833 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_124,3833 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_SetRelType_('SRT_EQ').is_SetRelType_129,4017 -is_SetRelType_('SRT_EQ').is_SetRelType_129,4017 -is_SetRelType_('SRT_NQ').is_SetRelType_130,4043 -is_SetRelType_('SRT_NQ').is_SetRelType_130,4043 -is_SetRelType_('SRT_SUB').is_SetRelType_131,4069 -is_SetRelType_('SRT_SUB').is_SetRelType_131,4069 -is_SetRelType_('SRT_SUP').is_SetRelType_132,4096 -is_SetRelType_('SRT_SUP').is_SetRelType_132,4096 -is_SetRelType_('SRT_DISJ').is_SetRelType_133,4123 -is_SetRelType_('SRT_DISJ').is_SetRelType_133,4123 -is_SetRelType_('SRT_CMPL').is_SetRelType_134,4151 -is_SetRelType_('SRT_CMPL').is_SetRelType_134,4151 -is_SetRelType_('SRT_LQ').is_SetRelType_135,4179 -is_SetRelType_('SRT_LQ').is_SetRelType_135,4179 -is_SetRelType_('SRT_LE').is_SetRelType_136,4205 -is_SetRelType_('SRT_LE').is_SetRelType_136,4205 -is_SetRelType_('SRT_GQ').is_SetRelType_137,4231 -is_SetRelType_('SRT_GQ').is_SetRelType_137,4231 -is_SetRelType_('SRT_GR').is_SetRelType_138,4257 -is_SetRelType_('SRT_GR').is_SetRelType_138,4257 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_140,4284 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_140,4284 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_141,4319 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_141,4319 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_142,4354 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_142,4354 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_143,4391 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_143,4391 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_144,4428 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_144,4428 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_145,4467 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_145,4467 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_146,4506 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_146,4506 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_147,4541 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_147,4541 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_148,4576 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_148,4576 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_149,4611 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_149,4611 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetOpType_('SOT_UNION').is_SetOpType_154,4742 -is_SetOpType_('SOT_UNION').is_SetOpType_154,4742 -is_SetOpType_('SOT_DUNION').is_SetOpType_155,4770 -is_SetOpType_('SOT_DUNION').is_SetOpType_155,4770 -is_SetOpType_('SOT_INTER').is_SetOpType_156,4799 -is_SetOpType_('SOT_INTER').is_SetOpType_156,4799 -is_SetOpType_('SOT_MINUS').is_SetOpType_157,4827 -is_SetOpType_('SOT_MINUS').is_SetOpType_157,4827 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_159,4856 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_159,4856 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_160,4896 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_160,4896 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_161,4938 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_161,4938 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_162,4978 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_162,4978 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -unary(X0,X1,X2,X3,X4,X5) :-unary167,5110 -unary(X0,X1,X2,X3,X4,X5) :-unary167,5110 -unary(X0,X1,X2,X3,X4,X5) :-unary167,5110 -nvalues(X0,X1,X2,X3,X4) :-nvalues192,6657 -nvalues(X0,X1,X2,X3,X4) :-nvalues192,6657 -nvalues(X0,X1,X2,X3,X4) :-nvalues192,6657 -max(X0,X1,X2,X3) :-max221,8429 -max(X0,X1,X2,X3) :-max221,8429 -max(X0,X1,X2,X3) :-max221,8429 -dom(X0,X1,X2,X3,X4,X5) :-dom250,10063 -dom(X0,X1,X2,X3,X4,X5) :-dom250,10063 -dom(X0,X1,X2,X3,X4,X5) :-dom250,10063 -convex(X0,X1,X2) :-convex275,11536 -convex(X0,X1,X2) :-convex275,11536 -convex(X0,X1,X2) :-convex275,11536 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap284,11925 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap284,11925 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap284,11925 -assign(X0,X1,X2) :-assign297,12636 -assign(X0,X1,X2) :-assign297,12636 -assign(X0,X1,X2) :-assign297,12636 -element(X0,X1,X2,X3) :-element334,14926 -element(X0,X1,X2,X3) :-element334,14926 -element(X0,X1,X2,X3) :-element334,14926 -sequence(X0,X1) :-sequence377,17599 -sequence(X0,X1) :-sequence377,17599 -sequence(X0,X1) :-sequence377,17599 -notMax(X0,X1,X2) :-notMax384,17877 -notMax(X0,X1,X2) :-notMax384,17877 -notMax(X0,X1,X2) :-notMax384,17877 -ite(X0,X1,X2,X3,X4) :-ite393,18267 -ite(X0,X1,X2,X3,X4) :-ite393,18267 -ite(X0,X1,X2,X3,X4) :-ite393,18267 -unary(X0,X1,X2) :-unary406,18927 -unary(X0,X1,X2) :-unary406,18927 -unary(X0,X1,X2) :-unary406,18927 -nroot(X0,X1,X2,X3,X4) :-nroot415,19317 -nroot(X0,X1,X2,X3,X4) :-nroot415,19317 -nroot(X0,X1,X2,X3,X4) :-nroot415,19317 -circuit(X0,X1,X2,X3) :-circuit428,19992 -circuit(X0,X1,X2,X3) :-circuit428,19992 -circuit(X0,X1,X2,X3) :-circuit428,19992 -dom(X0,X1,X2,X3,X4) :-dom445,20893 -dom(X0,X1,X2,X3,X4) :-dom445,20893 -dom(X0,X1,X2,X3,X4) :-dom445,20893 -channel(X0,X1,X2,X3) :-channel508,24969 -channel(X0,X1,X2,X3) :-channel508,24969 -channel(X0,X1,X2,X3) :-channel508,24969 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap531,26261 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap531,26261 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap531,26261 -element(X0,X1,X2,X3,X4,X5,X6) :-element552,27709 -element(X0,X1,X2,X3,X4,X5,X6) :-element552,27709 -element(X0,X1,X2,X3,X4,X5,X6) :-element552,27709 -max(X0,X1,X2) :-max619,32629 -max(X0,X1,X2) :-max619,32629 -max(X0,X1,X2) :-max619,32629 -unshare(X0,X1) :-unshare636,33456 -unshare(X0,X1) :-unshare636,33456 -unshare(X0,X1) :-unshare636,33456 -path(X0,X1,X2,X3,X4) :-path645,33831 -path(X0,X1,X2,X3,X4) :-path645,33831 -path(X0,X1,X2,X3,X4) :-path645,33831 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch666,35005 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch666,35005 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch666,35005 -mult(X0,X1,X2,X3) :-mult707,37890 -mult(X0,X1,X2,X3) :-mult707,37890 -mult(X0,X1,X2,X3) :-mult707,37890 -clause(X0,X1,X2,X3,X4,X5) :-clause724,38761 -clause(X0,X1,X2,X3,X4,X5) :-clause724,38761 -clause(X0,X1,X2,X3,X4,X5) :-clause724,38761 -precede(X0,X1,X2,X3,X4) :-precede743,39911 -precede(X0,X1,X2,X3,X4) :-precede743,39911 -precede(X0,X1,X2,X3,X4) :-precede743,39911 -distinct(X0,X1) :-distinct756,40601 -distinct(X0,X1) :-distinct756,40601 -distinct(X0,X1) :-distinct756,40601 -member(X0,X1,X2,X3) :-member763,40879 -member(X0,X1,X2,X3) :-member763,40879 -member(X0,X1,X2,X3) :-member763,40879 -mod(X0,X1,X2,X3,X4) :-mod784,42022 -mod(X0,X1,X2,X3,X4) :-mod784,42022 -mod(X0,X1,X2,X3,X4) :-mod784,42022 -cardinality(X0,X1,X2) :-cardinality797,42686 -cardinality(X0,X1,X2) :-cardinality797,42686 -cardinality(X0,X1,X2) :-cardinality797,42686 -atmostOne(X0,X1,X2) :-atmostOne806,43100 -atmostOne(X0,X1,X2) :-atmostOne806,43100 -atmostOne(X0,X1,X2) :-atmostOne806,43100 -channelSorted(X0,X1,X2) :-channelSorted815,43505 -channelSorted(X0,X1,X2) :-channelSorted815,43505 -channelSorted(X0,X1,X2) :-channelSorted815,43505 -extensional(X0,X1,X2,X3,X4) :-extensional824,43933 -extensional(X0,X1,X2,X3,X4) :-extensional824,43933 -extensional(X0,X1,X2,X3,X4) :-extensional824,43933 -linear(X0,X1,X2,X3) :-linear845,45223 -linear(X0,X1,X2,X3) :-linear845,45223 -linear(X0,X1,X2,X3) :-linear845,45223 -circuit(X0,X1) :-circuit874,46887 -circuit(X0,X1) :-circuit874,46887 -circuit(X0,X1) :-circuit874,46887 -rel(X0,X1,X2,X3,X4) :-rel881,47160 -rel(X0,X1,X2,X3,X4) :-rel881,47160 -rel(X0,X1,X2,X3,X4) :-rel881,47160 -min(X0,X1,X2,X3) :-min1014,57084 -min(X0,X1,X2,X3) :-min1014,57084 -min(X0,X1,X2,X3) :-min1014,57084 -cardinality(X0,X1,X2,X3) :-cardinality1043,58718 -cardinality(X0,X1,X2,X3) :-cardinality1043,58718 -cardinality(X0,X1,X2,X3) :-cardinality1043,58718 -count(X0,X1,X2,X3) :-count1060,59636 -count(X0,X1,X2,X3) :-count1060,59636 -count(X0,X1,X2,X3) :-count1060,59636 -sqrt(X0,X1,X2) :-sqrt1083,60921 -sqrt(X0,X1,X2) :-sqrt1083,60921 -sqrt(X0,X1,X2) :-sqrt1083,60921 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1096,61519 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1096,61519 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1096,61519 -nvalues(X0,X1,X2,X3) :-nvalues1189,69391 -nvalues(X0,X1,X2,X3) :-nvalues1189,69391 -nvalues(X0,X1,X2,X3) :-nvalues1189,69391 -binpacking(X0,X1,X2,X3) :-binpacking1210,70538 -binpacking(X0,X1,X2,X3) :-binpacking1210,70538 -binpacking(X0,X1,X2,X3) :-binpacking1210,70538 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1221,71098 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1221,71098 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1221,71098 -abs(X0,X1,X2,X3) :-abs1260,73810 -abs(X0,X1,X2,X3) :-abs1260,73810 -abs(X0,X1,X2,X3) :-abs1260,73810 -convex(X0,X1) :-convex1271,74324 -convex(X0,X1) :-convex1271,74324 -convex(X0,X1) :-convex1271,74324 -div(X0,X1,X2,X3) :-div1278,74589 -div(X0,X1,X2,X3) :-div1278,74589 -div(X0,X1,X2,X3) :-div1278,74589 -rel(X0,X1,X2,X3,X4,X5) :-rel1295,75451 -rel(X0,X1,X2,X3,X4,X5) :-rel1295,75451 -rel(X0,X1,X2,X3,X4,X5) :-rel1295,75451 -weights(X0,X1,X2,X3,X4) :-weights1376,81168 -weights(X0,X1,X2,X3,X4) :-weights1376,81168 -weights(X0,X1,X2,X3,X4) :-weights1376,81168 -max(X0,X1,X2,X3,X4) :-max1389,81857 -max(X0,X1,X2,X3,X4) :-max1389,81857 -max(X0,X1,X2,X3,X4) :-max1389,81857 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1402,82521 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1402,82521 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1402,82521 -unary(X0,X1,X2,X3) :-unary1423,83938 -unary(X0,X1,X2,X3) :-unary1423,83938 -unary(X0,X1,X2,X3) :-unary1423,83938 -nroot(X0,X1,X2,X3) :-nroot1446,85232 -nroot(X0,X1,X2,X3) :-nroot1446,85232 -nroot(X0,X1,X2,X3) :-nroot1446,85232 -sorted(X0,X1,X2,X3,X4) :-sorted1463,86104 -sorted(X0,X1,X2,X3,X4) :-sorted1463,86104 -sorted(X0,X1,X2,X3,X4) :-sorted1463,86104 -circuit(X0,X1,X2,X3,X4) :-circuit1476,86801 -circuit(X0,X1,X2,X3,X4) :-circuit1476,86801 -circuit(X0,X1,X2,X3,X4) :-circuit1476,86801 -dom(X0,X1,X2,X3) :-dom1499,88171 -dom(X0,X1,X2,X3) :-dom1499,88171 -dom(X0,X1,X2,X3) :-dom1499,88171 -abs(X0,X1,X2) :-abs1584,94130 -abs(X0,X1,X2) :-abs1584,94130 -abs(X0,X1,X2) :-abs1584,94130 -channel(X0,X1,X2,X3,X4) :-channel1597,94719 -channel(X0,X1,X2,X3,X4) :-channel1597,94719 -channel(X0,X1,X2,X3,X4) :-channel1597,94719 -assign(X0,X1,X2,X3,X4) :-assign1618,95923 -assign(X0,X1,X2,X3,X4) :-assign1618,95923 -assign(X0,X1,X2,X3,X4) :-assign1618,95923 -rel(X0,X1,X2) :-rel1655,98318 -rel(X0,X1,X2) :-rel1655,98318 -rel(X0,X1,X2) :-rel1655,98318 -path(X0,X1,X2,X3) :-path1668,98922 -path(X0,X1,X2,X3) :-path1668,98922 -path(X0,X1,X2,X3) :-path1668,98922 -branch(X0,X1,X2,X3) :-branch1679,99442 -branch(X0,X1,X2,X3) :-branch1679,99442 -branch(X0,X1,X2,X3) :-branch1679,99442 -mult(X0,X1,X2,X3,X4) :-mult1732,103086 -mult(X0,X1,X2,X3,X4) :-mult1732,103086 -mult(X0,X1,X2,X3,X4) :-mult1732,103086 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1745,103757 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1745,103757 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1745,103757 -clause(X0,X1,X2,X3,X4) :-clause1772,105472 -clause(X0,X1,X2,X3,X4) :-clause1772,105472 -clause(X0,X1,X2,X3,X4) :-clause1772,105472 -precede(X0,X1,X2,X3) :-precede1787,106290 -precede(X0,X1,X2,X3) :-precede1787,106290 -precede(X0,X1,X2,X3) :-precede1787,106290 -channel(X0,X1,X2,X3,X4,X5) :-channel1808,107442 -channel(X0,X1,X2,X3,X4,X5) :-channel1808,107442 -channel(X0,X1,X2,X3,X4,X5) :-channel1808,107442 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1823,108302 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1823,108302 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1823,108302 -distinct(X0,X1,X2) :-distinct1896,113845 -distinct(X0,X1,X2) :-distinct1896,113845 -distinct(X0,X1,X2) :-distinct1896,113845 -member(X0,X1,X2,X3,X4) :-member1909,114481 -member(X0,X1,X2,X3,X4) :-member1909,114481 -member(X0,X1,X2,X3,X4) :-member1909,114481 -mod(X0,X1,X2,X3) :-mod1930,115685 -mod(X0,X1,X2,X3) :-mod1930,115685 -mod(X0,X1,X2,X3) :-mod1930,115685 -sqr(X0,X1,X2) :-sqr1941,116195 -sqr(X0,X1,X2) :-sqr1941,116195 -sqr(X0,X1,X2) :-sqr1941,116195 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1954,116786 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1954,116786 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1954,116786 -path(X0,X1,X2,X3,X4,X5,X6) :-path1983,118693 -path(X0,X1,X2,X3,X4,X5,X6) :-path1983,118693 -path(X0,X1,X2,X3,X4,X5,X6) :-path1983,118693 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2014,120750 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2014,120750 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2014,120750 -sorted(X0,X1,X2) :-sorted2029,121601 -sorted(X0,X1,X2) :-sorted2029,121601 -sorted(X0,X1,X2) :-sorted2029,121601 -extensional(X0,X1,X2,X3) :-extensional2038,121999 -extensional(X0,X1,X2,X3) :-extensional2038,121999 -extensional(X0,X1,X2,X3) :-extensional2038,121999 -circuit(X0,X1,X2) :-circuit2063,123486 -circuit(X0,X1,X2) :-circuit2063,123486 -circuit(X0,X1,X2) :-circuit2063,123486 -channel(X0,X1,X2) :-channel2076,124109 -channel(X0,X1,X2) :-channel2076,124109 -channel(X0,X1,X2) :-channel2076,124109 -count(X0,X1,X2,X3,X4) :-count2109,126032 -count(X0,X1,X2,X3,X4) :-count2109,126032 -count(X0,X1,X2,X3,X4) :-count2109,126032 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2164,129763 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2164,129763 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2164,129763 -binpacking(X0,X1,X2,X3,X4) :-binpacking2241,135918 -binpacking(X0,X1,X2,X3,X4) :-binpacking2241,135918 -binpacking(X0,X1,X2,X3,X4) :-binpacking2241,135918 -extensional(X0,X1,X2) :-extensional2254,136639 -extensional(X0,X1,X2) :-extensional2254,136639 -extensional(X0,X1,X2) :-extensional2254,136639 -linear(X0,X1,X2,X3,X4,X5) :-linear2271,137519 -linear(X0,X1,X2,X3,X4,X5) :-linear2271,137519 -linear(X0,X1,X2,X3,X4,X5) :-linear2271,137519 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2356,143765 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2356,143765 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2356,143765 -div(X0,X1,X2,X3,X4) :-div2383,145599 -div(X0,X1,X2,X3,X4) :-div2383,145599 -div(X0,X1,X2,X3,X4) :-div2383,145599 -sqr(X0,X1,X2,X3) :-sqr2396,146263 -sqr(X0,X1,X2,X3) :-sqr2396,146263 -sqr(X0,X1,X2,X3) :-sqr2396,146263 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2407,146778 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2407,146778 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2407,146778 -unary(X0,X1,X2,X3,X4) :-unary2442,149230 -unary(X0,X1,X2,X3,X4) :-unary2442,149230 -unary(X0,X1,X2,X3,X4) :-unary2442,149230 -sorted(X0,X1,X2,X3) :-sorted2473,151130 -sorted(X0,X1,X2,X3) :-sorted2473,151130 -sorted(X0,X1,X2,X3) :-sorted2473,151130 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2486,151792 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2486,151792 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2486,151792 -assign(X0,X1,X2,X3) :-assign2537,155554 -assign(X0,X1,X2,X3) :-assign2537,155554 -assign(X0,X1,X2,X3) :-assign2537,155554 -element(X0,X1,X2,X3,X4) :-element2590,159184 -element(X0,X1,X2,X3,X4) :-element2590,159184 -element(X0,X1,X2,X3,X4) :-element2590,159184 -sequence(X0,X1,X2) :-sequence2661,164124 -sequence(X0,X1,X2) :-sequence2661,164124 -sequence(X0,X1,X2) :-sequence2661,164124 -branch(X0,X1,X2,X3,X4) :-branch2670,164528 -branch(X0,X1,X2,X3,X4) :-branch2670,164528 -branch(X0,X1,X2,X3,X4) :-branch2670,164528 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2713,167369 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2713,167369 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2713,167369 -pow(X0,X1,X2,X3) :-pow2730,168414 -pow(X0,X1,X2,X3) :-pow2730,168414 -pow(X0,X1,X2,X3) :-pow2730,168414 -precede(X0,X1,X2) :-precede2747,169268 -precede(X0,X1,X2) :-precede2747,169268 -precede(X0,X1,X2) :-precede2747,169268 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2760,169893 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2760,169893 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2760,169893 -distinct(X0,X1,X2,X3) :-distinct2817,173961 -distinct(X0,X1,X2,X3) :-distinct2817,173961 -distinct(X0,X1,X2,X3) :-distinct2817,173961 -min(X0,X1,X2) :-min2828,174511 -min(X0,X1,X2) :-min2828,174511 -min(X0,X1,X2) :-min2828,174511 -sqrt(X0,X1,X2,X3) :-sqrt2845,175338 -sqrt(X0,X1,X2,X3) :-sqrt2845,175338 -sqrt(X0,X1,X2,X3) :-sqrt2845,175338 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2856,175859 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2856,175859 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2856,175859 -unshare(X0,X1,X2) :-unshare2881,177393 -unshare(X0,X1,X2) :-unshare2881,177393 -unshare(X0,X1,X2) :-unshare2881,177393 -path(X0,X1,X2,X3,X4,X5) :-path2894,178027 -path(X0,X1,X2,X3,X4,X5) :-path2894,178027 -path(X0,X1,X2,X3,X4,X5) :-path2894,178027 -divmod(X0,X1,X2,X3,X4) :-divmod2919,179529 -divmod(X0,X1,X2,X3,X4) :-divmod2919,179529 -divmod(X0,X1,X2,X3,X4) :-divmod2919,179529 -branch(X0,X1,X2,X3,X4,X5) :-branch2932,180209 -branch(X0,X1,X2,X3,X4,X5) :-branch2932,180209 -branch(X0,X1,X2,X3,X4,X5) :-branch2932,180209 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2989,184314 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2989,184314 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2989,184314 -cumulative(X0,X1,X2,X3,X4) :-cumulative3010,185809 -cumulative(X0,X1,X2,X3,X4) :-cumulative3010,185809 -cumulative(X0,X1,X2,X3,X4) :-cumulative3010,185809 -member(X0,X1,X2) :-member3031,187048 -member(X0,X1,X2) :-member3031,187048 -member(X0,X1,X2) :-member3031,187048 -count(X0,X1,X2,X3,X4,X5) :-count3044,187666 -count(X0,X1,X2,X3,X4,X5) :-count3044,187666 -count(X0,X1,X2,X3,X4,X5) :-count3044,187666 -pow(X0,X1,X2,X3,X4) :-pow3099,191506 -pow(X0,X1,X2,X3,X4) :-pow3099,191506 -pow(X0,X1,X2,X3,X4) :-pow3099,191506 -notMin(X0,X1,X2) :-notMin3112,192167 -notMin(X0,X1,X2) :-notMin3112,192167 -notMin(X0,X1,X2) :-notMin3112,192167 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3121,192557 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3121,192557 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3121,192557 -branch(X0,X1,X2) :-branch3178,196903 -branch(X0,X1,X2) :-branch3178,196903 -branch(X0,X1,X2) :-branch3178,196903 -dom(X0,X1,X2) :-dom3199,198020 -dom(X0,X1,X2) :-dom3199,198020 -dom(X0,X1,X2) :-dom3199,198020 -linear(X0,X1,X2,X3,X4) :-linear3248,201043 -linear(X0,X1,X2,X3,X4) :-linear3248,201043 -linear(X0,X1,X2,X3,X4) :-linear3248,201043 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3325,206372 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3325,206372 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3325,206372 -element(X0,X1,X2,X3,X4,X5) :-element3342,207404 -element(X0,X1,X2,X3,X4,X5) :-element3342,207404 -element(X0,X1,X2,X3,X4,X5) :-element3342,207404 -rel(X0,X1,X2,X3) :-rel3381,210032 -rel(X0,X1,X2,X3) :-rel3381,210032 -rel(X0,X1,X2,X3) :-rel3381,210032 -min(X0,X1,X2,X3,X4) :-min3478,217003 -min(X0,X1,X2,X3,X4) :-min3478,217003 -min(X0,X1,X2,X3,X4) :-min3478,217003 -count(X0,X1,X2) :-count3491,217667 -count(X0,X1,X2) :-count3491,217667 -count(X0,X1,X2) :-count3491,217667 -ite(X0,X1,X2,X3,X4,X5) :-ite3502,218168 -ite(X0,X1,X2,X3,X4,X5) :-ite3502,218168 -ite(X0,X1,X2,X3,X4,X5) :-ite3502,218168 - -packages/gecode/4.2.1/gecode_yap_auto_generated.yap,34306 -is_RestartMode_('RM_NONE').is_RestartMode_19,883 -is_RestartMode_('RM_NONE').is_RestartMode_19,883 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,911 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,911 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,943 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,943 -is_RestartMode_('RM_LUBY').is_RestartMode_22,973 -is_RestartMode_('RM_LUBY').is_RestartMode_22,973 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,1001 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,1001 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1035 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1035 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1073 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1073 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1119 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1119 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1161 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1161 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1199 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1199 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1347 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1347 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1375 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1375 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1403 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1403 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1431 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1431 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1459 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1459 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1487 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1487 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1516 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1516 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1553 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1553 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1590 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1590 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1627 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1627 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1664 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1664 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1701 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1701 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1842 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1842 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1867 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1867 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1892 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1892 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1918 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1918 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1952 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1952 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1986 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1986 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2112 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2112 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2138 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2138 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2164 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2164 -is_IntRelType_('IRT_LE').is_IntRelType_65,2190 -is_IntRelType_('IRT_LE').is_IntRelType_65,2190 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2216 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2216 -is_IntRelType_('IRT_GR').is_IntRelType_67,2242 -is_IntRelType_('IRT_GR').is_IntRelType_67,2242 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2269 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2269 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2304 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2304 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2339 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2339 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2374 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2374 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2409 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2409 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2444 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2444 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2575 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2575 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2602 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2602 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2628 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2628 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2655 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2655 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2682 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2682 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2710 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2710 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2747 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2747 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2782 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2782 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2819 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2819 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2856 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2856 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_IntConLevel_('ICL_VAL').is_IntConLevel_94,2989 -is_IntConLevel_('ICL_VAL').is_IntConLevel_94,2989 -is_IntConLevel_('ICL_BND').is_IntConLevel_95,3017 -is_IntConLevel_('ICL_BND').is_IntConLevel_95,3017 -is_IntConLevel_('ICL_DOM').is_IntConLevel_96,3045 -is_IntConLevel_('ICL_DOM').is_IntConLevel_96,3045 -is_IntConLevel_('ICL_DEF').is_IntConLevel_97,3073 -is_IntConLevel_('ICL_DEF').is_IntConLevel_97,3073 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_99,3102 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_99,3102 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_100,3140 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_100,3140 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_101,3178 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_101,3178 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_102,3216 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_102,3216 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_TaskType_('TT_FIXP').is_TaskType_107,3354 -is_TaskType_('TT_FIXP').is_TaskType_107,3354 -is_TaskType_('TT_FIXS').is_TaskType_108,3379 -is_TaskType_('TT_FIXS').is_TaskType_108,3379 -is_TaskType_('TT_FIXE').is_TaskType_109,3404 -is_TaskType_('TT_FIXE').is_TaskType_109,3404 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_111,3430 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_111,3430 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_112,3465 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_112,3465 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_113,3500 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_113,3500 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_118,3623 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_118,3623 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_119,3659 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_119,3659 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_120,3697 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_120,3697 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_122,3737 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_122,3737 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_123,3783 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_123,3783 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_124,3833 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_124,3833 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_SetRelType_('SRT_EQ').is_SetRelType_129,4017 -is_SetRelType_('SRT_EQ').is_SetRelType_129,4017 -is_SetRelType_('SRT_NQ').is_SetRelType_130,4043 -is_SetRelType_('SRT_NQ').is_SetRelType_130,4043 -is_SetRelType_('SRT_SUB').is_SetRelType_131,4069 -is_SetRelType_('SRT_SUB').is_SetRelType_131,4069 -is_SetRelType_('SRT_SUP').is_SetRelType_132,4096 -is_SetRelType_('SRT_SUP').is_SetRelType_132,4096 -is_SetRelType_('SRT_DISJ').is_SetRelType_133,4123 -is_SetRelType_('SRT_DISJ').is_SetRelType_133,4123 -is_SetRelType_('SRT_CMPL').is_SetRelType_134,4151 -is_SetRelType_('SRT_CMPL').is_SetRelType_134,4151 -is_SetRelType_('SRT_LQ').is_SetRelType_135,4179 -is_SetRelType_('SRT_LQ').is_SetRelType_135,4179 -is_SetRelType_('SRT_LE').is_SetRelType_136,4205 -is_SetRelType_('SRT_LE').is_SetRelType_136,4205 -is_SetRelType_('SRT_GQ').is_SetRelType_137,4231 -is_SetRelType_('SRT_GQ').is_SetRelType_137,4231 -is_SetRelType_('SRT_GR').is_SetRelType_138,4257 -is_SetRelType_('SRT_GR').is_SetRelType_138,4257 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_140,4284 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_140,4284 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_141,4319 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_141,4319 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_142,4354 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_142,4354 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_143,4391 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_143,4391 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_144,4428 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_144,4428 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_145,4467 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_145,4467 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_146,4506 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_146,4506 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_147,4541 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_147,4541 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_148,4576 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_148,4576 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_149,4611 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_149,4611 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetOpType_('SOT_UNION').is_SetOpType_154,4742 -is_SetOpType_('SOT_UNION').is_SetOpType_154,4742 -is_SetOpType_('SOT_DUNION').is_SetOpType_155,4770 -is_SetOpType_('SOT_DUNION').is_SetOpType_155,4770 -is_SetOpType_('SOT_INTER').is_SetOpType_156,4799 -is_SetOpType_('SOT_INTER').is_SetOpType_156,4799 -is_SetOpType_('SOT_MINUS').is_SetOpType_157,4827 -is_SetOpType_('SOT_MINUS').is_SetOpType_157,4827 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_159,4856 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_159,4856 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_160,4896 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_160,4896 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_161,4938 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_161,4938 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_162,4978 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_162,4978 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -unary(X0,X1,X2,X3,X4,X5) :-unary167,5110 -unary(X0,X1,X2,X3,X4,X5) :-unary167,5110 -unary(X0,X1,X2,X3,X4,X5) :-unary167,5110 -nvalues(X0,X1,X2,X3,X4) :-nvalues192,6657 -nvalues(X0,X1,X2,X3,X4) :-nvalues192,6657 -nvalues(X0,X1,X2,X3,X4) :-nvalues192,6657 -max(X0,X1,X2,X3) :-max221,8429 -max(X0,X1,X2,X3) :-max221,8429 -max(X0,X1,X2,X3) :-max221,8429 -dom(X0,X1,X2,X3,X4,X5) :-dom250,10063 -dom(X0,X1,X2,X3,X4,X5) :-dom250,10063 -dom(X0,X1,X2,X3,X4,X5) :-dom250,10063 -convex(X0,X1,X2) :-convex275,11536 -convex(X0,X1,X2) :-convex275,11536 -convex(X0,X1,X2) :-convex275,11536 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap284,11925 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap284,11925 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap284,11925 -assign(X0,X1,X2) :-assign297,12636 -assign(X0,X1,X2) :-assign297,12636 -assign(X0,X1,X2) :-assign297,12636 -element(X0,X1,X2,X3) :-element334,14926 -element(X0,X1,X2,X3) :-element334,14926 -element(X0,X1,X2,X3) :-element334,14926 -sequence(X0,X1) :-sequence377,17599 -sequence(X0,X1) :-sequence377,17599 -sequence(X0,X1) :-sequence377,17599 -notMax(X0,X1,X2) :-notMax384,17877 -notMax(X0,X1,X2) :-notMax384,17877 -notMax(X0,X1,X2) :-notMax384,17877 -ite(X0,X1,X2,X3,X4) :-ite393,18267 -ite(X0,X1,X2,X3,X4) :-ite393,18267 -ite(X0,X1,X2,X3,X4) :-ite393,18267 -unary(X0,X1,X2) :-unary406,18927 -unary(X0,X1,X2) :-unary406,18927 -unary(X0,X1,X2) :-unary406,18927 -nroot(X0,X1,X2,X3,X4) :-nroot415,19317 -nroot(X0,X1,X2,X3,X4) :-nroot415,19317 -nroot(X0,X1,X2,X3,X4) :-nroot415,19317 -circuit(X0,X1,X2,X3) :-circuit428,19992 -circuit(X0,X1,X2,X3) :-circuit428,19992 -circuit(X0,X1,X2,X3) :-circuit428,19992 -dom(X0,X1,X2,X3,X4) :-dom445,20893 -dom(X0,X1,X2,X3,X4) :-dom445,20893 -dom(X0,X1,X2,X3,X4) :-dom445,20893 -channel(X0,X1,X2,X3) :-channel508,24969 -channel(X0,X1,X2,X3) :-channel508,24969 -channel(X0,X1,X2,X3) :-channel508,24969 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap531,26261 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap531,26261 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap531,26261 -element(X0,X1,X2,X3,X4,X5,X6) :-element552,27709 -element(X0,X1,X2,X3,X4,X5,X6) :-element552,27709 -element(X0,X1,X2,X3,X4,X5,X6) :-element552,27709 -max(X0,X1,X2) :-max619,32629 -max(X0,X1,X2) :-max619,32629 -max(X0,X1,X2) :-max619,32629 -unshare(X0,X1) :-unshare636,33456 -unshare(X0,X1) :-unshare636,33456 -unshare(X0,X1) :-unshare636,33456 -path(X0,X1,X2,X3,X4) :-path645,33831 -path(X0,X1,X2,X3,X4) :-path645,33831 -path(X0,X1,X2,X3,X4) :-path645,33831 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch666,35005 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch666,35005 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch666,35005 -mult(X0,X1,X2,X3) :-mult707,37890 -mult(X0,X1,X2,X3) :-mult707,37890 -mult(X0,X1,X2,X3) :-mult707,37890 -clause(X0,X1,X2,X3,X4,X5) :-clause724,38761 -clause(X0,X1,X2,X3,X4,X5) :-clause724,38761 -clause(X0,X1,X2,X3,X4,X5) :-clause724,38761 -precede(X0,X1,X2,X3,X4) :-precede743,39911 -precede(X0,X1,X2,X3,X4) :-precede743,39911 -precede(X0,X1,X2,X3,X4) :-precede743,39911 -distinct(X0,X1) :-distinct756,40601 -distinct(X0,X1) :-distinct756,40601 -distinct(X0,X1) :-distinct756,40601 -member(X0,X1,X2,X3) :-member763,40879 -member(X0,X1,X2,X3) :-member763,40879 -member(X0,X1,X2,X3) :-member763,40879 -mod(X0,X1,X2,X3,X4) :-mod784,42022 -mod(X0,X1,X2,X3,X4) :-mod784,42022 -mod(X0,X1,X2,X3,X4) :-mod784,42022 -cardinality(X0,X1,X2) :-cardinality797,42686 -cardinality(X0,X1,X2) :-cardinality797,42686 -cardinality(X0,X1,X2) :-cardinality797,42686 -atmostOne(X0,X1,X2) :-atmostOne806,43100 -atmostOne(X0,X1,X2) :-atmostOne806,43100 -atmostOne(X0,X1,X2) :-atmostOne806,43100 -channelSorted(X0,X1,X2) :-channelSorted815,43505 -channelSorted(X0,X1,X2) :-channelSorted815,43505 -channelSorted(X0,X1,X2) :-channelSorted815,43505 -extensional(X0,X1,X2,X3,X4) :-extensional824,43933 -extensional(X0,X1,X2,X3,X4) :-extensional824,43933 -extensional(X0,X1,X2,X3,X4) :-extensional824,43933 -linear(X0,X1,X2,X3) :-linear845,45223 -linear(X0,X1,X2,X3) :-linear845,45223 -linear(X0,X1,X2,X3) :-linear845,45223 -circuit(X0,X1) :-circuit874,46887 -circuit(X0,X1) :-circuit874,46887 -circuit(X0,X1) :-circuit874,46887 -rel(X0,X1,X2,X3,X4) :-rel881,47160 -rel(X0,X1,X2,X3,X4) :-rel881,47160 -rel(X0,X1,X2,X3,X4) :-rel881,47160 -min(X0,X1,X2,X3) :-min1014,57084 -min(X0,X1,X2,X3) :-min1014,57084 -min(X0,X1,X2,X3) :-min1014,57084 -cardinality(X0,X1,X2,X3) :-cardinality1043,58718 -cardinality(X0,X1,X2,X3) :-cardinality1043,58718 -cardinality(X0,X1,X2,X3) :-cardinality1043,58718 -count(X0,X1,X2,X3) :-count1060,59636 -count(X0,X1,X2,X3) :-count1060,59636 -count(X0,X1,X2,X3) :-count1060,59636 -sqrt(X0,X1,X2) :-sqrt1083,60921 -sqrt(X0,X1,X2) :-sqrt1083,60921 -sqrt(X0,X1,X2) :-sqrt1083,60921 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1096,61519 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1096,61519 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1096,61519 -nvalues(X0,X1,X2,X3) :-nvalues1189,69391 -nvalues(X0,X1,X2,X3) :-nvalues1189,69391 -nvalues(X0,X1,X2,X3) :-nvalues1189,69391 -binpacking(X0,X1,X2,X3) :-binpacking1210,70538 -binpacking(X0,X1,X2,X3) :-binpacking1210,70538 -binpacking(X0,X1,X2,X3) :-binpacking1210,70538 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1221,71098 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1221,71098 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1221,71098 -abs(X0,X1,X2,X3) :-abs1260,73810 -abs(X0,X1,X2,X3) :-abs1260,73810 -abs(X0,X1,X2,X3) :-abs1260,73810 -convex(X0,X1) :-convex1271,74324 -convex(X0,X1) :-convex1271,74324 -convex(X0,X1) :-convex1271,74324 -div(X0,X1,X2,X3) :-div1278,74589 -div(X0,X1,X2,X3) :-div1278,74589 -div(X0,X1,X2,X3) :-div1278,74589 -rel(X0,X1,X2,X3,X4,X5) :-rel1295,75451 -rel(X0,X1,X2,X3,X4,X5) :-rel1295,75451 -rel(X0,X1,X2,X3,X4,X5) :-rel1295,75451 -weights(X0,X1,X2,X3,X4) :-weights1376,81168 -weights(X0,X1,X2,X3,X4) :-weights1376,81168 -weights(X0,X1,X2,X3,X4) :-weights1376,81168 -max(X0,X1,X2,X3,X4) :-max1389,81857 -max(X0,X1,X2,X3,X4) :-max1389,81857 -max(X0,X1,X2,X3,X4) :-max1389,81857 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1402,82521 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1402,82521 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1402,82521 -unary(X0,X1,X2,X3) :-unary1423,83938 -unary(X0,X1,X2,X3) :-unary1423,83938 -unary(X0,X1,X2,X3) :-unary1423,83938 -nroot(X0,X1,X2,X3) :-nroot1446,85232 -nroot(X0,X1,X2,X3) :-nroot1446,85232 -nroot(X0,X1,X2,X3) :-nroot1446,85232 -sorted(X0,X1,X2,X3,X4) :-sorted1463,86104 -sorted(X0,X1,X2,X3,X4) :-sorted1463,86104 -sorted(X0,X1,X2,X3,X4) :-sorted1463,86104 -circuit(X0,X1,X2,X3,X4) :-circuit1476,86801 -circuit(X0,X1,X2,X3,X4) :-circuit1476,86801 -circuit(X0,X1,X2,X3,X4) :-circuit1476,86801 -dom(X0,X1,X2,X3) :-dom1499,88171 -dom(X0,X1,X2,X3) :-dom1499,88171 -dom(X0,X1,X2,X3) :-dom1499,88171 -abs(X0,X1,X2) :-abs1584,94130 -abs(X0,X1,X2) :-abs1584,94130 -abs(X0,X1,X2) :-abs1584,94130 -channel(X0,X1,X2,X3,X4) :-channel1597,94719 -channel(X0,X1,X2,X3,X4) :-channel1597,94719 -channel(X0,X1,X2,X3,X4) :-channel1597,94719 -assign(X0,X1,X2,X3,X4) :-assign1618,95923 -assign(X0,X1,X2,X3,X4) :-assign1618,95923 -assign(X0,X1,X2,X3,X4) :-assign1618,95923 -rel(X0,X1,X2) :-rel1655,98318 -rel(X0,X1,X2) :-rel1655,98318 -rel(X0,X1,X2) :-rel1655,98318 -path(X0,X1,X2,X3) :-path1668,98922 -path(X0,X1,X2,X3) :-path1668,98922 -path(X0,X1,X2,X3) :-path1668,98922 -branch(X0,X1,X2,X3) :-branch1679,99442 -branch(X0,X1,X2,X3) :-branch1679,99442 -branch(X0,X1,X2,X3) :-branch1679,99442 -mult(X0,X1,X2,X3,X4) :-mult1732,103086 -mult(X0,X1,X2,X3,X4) :-mult1732,103086 -mult(X0,X1,X2,X3,X4) :-mult1732,103086 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1745,103757 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1745,103757 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1745,103757 -clause(X0,X1,X2,X3,X4) :-clause1772,105472 -clause(X0,X1,X2,X3,X4) :-clause1772,105472 -clause(X0,X1,X2,X3,X4) :-clause1772,105472 -precede(X0,X1,X2,X3) :-precede1787,106290 -precede(X0,X1,X2,X3) :-precede1787,106290 -precede(X0,X1,X2,X3) :-precede1787,106290 -channel(X0,X1,X2,X3,X4,X5) :-channel1808,107442 -channel(X0,X1,X2,X3,X4,X5) :-channel1808,107442 -channel(X0,X1,X2,X3,X4,X5) :-channel1808,107442 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1823,108302 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1823,108302 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1823,108302 -distinct(X0,X1,X2) :-distinct1896,113845 -distinct(X0,X1,X2) :-distinct1896,113845 -distinct(X0,X1,X2) :-distinct1896,113845 -member(X0,X1,X2,X3,X4) :-member1909,114481 -member(X0,X1,X2,X3,X4) :-member1909,114481 -member(X0,X1,X2,X3,X4) :-member1909,114481 -mod(X0,X1,X2,X3) :-mod1930,115685 -mod(X0,X1,X2,X3) :-mod1930,115685 -mod(X0,X1,X2,X3) :-mod1930,115685 -sqr(X0,X1,X2) :-sqr1941,116195 -sqr(X0,X1,X2) :-sqr1941,116195 -sqr(X0,X1,X2) :-sqr1941,116195 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1954,116786 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1954,116786 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1954,116786 -path(X0,X1,X2,X3,X4,X5,X6) :-path1983,118693 -path(X0,X1,X2,X3,X4,X5,X6) :-path1983,118693 -path(X0,X1,X2,X3,X4,X5,X6) :-path1983,118693 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2014,120750 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2014,120750 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2014,120750 -sorted(X0,X1,X2) :-sorted2029,121601 -sorted(X0,X1,X2) :-sorted2029,121601 -sorted(X0,X1,X2) :-sorted2029,121601 -extensional(X0,X1,X2,X3) :-extensional2038,121999 -extensional(X0,X1,X2,X3) :-extensional2038,121999 -extensional(X0,X1,X2,X3) :-extensional2038,121999 -circuit(X0,X1,X2) :-circuit2063,123486 -circuit(X0,X1,X2) :-circuit2063,123486 -circuit(X0,X1,X2) :-circuit2063,123486 -channel(X0,X1,X2) :-channel2076,124109 -channel(X0,X1,X2) :-channel2076,124109 -channel(X0,X1,X2) :-channel2076,124109 -count(X0,X1,X2,X3,X4) :-count2109,126032 -count(X0,X1,X2,X3,X4) :-count2109,126032 -count(X0,X1,X2,X3,X4) :-count2109,126032 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2164,129763 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2164,129763 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2164,129763 -binpacking(X0,X1,X2,X3,X4) :-binpacking2241,135918 -binpacking(X0,X1,X2,X3,X4) :-binpacking2241,135918 -binpacking(X0,X1,X2,X3,X4) :-binpacking2241,135918 -extensional(X0,X1,X2) :-extensional2254,136639 -extensional(X0,X1,X2) :-extensional2254,136639 -extensional(X0,X1,X2) :-extensional2254,136639 -linear(X0,X1,X2,X3,X4,X5) :-linear2271,137519 -linear(X0,X1,X2,X3,X4,X5) :-linear2271,137519 -linear(X0,X1,X2,X3,X4,X5) :-linear2271,137519 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2356,143765 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2356,143765 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2356,143765 -div(X0,X1,X2,X3,X4) :-div2383,145599 -div(X0,X1,X2,X3,X4) :-div2383,145599 -div(X0,X1,X2,X3,X4) :-div2383,145599 -sqr(X0,X1,X2,X3) :-sqr2396,146263 -sqr(X0,X1,X2,X3) :-sqr2396,146263 -sqr(X0,X1,X2,X3) :-sqr2396,146263 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2407,146778 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2407,146778 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2407,146778 -unary(X0,X1,X2,X3,X4) :-unary2442,149230 -unary(X0,X1,X2,X3,X4) :-unary2442,149230 -unary(X0,X1,X2,X3,X4) :-unary2442,149230 -sorted(X0,X1,X2,X3) :-sorted2473,151130 -sorted(X0,X1,X2,X3) :-sorted2473,151130 -sorted(X0,X1,X2,X3) :-sorted2473,151130 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2486,151792 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2486,151792 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2486,151792 -assign(X0,X1,X2,X3) :-assign2537,155554 -assign(X0,X1,X2,X3) :-assign2537,155554 -assign(X0,X1,X2,X3) :-assign2537,155554 -element(X0,X1,X2,X3,X4) :-element2590,159184 -element(X0,X1,X2,X3,X4) :-element2590,159184 -element(X0,X1,X2,X3,X4) :-element2590,159184 -sequence(X0,X1,X2) :-sequence2661,164124 -sequence(X0,X1,X2) :-sequence2661,164124 -sequence(X0,X1,X2) :-sequence2661,164124 -branch(X0,X1,X2,X3,X4) :-branch2670,164528 -branch(X0,X1,X2,X3,X4) :-branch2670,164528 -branch(X0,X1,X2,X3,X4) :-branch2670,164528 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2713,167369 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2713,167369 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2713,167369 -pow(X0,X1,X2,X3) :-pow2730,168414 -pow(X0,X1,X2,X3) :-pow2730,168414 -pow(X0,X1,X2,X3) :-pow2730,168414 -precede(X0,X1,X2) :-precede2747,169268 -precede(X0,X1,X2) :-precede2747,169268 -precede(X0,X1,X2) :-precede2747,169268 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2760,169893 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2760,169893 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2760,169893 -distinct(X0,X1,X2,X3) :-distinct2817,173961 -distinct(X0,X1,X2,X3) :-distinct2817,173961 -distinct(X0,X1,X2,X3) :-distinct2817,173961 -min(X0,X1,X2) :-min2828,174511 -min(X0,X1,X2) :-min2828,174511 -min(X0,X1,X2) :-min2828,174511 -sqrt(X0,X1,X2,X3) :-sqrt2845,175338 -sqrt(X0,X1,X2,X3) :-sqrt2845,175338 -sqrt(X0,X1,X2,X3) :-sqrt2845,175338 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2856,175859 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2856,175859 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2856,175859 -unshare(X0,X1,X2) :-unshare2881,177393 -unshare(X0,X1,X2) :-unshare2881,177393 -unshare(X0,X1,X2) :-unshare2881,177393 -path(X0,X1,X2,X3,X4,X5) :-path2894,178027 -path(X0,X1,X2,X3,X4,X5) :-path2894,178027 -path(X0,X1,X2,X3,X4,X5) :-path2894,178027 -divmod(X0,X1,X2,X3,X4) :-divmod2919,179529 -divmod(X0,X1,X2,X3,X4) :-divmod2919,179529 -divmod(X0,X1,X2,X3,X4) :-divmod2919,179529 -branch(X0,X1,X2,X3,X4,X5) :-branch2932,180209 -branch(X0,X1,X2,X3,X4,X5) :-branch2932,180209 -branch(X0,X1,X2,X3,X4,X5) :-branch2932,180209 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2989,184314 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2989,184314 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2989,184314 -cumulative(X0,X1,X2,X3,X4) :-cumulative3010,185809 -cumulative(X0,X1,X2,X3,X4) :-cumulative3010,185809 -cumulative(X0,X1,X2,X3,X4) :-cumulative3010,185809 -member(X0,X1,X2) :-member3031,187048 -member(X0,X1,X2) :-member3031,187048 -member(X0,X1,X2) :-member3031,187048 -count(X0,X1,X2,X3,X4,X5) :-count3044,187666 -count(X0,X1,X2,X3,X4,X5) :-count3044,187666 -count(X0,X1,X2,X3,X4,X5) :-count3044,187666 -pow(X0,X1,X2,X3,X4) :-pow3099,191506 -pow(X0,X1,X2,X3,X4) :-pow3099,191506 -pow(X0,X1,X2,X3,X4) :-pow3099,191506 -notMin(X0,X1,X2) :-notMin3112,192167 -notMin(X0,X1,X2) :-notMin3112,192167 -notMin(X0,X1,X2) :-notMin3112,192167 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3121,192557 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3121,192557 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3121,192557 -branch(X0,X1,X2) :-branch3178,196903 -branch(X0,X1,X2) :-branch3178,196903 -branch(X0,X1,X2) :-branch3178,196903 -dom(X0,X1,X2) :-dom3199,198020 -dom(X0,X1,X2) :-dom3199,198020 -dom(X0,X1,X2) :-dom3199,198020 -linear(X0,X1,X2,X3,X4) :-linear3248,201043 -linear(X0,X1,X2,X3,X4) :-linear3248,201043 -linear(X0,X1,X2,X3,X4) :-linear3248,201043 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3325,206372 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3325,206372 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3325,206372 -element(X0,X1,X2,X3,X4,X5) :-element3342,207404 -element(X0,X1,X2,X3,X4,X5) :-element3342,207404 -element(X0,X1,X2,X3,X4,X5) :-element3342,207404 -rel(X0,X1,X2,X3) :-rel3381,210032 -rel(X0,X1,X2,X3) :-rel3381,210032 -rel(X0,X1,X2,X3) :-rel3381,210032 -min(X0,X1,X2,X3,X4) :-min3478,217003 -min(X0,X1,X2,X3,X4) :-min3478,217003 -min(X0,X1,X2,X3,X4) :-min3478,217003 -count(X0,X1,X2) :-count3491,217667 -count(X0,X1,X2) :-count3491,217667 -count(X0,X1,X2) :-count3491,217667 -ite(X0,X1,X2,X3,X4,X5) :-ite3502,218168 -ite(X0,X1,X2,X3,X4,X5) :-ite3502,218168 -ite(X0,X1,X2,X3,X4,X5) :-ite3502,218168 - -packages/gecode/4.4.0/gecode_yap_auto_generated.yap,35053 -is_RestartMode_('RM_NONE').is_RestartMode_19,883 -is_RestartMode_('RM_NONE').is_RestartMode_19,883 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,911 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,911 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,943 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,943 -is_RestartMode_('RM_LUBY').is_RestartMode_22,973 -is_RestartMode_('RM_LUBY').is_RestartMode_22,973 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,1001 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,1001 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1035 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1035 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1073 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1073 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1119 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1119 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1161 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1161 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1199 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1199 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1248 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1304 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1347 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1347 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1375 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1375 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1403 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1403 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1431 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1431 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1459 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1459 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1487 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1487 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1516 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1516 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1553 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1553 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1590 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1590 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1627 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1627 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1664 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1664 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1701 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1701 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1739 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1797 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1842 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1842 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1867 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1867 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1892 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1892 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1918 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1918 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1952 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1952 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1986 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1986 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2021 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2073 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2112 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2112 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2138 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2138 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2164 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2164 -is_IntRelType_('IRT_LE').is_IntRelType_65,2190 -is_IntRelType_('IRT_LE').is_IntRelType_65,2190 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2216 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2216 -is_IntRelType_('IRT_GR').is_IntRelType_67,2242 -is_IntRelType_('IRT_GR').is_IntRelType_67,2242 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2269 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2269 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2304 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2304 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2339 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2339 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2374 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2374 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2409 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2409 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2444 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2444 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2480 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2534 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2575 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2575 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2602 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2602 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2628 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2628 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2655 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2655 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2682 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2682 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2710 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2710 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2747 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2747 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2782 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2782 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2819 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2819 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2856 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2856 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2894 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2948 -is_IntConLevel_('ICL_VAL').is_IntConLevel_94,2989 -is_IntConLevel_('ICL_VAL').is_IntConLevel_94,2989 -is_IntConLevel_('ICL_BND').is_IntConLevel_95,3017 -is_IntConLevel_('ICL_BND').is_IntConLevel_95,3017 -is_IntConLevel_('ICL_DOM').is_IntConLevel_96,3045 -is_IntConLevel_('ICL_DOM').is_IntConLevel_96,3045 -is_IntConLevel_('ICL_DEF').is_IntConLevel_97,3073 -is_IntConLevel_('ICL_DEF').is_IntConLevel_97,3073 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_99,3102 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_99,3102 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_100,3140 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_100,3140 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_101,3178 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_101,3178 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_102,3216 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_102,3216 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel104,3255 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel105,3311 -is_TaskType_('TT_FIXP').is_TaskType_107,3354 -is_TaskType_('TT_FIXP').is_TaskType_107,3354 -is_TaskType_('TT_FIXS').is_TaskType_108,3379 -is_TaskType_('TT_FIXS').is_TaskType_108,3379 -is_TaskType_('TT_FIXE').is_TaskType_109,3404 -is_TaskType_('TT_FIXE').is_TaskType_109,3404 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_111,3430 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_111,3430 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_112,3465 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_112,3465 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_113,3500 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_113,3500 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType115,3536 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType116,3586 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_118,3623 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_118,3623 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_119,3659 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_119,3659 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_120,3697 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_120,3697 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_122,3737 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_122,3737 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_123,3783 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_123,3783 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_124,3833 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_124,3833 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind126,3886 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind127,3958 -is_SetRelType_('SRT_EQ').is_SetRelType_129,4017 -is_SetRelType_('SRT_EQ').is_SetRelType_129,4017 -is_SetRelType_('SRT_NQ').is_SetRelType_130,4043 -is_SetRelType_('SRT_NQ').is_SetRelType_130,4043 -is_SetRelType_('SRT_SUB').is_SetRelType_131,4069 -is_SetRelType_('SRT_SUB').is_SetRelType_131,4069 -is_SetRelType_('SRT_SUP').is_SetRelType_132,4096 -is_SetRelType_('SRT_SUP').is_SetRelType_132,4096 -is_SetRelType_('SRT_DISJ').is_SetRelType_133,4123 -is_SetRelType_('SRT_DISJ').is_SetRelType_133,4123 -is_SetRelType_('SRT_CMPL').is_SetRelType_134,4151 -is_SetRelType_('SRT_CMPL').is_SetRelType_134,4151 -is_SetRelType_('SRT_LQ').is_SetRelType_135,4179 -is_SetRelType_('SRT_LQ').is_SetRelType_135,4179 -is_SetRelType_('SRT_LE').is_SetRelType_136,4205 -is_SetRelType_('SRT_LE').is_SetRelType_136,4205 -is_SetRelType_('SRT_GQ').is_SetRelType_137,4231 -is_SetRelType_('SRT_GQ').is_SetRelType_137,4231 -is_SetRelType_('SRT_GR').is_SetRelType_138,4257 -is_SetRelType_('SRT_GR').is_SetRelType_138,4257 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_140,4284 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_140,4284 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_141,4319 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_141,4319 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_142,4354 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_142,4354 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_143,4391 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_143,4391 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_144,4428 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_144,4428 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_145,4467 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_145,4467 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_146,4506 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_146,4506 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_147,4541 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_147,4541 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_148,4576 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_148,4576 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_149,4611 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_149,4611 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType151,4647 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType152,4701 -is_SetOpType_('SOT_UNION').is_SetOpType_154,4742 -is_SetOpType_('SOT_UNION').is_SetOpType_154,4742 -is_SetOpType_('SOT_DUNION').is_SetOpType_155,4770 -is_SetOpType_('SOT_DUNION').is_SetOpType_155,4770 -is_SetOpType_('SOT_INTER').is_SetOpType_156,4799 -is_SetOpType_('SOT_INTER').is_SetOpType_156,4799 -is_SetOpType_('SOT_MINUS').is_SetOpType_157,4827 -is_SetOpType_('SOT_MINUS').is_SetOpType_157,4827 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_159,4856 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_159,4856 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_160,4896 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_160,4896 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_161,4938 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_161,4938 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_162,4978 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_162,4978 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType164,5019 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType165,5071 -unary(X0,X1,X2,X3,X4,X5) :-unary167,5110 -unary(X0,X1,X2,X3,X4,X5) :-unary167,5110 -unary(X0,X1,X2,X3,X4,X5) :-unary167,5110 -nvalues(X0,X1,X2,X3,X4) :-nvalues192,6657 -nvalues(X0,X1,X2,X3,X4) :-nvalues192,6657 -nvalues(X0,X1,X2,X3,X4) :-nvalues192,6657 -max(X0,X1,X2,X3) :-max221,8429 -max(X0,X1,X2,X3) :-max221,8429 -max(X0,X1,X2,X3) :-max221,8429 -dom(X0,X1,X2,X3,X4,X5) :-dom250,10063 -dom(X0,X1,X2,X3,X4,X5) :-dom250,10063 -dom(X0,X1,X2,X3,X4,X5) :-dom250,10063 -argmin(X0,X1,X2) :-argmin275,11536 -argmin(X0,X1,X2) :-argmin275,11536 -argmin(X0,X1,X2) :-argmin275,11536 -convex(X0,X1,X2) :-convex284,11929 -convex(X0,X1,X2) :-convex284,11929 -convex(X0,X1,X2) :-convex284,11929 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap293,12318 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap293,12318 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap293,12318 -assign(X0,X1,X2) :-assign306,13029 -assign(X0,X1,X2) :-assign306,13029 -assign(X0,X1,X2) :-assign306,13029 -element(X0,X1,X2,X3) :-element343,15319 -element(X0,X1,X2,X3) :-element343,15319 -element(X0,X1,X2,X3) :-element343,15319 -sequence(X0,X1) :-sequence386,17992 -sequence(X0,X1) :-sequence386,17992 -sequence(X0,X1) :-sequence386,17992 -notMax(X0,X1,X2) :-notMax393,18270 -notMax(X0,X1,X2) :-notMax393,18270 -notMax(X0,X1,X2) :-notMax393,18270 -ite(X0,X1,X2,X3,X4) :-ite402,18660 -ite(X0,X1,X2,X3,X4) :-ite402,18660 -ite(X0,X1,X2,X3,X4) :-ite402,18660 -unary(X0,X1,X2) :-unary415,19320 -unary(X0,X1,X2) :-unary415,19320 -unary(X0,X1,X2) :-unary415,19320 -nroot(X0,X1,X2,X3,X4) :-nroot424,19710 -nroot(X0,X1,X2,X3,X4) :-nroot424,19710 -nroot(X0,X1,X2,X3,X4) :-nroot424,19710 -circuit(X0,X1,X2,X3) :-circuit437,20385 -circuit(X0,X1,X2,X3) :-circuit437,20385 -circuit(X0,X1,X2,X3) :-circuit437,20385 -dom(X0,X1,X2,X3,X4) :-dom454,21286 -dom(X0,X1,X2,X3,X4) :-dom454,21286 -dom(X0,X1,X2,X3,X4) :-dom454,21286 -channel(X0,X1,X2,X3) :-channel517,25362 -channel(X0,X1,X2,X3) :-channel517,25362 -channel(X0,X1,X2,X3) :-channel517,25362 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap540,26654 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap540,26654 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap540,26654 -element(X0,X1,X2,X3,X4,X5,X6) :-element561,28102 -element(X0,X1,X2,X3,X4,X5,X6) :-element561,28102 -element(X0,X1,X2,X3,X4,X5,X6) :-element561,28102 -max(X0,X1,X2) :-max628,33022 -max(X0,X1,X2) :-max628,33022 -max(X0,X1,X2) :-max628,33022 -unshare(X0,X1) :-unshare645,33849 -unshare(X0,X1) :-unshare645,33849 -unshare(X0,X1) :-unshare645,33849 -path(X0,X1,X2,X3,X4) :-path654,34224 -path(X0,X1,X2,X3,X4) :-path654,34224 -path(X0,X1,X2,X3,X4) :-path654,34224 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch675,35398 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch675,35398 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch675,35398 -mult(X0,X1,X2,X3) :-mult716,38283 -mult(X0,X1,X2,X3) :-mult716,38283 -mult(X0,X1,X2,X3) :-mult716,38283 -clause(X0,X1,X2,X3,X4,X5) :-clause733,39154 -clause(X0,X1,X2,X3,X4,X5) :-clause733,39154 -clause(X0,X1,X2,X3,X4,X5) :-clause733,39154 -precede(X0,X1,X2,X3,X4) :-precede752,40304 -precede(X0,X1,X2,X3,X4) :-precede752,40304 -precede(X0,X1,X2,X3,X4) :-precede752,40304 -argmax(X0,X1,X2) :-argmax765,40994 -argmax(X0,X1,X2) :-argmax765,40994 -argmax(X0,X1,X2) :-argmax765,40994 -distinct(X0,X1) :-distinct774,41387 -distinct(X0,X1) :-distinct774,41387 -distinct(X0,X1) :-distinct774,41387 -member(X0,X1,X2,X3) :-member781,41665 -member(X0,X1,X2,X3) :-member781,41665 -member(X0,X1,X2,X3) :-member781,41665 -mod(X0,X1,X2,X3,X4) :-mod802,42808 -mod(X0,X1,X2,X3,X4) :-mod802,42808 -mod(X0,X1,X2,X3,X4) :-mod802,42808 -cardinality(X0,X1,X2) :-cardinality815,43472 -cardinality(X0,X1,X2) :-cardinality815,43472 -cardinality(X0,X1,X2) :-cardinality815,43472 -atmostOne(X0,X1,X2) :-atmostOne824,43886 -atmostOne(X0,X1,X2) :-atmostOne824,43886 -atmostOne(X0,X1,X2) :-atmostOne824,43886 -channelSorted(X0,X1,X2) :-channelSorted833,44291 -channelSorted(X0,X1,X2) :-channelSorted833,44291 -channelSorted(X0,X1,X2) :-channelSorted833,44291 -extensional(X0,X1,X2,X3,X4) :-extensional842,44719 -extensional(X0,X1,X2,X3,X4) :-extensional842,44719 -extensional(X0,X1,X2,X3,X4) :-extensional842,44719 -linear(X0,X1,X2,X3) :-linear863,46009 -linear(X0,X1,X2,X3) :-linear863,46009 -linear(X0,X1,X2,X3) :-linear863,46009 -circuit(X0,X1) :-circuit892,47673 -circuit(X0,X1) :-circuit892,47673 -circuit(X0,X1) :-circuit892,47673 -rel(X0,X1,X2,X3,X4) :-rel899,47946 -rel(X0,X1,X2,X3,X4) :-rel899,47946 -rel(X0,X1,X2,X3,X4) :-rel899,47946 -min(X0,X1,X2,X3) :-min1032,57870 -min(X0,X1,X2,X3) :-min1032,57870 -min(X0,X1,X2,X3) :-min1032,57870 -cardinality(X0,X1,X2,X3) :-cardinality1061,59504 -cardinality(X0,X1,X2,X3) :-cardinality1061,59504 -cardinality(X0,X1,X2,X3) :-cardinality1061,59504 -count(X0,X1,X2,X3) :-count1078,60422 -count(X0,X1,X2,X3) :-count1078,60422 -count(X0,X1,X2,X3) :-count1078,60422 -sqrt(X0,X1,X2) :-sqrt1101,61709 -sqrt(X0,X1,X2) :-sqrt1101,61709 -sqrt(X0,X1,X2) :-sqrt1101,61709 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1114,62307 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1114,62307 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1114,62307 -nvalues(X0,X1,X2,X3) :-nvalues1207,70179 -nvalues(X0,X1,X2,X3) :-nvalues1207,70179 -nvalues(X0,X1,X2,X3) :-nvalues1207,70179 -binpacking(X0,X1,X2,X3) :-binpacking1228,71326 -binpacking(X0,X1,X2,X3) :-binpacking1228,71326 -binpacking(X0,X1,X2,X3) :-binpacking1228,71326 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1239,71886 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1239,71886 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1239,71886 -abs(X0,X1,X2,X3) :-abs1278,74598 -abs(X0,X1,X2,X3) :-abs1278,74598 -abs(X0,X1,X2,X3) :-abs1278,74598 -convex(X0,X1) :-convex1289,75112 -convex(X0,X1) :-convex1289,75112 -convex(X0,X1) :-convex1289,75112 -div(X0,X1,X2,X3) :-div1296,75377 -div(X0,X1,X2,X3) :-div1296,75377 -div(X0,X1,X2,X3) :-div1296,75377 -rel(X0,X1,X2,X3,X4,X5) :-rel1313,76239 -rel(X0,X1,X2,X3,X4,X5) :-rel1313,76239 -rel(X0,X1,X2,X3,X4,X5) :-rel1313,76239 -weights(X0,X1,X2,X3,X4) :-weights1394,81956 -weights(X0,X1,X2,X3,X4) :-weights1394,81956 -weights(X0,X1,X2,X3,X4) :-weights1394,81956 -max(X0,X1,X2,X3,X4) :-max1407,82645 -max(X0,X1,X2,X3,X4) :-max1407,82645 -max(X0,X1,X2,X3,X4) :-max1407,82645 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1420,83309 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1420,83309 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1420,83309 -unary(X0,X1,X2,X3) :-unary1441,84726 -unary(X0,X1,X2,X3) :-unary1441,84726 -unary(X0,X1,X2,X3) :-unary1441,84726 -nroot(X0,X1,X2,X3) :-nroot1464,86020 -nroot(X0,X1,X2,X3) :-nroot1464,86020 -nroot(X0,X1,X2,X3) :-nroot1464,86020 -sorted(X0,X1,X2,X3,X4) :-sorted1481,86892 -sorted(X0,X1,X2,X3,X4) :-sorted1481,86892 -sorted(X0,X1,X2,X3,X4) :-sorted1481,86892 -circuit(X0,X1,X2,X3,X4) :-circuit1494,87589 -circuit(X0,X1,X2,X3,X4) :-circuit1494,87589 -circuit(X0,X1,X2,X3,X4) :-circuit1494,87589 -dom(X0,X1,X2,X3) :-dom1517,88959 -dom(X0,X1,X2,X3) :-dom1517,88959 -dom(X0,X1,X2,X3) :-dom1517,88959 -abs(X0,X1,X2) :-abs1602,94918 -abs(X0,X1,X2) :-abs1602,94918 -abs(X0,X1,X2) :-abs1602,94918 -channel(X0,X1,X2,X3,X4) :-channel1615,95507 -channel(X0,X1,X2,X3,X4) :-channel1615,95507 -channel(X0,X1,X2,X3,X4) :-channel1615,95507 -assign(X0,X1,X2,X3,X4) :-assign1636,96711 -assign(X0,X1,X2,X3,X4) :-assign1636,96711 -assign(X0,X1,X2,X3,X4) :-assign1636,96711 -rel(X0,X1,X2) :-rel1673,99106 -rel(X0,X1,X2) :-rel1673,99106 -rel(X0,X1,X2) :-rel1673,99106 -path(X0,X1,X2,X3) :-path1686,99710 -path(X0,X1,X2,X3) :-path1686,99710 -path(X0,X1,X2,X3) :-path1686,99710 -branch(X0,X1,X2,X3) :-branch1697,100230 -branch(X0,X1,X2,X3) :-branch1697,100230 -branch(X0,X1,X2,X3) :-branch1697,100230 -mult(X0,X1,X2,X3,X4) :-mult1750,103874 -mult(X0,X1,X2,X3,X4) :-mult1750,103874 -mult(X0,X1,X2,X3,X4) :-mult1750,103874 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1763,104545 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1763,104545 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1763,104545 -clause(X0,X1,X2,X3,X4) :-clause1790,106260 -clause(X0,X1,X2,X3,X4) :-clause1790,106260 -clause(X0,X1,X2,X3,X4) :-clause1790,106260 -precede(X0,X1,X2,X3) :-precede1805,107078 -precede(X0,X1,X2,X3) :-precede1805,107078 -precede(X0,X1,X2,X3) :-precede1805,107078 -channel(X0,X1,X2,X3,X4,X5) :-channel1826,108230 -channel(X0,X1,X2,X3,X4,X5) :-channel1826,108230 -channel(X0,X1,X2,X3,X4,X5) :-channel1826,108230 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1841,109090 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1841,109090 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1841,109090 -distinct(X0,X1,X2) :-distinct1914,114633 -distinct(X0,X1,X2) :-distinct1914,114633 -distinct(X0,X1,X2) :-distinct1914,114633 -member(X0,X1,X2,X3,X4) :-member1927,115269 -member(X0,X1,X2,X3,X4) :-member1927,115269 -member(X0,X1,X2,X3,X4) :-member1927,115269 -mod(X0,X1,X2,X3) :-mod1948,116473 -mod(X0,X1,X2,X3) :-mod1948,116473 -mod(X0,X1,X2,X3) :-mod1948,116473 -sqr(X0,X1,X2) :-sqr1959,116983 -sqr(X0,X1,X2) :-sqr1959,116983 -sqr(X0,X1,X2) :-sqr1959,116983 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1972,117574 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1972,117574 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1972,117574 -path(X0,X1,X2,X3,X4,X5,X6) :-path2001,119481 -path(X0,X1,X2,X3,X4,X5,X6) :-path2001,119481 -path(X0,X1,X2,X3,X4,X5,X6) :-path2001,119481 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2032,121538 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2032,121538 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2032,121538 -sorted(X0,X1,X2) :-sorted2047,122389 -sorted(X0,X1,X2) :-sorted2047,122389 -sorted(X0,X1,X2) :-sorted2047,122389 -extensional(X0,X1,X2,X3) :-extensional2056,122787 -extensional(X0,X1,X2,X3) :-extensional2056,122787 -extensional(X0,X1,X2,X3) :-extensional2056,122787 -circuit(X0,X1,X2) :-circuit2081,124274 -circuit(X0,X1,X2) :-circuit2081,124274 -circuit(X0,X1,X2) :-circuit2081,124274 -argmin(X0,X1,X2,X3) :-argmin2094,124897 -argmin(X0,X1,X2,X3) :-argmin2094,124897 -argmin(X0,X1,X2,X3) :-argmin2094,124897 -channel(X0,X1,X2) :-channel2105,125426 -channel(X0,X1,X2) :-channel2105,125426 -channel(X0,X1,X2) :-channel2105,125426 -count(X0,X1,X2,X3,X4) :-count2138,127349 -count(X0,X1,X2,X3,X4) :-count2138,127349 -count(X0,X1,X2,X3,X4) :-count2138,127349 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2193,131082 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2193,131082 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2193,131082 -binpacking(X0,X1,X2,X3,X4) :-binpacking2270,137237 -binpacking(X0,X1,X2,X3,X4) :-binpacking2270,137237 -binpacking(X0,X1,X2,X3,X4) :-binpacking2270,137237 -extensional(X0,X1,X2) :-extensional2283,137958 -extensional(X0,X1,X2) :-extensional2283,137958 -extensional(X0,X1,X2) :-extensional2283,137958 -linear(X0,X1,X2,X3,X4,X5) :-linear2300,138838 -linear(X0,X1,X2,X3,X4,X5) :-linear2300,138838 -linear(X0,X1,X2,X3,X4,X5) :-linear2300,138838 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2385,145084 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2385,145084 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2385,145084 -div(X0,X1,X2,X3,X4) :-div2412,146918 -div(X0,X1,X2,X3,X4) :-div2412,146918 -div(X0,X1,X2,X3,X4) :-div2412,146918 -sqr(X0,X1,X2,X3) :-sqr2425,147582 -sqr(X0,X1,X2,X3) :-sqr2425,147582 -sqr(X0,X1,X2,X3) :-sqr2425,147582 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2436,148097 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2436,148097 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2436,148097 -unary(X0,X1,X2,X3,X4) :-unary2471,150549 -unary(X0,X1,X2,X3,X4) :-unary2471,150549 -unary(X0,X1,X2,X3,X4) :-unary2471,150549 -sorted(X0,X1,X2,X3) :-sorted2502,152449 -sorted(X0,X1,X2,X3) :-sorted2502,152449 -sorted(X0,X1,X2,X3) :-sorted2502,152449 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2515,153111 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2515,153111 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2515,153111 -assign(X0,X1,X2,X3) :-assign2566,156873 -assign(X0,X1,X2,X3) :-assign2566,156873 -assign(X0,X1,X2,X3) :-assign2566,156873 -element(X0,X1,X2,X3,X4) :-element2619,160503 -element(X0,X1,X2,X3,X4) :-element2619,160503 -element(X0,X1,X2,X3,X4) :-element2619,160503 -sequence(X0,X1,X2) :-sequence2690,165443 -sequence(X0,X1,X2) :-sequence2690,165443 -sequence(X0,X1,X2) :-sequence2690,165443 -branch(X0,X1,X2,X3,X4) :-branch2699,165847 -branch(X0,X1,X2,X3,X4) :-branch2699,165847 -branch(X0,X1,X2,X3,X4) :-branch2699,165847 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2742,168688 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2742,168688 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2742,168688 -pow(X0,X1,X2,X3) :-pow2759,169733 -pow(X0,X1,X2,X3) :-pow2759,169733 -pow(X0,X1,X2,X3) :-pow2759,169733 -precede(X0,X1,X2) :-precede2776,170587 -precede(X0,X1,X2) :-precede2776,170587 -precede(X0,X1,X2) :-precede2776,170587 -argmax(X0,X1,X2,X3,X4) :-argmax2789,171212 -argmax(X0,X1,X2,X3,X4) :-argmax2789,171212 -argmax(X0,X1,X2,X3,X4) :-argmax2789,171212 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2802,171898 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2802,171898 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2802,171898 -distinct(X0,X1,X2,X3) :-distinct2859,175966 -distinct(X0,X1,X2,X3) :-distinct2859,175966 -distinct(X0,X1,X2,X3) :-distinct2859,175966 -min(X0,X1,X2) :-min2870,176516 -min(X0,X1,X2) :-min2870,176516 -min(X0,X1,X2) :-min2870,176516 -sqrt(X0,X1,X2,X3) :-sqrt2887,177343 -sqrt(X0,X1,X2,X3) :-sqrt2887,177343 -sqrt(X0,X1,X2,X3) :-sqrt2887,177343 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2898,177864 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2898,177864 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2898,177864 -unshare(X0,X1,X2) :-unshare2923,179398 -unshare(X0,X1,X2) :-unshare2923,179398 -unshare(X0,X1,X2) :-unshare2923,179398 -path(X0,X1,X2,X3,X4,X5) :-path2936,180032 -path(X0,X1,X2,X3,X4,X5) :-path2936,180032 -path(X0,X1,X2,X3,X4,X5) :-path2936,180032 -divmod(X0,X1,X2,X3,X4) :-divmod2961,181534 -divmod(X0,X1,X2,X3,X4) :-divmod2961,181534 -divmod(X0,X1,X2,X3,X4) :-divmod2961,181534 -branch(X0,X1,X2,X3,X4,X5) :-branch2974,182214 -branch(X0,X1,X2,X3,X4,X5) :-branch2974,182214 -branch(X0,X1,X2,X3,X4,X5) :-branch2974,182214 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap3031,186319 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap3031,186319 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap3031,186319 -argmin(X0,X1,X2,X3,X4) :-argmin3052,187814 -argmin(X0,X1,X2,X3,X4) :-argmin3052,187814 -argmin(X0,X1,X2,X3,X4) :-argmin3052,187814 -cumulative(X0,X1,X2,X3,X4) :-cumulative3065,188500 -cumulative(X0,X1,X2,X3,X4) :-cumulative3065,188500 -cumulative(X0,X1,X2,X3,X4) :-cumulative3065,188500 -member(X0,X1,X2) :-member3086,189739 -member(X0,X1,X2) :-member3086,189739 -member(X0,X1,X2) :-member3086,189739 -count(X0,X1,X2,X3,X4,X5) :-count3099,190357 -count(X0,X1,X2,X3,X4,X5) :-count3099,190357 -count(X0,X1,X2,X3,X4,X5) :-count3099,190357 -pow(X0,X1,X2,X3,X4) :-pow3154,194198 -pow(X0,X1,X2,X3,X4) :-pow3154,194198 -pow(X0,X1,X2,X3,X4) :-pow3154,194198 -notMin(X0,X1,X2) :-notMin3167,194859 -notMin(X0,X1,X2) :-notMin3167,194859 -notMin(X0,X1,X2) :-notMin3167,194859 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3176,195249 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3176,195249 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3176,195249 -branch(X0,X1,X2) :-branch3233,199595 -branch(X0,X1,X2) :-branch3233,199595 -branch(X0,X1,X2) :-branch3233,199595 -dom(X0,X1,X2) :-dom3254,200712 -dom(X0,X1,X2) :-dom3254,200712 -dom(X0,X1,X2) :-dom3254,200712 -linear(X0,X1,X2,X3,X4) :-linear3303,203735 -linear(X0,X1,X2,X3,X4) :-linear3303,203735 -linear(X0,X1,X2,X3,X4) :-linear3303,203735 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3380,209064 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3380,209064 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3380,209064 -element(X0,X1,X2,X3,X4,X5) :-element3397,210096 -element(X0,X1,X2,X3,X4,X5) :-element3397,210096 -element(X0,X1,X2,X3,X4,X5) :-element3397,210096 -rel(X0,X1,X2,X3) :-rel3436,212724 -rel(X0,X1,X2,X3) :-rel3436,212724 -rel(X0,X1,X2,X3) :-rel3436,212724 -min(X0,X1,X2,X3,X4) :-min3533,219695 -min(X0,X1,X2,X3,X4) :-min3533,219695 -min(X0,X1,X2,X3,X4) :-min3533,219695 -count(X0,X1,X2) :-count3546,220359 -count(X0,X1,X2) :-count3546,220359 -count(X0,X1,X2) :-count3546,220359 -argmax(X0,X1,X2,X3) :-argmax3557,220861 -argmax(X0,X1,X2,X3) :-argmax3557,220861 -argmax(X0,X1,X2,X3) :-argmax3557,220861 -ite(X0,X1,X2,X3,X4,X5) :-ite3568,221390 -ite(X0,X1,X2,X3,X4,X5) :-ite3568,221390 -ite(X0,X1,X2,X3,X4,X5) :-ite3568,221390 - -packages/gecode/5.0.0/gecode_yap_auto_generated.yap,36283 -is_RestartMode_('RM_NONE').is_RestartMode_19,881 -is_RestartMode_('RM_NONE').is_RestartMode_19,881 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,909 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,909 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,941 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,941 -is_RestartMode_('RM_LUBY').is_RestartMode_22,971 -is_RestartMode_('RM_LUBY').is_RestartMode_22,971 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,999 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,999 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1033 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1033 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1071 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1071 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1117 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1117 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1159 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1159 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1197 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1197 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1345 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1345 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1373 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1373 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1401 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1401 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1429 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1429 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1457 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1457 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1485 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1485 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1514 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1514 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1551 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1551 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1588 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1588 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1625 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1625 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1662 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1662 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1699 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1699 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1840 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1840 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1865 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1865 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1890 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1890 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1916 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1916 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1950 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1950 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1984 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1984 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2110 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2110 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2136 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2136 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2162 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2162 -is_IntRelType_('IRT_LE').is_IntRelType_65,2188 -is_IntRelType_('IRT_LE').is_IntRelType_65,2188 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2214 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2214 -is_IntRelType_('IRT_GR').is_IntRelType_67,2240 -is_IntRelType_('IRT_GR').is_IntRelType_67,2240 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2267 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2267 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2302 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2302 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2337 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2337 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2372 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2372 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2407 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2407 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2442 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2442 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2573 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2573 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2600 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2600 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2626 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2626 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2653 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2653 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2680 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2680 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2708 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2708 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2745 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2745 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2780 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2780 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2817 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2817 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2854 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2854 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_IntPropLevel_('IPL_DEF').is_IntPropLevel_94,2987 -is_IntPropLevel_('IPL_DEF').is_IntPropLevel_94,2987 -is_IntPropLevel_('IPL_VAL').is_IntPropLevel_95,3016 -is_IntPropLevel_('IPL_VAL').is_IntPropLevel_95,3016 -is_IntPropLevel_('IPL_BND').is_IntPropLevel_96,3045 -is_IntPropLevel_('IPL_BND').is_IntPropLevel_96,3045 -is_IntPropLevel_('IPL_DOM').is_IntPropLevel_97,3074 -is_IntPropLevel_('IPL_DOM').is_IntPropLevel_97,3074 -is_IntPropLevel_('IPL_SPEED').is_IntPropLevel_98,3103 -is_IntPropLevel_('IPL_SPEED').is_IntPropLevel_98,3103 -is_IntPropLevel_('IPL_MEMORY').is_IntPropLevel_99,3134 -is_IntPropLevel_('IPL_MEMORY').is_IntPropLevel_99,3134 -is_IntPropLevel_('IPL_BASIC').is_IntPropLevel_100,3166 -is_IntPropLevel_('IPL_BASIC').is_IntPropLevel_100,3166 -is_IntPropLevel_('IPL_ADVANCED').is_IntPropLevel_101,3197 -is_IntPropLevel_('IPL_ADVANCED').is_IntPropLevel_101,3197 -is_IntPropLevel_('IPL_BASIC_ADVANCED').is_IntPropLevel_102,3231 -is_IntPropLevel_('IPL_BASIC_ADVANCED').is_IntPropLevel_102,3231 -is_IntPropLevel_('IPL_DEF','IPL_DEF').is_IntPropLevel_104,3272 -is_IntPropLevel_('IPL_DEF','IPL_DEF').is_IntPropLevel_104,3272 -is_IntPropLevel_('IPL_VAL','IPL_VAL').is_IntPropLevel_105,3311 -is_IntPropLevel_('IPL_VAL','IPL_VAL').is_IntPropLevel_105,3311 -is_IntPropLevel_('IPL_BND','IPL_BND').is_IntPropLevel_106,3350 -is_IntPropLevel_('IPL_BND','IPL_BND').is_IntPropLevel_106,3350 -is_IntPropLevel_('IPL_DOM','IPL_DOM').is_IntPropLevel_107,3389 -is_IntPropLevel_('IPL_DOM','IPL_DOM').is_IntPropLevel_107,3389 -is_IntPropLevel_('IPL_SPEED','IPL_SPEED').is_IntPropLevel_108,3428 -is_IntPropLevel_('IPL_SPEED','IPL_SPEED').is_IntPropLevel_108,3428 -is_IntPropLevel_('IPL_MEMORY','IPL_MEMORY').is_IntPropLevel_109,3471 -is_IntPropLevel_('IPL_MEMORY','IPL_MEMORY').is_IntPropLevel_109,3471 -is_IntPropLevel_('IPL_BASIC','IPL_BASIC').is_IntPropLevel_110,3516 -is_IntPropLevel_('IPL_BASIC','IPL_BASIC').is_IntPropLevel_110,3516 -is_IntPropLevel_('IPL_ADVANCED','IPL_ADVANCED').is_IntPropLevel_111,3559 -is_IntPropLevel_('IPL_ADVANCED','IPL_ADVANCED').is_IntPropLevel_111,3559 -is_IntPropLevel_('IPL_BASIC_ADVANCED','IPL_BASIC_ADVANCED').is_IntPropLevel_112,3608 -is_IntPropLevel_('IPL_BASIC_ADVANCED','IPL_BASIC_ADVANCED').is_IntPropLevel_112,3608 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_TaskType_('TT_FIXP').is_TaskType_117,3773 -is_TaskType_('TT_FIXP').is_TaskType_117,3773 -is_TaskType_('TT_FIXS').is_TaskType_118,3798 -is_TaskType_('TT_FIXS').is_TaskType_118,3798 -is_TaskType_('TT_FIXE').is_TaskType_119,3823 -is_TaskType_('TT_FIXE').is_TaskType_119,3823 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_121,3849 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_121,3849 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_122,3884 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_122,3884 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_123,3919 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_123,3919 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TraceEvent_('TE_INIT').is_TraceEvent_128,4042 -is_TraceEvent_('TE_INIT').is_TraceEvent_128,4042 -is_TraceEvent_('TE_PRUNE').is_TraceEvent_129,4069 -is_TraceEvent_('TE_PRUNE').is_TraceEvent_129,4069 -is_TraceEvent_('TE_FIX').is_TraceEvent_130,4097 -is_TraceEvent_('TE_FIX').is_TraceEvent_130,4097 -is_TraceEvent_('TE_DONE').is_TraceEvent_131,4123 -is_TraceEvent_('TE_DONE').is_TraceEvent_131,4123 -is_TraceEvent_('TE_INIT','TE_INIT').is_TraceEvent_133,4151 -is_TraceEvent_('TE_INIT','TE_INIT').is_TraceEvent_133,4151 -is_TraceEvent_('TE_PRUNE','TE_PRUNE').is_TraceEvent_134,4188 -is_TraceEvent_('TE_PRUNE','TE_PRUNE').is_TraceEvent_134,4188 -is_TraceEvent_('TE_FIX','TE_FIX').is_TraceEvent_135,4227 -is_TraceEvent_('TE_FIX','TE_FIX').is_TraceEvent_135,4227 -is_TraceEvent_('TE_DONE','TE_DONE').is_TraceEvent_136,4262 -is_TraceEvent_('TE_DONE','TE_DONE').is_TraceEvent_136,4262 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent138,4300 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent138,4300 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent138,4300 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent138,4300 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent138,4300 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent139,4354 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent139,4354 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent139,4354 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent139,4354 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent139,4354 -is_SetRelType_('SRT_EQ').is_SetRelType_141,4395 -is_SetRelType_('SRT_EQ').is_SetRelType_141,4395 -is_SetRelType_('SRT_NQ').is_SetRelType_142,4421 -is_SetRelType_('SRT_NQ').is_SetRelType_142,4421 -is_SetRelType_('SRT_SUB').is_SetRelType_143,4447 -is_SetRelType_('SRT_SUB').is_SetRelType_143,4447 -is_SetRelType_('SRT_SUP').is_SetRelType_144,4474 -is_SetRelType_('SRT_SUP').is_SetRelType_144,4474 -is_SetRelType_('SRT_DISJ').is_SetRelType_145,4501 -is_SetRelType_('SRT_DISJ').is_SetRelType_145,4501 -is_SetRelType_('SRT_CMPL').is_SetRelType_146,4529 -is_SetRelType_('SRT_CMPL').is_SetRelType_146,4529 -is_SetRelType_('SRT_LQ').is_SetRelType_147,4557 -is_SetRelType_('SRT_LQ').is_SetRelType_147,4557 -is_SetRelType_('SRT_LE').is_SetRelType_148,4583 -is_SetRelType_('SRT_LE').is_SetRelType_148,4583 -is_SetRelType_('SRT_GQ').is_SetRelType_149,4609 -is_SetRelType_('SRT_GQ').is_SetRelType_149,4609 -is_SetRelType_('SRT_GR').is_SetRelType_150,4635 -is_SetRelType_('SRT_GR').is_SetRelType_150,4635 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_152,4662 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_152,4662 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_153,4697 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_153,4697 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_154,4732 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_154,4732 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_155,4769 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_155,4769 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_156,4806 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_156,4806 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_157,4845 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_157,4845 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_158,4884 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_158,4884 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_159,4919 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_159,4919 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_160,4954 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_160,4954 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_161,4989 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_161,4989 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType163,5025 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType163,5025 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType163,5025 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType163,5025 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType163,5025 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType164,5079 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType164,5079 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType164,5079 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType164,5079 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType164,5079 -is_SetOpType_('SOT_UNION').is_SetOpType_166,5120 -is_SetOpType_('SOT_UNION').is_SetOpType_166,5120 -is_SetOpType_('SOT_DUNION').is_SetOpType_167,5148 -is_SetOpType_('SOT_DUNION').is_SetOpType_167,5148 -is_SetOpType_('SOT_INTER').is_SetOpType_168,5177 -is_SetOpType_('SOT_INTER').is_SetOpType_168,5177 -is_SetOpType_('SOT_MINUS').is_SetOpType_169,5205 -is_SetOpType_('SOT_MINUS').is_SetOpType_169,5205 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_171,5234 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_171,5234 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_172,5274 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_172,5274 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_173,5316 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_173,5316 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_174,5356 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_174,5356 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType176,5397 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType176,5397 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType176,5397 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType176,5397 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType176,5397 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType177,5449 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType177,5449 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType177,5449 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType177,5449 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType177,5449 -unary(X0,X1,X2,X3,X4,X5) :-unary179,5488 -unary(X0,X1,X2,X3,X4,X5) :-unary179,5488 -unary(X0,X1,X2,X3,X4,X5) :-unary179,5488 -nvalues(X0,X1,X2,X3,X4) :-nvalues204,7037 -nvalues(X0,X1,X2,X3,X4) :-nvalues204,7037 -nvalues(X0,X1,X2,X3,X4) :-nvalues204,7037 -max(X0,X1,X2,X3) :-max233,8813 -max(X0,X1,X2,X3) :-max233,8813 -max(X0,X1,X2,X3) :-max233,8813 -dom(X0,X1,X2,X3,X4,X5) :-dom262,10448 -dom(X0,X1,X2,X3,X4,X5) :-dom262,10448 -dom(X0,X1,X2,X3,X4,X5) :-dom262,10448 -argmin(X0,X1,X2) :-argmin287,11922 -argmin(X0,X1,X2) :-argmin287,11922 -argmin(X0,X1,X2) :-argmin287,11922 -convex(X0,X1,X2) :-convex296,12315 -convex(X0,X1,X2) :-convex296,12315 -convex(X0,X1,X2) :-convex296,12315 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap305,12705 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap305,12705 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap305,12705 -assign(X0,X1,X2) :-assign318,13416 -assign(X0,X1,X2) :-assign318,13416 -assign(X0,X1,X2) :-assign318,13416 -element(X0,X1,X2,X3) :-element355,15710 -element(X0,X1,X2,X3) :-element355,15710 -element(X0,X1,X2,X3) :-element355,15710 -sequence(X0,X1) :-sequence398,18383 -sequence(X0,X1) :-sequence398,18383 -sequence(X0,X1) :-sequence398,18383 -notMax(X0,X1,X2) :-notMax405,18661 -notMax(X0,X1,X2) :-notMax405,18661 -notMax(X0,X1,X2) :-notMax405,18661 -ite(X0,X1,X2,X3,X4) :-ite414,19051 -ite(X0,X1,X2,X3,X4) :-ite414,19051 -ite(X0,X1,X2,X3,X4) :-ite414,19051 -unary(X0,X1,X2) :-unary427,19711 -unary(X0,X1,X2) :-unary427,19711 -unary(X0,X1,X2) :-unary427,19711 -nroot(X0,X1,X2,X3,X4) :-nroot436,20101 -nroot(X0,X1,X2,X3,X4) :-nroot436,20101 -nroot(X0,X1,X2,X3,X4) :-nroot436,20101 -circuit(X0,X1,X2,X3) :-circuit449,20777 -circuit(X0,X1,X2,X3) :-circuit449,20777 -circuit(X0,X1,X2,X3) :-circuit449,20777 -dom(X0,X1,X2,X3,X4) :-dom466,21679 -dom(X0,X1,X2,X3,X4) :-dom466,21679 -dom(X0,X1,X2,X3,X4) :-dom466,21679 -argmax(X0,X1,X2,X3,X4,X5) :-argmax529,25759 -argmax(X0,X1,X2,X3,X4,X5) :-argmax529,25759 -argmax(X0,X1,X2,X3,X4,X5) :-argmax529,25759 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap544,26608 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap544,26608 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap544,26608 -element(X0,X1,X2,X3,X4,X5,X6) :-element565,28057 -element(X0,X1,X2,X3,X4,X5,X6) :-element565,28057 -element(X0,X1,X2,X3,X4,X5,X6) :-element565,28057 -max(X0,X1,X2) :-max632,32977 -max(X0,X1,X2) :-max632,32977 -max(X0,X1,X2) :-max632,32977 -unshare(X0,X1) :-unshare649,33804 -unshare(X0,X1) :-unshare649,33804 -unshare(X0,X1) :-unshare649,33804 -path(X0,X1,X2,X3,X4) :-path658,34179 -path(X0,X1,X2,X3,X4) :-path658,34179 -path(X0,X1,X2,X3,X4) :-path658,34179 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch679,35354 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch679,35354 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch679,35354 -mult(X0,X1,X2,X3) :-mult720,38239 -mult(X0,X1,X2,X3) :-mult720,38239 -mult(X0,X1,X2,X3) :-mult720,38239 -clause(X0,X1,X2,X3,X4,X5) :-clause737,39110 -clause(X0,X1,X2,X3,X4,X5) :-clause737,39110 -clause(X0,X1,X2,X3,X4,X5) :-clause737,39110 -precede(X0,X1,X2,X3,X4) :-precede756,40264 -precede(X0,X1,X2,X3,X4) :-precede756,40264 -precede(X0,X1,X2,X3,X4) :-precede756,40264 -argmax(X0,X1,X2) :-argmax769,40955 -argmax(X0,X1,X2) :-argmax769,40955 -argmax(X0,X1,X2) :-argmax769,40955 -distinct(X0,X1) :-distinct778,41347 -distinct(X0,X1) :-distinct778,41347 -distinct(X0,X1) :-distinct778,41347 -member(X0,X1,X2,X3) :-member785,41625 -member(X0,X1,X2,X3) :-member785,41625 -member(X0,X1,X2,X3) :-member785,41625 -mod(X0,X1,X2,X3,X4) :-mod806,42770 -mod(X0,X1,X2,X3,X4) :-mod806,42770 -mod(X0,X1,X2,X3,X4) :-mod806,42770 -cardinality(X0,X1,X2) :-cardinality819,43435 -cardinality(X0,X1,X2) :-cardinality819,43435 -cardinality(X0,X1,X2) :-cardinality819,43435 -atmostOne(X0,X1,X2) :-atmostOne828,43849 -atmostOne(X0,X1,X2) :-atmostOne828,43849 -atmostOne(X0,X1,X2) :-atmostOne828,43849 -channelSorted(X0,X1,X2) :-channelSorted837,44254 -channelSorted(X0,X1,X2) :-channelSorted837,44254 -channelSorted(X0,X1,X2) :-channelSorted837,44254 -linear(X0,X1,X2,X3) :-linear846,44682 -linear(X0,X1,X2,X3) :-linear846,44682 -linear(X0,X1,X2,X3) :-linear846,44682 -circuit(X0,X1) :-circuit875,46346 -circuit(X0,X1) :-circuit875,46346 -circuit(X0,X1) :-circuit875,46346 -rel(X0,X1,X2,X3,X4) :-rel882,46619 -rel(X0,X1,X2,X3,X4) :-rel882,46619 -rel(X0,X1,X2,X3,X4) :-rel882,46619 -min(X0,X1,X2,X3) :-min1015,56475 -min(X0,X1,X2,X3) :-min1015,56475 -min(X0,X1,X2,X3) :-min1015,56475 -cardinality(X0,X1,X2,X3) :-cardinality1044,58110 -cardinality(X0,X1,X2,X3) :-cardinality1044,58110 -cardinality(X0,X1,X2,X3) :-cardinality1044,58110 -count(X0,X1,X2,X3) :-count1061,59028 -count(X0,X1,X2,X3) :-count1061,59028 -count(X0,X1,X2,X3) :-count1061,59028 -sqrt(X0,X1,X2) :-sqrt1084,60317 -sqrt(X0,X1,X2) :-sqrt1084,60317 -sqrt(X0,X1,X2) :-sqrt1084,60317 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1097,60915 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1097,60915 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1097,60915 -nvalues(X0,X1,X2,X3) :-nvalues1190,68795 -nvalues(X0,X1,X2,X3) :-nvalues1190,68795 -nvalues(X0,X1,X2,X3) :-nvalues1190,68795 -binpacking(X0,X1,X2,X3) :-binpacking1211,69942 -binpacking(X0,X1,X2,X3) :-binpacking1211,69942 -binpacking(X0,X1,X2,X3) :-binpacking1211,69942 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1222,70502 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1222,70502 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1222,70502 -abs(X0,X1,X2,X3) :-abs1261,73218 -abs(X0,X1,X2,X3) :-abs1261,73218 -abs(X0,X1,X2,X3) :-abs1261,73218 -convex(X0,X1) :-convex1272,73732 -convex(X0,X1) :-convex1272,73732 -convex(X0,X1) :-convex1272,73732 -div(X0,X1,X2,X3) :-div1279,73998 -div(X0,X1,X2,X3) :-div1279,73998 -div(X0,X1,X2,X3) :-div1279,73998 -rel(X0,X1,X2,X3,X4,X5) :-rel1296,74860 -rel(X0,X1,X2,X3,X4,X5) :-rel1296,74860 -rel(X0,X1,X2,X3,X4,X5) :-rel1296,74860 -weights(X0,X1,X2,X3,X4) :-weights1377,80583 -weights(X0,X1,X2,X3,X4) :-weights1377,80583 -weights(X0,X1,X2,X3,X4) :-weights1377,80583 -max(X0,X1,X2,X3,X4) :-max1390,81272 -max(X0,X1,X2,X3,X4) :-max1390,81272 -max(X0,X1,X2,X3,X4) :-max1390,81272 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1403,81937 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1403,81937 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1403,81937 -unary(X0,X1,X2,X3) :-unary1424,83355 -unary(X0,X1,X2,X3) :-unary1424,83355 -unary(X0,X1,X2,X3) :-unary1424,83355 -nroot(X0,X1,X2,X3) :-nroot1447,84650 -nroot(X0,X1,X2,X3) :-nroot1447,84650 -nroot(X0,X1,X2,X3) :-nroot1447,84650 -sorted(X0,X1,X2,X3,X4) :-sorted1464,85522 -sorted(X0,X1,X2,X3,X4) :-sorted1464,85522 -sorted(X0,X1,X2,X3,X4) :-sorted1464,85522 -circuit(X0,X1,X2,X3,X4) :-circuit1477,86220 -circuit(X0,X1,X2,X3,X4) :-circuit1477,86220 -circuit(X0,X1,X2,X3,X4) :-circuit1477,86220 -dom(X0,X1,X2,X3) :-dom1500,87591 -dom(X0,X1,X2,X3) :-dom1500,87591 -dom(X0,X1,X2,X3) :-dom1500,87591 -abs(X0,X1,X2) :-abs1585,93574 -abs(X0,X1,X2) :-abs1585,93574 -abs(X0,X1,X2) :-abs1585,93574 -channel(X0,X1,X2,X3,X4) :-channel1598,94161 -channel(X0,X1,X2,X3,X4) :-channel1598,94161 -channel(X0,X1,X2,X3,X4) :-channel1598,94161 -assign(X0,X1,X2,X3,X4) :-assign1619,95366 -assign(X0,X1,X2,X3,X4) :-assign1619,95366 -assign(X0,X1,X2,X3,X4) :-assign1619,95366 -rel(X0,X1,X2) :-rel1656,97763 -rel(X0,X1,X2) :-rel1656,97763 -rel(X0,X1,X2) :-rel1656,97763 -path(X0,X1,X2,X3) :-path1669,98367 -path(X0,X1,X2,X3) :-path1669,98367 -path(X0,X1,X2,X3) :-path1669,98367 -branch(X0,X1,X2,X3) :-branch1680,98887 -branch(X0,X1,X2,X3) :-branch1680,98887 -branch(X0,X1,X2,X3) :-branch1680,98887 -mult(X0,X1,X2,X3,X4) :-mult1733,102531 -mult(X0,X1,X2,X3,X4) :-mult1733,102531 -mult(X0,X1,X2,X3,X4) :-mult1733,102531 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1746,103203 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1746,103203 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1746,103203 -clause(X0,X1,X2,X3,X4) :-clause1773,104920 -clause(X0,X1,X2,X3,X4) :-clause1773,104920 -clause(X0,X1,X2,X3,X4) :-clause1773,104920 -precede(X0,X1,X2,X3) :-precede1788,105740 -precede(X0,X1,X2,X3) :-precede1788,105740 -precede(X0,X1,X2,X3) :-precede1788,105740 -channel(X0,X1,X2,X3,X4,X5) :-channel1809,106893 -channel(X0,X1,X2,X3,X4,X5) :-channel1809,106893 -channel(X0,X1,X2,X3,X4,X5) :-channel1809,106893 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1824,107754 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1824,107754 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1824,107754 -distinct(X0,X1,X2) :-distinct1897,113303 -distinct(X0,X1,X2) :-distinct1897,113303 -distinct(X0,X1,X2) :-distinct1897,113303 -member(X0,X1,X2,X3,X4) :-member1916,114292 -member(X0,X1,X2,X3,X4) :-member1916,114292 -member(X0,X1,X2,X3,X4) :-member1916,114292 -mod(X0,X1,X2,X3) :-mod1937,115498 -mod(X0,X1,X2,X3) :-mod1937,115498 -mod(X0,X1,X2,X3) :-mod1937,115498 -sqr(X0,X1,X2) :-sqr1948,116008 -sqr(X0,X1,X2) :-sqr1948,116008 -sqr(X0,X1,X2) :-sqr1948,116008 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1961,116599 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1961,116599 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1961,116599 -path(X0,X1,X2,X3,X4,X5,X6) :-path1990,118508 -path(X0,X1,X2,X3,X4,X5,X6) :-path1990,118508 -path(X0,X1,X2,X3,X4,X5,X6) :-path1990,118508 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2021,120566 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2021,120566 -divmod(X0,X1,X2,X3,X4,X5) :-divmod2021,120566 -sorted(X0,X1,X2) :-sorted2036,121418 -sorted(X0,X1,X2) :-sorted2036,121418 -sorted(X0,X1,X2) :-sorted2036,121418 -extensional(X0,X1,X2,X3) :-extensional2045,121816 -extensional(X0,X1,X2,X3) :-extensional2045,121816 -extensional(X0,X1,X2,X3) :-extensional2045,121816 -circuit(X0,X1,X2) :-circuit2070,123291 -circuit(X0,X1,X2) :-circuit2070,123291 -circuit(X0,X1,X2) :-circuit2070,123291 -argmin(X0,X1,X2,X3) :-argmin2083,123915 -argmin(X0,X1,X2,X3) :-argmin2083,123915 -argmin(X0,X1,X2,X3) :-argmin2083,123915 -channel(X0,X1,X2) :-channel2098,124680 -channel(X0,X1,X2) :-channel2098,124680 -channel(X0,X1,X2) :-channel2098,124680 -count(X0,X1,X2,X3,X4) :-count2135,126834 -count(X0,X1,X2,X3,X4) :-count2135,126834 -count(X0,X1,X2,X3,X4) :-count2135,126834 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2190,130571 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2190,130571 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2190,130571 -binpacking(X0,X1,X2,X3,X4) :-binpacking2267,136726 -binpacking(X0,X1,X2,X3,X4) :-binpacking2267,136726 -binpacking(X0,X1,X2,X3,X4) :-binpacking2267,136726 -extensional(X0,X1,X2) :-extensional2280,137448 -extensional(X0,X1,X2) :-extensional2280,137448 -extensional(X0,X1,X2) :-extensional2280,137448 -linear(X0,X1,X2,X3,X4,X5) :-linear2297,138328 -linear(X0,X1,X2,X3,X4,X5) :-linear2297,138328 -linear(X0,X1,X2,X3,X4,X5) :-linear2297,138328 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2382,144582 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2382,144582 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2382,144582 -div(X0,X1,X2,X3,X4) :-div2409,146417 -div(X0,X1,X2,X3,X4) :-div2409,146417 -div(X0,X1,X2,X3,X4) :-div2409,146417 -sqr(X0,X1,X2,X3) :-sqr2422,147082 -sqr(X0,X1,X2,X3) :-sqr2422,147082 -sqr(X0,X1,X2,X3) :-sqr2422,147082 -channel(X0,X1,X2,X3) :-channel2433,147598 -channel(X0,X1,X2,X3) :-channel2433,147598 -channel(X0,X1,X2,X3) :-channel2433,147598 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2456,148892 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2456,148892 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2456,148892 -unary(X0,X1,X2,X3,X4) :-unary2491,151346 -unary(X0,X1,X2,X3,X4) :-unary2491,151346 -unary(X0,X1,X2,X3,X4) :-unary2491,151346 -sorted(X0,X1,X2,X3) :-sorted2522,153249 -sorted(X0,X1,X2,X3) :-sorted2522,153249 -sorted(X0,X1,X2,X3) :-sorted2522,153249 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2535,153912 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2535,153912 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2535,153912 -assign(X0,X1,X2,X3) :-assign2586,157678 -assign(X0,X1,X2,X3) :-assign2586,157678 -assign(X0,X1,X2,X3) :-assign2586,157678 -element(X0,X1,X2,X3,X4) :-element2639,161311 -element(X0,X1,X2,X3,X4) :-element2639,161311 -element(X0,X1,X2,X3,X4) :-element2639,161311 -sequence(X0,X1,X2) :-sequence2710,166258 -sequence(X0,X1,X2) :-sequence2710,166258 -sequence(X0,X1,X2) :-sequence2710,166258 -branch(X0,X1,X2,X3,X4) :-branch2719,166662 -branch(X0,X1,X2,X3,X4) :-branch2719,166662 -branch(X0,X1,X2,X3,X4) :-branch2719,166662 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2762,169503 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2762,169503 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2762,169503 -pow(X0,X1,X2,X3) :-pow2779,170549 -pow(X0,X1,X2,X3) :-pow2779,170549 -pow(X0,X1,X2,X3) :-pow2779,170549 -precede(X0,X1,X2) :-precede2796,171403 -precede(X0,X1,X2) :-precede2796,171403 -precede(X0,X1,X2) :-precede2796,171403 -argmax(X0,X1,X2,X3,X4) :-argmax2809,172028 -argmax(X0,X1,X2,X3,X4) :-argmax2809,172028 -argmax(X0,X1,X2,X3,X4) :-argmax2809,172028 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2828,173095 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2828,173095 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2828,173095 -distinct(X0,X1,X2,X3) :-distinct2885,177165 -distinct(X0,X1,X2,X3) :-distinct2885,177165 -distinct(X0,X1,X2,X3) :-distinct2885,177165 -min(X0,X1,X2) :-min2908,178484 -min(X0,X1,X2) :-min2908,178484 -min(X0,X1,X2) :-min2908,178484 -sqrt(X0,X1,X2,X3) :-sqrt2925,179311 -sqrt(X0,X1,X2,X3) :-sqrt2925,179311 -sqrt(X0,X1,X2,X3) :-sqrt2925,179311 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2936,179833 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2936,179833 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2936,179833 -unshare(X0,X1,X2) :-unshare2961,181367 -unshare(X0,X1,X2) :-unshare2961,181367 -unshare(X0,X1,X2) :-unshare2961,181367 -path(X0,X1,X2,X3,X4,X5) :-path2974,182003 -path(X0,X1,X2,X3,X4,X5) :-path2974,182003 -path(X0,X1,X2,X3,X4,X5) :-path2974,182003 -divmod(X0,X1,X2,X3,X4) :-divmod2999,183506 -divmod(X0,X1,X2,X3,X4) :-divmod2999,183506 -divmod(X0,X1,X2,X3,X4) :-divmod2999,183506 -branch(X0,X1,X2,X3,X4,X5) :-branch3012,184186 -branch(X0,X1,X2,X3,X4,X5) :-branch3012,184186 -branch(X0,X1,X2,X3,X4,X5) :-branch3012,184186 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap3069,188291 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap3069,188291 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap3069,188291 -argmin(X0,X1,X2,X3,X4) :-argmin3090,189787 -argmin(X0,X1,X2,X3,X4) :-argmin3090,189787 -argmin(X0,X1,X2,X3,X4) :-argmin3090,189787 -cumulative(X0,X1,X2,X3,X4) :-cumulative3109,190856 -cumulative(X0,X1,X2,X3,X4) :-cumulative3109,190856 -cumulative(X0,X1,X2,X3,X4) :-cumulative3109,190856 -member(X0,X1,X2) :-member3130,192095 -member(X0,X1,X2) :-member3130,192095 -member(X0,X1,X2) :-member3130,192095 -count(X0,X1,X2,X3,X4,X5) :-count3143,192713 -count(X0,X1,X2,X3,X4,X5) :-count3143,192713 -count(X0,X1,X2,X3,X4,X5) :-count3143,192713 -pow(X0,X1,X2,X3,X4) :-pow3198,196563 -pow(X0,X1,X2,X3,X4) :-pow3198,196563 -pow(X0,X1,X2,X3,X4) :-pow3198,196563 -notMin(X0,X1,X2) :-notMin3211,197225 -notMin(X0,X1,X2) :-notMin3211,197225 -notMin(X0,X1,X2) :-notMin3211,197225 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3220,197615 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3220,197615 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3220,197615 -branch(X0,X1,X2) :-branch3277,201965 -branch(X0,X1,X2) :-branch3277,201965 -branch(X0,X1,X2) :-branch3277,201965 -dom(X0,X1,X2) :-dom3298,203082 -dom(X0,X1,X2) :-dom3298,203082 -dom(X0,X1,X2) :-dom3298,203082 -linear(X0,X1,X2,X3,X4) :-linear3347,206105 -linear(X0,X1,X2,X3,X4) :-linear3347,206105 -linear(X0,X1,X2,X3,X4) :-linear3347,206105 -argmin(X0,X1,X2,X3,X4,X5) :-argmin3424,211438 -argmin(X0,X1,X2,X3,X4,X5) :-argmin3424,211438 -argmin(X0,X1,X2,X3,X4,X5) :-argmin3424,211438 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3439,212288 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3439,212288 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3439,212288 -element(X0,X1,X2,X3,X4,X5) :-element3456,213321 -element(X0,X1,X2,X3,X4,X5) :-element3456,213321 -element(X0,X1,X2,X3,X4,X5) :-element3456,213321 -rel(X0,X1,X2,X3) :-rel3495,215949 -rel(X0,X1,X2,X3) :-rel3495,215949 -rel(X0,X1,X2,X3) :-rel3495,215949 -min(X0,X1,X2,X3,X4) :-min3592,222946 -min(X0,X1,X2,X3,X4) :-min3592,222946 -min(X0,X1,X2,X3,X4) :-min3592,222946 -count(X0,X1,X2) :-count3605,223611 -count(X0,X1,X2) :-count3605,223611 -count(X0,X1,X2) :-count3605,223611 -argmax(X0,X1,X2,X3) :-argmax3616,224113 -argmax(X0,X1,X2,X3) :-argmax3616,224113 -argmax(X0,X1,X2,X3) :-argmax3616,224113 -ite(X0,X1,X2,X3,X4,X5) :-ite3631,224876 -ite(X0,X1,X2,X3,X4,X5) :-ite3631,224876 -ite(X0,X1,X2,X3,X4,X5) :-ite3631,224876 - -packages/gecode/5.1.0/gecode_yap_auto_generated.yap,36370 -is_RestartMode_('RM_NONE').is_RestartMode_19,881 -is_RestartMode_('RM_NONE').is_RestartMode_19,881 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,909 -is_RestartMode_('RM_CONSTANT').is_RestartMode_20,909 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,941 -is_RestartMode_('RM_LINEAR').is_RestartMode_21,941 -is_RestartMode_('RM_LUBY').is_RestartMode_22,971 -is_RestartMode_('RM_LUBY').is_RestartMode_22,971 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,999 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_23,999 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1033 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_25,1033 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1071 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_26,1071 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1117 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_27,1117 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1159 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_28,1159 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1197 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_29,1197 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode31,1246 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode32,1302 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1345 -is_FloatRelType_('FRT_EQ').is_FloatRelType_34,1345 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1373 -is_FloatRelType_('FRT_NQ').is_FloatRelType_35,1373 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1401 -is_FloatRelType_('FRT_LQ').is_FloatRelType_36,1401 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1429 -is_FloatRelType_('FRT_LE').is_FloatRelType_37,1429 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1457 -is_FloatRelType_('FRT_GQ').is_FloatRelType_38,1457 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1485 -is_FloatRelType_('FRT_GR').is_FloatRelType_39,1485 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1514 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_41,1514 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1551 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_42,1551 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1588 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_43,1588 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1625 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_44,1625 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1662 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_45,1662 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1699 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_46,1699 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType48,1737 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType49,1795 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1840 -is_ReifyMode_('RM_EQV').is_ReifyMode_51,1840 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1865 -is_ReifyMode_('RM_IMP').is_ReifyMode_52,1865 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1890 -is_ReifyMode_('RM_PMI').is_ReifyMode_53,1890 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1916 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_55,1916 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1950 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_56,1950 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1984 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_57,1984 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode59,2019 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode60,2071 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2110 -is_IntRelType_('IRT_EQ').is_IntRelType_62,2110 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2136 -is_IntRelType_('IRT_NQ').is_IntRelType_63,2136 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2162 -is_IntRelType_('IRT_LQ').is_IntRelType_64,2162 -is_IntRelType_('IRT_LE').is_IntRelType_65,2188 -is_IntRelType_('IRT_LE').is_IntRelType_65,2188 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2214 -is_IntRelType_('IRT_GQ').is_IntRelType_66,2214 -is_IntRelType_('IRT_GR').is_IntRelType_67,2240 -is_IntRelType_('IRT_GR').is_IntRelType_67,2240 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2267 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_69,2267 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2302 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_70,2302 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2337 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_71,2337 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2372 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_72,2372 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2407 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_73,2407 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2442 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_74,2442 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType76,2478 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType77,2532 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2573 -is_BoolOpType_('BOT_AND').is_BoolOpType_79,2573 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2600 -is_BoolOpType_('BOT_OR').is_BoolOpType_80,2600 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2626 -is_BoolOpType_('BOT_IMP').is_BoolOpType_81,2626 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2653 -is_BoolOpType_('BOT_EQV').is_BoolOpType_82,2653 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2680 -is_BoolOpType_('BOT_XOR').is_BoolOpType_83,2680 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2708 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_85,2708 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2745 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_86,2745 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2780 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_87,2780 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2817 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_88,2817 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2854 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_89,2854 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType91,2892 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType92,2946 -is_IntPropLevel_('IPL_DEF').is_IntPropLevel_94,2987 -is_IntPropLevel_('IPL_DEF').is_IntPropLevel_94,2987 -is_IntPropLevel_('IPL_VAL').is_IntPropLevel_95,3016 -is_IntPropLevel_('IPL_VAL').is_IntPropLevel_95,3016 -is_IntPropLevel_('IPL_BND').is_IntPropLevel_96,3045 -is_IntPropLevel_('IPL_BND').is_IntPropLevel_96,3045 -is_IntPropLevel_('IPL_DOM').is_IntPropLevel_97,3074 -is_IntPropLevel_('IPL_DOM').is_IntPropLevel_97,3074 -is_IntPropLevel_('IPL_SPEED').is_IntPropLevel_98,3103 -is_IntPropLevel_('IPL_SPEED').is_IntPropLevel_98,3103 -is_IntPropLevel_('IPL_MEMORY').is_IntPropLevel_99,3134 -is_IntPropLevel_('IPL_MEMORY').is_IntPropLevel_99,3134 -is_IntPropLevel_('IPL_BASIC').is_IntPropLevel_100,3166 -is_IntPropLevel_('IPL_BASIC').is_IntPropLevel_100,3166 -is_IntPropLevel_('IPL_ADVANCED').is_IntPropLevel_101,3197 -is_IntPropLevel_('IPL_ADVANCED').is_IntPropLevel_101,3197 -is_IntPropLevel_('IPL_BASIC_ADVANCED').is_IntPropLevel_102,3231 -is_IntPropLevel_('IPL_BASIC_ADVANCED').is_IntPropLevel_102,3231 -is_IntPropLevel_('IPL_DEF','IPL_DEF').is_IntPropLevel_104,3272 -is_IntPropLevel_('IPL_DEF','IPL_DEF').is_IntPropLevel_104,3272 -is_IntPropLevel_('IPL_VAL','IPL_VAL').is_IntPropLevel_105,3311 -is_IntPropLevel_('IPL_VAL','IPL_VAL').is_IntPropLevel_105,3311 -is_IntPropLevel_('IPL_BND','IPL_BND').is_IntPropLevel_106,3350 -is_IntPropLevel_('IPL_BND','IPL_BND').is_IntPropLevel_106,3350 -is_IntPropLevel_('IPL_DOM','IPL_DOM').is_IntPropLevel_107,3389 -is_IntPropLevel_('IPL_DOM','IPL_DOM').is_IntPropLevel_107,3389 -is_IntPropLevel_('IPL_SPEED','IPL_SPEED').is_IntPropLevel_108,3428 -is_IntPropLevel_('IPL_SPEED','IPL_SPEED').is_IntPropLevel_108,3428 -is_IntPropLevel_('IPL_MEMORY','IPL_MEMORY').is_IntPropLevel_109,3471 -is_IntPropLevel_('IPL_MEMORY','IPL_MEMORY').is_IntPropLevel_109,3471 -is_IntPropLevel_('IPL_BASIC','IPL_BASIC').is_IntPropLevel_110,3516 -is_IntPropLevel_('IPL_BASIC','IPL_BASIC').is_IntPropLevel_110,3516 -is_IntPropLevel_('IPL_ADVANCED','IPL_ADVANCED').is_IntPropLevel_111,3559 -is_IntPropLevel_('IPL_ADVANCED','IPL_ADVANCED').is_IntPropLevel_111,3559 -is_IntPropLevel_('IPL_BASIC_ADVANCED','IPL_BASIC_ADVANCED').is_IntPropLevel_112,3608 -is_IntPropLevel_('IPL_BASIC_ADVANCED','IPL_BASIC_ADVANCED').is_IntPropLevel_112,3608 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X,Y) :- nonvar(X), is_IntPropLevel_(X,Y).is_IntPropLevel114,3670 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_IntPropLevel(X) :- is_IntPropLevel(X,_).is_IntPropLevel115,3728 -is_TaskType_('TT_FIXP').is_TaskType_117,3773 -is_TaskType_('TT_FIXP').is_TaskType_117,3773 -is_TaskType_('TT_FIXS').is_TaskType_118,3798 -is_TaskType_('TT_FIXS').is_TaskType_118,3798 -is_TaskType_('TT_FIXE').is_TaskType_119,3823 -is_TaskType_('TT_FIXE').is_TaskType_119,3823 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_121,3849 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_121,3849 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_122,3884 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_122,3884 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_123,3919 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_123,3919 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType125,3955 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType126,4005 -is_TraceEvent_('TE_INIT').is_TraceEvent_128,4042 -is_TraceEvent_('TE_INIT').is_TraceEvent_128,4042 -is_TraceEvent_('TE_PRUNE').is_TraceEvent_129,4069 -is_TraceEvent_('TE_PRUNE').is_TraceEvent_129,4069 -is_TraceEvent_('TE_FIX').is_TraceEvent_130,4097 -is_TraceEvent_('TE_FIX').is_TraceEvent_130,4097 -is_TraceEvent_('TE_FAIL').is_TraceEvent_131,4123 -is_TraceEvent_('TE_FAIL').is_TraceEvent_131,4123 -is_TraceEvent_('TE_DONE').is_TraceEvent_132,4150 -is_TraceEvent_('TE_DONE').is_TraceEvent_132,4150 -is_TraceEvent_('TE_PROPAGATE').is_TraceEvent_133,4177 -is_TraceEvent_('TE_PROPAGATE').is_TraceEvent_133,4177 -is_TraceEvent_('TE_COMMIT').is_TraceEvent_134,4209 -is_TraceEvent_('TE_COMMIT').is_TraceEvent_134,4209 -is_TraceEvent_('TE_INIT','TE_INIT').is_TraceEvent_136,4239 -is_TraceEvent_('TE_INIT','TE_INIT').is_TraceEvent_136,4239 -is_TraceEvent_('TE_PRUNE','TE_PRUNE').is_TraceEvent_137,4276 -is_TraceEvent_('TE_PRUNE','TE_PRUNE').is_TraceEvent_137,4276 -is_TraceEvent_('TE_FIX','TE_FIX').is_TraceEvent_138,4315 -is_TraceEvent_('TE_FIX','TE_FIX').is_TraceEvent_138,4315 -is_TraceEvent_('TE_FAIL','TE_FAIL').is_TraceEvent_139,4350 -is_TraceEvent_('TE_FAIL','TE_FAIL').is_TraceEvent_139,4350 -is_TraceEvent_('TE_DONE','TE_DONE').is_TraceEvent_140,4387 -is_TraceEvent_('TE_DONE','TE_DONE').is_TraceEvent_140,4387 -is_TraceEvent_('TE_PROPAGATE','TE_PROPAGATE').is_TraceEvent_141,4424 -is_TraceEvent_('TE_PROPAGATE','TE_PROPAGATE').is_TraceEvent_141,4424 -is_TraceEvent_('TE_COMMIT','TE_COMMIT').is_TraceEvent_142,4471 -is_TraceEvent_('TE_COMMIT','TE_COMMIT').is_TraceEvent_142,4471 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent144,4513 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent144,4513 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent144,4513 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent144,4513 -is_TraceEvent(X,Y) :- nonvar(X), is_TraceEvent_(X,Y).is_TraceEvent144,4513 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent145,4567 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent145,4567 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent145,4567 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent145,4567 -is_TraceEvent(X) :- is_TraceEvent(X,_).is_TraceEvent145,4567 -is_SetRelType_('SRT_EQ').is_SetRelType_147,4608 -is_SetRelType_('SRT_EQ').is_SetRelType_147,4608 -is_SetRelType_('SRT_NQ').is_SetRelType_148,4634 -is_SetRelType_('SRT_NQ').is_SetRelType_148,4634 -is_SetRelType_('SRT_SUB').is_SetRelType_149,4660 -is_SetRelType_('SRT_SUB').is_SetRelType_149,4660 -is_SetRelType_('SRT_SUP').is_SetRelType_150,4687 -is_SetRelType_('SRT_SUP').is_SetRelType_150,4687 -is_SetRelType_('SRT_DISJ').is_SetRelType_151,4714 -is_SetRelType_('SRT_DISJ').is_SetRelType_151,4714 -is_SetRelType_('SRT_CMPL').is_SetRelType_152,4742 -is_SetRelType_('SRT_CMPL').is_SetRelType_152,4742 -is_SetRelType_('SRT_LQ').is_SetRelType_153,4770 -is_SetRelType_('SRT_LQ').is_SetRelType_153,4770 -is_SetRelType_('SRT_LE').is_SetRelType_154,4796 -is_SetRelType_('SRT_LE').is_SetRelType_154,4796 -is_SetRelType_('SRT_GQ').is_SetRelType_155,4822 -is_SetRelType_('SRT_GQ').is_SetRelType_155,4822 -is_SetRelType_('SRT_GR').is_SetRelType_156,4848 -is_SetRelType_('SRT_GR').is_SetRelType_156,4848 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_158,4875 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_158,4875 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_159,4910 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_159,4910 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_160,4945 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_160,4945 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_161,4982 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_161,4982 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_162,5019 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_162,5019 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_163,5058 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_163,5058 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_164,5097 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_164,5097 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_165,5132 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_165,5132 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_166,5167 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_166,5167 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_167,5202 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_167,5202 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType169,5238 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType169,5238 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType169,5238 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType169,5238 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType169,5238 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType170,5292 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType170,5292 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType170,5292 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType170,5292 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType170,5292 -is_SetOpType_('SOT_UNION').is_SetOpType_172,5333 -is_SetOpType_('SOT_UNION').is_SetOpType_172,5333 -is_SetOpType_('SOT_DUNION').is_SetOpType_173,5361 -is_SetOpType_('SOT_DUNION').is_SetOpType_173,5361 -is_SetOpType_('SOT_INTER').is_SetOpType_174,5390 -is_SetOpType_('SOT_INTER').is_SetOpType_174,5390 -is_SetOpType_('SOT_MINUS').is_SetOpType_175,5418 -is_SetOpType_('SOT_MINUS').is_SetOpType_175,5418 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_177,5447 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_177,5447 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_178,5487 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_178,5487 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_179,5529 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_179,5529 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_180,5569 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_180,5569 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType182,5610 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType182,5610 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType182,5610 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType182,5610 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType182,5610 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType183,5662 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType183,5662 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType183,5662 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType183,5662 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType183,5662 -unary(X0,X1,X2,X3,X4,X5) :-unary185,5701 -unary(X0,X1,X2,X3,X4,X5) :-unary185,5701 -unary(X0,X1,X2,X3,X4,X5) :-unary185,5701 -nvalues(X0,X1,X2,X3,X4) :-nvalues210,7250 -nvalues(X0,X1,X2,X3,X4) :-nvalues210,7250 -nvalues(X0,X1,X2,X3,X4) :-nvalues210,7250 -max(X0,X1,X2,X3) :-max239,9026 -max(X0,X1,X2,X3) :-max239,9026 -max(X0,X1,X2,X3) :-max239,9026 -dom(X0,X1,X2,X3,X4,X5) :-dom262,10268 -dom(X0,X1,X2,X3,X4,X5) :-dom262,10268 -dom(X0,X1,X2,X3,X4,X5) :-dom262,10268 -argmin(X0,X1,X2) :-argmin287,11742 -argmin(X0,X1,X2) :-argmin287,11742 -argmin(X0,X1,X2) :-argmin287,11742 -convex(X0,X1,X2) :-convex296,12135 -convex(X0,X1,X2) :-convex296,12135 -convex(X0,X1,X2) :-convex296,12135 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap305,12523 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap305,12523 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap305,12523 -assign(X0,X1,X2) :-assign318,13234 -assign(X0,X1,X2) :-assign318,13234 -assign(X0,X1,X2) :-assign318,13234 -element(X0,X1,X2,X3) :-element355,15530 -element(X0,X1,X2,X3) :-element355,15530 -element(X0,X1,X2,X3) :-element355,15530 -ite(X0,X1,X2,X3,X4) :-ite386,17327 -ite(X0,X1,X2,X3,X4) :-ite386,17327 -ite(X0,X1,X2,X3,X4) :-ite386,17327 -unary(X0,X1,X2) :-unary417,19205 -unary(X0,X1,X2) :-unary417,19205 -unary(X0,X1,X2) :-unary417,19205 -nroot(X0,X1,X2,X3,X4) :-nroot426,19595 -nroot(X0,X1,X2,X3,X4) :-nroot426,19595 -nroot(X0,X1,X2,X3,X4) :-nroot426,19595 -circuit(X0,X1,X2,X3) :-circuit439,20271 -circuit(X0,X1,X2,X3) :-circuit439,20271 -circuit(X0,X1,X2,X3) :-circuit439,20271 -dom(X0,X1,X2,X3,X4) :-dom456,21173 -dom(X0,X1,X2,X3,X4) :-dom456,21173 -dom(X0,X1,X2,X3,X4) :-dom456,21173 -argmax(X0,X1,X2,X3,X4,X5) :-argmax519,25253 -argmax(X0,X1,X2,X3,X4,X5) :-argmax519,25253 -argmax(X0,X1,X2,X3,X4,X5) :-argmax519,25253 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap534,26103 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap534,26103 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap534,26103 -element(X0,X1,X2,X3,X4,X5,X6) :-element555,27552 -element(X0,X1,X2,X3,X4,X5,X6) :-element555,27552 -element(X0,X1,X2,X3,X4,X5,X6) :-element555,27552 -max(X0,X1,X2) :-max598,30508 -max(X0,X1,X2) :-max598,30508 -max(X0,X1,X2) :-max598,30508 -unshare(X0,X1) :-unshare611,31107 -unshare(X0,X1) :-unshare611,31107 -unshare(X0,X1) :-unshare611,31107 -path(X0,X1,X2,X3,X4) :-path620,31482 -path(X0,X1,X2,X3,X4) :-path620,31482 -path(X0,X1,X2,X3,X4) :-path620,31482 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch641,32657 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch641,32657 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch641,32657 -mult(X0,X1,X2,X3) :-mult682,35544 -mult(X0,X1,X2,X3) :-mult682,35544 -mult(X0,X1,X2,X3) :-mult682,35544 -clause(X0,X1,X2,X3,X4,X5) :-clause699,36415 -clause(X0,X1,X2,X3,X4,X5) :-clause699,36415 -clause(X0,X1,X2,X3,X4,X5) :-clause699,36415 -precede(X0,X1,X2,X3,X4) :-precede718,37567 -precede(X0,X1,X2,X3,X4) :-precede718,37567 -precede(X0,X1,X2,X3,X4) :-precede718,37567 -argmax(X0,X1,X2) :-argmax731,38258 -argmax(X0,X1,X2) :-argmax731,38258 -argmax(X0,X1,X2) :-argmax731,38258 -distinct(X0,X1) :-distinct740,38650 -distinct(X0,X1) :-distinct740,38650 -distinct(X0,X1) :-distinct740,38650 -member(X0,X1,X2,X3) :-member747,38928 -member(X0,X1,X2,X3) :-member747,38928 -member(X0,X1,X2,X3) :-member747,38928 -mod(X0,X1,X2,X3,X4) :-mod768,40073 -mod(X0,X1,X2,X3,X4) :-mod768,40073 -mod(X0,X1,X2,X3,X4) :-mod768,40073 -linear(X0,X1,X2,X3) :-linear781,40738 -linear(X0,X1,X2,X3) :-linear781,40738 -linear(X0,X1,X2,X3) :-linear781,40738 -circuit(X0,X1) :-circuit810,42402 -circuit(X0,X1) :-circuit810,42402 -circuit(X0,X1) :-circuit810,42402 -rel(X0,X1,X2,X3,X4) :-rel817,42675 -rel(X0,X1,X2,X3,X4) :-rel817,42675 -rel(X0,X1,X2,X3,X4) :-rel817,42675 -min(X0,X1,X2,X3) :-min962,53723 -min(X0,X1,X2,X3) :-min962,53723 -min(X0,X1,X2,X3) :-min962,53723 -when(X0,X1,X2,X3) :-when985,54965 -when(X0,X1,X2,X3) :-when985,54965 -when(X0,X1,X2,X3) :-when985,54965 -cardinality(X0,X1,X2,X3) :-cardinality998,55653 -cardinality(X0,X1,X2,X3) :-cardinality998,55653 -cardinality(X0,X1,X2,X3) :-cardinality998,55653 -count(X0,X1,X2,X3) :-count1015,56571 -count(X0,X1,X2,X3) :-count1015,56571 -count(X0,X1,X2,X3) :-count1015,56571 -sqrt(X0,X1,X2) :-sqrt1038,57860 -sqrt(X0,X1,X2) :-sqrt1038,57860 -sqrt(X0,X1,X2) :-sqrt1038,57860 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1051,58458 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1051,58458 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives1051,58458 -nvalues(X0,X1,X2,X3) :-nvalues1144,66338 -nvalues(X0,X1,X2,X3) :-nvalues1144,66338 -nvalues(X0,X1,X2,X3) :-nvalues1144,66338 -binpacking(X0,X1,X2,X3) :-binpacking1165,67485 -binpacking(X0,X1,X2,X3) :-binpacking1165,67485 -binpacking(X0,X1,X2,X3) :-binpacking1165,67485 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1176,68045 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1176,68045 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear1176,68045 -abs(X0,X1,X2,X3) :-abs1215,70761 -abs(X0,X1,X2,X3) :-abs1215,70761 -abs(X0,X1,X2,X3) :-abs1215,70761 -convex(X0,X1) :-convex1226,71275 -convex(X0,X1) :-convex1226,71275 -convex(X0,X1) :-convex1226,71275 -div(X0,X1,X2,X3) :-div1233,71539 -div(X0,X1,X2,X3) :-div1233,71539 -div(X0,X1,X2,X3) :-div1233,71539 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,72401 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,72401 -rel(X0,X1,X2,X3,X4,X5) :-rel1250,72401 -max(X0,X1,X2,X3,X4) :-max1299,75646 -max(X0,X1,X2,X3,X4) :-max1299,75646 -max(X0,X1,X2,X3,X4) :-max1299,75646 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1312,76311 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1312,76311 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path1312,76311 -unary(X0,X1,X2,X3) :-unary1333,77729 -unary(X0,X1,X2,X3) :-unary1333,77729 -unary(X0,X1,X2,X3) :-unary1333,77729 -nroot(X0,X1,X2,X3) :-nroot1356,79024 -nroot(X0,X1,X2,X3) :-nroot1356,79024 -nroot(X0,X1,X2,X3) :-nroot1356,79024 -sorted(X0,X1,X2,X3,X4) :-sorted1373,79896 -sorted(X0,X1,X2,X3,X4) :-sorted1373,79896 -sorted(X0,X1,X2,X3,X4) :-sorted1373,79896 -circuit(X0,X1,X2,X3,X4) :-circuit1386,80594 -circuit(X0,X1,X2,X3,X4) :-circuit1386,80594 -circuit(X0,X1,X2,X3,X4) :-circuit1386,80594 -dom(X0,X1,X2,X3) :-dom1409,81965 -dom(X0,X1,X2,X3) :-dom1409,81965 -dom(X0,X1,X2,X3) :-dom1409,81965 -abs(X0,X1,X2) :-abs1494,87948 -abs(X0,X1,X2) :-abs1494,87948 -abs(X0,X1,X2) :-abs1494,87948 -channel(X0,X1,X2,X3,X4) :-channel1507,88535 -channel(X0,X1,X2,X3,X4) :-channel1507,88535 -channel(X0,X1,X2,X3,X4) :-channel1507,88535 -assign(X0,X1,X2,X3,X4) :-assign1528,89740 -assign(X0,X1,X2,X3,X4) :-assign1528,89740 -assign(X0,X1,X2,X3,X4) :-assign1528,89740 -when(X0,X1,X2) :-when1565,92138 -when(X0,X1,X2) :-when1565,92138 -when(X0,X1,X2) :-when1565,92138 -rel(X0,X1,X2) :-rel1574,92544 -rel(X0,X1,X2) :-rel1574,92544 -rel(X0,X1,X2) :-rel1574,92544 -path(X0,X1,X2,X3) :-path1587,93148 -path(X0,X1,X2,X3) :-path1587,93148 -path(X0,X1,X2,X3) :-path1587,93148 -branch(X0,X1,X2,X3) :-branch1598,93668 -branch(X0,X1,X2,X3) :-branch1598,93668 -branch(X0,X1,X2,X3) :-branch1598,93668 -mult(X0,X1,X2,X3,X4) :-mult1651,97315 -mult(X0,X1,X2,X3,X4) :-mult1651,97315 -mult(X0,X1,X2,X3,X4) :-mult1651,97315 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1664,97987 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1664,97987 -circuit(X0,X1,X2,X3,X4,X5) :-circuit1664,97987 -clause(X0,X1,X2,X3,X4) :-clause1691,99704 -clause(X0,X1,X2,X3,X4) :-clause1691,99704 -clause(X0,X1,X2,X3,X4) :-clause1691,99704 -precede(X0,X1,X2,X3) :-precede1706,100522 -precede(X0,X1,X2,X3) :-precede1706,100522 -precede(X0,X1,X2,X3) :-precede1706,100522 -channel(X0,X1,X2,X3,X4,X5) :-channel1721,101303 -channel(X0,X1,X2,X3,X4,X5) :-channel1721,101303 -channel(X0,X1,X2,X3,X4,X5) :-channel1721,101303 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1736,102164 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1736,102164 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative1736,102164 -distinct(X0,X1,X2) :-distinct1809,107713 -distinct(X0,X1,X2) :-distinct1809,107713 -distinct(X0,X1,X2) :-distinct1809,107713 -member(X0,X1,X2,X3,X4) :-member1828,108702 -member(X0,X1,X2,X3,X4) :-member1828,108702 -member(X0,X1,X2,X3,X4) :-member1828,108702 -mod(X0,X1,X2,X3) :-mod1849,109908 -mod(X0,X1,X2,X3) :-mod1849,109908 -mod(X0,X1,X2,X3) :-mod1849,109908 -sqr(X0,X1,X2) :-sqr1860,110418 -sqr(X0,X1,X2) :-sqr1860,110418 -sqr(X0,X1,X2) :-sqr1860,110418 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1873,111009 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1873,111009 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence1873,111009 -path(X0,X1,X2,X3,X4,X5,X6) :-path1902,112918 -path(X0,X1,X2,X3,X4,X5,X6) :-path1902,112918 -path(X0,X1,X2,X3,X4,X5,X6) :-path1902,112918 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1933,114976 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1933,114976 -divmod(X0,X1,X2,X3,X4,X5) :-divmod1933,114976 -sorted(X0,X1,X2) :-sorted1948,115828 -sorted(X0,X1,X2) :-sorted1948,115828 -sorted(X0,X1,X2) :-sorted1948,115828 -extensional(X0,X1,X2,X3) :-extensional1957,116226 -extensional(X0,X1,X2,X3) :-extensional1957,116226 -extensional(X0,X1,X2,X3) :-extensional1957,116226 -circuit(X0,X1,X2) :-circuit1982,117701 -circuit(X0,X1,X2) :-circuit1982,117701 -circuit(X0,X1,X2) :-circuit1982,117701 -argmin(X0,X1,X2,X3) :-argmin1995,118325 -argmin(X0,X1,X2,X3) :-argmin1995,118325 -argmin(X0,X1,X2,X3) :-argmin1995,118325 -channel(X0,X1,X2) :-channel2010,119090 -channel(X0,X1,X2) :-channel2010,119090 -channel(X0,X1,X2) :-channel2010,119090 -when(X0,X1,X2,X3,X4) :-when2033,120336 -when(X0,X1,X2,X3,X4) :-when2033,120336 -when(X0,X1,X2,X3,X4) :-when2033,120336 -count(X0,X1,X2,X3,X4) :-count2046,121059 -count(X0,X1,X2,X3,X4) :-count2046,121059 -count(X0,X1,X2,X3,X4) :-count2046,121059 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2101,124795 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2101,124795 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives2101,124795 -binpacking(X0,X1,X2,X3,X4) :-binpacking2178,130950 -binpacking(X0,X1,X2,X3,X4) :-binpacking2178,130950 -binpacking(X0,X1,X2,X3,X4) :-binpacking2178,130950 -branch(X0,X1) :-branch2191,131672 -branch(X0,X1) :-branch2191,131672 -branch(X0,X1) :-branch2191,131672 -extensional(X0,X1,X2) :-extensional2198,131961 -extensional(X0,X1,X2) :-extensional2198,131961 -extensional(X0,X1,X2) :-extensional2198,131961 -linear(X0,X1,X2,X3,X4,X5) :-linear2215,132841 -linear(X0,X1,X2,X3,X4,X5) :-linear2215,132841 -linear(X0,X1,X2,X3,X4,X5) :-linear2215,132841 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2300,139095 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2300,139095 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap2300,139095 -div(X0,X1,X2,X3,X4) :-div2327,140930 -div(X0,X1,X2,X3,X4) :-div2327,140930 -div(X0,X1,X2,X3,X4) :-div2327,140930 -sqr(X0,X1,X2,X3) :-sqr2340,141595 -sqr(X0,X1,X2,X3) :-sqr2340,141595 -sqr(X0,X1,X2,X3) :-sqr2340,141595 -channel(X0,X1,X2,X3) :-channel2351,142111 -channel(X0,X1,X2,X3) :-channel2351,142111 -channel(X0,X1,X2,X3) :-channel2351,142111 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2374,143405 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2374,143405 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path2374,143405 -unary(X0,X1,X2,X3,X4) :-unary2409,145859 -unary(X0,X1,X2,X3,X4) :-unary2409,145859 -unary(X0,X1,X2,X3,X4) :-unary2409,145859 -sorted(X0,X1,X2,X3) :-sorted2440,147762 -sorted(X0,X1,X2,X3) :-sorted2440,147762 -sorted(X0,X1,X2,X3) :-sorted2440,147762 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2453,148425 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2453,148425 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element2453,148425 -assign(X0,X1,X2,X3) :-assign2504,152191 -assign(X0,X1,X2,X3) :-assign2504,152191 -assign(X0,X1,X2,X3) :-assign2504,152191 -element(X0,X1,X2,X3,X4) :-element2557,155826 -element(X0,X1,X2,X3,X4) :-element2557,155826 -element(X0,X1,X2,X3,X4) :-element2557,155826 -branch(X0,X1,X2,X3,X4) :-branch2602,158762 -branch(X0,X1,X2,X3,X4) :-branch2602,158762 -branch(X0,X1,X2,X3,X4) :-branch2602,158762 -relax(X0,X1,X2,X3,X4) :-relax2645,161605 -relax(X0,X1,X2,X3,X4) :-relax2645,161605 -relax(X0,X1,X2,X3,X4) :-relax2645,161605 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2658,162283 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2658,162283 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit2658,162283 -pow(X0,X1,X2,X3) :-pow2675,163329 -pow(X0,X1,X2,X3) :-pow2675,163329 -pow(X0,X1,X2,X3) :-pow2675,163329 -precede(X0,X1,X2) :-precede2692,164183 -precede(X0,X1,X2) :-precede2692,164183 -precede(X0,X1,X2) :-precede2692,164183 -argmax(X0,X1,X2,X3,X4) :-argmax2701,164583 -argmax(X0,X1,X2,X3,X4) :-argmax2701,164583 -argmax(X0,X1,X2,X3,X4) :-argmax2701,164583 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2720,165651 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2720,165651 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative2720,165651 -distinct(X0,X1,X2,X3) :-distinct2777,169721 -distinct(X0,X1,X2,X3) :-distinct2777,169721 -distinct(X0,X1,X2,X3) :-distinct2777,169721 -min(X0,X1,X2) :-min2800,171040 -min(X0,X1,X2) :-min2800,171040 -min(X0,X1,X2) :-min2800,171040 -sqrt(X0,X1,X2,X3) :-sqrt2813,171639 -sqrt(X0,X1,X2,X3) :-sqrt2813,171639 -sqrt(X0,X1,X2,X3) :-sqrt2813,171639 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2824,172161 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2824,172161 -sequence(X0,X1,X2,X3,X4,X5) :-sequence2824,172161 -unshare(X0,X1,X2) :-unshare2849,173695 -unshare(X0,X1,X2) :-unshare2849,173695 -unshare(X0,X1,X2) :-unshare2849,173695 -path(X0,X1,X2,X3,X4,X5) :-path2862,174331 -path(X0,X1,X2,X3,X4,X5) :-path2862,174331 -path(X0,X1,X2,X3,X4,X5) :-path2862,174331 -divmod(X0,X1,X2,X3,X4) :-divmod2887,175834 -divmod(X0,X1,X2,X3,X4) :-divmod2887,175834 -divmod(X0,X1,X2,X3,X4) :-divmod2887,175834 -branch(X0,X1,X2,X3,X4,X5) :-branch2900,176514 -branch(X0,X1,X2,X3,X4,X5) :-branch2900,176514 -branch(X0,X1,X2,X3,X4,X5) :-branch2900,176514 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2957,180621 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2957,180621 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap2957,180621 -argmin(X0,X1,X2,X3,X4) :-argmin2978,182117 -argmin(X0,X1,X2,X3,X4) :-argmin2978,182117 -argmin(X0,X1,X2,X3,X4) :-argmin2978,182117 -cumulative(X0,X1,X2,X3,X4) :-cumulative2997,183186 -cumulative(X0,X1,X2,X3,X4) :-cumulative2997,183186 -cumulative(X0,X1,X2,X3,X4) :-cumulative2997,183186 -member(X0,X1,X2) :-member3018,184425 -member(X0,X1,X2) :-member3018,184425 -member(X0,X1,X2) :-member3018,184425 -count(X0,X1,X2,X3,X4,X5) :-count3031,185043 -count(X0,X1,X2,X3,X4,X5) :-count3031,185043 -count(X0,X1,X2,X3,X4,X5) :-count3031,185043 -pow(X0,X1,X2,X3,X4) :-pow3086,188893 -pow(X0,X1,X2,X3,X4) :-pow3086,188893 -pow(X0,X1,X2,X3,X4) :-pow3086,188893 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3099,189555 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3099,189555 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative3099,189555 -branch(X0,X1,X2) :-branch3156,193905 -branch(X0,X1,X2) :-branch3156,193905 -branch(X0,X1,X2) :-branch3156,193905 -dom(X0,X1,X2) :-dom3177,195023 -dom(X0,X1,X2) :-dom3177,195023 -dom(X0,X1,X2) :-dom3177,195023 -linear(X0,X1,X2,X3,X4) :-linear3226,198046 -linear(X0,X1,X2,X3,X4) :-linear3226,198046 -linear(X0,X1,X2,X3,X4) :-linear3226,198046 -argmin(X0,X1,X2,X3,X4,X5) :-argmin3303,203379 -argmin(X0,X1,X2,X3,X4,X5) :-argmin3303,203379 -argmin(X0,X1,X2,X3,X4,X5) :-argmin3303,203379 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3318,204229 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3318,204229 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap3318,204229 -rel(X0,X1,X2,X3) :-rel3335,205262 -rel(X0,X1,X2,X3) :-rel3335,205262 -rel(X0,X1,X2,X3) :-rel3335,205262 -min(X0,X1,X2,X3,X4) :-min3432,212282 -min(X0,X1,X2,X3,X4) :-min3432,212282 -min(X0,X1,X2,X3,X4) :-min3432,212282 -count(X0,X1,X2) :-count3445,212947 -count(X0,X1,X2) :-count3445,212947 -count(X0,X1,X2) :-count3445,212947 -argmax(X0,X1,X2,X3) :-argmax3456,213449 -argmax(X0,X1,X2,X3) :-argmax3456,213449 -argmax(X0,X1,X2,X3) :-argmax3456,213449 -ite(X0,X1,X2,X3,X4,X5) :-ite3471,214213 -ite(X0,X1,X2,X3,X4,X5) :-ite3471,214213 -ite(X0,X1,X2,X3,X4,X5) :-ite3471,214213 - -packages/gecode/clp_examples/3jugs.yap,796 -main :-main20,499 -problem(Z, X, InFlow, OutFlow, N) :-problem26,589 -problem(Z, X, InFlow, OutFlow, N) :-problem26,589 -problem(Z, X, InFlow, OutFlow, N) :-problem26,589 -out(Cost, Ts, Ins, Out, N) :-out114,3001 -out(Cost, Ts, Ins, Out, N) :-out114,3001 -out(Cost, Ts, Ins, Out, N) :-out114,3001 -outl( X ) :-outl123,3275 -outl( X ) :-outl123,3275 -outl( X ) :-outl123,3275 -out(0) :- format(' .', []).out128,3384 -out(0) :- format(' .', []).out128,3384 -out(0) :- format(' .', []).out128,3384 -out(0) :- format(' .', []).out128,3384 -out(0) :- format(' .', []).out128,3384 -out(1) :- format(' 1', []).out129,3412 -out(1) :- format(' 1', []).out129,3412 -out(1) :- format(' 1', []).out129,3412 -out(1) :- format(' 1', []).out129,3412 -out(1) :- format(' 1', []).out129,3412 - -packages/gecode/clp_examples/photo.yap,745 -main :- ex(Ex, People, Names, _Preferences),main22,955 -join( Key, El, Key-El ).join32,1263 -join( Key, El, Key-El ).join32,1263 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -output( Name ) :- format(' ~a~n', [Name]).output34,1289 -photo(Ex, People, Amount) :-photo37,1409 -photo(Ex, People, Amount) :-photo37,1409 -photo(Ex, People, Amount) :-photo37,1409 -preference_satisfied(X-Y, B) :-preference_satisfied53,1821 -preference_satisfied(X-Y, B) :-preference_satisfied53,1821 -preference_satisfied(X-Y, B) :-preference_satisfied53,1821 - -packages/gecode/clp_examples/queens.yap,785 -main :-main5,73 -queens(N, Queens) :-queens17,352 -queens(N, Queens) :-queens17,352 -queens(N, Queens) :-queens17,352 -inc(_, I0, I0, I) :-inc27,615 -inc(_, I0, I0, I) :-inc27,615 -inc(_, I0, I0, I) :-inc27,615 -dec(_, I0, I0, I) :-dec30,649 -dec(_, I0, I0, I) :-dec30,649 -dec(_, I0, I0, I) :-dec30,649 -lqueens(N, Queens) :-lqueens33,683 -lqueens(N, Queens) :-lqueens33,683 -lqueens(N, Queens) :-lqueens33,683 -lconstrain([], _).lconstrain40,816 -lconstrain([], _).lconstrain40,816 -lconstrain( [Q|Queens], I0) :-lconstrain41,835 -lconstrain( [Q|Queens], I0) :-lconstrain41,835 -lconstrain( [Q|Queens], I0) :-lconstrain41,835 -constrain(Q, I, R, J, J1) :-constrain46,944 -constrain(Q, I, R, J, J1) :-constrain46,944 -constrain(Q, I, R, J, J1) :-constrain46,944 - -packages/gecode/clp_examples/send_more_money.yap,176 -main :-main21,946 -send_more_money(Letters) :-send_more_money35,1258 -send_more_money(Letters) :-send_more_money35,1258 -send_more_money(Letters) :-send_more_money35,1258 - -packages/gecode/clp_examples/send_most_money.yap,197 -main :-main22,947 -send_most_money(Letters, Money) :-send_most_money36,1316 -send_most_money(Letters, Money) :-send_most_money36,1316 -send_most_money(Letters, Money) :-send_most_money36,1316 - -packages/gecode/clp_examples/sudoku.yap,653 -main :-main8,96 -sudoku( Ex, Els ) :-sudoku14,154 -sudoku( Ex, Els ) :-sudoku14,154 -sudoku( Ex, Els ) :-sudoku14,154 -problem(Ex, Els) :-problem21,234 -problem(Ex, Els) :-problem21,234 -problem(Ex, Els) :-problem21,234 -bound(El, X) :-bound39,716 -bound(El, X) :-bound39,716 -bound(El, X) :-bound39,716 -output(Els) :-output45,801 -output(Els) :-output45,801 -output(Els) :-output45,801 -output(M, I) :-output50,904 -output(M, I) :-output50,904 -output(M, I) :-output50,904 -output_row( M, Row ) :-output_row54,981 -output_row( M, Row ) :-output_row54,981 -output_row( M, Row ) :-output_row54,981 -output_line :-output_line58,1075 - -packages/gecode/clp_examples/test.yap,1586 -t0 :-t07,97 -test0(X) :-test011,128 -test0(X) :-test011,128 -test0(X) :-test011,128 -t1 :-t115,163 -test1(X) :-test121,205 -test1(X) :-test121,205 -test1(X) :-test121,205 -t2 :-t228,288 -test2(X) :-test234,331 -test2(X) :-test234,331 -test2(X) :-test234,331 -t3 :-t339,390 -test3(A) :-test346,434 -test3(A) :-test346,434 -test3(A) :-test346,434 -t4 :-t454,541 -test4(A) :-test460,583 -test4(A) :-test460,583 -test4(A) :-test460,583 -t5 :-t570,711 -test5(A) :-test576,753 -test5(A) :-test576,753 -test5(A) :-test576,753 -t6 :-t683,868 -test6(A+B) :-test689,910 -test6(A+B) :-test689,910 -test6(A+B) :-test689,910 -t7 :-t7103,1150 -test7(A) :-test7109,1192 -test7(A) :-test7109,1192 -test7(A) :-test7109,1192 -t8 :-t8116,1322 -test8(A+B) :-test8123,1365 -test8(A+B) :-test8123,1365 -test8(A+B) :-test8123,1365 -t9 :-t9137,1605 -test9(X) :-test9144,1663 -test9(X) :-test9144,1663 -test9(X) :-test9144,1663 -t10 :-t10152,1804 -test10(X) :-test10159,1865 -test10(X) :-test10159,1865 -test10(X) :-test10159,1865 -t11 :-t11171,2105 -test11(X) :-test11177,2150 -test11(X) :-test11177,2150 -test11(X) :-test11177,2150 -t12 :-t12183,2219 -test12(X) :-test12189,2264 -test12(X) :-test12189,2264 -test12(X) :-test12189,2264 -t13 :-t13195,2345 -test13(X) :-test13201,2390 -test13(X) :-test13201,2390 -test13(X) :-test13201,2390 -t14 :-t14208,2491 -test14(X) :-test14214,2536 -test14(X) :-test14214,2536 -test14(X) :-test14214,2536 -t15 :-t15221,2635 -test15(X) :-test15227,2680 -test15(X) :-test15227,2680 -test15(X) :-test15227,2680 - -packages/gecode/clpfd.yap,33576 -preference_satisfied(X-Y, B) :-preference_satisfied125,3352 -preference_satisfied(X-Y, B) :-preference_satisfied125,3352 -preference_satisfied(X-Y, B) :-preference_satisfied125,3352 -matrix:array_extension(_.._ , gecode_clpfd:build).array_extension242,5908 -build( I..J, _, Size, L) :-build244,5960 -build( I..J, _, Size, L) :-build244,5960 -build( I..J, _, Size, L) :-build244,5960 -matrix:rhs_opaque(X) :- constraint(X).rhs_opaque248,6022 -matrix:rhs_opaque(X) :- constraint(X).rhs_opaque248,6022 -matrix:rhs_opaque(X) :- constraint(X).rhs_opaque248,6022 -constraint( (_ #> _) ).constraint250,6062 -constraint( (_ #> _) ).constraint250,6062 -constraint( (_ #< _) ).constraint251,6086 -constraint( (_ #< _) ).constraint251,6086 -constraint( (_ #>= _) ).constraint252,6110 -constraint( (_ #>= _) ).constraint252,6110 -constraint( (_ #=< _) ).constraint253,6135 -constraint( (_ #=< _) ).constraint253,6135 -constraint( (_ #= _) ).constraint254,6160 -constraint( (_ #= _) ).constraint254,6160 -constraint( (_ #\= _) ).constraint255,6184 -constraint( (_ #\= _) ).constraint255,6184 -constraint( (_ #\ _) ).constraint256,6209 -constraint( (_ #\ _) ).constraint256,6209 -constraint( (_ #<==> _) ).constraint257,6233 -constraint( (_ #<==> _) ).constraint257,6233 -constraint( (_ #==> _) ).constraint258,6260 -constraint( (_ #==> _) ).constraint258,6260 -constraint( (_ #<== _) ).constraint259,6286 -constraint( (_ #<== _) ).constraint259,6286 -constraint( (_ #\/ _) ).constraint260,6312 -constraint( (_ #\/ _) ).constraint260,6312 -constraint( (_ #/\ _) ).constraint261,6337 -constraint( (_ #/\ _) ).constraint261,6337 -constraint( in(_, _) ). %2,constraint262,6362 -constraint( in(_, _) ). %2,constraint262,6362 -constraint( ins(_, _) ). %2,constraint263,6390 -constraint( ins(_, _) ). %2,constraint263,6390 -constraint( all_different(_) ). %1,constraint264,6419 -constraint( all_different(_) ). %1,constraint264,6419 -constraint( all_distinct(_) ). %1,constraint265,6455 -constraint( all_distinct(_) ). %1,constraint265,6455 -constraint( all_distinct(_,_) ). %1,constraint266,6490 -constraint( all_distinct(_,_) ). %1,constraint266,6490 -constraint( sum(_, _, _) ). %3,constraint267,6527 -constraint( sum(_, _, _) ). %3,constraint267,6527 -constraint( scalar_product(_, _, _, _) ). %4,constraint268,6559 -constraint( scalar_product(_, _, _, _) ). %4,constraint268,6559 -constraint( min(_, _) ). %2,constraint269,6605 -constraint( min(_, _) ). %2,constraint269,6605 -constraint( minimum(_, _) ). %2,constraint270,6634 -constraint( minimum(_, _) ). %2,constraint270,6634 -constraint( max(_, _) ). %2,constraint271,6667 -constraint( max(_, _) ). %2,constraint271,6667 -constraint( maximum(_, _) ). %2,constraint272,6696 -constraint( maximum(_, _) ). %2,constraint272,6696 -constraint( in_relation(_, _) ). %2,constraint273,6729 -constraint( in_relation(_, _) ). %2,constraint273,6729 -constraint( in_dfa(_, _) ). %2,constraint274,6766 -constraint( in_dfa(_, _) ). %2,constraint274,6766 -constraint( in_dfa(_, _, _, _) ). %2,constraint275,6798 -constraint( in_dfa(_, _, _, _) ). %2,constraint275,6798 -constraint( tuples_in(_, _) ). %2,constraint276,6836 -constraint( tuples_in(_, _) ). %2,constraint276,6836 -constraint( labeling(_, _) ). %2,constraint277,6871 -constraint( labeling(_, _) ). %2,constraint277,6871 -constraint( label(_) ). %1,constraint278,6905 -constraint( label(_) ). %1,constraint278,6905 -constraint( indomain(_) ). %1,constraint279,6933 -constraint( indomain(_) ). %1,constraint279,6933 -constraint( lex_chain(_) ). %1,constraint280,6964 -constraint( lex_chain(_) ). %1,constraint280,6964 -constraint( serialized(_, _) ). %2,constraint281,6996 -constraint( serialized(_, _) ). %2,constraint281,6996 -constraint( global_cardinality(_, _) ). %2,constraint282,7032 -constraint( global_cardinality(_, _) ). %2,constraint282,7032 -constraint( global_cardinality(_, _, _) ). %3,constraint283,7076 -constraint( global_cardinality(_, _, _) ). %3,constraint283,7076 -constraint( circuit(_) ). %1,constraint284,7123 -constraint( circuit(_) ). %1,constraint284,7123 -constraint( element(_, _, _) ). %3,constraint285,7153 -constraint( element(_, _, _) ). %3,constraint285,7153 -constraint( automaton(_, _, _) ). %3,constraint286,7189 -constraint( automaton(_, _, _) ). %3,constraint286,7189 -constraint( automaton(_, _, _, _, _, _, _, _) ). %8,constraint287,7227 -constraint( automaton(_, _, _, _, _, _, _, _) ). %8,constraint287,7227 -constraint( transpose(_, _) ). %2,constraint288,7280 -constraint( transpose(_, _) ). %2,constraint288,7280 -constraint( zcompare(_, _, _) ). %3,constraint289,7315 -constraint( zcompare(_, _, _) ). %3,constraint289,7315 -constraint( chain(_, _) ). %2,constraint290,7352 -constraint( chain(_, _) ). %2,constraint290,7352 -constraint( element(_, _) ). %2,constraint291,7383 -constraint( element(_, _) ). %2,constraint291,7383 -constraint( fd_var(_) ). %1,constraint292,7416 -constraint( fd_var(_) ). %1,constraint292,7416 -constraint( fd_inf(_, _) ). %2,constraint293,7445 -constraint( fd_inf(_, _) ). %2,constraint293,7445 -constraint( fd_sup(_, _) ). %2,constraint294,7477 -constraint( fd_sup(_, _) ). %2,constraint294,7477 -constraint( fd_size(_, _) ). %2,constraint295,7509 -constraint( fd_size(_, _) ). %2,constraint295,7509 -constraint( fd_dom(_, _) ). %2constraint296,7542 -constraint( fd_dom(_, _) ). %2constraint296,7542 -constraint( clause(_, _, _, _) ). %2constraint297,7573 -constraint( clause(_, _, _, _) ). %2constraint297,7573 -process_constraints((B0,B1), (NB0, NB1), Env) :-process_constraints300,7612 -process_constraints((B0,B1), (NB0, NB1), Env) :-process_constraints300,7612 -process_constraints((B0,B1), (NB0, NB1), Env) :-process_constraints300,7612 -process_constraints(B, B, env(_Space)) :-process_constraints303,7733 -process_constraints(B, B, env(_Space)) :-process_constraints303,7733 -process_constraints(B, B, env(_Space)) :-process_constraints303,7733 -process_constraints(B, B, _Env).process_constraints305,7794 -process_constraints(B, B, _Env).process_constraints305,7794 -sum( L, Op, V) :-sum383,9264 -sum( L, Op, V) :-sum383,9264 -sum( L, Op, V) :-sum383,9264 -'#\\'(A) :-#\\412,9958 -'#\\'(A) :-#\\412,9958 -'#\\'(A) :-#\\412,9958 -boolvar( X ) :-boolvar454,10958 -boolvar( X ) :-boolvar454,10958 -boolvar( X ) :-boolvar454,10958 -boolvars( Xs ) :-boolvars458,11043 -boolvars( Xs ) :-boolvars458,11043 -boolvars( Xs ) :-boolvars458,11043 -all_different( Xs ) :-all_different467,11259 -all_different( Xs ) :-all_different467,11259 -all_different( Xs ) :-all_different467,11259 -all_distinct( Xs ) :-all_distinct472,11355 -all_distinct( Xs ) :-all_distinct472,11355 -all_distinct( Xs ) :-all_distinct472,11355 -all_distinct( Cs, Xs ) :-all_distinct476,11448 -all_distinct( Cs, Xs ) :-all_distinct476,11448 -all_distinct( Cs, Xs ) :-all_distinct476,11448 -scalar_product( Cs, Vs, Rels, X ) :-scalar_product480,11549 -scalar_product( Cs, Vs, Rels, X ) :-scalar_product480,11549 -scalar_product( Cs, Vs, Rels, X ) :-scalar_product480,11549 -lex_chain( Cs ) :-lex_chain484,11672 -lex_chain( Cs ) :-lex_chain484,11672 -lex_chain( Cs ) :-lex_chain484,11672 -minimum( V, Xs ) :-minimum488,11760 -minimum( V, Xs ) :-minimum488,11760 -minimum( V, Xs ) :-minimum488,11760 -min( Xs, V ) :-min493,11872 -min( Xs, V ) :-min493,11872 -min( Xs, V ) :-min493,11872 -maximum( V, Xs ) :-maximum498,11980 -maximum( V, Xs ) :-maximum498,11980 -maximum( V, Xs ) :-maximum498,11980 -max( Xs, V ) :-max503,12092 -max( Xs, V ) :-max503,12092 -max( Xs, V ) :-max503,12092 -element( V, Xs ) :-element508,12200 -element( V, Xs ) :-element508,12200 -element( V, Xs ) :-element508,12200 -in_relation( Xs, Rel ) :-in_relation513,12305 -in_relation( Xs, Rel ) :-in_relation513,12305 -in_relation( Xs, Rel ) :-in_relation513,12305 -in_dfa( Xs, Rel ) :-in_dfa517,12403 -in_dfa( Xs, Rel ) :-in_dfa517,12403 -in_dfa( Xs, Rel ) :-in_dfa517,12403 -in_dfa( Xs, S0, Ts, Fs ) :-in_dfa521,12491 -in_dfa( Xs, S0, Ts, Fs ) :-in_dfa521,12491 -in_dfa( Xs, S0, Ts, Fs ) :-in_dfa521,12491 -clause( and, Ps, Ns, V ) :-clause525,12593 -clause( and, Ps, Ns, V ) :-clause525,12593 -clause( and, Ps, Ns, V ) :-clause525,12593 -clause( or, Ps, Ns, V ) :-clause531,12736 -clause( or, Ps, Ns, V ) :-clause531,12736 -clause( or, Ps, Ns, V ) :-clause531,12736 -labeling(Opts, Xs) :-labeling538,12878 -labeling(Opts, Xs) :-labeling538,12878 -labeling(Opts, Xs) :-labeling538,12878 -processs_lab_opt(leftmost, _, 'INT_VAR_NONE', BranchVal, BranchVal).processs_lab_opt547,13161 -processs_lab_opt(leftmost, _, 'INT_VAR_NONE', BranchVal, BranchVal).processs_lab_opt547,13161 -processs_lab_opt(min, _, 'INT_VAR_SIZE_MIN', BranchVal, BranchVal).processs_lab_opt548,13230 -processs_lab_opt(min, _, 'INT_VAR_SIZE_MIN', BranchVal, BranchVal).processs_lab_opt548,13230 -processs_lab_opt(max, _, 'INT_VAR_SIZE_MAX', BranchVal, BranchVal).processs_lab_opt549,13298 -processs_lab_opt(max, _, 'INT_VAR_SIZE_MAX', BranchVal, BranchVal).processs_lab_opt549,13298 -processs_lab_opt(ff, _, 'INT_VAR_DEGREE_MIN', BranchVal, BranchVal).processs_lab_opt550,13366 -processs_lab_opt(ff, _, 'INT_VAR_DEGREE_MIN', BranchVal, BranchVal).processs_lab_opt550,13366 -processs_lab_opt(min_step, BranchVar, BranchVar, _, 'INT_VAL_MIN').processs_lab_opt551,13435 -processs_lab_opt(min_step, BranchVar, BranchVar, _, 'INT_VAL_MIN').processs_lab_opt551,13435 -processs_lab_opt(max_step, BranchVar, BranchVar, _, 'INT_VAL_MIN').processs_lab_opt552,13503 -processs_lab_opt(max_step, BranchVar, BranchVar, _, 'INT_VAL_MIN').processs_lab_opt552,13503 -processs_lab_opt(bisect, BranchVar, BranchVar, _, 'INT_VAL_MED').processs_lab_opt553,13571 -processs_lab_opt(bisect, BranchVar, BranchVar, _, 'INT_VAL_MED').processs_lab_opt553,13571 -processs_lab_opt(enum, BranchVar, BranchVar, _, 'INT_VALUES_MIN').processs_lab_opt554,13637 -processs_lab_opt(enum, BranchVar, BranchVar, _, 'INT_VALUES_MIN').processs_lab_opt554,13637 -maximize(V) :-maximize557,13706 -maximize(V) :-maximize557,13706 -maximize(V) :-maximize557,13706 -minimize(V) :-minimize562,13782 -minimize(V) :-minimize562,13782 -minimize(V) :-minimize562,13782 -extensional_constraint( Tuples, TupleSet) :-extensional_constraint567,13858 -extensional_constraint( Tuples, TupleSet) :-extensional_constraint567,13858 -extensional_constraint( Tuples, TupleSet) :-extensional_constraint567,13858 -dfa( S0, Transitions, Finals, DFA) :-dfa570,13937 -dfa( S0, Transitions, Finals, DFA) :-dfa570,13937 -dfa( S0, Transitions, Finals, DFA) :-dfa570,13937 -check(V, NV) :-check574,14017 -check(V, NV) :-check574,14017 -check(V, NV) :-check574,14017 -post( ( A #= B), Env, Reify) :-post586,14526 -post( ( A #= B), Env, Reify) :-post586,14526 -post( ( A #= B), Env, Reify) :-post586,14526 -post( ( A #\= B), Env, Reify) :-post588,14596 -post( ( A #\= B), Env, Reify) :-post588,14596 -post( ( A #\= B), Env, Reify) :-post588,14596 -post( ( A #> B), Env, Reify) :-post590,14668 -post( ( A #> B), Env, Reify) :-post590,14668 -post( ( A #> B), Env, Reify) :-post590,14668 -post( ( A #< B), Env, Reify) :-post592,14738 -post( ( A #< B), Env, Reify) :-post592,14738 -post( ( A #< B), Env, Reify) :-post592,14738 -post( ( A #>= B), Env, Reify) :-post594,14808 -post( ( A #>= B), Env, Reify) :-post594,14808 -post( ( A #>= B), Env, Reify) :-post594,14808 -post( ( A #=< B), Env, Reify) :-post596,14880 -post( ( A #=< B), Env, Reify) :-post596,14880 -post( ( A #=< B), Env, Reify) :-post596,14880 -post( rel( A, Op), Space-Map, Reify):-post599,14965 -post( rel( A, Op), Space-Map, Reify):-post599,14965 -post( rel( A, Op), Space-Map, Reify):-post599,14965 -post( rel( A, Op, B), Space-Map, Reify):-post607,15211 -post( rel( A, Op, B), Space-Map, Reify):-post607,15211 -post( rel( A, Op, B), Space-Map, Reify):-post607,15211 -post( rel( A, Op, B), Space-Map, Reify) :-post616,15470 -post( rel( A, Op, B), Space-Map, Reify) :-post616,15470 -post( rel( A, Op, B), Space-Map, Reify) :-post616,15470 -post( rel( A, Op, B ), Space-Map, Reify):-post624,15655 -post( rel( A, Op, B ), Space-Map, Reify):-post624,15655 -post( rel( A, Op, B ), Space-Map, Reify):-post624,15655 -post( rel( sum(L), Op, Out), Space-Map, Reify):- !,post633,15976 -post( rel( sum(L), Op, Out), Space-Map, Reify):- !,post633,15976 -post( rel( sum(L), Op, Out), Space-Map, Reify):- !,post633,15976 -post( rel( count(X, Y), Op, Out), Space-Map, Reify):- !,post644,16350 -post( rel( count(X, Y), Op, Out), Space-Map, Reify):- !,post644,16350 -post( rel( count(X, Y), Op, Out), Space-Map, Reify):- !,post644,16350 -post( rel( sum(Foreach, Cond), Op, Out), Space-Map, Reify):- !,post656,16849 -post( rel( sum(Foreach, Cond), Op, Out), Space-Map, Reify):- !,post656,16849 -post( rel( sum(Foreach, Cond), Op, Out), Space-Map, Reify):- !,post656,16849 -post( rel(A1+A2, Op, B), Space-Map, Reify):-post667,17260 -post( rel(A1+A2, Op, B), Space-Map, Reify):-post667,17260 -post( rel(A1+A2, Op, B), Space-Map, Reify):-post667,17260 -post( rel(A1-A2, Op, B), Space-Map, Reify):-post684,17745 -post( rel(A1-A2, Op, B), Space-Map, Reify):-post684,17745 -post( rel(A1-A2, Op, B), Space-Map, Reify):-post684,17745 -post( rel(A, Op, B), Space-Map, Reify):-post701,18230 -post( rel(A, Op, B), Space-Map, Reify):-post701,18230 -post( rel(A, Op, B), Space-Map, Reify):-post701,18230 -post( rel(A, Op, B), Space-Map, Reify):-post711,18520 -post( rel(A, Op, B), Space-Map, Reify):-post711,18520 -post( rel(A, Op, B), Space-Map, Reify):-post711,18520 -post( rel(A, Op, B), Space-Map, Reify):-post719,18739 -post( rel(A, Op, B), Space-Map, Reify):-post719,18739 -post( rel(A, Op, B), Space-Map, Reify):-post719,18739 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post729,19024 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post729,19024 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post729,19024 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post737,19273 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post737,19273 -post( scalar_product(Cs, L, Op, Out), Space-Map, Reify):-post737,19273 -post( all_different( Xs ), Space-Map, Reify) :-post745,19511 -post( all_different( Xs ), Space-Map, Reify) :-post745,19511 -post( all_different( Xs ), Space-Map, Reify) :-post745,19511 -post( all_distinct( Xs ), Space-Map, Reify) :-post752,19699 -post( all_distinct( Xs ), Space-Map, Reify) :-post752,19699 -post( all_distinct( Xs ), Space-Map, Reify) :-post752,19699 -post( all_distinct( Cs , Xs ), Space-Map, Reify) :-post759,19885 -post( all_distinct( Cs , Xs ), Space-Map, Reify) :-post759,19885 -post( all_distinct( Cs , Xs ), Space-Map, Reify) :-post759,19885 -post(in_tupleset(Xs, Tuples), Space-Map, Reify) :-post766,20084 -post(in_tupleset(Xs, Tuples), Space-Map, Reify) :-post766,20084 -post(in_tupleset(Xs, Tuples), Space-Map, Reify) :-post766,20084 -post(in_tupleset(Xs, TS), Space-Map, Reify) :-post775,20336 -post(in_tupleset(Xs, TS), Space-Map, Reify) :-post775,20336 -post(in_tupleset(Xs, TS), Space-Map, Reify) :-post775,20336 -post(in_dfa(Xs, S0, Trs, Fs), Space-Map, Reify) :-post782,20530 -post(in_dfa(Xs, S0, Trs, Fs), Space-Map, Reify) :-post782,20530 -post(in_dfa(Xs, S0, Trs, Fs), Space-Map, Reify) :-post782,20530 -post(in_dfa(Xs, TS), Space-Map, Reify) :-post790,20759 -post(in_dfa(Xs, TS), Space-Map, Reify) :-post790,20759 -post(in_dfa(Xs, TS), Space-Map, Reify) :-post790,20759 -post(element(V, Xs), Space-Map, Reify) :-post798,20944 -post(element(V, Xs), Space-Map, Reify) :-post798,20944 -post(element(V, Xs), Space-Map, Reify) :-post798,20944 -post(clause( Type, Ps, Ns, V), Space-Map, Reify) :-post807,21123 -post(clause( Type, Ps, Ns, V), Space-Map, Reify) :-post807,21123 -post(clause( Type, Ps, Ns, V), Space-Map, Reify) :-post807,21123 -gecode_arith_op( (#=) , 'IRT_EQ' ).gecode_arith_op817,21380 -gecode_arith_op( (#=) , 'IRT_EQ' ).gecode_arith_op817,21380 -gecode_arith_op( (#\=) , 'IRT_NQ' ).gecode_arith_op818,21417 -gecode_arith_op( (#\=) , 'IRT_NQ' ).gecode_arith_op818,21417 -gecode_arith_op( (#>) , 'IRT_GR' ).gecode_arith_op819,21454 -gecode_arith_op( (#>) , 'IRT_GR' ).gecode_arith_op819,21454 -gecode_arith_op( (#>=) , 'IRT_GQ' ).gecode_arith_op820,21491 -gecode_arith_op( (#>=) , 'IRT_GQ' ).gecode_arith_op820,21491 -gecode_arith_op( (#<) , 'IRT_LE' ).gecode_arith_op821,21528 -gecode_arith_op( (#<) , 'IRT_LE' ).gecode_arith_op821,21528 -gecode_arith_op( (#=<) , 'IRT_LQ' ).gecode_arith_op822,21565 -gecode_arith_op( (#=<) , 'IRT_LQ' ).gecode_arith_op822,21565 -reverse_arith_op( (#=) , (#=) ).reverse_arith_op824,21603 -reverse_arith_op( (#=) , (#=) ).reverse_arith_op824,21603 -reverse_arith_op( (#\=) , (#\=) ).reverse_arith_op825,21638 -reverse_arith_op( (#\=) , (#\=) ).reverse_arith_op825,21638 -reverse_arith_op( (#>) , (#<) ).reverse_arith_op826,21674 -reverse_arith_op( (#>) , (#<) ).reverse_arith_op826,21674 -reverse_arith_op( (#>=) , (#=<) ).reverse_arith_op827,21709 -reverse_arith_op( (#>=) , (#=<) ).reverse_arith_op827,21709 -reverse_arith_op( (#<) , (#>) ).reverse_arith_op828,21745 -reverse_arith_op( (#<) , (#>) ).reverse_arith_op828,21745 -reverse_arith_op( (#=<) , (#>=) ).reverse_arith_op829,21780 -reverse_arith_op( (#=<) , (#>=) ).reverse_arith_op829,21780 -linearize(V, C, [A|As], As, [C|CAs], CAs, I, I, _-Map) :-linearize831,21817 -linearize(V, C, [A|As], As, [C|CAs], CAs, I, I, _-Map) :-linearize831,21817 -linearize(V, C, [A|As], As, [C|CAs], CAs, I, I, _-Map) :-linearize831,21817 -linearize(A+B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize834,21902 -linearize(A+B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize834,21902 -linearize(A+B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize834,21902 -linearize(A-B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize837,22054 -linearize(A-B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize837,22054 -linearize(A-B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize837,22054 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize841,22218 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize841,22218 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize841,22218 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize844,22295 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize844,22295 -linearize(A, C, As, As, CAs, CAs, I, IF, _) :-linearize844,22295 -linearize(C1*B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize848,22406 -linearize(C1*B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize848,22406 -linearize(C1*B, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize848,22406 -linearize(B*C1, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize852,22537 -linearize(B*C1, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize852,22537 -linearize(B*C1, C, As, Bs, CAs, CBs, I, IF, Env) :-linearize852,22537 -linearize(AC, C, [A|Bs], Bs, [C|CBs], CBs, I, I, Env) :-linearize856,22668 -linearize(AC, C, [A|Bs], Bs, [C|CBs], CBs, I, I, Env) :-linearize856,22668 -linearize(AC, C, [A|Bs], Bs, [C|CBs], CBs, I, I, Env) :-linearize856,22668 -arith('/\\'(_,_), (/\)).arith862,22793 -arith('/\\'(_,_), (/\)).arith862,22793 -arith('\\/'(_,_), (\/)).arith863,22818 -arith('\\/'(_,_), (\/)).arith863,22818 -arith('=>'(_,_), (=>)).arith864,22843 -arith('=>'(_,_), (=>)).arith864,22843 -arith('<=>'(_,_), (<=>)).arith865,22867 -arith('<=>'(_,_), (<=>)).arith865,22867 -arith(xor(_,_), xor).arith866,22893 -arith(xor(_,_), xor).arith866,22893 -arith(abs(_), abs).arith867,22915 -arith(abs(_), abs).arith867,22915 -arith(min(_), min).arith868,22935 -arith(min(_), min).arith868,22935 -arith(max(_), max).arith869,22955 -arith(max(_), max).arith869,22955 -arith(min(_,_), min).arith870,22975 -arith(min(_,_), min).arith870,22975 -arith(max(_,_), max).arith871,22997 -arith(max(_,_), max).arith871,22997 -arith((_ * _), times).arith872,23019 -arith((_ * _), times).arith872,23019 -arith((_ / _), div).arith873,23042 -arith((_ / _), div).arith873,23042 -arith(sum(_), sum).arith874,23063 -arith(sum(_), sum).arith874,23063 -arith(sum(_,_), sum).arith875,23083 -arith(sum(_,_), sum).arith875,23083 -arith(count(_,_), count).arith876,23105 -arith(count(_,_), count).arith876,23105 -equality(V, V, _Env) :-equality880,23239 -equality(V, V, _Env) :-equality880,23239 -equality(V, V, _Env) :-equality880,23239 -equality(V, V, _Env) :-equality882,23277 -equality(V, V, _Env) :-equality882,23277 -equality(V, V, _Env) :-equality882,23277 -equality(abs(V), NV, Env) :-equality884,23319 -equality(abs(V), NV, Env) :-equality884,23319 -equality(abs(V), NV, Env) :-equality884,23319 -equality(min(V), NV, Env) :-equality887,23401 -equality(min(V), NV, Env) :-equality887,23401 -equality(min(V), NV, Env) :-equality887,23401 -equality(max(V), NV, Env) :-equality890,23496 -equality(max(V), NV, Env) :-equality890,23496 -equality(max(V), NV, Env) :-equality890,23496 -equality(V1+V2, NV, Env) :-equality893,23591 -equality(V1+V2, NV, Env) :-equality893,23591 -equality(V1+V2, NV, Env) :-equality893,23591 -equality(V1-V2, NV, Env) :-equality897,23707 -equality(V1-V2, NV, Env) :-equality897,23707 -equality(V1-V2, NV, Env) :-equality897,23707 -equality(V1*V2, NV, Env) :-equality901,23824 -equality(V1*V2, NV, Env) :-equality901,23824 -equality(V1*V2, NV, Env) :-equality901,23824 -equality(V1/V2, NV, Env) :-equality905,23941 -equality(V1/V2, NV, Env) :-equality905,23941 -equality(V1/V2, NV, Env) :-equality905,23941 -equality(V1 mod V2, NV, Env) :-equality909,24056 -equality(V1 mod V2, NV, Env) :-equality909,24056 -equality(V1 mod V2, NV, Env) :-equality909,24056 -equality(max( V1 , V2), NV, Env) :-equality913,24177 -equality(max( V1 , V2), NV, Env) :-equality913,24177 -equality(max( V1 , V2), NV, Env) :-equality913,24177 -equality(min( V1 , V2), NV, Env) :-equality917,24302 -equality(min( V1 , V2), NV, Env) :-equality917,24302 -equality(min( V1 , V2), NV, Env) :-equality917,24302 -equality(sum( V ), NV, Env) :-equality921,24427 -equality(sum( V ), NV, Env) :-equality921,24427 -equality(sum( V ), NV, Env) :-equality921,24427 -equality(sum( C, G ), NV, Env) :-equality924,24524 -equality(sum( C, G ), NV, Env) :-equality924,24524 -equality(sum( C, G ), NV, Env) :-equality924,24524 -equality('/\\'( V1 , V2), NV, Env) :-equality926,24590 -equality('/\\'( V1 , V2), NV, Env) :-equality926,24590 -equality('/\\'( V1 , V2), NV, Env) :-equality926,24590 -equality('\\/'( V1 , V2), NV, Env) :-equality930,24716 -equality('\\/'( V1 , V2), NV, Env) :-equality930,24716 -equality('\\/'( V1 , V2), NV, Env) :-equality930,24716 -equality('<=>'( V1 , V2), NV, Env) :-equality934,24842 -equality('<=>'( V1 , V2), NV, Env) :-equality934,24842 -equality('<=>'( V1 , V2), NV, Env) :-equality934,24842 -equality('=>'( V1 , V2), NV, Env) :-equality938,24969 -equality('=>'( V1 , V2), NV, Env) :-equality938,24969 -equality('=>'( V1 , V2), NV, Env) :-equality938,24969 -equality('xor'( V1 , V2), NV, Env) :-equality942,25094 -equality('xor'( V1 , V2), NV, Env) :-equality942,25094 -equality('xor'( V1 , V2), NV, Env) :-equality942,25094 -equality_l(Env, V0, V) :-equality_l947,25222 -equality_l(Env, V0, V) :-equality_l947,25222 -equality_l(Env, V0, V) :-equality_l947,25222 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c951,25286 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c951,25286 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c951,25286 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c962,25542 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c962,25542 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c962,25542 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c969,25692 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c969,25692 -out_c(Name, A1, B, (#=), Space-Map, Reify) :-out_c969,25692 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c973,25808 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c973,25808 -out_c(Name, A1, B, Op, Space-Map, Reify) :-out_c973,25808 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c986,26072 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c986,26072 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c986,26072 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c997,26332 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c997,26332 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c997,26332 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c1005,26528 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c1005,26528 -out_c(Name, A1, A2, B, (#=), Space-Map, Reify) :-out_c1005,26528 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c1009,26662 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c1009,26662 -out_c(Name, A1, A2, B, Op, Space-Map, Reify) :-out_c1009,26662 -new_arith( abs, V, NV, Space-Map) :-new_arith1020,26914 -new_arith( abs, V, NV, Space-Map) :-new_arith1020,26914 -new_arith( abs, V, NV, Space-Map) :-new_arith1020,26914 -new_arith( min, V, NV, Space-Map) :-new_arith1032,27202 -new_arith( min, V, NV, Space-Map) :-new_arith1032,27202 -new_arith( min, V, NV, Space-Map) :-new_arith1032,27202 -new_arith( max, V, NV, Space-Map) :-new_arith1041,27438 -new_arith( max, V, NV, Space-Map) :-new_arith1041,27438 -new_arith( max, V, NV, Space-Map) :-new_arith1041,27438 -new_arith( sum, V, NV, Space-Map) :-new_arith1050,27674 -new_arith( sum, V, NV, Space-Map) :-new_arith1050,27674 -new_arith( sum, V, NV, Space-Map) :-new_arith1050,27674 -new_arith( minus, V1, V2, NV, Space-Map) :-new_arith1057,27872 -new_arith( minus, V1, V2, NV, Space-Map) :-new_arith1057,27872 -new_arith( minus, V1, V2, NV, Space-Map) :-new_arith1057,27872 -new_arith( plus, V1, V2, NV, Space-Map) :-new_arith1066,28121 -new_arith( plus, V1, V2, NV, Space-Map) :-new_arith1066,28121 -new_arith( plus, V1, V2, NV, Space-Map) :-new_arith1066,28121 -new_arith( min, V1, V2, NV, Space-Map) :-new_arith1075,28368 -new_arith( min, V1, V2, NV, Space-Map) :-new_arith1075,28368 -new_arith( min, V1, V2, NV, Space-Map) :-new_arith1075,28368 -new_arith( max, V1, V2, NV, Space-Map) :-new_arith1084,28603 -new_arith( max, V1, V2, NV, Space-Map) :-new_arith1084,28603 -new_arith( max, V1, V2, NV, Space-Map) :-new_arith1084,28603 -new_arith( times, V1, V2, NV, Space-Map) :-new_arith1093,28838 -new_arith( times, V1, V2, NV, Space-Map) :-new_arith1093,28838 -new_arith( times, V1, V2, NV, Space-Map) :-new_arith1093,28838 -new_arith( (div), V1, V2, NV, Space-Map) :-new_arith1102,29103 -new_arith( (div), V1, V2, NV, Space-Map) :-new_arith1102,29103 -new_arith( (div), V1, V2, NV, Space-Map) :-new_arith1102,29103 -new_arith( (mod), V1, V2, NV, Space-Map) :-new_arith1111,29362 -new_arith( (mod), V1, V2, NV, Space-Map) :-new_arith1111,29362 -new_arith( (mod), V1, V2, NV, Space-Map) :-new_arith1111,29362 -new_arith( sum, Foreach, Cond, NV, Space-Map) :-new_arith1120,29596 -new_arith( sum, Foreach, Cond, NV, Space-Map) :-new_arith1120,29596 -new_arith( sum, Foreach, Cond, NV, Space-Map) :-new_arith1120,29596 -new_arith( (/\), V1, V2, NV, Space-Map) :-new_arith1128,29845 -new_arith( (/\), V1, V2, NV, Space-Map) :-new_arith1128,29845 -new_arith( (/\), V1, V2, NV, Space-Map) :-new_arith1128,29845 -new_arith( (\/), V1, V2, NV, Space-Map) :-new_arith1135,30007 -new_arith( (\/), V1, V2, NV, Space-Map) :-new_arith1135,30007 -new_arith( (\/), V1, V2, NV, Space-Map) :-new_arith1135,30007 -new_arith( (=>), V1, V2, NV, Space-Map) :-new_arith1142,30168 -new_arith( (=>), V1, V2, NV, Space-Map) :-new_arith1142,30168 -new_arith( (=>), V1, V2, NV, Space-Map) :-new_arith1142,30168 -new_arith( (<=>), V1, V2, NV, Space-Map) :-new_arith1150,30331 -new_arith( (<=>), V1, V2, NV, Space-Map) :-new_arith1150,30331 -new_arith( (<=>), V1, V2, NV, Space-Map) :-new_arith1150,30331 -new_arith( xor, V1, V2, NV, Space-Map) :-new_arith1157,30494 -new_arith( xor, V1, V2, NV, Space-Map) :-new_arith1157,30494 -new_arith( xor, V1, V2, NV, Space-Map) :-new_arith1157,30494 -min_times(Min1,Min2,Max1,Max2,Min) :-min_times1166,30657 -min_times(Min1,Min2,Max1,Max2,Min) :-min_times1166,30657 -min_times(Min1,Min2,Max1,Max2,Min) :-min_times1166,30657 -max_times(Min1,Min2,Max1,Max2,Max) :-max_times1169,30763 -max_times(Min1,Min2,Max1,Max2,Max) :-max_times1169,30763 -max_times(Min1,Min2,Max1,Max2,Max) :-max_times1169,30763 -min_div(Min1,Min20,Max1,Max20,Min) :-min_div1172,30869 -min_div(Min1,Min20,Max1,Max20,Min) :-min_div1172,30869 -min_div(Min1,Min20,Max1,Max20,Min) :-min_div1172,30869 -max_div(Min1,Min20,Max1,Max20,Max) :-max_div1177,31077 -max_div(Min1,Min20,Max1,Max20,Max) :-max_div1177,31077 -max_div(Min1,Min20,Max1,Max20,Max) :-max_div1177,31077 -min_l(Map, V, Min0, Min, Max0, Max) :-min_l1182,31285 -min_l(Map, V, Min0, Min, Max0, Max) :-min_l1182,31285 -min_l(Map, V, Min0, Min, Max0, Max) :-min_l1182,31285 -max_l(Map, V, Min0, Min, Max0, Max) :-max_l1187,31402 -max_l(Map, V, Min0, Min, Max0, Max) :-max_l1187,31402 -max_l(Map, V, Min0, Min, Max0, Max) :-max_l1187,31402 -sum_l(Map, V, Min0, Min, Max0, Max) :-sum_l1192,31519 -sum_l(Map, V, Min0, Min, Max0, Max) :-sum_l1192,31519 -sum_l(Map, V, Min0, Min, Max0, Max) :-sum_l1192,31519 -in_c(A, A, _y) :-in_c1198,31629 -in_c(A, A, _y) :-in_c1198,31629 -in_c(A, A, _y) :-in_c1198,31629 -in_c(C, A, Space-Map) :-in_c1200,31660 -in_c(C, A, Space-Map) :-in_c1200,31660 -in_c(C, A, Space-Map) :-in_c1200,31660 -in_c_l(Env, V, IV) :-in_c_l1207,31798 -in_c_l(Env, V, IV) :-in_c_l1207,31798 -in_c_l(Env, V, IV) :-in_c_l1207,31798 -user:term_expansion( ( H :- B), (H :- (gecode_clpfd:init_gecode(Space, Me), NB, gecode_clpfd:close_gecode(Space, Vs, Me)) ) ) :-term_expansion1210,31840 -user:term_expansion( ( H :- B), (H :- (gecode_clpfd:init_gecode(Space, Me), NB, gecode_clpfd:close_gecode(Space, Vs, Me)) ) ) :-term_expansion1210,31840 -init_gecode(Space, old) :-init_gecode1216,32068 -init_gecode(Space, old) :-init_gecode1216,32068 -init_gecode(Space, old) :-init_gecode1216,32068 -init_gecode(Space-Map, new) :-init_gecode1218,32147 -init_gecode(Space-Map, new) :-init_gecode1218,32147 -init_gecode(Space-Map, new) :-init_gecode1218,32147 -close_gecode(_Space, _Vs, old) :- !.close_gecode1223,32263 -close_gecode(_Space, _Vs, old) :- !.close_gecode1223,32263 -close_gecode(_Space, _Vs, old) :- !.close_gecode1223,32263 -close_gecode(Space-Map, Vs0, new) :-close_gecode1224,32300 -close_gecode(Space-Map, Vs0, new) :-close_gecode1224,32300 -close_gecode(Space-Map, Vs0, new) :-close_gecode1224,32300 -intvar(Map, V) :-intvar1232,32513 -intvar(Map, V) :-intvar1232,32513 -intvar(Map, V) :-intvar1232,32513 -get_home(Home) :-get_home1235,32549 -get_home(Home) :-get_home1235,32549 -get_home(Home) :-get_home1235,32549 -cond2list((List where Goal), El, Cs, Vs) :- !,cond2list1238,32599 -cond2list((List where Goal), El, Cs, Vs) :- !,cond2list1238,32599 -cond2list((List where Goal), El, Cs, Vs) :- !,cond2list1238,32599 -cond2list(List, El, Cs, Vs) :- !,cond2list1240,32700 -cond2list(List, El, Cs, Vs) :- !,cond2list1240,32700 -cond2list(List, El, Cs, Vs) :- !,cond2list1240,32700 -add_el(G0, El, Cs-Vs, [C|Cs]-[V|Vs]) :-add_el1243,32789 -add_el(G0, El, Cs-Vs, [C|Cs]-[V|Vs]) :-add_el1243,32789 -add_el(G0, El, Cs-Vs, [C|Cs]-[V|Vs]) :-add_el1243,32789 -add_el(_G0, _El, Cs-Vs, Cs-Vs).add_el1247,32951 -add_el(_G0, _El, Cs-Vs, Cs-Vs).add_el1247,32951 -attr_unify_hook(_, _) :-attr_unify_hook1252,33082 -attr_unify_hook(_, _) :-attr_unify_hook1252,33082 -attr_unify_hook(_, _) :-attr_unify_hook1252,33082 -attr_unify_hook(v(IV1,_,_), Y) :-attr_unify_hook1254,33140 -attr_unify_hook(v(IV1,_,_), Y) :-attr_unify_hook1254,33140 -attr_unify_hook(v(IV1,_,_), Y) :-attr_unify_hook1254,33140 -attribute_goals(X) -->attribute_goals1269,33556 -attribute_goals(X) -->attribute_goals1269,33556 -attribute_goals(X) -->attribute_goals1269,33556 -m(X, Y, A, B, _Map) :-m1273,33650 -m(X, Y, A, B, _Map) :-m1273,33650 -m(X, Y, A, B, _Map) :-m1273,33650 -m(NV, OV, NA, NB, Vs) :-m1276,33716 -m(NV, OV, NA, NB, Vs) :-m1276,33716 -m(NV, OV, NA, NB, Vs) :-m1276,33716 -m(NV, OV, NA, NB, [_|Vs]) :-m1279,33780 -m(NV, OV, NA, NB, [_|Vs]) :-m1279,33780 -m(NV, OV, NA, NB, [_|Vs]) :-m1279,33780 -lm(A, B, Map, X, Y) :-lm1283,33837 -lm(A, B, Map, X, Y) :-lm1283,33837 -lm(A, B, Map, X, Y) :-lm1283,33837 -l(V, IV, _) :-l1286,33882 -l(V, IV, _) :-l1286,33882 -l(V, IV, _) :-l1286,33882 -l(_NV, _OV, Vs) :-l1289,33941 -l(_NV, _OV, Vs) :-l1289,33941 -l(_NV, _OV, Vs) :-l1289,33941 -l(NV, OV, [v(V, OV, _A, _B)|_Vs]) :-l1292,33980 -l(NV, OV, [v(V, OV, _A, _B)|_Vs]) :-l1292,33980 -l(NV, OV, [v(V, OV, _A, _B)|_Vs]) :-l1292,33980 -l(NV, OV, [_|Vs]) :-l1294,34030 -l(NV, OV, [_|Vs]) :-l1294,34030 -l(NV, OV, [_|Vs]) :-l1294,34030 -ll(Map, X, Y) :-ll1298,34071 -ll(Map, X, Y) :-ll1298,34071 -ll(Map, X, Y) :-ll1298,34071 -l(V, IV, A, B, _) :-l1301,34104 -l(V, IV, A, B, _) :-l1301,34104 -l(V, IV, A, B, _) :-l1301,34104 -l(_NV, _OV, _, _, Vs) :-l1305,34170 -l(_NV, _OV, _, _, Vs) :-l1305,34170 -l(_NV, _OV, _, _, Vs) :-l1305,34170 -l(NV, OV, A, B, [v(V, OV, A, B)|_Vs]) :-l1308,34215 -l(NV, OV, A, B, [v(V, OV, A, B)|_Vs]) :-l1308,34215 -l(NV, OV, A, B, [v(V, OV, A, B)|_Vs]) :-l1308,34215 -l(NV, OV, A, B, [_|Vs]) :-l1310,34269 -l(NV, OV, A, B, [_|Vs]) :-l1310,34269 -l(NV, OV, A, B, [_|Vs]) :-l1310,34269 -is_one(1).is_one1314,34322 -is_one(1).is_one1314,34322 - -packages/gecode/dev/c.py,5866 -import rere19,852 -def prolog_print_notice():prolog_print_notice59,2662 -def cc_print_notice():cc_print_notice62,2714 -class Type(object):Type65,2758 - def __init__(self, text):__init__72,2969 - def __str__(self):__str__103,3829 - def clone_from(self, other):clone_from114,4151 - def clone(self):clone121,4366 -class Constraint(object):Constraint125,4421 - def __init__(self, line):__init__130,4568 - def __str__(self):__str__144,5022 - def clone_from(self, other):clone_from161,5438 - def clone(self):clone166,5613 -def load_decls(filename):load_decls172,5708 -class DeclsLoader(object):DeclsLoader182,5951 - def __init__(self, filename):__init__184,5979 - def print_decls(self):print_decls187,6056 -class PredGenerator(DeclsLoader):PredGenerator191,6142 - OMIT = ("VarBranchOptions",OMIT193,6177 - def __init__(self, filename):__init__203,6531 - def _change_home_to_space(self):_change_home_to_space210,6754 - def _change_intsharedarray_to_intargs(self):_change_intsharedarray_to_intargs216,6924 - def _generate(self):_generate222,7118 - def _con_ok(self, con):_con_ok260,8649 - def _drop_deco(self, t):_drop_deco266,8820 - def _defaulted(self, argtypes):_defaulted273,8998 - def _number(self):_number281,9178 - def print_preds(self):print_preds287,9305 -class Cluster(object):Cluster291,9387 - def __init__(self, name, arity):__init__293,9411 -class DTree(object):DTree299,9571 - def __init__(self, i, preds, cluster):__init__301,9593 - def _generate_body(self, user_vars, lib_vars):_generate_body322,10329 - def _generate_dispatch(self, i, user_vars, lib_vars):_generate_dispatch329,10635 - def _cc_descriptors(self, name, argtypes):_cc_descriptors346,11359 -class YAPConstraintGeneratorBase(PredGenerator):YAPConstraintGeneratorBase354,11668 - def __init__(self, filename):__init__356,11718 - def _classify(self):_classify362,11909 - def _dtreefy(self):_dtreefy376,12364 - def _user_vars(self, arity):_user_vars383,12578 - def _lib_vars(self, arity):_lib_vars386,12668 -class YAPConstraintPrologGenerator(YAPConstraintGeneratorBase):YAPConstraintPrologGenerator389,12757 - def __init__(self, filename):__init__391,12822 - def _prolog_clauses(self):_prolog_clauses394,12926 - def generate(self):generate405,13355 -class YAPConstraintCCGenerator(YAPConstraintGeneratorBase):YAPConstraintCCGenerator410,13490 - def __init__(self, filename):__init__412,13551 - def _cc_descriptors(self):_cc_descriptors415,13651 - def generate_impl(self):generate_impl421,13859 - def generate_init(self):generate_init425,13960 -import syssys432,14152 -class OStream(object):OStream434,14164 - def __init__(self, fd=sys.stdout):__init__436,14188 - def write(self, s):write440,14275 - def newline(self):newline450,14519 - def writeln(self, s=None):writeln454,14597 - def indent_to(self, n):indent_to459,14704 -class PrologObject(object):PrologObject469,14960 -class PrologClause(PrologObject):PrologClause472,14998 - def __init__(self, head, body):__init__474,15033 - def pp(self, out, offset):pp478,15120 -class PrologLiteral(PrologObject):PrologLiteral486,15321 - def __init__(self, lit):__init__488,15357 - def pp(self, out, offset):pp491,15414 -class PrologIF(PrologObject):PrologIF495,15508 - def __init__(self, cond, left, right):__init__497,15539 - def pp(self, out, offset):pp502,15660 -ENUM_CLASSES = NoneENUM_CLASSES517,16056 -ENUM_CLASSES_AVOID = ('ScriptMode','ViewSelStatus','ExecStatus',ENUM_CLASSES_AVOID518,16076 -def enum_classes():enum_classes521,16195 - import impimp525,16327 -class YAPEnumImpl(object):YAPEnumImpl532,16564 - def generate(self):generate534,16592 - def _generate_atoms(self):_generate_atoms538,16683 - def _generate_from_term(self):_generate_from_term543,16808 - def _generate_from_term_forward_decl(self):_generate_from_term_forward_decl552,17134 -class YAPEnumImplGenerator(object):YAPEnumImplGenerator555,17264 - def generate(self):generate557,17301 - class C(c,YAPEnumImpl): passC559,17358 -class YAPEnumForwardGenerator(object):YAPEnumForwardGenerator563,17445 - def generate(self):generate565,17485 - class C(c,YAPEnumImpl): passC567,17542 -class YAPEnumInit(object):YAPEnumInit571,17653 - def generate(self):generate573,17681 -class YAPEnumInitGenerator(object):YAPEnumInitGenerator580,17909 - def generate(self):generate582,17946 - class C(c,YAPEnumInit): passC584,18003 -class YAPEnumProlog(object):YAPEnumProlog588,18090 - def generate(self):generate590,18120 -class YAPEnumPrologGenerator(object):YAPEnumPrologGenerator601,18495 - def generate(self):generate603,18534 - class C(c,YAPEnumProlog): passC605,18591 -class CCDescriptor(object):CCDescriptor609,18680 - def __init__(self, name, argtypes, api):__init__611,18709 - def generate_impl(self):generate_impl616,18836 - def generate_init(self):generate_init644,19890 -GECODE_VERSION = NoneGECODE_VERSION648,20063 -def gecode_version():gecode_version650,20086 - from distutils.ccompiler import new_compilernew_compiler654,20199 - from distutils.ccompiler import customize_compilercustomize_compiler656,20257 - from distutils.sysconfig import customize_compilercustomize_compiler658,20328 - import osos659,20387 - f = open(file_txt)f671,20741 - version = ""version672,20768 - version = line[3:-2]version675,20850 - version = "5.0.0" version681,20992 - GECODE_VERSION = versionGECODE_VERSION682,21019 -def generate_files():generate_files685,21068 - import os, os.pathos687,21127 - import os, os.pathos687,21127 - import os, os.pathpath687,21127 - import syssys692,21295 - -packages/gecode/dev/code-generator.py,5866 -import rere19,852 -def prolog_print_notice():prolog_print_notice59,2662 -def cc_print_notice():cc_print_notice62,2714 -class Type(object):Type65,2758 - def __init__(self, text):__init__72,2969 - def __str__(self):__str__103,3829 - def clone_from(self, other):clone_from114,4151 - def clone(self):clone121,4366 -class Constraint(object):Constraint125,4421 - def __init__(self, line):__init__130,4568 - def __str__(self):__str__144,5022 - def clone_from(self, other):clone_from161,5438 - def clone(self):clone166,5613 -def load_decls(filename):load_decls172,5708 -class DeclsLoader(object):DeclsLoader182,5951 - def __init__(self, filename):__init__184,5979 - def print_decls(self):print_decls187,6056 -class PredGenerator(DeclsLoader):PredGenerator191,6142 - OMIT = ("VarBranchOptions",OMIT193,6177 - def __init__(self, filename):__init__203,6531 - def _change_home_to_space(self):_change_home_to_space210,6754 - def _change_intsharedarray_to_intargs(self):_change_intsharedarray_to_intargs216,6924 - def _generate(self):_generate222,7118 - def _con_ok(self, con):_con_ok260,8649 - def _drop_deco(self, t):_drop_deco266,8820 - def _defaulted(self, argtypes):_defaulted273,8998 - def _number(self):_number281,9178 - def print_preds(self):print_preds287,9305 -class Cluster(object):Cluster291,9387 - def __init__(self, name, arity):__init__293,9411 -class DTree(object):DTree299,9571 - def __init__(self, i, preds, cluster):__init__301,9593 - def _generate_body(self, user_vars, lib_vars):_generate_body322,10329 - def _generate_dispatch(self, i, user_vars, lib_vars):_generate_dispatch329,10635 - def _cc_descriptors(self, name, argtypes):_cc_descriptors346,11359 -class YAPConstraintGeneratorBase(PredGenerator):YAPConstraintGeneratorBase354,11668 - def __init__(self, filename):__init__356,11718 - def _classify(self):_classify362,11909 - def _dtreefy(self):_dtreefy376,12364 - def _user_vars(self, arity):_user_vars383,12578 - def _lib_vars(self, arity):_lib_vars386,12668 -class YAPConstraintPrologGenerator(YAPConstraintGeneratorBase):YAPConstraintPrologGenerator389,12757 - def __init__(self, filename):__init__391,12822 - def _prolog_clauses(self):_prolog_clauses394,12926 - def generate(self):generate405,13355 -class YAPConstraintCCGenerator(YAPConstraintGeneratorBase):YAPConstraintCCGenerator410,13490 - def __init__(self, filename):__init__412,13551 - def _cc_descriptors(self):_cc_descriptors415,13651 - def generate_impl(self):generate_impl421,13859 - def generate_init(self):generate_init425,13960 -import syssys432,14152 -class OStream(object):OStream434,14164 - def __init__(self, fd=sys.stdout):__init__436,14188 - def write(self, s):write440,14275 - def newline(self):newline450,14519 - def writeln(self, s=None):writeln454,14597 - def indent_to(self, n):indent_to459,14704 -class PrologObject(object):PrologObject469,14960 -class PrologClause(PrologObject):PrologClause472,14998 - def __init__(self, head, body):__init__474,15033 - def pp(self, out, offset):pp478,15120 -class PrologLiteral(PrologObject):PrologLiteral486,15321 - def __init__(self, lit):__init__488,15357 - def pp(self, out, offset):pp491,15414 -class PrologIF(PrologObject):PrologIF495,15508 - def __init__(self, cond, left, right):__init__497,15539 - def pp(self, out, offset):pp502,15660 -ENUM_CLASSES = NoneENUM_CLASSES517,16056 -ENUM_CLASSES_AVOID = ('ScriptMode','ViewSelStatus','ExecStatus',ENUM_CLASSES_AVOID518,16076 -def enum_classes():enum_classes521,16195 - import impimp525,16327 -class YAPEnumImpl(object):YAPEnumImpl532,16564 - def generate(self):generate534,16592 - def _generate_atoms(self):_generate_atoms538,16683 - def _generate_from_term(self):_generate_from_term543,16808 - def _generate_from_term_forward_decl(self):_generate_from_term_forward_decl552,17134 -class YAPEnumImplGenerator(object):YAPEnumImplGenerator555,17264 - def generate(self):generate557,17301 - class C(c,YAPEnumImpl): passC559,17358 -class YAPEnumForwardGenerator(object):YAPEnumForwardGenerator563,17445 - def generate(self):generate565,17485 - class C(c,YAPEnumImpl): passC567,17542 -class YAPEnumInit(object):YAPEnumInit571,17653 - def generate(self):generate573,17681 -class YAPEnumInitGenerator(object):YAPEnumInitGenerator580,17909 - def generate(self):generate582,17946 - class C(c,YAPEnumInit): passC584,18003 -class YAPEnumProlog(object):YAPEnumProlog588,18090 - def generate(self):generate590,18120 -class YAPEnumPrologGenerator(object):YAPEnumPrologGenerator601,18495 - def generate(self):generate603,18534 - class C(c,YAPEnumProlog): passC605,18591 -class CCDescriptor(object):CCDescriptor609,18680 - def __init__(self, name, argtypes, api):__init__611,18709 - def generate_impl(self):generate_impl616,18836 - def generate_init(self):generate_init644,19890 -GECODE_VERSION = NoneGECODE_VERSION648,20063 -def gecode_version():gecode_version650,20086 - from distutils.ccompiler import new_compilernew_compiler654,20199 - from distutils.ccompiler import customize_compilercustomize_compiler656,20257 - from distutils.sysconfig import customize_compilercustomize_compiler658,20328 - import osos659,20387 - f = open(file_txt)f671,20741 - version = ""version672,20768 - version = line[3:-2]version675,20850 - version = "5.0.0" version681,20992 - GECODE_VERSION = versionGECODE_VERSION682,21019 -def generate_files():generate_files685,21068 - import os, os.pathos687,21127 - import os, os.pathos687,21127 - import os, os.pathpath687,21127 - import syssys692,21295 - -packages/gecode/dev/extractor/Doxyfile,0 - -packages/gecode/dev/extractor/gecodedir.hh,0 - -packages/gecode/dev/extractor/Makefile,0 - -packages/gecode/dev/extractor/notice.hh,0 - -packages/gecode/dev/extractor/notice.py,0 - -packages/gecode/dev/extractor/README,0 - -packages/gecode/dev/gecode-enums-3.6.0.py,3862 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class IntRelType(object):IntRelType12,368 - TYPE = 'IntRelType'TYPE13,394 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM14,418 -class BoolOpType(object):BoolOpType18,519 - TYPE = 'BoolOpType'TYPE19,545 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM20,569 -class IntConLevel(object):IntConLevel24,665 - TYPE = 'IntConLevel'TYPE25,692 - ENUM = ['ICL_VAL','ICL_BND','ICL_DOM','ICL_DEF']ENUM26,717 -class TaskType(object):TaskType30,805 - TYPE = 'TaskType'TYPE31,829 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM32,851 -class ExtensionalPropKind(object):ExtensionalPropKind36,926 - TYPE = 'ExtensionalPropKind'TYPE37,961 - ENUM = ['EPK_DEF','EPK_SPEED','EPK_MEMORY']ENUM38,994 -class IntVarBranch(object):IntVarBranch42,1085 - TYPE = 'IntVarBranch'TYPE43,1113 - ENUM = ['INT_VAR_NONE','INT_VAR_RND','INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MAX','INT_VAR_AFC_MIN','INT_VAR_AFC_MAX','INT_VAR_MIN_MIN','INT_VAR_MIN_MAX','INT_VAR_MAX_MIN','INT_VAR_MAX_MAX','INT_VAR_SIZE_MIN','INT_VAR_SIZE_MAX','INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MAX','INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MAX']ENUM44,1139 -class IntValBranch(object):IntValBranch48,1603 - TYPE = 'IntValBranch'TYPE49,1631 - ENUM = ['INT_VAL_MIN','INT_VAL_MED','INT_VAL_MAX','INT_VAL_RND','INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MAX','INT_VAL_RANGE_MIN','INT_VAL_RANGE_MAX','INT_VALUES_MIN','INT_VALUES_MAX']ENUM50,1657 -class IntAssign(object):IntAssign54,1876 - TYPE = 'IntAssign'TYPE55,1901 - ENUM = ['INT_ASSIGN_MIN','INT_ASSIGN_MED','INT_ASSIGN_MAX','INT_ASSIGN_RND']ENUM56,1924 -class ViewSelStatus(object):ViewSelStatus60,2038 - TYPE = 'ViewSelStatus'TYPE61,2067 - ENUM = ['VSS_BEST','VSS_BETTER','VSS_TIE','VSS_WORSE']ENUM62,2094 -class ExecStatus(object):ExecStatus66,2190 - TYPE = 'ExecStatus'TYPE67,2216 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM68,2240 -class ActorProperty(object):ActorProperty72,2375 - TYPE = 'ActorProperty'TYPE73,2404 - ENUM = ['AP_DISPOSE','AP_WEAKLY']ENUM74,2431 -class SpaceStatus(object):SpaceStatus78,2506 - TYPE = 'SpaceStatus'TYPE79,2533 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM80,2558 -class SetRelType(object):SetRelType84,2642 - TYPE = 'SetRelType'TYPE85,2668 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL']ENUM86,2692 -class SetOpType(object):SetOpType90,2799 - TYPE = 'SetOpType'TYPE91,2824 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM92,2847 -class SetVarBranch(object):SetVarBranch96,2942 - TYPE = 'SetVarBranch'TYPE97,2970 - ENUM = ['SET_VAR_NONE','SET_VAR_RND','SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MAX','SET_VAR_AFC_MIN','SET_VAR_AFC_MAX','SET_VAR_MIN_MIN','SET_VAR_MIN_MAX','SET_VAR_MAX_MIN','SET_VAR_MAX_MAX','SET_VAR_SIZE_MIN','SET_VAR_SIZE_MAX','SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MAX']ENUM98,2996 -class SetValBranch(object):SetValBranch102,3360 - TYPE = 'SetValBranch'TYPE103,3388 - ENUM = ['SET_VAL_MIN_INC','SET_VAL_MIN_EXC','SET_VAL_MED_INC','SET_VAL_MED_EXC','SET_VAL_MAX_INC','SET_VAL_MAX_EXC','SET_VAL_RND_INC','SET_VAL_RND_EXC']ENUM104,3414 -class SetAssign(object):SetAssign108,3607 - TYPE = 'SetAssign'TYPE109,3632 - ENUM = ['SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_EXC','SET_ASSIGN_MED_INC','SET_ASSIGN_MED_EXC','SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_EXC','SET_ASSIGN_RND_INC','SET_ASSIGN_RND_EXC']ENUM110,3655 - -packages/gecode/dev/gecode-enums-3.7.0.py,3898 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class IntRelType(object):IntRelType12,368 - TYPE = 'IntRelType'TYPE13,394 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM14,418 -class BoolOpType(object):BoolOpType18,519 - TYPE = 'BoolOpType'TYPE19,545 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM20,569 -class IntConLevel(object):IntConLevel24,665 - TYPE = 'IntConLevel'TYPE25,692 - ENUM = ['ICL_VAL','ICL_BND','ICL_DOM','ICL_DEF']ENUM26,717 -class TaskType(object):TaskType30,805 - TYPE = 'TaskType'TYPE31,829 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM32,851 -class ExtensionalPropKind(object):ExtensionalPropKind36,926 - TYPE = 'ExtensionalPropKind'TYPE37,961 - ENUM = ['EPK_DEF','EPK_SPEED','EPK_MEMORY']ENUM38,994 -class IntVarBranch(object):IntVarBranch42,1085 - TYPE = 'IntVarBranch'TYPE43,1113 - ENUM = ['INT_VAR_NONE','INT_VAR_RND','INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MAX','INT_VAR_AFC_MIN','INT_VAR_AFC_MAX','INT_VAR_MIN_MIN','INT_VAR_MIN_MAX','INT_VAR_MAX_MIN','INT_VAR_MAX_MAX','INT_VAR_SIZE_MIN','INT_VAR_SIZE_MAX','INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MAX','INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MAX']ENUM44,1139 -class IntValBranch(object):IntValBranch48,1603 - TYPE = 'IntValBranch'TYPE49,1631 - ENUM = ['INT_VAL_MIN','INT_VAL_MED','INT_VAL_MAX','INT_VAL_RND','INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MAX','INT_VAL_RANGE_MIN','INT_VAL_RANGE_MAX','INT_VALUES_MIN','INT_VALUES_MAX']ENUM50,1657 -class IntAssign(object):IntAssign54,1876 - TYPE = 'IntAssign'TYPE55,1901 - ENUM = ['INT_ASSIGN_MIN','INT_ASSIGN_MED','INT_ASSIGN_MAX','INT_ASSIGN_RND']ENUM56,1924 -class ViewSelStatus(object):ViewSelStatus60,2038 - TYPE = 'ViewSelStatus'TYPE61,2067 - ENUM = ['VSS_BEST','VSS_BETTER','VSS_TIE','VSS_WORSE']ENUM62,2094 -class ExecStatus(object):ExecStatus66,2190 - TYPE = 'ExecStatus'TYPE67,2216 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM68,2240 -class ActorProperty(object):ActorProperty72,2375 - TYPE = 'ActorProperty'TYPE73,2404 - ENUM = ['AP_DISPOSE','AP_WEAKLY']ENUM74,2431 -class SpaceStatus(object):SpaceStatus78,2506 - TYPE = 'SpaceStatus'TYPE79,2533 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM80,2558 -class SetRelType(object):SetRelType84,2642 - TYPE = 'SetRelType'TYPE85,2668 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL','SRT_LQ','SRT_LE','SRT_GQ','SRT_GR']ENUM86,2692 -class SetOpType(object):SetOpType90,2835 - TYPE = 'SetOpType'TYPE91,2860 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM92,2883 -class SetVarBranch(object):SetVarBranch96,2978 - TYPE = 'SetVarBranch'TYPE97,3006 - ENUM = ['SET_VAR_NONE','SET_VAR_RND','SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MAX','SET_VAR_AFC_MIN','SET_VAR_AFC_MAX','SET_VAR_MIN_MIN','SET_VAR_MIN_MAX','SET_VAR_MAX_MIN','SET_VAR_MAX_MAX','SET_VAR_SIZE_MIN','SET_VAR_SIZE_MAX','SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MAX']ENUM98,3032 -class SetValBranch(object):SetValBranch102,3396 - TYPE = 'SetValBranch'TYPE103,3424 - ENUM = ['SET_VAL_MIN_INC','SET_VAL_MIN_EXC','SET_VAL_MED_INC','SET_VAL_MED_EXC','SET_VAL_MAX_INC','SET_VAL_MAX_EXC','SET_VAL_RND_INC','SET_VAL_RND_EXC']ENUM104,3450 -class SetAssign(object):SetAssign108,3643 - TYPE = 'SetAssign'TYPE109,3668 - ENUM = ['SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_EXC','SET_ASSIGN_MED_INC','SET_ASSIGN_MED_EXC','SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_EXC','SET_ASSIGN_RND_INC','SET_ASSIGN_RND_EXC']ENUM110,3691 - -packages/gecode/dev/gecode-enums-3.7.1.py,3898 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class IntRelType(object):IntRelType12,368 - TYPE = 'IntRelType'TYPE13,394 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM14,418 -class BoolOpType(object):BoolOpType18,519 - TYPE = 'BoolOpType'TYPE19,545 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM20,569 -class IntConLevel(object):IntConLevel24,665 - TYPE = 'IntConLevel'TYPE25,692 - ENUM = ['ICL_VAL','ICL_BND','ICL_DOM','ICL_DEF']ENUM26,717 -class TaskType(object):TaskType30,805 - TYPE = 'TaskType'TYPE31,829 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM32,851 -class ExtensionalPropKind(object):ExtensionalPropKind36,926 - TYPE = 'ExtensionalPropKind'TYPE37,961 - ENUM = ['EPK_DEF','EPK_SPEED','EPK_MEMORY']ENUM38,994 -class IntVarBranch(object):IntVarBranch42,1085 - TYPE = 'IntVarBranch'TYPE43,1113 - ENUM = ['INT_VAR_NONE','INT_VAR_RND','INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MAX','INT_VAR_AFC_MIN','INT_VAR_AFC_MAX','INT_VAR_MIN_MIN','INT_VAR_MIN_MAX','INT_VAR_MAX_MIN','INT_VAR_MAX_MAX','INT_VAR_SIZE_MIN','INT_VAR_SIZE_MAX','INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MAX','INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MAX']ENUM44,1139 -class IntValBranch(object):IntValBranch48,1603 - TYPE = 'IntValBranch'TYPE49,1631 - ENUM = ['INT_VAL_MIN','INT_VAL_MED','INT_VAL_MAX','INT_VAL_RND','INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MAX','INT_VAL_RANGE_MIN','INT_VAL_RANGE_MAX','INT_VALUES_MIN','INT_VALUES_MAX']ENUM50,1657 -class IntAssign(object):IntAssign54,1876 - TYPE = 'IntAssign'TYPE55,1901 - ENUM = ['INT_ASSIGN_MIN','INT_ASSIGN_MED','INT_ASSIGN_MAX','INT_ASSIGN_RND']ENUM56,1924 -class ViewSelStatus(object):ViewSelStatus60,2038 - TYPE = 'ViewSelStatus'TYPE61,2067 - ENUM = ['VSS_BEST','VSS_BETTER','VSS_TIE','VSS_WORSE']ENUM62,2094 -class ExecStatus(object):ExecStatus66,2190 - TYPE = 'ExecStatus'TYPE67,2216 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM68,2240 -class ActorProperty(object):ActorProperty72,2375 - TYPE = 'ActorProperty'TYPE73,2404 - ENUM = ['AP_DISPOSE','AP_WEAKLY']ENUM74,2431 -class SpaceStatus(object):SpaceStatus78,2506 - TYPE = 'SpaceStatus'TYPE79,2533 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM80,2558 -class SetRelType(object):SetRelType84,2642 - TYPE = 'SetRelType'TYPE85,2668 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL','SRT_LQ','SRT_LE','SRT_GQ','SRT_GR']ENUM86,2692 -class SetOpType(object):SetOpType90,2835 - TYPE = 'SetOpType'TYPE91,2860 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM92,2883 -class SetVarBranch(object):SetVarBranch96,2978 - TYPE = 'SetVarBranch'TYPE97,3006 - ENUM = ['SET_VAR_NONE','SET_VAR_RND','SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MAX','SET_VAR_AFC_MIN','SET_VAR_AFC_MAX','SET_VAR_MIN_MIN','SET_VAR_MIN_MAX','SET_VAR_MAX_MIN','SET_VAR_MAX_MAX','SET_VAR_SIZE_MIN','SET_VAR_SIZE_MAX','SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MAX']ENUM98,3032 -class SetValBranch(object):SetValBranch102,3396 - TYPE = 'SetValBranch'TYPE103,3424 - ENUM = ['SET_VAL_MIN_INC','SET_VAL_MIN_EXC','SET_VAL_MED_INC','SET_VAL_MED_EXC','SET_VAL_MAX_INC','SET_VAL_MAX_EXC','SET_VAL_RND_INC','SET_VAL_RND_EXC']ENUM104,3450 -class SetAssign(object):SetAssign108,3643 - TYPE = 'SetAssign'TYPE109,3668 - ENUM = ['SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_EXC','SET_ASSIGN_MED_INC','SET_ASSIGN_MED_EXC','SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_EXC','SET_ASSIGN_RND_INC','SET_ASSIGN_RND_EXC']ENUM110,3691 - -packages/gecode/dev/gecode-enums-3.7.2.py,3898 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class IntRelType(object):IntRelType12,368 - TYPE = 'IntRelType'TYPE13,394 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM14,418 -class BoolOpType(object):BoolOpType18,519 - TYPE = 'BoolOpType'TYPE19,545 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM20,569 -class IntConLevel(object):IntConLevel24,665 - TYPE = 'IntConLevel'TYPE25,692 - ENUM = ['ICL_VAL','ICL_BND','ICL_DOM','ICL_DEF']ENUM26,717 -class TaskType(object):TaskType30,805 - TYPE = 'TaskType'TYPE31,829 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM32,851 -class ExtensionalPropKind(object):ExtensionalPropKind36,926 - TYPE = 'ExtensionalPropKind'TYPE37,961 - ENUM = ['EPK_DEF','EPK_SPEED','EPK_MEMORY']ENUM38,994 -class IntVarBranch(object):IntVarBranch42,1085 - TYPE = 'IntVarBranch'TYPE43,1113 - ENUM = ['INT_VAR_NONE','INT_VAR_RND','INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MAX','INT_VAR_AFC_MIN','INT_VAR_AFC_MAX','INT_VAR_MIN_MIN','INT_VAR_MIN_MAX','INT_VAR_MAX_MIN','INT_VAR_MAX_MAX','INT_VAR_SIZE_MIN','INT_VAR_SIZE_MAX','INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MAX','INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MAX']ENUM44,1139 -class IntValBranch(object):IntValBranch48,1603 - TYPE = 'IntValBranch'TYPE49,1631 - ENUM = ['INT_VAL_MIN','INT_VAL_MED','INT_VAL_MAX','INT_VAL_RND','INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MAX','INT_VAL_RANGE_MIN','INT_VAL_RANGE_MAX','INT_VALUES_MIN','INT_VALUES_MAX']ENUM50,1657 -class IntAssign(object):IntAssign54,1876 - TYPE = 'IntAssign'TYPE55,1901 - ENUM = ['INT_ASSIGN_MIN','INT_ASSIGN_MED','INT_ASSIGN_MAX','INT_ASSIGN_RND']ENUM56,1924 -class ViewSelStatus(object):ViewSelStatus60,2038 - TYPE = 'ViewSelStatus'TYPE61,2067 - ENUM = ['VSS_BEST','VSS_BETTER','VSS_TIE','VSS_WORSE']ENUM62,2094 -class ExecStatus(object):ExecStatus66,2190 - TYPE = 'ExecStatus'TYPE67,2216 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM68,2240 -class ActorProperty(object):ActorProperty72,2375 - TYPE = 'ActorProperty'TYPE73,2404 - ENUM = ['AP_DISPOSE','AP_WEAKLY']ENUM74,2431 -class SpaceStatus(object):SpaceStatus78,2506 - TYPE = 'SpaceStatus'TYPE79,2533 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM80,2558 -class SetRelType(object):SetRelType84,2642 - TYPE = 'SetRelType'TYPE85,2668 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL','SRT_LQ','SRT_LE','SRT_GQ','SRT_GR']ENUM86,2692 -class SetOpType(object):SetOpType90,2835 - TYPE = 'SetOpType'TYPE91,2860 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM92,2883 -class SetVarBranch(object):SetVarBranch96,2978 - TYPE = 'SetVarBranch'TYPE97,3006 - ENUM = ['SET_VAR_NONE','SET_VAR_RND','SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MAX','SET_VAR_AFC_MIN','SET_VAR_AFC_MAX','SET_VAR_MIN_MIN','SET_VAR_MIN_MAX','SET_VAR_MAX_MIN','SET_VAR_MAX_MAX','SET_VAR_SIZE_MIN','SET_VAR_SIZE_MAX','SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MAX']ENUM98,3032 -class SetValBranch(object):SetValBranch102,3396 - TYPE = 'SetValBranch'TYPE103,3424 - ENUM = ['SET_VAL_MIN_INC','SET_VAL_MIN_EXC','SET_VAL_MED_INC','SET_VAL_MED_EXC','SET_VAL_MAX_INC','SET_VAL_MAX_EXC','SET_VAL_RND_INC','SET_VAL_RND_EXC']ENUM104,3450 -class SetAssign(object):SetAssign108,3643 - TYPE = 'SetAssign'TYPE109,3668 - ENUM = ['SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_EXC','SET_ASSIGN_MED_INC','SET_ASSIGN_MED_EXC','SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_EXC','SET_ASSIGN_RND_INC','SET_ASSIGN_RND_EXC']ENUM110,3691 - -packages/gecode/dev/gecode-enums-3.7.3.py,3898 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class IntRelType(object):IntRelType12,368 - TYPE = 'IntRelType'TYPE13,394 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM14,418 -class BoolOpType(object):BoolOpType18,519 - TYPE = 'BoolOpType'TYPE19,545 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM20,569 -class IntConLevel(object):IntConLevel24,665 - TYPE = 'IntConLevel'TYPE25,692 - ENUM = ['ICL_VAL','ICL_BND','ICL_DOM','ICL_DEF']ENUM26,717 -class TaskType(object):TaskType30,805 - TYPE = 'TaskType'TYPE31,829 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM32,851 -class ExtensionalPropKind(object):ExtensionalPropKind36,926 - TYPE = 'ExtensionalPropKind'TYPE37,961 - ENUM = ['EPK_DEF','EPK_SPEED','EPK_MEMORY']ENUM38,994 -class IntVarBranch(object):IntVarBranch42,1085 - TYPE = 'IntVarBranch'TYPE43,1113 - ENUM = ['INT_VAR_NONE','INT_VAR_RND','INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MAX','INT_VAR_AFC_MIN','INT_VAR_AFC_MAX','INT_VAR_MIN_MIN','INT_VAR_MIN_MAX','INT_VAR_MAX_MIN','INT_VAR_MAX_MAX','INT_VAR_SIZE_MIN','INT_VAR_SIZE_MAX','INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MAX','INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MAX']ENUM44,1139 -class IntValBranch(object):IntValBranch48,1603 - TYPE = 'IntValBranch'TYPE49,1631 - ENUM = ['INT_VAL_MIN','INT_VAL_MED','INT_VAL_MAX','INT_VAL_RND','INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MAX','INT_VAL_RANGE_MIN','INT_VAL_RANGE_MAX','INT_VALUES_MIN','INT_VALUES_MAX']ENUM50,1657 -class IntAssign(object):IntAssign54,1876 - TYPE = 'IntAssign'TYPE55,1901 - ENUM = ['INT_ASSIGN_MIN','INT_ASSIGN_MED','INT_ASSIGN_MAX','INT_ASSIGN_RND']ENUM56,1924 -class ViewSelStatus(object):ViewSelStatus60,2038 - TYPE = 'ViewSelStatus'TYPE61,2067 - ENUM = ['VSS_BEST','VSS_BETTER','VSS_TIE','VSS_WORSE']ENUM62,2094 -class ExecStatus(object):ExecStatus66,2190 - TYPE = 'ExecStatus'TYPE67,2216 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM68,2240 -class ActorProperty(object):ActorProperty72,2375 - TYPE = 'ActorProperty'TYPE73,2404 - ENUM = ['AP_DISPOSE','AP_WEAKLY']ENUM74,2431 -class SpaceStatus(object):SpaceStatus78,2506 - TYPE = 'SpaceStatus'TYPE79,2533 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM80,2558 -class SetRelType(object):SetRelType84,2642 - TYPE = 'SetRelType'TYPE85,2668 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL','SRT_LQ','SRT_LE','SRT_GQ','SRT_GR']ENUM86,2692 -class SetOpType(object):SetOpType90,2835 - TYPE = 'SetOpType'TYPE91,2860 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM92,2883 -class SetVarBranch(object):SetVarBranch96,2978 - TYPE = 'SetVarBranch'TYPE97,3006 - ENUM = ['SET_VAR_NONE','SET_VAR_RND','SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MAX','SET_VAR_AFC_MIN','SET_VAR_AFC_MAX','SET_VAR_MIN_MIN','SET_VAR_MIN_MAX','SET_VAR_MAX_MIN','SET_VAR_MAX_MAX','SET_VAR_SIZE_MIN','SET_VAR_SIZE_MAX','SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MAX']ENUM98,3032 -class SetValBranch(object):SetValBranch102,3396 - TYPE = 'SetValBranch'TYPE103,3424 - ENUM = ['SET_VAL_MIN_INC','SET_VAL_MIN_EXC','SET_VAL_MED_INC','SET_VAL_MED_EXC','SET_VAL_MAX_INC','SET_VAL_MAX_EXC','SET_VAL_RND_INC','SET_VAL_RND_EXC']ENUM104,3450 -class SetAssign(object):SetAssign108,3643 - TYPE = 'SetAssign'TYPE109,3668 - ENUM = ['SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_EXC','SET_ASSIGN_MED_INC','SET_ASSIGN_MED_EXC','SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_EXC','SET_ASSIGN_RND_INC','SET_ASSIGN_RND_EXC']ENUM110,3691 - -packages/gecode/dev/gecode-enums-4.0.0.py,4033 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class ReifyMode(object):ReifyMode12,368 - TYPE = 'ReifyMode'TYPE13,393 - ENUM = ['RM_EQV','RM_IMP','RM_PMI']ENUM14,416 -class IntRelType(object):IntRelType18,489 - TYPE = 'IntRelType'TYPE19,515 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM20,539 -class BoolOpType(object):BoolOpType24,640 - TYPE = 'BoolOpType'TYPE25,666 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM26,690 -class IntConLevel(object):IntConLevel30,786 - TYPE = 'IntConLevel'TYPE31,813 - ENUM = ['ICL_VAL','ICL_BND','ICL_DOM','ICL_DEF']ENUM32,838 -class TaskType(object):TaskType36,926 - TYPE = 'TaskType'TYPE37,950 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM38,972 -class ExtensionalPropKind(object):ExtensionalPropKind42,1047 - TYPE = 'ExtensionalPropKind'TYPE43,1082 - ENUM = ['EPK_DEF','EPK_SPEED','EPK_MEMORY']ENUM44,1115 -class IntVarBranch(object):IntVarBranch48,1206 - TYPE = 'IntVarBranch'TYPE49,1234 - ENUM = ['INT_VAR_NONE','INT_VAR_RND','INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MAX','INT_VAR_AFC_MIN','INT_VAR_AFC_MAX','INT_VAR_MIN_MIN','INT_VAR_MIN_MAX','INT_VAR_MAX_MIN','INT_VAR_MAX_MAX','INT_VAR_SIZE_MIN','INT_VAR_SIZE_MAX','INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MAX','INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MAX']ENUM50,1260 -class IntValBranch(object):IntValBranch54,1724 - TYPE = 'IntValBranch'TYPE55,1752 - ENUM = ['INT_VAL_MIN','INT_VAL_MED','INT_VAL_MAX','INT_VAL_RND','INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MAX','INT_VAL_RANGE_MIN','INT_VAL_RANGE_MAX','INT_VALUES_MIN','INT_VALUES_MAX']ENUM56,1778 -class IntAssign(object):IntAssign60,1997 - TYPE = 'IntAssign'TYPE61,2022 - ENUM = ['INT_ASSIGN_MIN','INT_ASSIGN_MED','INT_ASSIGN_MAX','INT_ASSIGN_RND']ENUM62,2045 -class ViewSelStatus(object):ViewSelStatus66,2159 - TYPE = 'ViewSelStatus'TYPE67,2188 - ENUM = ['VSS_BEST','VSS_BETTER','VSS_TIE','VSS_WORSE']ENUM68,2215 -class ExecStatus(object):ExecStatus72,2311 - TYPE = 'ExecStatus'TYPE73,2337 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM74,2361 -class ActorProperty(object):ActorProperty78,2496 - TYPE = 'ActorProperty'TYPE79,2525 - ENUM = ['AP_DISPOSE','AP_WEAKLY']ENUM80,2552 -class SpaceStatus(object):SpaceStatus84,2627 - TYPE = 'SpaceStatus'TYPE85,2654 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM86,2679 -class SetRelType(object):SetRelType90,2763 - TYPE = 'SetRelType'TYPE91,2789 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL','SRT_LQ','SRT_LE','SRT_GQ','SRT_GR']ENUM92,2813 -class SetOpType(object):SetOpType96,2956 - TYPE = 'SetOpType'TYPE97,2981 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM98,3004 -class SetVarBranch(object):SetVarBranch102,3099 - TYPE = 'SetVarBranch'TYPE103,3127 - ENUM = ['SET_VAR_NONE','SET_VAR_RND','SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MAX','SET_VAR_AFC_MIN','SET_VAR_AFC_MAX','SET_VAR_MIN_MIN','SET_VAR_MIN_MAX','SET_VAR_MAX_MIN','SET_VAR_MAX_MAX','SET_VAR_SIZE_MIN','SET_VAR_SIZE_MAX','SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MAX']ENUM104,3153 -class SetValBranch(object):SetValBranch108,3517 - TYPE = 'SetValBranch'TYPE109,3545 - ENUM = ['SET_VAL_MIN_INC','SET_VAL_MIN_EXC','SET_VAL_MED_INC','SET_VAL_MED_EXC','SET_VAL_MAX_INC','SET_VAL_MAX_EXC','SET_VAL_RND_INC','SET_VAL_RND_EXC']ENUM110,3571 -class SetAssign(object):SetAssign114,3764 - TYPE = 'SetAssign'TYPE115,3789 - ENUM = ['SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_EXC','SET_ASSIGN_MED_INC','SET_ASSIGN_MED_EXC','SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_EXC','SET_ASSIGN_RND_INC','SET_ASSIGN_RND_EXC']ENUM116,3812 - -packages/gecode/dev/gecode-enums-4.2.0.py,2419 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class RestartMode(object):RestartMode12,368 - TYPE = 'RestartMode'TYPE13,395 - ENUM = ['RM_NONE','RM_CONSTANT','RM_LINEAR','RM_LUBY','RM_GEOMETRIC']ENUM14,420 -class FloatRelType(object):FloatRelType18,529 - TYPE = 'FloatRelType'TYPE19,557 - ENUM = ['FRT_EQ','FRT_NQ','FRT_LQ','FRT_LE','FRT_GQ','FRT_GR']ENUM20,583 -class ReifyMode(object):ReifyMode24,686 - TYPE = 'ReifyMode'TYPE25,711 - ENUM = ['RM_EQV','RM_IMP','RM_PMI']ENUM26,734 -class IntRelType(object):IntRelType30,807 - TYPE = 'IntRelType'TYPE31,833 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM32,857 -class BoolOpType(object):BoolOpType36,958 - TYPE = 'BoolOpType'TYPE37,984 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM38,1008 -class IntConLevel(object):IntConLevel42,1104 - TYPE = 'IntConLevel'TYPE43,1131 - ENUM = ['ICL_VAL','ICL_BND','ICL_DOM','ICL_DEF']ENUM44,1156 -class TaskType(object):TaskType48,1244 - TYPE = 'TaskType'TYPE49,1268 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM50,1290 -class ExtensionalPropKind(object):ExtensionalPropKind54,1365 - TYPE = 'ExtensionalPropKind'TYPE55,1400 - ENUM = ['EPK_DEF','EPK_SPEED','EPK_MEMORY']ENUM56,1433 -class ViewSelStatus(object):ViewSelStatus60,1524 - TYPE = 'ViewSelStatus'TYPE61,1553 - ENUM = ['VSS_BEST','VSS_BETTER','VSS_TIE','VSS_WORSE']ENUM62,1580 -class ExecStatus(object):ExecStatus66,1676 - TYPE = 'ExecStatus'TYPE67,1702 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM68,1726 -class ActorProperty(object):ActorProperty72,1861 - TYPE = 'ActorProperty'TYPE73,1890 - ENUM = ['AP_DISPOSE','AP_WEAKLY']ENUM74,1917 -class SpaceStatus(object):SpaceStatus78,1992 - TYPE = 'SpaceStatus'TYPE79,2019 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM80,2044 -class SetRelType(object):SetRelType84,2128 - TYPE = 'SetRelType'TYPE85,2154 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL','SRT_LQ','SRT_LE','SRT_GQ','SRT_GR']ENUM86,2178 -class SetOpType(object):SetOpType90,2321 - TYPE = 'SetOpType'TYPE91,2346 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM92,2369 - -packages/gecode/dev/gecode-enums-4.2.1.py,2256 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class RestartMode(object):RestartMode12,368 - TYPE = 'RestartMode'TYPE13,395 - ENUM = ['RM_NONE','RM_CONSTANT','RM_LINEAR','RM_LUBY','RM_GEOMETRIC']ENUM14,420 -class FloatRelType(object):FloatRelType18,529 - TYPE = 'FloatRelType'TYPE19,557 - ENUM = ['FRT_EQ','FRT_NQ','FRT_LQ','FRT_LE','FRT_GQ','FRT_GR']ENUM20,583 -class ReifyMode(object):ReifyMode24,686 - TYPE = 'ReifyMode'TYPE25,711 - ENUM = ['RM_EQV','RM_IMP','RM_PMI']ENUM26,734 -class IntRelType(object):IntRelType30,807 - TYPE = 'IntRelType'TYPE31,833 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM32,857 -class BoolOpType(object):BoolOpType36,958 - TYPE = 'BoolOpType'TYPE37,984 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM38,1008 -class IntConLevel(object):IntConLevel42,1104 - TYPE = 'IntConLevel'TYPE43,1131 - ENUM = ['ICL_VAL','ICL_BND','ICL_DOM','ICL_DEF']ENUM44,1156 -class TaskType(object):TaskType48,1244 - TYPE = 'TaskType'TYPE49,1268 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM50,1290 -class ExtensionalPropKind(object):ExtensionalPropKind54,1365 - TYPE = 'ExtensionalPropKind'TYPE55,1400 - ENUM = ['EPK_DEF','EPK_SPEED','EPK_MEMORY']ENUM56,1433 -class ExecStatus(object):ExecStatus60,1524 - TYPE = 'ExecStatus'TYPE61,1550 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM62,1574 -class ActorProperty(object):ActorProperty66,1709 - TYPE = 'ActorProperty'TYPE67,1738 - ENUM = ['AP_DISPOSE','AP_WEAKLY']ENUM68,1765 -class SpaceStatus(object):SpaceStatus72,1840 - TYPE = 'SpaceStatus'TYPE73,1867 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM74,1892 -class SetRelType(object):SetRelType78,1976 - TYPE = 'SetRelType'TYPE79,2002 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL','SRT_LQ','SRT_LE','SRT_GQ','SRT_GR']ENUM80,2026 -class SetOpType(object):SetOpType84,2169 - TYPE = 'SetOpType'TYPE85,2194 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM86,2217 - -packages/gecode/dev/gecode-enums-5.0.0.py,2374 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class RestartMode(object):RestartMode12,368 - TYPE = 'RestartMode'TYPE13,395 - ENUM = ['RM_NONE','RM_CONSTANT','RM_LINEAR','RM_LUBY','RM_GEOMETRIC']ENUM14,420 -class FloatRelType(object):FloatRelType18,529 - TYPE = 'FloatRelType'TYPE19,557 - ENUM = ['FRT_EQ','FRT_NQ','FRT_LQ','FRT_LE','FRT_GQ','FRT_GR']ENUM20,583 -class ReifyMode(object):ReifyMode24,686 - TYPE = 'ReifyMode'TYPE25,711 - ENUM = ['RM_EQV','RM_IMP','RM_PMI']ENUM26,734 -class IntRelType(object):IntRelType30,807 - TYPE = 'IntRelType'TYPE31,833 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM32,857 -class BoolOpType(object):BoolOpType36,958 - TYPE = 'BoolOpType'TYPE37,984 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM38,1008 -class IntPropLevel(object):IntPropLevel42,1104 - TYPE = 'IntPropLevel'TYPE43,1132 - ENUM = ['IPL_DEF','IPL_VAL','IPL_BND','IPL_DOM','IPL_SPEED','IPL_MEMORY','IPL_BASIC','IPL_ADVANCED','IPL_BASIC_ADVANCED']ENUM44,1158 -class TaskType(object):TaskType48,1320 - TYPE = 'TaskType'TYPE49,1344 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM50,1366 -class ExecStatus(object):ExecStatus54,1441 - TYPE = 'ExecStatus'TYPE55,1467 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM56,1491 -class ActorProperty(object):ActorProperty60,1626 - TYPE = 'ActorProperty'TYPE61,1655 - ENUM = ['AP_DISPOSE','AP_WEAKLY','AP_VIEW_TRACE','AP_TRACE']ENUM62,1682 -class SpaceStatus(object):SpaceStatus66,1784 - TYPE = 'SpaceStatus'TYPE67,1811 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM68,1836 -class TraceEvent(object):TraceEvent72,1920 - TYPE = 'TraceEvent'TYPE73,1946 - ENUM = ['TE_INIT','TE_PRUNE','TE_FIX','TE_FAIL','TE_DONE','TE_PROPAGATE','TE_COMMIT']ENUM74,1970 -class SetRelType(object):SetRelType78,2094 - TYPE = 'SetRelType'TYPE79,2120 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL','SRT_LQ','SRT_LE','SRT_GQ','SRT_GR']ENUM80,2144 -class SetOpType(object):SetOpType84,2287 - TYPE = 'SetOpType'TYPE85,2312 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM86,2335 - -packages/gecode/dev/gecode-enums-5.1.0.py,2374 -ENUM_CLASSES = []ENUM_CLASSES4,208 -class ScriptMode(object):ScriptMode6,227 - TYPE = 'ScriptMode'TYPE7,253 - ENUM = ['SM_SOLUTION','SM_TIME','SM_STAT','SM_GIST']ENUM8,277 -class RestartMode(object):RestartMode12,368 - TYPE = 'RestartMode'TYPE13,395 - ENUM = ['RM_NONE','RM_CONSTANT','RM_LINEAR','RM_LUBY','RM_GEOMETRIC']ENUM14,420 -class FloatRelType(object):FloatRelType18,529 - TYPE = 'FloatRelType'TYPE19,557 - ENUM = ['FRT_EQ','FRT_NQ','FRT_LQ','FRT_LE','FRT_GQ','FRT_GR']ENUM20,583 -class ReifyMode(object):ReifyMode24,686 - TYPE = 'ReifyMode'TYPE25,711 - ENUM = ['RM_EQV','RM_IMP','RM_PMI']ENUM26,734 -class IntRelType(object):IntRelType30,807 - TYPE = 'IntRelType'TYPE31,833 - ENUM = ['IRT_EQ','IRT_NQ','IRT_LQ','IRT_LE','IRT_GQ','IRT_GR']ENUM32,857 -class BoolOpType(object):BoolOpType36,958 - TYPE = 'BoolOpType'TYPE37,984 - ENUM = ['BOT_AND','BOT_OR','BOT_IMP','BOT_EQV','BOT_XOR']ENUM38,1008 -class IntPropLevel(object):IntPropLevel42,1104 - TYPE = 'IntPropLevel'TYPE43,1132 - ENUM = ['IPL_DEF','IPL_VAL','IPL_BND','IPL_DOM','IPL_SPEED','IPL_MEMORY','IPL_BASIC','IPL_ADVANCED','IPL_BASIC_ADVANCED']ENUM44,1158 -class TaskType(object):TaskType48,1320 - TYPE = 'TaskType'TYPE49,1344 - ENUM = ['TT_FIXP','TT_FIXS','TT_FIXE']ENUM50,1366 -class ExecStatus(object):ExecStatus54,1441 - TYPE = 'ExecStatus'TYPE55,1467 - ENUM = ['__ES_SUBSUMED','ES_FAILED','ES_NOFIX','ES_OK','ES_FIX','ES_NOFIX_FORCE','__ES_PARTIAL']ENUM56,1491 -class ActorProperty(object):ActorProperty60,1626 - TYPE = 'ActorProperty'TYPE61,1655 - ENUM = ['AP_DISPOSE','AP_WEAKLY','AP_VIEW_TRACE','AP_TRACE']ENUM62,1682 -class SpaceStatus(object):SpaceStatus66,1784 - TYPE = 'SpaceStatus'TYPE67,1811 - ENUM = ['SS_FAILED','SS_SOLVED','SS_BRANCH']ENUM68,1836 -class TraceEvent(object):TraceEvent72,1920 - TYPE = 'TraceEvent'TYPE73,1946 - ENUM = ['TE_INIT','TE_PRUNE','TE_FIX','TE_FAIL','TE_DONE','TE_PROPAGATE','TE_COMMIT']ENUM74,1970 -class SetRelType(object):SetRelType78,2094 - TYPE = 'SetRelType'TYPE79,2120 - ENUM = ['SRT_EQ','SRT_NQ','SRT_SUB','SRT_SUP','SRT_DISJ','SRT_CMPL','SRT_LQ','SRT_LE','SRT_GQ','SRT_GR']ENUM80,2144 -class SetOpType(object):SetOpType84,2287 - TYPE = 'SetOpType'TYPE85,2312 - ENUM = ['SOT_UNION','SOT_DUNION','SOT_INTER','SOT_MINUS']ENUM86,2335 - -packages/gecode/dev/gecode-prototypes-3.6.0.hh,0 - -packages/gecode/dev/gecode-prototypes-3.7.0.hh,0 - -packages/gecode/dev/gecode-prototypes-3.7.1.hh,0 - -packages/gecode/dev/gecode-prototypes-3.7.2.hh,0 - -packages/gecode/dev/gecode-prototypes-3.7.3.hh,0 - -packages/gecode/dev/gecode-prototypes-4.0.0.hh,0 - -packages/gecode/dev/gecode-prototypes-4.2.0.hh,0 - -packages/gecode/dev/gecode-prototypes-4.2.1.hh,0 - -packages/gecode/dev/gecode-prototypes-5.0.0.hh,0 - -packages/gecode/dev/gecode-prototypes-5.1.0.hh,0 - -packages/gecode/dev/Makefile,0 - -packages/gecode/dev/x.py,5866 -import rere19,852 -def prolog_print_notice():prolog_print_notice59,2662 -def cc_print_notice():cc_print_notice62,2714 -class Type(object):Type65,2758 - def __init__(self, text):__init__72,2969 - def __str__(self):__str__103,3829 - def clone_from(self, other):clone_from114,4151 - def clone(self):clone121,4366 -class Constraint(object):Constraint125,4421 - def __init__(self, line):__init__130,4568 - def __str__(self):__str__144,5022 - def clone_from(self, other):clone_from161,5438 - def clone(self):clone166,5613 -def load_decls(filename):load_decls172,5708 -class DeclsLoader(object):DeclsLoader182,5951 - def __init__(self, filename):__init__184,5979 - def print_decls(self):print_decls187,6056 -class PredGenerator(DeclsLoader):PredGenerator191,6142 - OMIT = ("VarBranchOptions",OMIT193,6177 - def __init__(self, filename):__init__203,6531 - def _change_home_to_space(self):_change_home_to_space210,6754 - def _change_intsharedarray_to_intargs(self):_change_intsharedarray_to_intargs216,6924 - def _generate(self):_generate222,7118 - def _con_ok(self, con):_con_ok260,8649 - def _drop_deco(self, t):_drop_deco266,8820 - def _defaulted(self, argtypes):_defaulted273,8998 - def _number(self):_number281,9178 - def print_preds(self):print_preds287,9305 -class Cluster(object):Cluster291,9387 - def __init__(self, name, arity):__init__293,9411 -class DTree(object):DTree299,9571 - def __init__(self, i, preds, cluster):__init__301,9593 - def _generate_body(self, user_vars, lib_vars):_generate_body322,10329 - def _generate_dispatch(self, i, user_vars, lib_vars):_generate_dispatch329,10635 - def _cc_descriptors(self, name, argtypes):_cc_descriptors346,11359 -class YAPConstraintGeneratorBase(PredGenerator):YAPConstraintGeneratorBase354,11668 - def __init__(self, filename):__init__356,11718 - def _classify(self):_classify362,11909 - def _dtreefy(self):_dtreefy376,12364 - def _user_vars(self, arity):_user_vars383,12578 - def _lib_vars(self, arity):_lib_vars386,12668 -class YAPConstraintPrologGenerator(YAPConstraintGeneratorBase):YAPConstraintPrologGenerator389,12757 - def __init__(self, filename):__init__391,12822 - def _prolog_clauses(self):_prolog_clauses394,12926 - def generate(self):generate405,13355 -class YAPConstraintCCGenerator(YAPConstraintGeneratorBase):YAPConstraintCCGenerator410,13490 - def __init__(self, filename):__init__412,13551 - def _cc_descriptors(self):_cc_descriptors415,13651 - def generate_impl(self):generate_impl421,13859 - def generate_init(self):generate_init425,13960 -import syssys432,14152 -class OStream(object):OStream434,14164 - def __init__(self, fd=sys.stdout):__init__436,14188 - def write(self, s):write440,14275 - def newline(self):newline450,14519 - def writeln(self, s=None):writeln454,14597 - def indent_to(self, n):indent_to459,14704 -class PrologObject(object):PrologObject469,14960 -class PrologClause(PrologObject):PrologClause472,14998 - def __init__(self, head, body):__init__474,15033 - def pp(self, out, offset):pp478,15120 -class PrologLiteral(PrologObject):PrologLiteral486,15321 - def __init__(self, lit):__init__488,15357 - def pp(self, out, offset):pp491,15414 -class PrologIF(PrologObject):PrologIF495,15508 - def __init__(self, cond, left, right):__init__497,15539 - def pp(self, out, offset):pp502,15660 -ENUM_CLASSES = NoneENUM_CLASSES517,16056 -ENUM_CLASSES_AVOID = ('ScriptMode','ViewSelStatus','ExecStatus',ENUM_CLASSES_AVOID518,16076 -def enum_classes():enum_classes521,16195 - import impimp525,16327 -class YAPEnumImpl(object):YAPEnumImpl532,16564 - def generate(self):generate534,16592 - def _generate_atoms(self):_generate_atoms538,16683 - def _generate_from_term(self):_generate_from_term543,16808 - def _generate_from_term_forward_decl(self):_generate_from_term_forward_decl552,17134 -class YAPEnumImplGenerator(object):YAPEnumImplGenerator555,17264 - def generate(self):generate557,17301 - class C(c,YAPEnumImpl): passC559,17358 -class YAPEnumForwardGenerator(object):YAPEnumForwardGenerator563,17445 - def generate(self):generate565,17485 - class C(c,YAPEnumImpl): passC567,17542 -class YAPEnumInit(object):YAPEnumInit571,17653 - def generate(self):generate573,17681 -class YAPEnumInitGenerator(object):YAPEnumInitGenerator580,17909 - def generate(self):generate582,17946 - class C(c,YAPEnumInit): passC584,18003 -class YAPEnumProlog(object):YAPEnumProlog588,18090 - def generate(self):generate590,18120 -class YAPEnumPrologGenerator(object):YAPEnumPrologGenerator601,18495 - def generate(self):generate603,18534 - class C(c,YAPEnumProlog): passC605,18591 -class CCDescriptor(object):CCDescriptor609,18680 - def __init__(self, name, argtypes, api):__init__611,18709 - def generate_impl(self):generate_impl616,18836 - def generate_init(self):generate_init644,19890 -GECODE_VERSION = NoneGECODE_VERSION648,20063 -def gecode_version():gecode_version650,20086 - from distutils.ccompiler import new_compilernew_compiler654,20199 - from distutils.ccompiler import customize_compilercustomize_compiler656,20257 - from distutils.sysconfig import customize_compilercustomize_compiler658,20328 - import osos659,20387 - f = open(file_txt)f671,20741 - version = ""version672,20768 - version = line[3:-2]version675,20850 - version = "5.0.0" version681,20992 - GECODE_VERSION = versionGECODE_VERSION682,21019 -def generate_files():generate_files685,21068 - import os, os.pathos687,21127 - import os, os.pathos687,21127 - import os, os.pathpath687,21127 - import syssys692,21295 - -packages/gecode/disjunctor.hh,1519 -#define __GECODE_DISJUNCTOR_HH____GECODE_DISJUNCTOR_HH__20,913 -namespace Gecode { namespace Disjunctor_ {Gecode26,1026 -namespace Gecode { namespace Disjunctor_ {Disjunctor_26,1026 -namespace Gecode { namespace Disjunctor_ {Gecode::Disjunctor_26,1026 - struct Disjunctor: public LocalHandleDisjunctor44,1789 - struct Disjunctor: public LocalHandleGecode::Disjunctor_::Disjunctor44,1789 - class Clause: public Propagator {Clause72,2969 - class Clause: public Propagator {Gecode::Disjunctor_::Clause72,2969 - Disjunctor disj;disj73,3007 - Disjunctor disj;Gecode::Disjunctor_::Clause::disj73,3007 - SubSpace*const subhome;subhome74,3030 - SubSpace*const subhome;Gecode::Disjunctor_::Clause::subhome74,3030 - class SubSpace: public GenericSpaceSubSpace108,4333 - class SubSpace: public GenericSpaceGecode::Disjunctor_::SubSpace108,4333 - Space* homeDuringCloning;homeDuringCloning111,4392 - Space* homeDuringCloning;Gecode::Disjunctor_::SubSpace::homeDuringCloning111,4392 - BasicForwarder* forwarder;forwarder114,4542 - BasicForwarder* forwarder;Gecode::Disjunctor_::SubSpace::forwarder114,4542 -namespace GecodeGecode134,5249 - class ClauseClause138,5302 - class ClauseGecode::Clause138,5302 - generic_gecode::GenericSpace& _home;_home140,5321 - generic_gecode::GenericSpace& _home;Gecode::Clause::_home140,5321 - Disjunctor_::Clause* _clause;_clause141,5362 - Disjunctor_::Clause* _clause;Gecode::Clause::_clause141,5362 - -packages/gecode/disjunctor1.yap,123 -disjunctor1(X_,Y_) :-disjunctor121,916 -disjunctor1(X_,Y_) :-disjunctor121,916 -disjunctor1(X_,Y_) :-disjunctor121,916 - -packages/gecode/disjunctor2.yap,123 -disjunctor2(X_,Y_) :-disjunctor221,916 -disjunctor2(X_,Y_) :-disjunctor221,916 -disjunctor2(X_,Y_) :-disjunctor221,916 - -packages/gecode/examples/photo.yap,297 -photo(Ex, Solution,Amount) :-photo23,1023 -photo(Ex, Solution,Amount) :-photo23,1023 -photo(Ex, Solution,Amount) :-photo23,1023 -preferences(Space, Len, X-Y, B) :-preferences43,1633 -preferences(Space, Len, X-Y, B) :-preferences43,1633 -preferences(Space, Len, X-Y, B) :-preferences43,1633 - -packages/gecode/examples/queens.yap,844 -queens(N, Solution) :-queens23,975 -queens(N, Solution) :-queens23,975 -queens(N, Solution) :-queens23,975 -inc(_, I0, I0, I) :-inc36,1349 -inc(_, I0, I0, I) :-inc36,1349 -inc(_, I0, I0, I) :-inc36,1349 -dec(_, I0, I0, I) :-dec39,1383 -dec(_, I0, I0, I) :-dec39,1383 -dec(_, I0, I0, I) :-dec39,1383 -lqueens(N, Solution) :-lqueens45,1470 -lqueens(N, Solution) :-lqueens45,1470 -lqueens(N, Solution) :-lqueens45,1470 -lconstrain([], _, _).lconstrain55,1749 -lconstrain([], _, _).lconstrain55,1749 -lconstrain( [Q|Queens], Space, I0) :-lconstrain56,1771 -lconstrain( [Q|Queens], Space, I0) :-lconstrain56,1771 -lconstrain( [Q|Queens], Space, I0) :-lconstrain56,1771 -constrain(Q, I, Space, R, J, J1) :-constrain61,1901 -constrain(Q, I, Space, R, J, J1) :-constrain61,1901 -constrain(Q, I, Space, R, J, J1) :-constrain61,1901 - -packages/gecode/examples/send_more_money.yap,156 -send_more_money(Solution) :-send_more_money25,964 -send_more_money(Solution) :-send_more_money25,964 -send_more_money(Solution) :-send_more_money25,964 - -packages/gecode/examples/send_most_money.yap,177 -send_most_money(Solution,Amount) :-send_most_money25,964 -send_most_money(Solution,Amount) :-send_most_money25,964 -send_most_money(Solution,Amount) :-send_most_money25,964 - -packages/gecode/gecode3.yap,0 - -packages/gecode/gecode3_yap.cc,9923 -namespace generic_gecodegeneric_gecode30,1044 - template struct DynArrayDynArray33,1093 - template struct DynArraygeneric_gecode::DynArray33,1093 - T* _array;_array35,1137 - T* _array;generic_gecode::DynArray::_array35,1137 - DynArray(int n): _array(new T[n]) {}DynArray36,1152 - DynArray(int n): _array(new T[n]) {}generic_gecode::DynArray::DynArray36,1152 - ~DynArray() { delete[] _array; }~DynArray37,1193 - ~DynArray() { delete[] _array; }generic_gecode::DynArray::~DynArray37,1193 - T& operator[](int i) { return _array[i]; }operator []38,1230 - T& operator[](int i) { return _array[i]; }generic_gecode::DynArray::operator []38,1230 -#define DYNARRAY(DYNARRAY40,1282 - struct SpecArraySpecArray46,1390 - struct SpecArraygeneric_gecode::SpecArray46,1390 - int (*_array)[2];_array48,1413 - int (*_array)[2];generic_gecode::SpecArray::_array48,1413 - SpecArray(int n): _array((int (*)[2]) new int[n*2]) {}SpecArray49,1435 - SpecArray(int n): _array((int (*)[2]) new int[n*2]) {}generic_gecode::SpecArray::SpecArray49,1435 - ~SpecArray() { delete[] _array; }~SpecArray50,1494 - ~SpecArray() { delete[] _array; }generic_gecode::SpecArray::~SpecArray50,1494 - int& operator()(int i,int j) { return _array[i][j]; }operator ()51,1532 - int& operator()(int i,int j) { return _array[i][j]; }generic_gecode::SpecArray::operator ()51,1532 -#define SPECARRAY(SPECARRAY53,1595 -#define SPECARRAYELEM(SPECARRAYELEM54,1633 -#define SPECARRAYDEREF(SPECARRAYDEREF55,1669 -#define SPECARRAY(SPECARRAY57,1710 -#define SPECARRAYELEM(SPECARRAYELEM58,1745 -#define SPECARRAYDEREF(SPECARRAYDEREF59,1782 - static YAP_opaque_tag_t gecode_space_tag;gecode_space_tag68,1884 - static YAP_opaque_handler_t gecode_space_handler;gecode_space_handler69,1928 - static int gecode_space_fail_handler(void* p)gecode_space_fail_handler71,1981 - gecode_space_write_handlergecode_space_write_handler78,2099 - static YAP_Term gecode_term_from_space(GenericSpace* s)gecode_term_from_space85,2251 - static int gecode_new_space(void)gecode_new_space95,2517 - gecode_Space_from_term(YAP_Term t)gecode_Space_from_term103,2711 - struct YapDisjunctorYapDisjunctor108,2821 - GenericSpace* home;home110,2848 - GenericSpace* home;YapDisjunctor::home110,2848 - Disjunctor disj;disj111,2872 - Disjunctor disj;YapDisjunctor::disj111,2872 - YapDisjunctor(GenericSpace* home_)YapDisjunctor112,2893 - YapDisjunctor(GenericSpace* home_)YapDisjunctor::YapDisjunctor112,2893 - static YAP_opaque_tag_t gecode_disjunctor_tag;gecode_disjunctor_tag116,2975 - static YAP_opaque_handler_t gecode_disjunctor_handler;gecode_disjunctor_handler117,3024 - static YAP_opaque_tag_t gecode_disjunctor_clause_tag;gecode_disjunctor_clause_tag118,3081 - static YAP_opaque_handler_t gecode_disjunctor_clause_handler;gecode_disjunctor_clause_handler119,3137 - gecode_Disjunctor_from_term(YAP_Term t)gecode_Disjunctor_from_term122,3230 - gecode_YapDisjunctor_from_term(YAP_Term t)gecode_YapDisjunctor_from_term128,3377 - gecode_Clause_from_term(YAP_Term t)gecode_Clause_from_term134,3514 - gecode_Space_from_term(YAP_Term t)gecode_Space_from_term140,3643 - static YAP_opaque_tag_t gecode_engine_tag;gecode_engine_tag151,3906 - static YAP_opaque_handler_t gecode_engine_handler;gecode_engine_handler152,3951 - static int gecode_new_engine(void)gecode_new_engine154,4005 - gecode_engine_from_term(YAP_Term t)gecode_engine_from_term178,4859 - static int gecode_engine_fail_handler(void* p)gecode_engine_fail_handler183,4966 - gecode_engine_write_handlergecode_engine_write_handler190,5086 - static int gecode_engine_search(void)gecode_engine_search198,5286 - static int gecode_new_disjunctor(void)gecode_new_disjunctor211,5597 - gecode_disjunctor_write_handlergecode_disjunctor_write_handler222,5944 - static int gecode_new_clause(void)gecode_new_clause230,6152 - gecode_clause_write_handlergecode_clause_write_handler241,6511 - static int gecode_clause_intvar_forward(void)gecode_clause_intvar_forward253,6909 - static int gecode_clause_boolvar_forward(void)gecode_clause_boolvar_forward264,7311 - static int gecode_clause_setvar_forward(void)gecode_clause_setvar_forward275,7718 - static int gecode_new_intvar_from_bounds(void)gecode_new_intvar_from_bounds287,8127 - gecode_list_length(YAP_Term l)gecode_list_length299,8471 - gecode_IntSet_from_term(YAP_Term specs)gecode_IntSet_from_term311,8637 - static int gecode_new_intvar_from_intset(void)gecode_new_intvar_from_intset327,9060 - static int gecode_new_boolvar(void)gecode_new_boolvar337,9370 - static int gecode_new_setvar_1(void)gecode_new_setvar_1345,9584 - static int gecode_new_setvar_2(void)gecode_new_setvar_2359,10102 - static int gecode_new_setvar_3(void)gecode_new_setvar_3372,10570 - static int gecode_new_setvar_4(void)gecode_new_setvar_4384,10988 - static int gecode_new_setvar_5(void)gecode_new_setvar_5397,11466 - static int gecode_new_setvar_6(void)gecode_new_setvar_6409,11893 - static int gecode_new_setvar_7(void)gecode_new_setvar_7420,12269 - static int gecode_new_setvar_8(void)gecode_new_setvar_8433,12747 - static int gecode_new_setvar_9(void)gecode_new_setvar_9445,13174 - static int gecode_new_setvar_10(void)gecode_new_setvar_10456,13550 - static int gecode_new_setvar_11(void)gecode_new_setvar_11468,13987 - static int gecode_new_setvar_12(void)gecode_new_setvar_12479,14373 - static int gecode_space_minimize(void)gecode_space_minimize489,14708 - static int gecode_space_maximize(void)gecode_space_maximize497,14896 - static int gecode_space_minimize_ratio(void)gecode_space_minimize_ratio505,15084 - static int gecode_space_maximize_ratio(void)gecode_space_maximize_ratio514,15317 - gecode_IntVar_from_term(GenericSpace* space, YAP_Term x)gecode_IntVar_from_term524,15566 - gecode_BoolVar_from_term(GenericSpace* space, YAP_Term x)gecode_BoolVar_from_term531,15712 - gecode_SetVar_from_term(GenericSpace* space, YAP_Term x)gecode_SetVar_from_term538,15858 - gecode_IntVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_IntVarArgs_from_term545,16007 - gecode_BoolVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_BoolVarArgs_from_term561,16339 - gecode_SetVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_SetVarArgs_from_term577,16672 - gecode_IntArgs_from_term(YAP_Term l)gecode_IntArgs_from_term593,17000 - gecode_IntSetArgs_from_term(YAP_Term l)gecode_IntSetArgs_from_term609,17287 - gecode_TaskTypeArgs_from_term(YAP_Term l)gecode_TaskTypeArgs_from_term627,17647 - static YAP_Term gecode_TRUE;gecode_TRUE642,17939 - static YAP_Term gecode_FALSE;gecode_FALSE643,17970 - gecode_bool_from_term(YAP_Term X)gecode_bool_from_term646,18017 - static int gecode_space_use_keep_index(void)gecode_space_use_keep_index653,18195 - static int gecode_intvar_keep(void)gecode_intvar_keep662,18453 - static int gecode_boolvar_keep(void)gecode_boolvar_keep673,18767 - static int gecode_setvar_keep(void)gecode_setvar_keep684,19082 - static int gecode_intvar_assigned(void)gecode_intvar_assigned696,19417 - static int gecode_intvar_min(void)gecode_intvar_min703,19627 - static int gecode_intvar_max(void)gecode_intvar_max711,19876 - static int gecode_intvar_med(void)gecode_intvar_med719,20125 - static int gecode_intvar_val(void)gecode_intvar_val727,20374 - static int gecode_intvar_size(void)gecode_intvar_size735,20623 - static int gecode_intvar_width(void)gecode_intvar_width743,20874 - static int gecode_intvar_regret_min(void)gecode_intvar_regret_min751,21127 - static int gecode_intvar_regret_max(void)gecode_intvar_regret_max759,21390 - static YAP_Functor gecode_COMMA2;gecode_COMMA2767,21653 - static int gecode_intvar_ranges(void)gecode_intvar_ranges769,21690 - static int gecode_intvar_values(void)gecode_intvar_values792,22391 - static int gecode_boolvar_assigned(void)gecode_boolvar_assigned810,22890 - static int gecode_boolvar_min(void)gecode_boolvar_min817,23103 - static int gecode_boolvar_max(void)gecode_boolvar_max825,23355 - static int gecode_boolvar_med(void)gecode_boolvar_med833,23607 - static int gecode_boolvar_val(void)gecode_boolvar_val841,23859 - static int gecode_boolvar_size(void)gecode_boolvar_size849,24111 - static int gecode_boolvar_width(void)gecode_boolvar_width857,24365 - static int gecode_boolvar_regret_min(void)gecode_boolvar_regret_min865,24621 - static int gecode_boolvar_regret_max(void)gecode_boolvar_regret_max873,24887 - static int gecode_setvar_assigned(void)gecode_setvar_assigned882,25174 - static int gecode_setvar_glbSize(void)gecode_setvar_glbSize889,25384 - static int gecode_setvar_lubSize(void)gecode_setvar_lubSize897,25641 - static int gecode_setvar_unknownSize(void)gecode_setvar_unknownSize905,25898 - static int gecode_setvar_cardMin(void)gecode_setvar_cardMin913,26163 - static int gecode_setvar_cardMax(void)gecode_setvar_cardMax921,26420 - static int gecode_setvar_lubMin(void)gecode_setvar_lubMin929,26677 - static int gecode_setvar_lubMax(void)gecode_setvar_lubMax937,26932 - static int gecode_setvar_glbMin(void)gecode_setvar_glbMin945,27187 - static int gecode_setvar_glbMax(void)gecode_setvar_glbMax953,27442 - static int gecode_setvar_glb_ranges(void)gecode_setvar_glb_ranges961,27697 - static int gecode_setvar_lub_ranges(void)gecode_setvar_lub_ranges984,28408 - static int gecode_setvar_unknown_ranges(void)gecode_setvar_unknown_ranges1007,29119 - static int gecode_setvar_glb_values(void)gecode_setvar_glb_values1030,29842 - static int gecode_setvar_lub_values(void)gecode_setvar_lub_values1044,30316 - static int gecode_setvar_unknown_values(void)gecode_setvar_unknown_values1058,30790 -#define gecode_int_from_term gecode_int_from_term1072,31276 - void gecode_init(void)gecode_init1077,31422 - -packages/gecode/gecode3_yap_hand_written.yap,41141 -is_int(X,Y) :- integer(X), Y=X.is_int26,1065 -is_int(X,Y) :- integer(X), Y=X.is_int26,1065 -is_int(X,Y) :- integer(X), Y=X.is_int26,1065 -is_int(X) :- integer(X).is_int27,1097 -is_int(X) :- integer(X).is_int27,1097 -is_int(X) :- integer(X).is_int27,1097 -is_int(X) :- integer(X).is_int27,1097 -is_int(X) :- integer(X).is_int27,1097 -is_bool_(true,true).is_bool_29,1123 -is_bool_(true,true).is_bool_29,1123 -is_bool_(false,false).is_bool_30,1144 -is_bool_(false,false).is_bool_30,1144 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool31,1167 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool31,1167 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool31,1167 -is_bool(X) :- is_bool(X,_).is_bool32,1199 -is_bool(X) :- is_bool(X,_).is_bool32,1199 -is_bool(X) :- is_bool(X,_).is_bool32,1199 -is_bool(X) :- is_bool(X,_).is_bool32,1199 -is_bool(X) :- is_bool(X,_).is_bool32,1199 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_34,1228 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_34,1228 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_34,1228 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_39,1364 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_39,1364 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_39,1364 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_44,1502 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_44,1502 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_44,1502 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar50,1639 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar50,1639 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar50,1639 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar50,1639 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar50,1639 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar51,1685 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar51,1685 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar51,1685 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar51,1685 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar51,1685 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar52,1733 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar52,1733 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar52,1733 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar52,1733 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar52,1733 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar54,1780 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar54,1780 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar54,1780 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar54,1780 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar54,1780 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar55,1812 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar55,1812 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar55,1812 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar55,1812 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar55,1812 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar56,1846 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar56,1846 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar56,1846 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar56,1846 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar56,1846 -is_IntVarArgs_([],[]).is_IntVarArgs_58,1879 -is_IntVarArgs_([],[]).is_IntVarArgs_58,1879 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_59,1902 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_59,1902 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_59,1902 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_59,1902 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_59,1902 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs60,1973 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs60,1973 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs60,1973 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs60,1973 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs60,1973 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs61,2027 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs61,2027 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs61,2027 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs61,2027 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs61,2027 -is_BoolVarArgs_([],[]).is_BoolVarArgs_63,2074 -is_BoolVarArgs_([],[]).is_BoolVarArgs_63,2074 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_64,2098 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_64,2098 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_64,2098 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_64,2098 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_64,2098 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs65,2172 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs65,2172 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs65,2172 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs65,2172 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs65,2172 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs66,2228 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs66,2228 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs66,2228 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs66,2228 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs66,2228 -is_SetVarArgs_([],[]).is_SetVarArgs_68,2277 -is_SetVarArgs_([],[]).is_SetVarArgs_68,2277 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_69,2300 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_69,2300 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_69,2300 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_69,2300 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_69,2300 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs70,2371 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs70,2371 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs70,2371 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs70,2371 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs70,2371 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs71,2425 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs71,2425 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs71,2425 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs71,2425 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs71,2425 -is_IntArgs_([],[]).is_IntArgs_73,2472 -is_IntArgs_([],[]).is_IntArgs_73,2472 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_74,2492 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_74,2492 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_74,2492 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_74,2492 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_74,2492 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs75,2551 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs75,2551 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs75,2551 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs75,2551 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs75,2551 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs76,2599 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs76,2599 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs76,2599 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs76,2599 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs76,2599 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray78,2640 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray78,2640 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray78,2640 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray78,2640 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray78,2640 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray79,2679 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray79,2679 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray79,2679 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray79,2679 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray79,2679 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_81,2723 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_81,2723 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_82,2748 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_82,2748 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_82,2748 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_82,2748 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_82,2748 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs83,2825 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs83,2825 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs83,2825 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs83,2825 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs83,2825 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs84,2883 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs84,2883 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs84,2883 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs84,2883 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs84,2883 -is_IntSet_('IntSet'(L),L).is_IntSet_86,2934 -is_IntSet_('IntSet'(L),L).is_IntSet_86,2934 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet87,2961 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet87,2961 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet87,2961 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet87,2961 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet87,2961 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet88,3007 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet88,3007 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet88,3007 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet88,3007 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet88,3007 -is_IntSetArgs_([],[]).is_IntSetArgs_90,3040 -is_IntSetArgs_([],[]).is_IntSetArgs_90,3040 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_91,3063 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_91,3063 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_91,3063 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_91,3063 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_91,3063 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs92,3134 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs92,3134 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs92,3134 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs92,3134 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs92,3134 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs93,3188 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs93,3188 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs93,3188 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs93,3188 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs93,3188 -new_intset(X,I,J) :- intset(X,I,J).new_intset95,3235 -new_intset(X,I,J) :- intset(X,I,J).new_intset95,3235 -new_intset(X,I,J) :- intset(X,I,J).new_intset95,3235 -new_intset(X,I,J) :- intset(X,I,J).new_intset95,3235 -new_intset(X,I,J) :- intset(X,I,J).new_intset95,3235 -new_intset(X,L) :- intset(X,L).new_intset96,3271 -new_intset(X,L) :- intset(X,L).new_intset96,3271 -new_intset(X,L) :- intset(X,L).new_intset96,3271 -new_intset(X,L) :- intset(X,L).new_intset96,3271 -new_intset(X,L) :- intset(X,L).new_intset96,3271 -intset(X, I, J) :-intset98,3304 -intset(X, I, J) :-intset98,3304 -intset(X, I, J) :-intset98,3304 -intset(X, L) :-intset102,3371 -intset(X, L) :-intset102,3371 -intset(X, L) :-intset102,3371 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs106,3437 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs106,3437 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs106,3437 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_108,3512 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_108,3512 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_109,3545 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_109,3545 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_109,3545 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec113,3644 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec113,3644 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec113,3644 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec113,3644 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec113,3644 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_114,3700 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_114,3700 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_114,3700 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_114,3700 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_114,3700 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_115,3759 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_115,3759 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_115,3759 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_115,3759 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_115,3759 -assert_var(X,Y) :-assert_var117,3800 -assert_var(X,Y) :-assert_var117,3800 -assert_var(X,Y) :-assert_var117,3800 -assert_is_int(X,Y) :-assert_is_int119,3871 -assert_is_int(X,Y) :-assert_is_int119,3871 -assert_is_int(X,Y) :-assert_is_int119,3871 -assert_is_Space(X,Y) :-assert_is_Space121,3950 -assert_is_Space(X,Y) :-assert_is_Space121,3950 -assert_is_Space(X,Y) :-assert_is_Space121,3950 -assert_is_IntSet(X,Y) :-assert_is_IntSet123,4037 -assert_is_IntSet(X,Y) :-assert_is_IntSet123,4037 -assert_is_IntSet(X,Y) :-assert_is_IntSet123,4037 -assert_is_IntVar(X,Y) :-assert_is_IntVar125,4127 -assert_is_IntVar(X,Y) :-assert_is_IntVar125,4127 -assert_is_IntVar(X,Y) :-assert_is_IntVar125,4127 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar127,4217 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar127,4217 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar127,4217 -assert_is_SetVar(X,Y) :-assert_is_SetVar129,4310 -assert_is_SetVar(X,Y) :-assert_is_SetVar129,4310 -assert_is_SetVar(X,Y) :-assert_is_SetVar129,4310 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs131,4400 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs131,4400 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs131,4400 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs133,4493 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs133,4493 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs133,4493 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs135,4595 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs135,4595 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs135,4595 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs137,4700 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs137,4700 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs137,4700 -assert_var(X) :- assert_var(X,_).assert_var140,4803 -assert_var(X) :- assert_var(X,_).assert_var140,4803 -assert_var(X) :- assert_var(X,_).assert_var140,4803 -assert_var(X) :- assert_var(X,_).assert_var140,4803 -assert_var(X) :- assert_var(X,_).assert_var140,4803 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int141,4837 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int141,4837 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int141,4837 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int141,4837 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int141,4837 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space142,4877 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space142,4877 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space142,4877 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space142,4877 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space142,4877 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet143,4921 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet143,4921 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet143,4921 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet143,4921 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet143,4921 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar144,4967 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar144,4967 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar144,4967 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar144,4967 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar144,4967 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar145,5013 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar145,5013 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar145,5013 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar145,5013 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar145,5013 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar146,5061 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar146,5061 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar146,5061 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar146,5061 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar146,5061 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs147,5107 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs147,5107 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs147,5107 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs147,5107 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs147,5107 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs148,5155 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs148,5155 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs148,5155 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs148,5155 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs148,5155 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs149,5209 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs149,5209 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs149,5209 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs149,5209 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs149,5209 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs150,5265 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs150,5265 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs150,5265 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs150,5265 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs150,5265 -new_space(Space) :-new_space152,5320 -new_space(Space) :-new_space152,5320 -new_space(Space) :-new_space152,5320 -is_Space_('Space'(X),X) :-is_Space_166,5805 -is_Space_('Space'(X),X) :-is_Space_166,5805 -is_Space_('Space'(X),X) :-is_Space_166,5805 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space169,5916 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space169,5916 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space169,5916 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space169,5916 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space169,5916 -is_Space(X) :- is_Space(X,_).is_Space170,5960 -is_Space(X) :- is_Space(X,_).is_Space170,5960 -is_Space(X) :- is_Space(X,_).is_Space170,5960 -is_Space(X) :- is_Space(X,_).is_Space170,5960 -is_Space(X) :- is_Space(X,_).is_Space170,5960 -new_intvars([], Space, Lo, Hi).new_intvars174,6028 -new_intvars([], Space, Lo, Hi).new_intvars174,6028 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars175,6060 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars175,6060 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars175,6060 -new_intvars([], Space, IntSet).new_intvars179,6175 -new_intvars([], Space, IntSet).new_intvars179,6175 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars180,6207 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars180,6207 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars180,6207 -new_boolvars([], Space).new_boolvars184,6322 -new_boolvars([], Space).new_boolvars184,6322 -new_boolvars([BVar|BVars], Space) :-new_boolvars185,6347 -new_boolvars([BVar|BVars], Space) :-new_boolvars185,6347 -new_boolvars([BVar|BVars], Space) :-new_boolvars185,6347 -new_setvars([], Space, X1, X2, X3, X4, X5, X6).new_setvars189,6441 -new_setvars([], Space, X1, X2, X3, X4, X5, X6).new_setvars189,6441 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars190,6489 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars190,6489 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars190,6489 -new_setvars([], Space, X1, X2, X3, X4, X5).new_setvars194,6652 -new_setvars([], Space, X1, X2, X3, X4, X5).new_setvars194,6652 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars195,6696 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars195,6696 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars195,6696 -new_setvars([], Space, X1, X2, X3, X4).new_setvars199,6847 -new_setvars([], Space, X1, X2, X3, X4).new_setvars199,6847 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars200,6887 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars200,6887 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars200,6887 -new_setvars([], Space, X1, X2, X3).new_setvars204,7026 -new_setvars([], Space, X1, X2, X3).new_setvars204,7026 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars205,7062 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars205,7062 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars205,7062 -new_setvars([], Space, X1, X2).new_setvars209,7189 -new_setvars([], Space, X1, X2).new_setvars209,7189 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars210,7221 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars210,7221 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars210,7221 -assert_integer(X) :- assert_is_int(X).assert_integer216,7359 -assert_integer(X) :- assert_is_int(X).assert_integer216,7359 -assert_integer(X) :- assert_is_int(X).assert_integer216,7359 -assert_integer(X) :- assert_is_int(X).assert_integer216,7359 -assert_integer(X) :- assert_is_int(X).assert_integer216,7359 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar218,7399 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar218,7399 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar218,7399 -new_intvar(IVar, Space, IntSet) :- !,new_intvar225,7614 -new_intvar(IVar, Space, IntSet) :- !,new_intvar225,7614 -new_intvar(IVar, Space, IntSet) :- !,new_intvar225,7614 -new_boolvar(BVar, Space) :- !,new_boolvar232,7814 -new_boolvar(BVar, Space) :- !,new_boolvar232,7814 -new_boolvar(BVar, Space) :- !,new_boolvar232,7814 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar253,8816 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar253,8816 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar253,8816 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar269,9421 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar269,9421 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar269,9421 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar294,10208 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar294,10208 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar294,10208 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar322,10993 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar322,10993 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar322,10993 -new_setvar(SVar,Space,X1,X2) :-new_setvar343,11543 -new_setvar(SVar,Space,X1,X2) :-new_setvar343,11543 -new_setvar(SVar,Space,X1,X2) :-new_setvar343,11543 -minimize(Space,IVar) :-minimize351,11758 -minimize(Space,IVar) :-minimize351,11758 -minimize(Space,IVar) :-minimize351,11758 -maximize(Space,IVar) :-maximize355,11883 -maximize(Space,IVar) :-maximize355,11883 -maximize(Space,IVar) :-maximize355,11883 -minimize(Space,IVar1,IVar2) :-minimize359,12008 -minimize(Space,IVar1,IVar2) :-minimize359,12008 -minimize(Space,IVar1,IVar2) :-minimize359,12008 -maximize(Space,IVar1,IVar2) :-maximize364,12189 -maximize(Space,IVar1,IVar2) :-maximize364,12189 -maximize(Space,IVar1,IVar2) :-maximize364,12189 -gecode_search_options_init(search_options(0,1.0,8,2)).gecode_search_options_init370,12371 -gecode_search_options_init(search_options(0,1.0,8,2)).gecode_search_options_init370,12371 -gecode_search_options_offset(restart,1).gecode_search_options_offset371,12426 -gecode_search_options_offset(restart,1).gecode_search_options_offset371,12426 -gecode_search_options_offset(threads,2).gecode_search_options_offset372,12467 -gecode_search_options_offset(threads,2).gecode_search_options_offset372,12467 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset373,12508 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset373,12508 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset374,12549 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset374,12549 -gecode_search_option_set(O,V,R) :-gecode_search_option_set376,12591 -gecode_search_option_set(O,V,R) :-gecode_search_option_set376,12591 -gecode_search_option_set(O,V,R) :-gecode_search_option_set376,12591 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist380,12685 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist380,12685 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist380,12685 -gecode_search_options_process_alist([],R).gecode_search_options_process_alist384,12808 -gecode_search_options_process_alist([],R).gecode_search_options_process_alist384,12808 -gecode_search_options_process_alist([H|T],R) :- !,gecode_search_options_process_alist385,12851 -gecode_search_options_process_alist([H|T],R) :- !,gecode_search_options_process_alist385,12851 -gecode_search_options_process_alist([H|T],R) :- !,gecode_search_options_process_alist385,12851 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1389,12990 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1389,12990 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1389,12990 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1391,13081 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1391,13081 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1391,13081 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1396,13283 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1396,13283 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1396,13283 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1400,13437 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1400,13437 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1400,13437 -gecode_search_options_process1(O,_) :-gecode_search_options_process1404,13591 -gecode_search_options_process1(O,_) :-gecode_search_options_process1404,13591 -gecode_search_options_process1(O,_) :-gecode_search_options_process1404,13591 -search(Space, Solution) :-search407,13687 -search(Space, Solution) :-search407,13687 -search(Space, Solution) :-search407,13687 -search(Space, Solution, Alist) :-search410,13748 -search(Space, Solution, Alist) :-search410,13748 -search(Space, Solution, Alist) :-search410,13748 -get_for_vars([],Space,[],F).get_for_vars421,14018 -get_for_vars([],Space,[],F).get_for_vars421,14018 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars422,14047 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars422,14047 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars422,14047 -get_assigned(Space, Var) :-get_assigned426,14151 -get_assigned(Space, Var) :-get_assigned426,14151 -get_assigned(Space, Var) :-get_assigned426,14151 -get_min(X, Space, Var) :-get_min436,14447 -get_min(X, Space, Var) :-get_min436,14447 -get_min(X, Space, Var) :-get_min436,14447 -get_max(X, Space, Var) :-get_max444,14680 -get_max(X, Space, Var) :-get_max444,14680 -get_max(X, Space, Var) :-get_max444,14680 -get_med(X, Space, Var) :-get_med452,14913 -get_med(X, Space, Var) :-get_med452,14913 -get_med(X, Space, Var) :-get_med452,14913 -get_val(X, Space, Var) :-get_val460,15146 -get_val(X, Space, Var) :-get_val460,15146 -get_val(X, Space, Var) :-get_val460,15146 -get_size(X, Space, Var) :-get_size468,15379 -get_size(X, Space, Var) :-get_size468,15379 -get_size(X, Space, Var) :-get_size468,15379 -get_width(X, Space, Var) :-get_width476,15616 -get_width(X, Space, Var) :-get_width476,15616 -get_width(X, Space, Var) :-get_width476,15616 -get_regret_min(X, Space, Var) :-get_regret_min484,15857 -get_regret_min(X, Space, Var) :-get_regret_min484,15857 -get_regret_min(X, Space, Var) :-get_regret_min484,15857 -get_regret_max(X, Space, Var) :-get_regret_max492,16118 -get_regret_max(X, Space, Var) :-get_regret_max492,16118 -get_regret_max(X, Space, Var) :-get_regret_max492,16118 -get_glbSize(X, Space, Var) :-get_glbSize500,16379 -get_glbSize(X, Space, Var) :-get_glbSize500,16379 -get_glbSize(X, Space, Var) :-get_glbSize500,16379 -get_lubSize(X, Space, Var) :-get_lubSize506,16558 -get_lubSize(X, Space, Var) :-get_lubSize506,16558 -get_lubSize(X, Space, Var) :-get_lubSize506,16558 -get_unknownSize(X, Space, Var) :-get_unknownSize512,16737 -get_unknownSize(X, Space, Var) :-get_unknownSize512,16737 -get_unknownSize(X, Space, Var) :-get_unknownSize512,16737 -get_cardMin(X, Space, Var) :-get_cardMin518,16928 -get_cardMin(X, Space, Var) :-get_cardMin518,16928 -get_cardMin(X, Space, Var) :-get_cardMin518,16928 -get_cardMax(X, Space, Var) :-get_cardMax524,17107 -get_cardMax(X, Space, Var) :-get_cardMax524,17107 -get_cardMax(X, Space, Var) :-get_cardMax524,17107 -get_lubMin(X, Space, Var) :-get_lubMin530,17286 -get_lubMin(X, Space, Var) :-get_lubMin530,17286 -get_lubMin(X, Space, Var) :-get_lubMin530,17286 -get_lubMax(X, Space, Var) :-get_lubMax536,17462 -get_lubMax(X, Space, Var) :-get_lubMax536,17462 -get_lubMax(X, Space, Var) :-get_lubMax536,17462 -get_glbMin(X, Space, Var) :-get_glbMin542,17638 -get_glbMin(X, Space, Var) :-get_glbMin542,17638 -get_glbMin(X, Space, Var) :-get_glbMin542,17638 -get_glbMax(X, Space, Var) :-get_glbMax548,17814 -get_glbMax(X, Space, Var) :-get_glbMax548,17814 -get_glbMax(X, Space, Var) :-get_glbMax548,17814 -get_glb_ranges(X, Space, Var) :-get_glb_ranges554,17990 -get_glb_ranges(X, Space, Var) :-get_glb_ranges554,17990 -get_glb_ranges(X, Space, Var) :-get_glb_ranges554,17990 -get_lub_ranges(X, Space, Var) :-get_lub_ranges560,18175 -get_lub_ranges(X, Space, Var) :-get_lub_ranges560,18175 -get_lub_ranges(X, Space, Var) :-get_lub_ranges560,18175 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges566,18360 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges566,18360 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges566,18360 -get_glb_values(X, Space, Var) :-get_glb_values572,18557 -get_glb_values(X, Space, Var) :-get_glb_values572,18557 -get_glb_values(X, Space, Var) :-get_glb_values572,18557 -get_lub_values(X, Space, Var) :-get_lub_values578,18742 -get_lub_values(X, Space, Var) :-get_lub_values578,18742 -get_lub_values(X, Space, Var) :-get_lub_values578,18742 -get_unknown_values(X, Space, Var) :-get_unknown_values584,18927 -get_unknown_values(X, Space, Var) :-get_unknown_values584,18927 -get_unknown_values(X, Space, Var) :-get_unknown_values584,18927 -get_ranges(X, Space, Var) :-get_ranges590,19124 -get_ranges(X, Space, Var) :-get_ranges590,19124 -get_ranges(X, Space, Var) :-get_ranges590,19124 -get_values(X, Space, Var) :-get_values596,19297 -get_values(X, Space, Var) :-get_values596,19297 -get_values(X, Space, Var) :-get_values596,19297 -new_disjunctor(X, Space) :-new_disjunctor602,19470 -new_disjunctor(X, Space) :-new_disjunctor602,19470 -new_disjunctor(X, Space) :-new_disjunctor602,19470 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_607,19585 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_607,19585 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor608,19620 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor608,19620 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor608,19620 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor608,19620 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor608,19620 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor609,19674 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor609,19674 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor609,19674 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor609,19674 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor609,19674 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor611,19715 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor611,19715 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor611,19715 -new_clause(X, Disj) :-new_clause614,19818 -new_clause(X, Disj) :-new_clause614,19818 -new_clause(X, Disj) :-new_clause614,19818 -is_Clause_('Clause'(C),C) :-is_Clause_619,19923 -is_Clause_('Clause'(C),C) :-is_Clause_619,19923 -is_Clause_('Clause'(C),C) :-is_Clause_619,19923 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause622,20036 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause622,20036 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause622,20036 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause622,20036 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause622,20036 -is_Clause(X) :- is_Clause(X,_).is_Clause623,20082 -is_Clause(X) :- is_Clause(X,_).is_Clause623,20082 -is_Clause(X) :- is_Clause(X,_).is_Clause623,20082 -is_Clause(X) :- is_Clause(X,_).is_Clause623,20082 -is_Clause(X) :- is_Clause(X,_).is_Clause623,20082 -assert_is_Clause(X,Y) :-assert_is_Clause625,20115 -assert_is_Clause(X,Y) :-assert_is_Clause625,20115 -assert_is_Clause(X,Y) :-assert_is_Clause625,20115 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause628,20206 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause628,20206 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause628,20206 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause630,20269 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause630,20269 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause630,20269 -new_forward(Clause, X, Y) :-new_forward634,20385 -new_forward(Clause, X, Y) :-new_forward634,20385 -new_forward(Clause, X, Y) :-new_forward634,20385 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_655,21026 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_655,21026 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_655,21026 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_655,21026 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_655,21026 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_656,21096 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_656,21096 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_656,21096 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_656,21096 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_656,21096 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_657,21172 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_657,21172 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_657,21172 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_657,21172 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_657,21172 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_658,21236 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_658,21236 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_658,21236 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_658,21236 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_658,21236 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_659,21334 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_659,21334 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_659,21334 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_659,21334 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_659,21334 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_660,21426 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_660,21426 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_660,21426 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_660,21426 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_660,21426 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_661,21512 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_661,21512 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_661,21512 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_661,21512 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_661,21512 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_662,21592 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_662,21592 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_662,21592 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_662,21592 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_662,21592 -keep_(Space, Var) :-keep_664,21667 -keep_(Space, Var) :-keep_664,21667 -keep_(Space, Var) :-keep_664,21667 -keep_list_(Space, []) :- !.keep_list_676,22164 -keep_list_(Space, []) :- !.keep_list_676,22164 -keep_list_(Space, []) :- !.keep_list_676,22164 -keep_list_(Space, [H|T]) :- !,keep_list_677,22192 -keep_list_(Space, [H|T]) :- !,keep_list_677,22192 -keep_list_(Space, [H|T]) :- !,keep_list_677,22192 -keep_list_(_, X) :-keep_list_679,22264 -keep_list_(_, X) :-keep_list_679,22264 -keep_list_(_, X) :-keep_list_679,22264 - -packages/gecode/gecode4.yap,107410 -is_int(X,Y) :- integer(X), Y=X.is_int277,7568 -is_int(X,Y) :- integer(X), Y=X.is_int277,7568 -is_int(X,Y) :- integer(X), Y=X.is_int277,7568 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_bool_(true,true).is_bool_280,7626 -is_bool_(true,true).is_bool_280,7626 -is_bool_(false,false).is_bool_281,7647 -is_bool_(false,false).is_bool_281,7647 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7670 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7670 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7670 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7731 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7731 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7731 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7867 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7867 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7867 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8007 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8007 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8007 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8145 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8145 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8145 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_IntVarArgs_([],[]).is_IntVarArgs_316,8608 -is_IntVarArgs_([],[]).is_IntVarArgs_316,8608 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_BoolVarArgs_([],[]).is_BoolVarArgs_321,8803 -is_BoolVarArgs_([],[]).is_BoolVarArgs_321,8803 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_FloatVarArgs_([],[]).is_FloatVarArgs_326,9006 -is_FloatVarArgs_([],[]).is_FloatVarArgs_326,9006 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatValArgs_([],[]).is_FloatValArgs_331,9217 -is_FloatValArgs_([],[]).is_FloatValArgs_331,9217 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_SetVarArgs_([],[]).is_SetVarArgs_336,9428 -is_SetVarArgs_([],[]).is_SetVarArgs_336,9428 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_IntArgs_([],[]).is_IntArgs_341,9623 -is_IntArgs_([],[]).is_IntArgs_341,9623 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_349,9874 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_349,9874 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_IntSet_('IntSet'(L),L).is_IntSet_354,10085 -is_IntSet_('IntSet'(L),L).is_IntSet_354,10085 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSetArgs_([],[]).is_IntSetArgs_358,10191 -is_IntSetArgs_([],[]).is_IntSetArgs_358,10191 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_TupleSet_('TupleSet'(TS),TS).is_TupleSet_363,10386 -is_TupleSet_('TupleSet'(TS),TS).is_TupleSet_363,10386 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_DFA_('DFA'(TS),TS).is_DFA_367,10506 -is_DFA_('DFA'(TS),TS).is_DFA_367,10506 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -intset(X, I, J) :-intset374,10665 -intset(X, I, J) :-intset374,10665 -intset(X, I, J) :-intset374,10665 -intset(X, L) :-intset378,10732 -intset(X, L) :-intset378,10732 -intset(X, L) :-intset378,10732 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10798 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10798 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10798 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_384,10873 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_384,10873 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10906 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10906 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10906 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -assert_var(X,Y) :-assert_var393,11161 -assert_var(X,Y) :-assert_var393,11161 -assert_var(X,Y) :-assert_var393,11161 -assert_is_int(X,Y) :-assert_is_int395,11232 -assert_is_int(X,Y) :-assert_is_int395,11232 -assert_is_int(X,Y) :-assert_is_int395,11232 -assert_is_float(X,Y) :-assert_is_float397,11311 -assert_is_float(X,Y) :-assert_is_float397,11311 -assert_is_float(X,Y) :-assert_is_float397,11311 -assert_is_Space(X,Y) :-assert_is_Space399,11390 -assert_is_Space(X,Y) :-assert_is_Space399,11390 -assert_is_Space(X,Y) :-assert_is_Space399,11390 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11477 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11477 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11477 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11567 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11567 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11567 -assert_is_DFA(X,Y) :-assert_is_DFA405,11663 -assert_is_DFA(X,Y) :-assert_is_DFA405,11663 -assert_is_DFA(X,Y) :-assert_is_DFA405,11663 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11744 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11744 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11744 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11834 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11834 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11834 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11927 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11927 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11927 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12023 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12023 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12023 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12113 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12113 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12113 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12206 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12206 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12206 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12308 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12308 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12308 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12413 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12413 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12413 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12521 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12521 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12521 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12629 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12629 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12629 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12731 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12731 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12731 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_449,13657 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_449,13657 -is_IntVarBranch_('INT_VAR_RND'(_)).is_IntVarBranch_450,13691 -is_IntVarBranch_('INT_VAR_RND'(_)).is_IntVarBranch_450,13691 -is_IntVarBranch_('INT_VAR_MERIT_MIN'(_)).is_IntVarBranch_451,13727 -is_IntVarBranch_('INT_VAR_MERIT_MIN'(_)).is_IntVarBranch_451,13727 -is_IntVarBranch_('INT_VAR_MERIT_MAX'(_)).is_IntVarBranch_452,13769 -is_IntVarBranch_('INT_VAR_MERIT_MAX'(_)).is_IntVarBranch_452,13769 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_453,13811 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_453,13811 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_454,13851 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_454,13851 -is_IntVarBranch_('INT_VAR_AFC_MIN'(_)).is_IntVarBranch_455,13891 -is_IntVarBranch_('INT_VAR_AFC_MIN'(_)).is_IntVarBranch_455,13891 -is_IntVarBranch_('INT_VAR_AFC_MAX'(_)).is_IntVarBranch_456,13931 -is_IntVarBranch_('INT_VAR_AFC_MAX'(_)).is_IntVarBranch_456,13931 -is_IntVarBranch_('INT_VAR_ACTIVITY_MIN'(_)).is_IntVarBranch_457,13971 -is_IntVarBranch_('INT_VAR_ACTIVITY_MIN'(_)).is_IntVarBranch_457,13971 -is_IntVarBranch_('INT_VAR_ACTIVITY_MAX'(_)).is_IntVarBranch_458,14016 -is_IntVarBranch_('INT_VAR_ACTIVITY_MAX'(_)).is_IntVarBranch_458,14016 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_459,14061 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_459,14061 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_460,14098 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_460,14098 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_461,14135 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_461,14135 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_462,14172 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_462,14172 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_463,14209 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_463,14209 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_464,14247 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_464,14247 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MIN').is_IntVarBranch_465,14285 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MIN').is_IntVarBranch_465,14285 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MAX').is_IntVarBranch_466,14330 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MAX').is_IntVarBranch_466,14330 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MIN'(_)).is_IntVarBranch_467,14375 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MIN'(_)).is_IntVarBranch_467,14375 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MAX'(_)).is_IntVarBranch_468,14420 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MAX'(_)).is_IntVarBranch_468,14420 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MIN'(_)).is_IntVarBranch_469,14465 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MIN'(_)).is_IntVarBranch_469,14465 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MAX'(_)).is_IntVarBranch_470,14515 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MAX'(_)).is_IntVarBranch_470,14515 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_471,14565 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_471,14565 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_472,14609 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_472,14609 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_473,14653 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_473,14653 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_474,14697 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_474,14697 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14742 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14742 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14742 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_482,14894 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_482,14894 -is_SetVarBranch_('SET_VAR_RND'(_)).is_SetVarBranch_483,14928 -is_SetVarBranch_('SET_VAR_RND'(_)).is_SetVarBranch_483,14928 -is_SetVarBranch_('SET_VAR_MERIT_MIN'(_)).is_SetVarBranch_484,14964 -is_SetVarBranch_('SET_VAR_MERIT_MIN'(_)).is_SetVarBranch_484,14964 -is_SetVarBranch_('SET_VAR_MERIT_MAX'(_)).is_SetVarBranch_485,15006 -is_SetVarBranch_('SET_VAR_MERIT_MAX'(_)).is_SetVarBranch_485,15006 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_486,15048 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_486,15048 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_487,15088 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_487,15088 -is_SetVarBranch_('SET_VAR_AFC_MIN'(_)).is_SetVarBranch_488,15128 -is_SetVarBranch_('SET_VAR_AFC_MIN'(_)).is_SetVarBranch_488,15128 -is_SetVarBranch_('SET_VAR_AFC_MAX'(_)).is_SetVarBranch_489,15168 -is_SetVarBranch_('SET_VAR_AFC_MAX'(_)).is_SetVarBranch_489,15168 -is_SetVarBranch_('SET_VAR_ACTIVITY_MIN'(_)).is_SetVarBranch_490,15208 -is_SetVarBranch_('SET_VAR_ACTIVITY_MIN'(_)).is_SetVarBranch_490,15208 -is_SetVarBranch_('SET_VAR_ACTIVITY_MAX'(_)).is_SetVarBranch_491,15253 -is_SetVarBranch_('SET_VAR_ACTIVITY_MAX'(_)).is_SetVarBranch_491,15253 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_492,15298 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_492,15298 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_493,15335 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_493,15335 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_494,15372 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_494,15372 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_495,15409 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_495,15409 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_496,15446 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_496,15446 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_497,15484 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_497,15484 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MIN').is_SetVarBranch_498,15522 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MIN').is_SetVarBranch_498,15522 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MAX').is_SetVarBranch_499,15567 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MAX').is_SetVarBranch_499,15567 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MIN'(_)).is_SetVarBranch_500,15612 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MIN'(_)).is_SetVarBranch_500,15612 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MAX'(_)).is_SetVarBranch_501,15657 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MAX'(_)).is_SetVarBranch_501,15657 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MIN'(_)).is_SetVarBranch_502,15702 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MIN'(_)).is_SetVarBranch_502,15702 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MAX'(_)).is_SetVarBranch_503,15752 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MAX'(_)).is_SetVarBranch_503,15752 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15803 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15803 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15803 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_FloatVarBranch_('FLOAT_VAR_NONE').is_FloatVarBranch_511,15955 -is_FloatVarBranch_('FLOAT_VAR_NONE').is_FloatVarBranch_511,15955 -is_FloatVarBranch_('FLOAT_VAR_RND'(_)).is_FloatVarBranch_512,15993 -is_FloatVarBranch_('FLOAT_VAR_RND'(_)).is_FloatVarBranch_512,15993 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MIN'(_)).is_FloatVarBranch_513,16033 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MIN'(_)).is_FloatVarBranch_513,16033 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MAX'(_)).is_FloatVarBranch_514,16079 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MAX'(_)).is_FloatVarBranch_514,16079 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MIN').is_FloatVarBranch_515,16125 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MIN').is_FloatVarBranch_515,16125 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MAX').is_FloatVarBranch_516,16169 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MAX').is_FloatVarBranch_516,16169 -is_FloatVarBranch_('FLOAT_VAR_AFC_MIN'(_)).is_FloatVarBranch_517,16213 -is_FloatVarBranch_('FLOAT_VAR_AFC_MIN'(_)).is_FloatVarBranch_517,16213 -is_FloatVarBranch_('FLOAT_VAR_AFC_MAX'(_)).is_FloatVarBranch_518,16257 -is_FloatVarBranch_('FLOAT_VAR_AFC_MAX'(_)).is_FloatVarBranch_518,16257 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MIN'(_)).is_FloatVarBranch_519,16301 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MIN'(_)).is_FloatVarBranch_519,16301 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MAX'(_)).is_FloatVarBranch_520,16350 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MAX'(_)).is_FloatVarBranch_520,16350 -is_FloatVarBranch_('FLOAT_VAR_MIN_MIN').is_FloatVarBranch_521,16399 -is_FloatVarBranch_('FLOAT_VAR_MIN_MIN').is_FloatVarBranch_521,16399 -is_FloatVarBranch_('FLOAT_VAR_MIN_MAX').is_FloatVarBranch_522,16440 -is_FloatVarBranch_('FLOAT_VAR_MIN_MAX').is_FloatVarBranch_522,16440 -is_FloatVarBranch_('FLOAT_VAR_MAX_MIN').is_FloatVarBranch_523,16481 -is_FloatVarBranch_('FLOAT_VAR_MAX_MIN').is_FloatVarBranch_523,16481 -is_FloatVarBranch_('FLOAT_VAR_MAX_MAX').is_FloatVarBranch_524,16522 -is_FloatVarBranch_('FLOAT_VAR_MAX_MAX').is_FloatVarBranch_524,16522 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MIN').is_FloatVarBranch_525,16563 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MIN').is_FloatVarBranch_525,16563 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MAX').is_FloatVarBranch_526,16605 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MAX').is_FloatVarBranch_526,16605 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MIN').is_FloatVarBranch_527,16647 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MIN').is_FloatVarBranch_527,16647 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MAX').is_FloatVarBranch_528,16696 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MAX').is_FloatVarBranch_528,16696 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MIN'(_)).is_FloatVarBranch_529,16745 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MIN'(_)).is_FloatVarBranch_529,16745 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MAX'(_)).is_FloatVarBranch_530,16794 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MAX'(_)).is_FloatVarBranch_530,16794 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MIN'(_)).is_FloatVarBranch_531,16843 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MIN'(_)).is_FloatVarBranch_531,16843 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MAX'(_)).is_FloatVarBranch_532,16897 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MAX'(_)).is_FloatVarBranch_532,16897 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16952 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16952 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16952 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_IntValBranch_('INT_VAL_RND'(_)).is_IntValBranch_540,17116 -is_IntValBranch_('INT_VAL_RND'(_)).is_IntValBranch_540,17116 -is_IntValBranch_('INT_VAL'(_,_)).is_IntValBranch_541,17152 -is_IntValBranch_('INT_VAL'(_,_)).is_IntValBranch_541,17152 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_542,17186 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_542,17186 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_543,17219 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_543,17219 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_544,17252 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_544,17252 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_545,17285 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_545,17285 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_546,17324 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_546,17324 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_547,17363 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_547,17363 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_548,17402 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_548,17402 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_549,17441 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_549,17441 -is_IntValBranch_('INT_NEAR_MIN'(_)).is_IntValBranch_550,17477 -is_IntValBranch_('INT_NEAR_MIN'(_)).is_IntValBranch_550,17477 -is_IntValBranch_('INT_NEAR_MAX'(_)).is_IntValBranch_551,17514 -is_IntValBranch_('INT_NEAR_MAX'(_)).is_IntValBranch_551,17514 -is_IntValBranch_('INT_NEAR_INC'(_)).is_IntValBranch_552,17551 -is_IntValBranch_('INT_NEAR_INC'(_)).is_IntValBranch_552,17551 -is_IntValBranch_('INT_NEAR_DEC'(_)).is_IntValBranch_553,17588 -is_IntValBranch_('INT_NEAR_DEC'(_)).is_IntValBranch_553,17588 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_SetValBranch_('SET_VAL_RND_INC'(_)).is_SetValBranch_560,17776 -is_SetValBranch_('SET_VAL_RND_INC'(_)).is_SetValBranch_560,17776 -is_SetValBranch_('SET_VAL_RND_EXC'(_)).is_SetValBranch_561,17816 -is_SetValBranch_('SET_VAL_RND_EXC'(_)).is_SetValBranch_561,17816 -is_SetValBranch_('SET_VAL'(_,_)).is_SetValBranch_562,17856 -is_SetValBranch_('SET_VAL'(_,_)).is_SetValBranch_562,17856 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_563,17890 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_563,17890 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_564,17927 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_564,17927 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_565,17964 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_565,17964 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_566,18001 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_566,18001 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_567,18038 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_567,18038 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_568,18075 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_568,18075 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_FloatValBranch_('FLOAT_VAL'(_,_)).is_FloatValBranch_575,18263 -is_FloatValBranch_('FLOAT_VAL'(_,_)).is_FloatValBranch_575,18263 -is_FloatValBranch_('FLOAT_VAL_SPLIT_RND'(_)).is_FloatValBranch_576,18301 -is_FloatValBranch_('FLOAT_VAL_SPLIT_RND'(_)).is_FloatValBranch_576,18301 -is_FloatValBranch_('FLOAT_VAL_SPLIT_MIN').is_FloatValBranch_577,18347 -is_FloatValBranch_('FLOAT_VAL_SPLIT_MIN').is_FloatValBranch_577,18347 -is_FloatValBranch_('FLOAT_VAL_SLIT_MAX').is_FloatValBranch_578,18390 -is_FloatValBranch_('FLOAT_VAL_SLIT_MAX').is_FloatValBranch_578,18390 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -new_space(Space) :-new_space586,18596 -new_space(Space) :-new_space586,18596 -new_space(Space) :-new_space586,18596 -is_Space_('Space'(X),X) :-is_Space_600,19081 -is_Space_('Space'(X),X) :-is_Space_600,19081 -is_Space_('Space'(X),X) :-is_Space_600,19081 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Reify_('Reify'(X),X).is_Reify_606,19267 -is_Reify_('Reify'(X),X).is_Reify_606,19267 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -new_intvars([], _Space, _Lo, _Hi).new_intvars612,19404 -new_intvars([], _Space, _Lo, _Hi).new_intvars612,19404 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19439 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19439 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19439 -new_intvars([], _Space, _IntSet).new_intvars617,19554 -new_intvars([], _Space, _IntSet).new_intvars617,19554 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19588 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19588 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19588 -new_boolvars([], _Space).new_boolvars622,19703 -new_boolvars([], _Space).new_boolvars622,19703 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19729 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19729 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19729 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5, _X6).new_setvars627,19823 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5, _X6).new_setvars627,19823 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19878 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19878 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19878 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5).new_setvars632,20041 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5).new_setvars632,20041 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20091 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20091 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20091 -new_setvars([], _Space, _X1, _X2, _X3, _X4).new_setvars637,20242 -new_setvars([], _Space, _X1, _X2, _X3, _X4).new_setvars637,20242 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20287 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20287 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20287 -new_setvars([], _Space, _X1, _X2, _X3).new_setvars642,20426 -new_setvars([], _Space, _X1, _X2, _X3).new_setvars642,20426 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20466 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20466 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20466 -new_setvars([], _Space, _X1, _X2).new_setvars647,20593 -new_setvars([], _Space, _X1, _X2).new_setvars647,20593 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20628 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20628 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20628 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20806 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20806 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20806 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21021 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21021 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21021 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21221 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21221 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21221 -new_boolvar(BVar, Space) :- !,new_boolvar678,21439 -new_boolvar(BVar, Space) :- !,new_boolvar678,21439 -new_boolvar(BVar, Space) :- !,new_boolvar678,21439 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22441 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22441 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22441 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23046 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23046 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23046 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23833 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23833 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23833 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24618 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24618 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24618 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25168 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25168 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25168 -new_tupleset( TupleSet, List ) :-new_tupleset797,25383 -new_tupleset( TupleSet, List ) :-new_tupleset797,25383 -new_tupleset( TupleSet, List ) :-new_tupleset797,25383 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25494 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25494 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25494 -minimize(Space,IVar) :-minimize806,25596 -minimize(Space,IVar) :-minimize806,25596 -minimize(Space,IVar) :-minimize806,25596 -maximize(Space,IVar) :-maximize810,25721 -maximize(Space,IVar) :-maximize810,25721 -maximize(Space,IVar) :-maximize810,25721 -minimize(Space,IVar1,IVar2) :-minimize814,25846 -minimize(Space,IVar1,IVar2) :-minimize814,25846 -minimize(Space,IVar1,IVar2) :-minimize814,25846 -maximize(Space,IVar1,IVar2) :-maximize819,26027 -maximize(Space,IVar1,IVar2) :-maximize819,26027 -maximize(Space,IVar1,IVar2) :-maximize819,26027 -reify(Space,BVar,Mode,R) :-reify825,26209 -reify(Space,BVar,Mode,R) :-reify825,26209 -reify(Space,BVar,Mode,R) :-reify825,26209 -gecode_search_options_init(search_options(0,1.0,8,2,'RM_NONE',0,1,0)).gecode_search_options_init833,26412 -gecode_search_options_init(search_options(0,1.0,8,2,'RM_NONE',0,1,0)).gecode_search_options_init833,26412 -gecode_search_options_offset(restart,1).gecode_search_options_offset834,26483 -gecode_search_options_offset(restart,1).gecode_search_options_offset834,26483 -gecode_search_options_offset(threads,2).gecode_search_options_offset835,26524 -gecode_search_options_offset(threads,2).gecode_search_options_offset835,26524 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset836,26565 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset836,26565 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset837,26606 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset837,26606 -gecode_search_options_offset(cutoff, 5).gecode_search_options_offset838,26647 -gecode_search_options_offset(cutoff, 5).gecode_search_options_offset838,26647 -gecode_search_options_offset(nogoods_limit, 6).gecode_search_options_offset839,26688 -gecode_search_options_offset(nogoods_limit, 6).gecode_search_options_offset839,26688 -gecode_search_options_offset(clone, 7).gecode_search_options_offset840,26736 -gecode_search_options_offset(clone, 7).gecode_search_options_offset840,26736 -gecode_search_options_offset(stop, 8). % unimplementedgecode_search_options_offset841,26776 -gecode_search_options_offset(stop, 8). % unimplementedgecode_search_options_offset841,26776 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26832 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26832 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26832 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26926 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26926 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26926 -gecode_search_options_process_alist([], _R).gecode_search_options_process_alist851,27049 -gecode_search_options_process_alist([], _R).gecode_search_options_process_alist851,27049 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27094 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27094 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27094 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27236 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27236 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27236 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27327 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27327 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27327 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27529 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27529 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27529 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27683 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27683 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27683 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27837 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27837 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27837 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28011 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28011 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28011 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28203 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28203 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28203 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28369 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28369 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28369 -search(Space, Solution) :-search886,28465 -search(Space, Solution) :-search886,28465 -search(Space, Solution) :-search886,28465 -search(Space, Solution, Alist) :-search889,28526 -search(Space, Solution, Alist) :-search889,28526 -search(Space, Solution, Alist) :-search889,28526 -get_for_vars([],_Space,[],_F).get_for_vars900,28796 -get_for_vars([],_Space,[],_F).get_for_vars900,28796 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28827 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28827 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28827 -get_assigned(Space, Var) :-get_assigned905,28931 -get_assigned(Space, Var) :-get_assigned905,28931 -get_assigned(Space, Var) :-get_assigned905,28931 -get_min(X, Space, Var) :-get_min917,29294 -get_min(X, Space, Var) :-get_min917,29294 -get_min(X, Space, Var) :-get_min917,29294 -get_max(X, Space, Var) :-get_max927,29593 -get_max(X, Space, Var) :-get_max927,29593 -get_max(X, Space, Var) :-get_max927,29593 -get_med(X, Space, Var) :-get_med937,29892 -get_med(X, Space, Var) :-get_med937,29892 -get_med(X, Space, Var) :-get_med937,29892 -get_val(X, Space, Var) :-get_val947,30191 -get_val(X, Space, Var) :-get_val947,30191 -get_val(X, Space, Var) :-get_val947,30191 -get_size(X, Space, Var) :-get_size957,30490 -get_size(X, Space, Var) :-get_size957,30490 -get_size(X, Space, Var) :-get_size957,30490 -get_width(X, Space, Var) :-get_width965,30727 -get_width(X, Space, Var) :-get_width965,30727 -get_width(X, Space, Var) :-get_width965,30727 -get_regret_min(X, Space, Var) :-get_regret_min973,30968 -get_regret_min(X, Space, Var) :-get_regret_min973,30968 -get_regret_min(X, Space, Var) :-get_regret_min973,30968 -get_regret_max(X, Space, Var) :-get_regret_max981,31229 -get_regret_max(X, Space, Var) :-get_regret_max981,31229 -get_regret_max(X, Space, Var) :-get_regret_max981,31229 -get_glbSize(X, Space, Var) :-get_glbSize989,31490 -get_glbSize(X, Space, Var) :-get_glbSize989,31490 -get_glbSize(X, Space, Var) :-get_glbSize989,31490 -get_lubSize(X, Space, Var) :-get_lubSize995,31669 -get_lubSize(X, Space, Var) :-get_lubSize995,31669 -get_lubSize(X, Space, Var) :-get_lubSize995,31669 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31848 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31848 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31848 -get_cardMin(X, Space, Var) :-get_cardMin1007,32039 -get_cardMin(X, Space, Var) :-get_cardMin1007,32039 -get_cardMin(X, Space, Var) :-get_cardMin1007,32039 -get_cardMax(X, Space, Var) :-get_cardMax1013,32218 -get_cardMax(X, Space, Var) :-get_cardMax1013,32218 -get_cardMax(X, Space, Var) :-get_cardMax1013,32218 -get_lubMin(X, Space, Var) :-get_lubMin1019,32397 -get_lubMin(X, Space, Var) :-get_lubMin1019,32397 -get_lubMin(X, Space, Var) :-get_lubMin1019,32397 -get_lubMax(X, Space, Var) :-get_lubMax1025,32573 -get_lubMax(X, Space, Var) :-get_lubMax1025,32573 -get_lubMax(X, Space, Var) :-get_lubMax1025,32573 -get_glbMin(X, Space, Var) :-get_glbMin1031,32749 -get_glbMin(X, Space, Var) :-get_glbMin1031,32749 -get_glbMin(X, Space, Var) :-get_glbMin1031,32749 -get_glbMax(X, Space, Var) :-get_glbMax1037,32925 -get_glbMax(X, Space, Var) :-get_glbMax1037,32925 -get_glbMax(X, Space, Var) :-get_glbMax1037,32925 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33101 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33101 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33101 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33286 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33286 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33286 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33471 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33471 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33471 -get_glb_values(X, Space, Var) :-get_glb_values1061,33668 -get_glb_values(X, Space, Var) :-get_glb_values1061,33668 -get_glb_values(X, Space, Var) :-get_glb_values1061,33668 -get_lub_values(X, Space, Var) :-get_lub_values1067,33853 -get_lub_values(X, Space, Var) :-get_lub_values1067,33853 -get_lub_values(X, Space, Var) :-get_lub_values1067,33853 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34038 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34038 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34038 -get_ranges(X, Space, Var) :-get_ranges1079,34235 -get_ranges(X, Space, Var) :-get_ranges1079,34235 -get_ranges(X, Space, Var) :-get_ranges1079,34235 -get_values(X, Space, Var) :-get_values1085,34408 -get_values(X, Space, Var) :-get_values1085,34408 -get_values(X, Space, Var) :-get_values1085,34408 -new_disjunctor(X, Space) :-new_disjunctor1091,34581 -new_disjunctor(X, Space) :-new_disjunctor1091,34581 -new_disjunctor(X, Space) :-new_disjunctor1091,34581 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_1096,34696 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_1096,34696 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34826 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34826 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34826 -new_clause(X, Disj) :-new_clause1103,34929 -new_clause(X, Disj) :-new_clause1103,34929 -new_clause(X, Disj) :-new_clause1103,34929 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35034 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35034 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35034 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35226 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35226 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35226 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35317 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35317 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35317 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35380 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35380 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35380 -new_forward(Clause, X, Y) :-new_forward1123,35496 -new_forward(Clause, X, Y) :-new_forward1123,35496 -new_forward(Clause, X, Y) :-new_forward1123,35496 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -keep_(Space, Var) :-keep_1153,36778 -keep_(Space, Var) :-keep_1153,36778 -keep_(Space, Var) :-keep_1153,36778 -keep_list_(_Space, []) :- !.keep_list_1165,37275 -keep_list_(_Space, []) :- !.keep_list_1165,37275 -keep_list_(_Space, []) :- !.keep_list_1165,37275 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37304 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37304 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37304 -keep_list_(_, X) :-keep_list_1168,37376 -keep_list_(_, X) :-keep_list_1168,37376 -keep_list_(_, X) :-keep_list_1168,37376 -is_RestartMode_('RM_NONE').is_RestartMode_1362,48423 -is_RestartMode_('RM_NONE').is_RestartMode_1362,48423 -is_RestartMode_('RM_CONSTANT').is_RestartMode_1363,48451 -is_RestartMode_('RM_CONSTANT').is_RestartMode_1363,48451 -is_RestartMode_('RM_LINEAR').is_RestartMode_1364,48483 -is_RestartMode_('RM_LINEAR').is_RestartMode_1364,48483 -is_RestartMode_('RM_LUBY').is_RestartMode_1365,48513 -is_RestartMode_('RM_LUBY').is_RestartMode_1365,48513 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_1366,48541 -is_RestartMode_('RM_GEOMETRIC').is_RestartMode_1366,48541 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_1368,48575 -is_RestartMode_('RM_NONE','RM_NONE').is_RestartMode_1368,48575 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_1369,48613 -is_RestartMode_('RM_CONSTANT','RM_CONSTANT').is_RestartMode_1369,48613 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_1370,48659 -is_RestartMode_('RM_LINEAR','RM_LINEAR').is_RestartMode_1370,48659 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_1371,48701 -is_RestartMode_('RM_LUBY','RM_LUBY').is_RestartMode_1371,48701 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_1372,48739 -is_RestartMode_('RM_GEOMETRIC','RM_GEOMETRIC').is_RestartMode_1372,48739 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X,Y) :- nonvar(X), is_RestartMode_(X,Y).is_RestartMode1374,48788 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_RestartMode(X) :- is_RestartMode(X,_).is_RestartMode1375,48844 -is_FloatRelType_('FRT_EQ').is_FloatRelType_1377,48887 -is_FloatRelType_('FRT_EQ').is_FloatRelType_1377,48887 -is_FloatRelType_('FRT_NQ').is_FloatRelType_1378,48915 -is_FloatRelType_('FRT_NQ').is_FloatRelType_1378,48915 -is_FloatRelType_('FRT_LQ').is_FloatRelType_1379,48943 -is_FloatRelType_('FRT_LQ').is_FloatRelType_1379,48943 -is_FloatRelType_('FRT_LE').is_FloatRelType_1380,48971 -is_FloatRelType_('FRT_LE').is_FloatRelType_1380,48971 -is_FloatRelType_('FRT_GQ').is_FloatRelType_1381,48999 -is_FloatRelType_('FRT_GQ').is_FloatRelType_1381,48999 -is_FloatRelType_('FRT_GR').is_FloatRelType_1382,49027 -is_FloatRelType_('FRT_GR').is_FloatRelType_1382,49027 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_1384,49056 -is_FloatRelType_('FRT_EQ','FRT_EQ').is_FloatRelType_1384,49056 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_1385,49093 -is_FloatRelType_('FRT_NQ','FRT_NQ').is_FloatRelType_1385,49093 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_1386,49130 -is_FloatRelType_('FRT_LQ','FRT_LQ').is_FloatRelType_1386,49130 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_1387,49167 -is_FloatRelType_('FRT_LE','FRT_LE').is_FloatRelType_1387,49167 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_1388,49204 -is_FloatRelType_('FRT_GQ','FRT_GQ').is_FloatRelType_1388,49204 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_1389,49241 -is_FloatRelType_('FRT_GR','FRT_GR').is_FloatRelType_1389,49241 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X,Y) :- nonvar(X), is_FloatRelType_(X,Y).is_FloatRelType1391,49279 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_FloatRelType(X) :- is_FloatRelType(X,_).is_FloatRelType1392,49337 -is_ReifyMode_('RM_EQV').is_ReifyMode_1394,49382 -is_ReifyMode_('RM_EQV').is_ReifyMode_1394,49382 -is_ReifyMode_('RM_IMP').is_ReifyMode_1395,49407 -is_ReifyMode_('RM_IMP').is_ReifyMode_1395,49407 -is_ReifyMode_('RM_PMI').is_ReifyMode_1396,49432 -is_ReifyMode_('RM_PMI').is_ReifyMode_1396,49432 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_1398,49458 -is_ReifyMode_('RM_EQV','RM_EQV').is_ReifyMode_1398,49458 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_1399,49492 -is_ReifyMode_('RM_IMP','RM_IMP').is_ReifyMode_1399,49492 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_1400,49526 -is_ReifyMode_('RM_PMI','RM_PMI').is_ReifyMode_1400,49526 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X,Y) :- nonvar(X), is_ReifyMode_(X,Y).is_ReifyMode1402,49561 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_ReifyMode(X) :- is_ReifyMode(X,_).is_ReifyMode1403,49613 -is_IntRelType_('IRT_EQ').is_IntRelType_1405,49652 -is_IntRelType_('IRT_EQ').is_IntRelType_1405,49652 -is_IntRelType_('IRT_NQ').is_IntRelType_1406,49678 -is_IntRelType_('IRT_NQ').is_IntRelType_1406,49678 -is_IntRelType_('IRT_LQ').is_IntRelType_1407,49704 -is_IntRelType_('IRT_LQ').is_IntRelType_1407,49704 -is_IntRelType_('IRT_LE').is_IntRelType_1408,49730 -is_IntRelType_('IRT_LE').is_IntRelType_1408,49730 -is_IntRelType_('IRT_GQ').is_IntRelType_1409,49756 -is_IntRelType_('IRT_GQ').is_IntRelType_1409,49756 -is_IntRelType_('IRT_GR').is_IntRelType_1410,49782 -is_IntRelType_('IRT_GR').is_IntRelType_1410,49782 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_1412,49809 -is_IntRelType_('IRT_EQ','IRT_EQ').is_IntRelType_1412,49809 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_1413,49844 -is_IntRelType_('IRT_NQ','IRT_NQ').is_IntRelType_1413,49844 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_1414,49879 -is_IntRelType_('IRT_LQ','IRT_LQ').is_IntRelType_1414,49879 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_1415,49914 -is_IntRelType_('IRT_LE','IRT_LE').is_IntRelType_1415,49914 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_1416,49949 -is_IntRelType_('IRT_GQ','IRT_GQ').is_IntRelType_1416,49949 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_1417,49984 -is_IntRelType_('IRT_GR','IRT_GR').is_IntRelType_1417,49984 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).is_IntRelType1419,50020 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_IntRelType(X) :- is_IntRelType(X,_).is_IntRelType1420,50074 -is_BoolOpType_('BOT_AND').is_BoolOpType_1422,50115 -is_BoolOpType_('BOT_AND').is_BoolOpType_1422,50115 -is_BoolOpType_('BOT_OR').is_BoolOpType_1423,50142 -is_BoolOpType_('BOT_OR').is_BoolOpType_1423,50142 -is_BoolOpType_('BOT_IMP').is_BoolOpType_1424,50168 -is_BoolOpType_('BOT_IMP').is_BoolOpType_1424,50168 -is_BoolOpType_('BOT_EQV').is_BoolOpType_1425,50195 -is_BoolOpType_('BOT_EQV').is_BoolOpType_1425,50195 -is_BoolOpType_('BOT_XOR').is_BoolOpType_1426,50222 -is_BoolOpType_('BOT_XOR').is_BoolOpType_1426,50222 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_1428,50250 -is_BoolOpType_('BOT_AND','BOT_AND').is_BoolOpType_1428,50250 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_1429,50287 -is_BoolOpType_('BOT_OR','BOT_OR').is_BoolOpType_1429,50287 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_1430,50322 -is_BoolOpType_('BOT_IMP','BOT_IMP').is_BoolOpType_1430,50322 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_1431,50359 -is_BoolOpType_('BOT_EQV','BOT_EQV').is_BoolOpType_1431,50359 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_1432,50396 -is_BoolOpType_('BOT_XOR','BOT_XOR').is_BoolOpType_1432,50396 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).is_BoolOpType1434,50434 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_BoolOpType(X) :- is_BoolOpType(X,_).is_BoolOpType1435,50488 -is_IntConLevel_('ICL_VAL').is_IntConLevel_1437,50529 -is_IntConLevel_('ICL_VAL').is_IntConLevel_1437,50529 -is_IntConLevel_('ICL_BND').is_IntConLevel_1438,50557 -is_IntConLevel_('ICL_BND').is_IntConLevel_1438,50557 -is_IntConLevel_('ICL_DOM').is_IntConLevel_1439,50585 -is_IntConLevel_('ICL_DOM').is_IntConLevel_1439,50585 -is_IntConLevel_('ICL_DEF').is_IntConLevel_1440,50613 -is_IntConLevel_('ICL_DEF').is_IntConLevel_1440,50613 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_1442,50642 -is_IntConLevel_('ICL_VAL','ICL_VAL').is_IntConLevel_1442,50642 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_1443,50680 -is_IntConLevel_('ICL_BND','ICL_BND').is_IntConLevel_1443,50680 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_1444,50718 -is_IntConLevel_('ICL_DOM','ICL_DOM').is_IntConLevel_1444,50718 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_1445,50756 -is_IntConLevel_('ICL_DEF','ICL_DEF').is_IntConLevel_1445,50756 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).is_IntConLevel1447,50795 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_IntConLevel(X) :- is_IntConLevel(X,_).is_IntConLevel1448,50851 -is_TaskType_('TT_FIXP').is_TaskType_1450,50894 -is_TaskType_('TT_FIXP').is_TaskType_1450,50894 -is_TaskType_('TT_FIXS').is_TaskType_1451,50919 -is_TaskType_('TT_FIXS').is_TaskType_1451,50919 -is_TaskType_('TT_FIXE').is_TaskType_1452,50944 -is_TaskType_('TT_FIXE').is_TaskType_1452,50944 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_1454,50970 -is_TaskType_('TT_FIXP','TT_FIXP').is_TaskType_1454,50970 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_1455,51005 -is_TaskType_('TT_FIXS','TT_FIXS').is_TaskType_1455,51005 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_1456,51040 -is_TaskType_('TT_FIXE','TT_FIXE').is_TaskType_1456,51040 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).is_TaskType1458,51076 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_TaskType(X) :- is_TaskType(X,_).is_TaskType1459,51126 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_1461,51163 -is_ExtensionalPropKind_('EPK_DEF').is_ExtensionalPropKind_1461,51163 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_1462,51199 -is_ExtensionalPropKind_('EPK_SPEED').is_ExtensionalPropKind_1462,51199 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_1463,51237 -is_ExtensionalPropKind_('EPK_MEMORY').is_ExtensionalPropKind_1463,51237 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_1465,51277 -is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').is_ExtensionalPropKind_1465,51277 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_1466,51323 -is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').is_ExtensionalPropKind_1466,51323 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_1467,51373 -is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').is_ExtensionalPropKind_1467,51373 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).is_ExtensionalPropKind1469,51426 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).is_ExtensionalPropKind1470,51498 -is_SetRelType_('SRT_EQ').is_SetRelType_1472,51557 -is_SetRelType_('SRT_EQ').is_SetRelType_1472,51557 -is_SetRelType_('SRT_NQ').is_SetRelType_1473,51583 -is_SetRelType_('SRT_NQ').is_SetRelType_1473,51583 -is_SetRelType_('SRT_SUB').is_SetRelType_1474,51609 -is_SetRelType_('SRT_SUB').is_SetRelType_1474,51609 -is_SetRelType_('SRT_SUP').is_SetRelType_1475,51636 -is_SetRelType_('SRT_SUP').is_SetRelType_1475,51636 -is_SetRelType_('SRT_DISJ').is_SetRelType_1476,51663 -is_SetRelType_('SRT_DISJ').is_SetRelType_1476,51663 -is_SetRelType_('SRT_CMPL').is_SetRelType_1477,51691 -is_SetRelType_('SRT_CMPL').is_SetRelType_1477,51691 -is_SetRelType_('SRT_LQ').is_SetRelType_1478,51719 -is_SetRelType_('SRT_LQ').is_SetRelType_1478,51719 -is_SetRelType_('SRT_LE').is_SetRelType_1479,51745 -is_SetRelType_('SRT_LE').is_SetRelType_1479,51745 -is_SetRelType_('SRT_GQ').is_SetRelType_1480,51771 -is_SetRelType_('SRT_GQ').is_SetRelType_1480,51771 -is_SetRelType_('SRT_GR').is_SetRelType_1481,51797 -is_SetRelType_('SRT_GR').is_SetRelType_1481,51797 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_1483,51824 -is_SetRelType_('SRT_EQ','SRT_EQ').is_SetRelType_1483,51824 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_1484,51859 -is_SetRelType_('SRT_NQ','SRT_NQ').is_SetRelType_1484,51859 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_1485,51894 -is_SetRelType_('SRT_SUB','SRT_SUB').is_SetRelType_1485,51894 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_1486,51931 -is_SetRelType_('SRT_SUP','SRT_SUP').is_SetRelType_1486,51931 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_1487,51968 -is_SetRelType_('SRT_DISJ','SRT_DISJ').is_SetRelType_1487,51968 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_1488,52007 -is_SetRelType_('SRT_CMPL','SRT_CMPL').is_SetRelType_1488,52007 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_1489,52046 -is_SetRelType_('SRT_LQ','SRT_LQ').is_SetRelType_1489,52046 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_1490,52081 -is_SetRelType_('SRT_LE','SRT_LE').is_SetRelType_1490,52081 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_1491,52116 -is_SetRelType_('SRT_GQ','SRT_GQ').is_SetRelType_1491,52116 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_1492,52151 -is_SetRelType_('SRT_GR','SRT_GR').is_SetRelType_1492,52151 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).is_SetRelType1494,52187 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetRelType(X) :- is_SetRelType(X,_).is_SetRelType1495,52241 -is_SetOpType_('SOT_UNION').is_SetOpType_1497,52282 -is_SetOpType_('SOT_UNION').is_SetOpType_1497,52282 -is_SetOpType_('SOT_DUNION').is_SetOpType_1498,52310 -is_SetOpType_('SOT_DUNION').is_SetOpType_1498,52310 -is_SetOpType_('SOT_INTER').is_SetOpType_1499,52339 -is_SetOpType_('SOT_INTER').is_SetOpType_1499,52339 -is_SetOpType_('SOT_MINUS').is_SetOpType_1500,52367 -is_SetOpType_('SOT_MINUS').is_SetOpType_1500,52367 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_1502,52396 -is_SetOpType_('SOT_UNION','SOT_UNION').is_SetOpType_1502,52396 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_1503,52436 -is_SetOpType_('SOT_DUNION','SOT_DUNION').is_SetOpType_1503,52436 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_1504,52478 -is_SetOpType_('SOT_INTER','SOT_INTER').is_SetOpType_1504,52478 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_1505,52518 -is_SetOpType_('SOT_MINUS','SOT_MINUS').is_SetOpType_1505,52518 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).is_SetOpType1507,52559 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -is_SetOpType(X) :- is_SetOpType(X,_).is_SetOpType1508,52611 -unary(X0,X1,X2,X3,X4,X5) :-unary1510,52650 -unary(X0,X1,X2,X3,X4,X5) :-unary1510,52650 -unary(X0,X1,X2,X3,X4,X5) :-unary1510,52650 -nvalues(X0,X1,X2,X3,X4) :-nvalues1535,54197 -nvalues(X0,X1,X2,X3,X4) :-nvalues1535,54197 -nvalues(X0,X1,X2,X3,X4) :-nvalues1535,54197 -max(X0,X1,X2,X3) :-max1564,55969 -max(X0,X1,X2,X3) :-max1564,55969 -max(X0,X1,X2,X3) :-max1564,55969 -dom(X0,X1,X2,X3,X4,X5) :-dom1593,57603 -dom(X0,X1,X2,X3,X4,X5) :-dom1593,57603 -dom(X0,X1,X2,X3,X4,X5) :-dom1593,57603 -convex(X0,X1,X2) :-convex1618,59076 -convex(X0,X1,X2) :-convex1618,59076 -convex(X0,X1,X2) :-convex1618,59076 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap1627,59465 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap1627,59465 -nooverlap(X0,X1,X2,X3,X4) :-nooverlap1627,59465 -assign(X0,X1,X2) :-assign1640,60176 -assign(X0,X1,X2) :-assign1640,60176 -assign(X0,X1,X2) :-assign1640,60176 -element(X0,X1,X2,X3) :-element1677,62466 -element(X0,X1,X2,X3) :-element1677,62466 -element(X0,X1,X2,X3) :-element1677,62466 -sequence(X0,X1) :-sequence1720,65139 -sequence(X0,X1) :-sequence1720,65139 -sequence(X0,X1) :-sequence1720,65139 -notMax(X0,X1,X2) :-notMax1727,65417 -notMax(X0,X1,X2) :-notMax1727,65417 -notMax(X0,X1,X2) :-notMax1727,65417 -ite(X0,X1,X2,X3,X4) :-ite1736,65807 -ite(X0,X1,X2,X3,X4) :-ite1736,65807 -ite(X0,X1,X2,X3,X4) :-ite1736,65807 -unary(X0,X1,X2) :-unary1749,66467 -unary(X0,X1,X2) :-unary1749,66467 -unary(X0,X1,X2) :-unary1749,66467 -nroot(X0,X1,X2,X3,X4) :-nroot1758,66857 -nroot(X0,X1,X2,X3,X4) :-nroot1758,66857 -nroot(X0,X1,X2,X3,X4) :-nroot1758,66857 -circuit(X0,X1,X2,X3) :-circuit1771,67532 -circuit(X0,X1,X2,X3) :-circuit1771,67532 -circuit(X0,X1,X2,X3) :-circuit1771,67532 -dom(X0,X1,X2,X3,X4) :-dom1788,68433 -dom(X0,X1,X2,X3,X4) :-dom1788,68433 -dom(X0,X1,X2,X3,X4) :-dom1788,68433 -channel(X0,X1,X2,X3) :-channel1851,72509 -channel(X0,X1,X2,X3) :-channel1851,72509 -channel(X0,X1,X2,X3) :-channel1851,72509 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap1874,73801 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap1874,73801 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-nooverlap1874,73801 -element(X0,X1,X2,X3,X4,X5,X6) :-element1895,75249 -element(X0,X1,X2,X3,X4,X5,X6) :-element1895,75249 -element(X0,X1,X2,X3,X4,X5,X6) :-element1895,75249 -max(X0,X1,X2) :-max1962,80169 -max(X0,X1,X2) :-max1962,80169 -max(X0,X1,X2) :-max1962,80169 -unshare(X0,X1) :-unshare1979,80996 -unshare(X0,X1) :-unshare1979,80996 -unshare(X0,X1) :-unshare1979,80996 -path(X0,X1,X2,X3,X4) :-path1988,81371 -path(X0,X1,X2,X3,X4) :-path1988,81371 -path(X0,X1,X2,X3,X4) :-path1988,81371 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch2009,82545 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch2009,82545 -branch(X0,X1,X2,X3,X4,X5,X6) :-branch2009,82545 -mult(X0,X1,X2,X3) :-mult2050,85430 -mult(X0,X1,X2,X3) :-mult2050,85430 -mult(X0,X1,X2,X3) :-mult2050,85430 -clause(X0,X1,X2,X3,X4,X5) :-clause2067,86301 -clause(X0,X1,X2,X3,X4,X5) :-clause2067,86301 -clause(X0,X1,X2,X3,X4,X5) :-clause2067,86301 -precede(X0,X1,X2,X3,X4) :-precede2086,87451 -precede(X0,X1,X2,X3,X4) :-precede2086,87451 -precede(X0,X1,X2,X3,X4) :-precede2086,87451 -distinct(X0,X1) :-distinct2099,88141 -distinct(X0,X1) :-distinct2099,88141 -distinct(X0,X1) :-distinct2099,88141 -member(X0,X1,X2,X3) :-member2106,88419 -member(X0,X1,X2,X3) :-member2106,88419 -member(X0,X1,X2,X3) :-member2106,88419 -mod(X0,X1,X2,X3,X4) :-mod2127,89562 -mod(X0,X1,X2,X3,X4) :-mod2127,89562 -mod(X0,X1,X2,X3,X4) :-mod2127,89562 -cardinality(X0,X1,X2) :-cardinality2140,90226 -cardinality(X0,X1,X2) :-cardinality2140,90226 -cardinality(X0,X1,X2) :-cardinality2140,90226 -atmostOne(X0,X1,X2) :-atmostOne2149,90640 -atmostOne(X0,X1,X2) :-atmostOne2149,90640 -atmostOne(X0,X1,X2) :-atmostOne2149,90640 -channelSorted(X0,X1,X2) :-channelSorted2158,91045 -channelSorted(X0,X1,X2) :-channelSorted2158,91045 -channelSorted(X0,X1,X2) :-channelSorted2158,91045 -extensional(X0,X1,X2,X3,X4) :-extensional2167,91473 -extensional(X0,X1,X2,X3,X4) :-extensional2167,91473 -extensional(X0,X1,X2,X3,X4) :-extensional2167,91473 -linear(X0,X1,X2,X3) :-linear2188,92763 -linear(X0,X1,X2,X3) :-linear2188,92763 -linear(X0,X1,X2,X3) :-linear2188,92763 -circuit(X0,X1) :-circuit2217,94427 -circuit(X0,X1) :-circuit2217,94427 -circuit(X0,X1) :-circuit2217,94427 -rel(X0,X1,X2,X3,X4) :-rel2224,94700 -rel(X0,X1,X2,X3,X4) :-rel2224,94700 -rel(X0,X1,X2,X3,X4) :-rel2224,94700 -min(X0,X1,X2,X3) :-min2357,104624 -min(X0,X1,X2,X3) :-min2357,104624 -min(X0,X1,X2,X3) :-min2357,104624 -cardinality(X0,X1,X2,X3) :-cardinality2386,106258 -cardinality(X0,X1,X2,X3) :-cardinality2386,106258 -cardinality(X0,X1,X2,X3) :-cardinality2386,106258 -count(X0,X1,X2,X3) :-count2403,107176 -count(X0,X1,X2,X3) :-count2403,107176 -count(X0,X1,X2,X3) :-count2403,107176 -sqrt(X0,X1,X2) :-sqrt2426,108461 -sqrt(X0,X1,X2) :-sqrt2426,108461 -sqrt(X0,X1,X2) :-sqrt2426,108461 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives2439,109059 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives2439,109059 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-cumulatives2439,109059 -nvalues(X0,X1,X2,X3) :-nvalues2532,116931 -nvalues(X0,X1,X2,X3) :-nvalues2532,116931 -nvalues(X0,X1,X2,X3) :-nvalues2532,116931 -binpacking(X0,X1,X2,X3) :-binpacking2553,118078 -binpacking(X0,X1,X2,X3) :-binpacking2553,118078 -binpacking(X0,X1,X2,X3) :-binpacking2553,118078 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear2564,118638 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear2564,118638 -linear(X0,X1,X2,X3,X4,X5,X6) :-linear2564,118638 -abs(X0,X1,X2,X3) :-abs2603,121350 -abs(X0,X1,X2,X3) :-abs2603,121350 -abs(X0,X1,X2,X3) :-abs2603,121350 -convex(X0,X1) :-convex2614,121864 -convex(X0,X1) :-convex2614,121864 -convex(X0,X1) :-convex2614,121864 -div(X0,X1,X2,X3) :-div2621,122129 -div(X0,X1,X2,X3) :-div2621,122129 -div(X0,X1,X2,X3) :-div2621,122129 -rel(X0,X1,X2,X3,X4,X5) :-rel2638,122991 -rel(X0,X1,X2,X3,X4,X5) :-rel2638,122991 -rel(X0,X1,X2,X3,X4,X5) :-rel2638,122991 -weights(X0,X1,X2,X3,X4) :-weights2719,128708 -weights(X0,X1,X2,X3,X4) :-weights2719,128708 -weights(X0,X1,X2,X3,X4) :-weights2719,128708 -max(X0,X1,X2,X3,X4) :-max2732,129397 -max(X0,X1,X2,X3,X4) :-max2732,129397 -max(X0,X1,X2,X3,X4) :-max2732,129397 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path2745,130061 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path2745,130061 -path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-path2745,130061 -unary(X0,X1,X2,X3) :-unary2766,131478 -unary(X0,X1,X2,X3) :-unary2766,131478 -unary(X0,X1,X2,X3) :-unary2766,131478 -nroot(X0,X1,X2,X3) :-nroot2789,132772 -nroot(X0,X1,X2,X3) :-nroot2789,132772 -nroot(X0,X1,X2,X3) :-nroot2789,132772 -sorted(X0,X1,X2,X3,X4) :-sorted2806,133644 -sorted(X0,X1,X2,X3,X4) :-sorted2806,133644 -sorted(X0,X1,X2,X3,X4) :-sorted2806,133644 -circuit(X0,X1,X2,X3,X4) :-circuit2819,134341 -circuit(X0,X1,X2,X3,X4) :-circuit2819,134341 -circuit(X0,X1,X2,X3,X4) :-circuit2819,134341 -dom(X0,X1,X2,X3) :-dom2842,135711 -dom(X0,X1,X2,X3) :-dom2842,135711 -dom(X0,X1,X2,X3) :-dom2842,135711 -abs(X0,X1,X2) :-abs2927,141670 -abs(X0,X1,X2) :-abs2927,141670 -abs(X0,X1,X2) :-abs2927,141670 -channel(X0,X1,X2,X3,X4) :-channel2940,142259 -channel(X0,X1,X2,X3,X4) :-channel2940,142259 -channel(X0,X1,X2,X3,X4) :-channel2940,142259 -assign(X0,X1,X2,X3,X4) :-assign2961,143463 -assign(X0,X1,X2,X3,X4) :-assign2961,143463 -assign(X0,X1,X2,X3,X4) :-assign2961,143463 -rel(X0,X1,X2) :-rel2998,145858 -rel(X0,X1,X2) :-rel2998,145858 -rel(X0,X1,X2) :-rel2998,145858 -path(X0,X1,X2,X3) :-path3011,146462 -path(X0,X1,X2,X3) :-path3011,146462 -path(X0,X1,X2,X3) :-path3011,146462 -branch(X0,X1,X2,X3) :-branch3022,146982 -branch(X0,X1,X2,X3) :-branch3022,146982 -branch(X0,X1,X2,X3) :-branch3022,146982 -mult(X0,X1,X2,X3,X4) :-mult3075,150626 -mult(X0,X1,X2,X3,X4) :-mult3075,150626 -mult(X0,X1,X2,X3,X4) :-mult3075,150626 -circuit(X0,X1,X2,X3,X4,X5) :-circuit3088,151297 -circuit(X0,X1,X2,X3,X4,X5) :-circuit3088,151297 -circuit(X0,X1,X2,X3,X4,X5) :-circuit3088,151297 -clause(X0,X1,X2,X3,X4) :-clause3115,153012 -clause(X0,X1,X2,X3,X4) :-clause3115,153012 -clause(X0,X1,X2,X3,X4) :-clause3115,153012 -precede(X0,X1,X2,X3) :-precede3130,153830 -precede(X0,X1,X2,X3) :-precede3130,153830 -precede(X0,X1,X2,X3) :-precede3130,153830 -channel(X0,X1,X2,X3,X4,X5) :-channel3151,154982 -channel(X0,X1,X2,X3,X4,X5) :-channel3151,154982 -channel(X0,X1,X2,X3,X4,X5) :-channel3151,154982 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative3166,155842 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative3166,155842 -cumulative(X0,X1,X2,X3,X4,X5,X6) :-cumulative3166,155842 -distinct(X0,X1,X2) :-distinct3239,161385 -distinct(X0,X1,X2) :-distinct3239,161385 -distinct(X0,X1,X2) :-distinct3239,161385 -member(X0,X1,X2,X3,X4) :-member3252,162021 -member(X0,X1,X2,X3,X4) :-member3252,162021 -member(X0,X1,X2,X3,X4) :-member3252,162021 -mod(X0,X1,X2,X3) :-mod3273,163225 -mod(X0,X1,X2,X3) :-mod3273,163225 -mod(X0,X1,X2,X3) :-mod3273,163225 -sqr(X0,X1,X2) :-sqr3284,163735 -sqr(X0,X1,X2) :-sqr3284,163735 -sqr(X0,X1,X2) :-sqr3284,163735 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence3297,164326 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence3297,164326 -sequence(X0,X1,X2,X3,X4,X5,X6) :-sequence3297,164326 -path(X0,X1,X2,X3,X4,X5,X6) :-path3326,166233 -path(X0,X1,X2,X3,X4,X5,X6) :-path3326,166233 -path(X0,X1,X2,X3,X4,X5,X6) :-path3326,166233 -divmod(X0,X1,X2,X3,X4,X5) :-divmod3357,168290 -divmod(X0,X1,X2,X3,X4,X5) :-divmod3357,168290 -divmod(X0,X1,X2,X3,X4,X5) :-divmod3357,168290 -sorted(X0,X1,X2) :-sorted3372,169141 -sorted(X0,X1,X2) :-sorted3372,169141 -sorted(X0,X1,X2) :-sorted3372,169141 -extensional(X0,X1,X2,X3) :-extensional3381,169539 -extensional(X0,X1,X2,X3) :-extensional3381,169539 -extensional(X0,X1,X2,X3) :-extensional3381,169539 -circuit(X0,X1,X2) :-circuit3406,171026 -circuit(X0,X1,X2) :-circuit3406,171026 -circuit(X0,X1,X2) :-circuit3406,171026 -channel(X0,X1,X2) :-channel3419,171649 -channel(X0,X1,X2) :-channel3419,171649 -channel(X0,X1,X2) :-channel3419,171649 -count(X0,X1,X2,X3,X4) :-count3452,173572 -count(X0,X1,X2,X3,X4) :-count3452,173572 -count(X0,X1,X2,X3,X4) :-count3452,173572 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives3507,177303 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives3507,177303 -cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulatives3507,177303 -binpacking(X0,X1,X2,X3,X4) :-binpacking3584,183458 -binpacking(X0,X1,X2,X3,X4) :-binpacking3584,183458 -binpacking(X0,X1,X2,X3,X4) :-binpacking3584,183458 -extensional(X0,X1,X2) :-extensional3597,184179 -extensional(X0,X1,X2) :-extensional3597,184179 -extensional(X0,X1,X2) :-extensional3597,184179 -linear(X0,X1,X2,X3,X4,X5) :-linear3614,185059 -linear(X0,X1,X2,X3,X4,X5) :-linear3614,185059 -linear(X0,X1,X2,X3,X4,X5) :-linear3614,185059 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap3699,191305 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap3699,191305 -nooverlap(X0,X1,X2,X3,X4,X5,X6) :-nooverlap3699,191305 -div(X0,X1,X2,X3,X4) :-div3726,193139 -div(X0,X1,X2,X3,X4) :-div3726,193139 -div(X0,X1,X2,X3,X4) :-div3726,193139 -sqr(X0,X1,X2,X3) :-sqr3739,193803 -sqr(X0,X1,X2,X3) :-sqr3739,193803 -sqr(X0,X1,X2,X3) :-sqr3739,193803 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path3750,194318 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path3750,194318 -path(X0,X1,X2,X3,X4,X5,X6,X7) :-path3750,194318 -unary(X0,X1,X2,X3,X4) :-unary3785,196770 -unary(X0,X1,X2,X3,X4) :-unary3785,196770 -unary(X0,X1,X2,X3,X4) :-unary3785,196770 -sorted(X0,X1,X2,X3) :-sorted3816,198670 -sorted(X0,X1,X2,X3) :-sorted3816,198670 -sorted(X0,X1,X2,X3) :-sorted3816,198670 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element3829,199332 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element3829,199332 -element(X0,X1,X2,X3,X4,X5,X6,X7) :-element3829,199332 -assign(X0,X1,X2,X3) :-assign3880,203094 -assign(X0,X1,X2,X3) :-assign3880,203094 -assign(X0,X1,X2,X3) :-assign3880,203094 -element(X0,X1,X2,X3,X4) :-element3933,206724 -element(X0,X1,X2,X3,X4) :-element3933,206724 -element(X0,X1,X2,X3,X4) :-element3933,206724 -sequence(X0,X1,X2) :-sequence4004,211664 -sequence(X0,X1,X2) :-sequence4004,211664 -sequence(X0,X1,X2) :-sequence4004,211664 -branch(X0,X1,X2,X3,X4) :-branch4013,212068 -branch(X0,X1,X2,X3,X4) :-branch4013,212068 -branch(X0,X1,X2,X3,X4) :-branch4013,212068 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit4056,214909 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit4056,214909 -circuit(X0,X1,X2,X3,X4,X5,X6) :-circuit4056,214909 -pow(X0,X1,X2,X3) :-pow4073,215954 -pow(X0,X1,X2,X3) :-pow4073,215954 -pow(X0,X1,X2,X3) :-pow4073,215954 -precede(X0,X1,X2) :-precede4090,216808 -precede(X0,X1,X2) :-precede4090,216808 -precede(X0,X1,X2) :-precede4090,216808 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative4103,217433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative4103,217433 -cumulative(X0,X1,X2,X3,X4,X5) :-cumulative4103,217433 -distinct(X0,X1,X2,X3) :-distinct4160,221501 -distinct(X0,X1,X2,X3) :-distinct4160,221501 -distinct(X0,X1,X2,X3) :-distinct4160,221501 -min(X0,X1,X2) :-min4171,222051 -min(X0,X1,X2) :-min4171,222051 -min(X0,X1,X2) :-min4171,222051 -sqrt(X0,X1,X2,X3) :-sqrt4188,222878 -sqrt(X0,X1,X2,X3) :-sqrt4188,222878 -sqrt(X0,X1,X2,X3) :-sqrt4188,222878 -sequence(X0,X1,X2,X3,X4,X5) :-sequence4199,223399 -sequence(X0,X1,X2,X3,X4,X5) :-sequence4199,223399 -sequence(X0,X1,X2,X3,X4,X5) :-sequence4199,223399 -unshare(X0,X1,X2) :-unshare4224,224933 -unshare(X0,X1,X2) :-unshare4224,224933 -unshare(X0,X1,X2) :-unshare4224,224933 -path(X0,X1,X2,X3,X4,X5) :-path4237,225567 -path(X0,X1,X2,X3,X4,X5) :-path4237,225567 -path(X0,X1,X2,X3,X4,X5) :-path4237,225567 -divmod(X0,X1,X2,X3,X4) :-divmod4262,227069 -divmod(X0,X1,X2,X3,X4) :-divmod4262,227069 -divmod(X0,X1,X2,X3,X4) :-divmod4262,227069 -branch(X0,X1,X2,X3,X4,X5) :-branch4275,227749 -branch(X0,X1,X2,X3,X4,X5) :-branch4275,227749 -branch(X0,X1,X2,X3,X4,X5) :-branch4275,227749 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap4332,231854 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap4332,231854 -nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-nooverlap4332,231854 -cumulative(X0,X1,X2,X3,X4) :-cumulative4353,233349 -cumulative(X0,X1,X2,X3,X4) :-cumulative4353,233349 -cumulative(X0,X1,X2,X3,X4) :-cumulative4353,233349 -member(X0,X1,X2) :-member4374,234588 -member(X0,X1,X2) :-member4374,234588 -member(X0,X1,X2) :-member4374,234588 -count(X0,X1,X2,X3,X4,X5) :-count4387,235206 -count(X0,X1,X2,X3,X4,X5) :-count4387,235206 -count(X0,X1,X2,X3,X4,X5) :-count4387,235206 -pow(X0,X1,X2,X3,X4) :-pow4442,239046 -pow(X0,X1,X2,X3,X4) :-pow4442,239046 -pow(X0,X1,X2,X3,X4) :-pow4442,239046 -notMin(X0,X1,X2) :-notMin4455,239707 -notMin(X0,X1,X2) :-notMin4455,239707 -notMin(X0,X1,X2) :-notMin4455,239707 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative4464,240097 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative4464,240097 -cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-cumulative4464,240097 -branch(X0,X1,X2) :-branch4521,244443 -branch(X0,X1,X2) :-branch4521,244443 -branch(X0,X1,X2) :-branch4521,244443 -dom(X0,X1,X2) :-dom4542,245560 -dom(X0,X1,X2) :-dom4542,245560 -dom(X0,X1,X2) :-dom4542,245560 -linear(X0,X1,X2,X3,X4) :-linear4591,248583 -linear(X0,X1,X2,X3,X4) :-linear4591,248583 -linear(X0,X1,X2,X3,X4) :-linear4591,248583 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap4668,253912 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap4668,253912 -nooverlap(X0,X1,X2,X3,X4,X5) :-nooverlap4668,253912 -element(X0,X1,X2,X3,X4,X5) :-element4685,254944 -element(X0,X1,X2,X3,X4,X5) :-element4685,254944 -element(X0,X1,X2,X3,X4,X5) :-element4685,254944 -rel(X0,X1,X2,X3) :-rel4724,257572 -rel(X0,X1,X2,X3) :-rel4724,257572 -rel(X0,X1,X2,X3) :-rel4724,257572 -min(X0,X1,X2,X3,X4) :-min4821,264543 -min(X0,X1,X2,X3,X4) :-min4821,264543 -min(X0,X1,X2,X3,X4) :-min4821,264543 -count(X0,X1,X2) :-count4834,265207 -count(X0,X1,X2) :-count4834,265207 -count(X0,X1,X2) :-count4834,265207 -ite(X0,X1,X2,X3,X4,X5) :-ite4845,265708 -ite(X0,X1,X2,X3,X4,X5) :-ite4845,265708 -ite(X0,X1,X2,X3,X4,X5) :-ite4845,265708 - -packages/gecode/gecode4_yap.cc,18399 -namespace generic_gecodegeneric_gecode32,1073 - template struct DynArrayDynArray35,1122 - template struct DynArraygeneric_gecode::DynArray35,1122 - T* _array;_array37,1166 - T* _array;generic_gecode::DynArray::_array37,1166 - DynArray(int n): _array(new T[n]) {}DynArray38,1181 - DynArray(int n): _array(new T[n]) {}generic_gecode::DynArray::DynArray38,1181 - ~DynArray() { delete[] _array; }~DynArray39,1222 - ~DynArray() { delete[] _array; }generic_gecode::DynArray::~DynArray39,1222 - T& operator[](int i) { return _array[i]; }operator []40,1259 - T& operator[](int i) { return _array[i]; }generic_gecode::DynArray::operator []40,1259 -#define DYNARRAY(DYNARRAY42,1311 - struct SpecArraySpecArray48,1419 - struct SpecArraygeneric_gecode::SpecArray48,1419 - int (*_array)[2];_array50,1442 - int (*_array)[2];generic_gecode::SpecArray::_array50,1442 - SpecArray(int n): _array((int (*)[2]) new int[n*2]) {}SpecArray51,1464 - SpecArray(int n): _array((int (*)[2]) new int[n*2]) {}generic_gecode::SpecArray::SpecArray51,1464 - ~SpecArray() { delete[] _array; }~SpecArray52,1523 - ~SpecArray() { delete[] _array; }generic_gecode::SpecArray::~SpecArray52,1523 - int& operator()(int i,int j) { return _array[i][j]; }operator ()53,1561 - int& operator()(int i,int j) { return _array[i][j]; }generic_gecode::SpecArray::operator ()53,1561 -#define SPECARRAY(SPECARRAY55,1624 -#define SPECARRAYELEM(SPECARRAYELEM56,1662 -#define SPECARRAYDEREF(SPECARRAYDEREF57,1698 -#define SPECARRAY(SPECARRAY59,1739 -#define SPECARRAYELEM(SPECARRAYELEM60,1774 -#define SPECARRAYDEREF(SPECARRAYDEREF61,1811 - static YAP_opaque_tag_t gecode_space_tag;gecode_space_tag69,1889 - static YAP_opaque_handler_t gecode_space_handler;gecode_space_handler70,1933 - static YAP_Bool gecode_space_fail_handler(void* p)gecode_space_fail_handler72,1986 - gecode_space_write_handlergecode_space_write_handler79,2114 - static YAP_Term gecode_term_from_space(GenericSpace* s)gecode_term_from_space86,2267 - static YAP_Bool gecode_new_space(void)gecode_new_space96,2533 - gecode_Space_from_term(YAP_Term t)gecode_Space_from_term105,2733 - struct YapDisjunctorYapDisjunctor110,2843 - GenericSpace* home;home112,2870 - GenericSpace* home;YapDisjunctor::home112,2870 - Disjunctor disj;disj113,2894 - Disjunctor disj;YapDisjunctor::disj113,2894 - YapDisjunctor(GenericSpace* home_)YapDisjunctor114,2915 - YapDisjunctor(GenericSpace* home_)YapDisjunctor::YapDisjunctor114,2915 - static YAP_opaque_tag_t gecode_disjunctor_tag;gecode_disjunctor_tag118,2997 - static YAP_opaque_handler_t gecode_disjunctor_handler;gecode_disjunctor_handler119,3046 - static YAP_opaque_tag_t gecode_disjunctor_clause_tag;gecode_disjunctor_clause_tag120,3103 - static YAP_opaque_handler_t gecode_disjunctor_clause_handler;gecode_disjunctor_clause_handler121,3159 - gecode_Disjunctor_from_term(YAP_Term t)gecode_Disjunctor_from_term124,3252 - gecode_YapDisjunctor_from_term(YAP_Term t)gecode_YapDisjunctor_from_term130,3399 - gecode_Clause_from_term(YAP_Term t)gecode_Clause_from_term136,3536 - gecode_Space_from_term(YAP_Term t)gecode_Space_from_term142,3665 - gecode_FloatAssign_from_term(YAP_Term t)gecode_FloatAssign_from_term154,3957 - gecode_IntAssign_from_term(YAP_Term t)gecode_IntAssign_from_term160,4093 - gecode_SetAssign_from_term(YAP_Term t)gecode_SetAssign_from_term166,4225 - gecode_TupleSet_from_term(YAP_Term t)gecode_TupleSet_from_term172,4356 - gecode_DFA_from_term(YAP_Term t)gecode_DFA_from_term178,4480 - gecode_FloatNum_from_term(YAP_Term t)gecode_FloatNum_from_term184,4598 - static YAP_Term gecode_SET_VAR_NONE;gecode_SET_VAR_NONE189,4690 - static YAP_Term gecode_SET_VAR_DEGREE_MIN;gecode_SET_VAR_DEGREE_MIN190,4729 - static YAP_Term gecode_SET_VAR_DEGREE_MAX;gecode_SET_VAR_DEGREE_MAX191,4774 - static YAP_Term gecode_SET_VAR_MIN_MIN;gecode_SET_VAR_MIN_MIN192,4819 - static YAP_Term gecode_SET_VAR_MIN_MAX;gecode_SET_VAR_MIN_MAX193,4861 - static YAP_Term gecode_SET_VAR_MAX_MIN;gecode_SET_VAR_MAX_MIN194,4903 - static YAP_Term gecode_SET_VAR_MAX_MAX;gecode_SET_VAR_MAX_MAX195,4945 - static YAP_Term gecode_SET_VAR_SIZE_MIN;gecode_SET_VAR_SIZE_MIN196,4987 - static YAP_Term gecode_SET_VAR_SIZE_MAX;gecode_SET_VAR_SIZE_MAX197,5030 - static YAP_Term gecode_SET_VAR_DEGREE_SIZE_MIN;gecode_SET_VAR_DEGREE_SIZE_MIN198,5073 - static YAP_Term gecode_SET_VAR_DEGREE_SIZE_MAX;gecode_SET_VAR_DEGREE_SIZE_MAX199,5123 - gecode_SetVarBranch_from_term(YAP_Term t)gecode_SetVarBranch_from_term202,5203 - static YAP_Term gecode_SET_VAL_MIN_INC;gecode_SET_VAL_MIN_INC232,6123 - static YAP_Term gecode_SET_VAL_MIN_EXC;gecode_SET_VAL_MIN_EXC233,6165 - static YAP_Term gecode_SET_VAL_MED_INC;gecode_SET_VAL_MED_INC234,6207 - static YAP_Term gecode_SET_VAL_MED_EXC;gecode_SET_VAL_MED_EXC235,6249 - static YAP_Term gecode_SET_VAL_MAX_INC;gecode_SET_VAL_MAX_INC236,6291 - static YAP_Term gecode_SET_VAL_MAX_EXC;gecode_SET_VAL_MAX_EXC237,6333 - gecode_SetValBranch_from_term(YAP_Term t)gecode_SetValBranch_from_term240,6405 - gecode_SetBranchFilter_from_term(YAP_Term t)gecode_SetBranchFilter_from_term260,6980 - static YAP_Term gecode_INT_VAR_NONE;gecode_INT_VAR_NONE265,7097 - static YAP_Term gecode_INT_VAR_DEGREE_MIN;gecode_INT_VAR_DEGREE_MIN266,7136 - static YAP_Term gecode_INT_VAR_DEGREE_MAX;gecode_INT_VAR_DEGREE_MAX267,7181 - static YAP_Term gecode_INT_VAR_MIN_MIN;gecode_INT_VAR_MIN_MIN268,7226 - static YAP_Term gecode_INT_VAR_MIN_MAX;gecode_INT_VAR_MIN_MAX269,7268 - static YAP_Term gecode_INT_VAR_MAX_MIN;gecode_INT_VAR_MAX_MIN270,7310 - static YAP_Term gecode_INT_VAR_MAX_MAX;gecode_INT_VAR_MAX_MAX271,7352 - static YAP_Term gecode_INT_VAR_SIZE_MIN;gecode_INT_VAR_SIZE_MIN272,7394 - static YAP_Term gecode_INT_VAR_SIZE_MAX;gecode_INT_VAR_SIZE_MAX273,7437 - static YAP_Term gecode_INT_VAR_DEGREE_SIZE_MIN;gecode_INT_VAR_DEGREE_SIZE_MIN274,7480 - static YAP_Term gecode_INT_VAR_DEGREE_SIZE_MAX;gecode_INT_VAR_DEGREE_SIZE_MAX275,7530 - static YAP_Term gecode_INT_VAR_REGRET_MIN_MIN;gecode_INT_VAR_REGRET_MIN_MIN276,7580 - static YAP_Term gecode_INT_VAR_REGRET_MIN_MAX;gecode_INT_VAR_REGRET_MIN_MAX277,7629 - static YAP_Term gecode_INT_VAR_REGRET_MAX_MIN;gecode_INT_VAR_REGRET_MAX_MIN278,7678 - static YAP_Term gecode_INT_VAR_REGRET_MAX_MAX;gecode_INT_VAR_REGRET_MAX_MAX279,7727 - gecode_IntVarBranch_from_term(YAP_Term t)gecode_IntVarBranch_from_term282,7806 - static YAP_Term gecode_FLOAT_VAR_NONE;gecode_FLOAT_VAR_NONE319,9049 - static YAP_Term gecode_FLOAT_VAR_DEGREE_MIN;gecode_FLOAT_VAR_DEGREE_MIN320,9090 - static YAP_Term gecode_FLOAT_VAR_DEGREE_MAX;gecode_FLOAT_VAR_DEGREE_MAX321,9137 - static YAP_Term gecode_FLOAT_VAR_MIN_MIN;gecode_FLOAT_VAR_MIN_MIN322,9184 - static YAP_Term gecode_FLOAT_VAR_MIN_MAX;gecode_FLOAT_VAR_MIN_MAX323,9228 - static YAP_Term gecode_FLOAT_VAR_MAX_MIN;gecode_FLOAT_VAR_MAX_MIN324,9272 - static YAP_Term gecode_FLOAT_VAR_MAX_MAX;gecode_FLOAT_VAR_MAX_MAX325,9316 - static YAP_Term gecode_FLOAT_VAR_SIZE_MIN;gecode_FLOAT_VAR_SIZE_MIN326,9360 - static YAP_Term gecode_FLOAT_VAR_SIZE_MAX;gecode_FLOAT_VAR_SIZE_MAX327,9405 - static YAP_Term gecode_FLOAT_VAR_DEGREE_SIZE_MIN;gecode_FLOAT_VAR_DEGREE_SIZE_MIN328,9450 - static YAP_Term gecode_FLOAT_VAR_DEGREE_SIZE_MAX;gecode_FLOAT_VAR_DEGREE_SIZE_MAX329,9502 - gecode_FloatVarBranch_from_term(YAP_Term t)gecode_FloatVarBranch_from_term332,9588 - static YAP_Term gecode_INT_VAL_MIN;gecode_INT_VAL_MIN361,10555 - static YAP_Term gecode_INT_VAL_MED;gecode_INT_VAL_MED362,10593 - static YAP_Term gecode_INT_VAL_MAX;gecode_INT_VAL_MAX363,10631 - static YAP_Term gecode_INT_VAL_SPLIT_MIN;gecode_INT_VAL_SPLIT_MIN364,10669 - static YAP_Term gecode_INT_VAL_SPLIT_MAX;gecode_INT_VAL_SPLIT_MAX365,10713 - static YAP_Term gecode_INT_VAL_RANGE_MIN;gecode_INT_VAL_RANGE_MIN366,10757 - static YAP_Term gecode_INT_VAL_RANGE_MAX;gecode_INT_VAL_RANGE_MAX367,10801 - static YAP_Term gecode_INT_VALUES_MIN;gecode_INT_VALUES_MIN368,10845 - static YAP_Term gecode_INT_VALUES_MAX;gecode_INT_VALUES_MAX369,10886 - gecode_IntValBranch_from_term(YAP_Term t)gecode_IntValBranch_from_term372,10957 - static YAP_Term gecode_FLOAT_VAL_SPLIT_MIN;gecode_FLOAT_VAL_SPLIT_MIN397,11688 - static YAP_Term gecode_FLOAT_VAL_SPLIT_MAX;gecode_FLOAT_VAL_SPLIT_MAX398,11734 - gecode_FloatValBranch_from_term(YAP_Term t)gecode_FloatValBranch_from_term401,11812 - gecode_FloatVal_from_term(YAP_Term t)gecode_FloatVal_from_term413,12132 - gecode_Symmetries_from_term(YAP_Term t)gecode_Symmetries_from_term419,12263 - gecode_IntBranchFilter_from_term(YAP_Term t)gecode_IntBranchFilter_from_term425,12403 - gecode_BoolBranchFilter_from_term(YAP_Term t)gecode_BoolBranchFilter_from_term431,12554 - gecode_FloatBranchFilter_from_term(YAP_Term t)gecode_FloatBranchFilter_from_term437,12708 - gecode_SetVarValPrint_from_term(YAP_Term t)gecode_SetVarValPrint_from_term443,12861 - gecode_IntVarValPrint_from_term(YAP_Term t)gecode_IntVarValPrint_from_term449,13008 - gecode_BoolVarValPrint_from_term(YAP_Term t)gecode_BoolVarValPrint_from_term455,13156 - gecode_FloatVarValPrint_from_term(YAP_Term t)gecode_FloatVarValPrint_from_term461,13307 - static YAP_opaque_tag_t gecode_engine_tag;gecode_engine_tag466,13426 - static YAP_opaque_handler_t gecode_engine_handler;gecode_engine_handler467,13471 - static YAP_Bool gecode_new_engine(void)gecode_new_engine471,13589 - gecode_engine_from_term(YAP_Term t)gecode_engine_from_term555,16469 - static YAP_Bool gecode_engine_fail_handler(void* p)gecode_engine_fail_handler560,16576 - gecode_engine_write_handlergecode_engine_write_handler567,16706 - static YAP_Bool gecode_engine_search(void)gecode_engine_search574,16860 - static YAP_Bool gecode_new_disjunctor(void)gecode_new_disjunctor587,17176 - gecode_disjunctor_write_handlergecode_disjunctor_write_handler598,17534 - static YAP_Bool gecode_new_clause(void)gecode_new_clause605,17696 - gecode_clause_write_handlergecode_clause_write_handler616,18065 - static YAP_Bool gecode_clause_intvar_forward(void)gecode_clause_intvar_forward628,18487 - static YAP_Bool gecode_clause_boolvar_forward(void)gecode_clause_boolvar_forward639,18894 - static YAP_Bool gecode_clause_setvar_forward(void)gecode_clause_setvar_forward650,19306 - static YAP_Bool gecode_new_intvar_from_bounds(void)gecode_new_intvar_from_bounds662,19720 - static YAP_Bool gecode_new_floatvar_from_bounds(void)gecode_new_floatvar_from_bounds673,20056 - gecode_list_length(YAP_Term l)gecode_list_length685,20417 - gecode_IntSet_from_term(YAP_Term specs)gecode_IntSet_from_term697,20583 - static YAP_Bool gecode_new_intvar_from_intset(void)gecode_new_intvar_from_intset713,21006 - static YAP_Bool gecode_new_boolvar(void)gecode_new_boolvar723,21321 - static YAP_Bool gecode_new_setvar_1(void)gecode_new_setvar_1731,21540 - static YAP_Bool gecode_new_setvar_2(void)gecode_new_setvar_2745,22063 - static YAP_Bool gecode_new_setvar_3(void)gecode_new_setvar_3758,22536 - static YAP_Bool gecode_new_setvar_4(void)gecode_new_setvar_4770,22959 - static YAP_Bool gecode_new_setvar_5(void)gecode_new_setvar_5783,23442 - static YAP_Bool gecode_new_setvar_6(void)gecode_new_setvar_6795,23874 - static YAP_Bool gecode_new_setvar_7(void)gecode_new_setvar_7806,24255 - static YAP_Bool gecode_new_setvar_8(void)gecode_new_setvar_8819,24738 - static YAP_Bool gecode_new_setvar_9(void)gecode_new_setvar_9831,25170 - static YAP_Bool gecode_new_setvar_10(void)gecode_new_setvar_10842,25551 - static YAP_Bool gecode_new_setvar_11(void)gecode_new_setvar_11854,25993 - static YAP_Bool gecode_new_setvar_12(void)gecode_new_setvar_12865,26384 - static YAP_Bool gecode_space_minimize(void)gecode_space_minimize875,26724 - static YAP_Bool gecode_space_maximize(void)gecode_space_maximize883,26917 - static YAP_Bool gecode_space_minimize_ratio(void)gecode_space_minimize_ratio891,27110 - static YAP_Bool gecode_space_maximize_ratio(void)gecode_space_maximize_ratio900,27348 - gecode_IntVar_from_term(GenericSpace* space, YAP_Term x)gecode_IntVar_from_term910,27602 - gecode_BoolVar_from_term(GenericSpace* space, YAP_Term x)gecode_BoolVar_from_term917,27748 - gecode_SetVar_from_term(GenericSpace* space, YAP_Term x)gecode_SetVar_from_term924,27894 - gecode_IntVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_IntVarArgs_from_term931,28043 - gecode_BoolVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_BoolVarArgs_from_term947,28375 - gecode_FloatVar_from_term(GenericSpace* space, YAP_Term x)gecode_FloatVar_from_term963,28706 - gecode_FloatVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_FloatVarArgs_from_term970,28859 - gecode_FloatValArgs_from_term(YAP_Term l)gecode_FloatValArgs_from_term986,29196 - gecode_SetVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_SetVarArgs_from_term1002,29519 - gecode_IntArgs_from_term(YAP_Term l)gecode_IntArgs_from_term1018,29847 - gecode_IntSetArgs_from_term(YAP_Term l)gecode_IntSetArgs_from_term1034,30134 - gecode_TaskTypeArgs_from_term(YAP_Term l)gecode_TaskTypeArgs_from_term1052,30494 - static YAP_Term gecode_TRUE;gecode_TRUE1067,30786 - static YAP_Term gecode_FALSE;gecode_FALSE1068,30817 - gecode_bool_from_term(YAP_Term X)gecode_bool_from_term1071,30864 - static YAP_Bool gecode_space_use_keep_index(void)gecode_space_use_keep_index1078,31042 - static YAP_Bool gecode_intvar_keep(void)gecode_intvar_keep1087,31305 - static YAP_Bool gecode_boolvar_keep(void)gecode_boolvar_keep1098,31624 - static YAP_Bool gecode_setvar_keep(void)gecode_setvar_keep1109,31944 - static YAP_Bool gecode_intvar_assigned(void)gecode_intvar_assigned1121,32284 - static YAP_Bool gecode_intvar_min(void)gecode_intvar_min1128,32499 - static YAP_Bool gecode_intvar_max(void)gecode_intvar_max1136,32753 - static YAP_Bool gecode_intvar_med(void)gecode_intvar_med1144,33007 - static YAP_Bool gecode_intvar_val(void)gecode_intvar_val1152,33261 - static YAP_Bool gecode_intvar_size(void)gecode_intvar_size1160,33515 - static YAP_Bool gecode_intvar_width(void)gecode_intvar_width1168,33771 - static YAP_Bool gecode_intvar_regret_min(void)gecode_intvar_regret_min1176,34029 - static YAP_Bool gecode_intvar_regret_max(void)gecode_intvar_regret_max1184,34297 - static YAP_Functor gecode_COMMA2;gecode_COMMA21192,34565 - static YAP_Bool gecode_intvar_ranges(void)gecode_intvar_ranges1194,34602 - static YAP_Bool gecode_intvar_values(void)gecode_intvar_values1217,35308 - static YAP_Bool gecode_boolvar_assigned(void)gecode_boolvar_assigned1235,35812 - static YAP_Bool gecode_boolvar_min(void)gecode_boolvar_min1242,36030 - static YAP_Bool gecode_boolvar_max(void)gecode_boolvar_max1250,36287 - static YAP_Bool gecode_boolvar_med(void)gecode_boolvar_med1258,36544 - static YAP_Bool gecode_boolvar_val(void)gecode_boolvar_val1266,36801 - static YAP_Bool gecode_boolvar_size(void)gecode_boolvar_size1274,37058 - static YAP_Bool gecode_boolvar_width(void)gecode_boolvar_width1282,37317 - static YAP_Bool gecode_boolvar_regret_min(void)gecode_boolvar_regret_min1290,37578 - static YAP_Bool gecode_boolvar_regret_max(void)gecode_boolvar_regret_max1298,37849 - static YAP_Bool gecode_setvar_assigned(void)gecode_setvar_assigned1307,38141 - static YAP_Bool gecode_setvar_glbSize(void)gecode_setvar_glbSize1314,38356 - static YAP_Bool gecode_setvar_lubSize(void)gecode_setvar_lubSize1322,38618 - static YAP_Bool gecode_setvar_unknownSize(void)gecode_setvar_unknownSize1330,38880 - static YAP_Bool gecode_setvar_cardMin(void)gecode_setvar_cardMin1338,39150 - static YAP_Bool gecode_setvar_cardMax(void)gecode_setvar_cardMax1346,39412 - static YAP_Bool gecode_setvar_lubMin(void)gecode_setvar_lubMin1354,39674 - static YAP_Bool gecode_setvar_lubMax(void)gecode_setvar_lubMax1362,39934 - static YAP_Bool gecode_setvar_glbMin(void)gecode_setvar_glbMin1370,40194 - static YAP_Bool gecode_setvar_glbMax(void)gecode_setvar_glbMax1378,40454 - static YAP_Bool gecode_setvar_glb_ranges(void)gecode_setvar_glb_ranges1386,40714 - static YAP_Bool gecode_setvar_lub_ranges(void)gecode_setvar_lub_ranges1409,41430 - static YAP_Bool gecode_setvar_unknown_ranges(void)gecode_setvar_unknown_ranges1432,42146 - static YAP_Bool gecode_setvar_glb_values(void)gecode_setvar_glb_values1455,42874 - static YAP_Bool gecode_setvar_lub_values(void)gecode_setvar_lub_values1469,43353 - static YAP_Bool gecode_setvar_unknown_values(void)gecode_setvar_unknown_values1483,43832 - static YAP_Bool gecode_floatvar_assigned(void)gecode_floatvar_assigned1498,44346 - static YAP_Bool gecode_floatvar_min(void)gecode_floatvar_min1505,44567 - static YAP_Bool gecode_floatvar_max(void)gecode_floatvar_max1513,44829 - static YAP_Bool gecode_floatvar_med(void)gecode_floatvar_med1521,45091 - static YAP_Bool gecode_floatvar_size(void)gecode_floatvar_size1529,45353 - gecode_Reify_from_term(YAP_Term t)gecode_Reify_from_term1538,45639 -#define gecode_int_from_term gecode_int_from_term1543,45736 - static YAP_opaque_tag_t gecode_reify_tag;gecode_reify_tag1548,45882 - static YAP_opaque_handler_t gecode_reify_handler;gecode_reify_handler1549,45926 - gecode_reify_write_handlergecode_reify_write_handler1552,45997 - static YAP_Term gecode_term_from_reify(Reify r)gecode_term_from_reify1559,46149 - static YAP_Bool gecode_new_reify(void)gecode_new_reify1569,46383 - static YAP_opaque_tag_t gecode_tupleset_tag;gecode_tupleset_tag1580,46726 - static YAP_opaque_handler_t gecode_tupleset_handler;gecode_tupleset_handler1581,46773 - static YAP_Bool gecode_tupleset_fail_handler(void* p)gecode_tupleset_fail_handler1583,46829 - gecode_tupleset_write_handlergecode_tupleset_write_handler1589,46929 - static YAP_Bool gecode_new_tupleset(void)gecode_new_tupleset1596,47087 - static YAP_opaque_tag_t gecode_dfa_tag;gecode_dfa_tag1628,47985 - static YAP_opaque_handler_t gecode_dfa_handler;gecode_dfa_handler1629,48027 - static YAP_Bool gecode_dfa_fail_handler(void* p)gecode_dfa_fail_handler1631,48078 - gecode_dfa_write_handlergecode_dfa_write_handler1637,48173 - static YAP_Bool gecode_new_dfa(void)gecode_new_dfa1644,48321 - void gecode_init(void)gecode_init1684,49550 - -packages/gecode/gecode4_yap_hand_written.yap,72152 -is_int(X,Y) :- integer(X), Y=X.is_int277,7568 -is_int(X,Y) :- integer(X), Y=X.is_int277,7568 -is_int(X,Y) :- integer(X), Y=X.is_int277,7568 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_int(X) :- integer(X).is_int278,7600 -is_bool_(true,true).is_bool_280,7626 -is_bool_(true,true).is_bool_280,7626 -is_bool_(false,false).is_bool_281,7647 -is_bool_(false,false).is_bool_281,7647 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7670 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7670 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7670 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_bool(X) :- is_bool(X,_).is_bool283,7702 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7731 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7731 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7731 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7867 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7867 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7867 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8007 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8007 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8007 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8145 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8145 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8145 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8282 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8328 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8376 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8426 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8473 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8505 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8539 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8575 -is_IntVarArgs_([],[]).is_IntVarArgs_316,8608 -is_IntVarArgs_([],[]).is_IntVarArgs_316,8608 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8631 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8702 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8756 -is_BoolVarArgs_([],[]).is_BoolVarArgs_321,8803 -is_BoolVarArgs_([],[]).is_BoolVarArgs_321,8803 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8827 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8901 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8957 -is_FloatVarArgs_([],[]).is_FloatVarArgs_326,9006 -is_FloatVarArgs_([],[]).is_FloatVarArgs_326,9006 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9031 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9108 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9166 -is_FloatValArgs_([],[]).is_FloatValArgs_331,9217 -is_FloatValArgs_([],[]).is_FloatValArgs_331,9217 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9242 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9319 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9377 -is_SetVarArgs_([],[]).is_SetVarArgs_336,9428 -is_SetVarArgs_([],[]).is_SetVarArgs_336,9428 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9451 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9522 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9576 -is_IntArgs_([],[]).is_IntArgs_341,9623 -is_IntArgs_([],[]).is_IntArgs_341,9623 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9643 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9702 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9750 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9791 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9830 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_349,9874 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_349,9874 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9899 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9976 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10034 -is_IntSet_('IntSet'(L),L).is_IntSet_354,10085 -is_IntSet_('IntSet'(L),L).is_IntSet_354,10085 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10112 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10158 -is_IntSetArgs_([],[]).is_IntSetArgs_358,10191 -is_IntSetArgs_([],[]).is_IntSetArgs_358,10191 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10214 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10285 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10339 -is_TupleSet_('TupleSet'(TS),TS).is_TupleSet_363,10386 -is_TupleSet_('TupleSet'(TS),TS).is_TupleSet_363,10386 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10419 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10469 -is_DFA_('DFA'(TS),TS).is_DFA_367,10506 -is_DFA_('DFA'(TS),TS).is_DFA_367,10506 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10529 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10569 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10596 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -new_intset(X,L) :- intset(X,L).new_intset372,10632 -intset(X, I, J) :-intset374,10665 -intset(X, I, J) :-intset374,10665 -intset(X, I, J) :-intset374,10665 -intset(X, L) :-intset378,10732 -intset(X, L) :-intset378,10732 -intset(X, L) :-intset378,10732 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10798 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10798 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10798 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_384,10873 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_384,10873 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10906 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10906 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10906 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11005 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11061 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11120 -assert_var(X,Y) :-assert_var393,11161 -assert_var(X,Y) :-assert_var393,11161 -assert_var(X,Y) :-assert_var393,11161 -assert_is_int(X,Y) :-assert_is_int395,11232 -assert_is_int(X,Y) :-assert_is_int395,11232 -assert_is_int(X,Y) :-assert_is_int395,11232 -assert_is_float(X,Y) :-assert_is_float397,11311 -assert_is_float(X,Y) :-assert_is_float397,11311 -assert_is_float(X,Y) :-assert_is_float397,11311 -assert_is_Space(X,Y) :-assert_is_Space399,11390 -assert_is_Space(X,Y) :-assert_is_Space399,11390 -assert_is_Space(X,Y) :-assert_is_Space399,11390 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11477 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11477 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11477 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11567 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11567 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11567 -assert_is_DFA(X,Y) :-assert_is_DFA405,11663 -assert_is_DFA(X,Y) :-assert_is_DFA405,11663 -assert_is_DFA(X,Y) :-assert_is_DFA405,11663 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11744 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11744 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11744 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11834 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11834 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11834 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11927 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11927 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11927 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12023 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12023 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12023 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12113 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12113 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12113 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12206 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12206 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12206 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12308 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12308 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12308 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12413 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12413 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12413 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12521 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12521 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12521 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12629 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12629 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12629 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12731 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12731 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12731 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_var(X) :- assert_var(X,_).assert_var430,12831 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12865 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12905 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12949 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,12993 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13039 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13085 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13133 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13183 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13229 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13277 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13331 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13387 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13445 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13503 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_449,13657 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_449,13657 -is_IntVarBranch_('INT_VAR_RND'(_)).is_IntVarBranch_450,13691 -is_IntVarBranch_('INT_VAR_RND'(_)).is_IntVarBranch_450,13691 -is_IntVarBranch_('INT_VAR_MERIT_MIN'(_)).is_IntVarBranch_451,13727 -is_IntVarBranch_('INT_VAR_MERIT_MIN'(_)).is_IntVarBranch_451,13727 -is_IntVarBranch_('INT_VAR_MERIT_MAX'(_)).is_IntVarBranch_452,13769 -is_IntVarBranch_('INT_VAR_MERIT_MAX'(_)).is_IntVarBranch_452,13769 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_453,13811 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_453,13811 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_454,13851 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_454,13851 -is_IntVarBranch_('INT_VAR_AFC_MIN'(_)).is_IntVarBranch_455,13891 -is_IntVarBranch_('INT_VAR_AFC_MIN'(_)).is_IntVarBranch_455,13891 -is_IntVarBranch_('INT_VAR_AFC_MAX'(_)).is_IntVarBranch_456,13931 -is_IntVarBranch_('INT_VAR_AFC_MAX'(_)).is_IntVarBranch_456,13931 -is_IntVarBranch_('INT_VAR_ACTIVITY_MIN'(_)).is_IntVarBranch_457,13971 -is_IntVarBranch_('INT_VAR_ACTIVITY_MIN'(_)).is_IntVarBranch_457,13971 -is_IntVarBranch_('INT_VAR_ACTIVITY_MAX'(_)).is_IntVarBranch_458,14016 -is_IntVarBranch_('INT_VAR_ACTIVITY_MAX'(_)).is_IntVarBranch_458,14016 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_459,14061 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_459,14061 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_460,14098 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_460,14098 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_461,14135 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_461,14135 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_462,14172 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_462,14172 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_463,14209 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_463,14209 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_464,14247 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_464,14247 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MIN').is_IntVarBranch_465,14285 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MIN').is_IntVarBranch_465,14285 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MAX').is_IntVarBranch_466,14330 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MAX').is_IntVarBranch_466,14330 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MIN'(_)).is_IntVarBranch_467,14375 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MIN'(_)).is_IntVarBranch_467,14375 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MAX'(_)).is_IntVarBranch_468,14420 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MAX'(_)).is_IntVarBranch_468,14420 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MIN'(_)).is_IntVarBranch_469,14465 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MIN'(_)).is_IntVarBranch_469,14465 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MAX'(_)).is_IntVarBranch_470,14515 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MAX'(_)).is_IntVarBranch_470,14515 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_471,14565 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_471,14565 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_472,14609 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_472,14609 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_473,14653 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_473,14653 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_474,14697 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_474,14697 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14742 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14742 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14742 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14791 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14849 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_482,14894 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_482,14894 -is_SetVarBranch_('SET_VAR_RND'(_)).is_SetVarBranch_483,14928 -is_SetVarBranch_('SET_VAR_RND'(_)).is_SetVarBranch_483,14928 -is_SetVarBranch_('SET_VAR_MERIT_MIN'(_)).is_SetVarBranch_484,14964 -is_SetVarBranch_('SET_VAR_MERIT_MIN'(_)).is_SetVarBranch_484,14964 -is_SetVarBranch_('SET_VAR_MERIT_MAX'(_)).is_SetVarBranch_485,15006 -is_SetVarBranch_('SET_VAR_MERIT_MAX'(_)).is_SetVarBranch_485,15006 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_486,15048 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_486,15048 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_487,15088 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_487,15088 -is_SetVarBranch_('SET_VAR_AFC_MIN'(_)).is_SetVarBranch_488,15128 -is_SetVarBranch_('SET_VAR_AFC_MIN'(_)).is_SetVarBranch_488,15128 -is_SetVarBranch_('SET_VAR_AFC_MAX'(_)).is_SetVarBranch_489,15168 -is_SetVarBranch_('SET_VAR_AFC_MAX'(_)).is_SetVarBranch_489,15168 -is_SetVarBranch_('SET_VAR_ACTIVITY_MIN'(_)).is_SetVarBranch_490,15208 -is_SetVarBranch_('SET_VAR_ACTIVITY_MIN'(_)).is_SetVarBranch_490,15208 -is_SetVarBranch_('SET_VAR_ACTIVITY_MAX'(_)).is_SetVarBranch_491,15253 -is_SetVarBranch_('SET_VAR_ACTIVITY_MAX'(_)).is_SetVarBranch_491,15253 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_492,15298 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_492,15298 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_493,15335 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_493,15335 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_494,15372 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_494,15372 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_495,15409 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_495,15409 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_496,15446 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_496,15446 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_497,15484 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_497,15484 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MIN').is_SetVarBranch_498,15522 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MIN').is_SetVarBranch_498,15522 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MAX').is_SetVarBranch_499,15567 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MAX').is_SetVarBranch_499,15567 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MIN'(_)).is_SetVarBranch_500,15612 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MIN'(_)).is_SetVarBranch_500,15612 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MAX'(_)).is_SetVarBranch_501,15657 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MAX'(_)).is_SetVarBranch_501,15657 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MIN'(_)).is_SetVarBranch_502,15702 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MIN'(_)).is_SetVarBranch_502,15702 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MAX'(_)).is_SetVarBranch_503,15752 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MAX'(_)).is_SetVarBranch_503,15752 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15803 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15803 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15803 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15852 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15910 -is_FloatVarBranch_('FLOAT_VAR_NONE').is_FloatVarBranch_511,15955 -is_FloatVarBranch_('FLOAT_VAR_NONE').is_FloatVarBranch_511,15955 -is_FloatVarBranch_('FLOAT_VAR_RND'(_)).is_FloatVarBranch_512,15993 -is_FloatVarBranch_('FLOAT_VAR_RND'(_)).is_FloatVarBranch_512,15993 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MIN'(_)).is_FloatVarBranch_513,16033 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MIN'(_)).is_FloatVarBranch_513,16033 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MAX'(_)).is_FloatVarBranch_514,16079 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MAX'(_)).is_FloatVarBranch_514,16079 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MIN').is_FloatVarBranch_515,16125 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MIN').is_FloatVarBranch_515,16125 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MAX').is_FloatVarBranch_516,16169 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MAX').is_FloatVarBranch_516,16169 -is_FloatVarBranch_('FLOAT_VAR_AFC_MIN'(_)).is_FloatVarBranch_517,16213 -is_FloatVarBranch_('FLOAT_VAR_AFC_MIN'(_)).is_FloatVarBranch_517,16213 -is_FloatVarBranch_('FLOAT_VAR_AFC_MAX'(_)).is_FloatVarBranch_518,16257 -is_FloatVarBranch_('FLOAT_VAR_AFC_MAX'(_)).is_FloatVarBranch_518,16257 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MIN'(_)).is_FloatVarBranch_519,16301 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MIN'(_)).is_FloatVarBranch_519,16301 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MAX'(_)).is_FloatVarBranch_520,16350 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MAX'(_)).is_FloatVarBranch_520,16350 -is_FloatVarBranch_('FLOAT_VAR_MIN_MIN').is_FloatVarBranch_521,16399 -is_FloatVarBranch_('FLOAT_VAR_MIN_MIN').is_FloatVarBranch_521,16399 -is_FloatVarBranch_('FLOAT_VAR_MIN_MAX').is_FloatVarBranch_522,16440 -is_FloatVarBranch_('FLOAT_VAR_MIN_MAX').is_FloatVarBranch_522,16440 -is_FloatVarBranch_('FLOAT_VAR_MAX_MIN').is_FloatVarBranch_523,16481 -is_FloatVarBranch_('FLOAT_VAR_MAX_MIN').is_FloatVarBranch_523,16481 -is_FloatVarBranch_('FLOAT_VAR_MAX_MAX').is_FloatVarBranch_524,16522 -is_FloatVarBranch_('FLOAT_VAR_MAX_MAX').is_FloatVarBranch_524,16522 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MIN').is_FloatVarBranch_525,16563 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MIN').is_FloatVarBranch_525,16563 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MAX').is_FloatVarBranch_526,16605 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MAX').is_FloatVarBranch_526,16605 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MIN').is_FloatVarBranch_527,16647 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MIN').is_FloatVarBranch_527,16647 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MAX').is_FloatVarBranch_528,16696 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MAX').is_FloatVarBranch_528,16696 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MIN'(_)).is_FloatVarBranch_529,16745 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MIN'(_)).is_FloatVarBranch_529,16745 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MAX'(_)).is_FloatVarBranch_530,16794 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MAX'(_)).is_FloatVarBranch_530,16794 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MIN'(_)).is_FloatVarBranch_531,16843 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MIN'(_)).is_FloatVarBranch_531,16843 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MAX'(_)).is_FloatVarBranch_532,16897 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MAX'(_)).is_FloatVarBranch_532,16897 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16952 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16952 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16952 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17005 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17067 -is_IntValBranch_('INT_VAL_RND'(_)).is_IntValBranch_540,17116 -is_IntValBranch_('INT_VAL_RND'(_)).is_IntValBranch_540,17116 -is_IntValBranch_('INT_VAL'(_,_)).is_IntValBranch_541,17152 -is_IntValBranch_('INT_VAL'(_,_)).is_IntValBranch_541,17152 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_542,17186 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_542,17186 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_543,17219 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_543,17219 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_544,17252 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_544,17252 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_545,17285 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_545,17285 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_546,17324 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_546,17324 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_547,17363 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_547,17363 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_548,17402 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_548,17402 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_549,17441 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_549,17441 -is_IntValBranch_('INT_NEAR_MIN'(_)).is_IntValBranch_550,17477 -is_IntValBranch_('INT_NEAR_MIN'(_)).is_IntValBranch_550,17477 -is_IntValBranch_('INT_NEAR_MAX'(_)).is_IntValBranch_551,17514 -is_IntValBranch_('INT_NEAR_MAX'(_)).is_IntValBranch_551,17514 -is_IntValBranch_('INT_NEAR_INC'(_)).is_IntValBranch_552,17551 -is_IntValBranch_('INT_NEAR_INC'(_)).is_IntValBranch_552,17551 -is_IntValBranch_('INT_NEAR_DEC'(_)).is_IntValBranch_553,17588 -is_IntValBranch_('INT_NEAR_DEC'(_)).is_IntValBranch_553,17588 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17626 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17673 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17731 -is_SetValBranch_('SET_VAL_RND_INC'(_)).is_SetValBranch_560,17776 -is_SetValBranch_('SET_VAL_RND_INC'(_)).is_SetValBranch_560,17776 -is_SetValBranch_('SET_VAL_RND_EXC'(_)).is_SetValBranch_561,17816 -is_SetValBranch_('SET_VAL_RND_EXC'(_)).is_SetValBranch_561,17816 -is_SetValBranch_('SET_VAL'(_,_)).is_SetValBranch_562,17856 -is_SetValBranch_('SET_VAL'(_,_)).is_SetValBranch_562,17856 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_563,17890 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_563,17890 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_564,17927 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_564,17927 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_565,17964 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_565,17964 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_566,18001 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_566,18001 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_567,18038 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_567,18038 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_568,18075 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_568,18075 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18113 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18160 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18218 -is_FloatValBranch_('FLOAT_VAL'(_,_)).is_FloatValBranch_575,18263 -is_FloatValBranch_('FLOAT_VAL'(_,_)).is_FloatValBranch_575,18263 -is_FloatValBranch_('FLOAT_VAL_SPLIT_RND'(_)).is_FloatValBranch_576,18301 -is_FloatValBranch_('FLOAT_VAL_SPLIT_RND'(_)).is_FloatValBranch_576,18301 -is_FloatValBranch_('FLOAT_VAL_SPLIT_MIN').is_FloatValBranch_577,18347 -is_FloatValBranch_('FLOAT_VAL_SPLIT_MIN').is_FloatValBranch_577,18347 -is_FloatValBranch_('FLOAT_VAL_SLIT_MAX').is_FloatValBranch_578,18390 -is_FloatValBranch_('FLOAT_VAL_SLIT_MAX').is_FloatValBranch_578,18390 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18433 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18484 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18546 -new_space(Space) :-new_space586,18596 -new_space(Space) :-new_space586,18596 -new_space(Space) :-new_space586,18596 -is_Space_('Space'(X),X) :-is_Space_600,19081 -is_Space_('Space'(X),X) :-is_Space_600,19081 -is_Space_('Space'(X),X) :-is_Space_600,19081 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19192 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Space(X) :- is_Space(X,_).is_Space604,19236 -is_Reify_('Reify'(X),X).is_Reify_606,19267 -is_Reify_('Reify'(X),X).is_Reify_606,19267 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19292 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19336 -new_intvars([], _Space, _Lo, _Hi).new_intvars612,19404 -new_intvars([], _Space, _Lo, _Hi).new_intvars612,19404 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19439 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19439 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19439 -new_intvars([], _Space, _IntSet).new_intvars617,19554 -new_intvars([], _Space, _IntSet).new_intvars617,19554 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19588 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19588 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19588 -new_boolvars([], _Space).new_boolvars622,19703 -new_boolvars([], _Space).new_boolvars622,19703 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19729 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19729 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19729 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5, _X6).new_setvars627,19823 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5, _X6).new_setvars627,19823 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19878 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19878 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19878 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5).new_setvars632,20041 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5).new_setvars632,20041 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20091 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20091 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20091 -new_setvars([], _Space, _X1, _X2, _X3, _X4).new_setvars637,20242 -new_setvars([], _Space, _X1, _X2, _X3, _X4).new_setvars637,20242 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20287 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20287 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20287 -new_setvars([], _Space, _X1, _X2, _X3).new_setvars642,20426 -new_setvars([], _Space, _X1, _X2, _X3).new_setvars642,20426 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20466 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20466 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20466 -new_setvars([], _Space, _X1, _X2).new_setvars647,20593 -new_setvars([], _Space, _X1, _X2).new_setvars647,20593 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20628 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20628 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20628 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -assert_integer(X) :- assert_is_int(X).assert_integer654,20766 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20806 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20806 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20806 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21021 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21021 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21021 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21221 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21221 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21221 -new_boolvar(BVar, Space) :- !,new_boolvar678,21439 -new_boolvar(BVar, Space) :- !,new_boolvar678,21439 -new_boolvar(BVar, Space) :- !,new_boolvar678,21439 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22441 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22441 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22441 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23046 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23046 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23046 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23833 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23833 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23833 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24618 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24618 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24618 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25168 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25168 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25168 -new_tupleset( TupleSet, List ) :-new_tupleset797,25383 -new_tupleset( TupleSet, List ) :-new_tupleset797,25383 -new_tupleset( TupleSet, List ) :-new_tupleset797,25383 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25494 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25494 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25494 -minimize(Space,IVar) :-minimize806,25596 -minimize(Space,IVar) :-minimize806,25596 -minimize(Space,IVar) :-minimize806,25596 -maximize(Space,IVar) :-maximize810,25721 -maximize(Space,IVar) :-maximize810,25721 -maximize(Space,IVar) :-maximize810,25721 -minimize(Space,IVar1,IVar2) :-minimize814,25846 -minimize(Space,IVar1,IVar2) :-minimize814,25846 -minimize(Space,IVar1,IVar2) :-minimize814,25846 -maximize(Space,IVar1,IVar2) :-maximize819,26027 -maximize(Space,IVar1,IVar2) :-maximize819,26027 -maximize(Space,IVar1,IVar2) :-maximize819,26027 -reify(Space,BVar,Mode,R) :-reify825,26209 -reify(Space,BVar,Mode,R) :-reify825,26209 -reify(Space,BVar,Mode,R) :-reify825,26209 -gecode_search_options_init(search_options(0,1.0,8,2,'RM_NONE',0,1,0)).gecode_search_options_init833,26412 -gecode_search_options_init(search_options(0,1.0,8,2,'RM_NONE',0,1,0)).gecode_search_options_init833,26412 -gecode_search_options_offset(restart,1).gecode_search_options_offset834,26483 -gecode_search_options_offset(restart,1).gecode_search_options_offset834,26483 -gecode_search_options_offset(threads,2).gecode_search_options_offset835,26524 -gecode_search_options_offset(threads,2).gecode_search_options_offset835,26524 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset836,26565 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset836,26565 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset837,26606 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset837,26606 -gecode_search_options_offset(cutoff, 5).gecode_search_options_offset838,26647 -gecode_search_options_offset(cutoff, 5).gecode_search_options_offset838,26647 -gecode_search_options_offset(nogoods_limit, 6).gecode_search_options_offset839,26688 -gecode_search_options_offset(nogoods_limit, 6).gecode_search_options_offset839,26688 -gecode_search_options_offset(clone, 7).gecode_search_options_offset840,26736 -gecode_search_options_offset(clone, 7).gecode_search_options_offset840,26736 -gecode_search_options_offset(stop, 8). % unimplementedgecode_search_options_offset841,26776 -gecode_search_options_offset(stop, 8). % unimplementedgecode_search_options_offset841,26776 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26832 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26832 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26832 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26926 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26926 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26926 -gecode_search_options_process_alist([], _R).gecode_search_options_process_alist851,27049 -gecode_search_options_process_alist([], _R).gecode_search_options_process_alist851,27049 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27094 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27094 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27094 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27236 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27236 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27236 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27327 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27327 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27327 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27529 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27529 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27529 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27683 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27683 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27683 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27837 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27837 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27837 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28011 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28011 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28011 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28203 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28203 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28203 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28369 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28369 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28369 -search(Space, Solution) :-search886,28465 -search(Space, Solution) :-search886,28465 -search(Space, Solution) :-search886,28465 -search(Space, Solution, Alist) :-search889,28526 -search(Space, Solution, Alist) :-search889,28526 -search(Space, Solution, Alist) :-search889,28526 -get_for_vars([],_Space,[],_F).get_for_vars900,28796 -get_for_vars([],_Space,[],_F).get_for_vars900,28796 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28827 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28827 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28827 -get_assigned(Space, Var) :-get_assigned905,28931 -get_assigned(Space, Var) :-get_assigned905,28931 -get_assigned(Space, Var) :-get_assigned905,28931 -get_min(X, Space, Var) :-get_min917,29294 -get_min(X, Space, Var) :-get_min917,29294 -get_min(X, Space, Var) :-get_min917,29294 -get_max(X, Space, Var) :-get_max927,29593 -get_max(X, Space, Var) :-get_max927,29593 -get_max(X, Space, Var) :-get_max927,29593 -get_med(X, Space, Var) :-get_med937,29892 -get_med(X, Space, Var) :-get_med937,29892 -get_med(X, Space, Var) :-get_med937,29892 -get_val(X, Space, Var) :-get_val947,30191 -get_val(X, Space, Var) :-get_val947,30191 -get_val(X, Space, Var) :-get_val947,30191 -get_size(X, Space, Var) :-get_size957,30490 -get_size(X, Space, Var) :-get_size957,30490 -get_size(X, Space, Var) :-get_size957,30490 -get_width(X, Space, Var) :-get_width965,30727 -get_width(X, Space, Var) :-get_width965,30727 -get_width(X, Space, Var) :-get_width965,30727 -get_regret_min(X, Space, Var) :-get_regret_min973,30968 -get_regret_min(X, Space, Var) :-get_regret_min973,30968 -get_regret_min(X, Space, Var) :-get_regret_min973,30968 -get_regret_max(X, Space, Var) :-get_regret_max981,31229 -get_regret_max(X, Space, Var) :-get_regret_max981,31229 -get_regret_max(X, Space, Var) :-get_regret_max981,31229 -get_glbSize(X, Space, Var) :-get_glbSize989,31490 -get_glbSize(X, Space, Var) :-get_glbSize989,31490 -get_glbSize(X, Space, Var) :-get_glbSize989,31490 -get_lubSize(X, Space, Var) :-get_lubSize995,31669 -get_lubSize(X, Space, Var) :-get_lubSize995,31669 -get_lubSize(X, Space, Var) :-get_lubSize995,31669 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31848 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31848 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31848 -get_cardMin(X, Space, Var) :-get_cardMin1007,32039 -get_cardMin(X, Space, Var) :-get_cardMin1007,32039 -get_cardMin(X, Space, Var) :-get_cardMin1007,32039 -get_cardMax(X, Space, Var) :-get_cardMax1013,32218 -get_cardMax(X, Space, Var) :-get_cardMax1013,32218 -get_cardMax(X, Space, Var) :-get_cardMax1013,32218 -get_lubMin(X, Space, Var) :-get_lubMin1019,32397 -get_lubMin(X, Space, Var) :-get_lubMin1019,32397 -get_lubMin(X, Space, Var) :-get_lubMin1019,32397 -get_lubMax(X, Space, Var) :-get_lubMax1025,32573 -get_lubMax(X, Space, Var) :-get_lubMax1025,32573 -get_lubMax(X, Space, Var) :-get_lubMax1025,32573 -get_glbMin(X, Space, Var) :-get_glbMin1031,32749 -get_glbMin(X, Space, Var) :-get_glbMin1031,32749 -get_glbMin(X, Space, Var) :-get_glbMin1031,32749 -get_glbMax(X, Space, Var) :-get_glbMax1037,32925 -get_glbMax(X, Space, Var) :-get_glbMax1037,32925 -get_glbMax(X, Space, Var) :-get_glbMax1037,32925 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33101 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33101 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33101 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33286 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33286 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33286 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33471 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33471 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33471 -get_glb_values(X, Space, Var) :-get_glb_values1061,33668 -get_glb_values(X, Space, Var) :-get_glb_values1061,33668 -get_glb_values(X, Space, Var) :-get_glb_values1061,33668 -get_lub_values(X, Space, Var) :-get_lub_values1067,33853 -get_lub_values(X, Space, Var) :-get_lub_values1067,33853 -get_lub_values(X, Space, Var) :-get_lub_values1067,33853 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34038 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34038 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34038 -get_ranges(X, Space, Var) :-get_ranges1079,34235 -get_ranges(X, Space, Var) :-get_ranges1079,34235 -get_ranges(X, Space, Var) :-get_ranges1079,34235 -get_values(X, Space, Var) :-get_values1085,34408 -get_values(X, Space, Var) :-get_values1085,34408 -get_values(X, Space, Var) :-get_values1085,34408 -new_disjunctor(X, Space) :-new_disjunctor1091,34581 -new_disjunctor(X, Space) :-new_disjunctor1091,34581 -new_disjunctor(X, Space) :-new_disjunctor1091,34581 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_1096,34696 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_1096,34696 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34731 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34785 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34826 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34826 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34826 -new_clause(X, Disj) :-new_clause1103,34929 -new_clause(X, Disj) :-new_clause1103,34929 -new_clause(X, Disj) :-new_clause1103,34929 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35034 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35034 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35034 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35147 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35193 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35226 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35226 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35226 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35317 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35317 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35317 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35380 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35380 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35380 -new_forward(Clause, X, Y) :-new_forward1123,35496 -new_forward(Clause, X, Y) :-new_forward1123,35496 -new_forward(Clause, X, Y) :-new_forward1123,35496 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36137 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36207 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36283 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36347 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36445 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36537 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36623 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36703 -keep_(Space, Var) :-keep_1153,36778 -keep_(Space, Var) :-keep_1153,36778 -keep_(Space, Var) :-keep_1153,36778 -keep_list_(_Space, []) :- !.keep_list_1165,37275 -keep_list_(_Space, []) :- !.keep_list_1165,37275 -keep_list_(_Space, []) :- !.keep_list_1165,37275 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37304 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37304 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37304 -keep_list_(_, X) :-keep_list_1168,37376 -keep_list_(_, X) :-keep_list_1168,37376 -keep_list_(_, X) :-keep_list_1168,37376 - -packages/gecode/gecode5.yap,0 - -packages/gecode/gecode5_yap.cc,19769 -namespace generic_gecodegeneric_gecode32,1067 - template struct DynArrayDynArray35,1116 - template struct DynArraygeneric_gecode::DynArray35,1116 - T* _array;_array37,1160 - T* _array;generic_gecode::DynArray::_array37,1160 - DynArray(int n): _array(new T[n]) {}DynArray38,1175 - DynArray(int n): _array(new T[n]) {}generic_gecode::DynArray::DynArray38,1175 - ~DynArray() { delete[] _array; }~DynArray39,1216 - ~DynArray() { delete[] _array; }generic_gecode::DynArray::~DynArray39,1216 - T& operator[](int i) { return _array[i]; }operator []40,1253 - T& operator[](int i) { return _array[i]; }generic_gecode::DynArray::operator []40,1253 -#define DYNARRAY(DYNARRAY42,1305 - struct SpecArraySpecArray48,1413 - struct SpecArraygeneric_gecode::SpecArray48,1413 - int (*_array)[2];_array50,1436 - int (*_array)[2];generic_gecode::SpecArray::_array50,1436 - SpecArray(int n): _array((int (*)[2]) new int[n*2]) {}SpecArray51,1458 - SpecArray(int n): _array((int (*)[2]) new int[n*2]) {}generic_gecode::SpecArray::SpecArray51,1458 - ~SpecArray() { delete[] _array; }~SpecArray52,1517 - ~SpecArray() { delete[] _array; }generic_gecode::SpecArray::~SpecArray52,1517 - int& operator()(int i,int j) { return _array[i][j]; }operator ()53,1555 - int& operator()(int i,int j) { return _array[i][j]; }generic_gecode::SpecArray::operator ()53,1555 -#define SPECARRAY(SPECARRAY55,1618 -#define SPECARRAYELEM(SPECARRAYELEM56,1656 -#define SPECARRAYDEREF(SPECARRAYDEREF57,1692 -#define SPECARRAY(SPECARRAY59,1733 -#define SPECARRAYELEM(SPECARRAYELEM60,1768 -#define SPECARRAYDEREF(SPECARRAYDEREF61,1805 - static YAP_opaque_tag_t gecode_space_tag;gecode_space_tag69,1883 - static YAP_opaque_handler_t gecode_space_handler;gecode_space_handler70,1927 - static YAP_Bool gecode_space_fail_handler(void* p)gecode_space_fail_handler72,1980 - gecode_space_write_handlergecode_space_write_handler79,2108 - static YAP_Term gecode_term_from_space(GenericSpace* s)gecode_term_from_space86,2261 - static YAP_Bool gecode_new_space(void)gecode_new_space96,2527 - gecode_Space_from_term(YAP_Term t)gecode_Space_from_term105,2727 - struct YapDisjunctorYapDisjunctor110,2837 - GenericSpace* home;home112,2864 - GenericSpace* home;YapDisjunctor::home112,2864 - Disjunctor disj;disj113,2888 - Disjunctor disj;YapDisjunctor::disj113,2888 - YapDisjunctor(GenericSpace* home_)YapDisjunctor114,2909 - YapDisjunctor(GenericSpace* home_)YapDisjunctor::YapDisjunctor114,2909 - static YAP_opaque_tag_t gecode_disjunctor_tag;gecode_disjunctor_tag118,2991 - static YAP_opaque_handler_t gecode_disjunctor_handler;gecode_disjunctor_handler119,3040 - static YAP_opaque_tag_t gecode_disjunctor_clause_tag;gecode_disjunctor_clause_tag120,3097 - static YAP_opaque_handler_t gecode_disjunctor_clause_handler;gecode_disjunctor_clause_handler121,3153 - gecode_Disjunctor_from_term(YAP_Term t)gecode_Disjunctor_from_term124,3246 - gecode_YapDisjunctor_from_term(YAP_Term t)gecode_YapDisjunctor_from_term130,3393 - gecode_Clause_from_term(YAP_Term t)gecode_Clause_from_term136,3530 - gecode_Space_from_term(YAP_Term t)gecode_Space_from_term142,3659 - gecode_FloatAssign_from_term(YAP_Term t)gecode_FloatAssign_from_term154,3951 - gecode_BoolAssign_from_term(YAP_Term t)gecode_BoolAssign_from_term160,4086 - gecode_IntAssign_from_term(YAP_Term t)gecode_IntAssign_from_term166,4220 - gecode_SetAssign_from_term(YAP_Term t)gecode_SetAssign_from_term172,4352 - gecode_TupleSet_from_term(YAP_Term t)gecode_TupleSet_from_term178,4483 - gecode_DFA_from_term(YAP_Term t)gecode_DFA_from_term184,4607 - gecode_FloatNum_from_term(YAP_Term t)gecode_FloatNum_from_term190,4725 - static YAP_Term gecode_SET_VAR_NONE;gecode_SET_VAR_NONE195,4817 - static YAP_Term gecode_SET_VAR_DEGREE_MIN;gecode_SET_VAR_DEGREE_MIN196,4856 - static YAP_Term gecode_SET_VAR_DEGREE_MAX;gecode_SET_VAR_DEGREE_MAX197,4901 - static YAP_Term gecode_SET_VAR_MIN_MIN;gecode_SET_VAR_MIN_MIN198,4946 - static YAP_Term gecode_SET_VAR_MIN_MAX;gecode_SET_VAR_MIN_MAX199,4988 - static YAP_Term gecode_SET_VAR_MAX_MIN;gecode_SET_VAR_MAX_MIN200,5030 - static YAP_Term gecode_SET_VAR_MAX_MAX;gecode_SET_VAR_MAX_MAX201,5072 - static YAP_Term gecode_SET_VAR_SIZE_MIN;gecode_SET_VAR_SIZE_MIN202,5114 - static YAP_Term gecode_SET_VAR_SIZE_MAX;gecode_SET_VAR_SIZE_MAX203,5157 - static YAP_Term gecode_SET_VAR_DEGREE_SIZE_MIN;gecode_SET_VAR_DEGREE_SIZE_MIN204,5200 - static YAP_Term gecode_SET_VAR_DEGREE_SIZE_MAX;gecode_SET_VAR_DEGREE_SIZE_MAX205,5250 - gecode_SetVarBranch_from_term(YAP_Term t)gecode_SetVarBranch_from_term208,5330 - static YAP_Term gecode_SET_VAL_MIN_INC;gecode_SET_VAL_MIN_INC238,6250 - static YAP_Term gecode_SET_VAL_MIN_EXC;gecode_SET_VAL_MIN_EXC239,6292 - static YAP_Term gecode_SET_VAL_MED_INC;gecode_SET_VAL_MED_INC240,6334 - static YAP_Term gecode_SET_VAL_MED_EXC;gecode_SET_VAL_MED_EXC241,6376 - static YAP_Term gecode_SET_VAL_MAX_INC;gecode_SET_VAL_MAX_INC242,6418 - static YAP_Term gecode_SET_VAL_MAX_EXC;gecode_SET_VAL_MAX_EXC243,6460 - gecode_SetValBranch_from_term(YAP_Term t)gecode_SetValBranch_from_term246,6532 - gecode_SetBranchFilter_from_term(YAP_Term t)gecode_SetBranchFilter_from_term266,7107 - static YAP_Term gecode_INT_VAR_NONE;gecode_INT_VAR_NONE271,7224 - static YAP_Term gecode_INT_VAR_DEGREE_MIN;gecode_INT_VAR_DEGREE_MIN272,7263 - static YAP_Term gecode_INT_VAR_DEGREE_MAX;gecode_INT_VAR_DEGREE_MAX273,7308 - static YAP_Term gecode_INT_VAR_MIN_MIN;gecode_INT_VAR_MIN_MIN274,7353 - static YAP_Term gecode_INT_VAR_MIN_MAX;gecode_INT_VAR_MIN_MAX275,7395 - static YAP_Term gecode_INT_VAR_MAX_MIN;gecode_INT_VAR_MAX_MIN276,7437 - static YAP_Term gecode_INT_VAR_MAX_MAX;gecode_INT_VAR_MAX_MAX277,7479 - static YAP_Term gecode_INT_VAR_SIZE_MIN;gecode_INT_VAR_SIZE_MIN278,7521 - static YAP_Term gecode_INT_VAR_SIZE_MAX;gecode_INT_VAR_SIZE_MAX279,7564 - static YAP_Term gecode_INT_VAR_DEGREE_SIZE_MIN;gecode_INT_VAR_DEGREE_SIZE_MIN280,7607 - static YAP_Term gecode_INT_VAR_DEGREE_SIZE_MAX;gecode_INT_VAR_DEGREE_SIZE_MAX281,7657 - static YAP_Term gecode_INT_VAR_REGRET_MIN_MIN;gecode_INT_VAR_REGRET_MIN_MIN282,7707 - static YAP_Term gecode_INT_VAR_REGRET_MIN_MAX;gecode_INT_VAR_REGRET_MIN_MAX283,7756 - static YAP_Term gecode_INT_VAR_REGRET_MAX_MIN;gecode_INT_VAR_REGRET_MAX_MIN284,7805 - static YAP_Term gecode_INT_VAR_REGRET_MAX_MAX;gecode_INT_VAR_REGRET_MAX_MAX285,7854 - gecode_IntVarBranch_from_term(YAP_Term t)gecode_IntVarBranch_from_term288,7933 -static YAP_Term gecode_BOOL_VAR_NONE;gecode_BOOL_VAR_NONE325,9176 -static YAP_Term gecode_BOOL_VAR_RND;gecode_BOOL_VAR_RND326,9214 - static YAP_Term gecode_BOOL_VAR_DEGREE_MIN;gecode_BOOL_VAR_DEGREE_MIN329,9347 - static YAP_Term gecode_BOOL_VAR_DEGREE_MAX;gecode_BOOL_VAR_DEGREE_MAX330,9393 - static YAP_Term gecode_BOOL_VAR_MAX_MIN;gecode_BOOL_VAR_MAX_MIN331,9439 - static YAP_Term gecode_BOOL_VAR_MAX_MAX;gecode_BOOL_VAR_MAX_MAX332,9482 - static YAP_Term gecode_BOOL_VAR_AFC_MIN;gecode_BOOL_VAR_AFC_MIN333,9525 - static YAP_Term gecode_BOOL_VAR_AFC_MAX;gecode_BOOL_VAR_AFC_MAX334,9568 - static YAP_Term gecode_BOOL_VAR_ACTION_MIN;gecode_BOOL_VAR_ACTION_MIN335,9611 - static YAP_Term gecode_BOOL_VAR_ACTION_MAX;gecode_BOOL_VAR_ACTION_MAX336,9657 - static YAP_Term gecode_BOOL_VAR_CHB_MIN;gecode_BOOL_VAR_CHB_MIN337,9703 - static YAP_Term gecode_BOOL_VAR_CHB_MAX;gecode_BOOL_VAR_CHB_MAX338,9746 - gecode_BoolVarBranch_from_term(YAP_Term t)gecode_BoolVarBranch_from_term341,9820 - static YAP_Term gecode_FLOAT_VAR_NONE;gecode_FLOAT_VAR_NONE372,10825 - static YAP_Term gecode_FLOAT_VAR_DEGREE_MIN;gecode_FLOAT_VAR_DEGREE_MIN373,10866 - static YAP_Term gecode_FLOAT_VAR_DEGREE_MAX;gecode_FLOAT_VAR_DEGREE_MAX374,10913 - static YAP_Term gecode_FLOAT_VAR_MIN_MIN;gecode_FLOAT_VAR_MIN_MIN375,10960 - static YAP_Term gecode_FLOAT_VAR_MIN_MAX;gecode_FLOAT_VAR_MIN_MAX376,11004 - static YAP_Term gecode_FLOAT_VAR_MAX_MIN;gecode_FLOAT_VAR_MAX_MIN377,11048 - static YAP_Term gecode_FLOAT_VAR_MAX_MAX;gecode_FLOAT_VAR_MAX_MAX378,11092 - static YAP_Term gecode_FLOAT_VAR_SIZE_MIN;gecode_FLOAT_VAR_SIZE_MIN379,11136 - static YAP_Term gecode_FLOAT_VAR_SIZE_MAX;gecode_FLOAT_VAR_SIZE_MAX380,11181 - static YAP_Term gecode_FLOAT_VAR_DEGREE_SIZE_MAX;gecode_FLOAT_VAR_DEGREE_SIZE_MAX381,11226 - gecode_FloatVarBranch_from_term(YAP_Term t)gecode_FloatVarBranch_from_term384,11310 - static YAP_Term gecode_INT_VAL_MIN;gecode_INT_VAL_MIN414,12329 - static YAP_Term gecode_INT_VAL_MED;gecode_INT_VAL_MED415,12367 - static YAP_Term gecode_INT_VAL_MAX;gecode_INT_VAL_MAX416,12405 - static YAP_Term gecode_INT_VAL_SPLIT_MIN;gecode_INT_VAL_SPLIT_MIN417,12443 - static YAP_Term gecode_INT_VAL_SPLIT_MAX;gecode_INT_VAL_SPLIT_MAX418,12487 - static YAP_Term gecode_INT_VAL_RANGE_MIN;gecode_INT_VAL_RANGE_MIN419,12531 - static YAP_Term gecode_INT_VAL_RANGE_MAX;gecode_INT_VAL_RANGE_MAX420,12575 - static YAP_Term gecode_INT_VALUES_MIN;gecode_INT_VALUES_MIN421,12619 - static YAP_Term gecode_INT_VALUES_MAX;gecode_INT_VALUES_MAX422,12660 - gecode_IntValBranch_from_term(YAP_Term t)gecode_IntValBranch_from_term425,12731 - static YAP_Term gecode_BOOL_VAL_MIN;gecode_BOOL_VAL_MIN450,13462 - static YAP_Term gecode_BOOL_VAL_MAX;gecode_BOOL_VAL_MAX451,13501 - static YAP_Term gecode_BOOL_VAL_RND;gecode_BOOL_VAL_RND452,13540 - gecode_BoolValBranch_from_term(YAP_Term t)gecode_BoolValBranch_from_term455,13610 - static YAP_Term gecode_FLOAT_VAL_SPLIT_MIN;gecode_FLOAT_VAL_SPLIT_MIN475,14084 - static YAP_Term gecode_FLOAT_VAL_SPLIT_MAX;gecode_FLOAT_VAL_SPLIT_MAX476,14130 - gecode_FloatValBranch_from_term(YAP_Term t)gecode_FloatValBranch_from_term479,14208 - gecode_FloatVal_from_term(YAP_Term t)gecode_FloatVal_from_term491,14528 - gecode_Symmetries_from_term(YAP_Term t)gecode_Symmetries_from_term497,14659 - gecode_IntBranchFilter_from_term(YAP_Term t)gecode_IntBranchFilter_from_term503,14799 - gecode_BoolBranchFilter_from_term(YAP_Term t)gecode_BoolBranchFilter_from_term509,14950 - gecode_FloatBranchFilter_from_term(YAP_Term t)gecode_FloatBranchFilter_from_term515,15104 - gecode_SetVarValPrint_from_term(YAP_Term t)gecode_SetVarValPrint_from_term521,15257 - gecode_IntVarValPrint_from_term(YAP_Term t)gecode_IntVarValPrint_from_term527,15404 - gecode_BoolVarValPrint_from_term(YAP_Term t)gecode_BoolVarValPrint_from_term533,15552 - gecode_FloatVarValPrint_from_term(YAP_Term t)gecode_FloatVarValPrint_from_term539,15703 - static YAP_opaque_tag_t gecode_engine_tag;gecode_engine_tag544,15822 - static YAP_opaque_handler_t gecode_engine_handler;gecode_engine_handler545,15867 - static YAP_Bool gecode_new_engine(void)gecode_new_engine549,15985 - gecode_engine_from_term(YAP_Term t)gecode_engine_from_term633,18860 - static YAP_Bool gecode_engine_fail_handler(void* p)gecode_engine_fail_handler638,18967 - gecode_engine_write_handlergecode_engine_write_handler645,19097 - static YAP_Bool gecode_engine_search(void)gecode_engine_search652,19251 - static YAP_Bool gecode_new_disjunctor(void)gecode_new_disjunctor665,19567 - gecode_disjunctor_write_handlergecode_disjunctor_write_handler676,19925 - static YAP_Bool gecode_new_clause(void)gecode_new_clause683,20087 - gecode_clause_write_handlergecode_clause_write_handler694,20456 - static YAP_Bool gecode_clause_intvar_forward(void)gecode_clause_intvar_forward706,20878 - static YAP_Bool gecode_clause_boolvar_forward(void)gecode_clause_boolvar_forward717,21285 - static YAP_Bool gecode_clause_setvar_forward(void)gecode_clause_setvar_forward728,21697 - static YAP_Bool gecode_new_intvar_from_bounds(void)gecode_new_intvar_from_bounds740,22111 - static YAP_Bool gecode_new_floatvar_from_bounds(void)gecode_new_floatvar_from_bounds751,22447 - gecode_list_length(YAP_Term l)gecode_list_length763,22808 - gecode_IntSet_from_term(YAP_Term specs)gecode_IntSet_from_term775,22974 - static YAP_Bool gecode_new_intvar_from_intset(void)gecode_new_intvar_from_intset791,23397 - static YAP_Bool gecode_new_boolvar(void)gecode_new_boolvar801,23712 - static YAP_Bool gecode_new_setvar_1(void)gecode_new_setvar_1809,23931 - static YAP_Bool gecode_new_setvar_2(void)gecode_new_setvar_2823,24454 - static YAP_Bool gecode_new_setvar_3(void)gecode_new_setvar_3836,24927 - static YAP_Bool gecode_new_setvar_4(void)gecode_new_setvar_4848,25350 - static YAP_Bool gecode_new_setvar_5(void)gecode_new_setvar_5861,25833 - static YAP_Bool gecode_new_setvar_6(void)gecode_new_setvar_6873,26265 - static YAP_Bool gecode_new_setvar_7(void)gecode_new_setvar_7884,26646 - static YAP_Bool gecode_new_setvar_8(void)gecode_new_setvar_8897,27129 - static YAP_Bool gecode_new_setvar_9(void)gecode_new_setvar_9909,27561 - static YAP_Bool gecode_new_setvar_10(void)gecode_new_setvar_10920,27942 - static YAP_Bool gecode_new_setvar_11(void)gecode_new_setvar_11932,28384 - static YAP_Bool gecode_new_setvar_12(void)gecode_new_setvar_12943,28775 - static YAP_Bool gecode_space_minimize(void)gecode_space_minimize953,29115 - static YAP_Bool gecode_space_maximize(void)gecode_space_maximize961,29308 - static YAP_Bool gecode_space_minimize_ratio(void)gecode_space_minimize_ratio969,29501 - static YAP_Bool gecode_space_maximize_ratio(void)gecode_space_maximize_ratio978,29739 - gecode_IntVar_from_term(GenericSpace* space, YAP_Term x)gecode_IntVar_from_term988,29993 - gecode_BoolVar_from_term(GenericSpace* space, YAP_Term x)gecode_BoolVar_from_term995,30139 - gecode_SetVar_from_term(GenericSpace* space, YAP_Term x)gecode_SetVar_from_term1002,30285 - gecode_IntVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_IntVarArgs_from_term1009,30434 - gecode_BoolVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_BoolVarArgs_from_term1025,30766 - gecode_FloatVar_from_term(GenericSpace* space, YAP_Term x)gecode_FloatVar_from_term1041,31097 - gecode_FloatVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_FloatVarArgs_from_term1048,31250 - gecode_FloatValArgs_from_term(YAP_Term l)gecode_FloatValArgs_from_term1064,31587 - gecode_SetVarArgs_from_term(GenericSpace* space, YAP_Term l)gecode_SetVarArgs_from_term1080,31910 - gecode_IntArgs_from_term(YAP_Term l)gecode_IntArgs_from_term1096,32238 - gecode_IntSetArgs_from_term(YAP_Term l)gecode_IntSetArgs_from_term1112,32525 - gecode_TaskTypeArgs_from_term(YAP_Term l)gecode_TaskTypeArgs_from_term1130,32885 - static YAP_Term gecode_TRUE;gecode_TRUE1145,33177 - static YAP_Term gecode_FALSE;gecode_FALSE1146,33208 - gecode_bool_from_term(YAP_Term X)gecode_bool_from_term1149,33255 - static YAP_Bool gecode_space_use_keep_index(void)gecode_space_use_keep_index1156,33433 - static YAP_Bool gecode_intvar_keep(void)gecode_intvar_keep1165,33696 - static YAP_Bool gecode_boolvar_keep(void)gecode_boolvar_keep1176,34015 - static YAP_Bool gecode_setvar_keep(void)gecode_setvar_keep1187,34335 - static YAP_Bool gecode_intvar_assigned(void)gecode_intvar_assigned1199,34675 - static YAP_Bool gecode_intvar_min(void)gecode_intvar_min1206,34890 - static YAP_Bool gecode_intvar_max(void)gecode_intvar_max1214,35144 - static YAP_Bool gecode_intvar_med(void)gecode_intvar_med1222,35398 - static YAP_Bool gecode_intvar_val(void)gecode_intvar_val1230,35652 - static YAP_Bool gecode_intvar_size(void)gecode_intvar_size1238,35906 - static YAP_Bool gecode_intvar_width(void)gecode_intvar_width1246,36162 - static YAP_Bool gecode_intvar_regret_min(void)gecode_intvar_regret_min1254,36420 - static YAP_Bool gecode_intvar_regret_max(void)gecode_intvar_regret_max1262,36688 - static YAP_Functor gecode_COMMA2;gecode_COMMA21270,36956 - static YAP_Bool gecode_intvar_ranges(void)gecode_intvar_ranges1272,36993 - static YAP_Bool gecode_intvar_values(void)gecode_intvar_values1295,37699 - static YAP_Bool gecode_boolvar_assigned(void)gecode_boolvar_assigned1313,38203 - static YAP_Bool gecode_boolvar_min(void)gecode_boolvar_min1320,38421 - static YAP_Bool gecode_boolvar_max(void)gecode_boolvar_max1328,38678 - static YAP_Bool gecode_boolvar_med(void)gecode_boolvar_med1336,38935 - static YAP_Bool gecode_boolvar_val(void)gecode_boolvar_val1344,39192 - static YAP_Bool gecode_boolvar_size(void)gecode_boolvar_size1352,39449 - static YAP_Bool gecode_boolvar_width(void)gecode_boolvar_width1360,39708 - static YAP_Bool gecode_boolvar_regret_min(void)gecode_boolvar_regret_min1368,39969 - static YAP_Bool gecode_boolvar_regret_max(void)gecode_boolvar_regret_max1376,40240 - static YAP_Bool gecode_setvar_assigned(void)gecode_setvar_assigned1385,40532 - static YAP_Bool gecode_setvar_glbSize(void)gecode_setvar_glbSize1392,40747 - static YAP_Bool gecode_setvar_lubSize(void)gecode_setvar_lubSize1400,41009 - static YAP_Bool gecode_setvar_unknownSize(void)gecode_setvar_unknownSize1408,41271 - static YAP_Bool gecode_setvar_cardMin(void)gecode_setvar_cardMin1416,41541 - static YAP_Bool gecode_setvar_cardMax(void)gecode_setvar_cardMax1424,41803 - static YAP_Bool gecode_setvar_lubMin(void)gecode_setvar_lubMin1432,42065 - static YAP_Bool gecode_setvar_lubMax(void)gecode_setvar_lubMax1440,42325 - static YAP_Bool gecode_setvar_glbMin(void)gecode_setvar_glbMin1448,42585 - static YAP_Bool gecode_setvar_glbMax(void)gecode_setvar_glbMax1456,42845 - static YAP_Bool gecode_setvar_glb_ranges(void)gecode_setvar_glb_ranges1464,43105 - static YAP_Bool gecode_setvar_lub_ranges(void)gecode_setvar_lub_ranges1487,43821 - static YAP_Bool gecode_setvar_unknown_ranges(void)gecode_setvar_unknown_ranges1510,44537 - static YAP_Bool gecode_setvar_glb_values(void)gecode_setvar_glb_values1533,45265 - static YAP_Bool gecode_setvar_lub_values(void)gecode_setvar_lub_values1547,45744 - static YAP_Bool gecode_setvar_unknown_values(void)gecode_setvar_unknown_values1561,46223 - static YAP_Bool gecode_floatvar_assigned(void)gecode_floatvar_assigned1576,46737 - static YAP_Bool gecode_floatvar_min(void)gecode_floatvar_min1583,46958 - static YAP_Bool gecode_floatvar_max(void)gecode_floatvar_max1591,47220 - static YAP_Bool gecode_floatvar_med(void)gecode_floatvar_med1599,47482 - static YAP_Bool gecode_floatvar_size(void)gecode_floatvar_size1607,47744 - gecode_Reify_from_term(YAP_Term t)gecode_Reify_from_term1616,48030 - #define gecode_int_from_term gecode_int_from_term1621,48127 - #define gecode_double_from_term gecode_double_from_term1623,48173 - static YAP_opaque_tag_t gecode_reify_tag;gecode_reify_tag1628,48326 - static YAP_opaque_handler_t gecode_reify_handler;gecode_reify_handler1629,48370 - gecode_reify_write_handlergecode_reify_write_handler1632,48441 - static YAP_Term gecode_term_from_reify(Reify r)gecode_term_from_reify1639,48593 - static YAP_Bool gecode_new_reify(void)gecode_new_reify1649,48827 - static YAP_opaque_tag_t gecode_tupleset_tag;gecode_tupleset_tag1660,49170 - static YAP_opaque_handler_t gecode_tupleset_handler;gecode_tupleset_handler1661,49217 - static YAP_Bool gecode_tupleset_fail_handler(void* p)gecode_tupleset_fail_handler1663,49273 - gecode_tupleset_write_handlergecode_tupleset_write_handler1669,49373 - static YAP_Bool gecode_new_tupleset(void)gecode_new_tupleset1676,49531 - static YAP_opaque_tag_t gecode_dfa_tag;gecode_dfa_tag1708,50429 - static YAP_opaque_handler_t gecode_dfa_handler;gecode_dfa_handler1709,50471 - static YAP_Bool gecode_dfa_fail_handler(void* p)gecode_dfa_fail_handler1711,50522 - gecode_dfa_write_handlergecode_dfa_write_handler1717,50617 - static YAP_Bool gecode_new_dfa(void)gecode_new_dfa1724,50765 - void gecode_init(void)gecode_init1764,51994 - -packages/gecode/gecode5_yap_hand_written.yap,72152 -is_int(X,Y) :- integer(X), Y=X.is_int277,7581 -is_int(X,Y) :- integer(X), Y=X.is_int277,7581 -is_int(X,Y) :- integer(X), Y=X.is_int277,7581 -is_int(X) :- integer(X).is_int278,7613 -is_int(X) :- integer(X).is_int278,7613 -is_int(X) :- integer(X).is_int278,7613 -is_int(X) :- integer(X).is_int278,7613 -is_int(X) :- integer(X).is_int278,7613 -is_bool_(true,true).is_bool_280,7639 -is_bool_(true,true).is_bool_280,7639 -is_bool_(false,false).is_bool_281,7660 -is_bool_(false,false).is_bool_281,7660 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7683 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7683 -is_bool(X,Y) :- nonvar(X), Y=X.is_bool282,7683 -is_bool(X) :- is_bool(X,_).is_bool283,7715 -is_bool(X) :- is_bool(X,_).is_bool283,7715 -is_bool(X) :- is_bool(X,_).is_bool283,7715 -is_bool(X) :- is_bool(X,_).is_bool283,7715 -is_bool(X) :- is_bool(X,_).is_bool283,7715 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7744 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7744 -is_IntVar_('IntVar'(I,K),N) :-is_IntVar_285,7744 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7880 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7880 -is_FloatVar_('FloatVar'(I,K),N) :-is_FloatVar_290,7880 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8020 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8020 -is_BoolVar_('BoolVar'(I,K),N) :-is_BoolVar_295,8020 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8158 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8158 -is_SetVar_('SetVar'(I,K),N) :-is_SetVar_300,8158 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8295 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8295 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8295 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8295 -is_IntVar(X,I) :- nonvar(X), is_IntVar_(X,I).is_IntVar306,8295 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8341 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8341 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8341 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8341 -is_BoolVar(X,I) :- nonvar(X), is_BoolVar_(X,I).is_BoolVar307,8341 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8389 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8389 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8389 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8389 -is_FloatVar(X,I) :- nonvar(X), is_FloatVar_(X,I).is_FloatVar308,8389 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8439 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8439 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8439 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8439 -is_SetVar(X,I) :- nonvar(X), is_SetVar_(X,I).is_SetVar309,8439 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8486 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8486 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8486 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8486 -is_IntVar(X) :- is_IntVar(X,_).is_IntVar311,8486 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8518 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8518 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8518 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8518 -is_BoolVar(X) :- is_BoolVar(X,_).is_BoolVar312,8518 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8552 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8552 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8552 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8552 -is_FloatVar(X) :- is_FloatVar(X,_).is_FloatVar313,8552 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8588 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8588 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8588 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8588 -is_SetVar(X) :- is_SetVar(X,_).is_SetVar314,8588 -is_IntVarArgs_([],[]).is_IntVarArgs_316,8621 -is_IntVarArgs_([],[]).is_IntVarArgs_316,8621 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8644 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8644 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8644 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8644 -is_IntVarArgs_([H|T],[H2|T2]) :- is_IntVar(H,H2), is_IntVarArgs(T,T2).is_IntVarArgs_317,8644 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8715 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8715 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8715 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8715 -is_IntVarArgs(X,Y) :- nonvar(X), is_IntVarArgs_(X,Y).is_IntVarArgs318,8715 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8769 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8769 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8769 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8769 -is_IntVarArgs(X) :- \+ \+ is_IntVarArgs(X,_).is_IntVarArgs319,8769 -is_BoolVarArgs_([],[]).is_BoolVarArgs_321,8816 -is_BoolVarArgs_([],[]).is_BoolVarArgs_321,8816 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8840 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8840 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8840 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8840 -is_BoolVarArgs_([H|T],[H2|T2]) :- is_BoolVar(H,H2), is_BoolVarArgs(T,T2).is_BoolVarArgs_322,8840 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8914 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8914 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8914 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8914 -is_BoolVarArgs(X,Y) :- nonvar(X), is_BoolVarArgs_(X,Y).is_BoolVarArgs323,8914 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8970 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8970 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8970 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8970 -is_BoolVarArgs(X) :- \+ \+ is_BoolVarArgs(X,_).is_BoolVarArgs324,8970 -is_FloatVarArgs_([],[]).is_FloatVarArgs_326,9019 -is_FloatVarArgs_([],[]).is_FloatVarArgs_326,9019 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9044 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9044 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9044 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9044 -is_FloatVarArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatVarArgs(T,T2).is_FloatVarArgs_327,9044 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9121 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9121 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9121 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9121 -is_FloatVarArgs(X,Y) :- nonvar(X), is_FloatVarArgs_(X,Y).is_FloatVarArgs328,9121 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9179 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9179 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9179 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9179 -is_FloatVarArgs(X) :- \+ \+ is_FloatVarArgs(X,_).is_FloatVarArgs329,9179 -is_FloatValArgs_([],[]).is_FloatValArgs_331,9230 -is_FloatValArgs_([],[]).is_FloatValArgs_331,9230 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9255 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9255 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9255 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9255 -is_FloatValArgs_([H|T],[H2|T2]) :- is_FloatVar(H,H2), is_FloatValArgs(T,T2).is_FloatValArgs_332,9255 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9332 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9332 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9332 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9332 -is_FloatValArgs(X,Y) :- nonvar(X), is_FloatValArgs_(X,Y).is_FloatValArgs333,9332 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9390 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9390 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9390 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9390 -is_FloatValArgs(X) :- \+ \+ is_FloatValArgs(X,_).is_FloatValArgs334,9390 -is_SetVarArgs_([],[]).is_SetVarArgs_336,9441 -is_SetVarArgs_([],[]).is_SetVarArgs_336,9441 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9464 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9464 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9464 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9464 -is_SetVarArgs_([H|T],[H2|T2]) :- is_SetVar(H,H2), is_SetVarArgs(T,T2).is_SetVarArgs_337,9464 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9535 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9535 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9535 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9535 -is_SetVarArgs(X,Y) :- nonvar(X), is_SetVarArgs_(X,Y).is_SetVarArgs338,9535 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9589 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9589 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9589 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9589 -is_SetVarArgs(X) :- \+ \+ is_SetVarArgs(X,_).is_SetVarArgs339,9589 -is_IntArgs_([],[]).is_IntArgs_341,9636 -is_IntArgs_([],[]).is_IntArgs_341,9636 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9656 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9656 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9656 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9656 -is_IntArgs_([H|T],[H|T2]) :- integer(H), is_IntArgs(T,T2).is_IntArgs_342,9656 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9715 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9715 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9715 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9715 -is_IntArgs(X,Y) :- nonvar(X), is_IntArgs_(X,Y).is_IntArgs343,9715 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9763 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9763 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9763 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9763 -is_IntArgs(X) :- \+ \+ is_IntArgs(X,_).is_IntArgs344,9763 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9804 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9804 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9804 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9804 -is_IntSharedArray(X) :- is_IntArgs(X).is_IntSharedArray346,9804 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9843 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9843 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9843 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9843 -is_IntSharedArray(X,Y) :- is_IntArgs(X,Y).is_IntSharedArray347,9843 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_349,9887 -is_TaskTypeArgs_([],[]).is_TaskTypeArgs_349,9887 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9912 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9912 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9912 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9912 -is_TaskTypeArgs_([H|T],[H2|T2]) :- is_TaskType(H,H2), is_TaskTypeArgs(T,T2).is_TaskTypeArgs_350,9912 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9989 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9989 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9989 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9989 -is_TaskTypeArgs(X,Y) :- nonvar(X), is_TaskTypeArgs_(X,Y).is_TaskTypeArgs351,9989 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10047 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10047 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10047 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10047 -is_TaskTypeArgs(X) :- \+ \+ is_TaskTypeArgs(X,_).is_TaskTypeArgs352,10047 -is_IntSet_('IntSet'(L),L).is_IntSet_354,10098 -is_IntSet_('IntSet'(L),L).is_IntSet_354,10098 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10125 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10125 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10125 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10125 -is_IntSet(X,Y) :- nonvar(X), is_IntSet_(X,Y).is_IntSet355,10125 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10171 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10171 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10171 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10171 -is_IntSet(X) :- is_IntSet(X,_).is_IntSet356,10171 -is_IntSetArgs_([],[]).is_IntSetArgs_358,10204 -is_IntSetArgs_([],[]).is_IntSetArgs_358,10204 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10227 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10227 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10227 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10227 -is_IntSetArgs_([H|T],[H2|T2]) :- is_IntSet(H,H2), is_IntSetArgs(T,T2).is_IntSetArgs_359,10227 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10298 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10298 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10298 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10298 -is_IntSetArgs(X,Y) :- nonvar(X), is_IntSetArgs_(X,Y).is_IntSetArgs360,10298 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10352 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10352 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10352 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10352 -is_IntSetArgs(X) :- \+ \+ is_IntSetArgs(X,_).is_IntSetArgs361,10352 -is_TupleSet_('TupleSet'(TS),TS).is_TupleSet_363,10399 -is_TupleSet_('TupleSet'(TS),TS).is_TupleSet_363,10399 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10432 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10432 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10432 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10432 -is_TupleSet(X,Y) :- nonvar(X), is_TupleSet_(X,Y).is_TupleSet364,10432 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10482 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10482 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10482 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10482 -is_TupleSet(X) :- is_TupleSet(X,_).is_TupleSet365,10482 -is_DFA_('DFA'(TS),TS).is_DFA_367,10519 -is_DFA_('DFA'(TS),TS).is_DFA_367,10519 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10542 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10542 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10542 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10542 -is_DFA(X,Y) :- nonvar(X), is_DFA_(X,Y).is_DFA368,10542 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10582 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10582 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10582 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10582 -is_DFA(X) :- is_DFA(X,_).is_DFA369,10582 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10609 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10609 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10609 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10609 -new_intset(X,I,J) :- intset(X,I,J).new_intset371,10609 -new_intset(X,L) :- intset(X,L).new_intset372,10645 -new_intset(X,L) :- intset(X,L).new_intset372,10645 -new_intset(X,L) :- intset(X,L).new_intset372,10645 -new_intset(X,L) :- intset(X,L).new_intset372,10645 -new_intset(X,L) :- intset(X,L).new_intset372,10645 -intset(X, I, J) :-intset374,10678 -intset(X, I, J) :-intset374,10678 -intset(X, I, J) :-intset374,10678 -intset(X, L) :-intset378,10745 -intset(X, L) :-intset378,10745 -intset(X, L) :-intset378,10745 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10811 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10811 -is_list_of_intset_specs(X,Y) :-is_list_of_intset_specs382,10811 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_384,10886 -is_list_of_intset_specs_([],[]).is_list_of_intset_specs_384,10886 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10919 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10919 -is_list_of_intset_specs_([H|T],[H2|T2]) :-is_list_of_intset_specs_385,10919 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11018 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11018 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11018 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11018 -is_intset_spec(X,Y) :- nonvar(X), is_intset_spec_(X,Y).is_intset_spec389,11018 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11074 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11074 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11074 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11074 -is_intset_spec_((I,J),(I,J)) :- !, integer(I), integer(J).is_intset_spec_390,11074 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11133 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11133 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11133 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11133 -is_intset_spec_(I,(I,I)) :- integer(I).is_intset_spec_391,11133 -assert_var(X,Y) :-assert_var393,11174 -assert_var(X,Y) :-assert_var393,11174 -assert_var(X,Y) :-assert_var393,11174 -assert_is_int(X,Y) :-assert_is_int395,11245 -assert_is_int(X,Y) :-assert_is_int395,11245 -assert_is_int(X,Y) :-assert_is_int395,11245 -assert_is_float(X,Y) :-assert_is_float397,11324 -assert_is_float(X,Y) :-assert_is_float397,11324 -assert_is_float(X,Y) :-assert_is_float397,11324 -assert_is_Space(X,Y) :-assert_is_Space399,11403 -assert_is_Space(X,Y) :-assert_is_Space399,11403 -assert_is_Space(X,Y) :-assert_is_Space399,11403 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11490 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11490 -assert_is_IntSet(X,Y) :-assert_is_IntSet401,11490 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11580 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11580 -assert_is_TupleSet(X,Y) :-assert_is_TupleSet403,11580 -assert_is_DFA(X,Y) :-assert_is_DFA405,11676 -assert_is_DFA(X,Y) :-assert_is_DFA405,11676 -assert_is_DFA(X,Y) :-assert_is_DFA405,11676 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11757 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11757 -assert_is_IntVar(X,Y) :-assert_is_IntVar407,11757 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11847 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11847 -assert_is_BoolVar(X,Y) :-assert_is_BoolVar409,11847 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11940 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11940 -assert_is_FloatVar(X,Y) :-assert_is_FloatVar411,11940 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12036 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12036 -assert_is_SetVar(X,Y) :-assert_is_SetVar413,12036 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12126 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12126 -assert_is_IntArgs(X,Y) :-assert_is_IntArgs415,12126 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12219 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12219 -assert_is_IntVarArgs(X,Y) :-assert_is_IntVarArgs417,12219 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12321 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12321 -assert_is_BoolVarArgs(X,Y) :-assert_is_BoolVarArgs419,12321 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12426 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12426 -assert_is_FloatVarArgs(X,Y) :-assert_is_FloatVarArgs421,12426 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12534 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12534 -assert_is_FloatValArgs(X,Y) :-assert_is_FloatValArgs423,12534 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12642 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12642 -assert_is_SetVarArgs(X,Y) :-assert_is_SetVarArgs425,12642 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12744 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12744 -assert_is_ReifyMode(X,Y) :-assert_is_ReifyMode427,12744 -assert_var(X) :- assert_var(X,_).assert_var430,12844 -assert_var(X) :- assert_var(X,_).assert_var430,12844 -assert_var(X) :- assert_var(X,_).assert_var430,12844 -assert_var(X) :- assert_var(X,_).assert_var430,12844 -assert_var(X) :- assert_var(X,_).assert_var430,12844 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12878 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12878 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12878 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12878 -assert_is_int(X) :- assert_is_int(X,_).assert_is_int431,12878 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12918 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12918 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12918 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12918 -assert_is_float(X) :- assert_is_float(X,_).assert_is_float432,12918 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12962 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12962 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12962 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12962 -assert_is_Space(X) :- assert_is_Space(X,_).assert_is_Space433,12962 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,13006 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,13006 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,13006 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,13006 -assert_is_IntSet(X) :- assert_is_IntSet(X,_).assert_is_IntSet434,13006 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13052 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13052 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13052 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13052 -assert_is_IntVar(X) :- assert_is_IntVar(X,_).assert_is_IntVar435,13052 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13098 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13098 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13098 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13098 -assert_is_BoolVar(X) :- assert_is_BoolVar(X,_).assert_is_BoolVar436,13098 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13146 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13146 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13146 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13146 -assert_is_FloatVar(X) :- assert_is_FloatVar(X,_).assert_is_FloatVar437,13146 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13196 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13196 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13196 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13196 -assert_is_SetVar(X) :- assert_is_SetVar(X,_).assert_is_SetVar438,13196 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13242 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13242 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13242 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13242 -assert_is_IntArgs(X) :- assert_is_IntArgs(X,_).assert_is_IntArgs439,13242 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13290 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13290 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13290 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13290 -assert_is_IntVarArgs(X) :- assert_is_IntVarArgs(X,_).assert_is_IntVarArgs440,13290 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13344 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13344 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13344 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13344 -assert_is_BoolVarArgs(X) :- assert_is_BoolVarArgs(X,_).assert_is_BoolVarArgs441,13344 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13400 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13400 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13400 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13400 -assert_is_FloatVarArgs(X) :- assert_is_FloatVarArgs(X,_).assert_is_FloatVarArgs442,13400 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13458 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13458 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13458 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13458 -assert_is_FloatValArgs(X) :- assert_is_FloatValArgs(X,_).assert_is_FloatValArgs443,13458 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13516 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13516 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13516 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13516 -assert_is_SetVarArgs(X) :- assert_is_SetVarArgs(X,_).assert_is_SetVarArgs444,13516 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_449,13670 -is_IntVarBranch_('INT_VAR_NONE').is_IntVarBranch_449,13670 -is_IntVarBranch_('INT_VAR_RND'(_)).is_IntVarBranch_450,13704 -is_IntVarBranch_('INT_VAR_RND'(_)).is_IntVarBranch_450,13704 -is_IntVarBranch_('INT_VAR_MERIT_MIN'(_)).is_IntVarBranch_451,13740 -is_IntVarBranch_('INT_VAR_MERIT_MIN'(_)).is_IntVarBranch_451,13740 -is_IntVarBranch_('INT_VAR_MERIT_MAX'(_)).is_IntVarBranch_452,13782 -is_IntVarBranch_('INT_VAR_MERIT_MAX'(_)).is_IntVarBranch_452,13782 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_453,13824 -is_IntVarBranch_('INT_VAR_DEGREE_MIN').is_IntVarBranch_453,13824 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_454,13864 -is_IntVarBranch_('INT_VAR_DEGREE_MAX').is_IntVarBranch_454,13864 -is_IntVarBranch_('INT_VAR_AFC_MIN'(_)).is_IntVarBranch_455,13904 -is_IntVarBranch_('INT_VAR_AFC_MIN'(_)).is_IntVarBranch_455,13904 -is_IntVarBranch_('INT_VAR_AFC_MAX'(_)).is_IntVarBranch_456,13944 -is_IntVarBranch_('INT_VAR_AFC_MAX'(_)).is_IntVarBranch_456,13944 -is_IntVarBranch_('INT_VAR_ACTIVITY_MIN'(_)).is_IntVarBranch_457,13984 -is_IntVarBranch_('INT_VAR_ACTIVITY_MIN'(_)).is_IntVarBranch_457,13984 -is_IntVarBranch_('INT_VAR_ACTIVITY_MAX'(_)).is_IntVarBranch_458,14029 -is_IntVarBranch_('INT_VAR_ACTIVITY_MAX'(_)).is_IntVarBranch_458,14029 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_459,14074 -is_IntVarBranch_('INT_VAR_MIN_MIN').is_IntVarBranch_459,14074 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_460,14111 -is_IntVarBranch_('INT_VAR_MIN_MAX').is_IntVarBranch_460,14111 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_461,14148 -is_IntVarBranch_('INT_VAR_MAX_MIN').is_IntVarBranch_461,14148 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_462,14185 -is_IntVarBranch_('INT_VAR_MAX_MAX').is_IntVarBranch_462,14185 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_463,14222 -is_IntVarBranch_('INT_VAR_SIZE_MIN').is_IntVarBranch_463,14222 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_464,14260 -is_IntVarBranch_('INT_VAR_SIZE_MAX').is_IntVarBranch_464,14260 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MIN').is_IntVarBranch_465,14298 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MIN').is_IntVarBranch_465,14298 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MAX').is_IntVarBranch_466,14343 -is_IntVarBranch_('INT_VAR_DEGREE_SIZE_MAX').is_IntVarBranch_466,14343 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MIN'(_)).is_IntVarBranch_467,14388 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MIN'(_)).is_IntVarBranch_467,14388 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MAX'(_)).is_IntVarBranch_468,14433 -is_IntVarBranch_('INT_VAR_AFC_SIZE_MAX'(_)).is_IntVarBranch_468,14433 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MIN'(_)).is_IntVarBranch_469,14478 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MIN'(_)).is_IntVarBranch_469,14478 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MAX'(_)).is_IntVarBranch_470,14528 -is_IntVarBranch_('INT_VAR_ACTIVITY_SIZE_MAX'(_)).is_IntVarBranch_470,14528 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_471,14578 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').is_IntVarBranch_471,14578 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_472,14622 -is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').is_IntVarBranch_472,14622 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_473,14666 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').is_IntVarBranch_473,14666 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_474,14710 -is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').is_IntVarBranch_474,14710 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14755 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14755 -is_IntVarBranch_(X, X) :-is_IntVarBranch_476,14755 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14804 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14804 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14804 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14804 -is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).is_IntVarBranch479,14804 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14862 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14862 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14862 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14862 -is_IntVarBranch(X) :- is_IntVarBranch(X,_).is_IntVarBranch480,14862 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_482,14907 -is_SetVarBranch_('SET_VAR_NONE').is_SetVarBranch_482,14907 -is_SetVarBranch_('SET_VAR_RND'(_)).is_SetVarBranch_483,14941 -is_SetVarBranch_('SET_VAR_RND'(_)).is_SetVarBranch_483,14941 -is_SetVarBranch_('SET_VAR_MERIT_MIN'(_)).is_SetVarBranch_484,14977 -is_SetVarBranch_('SET_VAR_MERIT_MIN'(_)).is_SetVarBranch_484,14977 -is_SetVarBranch_('SET_VAR_MERIT_MAX'(_)).is_SetVarBranch_485,15019 -is_SetVarBranch_('SET_VAR_MERIT_MAX'(_)).is_SetVarBranch_485,15019 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_486,15061 -is_SetVarBranch_('SET_VAR_DEGREE_MIN').is_SetVarBranch_486,15061 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_487,15101 -is_SetVarBranch_('SET_VAR_DEGREE_MAX').is_SetVarBranch_487,15101 -is_SetVarBranch_('SET_VAR_AFC_MIN'(_)).is_SetVarBranch_488,15141 -is_SetVarBranch_('SET_VAR_AFC_MIN'(_)).is_SetVarBranch_488,15141 -is_SetVarBranch_('SET_VAR_AFC_MAX'(_)).is_SetVarBranch_489,15181 -is_SetVarBranch_('SET_VAR_AFC_MAX'(_)).is_SetVarBranch_489,15181 -is_SetVarBranch_('SET_VAR_ACTIVITY_MIN'(_)).is_SetVarBranch_490,15221 -is_SetVarBranch_('SET_VAR_ACTIVITY_MIN'(_)).is_SetVarBranch_490,15221 -is_SetVarBranch_('SET_VAR_ACTIVITY_MAX'(_)).is_SetVarBranch_491,15266 -is_SetVarBranch_('SET_VAR_ACTIVITY_MAX'(_)).is_SetVarBranch_491,15266 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_492,15311 -is_SetVarBranch_('SET_VAR_MIN_MIN').is_SetVarBranch_492,15311 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_493,15348 -is_SetVarBranch_('SET_VAR_MIN_MAX').is_SetVarBranch_493,15348 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_494,15385 -is_SetVarBranch_('SET_VAR_MAX_MIN').is_SetVarBranch_494,15385 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_495,15422 -is_SetVarBranch_('SET_VAR_MAX_MAX').is_SetVarBranch_495,15422 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_496,15459 -is_SetVarBranch_('SET_VAR_SIZE_MIN').is_SetVarBranch_496,15459 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_497,15497 -is_SetVarBranch_('SET_VAR_SIZE_MAX').is_SetVarBranch_497,15497 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MIN').is_SetVarBranch_498,15535 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MIN').is_SetVarBranch_498,15535 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MAX').is_SetVarBranch_499,15580 -is_SetVarBranch_('SET_VAR_DEGREE_SIZE_MAX').is_SetVarBranch_499,15580 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MIN'(_)).is_SetVarBranch_500,15625 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MIN'(_)).is_SetVarBranch_500,15625 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MAX'(_)).is_SetVarBranch_501,15670 -is_SetVarBranch_('SET_VAR_AFC_SIZE_MAX'(_)).is_SetVarBranch_501,15670 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MIN'(_)).is_SetVarBranch_502,15715 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MIN'(_)).is_SetVarBranch_502,15715 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MAX'(_)).is_SetVarBranch_503,15765 -is_SetVarBranch_('SET_VAR_ACTIVITY_SIZE_MAX'(_)).is_SetVarBranch_503,15765 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15816 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15816 -is_SetVarBranch_(X, X) :-is_SetVarBranch_505,15816 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15865 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15865 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15865 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15865 -is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).is_SetVarBranch508,15865 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15923 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15923 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15923 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15923 -is_SetVarBranch(X) :- is_SetVarBranch(X,_).is_SetVarBranch509,15923 -is_FloatVarBranch_('FLOAT_VAR_NONE').is_FloatVarBranch_511,15968 -is_FloatVarBranch_('FLOAT_VAR_NONE').is_FloatVarBranch_511,15968 -is_FloatVarBranch_('FLOAT_VAR_RND'(_)).is_FloatVarBranch_512,16006 -is_FloatVarBranch_('FLOAT_VAR_RND'(_)).is_FloatVarBranch_512,16006 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MIN'(_)).is_FloatVarBranch_513,16046 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MIN'(_)).is_FloatVarBranch_513,16046 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MAX'(_)).is_FloatVarBranch_514,16092 -is_FloatVarBranch_('FLOAT_VAR_MERIT_MAX'(_)).is_FloatVarBranch_514,16092 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MIN').is_FloatVarBranch_515,16138 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MIN').is_FloatVarBranch_515,16138 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MAX').is_FloatVarBranch_516,16182 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_MAX').is_FloatVarBranch_516,16182 -is_FloatVarBranch_('FLOAT_VAR_AFC_MIN'(_)).is_FloatVarBranch_517,16226 -is_FloatVarBranch_('FLOAT_VAR_AFC_MIN'(_)).is_FloatVarBranch_517,16226 -is_FloatVarBranch_('FLOAT_VAR_AFC_MAX'(_)).is_FloatVarBranch_518,16270 -is_FloatVarBranch_('FLOAT_VAR_AFC_MAX'(_)).is_FloatVarBranch_518,16270 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MIN'(_)).is_FloatVarBranch_519,16314 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MIN'(_)).is_FloatVarBranch_519,16314 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MAX'(_)).is_FloatVarBranch_520,16363 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_MAX'(_)).is_FloatVarBranch_520,16363 -is_FloatVarBranch_('FLOAT_VAR_MIN_MIN').is_FloatVarBranch_521,16412 -is_FloatVarBranch_('FLOAT_VAR_MIN_MIN').is_FloatVarBranch_521,16412 -is_FloatVarBranch_('FLOAT_VAR_MIN_MAX').is_FloatVarBranch_522,16453 -is_FloatVarBranch_('FLOAT_VAR_MIN_MAX').is_FloatVarBranch_522,16453 -is_FloatVarBranch_('FLOAT_VAR_MAX_MIN').is_FloatVarBranch_523,16494 -is_FloatVarBranch_('FLOAT_VAR_MAX_MIN').is_FloatVarBranch_523,16494 -is_FloatVarBranch_('FLOAT_VAR_MAX_MAX').is_FloatVarBranch_524,16535 -is_FloatVarBranch_('FLOAT_VAR_MAX_MAX').is_FloatVarBranch_524,16535 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MIN').is_FloatVarBranch_525,16576 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MIN').is_FloatVarBranch_525,16576 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MAX').is_FloatVarBranch_526,16618 -is_FloatVarBranch_('FLOAT_VAR_SIZE_MAX').is_FloatVarBranch_526,16618 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MIN').is_FloatVarBranch_527,16660 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MIN').is_FloatVarBranch_527,16660 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MAX').is_FloatVarBranch_528,16709 -is_FloatVarBranch_('FLOAT_VAR_DEGREE_SIZE_MAX').is_FloatVarBranch_528,16709 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MIN'(_)).is_FloatVarBranch_529,16758 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MIN'(_)).is_FloatVarBranch_529,16758 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MAX'(_)).is_FloatVarBranch_530,16807 -is_FloatVarBranch_('FLOAT_VAR_AFC_SIZE_MAX'(_)).is_FloatVarBranch_530,16807 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MIN'(_)).is_FloatVarBranch_531,16856 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MIN'(_)).is_FloatVarBranch_531,16856 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MAX'(_)).is_FloatVarBranch_532,16910 -is_FloatVarBranch_('FLOAT_VAR_ACTIVITY_SIZE_MAX'(_)).is_FloatVarBranch_532,16910 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16965 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16965 -is_FloatVarBranch_(X, X) :-is_FloatVarBranch_534,16965 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17018 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17018 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17018 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17018 -is_FloatVarBranch(X,Y) :- nonvar(X), is_FloatVarBranch_(X,Y).is_FloatVarBranch537,17018 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17080 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17080 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17080 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17080 -is_FloatVarBranch(X) :- is_FloatVarBranch(X,_).is_FloatVarBranch538,17080 -is_IntValBranch_('INT_VAL_RND'(_)).is_IntValBranch_540,17129 -is_IntValBranch_('INT_VAL_RND'(_)).is_IntValBranch_540,17129 -is_IntValBranch_('INT_VAL'(_,_)).is_IntValBranch_541,17165 -is_IntValBranch_('INT_VAL'(_,_)).is_IntValBranch_541,17165 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_542,17199 -is_IntValBranch_('INT_VAL_MIN').is_IntValBranch_542,17199 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_543,17232 -is_IntValBranch_('INT_VAL_MED').is_IntValBranch_543,17232 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_544,17265 -is_IntValBranch_('INT_VAL_MAX').is_IntValBranch_544,17265 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_545,17298 -is_IntValBranch_('INT_VAL_SPLIT_MIN').is_IntValBranch_545,17298 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_546,17337 -is_IntValBranch_('INT_VAL_SPLIT_MAX').is_IntValBranch_546,17337 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_547,17376 -is_IntValBranch_('INT_VAL_RANGE_MIN').is_IntValBranch_547,17376 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_548,17415 -is_IntValBranch_('INT_VAL_RANGE_MAX').is_IntValBranch_548,17415 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_549,17454 -is_IntValBranch_('INT_VALUES_MIN').is_IntValBranch_549,17454 -is_IntValBranch_('INT_NEAR_MIN'(_)).is_IntValBranch_550,17490 -is_IntValBranch_('INT_NEAR_MIN'(_)).is_IntValBranch_550,17490 -is_IntValBranch_('INT_NEAR_MAX'(_)).is_IntValBranch_551,17527 -is_IntValBranch_('INT_NEAR_MAX'(_)).is_IntValBranch_551,17527 -is_IntValBranch_('INT_NEAR_INC'(_)).is_IntValBranch_552,17564 -is_IntValBranch_('INT_NEAR_INC'(_)).is_IntValBranch_552,17564 -is_IntValBranch_('INT_NEAR_DEC'(_)).is_IntValBranch_553,17601 -is_IntValBranch_('INT_NEAR_DEC'(_)).is_IntValBranch_553,17601 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17639 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17639 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17639 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17639 -is_IntValBranch_(X,X) :- is_IntValBranch_(X).is_IntValBranch_555,17639 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17686 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17686 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17686 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17686 -is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).is_IntValBranch557,17686 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17744 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17744 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17744 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17744 -is_IntValBranch(X) :- is_IntValBranch(X,_).is_IntValBranch558,17744 -is_SetValBranch_('SET_VAL_RND_INC'(_)).is_SetValBranch_560,17789 -is_SetValBranch_('SET_VAL_RND_INC'(_)).is_SetValBranch_560,17789 -is_SetValBranch_('SET_VAL_RND_EXC'(_)).is_SetValBranch_561,17829 -is_SetValBranch_('SET_VAL_RND_EXC'(_)).is_SetValBranch_561,17829 -is_SetValBranch_('SET_VAL'(_,_)).is_SetValBranch_562,17869 -is_SetValBranch_('SET_VAL'(_,_)).is_SetValBranch_562,17869 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_563,17903 -is_SetValBranch_('SET_VAL_MIN_INC').is_SetValBranch_563,17903 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_564,17940 -is_SetValBranch_('SET_VAL_MIN_EXC').is_SetValBranch_564,17940 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_565,17977 -is_SetValBranch_('SET_VAL_MED_INC').is_SetValBranch_565,17977 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_566,18014 -is_SetValBranch_('SET_VAL_MED_EXC').is_SetValBranch_566,18014 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_567,18051 -is_SetValBranch_('SET_VAL_MAX_INC').is_SetValBranch_567,18051 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_568,18088 -is_SetValBranch_('SET_VAL_MAX_EXC').is_SetValBranch_568,18088 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18126 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18126 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18126 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18126 -is_SetValBranch_(X,X) :- is_SetValBranch_(X).is_SetValBranch_570,18126 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18173 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18173 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18173 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18173 -is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).is_SetValBranch572,18173 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18231 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18231 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18231 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18231 -is_SetValBranch(X) :- is_SetValBranch(X,_).is_SetValBranch573,18231 -is_FloatValBranch_('FLOAT_VAL'(_,_)).is_FloatValBranch_575,18276 -is_FloatValBranch_('FLOAT_VAL'(_,_)).is_FloatValBranch_575,18276 -is_FloatValBranch_('FLOAT_VAL_SPLIT_RND'(_)).is_FloatValBranch_576,18314 -is_FloatValBranch_('FLOAT_VAL_SPLIT_RND'(_)).is_FloatValBranch_576,18314 -is_FloatValBranch_('FLOAT_VAL_SPLIT_MIN').is_FloatValBranch_577,18360 -is_FloatValBranch_('FLOAT_VAL_SPLIT_MIN').is_FloatValBranch_577,18360 -is_FloatValBranch_('FLOAT_VAL_SLIT_MAX').is_FloatValBranch_578,18403 -is_FloatValBranch_('FLOAT_VAL_SLIT_MAX').is_FloatValBranch_578,18403 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18446 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18446 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18446 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18446 -is_FloatValBranch_(X,X) :- is_FloatValBranch_(X).is_FloatValBranch_580,18446 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18497 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18497 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18497 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18497 -is_FloatValBranch(X,Y) :- nonvar(X), is_FloatValBranch_(X,Y).is_FloatValBranch582,18497 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18559 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18559 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18559 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18559 -is_FloatValBranch(X) :- is_FloatValBranch(X,_).is_FloatValBranch583,18559 -new_space(Space) :-new_space586,18609 -new_space(Space) :-new_space586,18609 -new_space(Space) :-new_space586,18609 -is_Space_('Space'(X),X) :-is_Space_600,19094 -is_Space_('Space'(X),X) :-is_Space_600,19094 -is_Space_('Space'(X),X) :-is_Space_600,19094 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19205 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19205 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19205 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19205 -is_Space(X,Y) :- nonvar(X), is_Space_(X,Y).is_Space603,19205 -is_Space(X) :- is_Space(X,_).is_Space604,19249 -is_Space(X) :- is_Space(X,_).is_Space604,19249 -is_Space(X) :- is_Space(X,_).is_Space604,19249 -is_Space(X) :- is_Space(X,_).is_Space604,19249 -is_Space(X) :- is_Space(X,_).is_Space604,19249 -is_Reify_('Reify'(X),X).is_Reify_606,19280 -is_Reify_('Reify'(X),X).is_Reify_606,19280 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19305 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19305 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19305 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19305 -is_Reify(X,Y) :- nonvar(X), is_Reify_(X,Y).is_Reify607,19305 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19349 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19349 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19349 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19349 -is_Reify(X) :- is_Reify(X,_).is_Reify608,19349 -new_intvars([], _Space, _Lo, _Hi).new_intvars612,19417 -new_intvars([], _Space, _Lo, _Hi).new_intvars612,19417 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19452 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19452 -new_intvars([IVar|IVars], Space, Lo, Hi) :-new_intvars613,19452 -new_intvars([], _Space, _IntSet).new_intvars617,19567 -new_intvars([], _Space, _IntSet).new_intvars617,19567 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19601 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19601 -new_intvars([IVar|IVars], Space, IntSet) :-new_intvars618,19601 -new_boolvars([], _Space).new_boolvars622,19716 -new_boolvars([], _Space).new_boolvars622,19716 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19742 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19742 -new_boolvars([BVar|BVars], Space) :-new_boolvars623,19742 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5, _X6).new_setvars627,19836 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5, _X6).new_setvars627,19836 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19891 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19891 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5, X6) :-new_setvars628,19891 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5).new_setvars632,20054 -new_setvars([], _Space, _X1, _X2, _X3, _X4, _X5).new_setvars632,20054 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20104 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20104 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4, X5) :-new_setvars633,20104 -new_setvars([], _Space, _X1, _X2, _X3, _X4).new_setvars637,20255 -new_setvars([], _Space, _X1, _X2, _X3, _X4).new_setvars637,20255 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20300 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20300 -new_setvars([SVar|SVars], Space, X1, X2, X3, X4) :-new_setvars638,20300 -new_setvars([], _Space, _X1, _X2, _X3).new_setvars642,20439 -new_setvars([], _Space, _X1, _X2, _X3).new_setvars642,20439 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20479 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20479 -new_setvars([SVar|SVars], Space, X1, X2, X3) :-new_setvars643,20479 -new_setvars([], _Space, _X1, _X2).new_setvars647,20606 -new_setvars([], _Space, _X1, _X2).new_setvars647,20606 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20641 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20641 -new_setvars([SVar|SVars], Space, X1, X2) :-new_setvars648,20641 -assert_integer(X) :- assert_is_int(X).assert_integer654,20779 -assert_integer(X) :- assert_is_int(X).assert_integer654,20779 -assert_integer(X) :- assert_is_int(X).assert_integer654,20779 -assert_integer(X) :- assert_is_int(X).assert_integer654,20779 -assert_integer(X) :- assert_is_int(X).assert_integer654,20779 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20819 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20819 -new_intvar(IVar, Space, Lo, Hi) :- !,new_intvar656,20819 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21034 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21034 -new_intvar(IVar, Space, IntSet) :- !,new_intvar663,21034 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21234 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21234 -new_floatvar(FVar, Space, Lo, Hi) :- !,new_floatvar670,21234 -new_boolvar(BVar, Space) :- !,new_boolvar678,21452 -new_boolvar(BVar, Space) :- !,new_boolvar678,21452 -new_boolvar(BVar, Space) :- !,new_boolvar678,21452 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22454 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22454 -new_setvar(SVar, Space, GlbMin, GlbMax, LubMin, LubMax, CardMin, CardMax) :-new_setvar699,22454 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23059 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23059 -new_setvar(SVar, Space, X1, X2, X3, X4, X5) :-new_setvar715,23059 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23846 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23846 -new_setvar(SVar,Space,X1,X2,X3,X4) :-new_setvar740,23846 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24631 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24631 -new_setvar(SVar,Space,X1,X2,X3) :-new_setvar768,24631 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25181 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25181 -new_setvar(SVar,Space,X1,X2) :-new_setvar789,25181 -new_tupleset( TupleSet, List ) :-new_tupleset797,25396 -new_tupleset( TupleSet, List ) :-new_tupleset797,25396 -new_tupleset( TupleSet, List ) :-new_tupleset797,25396 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25506 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25506 -new_dfa( DFA, S0, List, Finals ) :-new_dfa801,25506 -minimize(Space,IVar) :-minimize806,25607 -minimize(Space,IVar) :-minimize806,25607 -minimize(Space,IVar) :-minimize806,25607 -maximize(Space,IVar) :-maximize810,25732 -maximize(Space,IVar) :-maximize810,25732 -maximize(Space,IVar) :-maximize810,25732 -minimize(Space,IVar1,IVar2) :-minimize814,25857 -minimize(Space,IVar1,IVar2) :-minimize814,25857 -minimize(Space,IVar1,IVar2) :-minimize814,25857 -maximize(Space,IVar1,IVar2) :-maximize819,26038 -maximize(Space,IVar1,IVar2) :-maximize819,26038 -maximize(Space,IVar1,IVar2) :-maximize819,26038 -reify(Space,BVar,Mode,R) :-reify825,26220 -reify(Space,BVar,Mode,R) :-reify825,26220 -reify(Space,BVar,Mode,R) :-reify825,26220 -gecode_search_options_init(search_options(0,1.0,8,2,'RM_NONE',0,1,0)).gecode_search_options_init833,26423 -gecode_search_options_init(search_options(0,1.0,8,2,'RM_NONE',0,1,0)).gecode_search_options_init833,26423 -gecode_search_options_offset(restart,1).gecode_search_options_offset834,26494 -gecode_search_options_offset(restart,1).gecode_search_options_offset834,26494 -gecode_search_options_offset(threads,2).gecode_search_options_offset835,26535 -gecode_search_options_offset(threads,2).gecode_search_options_offset835,26535 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset836,26576 -gecode_search_options_offset(c_d ,3).gecode_search_options_offset836,26576 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset837,26617 -gecode_search_options_offset(a_d ,4).gecode_search_options_offset837,26617 -gecode_search_options_offset(cutoff, 5).gecode_search_options_offset838,26658 -gecode_search_options_offset(cutoff, 5).gecode_search_options_offset838,26658 -gecode_search_options_offset(nogoods_limit, 6).gecode_search_options_offset839,26699 -gecode_search_options_offset(nogoods_limit, 6).gecode_search_options_offset839,26699 -gecode_search_options_offset(clone, 7).gecode_search_options_offset840,26747 -gecode_search_options_offset(clone, 7).gecode_search_options_offset840,26747 -gecode_search_options_offset(stop, 8). % unimplementedgecode_search_options_offset841,26787 -gecode_search_options_offset(stop, 8). % unimplementedgecode_search_options_offset841,26787 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26843 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26843 -gecode_search_option_set(O,V,R) :-gecode_search_option_set843,26843 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26937 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26937 -gecode_search_options_from_alist(L,R) :-gecode_search_options_from_alist847,26937 -gecode_search_options_process_alist([], _R).gecode_search_options_process_alist851,27060 -gecode_search_options_process_alist([], _R).gecode_search_options_process_alist851,27060 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27105 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27105 -gecode_search_options_process_alist([H|T], R) :- !,gecode_search_options_process_alist852,27105 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27247 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27247 -gecode_search_options_process1(restart,R) :- !,gecode_search_options_process1856,27247 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27338 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27338 -gecode_search_options_process1(threads=N,R) :- !,gecode_search_options_process1858,27338 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27540 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27540 -gecode_search_options_process1(c_d=N,R) :- !,gecode_search_options_process1863,27540 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27694 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27694 -gecode_search_options_process1(a_d=N,R) :- !,gecode_search_options_process1867,27694 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27848 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27848 -gecode_search_options_process1(cutoff=C,R) :- !,gecode_search_options_process1871,27848 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28022 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28022 -gecode_search_options_process1(nogoods_limit=N,R) :- !,gecode_search_options_process1875,28022 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28214 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28214 -gecode_search_options_process1(clone=N,R) :- !,gecode_search_options_process1879,28214 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28380 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28380 -gecode_search_options_process1(O,_) :-gecode_search_options_process1883,28380 -search(Space, Solution) :-search886,28476 -search(Space, Solution) :-search886,28476 -search(Space, Solution) :-search886,28476 -search(Space, Solution, Alist) :-search889,28537 -search(Space, Solution, Alist) :-search889,28537 -search(Space, Solution, Alist) :-search889,28537 -get_for_vars([],_Space,[],_F).get_for_vars900,28807 -get_for_vars([],_Space,[],_F).get_for_vars900,28807 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28838 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28838 -get_for_vars([V|Vs],Space,[V2|V2s],F) :-get_for_vars901,28838 -get_assigned(Space, Var) :-get_assigned905,28942 -get_assigned(Space, Var) :-get_assigned905,28942 -get_assigned(Space, Var) :-get_assigned905,28942 -get_min(X, Space, Var) :-get_min917,29305 -get_min(X, Space, Var) :-get_min917,29305 -get_min(X, Space, Var) :-get_min917,29305 -get_max(X, Space, Var) :-get_max927,29604 -get_max(X, Space, Var) :-get_max927,29604 -get_max(X, Space, Var) :-get_max927,29604 -get_med(X, Space, Var) :-get_med937,29903 -get_med(X, Space, Var) :-get_med937,29903 -get_med(X, Space, Var) :-get_med937,29903 -get_val(X, Space, Var) :-get_val947,30202 -get_val(X, Space, Var) :-get_val947,30202 -get_val(X, Space, Var) :-get_val947,30202 -get_size(X, Space, Var) :-get_size957,30501 -get_size(X, Space, Var) :-get_size957,30501 -get_size(X, Space, Var) :-get_size957,30501 -get_width(X, Space, Var) :-get_width965,30738 -get_width(X, Space, Var) :-get_width965,30738 -get_width(X, Space, Var) :-get_width965,30738 -get_regret_min(X, Space, Var) :-get_regret_min973,30979 -get_regret_min(X, Space, Var) :-get_regret_min973,30979 -get_regret_min(X, Space, Var) :-get_regret_min973,30979 -get_regret_max(X, Space, Var) :-get_regret_max981,31240 -get_regret_max(X, Space, Var) :-get_regret_max981,31240 -get_regret_max(X, Space, Var) :-get_regret_max981,31240 -get_glbSize(X, Space, Var) :-get_glbSize989,31501 -get_glbSize(X, Space, Var) :-get_glbSize989,31501 -get_glbSize(X, Space, Var) :-get_glbSize989,31501 -get_lubSize(X, Space, Var) :-get_lubSize995,31680 -get_lubSize(X, Space, Var) :-get_lubSize995,31680 -get_lubSize(X, Space, Var) :-get_lubSize995,31680 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31859 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31859 -get_unknownSize(X, Space, Var) :-get_unknownSize1001,31859 -get_cardMin(X, Space, Var) :-get_cardMin1007,32050 -get_cardMin(X, Space, Var) :-get_cardMin1007,32050 -get_cardMin(X, Space, Var) :-get_cardMin1007,32050 -get_cardMax(X, Space, Var) :-get_cardMax1013,32229 -get_cardMax(X, Space, Var) :-get_cardMax1013,32229 -get_cardMax(X, Space, Var) :-get_cardMax1013,32229 -get_lubMin(X, Space, Var) :-get_lubMin1019,32408 -get_lubMin(X, Space, Var) :-get_lubMin1019,32408 -get_lubMin(X, Space, Var) :-get_lubMin1019,32408 -get_lubMax(X, Space, Var) :-get_lubMax1025,32584 -get_lubMax(X, Space, Var) :-get_lubMax1025,32584 -get_lubMax(X, Space, Var) :-get_lubMax1025,32584 -get_glbMin(X, Space, Var) :-get_glbMin1031,32760 -get_glbMin(X, Space, Var) :-get_glbMin1031,32760 -get_glbMin(X, Space, Var) :-get_glbMin1031,32760 -get_glbMax(X, Space, Var) :-get_glbMax1037,32936 -get_glbMax(X, Space, Var) :-get_glbMax1037,32936 -get_glbMax(X, Space, Var) :-get_glbMax1037,32936 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33112 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33112 -get_glb_ranges(X, Space, Var) :-get_glb_ranges1043,33112 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33297 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33297 -get_lub_ranges(X, Space, Var) :-get_lub_ranges1049,33297 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33482 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33482 -get_unknown_ranges(X, Space, Var) :-get_unknown_ranges1055,33482 -get_glb_values(X, Space, Var) :-get_glb_values1061,33679 -get_glb_values(X, Space, Var) :-get_glb_values1061,33679 -get_glb_values(X, Space, Var) :-get_glb_values1061,33679 -get_lub_values(X, Space, Var) :-get_lub_values1067,33864 -get_lub_values(X, Space, Var) :-get_lub_values1067,33864 -get_lub_values(X, Space, Var) :-get_lub_values1067,33864 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34049 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34049 -get_unknown_values(X, Space, Var) :-get_unknown_values1073,34049 -get_ranges(X, Space, Var) :-get_ranges1079,34246 -get_ranges(X, Space, Var) :-get_ranges1079,34246 -get_ranges(X, Space, Var) :-get_ranges1079,34246 -get_values(X, Space, Var) :-get_values1085,34419 -get_values(X, Space, Var) :-get_values1085,34419 -get_values(X, Space, Var) :-get_values1085,34419 -new_disjunctor(X, Space) :-new_disjunctor1091,34592 -new_disjunctor(X, Space) :-new_disjunctor1091,34592 -new_disjunctor(X, Space) :-new_disjunctor1091,34592 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_1096,34707 -is_Disjunctor_('Disjunctor'(D),D).is_Disjunctor_1096,34707 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34742 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34742 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34742 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34742 -is_Disjunctor(X,Y) :- nonvar(X), is_Disjunctor_(X,Y).is_Disjunctor1097,34742 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34796 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34796 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34796 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34796 -is_Disjunctor(X) :- is_Disjunctor(X,_).is_Disjunctor1098,34796 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34837 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34837 -assert_is_Disjunctor(X,Y) :-assert_is_Disjunctor1100,34837 -new_clause(X, Disj) :-new_clause1103,34940 -new_clause(X, Disj) :-new_clause1103,34940 -new_clause(X, Disj) :-new_clause1103,34940 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35045 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35045 -is_Clause_('Clause'(C),C) :-is_Clause_1108,35045 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35158 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35158 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35158 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35158 -is_Clause(X,Y) :- nonvar(X), is_Clause_(X,Y).is_Clause1111,35158 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35204 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35204 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35204 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35204 -is_Clause(X) :- is_Clause(X,_).is_Clause1112,35204 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35237 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35237 -assert_is_Clause(X,Y) :-assert_is_Clause1114,35237 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35328 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35328 -is_Space_or_Clause(X,Y) :-is_Space_or_Clause1117,35328 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35391 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35391 -assert_is_Space_or_Clause(X,Y) :-assert_is_Space_or_Clause1119,35391 -new_forward(Clause, X, Y) :-new_forward1123,35507 -new_forward(Clause, X, Y) :-new_forward1123,35507 -new_forward(Clause, X, Y) :-new_forward1123,35507 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36148 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36148 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36148 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36148 -new_intvars_(L,Space,N,I,J) :- length(L,N), new_intvars(L,Space,I,J).new_intvars_1144,36148 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36218 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36218 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36218 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36218 -new_intvars_(L,Space,N,IntSet) :- length(L,N), new_intvars(L,Space,IntSet).new_intvars_1145,36218 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36294 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36294 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36294 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36294 -new_boolvars_(L,Space,N) :- length(L,N), new_boolvars(L,Space).new_boolvars_1146,36294 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36358 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36358 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36358 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36358 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5,X6) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5,X6).new_setvars_1147,36358 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36456 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36456 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36456 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36456 -new_setvars_(L,Space,N,X1,X2,X3,X4,X5) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4,X5).new_setvars_1148,36456 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36548 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36548 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36548 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36548 -new_setvars_(L,Space,N,X1,X2,X3,X4) :- length(L,N), new_setvars(L,Space,X1,X2,X3,X4).new_setvars_1149,36548 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36634 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36634 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36634 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36634 -new_setvars_(L,Space,N,X1,X2,X3) :- length(L,N), new_setvars(L,Space,X1,X2,X3).new_setvars_1150,36634 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36714 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36714 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36714 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36714 -new_setvars_(L,Space,N,X1,X2) :- length(L,N), new_setvars(L,Space,X1,X2).new_setvars_1151,36714 -keep_(Space, Var) :-keep_1153,36789 -keep_(Space, Var) :-keep_1153,36789 -keep_(Space, Var) :-keep_1153,36789 -keep_list_(_Space, []) :- !.keep_list_1165,37286 -keep_list_(_Space, []) :- !.keep_list_1165,37286 -keep_list_(_Space, []) :- !.keep_list_1165,37286 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37315 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37315 -keep_list_(Space, [H|T]) :- !,keep_list_1166,37315 -keep_list_(_, X) :-keep_list_1168,37387 -keep_list_(_, X) :-keep_list_1168,37387 -keep_list_(_, X) :-keep_list_1168,37387 - -packages/gecode/README,0 - -packages/GitSHA1.c,83 -#define GIT_SHA1 GIT_SHA11,0 -const char g_GIT_SHA1[] = GIT_SHA1;g_GIT_SHA12,60 - -packages/jpl/jpl.pl,110516 -jpl_get_default_jvm_opts( Opts) :-jpl_get_default_jvm_opts102,2937 -jpl_get_default_jvm_opts( Opts) :-jpl_get_default_jvm_opts102,2937 -jpl_get_default_jvm_opts( Opts) :-jpl_get_default_jvm_opts102,2937 -jpl_set_default_jvm_opts( Opts) :-jpl_set_default_jvm_opts107,3088 -jpl_set_default_jvm_opts( Opts) :-jpl_set_default_jvm_opts107,3088 -jpl_set_default_jvm_opts( Opts) :-jpl_set_default_jvm_opts107,3088 -jpl_get_actual_jvm_opts( Opts) :-jpl_get_actual_jvm_opts114,3278 -jpl_get_actual_jvm_opts( Opts) :-jpl_get_actual_jvm_opts114,3278 -jpl_get_actual_jvm_opts( Opts) :-jpl_get_actual_jvm_opts114,3278 -jpl_assert( Fact) :-jpl_assert119,3427 -jpl_assert( Fact) :-jpl_assert119,3427 -jpl_assert( Fact) :-jpl_assert119,3427 -jpl_assert_policy( jpl_field_spec_cache(_,_,_,_,_,_), yes).jpl_assert_policy127,3598 -jpl_assert_policy( jpl_field_spec_cache(_,_,_,_,_,_), yes).jpl_assert_policy127,3598 -jpl_assert_policy( jpl_method_spec_cache(_,_,_,_,_,_,_,_), yes).jpl_assert_policy128,3658 -jpl_assert_policy( jpl_method_spec_cache(_,_,_,_,_,_,_,_), yes).jpl_assert_policy128,3658 -jpl_assert_policy( jpl_class_tag_type_cache(_,_), yes).jpl_assert_policy129,3723 -jpl_assert_policy( jpl_class_tag_type_cache(_,_), yes).jpl_assert_policy129,3723 -jpl_assert_policy( jpl_classname_type_cache(_,_), yes).jpl_assert_policy130,3779 -jpl_assert_policy( jpl_classname_type_cache(_,_), yes).jpl_assert_policy130,3779 -jpl_assert_policy( jpl_iref_type_cache(_,_), no). % must correspond to JPL_CACHE_TYPE_OF_REF in jpl.cjpl_assert_policy131,3835 -jpl_assert_policy( jpl_iref_type_cache(_,_), no). % must correspond to JPL_CACHE_TYPE_OF_REF in jpl.cjpl_assert_policy131,3835 -jpl_assert_policy( jpl_field_spec_is_cached(_), YN) :-jpl_assert_policy133,3940 -jpl_assert_policy( jpl_field_spec_is_cached(_), YN) :-jpl_assert_policy133,3940 -jpl_assert_policy( jpl_field_spec_is_cached(_), YN) :-jpl_assert_policy133,3940 -jpl_assert_policy( jpl_method_spec_is_cached(_), YN) :-jpl_assert_policy135,4055 -jpl_assert_policy( jpl_method_spec_is_cached(_), YN) :-jpl_assert_policy135,4055 -jpl_assert_policy( jpl_method_spec_is_cached(_), YN) :-jpl_assert_policy135,4055 -jpl_tidy_iref_type_cache( Iref) :-jpl_tidy_iref_type_cache144,4421 -jpl_tidy_iref_type_cache( Iref) :-jpl_tidy_iref_type_cache144,4421 -jpl_tidy_iref_type_cache( Iref) :-jpl_tidy_iref_type_cache144,4421 -jpl_call(X, Mspec, Params, R) :-jpl_call168,5232 -jpl_call(X, Mspec, Params, R) :-jpl_call168,5232 -jpl_call(X, Mspec, Params, R) :-jpl_call168,5232 -jpl_call_instance(Type, Obj, Mname, Params, Taps, A, Rx) :-jpl_call_instance246,8394 -jpl_call_instance(Type, Obj, Mname, Params, Taps, A, Rx) :-jpl_call_instance246,8394 -jpl_call_instance(Type, Obj, Mname, Params, Taps, A, Rx) :-jpl_call_instance246,8394 -jpl_call_static(Type, ClassObj, Mname, Params, Taps, A, Rx) :-jpl_call_static293,10797 -jpl_call_static(Type, ClassObj, Mname, Params, Taps, A, Rx) :-jpl_call_static293,10797 -jpl_call_static(Type, ClassObj, Mname, Params, Taps, A, Rx) :-jpl_call_static293,10797 -jpl_call_instance_method(void, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method331,12419 -jpl_call_instance_method(void, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method331,12419 -jpl_call_instance_method(void, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method331,12419 -jpl_call_instance_method(boolean, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method335,12533 -jpl_call_instance_method(boolean, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method335,12533 -jpl_call_instance_method(boolean, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method335,12533 -jpl_call_instance_method(byte, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method338,12642 -jpl_call_instance_method(byte, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method338,12642 -jpl_call_instance_method(byte, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method338,12642 -jpl_call_instance_method(char, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method341,12745 -jpl_call_instance_method(char, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method341,12745 -jpl_call_instance_method(char, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method341,12745 -jpl_call_instance_method(short, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method344,12848 -jpl_call_instance_method(short, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method344,12848 -jpl_call_instance_method(short, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method344,12848 -jpl_call_instance_method(int, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method347,12953 -jpl_call_instance_method(int, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method347,12953 -jpl_call_instance_method(int, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method347,12953 -jpl_call_instance_method(long, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method350,13054 -jpl_call_instance_method(long, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method350,13054 -jpl_call_instance_method(long, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method350,13054 -jpl_call_instance_method(float, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method353,13157 -jpl_call_instance_method(float, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method353,13157 -jpl_call_instance_method(float, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method353,13157 -jpl_call_instance_method(double, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method356,13262 -jpl_call_instance_method(double, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method356,13262 -jpl_call_instance_method(double, Class, MID, Tfps, Ps, R) :-jpl_call_instance_method356,13262 -jpl_call_instance_method(array(_), Class, MID, Tfps, Ps, R) :-jpl_call_instance_method359,13369 -jpl_call_instance_method(array(_), Class, MID, Tfps, Ps, R) :-jpl_call_instance_method359,13369 -jpl_call_instance_method(array(_), Class, MID, Tfps, Ps, R) :-jpl_call_instance_method359,13369 -jpl_call_instance_method(class(_,_), Class, MID, Tfps, Ps, R) :-jpl_call_instance_method362,13478 -jpl_call_instance_method(class(_,_), Class, MID, Tfps, Ps, R) :-jpl_call_instance_method362,13478 -jpl_call_instance_method(class(_,_), Class, MID, Tfps, Ps, R) :-jpl_call_instance_method362,13478 -jpl_call_static_method(void, Class, MID, Tfps, Ps, R) :-jpl_call_static_method369,13768 -jpl_call_static_method(void, Class, MID, Tfps, Ps, R) :-jpl_call_static_method369,13768 -jpl_call_static_method(void, Class, MID, Tfps, Ps, R) :-jpl_call_static_method369,13768 -jpl_call_static_method(boolean, Class, MID, Tfps, Ps, R) :-jpl_call_static_method373,13886 -jpl_call_static_method(boolean, Class, MID, Tfps, Ps, R) :-jpl_call_static_method373,13886 -jpl_call_static_method(boolean, Class, MID, Tfps, Ps, R) :-jpl_call_static_method373,13886 -jpl_call_static_method(byte, Class, MID, Tfps, Ps, R) :-jpl_call_static_method376,13999 -jpl_call_static_method(byte, Class, MID, Tfps, Ps, R) :-jpl_call_static_method376,13999 -jpl_call_static_method(byte, Class, MID, Tfps, Ps, R) :-jpl_call_static_method376,13999 -jpl_call_static_method(char, Class, MID, Tfps, Ps, R) :-jpl_call_static_method379,14106 -jpl_call_static_method(char, Class, MID, Tfps, Ps, R) :-jpl_call_static_method379,14106 -jpl_call_static_method(char, Class, MID, Tfps, Ps, R) :-jpl_call_static_method379,14106 -jpl_call_static_method(short, Class, MID, Tfps, Ps, R) :-jpl_call_static_method382,14213 -jpl_call_static_method(short, Class, MID, Tfps, Ps, R) :-jpl_call_static_method382,14213 -jpl_call_static_method(short, Class, MID, Tfps, Ps, R) :-jpl_call_static_method382,14213 -jpl_call_static_method(int, Class, MID, Tfps, Ps, R) :-jpl_call_static_method385,14322 -jpl_call_static_method(int, Class, MID, Tfps, Ps, R) :-jpl_call_static_method385,14322 -jpl_call_static_method(int, Class, MID, Tfps, Ps, R) :-jpl_call_static_method385,14322 -jpl_call_static_method(long, Class, MID, Tfps, Ps, R) :-jpl_call_static_method388,14427 -jpl_call_static_method(long, Class, MID, Tfps, Ps, R) :-jpl_call_static_method388,14427 -jpl_call_static_method(long, Class, MID, Tfps, Ps, R) :-jpl_call_static_method388,14427 -jpl_call_static_method(float, Class, MID, Tfps, Ps, R) :-jpl_call_static_method391,14534 -jpl_call_static_method(float, Class, MID, Tfps, Ps, R) :-jpl_call_static_method391,14534 -jpl_call_static_method(float, Class, MID, Tfps, Ps, R) :-jpl_call_static_method391,14534 -jpl_call_static_method(double, Class, MID, Tfps, Ps, R) :-jpl_call_static_method394,14643 -jpl_call_static_method(double, Class, MID, Tfps, Ps, R) :-jpl_call_static_method394,14643 -jpl_call_static_method(double, Class, MID, Tfps, Ps, R) :-jpl_call_static_method394,14643 -jpl_call_static_method(array(_), Class, MID, Tfps, Ps, R) :-jpl_call_static_method397,14754 -jpl_call_static_method(array(_), Class, MID, Tfps, Ps, R) :-jpl_call_static_method397,14754 -jpl_call_static_method(array(_), Class, MID, Tfps, Ps, R) :-jpl_call_static_method397,14754 -jpl_call_static_method(class(_,_), Class, MID, Tfps, Ps, R) :-jpl_call_static_method400,14867 -jpl_call_static_method(class(_,_), Class, MID, Tfps, Ps, R) :-jpl_call_static_method400,14867 -jpl_call_static_method(class(_,_), Class, MID, Tfps, Ps, R) :-jpl_call_static_method400,14867 -jpl_fergus_find_candidate([], Candidate, Candidate, []).jpl_fergus_find_candidate407,15122 -jpl_fergus_find_candidate([], Candidate, Candidate, []).jpl_fergus_find_candidate407,15122 -jpl_fergus_find_candidate([X|Xs], Candidate0, Candidate, Rest) :-jpl_fergus_find_candidate409,15180 -jpl_fergus_find_candidate([X|Xs], Candidate0, Candidate, Rest) :-jpl_fergus_find_candidate409,15180 -jpl_fergus_find_candidate([X|Xs], Candidate0, Candidate, Rest) :-jpl_fergus_find_candidate409,15180 -jpl_fergus_greater(z5(_,_,_,_,Tps1), z5(_,_,_,_,Tps2)) :-jpl_fergus_greater420,15529 -jpl_fergus_greater(z5(_,_,_,_,Tps1), z5(_,_,_,_,Tps2)) :-jpl_fergus_greater420,15529 -jpl_fergus_greater(z5(_,_,_,_,Tps1), z5(_,_,_,_,Tps2)) :-jpl_fergus_greater420,15529 -jpl_fergus_greater(z3(_,_,Tps1), z3(_,_,Tps2)) :-jpl_fergus_greater422,15621 -jpl_fergus_greater(z3(_,_,Tps1), z3(_,_,Tps2)) :-jpl_fergus_greater422,15621 -jpl_fergus_greater(z3(_,_,Tps1), z3(_,_,Tps2)) :-jpl_fergus_greater422,15621 -jpl_fergus_is_the_greatest([X|Xs], Greatest) :-jpl_fergus_is_the_greatest437,16215 -jpl_fergus_is_the_greatest([X|Xs], Greatest) :-jpl_fergus_is_the_greatest437,16215 -jpl_fergus_is_the_greatest([X|Xs], Greatest) :-jpl_fergus_is_the_greatest437,16215 -jpl_get(X, Fspec, V) :-jpl_get467,17136 -jpl_get(X, Fspec, V) :-jpl_get467,17136 -jpl_get(X, Fspec, V) :-jpl_get467,17136 -jpl_get_static(Type, ClassObj, Fname, Vx) :-jpl_get_static519,19103 -jpl_get_static(Type, ClassObj, Fname, Vx) :-jpl_get_static519,19103 -jpl_get_static(Type, ClassObj, Fname, Vx) :-jpl_get_static519,19103 -jpl_get_instance(class(_,_), Type, Obj, Fname, Vx) :-jpl_get_instance551,20213 -jpl_get_instance(class(_,_), Type, Obj, Fname, Vx) :-jpl_get_instance551,20213 -jpl_get_instance(class(_,_), Type, Obj, Fname, Vx) :-jpl_get_instance551,20213 -jpl_get_instance(array(ElementType), _, Array, Fspec, Vx) :-jpl_get_instance578,21230 -jpl_get_instance(array(ElementType), _, Array, Fspec, Vx) :-jpl_get_instance578,21230 -jpl_get_instance(array(ElementType), _, Array, Fspec, Vx) :-jpl_get_instance578,21230 -jpl_get_array_element(Type, Array, Index, Vc) :-jpl_get_array_element642,23852 -jpl_get_array_element(Type, Array, Index, Vc) :-jpl_get_array_element642,23852 -jpl_get_array_element(Type, Array, Index, Vc) :-jpl_get_array_element642,23852 -jpl_get_array_elements(ElementType, Array, N, M, Vs) :-jpl_get_array_elements662,24575 -jpl_get_array_elements(ElementType, Array, N, M, Vs) :-jpl_get_array_elements662,24575 -jpl_get_array_elements(ElementType, Array, N, M, Vs) :-jpl_get_array_elements662,24575 -jpl_get_instance_field(boolean, Obj, FieldID, V) :-jpl_get_instance_field672,24910 -jpl_get_instance_field(boolean, Obj, FieldID, V) :-jpl_get_instance_field672,24910 -jpl_get_instance_field(boolean, Obj, FieldID, V) :-jpl_get_instance_field672,24910 -jpl_get_instance_field(byte, Obj, FieldID, V) :-jpl_get_instance_field674,24998 -jpl_get_instance_field(byte, Obj, FieldID, V) :-jpl_get_instance_field674,24998 -jpl_get_instance_field(byte, Obj, FieldID, V) :-jpl_get_instance_field674,24998 -jpl_get_instance_field(char, Obj, FieldID, V) :-jpl_get_instance_field676,25080 -jpl_get_instance_field(char, Obj, FieldID, V) :-jpl_get_instance_field676,25080 -jpl_get_instance_field(char, Obj, FieldID, V) :-jpl_get_instance_field676,25080 -jpl_get_instance_field(short, Obj, FieldID, V) :-jpl_get_instance_field678,25162 -jpl_get_instance_field(short, Obj, FieldID, V) :-jpl_get_instance_field678,25162 -jpl_get_instance_field(short, Obj, FieldID, V) :-jpl_get_instance_field678,25162 -jpl_get_instance_field(int, Obj, FieldID, V) :-jpl_get_instance_field680,25246 -jpl_get_instance_field(int, Obj, FieldID, V) :-jpl_get_instance_field680,25246 -jpl_get_instance_field(int, Obj, FieldID, V) :-jpl_get_instance_field680,25246 -jpl_get_instance_field(long, Obj, FieldID, V) :-jpl_get_instance_field682,25326 -jpl_get_instance_field(long, Obj, FieldID, V) :-jpl_get_instance_field682,25326 -jpl_get_instance_field(long, Obj, FieldID, V) :-jpl_get_instance_field682,25326 -jpl_get_instance_field(float, Obj, FieldID, V) :-jpl_get_instance_field684,25408 -jpl_get_instance_field(float, Obj, FieldID, V) :-jpl_get_instance_field684,25408 -jpl_get_instance_field(float, Obj, FieldID, V) :-jpl_get_instance_field684,25408 -jpl_get_instance_field(double, Obj, FieldID, V) :-jpl_get_instance_field686,25492 -jpl_get_instance_field(double, Obj, FieldID, V) :-jpl_get_instance_field686,25492 -jpl_get_instance_field(double, Obj, FieldID, V) :-jpl_get_instance_field686,25492 -jpl_get_instance_field(class(_,_), Obj, FieldID, V) :-jpl_get_instance_field688,25578 -jpl_get_instance_field(class(_,_), Obj, FieldID, V) :-jpl_get_instance_field688,25578 -jpl_get_instance_field(class(_,_), Obj, FieldID, V) :-jpl_get_instance_field688,25578 -jpl_get_instance_field(array(_), Obj, FieldID, V) :-jpl_get_instance_field690,25668 -jpl_get_instance_field(array(_), Obj, FieldID, V) :-jpl_get_instance_field690,25668 -jpl_get_instance_field(array(_), Obj, FieldID, V) :-jpl_get_instance_field690,25668 -jpl_get_object_array_elements(Array, Lo, Hi, Vcs) :-jpl_get_object_array_elements704,26281 -jpl_get_object_array_elements(Array, Lo, Hi, Vcs) :-jpl_get_object_array_elements704,26281 -jpl_get_object_array_elements(Array, Lo, Hi, Vcs) :-jpl_get_object_array_elements704,26281 -jpl_get_primitive_array_elements(ElementType, Array, Lo, Hi, Vcs) :-jpl_get_primitive_array_elements722,26917 -jpl_get_primitive_array_elements(ElementType, Array, Lo, Hi, Vcs) :-jpl_get_primitive_array_elements722,26917 -jpl_get_primitive_array_elements(ElementType, Array, Lo, Hi, Vcs) :-jpl_get_primitive_array_elements722,26917 -jpl_get_primitive_array_region(boolean, Array, Lo, S, I) :-jpl_get_primitive_array_region735,27368 -jpl_get_primitive_array_region(boolean, Array, Lo, S, I) :-jpl_get_primitive_array_region735,27368 -jpl_get_primitive_array_region(boolean, Array, Lo, S, I) :-jpl_get_primitive_array_region735,27368 -jpl_get_primitive_array_region(byte, Array, Lo, S, I) :-jpl_get_primitive_array_region737,27484 -jpl_get_primitive_array_region(byte, Array, Lo, S, I) :-jpl_get_primitive_array_region737,27484 -jpl_get_primitive_array_region(byte, Array, Lo, S, I) :-jpl_get_primitive_array_region737,27484 -jpl_get_primitive_array_region(char, Array, Lo, S, I) :-jpl_get_primitive_array_region739,27591 -jpl_get_primitive_array_region(char, Array, Lo, S, I) :-jpl_get_primitive_array_region739,27591 -jpl_get_primitive_array_region(char, Array, Lo, S, I) :-jpl_get_primitive_array_region739,27591 -jpl_get_primitive_array_region(short, Array, Lo, S, I) :-jpl_get_primitive_array_region741,27698 -jpl_get_primitive_array_region(short, Array, Lo, S, I) :-jpl_get_primitive_array_region741,27698 -jpl_get_primitive_array_region(short, Array, Lo, S, I) :-jpl_get_primitive_array_region741,27698 -jpl_get_primitive_array_region(int, Array, Lo, S, I) :-jpl_get_primitive_array_region743,27808 -jpl_get_primitive_array_region(int, Array, Lo, S, I) :-jpl_get_primitive_array_region743,27808 -jpl_get_primitive_array_region(int, Array, Lo, S, I) :-jpl_get_primitive_array_region743,27808 -jpl_get_primitive_array_region(long, Array, Lo, S, I) :-jpl_get_primitive_array_region745,27912 -jpl_get_primitive_array_region(long, Array, Lo, S, I) :-jpl_get_primitive_array_region745,27912 -jpl_get_primitive_array_region(long, Array, Lo, S, I) :-jpl_get_primitive_array_region745,27912 -jpl_get_primitive_array_region(float, Array, Lo, S, I) :-jpl_get_primitive_array_region747,28019 -jpl_get_primitive_array_region(float, Array, Lo, S, I) :-jpl_get_primitive_array_region747,28019 -jpl_get_primitive_array_region(float, Array, Lo, S, I) :-jpl_get_primitive_array_region747,28019 -jpl_get_primitive_array_region(double, Array, Lo, S, I) :-jpl_get_primitive_array_region749,28129 -jpl_get_primitive_array_region(double, Array, Lo, S, I) :-jpl_get_primitive_array_region749,28129 -jpl_get_primitive_array_region(double, Array, Lo, S, I) :-jpl_get_primitive_array_region749,28129 -jpl_get_static_field(boolean, Array, FieldID, V) :-jpl_get_static_field754,28324 -jpl_get_static_field(boolean, Array, FieldID, V) :-jpl_get_static_field754,28324 -jpl_get_static_field(boolean, Array, FieldID, V) :-jpl_get_static_field754,28324 -jpl_get_static_field(byte, Array, FieldID, V) :-jpl_get_static_field756,28420 -jpl_get_static_field(byte, Array, FieldID, V) :-jpl_get_static_field756,28420 -jpl_get_static_field(byte, Array, FieldID, V) :-jpl_get_static_field756,28420 -jpl_get_static_field(char, Array, FieldID, V) :-jpl_get_static_field758,28510 -jpl_get_static_field(char, Array, FieldID, V) :-jpl_get_static_field758,28510 -jpl_get_static_field(char, Array, FieldID, V) :-jpl_get_static_field758,28510 -jpl_get_static_field(short, Array, FieldID, V) :-jpl_get_static_field760,28600 -jpl_get_static_field(short, Array, FieldID, V) :-jpl_get_static_field760,28600 -jpl_get_static_field(short, Array, FieldID, V) :-jpl_get_static_field760,28600 -jpl_get_static_field(int, Array, FieldID, V) :-jpl_get_static_field762,28692 -jpl_get_static_field(int, Array, FieldID, V) :-jpl_get_static_field762,28692 -jpl_get_static_field(int, Array, FieldID, V) :-jpl_get_static_field762,28692 -jpl_get_static_field(long, Array, FieldID, V) :-jpl_get_static_field764,28780 -jpl_get_static_field(long, Array, FieldID, V) :-jpl_get_static_field764,28780 -jpl_get_static_field(long, Array, FieldID, V) :-jpl_get_static_field764,28780 -jpl_get_static_field(float, Array, FieldID, V) :-jpl_get_static_field766,28870 -jpl_get_static_field(float, Array, FieldID, V) :-jpl_get_static_field766,28870 -jpl_get_static_field(float, Array, FieldID, V) :-jpl_get_static_field766,28870 -jpl_get_static_field(double, Array, FieldID, V) :-jpl_get_static_field768,28962 -jpl_get_static_field(double, Array, FieldID, V) :-jpl_get_static_field768,28962 -jpl_get_static_field(double, Array, FieldID, V) :-jpl_get_static_field768,28962 -jpl_get_static_field(class(_,_), Array, FieldID, V) :-jpl_get_static_field770,29056 -jpl_get_static_field(class(_,_), Array, FieldID, V) :-jpl_get_static_field770,29056 -jpl_get_static_field(class(_,_), Array, FieldID, V) :-jpl_get_static_field770,29056 -jpl_get_static_field(array(_), Array, FieldID, V) :-jpl_get_static_field772,29154 -jpl_get_static_field(array(_), Array, FieldID, V) :-jpl_get_static_field772,29154 -jpl_get_static_field(array(_), Array, FieldID, V) :-jpl_get_static_field772,29154 -jpl_new(X, Params, V) :-jpl_new807,30597 -jpl_new(X, Params, V) :-jpl_new807,30597 -jpl_new(X, Params, V) :-jpl_new807,30597 -jpl_new_1(class(Ps,Cs), Params, Vx) :-jpl_new_1849,31972 -jpl_new_1(class(Ps,Cs), Params, Vx) :-jpl_new_1849,31972 -jpl_new_1(class(Ps,Cs), Params, Vx) :-jpl_new_1849,31972 -jpl_new_1(array(T), Params, Vx) :-jpl_new_1927,35121 -jpl_new_1(array(T), Params, Vx) :-jpl_new_1927,35121 -jpl_new_1(array(T), Params, Vx) :-jpl_new_1927,35121 -jpl_new_1(T, _Params, _Vx) :- % doomed attempt to create new primitive type instance (formerly a dubious completist feature :-)jpl_new_1951,36097 -jpl_new_1(T, _Params, _Vx) :- % doomed attempt to create new primitive type instance (formerly a dubious completist feature :-)jpl_new_1951,36097 -jpl_new_1(T, _Params, _Vx) :- % doomed attempt to create new primitive type instance (formerly a dubious completist feature :-)jpl_new_1951,36097 -jpl_new_1( T, _, _) :-jpl_new_1970,37146 -jpl_new_1( T, _, _) :-jpl_new_1970,37146 -jpl_new_1( T, _, _) :-jpl_new_1970,37146 -jpl_new_array(boolean, Len, A) :-jpl_new_array979,37428 -jpl_new_array(boolean, Len, A) :-jpl_new_array979,37428 -jpl_new_array(boolean, Len, A) :-jpl_new_array979,37428 -jpl_new_array(byte, Len, A) :-jpl_new_array982,37490 -jpl_new_array(byte, Len, A) :-jpl_new_array982,37490 -jpl_new_array(byte, Len, A) :-jpl_new_array982,37490 -jpl_new_array(char, Len, A) :-jpl_new_array985,37546 -jpl_new_array(char, Len, A) :-jpl_new_array985,37546 -jpl_new_array(char, Len, A) :-jpl_new_array985,37546 -jpl_new_array(short, Len, A) :-jpl_new_array988,37602 -jpl_new_array(short, Len, A) :-jpl_new_array988,37602 -jpl_new_array(short, Len, A) :-jpl_new_array988,37602 -jpl_new_array(int, Len, A) :-jpl_new_array991,37660 -jpl_new_array(int, Len, A) :-jpl_new_array991,37660 -jpl_new_array(int, Len, A) :-jpl_new_array991,37660 -jpl_new_array(long, Len, A) :-jpl_new_array994,37714 -jpl_new_array(long, Len, A) :-jpl_new_array994,37714 -jpl_new_array(long, Len, A) :-jpl_new_array994,37714 -jpl_new_array(float, Len, A) :-jpl_new_array997,37770 -jpl_new_array(float, Len, A) :-jpl_new_array997,37770 -jpl_new_array(float, Len, A) :-jpl_new_array997,37770 -jpl_new_array(double, Len, A) :-jpl_new_array1000,37828 -jpl_new_array(double, Len, A) :-jpl_new_array1000,37828 -jpl_new_array(double, Len, A) :-jpl_new_array1000,37828 -jpl_new_array(array(T), Len, A) :-jpl_new_array1003,37888 -jpl_new_array(array(T), Len, A) :-jpl_new_array1003,37888 -jpl_new_array(array(T), Len, A) :-jpl_new_array1003,37888 -jpl_new_array(class(Ps,Cs), Len, A) :-jpl_new_array1007,38036 -jpl_new_array(class(Ps,Cs), Len, A) :-jpl_new_array1007,38036 -jpl_new_array(class(Ps,Cs), Len, A) :-jpl_new_array1007,38036 -jpl_set(X, Fspec, V) :-jpl_set1037,39020 -jpl_set(X, Fspec, V) :-jpl_set1037,39020 -jpl_set(X, Fspec, V) :-jpl_set1037,39020 -jpl_set_instance(class(_,_), Type, Obj, Fname, V) :- % a non-array objectjpl_set_instance1087,41057 -jpl_set_instance(class(_,_), Type, Obj, Fname, V) :- % a non-array objectjpl_set_instance1087,41057 -jpl_set_instance(class(_,_), Type, Obj, Fname, V) :- % a non-array objectjpl_set_instance1087,41057 -jpl_set_instance(array(Type), _, Obj, Fspec, V) :-jpl_set_instance1134,42837 -jpl_set_instance(array(Type), _, Obj, Fspec, V) :-jpl_set_instance1134,42837 -jpl_set_instance(array(Type), _, Obj, Fspec, V) :-jpl_set_instance1134,42837 -jpl_set_static(Type, ClassObj, Fname, V) :-jpl_set_static1213,45879 -jpl_set_static(Type, ClassObj, Fname, V) :-jpl_set_static1213,45879 -jpl_set_static(Type, ClassObj, Fname, V) :-jpl_set_static1213,45879 -jpl_set_array(T, A, N, I, Ds) :-jpl_set_array1266,47937 -jpl_set_array(T, A, N, I, Ds) :-jpl_set_array1266,47937 -jpl_set_array(T, A, N, I, Ds) :-jpl_set_array1266,47937 -jpl_set_array_1([], _, _, _).jpl_set_array_11311,49767 -jpl_set_array_1([], _, _, _).jpl_set_array_11311,49767 -jpl_set_array_1([V|Vs], Tprim, Ib, Bp) :-jpl_set_array_11312,49797 -jpl_set_array_1([V|Vs], Tprim, Ib, Bp) :-jpl_set_array_11312,49797 -jpl_set_array_1([V|Vs], Tprim, Ib, Bp) :-jpl_set_array_11312,49797 -jpl_set_elements(boolean, Obj, N, I, Bp) :-jpl_set_elements1320,50054 -jpl_set_elements(boolean, Obj, N, I, Bp) :-jpl_set_elements1320,50054 -jpl_set_elements(boolean, Obj, N, I, Bp) :-jpl_set_elements1320,50054 -jpl_set_elements(char, Obj, N, I, Bp) :-jpl_set_elements1322,50152 -jpl_set_elements(char, Obj, N, I, Bp) :-jpl_set_elements1322,50152 -jpl_set_elements(char, Obj, N, I, Bp) :-jpl_set_elements1322,50152 -jpl_set_elements(byte, Obj, N, I, Bp) :-jpl_set_elements1324,50241 -jpl_set_elements(byte, Obj, N, I, Bp) :-jpl_set_elements1324,50241 -jpl_set_elements(byte, Obj, N, I, Bp) :-jpl_set_elements1324,50241 -jpl_set_elements(short, Obj, N, I, Bp) :-jpl_set_elements1326,50330 -jpl_set_elements(short, Obj, N, I, Bp) :-jpl_set_elements1326,50330 -jpl_set_elements(short, Obj, N, I, Bp) :-jpl_set_elements1326,50330 -jpl_set_elements(int, Obj, N, I, Bp) :-jpl_set_elements1328,50422 -jpl_set_elements(int, Obj, N, I, Bp) :-jpl_set_elements1328,50422 -jpl_set_elements(int, Obj, N, I, Bp) :-jpl_set_elements1328,50422 -jpl_set_elements(long, Obj, N, I, Bp) :-jpl_set_elements1330,50508 -jpl_set_elements(long, Obj, N, I, Bp) :-jpl_set_elements1330,50508 -jpl_set_elements(long, Obj, N, I, Bp) :-jpl_set_elements1330,50508 -jpl_set_elements(float, Obj, N, I, Bp) :-jpl_set_elements1332,50597 -jpl_set_elements(float, Obj, N, I, Bp) :-jpl_set_elements1332,50597 -jpl_set_elements(float, Obj, N, I, Bp) :-jpl_set_elements1332,50597 -jpl_set_elements(double, Obj, N, I, Bp) :-jpl_set_elements1334,50689 -jpl_set_elements(double, Obj, N, I, Bp) :-jpl_set_elements1334,50689 -jpl_set_elements(double, Obj, N, I, Bp) :-jpl_set_elements1334,50689 -jpl_set_instance_field(boolean, Obj, FieldID, V) :-jpl_set_instance_field1344,51059 -jpl_set_instance_field(boolean, Obj, FieldID, V) :-jpl_set_instance_field1344,51059 -jpl_set_instance_field(boolean, Obj, FieldID, V) :-jpl_set_instance_field1344,51059 -jpl_set_instance_field(byte, Obj, FieldID, V) :-jpl_set_instance_field1346,51147 -jpl_set_instance_field(byte, Obj, FieldID, V) :-jpl_set_instance_field1346,51147 -jpl_set_instance_field(byte, Obj, FieldID, V) :-jpl_set_instance_field1346,51147 -jpl_set_instance_field(char, Obj, FieldID, V) :-jpl_set_instance_field1348,51229 -jpl_set_instance_field(char, Obj, FieldID, V) :-jpl_set_instance_field1348,51229 -jpl_set_instance_field(char, Obj, FieldID, V) :-jpl_set_instance_field1348,51229 -jpl_set_instance_field(short, Obj, FieldID, V) :-jpl_set_instance_field1350,51311 -jpl_set_instance_field(short, Obj, FieldID, V) :-jpl_set_instance_field1350,51311 -jpl_set_instance_field(short, Obj, FieldID, V) :-jpl_set_instance_field1350,51311 -jpl_set_instance_field(int, Obj, FieldID, V) :-jpl_set_instance_field1352,51395 -jpl_set_instance_field(int, Obj, FieldID, V) :-jpl_set_instance_field1352,51395 -jpl_set_instance_field(int, Obj, FieldID, V) :-jpl_set_instance_field1352,51395 -jpl_set_instance_field(long, Obj, FieldID, V) :-jpl_set_instance_field1354,51475 -jpl_set_instance_field(long, Obj, FieldID, V) :-jpl_set_instance_field1354,51475 -jpl_set_instance_field(long, Obj, FieldID, V) :-jpl_set_instance_field1354,51475 -jpl_set_instance_field(float, Obj, FieldID, V) :-jpl_set_instance_field1356,51557 -jpl_set_instance_field(float, Obj, FieldID, V) :-jpl_set_instance_field1356,51557 -jpl_set_instance_field(float, Obj, FieldID, V) :-jpl_set_instance_field1356,51557 -jpl_set_instance_field(double, Obj, FieldID, V) :-jpl_set_instance_field1358,51641 -jpl_set_instance_field(double, Obj, FieldID, V) :-jpl_set_instance_field1358,51641 -jpl_set_instance_field(double, Obj, FieldID, V) :-jpl_set_instance_field1358,51641 -jpl_set_instance_field(class(_,_), Obj, FieldID, V) :- % also handles byval term assignmentsjpl_set_instance_field1360,51727 -jpl_set_instance_field(class(_,_), Obj, FieldID, V) :- % also handles byval term assignmentsjpl_set_instance_field1360,51727 -jpl_set_instance_field(class(_,_), Obj, FieldID, V) :- % also handles byval term assignmentsjpl_set_instance_field1360,51727 -jpl_set_instance_field(array(_), Obj, FieldID, V) :-jpl_set_instance_field1366,52018 -jpl_set_instance_field(array(_), Obj, FieldID, V) :-jpl_set_instance_field1366,52018 -jpl_set_instance_field(array(_), Obj, FieldID, V) :-jpl_set_instance_field1366,52018 -jpl_set_static_field(boolean, Obj, FieldID, V) :-jpl_set_static_field1375,52386 -jpl_set_static_field(boolean, Obj, FieldID, V) :-jpl_set_static_field1375,52386 -jpl_set_static_field(boolean, Obj, FieldID, V) :-jpl_set_static_field1375,52386 -jpl_set_static_field(byte, Obj, FieldID, V) :-jpl_set_static_field1378,52479 -jpl_set_static_field(byte, Obj, FieldID, V) :-jpl_set_static_field1378,52479 -jpl_set_static_field(byte, Obj, FieldID, V) :-jpl_set_static_field1378,52479 -jpl_set_static_field(char, Obj, FieldID, V) :-jpl_set_static_field1381,52566 -jpl_set_static_field(char, Obj, FieldID, V) :-jpl_set_static_field1381,52566 -jpl_set_static_field(char, Obj, FieldID, V) :-jpl_set_static_field1381,52566 -jpl_set_static_field(short, Obj, FieldID, V) :-jpl_set_static_field1384,52653 -jpl_set_static_field(short, Obj, FieldID, V) :-jpl_set_static_field1384,52653 -jpl_set_static_field(short, Obj, FieldID, V) :-jpl_set_static_field1384,52653 -jpl_set_static_field(int, Obj, FieldID, V) :-jpl_set_static_field1387,52742 -jpl_set_static_field(int, Obj, FieldID, V) :-jpl_set_static_field1387,52742 -jpl_set_static_field(int, Obj, FieldID, V) :-jpl_set_static_field1387,52742 -jpl_set_static_field(long, Obj, FieldID, V) :-jpl_set_static_field1390,52827 -jpl_set_static_field(long, Obj, FieldID, V) :-jpl_set_static_field1390,52827 -jpl_set_static_field(long, Obj, FieldID, V) :-jpl_set_static_field1390,52827 -jpl_set_static_field(float, Obj, FieldID, V) :-jpl_set_static_field1393,52914 -jpl_set_static_field(float, Obj, FieldID, V) :-jpl_set_static_field1393,52914 -jpl_set_static_field(float, Obj, FieldID, V) :-jpl_set_static_field1393,52914 -jpl_set_static_field(double, Obj, FieldID, V) :-jpl_set_static_field1396,53003 -jpl_set_static_field(double, Obj, FieldID, V) :-jpl_set_static_field1396,53003 -jpl_set_static_field(double, Obj, FieldID, V) :-jpl_set_static_field1396,53003 -jpl_set_static_field(class(_,_), Obj, FieldID, V) :- % also handles byval term assignmentsjpl_set_static_field1399,53094 -jpl_set_static_field(class(_,_), Obj, FieldID, V) :- % also handles byval term assignmentsjpl_set_static_field1399,53094 -jpl_set_static_field(class(_,_), Obj, FieldID, V) :- % also handles byval term assignmentsjpl_set_static_field1399,53094 -jpl_set_static_field(array(_), Obj, FieldID, V) :-jpl_set_static_field1406,53400 -jpl_set_static_field(array(_), Obj, FieldID, V) :-jpl_set_static_field1406,53400 -jpl_set_static_field(array(_), Obj, FieldID, V) :-jpl_set_static_field1406,53400 -jpl_z3s_to_most_specific_z3(Zs, Z) :-jpl_z3s_to_most_specific_z31417,53845 -jpl_z3s_to_most_specific_z3(Zs, Z) :-jpl_z3s_to_most_specific_z31417,53845 -jpl_z3s_to_most_specific_z3(Zs, Z) :-jpl_z3s_to_most_specific_z31417,53845 -jpl_z5s_to_most_specific_z5(Zs, Z) :-jpl_z5s_to_most_specific_z51428,54286 -jpl_z5s_to_most_specific_z5(Zs, Z) :-jpl_z5s_to_most_specific_z51428,54286 -jpl_z5s_to_most_specific_z5(Zs, Z) :-jpl_z5s_to_most_specific_z51428,54286 -jpl_pl_lib_version(VersionString) :-jpl_pl_lib_version1436,54540 -jpl_pl_lib_version(VersionString) :-jpl_pl_lib_version1436,54540 -jpl_pl_lib_version(VersionString) :-jpl_pl_lib_version1436,54540 -jpl_pl_lib_version(3, 1, 4, alpha).jpl_pl_lib_version1441,54705 -jpl_pl_lib_version(3, 1, 4, alpha).jpl_pl_lib_version1441,54705 -jpl_type_alfa(0'_) -->jpl_type_alfa1448,54947 -jpl_type_alfa(0'_) -->jpl_type_alfa1448,54947 -jpl_type_alfa(0'_) -->jpl_type_alfa1448,54947 -jpl_type_alfa(C) -->jpl_type_alfa1452,54981 -jpl_type_alfa(C) -->jpl_type_alfa1452,54981 -jpl_type_alfa(C) -->jpl_type_alfa1452,54981 -jpl_type_alfa(C) -->jpl_type_alfa1456,55033 -jpl_type_alfa(C) -->jpl_type_alfa1456,55033 -jpl_type_alfa(C) -->jpl_type_alfa1456,55033 -jpl_type_alfa_num(C) -->jpl_type_alfa_num1461,55162 -jpl_type_alfa_num(C) -->jpl_type_alfa_num1461,55162 -jpl_type_alfa_num(C) -->jpl_type_alfa_num1461,55162 -jpl_type_alfa_num(C) -->jpl_type_alfa_num1465,55211 -jpl_type_alfa_num(C) -->jpl_type_alfa_num1465,55211 -jpl_type_alfa_num(C) -->jpl_type_alfa_num1465,55211 -jpl_type_array_classname(array(T)) -->jpl_type_array_classname1470,55344 -jpl_type_array_classname(array(T)) -->jpl_type_array_classname1470,55344 -jpl_type_array_classname(array(T)) -->jpl_type_array_classname1470,55344 -jpl_type_array_descriptor(array(T)) -->jpl_type_array_descriptor1475,55496 -jpl_type_array_descriptor(array(T)) -->jpl_type_array_descriptor1475,55496 -jpl_type_array_descriptor(array(T)) -->jpl_type_array_descriptor1475,55496 -jpl_type_bare_class_descriptor(class(Ps,Cs)) -->jpl_type_bare_class_descriptor1480,55650 -jpl_type_bare_class_descriptor(class(Ps,Cs)) -->jpl_type_bare_class_descriptor1480,55650 -jpl_type_bare_class_descriptor(class(Ps,Cs)) -->jpl_type_bare_class_descriptor1480,55650 -jpl_type_bare_classname(class(Ps,Cs)) -->jpl_type_bare_classname1485,55844 -jpl_type_bare_classname(class(Ps,Cs)) -->jpl_type_bare_classname1485,55844 -jpl_type_bare_classname(class(Ps,Cs)) -->jpl_type_bare_classname1485,55844 -jpl_type_class_descriptor(class(Ps,Cs)) -->jpl_type_class_descriptor1490,56030 -jpl_type_class_descriptor(class(Ps,Cs)) -->jpl_type_class_descriptor1490,56030 -jpl_type_class_descriptor(class(Ps,Cs)) -->jpl_type_class_descriptor1490,56030 -jpl_type_class_part(N) -->jpl_type_class_part1495,56213 -jpl_type_class_part(N) -->jpl_type_class_part1495,56213 -jpl_type_class_part(N) -->jpl_type_class_part1495,56213 -jpl_type_class_parts([C|Cs]) -->jpl_type_class_parts1500,56339 -jpl_type_class_parts([C|Cs]) -->jpl_type_class_parts1500,56339 -jpl_type_class_parts([C|Cs]) -->jpl_type_class_parts1500,56339 -jpl_type_classname_1(T) -->jpl_type_classname_11505,56511 -jpl_type_classname_1(T) -->jpl_type_classname_11505,56511 -jpl_type_classname_1(T) -->jpl_type_classname_11505,56511 -jpl_type_classname_1(T) -->jpl_type_classname_11509,56573 -jpl_type_classname_1(T) -->jpl_type_classname_11509,56573 -jpl_type_classname_1(T) -->jpl_type_classname_11509,56573 -jpl_type_classname_1(T) -->jpl_type_classname_11513,56636 -jpl_type_classname_1(T) -->jpl_type_classname_11513,56636 -jpl_type_classname_1(T) -->jpl_type_classname_11513,56636 -jpl_type_classname_2(T) -->jpl_type_classname_21518,56770 -jpl_type_classname_2(T) -->jpl_type_classname_21518,56770 -jpl_type_classname_2(T) -->jpl_type_classname_21518,56770 -jpl_type_classname_2(T) -->jpl_type_classname_21521,56833 -jpl_type_classname_2(T) -->jpl_type_classname_21521,56833 -jpl_type_classname_2(T) -->jpl_type_classname_21521,56833 -jpl_type_classname_2(T) -->jpl_type_classname_21524,56892 -jpl_type_classname_2(T) -->jpl_type_classname_21524,56892 -jpl_type_classname_2(T) -->jpl_type_classname_21524,56892 -jpl_type_delimited_classname(Class) -->jpl_type_delimited_classname1529,57026 -jpl_type_delimited_classname(Class) -->jpl_type_delimited_classname1529,57026 -jpl_type_delimited_classname(Class) -->jpl_type_delimited_classname1529,57026 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11534,57191 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11534,57191 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11534,57191 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11538,57249 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11538,57249 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11538,57249 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11542,57314 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11542,57314 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11542,57314 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11546,57379 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11546,57379 -jpl_type_descriptor_1(T) -->jpl_type_descriptor_11546,57379 -jpl_type_dotted_package_parts([P|Ps]) -->jpl_type_dotted_package_parts1551,57522 -jpl_type_dotted_package_parts([P|Ps]) -->jpl_type_dotted_package_parts1551,57522 -jpl_type_dotted_package_parts([P|Ps]) -->jpl_type_dotted_package_parts1551,57522 -jpl_type_dotted_package_parts([]) -->jpl_type_dotted_package_parts1554,57635 -jpl_type_dotted_package_parts([]) -->jpl_type_dotted_package_parts1554,57635 -jpl_type_dotted_package_parts([]) -->jpl_type_dotted_package_parts1554,57635 -jpl_type_findclassname(T) -->jpl_type_findclassname1559,57760 -jpl_type_findclassname(T) -->jpl_type_findclassname1559,57760 -jpl_type_findclassname(T) -->jpl_type_findclassname1559,57760 -jpl_type_findclassname(T) -->jpl_type_findclassname1562,57827 -jpl_type_findclassname(T) -->jpl_type_findclassname1562,57827 -jpl_type_findclassname(T) -->jpl_type_findclassname1562,57827 -jpl_type_id(A) -->jpl_type_id1567,57970 -jpl_type_id(A) -->jpl_type_id1567,57970 -jpl_type_id(A) -->jpl_type_id1567,57970 -jpl_type_id_rest([C|Cs]) -->jpl_type_id_rest1574,58187 -jpl_type_id_rest([C|Cs]) -->jpl_type_id_rest1574,58187 -jpl_type_id_rest([C|Cs]) -->jpl_type_id_rest1574,58187 -jpl_type_id_rest([]) -->jpl_type_id_rest1577,58265 -jpl_type_id_rest([]) -->jpl_type_id_rest1577,58265 -jpl_type_id_rest([]) -->jpl_type_id_rest1577,58265 -jpl_type_id_v2(A) --> % inner class name parts (empirically)jpl_type_id_v21582,58377 -jpl_type_id_v2(A) --> % inner class name parts (empirically)jpl_type_id_v21582,58377 -jpl_type_id_v2(A) --> % inner class name parts (empirically)jpl_type_id_v21582,58377 -jpl_type_inner_class_part(N) -->jpl_type_inner_class_part1589,58628 -jpl_type_inner_class_part(N) -->jpl_type_inner_class_part1589,58628 -jpl_type_inner_class_part(N) -->jpl_type_inner_class_part1589,58628 -jpl_type_inner_class_parts([C|Cs]) -->jpl_type_inner_class_parts1594,58763 -jpl_type_inner_class_parts([C|Cs]) -->jpl_type_inner_class_parts1594,58763 -jpl_type_inner_class_parts([C|Cs]) -->jpl_type_inner_class_parts1594,58763 -jpl_type_inner_class_parts([]) -->jpl_type_inner_class_parts1597,58874 -jpl_type_inner_class_parts([]) -->jpl_type_inner_class_parts1597,58874 -jpl_type_inner_class_parts([]) -->jpl_type_inner_class_parts1597,58874 -jpl_type_method_descriptor(method(Ts,T)) -->jpl_type_method_descriptor1602,58996 -jpl_type_method_descriptor(method(Ts,T)) -->jpl_type_method_descriptor1602,58996 -jpl_type_method_descriptor(method(Ts,T)) -->jpl_type_method_descriptor1602,58996 -jpl_type_method_descriptor_args([T|Ts]) -->jpl_type_method_descriptor_args1607,59209 -jpl_type_method_descriptor_args([T|Ts]) -->jpl_type_method_descriptor_args1607,59209 -jpl_type_method_descriptor_args([T|Ts]) -->jpl_type_method_descriptor_args1607,59209 -jpl_type_method_descriptor_args([]) -->jpl_type_method_descriptor_args1610,59321 -jpl_type_method_descriptor_args([]) -->jpl_type_method_descriptor_args1610,59321 -jpl_type_method_descriptor_args([]) -->jpl_type_method_descriptor_args1610,59321 -jpl_type_method_descriptor_return(T) -->jpl_type_method_descriptor_return1615,59448 -jpl_type_method_descriptor_return(T) -->jpl_type_method_descriptor_return1615,59448 -jpl_type_method_descriptor_return(T) -->jpl_type_method_descriptor_return1615,59448 -jpl_type_method_descriptor_return(T) -->jpl_type_method_descriptor_return1618,59509 -jpl_type_method_descriptor_return(T) -->jpl_type_method_descriptor_return1618,59509 -jpl_type_method_descriptor_return(T) -->jpl_type_method_descriptor_return1618,59509 -jpl_type_package_part(N) -->jpl_type_package_part1623,59659 -jpl_type_package_part(N) -->jpl_type_package_part1623,59659 -jpl_type_package_part(N) -->jpl_type_package_part1623,59659 -jpl_type_primitive(boolean) -->jpl_type_primitive1628,59787 -jpl_type_primitive(boolean) -->jpl_type_primitive1628,59787 -jpl_type_primitive(boolean) -->jpl_type_primitive1628,59787 -jpl_type_primitive(byte) -->jpl_type_primitive1632,59830 -jpl_type_primitive(byte) -->jpl_type_primitive1632,59830 -jpl_type_primitive(byte) -->jpl_type_primitive1632,59830 -jpl_type_primitive(char) -->jpl_type_primitive1636,59870 -jpl_type_primitive(char) -->jpl_type_primitive1636,59870 -jpl_type_primitive(char) -->jpl_type_primitive1636,59870 -jpl_type_primitive(short) -->jpl_type_primitive1640,59910 -jpl_type_primitive(short) -->jpl_type_primitive1640,59910 -jpl_type_primitive(short) -->jpl_type_primitive1640,59910 -jpl_type_primitive(int) -->jpl_type_primitive1644,59951 -jpl_type_primitive(int) -->jpl_type_primitive1644,59951 -jpl_type_primitive(int) -->jpl_type_primitive1644,59951 -jpl_type_primitive(long) -->jpl_type_primitive1648,59990 -jpl_type_primitive(long) -->jpl_type_primitive1648,59990 -jpl_type_primitive(long) -->jpl_type_primitive1648,59990 -jpl_type_primitive(float) -->jpl_type_primitive1652,60030 -jpl_type_primitive(float) -->jpl_type_primitive1652,60030 -jpl_type_primitive(float) -->jpl_type_primitive1652,60030 -jpl_type_primitive(double) -->jpl_type_primitive1656,60071 -jpl_type_primitive(double) -->jpl_type_primitive1656,60071 -jpl_type_primitive(double) -->jpl_type_primitive1656,60071 -jpl_type_slashed_package_parts([P|Ps]) -->jpl_type_slashed_package_parts1661,60190 -jpl_type_slashed_package_parts([P|Ps]) -->jpl_type_slashed_package_parts1661,60190 -jpl_type_slashed_package_parts([P|Ps]) -->jpl_type_slashed_package_parts1661,60190 -jpl_type_slashed_package_parts([]) -->jpl_type_slashed_package_parts1664,60305 -jpl_type_slashed_package_parts([]) -->jpl_type_slashed_package_parts1664,60305 -jpl_type_slashed_package_parts([]) -->jpl_type_slashed_package_parts1664,60305 -jpl_type_void(void) -->jpl_type_void1669,60431 -jpl_type_void(void) -->jpl_type_void1669,60431 -jpl_type_void(void) -->jpl_type_void1669,60431 -jCallBooleanMethod(Obj, MethodID, Types, Params, Rbool) :-jCallBooleanMethod1678,60681 -jCallBooleanMethod(Obj, MethodID, Types, Params, Rbool) :-jCallBooleanMethod1678,60681 -jCallBooleanMethod(Obj, MethodID, Types, Params, Rbool) :-jCallBooleanMethod1678,60681 -jCallByteMethod(Obj, MethodID, Types, Params, Rbyte) :-jCallByteMethod1688,61040 -jCallByteMethod(Obj, MethodID, Types, Params, Rbyte) :-jCallByteMethod1688,61040 -jCallByteMethod(Obj, MethodID, Types, Params, Rbyte) :-jCallByteMethod1688,61040 -jCallCharMethod(Obj, MethodID, Types, Params, Rchar) :-jCallCharMethod1698,61396 -jCallCharMethod(Obj, MethodID, Types, Params, Rchar) :-jCallCharMethod1698,61396 -jCallCharMethod(Obj, MethodID, Types, Params, Rchar) :-jCallCharMethod1698,61396 -jCallDoubleMethod(Obj, MethodID, Types, Params, Rdouble) :-jCallDoubleMethod1708,61760 -jCallDoubleMethod(Obj, MethodID, Types, Params, Rdouble) :-jCallDoubleMethod1708,61760 -jCallDoubleMethod(Obj, MethodID, Types, Params, Rdouble) :-jCallDoubleMethod1708,61760 -jCallFloatMethod(Obj, MethodID, Types, Params, Rfloat) :-jCallFloatMethod1718,62126 -jCallFloatMethod(Obj, MethodID, Types, Params, Rfloat) :-jCallFloatMethod1718,62126 -jCallFloatMethod(Obj, MethodID, Types, Params, Rfloat) :-jCallFloatMethod1718,62126 -jCallIntMethod(Obj, MethodID, Types, Params, Rint) :-jCallIntMethod1728,62481 -jCallIntMethod(Obj, MethodID, Types, Params, Rint) :-jCallIntMethod1728,62481 -jCallIntMethod(Obj, MethodID, Types, Params, Rint) :-jCallIntMethod1728,62481 -jCallLongMethod(Obj, MethodID, Types, Params, Rlong) :-jCallLongMethod1738,62834 -jCallLongMethod(Obj, MethodID, Types, Params, Rlong) :-jCallLongMethod1738,62834 -jCallLongMethod(Obj, MethodID, Types, Params, Rlong) :-jCallLongMethod1738,62834 -jCallObjectMethod(Obj, MethodID, Types, Params, Robj) :-jCallObjectMethod1748,63195 -jCallObjectMethod(Obj, MethodID, Types, Params, Robj) :-jCallObjectMethod1748,63195 -jCallObjectMethod(Obj, MethodID, Types, Params, Robj) :-jCallObjectMethod1748,63195 -jCallShortMethod(Obj, MethodID, Types, Params, Rshort) :-jCallShortMethod1758,63555 -jCallShortMethod(Obj, MethodID, Types, Params, Rshort) :-jCallShortMethod1758,63555 -jCallShortMethod(Obj, MethodID, Types, Params, Rshort) :-jCallShortMethod1758,63555 -jCallStaticBooleanMethod(Class, MethodID, Types, Params, Rbool) :-jCallStaticBooleanMethod1768,63925 -jCallStaticBooleanMethod(Class, MethodID, Types, Params, Rbool) :-jCallStaticBooleanMethod1768,63925 -jCallStaticBooleanMethod(Class, MethodID, Types, Params, Rbool) :-jCallStaticBooleanMethod1768,63925 -jCallStaticByteMethod(Class, MethodID, Types, Params, Rbyte) :-jCallStaticByteMethod1778,64308 -jCallStaticByteMethod(Class, MethodID, Types, Params, Rbyte) :-jCallStaticByteMethod1778,64308 -jCallStaticByteMethod(Class, MethodID, Types, Params, Rbyte) :-jCallStaticByteMethod1778,64308 -jCallStaticCharMethod(Class, MethodID, Types, Params, Rchar) :-jCallStaticCharMethod1788,64688 -jCallStaticCharMethod(Class, MethodID, Types, Params, Rchar) :-jCallStaticCharMethod1788,64688 -jCallStaticCharMethod(Class, MethodID, Types, Params, Rchar) :-jCallStaticCharMethod1788,64688 -jCallStaticDoubleMethod(Class, MethodID, Types, Params, Rdouble) :-jCallStaticDoubleMethod1798,65076 -jCallStaticDoubleMethod(Class, MethodID, Types, Params, Rdouble) :-jCallStaticDoubleMethod1798,65076 -jCallStaticDoubleMethod(Class, MethodID, Types, Params, Rdouble) :-jCallStaticDoubleMethod1798,65076 -jCallStaticFloatMethod(Class, MethodID, Types, Params, Rfloat) :-jCallStaticFloatMethod1808,65466 -jCallStaticFloatMethod(Class, MethodID, Types, Params, Rfloat) :-jCallStaticFloatMethod1808,65466 -jCallStaticFloatMethod(Class, MethodID, Types, Params, Rfloat) :-jCallStaticFloatMethod1808,65466 -jCallStaticIntMethod(Class, MethodID, Types, Params, Rint) :-jCallStaticIntMethod1818,65845 -jCallStaticIntMethod(Class, MethodID, Types, Params, Rint) :-jCallStaticIntMethod1818,65845 -jCallStaticIntMethod(Class, MethodID, Types, Params, Rint) :-jCallStaticIntMethod1818,65845 -jCallStaticLongMethod(Class, MethodID, Types, Params, Rlong) :-jCallStaticLongMethod1828,66222 -jCallStaticLongMethod(Class, MethodID, Types, Params, Rlong) :-jCallStaticLongMethod1828,66222 -jCallStaticLongMethod(Class, MethodID, Types, Params, Rlong) :-jCallStaticLongMethod1828,66222 -jCallStaticObjectMethod(Class, MethodID, Types, Params, Robj) :-jCallStaticObjectMethod1838,66607 -jCallStaticObjectMethod(Class, MethodID, Types, Params, Robj) :-jCallStaticObjectMethod1838,66607 -jCallStaticObjectMethod(Class, MethodID, Types, Params, Robj) :-jCallStaticObjectMethod1838,66607 -jCallStaticShortMethod(Class, MethodID, Types, Params, Rshort) :-jCallStaticShortMethod1848,66991 -jCallStaticShortMethod(Class, MethodID, Types, Params, Rshort) :-jCallStaticShortMethod1848,66991 -jCallStaticShortMethod(Class, MethodID, Types, Params, Rshort) :-jCallStaticShortMethod1848,66991 -jCallStaticVoidMethod(Class, MethodID, Types, Params) :-jCallStaticVoidMethod1858,67360 -jCallStaticVoidMethod(Class, MethodID, Types, Params) :-jCallStaticVoidMethod1858,67360 -jCallStaticVoidMethod(Class, MethodID, Types, Params) :-jCallStaticVoidMethod1858,67360 -jCallVoidMethod(Obj, MethodID, Types, Params) :-jCallVoidMethod1868,67699 -jCallVoidMethod(Obj, MethodID, Types, Params) :-jCallVoidMethod1868,67699 -jCallVoidMethod(Obj, MethodID, Types, Params) :-jCallVoidMethod1868,67699 -jFindClass(ClassName, Class) :-jFindClass1878,67991 -jFindClass(ClassName, Class) :-jFindClass1878,67991 -jFindClass(ClassName, Class) :-jFindClass1878,67991 -jGetArrayLength(Array, Size) :-jGetArrayLength1887,68211 -jGetArrayLength(Array, Size) :-jGetArrayLength1887,68211 -jGetArrayLength(Array, Size) :-jGetArrayLength1887,68211 -jGetBooleanArrayRegion(Array, Start, Len, Buf) :-jGetBooleanArrayRegion1896,68481 -jGetBooleanArrayRegion(Array, Start, Len, Buf) :-jGetBooleanArrayRegion1896,68481 -jGetBooleanArrayRegion(Array, Start, Len, Buf) :-jGetBooleanArrayRegion1896,68481 -jGetBooleanField(Obj, FieldID, Rbool) :-jGetBooleanField1905,68753 -jGetBooleanField(Obj, FieldID, Rbool) :-jGetBooleanField1905,68753 -jGetBooleanField(Obj, FieldID, Rbool) :-jGetBooleanField1905,68753 -jGetByteArrayRegion(Array, Start, Len, Buf) :-jGetByteArrayRegion1914,69027 -jGetByteArrayRegion(Array, Start, Len, Buf) :-jGetByteArrayRegion1914,69027 -jGetByteArrayRegion(Array, Start, Len, Buf) :-jGetByteArrayRegion1914,69027 -jGetByteField(Obj, FieldID, Rbyte) :-jGetByteField1923,69287 -jGetByteField(Obj, FieldID, Rbyte) :-jGetByteField1923,69287 -jGetByteField(Obj, FieldID, Rbyte) :-jGetByteField1923,69287 -jGetCharArrayRegion(Array, Start, Len, Buf) :-jGetCharArrayRegion1932,69558 -jGetCharArrayRegion(Array, Start, Len, Buf) :-jGetCharArrayRegion1932,69558 -jGetCharArrayRegion(Array, Start, Len, Buf) :-jGetCharArrayRegion1932,69558 -jGetCharField(Obj, FieldID, Rchar) :-jGetCharField1941,69818 -jGetCharField(Obj, FieldID, Rchar) :-jGetCharField1941,69818 -jGetCharField(Obj, FieldID, Rchar) :-jGetCharField1941,69818 -jGetDoubleArrayRegion(Array, Start, Len, Buf) :-jGetDoubleArrayRegion1950,70097 -jGetDoubleArrayRegion(Array, Start, Len, Buf) :-jGetDoubleArrayRegion1950,70097 -jGetDoubleArrayRegion(Array, Start, Len, Buf) :-jGetDoubleArrayRegion1950,70097 -jGetDoubleField(Obj, FieldID, Rdouble) :-jGetDoubleField1959,70367 -jGetDoubleField(Obj, FieldID, Rdouble) :-jGetDoubleField1959,70367 -jGetDoubleField(Obj, FieldID, Rdouble) :-jGetDoubleField1959,70367 -jGetFieldID(Class, Name, Type, FieldID) :-jGetFieldID1968,70640 -jGetFieldID(Class, Name, Type, FieldID) :-jGetFieldID1968,70640 -jGetFieldID(Class, Name, Type, FieldID) :-jGetFieldID1968,70640 -jGetFloatArrayRegion(Array, Start, Len, Buf) :-jGetFloatArrayRegion1978,70960 -jGetFloatArrayRegion(Array, Start, Len, Buf) :-jGetFloatArrayRegion1978,70960 -jGetFloatArrayRegion(Array, Start, Len, Buf) :-jGetFloatArrayRegion1978,70960 -jGetFloatField(Obj, FieldID, Rfloat) :-jGetFloatField1987,71225 -jGetFloatField(Obj, FieldID, Rfloat) :-jGetFloatField1987,71225 -jGetFloatField(Obj, FieldID, Rfloat) :-jGetFloatField1987,71225 -jGetIntArrayRegion(Array, Start, Len, Buf) :-jGetIntArrayRegion1996,71496 -jGetIntArrayRegion(Array, Start, Len, Buf) :-jGetIntArrayRegion1996,71496 -jGetIntArrayRegion(Array, Start, Len, Buf) :-jGetIntArrayRegion1996,71496 -jGetIntField(Obj, FieldID, Rint) :-jGetIntField2005,71751 -jGetIntField(Obj, FieldID, Rint) :-jGetIntField2005,71751 -jGetIntField(Obj, FieldID, Rint) :-jGetIntField2005,71751 -jGetLongArrayRegion(Array, Start, Len, Buf) :-jGetLongArrayRegion2014,72020 -jGetLongArrayRegion(Array, Start, Len, Buf) :-jGetLongArrayRegion2014,72020 -jGetLongArrayRegion(Array, Start, Len, Buf) :-jGetLongArrayRegion2014,72020 -jGetLongField(Obj, FieldID, Rlong) :-jGetLongField2023,72280 -jGetLongField(Obj, FieldID, Rlong) :-jGetLongField2023,72280 -jGetLongField(Obj, FieldID, Rlong) :-jGetLongField2023,72280 -jGetMethodID(Class, Name, Type, MethodID) :-jGetMethodID2032,72557 -jGetMethodID(Class, Name, Type, MethodID) :-jGetMethodID2032,72557 -jGetMethodID(Class, Name, Type, MethodID) :-jGetMethodID2032,72557 -jGetObjectArrayElement(Array, Index, Obj) :-jGetObjectArrayElement2042,72871 -jGetObjectArrayElement(Array, Index, Obj) :-jGetObjectArrayElement2042,72871 -jGetObjectArrayElement(Array, Index, Obj) :-jGetObjectArrayElement2042,72871 -jGetObjectClass(Object, Class) :-jGetObjectClass2051,73112 -jGetObjectClass(Object, Class) :-jGetObjectClass2051,73112 -jGetObjectClass(Object, Class) :-jGetObjectClass2051,73112 -jGetObjectField(Obj, FieldID, Robj) :-jGetObjectField2060,73354 -jGetObjectField(Obj, FieldID, Robj) :-jGetObjectField2060,73354 -jGetObjectField(Obj, FieldID, Robj) :-jGetObjectField2060,73354 -jGetShortArrayRegion(Array, Start, Len, Buf) :-jGetShortArrayRegion2069,73629 -jGetShortArrayRegion(Array, Start, Len, Buf) :-jGetShortArrayRegion2069,73629 -jGetShortArrayRegion(Array, Start, Len, Buf) :-jGetShortArrayRegion2069,73629 -jGetShortField(Obj, FieldID, Rshort) :-jGetShortField2078,73894 -jGetShortField(Obj, FieldID, Rshort) :-jGetShortField2078,73894 -jGetShortField(Obj, FieldID, Rshort) :-jGetShortField2078,73894 -jGetStaticBooleanField(Class, FieldID, Rbool) :-jGetStaticBooleanField2087,74166 -jGetStaticBooleanField(Class, FieldID, Rbool) :-jGetStaticBooleanField2087,74166 -jGetStaticBooleanField(Class, FieldID, Rbool) :-jGetStaticBooleanField2087,74166 -jGetStaticByteField(Class, FieldID, Rbyte) :-jGetStaticByteField2096,74440 -jGetStaticByteField(Class, FieldID, Rbyte) :-jGetStaticByteField2096,74440 -jGetStaticByteField(Class, FieldID, Rbyte) :-jGetStaticByteField2096,74440 -jGetStaticCharField(Class, FieldID, Rchar) :-jGetStaticCharField2105,74711 -jGetStaticCharField(Class, FieldID, Rchar) :-jGetStaticCharField2105,74711 -jGetStaticCharField(Class, FieldID, Rchar) :-jGetStaticCharField2105,74711 -jGetStaticDoubleField(Class, FieldID, Rdouble) :-jGetStaticDoubleField2114,74990 -jGetStaticDoubleField(Class, FieldID, Rdouble) :-jGetStaticDoubleField2114,74990 -jGetStaticDoubleField(Class, FieldID, Rdouble) :-jGetStaticDoubleField2114,74990 -jGetStaticFieldID(Class, Name, Type, FieldID) :-jGetStaticFieldID2123,75279 -jGetStaticFieldID(Class, Name, Type, FieldID) :-jGetStaticFieldID2123,75279 -jGetStaticFieldID(Class, Name, Type, FieldID) :-jGetStaticFieldID2123,75279 -jGetStaticFloatField(Class, FieldID, Rfloat) :-jGetStaticFloatField2133,75623 -jGetStaticFloatField(Class, FieldID, Rfloat) :-jGetStaticFloatField2133,75623 -jGetStaticFloatField(Class, FieldID, Rfloat) :-jGetStaticFloatField2133,75623 -jGetStaticIntField(Class, FieldID, Rint) :-jGetStaticIntField2142,75893 -jGetStaticIntField(Class, FieldID, Rint) :-jGetStaticIntField2142,75893 -jGetStaticIntField(Class, FieldID, Rint) :-jGetStaticIntField2142,75893 -jGetStaticLongField(Class, FieldID, Rlong) :-jGetStaticLongField2151,76161 -jGetStaticLongField(Class, FieldID, Rlong) :-jGetStaticLongField2151,76161 -jGetStaticLongField(Class, FieldID, Rlong) :-jGetStaticLongField2151,76161 -jGetStaticMethodID(Class, Name, Type, MethodID) :-jGetStaticMethodID2160,76448 -jGetStaticMethodID(Class, Name, Type, MethodID) :-jGetStaticMethodID2160,76448 -jGetStaticMethodID(Class, Name, Type, MethodID) :-jGetStaticMethodID2160,76448 -jGetStaticObjectField(Class, FieldID, Robj) :-jGetStaticObjectField2170,76768 -jGetStaticObjectField(Class, FieldID, Robj) :-jGetStaticObjectField2170,76768 -jGetStaticObjectField(Class, FieldID, Robj) :-jGetStaticObjectField2170,76768 -jGetStaticShortField(Class, FieldID, Rshort) :-jGetStaticShortField2179,77043 -jGetStaticShortField(Class, FieldID, Rshort) :-jGetStaticShortField2179,77043 -jGetStaticShortField(Class, FieldID, Rshort) :-jGetStaticShortField2179,77043 -jGetSuperclass(Class1, Class2) :-jGetSuperclass2188,77292 -jGetSuperclass(Class1, Class2) :-jGetSuperclass2188,77292 -jGetSuperclass(Class1, Class2) :-jGetSuperclass2188,77292 -jIsAssignableFrom(Class1, Class2) :-jIsAssignableFrom2197,77524 -jIsAssignableFrom(Class1, Class2) :-jIsAssignableFrom2197,77524 -jIsAssignableFrom(Class1, Class2) :-jIsAssignableFrom2197,77524 -jNewBooleanArray(Length, Array) :-jNewBooleanArray2206,77769 -jNewBooleanArray(Length, Array) :-jNewBooleanArray2206,77769 -jNewBooleanArray(Length, Array) :-jNewBooleanArray2206,77769 -jNewByteArray(Length, Array) :-jNewByteArray2215,77994 -jNewByteArray(Length, Array) :-jNewByteArray2215,77994 -jNewByteArray(Length, Array) :-jNewByteArray2215,77994 -jNewCharArray(Length, Array) :-jNewCharArray2224,78216 -jNewCharArray(Length, Array) :-jNewCharArray2224,78216 -jNewCharArray(Length, Array) :-jNewCharArray2224,78216 -jNewDoubleArray(Length, Array) :-jNewDoubleArray2233,78444 -jNewDoubleArray(Length, Array) :-jNewDoubleArray2233,78444 -jNewDoubleArray(Length, Array) :-jNewDoubleArray2233,78444 -jNewFloatArray(Length, Array) :-jNewFloatArray2242,78671 -jNewFloatArray(Length, Array) :-jNewFloatArray2242,78671 -jNewFloatArray(Length, Array) :-jNewFloatArray2242,78671 -jNewIntArray(Length, Array) :-jNewIntArray2251,78891 -jNewIntArray(Length, Array) :-jNewIntArray2251,78891 -jNewIntArray(Length, Array) :-jNewIntArray2251,78891 -jNewLongArray(Length, Array) :-jNewLongArray2260,79112 -jNewLongArray(Length, Array) :-jNewLongArray2260,79112 -jNewLongArray(Length, Array) :-jNewLongArray2260,79112 -jNewObject(Class, MethodID, Types, Params, Obj) :-jNewObject2269,79377 -jNewObject(Class, MethodID, Types, Params, Obj) :-jNewObject2269,79377 -jNewObject(Class, MethodID, Types, Params, Obj) :-jNewObject2269,79377 -jNewObjectArray(Len, Class, InitVal, Array) :-jNewObjectArray2279,79712 -jNewObjectArray(Len, Class, InitVal, Array) :-jNewObjectArray2279,79712 -jNewObjectArray(Len, Class, InitVal, Array) :-jNewObjectArray2279,79712 -jNewShortArray(Length, Array) :-jNewShortArray2288,79965 -jNewShortArray(Length, Array) :-jNewShortArray2288,79965 -jNewShortArray(Length, Array) :-jNewShortArray2288,79965 -jSetBooleanArrayRegion(Array, Start, Len, Buf) :-jSetBooleanArrayRegion2297,80238 -jSetBooleanArrayRegion(Array, Start, Len, Buf) :-jSetBooleanArrayRegion2297,80238 -jSetBooleanArrayRegion(Array, Start, Len, Buf) :-jSetBooleanArrayRegion2297,80238 -jSetBooleanField(Obj, FieldID, Rbool) :-jSetBooleanField2306,80510 -jSetBooleanField(Obj, FieldID, Rbool) :-jSetBooleanField2306,80510 -jSetBooleanField(Obj, FieldID, Rbool) :-jSetBooleanField2306,80510 -jSetByteArrayRegion(Array, Start, Len, Buf) :-jSetByteArrayRegion2315,80785 -jSetByteArrayRegion(Array, Start, Len, Buf) :-jSetByteArrayRegion2315,80785 -jSetByteArrayRegion(Array, Start, Len, Buf) :-jSetByteArrayRegion2315,80785 -jSetByteField(Obj, FieldID, Rbyte) :-jSetByteField2324,81045 -jSetByteField(Obj, FieldID, Rbyte) :-jSetByteField2324,81045 -jSetByteField(Obj, FieldID, Rbyte) :-jSetByteField2324,81045 -jSetCharArrayRegion(Array, Start, Len, Buf) :-jSetCharArrayRegion2333,81317 -jSetCharArrayRegion(Array, Start, Len, Buf) :-jSetCharArrayRegion2333,81317 -jSetCharArrayRegion(Array, Start, Len, Buf) :-jSetCharArrayRegion2333,81317 -jSetCharField(Obj, FieldID, Rchar) :-jSetCharField2342,81577 -jSetCharField(Obj, FieldID, Rchar) :-jSetCharField2342,81577 -jSetCharField(Obj, FieldID, Rchar) :-jSetCharField2342,81577 -jSetDoubleArrayRegion(Array, Start, Len, Buf) :-jSetDoubleArrayRegion2351,81857 -jSetDoubleArrayRegion(Array, Start, Len, Buf) :-jSetDoubleArrayRegion2351,81857 -jSetDoubleArrayRegion(Array, Start, Len, Buf) :-jSetDoubleArrayRegion2351,81857 -jSetDoubleField(Obj, FieldID, Rdouble) :-jSetDoubleField2360,82127 -jSetDoubleField(Obj, FieldID, Rdouble) :-jSetDoubleField2360,82127 -jSetDoubleField(Obj, FieldID, Rdouble) :-jSetDoubleField2360,82127 -jSetFloatArrayRegion(Array, Start, Len, Buf) :-jSetFloatArrayRegion2369,82409 -jSetFloatArrayRegion(Array, Start, Len, Buf) :-jSetFloatArrayRegion2369,82409 -jSetFloatArrayRegion(Array, Start, Len, Buf) :-jSetFloatArrayRegion2369,82409 -jSetFloatField(Obj, FieldID, Rfloat) :-jSetFloatField2378,82674 -jSetFloatField(Obj, FieldID, Rfloat) :-jSetFloatField2378,82674 -jSetFloatField(Obj, FieldID, Rfloat) :-jSetFloatField2378,82674 -jSetIntArrayRegion(Array, Start, Len, Buf) :-jSetIntArrayRegion2387,82945 -jSetIntArrayRegion(Array, Start, Len, Buf) :-jSetIntArrayRegion2387,82945 -jSetIntArrayRegion(Array, Start, Len, Buf) :-jSetIntArrayRegion2387,82945 -jSetIntField(Obj, FieldID, Rint) :-jSetIntField2396,83200 -jSetIntField(Obj, FieldID, Rint) :-jSetIntField2396,83200 -jSetIntField(Obj, FieldID, Rint) :-jSetIntField2396,83200 -jSetLongArrayRegion(Array, Start, Len, Buf) :-jSetLongArrayRegion2405,83469 -jSetLongArrayRegion(Array, Start, Len, Buf) :-jSetLongArrayRegion2405,83469 -jSetLongArrayRegion(Array, Start, Len, Buf) :-jSetLongArrayRegion2405,83469 -jSetLongField(Obj, FieldID, Rlong) :-jSetLongField2414,83729 -jSetLongField(Obj, FieldID, Rlong) :-jSetLongField2414,83729 -jSetLongField(Obj, FieldID, Rlong) :-jSetLongField2414,83729 -jSetObjectArrayElement(Array, Index, Obj) :-jSetObjectArrayElement2423,83996 -jSetObjectArrayElement(Array, Index, Obj) :-jSetObjectArrayElement2423,83996 -jSetObjectArrayElement(Array, Index, Obj) :-jSetObjectArrayElement2423,83996 -jSetObjectField(Obj, FieldID, Robj) :-jSetObjectField2432,84254 -jSetObjectField(Obj, FieldID, Robj) :-jSetObjectField2432,84254 -jSetObjectField(Obj, FieldID, Robj) :-jSetObjectField2432,84254 -jSetShortArrayRegion(Array, Start, Len, Buf) :-jSetShortArrayRegion2441,84530 -jSetShortArrayRegion(Array, Start, Len, Buf) :-jSetShortArrayRegion2441,84530 -jSetShortArrayRegion(Array, Start, Len, Buf) :-jSetShortArrayRegion2441,84530 -jSetShortField(Obj, FieldID, Rshort) :-jSetShortField2450,84795 -jSetShortField(Obj, FieldID, Rshort) :-jSetShortField2450,84795 -jSetShortField(Obj, FieldID, Rshort) :-jSetShortField2450,84795 -jSetStaticBooleanField(Class, FieldID, Rbool) :-jSetStaticBooleanField2459,85068 -jSetStaticBooleanField(Class, FieldID, Rbool) :-jSetStaticBooleanField2459,85068 -jSetStaticBooleanField(Class, FieldID, Rbool) :-jSetStaticBooleanField2459,85068 -jSetStaticByteField(Class, FieldID, Rbyte) :-jSetStaticByteField2468,85342 -jSetStaticByteField(Class, FieldID, Rbyte) :-jSetStaticByteField2468,85342 -jSetStaticByteField(Class, FieldID, Rbyte) :-jSetStaticByteField2468,85342 -jSetStaticCharField(Class, FieldID, Rchar) :-jSetStaticCharField2477,85613 -jSetStaticCharField(Class, FieldID, Rchar) :-jSetStaticCharField2477,85613 -jSetStaticCharField(Class, FieldID, Rchar) :-jSetStaticCharField2477,85613 -jSetStaticDoubleField(Class, FieldID, Rdouble) :-jSetStaticDoubleField2486,85892 -jSetStaticDoubleField(Class, FieldID, Rdouble) :-jSetStaticDoubleField2486,85892 -jSetStaticDoubleField(Class, FieldID, Rdouble) :-jSetStaticDoubleField2486,85892 -jSetStaticFloatField(Class, FieldID, Rfloat) :-jSetStaticFloatField2495,86173 -jSetStaticFloatField(Class, FieldID, Rfloat) :-jSetStaticFloatField2495,86173 -jSetStaticFloatField(Class, FieldID, Rfloat) :-jSetStaticFloatField2495,86173 -jSetStaticIntField(Class, FieldID, Rint) :-jSetStaticIntField2504,86443 -jSetStaticIntField(Class, FieldID, Rint) :-jSetStaticIntField2504,86443 -jSetStaticIntField(Class, FieldID, Rint) :-jSetStaticIntField2504,86443 -jSetStaticLongField(Class, FieldID, Rlong) :-jSetStaticLongField2513,86711 -jSetStaticLongField(Class, FieldID, Rlong) :-jSetStaticLongField2513,86711 -jSetStaticLongField(Class, FieldID, Rlong) :-jSetStaticLongField2513,86711 -jSetStaticObjectField(Class, FieldID, Robj) :-jSetStaticObjectField2522,86987 -jSetStaticObjectField(Class, FieldID, Robj) :-jSetStaticObjectField2522,86987 -jSetStaticObjectField(Class, FieldID, Robj) :-jSetStaticObjectField2522,86987 -jSetStaticShortField(Class, FieldID, Rshort) :-jSetStaticShortField2531,87262 -jSetStaticShortField(Class, FieldID, Rshort) :-jSetStaticShortField2531,87262 -jSetStaticShortField(Class, FieldID, Rshort) :-jSetStaticShortField2531,87262 -jni_params_put(As, Ts, ParamBuf) :-jni_params_put2542,87725 -jni_params_put(As, Ts, ParamBuf) :-jni_params_put2542,87725 -jni_params_put(As, Ts, ParamBuf) :-jni_params_put2542,87725 -jni_params_put_1([], _, [], _).jni_params_put_12563,88754 -jni_params_put_1([], _, [], _).jni_params_put_12563,88754 -jni_params_put_1([A|As], N, [Tjni|Ts], ParamBuf) :- % type checking?jni_params_put_12565,88787 -jni_params_put_1([A|As], N, [Tjni|Ts], ParamBuf) :- % type checking?jni_params_put_12565,88787 -jni_params_put_1([A|As], N, [Tjni|Ts], ParamBuf) :- % type checking?jni_params_put_12565,88787 -jni_type_to_xput_code(boolean, 1). % JNI_XPUT_BOOLEANjni_type_to_xput_code2584,89677 -jni_type_to_xput_code(boolean, 1). % JNI_XPUT_BOOLEANjni_type_to_xput_code2584,89677 -jni_type_to_xput_code(byte, 2). % JNI_XPUT_BYTEjni_type_to_xput_code2586,89741 -jni_type_to_xput_code(byte, 2). % JNI_XPUT_BYTEjni_type_to_xput_code2586,89741 -jni_type_to_xput_code(char, 3). % JNI_XPUT_CHARjni_type_to_xput_code2588,89802 -jni_type_to_xput_code(char, 3). % JNI_XPUT_CHARjni_type_to_xput_code2588,89802 -jni_type_to_xput_code(short, 4). % JNI_XPUT_SHORTjni_type_to_xput_code2590,89863 -jni_type_to_xput_code(short, 4). % JNI_XPUT_SHORTjni_type_to_xput_code2590,89863 -jni_type_to_xput_code(int, 5). % JNI_XPUT_INTjni_type_to_xput_code2592,89925 -jni_type_to_xput_code(int, 5). % JNI_XPUT_INTjni_type_to_xput_code2592,89925 -jni_type_to_xput_code(long, 6). % JNI_XPUT_LONGjni_type_to_xput_code2594,89985 -jni_type_to_xput_code(long, 6). % JNI_XPUT_LONGjni_type_to_xput_code2594,89985 -jni_type_to_xput_code(float, 7). % JNI_XPUT_FLOATjni_type_to_xput_code2596,90046 -jni_type_to_xput_code(float, 7). % JNI_XPUT_FLOATjni_type_to_xput_code2596,90046 -jni_type_to_xput_code(double, 8). % JNI_XPUT_DOUBLEjni_type_to_xput_code2598,90108 -jni_type_to_xput_code(double, 8). % JNI_XPUT_DOUBLEjni_type_to_xput_code2598,90108 -jni_type_to_xput_code(class(_,_), 12). % JNI_XPUT_REFjni_type_to_xput_code2600,90171 -jni_type_to_xput_code(class(_,_), 12). % JNI_XPUT_REFjni_type_to_xput_code2600,90171 -jni_type_to_xput_code(array(_), 12). % JNI_XPUT_REFjni_type_to_xput_code2602,90231 -jni_type_to_xput_code(array(_), 12). % JNI_XPUT_REFjni_type_to_xput_code2602,90231 -jni_type_to_xput_code(jvalue, 15). % JNI_XPUT_JVALUEjni_type_to_xput_code2604,90291 -jni_type_to_xput_code(jvalue, 15). % JNI_XPUT_JVALUEjni_type_to_xput_code2604,90291 -jpl_class_to_constructor_array(Cx, Ma) :-jpl_class_to_constructor_array2611,90563 -jpl_class_to_constructor_array(Cx, Ma) :-jpl_class_to_constructor_array2611,90563 -jpl_class_to_constructor_array(Cx, Ma) :-jpl_class_to_constructor_array2611,90563 -jpl_class_to_constructors(Cx, Ms) :-jpl_class_to_constructors2625,91016 -jpl_class_to_constructors(Cx, Ms) :-jpl_class_to_constructors2625,91016 -jpl_class_to_constructors(Cx, Ms) :-jpl_class_to_constructors2625,91016 -jpl_class_to_field_array(Cx, Fa) :-jpl_class_to_field_array2633,91263 -jpl_class_to_field_array(Cx, Fa) :-jpl_class_to_field_array2633,91263 -jpl_class_to_field_array(Cx, Fa) :-jpl_class_to_field_array2633,91263 -jpl_class_to_fields(C, Fs) :-jpl_class_to_fields2648,91732 -jpl_class_to_fields(C, Fs) :-jpl_class_to_fields2648,91732 -jpl_class_to_fields(C, Fs) :-jpl_class_to_fields2648,91732 -jpl_class_to_method_array(Cx, Ma) :-jpl_class_to_method_array2657,92013 -jpl_class_to_method_array(Cx, Ma) :-jpl_class_to_method_array2657,92013 -jpl_class_to_method_array(Cx, Ma) :-jpl_class_to_method_array2657,92013 -jpl_class_to_methods(Cx, Ms) :-jpl_class_to_methods2673,92517 -jpl_class_to_methods(Cx, Ms) :-jpl_class_to_methods2673,92517 -jpl_class_to_methods(Cx, Ms) :-jpl_class_to_methods2673,92517 -jpl_constructor_to_modifiers(X, Ms) :-jpl_constructor_to_modifiers2682,92804 -jpl_constructor_to_modifiers(X, Ms) :-jpl_constructor_to_modifiers2682,92804 -jpl_constructor_to_modifiers(X, Ms) :-jpl_constructor_to_modifiers2682,92804 -jpl_constructor_to_name(_X, '').jpl_constructor_to_name2692,93208 -jpl_constructor_to_name(_X, '').jpl_constructor_to_name2692,93208 -jpl_constructor_to_parameter_types(X, Tfps) :-jpl_constructor_to_parameter_types2699,93440 -jpl_constructor_to_parameter_types(X, Tfps) :-jpl_constructor_to_parameter_types2699,93440 -jpl_constructor_to_parameter_types(X, Tfps) :-jpl_constructor_to_parameter_types2699,93440 -jpl_constructor_to_return_type(_X, void).jpl_constructor_to_return_type2709,93865 -jpl_constructor_to_return_type(_X, void).jpl_constructor_to_return_type2709,93865 -jpl_field_spec(T, I, N, Mods, MID, Tf) :-jpl_field_spec2716,94153 -jpl_field_spec(T, I, N, Mods, MID, Tf) :-jpl_field_spec2716,94153 -jpl_field_spec(T, I, N, Mods, MID, Tf) :-jpl_field_spec2716,94153 -jpl_field_spec_1(C, Tci, Fs) :-jpl_field_spec_12732,94686 -jpl_field_spec_1(C, Tci, Fs) :-jpl_field_spec_12732,94686 -jpl_field_spec_1(C, Tci, Fs) :-jpl_field_spec_12732,94686 -:- dynamic jpl_field_spec_cache/6. % document this...dynamic2748,95084 -:- dynamic jpl_field_spec_cache/6. % document this...dynamic2748,95084 -:- dynamic jpl_field_spec_is_cached/1. % document this...dynamic2752,95225 -:- dynamic jpl_field_spec_is_cached/1. % document this...dynamic2752,95225 -jpl_field_to_modifiers(F, Ms) :-jpl_field_to_modifiers2760,95473 -jpl_field_to_modifiers(F, Ms) :-jpl_field_to_modifiers2760,95473 -jpl_field_to_modifiers(F, Ms) :-jpl_field_to_modifiers2760,95473 -jpl_field_to_name(F, N) :-jpl_field_to_name2768,95722 -jpl_field_to_name(F, N) :-jpl_field_to_name2768,95722 -jpl_field_to_name(F, N) :-jpl_field_to_name2768,95722 -jpl_field_to_type(F, Tf) :-jpl_field_to_type2778,96000 -jpl_field_to_type(F, Tf) :-jpl_field_to_type2778,96000 -jpl_field_to_type(F, Tf) :-jpl_field_to_type2778,96000 -jpl_method_spec(T, I, N, A, Mods, MID, Tr, Tfps) :-jpl_method_spec2792,96645 -jpl_method_spec(T, I, N, A, Mods, MID, Tr, Tfps) :-jpl_method_spec2792,96645 -jpl_method_spec(T, I, N, A, Mods, MID, Tr, Tfps) :-jpl_method_spec2792,96645 -jpl_method_spec_1(C, Tci, Xs, Ms) :-jpl_method_spec_12814,97506 -jpl_method_spec_1(C, Tci, Xs, Ms) :-jpl_method_spec_12814,97506 -jpl_method_spec_1(C, Tci, Xs, Ms) :-jpl_method_spec_12814,97506 -:- dynamic jpl_method_spec_cache/8.dynamic2840,98366 -:- dynamic jpl_method_spec_cache/8.dynamic2840,98366 -:- dynamic jpl_method_spec_is_cached/1.dynamic2844,98484 -:- dynamic jpl_method_spec_is_cached/1.dynamic2844,98484 -jpl_method_to_modifiers(M, Ms) :-jpl_method_to_modifiers2850,98659 -jpl_method_to_modifiers(M, Ms) :-jpl_method_to_modifiers2850,98659 -jpl_method_to_modifiers(M, Ms) :-jpl_method_to_modifiers2850,98659 -jpl_method_to_modifiers_1(XM, Cxm, Ms) :-jpl_method_to_modifiers_12860,99014 -jpl_method_to_modifiers_1(XM, Cxm, Ms) :-jpl_method_to_modifiers_12860,99014 -jpl_method_to_modifiers_1(XM, Cxm, Ms) :-jpl_method_to_modifiers_12860,99014 -jpl_method_to_name(M, N) :-jpl_method_to_name2869,99310 -jpl_method_to_name(M, N) :-jpl_method_to_name2869,99310 -jpl_method_to_name(M, N) :-jpl_method_to_name2869,99310 -jpl_member_to_name_1(M, CM, N) :-jpl_member_to_name_12875,99510 -jpl_member_to_name_1(M, CM, N) :-jpl_member_to_name_12875,99510 -jpl_member_to_name_1(M, CM, N) :-jpl_member_to_name_12875,99510 -jpl_method_to_parameter_types(M, Tfps) :-jpl_method_to_parameter_types2883,99793 -jpl_method_to_parameter_types(M, Tfps) :-jpl_method_to_parameter_types2883,99793 -jpl_method_to_parameter_types(M, Tfps) :-jpl_method_to_parameter_types2883,99793 -jpl_method_to_parameter_types_1(XM, Cxm, Tfps) :-jpl_method_to_parameter_types_12892,100156 -jpl_method_to_parameter_types_1(XM, Cxm, Tfps) :-jpl_method_to_parameter_types_12892,100156 -jpl_method_to_parameter_types_1(XM, Cxm, Tfps) :-jpl_method_to_parameter_types_12892,100156 -jpl_method_to_return_type(M, Tr) :-jpl_method_to_return_type2902,100543 -jpl_method_to_return_type(M, Tr) :-jpl_method_to_return_type2902,100543 -jpl_method_to_return_type(M, Tr) :-jpl_method_to_return_type2902,100543 -jpl_modifier_bit(public, 0x001).jpl_modifier_bit2910,100866 -jpl_modifier_bit(public, 0x001).jpl_modifier_bit2910,100866 -jpl_modifier_bit(private, 0x002).jpl_modifier_bit2911,100906 -jpl_modifier_bit(private, 0x002).jpl_modifier_bit2911,100906 -jpl_modifier_bit(protected, 0x004).jpl_modifier_bit2912,100946 -jpl_modifier_bit(protected, 0x004).jpl_modifier_bit2912,100946 -jpl_modifier_bit(static, 0x008).jpl_modifier_bit2913,100986 -jpl_modifier_bit(static, 0x008).jpl_modifier_bit2913,100986 -jpl_modifier_bit(final, 0x010).jpl_modifier_bit2914,101026 -jpl_modifier_bit(final, 0x010).jpl_modifier_bit2914,101026 -jpl_modifier_bit(synchronized, 0x020).jpl_modifier_bit2915,101066 -jpl_modifier_bit(synchronized, 0x020).jpl_modifier_bit2915,101066 -jpl_modifier_bit(volatile, 0x040).jpl_modifier_bit2916,101106 -jpl_modifier_bit(volatile, 0x040).jpl_modifier_bit2916,101106 -jpl_modifier_bit(transient, 0x080).jpl_modifier_bit2917,101146 -jpl_modifier_bit(transient, 0x080).jpl_modifier_bit2917,101146 -jpl_modifier_bit(native, 0x100).jpl_modifier_bit2918,101186 -jpl_modifier_bit(native, 0x100).jpl_modifier_bit2918,101186 -jpl_modifier_bit(interface, 0x200).jpl_modifier_bit2919,101226 -jpl_modifier_bit(interface, 0x200).jpl_modifier_bit2919,101226 -jpl_modifier_bit(abstract, 0x400).jpl_modifier_bit2920,101266 -jpl_modifier_bit(abstract, 0x400).jpl_modifier_bit2920,101266 -jpl_modifier_int_to_modifiers(I, Ms) :-jpl_modifier_int_to_modifiers2931,101668 -jpl_modifier_int_to_modifiers(I, Ms) :-jpl_modifier_int_to_modifiers2931,101668 -jpl_modifier_int_to_modifiers(I, Ms) :-jpl_modifier_int_to_modifiers2931,101668 -jpl_servlet_byref(Config, Request, Response) :-jpl_servlet_byref2949,102242 -jpl_servlet_byref(Config, Request, Response) :-jpl_servlet_byref2949,102242 -jpl_servlet_byref(Config, Request, Response) :-jpl_servlet_byref2949,102242 -jpl_servlet_byval(MM, CT, Ba) :-jpl_servlet_byval3175,111401 -jpl_servlet_byval(MM, CT, Ba) :-jpl_servlet_byval3175,111401 -jpl_servlet_byval(MM, CT, Ba) :-jpl_servlet_byval3175,111401 -jpl_cache_type_of_ref(T, @(Tag)) :-jpl_cache_type_of_ref3195,112111 -jpl_cache_type_of_ref(T, @(Tag)) :-jpl_cache_type_of_ref3195,112111 -jpl_cache_type_of_ref(T, @(Tag)) :-jpl_cache_type_of_ref3195,112111 -:- dynamic jpl_class_tag_type_cache/2.dynamic3230,113643 -:- dynamic jpl_class_tag_type_cache/2.dynamic3230,113643 -jpl_class_to_ancestor_classes(C, Cas) :-jpl_class_to_ancestor_classes3241,114149 -jpl_class_to_ancestor_classes(C, Cas) :-jpl_class_to_ancestor_classes3241,114149 -jpl_class_to_ancestor_classes(C, Cas) :-jpl_class_to_ancestor_classes3241,114149 -jpl_class_to_classname(C, CN) :-jpl_class_to_classname3257,114711 -jpl_class_to_classname(C, CN) :-jpl_class_to_classname3257,114711 -jpl_class_to_classname(C, CN) :-jpl_class_to_classname3257,114711 -jpl_class_to_raw_classname(Cobj, CN) :-jpl_class_to_raw_classname3265,114965 -jpl_class_to_raw_classname(Cobj, CN) :-jpl_class_to_raw_classname3265,114965 -jpl_class_to_raw_classname(Cobj, CN) :-jpl_class_to_raw_classname3265,114965 -jpl_class_to_raw_classname_chars(Cobj, CsCN) :-jpl_class_to_raw_classname_chars3278,115489 -jpl_class_to_raw_classname_chars(Cobj, CsCN) :-jpl_class_to_raw_classname_chars3278,115489 -jpl_class_to_raw_classname_chars(Cobj, CsCN) :-jpl_class_to_raw_classname_chars3278,115489 -jpl_class_to_super_class(C, Cx) :-jpl_class_to_super_class3284,115681 -jpl_class_to_super_class(C, Cx) :-jpl_class_to_super_class3284,115681 -jpl_class_to_super_class(C, Cx) :-jpl_class_to_super_class3284,115681 -jpl_class_to_type(@(Tag), Type) :-jpl_class_to_type3297,116262 -jpl_class_to_type(@(Tag), Type) :-jpl_class_to_type3297,116262 -jpl_class_to_type(@(Tag), Type) :-jpl_class_to_type3297,116262 -jpl_classes_to_types([], []).jpl_classes_to_types3310,116751 -jpl_classes_to_types([], []).jpl_classes_to_types3310,116751 -jpl_classes_to_types([C|Cs], [T|Ts]) :-jpl_classes_to_types3312,116782 -jpl_classes_to_types([C|Cs], [T|Ts]) :-jpl_classes_to_types3312,116782 -jpl_classes_to_types([C|Cs], [T|Ts]) :-jpl_classes_to_types3312,116782 -jpl_classname_chars_to_type(Cs, Type) :-jpl_classname_chars_to_type3318,116961 -jpl_classname_chars_to_type(Cs, Type) :-jpl_classname_chars_to_type3318,116961 -jpl_classname_chars_to_type(Cs, Type) :-jpl_classname_chars_to_type3318,116961 -jpl_classname_to_class(N, C) :-jpl_classname_to_class3331,117394 -jpl_classname_to_class(N, C) :-jpl_classname_to_class3331,117394 -jpl_classname_to_class(N, C) :-jpl_classname_to_class3331,117394 -jpl_classname_to_type(CN, T) :-jpl_classname_to_type3347,118004 -jpl_classname_to_type(CN, T) :-jpl_classname_to_type3347,118004 -jpl_classname_to_type(CN, T) :-jpl_classname_to_type3347,118004 -:- dynamic jpl_classname_type_cache/2.dynamic3362,118434 -:- dynamic jpl_classname_type_cache/2.dynamic3362,118434 -jpl_datum_to_type(D, T) :-jpl_datum_to_type3376,119068 -jpl_datum_to_type(D, T) :-jpl_datum_to_type3376,119068 -jpl_datum_to_type(D, T) :-jpl_datum_to_type3376,119068 -jpl_datums_to_most_specific_common_ancestor_type([D], T) :-jpl_datums_to_most_specific_common_ancestor_type3400,119649 -jpl_datums_to_most_specific_common_ancestor_type([D], T) :-jpl_datums_to_most_specific_common_ancestor_type3400,119649 -jpl_datums_to_most_specific_common_ancestor_type([D], T) :-jpl_datums_to_most_specific_common_ancestor_type3400,119649 -jpl_datums_to_most_specific_common_ancestor_type([D1,D2|Ds], T0) :-jpl_datums_to_most_specific_common_ancestor_type3403,119736 -jpl_datums_to_most_specific_common_ancestor_type([D1,D2|Ds], T0) :-jpl_datums_to_most_specific_common_ancestor_type3403,119736 -jpl_datums_to_most_specific_common_ancestor_type([D1,D2|Ds], T0) :-jpl_datums_to_most_specific_common_ancestor_type3403,119736 -jpl_datums_to_most_specific_common_ancestor_type_1([], Ts, Ts).jpl_datums_to_most_specific_common_ancestor_type_13410,120032 -jpl_datums_to_most_specific_common_ancestor_type_1([], Ts, Ts).jpl_datums_to_most_specific_common_ancestor_type_13410,120032 -jpl_datums_to_most_specific_common_ancestor_type_1([D|Ds], Ts1, Ts0) :-jpl_datums_to_most_specific_common_ancestor_type_13412,120097 -jpl_datums_to_most_specific_common_ancestor_type_1([D|Ds], Ts1, Ts0) :-jpl_datums_to_most_specific_common_ancestor_type_13412,120097 -jpl_datums_to_most_specific_common_ancestor_type_1([D|Ds], Ts1, Ts0) :-jpl_datums_to_most_specific_common_ancestor_type_13412,120097 -jpl_datums_to_types([], []).jpl_datums_to_types3426,120729 -jpl_datums_to_types([], []).jpl_datums_to_types3426,120729 -jpl_datums_to_types([D|Ds], [T|Ts]) :-jpl_datums_to_types3428,120759 -jpl_datums_to_types([D|Ds], [T|Ts]) :-jpl_datums_to_types3428,120759 -jpl_datums_to_types([D|Ds], [T|Ts]) :-jpl_datums_to_types3428,120759 -jpl_false(@(false)).jpl_false3438,121075 -jpl_false(@(false)).jpl_false3438,121075 -jpl_ground_is_type(X) :-jpl_ground_is_type3445,121289 -jpl_ground_is_type(X) :-jpl_ground_is_type3445,121289 -jpl_ground_is_type(X) :-jpl_ground_is_type3445,121289 -jpl_ground_is_type(array(X)) :-jpl_ground_is_type3449,121343 -jpl_ground_is_type(array(X)) :-jpl_ground_is_type3449,121343 -jpl_ground_is_type(array(X)) :-jpl_ground_is_type3449,121343 -jpl_ground_is_type(class(_,_)).jpl_ground_is_type3452,121400 -jpl_ground_is_type(class(_,_)).jpl_ground_is_type3452,121400 -jpl_ground_is_type(method(_,_)).jpl_ground_is_type3454,121433 -jpl_ground_is_type(method(_,_)).jpl_ground_is_type3454,121433 -:- dynamic jpl_iref_type_cache/2.dynamic3458,121548 -:- dynamic jpl_iref_type_cache/2.dynamic3458,121548 -jpl_is_class(X) :-jpl_is_class3465,121734 -jpl_is_class(X) :-jpl_is_class3465,121734 -jpl_is_class(X) :-jpl_is_class3465,121734 -jpl_is_false(X) :-jpl_is_false3475,122061 -jpl_is_false(X) :-jpl_is_false3475,122061 -jpl_is_false(X) :-jpl_is_false3475,122061 -jpl_is_fieldID(jfieldID(X)) :- % NB a var arg may get bound...jpl_is_fieldID3485,122364 -jpl_is_fieldID(jfieldID(X)) :- % NB a var arg may get bound...jpl_is_fieldID3485,122364 -jpl_is_fieldID(jfieldID(X)) :- % NB a var arg may get bound...jpl_is_fieldID3485,122364 -jpl_is_methodID(jmethodID(X)) :- % NB a var arg may get bound...jpl_is_methodID3495,122716 -jpl_is_methodID(jmethodID(X)) :- % NB a var arg may get bound...jpl_is_methodID3495,122716 -jpl_is_methodID(jmethodID(X)) :- % NB a var arg may get bound...jpl_is_methodID3495,122716 -jpl_is_null(X) :-jpl_is_null3504,123023 -jpl_is_null(X) :-jpl_is_null3504,123023 -jpl_is_null(X) :-jpl_is_null3504,123023 -jpl_is_object(X) :-jpl_is_object3514,123327 -jpl_is_object(X) :-jpl_is_object3514,123327 -jpl_is_object(X) :-jpl_is_object3514,123327 -jpl_is_object_type(T) :-jpl_is_object_type3524,123607 -jpl_is_object_type(T) :-jpl_is_object_type3524,123607 -jpl_is_object_type(T) :-jpl_is_object_type3524,123607 -jpl_is_ref(@(Y)) :-jpl_is_ref3539,124198 -jpl_is_ref(@(Y)) :-jpl_is_ref3539,124198 -jpl_is_ref(@(Y)) :-jpl_is_ref3539,124198 -jpl_is_true(X) :-jpl_is_true3551,124591 -jpl_is_true(X) :-jpl_is_true3551,124591 -jpl_is_true(X) :-jpl_is_true3551,124591 -jpl_is_type(X) :-jpl_is_type3558,124728 -jpl_is_type(X) :-jpl_is_type3558,124728 -jpl_is_type(X) :-jpl_is_type3558,124728 -jpl_is_void(X) :-jpl_is_void3570,125162 -jpl_is_void(X) :-jpl_is_void3570,125162 -jpl_is_void(X) :-jpl_is_void3570,125162 -jpl_lineage_types_type_to_common_lineage_types(Ts, Tx, Ts0) :-jpl_lineage_types_type_to_common_lineage_types3575,125277 -jpl_lineage_types_type_to_common_lineage_types(Ts, Tx, Ts0) :-jpl_lineage_types_type_to_common_lineage_types3575,125277 -jpl_lineage_types_type_to_common_lineage_types(Ts, Tx, Ts0) :-jpl_lineage_types_type_to_common_lineage_types3575,125277 -jpl_non_var_is_object_type(class(_,_)).jpl_non_var_is_object_type3584,125578 -jpl_non_var_is_object_type(class(_,_)).jpl_non_var_is_object_type3584,125578 -jpl_non_var_is_object_type(array(_)).jpl_non_var_is_object_type3586,125619 -jpl_non_var_is_object_type(array(_)).jpl_non_var_is_object_type3586,125619 -jpl_null(@(null)).jpl_null3594,125872 -jpl_null(@(null)).jpl_null3594,125872 -jpl_object_array_to_list(A, Vs) :-jpl_object_array_to_list3602,126158 -jpl_object_array_to_list(A, Vs) :-jpl_object_array_to_list3602,126158 -jpl_object_array_to_list(A, Vs) :-jpl_object_array_to_list3602,126158 -jpl_object_array_to_list_1(A, I, N, Xs) :-jpl_object_array_to_list_13610,126395 -jpl_object_array_to_list_1(A, I, N, Xs) :-jpl_object_array_to_list_13610,126395 -jpl_object_array_to_list_1(A, I, N, Xs) :-jpl_object_array_to_list_13610,126395 -jpl_object_to_class(Obj, C) :-jpl_object_to_class3627,126961 -jpl_object_to_class(Obj, C) :-jpl_object_to_class3627,126961 -jpl_object_to_class(Obj, C) :-jpl_object_to_class3627,126961 -jpl_object_to_type(@(Tag), Type) :-jpl_object_to_type3638,127365 -jpl_object_to_type(@(Tag), Type) :-jpl_object_to_type3638,127365 -jpl_object_to_type(@(Tag), Type) :-jpl_object_to_type3638,127365 -jpl_object_type_to_super_type(T, Tx) :-jpl_object_type_to_super_type3643,127512 -jpl_object_type_to_super_type(T, Tx) :-jpl_object_type_to_super_type3643,127512 -jpl_object_type_to_super_type(T, Tx) :-jpl_object_type_to_super_type3643,127512 -jpl_primitive_buffer_to_array(T, Xc, Bp, I, Size, [Vc|Vcs]) :-jpl_primitive_buffer_to_array3661,128056 -jpl_primitive_buffer_to_array(T, Xc, Bp, I, Size, [Vc|Vcs]) :-jpl_primitive_buffer_to_array3661,128056 -jpl_primitive_buffer_to_array(T, Xc, Bp, I, Size, [Vc|Vcs]) :-jpl_primitive_buffer_to_array3661,128056 -jpl_primitive_type(boolean).jpl_primitive_type3671,128347 -jpl_primitive_type(boolean).jpl_primitive_type3671,128347 -jpl_primitive_type(char).jpl_primitive_type3672,128376 -jpl_primitive_type(char).jpl_primitive_type3672,128376 -jpl_primitive_type(byte).jpl_primitive_type3673,128402 -jpl_primitive_type(byte).jpl_primitive_type3673,128402 -jpl_primitive_type(short).jpl_primitive_type3674,128428 -jpl_primitive_type(short).jpl_primitive_type3674,128428 -jpl_primitive_type(int).jpl_primitive_type3675,128455 -jpl_primitive_type(int).jpl_primitive_type3675,128455 -jpl_primitive_type(long).jpl_primitive_type3676,128480 -jpl_primitive_type(long).jpl_primitive_type3676,128480 -jpl_primitive_type(float).jpl_primitive_type3677,128506 -jpl_primitive_type(float).jpl_primitive_type3677,128506 -jpl_primitive_type(double).jpl_primitive_type3678,128533 -jpl_primitive_type(double).jpl_primitive_type3678,128533 -jpl_primitive_type_default_value(boolean, @(false)).jpl_primitive_type_default_value3687,128892 -jpl_primitive_type_default_value(boolean, @(false)).jpl_primitive_type_default_value3687,128892 -jpl_primitive_type_default_value(char, 0).jpl_primitive_type_default_value3688,128945 -jpl_primitive_type_default_value(char, 0).jpl_primitive_type_default_value3688,128945 -jpl_primitive_type_default_value(byte, 0).jpl_primitive_type_default_value3689,128991 -jpl_primitive_type_default_value(byte, 0).jpl_primitive_type_default_value3689,128991 -jpl_primitive_type_default_value(short, 0).jpl_primitive_type_default_value3690,129037 -jpl_primitive_type_default_value(short, 0).jpl_primitive_type_default_value3690,129037 -jpl_primitive_type_default_value(int, 0).jpl_primitive_type_default_value3691,129083 -jpl_primitive_type_default_value(int, 0).jpl_primitive_type_default_value3691,129083 -jpl_primitive_type_default_value(long, 0).jpl_primitive_type_default_value3692,129129 -jpl_primitive_type_default_value(long, 0).jpl_primitive_type_default_value3692,129129 -jpl_primitive_type_default_value(float, 0.0).jpl_primitive_type_default_value3693,129175 -jpl_primitive_type_default_value(float, 0.0).jpl_primitive_type_default_value3693,129175 -jpl_primitive_type_default_value(double, 0.0).jpl_primitive_type_default_value3694,129223 -jpl_primitive_type_default_value(double, 0.0).jpl_primitive_type_default_value3694,129223 -jpl_primitive_type_super_type(T, Tx) :-jpl_primitive_type_super_type3698,129353 -jpl_primitive_type_super_type(T, Tx) :-jpl_primitive_type_super_type3698,129353 -jpl_primitive_type_super_type(T, Tx) :-jpl_primitive_type_super_type3698,129353 -jpl_primitive_type_term_to_value(Type, Term, Val) :-jpl_primitive_type_term_to_value3712,129931 -jpl_primitive_type_term_to_value(Type, Term, Val) :-jpl_primitive_type_term_to_value3712,129931 -jpl_primitive_type_term_to_value(Type, Term, Val) :-jpl_primitive_type_term_to_value3712,129931 -jpl_primitive_type_term_to_value_1(boolean, @(false), @(false)).jpl_primitive_type_term_to_value_13723,130310 -jpl_primitive_type_term_to_value_1(boolean, @(false), @(false)).jpl_primitive_type_term_to_value_13723,130310 -jpl_primitive_type_term_to_value_1(boolean, @(true), @(true)).jpl_primitive_type_term_to_value_13725,130376 -jpl_primitive_type_term_to_value_1(boolean, @(true), @(true)).jpl_primitive_type_term_to_value_13725,130376 -jpl_primitive_type_term_to_value_1(char, I, I) :-jpl_primitive_type_term_to_value_13727,130440 -jpl_primitive_type_term_to_value_1(char, I, I) :-jpl_primitive_type_term_to_value_13727,130440 -jpl_primitive_type_term_to_value_1(char, I, I) :-jpl_primitive_type_term_to_value_13727,130440 -jpl_primitive_type_term_to_value_1(byte, I, I) :-jpl_primitive_type_term_to_value_13732,130548 -jpl_primitive_type_term_to_value_1(byte, I, I) :-jpl_primitive_type_term_to_value_13732,130548 -jpl_primitive_type_term_to_value_1(byte, I, I) :-jpl_primitive_type_term_to_value_13732,130548 -jpl_primitive_type_term_to_value_1(short, I, I) :-jpl_primitive_type_term_to_value_13737,130676 -jpl_primitive_type_term_to_value_1(short, I, I) :-jpl_primitive_type_term_to_value_13737,130676 -jpl_primitive_type_term_to_value_1(short, I, I) :-jpl_primitive_type_term_to_value_13737,130676 -jpl_primitive_type_term_to_value_1(int, I, I) :-jpl_primitive_type_term_to_value_13742,130807 -jpl_primitive_type_term_to_value_1(int, I, I) :-jpl_primitive_type_term_to_value_13742,130807 -jpl_primitive_type_term_to_value_1(int, I, I) :-jpl_primitive_type_term_to_value_13742,130807 -jpl_primitive_type_term_to_value_1(long, I, I) :-jpl_primitive_type_term_to_value_13747,130936 -jpl_primitive_type_term_to_value_1(long, I, I) :-jpl_primitive_type_term_to_value_13747,130936 -jpl_primitive_type_term_to_value_1(long, I, I) :-jpl_primitive_type_term_to_value_13747,130936 -jpl_primitive_type_term_to_value_1(float, I, F) :-jpl_primitive_type_term_to_value_13752,131082 -jpl_primitive_type_term_to_value_1(float, I, F) :-jpl_primitive_type_term_to_value_13752,131082 -jpl_primitive_type_term_to_value_1(float, I, F) :-jpl_primitive_type_term_to_value_13752,131082 -jpl_primitive_type_term_to_value_1(float, F, F) :-jpl_primitive_type_term_to_value_13756,131163 -jpl_primitive_type_term_to_value_1(float, F, F) :-jpl_primitive_type_term_to_value_13756,131163 -jpl_primitive_type_term_to_value_1(float, F, F) :-jpl_primitive_type_term_to_value_13756,131163 -jpl_primitive_type_term_to_value_1(double, I, F) :-jpl_primitive_type_term_to_value_13759,131226 -jpl_primitive_type_term_to_value_1(double, I, F) :-jpl_primitive_type_term_to_value_13759,131226 -jpl_primitive_type_term_to_value_1(double, I, F) :-jpl_primitive_type_term_to_value_13759,131226 -jpl_primitive_type_term_to_value_1(double, F, F) :-jpl_primitive_type_term_to_value_13763,131308 -jpl_primitive_type_term_to_value_1(double, F, F) :-jpl_primitive_type_term_to_value_13763,131308 -jpl_primitive_type_term_to_value_1(double, F, F) :-jpl_primitive_type_term_to_value_13763,131308 -jpl_primitive_type_to_ancestor_types(T, Ts) :-jpl_primitive_type_to_ancestor_types3768,131453 -jpl_primitive_type_to_ancestor_types(T, Ts) :-jpl_primitive_type_to_ancestor_types3768,131453 -jpl_primitive_type_to_ancestor_types(T, Ts) :-jpl_primitive_type_to_ancestor_types3768,131453 -jpl_primitive_type_to_super_type(T, Tx) :-jpl_primitive_type_to_super_type3777,131708 -jpl_primitive_type_to_super_type(T, Tx) :-jpl_primitive_type_to_super_type3777,131708 -jpl_primitive_type_to_super_type(T, Tx) :-jpl_primitive_type_to_super_type3777,131708 -jpl_ref_to_type(@(X), T) :-jpl_ref_to_type3786,131997 -jpl_ref_to_type(@(X), T) :-jpl_ref_to_type3786,131997 -jpl_ref_to_type(@(X), T) :-jpl_ref_to_type3786,131997 -jpl_tag_to_type(Tag, Type) :-jpl_tag_to_type3800,132334 -jpl_tag_to_type(Tag, Type) :-jpl_tag_to_type3800,132334 -jpl_tag_to_type(Tag, Type) :-jpl_tag_to_type3800,132334 -jpl_true(@(true)).jpl_true3816,132892 -jpl_true(@(true)).jpl_true3816,132892 -jpl_type_fits_type(Tx, Ty) :-jpl_type_fits_type3824,133136 -jpl_type_fits_type(Tx, Ty) :-jpl_type_fits_type3824,133136 -jpl_type_fits_type(Tx, Ty) :-jpl_type_fits_type3824,133136 -jpl_type_fits_type_1(T, T).jpl_type_fits_type_13834,133422 -jpl_type_fits_type_1(T, T).jpl_type_fits_type_13834,133422 -jpl_type_fits_type_1(class(Ps1,Cs1), class(Ps2,Cs2)) :-jpl_type_fits_type_13838,133480 -jpl_type_fits_type_1(class(Ps1,Cs1), class(Ps2,Cs2)) :-jpl_type_fits_type_13838,133480 -jpl_type_fits_type_1(class(Ps1,Cs1), class(Ps2,Cs2)) :-jpl_type_fits_type_13838,133480 -jpl_type_fits_type_1(array(T1), class(Ps2,Cs2)) :-jpl_type_fits_type_13843,133645 -jpl_type_fits_type_1(array(T1), class(Ps2,Cs2)) :-jpl_type_fits_type_13843,133645 -jpl_type_fits_type_1(array(T1), class(Ps2,Cs2)) :-jpl_type_fits_type_13843,133645 -jpl_type_fits_type_1(array(T1), array(T2)) :-jpl_type_fits_type_13848,133800 -jpl_type_fits_type_1(array(T1), array(T2)) :-jpl_type_fits_type_13848,133800 -jpl_type_fits_type_1(array(T1), array(T2)) :-jpl_type_fits_type_13848,133800 -jpl_type_fits_type_1(array(T1), array(T2)) :-jpl_type_fits_type_13851,133878 -jpl_type_fits_type_1(array(T1), array(T2)) :-jpl_type_fits_type_13851,133878 -jpl_type_fits_type_1(array(T1), array(T2)) :-jpl_type_fits_type_13851,133878 -jpl_type_fits_type_1(null, class(_,_)).jpl_type_fits_type_13856,134023 -jpl_type_fits_type_1(null, class(_,_)).jpl_type_fits_type_13856,134023 -jpl_type_fits_type_1(null, array(_)).jpl_type_fits_type_13858,134064 -jpl_type_fits_type_1(null, array(_)).jpl_type_fits_type_13858,134064 -jpl_type_fits_type_1(T1, T2) :-jpl_type_fits_type_13860,134103 -jpl_type_fits_type_1(T1, T2) :-jpl_type_fits_type_13860,134103 -jpl_type_fits_type_1(T1, T2) :-jpl_type_fits_type_13860,134103 -jpl_type_fits_type_direct_prim(float, double).jpl_type_fits_type_direct_prim3865,134252 -jpl_type_fits_type_direct_prim(float, double).jpl_type_fits_type_direct_prim3865,134252 -jpl_type_fits_type_direct_prim(long, float).jpl_type_fits_type_direct_prim3866,134299 -jpl_type_fits_type_direct_prim(long, float).jpl_type_fits_type_direct_prim3866,134299 -jpl_type_fits_type_direct_prim(int, long).jpl_type_fits_type_direct_prim3867,134345 -jpl_type_fits_type_direct_prim(int, long).jpl_type_fits_type_direct_prim3867,134345 -jpl_type_fits_type_direct_prim(char, int).jpl_type_fits_type_direct_prim3868,134390 -jpl_type_fits_type_direct_prim(char, int).jpl_type_fits_type_direct_prim3868,134390 -jpl_type_fits_type_direct_prim(short, int).jpl_type_fits_type_direct_prim3869,134434 -jpl_type_fits_type_direct_prim(short, int).jpl_type_fits_type_direct_prim3869,134434 -jpl_type_fits_type_direct_prim(byte, short).jpl_type_fits_type_direct_prim3870,134478 -jpl_type_fits_type_direct_prim(byte, short).jpl_type_fits_type_direct_prim3870,134478 -jpl_type_fits_type_direct_xprim(Tp, Tq) :-jpl_type_fits_type_direct_xprim3874,134606 -jpl_type_fits_type_direct_xprim(Tp, Tq) :-jpl_type_fits_type_direct_xprim3874,134606 -jpl_type_fits_type_direct_xprim(Tp, Tq) :-jpl_type_fits_type_direct_xprim3874,134606 -jpl_type_fits_type_direct_xprim(Tp, Tq) :-jpl_type_fits_type_direct_xprim3877,134691 -jpl_type_fits_type_direct_xprim(Tp, Tq) :-jpl_type_fits_type_direct_xprim3877,134691 -jpl_type_fits_type_direct_xprim(Tp, Tq) :-jpl_type_fits_type_direct_xprim3877,134691 -jpl_type_fits_type_direct_xtra(char_int, int). % char_int is a direct subtype of intjpl_type_fits_type_direct_xtra3886,135075 -jpl_type_fits_type_direct_xtra(char_int, int). % char_int is a direct subtype of intjpl_type_fits_type_direct_xtra3886,135075 -jpl_type_fits_type_direct_xtra(char_int, char). % etc.jpl_type_fits_type_direct_xtra3887,135165 -jpl_type_fits_type_direct_xtra(char_int, char). % etc.jpl_type_fits_type_direct_xtra3887,135165 -jpl_type_fits_type_direct_xtra(char_short, short).jpl_type_fits_type_direct_xtra3888,135224 -jpl_type_fits_type_direct_xtra(char_short, short).jpl_type_fits_type_direct_xtra3888,135224 -jpl_type_fits_type_direct_xtra(char_short, char).jpl_type_fits_type_direct_xtra3889,135275 -jpl_type_fits_type_direct_xtra(char_short, char).jpl_type_fits_type_direct_xtra3889,135275 -jpl_type_fits_type_direct_xtra(char_byte, byte).jpl_type_fits_type_direct_xtra3890,135325 -jpl_type_fits_type_direct_xtra(char_byte, byte).jpl_type_fits_type_direct_xtra3890,135325 -jpl_type_fits_type_direct_xtra(char_byte, char).jpl_type_fits_type_direct_xtra3891,135375 -jpl_type_fits_type_direct_xtra(char_byte, char).jpl_type_fits_type_direct_xtra3891,135375 -jpl_type_fits_type_direct_xtra(overlong, float). % 6/Oct/2006 experimentjpl_type_fits_type_direct_xtra3893,135426 -jpl_type_fits_type_direct_xtra(overlong, float). % 6/Oct/2006 experimentjpl_type_fits_type_direct_xtra3893,135426 -jpl_type_fits_type_xprim(Tp, T) :-jpl_type_fits_type_xprim3901,135682 -jpl_type_fits_type_xprim(Tp, T) :-jpl_type_fits_type_xprim3901,135682 -jpl_type_fits_type_xprim(Tp, T) :-jpl_type_fits_type_xprim3901,135682 -jpl_type_to_ancestor_types(T, Tas) :-jpl_type_to_ancestor_types3913,136082 -jpl_type_to_ancestor_types(T, Tas) :-jpl_type_to_ancestor_types3913,136082 -jpl_type_to_ancestor_types(T, Tas) :-jpl_type_to_ancestor_types3913,136082 -jpl_type_to_canonical_type(array(T), array(Tc)) :-jpl_type_to_canonical_type3932,136628 -jpl_type_to_canonical_type(array(T), array(Tc)) :-jpl_type_to_canonical_type3932,136628 -jpl_type_to_canonical_type(array(T), array(Tc)) :-jpl_type_to_canonical_type3932,136628 -jpl_type_to_canonical_type(class([],[void]), void) :-jpl_type_to_canonical_type3936,136720 -jpl_type_to_canonical_type(class([],[void]), void) :-jpl_type_to_canonical_type3936,136720 -jpl_type_to_canonical_type(class([],[void]), void) :-jpl_type_to_canonical_type3936,136720 -jpl_type_to_canonical_type(class([],[N]), N) :-jpl_type_to_canonical_type3939,136779 -jpl_type_to_canonical_type(class([],[N]), N) :-jpl_type_to_canonical_type3939,136779 -jpl_type_to_canonical_type(class([],[N]), N) :-jpl_type_to_canonical_type3939,136779 -jpl_type_to_canonical_type(class(Ps,Cs), class(Ps,Cs)) :-jpl_type_to_canonical_type3943,136856 -jpl_type_to_canonical_type(class(Ps,Cs), class(Ps,Cs)) :-jpl_type_to_canonical_type3943,136856 -jpl_type_to_canonical_type(class(Ps,Cs), class(Ps,Cs)) :-jpl_type_to_canonical_type3943,136856 -jpl_type_to_canonical_type(void, void) :-jpl_type_to_canonical_type3946,136919 -jpl_type_to_canonical_type(void, void) :-jpl_type_to_canonical_type3946,136919 -jpl_type_to_canonical_type(void, void) :-jpl_type_to_canonical_type3946,136919 -jpl_type_to_canonical_type(P, P) :-jpl_type_to_canonical_type3949,136966 -jpl_type_to_canonical_type(P, P) :-jpl_type_to_canonical_type3949,136966 -jpl_type_to_canonical_type(P, P) :-jpl_type_to_canonical_type3949,136966 -jpl_type_to_class(T, @(Tag)) :-jpl_type_to_class3960,137370 -jpl_type_to_class(T, @(Tag)) :-jpl_type_to_class3960,137370 -jpl_type_to_class(T, @(Tag)) :-jpl_type_to_class3960,137370 -jpl_type_to_nicename(T, NN) :-jpl_type_to_nicename3987,138397 -jpl_type_to_nicename(T, NN) :-jpl_type_to_nicename3987,138397 -jpl_type_to_nicename(T, NN) :-jpl_type_to_nicename3987,138397 -jpl_type_to_classname(T, CN) :-jpl_type_to_classname4006,138973 -jpl_type_to_classname(T, CN) :-jpl_type_to_classname4006,138973 -jpl_type_to_classname(T, CN) :-jpl_type_to_classname4006,138973 -jpl_type_to_descriptor(T, D) :-jpl_type_to_descriptor4020,139496 -jpl_type_to_descriptor(T, D) :-jpl_type_to_descriptor4020,139496 -jpl_type_to_descriptor(T, D) :-jpl_type_to_descriptor4020,139496 -jpl_type_to_findclassname(T, FCN) :-jpl_type_to_findclassname4032,139850 -jpl_type_to_findclassname(T, FCN) :-jpl_type_to_findclassname4032,139850 -jpl_type_to_findclassname(T, FCN) :-jpl_type_to_findclassname4032,139850 -jpl_type_to_super_type(T, Tx) :-jpl_type_to_super_type4046,140357 -jpl_type_to_super_type(T, Tx) :-jpl_type_to_super_type4046,140357 -jpl_type_to_super_type(T, Tx) :-jpl_type_to_super_type4046,140357 -jpl_type_to_preferred_concrete_type( T, Tc) :-jpl_type_to_preferred_concrete_type4062,140997 -jpl_type_to_preferred_concrete_type( T, Tc) :-jpl_type_to_preferred_concrete_type4062,140997 -jpl_type_to_preferred_concrete_type( T, Tc) :-jpl_type_to_preferred_concrete_type4062,140997 -jpl_type_to_preferred_concrete_type_1( char_int, int).jpl_type_to_preferred_concrete_type_14069,141196 -jpl_type_to_preferred_concrete_type_1( char_int, int).jpl_type_to_preferred_concrete_type_14069,141196 -jpl_type_to_preferred_concrete_type_1( char_short, short).jpl_type_to_preferred_concrete_type_14071,141252 -jpl_type_to_preferred_concrete_type_1( char_short, short).jpl_type_to_preferred_concrete_type_14071,141252 -jpl_type_to_preferred_concrete_type_1( char_byte, byte).jpl_type_to_preferred_concrete_type_14073,141312 -jpl_type_to_preferred_concrete_type_1( char_byte, byte).jpl_type_to_preferred_concrete_type_14073,141312 -jpl_type_to_preferred_concrete_type_1( array(T), array(Tc)) :-jpl_type_to_preferred_concrete_type_14075,141370 -jpl_type_to_preferred_concrete_type_1( array(T), array(Tc)) :-jpl_type_to_preferred_concrete_type_14075,141370 -jpl_type_to_preferred_concrete_type_1( array(T), array(Tc)) :-jpl_type_to_preferred_concrete_type_14075,141370 -jpl_type_to_preferred_concrete_type_1( T, T).jpl_type_to_preferred_concrete_type_14078,141482 -jpl_type_to_preferred_concrete_type_1( T, T).jpl_type_to_preferred_concrete_type_14078,141482 -jpl_types_fit_type([], _).jpl_types_fit_type4087,141824 -jpl_types_fit_type([], _).jpl_types_fit_type4087,141824 -jpl_types_fit_type([T1|T1s], T2) :-jpl_types_fit_type4089,141852 -jpl_types_fit_type([T1|T1s], T2) :-jpl_types_fit_type4089,141852 -jpl_types_fit_type([T1|T1s], T2) :-jpl_types_fit_type4089,141852 -jpl_types_fit_types([], []).jpl_types_fit_types4098,142148 -jpl_types_fit_types([], []).jpl_types_fit_types4098,142148 -jpl_types_fit_types([T1|T1s], [T2|T2s]) :-jpl_types_fit_types4100,142178 -jpl_types_fit_types([T1|T1s], [T2|T2s]) :-jpl_types_fit_types4100,142178 -jpl_types_fit_types([T1|T1s], [T2|T2s]) :-jpl_types_fit_types4100,142178 -jpl_value_to_type(V, T) :-jpl_value_to_type4112,142610 -jpl_value_to_type(V, T) :-jpl_value_to_type4112,142610 -jpl_value_to_type(V, T) :-jpl_value_to_type4112,142610 -jpl_value_to_type_1(@(false), boolean) :- !.jpl_value_to_type_14134,143414 -jpl_value_to_type_1(@(false), boolean) :- !.jpl_value_to_type_14134,143414 -jpl_value_to_type_1(@(false), boolean) :- !.jpl_value_to_type_14134,143414 -jpl_value_to_type_1(@(true), boolean) :- !.jpl_value_to_type_14135,143459 -jpl_value_to_type_1(@(true), boolean) :- !.jpl_value_to_type_14135,143459 -jpl_value_to_type_1(@(true), boolean) :- !.jpl_value_to_type_14135,143459 -jpl_value_to_type_1(A, class([java,lang],['String'])) :- % yes it's a "value"jpl_value_to_type_14136,143503 -jpl_value_to_type_1(A, class([java,lang],['String'])) :- % yes it's a "value"jpl_value_to_type_14136,143503 -jpl_value_to_type_1(A, class([java,lang],['String'])) :- % yes it's a "value"jpl_value_to_type_14136,143503 -jpl_value_to_type_1(I, T) :-jpl_value_to_type_14138,143596 -jpl_value_to_type_1(I, T) :-jpl_value_to_type_14138,143596 -jpl_value_to_type_1(I, T) :-jpl_value_to_type_14138,143596 -jpl_value_to_type_1(F, float) :-jpl_value_to_type_14155,144082 -jpl_value_to_type_1(F, float) :-jpl_value_to_type_14155,144082 -jpl_value_to_type_1(F, float) :-jpl_value_to_type_14155,144082 -jpl_void(@(void)).jpl_void4164,144344 -jpl_void(@(void)).jpl_void4164,144344 -jpl_array_to_length(A, N) :-jpl_array_to_length4173,144599 -jpl_array_to_length(A, N) :-jpl_array_to_length4173,144599 -jpl_array_to_length(A, N) :-jpl_array_to_length4173,144599 -jpl_array_to_list(A, Es) :-jpl_array_to_list4184,144970 -jpl_array_to_list(A, Es) :-jpl_array_to_list4184,144970 -jpl_array_to_list(A, Es) :-jpl_array_to_list4184,144970 -jpl_datums_to_array(Ds, A) :-jpl_datums_to_array4205,145659 -jpl_datums_to_array(Ds, A) :-jpl_datums_to_array4205,145659 -jpl_datums_to_array(Ds, A) :-jpl_datums_to_array4205,145659 -jpl_datums_to_array(Ds, Tc, A) :-jpl_datums_to_array4223,146443 -jpl_datums_to_array(Ds, Tc, A) :-jpl_datums_to_array4223,146443 -jpl_datums_to_array(Ds, Tc, A) :-jpl_datums_to_array4223,146443 -jpl_enumeration_element(En, E) :-jpl_enumeration_element4238,146948 -jpl_enumeration_element(En, E) :-jpl_enumeration_element4238,146948 -jpl_enumeration_element(En, E) :-jpl_enumeration_element4238,146948 -jpl_enumeration_to_list(EN, Es) :-jpl_enumeration_to_list4252,147316 -jpl_enumeration_to_list(EN, Es) :-jpl_enumeration_to_list4252,147316 -jpl_enumeration_to_list(EN, Es) :-jpl_enumeration_to_list4252,147316 -jpl_hashtable_pair(HT, K-V) :-jpl_hashtable_pair4270,147936 -jpl_hashtable_pair(HT, K-V) :-jpl_hashtable_pair4270,147936 -jpl_hashtable_pair(HT, K-V) :-jpl_hashtable_pair4270,147936 -jpl_iterator_element(I, E) :-jpl_iterator_element4282,148249 -jpl_iterator_element(I, E) :-jpl_iterator_element4282,148249 -jpl_iterator_element(I, E) :-jpl_iterator_element4282,148249 -jpl_list_to_array(Ds, A) :-jpl_list_to_array4299,148789 -jpl_list_to_array(Ds, A) :-jpl_list_to_array4299,148789 -jpl_list_to_array(Ds, A) :-jpl_list_to_array4299,148789 -jpl_list_to_array(Ds, Type, A) :-jpl_list_to_array4312,149209 -jpl_list_to_array(Ds, Type, A) :-jpl_list_to_array4312,149209 -jpl_list_to_array(Ds, Type, A) :-jpl_list_to_array4312,149209 -jpl_terms_to_array(Ts, A) :-jpl_terms_to_array4324,149594 -jpl_terms_to_array(Ts, A) :-jpl_terms_to_array4324,149594 -jpl_terms_to_array(Ts, A) :-jpl_terms_to_array4324,149594 -jpl_terms_to_array_1([], []).jpl_terms_to_array_14330,149786 -jpl_terms_to_array_1([], []).jpl_terms_to_array_14330,149786 -jpl_terms_to_array_1([T|Ts], [{T}|Ts2]) :-jpl_terms_to_array_14332,149817 -jpl_terms_to_array_1([T|Ts], [{T}|Ts2]) :-jpl_terms_to_array_14332,149817 -jpl_terms_to_array_1([T|Ts], [{T}|Ts2]) :-jpl_terms_to_array_14332,149817 -jpl_map_element(M, K-V) :-jpl_map_element4343,150199 -jpl_map_element(M, K-V) :-jpl_map_element4343,150199 -jpl_map_element(M, K-V) :-jpl_map_element4343,150199 -jpl_set_element(S, E) :-jpl_set_element4355,150503 -jpl_set_element(S, E) :-jpl_set_element4355,150503 -jpl_set_element(S, E) :-jpl_set_element4355,150503 -is_pair(Key-_Val) :-is_pair4364,150755 -is_pair(Key-_Val) :-is_pair4364,150755 -is_pair(Key-_Val) :-is_pair4364,150755 -is_pairs(List) :-is_pairs4369,150872 -is_pairs(List) :-is_pairs4369,150872 -is_pairs(List) :-is_pairs4369,150872 -multimap_to_atom(KVs, A) :-multimap_to_atom4375,151013 -multimap_to_atom(KVs, A) :-multimap_to_atom4375,151013 -multimap_to_atom(KVs, A) :-multimap_to_atom4375,151013 -multimap_to_atom_1([], _, Cs, Cs).multimap_to_atom_14382,151207 -multimap_to_atom_1([], _, Cs, Cs).multimap_to_atom_14382,151207 -multimap_to_atom_1([K-V|KVs], T, Cs1, Cs0) :-multimap_to_atom_14383,151242 -multimap_to_atom_1([K-V|KVs], T, Cs1, Cs0) :-multimap_to_atom_14383,151242 -multimap_to_atom_1([K-V|KVs], T, Cs1, Cs0) :-multimap_to_atom_14383,151242 -to_atom(Term, Atom) :-to_atom4407,151839 -to_atom(Term, Atom) :-to_atom4407,151839 -to_atom(Term, Atom) :-to_atom4407,151839 -prolog:error_message(java_exception(Ex)) -->error_message4422,152200 -prolog:error_message(java_exception(Ex)) -->error_message4422,152200 -:- multifile user:file_search_path/2.multifile4434,152477 -:- multifile user:file_search_path/2.multifile4434,152477 -:- dynamic user:file_search_path/2.dynamic4435,152515 -:- dynamic user:file_search_path/2.dynamic4435,152515 -user:file_search_path(jar, library('.')).file_search_path4439,152610 -user:file_search_path(jar, swi(lib)).file_search_path4441,152660 -add_search_path(Path, Dir) :-add_search_path4452,152945 -add_search_path(Path, Dir) :-add_search_path4452,152945 -add_search_path(Path, Dir) :-add_search_path4452,152945 -search_path_separator((;)) :-search_path_separator4472,153427 -search_path_separator((;)) :-search_path_separator4472,153427 -search_path_separator((;)) :-search_path_separator4472,153427 -search_path_separator(:).search_path_separator4474,153497 -search_path_separator(:).search_path_separator4474,153497 -check_java_libs(JVM, Java) :-check_java_libs4496,154371 -check_java_libs(JVM, Java) :-check_java_libs4496,154371 -check_java_libs(JVM, Java) :-check_java_libs4496,154371 -location( java_root, _, Home) :- location4502,154538 -location( java_root, _, Home) :- location4502,154538 -location( java_root, _, Home) :- location4502,154538 -location(java_root, _, JRE) :-location4504,154605 -location(java_root, _, JRE) :-location4504,154605 -location(java_root, _, JRE) :-location4504,154605 -jdk_jre( Home, J ) :-jdk_jre4515,154872 -jdk_jre( Home, J ) :-jdk_jre4515,154872 -jdk_jre( Home, J ) :-jdk_jre4515,154872 -pick_jdk_jre(J, J).pick_jdk_jre4521,155199 -pick_jdk_jre(J, J).pick_jdk_jre4521,155199 -pick_jdk_jre(J0, J) :-pick_jdk_jre4522,155219 -pick_jdk_jre(J0, J) :-pick_jdk_jre4522,155219 -pick_jdk_jre(J0, J) :-pick_jdk_jre4522,155219 -pick_jdk_jre(J0, J) :-pick_jdk_jre4524,155388 -pick_jdk_jre(J0, J) :-pick_jdk_jre4524,155388 -pick_jdk_jre(J0, J) :-pick_jdk_jre4524,155388 -libfile(Base, HomeLib, File) :-libfile4528,155563 -libfile(Base, HomeLib, File) :-libfile4528,155563 -libfile(Base, HomeLib, File) :-libfile4528,155563 -libfile(Base, HomeLib, File) :-libfile4533,155825 -libfile(Base, HomeLib, File) :-libfile4533,155825 -libfile(Base, HomeLib, File) :-libfile4533,155825 -jlib( jvm, '/server/libjvm' ).jlib4538,156063 -jlib( jvm, '/server/libjvm' ).jlib4538,156063 -jlib( jvm, '/client/libjvm' ).jlib4539,156094 -jlib( jvm, '/client/libjvm' ).jlib4539,156094 -jlib( java, '/libjava' ).jlib4540,156125 -jlib( java, '/libjava' ).jlib4540,156125 -java_arch( amd64 ) :-java_arch4542,156152 -java_arch( amd64 ) :-java_arch4542,156152 -java_arch( amd64 ) :-java_arch4542,156152 -library_search_path(Path, EnvVar) :-library_search_path4552,156423 -library_search_path(Path, EnvVar) :-library_search_path4552,156423 -library_search_path(Path, EnvVar) :-library_search_path4552,156423 -add_jpl_to_classpath :-add_jpl_to_classpath4567,156769 -libjpl(File) :-libjpl4589,157346 -libjpl(File) :-libjpl4589,157346 -libjpl(File) :-libjpl4589,157346 -add_jpl_to_ldpath(JPL, File) :-add_jpl_to_ldpath4602,157726 -add_jpl_to_ldpath(JPL, File) :-add_jpl_to_ldpath4602,157726 -add_jpl_to_ldpath(JPL, File) :-add_jpl_to_ldpath4602,157726 -add_java_to_ldpath(_LIBJAVA, LIBJVM) :- add_java_to_ldpath4619,158276 -add_java_to_ldpath(_LIBJAVA, LIBJVM) :- add_java_to_ldpath4619,158276 -add_java_to_ldpath(_LIBJAVA, LIBJVM) :- add_java_to_ldpath4619,158276 -add_java_to_ldpath(LIBJAVA, _LIBJVM) :- add_java_to_ldpath4622,158358 -add_java_to_ldpath(LIBJAVA, _LIBJVM) :- add_java_to_ldpath4622,158358 -add_java_to_ldpath(LIBJAVA, _LIBJVM) :- add_java_to_ldpath4622,158358 -add_java_to_ldpath(_,_).add_java_to_ldpath4625,158441 -add_java_to_ldpath(_,_).add_java_to_ldpath4625,158441 -java_dirs -->java_dirs4632,158579 -java_dir(DLL, _SubPath) -->java_dir4642,158818 -java_dir(DLL, _SubPath) -->java_dir4642,158818 -java_dir(DLL, _SubPath) -->java_dir4642,158818 -java_dir(_DLL, SubPath) -->java_dir4646,158911 -java_dir(_DLL, SubPath) -->java_dir4646,158911 -java_dir(_DLL, SubPath) -->java_dir4646,158911 -java_dir(_, _) --> [].java_dir4652,159052 -java_dir(_, _) --> [].java_dir4652,159052 -java_dir(_, _) --> [].java_dir4652,159052 -java_home(Home) :-java_home4668,159386 -java_home(Home) :-java_home4668,159386 -java_home(Home) :-java_home4668,159386 -java_home(Home) :-java_home4672,159501 -java_home(Home) :-java_home4672,159501 -java_home(Home) :-java_home4672,159501 -java_home(Home) :-java_home4680,159830 -java_home(Home) :-java_home4680,159830 -java_home(Home) :-java_home4680,159830 -setup_jvm :-setup_jvm4697,160155 -setup_jvm :-setup_jvm4699,160183 -report_java_setup_problem(E) :-report_java_setup_problem4707,160434 -report_java_setup_problem(E) :-report_java_setup_problem4707,160434 -report_java_setup_problem(E) :-report_java_setup_problem4707,160434 -prolog:message(extend_ld_path(Dirs)) -->message4718,160646 -prolog:message(extend_ld_path(Dirs)) -->message4718,160646 -dir_per_line([]) --> [].dir_per_line4722,160750 -dir_per_line([]) --> [].dir_per_line4722,160750 -dir_per_line([]) --> [].dir_per_line4722,160750 -dir_per_line([H|T]) -->dir_per_line4723,160775 -dir_per_line([H|T]) -->dir_per_line4723,160775 -dir_per_line([H|T]) -->dir_per_line4723,160775 - -packages/jpl/make.bat,0 - -packages/jpl/Makefile.mak,460 -PLHOME=..\..PLHOME11,277 -JAVA="$(JAVA_HOME)\bin\java"JAVA13,318 -PKGDLL=jplPKGDLL15,348 -EXDIR= $(PKGDOC)\examples\jplEXDIR17,360 -EXPL= $(EXDIR)\prologEXPL18,391 -EXPLS= jpl_colour_choose_demo.pl \EXPLS19,414 -EXJAVA= $(EXDIR)\javaEXJAVA25,565 -EXJAVAS= Exceptions Exceptions2 Family FamilyMT Test Test2 Time \EXJAVAS26,588 -CFLAGS = $(CFLAGS) \CFLAGS30,680 -LIBS = $(LIBS) "$(JAVA_HOME)\lib\jvm.lib"LIBS33,763 -OBJ= src\c\jpl.objOBJ35,807 - -packages/jpl/README.html,0 - -packages/jpl/src/c/build.bat,391 -set DEFINES=/D_REENTRANT /DWIN32 /D_WINDOWS /D__SWI_PROLOG__ /D__SWI_EMBEDDED__DEFINES6,175 -set JVM_INC=/I "%JAVA_HOME%\include" /I "%JAVA_HOME%\include/win32"JVM_INC7,255 -set PL_INC=/I "%PL_HOME%\include"PL_INC8,323 -set JVM_LIB="%JAVA_HOME%\lib\jvm.lib"JVM_LIB9,357 -set PL_LIB="%PL_HOME%\lib\libpl.lib"PL_LIB10,395 -set PTHREAD_LIB="%PL_HOME%\lib/pthreadVC.lib"PTHREAD_LIB11,432 - -packages/jpl/src/c/hacks.c,114 -jni_SetByteArrayElement(jni_SetByteArrayElement5,73 -jni_SetDoubleArrayElement(jni_SetDoubleArrayElement43,784 - -packages/jpl/src/c/hacks.h,114 -jni_SetByteArrayElement(jni_SetByteArrayElement5,73 -jni_SetDoubleArrayElement(jni_SetDoubleArrayElement43,784 - -packages/jpl/src/c/jpl.c,22572 -#define JPL_C_LIB_VERSION JPL_C_LIB_VERSION45,1948 -#define JPL_C_LIB_VERSION_MAJOR JPL_C_LIB_VERSION_MAJOR46,1989 -#define JPL_C_LIB_VERSION_MINOR JPL_C_LIB_VERSION_MINOR47,2024 -#define JPL_C_LIB_VERSION_PATCH JPL_C_LIB_VERSION_PATCH48,2059 -#define JPL_C_LIB_VERSION_STATUS JPL_C_LIB_VERSION_STATUS49,2094 -#define DEBUG_LEVEL DEBUG_LEVEL53,2189 -#define JPL_DEBUG(JPL_DEBUG54,2211 -#define JPL_CACHE_TYPE_OF_REF JPL_CACHE_TYPE_OF_REF58,2352 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T66,2702 -#define SIZEOF_LONG SIZEOF_LONG67,2731 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG68,2757 -#define SIZEOF_VOIDP SIZEOF_VOIDP70,2826 -#define SIZEOF_VOIDP SIZEOF_VOIDP72,2859 -#define Sdprintf(Sdprintf79,2978 -#define pthread_mutex_lock(pthread_mutex_lock98,3464 -#define pthread_mutex_unlock(pthread_mutex_unlock99,3495 -#define pthread_cond_signal(pthread_cond_signal100,3528 -#define pthread_cond_wait(pthread_cond_wait101,3560 -#define TRUE TRUE107,3640 -#define FALSE FALSE110,3676 -#define JNI_MIN_JCHAR JNI_MIN_JCHAR117,3823 -#define JNI_MAX_JCHAR JNI_MAX_JCHAR118,3853 -#define JNI_MIN_JBYTE JNI_MIN_JBYTE120,3891 -#define JNI_MAX_JBYTE JNI_MAX_JBYTE121,3928 -#define JNI_MIN_JSHORT JNI_MIN_JSHORT123,3966 -#define JNI_MAX_JSHORT JNI_MAX_JSHORT124,4004 -#define JNI_XPUT_VOID JNI_XPUT_VOID127,4044 -#define JNI_XPUT_BOOLEAN JNI_XPUT_BOOLEAN128,4074 -#define JNI_XPUT_BYTE JNI_XPUT_BYTE129,4107 -#define JNI_XPUT_CHAR JNI_XPUT_CHAR130,4137 -#define JNI_XPUT_SHORT JNI_XPUT_SHORT131,4167 -#define JNI_XPUT_INT JNI_XPUT_INT132,4198 -#define JNI_XPUT_LONG JNI_XPUT_LONG133,4227 -#define JNI_XPUT_FLOAT JNI_XPUT_FLOAT134,4257 -#define JNI_XPUT_DOUBLE JNI_XPUT_DOUBLE135,4288 -#define JNI_XPUT_FLOAT_TO_DOUBLE JNI_XPUT_FLOAT_TO_DOUBLE136,4320 -#define JNI_XPUT_LONG_TO_FLOAT JNI_XPUT_LONG_TO_FLOAT137,4360 -#define JNI_XPUT_LONG_TO_DOUBLE JNI_XPUT_LONG_TO_DOUBLE138,4398 -#define JNI_XPUT_REF JNI_XPUT_REF139,4437 -#define JNI_XPUT_ATOM JNI_XPUT_ATOM140,4466 -#define JNI_XPUT_JVALUEP JNI_XPUT_JVALUEP141,4496 -#define JNI_XPUT_JVALUE JNI_XPUT_JVALUE142,4529 -#define JNI_HR_LOAD_FACTOR JNI_HR_LOAD_FACTOR147,4598 -#define JNI_HR_ADD_FAIL JNI_HR_ADD_FAIL150,4670 -#define JNI_HR_ADD_NEW JNI_HR_ADD_NEW151,4702 -#define JNI_HR_ADD_OLD JNI_HR_ADD_OLD152,4733 -#define JPL_INIT_RAW JPL_INIT_RAW158,4936 -#define JPL_INIT_PVM_MAYBE JPL_INIT_PVM_MAYBE159,4966 -#define JPL_INIT_OK JPL_INIT_OK160,5002 -#define JPL_INIT_JPL_FAILED JPL_INIT_JPL_FAILED161,5032 -#define JPL_INIT_PVM_FAILED JPL_INIT_PVM_FAILED162,5069 -#define JPL_MAX_POOL_ENGINES JPL_MAX_POOL_ENGINES164,5107 -#define JPL_INITIAL_POOL_ENGINES JPL_INITIAL_POOL_ENGINES165,5175 -#define JNI_term_to_jboolean(JNI_term_to_jboolean175,5676 -#define JNI_term_to_jchar(JNI_term_to_jchar194,6037 -#define JNI_term_to_jbyte(JNI_term_to_jbyte201,6189 -#define JNI_term_to_jshort(JNI_term_to_jshort208,6341 -#define JNI_term_to_jint(JNI_term_to_jint217,6531 -#define JNI_term_to_non_neg_jint(JNI_term_to_non_neg_jint222,6626 -#define JNI_term_to_jlong(JNI_term_to_jlong228,6747 -#define JNI_term_to_jfloat(JNI_term_to_jfloat233,6847 -#define JNI_term_to_jdouble(JNI_term_to_jdouble241,7017 -#define JNI_term_to_jfieldID(JNI_term_to_jfieldID249,7179 -#define JNI_term_to_jmethodID(JNI_term_to_jmethodID258,7403 -#define JNI_term_to_ref(JNI_term_to_ref273,7738 -#define JNI_term_to_jobject(JNI_term_to_jobject294,8232 -#define JNI_term_to_jclass(JNI_term_to_jclass302,8424 -#define JNI_term_to_throwable_jclass(JNI_term_to_throwable_jclass304,8487 -#define JNI_term_to_non_array_jclass(JNI_term_to_non_array_jclass306,8557 -#define JNI_term_to_throwable_jobject(JNI_term_to_throwable_jobject308,8627 -#define JNI_term_to_jstring(JNI_term_to_jstring310,8697 -#define JNI_term_to_jarray(JNI_term_to_jarray312,8760 -#define JNI_term_to_object_jarray(JNI_term_to_object_jarray314,8823 -#define JNI_term_to_boolean_jarray(JNI_term_to_boolean_jarray316,8892 -#define JNI_term_to_byte_jarray(JNI_term_to_byte_jarray318,8962 -#define JNI_term_to_char_jarray(JNI_term_to_char_jarray320,9029 -#define JNI_term_to_short_jarray(JNI_term_to_short_jarray322,9096 -#define JNI_term_to_int_jarray(JNI_term_to_int_jarray324,9164 -#define JNI_term_to_long_jarray(JNI_term_to_long_jarray326,9230 -#define JNI_term_to_float_jarray(JNI_term_to_float_jarray328,9297 -#define JNI_term_to_double_jarray(JNI_term_to_double_jarray330,9365 -#define JNI_term_to_jbuf(JNI_term_to_jbuf332,9434 -#define JNI_term_to_charP(JNI_term_to_charP346,9770 -#define JNI_term_to_pointer(JNI_term_to_pointer349,9836 -#define JNI_unify_void(JNI_unify_void355,9955 -#define JNI_unify_false(JNI_unify_false361,10086 -#define JNI_unify_true(JNI_unify_true367,10219 -#define JNI_jboolean_to_term(JNI_jboolean_to_term373,10350 -#define JNI_jchar_to_term(JNI_jchar_to_term379,10465 -#define JNI_jbyte_to_term(JNI_jbyte_to_term382,10534 -#define JNI_jshort_to_term(JNI_jshort_to_term385,10603 -#define JNI_jint_to_term(JNI_jint_to_term388,10673 -#define JNI_jlong_to_term(JNI_jlong_to_term391,10741 -#define JNI_jfloat_to_term(JNI_jfloat_to_term394,10809 -#define JNI_jdouble_to_term(JNI_jdouble_to_term397,10880 -#define JNI_jobject_to_term(JNI_jobject_to_term404,11172 -#define JNI_jfieldID_to_term(JNI_jfieldID_to_term424,11640 -#define JNI_jmethodID_to_term(JNI_jmethodID_to_term430,11783 -#define JNI_jbuf_to_term(JNI_jbuf_to_term436,11928 -#define JNI_pointer_to_term(JNI_pointer_to_term443,12091 -#define JNI_charP_to_term(JNI_charP_to_term446,12164 -#define jni_ensure_jvm(jni_ensure_jvm452,12337 -#define jpl_ensure_jpl_init(jpl_ensure_jpl_init464,12744 -#define jpl_ensure_pvm_init(jpl_ensure_pvm_init471,13053 -typedef struct Hr_Entry HrEntry; /* enables circular definition... */HrEntry478,13272 -struct Hr_Entry { /* a single interned reference */Hr_Entry480,13347 - jobject obj; /* a JNI global ref */obj481,13400 - jobject obj; /* a JNI global ref */Hr_Entry::obj481,13400 - int hash; /* identityHashCode(obj) */hash482,13441 - int hash; /* identityHashCode(obj) */Hr_Entry::hash482,13441 - HrEntry *next; /* next entry in this chain, or NULL */next483,13484 - HrEntry *next; /* next entry in this chain, or NULL */Hr_Entry::next483,13484 -typedef struct Hr_Table HrTable;HrTable486,13549 -struct Hr_Table {Hr_Table488,13587 - int count; /* current # entries */count489,13605 - int count; /* current # entries */Hr_Table::count489,13605 - int threshold; /* rehash on add when count==threshold */threshold490,13645 - int threshold; /* rehash on add when count==threshold */Hr_Table::threshold490,13645 - int length; /* # slots in slot array */length491,13707 - int length; /* # slots in slot array */Hr_Table::length491,13707 - HrEntry **slots; /* pointer to slot array */slots492,13752 - HrEntry **slots; /* pointer to slot array */Hr_Table::slots492,13752 -typedef intptr_t pointer; /* for JPL */pointer495,13807 -int size[16] = { /* NB relies on sequence of JNI_XPUT_* defs */size499,13960 -static atom_t JNI_atom_false; /* false */JNI_atom_false521,14793 -static atom_t JNI_atom_true; /* true */JNI_atom_true522,14844 -static atom_t JNI_atom_boolean; /* boolean */JNI_atom_boolean524,14894 -static atom_t JNI_atom_char; /* char */JNI_atom_char525,14949 -static atom_t JNI_atom_byte; /* byte */JNI_atom_byte526,14998 -static atom_t JNI_atom_short; /* short */JNI_atom_short527,15047 -static atom_t JNI_atom_int; /* int */JNI_atom_int528,15098 -static atom_t JNI_atom_long; /* long */JNI_atom_long529,15145 -static atom_t JNI_atom_float; /* float */JNI_atom_float530,15194 -static atom_t JNI_atom_double; /* double */JNI_atom_double531,15245 -static atom_t JNI_atom_null; /* null */JNI_atom_null533,15299 -static atom_t JNI_atom_void; /* void */JNI_atom_void534,15348 -static functor_t JNI_functor_at_1; /* @(_) */JNI_functor_at_1536,15398 -static functor_t JNI_functor_jbuf_2; /* jbuf(_,_) */JNI_functor_jbuf_2537,15451 -static functor_t JNI_functor_jlong_2; /* jlong(_,_) */JNI_functor_jlong_2538,15511 -static functor_t JNI_functor_jfieldID_1; /* jfieldID(_) */JNI_functor_jfieldID_1539,15572 -static functor_t JNI_functor_jmethodID_1; /* jmethodID(_) */JNI_functor_jmethodID_1540,15637 -static functor_t JNI_functor_error_2; /* error(_, _) */JNI_functor_error_2541,15704 -static functor_t JNI_functor_java_exception_1; /* java_exception(_) */JNI_functor_java_exception_1542,15767 -static functor_t JNI_functor_jpl_error_1; /* jpl_error(_) */JNI_functor_jpl_error_1543,15843 -static jclass c_class; /* java.lang.Class (rename to jClass_c ?) */c_class548,16017 -static jmethodID c_getName; /* java.lang.Class' getName() (rename to jClassGetName_m ?) */c_getName549,16114 -static jclass str_class; /* java.lang.String (this duplicates jString_c below) */str_class550,16222 -static jclass term_class; /* jpl.Term */term_class551,16332 -static jclass termt_class; /* jpl.fli.term_t */termt_class552,16377 -static jclass sys_class; /* java.lang.System (rename to jSystem_c ?) */sys_class554,16430 -static jmethodID sys_ihc; /* java.lang.System's identityHashCode() (rename to jSystemIdentityHashCode_m ?) */sys_ihc555,16530 -static jmethodID term_getTerm; /* jpl.Term's getTerm() */term_getTerm556,16646 -static jmethodID term_put; /* jpl.Term's put() */term_put557,16706 -static jmethodID term_putTerm; /* jpl.Term's static putTerm(Term,term_t) */term_putTerm558,16759 -static jclass jString_c;jString_c563,16944 -static jclass jJPLException_c;jJPLException_c564,16973 -static jclass jTermT_c;jTermT_c565,17008 -static jclass jAtomT_c;jAtomT_c566,17036 -static jclass jFunctorT_c;jFunctorT_c567,17064 -static jclass jFidT_c;jFidT_c568,17095 -static jclass jPredicateT_c;jPredicateT_c569,17122 -static jclass jQidT_c;jQidT_c570,17155 -static jclass jModuleT_c;jModuleT_c571,17182 -static jclass jEngineT_c;jEngineT_c572,17212 -static jclass jLongHolder_c;jLongHolder_c574,17243 -static jclass jPointerHolder_c;jPointerHolder_c575,17276 -static jclass jIntHolder_c;jIntHolder_c576,17312 -static jclass jInt64Holder_c;jInt64Holder_c577,17344 -static jclass jDoubleHolder_c;jDoubleHolder_c578,17375 -static jclass jStringHolder_c;jStringHolder_c579,17410 -static jclass jObjectHolder_c;jObjectHolder_c580,17445 -static jclass jBooleanHolder_c;jBooleanHolder_c581,17480 -static jfieldID jLongHolderValue_f;jLongHolderValue_f586,17623 -static jfieldID jPointerHolderValue_f;jPointerHolderValue_f587,17662 -static jfieldID jIntHolderValue_f;jIntHolderValue_f588,17704 -static jfieldID jInt64HolderValue_f;jInt64HolderValue_f589,17742 -static jfieldID jDoubleHolderValue_f;jDoubleHolderValue_f590,17782 -static jfieldID jStringHolderValue_f;jStringHolderValue_f591,17823 -static jfieldID jObjectHolderValue_f;jObjectHolderValue_f592,17864 -static jfieldID jBooleanHolderValue_f;jBooleanHolderValue_f593,17905 -const char *default_args[] = { "swipl",default_args598,18054 -static JavaVM *jvm = NULL; /* non-null -> JVM successfully loaded & initialised */jvm607,18286 -static char *jvm_ia[2] = {"-Xrs", NULL};jvm_ia608,18369 -static char **jvm_dia = jvm_ia; /* default JVM init args (after jpl init, until jvm init) */jvm_dia609,18411 -static char **jvm_aia = NULL; /* actual JVM init args (after jvm init) */jvm_aia610,18506 -static HrTable *hr_table = NULL; /* static handle to allocated-on-demand table */hr_table615,18689 -static int hr_add_count = 0; /* cumulative total of new refs interned */hr_add_count616,18771 -static int hr_old_count = 0; /* cumulative total of old refs reused */hr_old_count617,18845 -static int hr_del_count = 0; /* cumulative total of dead refs released */hr_del_count618,18917 -static int jpl_status = JPL_INIT_RAW; /* neither JPL nor PVM initialisation has occurred */jpl_status623,19099 -static jobject pvm_dia = NULL; /* default PVM init args (after jpl init, until pvm init) */pvm_dia624,19193 -static jobject pvm_aia = NULL; /* actual PVM init args (after pvm init) */pvm_aia625,19289 -static PL_engine_t *engines = NULL; /* handles of the pooled Prolog engines */engines626,19368 -static int engines_allocated = 0; /* size of engines array */engines_allocated627,19448 -static pthread_mutex_t engines_mutex = PTHREAD_MUTEX_INITIALIZER; /* for controlling pool access */engines_mutex629,19534 -static pthread_cond_t engines_cond = PTHREAD_COND_INITIALIZER; /* for controlling pool access */engines_cond630,19635 -static pthread_mutex_t jvm_init_mutex = PTHREAD_MUTEX_INITIALIZER; /* for controlling lazy initialisation */jvm_init_mutex632,19734 -static pthread_mutex_t pvm_init_mutex = PTHREAD_MUTEX_INITIALIZER; /* for controlling lazy initialisation */pvm_init_mutex633,19843 -jni_env(void) /* economically gets a JNIEnv pointer, valid for this thread */jni_env640,20081 -jpl_c_lib_version(void)jpl_c_lib_version656,20527 -jpl_c_lib_version_1_plc(jpl_c_lib_version_1_plc672,20904 -jpl_c_lib_version_4_plc(jpl_c_lib_version_4_plc682,21103 -jni_tag_to_iref2(const char *s, pointer *iref)jni_tag_to_iref2706,21918 -jni_tag_to_iref1(jni_tag_to_iref1744,22729 -jni_tag_to_iref(jni_tag_to_iref763,22983 -#define IREF_FMT IREF_FMT773,23100 -#define IREF_INTTYPE IREF_INTTYPE774,23135 -jni_iref_to_tag(jni_iref_to_tag777,23179 -jni_object_to_iref(jni_object_to_iref792,23511 -jni_tidy_iref_type_cache(pointer iref)jni_tidy_iref_type_cache820,24141 -jni_free_iref( /* called indirectly from agc hook when a possible iref is unreachable */jni_free_iref839,24532 - jni_String_to_atom( /* called from JNI_jobject_to_term(J,T) and jpl.fli.Prolog#new_atom() */jni_String_to_atom864,25099 - jni_atom_to_String(jni_atom_to_String905,25940 - jni_string_to_String(jni_string_to_String956,26926 -jni_tag_to_iref_plc(jni_tag_to_iref_plc1009,28045 -jni_atom_freed(jni_atom_freed1027,28506 -jni_hr_info_plc( /* implements jni_hr_info/4 */jni_hr_info_plc1061,29623 -jni_hr_table_slot(jni_hr_table_slot1077,30333 -jni_hr_table_plc(jni_hr_table_plc1104,30807 -jni_hr_create(jni_hr_create1125,31222 -jni_hr_create_default(void)jni_hr_create_default1160,32163 -jni_hr_free_chain_entries(jni_hr_free_chain_entries1169,32321 -jni_hr_free_table_chains(jni_hr_free_table_chains1184,32501 -jni_hr_free_table(jni_hr_free_table1201,32801 -jni_hr_rehash(void)jni_hr_rehash1221,33086 - jni_hr_hash( /* renamed in v3.0.4 from jni_object_to_hash (it belongs with this hr stuff) */jni_hr_hash1255,34517 -jni_hr_add(jni_hr_add1274,35227 -jni_hr_del(jni_hr_del1332,37403 -jni_init( void )jni_init1366,38778 -jni_new_java_exception(atom_t tag, atom_t msg)jni_new_java_exception1439,41985 -jni_new_jpl_error(atom_t tag, atom_t msg)jni_new_jpl_error1457,42456 -jni_check_exception(jni_check_exception1475,42872 - jni_byte_buf_length_to_codes_plc(jni_byte_buf_length_to_codes_plc1540,44716 -jni_param_put_plc(jni_param_put_plc1590,45657 -jni_alloc_buffer_plc(jni_alloc_buffer_plc1653,47335 -jni_free_buffer_plc(jni_free_buffer_plc1677,47941 -jni_fetch_buffer_value_plc(jni_fetch_buffer_value_plc1689,48136 -jni_stash_buffer_value_plc(jni_stash_buffer_value_plc1738,49490 -jni_get_created_jvm_count(void)jni_get_created_jvm_count1798,50811 -#define MAX_JVM_OPTIONS MAX_JVM_OPTIONS1810,50986 -jni_create_jvm_c(jni_create_jvm_c1813,51028 -jni_get_created_jvm_count_plc(jni_get_created_jvm_count_plc1887,53543 -jni_create_jvm(jni_create_jvm1897,53682 -jni_create_default_jvm(void)jni_create_default_jvm1929,54622 -jni_ensure_jvm_plc(void)jni_ensure_jvm_plc1957,55173 -jni_void_0_plc( /* C identifiers distinguished _0_ etc, Prolog name is overloaded */jni_void_0_plc1974,55549 -jni_void_1_plc(jni_void_1_plc2004,56263 -jni_void_2_plc(jni_void_2_plc2051,57241 -jni_void_3_plc(jni_void_3_plc2110,58667 -jni_void_4_plc(jni_void_4_plc2350,66683 -jni_func_0_plc(jni_func_0_plc2536,72805 -jni_func_1_plc(jni_func_1_plc2580,73791 -jni_func_2_plc(jni_func_2_plc2700,77304 -jni_func_3_plc(jni_func_3_plc2925,85152 -jni_func_4_plc(jni_func_4_plc3131,91796 -jpl_num_initial_default_args(void) /* used only once, by jpl_do_jpl_init() */jpl_num_initial_default_args3274,96515 -jpl_do_jpl_init( /* to be called once only, after PL init, before any JPL calls */jpl_do_jpl_init3289,96831 -jpl_post_pvm_init(jpl_post_pvm_init3436,102504 -jpl_test_pvm_init(jpl_test_pvm_init3492,103892 -jpl_do_pvm_init(jpl_do_pvm_init3551,105441 - jpl_ensure_jpl_init_1(jpl_ensure_jpl_init_13614,107032 - jpl_ensure_pvm_init_1(jpl_ensure_pvm_init_13628,107223 -Java_jpl_fli_Prolog_get_1default_1init_1args(Java_jpl_fli_Prolog_get_1default_1init_1args3654,107875 -Java_jpl_fli_Prolog_set_1default_1init_1args(Java_jpl_fli_Prolog_set_1default_1init_1args3691,108905 -Java_jpl_fli_Prolog_get_1actual_1init_1args(Java_jpl_fli_Prolog_get_1actual_1init_1args3740,110268 -Java_jpl_fli_Prolog_initialise(Java_jpl_fli_Prolog_initialise3776,111221 -Java_jpl_fli_Prolog_halt(Java_jpl_fli_Prolog_halt3814,111932 -getLongValue(getLongValue3839,112674 -getUIntPtrValue(getUIntPtrValue3860,113006 -getIntPtrValue(getIntPtrValue3885,113390 -getAtomTValue(getAtomTValue3909,113778 -getFunctorTValue(getFunctorTValue3919,113935 -getTermTValue(getTermTValue3929,114098 -getPointerValue( /* sets pv to jpointer_holder's .value_ (and succeeds), else sets it to NULL (and fails) */getPointerValue3953,114798 -setPointerValue(setPointerValue3984,115699 -setIntValue(setIntValue4010,116349 -setLongValue(setLongValue4064,117632 -setUIntPtrValue(setUIntPtrValue4080,117856 -setIntPtrValue(setIntPtrValue4098,118153 -setTermTValue(setTermTValue4117,118453 -setDoubleValue(setDoubleValue4140,119104 -setStringValue(setStringValue4166,119778 - Java_jpl_fli_Prolog_action_1abort(Java_jpl_fli_Prolog_action_1abort4287,122770 - Java_jpl_fli_Prolog_atom_1chars( /* but the string itself doesn't */Java_jpl_fli_Prolog_atom_1chars4310,123184 - Java_jpl_fli_Prolog_attach_1engine(Java_jpl_fli_Prolog_attach_1engine4335,123665 - Java_jpl_fli_Prolog_close_1query(Java_jpl_fli_Prolog_close_1query4377,124589 - Java_jpl_fli_Prolog_compare(Java_jpl_fli_Prolog_compare4402,125259 -Java_jpl_fli_Prolog_cons_1functor_1v(Java_jpl_fli_Prolog_cons_1functor_1v4434,126034 - Java_jpl_fli_Prolog_copy_1term_1ref(Java_jpl_fli_Prolog_copy_1term_1ref4464,126717 - Java_jpl_fli_Prolog_current_1engine(Java_jpl_fli_Prolog_current_1engine4493,127426 - Java_jpl_fli_Prolog_current_1engine_1is_1pool(Java_jpl_fli_Prolog_current_1engine_1is_1pool4519,127935 - Java_jpl_fli_Prolog_exception(Java_jpl_fli_Prolog_exception4542,128343 - Java_jpl_fli_Prolog_get_1arg(Java_jpl_fli_Prolog_get_1arg4581,129675 - Java_jpl_fli_Prolog_get_1atom_1chars(Java_jpl_fli_Prolog_get_1atom_1chars4608,130328 - Java_jpl_fli_Prolog_get_1c_1lib_1version(Java_jpl_fli_Prolog_get_1c_1lib_1version4635,131018 - Java_jpl_fli_Prolog_get_1float(Java_jpl_fli_Prolog_get_1float4651,131355 - Java_jpl_fli_Prolog_get_1integer(Java_jpl_fli_Prolog_get_1integer4676,131875 - Java_jpl_fli_Prolog_get_1name_1arity(Java_jpl_fli_Prolog_get_1name_1arity4701,132424 - Java_jpl_fli_Prolog_get_1string_1chars(Java_jpl_fli_Prolog_get_1string_1chars4732,133463 - Java_jpl_fli_Prolog_new_1atom(Java_jpl_fli_Prolog_new_1atom4757,134054 - Java_jpl_fli_Prolog_new_1functor(Java_jpl_fli_Prolog_new_1functor4784,134630 - Java_jpl_fli_Prolog_new_1module(Java_jpl_fli_Prolog_new_1module4814,135310 - Java_jpl_fli_Prolog_new_1term_1ref(Java_jpl_fli_Prolog_new_1term_1ref4842,135924 - Java_jpl_fli_Prolog_new_1term_1refs(Java_jpl_fli_Prolog_new_1term_1refs4865,136326 - Java_jpl_fli_Prolog_next_1solution(Java_jpl_fli_Prolog_next_1solution4895,137071 - Java_jpl_fli_Prolog_object_1to_1tag(Java_jpl_fli_Prolog_object_1to_1tag4924,137986 -Java_jpl_fli_Prolog_open_1query(Java_jpl_fli_Prolog_open_1query4967,139119 - Java_jpl_fli_Prolog_predicate(Java_jpl_fli_Prolog_predicate5013,141304 -Java_jpl_fli_Prolog_put_1float(JNIEnv *env,Java_jpl_fli_Prolog_put_1float5058,142791 -Java_jpl_fli_Prolog_put_1integer(JNIEnv *env,Java_jpl_fli_Prolog_put_1integer5079,143180 - Java_jpl_fli_Prolog_put_1term(Java_jpl_fli_Prolog_put_1term5100,143633 - Java_jpl_fli_Prolog_put_1jref(Java_jpl_fli_Prolog_put_1jref5127,144256 - Java_jpl_fli_Prolog_tag_1to_1object(Java_jpl_fli_Prolog_tag_1to_1object5156,144911 - Java_jpl_fli_Prolog_is_1tag(Java_jpl_fli_Prolog_is_1tag5181,145339 - Java_jpl_fli_Prolog_put_1variable(Java_jpl_fli_Prolog_put_1variable5207,145842 - Java_jpl_fli_Prolog_term_1type(Java_jpl_fli_Prolog_term_1type5230,146268 - Java_jpl_fli_Prolog_unregister_1atom(Java_jpl_fli_Prolog_unregister_1atom5253,146708 - Java_jpl_fli_Prolog_open_1foreign_1frame(Java_jpl_fli_Prolog_open_1foreign_1frame5279,147303 - Java_jpl_fli_Prolog_discard_1foreign_1frame(Java_jpl_fli_Prolog_discard_1foreign_1frame5306,147796 -Java_jpl_fli_Prolog_thread_1self(Java_jpl_fli_Prolog_thread_1self5331,148269 -create_pool_engines()create_pool_engines5349,148467 -Java_jpl_fli_Prolog_attach_1pool_1engine(Java_jpl_fli_Prolog_attach_1pool_1engine5385,149407 -pool_engine_id(pool_engine_id5452,151169 -current_pool_engine_handle(current_pool_engine_handle5473,151716 -current_pool_engine()current_pool_engine5485,151927 -Java_jpl_fli_Prolog_pool_1engine_1id(Java_jpl_fli_Prolog_pool_1engine_1id5500,152203 -Java_jpl_fli_Prolog_release_1pool_1engine(Java_jpl_fli_Prolog_release_1pool_1engine5526,152743 - jni_term_to_jref_plc(jni_term_to_jref_plc5556,153345 - jni_jobject_to_term_byval(jni_jobject_to_term_byval5578,154046 - jni_jref_to_term_plc(jni_jref_to_term_plc5598,154861 - jni_get_default_jvm_opts_1(jni_get_default_jvm_opts_15626,155714 - jni_get_jvm_opts(jni_get_jvm_opts5651,156089 - jni_set_default_jvm_opts_plc(jni_set_default_jvm_opts_plc5669,156354 - jni_get_default_jvm_opts_plc(jni_get_default_jvm_opts_plc5733,158400 - jni_get_actual_jvm_opts_plc(jni_get_actual_jvm_opts_plc5743,158580 - PL_extension predspecs[] =predspecs5755,158854 - install(void)install5793,160858 - -packages/jpl/src/c/jpl.h,0 - -packages/jpl/src/c/README,189 -ensure that JAVA_HOME and PL_HOME are appropriately set in your environment,environment2,45 -ensure that JAVA_HOME and PL_HOME are appropriately set in your environment,environment8,191 - -packages/jpl/src/java/CMakeFiles/jpl.dir/java_sources,0 - -packages/jpl/src/java/jpl/Atom.java,970 -package jpl;jpl29,1050 -public class Atom extends Compound {Atom65,2342 - public Atom(String name) {Atom78,2764 - public Atom(String name) {Atom.Atom78,2764 - public final int type() {type88,3019 - public final int type() {Atom.type88,3019 - public String typeName() { // overrides same in jpl.TermtypeName97,3202 - public String typeName() { // overrides same in jpl.TermAtom.typeName97,3202 - public Object jrefToObject() {jrefToObject101,3281 - public Object jrefToObject() {Atom.jrefToObject101,3281 - public String debugString() {debugString114,3708 - public String debugString() {Atom.debugString114,3708 - protected static Term getTerm1(Map vars_to_Vars, term_t term) {getTerm1137,4619 - protected static Term getTerm1(Map vars_to_Vars, term_t term) {Atom.getTerm1137,4619 - protected static Term getString(Map vars_to_Vars, term_t term) {getString155,5377 - protected static Term getString(Map vars_to_Vars, term_t term) {Atom.getString155,5377 - -packages/jpl/src/java/jpl/Compound.java,3643 -package jpl;jpl28,1009 -public class Compound extends Term {Compound80,2860 - protected final String name;name87,3095 - protected final String name;Compound.name87,3095 - protected final Term[] args;args91,3170 - protected final Term[] args;Compound.args91,3170 - protected Compound(String name) {Compound103,3642 - protected Compound(String name) {Compound.Compound103,3642 - public Compound(String name, Term[] args) {Compound116,3996 - public Compound(String name, Term[] args) {Compound.Compound116,3996 - public Compound(String name, int arity) {Compound137,4746 - public Compound(String name, int arity) {Compound.Compound137,4746 - public final Term arg(int i) {arg156,5425 - public final Term arg(int i) {Compound.arg156,5425 - public final boolean hasFunctor(String name, int arity) {hasFunctor164,5648 - public final boolean hasFunctor(String name, int arity) {Compound.hasFunctor164,5648 - public boolean isJFalse() {isJFalse172,5998 - public boolean isJFalse() {Compound.isJFalse172,5998 - public boolean isJTrue() {isJTrue180,6291 - public boolean isJTrue() {Compound.isJTrue180,6291 - public boolean isJNull() {isJNull188,6524 - public boolean isJNull() {Compound.isJNull188,6524 - public boolean isJVoid() {isJVoid196,6757 - public boolean isJVoid() {Compound.isJVoid196,6757 - public boolean isJObject() {isJObject204,6992 - public boolean isJObject() {Compound.isJObject204,6992 - public boolean isJRef() {isJRef212,7260 - public boolean isJRef() {Compound.isJRef212,7260 - public Object jrefToObject() {jrefToObject215,7325 - public Object jrefToObject() {Compound.jrefToObject215,7325 - public final String name() {name229,7677 - public final String name() {Compound.name229,7677 - public final int arity() {arity237,7829 - public final int arity() {Compound.arity237,7829 - public String toString() {toString247,8183 - public String toString() {Compound.toString247,8183 - public final boolean equals(Object obj) {equals257,8595 - public final boolean equals(Object obj) {Compound.equals257,8595 - public int type() {type265,8921 - public int type() {Compound.type265,8921 - public String typeName(){typeName273,9108 - public String typeName(){Compound.typeName273,9108 - public void setArg(int i, Term arg) {setArg284,9607 - public void setArg(int i, Term arg) {Compound.setArg284,9607 - protected String quotedName() {quotedName305,10403 - protected String quotedName() {Compound.quotedName305,10403 - public final Term[] args() {args336,11198 - public final Term[] args() {Compound.args336,11198 - public final Term arg0(int i) {arg0345,11406 - public final Term arg0(int i) {Compound.arg0345,11406 - public String debugString() {debugString354,11609 - public String debugString() {Compound.debugString354,11609 - protected final void put(Map varnames_to_vars, term_t term) {put371,12388 - protected final void put(Map varnames_to_vars, term_t term) {Compound.put371,12388 - protected static Term getTerm1(Map varnames_to_vars, term_t term) {getTerm1387,13234 - protected static Term getTerm1(Map varnames_to_vars, term_t term) {Compound.getTerm1387,13234 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {getSubst409,14225 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {Compound.getSubst409,14225 - public boolean hasFunctor(int value, int arity) {hasFunctor412,14359 - public boolean hasFunctor(int value, int arity) {Compound.hasFunctor412,14359 - public boolean hasFunctor(double value, int arity) {hasFunctor415,14429 - public boolean hasFunctor(double value, int arity) {Compound.hasFunctor415,14429 - -packages/jpl/src/java/jpl/fli/atom_t.java,266 -package jpl.fli;jpl.fli27,972 -public class atom_t atom_t56,1930 - toString()toString70,2283 - toString()atom_t.toString70,2283 - protected void finalize() throws Throwable {finalize75,2338 - protected void finalize() throws Throwable {atom_t.finalize75,2338 - -packages/jpl/src/java/jpl/fli/BooleanHolder.java,169 -package jpl.fli;jpl.fli27,972 -public class BooleanHolderBooleanHolder55,1878 - public boolean value;value57,1907 - public boolean value;BooleanHolder.value57,1907 - -packages/jpl/src/java/jpl/fli/DoubleHolder.java,164 -package jpl.fli;jpl.fli27,972 -public class DoubleHolderDoubleHolder55,1875 - public double value;value57,1903 - public double value;DoubleHolder.value57,1903 - -packages/jpl/src/java/jpl/fli/engine_t.java,92 -package jpl.fli;jpl.fli27,972 -public class engine_t extends LongHolder {engine_t53,1941 - -packages/jpl/src/java/jpl/fli/fid_t.java,66 -package jpl.fli;jpl.fli27,972 -public class fid_t fid_t55,1869 - -packages/jpl/src/java/jpl/fli/functor_t.java,74 -package jpl.fli;jpl.fli27,972 -public class functor_t functor_t56,1974 - -packages/jpl/src/java/jpl/fli/Int64Holder.java,151 -package jpl.fli;jpl.fli1,0 -public class Int64HolderInt64Holder29,884 - public long value;value31,911 - public long value;Int64Holder.value31,911 - -packages/jpl/src/java/jpl/fli/IntHolder.java,149 -package jpl.fli;jpl.fli27,972 -public class IntHolderIntHolder55,1868 - public int value;value57,1893 - public int value;IntHolder.value57,1893 - -packages/jpl/src/java/jpl/fli/LongHolder.java,287 -package jpl.fli;jpl.fli27,972 -public class LongHolder {LongHolder53,1852 - public long value = 0L;value54,1878 - public long value = 0L;LongHolder.value54,1878 - public boolean equals(LongHolder lh) {equals56,1904 - public boolean equals(LongHolder lh) {LongHolder.equals56,1904 - -packages/jpl/src/java/jpl/fli/module_t.java,72 -package jpl.fli;jpl.fli27,972 -public class module_t module_t56,1905 - -packages/jpl/src/java/jpl/fli/ObjectHolder.java,164 -package jpl.fli;jpl.fli27,972 -public class ObjectHolderObjectHolder55,1890 - public Object value;value57,1918 - public Object value;ObjectHolder.value57,1918 - -packages/jpl/src/java/jpl/fli/PointerHolder.java,100 -package jpl.fli;jpl.fli27,972 -public class PointerHolder extends LongHolderPointerHolder59,2155 - -packages/jpl/src/java/jpl/fli/predicate_t.java,78 -package jpl.fli;jpl.fli27,972 -public class predicate_t predicate_t56,1908 - -packages/jpl/src/java/jpl/fli/Prolog.java,11506 -package jpl.fli;jpl.fli27,972 -public final class Prolog {Prolog82,3372 - public static final int VARIABLE = 1;VARIABLE89,3491 - public static final int VARIABLE = 1;Prolog.VARIABLE89,3491 - public static final int ATOM = 2;ATOM90,3530 - public static final int ATOM = 2;Prolog.ATOM90,3530 - public static final int INTEGER = 3;INTEGER91,3565 - public static final int INTEGER = 3;Prolog.INTEGER91,3565 - public static final int FLOAT = 4;FLOAT92,3603 - public static final int FLOAT = 4;Prolog.FLOAT92,3603 - public static final int STRING = 5;STRING93,3639 - public static final int STRING = 5;Prolog.STRING93,3639 - public static final int COMPOUND = 6;COMPOUND94,3676 - public static final int COMPOUND = 6;Prolog.COMPOUND94,3676 - public static final int JBOOLEAN = 101;JBOOLEAN96,3716 - public static final int JBOOLEAN = 101;Prolog.JBOOLEAN96,3716 - public static final int JREF = 102;JREF97,3757 - public static final int JREF = 102;Prolog.JREF97,3757 - public static final int JVOID = 103;JVOID98,3794 - public static final int JVOID = 103;Prolog.JVOID98,3794 - public static final int TERM = 6;TERM103,3879 - public static final int TERM = 6;Prolog.TERM103,3879 - public static final int succeed = 1;succeed105,3915 - public static final int succeed = 1;Prolog.succeed105,3915 - public static final int fail = 0;fail106,3953 - public static final int fail = 0;Prolog.fail106,3953 - public static final int Q_NORMAL = 0x02;Q_NORMAL109,4008 - public static final int Q_NORMAL = 0x02;Prolog.Q_NORMAL109,4008 - public static final int Q_NODEBUG = 0x04;Q_NODEBUG110,4050 - public static final int Q_NODEBUG = 0x04;Prolog.Q_NODEBUG110,4050 - public static final int Q_CATCH_EXCEPTION = 0x08;Q_CATCH_EXCEPTION111,4093 - public static final int Q_CATCH_EXCEPTION = 0x08;Prolog.Q_CATCH_EXCEPTION111,4093 - public static final int Q_PASS_EXCEPTION = 0x10;Q_PASS_EXCEPTION112,4144 - public static final int Q_PASS_EXCEPTION = 0x10;Prolog.Q_PASS_EXCEPTION112,4144 - public static final int CVT_ATOM = 0x0001;CVT_ATOM115,4219 - public static final int CVT_ATOM = 0x0001;Prolog.CVT_ATOM115,4219 - public static final int CVT_STRING = 0x0002;CVT_STRING116,4263 - public static final int CVT_STRING = 0x0002;Prolog.CVT_STRING116,4263 - public static final int CVT_LIST = 0x0004;CVT_LIST117,4309 - public static final int CVT_LIST = 0x0004;Prolog.CVT_LIST117,4309 - public static final int CVT_INTEGER = 0x0008;CVT_INTEGER118,4353 - public static final int CVT_INTEGER = 0x0008;Prolog.CVT_INTEGER118,4353 - public static final int CVT_FLOAT = 0x0010;CVT_FLOAT119,4400 - public static final int CVT_FLOAT = 0x0010;Prolog.CVT_FLOAT119,4400 - public static final int CVT_VARIABLE = 0x0020;CVT_VARIABLE120,4445 - public static final int CVT_VARIABLE = 0x0020;Prolog.CVT_VARIABLE120,4445 - public static final int CVT_NUMBER = (CVT_INTEGER | CVT_FLOAT);CVT_NUMBER121,4493 - public static final int CVT_NUMBER = (CVT_INTEGER | CVT_FLOAT);Prolog.CVT_NUMBER121,4493 - public static final int CVT_ATOMIC = (CVT_NUMBER | CVT_ATOM | CVT_STRING);CVT_ATOMIC122,4558 - public static final int CVT_ATOMIC = (CVT_NUMBER | CVT_ATOM | CVT_STRING);Prolog.CVT_ATOMIC122,4558 - public static final int CVT_ALL = 0x00ff;CVT_ALL123,4634 - public static final int CVT_ALL = 0x00ff;Prolog.CVT_ALL123,4634 - public static final int BUF_DISCARDABLE = 0x0000;BUF_DISCARDABLE124,4677 - public static final int BUF_DISCARDABLE = 0x0000;Prolog.BUF_DISCARDABLE124,4677 - public static final int BUF_RING = 0x0100;BUF_RING125,4728 - public static final int BUF_RING = 0x0100;Prolog.BUF_RING125,4728 - public static final int BUF_MALLOC = 0x0200;BUF_MALLOC126,4772 - public static final int BUF_MALLOC = 0x0200;Prolog.BUF_MALLOC126,4772 - public static native int compare(term_t t1, term_t t2); // returns -1, 0 or 1compare129,4868 - public static native int compare(term_t t1, term_t t2); // returns -1, 0 or 1Prolog.compare129,4868 - public static native term_t new_term_ref();new_term_ref132,4989 - public static native term_t new_term_ref();Prolog.new_term_ref132,4989 - public static native term_t new_term_refs(int n);new_term_refs133,5034 - public static native term_t new_term_refs(int n);Prolog.new_term_refs133,5034 - public static native term_t copy_term_ref(term_t from); // NOT USEDcopy_term_ref134,5085 - public static native term_t copy_term_ref(term_t from); // NOT USEDProlog.copy_term_ref134,5085 - public static native atom_t new_atom(String s);new_atom137,5172 - public static native atom_t new_atom(String s);Prolog.new_atom137,5172 - public static native String atom_chars(atom_t a);atom_chars138,5221 - public static native String atom_chars(atom_t a);Prolog.atom_chars138,5221 - public static native functor_t new_functor(atom_t f, int a);new_functor139,5272 - public static native functor_t new_functor(atom_t f, int a);Prolog.new_functor139,5272 - public static native void unregister_atom(atom_t a); // called from atom_t's finalize()unregister_atom141,5335 - public static native void unregister_atom(atom_t a); // called from atom_t's finalize()Prolog.unregister_atom141,5335 - public static native boolean get_atom_chars(term_t t, StringHolder a);get_atom_chars144,5466 - public static native boolean get_atom_chars(term_t t, StringHolder a);Prolog.get_atom_chars144,5466 - public static native boolean get_string_chars(term_t t, StringHolder s);get_string_chars145,5538 - public static native boolean get_string_chars(term_t t, StringHolder s);Prolog.get_string_chars145,5538 - public static native boolean get_integer(term_t t, Int64Holder i);get_integer146,5612 - public static native boolean get_integer(term_t t, Int64Holder i);Prolog.get_integer146,5612 - public static native boolean get_float(term_t t, DoubleHolder d);get_float147,5680 - public static native boolean get_float(term_t t, DoubleHolder d);Prolog.get_float147,5680 - public static native boolean get_name_arity(term_t t, StringHolder name, IntHolder arity);get_name_arity148,5747 - public static native boolean get_name_arity(term_t t, StringHolder name, IntHolder arity);Prolog.get_name_arity148,5747 - public static native boolean get_arg(int index, term_t t, term_t a);get_arg149,5839 - public static native boolean get_arg(int index, term_t t, term_t a);Prolog.get_arg149,5839 - public static native String object_to_tag(Object obj);object_to_tag151,5910 - public static native String object_to_tag(Object obj);Prolog.object_to_tag151,5910 - public static native Object tag_to_object(String tag); // 29/May/2008tag_to_object152,5966 - public static native Object tag_to_object(String tag); // 29/May/2008Prolog.tag_to_object152,5966 - public static native boolean is_tag(String tag); // 30/May/2008is_tag153,6037 - public static native boolean is_tag(String tag); // 30/May/2008Prolog.is_tag153,6037 - public static native int term_type(term_t t);term_type156,6123 - public static native int term_type(term_t t);Prolog.term_type156,6123 - public static native void put_variable(term_t t);put_variable159,6204 - public static native void put_variable(term_t t);Prolog.put_variable159,6204 - public static native void put_integer(term_t t, long i);put_integer160,6255 - public static native void put_integer(term_t t, long i);Prolog.put_integer160,6255 - public static native void put_float(term_t t, double f);put_float161,6313 - public static native void put_float(term_t t, double f);Prolog.put_float161,6313 - public static native void put_term(term_t t1, term_t t2);put_term162,6371 - public static native void put_term(term_t t1, term_t t2);Prolog.put_term162,6371 - public static native void put_jref(term_t t, Object ref);put_jref163,6430 - public static native void put_jref(term_t t, Object ref);Prolog.put_jref163,6430 - public static native void cons_functor_v(term_t h, functor_t fd, term_t a0);cons_functor_v166,6501 - public static native void cons_functor_v(term_t h, functor_t fd, term_t a0);Prolog.cons_functor_v166,6501 - public static native predicate_t predicate(String name, int arity, String module);predicate169,6596 - public static native predicate_t predicate(String name, int arity, String module);Prolog.predicate169,6596 - public static native qid_t open_query(module_t m, int flags, predicate_t pred, term_t t0);open_query172,6705 - public static native qid_t open_query(module_t m, int flags, predicate_t pred, term_t t0);Prolog.open_query172,6705 - public static native boolean next_solution(qid_t qid);next_solution173,6797 - public static native boolean next_solution(qid_t qid);Prolog.next_solution173,6797 - public static native void close_query(qid_t qid);close_query174,6853 - public static native void close_query(qid_t qid);Prolog.close_query174,6853 - public static native module_t new_module(atom_t name);new_module177,6918 - public static native module_t new_module(atom_t name);Prolog.new_module177,6918 - public static native term_t exception(qid_t qid);exception180,6991 - public static native term_t exception(qid_t qid);Prolog.exception180,6991 - public static native String[] get_default_init_args();get_default_init_args183,7063 - public static native String[] get_default_init_args();Prolog.get_default_init_args183,7063 - public static native boolean set_default_init_args(String argv[]);set_default_init_args184,7119 - public static native boolean set_default_init_args(String argv[]);Prolog.set_default_init_args184,7119 - public static native boolean initialise();initialise185,7187 - public static native boolean initialise();Prolog.initialise185,7187 - public static native String[] get_actual_init_args();get_actual_init_args186,7231 - public static native String[] get_actual_init_args();Prolog.get_actual_init_args186,7231 - public static native void halt(int status);halt187,7286 - public static native void halt(int status);Prolog.halt187,7286 - public static native int thread_self();thread_self190,7364 - public static native int thread_self();Prolog.thread_self190,7364 - public static native engine_t attach_pool_engine();attach_pool_engine191,7405 - public static native engine_t attach_pool_engine();Prolog.attach_pool_engine191,7405 - public static native int release_pool_engine();release_pool_engine192,7458 - public static native int release_pool_engine();Prolog.release_pool_engine192,7458 - public static native engine_t current_engine();current_engine193,7507 - public static native engine_t current_engine();Prolog.current_engine193,7507 - public static native boolean current_engine_is_pool();current_engine_is_pool194,7556 - public static native boolean current_engine_is_pool();Prolog.current_engine_is_pool194,7556 - public static native int attach_engine(engine_t e);attach_engine195,7612 - public static native int attach_engine(engine_t e);Prolog.attach_engine195,7612 - public static native String get_c_lib_version();get_c_lib_version198,7676 - public static native String get_c_lib_version();Prolog.get_c_lib_version198,7676 - public static native int action_abort();action_abort201,7749 - public static native int action_abort();Prolog.action_abort201,7749 - public static native fid_t open_foreign_frame();open_foreign_frame204,7817 - public static native fid_t open_foreign_frame();Prolog.open_foreign_frame204,7817 - public static native void discard_foreign_frame(fid_t cid);discard_foreign_frame205,7867 - public static native void discard_foreign_frame(fid_t cid);Prolog.discard_foreign_frame205,7867 - -packages/jpl/src/java/jpl/fli/qid_t.java,66 -package jpl.fli;jpl.fli27,972 -public class qid_t qid_t55,1853 - -packages/jpl/src/java/jpl/fli/StringHolder.java,164 -package jpl.fli;jpl.fli27,956 -public class StringHolderStringHolder55,1851 - public String value;value57,1879 - public String value;StringHolder.value57,1879 - -packages/jpl/src/java/jpl/fli/term_t.java,448 -package jpl.fli;jpl.fli27,972 -public class term_t term_t58,2008 - public static final long UNASSIGNED = -1L;UNASSIGNED61,2050 - public static final long UNASSIGNED = -1L;term_t.UNASSIGNED61,2050 - term_t()term_t64,2104 - term_t()term_t.term_t64,2104 - toString( int n, term_t term0 )toString84,2711 - toString( int n, term_t term0 )term_t.toString84,2711 - equals( Object obj )equals124,3841 - equals( Object obj )term_t.equals124,3841 - -packages/jpl/src/java/jpl/Float.java,2797 -package jpl;jpl28,1009 -public class Float extends Term {Float66,2271 - protected final double value;value75,2508 - protected final double value;Float.value75,2508 - public Float(double value) {Float87,2850 - public Float(double value) {Float.Float87,2850 - public final Term arg(int i) {arg100,3230 - public final Term arg(int i) {Float.arg100,3230 - public Term[] args() {args109,3432 - public Term[] args() {Float.args109,3432 - public final boolean hasFunctor(String name, int arity) {hasFunctor118,3659 - public final boolean hasFunctor(String name, int arity) {Float.hasFunctor118,3659 - public final boolean hasFunctor(int val, int arity) {hasFunctor127,3907 - public final boolean hasFunctor(int val, int arity) {Float.hasFunctor127,3907 - public final boolean hasFunctor(double val, int arity) {hasFunctor136,4141 - public final boolean hasFunctor(double val, int arity) {Float.hasFunctor136,4141 - public final String name() {name145,4386 - public final String name() {Float.name145,4386 - public final int arity() {arity154,4574 - public final int arity() {Float.arity154,4574 - public final int intValue() {intValue163,4765 - public final int intValue() {Float.intValue163,4765 - public final long longValue() {longValue172,4988 - public final long longValue() {Float.longValue172,4988 - public final float floatValue() {floatValue181,5216 - public final float floatValue() {Float.floatValue181,5216 - public final double doubleValue() {doubleValue190,5403 - public final double doubleValue() {Float.doubleValue190,5403 - public final int type() {type194,5465 - public final int type() {Float.type194,5465 - public String typeName(){typeName198,5520 - public String typeName(){Float.typeName198,5520 - public String toString() {toString207,5710 - public String toString() {Float.toString207,5710 - public final boolean equals(Object obj) {equals217,5965 - public final boolean equals(Object obj) {Float.equals217,5965 - public Object jrefToObject() {jrefToObject221,6093 - public Object jrefToObject() {Float.jrefToObject221,6093 - public double value() {value235,6494 - public double value() {Float.value235,6494 - public String debugString() {debugString245,6701 - public String debugString() {Float.debugString245,6701 - protected final void put(Map varnames_to_vars, term_t term) {put261,7318 - protected final void put(Map varnames_to_vars, term_t term) {Float.put261,7318 - protected static Term getTerm1(Map vars_to_Vars, term_t term) {getTerm1276,7875 - protected static Term getTerm1(Map vars_to_Vars, term_t term) {Float.getTerm1276,7875 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {getSubst293,8532 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {Float.getSubst293,8532 - -packages/jpl/src/java/jpl/Integer.java,2823 -package jpl;jpl28,1009 -public class Integer extends Term {Integer65,2246 - protected final long value;value74,2491 - protected final long value;Integer.value74,2491 - public Integer(long value) {Integer83,2740 - public Integer(long value) {Integer.Integer83,2740 - public Term arg(int ano) {arg96,3082 - public Term arg(int ano) {Integer.arg96,3082 - public Term[] args() {args105,3299 - public Term[] args() {Integer.args105,3299 - public final boolean hasFunctor(int val, int arity) {hasFunctor115,3528 - public final boolean hasFunctor(int val, int arity) {Integer.hasFunctor115,3528 - public boolean hasFunctor(String name, int arity) {hasFunctor124,3809 - public boolean hasFunctor(String name, int arity) {Integer.hasFunctor124,3809 - public boolean hasFunctor(double value, int arity) {hasFunctor133,4062 - public boolean hasFunctor(double value, int arity) {Integer.hasFunctor133,4062 - public final String name() {name142,4279 - public final String name() {Integer.name142,4279 - public final int arity() {arity151,4498 - public final int arity() {Integer.arity151,4498 - public final int intValue() {intValue161,4786 - public final int intValue() {Integer.intValue161,4786 - public final long longValue() {longValue174,5125 - public final long longValue() {Integer.longValue174,5125 - public final float floatValue() {floatValue183,5311 - public final float floatValue() {Integer.floatValue183,5311 - public final double doubleValue() {doubleValue192,5563 - public final double doubleValue() {Integer.doubleValue192,5563 - public final int type() {type196,5683 - public final int type() {Integer.type196,5683 - public String typeName(){typeName200,5739 - public String typeName(){Integer.typeName200,5739 - public String toString() {toString209,5951 - public String toString() {Integer.toString209,5951 - public final boolean equals(Object obj) {equals219,6298 - public final boolean equals(Object obj) {Integer.equals219,6298 - public final int value() {value233,6707 - public final int value() {Integer.value233,6707 - public String debugString() {debugString243,6929 - public String debugString() {Integer.debugString243,6929 - protected final void put(Map varnames_to_vars, term_t term) {put258,7494 - protected final void put(Map varnames_to_vars, term_t term) {Integer.put258,7494 - protected static Term getTerm1(Map vars_to_Vars, term_t term) {getTerm1273,8077 - protected static Term getTerm1(Map vars_to_Vars, term_t term) {Integer.getTerm1273,8077 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {getSubst290,8711 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {Integer.getSubst290,8711 - public Object jrefToObject() {jrefToObject293,8789 - public Object jrefToObject() {Integer.jrefToObject293,8789 - -packages/jpl/src/java/jpl/JPL.java,3950 -package jpl;jpl28,1009 -public class JPL {JPL62,2278 - protected static final boolean DEBUG = false;DEBUG63,2297 - protected static final boolean DEBUG = false;JPL.DEBUG63,2297 - public static final Term JFALSE = new Compound("@", new Term[] {new Atom("false")});JFALSE65,2348 - public static final Term JFALSE = new Compound("@", new Term[] {new Atom("false")});JPL.JFALSE65,2348 - public static final Term JTRUE = new Compound("@", new Term[] {new Atom("true")});JTRUE66,2434 - public static final Term JTRUE = new Compound("@", new Term[] {new Atom("true")});JPL.JTRUE66,2434 - public static final Term JNULL = new Compound("@", new Term[] {new Atom("null")});JNULL67,2518 - public static final Term JNULL = new Compound("@", new Term[] {new Atom("null")});JPL.JNULL67,2518 - public static final Term JVOID = new Compound("@", new Term[] {new Atom("void")});JVOID68,2602 - public static final Term JVOID = new Compound("@", new Term[] {new Atom("void")});JPL.JVOID68,2602 - protected static boolean modeDontTellMe = true;modeDontTellMe70,2688 - protected static boolean modeDontTellMe = true;JPL.modeDontTellMe70,2688 - private static String nativeLibraryName = "jpl";nativeLibraryName72,2738 - private static String nativeLibraryName = "jpl";JPL.nativeLibraryName72,2738 - private static String nativeLibraryDir = null;nativeLibraryDir73,2788 - private static String nativeLibraryDir = null;JPL.nativeLibraryDir73,2788 - private static String nativeLibraryPath = null;nativeLibraryPath74,2836 - private static String nativeLibraryPath = null;JPL.nativeLibraryPath74,2836 - public static String setNativeLibraryName(String newName) {setNativeLibraryName75,2885 - public static String setNativeLibraryName(String newName) {JPL.setNativeLibraryName75,2885 - public static String setNativeLibraryDir(String newDir) {setNativeLibraryDir84,3140 - public static String setNativeLibraryDir(String newDir) {JPL.setNativeLibraryDir84,3140 - public static String setNativeLibraryPath(String newPath) {setNativeLibraryPath89,3284 - public static String setNativeLibraryPath(String newPath) {JPL.setNativeLibraryPath89,3284 - public static void loadNativeLibrary() {loadNativeLibrary94,3435 - public static void loadNativeLibrary() {JPL.loadNativeLibrary94,3435 - public static void setDTMMode( boolean dtm){setDTMMode118,4711 - public static void setDTMMode( boolean dtm){JPL.setDTMMode118,4711 - public static String[] getDefaultInitArgs() {getDefaultInitArgs132,5254 - public static String[] getDefaultInitArgs() {JPL.getDefaultInitArgs132,5254 - public static void setDefaultInitArgs(String[] args) {setDefaultInitArgs143,5590 - public static void setDefaultInitArgs(String[] args) {JPL.setDefaultInitArgs143,5590 - public static String[] getActualInitArgs() {getActualInitArgs157,6056 - public static String[] getActualInitArgs() {JPL.getActualInitArgs157,6056 - public static boolean init(String[] args) {init176,6787 - public static boolean init(String[] args) {JPL.init176,6787 - public static boolean init() {init185,7057 - public static boolean init() {JPL.init185,7057 - public static boolean isTag(String s) {isTag193,7219 - public static boolean isTag(String s) {JPL.isTag193,7219 - public static Term newJRef(Object obj) {newJRef201,8117 - public static Term newJRef(Object obj) {JPL.newJRef201,8117 - public static void halt() {halt213,8447 - public static void halt() {JPL.halt213,8447 - private static final Version version_ = new Version();version_218,8544 - private static final Version version_ = new Version();JPL.version_218,8544 - public static Version version() {version225,8732 - public static Version version() {JPL.version225,8732 - public static String version_string() {version_string234,8965 - public static String version_string() {JPL.version_string234,8965 - public static void main(String[] args) {main238,9105 - public static void main(String[] args) {JPL.main238,9105 - -packages/jpl/src/java/jpl/JPLException.java,488 -package jpl;jpl28,1009 -public class JPLException extends RuntimeException {JPLException53,2047 - private static final long serialVersionUID = 1L;serialVersionUID54,2100 - private static final long serialVersionUID = 1L;JPLException.serialVersionUID54,2100 - public JPLException() {JPLException56,2151 - public JPLException() {JPLException.JPLException56,2151 - public JPLException(String s) {JPLException60,2191 - public JPLException(String s) {JPLException.JPLException60,2191 - -packages/jpl/src/java/jpl/JRef.java,1907 -package jpl;jpl28,1009 -public class JRef extends Term {JRef64,2139 - protected final Object ref;ref73,2393 - protected final Object ref;JRef.ref73,2393 - public JRef(Object ref) {JRef85,2767 - public JRef(Object ref) {JRef.JRef85,2767 - public Term arg(int ano) {arg97,3114 - public Term arg(int ano) {JRef.arg97,3114 - public String toString() {toString106,3358 - public String toString() {JRef.toString106,3358 - public final boolean equals(Object obj) {equals116,3602 - public final boolean equals(Object obj) {JRef.equals116,3602 - public final int type() {type120,3724 - public final int type() {JRef.type120,3724 - public String typeName(){typeName124,3778 - public String typeName(){JRef.typeName124,3778 - public Object ref() {ref137,4151 - public Object ref() {JRef.ref137,4151 - public Term[] args() {args151,4480 - public Term[] args() {JRef.args151,4480 - public String debugString() {debugString162,4681 - public String debugString() {JRef.debugString162,4681 - protected final void put(Map varnames_to_vars, term_t term) {put179,5372 - protected final void put(Map varnames_to_vars, term_t term) {JRef.put179,5372 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {getSubst194,5879 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {JRef.getSubst194,5879 - public boolean hasFunctor(String name, int arity) {hasFunctor197,5957 - public boolean hasFunctor(String name, int arity) {JRef.hasFunctor197,5957 - public boolean hasFunctor(int value, int arity) {hasFunctor201,6071 - public boolean hasFunctor(int value, int arity) {JRef.hasFunctor201,6071 - public boolean hasFunctor(double value, int arity) {hasFunctor205,6142 - public boolean hasFunctor(double value, int arity) {JRef.hasFunctor205,6142 - public Object jrefToObject() {jrefToObject209,6216 - public Object jrefToObject() {JRef.jrefToObject209,6216 - -packages/jpl/src/java/jpl/PrologException.java,603 -package jpl;jpl28,1009 -public final class PrologException extends JPLException {PrologException59,2308 - private static final long serialVersionUID = 1L;serialVersionUID60,2366 - private static final long serialVersionUID = 1L;PrologException.serialVersionUID60,2366 - private Term term_ = null;term_61,2416 - private Term term_ = null;PrologException.term_61,2416 - protected PrologException(Term term) {PrologException63,2445 - protected PrologException(Term term) {PrologException.PrologException63,2445 - public Term term() {term72,2635 - public Term term() {PrologException.term72,2635 - -packages/jpl/src/java/jpl/Query.java,8738 -package jpl;jpl28,1009 -public class Query implements Enumeration {Query102,4011 - private static Map m = new Hashtable(); // maps (engine_t) engine handle to (Query) topmost querym106,4213 - private static Map m = new Hashtable(); // maps (engine_t) engine handle to (Query) topmost queryQuery.m106,4213 - protected final Compound goal_; // set by all initialisersgoal_110,4444 - protected final Compound goal_; // set by all initialisersQuery.goal_110,4444 - protected final String hostModule = "user"; // until revised constructors allow this to be specifiedhostModule111,4511 - protected final String hostModule = "user"; // until revised constructors allow this to be specifiedQuery.hostModule111,4511 - protected final String contextModule = "user"; // until revised constructors allow this to be specifiedcontextModule112,4617 - protected final String contextModule = "user"; // until revised constructors allow this to be specifiedQuery.contextModule112,4617 - public final String name() {name117,4846 - public final String name() {Query.name117,4846 - public final Term[] args() {args124,5065 - public final Term[] args() {Query.args124,5065 - public final Compound goal() {goal131,5267 - public final Compound goal() {Query.goal131,5267 - public Query(Term t) { // formerly insisted (confusingly) on a Compound (or Atom)Query148,5988 - public Query(Term t) { // formerly insisted (confusingly) on a Compound (or Atom)Query.Query148,5988 - private Compound Query1(Term t) {Query1151,6100 - private Compound Query1(Term t) {Query.Query1151,6100 - public Query(String text, Term[] args) {Query175,7117 - public Query(String text, Term[] args) {Query.Query175,7117 - public Query(String text, Term arg) {Query179,7228 - public Query(String text, Term arg) {Query.Query179,7228 - private static Term Query1(String text, Term[] args) {Query1182,7312 - private static Term Query1(String text, Term[] args) {Query.Query1182,7312 - public Query(String text) {Query197,7747 - public Query(String text) {Query.Query197,7747 - private boolean open = false;open207,8110 - private boolean open = false;Query.open207,8110 - private engine_t engine = null; // handle of attached Prolog engine iff open, else nullengine210,8314 - private engine_t engine = null; // handle of attached Prolog engine iff open, else nullQuery.engine210,8314 - private Query subQuery = null; // the open Query (if any) on top of which this open Query is stacked, else nullsubQuery211,8404 - private Query subQuery = null; // the open Query (if any) on top of which this open Query is stacked, else nullQuery.subQuery211,8404 - private predicate_t predicate = null; // handle of this Query's predicate iff open, else undefinedpredicate212,8518 - private predicate_t predicate = null; // handle of this Query's predicate iff open, else undefinedQuery.predicate212,8518 - private fid_t fid = null; // id of current Prolog foreign frame iff open, else nullfid213,8618 - private fid_t fid = null; // id of current Prolog foreign frame iff open, else nullQuery.fid213,8618 - private term_t term0 = null; // term refs of this Query's args iff open, else undefinedterm0214,8706 - private term_t term0 = null; // term refs of this Query's args iff open, else undefinedQuery.term0214,8706 - private qid_t qid = null; // id of current Prolog query iff open, else nullqid215,8797 - private qid_t qid = null; // id of current Prolog query iff open, else nullQuery.qid215,8797 - public synchronized final boolean isOpen() {isOpen221,8996 - public synchronized final boolean isOpen() {Query.isOpen221,8996 - public synchronized final boolean hasMoreSolutions() {hasMoreSolutions254,10139 - public synchronized final boolean hasMoreSolutions() {Query.hasMoreSolutions254,10139 - public synchronized final void open() {open280,10926 - public synchronized final void open() {Query.open280,10926 - private final boolean get1() { // try to get the next solution; if none, close the query;get1326,13059 - private final boolean get1() { // try to get the next solution; if none, close the query;Query.get1326,13059 - public synchronized final Hashtable getSolution() {getSolution376,14931 - public synchronized final Hashtable getSolution() {Query.getSolution376,14931 - public synchronized final Hashtable getSubstWithNameVars() {getSubstWithNameVars386,15167 - public synchronized final Hashtable getSubstWithNameVars() {Query.getSubstWithNameVars386,15167 - public synchronized final Hashtable nextSolution() {nextSolution429,16734 - public synchronized final Hashtable nextSolution() {Query.nextSolution429,16734 - private final Hashtable get2() {get2432,16808 - private final Hashtable get2() {Query.get2432,16808 - private final Hashtable get2WithNameVars() {get2WithNameVars443,17222 - private final Hashtable get2WithNameVars() {Query.get2WithNameVars443,17222 - public synchronized final boolean hasMoreElements() {hasMoreElements471,18329 - public synchronized final boolean hasMoreElements() {Query.hasMoreElements471,18329 - public synchronized final Object nextElement() {nextElement483,18688 - public synchronized final Object nextElement() {Query.nextElement483,18688 - public synchronized final void rewind() {rewind486,18766 - public synchronized final void rewind() {Query.rewind486,18766 - public synchronized final void close() {close503,19395 - public synchronized final void close() {Query.close503,19395 - public synchronized final Hashtable[] allSolutions() {allSolutions549,21911 - public synchronized final Hashtable[] allSolutions() {Query.allSolutions549,21911 - public static final Hashtable[] allSolutions(Term goal) {allSolutions574,22931 - public static final Hashtable[] allSolutions(Term goal) {Query.allSolutions574,22931 - public static final Hashtable[] allSolutions(String text) {allSolutions587,23664 - public static final Hashtable[] allSolutions(String text) {Query.allSolutions587,23664 - public static final Hashtable[] allSolutions(String text, Term[] params) {allSolutions606,24922 - public static final Hashtable[] allSolutions(String text, Term[] params) {Query.allSolutions606,24922 - public synchronized final Hashtable[] nSolutions(long n) {nSolutions621,25998 - public synchronized final Hashtable[] nSolutions(long n) {Query.nSolutions621,25998 - public static final Hashtable[] nSolutions(Term goal, long n) {nSolutions644,26904 - public static final Hashtable[] nSolutions(Term goal, long n) {Query.nSolutions644,26904 - public static final Hashtable[] nSolutions(String text, long n) {nSolutions655,27502 - public static final Hashtable[] nSolutions(String text, long n) {Query.nSolutions655,27502 - public static final Hashtable[] nSolutions(String text, Term[] params, long n) {nSolutions672,28620 - public static final Hashtable[] nSolutions(String text, Term[] params, long n) {Query.nSolutions672,28620 - public synchronized final Hashtable oneSolution() {oneSolution683,29221 - public synchronized final Hashtable oneSolution() {Query.oneSolution683,29221 - public static final Hashtable oneSolution(Term goal) {oneSolution705,29937 - public static final Hashtable oneSolution(Term goal) {Query.oneSolution705,29937 - public static final Hashtable oneSolution(String text) {oneSolution715,30406 - public static final Hashtable oneSolution(String text) {Query.oneSolution715,30406 - public static final Hashtable oneSolution(String text, Term[] params) {oneSolution732,31416 - public static final Hashtable oneSolution(String text, Term[] params) {Query.oneSolution732,31416 - public synchronized final boolean query() {query746,32042 - public synchronized final boolean query() {Query.query746,32042 - public synchronized final boolean hasSolution() {hasSolution758,32572 - public synchronized final boolean hasSolution() {Query.hasSolution758,32572 - public static final boolean hasSolution(Term goal) {hasSolution769,32994 - public static final boolean hasSolution(Term goal) {Query.hasSolution769,32994 - public static final boolean hasSolution(String text) {hasSolution779,33411 - public static final boolean hasSolution(String text) {Query.hasSolution779,33411 - public static final boolean hasSolution(String text, Term[] params) {hasSolution795,34365 - public static final boolean hasSolution(String text, Term[] params) {Query.hasSolution795,34365 - public final int abort() {abort801,34667 - public final int abort() {Query.abort801,34667 - public String toString() {toString858,36816 - public String toString() {Query.toString858,36816 - public String debugString() {debugString870,37220 - public String debugString() {Query.debugString870,37220 - -packages/jpl/src/java/jpl/Term.java,5831 -package jpl;jpl28,1009 -public abstract class Term {Term67,2385 - protected Term() {Term80,2866 - protected Term() {Term.Term80,2866 - public abstract Term arg(int ano);arg93,3240 - public abstract Term arg(int ano);Term.arg93,3240 - public abstract Term[] args();args102,3499 - public abstract Term[] args();Term.args102,3499 - public abstract boolean hasFunctor(String name, int arity);hasFunctor110,3733 - public abstract boolean hasFunctor(String name, int arity);Term.hasFunctor110,3733 - public abstract boolean hasFunctor(int value, int arity);hasFunctor118,3990 - public abstract boolean hasFunctor(int value, int arity);Term.hasFunctor118,3990 - public abstract boolean hasFunctor(double value, int arity);hasFunctor125,4250 - public abstract boolean hasFunctor(double value, int arity);Term.hasFunctor125,4250 - public String name() {name133,4499 - public String name() {Term.name133,4499 - public int arity() {arity143,4794 - public int arity() {Term.arity143,4794 - public int intValue() {intValue153,5088 - public int intValue() {Term.intValue153,5088 - public long longValue() {longValue162,5386 - public long longValue() {Term.longValue162,5386 - public float floatValue() {floatValue171,5689 - public float floatValue() {Term.floatValue171,5689 - public double doubleValue() {doubleValue181,5989 - public double doubleValue() {Term.doubleValue181,5989 - public abstract int type();type194,6506 - public abstract int type();Term.type194,6506 - public abstract String typeName();typeName201,6775 - public abstract String typeName();Term.typeName201,6775 - public boolean isAtom() {isAtom208,6917 - public boolean isAtom() {Term.isAtom208,6917 - public boolean isCompound() {isCompound217,7100 - public boolean isCompound() {Term.isCompound217,7100 - public boolean isFloat() {isFloat226,7275 - public boolean isFloat() {Term.isFloat226,7275 - public boolean isInteger() {isInteger235,7444 - public boolean isInteger() {Term.isInteger235,7444 - public boolean isVariable() {isVariable244,7607 - public boolean isVariable() {Term.isVariable244,7607 - public boolean isJFalse() {isJFalse253,7822 - public boolean isJFalse() {Term.isJFalse253,7822 - public boolean isJTrue() {isJTrue262,8072 - public boolean isJTrue() {Term.isJTrue262,8072 - public boolean isJNull() {isJNull271,8321 - public boolean isJNull() {Term.isJNull271,8321 - public boolean isJVoid() {isJVoid280,8570 - public boolean isJVoid() {Term.isJVoid280,8570 - public boolean isJObject() {isJObject289,8821 - public boolean isJObject() {Term.isJObject289,8821 - public boolean isJRef() {isJRef298,9090 - public boolean isJRef() {Term.isJRef298,9090 - public abstract Object jrefToObject();jrefToObject302,9197 - public abstract Object jrefToObject();Term.jrefToObject302,9197 - public static Term objectToJRef(Object obj) {objectToJRef308,9339 - public static Term objectToJRef(Object obj) {Term.objectToJRef308,9339 - public Term putParams(Term[] ps) {putParams312,9468 - public Term putParams(Term[] ps) {Term.putParams312,9468 - public Term putParams(Term plist) {putParams322,9728 - public Term putParams(Term plist) {Term.putParams322,9728 - protected Term putParams1(IntHolder next, Term[] ps) {putParams1327,9828 - protected Term putParams1(IntHolder next, Term[] ps) {Term.putParams1327,9828 - static protected Term[] putParams2(Term[] ts, IntHolder next, Term[] ps) {putParams2343,10302 - static protected Term[] putParams2(Term[] ts, IntHolder next, Term[] ps) {Term.putParams2343,10302 - public int listLength() {listLength358,10696 - public int listLength() {Term.listLength358,10696 - public Term[] toTermArray() {toTermArray373,11183 - public Term[] toTermArray() {Term.toTermArray373,11183 - public abstract String debugString();debugString399,11817 - public abstract String debugString();Term.debugString399,11817 - public static String debugString(Term arg[]) {debugString407,12015 - public static String debugString(Term arg[]) {Term.debugString407,12015 - public void put( term_t term){put444,13513 - public void put( term_t term){Term.put444,13513 - protected abstract void put(Map varnames_to_vars, term_t term);put456,14018 - protected abstract void put(Map varnames_to_vars, term_t term);Term.put456,14018 - protected static term_t putTerms(Map varnames_to_vars, Term[] args) {putTerms470,14664 - protected static term_t putTerms(Map varnames_to_vars, Term[] args) {Term.putTerms470,14664 - public static void putTerm( Object obj, term_t termref){putTerm493,15439 - public static void putTerm( Object obj, term_t termref){Term.putTerm493,15439 - protected static Term getTerm1(Map vars_to_Vars, term_t term) {getTerm1587,19111 - protected static Term getTerm1(Map vars_to_Vars, term_t term) {Term.getTerm1587,19111 - protected static Term getTerm(Map vars_to_Vars, term_t term) {getTerm609,19788 - protected static Term getTerm(Map vars_to_Vars, term_t term) {Term.getTerm609,19788 - protected static Term getTerm( term_t term){getTerm661,22172 - protected static Term getTerm( term_t term){Term.getTerm661,22172 - protected abstract void getSubst(Map varnames_to_Terms, Map vars_to_Vars);getSubst704,24104 - protected abstract void getSubst(Map varnames_to_Terms, Map vars_to_Vars);Term.getSubst704,24104 - protected static void getSubsts(Map varnames_to_Terms, Map vars_to_Vars, Term[] args) {getSubsts715,24536 - protected static void getSubsts(Map varnames_to_Terms, Map vars_to_Vars, Term[] args) {Term.getSubsts715,24536 - protected static boolean terms_equals(Term[] t1, Term[] t2) {terms_equals732,25215 - protected static boolean terms_equals(Term[] t1, Term[] t2) {Term.terms_equals732,25215 - public static String toString(Term[] args) {toString753,25694 - public static String toString(Term[] args) {Term.toString753,25694 - -packages/jpl/src/java/jpl/test/CelsiusConverter.java,1784 -package jpl.test;jpl.test1,0 -public class CelsiusConverter implements ActionListener {CelsiusConverter12,237 - JFrame converterFrame;converterFrame13,295 - JFrame converterFrame;CelsiusConverter.converterFrame13,295 - JPanel converterPanel;converterPanel14,320 - JPanel converterPanel;CelsiusConverter.converterPanel14,320 - JTextField tempCelsius;tempCelsius15,345 - JTextField tempCelsius;CelsiusConverter.tempCelsius15,345 - JLabel celsiusLabel, fahrenheitLabel;celsiusLabel16,370 - JLabel celsiusLabel, fahrenheitLabel;CelsiusConverter.celsiusLabel16,370 - JLabel celsiusLabel, fahrenheitLabel;fahrenheitLabel16,370 - JLabel celsiusLabel, fahrenheitLabel;CelsiusConverter.fahrenheitLabel16,370 - JButton convertTemp;convertTemp17,410 - JButton convertTemp;CelsiusConverter.convertTemp17,410 - public CelsiusConverter() { // initially locate the window at top-left of desktopCelsiusConverter18,433 - public CelsiusConverter() { // initially locate the window at top-left of desktopCelsiusConverter.CelsiusConverter18,433 - public CelsiusConverter(int left, int top) { // initially locate the window at top-left of desktopCelsiusConverter21,533 - public CelsiusConverter(int left, int top) { // initially locate the window at top-left of desktopCelsiusConverter.CelsiusConverter21,533 - public void actionPerformed(ActionEvent event) {actionPerformed51,1918 - public void actionPerformed(ActionEvent event) {CelsiusConverter.actionPerformed51,1918 - public static void spawnGUI(final int left, final int top) {spawnGUI64,2422 - public static void spawnGUI(final int left, final int top) {CelsiusConverter.spawnGUI64,2422 - public static void main(String[] args) {main74,2811 - public static void main(String[] args) {CelsiusConverter.main74,2811 - -packages/jpl/src/java/jpl/test/Family.java,525 -package jpl.test;jpl.test1,0 -public class Family extends Thread {Family7,92 - int id; // client thread idid9,130 - int id; // client thread idFamily.id9,130 - private static final int delay = 0;delay10,159 - private static final int delay = 0;Family.delay10,159 - Family(int i) {Family12,197 - Family(int i) {Family.Family12,197 - public static void main(String argv[]) {main16,233 - public static void main(String argv[]) {Family.main16,233 - public void run() {run28,559 - public void run() {Family.run28,559 - -packages/jpl/src/java/jpl/test/family.pl,840 -sleep(T) :- unix(sleep(T)).sleep4,79 -sleep(T) :- unix(sleep(T)).sleep4,79 -sleep(T) :- unix(sleep(T)).sleep4,79 -sleep(T) :- unix(sleep(T)).sleep4,79 -sleep(T) :- unix(sleep(T)).sleep4,79 -child_of( joe, ralf ).child_of7,118 -child_of( joe, ralf ).child_of7,118 -child_of( mary, joe ).child_of8,141 -child_of( mary, joe ).child_of8,141 -child_of( steve, joe ).child_of9,164 -child_of( steve, joe ).child_of9,164 -descendent_of( X, Y ) :-descendent_of11,189 -descendent_of( X, Y ) :-descendent_of11,189 -descendent_of( X, Y ) :-descendent_of11,189 -descendent_of( X, Y ) :-descendent_of13,233 -descendent_of( X, Y ) :-descendent_of13,233 -descendent_of( X, Y ) :-descendent_of13,233 -p( A, B) :-p17,302 -p( A, B) :-p17,302 -p( A, B) :-p17,302 -q( 3, 4).q23,388 -q( 3, 4).q23,388 -r( 5, 5).r25,399 -r( 5, 5).r25,399 - -packages/jpl/src/java/jpl/test/FetchBigTree.java,194 -package jpl.test;jpl.test1,0 -public class FetchBigTree {FetchBigTree6,55 - public static void main(String[] args) {main7,83 - public static void main(String[] args) {FetchBigTree.main7,83 - -packages/jpl/src/java/jpl/test/FetchLongList.java,197 -package jpl.test;jpl.test1,0 -public class FetchLongList {FetchLongList6,55 - public static void main(String[] args) {main7,84 - public static void main(String[] args) {FetchLongList.main7,84 - -packages/jpl/src/java/jpl/test/Ga.java,164 -package jpl.test;jpl.test1,0 -public class Ga {Ga5,38 - public static void main(String argv[]) {main6,56 - public static void main(String argv[]) {Ga.main6,56 - -packages/jpl/src/java/jpl/test/Ga2.java,167 -package jpl.test;jpl.test1,0 -public class Ga2 {Ga25,38 - public static void main(String argv[]) {main6,57 - public static void main(String argv[]) {Ga2.main6,57 - -packages/jpl/src/java/jpl/test/Garbo.java,525 -package jpl.test;jpl.test1,0 -public class Garbo {Garbo3,19 - public static int created = 0;created4,40 - public static int created = 0;Garbo.created4,40 - public static int destroyed = 0;destroyed5,72 - public static int destroyed = 0;Garbo.destroyed5,72 - public final int i;i7,110 - public final int i;Garbo.i7,110 - public Garbo( ) {Garbo8,131 - public Garbo( ) {Garbo.Garbo8,131 - protected void finalize() throws Throwable {finalize11,175 - protected void finalize() throws Throwable {Garbo.finalize11,175 - -packages/jpl/src/java/jpl/test/JPLTest.java,1605 -package jpl.test;jpl.test7,84 -public class JPLTest extends TestCase {JPLTest19,286 - private CountDownLatch latch;latch21,410 - private CountDownLatch latch;JPLTest.latch21,410 - public JPLTest(String testName) {JPLTest22,441 - public JPLTest(String testName) {JPLTest.JPLTest22,441 - protected void setUp() throws Exception {setUp25,498 - protected void setUp() throws Exception {JPLTest.setUp25,498 - public void testThreadedAdds() {testThreadedAdds44,1194 - public void testThreadedAdds() {JPLTest.testThreadedAdds44,1194 -class AddWithThreads extends Thread {AddWithThreads69,2147 - private final CountDownLatch latch;latch70,2185 - private final CountDownLatch latch;AddWithThreads.latch70,2185 - private final String namespace;namespace71,2222 - private final String namespace;AddWithThreads.namespace71,2222 - private static final Logger logger = Logger.getLogger(JPLTest.class.getName());logger72,2257 - private static final Logger logger = Logger.getLogger(JPLTest.class.getName());AddWithThreads.logger72,2257 - public static final int REPS = 2000; // was 200REPS73,2339 - public static final int REPS = 2000; // was 200AddWithThreads.REPS73,2339 - public AddWithThreads(final String namespace, final CountDownLatch latch) {AddWithThreads74,2390 - public AddWithThreads(final String namespace, final CountDownLatch latch) {AddWithThreads.AddWithThreads74,2390 - public String getNamespace() {getNamespace79,2590 - public String getNamespace() {AddWithThreads.getNamespace79,2590 - public void run() {run82,2645 - public void run() {AddWithThreads.run82,2645 - -packages/jpl/src/java/jpl/test/Masstest.java,371 -package jpl.test;jpl.test1,0 -public class Masstest extends Thread {Masstest6,61 - public static void main(String[] args) {main7,100 - public static void main(String[] args) {Masstest.main7,100 - public void predQuery() {predQuery29,895 - public void predQuery() {Masstest.predQuery29,895 - public void run() {run35,1223 - public void run() {Masstest.run35,1223 - -packages/jpl/src/java/jpl/test/MaxObjects.java,73 -package jpl.test;jpl.test1,0 -public class MaxObjects {MaxObjects3,19 - -packages/jpl/src/java/jpl/test/ShadowA.java,279 -package jpl.test;jpl.test7,158 -public class ShadowA {ShadowA10,178 - public int shadow = -1;shadow11,201 - public int shadow = -1;ShadowA.shadow11,201 - public static int fieldStaticInt;fieldStaticInt12,226 - public static int fieldStaticInt;ShadowA.fieldStaticInt12,226 - -packages/jpl/src/java/jpl/test/ShadowB.java,385 -package jpl.test;jpl.test7,158 -public class ShadowB extends ShadowA {ShadowB10,178 - public String shadow;shadow11,217 - public String shadow;ShadowB.shadow11,217 - public ShadowB(String s) {ShadowB12,240 - public ShadowB(String s) {ShadowB.ShadowB12,240 - public static int fieldStaticInt;fieldStaticInt15,285 - public static int fieldStaticInt;ShadowB.fieldStaticInt15,285 - -packages/jpl/src/java/jpl/test/SyntaxError.java,191 -package jpl.test;jpl.test1,0 -public class SyntaxError {SyntaxError5,38 - public static void main(String argv[]) {main6,65 - public static void main(String argv[]) {SyntaxError.main6,65 - -packages/jpl/src/java/jpl/test/Test.java,28626 -package jpl.test;jpl.test1,0 -public class Test {Test9,188 - public Test() {Test10,208 - public Test() {Test.Test10,208 - public Test(Term t) {Test12,228 - public Test(Term t) {Test.Test12,228 - public Term termFromConstructor;termFromConstructor15,286 - public Term termFromConstructor;Test.termFromConstructor15,286 - public static boolean fieldStaticBoolean;fieldStaticBoolean17,328 - public static boolean fieldStaticBoolean;Test.fieldStaticBoolean17,328 - public static final boolean fieldStaticBoolean1 = false;fieldStaticBoolean118,372 - public static final boolean fieldStaticBoolean1 = false;Test.fieldStaticBoolean118,372 - public static final boolean fieldStaticBoolean2 = true;fieldStaticBoolean219,430 - public static final boolean fieldStaticBoolean2 = true;Test.fieldStaticBoolean219,430 - public static char fieldStaticChar;fieldStaticChar21,491 - public static char fieldStaticChar;Test.fieldStaticChar21,491 - public static final char fieldStaticChar1 = '\u0000';fieldStaticChar122,530 - public static final char fieldStaticChar1 = '\u0000';Test.fieldStaticChar122,530 - public static final char fieldStaticChar2 = '\uFFFF';fieldStaticChar223,585 - public static final char fieldStaticChar2 = '\uFFFF';Test.fieldStaticChar223,585 - public static byte fieldStaticByte;fieldStaticByte25,644 - public static byte fieldStaticByte;Test.fieldStaticByte25,644 - public static final byte fieldStaticByte1 = -(1 << 7);fieldStaticByte126,683 - public static final byte fieldStaticByte1 = -(1 << 7);Test.fieldStaticByte126,683 - public static final byte fieldStaticByte2 = -1;fieldStaticByte227,739 - public static final byte fieldStaticByte2 = -1;Test.fieldStaticByte227,739 - public static final byte fieldStaticByte3 = 0;fieldStaticByte328,788 - public static final byte fieldStaticByte3 = 0;Test.fieldStaticByte328,788 - public static final byte fieldStaticByte4 = 1;fieldStaticByte429,836 - public static final byte fieldStaticByte4 = 1;Test.fieldStaticByte429,836 - public static final byte fieldStaticByte5 = (1 << 7) - 1;fieldStaticByte530,884 - public static final byte fieldStaticByte5 = (1 << 7) - 1;Test.fieldStaticByte530,884 - public static short fieldStaticShort;fieldStaticShort32,947 - public static short fieldStaticShort;Test.fieldStaticShort32,947 - public static final short fieldStaticShort1 = -(1 << 15);fieldStaticShort133,988 - public static final short fieldStaticShort1 = -(1 << 15);Test.fieldStaticShort133,988 - public static final short fieldStaticShort2 = -(1 << 7);fieldStaticShort234,1047 - public static final short fieldStaticShort2 = -(1 << 7);Test.fieldStaticShort234,1047 - public static final short fieldStaticShort3 = -1;fieldStaticShort335,1105 - public static final short fieldStaticShort3 = -1;Test.fieldStaticShort335,1105 - public static final short fieldStaticShort4 = 0;fieldStaticShort436,1156 - public static final short fieldStaticShort4 = 0;Test.fieldStaticShort436,1156 - public static final short fieldStaticShort5 = 1;fieldStaticShort537,1206 - public static final short fieldStaticShort5 = 1;Test.fieldStaticShort537,1206 - public static final short fieldStaticShort6 = (1 << 7) - 1;fieldStaticShort638,1256 - public static final short fieldStaticShort6 = (1 << 7) - 1;Test.fieldStaticShort638,1256 - public static final short fieldStaticShort7 = (1 << 15) - 1;fieldStaticShort739,1317 - public static final short fieldStaticShort7 = (1 << 15) - 1;Test.fieldStaticShort739,1317 - public static int fieldStaticInt;fieldStaticInt41,1383 - public static int fieldStaticInt;Test.fieldStaticInt41,1383 - public static final int fieldStaticInt1 = -(1 << 31);fieldStaticInt142,1420 - public static final int fieldStaticInt1 = -(1 << 31);Test.fieldStaticInt142,1420 - public static final int fieldStaticInt2 = -(1 << 15);fieldStaticInt243,1477 - public static final int fieldStaticInt2 = -(1 << 15);Test.fieldStaticInt243,1477 - public static final int fieldStaticInt3 = -(1 << 7);fieldStaticInt344,1534 - public static final int fieldStaticInt3 = -(1 << 7);Test.fieldStaticInt344,1534 - public static final int fieldStaticInt4 = -1;fieldStaticInt445,1590 - public static final int fieldStaticInt4 = -1;Test.fieldStaticInt445,1590 - public static final int fieldStaticInt5 = 0;fieldStaticInt546,1639 - public static final int fieldStaticInt5 = 0;Test.fieldStaticInt546,1639 - public static final int fieldStaticInt6 = 1;fieldStaticInt647,1687 - public static final int fieldStaticInt6 = 1;Test.fieldStaticInt647,1687 - public static final int fieldStaticInt7 = (1 << 7) - 1;fieldStaticInt748,1735 - public static final int fieldStaticInt7 = (1 << 7) - 1;Test.fieldStaticInt748,1735 - public static final int fieldStaticInt8 = (1 << 15) - 1;fieldStaticInt849,1794 - public static final int fieldStaticInt8 = (1 << 15) - 1;Test.fieldStaticInt849,1794 - public static final int fieldStaticInt9 = (1 << 31) - 1;fieldStaticInt950,1854 - public static final int fieldStaticInt9 = (1 << 31) - 1;Test.fieldStaticInt950,1854 - public static long fieldStaticLong;fieldStaticLong52,1918 - public static long fieldStaticLong;Test.fieldStaticLong52,1918 - public static final long fieldStaticLong1 = -(1 << 63);fieldStaticLong153,1957 - public static final long fieldStaticLong1 = -(1 << 63);Test.fieldStaticLong153,1957 - public static final long fieldStaticLong2 = -(1 << 31);fieldStaticLong254,2014 - public static final long fieldStaticLong2 = -(1 << 31);Test.fieldStaticLong254,2014 - public static final long fieldStaticLong3 = -(1 << 15);fieldStaticLong355,2071 - public static final long fieldStaticLong3 = -(1 << 15);Test.fieldStaticLong355,2071 - public static final long fieldStaticLong4 = -(1 << 7);fieldStaticLong456,2128 - public static final long fieldStaticLong4 = -(1 << 7);Test.fieldStaticLong456,2128 - public static final long fieldStaticLong5 = -1;fieldStaticLong557,2184 - public static final long fieldStaticLong5 = -1;Test.fieldStaticLong557,2184 - public static final long fieldStaticLong6 = 0;fieldStaticLong658,2233 - public static final long fieldStaticLong6 = 0;Test.fieldStaticLong658,2233 - public static final long fieldStaticLong7 = 1;fieldStaticLong759,2281 - public static final long fieldStaticLong7 = 1;Test.fieldStaticLong759,2281 - public static final long fieldStaticLong8 = (1 << 7) - 1;fieldStaticLong860,2329 - public static final long fieldStaticLong8 = (1 << 7) - 1;Test.fieldStaticLong860,2329 - public static final long fieldStaticLong9 = (1 << 15) - 1;fieldStaticLong961,2388 - public static final long fieldStaticLong9 = (1 << 15) - 1;Test.fieldStaticLong961,2388 - public static final long fieldStaticLong10 = (1 << 31) - 1;fieldStaticLong1062,2448 - public static final long fieldStaticLong10 = (1 << 31) - 1;Test.fieldStaticLong1062,2448 - public static final long fieldStaticLong11 = (1 << 63) - 1;fieldStaticLong1163,2509 - public static final long fieldStaticLong11 = (1 << 63) - 1;Test.fieldStaticLong1163,2509 - public static float fieldStaticFloat;fieldStaticFloat65,2574 - public static float fieldStaticFloat;Test.fieldStaticFloat65,2574 - public static final float fieldStaticFloat1 = 12345.6789F;fieldStaticFloat166,2615 - public static final float fieldStaticFloat1 = 12345.6789F;Test.fieldStaticFloat166,2615 - public static final float fieldStaticFloat2 = 3.4e+38F; // nearly MAX_VALUEfieldStaticFloat267,2675 - public static final float fieldStaticFloat2 = 3.4e+38F; // nearly MAX_VALUETest.fieldStaticFloat267,2675 - public static final float fieldStaticFloat3 = 1.4e-45F; // nearly MIN_VALUEfieldStaticFloat368,2758 - public static final float fieldStaticFloat3 = 1.4e-45F; // nearly MIN_VALUETest.fieldStaticFloat368,2758 - public static final float fieldStaticFloat4 = 0.0F;fieldStaticFloat469,2841 - public static final float fieldStaticFloat4 = 0.0F;Test.fieldStaticFloat469,2841 - public static final float fieldStaticFloat5 = java.lang.Float.MIN_VALUE;fieldStaticFloat570,2894 - public static final float fieldStaticFloat5 = java.lang.Float.MIN_VALUE;Test.fieldStaticFloat570,2894 - public static final float fieldStaticFloat6 = java.lang.Float.MAX_VALUE;fieldStaticFloat671,2968 - public static final float fieldStaticFloat6 = java.lang.Float.MAX_VALUE;Test.fieldStaticFloat671,2968 - public static final float fieldStaticFloat7 = java.lang.Float.NEGATIVE_INFINITY;fieldStaticFloat772,3042 - public static final float fieldStaticFloat7 = java.lang.Float.NEGATIVE_INFINITY;Test.fieldStaticFloat772,3042 - public static final float fieldStaticFloat8 = java.lang.Float.POSITIVE_INFINITY;fieldStaticFloat873,3124 - public static final float fieldStaticFloat8 = java.lang.Float.POSITIVE_INFINITY;Test.fieldStaticFloat873,3124 - public static final float fieldStaticFloat9 = java.lang.Float.NaN;fieldStaticFloat974,3206 - public static final float fieldStaticFloat9 = java.lang.Float.NaN;Test.fieldStaticFloat974,3206 - public static double fieldStaticDouble;fieldStaticDouble76,3278 - public static double fieldStaticDouble;Test.fieldStaticDouble76,3278 - public static final double fieldStaticDouble1 = 12345.6789D;fieldStaticDouble177,3320 - public static final double fieldStaticDouble1 = 12345.6789D;Test.fieldStaticDouble177,3320 - public static final double fieldStaticDouble2 = 2.3456789e+100D;fieldStaticDouble278,3382 - public static final double fieldStaticDouble2 = 2.3456789e+100D;Test.fieldStaticDouble278,3382 - public static final double fieldStaticDouble3 = 3.456789e-100D;fieldStaticDouble379,3448 - public static final double fieldStaticDouble3 = 3.456789e-100D;Test.fieldStaticDouble379,3448 - public static final double fieldStaticDouble4 = 0.0D;fieldStaticDouble480,3513 - public static final double fieldStaticDouble4 = 0.0D;Test.fieldStaticDouble480,3513 - public static final double fieldStaticDouble5 = Double.MIN_VALUE;fieldStaticDouble581,3568 - public static final double fieldStaticDouble5 = Double.MIN_VALUE;Test.fieldStaticDouble581,3568 - public static final double fieldStaticDouble6 = Double.MAX_VALUE;fieldStaticDouble682,3635 - public static final double fieldStaticDouble6 = Double.MAX_VALUE;Test.fieldStaticDouble682,3635 - public static final double fieldStaticDouble7 = Double.NEGATIVE_INFINITY;fieldStaticDouble783,3702 - public static final double fieldStaticDouble7 = Double.NEGATIVE_INFINITY;Test.fieldStaticDouble783,3702 - public static final double fieldStaticDouble8 = Double.POSITIVE_INFINITY;fieldStaticDouble884,3777 - public static final double fieldStaticDouble8 = Double.POSITIVE_INFINITY;Test.fieldStaticDouble884,3777 - public static final double fieldStaticDouble9 = Double.NaN;fieldStaticDouble985,3852 - public static final double fieldStaticDouble9 = Double.NaN;Test.fieldStaticDouble985,3852 - public static Object[] fieldStaticObjectArray; // can assign e.g. String[]fieldStaticObjectArray87,3917 - public static Object[] fieldStaticObjectArray; // can assign e.g. String[]Test.fieldStaticObjectArray87,3917 - public static long[] fieldStaticLongArray; // cannot assign e.g. int[]fieldStaticLongArray88,3994 - public static long[] fieldStaticLongArray; // cannot assign e.g. int[]Test.fieldStaticLongArray88,3994 - public static long fac(long n) { // complements jpl:jpl_test_fac(+integer,-integer)fac90,4071 - public static long fac(long n) { // complements jpl:jpl_test_fac(+integer,-integer)Test.fac90,4071 - static void packageMethod() { // not callable via JPLpackageMethod100,4522 - static void packageMethod() { // not callable via JPLTest.packageMethod100,4522 - public static void publicMethod() {publicMethod103,4590 - public static void publicMethod() {Test.publicMethod103,4590 - protected static void protectedMethod() { // not callable via JPLprotectedMethod106,4640 - protected static void protectedMethod() { // not callable via JPLTest.protectedMethod106,4640 - private static void privateMethod() { // not callable via JPLprivateMethod109,4720 - private static void privateMethod() { // not callable via JPLTest.privateMethod109,4720 - public boolean fieldInstanceBoolean;fieldInstanceBoolean112,4796 - public boolean fieldInstanceBoolean;Test.fieldInstanceBoolean112,4796 - public final boolean fieldInstanceBoolean1 = false;fieldInstanceBoolean1113,4837 - public final boolean fieldInstanceBoolean1 = false;Test.fieldInstanceBoolean1113,4837 - public final boolean fieldInstanceBoolean2 = true;fieldInstanceBoolean2114,4891 - public final boolean fieldInstanceBoolean2 = true;Test.fieldInstanceBoolean2114,4891 - public byte fieldInstanceByte;fieldInstanceByte115,4944 - public byte fieldInstanceByte;Test.fieldInstanceByte115,4944 - public final byte fieldInstanceByte1 = -(1 << 7);fieldInstanceByte1116,4980 - public final byte fieldInstanceByte1 = -(1 << 7);Test.fieldInstanceByte1116,4980 - public final byte fieldInstanceByte2 = -1;fieldInstanceByte2117,5034 - public final byte fieldInstanceByte2 = -1;Test.fieldInstanceByte2117,5034 - public final byte fieldInstanceByte3 = 0;fieldInstanceByte3118,5081 - public final byte fieldInstanceByte3 = 0;Test.fieldInstanceByte3118,5081 - public final byte fieldInstanceByte4 = 1;fieldInstanceByte4119,5127 - public final byte fieldInstanceByte4 = 1;Test.fieldInstanceByte4119,5127 - public final byte fieldInstanceByte5 = (1 << 7) - 1;fieldInstanceByte5120,5173 - public final byte fieldInstanceByte5 = (1 << 7) - 1;Test.fieldInstanceByte5120,5173 - public char fieldInstanceChar;fieldInstanceChar121,5230 - public char fieldInstanceChar;Test.fieldInstanceChar121,5230 - public final char fieldInstanceChar1 = '\u0000';fieldInstanceChar1122,5266 - public final char fieldInstanceChar1 = '\u0000';Test.fieldInstanceChar1122,5266 - public final char fieldInstanceChar2 = '\uFFFF';fieldInstanceChar2123,5319 - public final char fieldInstanceChar2 = '\uFFFF';Test.fieldInstanceChar2123,5319 - public double fieldInstanceDouble;fieldInstanceDouble124,5372 - public double fieldInstanceDouble;Test.fieldInstanceDouble124,5372 - public final double fieldInstanceDouble1 = 12345.6789D;fieldInstanceDouble1125,5411 - public final double fieldInstanceDouble1 = 12345.6789D;Test.fieldInstanceDouble1125,5411 - public final double fieldInstanceDouble2 = 2.3456789e+100D;fieldInstanceDouble2126,5470 - public final double fieldInstanceDouble2 = 2.3456789e+100D;Test.fieldInstanceDouble2126,5470 - public final double fieldInstanceDouble3 = 3.456789e-100D;fieldInstanceDouble3127,5533 - public final double fieldInstanceDouble3 = 3.456789e-100D;Test.fieldInstanceDouble3127,5533 - public final double fieldInstanceDouble4 = 0.0D;fieldInstanceDouble4128,5595 - public final double fieldInstanceDouble4 = 0.0D;Test.fieldInstanceDouble4128,5595 - public final double fieldInstanceDouble5 = Double.MIN_VALUE;fieldInstanceDouble5129,5647 - public final double fieldInstanceDouble5 = Double.MIN_VALUE;Test.fieldInstanceDouble5129,5647 - public final double fieldInstanceDouble6 = Double.MAX_VALUE;fieldInstanceDouble6130,5711 - public final double fieldInstanceDouble6 = Double.MAX_VALUE;Test.fieldInstanceDouble6130,5711 - public final double fieldInstanceDouble7 = Double.NEGATIVE_INFINITY;fieldInstanceDouble7131,5775 - public final double fieldInstanceDouble7 = Double.NEGATIVE_INFINITY;Test.fieldInstanceDouble7131,5775 - public final double fieldInstanceDouble8 = Double.POSITIVE_INFINITY;fieldInstanceDouble8132,5847 - public final double fieldInstanceDouble8 = Double.POSITIVE_INFINITY;Test.fieldInstanceDouble8132,5847 - public final double fieldInstanceDouble9 = Double.NaN;fieldInstanceDouble9133,5919 - public final double fieldInstanceDouble9 = Double.NaN;Test.fieldInstanceDouble9133,5919 - public float fieldInstanceFloat;fieldInstanceFloat134,5977 - public float fieldInstanceFloat;Test.fieldInstanceFloat134,5977 - public final float fieldInstanceFloat1 = 12345.6789F;fieldInstanceFloat1135,6014 - public final float fieldInstanceFloat1 = 12345.6789F;Test.fieldInstanceFloat1135,6014 - public final float fieldInstanceFloat2 = 3.4e+38F;fieldInstanceFloat2136,6072 - public final float fieldInstanceFloat2 = 3.4e+38F;Test.fieldInstanceFloat2136,6072 - public final float fieldInstanceFloat3 = 1.4e-45F;fieldInstanceFloat3137,6127 - public final float fieldInstanceFloat3 = 1.4e-45F;Test.fieldInstanceFloat3137,6127 - public final float fieldInstanceFloat4 = 0.0F;fieldInstanceFloat4138,6182 - public final float fieldInstanceFloat4 = 0.0F;Test.fieldInstanceFloat4138,6182 - public final float fieldInstanceFloat5 = java.lang.Float.MIN_VALUE;fieldInstanceFloat5139,6233 - public final float fieldInstanceFloat5 = java.lang.Float.MIN_VALUE;Test.fieldInstanceFloat5139,6233 - public final float fieldInstanceFloat6 = java.lang.Float.MAX_VALUE;fieldInstanceFloat6140,6305 - public final float fieldInstanceFloat6 = java.lang.Float.MAX_VALUE;Test.fieldInstanceFloat6140,6305 - public final float fieldInstanceFloat7 = java.lang.Float.NEGATIVE_INFINITY;fieldInstanceFloat7141,6377 - public final float fieldInstanceFloat7 = java.lang.Float.NEGATIVE_INFINITY;Test.fieldInstanceFloat7141,6377 - public final float fieldInstanceFloat8 = java.lang.Float.POSITIVE_INFINITY;fieldInstanceFloat8142,6457 - public final float fieldInstanceFloat8 = java.lang.Float.POSITIVE_INFINITY;Test.fieldInstanceFloat8142,6457 - public final float fieldInstanceFloat9 = java.lang.Float.NaN;fieldInstanceFloat9143,6537 - public final float fieldInstanceFloat9 = java.lang.Float.NaN;Test.fieldInstanceFloat9143,6537 - public int fieldInstanceInt;fieldInstanceInt144,6603 - public int fieldInstanceInt;Test.fieldInstanceInt144,6603 - public final int fieldInstanceInt1 = -(1 << 31);fieldInstanceInt1145,6637 - public final int fieldInstanceInt1 = -(1 << 31);Test.fieldInstanceInt1145,6637 - public final int fieldInstanceInt2 = -(1 << 15);fieldInstanceInt2146,6690 - public final int fieldInstanceInt2 = -(1 << 15);Test.fieldInstanceInt2146,6690 - public final int fieldInstanceInt3 = -(1 << 7);fieldInstanceInt3147,6743 - public final int fieldInstanceInt3 = -(1 << 7);Test.fieldInstanceInt3147,6743 - public final int fieldInstanceInt4 = -1;fieldInstanceInt4148,6795 - public final int fieldInstanceInt4 = -1;Test.fieldInstanceInt4148,6795 - public final int fieldInstanceInt5 = 0;fieldInstanceInt5149,6840 - public final int fieldInstanceInt5 = 0;Test.fieldInstanceInt5149,6840 - public final int fieldInstanceInt6 = 1;fieldInstanceInt6150,6884 - public final int fieldInstanceInt6 = 1;Test.fieldInstanceInt6150,6884 - public final int fieldInstanceInt7 = (1 << 7) - 1;fieldInstanceInt7151,6928 - public final int fieldInstanceInt7 = (1 << 7) - 1;Test.fieldInstanceInt7151,6928 - public final int fieldInstanceInt8 = (1 << 15) - 1;fieldInstanceInt8152,6983 - public final int fieldInstanceInt8 = (1 << 15) - 1;Test.fieldInstanceInt8152,6983 - public final int fieldInstanceInt9 = (1 << 31) - 1;fieldInstanceInt9153,7039 - public final int fieldInstanceInt9 = (1 << 31) - 1;Test.fieldInstanceInt9153,7039 - public long fieldInstanceLong;fieldInstanceLong154,7095 - public long fieldInstanceLong;Test.fieldInstanceLong154,7095 - public final long fieldInstanceLong1 = -(1 << 63);fieldInstanceLong1155,7131 - public final long fieldInstanceLong1 = -(1 << 63);Test.fieldInstanceLong1155,7131 - public final long fieldInstanceLong10 = (1 << 31) - 1;fieldInstanceLong10156,7186 - public final long fieldInstanceLong10 = (1 << 31) - 1;Test.fieldInstanceLong10156,7186 - public final long fieldInstanceLong11 = (1 << 63) - 1;fieldInstanceLong11157,7245 - public final long fieldInstanceLong11 = (1 << 63) - 1;Test.fieldInstanceLong11157,7245 - public final long fieldInstanceLong2 = -(1 << 31);fieldInstanceLong2158,7304 - public final long fieldInstanceLong2 = -(1 << 31);Test.fieldInstanceLong2158,7304 - public final long fieldInstanceLong3 = -(1 << 15);fieldInstanceLong3159,7359 - public final long fieldInstanceLong3 = -(1 << 15);Test.fieldInstanceLong3159,7359 - public final long fieldInstanceLong4 = -(1 << 7);fieldInstanceLong4160,7414 - public final long fieldInstanceLong4 = -(1 << 7);Test.fieldInstanceLong4160,7414 - public final long fieldInstanceLong5 = -1;fieldInstanceLong5161,7468 - public final long fieldInstanceLong5 = -1;Test.fieldInstanceLong5161,7468 - public final long fieldInstanceLong6 = 0;fieldInstanceLong6162,7515 - public final long fieldInstanceLong6 = 0;Test.fieldInstanceLong6162,7515 - public final long fieldInstanceLong7 = 1;fieldInstanceLong7163,7561 - public final long fieldInstanceLong7 = 1;Test.fieldInstanceLong7163,7561 - public final long fieldInstanceLong8 = (1 << 7) - 1;fieldInstanceLong8164,7607 - public final long fieldInstanceLong8 = (1 << 7) - 1;Test.fieldInstanceLong8164,7607 - public final long fieldInstanceLong9 = (1 << 15) - 1;fieldInstanceLong9165,7664 - public final long fieldInstanceLong9 = (1 << 15) - 1;Test.fieldInstanceLong9165,7664 - public short fieldInstanceShort;fieldInstanceShort166,7722 - public short fieldInstanceShort;Test.fieldInstanceShort166,7722 - public final short fieldInstanceShort1 = -(1 << 15);fieldInstanceShort1167,7759 - public final short fieldInstanceShort1 = -(1 << 15);Test.fieldInstanceShort1167,7759 - public final short fieldInstanceShort2 = -(1 << 7);fieldInstanceShort2168,7816 - public final short fieldInstanceShort2 = -(1 << 7);Test.fieldInstanceShort2168,7816 - public final short fieldInstanceShort3 = -1;fieldInstanceShort3169,7872 - public final short fieldInstanceShort3 = -1;Test.fieldInstanceShort3169,7872 - public final short fieldInstanceShort4 = 0;fieldInstanceShort4170,7921 - public final short fieldInstanceShort4 = 0;Test.fieldInstanceShort4170,7921 - public final short fieldInstanceShort5 = 1;fieldInstanceShort5171,7969 - public final short fieldInstanceShort5 = 1;Test.fieldInstanceShort5171,7969 - public final short fieldInstanceShort6 = (1 << 7) - 1;fieldInstanceShort6172,8017 - public final short fieldInstanceShort6 = (1 << 7) - 1;Test.fieldInstanceShort6172,8017 - public final short fieldInstanceShort7 = (1 << 15) - 1;fieldInstanceShort7173,8076 - public final short fieldInstanceShort7 = (1 << 15) - 1;Test.fieldInstanceShort7173,8076 - public Term term; // obsoleteterm175,8140 - public Term term; // obsoleteTest.term175,8140 - public static Term staticTerm;staticTerm176,8189 - public static Term staticTerm;Test.staticTerm176,8189 - public Term instanceTerm;instanceTerm177,8223 - public Term instanceTerm;Test.instanceTerm177,8223 - static boolean fieldPackageStaticBoolean;fieldPackageStaticBoolean180,8310 - static boolean fieldPackageStaticBoolean;Test.fieldPackageStaticBoolean180,8310 - protected static boolean fieldProtectedStaticBoolean;fieldProtectedStaticBoolean181,8356 - protected static boolean fieldProtectedStaticBoolean;Test.fieldProtectedStaticBoolean181,8356 - private static boolean fieldPrivateStaticBoolean;fieldPrivateStaticBoolean182,8411 - private static boolean fieldPrivateStaticBoolean;Test.fieldPrivateStaticBoolean182,8411 - public static final int fieldStaticFinalInt = 7;fieldStaticFinalInt185,8506 - public static final int fieldStaticFinalInt = 7;Test.fieldStaticFinalInt185,8506 - public static Term fieldStaticTerm;fieldStaticTerm188,8616 - public static Term fieldStaticTerm;Test.fieldStaticTerm188,8616 - public Term fieldInstanceTerm;fieldInstanceTerm189,8655 - public Term fieldInstanceTerm;Test.fieldInstanceTerm189,8655 - public static boolean methodStaticTerm(Term t) {methodStaticTerm190,8691 - public static boolean methodStaticTerm(Term t) {Test.methodStaticTerm190,8691 - public boolean methodInstanceTerm(Term t) {methodInstanceTerm193,8764 - public boolean methodInstanceTerm(Term t) {Test.methodInstanceTerm193,8764 - public static Term methodStaticEchoTerm(Term t) {methodStaticEchoTerm196,8832 - public static Term methodStaticEchoTerm(Term t) {Test.methodStaticEchoTerm196,8832 - public static boolean methodStaticEchoBoolean(boolean v) {methodStaticEchoBoolean199,8898 - public static boolean methodStaticEchoBoolean(boolean v) {Test.methodStaticEchoBoolean199,8898 - public static char methodStaticEchoChar(char v) {methodStaticEchoChar202,8973 - public static char methodStaticEchoChar(char v) {Test.methodStaticEchoChar202,8973 - public static byte methodStaticEchoByte(byte v) {methodStaticEchoByte205,9039 - public static byte methodStaticEchoByte(byte v) {Test.methodStaticEchoByte205,9039 - public static short methodStaticEchoShort(short v) {methodStaticEchoShort208,9105 - public static short methodStaticEchoShort(short v) {Test.methodStaticEchoShort208,9105 - public static int methodStaticEchoInt(int v) {methodStaticEchoInt211,9174 - public static int methodStaticEchoInt(int v) {Test.methodStaticEchoInt211,9174 - public static long methodStaticEchoLong(long v) {methodStaticEchoLong214,9237 - public static long methodStaticEchoLong(long v) {Test.methodStaticEchoLong214,9237 - public static float methodStaticEchoFloat(float v) {methodStaticEchoFloat217,9303 - public static float methodStaticEchoFloat(float v) {Test.methodStaticEchoFloat217,9303 - public static double methodStaticEchoDouble(double v) {methodStaticEchoDouble220,9372 - public static double methodStaticEchoDouble(double v) {Test.methodStaticEchoDouble220,9372 - public Term methodInstanceTermEcho(Term t) {methodInstanceTermEcho223,9444 - public Term methodInstanceTermEcho(Term t) {Test.methodInstanceTermEcho223,9444 - public static boolean methodStaticTermIsJNull(Term t) {methodStaticTermIsJNull226,9505 - public static boolean methodStaticTermIsJNull(Term t) {Test.methodStaticTermIsJNull226,9505 - public boolean methodInstanceTermIsJNull(Term t) {methodInstanceTermIsJNull229,9630 - public boolean methodInstanceTermIsJNull(Term t) {Test.methodInstanceTermIsJNull229,9630 - public static void hello() {hello232,9750 - public static void hello() {Test.hello232,9750 - public static boolean[] newArrayBooleanFromValue(boolean v) {newArrayBooleanFromValue235,9814 - public static boolean[] newArrayBooleanFromValue(boolean v) {Test.newArrayBooleanFromValue235,9814 - public static byte[] newArrayByteFromValue(byte v) {newArrayByteFromValue240,9936 - public static byte[] newArrayByteFromValue(byte v) {Test.newArrayByteFromValue240,9936 - public static char[] newArrayCharFromValue(char v) {newArrayCharFromValue245,10043 - public static char[] newArrayCharFromValue(char v) {Test.newArrayCharFromValue245,10043 - public static short[] newArrayShortFromValue(short v) {newArrayShortFromValue250,10150 - public static short[] newArrayShortFromValue(short v) {Test.newArrayShortFromValue250,10150 - public static int[] newArrayIntFromValue(int v) {newArrayIntFromValue255,10262 - public static int[] newArrayIntFromValue(int v) {Test.newArrayIntFromValue255,10262 - public static long[] newArrayLongFromValue(long v) {newArrayLongFromValue260,10364 - public static long[] newArrayLongFromValue(long v) {Test.newArrayLongFromValue260,10364 - public static float[] newArrayFloatFromValue(float v) {newArrayFloatFromValue265,10471 - public static float[] newArrayFloatFromValue(float v) {Test.newArrayFloatFromValue265,10471 - public static double[] newArrayDoubleFromValue(double v) {newArrayDoubleFromValue270,10583 - public static double[] newArrayDoubleFromValue(double v) {Test.newArrayDoubleFromValue270,10583 - public static String methodStaticArray(long[] a) {methodStaticArray275,10700 - public static String methodStaticArray(long[] a) {Test.methodStaticArray275,10700 - public static String methodStaticArray(int[] a) {methodStaticArray278,10774 - public static String methodStaticArray(int[] a) {Test.methodStaticArray278,10774 - public static String methodStaticArray(short[] a) {methodStaticArray281,10846 - public static String methodStaticArray(short[] a) {Test.methodStaticArray281,10846 - public static Term wrapTerm(Term in) { // for dmiles 11/Jul/2008wrapTerm284,10922 - public static Term wrapTerm(Term in) { // for dmiles 11/Jul/2008Test.wrapTerm284,10922 - -packages/jpl/src/java/jpl/test/test.pl,54 -p( N, T) :-p1,0 -p( N, T) :-p1,0 -p( N, T) :-p1,0 - -packages/jpl/src/java/jpl/test/TestJUnit.java,15225 -package jpl.test;jpl.test2,26 -public class TestJUnit extends TestCase {TestJUnit21,496 - public static long fac(long n) { // complements jpl:jpl_test_fac(+integer,-integer)fac22,538 - public static long fac(long n) { // complements jpl:jpl_test_fac(+integer,-integer)TestJUnit.fac22,538 - public TestJUnit(String name) {TestJUnit31,835 - public TestJUnit(String name) {TestJUnit.TestJUnit31,835 - public static junit.framework.Test suite() {suite34,886 - public static junit.framework.Test suite() {TestJUnit.suite34,886 - public static void main(String args[]) {main37,976 - public static void main(String args[]) {TestJUnit.main37,976 - protected void setUp() {setUp40,1061 - protected void setUp() {TestJUnit.setUp40,1061 - protected void tearDown() {tearDown50,1494 - protected void tearDown() {TestJUnit.tearDown50,1494 - public void testMasstest() {testMasstest54,1548 - public void testMasstest() {TestJUnit.testMasstest54,1548 - public void testSameLibVersions1() {testSameLibVersions157,1680 - public void testSameLibVersions1() {TestJUnit.testSameLibVersions157,1680 - public void testSameLibVersions2() {testSameLibVersions262,1980 - public void testSameLibVersions2() {TestJUnit.testSameLibVersions262,1980 - public void testAtomName1() {testAtomName167,2370 - public void testAtomName1() {TestJUnit.testAtomName167,2370 - public void testAtomName2() {testAtomName272,2539 - public void testAtomName2() {TestJUnit.testAtomName272,2539 - public void testAtomName3() {testAtomName377,2709 - public void testAtomName3() {TestJUnit.testAtomName377,2709 - public void testAtomToString1() {testAtomToString182,2875 - public void testAtomToString1() {TestJUnit.testAtomToString182,2875 - public void testAtomToString2() {testAtomToString288,3089 - public void testAtomToString2() {TestJUnit.testAtomToString288,3089 - public void testAtomToString3() {testAtomToString394,3307 - public void testAtomToString3() {TestJUnit.testAtomToString394,3307 - public void testAtomArity() {testAtomArity100,3517 - public void testAtomArity() {TestJUnit.testAtomArity100,3517 - public void testAtomEquality1() {testAtomEquality1104,3637 - public void testAtomEquality1() {TestJUnit.testAtomEquality1104,3637 - public void testAtomIdentity() { // how could this fail?!testAtomIdentity110,3829 - public void testAtomIdentity() { // how could this fail?!TestJUnit.testAtomIdentity110,3829 - public void testAtomHasFunctorNameZero() {testAtomHasFunctorNameZero116,4054 - public void testAtomHasFunctorNameZero() {TestJUnit.testAtomHasFunctorNameZero116,4054 - public void testAtomHasFunctorWrongName() {testAtomHasFunctorWrongName121,4188 - public void testAtomHasFunctorWrongName() {TestJUnit.testAtomHasFunctorWrongName121,4188 - public void testAtomHasFunctorWrongArity() {testAtomHasFunctorWrongArity124,4388 - public void testAtomHasFunctorWrongArity() {TestJUnit.testAtomHasFunctorWrongArity124,4388 - public void testVariableBinding1() {testVariableBinding1128,4577 - public void testVariableBinding1() {TestJUnit.testVariableBinding1128,4577 - public void testVariableBinding2() {testVariableBinding2135,5065 - public void testVariableBinding2() {TestJUnit.testVariableBinding2135,5065 - public void testVariableBinding3() {testVariableBinding3141,5446 - public void testVariableBinding3() {TestJUnit.testVariableBinding3141,5446 - public void testVariableBinding4() {testVariableBinding4148,5830 - public void testVariableBinding4() {TestJUnit.testVariableBinding4148,5830 - public void testVariableBinding5() {testVariableBinding5154,6202 - public void testVariableBinding5() {TestJUnit.testVariableBinding5154,6202 - public void testAtomEquality2() {testAtomEquality2161,6595 - public void testAtomEquality2() {TestJUnit.testAtomEquality2161,6595 - public void testAtomEquality3() {testAtomEquality3165,6741 - public void testAtomEquality3() {TestJUnit.testAtomEquality3165,6741 - public void testTextToTerm1() {testTextToTerm1168,6893 - public void testTextToTerm1() {TestJUnit.testTextToTerm1168,6893 - public void testArrayToList1() {testArrayToList1174,7282 - public void testArrayToList1() {TestJUnit.testArrayToList1174,7282 - public void testArrayToList2() {testArrayToList2179,7640 - public void testArrayToList2() {TestJUnit.testArrayToList2179,7640 - public void testLength1() {testLength1183,7801 - public void testLength1() {TestJUnit.testLength1183,7801 - public void testGenerate1() { // we chickened out of verifying each solution :-)testGenerate1189,8288 - public void testGenerate1() { // we chickened out of verifying each solution :-)TestJUnit.testGenerate1189,8288 - public void testPrologException1() {testPrologException1193,8497 - public void testPrologException1() {TestJUnit.testPrologException1193,8497 - public void testAtom1() {testAtom1202,8839 - public void testAtom1() {TestJUnit.testAtom1202,8839 - public void testTextToTerm2() {testTextToTerm2205,8941 - public void testTextToTerm2() {TestJUnit.testTextToTerm2205,8941 - public void testDontTellMeMode1() {testDontTellMeMode1214,9450 - public void testDontTellMeMode1() {TestJUnit.testDontTellMeMode1214,9450 - public void testDontTellMeMode2() {testDontTellMeMode2219,9755 - public void testDontTellMeMode2() {TestJUnit.testDontTellMeMode2219,9755 - public void testModulePrefix1() {testModulePrefix1224,10063 - public void testModulePrefix1() {TestJUnit.testModulePrefix1224,10063 - private void testMutualRecursion(int n, long f) { // f is the expected result for fac(n)testMutualRecursion227,10153 - private void testMutualRecursion(int n, long f) { // f is the expected result for fac(n)TestJUnit.testMutualRecursion227,10153 - public void testMutualRecursion1() {testMutualRecursion1234,10417 - public void testMutualRecursion1() {TestJUnit.testMutualRecursion1234,10417 - public void testMutualRecursion2() {testMutualRecursion2237,10487 - public void testMutualRecursion2() {TestJUnit.testMutualRecursion2237,10487 - public void testMutualRecursion3() {testMutualRecursion3240,10557 - public void testMutualRecursion3() {TestJUnit.testMutualRecursion3240,10557 - public void testMutualRecursion10() {testMutualRecursion10243,10627 - public void testMutualRecursion10() {TestJUnit.testMutualRecursion10243,10627 - public void testIsJNull1() {testIsJNull1246,10705 - public void testIsJNull1() {TestJUnit.testIsJNull1246,10705 - public void testIsJNull2() {testIsJNull2250,10866 - public void testIsJNull2() {TestJUnit.testIsJNull2250,10866 - public void testIsJNull3() {testIsJNull3254,11019 - public void testIsJNull3() {TestJUnit.testIsJNull3254,11019 - public void testIsJNull4() {testIsJNull4258,11166 - public void testIsJNull4() {TestJUnit.testIsJNull4258,11166 - public void testIsJNull5() {testIsJNull5262,11325 - public void testIsJNull5() {TestJUnit.testIsJNull5262,11325 - public void testIsJTrue1() {testIsJTrue1266,11486 - public void testIsJTrue1() {TestJUnit.testIsJTrue1266,11486 - public void testIsJTrue2() {testIsJTrue2270,11647 - public void testIsJTrue2() {TestJUnit.testIsJTrue2270,11647 - public void testIsJTrue3() {testIsJTrue3274,11800 - public void testIsJTrue3() {TestJUnit.testIsJTrue3274,11800 - public void testIsJTrue4() {testIsJTrue4278,11947 - public void testIsJTrue4() {TestJUnit.testIsJTrue4278,11947 - public void testIsJVoid1() {testIsJVoid1282,12108 - public void testIsJVoid1() {TestJUnit.testIsJVoid1282,12108 - public void testIsJVoid2() {testIsJVoid2286,12269 - public void testIsJVoid2() {TestJUnit.testIsJVoid2286,12269 - public void testIsJVoid3() {testIsJVoid3290,12422 - public void testIsJVoid3() {TestJUnit.testIsJVoid3290,12422 - public void testTypeName1() {testTypeName1294,12569 - public void testTypeName1() {TestJUnit.testTypeName1294,12569 - public void testTypeName2() {testTypeName2297,12716 - public void testTypeName2() {TestJUnit.testTypeName2297,12716 - public void testTypeName4() {testTypeName4300,12872 - public void testTypeName4() {TestJUnit.testTypeName4300,12872 - public void testTypeName5() {testTypeName5303,13021 - public void testTypeName5() {TestJUnit.testTypeName5303,13021 - public void testTypeName3() {testTypeName3306,13171 - public void testTypeName3() {TestJUnit.testTypeName3306,13171 - public void testGoalWithModulePrefix1() {testGoalWithModulePrefix1309,13327 - public void testGoalWithModulePrefix1() {TestJUnit.testGoalWithModulePrefix1309,13327 - public void testGoalWithModulePrefix2() {testGoalWithModulePrefix2313,13527 - public void testGoalWithModulePrefix2() {TestJUnit.testGoalWithModulePrefix2313,13527 - public void testGoalWithModulePrefix3() {testGoalWithModulePrefix3317,13669 - public void testGoalWithModulePrefix3() {TestJUnit.testGoalWithModulePrefix3317,13669 - public void testGoalWithModulePrefix4() {testGoalWithModulePrefix4333,14399 - public void testGoalWithModulePrefix4() {TestJUnit.testGoalWithModulePrefix4333,14399 - public void testGoalWithModulePrefix5() {testGoalWithModulePrefix5349,15049 - public void testGoalWithModulePrefix5() {TestJUnit.testGoalWithModulePrefix5349,15049 - public void testGoalWithModulePrefix6() {testGoalWithModulePrefix6365,15748 - public void testGoalWithModulePrefix6() {TestJUnit.testGoalWithModulePrefix6365,15748 - public void testFetchLongList0() {testFetchLongList0384,16577 - public void testFetchLongList0() {TestJUnit.testFetchLongList0384,16577 - public void testFetchLongList1() {testFetchLongList1387,16694 - public void testFetchLongList1() {TestJUnit.testFetchLongList1387,16694 - public void testFetchLongList2() {testFetchLongList2390,16812 - public void testFetchLongList2() {TestJUnit.testFetchLongList2390,16812 - public void testFetchLongList2c() {testFetchLongList2c393,16931 - public void testFetchLongList2c() {TestJUnit.testFetchLongList2c393,16931 - public void testUnicode0() {testUnicode0405,17465 - public void testUnicode0() {TestJUnit.testUnicode0405,17465 - public void testUnicode0a() {testUnicode0a408,17583 - public void testUnicode0a() {TestJUnit.testUnicode0a408,17583 - public void testUnicode0b() {testUnicode0b411,17707 - public void testUnicode0b() {TestJUnit.testUnicode0b411,17707 - public void testUnicode0c() {testUnicode0c414,17830 - public void testUnicode0c() {TestJUnit.testUnicode0c414,17830 - public void testUnicode0d() {testUnicode0d417,17953 - public void testUnicode0d() {TestJUnit.testUnicode0d417,17953 - public void testUnicode0e() {testUnicode0e420,18078 - public void testUnicode0e() {TestJUnit.testUnicode0e420,18078 - public void testUnicode0f() {testUnicode0f423,18203 - public void testUnicode0f() {TestJUnit.testUnicode0f423,18203 - public void testUnicode0g() {testUnicode0g426,18328 - public void testUnicode0g() {TestJUnit.testUnicode0g426,18328 - public void testUnicode1() {testUnicode1429,18453 - public void testUnicode1() {TestJUnit.testUnicode1429,18453 - public void testUnicode2() {testUnicode2432,18605 - public void testUnicode2() {TestJUnit.testUnicode2432,18605 - public void testStringXput1() {testStringXput1435,18765 - public void testStringXput1() {TestJUnit.testStringXput1435,18765 - public void testStringXput2() {testStringXput2439,18918 - public void testStringXput2() {TestJUnit.testStringXput2439,18918 - public void testStaticQueryInvalidSourceText2() {testStaticQueryInvalidSourceText2454,19572 - public void testStaticQueryInvalidSourceText2() {TestJUnit.testStaticQueryInvalidSourceText2454,19572 - public void testStaticQueryInvalidSourceText1() {testStaticQueryInvalidSourceText1468,20131 - public void testStaticQueryInvalidSourceText1() {TestJUnit.testStaticQueryInvalidSourceText1468,20131 - public void testStaticQueryNSolutions1() {testStaticQueryNSolutions1482,20695 - public void testStaticQueryNSolutions1() {TestJUnit.testStaticQueryNSolutions1482,20695 - public void testStaticQueryNSolutions2() {testStaticQueryNSolutions2487,20933 - public void testStaticQueryNSolutions2() {TestJUnit.testStaticQueryNSolutions2487,20933 - public void testStaticQueryNSolutions3() {testStaticQueryNSolutions3492,21171 - public void testStaticQueryNSolutions3() {TestJUnit.testStaticQueryNSolutions3492,21171 - public void testStaticQueryAllSolutions1() {testStaticQueryAllSolutions1497,21404 - public void testStaticQueryAllSolutions1() {TestJUnit.testStaticQueryAllSolutions1497,21404 - public void testStaticQueryHasSolution1() {testStaticQueryHasSolution1501,21615 - public void testStaticQueryHasSolution1() {TestJUnit.testStaticQueryHasSolution1501,21615 - public void testStaticQueryHasSolution2() {testStaticQueryHasSolution2506,21836 - public void testStaticQueryHasSolution2() {TestJUnit.testStaticQueryHasSolution2506,21836 - public void testUtilListToTermArray1() {testUtilListToTermArray1511,22058 - public void testUtilListToTermArray1() {TestJUnit.testUtilListToTermArray1511,22058 - public void testTermToTermArray1() {testTermToTermArray1517,22298 - public void testTermToTermArray1() {TestJUnit.testTermToTermArray1517,22298 - public void testJRef1() {testJRef1523,22526 - public void testJRef1() {TestJUnit.testJRef1523,22526 - public void testBerhhard1() {testBerhhard1532,22970 - public void testBerhhard1() {TestJUnit.testBerhhard1532,22970 - public void testJRef2() {testJRef2535,23081 - public void testJRef2() {TestJUnit.testJRef2535,23081 - public void testJRef3() {testJRef3542,23329 - public void testJRef3() {TestJUnit.testJRef3542,23329 - public void testJRef4() {testJRef4547,23525 - public void testJRef4() {TestJUnit.testJRef4547,23525 - public void testJRef5() {testJRef5551,23753 - public void testJRef5() {TestJUnit.testJRef5551,23753 - public void testRef6() {testRef6556,24020 - public void testRef6() {TestJUnit.testRef6556,24020 - public void testRef7() {testRef7561,24229 - public void testRef7() {TestJUnit.testRef7561,24229 - public void testForeignFrame1() {testForeignFrame1578,24848 - public void testForeignFrame1() {TestJUnit.testForeignFrame1578,24848 - public void testOpenGetClose1() {testOpenGetClose1583,25136 - public void testOpenGetClose1() {TestJUnit.testOpenGetClose1583,25136 - public void testOpenGetClose2() {testOpenGetClose2594,25450 - public void testOpenGetClose2() {TestJUnit.testOpenGetClose2594,25450 - public void testOpen1() {testOpen1608,26068 - public void testOpen1() {TestJUnit.testOpen1608,26068 - public void testOpen2() {testOpen2612,26194 - public void testOpen2() {TestJUnit.testOpen2612,26194 - public void testGetSolution1() {testGetSolution1617,26348 - public void testGetSolution1() {TestJUnit.testGetSolution1617,26348 - public void testGetSolution2() {testGetSolution2623,26540 - public void testGetSolution2() {TestJUnit.testGetSolution2623,26540 - public void testHasMoreSolutions1() {testHasMoreSolutions1641,27344 - public void testHasMoreSolutions1() {TestJUnit.testHasMoreSolutions1641,27344 - public void testHasMoreElements1() {testHasMoreElements1653,27746 - public void testHasMoreElements1() {TestJUnit.testHasMoreElements1653,27746 - public void testStackedQueries1() {testStackedQueries1665,28149 - public void testStackedQueries1() {TestJUnit.testStackedQueries1665,28149 - -packages/jpl/src/java/jpl/test/TestOLD.java,1031 -package jpl.test;jpl.test1,0 -public class TestOLD {TestOLD16,325 - private static void test10() {test1017,348 - private static void test10() {TestOLD.test1017,348 - private static void test10j() {test10j28,1037 - private static void test10j() {TestOLD.test10j28,1037 - private static void test10k() {test10k38,1522 - private static void test10k() {TestOLD.test10k38,1522 - private static void test10l() {test10l54,1949 - private static void test10l() {TestOLD.test10l54,1949 - private static void test10m() {test10m63,2318 - private static void test10m() {TestOLD.test10m63,2318 - private static void test10o() {test10o74,2665 - private static void test10o() {TestOLD.test10o74,2665 - private static void test10q() {test10q84,3177 - private static void test10q() {TestOLD.test10q84,3177 - private static void test10s() {test10s89,3364 - private static void test10s() {TestOLD.test10s89,3364 - public static void main(String argv[]) {main114,4180 - public static void main(String argv[]) {TestOLD.main114,4180 - -packages/jpl/src/java/jpl/util/Getenv.java,385 -package jpl.util;jpl.util1,0 -public class GetenvGetenv7,113 - public static void main(String args[])main10,137 - public static void main(String args[])Getenv.main10,137 - public static void getenv()getenv19,249 - public static void getenv()Getenv.getenv19,249 - static void getenv1(BufferedReader br)getenv140,661 - static void getenv1(BufferedReader br)Getenv.getenv140,661 - -packages/jpl/src/java/jpl/util/HashedRefs.java,1867 -package jpl.util;jpl.util1,0 -class HashedRefsEntry {HashedRefsEntry7,58 - int hash;hash8,82 - int hash;HashedRefsEntry.hash8,82 - Object obj;obj9,96 - Object obj;HashedRefsEntry.obj9,96 - public int iref;iref10,112 - public int iref;HashedRefsEntry.iref10,112 - public HashedRefsEntry next;next11,133 - public HashedRefsEntry next;HashedRefsEntry.next11,133 -class HashedRefs {HashedRefs16,177 - public transient HashedRefsEntry table[];table20,240 - public transient HashedRefsEntry table[];HashedRefs.table20,240 - private transient int count;count25,357 - private transient int count;HashedRefs.count25,357 - private int threshold;threshold30,468 - private int threshold;HashedRefs.threshold30,468 - private float loadFactor;loadFactor35,554 - private float loadFactor;HashedRefs.loadFactor35,554 - public HashedRefs(int initialCapacity, float loadFactor) {HashedRefs37,585 - public HashedRefs(int initialCapacity, float loadFactor) {HashedRefs.HashedRefs37,585 - public HashedRefs(int initialCapacity) {HashedRefs46,883 - public HashedRefs(int initialCapacity) {HashedRefs.HashedRefs46,883 - public HashedRefs() {HashedRefs50,966 - public HashedRefs() {HashedRefs.HashedRefs50,966 - public int size() {size54,1018 - public int size() {HashedRefs.size54,1018 - protected void rehash() {rehash58,1064 - protected void rehash() {HashedRefs.rehash58,1064 - public synchronized int add(Object obj, int iref) {add80,1606 - public synchronized int add(Object obj, int iref) {HashedRefs.add80,1606 - public synchronized boolean del(Object obj) {del113,2501 - public synchronized boolean del(Object obj) {HashedRefs.del113,2501 - public synchronized void clear() {clear131,2965 - public synchronized void clear() {HashedRefs.clear131,2965 - -packages/jpl/src/java/jpl/util/Mod.java,161 -package jpl.util;jpl.util1,0 -public class ModMod3,19 - public static void main(String args[])main5,39 - public static void main(String args[])Mod.main5,39 - -packages/jpl/src/java/jpl/util/Overload.java,374 -package jpl.util;jpl.util1,0 -public class Overload {Overload3,19 - static void m1(int a1, long a2) {m14,43 - static void m1(int a1, long a2) {Overload.m14,43 - static void m1(long a1, int a2) {m16,81 - static void m1(long a1, int a2) {Overload.m16,81 - public static void main(String[] args) {main8,119 - public static void main(String[] args) {Overload.main8,119 - -packages/jpl/src/java/jpl/util/Overload2.java,233 -package jpl.util;jpl.util1,0 -public class Overload2Overload23,19 - public static int fred;fred6,99 - public static int fred;Overload2.fred6,99 - public static int fred()fred7,124 - public static int fred()Overload2.fred7,124 - -packages/jpl/src/java/jpl/util/PopupMenuDemo.java,1343 -package jpl.util;jpl.util1,0 -public class PopupMenuDemo extends JFrame PopupMenuDemo16,317 - private static final long serialVersionUID = 1L;serialVersionUID18,415 - private static final long serialVersionUID = 1L;PopupMenuDemo.serialVersionUID18,415 - public JPopupMenu popup;popup20,487 - public JPopupMenu popup;PopupMenuDemo.popup20,487 - JMenuItem source;source21,516 - JMenuItem source;PopupMenuDemo.source21,516 - int mi;mi22,535 - int mi;PopupMenuDemo.mi22,535 - public PopupMenuDemo() {PopupMenuDemo24,545 - public PopupMenuDemo() {PopupMenuDemo.PopupMenuDemo24,545 - public boolean search(JPopupMenu p) {search41,958 - public boolean search(JPopupMenu p) {PopupMenuDemo.search41,958 - public void actionPerformed(ActionEvent e) {actionPerformed62,1563 - public void actionPerformed(ActionEvent e) {PopupMenuDemo.actionPerformed62,1563 - public JPopupMenu buildPopupMenu(Object[] mis) {buildPopupMenu85,2406 - public JPopupMenu buildPopupMenu(Object[] mis) {PopupMenuDemo.buildPopupMenu85,2406 - public JMenu buildSubMenu(Object[] mis) {buildSubMenu107,2873 - public JMenu buildSubMenu(Object[] mis) {PopupMenuDemo.buildSubMenu107,2873 - public void showPopup(Object[] mis, int x, int y) {showPopup129,3323 - public void showPopup(Object[] mis, int x, int y) {PopupMenuDemo.showPopup129,3323 - -packages/jpl/src/java/jpl/util/Prog.java,1726 -package jpl.util;jpl.util1,0 -public class ProgProg4,20 - public static int i_am_static_1 = 1;i_am_static_16,41 - public static int i_am_static_1 = 1;Prog.i_am_static_16,41 - public int i_am_not_static_2 = 2;i_am_not_static_28,80 - public int i_am_not_static_2 = 2;Prog.i_am_not_static_28,80 - public static java.lang.String S = "hello";S10,116 - public static java.lang.String S = "hello";Prog.S10,116 - public static class InsideInside12,162 - public static class InsideProg.Inside12,162 - public int intErnal;intErnal14,194 - public int intErnal;Prog.Inside.intErnal14,194 - public static void main(String[] args)main17,222 - public static void main(String[] args)Prog.main17,222 - public static float div0()div022,308 - public static float div0()Prog.div022,308 - public static String welcome()welcome27,370 - public static String welcome()Prog.welcome27,370 - public float div1(int d)div132,439 - public float div1(int d)Prog.div132,439 - public double div2( int d)div237,500 - public double div2( int d)Prog.div237,500 - public static int add_ints( int i1, int i2, int i3)add_ints42,567 - public static int add_ints( int i1, int i2, int i3)Prog.add_ints42,567 - public static float floats_to_float( float f1, float f2, float f3)floats_to_float47,648 - public static float floats_to_float( float f1, float f2, float f3)Prog.floats_to_float47,648 - public static double floats_to_double( float f1, float f2, float f3)floats_to_double52,744 - public static double floats_to_double( float f1, float f2, float f3)Prog.floats_to_double52,744 - public static String double_to_string( double d)double_to_string57,842 - public static String double_to_string( double d)Prog.double_to_string57,842 - -packages/jpl/src/java/jpl/util/SwingGadget.java,1082 -package jpl.util;jpl.util1,0 -public class SwingGadget extends JFrameSwingGadget16,396 - private static final long serialVersionUID = 1L;serialVersionUID18,439 - private static final long serialVersionUID = 1L;SwingGadget.serialVersionUID18,439 - public int numClicks = 0; // can be changed e.g. from ProlognumClicks20,490 - public int numClicks = 0; // can be changed e.g. from PrologSwingGadget.numClicks20,490 - private static String labelPrefix = "Number of button clicks: ";labelPrefix22,553 - private static String labelPrefix = "Number of button clicks: ";SwingGadget.labelPrefix22,553 - final JLabel label = new JLabel(labelPrefix + "0 ");label23,619 - final JLabel label = new JLabel(labelPrefix + "0 ");SwingGadget.label23,619 - public SwingGadget(String caption)SwingGadget25,677 - public SwingGadget(String caption)SwingGadget.SwingGadget25,677 - public synchronized void inc()inc73,1552 - public synchronized void inc()SwingGadget.inc73,1552 - public synchronized boolean dec()dec80,1665 - public synchronized boolean dec()SwingGadget.dec80,1665 - -packages/jpl/src/java/jpl/util/SwingGadget2.java,1242 -package jpl.util;jpl.util1,0 -public class SwingGadget2 extends JFrameSwingGadget210,207 - private static final long serialVersionUID = 1L;serialVersionUID12,251 - private static final long serialVersionUID = 1L;SwingGadget2.serialVersionUID12,251 - private Qev head;head13,301 - private Qev head;SwingGadget2.head13,301 - private Qev tail;tail14,320 - private Qev tail;SwingGadget2.tail14,320 - public JPanel pane;pane15,339 - public JPanel pane;SwingGadget2.pane15,339 - public ActionListener al = al17,361 - public ActionListener al = SwingGadget2.al17,361 - public SwingGadget2(String caption)SwingGadget226,495 - public SwingGadget2(String caption)SwingGadget2.SwingGadget226,495 - public synchronized void inc(Object e)inc53,1066 - public synchronized void inc(Object e)SwingGadget2.inc53,1066 - public synchronized Object dec()dec69,1286 - public synchronized Object dec()SwingGadget2.dec69,1286 - public class QevQev88,1513 - public class QevSwingGadget2.Qev88,1513 - public Object ev;ev90,1535 - public Object ev;SwingGadget2.Qev.ev90,1535 - public Qev next;next91,1555 - public Qev next;SwingGadget2.Qev.next91,1555 - public Qev(Object e)Qev93,1575 - public Qev(Object e)SwingGadget2.Qev.Qev93,1575 - -packages/jpl/src/java/jpl/util/Test1.java,5071 -package jpl.util;jpl.util1,0 -public class Test1Test14,20 - public static String booleans_to_string( boolean p0, boolean p1)booleans_to_string7,43 - public static String booleans_to_string( boolean p0, boolean p1)Test1.booleans_to_string7,43 - public static String chars_to_string( char p0, char p1)chars_to_string12,154 - public static String chars_to_string( char p0, char p1)Test1.chars_to_string12,154 - public static String bytes_to_string( byte p0, byte p1)bytes_to_string17,256 - public static String bytes_to_string( byte p0, byte p1)Test1.bytes_to_string17,256 - public static String shorts_to_string( short p0, short p1)shorts_to_string22,358 - public static String shorts_to_string( short p0, short p1)Test1.shorts_to_string22,358 - public static String ints_to_string( int p0, int p1)ints_to_string27,463 - public static String ints_to_string( int p0, int p1)Test1.ints_to_string27,463 - public static String longs_to_string( long p0, long p1)longs_to_string32,562 - public static String longs_to_string( long p0, long p1)Test1.longs_to_string32,562 - public static String floats_to_string( float p0, float p1)floats_to_string37,664 - public static String floats_to_string( float p0, float p1)Test1.floats_to_string37,664 - public static String doubles_to_string( double p0, double p1)doubles_to_string42,769 - public static String doubles_to_string( double p0, double p1)Test1.doubles_to_string42,769 - public static String boolean_to_string( boolean p)boolean_to_string48,878 - public static String boolean_to_string( boolean p)Test1.boolean_to_string48,878 - public static String char_to_string( char p)char_to_string53,963 - public static String char_to_string( char p)Test1.char_to_string53,963 - public static String byte_to_string( byte p)byte_to_string58,1042 - public static String byte_to_string( byte p)Test1.byte_to_string58,1042 - public static String short_to_string( short p)short_to_string63,1121 - public static String short_to_string( short p)Test1.short_to_string63,1121 - public static String int_to_string( int p)int_to_string68,1202 - public static String int_to_string( int p)Test1.int_to_string68,1202 - public static String long_to_string( long p)long_to_string73,1279 - public static String long_to_string( long p)Test1.long_to_string73,1279 - public static String float_to_string( float p)float_to_string78,1358 - public static String float_to_string( float p)Test1.float_to_string78,1358 - public static String double_to_string( double p)double_to_string83,1439 - public static String double_to_string( double p)Test1.double_to_string83,1439 - public static boolean boolean_1()boolean_189,1523 - public static boolean boolean_1()Test1.boolean_189,1523 - public static boolean boolean_2()boolean_294,1583 - public static boolean boolean_2()Test1.boolean_294,1583 - public static char char_1()char_199,1642 - public static char char_1()Test1.char_199,1642 - public static byte byte_1()byte_1104,1699 - public static byte byte_1()Test1.byte_1104,1699 - public static short short_1()short_1109,1751 - public static short short_1()Test1.short_1109,1751 - public static int int_1()int_1114,1807 - public static int int_1()Test1.int_1114,1807 - public static int int_2()int_2119,1881 - public static int int_2()Test1.int_2119,1881 - public static long long_1()long_1124,1959 - public static long long_1()Test1.long_1124,1959 - public static long long_2()long_2129,2063 - public static long long_2()Test1.long_2129,2063 - public static long long_3()long_3134,2152 - public static long long_3()Test1.long_3134,2152 - public static long long_4()long_4139,2239 - public static long long_4()Test1.long_4139,2239 - public static long long_5()long_5144,2327 - public static long long_5()Test1.long_5144,2327 - public static long long_6()long_6149,2406 - public static long long_6()Test1.long_6149,2406 - public static long long_7()long_7154,2494 - public static long long_7()Test1.long_7154,2494 - public static float float_1()float_1159,2581 - public static float float_1()Test1.float_1159,2581 - public static double double_1()double_1164,2643 - public static double double_1()Test1.double_1164,2643 - public static double double_1a()double_1a169,2707 - public static double double_1a()Test1.double_1a169,2707 - public static double double_1b()double_1b174,2776 - public static double double_1b()Test1.double_1b174,2776 - public static double double_1c()double_1c179,2844 - public static double double_1c()Test1.double_1c179,2844 - public static double double_2()double_2184,2902 - public static double double_2()Test1.double_2184,2902 - public static double double_3()double_3189,2971 - public static double double_3()Test1.double_3189,2971 - public static double double_4()double_4194,3040 - public static double double_4()Test1.double_4194,3040 - public static double double_5()double_5199,3117 - public static double double_5()Test1.double_5199,3117 - public static double double_6()double_6204,3194 - public static double double_6()Test1.double_6204,3194 - -packages/jpl/src/java/jpl/util/Test2.java,5153 -package jpl.util;jpl.util1,0 -public class Test2 {Test23,19 - public static boolean boolean_field;boolean_field4,40 - public static boolean boolean_field;Test2.boolean_field4,40 - public static char char_field;char_field5,78 - public static char char_field;Test2.char_field5,78 - public static byte byte_field;byte_field6,111 - public static byte byte_field;Test2.byte_field6,111 - public static short short_field;short_field7,144 - public static short short_field;Test2.short_field7,144 - public static int int_field;int_field8,179 - public static int int_field;Test2.int_field8,179 - public static long long_field;long_field9,210 - public static long long_field;Test2.long_field9,210 - public static float float_field;float_field10,243 - public static float float_field;Test2.float_field10,243 - public static double double_field;double_field11,278 - public static double double_field;Test2.double_field11,278 - public static boolean get_boolean_field() {get_boolean_field12,314 - public static boolean get_boolean_field() {Test2.get_boolean_field12,314 - public static char get_char_field() {get_char_field15,386 - public static char get_char_field() {Test2.get_char_field15,386 - public static byte get_byte_field() {get_byte_field18,449 - public static byte get_byte_field() {Test2.get_byte_field18,449 - public static short get_short_field() {get_short_field21,512 - public static short get_short_field() {Test2.get_short_field21,512 - public static int get_int_field() {get_int_field24,578 - public static int get_int_field() {Test2.get_int_field24,578 - public static long get_long_field() {get_long_field27,638 - public static long get_long_field() {Test2.get_long_field27,638 - public static float get_float_field() {get_float_field30,701 - public static float get_float_field() {Test2.get_float_field30,701 - public static double get_double_field() {get_double_field33,767 - public static double get_double_field() {Test2.get_double_field33,767 - public static void set_boolean_field(boolean v) {set_boolean_field37,921 - public static void set_boolean_field(boolean v) {Test2.set_boolean_field37,921 - public static void set_char_field(char v) {set_char_field40,996 - public static void set_char_field(char v) {Test2.set_char_field40,996 - public static void set_byte_field(byte v) {set_byte_field43,1062 - public static void set_byte_field(byte v) {Test2.set_byte_field43,1062 - public static void set_short_field(short v) {set_short_field46,1128 - public static void set_short_field(short v) {Test2.set_short_field46,1128 - public static void set_int_field(int v) {set_int_field49,1197 - public static void set_int_field(int v) {Test2.set_int_field49,1197 - public static void set_long_field(long v) {set_long_field52,1260 - public static void set_long_field(long v) {Test2.set_long_field52,1260 - public static void set_float_field(float v) {set_float_field55,1326 - public static void set_float_field(float v) {Test2.set_float_field55,1326 - public static void set_double_field(double v) {set_double_field58,1395 - public static void set_double_field(double v) {Test2.set_double_field58,1395 - public static String boolean_field_to_string() {boolean_field_to_string61,1467 - public static String boolean_field_to_string() {Test2.boolean_field_to_string61,1467 - public static String char_field_to_string() {char_field_to_string64,1556 - public static String char_field_to_string() {Test2.char_field_to_string64,1556 - public static String byte_field_to_string() {byte_field_to_string67,1639 - public static String byte_field_to_string() {Test2.byte_field_to_string67,1639 - public static String short_field_to_string() {short_field_to_string70,1722 - public static String short_field_to_string() {Test2.short_field_to_string70,1722 - public static String int_field_to_string() {int_field_to_string73,1807 - public static String int_field_to_string() {Test2.int_field_to_string73,1807 - public static String long_field_to_string() {long_field_to_string76,1888 - public static String long_field_to_string() {Test2.long_field_to_string76,1888 - public static String float_field_to_string() {float_field_to_string79,1971 - public static String float_field_to_string() {Test2.float_field_to_string79,1971 - public static String double_field_to_string() {double_field_to_string82,2056 - public static String double_field_to_string() {Test2.double_field_to_string82,2056 - public static String echo_2_and_3(Object a1, int a2, int a3) {echo_2_and_385,2143 - public static String echo_2_and_3(Object a1, int a2, int a3) {Test2.echo_2_and_385,2143 - public static String set_bytes_to_7(byte[] a, int offset, int count) {set_bytes_to_788,2246 - public static String set_bytes_to_7(byte[] a, int offset, int count) {Test2.set_bytes_to_788,2246 - public static String lotsa_args(byte[] a, int a1, int a2, int a3, int a4, int a5, int a6) { // this illustrated a bug in the MS JVM's JNIlotsa_args93,2427 - public static String lotsa_args(byte[] a, int a1, int a2, int a3, int a4, int a5, int a6) { // this illustrated a bug in the MS JVM's JNITest2.lotsa_args93,2427 - -packages/jpl/src/java/jpl/util/Util.java,4494 -package jpl.util;jpl.util1,0 -public class UtilUtil12,272 - private static Random r = new Random();r14,293 - private static Random r = new Random();Util.r14,293 - public static String[] dir_to_members( String dir)dir_to_members16,335 - public static String[] dir_to_members( String dir)Util.dir_to_members16,335 - public static String[] dir_to_member_paths( String dir)dir_to_member_paths34,682 - public static String[] dir_to_member_paths( String dir)Util.dir_to_member_paths34,682 - public static String[] dir_to_member_names( String dir)dir_to_member_names52,1023 - public static String[] dir_to_member_names( String dir)Util.dir_to_member_names52,1023 - public static int spawn_in_out_err( String command, String infile, String outfile, String errfile)spawn_in_out_err64,1284 - public static int spawn_in_out_err( String command, String infile, String outfile, String errfile)Util.spawn_in_out_err64,1284 - public static int spawn_in_out_err_wait(spawn_in_out_err_wait107,2047 - public static int spawn_in_out_err_wait(Util.spawn_in_out_err_wait107,2047 - public static int spawn( String command)spawn158,2877 - public static int spawn( String command)Util.spawn158,2877 - public static int spawn_wait( String command, boolean wait)spawn_wait164,2966 - public static int spawn_wait( String command, boolean wait)Util.spawn_wait164,2966 - public static String new_scratch_file( String dir)new_scratch_file191,3324 - public static String new_scratch_file( String dir)Util.new_scratch_file191,3324 - public static String new_scratch_file( String dir, String suffix)new_scratch_file196,3425 - public static String new_scratch_file( String dir, String suffix)Util.new_scratch_file196,3425 - public static String new_scratch_dir( String dir)new_scratch_dir225,3910 - public static String new_scratch_dir( String dir)Util.new_scratch_dir225,3910 - public static String new_scratch_suffix_file( String dir, String suffix)new_scratch_suffix_file253,4326 - public static String new_scratch_suffix_file( String dir, String suffix)Util.new_scratch_suffix_file253,4326 - public static String new_scratch_suffix_dir( String dir, String suffix)new_scratch_suffix_dir282,4825 - public static String new_scratch_suffix_dir( String dir, String suffix)Util.new_scratch_suffix_dir282,4825 - public static boolean create_file( String file)create_file310,5282 - public static boolean create_file( String file)Util.create_file310,5282 - public static boolean create_dir( String dir)create_dir324,5495 - public static boolean create_dir( String dir)Util.create_dir324,5495 - public static boolean file_exists( String f)file_exists335,5658 - public static boolean file_exists( String f)Util.file_exists335,5658 - public static boolean file_can_read( String f)file_can_read340,5746 - public static boolean file_can_read( String f)Util.file_can_read340,5746 - public static boolean file_can_write( String f)file_can_write345,5837 - public static boolean file_can_write( String f)Util.file_can_write345,5837 - public static boolean file_is_file( String f)file_is_file350,5930 - public static boolean file_is_file( String f)Util.file_is_file350,5930 - public static boolean file_is_dir( String f)file_is_dir355,6019 - public static boolean file_is_dir( String f)Util.file_is_dir355,6019 - public static long file_last_modified( String f)file_last_modified360,6112 - public static long file_last_modified( String f)Util.file_last_modified360,6112 - public static long file_to_length( String f)file_to_length365,6210 - public static long file_to_length( String f)Util.file_to_length365,6210 - public static boolean delete_file( String f)delete_file370,6298 - public static boolean delete_file( String f)Util.delete_file370,6298 - public static String[] classpath_parts()classpath_parts381,6459 - public static String[] classpath_parts()Util.classpath_parts381,6459 - private static boolean strings_contains_string( String[] ss, int n, String s)strings_contains_string415,7137 - private static boolean strings_contains_string( String[] ss, int n, String s)Util.strings_contains_string415,7137 - public static byte[] filename_to_byte_array( String f)filename_to_byte_array427,7330 - public static byte[] filename_to_byte_array( String f)Util.filename_to_byte_array427,7330 - public static boolean rename_file_to_file( String n1, String n2)rename_file_to_file447,7722 - public static boolean rename_file_to_file( String n1, String n2)Util.rename_file_to_file447,7722 - -packages/jpl/src/java/jpl/util/Util2.java,2573 -package jpl.util;jpl.util1,0 -public class Util2Util212,272 - private static Random r = new Random();r14,294 - private static Random r = new Random();Util2.r14,294 - public static String[] dir_to_members( String dir)dir_to_members16,336 - public static String[] dir_to_members( String dir)Util2.dir_to_members16,336 - public static int spawn_in_out_err( String command, String infile, String outfile, String errfile)spawn_in_out_err34,683 - public static int spawn_in_out_err( String command, String infile, String outfile, String errfile)Util2.spawn_in_out_err34,683 - public static int spawn( String command)spawn77,1446 - public static int spawn( String command)Util2.spawn77,1446 - public static String new_scratch_file( String dir)new_scratch_file93,1688 - public static String new_scratch_file( String dir)Util2.new_scratch_file93,1688 - public static boolean create_dir( String dir)create_dir122,2157 - public static boolean create_dir( String dir)Util2.create_dir122,2157 - public static boolean file_exists( String f)file_exists133,2320 - public static boolean file_exists( String f)Util2.file_exists133,2320 - public static boolean file_can_read( String f)file_can_read138,2408 - public static boolean file_can_read( String f)Util2.file_can_read138,2408 - public static boolean file_can_write( String f)file_can_write143,2499 - public static boolean file_can_write( String f)Util2.file_can_write143,2499 - public static boolean file_is_file( String f)file_is_file148,2592 - public static boolean file_is_file( String f)Util2.file_is_file148,2592 - public static boolean file_is_dir( String f)file_is_dir153,2681 - public static boolean file_is_dir( String f)Util2.file_is_dir153,2681 - public static long file_last_modified( String f)file_last_modified158,2774 - public static long file_last_modified( String f)Util2.file_last_modified158,2774 - public static boolean delete_file( String f)delete_file163,2872 - public static boolean delete_file( String f)Util2.delete_file163,2872 - public static String[] classpath_parts()classpath_parts174,3033 - public static String[] classpath_parts()Util2.classpath_parts174,3033 - private static boolean strings_contains_string( String[] ss, int n, String s)strings_contains_string205,3687 - private static boolean strings_contains_string( String[] ss, int n, String s)Util2.strings_contains_string205,3687 - public static byte[] filename_to_byte_array( String f)filename_to_byte_array217,3880 - public static byte[] filename_to_byte_array( String f)Util2.filename_to_byte_array217,3880 - -packages/jpl/src/java/jpl/util/Xfer.java,417 -package jpl.util;jpl.util1,0 -public class Xfer extends ThreadXfer7,105 - private InputStream in;in9,141 - private InputStream in;Xfer.in9,141 - private OutputStream out;out11,167 - private OutputStream out;Xfer.out11,167 - public Xfer( InputStream s1, OutputStream s2)Xfer13,195 - public Xfer( InputStream s1, OutputStream s2)Xfer.Xfer13,195 - public void run()run19,274 - public void run()Xfer.run19,274 - -packages/jpl/src/java/jpl/Util.java,1976 -package jpl;jpl28,1009 -public final class Util {Util56,1913 - public static Term termArrayToList(Term[] terms) {termArrayToList66,2275 - public static Term termArrayToList(Term[] terms) {Util.termArrayToList66,2275 - public static Term[] bindingsToTermArray(Map varnames_to_Terms) {bindingsToTermArray81,2721 - public static Term[] bindingsToTermArray(Map varnames_to_Terms) {Util.bindingsToTermArray81,2721 - public static String toString(Map varnames_to_Terms) {toString99,3375 - public static String toString(Map varnames_to_Terms) {Util.toString99,3375 - public static Map namevarsToMap(Term nvs) {namevarsToMap122,4215 - public static Map namevarsToMap(Term nvs) {Util.namevarsToMap122,4215 - public static Term textToTerm(String text) {textToTerm159,5771 - public static Term textToTerm(String text) {Util.textToTerm159,5771 - public static Term textParamsToTerm(String text, Term[] params) {textParamsToTerm183,6657 - public static Term textParamsToTerm(String text, Term[] params) {Util.textParamsToTerm183,6657 - public static Term stringArrayToList(String[] a) {stringArrayToList194,6979 - public static Term stringArrayToList(String[] a) {Util.stringArrayToList194,6979 - public static Term intArrayToList(int[] a) {intArrayToList209,7382 - public static Term intArrayToList(int[] a) {Util.intArrayToList209,7382 - public static Term intArrayArrayToList(int[][] a) {intArrayArrayToList224,7834 - public static Term intArrayArrayToList(int[][] a) {Util.intArrayArrayToList224,7834 - public static int listToLength(Term t) {listToLength231,8052 - public static int listToLength(Term t) {Util.listToLength231,8052 - public static Term[] listToTermArray(Term t) {listToTermArray245,8485 - public static Term[] listToTermArray(Term t) {Util.listToTermArray245,8485 - public static String[] atomListToStringArray( Term t){atomListToStringArray260,8810 - public static String[] atomListToStringArray( Term t){Util.atomListToStringArray260,8810 - -packages/jpl/src/java/jpl/Variable.java,3204 -package jpl;jpl28,1009 -public class Variable extends Term {Variable65,2334 - private static long n = 0; // the integral part of the next automatic variable name to be allocatedn69,2529 - private static long n = 0; // the integral part of the next automatic variable name to be allocatedVariable.n69,2529 - public final String name; // the name of this Variablename70,2630 - public final String name; // the name of this VariableVariable.name70,2630 - protected transient term_t term_ = null; // defined between Query.open() and Query.get2()term_71,2686 - protected transient term_t term_ = null; // defined between Query.open() and Query.get2()Variable.term_71,2686 - protected transient int index; // only used by (redundant?) index72,2777 - protected transient int index; // only used by (redundant?) Variable.index72,2777 - public Variable(String name) {Variable82,3213 - public Variable(String name) {Variable.Variable82,3213 - public Variable() {Variable95,3584 - public Variable() {Variable.Variable95,3584 - public Term[] args() {args107,3976 - public Term[] args() {Variable.args107,3976 - public boolean hasFunctor(String name, int arity) {hasFunctor110,4070 - public boolean hasFunctor(String name, int arity) {Variable.hasFunctor110,4070 - public boolean hasFunctor(int value, int arity) {hasFunctor113,4220 - public boolean hasFunctor(int value, int arity) {Variable.hasFunctor113,4220 - public boolean hasFunctor(double value, int arity) {hasFunctor116,4368 - public boolean hasFunctor(double value, int arity) {Variable.hasFunctor116,4368 - public Object jrefToObject() {jrefToObject119,4519 - public Object jrefToObject() {Variable.jrefToObject119,4519 - public final String name() {name127,4738 - public final String name() {Variable.name127,4738 - public final int type() {type135,4943 - public final int type() {Variable.type135,4943 - public String typeName() {typeName143,5149 - public String typeName() {Variable.typeName143,5149 - public String toString() {toString151,5347 - public String toString() {Variable.toString151,5347 - public final boolean equals(Object obj) {equals160,5622 - public final boolean equals(Object obj) {Variable.equals160,5622 - public final Term arg(int i) {arg169,5934 - public final Term arg(int i) {Variable.arg169,5934 - private boolean isValidName(String s) {isValidName182,6345 - private boolean isValidName(String s) {Variable.isValidName182,6345 - public String debugString() {debugString211,7192 - public String debugString() {Variable.debugString211,7192 - protected final void put(Map varnames_to_vars, term_t term) {put231,8276 - protected final void put(Map varnames_to_vars, term_t term) {Variable.put231,8276 - protected static Term getTerm1(Map vars_to_Vars, term_t var) {getTerm1260,9487 - protected static Term getTerm1(Map vars_to_Vars, term_t var) {Variable.getTerm1260,9487 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {getSubst284,10824 - protected final void getSubst(Map varnames_to_Terms, Map vars_to_Vars) {Variable.getSubst284,10824 - private final boolean tellThem() {tellThem294,11387 - private final boolean tellThem() {Variable.tellThem294,11387 - -packages/jpl/src/java/jpl/Version.java,504 -package jpl;jpl2,8 -class Version {Version4,22 - public final int major = 3;major5,38 - public final int major = 3;Version.major5,38 - public final int minor = 1;minor6,81 - public final int minor = 1;Version.minor6,81 - public final int patch = 4;patch7,110 - public final int patch = 4;Version.patch7,110 - public final String status = "alpha";status8,153 - public final String status = "alpha";Version.status8,153 - -packages/jpl/src/java/Makefile.mak,445 -JAVAC="$(JAVA_HOME)\bin\javac"JAVAC8,206 -JAR="$(JAVA_HOME)\bin\jar"JAR9,237 -JAVADOC="$(JAVA_HOME)\bin\javadoc"JAVADOC10,264 -JPLJAR=..\..\jpl.jarJPLJAR11,299 -TSTJAR=..\..\jpltest.jarTSTJAR12,320 -JPLDOC=..\..\docs\java_api\javadocJPLDOC13,345 -CLS= jpl\Atom.java \CLS15,381 -FLI= jpl\fli\atom_t.java \FLI29,639 -TEST= jpl\test\CelsiusConverter.java \TEST47,1087 -JPLJAVA=$(CLS) $(FLI)JPLJAVA63,1481 -TSTJAVA=$(TEST)TSTJAVA64,1503 - -packages/jpl/test-java.sh,0 - -packages/jpl/test_jpl.pl,251 -user:jpl_test_fac( N, F) :-jpl_test_fac1152,18544 -user:jpl_test_fac( N, F) :-jpl_test_fac1152,18544 -test(threads2, true(X==true)) :-test1176,19032 -test(threads2, true(X==true)) :-test1176,19032 -test(threads2, true(X==true)) :-test1176,19032 - -packages/jpl/test_singleton.pl,26 -t(A).t3,49 -t(A).t3,49 - -packages/jpl/testenv,59 -findexe()findexe5,72 -if findexe javac; thenjavac26,488 - -packages/jpl/web/jpl/build_WAR.bat,0 - -packages/jpl/web/jpl/index.html,0 - -packages/Makefile,0 - -packages/md,109 -In ubuntu, you may want to install the fedora rpm, or just download the package from the originalrpm12,395 - -packages/meld/examples/pagerank/README,0 - -packages/meld/meld.yap,93 -simulate(G) :-simulate28,489 -simulate(G) :-simulate28,489 -simulate(G) :-simulate28,489 - -packages/meld/meldc.yap,14673 -:- dynamic meld_constants:const/2.dynamic35,415 -:- dynamic meld_constants:const/2.dynamic35,415 -mcompile(Program) :-mcompile37,451 -mcompile(Program) :-mcompile37,451 -mcompile(Program) :-mcompile37,451 -init_mcompile(Program) :-init_mcompile52,692 -init_mcompile(Program) :-init_mcompile52,692 -init_mcompile(Program) :-init_mcompile52,692 -mcompile(type(T), Program, Vars) :-mcompile55,756 -mcompile(type(T), Program, Vars) :-mcompile55,756 -mcompile(type(T), Program, Vars) :-mcompile55,756 -mcompile(const(T=V), _Program, Vars) :-mcompile58,849 -mcompile(const(T=V), _Program, Vars) :-mcompile58,849 -mcompile(const(T=V), _Program, Vars) :-mcompile58,849 -mcompile((Head :- Body), _, _Vars) :-mcompile61,941 -mcompile((Head :- Body), _, _Vars) :-mcompile61,941 -mcompile((Head :- Body), _, _Vars) :-mcompile61,941 -type_declaration(extensional(T), Program) :- !,type_declaration64,999 -type_declaration(extensional(T), Program) :- !,type_declaration64,999 -type_declaration(extensional(T), Program) :- !,type_declaration64,999 -type_declaration(logical_neighbor(T), Program) :- !,type_declaration69,1178 -type_declaration(logical_neighbor(T), Program) :- !,type_declaration69,1178 -type_declaration(logical_neighbor(T), Program) :- !,type_declaration69,1178 -type_declaration(persistent(T), Program) :- !,type_declaration71,1263 -type_declaration(persistent(T), Program) :- !,type_declaration71,1263 -type_declaration(persistent(T), Program) :- !,type_declaration71,1263 -type_declaration(extern(T), Program) :- !,type_declaration73,1342 -type_declaration(extern(T), Program) :- !,type_declaration73,1342 -type_declaration(extern(T), Program) :- !,type_declaration73,1342 -type_declaration(T, _) :-type_declaration75,1417 -type_declaration(T, _) :-type_declaration75,1417 -type_declaration(T, _) :-type_declaration75,1417 -type_declaration(T, Program) :-type_declaration79,1497 -type_declaration(T, Program) :-type_declaration79,1497 -type_declaration(T, Program) :-type_declaration79,1497 -type_declaration(T, Program) :-type_declaration85,1683 -type_declaration(T, Program) :-type_declaration85,1683 -type_declaration(T, Program) :-type_declaration85,1683 -assert_type(NT, Program, Agg) :-assert_type88,1748 -assert_type(NT, Program, Agg) :-assert_type88,1748 -assert_type(NT, Program, Agg) :-assert_type88,1748 -const_declaration(C,V) :- !,const_declaration93,1867 -const_declaration(C,V) :- !,const_declaration93,1867 -const_declaration(C,V) :- !,const_declaration93,1867 -check_aggregate([first(Type)|Args], I, [Type|Args], first, I) :- !.check_aggregate98,2059 -check_aggregate([first(Type)|Args], I, [Type|Args], first, I) :- !.check_aggregate98,2059 -check_aggregate([first(Type)|Args], I, [Type|Args], first, I) :- !.check_aggregate98,2059 -check_aggregate([max(Type)|Args], I, [Type|Args], max, I) :- !.check_aggregate99,2127 -check_aggregate([max(Type)|Args], I, [Type|Args], max, I) :- !.check_aggregate99,2127 -check_aggregate([max(Type)|Args], I, [Type|Args], max, I) :- !.check_aggregate99,2127 -check_aggregate([min(Type)|Args], I, [Type|Args], min, I) :- !.check_aggregate100,2191 -check_aggregate([min(Type)|Args], I, [Type|Args], min, I) :- !.check_aggregate100,2191 -check_aggregate([min(Type)|Args], I, [Type|Args], min, I) :- !.check_aggregate100,2191 -check_aggregate([sum(Type)|Args], I, [Type|Args], sum, I) :- !.check_aggregate101,2255 -check_aggregate([sum(Type)|Args], I, [Type|Args], sum, I) :- !.check_aggregate101,2255 -check_aggregate([sum(Type)|Args], I, [Type|Args], sum, I) :- !.check_aggregate101,2255 -check_aggregate([Type|Args], I, [Type|NewArgs], Agg, Arg) :-check_aggregate102,2319 -check_aggregate([Type|Args], I, [Type|NewArgs], Agg, Arg) :-check_aggregate102,2319 -check_aggregate([Type|Args], I, [Type|NewArgs], Agg, Arg) :-check_aggregate102,2319 -ground_term(_, []).ground_term107,2453 -ground_term(_, []).ground_term107,2453 -rule(Head, Body) :-rule112,2494 -rule(Head, Body) :-rule112,2494 -rule(Head, Body) :-rule112,2494 -builtins([]) --> [].builtins119,2668 -builtins([]) --> [].builtins119,2668 -builtins([]) --> [].builtins119,2668 -builtins(G.Gs) -->builtins120,2689 -builtins(G.Gs) -->builtins120,2689 -builtins(G.Gs) -->builtins120,2689 -builtin(Res = Op) --> !,builtin124,2744 -builtin(Res = Op) --> !,builtin124,2744 -builtin(Res = Op) --> !,builtin124,2744 -builtin(Goal) -->builtin126,2798 -builtin(Goal) -->builtin126,2798 -builtin(Goal) -->builtin126,2798 -process_constants(G, G) -->process_constants130,2862 -process_constants(G, G) -->process_constants130,2862 -process_constants(G, G) -->process_constants130,2862 -process_constants(C, V) -->process_constants132,2906 -process_constants(C, V) -->process_constants132,2906 -process_constants(C, V) -->process_constants132,2906 -process_constants(G, G) -->process_constants134,2969 -process_constants(G, G) -->process_constants134,2969 -process_constants(G, G) -->process_constants134,2969 -process_constants(to_float(Arg1), NArg1) --> !,process_constants136,3016 -process_constants(to_float(Arg1), NArg1) --> !,process_constants136,3016 -process_constants(to_float(Arg1), NArg1) --> !,process_constants136,3016 -process_constants(A, NA) --> process_constants138,3097 -process_constants(A, NA) --> process_constants138,3097 -process_constants(A, NA) --> process_constants138,3097 -process_constants(A, NA) --> process_constants144,3290 -process_constants(A, NA) --> process_constants144,3290 -process_constants(A, NA) --> process_constants144,3290 -process_constants(G, NG) -->process_constants149,3437 -process_constants(G, NG) -->process_constants149,3437 -process_constants(G, NG) -->process_constants149,3437 -process_args([], []) --> [].process_args154,3540 -process_args([], []) --> [].process_args154,3540 -process_args([], []) --> [].process_args154,3540 -process_args(A.Args, NA.NArgs) -->process_args155,3569 -process_args(A.Args, NA.NArgs) -->process_args155,3569 -process_args(A.Args, NA.NArgs) -->process_args155,3569 -join([H0], H0) --> !.join159,3660 -join([H0], H0) --> !.join159,3660 -join([H0], H0) --> !.join159,3660 -join([H|T], H0) -->join160,3682 -join([H|T], H0) -->join160,3682 -join([H|T], H0) -->join160,3682 -compile_goals([], _, _).compile_goals164,3723 -compile_goals([], _, _).compile_goals164,3723 -compile_goals([Goal|Goals], Gs, Head) :-compile_goals165,3748 -compile_goals([Goal|Goals], Gs, Head) :-compile_goals165,3748 -compile_goals([Goal|Goals], Gs, Head) :-compile_goals165,3748 -compile_goal(BIP, _Goals, _Gs, _Head) :-compile_goal169,3868 -compile_goal(BIP, _Goals, _Gs, _Head) :-compile_goal169,3868 -compile_goal(BIP, _Goals, _Gs, _Head) :-compile_goal169,3868 -compile_goal((forall G then Do), Goals, Gs, Head) :- !,compile_goal171,3938 -compile_goal((forall G then Do), Goals, Gs, Head) :- !,compile_goal171,3938 -compile_goal((forall G then Do), Goals, Gs, Head) :- !,compile_goal171,3938 -compile_goal(Goal, Goals, Gs, Head) :-compile_goal193,4720 -compile_goal(Goal, Goals, Gs, Head) :-compile_goal193,4720 -compile_goal(Goal, Goals, Gs, Head) :-compile_goal193,4720 -quantified_vars(G,Extern,NG) :-quantified_vars207,5259 -quantified_vars(G,Extern,NG) :-quantified_vars207,5259 -quantified_vars(G,Extern,NG) :-quantified_vars207,5259 -bind_external([], [], _).bind_external212,5379 -bind_external([], [], _).bind_external212,5379 -bind_external(V.TVs, NV.NTVs, Extern) :-bind_external213,5405 -bind_external(V.TVs, NV.NTVs, Extern) :-bind_external213,5405 -bind_external(V.TVs, NV.NTVs, Extern) :-bind_external213,5405 -bind_external(_.TVs, _.NTVs, Extern) :-bind_external217,5523 -bind_external(_.TVs, _.NTVs, Extern) :-bind_external217,5523 -bind_external(_.TVs, _.NTVs, Extern) :-bind_external217,5523 -collect_body([], []) --> [].collect_body222,5625 -collect_body([], []) --> [].collect_body222,5625 -collect_body([], []) --> [].collect_body222,5625 -collect_body([G|Gs], MGs) -->collect_body223,5654 -collect_body([G|Gs], MGs) -->collect_body223,5654 -collect_body([G|Gs], MGs) -->collect_body223,5654 -collect_body([], [G|Gs]) -->collect_body226,5726 -collect_body([], [G|Gs]) -->collect_body226,5726 -collect_body([], [G|Gs]) -->collect_body226,5726 -process_goal((forall Goal then Conj)) --> !,process_goal230,5797 -process_goal((forall Goal then Conj)) --> !,process_goal230,5797 -process_goal((forall Goal then Conj)) --> !,process_goal230,5797 -process_goal( G ) -->process_goal232,5877 -process_goal( G ) -->process_goal232,5877 -process_goal( G ) -->process_goal232,5877 -extra_head(Head) -->extra_head237,5908 -extra_head(Head) -->extra_head237,5908 -extra_head(Head) -->extra_head237,5908 -extra_head(Head) -->extra_head240,5973 -extra_head(Head) -->extra_head240,5973 -extra_head(Head) -->extra_head240,5973 -extra_head(Head) -->extra_head244,6114 -extra_head(Head) -->extra_head244,6114 -extra_head(Head) -->extra_head244,6114 -extra_head(Head) -->extra_head248,6263 -extra_head(Head) -->extra_head248,6263 -extra_head(Head) -->extra_head248,6263 -extra_head(Head) -->extra_head252,6412 -extra_head(Head) -->extra_head252,6412 -extra_head(Head) -->extra_head252,6412 -extra_delete(Head) -->extra_delete257,6562 -extra_delete(Head) -->extra_delete257,6562 -extra_delete(Head) -->extra_delete257,6562 -extra_delete(Head) -->extra_delete260,6649 -extra_delete(Head) -->extra_delete260,6649 -extra_delete(Head) -->extra_delete260,6649 -extra_delete(Head) -->extra_delete264,6804 -extra_delete(Head) -->extra_delete264,6804 -extra_delete(Head) -->extra_delete264,6804 -extra_delete(Head) -->extra_delete268,6960 -extra_delete(Head) -->extra_delete268,6960 -extra_delete(Head) -->extra_delete268,6960 -extra_delete(Head) -->extra_delete272,7116 -extra_delete(Head) -->extra_delete272,7116 -extra_delete(Head) -->extra_delete272,7116 -freshen(Head, Arg, VHead) :-freshen277,7273 -freshen(Head, Arg, VHead) :-freshen277,7273 -freshen(Head, Arg, VHead) :-freshen277,7273 -freshen_arg(1, [_|Args], [_|Args]) :- !.freshen_arg282,7377 -freshen_arg(1, [_|Args], [_|Args]) :- !.freshen_arg282,7377 -freshen_arg(1, [_|Args], [_|Args]) :- !.freshen_arg282,7377 -freshen_arg(N, A.Args, A.VArgs) :-freshen_arg283,7418 -freshen_arg(N, A.Args, A.VArgs) :-freshen_arg283,7418 -freshen_arg(N, A.Args, A.VArgs) :-freshen_arg283,7418 -input_graph(Program) :-input_graph287,7497 -input_graph(Program) :-input_graph287,7497 -input_graph(Program) :-input_graph287,7497 -add_graph_fact(Term) :-add_graph_fact301,7708 -add_graph_fact(Term) :-add_graph_fact301,7708 -add_graph_fact(Term) :-add_graph_fact301,7708 -bodytolist((G1,G2)) -->bodytolist304,7747 -bodytolist((G1,G2)) -->bodytolist304,7747 -bodytolist((G1,G2)) -->bodytolist304,7747 -bodytolist(G) -->bodytolist308,7809 -bodytolist(G) -->bodytolist308,7809 -bodytolist(G) -->bodytolist308,7809 -listtobody([G], G) :- !.listtobody311,7834 -listtobody([G], G) :- !.listtobody311,7834 -listtobody([G], G) :- !.listtobody311,7834 -listtobody([G|GL], (G,Gs)) :-listtobody312,7859 -listtobody([G|GL], (G,Gs)) :-listtobody312,7859 -listtobody([G|GL], (G,Gs)) :-listtobody312,7859 -reorder_builtins(Head, BLF, BLF2) :-reorder_builtins315,7911 -reorder_builtins(Head, BLF, BLF2) :-reorder_builtins315,7911 -reorder_builtins(Head, BLF, BLF2) :-reorder_builtins315,7911 -reorder_term([], _, [], []).reorder_term326,8155 -reorder_term([], _, [], []).reorder_term326,8155 -reorder_term(G.Gs, Vs0, Queue, NGs) :-reorder_term327,8184 -reorder_term(G.Gs, Vs0, Queue, NGs) :-reorder_term327,8184 -reorder_term(G.Gs, Vs0, Queue, NGs) :-reorder_term327,8184 -reorder_term(G.Gs, Vs0, Queue, G.NGs) :-reorder_term332,8369 -reorder_term(G.Gs, Vs0, Queue, G.NGs) :-reorder_term332,8369 -reorder_term(G.Gs, Vs0, Queue, G.NGs) :-reorder_term332,8369 -continue_reorder_term(Gs, G, InpVs, Vs0, Queue, Os, G.NGs) :-continue_reorder_term339,8586 -continue_reorder_term(Gs, G, InpVs, Vs0, Queue, Os, G.NGs) :-continue_reorder_term339,8586 -continue_reorder_term(Gs, G, InpVs, Vs0, Queue, Os, G.NGs) :-continue_reorder_term339,8586 -continue_reorder_term(Gs, G, InpVs, Vs0, Queue, Os, NGs) :-continue_reorder_term346,8860 -continue_reorder_term(Gs, G, InpVs, Vs0, Queue, Os, NGs) :-continue_reorder_term346,8860 -continue_reorder_term(Gs, G, InpVs, Vs0, Queue, Os, NGs) :-continue_reorder_term346,8860 -wake_queue([], _, Vs, _, [], Vs) --> [].wake_queue351,9028 -wake_queue([], _, Vs, _, [], Vs) --> [].wake_queue351,9028 -wake_queue([], _, Vs, _, [], Vs) --> [].wake_queue351,9028 -wake_queue(Q.Queue, _, Vs, Vs0, Q.Queue, Vs) --> { Vs == Vs0 }, !.wake_queue352,9069 -wake_queue(Q.Queue, _, Vs, Vs0, Q.Queue, Vs) --> { Vs == Vs0 }, !.wake_queue352,9069 -wake_queue(Q.Queue, _, Vs, Vs0, Q.Queue, Vs) --> { Vs == Vs0 }, !.wake_queue352,9069 -wake_queue(q(InpVs,OutVs,G).Queue, NewQueue, Vs, Vs0, Queue, FVs) -->wake_queue353,9136 -wake_queue(q(InpVs,OutVs,G).Queue, NewQueue, Vs, Vs0, Queue, FVs) -->wake_queue353,9136 -wake_queue(q(InpVs,OutVs,G).Queue, NewQueue, Vs, Vs0, Queue, FVs) -->wake_queue353,9136 -wake_queue(q(InpVs,OutVs,G).Queue, NewQueue, Vs, Vs0, Queue, FVs) -->wake_queue353,9136 -wake_queue(q(InpVs,OutVs,G).Queue, NewQueue, Vs, Vs0, Queue, FVs) -->wake_queue353,9136 -wake_queue(Q.Queue, NewQueue, NVs, Vs0, Q.NQueue, FVs) -->wake_queue359,9365 -wake_queue(Q.Queue, NewQueue, NVs, Vs0, Q.NQueue, FVs) -->wake_queue359,9365 -wake_queue(Q.Queue, NewQueue, NVs, Vs0, Q.NQueue, FVs) -->wake_queue359,9365 -meld_builtin(O is I, I, O).meld_builtin363,9479 -meld_builtin(O is I, I, O).meld_builtin363,9479 -meld_builtin(I1 =< I2, I1-I2, []).meld_builtin364,9507 -meld_builtin(I1 =< I2, I1-I2, []).meld_builtin364,9507 -meld_builtin(I1 >= I2, I1-I2, []).meld_builtin365,9542 -meld_builtin(I1 >= I2, I1-I2, []).meld_builtin365,9542 -meld_builtin(I1 =:= I2, I1-I2, []).meld_builtin366,9577 -meld_builtin(I1 =:= I2, I1-I2, []).meld_builtin366,9577 -arithmetic( A+B, (+), A, B).arithmetic368,9614 -arithmetic( A+B, (+), A, B).arithmetic368,9614 -arithmetic( A-B, (-), A, B).arithmetic369,9643 -arithmetic( A-B, (-), A, B).arithmetic369,9643 -arithmetic( A*B, (*), A, B).arithmetic370,9672 -arithmetic( A*B, (*), A, B).arithmetic370,9672 -arithmetic( A/B, (/), A, B).arithmetic371,9701 -arithmetic( A/B, (/), A, B).arithmetic371,9701 -arithmetic( sin(A), sin, A).arithmetic373,9731 -arithmetic( sin(A), sin, A).arithmetic373,9731 -arithmetic( cos(A), cos, A).arithmetic374,9760 -arithmetic( cos(A), cos, A).arithmetic374,9760 -arithmetic( tan(A), tan, A).arithmetic375,9789 -arithmetic( tan(A), tan, A).arithmetic375,9789 - -packages/meld/meldi.yap,4351 -:- dynamic speculative_delete/3.dynamic36,346 -:- dynamic speculative_delete/3.dynamic36,346 -live :-live38,380 -done :-done49,487 -done :-done53,552 -delete(Fact) :-delete64,699 -delete(Fact) :-delete64,699 -delete(Fact) :-delete64,699 -pop(Goal) :-pop78,981 -pop(Goal) :-pop78,981 -pop(Goal) :-pop78,981 -push(Goal) :-push82,1058 -push(Goal) :-push82,1058 -push(Goal) :-push82,1058 -push(Goal) :-push87,1149 -push(Goal) :-push87,1149 -push(Goal) :-push87,1149 -init_meld_queue :-init_meld_queue97,1365 -first(Skel,Goal) :-first101,1434 -first(Skel,Goal) :-first101,1434 -first(Skel,Goal) :-first101,1434 -first(_,Goal) :-first104,1491 -first(_,Goal) :-first104,1491 -first(_,Goal) :-first104,1491 -max(Skel,Arg,Goal) :-max108,1536 -max(Skel,Arg,Goal) :-max108,1536 -max(Skel,Arg,Goal) :-max108,1536 -max(Skel,_,Goal) :-max115,1663 -max(Skel,_,Goal) :-max115,1663 -max(Skel,_,Goal) :-max115,1663 -min(Skel,Arg,Goal) :-min120,1725 -min(Skel,Arg,Goal) :-min120,1725 -min(Skel,Arg,Goal) :-min120,1725 -min(Skel,_,Goal) :-min127,1852 -min(Skel,_,Goal) :-min127,1852 -min(Skel,_,Goal) :-min127,1852 -sum(Skel,Arg,Goal) :-sum132,1914 -sum(Skel,Arg,Goal) :-sum132,1914 -sum(Skel,Arg,Goal) :-sum132,1914 -sum(_Skel,_Arg,Goal) :-sum143,2133 -sum(_Skel,_Arg,Goal) :-sum143,2133 -sum(_Skel,_Arg,Goal) :-sum143,2133 -clean(Skel) :-clean148,2199 -clean(Skel) :-clean148,2199 -clean(Skel) :-clean148,2199 -cache(Goal) :-cache152,2273 -cache(Goal) :-cache152,2273 -cache(Goal) :-cache152,2273 -cache(Goal) :-cache156,2356 -cache(Goal) :-cache156,2356 -cache(Goal) :-cache156,2356 -deleted(Goal) :-deleted160,2399 -deleted(Goal) :-deleted160,2399 -deleted(Goal) :-deleted160,2399 -deleted(Goal) :-deleted166,2536 -deleted(Goal) :-deleted166,2536 -deleted(Goal) :-deleted166,2536 -deleted(Goal) :-deleted176,2725 -deleted(Goal) :-deleted176,2725 -deleted(Goal) :-deleted176,2725 -complete_delete(Goal) :-complete_delete180,2793 -complete_delete(Goal) :-complete_delete180,2793 -complete_delete(Goal) :-complete_delete180,2793 -force_delete(Goal, Ref) :-force_delete185,2923 -force_delete(Goal, Ref) :-force_delete185,2923 -force_delete(Goal, Ref) :-force_delete185,2923 -push_residuals :-push_residuals189,3036 -delete_from_first(_,Goal) :-delete_from_first199,3161 -delete_from_first(_,Goal) :-delete_from_first199,3161 -delete_from_first(_,Goal) :-delete_from_first199,3161 -delete_from_first(Goal) :-delete_from_first214,3445 -delete_from_first(Goal) :-delete_from_first214,3445 -delete_from_first(Goal) :-delete_from_first214,3445 -delete_from_first(Goal) :-delete_from_first224,3644 -delete_from_first(Goal) :-delete_from_first224,3644 -delete_from_first(Goal) :-delete_from_first224,3644 -delete_from_max(VGoal,Arg,Goal) :-delete_from_max229,3722 -delete_from_max(VGoal,Arg,Goal) :-delete_from_max229,3722 -delete_from_max(VGoal,Arg,Goal) :-delete_from_max229,3722 -delete_from_max(Goal) :-delete_from_max242,3967 -delete_from_max(Goal) :-delete_from_max242,3967 -delete_from_max(Goal) :-delete_from_max242,3967 -delete_from_max(Goal) :-delete_from_max252,4164 -delete_from_max(Goal) :-delete_from_max252,4164 -delete_from_max(Goal) :-delete_from_max252,4164 -delete_from_sum(Skel,Arg,Goal) :-delete_from_sum256,4239 -delete_from_sum(Skel,Arg,Goal) :-delete_from_sum256,4239 -delete_from_sum(Skel,Arg,Goal) :-delete_from_sum256,4239 -new_max(VGoal,Arg) :-new_max267,4441 -new_max(VGoal,Arg) :-new_max267,4441 -new_max(VGoal,Arg) :-new_max267,4441 -delete_from_min(VGoal,Arg,Goal) :-delete_from_min272,4536 -delete_from_min(VGoal,Arg,Goal) :-delete_from_min272,4536 -delete_from_min(VGoal,Arg,Goal) :-delete_from_min272,4536 -delete_from_min(Goal) :- !,delete_from_min285,4778 -delete_from_min(Goal) :- !,delete_from_min285,4778 -delete_from_min(Goal) :- !,delete_from_min285,4778 -delete_from_min(Goal) :-delete_from_min295,4975 -delete_from_min(Goal) :-delete_from_min295,4975 -delete_from_min(Goal) :-delete_from_min295,4975 -new_min(VGoal,Arg) :-new_min299,5050 -new_min(VGoal,Arg) :-new_min299,5050 -new_min(VGoal,Arg) :-new_min299,5050 -maxval(V,G,GMax) :-maxval306,5194 -maxval(V,G,GMax) :-maxval306,5194 -maxval(V,G,GMax) :-maxval306,5194 -minval(V,G,GMin) :-minval319,5382 -minval(V,G,GMin) :-minval319,5382 -minval(V,G,GMin) :-minval319,5382 - -packages/meld/meldp.yap,296 -:- dynamic root/1, neighbor/2, temperature/2.dynamic17,124 -:- dynamic root/1, neighbor/2, temperature/2.dynamic17,124 -trace(A,B) :- !,trace19,171 -trace(A,B) :- !,trace19,171 -trace(A,B) :- !,trace19,171 -run([]) :- fail.run24,216 -run([]) :- fail.run24,216 -run([]) :- fail.run24,216 - -packages/meld/meldtd.yap,2143 -:- dynamic extensional/3, translate/2.dynamic16,164 -:- dynamic extensional/3, translate/2.dynamic16,164 -meld_top_down_aggregate(S0, horn, _) :-meld_top_down_aggregate18,204 -meld_top_down_aggregate(S0, horn, _) :-meld_top_down_aggregate18,204 -meld_top_down_aggregate(S0, horn, _) :-meld_top_down_aggregate18,204 -meld_top_down_aggregate(S0, max, Arg) :-meld_top_down_aggregate21,281 -meld_top_down_aggregate(S0, max, Arg) :-meld_top_down_aggregate21,281 -meld_top_down_aggregate(S0, max, Arg) :-meld_top_down_aggregate21,281 -meld_top_down_aggregate(S0, min, Arg) :-meld_top_down_aggregate33,631 -meld_top_down_aggregate(S0, min, Arg) :-meld_top_down_aggregate33,631 -meld_top_down_aggregate(S0, min, Arg) :-meld_top_down_aggregate33,631 -meld_top_down_aggregate(S0, first, _) :-meld_top_down_aggregate45,982 -meld_top_down_aggregate(S0, first, _) :-meld_top_down_aggregate45,982 -meld_top_down_aggregate(S0, first, _) :-meld_top_down_aggregate45,982 -meld_top_down_compile(Head, Body) :-meld_top_down_compile55,1232 -meld_top_down_compile(Head, Body) :-meld_top_down_compile55,1232 -meld_top_down_compile(Head, Body) :-meld_top_down_compile55,1232 -compile_body((G1,G2), (NG1, NG2)) :- !,compile_body60,1365 -compile_body((G1,G2), (NG1, NG2)) :- !,compile_body60,1365 -compile_body((G1,G2), (NG1, NG2)) :- !,compile_body60,1365 -compile_body((forall G then B), (forall NG then NB)) :- !,compile_body63,1453 -compile_body((forall G then B), (forall NG then NB)) :- !,compile_body63,1453 -compile_body((forall G then B), (forall NG then NB)) :- !,compile_body63,1453 -compile_body(G, meld_program:G) :-compile_body66,1556 -compile_body(G, meld_program:G) :-compile_body66,1556 -compile_body(G, meld_program:G) :-compile_body66,1556 -compile_body(G, G).compile_body68,1615 -compile_body(G, G).compile_body68,1615 -compile_aggregate(Head, NewHead) :-compile_aggregate71,1637 -compile_aggregate(Head, NewHead) :-compile_aggregate71,1637 -compile_aggregate(Head, NewHead) :-compile_aggregate71,1637 -compile_aggregate(Head, Head).compile_aggregate75,1747 -compile_aggregate(Head, Head).compile_aggregate75,1747 - -packages/meld/README,317 -Nodes, Michael P. Ashley-Rollman, Peter Lee, Seth Copen Goldstein,Nodes5,130 -Nodes, Michael P. Ashley-Rollman, Peter Lee, Seth Copen Goldstein,Lee5,130 -Nodes, Michael P. Ashley-Rollman, Peter Lee, Seth Copen Goldstein,Goldstein5,130 -Padmanabhan Pillai, and Jason D. Campbell. In Proceedings of thePillai6,197 - -packages/myddas/#example#,0 - -packages/myddas/example,0 - -packages/myddas/examples/postgre.sql,3572 -CREATE TABLE person (person14,745 - id BIGSERIAL NOT NULL PRIMARY KEY,person.id15,767 - first_name VARCHAR(50) NOT NULL,person.first_name16,806 - last_name VARCHAR(50) NOT NULLperson.last_name17,843 - CREATE INDEX IDX_person_1 ON person(last_name);person.IDX_person_119,882 -CREATE TABLE login (login21,935 - id BIGSERIAL NOT NULL PRIMARY KEY,login.id22,956 - person_id BIGSERIAL NOT NULL references person(id) UNIQUE,login.person_id23,995 - username VARCHAR(20) NOT NULL UNIQUE,login.username24,1058 - password VARCHAR(20),login.password25,1100 - is_enabled INTEGER NOT NULLlogin.is_enabled26,1126 -CREATE TABLE project_status_type (project_status_type29,1163 - id BIGSERIAL NOT NULL PRIMARY KEY,project_status_type.id30,1198 - name VARCHAR(50) NOT NULL UNIQUE,project_status_type.name31,1237 - description TEXT,project_status_type.description32,1275 - guidelines TEXTproject_status_type.guidelines33,1297 -CREATE TABLE project (project36,1322 - id BIGSERIAL NOT NULL PRIMARY KEY,project.id37,1345 - project_status_type_id INTEGER NOT NULL REFERENCES project_status_type(id),project.project_status_type_id38,1384 - manager_person_id INTEGER references person(id),project.manager_person_id39,1464 - name VARCHAR(100) NOT NULL,project.name40,1517 - description TEXT,project.description41,1549 - start_date DATE,project.start_date42,1571 - end_date DATE,project.end_date43,1592 - budget DECIMAL,project.budget44,1611 - spent DECIMALproject.spent45,1631 - CREATE INDEX IDX_project_1 ON project (project_status_type_id);project.IDX_project_147,1653 - CREATE INDEX IDX_project_2 ON project(manager_person_id);project.IDX_project_248,1720 -CREATE TABLE team_member_project_assn (team_member_project_assn50,1782 - person_id INTEGER NOT NULL references person(id),team_member_project_assn.person_id51,1822 - project_id INTEGER NOT NULL references project(id)team_member_project_assn.project_id52,1876 - CREATE INDEX IDX_teammemberprojectassn_2 on team_member_project_assn (project_id);team_member_project_assn.IDX_teammemberprojectassn_254,1935 -CREATE TABLE person_with_lock (person_with_lock56,2022 - id BIGSERIAL NOT NULL PRIMARY KEY,person_with_lock.id57,2054 - first_name VARCHAR(50) NOT NULL,person_with_lock.first_name58,2093 - last_name VARCHAR(50) NOT NULL,person_with_lock.last_name59,2130 - sys_timestamp TIMESTAMPperson_with_lock.sys_timestamp60,2166 -CREATE TABLE related_project_assn (related_project_assn63,2199 - project_id INTEGER NOT NULL references project(id),related_project_assn.project_id64,2235 - child_project_id INTEGER NOT NULL references project(id)related_project_assn.child_project_id65,2289 - CREATE INDEX IDX_relatedprojectassn_2 ON related_project_assn(child_project_id);related_project_assn.IDX_relatedprojectassn_267,2352 -CREATE TABLE milestone (milestone69,2437 - id BIGSERIAL NOT NULL PRIMARY KEY,milestone.id70,2462 - project_id INTEGER NOT NULL references project(id),milestone.project_id71,2499 - name VARCHAR(50) NOT NULLmilestone.name72,2553 - CREATE INDEX IDX_milestoneproj_1 ON milestone(project_id);milestone.IDX_milestoneproj_174,2585 -CREATE TABLE address (address76,2648 - id BIGSERIAL NOT NULL PRIMARY KEY,address.id77,2671 - person_id INTEGER references person(id),address.person_id78,2710 - street VARCHAR(100) NOT NULL,address.street79,2755 - city VARCHAR(100)address.city80,2789 - CREATE INDEX IDX_address_1 ON address (person_id);address.IDX_address_182,2815 - -packages/myddas/examples/postgres.yap,0 - -packages/myddas/examples/postgres_init.sql,3572 -CREATE TABLE person (person14,745 - id BIGSERIAL NOT NULL PRIMARY KEY,person.id15,767 - first_name VARCHAR(50) NOT NULL,person.first_name16,806 - last_name VARCHAR(50) NOT NULLperson.last_name17,843 - CREATE INDEX IDX_person_1 ON person(last_name);person.IDX_person_119,882 -CREATE TABLE login (login21,935 - id BIGSERIAL NOT NULL PRIMARY KEY,login.id22,956 - person_id BIGSERIAL NOT NULL references person(id) UNIQUE,login.person_id23,995 - username VARCHAR(20) NOT NULL UNIQUE,login.username24,1058 - password VARCHAR(20),login.password25,1100 - is_enabled INTEGER NOT NULLlogin.is_enabled26,1126 -CREATE TABLE project_status_type (project_status_type29,1163 - id BIGSERIAL NOT NULL PRIMARY KEY,project_status_type.id30,1198 - name VARCHAR(50) NOT NULL UNIQUE,project_status_type.name31,1237 - description TEXT,project_status_type.description32,1275 - guidelines TEXTproject_status_type.guidelines33,1297 -CREATE TABLE project (project36,1322 - id BIGSERIAL NOT NULL PRIMARY KEY,project.id37,1345 - project_status_type_id INTEGER NOT NULL REFERENCES project_status_type(id),project.project_status_type_id38,1384 - manager_person_id INTEGER references person(id),project.manager_person_id39,1464 - name VARCHAR(100) NOT NULL,project.name40,1517 - description TEXT,project.description41,1549 - start_date DATE,project.start_date42,1571 - end_date DATE,project.end_date43,1592 - budget DECIMAL,project.budget44,1611 - spent DECIMALproject.spent45,1631 - CREATE INDEX IDX_project_1 ON project (project_status_type_id);project.IDX_project_147,1653 - CREATE INDEX IDX_project_2 ON project(manager_person_id);project.IDX_project_248,1720 -CREATE TABLE team_member_project_assn (team_member_project_assn50,1782 - person_id INTEGER NOT NULL references person(id),team_member_project_assn.person_id51,1822 - project_id INTEGER NOT NULL references project(id)team_member_project_assn.project_id52,1876 - CREATE INDEX IDX_teammemberprojectassn_2 on team_member_project_assn (project_id);team_member_project_assn.IDX_teammemberprojectassn_254,1935 -CREATE TABLE person_with_lock (person_with_lock56,2022 - id BIGSERIAL NOT NULL PRIMARY KEY,person_with_lock.id57,2054 - first_name VARCHAR(50) NOT NULL,person_with_lock.first_name58,2093 - last_name VARCHAR(50) NOT NULL,person_with_lock.last_name59,2130 - sys_timestamp TIMESTAMPperson_with_lock.sys_timestamp60,2166 -CREATE TABLE related_project_assn (related_project_assn63,2199 - project_id INTEGER NOT NULL references project(id),related_project_assn.project_id64,2235 - child_project_id INTEGER NOT NULL references project(id)related_project_assn.child_project_id65,2289 - CREATE INDEX IDX_relatedprojectassn_2 ON related_project_assn(child_project_id);related_project_assn.IDX_relatedprojectassn_267,2352 -CREATE TABLE milestone (milestone69,2437 - id BIGSERIAL NOT NULL PRIMARY KEY,milestone.id70,2462 - project_id INTEGER NOT NULL references project(id),milestone.project_id71,2499 - name VARCHAR(50) NOT NULLmilestone.name72,2553 - CREATE INDEX IDX_milestoneproj_1 ON milestone(project_id);milestone.IDX_milestoneproj_174,2585 -CREATE TABLE address (address76,2648 - id BIGSERIAL NOT NULL PRIMARY KEY,address.id77,2671 - person_id INTEGER references person(id),address.person_id78,2710 - street VARCHAR(100) NOT NULL,address.street79,2755 - city VARCHAR(100)address.city80,2789 - CREATE INDEX IDX_address_1 ON address (person_id);address.IDX_address_182,2815 - -packages/myddas/myddas.c,0 - -packages/myddas/myddas.h,672 -#define __MYDDAS_H____MYDDAS_H__2,21 -typedef struct myddas_global *MYDDAS_GLOBAL;MYDDAS_GLOBAL15,227 -typedef struct myddas_stats_time_struct *MYDDAS_STATS_TIME;MYDDAS_STATS_TIME19,318 -typedef struct myddas_global_stats *MYDDAS_GLOBAL_STATS;MYDDAS_GLOBAL_STATS20,378 -typedef struct myddas_stats_struct *MYDDAS_STATS_STRUCT;MYDDAS_STATS_STRUCT21,435 -typedef void *MYDDAS_STATS_TIME;MYDDAS_STATS_TIME23,498 -#define MYDDAS_MEMORY_MALLOC_NR(MYDDAS_MEMORY_MALLOC_NR27,552 -#define MYDDAS_MEMORY_MALLOC_SIZE(MYDDAS_MEMORY_MALLOC_SIZE29,654 -#define MYDDAS_MEMORY_FREE_NR(MYDDAS_MEMORY_FREE_NR31,759 -#define MYDDAS_MEMORY_FREE_SIZE(MYDDAS_MEMORY_FREE_SIZE33,859 - -packages/myddas/myddas_initialization.c,311 -myddas_init_initialize_myddas(void) {myddas_init_initialize_myddas14,197 -myddas_init_initialize_connection(void *conn, void *enviromment, MYDDAS_API api,myddas_init_initialize_connection55,1397 -myddas_init_initialize_predicate(const char *pred_name, int pred_arity,myddas_init_initialize_predicate90,2275 - -packages/myddas/myddas_shared.c,1731 -void Yap_InitMYDDAS_SharedPreds(void) {Yap_InitMYDDAS_SharedPreds50,1531 -void Yap_InitBackMYDDAS_SharedPreds(void) {Yap_InitBackMYDDAS_SharedPreds88,2790 -static bool myddas_initialised;myddas_initialised97,3223 -static Int c_db_initialize_myddas(USES_REGS1) {c_db_initialize_myddas100,3309 -static Int c_db_connection_type(USES_REGS1) {c_db_connection_type117,3846 -static Int c_db_add_preds(USES_REGS1) {c_db_add_preds142,4612 -static Int c_db_check_if_exists_pred(USES_REGS1) {c_db_check_if_exists_pred167,5321 -static Int c_db_delete_predicate(USES_REGS1) {c_db_delete_predicate182,5738 -static Int c_db_multi_queries_number(USES_REGS1) {c_db_multi_queries_number201,6232 -static Int c_db_connection_start(USES_REGS1) {c_db_connection_start224,6824 -static Int c_db_connection_continue(USES_REGS1) {c_db_connection_continue234,7078 -static Int c_db_preds_conn_start(USES_REGS1) {c_db_preds_conn_start253,7568 -static Int c_db_preds_conn_continue(USES_REGS1) {c_db_preds_conn_continue272,8097 -static Int c_db_check(USES_REGS1) {c_db_check304,8947 -static Int c_db_stats_walltime(USES_REGS1) {c_db_stats_walltime312,9054 -static Int c_db_stats_translate(USES_REGS1) {c_db_stats_translate328,9382 -static Int c_db_stats_time(USES_REGS1) {c_db_stats_time368,10487 -static Int c_db_stats(USES_REGS1) {c_db_stats458,13122 -void Yap_MYDDAS_delete_all_myddas_structs(void) {Yap_MYDDAS_delete_all_myddas_structs641,18736 -void init_myddas(void) {init_myddas680,19958 -#define stringify(stringify711,20711 -#define _stringify(_stringify712,20746 -#undef stringifystringify718,21026 -#undef _stringify_stringify719,21043 -int WINAPI win_myddas(HANDLE hinst, DWORD reason, LPVOID reserved) {win_myddas731,21257 - -packages/myddas/myddas_sqllight.c,1567 -#define CALL_SQLITE(CALL_SQLITE35,938 -#define CALL_SQLITE_EXPECT(CALL_SQLITE_EXPECT46,1524 -#define IS_SQL_INT(IS_SQL_INT57,2110 -#define IS_SQL_FLOAT(IS_SQL_FLOAT63,2374 -#define IS_SQL_GEOMETRY(IS_SQL_GEOMETRY67,2543 -static Int null_id = 0;null_id69,2604 -void Yap_InitMYDDAS_SQLitePreds(void)Yap_InitMYDDAS_SQLitePreds84,3220 -void Yap_InitBackMYDDAS_sqlite3Preds(void)Yap_InitBackMYDDAS_sqlite3Preds119,4533 -c_db_lite_connect( USES_REGS1 ) {c_db_lite_connect130,4766 -static int callback(void *data, int argc, char **argv, char **azColName){callback160,5357 -myddas_stat_init_query( sqlite3 *db )myddas_stat_init_query176,5733 -myddas_stat_end_query( MYDDAS_STATS_TIME start )myddas_stat_end_query196,6374 -myddas_stat_transfer_query( MYDDAS_STATS_TIME diff )myddas_stat_transfer_query227,7420 -c_db_lite_query( USES_REGS1 ) {c_db_lite_query303,10326 -c_db_lite_number_of_fields( USES_REGS1 ) {c_db_lite_number_of_fields363,11857 -c_db_lite_get_attributes_types( USES_REGS1 ) {c_db_lite_get_attributes_types389,12513 -c_db_lite_disconnect( USES_REGS1 ) {c_db_lite_disconnect452,13860 -c_db_lite_table_write( USES_REGS1 ) {c_db_lite_table_write471,14213 -c_db_lite_row_cut( USES_REGS1 ) {c_db_lite_row_cut483,14454 -c_db_lite_get_fields_properties( USES_REGS1 ) {c_db_lite_get_fields_properties493,14664 -c_db_lite_get_next_result_set( USES_REGS1 ) {c_db_lite_get_next_result_set551,16148 -c_db_lite_get_database( USES_REGS1 ) {c_db_lite_get_database566,16519 -c_db_lite_change_database( USES_REGS1 ) {c_db_lite_change_database580,16797 - -packages/myddas/myddas_statistics.c,1294 -myddas_stats_walltime(void) {myddas_stats_walltime68,2207 -myddas_stats_add_time(MYDDAS_STATS_TIME sum, MYDDAS_STATS_TIME time1,MYDDAS_STATS_TIME time2){myddas_stats_add_time88,2648 -myddas_stats_subtract_time(MYDDAS_STATS_TIME result, MYDDAS_STATS_TIME t1,MYDDAS_STATS_TIME t2){myddas_stats_subtract_time120,3586 -myddas_stats_move_time(MYDDAS_STATS_TIME from,myddas_stats_move_time138,3939 -myddas_stats_time_copy_to_final(MYDDAS_STATS_TIME t_copy){myddas_stats_time_copy_to_final159,4655 -myddas_stats_add_seconds_time(MYDDAS_STATS_TIME myddas_time,myddas_stats_add_seconds_time173,5006 -myddas_stats_time_subtract(unsigned long *sec,unsigned long *usec,myddas_stats_time_subtract195,5612 -myddas_stats_integrity_of_time(MYDDAS_STATS_TIME myddas_time){myddas_stats_integrity_of_time217,6507 -myddas_stats_initialize_global_stats(MYDDAS_GLOBAL global){myddas_stats_initialize_global_stats244,7302 -myddas_stats_initialize_connection_stats(){myddas_stats_initialize_connection_stats267,7815 -myddas_stats_initialize_stat(MYDDAS_STATS_STRUCT stat,int type){myddas_stats_initialize_stat301,9110 -myddas_stats_get_stat(MYDDAS_STATS_STRUCT stat,int index){myddas_stats_get_stat326,9754 -myddas_stats_delete_stats_list(MYDDAS_STATS_STRUCT list){myddas_stats_delete_stats_list337,9927 - -packages/myddas/myddas_statistics.h,4292 -#define __MYDDAS_STATISTICS_H____MYDDAS_STATISTICS_H__2,32 -#define MYDDAS_STATS_TIME_HOURS(MYDDAS_STATS_TIME_HOURS6,86 -#define MYDDAS_STATS_TIME_MINUTES(MYDDAS_STATS_TIME_MINUTES7,150 -#define MYDDAS_STATS_TIME_SECONDS(MYDDAS_STATS_TIME_SECONDS8,218 -#define MYDDAS_STATS_TIME_MILISECONDS(MYDDAS_STATS_TIME_MILISECONDS9,286 -#define MYDDAS_STATS_TIME_MICROSECONDS(MYDDAS_STATS_TIME_MICROSECONDS10,362 -#define MYDDAS_STATS_PRINT_TIME_STRUCT(MYDDAS_STATS_PRINT_TIME_STRUCT13,454 -#define MYDDAS_STATS_INITIALIZE_TIME_STRUCT(MYDDAS_STATS_INITIALIZE_TIME_STRUCT28,984 -#define MYDDAS_STATS_CON_GET_TOTAL_TIME_DBSERVER(MYDDAS_STATS_CON_GET_TOTAL_TIME_DBSERVER44,1544 -#define MYDDAS_STATS_CON_GET_TOTAL_TIME_DBSERVER_COUNT(MYDDAS_STATS_CON_GET_TOTAL_TIME_DBSERVER_COUNT46,1674 -#define MYDDAS_STATS_CON_SET_TOTAL_TIME_DBSERVER_COUNT(MYDDAS_STATS_CON_SET_TOTAL_TIME_DBSERVER_COUNT48,1798 -#define MYDDAS_STATS_CON_GET_LAST_TIME_DBSERVER(MYDDAS_STATS_CON_GET_LAST_TIME_DBSERVER51,1923 -#define MYDDAS_STATS_CON_GET_LAST_TIME_DBSERVER_COUNT(MYDDAS_STATS_CON_GET_LAST_TIME_DBSERVER_COUNT53,2052 -#define MYDDAS_STATS_CON_SET_LAST_TIME_DBSERVER_COUNT(MYDDAS_STATS_CON_SET_LAST_TIME_DBSERVER_COUNT55,2175 -#define MYDDAS_STATS_CON_GET_TOTAL_TIME_TRANSFERING(MYDDAS_STATS_CON_GET_TOTAL_TIME_TRANSFERING58,2299 -#define MYDDAS_STATS_CON_GET_TOTAL_TIME_TRANSFERING_COUNT(MYDDAS_STATS_CON_GET_TOTAL_TIME_TRANSFERING_COUNT60,2432 -#define MYDDAS_STATS_CON_SET_TOTAL_TIME_TRANSFERING_COUNT(MYDDAS_STATS_CON_SET_TOTAL_TIME_TRANSFERING_COUNT62,2559 -#define MYDDAS_STATS_CON_GET_LAST_TIME_TRANSFERING(MYDDAS_STATS_CON_GET_LAST_TIME_TRANSFERING65,2687 -#define MYDDAS_STATS_CON_GET_LAST_TIME_TRANSFERING_COUNT(MYDDAS_STATS_CON_GET_LAST_TIME_TRANSFERING_COUNT67,2819 -#define MYDDAS_STATS_CON_SET_LAST_TIME_TRANSFERING_COUNT(MYDDAS_STATS_CON_SET_LAST_TIME_TRANSFERING_COUNT69,2945 -#define MYDDAS_STATS_CON_GET_TOTAL_ROWS(MYDDAS_STATS_CON_GET_TOTAL_ROWS73,3073 -#define MYDDAS_STATS_CON_SET_TOTAL_ROWS(MYDDAS_STATS_CON_SET_TOTAL_ROWS75,3196 -#define MYDDAS_STATS_CON_GET_TOTAL_ROWS_COUNT(MYDDAS_STATS_CON_GET_TOTAL_ROWS_COUNT77,3319 -#define MYDDAS_STATS_CON_SET_TOTAL_ROWS_COUNT(MYDDAS_STATS_CON_SET_TOTAL_ROWS_COUNT79,3434 -#define MYDDAS_STATS_CON_GET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER(MYDDAS_STATS_CON_GET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER83,3551 -#define MYDDAS_STATS_CON_SET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER(MYDDAS_STATS_CON_SET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER85,3701 -#define MYDDAS_STATS_CON_GET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER_COUNT(MYDDAS_STATS_CON_GET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER_COUNT87,3851 -#define MYDDAS_STATS_CON_SET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER_COUNT(MYDDAS_STATS_CON_SET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER_COUNT89,3993 -#define MYDDAS_STATS_CON_GET_LAST_BYTES_TRANSFERING_FROM_DBSERVER(MYDDAS_STATS_CON_GET_LAST_BYTES_TRANSFERING_FROM_DBSERVER92,4136 -#define MYDDAS_STATS_CON_SET_LAST_BYTES_TRANSFERING_FROM_DBSERVER(MYDDAS_STATS_CON_SET_LAST_BYTES_TRANSFERING_FROM_DBSERVER94,4285 -#define MYDDAS_STATS_CON_GET_LAST_BYTES_TRANSFERING_FROM_DBSERVER_COUNT(MYDDAS_STATS_CON_GET_LAST_BYTES_TRANSFERING_FROM_DBSERVER_COUNT96,4434 -#define MYDDAS_STATS_CON_SET_LAST_BYTES_TRANSFERING_FROM_DBSERVER_COUNT(MYDDAS_STATS_CON_SET_LAST_BYTES_TRANSFERING_FROM_DBSERVER_COUNT98,4575 -#define MYDDAS_STATS_CON_GET_NUMBER_QUERIES_MADE(MYDDAS_STATS_CON_GET_NUMBER_QUERIES_MADE101,4717 -#define MYDDAS_STATS_CON_SET_NUMBER_QUERIES_MADE(MYDDAS_STATS_CON_SET_NUMBER_QUERIES_MADE103,4849 -#define MYDDAS_STATS_CON_GET_NUMBER_QUERIES_MADE_COUNT(MYDDAS_STATS_CON_GET_NUMBER_QUERIES_MADE_COUNT105,4981 -#define MYDDAS_STATS_CON_SET_NUMBER_QUERIES_MADE_COUNT(MYDDAS_STATS_CON_SET_NUMBER_QUERIES_MADE_COUNT107,5105 -#define MYDDAS_STATS_GET_DB_ROW_FUNCTION(MYDDAS_STATS_GET_DB_ROW_FUNCTION110,5230 -#define MYDDAS_STATS_GET_DB_ROW_FUNCTION_COUNT(MYDDAS_STATS_GET_DB_ROW_FUNCTION_COUNT112,5392 -#define MYDDAS_STATS_SET_DB_ROW_FUNCTION_COUNT(MYDDAS_STATS_SET_DB_ROW_FUNCTION_COUNT114,5548 -#define MYDDAS_STATS_GET_TRANSLATE(MYDDAS_STATS_GET_TRANSLATE117,5705 -#define MYDDAS_STATS_GET_TRANSLATE_COUNT(MYDDAS_STATS_GET_TRANSLATE_COUNT119,5861 -#define MYDDAS_STATS_SET_TRANSLATE_COUNT(MYDDAS_STATS_SET_TRANSLATE_COUNT121,6011 - -packages/myddas/myddas_statistics_structs.h,2901 -#define __MYDDAS_STATISTICS_STRUCTS_H____MYDDAS_STATISTICS_STRUCTS_H__2,40 -struct myddas_global_stats {myddas_global_stats7,152 - MYDDAS_STATS_STRUCT stats;stats8,181 - MYDDAS_STATS_STRUCT stats;myddas_global_stats::stats8,181 -struct myddas_stats_struct{myddas_stats_struct12,261 - enum {time_str,time_str13,289 - enum {time_str,myddas_stats_struct::time_str13,289 - integer} type;integer14,307 - integer} type;myddas_stats_struct::integer14,307 - integer} type;type14,307 - integer} type;myddas_stats_struct::type14,307 - MYDDAS_STATS_TIME time_str; time_str17,346 - MYDDAS_STATS_TIME time_str; myddas_stats_struct::__anon439::__anon440::time_str17,346 - } time_str;time_str18,381 - } time_str;myddas_stats_struct::__anon439::time_str18,381 - MyddasULInt integer;integer20,410 - MyddasULInt integer;myddas_stats_struct::__anon439::__anon441::integer20,410 - } integer;integer21,437 - } integer;myddas_stats_struct::__anon439::integer21,437 - } u;u22,452 - } u;myddas_stats_struct::u22,452 - MyddasULInt count;count23,459 - MyddasULInt count;myddas_stats_struct::count23,459 - MYDDAS_STATS_STRUCT nxt;nxt24,480 - MYDDAS_STATS_STRUCT nxt;myddas_stats_struct::nxt24,480 -struct myddas_stats_time_struct{myddas_stats_time_struct28,557 - enum {time_copy,time_copy29,590 - enum {time_copy,myddas_stats_time_struct::time_copy29,590 - time_final} type;time_final30,609 - time_final} type;myddas_stats_time_struct::time_final30,609 - time_final} type;type30,609 - time_final} type;myddas_stats_time_struct::type30,609 - unsigned long tv_sec;tv_sec34,654 - unsigned long tv_sec;myddas_stats_time_struct::__anon443::__anon444::tv_sec34,654 - unsigned long tv_usec;tv_usec35,682 - unsigned long tv_usec;myddas_stats_time_struct::__anon443::__anon444::tv_usec35,682 - } time_copy;time_copy36,711 - } time_copy;myddas_stats_time_struct::__anon443::time_copy36,711 - MyddasUSInt hours; hours38,741 - MyddasUSInt hours; myddas_stats_time_struct::__anon443::__anon445::hours38,741 - MyddasUSInt minutes; //Max 59minutes39,768 - MyddasUSInt minutes; //Max 59myddas_stats_time_struct::__anon443::__anon445::minutes39,768 - MyddasUSInt seconds; //Max 59seconds40,805 - MyddasUSInt seconds; //Max 59myddas_stats_time_struct::__anon443::__anon445::seconds40,805 - MyddasUSInt miliseconds; //Max 999miliseconds41,842 - MyddasUSInt miliseconds; //Max 999myddas_stats_time_struct::__anon443::__anon445::miliseconds41,842 - MyddasUSInt microseconds; //Max 999microseconds42,883 - MyddasUSInt microseconds; //Max 999myddas_stats_time_struct::__anon443::__anon445::microseconds42,883 - } time_final;time_final43,925 - } time_final;myddas_stats_time_struct::__anon443::time_final43,925 - } u;u44,943 - } u;myddas_stats_time_struct::u44,943 - -packages/myddas/myddas_structs.h,3723 -#define __MYDDAS_STRUCTS_H____MYDDAS_STRUCTS_H__2,29 -typedef struct myddas_util_query *MYDDAS_UTIL_QUERY;MYDDAS_UTIL_QUERY6,86 -typedef struct myddas_list_connection *MYDDAS_UTIL_CONNECTION;MYDDAS_UTIL_CONNECTION7,139 -typedef struct myddas_list_preds *MYDDAS_UTIL_PREDICATE;MYDDAS_UTIL_PREDICATE8,202 -struct myddas_global {myddas_global14,328 - MYDDAS_UTIL_CONNECTION myddas_top_connections;myddas_top_connections15,351 - MYDDAS_UTIL_CONNECTION myddas_top_connections;myddas_global::myddas_top_connections15,351 - MYDDAS_UTIL_CONNECTION myddas_top_level_connection;myddas_top_level_connection17,424 - MYDDAS_UTIL_CONNECTION myddas_top_level_connection;myddas_global::myddas_top_level_connection17,424 - MYDDAS_GLOBAL_STATS myddas_statistics;myddas_statistics20,505 - MYDDAS_GLOBAL_STATS myddas_statistics;myddas_global::myddas_statistics20,505 - MyddasULInt malloc_called;malloc_called24,605 - MyddasULInt malloc_called;myddas_global::malloc_called24,605 - MyddasULInt memory_allocated;memory_allocated26,669 - MyddasULInt memory_allocated;myddas_global::memory_allocated26,669 - MyddasULInt free_called;free_called29,741 - MyddasULInt free_called;myddas_global::free_called29,741 - MyddasULInt memory_freed;memory_freed31,799 - MyddasULInt memory_freed;myddas_global::memory_freed31,799 -struct myddas_list_preds {myddas_list_preds35,838 - const char *pred_module;pred_module36,865 - const char *pred_module;myddas_list_preds::pred_module36,865 - const char *pred_name;pred_name37,892 - const char *pred_name;myddas_list_preds::pred_name37,892 - short pred_arity;pred_arity38,917 - short pred_arity;myddas_list_preds::pred_arity38,917 - MYDDAS_UTIL_PREDICATE next;next40,951 - MYDDAS_UTIL_PREDICATE next;myddas_list_preds::next40,951 - MYDDAS_UTIL_PREDICATE previous;previous41,981 - MYDDAS_UTIL_PREDICATE previous;myddas_list_preds::previous41,981 -typedef enum myddas_api {myddas_api44,1019 - API_MYSQL = 0,API_MYSQL45,1045 - API_ODBC = 1,API_ODBC46,1062 - API_SQLITE3 = 2,API_SQLITE347,1078 - API_POSTGRES =3API_POSTGRES48,1097 -} MYDDAS_API;MYDDAS_API49,1115 -struct myddas_list_connection {myddas_list_connection51,1130 - void *connection;connection52,1162 - void *connection;myddas_list_connection::connection52,1162 - int tag;tag53,1182 - int tag;myddas_list_connection::tag53,1182 - MYDDAS_API api;api55,1194 - MYDDAS_API api;myddas_list_connection::api55,1194 - void *odbc_enviromment;odbc_enviromment59,1347 - void *odbc_enviromment;myddas_list_connection::odbc_enviromment59,1347 - MYDDAS_STATS_STRUCT stats;stats62,1394 - MYDDAS_STATS_STRUCT stats;myddas_list_connection::stats62,1394 - MYDDAS_UTIL_PREDICATE predicates;predicates64,1430 - MYDDAS_UTIL_PREDICATE predicates;myddas_list_connection::predicates64,1430 - unsigned long total_number_queries;total_number_queries67,1497 - unsigned long total_number_queries;myddas_list_connection::total_number_queries67,1497 - unsigned long actual_number_queries;actual_number_queries68,1535 - unsigned long actual_number_queries;myddas_list_connection::actual_number_queries68,1535 - MYDDAS_UTIL_QUERY *queries;queries69,1574 - MYDDAS_UTIL_QUERY *queries;myddas_list_connection::queries69,1574 - MYDDAS_UTIL_CONNECTION next;next72,1628 - MYDDAS_UTIL_CONNECTION next;myddas_list_connection::next72,1628 - MYDDAS_UTIL_CONNECTION previous;previous73,1659 - MYDDAS_UTIL_CONNECTION previous;myddas_list_connection::previous73,1659 -struct myddas_util_query{myddas_util_query76,1698 - char *query;query77,1724 - char *query;myddas_util_query::query77,1724 - MYDDAS_UTIL_QUERY next;next78,1739 - MYDDAS_UTIL_QUERY next;myddas_util_query::next78,1739 - -packages/myddas/myddas_top_level.c,883 -void Yap_InitMYDDAS_TopLevelPreds(void)Yap_InitMYDDAS_TopLevelPreds40,1028 - const char *name; /* User printable name of the function. */name49,1219 - const char *name; /* User printable name of the function. */__anon446::name49,1219 - char cmd_char; /* msql command character */cmd_char50,1283 - char cmd_char; /* msql command character */__anon446::cmd_char50,1283 - Int (*func)(char *str,char *); /* Function to call to do the job. */func51,1330 - Int (*func)(char *str,char *); /* Function to call to do the job. */__anon446::func51,1330 - const char *doc; /* Documentation for this function. */doc53,1458 - const char *doc; /* Documentation for this function. */__anon446::doc53,1458 -} COMMANDS;COMMANDS54,1518 -c_db_tl_readline(void) {c_db_tl_readline58,1543 -myddas_top_level_print_time(MYDDAS_STATS_TIME time){myddas_top_level_print_time80,1961 - -packages/myddas/myddas_types.h,2589 -#define MYDDAS_TYPES_H MYDDAS_TYPES_H3,24 -/* */ typedef int MyddasInt;MyddasInt13,275 -/* */ typedef unsigned int MyddasUInt;MyddasUInt14,306 -/* */ typedef unsigned int MyddasPointer;MyddasPointer15,347 -/* */ typedef int MyddasInt32;MyddasInt3216,391 -/* */ typedef unsigned int MyddasUInt32;MyddasUInt3217,424 -/* */ typedef long int MyddasInt;MyddasInt19,494 -/* */ typedef unsigned long int MyddasUInt;MyddasUInt20,530 -/* */ typedef unsigned long int MyddasPointer;MyddasPointer21,576 -/* */ typedef long int MyddasInt32;MyddasInt3222,625 -/* */ typedef unsigned long int MyddasUInt32;MyddasUInt3223,663 -/* */ typedef short int MyddasSInt;MyddasSInt29,822 -/* */ typedef unsigned short int MyddasUSInt;MyddasUSInt30,860 -/* */ typedef long int MyddasLInt;MyddasLInt36,1016 -/* */ typedef unsigned long int MyddasULInt;MyddasULInt37,1053 -/* */ typedef long long int MyddasLInt;MyddasLInt39,1132 -/* */ typedef unsigned long long int MyddasULInt;MyddasULInt40,1174 -/* */ typedef int MyddasInt;MyddasInt48,1354 -/* */ typedef unsigned int MyddasUInt;MyddasUInt49,1385 -/* */ typedef int MyddasLInt;MyddasLInt50,1426 -/* */ typedef unsigned int MyddasULInt;MyddasULInt51,1458 -/* */ typedef unsigned int MyddasPointer;MyddasPointer52,1500 -/* */ typedef long int MyddasInt;MyddasInt54,1571 -/* */ typedef unsigned long int MyddasUInt;MyddasUInt55,1607 -/* */ typedef int MyddasLInt;MyddasLInt56,1653 -/* */ typedef unsigned int MyddasULInt;MyddasULInt57,1685 -/* */ typedef unsigned long int MyddasPointer;MyddasPointer58,1727 -/* */ typedef long long int MyddasInt;MyddasInt60,1808 -/* */ typedef unsigned long long int MyddasUInt;MyddasUInt61,1849 -/* */ typedef int MyddasLInt;MyddasLInt62,1900 -/* */ typedef unsigned int MyddasULInt;MyddasULInt63,1932 -/* */ typedef unsigned long long int MyddasPointer;MyddasPointer64,1974 -/* */ typedef short int MyddasSInt;MyddasSInt70,2141 -/* */ typedef unsigned short int MyddasUSInt;MyddasUSInt71,2179 -/* */ typedef short int MyddasInt32;MyddasInt3272,2227 -/* */ typedef unsigned short int MyddasUInt32;MyddasUInt3273,2266 -/* */ typedef int MyddasSInt;MyddasSInt75,2338 -/* */ typedef unsigned int MyddasUSInt;MyddasUSInt76,2370 -/* */ typedef int MyddasInt32;MyddasInt3277,2412 -/* */ typedef unsigned int MyddasUInt32;MyddasUInt3278,2445 -#define MYDDAS_MALLOC(MYDDAS_MALLOC89,2699 -#define MYDDAS_MALLOC(MYDDAS_MALLOC97,3118 -#define MYDDAS_FREE(MYDDAS_FREE104,3397 -#define MYDDAS_FREE(MYDDAS_FREE112,3816 - -packages/myddas/myddas_util.c,1863 -int myddas_util_connection_type(void *con) {myddas_util_connection_type10,151 -myddas_util_search_predicate(const char *pred_name, Int pred_arity,myddas_util_search_predicate25,456 -myddas_util_add_predicate(const char *pred_name, Int pred_arity,myddas_util_add_predicate43,1052 -void myddas_util_delete_predicate(MYDDAS_UTIL_PREDICATE to_delete) {myddas_util_delete_predicate61,1600 -void myddas_util_delete_connection(void *conn) {myddas_util_delete_connection79,2223 -myddas_util_search_connection(void *conn) {myddas_util_search_connection110,3143 -myddas_util_add_connection(void *conn, void *enviromment, MYDDAS_API api) {myddas_util_add_connection128,3532 -UInt myddas_util_get_total_multi_queries_number(MYDDAS_UTIL_CONNECTION con) {myddas_util_get_total_multi_queries_number151,4291 -void myddas_util_set_total_multi_queries_number(MYDDAS_UTIL_CONNECTION con,myddas_util_set_total_multi_queries_number155,4408 -static void n_print(Int n, char c) {n_print162,4657 -void myddas_util_error_message(char *message, Int line, char *file) {myddas_util_error_message168,4746 -myddas_util_find_predicate(const char *pred_name, Int pred_arity,myddas_util_find_predicate177,4974 -void myddas_util_delete_predicate_list(MYDDAS_UTIL_PREDICATE preds_list) {myddas_util_delete_predicate_list189,5360 -MyddasInt get_myddas_top(void) {get_myddas_top203,5701 -void *myddas_util_get_pred_next(void *pointer) {myddas_util_get_pred_next210,5880 -MyddasInt myddas_util_get_pred_arity(void *pointer) {myddas_util_get_pred_arity215,6026 -const char *myddas_util_get_pred_name(void *pointer) {myddas_util_get_pred_name220,6173 -const char *myddas_util_get_pred_module(void *pointer) {myddas_util_get_pred_module225,6320 -void *myddas_util_get_list_pred(MYDDAS_UTIL_CONNECTION node) {myddas_util_get_list_pred230,6471 -void check_int(void) {check_int235,6587 - -packages/myddas/myddas_util.h,0 - -packages/myddas/myddas_util_connection.c,0 - -packages/myddas/MyddasProto.h,0 - -packages/myddas/mysql/myddas_mysql.c,1425 -#define IS_SQL_INT(IS_SQL_INT34,906 -#define IS_SQL_FLOAT(IS_SQL_FLOAT40,1170 -#define IS_SQL_GEOMETRY(IS_SQL_GEOMETRY44,1339 -static Int null_id = 0;null_id46,1400 -void Yap_InitMYDDAS_MySQLPreds(void)Yap_InitMYDDAS_MySQLPreds61,1992 -void Yap_InitBackMYDDAS_MySQLPreds(void)Yap_InitBackMYDDAS_MySQLPreds96,3268 -c_db_my_connect( USES_REGS1 ) {c_db_my_connect107,3491 -c_db_my_query( USES_REGS1 ) {c_db_my_query166,4985 -c_db_my_number_of_fields( USES_REGS1 ) {c_db_my_number_of_fields340,10560 -c_db_my_get_attributes_types( USES_REGS1 ) {c_db_my_get_attributes_types384,11586 -c_db_my_disconnect( USES_REGS1 ) {c_db_my_disconnect445,13205 -c_db_my_table_write( USES_REGS1 ) {c_db_my_table_write464,13562 -c_db_my_row_cut( USES_REGS1 ) {c_db_my_row_cut476,13795 -c_db_my_row( USES_REGS1 ) {c_db_my_row486,14049 -c_db_my_get_fields_properties( USES_REGS1 ) {c_db_my_get_fields_properties601,17016 -c_db_my_get_next_result_set( USES_REGS1 ) {c_db_my_get_next_result_set683,19042 -c_db_my_get_database( USES_REGS1 ) {c_db_my_get_database698,19411 -c_db_my_change_database( USES_REGS1 ) {c_db_my_change_database712,19683 -void Yap_InitMYDDAS_MySQLPreds(void)Yap_InitMYDDAS_MySQLPreds730,20067 -void Yap_InitBackMYDDAS_MySQLPreds(void)Yap_InitBackMYDDAS_MySQLPreds734,20109 -void init_mysql( void )init_mysql740,20163 -int WINAPI win_mysql(HANDLE hinst, DWORD reason, LPVOID reserved) {win_mysql753,20368 - -packages/myddas/mysql/myddas_util.c,134 -static void n_print(Int n, char c) {n_print30,850 -void myddas_util_table_write(MYSQL_RES *res_set) {myddas_util_table_write35,932 - -packages/myddas/mysql/myddas_wkb.h,606 -#define MYDDAS_WKB_H_MYDDAS_WKB_H_2,22 -typedef char byte;byte4,45 -typedef unsigned int uint32;uint326,65 -#define WKBXDR WKBXDR8,95 -#define WKBNDR WKBNDR9,112 -#define WKBMINTYPE WKBMINTYPE11,130 -#define WKBPOINT WKBPOINT13,152 -#define WKBLINESTRING WKBLINESTRING14,171 -#define WKBPOLYGON WKBPOLYGON15,195 -#define WKBMULTIPOINT WKBMULTIPOINT16,216 -#define WKBMULTILINESTRING WKBMULTILINESTRING17,240 -#define WKBMULTIPOLYGON WKBMULTIPOLYGON18,269 -#define WKBGEOMETRYCOLLECTION WKBGEOMETRYCOLLECTION19,295 -#define WKBMAXTYPE WKBMAXTYPE21,328 -#define WKBGEOMETRY WKBGEOMETRY23,350 - -packages/myddas/mysql/myddas_wkb2prolog.c,772 -static int swaporder;swaporder21,511 -static byte inbyteorder, hostbyteorder;inbyteorder22,533 -static byte inbyteorder, hostbyteorder;hostbyteorder22,533 -static byte *cursor;cursor23,573 -Term wkb2prolog(char *wkb) {wkb2prolog25,595 -static byte get_hostbyteorder(void){get_hostbyteorder46,926 -static byte get_inbyteorder(void){get_inbyteorder57,1093 -static uint32 get_wkbType(void){get_wkbType70,1284 -static void readswap4(uint32 *buf){readswap484,1491 -static void readswap8(double *buf) {readswap8110,2074 -static Term get_point(char *func USES_REGS){get_point153,3174 -static Term get_linestring(char *func){get_linestring175,3606 -static Term get_polygon(char *func){get_polygon207,4205 -static Term get_geometry(uint32 type){get_geometry239,4795 - -packages/myddas/mysql/myddas_wkb2prolog.h,59 -# define MYDDAS_WKB2PROLOG_H_MYDDAS_WKB2PROLOG_H_2,32 - -packages/myddas/odbc/myddas_odbc.c,2967 -typedef void *SQLHDBC;SQLHDBC21,651 -static Int null_id = 0;null_id38,971 -static int odbc_error(SQLSMALLINT type, SQLHANDLE hdbc, char *msg,odbc_error50,1426 -static int SQLALLOCHANDLE(SQLSMALLINT HandleType, SQLHANDLE hdbc,SQLALLOCHANDLE64,1887 -static int SQLSETENVATTR(SQLHENV henv, SQLINTEGER att, SQLPOINTER p,SQLSETENVATTR75,2256 -static int SQLCONNECT(SQLHDBC hdbc, SQLCHAR *driver, SQLCHAR *user,SQLCONNECT86,2608 -static int SQLEXECDIRECT(SQLHSTMT StatementHandle, SQLCHAR *StatementText,SQLEXECDIRECT96,2985 -static int SQLDESCRIBECOL(SQLHSTMT sth, SQLSMALLINT colno, SQLCHAR *colname,SQLDESCRIBECOL106,3355 -static int SQLSETCONNECTATTR(SQLHDBC hdbc, SQLINTEGER attr, SQLPOINTER vptr,SQLSETCONNECTATTR120,3992 -static int SQLBINDCOL(SQLHSTMT sthandle, SQLUSMALLINT colno, SQLSMALLINT tt,SQLBINDCOL130,4365 -static int SQLNUMRESULTCOLS(SQLHSTMT sthandle, SQLSMALLINT *ncols,SQLNUMRESULTCOLS141,4787 -static int SQLCLOSECURSOR(SQLHSTMT sthandle, char *print) {SQLCLOSECURSOR151,5127 -#define SQLFETCH(SQLFETCH160,5406 -static int SQLGETDATA(SQLHSTMT sthandle, SQLUSMALLINT Col_or_Param_Num,SQLGETDATA172,6221 -static int SQLDISCONNECT(SQLHSTMT sthandle, char *print) {SQLDISCONNECT185,6784 -static int SQLFREEHANDLE(SQLSMALLINT HandleType, SQLHANDLE Handle,SQLFREEHANDLE194,7059 -static int SQLPRIMARYKEYS(SQLHSTMT StatementHandle, SQLCHAR *CatalogName,SQLPRIMARYKEYS204,7386 -static int SQLCOLATTRIBUTE(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber,SQLCOLATTRIBUTE234,8531 -#define IS_SQL_INT(IS_SQL_INT252,9358 -#define IS_SQL_FLOAT(IS_SQL_FLOAT256,9595 -static Int c_db_odbc_connect(USES_REGS1) {c_db_odbc_connect259,9742 -static Int c_db_odbc_query(USES_REGS1) {c_db_odbc_query306,11319 -static Int c_db_odbc_number_of_fields(USES_REGS1) {c_db_odbc_number_of_fields384,13566 -static Int c_db_odbc_get_attributes_types(USES_REGS1) {c_db_odbc_get_attributes_types425,14774 -static Int c_db_odbc_disconnect(USES_REGS1) {c_db_odbc_disconnect488,16983 -static Int c_db_odbc_row_cut(USES_REGS1) {c_db_odbc_row_cut510,17623 -static int release_list_args(Term arg_list_args, Term arg_bind_list,release_list_args522,17901 -static Int c_db_odbc_row(USES_REGS1) {c_db_odbc_row540,18431 -static Int c_db_odbc_number_of_fields_in_query(USES_REGS1) {c_db_odbc_number_of_fields_in_query614,20663 -myddas_util_get_odbc_enviromment(SQLHDBC connection) {myddas_util_get_odbc_enviromment656,21968 -static Int c_db_odbc_get_fields_properties(USES_REGS1) {c_db_odbc_get_fields_properties669,22280 -void Yap_InitMYDDAS_ODBCPreds(void) {Yap_InitMYDDAS_ODBCPreds772,25515 -void Yap_InitBackMYDDAS_ODBCPreds(void) {Yap_InitBackMYDDAS_ODBCPreds798,26585 -void Yap_InitMYDDAS_ODBCPreds(void) {}Yap_InitMYDDAS_ODBCPreds806,26809 -void Yap_InitBackMYDDAS_ODBCPreds(void) {}Yap_InitBackMYDDAS_ODBCPreds807,26848 -void init_odbc( void )init_odbc811,26900 -int WINAPI win_odbc(HANDLE hinst, DWORD reason, LPVOID reserved) {win_odbc824,27101 - -packages/myddas/pl/myddas.ypp,7419 -db_open(Protocol) :- true.db_open365,8120 -db_open(Protocol) :- true.db_open365,8120 -db_open(Protocol) :- true.db_open365,8120 -db_open(Interface,HostDb,User,Password):-db_open375,8234 -db_open(Interface,HostDb,User,Password):-db_open375,8234 -db_open(Interface,HostDb,User,Password):-db_open375,8234 -db_open(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open379,8346 -db_open(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open379,8346 -db_open(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open379,8346 -db_open(mysql,Connection,Host/Db/Port,User,Password) :-db_open383,8576 -db_open(mysql,Connection,Host/Db/Port,User,Password) :-db_open383,8576 -db_open(mysql,Connection,Host/Db/Port,User,Password) :-db_open383,8576 -db_open(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_open386,8746 -db_open(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_open386,8746 -db_open(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_open386,8746 -db_open(mysql,Connection,Host/Db,User,Password) :-db_open388,8886 -db_open(mysql,Connection,Host/Db,User,Password) :-db_open388,8886 -db_open(mysql,Connection,Host/Db,User,Password) :-db_open388,8886 -db_open(postgres,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open393,9082 -db_open(postgres,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open393,9082 -db_open(postgres,Connection,Host/Db/Port/Socket,User,Password) :- !,db_open393,9082 -db_open(postgres,Connection,Host/Db/Port,User,Password) :-db_open397,9318 -db_open(postgres,Connection,Host/Db/Port,User,Password) :-db_open397,9318 -db_open(postgres,Connection,Host/Db/Port,User,Password) :-db_open397,9318 -db_open(postgres,Connection,Host/Db/Socket,User,Password) :- !,db_open400,9494 -db_open(postgres,Connection,Host/Db/Socket,User,Password) :- !,db_open400,9494 -db_open(postgres,Connection,Host/Db/Socket,User,Password) :- !,db_open400,9494 -db_open(postgres,Connection,Host/Db,User,Password) :-db_open402,9640 -db_open(postgres,Connection,Host/Db,User,Password) :-db_open402,9640 -db_open(postgres,Connection,Host/Db,User,Password) :-db_open402,9640 -db_open(odbc,Connection,ODBCEntry,User,Password) :-db_open407,9838 -db_open(odbc,Connection,ODBCEntry,User,Password) :-db_open407,9838 -db_open(odbc,Connection,ODBCEntry,User,Password) :-db_open407,9838 -db_open(sqlite3,Connection,File,User,Password) :-db_open413,10061 -db_open(sqlite3,Connection,File,User,Password) :-db_open413,10061 -db_open(sqlite3,Connection,File,User,Password) :-db_open413,10061 -db_close:-db_close427,10408 -db_close(Protocol):-db_close429,10438 -db_close(Protocol):-db_close429,10438 -db_close(Protocol):-db_close429,10438 -db_close(Protocol) :-db_close433,10545 -db_close(Protocol) :-db_close433,10545 -db_close(Protocol) :-db_close433,10545 -db_verbose(X):-db_verbose455,11036 -db_verbose(X):-db_verbose455,11036 -db_verbose(X):-db_verbose455,11036 -db_verbose(N):-!,db_verbose458,11089 -db_verbose(N):-!,db_verbose458,11089 -db_verbose(N):-!,db_verbose458,11089 -db_module(X):-db_module470,11364 -db_module(X):-db_module470,11364 -db_module(X):-db_module470,11364 -db_module(ModuleName):-db_module473,11415 -db_module(ModuleName):-db_module473,11415 -db_module(ModuleName):-db_module473,11415 -db_is_database_predicate(Module,PredName,Arity):-db_is_database_predicate484,11667 -db_is_database_predicate(Module,PredName,Arity):-db_is_database_predicate484,11667 -db_is_database_predicate(Module,PredName,Arity):-db_is_database_predicate484,11667 -db_stats(List):-db_stats494,11990 -db_stats(List):-db_stats494,11990 -db_stats(List):-db_stats494,11990 -db_stats(Protocol,List):-db_stats497,12032 -db_stats(Protocol,List):-db_stats497,12032 -db_stats(Protocol,List):-db_stats497,12032 -db_stats_time(Reference,Time):-db_stats_time514,12446 -db_stats_time(Reference,Time):-db_stats_time514,12446 -db_stats_time(Reference,Time):-db_stats_time514,12446 -db_sql_select(Protocol,SQL,LA):-db_sql_select530,12764 -db_sql_select(Protocol,SQL,LA):-db_sql_select530,12764 -db_sql_select(Protocol,SQL,LA):-db_sql_select530,12764 -db_sql(SQL,LA):-db_sql533,12824 -db_sql(SQL,LA):-db_sql533,12824 -db_sql(SQL,LA):-db_sql533,12824 -db_sql(Connection,SQL,LA):-db_sql535,12865 -db_sql(Connection,SQL,LA):-db_sql535,12865 -db_sql(Connection,SQL,LA):-db_sql535,12865 -db_prolog_select(LA,DbGoal):-db_prolog_select567,13752 -db_prolog_select(LA,DbGoal):-db_prolog_select567,13752 -db_prolog_select(LA,DbGoal):-db_prolog_select567,13752 -db_prolog_select(Connection,LA,DbGoal):-db_prolog_select569,13819 -db_prolog_select(Connection,LA,DbGoal):-db_prolog_select569,13819 -db_prolog_select(Connection,LA,DbGoal):-db_prolog_select569,13819 -db_prolog_select_multi(Connection,DbGoalsList,ListOfResults) :-db_prolog_select_multi609,14907 -db_prolog_select_multi(Connection,DbGoalsList,ListOfResults) :-db_prolog_select_multi609,14907 -db_prolog_select_multi(Connection,DbGoalsList,ListOfResults) :-db_prolog_select_multi609,14907 -db_command(Connection,SQL):-db_command643,15797 -db_command(Connection,SQL):-db_command643,15797 -db_command(Connection,SQL):-db_command643,15797 -db_assert(PredName):-db_assert661,16205 -db_assert(PredName):-db_assert661,16205 -db_assert(PredName):-db_assert661,16205 -db_assert(Connection,PredName):-db_assert664,16257 -db_assert(Connection,PredName):-db_assert664,16257 -db_assert(Connection,PredName):-db_assert664,16257 -db_create_table(Connection,TableName,FieldsInf):-db_create_table693,17196 -db_create_table(Connection,TableName,FieldsInf):-db_create_table693,17196 -db_create_table(Connection,TableName,FieldsInf):-db_create_table693,17196 -db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf):-db_export_view721,18029 -db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf):-db_export_view721,18029 -db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf):-db_export_view721,18029 -db_update(Connection,WherePred-SetPred):-db_update752,19117 -db_update(Connection,WherePred-SetPred):-db_update752,19117 -db_update(Connection,WherePred-SetPred):-db_update752,19117 -db_get_attributes_types(RelationName,TypesList) :-db_get_attributes_types797,20356 -db_get_attributes_types(RelationName,TypesList) :-db_get_attributes_types797,20356 -db_get_attributes_types(RelationName,TypesList) :-db_get_attributes_types797,20356 -db_get_attributes_types(Connection,RelationName,TypesList) :-db_get_attributes_types799,20464 -db_get_attributes_types(Connection,RelationName,TypesList) :-db_get_attributes_types799,20464 -db_get_attributes_types(Connection,RelationName,TypesList) :-db_get_attributes_types799,20464 -db_number_of_fields(RelationName,Arity) :-db_number_of_fields831,21391 -db_number_of_fields(RelationName,Arity) :-db_number_of_fields831,21391 -db_number_of_fields(RelationName,Arity) :-db_number_of_fields831,21391 -db_number_of_fields(Connection,RelationName,Arity) :-db_number_of_fields833,21483 -db_number_of_fields(Connection,RelationName,Arity) :-db_number_of_fields833,21483 -db_number_of_fields(Connection,RelationName,Arity) :-db_number_of_fields833,21483 -db_multi_queries_number(Connection,Number) :-db_multi_queries_number853,22130 -db_multi_queries_number(Connection,Number) :-db_multi_queries_number853,22130 -db_multi_queries_number(Connection,Number) :-db_multi_queries_number853,22130 - -packages/myddas/pl/myddas_assert_predicates.ypp,3369 -db_import(RelationName,PredName):-db_import91,2459 -db_import(RelationName,PredName):-db_import91,2459 -db_import(RelationName,PredName):-db_import91,2459 -db_import(Connection,RelationName,PredName0) :-db_import93,2536 -db_import(Connection,RelationName,PredName0) :-db_import93,2536 -db_import(Connection,RelationName,PredName0) :-db_import93,2536 -db_view(PredName,DbGoal) :-db_view129,3620 -db_view(PredName,DbGoal) :-db_view129,3620 -db_view(PredName,DbGoal) :-db_view129,3620 -db_view(Connection,PredName,DbGoal) :-db_view131,3682 -db_view(Connection,PredName,DbGoal) :-db_view131,3682 -db_view(Connection,PredName,DbGoal) :-db_view131,3682 -db_insert(RelationName,PredName) :-db_insert162,4489 -db_insert(RelationName,PredName) :-db_insert162,4489 -db_insert(RelationName,PredName) :-db_insert162,4489 -db_insert(Connection,RelationName,PredName) :-db_insert164,4567 -db_insert(Connection,RelationName,PredName) :-db_insert164,4567 -db_insert(Connection,RelationName,PredName) :-db_insert164,4567 -db_abolish(Module:PredName,Arity):-!,db_abolish197,5513 -db_abolish(Module:PredName,Arity):-!,db_abolish197,5513 -db_abolish(Module:PredName,Arity):-!,db_abolish197,5513 -db_abolish(PredName,Arity):-db_abolish201,5684 -db_abolish(PredName,Arity):-db_abolish201,5684 -db_abolish(PredName,Arity):-db_abolish201,5684 -db_abolish(Module:PredName,Arity):-!,db_abolish213,5985 -db_abolish(Module:PredName,Arity):-!,db_abolish213,5985 -db_abolish(Module:PredName,Arity):-!,db_abolish213,5985 -db_abolish(PredName,Arity):-db_abolish217,6156 -db_abolish(PredName,Arity):-db_abolish217,6156 -db_abolish(PredName,Arity):-db_abolish217,6156 -db_listing:-db_listing229,6453 -db_listing(Module:Name/Arity):-!,db_listing242,6700 -db_listing(Module:Name/Arity):-!,db_listing242,6700 -db_listing(Module:Name/Arity):-!,db_listing242,6700 -db_listing(Name/Arity):-!,db_listing246,6827 -db_listing(Name/Arity):-!,db_listing246,6827 -db_listing(Name/Arity):-!,db_listing246,6827 -db_listing(Name):-db_listing250,6947 -db_listing(Name):-db_listing250,6947 -db_listing(Name):-db_listing250,6947 -table_arity( Con, ConType, RelationName, Arity ) :-table_arity259,7218 -table_arity( Con, ConType, RelationName, Arity ) :-table_arity259,7218 -table_arity( Con, ConType, RelationName, Arity ) :-table_arity259,7218 -table_attributes( mysql, Con, RelationName, TypesList ) :-table_attributes276,7696 -table_attributes( mysql, Con, RelationName, TypesList ) :-table_attributes276,7696 -table_attributes( mysql, Con, RelationName, TypesList ) :-table_attributes276,7696 -table_attributes( postgres, Con, RelationName, TypesList ) :-table_attributes279,7815 -table_attributes( postgres, Con, RelationName, TypesList ) :-table_attributes279,7815 -table_attributes( postgres, Con, RelationName, TypesList ) :-table_attributes279,7815 -table_attributes( odbc, Con, RelationName, TypesList ) :-table_attributes282,7947 -table_attributes( odbc, Con, RelationName, TypesList ) :-table_attributes282,7947 -table_attributes( odbc, Con, RelationName, TypesList ) :-table_attributes282,7947 -table_attributes( sqlite3, Con, RelationName, TypesList ) :-table_attributes285,8064 -table_attributes( sqlite3, Con, RelationName, TypesList ) :-table_attributes285,8064 -table_attributes( sqlite3, Con, RelationName, TypesList ) :-table_attributes285,8064 - -packages/myddas/pl/myddas_driver.ypp,0 - -packages/myddas/pl/myddas_errors.ypp,8583 -'$error_checks'(db_abolish(ModulePredName,Arity)):-!,$error_checks28,809 -'$error_checks'(db_abolish(ModulePredName,Arity)):-!,$error_checks28,809 -'$error_checks'(db_abolish(ModulePredName,Arity)):-!,$error_checks28,809 -'$error_checks'(db_show_databases(Connection)):- !,$error_checks36,989 -'$error_checks'(db_show_databases(Connection)):- !,$error_checks36,989 -'$error_checks'(db_show_databases(Connection)):- !,$error_checks36,989 -'$error_checks'(db_show_database(Connection,_)):- !,$error_checks38,1060 -'$error_checks'(db_show_database(Connection,_)):- !,$error_checks38,1060 -'$error_checks'(db_show_database(Connection,_)):- !,$error_checks38,1060 -'$error_checks'(db_my_sql_mode(Connection,_)):- !,$error_checks40,1132 -'$error_checks'(db_my_sql_mode(Connection,_)):- !,$error_checks40,1132 -'$error_checks'(db_my_sql_mode(Connection,_)):- !,$error_checks40,1132 -'$error_checks'(db_change_database(Connection,Database)):- !,$error_checks42,1202 -'$error_checks'(db_change_database(Connection,Database)):- !,$error_checks42,1202 -'$error_checks'(db_change_database(Connection,Database)):- !,$error_checks42,1202 -'$error_checks'(db_prolog_select_multi(Connection,DbGoalsList,_)):- !,$error_checks45,1300 -'$error_checks'(db_prolog_select_multi(Connection,DbGoalsList,_)):- !,$error_checks45,1300 -'$error_checks'(db_prolog_select_multi(Connection,DbGoalsList,_)):- !,$error_checks45,1300 -'$error_checks'(db_multi_queries_number(Connection,Number)):-!,$error_checks48,1413 -'$error_checks'(db_multi_queries_number(Connection,Number)):-!,$error_checks48,1413 -'$error_checks'(db_multi_queries_number(Connection,Number)):-!,$error_checks48,1413 -'$error_checks'(db_command(Connection,SQL)):-!,$error_checks56,1575 -'$error_checks'(db_command(Connection,SQL)):-!,$error_checks56,1575 -'$error_checks'(db_command(Connection,SQL)):-!,$error_checks56,1575 -'$error_checks'(db_stats(_,List)):-!,$error_checks60,1690 -'$error_checks'(db_stats(_,List)):-!,$error_checks60,1690 -'$error_checks'(db_stats(_,List)):-!,$error_checks60,1690 -'$error_checks'(db_stats_time(Reference,Time)):-!,$error_checks62,1740 -'$error_checks'(db_stats_time(Reference,Time)):-!,$error_checks62,1740 -'$error_checks'(db_stats_time(Reference,Time)):-!,$error_checks62,1740 -'$error_checks'(db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf)):-!,$error_checks66,1830 -'$error_checks'(db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf)):-!,$error_checks66,1830 -'$error_checks'(db_export_view(Connection,TableViewName,SQLorDbGoal,FieldsInf)):-!,$error_checks66,1830 -'$error_checks'(db_create_table(Connection,TableName,FieldsInf)):-!,$error_checks71,2076 -'$error_checks'(db_create_table(Connection,TableName,FieldsInf)):-!,$error_checks71,2076 -'$error_checks'(db_create_table(Connection,TableName,FieldsInf)):-!,$error_checks71,2076 -'$error_checks'(db_insert3(Connection,RelationName,PredName)):-!,$error_checks75,2209 -'$error_checks'(db_insert3(Connection,RelationName,PredName)):-!,$error_checks75,2209 -'$error_checks'(db_insert3(Connection,RelationName,PredName)):-!,$error_checks75,2209 -'$error_checks'(db_insert2(Connection,_,[query(Att,[rel(Relation,_)],_)])) :- !,$error_checks79,2339 -'$error_checks'(db_insert2(Connection,_,[query(Att,[rel(Relation,_)],_)])) :- !,$error_checks79,2339 -'$error_checks'(db_insert2(Connection,_,[query(Att,[rel(Relation,_)],_)])) :- !,$error_checks79,2339 -'$error_checks'(db_open(mysql,Connection,Host/Db/Port/_,User,Password)) :- !,$error_checks103,3218 -'$error_checks'(db_open(mysql,Connection,Host/Db/Port/_,User,Password)) :- !,$error_checks103,3218 -'$error_checks'(db_open(mysql,Connection,Host/Db/Port/_,User,Password)) :- !,$error_checks103,3218 -'$error_checks'(db_open(odbc,Connection,ODBCEntry,User,Password)) :- !,$error_checks111,3477 -'$error_checks'(db_open(odbc,Connection,ODBCEntry,User,Password)) :- !,$error_checks111,3477 -'$error_checks'(db_open(odbc,Connection,ODBCEntry,User,Password)) :- !,$error_checks111,3477 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User,_Password)) :- !,$error_checks117,3711 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User,_Password)) :- !,$error_checks117,3711 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User,_Password)) :- !,$error_checks117,3711 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User)) :- !,$error_checks120,3882 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User)) :- !,$error_checks120,3882 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_,_User)) :- !,$error_checks120,3882 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_)) :- !,$error_checks123,4043 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_)) :- !,$error_checks123,4043 -'$error_checks'(db_open(postgres,Connection,_Host/_Db/_Port/_)) :- !,$error_checks123,4043 -'$error_checks'(db_open(postgres,Connection)) :- !,$error_checks126,4198 -'$error_checks'(db_open(postgres,Connection)) :- !,$error_checks126,4198 -'$error_checks'(db_open(postgres,Connection)) :- !,$error_checks126,4198 -'$error_checks'(db_open(sqlite3,Connection,File,_User,_Password)) :- !,$error_checks129,4335 -'$error_checks'(db_open(sqlite3,Connection,File,_User,_Password)) :- !,$error_checks129,4335 -'$error_checks'(db_open(sqlite3,Connection,File,_User,_Password)) :- !,$error_checks129,4335 -'$error_checks'(db_view(Connection,Pred,DbGoal)) :- !,$error_checks133,4530 -'$error_checks'(db_view(Connection,Pred,DbGoal)) :- !,$error_checks133,4530 -'$error_checks'(db_view(Connection,Pred,DbGoal)) :- !,$error_checks133,4530 -'$error_checks'(db_import(Connection,RelationName,PredName0)) :- !,$error_checks141,4749 -'$error_checks'(db_import(Connection,RelationName,PredName0)) :- !,$error_checks141,4749 -'$error_checks'(db_import(Connection,RelationName,PredName0)) :- !,$error_checks141,4749 -'$error_checks'(db_get_attributes_types(Connection,RelationName,_)) :- !,$error_checks147,4947 -'$error_checks'(db_get_attributes_types(Connection,RelationName,_)) :- !,$error_checks147,4947 -'$error_checks'(db_get_attributes_types(Connection,RelationName,_)) :- !,$error_checks147,4947 -'$error_checks'(db_call_procedure(_,Procedure,Args,LA)) :- !,$error_checks150,5070 -'$error_checks'(db_call_procedure(_,Procedure,Args,LA)) :- !,$error_checks150,5070 -'$error_checks'(db_call_procedure(_,Procedure,Args,LA)) :- !,$error_checks150,5070 -'$error_checks'(db_sql(Connection,SQL,LA)):- !,$error_checks154,5184 -'$error_checks'(db_sql(Connection,SQL,LA)):- !,$error_checks154,5184 -'$error_checks'(db_sql(Connection,SQL,LA)):- !,$error_checks154,5184 -'$error_checks'(db_number_of_fields(Connection,RelationName,_)) :- !,$error_checks158,5296 -'$error_checks'(db_number_of_fields(Connection,RelationName,_)) :- !,$error_checks158,5296 -'$error_checks'(db_number_of_fields(Connection,RelationName,_)) :- !,$error_checks158,5296 -'$error_checks'(db_close(Connection)) :- !,$error_checks161,5415 -'$error_checks'(db_close(Connection)) :- !,$error_checks161,5415 -'$error_checks'(db_close(Connection)) :- !,$error_checks161,5415 -'$error_checks'(db_datalog_describe(Relation,_)) :- !,$error_checks164,5515 -'$error_checks'(db_datalog_describe(Relation,_)) :- !,$error_checks164,5515 -'$error_checks'(db_datalog_describe(Relation,_)) :- !,$error_checks164,5515 -'$error_checks'(db_describe(Connection,Relation,_)) :- !,$error_checks166,5589 -'$error_checks'(db_describe(Connection,Relation,_)) :- !,$error_checks166,5589 -'$error_checks'(db_describe(Connection,Relation,_)) :- !,$error_checks166,5589 -'$error_checks'(db_my_show_tables(_)):- !.$error_checks169,5685 -'$error_checks'(db_my_show_tables(_)):- !.$error_checks169,5685 -'$error_checks'(db_my_show_tables(_)):- !.$error_checks169,5685 -'$error_checks'(db_is_database_predicate(PredName,Arity,Module)):-!,$error_checks170,5728 -'$error_checks'(db_is_database_predicate(PredName,Arity,Module)):-!,$error_checks170,5728 -'$error_checks'(db_is_database_predicate(PredName,Arity,Module)):-!,$error_checks170,5728 -'$error_checks'(get_value(Connection,Con)) :- !,$error_checks175,5911 -'$error_checks'(get_value(Connection,Con)) :- !,$error_checks175,5911 -'$error_checks'(get_value(Connection,Con)) :- !,$error_checks175,5911 -'$error_checks'(get_value(Conn,Connection)) :- !,$error_checks184,6179 -'$error_checks'(get_value(Conn,Connection)) :- !,$error_checks184,6179 -'$error_checks'(get_value(Conn,Connection)) :- !,$error_checks184,6179 - -packages/myddas/pl/myddas_mysql.ypp,4017 -db_my_result_set(X):-db_my_result_set70,1662 -db_my_result_set(X):-db_my_result_set70,1662 -db_my_result_set(X):-db_my_result_set70,1662 -db_my_result_set(use_result):-db_my_result_set73,1727 -db_my_result_set(use_result):-db_my_result_set73,1727 -db_my_result_set(use_result):-db_my_result_set73,1727 -db_my_result_set(store_result):- db_my_result_set75,1799 -db_my_result_set(store_result):- db_my_result_set75,1799 -db_my_result_set(store_result):- db_my_result_set75,1799 -db_datalog_describe(Relation):-db_datalog_describe87,2054 -db_datalog_describe(Relation):-db_datalog_describe87,2054 -db_datalog_describe(Relation):-db_datalog_describe87,2054 -db_datalog_describe(Connection,Relation) :-db_datalog_describe89,2125 -db_datalog_describe(Connection,Relation) :-db_datalog_describe89,2125 -db_datalog_describe(Connection,Relation) :-db_datalog_describe89,2125 -db_describe(Relation,TableInfo) :-db_describe105,2606 -db_describe(Relation,TableInfo) :-db_describe105,2606 -db_describe(Relation,TableInfo) :-db_describe105,2606 -db_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-db_describe107,2682 -db_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-db_describe107,2682 -db_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-db_describe107,2682 -db_datalog_show_tables:-db_datalog_show_tables123,3152 -db_datalog_show_tables(Connection) :-db_datalog_show_tables125,3210 -db_datalog_show_tables(Connection) :-db_datalog_show_tables125,3210 -db_datalog_show_tables(Connection) :-db_datalog_show_tables125,3210 -db_show_tables(Table) :-db_show_tables141,3683 -db_show_tables(Table) :-db_show_tables141,3683 -db_show_tables(Table) :-db_show_tables141,3683 -db_show_tables(Connection,table(Table)) :-db_show_tables143,3739 -db_show_tables(Connection,table(Table)) :-db_show_tables143,3739 -db_show_tables(Connection,table(Table)) :-db_show_tables143,3739 -db_show_database(Connection,Database) :-db_show_database157,4141 -db_show_database(Connection,Database) :-db_show_database157,4141 -db_show_database(Connection,Database) :-db_show_database157,4141 -db_show_databases(Connection,database(Databases)) :-db_show_databases168,4438 -db_show_databases(Connection,database(Databases)) :-db_show_databases168,4438 -db_show_databases(Connection,database(Databases)) :-db_show_databases168,4438 -db_show_databases(Connection) :-db_show_databases183,4889 -db_show_databases(Connection) :-db_show_databases183,4889 -db_show_databases(Connection) :-db_show_databases183,4889 -db_change_database(Connection,Database) :-db_change_database197,5288 -db_change_database(Connection,Database) :-db_change_database197,5288 -db_change_database(Connection,Database) :-db_change_database197,5288 -db_call_procedure(Procedure,Args,Result) :-db_call_procedure212,5800 -db_call_procedure(Procedure,Args,Result) :-db_call_procedure212,5800 -db_call_procedure(Procedure,Args,Result) :-db_call_procedure212,5800 -db_call_procedure(Connection,Procedure,Args,LA) :-db_call_procedure214,5894 -db_call_procedure(Connection,Procedure,Args,LA) :-db_call_procedure214,5894 -db_call_procedure(Connection,Procedure,Args,LA) :-db_call_procedure214,5894 -db_sql_mode(SQLMode):-db_sql_mode226,6343 -db_sql_mode(SQLMode):-db_sql_mode226,6343 -db_sql_mode(SQLMode):-db_sql_mode226,6343 -db_sql_mode(Connection,SQLMode):-db_sql_mode228,6392 -db_sql_mode(Connection,SQLMode):-db_sql_mode228,6392 -db_sql_mode(Connection,SQLMode):-db_sql_mode228,6392 -db_my_sql_mode(SQLMode):-db_my_sql_mode231,6464 -db_my_sql_mode(SQLMode):-db_my_sql_mode231,6464 -db_my_sql_mode(SQLMode):-db_my_sql_mode231,6464 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode233,6523 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode233,6523 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode233,6523 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode239,6780 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode239,6780 -db_my_sql_mode(Connection,SQLMode):-db_my_sql_mode239,6780 - -packages/myddas/pl/myddas_odbc.ypp,3640 -sqlite3_result_set(X):-sqlite3_result_set73,2005 -sqlite3_result_set(X):-sqlite3_result_set73,2005 -sqlite3_result_set(X):-sqlite3_result_set73,2005 -sqlite3_result_set(use_result):-sqlite3_result_set76,2074 -sqlite3_result_set(use_result):-sqlite3_result_set76,2074 -sqlite3_result_set(use_result):-sqlite3_result_set76,2074 -sqlite3_result_set(store_result):- sqlite3_result_set78,2150 -sqlite3_result_set(store_result):- sqlite3_result_set78,2150 -sqlite3_result_set(store_result):- sqlite3_result_set78,2150 -sqlite3_datalog_describe(Relation):-sqlite3_datalog_describe90,2411 -sqlite3_datalog_describe(Relation):-sqlite3_datalog_describe90,2411 -sqlite3_datalog_describe(Relation):-sqlite3_datalog_describe90,2411 -sqlite3_datalog_describe(Connection,Relation) :-sqlite3_datalog_describe92,2492 -sqlite3_datalog_describe(Connection,Relation) :-sqlite3_datalog_describe92,2492 -sqlite3_datalog_describe(Connection,Relation) :-sqlite3_datalog_describe92,2492 -sqlite3_describe(Relation,TableInfo) :-sqlite3_describe108,2999 -sqlite3_describe(Relation,TableInfo) :-sqlite3_describe108,2999 -sqlite3_describe(Relation,TableInfo) :-sqlite3_describe108,2999 -sqlite3_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-sqlite3_describe110,3085 -sqlite3_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-sqlite3_describe110,3085 -sqlite3_describe(Connection,Relation,tableinfo(A1,A2,A3,A4,A5,A6)) :-sqlite3_describe110,3085 -sqlite3_datalog_show_tables:-sqlite3_datalog_show_tables127,3578 -sqlite3_datalog_show_tables(Connection) :-sqlite3_datalog_show_tables129,3646 -sqlite3_datalog_show_tables(Connection) :-sqlite3_datalog_show_tables129,3646 -sqlite3_datalog_show_tables(Connection) :-sqlite3_datalog_show_tables129,3646 -sqlite3_show_tables(Table) :-sqlite3_show_tables145,4134 -sqlite3_show_tables(Table) :-sqlite3_show_tables145,4134 -sqlite3_show_tables(Table) :-sqlite3_show_tables145,4134 -sqlite3_show_tables(Connection,table(Table)) :-sqlite3_show_tables147,4200 -sqlite3_show_tables(Connection,table(Table)) :-sqlite3_show_tables147,4200 -sqlite3_show_tables(Connection,table(Table)) :-sqlite3_show_tables147,4200 -sqlite3_show_database(Connection,Database) :-sqlite3_show_database161,4612 -sqlite3_show_database(Connection,Database) :-sqlite3_show_database161,4612 -sqlite3_show_database(Connection,Database) :-sqlite3_show_database161,4612 -sqlite3_show_databases(Connection,database(Databases)) :-sqlite3_show_databases172,4926 -sqlite3_show_databases(Connection,database(Databases)) :-sqlite3_show_databases172,4926 -sqlite3_show_databases(Connection,database(Databases)) :-sqlite3_show_databases172,4926 -sqlite3_show_databases(Connection) :-sqlite3_show_databases187,5398 -sqlite3_show_databases(Connection) :-sqlite3_show_databases187,5398 -sqlite3_show_databases(Connection) :-sqlite3_show_databases187,5398 -sqlite3_change_database(Connection,Database) :-sqlite3_change_database201,5815 -sqlite3_change_database(Connection,Database) :-sqlite3_change_database201,5815 -sqlite3_change_database(Connection,Database) :-sqlite3_change_database201,5815 -sqlite3_call_procedure(Procedure,Args,Result) :-sqlite3_call_procedure216,6354 -sqlite3_call_procedure(Procedure,Args,Result) :-sqlite3_call_procedure216,6354 -sqlite3_call_procedure(Procedure,Args,Result) :-sqlite3_call_procedure216,6354 -sqlite3_call_procedure(Connection,Procedure,Args,LA) :-sqlite3_call_procedure218,6458 -sqlite3_call_procedure(Connection,Procedure,Args,LA) :-sqlite3_call_procedure218,6458 -sqlite3_call_procedure(Connection,Procedure,Args,LA) :-sqlite3_call_procedure218,6458 - -packages/myddas/pl/myddas_prolog2sql.ypp,36956 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate65,2184 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate65,2184 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate65,2184 -translate_(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate_71,2390 -translate_(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate_71,2390 -translate_(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate_71,2390 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate73,2454 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate73,2454 -translate(ProjectionTerm,DatabaseGoal,SQLQueryTermOpt):-translate73,2454 -disjunction(Goal,Disjunction):-disjunction99,3551 -disjunction(Goal,Disjunction):-disjunction99,3551 -disjunction(Goal,Disjunction):-disjunction99,3551 -linearize(((A,B),C),(LinA,(LinB,LinC))):-linearize112,3986 -linearize(((A,B),C),(LinA,(LinB,LinC))):-linearize112,3986 -linearize(((A,B),C),(LinA,(LinB,LinC))):-linearize112,3986 -linearize((A,B),(LinA,LinB)):-linearize118,4180 -linearize((A,B),(LinA,LinB)):-linearize118,4180 -linearize((A,B),(LinA,LinB)):-linearize118,4180 -linearize((A;_),LinA):-linearize126,4387 -linearize((A;_),LinA):-linearize126,4387 -linearize((A;_),LinA):-linearize126,4387 -linearize((_;B),LinB):-linearize131,4465 -linearize((_;B),LinB):-linearize131,4465 -linearize((_;B),LinB):-linearize131,4465 -linearize(not A, not LinA):-linearize134,4512 -linearize(not A, not LinA):-linearize134,4512 -linearize(not A, not LinA):-linearize134,4512 -linearize(Var^A, Var^LinA):-linearize137,4564 -linearize(Var^A, Var^LinA):-linearize137,4564 -linearize(Var^A, Var^LinA):-linearize137,4564 -linearize(A,A):-linearize140,4616 -linearize(A,A):-linearize140,4616 -linearize(A,A):-linearize140,4616 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term165,5341 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term165,5341 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term165,5341 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term170,5499 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term170,5499 -tokenize_term('$var$'(VarId),'$var$'(VarId)):-tokenize_term170,5499 -tokenize_term(Constant,'$const$'(Constant)):-tokenize_term173,5565 -tokenize_term(Constant,'$const$'(Constant)):-tokenize_term173,5565 -tokenize_term(Constant,'$const$'(Constant)):-tokenize_term173,5565 -tokenize_term(Term,TokenizedTerm):-tokenize_term177,5659 -tokenize_term(Term,TokenizedTerm):-tokenize_term177,5659 -tokenize_term(Term,TokenizedTerm):-tokenize_term177,5659 -tokenize_arguments([],[]).tokenize_arguments195,6210 -tokenize_arguments([],[]).tokenize_arguments195,6210 -tokenize_arguments([FirstArg|RestArgs],[TokFirstArg|TokRestArgs]):-tokenize_arguments197,6238 -tokenize_arguments([FirstArg|RestArgs],[TokFirstArg|TokRestArgs]):-tokenize_arguments197,6238 -tokenize_arguments([FirstArg|RestArgs],[TokFirstArg|TokRestArgs]):-tokenize_arguments197,6238 -:- dynamic attribute/4.dynamic243,8370 -:- dynamic attribute/4.dynamic243,8370 -query_generation([],_,[]).query_generation245,8395 -query_generation([],_,[]).query_generation245,8395 -query_generation([Conjunction|Conjunctions],ProjectionTerm,[Query|Queries]):-query_generation247,8423 -query_generation([Conjunction|Conjunctions],ProjectionTerm,[Query|Queries]):-query_generation247,8423 -query_generation([Conjunction|Conjunctions],ProjectionTerm,[Query|Queries]):-query_generation247,8423 -translate_goal(SimpleGoal,[SQLFrom],SQLWhere,Dict,NewDict):-translate_goal276,9545 -translate_goal(SimpleGoal,[SQLFrom],SQLWhere,Dict,NewDict):-translate_goal276,9545 -translate_goal(SimpleGoal,[SQLFrom],SQLWhere,Dict,NewDict):-translate_goal276,9545 -translate_goal(Result is Expression,[],SQLWhere,Dict,NewDict):-translate_goal283,9885 -translate_goal(Result is Expression,[],SQLWhere,Dict,NewDict):-translate_goal283,9885 -translate_goal(Result is Expression,[],SQLWhere,Dict,NewDict):-translate_goal283,9885 -translate_goal(not NegatedGoals,[],SQLNegatedSubquery,Dict,Dict):-translate_goal286,10025 -translate_goal(not NegatedGoals,[],SQLNegatedSubquery,Dict,Dict):-translate_goal286,10025 -translate_goal(not NegatedGoals,[],SQLNegatedSubquery,Dict,Dict):-translate_goal286,10025 -translate_goal(not ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal293,10390 -translate_goal(not ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal293,10390 -translate_goal(not ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal293,10390 -translate_goal(exists(ProjectionTerm,ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal301,10873 -translate_goal(exists(ProjectionTerm,ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal301,10873 -translate_goal(exists(ProjectionTerm,ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal301,10873 -translate_goal(exists(ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal309,11310 -translate_goal(exists(ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal309,11310 -translate_goal(exists(ExistsGoals),SQLFrom,SQLExistsSubquery,Dict,Dict):-translate_goal309,11310 -translate_goal(ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal316,11670 -translate_goal(ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal316,11670 -translate_goal(ComparisonGoal,[],SQLCompOp,Dict,Dict):-translate_goal316,11670 -translate_goal(distinct(Goal),List,SQL,Dict,DistinctDict):-!,translate_goal323,12004 -translate_goal(distinct(Goal),List,SQL,Dict,DistinctDict):-!,translate_goal323,12004 -translate_goal(distinct(Goal),List,SQL,Dict,DistinctDict):-!,translate_goal323,12004 -add_distinct_statement(Dict,Dict):-add_distinct_statement328,12166 -add_distinct_statement(Dict,Dict):-add_distinct_statement328,12166 -add_distinct_statement(Dict,Dict):-add_distinct_statement328,12166 -translate_conjunction('$var$'(VarId)^Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction342,12714 -translate_conjunction('$var$'(VarId)^Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction342,12714 -translate_conjunction('$var$'(VarId)^Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction342,12714 -translate_conjunction(Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction350,13077 -translate_conjunction(Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction350,13077 -translate_conjunction(Goal,SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction350,13077 -translate_conjunction((Goal,Conjunction),SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction357,13287 -translate_conjunction((Goal,Conjunction),SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction357,13287 -translate_conjunction((Goal,Conjunction),SQLFrom,SQLWhere,Dict,NewDict):-translate_conjunction357,13287 -translate_arithmetic_function('$var$'(VarId),Expression,[],Dict,NewDict):-translate_arithmetic_function383,14251 -translate_arithmetic_function('$var$'(VarId),Expression,[],Dict,NewDict):-translate_arithmetic_function383,14251 -translate_arithmetic_function('$var$'(VarId),Expression,[],Dict,NewDict):-translate_arithmetic_function383,14251 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function392,14658 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function392,14658 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function392,14658 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function409,15344 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function409,15344 -translate_arithmetic_function('$var$'(VarId),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function409,15344 -translate_arithmetic_function('$const$'(Constant),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function422,15986 -translate_arithmetic_function('$const$'(Constant),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function422,15986 -translate_arithmetic_function('$const$'(Constant),Expression,ArithComparison,Dict,Dict):-translate_arithmetic_function422,15986 -translate_comparison(LeftArg,RightArg,CompOp,Dict,Comparison):-translate_comparison440,16777 -translate_comparison(LeftArg,RightArg,CompOp,Dict,Comparison):-translate_comparison440,16777 -translate_comparison(LeftArg,RightArg,CompOp,Dict,Comparison):-translate_comparison440,16777 -translate_functor(Functor,Arity,rel(TableName,RangeVariable)):-translate_functor460,17410 -translate_functor(Functor,Arity,rel(TableName,RangeVariable)):-translate_functor460,17410 -translate_functor(Functor,Arity,rel(TableName,RangeVariable)):-translate_functor460,17410 -translate_arguments([],_,_,[],Dict,Dict).translate_arguments475,17905 -translate_arguments([],_,_,[],Dict,Dict).translate_arguments475,17905 -translate_arguments([Arg|Args],SQLTable,Position,SQLWhere,Dict,NewDict):-translate_arguments477,17948 -translate_arguments([Arg|Args],SQLTable,Position,SQLWhere,Dict,NewDict):-translate_arguments477,17948 -translate_arguments([Arg|Args],SQLTable,Position,SQLWhere,Dict,NewDict):-translate_arguments477,17948 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,[],Dict,NewDict):-translate_argument496,18773 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,[],Dict,NewDict):-translate_argument496,18773 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,[],Dict,NewDict):-translate_argument496,18773 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,AttComparison,Dict,Dict):-translate_argument500,18977 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,AttComparison,Dict,Dict):-translate_argument500,18977 -translate_argument('$var$'(VarId),rel(SQLTable,RangeVar),Position,AttComparison,Dict,Dict):-translate_argument500,18977 -translate_argument('$const$'(Constant),rel(SQLTable,RangeVar),Position,ConstComparison,Dict,Dict):-translate_argument507,19368 -translate_argument('$const$'(Constant),rel(SQLTable,RangeVar),Position,ConstComparison,Dict,Dict):-translate_argument507,19368 -translate_argument('$const$'(Constant),rel(SQLTable,RangeVar),Position,ConstComparison,Dict,Dict):-translate_argument507,19368 -projection_term_variables('$const$'(_),[]).projection_term_variables528,20238 -projection_term_variables('$const$'(_),[]).projection_term_variables528,20238 -projection_term_variables('$var$'(VarId),[dict(VarId,_,_,_,existential)]).projection_term_variables530,20283 -projection_term_variables('$var$'(VarId),[dict(VarId,_,_,_,existential)]).projection_term_variables530,20283 -projection_term_variables(ProjectionTerm,ProjectionTermVariables):-projection_term_variables532,20359 -projection_term_variables(ProjectionTerm,ProjectionTermVariables):-projection_term_variables532,20359 -projection_term_variables(ProjectionTerm,ProjectionTermVariables):-projection_term_variables532,20359 -projection_list_vars([],[]).projection_list_vars539,20612 -projection_list_vars([],[]).projection_list_vars539,20612 -projection_list_vars(['$var$'(VarId)|RestArgs],[dict(VarId,_,_,_,existential)|RestVars]):-projection_list_vars540,20641 -projection_list_vars(['$var$'(VarId)|RestArgs],[dict(VarId,_,_,_,existential)|RestVars]):-projection_list_vars540,20641 -projection_list_vars(['$var$'(VarId)|RestArgs],[dict(VarId,_,_,_,existential)|RestVars]):-projection_list_vars540,20641 -projection_list_vars(['$const$'(_)|RestArgs],Vars):-projection_list_vars542,20776 -projection_list_vars(['$const$'(_)|RestArgs],Vars):-projection_list_vars542,20776 -projection_list_vars(['$const$'(_)|RestArgs],Vars):-projection_list_vars542,20776 -translate_projection('$var$'(VarId),Dict,SelectList):-translate_projection561,21333 -translate_projection('$var$'(VarId),Dict,SelectList):-translate_projection561,21333 -translate_projection('$var$'(VarId),Dict,SelectList):-translate_projection561,21333 -translate_projection('$const$'(Const),_,['$const$'(Const)]).translate_projection564,21448 -translate_projection('$const$'(Const),_,['$const$'(Const)]).translate_projection564,21448 -translate_projection(ProjectionTerm,Dict,SelectList):-translate_projection566,21510 -translate_projection(ProjectionTerm,Dict,SelectList):-translate_projection566,21510 -translate_projection(ProjectionTerm,Dict,SelectList):-translate_projection566,21510 -projection_arguments([],[],_).projection_arguments575,21746 -projection_arguments([],[],_).projection_arguments575,21746 -projection_arguments([Arg|RestArgs],[Att|RestAtts],Dict):-projection_arguments577,21778 -projection_arguments([Arg|RestArgs],[Att|RestAtts],Dict):-projection_arguments577,21778 -projection_arguments([Arg|RestArgs],[Att|RestAtts],Dict):-projection_arguments577,21778 -retrieve_argument('$var$'(VarId),Attribute,Dict):-retrieve_argument594,22346 -retrieve_argument('$var$'(VarId),Attribute,Dict):-retrieve_argument594,22346 -retrieve_argument('$var$'(VarId),Attribute,Dict):-retrieve_argument594,22346 -retrieve_argument('$const$'(Constant),'$const$'(Constant),_).retrieve_argument603,22546 -retrieve_argument('$const$'(Constant),'$const$'(Constant),_).retrieve_argument603,22546 -lookup(VarId,Dict,RangeVar,Attribute,Type):-lookup611,22703 -lookup(VarId,Dict,RangeVar,Attribute,Type):-lookup611,22703 -lookup(VarId,Dict,RangeVar,Attribute,Type):-lookup611,22703 -add_to_dictionary(Key,RangeVar,Attribute,Type,_,Dict,Dict):-add_to_dictionary625,22994 -add_to_dictionary(Key,RangeVar,Attribute,Type,_,Dict,Dict):-add_to_dictionary625,22994 -add_to_dictionary(Key,RangeVar,Attribute,Type,_,Dict,Dict):-add_to_dictionary625,22994 -add_to_dictionary(Key,RangeVar,Attribute,Type,Quantifier,Dict,NewDict):-add_to_dictionary628,23119 -add_to_dictionary(Key,RangeVar,Attribute,Type,Quantifier,Dict,NewDict):-add_to_dictionary628,23119 -add_to_dictionary(Key,RangeVar,Attribute,Type,Quantifier,Dict,NewDict):-add_to_dictionary628,23119 -aggregate_function(AggregateFunctionTerm,Dict,AggregateFunctionExpression):-aggregate_function651,24019 -aggregate_function(AggregateFunctionTerm,Dict,AggregateFunctionExpression):-aggregate_function651,24019 -aggregate_function(AggregateFunctionTerm,Dict,AggregateFunctionExpression):-aggregate_function651,24019 -conjunction(Goal,Conjunction):-conjunction658,24340 -conjunction(Goal,Conjunction):-conjunction658,24340 -conjunction(Goal,Conjunction):-conjunction658,24340 -aggregate_query_generation(count,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation678,25116 -aggregate_query_generation(count,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation678,25116 -aggregate_query_generation(count,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation678,25116 -aggregate_query_generation(countdistinct,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation687,25488 -aggregate_query_generation(countdistinct,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation687,25488 -aggregate_query_generation(countdistinct,'$const$'('*'),AggGoal,Dict,AggregateQuery):-aggregate_query_generation687,25488 -aggregate_query_generation(Function,FunctionVariable,AggGoal,Dict,AggregateQuery):-aggregate_query_generation696,25867 -aggregate_query_generation(Function,FunctionVariable,AggGoal,Dict,AggregateQuery):-aggregate_query_generation696,25867 -aggregate_query_generation(Function,FunctionVariable,AggGoal,Dict,AggregateQuery):-aggregate_query_generation696,25867 -translate_grouping(FunctionVariable,Dict,SQLGroup):-translate_grouping718,26790 -translate_grouping(FunctionVariable,Dict,SQLGroup):-translate_grouping718,26790 -translate_grouping(FunctionVariable,Dict,SQLGroup):-translate_grouping718,26790 -free_vars(FunctionVariable,Dict,FreeVarList):-free_vars743,27725 -free_vars(FunctionVariable,Dict,FreeVarList):-free_vars743,27725 -free_vars(FunctionVariable,Dict,FreeVarList):-free_vars743,27725 -function_variable_list('$var$'(VarId),[VarId]).function_variable_list760,28346 -function_variable_list('$var$'(VarId),[VarId]).function_variable_list760,28346 -translate_free_vars([],[]).translate_free_vars772,28678 -translate_free_vars([],[]).translate_free_vars772,28678 -translate_free_vars([(_,Table,Attribute)|FreeVars],[att(Table,Attribute)|SQLGroups]):-translate_free_vars775,28804 -translate_free_vars([(_,Table,Attribute)|FreeVars],[att(Table,Attribute)|SQLGroups]):-translate_free_vars775,28804 -translate_free_vars([(_,Table,Attribute)|FreeVars],[att(Table,Attribute)|SQLGroups]):-translate_free_vars775,28804 -evaluable_expression(AggregateFunctionTerm,Dictionary,AggregateFunctionExpression,number):-evaluable_expression791,29362 -evaluable_expression(AggregateFunctionTerm,Dictionary,AggregateFunctionExpression,number):-evaluable_expression791,29362 -evaluable_expression(AggregateFunctionTerm,Dictionary,AggregateFunctionExpression,number):-evaluable_expression791,29362 -evaluable_expression(LeftExp + RightExp,Dictionary,LeftAr + RightAr,number):-evaluable_expression794,29540 -evaluable_expression(LeftExp + RightExp,Dictionary,LeftAr + RightAr,number):-evaluable_expression794,29540 -evaluable_expression(LeftExp + RightExp,Dictionary,LeftAr + RightAr,number):-evaluable_expression794,29540 -evaluable_expression(LeftExp - RightExp,Dictionary,LeftAr - RightAr,number):-evaluable_expression798,29739 -evaluable_expression(LeftExp - RightExp,Dictionary,LeftAr - RightAr,number):-evaluable_expression798,29739 -evaluable_expression(LeftExp - RightExp,Dictionary,LeftAr - RightAr,number):-evaluable_expression798,29739 -evaluable_expression(LeftExp * RightExp,Dictionary,LeftAr * RightAr,number):-evaluable_expression802,29938 -evaluable_expression(LeftExp * RightExp,Dictionary,LeftAr * RightAr,number):-evaluable_expression802,29938 -evaluable_expression(LeftExp * RightExp,Dictionary,LeftAr * RightAr,number):-evaluable_expression802,29938 -evaluable_expression(LeftExp / RightExp,Dictionary, LeftAr / RightAr,number):-evaluable_expression806,30137 -evaluable_expression(LeftExp / RightExp,Dictionary, LeftAr / RightAr,number):-evaluable_expression806,30137 -evaluable_expression(LeftExp / RightExp,Dictionary, LeftAr / RightAr,number):-evaluable_expression806,30137 -evaluable_expression('$var$'(VarId),Dictionary,att(RangeVar,Attribute),Type):-evaluable_expression810,30337 -evaluable_expression('$var$'(VarId),Dictionary,att(RangeVar,Attribute),Type):-evaluable_expression810,30337 -evaluable_expression('$var$'(VarId),Dictionary,att(RangeVar,Attribute),Type):-evaluable_expression810,30337 -evaluable_expression('$var$'(VarId),Dictionary,ArithmeticExpression,Type):-evaluable_expression814,30489 -evaluable_expression('$var$'(VarId),Dictionary,ArithmeticExpression,Type):-evaluable_expression814,30489 -evaluable_expression('$var$'(VarId),Dictionary,ArithmeticExpression,Type):-evaluable_expression814,30489 -evaluable_expression('$const$'(Const),_,'$const$'(Const),ConstType):-evaluable_expression817,30624 -evaluable_expression('$const$'(Const),_,'$const$'(Const),ConstType):-evaluable_expression817,30624 -evaluable_expression('$const$'(Const),_,'$const$'(Const),ConstType):-evaluable_expression817,30624 -printqueries([Query]):-printqueries833,31073 -printqueries([Query]):-printqueries833,31073 -printqueries([Query]):-printqueries833,31073 -printqueries([Query|Queries]):-printqueries840,31157 -printqueries([Query|Queries]):-printqueries840,31157 -printqueries([Query|Queries]):-printqueries840,31157 -print_query(query([agg_query(Function,Select,From,Where,Group)],_,_)):-print_query853,31395 -print_query(query([agg_query(Function,Select,From,Where,Group)],_,_)):-print_query853,31395 -print_query(query([agg_query(Function,Select,From,Where,Group)],_,_)):-print_query853,31395 -print_query(query(Select,From,Where)):-print_query858,31613 -print_query(query(Select,From,Where)):-print_query858,31613 -print_query(query(Select,From,Where)):-print_query858,31613 -print_query(agg_query(Function,Select,From,Where,Group)):-print_query866,31785 -print_query(agg_query(Function,Select,From,Where,Group)):-print_query866,31785 -print_query(agg_query(Function,Select,From,Where,Group)):-print_query866,31785 -print_query(negated_existential_subquery(Select,From,Where)):-print_query875,32024 -print_query(negated_existential_subquery(Select,From,Where)):-print_query875,32024 -print_query(negated_existential_subquery(Select,From,Where)):-print_query875,32024 -print_query(existential_subquery(Select,From,Where)):-print_query887,32280 -print_query(existential_subquery(Select,From,Where)):-print_query887,32280 -print_query(existential_subquery(Select,From,Where)):-print_query887,32280 -print_clause(_,[],_).print_clause914,33030 -print_clause(_,[],_).print_clause914,33030 -print_clause(Keyword,[Column|RestColumns],Separator):-print_clause916,33053 -print_clause(Keyword,[Column|RestColumns],Separator):-print_clause916,33053 -print_clause(Keyword,[Column|RestColumns],Separator):-print_clause916,33053 -print_clause(Keyword,Function,[Column],Separator):-print_clause921,33192 -print_clause(Keyword,Function,[Column],Separator):-print_clause921,33192 -print_clause(Keyword,Function,[Column],Separator):-print_clause921,33192 -print_clause([Item],_):-print_clause935,33460 -print_clause([Item],_):-print_clause935,33460 -print_clause([Item],_):-print_clause935,33460 -print_clause([Item,NextItem|RestItems],Separator):-print_clause938,33509 -print_clause([Item,NextItem|RestItems],Separator):-print_clause938,33509 -print_clause([Item,NextItem|RestItems],Separator):-print_clause938,33509 -print_column('*'):-print_column950,33753 -print_column('*'):-print_column950,33753 -print_column('*'):-print_column950,33753 -print_column(att(RangeVar,Attribute)):-print_column953,33789 -print_column(att(RangeVar,Attribute)):-print_column953,33789 -print_column(att(RangeVar,Attribute)):-print_column953,33789 -print_column(rel(Relation,RangeVar)):-print_column958,33886 -print_column(rel(Relation,RangeVar)):-print_column958,33886 -print_column(rel(Relation,RangeVar)):-print_column958,33886 -print_column('$const$'(String)):-print_column963,33981 -print_column('$const$'(String)):-print_column963,33981 -print_column('$const$'(String)):-print_column963,33981 -print_column('$const$'(Number)):-print_column969,34103 -print_column('$const$'(Number)):-print_column969,34103 -print_column('$const$'(Number)):-print_column969,34103 -print_column(comp(LeftArg,Operator,RightArg)):-print_column974,34232 -print_column(comp(LeftArg,Operator,RightArg)):-print_column974,34232 -print_column(comp(LeftArg,Operator,RightArg)):-print_column974,34232 -print_column(LeftExpr * RightExpr):-print_column981,34384 -print_column(LeftExpr * RightExpr):-print_column981,34384 -print_column(LeftExpr * RightExpr):-print_column981,34384 -print_column(LeftExpr / RightExpr):-print_column986,34492 -print_column(LeftExpr / RightExpr):-print_column986,34492 -print_column(LeftExpr / RightExpr):-print_column986,34492 -print_column(LeftExpr + RightExpr):-print_column991,34600 -print_column(LeftExpr + RightExpr):-print_column991,34600 -print_column(LeftExpr + RightExpr):-print_column991,34600 -print_column(LeftExpr - RightExpr):-print_column996,34708 -print_column(LeftExpr - RightExpr):-print_column996,34708 -print_column(LeftExpr - RightExpr):-print_column996,34708 -print_column(agg_query(Function,Select,From,Where,Group)):-print_column1001,34816 -print_column(agg_query(Function,Select,From,Where,Group)):-print_column1001,34816 -print_column(agg_query(Function,Select,From,Where,Group)):-print_column1001,34816 -print_column(negated_existential_subquery(Select,From,Where)):-print_column1007,34975 -print_column(negated_existential_subquery(Select,From,Where)):-print_column1007,34975 -print_column(negated_existential_subquery(Select,From,Where)):-print_column1007,34975 -print_column(existential_subquery(Select,From,Where)):-print_column1010,35105 -print_column(existential_subquery(Select,From,Where)):-print_column1010,35105 -print_column(existential_subquery(Select,From,Where)):-print_column1010,35105 -queries_atom(Queries,QueryAtom):-queries_atom1026,35612 -queries_atom(Queries,QueryAtom):-queries_atom1026,35612 -queries_atom(Queries,QueryAtom):-queries_atom1026,35612 -queries_atom_(Queries,QueryAtom):-queries_atom_1032,35772 -queries_atom_(Queries,QueryAtom):-queries_atom_1032,35772 -queries_atom_(Queries,QueryAtom):-queries_atom_1032,35772 -queries_atom(Queries,QueryAtom):-queries_atom1034,35813 -queries_atom(Queries,QueryAtom):-queries_atom1034,35813 -queries_atom(Queries,QueryAtom):-queries_atom1034,35813 -queries_atom([Query],QueryList,Diff):-queries_atom1042,35927 -queries_atom([Query],QueryList,Diff):-queries_atom1042,35927 -queries_atom([Query],QueryList,Diff):-queries_atom1042,35927 -queries_atom([Query|Queries],QueryList,Diff):-queries_atom1045,36004 -queries_atom([Query|Queries],QueryList,Diff):-queries_atom1045,36004 -queries_atom([Query|Queries],QueryList,Diff):-queries_atom1045,36004 -query_atom(query([agg_query(Function,Select,From,Where,Group)],_,_),QueryList,Diff):-query_atom1055,36235 -query_atom(query([agg_query(Function,Select,From,Where,Group)],_,_),QueryList,Diff):-query_atom1055,36235 -query_atom(query([agg_query(Function,Select,From,Where,Group)],_,_),QueryList,Diff):-query_atom1055,36235 -query_atom(query(Select,From,Where),QueryList,Diff):-query_atom1060,36481 -query_atom(query(Select,From,Where),QueryList,Diff):-query_atom1060,36481 -query_atom(query(Select,From,Where),QueryList,Diff):-query_atom1060,36481 -query_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-query_atom1065,36670 -query_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-query_atom1065,36670 -query_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-query_atom1065,36670 -query_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-query_atom1073,36990 -query_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-query_atom1073,36990 -query_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-query_atom1073,36990 -query_atom(existential_subquery(Select,From,Where),QueryList,Diff):-query_atom1080,37269 -query_atom(existential_subquery(Select,From,Where),QueryList,Diff):-query_atom1080,37269 -query_atom(existential_subquery(Select,From,Where),QueryList,Diff):-query_atom1080,37269 -clause_atom(_,[],_,QueryList,QueryList).clause_atom1100,37966 -clause_atom(_,[],_,QueryList,QueryList).clause_atom1100,37966 -clause_atom(_,[once],_,QueryList,Diff):-!,clause_atom1102,38042 -clause_atom(_,[once],_,QueryList,Diff):-!,clause_atom1102,38042 -clause_atom(_,[once],_,QueryList,Diff):-!,clause_atom1102,38042 -clause_atom(Keyword,[Column|RestColumns],Junctor,QueryList,Diff):-clause_atom1106,38175 -clause_atom(Keyword,[Column|RestColumns],Junctor,QueryList,Diff):-clause_atom1106,38175 -clause_atom(Keyword,[Column|RestColumns],Junctor,QueryList,Diff):-clause_atom1106,38175 -clause_atom(Keyword,'COUNTDISTINCT',[Column],Junctor,QueryList,Diff):-!,clause_atom1113,38391 -clause_atom(Keyword,'COUNTDISTINCT',[Column],Junctor,QueryList,Diff):-!,clause_atom1113,38391 -clause_atom(Keyword,'COUNTDISTINCT',[Column],Junctor,QueryList,Diff):-!,clause_atom1113,38391 -clause_atom(Keyword,Function,[Column],Junctor,QueryList,Diff):-clause_atom1121,38655 -clause_atom(Keyword,Function,[Column],Junctor,QueryList,Diff):-clause_atom1121,38655 -clause_atom(Keyword,Function,[Column],Junctor,QueryList,Diff):-clause_atom1121,38655 -clause_atom([once],_,QueryList,Diff):-!,clause_atom1136,38991 -clause_atom([once],_,QueryList,Diff):-!,clause_atom1136,38991 -clause_atom([once],_,QueryList,Diff):-!,clause_atom1136,38991 -clause_atom([Item],_,QueryList,Diff):-clause_atom1139,39075 -clause_atom([Item],_,QueryList,Diff):-clause_atom1139,39075 -clause_atom([Item],_,QueryList,Diff):-clause_atom1139,39075 -clause_atom([Item,NextItem|RestItems],Junctor,QueryList,Diff):-clause_atom1142,39152 -clause_atom([Item,NextItem|RestItems],Junctor,QueryList,Diff):-clause_atom1142,39152 -clause_atom([Item,NextItem|RestItems],Junctor,QueryList,Diff):-clause_atom1142,39152 -column_atom(att(RangeVar,Attribute),QueryList,Diff):-column_atom1155,39450 -column_atom(att(RangeVar,Attribute),QueryList,Diff):-column_atom1155,39450 -column_atom(att(RangeVar,Attribute),QueryList,Diff):-column_atom1155,39450 -column_atom(rel(Relation,RangeVar),QueryList,Diff):-column_atom1160,39606 -column_atom(rel(Relation,RangeVar),QueryList,Diff):-column_atom1160,39606 -column_atom(rel(Relation,RangeVar),QueryList,Diff):-column_atom1160,39606 -column_atom('$const$'(String),QueryList,Diff):-column_atom1166,39778 -column_atom('$const$'(String),QueryList,Diff):-column_atom1166,39778 -column_atom('$const$'(String),QueryList,Diff):-column_atom1166,39778 -column_atom('$const$'(Number),QueryList,Diff):-column_atom1172,39959 -column_atom('$const$'(Number),QueryList,Diff):-column_atom1172,39959 -column_atom('$const$'(Number),QueryList,Diff):-column_atom1172,39959 -column_atom(comp(LeftArg,Operator,RightArg),QueryList,Diff):-column_atom1177,40123 -column_atom(comp(LeftArg,Operator,RightArg),QueryList,Diff):-column_atom1177,40123 -column_atom(comp(LeftArg,Operator,RightArg),QueryList,Diff):-column_atom1177,40123 -column_atom(LeftExpr * RightExpr,QueryList,Diff):-column_atom1184,40344 -column_atom(LeftExpr * RightExpr,QueryList,Diff):-column_atom1184,40344 -column_atom(LeftExpr * RightExpr,QueryList,Diff):-column_atom1184,40344 -column_atom(LeftExpr + RightExpr,QueryList,Diff):-column_atom1189,40497 -column_atom(LeftExpr + RightExpr,QueryList,Diff):-column_atom1189,40497 -column_atom(LeftExpr + RightExpr,QueryList,Diff):-column_atom1189,40497 -column_atom(LeftExpr - RightExpr,QueryList,Diff):-column_atom1194,40650 -column_atom(LeftExpr - RightExpr,QueryList,Diff):-column_atom1194,40650 -column_atom(LeftExpr - RightExpr,QueryList,Diff):-column_atom1194,40650 -column_atom(LeftExpr / RightExpr,QueryList,Diff):-column_atom1199,40803 -column_atom(LeftExpr / RightExpr,QueryList,Diff):-column_atom1199,40803 -column_atom(LeftExpr / RightExpr,QueryList,Diff):-column_atom1199,40803 -column_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-column_atom1204,40956 -column_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-column_atom1204,40956 -column_atom(agg_query(Function,Select,From,Where,Group),QueryList,Diff):-column_atom1204,40956 -column_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-column_atom1209,41160 -column_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-column_atom1209,41160 -column_atom(negated_existential_subquery(Select,From,Where),QueryList,Diff):-column_atom1209,41160 -column_atom(existential_subquery(Select,From,Where),QueryList,Diff):-column_atom1212,41318 -column_atom(existential_subquery(Select,From,Where),QueryList,Diff):-column_atom1212,41318 -column_atom(existential_subquery(Select,From,Where),QueryList,Diff):-column_atom1212,41318 -column_atom(Atom,List,Diff):-column_atom1216,41461 -column_atom(Atom,List,Diff):-column_atom1216,41461 -column_atom(Atom,List,Diff):-column_atom1216,41461 -column_atom(Number,List,Diff) :-column_atom1221,41550 -column_atom(Number,List,Diff) :-column_atom1221,41550 -column_atom(Number,List,Diff) :-column_atom1221,41550 -init_gensym(Atom) :- init_gensym1237,41875 -init_gensym(Atom) :- init_gensym1237,41875 -init_gensym(Atom) :- init_gensym1237,41875 -gensym(Atom,Var) :-gensym1240,41920 -gensym(Atom,Var) :-gensym1240,41920 -gensym(Atom,Var) :-gensym1240,41920 -repeat_n(N):-repeat_n1252,42174 -repeat_n(N):-repeat_n1252,42174 -repeat_n(N):-repeat_n1252,42174 -repeat_1(1):-!.repeat_11257,42230 -repeat_1(1):-!.repeat_11257,42230 -repeat_1(1):-!.repeat_11257,42230 -repeat_1(_).repeat_11258,42246 -repeat_1(_).repeat_11258,42246 -repeat_1(N):-repeat_11259,42259 -repeat_1(N):-repeat_11259,42259 -repeat_1(N):-repeat_11259,42259 -set_difference([],_,[]).set_difference1269,42425 -set_difference([],_,[]).set_difference1269,42425 -set_difference([Element|RestSet],Set,[Element|RestDifference]):-set_difference1271,42451 -set_difference([Element|RestSet],Set,[Element|RestDifference]):-set_difference1271,42451 -set_difference([Element|RestSet],Set,[Element|RestDifference]):-set_difference1271,42451 -set_difference([Element|RestSet],Set,RestDifference):-set_difference1275,42592 -set_difference([Element|RestSet],Set,RestDifference):-set_difference1275,42592 -set_difference([Element|RestSet],Set,RestDifference):-set_difference1275,42592 -comparison(=,=).comparison1282,42810 -comparison(=,=).comparison1282,42810 -comparison(<,<).comparison1283,42827 -comparison(<,<).comparison1283,42827 -comparison(=<,'<=').comparison1284,42844 -comparison(=<,'<=').comparison1284,42844 -comparison(>=,'>=').comparison1285,42865 -comparison(>=,'>=').comparison1285,42865 -comparison(>,>).comparison1286,42886 -comparison(>,>).comparison1286,42886 -comparison(@<,<).comparison1287,42903 -comparison(@<,<).comparison1287,42903 -comparison(@>,>).comparison1288,42921 -comparison(@>,>).comparison1288,42921 -negated_comparison(=,'<>').negated_comparison1291,42941 -negated_comparison(=,'<>').negated_comparison1291,42941 -negated_comparison(\=,=).negated_comparison1292,42969 -negated_comparison(\=,=).negated_comparison1292,42969 -negated_comparison(>,'<=').negated_comparison1293,42995 -negated_comparison(>,'<=').negated_comparison1293,42995 -negated_comparison(=<,>).negated_comparison1294,43023 -negated_comparison(=<,>).negated_comparison1294,43023 -negated_comparison(<,>=).negated_comparison1295,43049 -negated_comparison(<,>=).negated_comparison1295,43049 -negated_comparison(>=,<).negated_comparison1296,43075 -negated_comparison(>=,<).negated_comparison1296,43075 -aggregate_functor(avg,'AVG').aggregate_functor1301,43174 -aggregate_functor(avg,'AVG').aggregate_functor1301,43174 -aggregate_functor(min,'MIN').aggregate_functor1302,43204 -aggregate_functor(min,'MIN').aggregate_functor1302,43204 -aggregate_functor(max,'MAX').aggregate_functor1303,43234 -aggregate_functor(max,'MAX').aggregate_functor1303,43234 -aggregate_functor(sum,'SUM').aggregate_functor1304,43264 -aggregate_functor(sum,'SUM').aggregate_functor1304,43264 -aggregate_functor(count,'COUNT').aggregate_functor1305,43294 -aggregate_functor(count,'COUNT').aggregate_functor1305,43294 -aggregate_functor(countdistinct,'COUNTDISTINCT').aggregate_functor1306,43328 -aggregate_functor(countdistinct,'COUNTDISTINCT').aggregate_functor1306,43328 -type_compatible(Type,Type):-type_compatible1321,43752 -type_compatible(Type,Type):-type_compatible1321,43752 -type_compatible(Type,Type):-type_compatible1321,43752 -type_compatible(SubType,Type):-type_compatible1323,43799 -type_compatible(SubType,Type):-type_compatible1323,43799 -type_compatible(SubType,Type):-type_compatible1323,43799 -type_compatible(Type,SubType):-type_compatible1325,43857 -type_compatible(Type,SubType):-type_compatible1325,43857 -type_compatible(Type,SubType):-type_compatible1325,43857 -subtype(SubType,SuperType):-subtype1335,44117 -subtype(SubType,SuperType):-subtype1335,44117 -subtype(SubType,SuperType):-subtype1335,44117 -subtype(SubType,SuperType):-subtype1338,44181 -subtype(SubType,SuperType):-subtype1338,44181 -subtype(SubType,SuperType):-subtype1338,44181 -is_type(number).is_type1350,44460 -is_type(number).is_type1350,44460 -is_type(integer).is_type1351,44477 -is_type(integer).is_type1351,44477 -is_type(real).is_type1352,44495 -is_type(real).is_type1352,44495 -is_type(string).is_type1353,44510 -is_type(string).is_type1353,44510 -is_type(natural).is_type1354,44527 -is_type(natural).is_type1354,44527 -is_subtype(integer,number).is_subtype1363,44756 -is_subtype(integer,number).is_subtype1363,44756 -is_subtype(real,number).is_subtype1364,44784 -is_subtype(real,number).is_subtype1364,44784 -is_subtype(natural,integer).is_subtype1365,44809 -is_subtype(natural,integer).is_subtype1365,44809 -get_type('$const$'(Constant),integer):-get_type1375,45103 -get_type('$const$'(Constant),integer):-get_type1375,45103 -get_type('$const$'(Constant),integer):-get_type1375,45103 -get_type('$const$'(Constant),real):-get_type1378,45168 -get_type('$const$'(Constant),real):-get_type1378,45168 -get_type('$const$'(Constant),real):-get_type1378,45168 -get_type('$const$'(Constant),string):-get_type1381,45229 -get_type('$const$'(Constant),string):-get_type1381,45229 -get_type('$const$'(Constant),string):-get_type1381,45229 - -packages/myddas/pl/myddas_prolog2sql_optimizer.ypp,4868 -optimize_sql([],[]).optimize_sql14,188 -optimize_sql([],[]).optimize_sql14,188 -optimize_sql([query(Proj,From,Where)|Tail],[query(Proj1,From1,Where1)|SQLTerm]):-optimize_sql16,210 -optimize_sql([query(Proj,From,Where)|Tail],[query(Proj1,From1,Where1)|SQLTerm]):-optimize_sql16,210 -optimize_sql([query(Proj,From,Where)|Tail],[query(Proj1,From1,Where1)|SQLTerm]):-optimize_sql16,210 -optimize_subquery(SQLSelect,OptSelectFinal,F,F,W,W):-optimize_subquery36,1106 -optimize_subquery(SQLSelect,OptSelectFinal,F,F,W,W):-optimize_subquery36,1106 -optimize_subquery(SQLSelect,OptSelectFinal,F,F,W,W):-optimize_subquery36,1106 -optimize_subquery(SQLSelect,SQLSelect,SQLFrom,OptFrom,SQLWhere,OptWhere):-optimize_subquery41,1420 -optimize_subquery(SQLSelect,SQLSelect,SQLFrom,OptFrom,SQLWhere,OptWhere):-optimize_subquery41,1420 -optimize_subquery(SQLSelect,SQLSelect,SQLFrom,OptFrom,SQLWhere,OptWhere):-optimize_subquery41,1420 -optimize_subquery(ProjTerm,ProjTerm,From,From,Where,Where).optimize_subquery54,2023 -optimize_subquery(ProjTerm,ProjTerm,From,From,Where,Where).optimize_subquery54,2023 -delete_surplous_tables([negated_existential_subquery(A,_,B)|T],Rel,[negated_existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables56,2084 -delete_surplous_tables([negated_existential_subquery(A,_,B)|T],Rel,[negated_existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables56,2084 -delete_surplous_tables([negated_existential_subquery(A,_,B)|T],Rel,[negated_existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables56,2084 -delete_surplous_tables([existential_subquery(A,_,B)|T],Rel,[existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables57,2198 -delete_surplous_tables([existential_subquery(A,_,B)|T],Rel,[existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables57,2198 -delete_surplous_tables([existential_subquery(A,_,B)|T],Rel,[existential_subquery(A,Rel,B)|T]):-!.delete_surplous_tables57,2198 -delete_surplous_tables([H|T],Rel,[H|Final]):-delete_surplous_tables58,2296 -delete_surplous_tables([H|T],Rel,[H|Final]):-delete_surplous_tables58,2296 -delete_surplous_tables([H|T],Rel,[H|Final]):-delete_surplous_tables58,2296 -comparasion_analysis([],From,From,RelTotal,RelTotal).comparasion_analysis61,2381 -comparasion_analysis([],From,From,RelTotal,RelTotal).comparasion_analysis61,2381 -comparasion_analysis([comp(att(Relation,_),_,att(Relation,_))|Tail],From1,[rel(Name,Relation)|FromFinal],RelTotal,RelTotalFinal):-comparasion_analysis63,2436 -comparasion_analysis([comp(att(Relation,_),_,att(Relation,_))|Tail],From1,[rel(Name,Relation)|FromFinal],RelTotal,RelTotalFinal):-comparasion_analysis63,2436 -comparasion_analysis([comp(att(Relation,_),_,att(Relation,_))|Tail],From1,[rel(Name,Relation)|FromFinal],RelTotal,RelTotalFinal):-comparasion_analysis63,2436 -comparasion_analysis([comp(att(Relation1,_),_,att(Relation2,_))|Tail],From1,From4,RelTotal,RelTotal3):-comparasion_analysis68,2725 -comparasion_analysis([comp(att(Relation1,_),_,att(Relation2,_))|Tail],From1,From4,RelTotal,RelTotal3):-comparasion_analysis68,2725 -comparasion_analysis([comp(att(Relation1,_),_,att(Relation2,_))|Tail],From1,From4,RelTotal,RelTotal3):-comparasion_analysis68,2725 -comparasion_analysis([_|Tail],From,FromFinal,RelTotal,RelTotalFinal):-comparasion_analysis86,3278 -comparasion_analysis([_|Tail],From,FromFinal,RelTotal,RelTotalFinal):-comparasion_analysis86,3278 -comparasion_analysis([_|Tail],From,FromFinal,RelTotal,RelTotalFinal):-comparasion_analysis86,3278 -projection_term_analysis([],[],Relation,Relation).projection_term_analysis90,3418 -projection_term_analysis([],[],Relation,Relation).projection_term_analysis90,3418 -projection_term_analysis([att(Relation,_)|Tail],[rel(Name,Relation)|FromFinal],RelTotal,RelTotal1):-projection_term_analysis92,3470 -projection_term_analysis([att(Relation,_)|Tail],[rel(Name,Relation)|FromFinal],RelTotal,RelTotal1):-projection_term_analysis92,3470 -projection_term_analysis([att(Relation,_)|Tail],[rel(Name,Relation)|FromFinal],RelTotal,RelTotal1):-projection_term_analysis92,3470 -projection_term_analysis([_|Tail],FromFinal,RelTotal,RelTotal1):-projection_term_analysis97,3719 -projection_term_analysis([_|Tail],FromFinal,RelTotal,RelTotal1):-projection_term_analysis97,3719 -projection_term_analysis([_|Tail],FromFinal,RelTotal,RelTotal1):-projection_term_analysis97,3719 -add_relation([],Final,Final).add_relation102,3850 -add_relation([],Final,Final).add_relation102,3850 -add_relation([Rel|Tail],RelTotal,RelFinal):-add_relation104,3881 -add_relation([Rel|Tail],RelTotal,RelFinal):-add_relation104,3881 -add_relation([Rel|Tail],RelTotal,RelFinal):-add_relation104,3881 -add_relation([_|Tail],RelTotal,RelFinal):-add_relation109,4033 -add_relation([_|Tail],RelTotal,RelFinal):-add_relation109,4033 -add_relation([_|Tail],RelTotal,RelFinal):-add_relation109,4033 - -packages/myddas/pl/myddas_top_level.ypp,2475 -db_top_level(mysql,HostDb,User,Password):-db_top_level55,1260 -db_top_level(mysql,HostDb,User,Password):-db_top_level55,1260 -db_top_level(mysql,HostDb,User,Password):-db_top_level55,1260 -db_top_level(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_top_level58,1354 -db_top_level(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_top_level58,1354 -db_top_level(mysql,Connection,Host/Db/Port/Socket,User,Password) :- !,db_top_level58,1354 -db_top_level(mysql,Connection,Host/Db/Port,User,Password) :-db_top_level61,1560 -db_top_level(mysql,Connection,Host/Db/Port,User,Password) :-db_top_level61,1560 -db_top_level(mysql,Connection,Host/Db/Port,User,Password) :-db_top_level61,1560 -db_top_level(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_top_level65,1760 -db_top_level(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_top_level65,1760 -db_top_level(mysql,Connection,Host/Db/Socket,User,Password) :- !,db_top_level65,1760 -db_top_level(mysql,Connection,Host/Db,User,Password):-db_top_level67,1890 -db_top_level(mysql,Connection,Host/Db,User,Password):-db_top_level67,1890 -db_top_level(mysql,Connection,Host/Db,User,Password):-db_top_level67,1890 -db_top_level(datalog,Connection,_,_,_):-db_top_level72,2007 -db_top_level(datalog,Connection,_,_,_):-db_top_level72,2007 -db_top_level(datalog,Connection,_,_,_):-db_top_level72,2007 -'$top_level_datalog_cicle'(Connection,Prompt):-$top_level_datalog_cicle86,2448 -'$top_level_datalog_cicle'(Connection,Prompt):-$top_level_datalog_cicle86,2448 -'$top_level_datalog_cicle'(Connection,Prompt):-$top_level_datalog_cicle86,2448 -'$top_level_datalog'(_,_,halt):-!.$top_level_datalog93,2693 -'$top_level_datalog'(_,_,halt):-!.$top_level_datalog93,2693 -'$top_level_datalog'(_,_,halt):-!.$top_level_datalog93,2693 -'$top_level_datalog'(Connection,Prompt,Query):-$top_level_datalog94,2728 -'$top_level_datalog'(Connection,Prompt,Query):-$top_level_datalog94,2728 -'$top_level_datalog'(Connection,Prompt,Query):-$top_level_datalog94,2728 -'$top_level_datalog'(Connection,Prompt,Query):-$top_level_datalog99,2916 -'$top_level_datalog'(Connection,Prompt,Query):-$top_level_datalog99,2916 -'$top_level_datalog'(Connection,Prompt,Query):-$top_level_datalog99,2916 -db_datalog_select(Connection,LA,DbGoal):-db_datalog_select104,3094 -db_datalog_select(Connection,LA,DbGoal):-db_datalog_select104,3094 -db_datalog_select(Connection,LA,DbGoal):-db_datalog_select104,3094 - -packages/myddas/pl/myddas_util_predicates.ypp,23133 -'$prolog2sql'(ProjTerm,DbGoal,SQL):-$prolog2sql61,1594 -'$prolog2sql'(ProjTerm,DbGoal,SQL):-$prolog2sql61,1594 -'$prolog2sql'(ProjTerm,DbGoal,SQL):-$prolog2sql61,1594 -'$create_multi_query'([ProjTerm],[DbGoal],SQL):- !,$create_multi_query66,1745 -'$create_multi_query'([ProjTerm],[DbGoal],SQL):- !,$create_multi_query66,1745 -'$create_multi_query'([ProjTerm],[DbGoal],SQL):- !,$create_multi_query66,1745 -'$create_multi_query'([ProjTerm|TermList],[DbGoal|GoalList],SQL):-$create_multi_query72,1938 -'$create_multi_query'([ProjTerm|TermList],[DbGoal|GoalList],SQL):-$create_multi_query72,1938 -'$create_multi_query'([ProjTerm|TermList],[DbGoal|GoalList],SQL):-$create_multi_query72,1938 -'$get_multi_results'(_,_,_,[]).$get_multi_results81,2250 -'$get_multi_results'(_,_,_,[])./p,predicate,predicate definition81,2250 -'$get_multi_results'(_,_,_,[]).$get_multi_results81,2250 -'$get_multi_results'(Con,ConType,ResSet,[List|Results]):-$get_multi_results82,2282 -'$get_multi_results'(Con,ConType,ResSet,[List|Results]):-$get_multi_results82,2282 -'$get_multi_results'(Con,ConType,ResSet,[List|Results]):-$get_multi_results82,2282 -'$process_sql_goal'(TableViewName,SQLorDbGoal,TableName,SQL):-$process_sql_goal92,2548 -'$process_sql_goal'(TableViewName,SQLorDbGoal,TableName,SQL):-$process_sql_goal92,2548 -'$process_sql_goal'(TableViewName,SQLorDbGoal,TableName,SQL):-$process_sql_goal92,2548 -'$process_fields'(FieldsInf,FieldString,KeysSQL):-$process_fields105,2988 -'$process_fields'(FieldsInf,FieldString,KeysSQL):-$process_fields105,2988 -'$process_fields'(FieldsInf,FieldString,KeysSQL):-$process_fields105,2988 -'$process_primary_keys'([],'').$process_primary_keys110,3153 -'$process_primary_keys'([],'')./p,predicate,predicate definition110,3153 -'$process_primary_keys'([],'').$process_primary_keys110,3153 -'$process_primary_keys'([FieldName|Fields],KeysSQL):-$process_primary_keys111,3185 -'$process_primary_keys'([FieldName|Fields],KeysSQL):-$process_primary_keys111,3185 -'$process_primary_keys'([FieldName|Fields],KeysSQL):-$process_primary_keys111,3185 -'$process_primary_keys_put_comma'([],''):-!.$process_primary_keys_put_comma115,3377 -'$process_primary_keys_put_comma'([],''):-!.$process_primary_keys_put_comma115,3377 -'$process_primary_keys_put_comma'([],''):-!.$process_primary_keys_put_comma115,3377 -'$process_primary_keys_put_comma'([FieldName|Fields],CommaSQL):-!,$process_primary_keys_put_comma116,3422 -'$process_primary_keys_put_comma'([FieldName|Fields],CommaSQL):-!,$process_primary_keys_put_comma116,3422 -'$process_primary_keys_put_comma'([FieldName|Fields],CommaSQL):-!,$process_primary_keys_put_comma116,3422 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)],FinalSQL,PrimaryKeys):-!,$create_field_list121,3614 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)],FinalSQL,PrimaryKeys):-!,$create_field_list121,3614 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)],FinalSQL,PrimaryKeys):-!,$create_field_list121,3614 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)|T],FinalSQL,PrimaryKeys):-$create_field_list124,3847 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)|T],FinalSQL,PrimaryKeys):-$create_field_list124,3847 -'$create_field_list'([field(Name,Type,Null,Key,DefaultValue)|T],FinalSQL,PrimaryKeys):-$create_field_list124,3847 -'$field_extra_options'(Name,Null,Key,KeyInfo,DefaultValue,Result,PrimaryKeys):-$field_extra_options131,4172 -'$field_extra_options'(Name,Null,Key,KeyInfo,DefaultValue,Result,PrimaryKeys):-$field_extra_options131,4172 -'$field_extra_options'(Name,Null,Key,KeyInfo,DefaultValue,Result,PrimaryKeys):-$field_extra_options131,4172 -'$where_exists'(SQL,1):-$where_exists153,4637 -'$where_exists'(SQL,1):-$where_exists153,4637 -'$where_exists'(SQL,1):-$where_exists153,4637 -'$where_exists'(_,0).$where_exists158,4852 -'$where_exists'(_,0)./p,predicate,predicate definition158,4852 -'$where_exists'(_,0).$where_exists158,4852 -'$where_exists_aux'([W|TCodes],[W|TWhere]):-$where_exists_aux161,4877 -'$where_exists_aux'([W|TCodes],[W|TWhere]):-$where_exists_aux161,4877 -'$where_exists_aux'([W|TCodes],[W|TWhere]):-$where_exists_aux161,4877 -'$where_exists_aux'([_|TCodes],Where):-$where_exists_aux163,4956 -'$where_exists_aux'([_|TCodes],Where):-$where_exists_aux163,4956 -'$where_exists_aux'([_|TCodes],Where):-$where_exists_aux163,4956 -'$where_found'(_,[]).$where_found167,5035 -'$where_found'(_,[])./p,predicate,predicate definition167,5035 -'$where_found'(_,[]).$where_found167,5035 -'$where_found'([Letter|TCodes],[Letter|TWhere]):-$where_found168,5057 -'$where_found'([Letter|TCodes],[Letter|TWhere]):-$where_found168,5057 -'$where_found'([Letter|TCodes],[Letter|TWhere]):-$where_found168,5057 -'$build_query'(0,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query175,5191 -'$build_query'(0,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query175,5191 -'$build_query'(0,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query175,5191 -'$build_query'(1,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query177,5298 -'$build_query'(1,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query177,5298 -'$build_query'(1,SQL,[query(CodeArgs,_,_)],LA,FinalSQL):-$build_query177,5298 -'$build_query_aux'(_,SQL,[],[],SQL).$build_query_aux183,5514 -'$build_query_aux'(_,SQL,[],[],SQL)./p,predicate,predicate definition183,5514 -'$build_query_aux'(_,SQL,[],[],SQL).$build_query_aux183,5514 -'$build_query_aux'(Flag,SQL,[CodeArg|CodeT],[LArg|LT],FinalSQL):-$build_query_aux184,5551 -'$build_query_aux'(Flag,SQL,[CodeArg|CodeT],[LArg|LT],FinalSQL):-$build_query_aux184,5551 -'$build_query_aux'(Flag,SQL,[CodeArg|CodeT],[LArg|LT],FinalSQL):-$build_query_aux184,5551 -'$build_query_aux'(Flag,SQL,[_|CodeT],[_|LT],FinalSQL):-$build_query_aux188,5734 -'$build_query_aux'(Flag,SQL,[_|CodeT],[_|LT],FinalSQL):-$build_query_aux188,5734 -'$build_query_aux'(Flag,SQL,[_|CodeT],[_|LT],FinalSQL):-$build_query_aux188,5734 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL193,5939 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL193,5939 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL193,5939 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL204,6272 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL204,6272 -'$concatSQL'(Flag,SQL,att(Rel,Field),Value,ConcatSQL) :-$concatSQL204,6272 -'$and_or_where'(1,SQL,ConcatSQL):-$and_or_where215,6658 -'$and_or_where'(1,SQL,ConcatSQL):-$and_or_where215,6658 -'$and_or_where'(1,SQL,ConcatSQL):-$and_or_where215,6658 -'$and_or_where'(0,SQL,ConcatSQL):-$and_or_where217,6729 -'$and_or_where'(0,SQL,ConcatSQL):-$and_or_where217,6729 -'$and_or_where'(0,SQL,ConcatSQL):-$and_or_where217,6729 -'$make_a_list'(0,[]) :- !.$make_a_list223,6860 -'$make_a_list'(0,[]) :- !.$make_a_list223,6860 -'$make_a_list'(0,[]) :- !.$make_a_list223,6860 -'$make_a_list'(N,[_|T]) :-$make_a_list224,6887 -'$make_a_list'(N,[_|T]) :-$make_a_list224,6887 -'$make_a_list'(N,[_|T]) :-$make_a_list224,6887 -'$assert_attribute_information'(N,N,_,_) :- !.$assert_attribute_information228,6950 -'$assert_attribute_information'(N,N,_,_) :- !.$assert_attribute_information228,6950 -'$assert_attribute_information'(N,N,_,_) :- !.$assert_attribute_information228,6950 -'$assert_attribute_information'(N,M,Relation,[FieldName,HeadType|TailTypes]) :-$assert_attribute_information229,6997 -'$assert_attribute_information'(N,M,Relation,[FieldName,HeadType|TailTypes]) :-$assert_attribute_information229,6997 -'$assert_attribute_information'(N,M,Relation,[FieldName,HeadType|TailTypes]) :-$assert_attribute_information229,6997 -'$copy_term_nv'(T,Dic,NT,[(T,NT)|Dic]) :-$copy_term_nv241,7355 -'$copy_term_nv'(T,Dic,NT,[(T,NT)|Dic]) :-$copy_term_nv241,7355 -'$copy_term_nv'(T,Dic,NT,[(T,NT)|Dic]) :-$copy_term_nv241,7355 -'$copy_term_nv'(T,Dic,T,Dic) :-$copy_term_nv244,7437 -'$copy_term_nv'(T,Dic,T,Dic) :-$copy_term_nv244,7437 -'$copy_term_nv'(T,Dic,T,Dic) :-$copy_term_nv244,7437 -'$copy_term_nv'(T,Dic,NT,NDic) :-$copy_term_nv246,7488 -'$copy_term_nv'(T,Dic,NT,NDic) :-$copy_term_nv246,7488 -'$copy_term_nv'(T,Dic,NT,NDic) :-$copy_term_nv246,7488 -'$iterate_on_args'(0,_,_,Dic,Dic) :- !.$iterate_on_args251,7596 -'$iterate_on_args'(0,_,_,Dic,Dic) :- !.$iterate_on_args251,7596 -'$iterate_on_args'(0,_,_,Dic,Dic) :- !.$iterate_on_args251,7596 -'$iterate_on_args'(N,T,NT,Dic,NDic2) :-$iterate_on_args252,7636 -'$iterate_on_args'(N,T,NT,Dic,NDic2) :-$iterate_on_args252,7636 -'$iterate_on_args'(N,T,NT,Dic,NDic2) :-$iterate_on_args252,7636 -'$v_member'(T,[],(T,_)).$v_member259,7791 -'$v_member'(T,[],(T,_))./p,predicate,predicate definition259,7791 -'$v_member'(T,[],(T,_)).$v_member259,7791 -'$v_member'(T,[(V,V1)|_],(T,V1)) :-$v_member260,7816 -'$v_member'(T,[(V,V1)|_],(T,V1)) :-$v_member260,7816 -'$v_member'(T,[(V,V1)|_],(T,V1)) :-$v_member260,7816 -'$v_member'(T,[_|R],V) :-$v_member262,7864 -'$v_member'(T,[_|R],V) :-$v_member262,7864 -'$v_member'(T,[_|R],V) :-$v_member262,7864 -'$extract_args'(Predicate,Arity,Arity,[Arg]):-$extract_args269,8012 -'$extract_args'(Predicate,Arity,Arity,[Arg]):-$extract_args269,8012 -'$extract_args'(Predicate,Arity,Arity,[Arg]):-$extract_args269,8012 -'$extract_args'(Predicate,ArgNumber,Arity,[Arg|ArgList]):-$extract_args271,8093 -'$extract_args'(Predicate,ArgNumber,Arity,[Arg|ArgList]):-$extract_args271,8093 -'$extract_args'(Predicate,ArgNumber,Arity,[Arg|ArgList]):-$extract_args271,8093 -'$get_table_name'([query(_,[rel(TableName,_)],_)],TableName).$get_table_name278,8373 -'$get_table_name'([query(_,[rel(TableName,_)],_)],TableName)./p,predicate,predicate definition278,8373 -'$get_table_name'([query(_,[rel(TableName,_)],_)],TableName).$get_table_name278,8373 -'$get_values_for_update'([query(Fields,_,[])],SetArgs,[' SET '|SQLSet],[]):-!,$get_values_for_update284,8607 -'$get_values_for_update'([query(Fields,_,[])],SetArgs,[' SET '|SQLSet],[]):-!,$get_values_for_update284,8607 -'$get_values_for_update'([query(Fields,_,[])],SetArgs,[' SET '|SQLSet],[]):-!,$get_values_for_update284,8607 -'$get_values_for_update'([query(Fields,_,Comp)],SetArgs,[' SET '|SQLSet],[' WHERE '|Where]):-!,$get_values_for_update287,8767 -'$get_values_for_update'([query(Fields,_,Comp)],SetArgs,[' SET '|SQLSet],[' WHERE '|Where]):-!,$get_values_for_update287,8767 -'$get_values_for_update'([query(Fields,_,Comp)],SetArgs,[' SET '|SQLSet],[' WHERE '|Where]):-!,$get_values_for_update287,8767 -'$get_values_for_set'([],[],[]).$get_values_for_set292,8984 -'$get_values_for_set'([],[],[])./p,predicate,predicate definition292,8984 -'$get_values_for_set'([],[],[]).$get_values_for_set292,8984 -'$get_values_for_set'([att(_,Field)|FieldList],[Value|ValueList],[Field,Value|FieldValueList]):-$get_values_for_set293,9017 -'$get_values_for_set'([att(_,Field)|FieldList],[Value|ValueList],[Field,Value|FieldValueList]):-$get_values_for_set293,9017 -'$get_values_for_set'([att(_,Field)|FieldList],[Value|ValueList],[Field,Value|FieldValueList]):-$get_values_for_set293,9017 -'$get_values_for_set'([_|FieldList],[_|ValueList],FieldValueList):-!,$get_values_for_set296,9192 -'$get_values_for_set'([_|FieldList],[_|ValueList],FieldValueList):-!,$get_values_for_set296,9192 -'$get_values_for_set'([_|FieldList],[_|ValueList],FieldValueList):-!,$get_values_for_set296,9192 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))],[' ',Field,' = "',Atom,'" ']).$get_values_for_where299,9323 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))],[' ',Field,' = "',Atom,'" '])./p,predicate,predicate definition299,9323 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))],[' ',Field,' = "',Atom,'" ']).$get_values_for_where'([comp(att(_,Field),'=','$const$299,9323 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))|Comp],[' ',Field,' = "',Atom,'" AND '|Rest]):-$get_values_for_where300,9419 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))|Comp],[' ',Field,' = "',Atom,'" AND '|Rest]):-$get_values_for_where300,9419 -'$get_values_for_where'([comp(att(_,Field),'=','$const$'(Atom))|Comp],[' ',Field,' = "',Atom,'" AND '|Rest]):-$get_values_for_where'([comp(att(_,Field),'=','$const$300,9419 -'$build_set_condition'([Field,Value|FieldValues],[SQLFirst|SQLRest]):-$build_set_condition303,9568 -'$build_set_condition'([Field,Value|FieldValues],[SQLFirst|SQLRest]):-$build_set_condition303,9568 -'$build_set_condition'([Field,Value|FieldValues],[SQLFirst|SQLRest]):-$build_set_condition303,9568 -'$build_set_condition_with_comma'([],[]).$build_set_condition_with_comma307,9766 -'$build_set_condition_with_comma'([],[])./p,predicate,predicate definition307,9766 -'$build_set_condition_with_comma'([],[]).$build_set_condition_with_comma307,9766 -'$build_set_condition_with_comma'([Field,Value|FieldValues],[SQL|SQLRest]):-$build_set_condition_with_comma308,9808 -'$build_set_condition_with_comma'([Field,Value|FieldValues],[SQL|SQLRest]):-$build_set_condition_with_comma308,9808 -'$build_set_condition_with_comma'([Field,Value|FieldValues],[SQL|SQLRest]):-$build_set_condition_with_comma308,9808 -'$abolish_all'(Con):-$abolish_all314,10044 -'$abolish_all'(Con):-$abolish_all314,10044 -'$abolish_all'(Con):-$abolish_all314,10044 -'$write_or_not'(X) :-$write_or_not319,10188 -'$write_or_not'(X) :-$write_or_not319,10188 -'$write_or_not'(X) :-$write_or_not319,10188 -'$write_or_not'(X) :-$write_or_not322,10252 -'$write_or_not'(X) :-$write_or_not322,10252 -'$write_or_not'(X) :-$write_or_not322,10252 -'$write_or_not'(_).$write_or_not328,10438 -'$write_or_not'(_)./p,predicate,predicate definition328,10438 -'$write_or_not'(_).$write_or_not328,10438 -'$make_atom'([],'').$make_atom330,10459 -'$make_atom'([],'')./p,predicate,predicate definition330,10459 -'$make_atom'([],'').$make_atom330,10459 -'$make_atom'([Atom|T],Final) :-$make_atom331,10480 -'$make_atom'([Atom|T],Final) :-$make_atom331,10480 -'$make_atom'([Atom|T],Final) :-$make_atom331,10480 -'$make_atom'([Number|T],Final) :-$make_atom335,10592 -'$make_atom'([Number|T],Final) :-$make_atom335,10592 -'$make_atom'([Number|T],Final) :-$make_atom335,10592 -'$make_atom_args'([Atom],Atom):-$make_atom_args340,10726 -'$make_atom_args'([Atom],Atom):-$make_atom_args340,10726 -'$make_atom_args'([Atom],Atom):-$make_atom_args340,10726 -'$make_atom_args'([Number],Atom):-$make_atom_args342,10775 -'$make_atom_args'([Number],Atom):-$make_atom_args342,10775 -'$make_atom_args'([Number],Atom):-$make_atom_args342,10775 -'$make_atom_args'([Atom|T],Final) :-$make_atom_args344,10839 -'$make_atom_args'([Atom|T],Final) :-$make_atom_args344,10839 -'$make_atom_args'([Atom|T],Final) :-$make_atom_args344,10839 -'$make_atom_args'([Number|T],Final) :-$make_atom_args349,10986 -'$make_atom_args'([Number|T],Final) :-$make_atom_args349,10986 -'$make_atom_args'([Number|T],Final) :-$make_atom_args349,10986 -'$get_values_for_insert'([_,_],[Value],['NULL',')']):-var(Value),!.$get_values_for_insert359,11261 -'$get_values_for_insert'([_,_],[Value],['NULL',')']):-var(Value),!.$get_values_for_insert359,11261 -'$get_values_for_insert'([_,_],[Value],['NULL',')']):-var(Value),!.$get_values_for_insert359,11261 -'$get_values_for_insert'([_,integer],[Value],[Value,')']):-!.$get_values_for_insert360,11329 -'$get_values_for_insert'([_,integer],[Value],[Value,')']):-!.$get_values_for_insert360,11329 -'$get_values_for_insert'([_,integer],[Value],[Value,')']):-!.$get_values_for_insert360,11329 -'$get_values_for_insert'([_,real],[Value],[Value,')']):-!.$get_values_for_insert361,11391 -'$get_values_for_insert'([_,real],[Value],[Value,')']):-!.$get_values_for_insert361,11391 -'$get_values_for_insert'([_,real],[Value],[Value,')']):-!.$get_values_for_insert361,11391 -'$get_values_for_insert'([_,string],[Value],['"',Value,'")']):-!.$get_values_for_insert362,11450 -'$get_values_for_insert'([_,string],[Value],['"',Value,'")']):-!.$get_values_for_insert362,11450 -'$get_values_for_insert'([_,string],[Value],['"',Value,'")']):-!.$get_values_for_insert362,11450 -'$get_values_for_insert'([_,_|TTypesList],[Value|TValues],['NULL',','|RestValues]):-$get_values_for_insert364,11517 -'$get_values_for_insert'([_,_|TTypesList],[Value|TValues],['NULL',','|RestValues]):-$get_values_for_insert364,11517 -'$get_values_for_insert'([_,_|TTypesList],[Value|TValues],['NULL',','|RestValues]):-$get_values_for_insert364,11517 -'$get_values_for_insert'([_,integer|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert367,11682 -'$get_values_for_insert'([_,integer|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert367,11682 -'$get_values_for_insert'([_,integer|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert367,11682 -'$get_values_for_insert'([_,real|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert369,11839 -'$get_values_for_insert'([_,real|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert369,11839 -'$get_values_for_insert'([_,real|TTypesList],[Value|TValues],[Value,','|RestValues]):-!,$get_values_for_insert369,11839 -'$get_values_for_insert'([_,string|TTypesList],[Value|TValues],['"',Value,'",'|RestValues]):-!,$get_values_for_insert371,11993 -'$get_values_for_insert'([_,string|TTypesList],[Value|TValues],['"',Value,'",'|RestValues]):-!,$get_values_for_insert371,11993 -'$get_values_for_insert'([_,string|TTypesList],[Value|TValues],['"',Value,'",'|RestValues]):-!,$get_values_for_insert371,11993 -'$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],['('|ValuesList],Relation):-$get_values_for_insert376,12177 -'$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],['('|ValuesList],Relation):-$get_values_for_insert376,12177 -'$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],['('|ValuesList],Relation):-$get_values_for_insert'([query(Att,[rel(Relation,_)],_)],[376,12177 -'$get_values_for_insert_make_list'([att(_,_)],['NULL',')']):-!.$get_values_for_insert_make_list379,12325 -'$get_values_for_insert_make_list'([att(_,_)],['NULL',')']):-!.$get_values_for_insert_make_list379,12325 -'$get_values_for_insert_make_list'([att(_,_)],['NULL',')']):-!.$get_values_for_insert_make_list379,12325 -'$get_values_for_insert_make_list'(['$const$'(Value)],[Value,')']):-$get_values_for_insert_make_list380,12389 -'$get_values_for_insert_make_list'(['$const$'(Value)],[Value,')']):-$get_values_for_insert_make_list380,12389 -'$get_values_for_insert_make_list'(['$const$'(Value)],[Value,')']):-$get_values_for_insert_make_list'(['$const$380,12389 -'$get_values_for_insert_make_list'(['$const$'(Value)],['"',Value,'")']):-!.$get_values_for_insert_make_list382,12483 -'$get_values_for_insert_make_list'(['$const$'(Value)],['"',Value,'")']):-!.$get_values_for_insert_make_list382,12483 -'$get_values_for_insert_make_list'(['$const$'(Value)],['"',Value,'")']):-!.$get_values_for_insert_make_list'(['$const$382,12483 -'$get_values_for_insert_make_list'([att(_,_)|TAtt],['NULL',','|TList]):-!,$get_values_for_insert_make_list384,12560 -'$get_values_for_insert_make_list'([att(_,_)|TAtt],['NULL',','|TList]):-!,$get_values_for_insert_make_list384,12560 -'$get_values_for_insert_make_list'([att(_,_)|TAtt],['NULL',','|TList]):-!,$get_values_for_insert_make_list384,12560 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],[Value,','|TList]):-$get_values_for_insert_make_list386,12690 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],[Value,','|TList]):-$get_values_for_insert_make_list386,12690 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],[Value,','|TList]):-$get_values_for_insert_make_list'(['$const$386,12690 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],['"',Value,'"',','|TList]):-$get_values_for_insert_make_list389,12851 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],['"',Value,'"',','|TList]):-$get_values_for_insert_make_list389,12851 -'$get_values_for_insert_make_list'(['$const$'(Value)|TAtt],['"',Value,'"',','|TList]):-$get_values_for_insert_make_list'(['$const$389,12851 -'$get_value'(Connection,Con) :-$get_value395,13068 -'$get_value'(Connection,Con) :-$get_value395,13068 -'$get_value'(Connection,Con) :-$get_value395,13068 -'$check_fields'([],[]).$check_fields400,13175 -'$check_fields'([],[])./p,predicate,predicate definition400,13175 -'$check_fields'([],[]).$check_fields400,13175 -'$check_fields'(['$const$'(_)|TAtt],[_|TFields]):-$check_fields401,13199 -'$check_fields'(['$const$'(_)|TAtt],[_|TFields]):-$check_fields401,13199 -'$check_fields'(['$const$'(_)|TAtt],[_|TFields]):-$check_fields'(['$const$401,13199 -'$check_fields'([att(_,Name)|TAtt],[property(Name,_,1,1)|TFields]):-!,$check_fields405,13388 -'$check_fields'([att(_,Name)|TAtt],[property(Name,_,1,1)|TFields]):-!,$check_fields405,13388 -'$check_fields'([att(_,Name)|TAtt],[property(Name,_,1,1)|TFields]):-!,$check_fields405,13388 -'$check_fields'([att(_,Name)|TAtt],[property(Name,0,_,_)|TFields]):-!,$check_fields407,13498 -'$check_fields'([att(_,Name)|TAtt],[property(Name,0,_,_)|TFields]):-!,$check_fields407,13498 -'$check_fields'([att(_,Name)|TAtt],[property(Name,0,_,_)|TFields]):-!,$check_fields407,13498 -'$assert_facts'(Module,Fact):-$assert_facts416,13715 -'$assert_facts'(Module,Fact):-$assert_facts416,13715 -'$assert_facts'(Module,Fact):-$assert_facts416,13715 -'$assert_facts'(Module,Fact):-$assert_facts418,13769 -'$assert_facts'(Module,Fact):-$assert_facts418,13769 -'$assert_facts'(Module,Fact):-$assert_facts418,13769 -'$lenght'([],0).$lenght421,13830 -'$lenght'([],0)./p,predicate,predicate definition421,13830 -'$lenght'([],0).$lenght421,13830 -'$lenght'([_|T],Sum):-$lenght422,13847 -'$lenght'([_|T],Sum):-$lenght422,13847 -'$lenght'([_|T],Sum):-$lenght422,13847 -'$check_list_on_list'([],_).$check_list_on_list426,13921 -'$check_list_on_list'([],_)./p,predicate,predicate definition426,13921 -'$check_list_on_list'([],_).$check_list_on_list426,13921 -'$check_list_on_list'([H|T],DbGoalArgs) :-$check_list_on_list427,13950 -'$check_list_on_list'([H|T],DbGoalArgs) :-$check_list_on_list427,13950 -'$check_list_on_list'([H|T],DbGoalArgs) :-$check_list_on_list427,13950 -'$member_strick'(Element1, [Element2|_]) :-$member_strick431,14065 -'$member_strick'(Element1, [Element2|_]) :-$member_strick431,14065 -'$member_strick'(Element1, [Element2|_]) :-$member_strick431,14065 -'$member_strick'(Element, [_|Rest]) :-$member_strick433,14134 -'$member_strick'(Element, [_|Rest]) :-$member_strick433,14134 -'$member_strick'(Element, [_|Rest]) :-$member_strick433,14134 -'$make_stats_list'([],[]).$make_stats_list437,14216 -'$make_stats_list'([],[])./p,predicate,predicate definition437,14216 -'$make_stats_list'([],[]).$make_stats_list437,14216 -'$make_stats_list'([Ref|Tail],[Time|Final]):-$make_stats_list438,14243 -'$make_stats_list'([Ref|Tail],[Time|Final]):-$make_stats_list438,14243 -'$make_stats_list'([Ref|Tail],[Time|Final]):-$make_stats_list438,14243 - -packages/myddas/postgres/myddas_postgres.c,6201 -#define BOOLOID BOOLOID22,656 -#define BYTEOID BYTEOID23,685 -#define CHAROID CHAROID24,714 -#define NAMEOID NAMEOID25,743 -#define INT8OID INT8OID26,772 -#define INT2OID INT2OID27,801 -#define INT2VECTOROID INT2VECTOROID28,830 -#define INT4OID INT4OID29,865 -#define REGPROCOID REGPROCOID30,894 -#define TEXTOID TEXTOID31,926 -#define OIDOID OIDOID32,955 -#define TIDOID TIDOID33,983 -#define XIDOID XIDOID34,1011 -#define CIDOID CIDOID35,1039 -#define OIDVECTOROID OIDVECTOROID36,1067 -#define JSONOID JSONOID37,1101 -#define XMLOID XMLOID38,1131 -#define PGNODETREEOID PGNODETREEOID39,1160 -#define POINTOID POINTOID40,1196 -#define LSEGOID LSEGOID41,1227 -#define PATHOID PATHOID42,1257 -#define BOXOID BOXOID43,1287 -#define POLYGONOID POLYGONOID44,1316 -#define LINEOID LINEOID45,1349 -#define FLOAT4OID FLOAT4OID46,1379 -#define FLOAT8OID FLOAT8OID47,1411 -#define ABSTIMEOID ABSTIMEOID48,1443 -#define RELTIMEOID RELTIMEOID49,1476 -#define TINTERVALOID TINTERVALOID50,1509 -#define UNKNOWNOID UNKNOWNOID51,1544 -#define CIRCLEOID CIRCLEOID52,1577 -#define CASHOID CASHOID53,1609 -#define MACADDROID MACADDROID54,1639 -#define INETOID INETOID55,1672 -#define CIDROID CIDROID56,1702 -#define INT2ARRAYOID INT2ARRAYOID57,1732 -#define INT4ARRAYOID INT4ARRAYOID58,1768 -#define TEXTARRAYOID TEXTARRAYOID59,1804 -#define OIDARRAYOID OIDARRAYOID60,1840 -#define FLOAT4ARRAYOID FLOAT4ARRAYOID61,1875 -#define ACLITEMOID ACLITEMOID62,1913 -#define CSTRINGARRAYOID CSTRINGARRAYOID63,1947 -#define BPCHAROID BPCHAROID64,1986 -#define VARCHAROID VARCHAROID65,2019 -#define DATEOID DATEOID66,2053 -#define TIMEOID TIMEOID67,2084 -#define TIMESTAMPOID TIMESTAMPOID68,2115 -#define TIMESTAMPTZOID TIMESTAMPTZOID69,2151 -#define INTERVALOID INTERVALOID70,2189 -#define TIMETZOID TIMETZOID71,2224 -#define BITOID BITOID72,2257 -#define VARBITOID VARBITOID73,2287 -#define NUMERICOID NUMERICOID74,2320 -#define REFCURSOROID REFCURSOROID75,2354 -#define REGPROCEDUREOID REGPROCEDUREOID76,2390 -#define REGOPEROID REGOPEROID77,2429 -#define REGOPERATOROID REGOPERATOROID78,2463 -#define REGCLASSOID REGCLASSOID79,2501 -#define REGTYPEOID REGTYPEOID80,2536 -#define REGTYPEARRAYOID REGTYPEARRAYOID81,2570 -#define UUIDOID UUIDOID82,2609 -#define LSNOID LSNOID83,2640 -#define TSVECTOROID TSVECTOROID84,2670 -#define GTSVECTOROID GTSVECTOROID85,2705 -#define TSQUERYOID TSQUERYOID86,2741 -#define REGCONFIGOID REGCONFIGOID87,2775 -#define REGDICTIONARYOID REGDICTIONARYOID88,2811 -#define JSONBOID JSONBOID89,2851 -#define INT4RANGEOID INT4RANGEOID90,2883 -#define RECORDOID RECORDOID91,2919 -#define RECORDARRAYOID RECORDARRAYOID92,2952 -#define CSTRINGOID CSTRINGOID93,2990 -#define ANYOID ANYOID94,3024 -#define ANYARRAYOID ANYARRAYOID95,3054 -#define VOIDOID VOIDOID96,3089 -#define TRIGGEROID TRIGGEROID97,3120 -#define EVTTRIGGEROID EVTTRIGGEROID98,3154 -#define LANGUAGE_HANDLEROID LANGUAGE_HANDLEROID99,3191 -#define INTERNALOID INTERNALOID100,3234 -#define OPAQUEOID OPAQUEOID101,3269 -#define ANYELEMENTOID ANYELEMENTOID102,3302 -#define ANYNONARRAYOID ANYNONARRAYOID103,3339 -#define ANYENUMOID ANYENUMOID104,3377 -#define FDW_HANDLEROID FDW_HANDLEROID105,3411 -#define ANYRANGEOID ANYRANGEOID106,3449 -#define CALL_POSTGRES(CALL_POSTGRES120,3720 -#define GET_POSTGRES(GET_POSTGRES131,4292 -static Int NULL_id = 0;NULL_id143,4731 -typedef struct result_set {result_set145,4756 - PGconn *db;db146,4784 - PGconn *db;result_set::db146,4784 - PGresult *res;res147,4798 - PGresult *res;result_set::res147,4798 - const char *stmt;stmt148,4815 - const char *stmt;result_set::stmt148,4815 - int i ;i149,4835 - int i ;result_set::i149,4835 - int nrows;nrows150,4849 - int nrows;result_set::nrows150,4849 - int ncols;ncols151,4862 - int ncols;result_set::ncols151,4862 -} resultSet;resultSet152,4875 -void Yap_InitMYDDAS_PGPreds(void)Yap_InitMYDDAS_PGPreds171,5568 -void Yap_InitBackMYDDAS_PGPreds(void)Yap_InitBackMYDDAS_PGPreds205,6898 -c_postgres_connect( USES_REGS1 ) {c_postgres_connect216,7130 -myddas_stat_init_query( PGconn *db )myddas_stat_init_query293,9441 -myddas_stat_end_query( MYDDAS_STATS_TIME start )myddas_stat_end_query315,10097 -myddas_stat_transfer_query( MYDDAS_STATS_TIME diff )myddas_stat_transfer_query348,11207 -c_postgres_query( USES_REGS1 ) {c_postgres_query424,14081 -c_postgres_number_of_fields( USES_REGS1 ) {c_postgres_number_of_fields505,16037 -c_postgres_get_attributes_types( USES_REGS1 ) {c_postgres_get_attributes_types534,16734 -c_postgres_disconnect( USES_REGS1 ) {c_postgres_disconnect609,18240 -c_postgres_table_write( USES_REGS1 ) {c_postgres_table_write628,18576 -c_postgres_get_fields_properties( USES_REGS1 ) {c_postgres_get_fields_properties640,18818 -c_postgres_get_next_result_set( USES_REGS1 ) {c_postgres_get_next_result_set705,20538 -c_postgres_get_database( USES_REGS1 ) {c_postgres_get_database715,20729 -c_postgres_change_database( USES_REGS1 ) {c_postgres_change_database727,20924 -c_postgres_row_cut( USES_REGS1 ) {c_postgres_row_cut733,21018 -#define cvt(cvt744,21253 -cvt__(const char *s USES_REGS) {cvt__747,21304 -c_postgres_row( USES_REGS1 ) {c_postgres_row753,21480 -void Yap_InitMYDDAS_PGPreds(void)Yap_InitMYDDAS_PGPreds894,25452 -void Yap_InitBackMYDDAS_PGPreds(void)Yap_InitBackMYDDAS_PGPreds898,25491 -void init_pg( void )init_pg904,25542 -int WINAPI win_pg(HANDLE hinst, DWORD reason, LPVOID reserved) {win_pg917,25735 - -packages/myddas/postgres/myddas_wkb2prolog.h,59 -# define MYDDAS_WKB2PROLOG_H_MYDDAS_WKB2PROLOG_H_2,32 - -packages/myddas/sqlite3/hh,0 - -packages/myddas/sqlite3/myddas_sqlite3.c,2218 -#define CALL_SQLITE(CALL_SQLITE36,947 -#define CALL_SQLITE_EXPECT(CALL_SQLITE_EXPECT47,1681 -static Int null_id = 0;null_id58,2415 -typedef struct result_set {result_set60,2440 - sqlite3_stmt *stmt;stmt61,2468 - sqlite3_stmt *stmt;result_set::stmt61,2468 - sqlite3 *db;db62,2490 - sqlite3 *db;result_set::db62,2490 - int nrows;nrows63,2505 - int nrows;result_set::nrows63,2505 - int length;length64,2518 - int length;result_set::length64,2518 -} resultSet;resultSet65,2532 -void Yap_InitMYDDAS_SQLITE3Preds(void) {Yap_InitMYDDAS_SQLITE3Preds83,3198 -void Yap_InitBackMYDDAS_SQLITE3Preds(void) {Yap_InitBackMYDDAS_SQLITE3Preds117,4568 -static Int c_sqlite3_connect(USES_REGS1) {c_sqlite3_connect123,4795 -static MYDDAS_STATS_TIME myddas_stat_init_query(sqlite3 *db) {myddas_stat_init_query152,5408 -myddas_stat_end_query(MYDDAS_STATS_TIME start) {myddas_stat_end_query169,6063 -static void myddas_stat_transfer_query(MYDDAS_STATS_TIME diff) {myddas_stat_transfer_query197,7113 -static Int c_sqlite3_query(USES_REGS1) {c_sqlite3_query274,10271 -static Int c_sqlite3_number_of_fields(USES_REGS1) {c_sqlite3_number_of_fields318,11331 -static Int c_sqlite3_get_attributes_types(USES_REGS1) {c_sqlite3_get_attributes_types342,11946 -static Int c_sqlite3_disconnect(USES_REGS1) {c_sqlite3_disconnect404,13323 -static Int c_sqlite3_table_write(USES_REGS1) {c_sqlite3_table_write419,13651 -static Int c_sqlite3_get_fields_properties(USES_REGS1) {c_sqlite3_get_fields_properties430,13905 -static Int c_sqlite3_get_next_result_set(USES_REGS1) {c_sqlite3_get_next_result_set485,15360 -static Int c_sqlite3_get_database(USES_REGS1) {c_sqlite3_get_database505,15886 -static Int c_sqlite3_change_database(USES_REGS1) {c_sqlite3_change_database515,16078 -static Int c_sqlite3_row_cut(USES_REGS1) {c_sqlite3_row_cut520,16169 -static Int c_sqlite3_row(USES_REGS1) {c_sqlite3_row531,16458 -void Yap_InitMYDDAS_SQLITE3Preds(void) {}Yap_InitMYDDAS_SQLITE3Preds650,20135 -void Yap_InitBackMYDDAS_SQLITE3Preds(void) {}Yap_InitBackMYDDAS_SQLITE3Preds651,20177 -void init_sqlite3( void )init_sqlite3655,20232 -int WINAPI win_sqlite3(HANDLE hinst, DWORD reason, LPVOID reserved) {win_sqlite3668,20445 - -packages/myddas/sqlite3/src/Android/jni/Android.mk,43 -LOCAL_PATH:= $(call my-dir)LOCAL_PATH2,1 - -packages/myddas/sqlite3/src/Android/jni/Application.mk,36 -APP_STL:=stlport_staticAPP_STL1,0 - -packages/myddas/sqlite3/src/Android/jni/sqlite/ALog-priv.h,385 -#define NATIVEHELPER_ALOGPRIV_H_NATIVEHELPER_ALOGPRIV_H_22,750 -#define LOG_NDEBUG LOG_NDEBUG28,843 -#define LOG_NDEBUG LOG_NDEBUG30,870 -#define ALOG(ALOG42,1093 -#define ALOGV(ALOGV48,1222 -#define ALOGV(ALOGV50,1259 -#define ALOGD(ALOGD55,1355 -#define ALOGI(ALOGI59,1442 -#define ALOGW(ALOGW63,1528 -#define ALOGE(ALOGE67,1614 -#define LOG_FATAL_IF(LOG_FATAL_IF74,1799 - -packages/myddas/sqlite3/src/Android/jni/sqlite/Android.mk,161 -LOCAL_PATH:= $(call my-dir)LOCAL_PATH2,1 -LOCAL_SRC_FILES:= \LOCAL_SRC_FILES29,886 -LOCAL_MODULE:= libsqliteXLOCAL_MODULE40,1222 - -packages/myddas/sqlite3/src/Android/jni/sqlite/android_database_SQLiteCommon.cpp,1112 -namespace android {android23,765 -void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle) {throw_sqlite3_exception26,867 -void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle) {android::throw_sqlite3_exception26,867 -void throw_sqlite3_exception(JNIEnv* env, const char* message) {throw_sqlite3_exception31,1032 -void throw_sqlite3_exception(JNIEnv* env, const char* message) {android::throw_sqlite3_exception31,1032 -void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message) {throw_sqlite3_exception38,1270 -void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message) {android::throw_sqlite3_exception38,1270 -void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message) {throw_sqlite3_exception_errcode56,2200 -void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message) {android::throw_sqlite3_exception_errcode56,2200 -void throw_sqlite3_exception(JNIEnv* env, int errcode,throw_sqlite3_exception63,2449 -void throw_sqlite3_exception(JNIEnv* env, int errcode,android::throw_sqlite3_exception63,2449 - -packages/myddas/sqlite3/src/Android/jni/sqlite/android_database_SQLiteCommon.h,269 -#define _ANDROID_DATABASE_SQLITE_COMMON_H_ANDROID_DATABASE_SQLITE_COMMON_H22,763 -#define SQLITE_LOG_TAG SQLITE_LOG_TAG30,916 -#define SQLITE_TRACE_TAG SQLITE_TRACE_TAG31,951 -#define SQLITE_PROFILE_TAG SQLITE_PROFILE_TAG32,995 -namespace android {android34,1036 - -packages/myddas/sqlite3/src/Android/jni/sqlite/android_database_SQLiteConnection.cpp,12679 -#define LOG_TAG LOG_TAG21,720 -#define UTF16_STORAGE UTF16_STORAGE46,1134 -namespace android {android48,1159 -static const int BUSY_TIMEOUT_MS = 2500;BUSY_TIMEOUT_MS68,1939 -static const int BUSY_TIMEOUT_MS = 2500;android::BUSY_TIMEOUT_MS68,1939 -static JavaVM *gpJavaVM = 0;gpJavaVM70,1981 -static JavaVM *gpJavaVM = 0;android::gpJavaVM70,1981 - jfieldID name;name73,2027 - jfieldID name;android::__anon447::name73,2027 - jfieldID numArgs;numArgs74,2044 - jfieldID numArgs;android::__anon447::numArgs74,2044 - jmethodID dispatchCallback;dispatchCallback75,2064 - jmethodID dispatchCallback;android::__anon447::dispatchCallback75,2064 -} gSQLiteCustomFunctionClassInfo;gSQLiteCustomFunctionClassInfo76,2094 -} gSQLiteCustomFunctionClassInfo;android::gSQLiteCustomFunctionClassInfo76,2094 -static struct { jclass clazz; } gStringClassInfo;clazz78,2129 -static struct { jclass clazz; } gStringClassInfo;android::__anon448::clazz78,2129 -static struct { jclass clazz; } gStringClassInfo;gStringClassInfo78,2129 -static struct { jclass clazz; } gStringClassInfo;android::gStringClassInfo78,2129 -struct SQLiteConnection {SQLiteConnection80,2180 -struct SQLiteConnection {android::SQLiteConnection80,2180 - OPEN_READWRITE = 0x00000000,OPEN_READWRITE84,2309 - OPEN_READWRITE = 0x00000000,android::SQLiteConnection::OPEN_READWRITE84,2309 - OPEN_READONLY = 0x00000001,OPEN_READONLY85,2342 - OPEN_READONLY = 0x00000001,android::SQLiteConnection::OPEN_READONLY85,2342 - OPEN_READ_MASK = 0x00000001,OPEN_READ_MASK86,2374 - OPEN_READ_MASK = 0x00000001,android::SQLiteConnection::OPEN_READ_MASK86,2374 - NO_LOCALIZED_COLLATORS = 0x00000010,NO_LOCALIZED_COLLATORS87,2407 - NO_LOCALIZED_COLLATORS = 0x00000010,android::SQLiteConnection::NO_LOCALIZED_COLLATORS87,2407 - CREATE_IF_NECESSARY = 0x10000000,CREATE_IF_NECESSARY88,2448 - CREATE_IF_NECESSARY = 0x10000000,android::SQLiteConnection::CREATE_IF_NECESSARY88,2448 - sqlite3 *const db;db91,2492 - sqlite3 *const db;android::SQLiteConnection::db91,2492 - const int openFlags;openFlags92,2513 - const int openFlags;android::SQLiteConnection::openFlags92,2513 - std::string path;path93,2536 - std::string path;android::SQLiteConnection::path93,2536 - std::string label;label94,2556 - std::string label;android::SQLiteConnection::label94,2556 - volatile bool canceled;canceled96,2578 - volatile bool canceled;android::SQLiteConnection::canceled96,2578 - SQLiteConnection(sqlite3 *db, int openFlags, const std::string &path,SQLiteConnection98,2605 - SQLiteConnection(sqlite3 *db, int openFlags, const std::string &path,android::SQLiteConnection::SQLiteConnection98,2605 -static void sqliteTraceCallback(void *data, const char *sql) {sqliteTraceCallback105,2892 -static void sqliteTraceCallback(void *data, const char *sql) {android::sqliteTraceCallback105,2892 -static void sqliteProfileCallback(void *data, const char *sql,sqliteProfileCallback112,3203 -static void sqliteProfileCallback(void *data, const char *sql,android::sqliteProfileCallback112,3203 -static int sqliteProgressHandlerCallback(void *data) {sqliteProgressHandlerCallback120,3594 -static int sqliteProgressHandlerCallback(void *data) {android::sqliteProgressHandlerCallback120,3594 -static int coll_localized(void *not_used, int nKey1, const void *pKey1,coll_localized137,4288 -static int coll_localized(void *not_used, int nKey1, const void *pKey1,android::coll_localized137,4288 -static jlong nativeOpen(JNIEnv *env, jclass clazz, jstring pathStr,nativeOpen148,4561 -static jlong nativeOpen(JNIEnv *env, jclass clazz, jstring pathStr,android::nativeOpen148,4561 -static void nativeClose(JNIEnv *env, jclass clazz, jlong connectionPtr) {nativeClose226,7113 -static void nativeClose(JNIEnv *env, jclass clazz, jlong connectionPtr) {android::nativeClose226,7113 -static void sqliteCustomFunctionCallback(sqlite3_context *context, int argc,sqliteCustomFunctionCallback246,7768 -static void sqliteCustomFunctionCallback(sqlite3_context *context, int argc,android::sqliteCustomFunctionCallback246,7768 -static void sqliteCustomFunctionDestructor(void *data) {sqliteCustomFunctionDestructor300,9540 -static void sqliteCustomFunctionDestructor(void *data) {android::sqliteCustomFunctionDestructor300,9540 -static void nativeRegisterCustomFunction(JNIEnv *env, jclass clazz,nativeRegisterCustomFunction307,9777 -static void nativeRegisterCustomFunction(JNIEnv *env, jclass clazz,android::nativeRegisterCustomFunction307,9777 -static void nativeRegisterLocalizedCollators(JNIEnv *env, jclass clazz,nativeRegisterLocalizedCollators336,10941 -static void nativeRegisterLocalizedCollators(JNIEnv *env, jclass clazz,android::nativeRegisterLocalizedCollators336,10941 -static jlong nativePrepareStatement(JNIEnv *env, jclass clazz,nativePrepareStatement352,11538 -static jlong nativePrepareStatement(JNIEnv *env, jclass clazz,android::nativePrepareStatement352,11538 -static void nativeFinalizeStatement(JNIEnv *env, jclass clazz,nativeFinalizeStatement384,12795 -static void nativeFinalizeStatement(JNIEnv *env, jclass clazz,android::nativeFinalizeStatement384,12795 -static jint nativeGetParameterCount(JNIEnv *env, jclass clazz,nativeGetParameterCount399,13436 -static jint nativeGetParameterCount(JNIEnv *env, jclass clazz,android::nativeGetParameterCount399,13436 -static jboolean nativeIsReadOnly(JNIEnv *env, jclass clazz, jlong connectionPtr,nativeIsReadOnly408,13805 -static jboolean nativeIsReadOnly(JNIEnv *env, jclass clazz, jlong connectionPtr,android::nativeIsReadOnly408,13805 -static jint nativeGetColumnCount(JNIEnv *env, jclass clazz, jlong connectionPtr,nativeGetColumnCount417,14166 -static jint nativeGetColumnCount(JNIEnv *env, jclass clazz, jlong connectionPtr,android::nativeGetColumnCount417,14166 -static jstring nativeGetColumnName(JNIEnv *env, jclass clazz,nativeGetColumnName426,14521 -static jstring nativeGetColumnName(JNIEnv *env, jclass clazz,android::nativeGetColumnName426,14521 -static void nativeBindNull(JNIEnv *env, jclass clazz, jlong connectionPtr,nativeBindNull445,15131 -static void nativeBindNull(JNIEnv *env, jclass clazz, jlong connectionPtr,android::nativeBindNull445,15131 -static void nativeBindLong(JNIEnv *env, jclass clazz, jlong connectionPtr,nativeBindLong457,15574 -static void nativeBindLong(JNIEnv *env, jclass clazz, jlong connectionPtr,android::nativeBindLong457,15574 -static void nativeBindDouble(JNIEnv *env, jclass clazz, jlong connectionPtr,nativeBindDouble469,16038 -static void nativeBindDouble(JNIEnv *env, jclass clazz, jlong connectionPtr,android::nativeBindDouble469,16038 -static void nativeBindString(JNIEnv *env, jclass clazz, jlong connectionPtr,nativeBindString481,16509 -static void nativeBindString(JNIEnv *env, jclass clazz, jlong connectionPtr,android::nativeBindString481,16509 -static void nativeBindBlob(JNIEnv *env, jclass clazz, jlong connectionPtr,nativeBindBlob498,17267 -static void nativeBindBlob(JNIEnv *env, jclass clazz, jlong connectionPtr,android::nativeBindBlob498,17267 -static void nativeResetStatementAndClearBindings(JNIEnv *env, jclass clazz,nativeResetStatementAndClearBindings516,18022 -static void nativeResetStatementAndClearBindings(JNIEnv *env, jclass clazz,android::nativeResetStatementAndClearBindings516,18022 -static int executeNonQuery(JNIEnv *env, SQLiteConnection *connection,executeNonQuery532,18610 -static int executeNonQuery(JNIEnv *env, SQLiteConnection *connection,android::executeNonQuery532,18610 -static void nativeExecute(JNIEnv *env, jclass clazz, jlong connectionPtr,nativeExecute545,19091 -static void nativeExecute(JNIEnv *env, jclass clazz, jlong connectionPtr,android::nativeExecute545,19091 -static jint nativeExecuteForChangedRowCount(JNIEnv *env, jclass clazz,nativeExecuteForChangedRowCount554,19432 -static jint nativeExecuteForChangedRowCount(JNIEnv *env, jclass clazz,android::nativeExecuteForChangedRowCount554,19432 -static jlong nativeExecuteForLastInsertedRowId(JNIEnv *env, jclass clazz,nativeExecuteForLastInsertedRowId565,19931 -static jlong nativeExecuteForLastInsertedRowId(JNIEnv *env, jclass clazz,android::nativeExecuteForLastInsertedRowId565,19931 -static int executeOneRowQuery(JNIEnv *env, SQLiteConnection *connection,executeOneRowQuery578,20514 -static int executeOneRowQuery(JNIEnv *env, SQLiteConnection *connection,android::executeOneRowQuery578,20514 -static jlong nativeExecuteForLong(JNIEnv *env, jclass clazz,nativeExecuteForLong587,20779 -static jlong nativeExecuteForLong(JNIEnv *env, jclass clazz,android::nativeExecuteForLong587,20779 -static jstring nativeExecuteForString(JNIEnv *env, jclass clazz,nativeExecuteForString600,21280 -static jstring nativeExecuteForString(JNIEnv *env, jclass clazz,android::nativeExecuteForString600,21280 -static int createAshmemRegionWithData(JNIEnv *env, const void *data,createAshmemRegionWithData618,21982 -static int createAshmemRegionWithData(JNIEnv *env, const void *data,android::createAshmemRegionWithData618,21982 -static jint nativeExecuteForBlobFileDescriptor(JNIEnv *env, jclass clazz,nativeExecuteForBlobFileDescriptor655,23012 -static jint nativeExecuteForBlobFileDescriptor(JNIEnv *env, jclass clazz,android::nativeExecuteForBlobFileDescriptor655,23012 -enum CWMethodNames {CWMethodNames679,23932 -enum CWMethodNames {android::CWMethodNames679,23932 - CW_CLEAR = 0,CW_CLEAR680,23953 - CW_CLEAR = 0,android::CW_CLEAR680,23953 - CW_SETNUMCOLUMNS = 1,CW_SETNUMCOLUMNS681,23969 - CW_SETNUMCOLUMNS = 1,android::CW_SETNUMCOLUMNS681,23969 - CW_ALLOCROW = 2,CW_ALLOCROW682,23993 - CW_ALLOCROW = 2,android::CW_ALLOCROW682,23993 - CW_FREELASTROW = 3,CW_FREELASTROW683,24012 - CW_FREELASTROW = 3,android::CW_FREELASTROW683,24012 - CW_PUTNULL = 4,CW_PUTNULL684,24034 - CW_PUTNULL = 4,android::CW_PUTNULL684,24034 - CW_PUTLONG = 5,CW_PUTLONG685,24052 - CW_PUTLONG = 5,android::CW_PUTLONG685,24052 - CW_PUTDOUBLE = 6,CW_PUTDOUBLE686,24070 - CW_PUTDOUBLE = 6,android::CW_PUTDOUBLE686,24070 - CW_PUTSTRING = 7,CW_PUTSTRING687,24090 - CW_PUTSTRING = 7,android::CW_PUTSTRING687,24090 - CW_PUTBLOB = 8CW_PUTBLOB688,24110 - CW_PUTBLOB = 8android::CW_PUTBLOB688,24110 -struct CWMethod {CWMethod694,24216 -struct CWMethod {android::CWMethod694,24216 - jmethodID id; /* Method id */id695,24234 - jmethodID id; /* Method id */android::CWMethod::id695,24234 - const char *zName; /* Method name */zName696,24271 - const char *zName; /* Method name */android::CWMethod::zName696,24271 - const char *zSig; /* Method JNI signature */zSig697,24310 - const char *zSig; /* Method JNI signature */android::CWMethod::zSig697,24310 -static jboolean copyRowToWindow(JNIEnv *pEnv, jobject win, int iRow,copyRowToWindow706,24613 -static jboolean copyRowToWindow(JNIEnv *pEnv, jobject win, int iRow,android::copyRowToWindow706,24613 -static jboolean setWindowNumColumns(JNIEnv *pEnv, jobject win,setWindowNumColumns763,26333 -static jboolean setWindowNumColumns(JNIEnv *pEnv, jobject win,android::setWindowNumColumns763,26333 -static jlong nativeExecuteForCursorWindow(nativeExecuteForCursorWindow798,27936 -static jlong nativeExecuteForCursorWindow(android::nativeExecuteForCursorWindow798,27936 -static jint nativeGetDbLookaside(JNIEnv *env, jobject clazz,nativeGetDbLookaside884,31121 -static jint nativeGetDbLookaside(JNIEnv *env, jobject clazz,android::nativeGetDbLookaside884,31121 -static void nativeCancel(JNIEnv *env, jobject clazz, jlong connectionPtr) {nativeCancel896,31485 -static void nativeCancel(JNIEnv *env, jobject clazz, jlong connectionPtr) {android::nativeCancel896,31485 -static void nativeResetCancel(JNIEnv *env, jobject clazz, jlong connectionPtr,nativeResetCancel902,31687 -static void nativeResetCancel(JNIEnv *env, jobject clazz, jlong connectionPtr,android::nativeResetCancel902,31687 -static jboolean nativeHasCodec(JNIEnv *env, jobject clazz) {nativeHasCodec916,32164 -static jboolean nativeHasCodec(JNIEnv *env, jobject clazz) {android::nativeHasCodec916,32164 -static JNINativeMethod sMethods[] = {sMethods924,32296 -static JNINativeMethod sMethods[] = {android::sMethods924,32296 -#define FIND_CLASS(FIND_CLASS968,34543 -#define GET_METHOD_ID(GET_METHOD_ID972,34763 -#define GET_FIELD_ID(GET_FIELD_ID976,34984 -int register_android_database_SQLiteConnection(JNIEnv *env) {register_android_database_SQLiteConnection980,35204 -int register_android_database_SQLiteConnection(JNIEnv *env) {android::register_android_database_SQLiteConnection980,35204 -extern "C" JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) {JNI_OnLoad1003,36115 - -packages/myddas/sqlite3/src/Android/jni/sqlite/android_database_SQLiteDebug.cpp,1223 -#define LOG_TAG LOG_TAG21,721 -namespace android {android34,916 - jfieldID memoryUsed;memoryUsed37,953 - jfieldID memoryUsed;android::__anon450::memoryUsed37,953 - jfieldID pageCacheOverflow;pageCacheOverflow38,978 - jfieldID pageCacheOverflow;android::__anon450::pageCacheOverflow38,978 - jfieldID largestMemAlloc;largestMemAlloc39,1010 - jfieldID largestMemAlloc;android::__anon450::largestMemAlloc39,1010 -} gSQLiteDebugPagerStatsClassInfo;gSQLiteDebugPagerStatsClassInfo40,1040 -} gSQLiteDebugPagerStatsClassInfo;android::gSQLiteDebugPagerStatsClassInfo40,1040 -static void nativeGetPagerStats(JNIEnv *env, jobject clazz, jobject statsObj)nativeGetPagerStats42,1076 -static void nativeGetPagerStats(JNIEnv *env, jobject clazz, jobject statsObj)android::nativeGetPagerStats42,1076 -static JNINativeMethod gMethods[] =gMethods62,1812 -static JNINativeMethod gMethods[] =android::gMethods62,1812 -#define FIND_CLASS(FIND_CLASS68,1984 -#define GET_FIELD_ID(GET_FIELD_ID72,2129 -int register_android_database_SQLiteDebug(JNIEnv *env)register_android_database_SQLiteDebug76,2325 -int register_android_database_SQLiteDebug(JNIEnv *env)android::register_android_database_SQLiteDebug76,2325 - -packages/myddas/sqlite3/src/Android/jni/sqlite/android_database_SQLiteGlobal.cpp,1083 -#define LOG_TAG LOG_TAG21,721 -namespace android {android36,925 -static const int SOFT_HEAP_LIMIT = 8 * 1024 * 1024;SOFT_HEAP_LIMIT41,1104 -static const int SOFT_HEAP_LIMIT = 8 * 1024 * 1024;android::SOFT_HEAP_LIMIT41,1104 -static void sqliteLogCallback(void* data, int iErrCode, const char* zMsg) {sqliteLogCallback45,1199 -static void sqliteLogCallback(void* data, int iErrCode, const char* zMsg) {android::sqliteLogCallback45,1199 -static void sqliteInitialize() {sqliteInitialize58,1706 -static void sqliteInitialize() {android::sqliteInitialize58,1706 -static jint nativeReleaseMemory(JNIEnv* env, jclass clazz) {nativeReleaseMemory80,2618 -static jint nativeReleaseMemory(JNIEnv* env, jclass clazz) {android::nativeReleaseMemory80,2618 -static JNINativeMethod sMethods[] =sMethods84,2734 -static JNINativeMethod sMethods[] =android::sMethods84,2734 -int register_android_database_SQLiteGlobal(JNIEnv *env)register_android_database_SQLiteGlobal91,2889 -int register_android_database_SQLiteGlobal(JNIEnv *env)android::register_android_database_SQLiteGlobal91,2889 - -packages/myddas/sqlite3/src/Android/jni/sqlite/JniConstants.cpp,7325 -#define LOG_TAG LOG_TAG17,621 -jclass JniConstants::bidiRunClass;bidiRunClass25,752 -jclass JniConstants::bidiRunClass;JniConstants::bidiRunClass25,752 -jclass JniConstants::bigDecimalClass;bigDecimalClass26,787 -jclass JniConstants::bigDecimalClass;JniConstants::bigDecimalClass26,787 -jclass JniConstants::booleanClass;booleanClass27,825 -jclass JniConstants::booleanClass;JniConstants::booleanClass27,825 -jclass JniConstants::byteArrayClass;byteArrayClass28,860 -jclass JniConstants::byteArrayClass;JniConstants::byteArrayClass28,860 -jclass JniConstants::byteClass;byteClass29,897 -jclass JniConstants::byteClass;JniConstants::byteClass29,897 -jclass JniConstants::calendarClass;calendarClass30,929 -jclass JniConstants::calendarClass;JniConstants::calendarClass30,929 -jclass JniConstants::characterClass;characterClass31,965 -jclass JniConstants::characterClass;JniConstants::characterClass31,965 -jclass JniConstants::charsetICUClass;charsetICUClass32,1002 -jclass JniConstants::charsetICUClass;JniConstants::charsetICUClass32,1002 -jclass JniConstants::constructorClass;constructorClass33,1040 -jclass JniConstants::constructorClass;JniConstants::constructorClass33,1040 -jclass JniConstants::deflaterClass;deflaterClass34,1079 -jclass JniConstants::deflaterClass;JniConstants::deflaterClass34,1079 -jclass JniConstants::doubleClass;doubleClass35,1115 -jclass JniConstants::doubleClass;JniConstants::doubleClass35,1115 -jclass JniConstants::errnoExceptionClass;errnoExceptionClass36,1149 -jclass JniConstants::errnoExceptionClass;JniConstants::errnoExceptionClass36,1149 -jclass JniConstants::fieldClass;fieldClass37,1191 -jclass JniConstants::fieldClass;JniConstants::fieldClass37,1191 -jclass JniConstants::fieldPositionIteratorClass;fieldPositionIteratorClass38,1224 -jclass JniConstants::fieldPositionIteratorClass;JniConstants::fieldPositionIteratorClass38,1224 -jclass JniConstants::fileDescriptorClass;fileDescriptorClass39,1273 -jclass JniConstants::fileDescriptorClass;JniConstants::fileDescriptorClass39,1273 -jclass JniConstants::floatClass;floatClass40,1315 -jclass JniConstants::floatClass;JniConstants::floatClass40,1315 -jclass JniConstants::gaiExceptionClass;gaiExceptionClass41,1348 -jclass JniConstants::gaiExceptionClass;JniConstants::gaiExceptionClass41,1348 -jclass JniConstants::inet6AddressClass;inet6AddressClass42,1388 -jclass JniConstants::inet6AddressClass;JniConstants::inet6AddressClass42,1388 -jclass JniConstants::inetAddressClass;inetAddressClass43,1428 -jclass JniConstants::inetAddressClass;JniConstants::inetAddressClass43,1428 -jclass JniConstants::inetSocketAddressClass;inetSocketAddressClass44,1467 -jclass JniConstants::inetSocketAddressClass;JniConstants::inetSocketAddressClass44,1467 -jclass JniConstants::inetUnixAddressClass;inetUnixAddressClass45,1512 -jclass JniConstants::inetUnixAddressClass;JniConstants::inetUnixAddressClass45,1512 -jclass JniConstants::inflaterClass;inflaterClass46,1555 -jclass JniConstants::inflaterClass;JniConstants::inflaterClass46,1555 -jclass JniConstants::inputStreamClass;inputStreamClass47,1591 -jclass JniConstants::inputStreamClass;JniConstants::inputStreamClass47,1591 -jclass JniConstants::integerClass;integerClass48,1630 -jclass JniConstants::integerClass;JniConstants::integerClass48,1630 -jclass JniConstants::localeDataClass;localeDataClass49,1665 -jclass JniConstants::localeDataClass;JniConstants::localeDataClass49,1665 -jclass JniConstants::longClass;longClass50,1703 -jclass JniConstants::longClass;JniConstants::longClass50,1703 -jclass JniConstants::methodClass;methodClass51,1735 -jclass JniConstants::methodClass;JniConstants::methodClass51,1735 -jclass JniConstants::mutableIntClass;mutableIntClass52,1769 -jclass JniConstants::mutableIntClass;JniConstants::mutableIntClass52,1769 -jclass JniConstants::mutableLongClass;mutableLongClass53,1807 -jclass JniConstants::mutableLongClass;JniConstants::mutableLongClass53,1807 -jclass JniConstants::objectClass;objectClass54,1846 -jclass JniConstants::objectClass;JniConstants::objectClass54,1846 -jclass JniConstants::objectArrayClass;objectArrayClass55,1880 -jclass JniConstants::objectArrayClass;JniConstants::objectArrayClass55,1880 -jclass JniConstants::outputStreamClass;outputStreamClass56,1919 -jclass JniConstants::outputStreamClass;JniConstants::outputStreamClass56,1919 -jclass JniConstants::parsePositionClass;parsePositionClass57,1959 -jclass JniConstants::parsePositionClass;JniConstants::parsePositionClass57,1959 -jclass JniConstants::patternSyntaxExceptionClass;patternSyntaxExceptionClass58,2000 -jclass JniConstants::patternSyntaxExceptionClass;JniConstants::patternSyntaxExceptionClass58,2000 -jclass JniConstants::realToStringClass;realToStringClass59,2050 -jclass JniConstants::realToStringClass;JniConstants::realToStringClass59,2050 -jclass JniConstants::referenceClass;referenceClass60,2090 -jclass JniConstants::referenceClass;JniConstants::referenceClass60,2090 -jclass JniConstants::shortClass;shortClass61,2127 -jclass JniConstants::shortClass;JniConstants::shortClass61,2127 -jclass JniConstants::socketClass;socketClass62,2160 -jclass JniConstants::socketClass;JniConstants::socketClass62,2160 -jclass JniConstants::socketImplClass;socketImplClass63,2194 -jclass JniConstants::socketImplClass;JniConstants::socketImplClass63,2194 -jclass JniConstants::stringClass;stringClass64,2232 -jclass JniConstants::stringClass;JniConstants::stringClass64,2232 -jclass JniConstants::structAddrinfoClass;structAddrinfoClass65,2266 -jclass JniConstants::structAddrinfoClass;JniConstants::structAddrinfoClass65,2266 -jclass JniConstants::structFlockClass;structFlockClass66,2308 -jclass JniConstants::structFlockClass;JniConstants::structFlockClass66,2308 -jclass JniConstants::structGroupReqClass;structGroupReqClass67,2347 -jclass JniConstants::structGroupReqClass;JniConstants::structGroupReqClass67,2347 -jclass JniConstants::structLingerClass;structLingerClass68,2389 -jclass JniConstants::structLingerClass;JniConstants::structLingerClass68,2389 -jclass JniConstants::structPasswdClass;structPasswdClass69,2429 -jclass JniConstants::structPasswdClass;JniConstants::structPasswdClass69,2429 -jclass JniConstants::structPollfdClass;structPollfdClass70,2469 -jclass JniConstants::structPollfdClass;JniConstants::structPollfdClass70,2469 -jclass JniConstants::structStatClass;structStatClass71,2509 -jclass JniConstants::structStatClass;JniConstants::structStatClass71,2509 -jclass JniConstants::structStatVfsClass;structStatVfsClass72,2547 -jclass JniConstants::structStatVfsClass;JniConstants::structStatVfsClass72,2547 -jclass JniConstants::structTimevalClass;structTimevalClass73,2588 -jclass JniConstants::structTimevalClass;JniConstants::structTimevalClass73,2588 -jclass JniConstants::structUcredClass;structUcredClass74,2629 -jclass JniConstants::structUcredClass;JniConstants::structUcredClass74,2629 -jclass JniConstants::structUtsnameClass;structUtsnameClass75,2668 -jclass JniConstants::structUtsnameClass;JniConstants::structUtsnameClass75,2668 -static jclass findClass(JNIEnv* env, const char* name) {findClass77,2710 -void JniConstants::init(JNIEnv* env) {init87,3037 -void JniConstants::init(JNIEnv* env) {JniConstants::init87,3037 - -packages/myddas/sqlite3/src/Android/jni/sqlite/JNIHelp.cpp,2397 -#define LOG_TAG LOG_TAG17,621 -class scoped_local_ref {scoped_local_ref34,936 - scoped_local_ref(C_JNIEnv* env, T localRef = NULL)scoped_local_ref36,969 - scoped_local_ref(C_JNIEnv* env, T localRef = NULL)scoped_local_ref::scoped_local_ref36,969 - ~scoped_local_ref() {~scoped_local_ref41,1074 - ~scoped_local_ref() {scoped_local_ref::~scoped_local_ref41,1074 - void reset(T localRef = NULL) {reset45,1124 - void reset(T localRef = NULL) {scoped_local_ref::reset45,1124 - T get() const {get52,1325 - T get() const {scoped_local_ref::get52,1325 - C_JNIEnv* mEnv;mEnv57,1387 - C_JNIEnv* mEnv;scoped_local_ref::mEnv57,1387 - T mLocalRef;mLocalRef58,1407 - T mLocalRef;scoped_local_ref::mLocalRef58,1407 -static jclass findClass(C_JNIEnv* env, const char* className) {findClass65,1558 -extern "C" int jniRegisterNativeMethods(C_JNIEnv* env, const char* className,jniRegisterNativeMethods70,1717 -static bool getExceptionSummary(C_JNIEnv* env, jthrowable exception, std::string& result) {getExceptionSummary98,2616 -static bool getStackTrace(C_JNIEnv* env, jthrowable exception, std::string& result) {getStackTrace149,4609 -extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) {jniThrowException207,6660 -int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list args) {jniThrowExceptionFmt238,7763 -int jniThrowNullPointerException(C_JNIEnv* env, const char* msg) {jniThrowNullPointerException244,7988 -int jniThrowRuntimeException(C_JNIEnv* env, const char* msg) {jniThrowRuntimeException248,8132 -int jniThrowIOException(C_JNIEnv* env, int errnum) {jniThrowIOException252,8268 -static std::string jniGetStackTrace(C_JNIEnv* env, jthrowable exception) {jniGetStackTrace258,8483 -void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception) {jniLogException286,9240 -const char* jniStrError(int errnum, char* buf, size_t buflen) {jniStrError291,9446 -jobject jniCreateFileDescriptor(C_JNIEnv* env, int fd) {jniCreateFileDescriptor308,10088 -int jniGetFDFromFileDescriptor(C_JNIEnv* env, jobject fileDescriptor) {jniGetFDFromFileDescriptor320,10668 -void jniSetFileDescriptorOfFD(C_JNIEnv* env, jobject fileDescriptor, int value) {jniSetFileDescriptorOfFD330,11018 -jobject jniGetReferent(C_JNIEnv* env, jobject ref) {jniGetReferent336,11302 - -packages/myddas/sqlite3/src/Android/jni/sqlite/nativehelper/jni.h,86860 -#define JNI_H_JNI_H_25,812 -typedef uint8_t jboolean; /* unsigned 8 bits */jboolean31,928 -typedef int8_t jbyte; /* signed 8 bits */jbyte32,977 -typedef uint16_t jchar; /* unsigned 16 bits */jchar33,1024 -typedef int16_t jshort; /* signed 16 bits */jshort34,1074 -typedef int32_t jint; /* signed 32 bits */jint35,1122 -typedef int64_t jlong; /* signed 64 bits */jlong36,1170 -typedef float jfloat; /* 32-bit IEEE 754 */jfloat37,1218 -typedef double jdouble; /* 64-bit IEEE 754 */jdouble38,1267 -typedef jint jsize;jsize41,1352 -class _jobject {};_jobject47,1430 -class _jclass : public _jobject {};_jclass48,1449 -class _jstring : public _jobject {};_jstring49,1485 -class _jarray : public _jobject {};_jarray50,1522 -class _jobjectArray : public _jarray {};_jobjectArray51,1558 -class _jbooleanArray : public _jarray {};_jbooleanArray52,1599 -class _jbyteArray : public _jarray {};_jbyteArray53,1641 -class _jcharArray : public _jarray {};_jcharArray54,1680 -class _jshortArray : public _jarray {};_jshortArray55,1719 -class _jintArray : public _jarray {};_jintArray56,1759 -class _jlongArray : public _jarray {};_jlongArray57,1797 -class _jfloatArray : public _jarray {};_jfloatArray58,1836 -class _jdoubleArray : public _jarray {};_jdoubleArray59,1876 -class _jthrowable : public _jobject {};_jthrowable60,1917 -typedef _jobject* jobject;jobject62,1958 -typedef _jclass* jclass;jclass63,1991 -typedef _jstring* jstring;jstring64,2023 -typedef _jarray* jarray;jarray65,2056 -typedef _jobjectArray* jobjectArray;jobjectArray66,2088 -typedef _jbooleanArray* jbooleanArray;jbooleanArray67,2126 -typedef _jbyteArray* jbyteArray;jbyteArray68,2165 -typedef _jcharArray* jcharArray;jcharArray69,2201 -typedef _jshortArray* jshortArray;jshortArray70,2237 -typedef _jintArray* jintArray;jintArray71,2274 -typedef _jlongArray* jlongArray;jlongArray72,2309 -typedef _jfloatArray* jfloatArray;jfloatArray73,2345 -typedef _jdoubleArray* jdoubleArray;jdoubleArray74,2382 -typedef _jthrowable* jthrowable;jthrowable75,2420 -typedef _jobject* jweak;jweak76,2456 -typedef void* jobject;jobject84,2551 -typedef jobject jclass;jclass85,2584 -typedef jobject jstring;jstring86,2616 -typedef jobject jarray;jarray87,2649 -typedef jarray jobjectArray;jobjectArray88,2681 -typedef jarray jbooleanArray;jbooleanArray89,2719 -typedef jarray jbyteArray;jbyteArray90,2758 -typedef jarray jcharArray;jcharArray91,2794 -typedef jarray jshortArray;jshortArray92,2830 -typedef jarray jintArray;jintArray93,2867 -typedef jarray jlongArray;jlongArray94,2902 -typedef jarray jfloatArray;jfloatArray95,2938 -typedef jarray jdoubleArray;jdoubleArray96,2975 -typedef jobject jthrowable;jthrowable97,3013 -typedef jobject jweak;jweak98,3049 -typedef struct _jfieldID* jfieldID; /* field IDs */jfieldID103,3174 -typedef struct _jmethodID* jmethodID; /* method IDs */jmethodID106,3294 -typedef union jvalue {jvalue110,3380 - jboolean z;z111,3403 - jboolean z;jvalue::z111,3403 - jbyte b;b112,3422 - jbyte b;jvalue::b112,3422 - jchar c;c113,3441 - jchar c;jvalue::c113,3441 - jshort s;s114,3460 - jshort s;jvalue::s114,3460 - jint i;i115,3479 - jint i;jvalue::i115,3479 - jlong j;j116,3498 - jlong j;jvalue::j116,3498 - jfloat f;f117,3517 - jfloat f;jvalue::f117,3517 - jdouble d;d118,3536 - jdouble d;jvalue::d118,3536 - jobject l;l119,3555 - jobject l;jvalue::l119,3555 -} jvalue;jvalue120,3574 -typedef enum jobjectRefType {jobjectRefType122,3585 - JNIInvalidRefType = 0,JNIInvalidRefType123,3615 - JNILocalRefType = 1,JNILocalRefType124,3642 - JNIGlobalRefType = 2,JNIGlobalRefType125,3667 - JNIWeakGlobalRefType = 3JNIWeakGlobalRefType126,3693 -} jobjectRefType;jobjectRefType127,3722 - const char* name;name130,3758 - const char* name;__anon451::name130,3758 - const char* signature;signature131,3780 - const char* signature;__anon451::signature131,3780 - void* fnPtr;fnPtr132,3807 - void* fnPtr;__anon451::fnPtr132,3807 -} JNINativeMethod;JNINativeMethod133,3830 -typedef const struct JNINativeInterface* C_JNIEnv;C_JNIEnv137,3882 -typedef _JNIEnv JNIEnv;JNIEnv140,3959 -typedef _JavaVM JavaVM;JavaVM141,3983 -typedef const struct JNINativeInterface* JNIEnv;JNIEnv143,4013 -typedef const struct JNIInvokeInterface* JavaVM;JavaVM144,4062 -struct JNINativeInterface {JNINativeInterface150,4167 - void* reserved0;reserved0151,4195 - void* reserved0;JNINativeInterface::reserved0151,4195 - void* reserved1;reserved1152,4222 - void* reserved1;JNINativeInterface::reserved1152,4222 - void* reserved2;reserved2153,4249 - void* reserved2;JNINativeInterface::reserved2153,4249 - void* reserved3;reserved3154,4276 - void* reserved3;JNINativeInterface::reserved3154,4276 - jint (*GetVersion)(JNIEnv *);GetVersion156,4304 - jint (*GetVersion)(JNIEnv *);JNINativeInterface::GetVersion156,4304 - jclass (*DefineClass)(JNIEnv*, const char*, jobject, const jbyte*,DefineClass158,4346 - jclass (*DefineClass)(JNIEnv*, const char*, jobject, const jbyte*,JNINativeInterface::DefineClass158,4346 - jclass (*FindClass)(JNIEnv*, const char*);FindClass160,4454 - jclass (*FindClass)(JNIEnv*, const char*);JNINativeInterface::FindClass160,4454 - jmethodID (*FromReflectedMethod)(JNIEnv*, jobject);FromReflectedMethod162,4507 - jmethodID (*FromReflectedMethod)(JNIEnv*, jobject);JNINativeInterface::FromReflectedMethod162,4507 - jfieldID (*FromReflectedField)(JNIEnv*, jobject);FromReflectedField163,4565 - jfieldID (*FromReflectedField)(JNIEnv*, jobject);JNINativeInterface::FromReflectedField163,4565 - jobject (*ToReflectedMethod)(JNIEnv*, jclass, jmethodID, jboolean);ToReflectedMethod165,4669 - jobject (*ToReflectedMethod)(JNIEnv*, jclass, jmethodID, jboolean);JNINativeInterface::ToReflectedMethod165,4669 - jclass (*GetSuperclass)(JNIEnv*, jclass);GetSuperclass167,4746 - jclass (*GetSuperclass)(JNIEnv*, jclass);JNINativeInterface::GetSuperclass167,4746 - jboolean (*IsAssignableFrom)(JNIEnv*, jclass, jclass);IsAssignableFrom168,4797 - jboolean (*IsAssignableFrom)(JNIEnv*, jclass, jclass);JNINativeInterface::IsAssignableFrom168,4797 - jobject (*ToReflectedField)(JNIEnv*, jclass, jfieldID, jboolean);ToReflectedField171,4907 - jobject (*ToReflectedField)(JNIEnv*, jclass, jfieldID, jboolean);JNINativeInterface::ToReflectedField171,4907 - jint (*Throw)(JNIEnv*, jthrowable);Throw173,4982 - jint (*Throw)(JNIEnv*, jthrowable);JNINativeInterface::Throw173,4982 - jint (*ThrowNew)(JNIEnv *, jclass, const char *);ThrowNew174,5029 - jint (*ThrowNew)(JNIEnv *, jclass, const char *);JNINativeInterface::ThrowNew174,5029 - jthrowable (*ExceptionOccurred)(JNIEnv*);ExceptionOccurred175,5090 - jthrowable (*ExceptionOccurred)(JNIEnv*);JNINativeInterface::ExceptionOccurred175,5090 - void (*ExceptionDescribe)(JNIEnv*);ExceptionDescribe176,5137 - void (*ExceptionDescribe)(JNIEnv*);JNINativeInterface::ExceptionDescribe176,5137 - void (*ExceptionClear)(JNIEnv*);ExceptionClear177,5184 - void (*ExceptionClear)(JNIEnv*);JNINativeInterface::ExceptionClear177,5184 - void (*FatalError)(JNIEnv*, const char*);FatalError178,5228 - void (*FatalError)(JNIEnv*, const char*);JNINativeInterface::FatalError178,5228 - jint (*PushLocalFrame)(JNIEnv*, jint);PushLocalFrame180,5282 - jint (*PushLocalFrame)(JNIEnv*, jint);JNINativeInterface::PushLocalFrame180,5282 - jobject (*PopLocalFrame)(JNIEnv*, jobject);PopLocalFrame181,5332 - jobject (*PopLocalFrame)(JNIEnv*, jobject);JNINativeInterface::PopLocalFrame181,5332 - jobject (*NewGlobalRef)(JNIEnv*, jobject);NewGlobalRef183,5385 - jobject (*NewGlobalRef)(JNIEnv*, jobject);JNINativeInterface::NewGlobalRef183,5385 - void (*DeleteGlobalRef)(JNIEnv*, jobject);DeleteGlobalRef184,5436 - void (*DeleteGlobalRef)(JNIEnv*, jobject);JNINativeInterface::DeleteGlobalRef184,5436 - void (*DeleteLocalRef)(JNIEnv*, jobject);DeleteLocalRef185,5490 - void (*DeleteLocalRef)(JNIEnv*, jobject);JNINativeInterface::DeleteLocalRef185,5490 - jboolean (*IsSameObject)(JNIEnv*, jobject, jobject);IsSameObject186,5543 - jboolean (*IsSameObject)(JNIEnv*, jobject, jobject);JNINativeInterface::IsSameObject186,5543 - jobject (*NewLocalRef)(JNIEnv*, jobject);NewLocalRef188,5604 - jobject (*NewLocalRef)(JNIEnv*, jobject);JNINativeInterface::NewLocalRef188,5604 - jint (*EnsureLocalCapacity)(JNIEnv*, jint);EnsureLocalCapacity189,5654 - jint (*EnsureLocalCapacity)(JNIEnv*, jint);JNINativeInterface::EnsureLocalCapacity189,5654 - jobject (*AllocObject)(JNIEnv*, jclass);AllocObject191,5710 - jobject (*AllocObject)(JNIEnv*, jclass);JNINativeInterface::AllocObject191,5710 - jobject (*NewObject)(JNIEnv*, jclass, jmethodID, ...);NewObject192,5759 - jobject (*NewObject)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::NewObject192,5759 - jobject (*NewObjectV)(JNIEnv*, jclass, jmethodID, va_list);NewObjectV193,5822 - jobject (*NewObjectV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::NewObjectV193,5822 - jobject (*NewObjectA)(JNIEnv*, jclass, jmethodID, jvalue*);NewObjectA194,5890 - jobject (*NewObjectA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::NewObjectA194,5890 - jclass (*GetObjectClass)(JNIEnv*, jobject);GetObjectClass196,5959 - jclass (*GetObjectClass)(JNIEnv*, jobject);JNINativeInterface::GetObjectClass196,5959 - jboolean (*IsInstanceOf)(JNIEnv*, jobject, jclass);IsInstanceOf197,6012 - jboolean (*IsInstanceOf)(JNIEnv*, jobject, jclass);JNINativeInterface::IsInstanceOf197,6012 - jmethodID (*GetMethodID)(JNIEnv*, jclass, const char*, const char*);GetMethodID198,6071 - jmethodID (*GetMethodID)(JNIEnv*, jclass, const char*, const char*);JNINativeInterface::GetMethodID198,6071 - jobject (*CallObjectMethod)(JNIEnv*, jobject, jmethodID, ...);CallObjectMethod200,6147 - jobject (*CallObjectMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallObjectMethod200,6147 - jobject (*CallObjectMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallObjectMethodV201,6218 - jobject (*CallObjectMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallObjectMethodV201,6218 - jobject (*CallObjectMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallObjectMethodA202,6294 - jobject (*CallObjectMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallObjectMethodA202,6294 - jboolean (*CallBooleanMethod)(JNIEnv*, jobject, jmethodID, ...);CallBooleanMethod203,6370 - jboolean (*CallBooleanMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallBooleanMethod203,6370 - jboolean (*CallBooleanMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallBooleanMethodV204,6442 - jboolean (*CallBooleanMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallBooleanMethodV204,6442 - jboolean (*CallBooleanMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallBooleanMethodA205,6519 - jboolean (*CallBooleanMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallBooleanMethodA205,6519 - jbyte (*CallByteMethod)(JNIEnv*, jobject, jmethodID, ...);CallByteMethod206,6596 - jbyte (*CallByteMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallByteMethod206,6596 - jbyte (*CallByteMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallByteMethodV207,6665 - jbyte (*CallByteMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallByteMethodV207,6665 - jbyte (*CallByteMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallByteMethodA208,6739 - jbyte (*CallByteMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallByteMethodA208,6739 - jchar (*CallCharMethod)(JNIEnv*, jobject, jmethodID, ...);CallCharMethod209,6813 - jchar (*CallCharMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallCharMethod209,6813 - jchar (*CallCharMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallCharMethodV210,6882 - jchar (*CallCharMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallCharMethodV210,6882 - jchar (*CallCharMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallCharMethodA211,6956 - jchar (*CallCharMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallCharMethodA211,6956 - jshort (*CallShortMethod)(JNIEnv*, jobject, jmethodID, ...);CallShortMethod212,7030 - jshort (*CallShortMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallShortMethod212,7030 - jshort (*CallShortMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallShortMethodV213,7100 - jshort (*CallShortMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallShortMethodV213,7100 - jshort (*CallShortMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallShortMethodA214,7175 - jshort (*CallShortMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallShortMethodA214,7175 - jint (*CallIntMethod)(JNIEnv*, jobject, jmethodID, ...);CallIntMethod215,7250 - jint (*CallIntMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallIntMethod215,7250 - jint (*CallIntMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallIntMethodV216,7318 - jint (*CallIntMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallIntMethodV216,7318 - jint (*CallIntMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallIntMethodA217,7391 - jint (*CallIntMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallIntMethodA217,7391 - jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...);CallLongMethod218,7464 - jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallLongMethod218,7464 - jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallLongMethodV219,7533 - jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallLongMethodV219,7533 - jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallLongMethodA220,7607 - jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallLongMethodA220,7607 - jfloat (*CallFloatMethod)(JNIEnv*, jobject, jmethodID, ...);CallFloatMethod221,7681 - jfloat (*CallFloatMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallFloatMethod221,7681 - jfloat (*CallFloatMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallFloatMethodV222,7751 - jfloat (*CallFloatMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallFloatMethodV222,7751 - jfloat (*CallFloatMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallFloatMethodA223,7826 - jfloat (*CallFloatMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallFloatMethodA223,7826 - jdouble (*CallDoubleMethod)(JNIEnv*, jobject, jmethodID, ...);CallDoubleMethod224,7901 - jdouble (*CallDoubleMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallDoubleMethod224,7901 - jdouble (*CallDoubleMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallDoubleMethodV225,7972 - jdouble (*CallDoubleMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallDoubleMethodV225,7972 - jdouble (*CallDoubleMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallDoubleMethodA226,8048 - jdouble (*CallDoubleMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallDoubleMethodA226,8048 - void (*CallVoidMethod)(JNIEnv*, jobject, jmethodID, ...);CallVoidMethod227,8124 - void (*CallVoidMethod)(JNIEnv*, jobject, jmethodID, ...);JNINativeInterface::CallVoidMethod227,8124 - void (*CallVoidMethodV)(JNIEnv*, jobject, jmethodID, va_list);CallVoidMethodV228,8193 - void (*CallVoidMethodV)(JNIEnv*, jobject, jmethodID, va_list);JNINativeInterface::CallVoidMethodV228,8193 - void (*CallVoidMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);CallVoidMethodA229,8267 - void (*CallVoidMethodA)(JNIEnv*, jobject, jmethodID, jvalue*);JNINativeInterface::CallVoidMethodA229,8267 - jobject (*CallNonvirtualObjectMethod)(JNIEnv*, jobject, jclass,CallNonvirtualObjectMethod231,8342 - jobject (*CallNonvirtualObjectMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualObjectMethod231,8342 - jobject (*CallNonvirtualObjectMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualObjectMethodV233,8455 - jobject (*CallNonvirtualObjectMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualObjectMethodV233,8455 - jobject (*CallNonvirtualObjectMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualObjectMethodA235,8573 - jobject (*CallNonvirtualObjectMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualObjectMethodA235,8573 - jboolean (*CallNonvirtualBooleanMethod)(JNIEnv*, jobject, jclass,CallNonvirtualBooleanMethod237,8691 - jboolean (*CallNonvirtualBooleanMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualBooleanMethod237,8691 - jboolean (*CallNonvirtualBooleanMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualBooleanMethodV239,8805 - jboolean (*CallNonvirtualBooleanMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualBooleanMethodV239,8805 - jboolean (*CallNonvirtualBooleanMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualBooleanMethodA241,8925 - jboolean (*CallNonvirtualBooleanMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualBooleanMethodA241,8925 - jbyte (*CallNonvirtualByteMethod)(JNIEnv*, jobject, jclass,CallNonvirtualByteMethod243,9045 - jbyte (*CallNonvirtualByteMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualByteMethod243,9045 - jbyte (*CallNonvirtualByteMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualByteMethodV245,9156 - jbyte (*CallNonvirtualByteMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualByteMethodV245,9156 - jbyte (*CallNonvirtualByteMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualByteMethodA247,9272 - jbyte (*CallNonvirtualByteMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualByteMethodA247,9272 - jchar (*CallNonvirtualCharMethod)(JNIEnv*, jobject, jclass,CallNonvirtualCharMethod249,9388 - jchar (*CallNonvirtualCharMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualCharMethod249,9388 - jchar (*CallNonvirtualCharMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualCharMethodV251,9499 - jchar (*CallNonvirtualCharMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualCharMethodV251,9499 - jchar (*CallNonvirtualCharMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualCharMethodA253,9615 - jchar (*CallNonvirtualCharMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualCharMethodA253,9615 - jshort (*CallNonvirtualShortMethod)(JNIEnv*, jobject, jclass,CallNonvirtualShortMethod255,9731 - jshort (*CallNonvirtualShortMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualShortMethod255,9731 - jshort (*CallNonvirtualShortMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualShortMethodV257,9843 - jshort (*CallNonvirtualShortMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualShortMethodV257,9843 - jshort (*CallNonvirtualShortMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualShortMethodA259,9960 - jshort (*CallNonvirtualShortMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualShortMethodA259,9960 - jint (*CallNonvirtualIntMethod)(JNIEnv*, jobject, jclass,CallNonvirtualIntMethod261,10077 - jint (*CallNonvirtualIntMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualIntMethod261,10077 - jint (*CallNonvirtualIntMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualIntMethodV263,10187 - jint (*CallNonvirtualIntMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualIntMethodV263,10187 - jint (*CallNonvirtualIntMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualIntMethodA265,10302 - jint (*CallNonvirtualIntMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualIntMethodA265,10302 - jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass,CallNonvirtualLongMethod267,10417 - jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualLongMethod267,10417 - jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualLongMethodV269,10528 - jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualLongMethodV269,10528 - jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualLongMethodA271,10644 - jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualLongMethodA271,10644 - jfloat (*CallNonvirtualFloatMethod)(JNIEnv*, jobject, jclass,CallNonvirtualFloatMethod273,10760 - jfloat (*CallNonvirtualFloatMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualFloatMethod273,10760 - jfloat (*CallNonvirtualFloatMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualFloatMethodV275,10872 - jfloat (*CallNonvirtualFloatMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualFloatMethodV275,10872 - jfloat (*CallNonvirtualFloatMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualFloatMethodA277,10989 - jfloat (*CallNonvirtualFloatMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualFloatMethodA277,10989 - jdouble (*CallNonvirtualDoubleMethod)(JNIEnv*, jobject, jclass,CallNonvirtualDoubleMethod279,11106 - jdouble (*CallNonvirtualDoubleMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualDoubleMethod279,11106 - jdouble (*CallNonvirtualDoubleMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualDoubleMethodV281,11219 - jdouble (*CallNonvirtualDoubleMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualDoubleMethodV281,11219 - jdouble (*CallNonvirtualDoubleMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualDoubleMethodA283,11337 - jdouble (*CallNonvirtualDoubleMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualDoubleMethodA283,11337 - void (*CallNonvirtualVoidMethod)(JNIEnv*, jobject, jclass,CallNonvirtualVoidMethod285,11455 - void (*CallNonvirtualVoidMethod)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualVoidMethod285,11455 - void (*CallNonvirtualVoidMethodV)(JNIEnv*, jobject, jclass,CallNonvirtualVoidMethodV287,11566 - void (*CallNonvirtualVoidMethodV)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualVoidMethodV287,11566 - void (*CallNonvirtualVoidMethodA)(JNIEnv*, jobject, jclass,CallNonvirtualVoidMethodA289,11682 - void (*CallNonvirtualVoidMethodA)(JNIEnv*, jobject, jclass,JNINativeInterface::CallNonvirtualVoidMethodA289,11682 - jfieldID (*GetFieldID)(JNIEnv*, jclass, const char*, const char*);GetFieldID292,11799 - jfieldID (*GetFieldID)(JNIEnv*, jclass, const char*, const char*);JNINativeInterface::GetFieldID292,11799 - jobject (*GetObjectField)(JNIEnv*, jobject, jfieldID);GetObjectField294,11874 - jobject (*GetObjectField)(JNIEnv*, jobject, jfieldID);JNINativeInterface::GetObjectField294,11874 - jboolean (*GetBooleanField)(JNIEnv*, jobject, jfieldID);GetBooleanField295,11937 - jboolean (*GetBooleanField)(JNIEnv*, jobject, jfieldID);JNINativeInterface::GetBooleanField295,11937 - jbyte (*GetByteField)(JNIEnv*, jobject, jfieldID);GetByteField296,12001 - jbyte (*GetByteField)(JNIEnv*, jobject, jfieldID);JNINativeInterface::GetByteField296,12001 - jchar (*GetCharField)(JNIEnv*, jobject, jfieldID);GetCharField297,12062 - jchar (*GetCharField)(JNIEnv*, jobject, jfieldID);JNINativeInterface::GetCharField297,12062 - jshort (*GetShortField)(JNIEnv*, jobject, jfieldID);GetShortField298,12123 - jshort (*GetShortField)(JNIEnv*, jobject, jfieldID);JNINativeInterface::GetShortField298,12123 - jint (*GetIntField)(JNIEnv*, jobject, jfieldID);GetIntField299,12185 - jint (*GetIntField)(JNIEnv*, jobject, jfieldID);JNINativeInterface::GetIntField299,12185 - jlong (*GetLongField)(JNIEnv*, jobject, jfieldID);GetLongField300,12245 - jlong (*GetLongField)(JNIEnv*, jobject, jfieldID);JNINativeInterface::GetLongField300,12245 - jfloat (*GetFloatField)(JNIEnv*, jobject, jfieldID);GetFloatField301,12306 - jfloat (*GetFloatField)(JNIEnv*, jobject, jfieldID);JNINativeInterface::GetFloatField301,12306 - jdouble (*GetDoubleField)(JNIEnv*, jobject, jfieldID);GetDoubleField302,12368 - jdouble (*GetDoubleField)(JNIEnv*, jobject, jfieldID);JNINativeInterface::GetDoubleField302,12368 - void (*SetObjectField)(JNIEnv*, jobject, jfieldID, jobject);SetObjectField304,12432 - void (*SetObjectField)(JNIEnv*, jobject, jfieldID, jobject);JNINativeInterface::SetObjectField304,12432 - void (*SetBooleanField)(JNIEnv*, jobject, jfieldID, jboolean);SetBooleanField305,12504 - void (*SetBooleanField)(JNIEnv*, jobject, jfieldID, jboolean);JNINativeInterface::SetBooleanField305,12504 - void (*SetByteField)(JNIEnv*, jobject, jfieldID, jbyte);SetByteField306,12578 - void (*SetByteField)(JNIEnv*, jobject, jfieldID, jbyte);JNINativeInterface::SetByteField306,12578 - void (*SetCharField)(JNIEnv*, jobject, jfieldID, jchar);SetCharField307,12646 - void (*SetCharField)(JNIEnv*, jobject, jfieldID, jchar);JNINativeInterface::SetCharField307,12646 - void (*SetShortField)(JNIEnv*, jobject, jfieldID, jshort);SetShortField308,12714 - void (*SetShortField)(JNIEnv*, jobject, jfieldID, jshort);JNINativeInterface::SetShortField308,12714 - void (*SetIntField)(JNIEnv*, jobject, jfieldID, jint);SetIntField309,12784 - void (*SetIntField)(JNIEnv*, jobject, jfieldID, jint);JNINativeInterface::SetIntField309,12784 - void (*SetLongField)(JNIEnv*, jobject, jfieldID, jlong);SetLongField310,12850 - void (*SetLongField)(JNIEnv*, jobject, jfieldID, jlong);JNINativeInterface::SetLongField310,12850 - void (*SetFloatField)(JNIEnv*, jobject, jfieldID, jfloat);SetFloatField311,12918 - void (*SetFloatField)(JNIEnv*, jobject, jfieldID, jfloat);JNINativeInterface::SetFloatField311,12918 - void (*SetDoubleField)(JNIEnv*, jobject, jfieldID, jdouble);SetDoubleField312,12988 - void (*SetDoubleField)(JNIEnv*, jobject, jfieldID, jdouble);JNINativeInterface::SetDoubleField312,12988 - jmethodID (*GetStaticMethodID)(JNIEnv*, jclass, const char*, const char*);GetStaticMethodID314,13061 - jmethodID (*GetStaticMethodID)(JNIEnv*, jclass, const char*, const char*);JNINativeInterface::GetStaticMethodID314,13061 - jobject (*CallStaticObjectMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticObjectMethod316,13143 - jobject (*CallStaticObjectMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticObjectMethod316,13143 - jobject (*CallStaticObjectMethodV)(JNIEnv*, jclass, jmethodID, va_list);CallStaticObjectMethodV317,13219 - jobject (*CallStaticObjectMethodV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::CallStaticObjectMethodV317,13219 - jobject (*CallStaticObjectMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);CallStaticObjectMethodA318,13300 - jobject (*CallStaticObjectMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::CallStaticObjectMethodA318,13300 - jboolean (*CallStaticBooleanMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticBooleanMethod319,13381 - jboolean (*CallStaticBooleanMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticBooleanMethod319,13381 - jboolean (*CallStaticBooleanMethodV)(JNIEnv*, jclass, jmethodID,CallStaticBooleanMethodV320,13458 - jboolean (*CallStaticBooleanMethodV)(JNIEnv*, jclass, jmethodID,JNINativeInterface::CallStaticBooleanMethodV320,13458 - jboolean (*CallStaticBooleanMethodA)(JNIEnv*, jclass, jmethodID,CallStaticBooleanMethodA322,13564 - jboolean (*CallStaticBooleanMethodA)(JNIEnv*, jclass, jmethodID,JNINativeInterface::CallStaticBooleanMethodA322,13564 - jbyte (*CallStaticByteMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticByteMethod324,13670 - jbyte (*CallStaticByteMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticByteMethod324,13670 - jbyte (*CallStaticByteMethodV)(JNIEnv*, jclass, jmethodID, va_list);CallStaticByteMethodV325,13744 - jbyte (*CallStaticByteMethodV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::CallStaticByteMethodV325,13744 - jbyte (*CallStaticByteMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);CallStaticByteMethodA326,13823 - jbyte (*CallStaticByteMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::CallStaticByteMethodA326,13823 - jchar (*CallStaticCharMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticCharMethod327,13902 - jchar (*CallStaticCharMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticCharMethod327,13902 - jchar (*CallStaticCharMethodV)(JNIEnv*, jclass, jmethodID, va_list);CallStaticCharMethodV328,13976 - jchar (*CallStaticCharMethodV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::CallStaticCharMethodV328,13976 - jchar (*CallStaticCharMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);CallStaticCharMethodA329,14055 - jchar (*CallStaticCharMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::CallStaticCharMethodA329,14055 - jshort (*CallStaticShortMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticShortMethod330,14134 - jshort (*CallStaticShortMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticShortMethod330,14134 - jshort (*CallStaticShortMethodV)(JNIEnv*, jclass, jmethodID, va_list);CallStaticShortMethodV331,14209 - jshort (*CallStaticShortMethodV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::CallStaticShortMethodV331,14209 - jshort (*CallStaticShortMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);CallStaticShortMethodA332,14289 - jshort (*CallStaticShortMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::CallStaticShortMethodA332,14289 - jint (*CallStaticIntMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticIntMethod333,14369 - jint (*CallStaticIntMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticIntMethod333,14369 - jint (*CallStaticIntMethodV)(JNIEnv*, jclass, jmethodID, va_list);CallStaticIntMethodV334,14442 - jint (*CallStaticIntMethodV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::CallStaticIntMethodV334,14442 - jint (*CallStaticIntMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);CallStaticIntMethodA335,14520 - jint (*CallStaticIntMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::CallStaticIntMethodA335,14520 - jlong (*CallStaticLongMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticLongMethod336,14598 - jlong (*CallStaticLongMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticLongMethod336,14598 - jlong (*CallStaticLongMethodV)(JNIEnv*, jclass, jmethodID, va_list);CallStaticLongMethodV337,14672 - jlong (*CallStaticLongMethodV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::CallStaticLongMethodV337,14672 - jlong (*CallStaticLongMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);CallStaticLongMethodA338,14751 - jlong (*CallStaticLongMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::CallStaticLongMethodA338,14751 - jfloat (*CallStaticFloatMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticFloatMethod339,14830 - jfloat (*CallStaticFloatMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticFloatMethod339,14830 - jfloat (*CallStaticFloatMethodV)(JNIEnv*, jclass, jmethodID, va_list);CallStaticFloatMethodV340,14905 - jfloat (*CallStaticFloatMethodV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::CallStaticFloatMethodV340,14905 - jfloat (*CallStaticFloatMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);CallStaticFloatMethodA341,14985 - jfloat (*CallStaticFloatMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::CallStaticFloatMethodA341,14985 - jdouble (*CallStaticDoubleMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticDoubleMethod342,15065 - jdouble (*CallStaticDoubleMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticDoubleMethod342,15065 - jdouble (*CallStaticDoubleMethodV)(JNIEnv*, jclass, jmethodID, va_list);CallStaticDoubleMethodV343,15141 - jdouble (*CallStaticDoubleMethodV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::CallStaticDoubleMethodV343,15141 - jdouble (*CallStaticDoubleMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);CallStaticDoubleMethodA344,15222 - jdouble (*CallStaticDoubleMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::CallStaticDoubleMethodA344,15222 - void (*CallStaticVoidMethod)(JNIEnv*, jclass, jmethodID, ...);CallStaticVoidMethod345,15303 - void (*CallStaticVoidMethod)(JNIEnv*, jclass, jmethodID, ...);JNINativeInterface::CallStaticVoidMethod345,15303 - void (*CallStaticVoidMethodV)(JNIEnv*, jclass, jmethodID, va_list);CallStaticVoidMethodV346,15377 - void (*CallStaticVoidMethodV)(JNIEnv*, jclass, jmethodID, va_list);JNINativeInterface::CallStaticVoidMethodV346,15377 - void (*CallStaticVoidMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);CallStaticVoidMethodA347,15456 - void (*CallStaticVoidMethodA)(JNIEnv*, jclass, jmethodID, jvalue*);JNINativeInterface::CallStaticVoidMethodA347,15456 - jfieldID (*GetStaticFieldID)(JNIEnv*, jclass, const char*,GetStaticFieldID349,15536 - jfieldID (*GetStaticFieldID)(JNIEnv*, jclass, const char*,JNINativeInterface::GetStaticFieldID349,15536 - jobject (*GetStaticObjectField)(JNIEnv*, jclass, jfieldID);GetStaticObjectField352,15641 - jobject (*GetStaticObjectField)(JNIEnv*, jclass, jfieldID);JNINativeInterface::GetStaticObjectField352,15641 - jboolean (*GetStaticBooleanField)(JNIEnv*, jclass, jfieldID);GetStaticBooleanField353,15709 - jboolean (*GetStaticBooleanField)(JNIEnv*, jclass, jfieldID);JNINativeInterface::GetStaticBooleanField353,15709 - jbyte (*GetStaticByteField)(JNIEnv*, jclass, jfieldID);GetStaticByteField354,15778 - jbyte (*GetStaticByteField)(JNIEnv*, jclass, jfieldID);JNINativeInterface::GetStaticByteField354,15778 - jchar (*GetStaticCharField)(JNIEnv*, jclass, jfieldID);GetStaticCharField355,15844 - jchar (*GetStaticCharField)(JNIEnv*, jclass, jfieldID);JNINativeInterface::GetStaticCharField355,15844 - jshort (*GetStaticShortField)(JNIEnv*, jclass, jfieldID);GetStaticShortField356,15910 - jshort (*GetStaticShortField)(JNIEnv*, jclass, jfieldID);JNINativeInterface::GetStaticShortField356,15910 - jint (*GetStaticIntField)(JNIEnv*, jclass, jfieldID);GetStaticIntField357,15977 - jint (*GetStaticIntField)(JNIEnv*, jclass, jfieldID);JNINativeInterface::GetStaticIntField357,15977 - jlong (*GetStaticLongField)(JNIEnv*, jclass, jfieldID);GetStaticLongField358,16042 - jlong (*GetStaticLongField)(JNIEnv*, jclass, jfieldID);JNINativeInterface::GetStaticLongField358,16042 - jfloat (*GetStaticFloatField)(JNIEnv*, jclass, jfieldID);GetStaticFloatField359,16108 - jfloat (*GetStaticFloatField)(JNIEnv*, jclass, jfieldID);JNINativeInterface::GetStaticFloatField359,16108 - jdouble (*GetStaticDoubleField)(JNIEnv*, jclass, jfieldID);GetStaticDoubleField360,16175 - jdouble (*GetStaticDoubleField)(JNIEnv*, jclass, jfieldID);JNINativeInterface::GetStaticDoubleField360,16175 - void (*SetStaticObjectField)(JNIEnv*, jclass, jfieldID, jobject);SetStaticObjectField362,16244 - void (*SetStaticObjectField)(JNIEnv*, jclass, jfieldID, jobject);JNINativeInterface::SetStaticObjectField362,16244 - void (*SetStaticBooleanField)(JNIEnv*, jclass, jfieldID, jboolean);SetStaticBooleanField363,16321 - void (*SetStaticBooleanField)(JNIEnv*, jclass, jfieldID, jboolean);JNINativeInterface::SetStaticBooleanField363,16321 - void (*SetStaticByteField)(JNIEnv*, jclass, jfieldID, jbyte);SetStaticByteField364,16400 - void (*SetStaticByteField)(JNIEnv*, jclass, jfieldID, jbyte);JNINativeInterface::SetStaticByteField364,16400 - void (*SetStaticCharField)(JNIEnv*, jclass, jfieldID, jchar);SetStaticCharField365,16473 - void (*SetStaticCharField)(JNIEnv*, jclass, jfieldID, jchar);JNINativeInterface::SetStaticCharField365,16473 - void (*SetStaticShortField)(JNIEnv*, jclass, jfieldID, jshort);SetStaticShortField366,16546 - void (*SetStaticShortField)(JNIEnv*, jclass, jfieldID, jshort);JNINativeInterface::SetStaticShortField366,16546 - void (*SetStaticIntField)(JNIEnv*, jclass, jfieldID, jint);SetStaticIntField367,16621 - void (*SetStaticIntField)(JNIEnv*, jclass, jfieldID, jint);JNINativeInterface::SetStaticIntField367,16621 - void (*SetStaticLongField)(JNIEnv*, jclass, jfieldID, jlong);SetStaticLongField368,16692 - void (*SetStaticLongField)(JNIEnv*, jclass, jfieldID, jlong);JNINativeInterface::SetStaticLongField368,16692 - void (*SetStaticFloatField)(JNIEnv*, jclass, jfieldID, jfloat);SetStaticFloatField369,16765 - void (*SetStaticFloatField)(JNIEnv*, jclass, jfieldID, jfloat);JNINativeInterface::SetStaticFloatField369,16765 - void (*SetStaticDoubleField)(JNIEnv*, jclass, jfieldID, jdouble);SetStaticDoubleField370,16840 - void (*SetStaticDoubleField)(JNIEnv*, jclass, jfieldID, jdouble);JNINativeInterface::SetStaticDoubleField370,16840 - jstring (*NewString)(JNIEnv*, const jchar*, jsize);NewString372,16918 - jstring (*NewString)(JNIEnv*, const jchar*, jsize);JNINativeInterface::NewString372,16918 - jsize (*GetStringLength)(JNIEnv*, jstring);GetStringLength373,16978 - jsize (*GetStringLength)(JNIEnv*, jstring);JNINativeInterface::GetStringLength373,16978 - const jchar* (*GetStringChars)(JNIEnv*, jstring, jboolean*);GetStringChars374,17032 - const jchar* (*GetStringChars)(JNIEnv*, jstring, jboolean*);JNINativeInterface::GetStringChars374,17032 - void (*ReleaseStringChars)(JNIEnv*, jstring, const jchar*);ReleaseStringChars375,17097 - void (*ReleaseStringChars)(JNIEnv*, jstring, const jchar*);JNINativeInterface::ReleaseStringChars375,17097 - jstring (*NewStringUTF)(JNIEnv*, const char*);NewStringUTF376,17168 - jstring (*NewStringUTF)(JNIEnv*, const char*);JNINativeInterface::NewStringUTF376,17168 - jsize (*GetStringUTFLength)(JNIEnv*, jstring);GetStringUTFLength377,17223 - jsize (*GetStringUTFLength)(JNIEnv*, jstring);JNINativeInterface::GetStringUTFLength377,17223 - const char* (*GetStringUTFChars)(JNIEnv*, jstring, jboolean*);GetStringUTFChars379,17355 - const char* (*GetStringUTFChars)(JNIEnv*, jstring, jboolean*);JNINativeInterface::GetStringUTFChars379,17355 - void (*ReleaseStringUTFChars)(JNIEnv*, jstring, const char*);ReleaseStringUTFChars380,17422 - void (*ReleaseStringUTFChars)(JNIEnv*, jstring, const char*);JNINativeInterface::ReleaseStringUTFChars380,17422 - jsize (*GetArrayLength)(JNIEnv*, jarray);GetArrayLength381,17495 - jsize (*GetArrayLength)(JNIEnv*, jarray);JNINativeInterface::GetArrayLength381,17495 - jobjectArray (*NewObjectArray)(JNIEnv*, jsize, jclass, jobject);NewObjectArray382,17547 - jobjectArray (*NewObjectArray)(JNIEnv*, jsize, jclass, jobject);JNINativeInterface::NewObjectArray382,17547 - jobject (*GetObjectArrayElement)(JNIEnv*, jobjectArray, jsize);GetObjectArrayElement383,17616 - jobject (*GetObjectArrayElement)(JNIEnv*, jobjectArray, jsize);JNINativeInterface::GetObjectArrayElement383,17616 - void (*SetObjectArrayElement)(JNIEnv*, jobjectArray, jsize, jobject);SetObjectArrayElement384,17688 - void (*SetObjectArrayElement)(JNIEnv*, jobjectArray, jsize, jobject);JNINativeInterface::SetObjectArrayElement384,17688 - jbooleanArray (*NewBooleanArray)(JNIEnv*, jsize);NewBooleanArray386,17770 - jbooleanArray (*NewBooleanArray)(JNIEnv*, jsize);JNINativeInterface::NewBooleanArray386,17770 - jbyteArray (*NewByteArray)(JNIEnv*, jsize);NewByteArray387,17824 - jbyteArray (*NewByteArray)(JNIEnv*, jsize);JNINativeInterface::NewByteArray387,17824 - jcharArray (*NewCharArray)(JNIEnv*, jsize);NewCharArray388,17875 - jcharArray (*NewCharArray)(JNIEnv*, jsize);JNINativeInterface::NewCharArray388,17875 - jshortArray (*NewShortArray)(JNIEnv*, jsize);NewShortArray389,17926 - jshortArray (*NewShortArray)(JNIEnv*, jsize);JNINativeInterface::NewShortArray389,17926 - jintArray (*NewIntArray)(JNIEnv*, jsize);NewIntArray390,17978 - jintArray (*NewIntArray)(JNIEnv*, jsize);JNINativeInterface::NewIntArray390,17978 - jlongArray (*NewLongArray)(JNIEnv*, jsize);NewLongArray391,18028 - jlongArray (*NewLongArray)(JNIEnv*, jsize);JNINativeInterface::NewLongArray391,18028 - jfloatArray (*NewFloatArray)(JNIEnv*, jsize);NewFloatArray392,18079 - jfloatArray (*NewFloatArray)(JNIEnv*, jsize);JNINativeInterface::NewFloatArray392,18079 - jdoubleArray (*NewDoubleArray)(JNIEnv*, jsize);NewDoubleArray393,18131 - jdoubleArray (*NewDoubleArray)(JNIEnv*, jsize);JNINativeInterface::NewDoubleArray393,18131 - jboolean* (*GetBooleanArrayElements)(JNIEnv*, jbooleanArray, jboolean*);GetBooleanArrayElements395,18185 - jboolean* (*GetBooleanArrayElements)(JNIEnv*, jbooleanArray, jboolean*);JNINativeInterface::GetBooleanArrayElements395,18185 - jbyte* (*GetByteArrayElements)(JNIEnv*, jbyteArray, jboolean*);GetByteArrayElements396,18264 - jbyte* (*GetByteArrayElements)(JNIEnv*, jbyteArray, jboolean*);JNINativeInterface::GetByteArrayElements396,18264 - jchar* (*GetCharArrayElements)(JNIEnv*, jcharArray, jboolean*);GetCharArrayElements397,18337 - jchar* (*GetCharArrayElements)(JNIEnv*, jcharArray, jboolean*);JNINativeInterface::GetCharArrayElements397,18337 - jshort* (*GetShortArrayElements)(JNIEnv*, jshortArray, jboolean*);GetShortArrayElements398,18410 - jshort* (*GetShortArrayElements)(JNIEnv*, jshortArray, jboolean*);JNINativeInterface::GetShortArrayElements398,18410 - jint* (*GetIntArrayElements)(JNIEnv*, jintArray, jboolean*);GetIntArrayElements399,18485 - jint* (*GetIntArrayElements)(JNIEnv*, jintArray, jboolean*);JNINativeInterface::GetIntArrayElements399,18485 - jlong* (*GetLongArrayElements)(JNIEnv*, jlongArray, jboolean*);GetLongArrayElements400,18556 - jlong* (*GetLongArrayElements)(JNIEnv*, jlongArray, jboolean*);JNINativeInterface::GetLongArrayElements400,18556 - jfloat* (*GetFloatArrayElements)(JNIEnv*, jfloatArray, jboolean*);GetFloatArrayElements401,18629 - jfloat* (*GetFloatArrayElements)(JNIEnv*, jfloatArray, jboolean*);JNINativeInterface::GetFloatArrayElements401,18629 - jdouble* (*GetDoubleArrayElements)(JNIEnv*, jdoubleArray, jboolean*);GetDoubleArrayElements402,18704 - jdouble* (*GetDoubleArrayElements)(JNIEnv*, jdoubleArray, jboolean*);JNINativeInterface::GetDoubleArrayElements402,18704 - void (*ReleaseBooleanArrayElements)(JNIEnv*, jbooleanArray,ReleaseBooleanArrayElements404,18782 - void (*ReleaseBooleanArrayElements)(JNIEnv*, jbooleanArray,JNINativeInterface::ReleaseBooleanArrayElements404,18782 - void (*ReleaseByteArrayElements)(JNIEnv*, jbyteArray,ReleaseByteArrayElements406,18895 - void (*ReleaseByteArrayElements)(JNIEnv*, jbyteArray,JNINativeInterface::ReleaseByteArrayElements406,18895 - void (*ReleaseCharArrayElements)(JNIEnv*, jcharArray,ReleaseCharArrayElements408,18999 - void (*ReleaseCharArrayElements)(JNIEnv*, jcharArray,JNINativeInterface::ReleaseCharArrayElements408,18999 - void (*ReleaseShortArrayElements)(JNIEnv*, jshortArray,ReleaseShortArrayElements410,19103 - void (*ReleaseShortArrayElements)(JNIEnv*, jshortArray,JNINativeInterface::ReleaseShortArrayElements410,19103 - void (*ReleaseIntArrayElements)(JNIEnv*, jintArray,ReleaseIntArrayElements412,19210 - void (*ReleaseIntArrayElements)(JNIEnv*, jintArray,JNINativeInterface::ReleaseIntArrayElements412,19210 - void (*ReleaseLongArrayElements)(JNIEnv*, jlongArray,ReleaseLongArrayElements414,19311 - void (*ReleaseLongArrayElements)(JNIEnv*, jlongArray,JNINativeInterface::ReleaseLongArrayElements414,19311 - void (*ReleaseFloatArrayElements)(JNIEnv*, jfloatArray,ReleaseFloatArrayElements416,19415 - void (*ReleaseFloatArrayElements)(JNIEnv*, jfloatArray,JNINativeInterface::ReleaseFloatArrayElements416,19415 - void (*ReleaseDoubleArrayElements)(JNIEnv*, jdoubleArray,ReleaseDoubleArrayElements418,19522 - void (*ReleaseDoubleArrayElements)(JNIEnv*, jdoubleArray,JNINativeInterface::ReleaseDoubleArrayElements418,19522 - void (*GetBooleanArrayRegion)(JNIEnv*, jbooleanArray,GetBooleanArrayRegion421,19633 - void (*GetBooleanArrayRegion)(JNIEnv*, jbooleanArray,JNINativeInterface::GetBooleanArrayRegion421,19633 - void (*GetByteArrayRegion)(JNIEnv*, jbyteArray,GetByteArrayRegion423,19748 - void (*GetByteArrayRegion)(JNIEnv*, jbyteArray,JNINativeInterface::GetByteArrayRegion423,19748 - void (*GetCharArrayRegion)(JNIEnv*, jcharArray,GetCharArrayRegion425,19854 - void (*GetCharArrayRegion)(JNIEnv*, jcharArray,JNINativeInterface::GetCharArrayRegion425,19854 - void (*GetShortArrayRegion)(JNIEnv*, jshortArray,GetShortArrayRegion427,19960 - void (*GetShortArrayRegion)(JNIEnv*, jshortArray,JNINativeInterface::GetShortArrayRegion427,19960 - void (*GetIntArrayRegion)(JNIEnv*, jintArray,GetIntArrayRegion429,20069 - void (*GetIntArrayRegion)(JNIEnv*, jintArray,JNINativeInterface::GetIntArrayRegion429,20069 - void (*GetLongArrayRegion)(JNIEnv*, jlongArray,GetLongArrayRegion431,20172 - void (*GetLongArrayRegion)(JNIEnv*, jlongArray,JNINativeInterface::GetLongArrayRegion431,20172 - void (*GetFloatArrayRegion)(JNIEnv*, jfloatArray,GetFloatArrayRegion433,20278 - void (*GetFloatArrayRegion)(JNIEnv*, jfloatArray,JNINativeInterface::GetFloatArrayRegion433,20278 - void (*GetDoubleArrayRegion)(JNIEnv*, jdoubleArray,GetDoubleArrayRegion435,20387 - void (*GetDoubleArrayRegion)(JNIEnv*, jdoubleArray,JNINativeInterface::GetDoubleArrayRegion435,20387 - void (*SetBooleanArrayRegion)(JNIEnv*, jbooleanArray,SetBooleanArrayRegion439,20568 - void (*SetBooleanArrayRegion)(JNIEnv*, jbooleanArray,JNINativeInterface::SetBooleanArrayRegion439,20568 - void (*SetByteArrayRegion)(JNIEnv*, jbyteArray,SetByteArrayRegion441,20689 - void (*SetByteArrayRegion)(JNIEnv*, jbyteArray,JNINativeInterface::SetByteArrayRegion441,20689 - void (*SetCharArrayRegion)(JNIEnv*, jcharArray,SetCharArrayRegion443,20801 - void (*SetCharArrayRegion)(JNIEnv*, jcharArray,JNINativeInterface::SetCharArrayRegion443,20801 - void (*SetShortArrayRegion)(JNIEnv*, jshortArray,SetShortArrayRegion445,20913 - void (*SetShortArrayRegion)(JNIEnv*, jshortArray,JNINativeInterface::SetShortArrayRegion445,20913 - void (*SetIntArrayRegion)(JNIEnv*, jintArray,SetIntArrayRegion447,21028 - void (*SetIntArrayRegion)(JNIEnv*, jintArray,JNINativeInterface::SetIntArrayRegion447,21028 - void (*SetLongArrayRegion)(JNIEnv*, jlongArray,SetLongArrayRegion449,21137 - void (*SetLongArrayRegion)(JNIEnv*, jlongArray,JNINativeInterface::SetLongArrayRegion449,21137 - void (*SetFloatArrayRegion)(JNIEnv*, jfloatArray,SetFloatArrayRegion451,21249 - void (*SetFloatArrayRegion)(JNIEnv*, jfloatArray,JNINativeInterface::SetFloatArrayRegion451,21249 - void (*SetDoubleArrayRegion)(JNIEnv*, jdoubleArray,SetDoubleArrayRegion453,21364 - void (*SetDoubleArrayRegion)(JNIEnv*, jdoubleArray,JNINativeInterface::SetDoubleArrayRegion453,21364 - jint (*RegisterNatives)(JNIEnv*, jclass, const JNINativeMethod*,RegisterNatives456,21483 - jint (*RegisterNatives)(JNIEnv*, jclass, const JNINativeMethod*,JNINativeInterface::RegisterNatives456,21483 - jint (*UnregisterNatives)(JNIEnv*, jclass);UnregisterNatives458,21590 - jint (*UnregisterNatives)(JNIEnv*, jclass);JNINativeInterface::UnregisterNatives458,21590 - jint (*MonitorEnter)(JNIEnv*, jobject);MonitorEnter459,21645 - jint (*MonitorEnter)(JNIEnv*, jobject);JNINativeInterface::MonitorEnter459,21645 - jint (*MonitorExit)(JNIEnv*, jobject);MonitorExit460,21696 - jint (*MonitorExit)(JNIEnv*, jobject);JNINativeInterface::MonitorExit460,21696 - jint (*GetJavaVM)(JNIEnv*, JavaVM**);GetJavaVM461,21746 - jint (*GetJavaVM)(JNIEnv*, JavaVM**);JNINativeInterface::GetJavaVM461,21746 - void (*GetStringRegion)(JNIEnv*, jstring, jsize, jsize, jchar*);GetStringRegion463,21796 - void (*GetStringRegion)(JNIEnv*, jstring, jsize, jsize, jchar*);JNINativeInterface::GetStringRegion463,21796 - void (*GetStringUTFRegion)(JNIEnv*, jstring, jsize, jsize, char*);GetStringUTFRegion464,21872 - void (*GetStringUTFRegion)(JNIEnv*, jstring, jsize, jsize, char*);JNINativeInterface::GetStringUTFRegion464,21872 - void* (*GetPrimitiveArrayCritical)(JNIEnv*, jarray, jboolean*);GetPrimitiveArrayCritical466,21951 - void* (*GetPrimitiveArrayCritical)(JNIEnv*, jarray, jboolean*);JNINativeInterface::GetPrimitiveArrayCritical466,21951 - void (*ReleasePrimitiveArrayCritical)(JNIEnv*, jarray, void*, jint);ReleasePrimitiveArrayCritical467,22025 - void (*ReleasePrimitiveArrayCritical)(JNIEnv*, jarray, void*, jint);JNINativeInterface::ReleasePrimitiveArrayCritical467,22025 - const jchar* (*GetStringCritical)(JNIEnv*, jstring, jboolean*);GetStringCritical469,22106 - const jchar* (*GetStringCritical)(JNIEnv*, jstring, jboolean*);JNINativeInterface::GetStringCritical469,22106 - void (*ReleaseStringCritical)(JNIEnv*, jstring, const jchar*);ReleaseStringCritical470,22174 - void (*ReleaseStringCritical)(JNIEnv*, jstring, const jchar*);JNINativeInterface::ReleaseStringCritical470,22174 - jweak (*NewWeakGlobalRef)(JNIEnv*, jobject);NewWeakGlobalRef472,22249 - jweak (*NewWeakGlobalRef)(JNIEnv*, jobject);JNINativeInterface::NewWeakGlobalRef472,22249 - void (*DeleteWeakGlobalRef)(JNIEnv*, jweak);DeleteWeakGlobalRef473,22304 - void (*DeleteWeakGlobalRef)(JNIEnv*, jweak);JNINativeInterface::DeleteWeakGlobalRef473,22304 - jboolean (*ExceptionCheck)(JNIEnv*);ExceptionCheck475,22361 - jboolean (*ExceptionCheck)(JNIEnv*);JNINativeInterface::ExceptionCheck475,22361 - jobject (*NewDirectByteBuffer)(JNIEnv*, void*, jlong);NewDirectByteBuffer477,22406 - jobject (*NewDirectByteBuffer)(JNIEnv*, void*, jlong);JNINativeInterface::NewDirectByteBuffer477,22406 - void* (*GetDirectBufferAddress)(JNIEnv*, jobject);GetDirectBufferAddress478,22469 - void* (*GetDirectBufferAddress)(JNIEnv*, jobject);JNINativeInterface::GetDirectBufferAddress478,22469 - jlong (*GetDirectBufferCapacity)(JNIEnv*, jobject);GetDirectBufferCapacity479,22530 - jlong (*GetDirectBufferCapacity)(JNIEnv*, jobject);JNINativeInterface::GetDirectBufferCapacity479,22530 - jobjectRefType (*GetObjectRefType)(JNIEnv*, jobject);GetObjectRefType482,22620 - jobjectRefType (*GetObjectRefType)(JNIEnv*, jobject);JNINativeInterface::GetObjectRefType482,22620 -struct _JNIEnv {_JNIEnv491,22846 - const struct JNINativeInterface* functions;functions493,22932 - const struct JNINativeInterface* functions;_JNIEnv::functions493,22932 - jint GetVersion()GetVersion497,23007 - jint GetVersion()_JNIEnv::GetVersion497,23007 - jclass DefineClass(const char *name, jobject loader, const jbyte* buf,DefineClass500,23074 - jclass DefineClass(const char *name, jobject loader, const jbyte* buf,_JNIEnv::DefineClass500,23074 - jclass FindClass(const char* name)FindClass504,23244 - jclass FindClass(const char* name)_JNIEnv::FindClass504,23244 - jmethodID FromReflectedMethod(jobject method)FromReflectedMethod507,23333 - jmethodID FromReflectedMethod(jobject method)_JNIEnv::FromReflectedMethod507,23333 - jfieldID FromReflectedField(jobject field)FromReflectedField510,23445 - jfieldID FromReflectedField(jobject field)_JNIEnv::FromReflectedField510,23445 - jobject ToReflectedMethod(jclass cls, jmethodID methodID, jboolean isStatic)ToReflectedMethod513,23552 - jobject ToReflectedMethod(jclass cls, jmethodID methodID, jboolean isStatic)_JNIEnv::ToReflectedMethod513,23552 - jclass GetSuperclass(jclass clazz)GetSuperclass516,23710 - jclass GetSuperclass(jclass clazz)_JNIEnv::GetSuperclass516,23710 - jboolean IsAssignableFrom(jclass clazz1, jclass clazz2)IsAssignableFrom519,23804 - jboolean IsAssignableFrom(jclass clazz1, jclass clazz2)_JNIEnv::IsAssignableFrom519,23804 - jobject ToReflectedField(jclass cls, jfieldID fieldID, jboolean isStatic)ToReflectedField522,23931 - jobject ToReflectedField(jclass cls, jfieldID fieldID, jboolean isStatic)_JNIEnv::ToReflectedField522,23931 - jint Throw(jthrowable obj)Throw525,24084 - jint Throw(jthrowable obj)_JNIEnv::Throw525,24084 - jint ThrowNew(jclass clazz, const char* message)ThrowNew528,24160 - jint ThrowNew(jclass clazz, const char* message)_JNIEnv::ThrowNew528,24160 - jthrowable ExceptionOccurred()ExceptionOccurred531,24272 - jthrowable ExceptionOccurred()_JNIEnv::ExceptionOccurred531,24272 - void ExceptionDescribe()ExceptionDescribe534,24359 - void ExceptionDescribe()_JNIEnv::ExceptionDescribe534,24359 - void ExceptionClear()ExceptionClear537,24433 - void ExceptionClear()_JNIEnv::ExceptionClear537,24433 - void FatalError(const char* msg)FatalError540,24501 - void FatalError(const char* msg)_JNIEnv::FatalError540,24501 - jint PushLocalFrame(jint capacity)PushLocalFrame543,24581 - jint PushLocalFrame(jint capacity)_JNIEnv::PushLocalFrame543,24581 - jobject PopLocalFrame(jobject result)PopLocalFrame546,24679 - jobject PopLocalFrame(jobject result)_JNIEnv::PopLocalFrame546,24679 - jobject NewGlobalRef(jobject obj)NewGlobalRef549,24777 - jobject NewGlobalRef(jobject obj)_JNIEnv::NewGlobalRef549,24777 - void DeleteGlobalRef(jobject globalRef)DeleteGlobalRef552,24867 - void DeleteGlobalRef(jobject globalRef)_JNIEnv::DeleteGlobalRef552,24867 - void DeleteLocalRef(jobject localRef)DeleteLocalRef555,24965 - void DeleteLocalRef(jobject localRef)_JNIEnv::DeleteLocalRef555,24965 - jboolean IsSameObject(jobject ref1, jobject ref2)IsSameObject558,25059 - jboolean IsSameObject(jobject ref1, jobject ref2)_JNIEnv::IsSameObject558,25059 - jobject NewLocalRef(jobject ref)NewLocalRef561,25172 - jobject NewLocalRef(jobject ref)_JNIEnv::NewLocalRef561,25172 - jint EnsureLocalCapacity(jint capacity)EnsureLocalCapacity564,25260 - jint EnsureLocalCapacity(jint capacity)_JNIEnv::EnsureLocalCapacity564,25260 - jobject AllocObject(jclass clazz)AllocObject567,25368 - jobject AllocObject(jclass clazz)_JNIEnv::AllocObject567,25368 - jobject NewObject(jclass clazz, jmethodID methodID, ...)NewObject570,25459 - jobject NewObject(jclass clazz, jmethodID methodID, ...)_JNIEnv::NewObject570,25459 - jobject NewObjectV(jclass clazz, jmethodID methodID, va_list args)NewObjectV579,25711 - jobject NewObjectV(jclass clazz, jmethodID methodID, va_list args)_JNIEnv::NewObjectV579,25711 - jobject NewObjectA(jclass clazz, jmethodID methodID, jvalue* args)NewObjectA582,25850 - jobject NewObjectA(jclass clazz, jmethodID methodID, jvalue* args)_JNIEnv::NewObjectA582,25850 - jclass GetObjectClass(jobject obj)GetObjectClass585,25989 - jclass GetObjectClass(jobject obj)_JNIEnv::GetObjectClass585,25989 - jboolean IsInstanceOf(jobject obj, jclass clazz)IsInstanceOf588,26082 - jboolean IsInstanceOf(jobject obj, jclass clazz)_JNIEnv::IsInstanceOf588,26082 - jmethodID GetMethodID(jclass clazz, const char* name, const char* sig)GetMethodID591,26194 - jmethodID GetMethodID(jclass clazz, const char* name, const char* sig)_JNIEnv::GetMethodID591,26194 -#define CALL_TYPE_METHOD(CALL_TYPE_METHOD594,26333 -#define CALL_TYPE_METHODV(CALL_TYPE_METHODV605,27119 -#define CALL_TYPE_METHODA(CALL_TYPE_METHODA609,27429 -#define CALL_TYPE(CALL_TYPE614,27740 - void CallVoidMethod(jobject obj, jmethodID methodID, ...)CallVoidMethod629,28273 - void CallVoidMethod(jobject obj, jmethodID methodID, ...)_JNIEnv::CallVoidMethod629,28273 - void CallVoidMethodV(jobject obj, jmethodID methodID, va_list args)CallVoidMethodV636,28488 - void CallVoidMethodV(jobject obj, jmethodID methodID, va_list args)_JNIEnv::CallVoidMethodV636,28488 - void CallVoidMethodA(jobject obj, jmethodID methodID, jvalue* args)CallVoidMethodA638,28623 - void CallVoidMethodA(jobject obj, jmethodID methodID, jvalue* args)_JNIEnv::CallVoidMethodA638,28623 -#define CALL_NONVIRT_TYPE_METHOD(CALL_NONVIRT_TYPE_METHOD641,28759 -#define CALL_NONVIRT_TYPE_METHODV(CALL_NONVIRT_TYPE_METHODV653,29623 -#define CALL_NONVIRT_TYPE_METHODA(CALL_NONVIRT_TYPE_METHODA658,29962 -#define CALL_NONVIRT_TYPE(CALL_NONVIRT_TYPE664,30302 - void CallNonvirtualVoidMethod(jobject obj, jclass clazz,CallNonvirtualVoidMethod679,30915 - void CallNonvirtualVoidMethod(jobject obj, jclass clazz,_JNIEnv::CallNonvirtualVoidMethod679,30915 - void CallNonvirtualVoidMethodV(jobject obj, jclass clazz,CallNonvirtualVoidMethodV687,31179 - void CallNonvirtualVoidMethodV(jobject obj, jclass clazz,_JNIEnv::CallNonvirtualVoidMethodV687,31179 - void CallNonvirtualVoidMethodA(jobject obj, jclass clazz,CallNonvirtualVoidMethodA690,31363 - void CallNonvirtualVoidMethodA(jobject obj, jclass clazz,_JNIEnv::CallNonvirtualVoidMethodA690,31363 - jfieldID GetFieldID(jclass clazz, const char* name, const char* sig)GetFieldID694,31548 - jfieldID GetFieldID(jclass clazz, const char* name, const char* sig)_JNIEnv::GetFieldID694,31548 - jobject GetObjectField(jobject obj, jfieldID fieldID)GetObjectField697,31684 - jobject GetObjectField(jobject obj, jfieldID fieldID)_JNIEnv::GetObjectField697,31684 - jboolean GetBooleanField(jobject obj, jfieldID fieldID)GetBooleanField699,31804 - jboolean GetBooleanField(jobject obj, jfieldID fieldID)_JNIEnv::GetBooleanField699,31804 - jbyte GetByteField(jobject obj, jfieldID fieldID)GetByteField701,31927 - jbyte GetByteField(jobject obj, jfieldID fieldID)_JNIEnv::GetByteField701,31927 - jchar GetCharField(jobject obj, jfieldID fieldID)GetCharField703,32041 - jchar GetCharField(jobject obj, jfieldID fieldID)_JNIEnv::GetCharField703,32041 - jshort GetShortField(jobject obj, jfieldID fieldID)GetShortField705,32155 - jshort GetShortField(jobject obj, jfieldID fieldID)_JNIEnv::GetShortField705,32155 - jint GetIntField(jobject obj, jfieldID fieldID)GetIntField707,32272 - jint GetIntField(jobject obj, jfieldID fieldID)_JNIEnv::GetIntField707,32272 - jlong GetLongField(jobject obj, jfieldID fieldID)GetLongField709,32383 - jlong GetLongField(jobject obj, jfieldID fieldID)_JNIEnv::GetLongField709,32383 - jfloat GetFloatField(jobject obj, jfieldID fieldID)GetFloatField711,32497 - jfloat GetFloatField(jobject obj, jfieldID fieldID)_JNIEnv::GetFloatField711,32497 - jdouble GetDoubleField(jobject obj, jfieldID fieldID)GetDoubleField713,32614 - jdouble GetDoubleField(jobject obj, jfieldID fieldID)_JNIEnv::GetDoubleField713,32614 - void SetObjectField(jobject obj, jfieldID fieldID, jobject value)SetObjectField716,32735 - void SetObjectField(jobject obj, jfieldID fieldID, jobject value)_JNIEnv::SetObjectField716,32735 - void SetBooleanField(jobject obj, jfieldID fieldID, jboolean value)SetBooleanField718,32867 - void SetBooleanField(jobject obj, jfieldID fieldID, jboolean value)_JNIEnv::SetBooleanField718,32867 - void SetByteField(jobject obj, jfieldID fieldID, jbyte value)SetByteField720,33002 - void SetByteField(jobject obj, jfieldID fieldID, jbyte value)_JNIEnv::SetByteField720,33002 - void SetCharField(jobject obj, jfieldID fieldID, jchar value)SetCharField722,33128 - void SetCharField(jobject obj, jfieldID fieldID, jchar value)_JNIEnv::SetCharField722,33128 - void SetShortField(jobject obj, jfieldID fieldID, jshort value)SetShortField724,33254 - void SetShortField(jobject obj, jfieldID fieldID, jshort value)_JNIEnv::SetShortField724,33254 - void SetIntField(jobject obj, jfieldID fieldID, jint value)SetIntField726,33383 - void SetIntField(jobject obj, jfieldID fieldID, jint value)_JNIEnv::SetIntField726,33383 - void SetLongField(jobject obj, jfieldID fieldID, jlong value)SetLongField728,33506 - void SetLongField(jobject obj, jfieldID fieldID, jlong value)_JNIEnv::SetLongField728,33506 - void SetFloatField(jobject obj, jfieldID fieldID, jfloat value)SetFloatField730,33632 - void SetFloatField(jobject obj, jfieldID fieldID, jfloat value)_JNIEnv::SetFloatField730,33632 - void SetDoubleField(jobject obj, jfieldID fieldID, jdouble value)SetDoubleField732,33761 - void SetDoubleField(jobject obj, jfieldID fieldID, jdouble value)_JNIEnv::SetDoubleField732,33761 - jmethodID GetStaticMethodID(jclass clazz, const char* name, const char* sig)GetStaticMethodID735,33894 - jmethodID GetStaticMethodID(jclass clazz, const char* name, const char* sig)_JNIEnv::GetStaticMethodID735,33894 -#define CALL_STATIC_TYPE_METHOD(CALL_STATIC_TYPE_METHOD738,34045 -#define CALL_STATIC_TYPE_METHODV(CALL_STATIC_TYPE_METHODV750,34909 -#define CALL_STATIC_TYPE_METHODA(CALL_STATIC_TYPE_METHODA755,35238 -#define CALL_STATIC_TYPE(CALL_STATIC_TYPE761,35568 - void CallStaticVoidMethod(jclass clazz, jmethodID methodID, ...)CallStaticVoidMethod776,36171 - void CallStaticVoidMethod(jclass clazz, jmethodID methodID, ...)_JNIEnv::CallStaticVoidMethod776,36171 - void CallStaticVoidMethodV(jclass clazz, jmethodID methodID, va_list args)CallStaticVoidMethodV783,36401 - void CallStaticVoidMethodV(jclass clazz, jmethodID methodID, va_list args)_JNIEnv::CallStaticVoidMethodV783,36401 - void CallStaticVoidMethodA(jclass clazz, jmethodID methodID, jvalue* args)CallStaticVoidMethodA785,36551 - void CallStaticVoidMethodA(jclass clazz, jmethodID methodID, jvalue* args)_JNIEnv::CallStaticVoidMethodA785,36551 - jfieldID GetStaticFieldID(jclass clazz, const char* name, const char* sig)GetStaticFieldID788,36702 - jfieldID GetStaticFieldID(jclass clazz, const char* name, const char* sig)_JNIEnv::GetStaticFieldID788,36702 - jobject GetStaticObjectField(jclass clazz, jfieldID fieldID)GetStaticObjectField791,36850 - jobject GetStaticObjectField(jclass clazz, jfieldID fieldID)_JNIEnv::GetStaticObjectField791,36850 - jboolean GetStaticBooleanField(jclass clazz, jfieldID fieldID)GetStaticBooleanField793,36985 - jboolean GetStaticBooleanField(jclass clazz, jfieldID fieldID)_JNIEnv::GetStaticBooleanField793,36985 - jbyte GetStaticByteField(jclass clazz, jfieldID fieldID)GetStaticByteField795,37123 - jbyte GetStaticByteField(jclass clazz, jfieldID fieldID)_JNIEnv::GetStaticByteField795,37123 - jchar GetStaticCharField(jclass clazz, jfieldID fieldID)GetStaticCharField797,37252 - jchar GetStaticCharField(jclass clazz, jfieldID fieldID)_JNIEnv::GetStaticCharField797,37252 - jshort GetStaticShortField(jclass clazz, jfieldID fieldID)GetStaticShortField799,37381 - jshort GetStaticShortField(jclass clazz, jfieldID fieldID)_JNIEnv::GetStaticShortField799,37381 - jint GetStaticIntField(jclass clazz, jfieldID fieldID)GetStaticIntField801,37513 - jint GetStaticIntField(jclass clazz, jfieldID fieldID)_JNIEnv::GetStaticIntField801,37513 - jlong GetStaticLongField(jclass clazz, jfieldID fieldID)GetStaticLongField803,37639 - jlong GetStaticLongField(jclass clazz, jfieldID fieldID)_JNIEnv::GetStaticLongField803,37639 - jfloat GetStaticFloatField(jclass clazz, jfieldID fieldID)GetStaticFloatField805,37768 - jfloat GetStaticFloatField(jclass clazz, jfieldID fieldID)_JNIEnv::GetStaticFloatField805,37768 - jdouble GetStaticDoubleField(jclass clazz, jfieldID fieldID)GetStaticDoubleField807,37900 - jdouble GetStaticDoubleField(jclass clazz, jfieldID fieldID)_JNIEnv::GetStaticDoubleField807,37900 - void SetStaticObjectField(jclass clazz, jfieldID fieldID, jobject value)SetStaticObjectField810,38036 - void SetStaticObjectField(jclass clazz, jfieldID fieldID, jobject value)_JNIEnv::SetStaticObjectField810,38036 - void SetStaticBooleanField(jclass clazz, jfieldID fieldID, jboolean value)SetStaticBooleanField812,38183 - void SetStaticBooleanField(jclass clazz, jfieldID fieldID, jboolean value)_JNIEnv::SetStaticBooleanField812,38183 - void SetStaticByteField(jclass clazz, jfieldID fieldID, jbyte value)SetStaticByteField814,38333 - void SetStaticByteField(jclass clazz, jfieldID fieldID, jbyte value)_JNIEnv::SetStaticByteField814,38333 - void SetStaticCharField(jclass clazz, jfieldID fieldID, jchar value)SetStaticCharField816,38474 - void SetStaticCharField(jclass clazz, jfieldID fieldID, jchar value)_JNIEnv::SetStaticCharField816,38474 - void SetStaticShortField(jclass clazz, jfieldID fieldID, jshort value)SetStaticShortField818,38615 - void SetStaticShortField(jclass clazz, jfieldID fieldID, jshort value)_JNIEnv::SetStaticShortField818,38615 - void SetStaticIntField(jclass clazz, jfieldID fieldID, jint value)SetStaticIntField820,38759 - void SetStaticIntField(jclass clazz, jfieldID fieldID, jint value)_JNIEnv::SetStaticIntField820,38759 - void SetStaticLongField(jclass clazz, jfieldID fieldID, jlong value)SetStaticLongField822,38897 - void SetStaticLongField(jclass clazz, jfieldID fieldID, jlong value)_JNIEnv::SetStaticLongField822,38897 - void SetStaticFloatField(jclass clazz, jfieldID fieldID, jfloat value)SetStaticFloatField824,39038 - void SetStaticFloatField(jclass clazz, jfieldID fieldID, jfloat value)_JNIEnv::SetStaticFloatField824,39038 - void SetStaticDoubleField(jclass clazz, jfieldID fieldID, jdouble value)SetStaticDoubleField826,39182 - void SetStaticDoubleField(jclass clazz, jfieldID fieldID, jdouble value)_JNIEnv::SetStaticDoubleField826,39182 - jstring NewString(const jchar* unicodeChars, jsize len)NewString829,39330 - jstring NewString(const jchar* unicodeChars, jsize len)_JNIEnv::NewString829,39330 - jsize GetStringLength(jstring string)GetStringLength832,39453 - jsize GetStringLength(jstring string)_JNIEnv::GetStringLength832,39453 - const jchar* GetStringChars(jstring string, jboolean* isCopy)GetStringChars835,39553 - const jchar* GetStringChars(jstring string, jboolean* isCopy)_JNIEnv::GetStringChars835,39553 - void ReleaseStringChars(jstring string, const jchar* chars)ReleaseStringChars838,39684 - void ReleaseStringChars(jstring string, const jchar* chars)_JNIEnv::ReleaseStringChars838,39684 - jstring NewStringUTF(const char* bytes)NewStringUTF841,39809 - jstring NewStringUTF(const char* bytes)_JNIEnv::NewStringUTF841,39809 - jsize GetStringUTFLength(jstring string)GetStringUTFLength844,39907 - jsize GetStringUTFLength(jstring string)_JNIEnv::GetStringUTFLength844,39907 - const char* GetStringUTFChars(jstring string, jboolean* isCopy)GetStringUTFChars847,40013 - const char* GetStringUTFChars(jstring string, jboolean* isCopy)_JNIEnv::GetStringUTFChars847,40013 - void ReleaseStringUTFChars(jstring string, const char* utf)ReleaseStringUTFChars850,40149 - void ReleaseStringUTFChars(jstring string, const char* utf)_JNIEnv::ReleaseStringUTFChars850,40149 - jsize GetArrayLength(jarray array)GetArrayLength853,40275 - jsize GetArrayLength(jarray array)_JNIEnv::GetArrayLength853,40275 - jobjectArray NewObjectArray(jsize length, jclass elementClass,NewObjectArray856,40370 - jobjectArray NewObjectArray(jsize length, jclass elementClass,_JNIEnv::NewObjectArray856,40370 - jobject GetObjectArrayElement(jobjectArray array, jsize index)GetObjectArrayElement861,40564 - jobject GetObjectArrayElement(jobjectArray array, jsize index)_JNIEnv::GetObjectArrayElement861,40564 - void SetObjectArrayElement(jobjectArray array, jsize index, jobject value)SetObjectArrayElement864,40701 - void SetObjectArrayElement(jobjectArray array, jsize index, jobject value)_JNIEnv::SetObjectArrayElement864,40701 - jbooleanArray NewBooleanArray(jsize length)NewBooleanArray867,40850 - jbooleanArray NewBooleanArray(jsize length)_JNIEnv::NewBooleanArray867,40850 - jbyteArray NewByteArray(jsize length)NewByteArray869,40955 - jbyteArray NewByteArray(jsize length)_JNIEnv::NewByteArray869,40955 - jcharArray NewCharArray(jsize length)NewCharArray871,41051 - jcharArray NewCharArray(jsize length)_JNIEnv::NewCharArray871,41051 - jshortArray NewShortArray(jsize length)NewShortArray873,41147 - jshortArray NewShortArray(jsize length)_JNIEnv::NewShortArray873,41147 - jintArray NewIntArray(jsize length)NewIntArray875,41246 - jintArray NewIntArray(jsize length)_JNIEnv::NewIntArray875,41246 - jlongArray NewLongArray(jsize length)NewLongArray877,41339 - jlongArray NewLongArray(jsize length)_JNIEnv::NewLongArray877,41339 - jfloatArray NewFloatArray(jsize length)NewFloatArray879,41435 - jfloatArray NewFloatArray(jsize length)_JNIEnv::NewFloatArray879,41435 - jdoubleArray NewDoubleArray(jsize length)NewDoubleArray881,41534 - jdoubleArray NewDoubleArray(jsize length)_JNIEnv::NewDoubleArray881,41534 - jboolean* GetBooleanArrayElements(jbooleanArray array, jboolean* isCopy)GetBooleanArrayElements884,41637 - jboolean* GetBooleanArrayElements(jbooleanArray array, jboolean* isCopy)_JNIEnv::GetBooleanArrayElements884,41637 - jbyte* GetByteArrayElements(jbyteArray array, jboolean* isCopy)GetByteArrayElements886,41786 - jbyte* GetByteArrayElements(jbyteArray array, jboolean* isCopy)_JNIEnv::GetByteArrayElements886,41786 - jchar* GetCharArrayElements(jcharArray array, jboolean* isCopy)GetCharArrayElements888,41923 - jchar* GetCharArrayElements(jcharArray array, jboolean* isCopy)_JNIEnv::GetCharArrayElements888,41923 - jshort* GetShortArrayElements(jshortArray array, jboolean* isCopy)GetShortArrayElements890,42060 - jshort* GetShortArrayElements(jshortArray array, jboolean* isCopy)_JNIEnv::GetShortArrayElements890,42060 - jint* GetIntArrayElements(jintArray array, jboolean* isCopy)GetIntArrayElements892,42201 - jint* GetIntArrayElements(jintArray array, jboolean* isCopy)_JNIEnv::GetIntArrayElements892,42201 - jlong* GetLongArrayElements(jlongArray array, jboolean* isCopy)GetLongArrayElements894,42334 - jlong* GetLongArrayElements(jlongArray array, jboolean* isCopy)_JNIEnv::GetLongArrayElements894,42334 - jfloat* GetFloatArrayElements(jfloatArray array, jboolean* isCopy)GetFloatArrayElements896,42471 - jfloat* GetFloatArrayElements(jfloatArray array, jboolean* isCopy)_JNIEnv::GetFloatArrayElements896,42471 - jdouble* GetDoubleArrayElements(jdoubleArray array, jboolean* isCopy)GetDoubleArrayElements898,42612 - jdouble* GetDoubleArrayElements(jdoubleArray array, jboolean* isCopy)_JNIEnv::GetDoubleArrayElements898,42612 - void ReleaseBooleanArrayElements(jbooleanArray array, jboolean* elems,ReleaseBooleanArrayElements901,42758 - void ReleaseBooleanArrayElements(jbooleanArray array, jboolean* elems,_JNIEnv::ReleaseBooleanArrayElements901,42758 - void ReleaseByteArrayElements(jbyteArray array, jbyte* elems,ReleaseByteArrayElements904,42926 - void ReleaseByteArrayElements(jbyteArray array, jbyte* elems,_JNIEnv::ReleaseByteArrayElements904,42926 - void ReleaseCharArrayElements(jcharArray array, jchar* elems,ReleaseCharArrayElements907,43082 - void ReleaseCharArrayElements(jcharArray array, jchar* elems,_JNIEnv::ReleaseCharArrayElements907,43082 - void ReleaseShortArrayElements(jshortArray array, jshort* elems,ReleaseShortArrayElements910,43238 - void ReleaseShortArrayElements(jshortArray array, jshort* elems,_JNIEnv::ReleaseShortArrayElements910,43238 - void ReleaseIntArrayElements(jintArray array, jint* elems,ReleaseIntArrayElements913,43398 - void ReleaseIntArrayElements(jintArray array, jint* elems,_JNIEnv::ReleaseIntArrayElements913,43398 - void ReleaseLongArrayElements(jlongArray array, jlong* elems,ReleaseLongArrayElements916,43550 - void ReleaseLongArrayElements(jlongArray array, jlong* elems,_JNIEnv::ReleaseLongArrayElements916,43550 - void ReleaseFloatArrayElements(jfloatArray array, jfloat* elems,ReleaseFloatArrayElements919,43706 - void ReleaseFloatArrayElements(jfloatArray array, jfloat* elems,_JNIEnv::ReleaseFloatArrayElements919,43706 - void ReleaseDoubleArrayElements(jdoubleArray array, jdouble* elems,ReleaseDoubleArrayElements922,43866 - void ReleaseDoubleArrayElements(jdoubleArray array, jdouble* elems,_JNIEnv::ReleaseDoubleArrayElements922,43866 - void GetBooleanArrayRegion(jbooleanArray array, jsize start, jsize len,GetBooleanArrayRegion926,44031 - void GetBooleanArrayRegion(jbooleanArray array, jsize start, jsize len,_JNIEnv::GetBooleanArrayRegion926,44031 - void GetByteArrayRegion(jbyteArray array, jsize start, jsize len,GetByteArrayRegion929,44202 - void GetByteArrayRegion(jbyteArray array, jsize start, jsize len,_JNIEnv::GetByteArrayRegion929,44202 - void GetCharArrayRegion(jcharArray array, jsize start, jsize len,GetCharArrayRegion932,44361 - void GetCharArrayRegion(jcharArray array, jsize start, jsize len,_JNIEnv::GetCharArrayRegion932,44361 - void GetShortArrayRegion(jshortArray array, jsize start, jsize len,GetShortArrayRegion935,44520 - void GetShortArrayRegion(jshortArray array, jsize start, jsize len,_JNIEnv::GetShortArrayRegion935,44520 - void GetIntArrayRegion(jintArray array, jsize start, jsize len,GetIntArrayRegion938,44683 - void GetIntArrayRegion(jintArray array, jsize start, jsize len,_JNIEnv::GetIntArrayRegion938,44683 - void GetLongArrayRegion(jlongArray array, jsize start, jsize len,GetLongArrayRegion941,44838 - void GetLongArrayRegion(jlongArray array, jsize start, jsize len,_JNIEnv::GetLongArrayRegion941,44838 - void GetFloatArrayRegion(jfloatArray array, jsize start, jsize len,GetFloatArrayRegion944,44997 - void GetFloatArrayRegion(jfloatArray array, jsize start, jsize len,_JNIEnv::GetFloatArrayRegion944,44997 - void GetDoubleArrayRegion(jdoubleArray array, jsize start, jsize len,GetDoubleArrayRegion947,45160 - void GetDoubleArrayRegion(jdoubleArray array, jsize start, jsize len,_JNIEnv::GetDoubleArrayRegion947,45160 - void SetBooleanArrayRegion(jbooleanArray array, jsize start, jsize len,SetBooleanArrayRegion951,45328 - void SetBooleanArrayRegion(jbooleanArray array, jsize start, jsize len,_JNIEnv::SetBooleanArrayRegion951,45328 - void SetByteArrayRegion(jbyteArray array, jsize start, jsize len,SetByteArrayRegion954,45505 - void SetByteArrayRegion(jbyteArray array, jsize start, jsize len,_JNIEnv::SetByteArrayRegion954,45505 - void SetCharArrayRegion(jcharArray array, jsize start, jsize len,SetCharArrayRegion957,45670 - void SetCharArrayRegion(jcharArray array, jsize start, jsize len,_JNIEnv::SetCharArrayRegion957,45670 - void SetShortArrayRegion(jshortArray array, jsize start, jsize len,SetShortArrayRegion960,45835 - void SetShortArrayRegion(jshortArray array, jsize start, jsize len,_JNIEnv::SetShortArrayRegion960,45835 - void SetIntArrayRegion(jintArray array, jsize start, jsize len,SetIntArrayRegion963,46004 - void SetIntArrayRegion(jintArray array, jsize start, jsize len,_JNIEnv::SetIntArrayRegion963,46004 - void SetLongArrayRegion(jlongArray array, jsize start, jsize len,SetLongArrayRegion966,46165 - void SetLongArrayRegion(jlongArray array, jsize start, jsize len,_JNIEnv::SetLongArrayRegion966,46165 - void SetFloatArrayRegion(jfloatArray array, jsize start, jsize len,SetFloatArrayRegion969,46330 - void SetFloatArrayRegion(jfloatArray array, jsize start, jsize len,_JNIEnv::SetFloatArrayRegion969,46330 - void SetDoubleArrayRegion(jdoubleArray array, jsize start, jsize len,SetDoubleArrayRegion972,46499 - void SetDoubleArrayRegion(jdoubleArray array, jsize start, jsize len,_JNIEnv::SetDoubleArrayRegion972,46499 - jint RegisterNatives(jclass clazz, const JNINativeMethod* methods,RegisterNatives976,46673 - jint RegisterNatives(jclass clazz, const JNINativeMethod* methods,_JNIEnv::RegisterNatives976,46673 - jint UnregisterNatives(jclass clazz)UnregisterNatives980,46843 - jint UnregisterNatives(jclass clazz)_JNIEnv::UnregisterNatives980,46843 - jint MonitorEnter(jobject obj)MonitorEnter983,46943 - jint MonitorEnter(jobject obj)_JNIEnv::MonitorEnter983,46943 - jint MonitorExit(jobject obj)MonitorExit986,47030 - jint MonitorExit(jobject obj)_JNIEnv::MonitorExit986,47030 - jint GetJavaVM(JavaVM** vm)GetJavaVM989,47115 - jint GetJavaVM(JavaVM** vm)_JNIEnv::GetJavaVM989,47115 - void GetStringRegion(jstring str, jsize start, jsize len, jchar* buf)GetStringRegion992,47195 - void GetStringRegion(jstring str, jsize start, jsize len, jchar* buf)_JNIEnv::GetStringRegion992,47195 - void GetStringUTFRegion(jstring str, jsize start, jsize len, char* buf)GetStringUTFRegion995,47334 - void GetStringUTFRegion(jstring str, jsize start, jsize len, char* buf)_JNIEnv::GetStringUTFRegion995,47334 - void* GetPrimitiveArrayCritical(jarray array, jboolean* isCopy)GetPrimitiveArrayCritical998,47485 - void* GetPrimitiveArrayCritical(jarray array, jboolean* isCopy)_JNIEnv::GetPrimitiveArrayCritical998,47485 - void ReleasePrimitiveArrayCritical(jarray array, void* carray, jint mode)ReleasePrimitiveArrayCritical1001,47628 - void ReleasePrimitiveArrayCritical(jarray array, void* carray, jint mode)_JNIEnv::ReleasePrimitiveArrayCritical1001,47628 - const jchar* GetStringCritical(jstring string, jboolean* isCopy)GetStringCritical1004,47784 - const jchar* GetStringCritical(jstring string, jboolean* isCopy)_JNIEnv::GetStringCritical1004,47784 - void ReleaseStringCritical(jstring string, const jchar* carray)ReleaseStringCritical1007,47921 - void ReleaseStringCritical(jstring string, const jchar* carray)_JNIEnv::ReleaseStringCritical1007,47921 - jweak NewWeakGlobalRef(jobject obj)NewWeakGlobalRef1010,48054 - jweak NewWeakGlobalRef(jobject obj)_JNIEnv::NewWeakGlobalRef1010,48054 - void DeleteWeakGlobalRef(jweak obj)DeleteWeakGlobalRef1013,48150 - void DeleteWeakGlobalRef(jweak obj)_JNIEnv::DeleteWeakGlobalRef1013,48150 - jboolean ExceptionCheck()ExceptionCheck1016,48242 - jboolean ExceptionCheck()_JNIEnv::ExceptionCheck1016,48242 - jobject NewDirectByteBuffer(void* address, jlong capacity)NewDirectByteBuffer1019,48321 - jobject NewDirectByteBuffer(void* address, jlong capacity)_JNIEnv::NewDirectByteBuffer1019,48321 - void* GetDirectBufferAddress(jobject buf)GetDirectBufferAddress1022,48457 - void* GetDirectBufferAddress(jobject buf)_JNIEnv::GetDirectBufferAddress1022,48457 - jlong GetDirectBufferCapacity(jobject buf)GetDirectBufferCapacity1025,48565 - jlong GetDirectBufferCapacity(jobject buf)_JNIEnv::GetDirectBufferCapacity1025,48565 - jobjectRefType GetObjectRefType(jobject obj)GetObjectRefType1029,48702 - jobjectRefType GetObjectRefType(jobject obj)_JNIEnv::GetObjectRefType1029,48702 -struct JNIInvokeInterface {JNIInvokeInterface1038,48870 - void* reserved0;reserved01039,48898 - void* reserved0;JNIInvokeInterface::reserved01039,48898 - void* reserved1;reserved11040,48925 - void* reserved1;JNIInvokeInterface::reserved11040,48925 - void* reserved2;reserved21041,48952 - void* reserved2;JNIInvokeInterface::reserved21041,48952 - jint (*DestroyJavaVM)(JavaVM*);DestroyJavaVM1043,48980 - jint (*DestroyJavaVM)(JavaVM*);JNIInvokeInterface::DestroyJavaVM1043,48980 - jint (*AttachCurrentThread)(JavaVM*, JNIEnv**, void*);AttachCurrentThread1044,49023 - jint (*AttachCurrentThread)(JavaVM*, JNIEnv**, void*);JNIInvokeInterface::AttachCurrentThread1044,49023 - jint (*DetachCurrentThread)(JavaVM*);DetachCurrentThread1045,49089 - jint (*DetachCurrentThread)(JavaVM*);JNIInvokeInterface::DetachCurrentThread1045,49089 - jint (*GetEnv)(JavaVM*, void**, jint);GetEnv1046,49138 - jint (*GetEnv)(JavaVM*, void**, jint);JNIInvokeInterface::GetEnv1046,49138 - jint (*AttachCurrentThreadAsDaemon)(JavaVM*, JNIEnv**, void*);AttachCurrentThreadAsDaemon1047,49188 - jint (*AttachCurrentThreadAsDaemon)(JavaVM*, JNIEnv**, void*);JNIInvokeInterface::AttachCurrentThreadAsDaemon1047,49188 -struct _JavaVM {_JavaVM1053,49289 - const struct JNIInvokeInterface* functions;functions1054,49306 - const struct JNIInvokeInterface* functions;_JavaVM::functions1054,49306 - jint DestroyJavaVM()DestroyJavaVM1057,49380 - jint DestroyJavaVM()_JavaVM::DestroyJavaVM1057,49380 - jint AttachCurrentThread(JNIEnv** p_env, void* thr_args)AttachCurrentThread1059,49452 - jint AttachCurrentThread(JNIEnv** p_env, void* thr_args)_JavaVM::AttachCurrentThread1059,49452 - jint DetachCurrentThread()DetachCurrentThread1061,49583 - jint DetachCurrentThread()_JavaVM::DetachCurrentThread1061,49583 - jint GetEnv(void** env, jint version)GetEnv1063,49667 - jint GetEnv(void** env, jint version)_JavaVM::GetEnv1063,49667 - jint AttachCurrentThreadAsDaemon(JNIEnv** p_env, void* thr_args)AttachCurrentThreadAsDaemon1065,49763 - jint AttachCurrentThreadAsDaemon(JNIEnv** p_env, void* thr_args)_JavaVM::AttachCurrentThreadAsDaemon1065,49763 -struct JavaVMAttachArgs {JavaVMAttachArgs1070,49937 - jint version; /* must be >= JNI_VERSION_1_2 */version1071,49963 - jint version; /* must be >= JNI_VERSION_1_2 */JavaVMAttachArgs::version1071,49963 - const char* name; /* NULL or name of thread as modified UTF-8 str */name1072,50024 - const char* name; /* NULL or name of thread as modified UTF-8 str */JavaVMAttachArgs::name1072,50024 - jobject group; /* global ref of a ThreadGroup object, or NULL */group1073,50103 - jobject group; /* global ref of a ThreadGroup object, or NULL */JavaVMAttachArgs::group1073,50103 -typedef struct JavaVMAttachArgs JavaVMAttachArgs;JavaVMAttachArgs1075,50184 -typedef struct JavaVMOption {JavaVMOption1081,50335 - const char* optionString;optionString1082,50365 - const char* optionString;JavaVMOption::optionString1082,50365 - void* extraInfo;extraInfo1083,50395 - void* extraInfo;JavaVMOption::extraInfo1083,50395 -} JavaVMOption;JavaVMOption1084,50422 -typedef struct JavaVMInitArgs {JavaVMInitArgs1086,50439 - jint version; /* use JNI_VERSION_1_2 or later */version1087,50471 - jint version; /* use JNI_VERSION_1_2 or later */JavaVMInitArgs::version1087,50471 - jint nOptions;nOptions1089,50535 - jint nOptions;JavaVMInitArgs::nOptions1089,50535 - JavaVMOption* options;options1090,50561 - JavaVMOption* options;JavaVMInitArgs::options1090,50561 - jboolean ignoreUnrecognized;ignoreUnrecognized1091,50588 - jboolean ignoreUnrecognized;JavaVMInitArgs::ignoreUnrecognized1091,50588 -} JavaVMInitArgs;JavaVMInitArgs1092,50624 -#define JNIIMPORTJNIIMPORT1106,50933 -#define JNIEXPORT JNIEXPORT1107,50951 -#define JNICALLJNICALL1108,51011 -#define JNI_FALSE JNI_FALSE1125,51320 -#define JNI_TRUE JNI_TRUE1126,51342 -#define JNI_VERSION_1_1 JNI_VERSION_1_11128,51365 -#define JNI_VERSION_1_2 JNI_VERSION_1_21129,51400 -#define JNI_VERSION_1_4 JNI_VERSION_1_41130,51435 -#define JNI_VERSION_1_6 JNI_VERSION_1_61131,51470 -#define JNI_OK JNI_OK1133,51506 -#define JNI_ERR JNI_ERR1134,51557 -#define JNI_EDETACHED JNI_EDETACHED1135,51613 -#define JNI_EVERSION JNI_EVERSION1136,51683 -#define JNI_COMMIT JNI_COMMIT1138,51744 -#define JNI_ABORT JNI_ABORT1139,51819 - -packages/myddas/sqlite3/src/Android/jni/sqlite/nativehelper/JniConstants.h,6961 -#define JNI_CONSTANTS_H_includedJNI_CONSTANTS_H_included18,654 -struct JniConstants {JniConstants40,1801 - static jclass bidiRunClass;bidiRunClass43,1859 - static jclass bidiRunClass;JniConstants::bidiRunClass43,1859 - static jclass bigDecimalClass;bigDecimalClass44,1891 - static jclass bigDecimalClass;JniConstants::bigDecimalClass44,1891 - static jclass booleanClass;booleanClass45,1926 - static jclass booleanClass;JniConstants::booleanClass45,1926 - static jclass byteArrayClass;byteArrayClass46,1958 - static jclass byteArrayClass;JniConstants::byteArrayClass46,1958 - static jclass byteClass;byteClass47,1992 - static jclass byteClass;JniConstants::byteClass47,1992 - static jclass calendarClass;calendarClass48,2021 - static jclass calendarClass;JniConstants::calendarClass48,2021 - static jclass characterClass;characterClass49,2054 - static jclass characterClass;JniConstants::characterClass49,2054 - static jclass charsetICUClass;charsetICUClass50,2088 - static jclass charsetICUClass;JniConstants::charsetICUClass50,2088 - static jclass constructorClass;constructorClass51,2123 - static jclass constructorClass;JniConstants::constructorClass51,2123 - static jclass deflaterClass;deflaterClass52,2159 - static jclass deflaterClass;JniConstants::deflaterClass52,2159 - static jclass doubleClass;doubleClass53,2192 - static jclass doubleClass;JniConstants::doubleClass53,2192 - static jclass errnoExceptionClass;errnoExceptionClass54,2223 - static jclass errnoExceptionClass;JniConstants::errnoExceptionClass54,2223 - static jclass fieldClass;fieldClass55,2262 - static jclass fieldClass;JniConstants::fieldClass55,2262 - static jclass fieldPositionIteratorClass;fieldPositionIteratorClass56,2292 - static jclass fieldPositionIteratorClass;JniConstants::fieldPositionIteratorClass56,2292 - static jclass fileDescriptorClass;fileDescriptorClass57,2338 - static jclass fileDescriptorClass;JniConstants::fileDescriptorClass57,2338 - static jclass floatClass;floatClass58,2377 - static jclass floatClass;JniConstants::floatClass58,2377 - static jclass gaiExceptionClass;gaiExceptionClass59,2407 - static jclass gaiExceptionClass;JniConstants::gaiExceptionClass59,2407 - static jclass inet6AddressClass;inet6AddressClass60,2444 - static jclass inet6AddressClass;JniConstants::inet6AddressClass60,2444 - static jclass inetAddressClass;inetAddressClass61,2481 - static jclass inetAddressClass;JniConstants::inetAddressClass61,2481 - static jclass inetSocketAddressClass;inetSocketAddressClass62,2517 - static jclass inetSocketAddressClass;JniConstants::inetSocketAddressClass62,2517 - static jclass inetUnixAddressClass;inetUnixAddressClass63,2559 - static jclass inetUnixAddressClass;JniConstants::inetUnixAddressClass63,2559 - static jclass inflaterClass;inflaterClass64,2599 - static jclass inflaterClass;JniConstants::inflaterClass64,2599 - static jclass inputStreamClass;inputStreamClass65,2632 - static jclass inputStreamClass;JniConstants::inputStreamClass65,2632 - static jclass integerClass;integerClass66,2668 - static jclass integerClass;JniConstants::integerClass66,2668 - static jclass localeDataClass;localeDataClass67,2700 - static jclass localeDataClass;JniConstants::localeDataClass67,2700 - static jclass longClass;longClass68,2735 - static jclass longClass;JniConstants::longClass68,2735 - static jclass methodClass;methodClass69,2764 - static jclass methodClass;JniConstants::methodClass69,2764 - static jclass mutableIntClass;mutableIntClass70,2795 - static jclass mutableIntClass;JniConstants::mutableIntClass70,2795 - static jclass mutableLongClass;mutableLongClass71,2830 - static jclass mutableLongClass;JniConstants::mutableLongClass71,2830 - static jclass objectClass;objectClass72,2866 - static jclass objectClass;JniConstants::objectClass72,2866 - static jclass objectArrayClass;objectArrayClass73,2897 - static jclass objectArrayClass;JniConstants::objectArrayClass73,2897 - static jclass outputStreamClass;outputStreamClass74,2933 - static jclass outputStreamClass;JniConstants::outputStreamClass74,2933 - static jclass parsePositionClass;parsePositionClass75,2970 - static jclass parsePositionClass;JniConstants::parsePositionClass75,2970 - static jclass patternSyntaxExceptionClass;patternSyntaxExceptionClass76,3008 - static jclass patternSyntaxExceptionClass;JniConstants::patternSyntaxExceptionClass76,3008 - static jclass realToStringClass;realToStringClass77,3055 - static jclass realToStringClass;JniConstants::realToStringClass77,3055 - static jclass referenceClass;referenceClass78,3092 - static jclass referenceClass;JniConstants::referenceClass78,3092 - static jclass shortClass;shortClass79,3126 - static jclass shortClass;JniConstants::shortClass79,3126 - static jclass socketClass;socketClass80,3156 - static jclass socketClass;JniConstants::socketClass80,3156 - static jclass socketImplClass;socketImplClass81,3187 - static jclass socketImplClass;JniConstants::socketImplClass81,3187 - static jclass stringClass;stringClass82,3222 - static jclass stringClass;JniConstants::stringClass82,3222 - static jclass structAddrinfoClass;structAddrinfoClass83,3253 - static jclass structAddrinfoClass;JniConstants::structAddrinfoClass83,3253 - static jclass structFlockClass;structFlockClass84,3292 - static jclass structFlockClass;JniConstants::structFlockClass84,3292 - static jclass structGroupReqClass;structGroupReqClass85,3328 - static jclass structGroupReqClass;JniConstants::structGroupReqClass85,3328 - static jclass structLingerClass;structLingerClass86,3367 - static jclass structLingerClass;JniConstants::structLingerClass86,3367 - static jclass structPasswdClass;structPasswdClass87,3404 - static jclass structPasswdClass;JniConstants::structPasswdClass87,3404 - static jclass structPollfdClass;structPollfdClass88,3441 - static jclass structPollfdClass;JniConstants::structPollfdClass88,3441 - static jclass structStatClass;structStatClass89,3478 - static jclass structStatClass;JniConstants::structStatClass89,3478 - static jclass structStatVfsClass;structStatVfsClass90,3513 - static jclass structStatVfsClass;JniConstants::structStatVfsClass90,3513 - static jclass structTimevalClass;structTimevalClass91,3551 - static jclass structTimevalClass;JniConstants::structTimevalClass91,3551 - static jclass structUcredClass;structUcredClass92,3589 - static jclass structUcredClass;JniConstants::structUcredClass92,3589 - static jclass structUtsnameClass;structUtsnameClass93,3625 - static jclass structUtsnameClass;JniConstants::structUtsnameClass93,3625 -#define NATIVE_METHOD(NATIVE_METHOD96,3667 - -packages/myddas/sqlite3/src/Android/jni/sqlite/nativehelper/JNIHelp.h,1376 -#define NATIVEHELPER_JNIHELP_H_NATIVEHELPER_JNIHELP_H_26,852 -# define NELEM(NELEM32,937 -inline int jniRegisterNativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) {jniRegisterNativeMethods121,3557 -inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) {jniThrowException125,3770 -inline int jniThrowExceptionFmt(JNIEnv* env, const char* className, const char* fmt, ...) {jniThrowExceptionFmt135,4175 -inline int jniThrowNullPointerException(JNIEnv* env, const char* msg) {jniThrowNullPointerException142,4403 -inline int jniThrowRuntimeException(JNIEnv* env, const char* msg) {jniThrowRuntimeException146,4541 -inline int jniThrowIOException(JNIEnv* env, int errnum) {jniThrowIOException150,4671 -inline jobject jniCreateFileDescriptor(JNIEnv* env, int fd) {jniCreateFileDescriptor154,4789 -inline int jniGetFDFromFileDescriptor(JNIEnv* env, jobject fileDescriptor) {jniGetFDFromFileDescriptor158,4911 -inline void jniSetFileDescriptorOfFD(JNIEnv* env, jobject fileDescriptor, int value) {jniSetFileDescriptorOfFD162,5063 -inline jobject jniGetReferent(JNIEnv* env, jobject ref) {jniGetReferent166,5223 -inline void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable exception = NULL) {jniLogException170,5333 -#define TEMP_FAILURE_RETRY(TEMP_FAILURE_RETRY183,5781 - -packages/myddas/sqlite3/src/Android/jni/sqlite/nativehelper/ScopedLocalRef.h,950 -#define SCOPED_LOCAL_REF_H_includedSCOPED_LOCAL_REF_H_included18,657 -class ScopedLocalRef {ScopedLocalRef26,835 - ScopedLocalRef(JNIEnv* env, T localRef) : mEnv(env), mLocalRef(localRef) {ScopedLocalRef28,866 - ScopedLocalRef(JNIEnv* env, T localRef) : mEnv(env), mLocalRef(localRef) {ScopedLocalRef::ScopedLocalRef28,866 - ~ScopedLocalRef() {~ScopedLocalRef31,952 - ~ScopedLocalRef() {ScopedLocalRef::~ScopedLocalRef31,952 - void reset(T ptr = NULL) {reset35,1000 - void reset(T ptr = NULL) {ScopedLocalRef::reset35,1000 - T release() __attribute__((warn_unused_result)) {release44,1209 - T release() __attribute__((warn_unused_result)) {ScopedLocalRef::release44,1209 - T get() const {get50,1353 - T get() const {ScopedLocalRef::get50,1353 - JNIEnv* mEnv;mEnv55,1415 - JNIEnv* mEnv;ScopedLocalRef::mEnv55,1415 - T mLocalRef;mLocalRef56,1433 - T mLocalRef;ScopedLocalRef::mLocalRef56,1433 - -packages/myddas/sqlite3/src/Android/jni/sqlite/README,0 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/app/customsqlite/CustomSqlite.java,4336 -package org.sqlite.app.customsqlite;org.sqlite.app.customsqlite2,1 -class DoNotDeleteErrorHandler implements DatabaseErrorHandler {DoNotDeleteErrorHandler30,733 - private static final String TAG = "DoNotDeleteErrorHandler";TAG31,797 - private static final String TAG = "DoNotDeleteErrorHandler";DoNotDeleteErrorHandler.TAG31,797 - public void onCorruption(SQLiteDatabase dbObj) {onCorruption32,860 - public void onCorruption(SQLiteDatabase dbObj) {DoNotDeleteErrorHandler.onCorruption32,860 -public class CustomSqlite extends ActivityCustomSqlite37,999 - private TextView myTV; /* Text view widget */myTV39,1044 - private TextView myTV; /* Text view widget */CustomSqlite.myTV39,1044 - private int myNTest; /* Number of tests attempted */myNTest40,1101 - private int myNTest; /* Number of tests attempted */CustomSqlite.myNTest40,1101 - private int myNErr; /* Number of tests failed */myNErr41,1167 - private int myNErr; /* Number of tests failed */CustomSqlite.myNErr41,1167 - File DB_PATH;DB_PATH43,1231 - File DB_PATH;CustomSqlite.DB_PATH43,1231 - public void onCreate(Bundle savedInstanceState){onCreate47,1312 - public void onCreate(Bundle savedInstanceState){CustomSqlite.onCreate47,1312 - public void report_version(){report_version53,1494 - public void report_version(){CustomSqlite.report_version53,1494 - public void test_warning(String name, String warning){test_warning65,1812 - public void test_warning(String name, String warning){CustomSqlite.test_warning65,1812 - public void test_result(String name, String res, String expected){test_result69,1934 - public void test_result(String name, String res, String expected){CustomSqlite.test_result69,1934 - public String db_is_encrypted() throws Exception {db_is_encrypted91,2575 - public String db_is_encrypted() throws Exception {CustomSqlite.db_is_encrypted91,2575 - public void thread_test_1(){thread_test_1107,2982 - public void thread_test_1(){CustomSqlite.thread_test_1107,2982 - public void thread_test_2(){thread_test_2134,3724 - public void thread_test_2(){CustomSqlite.thread_test_2134,3724 - public void csr_test_2() throws Exception {csr_test_2173,4850 - public void csr_test_2() throws Exception {CustomSqlite.csr_test_2173,4850 - public String string_from_t1_x(SQLiteDatabase db){string_from_t1_x221,6297 - public String string_from_t1_x(SQLiteDatabase db){CustomSqlite.string_from_t1_x221,6297 - public void csr_test_1() throws Exception {csr_test_1234,6590 - public void csr_test_1() throws Exception {CustomSqlite.csr_test_1234,6590 - public void stmt_jrnl_test_1() throws Exception {stmt_jrnl_test_1249,7067 - public void stmt_jrnl_test_1() throws Exception {CustomSqlite.stmt_jrnl_test_1249,7067 - public void supp_char_test_1() throws Exception {supp_char_test_1264,7561 - public void supp_char_test_1() throws Exception {CustomSqlite.supp_char_test_1264,7561 - public void see_test_1() throws Exception {see_test_1283,8125 - public void see_test_1() throws Exception {CustomSqlite.see_test_1283,8125 - class MyHelper extends SQLiteOpenHelper {MyHelper331,9556 - class MyHelper extends SQLiteOpenHelper {CustomSqlite.MyHelper331,9556 - public MyHelper(Context ctx){MyHelper332,9600 - public MyHelper(Context ctx){CustomSqlite.MyHelper.MyHelper332,9600 - public void onConfigure(SQLiteDatabase db){onConfigure335,9686 - public void onConfigure(SQLiteDatabase db){CustomSqlite.MyHelper.onConfigure335,9686 - public void onCreate(SQLiteDatabase db){onCreate338,9783 - public void onCreate(SQLiteDatabase db){CustomSqlite.MyHelper.onCreate338,9783 - public void onUpgrade(SQLiteDatabase db, int iOld, int iNew){onUpgrade341,9874 - public void onUpgrade(SQLiteDatabase db, int iOld, int iNew){CustomSqlite.MyHelper.onUpgrade341,9874 - public void helper_test_1() throws Exception {helper_test_1348,10002 - public void helper_test_1() throws Exception {CustomSqlite.helper_test_1348,10002 - public void see_test_2() throws Exception {see_test_2364,10449 - public void see_test_2() throws Exception {CustomSqlite.see_test_2364,10449 - public void run_the_tests(View view){run_the_tests387,11195 - public void run_the_tests(View view){CustomSqlite.run_the_tests387,11195 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/DatabaseErrorHandler.java,277 -package org.sqlite.database;org.sqlite.database21,721 -public interface DatabaseErrorHandler {DatabaseErrorHandler29,933 - void onCorruption(SQLiteDatabase dbObj);onCorruption36,1188 - void onCorruption(SQLiteDatabase dbObj);DatabaseErrorHandler.onCorruption36,1188 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/DefaultDatabaseErrorHandler.java,733 -package org.sqlite.database;org.sqlite.database21,721 -public final class DefaultDatabaseErrorHandler implements DatabaseErrorHandler {DefaultDatabaseErrorHandler49,1755 - private static final String TAG = "DefaultDatabaseErrorHandler";TAG51,1837 - private static final String TAG = "DefaultDatabaseErrorHandler";DefaultDatabaseErrorHandler.TAG51,1837 - public void onCorruption(SQLiteDatabase dbObj) {onCorruption58,2129 - public void onCorruption(SQLiteDatabase dbObj) {DefaultDatabaseErrorHandler.onCorruption58,2129 - private void deleteDatabaseFile(String fileName) {deleteDatabaseFile105,4171 - private void deleteDatabaseFile(String fileName) {DefaultDatabaseErrorHandler.deleteDatabaseFile105,4171 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/ExtraUtils.java,2816 -package org.sqlite.database;org.sqlite.database21,721 -public class ExtraUtils {ExtraUtils55,1910 - private static final String TAG = "ExtraUtils";TAG56,1936 - private static final String TAG = "ExtraUtils";ExtraUtils.TAG56,1936 - private static final boolean DEBUG = false;DEBUG58,1989 - private static final boolean DEBUG = false;ExtraUtils.DEBUG58,1989 - public static final int STATEMENT_SELECT = 1;STATEMENT_SELECT61,2117 - public static final int STATEMENT_SELECT = 1;ExtraUtils.STATEMENT_SELECT61,2117 - public static final int STATEMENT_UPDATE = 2;STATEMENT_UPDATE63,2246 - public static final int STATEMENT_UPDATE = 2;ExtraUtils.STATEMENT_UPDATE63,2246 - public static final int STATEMENT_ATTACH = 3;STATEMENT_ATTACH65,2375 - public static final int STATEMENT_ATTACH = 3;ExtraUtils.STATEMENT_ATTACH65,2375 - public static final int STATEMENT_BEGIN = 4;STATEMENT_BEGIN67,2504 - public static final int STATEMENT_BEGIN = 4;ExtraUtils.STATEMENT_BEGIN67,2504 - public static final int STATEMENT_COMMIT = 5;STATEMENT_COMMIT69,2632 - public static final int STATEMENT_COMMIT = 5;ExtraUtils.STATEMENT_COMMIT69,2632 - public static final int STATEMENT_ABORT = 6;STATEMENT_ABORT71,2761 - public static final int STATEMENT_ABORT = 6;ExtraUtils.STATEMENT_ABORT71,2761 - public static final int STATEMENT_PRAGMA = 7;STATEMENT_PRAGMA73,2889 - public static final int STATEMENT_PRAGMA = 7;ExtraUtils.STATEMENT_PRAGMA73,2889 - public static final int STATEMENT_DDL = 8;STATEMENT_DDL75,3018 - public static final int STATEMENT_DDL = 8;ExtraUtils.STATEMENT_DDL75,3018 - public static final int STATEMENT_UNPREPARED = 9;STATEMENT_UNPREPARED77,3144 - public static final int STATEMENT_UNPREPARED = 9;ExtraUtils.STATEMENT_UNPREPARED77,3144 - public static final int STATEMENT_OTHER = 99;STATEMENT_OTHER79,3277 - public static final int STATEMENT_OTHER = 99;ExtraUtils.STATEMENT_OTHER79,3277 - public static int findRowIdColumnIndex(String[] columnNames) {findRowIdColumnIndex84,3409 - public static int findRowIdColumnIndex(String[] columnNames) {ExtraUtils.findRowIdColumnIndex84,3409 - public static int cursorPickFillWindowStartPosition(cursorPickFillWindowStartPosition115,4677 - public static int cursorPickFillWindowStartPosition(ExtraUtils.cursorPickFillWindowStartPosition115,4677 - public static int getTypeOfObject(Object obj) {getTypeOfObject136,5369 - public static int getTypeOfObject(Object obj) {ExtraUtils.getTypeOfObject136,5369 - public static long longForQuery(longForQuery155,6077 - public static long longForQuery(ExtraUtils.longForQuery155,6077 - public static long longForQuery(longForQuery170,6510 - public static long longForQuery(ExtraUtils.longForQuery170,6510 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/SQLException.java,538 -package org.sqlite.database;org.sqlite.database21,721 -public class SQLException extends RuntimeException {SQLException26,840 - public SQLException() {SQLException27,893 - public SQLException() {SQLException.SQLException27,893 - public SQLException(String error) {SQLException30,928 - public SQLException(String error) {SQLException.SQLException30,928 - public SQLException(String error, Throwable cause) {SQLException34,997 - public SQLException(String error, Throwable cause) {SQLException.SQLException34,997 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/CloseGuard.java,2497 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class CloseGuard {CloseGuard110,3012 - private static final CloseGuard NOOP = new CloseGuard();NOOP115,3131 - private static final CloseGuard NOOP = new CloseGuard();CloseGuard.NOOP115,3131 - private static volatile boolean ENABLED = true;ENABLED122,3421 - private static volatile boolean ENABLED = true;CloseGuard.ENABLED122,3421 - private static volatile Reporter REPORTER = new DefaultReporter();REPORTER127,3554 - private static volatile Reporter REPORTER = new DefaultReporter();CloseGuard.REPORTER127,3554 - public static CloseGuard get() {get135,3879 - public static CloseGuard get() {CloseGuard.get135,3879 - public static void setEnabled(boolean enabled) {setEnabled146,4170 - public static void setEnabled(boolean enabled) {CloseGuard.setEnabled146,4170 - public static void setReporter(Reporter reporter) {setReporter154,4377 - public static void setReporter(Reporter reporter) {CloseGuard.setReporter154,4377 - public static Reporter getReporter() {getReporter164,4636 - public static Reporter getReporter() {CloseGuard.getReporter164,4636 - private CloseGuard() {}CloseGuard168,4711 - private CloseGuard() {}CloseGuard.CloseGuard168,4711 - public void open(String closer) {open179,5150 - public void open(String closer) {CloseGuard.open179,5150 - private Throwable allocationSite;allocationSite192,5624 - private Throwable allocationSite;CloseGuard.allocationSite192,5624 - public void close() {close198,5769 - public void close() {CloseGuard.close198,5769 - public void warnIfOpen() {warnIfOpen208,6065 - public void warnIfOpen() {CloseGuard.warnIfOpen208,6065 - public static interface Reporter {Reporter223,6516 - public static interface Reporter {CloseGuard.Reporter223,6516 - public void report (String message, Throwable allocationSite);report224,6555 - public void report (String message, Throwable allocationSite);CloseGuard.Reporter.report224,6555 - private static final class DefaultReporter implements Reporter {DefaultReporter230,6721 - private static final class DefaultReporter implements Reporter {CloseGuard.DefaultReporter230,6721 - @Override public void report (String message, Throwable allocationSite) {report231,6790 - @Override public void report (String message, Throwable allocationSite) {CloseGuard.DefaultReporter.report231,6790 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/DatabaseObjectNotClosedException.java,639 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class DatabaseObjectNotClosedException extends RuntimeException {DatabaseObjectNotClosedException28,894 - private static final String s = "Application did not close the cursor or database object " +s29,967 - private static final String s = "Application did not close the cursor or database object " +DatabaseObjectNotClosedException.s29,967 - public DatabaseObjectNotClosedException() {DatabaseObjectNotClosedException32,1101 - public DatabaseObjectNotClosedException() {DatabaseObjectNotClosedException.DatabaseObjectNotClosedException32,1101 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteAbortException.java,486 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteAbortException extends SQLiteException {SQLiteAbortException28,954 - public SQLiteAbortException() {}SQLiteAbortException29,1014 - public SQLiteAbortException() {}SQLiteAbortException.SQLiteAbortException29,1014 - public SQLiteAbortException(String error) {SQLiteAbortException31,1052 - public SQLiteAbortException(String error) {SQLiteAbortException.SQLiteAbortException31,1052 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteAccessPermException.java,542 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteAccessPermException extends SQLiteException {SQLiteAccessPermException27,884 - public SQLiteAccessPermException() {}SQLiteAccessPermException28,949 - public SQLiteAccessPermException() {}SQLiteAccessPermException.SQLiteAccessPermException28,949 - public SQLiteAccessPermException(String error) {SQLiteAccessPermException30,992 - public SQLiteAccessPermException(String error) {SQLiteAccessPermException.SQLiteAccessPermException30,992 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteBindOrColumnIndexOutOfRangeException.java,746 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteBindOrColumnIndexOutOfRangeException extends SQLiteException {SQLiteBindOrColumnIndexOutOfRangeException26,834 - public SQLiteBindOrColumnIndexOutOfRangeException() {}SQLiteBindOrColumnIndexOutOfRangeException27,916 - public SQLiteBindOrColumnIndexOutOfRangeException() {}SQLiteBindOrColumnIndexOutOfRangeException.SQLiteBindOrColumnIndexOutOfRangeException27,916 - public SQLiteBindOrColumnIndexOutOfRangeException(String error) {SQLiteBindOrColumnIndexOutOfRangeException29,976 - public SQLiteBindOrColumnIndexOutOfRangeException(String error) {SQLiteBindOrColumnIndexOutOfRangeException.SQLiteBindOrColumnIndexOutOfRangeException29,976 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteBlobTooBigException.java,542 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteBlobTooBigException extends SQLiteException {SQLiteBlobTooBigException23,758 - public SQLiteBlobTooBigException() {}SQLiteBlobTooBigException24,823 - public SQLiteBlobTooBigException() {}SQLiteBlobTooBigException.SQLiteBlobTooBigException24,823 - public SQLiteBlobTooBigException(String error) {SQLiteBlobTooBigException26,866 - public SQLiteBlobTooBigException(String error) {SQLiteBlobTooBigException.SQLiteBlobTooBigException26,866 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteCantOpenDatabaseException.java,614 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteCantOpenDatabaseException extends SQLiteException {SQLiteCantOpenDatabaseException23,758 - public SQLiteCantOpenDatabaseException() {}SQLiteCantOpenDatabaseException24,829 - public SQLiteCantOpenDatabaseException() {}SQLiteCantOpenDatabaseException.SQLiteCantOpenDatabaseException24,829 - public SQLiteCantOpenDatabaseException(String error) {SQLiteCantOpenDatabaseException26,878 - public SQLiteCantOpenDatabaseException(String error) {SQLiteCantOpenDatabaseException.SQLiteCantOpenDatabaseException26,878 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteClosable.java,1269 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public abstract class SQLiteClosable implements Closeable {SQLiteClosable30,944 - private int mReferenceCount = 1;mReferenceCount31,1004 - private int mReferenceCount = 1;SQLiteClosable.mReferenceCount31,1004 - protected abstract void onAllReferencesReleased();onAllReferencesReleased37,1192 - protected abstract void onAllReferencesReleased();SQLiteClosable.onAllReferencesReleased37,1192 - protected void onAllReferencesReleasedFromContainer() {onAllReferencesReleasedFromContainer46,1445 - protected void onAllReferencesReleasedFromContainer() {SQLiteClosable.onAllReferencesReleasedFromContainer46,1445 - public void acquireReference() {acquireReference56,1720 - public void acquireReference() {SQLiteClosable.acquireReference56,1720 - public void releaseReference() {releaseReference72,2185 - public void releaseReference() {SQLiteClosable.releaseReference72,2185 - public void releaseReferenceFromContainer() {releaseReferenceFromContainer90,2713 - public void releaseReferenceFromContainer() {SQLiteClosable.releaseReferenceFromContainer90,2713 - public void close() {close109,3279 - public void close() {SQLiteClosable.close109,3279 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteConnection.java,27054 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteConnection implements CancellationSignal.OnCancelListener {SQLiteConnection92,3362 - private static final String TAG = "SQLiteConnection";TAG93,3447 - private static final String TAG = "SQLiteConnection";SQLiteConnection.TAG93,3447 - private static final boolean DEBUG = false;DEBUG94,3505 - private static final boolean DEBUG = false;SQLiteConnection.DEBUG94,3505 - private static final String[] EMPTY_STRING_ARRAY = new String[0];EMPTY_STRING_ARRAY96,3554 - private static final String[] EMPTY_STRING_ARRAY = new String[0];SQLiteConnection.EMPTY_STRING_ARRAY96,3554 - private static final byte[] EMPTY_BYTE_ARRAY = new byte[0];EMPTY_BYTE_ARRAY97,3624 - private static final byte[] EMPTY_BYTE_ARRAY = new byte[0];SQLiteConnection.EMPTY_BYTE_ARRAY97,3624 - private static final Pattern TRIM_SQL_PATTERN = Pattern.compile("[\\s]*\\n+[\\s]*");TRIM_SQL_PATTERN99,3689 - private static final Pattern TRIM_SQL_PATTERN = Pattern.compile("[\\s]*\\n+[\\s]*");SQLiteConnection.TRIM_SQL_PATTERN99,3689 - private final CloseGuard mCloseGuard = CloseGuard.get();mCloseGuard101,3779 - private final CloseGuard mCloseGuard = CloseGuard.get();SQLiteConnection.mCloseGuard101,3779 - private final SQLiteConnectionPool mPool;mPool103,3841 - private final SQLiteConnectionPool mPool;SQLiteConnection.mPool103,3841 - private final SQLiteDatabaseConfiguration mConfiguration;mConfiguration104,3887 - private final SQLiteDatabaseConfiguration mConfiguration;SQLiteConnection.mConfiguration104,3887 - private final int mConnectionId;mConnectionId105,3949 - private final int mConnectionId;SQLiteConnection.mConnectionId105,3949 - private final boolean mIsPrimaryConnection;mIsPrimaryConnection106,3986 - private final boolean mIsPrimaryConnection;SQLiteConnection.mIsPrimaryConnection106,3986 - private final boolean mIsReadOnlyConnection;mIsReadOnlyConnection107,4034 - private final boolean mIsReadOnlyConnection;SQLiteConnection.mIsReadOnlyConnection107,4034 - private final PreparedStatementCache mPreparedStatementCache;mPreparedStatementCache108,4083 - private final PreparedStatementCache mPreparedStatementCache;SQLiteConnection.mPreparedStatementCache108,4083 - private PreparedStatement mPreparedStatementPool;mPreparedStatementPool109,4149 - private PreparedStatement mPreparedStatementPool;SQLiteConnection.mPreparedStatementPool109,4149 - private final OperationLog mRecentOperations = new OperationLog();mRecentOperations112,4238 - private final OperationLog mRecentOperations = new OperationLog();SQLiteConnection.mRecentOperations112,4238 - private long mConnectionPtr;mConnectionPtr115,4379 - private long mConnectionPtr;SQLiteConnection.mConnectionPtr115,4379 - private boolean mOnlyAllowReadOnlyOperations;mOnlyAllowReadOnlyOperations117,4413 - private boolean mOnlyAllowReadOnlyOperations;SQLiteConnection.mOnlyAllowReadOnlyOperations117,4413 - private int mCancellationSignalAttachCount;mCancellationSignalAttachCount123,4774 - private int mCancellationSignalAttachCount;SQLiteConnection.mCancellationSignalAttachCount123,4774 - private static native long nativeOpen(String path, int openFlags, String label,nativeOpen125,4823 - private static native long nativeOpen(String path, int openFlags, String label,SQLiteConnection.nativeOpen125,4823 - private static native void nativeClose(long connectionPtr);nativeClose127,4964 - private static native void nativeClose(long connectionPtr);SQLiteConnection.nativeClose127,4964 - private static native void nativeRegisterCustomFunction(long connectionPtr,nativeRegisterCustomFunction128,5028 - private static native void nativeRegisterCustomFunction(long connectionPtr,SQLiteConnection.nativeRegisterCustomFunction128,5028 - private static native void nativeRegisterLocalizedCollators(long connectionPtr, String locale);nativeRegisterLocalizedCollators130,5152 - private static native void nativeRegisterLocalizedCollators(long connectionPtr, String locale);SQLiteConnection.nativeRegisterLocalizedCollators130,5152 - private static native long nativePrepareStatement(long connectionPtr, String sql);nativePrepareStatement131,5252 - private static native long nativePrepareStatement(long connectionPtr, String sql);SQLiteConnection.nativePrepareStatement131,5252 - private static native void nativeFinalizeStatement(long connectionPtr, long statementPtr);nativeFinalizeStatement132,5339 - private static native void nativeFinalizeStatement(long connectionPtr, long statementPtr);SQLiteConnection.nativeFinalizeStatement132,5339 - private static native int nativeGetParameterCount(long connectionPtr, long statementPtr);nativeGetParameterCount133,5434 - private static native int nativeGetParameterCount(long connectionPtr, long statementPtr);SQLiteConnection.nativeGetParameterCount133,5434 - private static native boolean nativeIsReadOnly(long connectionPtr, long statementPtr);nativeIsReadOnly134,5528 - private static native boolean nativeIsReadOnly(long connectionPtr, long statementPtr);SQLiteConnection.nativeIsReadOnly134,5528 - private static native int nativeGetColumnCount(long connectionPtr, long statementPtr);nativeGetColumnCount135,5619 - private static native int nativeGetColumnCount(long connectionPtr, long statementPtr);SQLiteConnection.nativeGetColumnCount135,5619 - private static native String nativeGetColumnName(long connectionPtr, long statementPtr,nativeGetColumnName136,5710 - private static native String nativeGetColumnName(long connectionPtr, long statementPtr,SQLiteConnection.nativeGetColumnName136,5710 - private static native void nativeBindNull(long connectionPtr, long statementPtr,nativeBindNull138,5826 - private static native void nativeBindNull(long connectionPtr, long statementPtr,SQLiteConnection.nativeBindNull138,5826 - private static native void nativeBindLong(long connectionPtr, long statementPtr,nativeBindLong140,5935 - private static native void nativeBindLong(long connectionPtr, long statementPtr,SQLiteConnection.nativeBindLong140,5935 - private static native void nativeBindDouble(long connectionPtr, long statementPtr,nativeBindDouble142,6056 - private static native void nativeBindDouble(long connectionPtr, long statementPtr,SQLiteConnection.nativeBindDouble142,6056 - private static native void nativeBindString(long connectionPtr, long statementPtr,nativeBindString144,6181 - private static native void nativeBindString(long connectionPtr, long statementPtr,SQLiteConnection.nativeBindString144,6181 - private static native void nativeBindBlob(long connectionPtr, long statementPtr,nativeBindBlob146,6306 - private static native void nativeBindBlob(long connectionPtr, long statementPtr,SQLiteConnection.nativeBindBlob146,6306 - private static native void nativeResetStatementAndClearBindings(nativeResetStatementAndClearBindings148,6429 - private static native void nativeResetStatementAndClearBindings(SQLiteConnection.nativeResetStatementAndClearBindings148,6429 - private static native void nativeExecute(long connectionPtr, long statementPtr);nativeExecute150,6550 - private static native void nativeExecute(long connectionPtr, long statementPtr);SQLiteConnection.nativeExecute150,6550 - private static native long nativeExecuteForLong(long connectionPtr, long statementPtr);nativeExecuteForLong151,6635 - private static native long nativeExecuteForLong(long connectionPtr, long statementPtr);SQLiteConnection.nativeExecuteForLong151,6635 - private static native String nativeExecuteForString(long connectionPtr, long statementPtr);nativeExecuteForString152,6727 - private static native String nativeExecuteForString(long connectionPtr, long statementPtr);SQLiteConnection.nativeExecuteForString152,6727 - private static native int nativeExecuteForBlobFileDescriptor(nativeExecuteForBlobFileDescriptor153,6823 - private static native int nativeExecuteForBlobFileDescriptor(SQLiteConnection.nativeExecuteForBlobFileDescriptor153,6823 - private static native int nativeExecuteForChangedRowCount(long connectionPtr, long statementPtr);nativeExecuteForChangedRowCount155,6941 - private static native int nativeExecuteForChangedRowCount(long connectionPtr, long statementPtr);SQLiteConnection.nativeExecuteForChangedRowCount155,6941 - private static native long nativeExecuteForLastInsertedRowId(nativeExecuteForLastInsertedRowId156,7043 - private static native long nativeExecuteForLastInsertedRowId(SQLiteConnection.nativeExecuteForLastInsertedRowId156,7043 - private static native long nativeExecuteForCursorWindow(nativeExecuteForCursorWindow158,7161 - private static native long nativeExecuteForCursorWindow(SQLiteConnection.nativeExecuteForCursorWindow158,7161 - private static native int nativeGetDbLookaside(long connectionPtr);nativeGetDbLookaside161,7357 - private static native int nativeGetDbLookaside(long connectionPtr);SQLiteConnection.nativeGetDbLookaside161,7357 - private static native void nativeCancel(long connectionPtr);nativeCancel162,7429 - private static native void nativeCancel(long connectionPtr);SQLiteConnection.nativeCancel162,7429 - private static native void nativeResetCancel(long connectionPtr, boolean cancelable);nativeResetCancel163,7494 - private static native void nativeResetCancel(long connectionPtr, boolean cancelable);SQLiteConnection.nativeResetCancel163,7494 - private static native boolean nativeHasCodec();nativeHasCodec165,7585 - private static native boolean nativeHasCodec();SQLiteConnection.nativeHasCodec165,7585 - public static boolean hasCodec(){ return nativeHasCodec(); }hasCodec166,7637 - public static boolean hasCodec(){ return nativeHasCodec(); }SQLiteConnection.hasCodec166,7637 - private SQLiteConnection(SQLiteConnectionPool pool,SQLiteConnection168,7703 - private SQLiteConnection(SQLiteConnectionPool pool,SQLiteConnection.SQLiteConnection168,7703 - protected void finalize() throws Throwable {finalize182,8318 - protected void finalize() throws Throwable {SQLiteConnection.finalize182,8318 - static SQLiteConnection open(SQLiteConnectionPool pool,open195,8634 - static SQLiteConnection open(SQLiteConnectionPool pool,SQLiteConnection.open195,8634 - void close() {close212,9345 - void close() {SQLiteConnection.close212,9345 - private void open() {open216,9395 - private void open() {SQLiteConnection.open216,9395 - private void dispose(boolean finalized) {dispose238,10185 - private void dispose(boolean finalized) {SQLiteConnection.dispose238,10185 - private void setPageSize() {setPageSize258,10778 - private void setPageSize() {SQLiteConnection.setPageSize258,10778 - private void setAutoCheckpointInterval() {setAutoCheckpointInterval268,11162 - private void setAutoCheckpointInterval() {SQLiteConnection.setAutoCheckpointInterval268,11162 - private void setJournalSizeLimit() {setJournalSizeLimit278,11587 - private void setJournalSizeLimit() {SQLiteConnection.setJournalSizeLimit278,11587 - private void setForeignKeyModeFromConfiguration() {setForeignKeyModeFromConfiguration288,12005 - private void setForeignKeyModeFromConfiguration() {SQLiteConnection.setForeignKeyModeFromConfiguration288,12005 - private void setWalModeFromConfiguration() {setWalModeFromConfiguration298,12402 - private void setWalModeFromConfiguration() {SQLiteConnection.setWalModeFromConfiguration298,12402 - private void setSyncMode(String newValue) {setSyncMode310,12903 - private void setSyncMode(String newValue) {SQLiteConnection.setSyncMode310,12903 - private static String canonicalizeSyncMode(String value) {canonicalizeSyncMode318,13220 - private static String canonicalizeSyncMode(String value) {SQLiteConnection.canonicalizeSyncMode318,13220 - private void setJournalMode(String newValue) {setJournalMode329,13517 - private void setJournalMode(String newValue) {SQLiteConnection.setJournalMode329,13517 - private void setLocaleFromConfiguration() {setLocaleFromConfiguration364,15710 - private void setLocaleFromConfiguration() {SQLiteConnection.setLocaleFromConfiguration364,15710 - public void enableLocalizedCollators(){enableLocalizedCollators408,17532 - public void enableLocalizedCollators(){SQLiteConnection.enableLocalizedCollators408,17532 - void reconfigure(SQLiteDatabaseConfiguration configuration) {reconfigure415,17696 - void reconfigure(SQLiteDatabaseConfiguration configuration) {SQLiteConnection.reconfigure415,17696 - void setOnlyAllowReadOnlyOperations(boolean readOnly) {setOnlyAllowReadOnlyOperations459,19427 - void setOnlyAllowReadOnlyOperations(boolean readOnly) {SQLiteConnection.setOnlyAllowReadOnlyOperations459,19427 - boolean isPreparedStatementInCache(String sql) {isPreparedStatementInCache465,19667 - boolean isPreparedStatementInCache(String sql) {SQLiteConnection.isPreparedStatementInCache465,19667 - public int getConnectionId() {getConnectionId473,19880 - public int getConnectionId() {SQLiteConnection.getConnectionId473,19880 - public boolean isPrimaryConnection() {isPrimaryConnection481,20096 - public boolean isPrimaryConnection() {SQLiteConnection.isPrimaryConnection481,20096 - public void prepare(String sql, SQLiteStatementInfo outStatementInfo) {prepare509,21465 - public void prepare(String sql, SQLiteStatementInfo outStatementInfo) {SQLiteConnection.prepare509,21465 - public void execute(String sql, Object[] bindArgs,execute556,23487 - public void execute(String sql, Object[] bindArgs,SQLiteConnection.execute556,23487 - public long executeForLong(String sql, Object[] bindArgs,executeForLong599,25263 - public long executeForLong(String sql, Object[] bindArgs,SQLiteConnection.executeForLong599,25263 - public String executeForString(String sql, Object[] bindArgs,executeForString642,27066 - public String executeForString(String sql, Object[] bindArgs,SQLiteConnection.executeForString642,27066 - public ParcelFileDescriptor executeForBlobFileDescriptor(String sql, Object[] bindArgs,executeForBlobFileDescriptor687,28974 - public ParcelFileDescriptor executeForBlobFileDescriptor(String sql, Object[] bindArgs,SQLiteConnection.executeForBlobFileDescriptor687,28974 - public int executeForChangedRowCount(String sql, Object[] bindArgs,executeForChangedRowCount733,30949 - public int executeForChangedRowCount(String sql, Object[] bindArgs,SQLiteConnection.executeForChangedRowCount733,30949 - public long executeForLastInsertedRowId(String sql, Object[] bindArgs,executeForLastInsertedRowId782,33025 - public long executeForLastInsertedRowId(String sql, Object[] bindArgs,SQLiteConnection.executeForLastInsertedRowId782,33025 - public int executeForCursorWindow(String sql, Object[] bindArgs,executeForCursorWindow836,35549 - public int executeForCursorWindow(String sql, Object[] bindArgs,SQLiteConnection.executeForCursorWindow836,35549 - private PreparedStatement acquirePreparedStatement(String sql) {acquirePreparedStatement892,38010 - private PreparedStatement acquirePreparedStatement(String sql) {SQLiteConnection.acquirePreparedStatement892,38010 - private void releasePreparedStatement(PreparedStatement statement) {releasePreparedStatement927,39628 - private void releasePreparedStatement(PreparedStatement statement) {SQLiteConnection.releasePreparedStatement927,39628 - private void finalizePreparedStatement(PreparedStatement statement) {finalizePreparedStatement950,40683 - private void finalizePreparedStatement(PreparedStatement statement) {SQLiteConnection.finalizePreparedStatement950,40683 - private void attachCancellationSignal(CancellationSignal cancellationSignal) {attachCancellationSignal955,40883 - private void attachCancellationSignal(CancellationSignal cancellationSignal) {SQLiteConnection.attachCancellationSignal955,40883 - private void detachCancellationSignal(CancellationSignal cancellationSignal) {detachCancellationSignal970,41480 - private void detachCancellationSignal(CancellationSignal cancellationSignal) {SQLiteConnection.detachCancellationSignal970,41480 - public void onCancel() {onCancel991,42459 - public void onCancel() {SQLiteConnection.onCancel991,42459 - private void bindArguments(PreparedStatement statement, Object[] bindArgs) {bindArguments995,42533 - private void bindArguments(PreparedStatement statement, Object[] bindArgs) {SQLiteConnection.bindArguments995,42533 - private void throwIfStatementForbidden(PreparedStatement statement) {throwIfStatementForbidden1039,44526 - private void throwIfStatementForbidden(PreparedStatement statement) {SQLiteConnection.throwIfStatementForbidden1039,44526 - private static boolean isCacheable(int statementType) {isCacheable1046,44852 - private static boolean isCacheable(int statementType) {SQLiteConnection.isCacheable1046,44852 - private void applyBlockGuardPolicy(PreparedStatement statement) {applyBlockGuardPolicy1054,45106 - private void applyBlockGuardPolicy(PreparedStatement statement) {SQLiteConnection.applyBlockGuardPolicy1054,45106 - public void dump(Printer printer, boolean verbose) {dump1070,45673 - public void dump(Printer printer, boolean verbose) {SQLiteConnection.dump1070,45673 - void dumpUnsafe(Printer printer, boolean verbose) {dumpUnsafe1088,46427 - void dumpUnsafe(Printer printer, boolean verbose) {SQLiteConnection.dumpUnsafe1088,46427 - String describeCurrentOperationUnsafe() {describeCurrentOperationUnsafe1117,47613 - String describeCurrentOperationUnsafe() {SQLiteConnection.describeCurrentOperationUnsafe1117,47613 - void collectDbStats(ArrayList dbStatsList) {collectDbStats1126,47865 - void collectDbStats(ArrayList dbStatsList) {SQLiteConnection.collectDbStats1126,47865 - void collectDbStatsUnsafe(ArrayList dbStatsList) {collectDbStatsUnsafe1175,49906 - void collectDbStatsUnsafe(ArrayList dbStatsList) {SQLiteConnection.collectDbStatsUnsafe1175,49906 - private DbStats getMainDbStatsUnsafe(int lookaside, long pageCount, long pageSize) {getMainDbStatsUnsafe1179,50033 - private DbStats getMainDbStatsUnsafe(int lookaside, long pageCount, long pageSize) {SQLiteConnection.getMainDbStatsUnsafe1179,50033 - public String toString() {toString1193,50648 - public String toString() {SQLiteConnection.toString1193,50648 - private PreparedStatement obtainPreparedStatement(String sql, long statementPtr,obtainPreparedStatement1197,50774 - private PreparedStatement obtainPreparedStatement(String sql, long statementPtr,SQLiteConnection.obtainPreparedStatement1197,50774 - private void recyclePreparedStatement(PreparedStatement statement) {recyclePreparedStatement1215,51462 - private void recyclePreparedStatement(PreparedStatement statement) {SQLiteConnection.recyclePreparedStatement1215,51462 - private static String trimSqlForDisplay(String sql) {trimSqlForDisplay1221,51671 - private static String trimSqlForDisplay(String sql) {SQLiteConnection.trimSqlForDisplay1221,51671 - private static final class PreparedStatement {PreparedStatement1235,52346 - private static final class PreparedStatement {SQLiteConnection.PreparedStatement1235,52346 - public PreparedStatement mPoolNext;mPoolNext1237,52427 - public PreparedStatement mPoolNext;SQLiteConnection.PreparedStatement.mPoolNext1237,52427 - public String mSql;mSql1240,52530 - public String mSql;SQLiteConnection.PreparedStatement.mSql1240,52530 - public long mStatementPtr;mStatementPtr1244,52671 - public long mStatementPtr;SQLiteConnection.PreparedStatement.mStatementPtr1244,52671 - public int mNumParameters;mNumParameters1247,52776 - public int mNumParameters;SQLiteConnection.PreparedStatement.mNumParameters1247,52776 - public int mType;mType1250,52843 - public int mType;SQLiteConnection.PreparedStatement.mType1250,52843 - public boolean mReadOnly;mReadOnly1253,52917 - public boolean mReadOnly;SQLiteConnection.PreparedStatement.mReadOnly1253,52917 - public boolean mInCache;mInCache1256,53002 - public boolean mInCache;SQLiteConnection.PreparedStatement.mInCache1256,53002 - public boolean mInUse;mInUse1262,53363 - public boolean mInUse;SQLiteConnection.PreparedStatement.mInUse1262,53363 - private final class PreparedStatementCachePreparedStatementCache1265,53401 - private final class PreparedStatementCacheSQLiteConnection.PreparedStatementCache1265,53401 - public PreparedStatementCache(int size) {PreparedStatementCache1267,53506 - public PreparedStatementCache(int size) {SQLiteConnection.PreparedStatementCache.PreparedStatementCache1267,53506 - protected void entryRemoved(boolean evicted, String key,entryRemoved1272,53610 - protected void entryRemoved(boolean evicted, String key,SQLiteConnection.PreparedStatementCache.entryRemoved1272,53610 - public void dump(Printer printer) {dump1280,53902 - public void dump(Printer printer) {SQLiteConnection.PreparedStatementCache.dump1280,53902 - private static final class OperationLog {OperationLog1304,55042 - private static final class OperationLog {SQLiteConnection.OperationLog1304,55042 - private static final int MAX_RECENT_OPERATIONS = 20;MAX_RECENT_OPERATIONS1305,55088 - private static final int MAX_RECENT_OPERATIONS = 20;SQLiteConnection.OperationLog.MAX_RECENT_OPERATIONS1305,55088 - private static final int COOKIE_GENERATION_SHIFT = 8;COOKIE_GENERATION_SHIFT1306,55149 - private static final int COOKIE_GENERATION_SHIFT = 8;SQLiteConnection.OperationLog.COOKIE_GENERATION_SHIFT1306,55149 - private static final int COOKIE_INDEX_MASK = 0xff;COOKIE_INDEX_MASK1307,55211 - private static final int COOKIE_INDEX_MASK = 0xff;SQLiteConnection.OperationLog.COOKIE_INDEX_MASK1307,55211 - private final Operation[] mOperations = new Operation[MAX_RECENT_OPERATIONS];mOperations1309,55271 - private final Operation[] mOperations = new Operation[MAX_RECENT_OPERATIONS];SQLiteConnection.OperationLog.mOperations1309,55271 - private int mIndex;mIndex1310,55357 - private int mIndex;SQLiteConnection.OperationLog.mIndex1310,55357 - private int mGeneration;mGeneration1311,55385 - private int mGeneration;SQLiteConnection.OperationLog.mGeneration1311,55385 - public int beginOperation(String kind, String sql, Object[] bindArgs) {beginOperation1313,55419 - public int beginOperation(String kind, String sql, Object[] bindArgs) {SQLiteConnection.OperationLog.beginOperation1313,55419 - public void failOperation(int cookie, Exception ex) {failOperation1352,57172 - public void failOperation(int cookie, Exception ex) {SQLiteConnection.OperationLog.failOperation1352,57172 - public void endOperation(int cookie) {endOperation1361,57478 - public void endOperation(int cookie) {SQLiteConnection.OperationLog.endOperation1361,57478 - public boolean endOperationDeferLog(int cookie) {endOperationDeferLog1369,57721 - public boolean endOperationDeferLog(int cookie) {SQLiteConnection.OperationLog.endOperationDeferLog1369,57721 - public void logOperation(int cookie, String detail) {logOperation1375,57904 - public void logOperation(int cookie, String detail) {SQLiteConnection.OperationLog.logOperation1375,57904 - private boolean endOperationDeferLogLocked(int cookie) {endOperationDeferLogLocked1381,58084 - private boolean endOperationDeferLogLocked(int cookie) {SQLiteConnection.OperationLog.endOperationDeferLogLocked1381,58084 - private void logOperationLocked(int cookie, String detail) {logOperationLocked1392,58583 - private void logOperationLocked(int cookie, String detail) {SQLiteConnection.OperationLog.logOperationLocked1392,58583 - private int newOperationCookieLocked(int index) {newOperationCookieLocked1402,58965 - private int newOperationCookieLocked(int index) {SQLiteConnection.OperationLog.newOperationCookieLocked1402,58965 - private Operation getOperationLocked(int cookie) {getOperationLocked1407,59150 - private Operation getOperationLocked(int cookie) {SQLiteConnection.OperationLog.getOperationLocked1407,59150 - public String describeCurrentOperation() {describeCurrentOperation1413,59405 - public String describeCurrentOperation() {SQLiteConnection.OperationLog.describeCurrentOperation1413,59405 - public void dump(Printer printer, boolean verbose) {dump1425,59855 - public void dump(Printer printer, boolean verbose) {SQLiteConnection.OperationLog.dump1425,59855 - private static final class Operation {Operation1455,61077 - private static final class Operation {SQLiteConnection.Operation1455,61077 - private static final SimpleDateFormat sDateFormat =sDateFormat1456,61120 - private static final SimpleDateFormat sDateFormat =SQLiteConnection.Operation.sDateFormat1456,61120 - public long mStartTime;mStartTime1459,61246 - public long mStartTime;SQLiteConnection.Operation.mStartTime1459,61246 - public long mEndTime;mEndTime1460,61278 - public long mEndTime;SQLiteConnection.Operation.mEndTime1460,61278 - public String mKind;mKind1461,61308 - public String mKind;SQLiteConnection.Operation.mKind1461,61308 - public String mSql;mSql1462,61337 - public String mSql;SQLiteConnection.Operation.mSql1462,61337 - public ArrayList mBindArgs;mBindArgs1463,61365 - public ArrayList mBindArgs;SQLiteConnection.Operation.mBindArgs1463,61365 - public boolean mFinished;mFinished1464,61409 - public boolean mFinished;SQLiteConnection.Operation.mFinished1464,61409 - public Exception mException;mException1465,61443 - public Exception mException;SQLiteConnection.Operation.mException1465,61443 - public int mCookie;mCookie1466,61480 - public int mCookie;SQLiteConnection.Operation.mCookie1466,61480 - public void describe(StringBuilder msg, boolean verbose) {describe1468,61509 - public void describe(StringBuilder msg, boolean verbose) {SQLiteConnection.Operation.describe1468,61509 - private String getStatus() {getStatus1505,63068 - private String getStatus() {SQLiteConnection.Operation.getStatus1505,63068 - private String getFormattedStartTime() {getFormattedStartTime1512,63258 - private String getFormattedStartTime() {SQLiteConnection.Operation.getFormattedStartTime1512,63258 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteConnectionPool.java,13800 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteConnectionPool implements Closeable {SQLiteConnectionPool76,3000 - private static final String TAG = "SQLiteConnectionPool";TAG77,3063 - private static final String TAG = "SQLiteConnectionPool";SQLiteConnectionPool.TAG77,3063 - private static final long CONNECTION_POOL_BUSY_MILLIS = 30 * 1000; // 30 secondsCONNECTION_POOL_BUSY_MILLIS81,3275 - private static final long CONNECTION_POOL_BUSY_MILLIS = 30 * 1000; // 30 secondsSQLiteConnectionPool.CONNECTION_POOL_BUSY_MILLIS81,3275 - private final CloseGuard mCloseGuard = CloseGuard.get();mCloseGuard83,3361 - private final CloseGuard mCloseGuard = CloseGuard.get();SQLiteConnectionPool.mCloseGuard83,3361 - private final Object mLock = new Object();mLock85,3423 - private final Object mLock = new Object();SQLiteConnectionPool.mLock85,3423 - private final AtomicBoolean mConnectionLeaked = new AtomicBoolean();mConnectionLeaked86,3470 - private final AtomicBoolean mConnectionLeaked = new AtomicBoolean();SQLiteConnectionPool.mConnectionLeaked86,3470 - private final SQLiteDatabaseConfiguration mConfiguration;mConfiguration87,3543 - private final SQLiteDatabaseConfiguration mConfiguration;SQLiteConnectionPool.mConfiguration87,3543 - private int mMaxConnectionPoolSize;mMaxConnectionPoolSize88,3605 - private int mMaxConnectionPoolSize;SQLiteConnectionPool.mMaxConnectionPoolSize88,3605 - private boolean mIsOpen;mIsOpen89,3645 - private boolean mIsOpen;SQLiteConnectionPool.mIsOpen89,3645 - private int mNextConnectionId;mNextConnectionId90,3674 - private int mNextConnectionId;SQLiteConnectionPool.mNextConnectionId90,3674 - private ConnectionWaiter mConnectionWaiterPool;mConnectionWaiterPool92,3710 - private ConnectionWaiter mConnectionWaiterPool;SQLiteConnectionPool.mConnectionWaiterPool92,3710 - private ConnectionWaiter mConnectionWaiterQueue;mConnectionWaiterQueue93,3762 - private ConnectionWaiter mConnectionWaiterQueue;SQLiteConnectionPool.mConnectionWaiterQueue93,3762 - private final ArrayList mAvailableNonPrimaryConnections =mAvailableNonPrimaryConnections96,3871 - private final ArrayList mAvailableNonPrimaryConnections =SQLiteConnectionPool.mAvailableNonPrimaryConnections96,3871 - private SQLiteConnection mAvailablePrimaryConnection;mAvailablePrimaryConnection98,3998 - private SQLiteConnection mAvailablePrimaryConnection;SQLiteConnectionPool.mAvailablePrimaryConnection98,3998 - enum AcquiredConnectionStatus {AcquiredConnectionStatus101,4152 - enum AcquiredConnectionStatus {SQLiteConnectionPool.AcquiredConnectionStatus101,4152 - NORMAL,NORMAL103,4255 - RECONFIGURE,RECONFIGURE106,4342 - DISCARD,DISCARD109,4420 - private final WeakHashMap mAcquiredConnections =mAcquiredConnections117,4792 - private final WeakHashMap mAcquiredConnections =SQLiteConnectionPool.mAcquiredConnections117,4792 - public static final int CONNECTION_FLAG_READ_ONLY = 1 << 0;CONNECTION_FLAG_READ_ONLY127,5144 - public static final int CONNECTION_FLAG_READ_ONLY = 1 << 0;SQLiteConnectionPool.CONNECTION_FLAG_READ_ONLY127,5144 - public static final int CONNECTION_FLAG_PRIMARY_CONNECTION_AFFINITY = 1 << 1;CONNECTION_FLAG_PRIMARY_CONNECTION_AFFINITY140,5731 - public static final int CONNECTION_FLAG_PRIMARY_CONNECTION_AFFINITY = 1 << 1;SQLiteConnectionPool.CONNECTION_FLAG_PRIMARY_CONNECTION_AFFINITY140,5731 - public static final int CONNECTION_FLAG_INTERACTIVE = 1 << 2;CONNECTION_FLAG_INTERACTIVE150,6104 - public static final int CONNECTION_FLAG_INTERACTIVE = 1 << 2;SQLiteConnectionPool.CONNECTION_FLAG_INTERACTIVE150,6104 - private SQLiteConnectionPool(SQLiteDatabaseConfiguration configuration) {SQLiteConnectionPool152,6171 - private SQLiteConnectionPool(SQLiteDatabaseConfiguration configuration) {SQLiteConnectionPool.SQLiteConnectionPool152,6171 - protected void finalize() throws Throwable {finalize158,6385 - protected void finalize() throws Throwable {SQLiteConnectionPool.finalize158,6385 - public static SQLiteConnectionPool open(SQLiteDatabaseConfiguration configuration) {open174,6782 - public static SQLiteConnectionPool open(SQLiteDatabaseConfiguration configuration) {SQLiteConnectionPool.open174,6782 - private void open() {open186,7190 - private void open() {SQLiteConnectionPool.open186,7190 - public void close() {close208,8016 - public void close() {SQLiteConnectionPool.close208,8016 - private void dispose(boolean finalized) {dispose212,8073 - private void dispose(boolean finalized) {SQLiteConnectionPool.dispose212,8073 - public void reconfigure(SQLiteDatabaseConfiguration configuration) {reconfigure258,9818 - public void reconfigure(SQLiteDatabaseConfiguration configuration) {SQLiteConnectionPool.reconfigure258,9818 - public SQLiteConnection acquireConnection(String sql, int connectionFlags,acquireConnection350,14478 - public SQLiteConnection acquireConnection(String sql, int connectionFlags,SQLiteConnectionPool.acquireConnection350,14478 - public void releaseConnection(SQLiteConnection connection) {releaseConnection367,15134 - public void releaseConnection(SQLiteConnection connection) {SQLiteConnectionPool.releaseConnection367,15134 - private boolean recycleConnectionLocked(SQLiteConnection connection,recycleConnectionLocked396,16448 - private boolean recycleConnectionLocked(SQLiteConnection connection,SQLiteConnectionPool.recycleConnectionLocked396,16448 - public boolean shouldYieldConnection(SQLiteConnection connection, int connectionFlags) {shouldYieldConnection425,17630 - public boolean shouldYieldConnection(SQLiteConnection connection, int connectionFlags) {SQLiteConnectionPool.shouldYieldConnection425,17630 - public void collectDbStats(ArrayList dbStatsList) {collectDbStats447,18439 - public void collectDbStats(ArrayList dbStatsList) {SQLiteConnectionPool.collectDbStats447,18439 - private SQLiteConnection openConnectionLocked(SQLiteDatabaseConfiguration configuration,openConnectionLocked464,19024 - private SQLiteConnection openConnectionLocked(SQLiteDatabaseConfiguration configuration,SQLiteConnectionPool.openConnectionLocked464,19024 - void onConnectionLeaked() {onConnectionLeaked471,19342 - void onConnectionLeaked() {SQLiteConnectionPool.onConnectionLeaked471,19342 - private void closeAvailableConnectionsAndLogExceptionsLocked() {closeAvailableConnectionsAndLogExceptionsLocked501,21159 - private void closeAvailableConnectionsAndLogExceptionsLocked() {SQLiteConnectionPool.closeAvailableConnectionsAndLogExceptionsLocked501,21159 - private void closeAvailableNonPrimaryConnectionsAndLogExceptionsLocked() {closeAvailableNonPrimaryConnectionsAndLogExceptionsLocked511,21514 - private void closeAvailableNonPrimaryConnectionsAndLogExceptionsLocked() {SQLiteConnectionPool.closeAvailableNonPrimaryConnectionsAndLogExceptionsLocked511,21514 - private void closeExcessConnectionsAndLogExceptionsLocked() {closeExcessConnectionsAndLogExceptionsLocked520,21878 - private void closeExcessConnectionsAndLogExceptionsLocked() {SQLiteConnectionPool.closeExcessConnectionsAndLogExceptionsLocked520,21878 - private void closeConnectionAndLogExceptionsLocked(SQLiteConnection connection) {closeConnectionAndLogExceptionsLocked530,22295 - private void closeConnectionAndLogExceptionsLocked(SQLiteConnection connection) {SQLiteConnectionPool.closeConnectionAndLogExceptionsLocked530,22295 - private void discardAcquiredConnectionsLocked() {discardAcquiredConnectionsLocked540,22666 - private void discardAcquiredConnectionsLocked() {SQLiteConnectionPool.discardAcquiredConnectionsLocked540,22666 - private void reconfigureAllConnectionsLocked() {reconfigureAllConnectionsLocked545,22820 - private void reconfigureAllConnectionsLocked() {SQLiteConnectionPool.reconfigureAllConnectionsLocked545,22820 - private void markAcquiredConnectionsLocked(AcquiredConnectionStatus status) {markAcquiredConnectionsLocked575,24138 - private void markAcquiredConnectionsLocked(AcquiredConnectionStatus status) {SQLiteConnectionPool.markAcquiredConnectionsLocked575,24138 - private SQLiteConnection waitForConnection(String sql, int connectionFlags,waitForConnection595,25043 - private SQLiteConnection waitForConnection(String sql, int connectionFlags,SQLiteConnectionPool.waitForConnection595,25043 - private void cancelConnectionWaiterLocked(ConnectionWaiter waiter) {cancelConnectionWaiterLocked712,29802 - private void cancelConnectionWaiterLocked(ConnectionWaiter waiter) {SQLiteConnectionPool.cancelConnectionWaiterLocked712,29802 - private void logConnectionPoolBusyLocked(long waitMillis, int connectionFlags) {logConnectionPoolBusyLocked741,30839 - private void logConnectionPoolBusyLocked(long waitMillis, int connectionFlags) {SQLiteConnectionPool.logConnectionPoolBusyLocked741,30839 - private void wakeConnectionWaitersLocked() {wakeConnectionWaitersLocked784,32685 - private void wakeConnectionWaitersLocked() {SQLiteConnectionPool.wakeConnectionWaitersLocked784,32685 - private SQLiteConnection tryAcquirePrimaryConnectionLocked(int connectionFlags) {tryAcquirePrimaryConnectionLocked846,35444 - private SQLiteConnection tryAcquirePrimaryConnectionLocked(int connectionFlags) {SQLiteConnectionPool.tryAcquirePrimaryConnectionLocked846,35444 - private SQLiteConnection tryAcquireNonPrimaryConnectionLocked(tryAcquireNonPrimaryConnectionLocked871,36541 - private SQLiteConnection tryAcquireNonPrimaryConnectionLocked(SQLiteConnectionPool.tryAcquireNonPrimaryConnectionLocked871,36541 - private void finishAcquireConnectionLocked(SQLiteConnection connection, int connectionFlags) {finishAcquireConnectionLocked910,38265 - private void finishAcquireConnectionLocked(SQLiteConnection connection, int connectionFlags) {SQLiteConnectionPool.finishAcquireConnectionLocked910,38265 - private boolean isSessionBlockingImportantConnectionWaitersLocked(isSessionBlockingImportantConnectionWaitersLocked924,38934 - private boolean isSessionBlockingImportantConnectionWaitersLocked(SQLiteConnectionPool.isSessionBlockingImportantConnectionWaitersLocked924,38934 - private static int getPriority(int connectionFlags) {getPriority948,39949 - private static int getPriority(int connectionFlags) {SQLiteConnectionPool.getPriority948,39949 - private void setMaxConnectionPoolSizeLocked() {setMaxConnectionPoolSizeLocked952,40091 - private void setMaxConnectionPoolSizeLocked() {SQLiteConnectionPool.setMaxConnectionPoolSizeLocked952,40091 - private void throwIfClosedLocked() {throwIfClosedLocked966,40733 - private void throwIfClosedLocked() {SQLiteConnectionPool.throwIfClosedLocked966,40733 - private ConnectionWaiter obtainConnectionWaiterLocked(Thread thread, long startTime,obtainConnectionWaiterLocked973,40963 - private ConnectionWaiter obtainConnectionWaiterLocked(Thread thread, long startTime,SQLiteConnectionPool.obtainConnectionWaiterLocked973,40963 - private void recycleConnectionWaiterLocked(ConnectionWaiter waiter) {recycleConnectionWaiterLocked991,41666 - private void recycleConnectionWaiterLocked(ConnectionWaiter waiter) {SQLiteConnectionPool.recycleConnectionWaiterLocked991,41666 - public void enableLocalizedCollators() {enableLocalizedCollators1001,41997 - public void enableLocalizedCollators() {SQLiteConnectionPool.enableLocalizedCollators1001,41997 - public void dump(Printer printer, boolean verbose) {dump1018,42546 - public void dump(Printer printer, boolean verbose) {SQLiteConnectionPool.dump1018,42546 - public String toString() {toString1075,45024 - public String toString() {SQLiteConnectionPool.toString1075,45024 - private static final class ConnectionWaiter {ConnectionWaiter1079,45125 - private static final class ConnectionWaiter {SQLiteConnectionPool.ConnectionWaiter1079,45125 - public ConnectionWaiter mNext;mNext1080,45175 - public ConnectionWaiter mNext;SQLiteConnectionPool.ConnectionWaiter.mNext1080,45175 - public Thread mThread;mThread1081,45214 - public Thread mThread;SQLiteConnectionPool.ConnectionWaiter.mThread1081,45214 - public long mStartTime;mStartTime1082,45245 - public long mStartTime;SQLiteConnectionPool.ConnectionWaiter.mStartTime1082,45245 - public int mPriority;mPriority1083,45277 - public int mPriority;SQLiteConnectionPool.ConnectionWaiter.mPriority1083,45277 - public boolean mWantPrimaryConnection;mWantPrimaryConnection1084,45307 - public boolean mWantPrimaryConnection;SQLiteConnectionPool.ConnectionWaiter.mWantPrimaryConnection1084,45307 - public String mSql;mSql1085,45354 - public String mSql;SQLiteConnectionPool.ConnectionWaiter.mSql1085,45354 - public int mConnectionFlags;mConnectionFlags1086,45382 - public int mConnectionFlags;SQLiteConnectionPool.ConnectionWaiter.mConnectionFlags1086,45382 - public SQLiteConnection mAssignedConnection;mAssignedConnection1087,45419 - public SQLiteConnection mAssignedConnection;SQLiteConnectionPool.ConnectionWaiter.mAssignedConnection1087,45419 - public RuntimeException mException;mException1088,45472 - public RuntimeException mException;SQLiteConnectionPool.ConnectionWaiter.mException1088,45472 - public int mNonce;mNonce1089,45516 - public int mNonce;SQLiteConnectionPool.ConnectionWaiter.mNonce1089,45516 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteConstraintException.java,542 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteConstraintException extends SQLiteException {SQLiteConstraintException26,840 - public SQLiteConstraintException() {}SQLiteConstraintException27,905 - public SQLiteConstraintException() {}SQLiteConstraintException.SQLiteConstraintException27,905 - public SQLiteConstraintException(String error) {SQLiteConstraintException29,948 - public SQLiteConstraintException(String error) {SQLiteConstraintException.SQLiteConstraintException29,948 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteCursor.java,3856 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,720 -public class SQLiteCursor extends AbstractWindowedCursor {SQLiteCursor41,1262 - static final String TAG = "SQLiteCursor";TAG42,1321 - static final String TAG = "SQLiteCursor";SQLiteCursor.TAG42,1321 - static final int NO_COUNT = -1;NO_COUNT43,1367 - static final int NO_COUNT = -1;SQLiteCursor.NO_COUNT43,1367 - private final String mEditTable;mEditTable46,1445 - private final String mEditTable;SQLiteCursor.mEditTable46,1445 - private final String[] mColumns;mColumns49,1531 - private final String[] mColumns;SQLiteCursor.mColumns49,1531 - private final SQLiteQuery mQuery;mQuery52,1612 - private final SQLiteQuery mQuery;SQLiteCursor.mQuery52,1612 - private final SQLiteCursorDriver mDriver;mDriver55,1703 - private final SQLiteCursorDriver mDriver;SQLiteCursor.mDriver55,1703 - private int mCount = NO_COUNT;mCount58,1794 - private int mCount = NO_COUNT;SQLiteCursor.mCount58,1794 - private int mCursorWindowCapacity;mCursorWindowCapacity61,1908 - private int mCursorWindowCapacity;SQLiteCursor.mCursorWindowCapacity61,1908 - private Map mColumnNameMap;mColumnNameMap64,2024 - private Map mColumnNameMap;SQLiteCursor.mColumnNameMap64,2024 - private final Throwable mStackTrace;mStackTrace67,2162 - private final Throwable mStackTrace;SQLiteCursor.mStackTrace67,2162 - public SQLiteCursor(SQLiteDatabase db, SQLiteCursorDriver driver,SQLiteCursor84,2981 - public SQLiteCursor(SQLiteDatabase db, SQLiteCursorDriver driver,SQLiteCursor.SQLiteCursor84,2981 - public SQLiteCursor(SQLiteCursorDriver driver, String editTable, SQLiteQuery query) {SQLiteCursor99,3689 - public SQLiteCursor(SQLiteCursorDriver driver, String editTable, SQLiteQuery query) {SQLiteCursor.SQLiteCursor99,3689 - public SQLiteDatabase getDatabase() {getDatabase133,4923 - public SQLiteDatabase getDatabase() {SQLiteCursor.getDatabase133,4923 - public boolean onMove(int oldPosition, int newPosition) {onMove138,5023 - public boolean onMove(int oldPosition, int newPosition) {SQLiteCursor.onMove138,5023 - public int getCount() {getCount149,5405 - public int getCount() {SQLiteCursor.getCount149,5405 - private void awc_clearOrCreateWindow(String name){awc_clearOrCreateWindow162,5829 - private void awc_clearOrCreateWindow(String name){SQLiteCursor.awc_clearOrCreateWindow162,5829 - private void awc_closeWindow(){awc_closeWindow171,6055 - private void awc_closeWindow(){SQLiteCursor.awc_closeWindow171,6055 - private void fillWindow(int requiredPos) {fillWindow175,6121 - private void fillWindow(int requiredPos) {SQLiteCursor.fillWindow175,6121 - public int getColumnIndex(String columnName) {getColumnIndex202,7336 - public int getColumnIndex(String columnName) {SQLiteCursor.getColumnIndex202,7336 - public String[] getColumnNames() {getColumnNames231,8314 - public String[] getColumnNames() {SQLiteCursor.getColumnNames231,8314 - public void deactivate() {deactivate236,8399 - public void deactivate() {SQLiteCursor.deactivate236,8399 - public void close() {close242,8516 - public void close() {SQLiteCursor.close242,8516 - public boolean requery() {requery251,8690 - public boolean requery() {SQLiteCursor.requery251,8690 - public void setWindow(CursorWindow window) {setWindow280,9378 - public void setWindow(CursorWindow window) {SQLiteCursor.setWindow280,9378 - public void setSelectionArguments(String[] selectionArgs) {setSelectionArguments288,9604 - public void setSelectionArguments(String[] selectionArgs) {SQLiteCursor.setSelectionArguments288,9604 - protected void finalize() {finalize296,9826 - protected void finalize() {SQLiteCursor.finalize296,9826 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteCursorDriver.java,868 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public interface SQLiteCursorDriver {SQLiteCursorDriver30,1010 - Cursor query(CursorFactory factory, String[] bindArgs);query38,1325 - Cursor query(CursorFactory factory, String[] bindArgs);SQLiteCursorDriver.query38,1325 - void cursorDeactivated();cursorDeactivated43,1455 - void cursorDeactivated();SQLiteCursorDriver.cursorDeactivated43,1455 - void cursorRequeried(Cursor cursor);cursorRequeried48,1556 - void cursorRequeried(Cursor cursor);SQLiteCursorDriver.cursorRequeried48,1556 - void cursorClosed();cursorClosed53,1696 - void cursorClosed();SQLiteCursorDriver.cursorClosed53,1696 - public void setBindArguments(String[] bindArgs);setBindArguments59,1855 - public void setBindArguments(String[] bindArgs);SQLiteCursorDriver.setBindArguments59,1855 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteCustomFunction.java,891 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteCustomFunction {SQLiteCustomFunction28,814 - public final String name;name29,856 - public final String name;SQLiteCustomFunction.name29,856 - public final int numArgs;numArgs30,886 - public final int numArgs;SQLiteCustomFunction.numArgs30,886 - public final SQLiteDatabase.CustomFunction callback;callback31,916 - public final SQLiteDatabase.CustomFunction callback;SQLiteCustomFunction.callback31,916 - public SQLiteCustomFunction(String name, int numArgs,SQLiteCustomFunction41,1271 - public SQLiteCustomFunction(String name, int numArgs,SQLiteCustomFunction.SQLiteCustomFunction41,1271 - private void dispatchCallback(String[] args) {dispatchCallback54,1654 - private void dispatchCallback(String[] args) {SQLiteCustomFunction.dispatchCallback54,1654 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteDatabase.java,22665 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteDatabase extends SQLiteClosable {SQLiteDatabase72,2361 - private static final String TAG = "SQLiteDatabase";TAG73,2420 - private static final String TAG = "SQLiteDatabase";SQLiteDatabase.TAG73,2420 - private static final int EVENT_DB_CORRUPT = 75004;EVENT_DB_CORRUPT75,2477 - private static final int EVENT_DB_CORRUPT = 75004;SQLiteDatabase.EVENT_DB_CORRUPT75,2477 - private static WeakHashMap sActiveDatabases =sActiveDatabases80,2707 - private static WeakHashMap sActiveDatabases =SQLiteDatabase.sActiveDatabases80,2707 - private final ThreadLocal mThreadSession = new ThreadLocal() {mThreadSession86,2987 - private final ThreadLocal mThreadSession = new ThreadLocal() {SQLiteDatabase.mThreadSession86,2987 - private final CursorFactory mCursorFactory;mCursorFactory95,3310 - private final CursorFactory mCursorFactory;SQLiteDatabase.mCursorFactory95,3310 - private final DatabaseErrorHandler mErrorHandler;mErrorHandler99,3459 - private final DatabaseErrorHandler mErrorHandler;SQLiteDatabase.mErrorHandler99,3459 - private final Object mLock = new Object();mLock115,4298 - private final Object mLock = new Object();SQLiteDatabase.mLock115,4298 - private final CloseGuard mCloseGuardLocked = CloseGuard.get();mCloseGuardLocked119,4455 - private final CloseGuard mCloseGuardLocked = CloseGuard.get();SQLiteDatabase.mCloseGuardLocked119,4455 - private final SQLiteDatabaseConfiguration mConfigurationLocked;mConfigurationLocked123,4594 - private final SQLiteDatabaseConfiguration mConfigurationLocked;SQLiteDatabase.mConfigurationLocked123,4594 - private SQLiteConnectionPool mConnectionPoolLocked;mConnectionPoolLocked129,4876 - private SQLiteConnectionPool mConnectionPoolLocked;SQLiteDatabase.mConnectionPoolLocked129,4876 - private boolean mHasAttachedDbsLocked;mHasAttachedDbsLocked133,5021 - private boolean mHasAttachedDbsLocked;SQLiteDatabase.mHasAttachedDbsLocked133,5021 - public static final int CONFLICT_ROLLBACK = 1;CONFLICT_ROLLBACK142,5426 - public static final int CONFLICT_ROLLBACK = 1;SQLiteDatabase.CONFLICT_ROLLBACK142,5426 - public static final int CONFLICT_ABORT = 2;CONFLICT_ABORT149,5678 - public static final int CONFLICT_ABORT = 2;SQLiteDatabase.CONFLICT_ABORT149,5678 - public static final int CONFLICT_FAIL = 3;CONFLICT_FAIL157,6003 - public static final int CONFLICT_FAIL = 3;SQLiteDatabase.CONFLICT_FAIL157,6003 - public static final int CONFLICT_IGNORE = 4;CONFLICT_IGNORE166,6406 - public static final int CONFLICT_IGNORE = 4;SQLiteDatabase.CONFLICT_IGNORE166,6406 - public static final int CONFLICT_REPLACE = 5;CONFLICT_REPLACE181,7257 - public static final int CONFLICT_REPLACE = 5;SQLiteDatabase.CONFLICT_REPLACE181,7257 - public static final int CONFLICT_NONE = 0;CONFLICT_NONE186,7387 - public static final int CONFLICT_NONE = 0;SQLiteDatabase.CONFLICT_NONE186,7387 - private static final String[] CONFLICT_VALUES = new String[]CONFLICT_VALUES188,7435 - private static final String[] CONFLICT_VALUES = new String[]SQLiteDatabase.CONFLICT_VALUES188,7435 - public static final int SQLITE_MAX_LIKE_PATTERN_LENGTH = 50000;SQLITE_MAX_LIKE_PATTERN_LENGTH205,8601 - public static final int SQLITE_MAX_LIKE_PATTERN_LENGTH = 50000;SQLiteDatabase.SQLITE_MAX_LIKE_PATTERN_LENGTH205,8601 - public static final int OPEN_READWRITE = 0x00000000; // update native code if changingOPEN_READWRITE213,8947 - public static final int OPEN_READWRITE = 0x00000000; // update native code if changingSQLiteDatabase.OPEN_READWRITE213,8947 - public static final int OPEN_READONLY = 0x00000001; // update native code if changingOPEN_READONLY219,9233 - public static final int OPEN_READONLY = 0x00000001; // update native code if changingSQLiteDatabase.OPEN_READONLY219,9233 - private static final int OPEN_READ_MASK = 0x00000001; // update native code if changingOPEN_READ_MASK221,9334 - private static final int OPEN_READ_MASK = 0x00000001; // update native code if changingSQLiteDatabase.OPEN_READ_MASK221,9334 - public static final int NO_LOCALIZED_COLLATORS = 0x00000010; // update native code if changingNO_LOCALIZED_COLLATORS231,9819 - public static final int NO_LOCALIZED_COLLATORS = 0x00000010; // update native code if changingSQLiteDatabase.NO_LOCALIZED_COLLATORS231,9819 - public static final int CREATE_IF_NECESSARY = 0x10000000; // update native code if changingCREATE_IF_NECESSARY237,10050 - public static final int CREATE_IF_NECESSARY = 0x10000000; // update native code if changingSQLiteDatabase.CREATE_IF_NECESSARY237,10050 - public static final int ENABLE_WRITE_AHEAD_LOGGING = 0x20000000;ENABLE_WRITE_AHEAD_LOGGING249,10582 - public static final int ENABLE_WRITE_AHEAD_LOGGING = 0x20000000;SQLiteDatabase.ENABLE_WRITE_AHEAD_LOGGING249,10582 - public static final int MAX_SQL_CACHE_SIZE = 100;MAX_SQL_CACHE_SIZE257,10930 - public static final int MAX_SQL_CACHE_SIZE = 100;SQLiteDatabase.MAX_SQL_CACHE_SIZE257,10930 - private SQLiteDatabase(String path, int openFlags, CursorFactory cursorFactory,SQLiteDatabase259,10985 - private SQLiteDatabase(String path, int openFlags, CursorFactory cursorFactory,SQLiteDatabase.SQLiteDatabase259,10985 - protected void finalize() throws Throwable {finalize267,11357 - protected void finalize() throws Throwable {SQLiteDatabase.finalize267,11357 - protected void onAllReferencesReleased() {onAllReferencesReleased276,11528 - protected void onAllReferencesReleased() {SQLiteDatabase.onAllReferencesReleased276,11528 - private void dispose(boolean finalized) {dispose280,11606 - private void dispose(boolean finalized) {SQLiteDatabase.dispose280,11606 - public static int releaseMemory() {releaseMemory311,12482 - public static int releaseMemory() {SQLiteDatabase.releaseMemory311,12482 - public void setLockingEnabled(boolean lockingEnabled) {setLockingEnabled325,13027 - public void setLockingEnabled(boolean lockingEnabled) {SQLiteDatabase.setLockingEnabled325,13027 - String getLabel() {getLabel332,13209 - String getLabel() {SQLiteDatabase.getLabel332,13209 - void onCorruption() {onCorruption341,13409 - void onCorruption() {SQLiteDatabase.onCorruption341,13409 - SQLiteSession getThreadSession() {getThreadSession363,14402 - SQLiteSession getThreadSession() {SQLiteDatabase.getThreadSession363,14402 - SQLiteSession createSession() {createSession367,14529 - SQLiteSession createSession() {SQLiteDatabase.createSession367,14529 - int getThreadDefaultConnectionFlags(boolean readOnly) {getThreadDefaultConnectionFlags383,15051 - int getThreadDefaultConnectionFlags(boolean readOnly) {SQLiteDatabase.getThreadDefaultConnectionFlags383,15051 - private static boolean isMainThread() {isMainThread392,15413 - private static boolean isMainThread() {SQLiteDatabase.isMainThread392,15413 - public void beginTransaction() {beginTransaction420,16433 - public void beginTransaction() {SQLiteDatabase.beginTransaction420,16433 - public void beginTransactionNonExclusive() {beginTransactionNonExclusive444,17259 - public void beginTransactionNonExclusive() {SQLiteDatabase.beginTransactionNonExclusive444,17259 - public void beginTransactionWithListener(SQLiteTransactionListener transactionListener) {beginTransactionWithListener473,18333 - public void beginTransactionWithListener(SQLiteTransactionListener transactionListener) {SQLiteDatabase.beginTransactionWithListener473,18333 - public void beginTransactionWithListenerNonExclusive(beginTransactionWithListenerNonExclusive501,19453 - public void beginTransactionWithListenerNonExclusive(SQLiteDatabase.beginTransactionWithListenerNonExclusive501,19453 - private void beginTransaction(SQLiteTransactionListener transactionListener,beginTransaction506,19633 - private void beginTransaction(SQLiteTransactionListener transactionListener,SQLiteDatabase.beginTransaction506,19633 - public void endTransaction() {endTransaction524,20328 - public void endTransaction() {SQLiteDatabase.endTransaction524,20328 - public void setTransactionSuccessful() {setTransactionSuccessful542,21016 - public void setTransactionSuccessful() {SQLiteDatabase.setTransactionSuccessful542,21016 - public boolean inTransaction() {inTransaction556,21386 - public boolean inTransaction() {SQLiteDatabase.inTransaction556,21386 - public boolean isDbLockedByCurrentThread() {isDbLockedByCurrentThread577,22170 - public boolean isDbLockedByCurrentThread() {SQLiteDatabase.isDbLockedByCurrentThread577,22170 - public boolean isDbLockedByOtherThreads() {isDbLockedByOtherThreads596,22659 - public boolean isDbLockedByOtherThreads() {SQLiteDatabase.isDbLockedByOtherThreads596,22659 - public boolean yieldIfContended() {yieldIfContended609,23264 - public boolean yieldIfContended() {SQLiteDatabase.yieldIfContended609,23264 - public boolean yieldIfContendedSafely() {yieldIfContendedSafely622,23940 - public boolean yieldIfContendedSafely() {SQLiteDatabase.yieldIfContendedSafely622,23940 - public boolean yieldIfContendedSafely(long sleepAfterYieldDelay) {yieldIfContendedSafely637,24869 - public boolean yieldIfContendedSafely(long sleepAfterYieldDelay) {SQLiteDatabase.yieldIfContendedSafely637,24869 - private boolean yieldIfContendedHelper(boolean throwIfUnsafe, long sleepAfterYieldDelay) {yieldIfContendedHelper641,25035 - private boolean yieldIfContendedHelper(boolean throwIfUnsafe, long sleepAfterYieldDelay) {SQLiteDatabase.yieldIfContendedHelper641,25035 - public Map getSyncedTables() {getSyncedTables655,25483 - public Map getSyncedTables() {SQLiteDatabase.getSyncedTables655,25483 - public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags) {openDatabase673,26299 - public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags) {SQLiteDatabase.openDatabase673,26299 - public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags,openDatabase696,27486 - public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags,SQLiteDatabase.openDatabase696,27486 - public static SQLiteDatabase openOrCreateDatabase(File file, CursorFactory factory) {openOrCreateDatabase706,27854 - public static SQLiteDatabase openOrCreateDatabase(File file, CursorFactory factory) {SQLiteDatabase.openOrCreateDatabase706,27854 - public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory) {openOrCreateDatabase713,28100 - public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory) {SQLiteDatabase.openOrCreateDatabase713,28100 - public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory,openOrCreateDatabase720,28371 - public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory,SQLiteDatabase.openOrCreateDatabase720,28371 - public static boolean deleteDatabase(File file) {deleteDatabase732,28861 - public static boolean deleteDatabase(File file) {SQLiteDatabase.deleteDatabase732,28861 - public void reopenReadWrite() {reopenReadWrite770,30204 - public void reopenReadWrite() {SQLiteDatabase.reopenReadWrite770,30204 - private void open() {open791,30916 - private void open() {SQLiteDatabase.open791,30916 - private void openInner() {openInner806,31312 - private void openInner() {SQLiteDatabase.openInner806,31312 - public static SQLiteDatabase create(CursorFactory factory) {create829,32170 - public static SQLiteDatabase create(CursorFactory factory) {SQLiteDatabase.create829,32170 - public void addCustomFunction(String name, int numArgs, CustomFunction function) {addCustomFunction844,32763 - public void addCustomFunction(String name, int numArgs, CustomFunction function) {SQLiteDatabase.addCustomFunction844,32763 - public int getVersion() {getVersion866,33481 - public int getVersion() {SQLiteDatabase.getVersion866,33481 - public void setVersion(int version) {setVersion875,33718 - public void setVersion(int version) {SQLiteDatabase.setVersion875,33718 - public long getMaximumSize() {getMaximumSize884,33946 - public long getMaximumSize() {SQLiteDatabase.getMaximumSize884,33946 - public long setMaximumSize(long numBytes) {setMaximumSize896,34363 - public long setMaximumSize(long numBytes) {SQLiteDatabase.setMaximumSize896,34363 - public long getPageSize() {getPageSize913,34934 - public long getPageSize() {SQLiteDatabase.getPageSize913,34934 - public void setPageSize(long numBytes) {setPageSize924,35352 - public void setPageSize(long numBytes) {SQLiteDatabase.setPageSize924,35352 - public void markTableSyncable(String table, String deletedTable) {markTableSyncable938,35885 - public void markTableSyncable(String table, String deletedTable) {SQLiteDatabase.markTableSyncable938,35885 - public void markTableSyncable(String table, String foreignKey, String updateTable) {markTableSyncable954,36616 - public void markTableSyncable(String table, String foreignKey, String updateTable) {SQLiteDatabase.markTableSyncable954,36616 - public static String findEditTable(String tables) {findEditTable963,36872 - public static String findEditTable(String tables) {SQLiteDatabase.findEditTable963,36872 - public SQLiteStatement compileStatement(String sql) throws SQLException {compileStatement994,38333 - public SQLiteStatement compileStatement(String sql) throws SQLException {SQLiteDatabase.compileStatement994,38333 - public Cursor query(boolean distinct, String table, String[] columns,query1034,40633 - public Cursor query(boolean distinct, String table, String[] columns,SQLiteDatabase.query1034,40633 - public Cursor query(boolean distinct, String table, String[] columns,query1075,43266 - public Cursor query(boolean distinct, String table, String[] columns,SQLiteDatabase.query1075,43266 - public Cursor queryWithFactory(CursorFactory cursorFactory,queryWithFactory1114,45816 - public Cursor queryWithFactory(CursorFactory cursorFactory,SQLiteDatabase.queryWithFactory1114,45816 - public Cursor queryWithFactory(CursorFactory cursorFactory,queryWithFactory1157,48597 - public Cursor queryWithFactory(CursorFactory cursorFactory,SQLiteDatabase.queryWithFactory1157,48597 - public Cursor query(String table, String[] columns, String selection,query1201,51117 - public Cursor query(String table, String[] columns, String selection,SQLiteDatabase.query1201,51117 - public Cursor query(String table, String[] columns, String selection,query1239,53403 - public Cursor query(String table, String[] columns, String selection,SQLiteDatabase.query1239,53403 - public Cursor rawQuery(String sql, String[] selectionArgs) {rawQuery1257,54263 - public Cursor rawQuery(String sql, String[] selectionArgs) {SQLiteDatabase.rawQuery1257,54263 - public Cursor rawQuery(String sql, String[] selectionArgs,rawQuery1274,55179 - public Cursor rawQuery(String sql, String[] selectionArgs,SQLiteDatabase.rawQuery1274,55179 - public Cursor rawQueryWithFactory(rawQueryWithFactory1291,56087 - public Cursor rawQueryWithFactory(SQLiteDatabase.rawQueryWithFactory1291,56087 - public Cursor rawQueryWithFactory(rawQueryWithFactory1312,57250 - public Cursor rawQueryWithFactory(SQLiteDatabase.rawQueryWithFactory1312,57250 - public long insert(String table, String nullColumnHack, ContentValues values) {insert1342,58773 - public long insert(String table, String nullColumnHack, ContentValues values) {SQLiteDatabase.insert1342,58773 - public long insertOrThrow(String table, String nullColumnHack, ContentValues values)insertOrThrow1368,60086 - public long insertOrThrow(String table, String nullColumnHack, ContentValues values)SQLiteDatabase.insertOrThrow1368,60086 - public long replace(String table, String nullColumnHack, ContentValues initialValues) {replace1388,61196 - public long replace(String table, String nullColumnHack, ContentValues initialValues) {SQLiteDatabase.replace1388,61196 - public long replaceOrThrow(String table, String nullColumnHack,replaceOrThrow1414,62490 - public long replaceOrThrow(String table, String nullColumnHack,SQLiteDatabase.replaceOrThrow1414,62490 - public long insertWithOnConflict(String table, String nullColumnHack,insertWithOnConflict1440,63901 - public long insertWithOnConflict(String table, String nullColumnHack,SQLiteDatabase.insertWithOnConflict1440,63901 - public int delete(String table, String whereClause, String[] whereArgs) {delete1496,66076 - public int delete(String table, String whereClause, String[] whereArgs) {SQLiteDatabase.delete1496,66076 - public int update(String table, ContentValues values, String whereClause, String[] whereArgs) {update1524,67231 - public int update(String table, ContentValues values, String whereClause, String[] whereArgs) {SQLiteDatabase.update1524,67231 - public int updateWithOnConflict(String table, ContentValues values,updateWithOnConflict1542,68119 - public int updateWithOnConflict(String table, ContentValues values,SQLiteDatabase.updateWithOnConflict1542,68119 - public void execSQL(String sql) throws SQLException {execSQL1607,70700 - public void execSQL(String sql) throws SQLException {SQLiteDatabase.execSQL1607,70700 - public void execSQL(String sql, Object[] bindArgs) throws SQLException {execSQL1654,72558 - public void execSQL(String sql, Object[] bindArgs) throws SQLException {SQLiteDatabase.execSQL1654,72558 - private int executeSql(String sql, Object[] bindArgs) throws SQLException {executeSql1661,72785 - private int executeSql(String sql, Object[] bindArgs) throws SQLException {SQLiteDatabase.executeSql1661,72785 - public boolean isReadOnly() {isReadOnly1693,73821 - public boolean isReadOnly() {SQLiteDatabase.isReadOnly1693,73821 - private boolean isReadOnlyLocked() {isReadOnlyLocked1699,73942 - private boolean isReadOnlyLocked() {SQLiteDatabase.isReadOnlyLocked1699,73942 - public boolean isInMemoryDatabase() {isInMemoryDatabase1709,74212 - public boolean isInMemoryDatabase() {SQLiteDatabase.isInMemoryDatabase1709,74212 - public boolean isOpen() {isOpen1720,74513 - public boolean isOpen() {SQLiteDatabase.isOpen1720,74513 - public boolean needUpgrade(int newVersion) {needUpgrade1732,74892 - public boolean needUpgrade(int newVersion) {SQLiteDatabase.needUpgrade1732,74892 - public final String getPath() {getPath1741,75102 - public final String getPath() {SQLiteDatabase.getPath1741,75102 - public void setLocale(Locale locale) {setLocale1757,75674 - public void setLocale(Locale locale) {SQLiteDatabase.setLocale1757,75674 - public void setMaxSqlCacheSize(int cacheSize) {setMaxSqlCacheSize1789,76898 - public void setMaxSqlCacheSize(int cacheSize) {SQLiteDatabase.setMaxSqlCacheSize1789,76898 - public void setForeignKeyConstraintsEnabled(boolean enable) {setForeignKeyConstraintsEnabled1838,79133 - public void setForeignKeyConstraintsEnabled(boolean enable) {SQLiteDatabase.setForeignKeyConstraintsEnabled1838,79133 - public boolean enableWriteAheadLogging() {enableWriteAheadLogging1930,84021 - public boolean enableWriteAheadLogging() {SQLiteDatabase.enableWriteAheadLogging1930,84021 - public void disableWriteAheadLogging() {disableWriteAheadLogging1979,85865 - public void disableWriteAheadLogging() {SQLiteDatabase.disableWriteAheadLogging1979,85865 - public boolean isWriteAheadLoggingEnabled() {isWriteAheadLoggingEnabled2005,86713 - public boolean isWriteAheadLoggingEnabled() {SQLiteDatabase.isWriteAheadLoggingEnabled2005,86713 - static ArrayList getDbStats() {getDbStats2017,87053 - static ArrayList getDbStats() {SQLiteDatabase.getDbStats2017,87053 - private void collectDbStats(ArrayList dbStatsList) {collectDbStats2025,87311 - private void collectDbStats(ArrayList dbStatsList) {SQLiteDatabase.collectDbStats2025,87311 - private static ArrayList getActiveDatabases() {getActiveDatabases2033,87555 - private static ArrayList getActiveDatabases() {SQLiteDatabase.getActiveDatabases2033,87555 - static void dumpAll(Printer printer, boolean verbose) {dumpAll2045,87969 - static void dumpAll(Printer printer, boolean verbose) {SQLiteDatabase.dumpAll2045,87969 - private void dump(Printer printer, boolean verbose) {dump2051,88142 - private void dump(Printer printer, boolean verbose) {SQLiteDatabase.dump2051,88142 - public List> getAttachedDbs() {getAttachedDbs2067,88702 - public List> getAttachedDbs() {SQLiteDatabase.getAttachedDbs2067,88702 - public boolean isDatabaseIntegrityOk() {isDatabaseIntegrityOk2128,91583 - public boolean isDatabaseIntegrityOk() {SQLiteDatabase.isDatabaseIntegrityOk2128,91583 - public String toString() {toString2166,93189 - public String toString() {SQLiteDatabase.toString2166,93189 - private void throwIfNotOpenLocked() {throwIfNotOpenLocked2170,93274 - private void throwIfNotOpenLocked() {SQLiteDatabase.throwIfNotOpenLocked2170,93274 - public interface CursorFactory {CursorFactory2180,93606 - public interface CursorFactory {SQLiteDatabase.CursorFactory2180,93606 - public Cursor newCursor(SQLiteDatabase db,newCursor2184,93758 - public Cursor newCursor(SQLiteDatabase db,SQLiteDatabase.CursorFactory.newCursor2184,93758 - public interface CustomFunction {CustomFunction2195,94109 - public interface CustomFunction {SQLiteDatabase.CustomFunction2195,94109 - public void callback(String[] args);callback2196,94147 - public void callback(String[] args);SQLiteDatabase.CustomFunction.callback2196,94147 - public static boolean hasCodec() {hasCodec2199,94199 - public static boolean hasCodec() {SQLiteDatabase.hasCodec2199,94199 - public void enableLocalizedCollators() {enableLocalizedCollators2203,94287 - public void enableLocalizedCollators() {SQLiteDatabase.enableLocalizedCollators2203,94287 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteDatabaseConfiguration.java,2621 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteDatabaseConfiguration {SQLiteDatabaseConfiguration41,1289 - private static final Pattern EMAIL_IN_DB_PATTERN =EMAIL_IN_DB_PATTERN44,1466 - private static final Pattern EMAIL_IN_DB_PATTERN =SQLiteDatabaseConfiguration.EMAIL_IN_DB_PATTERN44,1466 - public static final String MEMORY_DB_PATH = ":memory:";MEMORY_DB_PATH50,1645 - public static final String MEMORY_DB_PATH = ":memory:";SQLiteDatabaseConfiguration.MEMORY_DB_PATH50,1645 - public final String path;path55,1748 - public final String path;SQLiteDatabaseConfiguration.path55,1748 - public final String label;label61,1937 - public final String label;SQLiteDatabaseConfiguration.label61,1937 - public int openFlags;openFlags66,2029 - public int openFlags;SQLiteDatabaseConfiguration.openFlags66,2029 - public int maxSqlCacheSize;maxSqlCacheSize74,2216 - public int maxSqlCacheSize;SQLiteDatabaseConfiguration.maxSqlCacheSize74,2216 - public Locale locale;locale81,2369 - public Locale locale;SQLiteDatabaseConfiguration.locale81,2369 - public boolean foreignKeyConstraintsEnabled;foreignKeyConstraintsEnabled88,2496 - public boolean foreignKeyConstraintsEnabled;SQLiteDatabaseConfiguration.foreignKeyConstraintsEnabled88,2496 - public final ArrayList customFunctions =customFunctions93,2603 - public final ArrayList customFunctions =SQLiteDatabaseConfiguration.customFunctions93,2603 - public SQLiteDatabaseConfiguration(String path, int openFlags) {SQLiteDatabaseConfiguration103,3027 - public SQLiteDatabaseConfiguration(String path, int openFlags) {SQLiteDatabaseConfiguration.SQLiteDatabaseConfiguration103,3027 - public SQLiteDatabaseConfiguration(SQLiteDatabaseConfiguration other) {SQLiteDatabaseConfiguration122,3586 - public SQLiteDatabaseConfiguration(SQLiteDatabaseConfiguration other) {SQLiteDatabaseConfiguration.SQLiteDatabaseConfiguration122,3586 - public void updateParametersFrom(SQLiteDatabaseConfiguration other) {updateParametersFrom138,4093 - public void updateParametersFrom(SQLiteDatabaseConfiguration other) {SQLiteDatabaseConfiguration.updateParametersFrom138,4093 - public boolean isInMemoryDb() {isInMemoryDb159,4864 - public boolean isInMemoryDb() {SQLiteDatabaseConfiguration.isInMemoryDb159,4864 - private static String stripPathForLogs(String path) {stripPathForLogs163,4961 - private static String stripPathForLogs(String path) {SQLiteDatabaseConfiguration.stripPathForLogs163,4961 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteDatabaseCorruptException.java,602 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteDatabaseCorruptException extends SQLiteException {SQLiteDatabaseCorruptException26,839 - public SQLiteDatabaseCorruptException() {}SQLiteDatabaseCorruptException27,909 - public SQLiteDatabaseCorruptException() {}SQLiteDatabaseCorruptException.SQLiteDatabaseCorruptException27,909 - public SQLiteDatabaseCorruptException(String error) {SQLiteDatabaseCorruptException29,957 - public SQLiteDatabaseCorruptException(String error) {SQLiteDatabaseCorruptException.SQLiteDatabaseCorruptException29,957 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteDatabaseLockedException.java,595 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteDatabaseLockedException extends SQLiteException {SQLiteDatabaseLockedException31,1129 - public SQLiteDatabaseLockedException() {}SQLiteDatabaseLockedException32,1198 - public SQLiteDatabaseLockedException() {}SQLiteDatabaseLockedException.SQLiteDatabaseLockedException32,1198 - public SQLiteDatabaseLockedException(String error) {SQLiteDatabaseLockedException34,1245 - public SQLiteDatabaseLockedException(String error) {SQLiteDatabaseLockedException.SQLiteDatabaseLockedException34,1245 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteDatatypeMismatchException.java,614 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteDatatypeMismatchException extends SQLiteException {SQLiteDatatypeMismatchException23,758 - public SQLiteDatatypeMismatchException() {}SQLiteDatatypeMismatchException24,829 - public SQLiteDatatypeMismatchException() {}SQLiteDatatypeMismatchException.SQLiteDatatypeMismatchException24,829 - public SQLiteDatatypeMismatchException(String error) {SQLiteDatatypeMismatchException26,878 - public SQLiteDatatypeMismatchException(String error) {SQLiteDatatypeMismatchException.SQLiteDatatypeMismatchException26,878 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteDebug.java,3259 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteDebug {SQLiteDebug35,1017 - private static native void nativeGetPagerStats(PagerStats stats);nativeGetPagerStats36,1050 - private static native void nativeGetPagerStats(PagerStats stats);SQLiteDebug.nativeGetPagerStats36,1050 - public static final boolean DEBUG_SQL_LOG =DEBUG_SQL_LOG43,1275 - public static final boolean DEBUG_SQL_LOG =SQLiteDebug.DEBUG_SQL_LOG43,1275 - public static final boolean DEBUG_SQL_STATEMENTS =DEBUG_SQL_STATEMENTS51,1544 - public static final boolean DEBUG_SQL_STATEMENTS =SQLiteDebug.DEBUG_SQL_STATEMENTS51,1544 - public static final boolean DEBUG_SQL_TIME =DEBUG_SQL_TIME60,1861 - public static final boolean DEBUG_SQL_TIME =SQLiteDebug.DEBUG_SQL_TIME60,1861 - public static final boolean DEBUG_LOG_SLOW_QUERIES = false;DEBUG_LOG_SLOW_QUERIES67,2063 - public static final boolean DEBUG_LOG_SLOW_QUERIES = false;SQLiteDebug.DEBUG_LOG_SLOW_QUERIES67,2063 - private SQLiteDebug() {SQLiteDebug69,2128 - private SQLiteDebug() {SQLiteDebug.SQLiteDebug69,2128 - public static final boolean shouldLogSlowQuery(long elapsedTimeMillis) {shouldLogSlowQuery85,2748 - public static final boolean shouldLogSlowQuery(long elapsedTimeMillis) {SQLiteDebug.shouldLogSlowQuery85,2748 - public static class PagerStats {PagerStats95,3089 - public static class PagerStats {SQLiteDebug.PagerStats95,3089 - public int memoryUsed;memoryUsed99,3304 - public int memoryUsed;SQLiteDebug.PagerStats.memoryUsed99,3304 - public int pageCacheOverflow;pageCacheOverflow108,3878 - public int pageCacheOverflow;SQLiteDebug.PagerStats.pageCacheOverflow108,3878 - public int largestMemAlloc;largestMemAlloc113,4085 - public int largestMemAlloc;SQLiteDebug.PagerStats.largestMemAlloc113,4085 - public ArrayList dbStats;dbStats118,4269 - public ArrayList dbStats;SQLiteDebug.PagerStats.dbStats118,4269 - public static class DbStats {DbStats124,4379 - public static class DbStats {SQLiteDebug.DbStats124,4379 - public String dbName;dbName126,4449 - public String dbName;SQLiteDebug.DbStats.dbName126,4449 - public long pageSize;pageSize129,4526 - public long pageSize;SQLiteDebug.DbStats.pageSize129,4526 - public long dbSize;dbSize132,4590 - public long dbSize;SQLiteDebug.DbStats.dbSize132,4590 - public int lookaside;lookaside135,4709 - public int lookaside;SQLiteDebug.DbStats.lookaside135,4709 - public String cache;cache138,4800 - public String cache;SQLiteDebug.DbStats.cache138,4800 - public DbStats(String dbName, long pageCount, long pageSize, int lookaside,DbStats140,4830 - public DbStats(String dbName, long pageCount, long pageSize, int lookaside,SQLiteDebug.DbStats.DbStats140,4830 - public static PagerStats getDatabaseInfo() {getDatabaseInfo154,5335 - public static PagerStats getDatabaseInfo() {SQLiteDebug.getDatabaseInfo154,5335 - public static void dump(Printer printer, String[] args) {dump166,5769 - public static void dump(Printer printer, String[] args) {SQLiteDebug.dump166,5769 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteDirectCursorDriver.java,2116 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteDirectCursorDriver implements SQLiteCursorDriver {SQLiteDirectCursorDriver32,969 - private final SQLiteDatabase mDatabase;mDatabase33,1045 - private final SQLiteDatabase mDatabase;SQLiteDirectCursorDriver.mDatabase33,1045 - private final String mEditTable; mEditTable34,1089 - private final String mEditTable; SQLiteDirectCursorDriver.mEditTable34,1089 - private final String mSql;mSql35,1127 - private final String mSql;SQLiteDirectCursorDriver.mSql35,1127 - private final CancellationSignal mCancellationSignal;mCancellationSignal36,1158 - private final CancellationSignal mCancellationSignal;SQLiteDirectCursorDriver.mCancellationSignal36,1158 - private SQLiteQuery mQuery;mQuery37,1216 - private SQLiteQuery mQuery;SQLiteDirectCursorDriver.mQuery37,1216 - public SQLiteDirectCursorDriver(SQLiteDatabase db, String sql, String editTable,SQLiteDirectCursorDriver39,1249 - public SQLiteDirectCursorDriver(SQLiteDatabase db, String sql, String editTable,SQLiteDirectCursorDriver.SQLiteDirectCursorDriver39,1249 - public Cursor query(CursorFactory factory, String[] selectionArgs) {query47,1520 - public Cursor query(CursorFactory factory, String[] selectionArgs) {SQLiteDirectCursorDriver.query47,1520 - public void cursorClosed() {cursorClosed67,2153 - public void cursorClosed() {SQLiteDirectCursorDriver.cursorClosed67,2153 - public void setBindArguments(String[] bindArgs) {setBindArguments71,2215 - public void setBindArguments(String[] bindArgs) {SQLiteDirectCursorDriver.setBindArguments71,2215 - public void cursorDeactivated() {cursorDeactivated75,2323 - public void cursorDeactivated() {SQLiteDirectCursorDriver.cursorDeactivated75,2323 - public void cursorRequeried(Cursor cursor) {cursorRequeried79,2390 - public void cursorRequeried(Cursor cursor) {SQLiteDirectCursorDriver.cursorRequeried79,2390 - public String toString() {toString84,2482 - public String toString() {SQLiteDirectCursorDriver.toString84,2482 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteDiskIOException.java,494 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteDiskIOException extends SQLiteException {SQLiteDiskIOException27,868 - public SQLiteDiskIOException() {}SQLiteDiskIOException28,929 - public SQLiteDiskIOException() {}SQLiteDiskIOException.SQLiteDiskIOException28,929 - public SQLiteDiskIOException(String error) {SQLiteDiskIOException30,968 - public SQLiteDiskIOException(String error) {SQLiteDiskIOException.SQLiteDiskIOException30,968 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteDoneException.java,475 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteDoneException extends SQLiteException {SQLiteDoneException29,1002 - public SQLiteDoneException() {}SQLiteDoneException30,1061 - public SQLiteDoneException() {}SQLiteDoneException.SQLiteDoneException30,1061 - public SQLiteDoneException(String error) {SQLiteDoneException32,1098 - public SQLiteDoneException(String error) {SQLiteDoneException.SQLiteDoneException32,1098 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteException.java,601 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteException extends SQLException {SQLiteException28,895 - public SQLiteException() {SQLiteException29,947 - public SQLiteException() {SQLiteException.SQLiteException29,947 - public SQLiteException(String error) {SQLiteException32,985 - public SQLiteException(String error) {SQLiteException.SQLiteException32,985 - public SQLiteException(String error, Throwable cause) {SQLiteException36,1057 - public SQLiteException(String error, Throwable cause) {SQLiteException.SQLiteException36,1057 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteFullException.java,470 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteFullException extends SQLiteException {SQLiteFullException26,831 - public SQLiteFullException() {}SQLiteFullException27,890 - public SQLiteFullException() {}SQLiteFullException.SQLiteFullException27,890 - public SQLiteFullException(String error) {SQLiteFullException29,927 - public SQLiteFullException(String error) {SQLiteFullException.SQLiteFullException29,927 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteGlobal.java,2142 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteGlobal {SQLiteGlobal41,1422 - private static final String TAG = "SQLiteGlobal";TAG42,1456 - private static final String TAG = "SQLiteGlobal";SQLiteGlobal.TAG42,1456 - private static final Object sLock = new Object();sLock44,1511 - private static final Object sLock = new Object();SQLiteGlobal.sLock44,1511 - private static int sDefaultPageSize;sDefaultPageSize45,1565 - private static int sDefaultPageSize;SQLiteGlobal.sDefaultPageSize45,1565 - private static native int nativeReleaseMemory();nativeReleaseMemory47,1607 - private static native int nativeReleaseMemory();SQLiteGlobal.nativeReleaseMemory47,1607 - private SQLiteGlobal() {SQLiteGlobal49,1661 - private SQLiteGlobal() {SQLiteGlobal.SQLiteGlobal49,1661 - public static int releaseMemory() {releaseMemory58,1882 - public static int releaseMemory() {SQLiteGlobal.releaseMemory58,1882 - public static int getDefaultPageSize() {getDefaultPageSize65,2050 - public static int getDefaultPageSize() {SQLiteGlobal.getDefaultPageSize65,2050 - public static String getDefaultJournalMode() {getDefaultJournalMode77,2371 - public static String getDefaultJournalMode() {SQLiteGlobal.getDefaultJournalMode77,2371 - public static int getJournalSizeLimit() {getJournalSizeLimit84,2515 - public static int getJournalSizeLimit() {SQLiteGlobal.getJournalSizeLimit84,2515 - public static String getDefaultSyncMode() {getDefaultSyncMode91,2684 - public static String getDefaultSyncMode() {SQLiteGlobal.getDefaultSyncMode91,2684 - public static String getWALSyncMode() {getWALSyncMode98,2844 - public static String getWALSyncMode() {SQLiteGlobal.getWALSyncMode98,2844 - public static int getWALAutoCheckpoint() {getWALAutoCheckpoint105,2999 - public static int getWALAutoCheckpoint() {SQLiteGlobal.getWALAutoCheckpoint105,2999 - public static int getWALConnectionPoolSize() {getWALConnectionPoolSize113,3185 - public static int getWALConnectionPoolSize() {SQLiteGlobal.getWALConnectionPoolSize113,3185 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteMisuseException.java,499 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteMisuseException extends SQLiteException {SQLiteMisuseException35,1397 - public SQLiteMisuseException() {}SQLiteMisuseException36,1458 - public SQLiteMisuseException() {}SQLiteMisuseException.SQLiteMisuseException36,1458 - public SQLiteMisuseException(String error) {SQLiteMisuseException38,1497 - public SQLiteMisuseException(String error) {SQLiteMisuseException.SQLiteMisuseException38,1497 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteOpenHelper.java,4117 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public abstract class SQLiteOpenHelper {SQLiteOpenHelper47,1894 - private static final String TAG = SQLiteOpenHelper.class.getSimpleName();TAG48,1935 - private static final String TAG = SQLiteOpenHelper.class.getSimpleName();SQLiteOpenHelper.TAG48,1935 - private static final boolean DEBUG_STRICT_READONLY = false;DEBUG_STRICT_READONLY56,2509 - private static final boolean DEBUG_STRICT_READONLY = false;SQLiteOpenHelper.DEBUG_STRICT_READONLY56,2509 - private final Context mContext;mContext58,2574 - private final Context mContext;SQLiteOpenHelper.mContext58,2574 - private final String mName;mName59,2610 - private final String mName;SQLiteOpenHelper.mName59,2610 - private final CursorFactory mFactory;mFactory60,2642 - private final CursorFactory mFactory;SQLiteOpenHelper.mFactory60,2642 - private final int mNewVersion;mNewVersion61,2684 - private final int mNewVersion;SQLiteOpenHelper.mNewVersion61,2684 - private SQLiteDatabase mDatabase;mDatabase63,2720 - private SQLiteDatabase mDatabase;SQLiteOpenHelper.mDatabase63,2720 - private boolean mIsInitializing;mIsInitializing64,2758 - private boolean mIsInitializing;SQLiteOpenHelper.mIsInitializing64,2758 - private boolean mEnableWriteAheadLogging;mEnableWriteAheadLogging65,2795 - private boolean mEnableWriteAheadLogging;SQLiteOpenHelper.mEnableWriteAheadLogging65,2795 - private final DatabaseErrorHandler mErrorHandler;mErrorHandler66,2841 - private final DatabaseErrorHandler mErrorHandler;SQLiteOpenHelper.mErrorHandler66,2841 - public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) {SQLiteOpenHelper81,3657 - public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) {SQLiteOpenHelper.SQLiteOpenHelper81,3657 - public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version,SQLiteOpenHelper102,4860 - public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version,SQLiteOpenHelper.SQLiteOpenHelper102,4860 - public String getDatabaseName() {getDatabaseName117,5371 - public String getDatabaseName() {SQLiteOpenHelper.getDatabaseName117,5371 - public void setWriteAheadLoggingEnabled(boolean enabled) {setWriteAheadLoggingEnabled132,5860 - public void setWriteAheadLoggingEnabled(boolean enabled) {SQLiteOpenHelper.setWriteAheadLoggingEnabled132,5860 - public SQLiteDatabase getWritableDatabase() {getWritableDatabase166,7453 - public SQLiteDatabase getWritableDatabase() {SQLiteOpenHelper.getWritableDatabase166,7453 - public SQLiteDatabase getReadableDatabase() {getReadableDatabase190,8582 - public SQLiteDatabase getReadableDatabase() {SQLiteOpenHelper.getReadableDatabase190,8582 - private SQLiteDatabase getDatabaseLocked(boolean writable) {getDatabaseLocked196,8724 - private SQLiteDatabase getDatabaseLocked(boolean writable) {SQLiteOpenHelper.getDatabaseLocked196,8724 - public synchronized void close() {close290,12094 - public synchronized void close() {SQLiteOpenHelper.close290,12094 - public void onConfigure(SQLiteDatabase db) {}onConfigure316,13175 - public void onConfigure(SQLiteDatabase db) {}SQLiteOpenHelper.onConfigure316,13175 - public abstract void onCreate(SQLiteDatabase db);onCreate324,13443 - public abstract void onCreate(SQLiteDatabase db);SQLiteOpenHelper.onCreate324,13443 - public abstract void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion);onUpgrade346,14436 - public abstract void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion);SQLiteOpenHelper.onUpgrade346,14436 - public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {onDowngrade364,15233 - public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {SQLiteOpenHelper.onDowngrade364,15233 - public void onOpen(SQLiteDatabase db) {}onOpen382,16023 - public void onOpen(SQLiteDatabase db) {}SQLiteOpenHelper.onOpen382,16023 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteOutOfMemoryException.java,554 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteOutOfMemoryException extends SQLiteException {SQLiteOutOfMemoryException23,758 - public SQLiteOutOfMemoryException() {}SQLiteOutOfMemoryException24,824 - public SQLiteOutOfMemoryException() {}SQLiteOutOfMemoryException.SQLiteOutOfMemoryException24,824 - public SQLiteOutOfMemoryException(String error) {SQLiteOutOfMemoryException26,868 - public SQLiteOutOfMemoryException(String error) {SQLiteOutOfMemoryException.SQLiteOutOfMemoryException26,868 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteProgram.java,3788 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public abstract class SQLiteProgram extends SQLiteClosable {SQLiteProgram34,965 - private static final String[] EMPTY_STRING_ARRAY = new String[0];EMPTY_STRING_ARRAY35,1026 - private static final String[] EMPTY_STRING_ARRAY = new String[0];SQLiteProgram.EMPTY_STRING_ARRAY35,1026 - private final SQLiteDatabase mDatabase;mDatabase37,1097 - private final SQLiteDatabase mDatabase;SQLiteProgram.mDatabase37,1097 - private final String mSql;mSql38,1141 - private final String mSql;SQLiteProgram.mSql38,1141 - private final boolean mReadOnly;mReadOnly39,1172 - private final boolean mReadOnly;SQLiteProgram.mReadOnly39,1172 - private final String[] mColumnNames;mColumnNames40,1209 - private final String[] mColumnNames;SQLiteProgram.mColumnNames40,1209 - private final int mNumParameters;mNumParameters41,1250 - private final int mNumParameters;SQLiteProgram.mNumParameters41,1250 - private final Object[] mBindArgs;mBindArgs42,1288 - private final Object[] mBindArgs;SQLiteProgram.mBindArgs42,1288 - SQLiteProgram(SQLiteDatabase db, String sql, Object[] bindArgs,SQLiteProgram44,1327 - SQLiteProgram(SQLiteDatabase db, String sql, Object[] bindArgs,SQLiteProgram.SQLiteProgram44,1327 - final SQLiteDatabase getDatabase() {getDatabase87,2999 - final SQLiteDatabase getDatabase() {SQLiteProgram.getDatabase87,2999 - final String getSql() {getSql91,3073 - final String getSql() {SQLiteProgram.getSql91,3073 - final Object[] getBindArgs() {getBindArgs95,3129 - final Object[] getBindArgs() {SQLiteProgram.getBindArgs95,3129 - final String[] getColumnNames() {getColumnNames99,3197 - final String[] getColumnNames() {SQLiteProgram.getColumnNames99,3197 - protected final SQLiteSession getSession() {getSession104,3288 - protected final SQLiteSession getSession() {SQLiteProgram.getSession104,3288 - protected final int getConnectionFlags() {getConnectionFlags109,3406 - protected final int getConnectionFlags() {SQLiteProgram.getConnectionFlags109,3406 - protected final void onCorruption() {onCorruption114,3546 - protected final void onCorruption() {SQLiteProgram.onCorruption114,3546 - public final int getUniqueId() {getUniqueId123,3750 - public final int getUniqueId() {SQLiteProgram.getUniqueId123,3750 - public void bindNull(int index) {bindNull133,4022 - public void bindNull(int index) {SQLiteProgram.bindNull133,4022 - public void bindLong(int index, long value) {bindLong144,4346 - public void bindLong(int index, long value) {SQLiteProgram.bindLong144,4346 - public void bindDouble(int index, double value) {bindDouble155,4672 - public void bindDouble(int index, double value) {SQLiteProgram.bindDouble155,4672 - public void bindString(int index, String value) {bindString166,5020 - public void bindString(int index, String value) {SQLiteProgram.bindString166,5020 - public void bindBlob(int index, byte[] value) {bindBlob180,5508 - public void bindBlob(int index, byte[] value) {SQLiteProgram.bindBlob180,5508 - public void clearBindings() {clearBindings190,5820 - public void clearBindings() {SQLiteProgram.clearBindings190,5820 - public void bindAllArgsAsStrings(String[] bindArgs) {bindAllArgsAsStrings201,6143 - public void bindAllArgsAsStrings(String[] bindArgs) {SQLiteProgram.bindAllArgsAsStrings201,6143 - protected void onAllReferencesReleased() {onAllReferencesReleased210,6383 - protected void onAllReferencesReleased() {SQLiteProgram.onAllReferencesReleased210,6383 - private void bind(int index, Object value) {bind214,6462 - private void bind(int index, Object value) {SQLiteProgram.bind214,6462 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteQuery.java,1051 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteQuery extends SQLiteProgram {SQLiteQuery35,1114 - private static final String TAG = "SQLiteQuery";TAG36,1169 - private static final String TAG = "SQLiteQuery";SQLiteQuery.TAG36,1169 - private final CancellationSignal mCancellationSignal;mCancellationSignal38,1223 - private final CancellationSignal mCancellationSignal;SQLiteQuery.mCancellationSignal38,1223 - SQLiteQuery(SQLiteDatabase db, String query, CancellationSignal cancellationSignal) {SQLiteQuery40,1282 - SQLiteQuery(SQLiteDatabase db, String query, CancellationSignal cancellationSignal) {SQLiteQuery.SQLiteQuery40,1282 - int fillWindow(CursorWindow window, int startPos, int requiredPos, boolean countAllRows) {fillWindow61,2176 - int fillWindow(CursorWindow window, int startPos, int requiredPos, boolean countAllRows) {SQLiteQuery.fillWindow61,2176 - public String toString() {toString85,3065 - public String toString() {SQLiteQuery.toString85,3065 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteQueryBuilder.java,5157 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteQueryBuilderSQLiteQueryBuilder41,1254 - private static final String TAG = "SQLiteQueryBuilder";TAG43,1288 - private static final String TAG = "SQLiteQueryBuilder";SQLiteQueryBuilder.TAG43,1288 - private static final Pattern sLimitPattern =sLimitPattern44,1348 - private static final Pattern sLimitPattern =SQLiteQueryBuilder.sLimitPattern44,1348 - private Map mProjectionMap = null;mProjectionMap47,1459 - private Map mProjectionMap = null;SQLiteQueryBuilder.mProjectionMap47,1459 - private String mTables = "";mTables48,1514 - private String mTables = "";SQLiteQueryBuilder.mTables48,1514 - private StringBuilder mWhereClause = null; // lazily createdmWhereClause49,1547 - private StringBuilder mWhereClause = null; // lazily createdSQLiteQueryBuilder.mWhereClause49,1547 - private boolean mDistinct;mDistinct50,1613 - private boolean mDistinct;SQLiteQueryBuilder.mDistinct50,1613 - private SQLiteDatabase.CursorFactory mFactory;mFactory51,1644 - private SQLiteDatabase.CursorFactory mFactory;SQLiteQueryBuilder.mFactory51,1644 - private boolean mStrict;mStrict52,1695 - private boolean mStrict;SQLiteQueryBuilder.mStrict52,1695 - public SQLiteQueryBuilder() {SQLiteQueryBuilder54,1725 - public SQLiteQueryBuilder() {SQLiteQueryBuilder.SQLiteQueryBuilder54,1725 - public void setDistinct(boolean distinct) {setDistinct64,1949 - public void setDistinct(boolean distinct) {SQLiteQueryBuilder.setDistinct64,1949 - public String getTables() {getTables73,2153 - public String getTables() {SQLiteQueryBuilder.getTables73,2153 - public void setTables(String inTables) {setTables85,2508 - public void setTables(String inTables) {SQLiteQueryBuilder.setTables85,2508 - public void appendWhere(CharSequence inWhere) {appendWhere98,2991 - public void appendWhere(CharSequence inWhere) {SQLiteQueryBuilder.appendWhere98,2991 - public void appendWhereEscapeString(String inWhere) {appendWhereEscapeString118,3753 - public void appendWhereEscapeString(String inWhere) {SQLiteQueryBuilder.appendWhereEscapeString118,3753 - public void setProjectionMap(Map columnMap) {setProjectionMap139,4658 - public void setProjectionMap(Map columnMap) {SQLiteQueryBuilder.setProjectionMap139,4658 - public void setCursorFactory(SQLiteDatabase.CursorFactory factory) {setCursorFactory150,5030 - public void setCursorFactory(SQLiteDatabase.CursorFactory factory) {SQLiteQueryBuilder.setCursorFactory150,5030 - public void setStrict(boolean flag) {setStrict175,6258 - public void setStrict(boolean flag) {SQLiteQueryBuilder.setStrict175,6258 - public static String buildQueryString(buildQueryString205,7971 - public static String buildQueryString(SQLiteQueryBuilder.buildQueryString205,7971 - private static void appendClause(StringBuilder s, String name, String clause) {appendClause238,9225 - private static void appendClause(StringBuilder s, String name, String clause) {SQLiteQueryBuilder.appendClause238,9225 - public static void appendColumns(StringBuilder s, String[] columns) {appendColumns249,9534 - public static void appendColumns(StringBuilder s, String[] columns) {SQLiteQueryBuilder.appendColumns249,9534 - public Cursor query(SQLiteDatabase db, String[] projectionIn,query295,11613 - public Cursor query(SQLiteDatabase db, String[] projectionIn,SQLiteQueryBuilder.query295,11613 - public Cursor query(SQLiteDatabase db, String[] projectionIn,query334,13793 - public Cursor query(SQLiteDatabase db, String[] projectionIn,SQLiteQueryBuilder.query334,13793 - public Cursor query(SQLiteDatabase db, String[] projectionIn,query376,16174 - public Cursor query(SQLiteDatabase db, String[] projectionIn,SQLiteQueryBuilder.query376,16174 - private void validateQuerySql(SQLiteDatabase db, String sql,validateQuerySql414,18013 - private void validateQuerySql(SQLiteDatabase db, String sql,SQLiteQueryBuilder.validateQuerySql414,18013 - public String buildQuery(buildQuery448,19809 - public String buildQuery(SQLiteQueryBuilder.buildQuery448,19809 - public String buildQuery(buildQuery484,21100 - public String buildQuery(SQLiteQueryBuilder.buildQuery484,21100 - public String buildUnionSubQuery(buildUnionSubQuery529,23578 - public String buildUnionSubQuery(SQLiteQueryBuilder.buildUnionSubQuery529,23578 - public String buildUnionSubQuery(buildUnionSubQuery568,25053 - public String buildUnionSubQuery(SQLiteQueryBuilder.buildUnionSubQuery568,25053 - public String buildUnionQuery(String[] subQueries, String sortOrder, String limit) {buildUnionQuery598,26326 - public String buildUnionQuery(String[] subQueries, String sortOrder, String limit) {SQLiteQueryBuilder.buildUnionQuery598,26326 - private String[] computeProjection(String[] projectionIn) {computeProjection614,26913 - private String[] computeProjection(String[] projectionIn) {SQLiteQueryBuilder.computeProjection614,26913 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteReadOnlyDatabaseException.java,614 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteReadOnlyDatabaseException extends SQLiteException {SQLiteReadOnlyDatabaseException23,758 - public SQLiteReadOnlyDatabaseException() {}SQLiteReadOnlyDatabaseException24,829 - public SQLiteReadOnlyDatabaseException() {}SQLiteReadOnlyDatabaseException.SQLiteReadOnlyDatabaseException24,829 - public SQLiteReadOnlyDatabaseException(String error) {SQLiteReadOnlyDatabaseException26,878 - public SQLiteReadOnlyDatabaseException(String error) {SQLiteReadOnlyDatabaseException.SQLiteReadOnlyDatabaseException26,878 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteSession.java,8252 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteSession {SQLiteSession167,7711 - private final SQLiteConnectionPool mConnectionPool;mConnectionPool168,7746 - private final SQLiteConnectionPool mConnectionPool;SQLiteSession.mConnectionPool168,7746 - private SQLiteConnection mConnection;mConnection170,7803 - private SQLiteConnection mConnection;SQLiteSession.mConnection170,7803 - private int mConnectionFlags;mConnectionFlags171,7845 - private int mConnectionFlags;SQLiteSession.mConnectionFlags171,7845 - private int mConnectionUseCount;mConnectionUseCount172,7879 - private int mConnectionUseCount;SQLiteSession.mConnectionUseCount172,7879 - private Transaction mTransactionPool;mTransactionPool173,7916 - private Transaction mTransactionPool;SQLiteSession.mTransactionPool173,7916 - private Transaction mTransactionStack;mTransactionStack174,7958 - private Transaction mTransactionStack;SQLiteSession.mTransactionStack174,7958 - public static final int TRANSACTION_MODE_DEFERRED = 0;TRANSACTION_MODE_DEFERRED196,8963 - public static final int TRANSACTION_MODE_DEFERRED = 0;SQLiteSession.TRANSACTION_MODE_DEFERRED196,8963 - public static final int TRANSACTION_MODE_IMMEDIATE = 1;TRANSACTION_MODE_IMMEDIATE210,9455 - public static final int TRANSACTION_MODE_IMMEDIATE = 1;SQLiteSession.TRANSACTION_MODE_IMMEDIATE210,9455 - public static final int TRANSACTION_MODE_EXCLUSIVE = 2;TRANSACTION_MODE_EXCLUSIVE224,9965 - public static final int TRANSACTION_MODE_EXCLUSIVE = 2;SQLiteSession.TRANSACTION_MODE_EXCLUSIVE224,9965 - public SQLiteSession(SQLiteConnectionPool connectionPool) {SQLiteSession231,10164 - public SQLiteSession(SQLiteConnectionPool connectionPool) {SQLiteSession.SQLiteSession231,10164 - public boolean hasTransaction() {hasTransaction244,10564 - public boolean hasTransaction() {SQLiteSession.hasTransaction244,10564 - public boolean hasNestedTransaction() {hasNestedTransaction253,10820 - public boolean hasNestedTransaction() {SQLiteSession.hasNestedTransaction253,10820 - public boolean hasConnection() {hasConnection262,11113 - public boolean hasConnection() {SQLiteSession.hasConnection262,11113 - public void beginTransaction(int transactionMode,beginTransaction298,12859 - public void beginTransaction(int transactionMode,SQLiteSession.beginTransaction298,12859 - private void beginTransactionUnchecked(int transactionMode,beginTransactionUnchecked306,13225 - private void beginTransactionUnchecked(int transactionMode,SQLiteSession.beginTransactionUnchecked306,13225 - public void setTransactionSuccessful() {setTransactionSuccessful374,16126 - public void setTransactionSuccessful() {SQLiteSession.setTransactionSuccessful374,16126 - public void endTransaction(CancellationSignal cancellationSignal) {endTransaction401,17143 - public void endTransaction(CancellationSignal cancellationSignal) {SQLiteSession.endTransaction401,17143 - private void endTransactionUnchecked(CancellationSignal cancellationSignal, boolean yielding) {endTransactionUnchecked408,17351 - private void endTransactionUnchecked(CancellationSignal cancellationSignal, boolean yielding) {SQLiteSession.endTransactionUnchecked408,17351 - public boolean yieldTransaction(long sleepAfterYieldDelayMillis, boolean throwIfUnsafe,yieldTransaction506,21734 - public boolean yieldTransaction(long sleepAfterYieldDelayMillis, boolean throwIfUnsafe,SQLiteSession.yieldTransaction506,21734 - private boolean yieldTransactionUnchecked(long sleepAfterYieldDelayMillis,yieldTransactionUnchecked528,22494 - private boolean yieldTransactionUnchecked(long sleepAfterYieldDelayMillis,SQLiteSession.yieldTransactionUnchecked528,22494 - public void prepare(String sql, int connectionFlags, CancellationSignal cancellationSignal,prepare580,24916 - public void prepare(String sql, int connectionFlags, CancellationSignal cancellationSignal,SQLiteSession.prepare580,24916 - public void execute(String sql, Object[] bindArgs, int connectionFlags,execute611,26176 - public void execute(String sql, Object[] bindArgs, int connectionFlags,SQLiteSession.execute611,26176 - public long executeForLong(String sql, Object[] bindArgs, int connectionFlags,executeForLong644,27584 - public long executeForLong(String sql, Object[] bindArgs, int connectionFlags,SQLiteSession.executeForLong644,27584 - public String executeForString(String sql, Object[] bindArgs, int connectionFlags,executeForString677,29014 - public String executeForString(String sql, Object[] bindArgs, int connectionFlags,SQLiteSession.executeForString677,29014 - public ParcelFileDescriptor executeForBlobFileDescriptor(String sql, Object[] bindArgs,executeForBlobFileDescriptor712,30550 - public ParcelFileDescriptor executeForBlobFileDescriptor(String sql, Object[] bindArgs,SQLiteSession.executeForBlobFileDescriptor712,30550 - public int executeForChangedRowCount(String sql, Object[] bindArgs, int connectionFlags,executeForChangedRowCount746,32036 - public int executeForChangedRowCount(String sql, Object[] bindArgs, int connectionFlags,SQLiteSession.executeForChangedRowCount746,32036 - public long executeForLastInsertedRowId(String sql, Object[] bindArgs, int connectionFlags,executeForLastInsertedRowId780,33513 - public long executeForLastInsertedRowId(String sql, Object[] bindArgs, int connectionFlags,SQLiteSession.executeForLastInsertedRowId780,33513 - public int executeForCursorWindow(String sql, Object[] bindArgs,executeForCursorWindow823,35626 - public int executeForCursorWindow(String sql, Object[] bindArgs,SQLiteSession.executeForCursorWindow823,35626 - private boolean executeSpecial(String sql, Object[] bindArgs, int connectionFlags,executeSpecial869,37668 - private boolean executeSpecial(String sql, Object[] bindArgs, int connectionFlags,SQLiteSession.executeSpecial869,37668 - private void acquireConnection(String sql, int connectionFlags,acquireConnection894,38550 - private void acquireConnection(String sql, int connectionFlags,SQLiteSession.acquireConnection894,38550 - private void releaseConnection() {releaseConnection905,38988 - private void releaseConnection() {SQLiteSession.releaseConnection905,38988 - private void throwIfNoTransaction() {throwIfNoTransaction917,39333 - private void throwIfNoTransaction() {SQLiteSession.throwIfNoTransaction917,39333 - private void throwIfTransactionMarkedSuccessful() {throwIfTransactionMarkedSuccessful924,39577 - private void throwIfTransactionMarkedSuccessful() {SQLiteSession.throwIfTransactionMarkedSuccessful924,39577 - private void throwIfNestedTransaction() {throwIfNestedTransaction932,39975 - private void throwIfNestedTransaction() {SQLiteSession.throwIfNestedTransaction932,39975 - private Transaction obtainTransaction(int mode, SQLiteTransactionListener listener) {obtainTransaction939,40224 - private Transaction obtainTransaction(int mode, SQLiteTransactionListener listener) {SQLiteSession.obtainTransaction939,40224 - private void recycleTransaction(Transaction transaction) {recycleTransaction954,40773 - private void recycleTransaction(Transaction transaction) {SQLiteSession.recycleTransaction954,40773 - private static final class Transaction {Transaction960,40969 - private static final class Transaction {SQLiteSession.Transaction960,40969 - public Transaction mParent;mParent961,41014 - public Transaction mParent;SQLiteSession.Transaction.mParent961,41014 - public int mMode;mMode962,41050 - public int mMode;SQLiteSession.Transaction.mMode962,41050 - public SQLiteTransactionListener mListener;mListener963,41076 - public SQLiteTransactionListener mListener;SQLiteSession.Transaction.mListener963,41076 - public boolean mMarkedSuccessful;mMarkedSuccessful964,41128 - public boolean mMarkedSuccessful;SQLiteSession.Transaction.mMarkedSuccessful964,41128 - public boolean mChildFailed;mChildFailed965,41170 - public boolean mChildFailed;SQLiteSession.Transaction.mChildFailed965,41170 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteStatement.java,1407 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteStatement extends SQLiteProgram {SQLiteStatement33,1036 - SQLiteStatement(SQLiteDatabase db, String sql, Object[] bindArgs) {SQLiteStatement34,1095 - SQLiteStatement(SQLiteDatabase db, String sql, Object[] bindArgs) {SQLiteStatement.SQLiteStatement34,1095 - public void execute() {execute45,1496 - public void execute() {SQLiteStatement.execute45,1496 - public int executeUpdateDelete() {executeUpdateDelete65,2227 - public int executeUpdateDelete() {SQLiteStatement.executeUpdateDelete65,2227 - public long executeInsert() {executeInsert87,3013 - public long executeInsert() {SQLiteStatement.executeInsert87,3013 - public long simpleQueryForLong() {simpleQueryForLong108,3685 - public long simpleQueryForLong() {SQLiteStatement.simpleQueryForLong108,3685 - public String simpleQueryForString() {simpleQueryForString129,4346 - public String simpleQueryForString() {SQLiteStatement.simpleQueryForString129,4346 - public ParcelFileDescriptor simpleQueryForBlobFileDescriptor() {simpleQueryForBlobFileDescriptor150,5089 - public ParcelFileDescriptor simpleQueryForBlobFileDescriptor() {SQLiteStatement.simpleQueryForBlobFileDescriptor150,5089 - public String toString() {toString164,5523 - public String toString() {SQLiteStatement.toString164,5523 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteStatementInfo.java,498 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public final class SQLiteStatementInfo {SQLiteStatementInfo28,811 - public int numParameters;numParameters32,924 - public int numParameters;SQLiteStatementInfo.numParameters32,924 - public String[] columnNames;columnNames37,1039 - public String[] columnNames;SQLiteStatementInfo.columnNames37,1039 - public boolean readOnly;readOnly42,1132 - public boolean readOnly;SQLiteStatementInfo.readOnly42,1132 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteTableLockedException.java,554 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public class SQLiteTableLockedException extends SQLiteException {SQLiteTableLockedException23,758 - public SQLiteTableLockedException() {}SQLiteTableLockedException24,824 - public SQLiteTableLockedException() {}SQLiteTableLockedException.SQLiteTableLockedException24,824 - public SQLiteTableLockedException(String error) {SQLiteTableLockedException26,868 - public SQLiteTableLockedException(String error) {SQLiteTableLockedException.SQLiteTableLockedException26,868 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SQLiteTransactionListener.java,456 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite21,721 -public interface SQLiteTransactionListener {SQLiteTransactionListener26,804 - void onBegin();onBegin30,921 - void onBegin();SQLiteTransactionListener.onBegin30,921 - void onCommit();onCommit35,1018 - void onCommit();SQLiteTransactionListener.onCommit35,1018 - void onRollback();onRollback40,1117 - void onRollback();SQLiteTransactionListener.onRollback40,1117 - -packages/myddas/sqlite3/src/Android/src/org/sqlite/database/sqlite/SqliteWrapper.java,2017 -package org.sqlite.database.sqlite;org.sqlite.database.sqlite22,756 -public final class SqliteWrapper {SqliteWrapper37,1083 - private static final String TAG = "SqliteWrapper";TAG38,1118 - private static final String TAG = "SqliteWrapper";SqliteWrapper.TAG38,1118 - private static final String SQLITE_EXCEPTION_DETAIL_MESSAGESQLITE_EXCEPTION_DETAIL_MESSAGE39,1173 - private static final String SQLITE_EXCEPTION_DETAIL_MESSAGESqliteWrapper.SQLITE_EXCEPTION_DETAIL_MESSAGE39,1173 - private SqliteWrapper() {SqliteWrapper42,1288 - private SqliteWrapper() {SqliteWrapper.SqliteWrapper42,1288 - private static boolean isLowMemory(SQLiteException e) {isLowMemory47,1410 - private static boolean isLowMemory(SQLiteException e) {SqliteWrapper.isLowMemory47,1410 - public static void checkSQLiteException(Context context, SQLiteException e) {checkSQLiteException51,1548 - public static void checkSQLiteException(Context context, SQLiteException e) {SqliteWrapper.checkSQLiteException51,1548 - public static Cursor query(Context context, ContentResolver resolver, Uri uri,query59,1793 - public static Cursor query(Context context, ContentResolver resolver, Uri uri,SqliteWrapper.query59,1793 - public static boolean requery(Context context, Cursor cursor) {requery70,2267 - public static boolean requery(Context context, Cursor cursor) {SqliteWrapper.requery70,2267 - public static int update(Context context, ContentResolver resolver, Uri uri,update79,2581 - public static int update(Context context, ContentResolver resolver, Uri uri,SqliteWrapper.update79,2581 - public static int delete(Context context, ContentResolver resolver, Uri uri,delete90,3013 - public static int delete(Context context, ContentResolver resolver, Uri uri,SqliteWrapper.delete90,3013 - public static Uri insert(Context context, ContentResolver resolver,insert101,3415 - public static Uri insert(Context context, ContentResolver resolver,SqliteWrapper.insert101,3415 - -packages/myddas/sqlite3/src/sqlite3.c,1122857 -#define SQLITE_CORE SQLITE_CORE20,1243 -#define SQLITE_AMALGAMATION SQLITE_AMALGAMATION21,1265 -# define SQLITE_PRIVATE SQLITE_PRIVATE23,1318 -#define _SQLITEINT_H__SQLITEINT_H_41,1885 -# define _CRT_RAND_S_CRT_RAND_S75,3279 -#define _MSVC_H__MSVC_H_101,4190 -#define OS_VXWORKS OS_VXWORKS150,5745 -#define SQLITE_OS_OTHER SQLITE_OS_OTHER151,5766 -#define SQLITE_HOMEGROWN_RECURSIVE_MUTEX SQLITE_HOMEGROWN_RECURSIVE_MUTEX152,5792 -#define SQLITE_OMIT_LOAD_EXTENSION SQLITE_OMIT_LOAD_EXTENSION153,5835 -#define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE154,5872 -#define HAVE_UTIME HAVE_UTIME155,5910 -#define OS_VXWORKS OS_VXWORKS158,5964 -#define HAVE_FCHOWN HAVE_FCHOWN159,5985 -#define HAVE_READLINK HAVE_READLINK160,6007 -#define HAVE_LSTAT HAVE_LSTAT161,6031 -# define _LARGE_FILE _LARGE_FILE192,7522 -# define _FILE_OFFSET_BITS _FILE_OFFSET_BITS194,7578 -# define _LARGEFILE_SOURCE _LARGEFILE_SOURCE196,7618 -# define GCC_VERSION GCC_VERSION201,7743 -# define GCC_VERSION GCC_VERSION203,7829 -# define _GNU_SOURCE_GNU_SOURCE208,7947 -# define _BSD_SOURCE_BSD_SOURCE212,8026 -# define _USE_32BIT_TIME_T_USE_32BIT_TIME_T244,9414 -#define _SQLITE3_H__SQLITE3_H_286,11281 -# define SQLITE_EXTERN SQLITE_EXTERN301,11547 -# define SQLITE_APISQLITE_API304,11603 -# define SQLITE_CDECLSQLITE_CDECL307,11651 -# define SQLITE_STDCALLSQLITE_STDCALL310,11703 -#define SQLITE_DEPRECATEDSQLITE_DEPRECATED326,12374 -#define SQLITE_EXPERIMENTALSQLITE_EXPERIMENTAL327,12400 -# undef SQLITE_VERSIONSQLITE_VERSION333,12528 -# undef SQLITE_VERSION_NUMBERSQLITE_VERSION_NUMBER336,12587 -#define SQLITE_VERSION SQLITE_VERSION366,13987 -#define SQLITE_VERSION_NUMBER SQLITE_VERSION_NUMBER367,14026 -#define SQLITE_SOURCE_ID SQLITE_SOURCE_ID368,14064 -SQLITE_API const char sqlite3_version[] = SQLITE_VERSION;sqlite3_version400,15643 -typedef struct sqlite3 sqlite3;sqlite3484,19589 - typedef SQLITE_INT64_TYPE sqlite_int64;sqlite_int64503,20312 - typedef unsigned SQLITE_INT64_TYPE sqlite_uint64;sqlite_uint64504,20354 - typedef __int64 sqlite_int64;sqlite_int64506,20455 - typedef unsigned __int64 sqlite_uint64;sqlite_uint64507,20487 - typedef long long int sqlite_int64;sqlite_int64509,20535 - typedef unsigned long long int sqlite_uint64;sqlite_uint64510,20573 -typedef sqlite_int64 sqlite3_int64;sqlite3_int64512,20628 -typedef sqlite_uint64 sqlite3_uint64;sqlite3_uint64513,20664 -# define double double520,20852 -typedef int (*sqlite3_callback)(void*,int,char**, char**);sqlite3_callback573,23296 -#define SQLITE_OK SQLITE_OK656,27259 -#define SQLITE_ERROR SQLITE_ERROR658,27346 -#define SQLITE_INTERNAL SQLITE_INTERNAL659,27414 -#define SQLITE_PERM SQLITE_PERM660,27483 -#define SQLITE_ABORT SQLITE_ABORT661,27546 -#define SQLITE_BUSY SQLITE_BUSY662,27620 -#define SQLITE_LOCKED SQLITE_LOCKED663,27686 -#define SQLITE_NOMEM SQLITE_NOMEM664,27758 -#define SQLITE_READONLY SQLITE_READONLY665,27814 -#define SQLITE_INTERRUPT SQLITE_INTERRUPT666,27889 -#define SQLITE_IOERR SQLITE_IOERR667,27970 -#define SQLITE_CORRUPT SQLITE_CORRUPT668,28045 -#define SQLITE_NOTFOUND SQLITE_NOTFOUND669,28120 -#define SQLITE_FULL SQLITE_FULL670,28199 -#define SQLITE_CANTOPEN SQLITE_CANTOPEN671,28279 -#define SQLITE_PROTOCOL SQLITE_PROTOCOL672,28350 -#define SQLITE_EMPTY SQLITE_EMPTY673,28417 -#define SQLITE_SCHEMA SQLITE_SCHEMA674,28473 -#define SQLITE_TOOBIG SQLITE_TOOBIG675,28539 -#define SQLITE_CONSTRAINT SQLITE_CONSTRAINT676,28611 -#define SQLITE_MISMATCH SQLITE_MISMATCH677,28683 -#define SQLITE_MISUSE SQLITE_MISUSE678,28740 -#define SQLITE_NOLFS SQLITE_NOLFS679,28803 -#define SQLITE_AUTH SQLITE_AUTH680,28880 -#define SQLITE_FORMAT SQLITE_FORMAT681,28939 -#define SQLITE_RANGE SQLITE_RANGE682,29009 -#define SQLITE_NOTADB SQLITE_NOTADB683,29090 -#define SQLITE_NOTICE SQLITE_NOTICE684,29168 -#define SQLITE_WARNING SQLITE_WARNING685,29239 -#define SQLITE_ROW SQLITE_ROW686,29305 -#define SQLITE_DONE SQLITE_DONE687,29380 -#define SQLITE_IOERR_READ SQLITE_IOERR_READ706,30286 -#define SQLITE_IOERR_SHORT_READ SQLITE_IOERR_SHORT_READ707,30349 -#define SQLITE_IOERR_WRITE SQLITE_IOERR_WRITE708,30412 -#define SQLITE_IOERR_FSYNC SQLITE_IOERR_FSYNC709,30475 -#define SQLITE_IOERR_DIR_FSYNC SQLITE_IOERR_DIR_FSYNC710,30538 -#define SQLITE_IOERR_TRUNCATE SQLITE_IOERR_TRUNCATE711,30601 -#define SQLITE_IOERR_FSTAT SQLITE_IOERR_FSTAT712,30664 -#define SQLITE_IOERR_UNLOCK SQLITE_IOERR_UNLOCK713,30727 -#define SQLITE_IOERR_RDLOCK SQLITE_IOERR_RDLOCK714,30790 -#define SQLITE_IOERR_DELETE SQLITE_IOERR_DELETE715,30853 -#define SQLITE_IOERR_BLOCKED SQLITE_IOERR_BLOCKED716,30917 -#define SQLITE_IOERR_NOMEM SQLITE_IOERR_NOMEM717,30981 -#define SQLITE_IOERR_ACCESS SQLITE_IOERR_ACCESS718,31045 -#define SQLITE_IOERR_CHECKRESERVEDLOCK SQLITE_IOERR_CHECKRESERVEDLOCK719,31109 -#define SQLITE_IOERR_LOCK SQLITE_IOERR_LOCK720,31173 -#define SQLITE_IOERR_CLOSE SQLITE_IOERR_CLOSE721,31237 -#define SQLITE_IOERR_DIR_CLOSE SQLITE_IOERR_DIR_CLOSE722,31301 -#define SQLITE_IOERR_SHMOPEN SQLITE_IOERR_SHMOPEN723,31365 -#define SQLITE_IOERR_SHMSIZE SQLITE_IOERR_SHMSIZE724,31429 -#define SQLITE_IOERR_SHMLOCK SQLITE_IOERR_SHMLOCK725,31493 -#define SQLITE_IOERR_SHMMAP SQLITE_IOERR_SHMMAP726,31557 -#define SQLITE_IOERR_SEEK SQLITE_IOERR_SEEK727,31621 -#define SQLITE_IOERR_DELETE_NOENT SQLITE_IOERR_DELETE_NOENT728,31685 -#define SQLITE_IOERR_MMAP SQLITE_IOERR_MMAP729,31749 -#define SQLITE_IOERR_GETTEMPPATH SQLITE_IOERR_GETTEMPPATH730,31813 -#define SQLITE_IOERR_CONVPATH SQLITE_IOERR_CONVPATH731,31877 -#define SQLITE_IOERR_VNODE SQLITE_IOERR_VNODE732,31941 -#define SQLITE_IOERR_AUTH SQLITE_IOERR_AUTH733,32005 -#define SQLITE_LOCKED_SHAREDCACHE SQLITE_LOCKED_SHAREDCACHE734,32069 -#define SQLITE_BUSY_RECOVERY SQLITE_BUSY_RECOVERY735,32134 -#define SQLITE_BUSY_SNAPSHOT SQLITE_BUSY_SNAPSHOT736,32199 -#define SQLITE_CANTOPEN_NOTEMPDIR SQLITE_CANTOPEN_NOTEMPDIR737,32264 -#define SQLITE_CANTOPEN_ISDIR SQLITE_CANTOPEN_ISDIR738,32330 -#define SQLITE_CANTOPEN_FULLPATH SQLITE_CANTOPEN_FULLPATH739,32396 -#define SQLITE_CANTOPEN_CONVPATH SQLITE_CANTOPEN_CONVPATH740,32462 -#define SQLITE_CORRUPT_VTAB SQLITE_CORRUPT_VTAB741,32528 -#define SQLITE_READONLY_RECOVERY SQLITE_READONLY_RECOVERY742,32593 -#define SQLITE_READONLY_CANTLOCK SQLITE_READONLY_CANTLOCK743,32659 -#define SQLITE_READONLY_ROLLBACK SQLITE_READONLY_ROLLBACK744,32725 -#define SQLITE_READONLY_DBMOVED SQLITE_READONLY_DBMOVED745,32791 -#define SQLITE_ABORT_ROLLBACK SQLITE_ABORT_ROLLBACK746,32857 -#define SQLITE_CONSTRAINT_CHECK SQLITE_CONSTRAINT_CHECK747,32920 -#define SQLITE_CONSTRAINT_COMMITHOOK SQLITE_CONSTRAINT_COMMITHOOK748,32988 -#define SQLITE_CONSTRAINT_FOREIGNKEY SQLITE_CONSTRAINT_FOREIGNKEY749,33056 -#define SQLITE_CONSTRAINT_FUNCTION SQLITE_CONSTRAINT_FUNCTION750,33124 -#define SQLITE_CONSTRAINT_NOTNULL SQLITE_CONSTRAINT_NOTNULL751,33192 -#define SQLITE_CONSTRAINT_PRIMARYKEY SQLITE_CONSTRAINT_PRIMARYKEY752,33260 -#define SQLITE_CONSTRAINT_TRIGGER SQLITE_CONSTRAINT_TRIGGER753,33328 -#define SQLITE_CONSTRAINT_UNIQUE SQLITE_CONSTRAINT_UNIQUE754,33396 -#define SQLITE_CONSTRAINT_VTAB SQLITE_CONSTRAINT_VTAB755,33464 -#define SQLITE_CONSTRAINT_ROWID SQLITE_CONSTRAINT_ROWID756,33532 -#define SQLITE_NOTICE_RECOVER_WAL SQLITE_NOTICE_RECOVER_WAL757,33600 -#define SQLITE_NOTICE_RECOVER_ROLLBACK SQLITE_NOTICE_RECOVER_ROLLBACK758,33664 -#define SQLITE_WARNING_AUTOINDEX SQLITE_WARNING_AUTOINDEX759,33728 -#define SQLITE_AUTH_USER SQLITE_AUTH_USER760,33793 -#define SQLITE_OPEN_READONLY SQLITE_OPEN_READONLY769,34074 -#define SQLITE_OPEN_READWRITE SQLITE_OPEN_READWRITE770,34154 -#define SQLITE_OPEN_CREATE SQLITE_OPEN_CREATE771,34234 -#define SQLITE_OPEN_DELETEONCLOSE SQLITE_OPEN_DELETEONCLOSE772,34314 -#define SQLITE_OPEN_EXCLUSIVE SQLITE_OPEN_EXCLUSIVE773,34378 -#define SQLITE_OPEN_AUTOPROXY SQLITE_OPEN_AUTOPROXY774,34442 -#define SQLITE_OPEN_URI SQLITE_OPEN_URI775,34506 -#define SQLITE_OPEN_MEMORY SQLITE_OPEN_MEMORY776,34586 -#define SQLITE_OPEN_MAIN_DB SQLITE_OPEN_MAIN_DB777,34666 -#define SQLITE_OPEN_TEMP_DB SQLITE_OPEN_TEMP_DB778,34730 -#define SQLITE_OPEN_TRANSIENT_DB SQLITE_OPEN_TRANSIENT_DB779,34794 -#define SQLITE_OPEN_MAIN_JOURNAL SQLITE_OPEN_MAIN_JOURNAL780,34858 -#define SQLITE_OPEN_TEMP_JOURNAL SQLITE_OPEN_TEMP_JOURNAL781,34922 -#define SQLITE_OPEN_SUBJOURNAL SQLITE_OPEN_SUBJOURNAL782,34986 -#define SQLITE_OPEN_MASTER_JOURNAL SQLITE_OPEN_MASTER_JOURNAL783,35050 -#define SQLITE_OPEN_NOMUTEX SQLITE_OPEN_NOMUTEX784,35114 -#define SQLITE_OPEN_FULLMUTEX SQLITE_OPEN_FULLMUTEX785,35194 -#define SQLITE_OPEN_SHAREDCACHE SQLITE_OPEN_SHAREDCACHE786,35274 -#define SQLITE_OPEN_PRIVATECACHE SQLITE_OPEN_PRIVATECACHE787,35354 -#define SQLITE_OPEN_WAL SQLITE_OPEN_WAL788,35434 -#define SQLITE_IOCAP_ATOMIC SQLITE_IOCAP_ATOMIC820,36975 -#define SQLITE_IOCAP_ATOMIC512 SQLITE_IOCAP_ATOMIC512821,37030 -#define SQLITE_IOCAP_ATOMIC1K SQLITE_IOCAP_ATOMIC1K822,37085 -#define SQLITE_IOCAP_ATOMIC2K SQLITE_IOCAP_ATOMIC2K823,37140 -#define SQLITE_IOCAP_ATOMIC4K SQLITE_IOCAP_ATOMIC4K824,37195 -#define SQLITE_IOCAP_ATOMIC8K SQLITE_IOCAP_ATOMIC8K825,37250 -#define SQLITE_IOCAP_ATOMIC16K SQLITE_IOCAP_ATOMIC16K826,37305 -#define SQLITE_IOCAP_ATOMIC32K SQLITE_IOCAP_ATOMIC32K827,37360 -#define SQLITE_IOCAP_ATOMIC64K SQLITE_IOCAP_ATOMIC64K828,37415 -#define SQLITE_IOCAP_SAFE_APPEND SQLITE_IOCAP_SAFE_APPEND829,37470 -#define SQLITE_IOCAP_SEQUENTIAL SQLITE_IOCAP_SEQUENTIAL830,37525 -#define SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN831,37580 -#define SQLITE_IOCAP_POWERSAFE_OVERWRITE SQLITE_IOCAP_POWERSAFE_OVERWRITE832,37635 -#define SQLITE_IOCAP_IMMUTABLE SQLITE_IOCAP_IMMUTABLE833,37690 -#define SQLITE_LOCK_NONE SQLITE_LOCK_NONE842,37950 -#define SQLITE_LOCK_SHARED SQLITE_LOCK_SHARED843,37986 -#define SQLITE_LOCK_RESERVED SQLITE_LOCK_RESERVED844,38022 -#define SQLITE_LOCK_PENDING SQLITE_LOCK_PENDING845,38058 -#define SQLITE_LOCK_EXCLUSIVE SQLITE_LOCK_EXCLUSIVE846,38094 -#define SQLITE_SYNC_NORMAL SQLITE_SYNC_NORMAL874,39433 -#define SQLITE_SYNC_FULL SQLITE_SYNC_FULL875,39475 -#define SQLITE_SYNC_DATAONLY SQLITE_SYNC_DATAONLY876,39517 -typedef struct sqlite3_file sqlite3_file;sqlite3_file889,39987 -struct sqlite3_file {sqlite3_file890,40029 - const struct sqlite3_io_methods *pMethods; /* Methods for an open file */pMethods891,40051 - const struct sqlite3_io_methods *pMethods; /* Methods for an open file */sqlite3_file::pMethods891,40051 -typedef struct sqlite3_io_methods sqlite3_io_methods;sqlite3_io_methods984,44340 -struct sqlite3_io_methods {sqlite3_io_methods985,44394 - int iVersion;iVersion986,44422 - int iVersion;sqlite3_io_methods::iVersion986,44422 - int (*xClose)(sqlite3_file*);xClose987,44438 - int (*xClose)(sqlite3_file*);sqlite3_io_methods::xClose987,44438 - int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);xRead988,44470 - int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);sqlite3_io_methods::xRead988,44470 - int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);xWrite989,44539 - int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);sqlite3_io_methods::xWrite989,44539 - int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);xTruncate990,44615 - int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);sqlite3_io_methods::xTruncate990,44615 - int (*xSync)(sqlite3_file*, int flags);xSync991,44670 - int (*xSync)(sqlite3_file*, int flags);sqlite3_io_methods::xSync991,44670 - int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);xFileSize992,44712 - int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);sqlite3_io_methods::xFileSize992,44712 - int (*xLock)(sqlite3_file*, int);xLock993,44769 - int (*xLock)(sqlite3_file*, int);sqlite3_io_methods::xLock993,44769 - int (*xUnlock)(sqlite3_file*, int);xUnlock994,44805 - int (*xUnlock)(sqlite3_file*, int);sqlite3_io_methods::xUnlock994,44805 - int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);xCheckReservedLock995,44843 - int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);sqlite3_io_methods::xCheckReservedLock995,44843 - int (*xFileControl)(sqlite3_file*, int op, void *pArg);xFileControl996,44901 - int (*xFileControl)(sqlite3_file*, int op, void *pArg);sqlite3_io_methods::xFileControl996,44901 - int (*xSectorSize)(sqlite3_file*);xSectorSize997,44959 - int (*xSectorSize)(sqlite3_file*);sqlite3_io_methods::xSectorSize997,44959 - int (*xDeviceCharacteristics)(sqlite3_file*);xDeviceCharacteristics998,44996 - int (*xDeviceCharacteristics)(sqlite3_file*);sqlite3_io_methods::xDeviceCharacteristics998,44996 - int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);xShmMap1000,45090 - int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);sqlite3_io_methods::xShmMap1000,45090 - int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);xShmLock1001,45164 - int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);sqlite3_io_methods::xShmLock1001,45164 - void (*xShmBarrier)(sqlite3_file*);xShmBarrier1002,45228 - void (*xShmBarrier)(sqlite3_file*);sqlite3_io_methods::xShmBarrier1002,45228 - int (*xShmUnmap)(sqlite3_file*, int deleteFlag);xShmUnmap1003,45266 - int (*xShmUnmap)(sqlite3_file*, int deleteFlag);sqlite3_io_methods::xShmUnmap1003,45266 - int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);xFetch1005,45363 - int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);sqlite3_io_methods::xFetch1005,45363 - int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p);xUnfetch1006,45437 - int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p);sqlite3_io_methods::xUnfetch1006,45437 -#define SQLITE_FCNTL_LOCKSTATE SQLITE_FCNTL_LOCKSTATE1244,58639 -#define SQLITE_FCNTL_GET_LOCKPROXYFILE SQLITE_FCNTL_GET_LOCKPROXYFILE1245,58686 -#define SQLITE_FCNTL_SET_LOCKPROXYFILE SQLITE_FCNTL_SET_LOCKPROXYFILE1246,58733 -#define SQLITE_FCNTL_LAST_ERRNO SQLITE_FCNTL_LAST_ERRNO1247,58780 -#define SQLITE_FCNTL_SIZE_HINT SQLITE_FCNTL_SIZE_HINT1248,58827 -#define SQLITE_FCNTL_CHUNK_SIZE SQLITE_FCNTL_CHUNK_SIZE1249,58874 -#define SQLITE_FCNTL_FILE_POINTER SQLITE_FCNTL_FILE_POINTER1250,58921 -#define SQLITE_FCNTL_SYNC_OMITTED SQLITE_FCNTL_SYNC_OMITTED1251,58968 -#define SQLITE_FCNTL_WIN32_AV_RETRY SQLITE_FCNTL_WIN32_AV_RETRY1252,59015 -#define SQLITE_FCNTL_PERSIST_WAL SQLITE_FCNTL_PERSIST_WAL1253,59062 -#define SQLITE_FCNTL_OVERWRITE SQLITE_FCNTL_OVERWRITE1254,59109 -#define SQLITE_FCNTL_VFSNAME SQLITE_FCNTL_VFSNAME1255,59156 -#define SQLITE_FCNTL_POWERSAFE_OVERWRITE SQLITE_FCNTL_POWERSAFE_OVERWRITE1256,59203 -#define SQLITE_FCNTL_PRAGMA SQLITE_FCNTL_PRAGMA1257,59250 -#define SQLITE_FCNTL_BUSYHANDLER SQLITE_FCNTL_BUSYHANDLER1258,59297 -#define SQLITE_FCNTL_TEMPFILENAME SQLITE_FCNTL_TEMPFILENAME1259,59344 -#define SQLITE_FCNTL_MMAP_SIZE SQLITE_FCNTL_MMAP_SIZE1260,59391 -#define SQLITE_FCNTL_TRACE SQLITE_FCNTL_TRACE1261,59438 -#define SQLITE_FCNTL_HAS_MOVED SQLITE_FCNTL_HAS_MOVED1262,59485 -#define SQLITE_FCNTL_SYNC SQLITE_FCNTL_SYNC1263,59532 -#define SQLITE_FCNTL_COMMIT_PHASETWO SQLITE_FCNTL_COMMIT_PHASETWO1264,59579 -#define SQLITE_FCNTL_WIN32_SET_HANDLE SQLITE_FCNTL_WIN32_SET_HANDLE1265,59626 -#define SQLITE_FCNTL_WAL_BLOCK SQLITE_FCNTL_WAL_BLOCK1266,59673 -#define SQLITE_FCNTL_ZIPVFS SQLITE_FCNTL_ZIPVFS1267,59720 -#define SQLITE_FCNTL_RBU SQLITE_FCNTL_RBU1268,59767 -#define SQLITE_FCNTL_VFS_POINTER SQLITE_FCNTL_VFS_POINTER1269,59814 -#define SQLITE_FCNTL_JOURNAL_POINTER SQLITE_FCNTL_JOURNAL_POINTER1270,59861 -#define SQLITE_GET_LOCKPROXYFILE SQLITE_GET_LOCKPROXYFILE1273,59932 -#define SQLITE_SET_LOCKPROXYFILE SQLITE_SET_LOCKPROXYFILE1274,60001 -#define SQLITE_LAST_ERRNO SQLITE_LAST_ERRNO1275,60070 -typedef struct sqlite3_mutex sqlite3_mutex;sqlite3_mutex1288,60479 -typedef struct sqlite3_vfs sqlite3_vfs;sqlite3_vfs1447,68370 -typedef void (*sqlite3_syscall_ptr)(void);sqlite3_syscall_ptr1448,68410 -struct sqlite3_vfs {sqlite3_vfs1449,68453 - int iVersion; /* Structure version number (currently 3) */iVersion1450,68474 - int iVersion; /* Structure version number (currently 3) */sqlite3_vfs::iVersion1450,68474 - int szOsFile; /* Size of subclassed sqlite3_file */szOsFile1451,68546 - int szOsFile; /* Size of subclassed sqlite3_file */sqlite3_vfs::szOsFile1451,68546 - int mxPathname; /* Maximum file pathname length */mxPathname1452,68611 - int mxPathname; /* Maximum file pathname length */sqlite3_vfs::mxPathname1452,68611 - sqlite3_vfs *pNext; /* Next registered VFS */pNext1453,68673 - sqlite3_vfs *pNext; /* Next registered VFS */sqlite3_vfs::pNext1453,68673 - const char *zName; /* Name of this virtual file system */zName1454,68726 - const char *zName; /* Name of this virtual file system */sqlite3_vfs::zName1454,68726 - void *pAppData; /* Pointer to application-specific data */pAppData1455,68792 - void *pAppData; /* Pointer to application-specific data */sqlite3_vfs::pAppData1455,68792 - int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,xOpen1456,68862 - int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,sqlite3_vfs::xOpen1456,68862 - int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);xDelete1458,68968 - int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);sqlite3_vfs::xDelete1458,68968 - int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);xAccess1459,69032 - int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);sqlite3_vfs::xAccess1459,69032 - int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);xFullPathname1460,69108 - int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);sqlite3_vfs::xFullPathname1460,69108 - void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);xDlOpen1461,69187 - void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);sqlite3_vfs::xDlOpen1461,69187 - void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);xDlError1462,69244 - void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);sqlite3_vfs::xDlError1462,69244 - void (*xDlClose)(sqlite3_vfs*, void*);xDlClose1464,69372 - void (*xDlClose)(sqlite3_vfs*, void*);sqlite3_vfs::xDlClose1464,69372 - int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);xRandomness1465,69413 - int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);sqlite3_vfs::xRandomness1465,69413 - int (*xSleep)(sqlite3_vfs*, int microseconds);xSleep1466,69472 - int (*xSleep)(sqlite3_vfs*, int microseconds);sqlite3_vfs::xSleep1466,69472 - int (*xCurrentTime)(sqlite3_vfs*, double*);xCurrentTime1467,69521 - int (*xCurrentTime)(sqlite3_vfs*, double*);sqlite3_vfs::xCurrentTime1467,69521 - int (*xGetLastError)(sqlite3_vfs*, int, char *);xGetLastError1468,69567 - int (*xGetLastError)(sqlite3_vfs*, int, char *);sqlite3_vfs::xGetLastError1468,69567 - int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);xCurrentTimeInt641473,69761 - int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);sqlite3_vfs::xCurrentTimeInt641473,69761 - int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);xSetSystemCall1478,69950 - int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);sqlite3_vfs::xSetSystemCall1478,69950 - sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);xGetSystemCall1479,70029 - sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);sqlite3_vfs::xGetSystemCall1479,70029 - const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);xNextSystemCall1480,70103 - const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);sqlite3_vfs::xNextSystemCall1480,70103 -#define SQLITE_ACCESS_EXISTS SQLITE_ACCESS_EXISTS1508,71292 -#define SQLITE_ACCESS_READWRITE SQLITE_ACCESS_READWRITE1509,71326 -#define SQLITE_ACCESS_READ SQLITE_ACCESS_READ1510,71404 -#define SQLITE_SHM_UNLOCK SQLITE_SHM_UNLOCK1534,72210 -#define SQLITE_SHM_LOCK SQLITE_SHM_LOCK1535,72244 -#define SQLITE_SHM_SHARED SQLITE_SHM_SHARED1536,72278 -#define SQLITE_SHM_EXCLUSIVE SQLITE_SHM_EXCLUSIVE1537,72312 -#define SQLITE_SHM_NLOCK SQLITE_SHM_NLOCK1547,72606 -typedef struct sqlite3_mem_methods sqlite3_mem_methods;sqlite3_mem_methods1745,82545 -struct sqlite3_mem_methods {sqlite3_mem_methods1746,82601 - void *(*xMalloc)(int); /* Memory allocation function */xMalloc1747,82630 - void *(*xMalloc)(int); /* Memory allocation function */sqlite3_mem_methods::xMalloc1747,82630 - void (*xFree)(void*); /* Free a prior allocation */xFree1748,82696 - void (*xFree)(void*); /* Free a prior allocation */sqlite3_mem_methods::xFree1748,82696 - void *(*xRealloc)(void*,int); /* Resize an allocation */xRealloc1749,82759 - void *(*xRealloc)(void*,int); /* Resize an allocation */sqlite3_mem_methods::xRealloc1749,82759 - int (*xSize)(void*); /* Return the size of an allocation */xSize1750,82819 - int (*xSize)(void*); /* Return the size of an allocation */sqlite3_mem_methods::xSize1750,82819 - int (*xRoundup)(int); /* Round up request size to allocation size */xRoundup1751,82891 - int (*xRoundup)(int); /* Round up request size to allocation size */sqlite3_mem_methods::xRoundup1751,82891 - int (*xInit)(void*); /* Initialize the memory allocator */xInit1752,82971 - int (*xInit)(void*); /* Initialize the memory allocator */sqlite3_mem_methods::xInit1752,82971 - void (*xShutdown)(void*); /* Deinitialize the memory allocator */xShutdown1753,83042 - void (*xShutdown)(void*); /* Deinitialize the memory allocator */sqlite3_mem_methods::xShutdown1753,83042 - void *pAppData; /* Argument to xInit() and xShutdown() */pAppData1754,83115 - void *pAppData; /* Argument to xInit() and xShutdown() */sqlite3_mem_methods::pAppData1754,83115 -#define SQLITE_CONFIG_SINGLETHREAD SQLITE_CONFIG_SINGLETHREAD2091,102158 -#define SQLITE_CONFIG_MULTITHREAD SQLITE_CONFIG_MULTITHREAD2092,102207 -#define SQLITE_CONFIG_SERIALIZED SQLITE_CONFIG_SERIALIZED2093,102256 -#define SQLITE_CONFIG_MALLOC SQLITE_CONFIG_MALLOC2094,102305 -#define SQLITE_CONFIG_GETMALLOC SQLITE_CONFIG_GETMALLOC2095,102371 -#define SQLITE_CONFIG_SCRATCH SQLITE_CONFIG_SCRATCH2096,102437 -#define SQLITE_CONFIG_PAGECACHE SQLITE_CONFIG_PAGECACHE2097,102503 -#define SQLITE_CONFIG_HEAP SQLITE_CONFIG_HEAP2098,102569 -#define SQLITE_CONFIG_MEMSTATUS SQLITE_CONFIG_MEMSTATUS2099,102640 -#define SQLITE_CONFIG_MUTEX SQLITE_CONFIG_MUTEX2100,102693 -#define SQLITE_CONFIG_GETMUTEX SQLITE_CONFIG_GETMUTEX2101,102761 -#define SQLITE_CONFIG_LOOKASIDE SQLITE_CONFIG_LOOKASIDE2103,102896 -#define SQLITE_CONFIG_PCACHE SQLITE_CONFIG_PCACHE2104,102949 -#define SQLITE_CONFIG_GETPCACHE SQLITE_CONFIG_GETPCACHE2105,103000 -#define SQLITE_CONFIG_LOG SQLITE_CONFIG_LOG2106,103051 -#define SQLITE_CONFIG_URI SQLITE_CONFIG_URI2107,103109 -#define SQLITE_CONFIG_PCACHE2 SQLITE_CONFIG_PCACHE22108,103158 -#define SQLITE_CONFIG_GETPCACHE2 SQLITE_CONFIG_GETPCACHE22109,103228 -#define SQLITE_CONFIG_COVERING_INDEX_SCAN SQLITE_CONFIG_COVERING_INDEX_SCAN2110,103298 -#define SQLITE_CONFIG_SQLLOG SQLITE_CONFIG_SQLLOG2111,103354 -#define SQLITE_CONFIG_MMAP_SIZE SQLITE_CONFIG_MMAP_SIZE2112,103414 -#define SQLITE_CONFIG_WIN32_HEAPSIZE SQLITE_CONFIG_WIN32_HEAPSIZE2113,103488 -#define SQLITE_CONFIG_PCACHE_HDRSZ SQLITE_CONFIG_PCACHE_HDRSZ2114,103550 -#define SQLITE_CONFIG_PMASZ SQLITE_CONFIG_PMASZ2115,103611 -#define SQLITE_CONFIG_STMTJRNL_SPILL SQLITE_CONFIG_STMTJRNL_SPILL2116,103682 -#define SQLITE_DBCONFIG_LOOKASIDE SQLITE_DBCONFIG_LOOKASIDE2206,108698 -#define SQLITE_DBCONFIG_ENABLE_FKEY SQLITE_DBCONFIG_ENABLE_FKEY2207,108769 -#define SQLITE_DBCONFIG_ENABLE_TRIGGER SQLITE_DBCONFIG_ENABLE_TRIGGER2208,108835 -#define SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER2209,108901 -#define SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION2210,108967 -#define SQLITE_DENY SQLITE_DENY2947,143882 -#define SQLITE_IGNORE SQLITE_IGNORE2948,143952 -#define SQLITE_CREATE_INDEX SQLITE_CREATE_INDEX2970,145077 -#define SQLITE_CREATE_TABLE SQLITE_CREATE_TABLE2971,145156 -#define SQLITE_CREATE_TEMP_INDEX SQLITE_CREATE_TEMP_INDEX2972,145235 -#define SQLITE_CREATE_TEMP_TABLE SQLITE_CREATE_TEMP_TABLE2973,145314 -#define SQLITE_CREATE_TEMP_TRIGGER SQLITE_CREATE_TEMP_TRIGGER2974,145393 -#define SQLITE_CREATE_TEMP_VIEW SQLITE_CREATE_TEMP_VIEW2975,145472 -#define SQLITE_CREATE_TRIGGER SQLITE_CREATE_TRIGGER2976,145551 -#define SQLITE_CREATE_VIEW SQLITE_CREATE_VIEW2977,145630 -#define SQLITE_DELETE SQLITE_DELETE2978,145709 -#define SQLITE_DROP_INDEX SQLITE_DROP_INDEX2979,145788 -#define SQLITE_DROP_TABLE SQLITE_DROP_TABLE2980,145867 -#define SQLITE_DROP_TEMP_INDEX SQLITE_DROP_TEMP_INDEX2981,145946 -#define SQLITE_DROP_TEMP_TABLE SQLITE_DROP_TEMP_TABLE2982,146025 -#define SQLITE_DROP_TEMP_TRIGGER SQLITE_DROP_TEMP_TRIGGER2983,146104 -#define SQLITE_DROP_TEMP_VIEW SQLITE_DROP_TEMP_VIEW2984,146183 -#define SQLITE_DROP_TRIGGER SQLITE_DROP_TRIGGER2985,146262 -#define SQLITE_DROP_VIEW SQLITE_DROP_VIEW2986,146341 -#define SQLITE_INSERT SQLITE_INSERT2987,146420 -#define SQLITE_PRAGMA SQLITE_PRAGMA2988,146499 -#define SQLITE_READ SQLITE_READ2989,146578 -#define SQLITE_SELECT SQLITE_SELECT2990,146657 -#define SQLITE_TRANSACTION SQLITE_TRANSACTION2991,146736 -#define SQLITE_UPDATE SQLITE_UPDATE2992,146815 -#define SQLITE_ATTACH SQLITE_ATTACH2993,146894 -#define SQLITE_DETACH SQLITE_DETACH2994,146973 -#define SQLITE_ALTER_TABLE SQLITE_ALTER_TABLE2995,147052 -#define SQLITE_REINDEX SQLITE_REINDEX2996,147131 -#define SQLITE_ANALYZE SQLITE_ANALYZE2997,147210 -#define SQLITE_CREATE_VTABLE SQLITE_CREATE_VTABLE2998,147289 -#define SQLITE_DROP_VTABLE SQLITE_DROP_VTABLE2999,147368 -#define SQLITE_FUNCTION SQLITE_FUNCTION3000,147447 -#define SQLITE_SAVEPOINT SQLITE_SAVEPOINT3001,147526 -#define SQLITE_COPY SQLITE_COPY3002,147605 -#define SQLITE_RECURSIVE SQLITE_RECURSIVE3003,147667 -typedef struct sqlite3_stmt sqlite3_stmt;sqlite3_stmt3429,169743 -#define SQLITE_LIMIT_LENGTH SQLITE_LIMIT_LENGTH3529,174257 -#define SQLITE_LIMIT_SQL_LENGTH SQLITE_LIMIT_SQL_LENGTH3530,174306 -#define SQLITE_LIMIT_COLUMN SQLITE_LIMIT_COLUMN3531,174355 -#define SQLITE_LIMIT_EXPR_DEPTH SQLITE_LIMIT_EXPR_DEPTH3532,174404 -#define SQLITE_LIMIT_COMPOUND_SELECT SQLITE_LIMIT_COMPOUND_SELECT3533,174453 -#define SQLITE_LIMIT_VDBE_OP SQLITE_LIMIT_VDBE_OP3534,174502 -#define SQLITE_LIMIT_FUNCTION_ARG SQLITE_LIMIT_FUNCTION_ARG3535,174551 -#define SQLITE_LIMIT_ATTACHED SQLITE_LIMIT_ATTACHED3536,174600 -#define SQLITE_LIMIT_LIKE_PATTERN_LENGTH SQLITE_LIMIT_LIKE_PATTERN_LENGTH3537,174649 -#define SQLITE_LIMIT_VARIABLE_NUMBER SQLITE_LIMIT_VARIABLE_NUMBER3538,174698 -#define SQLITE_LIMIT_TRIGGER_DEPTH SQLITE_LIMIT_TRIGGER_DEPTH3539,174747 -#define SQLITE_LIMIT_WORKER_THREADS SQLITE_LIMIT_WORKER_THREADS3540,174796 -typedef struct Mem sqlite3_value;sqlite3_value3754,185105 -typedef struct sqlite3_context sqlite3_context;sqlite3_context3768,185687 -#define SQLITE_INTEGER SQLITE_INTEGER4218,207126 -#define SQLITE_FLOAT SQLITE_FLOAT4219,207152 -#define SQLITE_BLOB SQLITE_BLOB4220,207178 -#define SQLITE_NULL SQLITE_NULL4221,207204 -# undef SQLITE_TEXTSQLITE_TEXT4223,207249 -# define SQLITE_TEXT SQLITE_TEXT4225,207275 -#define SQLITE3_TEXT SQLITE3_TEXT4227,207309 -#define SQLITE_UTF8 SQLITE_UTF84587,225191 -#define SQLITE_UTF16LE SQLITE_UTF16LE4588,225251 -#define SQLITE_UTF16BE SQLITE_UTF16BE4589,225311 -#define SQLITE_UTF16 SQLITE_UTF164590,225371 -#define SQLITE_ANY SQLITE_ANY4591,225434 -#define SQLITE_UTF16_ALIGNED SQLITE_UTF16_ALIGNED4592,225486 -#define SQLITE_DETERMINISTIC SQLITE_DETERMINISTIC4602,225815 -typedef void (*sqlite3_destructor_type)(void*);sqlite3_destructor_type4857,238033 -#define SQLITE_STATIC SQLITE_STATIC4858,238081 -#define SQLITE_TRANSIENT SQLITE_TRANSIENT4859,238137 -SQLITE_API char *sqlite3_temp_directory;sqlite3_temp_directory5284,258290 -SQLITE_API char *sqlite3_data_directory;sqlite3_data_directory5321,260112 -typedef struct sqlite3_vtab sqlite3_vtab;sqlite3_vtab5865,284554 -typedef struct sqlite3_index_info sqlite3_index_info;sqlite3_index_info5866,284596 -typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor;sqlite3_vtab_cursor5867,284650 -typedef struct sqlite3_module sqlite3_module;sqlite3_module5868,284706 -struct sqlite3_module {sqlite3_module5886,285458 - int iVersion;iVersion5887,285482 - int iVersion;sqlite3_module::iVersion5887,285482 - int (*xCreate)(sqlite3*, void *pAux,xCreate5888,285498 - int (*xCreate)(sqlite3*, void *pAux,sqlite3_module::xCreate5888,285498 - int (*xConnect)(sqlite3*, void *pAux,xConnect5891,285633 - int (*xConnect)(sqlite3*, void *pAux,sqlite3_module::xConnect5891,285633 - int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);xBestIndex5894,285769 - int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);sqlite3_module::xBestIndex5894,285769 - int (*xDisconnect)(sqlite3_vtab *pVTab);xDisconnect5895,285832 - int (*xDisconnect)(sqlite3_vtab *pVTab);sqlite3_module::xDisconnect5895,285832 - int (*xDestroy)(sqlite3_vtab *pVTab);xDestroy5896,285875 - int (*xDestroy)(sqlite3_vtab *pVTab);sqlite3_module::xDestroy5896,285875 - int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);xOpen5897,285915 - int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);sqlite3_module::xOpen5897,285915 - int (*xClose)(sqlite3_vtab_cursor*);xClose5898,285984 - int (*xClose)(sqlite3_vtab_cursor*);sqlite3_module::xClose5898,285984 - int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,xFilter5899,286023 - int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,sqlite3_module::xFilter5899,286023 - int (*xNext)(sqlite3_vtab_cursor*);xNext5901,286143 - int (*xNext)(sqlite3_vtab_cursor*);sqlite3_module::xNext5901,286143 - int (*xEof)(sqlite3_vtab_cursor*);xEof5902,286181 - int (*xEof)(sqlite3_vtab_cursor*);sqlite3_module::xEof5902,286181 - int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);xColumn5903,286218 - int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);sqlite3_module::xColumn5903,286218 - int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);xRowid5904,286281 - int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);sqlite3_module::xRowid5904,286281 - int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);xUpdate5905,286343 - int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);sqlite3_module::xUpdate5905,286343 - int (*xBegin)(sqlite3_vtab *pVTab);xBegin5906,286417 - int (*xBegin)(sqlite3_vtab *pVTab);sqlite3_module::xBegin5906,286417 - int (*xSync)(sqlite3_vtab *pVTab);xSync5907,286455 - int (*xSync)(sqlite3_vtab *pVTab);sqlite3_module::xSync5907,286455 - int (*xCommit)(sqlite3_vtab *pVTab);xCommit5908,286492 - int (*xCommit)(sqlite3_vtab *pVTab);sqlite3_module::xCommit5908,286492 - int (*xRollback)(sqlite3_vtab *pVTab);xRollback5909,286531 - int (*xRollback)(sqlite3_vtab *pVTab);sqlite3_module::xRollback5909,286531 - int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,xFindFunction5910,286572 - int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,sqlite3_module::xFindFunction5910,286572 - int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);xRename5913,286761 - int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);sqlite3_module::xRename5913,286761 - int (*xSavepoint)(sqlite3_vtab *pVTab, int);xSavepoint5916,286939 - int (*xSavepoint)(sqlite3_vtab *pVTab, int);sqlite3_module::xSavepoint5916,286939 - int (*xRelease)(sqlite3_vtab *pVTab, int);xRelease5917,286986 - int (*xRelease)(sqlite3_vtab *pVTab, int);sqlite3_module::xRelease5917,286986 - int (*xRollbackTo)(sqlite3_vtab *pVTab, int);xRollbackTo5918,287031 - int (*xRollbackTo)(sqlite3_vtab *pVTab, int);sqlite3_module::xRollbackTo5918,287031 -struct sqlite3_index_info {sqlite3_index_info6015,292131 - int nConstraint; /* Number of entries in aConstraint */nConstraint6017,292174 - int nConstraint; /* Number of entries in aConstraint */sqlite3_index_info::nConstraint6017,292174 - struct sqlite3_index_constraint {sqlite3_index_constraint6018,292242 - struct sqlite3_index_constraint {sqlite3_index_info::sqlite3_index_constraint6018,292242 - int iColumn; /* Column constrained. -1 for ROWID */iColumn6019,292278 - int iColumn; /* Column constrained. -1 for ROWID */sqlite3_index_info::sqlite3_index_constraint::iColumn6019,292278 - unsigned char op; /* Constraint operator */op6020,292349 - unsigned char op; /* Constraint operator */sqlite3_index_info::sqlite3_index_constraint::op6020,292349 - unsigned char usable; /* True if this constraint is usable */usable6021,292406 - unsigned char usable; /* True if this constraint is usable */sqlite3_index_info::sqlite3_index_constraint::usable6021,292406 - int iTermOffset; /* Used internally - xBestIndex should ignore */iTermOffset6022,292477 - int iTermOffset; /* Used internally - xBestIndex should ignore */sqlite3_index_info::sqlite3_index_constraint::iTermOffset6022,292477 - } *aConstraint; /* Table of WHERE clause constraints */aConstraint6023,292557 - } *aConstraint; /* Table of WHERE clause constraints */sqlite3_index_info::aConstraint6023,292557 - int nOrderBy; /* Number of terms in the ORDER BY clause */nOrderBy6024,292626 - int nOrderBy; /* Number of terms in the ORDER BY clause */sqlite3_index_info::nOrderBy6024,292626 - struct sqlite3_index_orderby {sqlite3_index_orderby6025,292700 - struct sqlite3_index_orderby {sqlite3_index_info::sqlite3_index_orderby6025,292700 - int iColumn; /* Column number */iColumn6026,292733 - int iColumn; /* Column number */sqlite3_index_info::sqlite3_index_orderby::iColumn6026,292733 - unsigned char desc; /* True for DESC. False for ASC. */desc6027,292784 - unsigned char desc; /* True for DESC. False for ASC. */sqlite3_index_info::sqlite3_index_orderby::desc6027,292784 - } *aOrderBy; /* The ORDER BY clause */aOrderBy6028,292852 - } *aOrderBy; /* The ORDER BY clause */sqlite3_index_info::aOrderBy6028,292852 - struct sqlite3_index_constraint_usage {sqlite3_index_constraint_usage6030,292923 - struct sqlite3_index_constraint_usage {sqlite3_index_info::sqlite3_index_constraint_usage6030,292923 - int argvIndex; /* if >0, constraint is part of argv to xFilter */argvIndex6031,292965 - int argvIndex; /* if >0, constraint is part of argv to xFilter */sqlite3_index_info::sqlite3_index_constraint_usage::argvIndex6031,292965 - unsigned char omit; /* Do not code a test for this constraint */omit6032,293045 - unsigned char omit; /* Do not code a test for this constraint */sqlite3_index_info::sqlite3_index_constraint_usage::omit6032,293045 - } *aConstraintUsage;aConstraintUsage6033,293119 - } *aConstraintUsage;sqlite3_index_info::aConstraintUsage6033,293119 - int idxNum; /* Number used to identify the index */idxNum6034,293142 - int idxNum; /* Number used to identify the index */sqlite3_index_info::idxNum6034,293142 - char *idxStr; /* String, possibly obtained from sqlite3_malloc */idxStr6035,293211 - char *idxStr; /* String, possibly obtained from sqlite3_malloc */sqlite3_index_info::idxStr6035,293211 - int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */needToFreeIdxStr6036,293292 - int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */sqlite3_index_info::needToFreeIdxStr6036,293292 - int orderByConsumed; /* True if output is already ordered */orderByConsumed6037,293368 - int orderByConsumed; /* True if output is already ordered */sqlite3_index_info::orderByConsumed6037,293368 - double estimatedCost; /* Estimated cost of using this index */estimatedCost6038,293437 - double estimatedCost; /* Estimated cost of using this index */sqlite3_index_info::estimatedCost6038,293437 - sqlite3_int64 estimatedRows; /* Estimated number of rows returned */estimatedRows6040,293578 - sqlite3_int64 estimatedRows; /* Estimated number of rows returned */sqlite3_index_info::estimatedRows6040,293578 - int idxFlags; /* Mask of SQLITE_INDEX_SCAN_* flags */idxFlags6042,293718 - int idxFlags; /* Mask of SQLITE_INDEX_SCAN_* flags */sqlite3_index_info::idxFlags6042,293718 - sqlite3_uint64 colUsed; /* Input: Mask of columns used by statement */colUsed6044,293854 - sqlite3_uint64 colUsed; /* Input: Mask of columns used by statement */sqlite3_index_info::colUsed6044,293854 -#define SQLITE_INDEX_SCAN_UNIQUE SQLITE_INDEX_SCAN_UNIQUE6050,293978 -#define SQLITE_INDEX_CONSTRAINT_EQ SQLITE_INDEX_CONSTRAINT_EQ6060,294351 -#define SQLITE_INDEX_CONSTRAINT_GT SQLITE_INDEX_CONSTRAINT_GT6061,294393 -#define SQLITE_INDEX_CONSTRAINT_LE SQLITE_INDEX_CONSTRAINT_LE6062,294435 -#define SQLITE_INDEX_CONSTRAINT_LT SQLITE_INDEX_CONSTRAINT_LT6063,294477 -#define SQLITE_INDEX_CONSTRAINT_GE SQLITE_INDEX_CONSTRAINT_GE6064,294519 -#define SQLITE_INDEX_CONSTRAINT_MATCH SQLITE_INDEX_CONSTRAINT_MATCH6065,294561 -#define SQLITE_INDEX_CONSTRAINT_LIKE SQLITE_INDEX_CONSTRAINT_LIKE6066,294603 -#define SQLITE_INDEX_CONSTRAINT_GLOB SQLITE_INDEX_CONSTRAINT_GLOB6067,294645 -#define SQLITE_INDEX_CONSTRAINT_REGEXP SQLITE_INDEX_CONSTRAINT_REGEXP6068,294687 -struct sqlite3_vtab {sqlite3_vtab6128,297534 - const sqlite3_module *pModule; /* The module for this virtual table */pModule6129,297556 - const sqlite3_module *pModule; /* The module for this virtual table */sqlite3_vtab::pModule6129,297556 - int nRef; /* Number of open cursors */nRef6130,297630 - int nRef; /* Number of open cursors */sqlite3_vtab::nRef6130,297630 - char *zErrMsg; /* Error message from sqlite3_mprintf() */zErrMsg6131,297693 - char *zErrMsg; /* Error message from sqlite3_mprintf() */sqlite3_vtab::zErrMsg6131,297693 -struct sqlite3_vtab_cursor {sqlite3_vtab_cursor6152,298631 - sqlite3_vtab *pVtab; /* Virtual table of this cursor */pVtab6153,298660 - sqlite3_vtab *pVtab; /* Virtual table of this cursor */sqlite3_vtab_cursor::pVtab6153,298660 -typedef struct sqlite3_blob sqlite3_blob;sqlite3_blob6208,300971 -typedef struct sqlite3_mutex_methods sqlite3_mutex_methods;sqlite3_mutex_methods6646,321360 -struct sqlite3_mutex_methods {sqlite3_mutex_methods6647,321420 - int (*xMutexInit)(void);xMutexInit6648,321451 - int (*xMutexInit)(void);sqlite3_mutex_methods::xMutexInit6648,321451 - int (*xMutexEnd)(void);xMutexEnd6649,321478 - int (*xMutexEnd)(void);sqlite3_mutex_methods::xMutexEnd6649,321478 - sqlite3_mutex *(*xMutexAlloc)(int);xMutexAlloc6650,321504 - sqlite3_mutex *(*xMutexAlloc)(int);sqlite3_mutex_methods::xMutexAlloc6650,321504 - void (*xMutexFree)(sqlite3_mutex *);xMutexFree6651,321542 - void (*xMutexFree)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexFree6651,321542 - void (*xMutexEnter)(sqlite3_mutex *);xMutexEnter6652,321581 - void (*xMutexEnter)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexEnter6652,321581 - int (*xMutexTry)(sqlite3_mutex *);xMutexTry6653,321621 - int (*xMutexTry)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexTry6653,321621 - void (*xMutexLeave)(sqlite3_mutex *);xMutexLeave6654,321658 - void (*xMutexLeave)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexLeave6654,321658 - int (*xMutexHeld)(sqlite3_mutex *);xMutexHeld6655,321698 - int (*xMutexHeld)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexHeld6655,321698 - int (*xMutexNotheld)(sqlite3_mutex *);xMutexNotheld6656,321736 - int (*xMutexNotheld)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexNotheld6656,321736 -#define SQLITE_MUTEX_FAST SQLITE_MUTEX_FAST6703,323789 -#define SQLITE_MUTEX_RECURSIVE SQLITE_MUTEX_RECURSIVE6704,323829 -#define SQLITE_MUTEX_STATIC_MASTER SQLITE_MUTEX_STATIC_MASTER6705,323869 -#define SQLITE_MUTEX_STATIC_MEM SQLITE_MUTEX_STATIC_MEM6706,323909 -#define SQLITE_MUTEX_STATIC_MEM2 SQLITE_MUTEX_STATIC_MEM26707,323973 -#define SQLITE_MUTEX_STATIC_OPEN SQLITE_MUTEX_STATIC_OPEN6708,324029 -#define SQLITE_MUTEX_STATIC_PRNG SQLITE_MUTEX_STATIC_PRNG6709,324095 -#define SQLITE_MUTEX_STATIC_LRU SQLITE_MUTEX_STATIC_LRU6710,324159 -#define SQLITE_MUTEX_STATIC_LRU2 SQLITE_MUTEX_STATIC_LRU26711,324220 -#define SQLITE_MUTEX_STATIC_PMEM SQLITE_MUTEX_STATIC_PMEM6712,324276 -#define SQLITE_MUTEX_STATIC_APP1 SQLITE_MUTEX_STATIC_APP16713,324343 -#define SQLITE_MUTEX_STATIC_APP2 SQLITE_MUTEX_STATIC_APP26714,324413 -#define SQLITE_MUTEX_STATIC_APP3 SQLITE_MUTEX_STATIC_APP36715,324483 -#define SQLITE_MUTEX_STATIC_VFS1 SQLITE_MUTEX_STATIC_VFS16716,324553 -#define SQLITE_MUTEX_STATIC_VFS2 SQLITE_MUTEX_STATIC_VFS26717,324624 -#define SQLITE_MUTEX_STATIC_VFS3 SQLITE_MUTEX_STATIC_VFS36718,324696 -#define SQLITE_TESTCTRL_FIRST SQLITE_TESTCTRL_FIRST6797,328232 -#define SQLITE_TESTCTRL_PRNG_SAVE SQLITE_TESTCTRL_PRNG_SAVE6798,328283 -#define SQLITE_TESTCTRL_PRNG_RESTORE SQLITE_TESTCTRL_PRNG_RESTORE6799,328334 -#define SQLITE_TESTCTRL_PRNG_RESET SQLITE_TESTCTRL_PRNG_RESET6800,328385 -#define SQLITE_TESTCTRL_BITVEC_TEST SQLITE_TESTCTRL_BITVEC_TEST6801,328436 -#define SQLITE_TESTCTRL_FAULT_INSTALL SQLITE_TESTCTRL_FAULT_INSTALL6802,328487 -#define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS6803,328538 -#define SQLITE_TESTCTRL_PENDING_BYTE SQLITE_TESTCTRL_PENDING_BYTE6804,328589 -#define SQLITE_TESTCTRL_ASSERT SQLITE_TESTCTRL_ASSERT6805,328640 -#define SQLITE_TESTCTRL_ALWAYS SQLITE_TESTCTRL_ALWAYS6806,328691 -#define SQLITE_TESTCTRL_RESERVE SQLITE_TESTCTRL_RESERVE6807,328742 -#define SQLITE_TESTCTRL_OPTIMIZATIONS SQLITE_TESTCTRL_OPTIMIZATIONS6808,328793 -#define SQLITE_TESTCTRL_ISKEYWORD SQLITE_TESTCTRL_ISKEYWORD6809,328844 -#define SQLITE_TESTCTRL_SCRATCHMALLOC SQLITE_TESTCTRL_SCRATCHMALLOC6810,328895 -#define SQLITE_TESTCTRL_LOCALTIME_FAULT SQLITE_TESTCTRL_LOCALTIME_FAULT6811,328946 -#define SQLITE_TESTCTRL_EXPLAIN_STMT SQLITE_TESTCTRL_EXPLAIN_STMT6812,328997 -#define SQLITE_TESTCTRL_NEVER_CORRUPT SQLITE_TESTCTRL_NEVER_CORRUPT6813,329064 -#define SQLITE_TESTCTRL_VDBE_COVERAGE SQLITE_TESTCTRL_VDBE_COVERAGE6814,329115 -#define SQLITE_TESTCTRL_BYTEORDER SQLITE_TESTCTRL_BYTEORDER6815,329166 -#define SQLITE_TESTCTRL_ISINIT SQLITE_TESTCTRL_ISINIT6816,329217 -#define SQLITE_TESTCTRL_SORTER_MMAP SQLITE_TESTCTRL_SORTER_MMAP6817,329268 -#define SQLITE_TESTCTRL_IMPOSTER SQLITE_TESTCTRL_IMPOSTER6818,329319 -#define SQLITE_TESTCTRL_LAST SQLITE_TESTCTRL_LAST6819,329370 -#define SQLITE_STATUS_MEMORY_USED SQLITE_STATUS_MEMORY_USED6939,335217 -#define SQLITE_STATUS_PAGECACHE_USED SQLITE_STATUS_PAGECACHE_USED6940,335262 -#define SQLITE_STATUS_PAGECACHE_OVERFLOW SQLITE_STATUS_PAGECACHE_OVERFLOW6941,335307 -#define SQLITE_STATUS_SCRATCH_USED SQLITE_STATUS_SCRATCH_USED6942,335352 -#define SQLITE_STATUS_SCRATCH_OVERFLOW SQLITE_STATUS_SCRATCH_OVERFLOW6943,335397 -#define SQLITE_STATUS_MALLOC_SIZE SQLITE_STATUS_MALLOC_SIZE6944,335442 -#define SQLITE_STATUS_PARSER_STACK SQLITE_STATUS_PARSER_STACK6945,335487 -#define SQLITE_STATUS_PAGECACHE_SIZE SQLITE_STATUS_PAGECACHE_SIZE6946,335532 -#define SQLITE_STATUS_SCRATCH_SIZE SQLITE_STATUS_SCRATCH_SIZE6947,335577 -#define SQLITE_STATUS_MALLOC_COUNT SQLITE_STATUS_MALLOC_COUNT6948,335622 -#define SQLITE_DBSTATUS_LOOKASIDE_USED SQLITE_DBSTATUS_LOOKASIDE_USED7065,341109 -#define SQLITE_DBSTATUS_CACHE_USED SQLITE_DBSTATUS_CACHE_USED7066,341156 -#define SQLITE_DBSTATUS_SCHEMA_USED SQLITE_DBSTATUS_SCHEMA_USED7067,341203 -#define SQLITE_DBSTATUS_STMT_USED SQLITE_DBSTATUS_STMT_USED7068,341250 -#define SQLITE_DBSTATUS_LOOKASIDE_HIT SQLITE_DBSTATUS_LOOKASIDE_HIT7069,341297 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE7070,341344 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL7071,341391 -#define SQLITE_DBSTATUS_CACHE_HIT SQLITE_DBSTATUS_CACHE_HIT7072,341438 -#define SQLITE_DBSTATUS_CACHE_MISS SQLITE_DBSTATUS_CACHE_MISS7073,341485 -#define SQLITE_DBSTATUS_CACHE_WRITE SQLITE_DBSTATUS_CACHE_WRITE7074,341532 -#define SQLITE_DBSTATUS_DEFERRED_FKS SQLITE_DBSTATUS_DEFERRED_FKS7075,341579 -#define SQLITE_DBSTATUS_MAX SQLITE_DBSTATUS_MAX7076,341626 -#define SQLITE_STMTSTATUS_FULLSCAN_STEP SQLITE_STMTSTATUS_FULLSCAN_STEP7142,344684 -#define SQLITE_STMTSTATUS_SORT SQLITE_STMTSTATUS_SORT7143,344730 -#define SQLITE_STMTSTATUS_AUTOINDEX SQLITE_STMTSTATUS_AUTOINDEX7144,344776 -#define SQLITE_STMTSTATUS_VM_STEP SQLITE_STMTSTATUS_VM_STEP7145,344822 -typedef struct sqlite3_pcache sqlite3_pcache;sqlite3_pcache7158,345243 -typedef struct sqlite3_pcache_page sqlite3_pcache_page;sqlite3_pcache_page7170,345660 -struct sqlite3_pcache_page {sqlite3_pcache_page7171,345716 - void *pBuf; /* The content of the page */pBuf7172,345745 - void *pBuf; /* The content of the page */sqlite3_pcache_page::pBuf7172,345745 - void *pExtra; /* Extra information associated with the page */pExtra7173,345796 - void *pExtra; /* Extra information associated with the page */sqlite3_pcache_page::pExtra7173,345796 -typedef struct sqlite3_pcache_methods2 sqlite3_pcache_methods2;sqlite3_pcache_methods27335,354024 -struct sqlite3_pcache_methods2 {sqlite3_pcache_methods27336,354088 - int iVersion;iVersion7337,354121 - int iVersion;sqlite3_pcache_methods2::iVersion7337,354121 - void *pArg;pArg7338,354137 - void *pArg;sqlite3_pcache_methods2::pArg7338,354137 - int (*xInit)(void*);xInit7339,354151 - int (*xInit)(void*);sqlite3_pcache_methods2::xInit7339,354151 - void (*xShutdown)(void*);xShutdown7340,354174 - void (*xShutdown)(void*);sqlite3_pcache_methods2::xShutdown7340,354174 - sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);xCreate7341,354202 - sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);sqlite3_pcache_methods2::xCreate7341,354202 - void (*xCachesize)(sqlite3_pcache*, int nCachesize);xCachesize7342,354273 - void (*xCachesize)(sqlite3_pcache*, int nCachesize);sqlite3_pcache_methods2::xCachesize7342,354273 - int (*xPagecount)(sqlite3_pcache*);xPagecount7343,354328 - int (*xPagecount)(sqlite3_pcache*);sqlite3_pcache_methods2::xPagecount7343,354328 - sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);xFetch7344,354366 - sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);sqlite3_pcache_methods2::xFetch7344,354366 - void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard);xUnpin7345,354447 - void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard);sqlite3_pcache_methods2::xUnpin7345,354447 - void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*, xRekey7346,354517 - void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*, sqlite3_pcache_methods2::xRekey7346,354517 - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);xTruncate7348,354615 - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);sqlite3_pcache_methods2::xTruncate7348,354615 - void (*xDestroy)(sqlite3_pcache*);xDestroy7349,354670 - void (*xDestroy)(sqlite3_pcache*);sqlite3_pcache_methods2::xDestroy7349,354670 - void (*xShrink)(sqlite3_pcache*);xShrink7350,354707 - void (*xShrink)(sqlite3_pcache*);sqlite3_pcache_methods2::xShrink7350,354707 -typedef struct sqlite3_pcache_methods sqlite3_pcache_methods;sqlite3_pcache_methods7358,354965 -struct sqlite3_pcache_methods {sqlite3_pcache_methods7359,355027 - void *pArg;pArg7360,355059 - void *pArg;sqlite3_pcache_methods::pArg7360,355059 - int (*xInit)(void*);xInit7361,355073 - int (*xInit)(void*);sqlite3_pcache_methods::xInit7361,355073 - void (*xShutdown)(void*);xShutdown7362,355096 - void (*xShutdown)(void*);sqlite3_pcache_methods::xShutdown7362,355096 - sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);xCreate7363,355124 - sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);sqlite3_pcache_methods::xCreate7363,355124 - void (*xCachesize)(sqlite3_pcache*, int nCachesize);xCachesize7364,355182 - void (*xCachesize)(sqlite3_pcache*, int nCachesize);sqlite3_pcache_methods::xCachesize7364,355182 - int (*xPagecount)(sqlite3_pcache*);xPagecount7365,355237 - int (*xPagecount)(sqlite3_pcache*);sqlite3_pcache_methods::xPagecount7365,355237 - void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);xFetch7366,355275 - void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);sqlite3_pcache_methods::xFetch7366,355275 - void (*xUnpin)(sqlite3_pcache*, void*, int discard);xUnpin7367,355341 - void (*xUnpin)(sqlite3_pcache*, void*, int discard);sqlite3_pcache_methods::xUnpin7367,355341 - void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);xRekey7368,355396 - void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);sqlite3_pcache_methods::xRekey7368,355396 - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);xTruncate7369,355472 - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);sqlite3_pcache_methods::xTruncate7369,355472 - void (*xDestroy)(sqlite3_pcache*);xDestroy7370,355527 - void (*xDestroy)(sqlite3_pcache*);sqlite3_pcache_methods::xDestroy7370,355527 -typedef struct sqlite3_backup sqlite3_backup;sqlite3_backup7384,355904 -#define SQLITE_CHECKPOINT_PASSIVE SQLITE_CHECKPOINT_PASSIVE7981,386482 -#define SQLITE_CHECKPOINT_FULL SQLITE_CHECKPOINT_FULL7982,386562 -#define SQLITE_CHECKPOINT_RESTART SQLITE_CHECKPOINT_RESTART7983,386640 -#define SQLITE_CHECKPOINT_TRUNCATE SQLITE_CHECKPOINT_TRUNCATE7984,386719 -#define SQLITE_VTAB_CONSTRAINT_SUPPORT SQLITE_VTAB_CONSTRAINT_SUPPORT8041,389399 -#define SQLITE_ROLLBACK SQLITE_ROLLBACK8067,390444 -#define SQLITE_FAIL SQLITE_FAIL8069,390546 -#define SQLITE_REPLACE SQLITE_REPLACE8071,390624 -#define SQLITE_SCANSTAT_NLOOP SQLITE_SCANSTAT_NLOOP8120,392945 -#define SQLITE_SCANSTAT_NVISIT SQLITE_SCANSTAT_NVISIT8121,392980 -#define SQLITE_SCANSTAT_EST SQLITE_SCANSTAT_EST8122,393015 -#define SQLITE_SCANSTAT_NAME SQLITE_SCANSTAT_NAME8123,393050 -#define SQLITE_SCANSTAT_EXPLAIN SQLITE_SCANSTAT_EXPLAIN8124,393085 -#define SQLITE_SCANSTAT_SELECTID SQLITE_SCANSTAT_SELECTID8125,393120 -typedef struct sqlite3_snapshot sqlite3_snapshot;sqlite3_snapshot8342,403909 -# undef doubledouble8453,408476 -#define _SQLITE3RTREE_H__SQLITE3RTREE_H_8476,409025 -typedef struct sqlite3_rtree_geometry sqlite3_rtree_geometry;sqlite3_rtree_geometry8483,409079 -typedef struct sqlite3_rtree_query_info sqlite3_rtree_query_info;sqlite3_rtree_query_info8484,409141 - typedef sqlite3_int64 sqlite3_rtree_dbl;sqlite3_rtree_dbl8490,409348 - typedef double sqlite3_rtree_dbl;sqlite3_rtree_dbl8492,409397 -struct sqlite3_rtree_geometry {sqlite3_rtree_geometry8513,409978 - void *pContext; /* Copy of pContext passed to s_r_g_c() */pContext8514,410010 - void *pContext; /* Copy of pContext passed to s_r_g_c() */sqlite3_rtree_geometry::pContext8514,410010 - int nParam; /* Size of array aParam[] */nParam8515,410087 - int nParam; /* Size of array aParam[] */sqlite3_rtree_geometry::nParam8515,410087 - sqlite3_rtree_dbl *aParam; /* Parameters passed to SQL geom function */aParam8516,410150 - sqlite3_rtree_dbl *aParam; /* Parameters passed to SQL geom function */sqlite3_rtree_geometry::aParam8516,410150 - void *pUser; /* Callback implementation user data */pUser8517,410229 - void *pUser; /* Callback implementation user data */sqlite3_rtree_geometry::pUser8517,410229 - void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */xDelUser8518,410303 - void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */sqlite3_rtree_geometry::xDelUser8518,410303 -struct sqlite3_rtree_query_info {sqlite3_rtree_query_info8545,411125 - void *pContext; /* pContext from when function registered */pContext8546,411159 - void *pContext; /* pContext from when function registered */sqlite3_rtree_query_info::pContext8546,411159 - int nParam; /* Number of function parameters */nParam8547,411240 - int nParam; /* Number of function parameters */sqlite3_rtree_query_info::nParam8547,411240 - sqlite3_rtree_dbl *aParam; /* value of function parameters */aParam8548,411312 - sqlite3_rtree_dbl *aParam; /* value of function parameters */sqlite3_rtree_query_info::aParam8548,411312 - void *pUser; /* callback can use this, if desired */pUser8549,411383 - void *pUser; /* callback can use this, if desired */sqlite3_rtree_query_info::pUser8549,411383 - void (*xDelUser)(void*); /* function to free pUser */xDelUser8550,411459 - void (*xDelUser)(void*); /* function to free pUser */sqlite3_rtree_query_info::xDelUser8550,411459 - sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */aCoord8551,411524 - sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */sqlite3_rtree_query_info::aCoord8551,411524 - unsigned int *anQueue; /* Number of pending entries in the queue */anQueue8552,411604 - unsigned int *anQueue; /* Number of pending entries in the queue */sqlite3_rtree_query_info::anQueue8552,411604 - int nCoord; /* Number of coordinates */nCoord8553,411685 - int nCoord; /* Number of coordinates */sqlite3_rtree_query_info::nCoord8553,411685 - int iLevel; /* Level of current node or entry */iLevel8554,411749 - int iLevel; /* Level of current node or entry */sqlite3_rtree_query_info::iLevel8554,411749 - int mxLevel; /* The largest iLevel value in the tree */mxLevel8555,411822 - int mxLevel; /* The largest iLevel value in the tree */sqlite3_rtree_query_info::mxLevel8555,411822 - sqlite3_int64 iRowid; /* Rowid for current entry */iRowid8556,411901 - sqlite3_int64 iRowid; /* Rowid for current entry */sqlite3_rtree_query_info::iRowid8556,411901 - sqlite3_rtree_dbl rParentScore; /* Score of parent node */rParentScore8557,411967 - sqlite3_rtree_dbl rParentScore; /* Score of parent node */sqlite3_rtree_query_info::rParentScore8557,411967 - int eParentWithin; /* Visibility of parent node */eParentWithin8558,412030 - int eParentWithin; /* Visibility of parent node */sqlite3_rtree_query_info::eParentWithin8558,412030 - int eWithin; /* OUT: Visiblity */eWithin8559,412098 - int eWithin; /* OUT: Visiblity */sqlite3_rtree_query_info::eWithin8559,412098 - sqlite3_rtree_dbl rScore; /* OUT: Write the score here */rScore8560,412155 - sqlite3_rtree_dbl rScore; /* OUT: Write the score here */sqlite3_rtree_query_info::rScore8560,412155 - sqlite3_value **apSqlParam; /* Original SQL values of parameters */apSqlParam8562,412291 - sqlite3_value **apSqlParam; /* Original SQL values of parameters */sqlite3_rtree_query_info::apSqlParam8562,412291 -#define NOT_WITHIN NOT_WITHIN8568,412447 -#define PARTLY_WITHIN PARTLY_WITHIN8569,412524 -#define FULLY_WITHIN FULLY_WITHIN8570,412598 -#define __SQLITESESSION_H_ __SQLITESESSION_H_8583,412930 -typedef struct sqlite3_session sqlite3_session;sqlite3_session8596,413081 -typedef struct sqlite3_changeset_iter sqlite3_changeset_iter;sqlite3_changeset_iter8601,413175 -typedef struct sqlite3_changegroup sqlite3_changegroup;sqlite3_changegroup9311,445689 -#define SQLITE_CHANGESET_DATA SQLITE_CHANGESET_DATA9665,463201 -#define SQLITE_CHANGESET_NOTFOUND SQLITE_CHANGESET_NOTFOUND9666,463240 -#define SQLITE_CHANGESET_CONFLICT SQLITE_CHANGESET_CONFLICT9667,463279 -#define SQLITE_CHANGESET_CONSTRAINT SQLITE_CHANGESET_CONSTRAINT9668,463318 -#define SQLITE_CHANGESET_FOREIGN_KEY SQLITE_CHANGESET_FOREIGN_KEY9669,463357 -#define SQLITE_CHANGESET_OMIT SQLITE_CHANGESET_OMIT9702,464794 -#define SQLITE_CHANGESET_REPLACE SQLITE_CHANGESET_REPLACE9703,464832 -#define SQLITE_CHANGESET_ABORT SQLITE_CHANGESET_ABORT9704,464870 -#define _FTS5_H_FTS5_H9881,471810 -typedef struct Fts5ExtensionApi Fts5ExtensionApi;Fts5ExtensionApi9895,472089 -typedef struct Fts5Context Fts5Context;Fts5Context9896,472139 -typedef struct Fts5PhraseIter Fts5PhraseIter;Fts5PhraseIter9897,472179 -typedef void (*fts5_extension_function)(fts5_extension_function9899,472226 -struct Fts5PhraseIter {Fts5PhraseIter9907,472639 - const unsigned char *a;a9908,472663 - const unsigned char *a;Fts5PhraseIter::a9908,472663 - const unsigned char *b;b9909,472689 - const unsigned char *b;Fts5PhraseIter::b9909,472689 -struct Fts5ExtensionApi {Fts5ExtensionApi10127,482350 - int iVersion; /* Currently always set to 3 */iVersion10128,482376 - int iVersion; /* Currently always set to 3 */Fts5ExtensionApi::iVersion10128,482376 - void *(*xUserData)(Fts5Context*);xUserData10130,482443 - void *(*xUserData)(Fts5Context*);Fts5ExtensionApi::xUserData10130,482443 - int (*xColumnCount)(Fts5Context*);xColumnCount10132,482480 - int (*xColumnCount)(Fts5Context*);Fts5ExtensionApi::xColumnCount10132,482480 - int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);xRowCount10133,482517 - int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);Fts5ExtensionApi::xRowCount10133,482517 - int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken);xColumnTotalSize10134,482573 - int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken);Fts5ExtensionApi::xColumnTotalSize10134,482573 - int (*xTokenize)(Fts5Context*, xTokenize10136,482649 - int (*xTokenize)(Fts5Context*, Fts5ExtensionApi::xTokenize10136,482649 - int (*xPhraseCount)(Fts5Context*);xPhraseCount10142,482892 - int (*xPhraseCount)(Fts5Context*);Fts5ExtensionApi::xPhraseCount10142,482892 - int (*xPhraseSize)(Fts5Context*, int iPhrase);xPhraseSize10143,482929 - int (*xPhraseSize)(Fts5Context*, int iPhrase);Fts5ExtensionApi::xPhraseSize10143,482929 - int (*xInstCount)(Fts5Context*, int *pnInst);xInstCount10145,482979 - int (*xInstCount)(Fts5Context*, int *pnInst);Fts5ExtensionApi::xInstCount10145,482979 - int (*xInst)(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff);xInst10146,483027 - int (*xInst)(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff);Fts5ExtensionApi::xInst10146,483027 - sqlite3_int64 (*xRowid)(Fts5Context*);xRowid10148,483107 - sqlite3_int64 (*xRowid)(Fts5Context*);Fts5ExtensionApi::xRowid10148,483107 - int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);xColumnText10149,483148 - int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);Fts5ExtensionApi::xColumnText10149,483148 - int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken);xColumnSize10150,483220 - int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken);Fts5ExtensionApi::xColumnSize10150,483220 - int (*xQueryPhrase)(Fts5Context*, int iPhrase, void *pUserData,xQueryPhrase10152,483281 - int (*xQueryPhrase)(Fts5Context*, int iPhrase, void *pUserData,Fts5ExtensionApi::xQueryPhrase10152,483281 - int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*));xSetAuxdata10155,483407 - int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*));Fts5ExtensionApi::xSetAuxdata10155,483407 - void *(*xGetAuxdata)(Fts5Context*, int bClear);xGetAuxdata10156,483478 - void *(*xGetAuxdata)(Fts5Context*, int bClear);Fts5ExtensionApi::xGetAuxdata10156,483478 - int (*xPhraseFirst)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*);xPhraseFirst10158,483529 - int (*xPhraseFirst)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*);Fts5ExtensionApi::xPhraseFirst10158,483529 - void (*xPhraseNext)(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff);xPhraseNext10159,483608 - void (*xPhraseNext)(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff);Fts5ExtensionApi::xPhraseNext10159,483608 - int (*xPhraseFirstColumn)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*);xPhraseFirstColumn10161,483687 - int (*xPhraseFirstColumn)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*);Fts5ExtensionApi::xPhraseFirstColumn10161,483687 - void (*xPhraseNextColumn)(Fts5Context*, Fts5PhraseIter*, int *piCol);xPhraseNextColumn10162,483766 - void (*xPhraseNextColumn)(Fts5Context*, Fts5PhraseIter*, int *piCol);Fts5ExtensionApi::xPhraseNextColumn10162,483766 -typedef struct Fts5Tokenizer Fts5Tokenizer;Fts5Tokenizer10361,494066 -typedef struct fts5_tokenizer fts5_tokenizer;fts5_tokenizer10362,494110 -struct fts5_tokenizer {fts5_tokenizer10363,494156 - int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut);xCreate10364,494180 - int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut);fts5_tokenizer::xCreate10364,494180 - void (*xDelete)(Fts5Tokenizer*);xDelete10365,494258 - void (*xDelete)(Fts5Tokenizer*);fts5_tokenizer::xDelete10365,494258 - int (*xTokenize)(Fts5Tokenizer*, xTokenize10366,494293 - int (*xTokenize)(Fts5Tokenizer*, fts5_tokenizer::xTokenize10366,494293 -#define FTS5_TOKENIZE_QUERY FTS5_TOKENIZE_QUERY10382,494964 -#define FTS5_TOKENIZE_PREFIX FTS5_TOKENIZE_PREFIX10383,495003 -#define FTS5_TOKENIZE_DOCUMENT FTS5_TOKENIZE_DOCUMENT10384,495042 -#define FTS5_TOKENIZE_AUX FTS5_TOKENIZE_AUX10385,495081 -#define FTS5_TOKEN_COLOCATED FTS5_TOKEN_COLOCATED10389,495255 -typedef struct fts5_api fts5_api;fts5_api10398,495555 -struct fts5_api {fts5_api10399,495589 - int iVersion; /* Currently always set to 2 */iVersion10400,495607 - int iVersion; /* Currently always set to 2 */fts5_api::iVersion10400,495607 - int (*xCreateTokenizer)(xCreateTokenizer10403,495705 - int (*xCreateTokenizer)(fts5_api::xCreateTokenizer10403,495705 - int (*xFindTokenizer)(xFindTokenizer10412,495896 - int (*xFindTokenizer)(fts5_api::xFindTokenizer10412,495896 - int (*xCreateFunction)(xCreateFunction10420,496063 - int (*xCreateFunction)(fts5_api::xCreateFunction10420,496063 -# define SQLITE_MAX_LENGTH SQLITE_MAX_LENGTH10478,497621 -# define SQLITE_MAX_COLUMN SQLITE_MAX_COLUMN10499,498387 -# define SQLITE_MAX_SQL_LENGTH SQLITE_MAX_SQL_LENGTH10510,498683 -# define SQLITE_MAX_EXPR_DEPTH SQLITE_MAX_EXPR_DEPTH10524,499123 -# define SQLITE_MAX_COMPOUND_SELECT SQLITE_MAX_COMPOUND_SELECT10536,499586 -# define SQLITE_MAX_VDBE_OP SQLITE_MAX_VDBE_OP10544,499746 -# define SQLITE_MAX_FUNCTION_ARG SQLITE_MAX_FUNCTION_ARG10551,499881 -# define SQLITE_DEFAULT_CACHE_SIZE SQLITE_DEFAULT_CACHE_SIZE10564,500377 -# define SQLITE_DEFAULT_WAL_AUTOCHECKPOINT SQLITE_DEFAULT_WAL_AUTOCHECKPOINT10572,500587 -# define SQLITE_MAX_ATTACHED SQLITE_MAX_ATTACHED10582,500970 -# define SQLITE_MAX_VARIABLE_NUMBER SQLITE_MAX_VARIABLE_NUMBER10590,501121 -# undef SQLITE_MAX_PAGE_SIZESQLITE_MAX_PAGE_SIZE10605,501845 -#define SQLITE_MAX_PAGE_SIZE SQLITE_MAX_PAGE_SIZE10607,501881 -# define SQLITE_DEFAULT_PAGE_SIZE SQLITE_DEFAULT_PAGE_SIZE10614,501997 -# undef SQLITE_DEFAULT_PAGE_SIZESQLITE_DEFAULT_PAGE_SIZE10617,502093 -# define SQLITE_DEFAULT_PAGE_SIZE SQLITE_DEFAULT_PAGE_SIZE10618,502126 -# define SQLITE_MAX_DEFAULT_PAGE_SIZE SQLITE_MAX_DEFAULT_PAGE_SIZE10629,502552 -# undef SQLITE_MAX_DEFAULT_PAGE_SIZESQLITE_MAX_DEFAULT_PAGE_SIZE10632,502656 -# define SQLITE_MAX_DEFAULT_PAGE_SIZE SQLITE_MAX_DEFAULT_PAGE_SIZE10633,502693 -# define SQLITE_MAX_PAGE_COUNT SQLITE_MAX_PAGE_COUNT10645,503014 -# define SQLITE_MAX_LIKE_PATTERN_LENGTH SQLITE_MAX_LIKE_PATTERN_LENGTH10653,503184 -# define SQLITE_MAX_TRIGGER_DEPTH SQLITE_MAX_TRIGGER_DEPTH10664,503490 -# define SQLITE_INT_TO_PTR(SQLITE_INT_TO_PTR10706,505021 -# define SQLITE_PTR_TO_INT(SQLITE_PTR_TO_INT10707,505083 -# define SQLITE_INT_TO_PTR(SQLITE_INT_TO_PTR10709,505216 -# define SQLITE_PTR_TO_INT(SQLITE_PTR_TO_INT10710,505271 -# define SQLITE_INT_TO_PTR(SQLITE_INT_TO_PTR10712,505406 -# define SQLITE_PTR_TO_INT(SQLITE_PTR_TO_INT10713,505460 -# define SQLITE_INT_TO_PTR(SQLITE_INT_TO_PTR10715,505591 -# define SQLITE_PTR_TO_INT(SQLITE_PTR_TO_INT10716,505635 -# define SQLITE_NOINLINE SQLITE_NOINLINE10724,505790 -# define SQLITE_NOINLINE SQLITE_NOINLINE10726,505885 -# define SQLITE_NOINLINESQLITE_NOINLINE10728,505939 -# define SQLITE_THREADSAFE SQLITE_THREADSAFE10762,507035 -# define SQLITE_THREADSAFE SQLITE_THREADSAFE10764,507082 -# define SQLITE_POWERSAFE_OVERWRITE SQLITE_POWERSAFE_OVERWRITE10773,507324 -# define SQLITE_DEFAULT_MEMSTATUS SQLITE_DEFAULT_MEMSTATUS10782,507629 -# define SQLITE_SYSTEM_MALLOC SQLITE_SYSTEM_MALLOC10815,508924 -# define SQLITE_MALLOC_SOFT_LIMIT SQLITE_MALLOC_SOFT_LIMIT10823,509138 -# define _XOPEN_SOURCE _XOPEN_SOURCE10833,509471 -# define NDEBUG NDEBUG10848,510053 -# undef NDEBUGNDEBUG10851,510123 -# define SQLITE_ENABLE_EXPLAIN_COMMENTS SQLITE_ENABLE_EXPLAIN_COMMENTS10858,510293 -# define testcase(testcase10877,511113 -# define testcase(testcase10879,511179 -# define TESTONLY(TESTONLY10888,511439 -# define TESTONLY(TESTONLY10890,511469 -# define VVA_ONLY(VVA_ONLY10902,511949 -# define VVA_ONLY(VVA_ONLY10904,511979 -# define ALWAYS(ALWAYS10923,512758 -# define NEVER(NEVER10924,512786 -# define ALWAYS(ALWAYS10926,512837 -# define NEVER(NEVER10927,512883 -# define ALWAYS(ALWAYS10929,512935 -# define NEVER(NEVER10930,512963 -# define ONLY_IF_REALLOC_STRESS(ONLY_IF_REALLOC_STRESS10941,513414 -# define ONLY_IF_REALLOC_STRESS(ONLY_IF_REALLOC_STRESS10943,513477 -# define ONLY_IF_REALLOC_STRESS(ONLY_IF_REALLOC_STRESS10945,513541 -# define OSTRACE(OSTRACE10954,513799 -# define SQLITE_HAVE_OS_TRACESQLITE_HAVE_OS_TRACE10955,513870 -# define OSTRACE(OSTRACE10957,513906 -# undef SQLITE_HAVE_OS_TRACESQLITE_HAVE_OS_TRACE10958,513926 -# define SQLITE_NEED_ERR_NAMESQLITE_NEED_ERR_NAME10969,514313 -# undef SQLITE_NEED_ERR_NAMESQLITE_NEED_ERR_NAME10971,514349 -# undef SQLITE_ENABLE_EXPLAIN_COMMENTSSQLITE_ENABLE_EXPLAIN_COMMENTS10978,514495 -#define IS_BIG_INT(IS_BIG_INT10986,514761 -#define likely(likely10995,515129 -#define unlikely(unlikely10996,515154 -#define _SQLITE_HASH_H__SQLITE_HASH_H_11015,515830 -typedef struct Hash Hash;Hash11018,515897 -typedef struct HashElem HashElem;HashElem11019,515923 -struct Hash {Hash11042,517038 - unsigned int htsize; /* Number of buckets in the hash table */htsize11043,517052 - unsigned int htsize; /* Number of buckets in the hash table */Hash::htsize11043,517052 - unsigned int count; /* Number of entries in this table */count11044,517122 - unsigned int count; /* Number of entries in this table */Hash::count11044,517122 - HashElem *first; /* The first element of the array */first11045,517188 - HashElem *first; /* The first element of the array */Hash::first11045,517188 - struct _ht { /* the hash table */_ht11046,517253 - struct _ht { /* the hash table */Hash::_ht11046,517253 - int count; /* Number of entries with this hash */count11047,517302 - int count; /* Number of entries with this hash */Hash::_ht::count11047,517302 - HashElem *chain; /* Pointer to first entry with this hash */chain11048,517372 - HashElem *chain; /* Pointer to first entry with this hash */Hash::_ht::chain11048,517372 - } *ht;ht11049,517447 - } *ht;Hash::ht11049,517447 -struct HashElem {HashElem11058,517718 - HashElem *next, *prev; /* Next and previous elements in the table */next11059,517736 - HashElem *next, *prev; /* Next and previous elements in the table */HashElem::next11059,517736 - HashElem *next, *prev; /* Next and previous elements in the table */prev11059,517736 - HashElem *next, *prev; /* Next and previous elements in the table */HashElem::prev11059,517736 - void *data; /* Data associated with this element */data11060,517813 - void *data; /* Data associated with this element */HashElem::data11060,517813 - const char *pKey; /* Key associated with this element */pKey11061,517884 - const char *pKey; /* Key associated with this element */HashElem::pKey11061,517884 -#define sqliteHashFirst(sqliteHashFirst11084,518537 -#define sqliteHashNext(sqliteHashNext11085,518578 -#define sqliteHashData(sqliteHashData11086,518618 -#define TK_SEMI TK_SEMI11101,519230 -#define TK_EXPLAIN TK_EXPLAIN11102,519276 -#define TK_QUERY TK_QUERY11103,519322 -#define TK_PLAN TK_PLAN11104,519368 -#define TK_BEGIN TK_BEGIN11105,519414 -#define TK_TRANSACTION TK_TRANSACTION11106,519460 -#define TK_DEFERRED TK_DEFERRED11107,519506 -#define TK_IMMEDIATE TK_IMMEDIATE11108,519552 -#define TK_EXCLUSIVE TK_EXCLUSIVE11109,519598 -#define TK_COMMIT TK_COMMIT11110,519644 -#define TK_END TK_END11111,519690 -#define TK_ROLLBACK TK_ROLLBACK11112,519736 -#define TK_SAVEPOINT TK_SAVEPOINT11113,519782 -#define TK_RELEASE TK_RELEASE11114,519828 -#define TK_TO TK_TO11115,519874 -#define TK_TABLE TK_TABLE11116,519920 -#define TK_CREATE TK_CREATE11117,519966 -#define TK_IF TK_IF11118,520012 -#define TK_NOT TK_NOT11119,520058 -#define TK_EXISTS TK_EXISTS11120,520104 -#define TK_TEMP TK_TEMP11121,520150 -#define TK_LP TK_LP11122,520196 -#define TK_RP TK_RP11123,520242 -#define TK_AS TK_AS11124,520288 -#define TK_WITHOUT TK_WITHOUT11125,520334 -#define TK_COMMA TK_COMMA11126,520380 -#define TK_OR TK_OR11127,520426 -#define TK_AND TK_AND11128,520472 -#define TK_IS TK_IS11129,520518 -#define TK_MATCH TK_MATCH11130,520564 -#define TK_LIKE_KW TK_LIKE_KW11131,520610 -#define TK_BETWEEN TK_BETWEEN11132,520656 -#define TK_IN TK_IN11133,520702 -#define TK_ISNULL TK_ISNULL11134,520748 -#define TK_NOTNULL TK_NOTNULL11135,520794 -#define TK_NE TK_NE11136,520840 -#define TK_EQ TK_EQ11137,520886 -#define TK_GT TK_GT11138,520932 -#define TK_LE TK_LE11139,520978 -#define TK_LT TK_LT11140,521024 -#define TK_GE TK_GE11141,521070 -#define TK_ESCAPE TK_ESCAPE11142,521116 -#define TK_BITAND TK_BITAND11143,521162 -#define TK_BITOR TK_BITOR11144,521208 -#define TK_LSHIFT TK_LSHIFT11145,521254 -#define TK_RSHIFT TK_RSHIFT11146,521300 -#define TK_PLUS TK_PLUS11147,521346 -#define TK_MINUS TK_MINUS11148,521392 -#define TK_STAR TK_STAR11149,521438 -#define TK_SLASH TK_SLASH11150,521484 -#define TK_REM TK_REM11151,521530 -#define TK_CONCAT TK_CONCAT11152,521576 -#define TK_COLLATE TK_COLLATE11153,521622 -#define TK_BITNOT TK_BITNOT11154,521668 -#define TK_ID TK_ID11155,521714 -#define TK_INDEXED TK_INDEXED11156,521760 -#define TK_ABORT TK_ABORT11157,521806 -#define TK_ACTION TK_ACTION11158,521852 -#define TK_AFTER TK_AFTER11159,521898 -#define TK_ANALYZE TK_ANALYZE11160,521944 -#define TK_ASC TK_ASC11161,521990 -#define TK_ATTACH TK_ATTACH11162,522036 -#define TK_BEFORE TK_BEFORE11163,522082 -#define TK_BY TK_BY11164,522128 -#define TK_CASCADE TK_CASCADE11165,522174 -#define TK_CAST TK_CAST11166,522220 -#define TK_COLUMNKW TK_COLUMNKW11167,522266 -#define TK_CONFLICT TK_CONFLICT11168,522312 -#define TK_DATABASE TK_DATABASE11169,522358 -#define TK_DESC TK_DESC11170,522404 -#define TK_DETACH TK_DETACH11171,522450 -#define TK_EACH TK_EACH11172,522496 -#define TK_FAIL TK_FAIL11173,522542 -#define TK_FOR TK_FOR11174,522588 -#define TK_IGNORE TK_IGNORE11175,522634 -#define TK_INITIALLY TK_INITIALLY11176,522680 -#define TK_INSTEAD TK_INSTEAD11177,522726 -#define TK_NO TK_NO11178,522772 -#define TK_KEY TK_KEY11179,522818 -#define TK_OF TK_OF11180,522864 -#define TK_OFFSET TK_OFFSET11181,522910 -#define TK_PRAGMA TK_PRAGMA11182,522956 -#define TK_RAISE TK_RAISE11183,523002 -#define TK_RECURSIVE TK_RECURSIVE11184,523048 -#define TK_REPLACE TK_REPLACE11185,523094 -#define TK_RESTRICT TK_RESTRICT11186,523140 -#define TK_ROW TK_ROW11187,523186 -#define TK_TRIGGER TK_TRIGGER11188,523232 -#define TK_VACUUM TK_VACUUM11189,523278 -#define TK_VIEW TK_VIEW11190,523324 -#define TK_VIRTUAL TK_VIRTUAL11191,523370 -#define TK_WITH TK_WITH11192,523416 -#define TK_REINDEX TK_REINDEX11193,523462 -#define TK_RENAME TK_RENAME11194,523508 -#define TK_CTIME_KW TK_CTIME_KW11195,523554 -#define TK_ANY TK_ANY11196,523600 -#define TK_STRING TK_STRING11197,523646 -#define TK_JOIN_KW TK_JOIN_KW11198,523692 -#define TK_CONSTRAINT TK_CONSTRAINT11199,523738 -#define TK_DEFAULT TK_DEFAULT11200,523784 -#define TK_NULL TK_NULL11201,523830 -#define TK_PRIMARY TK_PRIMARY11202,523876 -#define TK_UNIQUE TK_UNIQUE11203,523922 -#define TK_CHECK TK_CHECK11204,523968 -#define TK_REFERENCES TK_REFERENCES11205,524014 -#define TK_AUTOINCR TK_AUTOINCR11206,524060 -#define TK_ON TK_ON11207,524106 -#define TK_INSERT TK_INSERT11208,524152 -#define TK_DELETE TK_DELETE11209,524198 -#define TK_UPDATE TK_UPDATE11210,524244 -#define TK_SET TK_SET11211,524290 -#define TK_DEFERRABLE TK_DEFERRABLE11212,524336 -#define TK_FOREIGN TK_FOREIGN11213,524382 -#define TK_DROP TK_DROP11214,524428 -#define TK_UNION TK_UNION11215,524474 -#define TK_ALL TK_ALL11216,524520 -#define TK_EXCEPT TK_EXCEPT11217,524566 -#define TK_INTERSECT TK_INTERSECT11218,524612 -#define TK_SELECT TK_SELECT11219,524658 -#define TK_VALUES TK_VALUES11220,524704 -#define TK_DISTINCT TK_DISTINCT11221,524750 -#define TK_DOT TK_DOT11222,524796 -#define TK_FROM TK_FROM11223,524842 -#define TK_JOIN TK_JOIN11224,524888 -#define TK_USING TK_USING11225,524934 -#define TK_ORDER TK_ORDER11226,524980 -#define TK_GROUP TK_GROUP11227,525026 -#define TK_HAVING TK_HAVING11228,525072 -#define TK_LIMIT TK_LIMIT11229,525118 -#define TK_WHERE TK_WHERE11230,525164 -#define TK_INTO TK_INTO11231,525210 -#define TK_INTEGER TK_INTEGER11232,525256 -#define TK_FLOAT TK_FLOAT11233,525302 -#define TK_BLOB TK_BLOB11234,525348 -#define TK_VARIABLE TK_VARIABLE11235,525394 -#define TK_CASE TK_CASE11236,525440 -#define TK_WHEN TK_WHEN11237,525486 -#define TK_THEN TK_THEN11238,525532 -#define TK_ELSE TK_ELSE11239,525578 -#define TK_INDEX TK_INDEX11240,525624 -#define TK_ALTER TK_ALTER11241,525670 -#define TK_ADD TK_ADD11242,525716 -#define TK_TO_TEXT TK_TO_TEXT11243,525762 -#define TK_TO_BLOB TK_TO_BLOB11244,525808 -#define TK_TO_NUMERIC TK_TO_NUMERIC11245,525854 -#define TK_TO_INT TK_TO_INT11246,525900 -#define TK_TO_REAL TK_TO_REAL11247,525946 -#define TK_ISNOT TK_ISNOT11248,525992 -#define TK_END_OF_FILE TK_END_OF_FILE11249,526038 -#define TK_UNCLOSED_STRING TK_UNCLOSED_STRING11250,526084 -#define TK_FUNCTION TK_FUNCTION11251,526130 -#define TK_COLUMN TK_COLUMN11252,526176 -#define TK_AGG_FUNCTION TK_AGG_FUNCTION11253,526222 -#define TK_AGG_COLUMN TK_AGG_COLUMN11254,526268 -#define TK_UMINUS TK_UMINUS11255,526314 -#define TK_UPLUS TK_UPLUS11256,526360 -#define TK_REGISTER TK_REGISTER11257,526406 -#define TK_ASTERISK TK_ASTERISK11258,526452 -#define TK_SPAN TK_SPAN11259,526498 -#define TK_SPACE TK_SPACE11260,526544 -#define TK_ILLEGAL TK_ILLEGAL11261,526590 -#define TKFLG_MASK TKFLG_MASK11264,526688 -#define TKFLG_DONTFOLD TKFLG_DONTFOLD11268,526811 -# define double double11283,527298 -# define float float11284,527327 -# define LONGDOUBLE_TYPE LONGDOUBLE_TYPE11285,527355 -# define SQLITE_BIG_DBL SQLITE_BIG_DBL11287,527417 -# define SQLITE_OMIT_DATETIME_FUNCS SQLITE_OMIT_DATETIME_FUNCS11289,527476 -# define SQLITE_OMIT_TRACE SQLITE_OMIT_TRACE11290,527514 -# undef SQLITE_MIXED_ENDIAN_64BIT_FLOATSQLITE_MIXED_ENDIAN_64BIT_FLOAT11291,527543 -# undef SQLITE_HAVE_ISNANSQLITE_HAVE_ISNAN11292,527583 -# define SQLITE_BIG_DBL SQLITE_BIG_DBL11295,527639 -#define OMIT_TEMPDB OMIT_TEMPDB11304,527912 -#define OMIT_TEMPDB OMIT_TEMPDB11306,527940 -#define SQLITE_MAX_FILE_FORMAT SQLITE_MAX_FILE_FORMAT11315,528222 -# define SQLITE_DEFAULT_FILE_FORMAT SQLITE_DEFAULT_FILE_FORMAT11317,528290 -# define SQLITE_DEFAULT_RECURSIVE_TRIGGERS SQLITE_DEFAULT_RECURSIVE_TRIGGERS11325,528492 -# define SQLITE_TEMP_STORE SQLITE_TEMP_STORE11333,528677 -# define SQLITE_TEMP_STORE_xc SQLITE_TEMP_STORE_xc11334,528706 -# undef SQLITE_MAX_WORKER_THREADSSQLITE_MAX_WORKER_THREADS11343,528980 -# define SQLITE_MAX_WORKER_THREADS SQLITE_MAX_WORKER_THREADS11344,529014 -# define SQLITE_MAX_WORKER_THREADS SQLITE_MAX_WORKER_THREADS11347,529092 -# define SQLITE_DEFAULT_WORKER_THREADS SQLITE_DEFAULT_WORKER_THREADS11350,529174 -# undef SQLITE_MAX_WORKER_THREADSSQLITE_MAX_WORKER_THREADS11353,529282 -# define SQLITE_MAX_WORKER_THREADS SQLITE_MAX_WORKER_THREADS11354,529316 -# define SQLITE_DEFAULT_PCACHE_INITSZ SQLITE_DEFAULT_PCACHE_INITSZ11364,529725 -#define offsetof(offsetof11372,529879 -# define MIN(MIN11379,530036 -# define MAX(MAX11382,530091 -#define SWAP(SWAP11388,530175 -# define SQLITE_EBCDIC SQLITE_EBCDIC11395,530372 -# define SQLITE_ASCII SQLITE_ASCII11397,530403 -# define UINT32_TYPE UINT32_TYPE11409,530750 -# define UINT32_TYPE UINT32_TYPE11411,530788 -# define UINT16_TYPE UINT16_TYPE11416,530880 -# define UINT16_TYPE UINT16_TYPE11418,530918 -# define INT16_TYPE INT16_TYPE11423,531014 -# define INT16_TYPE INT16_TYPE11425,531050 -# define UINT8_TYPE UINT8_TYPE11430,531136 -# define UINT8_TYPE UINT8_TYPE11432,531172 -# define INT8_TYPE INT8_TYPE11437,531260 -# define INT8_TYPE INT8_TYPE11439,531294 -# define LONGDOUBLE_TYPE LONGDOUBLE_TYPE11443,531365 -typedef sqlite_int64 i64; /* 8-byte signed integer */i6411445,531409 -typedef sqlite_uint64 u64; /* 8-byte unsigned integer */u6411446,531472 -typedef UINT32_TYPE u32; /* 4-byte unsigned integer */u3211447,531537 -typedef UINT16_TYPE u16; /* 2-byte unsigned integer */u1611448,531602 -typedef INT16_TYPE i16; /* 2-byte signed integer */i1611449,531667 -typedef UINT8_TYPE u8; /* 1-byte unsigned integer */u811450,531730 -typedef INT8_TYPE i8; /* 1-byte signed integer */i811451,531795 -#define SQLITE_MAX_U32 SQLITE_MAX_U3211459,532131 - typedef u64 tRowcnt; /* 64-bit only if requested at compile-time */tRowcnt11468,532453 - typedef u32 tRowcnt; /* 32-bit is the default */tRowcnt11470,532531 -typedef INT16_TYPE LogEst;LogEst11496,533585 -# define SQLITE_PTRSIZE SQLITE_PTRSIZE11503,533743 -# define SQLITE_PTRSIZE SQLITE_PTRSIZE11506,533930 -# define SQLITE_PTRSIZE SQLITE_PTRSIZE11508,533965 - typedef uintptr_t uptr;uptr11515,534110 - typedef u32 uptr;uptr11517,534160 - typedef u64 uptr;uptr11519,534186 -#define SQLITE_WITHIN(SQLITE_WITHIN11530,534532 -# define SQLITE_BYTEORDER SQLITE_BYTEORDER11546,535262 -# define SQLITE_BIGENDIAN SQLITE_BIGENDIAN11547,535296 -# define SQLITE_LITTLEENDIAN SQLITE_LITTLEENDIAN11548,535327 -# define SQLITE_UTF16NATIVE SQLITE_UTF16NATIVE11549,535358 -# define SQLITE_BYTEORDER SQLITE_BYTEORDER11553,535498 -# define SQLITE_BIGENDIAN SQLITE_BIGENDIAN11554,535532 -# define SQLITE_LITTLEENDIAN SQLITE_LITTLEENDIAN11555,535563 -# define SQLITE_UTF16NATIVE SQLITE_UTF16NATIVE11556,535594 - const int sqlite3one = 1;sqlite3one11560,535704 -# define SQLITE_BYTEORDER SQLITE_BYTEORDER11564,535778 -# define SQLITE_BIGENDIAN SQLITE_BIGENDIAN11565,535853 -# define SQLITE_LITTLEENDIAN SQLITE_LITTLEENDIAN11566,535910 -# define SQLITE_UTF16NATIVE SQLITE_UTF16NATIVE11567,535967 -#define LARGEST_INT64 LARGEST_INT6411575,536221 -#define SMALLEST_INT64 SMALLEST_INT6411576,536281 -#define ROUND8(ROUND811582,536462 -#define ROUNDDOWN8(ROUNDDOWN811587,536547 -# define EIGHT_BYTE_ALIGNMENT(EIGHT_BYTE_ALIGNMENT11599,536990 -# define EIGHT_BYTE_ALIGNMENT(EIGHT_BYTE_ALIGNMENT11601,537064 -# undef SQLITE_MAX_MMAP_SIZESQLITE_MAX_MMAP_SIZE11608,537253 -# define SQLITE_MAX_MMAP_SIZE SQLITE_MAX_MMAP_SIZE11609,537282 -# define SQLITE_MAX_MMAP_SIZE SQLITE_MAX_MMAP_SIZE11625,537661 -# define SQLITE_MAX_MMAP_SIZE SQLITE_MAX_MMAP_SIZE11627,537729 -# define SQLITE_MAX_MMAP_SIZE_xc SQLITE_MAX_MMAP_SIZE_xc11629,537771 -# define SQLITE_DEFAULT_MMAP_SIZE SQLITE_DEFAULT_MMAP_SIZE11638,538064 -# define SQLITE_DEFAULT_MMAP_SIZE_xc SQLITE_DEFAULT_MMAP_SIZE_xc11639,538100 -# undef SQLITE_DEFAULT_MMAP_SIZESQLITE_DEFAULT_MMAP_SIZE11642,538224 -# define SQLITE_DEFAULT_MMAP_SIZE SQLITE_DEFAULT_MMAP_SIZE11643,538257 -# undef SQLITE_ENABLE_STAT3SQLITE_ENABLE_STAT311652,538540 -# define SQLITE_ENABLE_STAT3_OR_STAT4 SQLITE_ENABLE_STAT3_OR_STAT411653,538568 -# define SQLITE_ENABLE_STAT3_OR_STAT4 SQLITE_ENABLE_STAT3_OR_STAT411655,538634 -# undef SQLITE_ENABLE_STAT3_OR_STAT4SQLITE_ENABLE_STAT3_OR_STAT411657,538709 -# define SELECTTRACE_ENABLED SELECTTRACE_ENABLED11665,538955 -# define SELECTTRACE_ENABLED SELECTTRACE_ENABLED11667,538992 -typedef struct BusyHandler BusyHandler;BusyHandler11679,539426 -struct BusyHandler {BusyHandler11680,539466 - int (*xFunc)(void *,int); /* The busy callback */xFunc11681,539487 - int (*xFunc)(void *,int); /* The busy callback */BusyHandler::xFunc11681,539487 - void *pArg; /* First arg to busy callback */pArg11682,539540 - void *pArg; /* First arg to busy callback */BusyHandler::pArg11682,539540 - int nBusy; /* Incremented with each busy call */nBusy11683,539602 - int nBusy; /* Incremented with each busy call */BusyHandler::nBusy11683,539602 -#define MASTER_NAME MASTER_NAME11691,539837 -#define TEMP_MASTER_NAME TEMP_MASTER_NAME11692,539879 -#define MASTER_ROOT MASTER_ROOT11697,539980 -#define SCHEMA_TABLE(SCHEMA_TABLE11702,540048 -#define ArraySize(ArraySize11708,540209 -#define IsPowerOfTwo(IsPowerOfTwo11713,540319 -#define SQLITE_DYNAMIC SQLITE_DYNAMIC11723,540746 - #define SQLITE_WSD SQLITE_WSD11740,541622 - #define GLOBAL(GLOBAL11741,541649 - #define sqlite3GlobalConfig sqlite3GlobalConfig11742,541719 - #define SQLITE_WSDSQLITE_WSD11746,541927 - #define GLOBAL(GLOBAL11747,541948 - #define sqlite3GlobalConfig sqlite3GlobalConfig11748,541972 -#define UNUSED_PARAMETER(UNUSED_PARAMETER11767,542950 -#define UNUSED_PARAMETER2(UNUSED_PARAMETER211768,542988 -typedef struct AggInfo AggInfo;AggInfo11773,543102 -typedef struct AuthContext AuthContext;AuthContext11774,543134 -typedef struct AutoincInfo AutoincInfo;AutoincInfo11775,543174 -typedef struct Bitvec Bitvec;Bitvec11776,543214 -typedef struct CollSeq CollSeq;CollSeq11777,543244 -typedef struct Column Column;Column11778,543276 -typedef struct Db Db;Db11779,543306 -typedef struct Schema Schema;Schema11780,543328 -typedef struct Expr Expr;Expr11781,543358 -typedef struct ExprList ExprList;ExprList11782,543384 -typedef struct ExprSpan ExprSpan;ExprSpan11783,543418 -typedef struct FKey FKey;FKey11784,543452 -typedef struct FuncDestructor FuncDestructor;FuncDestructor11785,543478 -typedef struct FuncDef FuncDef;FuncDef11786,543524 -typedef struct FuncDefHash FuncDefHash;FuncDefHash11787,543556 -typedef struct IdList IdList;IdList11788,543596 -typedef struct Index Index;Index11789,543626 -typedef struct IndexSample IndexSample;IndexSample11790,543654 -typedef struct KeyClass KeyClass;KeyClass11791,543694 -typedef struct KeyInfo KeyInfo;KeyInfo11792,543728 -typedef struct Lookaside Lookaside;Lookaside11793,543760 -typedef struct LookasideSlot LookasideSlot;LookasideSlot11794,543796 -typedef struct Module Module;Module11795,543840 -typedef struct NameContext NameContext;NameContext11796,543870 -typedef struct Parse Parse;Parse11797,543910 -typedef struct PreUpdate PreUpdate;PreUpdate11798,543938 -typedef struct PrintfArguments PrintfArguments;PrintfArguments11799,543974 -typedef struct RowSet RowSet;RowSet11800,544022 -typedef struct Savepoint Savepoint;Savepoint11801,544052 -typedef struct Select Select;Select11802,544088 -typedef struct SQLiteThread SQLiteThread;SQLiteThread11803,544118 -typedef struct SelectDest SelectDest;SelectDest11804,544160 -typedef struct SrcList SrcList;SrcList11805,544198 -typedef struct StrAccum StrAccum;StrAccum11806,544230 -typedef struct Table Table;Table11807,544264 -typedef struct TableLock TableLock;TableLock11808,544292 -typedef struct Token Token;Token11809,544328 -typedef struct TreeView TreeView;TreeView11810,544356 -typedef struct Trigger Trigger;Trigger11811,544390 -typedef struct TriggerPrg TriggerPrg;TriggerPrg11812,544422 -typedef struct TriggerStep TriggerStep;TriggerStep11813,544460 -typedef struct UnpackedRecord UnpackedRecord;UnpackedRecord11814,544500 -typedef struct VTable VTable;VTable11815,544546 -typedef struct VtabCtx VtabCtx;VtabCtx11816,544576 -typedef struct Walker Walker;Walker11817,544608 -typedef struct WhereInfo WhereInfo;WhereInfo11818,544638 -typedef struct With With;With11819,544674 -#define _BTREE_H__BTREE_H_11844,545624 -#define SQLITE_N_BTREE_META SQLITE_N_BTREE_META11849,545743 - #define SQLITE_DEFAULT_AUTOVACUUM SQLITE_DEFAULT_AUTOVACUUM11856,545961 -#define BTREE_AUTOVACUUM_NONE BTREE_AUTOVACUUM_NONE11859,546007 -#define BTREE_AUTOVACUUM_FULL BTREE_AUTOVACUUM_FULL11860,546074 -#define BTREE_AUTOVACUUM_INCR BTREE_AUTOVACUUM_INCR11861,546139 -typedef struct Btree Btree;Btree11866,546247 -typedef struct BtCursor BtCursor;BtCursor11867,546275 -typedef struct BtShared BtShared;BtShared11868,546309 -#define BTREE_OMIT_JOURNAL BTREE_OMIT_JOURNAL11886,546916 -#define BTREE_MEMORY BTREE_MEMORY11887,546993 -#define BTREE_SINGLE BTREE_SINGLE11888,547054 -#define BTREE_UNORDERED BTREE_UNORDERED11889,547126 -#define BTREE_INTKEY BTREE_INTKEY11938,549639 -#define BTREE_BLOBKEY BTREE_BLOBKEY11939,549717 -#define BTREE_FREE_PAGE_COUNT BTREE_FREE_PAGE_COUNT11968,550995 -#define BTREE_SCHEMA_VERSION BTREE_SCHEMA_VERSION11969,551031 -#define BTREE_FILE_FORMAT BTREE_FILE_FORMAT11970,551067 -#define BTREE_DEFAULT_CACHE_SIZE BTREE_DEFAULT_CACHE_SIZE11971,551103 -#define BTREE_LARGEST_ROOT_PAGE BTREE_LARGEST_ROOT_PAGE11972,551139 -#define BTREE_TEXT_ENCODING BTREE_TEXT_ENCODING11973,551175 -#define BTREE_USER_VERSION BTREE_USER_VERSION11974,551211 -#define BTREE_INCR_VACUUM BTREE_INCR_VACUUM11975,551247 -#define BTREE_APPLICATION_ID BTREE_APPLICATION_ID11976,551283 -#define BTREE_DATA_VERSION BTREE_DATA_VERSION11977,551319 -#define BTREE_HINT_RANGE BTREE_HINT_RANGE12006,552736 -#define BTREE_BULKLOAD BTREE_BULKLOAD12021,553335 -#define BTREE_SEEK_EQ BTREE_SEEK_EQ12022,553411 -#define BTREE_WRCSR BTREE_WRCSR12047,554638 -#define BTREE_FORDELETE BTREE_FORDELETE12048,554701 -#define BTREE_SAVEPOSITION BTREE_SAVEPOSITION12077,555904 -#define BTREE_AUXDELETE BTREE_AUXDELETE12078,555981 -# define sqlite3BtreeEnter(sqlite3BtreeEnter12134,558415 -# define sqlite3BtreeEnterAll(sqlite3BtreeEnterAll12135,558446 -# define sqlite3BtreeSharable(sqlite3BtreeSharable12136,558479 -# define sqlite3BtreeEnterCursor(sqlite3BtreeEnterCursor12137,558514 -# define sqlite3BtreeLeave(sqlite3BtreeLeave12152,559053 -# define sqlite3BtreeLeaveCursor(sqlite3BtreeLeaveCursor12153,559083 -# define sqlite3BtreeLeaveAll(sqlite3BtreeLeaveAll12154,559119 -# define sqlite3BtreeHoldsMutex(sqlite3BtreeHoldsMutex12156,559153 -# define sqlite3BtreeHoldsAllMutexes(sqlite3BtreeHoldsAllMutexes12157,559190 -# define sqlite3SchemaMutexHeld(sqlite3SchemaMutexHeld12158,559232 -#define _SQLITE_VDBE_H__SQLITE_VDBE_H_12186,560282 -typedef struct Vdbe Vdbe;Vdbe12194,560495 -typedef struct Mem Mem;Mem12200,560629 -typedef struct SubProgram SubProgram;SubProgram12201,560653 -struct VdbeOp {VdbeOp12208,560868 - u8 opcode; /* What operation to perform */opcode12209,560884 - u8 opcode; /* What operation to perform */VdbeOp::opcode12209,560884 - signed char p4type; /* One of the P4_xxx constants for p4 */p4type12210,560938 - signed char p4type; /* One of the P4_xxx constants for p4 */VdbeOp::p4type12210,560938 - u8 notUsed1;notUsed112211,561001 - u8 notUsed1;VdbeOp::notUsed112211,561001 - u8 p5; /* Fifth parameter is an unsigned character */p512212,561016 - u8 p5; /* Fifth parameter is an unsigned character */VdbeOp::p512212,561016 - int p1; /* First operand */p112213,561085 - int p1; /* First operand */VdbeOp::p112213,561085 - int p2; /* Second parameter (often the jump destination) */p212214,561127 - int p2; /* Second parameter (often the jump destination) */VdbeOp::p212214,561127 - int p3; /* The third parameter */p312215,561201 - int p3; /* The third parameter */VdbeOp::p312215,561201 - union p4union { /* fourth parameter */p4union12216,561249 - union p4union { /* fourth parameter */VdbeOp::p4union12216,561249 - int i; /* Integer value if p4type==P4_INT32 */i12217,561294 - int i; /* Integer value if p4type==P4_INT32 */VdbeOp::p4union::i12217,561294 - void *p; /* Generic pointer */p12218,561361 - void *p; /* Generic pointer */VdbeOp::p4union::p12218,561361 - char *z; /* Pointer to data for string (char array) types */z12219,561410 - char *z; /* Pointer to data for string (char array) types */VdbeOp::p4union::z12219,561410 - i64 *pI64; /* Used when p4type is P4_INT64 */pI6412220,561489 - i64 *pI64; /* Used when p4type is P4_INT64 */VdbeOp::p4union::pI6412220,561489 - double *pReal; /* Used when p4type is P4_REAL */pReal12221,561551 - double *pReal; /* Used when p4type is P4_REAL */VdbeOp::p4union::pReal12221,561551 - FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */pFunc12222,561612 - FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */VdbeOp::p4union::pFunc12222,561612 - sqlite3_context *pCtx; /* Used when p4type is P4_FUNCCTX */pCtx12223,561676 - sqlite3_context *pCtx; /* Used when p4type is P4_FUNCCTX */VdbeOp::p4union::pCtx12223,561676 - CollSeq *pColl; /* Used when p4type is P4_COLLSEQ */pColl12224,561740 - CollSeq *pColl; /* Used when p4type is P4_COLLSEQ */VdbeOp::p4union::pColl12224,561740 - Mem *pMem; /* Used when p4type is P4_MEM */pMem12225,561804 - Mem *pMem; /* Used when p4type is P4_MEM */VdbeOp::p4union::pMem12225,561804 - VTable *pVtab; /* Used when p4type is P4_VTAB */pVtab12226,561864 - VTable *pVtab; /* Used when p4type is P4_VTAB */VdbeOp::p4union::pVtab12226,561864 - KeyInfo *pKeyInfo; /* Used when p4type is P4_KEYINFO */pKeyInfo12227,561925 - KeyInfo *pKeyInfo; /* Used when p4type is P4_KEYINFO */VdbeOp::p4union::pKeyInfo12227,561925 - int *ai; /* Used when p4type is P4_INTARRAY */ai12228,561989 - int *ai; /* Used when p4type is P4_INTARRAY */VdbeOp::p4union::ai12228,561989 - SubProgram *pProgram; /* Used when p4type is P4_SUBPROGRAM */pProgram12229,562054 - SubProgram *pProgram; /* Used when p4type is P4_SUBPROGRAM */VdbeOp::p4union::pProgram12229,562054 - Table *pTab; /* Used when p4type is P4_TABLE */pTab12230,562121 - Table *pTab; /* Used when p4type is P4_TABLE */VdbeOp::p4union::pTab12230,562121 - Expr *pExpr; /* Used when p4type is P4_EXPR */pExpr12232,562217 - Expr *pExpr; /* Used when p4type is P4_EXPR */VdbeOp::p4union::pExpr12232,562217 - int (*xAdvance)(BtCursor *, int *);xAdvance12234,562285 - int (*xAdvance)(BtCursor *, int *);VdbeOp::p4union::xAdvance12234,562285 - } p4;p412235,562325 - } p4;VdbeOp::p412235,562325 - char *zComment; /* Comment to improve readability */zComment12237,562371 - char *zComment; /* Comment to improve readability */VdbeOp::zComment12237,562371 - u32 cnt; /* Number of times this instruction was executed */cnt12240,562462 - u32 cnt; /* Number of times this instruction was executed */VdbeOp::cnt12240,562462 - u64 cycles; /* Total time spent executing this instruction */cycles12241,562541 - u64 cycles; /* Total time spent executing this instruction */VdbeOp::cycles12241,562541 - int iSrcLine; /* Source-code line that generated this opcode */iSrcLine12244,562653 - int iSrcLine; /* Source-code line that generated this opcode */VdbeOp::iSrcLine12244,562653 -typedef struct VdbeOp VdbeOp;VdbeOp12247,562740 -struct SubProgram {SubProgram12253,562832 - VdbeOp *aOp; /* Array of opcodes for sub-program */aOp12254,562852 - VdbeOp *aOp; /* Array of opcodes for sub-program */SubProgram::aOp12254,562852 - int nOp; /* Elements in aOp[] */nOp12255,562923 - int nOp; /* Elements in aOp[] */SubProgram::nOp12255,562923 - int nMem; /* Number of memory cells required */nMem12256,562979 - int nMem; /* Number of memory cells required */SubProgram::nMem12256,562979 - int nCsr; /* Number of cursors required */nCsr12257,563049 - int nCsr; /* Number of cursors required */SubProgram::nCsr12257,563049 - int nOnce; /* Number of OP_Once instructions */nOnce12258,563114 - int nOnce; /* Number of OP_Once instructions */SubProgram::nOnce12258,563114 - void *token; /* id that may be used to recursive triggers */token12259,563183 - void *token; /* id that may be used to recursive triggers */SubProgram::token12259,563183 - SubProgram *pNext; /* Next sub-program already visited */pNext12260,563263 - SubProgram *pNext; /* Next sub-program already visited */SubProgram::pNext12260,563263 -struct VdbeOpList {VdbeOpList12267,563448 - u8 opcode; /* What operation to perform */opcode12268,563468 - u8 opcode; /* What operation to perform */VdbeOpList::opcode12268,563468 - signed char p1; /* First operand */p112269,563522 - signed char p1; /* First operand */VdbeOpList::p112269,563522 - signed char p2; /* Second parameter (often the jump destination) */p212270,563564 - signed char p2; /* Second parameter (often the jump destination) */VdbeOpList::p212270,563564 - signed char p3; /* Third parameter */p312271,563638 - signed char p3; /* Third parameter */VdbeOpList::p312271,563638 -typedef struct VdbeOpList VdbeOpList;VdbeOpList12273,563685 -#define P4_NOTUSED P4_NOTUSED12278,563765 -#define P4_DYNAMIC P4_DYNAMIC12279,563826 -#define P4_STATIC P4_STATIC12280,563907 -#define P4_COLLSEQ P4_COLLSEQ12281,563966 -#define P4_FUNCDEF P4_FUNCDEF12282,564037 -#define P4_KEYINFO P4_KEYINFO12283,564108 -#define P4_EXPR P4_EXPR12284,564179 -#define P4_MEM P4_MEM12285,564243 -#define P4_TRANSIENT P4_TRANSIENT12286,564314 -#define P4_VTAB P4_VTAB12287,564384 -#define P4_MPRINTF P4_MPRINTF12288,564461 -#define P4_REAL P4_REAL12289,564540 -#define P4_INT64 P4_INT6412290,564608 -#define P4_INT32 P4_INT3212291,564670 -#define P4_INTARRAY P4_INTARRAY12292,564732 -#define P4_SUBPROGRAM P4_SUBPROGRAM12293,564798 -#define P4_ADVANCE P4_ADVANCE12294,564875 -#define P4_TABLE P4_TABLE12295,564953 -#define P4_FUNCCTX P4_FUNCCTX12296,565022 -#define P5_ConstraintNotNull P5_ConstraintNotNull12299,565138 -#define P5_ConstraintUnique P5_ConstraintUnique12300,565169 -#define P5_ConstraintCheck P5_ConstraintCheck12301,565200 -#define P5_ConstraintFK P5_ConstraintFK12302,565231 -#define COLNAME_NAME COLNAME_NAME12308,565396 -#define COLNAME_DECLTYPE COLNAME_DECLTYPE12309,565423 -#define COLNAME_DATABASE COLNAME_DATABASE12310,565450 -#define COLNAME_TABLE COLNAME_TABLE12311,565477 -#define COLNAME_COLUMN COLNAME_COLUMN12312,565504 -# define COLNAME_N COLNAME_N12314,565568 -# define COLNAME_N COLNAME_N12317,565672 -# define COLNAME_N COLNAME_N12319,565738 -#define ADDR(ADDR12329,566063 -#define OP_Savepoint OP_Savepoint12339,566496 -#define OP_AutoCommit OP_AutoCommit12340,566525 -#define OP_Transaction OP_Transaction12341,566554 -#define OP_SorterNext OP_SorterNext12342,566583 -#define OP_PrevIfOpen OP_PrevIfOpen12343,566612 -#define OP_NextIfOpen OP_NextIfOpen12344,566641 -#define OP_Prev OP_Prev12345,566670 -#define OP_Next OP_Next12346,566699 -#define OP_Checkpoint OP_Checkpoint12347,566728 -#define OP_JournalMode OP_JournalMode12348,566757 -#define OP_Vacuum OP_Vacuum12349,566786 -#define OP_VFilter OP_VFilter12350,566815 -#define OP_VUpdate OP_VUpdate12351,566893 -#define OP_Goto OP_Goto12352,566971 -#define OP_Gosub OP_Gosub12353,567000 -#define OP_InitCoroutine OP_InitCoroutine12354,567029 -#define OP_Yield OP_Yield12355,567058 -#define OP_MustBeInt OP_MustBeInt12356,567087 -#define OP_Jump OP_Jump12357,567116 -#define OP_Not OP_Not12358,567145 -#define OP_Once OP_Once12359,567223 -#define OP_If OP_If12360,567252 -#define OP_IfNot OP_IfNot12361,567281 -#define OP_SeekLT OP_SeekLT12362,567310 -#define OP_SeekLE OP_SeekLE12363,567388 -#define OP_SeekGE OP_SeekGE12364,567466 -#define OP_SeekGT OP_SeekGT12365,567544 -#define OP_Or OP_Or12366,567622 -#define OP_And OP_And12367,567705 -#define OP_NoConflict OP_NoConflict12368,567789 -#define OP_NotFound OP_NotFound12369,567867 -#define OP_Found OP_Found12370,567945 -#define OP_NotExists OP_NotExists12371,568023 -#define OP_Last OP_Last12372,568101 -#define OP_IsNull OP_IsNull12373,568130 -#define OP_NotNull OP_NotNull12374,568217 -#define OP_Ne OP_Ne12375,568305 -#define OP_Eq OP_Eq12376,568389 -#define OP_Gt OP_Gt12377,568473 -#define OP_Le OP_Le12378,568556 -#define OP_Lt OP_Lt12379,568640 -#define OP_Ge OP_Ge12380,568723 -#define OP_SorterSort OP_SorterSort12381,568807 -#define OP_BitAnd OP_BitAnd12382,568836 -#define OP_BitOr OP_BitOr12383,568918 -#define OP_ShiftLeft OP_ShiftLeft12384,568999 -#define OP_ShiftRight OP_ShiftRight12385,569082 -#define OP_Add OP_Add12386,569165 -#define OP_Subtract OP_Subtract12387,569245 -#define OP_Multiply OP_Multiply12388,569326 -#define OP_Divide OP_Divide12389,569406 -#define OP_Remainder OP_Remainder12390,569487 -#define OP_Concat OP_Concat12391,569566 -#define OP_Sort OP_Sort12392,569648 -#define OP_BitNot OP_BitNot12393,569677 -#define OP_Rewind OP_Rewind12394,569755 -#define OP_IdxLE OP_IdxLE12395,569784 -#define OP_IdxGT OP_IdxGT12396,569862 -#define OP_IdxLT OP_IdxLT12397,569940 -#define OP_IdxGE OP_IdxGE12398,570018 -#define OP_RowSetRead OP_RowSetRead12399,570096 -#define OP_RowSetTest OP_RowSetTest12400,570174 -#define OP_Program OP_Program12401,570252 -#define OP_FkIfZero OP_FkIfZero12402,570281 -#define OP_IfPos OP_IfPos12403,570359 -#define OP_IfNotZero OP_IfNotZero12404,570439 -#define OP_DecrJumpZero OP_DecrJumpZero12405,570520 -#define OP_IncrVacuum OP_IncrVacuum12406,570598 -#define OP_VNext OP_VNext12407,570627 -#define OP_Init OP_Init12408,570656 -#define OP_Return OP_Return12409,570734 -#define OP_EndCoroutine OP_EndCoroutine12410,570763 -#define OP_HaltIfNull OP_HaltIfNull12411,570792 -#define OP_Halt OP_Halt12412,570870 -#define OP_Integer OP_Integer12413,570899 -#define OP_Int64 OP_Int6412414,570977 -#define OP_String OP_String12415,571055 -#define OP_Null OP_Null12416,571133 -#define OP_SoftNull OP_SoftNull12417,571211 -#define OP_Blob OP_Blob12418,571289 -#define OP_Variable OP_Variable12419,571367 -#define OP_Move OP_Move12420,571445 -#define OP_Copy OP_Copy12421,571523 -#define OP_SCopy OP_SCopy12422,571601 -#define OP_IntCopy OP_IntCopy12423,571679 -#define OP_ResultRow OP_ResultRow12424,571757 -#define OP_CollSeq OP_CollSeq12425,571835 -#define OP_Function0 OP_Function012426,571864 -#define OP_Function OP_Function12427,571942 -#define OP_AddImm OP_AddImm12428,572020 -#define OP_RealAffinity OP_RealAffinity12429,572098 -#define OP_Cast OP_Cast12430,572127 -#define OP_Permutation OP_Permutation12431,572205 -#define OP_Compare OP_Compare12432,572234 -#define OP_Column OP_Column12433,572312 -#define OP_Affinity OP_Affinity12434,572390 -#define OP_MakeRecord OP_MakeRecord12435,572468 -#define OP_String8 OP_String812436,572546 -#define OP_Count OP_Count12437,572624 -#define OP_ReadCookie OP_ReadCookie12438,572702 -#define OP_SetCookie OP_SetCookie12439,572731 -#define OP_ReopenIdx OP_ReopenIdx12440,572760 -#define OP_OpenRead OP_OpenRead12441,572838 -#define OP_OpenWrite OP_OpenWrite12442,572916 -#define OP_OpenAutoindex OP_OpenAutoindex12443,572994 -#define OP_OpenEphemeral OP_OpenEphemeral12444,573072 -#define OP_SorterOpen OP_SorterOpen12445,573150 -#define OP_SequenceTest OP_SequenceTest12446,573179 -#define OP_OpenPseudo OP_OpenPseudo12447,573257 -#define OP_Close OP_Close12448,573335 -#define OP_ColumnsUsed OP_ColumnsUsed12449,573364 -#define OP_Sequence OP_Sequence12450,573393 -#define OP_NewRowid OP_NewRowid12451,573471 -#define OP_Insert OP_Insert12452,573549 -#define OP_InsertInt OP_InsertInt12453,573627 -#define OP_Delete OP_Delete12454,573705 -#define OP_ResetCount OP_ResetCount12455,573734 -#define OP_SorterCompare OP_SorterCompare12456,573763 -#define OP_SorterData OP_SorterData12457,573843 -#define OP_RowKey OP_RowKey12458,573921 -#define OP_RowData OP_RowData12459,573999 -#define OP_Rowid OP_Rowid12460,574077 -#define OP_NullRow OP_NullRow12461,574155 -#define OP_SorterInsert OP_SorterInsert12462,574184 -#define OP_IdxInsert OP_IdxInsert12463,574213 -#define OP_IdxDelete OP_IdxDelete12464,574291 -#define OP_Seek OP_Seek12465,574369 -#define OP_IdxRowid OP_IdxRowid12466,574447 -#define OP_Destroy OP_Destroy12467,574525 -#define OP_Clear OP_Clear12468,574554 -#define OP_ResetSorter OP_ResetSorter12469,574583 -#define OP_CreateIndex OP_CreateIndex12470,574612 -#define OP_CreateTable OP_CreateTable12471,574690 -#define OP_Real OP_Real12472,574768 -#define OP_ParseSchema OP_ParseSchema12473,574846 -#define OP_LoadAnalysis OP_LoadAnalysis12474,574875 -#define OP_DropTable OP_DropTable12475,574904 -#define OP_DropIndex OP_DropIndex12476,574933 -#define OP_DropTrigger OP_DropTrigger12477,574962 -#define OP_IntegrityCk OP_IntegrityCk12478,574991 -#define OP_RowSetAdd OP_RowSetAdd12479,575020 -#define OP_Param OP_Param12480,575098 -#define OP_FkCounter OP_FkCounter12481,575127 -#define OP_MemMax OP_MemMax12482,575205 -#define OP_OffsetLimit OP_OffsetLimit12483,575283 -#define OP_AggStep0 OP_AggStep012484,575385 -#define OP_AggStep OP_AggStep12485,575463 -#define OP_AggFinal OP_AggFinal12486,575541 -#define OP_Expire OP_Expire12487,575619 -#define OP_TableLock OP_TableLock12488,575648 -#define OP_VBegin OP_VBegin12489,575726 -#define OP_VCreate OP_VCreate12490,575755 -#define OP_VDestroy OP_VDestroy12491,575784 -#define OP_VOpen OP_VOpen12492,575813 -#define OP_VColumn OP_VColumn12493,575842 -#define OP_VRename OP_VRename12494,575920 -#define OP_Pagecount OP_Pagecount12495,575949 -#define OP_MaxPgcnt OP_MaxPgcnt12496,575978 -#define OP_CursorHint OP_CursorHint12497,576007 -#define OP_Noop OP_Noop12498,576036 -#define OP_Explain OP_Explain12499,576065 -#define OPFLG_JUMP OPFLG_JUMP12505,576265 -#define OPFLG_IN1 OPFLG_IN112506,576330 -#define OPFLG_IN2 OPFLG_IN212507,576390 -#define OPFLG_IN3 OPFLG_IN312508,576450 -#define OPFLG_OUT2 OPFLG_OUT212509,576510 -#define OPFLG_OUT3 OPFLG_OUT312510,576571 -#define OPFLG_INITIALIZER OPFLG_INITIALIZER12511,576632 -#define SQLITE_MX_JUMP_OPCODE SQLITE_MX_JUMP_OPCODE12540,578164 -# define sqlite3VdbeVerifyNoMallocRequired(sqlite3VdbeVerifyNoMallocRequired12564,579403 -typedef int (*RecordCompare)(int,const void*,UnpackedRecord*);RecordCompare12614,582159 -# define VdbeComment(VdbeComment12630,582758 -# define VdbeNoopComment(VdbeNoopComment12632,582875 -# define VdbeModuleComment(VdbeModuleComment12634,582967 -# define VdbeModuleComment(VdbeModuleComment12636,583032 -# define VdbeComment(VdbeComment12639,583078 -# define VdbeNoopComment(VdbeNoopComment12640,583102 -# define VdbeModuleComment(VdbeModuleComment12641,583130 -# define VdbeCoverage(VdbeCoverage12668,584340 -# define VdbeCoverageIf(VdbeCoverageIf12669,584402 -# define VdbeCoverageAlwaysTaken(VdbeCoverageAlwaysTaken12670,584473 -# define VdbeCoverageNeverTaken(VdbeCoverageNeverTaken12671,584540 -# define VDBE_OFFSET_LINENO(VDBE_OFFSET_LINENO12672,584606 -# define VdbeCoverage(VdbeCoverage12674,584656 -# define VdbeCoverageIf(VdbeCoverageIf12675,584681 -# define VdbeCoverageAlwaysTaken(VdbeCoverageAlwaysTaken12676,584710 -# define VdbeCoverageNeverTaken(VdbeCoverageNeverTaken12677,584746 -# define VDBE_OFFSET_LINENO(VDBE_OFFSET_LINENO12678,584781 -# define sqlite3VdbeScanStatus(sqlite3VdbeScanStatus12684,584951 -#define _PAGER_H__PAGER_H_12710,585916 - #define SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT12718,586191 -typedef u32 Pgno;Pgno12725,586382 -typedef struct Pager Pager;Pager12730,586485 -typedef struct PgHdr DbPage;DbPage12735,586546 -#define PAGER_MJ_PGNO(PAGER_MJ_PGNO12745,586964 -#define PAGER_OMIT_JOURNAL PAGER_OMIT_JOURNAL12752,587184 -#define PAGER_MEMORY PAGER_MEMORY12753,587258 -#define PAGER_LOCKINGMODE_QUERY PAGER_LOCKINGMODE_QUERY12758,587398 -#define PAGER_LOCKINGMODE_NORMAL PAGER_LOCKINGMODE_NORMAL12759,587438 -#define PAGER_LOCKINGMODE_EXCLUSIVE PAGER_LOCKINGMODE_EXCLUSIVE12760,587478 -#define PAGER_JOURNALMODE_QUERY PAGER_JOURNALMODE_QUERY12769,587780 -#define PAGER_JOURNALMODE_DELETE PAGER_JOURNALMODE_DELETE12770,587859 -#define PAGER_JOURNALMODE_PERSIST PAGER_JOURNALMODE_PERSIST12771,587939 -#define PAGER_JOURNALMODE_OFF PAGER_JOURNALMODE_OFF12772,588020 -#define PAGER_JOURNALMODE_TRUNCATE PAGER_JOURNALMODE_TRUNCATE12773,588086 -#define PAGER_JOURNALMODE_MEMORY PAGER_JOURNALMODE_MEMORY12774,588163 -#define PAGER_JOURNALMODE_WAL PAGER_JOURNALMODE_WAL12775,588234 -#define PAGER_GET_NOCONTENT PAGER_GET_NOCONTENT12780,588373 -#define PAGER_GET_READONLY PAGER_GET_READONLY12781,588444 -#define PAGER_SYNCHRONOUS_OFF PAGER_SYNCHRONOUS_OFF12791,588755 -#define PAGER_SYNCHRONOUS_NORMAL PAGER_SYNCHRONOUS_NORMAL12792,588826 -#define PAGER_SYNCHRONOUS_FULL PAGER_SYNCHRONOUS_FULL12793,588900 -#define PAGER_SYNCHRONOUS_EXTRA PAGER_SYNCHRONOUS_EXTRA12794,588972 -#define PAGER_SYNCHRONOUS_MASK PAGER_SYNCHRONOUS_MASK12795,589045 -#define PAGER_FULLFSYNC PAGER_FULLFSYNC12796,589120 -#define PAGER_CKPT_FULLFSYNC PAGER_CKPT_FULLFSYNC12797,589188 -#define PAGER_CACHESPILL PAGER_CACHESPILL12798,589267 -#define PAGER_FLAGS_MASK PAGER_FLAGS_MASK12799,589337 -# define disable_simulated_io_errors(disable_simulated_io_errors12921,594645 -# define enable_simulated_io_errors(enable_simulated_io_errors12922,594684 -typedef struct PgHdr PgHdr;PgHdr12948,595554 -typedef struct PCache PCache;PCache12949,595582 -struct PgHdr {PgHdr12955,595706 - sqlite3_pcache_page *pPage; /* Pcache object page handle */pPage12956,595721 - sqlite3_pcache_page *pPage; /* Pcache object page handle */PgHdr::pPage12956,595721 - void *pData; /* Page data */pData12957,595786 - void *pData; /* Page data */PgHdr::pData12957,595786 - void *pExtra; /* Extra content */pExtra12958,595835 - void *pExtra; /* Extra content */PgHdr::pExtra12958,595835 - PgHdr *pDirty; /* Transient list of dirty sorted by pgno */pDirty12959,595888 - PgHdr *pDirty; /* Transient list of dirty sorted by pgno */PgHdr::pDirty12959,595888 - Pager *pPager; /* The pager this page is part of */pPager12960,595966 - Pager *pPager; /* The pager this page is part of */PgHdr::pPager12960,595966 - Pgno pgno; /* Page number for this page */pgno12961,596036 - Pgno pgno; /* Page number for this page */PgHdr::pgno12961,596036 - u32 pageHash; /* Hash of page content */pageHash12963,596127 - u32 pageHash; /* Hash of page content */PgHdr::pageHash12963,596127 - u16 flags; /* PGHDR flags defined below */flags12965,596194 - u16 flags; /* PGHDR flags defined below */PgHdr::flags12965,596194 - i16 nRef; /* Number of users of this page */nRef12971,596462 - i16 nRef; /* Number of users of this page */PgHdr::nRef12971,596462 - PCache *pCache; /* Cache that owns this page */pCache12972,596530 - PCache *pCache; /* Cache that owns this page */PgHdr::pCache12972,596530 - PgHdr *pDirtyNext; /* Next element in list of dirty pages */pDirtyNext12974,596596 - PgHdr *pDirtyNext; /* Next element in list of dirty pages */PgHdr::pDirtyNext12974,596596 - PgHdr *pDirtyPrev; /* Previous element in list of dirty pages */pDirtyPrev12975,596671 - PgHdr *pDirtyPrev; /* Previous element in list of dirty pages */PgHdr::pDirtyPrev12975,596671 -#define PGHDR_CLEAN PGHDR_CLEAN12979,596787 -#define PGHDR_DIRTY PGHDR_DIRTY12980,596865 -#define PGHDR_WRITEABLE PGHDR_WRITEABLE12981,596942 -#define PGHDR_NEED_SYNC PGHDR_NEED_SYNC12982,597015 -#define PGHDR_DONT_WRITE PGHDR_DONT_WRITE12984,597166 -#define PGHDR_MMAP PGHDR_MMAP12985,597238 -#define PGHDR_WAL_APPEND PGHDR_WAL_APPEND12987,597310 -#define _SQLITE_OS_H__SQLITE_OS_H_13140,603274 -#define _OS_SETUP_H__OS_SETUP_H_13164,604083 -# undef SQLITE_OS_UNIXSQLITE_OS_UNIX13176,604456 -# define SQLITE_OS_UNIX SQLITE_OS_UNIX13177,604482 -# undef SQLITE_OS_WINSQLITE_OS_WIN13178,604511 -# define SQLITE_OS_WIN SQLITE_OS_WIN13179,604536 -# undef SQLITE_OS_OTHERSQLITE_OS_OTHER13181,604572 -# define SQLITE_OS_OTHER SQLITE_OS_OTHER13185,604673 -# define SQLITE_OS_WIN SQLITE_OS_WIN13189,604849 -# define SQLITE_OS_UNIX SQLITE_OS_UNIX13190,604879 -# define SQLITE_OS_WIN SQLITE_OS_WIN13192,604920 -# define SQLITE_OS_UNIX SQLITE_OS_UNIX13193,604950 -# define SQLITE_OS_UNIX SQLITE_OS_UNIX13196,605000 -# define SQLITE_OS_WIN SQLITE_OS_WIN13200,605068 -# define SET_FULLSYNC(SET_FULLSYNC13213,605400 -# define SQLITE_DEFAULT_SECTOR_SIZE SQLITE_DEFAULT_SECTOR_SIZE13220,605513 -# define SQLITE_TEMP_FILE_PREFIX SQLITE_TEMP_FILE_PREFIX13245,606818 -#define NO_LOCK NO_LOCK13265,607746 -#define SHARED_LOCK SHARED_LOCK13266,607772 -#define RESERVED_LOCK RESERVED_LOCK13267,607798 -#define PENDING_LOCK PENDING_LOCK13268,607824 -#define EXCLUSIVE_LOCK EXCLUSIVE_LOCK13269,607850 -# define PENDING_BYTE PENDING_BYTE13327,610943 -# define PENDING_BYTE PENDING_BYTE13329,610988 -#define RESERVED_BYTE RESERVED_BYTE13331,611041 -#define SHARED_FIRST SHARED_FIRST13332,611084 -#define SHARED_SIZE SHARED_SIZE13333,611127 -#define SQLITE_FCNTL_DB_UNCHANGED SQLITE_FCNTL_DB_UNCHANGED13354,612039 -# define SQLITE_MUTEX_OMITSQLITE_MUTEX_OMIT13436,615730 -# define SQLITE_MUTEX_PTHREADSSQLITE_MUTEX_PTHREADS13440,615838 -# define SQLITE_MUTEX_W32SQLITE_MUTEX_W3213442,615894 -# define SQLITE_MUTEX_NOOPSQLITE_MUTEX_NOOP13444,615931 -#define sqlite3_mutex_alloc(sqlite3_mutex_alloc13452,616079 -#define sqlite3_mutex_free(sqlite3_mutex_free13453,616133 -#define sqlite3_mutex_enter(sqlite3_mutex_enter13454,616163 -#define sqlite3_mutex_try(sqlite3_mutex_try13455,616198 -#define sqlite3_mutex_leave(sqlite3_mutex_leave13456,616242 -#define sqlite3_mutex_held(sqlite3_mutex_held13457,616277 -#define sqlite3_mutex_notheld(sqlite3_mutex_notheld13458,616325 -#define sqlite3MutexAlloc(sqlite3MutexAlloc13459,616373 -#define sqlite3MutexInit(sqlite3MutexInit13460,616427 -#define sqlite3MutexEnd(sqlite3MutexEnd13461,616471 -#define MUTEX_LOGIC(MUTEX_LOGIC13462,616497 -#define MUTEX_LOGIC(MUTEX_LOGIC13464,616526 -# define SQLITE_DEFAULT_SYNCHRONOUS SQLITE_DEFAULT_SYNCHRONOUS13475,617003 -# define SQLITE_DEFAULT_SYNCHRONOUS SQLITE_DEFAULT_SYNCHRONOUS13495,617701 -# define SQLITE_DEFAULT_WAL_SYNCHRONOUS SQLITE_DEFAULT_WAL_SYNCHRONOUS13498,617810 -struct Db {Db13508,618204 - char *zName; /* Name of this database */zName13509,618216 - char *zName; /* Name of this database */Db::zName13509,618216 - Btree *pBt; /* The B*Tree structure for this database file */pBt13510,618267 - Btree *pBt; /* The B*Tree structure for this database file */Db::pBt13510,618267 - u8 safety_level; /* How aggressive at syncing data to disk */safety_level13511,618340 - u8 safety_level; /* How aggressive at syncing data to disk */Db::safety_level13511,618340 - u8 bSyncSet; /* True if "PRAGMA synchronous=N" has been run */bSyncSet13512,618408 - u8 bSyncSet; /* True if "PRAGMA synchronous=N" has been run */Db::bSyncSet13512,618408 - Schema *pSchema; /* Pointer to database schema (possibly shared) */pSchema13513,618481 - Schema *pSchema; /* Pointer to database schema (possibly shared) */Db::pSchema13513,618481 -struct Schema {Schema13533,619367 - int schema_cookie; /* Database schema version number for this file */schema_cookie13534,619383 - int schema_cookie; /* Database schema version number for this file */Schema::schema_cookie13534,619383 - int iGeneration; /* Generation counter. Incremented with each change */iGeneration13535,619457 - int iGeneration; /* Generation counter. Incremented with each change */Schema::iGeneration13535,619457 - Hash tblHash; /* All tables indexed by name */tblHash13536,619536 - Hash tblHash; /* All tables indexed by name */Schema::tblHash13536,619536 - Hash idxHash; /* All (named) indices indexed by name */idxHash13537,619592 - Hash idxHash; /* All (named) indices indexed by name */Schema::idxHash13537,619592 - Hash trigHash; /* All triggers indexed by name */trigHash13538,619657 - Hash trigHash; /* All triggers indexed by name */Schema::trigHash13538,619657 - Hash fkeyHash; /* All foreign keys by referenced table name */fkeyHash13539,619715 - Hash fkeyHash; /* All foreign keys by referenced table name */Schema::fkeyHash13539,619715 - Table *pSeqTab; /* The sqlite_sequence table used by AUTOINCREMENT */pSeqTab13540,619786 - Table *pSeqTab; /* The sqlite_sequence table used by AUTOINCREMENT */Schema::pSeqTab13540,619786 - u8 file_format; /* Schema format version for this file */file_format13541,619863 - u8 file_format; /* Schema format version for this file */Schema::file_format13541,619863 - u8 enc; /* Text encoding used by this database */enc13542,619928 - u8 enc; /* Text encoding used by this database */Schema::enc13542,619928 - u16 schemaFlags; /* Flags associated with this schema */schemaFlags13543,619993 - u16 schemaFlags; /* Flags associated with this schema */Schema::schemaFlags13543,619993 - int cache_size; /* Number of pages to use in the cache */cache_size13544,620056 - int cache_size; /* Number of pages to use in the cache */Schema::cache_size13544,620056 -#define DbHasProperty(DbHasProperty13551,620222 -#define DbHasAnyProperty(DbHasAnyProperty13552,620301 -#define DbSetProperty(DbSetProperty13553,620378 -#define DbClearProperty(DbClearProperty13554,620449 -#define DB_SchemaLoaded DB_SchemaLoaded13566,620885 -#define DB_UnresetViews DB_UnresetViews13567,620953 -#define DB_Empty DB_Empty13568,621031 -#define SQLITE_N_LIMIT SQLITE_N_LIMIT13574,621217 -struct Lookaside {Lookaside13596,622307 - u32 bDisable; /* Only operate the lookaside when zero */bDisable13597,622326 - u32 bDisable; /* Only operate the lookaside when zero */Lookaside::bDisable13597,622326 - u16 sz; /* Size of each buffer in bytes */sz13598,622395 - u16 sz; /* Size of each buffer in bytes */Lookaside::sz13598,622395 - u8 bMalloced; /* True if pStart obtained from sqlite3_malloc() */bMalloced13599,622456 - u8 bMalloced; /* True if pStart obtained from sqlite3_malloc() */Lookaside::bMalloced13599,622456 - int nOut; /* Number of buffers currently checked out */nOut13600,622534 - int nOut; /* Number of buffers currently checked out */Lookaside::nOut13600,622534 - int mxOut; /* Highwater mark for nOut */mxOut13601,622606 - int mxOut; /* Highwater mark for nOut */Lookaside::mxOut13601,622606 - int anStat[3]; /* 0: hits. 1: size misses. 2: full misses */anStat13602,622662 - int anStat[3]; /* 0: hits. 1: size misses. 2: full misses */Lookaside::anStat13602,622662 - LookasideSlot *pFree; /* List of available buffers */pFree13603,622736 - LookasideSlot *pFree; /* List of available buffers */Lookaside::pFree13603,622736 - void *pStart; /* First byte of available memory space */pStart13604,622794 - void *pStart; /* First byte of available memory space */Lookaside::pStart13604,622794 - void *pEnd; /* First byte past end of available space */pEnd13605,622863 - void *pEnd; /* First byte past end of available space */Lookaside::pEnd13605,622863 -struct LookasideSlot {LookasideSlot13607,622937 - LookasideSlot *pNext; /* Next buffer in the list of free buffers */pNext13608,622960 - LookasideSlot *pNext; /* Next buffer in the list of free buffers */LookasideSlot::pNext13608,622960 -#define SQLITE_FUNC_HASH_SZ SQLITE_FUNC_HASH_SZ13618,623290 -struct FuncDefHash {FuncDefHash13619,623321 - FuncDef *a[SQLITE_FUNC_HASH_SZ]; /* Hash table for functions */a13620,623342 - FuncDef *a[SQLITE_FUNC_HASH_SZ]; /* Hash table for functions */FuncDefHash::a13620,623342 -typedef struct sqlite3_userauth sqlite3_userauth;sqlite3_userauth13628,623565 -struct sqlite3_userauth {sqlite3_userauth13629,623615 - u8 authLevel; /* Current authentication level */authLevel13630,623641 - u8 authLevel; /* Current authentication level */sqlite3_userauth::authLevel13630,623641 - int nAuthPW; /* Size of the zAuthPW in bytes */nAuthPW13631,623708 - int nAuthPW; /* Size of the zAuthPW in bytes */sqlite3_userauth::nAuthPW13631,623708 - char *zAuthPW; /* Password used to authenticate */zAuthPW13632,623775 - char *zAuthPW; /* Password used to authenticate */sqlite3_userauth::zAuthPW13632,623775 - char *zAuthUser; /* User name used to authenticate */zAuthUser13633,623843 - char *zAuthUser; /* User name used to authenticate */sqlite3_userauth::zAuthUser13633,623843 -#define UAUTH_Unknown UAUTH_Unknown13637,623968 -#define UAUTH_Fail UAUTH_Fail13638,624037 -#define UAUTH_User UAUTH_User13639,624102 -#define UAUTH_Admin UAUTH_Admin13640,624171 - typedef int (*sqlite3_xauth)(void*,int,const char*,const char*,const char*,sqlite3_xauth13654,624685 - typedef int (*sqlite3_xauth)(void*,int,const char*,const char*,const char*,sqlite3_xauth13657,624827 -struct sqlite3 {sqlite313665,625036 - sqlite3_vfs *pVfs; /* OS Interface */pVfs13666,625053 - sqlite3_vfs *pVfs; /* OS Interface */sqlite3::pVfs13666,625053 - struct Vdbe *pVdbe; /* List of active virtual machines */pVdbe13667,625104 - struct Vdbe *pVdbe; /* List of active virtual machines */sqlite3::pVdbe13667,625104 - CollSeq *pDfltColl; /* The default collating sequence (BINARY) */pDfltColl13668,625174 - CollSeq *pDfltColl; /* The default collating sequence (BINARY) */sqlite3::pDfltColl13668,625174 - sqlite3_mutex *mutex; /* Connection mutex */mutex13669,625252 - sqlite3_mutex *mutex; /* Connection mutex */sqlite3::mutex13669,625252 - Db *aDb; /* All backends */aDb13670,625307 - Db *aDb; /* All backends */sqlite3::aDb13670,625307 - int nDb; /* Number of backends currently in use */nDb13671,625358 - int nDb; /* Number of backends currently in use */sqlite3::nDb13671,625358 - int flags; /* Miscellaneous flags. See below */flags13672,625432 - int flags; /* Miscellaneous flags. See below */sqlite3::flags13672,625432 - i64 lastRowid; /* ROWID of most recent insert (see above) */lastRowid13673,625501 - i64 lastRowid; /* ROWID of most recent insert (see above) */sqlite3::lastRowid13673,625501 - i64 szMmap; /* Default mmap_size setting */szMmap13674,625579 - i64 szMmap; /* Default mmap_size setting */sqlite3::szMmap13674,625579 - unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */openFlags13675,625643 - unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */sqlite3::openFlags13675,625643 - int errCode; /* Most recent error code (SQLITE_*) */errCode13676,625717 - int errCode; /* Most recent error code (SQLITE_*) */sqlite3::errCode13676,625717 - int errMask; /* & result codes with this before returning */errMask13677,625789 - int errMask; /* & result codes with this before returning */sqlite3::errMask13677,625789 - int iSysErrno; /* Errno value from last system error */iSysErrno13678,625869 - int iSysErrno; /* Errno value from last system error */sqlite3::iSysErrno13678,625869 - u16 dbOptFlags; /* Flags to enable/disable optimizations */dbOptFlags13679,625942 - u16 dbOptFlags; /* Flags to enable/disable optimizations */sqlite3::dbOptFlags13679,625942 - u8 enc; /* Text encoding */enc13680,626018 - u8 enc; /* Text encoding */sqlite3::enc13680,626018 - u8 autoCommit; /* The auto-commit flag. */autoCommit13681,626070 - u8 autoCommit; /* The auto-commit flag. */sqlite3::autoCommit13681,626070 - u8 temp_store; /* 1: file 2: memory 0: default */temp_store13682,626130 - u8 temp_store; /* 1: file 2: memory 0: default */sqlite3::temp_store13682,626130 - u8 mallocFailed; /* True if we have seen a malloc failure */mallocFailed13683,626197 - u8 mallocFailed; /* True if we have seen a malloc failure */sqlite3::mallocFailed13683,626197 - u8 bBenignMalloc; /* Do not require OOMs if true */bBenignMalloc13684,626273 - u8 bBenignMalloc; /* Do not require OOMs if true */sqlite3::bBenignMalloc13684,626273 - u8 dfltLockMode; /* Default locking-mode for attached dbs */dfltLockMode13685,626339 - u8 dfltLockMode; /* Default locking-mode for attached dbs */sqlite3::dfltLockMode13685,626339 - signed char nextAutovac; /* Autovac setting after VACUUM if >=0 */nextAutovac13686,626415 - signed char nextAutovac; /* Autovac setting after VACUUM if >=0 */sqlite3::nextAutovac13686,626415 - u8 suppressErr; /* Do not issue error messages if true */suppressErr13687,626489 - u8 suppressErr; /* Do not issue error messages if true */sqlite3::suppressErr13687,626489 - u8 vtabOnConflict; /* Value to return for s3_vtab_on_conflict() */vtabOnConflict13688,626563 - u8 vtabOnConflict; /* Value to return for s3_vtab_on_conflict() */sqlite3::vtabOnConflict13688,626563 - u8 isTransactionSavepoint; /* True if the outermost savepoint is a TS */isTransactionSavepoint13689,626643 - u8 isTransactionSavepoint; /* True if the outermost savepoint is a TS */sqlite3::isTransactionSavepoint13689,626643 - int nextPagesize; /* Pagesize after VACUUM if >0 */nextPagesize13690,626721 - int nextPagesize; /* Pagesize after VACUUM if >0 */sqlite3::nextPagesize13690,626721 - u32 magic; /* Magic number for detect library misuse */magic13691,626787 - u32 magic; /* Magic number for detect library misuse */sqlite3::magic13691,626787 - int nChange; /* Value returned by sqlite3_changes() */nChange13692,626864 - int nChange; /* Value returned by sqlite3_changes() */sqlite3::nChange13692,626864 - int nTotalChange; /* Value returned by sqlite3_total_changes() */nTotalChange13693,626938 - int nTotalChange; /* Value returned by sqlite3_total_changes() */sqlite3::nTotalChange13693,626938 - int aLimit[SQLITE_N_LIMIT]; /* Limits */aLimit13694,627018 - int aLimit[SQLITE_N_LIMIT]; /* Limits */sqlite3::aLimit13694,627018 - int nMaxSorterMmap; /* Maximum size of regions mapped by sorter */nMaxSorterMmap13695,627063 - int nMaxSorterMmap; /* Maximum size of regions mapped by sorter */sqlite3::nMaxSorterMmap13695,627063 - struct sqlite3InitInfo { /* Information used during initialization */sqlite3InitInfo13696,627142 - struct sqlite3InitInfo { /* Information used during initialization */sqlite3::sqlite3InitInfo13696,627142 - int newTnum; /* Rootpage of table being initialized */newTnum13697,627219 - int newTnum; /* Rootpage of table being initialized */sqlite3::sqlite3InitInfo::newTnum13697,627219 - u8 iDb; /* Which db file is being initialized */iDb13698,627293 - u8 iDb; /* Which db file is being initialized */sqlite3::sqlite3InitInfo::iDb13698,627293 - u8 busy; /* TRUE if currently initializing */busy13699,627366 - u8 busy; /* TRUE if currently initializing */sqlite3::sqlite3InitInfo::busy13699,627366 - u8 orphanTrigger; /* Last statement is orphaned TEMP trigger */orphanTrigger13700,627435 - u8 orphanTrigger; /* Last statement is orphaned TEMP trigger */sqlite3::sqlite3InitInfo::orphanTrigger13700,627435 - u8 imposterTable; /* Building an imposter table */imposterTable13701,627513 - u8 imposterTable; /* Building an imposter table */sqlite3::sqlite3InitInfo::imposterTable13701,627513 - } init;init13702,627578 - } init;sqlite3::init13702,627578 - int nVdbeActive; /* Number of VDBEs currently running */nVdbeActive13703,627588 - int nVdbeActive; /* Number of VDBEs currently running */sqlite3::nVdbeActive13703,627588 - int nVdbeRead; /* Number of active VDBEs that read or write */nVdbeRead13704,627660 - int nVdbeRead; /* Number of active VDBEs that read or write */sqlite3::nVdbeRead13704,627660 - int nVdbeWrite; /* Number of active VDBEs that read and write */nVdbeWrite13705,627740 - int nVdbeWrite; /* Number of active VDBEs that read and write */sqlite3::nVdbeWrite13705,627740 - int nVdbeExec; /* Number of nested calls to VdbeExec() */nVdbeExec13706,627821 - int nVdbeExec; /* Number of nested calls to VdbeExec() */sqlite3::nVdbeExec13706,627821 - int nVDestroy; /* Number of active OP_VDestroy operations */nVDestroy13707,627896 - int nVDestroy; /* Number of active OP_VDestroy operations */sqlite3::nVDestroy13707,627896 - int nExtension; /* Number of loaded extensions */nExtension13708,627974 - int nExtension; /* Number of loaded extensions */sqlite3::nExtension13708,627974 - void **aExtension; /* Array of shared library handles */aExtension13709,628040 - void **aExtension; /* Array of shared library handles */sqlite3::aExtension13709,628040 - void (*xTrace)(void*,const char*); /* Trace function */xTrace13710,628110 - void (*xTrace)(void*,const char*); /* Trace function */sqlite3::xTrace13710,628110 - void *pTraceArg; /* Argument to the trace function */pTraceArg13711,628175 - void *pTraceArg; /* Argument to the trace function */sqlite3::pTraceArg13711,628175 - void (*xProfile)(void*,const char*,u64); /* Profiling function */xProfile13712,628256 - void (*xProfile)(void*,const char*,u64); /* Profiling function */sqlite3::xProfile13712,628256 - void *pProfileArg; /* Argument to profile function */pProfileArg13713,628325 - void *pProfileArg; /* Argument to profile function */sqlite3::pProfileArg13713,628325 - void *pCommitArg; /* Argument to xCommitCallback() */pCommitArg13714,628404 - void *pCommitArg; /* Argument to xCommitCallback() */sqlite3::pCommitArg13714,628404 - int (*xCommitCallback)(void*); /* Invoked at every commit. */xCommitCallback13715,628476 - int (*xCommitCallback)(void*); /* Invoked at every commit. */sqlite3::xCommitCallback13715,628476 - void *pRollbackArg; /* Argument to xRollbackCallback() */pRollbackArg13716,628543 - void *pRollbackArg; /* Argument to xRollbackCallback() */sqlite3::pRollbackArg13716,628543 - void (*xRollbackCallback)(void*); /* Invoked at every commit. */xRollbackCallback13717,628617 - void (*xRollbackCallback)(void*); /* Invoked at every commit. */sqlite3::xRollbackCallback13717,628617 - void *pUpdateArg;pUpdateArg13718,628684 - void *pUpdateArg;sqlite3::pUpdateArg13718,628684 - void (*xUpdateCallback)(void*,int, const char*,const char*,sqlite_int64);xUpdateCallback13719,628704 - void (*xUpdateCallback)(void*,int, const char*,const char*,sqlite_int64);sqlite3::xUpdateCallback13719,628704 - void *pPreUpdateArg; /* First argument to xPreUpdateCallback */pPreUpdateArg13721,628816 - void *pPreUpdateArg; /* First argument to xPreUpdateCallback */sqlite3::pPreUpdateArg13721,628816 - void (*xPreUpdateCallback)( /* Registered using sqlite3_preupdate_hook() */xPreUpdateCallback13722,628891 - void (*xPreUpdateCallback)( /* Registered using sqlite3_preupdate_hook() */sqlite3::xPreUpdateCallback13722,628891 - PreUpdate *pPreUpdate; /* Context for active pre-update callback */pPreUpdate13725,629051 - PreUpdate *pPreUpdate; /* Context for active pre-update callback */sqlite3::pPreUpdate13725,629051 - int (*xWalCallback)(void *, sqlite3 *, const char *, int);xWalCallback13728,629194 - int (*xWalCallback)(void *, sqlite3 *, const char *, int);sqlite3::xWalCallback13728,629194 - void *pWalArg;pWalArg13729,629255 - void *pWalArg;sqlite3::pWalArg13729,629255 - void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*);xCollNeeded13731,629279 - void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*);sqlite3::xCollNeeded13731,629279 - void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*);xCollNeeded1613732,629342 - void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*);sqlite3::xCollNeeded1613732,629342 - void *pCollNeededArg;pCollNeededArg13733,629407 - void *pCollNeededArg;sqlite3::pCollNeededArg13733,629407 - sqlite3_value *pErr; /* Most recent error message */pErr13734,629431 - sqlite3_value *pErr; /* Most recent error message */sqlite3::pErr13734,629431 - volatile int isInterrupted; /* True if sqlite3_interrupt has been called */isInterrupted13736,629505 - volatile int isInterrupted; /* True if sqlite3_interrupt has been called */sqlite3::__anon452::isInterrupted13736,629505 - double notUsed1; /* Spacer */notUsed113737,629585 - double notUsed1; /* Spacer */sqlite3::__anon452::notUsed113737,629585 - } u1;u113738,629630 - } u1;sqlite3::u113738,629630 - Lookaside lookaside; /* Lookaside malloc configuration */lookaside13739,629638 - Lookaside lookaside; /* Lookaside malloc configuration */sqlite3::lookaside13739,629638 - sqlite3_xauth xAuth; /* Access authorization function */xAuth13741,629741 - sqlite3_xauth xAuth; /* Access authorization function */sqlite3::xAuth13741,629741 - void *pAuthArg; /* 1st argument to the access auth function */pAuthArg13742,629809 - void *pAuthArg; /* 1st argument to the access auth function */sqlite3::pAuthArg13742,629809 - int (*xProgress)(void *); /* The progress callback */xProgress13745,629933 - int (*xProgress)(void *); /* The progress callback */sqlite3::xProgress13745,629933 - void *pProgressArg; /* Argument to the progress callback */pProgressArg13746,629993 - void *pProgressArg; /* Argument to the progress callback */sqlite3::pProgressArg13746,629993 - unsigned nProgressOps; /* Number of opcodes for progress callback */nProgressOps13747,630065 - unsigned nProgressOps; /* Number of opcodes for progress callback */sqlite3::nProgressOps13747,630065 - int nVTrans; /* Allocated size of aVTrans */nVTrans13750,630183 - int nVTrans; /* Allocated size of aVTrans */sqlite3::nVTrans13750,630183 - Hash aModule; /* populated by sqlite3_create_module() */aModule13751,630247 - Hash aModule; /* populated by sqlite3_create_module() */sqlite3::aModule13751,630247 - VtabCtx *pVtabCtx; /* Context for active vtab connect/create */pVtabCtx13752,630322 - VtabCtx *pVtabCtx; /* Context for active vtab connect/create */sqlite3::pVtabCtx13752,630322 - VTable **aVTrans; /* Virtual tables with open transactions */aVTrans13753,630399 - VTable **aVTrans; /* Virtual tables with open transactions */sqlite3::aVTrans13753,630399 - VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */pDisconnect13754,630475 - VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */sqlite3::pDisconnect13754,630475 - Hash aFunc; /* Hash table of connection functions */aFunc13756,630557 - Hash aFunc; /* Hash table of connection functions */sqlite3::aFunc13756,630557 - Hash aCollSeq; /* All collating sequences */aCollSeq13757,630630 - Hash aCollSeq; /* All collating sequences */sqlite3::aCollSeq13757,630630 - BusyHandler busyHandler; /* Busy callback */busyHandler13758,630692 - BusyHandler busyHandler; /* Busy callback */sqlite3::busyHandler13758,630692 - Db aDbStatic[2]; /* Static space for the 2 default backends */aDbStatic13759,630744 - Db aDbStatic[2]; /* Static space for the 2 default backends */sqlite3::aDbStatic13759,630744 - Savepoint *pSavepoint; /* List of active savepoints */pSavepoint13760,630822 - Savepoint *pSavepoint; /* List of active savepoints */sqlite3::pSavepoint13760,630822 - int busyTimeout; /* Busy handler timeout, in msec */busyTimeout13761,630886 - int busyTimeout; /* Busy handler timeout, in msec */sqlite3::busyTimeout13761,630886 - int nSavepoint; /* Number of non-transaction savepoints */nSavepoint13762,630954 - int nSavepoint; /* Number of non-transaction savepoints */sqlite3::nSavepoint13762,630954 - int nStatement; /* Number of nested statement-transactions */nStatement13763,631029 - int nStatement; /* Number of nested statement-transactions */sqlite3::nStatement13763,631029 - i64 nDeferredCons; /* Net deferred constraints this transaction. */nDeferredCons13764,631108 - i64 nDeferredCons; /* Net deferred constraints this transaction. */sqlite3::nDeferredCons13764,631108 - i64 nDeferredImmCons; /* Net deferred immediate constraints */nDeferredImmCons13765,631189 - i64 nDeferredImmCons; /* Net deferred immediate constraints */sqlite3::nDeferredImmCons13765,631189 - int *pnBytesFreed; /* If not NULL, increment this in DbFree() */pnBytesFreed13766,631262 - int *pnBytesFreed; /* If not NULL, increment this in DbFree() */sqlite3::pnBytesFreed13766,631262 - sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */pBlockingConnection13778,631800 - sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */sqlite3::pBlockingConnection13778,631800 - sqlite3 *pUnlockConnection; /* Connection to watch for unlock */pUnlockConnection13779,631875 - sqlite3 *pUnlockConnection; /* Connection to watch for unlock */sqlite3::pUnlockConnection13779,631875 - void *pUnlockArg; /* Argument to xUnlockNotify */pUnlockArg13780,631952 - void *pUnlockArg; /* Argument to xUnlockNotify */sqlite3::pUnlockArg13780,631952 - void (*xUnlockNotify)(void **, int); /* Unlock notify callback */xUnlockNotify13781,632024 - void (*xUnlockNotify)(void **, int); /* Unlock notify callback */sqlite3::xUnlockNotify13781,632024 - sqlite3 *pNextBlocked; /* Next in list of all blocked connections */pNextBlocked13782,632093 - sqlite3 *pNextBlocked; /* Next in list of all blocked connections */sqlite3::pNextBlocked13782,632093 - sqlite3_userauth auth; /* User authentication information */auth13785,632212 - sqlite3_userauth auth; /* User authentication information */sqlite3::auth13785,632212 -#define SCHEMA_ENC(SCHEMA_ENC13792,632350 -#define ENC(ENC13793,632401 -#define SQLITE_VdbeTrace SQLITE_VdbeTrace13803,632685 -#define SQLITE_InternChanges SQLITE_InternChanges13804,632762 -#define SQLITE_FullColNames SQLITE_FullColNames13805,632841 -#define SQLITE_FullFSync SQLITE_FullFSync13806,632922 -#define SQLITE_CkptFullFSync SQLITE_CkptFullFSync13807,633000 -#define SQLITE_CacheSpill SQLITE_CacheSpill13808,633078 -#define SQLITE_ShortColNames SQLITE_ShortColNames13809,633150 -#define SQLITE_CountRows SQLITE_CountRows13810,633223 -#define SQLITE_NullCallback SQLITE_NullCallback13813,633458 -#define SQLITE_SqlTrace SQLITE_SqlTrace13815,633608 -#define SQLITE_VdbeListing SQLITE_VdbeListing13816,633687 -#define SQLITE_WriteSchema SQLITE_WriteSchema13817,633767 -#define SQLITE_VdbeAddopTrace SQLITE_VdbeAddopTrace13818,633842 -#define SQLITE_IgnoreChecks SQLITE_IgnoreChecks13819,633921 -#define SQLITE_ReadUncommitted SQLITE_ReadUncommitted13820,634002 -#define SQLITE_LegacyFileFmt SQLITE_LegacyFileFmt13821,634072 -#define SQLITE_RecoveryMode SQLITE_RecoveryMode13822,634153 -#define SQLITE_ReverseOrder SQLITE_ReverseOrder13823,634222 -#define SQLITE_RecTriggers SQLITE_RecTriggers13824,634296 -#define SQLITE_ForeignKeys SQLITE_ForeignKeys13825,634370 -#define SQLITE_AutoIndex SQLITE_AutoIndex13826,634451 -#define SQLITE_PreferBuiltin SQLITE_PreferBuiltin13827,634524 -#define SQLITE_LoadExtension SQLITE_LoadExtension13828,634601 -#define SQLITE_LoadExtFunc SQLITE_LoadExtFunc13829,634671 -#define SQLITE_EnableTrigger SQLITE_EnableTrigger13830,634752 -#define SQLITE_DeferFKs SQLITE_DeferFKs13831,634824 -#define SQLITE_QueryOnly SQLITE_QueryOnly13832,634897 -#define SQLITE_VdbeEQP SQLITE_VdbeEQP13833,634970 -#define SQLITE_Vacuum SQLITE_Vacuum13834,635043 -#define SQLITE_CellSizeCk SQLITE_CellSizeCk13835,635113 -#define SQLITE_Fts3Tokenizer SQLITE_Fts3Tokenizer13836,635192 -#define SQLITE_QueryFlattener SQLITE_QueryFlattener13844,635452 -#define SQLITE_ColumnCache SQLITE_ColumnCache13845,635514 -#define SQLITE_GroupByOrder SQLITE_GroupByOrder13846,635572 -#define SQLITE_FactorOutConst SQLITE_FactorOutConst13847,635642 -#define SQLITE_DistinctOpt SQLITE_DistinctOpt13849,635776 -#define SQLITE_CoverIdxScan SQLITE_CoverIdxScan13850,635844 -#define SQLITE_OrderByIdxJoin SQLITE_OrderByIdxJoin13851,635910 -#define SQLITE_SubqCoroutine SQLITE_SubqCoroutine13852,635983 -#define SQLITE_Transitive SQLITE_Transitive13853,636062 -#define SQLITE_OmitNoopJoin SQLITE_OmitNoopJoin13854,636130 -#define SQLITE_Stat34 SQLITE_Stat3413855,636203 -#define SQLITE_CursorHints SQLITE_CursorHints13856,636272 -#define SQLITE_AllOpts SQLITE_AllOpts13857,636343 -#define OptimizationDisabled(OptimizationDisabled13863,636522 -#define OptimizationEnabled(OptimizationEnabled13864,636593 -#define OptimizationDisabled(OptimizationDisabled13866,636670 -#define OptimizationEnabled(OptimizationEnabled13867,636712 -#define ConstFactorOk(ConstFactorOk13874,636911 -#define SQLITE_MAGIC_OPEN SQLITE_MAGIC_OPEN13881,637125 -#define SQLITE_MAGIC_CLOSED SQLITE_MAGIC_CLOSED13882,637190 -#define SQLITE_MAGIC_SICK SQLITE_MAGIC_SICK13883,637257 -#define SQLITE_MAGIC_BUSY SQLITE_MAGIC_BUSY13884,637330 -#define SQLITE_MAGIC_ERROR SQLITE_MAGIC_ERROR13885,637404 -#define SQLITE_MAGIC_ZOMBIE SQLITE_MAGIC_ZOMBIE13886,637484 -struct FuncDef {FuncDef13898,638040 - i8 nArg; /* Number of arguments. -1 means unlimited */nArg13899,638057 - i8 nArg; /* Number of arguments. -1 means unlimited */FuncDef::nArg13899,638057 - u16 funcFlags; /* Some combination of SQLITE_FUNC_* */funcFlags13900,638127 - u16 funcFlags; /* Some combination of SQLITE_FUNC_* */FuncDef::funcFlags13900,638127 - void *pUserData; /* User data parameter */pUserData13901,638190 - void *pUserData; /* User data parameter */FuncDef::pUserData13901,638190 - FuncDef *pNext; /* Next function with same name */pNext13902,638239 - FuncDef *pNext; /* Next function with same name */FuncDef::pNext13902,638239 - void (*xSFunc)(sqlite3_context*,int,sqlite3_value**); /* func or agg-step */xSFunc13903,638297 - void (*xSFunc)(sqlite3_context*,int,sqlite3_value**); /* func or agg-step */FuncDef::xSFunc13903,638297 - void (*xFinalize)(sqlite3_context*); /* Agg finalizer */xFinalize13904,638376 - void (*xFinalize)(sqlite3_context*); /* Agg finalizer */FuncDef::xFinalize13904,638376 - const char *zName; /* SQL name of the function. */zName13905,638452 - const char *zName; /* SQL name of the function. */FuncDef::zName13905,638452 - FuncDef *pHash; /* Next with a different name but the same hash */pHash13907,638517 - FuncDef *pHash; /* Next with a different name but the same hash */FuncDef::__anon453::pHash13907,638517 - FuncDestructor *pDestructor; /* Reference counted destructor function */pDestructor13908,638593 - FuncDestructor *pDestructor; /* Reference counted destructor function */FuncDef::__anon453::pDestructor13908,638593 - } u;u13909,638672 - } u;FuncDef::u13909,638672 -struct FuncDestructor {FuncDestructor13926,639434 - int nRef;nRef13927,639458 - int nRef;FuncDestructor::nRef13927,639458 - void (*xDestroy)(void *);xDestroy13928,639470 - void (*xDestroy)(void *);FuncDestructor::xDestroy13928,639470 - void *pUserData;pUserData13929,639498 - void *pUserData;FuncDestructor::pUserData13929,639498 -#define SQLITE_FUNC_ENCMASK SQLITE_FUNC_ENCMASK13945,640154 -#define SQLITE_FUNC_LIKE SQLITE_FUNC_LIKE13946,640235 -#define SQLITE_FUNC_CASE SQLITE_FUNC_CASE13947,640313 -#define SQLITE_FUNC_EPHEM SQLITE_FUNC_EPHEM13948,640389 -#define SQLITE_FUNC_NEEDCOLL SQLITE_FUNC_NEEDCOLL13949,640460 -#define SQLITE_FUNC_LENGTH SQLITE_FUNC_LENGTH13950,640541 -#define SQLITE_FUNC_TYPEOF SQLITE_FUNC_TYPEOF13951,640610 -#define SQLITE_FUNC_COUNT SQLITE_FUNC_COUNT13952,640679 -#define SQLITE_FUNC_COALESCE SQLITE_FUNC_COALESCE13953,640749 -#define SQLITE_FUNC_UNLIKELY SQLITE_FUNC_UNLIKELY13954,640823 -#define SQLITE_FUNC_CONSTANT SQLITE_FUNC_CONSTANT13955,640894 -#define SQLITE_FUNC_MINMAX SQLITE_FUNC_MINMAX13956,640975 -#define SQLITE_FUNC_SLOCHNG SQLITE_FUNC_SLOCHNG13957,641053 -#define FUNCTION(FUNCTION13994,642855 -#define VFUNCTION(VFUNCTION13997,643032 -#define DFUNCTION(DFUNCTION14000,643189 -#define FUNCTION2(FUNCTION214003,643366 -#define STR_FUNCTION(STR_FUNCTION14006,643565 -#define LIKEFUNC(LIKEFUNC14009,643722 -#define AGGREGATE(AGGREGATE14012,643863 -#define AGGREGATE2(AGGREGATE214015,644026 -struct Savepoint {Savepoint14025,644455 - char *zName; /* Savepoint name (nul-terminated) */zName14026,644474 - char *zName; /* Savepoint name (nul-terminated) */Savepoint::zName14026,644474 - i64 nDeferredCons; /* Number of deferred fk violations */nDeferredCons14027,644550 - i64 nDeferredCons; /* Number of deferred fk violations */Savepoint::nDeferredCons14027,644550 - i64 nDeferredImmCons; /* Number of deferred imm fk. */nDeferredImmCons14028,644627 - i64 nDeferredImmCons; /* Number of deferred imm fk. */Savepoint::nDeferredImmCons14028,644627 - Savepoint *pNext; /* Parent savepoint (if any) */pNext14029,644698 - Savepoint *pNext; /* Parent savepoint (if any) */Savepoint::pNext14029,644698 -#define SAVEPOINT_BEGIN SAVEPOINT_BEGIN14036,644910 -#define SAVEPOINT_RELEASE SAVEPOINT_RELEASE14037,644941 -#define SAVEPOINT_ROLLBACK SAVEPOINT_ROLLBACK14038,644972 -struct Module {Module14046,645162 - const sqlite3_module *pModule; /* Callback pointers */pModule14047,645178 - const sqlite3_module *pModule; /* Callback pointers */Module::pModule14047,645178 - const char *zName; /* Name passed to create_module() */zName14048,645241 - const char *zName; /* Name passed to create_module() */Module::zName14048,645241 - void *pAux; /* pAux passed to create_module() */pAux14049,645317 - void *pAux; /* pAux passed to create_module() */Module::pAux14049,645317 - void (*xDestroy)(void *); /* Module destructor function */xDestroy14050,645393 - void (*xDestroy)(void *); /* Module destructor function */Module::xDestroy14050,645393 - Table *pEpoTab; /* Eponymous table for this module */pEpoTab14051,645465 - Table *pEpoTab; /* Eponymous table for this module */Module::pEpoTab14051,645465 -struct Column {Column14058,645646 - char *zName; /* Name of this column, \000, then the type */zName14059,645662 - char *zName; /* Name of this column, \000, then the type */Column::zName14059,645662 - Expr *pDflt; /* Default value of this column */pDflt14060,645728 - Expr *pDflt; /* Default value of this column */Column::pDflt14060,645728 - char *zColl; /* Collating sequence. If NULL, use the default */zColl14061,645782 - char *zColl; /* Collating sequence. If NULL, use the default */Column::zColl14061,645782 - u8 notNull; /* An OE_ code for handling a NOT NULL constraint */notNull14062,645853 - u8 notNull; /* An OE_ code for handling a NOT NULL constraint */Column::notNull14062,645853 - char affinity; /* One of the SQLITE_AFF_... values */affinity14063,645925 - char affinity; /* One of the SQLITE_AFF_... values */Column::affinity14063,645925 - u8 szEst; /* Estimated size of value in this column. sizeof(INT)==1 */szEst14064,645983 - u8 szEst; /* Estimated size of value in this column. sizeof(INT)==1 */Column::szEst14064,645983 - u8 colFlags; /* Boolean properties. See COLFLAG_ defines below */colFlags14065,646063 - u8 colFlags; /* Boolean properties. See COLFLAG_ defines below */Column::colFlags14065,646063 -#define COLFLAG_PRIMKEY COLFLAG_PRIMKEY14070,646182 -#define COLFLAG_HIDDEN COLFLAG_HIDDEN14071,646257 -#define COLFLAG_HASTYPE COLFLAG_HASTYPE14072,646333 -struct CollSeq {CollSeq14083,646783 - char *zName; /* Name of the collating sequence, UTF-8 encoded */zName14084,646800 - char *zName; /* Name of the collating sequence, UTF-8 encoded */CollSeq::zName14084,646800 - u8 enc; /* Text encoding handled by xCmp() */enc14085,646876 - u8 enc; /* Text encoding handled by xCmp() */CollSeq::enc14085,646876 - void *pUser; /* First argument to xCmp() */pUser14086,646938 - void *pUser; /* First argument to xCmp() */CollSeq::pUser14086,646938 - int (*xCmp)(void*,int, const void*, int, const void*);xCmp14087,646993 - int (*xCmp)(void*,int, const void*, int, const void*);CollSeq::xCmp14087,646993 - void (*xDel)(void*); /* Destructor for pUser */xDel14088,647050 - void (*xDel)(void*); /* Destructor for pUser */CollSeq::xDel14088,647050 -#define SQLITE_SO_ASC SQLITE_SO_ASC14094,647154 -#define SQLITE_SO_DESC SQLITE_SO_DESC14095,647215 -#define SQLITE_SO_UNDEFINED SQLITE_SO_UNDEFINED14096,647276 -#define SQLITE_AFF_BLOB SQLITE_AFF_BLOB14112,647922 -#define SQLITE_AFF_TEXT SQLITE_AFF_TEXT14113,647954 -#define SQLITE_AFF_NUMERIC SQLITE_AFF_NUMERIC14114,647986 -#define SQLITE_AFF_INTEGER SQLITE_AFF_INTEGER14115,648018 -#define SQLITE_AFF_REAL SQLITE_AFF_REAL14116,648050 -#define sqlite3IsNumericAffinity(sqlite3IsNumericAffinity14118,648083 -#define SQLITE_AFF_MASK SQLITE_AFF_MASK14124,648239 -#define SQLITE_JUMPIFNULL SQLITE_JUMPIFNULL14135,648629 -#define SQLITE_STOREP2 SQLITE_STOREP214136,648701 -#define SQLITE_NULLEQ SQLITE_NULLEQ14137,648782 -#define SQLITE_NOTNULL SQLITE_NOTNULL14138,648832 -struct VTable {VTable14182,651349 - sqlite3 *db; /* Database connection associated with this table */db14183,651365 - sqlite3 *db; /* Database connection associated with this table */VTable::db14183,651365 - Module *pMod; /* Pointer to module implementation */pMod14184,651446 - Module *pMod; /* Pointer to module implementation */VTable::pMod14184,651446 - sqlite3_vtab *pVtab; /* Pointer to vtab instance */pVtab14185,651513 - sqlite3_vtab *pVtab; /* Pointer to vtab instance */VTable::pVtab14185,651513 - int nRef; /* Number of pointers to this structure */nRef14186,651572 - int nRef; /* Number of pointers to this structure */VTable::nRef14186,651572 - u8 bConstraint; /* True if constraints are supported */bConstraint14187,651643 - u8 bConstraint; /* True if constraints are supported */VTable::bConstraint14187,651643 - int iSavepoint; /* Depth of the SAVEPOINT stack */iSavepoint14188,651711 - int iSavepoint; /* Depth of the SAVEPOINT stack */VTable::iSavepoint14188,651711 - VTable *pNext; /* Next in linked list (see above) */pNext14189,651774 - VTable *pNext; /* Next in linked list (see above) */VTable::pNext14189,651774 -struct Table {Table14196,651963 - char *zName; /* Name of the table or view */zName14197,651978 - char *zName; /* Name of the table or view */Table::zName14197,651978 - Column *aCol; /* Information about each column */aCol14198,652033 - Column *aCol; /* Information about each column */Table::aCol14198,652033 - Index *pIndex; /* List of SQL indexes on this table. */pIndex14199,652092 - Index *pIndex; /* List of SQL indexes on this table. */Table::pIndex14199,652092 - Select *pSelect; /* NULL for tables. Points to definition if a view. */pSelect14200,652156 - Select *pSelect; /* NULL for tables. Points to definition if a view. */Table::pSelect14200,652156 - FKey *pFKey; /* Linked list of all foreign keys in this table */pFKey14201,652235 - FKey *pFKey; /* Linked list of all foreign keys in this table */Table::pFKey14201,652235 - char *zColAff; /* String defining the affinity of each column */zColAff14202,652310 - char *zColAff; /* String defining the affinity of each column */Table::zColAff14202,652310 - ExprList *pCheck; /* All CHECK constraints */pCheck14203,652383 - ExprList *pCheck; /* All CHECK constraints */Table::pCheck14203,652383 - int tnum; /* Root BTree page for this table */tnum14205,652509 - int tnum; /* Root BTree page for this table */Table::tnum14205,652509 - i16 iPKey; /* If not negative, use aCol[iPKey] as the rowid */iPKey14206,652569 - i16 iPKey; /* If not negative, use aCol[iPKey] as the rowid */Table::iPKey14206,652569 - i16 nCol; /* Number of columns in this table */nCol14207,652644 - i16 nCol; /* Number of columns in this table */Table::nCol14207,652644 - u16 nRef; /* Number of pointers to this Table */nRef14208,652705 - u16 nRef; /* Number of pointers to this Table */Table::nRef14208,652705 - LogEst nRowLogEst; /* Estimated rows in table - from sqlite_stat1 table */nRowLogEst14209,652767 - LogEst nRowLogEst; /* Estimated rows in table - from sqlite_stat1 table */Table::nRowLogEst14209,652767 - LogEst szTabRow; /* Estimated size of each table row in bytes */szTabRow14210,652846 - LogEst szTabRow; /* Estimated size of each table row in bytes */Table::szTabRow14210,652846 - LogEst costMult; /* Cost multiplier for using this table */costMult14212,652947 - LogEst costMult; /* Cost multiplier for using this table */Table::costMult14212,652947 - u8 tabFlags; /* Mask of TF_* values */tabFlags14214,653020 - u8 tabFlags; /* Mask of TF_* values */Table::tabFlags14214,653020 - u8 keyConf; /* What to do in case of uniqueness conflict on iPKey */keyConf14215,653069 - u8 keyConf; /* What to do in case of uniqueness conflict on iPKey */Table::keyConf14215,653069 - int addColOffset; /* Offset in CREATE TABLE stmt to add a new column */addColOffset14217,653180 - int addColOffset; /* Offset in CREATE TABLE stmt to add a new column */Table::addColOffset14217,653180 - int nModuleArg; /* Number of arguments to the module */nModuleArg14220,653297 - int nModuleArg; /* Number of arguments to the module */Table::nModuleArg14220,653297 - char **azModuleArg; /* 0: module 1: schema 2: vtab name 3...: args */azModuleArg14221,653360 - char **azModuleArg; /* 0: module 1: schema 2: vtab name 3...: args */Table::azModuleArg14221,653360 - VTable *pVTable; /* List of VTable objects. */pVTable14222,653433 - VTable *pVTable; /* List of VTable objects. */Table::pVTable14222,653433 - Trigger *pTrigger; /* List of triggers stored in pSchema */pTrigger14224,653493 - Trigger *pTrigger; /* List of triggers stored in pSchema */Table::pTrigger14224,653493 - Schema *pSchema; /* Schema that contains this table */pSchema14225,653557 - Schema *pSchema; /* Schema that contains this table */Table::pSchema14225,653557 - Table *pNextZombie; /* Next on the Parse.pZombieTab list */pNextZombie14226,653618 - Table *pNextZombie; /* Next on the Parse.pZombieTab list */Table::pNextZombie14226,653618 -#define TF_Readonly TF_Readonly14238,654085 -#define TF_Ephemeral TF_Ephemeral14239,654149 -#define TF_HasPrimaryKey TF_HasPrimaryKey14240,654209 -#define TF_Autoincrement TF_Autoincrement14241,654274 -#define TF_Virtual TF_Virtual14242,654352 -#define TF_WithoutRowid TF_WithoutRowid14243,654412 -#define TF_NoVisibleRowid TF_NoVisibleRowid14244,654487 -#define TF_OOOHidden TF_OOOHidden14245,654559 -# define IsVirtual(IsVirtual14254,654845 -# define IsVirtual(IsVirtual14256,654913 -# define IsHiddenColumn(IsHiddenColumn14266,655258 -# define IsOrdinaryHiddenColumn(IsOrdinaryHiddenColumn14267,655332 -# define IsHiddenColumn(IsHiddenColumn14269,655447 -# define IsOrdinaryHiddenColumn(IsOrdinaryHiddenColumn14270,655521 -# define IsHiddenColumn(IsHiddenColumn14272,655565 -# define IsOrdinaryHiddenColumn(IsOrdinaryHiddenColumn14273,655603 -#define HasRowid(HasRowid14278,655684 -#define VisibleRowid(VisibleRowid14279,655747 -struct FKey {FKey14309,656862 - Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */pFrom14310,656876 - Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */FKey::pFrom14310,656876 - FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */pNextFrom14311,656954 - FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */FKey::pNextFrom14311,656954 - char *zTo; /* Name of table that the key points to (aka: Parent) */zTo14312,657035 - char *zTo; /* Name of table that the key points to (aka: Parent) */FKey::zTo14312,657035 - FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */pNextTo14313,657112 - FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */FKey::pNextTo14313,657112 - FKey *pPrevTo; /* Previous with the same zTo */pPrevTo14314,657181 - FKey *pPrevTo; /* Previous with the same zTo */FKey::pPrevTo14314,657181 - int nCol; /* Number of columns in this key */nCol14315,657234 - int nCol; /* Number of columns in this key */FKey::nCol14315,657234 - u8 isDeferred; /* True if constraint checking is deferred till COMMIT */isDeferred14317,657316 - u8 isDeferred; /* True if constraint checking is deferred till COMMIT */FKey::isDeferred14317,657316 - u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */aAction14318,657397 - u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */FKey::aAction14318,657397 - Trigger *apTrigger[2];/* Triggers for aAction[] actions */apTrigger14319,657473 - Trigger *apTrigger[2];/* Triggers for aAction[] actions */FKey::apTrigger14319,657473 - struct sColMap { /* Mapping of columns in pFrom to columns in zTo */sColMap14320,657534 - struct sColMap { /* Mapping of columns in pFrom to columns in zTo */FKey::sColMap14320,657534 - int iFrom; /* Index of column in pFrom */iFrom14321,657610 - int iFrom; /* Index of column in pFrom */FKey::sColMap::iFrom14321,657610 - char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */zCol14322,657667 - char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */FKey::sColMap::zCol14322,657667 - } aCol[1]; /* One entry for each of nCol columns */aCol14323,657747 - } aCol[1]; /* One entry for each of nCol columns */FKey::aCol14323,657747 -#define OE_None OE_None14351,659198 -#define OE_Rollback OE_Rollback14352,659260 -#define OE_Abort OE_Abort14353,659338 -#define OE_Fail OE_Fail14354,659416 -#define OE_Ignore OE_Ignore14355,659493 -#define OE_Replace OE_Replace14356,659572 -#define OE_Restrict OE_Restrict14358,659652 -#define OE_SetNull OE_SetNull14359,659731 -#define OE_SetDflt OE_SetDflt14360,659795 -#define OE_Cascade OE_Cascade14361,659866 -#define OE_Default OE_Default14363,659917 -struct KeyInfo {KeyInfo14375,660321 - u32 nRef; /* Number of references to this KeyInfo object */nRef14376,660338 - u32 nRef; /* Number of references to this KeyInfo object */KeyInfo::nRef14376,660338 - u8 enc; /* Text encoding - one of the SQLITE_UTF* values */enc14377,660410 - u8 enc; /* Text encoding - one of the SQLITE_UTF* values */KeyInfo::enc14377,660410 - u16 nField; /* Number of key columns in the index */nField14378,660484 - u16 nField; /* Number of key columns in the index */KeyInfo::nField14378,660484 - u16 nXField; /* Number of columns beyond the key columns */nXField14379,660547 - u16 nXField; /* Number of columns beyond the key columns */KeyInfo::nXField14379,660547 - sqlite3 *db; /* The database connection */db14380,660616 - sqlite3 *db; /* The database connection */KeyInfo::db14380,660616 - u8 *aSortOrder; /* Sort order for each column. */aSortOrder14381,660668 - u8 *aSortOrder; /* Sort order for each column. */KeyInfo::aSortOrder14381,660668 - CollSeq *aColl[1]; /* Collating sequence for each term of the key */aColl14382,660724 - CollSeq *aColl[1]; /* Collating sequence for each term of the key */KeyInfo::aColl14382,660724 -struct UnpackedRecord {UnpackedRecord14420,662533 - KeyInfo *pKeyInfo; /* Collation and sort-order information */pKeyInfo14421,662557 - KeyInfo *pKeyInfo; /* Collation and sort-order information */UnpackedRecord::pKeyInfo14421,662557 - Mem *aMem; /* Values */aMem14422,662622 - Mem *aMem; /* Values */UnpackedRecord::aMem14422,662622 - u16 nField; /* Number of entries in apMem[] */nField14423,662657 - u16 nField; /* Number of entries in apMem[] */UnpackedRecord::nField14423,662657 - i8 default_rc; /* Comparison result if keys are equal */default_rc14424,662714 - i8 default_rc; /* Comparison result if keys are equal */UnpackedRecord::default_rc14424,662714 - u8 errCode; /* Error detected by xRecordCompare (CORRUPT or NOMEM) */errCode14425,662778 - u8 errCode; /* Error detected by xRecordCompare (CORRUPT or NOMEM) */UnpackedRecord::errCode14425,662778 - i8 r1; /* Value to return if (lhs > rhs) */r114426,662858 - i8 r1; /* Value to return if (lhs > rhs) */UnpackedRecord::r114426,662858 - i8 r2; /* Value to return if (rhs < lhs) */r214427,662917 - i8 r2; /* Value to return if (rhs < lhs) */UnpackedRecord::r214427,662917 - u8 eqSeen; /* True if an equality comparison has been seen */eqSeen14428,662976 - u8 eqSeen; /* True if an equality comparison has been seen */UnpackedRecord::eqSeen14428,662976 -struct Index {Index14466,664760 - char *zName; /* Name of this index */zName14467,664775 - char *zName; /* Name of this index */Index::zName14467,664775 - i16 *aiColumn; /* Which columns are used by this index. 1st is 0 */aiColumn14468,664827 - i16 *aiColumn; /* Which columns are used by this index. 1st is 0 */Index::aiColumn14468,664827 - LogEst *aiRowLogEst; /* From ANALYZE: Est. rows selected by each column */aiRowLogEst14469,664908 - LogEst *aiRowLogEst; /* From ANALYZE: Est. rows selected by each column */Index::aiRowLogEst14469,664908 - Table *pTable; /* The SQL table being indexed */pTable14470,664989 - Table *pTable; /* The SQL table being indexed */Index::pTable14470,664989 - char *zColAff; /* String defining the affinity of each column */zColAff14471,665050 - char *zColAff; /* String defining the affinity of each column */Index::zColAff14471,665050 - Index *pNext; /* The next index associated with the same table */pNext14472,665127 - Index *pNext; /* The next index associated with the same table */Index::pNext14472,665127 - Schema *pSchema; /* Schema containing this index */pSchema14473,665206 - Schema *pSchema; /* Schema containing this index */Index::pSchema14473,665206 - u8 *aSortOrder; /* for each column: True==DESC, False==ASC */aSortOrder14474,665268 - u8 *aSortOrder; /* for each column: True==DESC, False==ASC */Index::aSortOrder14474,665268 - const char **azColl; /* Array of collation sequence names for index */azColl14475,665341 - const char **azColl; /* Array of collation sequence names for index */Index::azColl14475,665341 - Expr *pPartIdxWhere; /* WHERE clause for partial indices */pPartIdxWhere14476,665418 - Expr *pPartIdxWhere; /* WHERE clause for partial indices */Index::pPartIdxWhere14476,665418 - ExprList *aColExpr; /* Column expressions */aColExpr14477,665484 - ExprList *aColExpr; /* Column expressions */Index::aColExpr14477,665484 - int tnum; /* DB Page containing root of this index */tnum14478,665536 - int tnum; /* DB Page containing root of this index */Index::tnum14478,665536 - LogEst szIdxRow; /* Estimated average row size in bytes */szIdxRow14479,665607 - LogEst szIdxRow; /* Estimated average row size in bytes */Index::szIdxRow14479,665607 - u16 nKeyCol; /* Number of columns forming the key */nKeyCol14480,665676 - u16 nKeyCol; /* Number of columns forming the key */Index::nKeyCol14480,665676 - u16 nColumn; /* Number of columns stored in the index */nColumn14481,665743 - u16 nColumn; /* Number of columns stored in the index */Index::nColumn14481,665743 - u8 onError; /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */onError14482,665814 - u8 onError; /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */Index::onError14482,665814 - unsigned idxType:2; /* 1==UNIQUE, 2==PRIMARY KEY, 0==CREATE INDEX */idxType14483,665891 - unsigned idxType:2; /* 1==UNIQUE, 2==PRIMARY KEY, 0==CREATE INDEX */Index::idxType14483,665891 - unsigned bUnordered:1; /* Use this index for == or IN queries only */bUnordered14484,665967 - unsigned bUnordered:1; /* Use this index for == or IN queries only */Index::bUnordered14484,665967 - unsigned uniqNotNull:1; /* True if UNIQUE and NOT NULL for all columns */uniqNotNull14485,666041 - unsigned uniqNotNull:1; /* True if UNIQUE and NOT NULL for all columns */Index::uniqNotNull14485,666041 - unsigned isResized:1; /* True if resizeIndexObject() has been called */isResized14486,666118 - unsigned isResized:1; /* True if resizeIndexObject() has been called */Index::isResized14486,666118 - unsigned isCovering:1; /* True if this is a covering index */isCovering14487,666195 - unsigned isCovering:1; /* True if this is a covering index */Index::isCovering14487,666195 - unsigned noSkipScan:1; /* Do not try to use skip-scan if true */noSkipScan14488,666261 - unsigned noSkipScan:1; /* Do not try to use skip-scan if true */Index::noSkipScan14488,666261 - int nSample; /* Number of elements in aSample[] */nSample14490,666366 - int nSample; /* Number of elements in aSample[] */Index::nSample14490,666366 - int nSampleCol; /* Size of IndexSample.anEq[] and so on */nSampleCol14491,666431 - int nSampleCol; /* Size of IndexSample.anEq[] and so on */Index::nSampleCol14491,666431 - tRowcnt *aAvgEq; /* Average nEq values for keys not in aSample */aAvgEq14492,666501 - tRowcnt *aAvgEq; /* Average nEq values for keys not in aSample */Index::aAvgEq14492,666501 - IndexSample *aSample; /* Samples of the left-most key */aSample14493,666577 - IndexSample *aSample; /* Samples of the left-most key */Index::aSample14493,666577 - tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */aiRowEst14494,666639 - tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */Index::aiRowEst14494,666639 - tRowcnt nRowEst0; /* Non-logarithmic number of rows in the index */nRowEst014495,666714 - tRowcnt nRowEst0; /* Non-logarithmic number of rows in the index */Index::nRowEst014495,666714 -#define SQLITE_IDXTYPE_APPDEF SQLITE_IDXTYPE_APPDEF14502,666844 -#define SQLITE_IDXTYPE_UNIQUE SQLITE_IDXTYPE_UNIQUE14503,666916 -#define SQLITE_IDXTYPE_PRIMARYKEY SQLITE_IDXTYPE_PRIMARYKEY14504,666992 -#define IsPrimaryKeyIndex(IsPrimaryKeyIndex14507,667123 -#define IsUniqueIndex(IsUniqueIndex14510,667243 -#define XN_ROWID XN_ROWID14515,667429 -#define XN_EXPR XN_EXPR14516,667493 -struct IndexSample {IndexSample14523,667766 - void *p; /* Pointer to sampled record */p14524,667787 - void *p; /* Pointer to sampled record */IndexSample::p14524,667787 - int n; /* Size of record in bytes */n14525,667839 - int n; /* Size of record in bytes */IndexSample::n14525,667839 - tRowcnt *anEq; /* Est. number of rows where the key equals this sample */anEq14526,667889 - tRowcnt *anEq; /* Est. number of rows where the key equals this sample */IndexSample::anEq14526,667889 - tRowcnt *anLt; /* Est. number of rows where key is less than this sample */anLt14527,667968 - tRowcnt *anLt; /* Est. number of rows where key is less than this sample */IndexSample::anLt14527,667968 - tRowcnt *anDLt; /* Est. number of distinct keys less than this sample */anDLt14528,668049 - tRowcnt *anDLt; /* Est. number of distinct keys less than this sample */IndexSample::anDLt14528,668049 -struct Token {Token14539,668436 - const char *z; /* Text of the token. Not NULL-terminated! */z14540,668451 - const char *z; /* Text of the token. Not NULL-terminated! */Token::z14540,668451 - unsigned int n; /* Number of characters in this token */n14541,668519 - unsigned int n; /* Number of characters in this token */Token::n14541,668519 -struct AggInfo {AggInfo14557,669181 - u8 directMode; /* Direct rendering mode means take data directlydirectMode14558,669198 - u8 directMode; /* Direct rendering mode means take data directlyAggInfo::directMode14558,669198 - u8 useSortingIdx; /* In direct mode, reference the sorting index ratheruseSortingIdx14560,669355 - u8 useSortingIdx; /* In direct mode, reference the sorting index ratherAggInfo::useSortingIdx14560,669355 - int sortingIdx; /* Cursor number of the sorting index */sortingIdx14562,669489 - int sortingIdx; /* Cursor number of the sorting index */AggInfo::sortingIdx14562,669489 - int sortingIdxPTab; /* Cursor number of pseudo-table */sortingIdxPTab14563,669556 - int sortingIdxPTab; /* Cursor number of pseudo-table */AggInfo::sortingIdxPTab14563,669556 - int nSortingColumn; /* Number of columns in the sorting index */nSortingColumn14564,669618 - int nSortingColumn; /* Number of columns in the sorting index */AggInfo::nSortingColumn14564,669618 - int mnReg, mxReg; /* Range of registers allocated for aCol and aFunc */mnReg14565,669689 - int mnReg, mxReg; /* Range of registers allocated for aCol and aFunc */AggInfo::mnReg14565,669689 - int mnReg, mxReg; /* Range of registers allocated for aCol and aFunc */mxReg14565,669689 - int mnReg, mxReg; /* Range of registers allocated for aCol and aFunc */AggInfo::mxReg14565,669689 - ExprList *pGroupBy; /* The group by clause */pGroupBy14566,669769 - ExprList *pGroupBy; /* The group by clause */AggInfo::pGroupBy14566,669769 - struct AggInfo_col { /* For each column used in source tables */AggInfo_col14567,669821 - struct AggInfo_col { /* For each column used in source tables */AggInfo::AggInfo_col14567,669821 - Table *pTab; /* Source table */pTab14568,669891 - Table *pTab; /* Source table */AggInfo::AggInfo_col::pTab14568,669891 - int iTable; /* Cursor number of the source table */iTable14569,669939 - int iTable; /* Cursor number of the source table */AggInfo::AggInfo_col::iTable14569,669939 - int iColumn; /* Column number within the source table */iColumn14570,670008 - int iColumn; /* Column number within the source table */AggInfo::AggInfo_col::iColumn14570,670008 - int iSorterColumn; /* Column number in the sorting index */iSorterColumn14571,670081 - int iSorterColumn; /* Column number in the sorting index */AggInfo::AggInfo_col::iSorterColumn14571,670081 - int iMem; /* Memory location that acts as accumulator */iMem14572,670151 - int iMem; /* Memory location that acts as accumulator */AggInfo::AggInfo_col::iMem14572,670151 - Expr *pExpr; /* The original expression */pExpr14573,670227 - Expr *pExpr; /* The original expression */AggInfo::AggInfo_col::pExpr14573,670227 - } *aCol;aCol14574,670286 - } *aCol;AggInfo::aCol14574,670286 - int nColumn; /* Number of used entries in aCol[] */nColumn14575,670297 - int nColumn; /* Number of used entries in aCol[] */AggInfo::nColumn14575,670297 - int nAccumulator; /* Number of columns that show through to the output.nAccumulator14576,670362 - int nAccumulator; /* Number of columns that show through to the output.AggInfo::nAccumulator14576,670362 - struct AggInfo_func { /* For each aggregate function */AggInfo_func14579,670573 - struct AggInfo_func { /* For each aggregate function */AggInfo::AggInfo_func14579,670573 - Expr *pExpr; /* Expression encoding the function */pExpr14580,670633 - Expr *pExpr; /* Expression encoding the function */AggInfo::AggInfo_func::pExpr14580,670633 - FuncDef *pFunc; /* The aggregate function implementation */pFunc14581,670701 - FuncDef *pFunc; /* The aggregate function implementation */AggInfo::AggInfo_func::pFunc14581,670701 - int iMem; /* Memory location that acts as accumulator */iMem14582,670774 - int iMem; /* Memory location that acts as accumulator */AggInfo::AggInfo_func::iMem14582,670774 - int iDistinct; /* Ephemeral table used to enforce DISTINCT */iDistinct14583,670850 - int iDistinct; /* Ephemeral table used to enforce DISTINCT */AggInfo::AggInfo_func::iDistinct14583,670850 - } *aFunc;aFunc14584,670926 - } *aFunc;AggInfo::aFunc14584,670926 - int nFunc; /* Number of entries in aFunc[] */nFunc14585,670938 - int nFunc; /* Number of entries in aFunc[] */AggInfo::nFunc14585,670938 -typedef i16 ynVar;ynVar14599,671587 -typedef int ynVar;ynVar14601,671612 -struct Expr {Expr14667,674871 - u8 op; /* Operation performed by this node */op14668,674885 - u8 op; /* Operation performed by this node */Expr::op14668,674885 - char affinity; /* The affinity of the column or 0 if not a column */affinity14669,674949 - char affinity; /* The affinity of the column or 0 if not a column */Expr::affinity14669,674949 - u32 flags; /* Various flags. EP_* See below */flags14670,675028 - u32 flags; /* Various flags. EP_* See below */Expr::flags14670,675028 - char *zToken; /* Token value. Zero terminated and dequoted */zToken14672,675100 - char *zToken; /* Token value. Zero terminated and dequoted */Expr::__anon454::zToken14672,675100 - int iValue; /* Non-negative integer value if EP_IntValue */iValue14673,675175 - int iValue; /* Non-negative integer value if EP_IntValue */Expr::__anon454::iValue14673,675175 - } u;u14674,675250 - } u;Expr::u14674,675250 - Expr *pLeft; /* Left subnode */pLeft14681,675531 - Expr *pLeft; /* Left subnode */Expr::pLeft14681,675531 - Expr *pRight; /* Right subnode */pRight14682,675575 - Expr *pRight; /* Right subnode */Expr::pRight14682,675575 - ExprList *pList; /* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN */pList14684,675630 - ExprList *pList; /* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN */Expr::__anon455::pList14684,675630 - Select *pSelect; /* EP_xIsSelect and op = IN, EXISTS, SELECT */pSelect14685,675710 - Select *pSelect; /* EP_xIsSelect and op = IN, EXISTS, SELECT */Expr::__anon455::pSelect14685,675710 - } x;x14686,675782 - } x;Expr::x14686,675782 - int nHeight; /* Height of the tree headed by this node */nHeight14694,676089 - int nHeight; /* Height of the tree headed by this node */Expr::nHeight14694,676089 - int iTable; /* TK_COLUMN: cursor number of table holding columniTable14696,676166 - int iTable; /* TK_COLUMN: cursor number of table holding columnExpr::iTable14696,676166 - ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid.iColumn14700,676431 - ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid.Expr::iColumn14700,676431 - i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */iAgg14702,676574 - i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */Expr::iAgg14702,676574 - i16 iRightJoinTable; /* If EP_FromJoin, the right table of the join */iRightJoinTable14703,676650 - i16 iRightJoinTable; /* If EP_FromJoin, the right table of the join */Expr::iRightJoinTable14703,676650 - u8 op2; /* TK_REGISTER: original value of Expr.opop214704,676725 - u8 op2; /* TK_REGISTER: original value of Expr.opExpr::op214704,676725 - AggInfo *pAggInfo; /* Used by TK_AGG_COLUMN and TK_AGG_FUNCTION */pAggInfo14707,676923 - AggInfo *pAggInfo; /* Used by TK_AGG_COLUMN and TK_AGG_FUNCTION */Expr::pAggInfo14707,676923 - Table *pTab; /* Table for TK_COLUMN expressions. */pTab14708,676996 - Table *pTab; /* Table for TK_COLUMN expressions. */Expr::pTab14708,676996 -#define EP_FromJoin EP_FromJoin14714,677137 -#define EP_Agg EP_Agg14715,677217 -#define EP_Resolved EP_Resolved14716,677294 -#define EP_Error EP_Error14717,677364 -#define EP_Distinct EP_Distinct14718,677439 -#define EP_VarSelect EP_VarSelect14719,677516 -#define EP_DblQuoted EP_DblQuoted14720,677588 -#define EP_InfixFunc EP_InfixFunc14721,677656 -#define EP_Collate EP_Collate14722,677736 -#define EP_Generic EP_Generic14723,677808 -#define EP_IntValue EP_IntValue14724,677884 -#define EP_xIsSelect EP_xIsSelect14725,677956 -#define EP_Skip EP_Skip14726,678034 -#define EP_Reduced EP_Reduced14727,678095 -#define EP_TokenOnly EP_TokenOnly14728,678171 -#define EP_Static EP_Static14729,678249 -#define EP_MemToken EP_MemToken14730,678327 -#define EP_NoReduce EP_NoReduce14731,678399 -#define EP_Unlikely EP_Unlikely14732,678467 -#define EP_ConstFunc EP_ConstFunc14733,678539 -#define EP_CanBeNull EP_CanBeNull14734,678619 -#define EP_Subquery EP_Subquery14735,678695 -#define EP_Alias EP_Alias14736,678766 -#define EP_Propagate EP_Propagate14741,678887 -#define ExprHasProperty(ExprHasProperty14747,679059 -#define ExprHasAllProperty(ExprHasAllProperty14748,679114 -#define ExprSetProperty(ExprSetProperty14749,679171 -#define ExprClearProperty(ExprClearProperty14750,679220 -# define ExprSetVVAProperty(ExprSetVVAProperty14757,679479 -# define ExprSetVVAProperty(ExprSetVVAProperty14759,679535 -#define EXPR_FULLSIZE EXPR_FULLSIZE14767,679774 -#define EXPR_REDUCEDSIZE EXPR_REDUCEDSIZE14768,679845 -#define EXPR_TOKENONLYSIZE EXPR_TOKENONLYSIZE14769,679922 -#define EXPRDUP_REDUCE EXPRDUP_REDUCE14775,680117 -struct ExprList {ExprList14793,681061 - int nExpr; /* Number of expressions on the list */nExpr14794,681079 - int nExpr; /* Number of expressions on the list */ExprList::nExpr14794,681079 - struct ExprList_item { /* For each expression in the list */ExprList_item14795,681144 - struct ExprList_item { /* For each expression in the list */ExprList::ExprList_item14795,681144 - Expr *pExpr; /* The list of expressions */pExpr14796,681207 - Expr *pExpr; /* The list of expressions */ExprList::ExprList_item::pExpr14796,681207 - char *zName; /* Token associated with this expression */zName14797,681265 - char *zName; /* Token associated with this expression */ExprList::ExprList_item::zName14797,681265 - char *zSpan; /* Original text of the expression */zSpan14798,681337 - char *zSpan; /* Original text of the expression */ExprList::ExprList_item::zSpan14798,681337 - u8 sortOrder; /* 1 for DESC or 0 for ASC */sortOrder14799,681403 - u8 sortOrder; /* 1 for DESC or 0 for ASC */ExprList::ExprList_item::sortOrder14799,681403 - unsigned done :1; /* A flag to indicate when processing is finished */done14800,681461 - unsigned done :1; /* A flag to indicate when processing is finished */ExprList::ExprList_item::done14800,681461 - unsigned bSpanIsTab :1; /* zSpan holds DB.TABLE.COLUMN */bSpanIsTab14801,681542 - unsigned bSpanIsTab :1; /* zSpan holds DB.TABLE.COLUMN */ExprList::ExprList_item::bSpanIsTab14801,681542 - unsigned reusable :1; /* Constant expression is reusable */reusable14802,681604 - unsigned reusable :1; /* Constant expression is reusable */ExprList::ExprList_item::reusable14802,681604 - u16 iOrderByCol; /* For ORDER BY, column number in result set */iOrderByCol14805,681697 - u16 iOrderByCol; /* For ORDER BY, column number in result set */ExprList::ExprList_item::__anon456::__anon457::iOrderByCol14805,681697 - u16 iAlias; /* Index into Parse.aAlias[] for zName */iAlias14806,681775 - u16 iAlias; /* Index into Parse.aAlias[] for zName */ExprList::ExprList_item::__anon456::__anon457::iAlias14806,681775 - } x;x14807,681847 - } x;ExprList::ExprList_item::__anon456::x14807,681847 - int iConstExprReg; /* Register in which Expr value is cached */iConstExprReg14808,681858 - int iConstExprReg; /* Register in which Expr value is cached */ExprList::ExprList_item::__anon456::iConstExprReg14808,681858 - } u;u14809,681933 - } u;ExprList::ExprList_item::u14809,681933 - } *a; /* Alloc a power of two greater or equal to nExpr */a14810,681942 - } *a; /* Alloc a power of two greater or equal to nExpr */ExprList::a14810,681942 -struct ExprSpan {ExprSpan14818,682185 - Expr *pExpr; /* The expression parse tree */pExpr14819,682203 - Expr *pExpr; /* The expression parse tree */ExprSpan::pExpr14819,682203 - const char *zStart; /* First character of input text */zStart14820,682259 - const char *zStart; /* First character of input text */ExprSpan::zStart14820,682259 - const char *zEnd; /* One character past the end of input text */zEnd14821,682319 - const char *zEnd; /* One character past the end of input text */ExprSpan::zEnd14821,682319 -struct IdList {IdList14839,682929 - struct IdList_item {IdList_item14840,682945 - struct IdList_item {IdList::IdList_item14840,682945 - char *zName; /* Name of the identifier */zName14841,682968 - char *zName; /* Name of the identifier */IdList::IdList_item::zName14841,682968 - int idx; /* Index in some Table.aCol[] of a column named zName */idx14842,683019 - int idx; /* Index in some Table.aCol[] of a column named zName */IdList::IdList_item::idx14842,683019 - } *a;a14843,683098 - } *a;IdList::a14843,683098 - int nId; /* Number of identifiers on the list */nId14844,683106 - int nId; /* Number of identifiers on the list */IdList::nId14844,683106 - typedef SQLITE_BITMASK_TYPE Bitmask;Bitmask14855,683458 - typedef u64 Bitmask;Bitmask14857,683503 -#define BMS BMS14863,683605 -#define MASKBIT(MASKBIT14868,683674 -#define MASKBIT32(MASKBIT3214869,683715 -#define ALLBITS ALLBITS14870,683761 -struct SrcList {SrcList14891,684801 - int nSrc; /* Number of tables or subqueries in the FROM clause */nSrc14892,684818 - int nSrc; /* Number of tables or subqueries in the FROM clause */SrcList::nSrc14892,684818 - u32 nAlloc; /* Number of entries allocated in a[] below */nAlloc14893,684893 - u32 nAlloc; /* Number of entries allocated in a[] below */SrcList::nAlloc14893,684893 - struct SrcList_item {SrcList_item14894,684959 - struct SrcList_item {SrcList::SrcList_item14894,684959 - Schema *pSchema; /* Schema to which this item is fixed */pSchema14895,684983 - Schema *pSchema; /* Schema to which this item is fixed */SrcList::SrcList_item::pSchema14895,684983 - char *zDatabase; /* Name of database holding this table */zDatabase14896,685046 - char *zDatabase; /* Name of database holding this table */SrcList::SrcList_item::zDatabase14896,685046 - char *zName; /* Name of the table */zName14897,685110 - char *zName; /* Name of the table */SrcList::SrcList_item::zName14897,685110 - char *zAlias; /* The "B" part of a "A AS B" phrase. zName is the "A" */zAlias14898,685156 - char *zAlias; /* The "B" part of a "A AS B" phrase. zName is the "A" */SrcList::SrcList_item::zAlias14898,685156 - Table *pTab; /* An SQL table corresponding to zName */pTab14899,685237 - Table *pTab; /* An SQL table corresponding to zName */SrcList::SrcList_item::pTab14899,685237 - Select *pSelect; /* A SELECT statement used in place of a table name */pSelect14900,685301 - Select *pSelect; /* A SELECT statement used in place of a table name */SrcList::SrcList_item::pSelect14900,685301 - int addrFillSub; /* Address of subroutine to manifest a subquery */addrFillSub14901,685378 - int addrFillSub; /* Address of subroutine to manifest a subquery */SrcList::SrcList_item::addrFillSub14901,685378 - int regReturn; /* Register holding return address of addrFillSub */regReturn14902,685451 - int regReturn; /* Register holding return address of addrFillSub */SrcList::SrcList_item::regReturn14902,685451 - int regResult; /* Registers holding results of a co-routine */regResult14903,685526 - int regResult; /* Registers holding results of a co-routine */SrcList::SrcList_item::regResult14903,685526 - u8 jointype; /* Type of join between this able and the previous */jointype14905,685609 - u8 jointype; /* Type of join between this able and the previous */SrcList::SrcList_item::__anon458::jointype14905,685609 - unsigned notIndexed :1; /* True if there is a NOT INDEXED clause */notIndexed14906,685687 - unsigned notIndexed :1; /* True if there is a NOT INDEXED clause */SrcList::SrcList_item::__anon458::notIndexed14906,685687 - unsigned isIndexedBy :1; /* True if there is an INDEXED BY clause */isIndexedBy14907,685764 - unsigned isIndexedBy :1; /* True if there is an INDEXED BY clause */SrcList::SrcList_item::__anon458::isIndexedBy14907,685764 - unsigned isTabFunc :1; /* True if table-valued-function syntax */isTabFunc14908,685841 - unsigned isTabFunc :1; /* True if table-valued-function syntax */SrcList::SrcList_item::__anon458::isTabFunc14908,685841 - unsigned isCorrelated :1; /* True if sub-query is correlated */isCorrelated14909,685917 - unsigned isCorrelated :1; /* True if sub-query is correlated */SrcList::SrcList_item::__anon458::isCorrelated14909,685917 - unsigned viaCoroutine :1; /* Implemented as a co-routine */viaCoroutine14910,685988 - unsigned viaCoroutine :1; /* Implemented as a co-routine */SrcList::SrcList_item::__anon458::viaCoroutine14910,685988 - unsigned isRecursive :1; /* True for recursive reference in WITH */isRecursive14911,686055 - unsigned isRecursive :1; /* True for recursive reference in WITH */SrcList::SrcList_item::__anon458::isRecursive14911,686055 - } fg;fg14912,686131 - } fg;SrcList::SrcList_item::fg14912,686131 - u8 iSelectId; /* If pSelect!=0, the id of the sub-select in EQP */iSelectId14914,686169 - u8 iSelectId; /* If pSelect!=0, the id of the sub-select in EQP */SrcList::SrcList_item::iSelectId14914,686169 - int iCursor; /* The VDBE cursor number used to access this table */iCursor14916,686251 - int iCursor; /* The VDBE cursor number used to access this table */SrcList::SrcList_item::iCursor14916,686251 - Expr *pOn; /* The ON clause of a join */pOn14917,686328 - Expr *pOn; /* The ON clause of a join */SrcList::SrcList_item::pOn14917,686328 - IdList *pUsing; /* The USING clause of a join */pUsing14918,686380 - IdList *pUsing; /* The USING clause of a join */SrcList::SrcList_item::pUsing14918,686380 - Bitmask colUsed; /* Bit N (1<" clause */zIndexedBy14921,686520 - char *zIndexedBy; /* Identifier from "INDEXED BY " clause */SrcList::SrcList_item::__anon459::zIndexedBy14921,686520 - ExprList *pFuncArg; /* Arguments to table-valued-function */pFuncArg14922,686598 - ExprList *pFuncArg; /* Arguments to table-valued-function */SrcList::SrcList_item::__anon459::pFuncArg14922,686598 - } u1;u114923,686666 - } u1;SrcList::SrcList_item::u114923,686666 - Index *pIBIndex; /* Index structure corresponding to u1.zIndexedBy */pIBIndex14924,686676 - Index *pIBIndex; /* Index structure corresponding to u1.zIndexedBy */SrcList::SrcList_item::pIBIndex14924,686676 - } a[1]; /* One entry for each identifier on the list */a14925,686751 - } a[1]; /* One entry for each identifier on the list */SrcList::a14925,686751 -#define JT_INNER JT_INNER14931,686883 -#define JT_CROSS JT_CROSS14932,686952 -#define JT_NATURAL JT_NATURAL14933,687023 -#define JT_LEFT JT_LEFT14934,687086 -#define JT_RIGHT JT_RIGHT14935,687139 -#define JT_OUTER JT_OUTER14936,687193 -#define JT_ERROR JT_ERROR14937,687261 -#define WHERE_ORDERBY_NORMAL WHERE_ORDERBY_NORMAL14947,687542 -#define WHERE_ORDERBY_MIN WHERE_ORDERBY_MIN14948,687592 -#define WHERE_ORDERBY_MAX WHERE_ORDERBY_MAX14949,687671 -#define WHERE_ONEPASS_DESIRED WHERE_ONEPASS_DESIRED14950,687750 -#define WHERE_DUPLICATES_OK WHERE_DUPLICATES_OK14951,687828 -#define WHERE_OMIT_OPEN_CLOSE WHERE_OMIT_OPEN_CLOSE14952,687906 -#define WHERE_FORCE_TABLE WHERE_FORCE_TABLE14953,687981 -#define WHERE_ONETABLE_ONLY WHERE_ONETABLE_ONLY14954,688057 -#define WHERE_NO_AUTOINDEX WHERE_NO_AUTOINDEX14955,688137 -#define WHERE_GROUPBY WHERE_GROUPBY14956,688208 -#define WHERE_DISTINCTBY WHERE_DISTINCTBY14957,688282 -#define WHERE_WANT_DISTINCT WHERE_WANT_DISTINCT14958,688363 -#define WHERE_SORTBYGROUP WHERE_SORTBYGROUP14959,688439 -#define WHERE_REOPEN_IDX WHERE_REOPEN_IDX14960,688514 -#define WHERE_ONEPASS_MULTIROW WHERE_ONEPASS_MULTIROW14961,688582 -#define WHERE_USE_LIMIT WHERE_USE_LIMIT14962,688659 -#define WHERE_SEEK_TABLE WHERE_SEEK_TABLE14963,688736 -#define WHERE_DISTINCT_NOOP WHERE_DISTINCT_NOOP14967,688872 -#define WHERE_DISTINCT_UNIQUE WHERE_DISTINCT_UNIQUE14968,688940 -#define WHERE_DISTINCT_ORDERED WHERE_DISTINCT_ORDERED14969,688996 -#define WHERE_DISTINCT_UNORDERED WHERE_DISTINCT_UNORDERED14970,689066 -struct NameContext {NameContext14993,690241 - Parse *pParse; /* The parser */pParse14994,690262 - Parse *pParse; /* The parser */NameContext::pParse14994,690262 - SrcList *pSrcList; /* One or more tables used to resolve names */pSrcList14995,690302 - SrcList *pSrcList; /* One or more tables used to resolve names */NameContext::pSrcList14995,690302 - ExprList *pEList; /* Optional list of result-set columns */pEList14996,690372 - ExprList *pEList; /* Optional list of result-set columns */NameContext::pEList14996,690372 - AggInfo *pAggInfo; /* Information about aggregates at this level */pAggInfo14997,690437 - AggInfo *pAggInfo; /* Information about aggregates at this level */NameContext::pAggInfo14997,690437 - NameContext *pNext; /* Next outer name context. NULL for outermost */pNext14998,690509 - NameContext *pNext; /* Next outer name context. NULL for outermost */NameContext::pNext14998,690509 - int nRef; /* Number of names resolved by this context */nRef14999,690583 - int nRef; /* Number of names resolved by this context */NameContext::nRef14999,690583 - int nErr; /* Number of errors encountered while resolving names */nErr15000,690653 - int nErr; /* Number of errors encountered while resolving names */NameContext::nErr15000,690653 - u16 ncFlags; /* Zero or more NC_* flags defined below */ncFlags15001,690733 - u16 ncFlags; /* Zero or more NC_* flags defined below */NameContext::ncFlags15001,690733 -#define NC_AllowAgg NC_AllowAgg15012,691008 -#define NC_PartIdx NC_PartIdx15013,691080 -#define NC_IsCheck NC_IsCheck15014,691155 -#define NC_InAggFunc NC_InAggFunc15015,691236 -#define NC_HasAgg NC_HasAgg15016,691314 -#define NC_IdxExpr NC_IdxExpr15017,691386 -#define NC_VarSelect NC_VarSelect15018,691463 -#define NC_MinMaxAgg NC_MinMaxAgg15019,691534 -struct Select {Select15041,692685 - ExprList *pEList; /* The fields of the result */pEList15042,692701 - ExprList *pEList; /* The fields of the result */Select::pEList15042,692701 - u8 op; /* One of: TK_UNION TK_ALL TK_INTERSECT TK_EXCEPT */op15043,692757 - u8 op; /* One of: TK_UNION TK_ALL TK_INTERSECT TK_EXCEPT */Select::op15043,692757 - LogEst nSelectRow; /* Estimated number of result rows */nSelectRow15044,692835 - LogEst nSelectRow; /* Estimated number of result rows */Select::nSelectRow15044,692835 - u32 selFlags; /* Various SF_* values */selFlags15045,692898 - u32 selFlags; /* Various SF_* values */Select::selFlags15045,692898 - int iLimit, iOffset; /* Memory registers holding LIMIT & OFFSET counters */iLimit15046,692949 - int iLimit, iOffset; /* Memory registers holding LIMIT & OFFSET counters */Select::iLimit15046,692949 - int iLimit, iOffset; /* Memory registers holding LIMIT & OFFSET counters */iOffset15046,692949 - int iLimit, iOffset; /* Memory registers holding LIMIT & OFFSET counters */Select::iOffset15046,692949 - char zSelName[12]; /* Symbolic name of this SELECT use for debugging */zSelName15048,693053 - char zSelName[12]; /* Symbolic name of this SELECT use for debugging */Select::zSelName15048,693053 - int addrOpenEphm[2]; /* OP_OpenEphem opcodes related to this select */addrOpenEphm15050,693138 - int addrOpenEphm[2]; /* OP_OpenEphem opcodes related to this select */Select::addrOpenEphm15050,693138 - SrcList *pSrc; /* The FROM clause */pSrc15051,693213 - SrcList *pSrc; /* The FROM clause */Select::pSrc15051,693213 - Expr *pWhere; /* The WHERE clause */pWhere15052,693260 - Expr *pWhere; /* The WHERE clause */Select::pWhere15052,693260 - ExprList *pGroupBy; /* The GROUP BY clause */pGroupBy15053,693308 - ExprList *pGroupBy; /* The GROUP BY clause */Select::pGroupBy15053,693308 - Expr *pHaving; /* The HAVING clause */pHaving15054,693359 - Expr *pHaving; /* The HAVING clause */Select::pHaving15054,693359 - ExprList *pOrderBy; /* The ORDER BY clause */pOrderBy15055,693408 - ExprList *pOrderBy; /* The ORDER BY clause */Select::pOrderBy15055,693408 - Select *pPrior; /* Prior select in a compound select statement */pPrior15056,693459 - Select *pPrior; /* Prior select in a compound select statement */Select::pPrior15056,693459 - Select *pNext; /* Next select to the left in a compound */pNext15057,693534 - Select *pNext; /* Next select to the left in a compound */Select::pNext15057,693534 - Expr *pLimit; /* LIMIT expression. NULL means not used. */pLimit15058,693603 - Expr *pLimit; /* LIMIT expression. NULL means not used. */Select::pLimit15058,693603 - Expr *pOffset; /* OFFSET expression. NULL means not used. */pOffset15059,693673 - Expr *pOffset; /* OFFSET expression. NULL means not used. */Select::pOffset15059,693673 - With *pWith; /* WITH clause attached to this select. Or NULL. */pWith15060,693744 - With *pWith; /* WITH clause attached to this select. Or NULL. */Select::pWith15060,693744 -#define SF_Distinct SF_Distinct15072,694104 -#define SF_All SF_All15073,694171 -#define SF_Resolved SF_Resolved15074,694237 -#define SF_Aggregate SF_Aggregate15075,694309 -#define SF_HasAgg SF_HasAgg15076,694387 -#define SF_UsesEphemeral SF_UsesEphemeral15077,694457 -#define SF_Expanded SF_Expanded15078,694528 -#define SF_HasTypeInfo SF_HasTypeInfo15079,694606 -#define SF_Compound SF_Compound15080,694683 -#define SF_Values SF_Values15081,694749 -#define SF_MultiValue SF_MultiValue15082,694821 -#define SF_NestedFrom SF_NestedFrom15083,694900 -#define SF_MinMaxAgg SF_MinMaxAgg15084,694977 -#define SF_Recursive SF_Recursive15085,695054 -#define SF_FixedLimit SF_FixedLimit15086,695133 -#define SF_MaybeConvert SF_MaybeConvert15087,695209 -#define SF_Converted SF_Converted15088,695289 -#define SF_IncludeHidden SF_IncludeHidden15089,695367 -#define SRT_Union SRT_Union15156,698690 -#define SRT_Except SRT_Except15157,698757 -#define SRT_Exists SRT_Exists15158,698824 -#define SRT_Discard SRT_Discard15159,698893 -#define SRT_Fifo SRT_Fifo15160,698960 -#define SRT_DistFifo SRT_DistFifo15161,699039 -#define SRT_Queue SRT_Queue15162,699112 -#define SRT_DistQueue SRT_DistQueue15163,699171 -#define IgnorableOrderby(IgnorableOrderby15166,699304 -#define SRT_Output SRT_Output15168,699361 -#define SRT_Mem SRT_Mem15169,699421 -#define SRT_Set SRT_Set15170,699485 -#define SRT_EphemTab SRT_EphemTab15171,699553 -#define SRT_Coroutine SRT_Coroutine15172,699633 -#define SRT_Table SRT_Table15173,699699 -struct SelectDest {SelectDest15179,699879 - u8 eDest; /* How to dispose of the results. On of SRT_* above. */eDest15180,699899 - u8 eDest; /* How to dispose of the results. On of SRT_* above. */SelectDest::eDest15180,699899 - char affSdst; /* Affinity used when eDest==SRT_Set */affSdst15181,699979 - char affSdst; /* Affinity used when eDest==SRT_Set */SelectDest::affSdst15181,699979 - int iSDParm; /* A parameter used by the eDest disposal method */iSDParm15182,700042 - int iSDParm; /* A parameter used by the eDest disposal method */SelectDest::iSDParm15182,700042 - int iSdst; /* Base register where results are written */iSdst15183,700117 - int iSdst; /* Base register where results are written */SelectDest::iSdst15183,700117 - int nSdst; /* Number of registers allocated */nSdst15184,700186 - int nSdst; /* Number of registers allocated */SelectDest::nSdst15184,700186 - ExprList *pOrderBy; /* Key columns for SRT_Queue and SRT_DistQueue */pOrderBy15185,700245 - ExprList *pOrderBy; /* Key columns for SRT_Queue and SRT_DistQueue */SelectDest::pOrderBy15185,700245 -struct AutoincInfo {AutoincInfo15197,700823 - AutoincInfo *pNext; /* Next info block in a list of them all */pNext15198,700844 - AutoincInfo *pNext; /* Next info block in a list of them all */AutoincInfo::pNext15198,700844 - Table *pTab; /* Table this info block refers to */pTab15199,700912 - Table *pTab; /* Table this info block refers to */AutoincInfo::pTab15199,700912 - int iDb; /* Index in sqlite3.aDb[] of database holding pTab */iDb15200,700974 - int iDb; /* Index in sqlite3.aDb[] of database holding pTab */AutoincInfo::iDb15200,700974 - int regCtr; /* Memory register holding the rowid counter */regCtr15201,701052 - int regCtr; /* Memory register holding the rowid counter */AutoincInfo::regCtr15201,701052 -# define SQLITE_N_COLCACHE SQLITE_N_COLCACHE15208,701188 -struct TriggerPrg {TriggerPrg15229,702114 - Trigger *pTrigger; /* Trigger this program was coded from */pTrigger15230,702134 - Trigger *pTrigger; /* Trigger this program was coded from */TriggerPrg::pTrigger15230,702134 - TriggerPrg *pNext; /* Next entry in Parse.pTriggerPrg list */pNext15231,702202 - TriggerPrg *pNext; /* Next entry in Parse.pTriggerPrg list */TriggerPrg::pNext15231,702202 - SubProgram *pProgram; /* Program implementing pTrigger/orconf */pProgram15232,702271 - SubProgram *pProgram; /* Program implementing pTrigger/orconf */TriggerPrg::pProgram15232,702271 - int orconf; /* Default ON CONFLICT policy */orconf15233,702340 - int orconf; /* Default ON CONFLICT policy */TriggerPrg::orconf15233,702340 - u32 aColmask[2]; /* Masks of old.*, new.* columns accessed */aColmask15234,702399 - u32 aColmask[2]; /* Masks of old.*, new.* columns accessed */TriggerPrg::aColmask15234,702399 - typedef unsigned char yDbMask[(SQLITE_MAX_ATTACHED+9)/8];yDbMask15241,702574 -# define DbMaskTest(DbMaskTest15242,702634 -# define DbMaskZero(DbMaskZero15243,702693 -# define DbMaskSet(DbMaskSet15244,702745 -# define DbMaskAllZero(DbMaskAllZero15245,702798 -# define DbMaskNonZero(DbMaskNonZero15246,702850 - typedef unsigned int yDbMask;yDbMask15248,702913 -# define DbMaskTest(DbMaskTest15249,702945 -# define DbMaskZero(DbMaskZero15250,703004 -# define DbMaskSet(DbMaskSet15251,703038 -# define DbMaskAllZero(DbMaskAllZero15252,703091 -# define DbMaskNonZero(DbMaskNonZero15253,703126 -struct Parse {Parse15272,703921 - sqlite3 *db; /* The main database structure */db15273,703936 - sqlite3 *db; /* The main database structure */Parse::db15273,703936 - char *zErrMsg; /* An error message */zErrMsg15274,703993 - char *zErrMsg; /* An error message */Parse::zErrMsg15274,703993 - Vdbe *pVdbe; /* An engine for executing database bytecode */pVdbe15275,704039 - Vdbe *pVdbe; /* An engine for executing database bytecode */Parse::pVdbe15275,704039 - int rc; /* Return code from execution */rc15276,704110 - int rc; /* Return code from execution */Parse::rc15276,704110 - u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */colNamesSet15277,704166 - u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */Parse::colNamesSet15277,704166 - u8 checkSchema; /* Causes schema cookie check after an error */checkSchema15278,704245 - u8 checkSchema; /* Causes schema cookie check after an error */Parse::checkSchema15278,704245 - u8 nested; /* Number of nested calls to the parser/code generator */nested15279,704316 - u8 nested; /* Number of nested calls to the parser/code generator */Parse::nested15279,704316 - u8 nTempReg; /* Number of temporary registers in aTempReg[] */nTempReg15280,704397 - u8 nTempReg; /* Number of temporary registers in aTempReg[] */Parse::nTempReg15280,704397 - u8 isMultiWrite; /* True if statement may modify/insert multiple rows */isMultiWrite15281,704470 - u8 isMultiWrite; /* True if statement may modify/insert multiple rows */Parse::isMultiWrite15281,704470 - u8 mayAbort; /* True if statement may throw an ABORT exception */mayAbort15282,704549 - u8 mayAbort; /* True if statement may throw an ABORT exception */Parse::mayAbort15282,704549 - u8 hasCompound; /* Need to invoke convertCompoundSelectToSubquery() */hasCompound15283,704625 - u8 hasCompound; /* Need to invoke convertCompoundSelectToSubquery() */Parse::hasCompound15283,704625 - u8 okConstFactor; /* OK to factor out constants */okConstFactor15284,704703 - u8 okConstFactor; /* OK to factor out constants */Parse::okConstFactor15284,704703 - u8 disableLookaside; /* Number of times lookaside has been disabled */disableLookaside15285,704759 - u8 disableLookaside; /* Number of times lookaside has been disabled */Parse::disableLookaside15285,704759 - u8 nColCache; /* Number of entries in aColCache[] */nColCache15286,704832 - u8 nColCache; /* Number of entries in aColCache[] */Parse::nColCache15286,704832 - int aTempReg[8]; /* Holding area for temporary registers */aTempReg15287,704894 - int aTempReg[8]; /* Holding area for temporary registers */Parse::aTempReg15287,704894 - int nRangeReg; /* Size of the temporary register block */nRangeReg15288,704960 - int nRangeReg; /* Size of the temporary register block */Parse::nRangeReg15288,704960 - int iRangeReg; /* First register in temporary register block */iRangeReg15289,705026 - int iRangeReg; /* First register in temporary register block */Parse::iRangeReg15289,705026 - int nErr; /* Number of errors seen */nErr15290,705098 - int nErr; /* Number of errors seen */Parse::nErr15290,705098 - int nTab; /* Number of previously allocated VDBE cursors */nTab15291,705149 - int nTab; /* Number of previously allocated VDBE cursors */Parse::nTab15291,705149 - int nMem; /* Number of memory cells used so far */nMem15292,705222 - int nMem; /* Number of memory cells used so far */Parse::nMem15292,705222 - int nSet; /* Number of sets used so far */nSet15293,705286 - int nSet; /* Number of sets used so far */Parse::nSet15293,705286 - int nOnce; /* Number of OP_Once instructions so far */nOnce15294,705342 - int nOnce; /* Number of OP_Once instructions so far */Parse::nOnce15294,705342 - int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */nOpAlloc15295,705409 - int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */Parse::nOpAlloc15295,705409 - int szOpAlloc; /* Bytes of memory space allocated for Vdbe.aOp[] */szOpAlloc15296,705479 - int szOpAlloc; /* Bytes of memory space allocated for Vdbe.aOp[] */Parse::szOpAlloc15296,705479 - int iFixedOp; /* Never back out opcodes iFixedOp-1 or earlier */iFixedOp15297,705555 - int iFixedOp; /* Never back out opcodes iFixedOp-1 or earlier */Parse::iFixedOp15297,705555 - int ckBase; /* Base register of data during check constraints */ckBase15298,705629 - int ckBase; /* Base register of data during check constraints */Parse::ckBase15298,705629 - int iSelfTab; /* Table of an index whose exprs are being coded */iSelfTab15299,705705 - int iSelfTab; /* Table of an index whose exprs are being coded */Parse::iSelfTab15299,705705 - int iCacheLevel; /* ColCache valid when aColCache[].iLevel<=iCacheLevel */iCacheLevel15300,705780 - int iCacheLevel; /* ColCache valid when aColCache[].iLevel<=iCacheLevel */Parse::iCacheLevel15300,705780 - int iCacheCnt; /* Counter used to generate aColCache[].lru values */iCacheCnt15301,705861 - int iCacheCnt; /* Counter used to generate aColCache[].lru values */Parse::iCacheCnt15301,705861 - int nLabel; /* Number of labels used */nLabel15302,705938 - int nLabel; /* Number of labels used */Parse::nLabel15302,705938 - int *aLabel; /* Space to hold the labels */aLabel15303,705989 - int *aLabel; /* Space to hold the labels */Parse::aLabel15303,705989 - struct yColCache {yColCache15304,706043 - struct yColCache {Parse::yColCache15304,706043 - int iTable; /* Table cursor number */iTable15305,706064 - int iTable; /* Table cursor number */Parse::yColCache::iTable15305,706064 - i16 iColumn; /* Table column number */iColumn15306,706116 - i16 iColumn; /* Table column number */Parse::yColCache::iColumn15306,706116 - u8 tempReg; /* iReg is a temp register that needs to be freed */tempReg15307,706168 - u8 tempReg; /* iReg is a temp register that needs to be freed */Parse::yColCache::tempReg15307,706168 - int iLevel; /* Nesting level */iLevel15308,706247 - int iLevel; /* Nesting level */Parse::yColCache::iLevel15308,706247 - int iReg; /* Reg with value of this column. 0 means none. */iReg15309,706293 - int iReg; /* Reg with value of this column. 0 means none. */Parse::yColCache::iReg15309,706293 - int lru; /* Least recently used entry has the smallest value */lru15310,706370 - int lru; /* Least recently used entry has the smallest value */Parse::yColCache::lru15310,706370 - } aColCache[SQLITE_N_COLCACHE]; /* One for each column cache entry */aColCache15311,706451 - } aColCache[SQLITE_N_COLCACHE]; /* One for each column cache entry */Parse::aColCache15311,706451 - ExprList *pConstExpr;/* Constant expressions */pConstExpr15312,706524 - ExprList *pConstExpr;/* Constant expressions */Parse::pConstExpr15312,706524 - Token constraintName;/* Name of the constraint currently being parsed */constraintName15313,706574 - Token constraintName;/* Name of the constraint currently being parsed */Parse::constraintName15313,706574 - yDbMask writeMask; /* Start a write transaction on these databases */writeMask15314,706649 - yDbMask writeMask; /* Start a write transaction on these databases */Parse::writeMask15314,706649 - yDbMask cookieMask; /* Bitmask of schema verified databases */cookieMask15315,706723 - yDbMask cookieMask; /* Bitmask of schema verified databases */Parse::cookieMask15315,706723 - int cookieValue[SQLITE_MAX_ATTACHED+2]; /* Values of cookies to verify */cookieValue15316,706789 - int cookieValue[SQLITE_MAX_ATTACHED+2]; /* Values of cookies to verify */Parse::cookieValue15316,706789 - int regRowid; /* Register holding rowid of CREATE TABLE entry */regRowid15317,706866 - int regRowid; /* Register holding rowid of CREATE TABLE entry */Parse::regRowid15317,706866 - int regRoot; /* Register holding root page number for new objects */regRoot15318,706940 - int regRoot; /* Register holding root page number for new objects */Parse::regRoot15318,706940 - int nMaxArg; /* Max args passed to user function by sub-program */nMaxArg15319,707019 - int nMaxArg; /* Max args passed to user function by sub-program */Parse::nMaxArg15319,707019 - int nSelect; /* Number of SELECT statements seen */nSelect15321,707120 - int nSelect; /* Number of SELECT statements seen */Parse::nSelect15321,707120 - int nSelectIndent; /* How far to indent SELECTTRACE() output */nSelectIndent15322,707182 - int nSelectIndent; /* How far to indent SELECTTRACE() output */Parse::nSelectIndent15322,707182 - int nTableLock; /* Number of locks in aTableLock */nTableLock15325,707290 - int nTableLock; /* Number of locks in aTableLock */Parse::nTableLock15325,707290 - TableLock *aTableLock; /* Required table locks for shared-cache mode */aTableLock15326,707351 - TableLock *aTableLock; /* Required table locks for shared-cache mode */Parse::aTableLock15326,707351 - AutoincInfo *pAinc; /* Information about AUTOINCREMENT counters */pAinc15328,707432 - AutoincInfo *pAinc; /* Information about AUTOINCREMENT counters */Parse::pAinc15328,707432 - Parse *pToplevel; /* Parse structure for main program (or NULL) */pToplevel15331,707559 - Parse *pToplevel; /* Parse structure for main program (or NULL) */Parse::pToplevel15331,707559 - Table *pTriggerTab; /* Table triggers are being coded for */pTriggerTab15332,707631 - Table *pTriggerTab; /* Table triggers are being coded for */Parse::pTriggerTab15332,707631 - int addrCrTab; /* Address of OP_CreateTable opcode on CREATE TABLE */addrCrTab15333,707695 - int addrCrTab; /* Address of OP_CreateTable opcode on CREATE TABLE */Parse::addrCrTab15333,707695 - u32 nQueryLoop; /* Est number of iterations of a query (10*log2(N)) */nQueryLoop15334,707773 - u32 nQueryLoop; /* Est number of iterations of a query (10*log2(N)) */Parse::nQueryLoop15334,707773 - u32 oldmask; /* Mask of old.* columns referenced */oldmask15335,707851 - u32 oldmask; /* Mask of old.* columns referenced */Parse::oldmask15335,707851 - u32 newmask; /* Mask of new.* columns referenced */newmask15336,707913 - u32 newmask; /* Mask of new.* columns referenced */Parse::newmask15336,707913 - u8 eTriggerOp; /* TK_UPDATE, TK_INSERT or TK_DELETE */eTriggerOp15337,707975 - u8 eTriggerOp; /* TK_UPDATE, TK_INSERT or TK_DELETE */Parse::eTriggerOp15337,707975 - u8 eOrconf; /* Default ON CONFLICT policy for trigger steps */eOrconf15338,708038 - u8 eOrconf; /* Default ON CONFLICT policy for trigger steps */Parse::eOrconf15338,708038 - u8 disableTriggers; /* True to disable triggers */disableTriggers15339,708112 - u8 disableTriggers; /* True to disable triggers */Parse::disableTriggers15339,708112 - ynVar nVar; /* Number of '?' variables seen in the SQL so far */nVar15348,708575 - ynVar nVar; /* Number of '?' variables seen in the SQL so far */Parse::nVar15348,708575 - int nzVar; /* Number of available slots in azVar[] */nzVar15349,708656 - int nzVar; /* Number of available slots in azVar[] */Parse::nzVar15349,708656 - u8 iPkSortOrder; /* ASC or DESC for INTEGER PRIMARY KEY */iPkSortOrder15350,708727 - u8 iPkSortOrder; /* ASC or DESC for INTEGER PRIMARY KEY */Parse::iPkSortOrder15350,708727 - u8 explain; /* True if the EXPLAIN flag is found on the query */explain15351,708797 - u8 explain; /* True if the EXPLAIN flag is found on the query */Parse::explain15351,708797 - u8 declareVtab; /* True if inside sqlite3_declare_vtab() */declareVtab15353,708911 - u8 declareVtab; /* True if inside sqlite3_declare_vtab() */Parse::declareVtab15353,708911 - int nVtabLock; /* Number of virtual tables to lock */nVtabLock15354,708983 - int nVtabLock; /* Number of virtual tables to lock */Parse::nVtabLock15354,708983 - int nAlias; /* Number of aliased result set columns */nAlias15356,709057 - int nAlias; /* Number of aliased result set columns */Parse::nAlias15356,709057 - int nHeight; /* Expression tree height of current sub-select */nHeight15357,709128 - int nHeight; /* Expression tree height of current sub-select */Parse::nHeight15357,709128 - int iSelectId; /* ID of current select for EXPLAIN output */iSelectId15359,709235 - int iSelectId; /* ID of current select for EXPLAIN output */Parse::iSelectId15359,709235 - int iNextSelectId; /* Next available select ID for EXPLAIN output */iNextSelectId15360,709309 - int iNextSelectId; /* Next available select ID for EXPLAIN output */Parse::iNextSelectId15360,709309 - char **azVar; /* Pointers to names of parameters */azVar15362,709394 - char **azVar; /* Pointers to names of parameters */Parse::azVar15362,709394 - Vdbe *pReprepare; /* VM being reprepared (sqlite3Reprepare()) */pReprepare15363,709460 - Vdbe *pReprepare; /* VM being reprepared (sqlite3Reprepare()) */Parse::pReprepare15363,709460 - const char *zTail; /* All SQL text past the last semicolon parsed */zTail15364,709535 - const char *zTail; /* All SQL text past the last semicolon parsed */Parse::zTail15364,709535 - Table *pNewTable; /* A table being constructed by CREATE TABLE */pNewTable15365,709613 - Table *pNewTable; /* A table being constructed by CREATE TABLE */Parse::pNewTable15365,709613 - Trigger *pNewTrigger; /* Trigger under construct by a CREATE TRIGGER */pNewTrigger15366,709689 - Trigger *pNewTrigger; /* Trigger under construct by a CREATE TRIGGER */Parse::pNewTrigger15366,709689 - const char *zAuthContext; /* The 6th parameter to db->xAuth callbacks */zAuthContext15367,709767 - const char *zAuthContext; /* The 6th parameter to db->xAuth callbacks */Parse::zAuthContext15367,709767 - Token sNameToken; /* Token with unqualified schema object name */sNameToken15368,709842 - Token sNameToken; /* Token with unqualified schema object name */Parse::sNameToken15368,709842 - Token sLastToken; /* The last token parsed */sLastToken15369,709918 - Token sLastToken; /* The last token parsed */Parse::sLastToken15369,709918 - Token sArg; /* Complete text of a module argument */sArg15371,710007 - Token sArg; /* Complete text of a module argument */Parse::sArg15371,710007 - Table **apVtabLock; /* Pointer to virtual tables needing locking */apVtabLock15372,710076 - Table **apVtabLock; /* Pointer to virtual tables needing locking */Parse::apVtabLock15372,710076 - Table *pZombieTab; /* List of Table objects to delete after code gen */pZombieTab15374,710159 - Table *pZombieTab; /* List of Table objects to delete after code gen */Parse::pZombieTab15374,710159 - TriggerPrg *pTriggerPrg; /* Linked list of coded triggers */pTriggerPrg15375,710240 - TriggerPrg *pTriggerPrg; /* Linked list of coded triggers */Parse::pTriggerPrg15375,710240 - With *pWith; /* Current WITH clause, or NULL */pWith15376,710304 - With *pWith; /* Current WITH clause, or NULL */Parse::pWith15376,710304 - With *pWithToFree; /* Free this WITH object at the end of the parse */pWithToFree15377,710367 - With *pWithToFree; /* Free this WITH object at the end of the parse */Parse::pWithToFree15377,710367 - #define IN_DECLARE_VTAB IN_DECLARE_VTAB15384,710556 - #define IN_DECLARE_VTAB IN_DECLARE_VTAB15386,710590 -struct AuthContext {AuthContext15393,710804 - const char *zAuthContext; /* Put saved Parse.zAuthContext here */zAuthContext15394,710825 - const char *zAuthContext; /* Put saved Parse.zAuthContext here */AuthContext::zAuthContext15394,710825 - Parse *pParse; /* The Parse structure */pParse15395,710895 - Parse *pParse; /* The Parse structure */AuthContext::pParse15395,710895 -#define OPFLAG_NCHANGE OPFLAG_NCHANGE15410,711382 -#define OPFLAG_EPHEM OPFLAG_EPHEM15412,711543 -#define OPFLAG_LASTROWID OPFLAG_LASTROWID15413,711620 -#define OPFLAG_ISUPDATE OPFLAG_ISUPDATE15414,711691 -#define OPFLAG_APPEND OPFLAG_APPEND15415,711766 -#define OPFLAG_USESEEKRESULT OPFLAG_USESEEKRESULT15416,711840 -#define OPFLAG_ISNOOP OPFLAG_ISNOOP15418,711956 -#define OPFLAG_LENGTHARG OPFLAG_LENGTHARG15420,712042 -#define OPFLAG_TYPEOFARG OPFLAG_TYPEOFARG15421,712118 -#define OPFLAG_BULKCSR OPFLAG_BULKCSR15422,712194 -#define OPFLAG_SEEKEQ OPFLAG_SEEKEQ15423,712272 -#define OPFLAG_FORDELETE OPFLAG_FORDELETE15424,712350 -#define OPFLAG_P2ISREG OPFLAG_P2ISREG15425,712428 -#define OPFLAG_PERMUTE OPFLAG_PERMUTE15426,712508 -#define OPFLAG_SAVEPOSITION OPFLAG_SAVEPOSITION15427,712583 -#define OPFLAG_AUXDELETE OPFLAG_AUXDELETE15428,712658 -struct Trigger {Trigger15445,713443 - char *zName; /* The name of the trigger */zName15446,713460 - char *zName; /* The name of the trigger */Trigger::zName15446,713460 - char *table; /* The table or view to which the trigger applies */table15447,713539 - char *table; /* The table or view to which the trigger applies */Trigger::table15447,713539 - u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT */op15448,713618 - u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT */Trigger::op15448,713618 - u8 tr_tm; /* One of TRIGGER_BEFORE, TRIGGER_AFTER */tr_tm15449,713697 - u8 tr_tm; /* One of TRIGGER_BEFORE, TRIGGER_AFTER */Trigger::tr_tm15449,713697 - Expr *pWhen; /* The WHEN clause of the expression (may be NULL) */pWhen15450,713766 - Expr *pWhen; /* The WHEN clause of the expression (may be NULL) */Trigger::pWhen15450,713766 - IdList *pColumns; /* If this is an UPDATE OF trigger,pColumns15451,713846 - IdList *pColumns; /* If this is an UPDATE OF trigger,Trigger::pColumns15451,713846 - Schema *pSchema; /* Schema containing the trigger */pSchema15453,713987 - Schema *pSchema; /* Schema containing the trigger */Trigger::pSchema15453,713987 - Schema *pTabSchema; /* Schema containing the table */pTabSchema15454,714049 - Schema *pTabSchema; /* Schema containing the table */Trigger::pTabSchema15454,714049 - TriggerStep *step_list; /* Link list of trigger program steps */step_list15455,714109 - TriggerStep *step_list; /* Link list of trigger program steps */Trigger::step_list15455,714109 - Trigger *pNext; /* Next trigger associated with the table */pNext15456,714188 - Trigger *pNext; /* Next trigger associated with the table */Trigger::pNext15456,714188 -#define TRIGGER_BEFORE TRIGGER_BEFORE15466,714506 -#define TRIGGER_AFTER TRIGGER_AFTER15467,714532 -struct TriggerStep {TriggerStep15507,716304 - u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT, TK_SELECT */op15508,716325 - u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT, TK_SELECT */TriggerStep::op15508,716325 - u8 orconf; /* OE_Rollback etc. */orconf15509,716404 - u8 orconf; /* OE_Rollback etc. */TriggerStep::orconf15509,716404 - Trigger *pTrig; /* The trigger that this step is a part of */pTrig15510,716450 - Trigger *pTrig; /* The trigger that this step is a part of */TriggerStep::pTrig15510,716450 - Select *pSelect; /* SELECT statement or RHS of INSERT INTO SELECT ... */pSelect15511,716519 - Select *pSelect; /* SELECT statement or RHS of INSERT INTO SELECT ... */TriggerStep::pSelect15511,716519 - char *zTarget; /* Target table for DELETE, UPDATE, INSERT */zTarget15512,716598 - char *zTarget; /* Target table for DELETE, UPDATE, INSERT */TriggerStep::zTarget15512,716598 - Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */pWhere15513,716667 - Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */TriggerStep::pWhere15513,716667 - ExprList *pExprList; /* SET clause for UPDATE. */pExprList15514,716740 - ExprList *pExprList; /* SET clause for UPDATE. */TriggerStep::pExprList15514,716740 - IdList *pIdList; /* Column names for INSERT */pIdList15515,716792 - IdList *pIdList; /* Column names for INSERT */TriggerStep::pIdList15515,716792 - TriggerStep *pNext; /* Next in the link-list */pNext15516,716845 - TriggerStep *pNext; /* Next in the link-list */TriggerStep::pNext15516,716845 - TriggerStep *pLast; /* Last element in link-list. Valid for 1st elem only */pLast15517,716896 - TriggerStep *pLast; /* Last element in link-list. Valid for 1st elem only */TriggerStep::pLast15517,716896 -typedef struct DbFixer DbFixer;DbFixer15525,717140 -struct DbFixer {DbFixer15526,717172 - Parse *pParse; /* The parsing context. Error messages written here */pParse15527,717189 - Parse *pParse; /* The parsing context. Error messages written here */DbFixer::pParse15527,717189 - Schema *pSchema; /* Fix items to this schema */pSchema15528,717267 - Schema *pSchema; /* Fix items to this schema */DbFixer::pSchema15528,717267 - int bVarOnly; /* Check for variable references only */bVarOnly15529,717320 - int bVarOnly; /* Check for variable references only */DbFixer::bVarOnly15529,717320 - const char *zDb; /* Make sure all objects are contained in this database */zDb15530,717383 - const char *zDb; /* Make sure all objects are contained in this database */DbFixer::zDb15530,717383 - const char *zType; /* Type of the container - used for error messages */zType15531,717464 - const char *zType; /* Type of the container - used for error messages */DbFixer::zType15531,717464 - const Token *pName; /* Name of the container - used for error messages */pName15532,717540 - const Token *pName; /* Name of the container - used for error messages */DbFixer::pName15532,717540 -struct StrAccum {StrAccum15539,717756 - sqlite3 *db; /* Optional database for lookaside. Can be NULL */db15540,717774 - sqlite3 *db; /* Optional database for lookaside. Can be NULL */StrAccum::db15540,717774 - char *zBase; /* A base allocation. Not from malloc. */zBase15541,717849 - char *zBase; /* A base allocation. Not from malloc. */StrAccum::zBase15541,717849 - char *zText; /* The string collected so far */zText15542,717915 - char *zText; /* The string collected so far */StrAccum::zText15542,717915 - u32 nChar; /* Length of the string so far */nChar15543,717972 - u32 nChar; /* Length of the string so far */StrAccum::nChar15543,717972 - u32 nAlloc; /* Amount of space allocated in zText */nAlloc15544,718029 - u32 nAlloc; /* Amount of space allocated in zText */StrAccum::nAlloc15544,718029 - u32 mxAlloc; /* Maximum allowed allocation. 0 for no malloc usage */mxAlloc15545,718093 - u32 mxAlloc; /* Maximum allowed allocation. 0 for no malloc usage */StrAccum::mxAlloc15545,718093 - u8 accError; /* STRACCUM_NOMEM or STRACCUM_TOOBIG */accError15546,718173 - u8 accError; /* STRACCUM_NOMEM or STRACCUM_TOOBIG */StrAccum::accError15546,718173 - u8 printfFlags; /* SQLITE_PRINTF flags below */printfFlags15547,718236 - u8 printfFlags; /* SQLITE_PRINTF flags below */StrAccum::printfFlags15547,718236 -#define STRACCUM_NOMEM STRACCUM_NOMEM15549,718294 -#define STRACCUM_TOOBIG STRACCUM_TOOBIG15550,718321 -#define SQLITE_PRINTF_INTERNAL SQLITE_PRINTF_INTERNAL15551,718348 -#define SQLITE_PRINTF_SQLFUNC SQLITE_PRINTF_SQLFUNC15552,718428 -#define SQLITE_PRINTF_MALLOCED SQLITE_PRINTF_MALLOCED15553,718506 -#define isMalloced(isMalloced15555,718583 - sqlite3 *db; /* The database being initialized */db15563,718815 - sqlite3 *db; /* The database being initialized */__anon460::db15563,718815 - char **pzErrMsg; /* Error message stored here */pzErrMsg15564,718874 - char **pzErrMsg; /* Error message stored here */__anon460::pzErrMsg15564,718874 - int iDb; /* 0 for main database. 1 for TEMP, 2.. for ATTACHed */iDb15565,718928 - int iDb; /* 0 for main database. 1 for TEMP, 2.. for ATTACHed */__anon460::iDb15565,718928 - int rc; /* Result code stored here */rc15566,719007 - int rc; /* Result code stored here */__anon460::rc15566,719007 -} InitData;InitData15567,719059 -struct Sqlite3Config {Sqlite3Config15574,719211 - int bMemstat; /* True to enable memory status */bMemstat15575,719234 - int bMemstat; /* True to enable memory status */Sqlite3Config::bMemstat15575,719234 - int bCoreMutex; /* True to enable core mutexing */bCoreMutex15576,719305 - int bCoreMutex; /* True to enable core mutexing */Sqlite3Config::bCoreMutex15576,719305 - int bFullMutex; /* True to enable full mutexing */bFullMutex15577,719376 - int bFullMutex; /* True to enable full mutexing */Sqlite3Config::bFullMutex15577,719376 - int bOpenUri; /* True to interpret filenames as URIs */bOpenUri15578,719447 - int bOpenUri; /* True to interpret filenames as URIs */Sqlite3Config::bOpenUri15578,719447 - int bUseCis; /* Use covering indices for full-scans */bUseCis15579,719525 - int bUseCis; /* Use covering indices for full-scans */Sqlite3Config::bUseCis15579,719525 - int mxStrlen; /* Maximum string length */mxStrlen15580,719603 - int mxStrlen; /* Maximum string length */Sqlite3Config::mxStrlen15580,719603 - int neverCorrupt; /* Database is always well-formed */neverCorrupt15581,719667 - int neverCorrupt; /* Database is always well-formed */Sqlite3Config::neverCorrupt15581,719667 - int szLookaside; /* Default lookaside buffer size */szLookaside15582,719740 - int szLookaside; /* Default lookaside buffer size */Sqlite3Config::szLookaside15582,719740 - int nLookaside; /* Default lookaside buffer count */nLookaside15583,719812 - int nLookaside; /* Default lookaside buffer count */Sqlite3Config::nLookaside15583,719812 - int nStmtSpill; /* Stmt-journal spill-to-disk threshold */nStmtSpill15584,719885 - int nStmtSpill; /* Stmt-journal spill-to-disk threshold */Sqlite3Config::nStmtSpill15584,719885 - sqlite3_mem_methods m; /* Low-level memory allocation interface */m15585,719964 - sqlite3_mem_methods m; /* Low-level memory allocation interface */Sqlite3Config::m15585,719964 - sqlite3_mutex_methods mutex; /* Low-level mutex interface */mutex15586,720044 - sqlite3_mutex_methods mutex; /* Low-level mutex interface */Sqlite3Config::mutex15586,720044 - sqlite3_pcache_methods2 pcache2; /* Low-level page-cache interface */pcache215587,720112 - sqlite3_pcache_methods2 pcache2; /* Low-level page-cache interface */Sqlite3Config::pcache215587,720112 - void *pHeap; /* Heap storage space */pHeap15588,720185 - void *pHeap; /* Heap storage space */Sqlite3Config::pHeap15588,720185 - int nHeap; /* Size of pHeap[] */nHeap15589,720246 - int nHeap; /* Size of pHeap[] */Sqlite3Config::nHeap15589,720246 - int mnReq, mxReq; /* Min and max heap requests sizes */mnReq15590,720304 - int mnReq, mxReq; /* Min and max heap requests sizes */Sqlite3Config::mnReq15590,720304 - int mnReq, mxReq; /* Min and max heap requests sizes */mxReq15590,720304 - int mnReq, mxReq; /* Min and max heap requests sizes */Sqlite3Config::mxReq15590,720304 - sqlite3_int64 szMmap; /* mmap() space per open file */szMmap15591,720378 - sqlite3_int64 szMmap; /* mmap() space per open file */Sqlite3Config::szMmap15591,720378 - sqlite3_int64 mxMmap; /* Maximum value for szMmap */mxMmap15592,720447 - sqlite3_int64 mxMmap; /* Maximum value for szMmap */Sqlite3Config::mxMmap15592,720447 - void *pScratch; /* Scratch memory */pScratch15593,720514 - void *pScratch; /* Scratch memory */Sqlite3Config::pScratch15593,720514 - int szScratch; /* Size of each scratch buffer */szScratch15594,720571 - int szScratch; /* Size of each scratch buffer */Sqlite3Config::szScratch15594,720571 - int nScratch; /* Number of scratch buffers */nScratch15595,720641 - int nScratch; /* Number of scratch buffers */Sqlite3Config::nScratch15595,720641 - void *pPage; /* Page cache memory */pPage15596,720709 - void *pPage; /* Page cache memory */Sqlite3Config::pPage15596,720709 - int szPage; /* Size of each page in pPage[] */szPage15597,720769 - int szPage; /* Size of each page in pPage[] */Sqlite3Config::szPage15597,720769 - int nPage; /* Number of pages in pPage[] */nPage15598,720840 - int nPage; /* Number of pages in pPage[] */Sqlite3Config::nPage15598,720840 - int mxParserStack; /* maximum depth of the parser stack */mxParserStack15599,720909 - int mxParserStack; /* maximum depth of the parser stack */Sqlite3Config::mxParserStack15599,720909 - int sharedCacheEnabled; /* true if shared-cache mode enabled */sharedCacheEnabled15600,720985 - int sharedCacheEnabled; /* true if shared-cache mode enabled */Sqlite3Config::sharedCacheEnabled15600,720985 - u32 szPma; /* Maximum Sorter PMA size */szPma15601,721061 - u32 szPma; /* Maximum Sorter PMA size */Sqlite3Config::szPma15601,721061 - int isInit; /* True after initialization has finished */isInit15604,721242 - int isInit; /* True after initialization has finished */Sqlite3Config::isInit15604,721242 - int inProgress; /* True while initialization in progress */inProgress15605,721323 - int inProgress; /* True while initialization in progress */Sqlite3Config::inProgress15605,721323 - int isMutexInit; /* True after mutexes are initialized */isMutexInit15606,721403 - int isMutexInit; /* True after mutexes are initialized */Sqlite3Config::isMutexInit15606,721403 - int isMallocInit; /* True after malloc is initialized */isMallocInit15607,721480 - int isMallocInit; /* True after malloc is initialized */Sqlite3Config::isMallocInit15607,721480 - int isPCacheInit; /* True after malloc is initialized */isPCacheInit15608,721555 - int isPCacheInit; /* True after malloc is initialized */Sqlite3Config::isPCacheInit15608,721555 - int nRefInitMutex; /* Number of users of pInitMutex */nRefInitMutex15609,721630 - int nRefInitMutex; /* Number of users of pInitMutex */Sqlite3Config::nRefInitMutex15609,721630 - sqlite3_mutex *pInitMutex; /* Mutex used by sqlite3_initialize() */pInitMutex15610,721702 - sqlite3_mutex *pInitMutex; /* Mutex used by sqlite3_initialize() */Sqlite3Config::pInitMutex15610,721702 - void (*xLog)(void*,int,const char*); /* Function for logging */xLog15611,721779 - void (*xLog)(void*,int,const char*); /* Function for logging */Sqlite3Config::xLog15611,721779 - void *pLogArg; /* First argument to xLog() */pLogArg15612,721845 - void *pLogArg; /* First argument to xLog() */Sqlite3Config::pLogArg15612,721845 - void(*xSqllog)(void*,sqlite3*,const char*, int);xSqllog15614,721943 - void(*xSqllog)(void*,sqlite3*,const char*, int);Sqlite3Config::xSqllog15614,721943 - void *pSqllogArg;pSqllogArg15615,721994 - void *pSqllogArg;Sqlite3Config::pSqllogArg15615,721994 - void (*xVdbeBranch)(void*,int iSrcLine,u8 eThis,u8 eMx); /* Callback */xVdbeBranch15621,722199 - void (*xVdbeBranch)(void*,int iSrcLine,u8 eThis,u8 eMx); /* Callback */Sqlite3Config::xVdbeBranch15621,722199 - void *pVdbeBranchArg; /* 1st argument */pVdbeBranchArg15622,722274 - void *pVdbeBranchArg; /* 1st argument */Sqlite3Config::pVdbeBranchArg15622,722274 - int (*xTestCallback)(int); /* Invoked by sqlite3FaultSim() */xTestCallback15625,722393 - int (*xTestCallback)(int); /* Invoked by sqlite3FaultSim() */Sqlite3Config::xTestCallback15625,722393 - int bLocaltimeFault; /* True to fail localtime() calls */bLocaltimeFault15627,722471 - int bLocaltimeFault; /* True to fail localtime() calls */Sqlite3Config::bLocaltimeFault15627,722471 -#define CORRUPT_DB CORRUPT_DB15646,723119 -struct Walker {Walker15651,723232 - Parse *pParse; /* Parser context. */pParse15652,723248 - Parse *pParse; /* Parser context. */Walker::pParse15652,723248 - int (*xExprCallback)(Walker*, Expr*); /* Callback for expressions */xExprCallback15653,723315 - int (*xExprCallback)(Walker*, Expr*); /* Callback for expressions */Walker::xExprCallback15653,723315 - int (*xSelectCallback)(Walker*,Select*); /* Callback for SELECTs */xSelectCallback15654,723390 - int (*xSelectCallback)(Walker*,Select*); /* Callback for SELECTs */Walker::xSelectCallback15654,723390 - void (*xSelectCallback2)(Walker*,Select*);/* Second callback for SELECTs */xSelectCallback215655,723461 - void (*xSelectCallback2)(Walker*,Select*);/* Second callback for SELECTs */Walker::xSelectCallback215655,723461 - int walkerDepth; /* Number of subqueries */walkerDepth15656,723539 - int walkerDepth; /* Number of subqueries */Walker::walkerDepth15656,723539 - u8 eCode; /* A small processing code */eCode15657,723610 - u8 eCode; /* A small processing code */Walker::eCode15657,723610 - NameContext *pNC; /* Naming context */pNC15659,723758 - NameContext *pNC; /* Naming context */Walker::__anon461::pNC15659,723758 - int n; /* A counter */n15660,723826 - int n; /* A counter */Walker::__anon461::n15660,723826 - int iCur; /* A cursor number */iCur15661,723889 - int iCur; /* A cursor number */Walker::__anon461::iCur15661,723889 - SrcList *pSrcList; /* FROM clause */pSrcList15662,723958 - SrcList *pSrcList; /* FROM clause */Walker::__anon461::pSrcList15662,723958 - struct SrcCount *pSrcCount; /* Counting column references */pSrcCount15663,724023 - struct SrcCount *pSrcCount; /* Counting column references */Walker::__anon461::pSrcCount15663,724023 - struct CCurHint *pCCurHint; /* Used by codeCursorHint() */pCCurHint15664,724103 - struct CCurHint *pCCurHint; /* Used by codeCursorHint() */Walker::__anon461::pCCurHint15664,724103 - int *aiCol; /* array of column indexes */aiCol15665,724181 - int *aiCol; /* array of column indexes */Walker::__anon461::aiCol15665,724181 - } u;u15666,724258 - } u;Walker::u15666,724258 -#define WRC_Continue WRC_Continue15681,724725 -#define WRC_Prune WRC_Prune15682,724787 -#define WRC_Abort WRC_Abort15683,724865 -struct With {With15689,725061 - int nCte; /* Number of CTEs in the WITH clause */nCte15690,725075 - int nCte; /* Number of CTEs in the WITH clause */With::nCte15690,725075 - With *pOuter; /* Containing WITH clause, or NULL */pOuter15691,725149 - With *pOuter; /* Containing WITH clause, or NULL */With::pOuter15691,725149 - struct Cte { /* For each CTE in the WITH clause.... */Cte15692,725221 - struct Cte { /* For each CTE in the WITH clause.... */With::Cte15692,725221 - char *zName; /* Name of this CTE */zName15693,725297 - char *zName; /* Name of this CTE */With::Cte::zName15693,725297 - ExprList *pCols; /* List of explicit column names, or NULL */pCols15694,725356 - ExprList *pCols; /* List of explicit column names, or NULL */With::Cte::pCols15694,725356 - Select *pSelect; /* The definition of this CTE */pSelect15695,725437 - Select *pSelect; /* The definition of this CTE */With::Cte::pSelect15695,725437 - const char *zCteErr; /* Error message for circular references */zCteErr15696,725506 - const char *zCteErr; /* Error message for circular references */With::Cte::zCteErr15696,725506 - } a[1];a15697,725586 - } a[1];With::a15697,725586 -struct TreeView {TreeView15705,725767 - int iLevel; /* Which level of the tree we are on */iLevel15706,725785 - int iLevel; /* Which level of the tree we are on */TreeView::iLevel15706,725785 - u8 bLine[100]; /* Draw vertical in column i if bLine[i] is true */bLine15707,725851 - u8 bLine[100]; /* Draw vertical in column i if bLine[i] is true */TreeView::bLine15707,725851 -#define SQLITE_SKIP_UTF8(SQLITE_SKIP_UTF815715,726099 -#define SQLITE_CORRUPT_BKPT SQLITE_CORRUPT_BKPT15731,726781 -#define SQLITE_MISUSE_BKPT SQLITE_MISUSE_BKPT15732,726839 -#define SQLITE_CANTOPEN_BKPT SQLITE_CANTOPEN_BKPT15733,726895 -# define SQLITE_NOMEM_BKPT SQLITE_NOMEM_BKPT15737,727070 -# define SQLITE_IOERR_NOMEM_BKPT SQLITE_IOERR_NOMEM_BKPT15738,727125 -# define SQLITE_NOMEM_BKPT SQLITE_NOMEM_BKPT15740,727197 -# define SQLITE_IOERR_NOMEM_BKPT SQLITE_IOERR_NOMEM_BKPT15741,727237 -# undef SQLITE_ENABLE_FTS3SQLITE_ENABLE_FTS315748,727393 -# undef SQLITE_ENABLE_FTS4SQLITE_ENABLE_FTS415749,727420 -# define SQLITE_ENABLE_FTS3 SQLITE_ENABLE_FTS315758,727734 -# define sqlite3Toupper(sqlite3Toupper15776,728272 -# define sqlite3Isspace(sqlite3Isspace15777,728350 -# define sqlite3Isalnum(sqlite3Isalnum15778,728422 -# define sqlite3Isalpha(sqlite3Isalpha15779,728494 -# define sqlite3Isdigit(sqlite3Isdigit15780,728566 -# define sqlite3Isxdigit(sqlite3Isxdigit15781,728638 -# define sqlite3Tolower(sqlite3Tolower15782,728710 -# define sqlite3Isquote(sqlite3Isquote15783,728781 -# define sqlite3Toupper(sqlite3Toupper15785,728859 -# define sqlite3Isspace(sqlite3Isspace15786,728916 -# define sqlite3Isalnum(sqlite3Isalnum15787,728973 -# define sqlite3Isalpha(sqlite3Isalpha15788,729030 -# define sqlite3Isdigit(sqlite3Isdigit15789,729087 -# define sqlite3Isxdigit(sqlite3Isxdigit15790,729144 -# define sqlite3Tolower(sqlite3Tolower15791,729202 -# define sqlite3Isquote(sqlite3Isquote15792,729259 -#define sqlite3StrNICmp sqlite3StrNICmp15804,729627 -# define sqlite3StackAllocRaw(sqlite3StackAllocRaw15840,731223 -# define sqlite3StackAllocZero(sqlite3StackAllocZero15841,731270 -# define sqlite3StackFree(sqlite3StackFree15842,731331 -# define sqlite3StackAllocRaw(sqlite3StackAllocRaw15844,731368 -# define sqlite3StackAllocZero(sqlite3StackAllocZero15845,731429 -# define sqlite3StackFree(sqlite3StackFree15846,731491 -# define sqlite3MemoryBarrier(sqlite3MemoryBarrier15867,732209 -# define sqlite3IsNaN(sqlite3IsNaN15882,732701 -struct PrintfArguments {PrintfArguments15889,732886 - int nArg; /* Total number of arguments */nArg15890,732911 - int nArg; /* Total number of arguments */PrintfArguments::nArg15890,732911 - int nUsed; /* Number of arguments used so far */nUsed15891,732970 - int nUsed; /* Number of arguments used so far */PrintfArguments::nUsed15891,732970 - sqlite3_value **apArg; /* The argument values */apArg15892,733035 - sqlite3_value **apArg; /* The argument values */PrintfArguments::apArg15892,733035 -# define sqlite3ColumnPropertiesFromName(sqlite3ColumnPropertiesFromName15962,736754 -# define sqlite3FaultSim(sqlite3FaultSim15977,737529 -# define sqlite3ViewGetColumnNames(sqlite3ViewGetColumnNames16004,738618 -# define sqlite3AutoincrementBegin(sqlite3AutoincrementBegin16017,739112 -# define sqlite3AutoincrementEnd(sqlite3AutoincrementEnd16018,739150 -#define ONEPASS_OFF ONEPASS_OFF16060,741860 -#define ONEPASS_SINGLE ONEPASS_SINGLE16061,741927 -#define ONEPASS_MULTI ONEPASS_MULTI16062,742005 -#define SQLITE_ECEL_DUP SQLITE_ECEL_DUP16082,743337 -#define SQLITE_ECEL_FACTOR SQLITE_ECEL_FACTOR16083,743403 -#define SQLITE_ECEL_REF SQLITE_ECEL_REF16084,743470 -# define sqlite3SelectSetName(sqlite3SelectSetName16151,747478 -# define sqlite3ParseToplevel(sqlite3ParseToplevel16187,749666 -# define sqlite3IsToplevel(sqlite3IsToplevel16188,749739 -# define sqlite3TriggersExist(sqlite3TriggersExist16190,749795 -# define sqlite3DeleteTrigger(sqlite3DeleteTrigger16191,749838 -# define sqlite3DropTriggerPtr(sqlite3DropTriggerPtr16192,749873 -# define sqlite3UnlinkAndDeleteTrigger(sqlite3UnlinkAndDeleteTrigger16193,749909 -# define sqlite3CodeRowTrigger(sqlite3CodeRowTrigger16194,749955 -# define sqlite3CodeRowTriggerDirect(sqlite3CodeRowTriggerDirect16195,750005 -# define sqlite3TriggerList(sqlite3TriggerList16196,750055 -# define sqlite3ParseToplevel(sqlite3ParseToplevel16197,750091 -# define sqlite3IsToplevel(sqlite3IsToplevel16198,750126 -# define sqlite3TriggerColmask(sqlite3TriggerColmask16199,750158 -# define sqlite3AuthRead(sqlite3AuthRead16212,750849 -# define sqlite3AuthCheck(sqlite3AuthCheck16213,750883 -# define sqlite3AuthContextPush(sqlite3AuthContextPush16214,750933 -# define sqlite3AuthContextPop(sqlite3AuthContextPop16215,750972 -#define getVarint32(getVarint3216257,752839 -#define putVarint32(putVarint3216259,752945 -#define getVarint getVarint16262,753060 -#define putVarint putVarint16263,753098 -# define sqlite3FileSuffix3(sqlite3FileSuffix316302,755052 -SQLITE_PRIVATE const unsigned char sqlite3OpcodeProperty[];sqlite3OpcodeProperty16317,755815 -SQLITE_PRIVATE const char sqlite3StrBINARY[];sqlite3StrBINARY16318,755875 -SQLITE_PRIVATE const unsigned char sqlite3UpperToLower[];sqlite3UpperToLower16319,755921 -SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[];sqlite3CtypeMap16320,755979 -SQLITE_PRIVATE const Token sqlite3IntTokens[];sqlite3IntTokens16321,756033 -SQLITE_PRIVATE SQLITE_WSD struct Sqlite3Config sqlite3Config;sqlite3Config16322,756080 -SQLITE_PRIVATE FuncDefHash sqlite3BuiltinFunctions;sqlite3BuiltinFunctions16323,756142 -SQLITE_PRIVATE int sqlite3PendingByte;sqlite3PendingByte16325,756218 -# define sqlite3CloseExtensions(sqlite3CloseExtensions16412,760786 - #define sqlite3TableLock(sqlite3TableLock16418,760945 -# define sqlite3VtabClear(sqlite3VtabClear16426,761103 -# define sqlite3VtabSync(sqlite3VtabSync16427,761133 -# define sqlite3VtabRollback(sqlite3VtabRollback16428,761174 -# define sqlite3VtabCommit(sqlite3VtabCommit16429,761207 -# define sqlite3VtabInSync(sqlite3VtabInSync16430,761238 -# define sqlite3VtabLock(sqlite3VtabLock16431,761272 -# define sqlite3VtabUnlock(sqlite3VtabUnlock16432,761301 -# define sqlite3VtabUnlockList(sqlite3VtabUnlockList16433,761332 -# define sqlite3VtabSavepoint(sqlite3VtabSavepoint16434,761367 -# define sqlite3GetVTable(sqlite3GetVTable16435,761417 -# define sqlite3VtabInSync(sqlite3VtabInSync16448,762124 -#define sqlite3WithPush(sqlite3WithPush16481,764066 -#define sqlite3WithDelete(sqlite3WithDelete16482,764097 - #define sqlite3FkActions(sqlite3FkActions16500,765043 - #define sqlite3FkCheck(sqlite3FkCheck16501,765083 - #define sqlite3FkDropTable(sqlite3FkDropTable16502,765121 - #define sqlite3FkOldmask(sqlite3FkOldmask16503,765157 - #define sqlite3FkRequired(sqlite3FkRequired16504,765199 - #define sqlite3FkDelete(sqlite3FkDelete16510,765422 - #define sqlite3FkLocateIndex(sqlite3FkLocateIndex16511,765453 -#define SQLITE_FAULTINJECTOR_MALLOC SQLITE_FAULTINJECTOR_MALLOC16518,765578 -#define SQLITE_FAULTINJECTOR_COUNT SQLITE_FAULTINJECTOR_COUNT16519,765620 - #define sqlite3BeginBenignMalloc(sqlite3BeginBenignMalloc16530,765972 - #define sqlite3EndBenignMalloc(sqlite3EndBenignMalloc16531,766009 -#define IN_INDEX_ROWID IN_INDEX_ROWID16537,766109 -#define IN_INDEX_EPH IN_INDEX_EPH16538,766179 -#define IN_INDEX_INDEX_ASC IN_INDEX_INDEX_ASC16539,766246 -#define IN_INDEX_INDEX_DESC IN_INDEX_INDEX_DESC16540,766311 -#define IN_INDEX_NOOP IN_INDEX_NOOP16541,766377 -#define IN_INDEX_NOOP_OK IN_INDEX_NOOP_OK16545,766523 -#define IN_INDEX_MEMBERSHIP IN_INDEX_MEMBERSHIP16546,766593 -#define IN_INDEX_LOOP IN_INDEX_LOOP16547,766673 - #define sqlite3SelectExprHeight(sqlite3SelectExprHeight16564,767404 - #define sqlite3ExprCheckHeight(sqlite3ExprCheckHeight16565,767443 - #define sqlite3ConnectionBlocked(sqlite3ConnectionBlocked16576,767817 - #define sqlite3ConnectionUnlocked(sqlite3ConnectionUnlocked16577,767857 - #define sqlite3ConnectionClosed(sqlite3ConnectionClosed16578,767896 -# define IOTRACE(IOTRACE16591,768220 -SQLITE_API SQLITE_EXTERN void (SQLITE_CDECL *sqlite3IoTrace)(const char*,...);sqlite3IoTrace16593,768335 -# define IOTRACE(IOTRACE16595,768420 -# define sqlite3VdbeIOTraceSql(sqlite3VdbeIOTraceSql16596,768440 -# define sqlite3MemdebugSetType(sqlite3MemdebugSetType16632,770085 -# define sqlite3MemdebugHasType(sqlite3MemdebugHasType16633,770135 -# define sqlite3MemdebugNoType(sqlite3MemdebugNoType16634,770175 -#define MEMTYPE_HEAP MEMTYPE_HEAP16636,770222 -#define MEMTYPE_LOOKASIDE MEMTYPE_LOOKASIDE16637,770286 -#define MEMTYPE_SCRATCH MEMTYPE_SCRATCH16638,770361 -#define MEMTYPE_PCACHE MEMTYPE_PCACHE16639,770420 -SQLITE_PRIVATE const unsigned char sqlite3UpperToLower[] = {sqlite3UpperToLower16680,771778 -SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[256] = {sqlite3CtypeMap16750,775601 -# define SQLITE_USE_URI SQLITE_USE_URI16801,778614 -# define SQLITE_ALLOW_COVERING_INDEX_SCAN SQLITE_ALLOW_COVERING_INDEX_SCAN16809,778875 -# define SQLITE_SORTER_PMASZ SQLITE_SORTER_PMASZ16816,779053 -# define SQLITE_STMTJRNL_SPILL SQLITE_STMTJRNL_SPILL16828,779579 -SQLITE_PRIVATE SQLITE_WSD struct Sqlite3Config sqlite3Config = {sqlite3Config16835,779722 -SQLITE_PRIVATE FuncDefHash sqlite3BuiltinFunctions;sqlite3BuiltinFunctions16892,782044 -SQLITE_PRIVATE const Token sqlite3IntTokens[] = {sqlite3IntTokens16897,782142 -SQLITE_PRIVATE int sqlite3PendingByte = 0x40000000;sqlite3PendingByte16922,783129 -SQLITE_PRIVATE const unsigned char sqlite3OpcodeProperty[] = OPFLG_INITIALIZER;sqlite3OpcodeProperty16932,783433 -SQLITE_PRIVATE const char sqlite3StrBINARY[] = "BINARY";sqlite3StrBINARY16937,783562 -#define CTIMEOPT_VAL_(CTIMEOPT_VAL_16973,784797 -#define CTIMEOPT_VAL(CTIMEOPT_VAL16974,784829 -static const char * const azCompileOpt[] = {azCompileOpt16969,784625 -SQLITE_API int SQLITE_STDCALL sqlite3_compileoption_used(const char *zOptName){sqlite3_compileoption_used17347,792167 -SQLITE_API const char *SQLITE_STDCALL sqlite3_compileoption_get(int N){sqlite3_compileoption_get17375,792909 -#define _VDBEINT_H__VDBEINT_H_17422,794638 -# define SQLITE_MAX_SCHEMA_RETRY SQLITE_MAX_SCHEMA_RETRY17429,794821 -# define VDBE_DISPLAY_P4 VDBE_DISPLAY_P417438,795092 -# define VDBE_DISPLAY_P4 VDBE_DISPLAY_P417440,795125 -typedef struct VdbeOp Op;Op17448,795323 -typedef unsigned Bool;Bool17453,795374 -typedef struct VdbeSorter VdbeSorter;VdbeSorter17456,795443 -typedef struct Explain Explain;Explain17459,795522 -typedef struct AuxData AuxData;AuxData17462,795606 -#define CURTYPE_BTREE CURTYPE_BTREE17465,795667 -#define CURTYPE_SORTER CURTYPE_SORTER17466,795697 -#define CURTYPE_VTAB CURTYPE_VTAB17467,795727 -#define CURTYPE_PSEUDO CURTYPE_PSEUDO17468,795757 -typedef struct VdbeCursor VdbeCursor;VdbeCursor17480,796112 -struct VdbeCursor {VdbeCursor17481,796150 - u8 eCurType; /* One of the CURTYPE_* values above */eCurType17482,796170 - u8 eCurType; /* One of the CURTYPE_* values above */VdbeCursor::eCurType17482,796170 - i8 iDb; /* Index of cursor database in db->aDb[] (or -1) */iDb17483,796234 - i8 iDb; /* Index of cursor database in db->aDb[] (or -1) */VdbeCursor::iDb17483,796234 - u8 nullRow; /* True if pointing to a row with no data */nullRow17484,796310 - u8 nullRow; /* True if pointing to a row with no data */VdbeCursor::nullRow17484,796310 - u8 deferredMoveto; /* A call to sqlite3BtreeMoveto() is needed */deferredMoveto17485,796379 - u8 deferredMoveto; /* A call to sqlite3BtreeMoveto() is needed */VdbeCursor::deferredMoveto17485,796379 - u8 isTable; /* True for rowid tables. False for indexes */isTable17486,796450 - u8 isTable; /* True for rowid tables. False for indexes */VdbeCursor::isTable17486,796450 - u8 seekOp; /* Most recent seek operation on this cursor */seekOp17488,796542 - u8 seekOp; /* Most recent seek operation on this cursor */VdbeCursor::seekOp17488,796542 - u8 wrFlag; /* The wrFlag argument to sqlite3BtreeCursor() */wrFlag17489,796614 - u8 wrFlag; /* The wrFlag argument to sqlite3BtreeCursor() */VdbeCursor::wrFlag17489,796614 - Bool isEphemeral:1; /* True for an ephemeral table */isEphemeral17491,796695 - Bool isEphemeral:1; /* True for an ephemeral table */VdbeCursor::isEphemeral17491,796695 - Bool useRandomRowid:1;/* Generate new record numbers semi-randomly */useRandomRowid17492,796753 - Bool useRandomRowid:1;/* Generate new record numbers semi-randomly */VdbeCursor::useRandomRowid17492,796753 - Bool isOrdered:1; /* True if the table is not BTREE_UNORDERED */isOrdered17493,796825 - Bool isOrdered:1; /* True if the table is not BTREE_UNORDERED */VdbeCursor::isOrdered17493,796825 - Pgno pgnoRoot; /* Root page of the open btree cursor */pgnoRoot17494,796896 - Pgno pgnoRoot; /* Root page of the open btree cursor */VdbeCursor::pgnoRoot17494,796896 - i16 nField; /* Number of fields in the header */nField17495,796961 - i16 nField; /* Number of fields in the header */VdbeCursor::nField17495,796961 - u16 nHdrParsed; /* Number of header fields parsed so far */nHdrParsed17496,797022 - u16 nHdrParsed; /* Number of header fields parsed so far */VdbeCursor::nHdrParsed17496,797022 - BtCursor *pCursor; /* CURTYPE_BTREE. Btree cursor */pCursor17498,797100 - BtCursor *pCursor; /* CURTYPE_BTREE. Btree cursor */VdbeCursor::__anon462::pCursor17498,797100 - sqlite3_vtab_cursor *pVCur; /* CURTYPE_VTAB. Vtab cursor */pVCur17499,797167 - sqlite3_vtab_cursor *pVCur; /* CURTYPE_VTAB. Vtab cursor */VdbeCursor::__anon462::pVCur17499,797167 - int pseudoTableReg; /* CURTYPE_PSEUDO. Reg holding content. */pseudoTableReg17500,797233 - int pseudoTableReg; /* CURTYPE_PSEUDO. Reg holding content. */VdbeCursor::__anon462::pseudoTableReg17500,797233 - VdbeSorter *pSorter; /* CURTYPE_SORTER. Sorter object */pSorter17501,797308 - VdbeSorter *pSorter; /* CURTYPE_SORTER. Sorter object */VdbeCursor::__anon462::pSorter17501,797308 - } uc;uc17502,797376 - } uc;VdbeCursor::uc17502,797376 - Btree *pBt; /* Separate file holding temporary table */pBt17503,797384 - Btree *pBt; /* Separate file holding temporary table */VdbeCursor::pBt17503,797384 - KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */pKeyInfo17504,797452 - KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */VdbeCursor::pKeyInfo17504,797452 - int seekResult; /* Result of previous sqlite3BtreeMoveto() */seekResult17505,797528 - int seekResult; /* Result of previous sqlite3BtreeMoveto() */VdbeCursor::seekResult17505,797528 - i64 seqCount; /* Sequence counter */seqCount17506,797598 - i64 seqCount; /* Sequence counter */VdbeCursor::seqCount17506,797598 - i64 movetoTarget; /* Argument to the deferred sqlite3BtreeMoveto() */movetoTarget17507,797645 - i64 movetoTarget; /* Argument to the deferred sqlite3BtreeMoveto() */VdbeCursor::movetoTarget17507,797645 - VdbeCursor *pAltCursor; /* Associated index cursor from which to read */pAltCursor17508,797721 - VdbeCursor *pAltCursor; /* Associated index cursor from which to read */VdbeCursor::pAltCursor17508,797721 - int *aAltMap; /* Mapping from table to index column numbers */aAltMap17509,797796 - int *aAltMap; /* Mapping from table to index column numbers */VdbeCursor::aAltMap17509,797796 - u64 maskUsed; /* Mask of columns used by this cursor */maskUsed17511,797909 - u64 maskUsed; /* Mask of columns used by this cursor */VdbeCursor::maskUsed17511,797909 - u32 cacheStatus; /* Cache is valid if this matches Vdbe.cacheCtr */cacheStatus17523,798395 - u32 cacheStatus; /* Cache is valid if this matches Vdbe.cacheCtr */VdbeCursor::cacheStatus17523,798395 - u32 payloadSize; /* Total number of bytes in the record */payloadSize17524,798470 - u32 payloadSize; /* Total number of bytes in the record */VdbeCursor::payloadSize17524,798470 - u32 szRow; /* Byte available in aRow */szRow17525,798536 - u32 szRow; /* Byte available in aRow */VdbeCursor::szRow17525,798536 - u32 iHdrOffset; /* Offset to next unparsed byte of the header */iHdrOffset17526,798589 - u32 iHdrOffset; /* Offset to next unparsed byte of the header */VdbeCursor::iHdrOffset17526,798589 - const u8 *aRow; /* Data for the current row, if all on one page */aRow17527,798662 - const u8 *aRow; /* Data for the current row, if all on one page */VdbeCursor::aRow17527,798662 - u32 *aOffset; /* Pointer to aType[nField] */aOffset17528,798737 - u32 *aOffset; /* Pointer to aType[nField] */VdbeCursor::aOffset17528,798737 - u32 aType[1]; /* Type values for all entries in the record */aType17529,798792 - u32 aType[1]; /* Type values for all entries in the record */VdbeCursor::aType17529,798792 -typedef struct VdbeFrame VdbeFrame;VdbeFrame17556,800237 -struct VdbeFrame {VdbeFrame17557,800273 - Vdbe *v; /* VM this frame belongs to */v17558,800292 - Vdbe *v; /* VM this frame belongs to */VdbeFrame::v17558,800292 - VdbeFrame *pParent; /* Parent of this frame, or NULL if parent is main */pParent17559,800349 - VdbeFrame *pParent; /* Parent of this frame, or NULL if parent is main */VdbeFrame::pParent17559,800349 - Op *aOp; /* Program instructions for parent frame */aOp17560,800429 - Op *aOp; /* Program instructions for parent frame */VdbeFrame::aOp17560,800429 - i64 *anExec; /* Event counters from parent frame */anExec17561,800499 - i64 *anExec; /* Event counters from parent frame */VdbeFrame::anExec17561,800499 - Mem *aMem; /* Array of memory cells for parent frame */aMem17562,800564 - Mem *aMem; /* Array of memory cells for parent frame */VdbeFrame::aMem17562,800564 - u8 *aOnceFlag; /* Array of OP_Once flags for parent frame */aOnceFlag17563,800635 - u8 *aOnceFlag; /* Array of OP_Once flags for parent frame */VdbeFrame::aOnceFlag17563,800635 - VdbeCursor **apCsr; /* Array of Vdbe cursors for parent frame */apCsr17564,800707 - VdbeCursor **apCsr; /* Array of Vdbe cursors for parent frame */VdbeFrame::apCsr17564,800707 - void *token; /* Copy of SubProgram.token */token17565,800778 - void *token; /* Copy of SubProgram.token */VdbeFrame::token17565,800778 - i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */lastRowid17566,800835 - i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */VdbeFrame::lastRowid17566,800835 - AuxData *pAuxData; /* Linked list of auxdata allocations */pAuxData17567,800905 - AuxData *pAuxData; /* Linked list of auxdata allocations */VdbeFrame::pAuxData17567,800905 - int nCursor; /* Number of entries in apCsr */nCursor17568,800972 - int nCursor; /* Number of entries in apCsr */VdbeFrame::nCursor17568,800972 - int pc; /* Program Counter in parent (calling) frame */pc17569,801031 - int pc; /* Program Counter in parent (calling) frame */VdbeFrame::pc17569,801031 - int nOp; /* Size of aOp array */nOp17570,801105 - int nOp; /* Size of aOp array */VdbeFrame::nOp17570,801105 - int nMem; /* Number of entries in aMem */nMem17571,801155 - int nMem; /* Number of entries in aMem */VdbeFrame::nMem17571,801155 - int nOnceFlag; /* Number of entries in aOnceFlag */nOnceFlag17572,801213 - int nOnceFlag; /* Number of entries in aOnceFlag */VdbeFrame::nOnceFlag17572,801213 - int nChildMem; /* Number of memory cells for child frame */nChildMem17573,801276 - int nChildMem; /* Number of memory cells for child frame */VdbeFrame::nChildMem17573,801276 - int nChildCsr; /* Number of cursors for child frame */nChildCsr17574,801347 - int nChildCsr; /* Number of cursors for child frame */VdbeFrame::nChildCsr17574,801347 - int nChange; /* Statement changes (Vdbe.nChange) */nChange17575,801413 - int nChange; /* Statement changes (Vdbe.nChange) */VdbeFrame::nChange17575,801413 - int nDbChange; /* Value of db->nChange */nDbChange17576,801482 - int nDbChange; /* Value of db->nChange */VdbeFrame::nDbChange17576,801482 -#define VdbeFrameMem(VdbeFrameMem17579,801539 -#define CACHE_STALE CACHE_STALE17584,801694 -struct Mem {Mem17591,801899 - union MemValue {MemValue17592,801912 - union MemValue {Mem::MemValue17592,801912 - double r; /* Real value used when MEM_Real is set in flags */r17593,801931 - double r; /* Real value used when MEM_Real is set in flags */Mem::MemValue::r17593,801931 - i64 i; /* Integer value used when MEM_Int is set in flags */i17594,802007 - i64 i; /* Integer value used when MEM_Int is set in flags */Mem::MemValue::i17594,802007 - int nZero; /* Used when bit MEM_Zero is set in flags */nZero17595,802085 - int nZero; /* Used when bit MEM_Zero is set in flags */Mem::MemValue::nZero17595,802085 - FuncDef *pDef; /* Used only when flags==MEM_Agg */pDef17596,802154 - FuncDef *pDef; /* Used only when flags==MEM_Agg */Mem::MemValue::pDef17596,802154 - RowSet *pRowSet; /* Used only when flags==MEM_RowSet */pRowSet17597,802214 - RowSet *pRowSet; /* Used only when flags==MEM_RowSet */Mem::MemValue::pRowSet17597,802214 - VdbeFrame *pFrame; /* Used when flags==MEM_Frame */pFrame17598,802277 - VdbeFrame *pFrame; /* Used when flags==MEM_Frame */Mem::MemValue::pFrame17598,802277 - } u;u17599,802334 - } u;Mem::u17599,802334 - u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */flags17600,802341 - u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */Mem::flags17600,802341 - u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */enc17601,802422 - u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */Mem::enc17601,802422 - u8 eSubtype; /* Subtype for this value */eSubtype17602,802494 - u8 eSubtype; /* Subtype for this value */Mem::eSubtype17602,802494 - int n; /* Number of characters in string value, excluding '\0' */n17603,802545 - int n; /* Number of characters in string value, excluding '\0' */Mem::n17603,802545 - char *z; /* String or BLOB value */z17604,802626 - char *z; /* String or BLOB value */Mem::z17604,802626 - char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */zMalloc17606,802736 - char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */Mem::zMalloc17606,802736 - int szMalloc; /* Size of the zMalloc allocation */szMalloc17607,802812 - int szMalloc; /* Size of the zMalloc allocation */Mem::szMalloc17607,802812 - u32 uTemp; /* Transient storage for serial_type in OP_MakeRecord */uTemp17608,802871 - u32 uTemp; /* Transient storage for serial_type in OP_MakeRecord */Mem::uTemp17608,802871 - sqlite3 *db; /* The associated database connection */db17609,802950 - sqlite3 *db; /* The associated database connection */Mem::db17609,802950 - void (*xDel)(void*);/* Destructor for Mem.z - only valid if MEM_Dyn */xDel17610,803013 - void (*xDel)(void*);/* Destructor for Mem.z - only valid if MEM_Dyn */Mem::xDel17610,803013 - Mem *pScopyFrom; /* This Mem is a shallow copy of pScopyFrom */pScopyFrom17612,803106 - Mem *pScopyFrom; /* This Mem is a shallow copy of pScopyFrom */Mem::pScopyFrom17612,803106 - void *pFiller; /* So that sizeof(Mem) is a multiple of 8 */pFiller17613,803175 - void *pFiller; /* So that sizeof(Mem) is a multiple of 8 */Mem::pFiller17613,803175 -#define MEMCELLSIZE MEMCELLSIZE17621,803347 -#define MEM_Null MEM_Null17635,803965 -#define MEM_Str MEM_Str17636,804016 -#define MEM_Int MEM_Int17637,804071 -#define MEM_Real MEM_Real17638,804128 -#define MEM_Blob MEM_Blob17639,804188 -#define MEM_AffMask MEM_AffMask17640,804241 -#define MEM_RowSet MEM_RowSet17641,804300 -#define MEM_Frame MEM_Frame17642,804362 -#define MEM_Undefined MEM_Undefined17643,804427 -#define MEM_Cleared MEM_Cleared17644,804483 -#define MEM_TypeMask MEM_TypeMask17645,804555 -#define MEM_Term MEM_Term17653,804863 -#define MEM_Dyn MEM_Dyn17654,804929 -#define MEM_Static MEM_Static17655,804999 -#define MEM_Ephem MEM_Ephem17656,805068 -#define MEM_Agg MEM_Agg17657,805141 -#define MEM_Zero MEM_Zero17658,805218 -#define MEM_Subtype MEM_Subtype17659,805299 - #undef MEM_ZeroMEM_Zero17661,805386 - #define MEM_Zero MEM_Zero17662,805404 -#define VdbeMemDynamic(VdbeMemDynamic17668,805564 -#define MemSetTypeFlag(MemSetTypeFlag17674,805727 -#define memIsValid(memIsValid17682,805960 -struct AuxData {AuxData17692,806354 - int iOp; /* Instruction number of OP_Function opcode */iOp17693,806371 - int iOp; /* Instruction number of OP_Function opcode */AuxData::iOp17693,806371 - int iArg; /* Index of function argument. */iArg17694,806452 - int iArg; /* Index of function argument. */AuxData::iArg17694,806452 - void *pAux; /* Aux data pointer */pAux17695,806520 - void *pAux; /* Aux data pointer */AuxData::pAux17695,806520 - void (*xDelete)(void *); /* Destructor for the aux data */xDelete17696,806577 - void (*xDelete)(void *); /* Destructor for the aux data */AuxData::xDelete17696,806577 - AuxData *pNext; /* Next element in list */pNext17697,806645 - AuxData *pNext; /* Next element in list */AuxData::pNext17697,806645 -struct sqlite3_context {sqlite3_context17713,807260 - Mem *pOut; /* The return value is stored here */pOut17714,807285 - Mem *pOut; /* The return value is stored here */sqlite3_context::pOut17714,807285 - FuncDef *pFunc; /* Pointer to function information */pFunc17715,807349 - FuncDef *pFunc; /* Pointer to function information */sqlite3_context::pFunc17715,807349 - Mem *pMem; /* Memory cell used to store aggregate context */pMem17716,807413 - Mem *pMem; /* Memory cell used to store aggregate context */sqlite3_context::pMem17716,807413 - Vdbe *pVdbe; /* The VM that owns this context */pVdbe17717,807489 - Vdbe *pVdbe; /* The VM that owns this context */sqlite3_context::pVdbe17717,807489 - int iOp; /* Instruction number of OP_Function */iOp17718,807551 - int iOp; /* Instruction number of OP_Function */sqlite3_context::iOp17718,807551 - int isError; /* Error code returned by the function. */isError17719,807617 - int isError; /* Error code returned by the function. */sqlite3_context::isError17719,807617 - u8 skipFlag; /* Skip accumulator loading if true */skipFlag17720,807686 - u8 skipFlag; /* Skip accumulator loading if true */sqlite3_context::skipFlag17720,807686 - u8 fErrorOrAux; /* isError!=0 or pVdbe->pAuxData modified */fErrorOrAux17721,807751 - u8 fErrorOrAux; /* isError!=0 or pVdbe->pAuxData modified */sqlite3_context::fErrorOrAux17721,807751 - u8 argc; /* Number of arguments */argc17722,807822 - u8 argc; /* Number of arguments */sqlite3_context::argc17722,807822 - sqlite3_value *argv[1]; /* Argument set */argv17723,807874 - sqlite3_value *argv[1]; /* Argument set */sqlite3_context::argv17723,807874 -struct Explain {Explain17730,808039 - Vdbe *pVdbe; /* Attach the explanation to this Vdbe */pVdbe17731,808056 - Vdbe *pVdbe; /* Attach the explanation to this Vdbe */Explain::pVdbe17731,808056 - StrAccum str; /* The string being accumulated */str17732,808119 - StrAccum str; /* The string being accumulated */Explain::str17732,808119 - int nIndent; /* Number of elements in aIndent */nIndent17733,808175 - int nIndent; /* Number of elements in aIndent */Explain::nIndent17733,808175 - u16 aIndent[100]; /* Levels of indentation */aIndent17734,808232 - u16 aIndent[100]; /* Levels of indentation */Explain::aIndent17734,808232 - char zBase[100]; /* Initial space */zBase17735,808281 - char zBase[100]; /* Initial space */Explain::zBase17735,808281 -typedef unsigned bft; /* Bit Field Type */bft17741,808435 -typedef struct ScanStatus ScanStatus;ScanStatus17743,808480 -struct ScanStatus {ScanStatus17744,808518 - int addrExplain; /* OP_Explain for loop */addrExplain17745,808538 - int addrExplain; /* OP_Explain for loop */ScanStatus::addrExplain17745,808538 - int addrLoop; /* Address of "loops" counter */addrLoop17746,808598 - int addrLoop; /* Address of "loops" counter */ScanStatus::addrLoop17746,808598 - int addrVisit; /* Address of "rows visited" counter */addrVisit17747,808665 - int addrVisit; /* Address of "rows visited" counter */ScanStatus::addrVisit17747,808665 - int iSelectID; /* The "Select-ID" for this loop */iSelectID17748,808739 - int iSelectID; /* The "Select-ID" for this loop */ScanStatus::iSelectID17748,808739 - LogEst nEst; /* Estimated output rows per loop */nEst17749,808809 - LogEst nEst; /* Estimated output rows per loop */ScanStatus::nEst17749,808809 - char *zName; /* Name of table or index */zName17750,808880 - char *zName; /* Name of table or index */ScanStatus::zName17750,808880 -struct Vdbe {Vdbe17760,809201 - sqlite3 *db; /* The database connection that owns this statement */db17761,809215 - sqlite3 *db; /* The database connection that owns this statement */Vdbe::db17761,809215 - Op *aOp; /* Space to hold the virtual machine's program */aOp17762,809296 - Op *aOp; /* Space to hold the virtual machine's program */Vdbe::aOp17762,809296 - Mem *aMem; /* The memory locations */aMem17763,809372 - Mem *aMem; /* The memory locations */Vdbe::aMem17763,809372 - Mem **apArg; /* Arguments to currently executing user function */apArg17764,809425 - Mem **apArg; /* Arguments to currently executing user function */Vdbe::apArg17764,809425 - Mem *aColName; /* Column names to return */aColName17765,809504 - Mem *aColName; /* Column names to return */Vdbe::aColName17765,809504 - Mem *pResultSet; /* Pointer to an array of results */pResultSet17766,809559 - Mem *pResultSet; /* Pointer to an array of results */Vdbe::pResultSet17766,809559 - Parse *pParse; /* Parsing context used to create this Vdbe */pParse17767,809622 - Parse *pParse; /* Parsing context used to create this Vdbe */Vdbe::pParse17767,809622 - int nMem; /* Number of memory locations currently allocated */nMem17768,809695 - int nMem; /* Number of memory locations currently allocated */Vdbe::nMem17768,809695 - int nOp; /* Number of instructions in the program */nOp17769,809774 - int nOp; /* Number of instructions in the program */Vdbe::nOp17769,809774 - int nCursor; /* Number of slots in apCsr[] */nCursor17770,809844 - int nCursor; /* Number of slots in apCsr[] */Vdbe::nCursor17770,809844 - u32 magic; /* Magic number for sanity checking */magic17771,809903 - u32 magic; /* Magic number for sanity checking */Vdbe::magic17771,809903 - char *zErrMsg; /* Error message written here */zErrMsg17772,809968 - char *zErrMsg; /* Error message written here */Vdbe::zErrMsg17772,809968 - Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */pPrev17773,810027 - Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */Vdbe::pPrev17773,810027 - Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */pNext17773,810027 - Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */Vdbe::pNext17773,810027 - VdbeCursor **apCsr; /* One element of this array for each open cursor */apCsr17774,810102 - VdbeCursor **apCsr; /* One element of this array for each open cursor */Vdbe::apCsr17774,810102 - Mem *aVar; /* Values for the OP_Variable opcode. */aVar17775,810181 - Mem *aVar; /* Values for the OP_Variable opcode. */Vdbe::aVar17775,810181 - char **azVar; /* Name of variables */azVar17776,810248 - char **azVar; /* Name of variables */Vdbe::azVar17776,810248 - ynVar nVar; /* Number of entries in aVar[] */nVar17777,810298 - ynVar nVar; /* Number of entries in aVar[] */Vdbe::nVar17777,810298 - ynVar nzVar; /* Number of entries in azVar[] */nzVar17778,810358 - ynVar nzVar; /* Number of entries in azVar[] */Vdbe::nzVar17778,810358 - u32 cacheCtr; /* VdbeCursor row cache generation counter */cacheCtr17779,810419 - u32 cacheCtr; /* VdbeCursor row cache generation counter */Vdbe::cacheCtr17779,810419 - int pc; /* The program counter */pc17780,810491 - int pc; /* The program counter */Vdbe::pc17780,810491 - int rc; /* Value to return */rc17781,810543 - int rc; /* Value to return */Vdbe::rc17781,810543 - int rcApp; /* errcode set by sqlite3_result_error_code() */rcApp17783,810611 - int rcApp; /* errcode set by sqlite3_result_error_code() */Vdbe::rcApp17783,810611 - u16 nResColumn; /* Number of columns in one row of the result set */nResColumn17785,810693 - u16 nResColumn; /* Number of columns in one row of the result set */Vdbe::nResColumn17785,810693 - u8 errorAction; /* Recovery action to do in case of an error */errorAction17786,810772 - u8 errorAction; /* Recovery action to do in case of an error */Vdbe::errorAction17786,810772 - bft expired:1; /* True if the VM needs to be recompiled */expired17787,810846 - bft expired:1; /* True if the VM needs to be recompiled */Vdbe::expired17787,810846 - bft doingRerun:1; /* True if rerunning after an auto-reprepare */doingRerun17788,810916 - bft doingRerun:1; /* True if rerunning after an auto-reprepare */Vdbe::doingRerun17788,810916 - u8 minWriteFileFormat; /* Minimum file format for writable database files */minWriteFileFormat17789,810990 - u8 minWriteFileFormat; /* Minimum file format for writable database files */Vdbe::minWriteFileFormat17789,810990 - bft explain:2; /* True if EXPLAIN present on SQL command */explain17790,811070 - bft explain:2; /* True if EXPLAIN present on SQL command */Vdbe::explain17790,811070 - bft changeCntOn:1; /* True to update the change-counter */changeCntOn17791,811141 - bft changeCntOn:1; /* True to update the change-counter */Vdbe::changeCntOn17791,811141 - bft runOnlyOnce:1; /* Automatically expire on reset */runOnlyOnce17792,811207 - bft runOnlyOnce:1; /* Automatically expire on reset */Vdbe::runOnlyOnce17792,811207 - bft usesStmtJournal:1; /* True if uses a statement journal */usesStmtJournal17793,811269 - bft usesStmtJournal:1; /* True if uses a statement journal */Vdbe::usesStmtJournal17793,811269 - bft readOnly:1; /* True for statements that do not write */readOnly17794,811334 - bft readOnly:1; /* True for statements that do not write */Vdbe::readOnly17794,811334 - bft bIsReader:1; /* True for statements that read */bIsReader17795,811404 - bft bIsReader:1; /* True for statements that read */Vdbe::bIsReader17795,811404 - bft isPrepareV2:1; /* True if prepared with prepare_v2() */isPrepareV217796,811466 - bft isPrepareV2:1; /* True if prepared with prepare_v2() */Vdbe::isPrepareV217796,811466 - int nChange; /* Number of db changes made since last reset */nChange17797,811533 - int nChange; /* Number of db changes made since last reset */Vdbe::nChange17797,811533 - yDbMask btreeMask; /* Bitmask of db->aDb[] entries referenced */btreeMask17798,811608 - yDbMask btreeMask; /* Bitmask of db->aDb[] entries referenced */Vdbe::btreeMask17798,811608 - yDbMask lockMask; /* Subset of btreeMask that requires a lock */lockMask17799,811680 - yDbMask lockMask; /* Subset of btreeMask that requires a lock */Vdbe::lockMask17799,811680 - int iStatement; /* Statement number (or 0 if has not opened stmt) */iStatement17800,811753 - int iStatement; /* Statement number (or 0 if has not opened stmt) */Vdbe::iStatement17800,811753 - u32 aCounter[5]; /* Counters used by sqlite3_stmt_status() */aCounter17801,811832 - u32 aCounter[5]; /* Counters used by sqlite3_stmt_status() */Vdbe::aCounter17801,811832 - i64 startTime; /* Time when query started - used for profiling */startTime17803,811929 - i64 startTime; /* Time when query started - used for profiling */Vdbe::startTime17803,811929 - i64 iCurrentTime; /* Value of julianday('now') for this statement */iCurrentTime17805,812013 - i64 iCurrentTime; /* Value of julianday('now') for this statement */Vdbe::iCurrentTime17805,812013 - i64 nFkConstraint; /* Number of imm. FK constraints this VM */nFkConstraint17806,812090 - i64 nFkConstraint; /* Number of imm. FK constraints this VM */Vdbe::nFkConstraint17806,812090 - i64 nStmtDefCons; /* Number of def. constraints when stmt started */nStmtDefCons17807,812160 - i64 nStmtDefCons; /* Number of def. constraints when stmt started */Vdbe::nStmtDefCons17807,812160 - i64 nStmtDefImmCons; /* Number of def. imm constraints when stmt started */nStmtDefImmCons17808,812237 - i64 nStmtDefImmCons; /* Number of def. imm constraints when stmt started */Vdbe::nStmtDefImmCons17808,812237 - char *zSql; /* Text of the SQL statement that generated this */zSql17809,812318 - char *zSql; /* Text of the SQL statement that generated this */Vdbe::zSql17809,812318 - void *pFree; /* Free this when deleting the vdbe */pFree17810,812396 - void *pFree; /* Free this when deleting the vdbe */Vdbe::pFree17810,812396 - VdbeFrame *pFrame; /* Parent frame */pFrame17811,812461 - VdbeFrame *pFrame; /* Parent frame */Vdbe::pFrame17811,812461 - VdbeFrame *pDelFrame; /* List of frame objects to free on VM reset */pDelFrame17812,812506 - VdbeFrame *pDelFrame; /* List of frame objects to free on VM reset */Vdbe::pDelFrame17812,812506 - int nFrame; /* Number of frames in pFrame list */nFrame17813,812580 - int nFrame; /* Number of frames in pFrame list */Vdbe::nFrame17813,812580 - u32 expmask; /* Binding to these vars invalidates VM */expmask17814,812644 - u32 expmask; /* Binding to these vars invalidates VM */Vdbe::expmask17814,812644 - SubProgram *pProgram; /* Linked list of all sub-programs used by VM */pProgram17815,812713 - SubProgram *pProgram; /* Linked list of all sub-programs used by VM */Vdbe::pProgram17815,812713 - int nOnceFlag; /* Size of array aOnceFlag[] */nOnceFlag17816,812788 - int nOnceFlag; /* Size of array aOnceFlag[] */Vdbe::nOnceFlag17816,812788 - u8 *aOnceFlag; /* Flags for OP_Once */aOnceFlag17817,812846 - u8 *aOnceFlag; /* Flags for OP_Once */Vdbe::aOnceFlag17817,812846 - AuxData *pAuxData; /* Linked list of auxdata allocations */pAuxData17818,812896 - AuxData *pAuxData; /* Linked list of auxdata allocations */Vdbe::pAuxData17818,812896 - i64 *anExec; /* Number of times each op has been executed */anExec17820,813000 - i64 *anExec; /* Number of times each op has been executed */Vdbe::anExec17820,813000 - int nScan; /* Entries in aScan[] */nScan17821,813074 - int nScan; /* Entries in aScan[] */Vdbe::nScan17821,813074 - ScanStatus *aScan; /* Scan definitions for sqlite3_stmt_scanstatus() */aScan17822,813125 - ScanStatus *aScan; /* Scan definitions for sqlite3_stmt_scanstatus() */Vdbe::aScan17822,813125 -#define VDBE_MAGIC_INIT VDBE_MAGIC_INIT17829,813272 -#define VDBE_MAGIC_RUN VDBE_MAGIC_RUN17830,813344 -#define VDBE_MAGIC_HALT VDBE_MAGIC_HALT17831,813417 -#define VDBE_MAGIC_DEAD VDBE_MAGIC_DEAD17832,813494 -struct PreUpdate {PreUpdate17838,813675 - Vdbe *v;v17839,813694 - Vdbe *v;PreUpdate::v17839,813694 - VdbeCursor *pCsr; /* Cursor to read old values from */pCsr17840,813705 - VdbeCursor *pCsr; /* Cursor to read old values from */PreUpdate::pCsr17840,813705 - int op; /* One of SQLITE_INSERT, UPDATE, DELETE */op17841,813776 - int op; /* One of SQLITE_INSERT, UPDATE, DELETE */PreUpdate::op17841,813776 - u8 *aRecord; /* old.* database record */aRecord17842,813853 - u8 *aRecord; /* old.* database record */PreUpdate::aRecord17842,813853 - KeyInfo keyinfo;keyinfo17843,813915 - KeyInfo keyinfo;PreUpdate::keyinfo17843,813915 - UnpackedRecord *pUnpacked; /* Unpacked version of aRecord[] */pUnpacked17844,813934 - UnpackedRecord *pUnpacked; /* Unpacked version of aRecord[] */PreUpdate::pUnpacked17844,813934 - UnpackedRecord *pNewUnpacked; /* Unpacked version of new.* record */pNewUnpacked17845,814004 - UnpackedRecord *pNewUnpacked; /* Unpacked version of new.* record */PreUpdate::pNewUnpacked17845,814004 - int iNewReg; /* Register for new.* values */iNewReg17846,814077 - int iNewReg; /* Register for new.* values */PreUpdate::iNewReg17846,814077 - i64 iKey1; /* First key value passed to hook */iKey117847,814143 - i64 iKey1; /* First key value passed to hook */PreUpdate::iKey117847,814143 - i64 iKey2; /* Second key value passed to hook */iKey217848,814214 - i64 iKey2; /* Second key value passed to hook */PreUpdate::iKey217848,814214 - int iPKey; /* If not negative index of IPK column */iPKey17849,814286 - int iPKey; /* If not negative index of IPK column */PreUpdate::iPKey17849,814286 - Mem *aNew; /* Array of new.* values */aNew17850,814362 - Mem *aNew; /* Array of new.* values */PreUpdate::aNew17850,814362 -# define sqlite3VdbeMemSetDouble sqlite3VdbeMemSetDouble17886,816108 -# define sqlite3VdbeEnter(sqlite3VdbeEnter17929,818333 -# define sqlite3VdbeLeave(sqlite3VdbeLeave17935,818485 -# define sqlite3VdbeCheckFk(sqlite3VdbeCheckFk17946,818757 - #define ExpandBlob(ExpandBlob17958,819142 - #define sqlite3VdbeMemExpandBlob(sqlite3VdbeMemExpandBlob17960,819226 - #define ExpandBlob(ExpandBlob17961,819274 -typedef sqlite3_int64 sqlite3StatValueType;sqlite3StatValueType17973,819592 -typedef u32 sqlite3StatValueType;sqlite3StatValueType17975,819642 -typedef struct sqlite3StatType sqlite3StatType;sqlite3StatType17977,819683 -static SQLITE_WSD struct sqlite3StatType {sqlite3StatType17978,819731 - sqlite3StatValueType nowValue[10]; /* Current value */nowValue17979,819774 - sqlite3StatValueType nowValue[10]; /* Current value */sqlite3StatType::nowValue17979,819774 - sqlite3StatValueType mxValue[10]; /* Maximum value */mxValue17980,819832 - sqlite3StatValueType mxValue[10]; /* Maximum value */sqlite3StatType::mxValue17980,819832 -} sqlite3Stat = { {0,}, {0,} };sqlite3Stat17981,819890 -static const char statMutex[] = {statMutex17987,820077 -# define wsdStatInit wsdStatInit18008,820878 -# define wsdStat wsdStat18009,820958 -# define wsdStatInitwsdStatInit18011,820986 -# define wsdStat wsdStat18012,821007 -SQLITE_PRIVATE sqlite3_int64 sqlite3StatusValue(int op){sqlite3StatusValue18019,821155 -SQLITE_PRIVATE void sqlite3StatusUp(int op, int N){sqlite3StatusUp18039,821952 -SQLITE_PRIVATE void sqlite3StatusDown(int op, int N){sqlite3StatusDown18050,822388 -SQLITE_PRIVATE void sqlite3StatusHighwater(int op, int X){sqlite3StatusHighwater18064,822839 -SQLITE_API int SQLITE_STDCALL sqlite3_status64(sqlite3_status6418085,823531 -SQLITE_API int SQLITE_STDCALL sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){sqlite3_status18110,824255 -SQLITE_API int SQLITE_STDCALL sqlite3_db_status(sqlite3_db_status18127,824711 -typedef struct DateTime DateTime;DateTime18365,832725 -struct DateTime {DateTime18366,832759 - sqlite3_int64 iJD; /* The julian day number times 86400000 */iJD18367,832777 - sqlite3_int64 iJD; /* The julian day number times 86400000 */DateTime::iJD18367,832777 - int Y, M, D; /* Year, month, and day */Y18368,832841 - int Y, M, D; /* Year, month, and day */DateTime::Y18368,832841 - int Y, M, D; /* Year, month, and day */M18368,832841 - int Y, M, D; /* Year, month, and day */DateTime::M18368,832841 - int Y, M, D; /* Year, month, and day */D18368,832841 - int Y, M, D; /* Year, month, and day */DateTime::D18368,832841 - int h, m; /* Hour and minutes */h18369,832889 - int h, m; /* Hour and minutes */DateTime::h18369,832889 - int h, m; /* Hour and minutes */m18369,832889 - int h, m; /* Hour and minutes */DateTime::m18369,832889 - int tz; /* Timezone offset in minutes */tz18370,832933 - int tz; /* Timezone offset in minutes */DateTime::tz18370,832933 - double s; /* Seconds */s18371,832987 - double s; /* Seconds */DateTime::s18371,832987 - char validYMD; /* True (1) if Y,M,D are valid */validYMD18372,833022 - char validYMD; /* True (1) if Y,M,D are valid */DateTime::validYMD18372,833022 - char validHMS; /* True (1) if h,m,s are valid */validHMS18373,833077 - char validHMS; /* True (1) if h,m,s are valid */DateTime::validHMS18373,833077 - char validJD; /* True (1) if iJD is valid */validJD18374,833132 - char validJD; /* True (1) if iJD is valid */DateTime::validJD18374,833132 - char validTZ; /* True (1) if tz is valid */validTZ18375,833184 - char validTZ; /* True (1) if tz is valid */DateTime::validTZ18375,833184 - char tzSet; /* Timezone was set explicitly */tzSet18376,833235 - char tzSet; /* Timezone was set explicitly */DateTime::tzSet18376,833235 -static int getDigits(const char *zDate, const char *zFormat, ...){getDigits18407,834320 -static int parseTimezone(const char *zDate, DateTime *p){parseTimezone18461,835604 -static int parseHhMmSs(const char *zDate, DateTime *p){parseHhMmSs18497,836399 -static void computeJD(DateTime *p){computeJD18539,837287 -static int parseYyyyMmDd(const char *zDate, DateTime *p){parseYyyyMmDd18585,838246 -static int setDateTimeToCurrent(sqlite3_context *context, DateTime *p){setDateTimeToCurrent18622,838927 -static int parseDateOrTime(parseDateOrTime18648,839676 -static void computeYMD(DateTime *p){computeYMD18671,840225 -static void computeHMS(DateTime *p){computeHMS18697,840843 -static void computeYMD_HMS(DateTime *p){computeYMD_HMS18715,841156 -static void clearYMD_HMS_TZ(DateTime *p){clearYMD_HMS_TZ18723,841276 -#undef HAVE_LOCALTIME_SHAVE_LOCALTIME_S18744,841995 -#define HAVE_LOCALTIME_S HAVE_LOCALTIME_S18745,842020 -static int osLocaltime(time_t *t, struct tm *pTm){osLocaltime18761,842559 -static sqlite3_int64 localtimeOffset(localtimeOffset18800,843651 -static int parseModifier(sqlite3_context *pCtx, const char *zMod, DateTime *p){parseModifier18879,845716 -static int isDate(isDate19089,851478 -static void juliandayFunc(juliandayFunc19130,852416 -static void datetimeFunc(datetimeFunc19147,852729 -static void timeFunc(timeFunc19167,853192 -static void dateFunc(dateFunc19186,853596 -static void strftimeFunc(strftimeFunc19219,854393 -static void ctimeFunc(ctimeFunc19357,858059 -static void cdateFunc(cdateFunc19371,858308 -static void ctimestampFunc(ctimestampFunc19385,858566 -static void currentTimeFunc(currentTimeFunc19407,859325 -SQLITE_PRIVATE void sqlite3RegisterDateTimeFunctions(void){sqlite3RegisterDateTimeFunctions19446,860288 -#define _SQLITE_OS_C_ _SQLITE_OS_C_19483,861854 -#undef _SQLITE_OS_C__SQLITE_OS_C_19485,861907 -SQLITE_API int sqlite3_io_error_hit = 0; /* Total number of I/O Errors */sqlite3_io_error_hit19493,862153 -SQLITE_API int sqlite3_io_error_hardhit = 0; /* Number of non-benign errors */sqlite3_io_error_hardhit19494,862238 -SQLITE_API int sqlite3_io_error_pending = 0; /* Count down to first I/O error */sqlite3_io_error_pending19495,862324 -SQLITE_API int sqlite3_io_error_persist = 0; /* True if I/O errors persist */sqlite3_io_error_persist19496,862412 -SQLITE_API int sqlite3_io_error_benign = 0; /* True if errors are benign */sqlite3_io_error_benign19497,862497 -SQLITE_API int sqlite3_diskfull_pending = 0;sqlite3_diskfull_pending19498,862581 -SQLITE_API int sqlite3_diskfull = 0;sqlite3_diskfull19499,862626 -SQLITE_API int sqlite3_open_file_count = 0;sqlite3_open_file_count19506,862793 -SQLITE_API int sqlite3_memdebug_vfs_oom_test = 1;sqlite3_memdebug_vfs_oom_test19534,863651 - #define DO_OS_MALLOC_TEST(DO_OS_MALLOC_TEST19535,863701 - #define DO_OS_MALLOC_TEST(DO_OS_MALLOC_TEST19542,864076 -SQLITE_PRIVATE void sqlite3OsClose(sqlite3_file *pId){sqlite3OsClose19551,864359 -SQLITE_PRIVATE int sqlite3OsRead(sqlite3_file *id, void *pBuf, int amt, i64 offset){sqlite3OsRead19557,864498 -SQLITE_PRIVATE int sqlite3OsWrite(sqlite3_file *id, const void *pBuf, int amt, i64 offset){sqlite3OsWrite19561,864663 -SQLITE_PRIVATE int sqlite3OsTruncate(sqlite3_file *id, i64 size){sqlite3OsTruncate19565,864836 -SQLITE_PRIVATE int sqlite3OsSync(sqlite3_file *id, int flags){sqlite3OsSync19568,864948 -SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){sqlite3OsFileSize19572,865079 -SQLITE_PRIVATE int sqlite3OsLock(sqlite3_file *id, int lockType){sqlite3OsLock19576,865219 -SQLITE_PRIVATE int sqlite3OsUnlock(sqlite3_file *id, int lockType){sqlite3OsUnlock19580,865356 -SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut){sqlite3OsCheckReservedLock19583,865472 -SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){sqlite3OsFileControl19596,866093 -SQLITE_PRIVATE void sqlite3OsFileControlHint(sqlite3_file *id, int op, void *pArg){sqlite3OsFileControlHint19614,866917 -SQLITE_PRIVATE int sqlite3OsSectorSize(sqlite3_file *id){sqlite3OsSectorSize19618,867054 -SQLITE_PRIVATE int sqlite3OsDeviceCharacteristics(sqlite3_file *id){sqlite3OsDeviceCharacteristics19622,867250 -SQLITE_PRIVATE int sqlite3OsShmLock(sqlite3_file *id, int offset, int n, int flags){sqlite3OsShmLock19625,867372 -SQLITE_PRIVATE void sqlite3OsShmBarrier(sqlite3_file *id){sqlite3OsShmBarrier19628,867514 -SQLITE_PRIVATE int sqlite3OsShmUnmap(sqlite3_file *id, int deleteFlag){sqlite3OsShmUnmap19631,867608 -SQLITE_PRIVATE int sqlite3OsShmMap(sqlite3OsShmMap19634,867732 -SQLITE_PRIVATE int sqlite3OsFetch(sqlite3_file *id, i64 iOff, int iAmt, void **pp){sqlite3OsFetch19647,868164 -SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){sqlite3OsUnfetch19651,868326 -SQLITE_PRIVATE int sqlite3OsFetch(sqlite3_file *id, i64 iOff, int iAmt, void **pp){sqlite3OsFetch19656,868514 -SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){sqlite3OsUnfetch19660,868631 -SQLITE_PRIVATE int sqlite3OsOpen(sqlite3OsOpen19669,868823 -SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){sqlite3OsDelete19686,869363 -SQLITE_PRIVATE int sqlite3OsAccess(sqlite3OsAccess19691,869560 -SQLITE_PRIVATE int sqlite3OsFullPathname(sqlite3OsFullPathname19700,869748 -SQLITE_PRIVATE void *sqlite3OsDlOpen(sqlite3_vfs *pVfs, const char *zPath){sqlite3OsDlOpen19711,870011 -SQLITE_PRIVATE void sqlite3OsDlError(sqlite3_vfs *pVfs, int nByte, char *zBufOut){sqlite3OsDlError19714,870126 -SQLITE_PRIVATE void (*sqlite3OsDlSym(sqlite3_vfs *pVfs, void *pHdle, const char *zSym))(void){sqlite3OsDlSym19717,870251 -SQLITE_PRIVATE void sqlite3OsDlClose(sqlite3_vfs *pVfs, void *pHandle){sqlite3OsDlClose19720,870390 -SQLITE_PRIVATE int sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){sqlite3OsRandomness19724,870537 -SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){sqlite3OsSleep19727,870674 -SQLITE_PRIVATE int sqlite3OsGetLastError(sqlite3_vfs *pVfs){sqlite3OsGetLastError19730,870779 -SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){sqlite3OsCurrentTimeInt6419733,870910 -SQLITE_PRIVATE int sqlite3OsOpenMalloc(sqlite3OsOpenMalloc19751,871557 -SQLITE_PRIVATE void sqlite3OsCloseFree(sqlite3_file *pFile){sqlite3OsCloseFree19773,872016 -SQLITE_PRIVATE int sqlite3OsInit(void){sqlite3OsInit19785,872424 -static sqlite3_vfs * SQLITE_WSD vfsList = 0;vfsList19795,872642 -#define vfsList vfsList19796,872687 -SQLITE_API sqlite3_vfs *SQLITE_STDCALL sqlite3_vfs_find(const char *zVfs){sqlite3_vfs_find19802,872832 -static void vfsUnlink(sqlite3_vfs *pVfs){vfsUnlink19826,873404 -SQLITE_API int SQLITE_STDCALL sqlite3_vfs_register(sqlite3_vfs *pVfs, int makeDflt){sqlite3_vfs_register19848,873961 -SQLITE_API int SQLITE_STDCALL sqlite3_vfs_unregister(sqlite3_vfs *pVfs){sqlite3_vfs_unregister19876,874664 -typedef struct BenignMallocHooks BenignMallocHooks;BenignMallocHooks19921,876269 -static SQLITE_WSD struct BenignMallocHooks {BenignMallocHooks19922,876321 - void (*xBenignBegin)(void);xBenignBegin19923,876366 - void (*xBenignBegin)(void);BenignMallocHooks::xBenignBegin19923,876366 - void (*xBenignEnd)(void);xBenignEnd19924,876396 - void (*xBenignEnd)(void);BenignMallocHooks::xBenignEnd19924,876396 -} sqlite3Hooks = { 0, 0 };sqlite3Hooks19925,876424 -# define wsdHooksInit wsdHooksInit19934,876823 -# define wsdHooks wsdHooks19936,876912 -# define wsdHooksInitwsdHooksInit19938,876941 -# define wsdHooks wsdHooks19939,876963 -SQLITE_PRIVATE void sqlite3BenignMallocHooks(sqlite3BenignMallocHooks19947,877125 -SQLITE_PRIVATE void sqlite3BeginBenignMalloc(void){sqlite3BeginBenignMalloc19961,877547 -SQLITE_PRIVATE void sqlite3EndBenignMalloc(void){sqlite3EndBenignMalloc19967,877681 -static void *sqlite3MemMalloc(int nByte){ return 0; }sqlite3MemMalloc20008,878992 -static void sqlite3MemFree(void *pPrior){ return; }sqlite3MemFree20009,879046 -static void *sqlite3MemRealloc(void *pPrior, int nByte){ return 0; }sqlite3MemRealloc20010,879098 -static int sqlite3MemSize(void *pPrior){ return 0; }sqlite3MemSize20011,879167 -static int sqlite3MemRoundup(int n){ return n; }sqlite3MemRoundup20012,879220 -static int sqlite3MemInit(void *NotUsed){ return SQLITE_OK; }sqlite3MemInit20013,879269 -static void sqlite3MemShutdown(void *NotUsed){ return; }sqlite3MemShutdown20014,879331 -SQLITE_PRIVATE void sqlite3MemSetDefault(void){sqlite3MemSetDefault20022,879604 -static malloc_zone_t* _sqliteZone_;_sqliteZone_20100,882607 -#define SQLITE_MALLOC(SQLITE_MALLOC20101,882643 -#define SQLITE_FREE(SQLITE_FREE20102,882706 -#define SQLITE_REALLOC(SQLITE_REALLOC20103,882766 -#define SQLITE_MALLOCSIZE(SQLITE_MALLOCSIZE20104,882838 -#define SQLITE_MALLOC(SQLITE_MALLOC20113,883120 -#define SQLITE_FREE(SQLITE_FREE20114,883167 -#define SQLITE_REALLOC(SQLITE_REALLOC20115,883212 -# define SQLITE_USE_MALLOC_H SQLITE_USE_MALLOC_H20122,883423 -# define SQLITE_USE_MALLOC_USABLE_SIZE SQLITE_USE_MALLOC_USABLE_SIZE20123,883455 -# define SQLITE_USE_MALLOC_HSQLITE_USE_MALLOC_H20131,883803 -# define SQLITE_USE_MSIZESQLITE_USE_MSIZE20132,883833 -# define SQLITE_MALLOCSIZE(SQLITE_MALLOCSIZE20146,884366 -# define SQLITE_MALLOCSIZE SQLITE_MALLOCSIZE20150,884506 -static void *sqlite3MemMalloc(int nByte){sqlite3MemMalloc20165,884932 -static void sqlite3MemFree(void *pPrior){sqlite3MemFree20197,885771 -static int sqlite3MemSize(void *pPrior){sqlite3MemSize20212,886056 -static void *sqlite3MemRealloc(void *pPrior, int nByte){sqlite3MemRealloc20235,886710 -static int sqlite3MemRoundup(int n){sqlite3MemRoundup20267,887517 -static int sqlite3MemInit(void *NotUsed){sqlite3MemInit20274,887610 -static void sqlite3MemShutdown(void *NotUsed){sqlite3MemShutdown20310,888683 -SQLITE_PRIVATE void sqlite3MemSetDefault(void){sqlite3MemSetDefault20321,888987 -# define backtrace(backtrace20375,890685 -# define backtrace_symbols_fd(backtrace_symbols_fd20376,890711 -struct MemBlockHdr {MemBlockHdr20393,891365 - i64 iSize; /* Size of this allocation */iSize20394,891386 - i64 iSize; /* Size of this allocation */MemBlockHdr::iSize20394,891386 - struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */pNext20395,891454 - struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */MemBlockHdr::pNext20395,891454 - struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */pPrev20395,891454 - struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */MemBlockHdr::pPrev20395,891454 - char nBacktrace; /* Number of backtraces on this alloc */nBacktrace20396,891532 - char nBacktrace; /* Number of backtraces on this alloc */MemBlockHdr::nBacktrace20396,891532 - char nBacktraceSlots; /* Available backtrace slots */nBacktraceSlots20397,891611 - char nBacktraceSlots; /* Available backtrace slots */MemBlockHdr::nBacktraceSlots20397,891611 - u8 nTitle; /* Bytes of title; includes '\0' */nTitle20398,891681 - u8 nTitle; /* Bytes of title; includes '\0' */MemBlockHdr::nTitle20398,891681 - u8 eType; /* Allocation type code */eType20399,891755 - u8 eType; /* Allocation type code */MemBlockHdr::eType20399,891755 - int iForeGuard; /* Guard word for sanity */iForeGuard20400,891820 - int iForeGuard; /* Guard word for sanity */MemBlockHdr::iForeGuard20400,891820 -#define FOREGUARD FOREGUARD20406,891911 -#define REARGUARD REARGUARD20407,891940 -#define NCSIZE NCSIZE20412,892022 - sqlite3_mutex *mutex;mutex20425,892398 - sqlite3_mutex *mutex;__anon463::mutex20425,892398 - struct MemBlockHdr *pFirst;pFirst20430,892500 - struct MemBlockHdr *pFirst;__anon463::pFirst20430,892500 - struct MemBlockHdr *pLast;pLast20431,892530 - struct MemBlockHdr *pLast;__anon463::pLast20431,892530 - int nBacktrace;nBacktrace20436,892639 - int nBacktrace;__anon463::nBacktrace20436,892639 - void (*xBacktrace)(int, int, void **);xBacktrace20437,892657 - void (*xBacktrace)(int, int, void **);__anon463::xBacktrace20437,892657 - int nTitle; /* Bytes of zTitle to save. Includes '\0' and padding */nTitle20442,892758 - int nTitle; /* Bytes of zTitle to save. Includes '\0' and padding */__anon463::nTitle20442,892758 - char zTitle[100]; /* The title text */zTitle20443,892837 - char zTitle[100]; /* The title text */__anon463::zTitle20443,892837 - int disallow; /* Do not allow memory allocation */disallow20449,892995 - int disallow; /* Do not allow memory allocation */__anon463::disallow20449,892995 - int nAlloc[NCSIZE]; /* Total number of allocations */nAlloc20457,893278 - int nAlloc[NCSIZE]; /* Total number of allocations */__anon463::nAlloc20457,893278 - int nCurrent[NCSIZE]; /* Current number of allocations */nCurrent20458,893339 - int nCurrent[NCSIZE]; /* Current number of allocations */__anon463::nCurrent20458,893339 - int mxCurrent[NCSIZE]; /* Highwater mark for nCurrent */mxCurrent20459,893402 - int mxCurrent[NCSIZE]; /* Highwater mark for nCurrent */__anon463::mxCurrent20459,893402 -} mem;mem20461,893464 -static void adjustStats(int iSize, int increment){adjustStats20467,893513 -static struct MemBlockHdr *sqlite3MemsysGetHeader(void *pAllocation){sqlite3MemsysGetHeader20490,894047 -static int sqlite3MemSize(void *p){sqlite3MemSize20514,894713 -static int sqlite3MemInit(void *NotUsed){sqlite3MemInit20526,894926 -static void sqlite3MemShutdown(void *NotUsed){sqlite3MemShutdown20540,895374 -static int sqlite3MemRoundup(int n){sqlite3MemRoundup20548,895538 -static void randomFill(char *pBuf, int nByte){randomFill20557,895812 -static void *sqlite3MemMalloc(int nByte){sqlite3MemMalloc20580,896288 -static void sqlite3MemFree(void *pPrior){sqlite3MemFree20639,897810 -static void *sqlite3MemRealloc(void *pPrior, int nByte){sqlite3MemRealloc20681,899085 -SQLITE_PRIVATE void sqlite3MemSetDefault(void){sqlite3MemSetDefault20702,899751 -SQLITE_PRIVATE void sqlite3MemdebugSetType(void *p, u8 eType){sqlite3MemdebugSetType20719,900126 -SQLITE_PRIVATE int sqlite3MemdebugHasType(void *p, u8 eType){sqlite3MemdebugHasType20737,900699 -SQLITE_PRIVATE int sqlite3MemdebugNoType(void *p, u8 eType){sqlite3MemdebugNoType20759,901376 -SQLITE_PRIVATE void sqlite3MemdebugBacktrace(int depth){sqlite3MemdebugBacktrace20777,901900 -SQLITE_PRIVATE void sqlite3MemdebugBacktraceCallback(void (*xBacktrace)(int, int, void **)){sqlite3MemdebugBacktraceCallback20784,902074 -SQLITE_PRIVATE void sqlite3MemdebugSettitle(const char *zTitle){sqlite3MemdebugSettitle20791,902259 -SQLITE_PRIVATE void sqlite3MemdebugSync(){sqlite3MemdebugSync20801,902579 -SQLITE_PRIVATE void sqlite3MemdebugDump(const char *zFilename){sqlite3MemdebugDump20814,902939 -SQLITE_PRIVATE int sqlite3MemdebugMallocCount(){sqlite3MemdebugMallocCount20856,904191 -#define MX_SMALL MX_SMALL20909,905952 -#define N_HASH N_HASH20915,906013 -typedef struct Mem3Block Mem3Block;Mem3Block20949,907633 -struct Mem3Block {Mem3Block20950,907669 - u32 prevSize; /* Size of previous chunk in Mem3Block elements */prevSize20953,907711 - u32 prevSize; /* Size of previous chunk in Mem3Block elements */Mem3Block::__anon464::__anon465::prevSize20953,907711 - u32 size4x; /* 4x the size of current chunk in Mem3Block elements */size4x20954,907784 - u32 size4x; /* 4x the size of current chunk in Mem3Block elements */Mem3Block::__anon464::__anon465::size4x20954,907784 - } hdr;hdr20955,907863 - } hdr;Mem3Block::__anon464::hdr20955,907863 - u32 next; /* Index in mem3.aPool[] of next free chunk */next20957,907887 - u32 next; /* Index in mem3.aPool[] of next free chunk */Mem3Block::__anon464::__anon466::next20957,907887 - u32 prev; /* Index in mem3.aPool[] of previous free chunk */prev20958,907956 - u32 prev; /* Index in mem3.aPool[] of previous free chunk */Mem3Block::__anon464::__anon466::prev20958,907956 - } list;list20959,908029 - } list;Mem3Block::__anon464::list20959,908029 - } u;u20960,908041 - } u;Mem3Block::u20960,908041 -static SQLITE_WSD struct Mem3Global {Mem3Global20969,908313 - u32 nPool;nPool20974,908479 - u32 nPool;Mem3Global::nPool20974,908479 - Mem3Block *aPool;aPool20975,908492 - Mem3Block *aPool;Mem3Global::aPool20975,908492 - int alarmBusy;alarmBusy20980,908581 - int alarmBusy;Mem3Global::alarmBusy20980,908581 - sqlite3_mutex *mutex;mutex20985,908676 - sqlite3_mutex *mutex;Mem3Global::mutex20985,908676 - u32 mnMaster;mnMaster20990,908770 - u32 mnMaster;Mem3Global::mnMaster20990,908770 - u32 iMaster;iMaster20998,909072 - u32 iMaster;Mem3Global::iMaster20998,909072 - u32 szMaster;szMaster20999,909087 - u32 szMaster;Mem3Global::szMaster20999,909087 - u32 aiSmall[MX_SMALL-1]; /* For sizes 2 through MX_SMALL, inclusive */aiSmall21006,909255 - u32 aiSmall[MX_SMALL-1]; /* For sizes 2 through MX_SMALL, inclusive */Mem3Global::aiSmall21006,909255 - u32 aiHash[N_HASH]; /* For sizes MX_SMALL+1 and larger */aiHash21007,909330 - u32 aiHash[N_HASH]; /* For sizes MX_SMALL+1 and larger */Mem3Global::aiHash21007,909330 -} mem3 = { 97535575 };mem321008,909397 -#define mem3 mem321010,909421 -static void memsys3UnlinkFromList(u32 i, u32 *pRoot){memsys3UnlinkFromList21016,909586 -static void memsys3Unlink(u32 i){memsys3Unlink21036,910068 -static void memsys3LinkIntoList(u32 i, u32 *pRoot){memsys3LinkIntoList21056,910606 -static void memsys3Link(u32 i){memsys3Link21070,910970 -static void memsys3Enter(void){memsys3Enter21091,911595 -static void memsys3Leave(void){memsys3Leave21097,911787 -static void memsys3OutOfMemory(int nByte){memsys3OutOfMemory21104,911928 -static void *memsys3Checkout(u32 i, u32 nBlock){memsys3Checkout21121,912369 -static void *memsys3FromMaster(u32 nBlock){memsys3FromMaster21139,912985 -static void memsys3Merge(u32 *pRoot){memsys3Merge21184,914764 -static void *memsys3MallocUnsafe(int nByte){memsys3MallocUnsafe21223,915842 -static void memsys3FreeUnsafe(void *pOld){memsys3FreeUnsafe21305,918034 -static int memsys3Size(void *p){memsys3Size21346,919630 -static int memsys3Roundup(int n){memsys3Roundup21357,919888 -static void *memsys3Malloc(int nBytes){memsys3Malloc21368,920032 -static void memsys3Free(void *pPrior){memsys3Free21380,920282 -static void *memsys3Realloc(void *pPrior, int nBytes){memsys3Realloc21390,920467 -static int memsys3Init(void *NotUsed){memsys3Init21421,921030 -static void memsys3Shutdown(void *NotUsed){memsys3Shutdown21446,921723 -SQLITE_PRIVATE void sqlite3Memsys3Dump(const char *zFilename){sqlite3Memsys3Dump21458,921931 -SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){sqlite3MemGetMemsys321542,924473 -typedef struct Mem5Link Mem5Link;Mem5Link21626,927574 -struct Mem5Link {Mem5Link21627,927608 - int next; /* Index of next free chunk */next21628,927626 - int next; /* Index of next free chunk */Mem5Link::next21628,927626 - int prev; /* Index of previous free chunk */prev21629,927675 - int prev; /* Index of previous free chunk */Mem5Link::prev21629,927675 -#define LOGMAX LOGMAX21637,927926 -#define CTRL_LOGSIZE CTRL_LOGSIZE21642,927992 -#define CTRL_FREE CTRL_FREE21643,928052 -static SQLITE_WSD struct Mem5Global {Mem5Global21651,928374 - int szAtom; /* Smallest possible allocation in bytes */szAtom21655,928459 - int szAtom; /* Smallest possible allocation in bytes */Mem5Global::szAtom21655,928459 - int nBlock; /* Number of szAtom sized blocks in zPool */nBlock21656,928522 - int nBlock; /* Number of szAtom sized blocks in zPool */Mem5Global::nBlock21656,928522 - u8 *zPool; /* Memory available to be allocated */zPool21657,928586 - u8 *zPool; /* Memory available to be allocated */Mem5Global::zPool21657,928586 - sqlite3_mutex *mutex;mutex21662,928722 - sqlite3_mutex *mutex;Mem5Global::mutex21662,928722 - u64 nAlloc; /* Total number of calls to malloc */nAlloc21668,928835 - u64 nAlloc; /* Total number of calls to malloc */Mem5Global::nAlloc21668,928835 - u64 totalAlloc; /* Total of all malloc calls - includes internal frag */totalAlloc21669,928895 - u64 totalAlloc; /* Total of all malloc calls - includes internal frag */Mem5Global::totalAlloc21669,928895 - u64 totalExcess; /* Total internal fragmentation */totalExcess21670,928974 - u64 totalExcess; /* Total internal fragmentation */Mem5Global::totalExcess21670,928974 - u32 currentOut; /* Current checkout, including internal fragmentation */currentOut21671,929031 - u32 currentOut; /* Current checkout, including internal fragmentation */Mem5Global::currentOut21671,929031 - u32 currentCount; /* Current number of distinct checkouts */currentCount21672,929110 - u32 currentCount; /* Current number of distinct checkouts */Mem5Global::currentCount21672,929110 - u32 maxOut; /* Maximum instantaneous currentOut */maxOut21673,929175 - u32 maxOut; /* Maximum instantaneous currentOut */Mem5Global::maxOut21673,929175 - u32 maxCount; /* Maximum instantaneous currentCount */maxCount21674,929236 - u32 maxCount; /* Maximum instantaneous currentCount */Mem5Global::maxCount21674,929236 - u32 maxRequest; /* Largest allocation (exclusive of internal frag) */maxRequest21675,929299 - u32 maxRequest; /* Largest allocation (exclusive of internal frag) */Mem5Global::maxRequest21675,929299 - int aiFreelist[LOGMAX+1];aiFreelist21683,929604 - int aiFreelist[LOGMAX+1];Mem5Global::aiFreelist21683,929604 - u8 *aCtrl;aCtrl21689,929750 - u8 *aCtrl;Mem5Global::aCtrl21689,929750 -} mem5;mem521691,929764 -#define mem5 mem521696,929846 -#define MEM5LINK(MEM5LINK21702,930018 -static void memsys5Unlink(int i, int iLogsize){memsys5Unlink21708,930214 -static void memsys5Link(int i, int iLogsize){memsys5Link21730,930710 -static void memsys5Enter(void){memsys5Enter21749,931211 -static void memsys5Leave(void){memsys5Leave21752,931280 -static int memsys5Size(void *p){memsys5Size21760,931477 -static void *memsys5MallocUnsafe(int nByte){memsys5MallocUnsafe21779,932043 -static void memsys5FreeUnsafe(void *pOld){memsys5FreeUnsafe21849,934230 -static void *memsys5Malloc(int nBytes){memsys5Malloc21915,936122 -static void memsys5Free(void *pPrior){memsys5Free21931,936428 -static void *memsys5Realloc(void *pPrior, int nBytes){memsys5Realloc21950,937024 -static int memsys5Roundup(int n){memsys5Roundup21980,937757 -static int memsys5Log(int iValue){memsys5Log21997,938183 -static int memsys5Init(void *NotUsed){memsys5Init22009,938503 -static void memsys5Shutdown(void *NotUsed){memsys5Shutdown22067,940212 -SQLITE_PRIVATE void sqlite3Memsys5Dump(const char *zFilename){sqlite3Memsys5Dump22078,940437 -SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){sqlite3MemGetMemsys522121,941814 -static SQLITE_WSD int mutexIsInit = 0;mutexIsInit22162,943122 -SQLITE_PRIVATE int sqlite3MutexInit(void){ sqlite3MutexInit22170,943284 -SQLITE_PRIVATE int sqlite3MutexEnd(void){sqlite3MutexEnd22211,944606 -SQLITE_API sqlite3_mutex *SQLITE_STDCALL sqlite3_mutex_alloc(int id){sqlite3_mutex_alloc22227,944921 -SQLITE_PRIVATE sqlite3_mutex *sqlite3MutexAlloc(int id){sqlite3MutexAlloc22236,945268 -SQLITE_API void SQLITE_STDCALL sqlite3_mutex_free(sqlite3_mutex *p){sqlite3_mutex_free22248,945559 -SQLITE_API void SQLITE_STDCALL sqlite3_mutex_enter(sqlite3_mutex *p){sqlite3_mutex_enter22259,945851 -SQLITE_API int SQLITE_STDCALL sqlite3_mutex_try(sqlite3_mutex *p){sqlite3_mutex_try22270,946195 -SQLITE_API void SQLITE_STDCALL sqlite3_mutex_leave(sqlite3_mutex *p){sqlite3_mutex_leave22285,946667 -SQLITE_API int SQLITE_STDCALL sqlite3_mutex_held(sqlite3_mutex *p){sqlite3_mutex_held22297,946991 -SQLITE_API int SQLITE_STDCALL sqlite3_mutex_notheld(sqlite3_mutex *p){sqlite3_mutex_notheld22301,947177 -static int noopMutexInit(void){ return SQLITE_OK; }noopMutexInit22348,948734 -static int noopMutexEnd(void){ return SQLITE_OK; }noopMutexEnd22349,948786 -static sqlite3_mutex *noopMutexAlloc(int id){ noopMutexAlloc22350,948837 -static void noopMutexFree(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; }noopMutexFree22354,948939 -static void noopMutexEnter(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; }noopMutexEnter22355,949015 -static int noopMutexTry(sqlite3_mutex *p){noopMutexTry22356,949092 -static void noopMutexLeave(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; }noopMutexLeave22360,949180 -SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void){sqlite3NoopMutex22362,949258 -typedef struct sqlite3_debug_mutex {sqlite3_debug_mutex22390,949782 - int id; /* The mutex type */id22391,949819 - int id; /* The mutex type */sqlite3_debug_mutex::id22391,949819 - int cnt; /* Number of entries without a matching leave */cnt22392,949854 - int cnt; /* Number of entries without a matching leave */sqlite3_debug_mutex::cnt22392,949854 -} sqlite3_debug_mutex;sqlite3_debug_mutex22393,949917 -static int debugMutexHeld(sqlite3_mutex *pX){debugMutexHeld22399,950063 -static int debugMutexNotheld(sqlite3_mutex *pX){debugMutexNotheld22403,950191 -static int debugMutexInit(void){ return SQLITE_OK; }debugMutexInit22411,950382 -static int debugMutexEnd(void){ return SQLITE_OK; }debugMutexEnd22412,950435 -static sqlite3_mutex *debugMutexAlloc(int id){debugMutexAlloc22419,950657 -static void debugMutexFree(sqlite3_mutex *pX){debugMutexFree22450,951350 -static void debugMutexEnter(sqlite3_mutex *pX){debugMutexEnter22473,952266 -static int debugMutexTry(sqlite3_mutex *pX){debugMutexTry22478,952449 -static void debugMutexLeave(sqlite3_mutex *pX){debugMutexLeave22491,952890 -SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void){sqlite3NoopMutex22498,953106 -SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){sqlite3DefaultMutex22521,953625 -# define SQLITE_MUTEX_NREF SQLITE_MUTEX_NREF22561,955008 -# define SQLITE_MUTEX_NREF SQLITE_MUTEX_NREF22563,955043 -struct sqlite3_mutex {sqlite3_mutex22569,955153 - pthread_mutex_t mutex; /* Mutex controlling the lock */mutex22570,955176 - pthread_mutex_t mutex; /* Mutex controlling the lock */sqlite3_mutex::mutex22570,955176 - int id; /* Mutex type */id22572,955296 - int id; /* Mutex type */sqlite3_mutex::id22572,955296 - volatile int nRef; /* Number of entrances */nRef22575,955371 - volatile int nRef; /* Number of entrances */sqlite3_mutex::nRef22575,955371 - volatile pthread_t owner; /* Thread that is within this mutex */owner22576,955426 - volatile pthread_t owner; /* Thread that is within this mutex */sqlite3_mutex::owner22576,955426 - int trace; /* True to trace changes */trace22577,955494 - int trace; /* True to trace changes */sqlite3_mutex::trace22577,955494 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER22581,955583 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER22583,955703 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER22585,955776 -static int pthreadMutexHeld(sqlite3_mutex *p){pthreadMutexHeld22605,956714 -static int pthreadMutexNotheld(sqlite3_mutex *p){pthreadMutexNotheld22608,956829 -SQLITE_PRIVATE void sqlite3MemoryBarrier(void){sqlite3MemoryBarrier22618,957149 -static int pthreadMutexInit(void){ return SQLITE_OK; }pthreadMutexInit22629,957397 -static int pthreadMutexEnd(void){ return SQLITE_OK; }pthreadMutexEnd22630,957452 -static sqlite3_mutex *pthreadMutexAlloc(int iType){pthreadMutexAlloc22680,959637 -static void pthreadMutexFree(sqlite3_mutex *p){pthreadMutexFree22745,961426 -static void pthreadMutexEnter(sqlite3_mutex *p){pthreadMutexEnter22772,962370 -static int pthreadMutexTry(sqlite3_mutex *p){pthreadMutexTry22814,963718 -static void pthreadMutexLeave(sqlite3_mutex *p){pthreadMutexLeave22871,965461 -SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){sqlite3DefaultMutex22894,965950 -#define _OS_COMMON_H__OS_COMMON_H_22960,967917 -#define _HWTIME_H__HWTIME_H_22999,969161 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime23012,969553 - __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){__declspec23020,969761 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime23031,969976 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime23039,970171 -SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); }sqlite3Hwtime23063,970913 -static sqlite_uint64 g_start;g_start23072,971199 -static sqlite_uint64 g_elapsed;g_elapsed23073,971229 -#define TIMER_START TIMER_START23074,971261 -#define TIMER_END TIMER_END23075,971311 -#define TIMER_ELAPSED TIMER_ELAPSED23076,971371 -#define TIMER_STARTTIMER_START23078,971413 -#define TIMER_ENDTIMER_END23079,971433 -#define TIMER_ELAPSED TIMER_ELAPSED23080,971451 -#define SimulateIOErrorBenign(SimulateIOErrorBenign23096,972051 -#define SimulateIOError(SimulateIOError23097,972112 -static void local_ioerr(){local_ioerr23101,972290 -#define SimulateDiskfullError(SimulateDiskfullError23106,972430 -#define SimulateIOErrorBenign(SimulateIOErrorBenign23118,972725 -#define SimulateIOError(SimulateIOError23119,972758 -#define SimulateDiskfullError(SimulateDiskfullError23120,972785 -#define OpenCounter(OpenCounter23128,972990 -#define OpenCounter(OpenCounter23130,973049 -#define _OS_WIN_H__OS_WIN_H_23158,973980 -# define SQLITE_OS_WINNT SQLITE_OS_WINNT23188,974780 -# define SQLITE_OS_WINCE SQLITE_OS_WINCE23196,974927 -# define SQLITE_OS_WINCE SQLITE_OS_WINCE23198,974960 -# define SQLITE_OS_WINRT SQLITE_OS_WINRT23206,975129 -# define SQLITE_WIN32_VOLATILESQLITE_WIN32_VOLATILE23214,975278 -# define SQLITE_WIN32_VOLATILE SQLITE_WIN32_VOLATILE23216,975315 -# define SQLITE_OS_WIN_THREADS SQLITE_OS_WIN_THREADS23225,975626 -# define SQLITE_OS_WIN_THREADS SQLITE_OS_WIN_THREADS23227,975665 -struct sqlite3_mutex {sqlite3_mutex23245,976097 - CRITICAL_SECTION mutex; /* Mutex controlling the lock */mutex23246,976120 - CRITICAL_SECTION mutex; /* Mutex controlling the lock */sqlite3_mutex::mutex23246,976120 - int id; /* Mutex type */id23247,976182 - int id; /* Mutex type */sqlite3_mutex::id23247,976182 - volatile int nRef; /* Number of enterances */nRef23249,976248 - volatile int nRef; /* Number of enterances */sqlite3_mutex::nRef23249,976248 - volatile DWORD owner; /* Thread holding this mutex */owner23250,976304 - volatile DWORD owner; /* Thread holding this mutex */sqlite3_mutex::owner23250,976304 - volatile int trace; /* True to trace changes */trace23251,976365 - volatile int trace; /* True to trace changes */sqlite3_mutex::trace23251,976365 -#define SQLITE_W32_MUTEX_INITIALIZER SQLITE_W32_MUTEX_INITIALIZER23260,976611 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER23263,976675 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER23266,976806 -static int winMutexHeld(sqlite3_mutex *p){winMutexHeld23274,977031 -static int winMutexNotheld2(sqlite3_mutex *p, DWORD tid){winMutexNotheld223278,977132 -static int winMutexNotheld(sqlite3_mutex *p){winMutexNotheld23282,977231 -SQLITE_PRIVATE void sqlite3MemoryBarrier(void){sqlite3MemoryBarrier23293,977561 -static sqlite3_mutex winMutex_staticMutexes[] = {winMutex_staticMutexes23309,977944 -static int winMutex_isInit = 0;winMutex_isInit23324,978345 -static int winMutex_isNt = -1; /* <0 means "need to query" */winMutex_isNt23325,978377 -static LONG SQLITE_WIN32_VOLATILE winMutex_lock = 0;winMutex_lock23331,978654 -static int winMutexInit(void){winMutexInit23336,978868 -static int winMutexEnd(void){winMutexEnd23358,979486 -static sqlite3_mutex *winMutexAlloc(int iType){winMutexAlloc23421,982042 -static void winMutexFree(sqlite3_mutex *p){winMutexFree23469,983043 -static void winMutexEnter(sqlite3_mutex *p){winMutexEnter23493,983972 -static int winMutexTry(sqlite3_mutex *p){winMutexTry23516,984536 -static void winMutexLeave(sqlite3_mutex *p){winMutexLeave23566,986149 -SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){sqlite3DefaultMutex23588,986705 -SQLITE_API int SQLITE_STDCALL sqlite3_release_memory(int n){sqlite3_release_memory23634,987947 -typedef struct ScratchFreeslot {ScratchFreeslot23650,988416 - struct ScratchFreeslot *pNext; /* Next unused scratch buffer */pNext23651,988449 - struct ScratchFreeslot *pNext; /* Next unused scratch buffer */ScratchFreeslot::pNext23651,988449 -} ScratchFreeslot;ScratchFreeslot23652,988517 -static SQLITE_WSD struct Mem0Global {Mem0Global23657,988606 - sqlite3_mutex *mutex; /* Mutex to serialize access */mutex23658,988644 - sqlite3_mutex *mutex; /* Mutex to serialize access */Mem0Global::mutex23658,988644 - sqlite3_int64 alarmThreshold; /* The soft heap limit */alarmThreshold23659,988708 - sqlite3_int64 alarmThreshold; /* The soft heap limit */Mem0Global::alarmThreshold23659,988708 - void *pScratchEnd;pScratchEnd23667,989009 - void *pScratchEnd;Mem0Global::pScratchEnd23667,989009 - ScratchFreeslot *pScratchFree;pScratchFree23668,989030 - ScratchFreeslot *pScratchFree;Mem0Global::pScratchFree23668,989030 - u32 nScratchFree;nScratchFree23669,989063 - u32 nScratchFree;Mem0Global::nScratchFree23669,989063 - int nearlyFull;nearlyFull23675,989200 - int nearlyFull;Mem0Global::nearlyFull23675,989200 -} mem0 = { 0, 0, 0, 0, 0, 0 };mem023676,989218 -#define mem0 mem023678,989250 -SQLITE_PRIVATE sqlite3_mutex *sqlite3MallocMutex(void){sqlite3MallocMutex23683,989367 -SQLITE_API int SQLITE_STDCALL sqlite3_memory_alarm(sqlite3_memory_alarm23693,989629 -SQLITE_API sqlite3_int64 SQLITE_STDCALL sqlite3_soft_heap_limit64(sqlite3_int64 n){sqlite3_soft_heap_limit6423709,989978 -SQLITE_API void SQLITE_STDCALL sqlite3_soft_heap_limit(int n){sqlite3_soft_heap_limit23731,990664 -SQLITE_PRIVATE int sqlite3MallocInit(void){sqlite3MallocInit23739,990834 -SQLITE_PRIVATE int sqlite3HeapNearlyFull(void){sqlite3HeapNearlyFull23783,992297 -SQLITE_PRIVATE void sqlite3MallocEnd(void){sqlite3MallocEnd23790,992429 -SQLITE_API sqlite3_int64 SQLITE_STDCALL sqlite3_memory_used(void){sqlite3_memory_used23800,992684 -SQLITE_API sqlite3_int64 SQLITE_STDCALL sqlite3_memory_highwater(int resetFlag){sqlite3_memory_highwater23811,993011 -static void sqlite3MallocAlarm(int nByte){sqlite3MallocAlarm23820,993230 -static int mallocWithAlarm(int n, void **pp){mallocWithAlarm23831,993515 -SQLITE_PRIVATE void *sqlite3Malloc(u64 n){sqlite3Malloc23866,994528 -SQLITE_API void *SQLITE_STDCALL sqlite3_malloc(int n){sqlite3_malloc23891,995450 -SQLITE_API void *SQLITE_STDCALL sqlite3_malloc64(sqlite3_uint64 n){sqlite3_malloc6423897,995620 -static int scratchAllocOut = 0;scratchAllocOut23911,996100 -SQLITE_PRIVATE void *sqlite3ScratchMalloc(int n){sqlite3ScratchMalloc23923,996491 -SQLITE_PRIVATE void sqlite3ScratchFree(void *p){sqlite3ScratchFree23960,997587 -static int isLookaside(sqlite3 *db, void *p){isLookaside24007,999321 -#define isLookaside(isLookaside24011,999444 -SQLITE_PRIVATE int sqlite3MallocSize(void *p){sqlite3MallocSize24018,999592 -SQLITE_PRIVATE int sqlite3DbMallocSize(sqlite3 *db, void *p){sqlite3DbMallocSize24022,999735 -SQLITE_API sqlite3_uint64 SQLITE_STDCALL sqlite3_msize(void *p){sqlite3_msize24040,1000318 -SQLITE_API void SQLITE_STDCALL sqlite3_free(void *p){sqlite3_free24049,1000608 -static SQLITE_NOINLINE void measureAllocationSize(sqlite3 *db, void *p){measureAllocationSize24068,1001230 -SQLITE_PRIVATE void sqlite3DbFree(sqlite3 *db, void *p){sqlite3DbFree24076,1001444 -SQLITE_PRIVATE void *sqlite3Realloc(void *pOld, u64 nBytes){sqlite3Realloc24106,1002334 -SQLITE_API void *SQLITE_STDCALL sqlite3_realloc(void *pOld, int n){sqlite3_realloc24158,1004085 -SQLITE_API void *SQLITE_STDCALL sqlite3_realloc64(void *pOld, sqlite3_uint64 n){sqlite3_realloc6424165,1004309 -SQLITE_PRIVATE void *sqlite3MallocZero(u64 n){sqlite3MallocZero24176,1004539 -SQLITE_PRIVATE void *sqlite3DbMallocZero(sqlite3 *db, u64 n){sqlite3DbMallocZero24188,1004793 -static SQLITE_NOINLINE void *dbMallocRawFinish(sqlite3 *db, u64 n){dbMallocRawFinish24200,1005109 -SQLITE_PRIVATE void *sqlite3DbMallocRaw(sqlite3 *db, u64 n){sqlite3DbMallocRaw24232,1006267 -SQLITE_PRIVATE void *sqlite3DbMallocRawNN(sqlite3 *db, u64 n){sqlite3DbMallocRawNN24239,1006467 -SQLITE_PRIVATE void *sqlite3DbRealloc(sqlite3 *db, void *p, u64 n){sqlite3DbRealloc24281,1007630 -static SQLITE_NOINLINE void *dbReallocFinish(sqlite3 *db, void *p, u64 n){dbReallocFinish24288,1007906 -SQLITE_PRIVATE void *sqlite3DbReallocOrFree(sqlite3 *db, void *p, u64 n){sqlite3DbReallocOrFree24318,1008821 -SQLITE_PRIVATE char *sqlite3DbStrDup(sqlite3 *db, const char *z){sqlite3DbStrDup24334,1009340 -SQLITE_PRIVATE char *sqlite3DbStrNDup(sqlite3 *db, const char *z, u64 n){sqlite3DbStrNDup24348,1009625 -SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zNew){sqlite3SetString24366,1009995 -SQLITE_PRIVATE void sqlite3OomFault(sqlite3 *db){sqlite3OomFault24377,1010376 -SQLITE_PRIVATE void sqlite3OomClear(sqlite3 *db){sqlite3OomClear24394,1010791 -static SQLITE_NOINLINE int apiOomError(sqlite3 *db){apiOomError24406,1011093 -SQLITE_PRIVATE int sqlite3ApiExit(sqlite3* db, int rc){sqlite3ApiExit24424,1011728 -#define etRADIX etRADIX24456,1012836 -#define etFLOAT etFLOAT24457,1012907 -#define etEXP etEXP24458,1012957 -#define etGENERIC etGENERIC24459,1013021 -#define etSIZE etSIZE24460,1013102 -#define etSTRING etSTRING24461,1013181 -#define etDYNSTRING etDYNSTRING24462,1013223 -#define etPERCENT etPERCENT24463,1013287 -#define etCHARX etCHARX24464,1013336 -#define etSQLESCAPE etSQLESCAPE24466,1013443 -#define etSQLESCAPE2 etSQLESCAPE224467,1013504 -#define etTOKEN etTOKEN24469,1013646 -#define etSRCLIST etSRCLIST24470,1013707 -#define etPOINTER etPOINTER24471,1013760 -#define etSQLESCAPE3 etSQLESCAPE324472,1013808 -#define etORDINAL etORDINAL24473,1013870 -#define etINVALID etINVALID24475,1013946 -typedef unsigned char etByte;etByte24481,1014060 -typedef struct et_info { /* Information about each format field */et_info24487,1014214 - char fmttype; /* The format field code letter */fmttype24488,1014283 - char fmttype; /* The format field code letter */et_info::fmttype24488,1014283 - etByte base; /* The base for radix conversion */base24489,1014345 - etByte base; /* The base for radix conversion */et_info::base24489,1014345 - etByte flags; /* One or more of FLAG_ constants below */flags24490,1014408 - etByte flags; /* One or more of FLAG_ constants below */et_info::flags24490,1014408 - etByte type; /* Conversion paradigm */type24491,1014478 - etByte type; /* Conversion paradigm */et_info::type24491,1014478 - etByte charset; /* Offset into aDigits[] of the digits string */charset24492,1014531 - etByte charset; /* Offset into aDigits[] of the digits string */et_info::charset24492,1014531 - etByte prefix; /* Offset into aPrefix[] of the prefix string */prefix24493,1014607 - etByte prefix; /* Offset into aPrefix[] of the prefix string */et_info::prefix24493,1014607 -} et_info;et_info24494,1014683 -#define FLAG_SIGNED FLAG_SIGNED24499,1014737 -#define FLAG_INTERN FLAG_INTERN24500,1014809 -#define FLAG_STRING FLAG_STRING24501,1014872 -static const char aDigits[] = "0123456789ABCDEF0123456789abcdef";aDigits24508,1015056 -static const char aPrefix[] = "-x0\000X0";aPrefix24509,1015122 -static const et_info fmtinfo[] = {fmtinfo24510,1015165 -static char et_getdigit(LONGDOUBLE_TYPE *val, int *cnt){et_getdigit24559,1016821 -static void setStrAccumError(StrAccum *p, u8 eError){setStrAccumError24575,1017146 -static sqlite3_int64 getIntArg(PrintfArguments *p){getIntArg24584,1017368 -static double getDoubleArg(PrintfArguments *p){getDoubleArg24588,1017510 -static char *getTextArg(PrintfArguments *p){getTextArg24592,1017651 -# define SQLITE_PRINT_BUF_SIZE SQLITE_PRINT_BUF_SIZE24603,1017953 -#define etBUFSIZE etBUFSIZE24605,1017994 -SQLITE_PRIVATE void sqlite3VXPrintf(sqlite3VXPrintf24610,1018134 -static int sqlite3StrAccumEnlarge(StrAccum *p, int N){sqlite3StrAccumEnlarge25193,1037707 -SQLITE_PRIVATE void sqlite3AppendChar(StrAccum *p, int N, char c){sqlite3AppendChar25245,1039226 -static void SQLITE_NOINLINE enlargeAndAppend(StrAccum *p, const char *z, int N){enlargeAndAppend25262,1039865 -SQLITE_PRIVATE void sqlite3StrAccumAppend(StrAccum *p, const char *z, int N){sqlite3StrAccumAppend25275,1040262 -SQLITE_PRIVATE void sqlite3StrAccumAppendAll(StrAccum *p, const char *z){sqlite3StrAccumAppendAll25292,1040726 -SQLITE_PRIVATE char *sqlite3StrAccumFinish(StrAccum *p){sqlite3StrAccumFinish25302,1041031 -SQLITE_PRIVATE void sqlite3StrAccumReset(StrAccum *p){sqlite3StrAccumReset25322,1041568 -SQLITE_PRIVATE void sqlite3StrAccumInit(StrAccum *p, sqlite3 *db, char *zBase, int n, int mx){sqlite3StrAccumInit25345,1042415 -SQLITE_PRIVATE char *sqlite3VMPrintf(sqlite3 *db, const char *zFormat, va_list ap){sqlite3VMPrintf25359,1042754 -SQLITE_PRIVATE char *sqlite3MPrintf(sqlite3 *db, const char *zFormat, ...){sqlite3MPrintf25379,1043333 -SQLITE_API char *SQLITE_STDCALL sqlite3_vmprintf(const char *zFormat, va_list ap){sqlite3_vmprintf25392,1043634 -SQLITE_API char *SQLITE_CDECL sqlite3_mprintf(const char *zFormat, ...){sqlite3_mprintf25416,1044234 -SQLITE_API char *SQLITE_STDCALL sqlite3_vsnprintf(int n, char *zBuf, const char *zFormat, va_list ap){sqlite3_vsnprintf25441,1045025 -SQLITE_API char *SQLITE_CDECL sqlite3_snprintf(int n, char *zBuf, const char *zFormat, ...){sqlite3_snprintf25455,1045441 -static void renderLogMsg(int iErrCode, const char *zFormat, va_list ap){renderLogMsg25478,1046312 -SQLITE_API void SQLITE_CDECL sqlite3_log(int iErrCode, const char *zFormat, ...){sqlite3_log25491,1046809 -SQLITE_PRIVATE void sqlite3DebugPrintf(const char *zFormat, ...){sqlite3DebugPrintf25506,1047336 -SQLITE_PRIVATE void sqlite3XPrintf(StrAccum *p, const char *zFormat, ...){sqlite3XPrintf25525,1047824 -static TreeView *sqlite3TreeViewPush(TreeView *p, u8 moreToFollow){sqlite3TreeViewPush25560,1048945 -static void sqlite3TreeViewPop(TreeView *p){sqlite3TreeViewPop25576,1049331 -static void sqlite3TreeViewLine(TreeView *p, const char *zFormat, ...){sqlite3TreeViewLine25586,1049570 -static void sqlite3TreeViewItem(TreeView *p, const char *zLabel,u8 moreFollows){sqlite3TreeViewItem25610,1050276 -SQLITE_PRIVATE void sqlite3TreeViewWith(TreeView *pView, const With *pWith, u8 moreToFollow){sqlite3TreeViewWith25618,1050508 -SQLITE_PRIVATE void sqlite3TreeViewSelect(TreeView *pView, const Select *p, u8 moreToFollow){sqlite3TreeViewSelect25658,1051731 -SQLITE_PRIVATE void sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow){sqlite3TreeViewExpr25766,1055234 -SQLITE_PRIVATE void sqlite3TreeViewExprList(sqlite3TreeViewExprList26000,1062631 -static SQLITE_WSD struct sqlite3PrngType {sqlite3PrngType26053,1064298 - unsigned char isInit; /* True if initialized */isInit26054,1064341 - unsigned char isInit; /* True if initialized */sqlite3PrngType::isInit26054,1064341 - unsigned char i, j; /* State variables */i26055,1064400 - unsigned char i, j; /* State variables */sqlite3PrngType::i26055,1064400 - unsigned char i, j; /* State variables */j26055,1064400 - unsigned char i, j; /* State variables */sqlite3PrngType::j26055,1064400 - unsigned char s[256]; /* State variables */s26056,1064455 - unsigned char s[256]; /* State variables */sqlite3PrngType::s26056,1064455 -} sqlite3Prng;sqlite3Prng26057,1064510 -SQLITE_API void SQLITE_STDCALL sqlite3_randomness(int N, void *pBuf){sqlite3_randomness26062,1064558 -# define wsdPrng wsdPrng26074,1065138 -static SQLITE_WSD struct sqlite3PrngType sqlite3SavedPrng;sqlite3SavedPrng26148,1067036 -SQLITE_PRIVATE void sqlite3PrngSaveState(void){sqlite3PrngSaveState26149,1067095 -SQLITE_PRIVATE void sqlite3PrngRestoreState(void){sqlite3PrngRestoreState26156,1067289 -#define SQLITE_THREADS_IMPLEMENTED SQLITE_THREADS_IMPLEMENTED26204,1069093 -struct SQLiteThread {SQLiteThread26208,1069225 - pthread_t tid; /* Thread ID */tid26209,1069247 - pthread_t tid; /* Thread ID */SQLiteThread::tid26209,1069247 - int done; /* Set to true when thread finishes */done26210,1069296 - int done; /* Set to true when thread finishes */SQLiteThread::done26210,1069296 - void *pOut; /* Result returned by the thread */pOut26211,1069368 - void *pOut; /* Result returned by the thread */SQLiteThread::pOut26211,1069368 - void *(*xTask)(void*); /* The thread routine */xTask26212,1069437 - void *(*xTask)(void*); /* The thread routine */SQLiteThread::xTask26212,1069437 - void *pIn; /* Argument to the thread */pIn26213,1069495 - void *pIn; /* Argument to the thread */SQLiteThread::pIn26213,1069495 -SQLITE_PRIVATE int sqlite3ThreadCreate(sqlite3ThreadCreate26217,1069587 -SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){sqlite3ThreadJoin26254,1070657 -#define SQLITE_THREADS_IMPLEMENTED SQLITE_THREADS_IMPLEMENTED26276,1071226 -struct SQLiteThread {SQLiteThread26280,1071352 - void *tid; /* The thread handle */tid26281,1071374 - void *tid; /* The thread handle */SQLiteThread::tid26281,1071374 - unsigned id; /* The thread identifier */id26282,1071425 - unsigned id; /* The thread identifier */SQLiteThread::id26282,1071425 - void *(*xTask)(void*); /* The routine to run as a thread */xTask26283,1071480 - void *(*xTask)(void*); /* The routine to run as a thread */SQLiteThread::xTask26283,1071480 - void *pIn; /* Argument to xTask */pIn26284,1071544 - void *pIn; /* Argument to xTask */SQLiteThread::pIn26284,1071544 - void *pResult; /* Result of xTask */pResult26285,1071595 - void *pResult; /* Result of xTask */SQLiteThread::pResult26285,1071595 -static unsigned __stdcall sqlite3ThreadProc(sqlite3ThreadProc26289,1071696 -SQLITE_PRIVATE int sqlite3ThreadCreate(sqlite3ThreadCreate26312,1072289 -SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){sqlite3ThreadJoin26350,1073511 -struct SQLiteThread {SQLiteThread26383,1074534 - void *(*xTask)(void*); /* The routine to run as a thread */xTask26384,1074556 - void *(*xTask)(void*); /* The routine to run as a thread */SQLiteThread::xTask26384,1074556 - void *pIn; /* Argument to xTask */pIn26385,1074620 - void *pIn; /* Argument to xTask */SQLiteThread::pIn26385,1074620 - void *pResult; /* Result of xTask */pResult26386,1074671 - void *pResult; /* Result of xTask */SQLiteThread::pResult26386,1074671 -SQLITE_PRIVATE int sqlite3ThreadCreate(sqlite3ThreadCreate26390,1074750 -SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){sqlite3ThreadJoin26414,1075363 -SQLITE_PRIVATE const int sqlite3one = 1;sqlite3one26486,1077577 -static const unsigned char sqlite3Utf8Trans1[] = {sqlite3Utf8Trans126493,1077775 -#define WRITE_UTF8(WRITE_UTF826505,1078231 -#define WRITE_UTF16LE(WRITE_UTF16LE26525,1079260 -#define WRITE_UTF16BE(WRITE_UTF16BE26537,1079963 -#define READ_UTF16LE(READ_UTF16LE26549,1080666 -#define READ_UTF16BE(READ_UTF16BE26559,1081245 -#define READ_UTF8(READ_UTF826596,1082927 -SQLITE_PRIVATE u32 sqlite3Utf8Read(sqlite3Utf8Read26607,1083541 -SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){sqlite3VdbeMemTranslate26643,1084511 -SQLITE_PRIVATE int sqlite3VdbeMemHandleBom(Mem *pMem){sqlite3VdbeMemHandleBom26786,1088724 -SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *zIn, int nByte){sqlite3Utf8CharLen26824,1089713 -SQLITE_PRIVATE int sqlite3Utf8To8(unsigned char *zIn){sqlite3Utf8To826854,1090444 -SQLITE_PRIVATE char *sqlite3Utf16to8(sqlite3 *db, const void *z, int nByte, u8 enc){sqlite3Utf16to826878,1091028 -SQLITE_PRIVATE int sqlite3Utf16ByteLen(const void *zIn, int nChar){sqlite3Utf16ByteLen26899,1091695 -SQLITE_PRIVATE void sqlite3UtfSelfTest(void){sqlite3UtfSelfTest26924,1092294 -SQLITE_PRIVATE void sqlite3Coverage(int x){sqlite3Coverage27002,1094258 -SQLITE_PRIVATE int sqlite3FaultSim(int iTest){sqlite3FaultSim27020,1094821 -SQLITE_PRIVATE int sqlite3IsNaN(double x){sqlite3IsNaN27033,1095250 -SQLITE_PRIVATE int sqlite3Strlen30(const char *z){sqlite3Strlen3027081,1097060 -SQLITE_PRIVATE char *sqlite3ColumnType(Column *pCol, char *zDflt){sqlite3ColumnType27093,1097423 -static SQLITE_NOINLINE void sqlite3ErrorFinish(sqlite3 *db, int err_code){sqlite3ErrorFinish27103,1097768 -SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){sqlite3Error27113,1098119 -SQLITE_PRIVATE void sqlite3SystemError(sqlite3 *db, int rc){sqlite3SystemError27123,1098412 -SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){sqlite3ErrorWithMsg27152,1099383 -SQLITE_PRIVATE void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){sqlite3ErrorMsg27185,1100606 -SQLITE_PRIVATE void sqlite3Dequote(char *z){sqlite3Dequote27219,1101650 -SQLITE_PRIVATE void sqlite3TokenInit(Token *p, char *z){sqlite3TokenInit27245,1102099 -#define UpperToLower UpperToLower27251,1102228 -SQLITE_API int SQLITE_STDCALL sqlite3_stricmp(const char *zLeft, const char *zRight){sqlite3_stricmp27263,1102731 -SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){sqlite3StrICmp27271,1102948 -SQLITE_API int SQLITE_STDCALL sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){sqlite3_strnicmp27284,1103246 -SQLITE_PRIVATE int sqlite3AtoF(const char *z, double *pResult, int length, u8 enc){sqlite3AtoF27319,1104479 -static int compare2pow63(const char *zNum, int incr){compare2pow6327509,1110083 -SQLITE_PRIVATE int sqlite3Atoi64(const char *zNum, i64 *pNum, int length, u8 enc){sqlite3Atoi6427545,1111218 -SQLITE_PRIVATE int sqlite3DecOrHexToI64(const char *z, i64 *pOut){sqlite3DecOrHexToI6427631,1113913 -SQLITE_PRIVATE int sqlite3GetInt32(const char *zNum, int *pValue){sqlite3GetInt3227661,1114790 -SQLITE_PRIVATE int sqlite3Atoi(const char *z){sqlite3Atoi27719,1116012 -static int SQLITE_NOINLINE putVarint64(unsigned char *p, u64 v){putVarint6427754,1116952 -SQLITE_PRIVATE int sqlite3PutVarint(unsigned char *p, u64 v){sqlite3PutVarint27778,1117414 -#define SLOT_2_0 SLOT_2_027800,1117956 -#define SLOT_4_2_0 SLOT_4_2_027801,1117988 -SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *p, u64 *v){sqlite3GetVarint27808,1118163 -SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *p, u32 *v){sqlite3GetVarint3227979,1121385 -SQLITE_PRIVATE int sqlite3VarintLen(u64 v){sqlite3VarintLen28102,1123932 -SQLITE_PRIVATE u32 sqlite3Get4byte(const u8 *p){sqlite3Get4byte28112,1124111 -SQLITE_PRIVATE void sqlite3Put4byte(unsigned char *p, u32 v){sqlite3Put4byte28132,1124673 -SQLITE_PRIVATE u8 sqlite3HexToInt(int h){sqlite3HexToInt28158,1125354 -SQLITE_PRIVATE void *sqlite3HexToBlob(sqlite3 *db, const char *z, int n){sqlite3HexToBlob28176,1125898 -static void logBadConnection(const char *zType){logBadConnection28197,1126501 -SQLITE_PRIVATE int sqlite3SafetyCheckOk(sqlite3 *db){sqlite3SafetyCheckOk28218,1127371 -SQLITE_PRIVATE int sqlite3SafetyCheckSickOrOk(sqlite3 *db){sqlite3SafetyCheckSickOrOk28235,1127730 -SQLITE_PRIVATE int sqlite3AddInt64(i64 *pA, i64 iB){sqlite3AddInt6428255,1128320 -SQLITE_PRIVATE int sqlite3SubInt64(i64 *pA, i64 iB){sqlite3SubInt6428271,1128855 -#define TWOPOWER32 TWOPOWER3228282,1129133 -#define TWOPOWER31 TWOPOWER3128283,1129167 -SQLITE_PRIVATE int sqlite3MulInt64(i64 *pA, i64 iB){sqlite3MulInt6428284,1129201 -SQLITE_PRIVATE int sqlite3AbsInt32(int x){sqlite3AbsInt3228319,1130033 -SQLITE_PRIVATE void sqlite3FileSuffix3(const char *zBaseFilename, char *z){sqlite3FileSuffix328343,1130843 -SQLITE_PRIVATE LogEst sqlite3LogEstAdd(LogEst a, LogEst b){sqlite3LogEstAdd28362,1131364 -SQLITE_PRIVATE LogEst sqlite3LogEst(u64 x){sqlite3LogEst28389,1132191 -SQLITE_PRIVATE LogEst sqlite3LogEstFromDouble(double x){sqlite3LogEstFromDouble28407,1132659 -SQLITE_PRIVATE u64 sqlite3LogEstToInt(LogEst x){sqlite3LogEstToInt28428,1133253 -SQLITE_PRIVATE void sqlite3HashInit(Hash *pNew){sqlite3HashInit28470,1134631 -SQLITE_PRIVATE void sqlite3HashClear(Hash *pH){sqlite3HashClear28482,1134935 -static unsigned int strHash(const char *z){strHash28502,1135327 -static void insertElement(insertElement28515,1135663 -static int rehash(Hash *pH, unsigned int new_size){rehash28549,1136640 -static HashElem *findElementWithHash(findElementWithHash28589,1138211 -static void removeElementGivenHash(removeElementGivenHash28623,1139153 -SQLITE_PRIVATE void *sqlite3HashFind(const Hash *pH, const char *pKey){sqlite3HashFind28658,1140029 -SQLITE_PRIVATE void *sqlite3HashInsert(Hash *pH, const char *pKey, void *data){sqlite3HashInsert28682,1140905 -# define OpHelp(OpHelp28724,1142297 -# define OpHelp(OpHelp28726,1142329 -SQLITE_PRIVATE const char *sqlite3OpcodeName(int i){sqlite3OpcodeName28728,1142355 -# define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE28965,1154344 -# define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE28967,1154394 -# define HAVE_PREAD HAVE_PREAD28973,1154529 -# define HAVE_PWRITE HAVE_PWRITE28974,1154551 -# undef USE_PREADUSE_PREAD28977,1154633 -# define USE_PREAD64 USE_PREAD6428978,1154651 -# undef USE_PREAD64USE_PREAD6428980,1154724 -# define USE_PREAD USE_PREAD28981,1154744 -# define HAVE_GETHOSTUUID HAVE_GETHOSTUUID29008,1155474 -#define SQLITE_FSFLAGS_IS_MSDOS SQLITE_FSFLAGS_IS_MSDOS29032,1155864 -# define SQLITE_UNIX_THREADS SQLITE_UNIX_THREADS29040,1156066 -# define SQLITE_DEFAULT_FILE_PERMISSIONS SQLITE_DEFAULT_FILE_PERMISSIONS29047,1156199 -# define SQLITE_DEFAULT_PROXYDIR_PERMISSIONS SQLITE_DEFAULT_PROXYDIR_PERMISSIONS29054,1156355 -#define MAX_PATHNAME MAX_PATHNAME29060,1156453 -#define SQLITE_MAX_SYMLINKS SQLITE_MAX_SYMLINKS29065,1156521 -#define osGetpid(osGetpid29069,1156650 -#define IS_LOCK_ERROR(IS_LOCK_ERROR29075,1156823 -typedef struct unixShm unixShm; /* Connection shared memory */unixShm29078,1156916 -typedef struct unixShmNode unixShmNode; /* Shared memory instance */unixShmNode29079,1156993 -typedef struct unixInodeInfo unixInodeInfo; /* An i-node */unixInodeInfo29080,1157068 -typedef struct UnixUnusedFd UnixUnusedFd; /* An unused file descriptor */UnixUnusedFd29081,1157130 -struct UnixUnusedFd {UnixUnusedFd29089,1157482 - int fd; /* File descriptor to close */fd29090,1157504 - int fd; /* File descriptor to close */UnixUnusedFd::fd29090,1157504 - int flags; /* Flags this file descriptor was opened with */flags29091,1157563 - int flags; /* Flags this file descriptor was opened with */UnixUnusedFd::flags29091,1157563 - UnixUnusedFd *pNext; /* Next unused file descriptor on same file */pNext29092,1157640 - UnixUnusedFd *pNext; /* Next unused file descriptor on same file */UnixUnusedFd::pNext29092,1157640 -typedef struct unixFile unixFile;unixFile29099,1157824 -struct unixFile {unixFile29100,1157858 - sqlite3_io_methods const *pMethod; /* Always the first entry */pMethod29101,1157876 - sqlite3_io_methods const *pMethod; /* Always the first entry */unixFile::pMethod29101,1157876 - sqlite3_vfs *pVfs; /* The VFS that created this unixFile */pVfs29102,1157943 - sqlite3_vfs *pVfs; /* The VFS that created this unixFile */unixFile::pVfs29102,1157943 - unixInodeInfo *pInode; /* Info about locks on this inode */pInode29103,1158022 - unixInodeInfo *pInode; /* Info about locks on this inode */unixFile::pInode29103,1158022 - int h; /* The file descriptor */h29104,1158097 - int h; /* The file descriptor */unixFile::h29104,1158097 - unsigned char eFileLock; /* The type of lock held on this fd */eFileLock29105,1158161 - unsigned char eFileLock; /* The type of lock held on this fd */unixFile::eFileLock29105,1158161 - unsigned short int ctrlFlags; /* Behavioral bits. UNIXFILE_* flags */ctrlFlags29106,1158238 - unsigned short int ctrlFlags; /* Behavioral bits. UNIXFILE_* flags */unixFile::ctrlFlags29106,1158238 - int lastErrno; /* The unix errno from last I/O error */lastErrno29107,1158317 - int lastErrno; /* The unix errno from last I/O error */unixFile::lastErrno29107,1158317 - void *lockingContext; /* Locking style specific state */lockingContext29108,1158396 - void *lockingContext; /* Locking style specific state */unixFile::lockingContext29108,1158396 - UnixUnusedFd *pUnused; /* Pre-allocated UnixUnusedFd */pUnused29109,1158469 - UnixUnusedFd *pUnused; /* Pre-allocated UnixUnusedFd */unixFile::pUnused29109,1158469 - const char *zPath; /* Name of the file */zPath29110,1158540 - const char *zPath; /* Name of the file */unixFile::zPath29110,1158540 - unixShm *pShm; /* Shared memory segment information */pShm29111,1158601 - unixShm *pShm; /* Shared memory segment information */unixFile::pShm29111,1158601 - int szChunk; /* Configured by FCNTL_CHUNK_SIZE */szChunk29112,1158679 - int szChunk; /* Configured by FCNTL_CHUNK_SIZE */unixFile::szChunk29112,1158679 - int nFetchOut; /* Number of outstanding xFetch refs */nFetchOut29114,1158781 - int nFetchOut; /* Number of outstanding xFetch refs */unixFile::nFetchOut29114,1158781 - sqlite3_int64 mmapSize; /* Usable size of mapping at pMapRegion */mmapSize29115,1158859 - sqlite3_int64 mmapSize; /* Usable size of mapping at pMapRegion */unixFile::mmapSize29115,1158859 - sqlite3_int64 mmapSizeActual; /* Actual size of mapping at pMapRegion */mmapSizeActual29116,1158940 - sqlite3_int64 mmapSizeActual; /* Actual size of mapping at pMapRegion */unixFile::mmapSizeActual29116,1158940 - sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */mmapSizeMax29117,1159021 - sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */unixFile::mmapSizeMax29117,1159021 - void *pMapRegion; /* Memory mapped region */pMapRegion29118,1159098 - void *pMapRegion; /* Memory mapped region */unixFile::pMapRegion29118,1159098 - int sectorSize; /* Device sector size */sectorSize29121,1159188 - int sectorSize; /* Device sector size */unixFile::sectorSize29121,1159188 - int deviceCharacteristics; /* Precomputed device characteristics */deviceCharacteristics29122,1159251 - int deviceCharacteristics; /* Precomputed device characteristics */unixFile::deviceCharacteristics29122,1159251 - int openFlags; /* The flags specified at open() */openFlags29125,1159369 - int openFlags; /* The flags specified at open() */unixFile::openFlags29125,1159369 - unsigned fsFlags; /* cached details from statfs() */fsFlags29128,1159504 - unsigned fsFlags; /* cached details from statfs() */unixFile::fsFlags29128,1159504 - struct vxworksFileId *pId; /* Unique file ID */pId29131,1159599 - struct vxworksFileId *pId; /* Unique file ID */unixFile::pId29131,1159599 - unsigned char transCntrChng; /* True if the transaction counter changed */transCntrChng29141,1160080 - unsigned char transCntrChng; /* True if the transaction counter changed */unixFile::transCntrChng29141,1160080 - unsigned char dbUpdate; /* True if any part of database file changed */dbUpdate29142,1160159 - unsigned char dbUpdate; /* True if any part of database file changed */unixFile::dbUpdate29142,1160159 - unsigned char inNormalWrite; /* True if in a normal write operation */inNormalWrite29143,1160240 - unsigned char inNormalWrite; /* True if in a normal write operation */unixFile::inNormalWrite29143,1160240 - char aPadding[32];aPadding29151,1160482 - char aPadding[32];unixFile::aPadding29151,1160482 -static pid_t randomnessPid = 0;randomnessPid29159,1160728 -#define UNIXFILE_EXCL UNIXFILE_EXCL29164,1160821 -#define UNIXFILE_RDONLY UNIXFILE_RDONLY29165,1160899 -#define UNIXFILE_PERSIST_WAL UNIXFILE_PERSIST_WAL29166,1160967 -# define UNIXFILE_DIRSYNC UNIXFILE_DIRSYNC29168,1161062 -# define UNIXFILE_DIRSYNC UNIXFILE_DIRSYNC29170,1161134 -#define UNIXFILE_PSOW UNIXFILE_PSOW29172,1161175 -#define UNIXFILE_DELETE UNIXFILE_DELETE29173,1161252 -#define UNIXFILE_URI UNIXFILE_URI29174,1161312 -#define UNIXFILE_NOLOCK UNIXFILE_NOLOCK29175,1161393 -#define _OS_COMMON_H__OS_COMMON_H_29202,1162340 -#define _HWTIME_H__HWTIME_H_29241,1163584 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime29254,1163976 - __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){__declspec29262,1164184 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime29273,1164399 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime29281,1164594 -SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); }sqlite3Hwtime29305,1165336 -static sqlite_uint64 g_start;g_start29314,1165622 -static sqlite_uint64 g_elapsed;g_elapsed29315,1165652 -#define TIMER_START TIMER_START29316,1165684 -#define TIMER_END TIMER_END29317,1165734 -#define TIMER_ELAPSED TIMER_ELAPSED29318,1165794 -#define TIMER_STARTTIMER_START29320,1165836 -#define TIMER_ENDTIMER_END29321,1165856 -#define TIMER_ELAPSED TIMER_ELAPSED29322,1165874 -#define SimulateIOErrorBenign(SimulateIOErrorBenign29338,1166474 -#define SimulateIOError(SimulateIOError29339,1166535 -static void local_ioerr(){local_ioerr29343,1166713 -#define SimulateDiskfullError(SimulateDiskfullError29348,1166853 -#define SimulateIOErrorBenign(SimulateIOErrorBenign29360,1167148 -#define SimulateIOError(SimulateIOError29361,1167181 -#define SimulateDiskfullError(SimulateDiskfullError29362,1167208 -#define OpenCounter(OpenCounter29370,1167413 -#define OpenCounter(OpenCounter29372,1167472 -# define O_LARGEFILE O_LARGEFILE29384,1167816 -# undef O_LARGEFILEO_LARGEFILE29387,1167872 -# define O_LARGEFILE O_LARGEFILE29388,1167892 -# define O_NOFOLLOW O_NOFOLLOW29391,1167941 -# define O_BINARY O_BINARY29394,1167987 -#define threadid threadid29402,1168141 -#define threadid threadid29404,1168179 -# define HAVE_MREMAP HAVE_MREMAP29412,1168354 -# define HAVE_MREMAP HAVE_MREMAP29414,1168385 -# define lseek lseek29423,1168597 -static int posixOpen(const char *zFile, int flags, int mode){posixOpen29434,1168974 -static struct unix_syscall {unix_syscall29448,1169443 - const char *zName; /* Name of the system call */zName29449,1169472 - const char *zName; /* Name of the system call */unix_syscall::zName29449,1169472 - sqlite3_syscall_ptr pCurrent; /* Current value of the system call */pCurrent29450,1169534 - sqlite3_syscall_ptr pCurrent; /* Current value of the system call */unix_syscall::pCurrent29450,1169534 - sqlite3_syscall_ptr pDefault; /* Default value */pDefault29451,1169605 - sqlite3_syscall_ptr pDefault; /* Default value */unix_syscall::pDefault29451,1169605 -#define osOpen osOpen29454,1169733 -#define osClose osClose29457,1169865 -#define osAccess osAccess29460,1169981 -#define osGetcwd osGetcwd29463,1170109 -#define osStat osStat29466,1170236 -#define osFstat(osFstat29476,1170637 -#define osFtruncate osFtruncate29483,1170871 -#define osFcntl osFcntl29486,1170993 -#define osRead osRead29489,1171117 -#define osPread osPread29496,1171376 -#define osPread64 osPread6429503,1171612 -#define osWrite osWrite29506,1171752 -#define osPwrite osPwrite29513,1172018 -#define osPwrite64 osPwrite6429521,1172283 -#define osFchmod osFchmod29525,1172458 -#define osFallocate osFallocate29532,1172722 -#define osUnlink osUnlink29535,1172856 -#define osOpenDirectory osOpenDirectory29538,1172992 -#define osMkdir osMkdir29541,1173130 -#define osRmdir osRmdir29544,1173266 -#define osFchown osFchown29551,1173496 -#define osGeteuid osGeteuid29554,1173629 -#define osMmap osMmap29561,1173885 -#define osMunmap osMunmap29568,1174162 -#define osMremap osMremap29575,1174440 -#define osGetpagesize osGetpagesize29582,1174716 -#define osReadlink osReadlink29589,1174943 -#define osLstat osLstat29596,1175188 -} aSyscall[] = {aSyscall29452,1169657 -static int robustFchown(int fd, uid_t uid, gid_t gid){robustFchown29606,1175503 -static int unixSetSystemCall(unixSetSystemCall29620,1175900 -static sqlite3_syscall_ptr unixGetSystemCall(unixGetSystemCall29663,1177185 -static const char *unixNextSystemCall(sqlite3_vfs *p, const char *zName){unixNextSystemCall29682,1177712 -# define SQLITE_MINIMUM_FILE_DESCRIPTOR SQLITE_MINIMUM_FILE_DESCRIPTOR29703,1178303 -static int robust_open(const char *z, int f, mode_t m){robust_open29723,1179182 -static void unixEnterMutex(void){unixEnterMutex29774,1180556 -static void unixLeaveMutex(void){unixLeaveMutex29777,1180660 -static int unixMutexHeld(void) {unixMutexHeld29781,1180784 -static const char *azFileLock(int eFileLock){azFileLock29793,1181095 -static int lockTrace(int fd, int op, struct flock *p){lockTrace29814,1181695 -#undef osFcntlosFcntl29861,1182947 -#define osFcntl osFcntl29862,1182962 -static int robust_ftruncate(int h, sqlite3_int64 sz){robust_ftruncate29872,1183253 -static int sqliteErrorFromPosixError(int posixError, int sqliteIOErr) {sqliteErrorFromPosixError29897,1184171 -struct vxworksFileId {vxworksFileId29939,1185692 - struct vxworksFileId *pNext; /* Next in a list of them all */pNext29940,1185715 - struct vxworksFileId *pNext; /* Next in a list of them all */vxworksFileId::pNext29940,1185715 - int nRef; /* Number of references to this one */nRef29941,1185780 - int nRef; /* Number of references to this one */vxworksFileId::nRef29941,1185780 - int nName; /* Length of the zCanonicalName[] string */nName29942,1185851 - int nName; /* Length of the zCanonicalName[] string */vxworksFileId::nName29942,1185851 - char *zCanonicalName; /* Canonical filename */zCanonicalName29943,1185927 - char *zCanonicalName; /* Canonical filename */vxworksFileId::zCanonicalName29943,1185927 -static struct vxworksFileId *vxworksFileList = 0;vxworksFileList29951,1186088 -static int vxworksSimplifyName(char *z, int n){vxworksSimplifyName29966,1186532 -static struct vxworksFileId *vxworksFindFileId(const char *zAbsoluteName){vxworksFindFileId30000,1187425 -static void vxworksReleaseFileId(struct vxworksFileId *pId){vxworksReleaseFileId30042,1188825 -struct unixFileId {unixFileId30154,1194391 - dev_t dev; /* Device number */dev30155,1194411 - dev_t dev; /* Device number */unixFileId::dev30155,1194411 - struct vxworksFileId *pId; /* Unique file ID for vxworks. */pId30157,1194476 - struct vxworksFileId *pId; /* Unique file ID for vxworks. */unixFileId::pId30157,1194476 - ino_t ino; /* Inode number */ino30159,1194546 - ino_t ino; /* Inode number */unixFileId::ino30159,1194546 -struct unixInodeInfo {unixInodeInfo30172,1194998 - struct unixFileId fileId; /* The lookup key */fileId30173,1195021 - struct unixFileId fileId; /* The lookup key */unixInodeInfo::fileId30173,1195021 - int nShared; /* Number of SHARED locks held */nShared30174,1195076 - int nShared; /* Number of SHARED locks held */unixInodeInfo::nShared30174,1195076 - unsigned char eFileLock; /* One of SHARED_LOCK, RESERVED_LOCK etc. */eFileLock30175,1195144 - unsigned char eFileLock; /* One of SHARED_LOCK, RESERVED_LOCK etc. */unixInodeInfo::eFileLock30175,1195144 - unsigned char bProcessLock; /* An exclusive process lock is held */bProcessLock30176,1195223 - unsigned char bProcessLock; /* An exclusive process lock is held */unixInodeInfo::bProcessLock30176,1195223 - int nRef; /* Number of pointers to this structure */nRef30177,1195297 - int nRef; /* Number of pointers to this structure */unixInodeInfo::nRef30177,1195297 - unixShmNode *pShmNode; /* Shared memory associated with this inode */pShmNode30178,1195374 - unixShmNode *pShmNode; /* Shared memory associated with this inode */unixInodeInfo::pShmNode30178,1195374 - int nLock; /* Number of outstanding file locks */nLock30179,1195455 - int nLock; /* Number of outstanding file locks */unixInodeInfo::nLock30179,1195455 - UnixUnusedFd *pUnused; /* Unused file descriptors to close */pUnused30180,1195528 - UnixUnusedFd *pUnused; /* Unused file descriptors to close */unixInodeInfo::pUnused30180,1195528 - unixInodeInfo *pNext; /* List of all unixInodeInfo objects */pNext30181,1195601 - unixInodeInfo *pNext; /* List of all unixInodeInfo objects */unixInodeInfo::pNext30181,1195601 - unixInodeInfo *pPrev; /* .... doubly linked */pPrev30182,1195675 - unixInodeInfo *pPrev; /* .... doubly linked */unixInodeInfo::pPrev30182,1195675 - unsigned long long sharedByte; /* for AFP simulated shared lock */sharedByte30184,1195769 - unsigned long long sharedByte; /* for AFP simulated shared lock */unixInodeInfo::sharedByte30184,1195769 - sem_t *pSem; /* Named POSIX semaphore */pSem30187,1195861 - sem_t *pSem; /* Named POSIX semaphore */unixInodeInfo::pSem30187,1195861 - char aSemName[MAX_PATHNAME+2]; /* Name of that semaphore */aSemName30188,1195923 - char aSemName[MAX_PATHNAME+2]; /* Name of that semaphore */unixInodeInfo::aSemName30188,1195923 -static unixInodeInfo *inodeList = 0;inodeList30195,1196044 -#define unixLogError(unixLogError30213,1196743 -static int unixLogErrorAtLine(unixLogErrorAtLine30214,1196810 -static void robust_close(unixFile *pFile, int h, int lineno){robust_close30279,1199260 -static void storeLastErrno(unixFile *pFile, int error){storeLastErrno30290,1199579 -static void closePendingFds(unixFile *pFile){closePendingFds30297,1199750 -static void releaseInodeInfo(unixFile *pFile){releaseInodeInfo30315,1200222 -static int findInodeInfo(findInodeInfo30349,1201209 -static int fileHasMoved(unixFile *pFile){fileHasMoved30432,1203914 -static void verifyDbFile(unixFile *pFile){verifyDbFile30452,1204473 -static int unixCheckReservedLock(sqlite3_file *id, int *pResOut){unixCheckReservedLock30485,1205463 -static int unixFileLock(unixFile *pFile, struct flock *pLock){unixFileLock30545,1207413 -static int unixLock(sqlite3_file *id, int eFileLock){unixLock30595,1208915 -static void setPendingFd(unixFile *pFile){setPendingFd30822,1216697 -static int posixUnlock(sqlite3_file *id, int eFileLock, int handleNFSUnlock){posixUnlock30844,1217542 -static int unixUnlock(sqlite3_file *id, int eFileLock){unixUnlock31004,1222957 -static int closeUnixFile(sqlite3_file *id){closeUnixFile31026,1223687 -static int unixClose(sqlite3_file *id){unixClose31061,1224469 -static int nolockCheckReservedLock(sqlite3_file *NotUsed, int *pResOut){nolockCheckReservedLock31106,1226338 -static int nolockLock(sqlite3_file *NotUsed, int NotUsed2){nolockLock31111,1226478 -static int nolockUnlock(sqlite3_file *NotUsed, int NotUsed2){nolockUnlock31115,1226600 -static int nolockClose(sqlite3_file *id) {nolockClose31123,1226750 -#define DOTLOCK_SUFFIX DOTLOCK_SUFFIX31156,1228168 -static int dotlockCheckReservedLock(sqlite3_file *id, int *pResOut) {dotlockCheckReservedLock31168,1228708 -static int dotlockLock(sqlite3_file *id, int eFileLock) {dotlockLock31209,1230047 -static int dotlockUnlock(sqlite3_file *id, int eFileLock) {dotlockUnlock31259,1231397 -static int dotlockClose(sqlite3_file *id) {dotlockClose31302,1232490 -static int robust_flock(int fd, int op){robust_flock31332,1233628 -# define robust_flock(robust_flock31338,1233757 -static int flockCheckReservedLock(sqlite3_file *id, int *pResOut){flockCheckReservedLock31348,1234111 -static int flockLock(sqlite3_file *id, int eFileLock) {flockLock31428,1236521 -static int flockUnlock(sqlite3_file *id, int eFileLock) {flockUnlock31472,1237776 -static int flockClose(sqlite3_file *id) {flockClose31506,1238601 -static int semXCheckReservedLock(sqlite3_file *id, int *pResOut) {semXCheckReservedLock31535,1239744 -static int semXLock(sqlite3_file *id, int eFileLock) {semXLock31602,1241801 -static int semXUnlock(sqlite3_file *id, int eFileLock) {semXUnlock31635,1242676 -static int semXClose(sqlite3_file *id) {semXClose31672,1243571 -typedef struct afpLockingContext afpLockingContext;afpLockingContext31707,1244604 -struct afpLockingContext {afpLockingContext31708,1244656 - int reserved;reserved31709,1244683 - int reserved;afpLockingContext::reserved31709,1244683 - const char *dbPath; /* Name of the open file */dbPath31710,1244699 - const char *dbPath; /* Name of the open file */afpLockingContext::dbPath31710,1244699 -struct ByteRangeLockPB2ByteRangeLockPB231713,1244765 - unsigned long long offset; /* offset to first byte to lock */offset31715,1244791 - unsigned long long offset; /* offset to first byte to lock */ByteRangeLockPB2::offset31715,1244791 - unsigned long long length; /* nbr of bytes to lock */length31716,1244862 - unsigned long long length; /* nbr of bytes to lock */ByteRangeLockPB2::length31716,1244862 - unsigned long long retRangeStart; /* nbr of 1st byte locked if successful */retRangeStart31717,1244925 - unsigned long long retRangeStart; /* nbr of 1st byte locked if successful */ByteRangeLockPB2::retRangeStart31717,1244925 - unsigned char unLockFlag; /* 1 = unlock, 0 = lock */unLockFlag31718,1245004 - unsigned char unLockFlag; /* 1 = unlock, 0 = lock */ByteRangeLockPB2::unLockFlag31718,1245004 - unsigned char startEndFlag; /* 1=rel to end of fork, 0=rel to start */startEndFlag31719,1245067 - unsigned char startEndFlag; /* 1=rel to end of fork, 0=rel to start */ByteRangeLockPB2::startEndFlag31719,1245067 - int fd; /* file desc to assoc this lock with */fd31720,1245146 - int fd; /* file desc to assoc this lock with */ByteRangeLockPB2::fd31720,1245146 -#define afpfsByteRangeLock2FSCTL afpfsByteRangeLock2FSCTL31723,1245226 -static int afpSetLock(afpSetLock31731,1245460 -static int afpCheckReservedLock(sqlite3_file *id, int *pResOut){afpCheckReservedLock31777,1247037 -static int afpLock(sqlite3_file *id, int eFileLock){afpLock31847,1249116 -static int afpUnlock(sqlite3_file *id, int eFileLock) {afpUnlock32029,1255322 -static int afpClose(sqlite3_file *id) {afpClose32132,1258677 -static int nfsUnlock(sqlite3_file *id, int eFileLock){nfsUnlock32174,1260252 -static int seekAndRead(unixFile *id, sqlite3_int64 offset, void *pBuf, int cnt){seekAndRead32210,1261774 -static int unixRead(unixRead32259,1263067 -static int seekAndWriteFd(seekAndWriteFd32318,1264753 -static int seekAndWrite(unixFile *id, i64 offset, const void *pBuf, int cnt){seekAndWrite32364,1266137 -static int unixWrite(unixWrite32373,1266402 -SQLITE_API int sqlite3_sync_count = 0;sqlite3_sync_count32458,1268867 -SQLITE_API int sqlite3_fullsync_count = 0;sqlite3_fullsync_count32459,1268906 -# define fdatasync fdatasync32469,1269295 -# define HAVE_FULLFSYNC HAVE_FULLFSYNC32478,1269534 -# define HAVE_FULLFSYNC HAVE_FULLFSYNC32480,1269566 -static int full_fsync(int fd, int fullSync, int dataOnly){full_fsync32508,1270890 -static int openDirectory(const char *zFilename, int *pFd){openDirectory32604,1274110 -static int unixSync(sqlite3_file *id, int flags){unixSync32641,1275453 -static int unixTruncate(sqlite3_file *id, i64 nByte){unixTruncate32691,1276991 -static int unixFileSize(sqlite3_file *id, i64 *pSize){unixFileSize32741,1278594 -static int fcntlSizeHint(unixFile *pFile, i64 nByte){fcntlSizeHint32779,1279734 -static void unixModeBit(unixFile *pFile, unsigned char mask, int *pArg){unixModeBit32848,1282190 -static int unixFileControl(sqlite3_file *id, int op, void *pArg){unixFileControl32864,1282559 -static int unixSectorSize(sqlite3_file *NotUsed){unixSectorSize32960,1285502 -static int unixSectorSize(sqlite3_file *id){unixSectorSize32972,1285770 -static int unixDeviceCharacteristics(sqlite3_file *id){unixDeviceCharacteristics33059,1289825 -static int unixGetpagesize(void){unixGetpagesize33080,1290364 -struct unixShmNode {unixShmNode33123,1291762 - unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */pInode33124,1291783 - unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */unixShmNode::pInode33124,1291783 - sqlite3_mutex *mutex; /* Mutex to access this object */mutex33125,1291856 - sqlite3_mutex *mutex; /* Mutex to access this object */unixShmNode::mutex33125,1291856 - char *zFilename; /* Name of the mmapped file */zFilename33126,1291919 - char *zFilename; /* Name of the mmapped file */unixShmNode::zFilename33126,1291919 - int h; /* Open file descriptor */h33127,1291979 - int h; /* Open file descriptor */unixShmNode::h33127,1291979 - int szRegion; /* Size of shared-memory regions */szRegion33128,1292035 - int szRegion; /* Size of shared-memory regions */unixShmNode::szRegion33128,1292035 - u16 nRegion; /* Size of array apRegion */nRegion33129,1292100 - u16 nRegion; /* Size of array apRegion */unixShmNode::nRegion33129,1292100 - u8 isReadonly; /* True if read-only */isReadonly33130,1292158 - u8 isReadonly; /* True if read-only */unixShmNode::isReadonly33130,1292158 - char **apRegion; /* Array of mapped shared-memory regions */apRegion33131,1292211 - char **apRegion; /* Array of mapped shared-memory regions */unixShmNode::apRegion33131,1292211 - int nRef; /* Number of unixShm objects pointing to this */nRef33132,1292284 - int nRef; /* Number of unixShm objects pointing to this */unixShmNode::nRef33132,1292284 - unixShm *pFirst; /* All unixShm objects pointing to this */pFirst33133,1292362 - unixShm *pFirst; /* All unixShm objects pointing to this */unixShmNode::pFirst33133,1292362 - u8 exclMask; /* Mask of exclusive locks held */exclMask33135,1292454 - u8 exclMask; /* Mask of exclusive locks held */unixShmNode::exclMask33135,1292454 - u8 sharedMask; /* Mask of shared locks held */sharedMask33136,1292518 - u8 sharedMask; /* Mask of shared locks held */unixShmNode::sharedMask33136,1292518 - u8 nextShmId; /* Next available unixShm.id value */nextShmId33137,1292579 - u8 nextShmId; /* Next available unixShm.id value */unixShmNode::nextShmId33137,1292579 -struct unixShm {unixShm33154,1293028 - unixShmNode *pShmNode; /* The underlying unixShmNode object */pShmNode33155,1293045 - unixShmNode *pShmNode; /* The underlying unixShmNode object */unixShm::pShmNode33155,1293045 - unixShm *pNext; /* Next unixShm with the same unixShmNode */pNext33156,1293114 - unixShm *pNext; /* Next unixShm with the same unixShmNode */unixShm::pNext33156,1293114 - u8 hasMutex; /* True if holding the unixShmNode mutex */hasMutex33157,1293188 - u8 hasMutex; /* True if holding the unixShmNode mutex */unixShm::hasMutex33157,1293188 - u8 id; /* Id of this connection within its unixShmNode */id33158,1293261 - u8 id; /* Id of this connection within its unixShmNode */unixShm::id33158,1293261 - u16 sharedMask; /* Mask of shared locks held */sharedMask33159,1293341 - u16 sharedMask; /* Mask of shared locks held */unixShm::sharedMask33159,1293341 - u16 exclMask; /* Mask of exclusive locks held */exclMask33160,1293402 - u16 exclMask; /* Mask of exclusive locks held */unixShm::exclMask33160,1293402 -#define UNIX_SHM_BASE UNIX_SHM_BASE33166,1293506 -#define UNIX_SHM_DMS UNIX_SHM_DMS33167,1293586 -static int unixShmSystemLock(unixShmSystemLock33175,1293831 -static int unixShmRegionPerMap(void){unixShmRegionPerMap33254,1296324 -static void unixShmPurge(unixFile *pFd){unixShmPurge33268,1296789 -static int unixOpenSharedMemory(unixFile *pDbFd){unixOpenSharedMemory33328,1299437 -static int unixShmMap(unixShmMap33477,1304892 -static int unixShmLock(unixShmLock33615,1309645 -static void unixShmBarrier(unixShmBarrier33727,1313546 -static int unixShmUnmap(unixShmUnmap33743,1314055 -# define unixShmMap unixShmMap33789,1315375 -# define unixShmLock unixShmLock33790,1315401 -# define unixShmBarrier unixShmBarrier33791,1315427 -# define unixShmUnmap unixShmUnmap33792,1315453 -static void unixUnmapfile(unixFile *pFd){unixUnmapfile33799,1315603 -static void unixRemapfile(unixRemapfile33824,1316355 -static int unixMapfile(unixFile *pFd, i64 nMap){unixMapfile33916,1319384 -static int unixFetch(sqlite3_file *fd, i64 iOff, int nAmt, void **pp){unixFetch33953,1320567 -static int unixUnfetch(sqlite3_file *fd, i64 iOff, void *p){unixUnfetch33984,1321541 -#define IOMETHODS(IOMETHODS34052,1323918 -static const sqlite3_io_methods *autolockIoFinderImpl(autolockIoFinderImpl34204,1331105 - *(*const autolockIoFinder)(const char*,unixFile*) = autolockIoFinderImpl;autolockIoFinder34258,1332720 -static const sqlite3_io_methods *vxworksIoFinderImpl(vxworksIoFinderImpl34268,1333077 - *(*const vxworksIoFinder)(const char*,unixFile*) = vxworksIoFinderImpl;vxworksIoFinder34294,1333824 -typedef const sqlite3_io_methods *(*finder_type)(const char*,unixFile*);finder_type34301,1333997 -static int fillInUnixFile(fillInUnixFile34314,1334399 -static const char *unixTempFileDir(void){unixTempFileDir34501,1340438 -static int unixGetTempname(int nBuf, char *zBuf){unixGetTempname34535,1341192 -static UnixUnusedFd *findReusableFd(const char *zPath, int flags){findReusableFd34585,1342994 -static int findCreateFileMode(findCreateFileMode34648,1345636 -static int unixOpen(unixOpen34728,1348422 -static int unixDelete(unixDelete34984,1357420 -static int unixAccess(unixAccess35032,1358739 -static int mkFullPathname(mkFullPathname35058,1359530 -static int unixFullPathname(unixFullPathname35091,1360593 -static void *unixDlOpen(sqlite3_vfs *NotUsed, const char *zFilename){unixDlOpen35181,1363207 -static void unixDlError(sqlite3_vfs *NotUsed, int nBuf, char *zBufOut){unixDlError35193,1363672 -static void (*unixDlSym(sqlite3_vfs *NotUsed, void *p, const char*zSym))(void){unixDlSym35203,1363922 -static void unixDlClose(sqlite3_vfs *NotUsed, void *pHandle){unixDlClose35226,1365002 - #define unixDlOpen unixDlOpen35231,1365169 - #define unixDlError unixDlError35232,1365193 - #define unixDlSym unixDlSym35233,1365217 - #define unixDlClose unixDlClose35234,1365241 -static int unixRandomness(sqlite3_vfs *NotUsed, int nBuf, char *zBuf){unixRandomness35240,1365343 -static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){unixSleep35287,1367091 -SQLITE_API int sqlite3_current_time = 0; /* Fake system time in seconds since 1970. */sqlite3_current_time35314,1367816 -static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){unixCurrentTimeInt6435327,1368351 -static int unixCurrentTime(sqlite3_vfs *NotUsed, double *prNow){unixCurrentTime35359,1369368 -# define unixCurrentTime unixCurrentTime35368,1369577 -static int unixGetLastError(sqlite3_vfs *NotUsed, int NotUsed2, char *NotUsed3){unixGetLastError35377,1369825 -typedef struct proxyLockingContext proxyLockingContext;proxyLockingContext35548,1377213 -struct proxyLockingContext {proxyLockingContext35549,1377269 - unixFile *conchFile; /* Open conch file */conchFile35550,1377298 - unixFile *conchFile; /* Open conch file */proxyLockingContext::conchFile35550,1377298 - char *conchFilePath; /* Name of the conch file */conchFilePath35551,1377351 - char *conchFilePath; /* Name of the conch file */proxyLockingContext::conchFilePath35551,1377351 - unixFile *lockProxy; /* Open proxy lock file */lockProxy35552,1377411 - unixFile *lockProxy; /* Open proxy lock file */proxyLockingContext::lockProxy35552,1377411 - char *lockProxyPath; /* Name of the proxy lock file */lockProxyPath35553,1377469 - char *lockProxyPath; /* Name of the proxy lock file */proxyLockingContext::lockProxyPath35553,1377469 - char *dbPath; /* Name of the open file */dbPath35554,1377534 - char *dbPath; /* Name of the open file */proxyLockingContext::dbPath35554,1377534 - int conchHeld; /* 1 if the conch is held, -1 if lockless */conchHeld35555,1377593 - int conchHeld; /* 1 if the conch is held, -1 if lockless */proxyLockingContext::conchHeld35555,1377593 - int nFails; /* Number of conch taking failures */nFails35556,1377669 - int nFails; /* Number of conch taking failures */proxyLockingContext::nFails35556,1377669 - void *oldLockingContext; /* Original lockingcontext to restore on close */oldLockingContext35557,1377738 - void *oldLockingContext; /* Original lockingcontext to restore on close */proxyLockingContext::oldLockingContext35557,1377738 - sqlite3_io_methods const *pOldMethod; /* Original I/O methods for close */pOldMethod35558,1377819 - sqlite3_io_methods const *pOldMethod; /* Original I/O methods for close */proxyLockingContext::pOldMethod35558,1377819 -static int proxyGetLockPath(const char *dbPath, char *lPath, size_t maxLen){proxyGetLockPath35566,1378084 -static int proxyCreateLockPath(const char *lockPath){proxyCreateLockPath35607,1379131 -static int proxyCreateUnixFile(proxyCreateUnixFile35647,1380482 -SQLITE_API int sqlite3_hostid_num = 0;sqlite3_hostid_num35731,1382768 -#define PROXY_HOSTIDLEN PROXY_HOSTIDLEN35734,1382815 -static int proxyGetHostID(unsigned char *pHostID, int *pError){proxyGetHostID35744,1383142 -#define PROXY_CONCHVERSION PROXY_CONCHVERSION35773,1383870 -#define PROXY_HEADERLEN PROXY_HEADERLEN35774,1383944 -#define PROXY_PATHINDEX PROXY_PATHINDEX35775,1384006 -#define PROXY_MAXCONCHLEN PROXY_MAXCONCHLEN35776,1384067 -static int proxyBreakConchLock(unixFile *pFile, uuid_t myHostID){proxyBreakConchLock35784,1384414 -static int proxyConchLock(unixFile *pFile, uuid_t myHostID, int lockType){proxyConchLock35844,1386381 -static int proxyTakeConch(unixFile *pFile){proxyTakeConch35922,1389105 -static int proxyReleaseConch(unixFile *pFile){proxyReleaseConch36144,1397343 -static int proxyCreateConchPathname(char *dbPath, char **pConchPath){proxyCreateConchPathname36174,1398508 -static int switchLockProxyPath(unixFile *pFile, const char *path) {switchLockProxyPath36211,1399552 -static int proxyGetDbPathForUnixFile(unixFile *pFile, char *dbPath){proxyGetDbPathForUnixFile36247,1400627 -static int proxyTransformUnixFile(unixFile *pFile, const char *path) {proxyTransformUnixFile36278,1401874 -static int proxyFileControl(sqlite3_file *id, int op, void *pArg){proxyFileControl36365,1404565 -static int proxyCheckReservedLock(sqlite3_file *id, int *pResOut) {proxyCheckReservedLock36438,1407050 -static int proxyLock(sqlite3_file *id, int eFileLock) {proxyLock36477,1408328 -static int proxyUnlock(sqlite3_file *id, int eFileLock) {proxyUnlock36501,1409065 -static int proxyClose(sqlite3_file *id) {proxyClose36520,1409595 -SQLITE_API int SQLITE_STDCALL sqlite3_os_init(void){ sqlite3_os_init36582,1411716 - #define UNIXVFS(UNIXVFS36603,1412869 -SQLITE_API int SQLITE_STDCALL sqlite3_os_end(void){ sqlite3_os_end36681,1416013 -#define _OS_COMMON_H__OS_COMMON_H_36731,1417702 -#define _HWTIME_H__HWTIME_H_36770,1418946 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime36783,1419338 - __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){__declspec36791,1419546 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime36802,1419761 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime36810,1419956 -SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); }sqlite3Hwtime36834,1420698 -static sqlite_uint64 g_start;g_start36843,1420984 -static sqlite_uint64 g_elapsed;g_elapsed36844,1421014 -#define TIMER_START TIMER_START36845,1421046 -#define TIMER_END TIMER_END36846,1421096 -#define TIMER_ELAPSED TIMER_ELAPSED36847,1421156 -#define TIMER_STARTTIMER_START36849,1421198 -#define TIMER_ENDTIMER_END36850,1421218 -#define TIMER_ELAPSED TIMER_ELAPSED36851,1421236 -#define SimulateIOErrorBenign(SimulateIOErrorBenign36867,1421836 -#define SimulateIOError(SimulateIOError36868,1421897 -static void local_ioerr(){local_ioerr36872,1422075 -#define SimulateDiskfullError(SimulateDiskfullError36877,1422215 -#define SimulateIOErrorBenign(SimulateIOErrorBenign36889,1422510 -#define SimulateIOError(SimulateIOError36890,1422543 -#define SimulateDiskfullError(SimulateDiskfullError36891,1422570 -#define OpenCounter(OpenCounter36899,1422775 -#define OpenCounter(OpenCounter36901,1422834 -# define SQLITE_WIN32_HAS_ANSISQLITE_WIN32_HAS_ANSI36933,1423815 -# define SQLITE_WIN32_HAS_WIDESQLITE_WIN32_HAS_WIDE36942,1424070 -# define NTDDI_WIN8 NTDDI_WIN836958,1424463 -# define NTDDI_WINBLUE NTDDI_WINBLUE36962,1424548 -# define NTDDI_WINTHRESHOLD NTDDI_WINTHRESHOLD36966,1424638 -# define SQLITE_WIN32_GETVERSIONEX SQLITE_WIN32_GETVERSIONEX36975,1424940 -# define SQLITE_WIN32_GETVERSIONEX SQLITE_WIN32_GETVERSIONEX36977,1425027 -# define SQLITE_WIN32_CREATEFILEMAPPINGA SQLITE_WIN32_CREATEFILEMAPPINGA36988,1425450 -# define SQLITE_WIN32_CREATEFILEMAPPINGA SQLITE_WIN32_CREATEFILEMAPPINGA36990,1425506 -# define MAX_PATH MAX_PATH36998,1425667 -# define SQLITE_WIN32_MAX_PATH_CHARS SQLITE_WIN32_MAX_PATH_CHARS37006,1425850 -# define UNICODE_STRING_MAX_CHARS UNICODE_STRING_MAX_CHARS37013,1426020 -# define SQLITE_WINNT_MAX_PATH_CHARS SQLITE_WINNT_MAX_PATH_CHARS37021,1426221 -# define SQLITE_WIN32_MAX_PATH_BYTES SQLITE_WIN32_MAX_PATH_BYTES37030,1426523 -# define SQLITE_WINNT_MAX_PATH_BYTES SQLITE_WINNT_MAX_PATH_BYTES37038,1426764 -# define SQLITE_WIN32_MAX_ERRMSG_CHARS SQLITE_WIN32_MAX_ERRMSG_CHARS37046,1426986 -# define winIsDirSep(winIsDirSep37054,1427151 -# define UNUSED_VARIABLE_VALUE(UNUSED_VARIABLE_VALUE37062,1427409 -# define winGetDirSep(winGetDirSep37069,1427567 -# define INVALID_FILE_ATTRIBUTES INVALID_FILE_ATTRIBUTES37114,1429070 -# define FILE_FLAG_MASK FILE_FLAG_MASK37118,1429146 -# define FILE_ATTRIBUTE_MASK FILE_ATTRIBUTE_MASK37122,1429228 -typedef struct winShm winShm; /* A connection to shared-memory */winShm37127,1429358 -typedef struct winShmNode winShmNode; /* A region of shared-memory */winShmNode37128,1429434 -typedef struct winceLock {winceLock37136,1429639 - int nReaders; /* Number of reader locks obtained */nReaders37137,1429666 - int nReaders; /* Number of reader locks obtained */winceLock::nReaders37137,1429666 - BOOL bPending; /* Indicates a pending lock has been obtained */bPending37138,1429726 - BOOL bPending; /* Indicates a pending lock has been obtained */winceLock::bPending37138,1429726 - BOOL bReserved; /* Indicates a reserved lock has been obtained */bReserved37139,1429797 - BOOL bReserved; /* Indicates a reserved lock has been obtained */winceLock::bReserved37139,1429797 - BOOL bExclusive; /* Indicates an exclusive lock has been obtained */bExclusive37140,1429869 - BOOL bExclusive; /* Indicates an exclusive lock has been obtained */winceLock::bExclusive37140,1429869 -} winceLock;winceLock37141,1429943 -typedef struct winFile winFile;winFile37148,1430070 -struct winFile {winFile37149,1430102 - const sqlite3_io_methods *pMethod; /*** Must be first ***/pMethod37150,1430119 - const sqlite3_io_methods *pMethod; /*** Must be first ***/winFile::pMethod37150,1430119 - sqlite3_vfs *pVfs; /* The VFS used to open this file */pVfs37151,1430180 - sqlite3_vfs *pVfs; /* The VFS used to open this file */winFile::pVfs37151,1430180 - HANDLE h; /* Handle for accessing the file */h37152,1430243 - HANDLE h; /* Handle for accessing the file */winFile::h37152,1430243 - u8 locktype; /* Type of lock currently held on this file */locktype37153,1430305 - u8 locktype; /* Type of lock currently held on this file */winFile::locktype37153,1430305 - short sharedLockByte; /* Randomly chosen byte used as a shared lock */sharedLockByte37154,1430378 - short sharedLockByte; /* Randomly chosen byte used as a shared lock */winFile::sharedLockByte37154,1430378 - u8 ctrlFlags; /* Flags. See WINFILE_* below */ctrlFlags37155,1430453 - u8 ctrlFlags; /* Flags. See WINFILE_* below */winFile::ctrlFlags37155,1430453 - DWORD lastErrno; /* The Windows errno from the last I/O error */lastErrno37156,1430513 - DWORD lastErrno; /* The Windows errno from the last I/O error */winFile::lastErrno37156,1430513 - winShm *pShm; /* Instance of shared memory on this file */pShm37158,1430611 - winShm *pShm; /* Instance of shared memory on this file */winFile::pShm37158,1430611 - const char *zPath; /* Full pathname of this file */zPath37160,1430689 - const char *zPath; /* Full pathname of this file */winFile::zPath37160,1430689 - int szChunk; /* Chunk size configured by FCNTL_CHUNK_SIZE */szChunk37161,1430748 - int szChunk; /* Chunk size configured by FCNTL_CHUNK_SIZE */winFile::szChunk37161,1430748 - LPWSTR zDeleteOnClose; /* Name of file to delete when closing */zDeleteOnClose37163,1430842 - LPWSTR zDeleteOnClose; /* Name of file to delete when closing */winFile::zDeleteOnClose37163,1430842 - HANDLE hMutex; /* Mutex used to control access to shared lock */hMutex37164,1430910 - HANDLE hMutex; /* Mutex used to control access to shared lock */winFile::hMutex37164,1430910 - HANDLE hShared; /* Shared memory segment used for locking */hShared37165,1430986 - HANDLE hShared; /* Shared memory segment used for locking */winFile::hShared37165,1430986 - winceLock local; /* Locks obtained by this instance of winFile */local37166,1431057 - winceLock local; /* Locks obtained by this instance of winFile */winFile::local37166,1431057 - winceLock *shared; /* Global shared lock memory for the file */shared37167,1431132 - winceLock *shared; /* Global shared lock memory for the file */winFile::shared37167,1431132 - int nFetchOut; /* Number of outstanding xFetch references */nFetchOut37170,1431238 - int nFetchOut; /* Number of outstanding xFetch references */winFile::nFetchOut37170,1431238 - HANDLE hMap; /* Handle for accessing memory mapping */hMap37171,1431316 - HANDLE hMap; /* Handle for accessing memory mapping */winFile::hMap37171,1431316 - void *pMapRegion; /* Area memory mapped */pMapRegion37172,1431390 - void *pMapRegion; /* Area memory mapped */winFile::pMapRegion37172,1431390 - sqlite3_int64 mmapSize; /* Usable size of mapped region */mmapSize37173,1431447 - sqlite3_int64 mmapSize; /* Usable size of mapped region */winFile::mmapSize37173,1431447 - sqlite3_int64 mmapSizeActual; /* Actual size of mapped region */mmapSizeActual37174,1431514 - sqlite3_int64 mmapSizeActual; /* Actual size of mapped region */winFile::mmapSizeActual37174,1431514 - sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */mmapSizeMax37175,1431581 - sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */winFile::mmapSizeMax37175,1431581 -#define WINFILE_RDONLY WINFILE_RDONLY37182,1431709 -#define WINFILE_PERSIST_WAL WINFILE_PERSIST_WAL37183,1431778 -#define WINFILE_PSOW WINFILE_PSOW37184,1431843 -# define SQLITE_WIN32_DBG_BUF_SIZE SQLITE_WIN32_DBG_BUF_SIZE37190,1432026 -# define SQLITE_WIN32_DATA_DIRECTORY_TYPE SQLITE_WIN32_DATA_DIRECTORY_TYPE37198,1432258 -# define SQLITE_WIN32_TEMP_DIRECTORY_TYPE SQLITE_WIN32_TEMP_DIRECTORY_TYPE37206,1432476 -# define SQLITE_WIN32_HEAP_CREATE SQLITE_WIN32_HEAP_CREATE37230,1433591 -# define SQLITE_WIN32_CACHE_SIZE SQLITE_WIN32_CACHE_SIZE37239,1433839 -# define SQLITE_WIN32_CACHE_SIZE SQLITE_WIN32_CACHE_SIZE37241,1433911 -# define SQLITE_WIN32_HEAP_INIT_SIZE SQLITE_WIN32_HEAP_INIT_SIZE37249,1434111 -# define SQLITE_WIN32_HEAP_MAX_SIZE SQLITE_WIN32_HEAP_MAX_SIZE37257,1434380 -# define SQLITE_WIN32_HEAP_FLAGS SQLITE_WIN32_HEAP_FLAGS37265,1434581 -typedef struct winMemData winMemData;winMemData37273,1434755 -struct winMemData {winMemData37274,1434793 - u32 magic1; /* Magic number to detect structure corruption. */magic137276,1434828 - u32 magic1; /* Magic number to detect structure corruption. */winMemData::magic137276,1434828 - HANDLE hHeap; /* The handle to our heap. */hHeap37278,1434902 - HANDLE hHeap; /* The handle to our heap. */winMemData::hHeap37278,1434902 - BOOL bOwned; /* Do we own the heap (i.e. destroy it on shutdown)? */bOwned37279,1434948 - BOOL bOwned; /* Do we own the heap (i.e. destroy it on shutdown)? */winMemData::bOwned37279,1434948 - u32 magic2; /* Magic number to detect structure corruption. */magic237281,1435035 - u32 magic2; /* Magic number to detect structure corruption. */winMemData::magic237281,1435035 -#define WINMEM_MAGIC1 WINMEM_MAGIC137286,1435128 -#define WINMEM_MAGIC2 WINMEM_MAGIC237287,1435165 -static struct winMemData win_mem_data = {win_mem_data37290,1435210 -#define winMemAssertMagic1(winMemAssertMagic137301,1435363 -#define winMemAssertMagic2(winMemAssertMagic237302,1435437 -#define winMemAssertMagic(winMemAssertMagic37303,1435511 -#define winMemAssertMagic(winMemAssertMagic37305,1435590 -#define winMemGetDataPtr(winMemGetDataPtr37308,1435626 -#define winMemGetHeap(winMemGetHeap37309,1435668 -#define winMemGetOwned(winMemGetOwned37310,1435715 -SQLITE_API LONG SQLITE_WIN32_VOLATILE sqlite3_os_type = 0;sqlite3_os_type37336,1436559 -static LONG SQLITE_WIN32_VOLATILE sqlite3_os_type = 0;sqlite3_os_type37338,1436624 -# define SYSCALL SYSCALL37342,1436703 -# define osAreFileApisANSI(osAreFileApisANSI37350,1436854 -static struct win_syscall {win_syscall37359,1437165 - const char *zName; /* Name of the system call */zName37360,1437193 - const char *zName; /* Name of the system call */win_syscall::zName37360,1437193 - sqlite3_syscall_ptr pCurrent; /* Current value of the system call */pCurrent37361,1437255 - sqlite3_syscall_ptr pCurrent; /* Current value of the system call */win_syscall::pCurrent37361,1437255 - sqlite3_syscall_ptr pDefault; /* Default value */pDefault37362,1437326 - sqlite3_syscall_ptr pDefault; /* Default value */win_syscall::pDefault37362,1437326 -#define osAreFileApisANSI osAreFileApisANSI37371,1437616 -#define osCharLowerW osCharLowerW37380,1437902 -#define osCharUpperW osCharUpperW37388,1438180 -#define osCloseHandle osCloseHandle37392,1438321 -#define osCreateFileA osCreateFileA37400,1438579 -#define osCreateFileW osCreateFileW37409,1438923 -#define osCreateFileMappingA osCreateFileMappingA37420,1439380 -#define osCreateFileMappingW osCreateFileMappingW37430,1439813 -#define osCreateMutexW osCreateMutexW37439,1440159 -#define osDeleteFileA osDeleteFileA37448,1440459 -#define osDeleteFileW osDeleteFileW37456,1440717 -#define osFileTimeToLocalFileTime osFileTimeToLocalFileTime37464,1440962 -#define osFileTimeToSystemTime osFileTimeToSystemTime37473,1441249 -#define osFlushFileBuffers osFlushFileBuffers37478,1441432 -#define osFormatMessageA osFormatMessageA37486,1441696 -#define osFormatMessageW osFormatMessageW37495,1442010 -#define osFreeLibrary osFreeLibrary37504,1442331 -#define osGetCurrentProcessId osGetCurrentProcessId37508,1442473 -#define osGetDiskFreeSpaceA osGetDiskFreeSpaceA37516,1442759 -#define osGetDiskFreeSpaceW osGetDiskFreeSpaceW37525,1443107 -#define osGetFileAttributesA osGetFileAttributesA37534,1443416 -#define osGetFileAttributesW osGetFileAttributesW37542,1443703 -#define osGetFileAttributesExW osGetFileAttributesExW37550,1443971 -#define osGetFileSize osGetFileSize37559,1444267 -#define osGetFullPathNameA osGetFullPathNameA37567,1444555 -#define osGetFullPathNameW osGetFullPathNameW37576,1444890 -#define osGetLastError osGetLastError37581,1445070 -#define osGetProcAddressA osGetProcAddressA37596,1445632 -#define osGetSystemInfo osGetSystemInfo37605,1445903 -#define osGetSystemTime osGetSystemTime37609,1446053 -#define osGetSystemTimeAsFileTime osGetSystemTimeAsFileTime37617,1446306 -#define osGetTempPathA osGetTempPathA37626,1446592 -#define osGetTempPathW osGetTempPathW37634,1446878 -#define osGetTickCount osGetTickCount37642,1447131 -#define osGetVersionExA osGetVersionExA37650,1447419 -#define osGetVersionExW osGetVersionExW37660,1447760 -#define osHeapAlloc osHeapAlloc37665,1447924 -#define osHeapCreate osHeapCreate37674,1448193 -#define osHeapDestroy osHeapDestroy37683,1448463 -#define osHeapFree osHeapFree37687,1448604 -#define osHeapReAlloc osHeapReAlloc37691,1448755 -#define osHeapSize osHeapSize37696,1448929 -#define osHeapValidate osHeapValidate37705,1449198 -#define osHeapCompact osHeapCompact37714,1449489 -#define osLoadLibraryA osLoadLibraryA37722,1449794 -#define osLoadLibraryW osLoadLibraryW37731,1450127 -#define osLocalFree osLocalFree37739,1450377 -#define osLockFile osLockFile37748,1450661 -#define osLockFileEx osLockFileEx37759,1450966 -#define osMapViewOfFile osMapViewOfFile37770,1451353 -#define osMultiByteToWideChar osMultiByteToWideChar37775,1451534 -#define osQueryPerformanceCounter osQueryPerformanceCounter37780,1451719 -#define osReadFile osReadFile37785,1451891 -#define osSetEndOfFile osSetEndOfFile37790,1452074 -#define osSetFilePointer osSetFilePointer37798,1452320 -#define osSleep osSleep37807,1452597 -#define osSystemTimeToFileTime osSystemTimeToFileTime37811,1452731 -#define osUnlockFile osUnlockFile37821,1453059 -#define osUnlockFileEx osUnlockFileEx37831,1453345 -#define osUnmapViewOfFile osUnmapViewOfFile37840,1453687 -#define osWideCharToMultiByte osWideCharToMultiByte37844,1453833 -#define osWriteFile osWriteFile37849,1454032 -#define osCreateEventExW osCreateEventExW37858,1454320 -#define osWaitForSingleObject osWaitForSingleObject37867,1454616 -#define osWaitForSingleObjectEx osWaitForSingleObjectEx37876,1454887 -#define osSetFilePointerEx osSetFilePointerEx37885,1455164 -#define osGetFileInformationByHandleEx osGetFileInformationByHandleEx37894,1455469 -#define osMapViewOfFileFromApp osMapViewOfFileFromApp37903,1455837 -#define osCreateFile2 osCreateFile237912,1456124 -#define osLoadPackagedLibrary osLoadPackagedLibrary37921,1456474 -#define osGetTickCount64 osGetTickCount6437930,1456747 -#define osGetNativeSystemInfo osGetNativeSystemInfo37938,1456997 -#define osOutputDebugStringA osOutputDebugStringA37947,1457282 -#define osOutputDebugStringW osOutputDebugStringW37955,1457548 -#define osGetProcessHeap osGetProcessHeap37959,1457697 -#define osCreateFileMappingFromApp osCreateFileMappingFromApp37967,1458003 -#define osInterlockedCompareExchange osInterlockedCompareExchange37978,1458478 -#define osUuidCreate osUuidCreate37992,1459021 -#define osUuidCreateSequential osUuidCreateSequential38000,1459318 -#define osFlushViewOfFile osFlushViewOfFile38009,1459624 -} aSyscall[] = {aSyscall37363,1437378 -static int winSetSystemCall(winSetSystemCall38020,1460004 -static sqlite3_syscall_ptr winGetSystemCall(winGetSystemCall38063,1461288 -static const char *winNextSystemCall(sqlite3_vfs *p, const char *zName){winNextSystemCall38082,1461814 -SQLITE_API int SQLITE_STDCALL sqlite3_win32_compact_heap(LPUINT pnLargest){sqlite3_win32_compact_heap38105,1462563 -SQLITE_API int SQLITE_STDCALL sqlite3_win32_reset_heap(){sqlite3_win32_reset_heap38145,1463931 -SQLITE_API void SQLITE_STDCALL sqlite3_win32_write_debug(const char *zBuf, int nBuf){sqlite3_win32_write_debug38190,1465597 -static HANDLE sleepObj = NULL;sleepObj38233,1466927 -SQLITE_API void SQLITE_STDCALL sqlite3_win32_sleep(DWORD milliseconds){sqlite3_win32_sleep38236,1466966 -SQLITE_PRIVATE DWORD sqlite3Win32Wait(HANDLE hObject){sqlite3Win32Wait38251,1467436 -# define osIsNT(osIsNT38272,1468203 -# define osIsNT(osIsNT38274,1468302 -# define osIsNT(osIsNT38276,1468363 -# define osIsNT(osIsNT38278,1468392 -SQLITE_API int SQLITE_STDCALL sqlite3_win32_is_nt(void){sqlite3_win32_is_nt38285,1468575 -static void *winMemMalloc(int nBytes){winMemMalloc38324,1469779 -static void winMemFree(void *pPrior){winMemFree38347,1470371 -static void *winMemRealloc(void *pPrior, int nBytes){winMemRealloc38367,1471004 -static int winMemSize(void *p){winMemSize38395,1471814 -static int winMemRoundup(int n){winMemRoundup38419,1472451 -static int winMemInit(void *pAppData){winMemInit38426,1472532 -static void winMemShutdown(void *pAppData){winMemShutdown38475,1474167 -SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){sqlite3MemGetWin3238506,1475244 -SQLITE_PRIVATE void sqlite3MemSetDefault(void){sqlite3MemSetDefault38520,1475540 -static LPWSTR winUtf8ToUnicode(const char *zText){winUtf8ToUnicode38530,1475815 -static char *winUnicodeToUtf8(LPCWSTR zWideText){winUnicodeToUtf838556,1476425 -static LPWSTR winMbcsToUnicode(const char *zText, int useAnsi){winMbcsToUnicode38583,1477048 -static char *winUnicodeToMbcs(LPCWSTR zWideText, int useAnsi){winUnicodeToMbcs38612,1477825 -static char *winMbcsToUtf8(const char *zText, int useAnsi){winMbcsToUtf838639,1478476 -static char *winUtf8ToMbcs(const char *zText, int useAnsi){winUtf8ToMbcs38657,1478893 -SQLITE_API LPWSTR SQLITE_STDCALL sqlite3_win32_utf8_to_unicode(const char *zText){sqlite3_win32_utf8_to_unicode38673,1479240 -SQLITE_API char *SQLITE_STDCALL sqlite3_win32_unicode_to_utf8(LPCWSTR zWideText){sqlite3_win32_unicode_to_utf838689,1479608 -SQLITE_API char *SQLITE_STDCALL sqlite3_win32_mbcs_to_utf8(const char *zText){sqlite3_win32_mbcs_to_utf838705,1479980 -SQLITE_API char *SQLITE_STDCALL sqlite3_win32_mbcs_to_utf8_v2(const char *zText, int useAnsi){sqlite3_win32_mbcs_to_utf8_v238721,1480359 -SQLITE_API char *SQLITE_STDCALL sqlite3_win32_utf8_to_mbcs(const char *zText){sqlite3_win32_utf8_to_mbcs38737,1480742 -SQLITE_API char *SQLITE_STDCALL sqlite3_win32_utf8_to_mbcs_v2(const char *zText, int useAnsi){sqlite3_win32_utf8_to_mbcs_v238753,1481121 -SQLITE_API int SQLITE_STDCALL sqlite3_win32_set_directory(DWORD type, LPCWSTR zValue){sqlite3_win32_set_directory38773,1481774 -static int winGetLastErrorMsg(DWORD lastErrno, int nBuf, char *zBuf){winGetLastErrorMsg38808,1482843 -#define winLogError(winLogError38898,1485971 -static int winLogErrorAtLine(winLogErrorAtLine38899,1486038 -# define SQLITE_WIN32_IOERR_RETRY SQLITE_WIN32_IOERR_RETRY38930,1487165 -# define SQLITE_WIN32_IOERR_RETRY_DELAY SQLITE_WIN32_IOERR_RETRY_DELAY38933,1487248 -static int winIoerrRetry = SQLITE_WIN32_IOERR_RETRY;winIoerrRetry38935,1487298 -static int winIoerrRetryDelay = SQLITE_WIN32_IOERR_RETRY_DELAY;winIoerrRetryDelay38936,1487351 -#define winIoerrCanRetry1(winIoerrCanRetry138955,1488385 -static int winRetryIoerr(int *pnRetry, DWORD *pError){winRetryIoerr38969,1489046 -static void winLogIoerr(int nRetry, int lineno){winLogIoerr38998,1489604 -struct tm *__cdecl localtime(const time_t *t)localtime39018,1490214 -#define HANDLE_TO_WINFILE(HANDLE_TO_WINFILE39045,1490921 -static void winceMutexAcquire(HANDLE h){winceMutexAcquire39050,1491040 -#define winceMutexRelease(winceMutexRelease39059,1491276 -static int winceCreateLock(const char *zFilename, winFile *pFile){winceCreateLock39065,1491415 -static void winceDestroyLock(winFile *pFile){winceDestroyLock39159,1494241 -static BOOL winceLockFile(winceLockFile39193,1495164 -static BOOL winceUnlockFile(winceUnlockFile39259,1496933 -static BOOL winLockFile(winLockFile39328,1498807 -static BOOL winUnlockFile(winUnlockFile39360,1499573 -# define INVALID_SET_FILE_POINTER INVALID_SET_FILE_POINTER39397,1500651 -static int winSeekFile(winFile *pFile, sqlite3_int64 iOffset){winSeekFile39405,1500907 -#define MX_CLOSE_ATTEMPT MX_CLOSE_ATTEMPT39477,1503507 -static int winClose(sqlite3_file *id){winClose39478,1503534 -#define WINCE_DELETION_ATTEMPTS WINCE_DELETION_ATTEMPTS39499,1504127 -static int winRead(winRead39529,1505027 -static int winWrite(winWrite39609,1508119 -static int winTruncate(sqlite3_file *id, sqlite3_int64 nByte){winTruncate39718,1512060 -SQLITE_API int sqlite3_sync_count = 0;sqlite3_sync_count39768,1513983 -SQLITE_API int sqlite3_fullsync_count = 0;sqlite3_fullsync_count39769,1514022 -static int winSync(sqlite3_file *id, int flags){winSync39775,1514147 -static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){winFileSize39860,1516703 -# define LOCKFILE_FAIL_IMMEDIATELY LOCKFILE_FAIL_IMMEDIATELY39906,1518060 -# define LOCKFILE_EXCLUSIVE_LOCK LOCKFILE_EXCLUSIVE_LOCK39910,1518137 -# define SQLITE_LOCKFILE_FLAGS SQLITE_LOCKFILE_FLAGS39921,1518597 -# define SQLITE_LOCKFILEEX_FLAGS SQLITE_LOCKFILEEX_FLAGS39930,1518903 -static int winGetReadLock(winFile *pFile){winGetReadLock39938,1519096 -static int winUnlockReadLock(winFile *pFile){winUnlockReadLock39973,1520080 -static int winLock(sqlite3_file *id, int locktype){winLock40020,1521699 -static int winCheckReservedLock(sqlite3_file *id, int *pResOut){winCheckReservedLock40163,1526265 -static int winUnlock(sqlite3_file *id, int locktype){winUnlock40199,1527499 -static void winModeBit(winFile *pFile, unsigned char mask, int *pArg){winModeBit40238,1528850 -static int winFileControl(sqlite3_file *id, int op, void *pArg){winFileControl40256,1529346 -static int winSectorSize(sqlite3_file *id){winSectorSize40377,1533235 -static int winDeviceCharacteristics(sqlite3_file *id){winDeviceCharacteristics40385,1533383 -static SYSTEM_INFO winSysInfo;winSysInfo40397,1533784 -static void winShmEnterMutex(void){winShmEnterMutex40414,1534298 -static void winShmLeaveMutex(void){winShmLeaveMutex40417,1534404 -static int winShmMutexHeld(void) {winShmMutexHeld40421,1534525 -struct winShmNode {winShmNode40449,1535397 - sqlite3_mutex *mutex; /* Mutex to access this object */mutex40450,1535417 - sqlite3_mutex *mutex; /* Mutex to access this object */winShmNode::mutex40450,1535417 - char *zFilename; /* Name of the file */zFilename40451,1535480 - char *zFilename; /* Name of the file */winShmNode::zFilename40451,1535480 - winFile hFile; /* File handle from winOpen */hFile40452,1535532 - winFile hFile; /* File handle from winOpen */winShmNode::hFile40452,1535532 - int szRegion; /* Size of shared-memory regions */szRegion40454,1535593 - int szRegion; /* Size of shared-memory regions */winShmNode::szRegion40454,1535593 - int nRegion; /* Size of array apRegion */nRegion40455,1535658 - int nRegion; /* Size of array apRegion */winShmNode::nRegion40455,1535658 - struct ShmRegion {ShmRegion40456,1535716 - struct ShmRegion {winShmNode::ShmRegion40456,1535716 - HANDLE hMap; /* File handle from CreateFileMapping */hMap40457,1535737 - HANDLE hMap; /* File handle from CreateFileMapping */winShmNode::ShmRegion::hMap40457,1535737 - void *pMap;pMap40458,1535807 - void *pMap;winShmNode::ShmRegion::pMap40458,1535807 - } *aRegion;aRegion40459,1535823 - } *aRegion;winShmNode::aRegion40459,1535823 - DWORD lastErrno; /* The Windows errno from the last I/O error */lastErrno40460,1535837 - DWORD lastErrno; /* The Windows errno from the last I/O error */winShmNode::lastErrno40460,1535837 - int nRef; /* Number of winShm objects pointing to this */nRef40462,1535915 - int nRef; /* Number of winShm objects pointing to this */winShmNode::nRef40462,1535915 - winShm *pFirst; /* All winShm objects pointing to this */pFirst40463,1535992 - winShm *pFirst; /* All winShm objects pointing to this */winShmNode::pFirst40463,1535992 - winShmNode *pNext; /* Next in list of all winShmNode objects */pNext40464,1536063 - winShmNode *pNext; /* Next in list of all winShmNode objects */winShmNode::pNext40464,1536063 - u8 nextShmId; /* Next available winShm.id value */nextShmId40466,1536196 - u8 nextShmId; /* Next available winShm.id value */winShmNode::nextShmId40466,1536196 -static winShmNode *winShmNodeList = 0;winShmNodeList40475,1536401 -struct winShm {winShm40490,1536815 - winShmNode *pShmNode; /* The underlying winShmNode object */pShmNode40491,1536831 - winShmNode *pShmNode; /* The underlying winShmNode object */winShm::pShmNode40491,1536831 - winShm *pNext; /* Next winShm with the same winShmNode */pNext40492,1536899 - winShm *pNext; /* Next winShm with the same winShmNode */winShm::pNext40492,1536899 - u8 hasMutex; /* True if holding the winShmNode mutex */hasMutex40493,1536971 - u8 hasMutex; /* True if holding the winShmNode mutex */winShm::hasMutex40493,1536971 - u16 sharedMask; /* Mask of shared locks held */sharedMask40494,1537043 - u16 sharedMask; /* Mask of shared locks held */winShm::sharedMask40494,1537043 - u16 exclMask; /* Mask of exclusive locks held */exclMask40495,1537104 - u16 exclMask; /* Mask of exclusive locks held */winShm::exclMask40495,1537104 - u8 id; /* Id of this connection with its winShmNode */id40497,1537227 - u8 id; /* Id of this connection with its winShmNode */winShm::id40497,1537227 -#define WIN_SHM_BASE WIN_SHM_BASE40504,1537351 -#define WIN_SHM_DMS WIN_SHM_DMS40505,1537429 -#define _SHM_UNLCK _SHM_UNLCK40510,1537572 -#define _SHM_RDLCK _SHM_RDLCK40511,1537594 -#define _SHM_WRLCK _SHM_WRLCK40512,1537616 -static int winShmSystemLock(winShmSystemLock40513,1537638 -static void winShmPurge(sqlite3_vfs *pVfs, int deleteFlag){winShmPurge40561,1539327 -static int winOpenSharedMemory(winFile *pDbFd){winOpenSharedMemory40610,1540997 -static int winShmUnmap(winShmUnmap40723,1544970 -static int winShmLock(winShmLock40764,1546140 -static void winShmBarrier(winShmBarrier40873,1549873 -static int winShmMap(winShmMap40901,1551086 -# define winShmMap winShmMap41031,1555646 -# define winShmLock winShmLock41032,1555671 -# define winShmBarrier winShmBarrier41033,1555696 -# define winShmUnmap winShmUnmap41034,1555721 -static int winUnmapfile(winFile *pFile){winUnmapfile41041,1555879 -static int winMapfile(winFile *pFd, sqlite3_int64 nByte){winMapfile41091,1558069 -static int winFetch(sqlite3_file *fd, i64 iOff, int nAmt, void **pp){winFetch41190,1561626 -static int winUnfetch(sqlite3_file *fd, i64 iOff, void *p){winUnfetch41231,1562979 -static const sqlite3_io_methods winIoMethod = {winIoMethod41274,1564379 -static char *winConvertToUtf8Filename(const void *zFilename){winConvertToUtf8Filename41309,1565863 -static void *winConvertFromUtf8Filename(const char *zFilename){winConvertFromUtf8Filename41330,1566408 -static int winMakeEndInDirSep(int nBuf, char *zBuf){winMakeEndInDirSep41349,1566903 -static int winGetTempname(sqlite3_vfs *pVfs, char **pzBuf){winGetTempname41369,1567380 -static int winIsDir(const void *zConverted){winIsDir41600,1575175 -static int winOpen(winOpen41627,1575878 -static int winDelete(winDelete41918,1585758 -static int winAccess(winAccess42026,1588799 -static BOOL winIsDriveLetterAndColon(winIsDriveLetterAndColon42104,1591217 -static BOOL winIsVerbatimPathname(winIsVerbatimPathname42116,1591649 -static int winFullPathname(winFullPathname42152,1592833 -static void *winDlOpen(sqlite3_vfs *pVfs, const char *zFilename){winDlOpen42335,1599318 -static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){winDlError42376,1600442 -static void (*winDlSym(sqlite3_vfs *pVfs,void *pH,const char *zSym))(void){winDlSym42380,1600593 -static void winDlClose(sqlite3_vfs *pVfs, void *pHandle){winDlClose42388,1600887 - #define winDlOpen winDlOpen42394,1601113 - #define winDlError winDlError42395,1601136 - #define winDlSym winDlSym42396,1601159 - #define winDlClose winDlClose42397,1601182 -typedef struct EntropyGatherer EntropyGatherer;EntropyGatherer42401,1601266 -struct EntropyGatherer {EntropyGatherer42402,1601314 - unsigned char *a; /* Gather entropy into this buffer */a42403,1601339 - unsigned char *a; /* Gather entropy into this buffer */EntropyGatherer::a42403,1601339 - int na; /* Size of a[] in bytes */na42404,1601399 - int na; /* Size of a[] in bytes */EntropyGatherer::na42404,1601399 - int i; /* XOR next input into a[i] */i42405,1601448 - int i; /* XOR next input into a[i] */EntropyGatherer::i42405,1601448 - int nXor; /* Number of XOR operations done */nXor42406,1601501 - int nXor; /* Number of XOR operations done */EntropyGatherer::nXor42406,1601501 -static void xorMemory(EntropyGatherer *p, unsigned char *x, int sz){xorMemory42411,1601663 -static int winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf){winRandomness42425,1601988 -static int winSleep(sqlite3_vfs *pVfs, int microsec){winSleep42485,1603688 -SQLITE_API int sqlite3_current_time = 0; /* Fake system time in seconds since 1970. */sqlite3_current_time42497,1604061 -static int winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){winCurrentTimeInt6442510,1604595 -static int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){winCurrentTime42553,1605990 -static int winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){winGetLastError42593,1607462 -SQLITE_API int SQLITE_STDCALL sqlite3_os_init(void){sqlite3_os_init42603,1607721 -SQLITE_API int SQLITE_STDCALL sqlite3_os_end(void){sqlite3_os_end42678,1610322 -#define BITVEC_SZ BITVEC_SZ42731,1612447 -#define BITVEC_USIZE BITVEC_USIZE42735,1612608 -#define BITVEC_TELEM BITVEC_TELEM42742,1612923 -#define BITVEC_SZELEM BITVEC_SZELEM42744,1612995 -#define BITVEC_NELEM BITVEC_NELEM42746,1613066 -#define BITVEC_NBIT BITVEC_NBIT42748,1613169 -#define BITVEC_NINT BITVEC_NINT42751,1613266 -#define BITVEC_MXHASH BITVEC_MXHASH42754,1613404 -#define BITVEC_HASH(BITVEC_HASH42759,1613647 -#define BITVEC_NPTR BITVEC_NPTR42761,1613695 -struct Bitvec {Bitvec42785,1614671 - u32 iSize; /* Maximum bit index. Max iSize is 4,294,967,296. */iSize42786,1614687 - u32 iSize; /* Maximum bit index. Max iSize is 4,294,967,296. */Bitvec::iSize42786,1614687 - u32 nSet; /* Number of bits that are set - only valid for aHashnSet42787,1614759 - u32 nSet; /* Number of bits that are set - only valid for aHashBitvec::nSet42787,1614759 - u32 iDivisor; /* Number of bits handled by each apSub[] entry. */iDivisor42790,1614948 - u32 iDivisor; /* Number of bits handled by each apSub[] entry. */Bitvec::iDivisor42790,1614948 - BITVEC_TELEM aBitmap[BITVEC_NELEM]; /* Bitmap representation */aBitmap42795,1615225 - BITVEC_TELEM aBitmap[BITVEC_NELEM]; /* Bitmap representation */Bitvec::__anon467::aBitmap42795,1615225 - u32 aHash[BITVEC_NINT]; /* Hash table representation */aHash42796,1615296 - u32 aHash[BITVEC_NINT]; /* Hash table representation */Bitvec::__anon467::aHash42796,1615296 - Bitvec *apSub[BITVEC_NPTR]; /* Recursive representation */apSub42797,1615361 - Bitvec *apSub[BITVEC_NPTR]; /* Recursive representation */Bitvec::__anon467::apSub42797,1615361 - } u;u42798,1615425 - } u;Bitvec::u42798,1615425 -SQLITE_PRIVATE Bitvec *sqlite3BitvecCreate(u32 iSize){sqlite3BitvecCreate42806,1615598 -SQLITE_PRIVATE int sqlite3BitvecTestNotNull(Bitvec *p, u32 i){sqlite3BitvecTestNotNull42821,1615961 -SQLITE_PRIVATE int sqlite3BitvecTest(Bitvec *p, u32 i){sqlite3BitvecTest42844,1616491 -SQLITE_PRIVATE int sqlite3BitvecSet(Bitvec *p, u32 i){sqlite3BitvecSet42860,1617067 -SQLITE_PRIVATE void sqlite3BitvecClear(Bitvec *p, u32 i, void *pBuf){sqlite3BitvecClear42931,1619166 -SQLITE_PRIVATE void sqlite3BitvecDestroy(Bitvec *p){sqlite3BitvecDestroy42968,1620049 -SQLITE_PRIVATE u32 sqlite3BitvecSize(Bitvec *p){sqlite3BitvecSize42983,1620363 -#define SETBIT(SETBIT42994,1620695 -#define CLEARBIT(CLEARBIT42995,1620742 -#define TESTBIT(TESTBIT42996,1620790 -SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int sz, int *aOp){sqlite3BitvecBuiltinTest43028,1622175 -struct PCache {PCache43146,1625920 - PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */pDirty43147,1625936 - PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */PCache::pDirty43147,1625936 - PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */pDirtyTail43147,1625936 - PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */PCache::pDirtyTail43147,1625936 - PgHdr *pSynced; /* Last synced page in dirty page list */pSynced43148,1626013 - PgHdr *pSynced; /* Last synced page in dirty page list */PCache::pSynced43148,1626013 - int nRefSum; /* Sum of ref counts over all pages */nRefSum43149,1626093 - int nRefSum; /* Sum of ref counts over all pages */PCache::nRefSum43149,1626093 - int szCache; /* Configured cache size */szCache43150,1626170 - int szCache; /* Configured cache size */PCache::szCache43150,1626170 - int szSpill; /* Size before spilling occurs */szSpill43151,1626236 - int szSpill; /* Size before spilling occurs */PCache::szSpill43151,1626236 - int szPage; /* Size of every page in this cache */szPage43152,1626308 - int szPage; /* Size of every page in this cache */PCache::szPage43152,1626308 - int szExtra; /* Size of extra space for each page */szExtra43153,1626385 - int szExtra; /* Size of extra space for each page */PCache::szExtra43153,1626385 - u8 bPurgeable; /* True if pages are on backing store */bPurgeable43154,1626463 - u8 bPurgeable; /* True if pages are on backing store */PCache::bPurgeable43154,1626463 - u8 eCreate; /* eCreate value for for xFetch() */eCreate43155,1626542 - u8 eCreate; /* eCreate value for for xFetch() */PCache::eCreate43155,1626542 - int (*xStress)(void*,PgHdr*); /* Call to try make a page clean */xStress43156,1626617 - int (*xStress)(void*,PgHdr*); /* Call to try make a page clean */PCache::xStress43156,1626617 - void *pStress; /* Argument to xStress */pStress43157,1626691 - void *pStress; /* Argument to xStress */PCache::pStress43157,1626691 - sqlite3_pcache *pCache; /* Pluggable cache module */pCache43158,1626755 - sqlite3_pcache *pCache; /* Pluggable cache module */PCache::pCache43158,1626755 - int sqlite3PcacheTrace = 2; /* 0: off 1: simple 2: cache dumps */sqlite3PcacheTrace43171,1627249 - int sqlite3PcacheMxDump = 9999; /* Max cache entries for pcacheDump() */sqlite3PcacheMxDump43172,1627325 -# define pcacheTrace(pcacheTrace43173,1627402 - void pcacheDump(PCache *pCache){pcacheDump43174,1627472 -# define pcacheTrace(pcacheTrace43199,1628260 -# define pcacheDump(pcacheDump43200,1628284 -SQLITE_PRIVATE int sqlite3PcachePageSanity(PgHdr *pPg){sqlite3PcachePageSanity43213,1628594 -#define PCACHE_DIRTYLIST_REMOVE PCACHE_DIRTYLIST_REMOVE43253,1630381 -#define PCACHE_DIRTYLIST_ADD PCACHE_DIRTYLIST_ADD43254,1630455 -#define PCACHE_DIRTYLIST_FRONT PCACHE_DIRTYLIST_FRONT43255,1630528 -static void pcacheManageDirtyList(PgHdr *pPage, u8 addRemove){pcacheManageDirtyList43263,1630907 -static void pcacheUnpin(PgHdr *p){pcacheUnpin43336,1633401 -static int numberOfCachePages(PCache *p){numberOfCachePages43348,1633768 -SQLITE_PRIVATE int sqlite3PcacheInitialize(void){sqlite3PcacheInitialize43366,1634427 -SQLITE_PRIVATE void sqlite3PcacheShutdown(void){sqlite3PcacheShutdown43375,1634818 -SQLITE_PRIVATE int sqlite3PcacheSize(void){ return sizeof(PCache); }sqlite3PcacheSize43385,1635131 -SQLITE_PRIVATE int sqlite3PcacheOpen(sqlite3PcacheOpen43393,1635434 -SQLITE_PRIVATE int sqlite3PcacheSetPageSize(PCache *pCache, int szPage){sqlite3PcacheSetPageSize43418,1636356 -SQLITE_PRIVATE sqlite3_pcache_page *sqlite3PcacheFetch(sqlite3PcacheFetch43462,1638152 -SQLITE_PRIVATE int sqlite3PcacheFetchStress(sqlite3PcacheFetchStress43504,1639958 -static SQLITE_NOINLINE PgHdr *pcacheFetchFinishWithInit(pcacheFetchFinishWithInit43560,1642112 -SQLITE_PRIVATE PgHdr *sqlite3PcacheFetchFinish(sqlite3PcacheFetchFinish43586,1643020 -SQLITE_PRIVATE void SQLITE_NOINLINE sqlite3PcacheRelease(PgHdr *p){sqlite3PcacheRelease43609,1643691 -SQLITE_PRIVATE void sqlite3PcacheRef(PgHdr *p){sqlite3PcacheRef43628,1644319 -SQLITE_PRIVATE void sqlite3PcacheDrop(PgHdr *p){sqlite3PcacheDrop43640,1644655 -SQLITE_PRIVATE void sqlite3PcacheMakeDirty(PgHdr *p){sqlite3PcacheMakeDirty43654,1645044 -SQLITE_PRIVATE void sqlite3PcacheMakeClean(PgHdr *p){sqlite3PcacheMakeClean43673,1645679 -SQLITE_PRIVATE void sqlite3PcacheCleanAll(PCache *pCache){sqlite3PcacheCleanAll43691,1646207 -SQLITE_PRIVATE void sqlite3PcacheClearWritable(PCache *pCache){sqlite3PcacheClearWritable43702,1646476 -SQLITE_PRIVATE void sqlite3PcacheClearSyncFlags(PCache *pCache){sqlite3PcacheClearSyncFlags43714,1646806 -SQLITE_PRIVATE void sqlite3PcacheMove(PgHdr *p, Pgno newPgno){sqlite3PcacheMove43725,1647064 -SQLITE_PRIVATE void sqlite3PcacheTruncate(PCache *pCache, Pgno pgno){sqlite3PcacheTruncate43747,1647931 -SQLITE_PRIVATE void sqlite3PcacheClose(PCache *pCache){sqlite3PcacheClose43780,1648956 -SQLITE_PRIVATE void sqlite3PcacheClear(PCache *pCache){sqlite3PcacheClear43789,1649185 -static PgHdr *pcacheMergeDirtyList(PgHdr *pA, PgHdr *pB){pcacheMergeDirtyList43797,1649400 -#define N_SORT_BUCKET N_SORT_BUCKET43831,1650272 -static PgHdr *pcacheSortDirtyList(PgHdr *pIn){pcacheSortDirtyList43832,1650298 -SQLITE_PRIVATE PgHdr *sqlite3PcacheDirtyList(PCache *pCache){sqlite3PcacheDirtyList43866,1651071 -SQLITE_PRIVATE int sqlite3PcacheRefCount(PCache *pCache){sqlite3PcacheRefCount43880,1651463 -SQLITE_PRIVATE int sqlite3PcachePageRefcount(PgHdr *p){sqlite3PcachePageRefcount43887,1651628 -SQLITE_PRIVATE int sqlite3PcachePagecount(PCache *pCache){sqlite3PcachePagecount43894,1651762 -SQLITE_PRIVATE int sqlite3PcacheGetCachesize(PCache *pCache){sqlite3PcacheGetCachesize43903,1651984 -SQLITE_PRIVATE void sqlite3PcacheSetCachesize(PCache *pCache, int mxPage){sqlite3PcacheSetCachesize43911,1652138 -SQLITE_PRIVATE int sqlite3PcacheSetSpillsize(PCache *p, int mxPage){sqlite3PcacheSetSpillsize43923,1652592 -SQLITE_PRIVATE void sqlite3PcacheShrink(PCache *pCache){sqlite3PcacheShrink43940,1652990 -SQLITE_PRIVATE int sqlite3HeaderSizePcache(void){ return ROUND8(sizeof(PgHdr)); }sqlite3HeaderSizePcache43949,1653238 -SQLITE_PRIVATE int sqlite3PCachePercentDirty(PCache *pCache){sqlite3PCachePercentDirty43955,1653436 -SQLITE_PRIVATE void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)){sqlite3PcacheIterateDirty43969,1653921 -typedef struct PCache1 PCache1;PCache144063,1658285 -typedef struct PgHdr1 PgHdr1;PgHdr144064,1658317 -typedef struct PgFreeslot PgFreeslot;PgFreeslot44065,1658347 -typedef struct PGroup PGroup;PGroup44066,1658385 -struct PgHdr1 {PgHdr144074,1658655 - sqlite3_pcache_page page; /* Base class. Must be first. pBuf & pExtra */page44075,1658671 - sqlite3_pcache_page page; /* Base class. Must be first. pBuf & pExtra */PgHdr1::page44075,1658671 - unsigned int iKey; /* Key value (page number) */iKey44076,1658751 - unsigned int iKey; /* Key value (page number) */PgHdr1::iKey44076,1658751 - u8 isPinned; /* Page in use, not on the LRU list */isPinned44077,1658814 - u8 isPinned; /* Page in use, not on the LRU list */PgHdr1::isPinned44077,1658814 - u8 isBulkLocal; /* This page from bulk local storage */isBulkLocal44078,1658886 - u8 isBulkLocal; /* This page from bulk local storage */PgHdr1::isBulkLocal44078,1658886 - u8 isAnchor; /* This is the PGroup.lru element */isAnchor44079,1658959 - u8 isAnchor; /* This is the PGroup.lru element */PgHdr1::isAnchor44079,1658959 - PgHdr1 *pNext; /* Next in hash table chain */pNext44080,1659029 - PgHdr1 *pNext; /* Next in hash table chain */PgHdr1::pNext44080,1659029 - PCache1 *pCache; /* Cache that currently owns this page */pCache44081,1659093 - PCache1 *pCache; /* Cache that currently owns this page */PgHdr1::pCache44081,1659093 - PgHdr1 *pLruNext; /* Next in LRU list of unpinned pages */pLruNext44082,1659168 - PgHdr1 *pLruNext; /* Next in LRU list of unpinned pages */PgHdr1::pLruNext44082,1659168 - PgHdr1 *pLruPrev; /* Previous in LRU list of unpinned pages */pLruPrev44083,1659242 - PgHdr1 *pLruPrev; /* Previous in LRU list of unpinned pages */PgHdr1::pLruPrev44083,1659242 -struct PGroup {PGroup44108,1660280 - sqlite3_mutex *mutex; /* MUTEX_STATIC_LRU or NULL */mutex44109,1660296 - sqlite3_mutex *mutex; /* MUTEX_STATIC_LRU or NULL */PGroup::mutex44109,1660296 - unsigned int nMaxPage; /* Sum of nMax for purgeable caches */nMaxPage44110,1660360 - unsigned int nMaxPage; /* Sum of nMax for purgeable caches */PGroup::nMaxPage44110,1660360 - unsigned int nMinPage; /* Sum of nMin for purgeable caches */nMinPage44111,1660432 - unsigned int nMinPage; /* Sum of nMin for purgeable caches */PGroup::nMinPage44111,1660432 - unsigned int mxPinned; /* nMaxpage + 10 - nMinPage */mxPinned44112,1660504 - unsigned int mxPinned; /* nMaxpage + 10 - nMinPage */PGroup::mxPinned44112,1660504 - unsigned int nCurrentPage; /* Number of purgeable pages allocated */nCurrentPage44113,1660568 - unsigned int nCurrentPage; /* Number of purgeable pages allocated */PGroup::nCurrentPage44113,1660568 - PgHdr1 lru; /* The beginning and end of the LRU list */lru44114,1660643 - PgHdr1 lru; /* The beginning and end of the LRU list */PGroup::lru44114,1660643 -struct PCache1 {PCache144125,1661062 - PGroup *pGroup; /* PGroup this cache belongs to */pGroup44131,1661355 - PGroup *pGroup; /* PGroup this cache belongs to */PCache1::pGroup44131,1661355 - int szPage; /* Size of database content section */szPage44132,1661428 - int szPage; /* Size of database content section */PCache1::szPage44132,1661428 - int szExtra; /* sizeof(MemPage)+sizeof(PgHdr) */szExtra44133,1661505 - int szExtra; /* sizeof(MemPage)+sizeof(PgHdr) */PCache1::szExtra44133,1661505 - int szAlloc; /* Total size of one pcache line */szAlloc44134,1661579 - int szAlloc; /* Total size of one pcache line */PCache1::szAlloc44134,1661579 - int bPurgeable; /* True if cache is purgeable */bPurgeable44135,1661653 - int bPurgeable; /* True if cache is purgeable */PCache1::bPurgeable44135,1661653 - unsigned int nMin; /* Minimum number of pages reserved */nMin44136,1661724 - unsigned int nMin; /* Minimum number of pages reserved */PCache1::nMin44136,1661724 - unsigned int nMax; /* Configured "cache_size" value */nMax44137,1661801 - unsigned int nMax; /* Configured "cache_size" value */PCache1::nMax44137,1661801 - unsigned int n90pct; /* nMax*9/10 */n90pct44138,1661875 - unsigned int n90pct; /* nMax*9/10 */PCache1::n90pct44138,1661875 - unsigned int iMaxKey; /* Largest key seen since xTruncate() */iMaxKey44139,1661929 - unsigned int iMaxKey; /* Largest key seen since xTruncate() */PCache1::iMaxKey44139,1661929 - unsigned int nRecyclable; /* Number of pages in the LRU list */nRecyclable44144,1662141 - unsigned int nRecyclable; /* Number of pages in the LRU list */PCache1::nRecyclable44144,1662141 - unsigned int nPage; /* Total number of pages in apHash */nPage44145,1662217 - unsigned int nPage; /* Total number of pages in apHash */PCache1::nPage44145,1662217 - unsigned int nHash; /* Number of slots in apHash[] */nHash44146,1662293 - unsigned int nHash; /* Number of slots in apHash[] */PCache1::nHash44146,1662293 - PgHdr1 **apHash; /* Hash table for fast lookup by key */apHash44147,1662365 - PgHdr1 **apHash; /* Hash table for fast lookup by key */PCache1::apHash44147,1662365 - PgHdr1 *pFree; /* List of unused pcache-local pages */pFree44148,1662443 - PgHdr1 *pFree; /* List of unused pcache-local pages */PCache1::pFree44148,1662443 - void *pBulk; /* Bulk memory used by pcache-local */pBulk44149,1662521 - void *pBulk; /* Bulk memory used by pcache-local */PCache1::pBulk44149,1662521 -struct PgFreeslot {PgFreeslot44156,1662743 - PgFreeslot *pNext; /* Next free slot */pNext44157,1662763 - PgFreeslot *pNext; /* Next free slot */PgFreeslot::pNext44157,1662763 -static SQLITE_WSD struct PCacheGlobal {PCacheGlobal44163,1662851 - PGroup grp; /* The global PGroup for mode (2) */grp44164,1662891 - PGroup grp; /* The global PGroup for mode (2) */PCacheGlobal::grp44164,1662891 - int isInit; /* True if initialized */isInit44171,1663244 - int isInit; /* True if initialized */PCacheGlobal::isInit44171,1663244 - int separateCache; /* Use a new PGroup for each PCache */separateCache44172,1663303 - int separateCache; /* Use a new PGroup for each PCache */PCacheGlobal::separateCache44172,1663303 - int nInitPage; /* Initial bulk allocation size */ nInitPage44173,1663375 - int nInitPage; /* Initial bulk allocation size */ PCacheGlobal::nInitPage44173,1663375 - int szSlot; /* Size of each free slot */szSlot44174,1663446 - int szSlot; /* Size of each free slot */PCacheGlobal::szSlot44174,1663446 - int nSlot; /* The number of pcache slots */nSlot44175,1663508 - int nSlot; /* The number of pcache slots */PCacheGlobal::nSlot44175,1663508 - int nReserve; /* Try to keep nFreeSlot above this */nReserve44176,1663574 - int nReserve; /* Try to keep nFreeSlot above this */PCacheGlobal::nReserve44176,1663574 - void *pStart, *pEnd; /* Bounds of global page cache memory */pStart44177,1663646 - void *pStart, *pEnd; /* Bounds of global page cache memory */PCacheGlobal::pStart44177,1663646 - void *pStart, *pEnd; /* Bounds of global page cache memory */pEnd44177,1663646 - void *pStart, *pEnd; /* Bounds of global page cache memory */PCacheGlobal::pEnd44177,1663646 - sqlite3_mutex *mutex; /* Mutex for accessing the following: */mutex44179,1663796 - sqlite3_mutex *mutex; /* Mutex for accessing the following: */PCacheGlobal::mutex44179,1663796 - PgFreeslot *pFree; /* Free page blocks */pFree44180,1663870 - PgFreeslot *pFree; /* Free page blocks */PCacheGlobal::pFree44180,1663870 - int nFreeSlot; /* Number of unused pcache slots */nFreeSlot44181,1663926 - int nFreeSlot; /* Number of unused pcache slots */PCacheGlobal::nFreeSlot44181,1663926 - int bUnderPressure; /* True if low on PAGECACHE memory */bUnderPressure44186,1664265 - int bUnderPressure; /* True if low on PAGECACHE memory */PCacheGlobal::bUnderPressure44186,1664265 -} pcache1_g;pcache1_g44187,1664336 -#define pcache1 pcache144194,1664554 -# define pcache1EnterMutex(pcache1EnterMutex44200,1664739 -# define pcache1LeaveMutex(pcache1LeaveMutex44201,1664792 -# define PCACHE1_MIGHT_USE_GROUP_MUTEX PCACHE1_MIGHT_USE_GROUP_MUTEX44202,1664845 -# define pcache1EnterMutex(pcache1EnterMutex44204,1664892 -# define pcache1LeaveMutex(pcache1LeaveMutex44205,1664954 -# define PCACHE1_MIGHT_USE_GROUP_MUTEX PCACHE1_MIGHT_USE_GROUP_MUTEX44206,1665016 -SQLITE_PRIVATE void sqlite3PCacheBufferSetup(void *pBuf, int sz, int n){sqlite3PCacheBufferSetup44222,1665659 -static int pcache1InitBulk(PCache1 *pCache){pcache1InitBulk44247,1666356 -static void *pcache1Alloc(int nByte){pcache1Alloc44290,1667719 -static void pcache1Free(void *p){pcache1Free44328,1668907 -static int pcache1MemSize(void *p){pcache1MemSize44361,1669907 -static PgHdr1 *pcache1AllocPage(PCache1 *pCache, int benignMalloc){pcache1AllocPage44378,1670368 -static void pcache1FreePage(PgHdr1 *p){pcache1FreePage44428,1671822 -SQLITE_PRIVATE void *sqlite3PageMalloc(int sz){sqlite3PageMalloc44452,1672450 -SQLITE_PRIVATE void sqlite3PageFree(void *p){sqlite3PageFree44459,1672597 -static int pcache1UnderMemoryPressure(PCache1 *pCache){pcache1UnderMemoryPressure44480,1673335 -static void pcache1ResizeHash(PCache1 *p){pcache1ResizeHash44497,1673889 -static PgHdr1 *pcache1PinPage(PgHdr1 *pPage){pcache1PinPage44538,1674948 -static void pcache1RemoveFromHash(PgHdr1 *pPage, int freeFlag){pcache1RemoveFromHash44566,1675733 -static void pcache1EnforceMaxPage(PCache1 *pCache){pcache1EnforceMaxPage44584,1676240 -static void pcache1TruncateUnsafe(pcache1TruncateUnsafe44609,1677003 -static int pcache1Init(void *NotUsed){pcache1Init44640,1677969 -static void pcache1Shutdown(void *NotUsed){pcache1Shutdown44693,1679629 -static sqlite3_pcache *pcache1Create(int szPage, int szExtra, int bPurgeable){pcache1Create44707,1679940 -static void pcache1Cachesize(sqlite3_pcache *p, int nMax){pcache1Cachesize44754,1681450 -static void pcache1Shrink(sqlite3_pcache *p){pcache1Shrink44773,1681994 -static int pcache1Pagecount(sqlite3_pcache *p){pcache1Pagecount44790,1682430 -static SQLITE_NOINLINE PgHdr1 *pcache1FetchStage2(pcache1FetchStage244808,1682978 -static PgHdr1 *pcache1FetchNoMutex(pcache1FetchNoMutex44936,1687442 -static PgHdr1 *pcache1FetchWithMutex(pcache1FetchWithMutex44966,1688351 -static sqlite3_pcache_page *pcache1Fetch(pcache1Fetch44981,1688703 -static void pcache1Unpin(pcache1Unpin45012,1689557 -static void pcache1Rekey(pcache1Rekey45048,1690490 -static void pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit){pcache1Truncate45088,1691432 -static void pcache1Destroy(sqlite3_pcache *p){pcache1Destroy45103,1691843 -SQLITE_PRIVATE void sqlite3PCacheSetDefault(void){sqlite3PCacheSetDefault45126,1692665 -SQLITE_PRIVATE int sqlite3HeaderSizePcache1(void){ return ROUND8(sizeof(PgHdr1)); }sqlite3HeaderSizePcache145148,1693486 -SQLITE_PRIVATE sqlite3_mutex *sqlite3Pcache1Mutex(void){sqlite3Pcache1Mutex45154,1693701 -SQLITE_PRIVATE int sqlite3PcacheReleaseMemory(int nReq){sqlite3PcacheReleaseMemory45168,1694212 -SQLITE_PRIVATE void sqlite3PcacheStats(sqlite3PcacheStats45198,1695039 -#define ROWSET_ALLOCATION_SIZE ROWSET_ALLOCATION_SIZE45288,1698546 -#define ROWSET_ENTRY_PER_CHUNK ROWSET_ENTRY_PER_CHUNK45293,1698643 -struct RowSetEntry { RowSetEntry45304,1699107 - i64 v; /* ROWID value for this entry */v45305,1699140 - i64 v; /* ROWID value for this entry */RowSetEntry::v45305,1699140 - struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */pRight45306,1699205 - struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */RowSetEntry::pRight45306,1699205 - struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */pLeft45307,1699282 - struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */RowSetEntry::pLeft45307,1699282 -struct RowSetChunk {RowSetChunk45316,1699600 - struct RowSetChunk *pNextChunk; /* Next chunk on list of them all */pNextChunk45317,1699621 - struct RowSetChunk *pNextChunk; /* Next chunk on list of them all */RowSetChunk::pNextChunk45317,1699621 - struct RowSetEntry aEntry[ROWSET_ENTRY_PER_CHUNK]; /* Allocated entries */aEntry45318,1699699 - struct RowSetEntry aEntry[ROWSET_ENTRY_PER_CHUNK]; /* Allocated entries */RowSetChunk::aEntry45318,1699699 -struct RowSet {RowSet45326,1699900 - struct RowSetChunk *pChunk; /* List of all chunk allocations */pChunk45327,1699916 - struct RowSetChunk *pChunk; /* List of all chunk allocations */RowSet::pChunk45327,1699916 - sqlite3 *db; /* The database connection */db45328,1699985 - sqlite3 *db; /* The database connection */RowSet::db45328,1699985 - struct RowSetEntry *pEntry; /* List of entries using pRight */pEntry45329,1700048 - struct RowSetEntry *pEntry; /* List of entries using pRight */RowSet::pEntry45329,1700048 - struct RowSetEntry *pLast; /* Last entry on the pEntry list */pLast45330,1700116 - struct RowSetEntry *pLast; /* Last entry on the pEntry list */RowSet::pLast45330,1700116 - struct RowSetEntry *pFresh; /* Source of new entry objects */pFresh45331,1700185 - struct RowSetEntry *pFresh; /* Source of new entry objects */RowSet::pFresh45331,1700185 - struct RowSetEntry *pForest; /* List of binary trees of entries */pForest45332,1700252 - struct RowSetEntry *pForest; /* List of binary trees of entries */RowSet::pForest45332,1700252 - u16 nFresh; /* Number of objects on pFresh */nFresh45333,1700323 - u16 nFresh; /* Number of objects on pFresh */RowSet::nFresh45333,1700323 - u16 rsFlags; /* Various flags */rsFlags45334,1700390 - u16 rsFlags; /* Various flags */RowSet::rsFlags45334,1700390 - int iBatch; /* Current insert batch */iBatch45335,1700443 - int iBatch; /* Current insert batch */RowSet::iBatch45335,1700443 -#define ROWSET_SORTED ROWSET_SORTED45341,1700550 -#define ROWSET_NEXT ROWSET_NEXT45342,1700618 -SQLITE_PRIVATE RowSet *sqlite3RowSetInit(sqlite3 *db, void *pSpace, unsigned int N){sqlite3RowSetInit45356,1701160 -SQLITE_PRIVATE void sqlite3RowSetClear(RowSet *p){sqlite3RowSetClear45377,1701767 -static struct RowSetEntry *rowSetEntryAlloc(RowSet *p){rowSetEntryAlloc45399,1702368 -SQLITE_PRIVATE void sqlite3RowSetInsert(RowSet *p, i64 rowid){sqlite3RowSetInsert45424,1703073 -static struct RowSetEntry *rowSetEntryMerge(rowSetEntryMerge45455,1703961 -static struct RowSetEntry *rowSetEntrySort(struct RowSetEntry *pIn){rowSetEntrySort45492,1704902 -static void rowSetTreeToList(rowSetTreeToList45520,1705639 -static struct RowSetEntry *rowSetNDeepTree(rowSetNDeepTree45555,1706776 -static struct RowSetEntry *rowSetListToTree(struct RowSetEntry *pList){rowSetListToTree45591,1707918 -SQLITE_PRIVATE int sqlite3RowSetNext(RowSet *p, i64 *pRowid){sqlite3RowSetNext45623,1708891 -SQLITE_PRIVATE int sqlite3RowSetTest(RowSet *pRowSet, int iBatch, sqlite3_int64 iRowid){sqlite3RowSetTest45657,1710001 -#define _WAL_H__WAL_H_45762,1713673 -#define WAL_SYNC_TRANSACTIONS WAL_SYNC_TRANSACTIONS45769,1713815 -#define SQLITE_SYNC_MASK SQLITE_SYNC_MASK45770,1713895 -# define sqlite3WalOpen(sqlite3WalOpen45773,1713997 -# define sqlite3WalLimit(sqlite3WalLimit45774,1714048 -# define sqlite3WalClose(sqlite3WalClose45775,1714078 -# define sqlite3WalBeginReadTransaction(sqlite3WalBeginReadTransaction45776,1714129 -# define sqlite3WalEndReadTransaction(sqlite3WalEndReadTransaction45777,1714180 -# define sqlite3WalDbsize(sqlite3WalDbsize45778,1714221 -# define sqlite3WalBeginWriteTransaction(sqlite3WalBeginWriteTransaction45779,1714272 -# define sqlite3WalEndWriteTransaction(sqlite3WalEndWriteTransaction45780,1714323 -# define sqlite3WalUndo(sqlite3WalUndo45781,1714374 -# define sqlite3WalSavepoint(sqlite3WalSavepoint45782,1714425 -# define sqlite3WalSavepointUndo(sqlite3WalSavepointUndo45783,1714459 -# define sqlite3WalFrames(sqlite3WalFrames45784,1714510 -# define sqlite3WalCheckpoint(sqlite3WalCheckpoint45785,1714561 -# define sqlite3WalCallback(sqlite3WalCallback45786,1714612 -# define sqlite3WalExclusiveMode(sqlite3WalExclusiveMode45787,1714663 -# define sqlite3WalHeapMemory(sqlite3WalHeapMemory45788,1714714 -# define sqlite3WalFramesize(sqlite3WalFramesize45789,1714765 -# define sqlite3WalFindFrame(sqlite3WalFindFrame45790,1714816 -# define sqlite3WalFile(sqlite3WalFile45791,1714867 -#define WAL_SAVEPOINT_NDATA WAL_SAVEPOINT_NDATA45794,1714925 -typedef struct Wal Wal;Wal45799,1715060 -#define PAGERTRACE(PAGERTRACE45990,1723538 -#define PAGERID(PAGERID46001,1723861 -#define FILEHANDLEID(FILEHANDLEID46002,1723895 -#define PAGER_OPEN PAGER_OPEN46221,1734444 -#define PAGER_READER PAGER_READER46222,1734482 -#define PAGER_WRITER_LOCKED PAGER_WRITER_LOCKED46223,1734520 -#define PAGER_WRITER_CACHEMOD PAGER_WRITER_CACHEMOD46224,1734558 -#define PAGER_WRITER_DBMOD PAGER_WRITER_DBMOD46225,1734596 -#define PAGER_WRITER_FINISHED PAGER_WRITER_FINISHED46226,1734634 -#define PAGER_ERROR PAGER_ERROR46227,1734672 -#define UNKNOWN_LOCK UNKNOWN_LOCK46277,1737459 -# define CODEC1(CODEC146283,1737600 -# define CODEC2(CODEC246285,1737688 -# define CODEC1(CODEC146289,1737828 -# define CODEC2(CODEC246290,1737869 -#define MAX_SECTOR_SIZE MAX_SECTOR_SIZE46299,1738201 -typedef struct PagerSavepoint PagerSavepoint;PagerSavepoint46315,1738895 -struct PagerSavepoint {PagerSavepoint46316,1738941 - i64 iOffset; /* Starting offset in main journal */iOffset46317,1738965 - i64 iOffset; /* Starting offset in main journal */PagerSavepoint::iOffset46317,1738965 - i64 iHdrOffset; /* See above */iHdrOffset46318,1739034 - i64 iHdrOffset; /* See above */PagerSavepoint::iHdrOffset46318,1739034 - Bitvec *pInSavepoint; /* Set of pages in this savepoint */pInSavepoint46319,1739081 - Bitvec *pInSavepoint; /* Set of pages in this savepoint */PagerSavepoint::pInSavepoint46319,1739081 - Pgno nOrig; /* Original number of pages in file */nOrig46320,1739149 - Pgno nOrig; /* Original number of pages in file */PagerSavepoint::nOrig46320,1739149 - Pgno iSubRec; /* Index of first record in sub-journal */iSubRec46321,1739219 - Pgno iSubRec; /* Index of first record in sub-journal */PagerSavepoint::iSubRec46321,1739219 - u32 aWalData[WAL_SAVEPOINT_NDATA]; /* WAL savepoint context */aWalData46323,1739317 - u32 aWalData[WAL_SAVEPOINT_NDATA]; /* WAL savepoint context */PagerSavepoint::aWalData46323,1739317 -#define SPILLFLAG_OFF SPILLFLAG_OFF46330,1739476 -#define SPILLFLAG_ROLLBACK SPILLFLAG_ROLLBACK46331,1739552 -#define SPILLFLAG_NOSYNC SPILLFLAG_NOSYNC46332,1739631 -struct Pager {Pager46490,1747320 - sqlite3_vfs *pVfs; /* OS functions to use for IO */pVfs46491,1747335 - sqlite3_vfs *pVfs; /* OS functions to use for IO */Pager::pVfs46491,1747335 - u8 exclusiveMode; /* Boolean. True if locking_mode==EXCLUSIVE */exclusiveMode46492,1747398 - u8 exclusiveMode; /* Boolean. True if locking_mode==EXCLUSIVE */Pager::exclusiveMode46492,1747398 - u8 journalMode; /* One of the PAGER_JOURNALMODE_* values */journalMode46493,1747475 - u8 journalMode; /* One of the PAGER_JOURNALMODE_* values */Pager::journalMode46493,1747475 - u8 useJournal; /* Use a rollback journal on this file */useJournal46494,1747549 - u8 useJournal; /* Use a rollback journal on this file */Pager::useJournal46494,1747549 - u8 noSync; /* Do not sync the journal if true */noSync46495,1747621 - u8 noSync; /* Do not sync the journal if true */Pager::noSync46495,1747621 - u8 fullSync; /* Do extra syncs of the journal for robustness */fullSync46496,1747689 - u8 fullSync; /* Do extra syncs of the journal for robustness */Pager::fullSync46496,1747689 - u8 extraSync; /* sync directory after journal delete */extraSync46497,1747770 - u8 extraSync; /* sync directory after journal delete */Pager::extraSync46497,1747770 - u8 ckptSyncFlags; /* SYNC_NORMAL or SYNC_FULL for checkpoint */ckptSyncFlags46498,1747842 - u8 ckptSyncFlags; /* SYNC_NORMAL or SYNC_FULL for checkpoint */Pager::ckptSyncFlags46498,1747842 - u8 walSyncFlags; /* SYNC_NORMAL or SYNC_FULL for wal writes */walSyncFlags46499,1747918 - u8 walSyncFlags; /* SYNC_NORMAL or SYNC_FULL for wal writes */Pager::walSyncFlags46499,1747918 - u8 syncFlags; /* SYNC_NORMAL or SYNC_FULL otherwise */syncFlags46500,1747994 - u8 syncFlags; /* SYNC_NORMAL or SYNC_FULL otherwise */Pager::syncFlags46500,1747994 - u8 tempFile; /* zFilename is a temporary or immutable file */tempFile46501,1748065 - u8 tempFile; /* zFilename is a temporary or immutable file */Pager::tempFile46501,1748065 - u8 noLock; /* Do not lock (except in WAL mode) */noLock46502,1748144 - u8 noLock; /* Do not lock (except in WAL mode) */Pager::noLock46502,1748144 - u8 readOnly; /* True for a read-only database */readOnly46503,1748213 - u8 readOnly; /* True for a read-only database */Pager::readOnly46503,1748213 - u8 memDb; /* True to inhibit all file I/O */memDb46504,1748279 - u8 memDb; /* True to inhibit all file I/O */Pager::memDb46504,1748279 - u8 eState; /* Pager state (OPEN, READER, WRITER_LOCKED..) */eState46515,1748905 - u8 eState; /* Pager state (OPEN, READER, WRITER_LOCKED..) */Pager::eState46515,1748905 - u8 eLock; /* Current lock held on database file */eLock46516,1748985 - u8 eLock; /* Current lock held on database file */Pager::eLock46516,1748985 - u8 changeCountDone; /* Set after incrementing the change-counter */changeCountDone46517,1749056 - u8 changeCountDone; /* Set after incrementing the change-counter */Pager::changeCountDone46517,1749056 - u8 setMaster; /* True if a m-j name has been written to jrnl */setMaster46518,1749134 - u8 setMaster; /* True if a m-j name has been written to jrnl */Pager::setMaster46518,1749134 - u8 doNotSpill; /* Do not spill the cache when non-zero */doNotSpill46519,1749214 - u8 doNotSpill; /* Do not spill the cache when non-zero */Pager::doNotSpill46519,1749214 - u8 subjInMemory; /* True to use in-memory sub-journals */subjInMemory46520,1749287 - u8 subjInMemory; /* True to use in-memory sub-journals */Pager::subjInMemory46520,1749287 - u8 bUseFetch; /* True to use xFetch() */bUseFetch46521,1749358 - u8 bUseFetch; /* True to use xFetch() */Pager::bUseFetch46521,1749358 - u8 hasHeldSharedLock; /* True if a shared lock has ever been held */hasHeldSharedLock46522,1749415 - u8 hasHeldSharedLock; /* True if a shared lock has ever been held */Pager::hasHeldSharedLock46522,1749415 - Pgno dbSize; /* Number of pages in the database */dbSize46523,1749492 - Pgno dbSize; /* Number of pages in the database */Pager::dbSize46523,1749492 - Pgno dbOrigSize; /* dbSize before the current transaction */dbOrigSize46524,1749560 - Pgno dbOrigSize; /* dbSize before the current transaction */Pager::dbOrigSize46524,1749560 - Pgno dbFileSize; /* Number of pages in the database file */dbFileSize46525,1749634 - Pgno dbFileSize; /* Number of pages in the database file */Pager::dbFileSize46525,1749634 - Pgno dbHintSize; /* Value passed to FCNTL_SIZE_HINT call */dbHintSize46526,1749707 - Pgno dbHintSize; /* Value passed to FCNTL_SIZE_HINT call */Pager::dbHintSize46526,1749707 - int errCode; /* One of several kinds of errors */errCode46527,1749780 - int errCode; /* One of several kinds of errors */Pager::errCode46527,1749780 - int nRec; /* Pages journalled since last j-header written */nRec46528,1749847 - int nRec; /* Pages journalled since last j-header written */Pager::nRec46528,1749847 - u32 cksumInit; /* Quasi-random value added to every checksum */cksumInit46529,1749928 - u32 cksumInit; /* Quasi-random value added to every checksum */Pager::cksumInit46529,1749928 - u32 nSubRec; /* Number of records written to sub-journal */nSubRec46530,1750007 - u32 nSubRec; /* Number of records written to sub-journal */Pager::nSubRec46530,1750007 - Bitvec *pInJournal; /* One bit for each page in the database file */pInJournal46531,1750084 - Bitvec *pInJournal; /* One bit for each page in the database file */Pager::pInJournal46531,1750084 - sqlite3_file *fd; /* File descriptor for database */fd46532,1750163 - sqlite3_file *fd; /* File descriptor for database */Pager::fd46532,1750163 - sqlite3_file *jfd; /* File descriptor for main journal */jfd46533,1750228 - sqlite3_file *jfd; /* File descriptor for main journal */Pager::jfd46533,1750228 - sqlite3_file *sjfd; /* File descriptor for sub-journal */sjfd46534,1750297 - sqlite3_file *sjfd; /* File descriptor for sub-journal */Pager::sjfd46534,1750297 - i64 journalOff; /* Current write offset in the journal file */journalOff46535,1750365 - i64 journalOff; /* Current write offset in the journal file */Pager::journalOff46535,1750365 - i64 journalHdr; /* Byte offset to previous journal header */journalHdr46536,1750442 - i64 journalHdr; /* Byte offset to previous journal header */Pager::journalHdr46536,1750442 - sqlite3_backup *pBackup; /* Pointer to list of ongoing backup processes */pBackup46537,1750517 - sqlite3_backup *pBackup; /* Pointer to list of ongoing backup processes */Pager::pBackup46537,1750517 - PagerSavepoint *aSavepoint; /* Array of active savepoints */aSavepoint46538,1750597 - PagerSavepoint *aSavepoint; /* Array of active savepoints */Pager::aSavepoint46538,1750597 - int nSavepoint; /* Number of elements in aSavepoint[] */nSavepoint46539,1750660 - int nSavepoint; /* Number of elements in aSavepoint[] */Pager::nSavepoint46539,1750660 - u32 iDataVersion; /* Changes whenever database content changes */iDataVersion46540,1750731 - u32 iDataVersion; /* Changes whenever database content changes */Pager::iDataVersion46540,1750731 - char dbFileVers[16]; /* Changes whenever database file changes */dbFileVers46541,1750809 - char dbFileVers[16]; /* Changes whenever database file changes */Pager::dbFileVers46541,1750809 - int nMmapOut; /* Number of mmap pages currently outstanding */nMmapOut46543,1750885 - int nMmapOut; /* Number of mmap pages currently outstanding */Pager::nMmapOut46543,1750885 - sqlite3_int64 szMmap; /* Desired maximum mmap size */szMmap46544,1750964 - sqlite3_int64 szMmap; /* Desired maximum mmap size */Pager::szMmap46544,1750964 - PgHdr *pMmapFreelist; /* List of free mmap page headers (pDirty) */pMmapFreelist46545,1751026 - PgHdr *pMmapFreelist; /* List of free mmap page headers (pDirty) */Pager::pMmapFreelist46545,1751026 - u16 nExtra; /* Add this many bytes to each in-memory page */nExtra46550,1751236 - u16 nExtra; /* Add this many bytes to each in-memory page */Pager::nExtra46550,1751236 - i16 nReserve; /* Number of unused bytes at end of each page */nReserve46551,1751315 - i16 nReserve; /* Number of unused bytes at end of each page */Pager::nReserve46551,1751315 - u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */vfsFlags46552,1751394 - u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */Pager::vfsFlags46552,1751394 - u32 sectorSize; /* Assumed sector size during rollback */sectorSize46553,1751460 - u32 sectorSize; /* Assumed sector size during rollback */Pager::sectorSize46553,1751460 - int pageSize; /* Number of bytes in a page */pageSize46554,1751532 - int pageSize; /* Number of bytes in a page */Pager::pageSize46554,1751532 - Pgno mxPgno; /* Maximum allowed size of the database */mxPgno46555,1751594 - Pgno mxPgno; /* Maximum allowed size of the database */Pager::mxPgno46555,1751594 - i64 journalSizeLimit; /* Size limit for persistent journal files */journalSizeLimit46556,1751667 - i64 journalSizeLimit; /* Size limit for persistent journal files */Pager::journalSizeLimit46556,1751667 - char *zFilename; /* Name of the database file */zFilename46557,1751743 - char *zFilename; /* Name of the database file */Pager::zFilename46557,1751743 - char *zJournal; /* Name of the journal file */zJournal46558,1751805 - char *zJournal; /* Name of the journal file */Pager::zJournal46558,1751805 - int (*xBusyHandler)(void*); /* Function to call when busy */xBusyHandler46559,1751866 - int (*xBusyHandler)(void*); /* Function to call when busy */Pager::xBusyHandler46559,1751866 - void *pBusyHandlerArg; /* Context argument for xBusyHandler */pBusyHandlerArg46560,1751929 - void *pBusyHandlerArg; /* Context argument for xBusyHandler */Pager::pBusyHandlerArg46560,1751929 - int aStat[3]; /* Total cache hits, misses and writes */aStat46561,1751999 - int aStat[3]; /* Total cache hits, misses and writes */Pager::aStat46561,1751999 - int nRead; /* Database pages read */nRead46563,1752090 - int nRead; /* Database pages read */Pager::nRead46563,1752090 - void (*xReiniter)(DbPage*); /* Call this routine when reloading pages */xReiniter46565,1752153 - void (*xReiniter)(DbPage*); /* Call this routine when reloading pages */Pager::xReiniter46565,1752153 - void *(*xCodec)(void*,void*,Pgno,int); /* Routine for en/decoding data */xCodec46567,1752252 - void *(*xCodec)(void*,void*,Pgno,int); /* Routine for en/decoding data */Pager::xCodec46567,1752252 - void (*xCodecSizeChng)(void*,int,int); /* Notify of page size changes */xCodecSizeChng46568,1752328 - void (*xCodecSizeChng)(void*,int,int); /* Notify of page size changes */Pager::xCodecSizeChng46568,1752328 - void (*xCodecFree)(void*); /* Destructor for the codec */xCodecFree46569,1752403 - void (*xCodecFree)(void*); /* Destructor for the codec */Pager::xCodecFree46569,1752403 - void *pCodec; /* First argument to xCodec... methods */pCodec46570,1752475 - void *pCodec; /* First argument to xCodec... methods */Pager::pCodec46570,1752475 - char *pTmpSpace; /* Pager.pageSize bytes of space for tmp use */pTmpSpace46572,1752554 - char *pTmpSpace; /* Pager.pageSize bytes of space for tmp use */Pager::pTmpSpace46572,1752554 - PCache *pPCache; /* Pointer to page cache object */pPCache46573,1752632 - PCache *pPCache; /* Pointer to page cache object */Pager::pPCache46573,1752632 - Wal *pWal; /* Write-ahead log used by "journal_mode=wal" */pWal46575,1752721 - Wal *pWal; /* Write-ahead log used by "journal_mode=wal" */Pager::pWal46575,1752721 - char *zWal; /* File name for write-ahead log */zWal46576,1752800 - char *zWal; /* File name for write-ahead log */Pager::zWal46576,1752800 -#define PAGER_STAT_HIT PAGER_STAT_HIT46585,1753070 -#define PAGER_STAT_MISS PAGER_STAT_MISS46586,1753097 -#define PAGER_STAT_WRITE PAGER_STAT_WRITE46587,1753124 -SQLITE_API int sqlite3_pager_readdb_count = 0; /* Number of full pages read from DB */sqlite3_pager_readdb_count46595,1753355 -SQLITE_API int sqlite3_pager_writedb_count = 0; /* Number of full pages written to DB */sqlite3_pager_writedb_count46596,1753445 -SQLITE_API int sqlite3_pager_writej_count = 0; /* Number of pages written to journal */sqlite3_pager_writej_count46597,1753536 -# define PAGER_INCR(PAGER_INCR46598,1753627 -# define PAGER_INCR(PAGER_INCR46600,1753661 -static const unsigned char aJournalMagic[] = {aJournalMagic46628,1754995 -#define JOURNAL_PG_SZ(JOURNAL_PG_SZ46636,1755192 -#define JOURNAL_HDR_SZ(JOURNAL_HDR_SZ46642,1755383 -# define MEMDB MEMDB46651,1755728 -# define MEMDB MEMDB46653,1755751 -# define USEFETCH(USEFETCH46661,1755962 -# define USEFETCH(USEFETCH46663,1756006 -#define PAGER_MAX_PGNO PAGER_MAX_PGNO46669,1756091 -#define isOpen(isOpen46683,1756420 -static int pagerUseWal(Pager *pPager){pagerUseWal46690,1756603 -# define pagerUseWal(pagerUseWal46694,1756678 -# define pagerRollbackWal(pagerRollbackWal46695,1756704 -# define pagerWalFrames(pagerWalFrames46696,1756735 -# define pagerOpenWalIfPresent(pagerOpenWalIfPresent46697,1756770 -# define pagerBeginReadTransaction(pagerBeginReadTransaction46698,1756814 -static int assert_pager_state(Pager *p){assert_pager_state46710,1757063 -static char *print_pager_state(Pager *p){print_pager_state46849,1761965 -static int subjRequiresPage(PgHdr *pPg){subjRequiresPage46900,1764132 -static int pageInJournal(Pager *pPager, PgHdr *pPg){pageInJournal46918,1764536 -static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){read32bits46930,1764902 -#define put32bits(put32bits46942,1765198 -static int write32bits(sqlite3_file *fd, i64 offset, u32 val){write32bits46949,1765388 -static int pagerUnlockDb(Pager *pPager, int eLock){pagerUnlockDb46964,1765945 -static int pagerLockDb(Pager *pPager, int eLock){pagerLockDb46991,1766910 -static int jrnlBufferSize(Pager *pPager){jrnlBufferSize47023,1768130 -# define jrnlBufferSize(jrnlBufferSize47045,1768807 -static u32 pager_datahash(int nByte, unsigned char *pData){pager_datahash47057,1769090 -static u32 pager_pagehash(PgHdr *pPage){pager_pagehash47065,1769257 -static void pager_set_pagehash(PgHdr *pPage){pager_set_pagehash47068,1769381 -#define CHECK_PAGE(CHECK_PAGE47077,1769703 -static void checkPage(PgHdr *pPg){checkPage47078,1769738 -#define pager_datahash(pager_datahash47085,1769930 -#define pager_pagehash(pager_pagehash47086,1769961 -#define pager_set_pagehash(pager_set_pagehash47087,1769990 -#define CHECK_PAGE(CHECK_PAGE47088,1770020 -static int readMasterJournal(sqlite3_file *pJrnl, char *zMaster, u32 nMaster){readMasterJournal47116,1771286 -static i64 journalHdrOffset(Pager *pPager){journalHdrOffset47170,1773092 -static int zeroJournalHdr(Pager *pPager, int doTruncate){zeroJournalHdr47203,1774406 -static int writeJournalHdr(Pager *pPager){writeJournalHdr47253,1776287 -static int readJournalHdr(readJournalHdr47371,1781615 -static int writeMasterJournal(Pager *pPager, const char *zMaster){writeMasterJournal47496,1786577 -static void pager_reset(Pager *pPager){pager_reset47564,1789067 -SQLITE_PRIVATE u32 sqlite3PagerDataVersion(Pager *pPager){sqlite3PagerDataVersion47573,1789263 -static void releaseAllSavepoints(Pager *pPager){releaseAllSavepoints47583,1789598 -static int addToSavepointBitvecs(Pager *pPager, Pgno pgno){addToSavepointBitvecs47602,1790240 -static void pager_unlock(Pager *pPager){pager_unlock47634,1791480 -static int pager_error(Pager *pPager, int rc){pager_error47731,1795291 -static int pagerFlushOnCommit(Pager *pPager, int bCommit){pagerFlushOnCommit47764,1796279 -static int pager_end_transaction(Pager *pPager, int hasMaster, int bCommit){pager_end_transaction47824,1798982 -static void pagerUnlockAndRollback(Pager *pPager){pagerUnlockAndRollback47970,1804839 -static u32 pager_cksum(Pager *pPager, const u8 *aData){pager_cksum48004,1806257 -static void pagerReportSize(Pager *pPager){pagerReportSize48019,1806634 -# define pagerReportSize(pagerReportSize48026,1806834 -SQLITE_PRIVATE void sqlite3PagerAlignReserve(Pager *pDest, Pager *pSrc){sqlite3PagerAlignReserve48035,1807143 -static int pager_playback_one_page(pager_playback_one_page48080,1809115 -static int pager_delmaster(Pager *pPager, const char *zMaster){pager_delmaster48325,1820088 -static int pager_truncate(Pager *pPager, Pgno nPage){pager_truncate48435,1824308 -SQLITE_PRIVATE int sqlite3SectorSize(sqlite3_file *pFile){sqlite3SectorSize48471,1825514 -static void setSectorSize(Pager *pPager){setSectorSize48505,1826956 -static int pager_playback(Pager *pPager, int isHot){pager_playback48578,1830313 -static int readDbPage(PgHdr *pPg, u32 iFrame){readDbPage48786,1838413 -static void pager_write_changecounter(PgHdr *pPg){pager_write_changecounter48848,1840761 -static int pagerUndoCallback(void *pCtx, Pgno iPg){pagerUndoCallback48875,1841923 -static int pagerRollbackWal(Pager *pPager){pagerRollbackWal48914,1843105 -static int pagerWalFrames(pagerWalFrames48946,1844292 -static int pagerBeginReadTransaction(Pager *pPager){pagerBeginReadTransaction49013,1846376 -static int pagerPagecount(Pager *pPager, Pgno *pnPage){pagerPagecount49046,1847591 -static int pagerOpenWalIfPresent(Pager *pPager){pagerOpenWalIfPresent49106,1849914 -static int pagerPlaybackSavepoint(Pager *pPager, PagerSavepoint *pSavepoint){pagerPlaybackSavepoint49175,1852624 -SQLITE_PRIVATE void sqlite3PagerSetCachesize(Pager *pPager, int mxPage){sqlite3PagerSetCachesize49287,1856751 -SQLITE_PRIVATE int sqlite3PagerSetSpillsize(Pager *pPager, int mxPage){sqlite3PagerSetSpillsize49295,1857000 -static void pagerFixMaplimit(Pager *pPager){pagerFixMaplimit49302,1857213 -SQLITE_PRIVATE void sqlite3PagerSetMmapLimit(Pager *pPager, sqlite3_int64 szMmap){sqlite3PagerSetMmapLimit49317,1857613 -SQLITE_PRIVATE void sqlite3PagerShrink(Pager *pPager){sqlite3PagerShrink49325,1857811 -SQLITE_PRIVATE void sqlite3PagerSetFlags(sqlite3PagerSetFlags49381,1860617 -SQLITE_API int sqlite3_opentemp_count = 0;sqlite3_opentemp_count49426,1862029 -static int pagerOpentemp(pagerOpentemp49444,1862544 -SQLITE_PRIVATE void sqlite3PagerSetBusyhandler(sqlite3PagerSetBusyhandler49483,1864045 -SQLITE_PRIVATE int sqlite3PagerSetPagesize(Pager *pPager, u32 *pPageSize, int nReserve){sqlite3PagerSetPagesize49529,1865977 -SQLITE_PRIVATE void *sqlite3PagerTempSpace(Pager *pPager){sqlite3PagerTempSpace49592,1868114 -SQLITE_PRIVATE int sqlite3PagerMaxPageCount(Pager *pPager, int mxPage){sqlite3PagerMaxPageCount49603,1868485 -static int saved_cnt;saved_cnt49623,1869191 -void disable_simulated_io_errors(void){disable_simulated_io_errors49624,1869213 -void enable_simulated_io_errors(void){enable_simulated_io_errors49628,1869328 -# define disable_simulated_io_errors(disable_simulated_io_errors49632,1869415 -# define enable_simulated_io_errors(enable_simulated_io_errors49633,1869454 -SQLITE_PRIVATE int sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest){sqlite3PagerReadFileheader49650,1870118 -SQLITE_PRIVATE void sqlite3PagerPagecount(Pager *pPager, int *pnPage){sqlite3PagerPagecount49678,1870977 -static int pager_wait_on_lock(Pager *pPager, int locktype){pager_wait_on_lock49699,1871784 -static void assertTruncateConstraintCb(PgHdr *pPg){assertTruncateConstraintCb49741,1873612 -static void assertTruncateConstraint(Pager *pPager){assertTruncateConstraint49745,1873772 -# define assertTruncateConstraint(assertTruncateConstraint49749,1873907 -SQLITE_PRIVATE void sqlite3PagerTruncateImage(Pager *pPager, Pgno nPage){sqlite3PagerTruncateImage49763,1874490 -static int pagerSyncHotJournal(Pager *pPager){pagerSyncHotJournal49794,1875882 -static int pagerAcquireMapPage(pagerAcquireMapPage49815,1876563 -static void pagerReleaseMapPage(PgHdr *pPg){pagerReleaseMapPage49857,1877761 -static void pagerFreeMapHdrs(Pager *pPager){pagerFreeMapHdrs49870,1878133 -SQLITE_PRIVATE int sqlite3PagerClose(Pager *pPager){sqlite3PagerClose49894,1878907 -SQLITE_PRIVATE Pgno sqlite3PagerPagenumber(DbPage *pPg){sqlite3PagerPagenumber49951,1880804 -SQLITE_PRIVATE void sqlite3PagerRef(DbPage *pPg){sqlite3PagerRef49959,1880944 -static int syncJournal(Pager *pPager, int newHdr){syncJournal49998,1882467 -static int pager_write_pagelist(Pager *pPager, PgHdr *pList){pager_write_pagelist50141,1888682 -static int openSubJournal(Pager *pPager){openSubJournal50233,1892146 -static int subjournalPage(PgHdr *pPg){subjournalPage50259,1893075 -static int subjournalPageIfRequired(PgHdr *pPg){subjournalPageIfRequired50296,1894345 -static int pagerStress(void *p, PgHdr *pPg){pagerStress50323,1895434 -SQLITE_PRIVATE int sqlite3PagerFlush(Pager *pPager){sqlite3PagerFlush50392,1897739 -SQLITE_PRIVATE int sqlite3PagerOpen(sqlite3PagerOpen50439,1899588 -static int databaseIsUnmoved(Pager *pPager){databaseIsUnmoved50732,1911010 -static int hasHotJournal(Pager *pPager, int *pExists){hasHotJournal50783,1913258 -SQLITE_PRIVATE int sqlite3PagerSharedLock(Pager *pPager){sqlite3PagerSharedLock50903,1918601 -static void pagerUnlockIfUnused(Pager *pPager){pagerUnlockIfUnused51125,1927514 -SQLITE_PRIVATE int sqlite3PagerGet(sqlite3PagerGet51181,1930224 -SQLITE_PRIVATE DbPage *sqlite3PagerLookup(Pager *pPager, Pgno pgno){sqlite3PagerLookup51364,1936288 -SQLITE_PRIVATE void sqlite3PagerUnrefNotNull(DbPage *pPg){sqlite3PagerUnrefNotNull51383,1936916 -SQLITE_PRIVATE void sqlite3PagerUnref(DbPage *pPg){sqlite3PagerUnref51394,1937176 -static int pager_open_journal(Pager *pPager){pager_open_journal51420,1938295 -SQLITE_PRIVATE int sqlite3PagerBegin(Pager *pPager, int exFlag, int subjInMemory){sqlite3PagerBegin51509,1941429 -static SQLITE_NOINLINE int pagerAddPageToRollbackJournal(PgHdr *pPg){pagerAddPageToRollbackJournal51578,1944039 -static int pager_write(PgHdr *pPg){pager_write51635,1946263 -static SQLITE_NOINLINE int pagerWriteLargeSector(PgHdr *pPg){pagerWriteLargeSector51727,1949694 -SQLITE_PRIVATE int sqlite3PagerWrite(PgHdr *pPg){sqlite3PagerWrite51821,1953111 -SQLITE_PRIVATE int sqlite3PagerIswriteable(DbPage *pPg){sqlite3PagerIswriteable51845,1953918 -SQLITE_PRIVATE void sqlite3PagerDontWrite(PgHdr *pPg){sqlite3PagerDontWrite51870,1954936 -static int pager_incr_changecounter(Pager *pPager, int isDirectMode){pager_incr_changecounter51904,1956472 -# define DIRECT_MODE DIRECT_MODE51923,1957234 -SQLITE_PRIVATE int sqlite3PagerSync(Pager *pPager, const char *zMaster){sqlite3PagerSync51987,1959462 -SQLITE_PRIVATE int sqlite3PagerExclusiveLock(Pager *pPager){sqlite3PagerExclusiveLock52013,1960390 -SQLITE_PRIVATE int sqlite3PagerCommitPhaseOne(sqlite3PagerCommitPhaseOne52055,1962008 -SQLITE_PRIVATE int sqlite3PagerCommitPhaseTwo(Pager *pPager){sqlite3PagerCommitPhaseTwo52232,1969594 -SQLITE_PRIVATE int sqlite3PagerRollback(Pager *pPager){sqlite3PagerRollback52298,1972381 -SQLITE_PRIVATE u8 sqlite3PagerIsreadonly(Pager *pPager){sqlite3PagerIsreadonly52347,1974222 -SQLITE_PRIVATE int sqlite3PagerRefcount(Pager *pPager){sqlite3PagerRefcount52355,1974407 -SQLITE_PRIVATE int sqlite3PagerMemUsed(Pager *pPager){sqlite3PagerMemUsed52364,1974637 -SQLITE_PRIVATE int sqlite3PagerPageRefcount(DbPage *pPage){sqlite3PagerPageRefcount52375,1975016 -SQLITE_PRIVATE int *sqlite3PagerStats(Pager *pPager){sqlite3PagerStats52383,1975202 -SQLITE_PRIVATE void sqlite3PagerCacheStat(Pager *pPager, int eStat, int reset, int *pnVal){sqlite3PagerCacheStat52407,1976074 -SQLITE_PRIVATE int sqlite3PagerIsMemdb(Pager *pPager){sqlite3PagerIsMemdb52427,1976735 -static SQLITE_NOINLINE int pagerOpenSavepoint(Pager *pPager, int nSavepoint){pagerOpenSavepoint52441,1977279 -SQLITE_PRIVATE int sqlite3PagerOpenSavepoint(Pager *pPager, int nSavepoint){sqlite3PagerOpenSavepoint52486,1978992 -SQLITE_PRIVATE int sqlite3PagerSavepoint(Pager *pPager, int op, int iSavepoint){sqlite3PagerSavepoint52528,1980826 -SQLITE_PRIVATE const char *sqlite3PagerFilename(Pager *pPager, int nullIfMemDb){sqlite3PagerFilename52585,1983134 -SQLITE_PRIVATE sqlite3_vfs *sqlite3PagerVfs(Pager *pPager){sqlite3PagerVfs52592,1983333 -SQLITE_PRIVATE sqlite3_file *sqlite3PagerFile(Pager *pPager){sqlite3PagerFile52601,1983567 -SQLITE_PRIVATE sqlite3_file *sqlite3PagerJrnlFile(Pager *pPager){sqlite3PagerJrnlFile52609,1983783 -SQLITE_PRIVATE const char *sqlite3PagerJournalname(Pager *pPager){sqlite3PagerJournalname52620,1984030 -SQLITE_PRIVATE void sqlite3PagerSetCodec(sqlite3PagerSetCodec52628,1984201 -SQLITE_PRIVATE void *sqlite3PagerGetCodec(Pager *pPager){sqlite3PagerGetCodec52642,1984633 -SQLITE_PRIVATE void *sqlite3PagerCodec(PgHdr *pPg){sqlite3PagerCodec52653,1984960 -SQLITE_PRIVATE int sqlite3PagerState(Pager *pPager){sqlite3PagerState52662,1985156 -SQLITE_PRIVATE int sqlite3PagerMovepage(Pager *pPager, DbPage *pPg, Pgno pgno, int isCommit){sqlite3PagerMovepage52693,1986502 -SQLITE_PRIVATE void sqlite3PagerRekey(DbPage *pPg, Pgno iNew, u16 flags){sqlite3PagerRekey52827,1991587 -SQLITE_PRIVATE void *sqlite3PagerGetData(DbPage *pPg){sqlite3PagerGetData52836,1991809 -SQLITE_PRIVATE void *sqlite3PagerGetExtra(DbPage *pPg){sqlite3PagerGetExtra52845,1992049 -SQLITE_PRIVATE int sqlite3PagerLockingMode(Pager *pPager, int eMode){sqlite3PagerLockingMode52859,1992542 -SQLITE_PRIVATE int sqlite3PagerSetJournalMode(Pager *pPager, int eMode){sqlite3PagerSetJournalMode52892,1993735 -SQLITE_PRIVATE int sqlite3PagerGetJournalMode(Pager *pPager){sqlite3PagerGetJournalMode52990,1997131 -SQLITE_PRIVATE int sqlite3PagerOkToChangeJournalMode(Pager *pPager){sqlite3PagerOkToChangeJournalMode52999,1997397 -SQLITE_PRIVATE i64 sqlite3PagerJournalSizeLimit(Pager *pPager, i64 iLimit){sqlite3PagerJournalSizeLimit53012,1997833 -SQLITE_PRIVATE sqlite3_backup **sqlite3PagerBackupPtr(Pager *pPager){sqlite3PagerBackupPtr53026,1998293 -SQLITE_PRIVATE void sqlite3PagerClearCache(Pager *pPager){sqlite3PagerClearCache53034,1998503 -SQLITE_PRIVATE int sqlite3PagerCheckpoint(Pager *pPager, int eMode, int *pnLog, int *pnCkpt){sqlite3PagerCheckpoint53048,1998964 -SQLITE_PRIVATE int sqlite3PagerWalCallback(Pager *pPager){sqlite3PagerWalCallback53061,1999380 -SQLITE_PRIVATE int sqlite3PagerWalSupported(Pager *pPager){sqlite3PagerWalSupported53069,1999610 -static int pagerExclusiveLock(Pager *pPager){pagerExclusiveLock53079,1999978 -static int pagerOpenWal(Pager *pPager){pagerOpenWal53099,2000678 -SQLITE_PRIVATE int sqlite3PagerOpenWal(sqlite3PagerOpenWal53144,2002214 -SQLITE_PRIVATE int sqlite3PagerCloseWal(Pager *pPager){sqlite3PagerCloseWal53183,2003487 -SQLITE_PRIVATE int sqlite3PagerSnapshotGet(Pager *pPager, sqlite3_snapshot **ppSnapshot){sqlite3PagerSnapshotGet53226,2004840 -SQLITE_PRIVATE int sqlite3PagerSnapshotOpen(Pager *pPager, sqlite3_snapshot *pSnapshot){sqlite3PagerSnapshotOpen53239,2005265 -SQLITE_PRIVATE int sqlite3PagerWalFramesize(Pager *pPager){sqlite3PagerWalFramesize53259,2005921 -SQLITE_PRIVATE int sqlite3WalTrace = 0;sqlite3WalTrace53520,2018860 -# define WALTRACE(WALTRACE53521,2018900 -# define WALTRACE(WALTRACE53523,2018969 -#define WAL_MAX_VERSION WAL_MAX_VERSION53539,2019598 -#define WALINDEX_MAX_VERSION WALINDEX_MAX_VERSION53540,2019635 -#define WAL_WRITE_LOCK WAL_WRITE_LOCK53547,2019859 -#define WAL_ALL_BUT_WRITE WAL_ALL_BUT_WRITE53548,2019892 -#define WAL_CKPT_LOCK WAL_CKPT_LOCK53549,2019925 -#define WAL_RECOVER_LOCK WAL_RECOVER_LOCK53550,2019958 -#define WAL_READ_LOCK(WAL_READ_LOCK53551,2019991 -#define WAL_NREADER WAL_NREADER53552,2020030 -typedef struct WalIndexHdr WalIndexHdr;WalIndexHdr53556,2020110 -typedef struct WalIterator WalIterator;WalIterator53557,2020150 -typedef struct WalCkptInfo WalCkptInfo;WalCkptInfo53558,2020190 -struct WalIndexHdr {WalIndexHdr53574,2020820 - u32 iVersion; /* Wal-index version */iVersion53575,2020841 - u32 iVersion; /* Wal-index version */WalIndexHdr::iVersion53575,2020841 - u32 unused; /* Unused (padding) field */unused53576,2020899 - u32 unused; /* Unused (padding) field */WalIndexHdr::unused53576,2020899 - u32 iChange; /* Counter incremented each transaction */iChange53577,2020962 - u32 iChange; /* Counter incremented each transaction */WalIndexHdr::iChange53577,2020962 - u8 isInit; /* 1 when initialized */isInit53578,2021039 - u8 isInit; /* 1 when initialized */WalIndexHdr::isInit53578,2021039 - u8 bigEndCksum; /* True if checksums in WAL are big-endian */bigEndCksum53579,2021098 - u8 bigEndCksum; /* True if checksums in WAL are big-endian */WalIndexHdr::bigEndCksum53579,2021098 - u16 szPage; /* Database page size in bytes. 1==64K */szPage53580,2021178 - u16 szPage; /* Database page size in bytes. 1==64K */WalIndexHdr::szPage53580,2021178 - u32 mxFrame; /* Index of last valid frame in the WAL */mxFrame53581,2021254 - u32 mxFrame; /* Index of last valid frame in the WAL */WalIndexHdr::mxFrame53581,2021254 - u32 nPage; /* Size of database in pages */nPage53582,2021331 - u32 nPage; /* Size of database in pages */WalIndexHdr::nPage53582,2021331 - u32 aFrameCksum[2]; /* Checksum of last frame in log */aFrameCksum53583,2021397 - u32 aFrameCksum[2]; /* Checksum of last frame in log */WalIndexHdr::aFrameCksum53583,2021397 - u32 aSalt[2]; /* Two salt values copied from WAL header */aSalt53584,2021467 - u32 aSalt[2]; /* Two salt values copied from WAL header */WalIndexHdr::aSalt53584,2021467 - u32 aCksum[2]; /* Checksum over all prior fields */aCksum53585,2021546 - u32 aCksum[2]; /* Checksum over all prior fields */WalIndexHdr::aCksum53585,2021546 -struct WalCkptInfo {WalCkptInfo53647,2024931 - u32 nBackfill; /* Number of WAL frames backfilled into DB */nBackfill53648,2024952 - u32 nBackfill; /* Number of WAL frames backfilled into DB */WalCkptInfo::nBackfill53648,2024952 - u32 aReadMark[WAL_NREADER]; /* Reader marks */aReadMark53649,2025032 - u32 aReadMark[WAL_NREADER]; /* Reader marks */WalCkptInfo::aReadMark53649,2025032 - u8 aLock[SQLITE_SHM_NLOCK]; /* Reserved space for locks */aLock53650,2025085 - u8 aLock[SQLITE_SHM_NLOCK]; /* Reserved space for locks */WalCkptInfo::aLock53650,2025085 - u32 nBackfillAttempted; /* WAL frames perhaps written, or maybe not */nBackfillAttempted53651,2025150 - u32 nBackfillAttempted; /* WAL frames perhaps written, or maybe not */WalCkptInfo::nBackfillAttempted53651,2025150 - u32 notUsed0; /* Available for future enhancements */notUsed053652,2025231 - u32 notUsed0; /* Available for future enhancements */WalCkptInfo::notUsed053652,2025231 -#define READMARK_NOT_USED READMARK_NOT_USED53654,2025308 -#define WALINDEX_LOCK_OFFSET WALINDEX_LOCK_OFFSET53662,2025599 -#define WALINDEX_HDR_SIZE WALINDEX_HDR_SIZE53663,2025680 -#define WAL_FRAME_HDRSIZE WAL_FRAME_HDRSIZE53666,2025800 -#define WAL_HDRSIZE WAL_HDRSIZE53670,2025917 -#define WAL_MAGIC WAL_MAGIC53681,2026399 -#define walFrameOffset(walFrameOffset53688,2026628 -struct Wal {Wal53696,2026873 - sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */pVfs53697,2026886 - sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */Wal::pVfs53697,2026886 - sqlite3_file *pDbFd; /* File handle for the database file */pDbFd53698,2026950 - sqlite3_file *pDbFd; /* File handle for the database file */Wal::pDbFd53698,2026950 - sqlite3_file *pWalFd; /* File handle for WAL file */pWalFd53699,2027019 - sqlite3_file *pWalFd; /* File handle for WAL file */Wal::pWalFd53699,2027019 - u32 iCallback; /* Value to pass to log callback (or 0) */iCallback53700,2027079 - u32 iCallback; /* Value to pass to log callback (or 0) */Wal::iCallback53700,2027079 - i64 mxWalSize; /* Truncate WAL to this size upon reset */mxWalSize53701,2027151 - i64 mxWalSize; /* Truncate WAL to this size upon reset */Wal::mxWalSize53701,2027151 - int nWiData; /* Size of array apWiData */nWiData53702,2027223 - int nWiData; /* Size of array apWiData */Wal::nWiData53702,2027223 - int szFirstBlock; /* Size of first block written to WAL file */szFirstBlock53703,2027281 - int szFirstBlock; /* Size of first block written to WAL file */Wal::szFirstBlock53703,2027281 - volatile u32 **apWiData; /* Pointer to wal-index content in memory */apWiData53704,2027356 - volatile u32 **apWiData; /* Pointer to wal-index content in memory */Wal::apWiData53704,2027356 - u32 szPage; /* Database page size */szPage53705,2027430 - u32 szPage; /* Database page size */Wal::szPage53705,2027430 - i16 readLock; /* Which read lock is being held. -1 for none */readLock53706,2027484 - i16 readLock; /* Which read lock is being held. -1 for none */Wal::readLock53706,2027484 - u8 syncFlags; /* Flags to use to sync header writes */syncFlags53707,2027563 - u8 syncFlags; /* Flags to use to sync header writes */Wal::syncFlags53707,2027563 - u8 exclusiveMode; /* Non-zero if connection is in exclusive mode */exclusiveMode53708,2027633 - u8 exclusiveMode; /* Non-zero if connection is in exclusive mode */Wal::exclusiveMode53708,2027633 - u8 writeLock; /* True if in a write transaction */writeLock53709,2027712 - u8 writeLock; /* True if in a write transaction */Wal::writeLock53709,2027712 - u8 ckptLock; /* True if holding a checkpoint lock */ckptLock53710,2027778 - u8 ckptLock; /* True if holding a checkpoint lock */Wal::ckptLock53710,2027778 - u8 readOnly; /* WAL_RDWR, WAL_RDONLY, or WAL_SHM_RDONLY */readOnly53711,2027847 - u8 readOnly; /* WAL_RDWR, WAL_RDONLY, or WAL_SHM_RDONLY */Wal::readOnly53711,2027847 - u8 truncateOnCommit; /* True to truncate WAL file on commit */truncateOnCommit53712,2027922 - u8 truncateOnCommit; /* True to truncate WAL file on commit */Wal::truncateOnCommit53712,2027922 - u8 syncHeader; /* Fsync the WAL header if true */syncHeader53713,2027993 - u8 syncHeader; /* Fsync the WAL header if true */Wal::syncHeader53713,2027993 - u8 padToSectorBoundary; /* Pad transactions out to the next sector */padToSectorBoundary53714,2028057 - u8 padToSectorBoundary; /* Pad transactions out to the next sector */Wal::padToSectorBoundary53714,2028057 - WalIndexHdr hdr; /* Wal-index header for current transaction */hdr53715,2028132 - WalIndexHdr hdr; /* Wal-index header for current transaction */Wal::hdr53715,2028132 - u32 minFrame; /* Ignore wal frames before this one */minFrame53716,2028208 - u32 minFrame; /* Ignore wal frames before this one */Wal::minFrame53716,2028208 - u32 iReCksum; /* On commit, recalculate checksums from here */iReCksum53717,2028277 - u32 iReCksum; /* On commit, recalculate checksums from here */Wal::iReCksum53717,2028277 - const char *zWalName; /* Name of WAL file */zWalName53718,2028355 - const char *zWalName; /* Name of WAL file */Wal::zWalName53718,2028355 - u32 nCkpt; /* Checkpoint sequence counter in the wal-header */nCkpt53719,2028407 - u32 nCkpt; /* Checkpoint sequence counter in the wal-header */Wal::nCkpt53719,2028407 - u8 lockError; /* True if a locking error has occurred */lockError53721,2028508 - u8 lockError; /* True if a locking error has occurred */Wal::lockError53721,2028508 - WalIndexHdr *pSnapshot; /* Start transaction here if not NULL */pSnapshot53724,2028617 - WalIndexHdr *pSnapshot; /* Start transaction here if not NULL */Wal::pSnapshot53724,2028617 -#define WAL_NORMAL_MODE WAL_NORMAL_MODE53731,2028747 -#define WAL_EXCLUSIVE_MODE WAL_EXCLUSIVE_MODE53732,2028777 -#define WAL_HEAPMEMORY_MODE WAL_HEAPMEMORY_MODE53733,2028812 -#define WAL_RDWR WAL_RDWR53738,2028885 -#define WAL_RDONLY WAL_RDONLY53739,2028949 -#define WAL_SHM_RDONLY WAL_SHM_RDONLY53740,2029009 -typedef u16 ht_slot;ht_slot53746,2029210 -struct WalIterator {WalIterator53763,2029826 - int iPrior; /* Last result returned from the iterator */iPrior53764,2029847 - int iPrior; /* Last result returned from the iterator */WalIterator::iPrior53764,2029847 - int nSegment; /* Number of entries in aSegment[] */nSegment53765,2029926 - int nSegment; /* Number of entries in aSegment[] */WalIterator::nSegment53765,2029926 - struct WalSegment {WalSegment53766,2029998 - struct WalSegment {WalIterator::WalSegment53766,2029998 - int iNext; /* Next slot in aIndex[] not yet returned */iNext53767,2030020 - int iNext; /* Next slot in aIndex[] not yet returned */WalIterator::WalSegment::iNext53767,2030020 - ht_slot *aIndex; /* i0, i1, i2... such that aPgno[iN] ascend */aIndex53768,2030099 - ht_slot *aIndex; /* i0, i1, i2... such that aPgno[iN] ascend */WalIterator::WalSegment::aIndex53768,2030099 - u32 *aPgno; /* Array of page numbers. */aPgno53769,2030180 - u32 *aPgno; /* Array of page numbers. */WalIterator::WalSegment::aPgno53769,2030180 - int nEntry; /* Nr. of entries in aPgno[] and aIndex[] */nEntry53770,2030243 - int nEntry; /* Nr. of entries in aPgno[] and aIndex[] */WalIterator::WalSegment::nEntry53770,2030243 - int iZero; /* Frame number associated with aPgno[0] */iZero53771,2030322 - int iZero; /* Frame number associated with aPgno[0] */WalIterator::WalSegment::iZero53771,2030322 - } aSegment[1]; /* One for every 32KB page in the wal-index */aSegment53772,2030400 - } aSegment[1]; /* One for every 32KB page in the wal-index */WalIterator::aSegment53772,2030400 -#define HASHTABLE_NPAGE HASHTABLE_NPAGE53783,2030752 -#define HASHTABLE_HASH_1 HASHTABLE_HASH_153784,2030827 -#define HASHTABLE_NSLOT HASHTABLE_NSLOT53785,2030899 -#define HASHTABLE_NPAGE_ONE HASHTABLE_NPAGE_ONE53792,2031185 -#define WALINDEX_PGSZ WALINDEX_PGSZ53795,2031338 -static int walIndexPage(Wal *pWal, int iPage, volatile u32 **ppPage){walIndexPage53808,2031865 -static volatile WalCkptInfo *walCkptInfo(Wal *pWal){walCkptInfo53850,2033147 -static volatile WalIndexHdr *walIndexHdr(Wal *pWal){walIndexHdr53858,2033403 -#define BYTESWAP32(BYTESWAP3253870,2033902 -static void walChecksumBytes(walChecksumBytes53884,2034328 -static void walShmBarrier(Wal *pWal){walShmBarrier53922,2035172 -static void walIndexWriteHdr(Wal *pWal){walIndexWriteHdr53933,2035441 -static void walEncodeFrame(walEncodeFrame53959,2036405 -static int walDecodeFrame(walDecodeFrame53990,2037619 -static const char *walLockName(int lockIdx){walLockName54045,2039456 -static int walLockShared(Wal *pWal, int lockIdx){walLockShared54069,2040186 -static void walUnlockShared(Wal *pWal, int lockIdx){walUnlockShared54079,2040599 -static int walLockExclusive(Wal *pWal, int lockIdx, int n){walLockExclusive54085,2040877 -static void walUnlockExclusive(Wal *pWal, int lockIdx, int n){walUnlockExclusive54095,2041316 -static int walHash(u32 iPage){walHash54108,2041846 -static int walNextHash(int iPriorHash){walNextHash54113,2042013 -static int walHashGet(walHashGet54131,2042706 -static int walFramePage(u32 iFrame){walFramePage54169,2043865 -static u32 walFramePgno(Wal *pWal, u32 iFrame){walFramePgno54183,2044391 -static void walCleanupHash(Wal *pWal){walCleanupHash54203,2045098 -static int walIndexAppend(Wal *pWal, u32 iFrame, u32 iPage){walIndexAppend54265,2047324 -static int walIndexRecover(Wal *pWal){walIndexRecover54354,2050522 -static void walIndexClose(Wal *pWal, int isDelete){walIndexClose54521,2056447 -SQLITE_PRIVATE int sqlite3WalOpen(sqlite3WalOpen54548,2057491 -SQLITE_PRIVATE void sqlite3WalLimit(Wal *pWal, i64 iLimit){sqlite3WalLimit54622,2060054 -static int walIteratorNext(walIteratorNext54636,2060579 -static void walMerge(walMerge54689,2062485 -static void walMergesort(walMergesort54746,2064323 -static void walIteratorFree(WalIterator *p){walIteratorFree54809,2066346 -static int walIteratorInit(Wal *pWal, WalIterator **pp){walIteratorInit54825,2066897 -static int walBusyLock(walBusyLock54907,2069568 -static int walPagesize(Wal *pWal){walPagesize54925,2070194 -static void walRestartHdr(Wal *pWal, u32 salt1){walRestartHdr54946,2071012 -static int walCheckpoint(walCheckpoint54993,2073097 -static void walLimitSize(Wal *pWal, i64 nMax){walLimitSize55174,2080398 -SQLITE_PRIVATE int sqlite3WalClose(sqlite3WalClose55191,2080787 -static int walIndexTryHdr(Wal *pWal, int *pChanged){walIndexTryHdr55270,2083855 -static int walIndexReadHdr(Wal *pWal, int *pChanged){walIndexReadHdr55328,2086056 -#define WAL_RETRY WAL_RETRY55393,2088378 -static int walTryBeginRead(Wal *pWal, int *pChanged, int useWal, int cnt){walTryBeginRead55445,2091369 -SQLITE_PRIVATE int sqlite3WalBeginReadTransaction(Wal *pWal, int *pChanged){sqlite3WalBeginReadTransaction55658,2100492 -SQLITE_PRIVATE void sqlite3WalEndReadTransaction(Wal *pWal){sqlite3WalEndReadTransaction55744,2103907 -SQLITE_PRIVATE int sqlite3WalFindFrame(sqlite3WalFindFrame55760,2104440 -SQLITE_PRIVATE int sqlite3WalReadFrame(sqlite3WalReadFrame55862,2108418 -SQLITE_PRIVATE Pgno sqlite3WalDbsize(Wal *pWal){sqlite3WalDbsize55882,2109120 -SQLITE_PRIVATE int sqlite3WalBeginWriteTransaction(Wal *pWal){sqlite3WalBeginWriteTransaction55903,2109775 -SQLITE_PRIVATE int sqlite3WalEndWriteTransaction(Wal *pWal){sqlite3WalEndWriteTransaction55941,2110776 -SQLITE_PRIVATE int sqlite3WalUndo(Wal *pWal, int (*xUndo)(void *, Pgno), void *pUndoCtx){sqlite3WalUndo55963,2111525 -SQLITE_PRIVATE void sqlite3WalSavepoint(Wal *pWal, u32 *aWalData){sqlite3WalSavepoint56003,2113141 -SQLITE_PRIVATE int sqlite3WalSavepointUndo(Wal *pWal, u32 *aWalData){sqlite3WalSavepointUndo56017,2113640 -static int walRestartLog(Wal *pWal){walRestartLog56054,2114922 -typedef struct WalWriter {WalWriter56101,2116593 - Wal *pWal; /* The complete WAL information */pWal56102,2116620 - Wal *pWal; /* The complete WAL information */WalWriter::pWal56102,2116620 - sqlite3_file *pFd; /* The WAL file to which we write */pFd56103,2116686 - sqlite3_file *pFd; /* The WAL file to which we write */WalWriter::pFd56103,2116686 - sqlite3_int64 iSyncPoint; /* Fsync at this offset */iSyncPoint56104,2116754 - sqlite3_int64 iSyncPoint; /* Fsync at this offset */WalWriter::iSyncPoint56104,2116754 - int syncFlags; /* Flags for the fsync */syncFlags56105,2116812 - int syncFlags; /* Flags for the fsync */WalWriter::syncFlags56105,2116812 - int szPage; /* Size of one page */szPage56106,2116869 - int szPage; /* Size of one page */WalWriter::szPage56106,2116869 -} WalWriter;WalWriter56107,2116923 -static int walWriteToLog(walWriteToLog56117,2117223 -static int walWriteOneFrame(walWriteOneFrame56142,2118086 -static int walRewriteChecksums(Wal *pWal, u32 iLast){walRewriteChecksums56172,2119355 -SQLITE_PRIVATE int sqlite3WalFrames(sqlite3WalFrames56221,2121226 -SQLITE_PRIVATE int sqlite3WalCheckpoint(sqlite3WalCheckpoint56456,2130050 -SQLITE_PRIVATE int sqlite3WalCallback(Wal *pWal){sqlite3WalCallback56565,2134238 -SQLITE_PRIVATE int sqlite3WalExclusiveMode(Wal *pWal, int op){sqlite3WalExclusiveMode56598,2135565 -SQLITE_PRIVATE int sqlite3WalHeapMemory(Wal *pWal){sqlite3WalHeapMemory56640,2136961 -SQLITE_PRIVATE int sqlite3WalSnapshotGet(Wal *pWal, sqlite3_snapshot **ppSnapshot){sqlite3WalSnapshotGet56649,2137268 -SQLITE_PRIVATE void sqlite3WalSnapshotOpen(Wal *pWal, sqlite3_snapshot *pSnapshot){sqlite3WalSnapshotOpen56668,2137748 -SQLITE_API int SQLITE_STDCALL sqlite3_snapshot_cmp(sqlite3_snapshot *p1, sqlite3_snapshot *p2){sqlite3_snapshot_cmp56676,2138025 -SQLITE_PRIVATE int sqlite3WalFramesize(Wal *pWal){sqlite3WalFramesize56696,2138813 -SQLITE_PRIVATE sqlite3_file *sqlite3WalFile(Wal *pWal){sqlite3WalFile56704,2139006 -#define MX_CELL_SIZE(MX_CELL_SIZE56952,2150447 -#define MX_CELL(MX_CELL56959,2150767 -typedef struct MemPage MemPage;MemPage56962,2150838 -typedef struct BtLock BtLock;BtLock56963,2150870 -typedef struct CellInfo CellInfo;CellInfo56964,2150900 -# define SQLITE_FILE_HEADER SQLITE_FILE_HEADER56979,2151592 -#define PTF_INTKEY PTF_INTKEY56986,2151775 -#define PTF_ZERODATA PTF_ZERODATA56987,2151802 -#define PTF_LEAFDATA PTF_LEAFDATA56988,2151829 -#define PTF_LEAF PTF_LEAF56989,2151856 -struct MemPage {MemPage57004,2152491 - u8 isInit; /* True if previously initialized. MUST BE FIRST! */isInit57005,2152508 - u8 isInit; /* True if previously initialized. MUST BE FIRST! */MemPage::isInit57005,2152508 - u8 nOverflow; /* Number of overflow cell bodies in aCell[] */nOverflow57006,2152584 - u8 nOverflow; /* Number of overflow cell bodies in aCell[] */MemPage::nOverflow57006,2152584 - u8 intKey; /* True if table b-trees. False for index b-trees */intKey57007,2152655 - u8 intKey; /* True if table b-trees. False for index b-trees */MemPage::intKey57007,2152655 - u8 intKeyLeaf; /* True if the leaf of an intKey table */intKeyLeaf57008,2152732 - u8 intKeyLeaf; /* True if the leaf of an intKey table */MemPage::intKeyLeaf57008,2152732 - u8 leaf; /* True if a leaf page */leaf57009,2152797 - u8 leaf; /* True if a leaf page */MemPage::leaf57009,2152797 - u8 hdrOffset; /* 100 for page 1. 0 otherwise */hdrOffset57010,2152846 - u8 hdrOffset; /* 100 for page 1. 0 otherwise */MemPage::hdrOffset57010,2152846 - u8 childPtrSize; /* 0 if leaf==1. 4 if leaf==0 */childPtrSize57011,2152904 - u8 childPtrSize; /* 0 if leaf==1. 4 if leaf==0 */MemPage::childPtrSize57011,2152904 - u8 max1bytePayload; /* min(maxLocal,127) */max1bytePayload57012,2152961 - u8 max1bytePayload; /* min(maxLocal,127) */MemPage::max1bytePayload57012,2152961 - u8 bBusy; /* Prevent endless loops on corrupt database files */bBusy57013,2153008 - u8 bBusy; /* Prevent endless loops on corrupt database files */MemPage::bBusy57013,2153008 - u16 maxLocal; /* Copy of BtShared.maxLocal or BtShared.maxLeaf */maxLocal57014,2153085 - u16 maxLocal; /* Copy of BtShared.maxLocal or BtShared.maxLeaf */MemPage::maxLocal57014,2153085 - u16 minLocal; /* Copy of BtShared.minLocal or BtShared.minLeaf */minLocal57015,2153160 - u16 minLocal; /* Copy of BtShared.minLocal or BtShared.minLeaf */MemPage::minLocal57015,2153160 - u16 cellOffset; /* Index in aData of first cell pointer */cellOffset57016,2153235 - u16 cellOffset; /* Index in aData of first cell pointer */MemPage::cellOffset57016,2153235 - u16 nFree; /* Number of free bytes on the page */nFree57017,2153301 - u16 nFree; /* Number of free bytes on the page */MemPage::nFree57017,2153301 - u16 nCell; /* Number of cells on this page, local and ovfl */nCell57018,2153363 - u16 nCell; /* Number of cells on this page, local and ovfl */MemPage::nCell57018,2153363 - u16 maskPage; /* Mask for page offset */maskPage57019,2153437 - u16 maskPage; /* Mask for page offset */MemPage::maskPage57019,2153437 - u16 aiOvfl[5]; /* Insert the i-th overflow cell before the aiOvfl-thaiOvfl57020,2153487 - u16 aiOvfl[5]; /* Insert the i-th overflow cell before the aiOvfl-thMemPage::aiOvfl57020,2153487 - u8 *apOvfl[5]; /* Pointers to the body of overflow cells */apOvfl57022,2153611 - u8 *apOvfl[5]; /* Pointers to the body of overflow cells */MemPage::apOvfl57022,2153611 - BtShared *pBt; /* Pointer to BtShared that this page is part of */pBt57023,2153679 - BtShared *pBt; /* Pointer to BtShared that this page is part of */MemPage::pBt57023,2153679 - u8 *aData; /* Pointer to disk image of the page data */aData57024,2153754 - u8 *aData; /* Pointer to disk image of the page data */MemPage::aData57024,2153754 - u8 *aDataEnd; /* One byte past the end of usable data */aDataEnd57025,2153822 - u8 *aDataEnd; /* One byte past the end of usable data */MemPage::aDataEnd57025,2153822 - u8 *aCellIdx; /* The cell index area */aCellIdx57026,2153888 - u8 *aCellIdx; /* The cell index area */MemPage::aCellIdx57026,2153888 - u8 *aDataOfst; /* Same as aData for leaves. aData+4 for interior */aDataOfst57027,2153937 - u8 *aDataOfst; /* Same as aData for leaves. aData+4 for interior */MemPage::aDataOfst57027,2153937 - DbPage *pDbPage; /* Pager page handle */pDbPage57028,2154014 - DbPage *pDbPage; /* Pager page handle */MemPage::pDbPage57028,2154014 - u16 (*xCellSize)(MemPage*,u8*); /* cellSizePtr method */xCellSize57029,2154061 - u16 (*xCellSize)(MemPage*,u8*); /* cellSizePtr method */MemPage::xCellSize57029,2154061 - void (*xParseCell)(MemPage*,u8*,CellInfo*); /* btreeParseCell method */xParseCell57030,2154132 - void (*xParseCell)(MemPage*,u8*,CellInfo*); /* btreeParseCell method */MemPage::xParseCell57030,2154132 - Pgno pgno; /* Page number for this page */pgno57031,2154206 - Pgno pgno; /* Page number for this page */MemPage::pgno57031,2154206 -#define EXTRA_SIZE EXTRA_SIZE57039,2154449 -struct BtLock {BtLock57048,2154821 - Btree *pBtree; /* Btree handle holding this lock */pBtree57049,2154837 - Btree *pBtree; /* Btree handle holding this lock */BtLock::pBtree57049,2154837 - Pgno iTable; /* Root page of table */iTable57050,2154898 - Pgno iTable; /* Root page of table */BtLock::iTable57050,2154898 - u8 eLock; /* READ_LOCK or WRITE_LOCK */eLock57051,2154947 - u8 eLock; /* READ_LOCK or WRITE_LOCK */BtLock::eLock57051,2154947 - BtLock *pNext; /* Next in BtShared.pLock list */pNext57052,2155001 - BtLock *pNext; /* Next in BtShared.pLock list */BtLock::pNext57052,2155001 -#define READ_LOCK READ_LOCK57056,2155103 -#define WRITE_LOCK WRITE_LOCK57057,2155127 -struct Btree {Btree57080,2156187 - sqlite3 *db; /* The database connection holding this btree */db57081,2156202 - sqlite3 *db; /* The database connection holding this btree */Btree::db57081,2156202 - BtShared *pBt; /* Sharable content of this btree */pBt57082,2156272 - BtShared *pBt; /* Sharable content of this btree */Btree::pBt57082,2156272 - u8 inTrans; /* TRANS_NONE, TRANS_READ or TRANS_WRITE */inTrans57083,2156330 - u8 inTrans; /* TRANS_NONE, TRANS_READ or TRANS_WRITE */Btree::inTrans57083,2156330 - u8 sharable; /* True if we can share pBt with another db */sharable57084,2156395 - u8 sharable; /* True if we can share pBt with another db */Btree::sharable57084,2156395 - u8 locked; /* True if db currently has pBt locked */locked57085,2156463 - u8 locked; /* True if db currently has pBt locked */Btree::locked57085,2156463 - u8 hasIncrblobCur; /* True if there are one or more Incrblob cursors */hasIncrblobCur57086,2156526 - u8 hasIncrblobCur; /* True if there are one or more Incrblob cursors */Btree::hasIncrblobCur57086,2156526 - int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */wantToLock57087,2156600 - int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */Btree::wantToLock57087,2156600 - int nBackup; /* Number of backup operations reading this btree */nBackup57088,2156673 - int nBackup; /* Number of backup operations reading this btree */Btree::nBackup57088,2156673 - u32 iDataVersion; /* Combines with pBt->pPager->iDataVersion */iDataVersion57089,2156747 - u32 iDataVersion; /* Combines with pBt->pPager->iDataVersion */Btree::iDataVersion57089,2156747 - Btree *pNext; /* List of other sharable Btrees from the same db */pNext57090,2156814 - Btree *pNext; /* List of other sharable Btrees from the same db */Btree::pNext57090,2156814 - Btree *pPrev; /* Back pointer of the same list */pPrev57091,2156888 - Btree *pPrev; /* Back pointer of the same list */Btree::pPrev57091,2156888 - BtLock lock; /* Object used to lock page 1 */lock57093,2156978 - BtLock lock; /* Object used to lock page 1 */Btree::lock57093,2156978 -#define TRANS_NONE TRANS_NONE57104,2157310 -#define TRANS_READ TRANS_READ57105,2157332 -#define TRANS_WRITE TRANS_WRITE57106,2157354 -struct BtShared {BtShared57143,2158856 - Pager *pPager; /* The page cache */pPager57144,2158874 - Pager *pPager; /* The page cache */BtShared::pPager57144,2158874 - sqlite3 *db; /* Database connection currently using this Btree */db57145,2158919 - sqlite3 *db; /* Database connection currently using this Btree */BtShared::db57145,2158919 - BtCursor *pCursor; /* A list of all open cursors */pCursor57146,2158996 - BtCursor *pCursor; /* A list of all open cursors */BtShared::pCursor57146,2158996 - MemPage *pPage1; /* First page of the database */pPage157147,2159053 - MemPage *pPage1; /* First page of the database */BtShared::pPage157147,2159053 - u8 openFlags; /* Flags to sqlite3BtreeOpen() */openFlags57148,2159110 - u8 openFlags; /* Flags to sqlite3BtreeOpen() */BtShared::openFlags57148,2159110 - u8 autoVacuum; /* True if auto-vacuum is enabled */autoVacuum57150,2159199 - u8 autoVacuum; /* True if auto-vacuum is enabled */BtShared::autoVacuum57150,2159199 - u8 incrVacuum; /* True if incr-vacuum is enabled */incrVacuum57151,2159260 - u8 incrVacuum; /* True if incr-vacuum is enabled */BtShared::incrVacuum57151,2159260 - u8 bDoTruncate; /* True to truncate db on commit */bDoTruncate57152,2159321 - u8 bDoTruncate; /* True to truncate db on commit */BtShared::bDoTruncate57152,2159321 - u8 inTransaction; /* Transaction state */inTransaction57154,2159388 - u8 inTransaction; /* Transaction state */BtShared::inTransaction57154,2159388 - u8 max1bytePayload; /* Maximum first byte of cell for a 1-byte payload */max1bytePayload57155,2159436 - u8 max1bytePayload; /* Maximum first byte of cell for a 1-byte payload */BtShared::max1bytePayload57155,2159436 - u8 optimalReserve; /* Desired amount of reserved space per page */optimalReserve57157,2159538 - u8 optimalReserve; /* Desired amount of reserved space per page */BtShared::optimalReserve57157,2159538 - u16 btsFlags; /* Boolean parameters. See BTS_* macros below */btsFlags57159,2159617 - u16 btsFlags; /* Boolean parameters. See BTS_* macros below */BtShared::btsFlags57159,2159617 - u16 maxLocal; /* Maximum local payload in non-LEAFDATA tables */maxLocal57160,2159691 - u16 maxLocal; /* Maximum local payload in non-LEAFDATA tables */BtShared::maxLocal57160,2159691 - u16 minLocal; /* Minimum local payload in non-LEAFDATA tables */minLocal57161,2159766 - u16 minLocal; /* Minimum local payload in non-LEAFDATA tables */BtShared::minLocal57161,2159766 - u16 maxLeaf; /* Maximum local payload in a LEAFDATA table */maxLeaf57162,2159841 - u16 maxLeaf; /* Maximum local payload in a LEAFDATA table */BtShared::maxLeaf57162,2159841 - u16 minLeaf; /* Minimum local payload in a LEAFDATA table */minLeaf57163,2159913 - u16 minLeaf; /* Minimum local payload in a LEAFDATA table */BtShared::minLeaf57163,2159913 - u32 pageSize; /* Total number of bytes on a page */pageSize57164,2159985 - u32 pageSize; /* Total number of bytes on a page */BtShared::pageSize57164,2159985 - u32 usableSize; /* Number of usable bytes on each page */usableSize57165,2160047 - u32 usableSize; /* Number of usable bytes on each page */BtShared::usableSize57165,2160047 - int nTransaction; /* Number of open transactions (read + write) */nTransaction57166,2160113 - int nTransaction; /* Number of open transactions (read + write) */BtShared::nTransaction57166,2160113 - u32 nPage; /* Number of pages in the database */nPage57167,2160186 - u32 nPage; /* Number of pages in the database */BtShared::nPage57167,2160186 - void *pSchema; /* Pointer to space allocated by sqlite3BtreeSchema() */pSchema57168,2160248 - void *pSchema; /* Pointer to space allocated by sqlite3BtreeSchema() */BtShared::pSchema57168,2160248 - void (*xFreeSchema)(void*); /* Destructor for BtShared.pSchema */xFreeSchema57169,2160329 - void (*xFreeSchema)(void*); /* Destructor for BtShared.pSchema */BtShared::xFreeSchema57169,2160329 - sqlite3_mutex *mutex; /* Non-recursive mutex required to access this object */mutex57170,2160398 - sqlite3_mutex *mutex; /* Non-recursive mutex required to access this object */BtShared::mutex57170,2160398 - Bitvec *pHasContent; /* Set of pages moved to free-list this transaction */pHasContent57171,2160479 - Bitvec *pHasContent; /* Set of pages moved to free-list this transaction */BtShared::pHasContent57171,2160479 - int nRef; /* Number of references to this structure */nRef57173,2160591 - int nRef; /* Number of references to this structure */BtShared::nRef57173,2160591 - BtShared *pNext; /* Next on a list of sharable BtShared structs */pNext57174,2160660 - BtShared *pNext; /* Next on a list of sharable BtShared structs */BtShared::pNext57174,2160660 - BtLock *pLock; /* List of locks held on this shared-btree struct */pLock57175,2160734 - BtLock *pLock; /* List of locks held on this shared-btree struct */BtShared::pLock57175,2160734 - Btree *pWriter; /* Btree with currently open write transaction */pWriter57176,2160811 - Btree *pWriter; /* Btree with currently open write transaction */BtShared::pWriter57176,2160811 - u8 *pTmpSpace; /* Temp space sufficient to hold a single cell */pTmpSpace57178,2160892 - u8 *pTmpSpace; /* Temp space sufficient to hold a single cell */BtShared::pTmpSpace57178,2160892 -#define BTS_READ_ONLY BTS_READ_ONLY57184,2161016 -#define BTS_PAGESIZE_FIXED BTS_PAGESIZE_FIXED57185,2161088 -#define BTS_SECURE_DELETE BTS_SECURE_DELETE57186,2161167 -#define BTS_INITIALLY_EMPTY BTS_INITIALLY_EMPTY57187,2161243 -#define BTS_NO_WAL BTS_NO_WAL57188,2161321 -#define BTS_EXCLUSIVE BTS_EXCLUSIVE57189,2161399 -#define BTS_PENDING BTS_PENDING57190,2161473 -struct CellInfo {CellInfo57197,2161752 - i64 nKey; /* The key for INTKEY tables, or nPayload otherwise */nKey57198,2161770 - i64 nKey; /* The key for INTKEY tables, or nPayload otherwise */CellInfo::nKey57198,2161770 - u8 *pPayload; /* Pointer to the start of payload */pPayload57199,2161842 - u8 *pPayload; /* Pointer to the start of payload */CellInfo::pPayload57199,2161842 - u32 nPayload; /* Bytes of payload */nPayload57200,2161897 - u32 nPayload; /* Bytes of payload */CellInfo::nPayload57200,2161897 - u16 nLocal; /* Amount of payload held locally, not on overflow */nLocal57201,2161937 - u16 nLocal; /* Amount of payload held locally, not on overflow */CellInfo::nLocal57201,2161937 - u16 nSize; /* Size of the cell content on the main b-tree page */nSize57202,2162008 - u16 nSize; /* Size of the cell content on the main b-tree page */CellInfo::nSize57202,2162008 -#define BTCURSOR_MAX_DEPTH BTCURSOR_MAX_DEPTH57214,2162462 -struct BtCursor {BtCursor57235,2163259 - Btree *pBtree; /* The Btree to which this cursor belongs */pBtree57236,2163277 - Btree *pBtree; /* The Btree to which this cursor belongs */BtCursor::pBtree57236,2163277 - BtShared *pBt; /* The BtShared this cursor points to */pBt57237,2163350 - BtShared *pBt; /* The BtShared this cursor points to */BtCursor::pBt57237,2163350 - BtCursor *pNext; /* Forms a linked list of all cursors */pNext57238,2163419 - BtCursor *pNext; /* Forms a linked list of all cursors */BtCursor::pNext57238,2163419 - Pgno *aOverflow; /* Cache of overflow page locations */aOverflow57239,2163488 - Pgno *aOverflow; /* Cache of overflow page locations */BtCursor::aOverflow57239,2163488 - CellInfo info; /* A parse of the cell we are pointing at */info57240,2163555 - CellInfo info; /* A parse of the cell we are pointing at */BtCursor::info57240,2163555 - i64 nKey; /* Size of pKey, or last integer key */nKey57241,2163628 - i64 nKey; /* Size of pKey, or last integer key */BtCursor::nKey57241,2163628 - void *pKey; /* Saved key that was cursor last known position */pKey57242,2163696 - void *pKey; /* Saved key that was cursor last known position */BtCursor::pKey57242,2163696 - Pgno pgnoRoot; /* The root page of this tree */pgnoRoot57243,2163776 - Pgno pgnoRoot; /* The root page of this tree */BtCursor::pgnoRoot57243,2163776 - int nOvflAlloc; /* Allocated size of aOverflow[] array */nOvflAlloc57244,2163837 - int nOvflAlloc; /* Allocated size of aOverflow[] array */BtCursor::nOvflAlloc57244,2163837 - int skipNext; /* Prev() is noop if negative. Next() is noop if positive.skipNext57245,2163907 - int skipNext; /* Prev() is noop if negative. Next() is noop if positive.BtCursor::skipNext57245,2163907 - u8 curFlags; /* zero or more BTCF_* flags defined below */curFlags57247,2164045 - u8 curFlags; /* zero or more BTCF_* flags defined below */BtCursor::curFlags57247,2164045 - u8 curPagerFlags; /* Flags to send to sqlite3PagerGet() */curPagerFlags57248,2164119 - u8 curPagerFlags; /* Flags to send to sqlite3PagerGet() */BtCursor::curPagerFlags57248,2164119 - u8 eState; /* One of the CURSOR_XXX constants (see below) */eState57249,2164188 - u8 eState; /* One of the CURSOR_XXX constants (see below) */BtCursor::eState57249,2164188 - u8 hints; /* As configured by CursorSetHints() */hints57250,2164266 - u8 hints; /* As configured by CursorSetHints() */BtCursor::hints57250,2164266 - i8 iPage; /* Index of current page in apPage */iPage57254,2164491 - i8 iPage; /* Index of current page in apPage */BtCursor::iPage57254,2164491 - u8 curIntKey; /* Value of apPage[0]->intKey */curIntKey57255,2164557 - u8 curIntKey; /* Value of apPage[0]->intKey */BtCursor::curIntKey57255,2164557 - struct KeyInfo *pKeyInfo; /* Argument passed to comparison function */pKeyInfo57256,2164618 - struct KeyInfo *pKeyInfo; /* Argument passed to comparison function */BtCursor::pKeyInfo57256,2164618 - void *padding1; /* Make object size a multiple of 16 */padding157257,2164691 - void *padding1; /* Make object size a multiple of 16 */BtCursor::padding157257,2164691 - u16 aiIdx[BTCURSOR_MAX_DEPTH]; /* Current index in apPage[i] */aiIdx57258,2164759 - u16 aiIdx[BTCURSOR_MAX_DEPTH]; /* Current index in apPage[i] */BtCursor::aiIdx57258,2164759 - MemPage *apPage[BTCURSOR_MAX_DEPTH]; /* Pages from root to current page */apPage57259,2164832 - MemPage *apPage[BTCURSOR_MAX_DEPTH]; /* Pages from root to current page */BtCursor::apPage57259,2164832 -#define BTCF_WriteFlag BTCF_WriteFlag57265,2164958 -#define BTCF_ValidNKey BTCF_ValidNKey57266,2165020 -#define BTCF_ValidOvfl BTCF_ValidOvfl57267,2165086 -#define BTCF_AtLast BTCF_AtLast57268,2165152 -#define BTCF_Incrblob BTCF_Incrblob57269,2165228 -#define BTCF_Multiple BTCF_Multiple57270,2165301 -#define CURSOR_INVALID CURSOR_INVALID57302,2166635 -#define CURSOR_VALID CURSOR_VALID57303,2166670 -#define CURSOR_SKIPNEXT CURSOR_SKIPNEXT57304,2166705 -#define CURSOR_REQUIRESEEK CURSOR_REQUIRESEEK57305,2166740 -#define CURSOR_FAULT CURSOR_FAULT57306,2166775 -# define PENDING_BYTE_PAGE(PENDING_BYTE_PAGE57311,2166891 -#define PTRMAP_PAGENO(PTRMAP_PAGENO57328,2167613 -#define PTRMAP_PTROFFSET(PTRMAP_PTROFFSET57329,2167670 -#define PTRMAP_ISPAGE(PTRMAP_ISPAGE57330,2167733 -#define PTRMAP_ROOTPAGE PTRMAP_ROOTPAGE57363,2169429 -#define PTRMAP_FREEPAGE PTRMAP_FREEPAGE57364,2169455 -#define PTRMAP_OVERFLOW1 PTRMAP_OVERFLOW157365,2169481 -#define PTRMAP_OVERFLOW2 PTRMAP_OVERFLOW257366,2169508 -#define PTRMAP_BTREE PTRMAP_BTREE57367,2169535 -#define btreeIntegrity(btreeIntegrity57372,2169693 -#define ISAUTOVACUUM ISAUTOVACUUM57385,2170196 -#define ISAUTOVACUUM ISAUTOVACUUM57387,2170241 -typedef struct IntegrityCk IntegrityCk;IntegrityCk57401,2170737 -struct IntegrityCk {IntegrityCk57402,2170777 - BtShared *pBt; /* The tree being checked out */pBt57403,2170798 - BtShared *pBt; /* The tree being checked out */IntegrityCk::pBt57403,2170798 - Pager *pPager; /* The associated pager. Also accessible by pBt->pPager */pPager57404,2170851 - Pager *pPager; /* The associated pager. Also accessible by pBt->pPager */IntegrityCk::pPager57404,2170851 - u8 *aPgRef; /* 1 bit per page in the db (see above) */aPgRef57405,2170931 - u8 *aPgRef; /* 1 bit per page in the db (see above) */IntegrityCk::aPgRef57405,2170931 - Pgno nPage; /* Number of pages in the database */nPage57406,2170994 - Pgno nPage; /* Number of pages in the database */IntegrityCk::nPage57406,2170994 - int mxErr; /* Stop accumulating errors when this reaches zero */mxErr57407,2171052 - int mxErr; /* Stop accumulating errors when this reaches zero */IntegrityCk::mxErr57407,2171052 - int nErr; /* Number of messages written to zErrMsg so far */nErr57408,2171126 - int nErr; /* Number of messages written to zErrMsg so far */IntegrityCk::nErr57408,2171126 - int mallocFailed; /* A memory allocation error has occurred */mallocFailed57409,2171197 - int mallocFailed; /* A memory allocation error has occurred */IntegrityCk::mallocFailed57409,2171197 - const char *zPfx; /* Error message prefix */zPfx57410,2171262 - const char *zPfx; /* Error message prefix */IntegrityCk::zPfx57410,2171262 - int v1, v2; /* Values for up to two %d fields in zPfx */v157411,2171309 - int v1, v2; /* Values for up to two %d fields in zPfx */IntegrityCk::v157411,2171309 - int v1, v2; /* Values for up to two %d fields in zPfx */v257411,2171309 - int v1, v2; /* Values for up to two %d fields in zPfx */IntegrityCk::v257411,2171309 - StrAccum errMsg; /* Accumulate the error message text here */errMsg57412,2171374 - StrAccum errMsg; /* Accumulate the error message text here */IntegrityCk::errMsg57412,2171374 - u32 *heap; /* Min-heap used for analyzing cell coverage */heap57413,2171439 - u32 *heap; /* Min-heap used for analyzing cell coverage */IntegrityCk::heap57413,2171439 -#define get2byte(get2byte57419,2171594 -#define put2byte(put2byte57420,2171637 -#define get4byte get4byte57421,2171701 -#define put4byte put4byte57422,2171734 -# define get2byteAligned(get2byteAligned57430,2171990 -# define get2byteAligned(get2byteAligned57433,2172129 -# define get2byteAligned(get2byteAligned57436,2172300 -# define get2byteAligned(get2byteAligned57438,2172364 -static void lockBtreeMutex(Btree *p){lockBtreeMutex57451,2172810 -static void SQLITE_NOINLINE unlockBtreeMutex(Btree *p){unlockBtreeMutex57465,2173155 -SQLITE_PRIVATE void sqlite3BtreeEnter(Btree *p){sqlite3BtreeEnter57495,2174252 -static void SQLITE_NOINLINE btreeLockCarefully(Btree *p){btreeLockCarefully57529,2175612 -SQLITE_PRIVATE void sqlite3BtreeLeave(Btree *p){sqlite3BtreeLeave57567,2176658 -SQLITE_PRIVATE int sqlite3BtreeHoldsMutex(Btree *p){sqlite3BtreeHoldsMutex57585,2177086 -SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3 *db){sqlite3BtreeEnterAll57610,2178040 -SQLITE_PRIVATE void sqlite3BtreeLeaveAll(sqlite3 *db){sqlite3BtreeLeaveAll57619,2178251 -SQLITE_PRIVATE int sqlite3BtreeHoldsAllMutexes(sqlite3 *db){sqlite3BtreeHoldsAllMutexes57636,2178655 -SQLITE_PRIVATE int sqlite3SchemaMutexHeld(sqlite3 *db, int iDb, Schema *pSchema){sqlite3SchemaMutexHeld57665,2179364 -SQLITE_PRIVATE void sqlite3BtreeEnter(Btree *p){sqlite3BtreeEnter57689,2180206 -SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3 *db){sqlite3BtreeEnterAll57692,2180279 -SQLITE_PRIVATE void sqlite3BtreeEnterCursor(BtCursor *pCur){sqlite3BtreeEnterCursor57711,2180819 -SQLITE_PRIVATE void sqlite3BtreeLeaveCursor(BtCursor *pCur){sqlite3BtreeLeaveCursor57715,2180940 -static const char zMagicHeader[] = SQLITE_FILE_HEADER;zMagicHeader57746,2181996 -# define TRACE(TRACE57756,2182269 -#define get2byteNotZero(get2byteNotZero57768,2182703 -#define BTALLOC_ANY BTALLOC_ANY57773,2182834 -#define BTALLOC_EXACT BTALLOC_EXACT57774,2182892 -#define BTALLOC_LE BTALLOC_LE57775,2182964 -#define IfNotOmitAV(IfNotOmitAV57784,2183245 -#define IfNotOmitAV(IfNotOmitAV57786,2183284 -SQLITE_PRIVATE BtShared *SQLITE_WSD sqlite3SharedCacheList = 0;sqlite3SharedCacheList57799,2183675 -static BtShared *SQLITE_WSD sqlite3SharedCacheList = 0;sqlite3SharedCacheList57801,2183745 -SQLITE_API int SQLITE_STDCALL sqlite3_enable_shared_cache(int enable){sqlite3_enable_shared_cache57813,2184128 - #define querySharedCacheTableLock(querySharedCacheTableLock57831,2184778 - #define setSharedCacheTableLock(setSharedCacheTableLock57832,2184831 - #define clearAllSharedCacheTableLocks(clearAllSharedCacheTableLocks57833,2184882 - #define downgradeAllSharedCacheTableLocks(downgradeAllSharedCacheTableLocks57834,2184925 - #define hasSharedCacheTableLock(hasSharedCacheTableLock57835,2184972 - #define hasReadConflicts(hasReadConflicts57836,2185017 -static int hasSharedCacheTableLock(hasSharedCacheTableLock57864,2186075 -static int hasReadConflicts(Btree *pBtree, Pgno iRoot){hasReadConflicts57951,2189149 -static int querySharedCacheTableLock(Btree *p, Pgno iTab, u8 eLock){querySharedCacheTableLock57971,2189715 -static int setSharedCacheTableLock(Btree *p, Pgno iTable, u8 eLock){setSharedCacheTableLock58043,2192360 -static void clearAllSharedCacheTableLocks(Btree *p){clearAllSharedCacheTableLocks58107,2194503 -static void downgradeAllSharedCacheTableLocks(Btree *p){downgradeAllSharedCacheTableLocks58151,2195906 -static int cursorHoldsMutex(BtCursor *p){cursorHoldsMutex58174,2196515 -static int cursorOwnsBtShared(BtCursor *p){cursorOwnsBtShared58177,2196603 -#define invalidateOverflowCache(invalidateOverflowCache58187,2196849 -static void invalidateAllOverflowCache(BtShared *pBt){invalidateAllOverflowCache58193,2197034 -static void invalidateIncrblobCursors(invalidateIncrblobCursors58215,2197836 - #define invalidateIncrblobCursors(invalidateIncrblobCursors58236,2198482 -static int btreeSetHasContent(BtShared *pBt, Pgno pgno){btreeSetHasContent58274,2200340 -static int btreeGetHasContent(BtShared *pBt, Pgno pgno){btreeGetHasContent58296,2201015 -static void btreeClearHasContent(BtShared *pBt){btreeClearHasContent58305,2201311 -static void btreeReleaseAllCursorPages(BtCursor *pCur){btreeReleaseAllCursorPages58313,2201486 -static int saveCursorKey(BtCursor *pCur){saveCursorKey58335,2202274 -static int saveCursorPosition(BtCursor *pCur){saveCursorPosition58373,2203461 -static int saveAllCursors(BtShared *pBt, Pgno iRoot, BtCursor *pExcept){saveAllCursors58420,2205173 -static int SQLITE_NOINLINE saveCursorsOnList(saveCursorsOnList58437,2205888 -SQLITE_PRIVATE void sqlite3BtreeClearCursor(BtCursor *pCur){sqlite3BtreeClearCursor58462,2206563 -static int btreeMoveto(btreeMoveto58474,2206940 -static int btreeRestoreCursorPosition(BtCursor *pCur){btreeRestoreCursorPosition58514,2208378 -#define restoreCursorPosition(restoreCursorPosition58536,2209006 -SQLITE_PRIVATE int sqlite3BtreeCursorHasMoved(BtCursor *pCur){sqlite3BtreeCursorHasMoved58553,2209653 -SQLITE_PRIVATE int sqlite3BtreeCursorRestore(BtCursor *pCur, int *pDifferentRow){sqlite3BtreeCursorRestore58570,2210323 -SQLITE_PRIVATE void sqlite3BtreeCursorHint(BtCursor *pCur, int eHintType, ...){sqlite3BtreeCursorHint58595,2210981 -SQLITE_PRIVATE void sqlite3BtreeCursorHintFlags(BtCursor *pCur, unsigned x){sqlite3BtreeCursorHintFlags58603,2211183 -static Pgno ptrmapPageno(BtShared *pBt, Pgno pgno){ptrmapPageno58619,2211704 -static void ptrmapPut(BtShared *pBt, Pgno key, u8 eType, Pgno parent, int *pRC){ptrmapPut58643,2212404 -static int ptrmapGet(BtShared *pBt, Pgno key, u8 *pEType, Pgno *pPgno){ptrmapGet58695,2214009 - #define ptrmapPut(ptrmapPut58727,2214960 - #define ptrmapGet(ptrmapGet58728,2214992 - #define ptrmapPutOvflPtr(ptrmapPutOvflPtr58729,2215031 -#define findCell(findCell58742,2215454 -#define findCellPastPtr(findCellPastPtr58744,2215552 -static SQLITE_NOINLINE void btreeParseCellAdjustSizeForOverflow(btreeParseCellAdjustSizeForOverflow58754,2215894 -static void btreeParseCellPtrNoPayload(btreeParseCellPtrNoPayload58799,2217663 -static void btreeParseCellPtr(btreeParseCellPtr58816,2218188 -static void btreeParseCellPtrIndex(btreeParseCellPtrIndex58884,2220110 -static void btreeParseCell(btreeParseCell58921,2221361 -static u16 cellSizePtr(MemPage *pPage, u8 *pCell){cellSizePtr58941,2222091 -static u16 cellSizePtrNoPayload(MemPage *pPage, u8 *pCell){cellSizePtrNoPayload58989,2223767 -static u16 cellSize(MemPage *pPage, int iCell){cellSize59015,2224650 -static void ptrmapPutOvflPtr(MemPage *pPage, u8 *pCell, int *pRC){ptrmapPutOvflPtr59026,2224950 -static int defragmentPage(MemPage *pPage){defragmentPage59050,2225780 -static u8 *pageFindSlot(MemPage *pPg, int nByte, int *pRc){pageFindSlot59140,2229051 -static int allocateSpace(MemPage *pPage, int nByte, int *pIdx){allocateSpace59203,2231358 -static int freeSpace(MemPage *pPage, u16 iStart, u16 iSize){freeSpace59293,2234830 -static int decodeFlags(MemPage *pPage, int flagByte){decodeFlags59392,2238630 -static int btreeInitPage(MemPage *pPage){btreeInitPage59450,2240804 -static void zeroPage(MemPage *pPage, int flags){zeroPage59581,2246117 -static MemPage *btreePageFromDbPage(DbPage *pDbPage, Pgno pgno, BtShared *pBt){btreePageFromDbPage59618,2247324 -static int btreeGetPage(btreeGetPage59642,2248266 -static MemPage *btreePageLookup(BtShared *pBt, Pgno pgno){btreePageLookup59664,2249034 -static Pgno btreePagecount(BtShared *pBt){btreePagecount59678,2249412 -SQLITE_PRIVATE u32 sqlite3BtreeLastPage(Btree *p){sqlite3BtreeLastPage59681,2249478 -static int getAndInitPage(getAndInitPage59700,2250124 -static void releasePageNotNull(MemPage *pPage){releasePageNotNull59754,2251819 -static void releasePage(MemPage *pPage){releasePage59763,2252174 -static int btreeGetUnusedPage(btreeGetUnusedPage59776,2252524 -static void pageReinit(DbPage *pData){pageReinit59805,2253413 -static int btreeInvokeBusyHandler(void *pArg){btreeInvokeBusyHandler59827,2254210 -SQLITE_PRIVATE int sqlite3BtreeOpen(sqlite3BtreeOpen59855,2255319 -static int removeFromSharingList(BtShared *pBt){removeFromSharingList60139,2265282 -static void allocateTempSpace(BtShared *pBt){allocateTempSpace60178,2266293 -static void freeTempSpace(BtShared *pBt){freeTempSpace60207,2267442 -SQLITE_PRIVATE int sqlite3BtreeClose(Btree *p){sqlite3BtreeClose60218,2267661 -SQLITE_PRIVATE int sqlite3BtreeSetCacheSize(Btree *p, int mxPage){sqlite3BtreeSetCacheSize60280,2269497 -SQLITE_PRIVATE int sqlite3BtreeSetSpillSize(Btree *p, int mxPage){sqlite3BtreeSetSpillSize60299,2270199 -SQLITE_PRIVATE int sqlite3BtreeSetMmapLimit(Btree *p, sqlite3_int64 szMmap){sqlite3BtreeSetMmapLimit60314,2270587 -SQLITE_PRIVATE int sqlite3BtreeSetPagerFlags(sqlite3BtreeSetPagerFlags60333,2271372 -SQLITE_PRIVATE int sqlite3BtreeSetPageSize(Btree *p, int pageSize, int nReserve, int iFix){sqlite3BtreeSetPageSize60366,2272569 -SQLITE_PRIVATE int sqlite3BtreeGetPageSize(Btree *p){sqlite3BtreeGetPageSize60399,2273573 -SQLITE_PRIVATE int sqlite3BtreeGetReserveNoMutex(Btree *p){sqlite3BtreeGetReserveNoMutex60414,2274173 -SQLITE_PRIVATE int sqlite3BtreeGetOptimalReserve(Btree *p){sqlite3BtreeGetOptimalReserve60430,2274681 -SQLITE_PRIVATE int sqlite3BtreeMaxPageCount(Btree *p, int mxPage){sqlite3BtreeMaxPageCount60447,2275140 -SQLITE_PRIVATE int sqlite3BtreeSecureDelete(Btree *p, int newFlag){sqlite3BtreeSecureDelete60460,2275520 -SQLITE_PRIVATE int sqlite3BtreeSetAutoVacuum(Btree *p, int autoVacuum){sqlite3BtreeSetAutoVacuum60479,2276131 -SQLITE_PRIVATE int sqlite3BtreeGetAutoVacuum(Btree *p){sqlite3BtreeGetAutoVacuum60503,2276709 -static int lockBtree(BtShared *pBt){lockBtree60529,2277396 -static int countValidCursors(BtShared *pBt, int wrOnly){countValidCursors60724,2284469 -static void unlockBtreeIfUnused(BtShared *pBt){unlockBtreeIfUnused60743,2285059 -static int newDatabase(BtShared *pBt){newDatabase60760,2285608 -SQLITE_PRIVATE int sqlite3BtreeNewDb(Btree *p){sqlite3BtreeNewDb60804,2286928 -SQLITE_PRIVATE int sqlite3BtreeBeginTrans(Btree *p, int wrflag){sqlite3BtreeBeginTrans60848,2288787 -static int setChildPtrmaps(MemPage *pPage){setChildPtrmaps60995,2293467 -static int modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType){modifyPagePointer61045,2294986 -static int relocatePage(relocatePage61107,2296727 -static int incrVacuumStep(BtShared *pBt, Pgno nFin, Pgno iLastPg, int bCommit){incrVacuumStep61200,2300135 -static Pgno finalDbSize(BtShared *pBt, Pgno nOrig, Pgno nFree){finalDbSize61296,2303068 -SQLITE_PRIVATE int sqlite3BtreeIncrVacuum(Btree *p){sqlite3BtreeIncrVacuum61322,2304006 -static int autoVacuumCommit(BtShared *pBt){autoVacuumCommit61364,2305227 -# define setChildPtrmaps(setChildPtrmaps61414,2306924 -SQLITE_PRIVATE int sqlite3BtreeCommitPhaseOne(Btree *p, const char *zMaster){sqlite3BtreeCommitPhaseOne61443,2308332 -static void btreeEndTransaction(Btree *p){btreeEndTransaction61470,2309032 -SQLITE_PRIVATE int sqlite3BtreeCommitPhaseTwo(Btree *p, int bCleanup){sqlite3BtreeCommitPhaseTwo61532,2311652 -SQLITE_PRIVATE int sqlite3BtreeCommit(Btree *p){sqlite3BtreeCommit61564,2312504 -SQLITE_PRIVATE int sqlite3BtreeTripAllCursors(Btree *pBtree, int errCode, int writeOnly){sqlite3BtreeTripAllCursors61601,2313987 -SQLITE_PRIVATE int sqlite3BtreeRollback(Btree *p, int tripCode, int writeOnly){sqlite3BtreeRollback61644,2315299 -SQLITE_PRIVATE int sqlite3BtreeBeginStmt(Btree *p, int iStatement){sqlite3BtreeBeginStmt61713,2317743 -SQLITE_PRIVATE int sqlite3BtreeSavepoint(Btree *p, int op, int iSavepoint){sqlite3BtreeSavepoint61744,2319013 -static int btreeCursor(btreeCursor61811,2321980 -SQLITE_PRIVATE int sqlite3BtreeCursor(sqlite3BtreeCursor61871,2324240 -SQLITE_PRIVATE int sqlite3BtreeCursorSize(void){sqlite3BtreeCursorSize61897,2325133 -SQLITE_PRIVATE void sqlite3BtreeCursorZero(BtCursor *p){sqlite3BtreeCursorZero61909,2325565 -SQLITE_PRIVATE int sqlite3BtreeCloseCursor(BtCursor *pCur){sqlite3BtreeCloseCursor61917,2325776 - static void assertCellInfo(BtCursor *pCur){assertCellInfo61957,2326861 - #define assertCellInfo(assertCellInfo61965,2327142 -static SQLITE_NOINLINE void getCellInfo(BtCursor *pCur){getCellInfo61967,2327177 -SQLITE_PRIVATE int sqlite3BtreeCursorIsValid(BtCursor *pCur){sqlite3BtreeCursorIsValid61983,2327734 -SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor *pCur, i64 *pSize){sqlite3BtreeKeySize62000,2328304 -SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor *pCur, u32 *pSize){sqlite3BtreeDataSize62020,2329020 -static int getOverflowPage(getOverflowPage62050,2330316 -static int copyPayload(copyPayload62118,2332349 -static int accessPayload(accessPayload62169,2334344 -SQLITE_PRIVATE int sqlite3BtreeKey(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){sqlite3BtreeKey62380,2341971 -SQLITE_PRIVATE int sqlite3BtreeData(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){sqlite3BtreeData62397,2342641 -static const void *fetchPayload(fetchPayload62436,2344149 -SQLITE_PRIVATE const void *sqlite3BtreeKeyFetch(BtCursor *pCur, u32 *pAmt){sqlite3BtreeKeyFetch62470,2345563 -SQLITE_PRIVATE const void *sqlite3BtreeDataFetch(BtCursor *pCur, u32 *pAmt){sqlite3BtreeDataFetch62473,2345676 -static int moveToChild(BtCursor *pCur, u32 newPgno){moveToChild62487,2346154 -static void assertParentIndex(MemPage *pParent, int iIdx, Pgno iChild){assertParentIndex62513,2347024 -# define assertParentIndex(assertParentIndex62524,2347442 -static void moveToParent(BtCursor *pCur){moveToParent62535,2347754 -static int moveToRoot(BtCursor *pCur){moveToRoot62572,2349341 -static int moveToLeftmost(BtCursor *pCur){moveToLeftmost62650,2351848 -static int moveToRightmost(BtCursor *pCur){moveToRightmost62675,2352694 -SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){sqlite3BtreeFirst62698,2353434 -SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){sqlite3BtreeLast62721,2354113 -SQLITE_PRIVATE int sqlite3BtreeMovetoUnpacked(sqlite3BtreeMovetoUnpacked62792,2356557 -SQLITE_PRIVATE int sqlite3BtreeEof(BtCursor *pCur){sqlite3BtreeEof63016,2364748 -static SQLITE_NOINLINE int btreeNext(BtCursor *pCur, int *pRes){btreeNext63045,2366149 -SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int *pRes){sqlite3BtreeNext63112,2368026 -static SQLITE_NOINLINE int btreePrevious(BtCursor *pCur, int *pRes){btreePrevious63155,2369801 -SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int *pRes){sqlite3BtreePrevious63214,2371394 -static int allocateBtreePage(allocateBtreePage63254,2373000 -static int freePage2(BtShared *pBt, MemPage *pMemPage, Pgno iPage){freePage263576,2384873 -static void freePage(MemPage *pPage, int *pRC){freePage63704,2389869 -static int clearCell(clearCell63715,2390179 -static int fillInCell(fillInCell63796,2393103 -static void dropCell(MemPage *pPage, int idx, int sz, int *pRC){dropCell63984,2399167 -static void insertCell(insertCell64038,2401049 -typedef struct CellArray CellArray;CellArray64129,2404753 -struct CellArray {CellArray64130,2404789 - int nCell; /* Number of cells in apCell[] */nCell64131,2404808 - int nCell; /* Number of cells in apCell[] */CellArray::nCell64131,2404808 - MemPage *pRef; /* Reference page */pRef64132,2404868 - MemPage *pRef; /* Reference page */CellArray::pRef64132,2404868 - u8 **apCell; /* All cells begin balanced */apCell64133,2404915 - u8 **apCell; /* All cells begin balanced */CellArray::apCell64133,2404915 - u16 *szCell; /* Local size of all cells in apCell[] */szCell64134,2404972 - u16 *szCell; /* Local size of all cells in apCell[] */CellArray::szCell64134,2404972 -static void populateCellCache(CellArray *p, int idx, int N){populateCellCache64141,2405129 -static SQLITE_NOINLINE u16 computeCellSize(CellArray *p, int N){computeCellSize64159,2405586 -static u16 cachedCellSize(CellArray *p, int N){cachedCellSize64165,2405797 -static int rebuildPage(rebuildPage64184,2406509 -static int pageInsertArray(pageInsertArray64253,2409289 -static int pageFreeArray(pageFreeArray64299,2411112 -static int editPage(editPage64356,2412966 -#define NN NN64462,2416541 -#define NB NB64463,2416616 -static int balance_quick(MemPage *pParent, MemPage *pPage, u8 *pSpace){balance_quick64490,2417800 -static void copyNodeContent(MemPage *pFrom, MemPage *pTo, int *pRC){copyNodeContent64632,2423176 -static int balance_nonroot(balance_nonroot64713,2426664 -static int balance_deeper(MemPage *pRoot, MemPage **ppChild){balance_deeper65477,2455552 -static int balance(BtCursor *pCur){balance65534,2457560 -SQLITE_PRIVATE int sqlite3BtreeInsert(sqlite3BtreeInsert65673,2463355 -SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor *pCur, u8 flags){sqlite3BtreeDelete65840,2470270 -static int btreeCreateTable(Btree *p, int *piTable, int createTabFlags){btreeCreateTable66003,2476933 -SQLITE_PRIVATE int sqlite3BtreeCreateTable(Btree *p, int *piTable, int flags){sqlite3BtreeCreateTable66146,2481520 -static int clearDatabasePage(clearDatabasePage66158,2481815 -SQLITE_PRIVATE int sqlite3BtreeClearTable(Btree *p, int iTable, int *pnChange){sqlite3BtreeClearTable66225,2483849 -SQLITE_PRIVATE int sqlite3BtreeClearTableOfCursor(BtCursor *pCur){sqlite3BtreeClearTableOfCursor66249,2484550 -static int btreeDropTable(Btree *p, Pgno iTable, int *piMoved){btreeDropTable66273,2485671 -SQLITE_PRIVATE int sqlite3BtreeDropTable(Btree *p, int iTable, int *piMoved){sqlite3BtreeDropTable66375,2488541 -SQLITE_PRIVATE void sqlite3BtreeGetMeta(Btree *p, int idx, u32 *pMeta){sqlite3BtreeGetMeta66404,2489732 -SQLITE_PRIVATE int sqlite3BtreeUpdateMeta(Btree *p, int idx, u32 iMeta){sqlite3BtreeUpdateMeta66434,2490580 -SQLITE_PRIVATE int sqlite3BtreeCount(BtCursor *pCur, i64 *pnEntry){sqlite3BtreeCount66467,2491581 -SQLITE_PRIVATE Pager *sqlite3BtreePager(Btree *p){sqlite3BtreePager66537,2493970 -static void checkAppendMsg(checkAppendMsg66545,2494140 -static int getPageReferenced(IntegrityCk *pCheck, Pgno iPg){getPageReferenced66575,2494863 -static void setPageReferenced(IntegrityCk *pCheck, Pgno iPg){setPageReferenced66583,2495132 -static int checkRef(IntegrityCk *pCheck, Pgno iPage){checkRef66597,2495620 -static void checkPtrmap(checkPtrmap66617,2496173 -static void checkList(checkList66646,2497085 -static void btreeHeapInsert(u32 *aHeap, u32 x){btreeHeapInsert66738,2500269 -static int btreeHeapPull(u32 *aHeap, u32 *pOut){btreeHeapPull66748,2500481 -static int checkTreePage(checkTreePage66782,2501442 -SQLITE_PRIVATE char *sqlite3BtreeIntegrityCheck(sqlite3BtreeIntegrityCheck67046,2511552 -SQLITE_PRIVATE const char *sqlite3BtreeGetFilename(Btree *p){sqlite3BtreeGetFilename67165,2515246 -SQLITE_PRIVATE const char *sqlite3BtreeGetJournalname(Btree *p){sqlite3BtreeGetJournalname67178,2515705 -SQLITE_PRIVATE int sqlite3BtreeIsInTrans(Btree *p){sqlite3BtreeIsInTrans67186,2515907 -SQLITE_PRIVATE int sqlite3BtreeCheckpoint(Btree *p, int eMode, int *pnLog, int *pnCkpt){sqlite3BtreeCheckpoint67200,2516371 -SQLITE_PRIVATE int sqlite3BtreeIsInReadTrans(Btree *p){sqlite3BtreeIsInReadTrans67219,2516824 -SQLITE_PRIVATE int sqlite3BtreeIsInBackup(Btree *p){sqlite3BtreeIsInBackup67225,2516977 -SQLITE_PRIVATE void *sqlite3BtreeSchema(Btree *p, int nBytes, void(*xFree)(void *)){sqlite3BtreeSchema67251,2518117 -SQLITE_PRIVATE int sqlite3BtreeSchemaLocked(Btree *p){sqlite3BtreeSchemaLocked67267,2518607 -SQLITE_PRIVATE int sqlite3BtreeLockTable(Btree *p, int iTab, u8 isWriteLock){sqlite3BtreeLockTable67284,2519084 -SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor *pCsr, u32 offset, u32 amt, void *z){sqlite3BtreePutData67314,2520090 -SQLITE_PRIVATE void sqlite3BtreeIncrblobCursor(BtCursor *pCur){sqlite3BtreeIncrblobCursor67362,2521849 -SQLITE_PRIVATE int sqlite3BtreeSetVersion(Btree *pBtree, int iVersion){sqlite3BtreeSetVersion67373,2522165 -SQLITE_PRIVATE int sqlite3BtreeCursorHasHint(BtCursor *pCsr, unsigned int mask){sqlite3BtreeCursorHasHint67408,2523180 -SQLITE_PRIVATE int sqlite3BtreeIsReadonly(Btree *p){sqlite3BtreeIsReadonly67415,2523352 -SQLITE_PRIVATE int sqlite3HeaderSizeBtree(void){ return ROUND8(sizeof(MemPage)); }sqlite3HeaderSizeBtree67422,2523530 -SQLITE_PRIVATE int sqlite3BtreeSharable(Btree *p){sqlite3BtreeSharable67428,2523728 -struct sqlite3_backup {sqlite3_backup67455,2524574 - sqlite3* pDestDb; /* Destination database handle */pDestDb67456,2524598 - sqlite3* pDestDb; /* Destination database handle */sqlite3_backup::pDestDb67456,2524598 - Btree *pDest; /* Destination b-tree file */pDest67457,2524659 - Btree *pDest; /* Destination b-tree file */sqlite3_backup::pDest67457,2524659 - u32 iDestSchema; /* Original schema cookie in destination */iDestSchema67458,2524716 - u32 iDestSchema; /* Original schema cookie in destination */sqlite3_backup::iDestSchema67458,2524716 - int bDestLocked; /* True once a write-transaction is open on pDest */bDestLocked67459,2524787 - int bDestLocked; /* True once a write-transaction is open on pDest */sqlite3_backup::bDestLocked67459,2524787 - Pgno iNext; /* Page number of the next source page to copy */iNext67461,2524868 - Pgno iNext; /* Page number of the next source page to copy */sqlite3_backup::iNext67461,2524868 - sqlite3* pSrcDb; /* Source database handle */pSrcDb67462,2524945 - sqlite3* pSrcDb; /* Source database handle */sqlite3_backup::pSrcDb67462,2524945 - Btree *pSrc; /* Source b-tree file */pSrc67463,2525001 - Btree *pSrc; /* Source b-tree file */sqlite3_backup::pSrc67463,2525001 - int rc; /* Backup process error code */rc67465,2525054 - int rc; /* Backup process error code */sqlite3_backup::rc67465,2525054 - Pgno nRemaining; /* Number of pages left to copy */nRemaining67470,2525258 - Pgno nRemaining; /* Number of pages left to copy */sqlite3_backup::nRemaining67470,2525258 - Pgno nPagecount; /* Total number of pages to copy */nPagecount67471,2525320 - Pgno nPagecount; /* Total number of pages to copy */sqlite3_backup::nPagecount67471,2525320 - int isAttached; /* True once backup has been registered with pager */isAttached67473,2525384 - int isAttached; /* True once backup has been registered with pager */sqlite3_backup::isAttached67473,2525384 - sqlite3_backup *pNext; /* Next backup associated with source pager */pNext67474,2525465 - sqlite3_backup *pNext; /* Next backup associated with source pager */sqlite3_backup::pNext67474,2525465 -static Btree *findBtree(sqlite3 *pErrorDb, sqlite3 *pDb, const char *zDb){findBtree67516,2527368 -static int setDestPgsz(sqlite3_backup *p){setDestPgsz67553,2528310 -static int checkReadTransaction(sqlite3 *db, Btree *p){checkReadTransaction67565,2528722 -SQLITE_API sqlite3_backup *SQLITE_STDCALL sqlite3_backup_init(sqlite3_backup_init67581,2529260 -static int isFatalError(int rc){isFatalError67659,2531999 -static int backupOnePage(backupOnePage67668,2532272 -static int backupTruncateFile(sqlite3_file *pFile, i64 iSize){backupTruncateFile67764,2535925 -static void attachBackupObject(sqlite3_backup *p){attachBackupObject67777,2536291 -SQLITE_API int SQLITE_STDCALL sqlite3_backup_step(sqlite3_backup *p, int nPage){sqlite3_backup_step67789,2536590 -SQLITE_API int SQLITE_STDCALL sqlite3_backup_finish(sqlite3_backup *p){sqlite3_backup_finish68033,2545745 -SQLITE_API int SQLITE_STDCALL sqlite3_backup_remaining(sqlite3_backup *p){sqlite3_backup_remaining68085,2547333 -SQLITE_API int SQLITE_STDCALL sqlite3_backup_pagecount(sqlite3_backup *p){sqlite3_backup_pagecount68099,2547657 -static SQLITE_NOINLINE void backupUpdate(backupUpdate68121,2548375 -SQLITE_PRIVATE void sqlite3BackupUpdate(sqlite3_backup *pBackup, Pgno iPage, const u8 *aData){sqlite3BackupUpdate68146,2549120 -SQLITE_PRIVATE void sqlite3BackupRestart(sqlite3_backup *pBackup){sqlite3BackupRestart68161,2549780 -SQLITE_PRIVATE int sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom){sqlite3BtreeCopyFile68178,2550351 -SQLITE_PRIVATE int sqlite3VdbeCheckMemInvariants(Mem *p){sqlite3VdbeCheckMemInvariants68262,2553213 -SQLITE_PRIVATE int sqlite3VdbeChangeEncoding(Mem *pMem, int desiredEnc){sqlite3VdbeChangeEncoding68315,2555129 -SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3VdbeMemGrow(Mem *pMem, int n, int bPreserve){sqlite3VdbeMemGrow68350,2556300 -SQLITE_PRIVATE int sqlite3VdbeMemClearAndResize(Mem *pMem, int szNew){sqlite3VdbeMemClearAndResize68407,2558281 -SQLITE_PRIVATE int sqlite3VdbeMemMakeWriteable(Mem *pMem){sqlite3VdbeMemMakeWriteable68425,2558838 -SQLITE_PRIVATE int sqlite3VdbeMemExpandBlob(Mem *pMem){sqlite3VdbeMemExpandBlob68452,2559564 -static SQLITE_NOINLINE int vdbeMemAddTerminator(Mem *pMem){vdbeMemAddTerminator68480,2560312 -SQLITE_PRIVATE int sqlite3VdbeMemNulTerminate(Mem *pMem){sqlite3VdbeMemNulTerminate68493,2560609 -SQLITE_PRIVATE int sqlite3VdbeMemStringify(Mem *pMem, u8 enc, u8 bForce){sqlite3VdbeMemStringify68518,2561655 -SQLITE_PRIVATE int sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc){sqlite3VdbeMemFinalize68562,2563057 -static SQLITE_NOINLINE void vdbeMemClearExternAndSetNull(Mem *p){vdbeMemClearExternAndSetNull68594,2564135 -static SQLITE_NOINLINE void vdbeMemClear(Mem *p){vdbeMemClear68624,2565098 -SQLITE_PRIVATE void sqlite3VdbeMemRelease(Mem *p){sqlite3VdbeMemRelease68645,2565703 -static i64 doubleToInt64(double r){doubleToInt6468657,2566058 -SQLITE_PRIVATE i64 sqlite3VdbeIntValue(Mem *pMem){sqlite3VdbeIntValue68693,2567258 -SQLITE_PRIVATE double sqlite3VdbeRealValue(Mem *pMem){sqlite3VdbeRealValue68718,2568005 -SQLITE_PRIVATE void sqlite3VdbeIntegerAffinity(Mem *pMem){sqlite3VdbeIntegerAffinity68740,2568684 -SQLITE_PRIVATE int sqlite3VdbeMemIntegerify(Mem *pMem){sqlite3VdbeMemIntegerify68768,2569585 -SQLITE_PRIVATE int sqlite3VdbeMemRealify(Mem *pMem){sqlite3VdbeMemRealify68782,2569981 -SQLITE_PRIVATE int sqlite3VdbeMemNumerify(Mem *pMem){sqlite3VdbeMemNumerify68799,2570546 -SQLITE_PRIVATE void sqlite3VdbeMemCast(Mem *pMem, u8 aff, u8 encoding){sqlite3VdbeMemCast68823,2571491 -SQLITE_PRIVATE void sqlite3VdbeMemInit(Mem *pMem, sqlite3 *db, u16 flags){sqlite3VdbeMemInit68865,2572726 -SQLITE_PRIVATE void sqlite3VdbeMemSetNull(Mem *pMem){sqlite3VdbeMemSetNull68885,2573435 -SQLITE_PRIVATE void sqlite3ValueSetNull(sqlite3_value *p){sqlite3ValueSetNull68892,2573602 -SQLITE_PRIVATE void sqlite3VdbeMemSetZeroBlob(Mem *pMem, int n){sqlite3VdbeMemSetZeroBlob68900,2573802 -static SQLITE_NOINLINE void vdbeReleaseAndSetInt64(Mem *pMem, i64 val){vdbeReleaseAndSetInt6468915,2574204 -SQLITE_PRIVATE void sqlite3VdbeMemSetInt64(Mem *pMem, i64 val){sqlite3VdbeMemSetInt6468925,2574457 -SQLITE_PRIVATE void sqlite3VdbeMemSetDouble(Mem *pMem, double val){sqlite3VdbeMemSetDouble68939,2574789 -SQLITE_PRIVATE void sqlite3VdbeMemSetRowSet(Mem *pMem){sqlite3VdbeMemSetRowSet68952,2575073 -SQLITE_PRIVATE int sqlite3VdbeMemTooBig(Mem *p){sqlite3VdbeMemTooBig68974,2575744 -SQLITE_PRIVATE void sqlite3VdbeMemAboutToChange(Vdbe *pVdbe, Mem *pMem){sqlite3VdbeMemAboutToChange68995,2576295 -static SQLITE_NOINLINE void vdbeClrCopy(Mem *pTo, const Mem *pFrom, int eType){vdbeClrCopy69015,2576857 -SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){sqlite3VdbeMemShallowCopy69020,2577058 -SQLITE_PRIVATE int sqlite3VdbeMemCopy(Mem *pTo, const Mem *pFrom){sqlite3VdbeMemCopy69036,2577614 -SQLITE_PRIVATE void sqlite3VdbeMemMove(Mem *pTo, Mem *pFrom){sqlite3VdbeMemMove69059,2578251 -SQLITE_PRIVATE int sqlite3VdbeMemSetStr(sqlite3VdbeMemSetStr69085,2579305 -static SQLITE_NOINLINE int vdbeMemFromBtreeResize(vdbeMemFromBtreeResize69185,2582448 -SQLITE_PRIVATE int sqlite3VdbeMemFromBtree(sqlite3VdbeMemFromBtree69211,2583299 -static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){valueToText69251,2584688 -SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value* pVal, u8 enc){sqlite3ValueText69295,2586323 -SQLITE_PRIVATE sqlite3_value *sqlite3ValueNew(sqlite3 *db){sqlite3ValueNew69312,2586810 -struct ValueNewStat4Ctx {ValueNewStat4Ctx69325,2587121 - Parse *pParse;pParse69326,2587147 - Parse *pParse;ValueNewStat4Ctx::pParse69326,2587147 - Index *pIdx;pIdx69327,2587164 - Index *pIdx;ValueNewStat4Ctx::pIdx69327,2587164 - UnpackedRecord **ppRec;ppRec69328,2587179 - UnpackedRecord **ppRec;ValueNewStat4Ctx::ppRec69328,2587179 - int iVal;iVal69329,2587205 - int iVal;ValueNewStat4Ctx::iVal69329,2587205 -static sqlite3_value *valueNew(sqlite3 *db, struct ValueNewStat4Ctx *p){valueNew69343,2587751 -static int valueFromFunction(valueFromFunction69405,2589987 -# define valueFromFunction(valueFromFunction69486,2592485 -static int valueFromExpr(valueFromExpr69499,2592985 -SQLITE_PRIVATE int sqlite3ValueFromExpr(sqlite3ValueFromExpr69634,2597470 -static void recordFunc(recordFunc69653,2598244 -SQLITE_PRIVATE void sqlite3AnalyzeFunctions(void){sqlite3AnalyzeFunctions69687,2599212 -static int stat4ValueFromExpr(stat4ValueFromExpr69712,2600077 -SQLITE_PRIVATE int sqlite3Stat4ProbeSetValue(sqlite3Stat4ProbeSetValue69786,2602752 -SQLITE_PRIVATE int sqlite3Stat4ValueFromExpr(sqlite3Stat4ValueFromExpr69820,2604009 -SQLITE_PRIVATE int sqlite3Stat4Column(sqlite3Stat4Column69837,2604713 -SQLITE_PRIVATE void sqlite3Stat4ProbeFree(UnpackedRecord *pRec){sqlite3Stat4ProbeFree69882,2606441 -SQLITE_PRIVATE void sqlite3ValueSetStr(sqlite3ValueSetStr69900,2606900 -SQLITE_PRIVATE void sqlite3ValueFree(sqlite3_value *v){sqlite3ValueFree69913,2607293 -static SQLITE_NOINLINE int valueBytes(sqlite3_value *pVal, u8 enc){valueBytes69924,2607633 -SQLITE_PRIVATE int sqlite3ValueBytes(sqlite3_value *pVal, u8 enc){sqlite3ValueBytes69927,2607753 -SQLITE_PRIVATE Vdbe *sqlite3VdbeCreate(Parse *pParse){sqlite3VdbeCreate69966,2608986 -SQLITE_PRIVATE void sqlite3VdbeError(Vdbe *p, const char *zFormat, ...){sqlite3VdbeError69990,2609521 -SQLITE_PRIVATE void sqlite3VdbeSetSql(Vdbe *p, const char *z, int n, int isPrepareV2){sqlite3VdbeSetSql70001,2609797 -SQLITE_API const char *SQLITE_STDCALL sqlite3_sql(sqlite3_stmt *pStmt){sqlite3_sql70015,2610219 -SQLITE_PRIVATE void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){sqlite3VdbeSwap70023,2610402 -static int growOpArray(Vdbe *v, int nOp){growOpArray70052,2611226 -static void test_addop_breakpoint(void){test_addop_breakpoint70086,2612540 -static SQLITE_NOINLINE int growOp3(Vdbe *p, int op, int p1, int p2, int p3){growOp370108,2613050 -SQLITE_PRIVATE int sqlite3VdbeAddOp3(Vdbe *p, int op, int p1, int p2, int p3){sqlite3VdbeAddOp370114,2613293 -SQLITE_PRIVATE int sqlite3VdbeAddOp0(Vdbe *p, int op){sqlite3VdbeAddOp070160,2614385 -SQLITE_PRIVATE int sqlite3VdbeAddOp1(Vdbe *p, int op, int p1){sqlite3VdbeAddOp170163,2614486 -SQLITE_PRIVATE int sqlite3VdbeAddOp2(Vdbe *p, int op, int p1, int p2){sqlite3VdbeAddOp270166,2614596 -SQLITE_PRIVATE int sqlite3VdbeGoto(Vdbe *p, int iDest){sqlite3VdbeGoto70172,2614783 -SQLITE_PRIVATE int sqlite3VdbeLoadString(Vdbe *p, int iDest, const char *zStr){sqlite3VdbeLoadString70179,2614976 -SQLITE_PRIVATE void sqlite3VdbeMultiLoad(Vdbe *p, int iDest, const char *zTypes, ...){sqlite3VdbeMultiLoad70191,2615565 -SQLITE_PRIVATE int sqlite3VdbeAddOp4(sqlite3VdbeAddOp470211,2616081 -SQLITE_PRIVATE int sqlite3VdbeAddOp4Dup8(sqlite3VdbeAddOp4Dup870229,2616635 -SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere){sqlite3VdbeAddParseSchemaOp70251,2617457 -SQLITE_PRIVATE int sqlite3VdbeAddOp4Int(sqlite3VdbeAddOp4Int70260,2617744 -SQLITE_PRIVATE void sqlite3VdbeEndCoroutine(Vdbe *v, int regYield){sqlite3VdbeEndCoroutine70275,2618242 -SQLITE_PRIVATE int sqlite3VdbeMakeLabel(Vdbe *v){sqlite3VdbeMakeLabel70302,2619381 -SQLITE_PRIVATE void sqlite3VdbeResolveLabel(Vdbe *v, int x){sqlite3VdbeResolveLabel70321,2619919 -SQLITE_PRIVATE void sqlite3VdbeRunOnlyOnce(Vdbe *p){sqlite3VdbeRunOnlyOnce70336,2620247 -SQLITE_PRIVATE void sqlite3VdbeReusable(Vdbe *p){sqlite3VdbeReusable70343,2620392 -typedef struct VdbeOpIter VdbeOpIter;VdbeOpIter70365,2621018 -struct VdbeOpIter {VdbeOpIter70366,2621056 - Vdbe *v; /* Vdbe to iterate through the opcodes of */v70367,2621076 - Vdbe *v; /* Vdbe to iterate through the opcodes of */VdbeOpIter::v70367,2621076 - SubProgram **apSub; /* Array of subprograms */apSub70368,2621150 - SubProgram **apSub; /* Array of subprograms */VdbeOpIter::apSub70368,2621150 - int nSub; /* Number of entries in apSub */nSub70369,2621206 - int nSub; /* Number of entries in apSub */VdbeOpIter::nSub70369,2621206 - int iAddr; /* Address of next instruction to return */iAddr70370,2621268 - int iAddr; /* Address of next instruction to return */VdbeOpIter::iAddr70370,2621268 - int iSub; /* 0 = main program, 1 = first sub-program etc. */iSub70371,2621341 - int iSub; /* 0 = main program, 1 = first sub-program etc. */VdbeOpIter::iSub70371,2621341 -static Op *opIterNext(VdbeOpIter *p){opIterNext70373,2621424 -SQLITE_PRIVATE int sqlite3VdbeAssertMayAbort(Vdbe *v, int mayAbort){sqlite3VdbeAssertMayAbort70438,2623228 -static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){resolveP2Values70498,2625406 -SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe *p){sqlite3VdbeCurrentAddr70582,2627847 -SQLITE_PRIVATE void sqlite3VdbeVerifyNoMallocRequired(Vdbe *p, int N){sqlite3VdbeVerifyNoMallocRequired70596,2628413 -SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){sqlite3VdbeTakeOpArray70612,2629047 -SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList(sqlite3VdbeAddOpList70632,2629652 -SQLITE_PRIVATE void sqlite3VdbeScanStatus(sqlite3VdbeScanStatus70680,2631003 -SQLITE_PRIVATE void sqlite3VdbeChangeOpcode(Vdbe *p, u32 addr, u8 iNewOpcode){sqlite3VdbeChangeOpcode70708,2631970 -SQLITE_PRIVATE void sqlite3VdbeChangeP1(Vdbe *p, u32 addr, int val){sqlite3VdbeChangeP170711,2632100 -SQLITE_PRIVATE void sqlite3VdbeChangeP2(Vdbe *p, u32 addr, int val){sqlite3VdbeChangeP270714,2632209 -SQLITE_PRIVATE void sqlite3VdbeChangeP3(Vdbe *p, u32 addr, int val){sqlite3VdbeChangeP370717,2632318 -SQLITE_PRIVATE void sqlite3VdbeChangeP5(Vdbe *p, u8 p5){sqlite3VdbeChangeP570720,2632427 -SQLITE_PRIVATE void sqlite3VdbeJumpHere(Vdbe *p, int addr){sqlite3VdbeJumpHere70728,2632666 -static void freeEphemeralFunction(sqlite3 *db, FuncDef *pDef){freeEphemeralFunction70738,2632927 -static void freeP4(sqlite3 *db, int p4type, void *p4){freeP470749,2633185 -static void vdbeFreeOpArray(sqlite3 *db, Op *aOp, int nOp){vdbeFreeOpArray70803,2634486 -SQLITE_PRIVATE void sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p){sqlite3VdbeLinkSubProgram70821,2635002 -SQLITE_PRIVATE int sqlite3VdbeChangeToNoop(Vdbe *p, int addr){sqlite3VdbeChangeToNoop70829,2635181 -SQLITE_PRIVATE int sqlite3VdbeDeletePriorOpcode(Vdbe *p, u8 op){sqlite3VdbeDeletePriorOpcode70845,2635622 -static void SQLITE_NOINLINE vdbeChangeP4Full(vdbeChangeP4Full70870,2636622 -SQLITE_PRIVATE void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){sqlite3VdbeChangeP470889,2637033 -SQLITE_PRIVATE void sqlite3VdbeSetP4KeyInfo(Parse *pParse, Index *pIdx){sqlite3VdbeSetP4KeyInfo70927,2638015 -static void vdbeVComment(Vdbe *p, const char *zFormat, va_list ap){vdbeVComment70942,2638543 -SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){sqlite3VdbeComment70951,2638890 -SQLITE_PRIVATE void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){sqlite3VdbeNoopComment70959,2639073 -SQLITE_PRIVATE void sqlite3VdbeSetLineNumber(Vdbe *v, int iLine){sqlite3VdbeSetLineNumber70974,2639428 -SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){sqlite3VdbeGetOp70992,2640243 -static int translateP(char c, const Op *pOp){translateP71013,2640917 -static int displayComment(displayComment71034,2641657 -static void displayP4Expr(StrAccum *p, Expr *pExpr){displayP4Expr71103,2643795 -static char *displayP4(Op *pOp, char *zTemp, int nTemp){displayP471177,2646092 -SQLITE_PRIVATE void sqlite3VdbeUsesBtree(Vdbe *p, int i){sqlite3VdbeUsesBtree71301,2649413 -SQLITE_PRIVATE void sqlite3VdbeEnter(Vdbe *p){sqlite3VdbeEnter71332,2650767 -static SQLITE_NOINLINE void vdbeLeave(Vdbe *p){vdbeLeave71353,2651272 -SQLITE_PRIVATE void sqlite3VdbeLeave(Vdbe *p){sqlite3VdbeLeave71367,2651557 -SQLITE_PRIVATE void sqlite3VdbePrintOp(FILE *pOut, int pc, Op *pOp){sqlite3VdbePrintOp71377,2651821 -static void releaseMemArray(Mem *p, int N){releaseMemArray71403,2652588 -SQLITE_PRIVATE void sqlite3VdbeFrameDelete(VdbeFrame *p){sqlite3VdbeFrameDelete71449,2654233 -SQLITE_PRIVATE int sqlite3VdbeList(sqlite3VdbeList71477,2655228 -SQLITE_PRIVATE void sqlite3VdbePrintSql(Vdbe *p){sqlite3VdbePrintSql71656,2661099 -SQLITE_PRIVATE void sqlite3VdbeIOTraceSql(Vdbe *p){sqlite3VdbeIOTraceSql71675,2661550 -struct ReusableSpace {ReusableSpace71705,2662375 - u8 *pSpace; /* Available memory */pSpace71706,2662398 - u8 *pSpace; /* Available memory */ReusableSpace::pSpace71706,2662398 - int nFree; /* Bytes of available memory */nFree71707,2662444 - int nFree; /* Bytes of available memory */ReusableSpace::nFree71707,2662444 - int nNeeded; /* Total bytes that could not be allocated */nNeeded71708,2662499 - int nNeeded; /* Total bytes that could not be allocated */ReusableSpace::nNeeded71708,2662499 -static void *allocSpace(allocSpace71725,2663246 -SQLITE_PRIVATE void sqlite3VdbeRewind(Vdbe *p){sqlite3VdbeRewind71748,2663831 -SQLITE_PRIVATE void sqlite3VdbeMakeReady(sqlite3VdbeMakeReady71801,2665409 -SQLITE_PRIVATE void sqlite3VdbeFreeCursor(Vdbe *p, VdbeCursor *pCx){sqlite3VdbeFreeCursor71910,2669317 -static void closeCursorsInFrame(Vdbe *p){closeCursorsInFrame71947,2670254 -SQLITE_PRIVATE int sqlite3VdbeFrameRestore(VdbeFrame *pFrame){sqlite3VdbeFrameRestore71965,2670676 -static void closeAllCursors(Vdbe *p){closeAllCursors71996,2671607 -static void Cleanup(Vdbe *p){Cleanup72023,2672284 -SQLITE_PRIVATE void sqlite3VdbeSetNumCols(Vdbe *p, int nResColumn){sqlite3VdbeSetNumCols72047,2673008 -SQLITE_PRIVATE int sqlite3VdbeSetColName(sqlite3VdbeSetColName72075,2673918 -static int vdbeCommit(sqlite3 *db, Vdbe *p){vdbeCommit72103,2675005 -static void checkActiveVdbeCnt(sqlite3 *db){checkActiveVdbeCnt72365,2684103 -#define checkActiveVdbeCnt(checkActiveVdbeCnt72384,2684511 -SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){sqlite3VdbeCloseStatement72397,2684975 -SQLITE_PRIVATE int sqlite3VdbeCheckFk(Vdbe *p, int deferred){sqlite3VdbeCheckFk72463,2687232 -SQLITE_PRIVATE int sqlite3VdbeHalt(Vdbe *p){sqlite3VdbeHalt72490,2688211 -SQLITE_PRIVATE void sqlite3VdbeResetStepResult(Vdbe *p){sqlite3VdbeResetStepResult72692,2695168 -SQLITE_PRIVATE int sqlite3VdbeTransferError(Vdbe *p){sqlite3VdbeTransferError72704,2695572 -static void vdbeInvokeSqllog(Vdbe *v){vdbeInvokeSqllog72726,2696134 -# define vdbeInvokeSqllog(vdbeInvokeSqllog72739,2696528 -SQLITE_PRIVATE int sqlite3VdbeReset(Vdbe *p){sqlite3VdbeReset72753,2696951 -SQLITE_PRIVATE int sqlite3VdbeFinalize(Vdbe *p){sqlite3VdbeFinalize72833,2699283 -SQLITE_PRIVATE void sqlite3VdbeDeleteAuxData(sqlite3 *db, AuxData **pp, int iOp, int mask){sqlite3VdbeDeleteAuxData72859,2700183 -SQLITE_PRIVATE void sqlite3VdbeClearObject(sqlite3 *db, Vdbe *p){sqlite3VdbeClearObject72885,2700962 -SQLITE_PRIVATE void sqlite3VdbeDelete(Vdbe *p){sqlite3VdbeDelete72913,2701755 -static int SQLITE_NOINLINE handleDeferredMoveto(VdbeCursor *p){handleDeferredMoveto72939,2702350 -static int SQLITE_NOINLINE handleMovedCursor(VdbeCursor *p){handleMovedCursor72965,2703201 -SQLITE_PRIVATE int sqlite3VdbeCursorRestore(VdbeCursor *p){sqlite3VdbeCursorRestore72980,2703702 -SQLITE_PRIVATE int sqlite3VdbeCursorMoveto(VdbeCursor **pp, int *piCol){sqlite3VdbeCursorMoveto73001,2704515 -SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){sqlite3VdbeSerialType73065,2706860 -# define MAX_6BYTE MAX_6BYTE73076,2707138 -static const u8 sqlite3SmallTypeSizes[] = {sqlite3SmallTypeSizes73117,2707993 -SQLITE_PRIVATE u32 sqlite3VdbeSerialTypeLen(u32 serial_type){sqlite3VdbeSerialTypeLen73137,2708833 -SQLITE_PRIVATE u8 sqlite3VdbeOneByteSerialTypeLen(u8 serial_type){sqlite3VdbeOneByteSerialTypeLen73146,2709117 -static u64 floatSwap(u64 in){floatSwap73186,2710977 -# define swapMixedEndianFloat(swapMixedEndianFloat73199,2711134 -# define swapMixedEndianFloat(swapMixedEndianFloat73201,2711191 -SQLITE_PRIVATE u32 sqlite3VdbeSerialPut(u8 *buf, Mem *pMem, u32 serial_type){sqlite3VdbeSerialPut73217,2711808 -#define ONE_BYTE_INT(ONE_BYTE_INT73256,2712766 -#define TWO_BYTE_INT(TWO_BYTE_INT73257,2712806 -#define THREE_BYTE_INT(THREE_BYTE_INT73258,2712859 -#define FOUR_BYTE_UINT(FOUR_BYTE_UINT73259,2712926 -#define FOUR_BYTE_INT(FOUR_BYTE_INT73260,2713005 -static u32 SQLITE_NOINLINE serialGet(serialGet73271,2713478 -SQLITE_PRIVATE u32 sqlite3VdbeSerialGet(sqlite3VdbeSerialGet73307,2714822 -SQLITE_PRIVATE UnpackedRecord *sqlite3VdbeAllocUnpackedRecord(sqlite3VdbeAllocUnpackedRecord73406,2718457 -SQLITE_PRIVATE void sqlite3VdbeRecordUnpack(sqlite3VdbeRecordUnpack73443,2719941 -static int vdbeRecordCompareDebug(vdbeRecordCompareDebug73490,2721596 -static void vdbeAssertFieldCountWithinLimits(vdbeAssertFieldCountWithinLimits73595,2725453 -# define vdbeAssertFieldCountWithinLimits(vdbeAssertFieldCountWithinLimits73616,2726008 -static int vdbeCompareMemString(vdbeCompareMemString73625,2726363 -static SQLITE_NOINLINE int sqlite3BlobCompare(const Mem *pB1, const Mem *pB2){sqlite3BlobCompare73662,2727644 -static int sqlite3IntFloatCompare(i64 i, double r){sqlite3IntFloatCompare73673,2728054 -SQLITE_PRIVATE int sqlite3MemCompare(const Mem *pMem1, const Mem *pMem2, const CollSeq *pColl){sqlite3MemCompare73706,2729011 -static i64 vdbeRecordDecodeInt(u32 serial_type, const u8 *aKey){vdbeRecordDecodeInt73792,2731506 -SQLITE_PRIVATE int sqlite3VdbeRecordCompareWithSkip(sqlite3VdbeRecordCompareWithSkip73847,2733340 -SQLITE_PRIVATE int sqlite3VdbeRecordCompare(sqlite3VdbeRecordCompare74026,2739230 -static int vdbeRecordCompareInt(vdbeRecordCompareInt74043,2739843 -static int vdbeRecordCompareString(vdbeRecordCompareString74136,2742633 -SQLITE_PRIVATE RecordCompare sqlite3VdbeFindCompare(UnpackedRecord *p){sqlite3VdbeFindCompare74197,2744292 -SQLITE_PRIVATE int sqlite3VdbeIdxRowid(sqlite3 *db, BtCursor *pCur, i64 *rowid){sqlite3VdbeIdxRowid74243,2746150 -SQLITE_PRIVATE int sqlite3VdbeIdxKeyCompare(sqlite3VdbeIdxKeyCompare74321,2748989 -SQLITE_PRIVATE void sqlite3VdbeSetChanges(sqlite3 *db, int nChange){sqlite3VdbeSetChanges74357,2750214 -SQLITE_PRIVATE void sqlite3VdbeCountChanges(Vdbe *v){sqlite3VdbeCountChanges74367,2750480 -SQLITE_PRIVATE void sqlite3ExpirePreparedStatements(sqlite3 *db){sqlite3ExpirePreparedStatements74381,2750978 -SQLITE_PRIVATE sqlite3 *sqlite3VdbeDb(Vdbe *v){sqlite3VdbeDb74391,2751174 -SQLITE_PRIVATE sqlite3_value *sqlite3VdbeGetBoundValue(Vdbe *v, int iVar, u8 aff){sqlite3VdbeGetBoundValue74403,2751600 -SQLITE_PRIVATE void sqlite3VdbeSetVarmask(Vdbe *v, int iVar){sqlite3VdbeSetVarmask74424,2752191 -SQLITE_PRIVATE void sqlite3VtabImportErrmsg(Vdbe *p, sqlite3_vtab *pVtab){sqlite3VtabImportErrmsg74439,2752608 -static void vdbeFreeUnpacked(sqlite3 *db, UnpackedRecord *p){vdbeFreeUnpacked74460,2753294 -SQLITE_PRIVATE void sqlite3VdbePreUpdateHook(sqlite3VdbePreUpdateHook74479,2753921 -SQLITE_API int SQLITE_STDCALL sqlite3_expired(sqlite3_stmt *pStmt){sqlite3_expired74563,2756735 -static int vdbeSafety(Vdbe *p){vdbeSafety74574,2757048 -static int vdbeSafetyNotNull(Vdbe *p){vdbeSafetyNotNull74582,2757221 -static SQLITE_NOINLINE void invokeProfileCallback(sqlite3 *db, Vdbe *p){invokeProfileCallback74596,2757582 -# define checkProfileCallback(checkProfileCallback74610,2758070 -# define checkProfileCallback(checkProfileCallback74613,2758174 -SQLITE_API int SQLITE_STDCALL sqlite3_finalize(sqlite3_stmt *pStmt){sqlite3_finalize74625,2758587 -SQLITE_API int SQLITE_STDCALL sqlite3_reset(sqlite3_stmt *pStmt){sqlite3_reset74652,2759441 -SQLITE_API int SQLITE_STDCALL sqlite3_clear_bindings(sqlite3_stmt *pStmt){sqlite3_clear_bindings74673,2759942 -SQLITE_API const void *SQLITE_STDCALL sqlite3_value_blob(sqlite3_value *pVal){sqlite3_value_blob74697,2760568 -SQLITE_API int SQLITE_STDCALL sqlite3_value_bytes(sqlite3_value *pVal){sqlite3_value_bytes74710,2760934 -SQLITE_API int SQLITE_STDCALL sqlite3_value_bytes16(sqlite3_value *pVal){sqlite3_value_bytes1674713,2761055 -SQLITE_API double SQLITE_STDCALL sqlite3_value_double(sqlite3_value *pVal){sqlite3_value_double74716,2761185 -SQLITE_API int SQLITE_STDCALL sqlite3_value_int(sqlite3_value *pVal){sqlite3_value_int74719,2761306 -SQLITE_API sqlite_int64 SQLITE_STDCALL sqlite3_value_int64(sqlite3_value *pVal){sqlite3_value_int6474722,2761425 -SQLITE_API unsigned int SQLITE_STDCALL sqlite3_value_subtype(sqlite3_value *pVal){sqlite3_value_subtype74725,2761550 -SQLITE_API const unsigned char *SQLITE_STDCALL sqlite3_value_text(sqlite3_value *pVal){sqlite3_value_text74729,2761722 -SQLITE_API const void *SQLITE_STDCALL sqlite3_value_text16(sqlite3_value* pVal){sqlite3_value_text1674733,2761907 -SQLITE_API const void *SQLITE_STDCALL sqlite3_value_text16be(sqlite3_value *pVal){sqlite3_value_text16be74736,2762043 -SQLITE_API const void *SQLITE_STDCALL sqlite3_value_text16le(sqlite3_value *pVal){sqlite3_value_text16le74739,2762177 -SQLITE_API int SQLITE_STDCALL sqlite3_value_type(sqlite3_value* pVal){sqlite3_value_type74747,2762515 -SQLITE_API sqlite3_value *SQLITE_STDCALL sqlite3_value_dup(const sqlite3_value *pOrig){sqlite3_value_dup74787,2763766 -SQLITE_API void SQLITE_STDCALL sqlite3_value_free(sqlite3_value *pOld){sqlite3_value_free74810,2764414 -static void setResultStrOrError(setResultStrOrError74826,2765032 -static int invokeValueDestructor(invokeValueDestructor74837,2765456 -SQLITE_API void SQLITE_STDCALL sqlite3_result_blob(sqlite3_result_blob74853,2765893 -SQLITE_API void SQLITE_STDCALL sqlite3_result_blob64(sqlite3_result_blob6474863,2766144 -SQLITE_API void SQLITE_STDCALL sqlite3_result_double(sqlite3_context *pCtx, double rVal){sqlite3_result_double74877,2766513 -SQLITE_API void SQLITE_STDCALL sqlite3_result_error(sqlite3_context *pCtx, const char *z, int n){sqlite3_result_error74881,2766705 -SQLITE_API void SQLITE_STDCALL sqlite3_result_error16(sqlite3_context *pCtx, const void *z, int n){sqlite3_result_error1674888,2767016 -SQLITE_API void SQLITE_STDCALL sqlite3_result_int(sqlite3_context *pCtx, int iVal){sqlite3_result_int74895,2767317 -SQLITE_API void SQLITE_STDCALL sqlite3_result_int64(sqlite3_context *pCtx, i64 iVal){sqlite3_result_int6474899,2767507 -SQLITE_API void SQLITE_STDCALL sqlite3_result_null(sqlite3_context *pCtx){sqlite3_result_null74903,2767694 -SQLITE_API void SQLITE_STDCALL sqlite3_result_subtype(sqlite3_context *pCtx, unsigned int eSubtype){sqlite3_result_subtype74907,2767863 -SQLITE_API void SQLITE_STDCALL sqlite3_result_text(sqlite3_result_text74913,2768107 -SQLITE_API void SQLITE_STDCALL sqlite3_result_text64(sqlite3_result_text6474922,2768349 -SQLITE_API void SQLITE_STDCALL sqlite3_result_text16(sqlite3_result_text1674939,2768819 -SQLITE_API void SQLITE_STDCALL sqlite3_result_text16be(sqlite3_result_text16be74948,2769071 -SQLITE_API void SQLITE_STDCALL sqlite3_result_text16le(sqlite3_result_text16le74957,2769321 -SQLITE_API void SQLITE_STDCALL sqlite3_result_value(sqlite3_context *pCtx, sqlite3_value *pValue){sqlite3_result_value74967,2769602 -SQLITE_API void SQLITE_STDCALL sqlite3_result_zeroblob(sqlite3_context *pCtx, int n){sqlite3_result_zeroblob74971,2769800 -SQLITE_API int SQLITE_STDCALL sqlite3_result_zeroblob64(sqlite3_context *pCtx, u64 n){sqlite3_result_zeroblob6474975,2769987 -SQLITE_API void SQLITE_STDCALL sqlite3_result_error_code(sqlite3_context *pCtx, int errCode){sqlite3_result_error_code74984,2770304 -SQLITE_API void SQLITE_STDCALL sqlite3_result_error_toobig(sqlite3_context *pCtx){sqlite3_result_error_toobig74997,2770728 -SQLITE_API void SQLITE_STDCALL sqlite3_result_error_nomem(sqlite3_context *pCtx){sqlite3_result_error_nomem75006,2771074 -static int doWalCallbacks(sqlite3 *db){doWalCallbacks75018,2771494 -static int sqlite3Step(Vdbe *p){sqlite3Step75048,2772364 -SQLITE_API int SQLITE_STDCALL sqlite3_step(sqlite3_stmt *pStmt){sqlite3_step75177,2776486 -SQLITE_API void *SQLITE_STDCALL sqlite3_user_data(sqlite3_context *p){sqlite3_user_data75228,2778240 -SQLITE_API sqlite3 *SQLITE_STDCALL sqlite3_context_db_handle(sqlite3_context *p){sqlite3_context_db_handle75243,2778771 -SQLITE_PRIVATE sqlite3_int64 sqlite3StmtCurrentTime(sqlite3_context *p){sqlite3StmtCurrentTime75255,2779259 -SQLITE_PRIVATE void sqlite3InvalidFunction(sqlite3InvalidFunction75279,2780094 -static SQLITE_NOINLINE void *createAggContext(sqlite3_context *p, int nByte){createAggContext75297,2780689 -SQLITE_API void *SQLITE_STDCALL sqlite3_aggregate_context(sqlite3_context *p, int nByte){sqlite3_aggregate_context75319,2781300 -SQLITE_API void *SQLITE_STDCALL sqlite3_get_auxdata(sqlite3_context *pCtx, int iArg){sqlite3_get_auxdata75334,2781757 -SQLITE_API void SQLITE_STDCALL sqlite3_set_auxdata(sqlite3_set_auxdata75355,2782436 -SQLITE_API int SQLITE_STDCALL sqlite3_aggregate_count(sqlite3_context *p){sqlite3_aggregate_count75410,2783826 -SQLITE_API int SQLITE_STDCALL sqlite3_column_count(sqlite3_stmt *pStmt){sqlite3_column_count75419,2784074 -SQLITE_API int SQLITE_STDCALL sqlite3_data_count(sqlite3_stmt *pStmt){sqlite3_data_count75428,2784330 -static const Mem *columnNullValue(void){columnNullValue75437,2784579 -static Mem *columnMem(sqlite3_stmt *pStmt, int i){columnMem75477,2786121 -static void columnMallocFailure(sqlite3_stmt *pStmt)columnMallocFailure75513,2787208 -SQLITE_API const void *SQLITE_STDCALL sqlite3_column_blob(sqlite3_stmt *pStmt, int i){sqlite3_column_blob75531,2787827 -SQLITE_API int SQLITE_STDCALL sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){sqlite3_column_bytes75541,2788186 -SQLITE_API int SQLITE_STDCALL sqlite3_column_bytes16(sqlite3_stmt *pStmt, int i){sqlite3_column_bytes1675546,2788367 -SQLITE_API double SQLITE_STDCALL sqlite3_column_double(sqlite3_stmt *pStmt, int i){sqlite3_column_double75551,2788552 -SQLITE_API int SQLITE_STDCALL sqlite3_column_int(sqlite3_stmt *pStmt, int i){sqlite3_column_int75556,2788741 -SQLITE_API sqlite_int64 SQLITE_STDCALL sqlite3_column_int64(sqlite3_stmt *pStmt, int i){sqlite3_column_int6475561,2788918 -SQLITE_API const unsigned char *SQLITE_STDCALL sqlite3_column_text(sqlite3_stmt *pStmt, int i){sqlite3_column_text75566,2789117 -SQLITE_API sqlite3_value *SQLITE_STDCALL sqlite3_column_value(sqlite3_stmt *pStmt, int i){sqlite3_column_value75571,2789330 -SQLITE_API const void *SQLITE_STDCALL sqlite3_column_text16(sqlite3_stmt *pStmt, int i){sqlite3_column_text1675581,2789644 -SQLITE_API int SQLITE_STDCALL sqlite3_column_type(sqlite3_stmt *pStmt, int i){sqlite3_column_type75587,2789874 -static const void *columnName(columnName75609,2790775 -SQLITE_API const char *SQLITE_STDCALL sqlite3_column_name(sqlite3_stmt *pStmt, int N){sqlite3_column_name75651,2791660 -SQLITE_API const void *SQLITE_STDCALL sqlite3_column_name16(sqlite3_stmt *pStmt, int N){sqlite3_column_name1675656,2791869 -SQLITE_API const char *SQLITE_STDCALL sqlite3_column_decltype(sqlite3_stmt *pStmt, int N){sqlite3_column_decltype75676,2792499 -SQLITE_API const void *SQLITE_STDCALL sqlite3_column_decltype16(sqlite3_stmt *pStmt, int N){sqlite3_column_decltype1675681,2792716 -SQLITE_API const char *SQLITE_STDCALL sqlite3_column_database_name(sqlite3_stmt *pStmt, int N){sqlite3_column_database_name75694,2793241 -SQLITE_API const void *SQLITE_STDCALL sqlite3_column_database_name16(sqlite3_stmt *pStmt, int N){sqlite3_column_database_name1675699,2793463 -SQLITE_API const char *SQLITE_STDCALL sqlite3_column_table_name(sqlite3_stmt *pStmt, int N){sqlite3_column_table_name75710,2793919 -SQLITE_API const void *SQLITE_STDCALL sqlite3_column_table_name16(sqlite3_stmt *pStmt, int N){sqlite3_column_table_name1675715,2794135 -SQLITE_API const char *SQLITE_STDCALL sqlite3_column_origin_name(sqlite3_stmt *pStmt, int N){sqlite3_column_origin_name75726,2794592 -SQLITE_API const void *SQLITE_STDCALL sqlite3_column_origin_name16(sqlite3_stmt *pStmt, int N){sqlite3_column_origin_name1675731,2794810 -static int vdbeUnbind(Vdbe *p, int i){vdbeUnbind75754,2795689 -static int bindText(bindText75798,2797059 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_blob(sqlite3_bind_blob75832,2798045 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_blob64(sqlite3_bind_blob6475844,2798324 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){sqlite3_bind_double75858,2798665 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){sqlite3_bind_int75868,2798954 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){sqlite3_bind_int6475871,2799088 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_null(sqlite3_stmt *pStmt, int i){sqlite3_bind_null75881,2799381 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_text( sqlite3_bind_text75890,2799600 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_text64( sqlite3_bind_text6475899,2799809 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_text16(sqlite3_bind_text1675916,2800254 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_value(sqlite3_stmt *pStmt, int i, const sqlite3_value *pValue){sqlite3_bind_value75926,2800502 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_zeroblob(sqlite3_stmt *pStmt, int i, int n){sqlite3_bind_zeroblob75957,2801370 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_zeroblob64(sqlite3_stmt *pStmt, int i, sqlite3_uint64 n){sqlite3_bind_zeroblob6475967,2801650 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_parameter_count(sqlite3_stmt *pStmt){sqlite3_bind_parameter_count75986,2802205 -SQLITE_API const char *SQLITE_STDCALL sqlite3_bind_parameter_name(sqlite3_stmt *pStmt, int i){sqlite3_bind_parameter_name75997,2802501 -SQLITE_PRIVATE int sqlite3VdbeParameterIndex(Vdbe *p, const char *zName, int nName){sqlite3VdbeParameterIndex76010,2802855 -SQLITE_API int SQLITE_STDCALL sqlite3_bind_parameter_index(sqlite3_stmt *pStmt, const char *zName){sqlite3_bind_parameter_index76025,2803173 -SQLITE_PRIVATE int sqlite3TransferBindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){sqlite3TransferBindings76032,2803433 -SQLITE_API int SQLITE_STDCALL sqlite3_transfer_bindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){sqlite3_transfer_bindings76059,2804356 -SQLITE_API sqlite3 *SQLITE_STDCALL sqlite3_db_handle(sqlite3_stmt *pStmt){sqlite3_db_handle76081,2805054 -SQLITE_API int SQLITE_STDCALL sqlite3_stmt_readonly(sqlite3_stmt *pStmt){sqlite3_stmt_readonly76089,2805265 -SQLITE_API int SQLITE_STDCALL sqlite3_stmt_busy(sqlite3_stmt *pStmt){sqlite3_stmt_busy76096,2805463 -SQLITE_API sqlite3_stmt *SQLITE_STDCALL sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt){sqlite3_next_stmt76107,2805855 -SQLITE_API int SQLITE_STDCALL sqlite3_stmt_status(sqlite3_stmt *pStmt, int op, int resetFlag){sqlite3_stmt_status76128,2806374 -static UnpackedRecord *vdbeUnpackRecord(vdbeUnpackRecord76148,2806964 -SQLITE_API int SQLITE_STDCALL sqlite3_preupdate_old(sqlite3 *db, int iIdx, sqlite3_value **ppValue){sqlite3_preupdate_old76168,2807553 -SQLITE_API int SQLITE_STDCALL sqlite3_preupdate_count(sqlite3 *db){sqlite3_preupdate_count76224,2809224 -SQLITE_API int SQLITE_STDCALL sqlite3_preupdate_depth(sqlite3 *db){sqlite3_preupdate_depth76242,2809975 -SQLITE_API int SQLITE_STDCALL sqlite3_preupdate_new(sqlite3 *db, int iIdx, sqlite3_value **ppValue){sqlite3_preupdate_new76253,2810328 -SQLITE_API int SQLITE_STDCALL sqlite3_stmt_scanstatus(sqlite3_stmt_scanstatus76327,2812563 -SQLITE_API void SQLITE_STDCALL sqlite3_stmt_scanstatus_reset(sqlite3_stmt *pStmt){sqlite3_stmt_scanstatus_reset76386,2814097 -static int findNextHostParameter(const char *zSql, int *pnToken){findNextHostParameter76422,2815376 -SQLITE_PRIVATE char *sqlite3VdbeExpandSql(sqlite3VdbeExpandSql76465,2816998 -# define memAboutToChange(memAboutToChange76618,2822701 -# define memAboutToChange(memAboutToChange76620,2822771 -SQLITE_API int sqlite3_search_count = 0;sqlite3_search_count76631,2823162 -SQLITE_API int sqlite3_interrupt_count = 0;sqlite3_interrupt_count76643,2823565 -SQLITE_API int sqlite3_sort_count = 0;sqlite3_sort_count76654,2823955 -SQLITE_API int sqlite3_max_blobsize = 0;sqlite3_max_blobsize76665,2824362 -static void updateMaxBlobsize(Mem *p){updateMaxBlobsize76666,2824403 -# define HAS_UPDATE_HOOK(HAS_UPDATE_HOOK76678,2824724 -# define HAS_UPDATE_HOOK(HAS_UPDATE_HOOK76680,2824809 -SQLITE_API int sqlite3_found_count = 0;sqlite3_found_count76691,2825191 -# define UPDATE_MAX_BLOBSIZE(UPDATE_MAX_BLOBSIZE76699,2825428 -# define UPDATE_MAX_BLOBSIZE(UPDATE_MAX_BLOBSIZE76701,2825488 -# define VdbeBranchTaken(VdbeBranchTaken76721,2826324 -# define VdbeBranchTaken(VdbeBranchTaken76723,2826360 - static void vdbeTakeBranch(int iSrcLine, u8 I, u8 M){vdbeTakeBranch76724,2826424 -#define Stringify(Stringify76742,2827009 -#define Deephemeralize(Deephemeralize76757,2827656 -#define isSorter(isSorter76762,2827853 -static VdbeCursor *allocateCursor(allocateCursor76768,2828014 -static void applyNumericAffinity(Mem *pRec, int bTryForInt){applyNumericAffinity76837,2830855 -static void applyAffinity(applyAffinity76871,2831901 -SQLITE_API int SQLITE_STDCALL sqlite3_value_numeric_type(sqlite3_value *pVal){sqlite3_value_numeric_type76907,2833353 -SQLITE_PRIVATE void sqlite3ValueApplyAffinity(sqlite3ValueApplyAffinity76921,2833736 -static u16 SQLITE_NOINLINE computeNumericType(Mem *pMem){computeNumericType76935,2834114 -static u16 numericType(Mem *pMem){numericType76954,2834707 -SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf){sqlite3VdbeMemPrettyPrint76969,2835058 -static void memTracePrint(Mem *p){memTracePrint77051,2837190 -static void registerTrace(int iReg, Mem *p){registerTrace77073,2837842 -# define REGISTER_TRACE(REGISTER_TRACE77081,2837983 -# define REGISTER_TRACE(REGISTER_TRACE77083,2838068 -#define _HWTIME_H__HWTIME_H_77111,2838896 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime77124,2839288 - __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){__declspec77132,2839496 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime77143,2839711 - __inline__ sqlite_uint64 sqlite3Hwtime(void){sqlite3Hwtime77151,2839906 -SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); }sqlite3Hwtime77175,2840648 -static int checkSavepointCount(sqlite3 *db){checkSavepointCount77197,2841271 -static SQLITE_NOINLINE Mem *out2PrereleaseWithClear(Mem *pOut){out2PrereleaseWithClear77210,2841582 -static Mem *out2Prerelease(Vdbe *p, VdbeOp *pOp){out2Prerelease77215,2841719 -SQLITE_PRIVATE int sqlite3VdbeExec(sqlite3VdbeExec77234,2842163 -# define MAX_ROWID MAX_ROWID80821,2964790 -typedef struct Incrblob Incrblob;Incrblob83635,3055897 -struct Incrblob {Incrblob83636,3055931 - int flags; /* Copy of "flags" passed to sqlite3_blob_open() */flags83637,3055949 - int flags; /* Copy of "flags" passed to sqlite3_blob_open() */Incrblob::flags83637,3055949 - int nByte; /* Size of open blob, in bytes */nByte83638,3056027 - int nByte; /* Size of open blob, in bytes */Incrblob::nByte83638,3056027 - int iOffset; /* Byte offset of blob in cursor data */iOffset83639,3056087 - int iOffset; /* Byte offset of blob in cursor data */Incrblob::iOffset83639,3056087 - int iCol; /* Table column this handle is open on */iCol83640,3056154 - int iCol; /* Table column this handle is open on */Incrblob::iCol83640,3056154 - BtCursor *pCsr; /* Cursor pointing at blob row */pCsr83641,3056222 - BtCursor *pCsr; /* Cursor pointing at blob row */Incrblob::pCsr83641,3056222 - sqlite3_stmt *pStmt; /* Statement holding cursor open */pStmt83642,3056282 - sqlite3_stmt *pStmt; /* Statement holding cursor open */Incrblob::pStmt83642,3056282 - sqlite3 *db; /* The associated database */db83643,3056344 - sqlite3 *db; /* The associated database */Incrblob::db83643,3056344 - char *zDb; /* Database name */zDb83644,3056400 - char *zDb; /* Database name */Incrblob::zDb83644,3056400 - Table *pTab; /* Table object */pTab83645,3056446 - Table *pTab; /* Table object */Incrblob::pTab83645,3056446 -static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){blobSeekToRow83666,3057353 -SQLITE_API int SQLITE_STDCALL sqlite3_blob_open(sqlite3_blob_open83720,3058845 -SQLITE_API int SQLITE_STDCALL sqlite3_blob_close(sqlite3_blob *pBlob){sqlite3_blob_close83961,3067035 -static int blobReadWrite(blobReadWrite83981,3067431 -SQLITE_API int SQLITE_STDCALL sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){sqlite3_blob_read84054,3069650 -SQLITE_API int SQLITE_STDCALL sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){sqlite3_blob_write84061,3069854 -SQLITE_API int SQLITE_STDCALL sqlite3_blob_bytes(sqlite3_blob *pBlob){sqlite3_blob_bytes84071,3070205 -SQLITE_API int SQLITE_STDCALL sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){sqlite3_blob_reopen84086,3070786 -#define SQLITE_MAX_PMASZ SQLITE_MAX_PMASZ84274,3079203 -typedef struct MergeEngine MergeEngine; /* Merge PMAs together */MergeEngine84279,3079284 -typedef struct PmaReader PmaReader; /* Incrementally read one PMA */PmaReader84280,3079354 -typedef struct PmaWriter PmaWriter; /* Incrementally write one PMA */PmaWriter84281,3079431 -typedef struct SorterRecord SorterRecord; /* A record being sorted */SorterRecord84282,3079509 -typedef struct SortSubtask SortSubtask; /* A sub-task in the sort process */SortSubtask84283,3079581 -typedef struct SorterFile SorterFile; /* Temporary file object wrapper */SorterFile84284,3079662 -typedef struct SorterList SorterList; /* In-memory list of records */SorterList84285,3079742 -typedef struct IncrMerger IncrMerger; /* Read & merge multiple PMAs */IncrMerger84286,3079818 -struct SorterFile {SorterFile84292,3079995 - sqlite3_file *pFd; /* File handle */pFd84293,3080015 - sqlite3_file *pFd; /* File handle */SorterFile::pFd84293,3080015 - i64 iEof; /* Bytes of data stored in pFd */iEof84294,3080067 - i64 iEof; /* Bytes of data stored in pFd */SorterFile::iEof84294,3080067 -struct SorterList {SorterList84305,3080465 - SorterRecord *pList; /* Linked list of records */pList84306,3080485 - SorterRecord *pList; /* Linked list of records */SorterList::pList84306,3080485 - u8 *aMemory; /* If non-NULL, bulk memory to hold pList */aMemory84307,3080548 - u8 *aMemory; /* If non-NULL, bulk memory to hold pList */SorterList::aMemory84307,3080548 - int szPMA; /* Size of pList as PMA in bytes */szPMA84308,3080627 - int szPMA; /* Size of pList as PMA in bytes */SorterList::szPMA84308,3080627 -struct MergeEngine {MergeEngine84375,3083604 - int nTree; /* Used size of aTree/aReadr (power of 2) */nTree84376,3083625 - int nTree; /* Used size of aTree/aReadr (power of 2) */MergeEngine::nTree84376,3083625 - SortSubtask *pTask; /* Used by this thread only */pTask84377,3083699 - SortSubtask *pTask; /* Used by this thread only */MergeEngine::pTask84377,3083699 - int *aTree; /* Current state of incremental merge */aTree84378,3083759 - int *aTree; /* Current state of incremental merge */MergeEngine::aTree84378,3083759 - PmaReader *aReadr; /* Array of PmaReaders to merge data from */aReadr84379,3083829 - PmaReader *aReadr; /* Array of PmaReaders to merge data from */MergeEngine::aReadr84379,3083829 -typedef int (*SorterCompare)(SortSubtask*,int*,const void*,int,const void*,int);SorterCompare84413,3085502 -struct SortSubtask {SortSubtask84414,3085583 - SQLiteThread *pThread; /* Background thread, if any */pThread84415,3085604 - SQLiteThread *pThread; /* Background thread, if any */SortSubtask::pThread84415,3085604 - int bDone; /* Set if thread is finished but not joined */bDone84416,3085670 - int bDone; /* Set if thread is finished but not joined */SortSubtask::bDone84416,3085670 - VdbeSorter *pSorter; /* Sorter that owns this sub-task */pSorter84417,3085751 - VdbeSorter *pSorter; /* Sorter that owns this sub-task */SortSubtask::pSorter84417,3085751 - UnpackedRecord *pUnpacked; /* Space to unpack a record */pUnpacked84418,3085822 - UnpackedRecord *pUnpacked; /* Space to unpack a record */SortSubtask::pUnpacked84418,3085822 - SorterList list; /* List for thread to write to a PMA */list84419,3085887 - SorterList list; /* List for thread to write to a PMA */SortSubtask::list84419,3085887 - int nPMA; /* Number of PMAs currently in file */nPMA84420,3085961 - int nPMA; /* Number of PMAs currently in file */SortSubtask::nPMA84420,3085961 - SorterCompare xCompare; /* Compare function to use */xCompare84421,3086034 - SorterCompare xCompare; /* Compare function to use */SortSubtask::xCompare84421,3086034 - SorterFile file; /* Temp file for level-0 PMAs */file84422,3086098 - SorterFile file; /* Temp file for level-0 PMAs */SortSubtask::file84422,3086098 - SorterFile file2; /* Space for other PMAs */file284423,3086165 - SorterFile file2; /* Space for other PMAs */SortSubtask::file284423,3086165 -struct VdbeSorter {VdbeSorter84436,3086553 - int mnPmaSize; /* Minimum PMA size, in bytes */mnPmaSize84437,3086573 - int mnPmaSize; /* Minimum PMA size, in bytes */VdbeSorter::mnPmaSize84437,3086573 - int mxPmaSize; /* Maximum PMA size, in bytes. 0==no limit */mxPmaSize84438,3086640 - int mxPmaSize; /* Maximum PMA size, in bytes. 0==no limit */VdbeSorter::mxPmaSize84438,3086640 - int mxKeysize; /* Largest serialized key seen so far */mxKeysize84439,3086721 - int mxKeysize; /* Largest serialized key seen so far */VdbeSorter::mxKeysize84439,3086721 - int pgsz; /* Main database page size */pgsz84440,3086796 - int pgsz; /* Main database page size */VdbeSorter::pgsz84440,3086796 - PmaReader *pReader; /* Readr data from here after Rewind() */pReader84441,3086860 - PmaReader *pReader; /* Readr data from here after Rewind() */VdbeSorter::pReader84441,3086860 - MergeEngine *pMerger; /* Or here, if bUseThreads==0 */pMerger84442,3086936 - MergeEngine *pMerger; /* Or here, if bUseThreads==0 */VdbeSorter::pMerger84442,3086936 - sqlite3 *db; /* Database connection */db84443,3087003 - sqlite3 *db; /* Database connection */VdbeSorter::db84443,3087003 - KeyInfo *pKeyInfo; /* How to compare records */pKeyInfo84444,3087063 - KeyInfo *pKeyInfo; /* How to compare records */VdbeSorter::pKeyInfo84444,3087063 - UnpackedRecord *pUnpacked; /* Used by VdbeSorterCompare() */pUnpacked84445,3087126 - UnpackedRecord *pUnpacked; /* Used by VdbeSorterCompare() */VdbeSorter::pUnpacked84445,3087126 - SorterList list; /* List of in-memory records */list84446,3087194 - SorterList list; /* List of in-memory records */VdbeSorter::list84446,3087194 - int iMemory; /* Offset of free space in list.aMemory */iMemory84447,3087260 - int iMemory; /* Offset of free space in list.aMemory */VdbeSorter::iMemory84447,3087260 - int nMemory; /* Size of list.aMemory allocation in bytes */nMemory84448,3087337 - int nMemory; /* Size of list.aMemory allocation in bytes */VdbeSorter::nMemory84448,3087337 - u8 bUsePMA; /* True if one or more PMAs created */bUsePMA84449,3087418 - u8 bUsePMA; /* True if one or more PMAs created */VdbeSorter::bUsePMA84449,3087418 - u8 bUseThreads; /* True to use background threads */bUseThreads84450,3087491 - u8 bUseThreads; /* True to use background threads */VdbeSorter::bUseThreads84450,3087491 - u8 iPrev; /* Previous thread used to flush PMA */iPrev84451,3087562 - u8 iPrev; /* Previous thread used to flush PMA */VdbeSorter::iPrev84451,3087562 - u8 nTask; /* Size of aTask[] array */nTask84452,3087636 - u8 nTask; /* Size of aTask[] array */VdbeSorter::nTask84452,3087636 - u8 typeMask;typeMask84453,3087698 - u8 typeMask;VdbeSorter::typeMask84453,3087698 - SortSubtask aTask[1]; /* One or more subtasks */aTask84454,3087713 - SortSubtask aTask[1]; /* One or more subtasks */VdbeSorter::aTask84454,3087713 -#define SORTER_TYPE_INTEGER SORTER_TYPE_INTEGER84457,3087778 -#define SORTER_TYPE_TEXT SORTER_TYPE_TEXT84458,3087811 -struct PmaReader {PmaReader84469,3088246 - i64 iReadOff; /* Current read offset */iReadOff84470,3088265 - i64 iReadOff; /* Current read offset */PmaReader::iReadOff84470,3088265 - i64 iEof; /* 1 byte past EOF for this PmaReader */iEof84471,3088321 - i64 iEof; /* 1 byte past EOF for this PmaReader */PmaReader::iEof84471,3088321 - int nAlloc; /* Bytes of space at aAlloc */nAlloc84472,3088392 - int nAlloc; /* Bytes of space at aAlloc */PmaReader::nAlloc84472,3088392 - int nKey; /* Number of bytes in key */nKey84473,3088453 - int nKey; /* Number of bytes in key */PmaReader::nKey84473,3088453 - sqlite3_file *pFd; /* File handle we are reading from */pFd84474,3088512 - sqlite3_file *pFd; /* File handle we are reading from */PmaReader::pFd84474,3088512 - u8 *aAlloc; /* Space for aKey if aBuffer and pMap wont work */aAlloc84475,3088580 - u8 *aAlloc; /* Space for aKey if aBuffer and pMap wont work */PmaReader::aAlloc84475,3088580 - u8 *aKey; /* Pointer to current key */aKey84476,3088661 - u8 *aKey; /* Pointer to current key */PmaReader::aKey84476,3088661 - u8 *aBuffer; /* Current read buffer */aBuffer84477,3088720 - u8 *aBuffer; /* Current read buffer */PmaReader::aBuffer84477,3088720 - int nBuffer; /* Size of read buffer in bytes */nBuffer84478,3088776 - int nBuffer; /* Size of read buffer in bytes */PmaReader::nBuffer84478,3088776 - u8 *aMap; /* Pointer to mapping of entire file */aMap84479,3088841 - u8 *aMap; /* Pointer to mapping of entire file */PmaReader::aMap84479,3088841 - IncrMerger *pIncr; /* Incremental merger */pIncr84480,3088911 - IncrMerger *pIncr; /* Incremental merger */PmaReader::pIncr84480,3088911 -struct IncrMerger {IncrMerger84515,3090690 - SortSubtask *pTask; /* Task that owns this merger */pTask84516,3090710 - SortSubtask *pTask; /* Task that owns this merger */IncrMerger::pTask84516,3090710 - MergeEngine *pMerger; /* Merge engine thread reads data from */pMerger84517,3090777 - MergeEngine *pMerger; /* Merge engine thread reads data from */IncrMerger::pMerger84517,3090777 - i64 iStartOff; /* Offset to start writing file at */iStartOff84518,3090853 - i64 iStartOff; /* Offset to start writing file at */IncrMerger::iStartOff84518,3090853 - int mxSz; /* Maximum bytes of data to store */mxSz84519,3090925 - int mxSz; /* Maximum bytes of data to store */IncrMerger::mxSz84519,3090925 - int bEof; /* Set to true when merge is finished */bEof84520,3090996 - int bEof; /* Set to true when merge is finished */IncrMerger::bEof84520,3090996 - int bUseThread; /* True to use a bg thread for this object */bUseThread84521,3091071 - int bUseThread; /* True to use a bg thread for this object */IncrMerger::bUseThread84521,3091071 - SorterFile aFile[2]; /* aFile[0] for reading, [1] for writing */aFile84522,3091151 - SorterFile aFile[2]; /* aFile[0] for reading, [1] for writing */IncrMerger::aFile84522,3091151 -struct PmaWriter {PmaWriter84533,3091584 - int eFWErr; /* Non-zero if in an error state */eFWErr84534,3091603 - int eFWErr; /* Non-zero if in an error state */PmaWriter::eFWErr84534,3091603 - u8 *aBuffer; /* Pointer to write buffer */aBuffer84535,3091673 - u8 *aBuffer; /* Pointer to write buffer */PmaWriter::aBuffer84535,3091673 - int nBuffer; /* Size of write buffer in bytes */nBuffer84536,3091737 - int nBuffer; /* Size of write buffer in bytes */PmaWriter::nBuffer84536,3091737 - int iBufStart; /* First byte of buffer to write */iBufStart84537,3091807 - int iBufStart; /* First byte of buffer to write */PmaWriter::iBufStart84537,3091807 - int iBufEnd; /* Last byte of buffer to write */iBufEnd84538,3091877 - int iBufEnd; /* Last byte of buffer to write */PmaWriter::iBufEnd84538,3091877 - i64 iWriteOff; /* Offset of start of buffer in file */iWriteOff84539,3091946 - i64 iWriteOff; /* Offset of start of buffer in file */PmaWriter::iWriteOff84539,3091946 - sqlite3_file *pFd; /* File handle to write to */pFd84540,3092020 - sqlite3_file *pFd; /* File handle to write to */PmaWriter::pFd84540,3092020 -struct SorterRecord {SorterRecord84561,3093051 - int nVal; /* Size of the record in bytes */nVal84562,3093073 - int nVal; /* Size of the record in bytes */SorterRecord::nVal84562,3093073 - SorterRecord *pNext; /* Pointer to next record in list */pNext84564,3093151 - SorterRecord *pNext; /* Pointer to next record in list */SorterRecord::__anon468::pNext84564,3093151 - int iNext; /* Offset within aMemory of next record */iNext84565,3093222 - int iNext; /* Offset within aMemory of next record */SorterRecord::__anon468::iNext84565,3093222 - } u;u84566,3093299 - } u;SorterRecord::u84566,3093299 -#define SRVAL(SRVAL84575,3093552 -#define SORTER_MAX_MERGE_COUNT SORTER_MAX_MERGE_COUNT84579,3093670 -static void vdbePmaReaderClear(PmaReader *pReadr){vdbePmaReaderClear84588,3093925 -static int vdbePmaReadBlob(vdbePmaReadBlob84605,3094492 -static int vdbePmaReadVarint(PmaReader *p, u64 *pnOut){vdbePmaReadVarint84699,3097752 -static int vdbeSorterMapFile(SortSubtask *pTask, SorterFile *pFile, u8 **pp){vdbeSorterMapFile84732,3098721 -static int vdbePmaReaderSeek(vdbePmaReaderSeek84749,3099303 -static int vdbePmaReaderNext(PmaReader *pReadr){vdbePmaReaderNext84796,3100739 -static int vdbePmaReaderInit(vdbePmaReaderInit84843,3102025 -static int vdbeSorterCompareTail(vdbeSorterCompareTail84876,3103038 -static int vdbeSorterCompare(vdbeSorterCompare84903,3104188 -static int vdbeSorterCompareText(vdbeSorterCompareText84922,3104910 -static int vdbeSorterCompareInt(vdbeSorterCompareInt84963,3106065 -SQLITE_PRIVATE int sqlite3VdbeSorterInit(sqlite3VdbeSorterInit85046,3108850 -# define nWorker nWorker85059,3109579 -#undef nWorker nWorker85145,3112359 -static void vdbeSorterRecordFree(sqlite3 *db, SorterRecord *pRecord){vdbeSorterRecordFree85150,3112481 -static void vdbeSortSubtaskCleanup(sqlite3 *db, SortSubtask *pTask){vdbeSortSubtaskCleanup85163,3112811 -static void vdbeSorterWorkDebug(SortSubtask *pTask, const char *zEvent){vdbeSorterWorkDebug85186,3113495 -static void vdbeSorterRewindDebug(const char *zEvent){vdbeSorterRewindDebug85192,3113738 -static void vdbeSorterPopulateDebug(vdbeSorterPopulateDebug85197,3113903 -static void vdbeSorterBlockDebug(vdbeSorterBlockDebug85206,3114158 -# define vdbeSorterWorkDebug(vdbeSorterWorkDebug85218,3114406 -# define vdbeSorterRewindDebug(vdbeSorterRewindDebug85219,3114440 -# define vdbeSorterPopulateDebug(vdbeSorterPopulateDebug85220,3114474 -# define vdbeSorterBlockDebug(vdbeSorterBlockDebug85221,3114512 -static int vdbeSorterJoinThread(SortSubtask *pTask){vdbeSorterJoinThread85228,3114625 -static int vdbeSorterCreateThread(vdbeSorterCreateThread85249,3115183 -static int vdbeSorterJoinAll(VdbeSorter *pSorter, int rcin){vdbeSorterJoinAll85262,3115643 -# define vdbeSorterJoinAll(vdbeSorterJoinAll85281,3116349 -# define vdbeSorterJoinThread(vdbeSorterJoinThread85282,3116391 -static MergeEngine *vdbeMergeEngineNew(int nReader){vdbeMergeEngineNew85292,3116685 -static void vdbeMergeEngineFree(MergeEngine *pMerger){vdbeMergeEngineFree85315,3117413 -static void vdbeIncrFree(IncrMerger *pIncr){vdbeIncrFree85329,3117718 -SQLITE_PRIVATE void sqlite3VdbeSorterReset(sqlite3 *db, VdbeSorter *pSorter){sqlite3VdbeSorterReset85346,3118179 -SQLITE_PRIVATE void sqlite3VdbeSorterClose(sqlite3 *db, VdbeCursor *pCsr){sqlite3VdbeSorterClose85379,3119132 -static void vdbeSorterExtendFile(sqlite3 *db, sqlite3_file *pFd, i64 nByte){vdbeSorterExtendFile85401,3119863 -# define vdbeSorterExtendFile(vdbeSorterExtendFile85412,3120285 -static int vdbeSorterOpenTempFile(vdbeSorterOpenTempFile85420,3120548 -static int vdbeSortAllocUnpacked(SortSubtask *pTask){vdbeSortAllocUnpacked85447,3121456 -static void vdbeSorterMerge(vdbeSorterMerge85466,3122003 -static SorterCompare vdbeSorterGetCompare(VdbeSorter *p){vdbeSorterGetCompare85501,3122854 -static int vdbeSorterSort(SortSubtask *pTask, SorterList *pList){vdbeSorterSort85515,3123271 -static void vdbePmaWriterInit(vdbePmaWriterInit85570,3124454 -static void vdbePmaWriteBlob(PmaWriter *p, u8 *pData, int nData){vdbePmaWriteBlob85592,3125143 -static int vdbePmaWriterFinish(PmaWriter *p, i64 *piEof){vdbePmaWriterFinish85625,3126172 -static void vdbePmaWriteVarint(PmaWriter *p, u64 iVal){vdbePmaWriteVarint85644,3126736 -static int vdbeSorterListToPMA(SortSubtask *pTask, SorterList *pList){vdbeSorterListToPMA85665,3127496 -static int vdbeMergeEngineStep(vdbeMergeEngineStep85729,3129552 -static void *vdbeSorterFlushThread(void *pCtx){vdbeSorterFlushThread85800,3132419 -static int vdbeSorterFlushPMA(VdbeSorter *pSorter){vdbeSorterFlushPMA85814,3132844 -SQLITE_PRIVATE int sqlite3VdbeSorterWrite(sqlite3VdbeSorterWrite85881,3135175 -static int vdbeIncrPopulate(IncrMerger *pIncr){vdbeIncrPopulate85989,3138886 -static void *vdbeIncrPopulateThread(void *pCtx){vdbeIncrPopulateThread86031,3140220 -static int vdbeIncrBgPopulate(IncrMerger *pIncr){vdbeIncrBgPopulate86041,3140483 -static int vdbeIncrSwap(IncrMerger *pIncr){vdbeIncrSwap86065,3141443 -static int vdbeIncrMergerNew(vdbeIncrMergerNew86104,3142311 -static void vdbeIncrMergerSetThreads(IncrMerger *pIncr){vdbeIncrMergerSetThreads86128,3143071 -static void vdbeMergeEngineCompare(vdbeMergeEngineCompare86141,3143442 -#define INCRINIT_NORMAL INCRINIT_NORMAL86194,3144710 -#define INCRINIT_TASK INCRINIT_TASK86195,3144736 -#define INCRINIT_ROOT INCRINIT_ROOT86196,3144762 -static int vdbeMergeEngineInit(vdbeMergeEngineInit86223,3145869 -static int vdbePmaReaderIncrMergeInit(PmaReader *pReadr, int eMode){vdbePmaReaderIncrMergeInit86294,3149197 -static void *vdbePmaReaderBgIncrInit(void *pCtx){vdbePmaReaderBgIncrInit86361,3151464 -static int vdbePmaReaderIncrInit(PmaReader *pReadr, int eMode){vdbePmaReaderIncrInit86382,3152286 -static int vdbeMergeEngineLevel0(vdbeMergeEngineLevel086412,3153412 -static int vdbeSorterTreeDepth(int nPMA){vdbeSorterTreeDepth86451,3154514 -static int vdbeSorterAddToTree(vdbeSorterAddToTree86469,3155067 -static int vdbeSorterMergeTreeBuild(vdbeSorterMergeTreeBuild86525,3156810 -static int vdbeSorterSetupMerge(VdbeSorter *pSorter){vdbeSorterSetupMerge86604,3159455 -SQLITE_PRIVATE int sqlite3VdbeSorterRewind(const VdbeCursor *pCsr, int *pbEof){sqlite3VdbeSorterRewind86686,3162173 -SQLITE_PRIVATE int sqlite3VdbeSorterNext(sqlite3 *db, const VdbeCursor *pCsr, int *pbEof){sqlite3VdbeSorterNext86734,3163607 -static void *vdbeSorterRowkey(vdbeSorterRowkey86771,3164859 -SQLITE_PRIVATE int sqlite3VdbeSorterRowkey(const VdbeCursor *pCsr, Mem *pOut){sqlite3VdbeSorterRowkey86798,3165542 -SQLITE_PRIVATE int sqlite3VdbeSorterCompare(sqlite3VdbeSorterCompare86831,3166752 -typedef struct MemJournal MemJournal;MemJournal86899,3169245 -typedef struct FilePoint FilePoint;FilePoint86900,3169283 -typedef struct FileChunk FileChunk;FileChunk86901,3169319 -struct FileChunk {FileChunk86909,3169583 - FileChunk *pNext; /* Next chunk in the journal */pNext86910,3169602 - FileChunk *pNext; /* Next chunk in the journal */FileChunk::pNext86910,3169602 - u8 zChunk[8]; /* Content of this chunk */zChunk86911,3169668 - u8 zChunk[8]; /* Content of this chunk */FileChunk::zChunk86911,3169668 -#define MEMJOURNAL_DFLT_FILECHUNKSIZE MEMJOURNAL_DFLT_FILECHUNKSIZE86917,3169817 -#define fileChunkSize(fileChunkSize86923,3169982 -struct FilePoint {FilePoint86929,3170190 - sqlite3_int64 iOffset; /* Offset from the beginning of the file */iOffset86930,3170209 - sqlite3_int64 iOffset; /* Offset from the beginning of the file */FilePoint::iOffset86930,3170209 - FileChunk *pChunk; /* Specific chunk into which cursor points */pChunk86931,3170287 - FileChunk *pChunk; /* Specific chunk into which cursor points */FilePoint::pChunk86931,3170287 -struct MemJournal {MemJournal86938,3170484 - const sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */pMethod86939,3170504 - const sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */MemJournal::pMethod86939,3170504 - int nChunkSize; /* In-memory chunk-size */nChunkSize86940,3170575 - int nChunkSize; /* In-memory chunk-size */MemJournal::nChunkSize86940,3170575 - int nSpill; /* Bytes of data before flushing */nSpill86942,3170637 - int nSpill; /* Bytes of data before flushing */MemJournal::nSpill86942,3170637 - int nSize; /* Bytes of data currently in memory */nSize86943,3170707 - int nSize; /* Bytes of data currently in memory */MemJournal::nSize86943,3170707 - FileChunk *pFirst; /* Head of in-memory chunk-list */pFirst86944,3170781 - FileChunk *pFirst; /* Head of in-memory chunk-list */MemJournal::pFirst86944,3170781 - FilePoint endpoint; /* Pointer to the end of the file */endpoint86945,3170850 - FilePoint endpoint; /* Pointer to the end of the file */MemJournal::endpoint86945,3170850 - FilePoint readpoint; /* Pointer to the end of the last xRead() */readpoint86946,3170921 - FilePoint readpoint; /* Pointer to the end of the last xRead() */MemJournal::readpoint86946,3170921 - int flags; /* xOpen flags */flags86948,3171001 - int flags; /* xOpen flags */MemJournal::flags86948,3171001 - sqlite3_vfs *pVfs; /* The "real" underlying VFS */pVfs86949,3171053 - sqlite3_vfs *pVfs; /* The "real" underlying VFS */MemJournal::pVfs86949,3171053 - const char *zJournal; /* Name of the journal file */zJournal86950,3171119 - const char *zJournal; /* Name of the journal file */MemJournal::zJournal86950,3171119 -static int memjrnlRead(memjrnlRead86957,3171304 -static void memjrnlFreeChunks(MemJournal *p){memjrnlFreeChunks87008,3172748 -static int memjrnlCreateFile(MemJournal *p){memjrnlCreateFile87021,3173016 -static int memjrnlWrite(memjrnlWrite87060,3174135 -static int memjrnlTruncate(sqlite3_file *pJfd, sqlite_int64 size){memjrnlTruncate87138,3176656 -static int memjrnlClose(sqlite3_file *pJfd){memjrnlClose87154,3176998 -static int memjrnlSync(sqlite3_file *pJfd, int flags){memjrnlSync87166,3177273 -static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){memjrnlFileSize87174,3177431 -static const struct sqlite3_io_methods MemJournalMethods = {MemJournalMethods87183,3177670 -SQLITE_PRIVATE int sqlite3JournalOpen(sqlite3JournalOpen87217,3179006 -SQLITE_PRIVATE void sqlite3MemJournalOpen(sqlite3_file *pJfd){sqlite3MemJournalOpen87253,3180203 -SQLITE_PRIVATE int sqlite3JournalCreate(sqlite3_file *p){sqlite3JournalCreate87264,3180582 -SQLITE_PRIVATE int sqlite3JournalIsInMemory(sqlite3_file *p){sqlite3JournalIsInMemory87278,3180981 -SQLITE_PRIVATE int sqlite3JournalSize(sqlite3_vfs *pVfs){sqlite3JournalSize87286,3181219 -static SQLITE_NOINLINE int walkExpr(Walker *pWalker, Expr *pExpr){walkExpr87330,3182787 -SQLITE_PRIVATE int sqlite3WalkExpr(Walker *pWalker, Expr *pExpr){sqlite3WalkExpr87347,3183474 -SQLITE_PRIVATE int sqlite3WalkExprList(Walker *pWalker, ExprList *p){sqlite3WalkExprList87355,3183701 -SQLITE_PRIVATE int sqlite3WalkSelectExpr(Walker *pWalker, Select *p){sqlite3WalkSelectExpr87372,3184222 -SQLITE_PRIVATE int sqlite3WalkSelectFrom(Walker *pWalker, Select *p){sqlite3WalkSelectFrom87390,3185056 -SQLITE_PRIVATE int sqlite3WalkSelect(Walker *pWalker, Select *p){sqlite3WalkSelect87427,3186186 -static int incrAggDepth(Walker *pWalker, Expr *pExpr){incrAggDepth87485,3188017 -static void incrAggFunctionDepth(Expr *pExpr, int N){incrAggFunctionDepth87489,3188160 -static void resolveAlias(resolveAlias87518,3189092 -static int nameInUsingClause(IdList *pUsing, const char *zCol){nameInUsingClause87567,3191008 -SQLITE_PRIVATE int sqlite3MatchSpanName(sqlite3MatchSpanName87584,3191551 -static int lookupName(lookupName87634,3193469 -SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){sqlite3CreateColumnExpr87957,3204668 -static void notValid(notValid87980,3205339 -static int exprProbability(Expr *p){exprProbability88002,3206154 -static int resolveExprStep(Walker *pWalker, Expr *pExpr){resolveExprStep88022,3206796 -static int resolveAsName(resolveAsName88246,3215175 -static int resolveOrderByTermToExprList(resolveOrderByTermToExprList88285,3216457 -static void resolveOutOfRangeError(resolveOutOfRangeError88332,3217856 -static int resolveCompoundOrderBy(resolveCompoundOrderBy88358,3218970 -SQLITE_PRIVATE int sqlite3ResolveOrderGroupBy(sqlite3ResolveOrderGroupBy88456,3222015 -static int resolveOrderGroupBy(resolveOrderGroupBy88507,3224047 -static int resolveSelectStep(Walker *pWalker, Select *p){resolveSelectStep88565,3226290 -SQLITE_PRIVATE int sqlite3ResolveExprNames( sqlite3ResolveExprNames88833,3236604 -SQLITE_PRIVATE int sqlite3ResolveExprListNames( sqlite3ResolveExprListNames88878,3237882 -SQLITE_PRIVATE void sqlite3ResolveSelectNames(sqlite3ResolveSelectNames88903,3238673 -SQLITE_PRIVATE void sqlite3ResolveSelfReference(sqlite3ResolveSelfReference88930,3239481 -SQLITE_PRIVATE char sqlite3ExprAffinity(Expr *pExpr){sqlite3ExprAffinity88988,3241643 -SQLITE_PRIVATE Expr *sqlite3ExprAddCollateToken(sqlite3ExprAddCollateToken89024,3242857 -SQLITE_PRIVATE Expr *sqlite3ExprAddCollateString(Parse *pParse, Expr *pExpr, const char *zC){sqlite3ExprAddCollateString89040,3243389 -SQLITE_PRIVATE Expr *sqlite3ExprSkipCollate(Expr *pExpr){sqlite3ExprSkipCollate89051,3243731 -SQLITE_PRIVATE CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){sqlite3ExprCollSeq89075,3244540 -SQLITE_PRIVATE char sqlite3CompareAffinity(Expr *pExpr, char aff2){sqlite3CompareAffinity89139,3246602 -static char comparisonAffinity(Expr *pExpr){comparisonAffinity89166,3247466 -SQLITE_PRIVATE int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){sqlite3IndexAffinityOk89189,3248311 -static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){binaryCompareP589205,3248766 -SQLITE_PRIVATE CollSeq *sqlite3BinaryCompareCollSeq(sqlite3BinaryCompareCollSeq89223,3249432 -static int codeCompare(codeCompare89246,3249964 -SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){sqlite3ExprCheckHeight89273,3250869 -static void heightOfExpr(Expr *p, int *pnHeight){heightOfExpr89294,3251570 -static void heightOfExprList(ExprList *p, int *pnHeight){heightOfExprList89301,3251705 -static void heightOfSelect(Select *p, int *pnHeight){heightOfSelect89309,3251873 -static void exprSetHeight(Expr *p){exprSetHeight89332,3252652 -SQLITE_PRIVATE void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){sqlite3ExprSetHeightAndFlags89353,3253298 -SQLITE_PRIVATE int sqlite3SelectExprHeight(Select *p){sqlite3SelectExprHeight89363,3253589 -SQLITE_PRIVATE void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){sqlite3ExprSetHeightAndFlags89373,3253878 -#define exprSetHeight(exprSetHeight89378,3254085 -SQLITE_PRIVATE Expr *sqlite3ExprAlloc(sqlite3ExprAlloc89401,3255158 -SQLITE_PRIVATE Expr *sqlite3Expr(sqlite3Expr89450,3256536 -SQLITE_PRIVATE void sqlite3ExprAttachSubtrees(sqlite3ExprAttachSubtrees89467,3257081 -SQLITE_PRIVATE Expr *sqlite3PExpr(sqlite3PExpr89497,3257815 -SQLITE_PRIVATE void sqlite3PExprAddSelect(Parse *pParse, Expr *pExpr, Select *pSelect){sqlite3PExprAddSelect89522,3258622 -static int exprAlwaysTrue(Expr *p){exprAlwaysTrue89548,3259591 -static int exprAlwaysFalse(Expr *p){exprAlwaysFalse89554,3259754 -SQLITE_PRIVATE Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){sqlite3ExprAnd89569,3260217 -SQLITE_PRIVATE Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){sqlite3ExprFunction89589,3260804 -SQLITE_PRIVATE void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){sqlite3ExprAssignVarNumber89620,3261906 -static SQLITE_NOINLINE void sqlite3ExprDeleteNN(sqlite3 *db, Expr *p){sqlite3ExprDeleteNN89694,3264371 -SQLITE_PRIVATE void sqlite3ExprDelete(sqlite3 *db, Expr *p){sqlite3ExprDelete89714,3265137 -static int exprStructSize(Expr *p){exprStructSize89723,3265428 -static int dupedExprStructSize(Expr *p, int flags){dupedExprStructSize89763,3267288 -static int dupedExprNodeSize(Expr *p, int flags){dupedExprNodeSize89790,3268151 -static int dupedExprSize(Expr *p, int flags){dupedExprSize89811,3268989 -static Expr *exprDup(sqlite3 *db, Expr *p, int dupFlags, u8 **pzBuffer){exprDup89830,3269672 -static With *withDup(sqlite3 *db, With *p){withDup89923,3272838 -# define withDup(withDup89941,3273347 -SQLITE_PRIVATE Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){sqlite3ExprDup89961,3274195 -SQLITE_PRIVATE ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){sqlite3ExprListDup89965,3274357 -SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){sqlite3SrcListDup90002,3275632 -SQLITE_PRIVATE IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){sqlite3IdListDup90043,3277166 -SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){sqlite3SelectDup90067,3277955 -SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){sqlite3SelectDup90096,3279071 -SQLITE_PRIVATE ExprList *sqlite3ExprListAppend(sqlite3ExprListAppend90111,3279506 -SQLITE_PRIVATE void sqlite3ExprListSetSortOrder(ExprList *p, int iSortOrder){sqlite3ExprListSetSortOrder90153,3280686 -SQLITE_PRIVATE void sqlite3ExprListSetName(sqlite3ExprListSetName90172,3281294 -SQLITE_PRIVATE void sqlite3ExprListSetSpan(sqlite3ExprListSetSpan90197,3282161 -SQLITE_PRIVATE void sqlite3ExprListCheckLength(sqlite3ExprListCheckLength90218,3282904 -static SQLITE_NOINLINE void exprListDeleteNN(sqlite3 *db, ExprList *pList){exprListDeleteNN90234,3283304 -SQLITE_PRIVATE void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){sqlite3ExprListDelete90246,3283702 -SQLITE_PRIVATE u32 sqlite3ExprListFlags(const ExprList *pList){sqlite3ExprListFlags90254,3283903 -static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){exprNodeIsConstant90292,3285377 -static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){selectNodeIsConstant90346,3287286 -static int exprIsConst(Expr *p, int initFlag, int iCur){exprIsConst90351,3287426 -SQLITE_PRIVATE int sqlite3ExprIsConstant(Expr *p){sqlite3ExprIsConstant90370,3287990 -SQLITE_PRIVATE int sqlite3ExprIsConstantNotJoin(Expr *p){sqlite3ExprIsConstantNotJoin90380,3288317 -SQLITE_PRIVATE int sqlite3ExprIsTableConstant(Expr *p, int iCur){sqlite3ExprIsTableConstant90390,3288661 -SQLITE_PRIVATE int sqlite3ExprIsConstantOrFunction(Expr *p, u8 isInit){sqlite3ExprIsConstantOrFunction90403,3289098 -SQLITE_PRIVATE int sqlite3ExprContainsSubquery(Expr *p){sqlite3ExprContainsSubquery90413,3289418 -SQLITE_PRIVATE int sqlite3ExprIsInteger(Expr *p, int *pValue){sqlite3ExprIsInteger90430,3289968 -SQLITE_PRIVATE int sqlite3ExprCanBeNull(const Expr *p){sqlite3ExprCanBeNull90475,3291334 -SQLITE_PRIVATE int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){sqlite3ExprNeedsNoAffinityChange90505,3292194 -SQLITE_PRIVATE int sqlite3IsRowid(const char *z){sqlite3IsRowid90538,3293046 -static Select *isCandidateForInOpt(Expr *pX){isCandidateForInOpt90553,3293590 -SQLITE_PRIVATE int sqlite3CodeOnce(Parse *pParse){sqlite3CodeOnce90593,3295328 -static void sqlite3SetHasNullFlag(Vdbe *v, int iCur, int regHasNull){sqlite3SetHasNullFlag90604,3295817 -static int sqlite3InRhsIsConstant(Expr *pIn){sqlite3InRhsIsConstant90620,3296367 -SQLITE_PRIVATE int sqlite3FindInIndex(Parse *pParse, Expr *pX, u32 inFlags, int *prRhsHasNull){sqlite3FindInIndex90703,3300187 -SQLITE_PRIVATE int sqlite3CodeSubselect(sqlite3CodeSubselect90853,3306319 -static void sqlite3ExprCodeIN(sqlite3ExprCodeIN91083,3315346 -static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){codeReal91242,3321718 -static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){codeInteger91260,3322254 -static int cacheIsValid(Parse *pParse){cacheIsValid91297,3323267 -static void cacheEntryClear(Parse *pParse, struct yColCache *p){cacheEntryClear91309,3323477 -SQLITE_PRIVATE void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){sqlite3ExprCacheStore91326,3323930 -SQLITE_PRIVATE void sqlite3ExprCacheRemove(Parse *pParse, int iReg, int nReg){sqlite3ExprCacheRemove91394,3325949 -SQLITE_PRIVATE void sqlite3ExprCachePush(Parse *pParse){sqlite3ExprCachePush91410,3326459 -SQLITE_PRIVATE void sqlite3ExprCachePop(Parse *pParse){sqlite3ExprCachePop91424,3326888 -static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){sqlite3ExprCachePinRegister91447,3327557 -SQLITE_PRIVATE void sqlite3ExprCodeLoadIndexColumn(sqlite3ExprCodeLoadIndexColumn91460,3327907 -SQLITE_PRIVATE void sqlite3ExprCodeGetColumnOfTable(sqlite3ExprCodeGetColumnOfTable91482,3328726 -SQLITE_PRIVATE int sqlite3ExprCodeGetColumn(sqlite3ExprCodeGetColumn91516,3329993 -SQLITE_PRIVATE void sqlite3ExprCodeGetColumnToReg(sqlite3ExprCodeGetColumnToReg91544,3330912 -SQLITE_PRIVATE void sqlite3ExprCacheClear(Parse *pParse){sqlite3ExprCacheClear91559,3331443 -SQLITE_PRIVATE void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){sqlite3ExprCacheAffinityChange91579,3331873 -SQLITE_PRIVATE void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){sqlite3ExprCodeMove91587,3332154 -static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){usedAsColumnCache91601,3332685 -static void exprToRegister(Expr *p, int iReg){exprToRegister91616,3333044 -SQLITE_PRIVATE int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){sqlite3ExprCodeTarget91634,3333645 -SQLITE_PRIVATE void sqlite3ExprCodeAtInit(sqlite3ExprCodeAtInit92246,3356538 -SQLITE_PRIVATE int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){sqlite3ExprCodeTemp92278,3357695 -SQLITE_PRIVATE void sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){sqlite3ExprCode92316,3358710 -SQLITE_PRIVATE void sqlite3ExprCodeCopy(Parse *pParse, Expr *pExpr, int target){sqlite3ExprCodeCopy92336,3359416 -SQLITE_PRIVATE void sqlite3ExprCodeFactorable(Parse *pParse, Expr *pExpr, int target){sqlite3ExprCodeFactorable92349,3359944 -SQLITE_PRIVATE void sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){sqlite3ExprCodeAndCache92369,3360654 -SQLITE_PRIVATE int sqlite3ExprCodeExprList(sqlite3ExprCodeExprList92397,3361624 -static void exprCodeBetween(exprCodeBetween92450,3363270 -SQLITE_PRIVATE void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){sqlite3ExprIfTrue92507,3365677 -SQLITE_PRIVATE void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){sqlite3ExprIfFalse92628,3369895 -SQLITE_PRIVATE void sqlite3ExprIfFalseDup(Parse *pParse, Expr *pExpr, int dest,int jumpIfNull){sqlite3ExprIfFalseDup92776,3375050 -SQLITE_PRIVATE int sqlite3ExprCompare(Expr *pA, Expr *pB, int iTab){sqlite3ExprCompare92808,3376507 -SQLITE_PRIVATE int sqlite3ExprListCompare(ExprList *pA, ExprList *pB, int iTab){sqlite3ExprListCompare92866,3378600 -SQLITE_PRIVATE int sqlite3ExprImpliesExpr(Expr *pE1, Expr *pE2, int iTab){sqlite3ExprImpliesExpr92900,3379962 -struct SrcCount {SrcCount92925,3380656 - SrcList *pSrc; /* One particular FROM clause in a nested query */pSrc92926,3380674 - SrcList *pSrc; /* One particular FROM clause in a nested query */SrcCount::pSrc92926,3380674 - int nThis; /* Number of references to columns in pSrcList */nThis92927,3380744 - int nThis; /* Number of references to columns in pSrcList */SrcCount::nThis92927,3380744 - int nOther; /* Number of references to columns in other FROM clauses */nOther92928,3380813 - int nOther; /* Number of references to columns in other FROM clauses */SrcCount::nOther92928,3380813 -static int exprSrcCount(Walker *pWalker, Expr *pExpr){exprSrcCount92934,3380948 -SQLITE_PRIVATE int sqlite3FunctionUsesThisSrc(Expr *pExpr, SrcList *pSrcList){sqlite3FunctionUsesThisSrc92963,3381999 -static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){addAggInfoColumn92981,3382524 -static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){addAggInfoFunc92997,3382892 -static int analyzeAggregate(Walker *pWalker, Expr *pExpr){analyzeAggregate93014,3383296 -static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){analyzeAggregatesInSelect93139,3387971 -SQLITE_PRIVATE void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){sqlite3ExprAnalyzeAggregates93154,3388472 -SQLITE_PRIVATE void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){sqlite3ExprAnalyzeAggList93170,3388937 -SQLITE_PRIVATE int sqlite3GetTempReg(Parse *pParse){sqlite3GetTempReg93183,3389284 -SQLITE_PRIVATE void sqlite3ReleaseTempReg(Parse *pParse, int iReg){sqlite3ReleaseTempReg93198,3389704 -SQLITE_PRIVATE int sqlite3GetTempRange(Parse *pParse, int nReg){sqlite3GetTempRange93215,3390143 -SQLITE_PRIVATE void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){sqlite3ReleaseTempRange93229,3390478 -SQLITE_PRIVATE void sqlite3ClearTempRegCache(Parse *pParse){sqlite3ClearTempRegCache93240,3390773 -SQLITE_PRIVATE int sqlite3NoTempsInRange(Parse *pParse, int iFirst, int iLast){sqlite3NoTempsInRange93251,3391069 -static void renameTableFunc(renameTableFunc93306,3392820 -static void renameParentFunc(renameParentFunc93371,3394885 -static void renameTriggerFunc(renameTriggerFunc93428,3396814 -SQLITE_PRIVATE void sqlite3AlterFunctions(void){sqlite3AlterFunctions93500,3399052 -static char *whereOrName(sqlite3 *db, char *zWhere, char *zConstant){whereOrName93529,3400175 -static char *whereForeignKeys(Parse *pParse, Table *pTab){whereForeignKeys93547,3400769 -static char *whereTempTriggers(Parse *pParse, Table *pTab){whereTempTriggers93563,3401271 -static void reloadTableSchema(Parse *pParse, Table *pTab, const char *zName){reloadTableSchema93597,3402544 -static int isSystemTable(Parse *pParse, const char *zName){isSystemTable93646,3404296 -SQLITE_PRIVATE void sqlite3AlterRenameTable(sqlite3AlterRenameTable93658,3404619 -SQLITE_PRIVATE void sqlite3AlterFinishAddColumn(Parse *pParse, Token *pColDef){sqlite3AlterFinishAddColumn93862,3411441 -SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc){sqlite3AlterBeginAddColumn93997,3416277 -# define IsStat4 IsStat494223,3426320 -# define IsStat3 IsStat394224,3426343 -# define IsStat4 IsStat494226,3426401 -# define IsStat3 IsStat394227,3426424 -# define IsStat4 IsStat494229,3426453 -# define IsStat3 IsStat394230,3426476 -# undef SQLITE_STAT4_SAMPLESSQLITE_STAT4_SAMPLES94231,3426499 -# define SQLITE_STAT4_SAMPLES SQLITE_STAT4_SAMPLES94232,3426528 -#define IsStat34 IsStat3494234,3426567 -static void openStatTable(openStatTable94249,3427268 -# define SQLITE_STAT4_SAMPLES SQLITE_STAT4_SAMPLES94334,3430115 -typedef struct Stat4Accum Stat4Accum;Stat4Accum94342,3430314 -typedef struct Stat4Sample Stat4Sample;Stat4Sample94343,3430352 -struct Stat4Sample {Stat4Sample94344,3430392 - tRowcnt *anEq; /* sqlite_stat4.nEq */anEq94345,3430413 - tRowcnt *anEq; /* sqlite_stat4.nEq */Stat4Sample::anEq94345,3430413 - tRowcnt *anDLt; /* sqlite_stat4.nDLt */anDLt94346,3430470 - tRowcnt *anDLt; /* sqlite_stat4.nDLt */Stat4Sample::anDLt94346,3430470 - tRowcnt *anLt; /* sqlite_stat4.nLt */anLt94348,3430564 - tRowcnt *anLt; /* sqlite_stat4.nLt */Stat4Sample::anLt94348,3430564 - i64 iRowid; /* Rowid in main table of the key */iRowid94350,3430631 - i64 iRowid; /* Rowid in main table of the key */Stat4Sample::__anon469::iRowid94350,3430631 - u8 *aRowid; /* Key for WITHOUT ROWID tables */aRowid94351,3430704 - u8 *aRowid; /* Key for WITHOUT ROWID tables */Stat4Sample::__anon469::aRowid94351,3430704 - } u;u94352,3430775 - } u;Stat4Sample::u94352,3430775 - u32 nRowid; /* Sizeof aRowid[] */nRowid94353,3430782 - u32 nRowid; /* Sizeof aRowid[] */Stat4Sample::nRowid94353,3430782 - u8 isPSample; /* True if a periodic sample */isPSample94354,3430838 - u8 isPSample; /* True if a periodic sample */Stat4Sample::isPSample94354,3430838 - int iCol; /* If !isPSample, the reason for inclusion */iCol94355,3430904 - int iCol; /* If !isPSample, the reason for inclusion */Stat4Sample::iCol94355,3430904 - u32 iHash; /* Tiebreaker hash */iHash94356,3430984 - u32 iHash; /* Tiebreaker hash */Stat4Sample::iHash94356,3430984 -struct Stat4Accum {Stat4Accum94359,3431102 - tRowcnt nRow; /* Number of rows in the entire table */nRow94360,3431122 - tRowcnt nRow; /* Number of rows in the entire table */Stat4Accum::nRow94360,3431122 - tRowcnt nPSample; /* How often to do a periodic sample */nPSample94361,3431191 - tRowcnt nPSample; /* How often to do a periodic sample */Stat4Accum::nPSample94361,3431191 - int nCol; /* Number of columns in index + pk/rowid */nCol94362,3431259 - int nCol; /* Number of columns in index + pk/rowid */Stat4Accum::nCol94362,3431259 - int nKeyCol; /* Number of index columns w/o the pk/rowid */nKeyCol94363,3431331 - int nKeyCol; /* Number of index columns w/o the pk/rowid */Stat4Accum::nKeyCol94363,3431331 - int mxSample; /* Maximum number of samples to accumulate */mxSample94364,3431406 - int mxSample; /* Maximum number of samples to accumulate */Stat4Accum::mxSample94364,3431406 - Stat4Sample current; /* Current row as a Stat4Sample */current94365,3431480 - Stat4Sample current; /* Current row as a Stat4Sample */Stat4Accum::current94365,3431480 - u32 iPrn; /* Pseudo-random number used for sampling */iPrn94366,3431543 - u32 iPrn; /* Pseudo-random number used for sampling */Stat4Accum::iPrn94366,3431543 - Stat4Sample *aBest; /* Array of nCol best samples */aBest94367,3431616 - Stat4Sample *aBest; /* Array of nCol best samples */Stat4Accum::aBest94367,3431616 - int iMin; /* Index in a[] of entry with minimum score */iMin94368,3431677 - int iMin; /* Index in a[] of entry with minimum score */Stat4Accum::iMin94368,3431677 - int nSample; /* Current number of samples */nSample94369,3431752 - int nSample; /* Current number of samples */Stat4Accum::nSample94369,3431752 - int iGet; /* Index of current sample accessed by stat_get() */iGet94370,3431812 - int iGet; /* Index of current sample accessed by stat_get() */Stat4Accum::iGet94370,3431812 - Stat4Sample *a; /* Array of mxSample Stat4Sample objects */a94371,3431893 - Stat4Sample *a; /* Array of mxSample Stat4Sample objects */Stat4Accum::a94371,3431893 - sqlite3 *db; /* Database connection, for malloc() */db94372,3431965 - sqlite3 *db; /* Database connection, for malloc() */Stat4Accum::db94372,3431965 -static void sampleClear(sqlite3 *db, Stat4Sample *p){sampleClear94378,3432116 -static void sampleSetRowid(sqlite3 *db, Stat4Sample *p, int n, const u8 *pData){sampleSetRowid94390,3432356 -static void sampleSetRowidInt64(sqlite3 *db, Stat4Sample *p, i64 iRowid){sampleSetRowidInt6494406,3432751 -static void sampleCopy(Stat4Accum *p, Stat4Sample *pTo, Stat4Sample *pFrom){sampleCopy94419,3433041 -static void stat4Destructor(void *pOld){stat4Destructor94437,3433609 -static void statInit(statInit94471,3434963 -static const FuncDef statInitFuncdef = {statInitFuncdef94553,3437850 -static int sampleIsBetterPost(sampleIsBetterPost94576,3438744 -static int sampleIsBetter(sampleIsBetter94600,3439359 -static void sampleInsert(Stat4Accum *p, Stat4Sample *pNew, int nEqZero){sampleInsert94627,3440088 -static void samplePushPrevious(Stat4Accum *p, int iChng){samplePushPrevious94717,3442878 -static void statPush(statPush94783,3444949 -static const FuncDef statPushFuncdef = {statPushFuncdef94852,3446897 -#define STAT_GET_STAT1 STAT_GET_STAT194863,3447177 -#define STAT_GET_ROWID STAT_GET_ROWID94864,3447246 -#define STAT_GET_NEQ STAT_GET_NEQ94865,3447319 -#define STAT_GET_NLT STAT_GET_NLT94866,3447390 -#define STAT_GET_NDLT STAT_GET_NDLT94867,3447461 -static void statGet(statGet94882,3448173 -static const FuncDef statGetFuncdef = {statGetFuncdef94997,3451654 -static void callStatGet(Vdbe *v, int regStat4, int iParam, int regOut){callStatGet95008,3451933 -static void analyzeOneTable(analyzeOneTable95026,3452496 -static void loadAnalysis(Parse *pParse, int iDb){loadAnalysis95352,3464861 -static void analyzeDatabase(Parse *pParse, int iDb){analyzeDatabase95362,3465083 -static void analyzeTable(Parse *pParse, Table *pTab, Index *pOnlyIdx){analyzeTable95389,3465911 -SQLITE_PRIVATE void sqlite3Analyze(Parse *pParse, Token *pName1, Token *pName2){sqlite3Analyze95420,3466977 -typedef struct analysisInfo analysisInfo;analysisInfo95484,3468862 -struct analysisInfo {analysisInfo95485,3468904 - sqlite3 *db;db95486,3468926 - sqlite3 *db;analysisInfo::db95486,3468926 - const char *zDatabase;zDatabase95487,3468941 - const char *zDatabase;analysisInfo::zDatabase95487,3468941 -static void decodeIntArray(decodeIntArray95495,3469137 -static int analysisLoader(void *pData, int argc, char **argv, char **NotUsed){analysisLoader95566,3471045 -SQLITE_PRIVATE void sqlite3DeleteIndexSamples(sqlite3 *db, Index *pIdx){sqlite3DeleteIndexSamples95624,3472763 -static void initAvgEq(Index *pIdx){initAvgEq95649,3473390 -static Index *findIndexOrPrimaryKey(findIndexOrPrimaryKey95708,3475525 -static int loadStatTbl(loadStatTbl95734,3476362 -static int loadStat4(sqlite3 *db, const char *zDb){loadStat495858,3481146 -SQLITE_PRIVATE int sqlite3AnalysisLoad(sqlite3 *db, int iDb){sqlite3AnalysisLoad95902,3482759 -static int resolveAttachExpr(NameContext *pName, Expr *pExpr)resolveAttachExpr96002,3485890 -static void attachFunc(attachFunc96026,3486470 -static void detachFunc(detachFunc96228,3492492 -static void codeAttach(codeAttach96280,3493838 -SQLITE_PRIVATE void sqlite3Detach(Parse *pParse, Expr *pDbname){sqlite3Detach96353,3495976 -SQLITE_PRIVATE void sqlite3Attach(Parse *pParse, Expr *p, Expr *pDbname, Expr *pKey){sqlite3Attach96372,3496522 -SQLITE_PRIVATE void sqlite3FixInit(sqlite3FixInit96391,3497167 -SQLITE_PRIVATE int sqlite3FixSrcList(sqlite3FixSrcList96424,3498506 -SQLITE_PRIVATE int sqlite3FixSelect(sqlite3FixSelect96454,3499510 -SQLITE_PRIVATE int sqlite3FixExpr(sqlite3FixExpr96487,3500337 -SQLITE_PRIVATE int sqlite3FixExprList(sqlite3FixExprList96513,3501100 -SQLITE_PRIVATE int sqlite3FixTriggerStep(sqlite3FixTriggerStep96530,3501510 -SQLITE_API int SQLITE_STDCALL sqlite3_set_authorizer(sqlite3_set_authorizer96621,3504653 -static void sqliteAuthBadReturnCode(Parse *pParse){sqliteAuthBadReturnCode96641,3505244 -SQLITE_PRIVATE int sqlite3AuthReadCol(sqlite3AuthReadCol96655,3505839 -SQLITE_PRIVATE void sqlite3AuthRead(sqlite3AuthRead96692,3507223 -SQLITE_PRIVATE int sqlite3AuthCheck(sqlite3AuthCheck96749,3509071 -SQLITE_PRIVATE void sqlite3AuthContextPush(sqlite3AuthContextPush96789,3510111 -SQLITE_PRIVATE void sqlite3AuthContextPop(AuthContext *pContext){sqlite3AuthContextPop96804,3510454 -struct TableLock {TableLock96846,3511728 - int iDb; /* The database containing the table to be locked */iDb96847,3511747 - int iDb; /* The database containing the table to be locked */TableLock::iDb96847,3511747 - int iTab; /* The root page of the table to be locked */iTab96848,3511823 - int iTab; /* The root page of the table to be locked */TableLock::iTab96848,3511823 - u8 isWriteLock; /* True for write lock. False for a read lock */isWriteLock96849,3511892 - u8 isWriteLock; /* True for write lock. False for a read lock */TableLock::isWriteLock96849,3511892 - const char *zName; /* Name of the table */zName96850,3511965 - const char *zName; /* Name of the table */TableLock::zName96850,3511965 -SQLITE_PRIVATE void sqlite3TableLock(sqlite3TableLock96863,3512426 -static void codeTableLocks(Parse *pParse){codeTableLocks96903,3513628 - #define codeTableLocks(codeTableLocks96918,3514042 -SQLITE_PRIVATE int sqlite3DbMaskAllZero(yDbMask m){sqlite3DbMaskAllZero96927,3514314 -SQLITE_PRIVATE void sqlite3FinishCoding(Parse *pParse){sqlite3FinishCoding96944,3514814 -SQLITE_PRIVATE void sqlite3NestedParse(Parse *pParse, const char *zFormat, ...){sqlite3NestedParse97072,3519191 -# define SAVE_SZ SAVE_SZ97077,3519349 -SQLITE_PRIVATE int sqlite3UserAuthTable(const char *zTable){sqlite3UserAuthTable97103,3520112 -SQLITE_PRIVATE Table *sqlite3FindTable(sqlite3 *db, const char *zName, const char *zDatabase){sqlite3FindTable97120,3520753 -SQLITE_PRIVATE Table *sqlite3LocateTable(sqlite3LocateTable97153,3521986 -SQLITE_PRIVATE Table *sqlite3LocateTableItem(sqlite3LocateTableItem97201,3523693 -SQLITE_PRIVATE Index *sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb){sqlite3FindIndex97229,3524551 -static void freeIndex(sqlite3 *db, Index *p){freeIndex97249,3525207 -SQLITE_PRIVATE void sqlite3UnlinkAndDeleteIndex(sqlite3 *db, int iDb, const char *zIdxName){sqlite3UnlinkAndDeleteIndex97269,3525823 -SQLITE_PRIVATE void sqlite3CollapseDatabaseArray(sqlite3 *db){sqlite3CollapseDatabaseArray97302,3526889 -SQLITE_PRIVATE void sqlite3ResetOneSchema(sqlite3 *db, int iDb){sqlite3ResetOneSchema97328,3527473 -SQLITE_PRIVATE void sqlite3ResetAllSchemasOfConnection(sqlite3 *db){sqlite3ResetAllSchemasOfConnection97354,3528194 -SQLITE_PRIVATE void sqlite3CommitInternalChanges(sqlite3 *db){sqlite3CommitInternalChanges97372,3528617 -SQLITE_PRIVATE void sqlite3DeleteColumnNames(sqlite3 *db, Table *pTable){sqlite3DeleteColumnNames97380,3528823 -static void SQLITE_NOINLINE deleteTable(sqlite3 *db, Table *pTable){deleteTable97409,3529851 -SQLITE_PRIVATE void sqlite3DeleteTable(sqlite3 *db, Table *pTable){sqlite3DeleteTable97452,3531436 -SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTable(sqlite3 *db, int iDb, const char *zTabName){sqlite3UnlinkAndDeleteTable97464,3531830 -SQLITE_PRIVATE char *sqlite3NameFromToken(sqlite3 *db, Token *pName){sqlite3NameFromToken97492,3532801 -SQLITE_PRIVATE void sqlite3OpenMasterTable(Parse *p, int iDb){sqlite3OpenMasterTable97507,3533156 -SQLITE_PRIVATE int sqlite3FindDbName(sqlite3 *db, const char *zName){sqlite3FindDbName97522,3533679 -SQLITE_PRIVATE int sqlite3FindDb(sqlite3 *db, Token *pName){sqlite3FindDb97539,3534191 -SQLITE_PRIVATE int sqlite3TwoPartName(sqlite3TwoPartName97564,3535073 -SQLITE_PRIVATE int sqlite3CheckObjectName(Parse *pParse, const char *zName){sqlite3CheckObjectName97600,3536224 -SQLITE_PRIVATE Index *sqlite3PrimaryKeyIndex(Table *pTab){sqlite3PrimaryKeyIndex97613,3536647 -SQLITE_PRIVATE i16 sqlite3ColumnOfIndex(Index *pIdx, i16 iCol){sqlite3ColumnOfIndex97623,3536905 -SQLITE_PRIVATE void sqlite3StartTable(sqlite3StartTable97647,3537942 -SQLITE_PRIVATE void sqlite3ColumnPropertiesFromName(Table *pTab, Column *pCol){sqlite3ColumnPropertiesFromName97837,3544769 -SQLITE_PRIVATE void sqlite3AddColumn(Parse *pParse, Token *pName, Token *pType){sqlite3AddColumn97855,3545359 -SQLITE_PRIVATE void sqlite3AddNotNull(Parse *pParse, int onError){sqlite3AddNotNull97918,3547127 -SQLITE_PRIVATE char sqlite3AffinityType(const char *zIn, u8 *pszEst){sqlite3AffinityType97950,3548231 -SQLITE_PRIVATE void sqlite3AddDefaultValue(Parse *pParse, ExprSpan *pSpan){sqlite3AddDefaultValue98022,3550613 -static void sqlite3StringToId(Expr *p){sqlite3StringToId98068,3552378 -SQLITE_PRIVATE void sqlite3AddPrimaryKey(sqlite3AddPrimaryKey98094,3553364 -SQLITE_PRIVATE void sqlite3AddCheckConstraint(sqlite3AddCheckConstraint98168,3555573 -SQLITE_PRIVATE void sqlite3AddCollateType(Parse *pParse, Token *pToken){sqlite3AddCollateType98193,3556267 -SQLITE_PRIVATE CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char *zName){sqlite3LocateCollSeq98245,3558020 -SQLITE_PRIVATE void sqlite3ChangeCookie(Parse *pParse, int iDb){sqlite3ChangeCookie98276,3559105 -static int identLength(const char *z){identLength98292,3559663 -static void identPut(char *z, int *pIdx, char *zSignedIdent){identPut98313,3560452 -static char *createTableStmt(sqlite3 *db, Table *p){createTableStmt98341,3561229 -static int resizeIndexObject(sqlite3 *db, Index *pIdx, int N){resizeIndexObject98409,3563184 -static void estimateTableWidth(Table *pTab){estimateTableWidth98433,3563938 -static void estimateIndexWidth(Index *pIdx){estimateIndexWidth98447,3564273 -static int hasColumn(const i16 *aiCol, int nCol, int x){hasColumn98461,3564679 -static void convertToWithoutRowidTable(Parse *pParse, Table *pTab){convertToWithoutRowidTable98489,3566113 -SQLITE_PRIVATE void sqlite3EndTable(sqlite3EndTable98629,3570812 -SQLITE_PRIVATE void sqlite3CreateView(sqlite3CreateView98871,3578947 -SQLITE_PRIVATE int sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable){sqlite3ViewGetColumnNames98943,3581478 -static void sqliteViewResetAll(sqlite3 *db, int idx){sqliteViewResetAll99055,3585403 -# define sqliteViewResetAll(sqliteViewResetAll99070,3585869 -SQLITE_PRIVATE void sqlite3RootPageMoved(sqlite3 *db, int iDb, int iFrom, int iTo){sqlite3RootPageMoved99091,3586845 -static void destroyRootPage(Parse *pParse, int iTable, int iDb){destroyRootPage99121,3587768 -static void destroyTable(Parse *pParse, Table *pTab){destroyTable99150,3588972 -static void sqlite3ClearStatTables(sqlite3ClearStatTables99208,3590749 -SQLITE_PRIVATE void sqlite3CodeDropTable(Parse *pParse, Table *pTab, int iDb, int isView){sqlite3CodeDropTable99231,3591379 -SQLITE_PRIVATE void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){sqlite3DropTable99302,3593717 -SQLITE_PRIVATE void sqlite3CreateForeignKey(sqlite3CreateForeignKey99417,3597318 -SQLITE_PRIVATE void sqlite3DeferForeignKey(Parse *pParse, int isDeferred){sqlite3DeferForeignKey99538,3600711 -static void sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage){sqlite3RefillIndex99559,3601573 -SQLITE_PRIVATE Index *sqlite3AllocateIndexObject(sqlite3AllocateIndexObject99646,3605280 -SQLITE_PRIVATE Index *sqlite3CreateIndex(sqlite3CreateIndex99690,3607370 -SQLITE_PRIVATE void sqlite3DefaultRowEst(Index *pIdx){sqlite3DefaultRowEst100239,3627040 -SQLITE_PRIVATE void sqlite3DropIndex(Parse *pParse, SrcList *pName, int ifExists){sqlite3DropIndex100267,3628042 -SQLITE_PRIVATE void *sqlite3ArrayAllocate(sqlite3ArrayAllocate100348,3630850 -SQLITE_PRIVATE IdList *sqlite3IdListAppend(sqlite3 *db, IdList *pList, Token *pToken){sqlite3IdListAppend100379,3631694 -SQLITE_PRIVATE void sqlite3IdListDelete(sqlite3 *db, IdList *pList){sqlite3IdListDelete100403,3632185 -SQLITE_PRIVATE int sqlite3IdListIndex(IdList *pList, const char *zName){sqlite3IdListIndex100417,3632519 -SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge(sqlite3SrcListEnlarge100445,3633484 -SQLITE_PRIVATE SrcList *sqlite3SrcListAppend(sqlite3SrcListAppend100527,3636269 -SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList){sqlite3SrcListAssignCursors100564,3637360 -SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3 *db, SrcList *pList){sqlite3SrcListDelete100582,3637857 -SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm(sqlite3SrcListAppendFromTerm100616,3639343 -SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *pParse, SrcList *p, Token *pIndexedBy){sqlite3SrcListIndexedBy100660,3640794 -SQLITE_PRIVATE void sqlite3SrcListFuncArgs(Parse *pParse, SrcList *p, ExprList *pList){sqlite3SrcListFuncArgs100682,3641551 -SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList *p){sqlite3SrcListShiftJoinType100710,3642535 -SQLITE_PRIVATE void sqlite3BeginTransaction(Parse *pParse, int type){sqlite3BeginTransaction100723,3642794 -SQLITE_PRIVATE void sqlite3CommitTransaction(Parse *pParse){sqlite3CommitTransaction100748,3643361 -SQLITE_PRIVATE void sqlite3RollbackTransaction(Parse *pParse){sqlite3RollbackTransaction100765,3643716 -SQLITE_PRIVATE void sqlite3Savepoint(Parse *pParse, int op, Token *pName){sqlite3Savepoint100783,3644149 -SQLITE_PRIVATE int sqlite3OpenTempDatabase(Parse *pParse){sqlite3OpenTempDatabase100803,3644895 -SQLITE_PRIVATE void sqlite3CodeVerifySchema(Parse *pParse, int iDb){sqlite3CodeVerifySchema100838,3645954 -SQLITE_PRIVATE void sqlite3CodeVerifyNamedSchema(Parse *pParse, const char *zDb){sqlite3CodeVerifyNamedSchema100859,3646681 -SQLITE_PRIVATE void sqlite3BeginWriteOperation(Parse *pParse, int setStatement, int iDb){sqlite3BeginWriteOperation100883,3647661 -SQLITE_PRIVATE void sqlite3MultiWrite(Parse *pParse){sqlite3MultiWrite100897,3648282 -SQLITE_PRIVATE void sqlite3MayAbort(Parse *pParse){sqlite3MayAbort100918,3649287 -SQLITE_PRIVATE void sqlite3HaltConstraint(sqlite3HaltConstraint100928,3649618 -SQLITE_PRIVATE void sqlite3UniqueConstraint(sqlite3UniqueConstraint100948,3650251 -SQLITE_PRIVATE void sqlite3RowidConstraint(sqlite3RowidConstraint100981,3651228 -static int collationMatch(const char *zColl, Index *pIndex){collationMatch101005,3652012 -static void reindexTable(Parse *pParse, Table *pTab, char const *zColl){reindexTable101024,3652494 -static void reindexDatabases(Parse *pParse, char const *zColl){reindexDatabases101043,3653126 -SQLITE_PRIVATE void sqlite3Reindex(Parse *pParse, Token *pName1, Token *pName2){sqlite3Reindex101075,3654357 -SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoOfIndex(Parse *pParse, Index *pIdx){sqlite3KeyInfoOfIndex101139,3656541 -SQLITE_PRIVATE With *sqlite3WithAdd(sqlite3WithAdd101171,3657403 -SQLITE_PRIVATE void sqlite3WithDelete(sqlite3 *db, With *pWith){sqlite3WithDelete101221,3658887 -static void callCollNeeded(sqlite3 *db, int enc, const char *zName){callCollNeeded101259,3660088 -static int synthCollSeq(sqlite3 *db, CollSeq *pColl){synthCollSeq101288,3661125 -SQLITE_PRIVATE CollSeq *sqlite3GetCollSeq(sqlite3GetCollSeq101318,3662236 -SQLITE_PRIVATE int sqlite3CheckCollSeq(Parse *pParse, CollSeq *pColl){sqlite3CheckCollSeq101359,3663682 -static CollSeq *findCollSeqEntry(findCollSeqEntry101387,3664611 -SQLITE_PRIVATE CollSeq *sqlite3FindCollSeq(sqlite3FindCollSeq101440,3666408 -#define FUNC_PERFECT_MATCH FUNC_PERFECT_MATCH101486,3668159 -static int matchQuality(matchQuality101487,3668225 -static FuncDef *functionSearch(functionSearch101522,3669288 -SQLITE_PRIVATE void sqlite3InsertBuiltinFuncs(sqlite3InsertBuiltinFuncs101538,3669633 -SQLITE_PRIVATE FuncDef *sqlite3FindFunction(sqlite3FindFunction101582,3671241 -SQLITE_PRIVATE void sqlite3SchemaClear(void *p){sqlite3SchemaClear101672,3674344 -SQLITE_PRIVATE Schema *sqlite3SchemaGet(sqlite3 *db, Btree *pBt){sqlite3SchemaGet101704,3675284 -SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc){sqlite3SrcListLookup101755,3677095 -SQLITE_PRIVATE int sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk){sqlite3IsReadOnly101776,3677655 -SQLITE_PRIVATE void sqlite3MaterializeView(sqlite3MaterializeView101813,3678933 -SQLITE_PRIVATE Expr *sqlite3LimitWhere(sqlite3LimitWhere101850,3680370 -SQLITE_PRIVATE void sqlite3DeleteFrom(sqlite3DeleteFrom101932,3683591 -# undef isViewisView102001,3686933 -# define isView isView102002,3686948 - #undef isViewisView102305,3697764 - #undef pTriggerpTrigger102308,3697802 -SQLITE_PRIVATE void sqlite3GenerateRowDelete(sqlite3GenerateRowDelete102350,3699603 -SQLITE_PRIVATE void sqlite3GenerateRowIndexDelete(sqlite3GenerateRowIndexDelete102494,3705841 -SQLITE_PRIVATE int sqlite3GenerateIndexKey(sqlite3GenerateIndexKey102558,3709031 -SQLITE_PRIVATE void sqlite3ResolvePartIdxLabel(Parse *pParse, int iLabel){sqlite3ResolvePartIdxLabel102616,3711314 -static CollSeq *sqlite3GetFuncCollSeq(sqlite3_context *context){sqlite3GetFuncCollSeq102648,3712403 -static void sqlite3SkipAccumulatorLoad(sqlite3_context *context){sqlite3SkipAccumulatorLoad102661,3712767 -static void minmaxFunc(minmaxFunc102668,3712932 -static void typeofFunc(typeofFunc102698,3713650 -static void lengthFunc(lengthFunc102719,3714180 -static void absFunc(sqlite3_context *context, int argc, sqlite3_value **argv){absFunc102759,3715007 -static void instrFunc(instrFunc102808,3716724 -static void printfFunc(printfFunc102850,3717828 -static void substrFunc(substrFunc102886,3718890 -static void roundFunc(sqlite3_context *context, int argc, sqlite3_value **argv){roundFunc102981,3721096 -static void *contextMalloc(sqlite3_context *context, i64 nByte){contextMalloc103022,3722382 -static void upperFunc(sqlite3_context *context, int argc, sqlite3_value **argv){upperFunc103043,3722928 -static void lowerFunc(sqlite3_context *context, int argc, sqlite3_value **argv){lowerFunc103062,3723508 -#define noopFunc noopFunc103090,3724533 -static void randomFunc(randomFunc103095,3724671 -static void randomBlob(randomBlob103121,3725489 -static void last_insert_rowid(last_insert_rowid103145,3726006 -static void changes(changes103165,3726648 -static void total_changes(total_changes103179,3727028 -struct compareInfo {compareInfo103194,3727456 - u8 matchAll; /* "*" or "%" */matchAll103195,3727477 - u8 matchAll; /* "*" or "%" */compareInfo::matchAll103195,3727477 - u8 matchOne; /* "?" or "_" */matchOne103196,3727518 - u8 matchOne; /* "?" or "_" */compareInfo::matchOne103196,3727518 - u8 matchSet; /* "[" or 0 */matchSet103197,3727559 - u8 matchSet; /* "[" or 0 */compareInfo::matchSet103197,3727559 - u8 noCase; /* true to ignore case differences */noCase103198,3727598 - u8 noCase; /* true to ignore case differences */compareInfo::noCase103198,3727598 -# define sqlite3Utf8Read(sqlite3Utf8Read103208,3727941 -# define Utf8Read(Utf8Read103209,3727988 -# define Utf8Read(Utf8Read103211,3728038 -static const struct compareInfo globInfo = { '*', '?', '[', 0 };globInfo103214,3728120 -static const struct compareInfo likeInfoNorm = { '%', '_', 0, 1 };likeInfoNorm103217,3728298 -static const struct compareInfo likeInfoAlt = { '%', '_', 0, 0 };likeInfoAlt103220,3728492 -static int patternCompare(patternCompare103257,3729819 -SQLITE_API int SQLITE_STDCALL sqlite3_strglob(const char *zGlobPattern, const char *zString){sqlite3_strglob103379,3733921 -SQLITE_API int SQLITE_STDCALL sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc){sqlite3_strlike103386,3734137 -SQLITE_API int sqlite3_like_count = 0;sqlite3_like_count103396,3734491 -static void likeFunc(likeFunc103412,3734919 -static void nullifFunc(nullifFunc103477,3736844 -static void versionFunc(versionFunc103493,3737250 -static void sourceidFunc(sourceidFunc103509,3737742 -static void errlogFunc(errlogFunc103525,3738240 -static void compileoptionusedFunc(compileoptionusedFunc103541,3738671 -static void compileoptiongetFunc(compileoptiongetFunc103565,3739383 -static const char hexdigits[] = {hexdigits103583,3739927 -static void quoteFunc(sqlite3_context *context, int argc, sqlite3_value **argv){quoteFunc103595,3740371 -static void unicodeFunc(unicodeFunc103671,3742611 -static void charFunc(charFunc103686,3743061 -static void hexFunc(hexFunc103727,3744222 -static void zeroblobFunc(zeroblobFunc103755,3744930 -static void replaceFunc(replaceFunc103778,3745532 -static void trimFunc(trimFunc103862,3748292 -static void soundexFunc(soundexFunc103954,3751025 -static void loadExt(sqlite3_context *context, int argc, sqlite3_value **argv){loadExt104007,3752595 -typedef struct SumCtx SumCtx;SumCtx104038,3753471 -struct SumCtx {SumCtx104039,3753501 - double rSum; /* Floating point sum */rSum104040,3753517 - double rSum; /* Floating point sum */SumCtx::rSum104040,3753517 - i64 iSum; /* Integer sum */ iSum104041,3753562 - i64 iSum; /* Integer sum */ SumCtx::iSum104041,3753562 - i64 cnt; /* Number of elements summed */cnt104042,3753603 - i64 cnt; /* Number of elements summed */SumCtx::cnt104042,3753603 - u8 overflow; /* True if integer overflow seen */overflow104043,3753655 - u8 overflow; /* True if integer overflow seen */SumCtx::overflow104043,3753655 - u8 approx; /* True if non-integer value was input to the sum */approx104044,3753711 - u8 approx; /* True if non-integer value was input to the sum */SumCtx::approx104044,3753711 -static void sumStep(sqlite3_context *context, int argc, sqlite3_value **argv){sumStep104057,3754225 -static void sumFinalize(sqlite3_context *context){sumFinalize104078,3754815 -static void avgFinalize(sqlite3_context *context){avgFinalize104091,3755172 -static void totalFinalize(sqlite3_context *context){totalFinalize104098,3755370 -typedef struct CountCtx CountCtx;CountCtx104109,3755707 -struct CountCtx {CountCtx104110,3755741 - i64 n;n104111,3755759 - i64 n;CountCtx::n104111,3755759 -static void countStep(sqlite3_context *context, int argc, sqlite3_value **argv){countStep104117,3755835 -static void countFinalize(sqlite3_context *context){countFinalize104133,3756479 -static void minmaxStep(minmaxStep104142,3756710 -static void minMaxFinalize(sqlite3_context *context){minMaxFinalize104180,3757989 -static void groupConcatStep(groupConcatStep104194,3758298 -static void groupConcatFinalize(sqlite3_context *context){groupConcatFinalize104226,3759217 -SQLITE_PRIVATE void sqlite3RegisterPerConnectionBuiltinFunctions(sqlite3 *db){sqlite3RegisterPerConnectionBuiltinFunctions104246,3759886 -static void setLikeOptFlag(sqlite3 *db, const char *zName, u8 flagVal){setLikeOptFlag104257,3760202 -SQLITE_PRIVATE void sqlite3RegisterLikeFunctions(sqlite3 *db, int caseSensitive){sqlite3RegisterLikeFunctions104270,3760598 -SQLITE_PRIVATE int sqlite3IsLikeFunction(sqlite3 *db, Expr *pExpr, int *pIsNocase, char *aWc){sqlite3IsLikeFunction104298,3761807 -SQLITE_PRIVATE void sqlite3RegisterBuiltinFunctions(void){sqlite3RegisterBuiltinFunctions104331,3762960 -SQLITE_PRIVATE int sqlite3FkLocateIndex(sqlite3FkLocateIndex104634,3776687 -static void fkLookupParent(fkLookupParent104769,3782206 -static Expr *exprTableRegister(exprTableRegister104910,3788444 -static Expr *exprTableColumn(exprTableColumn104942,3789371 -static void fkScanChildren(fkScanChildren104989,3791444 -SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *pTab){sqlite3FkReferences105114,3796655 -static void fkTriggerDelete(sqlite3 *dbMem, Trigger *p){fkTriggerDelete105126,3797103 -SQLITE_PRIVATE void sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab){sqlite3FkDropTable105154,3798182 -static int fkChildIsModified(fkChildIsModified105215,3800694 -static int fkParentIsModified(fkParentIsModified105242,3801823 -static int isSetNullAction(Parse *pParse, FKey *pFKey){isSetNullAction105271,3802520 -SQLITE_PRIVATE void sqlite3FkCheck(sqlite3FkCheck105304,3803840 -#define COLUMN_MASK(COLUMN_MASK105498,3811841 -SQLITE_PRIVATE u32 sqlite3FkOldmask(sqlite3FkOldmask105504,3812016 -SQLITE_PRIVATE int sqlite3FkRequired(sqlite3FkRequired105544,3813448 -static Trigger *fkActionTrigger(fkActionTrigger105604,3815848 -SQLITE_PRIVATE void sqlite3FkActions(sqlite3FkActions105790,3822729 -SQLITE_PRIVATE void sqlite3FkDelete(sqlite3 *db, Table *pTab){sqlite3FkDelete105822,3824112 -SQLITE_PRIVATE void sqlite3OpenTable(sqlite3OpenTable105887,3826268 -SQLITE_PRIVATE const char *sqlite3IndexAffinityStr(sqlite3 *db, Index *pIdx){sqlite3IndexAffinityStr105933,3827928 -SQLITE_PRIVATE void sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg){sqlite3TableAffinity105991,3829868 -static int readsTable(Parse *p, int iDb, Table *pTab){readsTable106026,3830859 -static int autoIncBegin(autoIncBegin106081,3832560 -SQLITE_PRIVATE void sqlite3AutoincrementBegin(Parse *pParse){sqlite3AutoincrementBegin106113,3833655 -static void autoIncStep(Parse *pParse, int memId, int regRowid){autoIncStep106168,3835689 -static SQLITE_NOINLINE void autoIncrementEnd(Parse *pParse){autoIncrementEnd106181,3836150 -SQLITE_PRIVATE void sqlite3AutoincrementEnd(Parse *pParse){sqlite3AutoincrementEnd106216,3837236 -# define autoIncBegin(autoIncBegin106224,3837450 -# define autoIncStep(autoIncStep106225,3837483 -SQLITE_PRIVATE void sqlite3Insert(sqlite3Insert106335,3841816 -# undef isViewisView106429,3845926 -# define isView isView106430,3845941 - #undef isViewisView106932,3863695 - #undef pTriggerpTrigger106935,3863733 - #undef tmasktmask106938,3863770 -#define CKCNSTRNT_COLUMN CKCNSTRNT_COLUMN106944,3863870 -#define CKCNSTRNT_ROWID CKCNSTRNT_ROWID106945,3863951 -static int checkConstraintExprNode(Walker *pWalker, Expr *pExpr){checkConstraintExprNode106952,3864263 -static int checkConstraintUnchanged(Expr *pExpr, int *aiChng, int chngRowid){checkConstraintUnchanged106976,3865096 -SQLITE_PRIVATE void sqlite3GenerateConstraintChecks(sqlite3GenerateConstraintChecks107077,3870244 -SQLITE_PRIVATE void sqlite3CompleteInsertion(sqlite3CompleteInsertion107518,3887559 -SQLITE_PRIVATE int sqlite3OpenTableAndIndices(sqlite3OpenTableAndIndices107602,3891035 -SQLITE_API int sqlite3_xferopt_count;sqlite3_xferopt_count107664,3893214 -static int xferCompatibleIndex(Index *pDest, Index *pSrc){xferCompatibleIndex107680,3893759 -static int xferOptimization(xferOptimization107741,3896205 -SQLITE_API int SQLITE_STDCALL sqlite3_exec(sqlite3_exec108081,3910206 - #define SQLITE_CORE SQLITE_CORE108215,3914429 -#define _SQLITE3EXT_H__SQLITE3EXT_H_108237,3915336 -typedef struct sqlite3_api_routines sqlite3_api_routines;sqlite3_api_routines108240,3915387 -struct sqlite3_api_routines {sqlite3_api_routines108252,3915819 - void * (*aggregate_context)(sqlite3_context*,int nBytes);aggregate_context108253,3915849 - void * (*aggregate_context)(sqlite3_context*,int nBytes);sqlite3_api_routines::aggregate_context108253,3915849 - int (*aggregate_count)(sqlite3_context*);aggregate_count108254,3915909 - int (*aggregate_count)(sqlite3_context*);sqlite3_api_routines::aggregate_count108254,3915909 - int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));bind_blob108255,3915954 - int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));sqlite3_api_routines::bind_blob108255,3915954 - int (*bind_double)(sqlite3_stmt*,int,double);bind_double108256,3916027 - int (*bind_double)(sqlite3_stmt*,int,double);sqlite3_api_routines::bind_double108256,3916027 - int (*bind_int)(sqlite3_stmt*,int,int);bind_int108257,3916076 - int (*bind_int)(sqlite3_stmt*,int,int);sqlite3_api_routines::bind_int108257,3916076 - int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);bind_int64108258,3916119 - int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);sqlite3_api_routines::bind_int64108258,3916119 - int (*bind_null)(sqlite3_stmt*,int);bind_null108259,3916173 - int (*bind_null)(sqlite3_stmt*,int);sqlite3_api_routines::bind_null108259,3916173 - int (*bind_parameter_count)(sqlite3_stmt*);bind_parameter_count108260,3916213 - int (*bind_parameter_count)(sqlite3_stmt*);sqlite3_api_routines::bind_parameter_count108260,3916213 - int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);bind_parameter_index108261,3916260 - int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);sqlite3_api_routines::bind_parameter_index108261,3916260 - const char * (*bind_parameter_name)(sqlite3_stmt*,int);bind_parameter_name108262,3916324 - const char * (*bind_parameter_name)(sqlite3_stmt*,int);sqlite3_api_routines::bind_parameter_name108262,3916324 - int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));bind_text108263,3916382 - int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));sqlite3_api_routines::bind_text108263,3916382 - int (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*));bind_text16108264,3916455 - int (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*));sqlite3_api_routines::bind_text16108264,3916455 - int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*);bind_value108265,3916528 - int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*);sqlite3_api_routines::bind_value108265,3916528 - int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);busy_handler108266,3916590 - int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);sqlite3_api_routines::busy_handler108266,3916590 - int (*busy_timeout)(sqlite3*,int ms);busy_timeout108267,3916648 - int (*busy_timeout)(sqlite3*,int ms);sqlite3_api_routines::busy_timeout108267,3916648 - int (*changes)(sqlite3*);changes108268,3916689 - int (*changes)(sqlite3*);sqlite3_api_routines::changes108268,3916689 - int (*close)(sqlite3*);close108269,3916718 - int (*close)(sqlite3*);sqlite3_api_routines::close108269,3916718 - int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,collation_needed108270,3916745 - int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,sqlite3_api_routines::collation_needed108270,3916745 - int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,collation_needed16108272,3916866 - int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,sqlite3_api_routines::collation_needed16108272,3916866 - const void * (*column_blob)(sqlite3_stmt*,int iCol);column_blob108274,3916991 - const void * (*column_blob)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_blob108274,3916991 - int (*column_bytes)(sqlite3_stmt*,int iCol);column_bytes108275,3917046 - int (*column_bytes)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_bytes108275,3917046 - int (*column_bytes16)(sqlite3_stmt*,int iCol);column_bytes16108276,3917094 - int (*column_bytes16)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_bytes16108276,3917094 - int (*column_count)(sqlite3_stmt*pStmt);column_count108277,3917144 - int (*column_count)(sqlite3_stmt*pStmt);sqlite3_api_routines::column_count108277,3917144 - const char * (*column_database_name)(sqlite3_stmt*,int);column_database_name108278,3917188 - const char * (*column_database_name)(sqlite3_stmt*,int);sqlite3_api_routines::column_database_name108278,3917188 - const void * (*column_database_name16)(sqlite3_stmt*,int);column_database_name16108279,3917247 - const void * (*column_database_name16)(sqlite3_stmt*,int);sqlite3_api_routines::column_database_name16108279,3917247 - const char * (*column_decltype)(sqlite3_stmt*,int i);column_decltype108280,3917308 - const char * (*column_decltype)(sqlite3_stmt*,int i);sqlite3_api_routines::column_decltype108280,3917308 - const void * (*column_decltype16)(sqlite3_stmt*,int);column_decltype16108281,3917364 - const void * (*column_decltype16)(sqlite3_stmt*,int);sqlite3_api_routines::column_decltype16108281,3917364 - double (*column_double)(sqlite3_stmt*,int iCol);column_double108282,3917420 - double (*column_double)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_double108282,3917420 - int (*column_int)(sqlite3_stmt*,int iCol);column_int108283,3917472 - int (*column_int)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_int108283,3917472 - sqlite_int64 (*column_int64)(sqlite3_stmt*,int iCol);column_int64108284,3917518 - sqlite_int64 (*column_int64)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_int64108284,3917518 - const char * (*column_name)(sqlite3_stmt*,int);column_name108285,3917575 - const char * (*column_name)(sqlite3_stmt*,int);sqlite3_api_routines::column_name108285,3917575 - const void * (*column_name16)(sqlite3_stmt*,int);column_name16108286,3917625 - const void * (*column_name16)(sqlite3_stmt*,int);sqlite3_api_routines::column_name16108286,3917625 - const char * (*column_origin_name)(sqlite3_stmt*,int);column_origin_name108287,3917677 - const char * (*column_origin_name)(sqlite3_stmt*,int);sqlite3_api_routines::column_origin_name108287,3917677 - const void * (*column_origin_name16)(sqlite3_stmt*,int);column_origin_name16108288,3917734 - const void * (*column_origin_name16)(sqlite3_stmt*,int);sqlite3_api_routines::column_origin_name16108288,3917734 - const char * (*column_table_name)(sqlite3_stmt*,int);column_table_name108289,3917793 - const char * (*column_table_name)(sqlite3_stmt*,int);sqlite3_api_routines::column_table_name108289,3917793 - const void * (*column_table_name16)(sqlite3_stmt*,int);column_table_name16108290,3917849 - const void * (*column_table_name16)(sqlite3_stmt*,int);sqlite3_api_routines::column_table_name16108290,3917849 - const unsigned char * (*column_text)(sqlite3_stmt*,int iCol);column_text108291,3917907 - const unsigned char * (*column_text)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_text108291,3917907 - const void * (*column_text16)(sqlite3_stmt*,int iCol);column_text16108292,3917971 - const void * (*column_text16)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_text16108292,3917971 - int (*column_type)(sqlite3_stmt*,int iCol);column_type108293,3918028 - int (*column_type)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_type108293,3918028 - sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol);column_value108294,3918075 - sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_value108294,3918075 - void * (*commit_hook)(sqlite3*,int(*)(void*),void*);commit_hook108295,3918133 - void * (*commit_hook)(sqlite3*,int(*)(void*),void*);sqlite3_api_routines::commit_hook108295,3918133 - int (*complete)(const char*sql);complete108296,3918188 - int (*complete)(const char*sql);sqlite3_api_routines::complete108296,3918188 - int (*complete16)(const void*sql);complete16108297,3918224 - int (*complete16)(const void*sql);sqlite3_api_routines::complete16108297,3918224 - int (*create_collation)(sqlite3*,const char*,int,void*,create_collation108298,3918262 - int (*create_collation)(sqlite3*,const char*,int,void*,sqlite3_api_routines::create_collation108298,3918262 - int (*create_collation16)(sqlite3*,const void*,int,void*,create_collation16108300,3918396 - int (*create_collation16)(sqlite3*,const void*,int,void*,sqlite3_api_routines::create_collation16108300,3918396 - int (*create_function)(sqlite3*,const char*,int,int,void*,create_function108302,3918534 - int (*create_function)(sqlite3*,const char*,int,int,void*,sqlite3_api_routines::create_function108302,3918534 - int (*create_function16)(sqlite3*,const void*,int,int,void*,create_function16108306,3918815 - int (*create_function16)(sqlite3*,const void*,int,int,void*,sqlite3_api_routines::create_function16108306,3918815 - int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*);create_module108310,3919104 - int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*);sqlite3_api_routines::create_module108310,3919104 - int (*data_count)(sqlite3_stmt*pStmt);data_count108311,3919178 - int (*data_count)(sqlite3_stmt*pStmt);sqlite3_api_routines::data_count108311,3919178 - sqlite3 * (*db_handle)(sqlite3_stmt*);db_handle108312,3919220 - sqlite3 * (*db_handle)(sqlite3_stmt*);sqlite3_api_routines::db_handle108312,3919220 - int (*declare_vtab)(sqlite3*,const char*);declare_vtab108313,3919261 - int (*declare_vtab)(sqlite3*,const char*);sqlite3_api_routines::declare_vtab108313,3919261 - int (*enable_shared_cache)(int);enable_shared_cache108314,3919306 - int (*enable_shared_cache)(int);sqlite3_api_routines::enable_shared_cache108314,3919306 - int (*errcode)(sqlite3*db);errcode108315,3919342 - int (*errcode)(sqlite3*db);sqlite3_api_routines::errcode108315,3919342 - const char * (*errmsg)(sqlite3*);errmsg108316,3919373 - const char * (*errmsg)(sqlite3*);sqlite3_api_routines::errmsg108316,3919373 - const void * (*errmsg16)(sqlite3*);errmsg16108317,3919409 - const void * (*errmsg16)(sqlite3*);sqlite3_api_routines::errmsg16108317,3919409 - int (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**);exec108318,3919447 - int (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**);sqlite3_api_routines::exec108318,3919447 - int (*expired)(sqlite3_stmt*);expired108319,3919515 - int (*expired)(sqlite3_stmt*);sqlite3_api_routines::expired108319,3919515 - int (*finalize)(sqlite3_stmt*pStmt);finalize108320,3919549 - int (*finalize)(sqlite3_stmt*pStmt);sqlite3_api_routines::finalize108320,3919549 - void (*free)(void*);free108321,3919589 - void (*free)(void*);sqlite3_api_routines::free108321,3919589 - void (*free_table)(char**result);free_table108322,3919613 - void (*free_table)(char**result);sqlite3_api_routines::free_table108322,3919613 - int (*get_autocommit)(sqlite3*);get_autocommit108323,3919650 - int (*get_autocommit)(sqlite3*);sqlite3_api_routines::get_autocommit108323,3919650 - void * (*get_auxdata)(sqlite3_context*,int);get_auxdata108324,3919686 - void * (*get_auxdata)(sqlite3_context*,int);sqlite3_api_routines::get_auxdata108324,3919686 - int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**);get_table108325,3919733 - int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**);sqlite3_api_routines::get_table108325,3919733 - int (*global_recover)(void);global_recover108326,3919801 - int (*global_recover)(void);sqlite3_api_routines::global_recover108326,3919801 - void (*interruptx)(sqlite3*);interruptx108327,3919833 - void (*interruptx)(sqlite3*);sqlite3_api_routines::interruptx108327,3919833 - sqlite_int64 (*last_insert_rowid)(sqlite3*);last_insert_rowid108328,3919866 - sqlite_int64 (*last_insert_rowid)(sqlite3*);sqlite3_api_routines::last_insert_rowid108328,3919866 - const char * (*libversion)(void);libversion108329,3919914 - const char * (*libversion)(void);sqlite3_api_routines::libversion108329,3919914 - int (*libversion_number)(void);libversion_number108330,3919950 - int (*libversion_number)(void);sqlite3_api_routines::libversion_number108330,3919950 - void *(*malloc)(int);malloc108331,3919985 - void *(*malloc)(int);sqlite3_api_routines::malloc108331,3919985 - char * (*mprintf)(const char*,...);mprintf108332,3920009 - char * (*mprintf)(const char*,...);sqlite3_api_routines::mprintf108332,3920009 - int (*open)(const char*,sqlite3**);open108333,3920047 - int (*open)(const char*,sqlite3**);sqlite3_api_routines::open108333,3920047 - int (*open16)(const void*,sqlite3**);open16108334,3920086 - int (*open16)(const void*,sqlite3**);sqlite3_api_routines::open16108334,3920086 - int (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);prepare108335,3920127 - int (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);sqlite3_api_routines::prepare108335,3920127 - int (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);prepare16108336,3920200 - int (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);sqlite3_api_routines::prepare16108336,3920200 - void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*);profile108337,3920275 - void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*);sqlite3_api_routines::profile108337,3920275 - void (*progress_handler)(sqlite3*,int,int(*)(void*),void*);progress_handler108338,3920353 - void (*progress_handler)(sqlite3*,int,int(*)(void*),void*);sqlite3_api_routines::progress_handler108338,3920353 - void *(*realloc)(void*,int);realloc108339,3920416 - void *(*realloc)(void*,int);sqlite3_api_routines::realloc108339,3920416 - int (*reset)(sqlite3_stmt*pStmt);reset108340,3920447 - int (*reset)(sqlite3_stmt*pStmt);sqlite3_api_routines::reset108340,3920447 - void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*));result_blob108341,3920484 - void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*));sqlite3_api_routines::result_blob108341,3920484 - void (*result_double)(sqlite3_context*,double);result_double108342,3920557 - void (*result_double)(sqlite3_context*,double);sqlite3_api_routines::result_double108342,3920557 - void (*result_error)(sqlite3_context*,const char*,int);result_error108343,3920608 - void (*result_error)(sqlite3_context*,const char*,int);sqlite3_api_routines::result_error108343,3920608 - void (*result_error16)(sqlite3_context*,const void*,int);result_error16108344,3920667 - void (*result_error16)(sqlite3_context*,const void*,int);sqlite3_api_routines::result_error16108344,3920667 - void (*result_int)(sqlite3_context*,int);result_int108345,3920728 - void (*result_int)(sqlite3_context*,int);sqlite3_api_routines::result_int108345,3920728 - void (*result_int64)(sqlite3_context*,sqlite_int64);result_int64108346,3920773 - void (*result_int64)(sqlite3_context*,sqlite_int64);sqlite3_api_routines::result_int64108346,3920773 - void (*result_null)(sqlite3_context*);result_null108347,3920829 - void (*result_null)(sqlite3_context*);sqlite3_api_routines::result_null108347,3920829 - void (*result_text)(sqlite3_context*,const char*,int,void(*)(void*));result_text108348,3920871 - void (*result_text)(sqlite3_context*,const char*,int,void(*)(void*));sqlite3_api_routines::result_text108348,3920871 - void (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*));result_text16108349,3920944 - void (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*));sqlite3_api_routines::result_text16108349,3920944 - void (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*));result_text16be108350,3921019 - void (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*));sqlite3_api_routines::result_text16be108350,3921019 - void (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*));result_text16le108351,3921096 - void (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*));sqlite3_api_routines::result_text16le108351,3921096 - void (*result_value)(sqlite3_context*,sqlite3_value*);result_value108352,3921173 - void (*result_value)(sqlite3_context*,sqlite3_value*);sqlite3_api_routines::result_value108352,3921173 - void * (*rollback_hook)(sqlite3*,void(*)(void*),void*);rollback_hook108353,3921231 - void * (*rollback_hook)(sqlite3*,void(*)(void*),void*);sqlite3_api_routines::rollback_hook108353,3921231 - int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*,set_authorizer108354,3921289 - int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*,sqlite3_api_routines::set_authorizer108354,3921289 - void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*));set_auxdata108356,3921423 - void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*));sqlite3_api_routines::set_auxdata108356,3921423 - char * (*snprintf)(int,char*,const char*,...);snprintf108357,3921491 - char * (*snprintf)(int,char*,const char*,...);sqlite3_api_routines::snprintf108357,3921491 - int (*step)(sqlite3_stmt*);step108358,3921540 - int (*step)(sqlite3_stmt*);sqlite3_api_routines::step108358,3921540 - int (*table_column_metadata)(sqlite3*,const char*,const char*,const char*,table_column_metadata108359,3921571 - int (*table_column_metadata)(sqlite3*,const char*,const char*,const char*,sqlite3_api_routines::table_column_metadata108359,3921571 - void (*thread_cleanup)(void);thread_cleanup108361,3921724 - void (*thread_cleanup)(void);sqlite3_api_routines::thread_cleanup108361,3921724 - int (*total_changes)(sqlite3*);total_changes108362,3921757 - int (*total_changes)(sqlite3*);sqlite3_api_routines::total_changes108362,3921757 - void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*);trace108363,3921792 - void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*);sqlite3_api_routines::trace108363,3921792 - int (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*);transfer_bindings108364,3921860 - int (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*);sqlite3_api_routines::transfer_bindings108364,3921860 - void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*,update_hook108365,3921918 - void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*,sqlite3_api_routines::update_hook108365,3921918 - void * (*user_data)(sqlite3_context*);user_data108367,3922058 - void * (*user_data)(sqlite3_context*);sqlite3_api_routines::user_data108367,3922058 - const void * (*value_blob)(sqlite3_value*);value_blob108368,3922099 - const void * (*value_blob)(sqlite3_value*);sqlite3_api_routines::value_blob108368,3922099 - int (*value_bytes)(sqlite3_value*);value_bytes108369,3922145 - int (*value_bytes)(sqlite3_value*);sqlite3_api_routines::value_bytes108369,3922145 - int (*value_bytes16)(sqlite3_value*);value_bytes16108370,3922184 - int (*value_bytes16)(sqlite3_value*);sqlite3_api_routines::value_bytes16108370,3922184 - double (*value_double)(sqlite3_value*);value_double108371,3922225 - double (*value_double)(sqlite3_value*);sqlite3_api_routines::value_double108371,3922225 - int (*value_int)(sqlite3_value*);value_int108372,3922268 - int (*value_int)(sqlite3_value*);sqlite3_api_routines::value_int108372,3922268 - sqlite_int64 (*value_int64)(sqlite3_value*);value_int64108373,3922305 - sqlite_int64 (*value_int64)(sqlite3_value*);sqlite3_api_routines::value_int64108373,3922305 - int (*value_numeric_type)(sqlite3_value*);value_numeric_type108374,3922353 - int (*value_numeric_type)(sqlite3_value*);sqlite3_api_routines::value_numeric_type108374,3922353 - const unsigned char * (*value_text)(sqlite3_value*);value_text108375,3922399 - const unsigned char * (*value_text)(sqlite3_value*);sqlite3_api_routines::value_text108375,3922399 - const void * (*value_text16)(sqlite3_value*);value_text16108376,3922454 - const void * (*value_text16)(sqlite3_value*);sqlite3_api_routines::value_text16108376,3922454 - const void * (*value_text16be)(sqlite3_value*);value_text16be108377,3922502 - const void * (*value_text16be)(sqlite3_value*);sqlite3_api_routines::value_text16be108377,3922502 - const void * (*value_text16le)(sqlite3_value*);value_text16le108378,3922552 - const void * (*value_text16le)(sqlite3_value*);sqlite3_api_routines::value_text16le108378,3922552 - int (*value_type)(sqlite3_value*);value_type108379,3922602 - int (*value_type)(sqlite3_value*);sqlite3_api_routines::value_type108379,3922602 - char *(*vmprintf)(const char*,va_list);vmprintf108380,3922640 - char *(*vmprintf)(const char*,va_list);sqlite3_api_routines::vmprintf108380,3922640 - int (*overload_function)(sqlite3*, const char *zFuncName, int nArg);overload_function108382,3922700 - int (*overload_function)(sqlite3*, const char *zFuncName, int nArg);sqlite3_api_routines::overload_function108382,3922700 - int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);prepare_v2108384,3922795 - int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);sqlite3_api_routines::prepare_v2108384,3922795 - int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);prepare16_v2108385,3922870 - int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);sqlite3_api_routines::prepare16_v2108385,3922870 - int (*clear_bindings)(sqlite3_stmt*);clear_bindings108386,3922947 - int (*clear_bindings)(sqlite3_stmt*);sqlite3_api_routines::clear_bindings108386,3922947 - int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,create_module_v2108388,3923010 - int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,sqlite3_api_routines::create_module_v2108388,3923010 - int (*bind_zeroblob)(sqlite3_stmt*,int,int);bind_zeroblob108391,3923162 - int (*bind_zeroblob)(sqlite3_stmt*,int,int);sqlite3_api_routines::bind_zeroblob108391,3923162 - int (*blob_bytes)(sqlite3_blob*);blob_bytes108392,3923209 - int (*blob_bytes)(sqlite3_blob*);sqlite3_api_routines::blob_bytes108392,3923209 - int (*blob_close)(sqlite3_blob*);blob_close108393,3923245 - int (*blob_close)(sqlite3_blob*);sqlite3_api_routines::blob_close108393,3923245 - int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64,blob_open108394,3923281 - int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64,sqlite3_api_routines::blob_open108394,3923281 - int (*blob_read)(sqlite3_blob*,void*,int,int);blob_read108396,3923400 - int (*blob_read)(sqlite3_blob*,void*,int,int);sqlite3_api_routines::blob_read108396,3923400 - int (*blob_write)(sqlite3_blob*,const void*,int,int);blob_write108397,3923449 - int (*blob_write)(sqlite3_blob*,const void*,int,int);sqlite3_api_routines::blob_write108397,3923449 - int (*create_collation_v2)(sqlite3*,const char*,int,void*,create_collation_v2108398,3923505 - int (*create_collation_v2)(sqlite3*,const char*,int,void*,sqlite3_api_routines::create_collation_v2108398,3923505 - int (*file_control)(sqlite3*,const char*,int,void*);file_control108401,3923688 - int (*file_control)(sqlite3*,const char*,int,void*);sqlite3_api_routines::file_control108401,3923688 - sqlite3_int64 (*memory_highwater)(int);memory_highwater108402,3923743 - sqlite3_int64 (*memory_highwater)(int);sqlite3_api_routines::memory_highwater108402,3923743 - sqlite3_int64 (*memory_used)(void);memory_used108403,3923785 - sqlite3_int64 (*memory_used)(void);sqlite3_api_routines::memory_used108403,3923785 - sqlite3_mutex *(*mutex_alloc)(int);mutex_alloc108404,3923823 - sqlite3_mutex *(*mutex_alloc)(int);sqlite3_api_routines::mutex_alloc108404,3923823 - void (*mutex_enter)(sqlite3_mutex*);mutex_enter108405,3923861 - void (*mutex_enter)(sqlite3_mutex*);sqlite3_api_routines::mutex_enter108405,3923861 - void (*mutex_free)(sqlite3_mutex*);mutex_free108406,3923900 - void (*mutex_free)(sqlite3_mutex*);sqlite3_api_routines::mutex_free108406,3923900 - void (*mutex_leave)(sqlite3_mutex*);mutex_leave108407,3923938 - void (*mutex_leave)(sqlite3_mutex*);sqlite3_api_routines::mutex_leave108407,3923938 - int (*mutex_try)(sqlite3_mutex*);mutex_try108408,3923977 - int (*mutex_try)(sqlite3_mutex*);sqlite3_api_routines::mutex_try108408,3923977 - int (*open_v2)(const char*,sqlite3**,int,const char*);open_v2108409,3924013 - int (*open_v2)(const char*,sqlite3**,int,const char*);sqlite3_api_routines::open_v2108409,3924013 - int (*release_memory)(int);release_memory108410,3924070 - int (*release_memory)(int);sqlite3_api_routines::release_memory108410,3924070 - void (*result_error_nomem)(sqlite3_context*);result_error_nomem108411,3924100 - void (*result_error_nomem)(sqlite3_context*);sqlite3_api_routines::result_error_nomem108411,3924100 - void (*result_error_toobig)(sqlite3_context*);result_error_toobig108412,3924148 - void (*result_error_toobig)(sqlite3_context*);sqlite3_api_routines::result_error_toobig108412,3924148 - int (*sleep)(int);sleep108413,3924197 - int (*sleep)(int);sqlite3_api_routines::sleep108413,3924197 - void (*soft_heap_limit)(int);soft_heap_limit108414,3924218 - void (*soft_heap_limit)(int);sqlite3_api_routines::soft_heap_limit108414,3924218 - sqlite3_vfs *(*vfs_find)(const char*);vfs_find108415,3924250 - sqlite3_vfs *(*vfs_find)(const char*);sqlite3_api_routines::vfs_find108415,3924250 - int (*vfs_register)(sqlite3_vfs*,int);vfs_register108416,3924291 - int (*vfs_register)(sqlite3_vfs*,int);sqlite3_api_routines::vfs_register108416,3924291 - int (*vfs_unregister)(sqlite3_vfs*);vfs_unregister108417,3924332 - int (*vfs_unregister)(sqlite3_vfs*);sqlite3_api_routines::vfs_unregister108417,3924332 - int (*xthreadsafe)(void);xthreadsafe108418,3924371 - int (*xthreadsafe)(void);sqlite3_api_routines::xthreadsafe108418,3924371 - void (*result_zeroblob)(sqlite3_context*,int);result_zeroblob108419,3924399 - void (*result_zeroblob)(sqlite3_context*,int);sqlite3_api_routines::result_zeroblob108419,3924399 - void (*result_error_code)(sqlite3_context*,int);result_error_code108420,3924448 - void (*result_error_code)(sqlite3_context*,int);sqlite3_api_routines::result_error_code108420,3924448 - int (*test_control)(int, ...);test_control108421,3924499 - int (*test_control)(int, ...);sqlite3_api_routines::test_control108421,3924499 - void (*randomness)(int,void*);randomness108422,3924532 - void (*randomness)(int,void*);sqlite3_api_routines::randomness108422,3924532 - sqlite3 *(*context_db_handle)(sqlite3_context*);context_db_handle108423,3924565 - sqlite3 *(*context_db_handle)(sqlite3_context*);sqlite3_api_routines::context_db_handle108423,3924565 - int (*extended_result_codes)(sqlite3*,int);extended_result_codes108424,3924616 - int (*extended_result_codes)(sqlite3*,int);sqlite3_api_routines::extended_result_codes108424,3924616 - int (*limit)(sqlite3*,int,int);limit108425,3924662 - int (*limit)(sqlite3*,int,int);sqlite3_api_routines::limit108425,3924662 - sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*);next_stmt108426,3924696 - sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*);sqlite3_api_routines::next_stmt108426,3924696 - const char *(*sql)(sqlite3_stmt*);sql108427,3924750 - const char *(*sql)(sqlite3_stmt*);sqlite3_api_routines::sql108427,3924750 - int (*status)(int,int*,int*,int);status108428,3924787 - int (*status)(int,int*,int*,int);sqlite3_api_routines::status108428,3924787 - int (*backup_finish)(sqlite3_backup*);backup_finish108429,3924823 - int (*backup_finish)(sqlite3_backup*);sqlite3_api_routines::backup_finish108429,3924823 - sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*);backup_init108430,3924864 - sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*);sqlite3_api_routines::backup_init108430,3924864 - int (*backup_pagecount)(sqlite3_backup*);backup_pagecount108431,3924941 - int (*backup_pagecount)(sqlite3_backup*);sqlite3_api_routines::backup_pagecount108431,3924941 - int (*backup_remaining)(sqlite3_backup*);backup_remaining108432,3924985 - int (*backup_remaining)(sqlite3_backup*);sqlite3_api_routines::backup_remaining108432,3924985 - int (*backup_step)(sqlite3_backup*,int);backup_step108433,3925029 - int (*backup_step)(sqlite3_backup*,int);sqlite3_api_routines::backup_step108433,3925029 - const char *(*compileoption_get)(int);compileoption_get108434,3925072 - const char *(*compileoption_get)(int);sqlite3_api_routines::compileoption_get108434,3925072 - int (*compileoption_used)(const char*);compileoption_used108435,3925113 - int (*compileoption_used)(const char*);sqlite3_api_routines::compileoption_used108435,3925113 - int (*create_function_v2)(sqlite3*,const char*,int,int,void*,create_function_v2108436,3925155 - int (*create_function_v2)(sqlite3*,const char*,int,int,void*,sqlite3_api_routines::create_function_v2108436,3925155 - int (*db_config)(sqlite3*,int,...);db_config108441,3925496 - int (*db_config)(sqlite3*,int,...);sqlite3_api_routines::db_config108441,3925496 - sqlite3_mutex *(*db_mutex)(sqlite3*);db_mutex108442,3925534 - sqlite3_mutex *(*db_mutex)(sqlite3*);sqlite3_api_routines::db_mutex108442,3925534 - int (*db_status)(sqlite3*,int,int*,int*,int);db_status108443,3925574 - int (*db_status)(sqlite3*,int,int*,int*,int);sqlite3_api_routines::db_status108443,3925574 - int (*extended_errcode)(sqlite3*);extended_errcode108444,3925622 - int (*extended_errcode)(sqlite3*);sqlite3_api_routines::extended_errcode108444,3925622 - void (*log)(int,const char*,...);log108445,3925659 - void (*log)(int,const char*,...);sqlite3_api_routines::log108445,3925659 - sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64);soft_heap_limit64108446,3925695 - sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64);sqlite3_api_routines::soft_heap_limit64108446,3925695 - const char *(*sourceid)(void);sourceid108447,3925748 - const char *(*sourceid)(void);sqlite3_api_routines::sourceid108447,3925748 - int (*stmt_status)(sqlite3_stmt*,int,int);stmt_status108448,3925781 - int (*stmt_status)(sqlite3_stmt*,int,int);sqlite3_api_routines::stmt_status108448,3925781 - int (*strnicmp)(const char*,const char*,int);strnicmp108449,3925826 - int (*strnicmp)(const char*,const char*,int);sqlite3_api_routines::strnicmp108449,3925826 - int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*);unlock_notify108450,3925874 - int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*);sqlite3_api_routines::unlock_notify108450,3925874 - int (*wal_autocheckpoint)(sqlite3*,int);wal_autocheckpoint108451,3925934 - int (*wal_autocheckpoint)(sqlite3*,int);sqlite3_api_routines::wal_autocheckpoint108451,3925934 - int (*wal_checkpoint)(sqlite3*,const char*);wal_checkpoint108452,3925977 - int (*wal_checkpoint)(sqlite3*,const char*);sqlite3_api_routines::wal_checkpoint108452,3925977 - void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*);wal_hook108453,3926024 - void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*);sqlite3_api_routines::wal_hook108453,3926024 - int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);blob_reopen108454,3926100 - int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);sqlite3_api_routines::blob_reopen108454,3926100 - int (*vtab_config)(sqlite3*,int op,...);vtab_config108455,3926151 - int (*vtab_config)(sqlite3*,int op,...);sqlite3_api_routines::vtab_config108455,3926151 - int (*vtab_on_conflict)(sqlite3*);vtab_on_conflict108456,3926194 - int (*vtab_on_conflict)(sqlite3*);sqlite3_api_routines::vtab_on_conflict108456,3926194 - int (*close_v2)(sqlite3*);close_v2108458,3926264 - int (*close_v2)(sqlite3*);sqlite3_api_routines::close_v2108458,3926264 - const char *(*db_filename)(sqlite3*,const char*);db_filename108459,3926293 - const char *(*db_filename)(sqlite3*,const char*);sqlite3_api_routines::db_filename108459,3926293 - int (*db_readonly)(sqlite3*,const char*);db_readonly108460,3926345 - int (*db_readonly)(sqlite3*,const char*);sqlite3_api_routines::db_readonly108460,3926345 - int (*db_release_memory)(sqlite3*);db_release_memory108461,3926389 - int (*db_release_memory)(sqlite3*);sqlite3_api_routines::db_release_memory108461,3926389 - const char *(*errstr)(int);errstr108462,3926427 - const char *(*errstr)(int);sqlite3_api_routines::errstr108462,3926427 - int (*stmt_busy)(sqlite3_stmt*);stmt_busy108463,3926457 - int (*stmt_busy)(sqlite3_stmt*);sqlite3_api_routines::stmt_busy108463,3926457 - int (*stmt_readonly)(sqlite3_stmt*);stmt_readonly108464,3926492 - int (*stmt_readonly)(sqlite3_stmt*);sqlite3_api_routines::stmt_readonly108464,3926492 - int (*stricmp)(const char*,const char*);stricmp108465,3926531 - int (*stricmp)(const char*,const char*);sqlite3_api_routines::stricmp108465,3926531 - int (*uri_boolean)(const char*,const char*,int);uri_boolean108466,3926574 - int (*uri_boolean)(const char*,const char*,int);sqlite3_api_routines::uri_boolean108466,3926574 - sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64);uri_int64108467,3926625 - sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64);sqlite3_api_routines::uri_int64108467,3926625 - const char *(*uri_parameter)(const char*,const char*);uri_parameter108468,3926694 - const char *(*uri_parameter)(const char*,const char*);sqlite3_api_routines::uri_parameter108468,3926694 - char *(*vsnprintf)(int,char*,const char*,va_list);vsnprintf108469,3926751 - char *(*vsnprintf)(int,char*,const char*,va_list);sqlite3_api_routines::vsnprintf108469,3926751 - int (*wal_checkpoint_v2)(sqlite3*,const char*,int,int*,int*);wal_checkpoint_v2108470,3926804 - int (*wal_checkpoint_v2)(sqlite3*,const char*,int,int*,int*);sqlite3_api_routines::wal_checkpoint_v2108470,3926804 - int (*auto_extension)(void(*)(void));auto_extension108472,3926900 - int (*auto_extension)(void(*)(void));sqlite3_api_routines::auto_extension108472,3926900 - int (*bind_blob64)(sqlite3_stmt*,int,const void*,sqlite3_uint64,bind_blob64108473,3926940 - int (*bind_blob64)(sqlite3_stmt*,int,const void*,sqlite3_uint64,sqlite3_api_routines::bind_blob64108473,3926940 - int (*bind_text64)(sqlite3_stmt*,int,const char*,sqlite3_uint64,bind_text64108475,3927045 - int (*bind_text64)(sqlite3_stmt*,int,const char*,sqlite3_uint64,sqlite3_api_routines::bind_text64108475,3927045 - int (*cancel_auto_extension)(void(*)(void));cancel_auto_extension108477,3927165 - int (*cancel_auto_extension)(void(*)(void));sqlite3_api_routines::cancel_auto_extension108477,3927165 - int (*load_extension)(sqlite3*,const char*,const char*,char**);load_extension108478,3927212 - int (*load_extension)(sqlite3*,const char*,const char*,char**);sqlite3_api_routines::load_extension108478,3927212 - void *(*malloc64)(sqlite3_uint64);malloc64108479,3927278 - void *(*malloc64)(sqlite3_uint64);sqlite3_api_routines::malloc64108479,3927278 - sqlite3_uint64 (*msize)(void*);msize108480,3927315 - sqlite3_uint64 (*msize)(void*);sqlite3_api_routines::msize108480,3927315 - void *(*realloc64)(void*,sqlite3_uint64);realloc64108481,3927349 - void *(*realloc64)(void*,sqlite3_uint64);sqlite3_api_routines::realloc64108481,3927349 - void (*reset_auto_extension)(void);reset_auto_extension108482,3927393 - void (*reset_auto_extension)(void);sqlite3_api_routines::reset_auto_extension108482,3927393 - void (*result_blob64)(sqlite3_context*,const void*,sqlite3_uint64,result_blob64108483,3927431 - void (*result_blob64)(sqlite3_context*,const void*,sqlite3_uint64,sqlite3_api_routines::result_blob64108483,3927431 - void (*result_text64)(sqlite3_context*,const char*,sqlite3_uint64,result_text64108485,3927541 - void (*result_text64)(sqlite3_context*,const char*,sqlite3_uint64,sqlite3_api_routines::result_text64108485,3927541 - int (*strglob)(const char*,const char*);strglob108487,3927667 - int (*strglob)(const char*,const char*);sqlite3_api_routines::strglob108487,3927667 - sqlite3_value *(*value_dup)(const sqlite3_value*);value_dup108489,3927743 - sqlite3_value *(*value_dup)(const sqlite3_value*);sqlite3_api_routines::value_dup108489,3927743 - void (*value_free)(sqlite3_value*);value_free108490,3927796 - void (*value_free)(sqlite3_value*);sqlite3_api_routines::value_free108490,3927796 - int (*result_zeroblob64)(sqlite3_context*,sqlite3_uint64);result_zeroblob64108491,3927834 - int (*result_zeroblob64)(sqlite3_context*,sqlite3_uint64);sqlite3_api_routines::result_zeroblob64108491,3927834 - int (*bind_zeroblob64)(sqlite3_stmt*, int, sqlite3_uint64);bind_zeroblob64108492,3927895 - int (*bind_zeroblob64)(sqlite3_stmt*, int, sqlite3_uint64);sqlite3_api_routines::bind_zeroblob64108492,3927895 - unsigned int (*value_subtype)(sqlite3_value*);value_subtype108494,3927989 - unsigned int (*value_subtype)(sqlite3_value*);sqlite3_api_routines::value_subtype108494,3927989 - void (*result_subtype)(sqlite3_context*,unsigned int);result_subtype108495,3928038 - void (*result_subtype)(sqlite3_context*,unsigned int);sqlite3_api_routines::result_subtype108495,3928038 - int (*status64)(int,sqlite3_int64*,sqlite3_int64*,int);status64108497,3928128 - int (*status64)(int,sqlite3_int64*,sqlite3_int64*,int);sqlite3_api_routines::status64108497,3928128 - int (*strlike)(const char*,const char*,unsigned int);strlike108498,3928186 - int (*strlike)(const char*,const char*,unsigned int);sqlite3_api_routines::strlike108498,3928186 - int (*db_cacheflush)(sqlite3*);db_cacheflush108499,3928242 - int (*db_cacheflush)(sqlite3*);sqlite3_api_routines::db_cacheflush108499,3928242 - int (*system_errno)(sqlite3*);system_errno108501,3928309 - int (*system_errno)(sqlite3*);sqlite3_api_routines::system_errno108501,3928309 -#define sqlite3_aggregate_context sqlite3_aggregate_context108516,3928890 -#define sqlite3_aggregate_count sqlite3_aggregate_count108518,3928991 -#define sqlite3_bind_blob sqlite3_bind_blob108520,3929066 -#define sqlite3_bind_double sqlite3_bind_double108521,3929128 -#define sqlite3_bind_int sqlite3_bind_int108522,3929192 -#define sqlite3_bind_int64 sqlite3_bind_int64108523,3929253 -#define sqlite3_bind_null sqlite3_bind_null108524,3929316 -#define sqlite3_bind_parameter_count sqlite3_bind_parameter_count108525,3929378 -#define sqlite3_bind_parameter_index sqlite3_bind_parameter_index108526,3929451 -#define sqlite3_bind_parameter_name sqlite3_bind_parameter_name108527,3929524 -#define sqlite3_bind_text sqlite3_bind_text108528,3929596 -#define sqlite3_bind_text16 sqlite3_bind_text16108529,3929658 -#define sqlite3_bind_value sqlite3_bind_value108530,3929722 -#define sqlite3_busy_handler sqlite3_busy_handler108531,3929785 -#define sqlite3_busy_timeout sqlite3_busy_timeout108532,3929850 -#define sqlite3_changes sqlite3_changes108533,3929915 -#define sqlite3_close sqlite3_close108534,3929975 -#define sqlite3_collation_needed sqlite3_collation_needed108535,3930033 -#define sqlite3_collation_needed16 sqlite3_collation_needed16108536,3930102 -#define sqlite3_column_blob sqlite3_column_blob108537,3930173 -#define sqlite3_column_bytes sqlite3_column_bytes108538,3930237 -#define sqlite3_column_bytes16 sqlite3_column_bytes16108539,3930302 -#define sqlite3_column_count sqlite3_column_count108540,3930369 -#define sqlite3_column_database_name sqlite3_column_database_name108541,3930434 -#define sqlite3_column_database_name16 sqlite3_column_database_name16108542,3930507 -#define sqlite3_column_decltype sqlite3_column_decltype108543,3930582 -#define sqlite3_column_decltype16 sqlite3_column_decltype16108544,3930650 -#define sqlite3_column_double sqlite3_column_double108545,3930720 -#define sqlite3_column_int sqlite3_column_int108546,3930786 -#define sqlite3_column_int64 sqlite3_column_int64108547,3930849 -#define sqlite3_column_name sqlite3_column_name108548,3930914 -#define sqlite3_column_name16 sqlite3_column_name16108549,3930978 -#define sqlite3_column_origin_name sqlite3_column_origin_name108550,3931044 -#define sqlite3_column_origin_name16 sqlite3_column_origin_name16108551,3931115 -#define sqlite3_column_table_name sqlite3_column_table_name108552,3931188 -#define sqlite3_column_table_name16 sqlite3_column_table_name16108553,3931258 -#define sqlite3_column_text sqlite3_column_text108554,3931330 -#define sqlite3_column_text16 sqlite3_column_text16108555,3931394 -#define sqlite3_column_type sqlite3_column_type108556,3931460 -#define sqlite3_column_value sqlite3_column_value108557,3931524 -#define sqlite3_commit_hook sqlite3_commit_hook108558,3931589 -#define sqlite3_complete sqlite3_complete108559,3931653 -#define sqlite3_complete16 sqlite3_complete16108560,3931714 -#define sqlite3_create_collation sqlite3_create_collation108561,3931777 -#define sqlite3_create_collation16 sqlite3_create_collation16108562,3931846 -#define sqlite3_create_function sqlite3_create_function108563,3931917 -#define sqlite3_create_function16 sqlite3_create_function16108564,3931985 -#define sqlite3_create_module sqlite3_create_module108565,3932055 -#define sqlite3_create_module_v2 sqlite3_create_module_v2108566,3932121 -#define sqlite3_data_count sqlite3_data_count108567,3932190 -#define sqlite3_db_handle sqlite3_db_handle108568,3932253 -#define sqlite3_declare_vtab sqlite3_declare_vtab108569,3932315 -#define sqlite3_enable_shared_cache sqlite3_enable_shared_cache108570,3932380 -#define sqlite3_errcode sqlite3_errcode108571,3932452 -#define sqlite3_errmsg sqlite3_errmsg108572,3932512 -#define sqlite3_errmsg16 sqlite3_errmsg16108573,3932571 -#define sqlite3_exec sqlite3_exec108574,3932632 -#define sqlite3_expired sqlite3_expired108576,3932720 -#define sqlite3_finalize sqlite3_finalize108578,3932787 -#define sqlite3_free sqlite3_free108579,3932848 -#define sqlite3_free_table sqlite3_free_table108580,3932905 -#define sqlite3_get_autocommit sqlite3_get_autocommit108581,3932968 -#define sqlite3_get_auxdata sqlite3_get_auxdata108582,3933035 -#define sqlite3_get_table sqlite3_get_table108583,3933099 -#define sqlite3_global_recover sqlite3_global_recover108585,3933192 -#define sqlite3_interrupt sqlite3_interrupt108587,3933266 -#define sqlite3_last_insert_rowid sqlite3_last_insert_rowid108588,3933329 -#define sqlite3_libversion sqlite3_libversion108589,3933399 -#define sqlite3_libversion_number sqlite3_libversion_number108590,3933462 -#define sqlite3_malloc sqlite3_malloc108591,3933532 -#define sqlite3_mprintf sqlite3_mprintf108592,3933591 -#define sqlite3_open sqlite3_open108593,3933651 -#define sqlite3_open16 sqlite3_open16108594,3933708 -#define sqlite3_prepare sqlite3_prepare108595,3933767 -#define sqlite3_prepare16 sqlite3_prepare16108596,3933827 -#define sqlite3_prepare_v2 sqlite3_prepare_v2108597,3933889 -#define sqlite3_prepare16_v2 sqlite3_prepare16_v2108598,3933952 -#define sqlite3_profile sqlite3_profile108599,3934017 -#define sqlite3_progress_handler sqlite3_progress_handler108600,3934077 -#define sqlite3_realloc sqlite3_realloc108601,3934146 -#define sqlite3_reset sqlite3_reset108602,3934206 -#define sqlite3_result_blob sqlite3_result_blob108603,3934264 -#define sqlite3_result_double sqlite3_result_double108604,3934328 -#define sqlite3_result_error sqlite3_result_error108605,3934394 -#define sqlite3_result_error16 sqlite3_result_error16108606,3934459 -#define sqlite3_result_int sqlite3_result_int108607,3934526 -#define sqlite3_result_int64 sqlite3_result_int64108608,3934589 -#define sqlite3_result_null sqlite3_result_null108609,3934654 -#define sqlite3_result_text sqlite3_result_text108610,3934718 -#define sqlite3_result_text16 sqlite3_result_text16108611,3934782 -#define sqlite3_result_text16be sqlite3_result_text16be108612,3934848 -#define sqlite3_result_text16le sqlite3_result_text16le108613,3934916 -#define sqlite3_result_value sqlite3_result_value108614,3934984 -#define sqlite3_rollback_hook sqlite3_rollback_hook108615,3935049 -#define sqlite3_set_authorizer sqlite3_set_authorizer108616,3935115 -#define sqlite3_set_auxdata sqlite3_set_auxdata108617,3935182 -#define sqlite3_snprintf sqlite3_snprintf108618,3935246 -#define sqlite3_step sqlite3_step108619,3935307 -#define sqlite3_table_column_metadata sqlite3_table_column_metadata108620,3935364 -#define sqlite3_thread_cleanup sqlite3_thread_cleanup108621,3935438 -#define sqlite3_total_changes sqlite3_total_changes108622,3935505 -#define sqlite3_trace sqlite3_trace108623,3935571 -#define sqlite3_transfer_bindings sqlite3_transfer_bindings108625,3935660 -#define sqlite3_update_hook sqlite3_update_hook108627,3935737 -#define sqlite3_user_data sqlite3_user_data108628,3935801 -#define sqlite3_value_blob sqlite3_value_blob108629,3935863 -#define sqlite3_value_bytes sqlite3_value_bytes108630,3935926 -#define sqlite3_value_bytes16 sqlite3_value_bytes16108631,3935990 -#define sqlite3_value_double sqlite3_value_double108632,3936056 -#define sqlite3_value_int sqlite3_value_int108633,3936121 -#define sqlite3_value_int64 sqlite3_value_int64108634,3936183 -#define sqlite3_value_numeric_type sqlite3_value_numeric_type108635,3936247 -#define sqlite3_value_text sqlite3_value_text108636,3936318 -#define sqlite3_value_text16 sqlite3_value_text16108637,3936381 -#define sqlite3_value_text16be sqlite3_value_text16be108638,3936446 -#define sqlite3_value_text16le sqlite3_value_text16le108639,3936513 -#define sqlite3_value_type sqlite3_value_type108640,3936580 -#define sqlite3_vmprintf sqlite3_vmprintf108641,3936643 -#define sqlite3_vsnprintf sqlite3_vsnprintf108642,3936704 -#define sqlite3_overload_function sqlite3_overload_function108643,3936766 -#define sqlite3_prepare_v2 sqlite3_prepare_v2108644,3936836 -#define sqlite3_prepare16_v2 sqlite3_prepare16_v2108645,3936899 -#define sqlite3_clear_bindings sqlite3_clear_bindings108646,3936964 -#define sqlite3_bind_zeroblob sqlite3_bind_zeroblob108647,3937031 -#define sqlite3_blob_bytes sqlite3_blob_bytes108648,3937097 -#define sqlite3_blob_close sqlite3_blob_close108649,3937160 -#define sqlite3_blob_open sqlite3_blob_open108650,3937223 -#define sqlite3_blob_read sqlite3_blob_read108651,3937285 -#define sqlite3_blob_write sqlite3_blob_write108652,3937347 -#define sqlite3_create_collation_v2 sqlite3_create_collation_v2108653,3937410 -#define sqlite3_file_control sqlite3_file_control108654,3937482 -#define sqlite3_memory_highwater sqlite3_memory_highwater108655,3937547 -#define sqlite3_memory_used sqlite3_memory_used108656,3937616 -#define sqlite3_mutex_alloc sqlite3_mutex_alloc108657,3937680 -#define sqlite3_mutex_enter sqlite3_mutex_enter108658,3937744 -#define sqlite3_mutex_free sqlite3_mutex_free108659,3937808 -#define sqlite3_mutex_leave sqlite3_mutex_leave108660,3937871 -#define sqlite3_mutex_try sqlite3_mutex_try108661,3937935 -#define sqlite3_open_v2 sqlite3_open_v2108662,3937997 -#define sqlite3_release_memory sqlite3_release_memory108663,3938057 -#define sqlite3_result_error_nomem sqlite3_result_error_nomem108664,3938124 -#define sqlite3_result_error_toobig sqlite3_result_error_toobig108665,3938195 -#define sqlite3_sleep sqlite3_sleep108666,3938267 -#define sqlite3_soft_heap_limit sqlite3_soft_heap_limit108667,3938325 -#define sqlite3_vfs_find sqlite3_vfs_find108668,3938393 -#define sqlite3_vfs_register sqlite3_vfs_register108669,3938454 -#define sqlite3_vfs_unregister sqlite3_vfs_unregister108670,3938519 -#define sqlite3_threadsafe sqlite3_threadsafe108671,3938586 -#define sqlite3_result_zeroblob sqlite3_result_zeroblob108672,3938650 -#define sqlite3_result_error_code sqlite3_result_error_code108673,3938718 -#define sqlite3_test_control sqlite3_test_control108674,3938788 -#define sqlite3_randomness sqlite3_randomness108675,3938853 -#define sqlite3_context_db_handle sqlite3_context_db_handle108676,3938916 -#define sqlite3_extended_result_codes sqlite3_extended_result_codes108677,3938986 -#define sqlite3_limit sqlite3_limit108678,3939060 -#define sqlite3_next_stmt sqlite3_next_stmt108679,3939118 -#define sqlite3_sql sqlite3_sql108680,3939180 -#define sqlite3_status sqlite3_status108681,3939236 -#define sqlite3_backup_finish sqlite3_backup_finish108682,3939295 -#define sqlite3_backup_init sqlite3_backup_init108683,3939361 -#define sqlite3_backup_pagecount sqlite3_backup_pagecount108684,3939425 -#define sqlite3_backup_remaining sqlite3_backup_remaining108685,3939494 -#define sqlite3_backup_step sqlite3_backup_step108686,3939563 -#define sqlite3_compileoption_get sqlite3_compileoption_get108687,3939627 -#define sqlite3_compileoption_used sqlite3_compileoption_used108688,3939697 -#define sqlite3_create_function_v2 sqlite3_create_function_v2108689,3939768 -#define sqlite3_db_config sqlite3_db_config108690,3939839 -#define sqlite3_db_mutex sqlite3_db_mutex108691,3939901 -#define sqlite3_db_status sqlite3_db_status108692,3939962 -#define sqlite3_extended_errcode sqlite3_extended_errcode108693,3940024 -#define sqlite3_log sqlite3_log108694,3940093 -#define sqlite3_soft_heap_limit64 sqlite3_soft_heap_limit64108695,3940149 -#define sqlite3_sourceid sqlite3_sourceid108696,3940219 -#define sqlite3_stmt_status sqlite3_stmt_status108697,3940280 -#define sqlite3_strnicmp sqlite3_strnicmp108698,3940344 -#define sqlite3_unlock_notify sqlite3_unlock_notify108699,3940405 -#define sqlite3_wal_autocheckpoint sqlite3_wal_autocheckpoint108700,3940471 -#define sqlite3_wal_checkpoint sqlite3_wal_checkpoint108701,3940542 -#define sqlite3_wal_hook sqlite3_wal_hook108702,3940609 -#define sqlite3_blob_reopen sqlite3_blob_reopen108703,3940670 -#define sqlite3_vtab_config sqlite3_vtab_config108704,3940734 -#define sqlite3_vtab_on_conflict sqlite3_vtab_on_conflict108705,3940798 -#define sqlite3_close_v2 sqlite3_close_v2108707,3940898 -#define sqlite3_db_filename sqlite3_db_filename108708,3940959 -#define sqlite3_db_readonly sqlite3_db_readonly108709,3941023 -#define sqlite3_db_release_memory sqlite3_db_release_memory108710,3941087 -#define sqlite3_errstr sqlite3_errstr108711,3941157 -#define sqlite3_stmt_busy sqlite3_stmt_busy108712,3941216 -#define sqlite3_stmt_readonly sqlite3_stmt_readonly108713,3941278 -#define sqlite3_stricmp sqlite3_stricmp108714,3941344 -#define sqlite3_uri_boolean sqlite3_uri_boolean108715,3941404 -#define sqlite3_uri_int64 sqlite3_uri_int64108716,3941468 -#define sqlite3_uri_parameter sqlite3_uri_parameter108717,3941530 -#define sqlite3_uri_vsnprintf sqlite3_uri_vsnprintf108718,3941596 -#define sqlite3_wal_checkpoint_v2 sqlite3_wal_checkpoint_v2108719,3941658 -#define sqlite3_auto_extension sqlite3_auto_extension108721,3941758 -#define sqlite3_bind_blob64 sqlite3_bind_blob64108722,3941825 -#define sqlite3_bind_text64 sqlite3_bind_text64108723,3941889 -#define sqlite3_cancel_auto_extension sqlite3_cancel_auto_extension108724,3941953 -#define sqlite3_load_extension sqlite3_load_extension108725,3942027 -#define sqlite3_malloc64 sqlite3_malloc64108726,3942094 -#define sqlite3_msize sqlite3_msize108727,3942155 -#define sqlite3_realloc64 sqlite3_realloc64108728,3942213 -#define sqlite3_reset_auto_extension sqlite3_reset_auto_extension108729,3942275 -#define sqlite3_result_blob64 sqlite3_result_blob64108730,3942348 -#define sqlite3_result_text64 sqlite3_result_text64108731,3942414 -#define sqlite3_strglob sqlite3_strglob108732,3942480 -#define sqlite3_value_dup sqlite3_value_dup108734,3942571 -#define sqlite3_value_free sqlite3_value_free108735,3942633 -#define sqlite3_result_zeroblob64 sqlite3_result_zeroblob64108736,3942696 -#define sqlite3_bind_zeroblob64 sqlite3_bind_zeroblob64108737,3942766 -#define sqlite3_value_subtype sqlite3_value_subtype108739,3942864 -#define sqlite3_result_subtype sqlite3_result_subtype108740,3942930 -#define sqlite3_status64 sqlite3_status64108742,3943028 -#define sqlite3_strlike sqlite3_strlike108743,3943089 -#define sqlite3_db_cacheflush sqlite3_db_cacheflush108744,3943149 -#define sqlite3_system_errno sqlite3_system_errno108746,3943246 -# define SQLITE_EXTENSION_INIT1 SQLITE_EXTENSION_INIT1108752,3943540 -# define SQLITE_EXTENSION_INIT2(SQLITE_EXTENSION_INIT2108753,3943619 -# define SQLITE_EXTENSION_INIT3 SQLITE_EXTENSION_INIT3108754,3943670 -# define SQLITE_EXTENSION_INIT1 SQLITE_EXTENSION_INIT1108759,3943852 -# define SQLITE_EXTENSION_INIT2(SQLITE_EXTENSION_INIT2108760,3943898 -# define SQLITE_EXTENSION_INIT3 SQLITE_EXTENSION_INIT3108761,3943966 -# define sqlite3_column_database_name sqlite3_column_database_name108779,3944492 -# define sqlite3_column_database_name16 sqlite3_column_database_name16108780,3944534 -# define sqlite3_column_table_name sqlite3_column_table_name108781,3944576 -# define sqlite3_column_table_name16 sqlite3_column_table_name16108782,3944618 -# define sqlite3_column_origin_name sqlite3_column_origin_name108783,3944660 -# define sqlite3_column_origin_name16 sqlite3_column_origin_name16108784,3944702 -# define sqlite3_set_authorizer sqlite3_set_authorizer108788,3944785 -# define sqlite3_bind_text16 sqlite3_bind_text16108792,3944860 -# define sqlite3_collation_needed16 sqlite3_collation_needed16108793,3944902 -# define sqlite3_column_decltype16 sqlite3_column_decltype16108794,3944944 -# define sqlite3_column_name16 sqlite3_column_name16108795,3944986 -# define sqlite3_column_text16 sqlite3_column_text16108796,3945028 -# define sqlite3_complete16 sqlite3_complete16108797,3945070 -# define sqlite3_create_collation16 sqlite3_create_collation16108798,3945112 -# define sqlite3_create_function16 sqlite3_create_function16108799,3945154 -# define sqlite3_errmsg16 sqlite3_errmsg16108800,3945196 -# define sqlite3_open16 sqlite3_open16108801,3945238 -# define sqlite3_prepare16 sqlite3_prepare16108802,3945280 -# define sqlite3_prepare16_v2 sqlite3_prepare16_v2108803,3945322 -# define sqlite3_result_error16 sqlite3_result_error16108804,3945364 -# define sqlite3_result_text16 sqlite3_result_text16108805,3945406 -# define sqlite3_result_text16be sqlite3_result_text16be108806,3945448 -# define sqlite3_result_text16le sqlite3_result_text16le108807,3945490 -# define sqlite3_value_text16 sqlite3_value_text16108808,3945532 -# define sqlite3_value_text16be sqlite3_value_text16be108809,3945574 -# define sqlite3_value_text16le sqlite3_value_text16le108810,3945616 -# define sqlite3_column_database_name16 sqlite3_column_database_name16108811,3945658 -# define sqlite3_column_table_name16 sqlite3_column_table_name16108812,3945700 -# define sqlite3_column_origin_name16 sqlite3_column_origin_name16108813,3945742 -# define sqlite3_complete sqlite3_complete108817,3945820 -# define sqlite3_complete16 sqlite3_complete16108818,3945848 -# define sqlite3_column_decltype16 sqlite3_column_decltype16108822,3945914 -# define sqlite3_column_decltype sqlite3_column_decltype108823,3945956 -# define sqlite3_progress_handler sqlite3_progress_handler108827,3946043 -# define sqlite3_create_module sqlite3_create_module108831,3946119 -# define sqlite3_create_module_v2 sqlite3_create_module_v2108832,3946152 -# define sqlite3_declare_vtab sqlite3_declare_vtab108833,3946188 -# define sqlite3_vtab_config sqlite3_vtab_config108834,3946220 -# define sqlite3_vtab_on_conflict sqlite3_vtab_on_conflict108835,3946251 -# define sqlite3_enable_shared_cache sqlite3_enable_shared_cache108839,3946327 -# define sqlite3_profile sqlite3_profile108843,3946399 -# define sqlite3_trace sqlite3_trace108844,3946432 -# define sqlite3_free_table sqlite3_free_table108848,3946502 -# define sqlite3_get_table sqlite3_get_table108849,3946535 -#define sqlite3_bind_zeroblob sqlite3_bind_zeroblob108853,3946604 -#define sqlite3_blob_bytes sqlite3_blob_bytes108854,3946637 -#define sqlite3_blob_close sqlite3_blob_close108855,3946670 -#define sqlite3_blob_open sqlite3_blob_open108856,3946703 -#define sqlite3_blob_read sqlite3_blob_read108857,3946736 -#define sqlite3_blob_write sqlite3_blob_write108858,3946769 -#define sqlite3_blob_reopen sqlite3_blob_reopen108859,3946802 -static const sqlite3_api_routines sqlite3Apis = {sqlite3Apis108877,3947471 -static int sqlite3LoadExtension(sqlite3LoadExtension109182,3954433 -SQLITE_API int SQLITE_STDCALL sqlite3_load_extension(sqlite3_load_extension109322,3959073 -SQLITE_PRIVATE void sqlite3CloseExtensions(sqlite3 *db){sqlite3CloseExtensions109340,3959718 -SQLITE_API int SQLITE_STDCALL sqlite3_enable_load_extension(sqlite3 *db, int onoff){sqlite3_enable_load_extension109353,3960104 -static const sqlite3_api_routines sqlite3Apis = { 0 };sqlite3Apis109373,3960738 -typedef struct sqlite3AutoExtList sqlite3AutoExtList;sqlite3AutoExtList109384,3961009 -static SQLITE_WSD struct sqlite3AutoExtList {sqlite3AutoExtList109385,3961063 - u32 nExt; /* Number of entries in aExt[] */ nExt109386,3961109 - u32 nExt; /* Number of entries in aExt[] */ sqlite3AutoExtList::nExt109386,3961109 - void (**aExt)(void); /* Pointers to the extension init functions */aExt109387,3961178 - void (**aExt)(void); /* Pointers to the extension init functions */sqlite3AutoExtList::aExt109387,3961178 -} sqlite3Autoext = { 0, 0 };sqlite3Autoext109388,3961250 -# define wsdAutoextInit wsdAutoextInit109397,3961641 -# define wsdAutoext wsdAutoext109399,3961736 -# define wsdAutoextInitwsdAutoextInit109401,3961767 -# define wsdAutoext wsdAutoext109402,3961791 -SQLITE_API int SQLITE_STDCALL sqlite3_auto_extension(void (*xInit)(void)){sqlite3_auto_extension109410,3961949 -SQLITE_API int SQLITE_STDCALL sqlite3_cancel_auto_extension(void (*xInit)(void)){sqlite3_cancel_auto_extension109455,3963204 -SQLITE_API void SQLITE_STDCALL sqlite3_reset_auto_extension(void){sqlite3_reset_auto_extension109478,3963761 -SQLITE_PRIVATE void sqlite3AutoLoadExtensions(sqlite3 *db){sqlite3AutoLoadExtensions109500,3964298 -# define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE109554,3965903 -# define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE109556,3965953 -#define PragTyp_HEADER_VALUE PragTyp_HEADER_VALUE109574,3966805 -#define PragTyp_AUTO_VACUUM PragTyp_AUTO_VACUUM109575,3966854 -#define PragTyp_FLAG PragTyp_FLAG109576,3966903 -#define PragTyp_BUSY_TIMEOUT PragTyp_BUSY_TIMEOUT109577,3966952 -#define PragTyp_CACHE_SIZE PragTyp_CACHE_SIZE109578,3967001 -#define PragTyp_CACHE_SPILL PragTyp_CACHE_SPILL109579,3967050 -#define PragTyp_CASE_SENSITIVE_LIKE PragTyp_CASE_SENSITIVE_LIKE109580,3967099 -#define PragTyp_COLLATION_LIST PragTyp_COLLATION_LIST109581,3967148 -#define PragTyp_COMPILE_OPTIONS PragTyp_COMPILE_OPTIONS109582,3967197 -#define PragTyp_DATA_STORE_DIRECTORY PragTyp_DATA_STORE_DIRECTORY109583,3967246 -#define PragTyp_DATABASE_LIST PragTyp_DATABASE_LIST109584,3967295 -#define PragTyp_DEFAULT_CACHE_SIZE PragTyp_DEFAULT_CACHE_SIZE109585,3967344 -#define PragTyp_ENCODING PragTyp_ENCODING109586,3967393 -#define PragTyp_FOREIGN_KEY_CHECK PragTyp_FOREIGN_KEY_CHECK109587,3967442 -#define PragTyp_FOREIGN_KEY_LIST PragTyp_FOREIGN_KEY_LIST109588,3967491 -#define PragTyp_INCREMENTAL_VACUUM PragTyp_INCREMENTAL_VACUUM109589,3967540 -#define PragTyp_INDEX_INFO PragTyp_INDEX_INFO109590,3967589 -#define PragTyp_INDEX_LIST PragTyp_INDEX_LIST109591,3967638 -#define PragTyp_INTEGRITY_CHECK PragTyp_INTEGRITY_CHECK109592,3967687 -#define PragTyp_JOURNAL_MODE PragTyp_JOURNAL_MODE109593,3967736 -#define PragTyp_JOURNAL_SIZE_LIMIT PragTyp_JOURNAL_SIZE_LIMIT109594,3967785 -#define PragTyp_LOCK_PROXY_FILE PragTyp_LOCK_PROXY_FILE109595,3967834 -#define PragTyp_LOCKING_MODE PragTyp_LOCKING_MODE109596,3967883 -#define PragTyp_PAGE_COUNT PragTyp_PAGE_COUNT109597,3967932 -#define PragTyp_MMAP_SIZE PragTyp_MMAP_SIZE109598,3967981 -#define PragTyp_PAGE_SIZE PragTyp_PAGE_SIZE109599,3968030 -#define PragTyp_SECURE_DELETE PragTyp_SECURE_DELETE109600,3968079 -#define PragTyp_SHRINK_MEMORY PragTyp_SHRINK_MEMORY109601,3968128 -#define PragTyp_SOFT_HEAP_LIMIT PragTyp_SOFT_HEAP_LIMIT109602,3968177 -#define PragTyp_STATS PragTyp_STATS109603,3968226 -#define PragTyp_SYNCHRONOUS PragTyp_SYNCHRONOUS109604,3968275 -#define PragTyp_TABLE_INFO PragTyp_TABLE_INFO109605,3968324 -#define PragTyp_TEMP_STORE PragTyp_TEMP_STORE109606,3968373 -#define PragTyp_TEMP_STORE_DIRECTORY PragTyp_TEMP_STORE_DIRECTORY109607,3968422 -#define PragTyp_THREADS PragTyp_THREADS109608,3968471 -#define PragTyp_WAL_AUTOCHECKPOINT PragTyp_WAL_AUTOCHECKPOINT109609,3968520 -#define PragTyp_WAL_CHECKPOINT PragTyp_WAL_CHECKPOINT109610,3968569 -#define PragTyp_ACTIVATE_EXTENSIONS PragTyp_ACTIVATE_EXTENSIONS109611,3968618 -#define PragTyp_HEXKEY PragTyp_HEXKEY109612,3968667 -#define PragTyp_KEY PragTyp_KEY109613,3968716 -#define PragTyp_REKEY PragTyp_REKEY109614,3968765 -#define PragTyp_LOCK_STATUS PragTyp_LOCK_STATUS109615,3968814 -#define PragTyp_PARSER_TRACE PragTyp_PARSER_TRACE109616,3968863 -#define PragFlag_NeedSchema PragFlag_NeedSchema109617,3968912 -#define PragFlag_ReadOnly PragFlag_ReadOnly109618,3968955 -static const struct sPragmaNames {sPragmaNames109619,3968998 - const char *const zName; /* Name of pragma */zName109620,3969033 - const char *const zName; /* Name of pragma */sPragmaNames::zName109620,3969033 - u8 ePragTyp; /* PragTyp_XXX value */ePragTyp109621,3969082 - u8 ePragTyp; /* PragTyp_XXX value */sPragmaNames::ePragTyp109621,3969082 - u8 mPragFlag; /* Zero or more PragFlag_XXX values */mPragFlag109622,3969134 - u8 mPragFlag; /* Zero or more PragFlag_XXX values */sPragmaNames::mPragFlag109622,3969134 - u32 iArg; /* Extra argument */iArg109623,3969201 - u32 iArg; /* Extra argument */sPragmaNames::iArg109623,3969201 -} aPragmaNames[] = {aPragmaNames109624,3969250 -static u8 getSafetyLevel(const char *z, int omitFull, u8 dflt){getSafetyLevel110048,3983213 -SQLITE_PRIVATE u8 sqlite3GetBoolean(const char *z, u8 dflt){sqlite3GetBoolean110073,3984024 -static int getLockingMode(const char *z){getLockingMode110086,3984425 -static int getAutoVacuum(const char *z){getAutoVacuum110101,3984911 -static int getTempStore(const char *z){getTempStore110117,3985498 -static int invalidateTempStorage(Parse *pParse){invalidateTempStorage110135,3985956 -static int changeTempStorage(Parse *pParse, const char *zStorageType){changeTempStorage110157,3986662 -static void setAllColumnNames(setAllColumnNames110172,3987083 -static void setOneColumnName(Vdbe *v, const char *z){setOneColumnName110183,3987414 -static void returnSingleInt(Vdbe *v, const char *zLabel, i64 value){returnSingleInt110190,3987559 -static void returnSingleText(returnSingleText110199,3987836 -static void setAllPagerFlags(sqlite3 *db){setAllPagerFlags110217,3988351 -# define setAllPagerFlags(setAllPagerFlags110237,3989008 -static const char *actionName(u8 action){actionName110245,3989165 -SQLITE_PRIVATE const char *sqlite3JournalModename(int eMode){sqlite3JournalModename110265,3989772 -SQLITE_PRIVATE void sqlite3Pragma(sqlite3Pragma110299,3990829 -# define SQLITE_INTEGRITY_CHECK_ERROR_MAX SQLITE_INTEGRITY_CHECK_ERROR_MAX111400,4028107 -static void corruptSchema(corruptSchema112021,4050960 -SQLITE_PRIVATE int sqlite3InitCallback(void *pInit, int argc, char **argv, char **NotUsed){sqlite3InitCallback112050,4052025 -static int sqlite3InitOne(sqlite3 *db, int iDb, char **pzErrMsg){sqlite3InitOne112132,4055042 -SQLITE_PRIVATE int sqlite3Init(sqlite3 *db, char **pzErrMsg){sqlite3Init112352,4062336 -SQLITE_PRIVATE int sqlite3ReadSchema(Parse *pParse){sqlite3ReadSchema112396,4063584 -static void schemaIsValid(Parse *pParse){schemaIsValid112416,4064058 -SQLITE_PRIVATE int sqlite3SchemaToIndex(sqlite3 *db, Schema *pSchema){sqlite3SchemaToIndex112465,4065716 -SQLITE_PRIVATE void sqlite3ParserReset(Parse *pParse){sqlite3ParserReset112493,4066621 -static int sqlite3Prepare(sqlite3Prepare112509,4067078 -static int sqlite3LockAndPrepare(sqlite3LockAndPrepare112666,4072277 -SQLITE_PRIVATE int sqlite3Reprepare(Vdbe *p){sqlite3Reprepare112705,4073670 -SQLITE_API int SQLITE_STDCALL sqlite3_prepare(sqlite3_prepare112742,4074796 -SQLITE_API int SQLITE_STDCALL sqlite3_prepare_v2(sqlite3_prepare_v2112754,4075319 -static int sqlite3Prepare16(sqlite3Prepare16112772,4075953 -SQLITE_API int SQLITE_STDCALL sqlite3_prepare16(sqlite3_prepare16112830,4078106 -SQLITE_API int SQLITE_STDCALL sqlite3_prepare16_v2(sqlite3_prepare16_v2112842,4078626 -/***/ int sqlite3SelectTrace = 0;sqlite3SelectTrace112879,4079913 -# define SELECTTRACE(SELECTTRACE112880,4079947 -# define SELECTTRACE(SELECTTRACE112886,4080137 -typedef struct DistinctCtx DistinctCtx;DistinctCtx112895,4080373 -struct DistinctCtx {DistinctCtx112896,4080413 - u8 isTnct; /* True if the DISTINCT keyword is present */isTnct112897,4080434 - u8 isTnct; /* True if the DISTINCT keyword is present */DistinctCtx::isTnct112897,4080434 - u8 eTnctType; /* One of the WHERE_DISTINCT_* operators */eTnctType112898,4080498 - u8 eTnctType; /* One of the WHERE_DISTINCT_* operators */DistinctCtx::eTnctType112898,4080498 - int tabTnct; /* Ephemeral table used for DISTINCT processing */tabTnct112899,4080560 - int tabTnct; /* Ephemeral table used for DISTINCT processing */DistinctCtx::tabTnct112899,4080560 - int addrTnct; /* Address of OP_OpenEphemeral opcode for tabTnct */addrTnct112900,4080629 - int addrTnct; /* Address of OP_OpenEphemeral opcode for tabTnct */DistinctCtx::addrTnct112900,4080629 -typedef struct SortCtx SortCtx;SortCtx112907,4080847 -struct SortCtx {SortCtx112908,4080879 - ExprList *pOrderBy; /* The ORDER BY (or GROUP BY clause) */pOrderBy112909,4080896 - ExprList *pOrderBy; /* The ORDER BY (or GROUP BY clause) */SortCtx::pOrderBy112909,4080896 - int nOBSat; /* Number of ORDER BY terms satisfied by indices */nOBSat112910,4080960 - int nOBSat; /* Number of ORDER BY terms satisfied by indices */SortCtx::nOBSat112910,4080960 - int iECursor; /* Cursor number for the sorter */iECursor112911,4081036 - int iECursor; /* Cursor number for the sorter */SortCtx::iECursor112911,4081036 - int regReturn; /* Register holding block-output return address */regReturn112912,4081095 - int regReturn; /* Register holding block-output return address */SortCtx::regReturn112912,4081095 - int labelBkOut; /* Start label for the block-output subroutine */labelBkOut112913,4081170 - int labelBkOut; /* Start label for the block-output subroutine */SortCtx::labelBkOut112913,4081170 - int addrSortIndex; /* Address of the OP_SorterOpen or OP_OpenEphemeral */addrSortIndex112914,4081244 - int addrSortIndex; /* Address of the OP_SorterOpen or OP_OpenEphemeral */SortCtx::addrSortIndex112914,4081244 - int labelDone; /* Jump here when done, ex: LIMIT reached */labelDone112915,4081323 - int labelDone; /* Jump here when done, ex: LIMIT reached */SortCtx::labelDone112915,4081323 - u8 sortFlags; /* Zero or more SORTFLAG_* bits */sortFlags112916,4081392 - u8 sortFlags; /* Zero or more SORTFLAG_* bits */SortCtx::sortFlags112916,4081392 -#define SORTFLAG_UseSorter SORTFLAG_UseSorter112918,4081454 -static void clearSelect(sqlite3 *db, Select *p, int bFree){clearSelect112924,4081650 -SQLITE_PRIVATE void sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm){sqlite3SelectDestInit112945,4082251 -SQLITE_PRIVATE Select *sqlite3SelectNew(sqlite3SelectNew112958,4082539 -SQLITE_PRIVATE void sqlite3SelectSetName(Select *p, const char *zName){sqlite3SelectSetName113018,4084344 -SQLITE_PRIVATE void sqlite3SelectDelete(sqlite3 *db, Select *p){sqlite3SelectDelete113029,4084593 -static Select *findRightmost(Select *p){findRightmost113036,4084770 -SQLITE_PRIVATE int sqlite3JoinType(Parse *pParse, Token *pA, Token *pB, Token *pC){sqlite3JoinType113058,4085345 -static int columnIndex(Table *pTab, const char *zCol){columnIndex113119,4087369 -static int tableAndColumnIndex(tableAndColumnIndex113136,4087821 -static void addWhereTerm(addWhereTerm113171,4088977 -static void setJoinExpr(Expr *p, int iTable){setJoinExpr113230,4091423 -static int sqliteProcessJoin(Parse *pParse, Select *p){sqliteProcessJoin113261,4092562 -static void pushOntoSorter(pushOntoSorter113361,4096224 -static void codeOffset(codeOffset113460,4100517 -static void codeDistinct(codeDistinct113480,4101235 -static int checkForMultiColumnSelectError(checkForMultiColumnSelectError113506,4102222 -static void selectInnerLoop(selectInnerLoop113531,4103042 -SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoAlloc(sqlite3 *db, int N, int X){sqlite3KeyInfoAlloc113865,4115303 -SQLITE_PRIVATE void sqlite3KeyInfoUnref(KeyInfo *p){sqlite3KeyInfoUnref113885,4115750 -SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoRef(KeyInfo *p){sqlite3KeyInfoRef113896,4115951 -SQLITE_PRIVATE int sqlite3KeyInfoIsWriteable(KeyInfo *p){ return p->nRef==1; }sqlite3KeyInfoIsWriteable113911,4116308 -static KeyInfo *keyInfoFromExprList(keyInfoFromExprList113928,4117055 -static const char *selectOpName(int id){selectOpName113958,4117960 -static void explainTempTable(Parse *pParse, const char *zUsage){explainTempTable113980,4118619 -# define explainSetInteger(explainSetInteger113995,4119243 -# define explainTempTable(explainTempTable113999,4119352 -# define explainSetInteger(explainSetInteger114000,4119383 -static void explainComposite(explainComposite114018,4120166 -# define explainComposite(explainComposite114037,4120965 -static void generateSortTail(generateSortTail114046,4121279 -# define columnType(columnType114190,4126473 -# define columnType(columnType114192,4126589 -static const char *columnTypeImpl(columnTypeImpl114194,4126651 -static void generateColumnTypes(generateColumnTypes114345,4131701 -static void generateColumnNames(generateColumnNames114385,4133072 -SQLITE_PRIVATE int sqlite3ColumnsFromExprList(sqlite3ColumnsFromExprList114464,4135718 -SQLITE_PRIVATE void sqlite3SelectAddColumnTypeAndCollation(sqlite3SelectAddColumnTypeAndCollation114565,4139310 -SQLITE_PRIVATE Table *sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect){sqlite3ResultSetOfSelect114614,4140869 -static SQLITE_NOINLINE Vdbe *allocVdbe(Parse *pParse){allocVdbe114650,4141992 -SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse *pParse){sqlite3GetVdbe114660,4142284 -static void computeLimitRegisters(Parse *pParse, Select *p, int iBreak){computeLimitRegisters114689,4143526 -static CollSeq *multiSelectCollSeq(Parse *pParse, Select *p, int iCol){multiSelectCollSeq114744,4145463 -static KeyInfo *multiSelectOrderByKeyInfo(Parse *pParse, Select *p, int nExtra){multiSelectOrderByKeyInfo114770,4146347 -static void generateWithRecursiveQuery(generateWithRecursiveQuery114836,4149189 -static int multiSelectValues(multiSelectValues114985,4154702 -static int multiSelect(multiSelect115048,4156677 -SQLITE_PRIVATE void sqlite3SelectWrongNumTermsError(Parse *pParse, Select *p){sqlite3SelectWrongNumTermsError115409,4169214 -static int generateOutputSubroutine(generateOutputSubroutine115438,4170255 -static int multiSelectOrderBy(multiSelectOrderBy115649,4178243 -static Expr *substExpr(substExpr115978,4190730 -static void substExprList(substExprList116007,4191742 -static void substSelect(substSelect116019,4192149 -static int flattenSubquery(flattenSubquery116188,4199541 -static int pushDownWhereTerms(pushDownWhereTerms116638,4216182 -static u8 minMaxQuery(AggInfo *pAggInfo, ExprList **ppMinMax){minMaxQuery116692,4218209 -static Table *isSimpleCount(Select *p, AggInfo *pAggInfo){isSimpleCount116728,4219436 -SQLITE_PRIVATE int sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom){sqlite3IndexedByLookup116759,4220354 -static int convertCompoundSelectToSubquery(Walker *pWalker, Select *p){convertCompoundSelectToSubquery116798,4221763 -static int cannotBeFunction(Parse *pParse, struct SrcList_item *pFrom){cannotBeFunction116853,4223387 -static struct Cte *searchWith(searchWith116872,4224044 -SQLITE_PRIVATE void sqlite3WithPush(Parse *pParse, With *pWith, u8 bFree){sqlite3WithPush116903,4225138 -static int withExpand(withExpand116928,4226124 -static void selectPopWith(Walker *pWalker, Select *p){selectPopWith117044,4230001 -#define selectPopWith selectPopWith117053,4230233 -static int selectExpander(Walker *pWalker, Select *p){selectExpander117080,4231370 -SQLITE_PRIVATE int sqlite3ExprWalkNoop(Walker *NotUsed, Expr *NotUsed2){sqlite3ExprWalkNoop117359,4241499 -static void sqlite3SelectExpand(Parse *pParse, Select *pSelect){sqlite3SelectExpand117377,4242207 -static void selectAddSubqueryTypeInfo(Walker *pWalker, Select *p){selectAddSubqueryTypeInfo117408,4243222 -static void sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect){sqlite3SelectAddTypeInfo117442,4244157 -SQLITE_PRIVATE void sqlite3SelectPrep(sqlite3SelectPrep117466,4244967 -static void resetAccumulator(Parse *pParse, AggInfo *pAggInfo){resetAccumulator117491,4245794 -static void finalizeAggFunctions(Parse *pParse, AggInfo *pAggInfo){finalizeAggFunctions117532,4247260 -static void updateAccumulator(Parse *pParse, AggInfo *pAggInfo){updateAccumulator117548,4247792 -static void explainSimpleCount(explainSimpleCount117631,4250670 -# define explainSimpleCount(explainSimpleCount117649,4251294 -SQLITE_PRIVATE int sqlite3Select(sqlite3Select117665,4251795 -typedef struct TabResult {TabResult118573,4287933 - char **azResult; /* Accumulated output */azResult118574,4287960 - char **azResult; /* Accumulated output */TabResult::azResult118574,4287960 - char *zErrMsg; /* Error message text, if an error occurs */zErrMsg118575,4288006 - char *zErrMsg; /* Error message text, if an error occurs */TabResult::zErrMsg118575,4288006 - u32 nAlloc; /* Slots allocated for azResult[] */nAlloc118576,4288072 - u32 nAlloc; /* Slots allocated for azResult[] */TabResult::nAlloc118576,4288072 - u32 nRow; /* Number of rows in the result */nRow118577,4288130 - u32 nRow; /* Number of rows in the result */TabResult::nRow118577,4288130 - u32 nColumn; /* Number of columns in the result */nColumn118578,4288186 - u32 nColumn; /* Number of columns in the result */TabResult::nColumn118578,4288186 - u32 nData; /* Slots used in azResult[]. (nRow+1)*nColumn */nData118579,4288245 - u32 nData; /* Slots used in azResult[]. (nRow+1)*nColumn */TabResult::nData118579,4288245 - int rc; /* Return code from sqlite3_exec() */rc118580,4288316 - int rc; /* Return code from sqlite3_exec() */TabResult::rc118580,4288316 -} TabResult;TabResult118581,4288375 -static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){sqlite3_get_table_cb118588,4288564 -SQLITE_API int SQLITE_STDCALL sqlite3_get_table(sqlite3_get_table118662,4290744 -SQLITE_API void SQLITE_STDCALL sqlite3_free_table(sqlite3_free_table118731,4292873 -SQLITE_PRIVATE void sqlite3DeleteTriggerStep(sqlite3 *db, TriggerStep *pTriggerStep){sqlite3DeleteTriggerStep118766,4293946 -SQLITE_PRIVATE Trigger *sqlite3TriggerList(Parse *pParse, Table *pTab){sqlite3TriggerList118794,4295007 -SQLITE_PRIVATE void sqlite3BeginTrigger(sqlite3BeginTrigger118827,4296151 -SQLITE_PRIVATE void sqlite3FinishTrigger(sqlite3FinishTrigger119016,4303146 -SQLITE_PRIVATE TriggerStep *sqlite3TriggerSelectStep(sqlite3 *db, Select *pSelect){sqlite3TriggerSelectStep119096,4305918 -static TriggerStep *triggerStepAllocate(triggerStepAllocate119114,4306513 -SQLITE_PRIVATE TriggerStep *sqlite3TriggerInsertStep(sqlite3TriggerInsertStep119139,4307227 -SQLITE_PRIVATE TriggerStep *sqlite3TriggerUpdateStep(sqlite3TriggerUpdateStep119168,4308267 -SQLITE_PRIVATE TriggerStep *sqlite3TriggerDeleteStep(sqlite3TriggerDeleteStep119193,4309258 -SQLITE_PRIVATE void sqlite3DeleteTrigger(sqlite3 *db, Trigger *pTrigger){sqlite3DeleteTrigger119212,4309825 -SQLITE_PRIVATE void sqlite3DropTrigger(Parse *pParse, SrcList *pName, int noErr){sqlite3DropTrigger119230,4310504 -static Table *tableOfTrigger(Trigger *pTrigger){tableOfTrigger119272,4311706 -SQLITE_PRIVATE void sqlite3DropTriggerPtr(Parse *pParse, Trigger *pTrigger){sqlite3DropTriggerPtr119280,4311892 -SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTrigger(sqlite3 *db, int iDb, const char *zName){sqlite3UnlinkAndDeleteTrigger119320,4313117 -static int checkColumnOverlap(IdList *pIdList, ExprList *pEList){checkColumnOverlap119348,4314137 -SQLITE_PRIVATE Trigger *sqlite3TriggersExist(sqlite3TriggersExist119363,4314662 -static SrcList *targetSrcList(targetSrcList119399,4315853 -static int codeTriggerProgram(codeTriggerProgram119424,4316614 -static const char *onErrorText(int onError){onErrorText119501,4319125 -static void transferParseError(Parse *pTo, Parse *pFrom){transferParseError119519,4319632 -static TriggerPrg *codeRowTrigger(codeRowTrigger119535,4320089 -static TriggerPrg *getRowTrigger(getRowTrigger119649,4324433 -SQLITE_PRIVATE void sqlite3CodeRowTriggerDirect(sqlite3CodeRowTriggerDirect119683,4325644 -SQLITE_PRIVATE void sqlite3CodeRowTrigger(sqlite3CodeRowTrigger119755,4329098 -SQLITE_PRIVATE u32 sqlite3TriggerColmask(sqlite3TriggerColmask119817,4331967 -SQLITE_PRIVATE void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg){sqlite3ColumnDefault119910,4335789 -SQLITE_PRIVATE void sqlite3Update(sqlite3Update119938,4336709 -# undef isViewisView120019,4340643 -# define isView isView120020,4340658 - #undef isViewisView120549,4358991 - #undef pTriggerpTrigger120552,4359029 -static void updateVirtualTable(updateVirtualTable120577,4359911 -static int vacuumFinalize(sqlite3 *db, sqlite3_stmt *pStmt, char **pzErrMsg){vacuumFinalize120707,4365043 -static int execSql(sqlite3 *db, char **pzErrMsg, const char *zSql){execSql120719,4365321 -static int execExecSql(sqlite3 *db, char **pzErrMsg, const char *zSql){execExecSql120738,4365910 -SQLITE_PRIVATE void sqlite3Vacuum(Parse *pParse){sqlite3Vacuum120786,4367929 -SQLITE_PRIVATE int sqlite3RunVacuum(char **pzErrMsg, sqlite3 *db){sqlite3RunVacuum120798,4368185 -struct VtabCtx {VtabCtx121082,4379359 - VTable *pVTable; /* The virtual table being constructed */pVTable121083,4379376 - VTable *pVTable; /* The virtual table being constructed */VtabCtx::pVTable121083,4379376 - Table *pTab; /* The Table object to which the virtual table belongs */pTab121084,4379440 - Table *pTab; /* The Table object to which the virtual table belongs */VtabCtx::pTab121084,4379440 - VtabCtx *pPrior; /* Parent context (if any) */pPrior121085,4379520 - VtabCtx *pPrior; /* Parent context (if any) */VtabCtx::pPrior121085,4379520 - int bDeclared; /* True after sqlite3_declare_vtab() is called */bDeclared121086,4379572 - int bDeclared; /* True after sqlite3_declare_vtab() is called */VtabCtx::bDeclared121086,4379572 -static int createModule(createModule121094,4379824 -SQLITE_API int SQLITE_STDCALL sqlite3_create_module(sqlite3_create_module121139,4381166 -SQLITE_API int SQLITE_STDCALL sqlite3_create_module_v2(sqlite3_create_module_v2121154,4381756 -SQLITE_PRIVATE void sqlite3VtabLock(VTable *pVTab){sqlite3VtabLock121175,4382670 -SQLITE_PRIVATE VTable *sqlite3GetVTable(sqlite3 *db, Table *pTab){sqlite3GetVTable121185,4382962 -SQLITE_PRIVATE void sqlite3VtabUnlock(VTable *pVTab){sqlite3VtabUnlock121196,4383314 -static VTable *vtabDisconnectAll(sqlite3 *db, Table *p){vtabDisconnectAll121220,4384020 -SQLITE_PRIVATE void sqlite3VtabDisconnect(sqlite3 *db, Table *p){sqlite3VtabDisconnect121260,4385346 -SQLITE_PRIVATE void sqlite3VtabUnlockList(sqlite3 *db){sqlite3VtabUnlockList121298,4386724 -SQLITE_PRIVATE void sqlite3VtabClear(sqlite3 *db, Table *p){sqlite3VtabClear121329,4387768 -static void addModuleArgument(sqlite3 *db, Table *pTable, char *zArg){addModuleArgument121346,4388254 -SQLITE_PRIVATE void sqlite3VtabBeginParse(sqlite3VtabBeginParse121365,4388878 -static void addArgumentToVtab(Parse *pParse){addArgumentToVtab121415,4390829 -SQLITE_PRIVATE void sqlite3VtabFinishParse(Parse *pParse, Token *pEnd){sqlite3VtabFinishParse121428,4391219 -SQLITE_PRIVATE void sqlite3VtabArgInit(Parse *pParse){sqlite3VtabArgInit121512,4394182 -SQLITE_PRIVATE void sqlite3VtabArgExtend(Parse *pParse, Token *p){sqlite3VtabArgExtend121522,4394463 -static int vtabCallConstructor(vtabCallConstructor121538,4394881 -SQLITE_PRIVATE int sqlite3VtabCallConnect(Parse *pParse, Table *pTab){sqlite3VtabCallConnect121667,4398774 -static int growVTrans(sqlite3 *db){growVTrans121701,4399706 -static void addToVTrans(sqlite3 *db, VTable *pVTab){addToVTrans121723,4400334 -SQLITE_PRIVATE int sqlite3VtabCallCreate(sqlite3 *db, int iDb, const char *zTab, char **pzErr){sqlite3VtabCallCreate121737,4400838 -SQLITE_API int SQLITE_STDCALL sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){sqlite3_declare_vtab121778,4402209 -SQLITE_PRIVATE int sqlite3VtabCallDestroy(sqlite3 *db, int iDb, const char *zTab){sqlite3VtabCallDestroy121849,4404123 -static void callFinaliser(sqlite3 *db, int offset){callFinaliser121887,4405313 -SQLITE_PRIVATE int sqlite3VtabSync(sqlite3 *db, Vdbe *p){sqlite3VtabSync121915,4406097 -SQLITE_PRIVATE int sqlite3VtabRollback(sqlite3 *db){sqlite3VtabRollback121937,4406650 -SQLITE_PRIVATE int sqlite3VtabCommit(sqlite3 *db){sqlite3VtabCommit121946,4406903 -SQLITE_PRIVATE int sqlite3VtabBegin(sqlite3 *db, VTable *pVTab){sqlite3VtabBegin121959,4407332 -SQLITE_PRIVATE int sqlite3VtabSavepoint(sqlite3 *db, int op, int iSavepoint){sqlite3VtabSavepoint122016,4409217 -SQLITE_PRIVATE FuncDef *sqlite3VtabOverloadFunction(sqlite3VtabOverloadFunction122062,4410738 -SQLITE_PRIVATE void sqlite3VtabMakeWritable(Parse *pParse, Table *pTab){sqlite3VtabMakeWritable122128,4412863 -SQLITE_PRIVATE int sqlite3VtabEponymousTableInit(Parse *pParse, Module *pMod){sqlite3VtabEponymousTableInit122161,4414130 -SQLITE_PRIVATE void sqlite3VtabEponymousTableClear(sqlite3 *db, Module *pMod){sqlite3VtabEponymousTableClear122198,4415317 -SQLITE_API int SQLITE_STDCALL sqlite3_vtab_on_conflict(sqlite3 *db){sqlite3_vtab_on_conflict122215,4415800 -SQLITE_API int SQLITE_CDECL sqlite3_vtab_config(sqlite3 *db, int op, ...){sqlite3_vtab_config122233,4416481 -/***/ int sqlite3WhereTrace;sqlite3WhereTrace122311,4419034 -# define WHERETRACE(WHERETRACE122315,4419165 -# define WHERETRACE_ENABLED WHERETRACE_ENABLED122316,4419238 -# define WHERETRACE(WHERETRACE122318,4419274 -typedef struct WhereClause WhereClause;WhereClause122323,4419332 -typedef struct WhereMaskSet WhereMaskSet;WhereMaskSet122324,4419372 -typedef struct WhereOrInfo WhereOrInfo;WhereOrInfo122325,4419414 -typedef struct WhereAndInfo WhereAndInfo;WhereAndInfo122326,4419454 -typedef struct WhereLevel WhereLevel;WhereLevel122327,4419496 -typedef struct WhereLoop WhereLoop;WhereLoop122328,4419534 -typedef struct WherePath WherePath;WherePath122329,4419570 -typedef struct WhereTerm WhereTerm;WhereTerm122330,4419606 -typedef struct WhereLoopBuilder WhereLoopBuilder;WhereLoopBuilder122331,4419642 -typedef struct WhereScan WhereScan;WhereScan122332,4419692 -typedef struct WhereOrCost WhereOrCost;WhereOrCost122333,4419728 -typedef struct WhereOrSet WhereOrSet;WhereOrSet122334,4419768 -struct WhereLevel {WhereLevel122351,4420479 - int iLeftJoin; /* Memory cell used to implement LEFT OUTER JOIN */iLeftJoin122352,4420499 - int iLeftJoin; /* Memory cell used to implement LEFT OUTER JOIN */WhereLevel::iLeftJoin122352,4420499 - int iTabCur; /* The VDBE cursor used to access the table */iTabCur122353,4420575 - int iTabCur; /* The VDBE cursor used to access the table */WhereLevel::iTabCur122353,4420575 - int iIdxCur; /* The VDBE cursor used to access pIdx */iIdxCur122354,4420646 - int iIdxCur; /* The VDBE cursor used to access pIdx */WhereLevel::iIdxCur122354,4420646 - int addrBrk; /* Jump here to break out of the loop */addrBrk122355,4420712 - int addrBrk; /* Jump here to break out of the loop */WhereLevel::addrBrk122355,4420712 - int addrNxt; /* Jump here to start the next IN combination */addrNxt122356,4420777 - int addrNxt; /* Jump here to start the next IN combination */WhereLevel::addrNxt122356,4420777 - int addrSkip; /* Jump here for next iteration of skip-scan */addrSkip122357,4420850 - int addrSkip; /* Jump here for next iteration of skip-scan */WhereLevel::addrSkip122357,4420850 - int addrCont; /* Jump here to continue with the next loop cycle */addrCont122358,4420922 - int addrCont; /* Jump here to continue with the next loop cycle */WhereLevel::addrCont122358,4420922 - int addrFirst; /* First instruction of interior of the loop */addrFirst122359,4420999 - int addrFirst; /* First instruction of interior of the loop */WhereLevel::addrFirst122359,4420999 - int addrBody; /* Beginning of the body of this loop */addrBody122360,4421071 - int addrBody; /* Beginning of the body of this loop */WhereLevel::addrBody122360,4421071 - u32 iLikeRepCntr; /* LIKE range processing counter register (times 2) */iLikeRepCntr122362,4421175 - u32 iLikeRepCntr; /* LIKE range processing counter register (times 2) */WhereLevel::iLikeRepCntr122362,4421175 - int addrLikeRep; /* LIKE range processing address */addrLikeRep122363,4421254 - int addrLikeRep; /* LIKE range processing address */WhereLevel::addrLikeRep122363,4421254 - u8 iFrom; /* Which entry in the FROM clause */iFrom122365,4421321 - u8 iFrom; /* Which entry in the FROM clause */WhereLevel::iFrom122365,4421321 - u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */op122366,4421382 - u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */WhereLevel::op122366,4421382 - u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */p3122366,4421382 - u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */WhereLevel::p3122366,4421382 - u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */p5122366,4421382 - u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */WhereLevel::p5122366,4421382 - int p1, p2; /* Operands of the opcode used to ends the loop */p1122367,4421461 - int p1, p2; /* Operands of the opcode used to ends the loop */WhereLevel::p1122367,4421461 - int p1, p2; /* Operands of the opcode used to ends the loop */p2122367,4421461 - int p1, p2; /* Operands of the opcode used to ends the loop */WhereLevel::p2122367,4421461 - int nIn; /* Number of entries in aInLoop[] */nIn122370,4421623 - int nIn; /* Number of entries in aInLoop[] */WhereLevel::__anon470::__anon471::nIn122370,4421623 - struct InLoop {InLoop122371,4421688 - struct InLoop {WhereLevel::__anon470::__anon471::InLoop122371,4421688 - int iCur; /* The VDBE cursor used by this IN operator */iCur122372,4421710 - int iCur; /* The VDBE cursor used by this IN operator */WhereLevel::__anon470::__anon471::InLoop::iCur122372,4421710 - int addrInTop; /* Top of the IN loop */addrInTop122373,4421788 - int addrInTop; /* Top of the IN loop */WhereLevel::__anon470::__anon471::InLoop::addrInTop122373,4421788 - u8 eEndLoopOp; /* IN Loop terminator. OP_Next or OP_Prev */eEndLoopOp122374,4421844 - u8 eEndLoopOp; /* IN Loop terminator. OP_Next or OP_Prev */WhereLevel::__anon470::__anon471::InLoop::eEndLoopOp122374,4421844 - } *aInLoop; /* Information about each nested IN operator */aInLoop122375,4421920 - } *aInLoop; /* Information about each nested IN operator */WhereLevel::__anon470::__anon471::aInLoop122375,4421920 - } in; /* Used when pWLoop->wsFlags&WHERE_IN_ABLE */in122376,4421996 - } in; /* Used when pWLoop->wsFlags&WHERE_IN_ABLE */WhereLevel::__anon470::in122376,4421996 - Index *pCovidx; /* Possible covering index for WHERE_MULTI_OR */pCovidx122377,4422068 - Index *pCovidx; /* Possible covering index for WHERE_MULTI_OR */WhereLevel::__anon470::pCovidx122377,4422068 - } u;u122378,4422143 - } u;WhereLevel::u122378,4422143 - struct WhereLoop *pWLoop; /* The selected WhereLoop object */pWLoop122379,4422150 - struct WhereLoop *pWLoop; /* The selected WhereLoop object */WhereLevel::pWLoop122379,4422150 - Bitmask notReady; /* FROM entries not usable at this level */notReady122380,4422215 - Bitmask notReady; /* FROM entries not usable at this level */WhereLevel::notReady122380,4422215 - int addrVisit; /* Address at which row is visited */addrVisit122382,4422325 - int addrVisit; /* Address at which row is visited */WhereLevel::addrVisit122382,4422325 -struct WhereLoop {WhereLoop122400,4423164 - Bitmask prereq; /* Bitmask of other loops that must run first */prereq122401,4423183 - Bitmask prereq; /* Bitmask of other loops that must run first */WhereLoop::prereq122401,4423183 - Bitmask maskSelf; /* Bitmask identifying table iTab */maskSelf122402,4423256 - Bitmask maskSelf; /* Bitmask identifying table iTab */WhereLoop::maskSelf122402,4423256 - char cId; /* Symbolic ID of this loop for debugging use */cId122404,4423337 - char cId; /* Symbolic ID of this loop for debugging use */WhereLoop::cId122404,4423337 - u8 iTab; /* Position in FROM clause of table for this loop */iTab122406,4423417 - u8 iTab; /* Position in FROM clause of table for this loop */WhereLoop::iTab122406,4423417 - u8 iSortIdx; /* Sorting index number. 0==None */iSortIdx122407,4423494 - u8 iSortIdx; /* Sorting index number. 0==None */WhereLoop::iSortIdx122407,4423494 - LogEst rSetup; /* One-time setup cost (ex: create transient index) */rSetup122408,4423555 - LogEst rSetup; /* One-time setup cost (ex: create transient index) */WhereLoop::rSetup122408,4423555 - LogEst rRun; /* Cost of running each loop */rRun122409,4423634 - LogEst rRun; /* Cost of running each loop */WhereLoop::rRun122409,4423634 - LogEst nOut; /* Estimated number of output rows */nOut122410,4423690 - LogEst nOut; /* Estimated number of output rows */WhereLoop::nOut122410,4423690 - u16 nEq; /* Number of equality constraints */nEq122413,4423833 - u16 nEq; /* Number of equality constraints */WhereLoop::__anon472::__anon473::nEq122413,4423833 - Index *pIndex; /* Index used, or NULL */pIndex122414,4423899 - Index *pIndex; /* Index used, or NULL */WhereLoop::__anon472::__anon473::pIndex122414,4423899 - } btree;btree122415,4423954 - } btree;WhereLoop::__anon472::btree122415,4423954 - int idxNum; /* Index number */idxNum122417,4424031 - int idxNum; /* Index number */WhereLoop::__anon472::__anon474::idxNum122417,4424031 - u8 needFree; /* True if sqlite3_free(idxStr) is needed */needFree122418,4424079 - u8 needFree; /* True if sqlite3_free(idxStr) is needed */WhereLoop::__anon472::__anon474::needFree122418,4424079 - i8 isOrdered; /* True if satisfies ORDER BY */isOrdered122419,4424153 - i8 isOrdered; /* True if satisfies ORDER BY */WhereLoop::__anon472::__anon474::isOrdered122419,4424153 - u16 omitMask; /* Terms that may be omitted */omitMask122420,4424215 - u16 omitMask; /* Terms that may be omitted */WhereLoop::__anon472::__anon474::omitMask122420,4424215 - char *idxStr; /* Index identifier string */idxStr122421,4424276 - char *idxStr; /* Index identifier string */WhereLoop::__anon472::__anon474::idxStr122421,4424276 - } vtab;vtab122422,4424335 - } vtab;WhereLoop::__anon472::vtab122422,4424335 - } u;u122423,4424347 - } u;WhereLoop::u122423,4424347 - u32 wsFlags; /* WHERE_* flags describing the plan */wsFlags122424,4424354 - u32 wsFlags; /* WHERE_* flags describing the plan */WhereLoop::wsFlags122424,4424354 - u16 nLTerm; /* Number of entries in aLTerm[] */nLTerm122425,4424418 - u16 nLTerm; /* Number of entries in aLTerm[] */WhereLoop::nLTerm122425,4424418 - u16 nSkip; /* Number of NULL aLTerm[] entries */nSkip122426,4424478 - u16 nSkip; /* Number of NULL aLTerm[] entries */WhereLoop::nSkip122426,4424478 -# define WHERE_LOOP_XFER_SZ WHERE_LOOP_XFER_SZ122428,4424609 - u16 nLSlot; /* Number of slots allocated for aLTerm[] */nLSlot122429,4424664 - u16 nLSlot; /* Number of slots allocated for aLTerm[] */WhereLoop::nLSlot122429,4424664 - WhereTerm **aLTerm; /* WhereTerms used */aLTerm122430,4424733 - WhereTerm **aLTerm; /* WhereTerms used */WhereLoop::aLTerm122430,4424733 - WhereLoop *pNextLoop; /* Next WhereLoop object in the WhereClause */pNextLoop122431,4424779 - WhereLoop *pNextLoop; /* Next WhereLoop object in the WhereClause */WhereLoop::pNextLoop122431,4424779 - WhereTerm *aLTermSpace[3]; /* Initial aLTerm[] space */aLTermSpace122432,4424850 - WhereTerm *aLTermSpace[3]; /* Initial aLTerm[] space */WhereLoop::aLTermSpace122432,4424850 -struct WhereOrCost {WhereOrCost122439,4425093 - Bitmask prereq; /* Prerequisites */prereq122440,4425114 - Bitmask prereq; /* Prerequisites */WhereOrCost::prereq122440,4425114 - LogEst rRun; /* Cost of running this subquery */rRun122441,4425156 - LogEst rRun; /* Cost of running this subquery */WhereOrCost::rRun122441,4425156 - LogEst nOut; /* Number of outputs for this subquery */nOut122442,4425214 - LogEst nOut; /* Number of outputs for this subquery */WhereOrCost::nOut122442,4425214 -#define N_OR_COST N_OR_COST122449,4425461 -struct WhereOrSet {WhereOrSet122450,4425481 - u16 n; /* Number of valid a[] entries */n122451,4425501 - u16 n; /* Number of valid a[] entries */WhereOrSet::n122451,4425501 - WhereOrCost a[N_OR_COST]; /* Set of best costs */a122452,4425565 - WhereOrCost a[N_OR_COST]; /* Set of best costs */WhereOrSet::a122452,4425565 -struct WherePath {WherePath122473,4426553 - Bitmask maskLoop; /* Bitmask of all WhereLoop objects in this path */maskLoop122474,4426572 - Bitmask maskLoop; /* Bitmask of all WhereLoop objects in this path */WherePath::maskLoop122474,4426572 - Bitmask revLoop; /* aLoop[]s that should be reversed for ORDER BY */revLoop122475,4426648 - Bitmask revLoop; /* aLoop[]s that should be reversed for ORDER BY */WherePath::revLoop122475,4426648 - LogEst nRow; /* Estimated number of rows generated by this path */nRow122476,4426724 - LogEst nRow; /* Estimated number of rows generated by this path */WherePath::nRow122476,4426724 - LogEst rCost; /* Total cost of this path */rCost122477,4426802 - LogEst rCost; /* Total cost of this path */WherePath::rCost122477,4426802 - LogEst rUnsorted; /* Total cost of this path ignoring sorting costs */rUnsorted122478,4426856 - LogEst rUnsorted; /* Total cost of this path ignoring sorting costs */WherePath::rUnsorted122478,4426856 - i8 isOrdered; /* No. of ORDER BY terms satisfied. -1 for unknown */isOrdered122479,4426933 - i8 isOrdered; /* No. of ORDER BY terms satisfied. -1 for unknown */WherePath::isOrdered122479,4426933 - WhereLoop **aLoop; /* Array of WhereLoop objects implementing this path */aLoop122480,4427011 - WhereLoop **aLoop; /* Array of WhereLoop objects implementing this path */WherePath::aLoop122480,4427011 -struct WhereTerm {WhereTerm122534,4429601 - Expr *pExpr; /* Pointer to the subexpression that is this term */pExpr122535,4429620 - Expr *pExpr; /* Pointer to the subexpression that is this term */WhereTerm::pExpr122535,4429620 - int iParent; /* Disable pWC->a[iParent] when this term disabled */iParent122536,4429699 - int iParent; /* Disable pWC->a[iParent] when this term disabled */WhereTerm::iParent122536,4429699 - int leftCursor; /* Cursor number of X in "X " */leftCursor122537,4429779 - int leftCursor; /* Cursor number of X in "X " */WhereTerm::leftCursor122537,4429779 - int leftColumn; /* Column number of X in "X " */leftColumn122539,4429859 - int leftColumn; /* Column number of X in "X " */WhereTerm::__anon475::leftColumn122539,4429859 - WhereOrInfo *pOrInfo; /* Extra information if (eOperator & WO_OR)!=0 */pOrInfo122540,4429931 - WhereOrInfo *pOrInfo; /* Extra information if (eOperator & WO_OR)!=0 */WhereTerm::__anon475::pOrInfo122540,4429931 - WhereAndInfo *pAndInfo; /* Extra information if (eOperator& WO_AND)!=0 */pAndInfo122541,4430009 - WhereAndInfo *pAndInfo; /* Extra information if (eOperator& WO_AND)!=0 */WhereTerm::__anon475::pAndInfo122541,4430009 - } u;u122542,4430087 - } u;WhereTerm::u122542,4430087 - LogEst truthProb; /* Probability of truth for this expression */truthProb122543,4430094 - LogEst truthProb; /* Probability of truth for this expression */WhereTerm::truthProb122543,4430094 - u16 eOperator; /* A WO_xx value describing */eOperator122544,4430167 - u16 eOperator; /* A WO_xx value describing */WhereTerm::eOperator122544,4430167 - u16 wtFlags; /* TERM_xxx bit flags. See below */wtFlags122545,4430229 - u16 wtFlags; /* TERM_xxx bit flags. See below */WhereTerm::wtFlags122545,4430229 - u8 nChild; /* Number of children that must disable us */nChild122546,4430292 - u8 nChild; /* Number of children that must disable us */WhereTerm::nChild122546,4430292 - u8 eMatchOp; /* Op for vtab MATCH/LIKE/GLOB/REGEXP terms */eMatchOp122547,4430364 - u8 eMatchOp; /* Op for vtab MATCH/LIKE/GLOB/REGEXP terms */WhereTerm::eMatchOp122547,4430364 - WhereClause *pWC; /* The clause this term is part of */pWC122548,4430437 - WhereClause *pWC; /* The clause this term is part of */WhereTerm::pWC122548,4430437 - Bitmask prereqRight; /* Bitmask of tables used by pExpr->pRight */prereqRight122549,4430501 - Bitmask prereqRight; /* Bitmask of tables used by pExpr->pRight */WhereTerm::prereqRight122549,4430501 - Bitmask prereqAll; /* Bitmask of tables referenced by pExpr */prereqAll122550,4430573 - Bitmask prereqAll; /* Bitmask of tables referenced by pExpr */WhereTerm::prereqAll122550,4430573 -#define TERM_DYNAMIC TERM_DYNAMIC122556,4430692 -#define TERM_VIRTUAL TERM_VIRTUAL122557,4430771 -#define TERM_CODED TERM_CODED122558,4430845 -#define TERM_COPIED TERM_COPIED122559,4430909 -#define TERM_ORINFO TERM_ORINFO122560,4430958 -#define TERM_ANDINFO TERM_ANDINFO122561,4431039 -#define TERM_OR_OK TERM_OR_OK122562,4431118 -# define TERM_VNULL TERM_VNULL122564,4431224 -# define TERM_VNULL TERM_VNULL122566,4431303 -#define TERM_LIKEOPT TERM_LIKEOPT122568,4431375 -#define TERM_LIKECOND TERM_LIKECOND122569,4431453 -#define TERM_LIKE TERM_LIKE122570,4431528 -#define TERM_IS TERM_IS122571,4431592 -struct WhereScan {WhereScan122577,4431807 - WhereClause *pOrigWC; /* Original, innermost WhereClause */pOrigWC122578,4431826 - WhereClause *pOrigWC; /* Original, innermost WhereClause */WhereScan::pOrigWC122578,4431826 - WhereClause *pWC; /* WhereClause currently being scanned */pWC122579,4431893 - WhereClause *pWC; /* WhereClause currently being scanned */WhereScan::pWC122579,4431893 - const char *zCollName; /* Required collating sequence, if not NULL */zCollName122580,4431964 - const char *zCollName; /* Required collating sequence, if not NULL */WhereScan::zCollName122580,4431964 - Expr *pIdxExpr; /* Search for this index expression */pIdxExpr122581,4432040 - Expr *pIdxExpr; /* Search for this index expression */WhereScan::pIdxExpr122581,4432040 - char idxaff; /* Must match this affinity, if zCollName!=NULL */idxaff122582,4432108 - char idxaff; /* Must match this affinity, if zCollName!=NULL */WhereScan::idxaff122582,4432108 - unsigned char nEquiv; /* Number of entries in aEquiv[] */nEquiv122583,4432188 - unsigned char nEquiv; /* Number of entries in aEquiv[] */WhereScan::nEquiv122583,4432188 - unsigned char iEquiv; /* Next unused slot in aEquiv[] */iEquiv122584,4432253 - unsigned char iEquiv; /* Next unused slot in aEquiv[] */WhereScan::iEquiv122584,4432253 - u32 opMask; /* Acceptable operators */opMask122585,4432317 - u32 opMask; /* Acceptable operators */WhereScan::opMask122585,4432317 - int k; /* Resume scanning at this->pWC->a[this->k] */k122586,4432373 - int k; /* Resume scanning at this->pWC->a[this->k] */WhereScan::k122586,4432373 - int aiCur[11]; /* Cursors in the equivalence class */aiCur122587,4432449 - int aiCur[11]; /* Cursors in the equivalence class */WhereScan::aiCur122587,4432449 - i16 aiColumn[11]; /* Corresponding column number in the eq-class */aiColumn122588,4432517 - i16 aiColumn[11]; /* Corresponding column number in the eq-class */WhereScan::aiColumn122588,4432517 -struct WhereClause {WhereClause122603,4433080 - WhereInfo *pWInfo; /* WHERE clause processing context */pWInfo122604,4433101 - WhereInfo *pWInfo; /* WHERE clause processing context */WhereClause::pWInfo122604,4433101 - WhereClause *pOuter; /* Outer conjunction */pOuter122605,4433166 - WhereClause *pOuter; /* Outer conjunction */WhereClause::pOuter122605,4433166 - u8 op; /* Split operator. TK_AND or TK_OR */op122606,4433217 - u8 op; /* Split operator. TK_AND or TK_OR */WhereClause::op122606,4433217 - int nTerm; /* Number of terms */nTerm122607,4433283 - int nTerm; /* Number of terms */WhereClause::nTerm122607,4433283 - int nSlot; /* Number of entries in a[] */nSlot122608,4433332 - int nSlot; /* Number of entries in a[] */WhereClause::nSlot122608,4433332 - WhereTerm *a; /* Each a[] describes a term of the WHERE cluase */a122609,4433390 - WhereTerm *a; /* Each a[] describes a term of the WHERE cluase */WhereClause::a122609,4433390 - WhereTerm aStatic[1]; /* Initial static space for a[] */aStatic122611,4433501 - WhereTerm aStatic[1]; /* Initial static space for a[] */WhereClause::aStatic122611,4433501 - WhereTerm aStatic[8]; /* Initial static space for a[] */aStatic122613,4433569 - WhereTerm aStatic[8]; /* Initial static space for a[] */WhereClause::aStatic122613,4433569 -struct WhereOrInfo {WhereOrInfo122621,4433782 - WhereClause wc; /* Decomposition into subterms */wc122622,4433803 - WhereClause wc; /* Decomposition into subterms */WhereOrInfo::wc122622,4433803 - Bitmask indexable; /* Bitmask of all indexable tables in the clause */indexable122623,4433864 - Bitmask indexable; /* Bitmask of all indexable tables in the clause */WhereOrInfo::indexable122623,4433864 -struct WhereAndInfo {WhereAndInfo122630,4434089 - WhereClause wc; /* The subexpression broken out */wc122631,4434111 - WhereClause wc; /* The subexpression broken out */WhereAndInfo::wc122631,4434111 -struct WhereMaskSet {WhereMaskSet122660,4435442 - int n; /* Number of assigned cursor values */n122661,4435464 - int n; /* Number of assigned cursor values */WhereMaskSet::n122661,4435464 - int ix[BMS]; /* Cursor assigned to each bit */ix122662,4435535 - int ix[BMS]; /* Cursor assigned to each bit */WhereMaskSet::ix122662,4435535 -#define initMaskSet(initMaskSet122668,4435647 -struct WhereLoopBuilder {WhereLoopBuilder122674,4435816 - WhereInfo *pWInfo; /* Information about this WHERE */pWInfo122675,4435842 - WhereInfo *pWInfo; /* Information about this WHERE */WhereLoopBuilder::pWInfo122675,4435842 - WhereClause *pWC; /* WHERE clause terms */pWC122676,4435905 - WhereClause *pWC; /* WHERE clause terms */WhereLoopBuilder::pWC122676,4435905 - ExprList *pOrderBy; /* ORDER BY clause */pOrderBy122677,4435958 - ExprList *pOrderBy; /* ORDER BY clause */WhereLoopBuilder::pOrderBy122677,4435958 - WhereLoop *pNew; /* Template WhereLoop */pNew122678,4436008 - WhereLoop *pNew; /* Template WhereLoop */WhereLoopBuilder::pNew122678,4436008 - WhereOrSet *pOrSet; /* Record best loops here, if not NULL */pOrSet122679,4436061 - WhereOrSet *pOrSet; /* Record best loops here, if not NULL */WhereLoopBuilder::pOrSet122679,4436061 - UnpackedRecord *pRec; /* Probe for stat4 (if required) */pRec122681,4436167 - UnpackedRecord *pRec; /* Probe for stat4 (if required) */WhereLoopBuilder::pRec122681,4436167 - int nRecValid; /* Number of valid fields currently in pRec */nRecValid122682,4436231 - int nRecValid; /* Number of valid fields currently in pRec */WhereLoopBuilder::nRecValid122682,4436231 -struct WhereInfo {WhereInfo122696,4436693 - Parse *pParse; /* Parsing and code generating context */pParse122697,4436712 - Parse *pParse; /* Parsing and code generating context */WhereInfo::pParse122697,4436712 - SrcList *pTabList; /* List of tables in the join */pTabList122698,4436782 - SrcList *pTabList; /* List of tables in the join */WhereInfo::pTabList122698,4436782 - ExprList *pOrderBy; /* The ORDER BY clause or NULL */pOrderBy122699,4436843 - ExprList *pOrderBy; /* The ORDER BY clause or NULL */WhereInfo::pOrderBy122699,4436843 - ExprList *pDistinctSet; /* DISTINCT over all these values */pDistinctSet122700,4436905 - ExprList *pDistinctSet; /* DISTINCT over all these values */WhereInfo::pDistinctSet122700,4436905 - WhereLoop *pLoops; /* List of all WhereLoop objects */pLoops122701,4436970 - WhereLoop *pLoops; /* List of all WhereLoop objects */WhereInfo::pLoops122701,4436970 - Bitmask revMask; /* Mask of ORDER BY terms that need reversing */revMask122702,4437034 - Bitmask revMask; /* Mask of ORDER BY terms that need reversing */WhereInfo::revMask122702,4437034 - LogEst nRowOut; /* Estimated number of output rows */nRowOut122703,4437111 - LogEst nRowOut; /* Estimated number of output rows */WhereInfo::nRowOut122703,4437111 - LogEst iLimit; /* LIMIT if wctrlFlags has WHERE_USE_LIMIT */iLimit122704,4437177 - LogEst iLimit; /* LIMIT if wctrlFlags has WHERE_USE_LIMIT */WhereInfo::iLimit122704,4437177 - u16 wctrlFlags; /* Flags originally passed to sqlite3WhereBegin() */wctrlFlags122705,4437251 - u16 wctrlFlags; /* Flags originally passed to sqlite3WhereBegin() */WhereInfo::wctrlFlags122705,4437251 - i8 nOBSat; /* Number of ORDER BY terms satisfied by indices */nOBSat122706,4437332 - i8 nOBSat; /* Number of ORDER BY terms satisfied by indices */WhereInfo::nOBSat122706,4437332 - u8 sorted; /* True if really sorted (not just grouped) */sorted122707,4437412 - u8 sorted; /* True if really sorted (not just grouped) */WhereInfo::sorted122707,4437412 - u8 eOnePass; /* ONEPASS_OFF, or _SINGLE, or _MULTI */eOnePass122708,4437487 - u8 eOnePass; /* ONEPASS_OFF, or _SINGLE, or _MULTI */WhereInfo::eOnePass122708,4437487 - u8 untestedTerms; /* Not all WHERE terms resolved by outer loop */untestedTerms122709,4437556 - u8 untestedTerms; /* Not all WHERE terms resolved by outer loop */WhereInfo::untestedTerms122709,4437556 - u8 eDistinct; /* One of the WHERE_DISTINCT_* values below */eDistinct122710,4437633 - u8 eDistinct; /* One of the WHERE_DISTINCT_* values below */WhereInfo::eDistinct122710,4437633 - u8 nLevel; /* Number of nested loop */nLevel122711,4437708 - u8 nLevel; /* Number of nested loop */WhereInfo::nLevel122711,4437708 - int iTop; /* The very beginning of the WHERE loop */iTop122712,4437764 - int iTop; /* The very beginning of the WHERE loop */WhereInfo::iTop122712,4437764 - int iContinue; /* Jump here to continue with next record */iContinue122713,4437835 - int iContinue; /* Jump here to continue with next record */WhereInfo::iContinue122713,4437835 - int iBreak; /* Jump here to break out of the loop */iBreak122714,4437908 - int iBreak; /* Jump here to break out of the loop */WhereInfo::iBreak122714,4437908 - int savedNQueryLoop; /* pParse->nQueryLoop outside the WHERE loop */savedNQueryLoop122715,4437977 - int savedNQueryLoop; /* pParse->nQueryLoop outside the WHERE loop */WhereInfo::savedNQueryLoop122715,4437977 - int aiCurOnePass[2]; /* OP_OpenWrite cursors for the ONEPASS opt */aiCurOnePass122716,4438053 - int aiCurOnePass[2]; /* OP_OpenWrite cursors for the ONEPASS opt */WhereInfo::aiCurOnePass122716,4438053 - WhereMaskSet sMaskSet; /* Map cursor numbers to bitmasks */sMaskSet122717,4438128 - WhereMaskSet sMaskSet; /* Map cursor numbers to bitmasks */WhereInfo::sMaskSet122717,4438128 - WhereClause sWC; /* Decomposition of the WHERE clause */sWC122718,4438193 - WhereClause sWC; /* Decomposition of the WHERE clause */WhereInfo::sWC122718,4438193 - WhereLevel a[1]; /* Information about each nest loop in WHERE */a122719,4438261 - WhereLevel a[1]; /* Information about each nest loop in WHERE */WhereInfo::a122719,4438261 -# define sqlite3WhereExplainOneScan(sqlite3WhereExplainOneScan122748,4439450 -# define sqlite3WhereAddScanStatus(sqlite3WhereAddScanStatus122758,4439917 -#define WO_IN WO_IN122793,4441317 -#define WO_EQ WO_EQ122794,4441342 -#define WO_LT WO_LT122795,4441367 -#define WO_LE WO_LE122796,4441408 -#define WO_GT WO_GT122797,4441449 -#define WO_GE WO_GE122798,4441490 -#define WO_MATCH WO_MATCH122799,4441531 -#define WO_IS WO_IS122800,4441556 -#define WO_ISNULL WO_ISNULL122801,4441581 -#define WO_OR WO_OR122802,4441606 -#define WO_AND WO_AND122803,4441674 -#define WO_EQUIV WO_EQUIV122804,4441743 -#define WO_NOOP WO_NOOP122805,4441811 -#define WO_ALL WO_ALL122807,4441890 -#define WO_SINGLE WO_SINGLE122808,4441960 -#define WHERE_COLUMN_EQ WHERE_COLUMN_EQ122815,4442224 -#define WHERE_COLUMN_RANGE WHERE_COLUMN_RANGE122816,4442276 -#define WHERE_COLUMN_IN WHERE_COLUMN_IN122817,4442342 -#define WHERE_COLUMN_NULL WHERE_COLUMN_NULL122818,4442398 -#define WHERE_CONSTRAINT WHERE_CONSTRAINT122819,4442453 -#define WHERE_TOP_LIMIT WHERE_TOP_LIMIT122820,4442533 -#define WHERE_BTM_LIMIT WHERE_BTM_LIMIT122821,4442607 -#define WHERE_BOTH_LIMIT WHERE_BOTH_LIMIT122822,4442681 -#define WHERE_IDX_ONLY WHERE_IDX_ONLY122823,4442749 -#define WHERE_IPK WHERE_IPK122824,4442822 -#define WHERE_INDEXED WHERE_INDEXED122825,4442896 -#define WHERE_VIRTUALTABLE WHERE_VIRTUALTABLE122826,4442975 -#define WHERE_IN_ABLE WHERE_IN_ABLE122827,4443046 -#define WHERE_ONEROW WHERE_ONEROW122828,4443122 -#define WHERE_MULTI_OR WHERE_MULTI_OR122829,4443196 -#define WHERE_AUTO_INDEX WHERE_AUTO_INDEX122830,4443267 -#define WHERE_SKIPSCAN WHERE_SKIPSCAN122831,4443336 -#define WHERE_UNQ_WANTED WHERE_UNQ_WANTED122832,4443410 -#define WHERE_PARTIALIDX WHERE_PARTIALIDX122833,4443491 -static void explainAppendTerm(explainAppendTerm122847,4444064 -static const char *explainIndexColumnName(Index *pIdx, int i){explainIndexColumnName122862,4444591 -static void explainIndexRange(StrAccum *pStr, WhereLoop *pLoop){explainIndexRange122883,4445199 -SQLITE_PRIVATE int sqlite3WhereExplainOneScan(sqlite3WhereExplainOneScan122918,4446470 -SQLITE_PRIVATE void sqlite3WhereAddScanStatus(sqlite3WhereAddScanStatus123030,4450840 -static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){disableTerm123092,4453580 -static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){codeApplyAffinity123123,4454579 -static int codeEqualityTerm(codeEqualityTerm123162,4455692 -static int codeAllEqualityTerms(codeAllEqualityTerms123280,4460397 -static void whereLikeOptimizationStringFixup(whereLikeOptimizationStringFixup123394,4464927 -# define whereLikeOptimizationStringFixup(whereLikeOptimizationStringFixup123411,4465593 -struct CCurHint {CCurHint123420,4465851 - int iTabCur; /* Cursor for the main table */iTabCur123421,4465869 - int iTabCur; /* Cursor for the main table */CCurHint::iTabCur123421,4465869 - int iIdxCur; /* Cursor for the index, if pIdx!=0. Unused otherwise */iIdxCur123422,4465919 - int iIdxCur; /* Cursor for the index, if pIdx!=0. Unused otherwise */CCurHint::iIdxCur123422,4465919 - Index *pIdx; /* The index used to access the table */pIdx123423,4465995 - Index *pIdx; /* The index used to access the table */CCurHint::pIdx123423,4465995 -static int codeCursorHintCheckExpr(Walker *pWalker, Expr *pExpr){codeCursorHintCheckExpr123432,4466362 -static int codeCursorHintFixExpr(Walker *pWalker, Expr *pExpr){codeCursorHintFixExpr123462,4467460 -static void codeCursorHint(codeCursorHint123495,4468750 -# define codeCursorHint(codeCursorHint123560,4471050 -static void codeDeferredSeek(codeDeferredSeek123581,4471973 -SQLITE_PRIVATE Bitmask sqlite3WhereCodeOneLoopStart(sqlite3WhereCodeOneLoopStart123615,4473120 -static void whereOrInfoDelete(sqlite3 *db, WhereOrInfo *p){whereOrInfoDelete124628,4515886 -static void whereAndInfoDelete(sqlite3 *db, WhereAndInfo *p){whereAndInfoDelete124636,4516078 -static int whereClauseInsert(WhereClause *pWC, Expr *p, u16 wtFlags){whereClauseInsert124660,4517175 -static int allowedOp(int op){allowedOp124700,4518417 -static void exprCommute(Parse *pParse, Expr *pExpr){exprCommute124720,4519222 -static u16 operatorMask(int op){operatorMask124751,4520355 -static int isLikeOrGlob(isLikeOrGlob124789,4521541 -static int isMatchOfColumn(isMatchOfColumn124889,4525107 -static void transferJoinMarkings(Expr *pDerived, Expr *pBase){transferJoinMarkings124931,4526209 -static void markTermAsChild(WhereClause *pWC, int iChild, int iParent){markTermAsChild124941,4526463 -static WhereTerm *whereNthSubterm(WhereTerm *pTerm, int N){whereNthSubterm124952,4526854 -static void whereCombineDisjuncts(whereCombineDisjuncts124982,4527697 -static void exprAnalyzeOrTerm(exprAnalyzeOrTerm125108,4532825 -static int termIsEquivalence(Parse *pParse, Expr *pExpr){termIsEquivalence125369,4543647 -static Bitmask exprSelectUsage(WhereMaskSet *pMaskSet, Select *pS){exprSelectUsage125399,4544814 -static int exprMightBeIndexed(exprMightBeIndexed125432,4546155 -static void exprAnalyze(exprAnalyze125483,4548160 -SQLITE_PRIVATE void sqlite3WhereSplit(WhereClause *pWC, Expr *pExpr, u8 op){sqlite3WhereSplit125821,4561031 -SQLITE_PRIVATE void sqlite3WhereClauseInit(sqlite3WhereClauseInit125836,4561414 -SQLITE_PRIVATE void sqlite3WhereClauseClear(WhereClause *pWC){sqlite3WhereClauseClear125852,4561876 -SQLITE_PRIVATE Bitmask sqlite3WhereExprUsage(WhereMaskSet *pMaskSet, Expr *p){sqlite3WhereExprUsage125877,4562531 -SQLITE_PRIVATE Bitmask sqlite3WhereExprListUsage(WhereMaskSet *pMaskSet, ExprList *pList){sqlite3WhereExprListUsage125893,4563077 -SQLITE_PRIVATE void sqlite3WhereExprAnalyze(sqlite3WhereExprAnalyze125913,4563655 -SQLITE_PRIVATE void sqlite3WhereTabFuncArgs(sqlite3WhereTabFuncArgs125930,4564115 -/***/ int sqlite3WhereTrace = 0;sqlite3WhereTrace125991,4566444 -SQLITE_PRIVATE LogEst sqlite3WhereOutputRowCount(WhereInfo *pWInfo){sqlite3WhereOutputRowCount125998,4566558 -SQLITE_PRIVATE int sqlite3WhereIsDistinct(WhereInfo *pWInfo){sqlite3WhereIsDistinct126006,4566789 -SQLITE_PRIVATE int sqlite3WhereIsOrdered(WhereInfo *pWInfo){sqlite3WhereIsOrdered126014,4567005 -SQLITE_PRIVATE int sqlite3WhereContinueLabel(WhereInfo *pWInfo){sqlite3WhereContinueLabel126022,4567220 -SQLITE_PRIVATE int sqlite3WhereBreakLabel(WhereInfo *pWInfo){sqlite3WhereBreakLabel126031,4567445 -SQLITE_PRIVATE int sqlite3WhereOkOnePass(WhereInfo *pWInfo, int *aiCur){sqlite3WhereOkOnePass126052,4568379 -static void whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc){whereOrMove126067,4568834 -static int whereOrInsert(whereOrInsert126079,4569262 -SQLITE_PRIVATE Bitmask sqlite3WhereGetMask(WhereMaskSet *pMaskSet, int iCursor){sqlite3WhereGetMask126116,4570229 -static void createMask(WhereMaskSet *pMaskSet, int iCursor){createMask126135,4570765 -static WhereTerm *whereScanNext(WhereScan *pScan){whereScanNext126145,4571129 -static WhereTerm *whereScanInit(whereScanInit126241,4574809 -SQLITE_PRIVATE WhereTerm *sqlite3WhereFindTerm(sqlite3WhereFindTerm126302,4577322 -static int findIndexCol(findIndexCol126336,4578390 -static int indexColumnNotNull(Index *pIdx, int iCol){indexColumnNotNull126365,4579239 -static int isDistinctRedundant(isDistinctRedundant126388,4579839 -static LogEst estLog(LogEst N){estLog126449,4582026 -static void translateColumnToCopy(translateColumnToCopy126465,4582627 -static void TRACE_IDX_INPUTS(sqlite3_index_info *p){TRACE_IDX_INPUTS126503,4583927 -static void TRACE_IDX_OUTPUTS(sqlite3_index_info *p){TRACE_IDX_OUTPUTS126521,4584454 -#define TRACE_IDX_INPUTS(TRACE_IDX_INPUTS126537,4585045 -#define TRACE_IDX_OUTPUTS(TRACE_IDX_OUTPUTS126538,4585073 -static int termCanDriveIndex(termCanDriveIndex126547,4585309 -static void constructAutomaticIndex(constructAutomaticIndex126571,4586163 -static sqlite3_index_info *allocateIndexInfo(allocateIndexInfo126776,4594454 -static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){vtabBestIndex126904,4599391 -static int whereKeyStats(whereKeyStats126953,4600923 -static LogEst whereRangeAdjust(WhereTerm *pTerm, LogEst nNew){whereRangeAdjust127145,4608212 -static char sqlite3IndexColumnAffinity(sqlite3 *db, Index *pIdx, int iCol){sqlite3IndexColumnAffinity127162,4608609 -static int whereRangeSkipScanEst(whereRangeSkipScanEst127208,4610435 -static int whereRangeScanEst(whereRangeScanEst127320,4614787 -static int whereEqualScanEst(whereEqualScanEst127495,4621819 -static int whereInScanEst(whereInScanEst127561,4624031 -static void whereTermPrint(WhereTerm *pTerm, int iTerm){whereTermPrint127598,4625231 -static void whereLoopPrint(WhereLoop *p, WhereClause *pWC){whereLoopPrint127620,4625942 -static void whereLoopInit(WhereLoop *p){whereLoopInit127672,4627693 -static void whereLoopClearUnion(sqlite3 *db, WhereLoop *p){whereLoopClearUnion127682,4627913 -static void whereLoopClear(sqlite3 *db, WhereLoop *p){whereLoopClear127699,4628477 -static int whereLoopResize(sqlite3 *db, WhereLoop *p, int n){whereLoopResize127708,4628727 -static int whereLoopXfer(sqlite3 *db, WhereLoop *pTo, WhereLoop *pFrom){whereLoopXfer127724,4629217 -static void whereLoopDelete(sqlite3 *db, WhereLoop *p){whereLoopDelete127743,4629785 -static void whereInfoFree(sqlite3 *db, WhereInfo *pWInfo){whereInfoFree127751,4629929 -static int whereLoopCheaperProperSubset(whereLoopCheaperProperSubset127787,4631128 -static void whereLoopAdjustCost(const WhereLoop *p, WhereLoop *pTemplate){whereLoopAdjustCost127824,4632384 -static WhereLoop **whereLoopFindLesser(whereLoopFindLesser127860,4633916 -static int whereLoopInsert(WhereLoopBuilder *pBuilder, WhereLoop *pTemplate){whereLoopInsert127948,4637701 -static void whereLoopOutputAdjust(whereLoopOutputAdjust128074,4642046 -# define ApplyCostMultiplier(ApplyCostMultiplier128125,4643859 -# define ApplyCostMultiplier(ApplyCostMultiplier128127,4643907 -static int whereLoopAddBtreeIndex(whereLoopAddBtreeIndex128142,4644391 -static int indexMightHelpWithOrderBy(indexMightHelpWithOrderBy128434,4655947 -static Bitmask columnsInIndex(Index *pIdx){columnsInIndex128468,4656937 -static int whereUsablePartialIndex(int iTab, WhereClause *pWC, Expr *pWhere){whereUsablePartialIndex128485,4657349 -static int whereLoopAddBtree(whereLoopAddBtree128539,4659587 -static int whereLoopAddVirtualOne(whereLoopAddVirtualOne128756,4668255 -static int whereLoopAddVirtual(whereLoopAddVirtual128908,4674052 -static int whereLoopAddOr(whereLoopAddOr129023,4678705 -static int whereLoopAddAll(WhereLoopBuilder *pBuilder){whereLoopAddAll129148,4682795 -static i8 wherePathSatisfiesOrderBy(wherePathSatisfiesOrderBy129213,4685267 -SQLITE_PRIVATE int sqlite3WhereIsSorted(WhereInfo *pWInfo){sqlite3WhereIsSorted129484,4696005 -static const char *wherePathName(WherePath *pPath, int nLoop, WhereLoop *pLast){wherePathName129492,4696249 -static LogEst whereSortingCost(whereSortingCost129507,4696662 -static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){wherePathSolver129552,4698112 -static int whereShortCut(WhereLoopBuilder *pBuilder){whereShortCut129902,4712700 -SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(sqlite3WhereBegin130068,4719037 -SQLITE_PRIVATE void sqlite3WhereEnd(WhereInfo *pWInfo){sqlite3WhereEnd130530,4736002 -#define YYNOERRORRECOVERY YYNOERRORRECOVERY130739,4743531 -#define yytestcase(yytestcase130744,4743610 -#define YYPARSEFREENEVERNULL YYPARSEFREENEVERNULL130750,4743733 -#define YYMALLOCARGTYPE YYMALLOCARGTYPE130756,4743897 -struct LimitVal {LimitVal130762,4744033 - Expr *pLimit; /* The LIMIT expression. NULL if there is no limit */pLimit130763,4744051 - Expr *pLimit; /* The LIMIT expression. NULL if there is no limit */LimitVal::pLimit130763,4744051 - Expr *pOffset; /* The OFFSET expression. NULL if there is none */pOffset130764,4744125 - Expr *pOffset; /* The OFFSET expression. NULL if there is none */LimitVal::pOffset130764,4744125 -struct LikeOp {LikeOp130771,4744309 - Token eOperator; /* "like" or "glob" or "regexp" */eOperator130772,4744325 - Token eOperator; /* "like" or "glob" or "regexp" */LikeOp::eOperator130772,4744325 - int bNot; /* True if the NOT keyword is present */bNot130773,4744380 - int bNot; /* True if the NOT keyword is present */LikeOp::bNot130773,4744380 -struct TrigEvent { int a; IdList * b; };TrigEvent130785,4744722 -struct TrigEvent { int a; IdList * b; };a130785,4744722 -struct TrigEvent { int a; IdList * b; };TrigEvent::a130785,4744722 -struct TrigEvent { int a; IdList * b; };b130785,4744722 -struct TrigEvent { int a; IdList * b; };TrigEvent::b130785,4744722 -struct AttachKey { int type; Token key; };AttachKey130790,4744842 -struct AttachKey { int type; Token key; };type130790,4744842 -struct AttachKey { int type; Token key; };AttachKey::type130790,4744842 -struct AttachKey { int type; Token key; };key130790,4744842 -struct AttachKey { int type; Token key; };AttachKey::key130790,4744842 -static void disableLookaside(Parse *pParse){disableLookaside130796,4744997 - static void parserDoubleLinkSelect(Parse *pParse, Select *p){parserDoubleLinkSelect130807,4745303 - static void spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd){spanSet130828,4746051 - static void spanExpr(ExprSpan *pOut, Parse *pParse, int op, Token t){spanExpr130837,4746371 - static void spanBinaryExpr(spanBinaryExpr130846,4746701 - static void exprNot(Parse *pParse, int doNot, ExprSpan *pSpan){exprNot130859,4747183 - static void spanUnaryPostfix(spanUnaryPostfix130867,4747416 - static void binaryToUnaryIfNull(Parse *pParse, Expr *pY, Expr *pA, int op){binaryToUnaryIfNull130879,4747964 - static void spanUnaryPrefix(spanUnaryPrefix130890,4748275 - static ExprList *parserAddExprIdListTerm(parserAddExprIdListTerm130907,4748989 -# define INTERFACE INTERFACE130979,4753123 -#define YYCODETYPE YYCODETYPE130982,4753232 -#define YYNOCODE YYNOCODE130983,4753265 -#define YYACTIONTYPE YYACTIONTYPE130984,4753286 -#define YYWILDCARD YYWILDCARD130985,4753326 -#define sqlite3ParserTOKENTYPE sqlite3ParserTOKENTYPE130986,4753348 - int yyinit;yyinit130988,4753401 - int yyinit;__anon476::yyinit130988,4753401 - sqlite3ParserTOKENTYPE yy0;yy0130989,4753415 - sqlite3ParserTOKENTYPE yy0;__anon476::yy0130989,4753415 - struct LimitVal yy64;yy64130990,4753445 - struct LimitVal yy64;__anon476::yy64130990,4753445 - Expr* yy122;yy122130991,4753469 - Expr* yy122;__anon476::yy122130991,4753469 - Select* yy159;yy159130992,4753484 - Select* yy159;__anon476::yy159130992,4753484 - IdList* yy180;yy180130993,4753501 - IdList* yy180;__anon476::yy180130993,4753501 - struct {int value; int mask;} yy207;value130994,4753518 - struct {int value; int mask;} yy207;__anon476::__anon477::value130994,4753518 - struct {int value; int mask;} yy207;mask130994,4753518 - struct {int value; int mask;} yy207;__anon476::__anon477::mask130994,4753518 - struct {int value; int mask;} yy207;yy207130994,4753518 - struct {int value; int mask;} yy207;__anon476::yy207130994,4753518 - struct LikeOp yy318;yy318130995,4753557 - struct LikeOp yy318;__anon476::yy318130995,4753557 - TriggerStep* yy327;yy327130996,4753580 - TriggerStep* yy327;__anon476::yy327130996,4753580 - With* yy331;yy331130997,4753602 - With* yy331;__anon476::yy331130997,4753602 - ExprSpan yy342;yy342130998,4753617 - ExprSpan yy342;__anon476::yy342130998,4753617 - SrcList* yy347;yy347130999,4753635 - SrcList* yy347;__anon476::yy347130999,4753635 - int yy392;yy392131000,4753653 - int yy392;__anon476::yy392131000,4753653 - struct TrigEvent yy410;yy410131001,4753666 - struct TrigEvent yy410;__anon476::yy410131001,4753666 - ExprList* yy442;yy442131002,4753692 - ExprList* yy442;__anon476::yy442131002,4753692 -} YYMINORTYPE;YYMINORTYPE131003,4753711 -#define YYSTACKDEPTH YYSTACKDEPTH131005,4753747 -#define sqlite3ParserARG_SDECL sqlite3ParserARG_SDECL131007,4753779 -#define sqlite3ParserARG_PDECL sqlite3ParserARG_PDECL131008,4753825 -#define sqlite3ParserARG_FETCH sqlite3ParserARG_FETCH131009,4753871 -#define sqlite3ParserARG_STORE sqlite3ParserARG_STORE131010,4753936 -#define YYFALLBACK YYFALLBACK131011,4753994 -#define YYNSTATE YYNSTATE131012,4754015 -#define YYNRULE YYNRULE131013,4754048 -#define YY_MAX_SHIFT YY_MAX_SHIFT131014,4754081 -#define YY_MIN_SHIFTREDUCE YY_MIN_SHIFTREDUCE131015,4754114 -#define YY_MAX_SHIFTREDUCE YY_MAX_SHIFTREDUCE131016,4754147 -#define YY_MIN_REDUCE YY_MIN_REDUCE131017,4754180 -#define YY_MAX_REDUCE YY_MAX_REDUCE131018,4754213 -#define YY_ERROR_ACTION YY_ERROR_ACTION131019,4754247 -#define YY_ACCEPT_ACTION YY_ACCEPT_ACTION131020,4754281 -#define YY_NO_ACTION YY_NO_ACTION131021,4754315 -# define yytestcase(yytestcase131033,4754778 -#define YY_ACTTAB_COUNT YY_ACTTAB_COUNT131089,4757271 -static const YYACTIONTYPE yy_action[] = {yy_action131090,4757302 -static const YYCODETYPE yy_lookahead[] = {yy_lookahead131243,4768467 -#define YY_SHIFT_USE_DFLT YY_SHIFT_USE_DFLT131396,4779633 -#define YY_SHIFT_COUNT YY_SHIFT_COUNT131397,4779665 -#define YY_SHIFT_MIN YY_SHIFT_MIN131398,4779694 -#define YY_SHIFT_MAX YY_SHIFT_MAX131399,4779723 -static const short yy_shift_ofst[] = {yy_shift_ofst131400,4779753 -#define YY_REDUCE_USE_DFLT YY_REDUCE_USE_DFLT131446,4783051 -#define YY_REDUCE_COUNT YY_REDUCE_COUNT131447,4783085 -#define YY_REDUCE_MIN YY_REDUCE_MIN131448,4783115 -#define YY_REDUCE_MAX YY_REDUCE_MAX131449,4783146 -static const short yy_reduce_ofst[] = {yy_reduce_ofst131450,4783177 -static const YYACTIONTYPE yy_default[] = {yy_default131484,4785558 -static const YYCODETYPE yyFallback[] = {yyFallback131547,4789548 -struct yyStackEntry {yyStackEntry131663,4793444 - YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */stateno131664,4793466 - YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */yyStackEntry::stateno131664,4793466 - YYCODETYPE major; /* The major token value. This is the codemajor131665,4793547 - YYCODETYPE major; /* The major token value. This is the codeyyStackEntry::major131665,4793547 - YYMINORTYPE minor; /* The user-supplied minor token value. Thisminor131667,4793688 - YYMINORTYPE minor; /* The user-supplied minor token value. ThisyyStackEntry::minor131667,4793688 -typedef struct yyStackEntry yyStackEntry;yyStackEntry131670,4793820 -struct yyParser {yyParser131674,4793962 - int yyidx; /* Index of top element in stack */yyidx131675,4793980 - int yyidx; /* Index of top element in stack */yyParser::yyidx131675,4793980 - int yyidxMax; /* Maximum value of yyidx */yyidxMax131677,4794076 - int yyidxMax; /* Maximum value of yyidx */yyParser::yyidxMax131677,4794076 - int yyerrcnt; /* Shifts left before out of the error */yyerrcnt131680,4794170 - int yyerrcnt; /* Shifts left before out of the error */yyParser::yyerrcnt131680,4794170 - int yystksz; /* Current side of the stack */yystksz131684,4794349 - int yystksz; /* Current side of the stack */yyParser::yystksz131684,4794349 - yyStackEntry *yystack; /* The parser's stack */yystack131685,4794413 - yyStackEntry *yystack; /* The parser's stack */yyParser::yystack131685,4794413 -typedef struct yyParser yyParser;yyParser131690,4794550 -static FILE *yyTraceFILE = 0;yyTraceFILE131694,4794625 -static char *yyTracePrompt = 0;yyTracePrompt131695,4794655 -SQLITE_PRIVATE void sqlite3ParserTrace(FILE *TraceFILE, char *zTracePrompt){sqlite3ParserTrace131716,4795199 -static const char *const yyTokenName[] = { yyTokenName131727,4795591 -static const char *const yyRuleName[] = {yyRuleName131797,4800105 -static void yyGrowStack(yyParser *p){yyGrowStack132132,4814097 -# define YYMALLOCARGTYPE YYMALLOCARGTYPE132157,4814740 -SQLITE_PRIVATE void *sqlite3ParserAlloc(void *(*mallocProc)(YYMALLOCARGTYPE)){sqlite3ParserAlloc132172,4815098 -static void yy_destructor(yy_destructor132196,4815888 -static void yy_pop_parser_stack(yyParser *pParser){yy_pop_parser_stack132297,4818697 -SQLITE_PRIVATE void sqlite3ParserFree(sqlite3ParserFree132319,4819367 -SQLITE_PRIVATE int sqlite3ParserStackPeak(void *p){sqlite3ParserStackPeak132338,4819869 -static unsigned int yy_find_shift_action(yy_find_shift_action132348,4820096 -static int yy_find_reduce_action(yy_find_reduce_action132414,4822013 -static void yyStackOverflow(yyParser *yypParser){yyStackOverflow132444,4822736 -static void yyTraceShift(yyParser *yypParser, int yyNewState){yyTraceShift132466,4823474 -# define yyTraceShift(yyTraceShift132479,4823905 -static void yy_shift(yy_shift132485,4823973 - YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */lhs132523,4825065 - YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */__anon478::lhs132523,4825065 - unsigned char nrhs; /* Number of right-hand side symbols in the rule */nrhs132524,4825138 - unsigned char nrhs; /* Number of right-hand side symbols in the rule */__anon478::nrhs132524,4825138 -} yyRuleInfo[] = {yyRuleInfo132525,4825216 -static void yy_reduce(yy_reduce132860,4829959 -static void yy_parse_failed(yy_parse_failed134121,4885826 -static void yy_syntax_error(yy_syntax_error134142,4886533 -#define TOKEN TOKEN134148,4886795 -static void yy_accept(yy_accept134161,4887329 -SQLITE_PRIVATE void sqlite3Parser(sqlite3Parser134197,4888557 -#define CC_X CC_X134398,4895335 -#define CC_KYWD CC_KYWD134399,4895409 -#define CC_ID CC_ID134400,4895483 -#define CC_DIGIT CC_DIGIT134401,4895549 -#define CC_DOLLAR CC_DOLLAR134402,4895589 -#define CC_VARALPHA CC_VARALPHA134403,4895626 -#define CC_VARNUM CC_VARNUM134404,4895700 -#define CC_SPACE CC_SPACE134405,4895761 -#define CC_QUOTE CC_QUOTE134406,4895811 -#define CC_QUOTE2 CC_QUOTE2134407,4895892 -#define CC_PIPE CC_PIPE134408,4895955 -#define CC_MINUS CC_MINUS134409,4896021 -#define CC_LT CC_LT134410,4896087 -#define CC_GT CC_GT134411,4896148 -#define CC_EQ CC_EQ134412,4896203 -#define CC_BANG CC_BANG134413,4896258 -#define CC_SLASH CC_SLASH134414,4896308 -#define CC_LP CC_LP134415,4896368 -#define CC_RP CC_RP134416,4896405 -#define CC_SEMI CC_SEMI134417,4896442 -#define CC_PLUS CC_PLUS134418,4896479 -#define CC_STAR CC_STAR134419,4896516 -#define CC_PERCENT CC_PERCENT134420,4896553 -#define CC_COMMA CC_COMMA134421,4896590 -#define CC_AND CC_AND134422,4896627 -#define CC_TILDA CC_TILDA134423,4896664 -#define CC_DOT CC_DOT134424,4896701 -#define CC_ILLEGAL CC_ILLEGAL134425,4896738 -static const unsigned char aiClass[] = {aiClass134427,4896790 -# define charMap(charMap134478,4899830 -# define charMap(charMap134481,4899916 -const unsigned char ebcdicToAscii[] = {ebcdicToAscii134482,4899968 -static int keywordCode(const char *z, int n, int *pType){keywordCode134530,4902569 -SQLITE_PRIVATE int sqlite3KeywordCode(const unsigned char *z, int n){sqlite3KeywordCode134795,4915973 -#define SQLITE_N_KEYWORD SQLITE_N_KEYWORD134800,4916109 -#define IdChar(IdChar134823,4916886 -SQLITE_PRIVATE const char sqlite3IsEbcdicIdChar[] = {sqlite3IsEbcdicIdChar134826,4916979 -#define IdChar(IdChar134841,4917834 -SQLITE_PRIVATE int sqlite3IsIdChar(u8 c){ return IdChar(c); }sqlite3IsIdChar134846,4918005 -SQLITE_PRIVATE int sqlite3GetToken(const unsigned char *z, int *tokenType){sqlite3GetToken134854,4918205 -SQLITE_PRIVATE int sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg){sqlite3RunParser135134,4925201 -#define IdChar(IdChar135290,4930373 -SQLITE_PRIVATE const char sqlite3IsEbcdicIdChar[];sqlite3IsEbcdicIdChar135293,4930466 -#define IdChar(IdChar135294,4930517 -#define tkSEMI tkSEMI135303,4930762 -#define tkWS tkWS135304,4930782 -#define tkOTHER tkOTHER135305,4930802 -#define tkEXPLAIN tkEXPLAIN135307,4930850 -#define tkCREATE tkCREATE135308,4930870 -#define tkTEMP tkTEMP135309,4930890 -#define tkTRIGGER tkTRIGGER135310,4930910 -#define tkEND tkEND135311,4930930 -SQLITE_API int SQLITE_STDCALL sqlite3_complete(const char *zSql){sqlite3_complete135367,4933164 -SQLITE_API int SQLITE_STDCALL sqlite3_complete16(const void *zSql){sqlite3_complete16135532,4938270 -SQLITE_API const char sqlite3_version[] = SQLITE_VERSION;sqlite3_version135686,4943111 -SQLITE_API const char *SQLITE_STDCALL sqlite3_libversion(void){ return sqlite3_version; }sqlite3_libversion135692,4943321 -SQLITE_API const char *SQLITE_STDCALL sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; }sqlite3_sourceid135698,4943599 -SQLITE_API int SQLITE_STDCALL sqlite3_libversion_number(void){ return SQLITE_VERSION_NUMBER; }sqlite3_libversion_number135703,4943823 -SQLITE_API int SQLITE_STDCALL sqlite3_threadsafe(void){ return SQLITE_THREADSAFE; }sqlite3_threadsafe135709,4944138 -# define SQLITE_DEBUG_OS_TRACE SQLITE_DEBUG_OS_TRACE135718,4944467 - int sqlite3OSTrace = SQLITE_DEBUG_OS_TRACE;sqlite3OSTrace135720,4944510 -SQLITE_API void (SQLITE_CDECL *sqlite3IoTrace)(const char*, ...) = 0;sqlite3IoTrace135730,4944862 -SQLITE_API char *sqlite3_temp_directory = 0;sqlite3_temp_directory135740,4945162 -SQLITE_API char *sqlite3_data_directory = 0;sqlite3_data_directory135749,4945468 -SQLITE_API int SQLITE_STDCALL sqlite3_initialize(void){sqlite3_initialize135782,4946850 -SQLITE_API int SQLITE_STDCALL sqlite3_shutdown(void){sqlite3_shutdown135948,4952755 -SQLITE_API int SQLITE_CDECL sqlite3_config(int op, ...){sqlite3_config136002,4954439 -static int setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt){setupLookaside136308,4966541 -SQLITE_API sqlite3_mutex *SQLITE_STDCALL sqlite3_db_mutex(sqlite3 *db){sqlite3_db_mutex136367,4968192 -SQLITE_API int SQLITE_STDCALL sqlite3_db_release_memory(sqlite3 *db){sqlite3_db_release_memory136381,4968489 -SQLITE_API int SQLITE_STDCALL sqlite3_db_cacheflush(sqlite3 *db){sqlite3_db_cacheflush136405,4969069 -SQLITE_API int SQLITE_CDECL sqlite3_db_config(sqlite3 *db, int op, ...){sqlite3_db_config136434,4969845 -static int allSpaces(const char *z, int n){allSpaces136489,4971535 -static int binCollFunc(binCollFunc136501,4971864 -static int nocaseCollatingFunc(nocaseCollatingFunc136538,4973024 -SQLITE_API sqlite_int64 SQLITE_STDCALL sqlite3_last_insert_rowid(sqlite3 *db){sqlite3_last_insert_rowid136555,4973377 -SQLITE_API int SQLITE_STDCALL sqlite3_changes(sqlite3 *db){sqlite3_changes136568,4973685 -SQLITE_API int SQLITE_STDCALL sqlite3_total_changes(sqlite3 *db){sqlite3_total_changes136581,4973967 -SQLITE_PRIVATE void sqlite3CloseSavepoints(sqlite3 *db){sqlite3CloseSavepoints136596,4974372 -static void functionDestroy(sqlite3 *db, FuncDef *p){functionDestroy136613,4974913 -static void disconnectAllVtab(sqlite3 *db){disconnectAllVtab136628,4975326 -static int connectionIsBusy(sqlite3 *db){connectionIsBusy136659,4976177 -static int sqlite3Close(sqlite3 *db, int forceZombie){sqlite3Close136673,4976477 -SQLITE_API int SQLITE_STDCALL sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); }sqlite3_close136729,4978529 -SQLITE_API int SQLITE_STDCALL sqlite3_close_v2(sqlite3 *db){ return sqlite3Close(db,1); }sqlite3_close_v2136730,4978616 -SQLITE_PRIVATE void sqlite3LeaveMutexAndCloseZombie(sqlite3 *db){sqlite3LeaveMutexAndCloseZombie136741,4979024 -SQLITE_PRIVATE void sqlite3RollbackAll(sqlite3 *db, int tripCode){sqlite3RollbackAll136864,4983078 -SQLITE_PRIVATE const char *sqlite3ErrName(int rc){sqlite3ErrName136914,4984700 -SQLITE_PRIVATE const char *sqlite3ErrStr(int rc){sqlite3ErrStr137022,4992021 -static int sqliteDefaultBusyCallback(sqliteDefaultBusyCallback137075,4994158 -# define NDELAY NDELAY137084,4994526 -SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler *p){sqlite3InvokeBusyHandler137121,4995423 -SQLITE_API int SQLITE_STDCALL sqlite3_busy_handler(sqlite3_busy_handler137137,4995796 -SQLITE_API void SQLITE_STDCALL sqlite3_progress_handler(sqlite3_progress_handler137160,4996442 -SQLITE_API int SQLITE_STDCALL sqlite3_busy_timeout(sqlite3 *db, int ms){sqlite3_busy_timeout137191,4997101 -SQLITE_API void SQLITE_STDCALL sqlite3_interrupt(sqlite3 *db){sqlite3_interrupt137207,4997527 -SQLITE_PRIVATE int sqlite3CreateFunc(sqlite3CreateFunc137224,4998016 -SQLITE_API int SQLITE_STDCALL sqlite3_create_function(sqlite3_create_function137323,5001073 -SQLITE_API int SQLITE_STDCALL sqlite3_create_function_v2(sqlite3_create_function_v2137337,5001476 -SQLITE_API int SQLITE_STDCALL sqlite3_create_function16(sqlite3_create_function16137380,5002497 -SQLITE_API int SQLITE_STDCALL sqlite3_overload_function(sqlite3_overload_function137420,5003760 -SQLITE_API void *SQLITE_STDCALL sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg){sqlite3_trace137451,5004619 -SQLITE_API void *SQLITE_STDCALL sqlite3_profile(sqlite3_profile137475,5005322 -SQLITE_API void *SQLITE_STDCALL sqlite3_commit_hook(sqlite3_commit_hook137502,5005942 -SQLITE_API void *SQLITE_STDCALL sqlite3_update_hook(sqlite3_update_hook137527,5006625 -SQLITE_API void *SQLITE_STDCALL sqlite3_rollback_hook(sqlite3_rollback_hook137552,5007299 -SQLITE_API void *SQLITE_STDCALL sqlite3_preupdate_hook(sqlite3_preupdate_hook137578,5008010 -SQLITE_PRIVATE int sqlite3WalDefaultHook(sqlite3WalDefaultHook137601,5008847 -SQLITE_API int SQLITE_STDCALL sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){sqlite3_wal_autocheckpoint137627,5009794 -SQLITE_API void *SQLITE_STDCALL sqlite3_wal_hook(sqlite3_wal_hook137648,5010361 -SQLITE_API int SQLITE_STDCALL sqlite3_wal_checkpoint_v2(sqlite3_wal_checkpoint_v2137675,5011000 -SQLITE_API int SQLITE_STDCALL sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb){sqlite3_wal_checkpoint137730,5012774 -SQLITE_PRIVATE int sqlite3Checkpoint(sqlite3 *db, int iDb, int eMode, int *pnLog, int *pnCkpt){sqlite3Checkpoint137756,5013982 -SQLITE_PRIVATE int sqlite3TempInMemory(const sqlite3 *db){sqlite3TempInMemory137800,5015863 -SQLITE_API const char *SQLITE_STDCALL sqlite3_errmsg(sqlite3 *db){sqlite3_errmsg137821,5016299 -SQLITE_API const void *SQLITE_STDCALL sqlite3_errmsg16(sqlite3 *db){sqlite3_errmsg16137849,5016982 -SQLITE_API int SQLITE_STDCALL sqlite3_errcode(sqlite3 *db){sqlite3_errcode137894,5018404 -SQLITE_API int SQLITE_STDCALL sqlite3_extended_errcode(sqlite3 *db){sqlite3_extended_errcode137903,5018651 -SQLITE_API int SQLITE_STDCALL sqlite3_system_errno(sqlite3 *db){sqlite3_system_errno137912,5018893 -SQLITE_API const char *SQLITE_STDCALL sqlite3_errstr(int rc){sqlite3_errstr137921,5019154 -static int createCollation(createCollation137929,5019354 -static const int aHardLimit[] = {aHardLimit138006,5021676 -SQLITE_API int SQLITE_STDCALL sqlite3_limit(sqlite3 *db, int limitId, int newLimit){sqlite3_limit138069,5023570 -SQLITE_PRIVATE int sqlite3ParseUri(sqlite3ParseUri138137,5026729 -static int openDatabase(openDatabase138364,5034298 -SQLITE_API int SQLITE_STDCALL sqlite3_open(sqlite3_open138693,5044659 -SQLITE_API int SQLITE_STDCALL sqlite3_open_v2(sqlite3_open_v2138700,5044861 -SQLITE_API int SQLITE_STDCALL sqlite3_open16(sqlite3_open16138713,5045251 -SQLITE_API int SQLITE_STDCALL sqlite3_create_collation(sqlite3_create_collation138752,5046341 -SQLITE_API int SQLITE_STDCALL sqlite3_create_collation_v2(sqlite3_create_collation_v2138765,5046668 -SQLITE_API int SQLITE_STDCALL sqlite3_create_collation16(sqlite3_create_collation16138790,5047304 -SQLITE_API int SQLITE_STDCALL sqlite3_collation_needed(sqlite3_collation_needed138820,5048140 -SQLITE_API int SQLITE_STDCALL sqlite3_collation_needed16(sqlite3_collation_needed16138841,5048764 -SQLITE_API int SQLITE_STDCALL sqlite3_global_recover(void){sqlite3_global_recover138863,5049425 -SQLITE_API int SQLITE_STDCALL sqlite3_get_autocommit(sqlite3 *db){sqlite3_get_autocommit138874,5049773 -static int reportError(int iErr, int lineno, const char *zType){reportError138895,5050432 -SQLITE_PRIVATE int sqlite3CorruptError(int lineno){sqlite3CorruptError138900,5050615 -SQLITE_PRIVATE int sqlite3MisuseError(int lineno){sqlite3MisuseError138904,5050781 -SQLITE_PRIVATE int sqlite3CantopenError(int lineno){sqlite3CantopenError138908,5050932 -SQLITE_PRIVATE int sqlite3NomemError(int lineno){sqlite3NomemError138913,5051117 -SQLITE_PRIVATE int sqlite3IoerrnomemError(int lineno){sqlite3IoerrnomemError138917,5051263 -SQLITE_API void SQLITE_STDCALL sqlite3_thread_cleanup(void){sqlite3_thread_cleanup138931,5051725 -SQLITE_API int SQLITE_STDCALL sqlite3_table_column_metadata(sqlite3_table_column_metadata138939,5051929 -SQLITE_API int SQLITE_STDCALL sqlite3_sleep(int ms){sqlite3_sleep139057,5055535 -SQLITE_API int SQLITE_STDCALL sqlite3_extended_result_codes(sqlite3 *db, int onoff){sqlite3_extended_result_codes139073,5055914 -SQLITE_API int SQLITE_STDCALL sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){sqlite3_file_control139086,5056298 -SQLITE_API int SQLITE_CDECL sqlite3_test_control(int op, ...){sqlite3_test_control139126,5057434 -SQLITE_API const char *SQLITE_STDCALL sqlite3_uri_parameter(const char *zFilename, const char *zParam){sqlite3_uri_parameter139471,5069797 -SQLITE_API int SQLITE_STDCALL sqlite3_uri_boolean(const char *zFilename, const char *zParam, int bDflt){sqlite3_uri_boolean139486,5070261 -SQLITE_API sqlite3_int64 SQLITE_STDCALL sqlite3_uri_int64(sqlite3_uri_int64139495,5070561 -SQLITE_PRIVATE Btree *sqlite3DbNameToBtree(sqlite3 *db, const char *zDbName){sqlite3DbNameToBtree139511,5071059 -SQLITE_API const char *SQLITE_STDCALL sqlite3_db_filename(sqlite3 *db, const char *zDbName){sqlite3_db_filename139527,5071414 -SQLITE_API int SQLITE_STDCALL sqlite3_db_readonly(sqlite3 *db, const char *zDbName){sqlite3_db_readonly139543,5071842 -SQLITE_API int SQLITE_STDCALL sqlite3_snapshot_get(sqlite3_snapshot_get139560,5072294 -SQLITE_API int SQLITE_STDCALL sqlite3_snapshot_open(sqlite3_snapshot_open139595,5073075 -SQLITE_API void SQLITE_STDCALL sqlite3_snapshot_free(sqlite3_snapshot *pSnapshot){sqlite3_snapshot_free139632,5073971 -#define assertMutexHeld(assertMutexHeld139669,5075102 -static sqlite3 *SQLITE_WSD sqlite3BlockedList = 0;sqlite3BlockedList139678,5075454 -static void checkListProperties(sqlite3 *db){checkListProperties139695,5076092 -# define checkListProperties(checkListProperties139714,5076664 -static void removeFromBlockedList(sqlite3 *db){removeFromBlockedList139721,5076852 -static void addToBlockedList(sqlite3 *db){addToBlockedList139736,5077198 -static void enterMutex(void){enterMutex139751,5077482 -static void leaveMutex(void){leaveMutex139759,5077653 -SQLITE_API int SQLITE_STDCALL sqlite3_unlock_notify(sqlite3_unlock_notify139786,5078583 -SQLITE_PRIVATE void sqlite3ConnectionBlocked(sqlite3 *db, sqlite3 *pBlocker){sqlite3ConnectionBlocked139836,5079999 -SQLITE_PRIVATE void sqlite3ConnectionUnlocked(sqlite3 *db){sqlite3ConnectionUnlocked139864,5080967 -SQLITE_PRIVATE void sqlite3ConnectionClosed(sqlite3 *db){sqlite3ConnectionClosed139963,5084810 -#define _FTSINT_H_FTSINT_H140280,5098309 -# define NDEBUG NDEBUG140283,5098376 -# undef SQLITE_ENABLE_FTS3SQLITE_ENABLE_FTS3140288,5098473 -# undef SQLITE_ENABLE_FTS4SQLITE_ENABLE_FTS4140289,5098500 -# define SQLITE_ENABLE_FTS3SQLITE_ENABLE_FTS3140298,5098814 -#define _FTS3_TOKENIZER_H__FTS3_TOKENIZER_H_140332,5099927 -typedef struct sqlite3_tokenizer_module sqlite3_tokenizer_module;sqlite3_tokenizer_module140359,5101140 -typedef struct sqlite3_tokenizer sqlite3_tokenizer;sqlite3_tokenizer140360,5101206 -typedef struct sqlite3_tokenizer_cursor sqlite3_tokenizer_cursor;sqlite3_tokenizer_cursor140361,5101258 -struct sqlite3_tokenizer_module {sqlite3_tokenizer_module140363,5101325 - int iVersion;iVersion140368,5101426 - int iVersion;sqlite3_tokenizer_module::iVersion140368,5101426 - int (*xCreate)(xCreate140387,5102209 - int (*xCreate)(sqlite3_tokenizer_module::xCreate140387,5102209 - int (*xDestroy)(sqlite3_tokenizer *pTokenizer);xDestroy140397,5102577 - int (*xDestroy)(sqlite3_tokenizer *pTokenizer);sqlite3_tokenizer_module::xDestroy140397,5102577 - int (*xOpen)(xOpen140404,5102840 - int (*xOpen)(sqlite3_tokenizer_module::xOpen140404,5102840 - int (*xClose)(sqlite3_tokenizer_cursor *pCursor);xClose140414,5103206 - int (*xClose)(sqlite3_tokenizer_cursor *pCursor);sqlite3_tokenizer_module::xClose140414,5103206 - int (*xNext)(xNext140440,5104492 - int (*xNext)(sqlite3_tokenizer_module::xNext140440,5104492 - int (*xLanguageid)(sqlite3_tokenizer_cursor *pCsr, int iLangid);xLanguageid140455,5105098 - int (*xLanguageid)(sqlite3_tokenizer_cursor *pCsr, int iLangid);sqlite3_tokenizer_module::xLanguageid140455,5105098 -struct sqlite3_tokenizer {sqlite3_tokenizer140458,5105169 - const sqlite3_tokenizer_module *pModule; /* The module for this tokenizer */pModule140459,5105196 - const sqlite3_tokenizer_module *pModule; /* The module for this tokenizer */sqlite3_tokenizer::pModule140459,5105196 -struct sqlite3_tokenizer_cursor {sqlite3_tokenizer_cursor140463,5105351 - sqlite3_tokenizer *pTokenizer; /* Tokenizer for this cursor. */pTokenizer140464,5105385 - sqlite3_tokenizer *pTokenizer; /* Tokenizer for this cursor. */sqlite3_tokenizer_cursor::pTokenizer140464,5105385 -#define _FTS3_HASH_H__FTS3_HASH_H_140495,5106582 -typedef struct Fts3Hash Fts3Hash;Fts3Hash140498,5106647 -typedef struct Fts3HashElem Fts3HashElem;Fts3HashElem140499,5106681 -struct Fts3Hash {Fts3Hash140509,5107180 - char keyClass; /* HASH_INT, _POINTER, _STRING, _BINARY */keyClass140510,5107198 - char keyClass; /* HASH_INT, _POINTER, _STRING, _BINARY */Fts3Hash::keyClass140510,5107198 - char copyKey; /* True if copy of key made on insert */copyKey140511,5107267 - char copyKey; /* True if copy of key made on insert */Fts3Hash::copyKey140511,5107267 - int count; /* Number of entries in this table */count140512,5107334 - int count; /* Number of entries in this table */Fts3Hash::count140512,5107334 - Fts3HashElem *first; /* The first element of the array */first140513,5107398 - Fts3HashElem *first; /* The first element of the array */Fts3Hash::first140513,5107398 - int htsize; /* Number of buckets in the hash table */htsize140514,5107461 - int htsize; /* Number of buckets in the hash table */Fts3Hash::htsize140514,5107461 - struct _fts3ht { /* the hash table */_fts3ht140515,5107529 - struct _fts3ht { /* the hash table */Fts3Hash::_fts3ht140515,5107529 - int count; /* Number of entries with this hash */count140516,5107576 - int count; /* Number of entries with this hash */Fts3Hash::_fts3ht::count140516,5107576 - Fts3HashElem *chain; /* Pointer to first entry with this hash */chain140517,5107644 - Fts3HashElem *chain; /* Pointer to first entry with this hash */Fts3Hash::_fts3ht::chain140517,5107644 - } *ht;ht140518,5107717 - } *ht;Fts3Hash::ht140518,5107717 -struct Fts3HashElem {Fts3HashElem140527,5107988 - Fts3HashElem *next, *prev; /* Next and previous elements in the table */next140528,5108010 - Fts3HashElem *next, *prev; /* Next and previous elements in the table */Fts3HashElem::next140528,5108010 - Fts3HashElem *next, *prev; /* Next and previous elements in the table */prev140528,5108010 - Fts3HashElem *next, *prev; /* Next and previous elements in the table */Fts3HashElem::prev140528,5108010 - void *data; /* Data associated with this element */data140529,5108085 - void *data; /* Data associated with this element */Fts3HashElem::data140529,5108085 - void *pKey; int nKey; /* Key associated with this element */pKey140530,5108154 - void *pKey; int nKey; /* Key associated with this element */Fts3HashElem::pKey140530,5108154 - void *pKey; int nKey; /* Key associated with this element */nKey140530,5108154 - void *pKey; int nKey; /* Key associated with this element */Fts3HashElem::nKey140530,5108154 -#define FTS3_HASH_STRING FTS3_HASH_STRING140545,5108729 -#define FTS3_HASH_BINARY FTS3_HASH_BINARY140546,5108759 -#define fts3HashInit fts3HashInit140560,5109308 -#define fts3HashInsert fts3HashInsert140561,5109353 -#define fts3HashFind fts3HashFind140562,5109400 -#define fts3HashClear fts3HashClear140563,5109445 -#define fts3HashFindElem fts3HashFindElem140564,5109491 -#define fts3HashFirst(fts3HashFirst140578,5109824 -#define fts3HashNext(fts3HashNext140579,5109863 -#define fts3HashData(fts3HashData140580,5109901 -#define fts3HashKey(fts3HashKey140581,5109939 -#define fts3HashKeysize(fts3HashKeysize140582,5109977 -#define fts3HashCount(fts3HashCount140587,5110060 -# define SQLITE_FTS3_MAX_EXPR_DEPTH SQLITE_FTS3_MAX_EXPR_DEPTH140602,5110670 -#define FTS3_MERGE_COUNT FTS3_MERGE_COUNT140611,5110892 -#define FTS3_MAX_PENDING_DATA FTS3_MAX_PENDING_DATA140621,5111337 -#define SizeofArray(SizeofArray140628,5111588 -# define MIN(MIN140632,5111657 -# define MAX(MAX140635,5111712 -#define FTS3_VARINT_MAX FTS3_VARINT_MAX140642,5111905 -#define FTS3_SEGDIR_MAXLEVEL FTS3_SEGDIR_MAXLEVEL140659,5112736 -#define FTS3_SEGDIR_MAXLEVEL_STR FTS3_SEGDIR_MAXLEVEL_STR140660,5112775 -# define testcase(testcase140667,5112932 -#define POS_COLUMN POS_COLUMN140673,5113025 -#define POS_END POS_END140674,5113082 -# define ALWAYS(ALWAYS140687,5113406 -# define NEVER(NEVER140688,5113429 -# define ALWAYS(ALWAYS140690,5113480 -# define NEVER(NEVER140691,5113525 -# define ALWAYS(ALWAYS140695,5113663 -# define NEVER(NEVER140696,5113686 -typedef unsigned char u8; /* 1-byte (or larger) unsigned integer */u8140702,5113757 -typedef short int i16; /* 2-byte (or larger) signed integer */i16140703,5113833 -typedef unsigned int u32; /* 4-byte unsigned integer */u32140704,5113907 -typedef sqlite3_uint64 u64; /* 8-byte unsigned integer */u64140705,5113971 -typedef sqlite3_int64 i64; /* 8-byte signed integer */i64140706,5114035 -#define UNUSED_PARAMETER(UNUSED_PARAMETER140711,5114171 -# define NDEBUG NDEBUG140717,5114317 -# define TESTONLY(TESTONLY140726,5114579 -# define TESTONLY(TESTONLY140728,5114609 -# define FTS_CORRUPT_VTAB FTS_CORRUPT_VTAB140735,5114737 -# define FTS_CORRUPT_VTAB FTS_CORRUPT_VTAB140737,5114790 -typedef struct Fts3Table Fts3Table;Fts3Table140740,5114844 -typedef struct Fts3Cursor Fts3Cursor;Fts3Cursor140741,5114880 -typedef struct Fts3Expr Fts3Expr;Fts3Expr140742,5114918 -typedef struct Fts3Phrase Fts3Phrase;Fts3Phrase140743,5114952 -typedef struct Fts3PhraseToken Fts3PhraseToken;Fts3PhraseToken140744,5114990 -typedef struct Fts3Doclist Fts3Doclist;Fts3Doclist140746,5115039 -typedef struct Fts3SegFilter Fts3SegFilter;Fts3SegFilter140747,5115079 -typedef struct Fts3DeferredToken Fts3DeferredToken;Fts3DeferredToken140748,5115123 -typedef struct Fts3SegReader Fts3SegReader;Fts3SegReader140749,5115175 -typedef struct Fts3MultiSegReader Fts3MultiSegReader;Fts3MultiSegReader140750,5115219 -typedef struct MatchinfoBuffer MatchinfoBuffer;MatchinfoBuffer140752,5115274 -struct Fts3Table {Fts3Table140761,5115619 - sqlite3_vtab base; /* Base class used by SQLite core */base140762,5115638 - sqlite3_vtab base; /* Base class used by SQLite core */Fts3Table::base140762,5115638 - sqlite3 *db; /* The database connection */db140763,5115709 - sqlite3 *db; /* The database connection */Fts3Table::db140763,5115709 - const char *zDb; /* logical database name */zDb140764,5115773 - const char *zDb; /* logical database name */Fts3Table::zDb140764,5115773 - const char *zName; /* virtual table name */zName140765,5115835 - const char *zName; /* virtual table name */Fts3Table::zName140765,5115835 - int nColumn; /* number of named columns in virtual table */nColumn140766,5115894 - int nColumn; /* number of named columns in virtual table */Fts3Table::nColumn140766,5115894 - char **azColumn; /* column names. malloced */azColumn140767,5115975 - char **azColumn; /* column names. malloced */Fts3Table::azColumn140767,5115975 - u8 *abNotindexed; /* True for 'notindexed' columns */abNotindexed140768,5116039 - u8 *abNotindexed; /* True for 'notindexed' columns */Fts3Table::abNotindexed140768,5116039 - sqlite3_tokenizer *pTokenizer; /* tokenizer for inserts and queries */pTokenizer140769,5116109 - sqlite3_tokenizer *pTokenizer; /* tokenizer for inserts and queries */Fts3Table::pTokenizer140769,5116109 - char *zContentTbl; /* content=xxx option, or NULL */zContentTbl140770,5116183 - char *zContentTbl; /* content=xxx option, or NULL */Fts3Table::zContentTbl140770,5116183 - char *zLanguageid; /* languageid=xxx option, or NULL */zLanguageid140771,5116251 - char *zLanguageid; /* languageid=xxx option, or NULL */Fts3Table::zLanguageid140771,5116251 - int nAutoincrmerge; /* Value configured by 'automerge' */nAutoincrmerge140772,5116322 - int nAutoincrmerge; /* Value configured by 'automerge' */Fts3Table::nAutoincrmerge140772,5116322 - u32 nLeafAdd; /* Number of leaf blocks added this trans */nLeafAdd140773,5116394 - u32 nLeafAdd; /* Number of leaf blocks added this trans */Fts3Table::nLeafAdd140773,5116394 - sqlite3_stmt *aStmt[40];aStmt140778,5116624 - sqlite3_stmt *aStmt[40];Fts3Table::aStmt140778,5116624 - char *zReadExprlist;zReadExprlist140780,5116652 - char *zReadExprlist;Fts3Table::zReadExprlist140780,5116652 - char *zWriteExprlist;zWriteExprlist140781,5116675 - char *zWriteExprlist;Fts3Table::zWriteExprlist140781,5116675 - int nNodeSize; /* Soft limit for node size */nNodeSize140783,5116700 - int nNodeSize; /* Soft limit for node size */Fts3Table::nNodeSize140783,5116700 - u8 bFts4; /* True for FTS4, false for FTS3 */bFts4140784,5116765 - u8 bFts4; /* True for FTS4, false for FTS3 */Fts3Table::bFts4140784,5116765 - u8 bHasStat; /* True if %_stat table exists (2==unknown) */bHasStat140785,5116835 - u8 bHasStat; /* True if %_stat table exists (2==unknown) */Fts3Table::bHasStat140785,5116835 - u8 bHasDocsize; /* True if %_docsize table exists */bHasDocsize140786,5116916 - u8 bHasDocsize; /* True if %_docsize table exists */Fts3Table::bHasDocsize140786,5116916 - u8 bDescIdx; /* True if doclists are in reverse order */bDescIdx140787,5116987 - u8 bDescIdx; /* True if doclists are in reverse order */Fts3Table::bDescIdx140787,5116987 - u8 bIgnoreSavepoint; /* True to ignore xSavepoint invocations */bIgnoreSavepoint140788,5117065 - u8 bIgnoreSavepoint; /* True to ignore xSavepoint invocations */Fts3Table::bIgnoreSavepoint140788,5117065 - int nPgsz; /* Page size for host database */nPgsz140789,5117143 - int nPgsz; /* Page size for host database */Fts3Table::nPgsz140789,5117143 - char *zSegmentsTbl; /* Name of %_segments table */zSegmentsTbl140790,5117211 - char *zSegmentsTbl; /* Name of %_segments table */Fts3Table::zSegmentsTbl140790,5117211 - sqlite3_blob *pSegments; /* Blob handle open on %_segments table */pSegments140791,5117276 - sqlite3_blob *pSegments; /* Blob handle open on %_segments table */Fts3Table::pSegments140791,5117276 - int nIndex; /* Size of aIndex[] */nIndex140810,5118283 - int nIndex; /* Size of aIndex[] */Fts3Table::nIndex140810,5118283 - struct Fts3Index {Fts3Index140811,5118340 - struct Fts3Index {Fts3Table::Fts3Index140811,5118340 - int nPrefix; /* Prefix length (0 for main terms index) */nPrefix140812,5118361 - int nPrefix; /* Prefix length (0 for main terms index) */Fts3Table::Fts3Index::nPrefix140812,5118361 - Fts3Hash hPending; /* Pending terms table for this index */hPending140813,5118440 - Fts3Hash hPending; /* Pending terms table for this index */Fts3Table::Fts3Index::hPending140813,5118440 - } *aIndex;aIndex140814,5118515 - } *aIndex;Fts3Table::aIndex140814,5118515 - int nMaxPendingData; /* Max pending data before flush to disk */nMaxPendingData140815,5118528 - int nMaxPendingData; /* Max pending data before flush to disk */Fts3Table::nMaxPendingData140815,5118528 - int nPendingData; /* Current bytes of pending data */nPendingData140816,5118606 - int nPendingData; /* Current bytes of pending data */Fts3Table::nPendingData140816,5118606 - sqlite_int64 iPrevDocid; /* Docid of most recently inserted document */iPrevDocid140817,5118676 - sqlite_int64 iPrevDocid; /* Docid of most recently inserted document */Fts3Table::iPrevDocid140817,5118676 - int iPrevLangid; /* Langid of recently inserted document */iPrevLangid140818,5118757 - int iPrevLangid; /* Langid of recently inserted document */Fts3Table::iPrevLangid140818,5118757 - int bPrevDelete; /* True if last operation was a delete */bPrevDelete140819,5118834 - int bPrevDelete; /* True if last operation was a delete */Fts3Table::bPrevDelete140819,5118834 - int inTransaction; /* True after xBegin but before xCommit/xRollback */inTransaction140827,5119238 - int inTransaction; /* True after xBegin but before xCommit/xRollback */Fts3Table::inTransaction140827,5119238 - int mxSavepoint; /* Largest valid xSavepoint integer */mxSavepoint140828,5119316 - int mxSavepoint; /* Largest valid xSavepoint integer */Fts3Table::mxSavepoint140828,5119316 - int bNoIncrDoclist;bNoIncrDoclist140834,5119543 - int bNoIncrDoclist;Fts3Table::bNoIncrDoclist140834,5119543 -struct Fts3Cursor {Fts3Cursor140843,5119789 - sqlite3_vtab_cursor base; /* Base class used by SQLite core */base140844,5119809 - sqlite3_vtab_cursor base; /* Base class used by SQLite core */Fts3Cursor::base140844,5119809 - i16 eSearch; /* Search strategy (see below) */eSearch140845,5119880 - i16 eSearch; /* Search strategy (see below) */Fts3Cursor::eSearch140845,5119880 - u8 isEof; /* True if at End Of Results */isEof140846,5119948 - u8 isEof; /* True if at End Of Results */Fts3Cursor::isEof140846,5119948 - u8 isRequireSeek; /* True if must seek pStmt to %_content row */isRequireSeek140847,5120014 - u8 isRequireSeek; /* True if must seek pStmt to %_content row */Fts3Cursor::isRequireSeek140847,5120014 - sqlite3_stmt *pStmt; /* Prepared statement in use by the cursor */pStmt140848,5120095 - sqlite3_stmt *pStmt; /* Prepared statement in use by the cursor */Fts3Cursor::pStmt140848,5120095 - Fts3Expr *pExpr; /* Parsed MATCH query string */pExpr140849,5120175 - Fts3Expr *pExpr; /* Parsed MATCH query string */Fts3Cursor::pExpr140849,5120175 - int iLangid; /* Language being queried for */iLangid140850,5120241 - int iLangid; /* Language being queried for */Fts3Cursor::iLangid140850,5120241 - int nPhrase; /* Number of matchable phrases in query */nPhrase140851,5120308 - int nPhrase; /* Number of matchable phrases in query */Fts3Cursor::nPhrase140851,5120308 - Fts3DeferredToken *pDeferred; /* Deferred search tokens, if any */pDeferred140852,5120385 - Fts3DeferredToken *pDeferred; /* Deferred search tokens, if any */Fts3Cursor::pDeferred140852,5120385 - sqlite3_int64 iPrevId; /* Previous id read from aDoclist */iPrevId140853,5120456 - sqlite3_int64 iPrevId; /* Previous id read from aDoclist */Fts3Cursor::iPrevId140853,5120456 - char *pNextId; /* Pointer into the body of aDoclist */pNextId140854,5120527 - char *pNextId; /* Pointer into the body of aDoclist */Fts3Cursor::pNextId140854,5120527 - char *aDoclist; /* List of docids for full-text queries */aDoclist140855,5120601 - char *aDoclist; /* List of docids for full-text queries */Fts3Cursor::aDoclist140855,5120601 - int nDoclist; /* Size of buffer at aDoclist */nDoclist140856,5120678 - int nDoclist; /* Size of buffer at aDoclist */Fts3Cursor::nDoclist140856,5120678 - u8 bDesc; /* True to sort in descending order */bDesc140857,5120745 - u8 bDesc; /* True to sort in descending order */Fts3Cursor::bDesc140857,5120745 - int eEvalmode; /* An FTS3_EVAL_XX constant */eEvalmode140858,5120818 - int eEvalmode; /* An FTS3_EVAL_XX constant */Fts3Cursor::eEvalmode140858,5120818 - int nRowAvg; /* Average size of database rows, in pages */nRowAvg140859,5120883 - int nRowAvg; /* Average size of database rows, in pages */Fts3Cursor::nRowAvg140859,5120883 - sqlite3_int64 nDoc; /* Documents in table */nDoc140860,5120963 - sqlite3_int64 nDoc; /* Documents in table */Fts3Cursor::nDoc140860,5120963 - i64 iMinDocid; /* Minimum docid to return */iMinDocid140861,5121022 - i64 iMinDocid; /* Minimum docid to return */Fts3Cursor::iMinDocid140861,5121022 - i64 iMaxDocid; /* Maximum docid to return */iMaxDocid140862,5121086 - i64 iMaxDocid; /* Maximum docid to return */Fts3Cursor::iMaxDocid140862,5121086 - int isMatchinfoNeeded; /* True when aMatchinfo[] needs filling in */isMatchinfoNeeded140863,5121150 - int isMatchinfoNeeded; /* True when aMatchinfo[] needs filling in */Fts3Cursor::isMatchinfoNeeded140863,5121150 - MatchinfoBuffer *pMIBuffer; /* Buffer for matchinfo data */pMIBuffer140864,5121230 - MatchinfoBuffer *pMIBuffer; /* Buffer for matchinfo data */Fts3Cursor::pMIBuffer140864,5121230 -#define FTS3_EVAL_FILTER FTS3_EVAL_FILTER140867,5121300 -#define FTS3_EVAL_NEXT FTS3_EVAL_NEXT140868,5121330 -#define FTS3_EVAL_MATCHINFO FTS3_EVAL_MATCHINFO140869,5121360 -#define FTS3_FULLSCAN_SEARCH FTS3_FULLSCAN_SEARCH140886,5122083 -#define FTS3_DOCID_SEARCH FTS3_DOCID_SEARCH140887,5122154 -#define FTS3_FULLTEXT_SEARCH FTS3_FULLTEXT_SEARCH140888,5122229 -#define FTS3_HAVE_LANGID FTS3_HAVE_LANGID140896,5122575 -#define FTS3_HAVE_DOCID_GE FTS3_HAVE_DOCID_GE140897,5122638 -#define FTS3_HAVE_DOCID_LE FTS3_HAVE_DOCID_LE140898,5122697 -struct Fts3Doclist {Fts3Doclist140900,5122757 - char *aAll; /* Array containing doclist (or NULL) */aAll140901,5122778 - char *aAll; /* Array containing doclist (or NULL) */Fts3Doclist::aAll140901,5122778 - int nAll; /* Size of a[] in bytes */nAll140902,5122852 - int nAll; /* Size of a[] in bytes */Fts3Doclist::nAll140902,5122852 - char *pNextDocid; /* Pointer to next docid */pNextDocid140903,5122912 - char *pNextDocid; /* Pointer to next docid */Fts3Doclist::pNextDocid140903,5122912 - sqlite3_int64 iDocid; /* Current docid (if pList!=0) */iDocid140905,5122974 - sqlite3_int64 iDocid; /* Current docid (if pList!=0) */Fts3Doclist::iDocid140905,5122974 - int bFreeList; /* True if pList should be sqlite3_free()d */bFreeList140906,5123041 - int bFreeList; /* True if pList should be sqlite3_free()d */Fts3Doclist::bFreeList140906,5123041 - char *pList; /* Pointer to position list following iDocid */pList140907,5123120 - char *pList; /* Pointer to position list following iDocid */Fts3Doclist::pList140907,5123120 - int nList; /* Length of position list */nList140908,5123201 - int nList; /* Length of position list */Fts3Doclist::nList140908,5123201 -struct Fts3PhraseToken {Fts3PhraseToken140917,5123547 - char *z; /* Text of the token */z140918,5123572 - char *z; /* Text of the token */Fts3PhraseToken::z140918,5123572 - int n; /* Number of bytes in buffer z */n140919,5123630 - int n; /* Number of bytes in buffer z */Fts3PhraseToken::n140919,5123630 - int isPrefix; /* True if token ends with a "*" character */isPrefix140920,5123698 - int isPrefix; /* True if token ends with a "*" character */Fts3PhraseToken::isPrefix140920,5123698 - int bFirst; /* True if token must appear at position 0 */bFirst140921,5123778 - int bFirst; /* True if token must appear at position 0 */Fts3PhraseToken::bFirst140921,5123778 - Fts3DeferredToken *pDeferred; /* Deferred token object for this token */pDeferred140926,5124046 - Fts3DeferredToken *pDeferred; /* Deferred token object for this token */Fts3PhraseToken::pDeferred140926,5124046 - Fts3MultiSegReader *pSegcsr; /* Segment-reader for this token */pSegcsr140927,5124123 - Fts3MultiSegReader *pSegcsr; /* Segment-reader for this token */Fts3PhraseToken::pSegcsr140927,5124123 -struct Fts3Phrase {Fts3Phrase140930,5124197 - Fts3Doclist doclist;doclist140932,5124259 - Fts3Doclist doclist;Fts3Phrase::doclist140932,5124259 - int bIncr; /* True if doclist is loaded incrementally */bIncr140933,5124282 - int bIncr; /* True if doclist is loaded incrementally */Fts3Phrase::bIncr140933,5124282 - int iDoclistToken;iDoclistToken140934,5124357 - int iDoclistToken;Fts3Phrase::iDoclistToken140934,5124357 - char *pOrPoslist;pOrPoslist140938,5124476 - char *pOrPoslist;Fts3Phrase::pOrPoslist140938,5124476 - i64 iOrDocid;iOrDocid140939,5124496 - i64 iOrDocid;Fts3Phrase::iOrDocid140939,5124496 - int nToken; /* Number of tokens in the phrase */nToken140944,5124669 - int nToken; /* Number of tokens in the phrase */Fts3Phrase::nToken140944,5124669 - int iColumn; /* Index of column this phrase must match */iColumn140945,5124735 - int iColumn; /* Index of column this phrase must match */Fts3Phrase::iColumn140945,5124735 - Fts3PhraseToken aToken[1]; /* One entry for each token in the phrase */aToken140946,5124809 - Fts3PhraseToken aToken[1]; /* One entry for each token in the phrase */Fts3Phrase::aToken140946,5124809 -struct Fts3Expr {Fts3Expr140970,5125783 - int eType; /* One of the FTSQUERY_XXX values defined below */eType140971,5125801 - int eType; /* One of the FTSQUERY_XXX values defined below */Fts3Expr::eType140971,5125801 - int nNear; /* Valid if eType==FTSQUERY_NEAR */nNear140972,5125881 - int nNear; /* Valid if eType==FTSQUERY_NEAR */Fts3Expr::nNear140972,5125881 - Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */pParent140973,5125946 - Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */Fts3Expr::pParent140973,5125946 - Fts3Expr *pLeft; /* Left operand */pLeft140974,5126027 - Fts3Expr *pLeft; /* Left operand */Fts3Expr::pLeft140974,5126027 - Fts3Expr *pRight; /* Right operand */pRight140975,5126075 - Fts3Expr *pRight; /* Right operand */Fts3Expr::pRight140975,5126075 - Fts3Phrase *pPhrase; /* Valid if eType==FTSQUERY_PHRASE */pPhrase140976,5126124 - Fts3Phrase *pPhrase; /* Valid if eType==FTSQUERY_PHRASE */Fts3Expr::pPhrase140976,5126124 - sqlite3_int64 iDocid; /* Current docid */iDocid140979,5126250 - sqlite3_int64 iDocid; /* Current docid */Fts3Expr::iDocid140979,5126250 - u8 bEof; /* True this expression is at EOF already */bEof140980,5126299 - u8 bEof; /* True this expression is at EOF already */Fts3Expr::bEof140980,5126299 - u8 bStart; /* True if iDocid is valid */bStart140981,5126373 - u8 bStart; /* True if iDocid is valid */Fts3Expr::bStart140981,5126373 - u8 bDeferred; /* True if this expression is entirely deferred */bDeferred140982,5126432 - u8 bDeferred; /* True if this expression is entirely deferred */Fts3Expr::bDeferred140982,5126432 - int iPhrase; /* Index of this phrase in matchinfo() results */iPhrase140985,5126574 - int iPhrase; /* Index of this phrase in matchinfo() results */Fts3Expr::iPhrase140985,5126574 - u32 *aMI; /* See above */aMI140986,5126653 - u32 *aMI; /* See above */Fts3Expr::aMI140986,5126653 -#define FTSQUERY_NEAR FTSQUERY_NEAR141000,5126983 -#define FTSQUERY_NOT FTSQUERY_NOT141001,5127009 -#define FTSQUERY_AND FTSQUERY_AND141002,5127035 -#define FTSQUERY_OR FTSQUERY_OR141003,5127061 -#define FTSQUERY_PHRASE FTSQUERY_PHRASE141004,5127087 -# define sqlite3Fts3FreeDeferredTokens(sqlite3Fts3FreeDeferredTokens141030,5128460 -# define sqlite3Fts3DeferToken(sqlite3Fts3DeferToken141031,5128502 -# define sqlite3Fts3CacheDeferredDoclists(sqlite3Fts3CacheDeferredDoclists141032,5128550 -# define sqlite3Fts3FreeDeferredDoclists(sqlite3Fts3FreeDeferredDoclists141033,5128605 -# define sqlite3Fts3DeferredTokenList(sqlite3Fts3DeferredTokenList141034,5128649 -#define FTS3_SEGCURSOR_PENDING FTS3_SEGCURSOR_PENDING141041,5128893 -#define FTS3_SEGCURSOR_ALL FTS3_SEGCURSOR_ALL141042,5128934 -#define FTS3_SEGMENT_REQUIRE_POS FTS3_SEGMENT_REQUIRE_POS141052,5129428 -#define FTS3_SEGMENT_IGNORE_EMPTY FTS3_SEGMENT_IGNORE_EMPTY141053,5129474 -#define FTS3_SEGMENT_COLUMN_FILTER FTS3_SEGMENT_COLUMN_FILTER141054,5129520 -#define FTS3_SEGMENT_PREFIX FTS3_SEGMENT_PREFIX141055,5129566 -#define FTS3_SEGMENT_SCAN FTS3_SEGMENT_SCAN141056,5129612 -#define FTS3_SEGMENT_FIRST FTS3_SEGMENT_FIRST141057,5129658 -struct Fts3SegFilter {Fts3SegFilter141060,5129765 - const char *zTerm;zTerm141061,5129788 - const char *zTerm;Fts3SegFilter::zTerm141061,5129788 - int nTerm;nTerm141062,5129809 - int nTerm;Fts3SegFilter::nTerm141062,5129809 - int iCol;iCol141063,5129822 - int iCol;Fts3SegFilter::iCol141063,5129822 - int flags;flags141064,5129834 - int flags;Fts3SegFilter::flags141064,5129834 -struct Fts3MultiSegReader {Fts3MultiSegReader141067,5129851 - Fts3SegReader **apSegment; /* Array of Fts3SegReader objects */apSegment141069,5129938 - Fts3SegReader **apSegment; /* Array of Fts3SegReader objects */Fts3MultiSegReader::apSegment141069,5129938 - int nSegment; /* Size of apSegment array */nSegment141070,5130009 - int nSegment; /* Size of apSegment array */Fts3MultiSegReader::nSegment141070,5130009 - int nAdvance; /* How many seg-readers to advance */nAdvance141071,5130073 - int nAdvance; /* How many seg-readers to advance */Fts3MultiSegReader::nAdvance141071,5130073 - Fts3SegFilter *pFilter; /* Pointer to filter object */pFilter141072,5130145 - Fts3SegFilter *pFilter; /* Pointer to filter object */Fts3MultiSegReader::pFilter141072,5130145 - char *aBuffer; /* Buffer to merge doclists in */aBuffer141073,5130210 - char *aBuffer; /* Buffer to merge doclists in */Fts3MultiSegReader::aBuffer141073,5130210 - int nBuffer; /* Allocated size of aBuffer[] in bytes */nBuffer141074,5130278 - int nBuffer; /* Allocated size of aBuffer[] in bytes */Fts3MultiSegReader::nBuffer141074,5130278 - int iColFilter; /* If >=0, filter for this column */iColFilter141076,5130356 - int iColFilter; /* If >=0, filter for this column */Fts3MultiSegReader::iColFilter141076,5130356 - int bRestart;bRestart141077,5130427 - int bRestart;Fts3MultiSegReader::bRestart141077,5130427 - int nCost; /* Cost of running iterator */nCost141080,5130473 - int nCost; /* Cost of running iterator */Fts3MultiSegReader::nCost141080,5130473 - int bLookup; /* True if a lookup of a single entry. */bLookup141081,5130538 - int bLookup; /* True if a lookup of a single entry. */Fts3MultiSegReader::bLookup141081,5130538 - char *zTerm; /* Pointer to term buffer */zTerm141084,5130695 - char *zTerm; /* Pointer to term buffer */Fts3MultiSegReader::zTerm141084,5130695 - int nTerm; /* Size of zTerm in bytes */nTerm141085,5130758 - int nTerm; /* Size of zTerm in bytes */Fts3MultiSegReader::nTerm141085,5130758 - char *aDoclist; /* Pointer to doclist buffer */aDoclist141086,5130821 - char *aDoclist; /* Pointer to doclist buffer */Fts3MultiSegReader::aDoclist141086,5130821 - int nDoclist; /* Size of aDoclist[] in bytes */nDoclist141087,5130887 - int nDoclist; /* Size of aDoclist[] in bytes */Fts3MultiSegReader::nDoclist141087,5130887 -#define fts3GetVarint32(fts3GetVarint32141092,5131021 -# define SQLITE_CORE SQLITE_CORE141170,5134457 -SQLITE_PRIVATE int sqlite3Fts3Always(int b) { assert( b ); return b; }sqlite3Fts3Always141193,5134998 -SQLITE_PRIVATE int sqlite3Fts3Never(int b) { assert( !b ); return b; }sqlite3Fts3Never141194,5135069 -SQLITE_PRIVATE int sqlite3Fts3PutVarint(char *p, sqlite_int64 v){sqlite3Fts3PutVarint141203,5135353 -#define GETVARINT_STEP(GETVARINT_STEP141215,5135728 -#define GETVARINT_INIT(GETVARINT_INIT141218,5135903 -SQLITE_PRIVATE int sqlite3Fts3GetVarint(const char *p, sqlite_int64 *v){sqlite3Fts3GetVarint141227,5136238 -SQLITE_PRIVATE int sqlite3Fts3GetVarint32(const char *p, int *pi){sqlite3Fts3GetVarint32141252,5136897 -SQLITE_PRIVATE int sqlite3Fts3VarintLen(sqlite3_uint64 v){sqlite3Fts3VarintLen141273,5137422 -SQLITE_PRIVATE void sqlite3Fts3Dequote(char *z){sqlite3Fts3Dequote141296,5137918 -static void fts3GetDeltaVarint(char **pp, sqlite3_int64 *pVal){fts3GetDeltaVarint141325,5138770 -static void fts3GetReverseVarint(fts3GetReverseVarint141340,5139282 -static int fts3DisconnectMethod(sqlite3_vtab *pVtab){fts3DisconnectMethod141362,5139747 -SQLITE_PRIVATE void sqlite3Fts3ErrMsg(char **pzErr, const char *zFormat, ...){sqlite3Fts3ErrMsg141389,5140401 -static void fts3DbExec(fts3DbExec141404,5140824 -static int fts3DestroyMethod(sqlite3_vtab *pVtab){fts3DestroyMethod141427,5141370 -static void fts3DeclareVtab(int *pRc, Fts3Table *p){fts3DeclareVtab141459,5142706 -SQLITE_PRIVATE void sqlite3Fts3CreateStatTable(int *pRc, Fts3Table *p){sqlite3Fts3CreateStatTable141496,5143892 -static int fts3CreateTables(Fts3Table *p){fts3CreateTables141514,5144530 -static void fts3DatabasePageSize(int *pRc, Fts3Table *p){fts3DatabasePageSize141579,5146506 -static int fts3IsSpecialColumn(fts3IsSpecialColumn141613,5147525 -static void fts3Appendf(fts3Appendf141638,5147961 -static char *fts3QuoteId(char const *zInput){fts3QuoteId141671,5148956 -static char *fts3ReadExprList(Fts3Table *p, const char *zFunc, int *pRc){fts3ReadExprList141713,5150414 -static char *fts3WriteExprList(Fts3Table *p, const char *zFunc, int *pRc){fts3WriteExprList141770,5152289 -static int fts3GobbleInt(const char **pp, int *pnOut){fts3GobbleInt141805,5153275 -static int fts3PrefixParameter(fts3PrefixParameter141840,5154564 -static int fts3ContentColumns(fts3ContentColumns141909,5156843 -static int fts3InitVtab(fts3InitVtab141984,5159360 -static int fts3ConnectMethod(fts3ConnectMethod142361,5171992 -static int fts3CreateMethod(fts3CreateMethod142371,5172512 -static void fts3SetEstimatedRows(sqlite3_index_info *pIdxInfo, i64 nRow){fts3SetEstimatedRows142387,5173239 -static void fts3SetUniqueFlag(sqlite3_index_info *pIdxInfo){fts3SetUniqueFlag142400,5173662 -static int fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){fts3BestIndexMethod142416,5174157 -static int fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){fts3OpenMethod142541,5178398 -static int fts3CloseMethod(sqlite3_vtab_cursor *pCursor){fts3CloseMethod142562,5179082 -static int fts3CursorSeekStmt(Fts3Cursor *pCsr, sqlite3_stmt **ppStmt){fts3CursorSeekStmt142586,5179924 -static int fts3CursorSeek(sqlite3_context *pContext, Fts3Cursor *pCsr){fts3CursorSeek142605,5180512 -static int fts3ScanInteriorNode(fts3ScanInteriorNode142650,5182067 -static int fts3SelectLeaf(fts3SelectLeaf142771,5186942 -static void fts3PutDeltaVarint(fts3PutDeltaVarint142819,5188647 -static void fts3PoslistCopy(char **pp, char **ppPoslist){fts3PoslistCopy142843,5189673 -static void fts3ColumnlistCopy(char **pp, char **ppPoslist){fts3ColumnlistCopy142890,5191401 -#define POSITION_LIST_END POSITION_LIST_END142915,5192011 -static void fts3ReadNextPos(fts3ReadNextPos142935,5192939 -static int fts3PutColNumber(char **pp, int iCol){fts3PutColNumber142956,5193586 -static void fts3PoslistMerge(fts3PoslistMerge142974,5194197 -static int fts3PoslistPhraseMerge(fts3PoslistPhraseMerge143064,5197342 -static int fts3PoslistNearMerge(fts3PoslistNearMerge143188,5200918 -typedef struct TermSelect TermSelect;TermSelect143227,5202076 -struct TermSelect {TermSelect143228,5202114 - char *aaOutput[16]; /* Malloc'd output buffers */aaOutput143229,5202134 - char *aaOutput[16]; /* Malloc'd output buffers */TermSelect::aaOutput143229,5202134 - int anOutput[16]; /* Size each output buffer in bytes */anOutput143230,5202198 - int anOutput[16]; /* Size each output buffer in bytes */TermSelect::anOutput143230,5202198 -static void fts3GetDeltaVarint3(fts3GetDeltaVarint3143246,5202898 -static void fts3PutDeltaVarint3(fts3PutDeltaVarint3143280,5203987 -#define DOCID_CMP(DOCID_CMP143310,5205044 -static int fts3DoclistOrMerge(fts3DoclistOrMerge143326,5205752 -static int fts3DoclistPhraseMerge(fts3DoclistPhraseMerge143418,5209401 -SQLITE_PRIVATE int sqlite3Fts3FirstFilter(sqlite3Fts3FirstFilter143489,5211556 -static int fts3TermSelectFinishMerge(Fts3Table *p, TermSelect *pTS){fts3TermSelectFinishMerge143541,5213035 -static int fts3TermSelectMerge(fts3TermSelectMerge143595,5214568 -static int fts3SegReaderCursorAppend(fts3SegReaderCursorAppend143667,5217054 -static int fts3SegReaderCursor(fts3SegReaderCursor143692,5217714 -SQLITE_PRIVATE int sqlite3Fts3SegReaderCursor(sqlite3Fts3SegReaderCursor143766,5220720 -static int fts3SegReaderCursorAddZero(fts3SegReaderCursorAddZero143798,5222036 -static int fts3TermSegReaderCursor(fts3TermSegReaderCursor143823,5223045 -static void fts3SegReaderCursorFree(Fts3MultiSegReader *pSegcsr){fts3SegReaderCursorFree143880,5224819 -static int fts3TermSelect(fts3TermSelect143889,5225059 -static int fts3DoclistCountDocids(char *aList, int nList){fts3DoclistCountDocids143946,5227017 -static int fts3NextMethod(sqlite3_vtab_cursor *pCursor){fts3NextMethod143972,5227955 -# define LARGEST_INT64 LARGEST_INT64143998,5228736 -# define SMALLEST_INT64 SMALLEST_INT64143999,5228807 -static sqlite3_int64 fts3DocidRange(sqlite3_value *pVal, i64 iDefault){fts3DocidRange144007,5229056 -static int fts3FilterMethod(fts3FilterMethod144033,5229890 -static int fts3EofMethod(sqlite3_vtab_cursor *pCursor){fts3EofMethod144150,5233867 -static int fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){fts3RowidMethod144160,5234214 -static int fts3ColumnMethod(fts3ColumnMethod144177,5234773 -static int fts3UpdateMethod(fts3UpdateMethod144227,5236644 -static int fts3SyncMethod(sqlite3_vtab *pVtab){fts3SyncMethod144240,5237116 -static int fts3SetHasStat(Fts3Table *p){fts3SetHasStat144289,5239237 -static int fts3BeginMethod(sqlite3_vtab *pVtab){fts3BeginMethod144313,5239885 -static int fts3CommitMethod(sqlite3_vtab *pVtab){fts3CommitMethod144330,5240391 -static int fts3RollbackMethod(sqlite3_vtab *pVtab){fts3RollbackMethod144345,5240859 -static void fts3ReversePoslist(char *pStart, char **ppPoslist){fts3ReversePoslist144360,5241363 -static int fts3FunctionArg(fts3FunctionArg144403,5243034 -static void fts3SnippetFunc(fts3SnippetFunc144426,5243782 -static void fts3OffsetsFunc(fts3OffsetsFunc144469,5245338 -static void fts3OptimizeFunc(fts3OptimizeFunc144495,5246129 -static void fts3MatchinfoFunc(fts3MatchinfoFunc144529,5247136 -static int fts3FindFunctionMethod(fts3FindFunctionMethod144549,5247798 -static int fts3RenameMethod(fts3RenameMethod144585,5248872 -static int fts3SavepointMethod(sqlite3_vtab *pVtab, int iSavepoint){fts3SavepointMethod144643,5250543 -static int fts3ReleaseMethod(sqlite3_vtab *pVtab, int iSavepoint){fts3ReleaseMethod144660,5250995 -static int fts3RollbackToMethod(sqlite3_vtab *pVtab, int iSavepoint){fts3RollbackToMethod144675,5251399 -static const sqlite3_module fts3Module = {fts3Module144685,5251710 -static void hashDestroy(void *p){hashDestroy144716,5252864 -SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db){sqlite3Fts3Init144747,5254179 -static void fts3EvalAllocateReaders(fts3EvalAllocateReaders144857,5257594 -static int fts3EvalPhraseMergeToken(fts3EvalPhraseMergeToken144899,5259151 -static int fts3EvalPhraseLoad(fts3EvalPhraseLoad144963,5260764 -static int fts3EvalDeferredPhrase(Fts3Cursor *pCsr, Fts3Phrase *pPhrase){fts3EvalDeferredPhrase144999,5261966 -#define MAX_INCR_PHRASE_TOKENS MAX_INCR_PHRASE_TOKENS145097,5264728 -static int fts3EvalPhraseStart(Fts3Cursor *pCsr, int bOptOk, Fts3Phrase *p){fts3EvalPhraseStart145111,5265314 -SQLITE_PRIVATE void sqlite3Fts3DoclistPrev(sqlite3Fts3DoclistPrev145168,5267430 -SQLITE_PRIVATE void sqlite3Fts3DoclistNext(sqlite3Fts3DoclistNext145224,5268989 -static void fts3EvalDlPhraseNext(fts3EvalDlPhraseNext145261,5270069 -typedef struct TokenDoclist TokenDoclist;TokenDoclist145307,5271446 -struct TokenDoclist {TokenDoclist145308,5271488 - int bIgnore;bIgnore145309,5271510 - int bIgnore;TokenDoclist::bIgnore145309,5271510 - sqlite3_int64 iDocid;iDocid145310,5271525 - sqlite3_int64 iDocid;TokenDoclist::iDocid145310,5271525 - char *pList;pList145311,5271549 - char *pList;TokenDoclist::pList145311,5271549 - int nList;nList145312,5271564 - int nList;TokenDoclist::nList145312,5271564 -static int incrPhraseTokenNext(incrPhraseTokenNext145324,5271953 -static int fts3EvalIncrPhraseNext(fts3EvalIncrPhraseNext145376,5273666 -static int fts3EvalPhraseNext(fts3EvalPhraseNext145476,5277007 -static void fts3EvalStartReaders(fts3EvalStartReaders145515,5278468 -typedef struct Fts3TokenAndCost Fts3TokenAndCost;Fts3TokenAndCost145551,5279863 -struct Fts3TokenAndCost {Fts3TokenAndCost145552,5279913 - Fts3Phrase *pPhrase; /* The phrase the token belongs to */pPhrase145553,5279939 - Fts3Phrase *pPhrase; /* The phrase the token belongs to */Fts3TokenAndCost::pPhrase145553,5279939 - int iToken; /* Position of token in phrase */iToken145554,5280011 - int iToken; /* Position of token in phrase */Fts3TokenAndCost::iToken145554,5280011 - Fts3PhraseToken *pToken; /* The token itself */pToken145555,5280079 - Fts3PhraseToken *pToken; /* The token itself */Fts3TokenAndCost::pToken145555,5280079 - Fts3Expr *pRoot; /* Root of NEAR/AND cluster */pRoot145556,5280136 - Fts3Expr *pRoot; /* Root of NEAR/AND cluster */Fts3TokenAndCost::pRoot145556,5280136 - int nOvfl; /* Number of overflow pages to load doclist */nOvfl145557,5280201 - int nOvfl; /* Number of overflow pages to load doclist */Fts3TokenAndCost::nOvfl145557,5280201 - int iCol; /* The column the token must match */iCol145558,5280282 - int iCol; /* The column the token must match */Fts3TokenAndCost::iCol145558,5280282 -static void fts3EvalTokenCosts(fts3EvalTokenCosts145568,5280605 -static int fts3EvalAverageDocsize(Fts3Cursor *pCsr, int *pnPage){fts3EvalAverageDocsize145622,5282665 -static int fts3EvalSelectDeferred(fts3EvalSelectDeferred145683,5284738 -static int fts3EvalStart(Fts3Cursor *pCsr){fts3EvalStart145816,5290133 -static void fts3EvalInvalidatePoslist(Fts3Phrase *pPhrase){fts3EvalInvalidatePoslist145866,5291459 -static int fts3EvalNearTrim(fts3EvalNearTrim145897,5292693 -static void fts3EvalNextRow(fts3EvalNextRow145971,5295908 -static int fts3EvalNearTest(Fts3Expr *pExpr, int *pRc){fts3EvalNearTest146112,5301060 -static int fts3EvalTestExpr(fts3EvalTestExpr146198,5303930 -SQLITE_PRIVATE int sqlite3Fts3EvalTestDeferred(Fts3Cursor *pCsr, int *pRc){sqlite3Fts3EvalTestDeferred146309,5307696 -static int fts3EvalNext(Fts3Cursor *pCsr){fts3EvalNext146339,5308666 -static void fts3EvalRestart(fts3EvalRestart146380,5309978 -static void fts3EvalUpdateCounts(Fts3Expr *pExpr){fts3EvalUpdateCounts146423,5311222 -static int fts3EvalGatherStats(fts3EvalGatherStats146466,5312543 -SQLITE_PRIVATE int sqlite3Fts3EvalPhraseStats(sqlite3Fts3EvalPhraseStats146577,5316333 -SQLITE_PRIVATE int sqlite3Fts3EvalPhrasePoslist(sqlite3Fts3EvalPhrasePoslist146625,5318001 -SQLITE_PRIVATE void sqlite3Fts3EvalPhraseCleanup(Fts3Phrase *pPhrase){sqlite3Fts3EvalPhraseCleanup146759,5322384 -SQLITE_PRIVATE int sqlite3Fts3Corrupt(){sqlite3Fts3Corrupt146777,5322825 -__declspec(dllexport)__declspec146787,5322989 -typedef struct Fts3auxTable Fts3auxTable;Fts3auxTable146822,5323897 -typedef struct Fts3auxCursor Fts3auxCursor;Fts3auxCursor146823,5323939 -struct Fts3auxTable {Fts3auxTable146825,5323984 - sqlite3_vtab base; /* Base class used by SQLite core */base146826,5324006 - sqlite3_vtab base; /* Base class used by SQLite core */Fts3auxTable::base146826,5324006 - Fts3Table *pFts3Tab;pFts3Tab146827,5324077 - Fts3Table *pFts3Tab;Fts3auxTable::pFts3Tab146827,5324077 -struct Fts3auxCursor {Fts3auxCursor146830,5324104 - sqlite3_vtab_cursor base; /* Base class used by SQLite core */base146831,5324127 - sqlite3_vtab_cursor base; /* Base class used by SQLite core */Fts3auxCursor::base146831,5324127 - Fts3MultiSegReader csr; /* Must be right after "base" */csr146832,5324198 - Fts3MultiSegReader csr; /* Must be right after "base" */Fts3auxCursor::csr146832,5324198 - Fts3SegFilter filter;filter146833,5324264 - Fts3SegFilter filter;Fts3auxCursor::filter146833,5324264 - char *zStop;zStop146834,5324288 - char *zStop;Fts3auxCursor::zStop146834,5324288 - int nStop; /* Byte-length of string zStop */nStop146835,5324303 - int nStop; /* Byte-length of string zStop */Fts3auxCursor::nStop146835,5324303 - int iLangid; /* Language id to query */iLangid146836,5324371 - int iLangid; /* Language id to query */Fts3auxCursor::iLangid146836,5324371 - int isEof; /* True if cursor is at EOF */isEof146837,5324432 - int isEof; /* True if cursor is at EOF */Fts3auxCursor::isEof146837,5324432 - sqlite3_int64 iRowid; /* Current rowid */iRowid146838,5324497 - sqlite3_int64 iRowid; /* Current rowid */Fts3auxCursor::iRowid146838,5324497 - int iCol; /* Current value of 'col' column */iCol146840,5324552 - int iCol; /* Current value of 'col' column */Fts3auxCursor::iCol146840,5324552 - int nStat; /* Size of aStat[] array */nStat146841,5324622 - int nStat; /* Size of aStat[] array */Fts3auxCursor::nStat146841,5324622 - struct Fts3auxColstats {Fts3auxColstats146842,5324684 - struct Fts3auxColstats {Fts3auxCursor::Fts3auxColstats146842,5324684 - sqlite3_int64 nDoc; /* 'documents' values for current csr row */nDoc146843,5324711 - sqlite3_int64 nDoc; /* 'documents' values for current csr row */Fts3auxCursor::Fts3auxColstats::nDoc146843,5324711 - sqlite3_int64 nOcc; /* 'occurrences' values for current csr row */nOcc146844,5324790 - sqlite3_int64 nOcc; /* 'occurrences' values for current csr row */Fts3auxCursor::Fts3auxColstats::nOcc146844,5324790 - } *aStat;aStat146845,5324871 - } *aStat;Fts3auxCursor::aStat146845,5324871 -#define FTS3_AUX_SCHEMA FTS3_AUX_SCHEMA146851,5324923 -static int fts3auxConnectMethod(fts3auxConnectMethod146859,5325224 -static int fts3auxDisconnectMethod(sqlite3_vtab *pVtab){fts3auxDisconnectMethod146930,5327653 -#define FTS4AUX_EQ_CONSTRAINT FTS4AUX_EQ_CONSTRAINT146944,5328007 -#define FTS4AUX_GE_CONSTRAINT FTS4AUX_GE_CONSTRAINT146945,5328039 -#define FTS4AUX_LE_CONSTRAINT FTS4AUX_LE_CONSTRAINT146946,5328071 -static int fts3auxBestIndexMethod(fts3auxBestIndexMethod146951,5328163 -static int fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){fts3auxOpenMethod147021,5330036 -static int fts3auxCloseMethod(sqlite3_vtab_cursor *pCursor){fts3auxCloseMethod147037,5330460 -static int fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize){fts3auxGrowStatArray147050,5330861 -static int fts3auxNextMethod(sqlite3_vtab_cursor *pCursor){fts3auxNextMethod147069,5331389 -static int fts3auxFilterMethod(fts3auxFilterMethod147163,5334134 -static int fts3auxEofMethod(sqlite3_vtab_cursor *pCursor){fts3auxEofMethod147258,5337361 -static int fts3auxColumnMethod(fts3auxColumnMethod147266,5337537 -static int fts3auxRowidMethod(fts3auxRowidMethod147307,5338586 -SQLITE_PRIVATE int sqlite3Fts3InitAux(sqlite3 *db){sqlite3Fts3InitAux147320,5338997 -SQLITE_API int sqlite3_fts3_enable_parentheses = 0;sqlite3_fts3_enable_parentheses147422,5343108 -# define sqlite3_fts3_enable_parentheses sqlite3_fts3_enable_parentheses147425,5343206 -# define sqlite3_fts3_enable_parentheses sqlite3_fts3_enable_parentheses147427,5343257 -#define SQLITE_FTS3_DEFAULT_NEAR_PARAM SQLITE_FTS3_DEFAULT_NEAR_PARAM147434,5343359 -typedef struct ParseContext ParseContext;ParseContext147447,5343778 -struct ParseContext {ParseContext147448,5343820 - sqlite3_tokenizer *pTokenizer; /* Tokenizer module */pTokenizer147449,5343842 - sqlite3_tokenizer *pTokenizer; /* Tokenizer module */ParseContext::pTokenizer147449,5343842 - int iLangid; /* Language id used with tokenizer */iLangid147450,5343903 - int iLangid; /* Language id used with tokenizer */ParseContext::iLangid147450,5343903 - const char **azCol; /* Array of column names for fts3 table */azCol147451,5343979 - const char **azCol; /* Array of column names for fts3 table */ParseContext::azCol147451,5343979 - int bFts4; /* True to allow FTS4-only syntax */bFts4147452,5344060 - int bFts4; /* True to allow FTS4-only syntax */ParseContext::bFts4147452,5344060 - int nCol; /* Number of entries in azCol[] */nCol147453,5344135 - int nCol; /* Number of entries in azCol[] */ParseContext::nCol147453,5344135 - int iDefaultCol; /* Default column to query */iDefaultCol147454,5344208 - int iDefaultCol; /* Default column to query */ParseContext::iDefaultCol147454,5344208 - int isNot; /* True if getNextNode() sees a unary - */isNot147455,5344276 - int isNot; /* True if getNextNode() sees a unary - */ParseContext::isNot147455,5344276 - sqlite3_context *pCtx; /* Write error message here */pCtx147456,5344357 - sqlite3_context *pCtx; /* Write error message here */ParseContext::pCtx147456,5344357 - int nNest; /* Number of nested brackets */nNest147457,5344426 - int nNest; /* Number of nested brackets */ParseContext::nNest147457,5344426 -static int fts3isspace(char c){fts3isspace147471,5345046 -static void *fts3MallocZero(int nByte){fts3MallocZero147480,5345319 -SQLITE_PRIVATE int sqlite3Fts3OpenTokenizer(sqlite3Fts3OpenTokenizer147486,5345452 -static int getNextToken(getNextToken147531,5346896 -static void *fts3ReallocOrFree(void *pOrig, int nNew){fts3ReallocOrFree147610,5349345 -static int getNextString(getNextString147630,5350080 -static int getNextNode(getNextNode147748,5353864 -static int opPrecedence(Fts3Expr *p){opPrecedence147914,5359363 -static void insertBinaryOperator(insertBinaryOperator147935,5360117 -static int fts3ExprParse(fts3ExprParse147966,5361245 -static int fts3ExprCheckDepth(Fts3Expr *p, int nMaxDepth){fts3ExprCheckDepth148115,5365658 -static int fts3ExprBalance(Fts3Expr **pp, int nMaxDepth){fts3ExprBalance148141,5366408 -static int fts3ExprParseUnbalanced(fts3ExprParseUnbalanced148315,5371592 -SQLITE_PRIVATE int sqlite3Fts3ExprParse(sqlite3Fts3ExprParse148378,5374130 -static void fts3FreeExprNode(Fts3Expr *p){fts3FreeExprNode148422,5375698 -SQLITE_PRIVATE void sqlite3Fts3ExprFree(Fts3Expr *pDel){sqlite3Fts3ExprFree148436,5376150 -static int queryTestTokenizer(queryTestTokenizer148469,5377131 -static char *exprToString(Fts3Expr *pExpr, char *zBuf){exprToString148504,5378165 -static void fts3ExprTest(fts3ExprTest148561,5379937 -SQLITE_PRIVATE int sqlite3Fts3ExprInitTestInterface(sqlite3* db){sqlite3Fts3ExprInitTestInterface148651,5382269 -static void *fts3HashMalloc(int n){fts3HashMalloc148705,5383932 -static void fts3HashFree(void *p){fts3HashFree148712,5384049 -SQLITE_PRIVATE void sqlite3Fts3HashInit(Fts3Hash *pNew, char keyClass, char copyKey){sqlite3Fts3HashInit148726,5384574 -SQLITE_PRIVATE void sqlite3Fts3HashClear(Fts3Hash *pH){sqlite3Fts3HashClear148741,5385041 -static int fts3StrHash(const void *pKey, int nKey){fts3StrHash148764,5385566 -static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){fts3StrCompare148774,5385813 -static int fts3BinHash(const void *pKey, int nKey){fts3BinHash148782,5386055 -static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){fts3BinCompare148790,5386241 -static int (*ftsHashFunction(int keyClass))(const void*,int){ftsHashFunction148807,5386956 -static int (*ftsCompareFunction(int keyClass))(const void*,int,const void*,int){ftsCompareFunction148822,5387371 -static void fts3HashInsertElement(fts3HashInsertElement148833,5387644 -static int fts3Rehash(Fts3Hash *pH, int new_size){fts3Rehash148863,5388553 -static Fts3HashElem *fts3FindElementByHash(fts3FindElementByHash148887,5389475 -static void fts3RemoveElementByHash(fts3RemoveElementByHash148915,5390363 -SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem(sqlite3Fts3HashFindElem148949,5391141 -SQLITE_PRIVATE void *sqlite3Fts3HashFind(const Fts3Hash *pH, const void *pKey, int nKey){sqlite3Fts3HashFind148970,5391789 -SQLITE_PRIVATE void *sqlite3Fts3HashInsert(sqlite3Fts3HashInsert148992,5392694 -typedef struct porter_tokenizer {porter_tokenizer149091,5395713 - sqlite3_tokenizer base; /* Base class */base149092,5395747 - sqlite3_tokenizer base; /* Base class */porter_tokenizer::base149092,5395747 -} porter_tokenizer;porter_tokenizer149093,5395795 -typedef struct porter_tokenizer_cursor {porter_tokenizer_cursor149098,5395869 - sqlite3_tokenizer_cursor base;base149099,5395910 - sqlite3_tokenizer_cursor base;porter_tokenizer_cursor::base149099,5395910 - const char *zInput; /* input we are tokenizing */zInput149100,5395943 - const char *zInput; /* input we are tokenizing */porter_tokenizer_cursor::zInput149100,5395943 - int nInput; /* size of the input */nInput149101,5396004 - int nInput; /* size of the input */porter_tokenizer_cursor::nInput149101,5396004 - int iOffset; /* current position in zInput */iOffset149102,5396059 - int iOffset; /* current position in zInput */porter_tokenizer_cursor::iOffset149102,5396059 - int iToken; /* index of next token to be returned */iToken149103,5396123 - int iToken; /* index of next token to be returned */porter_tokenizer_cursor::iToken149103,5396123 - char *zToken; /* storage for current token */zToken149104,5396195 - char *zToken; /* storage for current token */porter_tokenizer_cursor::zToken149104,5396195 - int nAllocated; /* space allocated to zToken buffer */nAllocated149105,5396258 - int nAllocated; /* space allocated to zToken buffer */porter_tokenizer_cursor::nAllocated149105,5396258 -} porter_tokenizer_cursor;porter_tokenizer_cursor149106,5396328 -static int porterCreate(porterCreate149112,5396399 -static int porterDestroy(sqlite3_tokenizer *pTokenizer){porterDestroy149131,5396775 -static int porterOpen(porterOpen149142,5397088 -static int porterClose(sqlite3_tokenizer_cursor *pCursor){porterClose149175,5397955 -static const char cType[] = {cType149184,5398178 -static int isConsonant(const char *z){isConsonant149203,5398803 -static int isVowel(const char *z){isVowel149212,5398999 -static int m_gt_0(const char *z){m_gt_0149241,5399911 -static int m_eq_1(const char *z){m_eq_1149251,5400135 -static int m_gt_1(const char *z){m_gt_1149265,5400469 -static int hasVowel(const char *z){hasVowel149279,5400789 -static int doubleConsonant(const char *z){doubleConsonant149290,5401036 -static int star_oh(const char *z){star_oh149302,5401400 -static int stem(stem149322,5401955 -static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){copy_stemmer149347,5402835 -static void porter_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){porter_stemmer149394,5404331 -static const char porterIdChar[] = {porterIdChar149633,5409643 -#define isDelim(isDelim149641,5410047 -static int porterNext(porterNext149647,5410255 -static const sqlite3_tokenizer_module porterTokenizerModule = {porterTokenizerModule149695,5411787 -SQLITE_PRIVATE void sqlite3Fts3PorterTokenizerModule(sqlite3Fts3PorterTokenizerModule149709,5412037 -static int fts3TokenizerEnabled(sqlite3_context *context){fts3TokenizerEnabled149755,5413532 -static void fts3TokenizerFunc(fts3TokenizerFunc149782,5414663 -SQLITE_PRIVATE int sqlite3Fts3IsIdChar(char c){sqlite3Fts3IsIdChar149830,5415924 -SQLITE_PRIVATE const char *sqlite3Fts3NextToken(const char *zStr, int *pn){sqlite3Fts3NextToken149844,5416574 -SQLITE_PRIVATE int sqlite3Fts3InitTokenizer(sqlite3Fts3InitTokenizer149881,5417334 -static void testFunc(testFunc149973,5420102 -int registerTokenizer(registerTokenizer150065,5422284 -int queryTokenizer(queryTokenizer150088,5422747 -static void intTestFunc(intTestFunc150133,5424096 -SQLITE_PRIVATE int sqlite3Fts3InitHashTable(sqlite3Fts3InitHashTable150187,5425861 -typedef struct simple_tokenizer {simple_tokenizer150268,5428013 - sqlite3_tokenizer base;base150269,5428047 - sqlite3_tokenizer base;simple_tokenizer::base150269,5428047 - char delim[128]; /* flag ASCII delimiters */delim150270,5428073 - char delim[128]; /* flag ASCII delimiters */simple_tokenizer::delim150270,5428073 -} simple_tokenizer;simple_tokenizer150271,5428132 -typedef struct simple_tokenizer_cursor {simple_tokenizer_cursor150273,5428153 - sqlite3_tokenizer_cursor base;base150274,5428194 - sqlite3_tokenizer_cursor base;simple_tokenizer_cursor::base150274,5428194 - const char *pInput; /* input we are tokenizing */pInput150275,5428227 - const char *pInput; /* input we are tokenizing */simple_tokenizer_cursor::pInput150275,5428227 - int nBytes; /* size of the input */nBytes150276,5428288 - int nBytes; /* size of the input */simple_tokenizer_cursor::nBytes150276,5428288 - int iOffset; /* current position in pInput */iOffset150277,5428343 - int iOffset; /* current position in pInput */simple_tokenizer_cursor::iOffset150277,5428343 - int iToken; /* index of next token to be returned */iToken150278,5428407 - int iToken; /* index of next token to be returned */simple_tokenizer_cursor::iToken150278,5428407 - char *pToken; /* storage for current token */pToken150279,5428479 - char *pToken; /* storage for current token */simple_tokenizer_cursor::pToken150279,5428479 - int nTokenAllocated; /* space allocated to zToken buffer */nTokenAllocated150280,5428542 - int nTokenAllocated; /* space allocated to zToken buffer */simple_tokenizer_cursor::nTokenAllocated150280,5428542 -} simple_tokenizer_cursor;simple_tokenizer_cursor150281,5428612 -static int simpleDelim(simple_tokenizer *t, unsigned char c){simpleDelim150284,5428641 -static int fts3_isalnum(int x){fts3_isalnum150287,5428737 -static int simpleCreate(simpleCreate150294,5428887 -static int simpleDestroy(sqlite3_tokenizer *pTokenizer){simpleDestroy150335,5429928 -static int simpleOpen(simpleOpen150346,5430241 -static int simpleClose(sqlite3_tokenizer_cursor *pCursor){simpleClose150379,5431113 -static int simpleNext(simpleNext150390,5431439 -static const sqlite3_tokenizer_module simpleTokenizerModule = {simpleTokenizerModule150447,5433288 -SQLITE_PRIVATE void sqlite3Fts3SimpleTokenizerModule(sqlite3Fts3SimpleTokenizerModule150461,5433539 -typedef struct Fts3tokTable Fts3tokTable;Fts3tokTable150517,5435423 -typedef struct Fts3tokCursor Fts3tokCursor;Fts3tokCursor150518,5435465 -struct Fts3tokTable {Fts3tokTable150523,5435544 - sqlite3_vtab base; /* Base class used by SQLite core */base150524,5435566 - sqlite3_vtab base; /* Base class used by SQLite core */Fts3tokTable::base150524,5435566 - const sqlite3_tokenizer_module *pMod;pMod150525,5435637 - const sqlite3_tokenizer_module *pMod;Fts3tokTable::pMod150525,5435637 - sqlite3_tokenizer *pTok;pTok150526,5435677 - sqlite3_tokenizer *pTok;Fts3tokTable::pTok150526,5435677 -struct Fts3tokCursor {Fts3tokCursor150532,5435749 - sqlite3_vtab_cursor base; /* Base class used by SQLite core */base150533,5435772 - sqlite3_vtab_cursor base; /* Base class used by SQLite core */Fts3tokCursor::base150533,5435772 - char *zInput; /* Input string */zInput150534,5435843 - char *zInput; /* Input string */Fts3tokCursor::zInput150534,5435843 - sqlite3_tokenizer_cursor *pCsr; /* Cursor to iterate through zInput */pCsr150535,5435896 - sqlite3_tokenizer_cursor *pCsr; /* Cursor to iterate through zInput */Fts3tokCursor::pCsr150535,5435896 - int iRowid; /* Current 'rowid' value */iRowid150536,5435969 - int iRowid; /* Current 'rowid' value */Fts3tokCursor::iRowid150536,5435969 - const char *zToken; /* Current 'token' value */zToken150537,5436031 - const char *zToken; /* Current 'token' value */Fts3tokCursor::zToken150537,5436031 - int nToken; /* Size of zToken in bytes */nToken150538,5436093 - int nToken; /* Size of zToken in bytes */Fts3tokCursor::nToken150538,5436093 - int iStart; /* Current 'start' value */iStart150539,5436157 - int iStart; /* Current 'start' value */Fts3tokCursor::iStart150539,5436157 - int iEnd; /* Current 'end' value */iEnd150540,5436219 - int iEnd; /* Current 'end' value */Fts3tokCursor::iEnd150540,5436219 - int iPos; /* Current 'pos' value */iPos150541,5436279 - int iPos; /* Current 'pos' value */Fts3tokCursor::iPos150541,5436279 -static int fts3tokQueryTokenizer(fts3tokQueryTokenizer150547,5436408 -static int fts3tokDequoteArray(fts3tokDequoteArray150578,5437415 -#define FTS3_TOK_SCHEMA FTS3_TOK_SCHEMA150616,5438307 -static int fts3tokConnectMethod(fts3tokConnectMethod150628,5438715 -static int fts3tokDisconnectMethod(sqlite3_vtab *pVtab){fts3tokDisconnectMethod150692,5440505 -static int fts3tokBestIndexMethod(fts3tokBestIndexMethod150703,5440749 -static int fts3tokOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){fts3tokOpenMethod150732,5441368 -static void fts3tokResetCursor(Fts3tokCursor *pCsr){fts3tokResetCursor150750,5441840 -static int fts3tokCloseMethod(sqlite3_vtab_cursor *pCursor){fts3tokCloseMethod150769,5442237 -static int fts3tokNextMethod(sqlite3_vtab_cursor *pCursor){fts3tokNextMethod150780,5442483 -static int fts3tokFilterMethod(fts3tokFilterMethod150802,5443036 -static int fts3tokEofMethod(sqlite3_vtab_cursor *pCursor){fts3tokEofMethod150839,5444228 -static int fts3tokColumnMethod(fts3tokColumnMethod150847,5444410 -static int fts3tokRowidMethod(fts3tokRowidMethod150879,5445316 -SQLITE_PRIVATE int sqlite3Fts3InitTok(sqlite3 *db, Fts3Hash *pHash){sqlite3Fts3InitTok150892,5445742 -#define FTS_MAX_APPENDABLE_HEIGHT FTS_MAX_APPENDABLE_HEIGHT150955,5448335 -#define FTS3_NODE_PADDING FTS3_NODE_PADDING150967,5448844 -int test_fts3_node_chunksize = (4*1024);test_fts3_node_chunksize150987,5449793 -int test_fts3_node_chunk_threshold = (4*1024)*4;test_fts3_node_chunk_threshold150988,5449834 -# define FTS3_NODE_CHUNKSIZE FTS3_NODE_CHUNKSIZE150989,5449883 -# define FTS3_NODE_CHUNK_THRESHOLD FTS3_NODE_CHUNK_THRESHOLD150990,5449943 -# define FTS3_NODE_CHUNKSIZE FTS3_NODE_CHUNKSIZE150992,5450015 -# define FTS3_NODE_CHUNK_THRESHOLD FTS3_NODE_CHUNK_THRESHOLD150993,5450054 -#define FTS_STAT_DOCTOTAL FTS_STAT_DOCTOTAL151000,5450251 -#define FTS_STAT_INCRMERGEHINT FTS_STAT_INCRMERGEHINT151001,5450284 -#define FTS_STAT_AUTOINCRMERGE FTS_STAT_AUTOINCRMERGE151002,5450317 -static void fts3LogMerge(int nMerge, sqlite3_int64 iAbsLevel){fts3LogMerge151011,5450612 -#define fts3LogMerge(fts3LogMerge151015,5450763 -typedef struct PendingList PendingList;PendingList151019,5450799 -typedef struct SegmentNode SegmentNode;SegmentNode151020,5450839 -typedef struct SegmentWriter SegmentWriter;SegmentWriter151021,5450879 -struct PendingList {PendingList151027,5451071 - int nData;nData151028,5451092 - int nData;PendingList::nData151028,5451092 - char *aData;aData151029,5451105 - char *aData;PendingList::aData151029,5451105 - int nSpace;nSpace151030,5451120 - int nSpace;PendingList::nSpace151030,5451120 - sqlite3_int64 iLastDocid;iLastDocid151031,5451134 - sqlite3_int64 iLastDocid;PendingList::iLastDocid151031,5451134 - sqlite3_int64 iLastCol;iLastCol151032,5451162 - sqlite3_int64 iLastCol;PendingList::iLastCol151032,5451162 - sqlite3_int64 iLastPos;iLastPos151033,5451188 - sqlite3_int64 iLastPos;PendingList::iLastPos151033,5451188 -struct Fts3DeferredToken {Fts3DeferredToken151040,5451301 - Fts3PhraseToken *pToken; /* Pointer to corresponding expr token */pToken151041,5451328 - Fts3PhraseToken *pToken; /* Pointer to corresponding expr token */Fts3DeferredToken::pToken151041,5451328 - int iCol; /* Column token must occur in */iCol151042,5451404 - int iCol; /* Column token must occur in */Fts3DeferredToken::iCol151042,5451404 - Fts3DeferredToken *pNext; /* Next in list of deferred tokens */pNext151043,5451471 - Fts3DeferredToken *pNext; /* Next in list of deferred tokens */Fts3DeferredToken::pNext151043,5451471 - PendingList *pList; /* Doclist is assembled here */pList151044,5451543 - PendingList *pList; /* Doclist is assembled here */Fts3DeferredToken::pList151044,5451543 -struct Fts3SegReader {Fts3SegReader151064,5452227 - int iIdx; /* Index within level, or 0x7FFFFFFF for PT */iIdx151065,5452250 - int iIdx; /* Index within level, or 0x7FFFFFFF for PT */Fts3SegReader::iIdx151065,5452250 - u8 bLookup; /* True for a lookup only */bLookup151066,5452331 - u8 bLookup; /* True for a lookup only */Fts3SegReader::bLookup151066,5452331 - u8 rootOnly; /* True for a root-only reader */rootOnly151067,5452394 - u8 rootOnly; /* True for a root-only reader */Fts3SegReader::rootOnly151067,5452394 - sqlite3_int64 iStartBlock; /* Rowid of first leaf block to traverse */iStartBlock151069,5452463 - sqlite3_int64 iStartBlock; /* Rowid of first leaf block to traverse */Fts3SegReader::iStartBlock151069,5452463 - sqlite3_int64 iLeafEndBlock; /* Rowid of final leaf block to traverse */iLeafEndBlock151070,5452541 - sqlite3_int64 iLeafEndBlock; /* Rowid of final leaf block to traverse */Fts3SegReader::iLeafEndBlock151070,5452541 - sqlite3_int64 iEndBlock; /* Rowid of final block in segment (or 0) */iEndBlock151071,5452619 - sqlite3_int64 iEndBlock; /* Rowid of final block in segment (or 0) */Fts3SegReader::iEndBlock151071,5452619 - sqlite3_int64 iCurrentBlock; /* Current leaf block (or 0) */iCurrentBlock151072,5452698 - sqlite3_int64 iCurrentBlock; /* Current leaf block (or 0) */Fts3SegReader::iCurrentBlock151072,5452698 - char *aNode; /* Pointer to node data (or NULL) */aNode151074,5452765 - char *aNode; /* Pointer to node data (or NULL) */Fts3SegReader::aNode151074,5452765 - int nNode; /* Size of buffer at aNode (or 0) */nNode151075,5452836 - int nNode; /* Size of buffer at aNode (or 0) */Fts3SegReader::nNode151075,5452836 - int nPopulate; /* If >0, bytes of buffer aNode[] loaded */nPopulate151076,5452907 - int nPopulate; /* If >0, bytes of buffer aNode[] loaded */Fts3SegReader::nPopulate151076,5452907 - sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */pBlob151077,5452985 - sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */Fts3SegReader::pBlob151077,5452985 - Fts3HashElem **ppNextElem;ppNextElem151079,5453064 - Fts3HashElem **ppNextElem;Fts3SegReader::ppNextElem151079,5453064 - int nTerm; /* Number of bytes in current term */nTerm151086,5453340 - int nTerm; /* Number of bytes in current term */Fts3SegReader::nTerm151086,5453340 - char *zTerm; /* Pointer to current term */zTerm151087,5453412 - char *zTerm; /* Pointer to current term */Fts3SegReader::zTerm151087,5453412 - int nTermAlloc; /* Allocated size of zTerm buffer */nTermAlloc151088,5453476 - int nTermAlloc; /* Allocated size of zTerm buffer */Fts3SegReader::nTermAlloc151088,5453476 - char *aDoclist; /* Pointer to doclist of current entry */aDoclist151089,5453547 - char *aDoclist; /* Pointer to doclist of current entry */Fts3SegReader::aDoclist151089,5453547 - int nDoclist; /* Size of doclist in current entry */nDoclist151090,5453623 - int nDoclist; /* Size of doclist in current entry */Fts3SegReader::nDoclist151090,5453623 - char *pOffsetList;pOffsetList151095,5453834 - char *pOffsetList;Fts3SegReader::pOffsetList151095,5453834 - int nOffsetList; /* For descending pending seg-readers only */nOffsetList151096,5453855 - int nOffsetList; /* For descending pending seg-readers only */Fts3SegReader::nOffsetList151096,5453855 - sqlite3_int64 iDocid;iDocid151097,5453935 - sqlite3_int64 iDocid;Fts3SegReader::iDocid151097,5453935 -#define fts3SegReaderIsPending(fts3SegReaderIsPending151100,5453963 -#define fts3SegReaderIsRootOnly(fts3SegReaderIsRootOnly151101,5454018 -struct SegmentWriter {SegmentWriter151112,5454328 - SegmentNode *pTree; /* Pointer to interior tree structure */pTree151113,5454351 - SegmentNode *pTree; /* Pointer to interior tree structure */SegmentWriter::pTree151113,5454351 - sqlite3_int64 iFirst; /* First slot in %_segments written */iFirst151114,5454426 - sqlite3_int64 iFirst; /* First slot in %_segments written */SegmentWriter::iFirst151114,5454426 - sqlite3_int64 iFree; /* Next free slot in %_segments */iFree151115,5454499 - sqlite3_int64 iFree; /* Next free slot in %_segments */SegmentWriter::iFree151115,5454499 - char *zTerm; /* Pointer to previous term buffer */zTerm151116,5454568 - char *zTerm; /* Pointer to previous term buffer */SegmentWriter::zTerm151116,5454568 - int nTerm; /* Number of bytes in zTerm */nTerm151117,5454640 - int nTerm; /* Number of bytes in zTerm */SegmentWriter::nTerm151117,5454640 - int nMalloc; /* Size of malloc'd buffer at zMalloc */nMalloc151118,5454705 - int nMalloc; /* Size of malloc'd buffer at zMalloc */SegmentWriter::nMalloc151118,5454705 - char *zMalloc; /* Malloc'd space (possibly) used for zTerm */zMalloc151119,5454780 - char *zMalloc; /* Malloc'd space (possibly) used for zTerm */SegmentWriter::zMalloc151119,5454780 - int nSize; /* Size of allocation at aData */nSize151120,5454861 - int nSize; /* Size of allocation at aData */SegmentWriter::nSize151120,5454861 - int nData; /* Bytes of data in aData */nData151121,5454929 - int nData; /* Bytes of data in aData */SegmentWriter::nData151121,5454929 - char *aData; /* Pointer to block from malloc() */aData151122,5454992 - char *aData; /* Pointer to block from malloc() */SegmentWriter::aData151122,5454992 - i64 nLeafData; /* Number of bytes of leaf data written */nLeafData151123,5455063 - i64 nLeafData; /* Number of bytes of leaf data written */SegmentWriter::nLeafData151123,5455063 -struct SegmentNode {SegmentNode151144,5455976 - SegmentNode *pParent; /* Parent node (or NULL for root node) */pParent151145,5455997 - SegmentNode *pParent; /* Parent node (or NULL for root node) */SegmentNode::pParent151145,5455997 - SegmentNode *pRight; /* Pointer to right-sibling */pRight151146,5456073 - SegmentNode *pRight; /* Pointer to right-sibling */SegmentNode::pRight151146,5456073 - SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */pLeftmost151147,5456138 - SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */SegmentNode::pLeftmost151147,5456138 - int nEntry; /* Number of terms written to node so far */nEntry151148,5456218 - int nEntry; /* Number of terms written to node so far */SegmentNode::nEntry151148,5456218 - char *zTerm; /* Pointer to previous term buffer */zTerm151149,5456297 - char *zTerm; /* Pointer to previous term buffer */SegmentNode::zTerm151149,5456297 - int nTerm; /* Number of bytes in zTerm */nTerm151150,5456369 - int nTerm; /* Number of bytes in zTerm */SegmentNode::nTerm151150,5456369 - int nMalloc; /* Size of malloc'd buffer at zMalloc */nMalloc151151,5456434 - int nMalloc; /* Size of malloc'd buffer at zMalloc */SegmentNode::nMalloc151151,5456434 - char *zMalloc; /* Malloc'd space (possibly) used for zTerm */zMalloc151152,5456509 - char *zMalloc; /* Malloc'd space (possibly) used for zTerm */SegmentNode::zMalloc151152,5456509 - int nData; /* Bytes of valid data so far */nData151153,5456590 - int nData; /* Bytes of valid data so far */SegmentNode::nData151153,5456590 - char *aData; /* Node data */aData151154,5456657 - char *aData; /* Node data */SegmentNode::aData151154,5456657 -#define SQL_DELETE_CONTENT SQL_DELETE_CONTENT151160,5456775 -#define SQL_IS_EMPTY SQL_IS_EMPTY151161,5456816 -#define SQL_DELETE_ALL_CONTENT SQL_DELETE_ALL_CONTENT151162,5456857 -#define SQL_DELETE_ALL_SEGMENTS SQL_DELETE_ALL_SEGMENTS151163,5456899 -#define SQL_DELETE_ALL_SEGDIR SQL_DELETE_ALL_SEGDIR151164,5456940 -#define SQL_DELETE_ALL_DOCSIZE SQL_DELETE_ALL_DOCSIZE151165,5456981 -#define SQL_DELETE_ALL_STAT SQL_DELETE_ALL_STAT151166,5457022 -#define SQL_SELECT_CONTENT_BY_ROWID SQL_SELECT_CONTENT_BY_ROWID151167,5457063 -#define SQL_NEXT_SEGMENT_INDEX SQL_NEXT_SEGMENT_INDEX151168,5457104 -#define SQL_INSERT_SEGMENTS SQL_INSERT_SEGMENTS151169,5457145 -#define SQL_NEXT_SEGMENTS_ID SQL_NEXT_SEGMENTS_ID151170,5457186 -#define SQL_INSERT_SEGDIR SQL_INSERT_SEGDIR151171,5457227 -#define SQL_SELECT_LEVEL SQL_SELECT_LEVEL151172,5457268 -#define SQL_SELECT_LEVEL_RANGE SQL_SELECT_LEVEL_RANGE151173,5457309 -#define SQL_SELECT_LEVEL_COUNT SQL_SELECT_LEVEL_COUNT151174,5457350 -#define SQL_SELECT_SEGDIR_MAX_LEVEL SQL_SELECT_SEGDIR_MAX_LEVEL151175,5457391 -#define SQL_DELETE_SEGDIR_LEVEL SQL_DELETE_SEGDIR_LEVEL151176,5457432 -#define SQL_DELETE_SEGMENTS_RANGE SQL_DELETE_SEGMENTS_RANGE151177,5457473 -#define SQL_CONTENT_INSERT SQL_CONTENT_INSERT151178,5457514 -#define SQL_DELETE_DOCSIZE SQL_DELETE_DOCSIZE151179,5457555 -#define SQL_REPLACE_DOCSIZE SQL_REPLACE_DOCSIZE151180,5457596 -#define SQL_SELECT_DOCSIZE SQL_SELECT_DOCSIZE151181,5457637 -#define SQL_SELECT_STAT SQL_SELECT_STAT151182,5457678 -#define SQL_REPLACE_STAT SQL_REPLACE_STAT151183,5457719 -#define SQL_SELECT_ALL_PREFIX_LEVEL SQL_SELECT_ALL_PREFIX_LEVEL151185,5457761 -#define SQL_DELETE_ALL_TERMS_SEGDIR SQL_DELETE_ALL_TERMS_SEGDIR151186,5457802 -#define SQL_DELETE_SEGDIR_RANGE SQL_DELETE_SEGDIR_RANGE151187,5457843 -#define SQL_SELECT_ALL_LANGID SQL_SELECT_ALL_LANGID151188,5457884 -#define SQL_FIND_MERGE_LEVEL SQL_FIND_MERGE_LEVEL151189,5457925 -#define SQL_MAX_LEAF_NODE_ESTIMATE SQL_MAX_LEAF_NODE_ESTIMATE151190,5457966 -#define SQL_DELETE_SEGDIR_ENTRY SQL_DELETE_SEGDIR_ENTRY151191,5458007 -#define SQL_SHIFT_SEGDIR_ENTRY SQL_SHIFT_SEGDIR_ENTRY151192,5458048 -#define SQL_SELECT_SEGDIR SQL_SELECT_SEGDIR151193,5458089 -#define SQL_CHOMP_SEGDIR SQL_CHOMP_SEGDIR151194,5458130 -#define SQL_SEGMENT_IS_APPENDABLE SQL_SEGMENT_IS_APPENDABLE151195,5458171 -#define SQL_SELECT_INDEXES SQL_SELECT_INDEXES151196,5458212 -#define SQL_SELECT_MXLEVEL SQL_SELECT_MXLEVEL151197,5458253 -#define SQL_SELECT_LEVEL_RANGE2 SQL_SELECT_LEVEL_RANGE2151199,5458295 -#define SQL_UPDATE_LEVEL_IDX SQL_UPDATE_LEVEL_IDX151200,5458336 -#define SQL_UPDATE_LEVEL SQL_UPDATE_LEVEL151201,5458377 -static int fts3SqlStmt(fts3SqlStmt151214,5458932 -static int fts3SelectDocsize(fts3SelectDocsize151355,5464726 -SQLITE_PRIVATE int sqlite3Fts3SelectDoctotal(sqlite3Fts3SelectDoctotal151380,5465490 -SQLITE_PRIVATE int sqlite3Fts3SelectDocsize(sqlite3Fts3SelectDocsize151401,5466066 -static void fts3SqlExec(fts3SqlExec151417,5466624 -static int fts3Writelock(Fts3Table *p){fts3Writelock151449,5467799 -static sqlite3_int64 getAbsoluteLevel(getAbsoluteLevel151488,5469361 -SQLITE_PRIVATE int sqlite3Fts3AllSegdirs(sqlite3Fts3AllSegdirs151520,5470428 -static int fts3PendingListAppendVarint(fts3PendingListAppendVarint151567,5472022 -static int fts3PendingListAppend(fts3PendingListAppend151611,5473281 -static void fts3PendingListDelete(PendingList *pList){fts3PendingListDelete151666,5474763 -static int fts3PendingTermsAddOne(fts3PendingTermsAddOne151673,5474907 -static int fts3PendingTermsAdd(fts3PendingTermsAdd151711,5476094 -static int fts3PendingTermsDocid(fts3PendingTermsDocid151789,5478424 -SQLITE_PRIVATE void sqlite3Fts3PendingTermsClear(Fts3Table *p){sqlite3Fts3PendingTermsClear151821,5479517 -static int fts3InsertTerms(fts3InsertTerms151843,5480240 -static int fts3InsertData(fts3InsertData151878,5481374 -static int fts3DeleteAll(Fts3Table *p, int bContent){fts3DeleteAll151952,5483755 -static int langidFromSelect(Fts3Table *p, sqlite3_stmt *pSelect){langidFromSelect151976,5484458 -static void fts3DeleteTerms( fts3DeleteTerms151987,5484812 -static int fts3AllocateSegdirIdx(fts3AllocateSegdirIdx152049,5486907 -SQLITE_PRIVATE int sqlite3Fts3ReadBlock(sqlite3Fts3ReadBlock152120,5489746 -SQLITE_PRIVATE void sqlite3Fts3SegmentsClose(Fts3Table *p){sqlite3Fts3SegmentsClose152174,5491392 -static int fts3SegReaderIncrRead(Fts3SegReader *pReader){fts3SegReaderIncrRead152179,5491515 -static int fts3SegReaderRequire(Fts3SegReader *pReader, char *pFrom, int nByte){fts3SegReaderRequire152203,5492196 -static void fts3SegReaderSetEof(Fts3SegReader *pSeg){fts3SegReaderSetEof152219,5492629 -static int fts3SegReaderNext(fts3SegReaderNext152233,5493043 -static int fts3SegReaderFirstDocid(Fts3Table *pTab, Fts3SegReader *pReader){fts3SegReaderFirstDocid152345,5496637 -static int fts3SegReaderNextDocid(fts3SegReaderNextDocid152377,5497795 -SQLITE_PRIVATE int sqlite3Fts3MsrOvfl(sqlite3Fts3MsrOvfl152466,5500692 -SQLITE_PRIVATE void sqlite3Fts3SegReaderFree(Fts3SegReader *pReader){sqlite3Fts3SegReaderFree152504,5501587 -SQLITE_PRIVATE int sqlite3Fts3SegReaderNew(sqlite3Fts3SegReaderNew152520,5501961 -static int SQLITE_CDECL fts3CompareElemByTerm(fts3CompareElemByTerm152568,5503701 -SQLITE_PRIVATE int sqlite3Fts3SegReaderPending(sqlite3Fts3SegReaderPending152604,5504840 -static int fts3SegReaderCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){fts3SegReaderCmp152700,5508013 -static int fts3SegReaderDoclistCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){fts3SegReaderDoclistCmp152733,5508880 -static int fts3SegReaderDoclistCmpRev(Fts3SegReader *pLhs, Fts3SegReader *pRhs){fts3SegReaderDoclistCmpRev152745,5509232 -static int fts3SegReaderTermCmp(fts3SegReaderTermCmp152766,5509951 -static void fts3SegReaderSort(fts3SegReaderSort152791,5510716 -static int fts3WriteSegment(fts3WriteSegment152824,5511673 -SQLITE_PRIVATE int sqlite3Fts3MaxLevel(Fts3Table *p, int *pnMax){sqlite3Fts3MaxLevel152846,5512465 -static int fts3WriteSegdir(fts3WriteSegdir152865,5512882 -static int fts3PrefixCompress(fts3PrefixCompress152905,5514512 -static int fts3NodeAddTerm(fts3NodeAddTerm152921,5515056 -static int fts3TreeFinishNode(fts3TreeFinishNode153032,5518870 -static int fts3NodeWrite(fts3NodeWrite153058,5519780 -static void fts3NodeFree(SegmentNode *pTree){fts3NodeFree153102,5521300 -static int fts3SegWriterAdd(fts3SegWriterAdd153127,5522067 -static int fts3SegWriterFlush(fts3SegWriterFlush153269,5527500 -static void fts3SegWriterFree(SegmentWriter *pWriter){fts3SegWriterFree153305,5528937 -static int fts3IsEmpty(Fts3Table *p, sqlite3_value *pRowid, int *pisEmpty){fts3IsEmpty153324,5529630 -static int fts3SegmentMaxLevel(fts3SegmentMaxLevel153351,5530366 -static int fts3SegmentIsMaxLevel(Fts3Table *p, i64 iAbsLevel, int *pbMax){fts3SegmentIsMaxLevel153387,5531546 -static int fts3DeleteSegment(fts3DeleteSegment153415,5532428 -static int fts3DeleteSegdir(fts3DeleteSegdir153447,5533554 -static void fts3ColumnFilter(fts3ColumnFilter153504,5535548 -static int fts3MsrBufferData(fts3MsrBufferData153549,5536720 -SQLITE_PRIVATE int sqlite3Fts3MsrIncrNext(sqlite3Fts3MsrIncrNext153566,5537118 -static int fts3SegReaderStart(fts3SegReaderStart153634,5538941 -SQLITE_PRIVATE int sqlite3Fts3SegReaderStart(sqlite3Fts3SegReaderStart153666,5540072 -SQLITE_PRIVATE int sqlite3Fts3MsrIncrStart(sqlite3Fts3MsrIncrStart153675,5540411 -SQLITE_PRIVATE int sqlite3Fts3MsrIncrRestart(Fts3MultiSegReader *pCsr){sqlite3Fts3MsrIncrRestart153730,5542218 -SQLITE_PRIVATE int sqlite3Fts3SegReaderStep(sqlite3Fts3SegReaderStep153750,5542716 -SQLITE_PRIVATE void sqlite3Fts3SegReaderFinish(sqlite3Fts3SegReaderFinish153928,5548579 -static void fts3ReadEndBlockField(fts3ReadEndBlockField153955,5549448 -static int fts3PromoteSegments(fts3PromoteSegments153988,5550209 -static int fts3SegmentMerge(fts3SegmentMerge154090,5553933 -SQLITE_PRIVATE int sqlite3Fts3PendingTermsFlush(Fts3Table *p){sqlite3Fts3PendingTermsFlush154187,5557516 -static void fts3EncodeIntArray(fts3EncodeIntArray154223,5558571 -static void fts3DecodeIntArray(fts3DecodeIntArray154239,5558997 -static void fts3InsertDocsize(fts3InsertDocsize154260,5559593 -static void fts3UpdateDocTotals(fts3UpdateDocTotals154304,5561136 -static int fts3DoOptimize(Fts3Table *p, int bReturnDone){fts3DoOptimize154379,5563235 -static int fts3DoRebuild(Fts3Table *p){fts3DoRebuild154420,5564514 -static int fts3IncrmergeCsr(fts3IncrmergeCsr154500,5566732 -typedef struct IncrmergeWriter IncrmergeWriter;IncrmergeWriter154544,5568347 -typedef struct NodeWriter NodeWriter;NodeWriter154545,5568395 -typedef struct Blob Blob;Blob154546,5568433 -typedef struct NodeReader NodeReader;NodeReader154547,5568459 -struct Blob {Blob154555,5568692 - char *a; /* Pointer to allocation */a154556,5568706 - char *a; /* Pointer to allocation */Blob::a154556,5568706 - int n; /* Number of valid bytes of data in a[] */n154557,5568768 - int n; /* Number of valid bytes of data in a[] */Blob::n154557,5568768 - int nAlloc; /* Allocated size of a[] (nAlloc>=n) */nAlloc154558,5568845 - int nAlloc; /* Allocated size of a[] (nAlloc>=n) */Blob::nAlloc154558,5568845 -struct NodeWriter {NodeWriter154565,5569021 - sqlite3_int64 iBlock; /* Current block id */iBlock154566,5569041 - sqlite3_int64 iBlock; /* Current block id */NodeWriter::iBlock154566,5569041 - Blob key; /* Last key written to the current block */key154567,5569098 - Blob key; /* Last key written to the current block */NodeWriter::key154567,5569098 - Blob block; /* Current block image */block154568,5569176 - Blob block; /* Current block image */NodeWriter::block154568,5569176 -struct IncrmergeWriter {IncrmergeWriter154575,5569356 - int nLeafEst; /* Space allocated for leaf blocks */nLeafEst154576,5569381 - int nLeafEst; /* Space allocated for leaf blocks */IncrmergeWriter::nLeafEst154576,5569381 - int nWork; /* Number of leaf pages flushed */nWork154577,5569453 - int nWork; /* Number of leaf pages flushed */IncrmergeWriter::nWork154577,5569453 - sqlite3_int64 iAbsLevel; /* Absolute level of input segments */iAbsLevel154578,5569522 - sqlite3_int64 iAbsLevel; /* Absolute level of input segments */IncrmergeWriter::iAbsLevel154578,5569522 - int iIdx; /* Index of *output* segment in iAbsLevel+1 */iIdx154579,5569595 - int iIdx; /* Index of *output* segment in iAbsLevel+1 */IncrmergeWriter::iIdx154579,5569595 - sqlite3_int64 iStart; /* Block number of first allocated block */iStart154580,5569676 - sqlite3_int64 iStart; /* Block number of first allocated block */IncrmergeWriter::iStart154580,5569676 - sqlite3_int64 iEnd; /* Block number of last allocated block */iEnd154581,5569754 - sqlite3_int64 iEnd; /* Block number of last allocated block */IncrmergeWriter::iEnd154581,5569754 - sqlite3_int64 nLeafData; /* Bytes of leaf page data so far */nLeafData154582,5569831 - sqlite3_int64 nLeafData; /* Bytes of leaf page data so far */IncrmergeWriter::nLeafData154582,5569831 - u8 bNoLeafData; /* If true, store 0 for segment size */bNoLeafData154583,5569902 - u8 bNoLeafData; /* If true, store 0 for segment size */IncrmergeWriter::bNoLeafData154583,5569902 - NodeWriter aNodeWriter[FTS_MAX_APPENDABLE_HEIGHT];aNodeWriter154584,5569976 - NodeWriter aNodeWriter[FTS_MAX_APPENDABLE_HEIGHT];IncrmergeWriter::aNodeWriter154584,5569976 -struct NodeReader {NodeReader154595,5570237 - const char *aNode;aNode154596,5570257 - const char *aNode;NodeReader::aNode154596,5570257 - int nNode;nNode154597,5570278 - int nNode;NodeReader::nNode154597,5570278 - int iOff; /* Current offset within aNode[] */iOff154598,5570291 - int iOff; /* Current offset within aNode[] */NodeReader::iOff154598,5570291 - sqlite3_int64 iChild; /* Pointer to child node */iChild154601,5570423 - sqlite3_int64 iChild; /* Pointer to child node */NodeReader::iChild154601,5570423 - Blob term; /* Current term */term154602,5570485 - Blob term; /* Current term */NodeReader::term154602,5570485 - const char *aDoclist; /* Pointer to doclist */aDoclist154603,5570538 - const char *aDoclist; /* Pointer to doclist */NodeReader::aDoclist154603,5570538 - int nDoclist; /* Size of doclist in bytes */nDoclist154604,5570597 - int nDoclist; /* Size of doclist in bytes */NodeReader::nDoclist154604,5570597 -static void blobGrowBuffer(Blob *pBlob, int nMin, int *pRc){blobGrowBuffer154616,5571068 -static int nodeReaderNext(NodeReader *p){nodeReaderNext154639,5571812 -static void nodeReaderRelease(NodeReader *p){nodeReaderRelease154677,5572919 -static int nodeReaderInit(NodeReader *p, const char *aNode, int nNode){nodeReaderInit154688,5573251 -static int fts3IncrmergePush(fts3IncrmergePush154714,5574089 -static int fts3AppendToNode(fts3AppendToNode154815,5577875 -static int fts3IncrmergeAppend(fts3IncrmergeAppend154865,5579705 -static void fts3IncrmergeRelease(fts3IncrmergeRelease154950,5582820 -static int fts3TermCmp(fts3TermCmp155040,5586397 -static int fts3IsAppendable(Fts3Table *p, sqlite3_int64 iEnd, int *pbRes){fts3IsAppendable155066,5587187 -static int fts3IncrmergeLoad(fts3IncrmergeLoad155097,5588356 -static int fts3IncrmergeOutputIdx( fts3IncrmergeOutputIdx155229,5593307 -static int fts3IncrmergeWriter( fts3IncrmergeWriter155274,5594945 -static int fts3RemoveSegdirEntry(fts3RemoveSegdirEntry155339,5597447 -static int fts3RepackSegdirLevel(fts3RepackSegdirLevel155363,5598267 -static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){fts3StartNode155419,5599956 -static int fts3TruncateNode(fts3TruncateNode155438,5600627 -static int fts3TruncateSegment(fts3TruncateSegment155493,5602561 -static int fts3IncrmergeChomp(fts3IncrmergeChomp155578,5605661 -static int fts3IncrmergeHintStore(Fts3Table *p, Blob *pHint){fts3IncrmergeHintStore155629,5607233 -static int fts3IncrmergeHintLoad(Fts3Table *p, Blob *pHint){fts3IncrmergeHintLoad155652,5607984 -static void fts3IncrmergeHintPush(fts3IncrmergeHintPush155688,5609082 -static int fts3IncrmergeHintPop(Blob *pHint, i64 *piAbsLevel, int *pnInput){fts3IncrmergeHintPop155709,5609948 -SQLITE_PRIVATE int sqlite3Fts3Incrmerge(Fts3Table *p, int nMerge, int nMin){sqlite3Fts3Incrmerge155735,5610764 -static int fts3Getint(const char **pz){fts3Getint155887,5616648 -static int fts3DoIncrmerge(fts3DoIncrmerge155904,5617104 -static int fts3DoAutoincrmerge(fts3DoAutoincrmerge155947,5618131 -static u64 fts3ChecksumEntry(fts3ChecksumEntry155975,5618964 -static u64 fts3ChecksumIndex(fts3ChecksumIndex156005,5620067 -static int fts3IntegrityCheck(Fts3Table *p, int *pbOk){fts3IntegrityCheck156079,5622231 -static int fts3DoIntegrityCheck(fts3DoIntegrityCheck156193,5626435 -static int fts3SpecialInsert(Fts3Table *p, sqlite3_value *pVal){fts3SpecialInsert156211,5626880 -SQLITE_PRIVATE void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *pCsr){sqlite3Fts3FreeDeferredDoclists156251,5628311 -SQLITE_PRIVATE void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *pCsr){sqlite3Fts3FreeDeferredTokens156263,5628651 -SQLITE_PRIVATE int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *pCsr){sqlite3Fts3CacheDeferredDoclists156282,5629250 -SQLITE_PRIVATE int sqlite3Fts3DeferredTokenList(sqlite3Fts3DeferredTokenList156335,5631311 -SQLITE_PRIVATE int sqlite3Fts3DeferToken(sqlite3Fts3DeferToken156365,5631892 -static int fts3DeleteByRowid(fts3DeleteByRowid156393,5632731 -SQLITE_PRIVATE int sqlite3Fts3UpdateMethod(sqlite3Fts3UpdateMethod156442,5634163 -SQLITE_PRIVATE int sqlite3Fts3Optimize(Fts3Table *p){sqlite3Fts3Optimize156588,5639490 -#define FTS3_MATCHINFO_NPHRASE FTS3_MATCHINFO_NPHRASE156631,5640741 -#define FTS3_MATCHINFO_NCOL FTS3_MATCHINFO_NCOL156632,5640799 -#define FTS3_MATCHINFO_NDOC FTS3_MATCHINFO_NDOC156633,5640857 -#define FTS3_MATCHINFO_AVGLENGTH FTS3_MATCHINFO_AVGLENGTH156634,5640915 -#define FTS3_MATCHINFO_LENGTH FTS3_MATCHINFO_LENGTH156635,5640977 -#define FTS3_MATCHINFO_LCS FTS3_MATCHINFO_LCS156636,5641039 -#define FTS3_MATCHINFO_HITS FTS3_MATCHINFO_HITS156637,5641101 -#define FTS3_MATCHINFO_LHITS FTS3_MATCHINFO_LHITS156638,5641173 -#define FTS3_MATCHINFO_LHITS_BM FTS3_MATCHINFO_LHITS_BM156639,5641243 -#define FTS3_MATCHINFO_DEFAULT FTS3_MATCHINFO_DEFAULT156644,5641382 -typedef struct LoadDoclistCtx LoadDoclistCtx;LoadDoclistCtx156651,5641534 -struct LoadDoclistCtx {LoadDoclistCtx156652,5641580 - Fts3Cursor *pCsr; /* FTS3 Cursor */pCsr156653,5641604 - Fts3Cursor *pCsr; /* FTS3 Cursor */LoadDoclistCtx::pCsr156653,5641604 - int nPhrase; /* Number of phrases seen so far */nPhrase156654,5641656 - int nPhrase; /* Number of phrases seen so far */LoadDoclistCtx::nPhrase156654,5641656 - int nToken; /* Number of tokens seen so far */nToken156655,5641726 - int nToken; /* Number of tokens seen so far */LoadDoclistCtx::nToken156655,5641726 -typedef struct SnippetIter SnippetIter;SnippetIter156662,5641905 -typedef struct SnippetPhrase SnippetPhrase;SnippetPhrase156663,5641945 -typedef struct SnippetFragment SnippetFragment;SnippetFragment156664,5641989 -struct SnippetIter {SnippetIter156666,5642038 - Fts3Cursor *pCsr; /* Cursor snippet is being generated from */pCsr156667,5642059 - Fts3Cursor *pCsr; /* Cursor snippet is being generated from */SnippetIter::pCsr156667,5642059 - int iCol; /* Extract snippet from this column */iCol156668,5642138 - int iCol; /* Extract snippet from this column */SnippetIter::iCol156668,5642138 - int nSnippet; /* Requested snippet length (in tokens) */nSnippet156669,5642211 - int nSnippet; /* Requested snippet length (in tokens) */SnippetIter::nSnippet156669,5642211 - int nPhrase; /* Number of phrases in query */nPhrase156670,5642288 - int nPhrase; /* Number of phrases in query */SnippetIter::nPhrase156670,5642288 - SnippetPhrase *aPhrase; /* Array of size nPhrase */aPhrase156671,5642355 - SnippetPhrase *aPhrase; /* Array of size nPhrase */SnippetIter::aPhrase156671,5642355 - int iCurrent; /* First token of current snippet */iCurrent156672,5642417 - int iCurrent; /* First token of current snippet */SnippetIter::iCurrent156672,5642417 -struct SnippetPhrase {SnippetPhrase156675,5642492 - int nToken; /* Number of tokens in phrase */nToken156676,5642515 - int nToken; /* Number of tokens in phrase */SnippetPhrase::nToken156676,5642515 - char *pList; /* Pointer to start of phrase position list */pList156677,5642582 - char *pList; /* Pointer to start of phrase position list */SnippetPhrase::pList156677,5642582 - int iHead; /* Next value in position list */iHead156678,5642663 - int iHead; /* Next value in position list */SnippetPhrase::iHead156678,5642663 - char *pHead; /* Position list data following iHead */pHead156679,5642731 - char *pHead; /* Position list data following iHead */SnippetPhrase::pHead156679,5642731 - int iTail; /* Next value in trailing position list */iTail156680,5642806 - int iTail; /* Next value in trailing position list */SnippetPhrase::iTail156680,5642806 - char *pTail; /* Position list data following iTail */pTail156681,5642883 - char *pTail; /* Position list data following iTail */SnippetPhrase::pTail156681,5642883 -struct SnippetFragment {SnippetFragment156684,5642962 - int iCol; /* Column snippet is extracted from */iCol156685,5642987 - int iCol; /* Column snippet is extracted from */SnippetFragment::iCol156685,5642987 - int iPos; /* Index of first token in snippet */iPos156686,5643060 - int iPos; /* Index of first token in snippet */SnippetFragment::iPos156686,5643060 - u64 covered; /* Mask of query phrases covered */covered156687,5643132 - u64 covered; /* Mask of query phrases covered */SnippetFragment::covered156687,5643132 - u64 hlmask; /* Mask of snippet terms to highlight */hlmask156688,5643202 - u64 hlmask; /* Mask of snippet terms to highlight */SnippetFragment::hlmask156688,5643202 -typedef struct MatchInfo MatchInfo;MatchInfo156695,5643417 -struct MatchInfo {MatchInfo156696,5643453 - Fts3Cursor *pCursor; /* FTS3 Cursor */pCursor156697,5643472 - Fts3Cursor *pCursor; /* FTS3 Cursor */MatchInfo::pCursor156697,5643472 - int nCol; /* Number of columns in table */nCol156698,5643524 - int nCol; /* Number of columns in table */MatchInfo::nCol156698,5643524 - int nPhrase; /* Number of matchable phrases in query */nPhrase156699,5643591 - int nPhrase; /* Number of matchable phrases in query */MatchInfo::nPhrase156699,5643591 - sqlite3_int64 nDoc; /* Number of docs in database */nDoc156700,5643668 - sqlite3_int64 nDoc; /* Number of docs in database */MatchInfo::nDoc156700,5643668 - char flag;flag156701,5643735 - char flag;MatchInfo::flag156701,5643735 - u32 *aMatchinfo; /* Pre-allocated buffer */aMatchinfo156702,5643748 - u32 *aMatchinfo; /* Pre-allocated buffer */MatchInfo::aMatchinfo156702,5643748 -struct MatchinfoBuffer {MatchinfoBuffer156710,5643985 - u8 aRef[3];aRef156711,5644010 - u8 aRef[3];MatchinfoBuffer::aRef156711,5644010 - int nElem;nElem156712,5644024 - int nElem;MatchinfoBuffer::nElem156712,5644024 - int bGlobal; /* Set if global data is loaded */bGlobal156713,5644037 - int bGlobal; /* Set if global data is loaded */MatchinfoBuffer::bGlobal156713,5644037 - char *zMatchinfo;zMatchinfo156714,5644106 - char *zMatchinfo;MatchinfoBuffer::zMatchinfo156714,5644106 - u32 aMatchinfo[1];aMatchinfo156715,5644126 - u32 aMatchinfo[1];MatchinfoBuffer::aMatchinfo156715,5644126 -typedef struct StrBuffer StrBuffer;StrBuffer156724,5644373 -struct StrBuffer {StrBuffer156725,5644409 - char *z; /* Pointer to buffer containing string */z156726,5644428 - char *z; /* Pointer to buffer containing string */StrBuffer::z156726,5644428 - int n; /* Length of z in bytes (excl. nul-term) */n156727,5644504 - int n; /* Length of z in bytes (excl. nul-term) */StrBuffer::n156727,5644504 - int nAlloc; /* Allocated size of buffer z in bytes */nAlloc156728,5644582 - int nAlloc; /* Allocated size of buffer z in bytes */StrBuffer::nAlloc156728,5644582 -static MatchinfoBuffer *fts3MIBufferNew(int nElem, const char *zMatchinfo){fts3MIBufferNew156739,5644829 -static void fts3MIBufferFree(void *p){fts3MIBufferFree156758,5645432 -static void (*fts3MIBufferAlloc(MatchinfoBuffer *p, u32 **paOut))(void*){fts3MIBufferAlloc156775,5645837 -static void fts3MIBufferSetGlobal(MatchinfoBuffer *p){fts3MIBufferSetGlobal156800,5646411 -SQLITE_PRIVATE void sqlite3Fts3MIBufferFree(MatchinfoBuffer *p){sqlite3Fts3MIBufferFree156808,5646639 -static void fts3GetDeltaPosition(char **pp, int *piPos){fts3GetDeltaPosition156843,5647690 -static int fts3ExprIterate2(fts3ExprIterate2156852,5647882 -static int fts3ExprIterate(fts3ExprIterate156884,5649136 -static int fts3ExprLoadDoclistsCb(Fts3Expr *pExpr, int iPhrase, void *ctx){fts3ExprLoadDoclistsCb156899,5649698 -static int fts3ExprLoadDoclists(fts3ExprLoadDoclists156922,5650403 -static int fts3ExprPhraseCountCb(Fts3Expr *pExpr, int iPhrase, void *ctx){fts3ExprPhraseCountCb156936,5650969 -static int fts3ExprPhraseCount(Fts3Expr *pExpr){fts3ExprPhraseCount156941,5651113 -static void fts3SnippetAdvance(char **ppIter, int *piIter, int iNext){fts3SnippetAdvance156952,5651457 -static int fts3SnippetNextCandidate(SnippetIter *pIter){fts3SnippetNextCandidate156974,5651883 -static void fts3SnippetDetails(fts3SnippetDetails157020,5653224 -static int fts3SnippetFindPositions(Fts3Expr *pExpr, int iPhrase, void *ctx){fts3SnippetFindPositions157073,5655012 -static int fts3BestSnippet(fts3BestSnippet157115,5656370 -static int fts3StringAppend(fts3StringAppend157201,5659239 -static int fts3SnippetShift(fts3SnippetShift157253,5661099 -static int fts3SnippetText(fts3SnippetText157317,5663758 -static int fts3ColumnlistCount(char **ppCollist){fts3ColumnlistCount157445,5669338 -static void fts3ExprLHits(fts3ExprLHits157463,5669702 -static void fts3ExprLHitGather(fts3ExprLHitGather157499,5670776 -static int fts3ExprGlobalHitsCb(fts3ExprGlobalHitsCb157541,5672296 -static int fts3ExprLocalHitsCb(fts3ExprLocalHitsCb157557,5672894 -static int fts3MatchinfoCheck(fts3MatchinfoCheck157580,5673505 -static int fts3MatchinfoSize(MatchInfo *pInfo, char cArg){fts3MatchinfoSize157601,5674087 -static int fts3MatchinfoSelectDoctotal(fts3MatchinfoSelectDoctotal157634,5674832 -typedef struct LcsIterator LcsIterator;LcsIterator157666,5675664 -struct LcsIterator {LcsIterator157667,5675704 - Fts3Expr *pExpr; /* Pointer to phrase expression */pExpr157668,5675725 - Fts3Expr *pExpr; /* Pointer to phrase expression */LcsIterator::pExpr157668,5675725 - int iPosOffset; /* Tokens count up to end of this phrase */iPosOffset157669,5675794 - int iPosOffset; /* Tokens count up to end of this phrase */LcsIterator::iPosOffset157669,5675794 - char *pRead; /* Cursor used to iterate through aDoclist */pRead157670,5675872 - char *pRead; /* Cursor used to iterate through aDoclist */LcsIterator::pRead157670,5675872 - int iPos; /* Current position */iPos157671,5675952 - int iPos; /* Current position */LcsIterator::iPos157671,5675952 -#define LCS_ITERATOR_FINISHED LCS_ITERATOR_FINISHED157678,5676150 -static int fts3MatchinfoLcsCb(fts3MatchinfoLcsCb157680,5676193 -static int fts3LcsIteratorAdvance(LcsIterator *pIter){fts3LcsIteratorAdvance157695,5676725 -static int fts3MatchinfoLcs(Fts3Cursor *pCsr, MatchInfo *pInfo){fts3MatchinfoLcs157723,5677503 -static int fts3MatchinfoValues(fts3MatchinfoValues157807,5680391 -static void fts3GetMatchinfo(fts3GetMatchinfo157919,5683885 -SQLITE_PRIVATE void sqlite3Fts3Snippet(sqlite3Fts3Snippet158004,5686568 -typedef struct TermOffset TermOffset;TermOffset158103,5690132 -typedef struct TermOffsetCtx TermOffsetCtx;TermOffsetCtx158104,5690170 -struct TermOffset {TermOffset158106,5690215 - char *pList; /* Position-list */pList158107,5690235 - char *pList; /* Position-list */TermOffset::pList158107,5690235 - int iPos; /* Position just read from pList */iPos158108,5690289 - int iPos; /* Position just read from pList */TermOffset::iPos158108,5690289 - int iOff; /* Offset of this term from read positions */iOff158109,5690359 - int iOff; /* Offset of this term from read positions */TermOffset::iOff158109,5690359 -struct TermOffsetCtx {TermOffsetCtx158112,5690443 - Fts3Cursor *pCsr;pCsr158113,5690466 - Fts3Cursor *pCsr;TermOffsetCtx::pCsr158113,5690466 - int iCol; /* Column of table to populate aTerm for */iCol158114,5690486 - int iCol; /* Column of table to populate aTerm for */TermOffsetCtx::iCol158114,5690486 - int iTerm;iTerm158115,5690564 - int iTerm;TermOffsetCtx::iTerm158115,5690564 - sqlite3_int64 iDocid;iDocid158116,5690577 - sqlite3_int64 iDocid;TermOffsetCtx::iDocid158116,5690577 - TermOffset *aTerm;aTerm158117,5690601 - TermOffset *aTerm;TermOffsetCtx::aTerm158117,5690601 -static int fts3ExprTermOffsetInit(Fts3Expr *pExpr, int iPhrase, void *ctx){fts3ExprTermOffsetInit158123,5690712 -SQLITE_PRIVATE void sqlite3Fts3Offsets(sqlite3Fts3Offsets158152,5691577 -SQLITE_PRIVATE void sqlite3Fts3Matchinfo(sqlite3Fts3Matchinfo158290,5696131 -static const unsigned char sqlite3Utf8Trans1[] = {sqlite3Utf8Trans1158352,5697860 -#define READ_UTF8(READ_UTF8158363,5698315 -#define WRITE_UTF8(WRITE_UTF8158375,5698930 -typedef struct unicode_tokenizer unicode_tokenizer;unicode_tokenizer158397,5700000 -typedef struct unicode_cursor unicode_cursor;unicode_cursor158398,5700052 -struct unicode_tokenizer {unicode_tokenizer158400,5700099 - sqlite3_tokenizer base;base158401,5700126 - sqlite3_tokenizer base;unicode_tokenizer::base158401,5700126 - int bRemoveDiacritic;bRemoveDiacritic158402,5700152 - int bRemoveDiacritic;unicode_tokenizer::bRemoveDiacritic158402,5700152 - int nException;nException158403,5700176 - int nException;unicode_tokenizer::nException158403,5700176 - int *aiException;aiException158404,5700194 - int *aiException;unicode_tokenizer::aiException158404,5700194 -struct unicode_cursor {unicode_cursor158407,5700218 - sqlite3_tokenizer_cursor base;base158408,5700242 - sqlite3_tokenizer_cursor base;unicode_cursor::base158408,5700242 - const unsigned char *aInput; /* Input text being tokenized */aInput158409,5700275 - const unsigned char *aInput; /* Input text being tokenized */unicode_cursor::aInput158409,5700275 - int nInput; /* Size of aInput[] in bytes */nInput158410,5700342 - int nInput; /* Size of aInput[] in bytes */unicode_cursor::nInput158410,5700342 - int iOff; /* Current offset within aInput[] */iOff158411,5700408 - int iOff; /* Current offset within aInput[] */unicode_cursor::iOff158411,5700408 - int iToken; /* Index of next token to be returned */iToken158412,5700479 - int iToken; /* Index of next token to be returned */unicode_cursor::iToken158412,5700479 - char *zToken; /* storage for current token */zToken158413,5700554 - char *zToken; /* storage for current token */unicode_cursor::zToken158413,5700554 - int nAlloc; /* space allocated at zToken */nAlloc158414,5700620 - int nAlloc; /* space allocated at zToken */unicode_cursor::nAlloc158414,5700620 -static int unicodeDestroy(sqlite3_tokenizer *pTokenizer){unicodeDestroy158421,5700750 -static int unicodeAddExceptions(unicodeAddExceptions158448,5701897 -static int unicodeIsException(unicode_tokenizer *p, int iCode){unicodeIsException158502,5703475 -static int unicodeIsAlnum(unicode_tokenizer *p, int iCode){unicodeIsAlnum158527,5704003 -static int unicodeCreate(unicodeCreate158535,5704244 -static int unicodeOpen(unicodeOpen158585,5705722 -static int unicodeClose(sqlite3_tokenizer_cursor *pCursor){unicodeClose158617,5706524 -static int unicodeNext(unicodeNext158628,5706842 -SQLITE_PRIVATE void sqlite3Fts3UnicodeTokenizer(sqlite3_tokenizer_module const **ppModule){sqlite3Fts3UnicodeTokenizer158696,5709084 -SQLITE_PRIVATE int sqlite3FtsUnicodeIsalnum(int c){sqlite3FtsUnicodeIsalnum158743,5710420 -static int remove_diacritic(int c){remove_diacritic158875,5717417 -SQLITE_PRIVATE int sqlite3FtsUnicodeIsdiacritic(int c){sqlite3FtsUnicodeIsdiacritic158925,5719458 -SQLITE_PRIVATE int sqlite3FtsUnicodeFold(int c, int bRemoveDiacritic){sqlite3FtsUnicodeFold158944,5720051 -typedef sqlite3_int64 i64;i64159151,5729112 -typedef unsigned char u8;u8159152,5729139 -typedef unsigned short u16;u16159153,5729165 -typedef unsigned int u32;u32159154,5729193 -# define UNUSED_PARAMETER(UNUSED_PARAMETER159160,5729318 -typedef struct Rtree Rtree;Rtree159163,5729365 -typedef struct RtreeCursor RtreeCursor;RtreeCursor159164,5729393 -typedef struct RtreeNode RtreeNode;RtreeNode159165,5729433 -typedef struct RtreeCell RtreeCell;RtreeCell159166,5729469 -typedef struct RtreeConstraint RtreeConstraint;RtreeConstraint159167,5729505 -typedef struct RtreeMatchArg RtreeMatchArg;RtreeMatchArg159168,5729553 -typedef struct RtreeGeomCallback RtreeGeomCallback;RtreeGeomCallback159169,5729597 -typedef union RtreeCoord RtreeCoord;RtreeCoord159170,5729649 -typedef struct RtreeSearchPoint RtreeSearchPoint;RtreeSearchPoint159171,5729686 -#define RTREE_MAX_DIMENSIONS RTREE_MAX_DIMENSIONS159174,5729809 -#define HASHSIZE HASHSIZE159180,5729991 -#define RTREE_DEFAULT_ROWEST RTREE_DEFAULT_ROWEST159189,5730378 -#define RTREE_MIN_ROWEST RTREE_MIN_ROWEST159190,5730415 -struct Rtree {Rtree159195,5730494 - sqlite3_vtab base; /* Base class. Must be first */base159196,5730509 - sqlite3_vtab base; /* Base class. Must be first */Rtree::base159196,5730509 - sqlite3 *db; /* Host database connection */db159197,5730572 - sqlite3 *db; /* Host database connection */Rtree::db159197,5730572 - int iNodeSize; /* Size in bytes of each node in the node table */iNodeSize159198,5730633 - int iNodeSize; /* Size in bytes of each node in the node table */Rtree::iNodeSize159198,5730633 - u8 nDim; /* Number of dimensions */nDim159199,5730714 - u8 nDim; /* Number of dimensions */Rtree::nDim159199,5730714 - u8 eCoordType; /* RTREE_COORD_REAL32 or RTREE_COORD_INT32 */eCoordType159200,5730771 - u8 eCoordType; /* RTREE_COORD_REAL32 or RTREE_COORD_INT32 */Rtree::eCoordType159200,5730771 - u8 nBytesPerCell; /* Bytes consumed per cell */nBytesPerCell159201,5730847 - u8 nBytesPerCell; /* Bytes consumed per cell */Rtree::nBytesPerCell159201,5730847 - int iDepth; /* Current depth of the r-tree structure */iDepth159202,5730907 - int iDepth; /* Current depth of the r-tree structure */Rtree::iDepth159202,5730907 - char *zDb; /* Name of database containing r-tree table */zDb159203,5730981 - char *zDb; /* Name of database containing r-tree table */Rtree::zDb159203,5730981 - char *zName; /* Name of r-tree table */ zName159204,5731058 - char *zName; /* Name of r-tree table */ Rtree::zName159204,5731058 - int nBusy; /* Current number of users of this structure */nBusy159205,5731116 - int nBusy; /* Current number of users of this structure */Rtree::nBusy159205,5731116 - i64 nRowEst; /* Estimated number of rows in this table */nRowEst159206,5731194 - i64 nRowEst; /* Estimated number of rows in this table */Rtree::nRowEst159206,5731194 - RtreeNode *pDeleted;pDeleted159213,5731546 - RtreeNode *pDeleted;Rtree::pDeleted159213,5731546 - int iReinsertHeight; /* Height of sub-trees Reinsert() has run on */iReinsertHeight159214,5731569 - int iReinsertHeight; /* Height of sub-trees Reinsert() has run on */Rtree::iReinsertHeight159214,5731569 - sqlite3_stmt *pReadNode;pReadNode159217,5731711 - sqlite3_stmt *pReadNode;Rtree::pReadNode159217,5731711 - sqlite3_stmt *pWriteNode;pWriteNode159218,5731738 - sqlite3_stmt *pWriteNode;Rtree::pWriteNode159218,5731738 - sqlite3_stmt *pDeleteNode;pDeleteNode159219,5731766 - sqlite3_stmt *pDeleteNode;Rtree::pDeleteNode159219,5731766 - sqlite3_stmt *pReadRowid;pReadRowid159222,5731860 - sqlite3_stmt *pReadRowid;Rtree::pReadRowid159222,5731860 - sqlite3_stmt *pWriteRowid;pWriteRowid159223,5731888 - sqlite3_stmt *pWriteRowid;Rtree::pWriteRowid159223,5731888 - sqlite3_stmt *pDeleteRowid;pDeleteRowid159224,5731917 - sqlite3_stmt *pDeleteRowid;Rtree::pDeleteRowid159224,5731917 - sqlite3_stmt *pReadParent;pReadParent159227,5732013 - sqlite3_stmt *pReadParent;Rtree::pReadParent159227,5732013 - sqlite3_stmt *pWriteParent;pWriteParent159228,5732042 - sqlite3_stmt *pWriteParent;Rtree::pWriteParent159228,5732042 - sqlite3_stmt *pDeleteParent;pDeleteParent159229,5732072 - sqlite3_stmt *pDeleteParent;Rtree::pDeleteParent159229,5732072 - RtreeNode *aHash[HASHSIZE]; /* Hash table of in-memory nodes. */ aHash159231,5732104 - RtreeNode *aHash[HASHSIZE]; /* Hash table of in-memory nodes. */ Rtree::aHash159231,5732104 -#define RTREE_COORD_REAL32 RTREE_COORD_REAL32159235,5732220 -#define RTREE_COORD_INT32 RTREE_COORD_INT32159236,5732249 - typedef sqlite3_int64 RtreeDValue; /* High accuracy coordinate */RtreeDValue159244,5732469 - typedef int RtreeValue; /* Low accuracy coordinate */RtreeValue159245,5732543 -# define RTREE_ZERO RTREE_ZERO159246,5732616 - typedef double RtreeDValue; /* High accuracy coordinate */RtreeDValue159248,5732644 - typedef float RtreeValue; /* Low accuracy coordinate */RtreeValue159249,5732718 -# define RTREE_ZERO RTREE_ZERO159250,5732791 -struct RtreeSearchPoint {RtreeSearchPoint159262,5733227 - RtreeDValue rScore; /* The score for this node. Smallest goes first. */rScore159263,5733253 - RtreeDValue rScore; /* The score for this node. Smallest goes first. */RtreeSearchPoint::rScore159263,5733253 - sqlite3_int64 id; /* Node ID */id159264,5733331 - sqlite3_int64 id; /* Node ID */RtreeSearchPoint::id159264,5733331 - u8 iLevel; /* 0=entries. 1=leaf node. 2+ for higher */iLevel159265,5733370 - u8 iLevel; /* 0=entries. 1=leaf node. 2+ for higher */RtreeSearchPoint::iLevel159265,5733370 - u8 eWithin; /* PARTLY_WITHIN or FULLY_WITHIN */eWithin159266,5733441 - u8 eWithin; /* PARTLY_WITHIN or FULLY_WITHIN */RtreeSearchPoint::eWithin159266,5733441 - u8 iCell; /* Cell index within the node */iCell159267,5733502 - u8 iCell; /* Cell index within the node */RtreeSearchPoint::iCell159267,5733502 -#define RTREE_MINCELLS(RTREE_MINCELLS159279,5733838 -#define RTREE_REINSERT(RTREE_REINSERT159280,5733908 -#define RTREE_MAXCELLS RTREE_MAXCELLS159281,5733952 -#define RTREE_MAX_DEPTH RTREE_MAX_DEPTH159290,5734295 -#define RTREE_CACHE_SZ RTREE_CACHE_SZ159298,5734549 -struct RtreeCursor {RtreeCursor159303,5734610 - sqlite3_vtab_cursor base; /* Base class. Must be first */base159304,5734631 - sqlite3_vtab_cursor base; /* Base class. Must be first */RtreeCursor::base159304,5734631 - u8 atEOF; /* True if at end of search */atEOF159305,5734700 - u8 atEOF; /* True if at end of search */RtreeCursor::atEOF159305,5734700 - u8 bPoint; /* True if sPoint is valid */bPoint159306,5734767 - u8 bPoint; /* True if sPoint is valid */RtreeCursor::bPoint159306,5734767 - int iStrategy; /* Copy of idxNum search parameter */iStrategy159307,5734833 - int iStrategy; /* Copy of idxNum search parameter */RtreeCursor::iStrategy159307,5734833 - int nConstraint; /* Number of entries in aConstraint */nConstraint159308,5734907 - int nConstraint; /* Number of entries in aConstraint */RtreeCursor::nConstraint159308,5734907 - RtreeConstraint *aConstraint; /* Search constraints. */aConstraint159309,5734982 - RtreeConstraint *aConstraint; /* Search constraints. */RtreeCursor::aConstraint159309,5734982 - int nPointAlloc; /* Number of slots allocated for aPoint[] */nPointAlloc159310,5735044 - int nPointAlloc; /* Number of slots allocated for aPoint[] */RtreeCursor::nPointAlloc159310,5735044 - int nPoint; /* Number of slots used in aPoint[] */nPoint159311,5735125 - int nPoint; /* Number of slots used in aPoint[] */RtreeCursor::nPoint159311,5735125 - int mxLevel; /* iLevel value for root of the tree */mxLevel159312,5735200 - int mxLevel; /* iLevel value for root of the tree */RtreeCursor::mxLevel159312,5735200 - RtreeSearchPoint *aPoint; /* Priority queue for search points */aPoint159313,5735276 - RtreeSearchPoint *aPoint; /* Priority queue for search points */RtreeCursor::aPoint159313,5735276 - RtreeSearchPoint sPoint; /* Cached next search point */sPoint159314,5735351 - RtreeSearchPoint sPoint; /* Cached next search point */RtreeCursor::sPoint159314,5735351 - RtreeNode *aNode[RTREE_CACHE_SZ]; /* Rtree node cache */aNode159315,5735418 - RtreeNode *aNode[RTREE_CACHE_SZ]; /* Rtree node cache */RtreeCursor::aNode159315,5735418 - u32 anQueue[RTREE_MAX_DEPTH+1]; /* Number of queued entries by iLevel */anQueue159316,5735477 - u32 anQueue[RTREE_MAX_DEPTH+1]; /* Number of queued entries by iLevel */RtreeCursor::anQueue159316,5735477 -#define RTREE_OF_CURSOR(RTREE_OF_CURSOR159320,5735598 -union RtreeCoord {RtreeCoord159326,5735802 - RtreeValue f; /* Floating point value */f159327,5735821 - RtreeValue f; /* Floating point value */RtreeCoord::f159327,5735821 - int i; /* Integer value */i159328,5735869 - int i; /* Integer value */RtreeCoord::i159328,5735869 - u32 u; /* Unsigned for byte-order conversions */u159329,5735910 - u32 u; /* Unsigned for byte-order conversions */RtreeCoord::u159329,5735910 -# define DCOORD(DCOORD159339,5736255 -# define DCOORD(DCOORD159341,5736307 -struct RtreeConstraint {RtreeConstraint159351,5736564 - int iCoord; /* Index of constrained coordinate */iCoord159352,5736589 - int iCoord; /* Index of constrained coordinate */RtreeConstraint::iCoord159352,5736589 - int op; /* Constraining operation */op159353,5736661 - int op; /* Constraining operation */RtreeConstraint::op159353,5736661 - RtreeDValue rValue; /* Constraint value. */rValue159355,5736734 - RtreeDValue rValue; /* Constraint value. */RtreeConstraint::__anon479::rValue159355,5736734 - int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*);xGeom159356,5736794 - int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*);RtreeConstraint::__anon479::xGeom159356,5736794 - int (*xQueryFunc)(sqlite3_rtree_query_info*);xQueryFunc159357,5736859 - int (*xQueryFunc)(sqlite3_rtree_query_info*);RtreeConstraint::__anon479::xQueryFunc159357,5736859 - } u;u159358,5736909 - } u;RtreeConstraint::u159358,5736909 - sqlite3_rtree_query_info *pInfo; /* xGeom and xQueryFunc argument */pInfo159359,5736916 - sqlite3_rtree_query_info *pInfo; /* xGeom and xQueryFunc argument */RtreeConstraint::pInfo159359,5736916 -#define RTREE_EQ RTREE_EQ159363,5737037 -#define RTREE_LE RTREE_LE159364,5737071 -#define RTREE_LT RTREE_LT159365,5737105 -#define RTREE_GE RTREE_GE159366,5737139 -#define RTREE_GT RTREE_GT159367,5737173 -#define RTREE_MATCH RTREE_MATCH159368,5737207 -#define RTREE_QUERY RTREE_QUERY159369,5737286 -struct RtreeNode {RtreeNode159375,5737399 - RtreeNode *pParent; /* Parent node */pParent159376,5737418 - RtreeNode *pParent; /* Parent node */RtreeNode::pParent159376,5737418 - i64 iNode; /* The node number */iNode159377,5737466 - i64 iNode; /* The node number */RtreeNode::iNode159377,5737466 - int nRef; /* Number of references to this node */nRef159378,5737518 - int nRef; /* Number of references to this node */RtreeNode::nRef159378,5737518 - int isDirty; /* True if the node needs to be written to disk */isDirty159379,5737588 - int isDirty; /* True if the node needs to be written to disk */RtreeNode::isDirty159379,5737588 - u8 *zData; /* Content of the node, as should be on disk */zData159380,5737669 - u8 *zData; /* Content of the node, as should be on disk */RtreeNode::zData159380,5737669 - RtreeNode *pNext; /* Next node in this hash collision chain */pNext159381,5737747 - RtreeNode *pNext; /* Next node in this hash collision chain */RtreeNode::pNext159381,5737747 -#define NCELL(NCELL159385,5737870 -struct RtreeCell {RtreeCell159390,5737972 - i64 iRowid; /* Node or entry ID */iRowid159391,5737991 - i64 iRowid; /* Node or entry ID */RtreeCell::iRowid159391,5737991 - RtreeCoord aCoord[RTREE_MAX_DIMENSIONS*2]; /* Bounding box coordinates */aCoord159392,5738060 - RtreeCoord aCoord[RTREE_MAX_DIMENSIONS*2]; /* Bounding box coordinates */RtreeCell::aCoord159392,5738060 -struct RtreeGeomCallback {RtreeGeomCallback159410,5738751 - int (*xGeom)(sqlite3_rtree_geometry*, int, RtreeDValue*, int*);xGeom159411,5738778 - int (*xGeom)(sqlite3_rtree_geometry*, int, RtreeDValue*, int*);RtreeGeomCallback::xGeom159411,5738778 - int (*xQueryFunc)(sqlite3_rtree_query_info*);xQueryFunc159412,5738844 - int (*xQueryFunc)(sqlite3_rtree_query_info*);RtreeGeomCallback::xQueryFunc159412,5738844 - void (*xDestructor)(void*);xDestructor159413,5738892 - void (*xDestructor)(void*);RtreeGeomCallback::xDestructor159413,5738892 - void *pContext;pContext159414,5738922 - void *pContext;RtreeGeomCallback::pContext159414,5738922 -#define RTREE_GEOMETRY_MAGIC RTREE_GEOMETRY_MAGIC159423,5739168 -struct RtreeMatchArg {RtreeMatchArg159431,5739470 - u32 magic; /* Always RTREE_GEOMETRY_MAGIC */magic159432,5739493 - u32 magic; /* Always RTREE_GEOMETRY_MAGIC */RtreeMatchArg::magic159432,5739493 - RtreeGeomCallback cb; /* Info about the callback functions */cb159433,5739557 - RtreeGeomCallback cb; /* Info about the callback functions */RtreeMatchArg::cb159433,5739557 - int nParam; /* Number of parameters to the SQL function */nParam159434,5739627 - int nParam; /* Number of parameters to the SQL function */RtreeMatchArg::nParam159434,5739627 - sqlite3_value **apSqlParam; /* Original SQL parameter values */apSqlParam159435,5739704 - sqlite3_value **apSqlParam; /* Original SQL parameter values */RtreeMatchArg::apSqlParam159435,5739704 - RtreeDValue aParam[1]; /* Values for parameters to the SQL function */aParam159436,5739770 - RtreeDValue aParam[1]; /* Values for parameters to the SQL function */RtreeMatchArg::aParam159436,5739770 -# define MAX(MAX159440,5739864 -# define MIN(MIN159443,5739925 -static int readInt16(u8 *p){readInt16159450,5740105 -static void readCoord(u8 *p, RtreeCoord *pCoord){readCoord159453,5740163 -static i64 readInt64(u8 *p){readInt64159461,5740341 -static int writeInt16(u8 *p, int i){writeInt16159479,5740804 -static int writeCoord(u8 *p, RtreeCoord *pCoord){writeCoord159484,5740901 -static int writeInt64(u8 *p, i64 i){writeInt64159495,5741146 -static void nodeReference(RtreeNode *p){nodeReference159510,5741432 -static void nodeZero(Rtree *pRtree, RtreeNode *p){nodeZero159519,5741568 -static int nodeHash(i64 iNode){nodeHash159528,5741789 -static RtreeNode *nodeHashLookup(Rtree *pRtree, i64 iNode){nodeHashLookup159536,5741961 -static void nodeHashInsert(Rtree *pRtree, RtreeNode *pNode){nodeHashInsert159545,5742175 -static void nodeHashDelete(Rtree *pRtree, RtreeNode *pNode){nodeHashDelete159556,5742439 -static RtreeNode *nodeNew(Rtree *pRtree, RtreeNode *pParent){nodeNew159572,5742960 -static int nodeAcquire(nodeAcquire159589,5743405 -static void nodeOverwriteCell(nodeOverwriteCell159677,5746028 -static void nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell){nodeDeleteCell159695,5746607 -static int nodeInsertCell(nodeInsertCell159710,5747132 -static int nodeWrite(Rtree *pRtree, RtreeNode *pNode){nodeWrite159734,5747845 -static int nodeRelease(Rtree *pRtree, RtreeNode *pNode){nodeRelease159759,5748567 -static i64 nodeGetRowid(nodeGetRowid159786,5749257 -static void nodeGetCoord(nodeGetCoord159798,5749641 -static void nodeGetCell(nodeGetCell159812,5750209 -static int rtreeCreate(rtreeCreate159840,5751068 -static int rtreeConnect(rtreeConnect159853,5751317 -static void rtreeReference(Rtree *pRtree){rtreeReference159866,5751560 -static void rtreeRelease(Rtree *pRtree){rtreeRelease159874,5751739 -static int rtreeDisconnect(sqlite3_vtab *pVtab){rtreeDisconnect159893,5752302 -static int rtreeDestroy(sqlite3_vtab *pVtab){rtreeDestroy159901,5752460 -static int rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){rtreeOpen159928,5753044 -static void freeCursorConstraints(RtreeCursor *pCsr){freeCursorConstraints159947,5753466 -static int rtreeClose(sqlite3_vtab_cursor *cur){rtreeClose159965,5753982 -static int rtreeEof(sqlite3_vtab_cursor *cur){rtreeEof159982,5754488 -#define RTREE_DECODE_COORD(RTREE_DECODE_COORD160004,5755503 -#define RTREE_DECODE_COORD(RTREE_DECODE_COORD160012,5755959 -#define RTREE_DECODE_COORD(RTREE_DECODE_COORD160018,5756231 -static int rtreeCallbackConstraint(rtreeCallbackConstraint160030,5756682 -static void rtreeNonleafConstraint(rtreeNonleafConstraint160078,5758702 -static void rtreeLeafConstraint(rtreeLeafConstraint160122,5760377 -static int nodeRowidIndex(nodeRowidIndex160148,5761423 -static int nodeParentIndex(Rtree *pRtree, RtreeNode *pNode, int *piIndex){nodeParentIndex160170,5761879 -static int rtreeSearchPointCompare(rtreeSearchPointCompare160189,5762622 -static void rtreeSearchPointSwap(RtreeCursor *p, int i, int j){rtreeSearchPointSwap160203,5762950 -static RtreeSearchPoint *rtreeSearchPointFirst(RtreeCursor *pCur){rtreeSearchPointFirst160224,5763447 -static RtreeNode *rtreeNodeOfFirstSearchPoint(RtreeCursor *pCur, int *pRC){rtreeNodeOfFirstSearchPoint160231,5763661 -static RtreeSearchPoint *rtreeEnqueue(rtreeEnqueue160247,5764115 -static RtreeSearchPoint *rtreeSearchPointNew(rtreeSearchPointNew160282,5765082 -# define RTREE_QUEUE_TRACE(RTREE_QUEUE_TRACE160344,5766857 -static void rtreeSearchPointPop(RtreeCursor *p){rtreeSearchPointPop160349,5766972 -static int rtreeStepToLeaf(RtreeCursor *pCur){rtreeStepToLeaf160397,5768208 -static int rtreeNext(sqlite3_vtab_cursor *pVtabCursor){rtreeNext160467,5770309 -static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){rtreeRowid160481,5770675 -static int rtreeColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){rtreeColumn160495,5771109 -static int findLeafNode(findLeafNode160530,5772239 -static int deserializeGeometry(sqlite3_value *pValue, RtreeConstraint *pCons){deserializeGeometry160556,5773122 -static int rtreeFilter(rtreeFilter160602,5774693 -static void setEstimatedRows(sqlite3_index_info *pIdxInfo, i64 nRow){setEstimatedRows160708,5778210 -static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){rtreeBestIndex160750,5779658 -static RtreeDValue cellArea(Rtree *pRtree, RtreeCell *p){cellArea160835,5782642 -static RtreeDValue cellMargin(Rtree *pRtree, RtreeCell *p){cellMargin160848,5782997 -static void cellUnion(Rtree *pRtree, RtreeCell *p1, RtreeCell *p2){cellUnion160860,5783287 -static int cellContains(Rtree *pRtree, RtreeCell *p1, RtreeCell *p2){cellContains160879,5783909 -static RtreeDValue cellGrowth(Rtree *pRtree, RtreeCell *p, RtreeCell *pCell){cellGrowth160897,5784404 -static RtreeDValue cellOverlap(cellOverlap160906,5784672 -static int ChooseLeaf(ChooseLeaf160938,5785383 -static int AdjustTree(AdjustTree160998,5787009 -static int rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode){rowidWrite161027,5787747 -static int parentWrite(Rtree *pRtree, sqlite3_int64 iNode, sqlite3_int64 iPar){parentWrite161037,5788086 -static void SortByDistance(SortByDistance161064,5788990 -static void SortByDimension(SortByDimension161130,5790675 -static int splitNodeStartree(splitNodeStartree161189,5792310 -static int updateMapping(updateMapping161287,5794951 -static int SplitNode(SplitNode161306,5795425 -static int fixLeafParent(Rtree *pRtree, RtreeNode *pLeaf){fixLeafParent161453,5799413 -static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){removeNode161485,5800705 -static int fixBoundingBox(Rtree *pRtree, RtreeNode *pNode){fixBoundingBox161534,5801962 -static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){deleteCell161561,5802755 -static int Reinsert(Reinsert161592,5803595 -static int rtreeInsertCell(rtreeInsertCell161697,5806533 -static int reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode){reinsertNodeContent161732,5807414 -static int newRowid(Rtree *pRtree, i64 *piRowid){newRowid161761,5808172 -static int rtreeDeleteRowid(Rtree *pRtree, sqlite3_int64 iDelete){rtreeDeleteRowid161774,5808542 -#define RNDTOWARDS RNDTOWARDS161858,5811076 -#define RNDAWAY RNDAWAY161859,5811144 -static RtreeValue rtreeValueDown(sqlite3_value *v){rtreeValueDown161866,5811398 -static RtreeValue rtreeValueUp(sqlite3_value *v){rtreeValueUp161874,5811590 -static int rtreeUpdate(rtreeUpdate161888,5811888 -static int rtreeRename(sqlite3_vtab *pVtab, const char *zNewName){rtreeRename162019,5815993 -static int rtreeQueryStat1(sqlite3 *db, Rtree *pRtree){rtreeQueryStat1162042,5816781 -static sqlite3_module rtreeModule = {rtreeModule162074,5817552 -static int rtreeSqlInit(rtreeSqlInit162100,5818980 - #define N_STATEMENT N_STATEMENT162109,5819124 -static int getIntFromStmt(sqlite3 *db, const char *zSql, int *piVal){getIntFromStmt162181,5821603 -static int getNodeSize(getNodeSize162211,5822746 -static int rtreeInit(rtreeInit162255,5824071 -static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){rtreenode162362,5827776 -static void rtreedepth(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){rtreedepth162416,5829424 -SQLITE_PRIVATE int sqlite3RtreeInit(sqlite3 *db){sqlite3RtreeInit162433,5829978 -static void rtreeFreeCallback(void *p){rtreeFreeCallback162464,5830981 -static void rtreeMatchArgFree(void *pArg){rtreeMatchArgFree162473,5831232 -static void geomCallback(sqlite3_context *ctx, int nArg, sqlite3_value **aArg){geomCallback162496,5832036 -SQLITE_API int SQLITE_STDCALL sqlite3_rtree_geometry_callback(sqlite3_rtree_geometry_callback162534,5833187 -SQLITE_API int SQLITE_STDCALL sqlite3_rtree_query_callback(sqlite3_rtree_query_callback162558,5834152 -__declspec(dllexport)__declspec162581,5835106 -# define SQLITE_MAX_LIKE_PATTERN_LENGTH SQLITE_MAX_LIKE_PATTERN_LENGTH162649,5837016 -static void xFree(void *p){xFree162655,5837147 -static const unsigned char icuUtf8Trans1[] = {icuUtf8Trans1162664,5837355 -#define SQLITE_ICU_READ_UTF8(SQLITE_ICU_READ_UTF8162675,5837806 -#define SQLITE_ICU_SKIP_UTF8(SQLITE_ICU_SKIP_UTF8162684,5838238 -static int icuLikeCompare(icuLikeCompare162696,5838664 -static void icuLikeFunc(icuLikeFunc162784,5841138 -static void icuFunctionError(icuFunctionError162830,5842468 -static void icuRegexpDelete(void *p){icuRegexpDelete162845,5842990 -static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){icuRegexpFunc162869,5843749 -static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){icuCaseFunc16162952,5846288 -static void icuCollationDel(void *pCtx){icuCollationDel163010,5848036 -static int icuCollationColl(icuCollationColl163019,5848275 -static void icuLoadCollation(icuLoadCollation163051,5849189 -SQLITE_PRIVATE int sqlite3IcuInit(sqlite3 *db){sqlite3IcuInit163091,5850339 -__declspec(dllexport)__declspec163132,5851803 -typedef struct IcuTokenizer IcuTokenizer;IcuTokenizer163174,5852953 -typedef struct IcuCursor IcuCursor;IcuCursor163175,5852995 -struct IcuTokenizer {IcuTokenizer163177,5853032 - sqlite3_tokenizer base;base163178,5853054 - sqlite3_tokenizer base;IcuTokenizer::base163178,5853054 - char *zLocale;zLocale163179,5853080 - char *zLocale;IcuTokenizer::zLocale163179,5853080 -struct IcuCursor {IcuCursor163182,5853101 - sqlite3_tokenizer_cursor base;base163183,5853120 - sqlite3_tokenizer_cursor base;IcuCursor::base163183,5853120 - UBreakIterator *pIter; /* ICU break-iterator object */pIter163185,5853154 - UBreakIterator *pIter; /* ICU break-iterator object */IcuCursor::pIter163185,5853154 - int nChar; /* Number of UChar elements in pInput */nChar163186,5853216 - int nChar; /* Number of UChar elements in pInput */IcuCursor::nChar163186,5853216 - UChar *aChar; /* Copy of input using utf-16 encoding */aChar163187,5853287 - UChar *aChar; /* Copy of input using utf-16 encoding */IcuCursor::aChar163187,5853287 - int *aOffset; /* Offsets of each character in utf-8 input */aOffset163188,5853359 - int *aOffset; /* Offsets of each character in utf-8 input */IcuCursor::aOffset163188,5853359 - int nBuffer;nBuffer163190,5853437 - int nBuffer;IcuCursor::nBuffer163190,5853437 - char *zBuffer;zBuffer163191,5853452 - char *zBuffer;IcuCursor::zBuffer163191,5853452 - int iToken;iToken163193,5853470 - int iToken;IcuCursor::iToken163193,5853470 -static int icuCreate(icuCreate163199,5853530 -static int icuDestroy(sqlite3_tokenizer *pTokenizer){icuDestroy163229,5854170 -static int icuOpen(icuOpen163241,5854519 -static int icuClose(sqlite3_tokenizer_cursor *pCursor){icuClose163313,5856331 -static int icuNext(icuNext163324,5856592 -static const sqlite3_tokenizer_module icuTokenizerModule = {icuTokenizerModule163389,5858320 -SQLITE_PRIVATE void sqlite3Fts3IcuTokenizerModule(sqlite3Fts3IcuTokenizerModule163402,5858804 -#define _SQLITE3RBU_H_SQLITE3RBU_H163771,5875813 -typedef struct sqlite3rbu sqlite3rbu;sqlite3rbu163779,5875946 -#define SQLITE_RBU_UPDATE_CACHESIZE SQLITE_RBU_UPDATE_CACHESIZE164048,5888123 -# define SWAP(SWAP164054,5888237 -#define RBU_STATE_STAGE RBU_STATE_STAGE164101,5889893 -#define RBU_STATE_TBL RBU_STATE_TBL164102,5889926 -#define RBU_STATE_IDX RBU_STATE_IDX164103,5889959 -#define RBU_STATE_ROW RBU_STATE_ROW164104,5889992 -#define RBU_STATE_PROGRESS RBU_STATE_PROGRESS164105,5890025 -#define RBU_STATE_CKPT RBU_STATE_CKPT164106,5890058 -#define RBU_STATE_COOKIE RBU_STATE_COOKIE164107,5890091 -#define RBU_STATE_OALSZ RBU_STATE_OALSZ164108,5890124 -#define RBU_STATE_PHASEONESTEP RBU_STATE_PHASEONESTEP164109,5890157 -#define RBU_STAGE_OAL RBU_STAGE_OAL164111,5890191 -#define RBU_STAGE_MOVE RBU_STAGE_MOVE164112,5890223 -#define RBU_STAGE_CAPTURE RBU_STAGE_CAPTURE164113,5890255 -#define RBU_STAGE_CKPT RBU_STAGE_CKPT164114,5890287 -#define RBU_STAGE_DONE RBU_STAGE_DONE164115,5890319 -#define RBU_CREATE_STATE RBU_CREATE_STATE164118,5890353 -typedef struct RbuFrame RbuFrame;RbuFrame164121,5890451 -typedef struct RbuObjIter RbuObjIter;RbuObjIter164122,5890485 -typedef struct RbuState RbuState;RbuState164123,5890523 -typedef struct rbu_vfs rbu_vfs;rbu_vfs164124,5890557 -typedef struct rbu_file rbu_file;rbu_file164125,5890589 -typedef struct RbuUpdateStmt RbuUpdateStmt;RbuUpdateStmt164126,5890623 -typedef unsigned int u32;u32164129,5890702 -typedef unsigned short u16;u16164130,5890728 -typedef unsigned char u8;u8164131,5890756 -typedef sqlite3_int64 i64;i64164132,5890782 -#define WAL_LOCK_WRITE WAL_LOCK_WRITE164140,5890982 -#define WAL_LOCK_CKPT WAL_LOCK_CKPT164141,5891008 -#define WAL_LOCK_READ0 WAL_LOCK_READ0164142,5891034 -#define SQLITE_FCNTL_RBUCNT SQLITE_FCNTL_RBUCNT164144,5891061 -struct RbuState {RbuState164149,5891179 - int eStage;eStage164150,5891197 - int eStage;RbuState::eStage164150,5891197 - char *zTbl;zTbl164151,5891211 - char *zTbl;RbuState::zTbl164151,5891211 - char *zIdx;zIdx164152,5891225 - char *zIdx;RbuState::zIdx164152,5891225 - i64 iWalCksum;iWalCksum164153,5891239 - i64 iWalCksum;RbuState::iWalCksum164153,5891239 - int nRow;nRow164154,5891256 - int nRow;RbuState::nRow164154,5891256 - i64 nProgress;nProgress164155,5891268 - i64 nProgress;RbuState::nProgress164155,5891268 - u32 iCookie;iCookie164156,5891285 - u32 iCookie;RbuState::iCookie164156,5891285 - i64 iOalSz;iOalSz164157,5891300 - i64 iOalSz;RbuState::iOalSz164157,5891300 - i64 nPhaseOneStep;nPhaseOneStep164158,5891314 - i64 nPhaseOneStep;RbuState::nPhaseOneStep164158,5891314 -struct RbuUpdateStmt {RbuUpdateStmt164161,5891339 - char *zMask; /* Copy of update mask used with pUpdate */zMask164162,5891362 - char *zMask; /* Copy of update mask used with pUpdate */RbuUpdateStmt::zMask164162,5891362 - sqlite3_stmt *pUpdate; /* Last update statement (or NULL) */pUpdate164163,5891440 - sqlite3_stmt *pUpdate; /* Last update statement (or NULL) */RbuUpdateStmt::pUpdate164163,5891440 - RbuUpdateStmt *pNext;pNext164164,5891512 - RbuUpdateStmt *pNext;RbuUpdateStmt::pNext164164,5891512 -struct RbuObjIter {RbuObjIter164183,5892138 - sqlite3_stmt *pTblIter; /* Iterate through tables */pTblIter164184,5892158 - sqlite3_stmt *pTblIter; /* Iterate through tables */RbuObjIter::pTblIter164184,5892158 - sqlite3_stmt *pIdxIter; /* Index iterator */pIdxIter164185,5892221 - sqlite3_stmt *pIdxIter; /* Index iterator */RbuObjIter::pIdxIter164185,5892221 - int nTblCol; /* Size of azTblCol[] array */nTblCol164186,5892276 - int nTblCol; /* Size of azTblCol[] array */RbuObjIter::nTblCol164186,5892276 - char **azTblCol; /* Array of unquoted target column names */azTblCol164187,5892341 - char **azTblCol; /* Array of unquoted target column names */RbuObjIter::azTblCol164187,5892341 - char **azTblType; /* Array of target column types */azTblType164188,5892419 - char **azTblType; /* Array of target column types */RbuObjIter::azTblType164188,5892419 - int *aiSrcOrder; /* src table col -> target table col */aiSrcOrder164189,5892488 - int *aiSrcOrder; /* src table col -> target table col */RbuObjIter::aiSrcOrder164189,5892488 - u8 *abTblPk; /* Array of flags, set on target PK columns */abTblPk164190,5892562 - u8 *abTblPk; /* Array of flags, set on target PK columns */RbuObjIter::abTblPk164190,5892562 - u8 *abNotNull; /* Array of flags, set on NOT NULL columns */abNotNull164191,5892643 - u8 *abNotNull; /* Array of flags, set on NOT NULL columns */RbuObjIter::abNotNull164191,5892643 - u8 *abIndexed; /* Array of flags, set on indexed & PK cols */abIndexed164192,5892723 - u8 *abIndexed; /* Array of flags, set on indexed & PK cols */RbuObjIter::abIndexed164192,5892723 - int eType; /* Table type - an RBU_PK_XXX value */eType164193,5892804 - int eType; /* Table type - an RBU_PK_XXX value */RbuObjIter::eType164193,5892804 - int bCleanup; /* True in "cleanup" state */bCleanup164196,5892925 - int bCleanup; /* True in "cleanup" state */RbuObjIter::bCleanup164196,5892925 - const char *zTbl; /* Name of target db table */zTbl164197,5892989 - const char *zTbl; /* Name of target db table */RbuObjIter::zTbl164197,5892989 - const char *zDataTbl; /* Name of rbu db table (or null) */zDataTbl164198,5893053 - const char *zDataTbl; /* Name of rbu db table (or null) */RbuObjIter::zDataTbl164198,5893053 - const char *zIdx; /* Name of target db index (or null) */zIdx164199,5893124 - const char *zIdx; /* Name of target db index (or null) */RbuObjIter::zIdx164199,5893124 - int iTnum; /* Root page of current object */iTnum164200,5893198 - int iTnum; /* Root page of current object */RbuObjIter::iTnum164200,5893198 - int iPkTnum; /* If eType==EXTERNAL, root of PK index */iPkTnum164201,5893266 - int iPkTnum; /* If eType==EXTERNAL, root of PK index */RbuObjIter::iPkTnum164201,5893266 - int bUnique; /* Current index is unique */bUnique164202,5893343 - int bUnique; /* Current index is unique */RbuObjIter::bUnique164202,5893343 - int nIndex; /* Number of aux. indexes on table zTbl */nIndex164203,5893407 - int nIndex; /* Number of aux. indexes on table zTbl */RbuObjIter::nIndex164203,5893407 - int nCol; /* Number of columns in current object */nCol164206,5893538 - int nCol; /* Number of columns in current object */RbuObjIter::nCol164206,5893538 - sqlite3_stmt *pSelect; /* Source data */pSelect164207,5893614 - sqlite3_stmt *pSelect; /* Source data */RbuObjIter::pSelect164207,5893614 - sqlite3_stmt *pInsert; /* Statement for INSERT operations */pInsert164208,5893666 - sqlite3_stmt *pInsert; /* Statement for INSERT operations */RbuObjIter::pInsert164208,5893666 - sqlite3_stmt *pDelete; /* Statement for DELETE ops */pDelete164209,5893738 - sqlite3_stmt *pDelete; /* Statement for DELETE ops */RbuObjIter::pDelete164209,5893738 - sqlite3_stmt *pTmpInsert; /* Insert into rbu_tmp_$zDataTbl */pTmpInsert164210,5893803 - sqlite3_stmt *pTmpInsert; /* Insert into rbu_tmp_$zDataTbl */RbuObjIter::pTmpInsert164210,5893803 - RbuUpdateStmt *pRbuUpdate;pRbuUpdate164213,5893938 - RbuUpdateStmt *pRbuUpdate;RbuObjIter::pRbuUpdate164213,5893938 -#define RBU_PK_NOTABLE RBU_PK_NOTABLE164226,5894245 -#define RBU_PK_NONE RBU_PK_NONE164227,5894277 -#define RBU_PK_IPK RBU_PK_IPK164228,5894309 -#define RBU_PK_EXTERNAL RBU_PK_EXTERNAL164229,5894341 -#define RBU_PK_WITHOUT_ROWID RBU_PK_WITHOUT_ROWID164230,5894373 -#define RBU_PK_VTAB RBU_PK_VTAB164231,5894405 -#define RBU_INSERT RBU_INSERT164238,5894556 -#define RBU_DELETE RBU_DELETE164239,5894626 -#define RBU_REPLACE RBU_REPLACE164240,5894704 -#define RBU_IDX_DELETE RBU_IDX_DELETE164241,5894773 -#define RBU_IDX_INSERT RBU_IDX_INSERT164242,5894852 -#define RBU_UPDATE RBU_UPDATE164244,5894924 -struct RbuFrame {RbuFrame164250,5895145 - u32 iDbPage;iDbPage164251,5895163 - u32 iDbPage;RbuFrame::iDbPage164251,5895163 - u32 iWalFrame;iWalFrame164252,5895178 - u32 iWalFrame;RbuFrame::iWalFrame164252,5895178 -struct sqlite3rbu {sqlite3rbu164295,5896892 - int eStage; /* Value of RBU_STATE_STAGE field */eStage164296,5896912 - int eStage; /* Value of RBU_STATE_STAGE field */sqlite3rbu::eStage164296,5896912 - sqlite3 *dbMain; /* target database handle */dbMain164297,5896983 - sqlite3 *dbMain; /* target database handle */sqlite3rbu::dbMain164297,5896983 - sqlite3 *dbRbu; /* rbu database handle */dbRbu164298,5897046 - sqlite3 *dbRbu; /* rbu database handle */sqlite3rbu::dbRbu164298,5897046 - char *zTarget; /* Path to target db */zTarget164299,5897106 - char *zTarget; /* Path to target db */sqlite3rbu::zTarget164299,5897106 - char *zRbu; /* Path to rbu db */zRbu164300,5897164 - char *zRbu; /* Path to rbu db */sqlite3rbu::zRbu164300,5897164 - char *zState; /* Path to state db (or NULL if zRbu) */zState164301,5897219 - char *zState; /* Path to state db (or NULL if zRbu) */sqlite3rbu::zState164301,5897219 - char zStateDb[5]; /* Db name for state ("stat" or "main") */zStateDb164302,5897294 - char zStateDb[5]; /* Db name for state ("stat" or "main") */sqlite3rbu::zStateDb164302,5897294 - int rc; /* Value returned by last rbu_step() call */rc164303,5897371 - int rc; /* Value returned by last rbu_step() call */sqlite3rbu::rc164303,5897371 - char *zErrmsg; /* Error message if rc!=SQLITE_OK */zErrmsg164304,5897450 - char *zErrmsg; /* Error message if rc!=SQLITE_OK */sqlite3rbu::zErrmsg164304,5897450 - int nStep; /* Rows processed for current object */nStep164305,5897521 - int nStep; /* Rows processed for current object */sqlite3rbu::nStep164305,5897521 - int nProgress; /* Rows processed for all objects */nProgress164306,5897595 - int nProgress; /* Rows processed for all objects */sqlite3rbu::nProgress164306,5897595 - RbuObjIter objiter; /* Iterator for skipping through tbl/idx */objiter164307,5897666 - RbuObjIter objiter; /* Iterator for skipping through tbl/idx */sqlite3rbu::objiter164307,5897666 - const char *zVfsName; /* Name of automatically created rbu vfs */zVfsName164308,5897744 - const char *zVfsName; /* Name of automatically created rbu vfs */sqlite3rbu::zVfsName164308,5897744 - rbu_file *pTargetFd; /* File handle open on target db */pTargetFd164309,5897822 - rbu_file *pTargetFd; /* File handle open on target db */sqlite3rbu::pTargetFd164309,5897822 - i64 iOalSz;iOalSz164310,5897892 - i64 iOalSz;sqlite3rbu::iOalSz164310,5897892 - i64 nPhaseOneStep;nPhaseOneStep164311,5897906 - i64 nPhaseOneStep;sqlite3rbu::nPhaseOneStep164311,5897906 - u32 iMaxFrame; /* Largest iWalFrame value in aFrame[] */iMaxFrame164316,5898124 - u32 iMaxFrame; /* Largest iWalFrame value in aFrame[] */sqlite3rbu::iMaxFrame164316,5898124 - u32 mLock;mLock164317,5898200 - u32 mLock;sqlite3rbu::mLock164317,5898200 - int nFrame; /* Entries in aFrame[] array */nFrame164318,5898213 - int nFrame; /* Entries in aFrame[] array */sqlite3rbu::nFrame164318,5898213 - int nFrameAlloc; /* Allocated size of aFrame[] array */nFrameAlloc164319,5898279 - int nFrameAlloc; /* Allocated size of aFrame[] array */sqlite3rbu::nFrameAlloc164319,5898279 - RbuFrame *aFrame;aFrame164320,5898352 - RbuFrame *aFrame;sqlite3rbu::aFrame164320,5898352 - int pgsz;pgsz164321,5898372 - int pgsz;sqlite3rbu::pgsz164321,5898372 - u8 *aBuf;aBuf164322,5898384 - u8 *aBuf;sqlite3rbu::aBuf164322,5898384 - i64 iWalCksum;iWalCksum164323,5898396 - i64 iWalCksum;sqlite3rbu::iWalCksum164323,5898396 - int nRbu; /* Number of RBU VFS in the stack */nRbu164326,5898451 - int nRbu; /* Number of RBU VFS in the stack */sqlite3rbu::nRbu164326,5898451 - rbu_file *pRbuFd; /* Fd for main db of dbRbu */pRbuFd164327,5898522 - rbu_file *pRbuFd; /* Fd for main db of dbRbu */sqlite3rbu::pRbuFd164327,5898522 -struct rbu_vfs {rbu_vfs164333,5898662 - sqlite3_vfs base; /* rbu VFS shim methods */base164334,5898679 - sqlite3_vfs base; /* rbu VFS shim methods */rbu_vfs::base164334,5898679 - sqlite3_vfs *pRealVfs; /* Underlying VFS */pRealVfs164335,5898740 - sqlite3_vfs *pRealVfs; /* Underlying VFS */rbu_vfs::pRealVfs164335,5898740 - sqlite3_mutex *mutex; /* Mutex to protect pMain */mutex164336,5898795 - sqlite3_mutex *mutex; /* Mutex to protect pMain */rbu_vfs::mutex164336,5898795 - rbu_file *pMain; /* Linked list of main db files */pMain164337,5898858 - rbu_file *pMain; /* Linked list of main db files */rbu_vfs::pMain164337,5898858 -struct rbu_file {rbu_file164344,5899032 - sqlite3_file base; /* sqlite3_file methods */base164345,5899050 - sqlite3_file base; /* sqlite3_file methods */rbu_file::base164345,5899050 - sqlite3_file *pReal; /* Underlying file handle */pReal164346,5899111 - sqlite3_file *pReal; /* Underlying file handle */rbu_file::pReal164346,5899111 - rbu_vfs *pRbuVfs; /* Pointer to the rbu_vfs object */pRbuVfs164347,5899174 - rbu_vfs *pRbuVfs; /* Pointer to the rbu_vfs object */rbu_file::pRbuVfs164347,5899174 - sqlite3rbu *pRbu; /* Pointer to rbu object (rbu target only) */pRbu164348,5899244 - sqlite3rbu *pRbu; /* Pointer to rbu object (rbu target only) */rbu_file::pRbu164348,5899244 - int openFlags; /* Flags this file was opened with */openFlags164350,5899325 - int openFlags; /* Flags this file was opened with */rbu_file::openFlags164350,5899325 - u32 iCookie; /* Cookie value for main db files */iCookie164351,5899397 - u32 iCookie; /* Cookie value for main db files */rbu_file::iCookie164351,5899397 - u8 iWriteVer; /* "write-version" value for main db files */iWriteVer164352,5899468 - u8 iWriteVer; /* "write-version" value for main db files */rbu_file::iWriteVer164352,5899468 - u8 bNolock; /* True to fail EXCLUSIVE locks */bNolock164353,5899548 - u8 bNolock; /* True to fail EXCLUSIVE locks */rbu_file::bNolock164353,5899548 - int nShm; /* Number of entries in apShm[] array */nShm164355,5899618 - int nShm; /* Number of entries in apShm[] array */rbu_file::nShm164355,5899618 - char **apShm; /* Array of mmap'd *-shm regions */apShm164356,5899693 - char **apShm; /* Array of mmap'd *-shm regions */rbu_file::apShm164356,5899693 - char *zDel; /* Delete this when closing file */zDel164357,5899763 - char *zDel; /* Delete this when closing file */rbu_file::zDel164357,5899763 - const char *zWal; /* Wal filename for this main db file */zWal164359,5899834 - const char *zWal; /* Wal filename for this main db file */rbu_file::zWal164359,5899834 - rbu_file *pWalFd; /* Wal file descriptor for this main db */pWalFd164360,5899909 - rbu_file *pWalFd; /* Wal file descriptor for this main db */rbu_file::pWalFd164360,5899909 - rbu_file *pMainNext; /* Next MAIN_DB file */pMainNext164361,5899986 - rbu_file *pMainNext; /* Next MAIN_DB file */rbu_file::pMainNext164361,5899986 -#define rbuIsVacuum(rbuIsVacuum164367,5900108 -static unsigned int rbuDeltaGetInt(const char **pz, int *pLen){rbuDeltaGetInt164387,5900776 -static unsigned int rbuDeltaChecksum(const char *zIn, size_t N){rbuDeltaChecksum164414,5901753 -static int rbuDeltaApply(rbuDeltaApply164466,5903335 -static int rbuDeltaOutputSize(const char *zDelta, int lenDelta){rbuDeltaOutputSize164552,5905683 -static void rbuFossilDeltaFunc(rbuFossilDeltaFunc164574,5906348 -static int prepareAndCollectError(prepareAndCollectError164626,5907742 -static int resetAndCollectError(sqlite3_stmt *pStmt, char **pzErrmsg){resetAndCollectError164648,5908355 -static int prepareFreeAndCollectError(prepareFreeAndCollectError164671,5909329 -static void rbuObjIterFreeCols(RbuObjIter *pIter){rbuObjIterFreeCols164693,5909786 -static void rbuObjIterClearStatements(RbuObjIter *pIter){rbuObjIterClearStatements164713,5910313 -static void rbuObjIterFinalize(RbuObjIter *pIter){rbuObjIterFinalize164740,5910947 -static int rbuObjIterNext(sqlite3rbu *p, RbuObjIter *pIter){rbuObjIterNext164756,5911476 -static void rbuTargetNameFunc(rbuTargetNameFunc164836,5914183 -static int rbuObjIterFirst(sqlite3rbu *p, RbuObjIter *pIter){rbuObjIterFirst164871,5915171 -static char *rbuMPrintf(sqlite3rbu *p, const char *zFmt, ...){rbuMPrintf164904,5916323 -static int rbuMPrintfExec(sqlite3rbu *p, sqlite3 *db, const char *zFmt, ...){rbuMPrintfExec164929,5917059 -static void *rbuMalloc(sqlite3rbu *p, int nByte){rbuMalloc164956,5917829 -static void rbuAllocateIterArrays(sqlite3rbu *p, RbuObjIter *pIter, int nCol){rbuAllocateIterArrays164976,5918311 -static char *rbuStrndup(const char *zStr, int *pRc){rbuStrndup165001,5919273 -static void rbuFinalize(sqlite3rbu *p, sqlite3_stmt *pStmt){rbuFinalize165025,5919822 -static void rbuTableType(rbuTableType165073,5921644 -static void rbuObjIterCacheIndexedCols(sqlite3rbu *p, RbuObjIter *pIter){rbuObjIterCacheIndexedCols165157,5924098 -static int rbuObjIterCacheTableInfo(sqlite3rbu *p, RbuObjIter *pIter){rbuObjIterCacheTableInfo165204,5925638 -static char *rbuObjIterGetCollist(rbuObjIterGetCollist165313,5929673 -static char *rbuObjIterGetIndexCols(rbuObjIterGetIndexCols165352,5930931 -static char *rbuObjIterGetOldlist(rbuObjIterGetOldlist165456,5934430 -static char *rbuObjIterGetWhere(rbuObjIterGetWhere165497,5935481 -static void rbuBadControlError(sqlite3rbu *p){rbuBadControlError165538,5936708 -static char *rbuObjIterGetSetlist(rbuObjIterGetSetlist165561,5937708 -static char *rbuObjIterGetBindlist(sqlite3rbu *p, int nBind){rbuObjIterGetBindlist165615,5939405 -static char *rbuWithoutRowidPK(sqlite3rbu *p, RbuObjIter *pIter){rbuWithoutRowidPK165642,5940086 -static void rbuCreateImposterTable2(sqlite3rbu *p, RbuObjIter *pIter){rbuCreateImposterTable2165701,5942279 -static void rbuCreateImposterTable(sqlite3rbu *p, RbuObjIter *pIter){rbuCreateImposterTable165775,5945594 -static void rbuObjIterPrepareTmpInsert(rbuObjIterPrepareTmpInsert165831,5947570 -static void rbuTmpInsertFunc(rbuTmpInsertFunc165849,5948166 -static int rbuObjIterPrepareAll(rbuObjIterPrepareAll165884,5949039 -static int rbuGetUpdateStmt(rbuGetUpdateStmt166106,5957052 -static sqlite3 *rbuOpenDbhandle(rbuOpenDbhandle166174,5959021 -static void rbuFreeState(RbuState *p){rbuFreeState166195,5959517 -static RbuState *rbuLoadState(sqlite3rbu *p){rbuLoadState166212,5959974 -static void rbuOpenDatabase(sqlite3rbu *p){rbuOpenDatabase166285,5961860 -static void rbuFileSuffix3(const char *zBase, char *z){rbuFileSuffix3166452,5966775 -static i64 rbuShmChecksum(sqlite3rbu *p){rbuShmChecksum166473,5967352 -static void rbuSetupCheckpoint(sqlite3rbu *p, RbuState *pState){rbuSetupCheckpoint166502,5968455 -static int rbuCaptureWalRead(sqlite3rbu *pRbu, i64 iOff, int iAmt){rbuCaptureWalRead166567,5970981 -static int rbuCaptureDbWrite(sqlite3rbu *pRbu, i64 iOff){rbuCaptureDbWrite166599,5971999 -static void rbuCheckpointFrame(sqlite3rbu *p, RbuFrame *pFrame){rbuCheckpointFrame166609,5972336 -static void rbuLockDatabase(sqlite3rbu *p){rbuLockDatabase166627,5972854 -static LPWSTR rbuWinUtf8ToUnicode(const char *zFilename){rbuWinUtf8ToUnicode166637,5973157 -static void rbuMoveOalFile(sqlite3rbu *p){rbuMoveOalFile166667,5974070 -static int rbuStepType(sqlite3rbu *p, const char **pzMask){rbuStepType166758,5976665 -static void assertColumnName(sqlite3_stmt *pStmt, int iCol, const char *zName){assertColumnName166801,5977704 -# define assertColumnName(assertColumnName166806,5977892 -static void rbuStepOneOp(sqlite3rbu *p, int eType){rbuStepOneOp166814,5978149 -static int rbuStep(sqlite3rbu *p){rbuStep166897,5980862 -static void rbuIncrSchemaCookie(sqlite3rbu *p){rbuIncrSchemaCookie166962,5982981 -static void rbuSaveState(sqlite3rbu *p, int eStage){rbuSaveState166993,5984134 -static void rbuCopyPragma(sqlite3rbu *p, const char *zPragma){rbuCopyPragma167052,5985892 -static void rbuCreateTargetSchema(sqlite3rbu *p){rbuCreateTargetSchema167072,5986583 -SQLITE_API int SQLITE_STDCALL sqlite3rbu_step(sqlite3rbu *p){sqlite3rbu_step167124,5988069 -static int rbuStrCompare(const char *z1, const char *z2){rbuStrCompare167236,5991436 -static void rbuSetupOal(sqlite3rbu *p, RbuState *pState){rbuSetupOal167252,5992057 -static void rbuDeleteOalFile(sqlite3rbu *p){rbuDeleteOalFile167284,5992933 -static void rbuCreateVfs(sqlite3rbu *p){rbuCreateVfs167300,5993440 -static void rbuDeleteVfs(sqlite3rbu *p){rbuDeleteVfs167319,5993950 -static void rbuIndexCntFunc(rbuIndexCntFunc167331,5994284 -static void rbuInitPhaseOneSteps(sqlite3rbu *p){rbuInitPhaseOneSteps167380,5995820 -static sqlite3rbu *openRbuHandle(openRbuHandle167421,5997037 -SQLITE_API sqlite3rbu *SQLITE_STDCALL sqlite3rbu_open(sqlite3rbu_open167567,6001351 -SQLITE_API sqlite3rbu *SQLITE_STDCALL sqlite3rbu_vacuum(sqlite3rbu_vacuum167579,6001646 -SQLITE_API sqlite3 *SQLITE_STDCALL sqlite3rbu_db(sqlite3rbu *pRbu, int bRbu){sqlite3rbu_db167590,6001901 -static void rbuEditErrmsg(sqlite3rbu *p){rbuEditErrmsg167604,6002269 -SQLITE_API int SQLITE_STDCALL sqlite3rbu_close(sqlite3rbu *p, char **pzErrmsg){sqlite3rbu_close167622,6002761 -SQLITE_API sqlite3_int64 SQLITE_STDCALL sqlite3rbu_progress(sqlite3rbu *pRbu){sqlite3rbu_progress167673,6004354 -SQLITE_API void SQLITE_STDCALL sqlite3rbu_bp_progress(sqlite3rbu *p, int *pnOne, int *pnTwo){sqlite3rbu_bp_progress167681,6004557 -SQLITE_API int SQLITE_STDCALL sqlite3rbu_savestate(sqlite3rbu *p){sqlite3rbu_savestate167713,6005277 -static void rbuUnlockShm(rbu_file *p){rbuUnlockShm167798,6009174 -static int rbuVfsClose(sqlite3_file *pFile){rbuVfsClose167814,6009542 -static u32 rbuGetU32(u8 *aBuf){rbuGetU32167847,6010370 -static void rbuPutU32(u8 *aBuf, u32 iVal){rbuPutU32167858,6010608 -static void rbuPutU16(u8 *aBuf, u16 iVal){rbuPutU16167865,6010786 -static int rbuVfsRead(rbuVfsRead167873,6010938 -static int rbuVfsWrite(rbuVfsWrite167939,6013177 -static int rbuVfsTruncate(sqlite3_file *pFile, sqlite_int64 size){rbuVfsTruncate167974,6014133 -static int rbuVfsSync(sqlite3_file *pFile, int flags){rbuVfsSync167982,6014323 -static int rbuVfsFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){rbuVfsFileSize167996,6014689 -static int rbuVfsLock(sqlite3_file *pFile, int eLock){rbuVfsLock168017,6015286 -static int rbuVfsUnlock(sqlite3_file *pFile, int eLock){rbuVfsUnlock168039,6015886 -static int rbuVfsCheckReservedLock(sqlite3_file *pFile, int *pResOut){rbuVfsCheckReservedLock168047,6016115 -static int rbuVfsFileControl(sqlite3_file *pFile, int op, void *pArg){rbuVfsFileControl168055,6016363 -static int rbuVfsSectorSize(sqlite3_file *pFile){rbuVfsSectorSize168110,6018093 -static int rbuVfsDeviceCharacteristics(sqlite3_file *pFile){rbuVfsDeviceCharacteristics168118,6018310 -static int rbuVfsShmLock(sqlite3_file *pFile, int ofst, int n, int flags){rbuVfsShmLock168126,6018519 -static int rbuVfsShmMap(rbuVfsShmMap168165,6019765 -static void rbuVfsShmBarrier(sqlite3_file *pFile){rbuVfsShmBarrier168219,6021150 -static int rbuVfsShmUnmap(sqlite3_file *pFile, int delFlag){rbuVfsShmUnmap168227,6021315 -static rbu_file *rbuFindMaindb(rbu_vfs *pRbuVfs, const char *zWal){rbuFindMaindb168249,6022031 -static const char *rbuMainToWal(const char *zName, int flags){rbuMainToWal168264,6022607 -static int rbuVfsOpen(rbuVfsOpen168287,6023018 -static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){rbuVfsDelete168400,6027000 -static int rbuVfsAccess(rbuVfsAccess168409,6027302 -static int rbuVfsFullPathname(rbuVfsFullPathname168454,6028738 -static void *rbuVfsDlOpen(sqlite3_vfs *pVfs, const char *zPath){rbuVfsDlOpen168468,6029069 -static void rbuVfsDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){rbuVfsDlError168478,6029414 -static void (*rbuVfsDlSym(rbuVfsDlSym168486,6029671 -static void rbuVfsDlClose(sqlite3_vfs *pVfs, void *pHandle){rbuVfsDlClose168498,6029921 -static int rbuVfsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){rbuVfsRandomness168508,6030208 -static int rbuVfsSleep(sqlite3_vfs *pVfs, int nMicro){rbuVfsSleep168517,6030491 -static int rbuVfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){rbuVfsCurrentTime168525,6030718 -static int rbuVfsGetLastError(sqlite3_vfs *pVfs, int a, char *b){rbuVfsGetLastError168533,6030911 -SQLITE_API void SQLITE_STDCALL sqlite3rbu_destroy_vfs(const char *zName){sqlite3rbu_destroy_vfs168541,6031093 -SQLITE_API int SQLITE_STDCALL sqlite3rbu_create_vfs(const char *zName, const char *zParent){sqlite3rbu_create_vfs168555,6031561 -#define VTAB_SCHEMA VTAB_SCHEMA168695,6036731 -typedef struct StatTable StatTable;StatTable168711,6037754 -typedef struct StatCursor StatCursor;StatCursor168712,6037790 -typedef struct StatPage StatPage;StatPage168713,6037828 -typedef struct StatCell StatCell;StatCell168714,6037862 -struct StatCell {StatCell168716,6037897 - int nLocal; /* Bytes of local payload */nLocal168717,6037915 - int nLocal; /* Bytes of local payload */StatCell::nLocal168717,6037915 - u32 iChildPg; /* Child node (or 0 if this is a leaf) */iChildPg168718,6037978 - u32 iChildPg; /* Child node (or 0 if this is a leaf) */StatCell::iChildPg168718,6037978 - int nOvfl; /* Entries in aOvfl[] */nOvfl168719,6038054 - int nOvfl; /* Entries in aOvfl[] */StatCell::nOvfl168719,6038054 - u32 *aOvfl; /* Array of overflow page numbers */aOvfl168720,6038113 - u32 *aOvfl; /* Array of overflow page numbers */StatCell::aOvfl168720,6038113 - int nLastOvfl; /* Bytes of payload on final overflow page */nLastOvfl168721,6038184 - int nLastOvfl; /* Bytes of payload on final overflow page */StatCell::nLastOvfl168721,6038184 - int iOvfl; /* Iterates through aOvfl[] */iOvfl168722,6038264 - int iOvfl; /* Iterates through aOvfl[] */StatCell::iOvfl168722,6038264 -struct StatPage {StatPage168725,6038333 - u32 iPgno;iPgno168726,6038351 - u32 iPgno;StatPage::iPgno168726,6038351 - DbPage *pPg;pPg168727,6038364 - DbPage *pPg;StatPage::pPg168727,6038364 - int iCell;iCell168728,6038379 - int iCell;StatPage::iCell168728,6038379 - char *zPath; /* Path to this page */zPath168730,6038393 - char *zPath; /* Path to this page */StatPage::zPath168730,6038393 - u8 flags; /* Copy of flags byte */flags168733,6038501 - u8 flags; /* Copy of flags byte */StatPage::flags168733,6038501 - int nCell; /* Number of cells on page */nCell168734,6038560 - int nCell; /* Number of cells on page */StatPage::nCell168734,6038560 - int nUnused; /* Number of unused bytes on page */nUnused168735,6038624 - int nUnused; /* Number of unused bytes on page */StatPage::nUnused168735,6038624 - StatCell *aCell; /* Array of parsed cells */aCell168736,6038695 - StatCell *aCell; /* Array of parsed cells */StatPage::aCell168736,6038695 - u32 iRightChildPg; /* Right-child page number (or 0) */iRightChildPg168737,6038757 - u32 iRightChildPg; /* Right-child page number (or 0) */StatPage::iRightChildPg168737,6038757 - int nMxPayload; /* Largest payload of any cell on this page */nMxPayload168738,6038828 - int nMxPayload; /* Largest payload of any cell on this page */StatPage::nMxPayload168738,6038828 -struct StatCursor {StatCursor168741,6038913 - sqlite3_vtab_cursor base;base168742,6038933 - sqlite3_vtab_cursor base;StatCursor::base168742,6038933 - sqlite3_stmt *pStmt; /* Iterates through set of root pages */pStmt168743,6038961 - sqlite3_stmt *pStmt; /* Iterates through set of root pages */StatCursor::pStmt168743,6038961 - int isEof; /* After pStmt has returned SQLITE_DONE */isEof168744,6039036 - int isEof; /* After pStmt has returned SQLITE_DONE */StatCursor::isEof168744,6039036 - int iDb; /* Schema used for this query */iDb168745,6039113 - int iDb; /* Schema used for this query */StatCursor::iDb168745,6039113 - StatPage aPage[32];aPage168747,6039181 - StatPage aPage[32];StatCursor::aPage168747,6039181 - int iPage; /* Current entry in aPage[] */iPage168748,6039203 - int iPage; /* Current entry in aPage[] */StatCursor::iPage168748,6039203 - char *zName; /* Value of 'name' column */zName168751,6039295 - char *zName; /* Value of 'name' column */StatCursor::zName168751,6039295 - char *zPath; /* Value of 'path' column */zPath168752,6039358 - char *zPath; /* Value of 'path' column */StatCursor::zPath168752,6039358 - u32 iPageno; /* Value of 'pageno' column */iPageno168753,6039421 - u32 iPageno; /* Value of 'pageno' column */StatCursor::iPageno168753,6039421 - char *zPagetype; /* Value of 'pagetype' column */zPagetype168754,6039486 - char *zPagetype; /* Value of 'pagetype' column */StatCursor::zPagetype168754,6039486 - int nCell; /* Value of 'ncell' column */nCell168755,6039553 - int nCell; /* Value of 'ncell' column */StatCursor::nCell168755,6039553 - int nPayload; /* Value of 'payload' column */nPayload168756,6039617 - int nPayload; /* Value of 'payload' column */StatCursor::nPayload168756,6039617 - int nUnused; /* Value of 'unused' column */nUnused168757,6039683 - int nUnused; /* Value of 'unused' column */StatCursor::nUnused168757,6039683 - int nMxPayload; /* Value of 'mx_payload' column */nMxPayload168758,6039748 - int nMxPayload; /* Value of 'mx_payload' column */StatCursor::nMxPayload168758,6039748 - i64 iOffset; /* Value of 'pgOffset' column */iOffset168759,6039817 - i64 iOffset; /* Value of 'pgOffset' column */StatCursor::iOffset168759,6039817 - int szPage; /* Value of 'pgSize' column */szPage168760,6039884 - int szPage; /* Value of 'pgSize' column */StatCursor::szPage168760,6039884 -struct StatTable {StatTable168763,6039953 - sqlite3_vtab base;base168764,6039972 - sqlite3_vtab base;StatTable::base168764,6039972 - sqlite3 *db;db168765,6039993 - sqlite3 *db;StatTable::db168765,6039993 - int iDb; /* Index of database to analyze */iDb168766,6040008 - int iDb; /* Index of database to analyze */StatTable::iDb168766,6040008 -# define get2byte(get2byte168770,6040098 -static int statConnect(statConnect168776,6040205 -static int statDisconnect(sqlite3_vtab *pVtab){statDisconnect168818,6041076 -static int statBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){statBestIndex168830,6041448 -static int statOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){statOpen168876,6042846 -static void statClearPage(StatPage *p){statClearPage168893,6043267 -static void statResetCsr(StatCursor *pCsr){statResetCsr168906,6043534 -static int statClose(sqlite3_vtab_cursor *pCursor){statClose168921,6043822 -static void getLocalPayload(getLocalPayload168929,6044018 -static int statDecodePage(Btree *pBt, StatPage *p){statDecodePage168952,6044782 -static void statSizeAndOffset(StatCursor *pCsr){statSizeAndOffset169047,6047853 -static int statNext(sqlite3_vtab_cursor *pCursor){statNext169072,6048633 -static int statEof(sqlite3_vtab_cursor *pCursor){statEof169205,6052549 -static int statFilter(statFilter169210,6052668 -static int statColumn(statColumn169255,6053975 -static int statRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){statRowid169302,6055382 -SQLITE_PRIVATE int sqlite3DbstatRegister(sqlite3 *db){sqlite3DbstatRegister169311,6055625 -SQLITE_PRIVATE int sqlite3DbstatRegister(sqlite3 *db){ return SQLITE_OK; }sqlite3DbstatRegister169337,6056928 -typedef struct SessionTable SessionTable;SessionTable169353,6057461 -typedef struct SessionChange SessionChange;SessionChange169354,6057503 -typedef struct SessionBuffer SessionBuffer;SessionBuffer169355,6057547 -typedef struct SessionInput SessionInput;SessionInput169356,6057591 -# define SESSIONS_STRM_CHUNK_SIZE SESSIONS_STRM_CHUNK_SIZE169363,6057756 -# define SESSIONS_STRM_CHUNK_SIZE SESSIONS_STRM_CHUNK_SIZE169365,6057802 -typedef struct SessionHook SessionHook;SessionHook169369,6057859 -struct SessionHook {SessionHook169370,6057899 - void *pCtx;pCtx169371,6057920 - void *pCtx;SessionHook::pCtx169371,6057920 - int (*xOld)(void*,int,sqlite3_value**);xOld169372,6057934 - int (*xOld)(void*,int,sqlite3_value**);SessionHook::xOld169372,6057934 - int (*xNew)(void*,int,sqlite3_value**);xNew169373,6057976 - int (*xNew)(void*,int,sqlite3_value**);SessionHook::xNew169373,6057976 - int (*xCount)(void*);xCount169374,6058018 - int (*xCount)(void*);SessionHook::xCount169374,6058018 - int (*xDepth)(void*);xDepth169375,6058042 - int (*xDepth)(void*);SessionHook::xDepth169375,6058042 -struct sqlite3_session {sqlite3_session169381,6058105 - sqlite3 *db; /* Database handle session is attached to */db169382,6058130 - sqlite3 *db; /* Database handle session is attached to */sqlite3_session::db169382,6058130 - char *zDb; /* Name of database session is attached to */zDb169383,6058209 - char *zDb; /* Name of database session is attached to */sqlite3_session::zDb169383,6058209 - int bEnable; /* True if currently recording */bEnable169384,6058289 - int bEnable; /* True if currently recording */sqlite3_session::bEnable169384,6058289 - int bIndirect; /* True if all changes are indirect */bIndirect169385,6058357 - int bIndirect; /* True if all changes are indirect */sqlite3_session::bIndirect169385,6058357 - int bAutoAttach; /* True to auto-attach tables */bAutoAttach169386,6058430 - int bAutoAttach; /* True to auto-attach tables */sqlite3_session::bAutoAttach169386,6058430 - int rc; /* Non-zero if an error has occurred */rc169387,6058497 - int rc; /* Non-zero if an error has occurred */sqlite3_session::rc169387,6058497 - void *pFilterCtx; /* First argument to pass to xTableFilter */pFilterCtx169388,6058571 - void *pFilterCtx; /* First argument to pass to xTableFilter */sqlite3_session::pFilterCtx169388,6058571 - int (*xTableFilter)(void *pCtx, const char *zTab);xTableFilter169389,6058650 - int (*xTableFilter)(void *pCtx, const char *zTab);sqlite3_session::xTableFilter169389,6058650 - sqlite3_session *pNext; /* Next session object on same db. */pNext169390,6058703 - sqlite3_session *pNext; /* Next session object on same db. */sqlite3_session::pNext169390,6058703 - SessionTable *pTable; /* List of attached tables */pTable169391,6058775 - SessionTable *pTable; /* List of attached tables */sqlite3_session::pTable169391,6058775 - SessionHook hook; /* APIs to grab new and old data with */hook169392,6058839 - SessionHook hook; /* APIs to grab new and old data with */sqlite3_session::hook169392,6058839 -struct SessionBuffer {SessionBuffer169398,6059000 - u8 *aBuf; /* Pointer to changeset buffer */aBuf169399,6059023 - u8 *aBuf; /* Pointer to changeset buffer */SessionBuffer::aBuf169399,6059023 - int nBuf; /* Size of buffer aBuf */nBuf169400,6059091 - int nBuf; /* Size of buffer aBuf */SessionBuffer::nBuf169400,6059091 - int nAlloc; /* Size of allocation containing aBuf */nAlloc169401,6059151 - int nAlloc; /* Size of allocation containing aBuf */SessionBuffer::nAlloc169401,6059151 -struct SessionInput {SessionInput169410,6059482 - int bNoDiscard; /* If true, discard no data */bNoDiscard169411,6059504 - int bNoDiscard; /* If true, discard no data */SessionInput::bNoDiscard169411,6059504 - int iCurrent; /* Offset in aData[] of current change */iCurrent169412,6059569 - int iCurrent; /* Offset in aData[] of current change */SessionInput::iCurrent169412,6059569 - int iNext; /* Offset in aData[] of next change */iNext169413,6059645 - int iNext; /* Offset in aData[] of next change */SessionInput::iNext169413,6059645 - u8 *aData; /* Pointer to buffer containing changeset */aData169414,6059718 - u8 *aData; /* Pointer to buffer containing changeset */SessionInput::aData169414,6059718 - int nData; /* Number of bytes in aData */nData169415,6059797 - int nData; /* Number of bytes in aData */SessionInput::nData169415,6059797 - SessionBuffer buf; /* Current read buffer */buf169417,6059863 - SessionBuffer buf; /* Current read buffer */SessionInput::buf169417,6059863 - int (*xInput)(void*, void*, int*); /* Input stream call (or NULL) */xInput169418,6059923 - int (*xInput)(void*, void*, int*); /* Input stream call (or NULL) */SessionInput::xInput169418,6059923 - void *pIn; /* First argument to xInput */pIn169419,6060001 - void *pIn; /* First argument to xInput */SessionInput::pIn169419,6060001 - int bEof; /* Set to true after xInput finished */bEof169420,6060076 - int bEof; /* Set to true after xInput finished */SessionInput::bEof169420,6060076 -struct sqlite3_changeset_iter {sqlite3_changeset_iter169426,6060198 - SessionInput in; /* Input buffer or stream */in169427,6060230 - SessionInput in; /* Input buffer or stream */sqlite3_changeset_iter::in169427,6060230 - SessionBuffer tblhdr; /* Buffer to hold apValue/zTab/abPK/ */tblhdr169428,6060293 - SessionBuffer tblhdr; /* Buffer to hold apValue/zTab/abPK/ */sqlite3_changeset_iter::tblhdr169428,6060293 - int bPatchset; /* True if this is a patchset */bPatchset169429,6060367 - int bPatchset; /* True if this is a patchset */sqlite3_changeset_iter::bPatchset169429,6060367 - int rc; /* Iterator error code */rc169430,6060434 - int rc; /* Iterator error code */sqlite3_changeset_iter::rc169430,6060434 - sqlite3_stmt *pConflict; /* Points to conflicting row, if any */pConflict169431,6060494 - sqlite3_stmt *pConflict; /* Points to conflicting row, if any */sqlite3_changeset_iter::pConflict169431,6060494 - char *zTab; /* Current table */zTab169432,6060568 - char *zTab; /* Current table */sqlite3_changeset_iter::zTab169432,6060568 - int nCol; /* Number of columns in zTab */nCol169433,6060622 - int nCol; /* Number of columns in zTab */sqlite3_changeset_iter::nCol169433,6060622 - int op; /* Current operation */op169434,6060688 - int op; /* Current operation */sqlite3_changeset_iter::op169434,6060688 - int bIndirect; /* True if current change was indirect */bIndirect169435,6060746 - int bIndirect; /* True if current change was indirect */sqlite3_changeset_iter::bIndirect169435,6060746 - u8 *abPK; /* Primary key array */abPK169436,6060822 - u8 *abPK; /* Primary key array */sqlite3_changeset_iter::abPK169436,6060822 - sqlite3_value **apValue; /* old.* and new.* values */apValue169437,6060880 - sqlite3_value **apValue; /* old.* and new.* values */sqlite3_changeset_iter::apValue169437,6060880 -struct SessionTable {SessionTable169453,6061544 - SessionTable *pNext;pNext169454,6061566 - SessionTable *pNext;SessionTable::pNext169454,6061566 - char *zName; /* Local name of table */zName169455,6061589 - char *zName; /* Local name of table */SessionTable::zName169455,6061589 - int nCol; /* Number of columns in table zName */nCol169456,6061649 - int nCol; /* Number of columns in table zName */SessionTable::nCol169456,6061649 - const char **azCol; /* Column names */azCol169457,6061722 - const char **azCol; /* Column names */SessionTable::azCol169457,6061722 - u8 *abPK; /* Array of primary key flags */abPK169458,6061775 - u8 *abPK; /* Array of primary key flags */SessionTable::abPK169458,6061775 - int nEntry; /* Total number of entries in hash table */nEntry169459,6061842 - int nEntry; /* Total number of entries in hash table */SessionTable::nEntry169459,6061842 - int nChange; /* Size of apChange[] array */nChange169460,6061920 - int nChange; /* Size of apChange[] array */SessionTable::nChange169460,6061920 - SessionChange **apChange; /* Hash table buckets */apChange169461,6061985 - SessionChange **apChange; /* Hash table buckets */SessionTable::apChange169461,6061985 -struct SessionChange {SessionChange169591,6067515 - int op; /* One of UPDATE, DELETE, INSERT */op169592,6067538 - int op; /* One of UPDATE, DELETE, INSERT */SessionChange::op169592,6067538 - int bIndirect; /* True if this change is "indirect" */bIndirect169593,6067608 - int bIndirect; /* True if this change is "indirect" */SessionChange::bIndirect169593,6067608 - int nRecord; /* Number of bytes in buffer aRecord[] */nRecord169594,6067682 - int nRecord; /* Number of bytes in buffer aRecord[] */SessionChange::nRecord169594,6067682 - u8 *aRecord; /* Buffer containing old.* record */aRecord169595,6067758 - u8 *aRecord; /* Buffer containing old.* record */SessionChange::aRecord169595,6067758 - SessionChange *pNext; /* For hash-table collisions */pNext169596,6067829 - SessionChange *pNext; /* For hash-table collisions */SessionChange::pNext169596,6067829 -static int sessionVarintPut(u8 *aBuf, int iVal){sessionVarintPut169603,6068004 -static int sessionVarintLen(int iVal){sessionVarintLen169610,6068168 -static int sessionVarintGet(u8 *aBuf, int *piVal){sessionVarintGet169618,6068334 -#define SESSION_UINT32(SESSION_UINT32169623,6068476 -static sqlite3_int64 sessionGetI64(u8 *aRec){sessionGetI64169629,6068649 -static void sessionPutI64(u8 *aBuf, sqlite3_int64 i){sessionPutI64169639,6068881 -static int sessionSerializeValue(sessionSerializeValue169663,6069693 -#define HASH_APPEND(HASH_APPEND169752,6072384 -static unsigned int sessionHashAppendI64(unsigned int h, i64 i){sessionHashAppendI64169758,6072615 -static unsigned int sessionHashAppendBlob(unsigned int h, int n, const u8 *z){sessionHashAppendBlob169767,6072923 -static unsigned int sessionHashAppendType(unsigned int h, int eType){sessionHashAppendType169777,6073222 -static int sessionPreupdateHash(sessionPreupdateHash169792,6073894 -static int sessionSerialLen(u8 *a){sessionSerialLen169856,6075997 -static unsigned int sessionChangeHash(sessionChangeHash169874,6076611 -static int sessionChangeEqual(sessionChangeEqual169923,6078298 -static void sessionMergeRecord(sessionMergeRecord169966,6079911 -static u8 *sessionMergeValue(sessionMergeValue170012,6081332 -static int sessionMergeUpdate(sessionMergeUpdate170046,6082015 -static int sessionPreupdateEqual(sessionPreupdateEqual170123,6084153 -static int sessionGrowHash(int bPatchset, SessionTable *pTab){sessionGrowHash170203,6087284 -static int sessionTableInfo(sessionTableInfo170267,6089475 -static int sessionInitTable(sqlite3_session *pSession, SessionTable *pTab){sessionInitTable170367,6092418 -static void sessionPreupdateOneChange(sessionPreupdateOneChange170395,6093287 -static int sessionFindTable(sessionFindTable170516,6097455 -static void xPreUpdate(xPreUpdate170552,6098457 -static int sessionPreupdateOld(void *pCtx, int iVal, sqlite3_value **ppVal){sessionPreupdateOld170590,6099856 -static int sessionPreupdateNew(void *pCtx, int iVal, sqlite3_value **ppVal){sessionPreupdateNew170593,6099996 -static int sessionPreupdateCount(void *pCtx){sessionPreupdateCount170596,6100136 -static int sessionPreupdateDepth(void *pCtx){sessionPreupdateDepth170599,6100234 -static void sessionPreupdateHooks(sessionPreupdateHooks170607,6100425 -typedef struct SessionDiffCtx SessionDiffCtx;SessionDiffCtx170617,6100727 -struct SessionDiffCtx {SessionDiffCtx170618,6100773 - sqlite3_stmt *pStmt;pStmt170619,6100797 - sqlite3_stmt *pStmt;SessionDiffCtx::pStmt170619,6100797 - int nOldOff;nOldOff170620,6100820 - int nOldOff;SessionDiffCtx::nOldOff170620,6100820 -static int sessionDiffOld(void *pCtx, int iVal, sqlite3_value **ppVal){sessionDiffOld170626,6100879 -static int sessionDiffNew(void *pCtx, int iVal, sqlite3_value **ppVal){sessionDiffNew170631,6101078 -static int sessionDiffCount(void *pCtx){sessionDiffCount170636,6101267 -static int sessionDiffDepth(void *pCtx){sessionDiffDepth170640,6101422 -static void sessionDiffHooks(sessionDiffHooks170648,6101564 -static char *sessionExprComparePK(sessionExprComparePK170659,6101865 -static char *sessionExprCompareOther(sessionExprCompareOther170682,6102332 -static char *sessionSelectFindNew(sessionSelectFindNew170713,6102935 -static int sessionDiffFindNew(sessionDiffFindNew170729,6103359 -static int sessionDiffFindModified(sessionDiffFindModified170760,6104104 -SQLITE_API int SQLITE_STDCALL sqlite3session_diff(sqlite3session_diff170800,6105168 -SQLITE_API int SQLITE_STDCALL sqlite3session_create(sqlite3session_create170894,6107631 -static void sessionDeleteTable(SessionTable *pList){sessionDeleteTable170932,6109045 -SQLITE_API void SQLITE_STDCALL sqlite3session_delete(sqlite3_session *pSession){sqlite3session_delete170956,6109654 -SQLITE_API void SQLITE_STDCALL sqlite3session_table_filter(sqlite3session_table_filter170985,6110564 -SQLITE_API int SQLITE_STDCALL sqlite3session_attach(sqlite3session_attach171003,6111163 -static int sessionBufferGrow(SessionBuffer *p, int nByte, int *pRc){sessionBufferGrow171055,6113030 -static void sessionAppendValue(SessionBuffer *p, sqlite3_value *pVal, int *pRc){sessionAppendValue171082,6113724 -static void sessionAppendByte(SessionBuffer *p, u8 v, int *pRc){sessionAppendByte171104,6114328 -static void sessionAppendVarint(SessionBuffer *p, int v, int *pRc){sessionAppendVarint171117,6114696 -static void sessionAppendBlob(sessionAppendBlob171130,6115093 -static void sessionAppendStr(sessionAppendStr171150,6115630 -static void sessionAppendInteger(sessionAppendInteger171170,6116152 -static void sessionAppendIdent(sessionAppendIdent171189,6116828 -static void sessionAppendCol(sessionAppendCol171214,6117641 -static int sessionAppendUpdate(sessionAppendUpdate171276,6119863 -static int sessionAppendDelete(sessionAppendDelete171375,6122977 -static int sessionSelectStmt(sessionSelectStmt171430,6124376 -static int sessionSelectBind(sessionSelectBind171473,6125847 -static void sessionAppendTableHdr(sessionAppendTableHdr171544,6127596 -static int sessionGenerateChangeset(sessionGenerateChangeset171567,6128609 -SQLITE_API int SQLITE_STDCALL sqlite3session_changeset(sqlite3session_changeset171693,6133120 -SQLITE_API int SQLITE_STDCALL sqlite3session_changeset_strm(sqlite3session_changeset_strm171704,6133524 -SQLITE_API int SQLITE_STDCALL sqlite3session_patchset_strm(sqlite3session_patchset_strm171715,6133819 -SQLITE_API int SQLITE_STDCALL sqlite3session_patchset(sqlite3session_patchset171730,6134279 -SQLITE_API int SQLITE_STDCALL sqlite3session_enable(sqlite3_session *pSession, int bEnable){sqlite3session_enable171741,6134698 -SQLITE_API int SQLITE_STDCALL sqlite3session_indirect(sqlite3_session *pSession, int bIndirect){sqlite3session_indirect171755,6135089 -SQLITE_API int SQLITE_STDCALL sqlite3session_isempty(sqlite3_session *pSession){sqlite3session_isempty171770,6135550 -static int sessionChangesetStart(sessionChangesetStart171786,6135972 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_start(sqlite3changeset_start171820,6137144 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_start_strm(sqlite3changeset_start_strm171831,6137551 -static void sessionDiscardData(SessionInput *pIn){sessionDiscardData171843,6137957 -static int sessionInputBuffer(SessionInput *pIn, int nByte){sessionInputBuffer171863,6138592 -static void sessionSkipRecord(sessionSkipRecord171891,6139435 -static int sessionValueSetStr(sessionValueSetStr171917,6140172 -static int sessionReadRecord(sessionReadRecord171958,6142141 -static int sessionChangesetBufferTblhdr(SessionInput *pIn, int *pnByte){sessionChangesetBufferTblhdr172023,6144253 -static int sessionChangesetBufferRecord(sessionChangesetBufferRecord172055,6145268 -static int sessionChangesetReadTblhdr(sqlite3_changeset_iter *p){sessionChangesetReadTblhdr172099,6146773 -static int sessionChangesetNext(sessionChangesetNext172145,6148322 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_next(sqlite3_changeset_iter *p){sqlite3changeset_next172252,6151973 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_op(sqlite3changeset_op172261,6152274 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_pk(sqlite3changeset_pk172281,6153052 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_old(sqlite3changeset_old172304,6154003 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_new(sqlite3changeset_new172332,6155054 -#define sessionChangesetNew(sessionChangesetNew172352,6155774 -#define sessionChangesetOld(sessionChangesetOld172353,6155854 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_conflict(sqlite3changeset_conflict172366,6156397 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_fk_conflicts(sqlite3changeset_fk_conflicts172389,6157243 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_finalize(sqlite3_changeset_iter *p){sqlite3changeset_finalize172407,6157742 -static int sessionChangesetInvert(sessionChangesetInvert172422,6158155 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_invert(sqlite3changeset_invert172581,6163170 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_invert_strm(sqlite3changeset_invert_strm172600,6163793 -typedef struct SessionApplyCtx SessionApplyCtx;SessionApplyCtx172619,6164263 -struct SessionApplyCtx {SessionApplyCtx172620,6164311 - sqlite3 *db;db172621,6164336 - sqlite3 *db;SessionApplyCtx::db172621,6164336 - sqlite3_stmt *pDelete; /* DELETE statement */pDelete172622,6164351 - sqlite3_stmt *pDelete; /* DELETE statement */SessionApplyCtx::pDelete172622,6164351 - sqlite3_stmt *pUpdate; /* UPDATE statement */pUpdate172623,6164408 - sqlite3_stmt *pUpdate; /* UPDATE statement */SessionApplyCtx::pUpdate172623,6164408 - sqlite3_stmt *pInsert; /* INSERT statement */pInsert172624,6164465 - sqlite3_stmt *pInsert; /* INSERT statement */SessionApplyCtx::pInsert172624,6164465 - sqlite3_stmt *pSelect; /* SELECT statement */pSelect172625,6164522 - sqlite3_stmt *pSelect; /* SELECT statement */SessionApplyCtx::pSelect172625,6164522 - int nCol; /* Size of azCol[] and abPK[] arrays */nCol172626,6164579 - int nCol; /* Size of azCol[] and abPK[] arrays */SessionApplyCtx::nCol172626,6164579 - const char **azCol; /* Array of column names */azCol172627,6164653 - const char **azCol; /* Array of column names */SessionApplyCtx::azCol172627,6164653 - u8 *abPK; /* Boolean array - true if column is in PK */abPK172628,6164715 - u8 *abPK; /* Boolean array - true if column is in PK */SessionApplyCtx::abPK172628,6164715 - int bDeferConstraints; /* True to defer constraints */bDeferConstraints172630,6164796 - int bDeferConstraints; /* True to defer constraints */SessionApplyCtx::bDeferConstraints172630,6164796 - SessionBuffer constraints; /* Deferred constraints are stored here */constraints172631,6164862 - SessionBuffer constraints; /* Deferred constraints are stored here */SessionApplyCtx::constraints172631,6164862 -static int sessionDeleteRow(sessionDeleteRow172651,6165596 -static int sessionUpdateRow(sessionUpdateRow172734,6168166 -static int sessionSelectRow(sessionSelectRow172812,6170592 -static int sessionInsertRow(sessionInsertRow172830,6171193 -static int sessionBindValue(sessionBindValue172858,6171996 -static int sessionBindRow(sessionBindRow172891,6173539 -static int sessionSeekToRow(sessionSeekToRow172934,6175378 -static int sessionConflictHandler(sessionConflictHandler172994,6177961 -static int sessionApplyOneOp(sessionApplyOneOp173089,6181447 -static int sessionApplyOneWithRetry(sessionApplyOneWithRetry173209,6185697 -static int sessionRetryConstraints(sessionRetryConstraints173266,6187952 -static int sessionChangesetApply(sessionChangesetApply173320,6189770 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_apply(sqlite3changeset_apply173480,6195198 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_apply_strm(sqlite3changeset_apply_strm173508,6196393 -struct sqlite3_changegroup {sqlite3_changegroup173534,6197445 - int rc; /* Error code */rc173535,6197474 - int rc; /* Error code */sqlite3_changegroup::rc173535,6197474 - int bPatch; /* True to accumulate patchsets */bPatch173536,6197525 - int bPatch; /* True to accumulate patchsets */sqlite3_changegroup::bPatch173536,6197525 - SessionTable *pList; /* List of tables in current patch */pList173537,6197594 - SessionTable *pList; /* List of tables in current patch */sqlite3_changegroup::pList173537,6197594 -static int sessionChangeMerge(sessionChangeMerge173545,6197877 -static int sessionChangesetToHash(sessionChangesetToHash173668,6202136 -static int sessionChangegroupOutput(sessionChangegroupOutput173791,6205999 -SQLITE_API int SQLITE_STDCALL sqlite3changegroup_new(sqlite3_changegroup **pp){sqlite3changegroup_new173843,6207346 -SQLITE_API int SQLITE_STDCALL sqlite3changegroup_add(sqlite3_changegroup *pGrp, int nData, void *pData){sqlite3changegroup_add173860,6207830 -SQLITE_API int SQLITE_STDCALL sqlite3changegroup_output(sqlite3changegroup_output173876,6208364 -SQLITE_API int SQLITE_STDCALL sqlite3changegroup_add_strm(sqlite3changegroup_add_strm173887,6208606 -SQLITE_API int SQLITE_STDCALL sqlite3changegroup_output_strm(sqlite3changegroup_output_strm173906,6209122 -SQLITE_API void SQLITE_STDCALL sqlite3changegroup_delete(sqlite3_changegroup *pGrp){sqlite3changegroup_delete173917,6209393 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_concat(sqlite3changeset_concat173927,6209603 -SQLITE_API int SQLITE_STDCALL sqlite3changeset_concat_strm(sqlite3changeset_concat_strm173956,6210510 -# define UNUSED_PARAM(UNUSED_PARAM174022,6212642 -# define LARGEST_INT64 LARGEST_INT64174026,6212708 -# define SMALLEST_INT64 SMALLEST_INT64174027,6212779 -# define safe_isdigit(safe_isdigit174037,6213073 -# define safe_isalnum(safe_isalnum174038,6213117 -static const char jsonIsSpace[] = {jsonIsSpace174051,6213598 -#define safe_isspace(safe_isspace174069,6214501 - typedef sqlite3_uint64 u64;u64174074,6214736 - typedef unsigned int u32;u32174075,6214766 - typedef unsigned char u8;u8174076,6214794 -typedef struct JsonString JsonString;JsonString174080,6214844 -typedef struct JsonNode JsonNode;JsonNode174081,6214882 -typedef struct JsonParse JsonParse;JsonParse174082,6214916 -struct JsonString {JsonString174088,6215142 - sqlite3_context *pCtx; /* Function context - put error messages here */pCtx174089,6215162 - sqlite3_context *pCtx; /* Function context - put error messages here */JsonString::pCtx174089,6215162 - char *zBuf; /* Append JSON content here */zBuf174090,6215238 - char *zBuf; /* Append JSON content here */JsonString::zBuf174090,6215238 - u64 nAlloc; /* Bytes of storage available in zBuf[] */nAlloc174091,6215296 - u64 nAlloc; /* Bytes of storage available in zBuf[] */JsonString::nAlloc174091,6215296 - u64 nUsed; /* Bytes of zBuf[] currently used */nUsed174092,6215366 - u64 nUsed; /* Bytes of zBuf[] currently used */JsonString::nUsed174092,6215366 - u8 bStatic; /* True if zBuf is static space */bStatic174093,6215430 - u8 bStatic; /* True if zBuf is static space */JsonString::bStatic174093,6215430 - u8 bErr; /* True if an error has been encountered */bErr174094,6215492 - u8 bErr; /* True if an error has been encountered */JsonString::bErr174094,6215492 - char zSpace[100]; /* Initial static space */zSpace174095,6215563 - char zSpace[100]; /* Initial static space */JsonString::zSpace174095,6215563 -#define JSON_NULL JSON_NULL174100,6215644 -#define JSON_TRUE JSON_TRUE174101,6215668 -#define JSON_FALSE JSON_FALSE174102,6215692 -#define JSON_INT JSON_INT174103,6215716 -#define JSON_REAL JSON_REAL174104,6215740 -#define JSON_STRING JSON_STRING174105,6215764 -#define JSON_ARRAY JSON_ARRAY174106,6215788 -#define JSON_OBJECT JSON_OBJECT174107,6215812 -#define JSON_SUBTYPE JSON_SUBTYPE174110,6215877 -static const char * const jsonType[] = {jsonType174115,6215968 -#define JNODE_RAW JNODE_RAW174121,6216132 -#define JNODE_ESCAPE JNODE_ESCAPE174122,6216206 -#define JNODE_REMOVE JNODE_REMOVE174123,6216278 -#define JNODE_REPLACE JNODE_REPLACE174124,6216333 -#define JNODE_APPEND JNODE_APPEND174125,6216401 -#define JNODE_LABEL JNODE_LABEL174126,6216481 -struct JsonNode {JsonNode174131,6216583 - u8 eType; /* One of the JSON_ type values */eType174132,6216601 - u8 eType; /* One of the JSON_ type values */JsonNode::eType174132,6216601 - u8 jnFlags; /* JNODE flags */jnFlags174133,6216661 - u8 jnFlags; /* JNODE flags */JsonNode::jnFlags174133,6216661 - u8 iVal; /* Replacement value when JNODE_REPLACE */iVal174134,6216704 - u8 iVal; /* Replacement value when JNODE_REPLACE */JsonNode::iVal174134,6216704 - u32 n; /* Bytes of content, or number of sub-nodes */n174135,6216772 - u32 n; /* Bytes of content, or number of sub-nodes */JsonNode::n174135,6216772 - const char *zJContent; /* Content for INT, REAL, and STRING */zJContent174137,6216854 - const char *zJContent; /* Content for INT, REAL, and STRING */JsonNode::__anon480::zJContent174137,6216854 - u32 iAppend; /* More terms for ARRAY and OBJECT */iAppend174138,6216921 - u32 iAppend; /* More terms for ARRAY and OBJECT */JsonNode::__anon480::iAppend174138,6216921 - u32 iKey; /* Key for ARRAY objects in json_tree() */iKey174139,6216986 - u32 iKey; /* Key for ARRAY objects in json_tree() */JsonNode::__anon480::iKey174139,6216986 - } u;u174140,6217056 - } u;JsonNode::u174140,6217056 -struct JsonParse {JsonParse174145,6217105 - u32 nNode; /* Number of slots of aNode[] used */nNode174146,6217124 - u32 nNode; /* Number of slots of aNode[] used */JsonParse::nNode174146,6217124 - u32 nAlloc; /* Number of slots of aNode[] allocated */nAlloc174147,6217183 - u32 nAlloc; /* Number of slots of aNode[] allocated */JsonParse::nAlloc174147,6217183 - JsonNode *aNode; /* Array of nodes containing the parse */aNode174148,6217247 - JsonNode *aNode; /* Array of nodes containing the parse */JsonParse::aNode174148,6217247 - const char *zJson; /* Original JSON string */zJson174149,6217310 - const char *zJson; /* Original JSON string */JsonParse::zJson174149,6217310 - u32 *aUp; /* Index of parent of each node */aUp174150,6217358 - u32 *aUp; /* Index of parent of each node */JsonParse::aUp174150,6217358 - u8 oom; /* Set to true if out of memory */oom174151,6217414 - u8 oom; /* Set to true if out of memory */JsonParse::oom174151,6217414 - u8 nErr; /* Number of errors seen */nErr174152,6217470 - u8 nErr; /* Number of errors seen */JsonParse::nErr174152,6217470 -static void jsonZero(JsonString *p){jsonZero174161,6217783 -static void jsonInit(JsonString *p, sqlite3_context *pCtx){jsonInit174170,6217952 -static void jsonReset(JsonString *p){jsonReset174180,6218158 -static void jsonOom(JsonString *p){jsonOom174188,6218305 -static int jsonGrow(JsonString *p, u32 N){jsonGrow174197,6218543 -static void jsonAppendRaw(JsonString *p, const char *zIn, u32 N){jsonAppendRaw174224,6219163 -static void jsonPrintf(int N, JsonString *p, const char *zFormat, ...){jsonPrintf174232,6219418 -static void jsonAppendChar(JsonString *p, char c){jsonAppendChar174243,6219740 -static void jsonAppendSeparator(JsonString *p){jsonAppendSeparator174251,6219978 -static void jsonAppendString(JsonString *p, const char *zIn, u32 N){jsonAppendString174263,6220357 -static void jsonAppendValue(jsonAppendValue174306,6221762 -static void jsonResult(JsonString *p){jsonResult174346,6222791 -static u32 jsonNodeSize(JsonNode *pNode){jsonNodeSize174369,6223643 -static void jsonParseReset(JsonParse *pParse){jsonParseReset174377,6223852 -static void jsonRenderNode(jsonRenderNode174391,6224223 -static void jsonReturnJson(jsonReturnJson174475,6226573 -static void jsonReturn(jsonReturn174490,6226991 -# define JSON_NOINLINE JSON_NOINLINE174636,6231285 -# define JSON_NOINLINE JSON_NOINLINE174638,6231378 -# define JSON_NOINLINEJSON_NOINLINE174640,6231430 -static JSON_NOINLINE int jsonParseAddNodeExpand(jsonParseAddNodeExpand174644,6231463 -static int jsonParseAddNode(jsonParseAddNode174671,6232339 -static int jsonParseValue(JsonParse *pParse, u32 i){jsonParseValue174698,6233199 -static int jsonParse(jsonParse174839,6237266 -static void jsonParseFillInParentage(JsonParse *pParse, u32 i, u32 iParent){jsonParseFillInParentage174871,6238103 -static int jsonParseFindParents(JsonParse *pParse){jsonParseFindParents174898,6238740 -static int jsonLabelCompare(JsonNode *pNode, const char *zKey, u32 nKey){jsonLabelCompare174914,6239120 -static JsonNode *jsonLookupStep(jsonLookupStep174936,6239879 -static JsonNode *jsonLookupAppend(jsonLookupAppend175049,6243071 -static char *jsonPathSyntaxError(const char *zErr){jsonPathSyntaxError175075,6243906 -static JsonNode *jsonLookup(jsonLookup175089,6244350 -static void jsonWrongNumArgs(jsonWrongNumArgs175126,6245220 -static void jsonParseFunc(jsonParseFunc175147,6245874 -static void jsonTest1Func(jsonTest1Func175185,6246940 -static void jsonArrayFunc(jsonArrayFunc175204,6247531 -static void jsonArrayLengthFunc(jsonArrayLengthFunc175231,6248078 -static void jsonExtractFunc(jsonExtractFunc175269,6249073 -static void jsonObjectFunc(jsonObjectFunc175313,6250194 -static void jsonRemoveFunc(jsonRemoveFunc175355,6251222 -static void jsonReplaceFunc(jsonReplaceFunc175388,6252099 -static void jsonSetFunc(jsonSetFunc175435,6253339 -static void jsonTypeFunc(jsonTypeFunc175484,6254557 -static void jsonValidFunc(jsonValidFunc175513,6255213 -static void jsonArrayStep(jsonArrayStep175538,6255821 -static void jsonArrayFinal(sqlite3_context *ctx){jsonArrayFinal175557,6256236 -static void jsonObjectStep(jsonObjectStep175582,6256945 -static void jsonObjectFinal(sqlite3_context *ctx){jsonObjectFinal175607,6257545 -typedef struct JsonEachCursor JsonEachCursor;JsonEachCursor175631,6258340 -struct JsonEachCursor {JsonEachCursor175632,6258386 - sqlite3_vtab_cursor base; /* Base class - must be first */base175633,6258410 - sqlite3_vtab_cursor base; /* Base class - must be first */JsonEachCursor::base175633,6258410 - u32 iRowid; /* The rowid */iRowid175634,6258472 - u32 iRowid; /* The rowid */JsonEachCursor::iRowid175634,6258472 - u32 iBegin; /* The first node of the scan */iBegin175635,6258517 - u32 iBegin; /* The first node of the scan */JsonEachCursor::iBegin175635,6258517 - u32 i; /* Index in sParse.aNode[] of current row */i175636,6258579 - u32 i; /* Index in sParse.aNode[] of current row */JsonEachCursor::i175636,6258579 - u32 iEnd; /* EOF when i equals or exceeds this value */iEnd175637,6258653 - u32 iEnd; /* EOF when i equals or exceeds this value */JsonEachCursor::iEnd175637,6258653 - u8 eType; /* Type of top-level element */eType175638,6258728 - u8 eType; /* Type of top-level element */JsonEachCursor::eType175638,6258728 - u8 bRecursive; /* True for json_tree(). False for json_each() */bRecursive175639,6258789 - u8 bRecursive; /* True for json_tree(). False for json_each() */JsonEachCursor::bRecursive175639,6258789 - char *zJson; /* Input JSON */zJson175640,6258869 - char *zJson; /* Input JSON */JsonEachCursor::zJson175640,6258869 - char *zRoot; /* Path by which to filter zJson */zRoot175641,6258915 - char *zRoot; /* Path by which to filter zJson */JsonEachCursor::zRoot175641,6258915 - JsonParse sParse; /* Parse of the input JSON */sParse175642,6258980 - JsonParse sParse; /* Parse of the input JSON */JsonEachCursor::sParse175642,6258980 -static int jsonEachConnect(jsonEachConnect175646,6259093 -#define JEACH_KEY JEACH_KEY175657,6259283 -#define JEACH_VALUE JEACH_VALUE175658,6259307 -#define JEACH_TYPE JEACH_TYPE175659,6259331 -#define JEACH_ATOM JEACH_ATOM175660,6259355 -#define JEACH_ID JEACH_ID175661,6259379 -#define JEACH_PARENT JEACH_PARENT175662,6259403 -#define JEACH_FULLKEY JEACH_FULLKEY175663,6259427 -#define JEACH_PATH JEACH_PATH175664,6259451 -#define JEACH_JSON JEACH_JSON175665,6259475 -#define JEACH_ROOT JEACH_ROOT175666,6259499 -static int jsonEachDisconnect(sqlite3_vtab *pVtab){jsonEachDisconnect175684,6259978 -static int jsonEachOpenEach(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){jsonEachOpenEach175690,6260139 -static int jsonEachOpenTree(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){jsonEachOpenTree175702,6260487 -static void jsonEachCursorReset(JsonEachCursor *p){jsonEachCursorReset175713,6260814 -static int jsonEachClose(sqlite3_vtab_cursor *cur){jsonEachClose175726,6261088 -static int jsonEachEof(sqlite3_vtab_cursor *cur){jsonEachEof175735,6261353 -static int jsonEachNext(sqlite3_vtab_cursor *cur){jsonEachNext175741,6261537 -static void jsonEachComputePath(jsonEachComputePath175782,6262474 -static int jsonEachColumn(jsonEachColumn175809,6263267 -static int jsonEachRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){jsonEachRowid175907,6266014 -static int jsonEachBestIndex(jsonEachBestIndex175918,6266423 -static int jsonEachFilter(jsonEachFilter175957,6267528 -static sqlite3_module jsonEachModule = {jsonEachModule176036,6269858 -static sqlite3_module jsonTreeModule = {jsonTreeModule176063,6271083 -SQLITE_PRIVATE int sqlite3Json1Init(sqlite3 *db){sqlite3Json1Init176096,6272667 -__declspec(dllexport)__declspec176165,6275338 -# define NDEBUG NDEBUG176186,6275941 -# undef NDEBUGNDEBUG176189,6276011 -#define _FTS5_H_FTS5_H176213,6276608 -typedef struct Fts5ExtensionApi Fts5ExtensionApi;Fts5ExtensionApi176228,6276914 -typedef struct Fts5Context Fts5Context;Fts5Context176229,6276964 -typedef struct Fts5PhraseIter Fts5PhraseIter;Fts5PhraseIter176230,6277004 -typedef void (*fts5_extension_function)(fts5_extension_function176232,6277051 -struct Fts5PhraseIter {Fts5PhraseIter176240,6277464 - const unsigned char *a;a176241,6277488 - const unsigned char *a;Fts5PhraseIter::a176241,6277488 - const unsigned char *b;b176242,6277514 - const unsigned char *b;Fts5PhraseIter::b176242,6277514 -struct Fts5ExtensionApi {Fts5ExtensionApi176460,6287175 - int iVersion; /* Currently always set to 3 */iVersion176461,6287201 - int iVersion; /* Currently always set to 3 */Fts5ExtensionApi::iVersion176461,6287201 - void *(*xUserData)(Fts5Context*);xUserData176463,6287268 - void *(*xUserData)(Fts5Context*);Fts5ExtensionApi::xUserData176463,6287268 - int (*xColumnCount)(Fts5Context*);xColumnCount176465,6287305 - int (*xColumnCount)(Fts5Context*);Fts5ExtensionApi::xColumnCount176465,6287305 - int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);xRowCount176466,6287342 - int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);Fts5ExtensionApi::xRowCount176466,6287342 - int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken);xColumnTotalSize176467,6287398 - int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken);Fts5ExtensionApi::xColumnTotalSize176467,6287398 - int (*xTokenize)(Fts5Context*, xTokenize176469,6287474 - int (*xTokenize)(Fts5Context*, Fts5ExtensionApi::xTokenize176469,6287474 - int (*xPhraseCount)(Fts5Context*);xPhraseCount176475,6287717 - int (*xPhraseCount)(Fts5Context*);Fts5ExtensionApi::xPhraseCount176475,6287717 - int (*xPhraseSize)(Fts5Context*, int iPhrase);xPhraseSize176476,6287754 - int (*xPhraseSize)(Fts5Context*, int iPhrase);Fts5ExtensionApi::xPhraseSize176476,6287754 - int (*xInstCount)(Fts5Context*, int *pnInst);xInstCount176478,6287804 - int (*xInstCount)(Fts5Context*, int *pnInst);Fts5ExtensionApi::xInstCount176478,6287804 - int (*xInst)(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff);xInst176479,6287852 - int (*xInst)(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff);Fts5ExtensionApi::xInst176479,6287852 - sqlite3_int64 (*xRowid)(Fts5Context*);xRowid176481,6287932 - sqlite3_int64 (*xRowid)(Fts5Context*);Fts5ExtensionApi::xRowid176481,6287932 - int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);xColumnText176482,6287973 - int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);Fts5ExtensionApi::xColumnText176482,6287973 - int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken);xColumnSize176483,6288045 - int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken);Fts5ExtensionApi::xColumnSize176483,6288045 - int (*xQueryPhrase)(Fts5Context*, int iPhrase, void *pUserData,xQueryPhrase176485,6288106 - int (*xQueryPhrase)(Fts5Context*, int iPhrase, void *pUserData,Fts5ExtensionApi::xQueryPhrase176485,6288106 - int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*));xSetAuxdata176488,6288232 - int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*));Fts5ExtensionApi::xSetAuxdata176488,6288232 - void *(*xGetAuxdata)(Fts5Context*, int bClear);xGetAuxdata176489,6288303 - void *(*xGetAuxdata)(Fts5Context*, int bClear);Fts5ExtensionApi::xGetAuxdata176489,6288303 - int (*xPhraseFirst)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*);xPhraseFirst176491,6288354 - int (*xPhraseFirst)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*);Fts5ExtensionApi::xPhraseFirst176491,6288354 - void (*xPhraseNext)(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff);xPhraseNext176492,6288433 - void (*xPhraseNext)(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff);Fts5ExtensionApi::xPhraseNext176492,6288433 - int (*xPhraseFirstColumn)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*);xPhraseFirstColumn176494,6288512 - int (*xPhraseFirstColumn)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*);Fts5ExtensionApi::xPhraseFirstColumn176494,6288512 - void (*xPhraseNextColumn)(Fts5Context*, Fts5PhraseIter*, int *piCol);xPhraseNextColumn176495,6288591 - void (*xPhraseNextColumn)(Fts5Context*, Fts5PhraseIter*, int *piCol);Fts5ExtensionApi::xPhraseNextColumn176495,6288591 -typedef struct Fts5Tokenizer Fts5Tokenizer;Fts5Tokenizer176694,6298891 -typedef struct fts5_tokenizer fts5_tokenizer;fts5_tokenizer176695,6298935 -struct fts5_tokenizer {fts5_tokenizer176696,6298981 - int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut);xCreate176697,6299005 - int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut);fts5_tokenizer::xCreate176697,6299005 - void (*xDelete)(Fts5Tokenizer*);xDelete176698,6299083 - void (*xDelete)(Fts5Tokenizer*);fts5_tokenizer::xDelete176698,6299083 - int (*xTokenize)(Fts5Tokenizer*, xTokenize176699,6299118 - int (*xTokenize)(Fts5Tokenizer*, fts5_tokenizer::xTokenize176699,6299118 -#define FTS5_TOKENIZE_QUERY FTS5_TOKENIZE_QUERY176715,6299789 -#define FTS5_TOKENIZE_PREFIX FTS5_TOKENIZE_PREFIX176716,6299828 -#define FTS5_TOKENIZE_DOCUMENT FTS5_TOKENIZE_DOCUMENT176717,6299867 -#define FTS5_TOKENIZE_AUX FTS5_TOKENIZE_AUX176718,6299906 -#define FTS5_TOKEN_COLOCATED FTS5_TOKEN_COLOCATED176722,6300080 -typedef struct fts5_api fts5_api;fts5_api176731,6300380 -struct fts5_api {fts5_api176732,6300414 - int iVersion; /* Currently always set to 2 */iVersion176733,6300432 - int iVersion; /* Currently always set to 2 */fts5_api::iVersion176733,6300432 - int (*xCreateTokenizer)(xCreateTokenizer176736,6300530 - int (*xCreateTokenizer)(fts5_api::xCreateTokenizer176736,6300530 - int (*xFindTokenizer)(xFindTokenizer176745,6300721 - int (*xFindTokenizer)(fts5_api::xFindTokenizer176745,6300721 - int (*xCreateFunction)(xCreateFunction176753,6300888 - int (*xCreateFunction)(fts5_api::xCreateFunction176753,6300888 -#define _FTS5INT_H_FTS5INT_H176787,6301634 -typedef unsigned char u8;u8176798,6301814 -typedef unsigned int u32;u32176799,6301841 -typedef unsigned short u16;u16176800,6301869 -typedef short i16;i16176801,6301897 -typedef sqlite3_int64 i64;i64176802,6301916 -typedef sqlite3_uint64 u64;u64176803,6301943 -#define ArraySize(ArraySize176805,6301972 -#define testcase(testcase176807,6302028 -#define ALWAYS(ALWAYS176808,6302048 -#define NEVER(NEVER176809,6302068 -#define MIN(MIN176811,6302088 -#define MAX(MAX176812,6302131 -# define LARGEST_INT64 LARGEST_INT64176817,6302256 -# define SMALLEST_INT64 SMALLEST_INT64176818,6302317 -#define FTS5_MAX_TOKEN_SIZE FTS5_MAX_TOKEN_SIZE176825,6302591 -#define FTS5_MAX_PREFIX_INDEXES FTS5_MAX_PREFIX_INDEXES176832,6302831 -#define FTS5_DEFAULT_NEARDIST FTS5_DEFAULT_NEARDIST176834,6302867 -#define FTS5_DEFAULT_RANK FTS5_DEFAULT_RANK176835,6302900 -#define FTS5_RANK_NAME FTS5_RANK_NAME176838,6302975 -#define FTS5_ROWID_NAME FTS5_ROWID_NAME176839,6303005 -# define FTS5_CORRUPT FTS5_CORRUPT176842,6303058 -# define FTS5_CORRUPT FTS5_CORRUPT176845,6303144 -# define assert_nc(assert_nc176855,6303460 -# define assert_nc(assert_nc176857,6303531 -# define UNUSED_PARAM(UNUSED_PARAM176863,6303678 -# define UNUSED_PARAM2(UNUSED_PARAM2176867,6303744 -typedef struct Fts5Global Fts5Global;Fts5Global176870,6303803 -typedef struct Fts5Colset Fts5Colset;Fts5Colset176871,6303841 -struct Fts5Colset {Fts5Colset176879,6304162 - int nCol;nCol176880,6304182 - int nCol;Fts5Colset::nCol176880,6304182 - int aiCol[1];aiCol176881,6304194 - int aiCol[1];Fts5Colset::aiCol176881,6304194 -typedef struct Fts5Config Fts5Config;Fts5Config176891,6304444 -struct Fts5Config {Fts5Config176928,6305652 - sqlite3 *db; /* Database handle */db176929,6305672 - sqlite3 *db; /* Database handle */Fts5Config::db176929,6305672 - char *zDb; /* Database holding FTS index (e.g. "main") */zDb176930,6305728 - char *zDb; /* Database holding FTS index (e.g. "main") */Fts5Config::zDb176930,6305728 - char *zName; /* Name of FTS index */zName176931,6305809 - char *zName; /* Name of FTS index */Fts5Config::zName176931,6305809 - int nCol; /* Number of columns */nCol176932,6305867 - int nCol; /* Number of columns */Fts5Config::nCol176932,6305867 - char **azCol; /* Column names */azCol176933,6305925 - char **azCol; /* Column names */Fts5Config::azCol176933,6305925 - u8 *abUnindexed; /* True for unindexed columns */abUnindexed176934,6305978 - u8 *abUnindexed; /* True for unindexed columns */Fts5Config::abUnindexed176934,6305978 - int nPrefix; /* Number of prefix indexes */nPrefix176935,6306045 - int nPrefix; /* Number of prefix indexes */Fts5Config::nPrefix176935,6306045 - int *aPrefix; /* Sizes in bytes of nPrefix prefix indexes */aPrefix176936,6306110 - int *aPrefix; /* Sizes in bytes of nPrefix prefix indexes */Fts5Config::aPrefix176936,6306110 - int eContent; /* An FTS5_CONTENT value */eContent176937,6306191 - int eContent; /* An FTS5_CONTENT value */Fts5Config::eContent176937,6306191 - char *zContent; /* content table */ zContent176938,6306253 - char *zContent; /* content table */ Fts5Config::zContent176938,6306253 - char *zContentRowid; /* "content_rowid=" option value */ zContentRowid176939,6306308 - char *zContentRowid; /* "content_rowid=" option value */ Fts5Config::zContentRowid176939,6306308 - int bColumnsize; /* "columnsize=" option value (dflt==1) */bColumnsize176940,6306379 - int bColumnsize; /* "columnsize=" option value (dflt==1) */Fts5Config::bColumnsize176940,6306379 - int eDetail; /* FTS5_DETAIL_XXX value */eDetail176941,6306456 - int eDetail; /* FTS5_DETAIL_XXX value */Fts5Config::eDetail176941,6306456 - char *zContentExprlist;zContentExprlist176942,6306518 - char *zContentExprlist;Fts5Config::zContentExprlist176942,6306518 - Fts5Tokenizer *pTok;pTok176943,6306544 - Fts5Tokenizer *pTok;Fts5Config::pTok176943,6306544 - fts5_tokenizer *pTokApi;pTokApi176944,6306567 - fts5_tokenizer *pTokApi;Fts5Config::pTokApi176944,6306567 - int iCookie; /* Incremented when %_config is modified */iCookie176947,6306641 - int iCookie; /* Incremented when %_config is modified */Fts5Config::iCookie176947,6306641 - int pgsz; /* Approximate page size used in %_data */pgsz176948,6306719 - int pgsz; /* Approximate page size used in %_data */Fts5Config::pgsz176948,6306719 - int nAutomerge; /* 'automerge' setting */nAutomerge176949,6306796 - int nAutomerge; /* 'automerge' setting */Fts5Config::nAutomerge176949,6306796 - int nCrisisMerge; /* Maximum allowed segments per level */nCrisisMerge176950,6306856 - int nCrisisMerge; /* Maximum allowed segments per level */Fts5Config::nCrisisMerge176950,6306856 - int nUsermerge; /* 'usermerge' setting */nUsermerge176951,6306931 - int nUsermerge; /* 'usermerge' setting */Fts5Config::nUsermerge176951,6306931 - int nHashSize; /* Bytes of memory for in-memory hash */nHashSize176952,6306991 - int nHashSize; /* Bytes of memory for in-memory hash */Fts5Config::nHashSize176952,6306991 - char *zRank; /* Name of rank function */zRank176953,6307066 - char *zRank; /* Name of rank function */Fts5Config::zRank176953,6307066 - char *zRankArgs; /* Arguments to rank function */zRankArgs176954,6307128 - char *zRankArgs; /* Arguments to rank function */Fts5Config::zRankArgs176954,6307128 - char **pzErrmsg;pzErrmsg176957,6307266 - char **pzErrmsg;Fts5Config::pzErrmsg176957,6307266 - int bPrefixIndex; /* True to use prefix-indexes */bPrefixIndex176960,6307306 - int bPrefixIndex; /* True to use prefix-indexes */Fts5Config::bPrefixIndex176960,6307306 -#define FTS5_CURRENT_VERSION FTS5_CURRENT_VERSION176965,6307447 -#define FTS5_CONTENT_NORMAL FTS5_CONTENT_NORMAL176967,6307479 -#define FTS5_CONTENT_NONE FTS5_CONTENT_NONE176968,6307511 -#define FTS5_CONTENT_EXTERNAL FTS5_CONTENT_EXTERNAL176969,6307543 -#define FTS5_DETAIL_FULL FTS5_DETAIL_FULL176971,6307576 -#define FTS5_DETAIL_NONE FTS5_DETAIL_NONE176972,6307606 -#define FTS5_DETAIL_COLUMNS FTS5_DETAIL_COLUMNS176973,6307636 -typedef struct Fts5Buffer Fts5Buffer;Fts5Buffer177013,6308908 -struct Fts5Buffer {Fts5Buffer177014,6308946 - u8 *p;p177015,6308966 - u8 *p;Fts5Buffer::p177015,6308966 - int n;n177016,6308975 - int n;Fts5Buffer::n177016,6308975 - int nSpace;nSpace177017,6308984 - int nSpace;Fts5Buffer::nSpace177017,6308984 -#define fts5BufferZero(fts5BufferZero177031,6309592 -#define fts5BufferAppendVarint(fts5BufferAppendVarint177032,6309655 -#define fts5BufferFree(fts5BufferFree177033,6309730 -#define fts5BufferAppendBlob(fts5BufferAppendBlob177034,6309793 -#define fts5BufferSet(fts5BufferSet177035,6309868 -#define fts5BufferGrow(fts5BufferGrow177037,6309937 -#define FTS5_POS2COLUMN(FTS5_POS2COLUMN177046,6310238 -#define FTS5_POS2OFFSET(FTS5_POS2OFFSET177047,6310286 -typedef struct Fts5PoslistReader Fts5PoslistReader;Fts5PoslistReader177049,6310342 -struct Fts5PoslistReader {Fts5PoslistReader177050,6310394 - const u8 *a; /* Position list to iterate through */a177052,6310491 - const u8 *a; /* Position list to iterate through */Fts5PoslistReader::a177052,6310491 - int n; /* Size of buffer at a[] in bytes */n177053,6310564 - int n; /* Size of buffer at a[] in bytes */Fts5PoslistReader::n177053,6310564 - int i; /* Current offset in a[] */i177054,6310635 - int i; /* Current offset in a[] */Fts5PoslistReader::i177054,6310635 - u8 bFlag; /* For client use (any custom purpose) */bFlag177056,6310698 - u8 bFlag; /* For client use (any custom purpose) */Fts5PoslistReader::bFlag177056,6310698 - u8 bEof; /* Set to true at EOF */bEof177059,6310800 - u8 bEof; /* Set to true at EOF */Fts5PoslistReader::bEof177059,6310800 - i64 iPos; /* (iCol<<32) + iPos */iPos177060,6310859 - i64 iPos; /* (iCol<<32) + iPos */Fts5PoslistReader::iPos177060,6310859 -typedef struct Fts5PoslistWriter Fts5PoslistWriter;Fts5PoslistWriter177068,6311170 -struct Fts5PoslistWriter {Fts5PoslistWriter177069,6311222 - i64 iPrev;iPrev177070,6311249 - i64 iPrev;Fts5PoslistWriter::iPrev177070,6311249 -typedef struct Fts5Termset Fts5Termset;Fts5Termset177090,6311976 -typedef struct Fts5Index Fts5Index;Fts5Index177104,6312533 -typedef struct Fts5IndexIter Fts5IndexIter;Fts5IndexIter177105,6312569 -struct Fts5IndexIter {Fts5IndexIter177107,6312614 - i64 iRowid;iRowid177108,6312637 - i64 iRowid;Fts5IndexIter::iRowid177108,6312637 - const u8 *pData;pData177109,6312651 - const u8 *pData;Fts5IndexIter::pData177109,6312651 - int nData;nData177110,6312670 - int nData;Fts5IndexIter::nData177110,6312670 - u8 bEof;bEof177111,6312683 - u8 bEof;Fts5IndexIter::bEof177111,6312683 -#define sqlite3Fts5IterEof(sqlite3Fts5IterEof177114,6312698 -#define FTS5INDEX_QUERY_PREFIX FTS5INDEX_QUERY_PREFIX177119,6312816 -#define FTS5INDEX_QUERY_DESC FTS5INDEX_QUERY_DESC177120,6312879 -#define FTS5INDEX_QUERY_TEST_NOIDX FTS5INDEX_QUERY_TEST_NOIDX177121,6312960 -#define FTS5INDEX_QUERY_SCAN FTS5INDEX_QUERY_SCAN177122,6313034 -#define FTS5INDEX_QUERY_SKIPEMPTY FTS5INDEX_QUERY_SKIPEMPTY177127,6313266 -#define FTS5INDEX_QUERY_NOOUTPUT FTS5INDEX_QUERY_NOOUTPUT177128,6313308 -#define fts5GetVarint32(fts5GetVarint32177275,6318092 -#define fts5GetVarint fts5GetVarint177276,6318156 -#define fts5FastGetVarint32(fts5FastGetVarint32177278,6318203 -typedef struct Fts5Hash Fts5Hash;Fts5Hash177314,6319218 -#define FTS5_STMT_SCAN_ASC FTS5_STMT_SCAN_ASC177365,6321012 -#define FTS5_STMT_SCAN_DESC FTS5_STMT_SCAN_DESC177366,6321092 -#define FTS5_STMT_LOOKUP FTS5_STMT_LOOKUP177367,6321173 -typedef struct Fts5Storage Fts5Storage;Fts5Storage177369,6321253 -typedef struct Fts5Expr Fts5Expr;Fts5Expr177412,6323070 -typedef struct Fts5ExprNode Fts5ExprNode;Fts5ExprNode177413,6323104 -typedef struct Fts5Parse Fts5Parse;Fts5Parse177414,6323146 -typedef struct Fts5Token Fts5Token;Fts5Token177415,6323182 -typedef struct Fts5ExprPhrase Fts5ExprPhrase;Fts5ExprPhrase177416,6323218 -typedef struct Fts5ExprNearset Fts5ExprNearset;Fts5ExprNearset177417,6323264 -struct Fts5Token {Fts5Token177419,6323313 - const char *p; /* Token text (not NULL terminated) */p177420,6323332 - const char *p; /* Token text (not NULL terminated) */Fts5Token::p177420,6323332 - int n; /* Size of buffer p in bytes */n177421,6323405 - int n; /* Size of buffer p in bytes */Fts5Token::n177421,6323405 -typedef struct Fts5PoslistPopulator Fts5PoslistPopulator;Fts5PoslistPopulator177455,6324455 -#define FTS5_OR FTS5_OR177563,6327802 -#define FTS5_AND FTS5_AND177564,6327850 -#define FTS5_NOT FTS5_NOT177565,6327898 -#define FTS5_TERM FTS5_TERM177566,6327946 -#define FTS5_COLON FTS5_COLON177567,6327994 -#define FTS5_LP FTS5_LP177568,6328042 -#define FTS5_RP FTS5_RP177569,6328090 -#define FTS5_LCP FTS5_LCP177570,6328138 -#define FTS5_RCP FTS5_RCP177571,6328186 -#define FTS5_STRING FTS5_STRING177572,6328234 -#define FTS5_COMMA FTS5_COMMA177573,6328282 -#define FTS5_PLUS FTS5_PLUS177574,6328330 -#define FTS5_STAR FTS5_STAR177575,6328378 -#define fts5YYNOERRORRECOVERY fts5YYNOERRORRECOVERY177611,6329665 -#define fts5yytestcase(fts5yytestcase177616,6329752 -#define fts5YYPARSEFREENOTNULL fts5YYPARSEFREENOTNULL177622,6329879 -#define fts5YYMALLOCARGTYPE fts5YYMALLOCARGTYPE177628,6330045 -# define INTERFACE INTERFACE177685,6333829 -#define fts5YYCODETYPE fts5YYCODETYPE177688,6333938 -#define fts5YYNOCODE fts5YYNOCODE177689,6333975 -#define fts5YYACTIONTYPE fts5YYACTIONTYPE177690,6333999 -#define sqlite3Fts5ParserFTS5TOKENTYPE sqlite3Fts5ParserFTS5TOKENTYPE177691,6334038 - int fts5yyinit;fts5yyinit177693,6334103 - int fts5yyinit;__anon481::fts5yyinit177693,6334103 - sqlite3Fts5ParserFTS5TOKENTYPE fts5yy0;fts5yy0177694,6334121 - sqlite3Fts5ParserFTS5TOKENTYPE fts5yy0;__anon481::fts5yy0177694,6334121 - Fts5Colset* fts5yy3;fts5yy3177695,6334163 - Fts5Colset* fts5yy3;__anon481::fts5yy3177695,6334163 - Fts5ExprPhrase* fts5yy11;fts5yy11177696,6334186 - Fts5ExprPhrase* fts5yy11;__anon481::fts5yy11177696,6334186 - Fts5ExprNode* fts5yy18;fts5yy18177697,6334214 - Fts5ExprNode* fts5yy18;__anon481::fts5yy18177697,6334214 - int fts5yy20;fts5yy20177698,6334240 - int fts5yy20;__anon481::fts5yy20177698,6334240 - Fts5ExprNearset* fts5yy26;fts5yy26177699,6334256 - Fts5ExprNearset* fts5yy26;__anon481::fts5yy26177699,6334256 -} fts5YYMINORTYPE;fts5YYMINORTYPE177700,6334285 -#define fts5YYSTACKDEPTH fts5YYSTACKDEPTH177702,6334329 -#define sqlite3Fts5ParserARG_SDECL sqlite3Fts5ParserARG_SDECL177704,6334365 -#define sqlite3Fts5ParserARG_PDECL sqlite3Fts5ParserARG_PDECL177705,6334419 -#define sqlite3Fts5ParserARG_FETCH sqlite3Fts5ParserARG_FETCH177706,6334473 -#define sqlite3Fts5ParserARG_STORE sqlite3Fts5ParserARG_STORE177707,6334550 -#define fts5YYNSTATE fts5YYNSTATE177708,6334616 -#define fts5YYNRULE fts5YYNRULE177709,6334652 -#define fts5YY_MAX_SHIFT fts5YY_MAX_SHIFT177710,6334688 -#define fts5YY_MIN_SHIFTREDUCE fts5YY_MIN_SHIFTREDUCE177711,6334724 -#define fts5YY_MAX_SHIFTREDUCE fts5YY_MAX_SHIFTREDUCE177712,6334760 -#define fts5YY_MIN_REDUCE fts5YY_MIN_REDUCE177713,6334796 -#define fts5YY_MAX_REDUCE fts5YY_MAX_REDUCE177714,6334832 -#define fts5YY_ERROR_ACTION fts5YY_ERROR_ACTION177715,6334868 -#define fts5YY_ACCEPT_ACTION fts5YY_ACCEPT_ACTION177716,6334904 -#define fts5YY_NO_ACTION fts5YY_NO_ACTION177717,6334940 -# define fts5yytestcase(fts5yytestcase177729,6335421 -#define fts5YY_ACTTAB_COUNT fts5YY_ACTTAB_COUNT177785,6338046 -static const fts5YYACTIONTYPE fts5yy_action[] = {fts5yy_action177786,6338079 -static const fts5YYCODETYPE fts5yy_lookahead[] = {fts5yy_lookahead177796,6338712 -#define fts5YY_SHIFT_USE_DFLT fts5YY_SHIFT_USE_DFLT177806,6339346 -#define fts5YY_SHIFT_COUNT fts5YY_SHIFT_COUNT177807,6339381 -#define fts5YY_SHIFT_MIN fts5YY_SHIFT_MIN177808,6339413 -#define fts5YY_SHIFT_MAX fts5YY_SHIFT_MAX177809,6339445 -static const signed char fts5yy_shift_ofst[] = {fts5yy_shift_ofst177810,6339477 -#define fts5YY_REDUCE_USE_DFLT fts5YY_REDUCE_USE_DFLT177815,6339727 -#define fts5YY_REDUCE_COUNT fts5YY_REDUCE_COUNT177816,6339764 -#define fts5YY_REDUCE_MIN fts5YY_REDUCE_MIN177817,6339797 -#define fts5YY_REDUCE_MAX fts5YY_REDUCE_MAX177818,6339831 -static const signed char fts5yy_reduce_ofst[] = {fts5yy_reduce_ofst177819,6339864 -static const fts5YYACTIONTYPE fts5yy_default[] = {fts5yy_default177823,6340029 -static const fts5YYCODETYPE fts5yyFallback[] = {fts5yyFallback177845,6340973 -struct fts5yyStackEntry {fts5yyStackEntry177865,6341699 - fts5YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */stateno177866,6341725 - fts5YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */fts5yyStackEntry::stateno177866,6341725 - fts5YYCODETYPE major; /* The major token value. This is the codemajor177867,6341810 - fts5YYCODETYPE major; /* The major token value. This is the codefts5yyStackEntry::major177867,6341810 - fts5YYMINORTYPE minor; /* The user-supplied minor token value. Thisminor177869,6341955 - fts5YYMINORTYPE minor; /* The user-supplied minor token value. Thisfts5yyStackEntry::minor177869,6341955 -typedef struct fts5yyStackEntry fts5yyStackEntry;fts5yyStackEntry177872,6342091 -struct fts5yyParser {fts5yyParser177876,6342241 - int fts5yyidx; /* Index of top element in stack */fts5yyidx177877,6342263 - int fts5yyidx; /* Index of top element in stack */fts5yyParser::fts5yyidx177877,6342263 - int fts5yyidxMax; /* Maximum value of fts5yyidx */fts5yyidxMax177879,6342367 - int fts5yyidxMax; /* Maximum value of fts5yyidx */fts5yyParser::fts5yyidxMax177879,6342367 - int fts5yyerrcnt; /* Shifts left before out of the error */fts5yyerrcnt177882,6342473 - int fts5yyerrcnt; /* Shifts left before out of the error */fts5yyParser::fts5yyerrcnt177882,6342473 - int fts5yystksz; /* Current side of the stack */fts5yystksz177886,6342664 - int fts5yystksz; /* Current side of the stack */fts5yyParser::fts5yystksz177886,6342664 - fts5yyStackEntry *fts5yystack; /* The parser's stack */fts5yystack177887,6342732 - fts5yyStackEntry *fts5yystack; /* The parser's stack */fts5yyParser::fts5yystack177887,6342732 -typedef struct fts5yyParser fts5yyParser;fts5yyParser177892,6342889 -static FILE *fts5yyTraceFILE = 0;fts5yyTraceFILE177896,6342972 -static char *fts5yyTracePrompt = 0;fts5yyTracePrompt177897,6343006 -static void sqlite3Fts5ParserTrace(FILE *TraceFILE, char *zTracePrompt){sqlite3Fts5ParserTrace177918,6343554 -static const char *const fts5yyTokenName[] = { fts5yyTokenName177929,6343966 -static const char *const fts5yyRuleName[] = {fts5yyRuleName177943,6344573 -static void fts5yyGrowStack(fts5yyParser *p){fts5yyGrowStack177976,6345662 -# define fts5YYMALLOCARGTYPE fts5YYMALLOCARGTYPE178001,6346357 -static void *sqlite3Fts5ParserAlloc(void *(*mallocProc)(fts5YYMALLOCARGTYPE)){sqlite3Fts5ParserAlloc178016,6346727 -static void fts5yy_destructor(fts5yy_destructor178040,6347569 -static void fts5yy_pop_parser_stack(fts5yyParser *pParser){fts5yy_pop_parser_stack178098,6349270 -static void sqlite3Fts5ParserFree(sqlite3Fts5ParserFree178120,6350008 -static int sqlite3Fts5ParserStackPeak(void *p){sqlite3Fts5ParserStackPeak178139,6350538 -static unsigned int fts5yy_find_shift_action(fts5yy_find_shift_action178149,6350773 -static int fts5yy_find_reduce_action(fts5yy_find_reduce_action178215,6352866 -static void fts5yyStackOverflow(fts5yyParser *fts5yypParser){fts5yyStackOverflow178245,6353653 -static void fts5yyTraceShift(fts5yyParser *fts5yypParser, int fts5yyNewState){fts5yyTraceShift178267,6354459 -# define fts5yyTraceShift(fts5yyTraceShift178280,6354978 -static void fts5yy_shift(fts5yy_shift178286,6355050 - fts5YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */lhs178324,6356366 - fts5YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */__anon482::lhs178324,6356366 - unsigned char nrhs; /* Number of right-hand side symbols in the rule */nrhs178325,6356443 - unsigned char nrhs; /* Number of right-hand side symbols in the rule */__anon482::nrhs178325,6356443 -} fts5yyRuleInfo[] = {fts5yyRuleInfo178326,6356521 -static void fts5yy_reduce(fts5yy_reduce178359,6357021 -static void fts5yy_parse_failed(fts5yy_parse_failed178555,6364902 -static void fts5yy_syntax_error(fts5yy_syntax_error178576,6365661 -#define FTS5TOKEN FTS5TOKEN178582,6365955 -static void fts5yy_accept(fts5yy_accept178596,6366464 -static void sqlite3Fts5Parser(sqlite3Fts5Parser178632,6367744 -typedef struct CInstIter CInstIter;CInstIter178839,6375289 -struct CInstIter {CInstIter178840,6375325 - const Fts5ExtensionApi *pApi; /* API offered by current FTS version */pApi178841,6375344 - const Fts5ExtensionApi *pApi; /* API offered by current FTS version */CInstIter::pApi178841,6375344 - Fts5Context *pFts; /* First arg to pass to pApi functions */pFts178842,6375419 - Fts5Context *pFts; /* First arg to pass to pApi functions */CInstIter::pFts178842,6375419 - int iCol; /* Column to search */iCol178843,6375495 - int iCol; /* Column to search */CInstIter::iCol178843,6375495 - int iInst; /* Next phrase instance index */iInst178844,6375552 - int iInst; /* Next phrase instance index */CInstIter::iInst178844,6375552 - int nInst; /* Total number of phrase instances */nInst178845,6375619 - int nInst; /* Total number of phrase instances */CInstIter::nInst178845,6375619 - int iStart; /* First token in coalesced phrase instance */iStart178848,6375718 - int iStart; /* First token in coalesced phrase instance */CInstIter::iStart178848,6375718 - int iEnd; /* Last token in coalesced phrase instance */iEnd178849,6375799 - int iEnd; /* Last token in coalesced phrase instance */CInstIter::iEnd178849,6375799 -static int fts5CInstIterNext(CInstIter *pIter){fts5CInstIterNext178856,6376027 -static int fts5CInstIterInit(fts5CInstIterInit178887,6376838 -typedef struct HighlightContext HighlightContext;HighlightContext178913,6377317 -struct HighlightContext {HighlightContext178914,6377367 - CInstIter iter; /* Coalesced Instance Iterator */iter178915,6377393 - CInstIter iter; /* Coalesced Instance Iterator */HighlightContext::iter178915,6377393 - int iPos; /* Current token offset in zIn[] */iPos178916,6377461 - int iPos; /* Current token offset in zIn[] */HighlightContext::iPos178916,6377461 - int iRangeStart; /* First token to include */iRangeStart178917,6377531 - int iRangeStart; /* First token to include */HighlightContext::iRangeStart178917,6377531 - int iRangeEnd; /* If non-zero, last token to include */iRangeEnd178918,6377594 - int iRangeEnd; /* If non-zero, last token to include */HighlightContext::iRangeEnd178918,6377594 - const char *zOpen; /* Opening highlight */zOpen178919,6377669 - const char *zOpen; /* Opening highlight */HighlightContext::zOpen178919,6377669 - const char *zClose; /* Closing highlight */zClose178920,6377727 - const char *zClose; /* Closing highlight */HighlightContext::zClose178920,6377727 - const char *zIn; /* Input text */zIn178921,6377785 - const char *zIn; /* Input text */HighlightContext::zIn178921,6377785 - int nIn; /* Size of input text in bytes */nIn178922,6377836 - int nIn; /* Size of input text in bytes */HighlightContext::nIn178922,6377836 - int iOff; /* Current offset within zIn[] */iOff178923,6377904 - int iOff; /* Current offset within zIn[] */HighlightContext::iOff178923,6377904 - char *zOut; /* Output value */zOut178924,6377972 - char *zOut; /* Output value */HighlightContext::zOut178924,6377972 -static void fts5HighlightAppend(fts5HighlightAppend178936,6378462 -static int fts5HighlightCb(fts5HighlightCb178951,6378798 -static void fts5HighlightFunction(fts5HighlightFunction179005,6380417 -static void fts5SnippetFunction(fts5SnippetFunction179054,6381952 -typedef struct Fts5Bm25Data Fts5Bm25Data;Fts5Bm25Data179180,6386276 -struct Fts5Bm25Data {Fts5Bm25Data179181,6386318 - int nPhrase; /* Number of phrases in query */nPhrase179182,6386340 - int nPhrase; /* Number of phrases in query */Fts5Bm25Data::nPhrase179182,6386340 - double avgdl; /* Average number of tokens in each row */avgdl179183,6386407 - double avgdl; /* Average number of tokens in each row */Fts5Bm25Data::avgdl179183,6386407 - double *aIDF; /* IDF for each phrase */aIDF179184,6386484 - double *aIDF; /* IDF for each phrase */Fts5Bm25Data::aIDF179184,6386484 - double *aFreq; /* Array used to calculate phrase freq. */aFreq179185,6386544 - double *aFreq; /* Array used to calculate phrase freq. */Fts5Bm25Data::aFreq179185,6386544 -static int fts5CountCb(fts5CountCb179192,6386765 -static int fts5Bm25GetData(fts5Bm25GetData179208,6387195 -static void fts5Bm25Function(fts5Bm25Function179280,6389716 -static int sqlite3Fts5AuxInit(fts5_api *pApi){sqlite3Fts5AuxInit179338,6391953 -static int sqlite3Fts5BufferSize(int *pRc, Fts5Buffer *pBuf, u32 nByte){sqlite3Fts5BufferSize179383,6393213 -static void sqlite3Fts5BufferAppendVarint(int *pRc, Fts5Buffer *pBuf, i64 iVal){sqlite3Fts5BufferAppendVarint179407,6393767 -static void sqlite3Fts5Put32(u8 *aBuf, int iVal){sqlite3Fts5Put32179412,6393956 -static int sqlite3Fts5Get32(const u8 *aBuf){sqlite3Fts5Get32179419,6394141 -static void sqlite3Fts5BufferAppendBlob(sqlite3Fts5BufferAppendBlob179428,6394445 -static void sqlite3Fts5BufferAppendString(sqlite3Fts5BufferAppendString179445,6394914 -static void sqlite3Fts5BufferAppendPrintf(sqlite3Fts5BufferAppendPrintf179463,6395473 -static char *sqlite3Fts5Mprintf(int *pRc, const char *zFmt, ...){sqlite3Fts5Mprintf179484,6395857 -static void sqlite3Fts5BufferFree(Fts5Buffer *pBuf){sqlite3Fts5BufferFree179502,6396219 -static void sqlite3Fts5BufferZero(Fts5Buffer *pBuf){sqlite3Fts5BufferZero179511,6396442 -static void sqlite3Fts5BufferSet(sqlite3Fts5BufferSet179520,6396699 -static int sqlite3Fts5PoslistNext64(sqlite3Fts5PoslistNext64179530,6396875 -static int sqlite3Fts5PoslistReaderNext(Fts5PoslistReader *pIter){sqlite3Fts5PoslistReaderNext179560,6397599 -static int sqlite3Fts5PoslistReaderInit(sqlite3Fts5PoslistReaderInit179567,6397795 -static void sqlite3Fts5PoslistSafeAppend(sqlite3Fts5PoslistSafeAppend179584,6398365 -static int sqlite3Fts5PoslistWriterAppend(sqlite3Fts5PoslistWriterAppend179599,6398788 -static void *sqlite3Fts5MallocZero(int *pRc, int nByte){sqlite3Fts5MallocZero179610,6399112 -static char *sqlite3Fts5Strndup(int *pRc, const char *pIn, int nIn){sqlite3Fts5Strndup179631,6399736 -static int sqlite3Fts5IsBareword(char t){sqlite3Fts5IsBareword179659,6400441 -typedef struct Fts5TermsetEntry Fts5TermsetEntry;Fts5TermsetEntry179677,6401245 -struct Fts5TermsetEntry {Fts5TermsetEntry179678,6401295 - char *pTerm;pTerm179679,6401321 - char *pTerm;Fts5TermsetEntry::pTerm179679,6401321 - int nTerm;nTerm179680,6401336 - int nTerm;Fts5TermsetEntry::nTerm179680,6401336 - int iIdx; /* Index (main or aPrefix[] entry) */iIdx179681,6401349 - int iIdx; /* Index (main or aPrefix[] entry) */Fts5TermsetEntry::iIdx179681,6401349 - Fts5TermsetEntry *pNext;pNext179682,6401421 - Fts5TermsetEntry *pNext;Fts5TermsetEntry::pNext179682,6401421 -struct Fts5Termset {Fts5Termset179685,6401452 - Fts5TermsetEntry *apHash[512];apHash179686,6401473 - Fts5TermsetEntry *apHash[512];Fts5Termset::apHash179686,6401473 -static int sqlite3Fts5TermsetNew(Fts5Termset **pp){sqlite3Fts5TermsetNew179689,6401510 -static int sqlite3Fts5TermsetAdd(sqlite3Fts5TermsetAdd179695,6401657 -static void sqlite3Fts5TermsetFree(Fts5Termset *p){sqlite3Fts5TermsetFree179744,6402960 -#define FTS5_DEFAULT_PAGE_SIZE FTS5_DEFAULT_PAGE_SIZE179777,6403759 -#define FTS5_DEFAULT_AUTOMERGE FTS5_DEFAULT_AUTOMERGE179778,6403797 -#define FTS5_DEFAULT_USERMERGE FTS5_DEFAULT_USERMERGE179779,6403835 -#define FTS5_DEFAULT_CRISISMERGE FTS5_DEFAULT_CRISISMERGE179780,6403873 -#define FTS5_DEFAULT_HASHSIZE FTS5_DEFAULT_HASHSIZE179781,6403911 -#define FTS5_MAX_PAGE_SIZE FTS5_MAX_PAGE_SIZE179784,6403989 -static int fts5_iswhitespace(char x){fts5_iswhitespace179786,6404028 -static int fts5_isopenquote(char x){fts5_isopenquote179790,6404088 -static const char *fts5ConfigSkipWhitespace(const char *pIn){fts5ConfigSkipWhitespace179799,6404377 -static const char *fts5ConfigSkipBareword(const char *pIn){fts5ConfigSkipBareword179812,6404733 -static int fts5_isdigit(char a){fts5_isdigit179819,6404896 -static const char *fts5ConfigSkipLiteral(const char *pIn){fts5ConfigSkipLiteral179825,6404963 -static int fts5Dequote(char *z){fts5Dequote179901,6406808 -static void sqlite3Fts5Dequote(char *z){sqlite3Fts5Dequote179946,6407872 -struct Fts5Enum {Fts5Enum179957,6408127 - const char *zName;zName179958,6408145 - const char *zName;Fts5Enum::zName179958,6408145 - int eVal;eVal179959,6408166 - int eVal;Fts5Enum::eVal179959,6408166 -typedef struct Fts5Enum Fts5Enum;Fts5Enum179961,6408181 -static int fts5ConfigSetEnum(fts5ConfigSetEnum179963,6408216 -static int fts5ConfigParseSpecial(fts5ConfigParseSpecial179992,6409006 -static int fts5ConfigDefaultTokenizer(Fts5Global *pGlobal, Fts5Config *pConfig){fts5ConfigDefaultTokenizer180156,6413686 -static const char *fts5ConfigGobbleWord(fts5ConfigGobbleWord180178,6414654 -static int fts5ConfigParseColumn(fts5ConfigParseColumn180218,6415557 -static int fts5ConfigMakeExprlist(Fts5Config *p){fts5ConfigMakeExprlist180246,6416200 -static int sqlite3Fts5ConfigParse(sqlite3Fts5ConfigParse180279,6417340 -static void sqlite3Fts5ConfigFree(Fts5Config *pConfig){sqlite3Fts5ConfigFree180398,6420709 -static int sqlite3Fts5ConfigDeclareVtab(Fts5Config *pConfig){sqlite3Fts5ConfigDeclareVtab180425,6421517 -static int sqlite3Fts5Tokenize(sqlite3Fts5Tokenize180471,6423255 -static const char *fts5ConfigSkipArgs(const char *pIn){fts5ConfigSkipArgs180490,6424010 -static int sqlite3Fts5ConfigParseRank(sqlite3Fts5ConfigParseRank180517,6424574 -static int sqlite3Fts5ConfigSetValue(sqlite3Fts5ConfigSetValue180576,6425899 -static int sqlite3Fts5ConfigLoad(Fts5Config *pConfig, int iCookie){sqlite3Fts5ConfigLoad180669,6428247 -#define FTS5_EOF FTS5_EOF180743,6430279 -#define FTS5_LARGEST_INT64 FTS5_LARGEST_INT64180745,6430299 -typedef struct Fts5ExprTerm Fts5ExprTerm;Fts5ExprTerm180747,6430365 -struct Fts5Expr {Fts5Expr180761,6430759 - Fts5Index *pIndex;pIndex180762,6430777 - Fts5Index *pIndex;Fts5Expr::pIndex180762,6430777 - Fts5Config *pConfig;pConfig180763,6430798 - Fts5Config *pConfig;Fts5Expr::pConfig180763,6430798 - Fts5ExprNode *pRoot;pRoot180764,6430821 - Fts5ExprNode *pRoot;Fts5Expr::pRoot180764,6430821 - int bDesc; /* Iterate in descending rowid order */bDesc180765,6430844 - int bDesc; /* Iterate in descending rowid order */Fts5Expr::bDesc180765,6430844 - int nPhrase; /* Number of phrases in expression */nPhrase180766,6430918 - int nPhrase; /* Number of phrases in expression */Fts5Expr::nPhrase180766,6430918 - Fts5ExprPhrase **apExprPhrase; /* Pointers to phrase objects */apExprPhrase180767,6430990 - Fts5ExprPhrase **apExprPhrase; /* Pointers to phrase objects */Fts5Expr::apExprPhrase180767,6430990 -struct Fts5ExprNode {Fts5ExprNode180780,6431392 - int eType; /* Node type */eType180781,6431414 - int eType; /* Node type */Fts5ExprNode::eType180781,6431414 - int bEof; /* True at EOF */bEof180782,6431464 - int bEof; /* True at EOF */Fts5ExprNode::bEof180782,6431464 - int bNomatch; /* True if entry is not a match */bNomatch180783,6431516 - int bNomatch; /* True if entry is not a match */Fts5ExprNode::bNomatch180783,6431516 - int (*xNext)(Fts5Expr*, Fts5ExprNode*, int, i64);xNext180786,6431621 - int (*xNext)(Fts5Expr*, Fts5ExprNode*, int, i64);Fts5ExprNode::xNext180786,6431621 - i64 iRowid; /* Current rowid */iRowid180788,6431674 - i64 iRowid; /* Current rowid */Fts5ExprNode::iRowid180788,6431674 - Fts5ExprNearset *pNear; /* For FTS5_STRING - cluster of phrases */pNear180789,6431728 - Fts5ExprNearset *pNear; /* For FTS5_STRING - cluster of phrases */Fts5ExprNode::pNear180789,6431728 - int nChild; /* Number of child nodes */nChild180793,6431940 - int nChild; /* Number of child nodes */Fts5ExprNode::nChild180793,6431940 - Fts5ExprNode *apChild[1]; /* Array of child nodes */apChild180794,6432002 - Fts5ExprNode *apChild[1]; /* Array of child nodes */Fts5ExprNode::apChild180794,6432002 -#define Fts5NodeIsString(Fts5NodeIsString180797,6432067 -#define fts5ExprNodeNext(fts5ExprNodeNext180803,6432303 -struct Fts5ExprTerm {Fts5ExprTerm180809,6432468 - int bPrefix; /* True for a prefix term */bPrefix180810,6432490 - int bPrefix; /* True for a prefix term */Fts5ExprTerm::bPrefix180810,6432490 - char *zTerm; /* nul-terminated term */zTerm180811,6432553 - char *zTerm; /* nul-terminated term */Fts5ExprTerm::zTerm180811,6432553 - Fts5IndexIter *pIter; /* Iterator for this term */pIter180812,6432613 - Fts5IndexIter *pIter; /* Iterator for this term */Fts5ExprTerm::pIter180812,6432613 - Fts5ExprTerm *pSynonym; /* Pointer to first in list of synonyms */pSynonym180813,6432676 - Fts5ExprTerm *pSynonym; /* Pointer to first in list of synonyms */Fts5ExprTerm::pSynonym180813,6432676 -struct Fts5ExprPhrase {Fts5ExprPhrase180820,6432874 - Fts5ExprNode *pNode; /* FTS5_STRING node this phrase is part of */pNode180821,6432898 - Fts5ExprNode *pNode; /* FTS5_STRING node this phrase is part of */Fts5ExprPhrase::pNode180821,6432898 - Fts5Buffer poslist; /* Current position list */poslist180822,6432978 - Fts5Buffer poslist; /* Current position list */Fts5ExprPhrase::poslist180822,6432978 - int nTerm; /* Number of entries in aTerm[] */nTerm180823,6433040 - int nTerm; /* Number of entries in aTerm[] */Fts5ExprPhrase::nTerm180823,6433040 - Fts5ExprTerm aTerm[1]; /* Terms that make up this phrase */aTerm180824,6433109 - Fts5ExprTerm aTerm[1]; /* Terms that make up this phrase */Fts5ExprPhrase::aTerm180824,6433109 -struct Fts5ExprNearset {Fts5ExprNearset180831,6433310 - int nNear; /* NEAR parameter */nNear180832,6433335 - int nNear; /* NEAR parameter */Fts5ExprNearset::nNear180832,6433335 - Fts5Colset *pColset; /* Columns to search (NULL -> all columns) */pColset180833,6433390 - Fts5Colset *pColset; /* Columns to search (NULL -> all columns) */Fts5ExprNearset::pColset180833,6433390 - int nPhrase; /* Number of entries in aPhrase[] array */nPhrase180834,6433470 - int nPhrase; /* Number of entries in aPhrase[] array */Fts5ExprNearset::nPhrase180834,6433470 - Fts5ExprPhrase *apPhrase[1]; /* Array of phrase pointers */apPhrase180835,6433547 - Fts5ExprPhrase *apPhrase[1]; /* Array of phrase pointers */Fts5ExprNearset::apPhrase180835,6433547 -struct Fts5Parse {Fts5Parse180842,6433641 - Fts5Config *pConfig;pConfig180843,6433660 - Fts5Config *pConfig;Fts5Parse::pConfig180843,6433660 - char *zErr;zErr180844,6433683 - char *zErr;Fts5Parse::zErr180844,6433683 - int rc;rc180845,6433697 - int rc;Fts5Parse::rc180845,6433697 - int nPhrase; /* Size of apPhrase array */nPhrase180846,6433707 - int nPhrase; /* Size of apPhrase array */Fts5Parse::nPhrase180846,6433707 - Fts5ExprPhrase **apPhrase; /* Array of all phrases */apPhrase180847,6433770 - Fts5ExprPhrase **apPhrase; /* Array of all phrases */Fts5Parse::apPhrase180847,6433770 - Fts5ExprNode *pExpr; /* Result of a successful parse */pExpr180848,6433831 - Fts5ExprNode *pExpr; /* Result of a successful parse */Fts5Parse::pExpr180848,6433831 -static void sqlite3Fts5ParseError(Fts5Parse *pParse, const char *zFmt, ...){sqlite3Fts5ParseError180851,6433904 -static int fts5ExprIsspace(char t){fts5ExprIsspace180861,6434147 -static int fts5ExprGetToken(fts5ExprGetToken180868,6434305 -static void *fts5ParseAlloc(u64 t){ return sqlite3_malloc((int)t); }fts5ParseAlloc180930,6435923 -static void fts5ParseFree(void *p){ sqlite3_free(p); }fts5ParseFree180931,6435992 -static int sqlite3Fts5ExprNew(sqlite3Fts5ExprNew180933,6436048 -static void sqlite3Fts5ParseNodeFree(Fts5ExprNode *p){sqlite3Fts5ParseNodeFree180993,6437686 -static void sqlite3Fts5ExprFree(Fts5Expr *p){sqlite3Fts5ExprFree181007,6437984 -static i64 fts5ExprSynonymRowid(Fts5ExprTerm *pTerm, int bDesc, int *pbEof){fts5ExprSynonymRowid181019,6438243 -static int fts5ExprSynonymList(fts5ExprSynonymList181043,6438783 -static int fts5ExprPhraseIsMatch(fts5ExprPhraseIsMatch181126,6441219 -typedef struct Fts5LookaheadReader Fts5LookaheadReader;Fts5LookaheadReader181207,6443646 -struct Fts5LookaheadReader {Fts5LookaheadReader181208,6443702 - const u8 *a; /* Buffer containing position list */a181209,6443731 - const u8 *a; /* Buffer containing position list */Fts5LookaheadReader::a181209,6443731 - int n; /* Size of buffer a[] in bytes */n181210,6443803 - int n; /* Size of buffer a[] in bytes */Fts5LookaheadReader::n181210,6443803 - int i; /* Current offset in position list */i181211,6443871 - int i; /* Current offset in position list */Fts5LookaheadReader::i181211,6443871 - i64 iPos; /* Current position */iPos181212,6443943 - i64 iPos; /* Current position */Fts5LookaheadReader::iPos181212,6443943 - i64 iLookahead; /* Next position */iLookahead181213,6444000 - i64 iLookahead; /* Next position */Fts5LookaheadReader::iLookahead181213,6444000 -#define FTS5_LOOKAHEAD_EOF FTS5_LOOKAHEAD_EOF181216,6444058 -static int fts5LookaheadReaderNext(Fts5LookaheadReader *p){fts5LookaheadReaderNext181218,6444103 -static int fts5LookaheadReaderInit(fts5LookaheadReaderInit181226,6444346 -typedef struct Fts5NearTrimmer Fts5NearTrimmer;Fts5NearTrimmer181237,6444668 -struct Fts5NearTrimmer {Fts5NearTrimmer181238,6444716 - Fts5LookaheadReader reader; /* Input iterator */reader181239,6444741 - Fts5LookaheadReader reader; /* Input iterator */Fts5NearTrimmer::reader181239,6444741 - Fts5PoslistWriter writer; /* Writer context */writer181240,6444796 - Fts5PoslistWriter writer; /* Writer context */Fts5NearTrimmer::writer181240,6444796 - Fts5Buffer *pOut; /* Output poslist */pOut181241,6444851 - Fts5Buffer *pOut; /* Output poslist */Fts5NearTrimmer::pOut181241,6444851 -static int fts5ExprNearIsMatch(int *pRc, Fts5ExprNearset *pNear){fts5ExprNearIsMatch181261,6445771 -static int fts5ExprAdvanceto(fts5ExprAdvanceto181360,6448991 -static int fts5ExprSynonymAdvanceto(fts5ExprSynonymAdvanceto181386,6449772 -static int fts5ExprNearTest(fts5ExprNearTest181416,6450574 -static int fts5ExprNearInitAll(fts5ExprNearInitAll181469,6452273 -static int fts5RowidCmp(fts5RowidCmp181523,6453567 -static void fts5ExprSetEof(Fts5ExprNode *pNode){fts5ExprSetEof181538,6453840 -static void fts5ExprNodeZeroPoslist(Fts5ExprNode *pNode){fts5ExprNodeZeroPoslist181547,6454020 -static int fts5NodeCompare(fts5NodeCompare181577,6454869 -static int fts5ExprNodeTest_STRING(fts5ExprNodeTest_STRING181598,6455533 -static int fts5ExprNodeNext_STRING(fts5ExprNodeNext_STRING181667,6457864 -static int fts5ExprNodeTest_TERM(fts5ExprNodeTest_TERM181732,6459614 -static int fts5ExprNodeNext_TERM(fts5ExprNodeNext_TERM181760,6460645 -static void fts5ExprNodeTest_OR(fts5ExprNodeTest_OR181784,6461156 -static int fts5ExprNodeNext_OR(fts5ExprNodeNext_OR181803,6461704 -static int fts5ExprNodeTest_AND(fts5ExprNodeTest_AND181832,6462354 -static int fts5ExprNodeNext_AND(fts5ExprNodeNext_AND181881,6463803 -static int fts5ExprNodeTest_NOT(fts5ExprNodeTest_NOT181894,6464074 -static int fts5ExprNodeNext_NOT(fts5ExprNodeNext_NOT181922,6464872 -static int fts5ExprNodeTest(fts5ExprNodeTest181940,6465329 -static int fts5ExprNodeFirst(Fts5Expr *pExpr, Fts5ExprNode *pNode){fts5ExprNodeFirst181985,6466394 -static int sqlite3Fts5ExprFirst(Fts5Expr *p, Fts5Index *pIdx, i64 iFirst, int bDesc){sqlite3Fts5ExprFirst182044,6468192 -static int sqlite3Fts5ExprNext(Fts5Expr *p, i64 iLast){sqlite3Fts5ExprNext182072,6469094 -static int sqlite3Fts5ExprEof(Fts5Expr *p){sqlite3Fts5ExprEof182086,6469484 -static i64 sqlite3Fts5ExprRowid(Fts5Expr *p){sqlite3Fts5ExprRowid182090,6469556 -static int fts5ParseStringFromToken(Fts5Token *pToken, char **pz){fts5ParseStringFromToken182094,6469632 -static void fts5ExprPhraseFree(Fts5ExprPhrase *pPhrase){fts5ExprPhraseFree182103,6469853 -static Fts5ExprNearset *sqlite3Fts5ParseNearset(sqlite3Fts5ParseNearset182132,6470771 -typedef struct TokenCtx TokenCtx;TokenCtx182190,6472418 -struct TokenCtx {TokenCtx182191,6472452 - Fts5ExprPhrase *pPhrase;pPhrase182192,6472470 - Fts5ExprPhrase *pPhrase;TokenCtx::pPhrase182192,6472470 - int rc;rc182193,6472497 - int rc;TokenCtx::rc182193,6472497 -static int fts5ParseTokenize(fts5ParseTokenize182199,6472571 -static void sqlite3Fts5ParsePhraseFree(Fts5ExprPhrase *pPhrase){sqlite3Fts5ParsePhraseFree182264,6474693 -static void sqlite3Fts5ParseNearsetFree(Fts5ExprNearset *pNear){sqlite3Fts5ParseNearsetFree182271,6474855 -static void sqlite3Fts5ParseFinished(Fts5Parse *pParse, Fts5ExprNode *p){sqlite3Fts5ParseFinished182282,6475101 -static Fts5ExprPhrase *sqlite3Fts5ParseTerm(sqlite3Fts5ParseTerm182292,6475429 -static int sqlite3Fts5ExprClonePhrase(sqlite3Fts5ExprClonePhrase182353,6477410 -static void sqlite3Fts5ParseNear(Fts5Parse *pParse, Fts5Token *pTok){sqlite3Fts5ParseNear182437,6480111 -static void sqlite3Fts5ParseSetDistance(sqlite3Fts5ParseSetDistance182445,6480341 -static Fts5Colset *fts5ParseColset(fts5ParseColset182480,6481274 -static Fts5Colset *sqlite3Fts5ParseColset(sqlite3Fts5ParseColset182516,6482343 -static void sqlite3Fts5ParseSetColset(sqlite3Fts5ParseSetColset182548,6483204 -static void fts5ExprAssignXNext(Fts5ExprNode *pNode){fts5ExprAssignXNext182569,6483637 -static void fts5ExprAddChildren(Fts5ExprNode *p, Fts5ExprNode *pSub){fts5ExprAddChildren182601,6484364 -static Fts5ExprNode *sqlite3Fts5ParseNode(sqlite3Fts5ParseNode182616,6484851 -static Fts5ExprNode *sqlite3Fts5ParseImplicitAnd(sqlite3Fts5ParseImplicitAnd182691,6487295 -static char *fts5ExprTermPrint(Fts5ExprTerm *pTerm){fts5ExprTermPrint182755,6488998 -static char *fts5PrintfAppend(char *zApp, const char *zFmt, ...){fts5PrintfAppend182787,6489723 -static char *fts5ExprPrintTcl(fts5ExprPrintTcl182808,6490288 -static char *fts5ExprPrint(Fts5Config *pConfig, Fts5ExprNode *pExpr){fts5ExprPrint182887,6492386 -static void fts5ExprFunction(fts5ExprFunction182969,6494494 -static void fts5ExprFunctionHr(fts5ExprFunctionHr183052,6496712 -static void fts5ExprFunctionTcl(fts5ExprFunctionTcl183059,6496967 -static void fts5ExprIsAlnum(fts5ExprIsAlnum183072,6497423 -static void fts5ExprFold(fts5ExprFold183088,6497885 -static int sqlite3Fts5ExprInit(Fts5Global *pGlobal, sqlite3 *db){sqlite3Fts5ExprInit183110,6498609 -static int sqlite3Fts5ExprPhraseCount(Fts5Expr *pExpr){sqlite3Fts5ExprPhraseCount183140,6499410 -static int sqlite3Fts5ExprPhraseSize(Fts5Expr *pExpr, int iPhrase){sqlite3Fts5ExprPhraseSize183147,6499579 -static int sqlite3Fts5ExprPoslist(Fts5Expr *pExpr, int iPhrase, const u8 **pa){sqlite3Fts5ExprPoslist183156,6499841 -struct Fts5PoslistPopulator {Fts5PoslistPopulator183170,6500213 - Fts5PoslistWriter writer;writer183171,6500243 - Fts5PoslistWriter writer;Fts5PoslistPopulator::writer183171,6500243 - int bOk; /* True if ok to populate */bOk183172,6500271 - int bOk; /* True if ok to populate */Fts5PoslistPopulator::bOk183172,6500271 - int bMiss;bMiss183173,6500334 - int bMiss;Fts5PoslistPopulator::bMiss183173,6500334 -static Fts5PoslistPopulator *sqlite3Fts5ExprClearPoslists(Fts5Expr *pExpr, int bLive){sqlite3Fts5ExprClearPoslists183176,6500351 -struct Fts5ExprCtx {Fts5ExprCtx183198,6501037 - Fts5Expr *pExpr;pExpr183199,6501058 - Fts5Expr *pExpr;Fts5ExprCtx::pExpr183199,6501058 - Fts5PoslistPopulator *aPopulator;aPopulator183200,6501077 - Fts5PoslistPopulator *aPopulator;Fts5ExprCtx::aPopulator183200,6501077 - i64 iOff;iOff183201,6501113 - i64 iOff;Fts5ExprCtx::iOff183201,6501113 -typedef struct Fts5ExprCtx Fts5ExprCtx;Fts5ExprCtx183203,6501128 -static int fts5ExprColsetTest(Fts5Colset *pColset, int iCol){fts5ExprColsetTest183208,6501210 -static int fts5ExprPopulatePoslistsCb(fts5ExprPopulatePoslistsCb183216,6501378 -static int sqlite3Fts5ExprPopulatePoslists(sqlite3Fts5ExprPopulatePoslists183251,6502645 -static void fts5ExprClearPoslists(Fts5ExprNode *pNode){fts5ExprClearPoslists183281,6503369 -static int fts5ExprCheckPoslists(Fts5ExprNode *pNode, i64 iRowid){fts5ExprCheckPoslists183292,6503650 -static void sqlite3Fts5ExprCheckPoslists(Fts5Expr *pExpr, i64 iRowid){sqlite3Fts5ExprCheckPoslists183336,6504637 -static void fts5ExprClearEof(Fts5ExprNode *pNode){fts5ExprClearEof183340,6504758 -static void sqlite3Fts5ExprClearEof(Fts5Expr *pExpr){sqlite3Fts5ExprClearEof183347,6504918 -static int sqlite3Fts5ExprPhraseCollist(sqlite3Fts5ExprPhraseCollist183354,6505075 -typedef struct Fts5HashEntry Fts5HashEntry;Fts5HashEntry183408,6506366 -struct Fts5Hash {Fts5Hash183417,6506581 - int eDetail; /* Copy of Fts5Config.eDetail */eDetail183418,6506599 - int eDetail; /* Copy of Fts5Config.eDetail */Fts5Hash::eDetail183418,6506599 - int *pnByte; /* Pointer to bytes counter */pnByte183419,6506666 - int *pnByte; /* Pointer to bytes counter */Fts5Hash::pnByte183419,6506666 - int nEntry; /* Number of entries currently in hash */nEntry183420,6506731 - int nEntry; /* Number of entries currently in hash */Fts5Hash::nEntry183420,6506731 - int nSlot; /* Size of aSlot[] array */nSlot183421,6506807 - int nSlot; /* Size of aSlot[] array */Fts5Hash::nSlot183421,6506807 - Fts5HashEntry *pScan; /* Current ordered scan item */pScan183422,6506869 - Fts5HashEntry *pScan; /* Current ordered scan item */Fts5Hash::pScan183422,6506869 - Fts5HashEntry **aSlot; /* Array of hash slots */aSlot183423,6506935 - Fts5HashEntry **aSlot; /* Array of hash slots */Fts5Hash::aSlot183423,6506935 -struct Fts5HashEntry {Fts5HashEntry183447,6507719 - Fts5HashEntry *pHashNext; /* Next hash entry with same hash-key */pHashNext183448,6507742 - Fts5HashEntry *pHashNext; /* Next hash entry with same hash-key */Fts5HashEntry::pHashNext183448,6507742 - Fts5HashEntry *pScanNext; /* Next entry in sorted order */pScanNext183449,6507817 - Fts5HashEntry *pScanNext; /* Next entry in sorted order */Fts5HashEntry::pScanNext183449,6507817 - int nAlloc; /* Total size of allocation */nAlloc183451,6507887 - int nAlloc; /* Total size of allocation */Fts5HashEntry::nAlloc183451,6507887 - int iSzPoslist; /* Offset of space for 4-byte poslist size */iSzPoslist183452,6507952 - int iSzPoslist; /* Offset of space for 4-byte poslist size */Fts5HashEntry::iSzPoslist183452,6507952 - int nData; /* Total bytes of data (incl. structure) */nData183453,6508032 - int nData; /* Total bytes of data (incl. structure) */Fts5HashEntry::nData183453,6508032 - int nKey; /* Length of zKey[] in bytes */nKey183454,6508110 - int nKey; /* Length of zKey[] in bytes */Fts5HashEntry::nKey183454,6508110 - u8 bDel; /* Set delete-flag @ iSzPoslist */bDel183455,6508176 - u8 bDel; /* Set delete-flag @ iSzPoslist */Fts5HashEntry::bDel183455,6508176 - u8 bContent; /* Set content-flag (detail=none mode) */bContent183456,6508245 - u8 bContent; /* Set content-flag (detail=none mode) */Fts5HashEntry::bContent183456,6508245 - i16 iCol; /* Column of last value written */iCol183457,6508321 - i16 iCol; /* Column of last value written */Fts5HashEntry::iCol183457,6508321 - int iPos; /* Position of last value written */iPos183458,6508390 - int iPos; /* Position of last value written */Fts5HashEntry::iPos183458,6508390 - i64 iRowid; /* Rowid of last value written */iRowid183459,6508461 - i64 iRowid; /* Rowid of last value written */Fts5HashEntry::iRowid183459,6508461 - char zKey[8]; /* Nul-terminated entry key */zKey183460,6508529 - char zKey[8]; /* Nul-terminated entry key */Fts5HashEntry::zKey183460,6508529 -#define FTS5_HASHENTRYSIZE FTS5_HASHENTRYSIZE183466,6508655 -static int sqlite3Fts5HashNew(Fts5Config *pConfig, Fts5Hash **ppNew, int *pnByte){sqlite3Fts5HashNew183473,6508747 -static void sqlite3Fts5HashFree(Fts5Hash *pHash){sqlite3Fts5HashFree183503,6509439 -static void sqlite3Fts5HashClear(Fts5Hash *pHash){sqlite3Fts5HashClear183514,6509650 -static unsigned int fts5HashKey(int nSlot, const u8 *p, int n){fts5HashKey183528,6510006 -static unsigned int fts5HashKey2(int nSlot, u8 b, const u8 *p, int n){fts5HashKey2183537,6510185 -static int fts5HashResize(Fts5Hash *pHash){fts5HashResize183550,6510459 -static void fts5HashAddPoslistSize(Fts5Hash *pHash, Fts5HashEntry *p){fts5HashAddPoslistSize183577,6511136 -static int sqlite3Fts5HashWrite(sqlite3Fts5HashWrite183617,6512324 -static Fts5HashEntry *fts5HashEntryMerge(fts5HashEntryMerge183767,6517134 -static int fts5HashEntrySort(fts5HashEntrySort183811,6518111 -static int sqlite3Fts5HashQuery(sqlite3Fts5HashQuery183856,6519201 -static int sqlite3Fts5HashScanInit(sqlite3Fts5HashScanInit183881,6519948 -static void sqlite3Fts5HashScanNext(Fts5Hash *p){sqlite3Fts5HashScanNext183888,6520159 -static int sqlite3Fts5HashScanEof(Fts5Hash *p){sqlite3Fts5HashScanEof183893,6520286 -static void sqlite3Fts5HashScanEntry(sqlite3Fts5HashScanEntry183897,6520361 -#define FTS5_OPT_WORK_UNIT FTS5_OPT_WORK_UNIT183963,6522591 -#define FTS5_WORK_UNIT FTS5_WORK_UNIT183964,6522670 -#define FTS5_MIN_DLIDX_SIZE FTS5_MIN_DLIDX_SIZE183966,6522748 -#define FTS5_MAIN_PREFIX FTS5_MAIN_PREFIX183968,6522824 -#define FTS5_AVERAGES_ROWID FTS5_AVERAGES_ROWID184130,6528360 -#define FTS5_STRUCTURE_ROWID FTS5_STRUCTURE_ROWID184131,6528438 -#define FTS5_DATA_ID_B FTS5_DATA_ID_B184144,6528919 -#define FTS5_DATA_DLI_B FTS5_DATA_DLI_B184145,6528983 -#define FTS5_DATA_HEIGHT_B FTS5_DATA_HEIGHT_B184146,6529050 -#define FTS5_DATA_PAGE_B FTS5_DATA_PAGE_B184147,6529118 -#define fts5_dri(fts5_dri184149,6529189 -#define FTS5_SEGMENT_ROWID(FTS5_SEGMENT_ROWID184156,6529597 -#define FTS5_DLIDX_ROWID(FTS5_DLIDX_ROWID184157,6529671 -#define FTS5_MAX_SEGMENT FTS5_MAX_SEGMENT184162,6529806 -static int sqlite3Fts5Corrupt() { return SQLITE_CORRUPT_VTAB; }sqlite3Fts5Corrupt184165,6529857 -#define FTS5_DATA_ZERO_PADDING FTS5_DATA_ZERO_PADDING184174,6530139 -#define FTS5_DATA_PADDING FTS5_DATA_PADDING184175,6530172 -typedef struct Fts5Data Fts5Data;Fts5Data184177,6530202 -typedef struct Fts5DlidxIter Fts5DlidxIter;Fts5DlidxIter184178,6530236 -typedef struct Fts5DlidxLvl Fts5DlidxLvl;Fts5DlidxLvl184179,6530280 -typedef struct Fts5DlidxWriter Fts5DlidxWriter;Fts5DlidxWriter184180,6530322 -typedef struct Fts5Iter Fts5Iter;Fts5Iter184181,6530370 -typedef struct Fts5PageWriter Fts5PageWriter;Fts5PageWriter184182,6530404 -typedef struct Fts5SegIter Fts5SegIter;Fts5SegIter184183,6530450 -typedef struct Fts5DoclistIter Fts5DoclistIter;Fts5DoclistIter184184,6530490 -typedef struct Fts5SegWriter Fts5SegWriter;Fts5SegWriter184185,6530538 -typedef struct Fts5Structure Fts5Structure;Fts5Structure184186,6530582 -typedef struct Fts5StructureLevel Fts5StructureLevel;Fts5StructureLevel184187,6530626 -typedef struct Fts5StructureSegment Fts5StructureSegment;Fts5StructureSegment184188,6530680 -struct Fts5Data {Fts5Data184190,6530739 - u8 *p; /* Pointer to buffer containing record */p184191,6530757 - u8 *p; /* Pointer to buffer containing record */Fts5Data::p184191,6530757 - int nn; /* Size of record in bytes */nn184192,6530833 - int nn; /* Size of record in bytes */Fts5Data::nn184192,6530833 - int szLeaf; /* Size of leaf without page-index */szLeaf184193,6530897 - int szLeaf; /* Size of leaf without page-index */Fts5Data::szLeaf184193,6530897 -struct Fts5Index {Fts5Index184199,6531011 - Fts5Config *pConfig; /* Virtual table configuration */pConfig184200,6531030 - Fts5Config *pConfig; /* Virtual table configuration */Fts5Index::pConfig184200,6531030 - char *zDataTbl; /* Name of %_data table */zDataTbl184201,6531098 - char *zDataTbl; /* Name of %_data table */Fts5Index::zDataTbl184201,6531098 - int nWorkUnit; /* Leaf pages in a "unit" of work */nWorkUnit184202,6531159 - int nWorkUnit; /* Leaf pages in a "unit" of work */Fts5Index::nWorkUnit184202,6531159 - Fts5Hash *pHash; /* Hash table for in-memory data */pHash184208,6531378 - Fts5Hash *pHash; /* Hash table for in-memory data */Fts5Index::pHash184208,6531378 - int nPendingData; /* Current bytes of pending data */nPendingData184209,6531448 - int nPendingData; /* Current bytes of pending data */Fts5Index::nPendingData184209,6531448 - i64 iWriteRowid; /* Rowid for current doc being written */iWriteRowid184210,6531518 - i64 iWriteRowid; /* Rowid for current doc being written */Fts5Index::iWriteRowid184210,6531518 - int bDelete; /* Current write is a delete */bDelete184211,6531594 - int bDelete; /* Current write is a delete */Fts5Index::bDelete184211,6531594 - int rc; /* Current error code */rc184214,6531682 - int rc; /* Current error code */Fts5Index::rc184214,6531682 - sqlite3_blob *pReader; /* RO incr-blob open on %_data table */pReader184217,6531793 - sqlite3_blob *pReader; /* RO incr-blob open on %_data table */Fts5Index::pReader184217,6531793 - sqlite3_stmt *pWriter; /* "INSERT ... %_data VALUES(?,?)" */pWriter184218,6531867 - sqlite3_stmt *pWriter; /* "INSERT ... %_data VALUES(?,?)" */Fts5Index::pWriter184218,6531867 - sqlite3_stmt *pDeleter; /* "DELETE FROM %_data ... id>=? AND id<=?" */pDeleter184219,6531939 - sqlite3_stmt *pDeleter; /* "DELETE FROM %_data ... id>=? AND id<=?" */Fts5Index::pDeleter184219,6531939 - sqlite3_stmt *pIdxWriter; /* "INSERT ... %_idx VALUES(?,?,?,?)" */pIdxWriter184220,6532020 - sqlite3_stmt *pIdxWriter; /* "INSERT ... %_idx VALUES(?,?,?,?)" */Fts5Index::pIdxWriter184220,6532020 - sqlite3_stmt *pIdxDeleter; /* "DELETE FROM %_idx WHERE segid=? */pIdxDeleter184221,6532095 - sqlite3_stmt *pIdxDeleter; /* "DELETE FROM %_idx WHERE segid=? */Fts5Index::pIdxDeleter184221,6532095 - sqlite3_stmt *pIdxSelect;pIdxSelect184222,6532168 - sqlite3_stmt *pIdxSelect;Fts5Index::pIdxSelect184222,6532168 - int nRead; /* Total number of blocks read */nRead184223,6532196 - int nRead; /* Total number of blocks read */Fts5Index::nRead184223,6532196 - sqlite3_stmt *pDataVersion;pDataVersion184225,6532265 - sqlite3_stmt *pDataVersion;Fts5Index::pDataVersion184225,6532265 - i64 iStructVersion; /* data_version when pStruct read */iStructVersion184226,6532295 - i64 iStructVersion; /* data_version when pStruct read */Fts5Index::iStructVersion184226,6532295 - Fts5Structure *pStruct; /* Current db structure (or NULL) */pStruct184227,6532366 - Fts5Structure *pStruct; /* Current db structure (or NULL) */Fts5Index::pStruct184227,6532366 -struct Fts5DoclistIter {Fts5DoclistIter184230,6532441 - u8 *aEof; /* Pointer to 1 byte past end of doclist */aEof184231,6532466 - u8 *aEof; /* Pointer to 1 byte past end of doclist */Fts5DoclistIter::aEof184231,6532466 - i64 iRowid;iRowid184234,6532590 - i64 iRowid;Fts5DoclistIter::iRowid184234,6532590 - u8 *aPoslist;aPoslist184235,6532604 - u8 *aPoslist;Fts5DoclistIter::aPoslist184235,6532604 - int nPoslist;nPoslist184236,6532620 - int nPoslist;Fts5DoclistIter::nPoslist184236,6532620 - int nSize;nSize184237,6532636 - int nSize;Fts5DoclistIter::nSize184237,6532636 -struct Fts5StructureSegment {Fts5StructureSegment184245,6532852 - int iSegid; /* Segment id */iSegid184246,6532882 - int iSegid; /* Segment id */Fts5StructureSegment::iSegid184246,6532882 - int pgnoFirst; /* First leaf page number in segment */pgnoFirst184247,6532933 - int pgnoFirst; /* First leaf page number in segment */Fts5StructureSegment::pgnoFirst184247,6532933 - int pgnoLast; /* Last leaf page number in segment */pgnoLast184248,6533007 - int pgnoLast; /* Last leaf page number in segment */Fts5StructureSegment::pgnoLast184248,6533007 -struct Fts5StructureLevel {Fts5StructureLevel184250,6533083 - int nMerge; /* Number of segments in incr-merge */nMerge184251,6533111 - int nMerge; /* Number of segments in incr-merge */Fts5StructureLevel::nMerge184251,6533111 - int nSeg; /* Total number of segments on level */nSeg184252,6533184 - int nSeg; /* Total number of segments on level */Fts5StructureLevel::nSeg184252,6533184 - Fts5StructureSegment *aSeg; /* Array of segments. aSeg[0] is oldest. */aSeg184253,6533258 - Fts5StructureSegment *aSeg; /* Array of segments. aSeg[0] is oldest. */Fts5StructureLevel::aSeg184253,6533258 -struct Fts5Structure {Fts5Structure184255,6533339 - int nRef; /* Object reference count */nRef184256,6533362 - int nRef; /* Object reference count */Fts5Structure::nRef184256,6533362 - u64 nWriteCounter; /* Total leaves written to level 0 */nWriteCounter184257,6533425 - u64 nWriteCounter; /* Total leaves written to level 0 */Fts5Structure::nWriteCounter184257,6533425 - int nSegment; /* Total segments in this structure */nSegment184258,6533497 - int nSegment; /* Total segments in this structure */Fts5Structure::nSegment184258,6533497 - int nLevel; /* Number of levels in this index */nLevel184259,6533570 - int nLevel; /* Number of levels in this index */Fts5Structure::nLevel184259,6533570 - Fts5StructureLevel aLevel[1]; /* Array of nLevel level objects */aLevel184260,6533641 - Fts5StructureLevel aLevel[1]; /* Array of nLevel level objects */Fts5Structure::aLevel184260,6533641 -struct Fts5PageWriter {Fts5PageWriter184266,6533786 - int pgno; /* Page number for this page */pgno184267,6533810 - int pgno; /* Page number for this page */Fts5PageWriter::pgno184267,6533810 - int iPrevPgidx; /* Previous value written into pgidx */iPrevPgidx184268,6533876 - int iPrevPgidx; /* Previous value written into pgidx */Fts5PageWriter::iPrevPgidx184268,6533876 - Fts5Buffer buf; /* Buffer containing leaf data */buf184269,6533950 - Fts5Buffer buf; /* Buffer containing leaf data */Fts5PageWriter::buf184269,6533950 - Fts5Buffer pgidx; /* Buffer containing page-index */pgidx184270,6534018 - Fts5Buffer pgidx; /* Buffer containing page-index */Fts5PageWriter::pgidx184270,6534018 - Fts5Buffer term; /* Buffer containing previous term on page */term184271,6534087 - Fts5Buffer term; /* Buffer containing previous term on page */Fts5PageWriter::term184271,6534087 -struct Fts5DlidxWriter {Fts5DlidxWriter184273,6534170 - int pgno; /* Page number for this page */pgno184274,6534195 - int pgno; /* Page number for this page */Fts5DlidxWriter::pgno184274,6534195 - int bPrevValid; /* True if iPrev is valid */bPrevValid184275,6534261 - int bPrevValid; /* True if iPrev is valid */Fts5DlidxWriter::bPrevValid184275,6534261 - i64 iPrev; /* Previous rowid value written to page */iPrev184276,6534324 - i64 iPrev; /* Previous rowid value written to page */Fts5DlidxWriter::iPrev184276,6534324 - Fts5Buffer buf; /* Buffer containing page data */buf184277,6534401 - Fts5Buffer buf; /* Buffer containing page data */Fts5DlidxWriter::buf184277,6534401 -struct Fts5SegWriter {Fts5SegWriter184279,6534472 - int iSegid; /* Segid to write to */iSegid184280,6534495 - int iSegid; /* Segid to write to */Fts5SegWriter::iSegid184280,6534495 - Fts5PageWriter writer; /* PageWriter object */writer184281,6534553 - Fts5PageWriter writer; /* PageWriter object */Fts5SegWriter::writer184281,6534553 - i64 iPrevRowid; /* Previous rowid written to current leaf */iPrevRowid184282,6534611 - i64 iPrevRowid; /* Previous rowid written to current leaf */Fts5SegWriter::iPrevRowid184282,6534611 - u8 bFirstRowidInDoclist; /* True if next rowid is first in doclist */bFirstRowidInDoclist184283,6534690 - u8 bFirstRowidInDoclist; /* True if next rowid is first in doclist */Fts5SegWriter::bFirstRowidInDoclist184283,6534690 - u8 bFirstRowidInPage; /* True if next rowid is first in page */bFirstRowidInPage184284,6534769 - u8 bFirstRowidInPage; /* True if next rowid is first in page */Fts5SegWriter::bFirstRowidInPage184284,6534769 - u8 bFirstTermInPage; /* True if next term will be first in leaf */bFirstTermInPage184286,6534916 - u8 bFirstTermInPage; /* True if next term will be first in leaf */Fts5SegWriter::bFirstTermInPage184286,6534916 - int nLeafWritten; /* Number of leaf pages written */nLeafWritten184287,6534996 - int nLeafWritten; /* Number of leaf pages written */Fts5SegWriter::nLeafWritten184287,6534996 - int nEmpty; /* Number of contiguous term-less nodes */nEmpty184288,6535065 - int nEmpty; /* Number of contiguous term-less nodes */Fts5SegWriter::nEmpty184288,6535065 - int nDlidx; /* Allocated size of aDlidx[] array */nDlidx184290,6535143 - int nDlidx; /* Allocated size of aDlidx[] array */Fts5SegWriter::nDlidx184290,6535143 - Fts5DlidxWriter *aDlidx; /* Array of Fts5DlidxWriter objects */aDlidx184291,6535216 - Fts5DlidxWriter *aDlidx; /* Array of Fts5DlidxWriter objects */Fts5SegWriter::aDlidx184291,6535216 - Fts5Buffer btterm; /* Next term to insert into %_idx table */btterm184294,6535336 - Fts5Buffer btterm; /* Next term to insert into %_idx table */Fts5SegWriter::btterm184294,6535336 - int iBtPage; /* Page number corresponding to btterm */iBtPage184295,6535413 - int iBtPage; /* Page number corresponding to btterm */Fts5SegWriter::iBtPage184295,6535413 -typedef struct Fts5CResult Fts5CResult;Fts5CResult184298,6535493 -struct Fts5CResult {Fts5CResult184299,6535533 - u16 iFirst; /* aSeg[] index of firstest iterator */iFirst184300,6535554 - u16 iFirst; /* aSeg[] index of firstest iterator */Fts5CResult::iFirst184300,6535554 - u8 bTermEq; /* True if the terms are equal */bTermEq184301,6535628 - u8 bTermEq; /* True if the terms are equal */Fts5CResult::bTermEq184301,6535628 -struct Fts5SegIter {Fts5SegIter184350,6537374 - Fts5StructureSegment *pSeg; /* Segment to iterate through */pSeg184351,6537395 - Fts5StructureSegment *pSeg; /* Segment to iterate through */Fts5SegIter::pSeg184351,6537395 - int flags; /* Mask of configuration flags */flags184352,6537462 - int flags; /* Mask of configuration flags */Fts5SegIter::flags184352,6537462 - int iLeafPgno; /* Current leaf page number */iLeafPgno184353,6537530 - int iLeafPgno; /* Current leaf page number */Fts5SegIter::iLeafPgno184353,6537530 - Fts5Data *pLeaf; /* Current leaf data */pLeaf184354,6537595 - Fts5Data *pLeaf; /* Current leaf data */Fts5SegIter::pLeaf184354,6537595 - Fts5Data *pNextLeaf; /* Leaf page (iLeafPgno+1) */pNextLeaf184355,6537653 - Fts5Data *pNextLeaf; /* Leaf page (iLeafPgno+1) */Fts5SegIter::pNextLeaf184355,6537653 - int iLeafOffset; /* Byte offset within current leaf */iLeafOffset184356,6537717 - int iLeafOffset; /* Byte offset within current leaf */Fts5SegIter::iLeafOffset184356,6537717 - void (*xNext)(Fts5Index*, Fts5SegIter*, int*);xNext184359,6537810 - void (*xNext)(Fts5Index*, Fts5SegIter*, int*);Fts5SegIter::xNext184359,6537810 - int iTermLeafPgno;iTermLeafPgno184363,6538001 - int iTermLeafPgno;Fts5SegIter::iTermLeafPgno184363,6538001 - int iTermLeafOffset;iTermLeafOffset184364,6538022 - int iTermLeafOffset;Fts5SegIter::iTermLeafOffset184364,6538022 - int iPgidxOff; /* Next offset in pgidx */iPgidxOff184366,6538046 - int iPgidxOff; /* Next offset in pgidx */Fts5SegIter::iPgidxOff184366,6538046 - int iEndofDoclist;iEndofDoclist184367,6538107 - int iEndofDoclist;Fts5SegIter::iEndofDoclist184367,6538107 - int iRowidOffset; /* Current entry in aRowidOffset[] */iRowidOffset184370,6538206 - int iRowidOffset; /* Current entry in aRowidOffset[] */Fts5SegIter::iRowidOffset184370,6538206 - int nRowidOffset; /* Allocated size of aRowidOffset[] array */nRowidOffset184371,6538278 - int nRowidOffset; /* Allocated size of aRowidOffset[] array */Fts5SegIter::nRowidOffset184371,6538278 - int *aRowidOffset; /* Array of offset to rowid fields */aRowidOffset184372,6538357 - int *aRowidOffset; /* Array of offset to rowid fields */Fts5SegIter::aRowidOffset184372,6538357 - Fts5DlidxIter *pDlidx; /* If there is a doclist-index */pDlidx184374,6538430 - Fts5DlidxIter *pDlidx; /* If there is a doclist-index */Fts5SegIter::pDlidx184374,6538430 - Fts5Buffer term; /* Current term */term184377,6538551 - Fts5Buffer term; /* Current term */Fts5SegIter::term184377,6538551 - i64 iRowid; /* Current rowid */iRowid184378,6538604 - i64 iRowid; /* Current rowid */Fts5SegIter::iRowid184378,6538604 - int nPos; /* Number of bytes in current position list */nPos184379,6538658 - int nPos; /* Number of bytes in current position list */Fts5SegIter::nPos184379,6538658 - u8 bDel; /* True if the delete flag is set */bDel184380,6538739 - u8 bDel; /* True if the delete flag is set */Fts5SegIter::bDel184380,6538739 -#define ASSERT_SZLEAF_OK(ASSERT_SZLEAF_OK184387,6538901 -#define FTS5_SEGITER_ONETERM FTS5_SEGITER_ONETERM184391,6539008 -#define FTS5_SEGITER_REVERSE FTS5_SEGITER_REVERSE184392,6539042 -#define fts5LeafIsTermless(fts5LeafIsTermless184399,6539270 -#define fts5LeafTermOff(fts5LeafTermOff184401,6539326 -#define fts5LeafFirstRowidOff(fts5LeafFirstRowidOff184403,6539400 -struct Fts5Iter {Fts5Iter184428,6540529 - Fts5IndexIter base; /* Base class containing output vars */base184429,6540547 - Fts5IndexIter base; /* Base class containing output vars */Fts5Iter::base184429,6540547 - Fts5Index *pIndex; /* Index that owns this iterator */pIndex184431,6540622 - Fts5Index *pIndex; /* Index that owns this iterator */Fts5Iter::pIndex184431,6540622 - Fts5Structure *pStruct; /* Database structure for this iterator */pStruct184432,6540692 - Fts5Structure *pStruct; /* Database structure for this iterator */Fts5Iter::pStruct184432,6540692 - Fts5Buffer poslist; /* Buffer containing current poslist */poslist184433,6540769 - Fts5Buffer poslist; /* Buffer containing current poslist */Fts5Iter::poslist184433,6540769 - Fts5Colset *pColset; /* Restrict matches to these columns */pColset184434,6540843 - Fts5Colset *pColset; /* Restrict matches to these columns */Fts5Iter::pColset184434,6540843 - void (*xSetOutputs)(Fts5Iter*, Fts5SegIter*);xSetOutputs184437,6540959 - void (*xSetOutputs)(Fts5Iter*, Fts5SegIter*);Fts5Iter::xSetOutputs184437,6540959 - int nSeg; /* Size of aSeg[] array */nSeg184439,6541008 - int nSeg; /* Size of aSeg[] array */Fts5Iter::nSeg184439,6541008 - int bRev; /* True to iterate in reverse order */bRev184440,6541069 - int bRev; /* True to iterate in reverse order */Fts5Iter::bRev184440,6541069 - u8 bSkipEmpty; /* True to skip deleted entries */bSkipEmpty184441,6541142 - u8 bSkipEmpty; /* True to skip deleted entries */Fts5Iter::bSkipEmpty184441,6541142 - i64 iSwitchRowid; /* Firstest rowid of other than aFirst[1] */iSwitchRowid184443,6541212 - i64 iSwitchRowid; /* Firstest rowid of other than aFirst[1] */Fts5Iter::iSwitchRowid184443,6541212 - Fts5CResult *aFirst; /* Current merge state (see above) */aFirst184444,6541291 - Fts5CResult *aFirst; /* Current merge state (see above) */Fts5Iter::aFirst184444,6541291 - Fts5SegIter aSeg[1]; /* Array of segment iterators */aSeg184445,6541363 - Fts5SegIter aSeg[1]; /* Array of segment iterators */Fts5Iter::aSeg184445,6541363 -struct Fts5DlidxLvl {Fts5DlidxLvl184462,6541732 - Fts5Data *pData; /* Data for current page of this level */pData184463,6541754 - Fts5Data *pData; /* Data for current page of this level */Fts5DlidxLvl::pData184463,6541754 - int iOff; /* Current offset into pData */iOff184464,6541828 - int iOff; /* Current offset into pData */Fts5DlidxLvl::iOff184464,6541828 - int bEof; /* At EOF already */bEof184465,6541892 - int bEof; /* At EOF already */Fts5DlidxLvl::bEof184465,6541892 - int iFirstOff; /* Used by reverse iterators */iFirstOff184466,6541945 - int iFirstOff; /* Used by reverse iterators */Fts5DlidxLvl::iFirstOff184466,6541945 - int iLeafPgno; /* Page number of current leaf page */iLeafPgno184469,6542035 - int iLeafPgno; /* Page number of current leaf page */Fts5DlidxLvl::iLeafPgno184469,6542035 - i64 iRowid; /* First rowid on leaf iLeafPgno */iRowid184470,6542106 - i64 iRowid; /* First rowid on leaf iLeafPgno */Fts5DlidxLvl::iRowid184470,6542106 -struct Fts5DlidxIter {Fts5DlidxIter184472,6542177 - int nLvl;nLvl184473,6542200 - int nLvl;Fts5DlidxIter::nLvl184473,6542200 - int iSegid;iSegid184474,6542212 - int iSegid;Fts5DlidxIter::iSegid184474,6542212 - Fts5DlidxLvl aLvl[1];aLvl184475,6542226 - Fts5DlidxLvl aLvl[1];Fts5DlidxIter::aLvl184475,6542226 -static void fts5PutU16(u8 *aOut, u16 iVal){fts5PutU16184478,6542254 -static u16 fts5GetU16(const u8 *aIn){fts5GetU16184483,6542349 -static void *fts5IdxMalloc(Fts5Index *p, int nByte){fts5IdxMalloc184493,6542627 -static int fts5BufferCompareBlob(fts5BufferCompareBlob184506,6542991 -static int fts5BufferCompare(Fts5Buffer *pLeft, Fts5Buffer *pRight){fts5BufferCompare184525,6543603 -static int fts5LeafFirstTermOff(Fts5Data *pLeaf){fts5LeafFirstTermOff184531,6543811 -static void fts5CloseReader(Fts5Index *p){fts5CloseReader184540,6543996 -static Fts5Data *fts5DataRead(Fts5Index *p, i64 iRowid){fts5DataRead184555,6544300 -static void fts5DataRelease(Fts5Data *pData){fts5DataRelease184627,6546455 -static int fts5IndexPrepareStmt(fts5IndexPrepareStmt184631,6546527 -static void fts5DataWrite(Fts5Index *p, i64 iRowid, const u8 *pData, int nData){fts5DataWrite184651,6546880 -static void fts5DataDelete(Fts5Index *p, i64 iFirst, i64 iLast){fts5DataDelete184674,6547534 -static void fts5DataRemoveSegment(Fts5Index *p, int iSegid){fts5DataRemoveSegment184705,6548295 -static void fts5StructureRelease(Fts5Structure *pStruct){fts5StructureRelease184727,6549014 -static void fts5StructureRef(Fts5Structure *pStruct){fts5StructureRef184738,6549279 -static int fts5StructureDecode(fts5StructureDecode184754,6549812 -static void fts5StructureAddLevel(int *pRc, Fts5Structure **ppStruct){fts5StructureAddLevel184830,6552055 -static void fts5StructureExtendLevel(fts5StructureExtendLevel184854,6552718 -static Fts5Structure *fts5StructureReadUncached(Fts5Index *p){fts5StructureReadUncached184883,6553468 -static i64 fts5IndexDataVersion(Fts5Index *p){fts5IndexDataVersion184907,6554205 -static Fts5Structure *fts5StructureRead(Fts5Index *p){fts5StructureRead184938,6555082 -static void fts5StructureInvalidate(Fts5Index *p){fts5StructureInvalidate184977,6556255 -static int fts5StructureCountSegments(Fts5Structure *pStruct){fts5StructureCountSegments184989,6556551 -#define fts5BufferSafeAppendBlob(fts5BufferSafeAppendBlob185002,6556900 -#define fts5BufferSafeAppendVarint(fts5BufferSafeAppendVarint185008,6557147 -static void fts5StructureWrite(Fts5Index *p, Fts5Structure *pStruct){fts5StructureWrite185020,6557541 -# define fts5PrintStructure(fts5PrintStructure185072,6559447 -static int fts5SegmentSize(Fts5StructureSegment *pSeg){fts5SegmentSize185075,6559488 -static void fts5StructurePromoteTo(fts5StructurePromoteTo185084,6559753 -static void fts5StructurePromote(fts5StructurePromote185127,6561184 -static int fts5DlidxLvlNext(Fts5DlidxLvl *pLvl){fts5DlidxLvlNext185178,6562850 -static int fts5DlidxIterNextR(Fts5Index *p, Fts5DlidxIter *pIter, int iLvl){fts5DlidxIterNextR185210,6563628 -static int fts5DlidxIterNext(Fts5Index *p, Fts5DlidxIter *pIter){fts5DlidxIterNext185230,6564223 -static int fts5DlidxIterFirst(Fts5DlidxIter *pIter){fts5DlidxIterFirst185245,6564729 -static int fts5DlidxIterEof(Fts5Index *p, Fts5DlidxIter *pIter){fts5DlidxIterEof185254,6564900 -static void fts5DlidxIterLast(Fts5Index *p, Fts5DlidxIter *pIter){fts5DlidxIterLast185258,6565018 -static int fts5DlidxLvlPrev(Fts5DlidxLvl *pLvl){fts5DlidxLvlPrev185281,6565658 -static int fts5DlidxIterPrevR(Fts5Index *p, Fts5DlidxIter *pIter, int iLvl){fts5DlidxIterPrevR185330,6567064 -static int fts5DlidxIterPrev(Fts5Index *p, Fts5DlidxIter *pIter){fts5DlidxIterPrev185353,6567718 -static void fts5DlidxIterFree(Fts5DlidxIter *pIter){fts5DlidxIterFree185360,6567909 -static Fts5DlidxIter *fts5DlidxIterInit(fts5DlidxIterInit185370,6568105 -static i64 fts5DlidxIterRowid(Fts5DlidxIter *pIter){fts5DlidxIterRowid185417,6569309 -static int fts5DlidxIterPgno(Fts5DlidxIter *pIter){fts5DlidxIterPgno185420,6569396 -static void fts5SegIterNextPage(fts5SegIterNextPage185427,6569546 -static int fts5GetPoslistSize(const u8 *p, int *pnSz, int *pbDel){fts5GetPoslistSize185465,6570708 -static void fts5SegIterLoadNPos(Fts5Index *p, Fts5SegIter *pIter){fts5SegIterLoadNPos185486,6571240 -static void fts5SegIterLoadRowid(Fts5Index *p, Fts5SegIter *pIter){fts5SegIterLoadRowid185515,6572064 -static void fts5SegIterLoadTerm(Fts5Index *p, Fts5SegIter *pIter, int nKeep){fts5SegIterLoadTerm185548,6573080 -static void fts5SegIterSetNext(Fts5Index *p, Fts5SegIter *pIter){fts5SegIterSetNext185580,6574132 -static void fts5SegIterInit(fts5SegIterInit185598,6574769 -static void fts5SegIterReverseInitPage(Fts5Index *p, Fts5SegIter *pIter){fts5SegIterReverseInitPage185646,6576622 -static void fts5SegIterReverseNewPage(Fts5Index *p, Fts5SegIter *pIter){fts5SegIterReverseNewPage185699,6577895 -static int fts5MultiIterIsEmpty(Fts5Index *p, Fts5Iter *pIter){fts5MultiIterIsEmpty185751,6579523 -static void fts5SegIterNext_Reverse(fts5SegIterNext_Reverse185761,6579838 -static void fts5SegIterNext_None(fts5SegIterNext_None185795,6580793 -static void fts5SegIterNext(fts5SegIterNext185867,6582961 -#define SWAPVAL(SWAPVAL185991,6586679 -#define fts5IndexSkipVarint(fts5IndexSkipVarint185993,6586735 -static void fts5SegIterReverse(Fts5Index *p, Fts5SegIter *pIter){fts5SegIterReverse186003,6587064 -static void fts5SegIterLoadDlidx(Fts5Index *p, Fts5SegIter *pIter){fts5SegIterLoadDlidx186089,6590103 -static void fts5LeafSeek(fts5LeafSeek186123,6591381 -static sqlite3_stmt *fts5IdxSelectStmt(Fts5Index *p){fts5IdxSelectStmt186241,6594208 -static void fts5SegIterSeekInit(fts5SegIterSeekInit186260,6594890 -static void fts5SegIterHashInit(fts5SegIterHashInit186342,6597617 -static void fts5SegIterClear(Fts5SegIter *pIter){fts5SegIterClear186392,6599073 -static void fts5AssertComparisonResult(fts5AssertComparisonResult186409,6599616 -static void fts5AssertMultiIterSetup(Fts5Index *p, Fts5Iter *pIter){fts5AssertMultiIterSetup186451,6600703 -# define fts5AssertMultiIterSetup(fts5AssertMultiIterSetup186485,6601840 -static int fts5MultiIterDoCompare(Fts5Iter *pIter, int iOut){fts5MultiIterDoCompare186496,6602211 -static void fts5SegIterGotoPage(fts5SegIterGotoPage186550,6603683 -static void fts5SegIterNextFrom(fts5SegIterNextFrom186588,6604750 -static void fts5MultiIterFree(Fts5Iter *pIter){fts5MultiIterFree186642,6606363 -static void fts5MultiIterAdvanced(fts5MultiIterAdvanced186654,6606629 -static int fts5MultiIterAdvanceRowid(fts5MultiIterAdvanceRowid186682,6607760 -static void fts5MultiIterSetEof(Fts5Iter *pIter){fts5MultiIterSetEof186725,6609068 -static void fts5MultiIterNext(fts5MultiIterNext186738,6609495 -static void fts5MultiIterNext2(fts5MultiIterNext2186775,6610561 -static void fts5IterSetOutputs_Noop(Fts5Iter *pUnused1, Fts5SegIter *pUnused2){fts5IterSetOutputs_Noop186804,6611319 -static Fts5Iter *fts5MultiIterAlloc(fts5MultiIterAlloc186808,6611439 -static void fts5PoslistCallback(fts5PoslistCallback186830,6612077 -typedef struct PoslistCallbackCtx PoslistCallbackCtx;PoslistCallbackCtx186842,6612331 -struct PoslistCallbackCtx {PoslistCallbackCtx186843,6612385 - Fts5Buffer *pBuf; /* Append to this buffer */pBuf186844,6612413 - Fts5Buffer *pBuf; /* Append to this buffer */PoslistCallbackCtx::pBuf186844,6612413 - Fts5Colset *pColset; /* Restrict matches to this column */pColset186845,6612475 - Fts5Colset *pColset; /* Restrict matches to this column */PoslistCallbackCtx::pColset186845,6612475 - int eState; /* See above */eState186846,6612547 - int eState; /* See above */PoslistCallbackCtx::eState186846,6612547 -typedef struct PoslistOffsetsCtx PoslistOffsetsCtx;PoslistOffsetsCtx186849,6612601 -struct PoslistOffsetsCtx {PoslistOffsetsCtx186850,6612653 - Fts5Buffer *pBuf; /* Append to this buffer */pBuf186851,6612680 - Fts5Buffer *pBuf; /* Append to this buffer */PoslistOffsetsCtx::pBuf186851,6612680 - Fts5Colset *pColset; /* Restrict matches to this column */pColset186852,6612742 - Fts5Colset *pColset; /* Restrict matches to this column */PoslistOffsetsCtx::pColset186852,6612742 - int iRead;iRead186853,6612814 - int iRead;PoslistOffsetsCtx::iRead186853,6612814 - int iWrite;iWrite186854,6612827 - int iWrite;PoslistOffsetsCtx::iWrite186854,6612827 -static int fts5IndexColsetTest(Fts5Colset *pColset, int iCol){fts5IndexColsetTest186860,6612886 -static void fts5PoslistOffsetsCallback(fts5PoslistOffsetsCallback186868,6613055 -static void fts5PoslistFilterCallback(fts5PoslistFilterCallback186891,6613632 -static void fts5ChunkIterate(fts5ChunkIterate186943,6614966 -static void fts5SegiterPoslist(fts5SegiterPoslist186990,6616392 -static int fts5IndexExtractCol(fts5IndexExtractCol187025,6617565 -static int fts5IndexExtractColset (fts5IndexExtractColset187062,6618758 -static void fts5IterSetOutputs_None(Fts5Iter *pIter, Fts5SegIter *pSeg){fts5IterSetOutputs_None187084,6619301 -static void fts5IterSetOutputs_Nocolset(Fts5Iter *pIter, Fts5SegIter *pSeg){fts5IterSetOutputs_Nocolset187094,6619624 -static void fts5IterSetOutputs_Col(Fts5Iter *pIter, Fts5SegIter *pSeg){fts5IterSetOutputs_Col187120,6620671 -static void fts5IterSetOutputs_Col100(Fts5Iter *pIter, Fts5SegIter *pSeg){fts5IterSetOutputs_Col100187138,6621216 -static void fts5IterSetOutputs_Full(Fts5Iter *pIter, Fts5SegIter *pSeg){fts5IterSetOutputs_Full187178,6622268 -static void fts5IterSetOutputCb(int *pRc, Fts5Iter *pIter){fts5IterSetOutputCb187209,6623480 -static void fts5MultiIterNew(fts5MultiIterNew187248,6624616 -static void fts5MultiIterNew2(fts5MultiIterNew2187349,6628206 -static int fts5MultiIterEof(Fts5Index *p, Fts5Iter *pIter){fts5MultiIterEof187389,6629295 -static i64 fts5MultiIterRowid(Fts5Iter *pIter){fts5MultiIterRowid187401,6629666 -static void fts5MultiIterNextFrom(fts5MultiIterNextFrom187409,6629900 -static const u8 *fts5MultiIterTerm(Fts5Iter *pIter, int *pn){fts5MultiIterTerm187428,6630380 -static int fts5AllocateSegid(Fts5Index *p, Fts5Structure *pStruct){fts5AllocateSegid187443,6630891 -static void fts5IndexDiscardData(Fts5Index *p){fts5IndexDiscardData187499,6632549 -static int fts5PrefixCompress(int nOld, const u8 *pOld, const u8 *pNew){fts5PrefixCompress187514,6632943 -static void fts5WriteDlidxClear(fts5WriteDlidxClear187522,6633103 -static int fts5WriteDlidxGrow(fts5WriteDlidxGrow187548,6633856 -static int fts5WriteFlushDlidx(Fts5Index *p, Fts5SegWriter *pWriter){fts5WriteFlushDlidx187574,6634557 -static void fts5WriteFlushBtree(Fts5Index *p, Fts5SegWriter *pWriter){fts5WriteFlushBtree187598,6635405 -static void fts5WriteBtreeTerm(fts5WriteBtreeTerm187626,6636531 -static void fts5WriteBtreeNoTerm(fts5WriteBtreeNoTerm187640,6636982 -static i64 fts5DlidxExtractFirstRowid(Fts5Buffer *pBuf){fts5DlidxExtractFirstRowid187656,6637586 -static void fts5WriteDlidxAppend(fts5WriteDlidxAppend187670,6637973 -static void fts5WriteFlushLeaf(Fts5Index *p, Fts5SegWriter *pWriter){fts5WriteFlushLeaf187730,6639983 -static void fts5WriteAppendTerm(fts5WriteAppendTerm187779,6641484 -static void fts5WriteAppendRowid(fts5WriteAppendRowid187857,6644300 -static void fts5WriteAppendPoslistData(fts5WriteAppendPoslistData187890,6645340 -static void fts5WriteFinish(fts5WriteFinish187924,6646183 -static void fts5WriteInit(fts5WriteInit187952,6646905 -static void fts5TrimSegments(Fts5Index *p, Fts5Iter *pIter){fts5TrimSegments187999,6648424 -static void fts5MergeChunkCallback(fts5MergeChunkCallback188056,6650500 -static void fts5IndexMergeLevel(fts5IndexMergeLevel188068,6650721 -static int fts5IndexMerge(fts5IndexMerge188212,6655453 -static void fts5IndexAutomerge(fts5IndexAutomerge188271,6657378 -static void fts5IndexCrisismerge(fts5IndexCrisismerge188292,6658285 -static int fts5IndexReturn(Fts5Index *p){fts5IndexReturn188310,6658874 -typedef struct Fts5FlushCtx Fts5FlushCtx;Fts5FlushCtx188316,6658971 -struct Fts5FlushCtx {Fts5FlushCtx188317,6659013 - Fts5Index *pIdx;pIdx188318,6659035 - Fts5Index *pIdx;Fts5FlushCtx::pIdx188318,6659035 - Fts5SegWriter writer; writer188319,6659054 - Fts5SegWriter writer; Fts5FlushCtx::writer188319,6659054 -static int fts5PoslistPrefix(const u8 *aBuf, int nMax){fts5PoslistPrefix188327,6659265 -static void fts5FlushOneHash(Fts5Index *p){fts5FlushOneHash188348,6659813 -static void fts5IndexFlush(Fts5Index *p){fts5IndexFlush188500,6665504 -static Fts5Structure *fts5IndexOptimizeStruct(fts5IndexOptimizeStruct188509,6665709 -static int sqlite3Fts5IndexOptimize(Fts5Index *p){sqlite3Fts5IndexOptimize188571,6667683 -static int sqlite3Fts5IndexMerge(Fts5Index *p, int nMerge){sqlite3Fts5IndexMerge188605,6668482 -static void fts5AppendRowid(fts5AppendRowid188627,6669089 -static void fts5AppendPoslist(fts5AppendPoslist188637,6669267 -static void fts5DoclistIterNext(Fts5DoclistIter *pIter){fts5DoclistIterNext188653,6669661 -static void fts5DoclistIterInit(fts5DoclistIterInit188679,6670228 -#define fts5MergeAppendDocid(fts5MergeAppendDocid188707,6670950 -static void fts5BufferSwap(Fts5Buffer *p1, Fts5Buffer *p2){fts5BufferSwap188716,6671272 -static void fts5NextRowid(Fts5Buffer *pBuf, int *piOff, i64 *piRowid){fts5NextRowid188722,6671385 -static void fts5MergeRowidLists(fts5MergeRowidLists188737,6671778 -static void fts5MergePrefixLists(fts5MergePrefixLists188784,6673119 -static void fts5SetupPrefixIter(fts5SetupPrefixIter188897,6676910 -static int sqlite3Fts5IndexBeginWrite(Fts5Index *p, int bDelete, i64 iRowid){sqlite3Fts5IndexBeginWrite188997,6679954 -static int sqlite3Fts5IndexSync(Fts5Index *p, int bCommit){sqlite3Fts5IndexSync189021,6680552 -static int sqlite3Fts5IndexRollback(Fts5Index *p){sqlite3Fts5IndexRollback189034,6680985 -static int sqlite3Fts5IndexReinit(Fts5Index *p){sqlite3Fts5IndexReinit189047,6681403 -static int sqlite3Fts5IndexOpen(sqlite3Fts5IndexOpen189063,6681927 -static int sqlite3Fts5IndexClose(Fts5Index *p){sqlite3Fts5IndexClose189104,6682952 -static int sqlite3Fts5IndexCharlenToBytelen(sqlite3Fts5IndexCharlenToBytelen189127,6683641 -static int fts5IndexCharlen(const char *pIn, int nIn){fts5IndexCharlen189147,6684080 -static int sqlite3Fts5IndexWrite(sqlite3Fts5IndexWrite189169,6684761 -static int sqlite3Fts5IndexQuery(sqlite3Fts5IndexQuery189205,6685940 -static int sqlite3Fts5IterNext(Fts5IndexIter *pIndexIter){sqlite3Fts5IterNext189287,6688877 -static int sqlite3Fts5IterNextScan(Fts5IndexIter *pIndexIter){sqlite3Fts5IterNextScan189297,6689191 -static int sqlite3Fts5IterNextFrom(Fts5IndexIter *pIndexIter, i64 iMatch){sqlite3Fts5IterNextFrom189321,6689896 -static const char *sqlite3Fts5IterTerm(Fts5IndexIter *pIndexIter, int *pn){sqlite3Fts5IterTerm189330,6690147 -static void sqlite3Fts5IterClose(Fts5IndexIter *pIndexIter){sqlite3Fts5IterClose189340,6690422 -static int sqlite3Fts5IndexGetAverages(Fts5Index *p, i64 *pnRow, i64 *anSize){sqlite3Fts5IndexGetAverages189355,6690850 -static int sqlite3Fts5IndexSetAverages(Fts5Index *p, const u8 *pData, int nData){sqlite3Fts5IndexSetAverages189379,6691499 -static int sqlite3Fts5IndexReads(Fts5Index *p){sqlite3Fts5IndexReads189389,6691809 -static int sqlite3Fts5IndexSetCookie(Fts5Index *p, int iNew){sqlite3Fts5IndexSetCookie189400,6692094 -static int sqlite3Fts5IndexLoadConfig(Fts5Index *p){sqlite3Fts5IndexLoadConfig189420,6692692 -static u64 sqlite3Fts5IndexEntryCksum(sqlite3Fts5IndexEntryCksum189437,6693173 -static void fts5TestDlidxReverse(fts5TestDlidxReverse189463,6693882 -static int fts5QueryCksum(fts5QueryCksum189499,6694894 -static void fts5TestTerm(fts5TestTerm189543,6696282 -# define fts5TestDlidxReverse(fts5TestDlidxReverse189606,6698451 -# define fts5TestTerm(fts5TestTerm189607,6698488 -static void fts5IndexIntegrityCheckEmpty(fts5IndexIntegrityCheckEmpty189618,6698762 -static void fts5IntegrityCheckPgidx(Fts5Index *p, Fts5Data *pLeaf){fts5IntegrityCheckPgidx189639,6699395 -static void fts5IndexIntegrityCheckSegment(fts5IndexIntegrityCheckSegment189689,6700662 -static int sqlite3Fts5IndexIntegrityCheck(Fts5Index *p, u64 cksum){sqlite3Fts5IndexIntegrityCheck189833,6705780 -static void fts5DecodeRowid(fts5DecodeRowid189924,6709323 -static void fts5DebugRowid(int *pRc, Fts5Buffer *pBuf, i64 iKey){fts5DebugRowid189943,6709972 -static void fts5DebugStructure(fts5DebugStructure189961,6710521 -static void fts5DecodeStructure(fts5DecodeStructure189990,6711491 -static void fts5DecodeAverages(fts5DecodeAverages190015,6712157 -static int fts5DecodePoslist(int *pRc, Fts5Buffer *pBuf, const u8 *a, int n){fts5DecodePoslist190038,6712818 -static int fts5DecodeDoclist(int *pRc, Fts5Buffer *pBuf, const u8 *a, int n){fts5DecodeDoclist190056,6713379 -static void fts5DecodeRowidList(fts5DecodeRowidList190094,6714647 -static void fts5DecodeFunction(fts5DecodeFunction190125,6715366 -static void fts5RowidFunction(fts5RowidFunction190312,6720731 -static int sqlite3Fts5IndexInit(sqlite3 *db){sqlite3Fts5IndexInit190351,6721963 -static int sqlite3Fts5IndexReset(Fts5Index *p){sqlite3Fts5IndexReset190372,6722437 -SQLITE_API int sqlite3_fts5_may_be_corrupt = 1;sqlite3_fts5_may_be_corrupt190404,6723429 -typedef struct Fts5Auxdata Fts5Auxdata;Fts5Auxdata190407,6723479 -typedef struct Fts5Auxiliary Fts5Auxiliary;Fts5Auxiliary190408,6723519 -typedef struct Fts5Cursor Fts5Cursor;Fts5Cursor190409,6723563 -typedef struct Fts5Sorter Fts5Sorter;Fts5Sorter190410,6723601 -typedef struct Fts5Table Fts5Table;Fts5Table190411,6723639 -typedef struct Fts5TokenizerModule Fts5TokenizerModule;Fts5TokenizerModule190412,6723675 -struct Fts5TransactionState {Fts5TransactionState190445,6724997 - int eState; /* 0==closed, 1==open, 2==synced */eState190446,6725027 - int eState; /* 0==closed, 1==open, 2==synced */Fts5TransactionState::eState190446,6725027 - int iSavepoint; /* Number of open savepoints (0 -> none) */iSavepoint190447,6725097 - int iSavepoint; /* Number of open savepoints (0 -> none) */Fts5TransactionState::iSavepoint190447,6725097 -struct Fts5Global {Fts5Global190455,6725397 - fts5_api api; /* User visible part of object (see fts5.h) */api190456,6725417 - fts5_api api; /* User visible part of object (see fts5.h) */Fts5Global::api190456,6725417 - sqlite3 *db; /* Associated database connection */ db190457,6725498 - sqlite3 *db; /* Associated database connection */ Fts5Global::db190457,6725498 - i64 iNextId; /* Used to allocate unique cursor ids */iNextId190458,6725570 - i64 iNextId; /* Used to allocate unique cursor ids */Fts5Global::iNextId190458,6725570 - Fts5Auxiliary *pAux; /* First in list of all aux. functions */pAux190459,6725645 - Fts5Auxiliary *pAux; /* First in list of all aux. functions */Fts5Global::pAux190459,6725645 - Fts5TokenizerModule *pTok; /* First in list of all tokenizer modules */pTok190460,6725721 - Fts5TokenizerModule *pTok; /* First in list of all tokenizer modules */Fts5Global::pTok190460,6725721 - Fts5TokenizerModule *pDfltTok; /* Default tokenizer module */pDfltTok190461,6725800 - Fts5TokenizerModule *pDfltTok; /* Default tokenizer module */Fts5Global::pDfltTok190461,6725800 - Fts5Cursor *pCsr; /* First in list of all open cursors */pCsr190462,6725865 - Fts5Cursor *pCsr; /* First in list of all open cursors */Fts5Global::pCsr190462,6725865 -struct Fts5Auxiliary {Fts5Auxiliary190470,6726130 - Fts5Global *pGlobal; /* Global context for this function */pGlobal190471,6726153 - Fts5Global *pGlobal; /* Global context for this function */Fts5Auxiliary::pGlobal190471,6726153 - char *zFunc; /* Function name (nul-terminated) */zFunc190472,6726226 - char *zFunc; /* Function name (nul-terminated) */Fts5Auxiliary::zFunc190472,6726226 - void *pUserData; /* User-data pointer */pUserData190473,6726297 - void *pUserData; /* User-data pointer */Fts5Auxiliary::pUserData190473,6726297 - fts5_extension_function xFunc; /* Callback function */xFunc190474,6726355 - fts5_extension_function xFunc; /* Callback function */Fts5Auxiliary::xFunc190474,6726355 - void (*xDestroy)(void*); /* Destructor function */xDestroy190475,6726413 - void (*xDestroy)(void*); /* Destructor function */Fts5Auxiliary::xDestroy190475,6726413 - Fts5Auxiliary *pNext; /* Next registered auxiliary function */pNext190476,6726473 - Fts5Auxiliary *pNext; /* Next registered auxiliary function */Fts5Auxiliary::pNext190476,6726473 -struct Fts5TokenizerModule {Fts5TokenizerModule190484,6726737 - char *zName; /* Name of tokenizer */zName190485,6726766 - char *zName; /* Name of tokenizer */Fts5TokenizerModule::zName190485,6726766 - void *pUserData; /* User pointer passed to xCreate() */pUserData190486,6726824 - void *pUserData; /* User pointer passed to xCreate() */Fts5TokenizerModule::pUserData190486,6726824 - fts5_tokenizer x; /* Tokenizer functions */x190487,6726897 - fts5_tokenizer x; /* Tokenizer functions */Fts5TokenizerModule::x190487,6726897 - void (*xDestroy)(void*); /* Destructor function */xDestroy190488,6726957 - void (*xDestroy)(void*); /* Destructor function */Fts5TokenizerModule::xDestroy190488,6726957 - Fts5TokenizerModule *pNext; /* Next registered tokenizer module */pNext190489,6727017 - Fts5TokenizerModule *pNext; /* Next registered tokenizer module */Fts5TokenizerModule::pNext190489,6727017 -struct Fts5Table {Fts5Table190495,6727125 - sqlite3_vtab base; /* Base class used by SQLite core */base190496,6727144 - sqlite3_vtab base; /* Base class used by SQLite core */Fts5Table::base190496,6727144 - Fts5Config *pConfig; /* Virtual table configuration */pConfig190497,6727215 - Fts5Config *pConfig; /* Virtual table configuration */Fts5Table::pConfig190497,6727215 - Fts5Index *pIndex; /* Full-text index */pIndex190498,6727283 - Fts5Index *pIndex; /* Full-text index */Fts5Table::pIndex190498,6727283 - Fts5Storage *pStorage; /* Document store */pStorage190499,6727339 - Fts5Storage *pStorage; /* Document store */Fts5Table::pStorage190499,6727339 - Fts5Global *pGlobal; /* Global (connection wide) data */pGlobal190500,6727394 - Fts5Global *pGlobal; /* Global (connection wide) data */Fts5Table::pGlobal190500,6727394 - Fts5Cursor *pSortCsr; /* Sort data from this cursor */pSortCsr190501,6727464 - Fts5Cursor *pSortCsr; /* Sort data from this cursor */Fts5Table::pSortCsr190501,6727464 - struct Fts5TransactionState ts;ts190503,6727551 - struct Fts5TransactionState ts;Fts5Table::ts190503,6727551 -struct Fts5MatchPhrase {Fts5MatchPhrase190507,6727596 - Fts5Buffer *pPoslist; /* Pointer to current poslist */pPoslist190508,6727621 - Fts5Buffer *pPoslist; /* Pointer to current poslist */Fts5MatchPhrase::pPoslist190508,6727621 - int nTerm; /* Size of phrase in terms */nTerm190509,6727688 - int nTerm; /* Size of phrase in terms */Fts5MatchPhrase::nTerm190509,6727688 -struct Fts5Sorter {Fts5Sorter190521,6728049 - sqlite3_stmt *pStmt;pStmt190522,6728069 - sqlite3_stmt *pStmt;Fts5Sorter::pStmt190522,6728069 - i64 iRowid; /* Current rowid */iRowid190523,6728092 - i64 iRowid; /* Current rowid */Fts5Sorter::iRowid190523,6728092 - const u8 *aPoslist; /* Position lists for current row */aPoslist190524,6728146 - const u8 *aPoslist; /* Position lists for current row */Fts5Sorter::aPoslist190524,6728146 - int nIdx; /* Number of entries in aIdx[] */nIdx190525,6728217 - int nIdx; /* Number of entries in aIdx[] */Fts5Sorter::nIdx190525,6728217 - int aIdx[1]; /* Offsets into aPoslist for current row */aIdx190526,6728285 - int aIdx[1]; /* Offsets into aPoslist for current row */Fts5Sorter::aIdx190526,6728285 -struct Fts5Cursor {Fts5Cursor190549,6729112 - sqlite3_vtab_cursor base; /* Base class used by SQLite core */base190550,6729132 - sqlite3_vtab_cursor base; /* Base class used by SQLite core */Fts5Cursor::base190550,6729132 - Fts5Cursor *pNext; /* Next cursor in Fts5Cursor.pCsr list */pNext190551,6729203 - Fts5Cursor *pNext; /* Next cursor in Fts5Cursor.pCsr list */Fts5Cursor::pNext190551,6729203 - int *aColumnSize; /* Values for xColumnSize() */aColumnSize190552,6729279 - int *aColumnSize; /* Values for xColumnSize() */Fts5Cursor::aColumnSize190552,6729279 - i64 iCsrId; /* Cursor id */iCsrId190553,6729344 - i64 iCsrId; /* Cursor id */Fts5Cursor::iCsrId190553,6729344 - int ePlan; /* FTS5_PLAN_XXX value */ePlan190556,6729448 - int ePlan; /* FTS5_PLAN_XXX value */Fts5Cursor::ePlan190556,6729448 - int bDesc; /* True for "ORDER BY rowid DESC" queries */bDesc190557,6729508 - int bDesc; /* True for "ORDER BY rowid DESC" queries */Fts5Cursor::bDesc190557,6729508 - i64 iFirstRowid; /* Return no rowids earlier than this */iFirstRowid190558,6729587 - i64 iFirstRowid; /* Return no rowids earlier than this */Fts5Cursor::iFirstRowid190558,6729587 - i64 iLastRowid; /* Return no rowids later than this */iLastRowid190559,6729662 - i64 iLastRowid; /* Return no rowids later than this */Fts5Cursor::iLastRowid190559,6729662 - sqlite3_stmt *pStmt; /* Statement used to read %_content */pStmt190560,6729735 - sqlite3_stmt *pStmt; /* Statement used to read %_content */Fts5Cursor::pStmt190560,6729735 - Fts5Expr *pExpr; /* Expression for MATCH queries */pExpr190561,6729808 - Fts5Expr *pExpr; /* Expression for MATCH queries */Fts5Cursor::pExpr190561,6729808 - Fts5Sorter *pSorter; /* Sorter for "ORDER BY rank" queries */pSorter190562,6729877 - Fts5Sorter *pSorter; /* Sorter for "ORDER BY rank" queries */Fts5Cursor::pSorter190562,6729877 - int csrflags; /* Mask of cursor flags (see below) */csrflags190563,6729952 - int csrflags; /* Mask of cursor flags (see below) */Fts5Cursor::csrflags190563,6729952 - i64 iSpecial; /* Result of special query */iSpecial190564,6730025 - i64 iSpecial; /* Result of special query */Fts5Cursor::iSpecial190564,6730025 - char *zRank; /* Custom rank function */zRank190567,6730156 - char *zRank; /* Custom rank function */Fts5Cursor::zRank190567,6730156 - char *zRankArgs; /* Custom rank function args */zRankArgs190568,6730217 - char *zRankArgs; /* Custom rank function args */Fts5Cursor::zRankArgs190568,6730217 - Fts5Auxiliary *pRank; /* Rank callback (or NULL) */pRank190569,6730283 - Fts5Auxiliary *pRank; /* Rank callback (or NULL) */Fts5Cursor::pRank190569,6730283 - int nRankArg; /* Number of trailing arguments for rank() */nRankArg190570,6730347 - int nRankArg; /* Number of trailing arguments for rank() */Fts5Cursor::nRankArg190570,6730347 - sqlite3_value **apRankArg; /* Array of trailing arguments */apRankArg190571,6730427 - sqlite3_value **apRankArg; /* Array of trailing arguments */Fts5Cursor::apRankArg190571,6730427 - sqlite3_stmt *pRankArgStmt; /* Origin of objects in apRankArg[] */pRankArgStmt190572,6730495 - sqlite3_stmt *pRankArgStmt; /* Origin of objects in apRankArg[] */Fts5Cursor::pRankArgStmt190572,6730495 - Fts5Auxiliary *pAux; /* Currently executing extension function */pAux190575,6730600 - Fts5Auxiliary *pAux; /* Currently executing extension function */Fts5Cursor::pAux190575,6730600 - Fts5Auxdata *pAuxdata; /* First in linked list of saved aux-data */pAuxdata190576,6730679 - Fts5Auxdata *pAuxdata; /* First in linked list of saved aux-data */Fts5Cursor::pAuxdata190576,6730679 - Fts5PoslistReader *aInstIter; /* One for each phrase */aInstIter190579,6730826 - Fts5PoslistReader *aInstIter; /* One for each phrase */Fts5Cursor::aInstIter190579,6730826 - int nInstAlloc; /* Size of aInst[] array (entries / 3) */nInstAlloc190580,6730886 - int nInstAlloc; /* Size of aInst[] array (entries / 3) */Fts5Cursor::nInstAlloc190580,6730886 - int nInstCount; /* Number of phrase instances */nInstCount190581,6730962 - int nInstCount; /* Number of phrase instances */Fts5Cursor::nInstCount190581,6730962 - int *aInst; /* 3 integers per phrase instance */aInst190582,6731029 - int *aInst; /* 3 integers per phrase instance */Fts5Cursor::aInst190582,6731029 -#define FTS5_BI_MATCH FTS5_BI_MATCH190589,6731206 -#define FTS5_BI_RANK FTS5_BI_RANK190590,6731270 -#define FTS5_BI_ROWID_EQ FTS5_BI_ROWID_EQ190591,6731333 -#define FTS5_BI_ROWID_LE FTS5_BI_ROWID_LE190592,6731394 -#define FTS5_BI_ROWID_GE FTS5_BI_ROWID_GE190593,6731455 -#define FTS5_BI_ORDER_RANK FTS5_BI_ORDER_RANK190595,6731517 -#define FTS5_BI_ORDER_ROWID FTS5_BI_ORDER_ROWID190596,6731553 -#define FTS5_BI_ORDER_DESC FTS5_BI_ORDER_DESC190597,6731589 -#define FTS5CSR_EOF FTS5CSR_EOF190602,6731666 -#define FTS5CSR_REQUIRE_CONTENT FTS5CSR_REQUIRE_CONTENT190603,6731705 -#define FTS5CSR_REQUIRE_DOCSIZE FTS5CSR_REQUIRE_DOCSIZE190604,6731744 -#define FTS5CSR_REQUIRE_INST FTS5CSR_REQUIRE_INST190605,6731783 -#define FTS5CSR_FREE_ZRANK FTS5CSR_FREE_ZRANK190606,6731822 -#define FTS5CSR_REQUIRE_RESEEK FTS5CSR_REQUIRE_RESEEK190607,6731861 -#define FTS5CSR_REQUIRE_POSLIST FTS5CSR_REQUIRE_POSLIST190608,6731900 -#define BitFlagAllTest(BitFlagAllTest190610,6731940 -#define BitFlagTest(BitFlagTest190611,6731987 -#define CsrFlagSet(CsrFlagSet190617,6732093 -#define CsrFlagClear(CsrFlagClear190618,6732155 -#define CsrFlagTest(CsrFlagTest190619,6732218 -struct Fts5Auxdata {Fts5Auxdata190621,6732280 - Fts5Auxiliary *pAux; /* Extension to which this belongs */pAux190622,6732301 - Fts5Auxiliary *pAux; /* Extension to which this belongs */Fts5Auxdata::pAux190622,6732301 - void *pPtr; /* Pointer value */pPtr190623,6732373 - void *pPtr; /* Pointer value */Fts5Auxdata::pPtr190623,6732373 - void(*xDelete)(void*); /* Destructor */xDelete190624,6732427 - void(*xDelete)(void*); /* Destructor */Fts5Auxdata::xDelete190624,6732427 - Fts5Auxdata *pNext; /* Next object in linked list */pNext190625,6732478 - Fts5Auxdata *pNext; /* Next object in linked list */Fts5Auxdata::pNext190625,6732478 -#define FTS5_BEGIN FTS5_BEGIN190629,6732569 -#define FTS5_SYNC FTS5_SYNC190630,6732595 -#define FTS5_COMMIT FTS5_COMMIT190631,6732621 -#define FTS5_ROLLBACK FTS5_ROLLBACK190632,6732647 -#define FTS5_SAVEPOINT FTS5_SAVEPOINT190633,6732673 -#define FTS5_RELEASE FTS5_RELEASE190634,6732699 -#define FTS5_ROLLBACKTO FTS5_ROLLBACKTO190635,6732725 -static void fts5CheckTransactionState(Fts5Table *p, int op, int iSavepoint){fts5CheckTransactionState190636,6732751 -# define fts5CheckTransactionState(fts5CheckTransactionState190682,6733857 -static int fts5IsContentless(Fts5Table *pTab){fts5IsContentless190688,6733960 -static void fts5FreeVtab(Fts5Table *pTab){fts5FreeVtab190695,6734132 -static int fts5DisconnectMethod(sqlite3_vtab *pVtab){fts5DisconnectMethod190707,6734397 -static int fts5DestroyMethod(sqlite3_vtab *pVtab){fts5DestroyMethod190715,6734555 -static int fts5InitVtab(fts5InitVtab190735,6735104 -static int fts5ConnectMethod(fts5ConnectMethod190801,6737284 -static int fts5CreateMethod(fts5CreateMethod190811,6737804 -#define FTS5_PLAN_MATCH FTS5_PLAN_MATCH190825,6738360 -#define FTS5_PLAN_SOURCE FTS5_PLAN_SOURCE190826,6738423 -#define FTS5_PLAN_SPECIAL FTS5_PLAN_SPECIAL190827,6738503 -#define FTS5_PLAN_SORTED_MATCH FTS5_PLAN_SORTED_MATCH190828,6738568 -#define FTS5_PLAN_SCAN FTS5_PLAN_SCAN190829,6738645 -#define FTS5_PLAN_ROWID FTS5_PLAN_ROWID190830,6738713 -static void fts5SetUniqueFlag(sqlite3_index_info *pIdxInfo){fts5SetUniqueFlag190837,6738991 -static int fts5BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){fts5BestIndexMethod190885,6740561 -static int fts5NewTransaction(Fts5Table *pTab){fts5NewTransaction190979,6744111 -static int fts5OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){fts5OpenMethod190990,6744400 -static int fts5StmtType(Fts5Cursor *pCsr){fts5StmtType191016,6745234 -static void fts5CsrNewrow(Fts5Cursor *pCsr){fts5CsrNewrow191028,6745624 -static void fts5FreeCursorComponents(Fts5Cursor *pCsr){fts5FreeCursorComponents191037,6745818 -static int fts5CloseMethod(sqlite3_vtab_cursor *pCursor){fts5CloseMethod191080,6746950 -static int fts5SorterNext(Fts5Cursor *pCsr){fts5SorterNext191096,6747378 -static void fts5TripCursors(Fts5Table *pTab){fts5TripCursors191139,6748344 -static int fts5CursorReseek(Fts5Cursor *pCsr, int *pbSkip){fts5CursorReseek191162,6749160 -static int fts5NextMethod(sqlite3_vtab_cursor *pCursor){fts5NextMethod191194,6750115 -static int fts5PrepareStatement(fts5PrepareStatement191238,6751151 -static int fts5CursorFirstSorted(Fts5Table *pTab, Fts5Cursor *pCsr, int bDesc){fts5CursorFirstSorted191266,6751686 -static int fts5CursorFirst(Fts5Table *pTab, Fts5Cursor *pCsr, int bDesc){fts5CursorFirst191314,6753209 -static int fts5SpecialMatch(fts5SpecialMatch191331,6753753 -static Fts5Auxiliary *fts5FindAuxiliary(Fts5Table *pTab, const char *zName){fts5FindAuxiliary191366,6754772 -static int fts5FindRankFunction(Fts5Cursor *pCsr){fts5FindRankFunction191378,6755076 -static int fts5CursorParseRank(fts5CursorParseRank191428,6756532 -static i64 fts5GetRowidLimit(sqlite3_value *pVal, i64 iDefault){fts5GetRowidLimit191465,6757461 -static int fts5FilterMethod(fts5FilterMethod191486,6757999 -static int fts5EofMethod(sqlite3_vtab_cursor *pCursor){fts5EofMethod191625,6763659 -static i64 fts5CursorRowid(Fts5Cursor *pCsr){fts5CursorRowid191633,6763875 -static int fts5RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){fts5RowidMethod191651,6764420 -static int fts5SeekCursor(Fts5Cursor *pCsr, int bErrormsg){fts5SeekCursor191682,6765214 -static void fts5SetVtabError(Fts5Table *p, const char *zFormat, ...){fts5SetVtabError191714,6766188 -static int fts5SpecialInsert(fts5SpecialInsert191737,6767043 -static int fts5SpecialDelete(fts5SpecialDelete191792,6768867 -static void fts5StorageInsert(fts5StorageInsert191805,6769187 -static int fts5UpdateMethod(fts5UpdateMethod191835,6770018 -static int fts5SyncMethod(sqlite3_vtab *pVtab){fts5SyncMethod191956,6774174 -static int fts5BeginMethod(sqlite3_vtab *pVtab){fts5BeginMethod191970,6774536 -static int fts5CommitMethod(sqlite3_vtab *pVtab){fts5CommitMethod191981,6774890 -static int fts5RollbackMethod(sqlite3_vtab *pVtab){fts5RollbackMethod191991,6775251 -static void *fts5ApiUserData(Fts5Context *pCtx){fts5ApiUserData192001,6775536 -static int fts5ApiColumnCount(Fts5Context *pCtx){fts5ApiColumnCount192006,6775660 -static int fts5ApiColumnTotalSize(fts5ApiColumnTotalSize192011,6775811 -static int fts5ApiRowCount(Fts5Context *pCtx, i64 *pnRow){fts5ApiRowCount192021,6776068 -static int fts5ApiTokenize(fts5ApiTokenize192027,6776282 -static int fts5ApiPhraseCount(Fts5Context *pCtx){fts5ApiPhraseCount192040,6776645 -static int fts5ApiPhraseSize(Fts5Context *pCtx, int iPhrase){fts5ApiPhraseSize192045,6776788 -static int fts5ApiColumnText(fts5ApiColumnText192050,6776951 -static int fts5CsrPoslist(fts5CsrPoslist192071,6777412 -static int fts5CacheInstArray(Fts5Cursor *pCsr){fts5CacheInstArray192123,6778921 -static int fts5ApiInstCount(Fts5Context *pCtx, int *pnInst){fts5ApiInstCount192190,6780763 -static int fts5ApiInst(fts5ApiInst192200,6781040 -static sqlite3_int64 fts5ApiRowid(Fts5Context *pCtx){fts5ApiRowid192229,6781715 -static int fts5ColumnSizeCb(fts5ColumnSizeCb192233,6781817 -static int fts5ApiColumnSize(Fts5Context *pCtx, int iCol, int *pnToken){fts5ApiColumnSize192250,6782355 -static int fts5ApiSetAuxdata(fts5ApiSetAuxdata192303,6783834 -static void *fts5ApiGetAuxdata(Fts5Context *pCtx, int bClear){fts5ApiGetAuxdata192338,6784802 -static void fts5ApiPhraseNext(fts5ApiPhraseNext192358,6785183 -static int fts5ApiPhraseFirst(fts5ApiPhraseFirst192380,6785649 -static void fts5ApiPhraseNextColumn(fts5ApiPhraseNextColumn192398,6786032 -static int fts5ApiPhraseFirstColumn(fts5ApiPhraseFirstColumn192428,6786734 -static const Fts5ExtensionApi sFts5Api = {sFts5Api192476,6787922 -static int fts5ApiQueryPhrase(fts5ApiQueryPhrase192502,6788475 -static void fts5ApiInvoke(fts5ApiInvoke192539,6789511 -static Fts5Cursor *fts5CursorFromCsrid(Fts5Global *pGlobal, i64 iCsrId){fts5CursorFromCsrid192552,6789783 -static void fts5ApiCallback(fts5ApiCallback192560,6789987 -static Fts5Index *sqlite3Fts5IndexFromCsrid(sqlite3Fts5IndexFromCsrid192592,6790766 -static int fts5PoslistBlob(sqlite3_context *pCtx, Fts5Cursor *pCsr){fts5PoslistBlob192622,6791927 -static int fts5ColumnMethod(fts5ColumnMethod192679,6793588 -static int fts5FindFunctionMethod(fts5FindFunctionMethod192730,6795236 -static int fts5RenameMethod(fts5RenameMethod192755,6795978 -static int fts5SavepointMethod(sqlite3_vtab *pVtab, int iSavepoint){fts5SavepointMethod192768,6796324 -static int fts5ReleaseMethod(sqlite3_vtab *pVtab, int iSavepoint){fts5ReleaseMethod192781,6796705 -static int fts5RollbackToMethod(sqlite3_vtab *pVtab, int iSavepoint){fts5RollbackToMethod192794,6797117 -static int fts5CreateAux(fts5CreateAux192805,6797518 -static int fts5CreateTokenizer(fts5CreateTokenizer192844,6798801 -static Fts5TokenizerModule *fts5LocateTokenizer(fts5LocateTokenizer192879,6799926 -static int fts5FindTokenizer(fts5FindTokenizer192900,6800352 -static int sqlite3Fts5GetTokenizer(sqlite3Fts5GetTokenizer192921,6800891 -static void fts5ModuleDestroy(void *pCtx){fts5ModuleDestroy192953,6801602 -static void fts5Fts5Func(fts5Fts5Func192973,6802117 -static void fts5SourceIdFunc(fts5SourceIdFunc192990,6802670 -static int fts5Init(sqlite3 *db){fts5Init193000,6803057 -__declspec(dllexport)__declspec193083,6806070 -__declspec(dllexport)__declspec193096,6806333 -SQLITE_PRIVATE int sqlite3Fts5Init(sqlite3 *db){sqlite3Fts5Init193108,6806588 -struct Fts5Storage {Fts5Storage193131,6807081 - Fts5Config *pConfig;pConfig193132,6807102 - Fts5Config *pConfig;Fts5Storage::pConfig193132,6807102 - Fts5Index *pIndex;pIndex193133,6807125 - Fts5Index *pIndex;Fts5Storage::pIndex193133,6807125 - int bTotalsValid; /* True if nTotalRow/aTotalSize[] are valid */bTotalsValid193134,6807146 - int bTotalsValid; /* True if nTotalRow/aTotalSize[] are valid */Fts5Storage::bTotalsValid193134,6807146 - i64 nTotalRow; /* Total number of rows in FTS table */nTotalRow193135,6807227 - i64 nTotalRow; /* Total number of rows in FTS table */Fts5Storage::nTotalRow193135,6807227 - i64 *aTotalSize; /* Total sizes of each column */ aTotalSize193136,6807301 - i64 *aTotalSize; /* Total sizes of each column */ Fts5Storage::aTotalSize193136,6807301 - sqlite3_stmt *aStmt[11];aStmt193137,6807369 - sqlite3_stmt *aStmt[11];Fts5Storage::aStmt193137,6807369 -#define FTS5_STMT_INSERT_CONTENT FTS5_STMT_INSERT_CONTENT193151,6807618 -#define FTS5_STMT_REPLACE_CONTENT FTS5_STMT_REPLACE_CONTENT193152,6807654 -#define FTS5_STMT_DELETE_CONTENT FTS5_STMT_DELETE_CONTENT193153,6807690 -#define FTS5_STMT_REPLACE_DOCSIZE FTS5_STMT_REPLACE_DOCSIZE193154,6807726 -#define FTS5_STMT_DELETE_DOCSIZE FTS5_STMT_DELETE_DOCSIZE193155,6807763 -#define FTS5_STMT_LOOKUP_DOCSIZE FTS5_STMT_LOOKUP_DOCSIZE193156,6807799 -#define FTS5_STMT_REPLACE_CONFIG FTS5_STMT_REPLACE_CONFIG193157,6807835 -#define FTS5_STMT_SCAN FTS5_STMT_SCAN193158,6807870 -static int fts5StorageGetStmt(fts5StorageGetStmt193166,6808127 -static int fts5ExecPrintf(fts5ExecPrintf193265,6811266 -static int sqlite3Fts5DropAll(Fts5Config *pConfig){sqlite3Fts5DropAll193293,6811764 -static void fts5StorageRenameOne(fts5StorageRenameOne193317,6812506 -static int sqlite3Fts5StorageRename(Fts5Storage *pStorage, const char *zName){sqlite3Fts5StorageRename193331,6813006 -static int sqlite3Fts5CreateTable(sqlite3Fts5CreateTable193351,6813694 -static int sqlite3Fts5StorageOpen(sqlite3Fts5StorageOpen193382,6814699 -static int sqlite3Fts5StorageClose(Fts5Storage *p){sqlite3Fts5StorageClose193448,6816567 -typedef struct Fts5InsertCtx Fts5InsertCtx;Fts5InsertCtx193463,6816829 -struct Fts5InsertCtx {Fts5InsertCtx193464,6816873 - Fts5Storage *pStorage;pStorage193465,6816896 - Fts5Storage *pStorage;Fts5InsertCtx::pStorage193465,6816896 - int iCol;iCol193466,6816921 - int iCol;Fts5InsertCtx::iCol193466,6816921 - int szCol; /* Size of column value in tokens */szCol193467,6816933 - int szCol; /* Size of column value in tokens */Fts5InsertCtx::szCol193467,6816933 -static int fts5StorageInsertCallback(fts5StorageInsertCallback193473,6817086 -static int fts5StorageDeleteFromIndex(fts5StorageDeleteFromIndex193496,6818028 -static int fts5StorageInsertDocsize(fts5StorageInsertDocsize193554,6819747 -static int fts5StorageLoadTotals(Fts5Storage *p, int bCache){fts5StorageLoadTotals193583,6820728 -static int fts5StorageSaveTotals(Fts5Storage *p){fts5StorageSaveTotals193599,6821178 -static int sqlite3Fts5StorageDelete(Fts5Storage *p, i64 iDel, sqlite3_value **apVal){sqlite3Fts5StorageDelete193621,6821664 -static int sqlite3Fts5StorageDeleteAll(Fts5Storage *p){sqlite3Fts5StorageDeleteAll193667,6822804 -static int sqlite3Fts5StorageRebuild(Fts5Storage *p){sqlite3Fts5StorageRebuild193696,6823630 -static int sqlite3Fts5StorageOptimize(Fts5Storage *p){sqlite3Fts5StorageOptimize193748,6825045 -static int sqlite3Fts5StorageMerge(Fts5Storage *p, int nMerge){sqlite3Fts5StorageMerge193752,6825149 -static int sqlite3Fts5StorageReset(Fts5Storage *p){sqlite3Fts5StorageReset193756,6825267 -static int fts5StorageNewRowid(Fts5Storage *p, i64 *piRowid){fts5StorageNewRowid193769,6825758 -static int sqlite3Fts5StorageContentInsert(sqlite3Fts5StorageContentInsert193790,6826324 -static int sqlite3Fts5StorageIndexInsert(sqlite3Fts5StorageIndexInsert193825,6827322 -static int fts5StorageCount(Fts5Storage *p, const char *zSuffix, i64 *pnRow){fts5StorageCount193872,6828627 -typedef struct Fts5IntegrityCtx Fts5IntegrityCtx;Fts5IntegrityCtx193900,6829287 -struct Fts5IntegrityCtx {Fts5IntegrityCtx193901,6829337 - i64 iRowid;iRowid193902,6829363 - i64 iRowid;Fts5IntegrityCtx::iRowid193902,6829363 - int iCol;iCol193903,6829377 - int iCol;Fts5IntegrityCtx::iCol193903,6829377 - int szCol;szCol193904,6829389 - int szCol;Fts5IntegrityCtx::szCol193904,6829389 - u64 cksum;cksum193905,6829402 - u64 cksum;Fts5IntegrityCtx::cksum193905,6829402 - Fts5Termset *pTermset;pTermset193906,6829415 - Fts5Termset *pTermset;Fts5IntegrityCtx::pTermset193906,6829415 - Fts5Config *pConfig;pConfig193907,6829440 - Fts5Config *pConfig;Fts5IntegrityCtx::pConfig193907,6829440 -static int fts5StorageIntegrityCallback(fts5StorageIntegrityCallback193914,6829524 -static int sqlite3Fts5StorageIntegrity(Fts5Storage *p){sqlite3Fts5StorageIntegrity193984,6831520 -static int sqlite3Fts5StorageStmt(sqlite3Fts5StorageStmt194085,6834975 -static void sqlite3Fts5StorageStmtRelease(sqlite3Fts5StorageStmtRelease194109,6835577 -static int fts5StorageDecodeSizeArray(fts5StorageDecodeSizeArray194126,6835918 -static int sqlite3Fts5StorageDocsize(Fts5Storage *p, i64 iRowid, int *aCol){sqlite3Fts5StorageDocsize194147,6836545 -static int sqlite3Fts5StorageSize(Fts5Storage *p, int iCol, i64 *pnToken){sqlite3Fts5StorageSize194173,6837392 -static int sqlite3Fts5StorageRowCount(Fts5Storage *p, i64 *pnRow){sqlite3Fts5StorageRowCount194191,6837805 -static int sqlite3Fts5StorageSync(Fts5Storage *p, int bCommit){sqlite3Fts5StorageSync194202,6838040 -static int sqlite3Fts5StorageRollback(Fts5Storage *p){sqlite3Fts5StorageRollback194211,6838297 -static int sqlite3Fts5StorageConfigValue(sqlite3Fts5StorageConfigValue194216,6838424 -static unsigned char aAsciiTokenChar[128] = {aAsciiTokenChar194268,6839798 -typedef struct AsciiTokenizer AsciiTokenizer;AsciiTokenizer194279,6840416 -struct AsciiTokenizer {AsciiTokenizer194280,6840462 - unsigned char aTokenChar[128];aTokenChar194281,6840486 - unsigned char aTokenChar[128];AsciiTokenizer::aTokenChar194281,6840486 -static void fts5AsciiAddExceptions(fts5AsciiAddExceptions194284,6840523 -static void fts5AsciiDelete(Fts5Tokenizer *p){fts5AsciiDelete194300,6840803 -static int fts5AsciiCreate(fts5AsciiCreate194307,6840910 -static void asciiFold(char *aOut, const char *aIn, int nByte){asciiFold194348,6841885 -static int fts5AsciiTokenize(fts5AsciiTokenize194360,6842119 -static const unsigned char sqlite3Utf8Trans1[] = {sqlite3Utf8Trans1194429,6843765 -#define READ_UTF8(READ_UTF8194440,6844220 -#define WRITE_UTF8(WRITE_UTF8194453,6844836 -typedef struct Unicode61Tokenizer Unicode61Tokenizer;Unicode61Tokenizer194475,6845906 -struct Unicode61Tokenizer {Unicode61Tokenizer194476,6845960 - unsigned char aTokenChar[128]; /* ASCII range token characters */aTokenChar194477,6845988 - unsigned char aTokenChar[128]; /* ASCII range token characters */Unicode61Tokenizer::aTokenChar194477,6845988 - char *aFold; /* Buffer to fold text into */aFold194478,6846057 - char *aFold; /* Buffer to fold text into */Unicode61Tokenizer::aFold194478,6846057 - int nFold; /* Size of aFold[] in bytes */nFold194479,6846122 - int nFold; /* Size of aFold[] in bytes */Unicode61Tokenizer::nFold194479,6846122 - int bRemoveDiacritic; /* True if remove_diacritics=1 is set */bRemoveDiacritic194480,6846187 - int bRemoveDiacritic; /* True if remove_diacritics=1 is set */Unicode61Tokenizer::bRemoveDiacritic194480,6846187 - int nException;nException194481,6846262 - int nException;Unicode61Tokenizer::nException194481,6846262 - int *aiException;aiException194482,6846280 - int *aiException;Unicode61Tokenizer::aiException194482,6846280 -static int fts5UnicodeAddExceptions(fts5UnicodeAddExceptions194485,6846304 -static int fts5UnicodeIsException(Unicode61Tokenizer *p, int iCode){fts5UnicodeIsException194534,6847773 -static void fts5UnicodeDelete(Fts5Tokenizer *pTok){fts5UnicodeDelete194558,6848218 -static int fts5UnicodeCreate(fts5UnicodeCreate194571,6848480 -static int fts5UnicodeIsAlnum(Unicode61Tokenizer *p, int iCode){fts5UnicodeIsAlnum194629,6850138 -static int fts5UnicodeTokenize(fts5UnicodeTokenize194634,6850348 -#define FTS5_PORTER_MAX_TOKEN FTS5_PORTER_MAX_TOKEN194744,6853580 -typedef struct PorterTokenizer PorterTokenizer;PorterTokenizer194746,6853614 -struct PorterTokenizer {PorterTokenizer194747,6853662 - fts5_tokenizer tokenizer; /* Parent tokenizer module */tokenizer194748,6853687 - fts5_tokenizer tokenizer; /* Parent tokenizer module */PorterTokenizer::tokenizer194748,6853687 - Fts5Tokenizer *pTokenizer; /* Parent tokenizer instance */pTokenizer194749,6853751 - Fts5Tokenizer *pTokenizer; /* Parent tokenizer instance */PorterTokenizer::pTokenizer194749,6853751 - char aBuf[FTS5_PORTER_MAX_TOKEN + 64];aBuf194750,6853817 - char aBuf[FTS5_PORTER_MAX_TOKEN + 64];PorterTokenizer::aBuf194750,6853817 -static void fts5PorterDelete(Fts5Tokenizer *pTok){fts5PorterDelete194756,6853900 -static int fts5PorterCreate(fts5PorterCreate194769,6854154 -typedef struct PorterContext PorterContext;PorterContext194805,6855011 -struct PorterContext {PorterContext194806,6855055 - void *pCtx;pCtx194807,6855078 - void *pCtx;PorterContext::pCtx194807,6855078 - int (*xToken)(void*, int, const char*, int, int, int);xToken194808,6855092 - int (*xToken)(void*, int, const char*, int, int, int);PorterContext::xToken194808,6855092 - char *aBuf;aBuf194809,6855149 - char *aBuf;PorterContext::aBuf194809,6855149 -typedef struct PorterRule PorterRule;PorterRule194812,6855167 -struct PorterRule {PorterRule194813,6855205 - const char *zSuffix;zSuffix194814,6855225 - const char *zSuffix;PorterRule::zSuffix194814,6855225 - int nSuffix;nSuffix194815,6855248 - int nSuffix;PorterRule::nSuffix194815,6855248 - int (*xCond)(char *zStem, int nStem);xCond194816,6855263 - int (*xCond)(char *zStem, int nStem);PorterRule::xCond194816,6855263 - const char *zOutput;zOutput194817,6855303 - const char *zOutput;PorterRule::zOutput194817,6855303 - int nOutput;nOutput194818,6855326 - int nOutput;PorterRule::nOutput194818,6855326 -static int fts5PorterIsVowel(char c, int bYIsVowel){fts5PorterIsVowel194847,6855968 -static int fts5PorterGobbleVC(char *zStem, int nStem, int bPrevCons){fts5PorterGobbleVC194853,6856118 -static int fts5Porter_MGt0(char *zStem, int nStem){fts5Porter_MGt0194870,6856524 -static int fts5Porter_MGt1(char *zStem, int nStem){fts5Porter_MGt1194875,6856664 -static int fts5Porter_MEq1(char *zStem, int nStem){fts5Porter_MEq1194885,6856894 -static int fts5Porter_Ostar(char *zStem, int nStem){fts5Porter_Ostar194895,6857124 -static int fts5Porter_MGt1_and_S_or_T(char *zStem, int nStem){fts5Porter_MGt1_and_S_or_T194912,6857577 -static int fts5Porter_Vowel(char *zStem, int nStem){fts5Porter_Vowel194919,6857794 -static int fts5PorterStep4(char *aBuf, int *pnBuf){fts5PorterStep4194935,6858174 -static int fts5PorterStep1B2(char *aBuf, int *pnBuf){fts5PorterStep1B2195069,6861539 -static int fts5PorterStep2(char *aBuf, int *pnBuf){fts5PorterStep2195103,6862239 -static int fts5PorterStep3(char *aBuf, int *pnBuf){fts5PorterStep3195250,6866783 -static int fts5PorterStep1B(char *aBuf, int *pnBuf){fts5PorterStep1B195316,6868354 -static void fts5PorterStep1A(char *aBuf, int *pnBuf){fts5PorterStep1A195353,6869297 -static int fts5PorterCb(fts5PorterCb195371,6869687 -static int fts5PorterTokenize(fts5PorterTokenize195440,6871189 -static int sqlite3Fts5TokenizerInit(fts5_api *pApi){sqlite3Fts5TokenizerInit195460,6871691 -static int sqlite3Fts5UnicodeIsalnum(int c){sqlite3Fts5UnicodeIsalnum195514,6873100 -static int fts5_remove_diacritic(int c){fts5_remove_diacritic195646,6880118 -static int sqlite3Fts5UnicodeIsdiacritic(int c){sqlite3Fts5UnicodeIsdiacritic195696,6882164 -static int sqlite3Fts5UnicodeFold(int c, int bRemoveDiacritic){sqlite3Fts5UnicodeFold195715,6882750 -static int sqlite3Fts5GetVarint32(const unsigned char *p, u32 *v){sqlite3Fts5GetVarint32195871,6889606 -#define SLOT_2_0 SLOT_2_0195942,6891151 -#define SLOT_4_2_0 SLOT_4_2_0195943,6891183 -static u8 sqlite3Fts5GetVarint(const unsigned char *p, u64 *v){sqlite3Fts5GetVarint195949,6891357 -# define FTS5_NOINLINE FTS5_NOINLINE196128,6894530 -# define FTS5_NOINLINEFTS5_NOINLINE196130,6894575 -static int FTS5_NOINLINE fts5PutVarint64(unsigned char *p, u64 v){fts5PutVarint64196143,6895030 -static int sqlite3Fts5PutVarint(unsigned char *p, u64 v){sqlite3Fts5PutVarint196168,6895495 -static int sqlite3Fts5GetVarintLen(u32 iVal){sqlite3Fts5GetVarintLen196182,6895729 -typedef struct Fts5VocabTable Fts5VocabTable;Fts5VocabTable196231,6897238 -typedef struct Fts5VocabCursor Fts5VocabCursor;Fts5VocabCursor196232,6897284 -struct Fts5VocabTable {Fts5VocabTable196234,6897333 - sqlite3_vtab base;base196235,6897357 - sqlite3_vtab base;Fts5VocabTable::base196235,6897357 - char *zFts5Tbl; /* Name of fts5 table */zFts5Tbl196236,6897378 - char *zFts5Tbl; /* Name of fts5 table */Fts5VocabTable::zFts5Tbl196236,6897378 - char *zFts5Db; /* Db containing fts5 table */zFts5Db196237,6897437 - char *zFts5Db; /* Db containing fts5 table */Fts5VocabTable::zFts5Db196237,6897437 - sqlite3 *db; /* Database handle */db196238,6897502 - sqlite3 *db; /* Database handle */Fts5VocabTable::db196238,6897502 - Fts5Global *pGlobal; /* FTS5 global object for this database */pGlobal196239,6897558 - Fts5Global *pGlobal; /* FTS5 global object for this database */Fts5VocabTable::pGlobal196239,6897558 - int eType; /* FTS5_VOCAB_COL or ROW */eType196240,6897635 - int eType; /* FTS5_VOCAB_COL or ROW */Fts5VocabTable::eType196240,6897635 -struct Fts5VocabCursor {Fts5VocabCursor196243,6897701 - sqlite3_vtab_cursor base;base196244,6897726 - sqlite3_vtab_cursor base;Fts5VocabCursor::base196244,6897726 - sqlite3_stmt *pStmt; /* Statement holding lock on pIndex */pStmt196245,6897754 - sqlite3_stmt *pStmt; /* Statement holding lock on pIndex */Fts5VocabCursor::pStmt196245,6897754 - Fts5Index *pIndex; /* Associated FTS5 index */pIndex196246,6897827 - Fts5Index *pIndex; /* Associated FTS5 index */Fts5VocabCursor::pIndex196246,6897827 - int bEof; /* True if this cursor is at EOF */bEof196248,6897890 - int bEof; /* True if this cursor is at EOF */Fts5VocabCursor::bEof196248,6897890 - Fts5IndexIter *pIter; /* Term/rowid iterator object */pIter196249,6897960 - Fts5IndexIter *pIter; /* Term/rowid iterator object */Fts5VocabCursor::pIter196249,6897960 - int nLeTerm; /* Size of zLeTerm in bytes */nLeTerm196251,6898028 - int nLeTerm; /* Size of zLeTerm in bytes */Fts5VocabCursor::nLeTerm196251,6898028 - char *zLeTerm; /* (term <= $zLeTerm) paramater, or NULL */zLeTerm196252,6898093 - char *zLeTerm; /* (term <= $zLeTerm) paramater, or NULL */Fts5VocabCursor::zLeTerm196252,6898093 - Fts5Config *pConfig; /* Fts5 table configuration */pConfig196255,6898216 - Fts5Config *pConfig; /* Fts5 table configuration */Fts5VocabCursor::pConfig196255,6898216 - int iCol;iCol196256,6898281 - int iCol;Fts5VocabCursor::iCol196256,6898281 - i64 *aCnt;aCnt196257,6898293 - i64 *aCnt;Fts5VocabCursor::aCnt196257,6898293 - i64 *aDoc;aDoc196258,6898306 - i64 *aDoc;Fts5VocabCursor::aDoc196258,6898306 - i64 rowid; /* This table's current rowid value */rowid196261,6898373 - i64 rowid; /* This table's current rowid value */Fts5VocabCursor::rowid196261,6898373 - Fts5Buffer term; /* Current value of 'term' column */term196262,6898446 - Fts5Buffer term; /* Current value of 'term' column */Fts5VocabCursor::term196262,6898446 -#define FTS5_VOCAB_COL FTS5_VOCAB_COL196265,6898521 -#define FTS5_VOCAB_ROW FTS5_VOCAB_ROW196266,6898549 -#define FTS5_VOCAB_COL_SCHEMA FTS5_VOCAB_COL_SCHEMA196268,6898578 -#define FTS5_VOCAB_ROW_SCHEMA FTS5_VOCAB_ROW_SCHEMA196269,6898631 -#define FTS5_VOCAB_TERM_EQ FTS5_VOCAB_TERM_EQ196274,6898755 -#define FTS5_VOCAB_TERM_GE FTS5_VOCAB_TERM_GE196275,6898787 -#define FTS5_VOCAB_TERM_LE FTS5_VOCAB_TERM_LE196276,6898819 -static int fts5VocabTableType(const char *zType, char **pzErr, int *peType){fts5VocabTableType196285,6899093 -static int fts5VocabDisconnectMethod(sqlite3_vtab *pVtab){fts5VocabDisconnectMethod196311,6899680 -static int fts5VocabDestroyMethod(sqlite3_vtab *pVtab){fts5VocabDestroyMethod196320,6899879 -static int fts5VocabInitVtab(fts5VocabInitVtab196347,6900570 -static int fts5VocabConnectMethod(fts5VocabConnectMethod196408,6902609 -static int fts5VocabCreateMethod(fts5VocabCreateMethod196418,6903136 -static int fts5VocabBestIndexMethod(fts5VocabBestIndexMethod196432,6903714 -static int fts5VocabOpenMethod(fts5VocabOpenMethod196483,6905072 -static void fts5VocabResetCursor(Fts5VocabCursor *pCsr){fts5VocabResetCursor196541,6906579 -static int fts5VocabCloseMethod(sqlite3_vtab_cursor *pCursor){fts5VocabCloseMethod196554,6906921 -static int fts5VocabNextMethod(sqlite3_vtab_cursor *pCursor){fts5VocabNextMethod196567,6907242 -static int fts5VocabFilterMethod(fts5VocabFilterMethod196683,6910791 -static int fts5VocabEofMethod(sqlite3_vtab_cursor *pCursor){fts5VocabEofMethod196745,6912522 -static int fts5VocabColumnMethod(fts5VocabColumnMethod196750,6912660 -static int fts5VocabRowidMethod(fts5VocabRowidMethod196794,6913980 -static int sqlite3Fts5VocabInit(Fts5Global *pGlobal, sqlite3 *db){sqlite3Fts5VocabInit196803,6914173 - -packages/myddas/sqlite3/src/sqlite3.h,61781 -#define _SQLITE3_H__SQLITE3_H_34,1512 -# define SQLITE_EXTERN SQLITE_EXTERN49,1791 -# define SQLITE_APISQLITE_API52,1847 -# define SQLITE_CDECLSQLITE_CDECL55,1895 -# define SQLITE_STDCALLSQLITE_STDCALL58,1947 -#define SQLITE_DEPRECATEDSQLITE_DEPRECATED74,2618 -#define SQLITE_EXPERIMENTALSQLITE_EXPERIMENTAL75,2644 -# undef SQLITE_VERSIONSQLITE_VERSION81,2772 -# undef SQLITE_VERSION_NUMBERSQLITE_VERSION_NUMBER84,2831 -#define SQLITE_VERSION SQLITE_VERSION114,4231 -#define SQLITE_VERSION_NUMBER SQLITE_VERSION_NUMBER115,4270 -#define SQLITE_SOURCE_ID SQLITE_SOURCE_ID116,4308 -SQLITE_API SQLITE_EXTERN const char sqlite3_version[];sqlite3_version148,5887 -typedef struct sqlite3 sqlite3;sqlite3232,9830 - typedef SQLITE_INT64_TYPE sqlite_int64;sqlite_int64251,10553 - typedef unsigned SQLITE_INT64_TYPE sqlite_uint64;sqlite_uint64252,10595 - typedef __int64 sqlite_int64;sqlite_int64254,10696 - typedef unsigned __int64 sqlite_uint64;sqlite_uint64255,10728 - typedef long long int sqlite_int64;sqlite_int64257,10776 - typedef unsigned long long int sqlite_uint64;sqlite_uint64258,10814 -typedef sqlite_int64 sqlite3_int64;sqlite3_int64260,10869 -typedef sqlite_uint64 sqlite3_uint64;sqlite3_uint64261,10905 -# define double double268,11093 -typedef int (*sqlite3_callback)(void*,int,char**, char**);sqlite3_callback321,13537 -#define SQLITE_OK SQLITE_OK404,17500 -#define SQLITE_ERROR SQLITE_ERROR406,17587 -#define SQLITE_INTERNAL SQLITE_INTERNAL407,17655 -#define SQLITE_PERM SQLITE_PERM408,17724 -#define SQLITE_ABORT SQLITE_ABORT409,17787 -#define SQLITE_BUSY SQLITE_BUSY410,17861 -#define SQLITE_LOCKED SQLITE_LOCKED411,17927 -#define SQLITE_NOMEM SQLITE_NOMEM412,17999 -#define SQLITE_READONLY SQLITE_READONLY413,18055 -#define SQLITE_INTERRUPT SQLITE_INTERRUPT414,18130 -#define SQLITE_IOERR SQLITE_IOERR415,18211 -#define SQLITE_CORRUPT SQLITE_CORRUPT416,18286 -#define SQLITE_NOTFOUND SQLITE_NOTFOUND417,18361 -#define SQLITE_FULL SQLITE_FULL418,18440 -#define SQLITE_CANTOPEN SQLITE_CANTOPEN419,18520 -#define SQLITE_PROTOCOL SQLITE_PROTOCOL420,18591 -#define SQLITE_EMPTY SQLITE_EMPTY421,18658 -#define SQLITE_SCHEMA SQLITE_SCHEMA422,18714 -#define SQLITE_TOOBIG SQLITE_TOOBIG423,18780 -#define SQLITE_CONSTRAINT SQLITE_CONSTRAINT424,18852 -#define SQLITE_MISMATCH SQLITE_MISMATCH425,18924 -#define SQLITE_MISUSE SQLITE_MISUSE426,18981 -#define SQLITE_NOLFS SQLITE_NOLFS427,19044 -#define SQLITE_AUTH SQLITE_AUTH428,19121 -#define SQLITE_FORMAT SQLITE_FORMAT429,19180 -#define SQLITE_RANGE SQLITE_RANGE430,19250 -#define SQLITE_NOTADB SQLITE_NOTADB431,19331 -#define SQLITE_NOTICE SQLITE_NOTICE432,19409 -#define SQLITE_WARNING SQLITE_WARNING433,19480 -#define SQLITE_ROW SQLITE_ROW434,19546 -#define SQLITE_DONE SQLITE_DONE435,19621 -#define SQLITE_IOERR_READ SQLITE_IOERR_READ454,20527 -#define SQLITE_IOERR_SHORT_READ SQLITE_IOERR_SHORT_READ455,20590 -#define SQLITE_IOERR_WRITE SQLITE_IOERR_WRITE456,20653 -#define SQLITE_IOERR_FSYNC SQLITE_IOERR_FSYNC457,20716 -#define SQLITE_IOERR_DIR_FSYNC SQLITE_IOERR_DIR_FSYNC458,20779 -#define SQLITE_IOERR_TRUNCATE SQLITE_IOERR_TRUNCATE459,20842 -#define SQLITE_IOERR_FSTAT SQLITE_IOERR_FSTAT460,20905 -#define SQLITE_IOERR_UNLOCK SQLITE_IOERR_UNLOCK461,20968 -#define SQLITE_IOERR_RDLOCK SQLITE_IOERR_RDLOCK462,21031 -#define SQLITE_IOERR_DELETE SQLITE_IOERR_DELETE463,21094 -#define SQLITE_IOERR_BLOCKED SQLITE_IOERR_BLOCKED464,21158 -#define SQLITE_IOERR_NOMEM SQLITE_IOERR_NOMEM465,21222 -#define SQLITE_IOERR_ACCESS SQLITE_IOERR_ACCESS466,21286 -#define SQLITE_IOERR_CHECKRESERVEDLOCK SQLITE_IOERR_CHECKRESERVEDLOCK467,21350 -#define SQLITE_IOERR_LOCK SQLITE_IOERR_LOCK468,21414 -#define SQLITE_IOERR_CLOSE SQLITE_IOERR_CLOSE469,21478 -#define SQLITE_IOERR_DIR_CLOSE SQLITE_IOERR_DIR_CLOSE470,21542 -#define SQLITE_IOERR_SHMOPEN SQLITE_IOERR_SHMOPEN471,21606 -#define SQLITE_IOERR_SHMSIZE SQLITE_IOERR_SHMSIZE472,21670 -#define SQLITE_IOERR_SHMLOCK SQLITE_IOERR_SHMLOCK473,21734 -#define SQLITE_IOERR_SHMMAP SQLITE_IOERR_SHMMAP474,21798 -#define SQLITE_IOERR_SEEK SQLITE_IOERR_SEEK475,21862 -#define SQLITE_IOERR_DELETE_NOENT SQLITE_IOERR_DELETE_NOENT476,21926 -#define SQLITE_IOERR_MMAP SQLITE_IOERR_MMAP477,21990 -#define SQLITE_IOERR_GETTEMPPATH SQLITE_IOERR_GETTEMPPATH478,22054 -#define SQLITE_IOERR_CONVPATH SQLITE_IOERR_CONVPATH479,22118 -#define SQLITE_IOERR_VNODE SQLITE_IOERR_VNODE480,22182 -#define SQLITE_IOERR_AUTH SQLITE_IOERR_AUTH481,22246 -#define SQLITE_LOCKED_SHAREDCACHE SQLITE_LOCKED_SHAREDCACHE482,22310 -#define SQLITE_BUSY_RECOVERY SQLITE_BUSY_RECOVERY483,22375 -#define SQLITE_BUSY_SNAPSHOT SQLITE_BUSY_SNAPSHOT484,22440 -#define SQLITE_CANTOPEN_NOTEMPDIR SQLITE_CANTOPEN_NOTEMPDIR485,22505 -#define SQLITE_CANTOPEN_ISDIR SQLITE_CANTOPEN_ISDIR486,22571 -#define SQLITE_CANTOPEN_FULLPATH SQLITE_CANTOPEN_FULLPATH487,22637 -#define SQLITE_CANTOPEN_CONVPATH SQLITE_CANTOPEN_CONVPATH488,22703 -#define SQLITE_CORRUPT_VTAB SQLITE_CORRUPT_VTAB489,22769 -#define SQLITE_READONLY_RECOVERY SQLITE_READONLY_RECOVERY490,22834 -#define SQLITE_READONLY_CANTLOCK SQLITE_READONLY_CANTLOCK491,22900 -#define SQLITE_READONLY_ROLLBACK SQLITE_READONLY_ROLLBACK492,22966 -#define SQLITE_READONLY_DBMOVED SQLITE_READONLY_DBMOVED493,23032 -#define SQLITE_ABORT_ROLLBACK SQLITE_ABORT_ROLLBACK494,23098 -#define SQLITE_CONSTRAINT_CHECK SQLITE_CONSTRAINT_CHECK495,23161 -#define SQLITE_CONSTRAINT_COMMITHOOK SQLITE_CONSTRAINT_COMMITHOOK496,23229 -#define SQLITE_CONSTRAINT_FOREIGNKEY SQLITE_CONSTRAINT_FOREIGNKEY497,23297 -#define SQLITE_CONSTRAINT_FUNCTION SQLITE_CONSTRAINT_FUNCTION498,23365 -#define SQLITE_CONSTRAINT_NOTNULL SQLITE_CONSTRAINT_NOTNULL499,23433 -#define SQLITE_CONSTRAINT_PRIMARYKEY SQLITE_CONSTRAINT_PRIMARYKEY500,23501 -#define SQLITE_CONSTRAINT_TRIGGER SQLITE_CONSTRAINT_TRIGGER501,23569 -#define SQLITE_CONSTRAINT_UNIQUE SQLITE_CONSTRAINT_UNIQUE502,23637 -#define SQLITE_CONSTRAINT_VTAB SQLITE_CONSTRAINT_VTAB503,23705 -#define SQLITE_CONSTRAINT_ROWID SQLITE_CONSTRAINT_ROWID504,23773 -#define SQLITE_NOTICE_RECOVER_WAL SQLITE_NOTICE_RECOVER_WAL505,23841 -#define SQLITE_NOTICE_RECOVER_ROLLBACK SQLITE_NOTICE_RECOVER_ROLLBACK506,23905 -#define SQLITE_WARNING_AUTOINDEX SQLITE_WARNING_AUTOINDEX507,23969 -#define SQLITE_AUTH_USER SQLITE_AUTH_USER508,24034 -#define SQLITE_OPEN_READONLY SQLITE_OPEN_READONLY517,24315 -#define SQLITE_OPEN_READWRITE SQLITE_OPEN_READWRITE518,24395 -#define SQLITE_OPEN_CREATE SQLITE_OPEN_CREATE519,24475 -#define SQLITE_OPEN_DELETEONCLOSE SQLITE_OPEN_DELETEONCLOSE520,24555 -#define SQLITE_OPEN_EXCLUSIVE SQLITE_OPEN_EXCLUSIVE521,24619 -#define SQLITE_OPEN_AUTOPROXY SQLITE_OPEN_AUTOPROXY522,24683 -#define SQLITE_OPEN_URI SQLITE_OPEN_URI523,24747 -#define SQLITE_OPEN_MEMORY SQLITE_OPEN_MEMORY524,24827 -#define SQLITE_OPEN_MAIN_DB SQLITE_OPEN_MAIN_DB525,24907 -#define SQLITE_OPEN_TEMP_DB SQLITE_OPEN_TEMP_DB526,24971 -#define SQLITE_OPEN_TRANSIENT_DB SQLITE_OPEN_TRANSIENT_DB527,25035 -#define SQLITE_OPEN_MAIN_JOURNAL SQLITE_OPEN_MAIN_JOURNAL528,25099 -#define SQLITE_OPEN_TEMP_JOURNAL SQLITE_OPEN_TEMP_JOURNAL529,25163 -#define SQLITE_OPEN_SUBJOURNAL SQLITE_OPEN_SUBJOURNAL530,25227 -#define SQLITE_OPEN_MASTER_JOURNAL SQLITE_OPEN_MASTER_JOURNAL531,25291 -#define SQLITE_OPEN_NOMUTEX SQLITE_OPEN_NOMUTEX532,25355 -#define SQLITE_OPEN_FULLMUTEX SQLITE_OPEN_FULLMUTEX533,25435 -#define SQLITE_OPEN_SHAREDCACHE SQLITE_OPEN_SHAREDCACHE534,25515 -#define SQLITE_OPEN_PRIVATECACHE SQLITE_OPEN_PRIVATECACHE535,25595 -#define SQLITE_OPEN_WAL SQLITE_OPEN_WAL536,25675 -#define SQLITE_IOCAP_ATOMIC SQLITE_IOCAP_ATOMIC568,27216 -#define SQLITE_IOCAP_ATOMIC512 SQLITE_IOCAP_ATOMIC512569,27271 -#define SQLITE_IOCAP_ATOMIC1K SQLITE_IOCAP_ATOMIC1K570,27326 -#define SQLITE_IOCAP_ATOMIC2K SQLITE_IOCAP_ATOMIC2K571,27381 -#define SQLITE_IOCAP_ATOMIC4K SQLITE_IOCAP_ATOMIC4K572,27436 -#define SQLITE_IOCAP_ATOMIC8K SQLITE_IOCAP_ATOMIC8K573,27491 -#define SQLITE_IOCAP_ATOMIC16K SQLITE_IOCAP_ATOMIC16K574,27546 -#define SQLITE_IOCAP_ATOMIC32K SQLITE_IOCAP_ATOMIC32K575,27601 -#define SQLITE_IOCAP_ATOMIC64K SQLITE_IOCAP_ATOMIC64K576,27656 -#define SQLITE_IOCAP_SAFE_APPEND SQLITE_IOCAP_SAFE_APPEND577,27711 -#define SQLITE_IOCAP_SEQUENTIAL SQLITE_IOCAP_SEQUENTIAL578,27766 -#define SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN579,27821 -#define SQLITE_IOCAP_POWERSAFE_OVERWRITE SQLITE_IOCAP_POWERSAFE_OVERWRITE580,27876 -#define SQLITE_IOCAP_IMMUTABLE SQLITE_IOCAP_IMMUTABLE581,27931 -#define SQLITE_LOCK_NONE SQLITE_LOCK_NONE590,28191 -#define SQLITE_LOCK_SHARED SQLITE_LOCK_SHARED591,28227 -#define SQLITE_LOCK_RESERVED SQLITE_LOCK_RESERVED592,28263 -#define SQLITE_LOCK_PENDING SQLITE_LOCK_PENDING593,28299 -#define SQLITE_LOCK_EXCLUSIVE SQLITE_LOCK_EXCLUSIVE594,28335 -#define SQLITE_SYNC_NORMAL SQLITE_SYNC_NORMAL622,29674 -#define SQLITE_SYNC_FULL SQLITE_SYNC_FULL623,29716 -#define SQLITE_SYNC_DATAONLY SQLITE_SYNC_DATAONLY624,29758 -typedef struct sqlite3_file sqlite3_file;sqlite3_file637,30228 -struct sqlite3_file {sqlite3_file638,30270 - const struct sqlite3_io_methods *pMethods; /* Methods for an open file */pMethods639,30292 - const struct sqlite3_io_methods *pMethods; /* Methods for an open file */sqlite3_file::pMethods639,30292 -typedef struct sqlite3_io_methods sqlite3_io_methods;sqlite3_io_methods732,34581 -struct sqlite3_io_methods {sqlite3_io_methods733,34635 - int iVersion;iVersion734,34663 - int iVersion;sqlite3_io_methods::iVersion734,34663 - int (*xClose)(sqlite3_file*);xClose735,34679 - int (*xClose)(sqlite3_file*);sqlite3_io_methods::xClose735,34679 - int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);xRead736,34711 - int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);sqlite3_io_methods::xRead736,34711 - int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);xWrite737,34780 - int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);sqlite3_io_methods::xWrite737,34780 - int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);xTruncate738,34856 - int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);sqlite3_io_methods::xTruncate738,34856 - int (*xSync)(sqlite3_file*, int flags);xSync739,34911 - int (*xSync)(sqlite3_file*, int flags);sqlite3_io_methods::xSync739,34911 - int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);xFileSize740,34953 - int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);sqlite3_io_methods::xFileSize740,34953 - int (*xLock)(sqlite3_file*, int);xLock741,35010 - int (*xLock)(sqlite3_file*, int);sqlite3_io_methods::xLock741,35010 - int (*xUnlock)(sqlite3_file*, int);xUnlock742,35046 - int (*xUnlock)(sqlite3_file*, int);sqlite3_io_methods::xUnlock742,35046 - int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);xCheckReservedLock743,35084 - int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);sqlite3_io_methods::xCheckReservedLock743,35084 - int (*xFileControl)(sqlite3_file*, int op, void *pArg);xFileControl744,35142 - int (*xFileControl)(sqlite3_file*, int op, void *pArg);sqlite3_io_methods::xFileControl744,35142 - int (*xSectorSize)(sqlite3_file*);xSectorSize745,35200 - int (*xSectorSize)(sqlite3_file*);sqlite3_io_methods::xSectorSize745,35200 - int (*xDeviceCharacteristics)(sqlite3_file*);xDeviceCharacteristics746,35237 - int (*xDeviceCharacteristics)(sqlite3_file*);sqlite3_io_methods::xDeviceCharacteristics746,35237 - int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);xShmMap748,35331 - int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);sqlite3_io_methods::xShmMap748,35331 - int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);xShmLock749,35405 - int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);sqlite3_io_methods::xShmLock749,35405 - void (*xShmBarrier)(sqlite3_file*);xShmBarrier750,35469 - void (*xShmBarrier)(sqlite3_file*);sqlite3_io_methods::xShmBarrier750,35469 - int (*xShmUnmap)(sqlite3_file*, int deleteFlag);xShmUnmap751,35507 - int (*xShmUnmap)(sqlite3_file*, int deleteFlag);sqlite3_io_methods::xShmUnmap751,35507 - int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);xFetch753,35604 - int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);sqlite3_io_methods::xFetch753,35604 - int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p);xUnfetch754,35678 - int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p);sqlite3_io_methods::xUnfetch754,35678 -#define SQLITE_FCNTL_LOCKSTATE SQLITE_FCNTL_LOCKSTATE992,48880 -#define SQLITE_FCNTL_GET_LOCKPROXYFILE SQLITE_FCNTL_GET_LOCKPROXYFILE993,48927 -#define SQLITE_FCNTL_SET_LOCKPROXYFILE SQLITE_FCNTL_SET_LOCKPROXYFILE994,48974 -#define SQLITE_FCNTL_LAST_ERRNO SQLITE_FCNTL_LAST_ERRNO995,49021 -#define SQLITE_FCNTL_SIZE_HINT SQLITE_FCNTL_SIZE_HINT996,49068 -#define SQLITE_FCNTL_CHUNK_SIZE SQLITE_FCNTL_CHUNK_SIZE997,49115 -#define SQLITE_FCNTL_FILE_POINTER SQLITE_FCNTL_FILE_POINTER998,49162 -#define SQLITE_FCNTL_SYNC_OMITTED SQLITE_FCNTL_SYNC_OMITTED999,49209 -#define SQLITE_FCNTL_WIN32_AV_RETRY SQLITE_FCNTL_WIN32_AV_RETRY1000,49256 -#define SQLITE_FCNTL_PERSIST_WAL SQLITE_FCNTL_PERSIST_WAL1001,49303 -#define SQLITE_FCNTL_OVERWRITE SQLITE_FCNTL_OVERWRITE1002,49350 -#define SQLITE_FCNTL_VFSNAME SQLITE_FCNTL_VFSNAME1003,49397 -#define SQLITE_FCNTL_POWERSAFE_OVERWRITE SQLITE_FCNTL_POWERSAFE_OVERWRITE1004,49444 -#define SQLITE_FCNTL_PRAGMA SQLITE_FCNTL_PRAGMA1005,49491 -#define SQLITE_FCNTL_BUSYHANDLER SQLITE_FCNTL_BUSYHANDLER1006,49538 -#define SQLITE_FCNTL_TEMPFILENAME SQLITE_FCNTL_TEMPFILENAME1007,49585 -#define SQLITE_FCNTL_MMAP_SIZE SQLITE_FCNTL_MMAP_SIZE1008,49632 -#define SQLITE_FCNTL_TRACE SQLITE_FCNTL_TRACE1009,49679 -#define SQLITE_FCNTL_HAS_MOVED SQLITE_FCNTL_HAS_MOVED1010,49726 -#define SQLITE_FCNTL_SYNC SQLITE_FCNTL_SYNC1011,49773 -#define SQLITE_FCNTL_COMMIT_PHASETWO SQLITE_FCNTL_COMMIT_PHASETWO1012,49820 -#define SQLITE_FCNTL_WIN32_SET_HANDLE SQLITE_FCNTL_WIN32_SET_HANDLE1013,49867 -#define SQLITE_FCNTL_WAL_BLOCK SQLITE_FCNTL_WAL_BLOCK1014,49914 -#define SQLITE_FCNTL_ZIPVFS SQLITE_FCNTL_ZIPVFS1015,49961 -#define SQLITE_FCNTL_RBU SQLITE_FCNTL_RBU1016,50008 -#define SQLITE_FCNTL_VFS_POINTER SQLITE_FCNTL_VFS_POINTER1017,50055 -#define SQLITE_FCNTL_JOURNAL_POINTER SQLITE_FCNTL_JOURNAL_POINTER1018,50102 -#define SQLITE_GET_LOCKPROXYFILE SQLITE_GET_LOCKPROXYFILE1021,50173 -#define SQLITE_SET_LOCKPROXYFILE SQLITE_SET_LOCKPROXYFILE1022,50242 -#define SQLITE_LAST_ERRNO SQLITE_LAST_ERRNO1023,50311 -typedef struct sqlite3_mutex sqlite3_mutex;sqlite3_mutex1036,50720 -typedef struct sqlite3_vfs sqlite3_vfs;sqlite3_vfs1195,58611 -typedef void (*sqlite3_syscall_ptr)(void);sqlite3_syscall_ptr1196,58651 -struct sqlite3_vfs {sqlite3_vfs1197,58694 - int iVersion; /* Structure version number (currently 3) */iVersion1198,58715 - int iVersion; /* Structure version number (currently 3) */sqlite3_vfs::iVersion1198,58715 - int szOsFile; /* Size of subclassed sqlite3_file */szOsFile1199,58787 - int szOsFile; /* Size of subclassed sqlite3_file */sqlite3_vfs::szOsFile1199,58787 - int mxPathname; /* Maximum file pathname length */mxPathname1200,58852 - int mxPathname; /* Maximum file pathname length */sqlite3_vfs::mxPathname1200,58852 - sqlite3_vfs *pNext; /* Next registered VFS */pNext1201,58914 - sqlite3_vfs *pNext; /* Next registered VFS */sqlite3_vfs::pNext1201,58914 - const char *zName; /* Name of this virtual file system */zName1202,58967 - const char *zName; /* Name of this virtual file system */sqlite3_vfs::zName1202,58967 - void *pAppData; /* Pointer to application-specific data */pAppData1203,59033 - void *pAppData; /* Pointer to application-specific data */sqlite3_vfs::pAppData1203,59033 - int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,xOpen1204,59103 - int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,sqlite3_vfs::xOpen1204,59103 - int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);xDelete1206,59209 - int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);sqlite3_vfs::xDelete1206,59209 - int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);xAccess1207,59273 - int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);sqlite3_vfs::xAccess1207,59273 - int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);xFullPathname1208,59349 - int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);sqlite3_vfs::xFullPathname1208,59349 - void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);xDlOpen1209,59428 - void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);sqlite3_vfs::xDlOpen1209,59428 - void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);xDlError1210,59485 - void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);sqlite3_vfs::xDlError1210,59485 - void (*xDlClose)(sqlite3_vfs*, void*);xDlClose1212,59613 - void (*xDlClose)(sqlite3_vfs*, void*);sqlite3_vfs::xDlClose1212,59613 - int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);xRandomness1213,59654 - int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);sqlite3_vfs::xRandomness1213,59654 - int (*xSleep)(sqlite3_vfs*, int microseconds);xSleep1214,59713 - int (*xSleep)(sqlite3_vfs*, int microseconds);sqlite3_vfs::xSleep1214,59713 - int (*xCurrentTime)(sqlite3_vfs*, double*);xCurrentTime1215,59762 - int (*xCurrentTime)(sqlite3_vfs*, double*);sqlite3_vfs::xCurrentTime1215,59762 - int (*xGetLastError)(sqlite3_vfs*, int, char *);xGetLastError1216,59808 - int (*xGetLastError)(sqlite3_vfs*, int, char *);sqlite3_vfs::xGetLastError1216,59808 - int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);xCurrentTimeInt641221,60002 - int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);sqlite3_vfs::xCurrentTimeInt641221,60002 - int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);xSetSystemCall1226,60191 - int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);sqlite3_vfs::xSetSystemCall1226,60191 - sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);xGetSystemCall1227,60270 - sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);sqlite3_vfs::xGetSystemCall1227,60270 - const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);xNextSystemCall1228,60344 - const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);sqlite3_vfs::xNextSystemCall1228,60344 -#define SQLITE_ACCESS_EXISTS SQLITE_ACCESS_EXISTS1256,61533 -#define SQLITE_ACCESS_READWRITE SQLITE_ACCESS_READWRITE1257,61567 -#define SQLITE_ACCESS_READ SQLITE_ACCESS_READ1258,61645 -#define SQLITE_SHM_UNLOCK SQLITE_SHM_UNLOCK1282,62451 -#define SQLITE_SHM_LOCK SQLITE_SHM_LOCK1283,62485 -#define SQLITE_SHM_SHARED SQLITE_SHM_SHARED1284,62519 -#define SQLITE_SHM_EXCLUSIVE SQLITE_SHM_EXCLUSIVE1285,62553 -#define SQLITE_SHM_NLOCK SQLITE_SHM_NLOCK1295,62847 -typedef struct sqlite3_mem_methods sqlite3_mem_methods;sqlite3_mem_methods1493,72786 -struct sqlite3_mem_methods {sqlite3_mem_methods1494,72842 - void *(*xMalloc)(int); /* Memory allocation function */xMalloc1495,72871 - void *(*xMalloc)(int); /* Memory allocation function */sqlite3_mem_methods::xMalloc1495,72871 - void (*xFree)(void*); /* Free a prior allocation */xFree1496,72937 - void (*xFree)(void*); /* Free a prior allocation */sqlite3_mem_methods::xFree1496,72937 - void *(*xRealloc)(void*,int); /* Resize an allocation */xRealloc1497,73000 - void *(*xRealloc)(void*,int); /* Resize an allocation */sqlite3_mem_methods::xRealloc1497,73000 - int (*xSize)(void*); /* Return the size of an allocation */xSize1498,73060 - int (*xSize)(void*); /* Return the size of an allocation */sqlite3_mem_methods::xSize1498,73060 - int (*xRoundup)(int); /* Round up request size to allocation size */xRoundup1499,73132 - int (*xRoundup)(int); /* Round up request size to allocation size */sqlite3_mem_methods::xRoundup1499,73132 - int (*xInit)(void*); /* Initialize the memory allocator */xInit1500,73212 - int (*xInit)(void*); /* Initialize the memory allocator */sqlite3_mem_methods::xInit1500,73212 - void (*xShutdown)(void*); /* Deinitialize the memory allocator */xShutdown1501,73283 - void (*xShutdown)(void*); /* Deinitialize the memory allocator */sqlite3_mem_methods::xShutdown1501,73283 - void *pAppData; /* Argument to xInit() and xShutdown() */pAppData1502,73356 - void *pAppData; /* Argument to xInit() and xShutdown() */sqlite3_mem_methods::pAppData1502,73356 -#define SQLITE_CONFIG_SINGLETHREAD SQLITE_CONFIG_SINGLETHREAD1839,92399 -#define SQLITE_CONFIG_MULTITHREAD SQLITE_CONFIG_MULTITHREAD1840,92448 -#define SQLITE_CONFIG_SERIALIZED SQLITE_CONFIG_SERIALIZED1841,92497 -#define SQLITE_CONFIG_MALLOC SQLITE_CONFIG_MALLOC1842,92546 -#define SQLITE_CONFIG_GETMALLOC SQLITE_CONFIG_GETMALLOC1843,92612 -#define SQLITE_CONFIG_SCRATCH SQLITE_CONFIG_SCRATCH1844,92678 -#define SQLITE_CONFIG_PAGECACHE SQLITE_CONFIG_PAGECACHE1845,92744 -#define SQLITE_CONFIG_HEAP SQLITE_CONFIG_HEAP1846,92810 -#define SQLITE_CONFIG_MEMSTATUS SQLITE_CONFIG_MEMSTATUS1847,92881 -#define SQLITE_CONFIG_MUTEX SQLITE_CONFIG_MUTEX1848,92934 -#define SQLITE_CONFIG_GETMUTEX SQLITE_CONFIG_GETMUTEX1849,93002 -#define SQLITE_CONFIG_LOOKASIDE SQLITE_CONFIG_LOOKASIDE1851,93137 -#define SQLITE_CONFIG_PCACHE SQLITE_CONFIG_PCACHE1852,93190 -#define SQLITE_CONFIG_GETPCACHE SQLITE_CONFIG_GETPCACHE1853,93241 -#define SQLITE_CONFIG_LOG SQLITE_CONFIG_LOG1854,93292 -#define SQLITE_CONFIG_URI SQLITE_CONFIG_URI1855,93350 -#define SQLITE_CONFIG_PCACHE2 SQLITE_CONFIG_PCACHE21856,93399 -#define SQLITE_CONFIG_GETPCACHE2 SQLITE_CONFIG_GETPCACHE21857,93469 -#define SQLITE_CONFIG_COVERING_INDEX_SCAN SQLITE_CONFIG_COVERING_INDEX_SCAN1858,93539 -#define SQLITE_CONFIG_SQLLOG SQLITE_CONFIG_SQLLOG1859,93595 -#define SQLITE_CONFIG_MMAP_SIZE SQLITE_CONFIG_MMAP_SIZE1860,93655 -#define SQLITE_CONFIG_WIN32_HEAPSIZE SQLITE_CONFIG_WIN32_HEAPSIZE1861,93729 -#define SQLITE_CONFIG_PCACHE_HDRSZ SQLITE_CONFIG_PCACHE_HDRSZ1862,93791 -#define SQLITE_CONFIG_PMASZ SQLITE_CONFIG_PMASZ1863,93852 -#define SQLITE_CONFIG_STMTJRNL_SPILL SQLITE_CONFIG_STMTJRNL_SPILL1864,93923 -#define SQLITE_DBCONFIG_LOOKASIDE SQLITE_DBCONFIG_LOOKASIDE1954,98939 -#define SQLITE_DBCONFIG_ENABLE_FKEY SQLITE_DBCONFIG_ENABLE_FKEY1955,99010 -#define SQLITE_DBCONFIG_ENABLE_TRIGGER SQLITE_DBCONFIG_ENABLE_TRIGGER1956,99076 -#define SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER1957,99142 -#define SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION1958,99208 -#define SQLITE_DENY SQLITE_DENY2695,134123 -#define SQLITE_IGNORE SQLITE_IGNORE2696,134193 -#define SQLITE_CREATE_INDEX SQLITE_CREATE_INDEX2718,135318 -#define SQLITE_CREATE_TABLE SQLITE_CREATE_TABLE2719,135397 -#define SQLITE_CREATE_TEMP_INDEX SQLITE_CREATE_TEMP_INDEX2720,135476 -#define SQLITE_CREATE_TEMP_TABLE SQLITE_CREATE_TEMP_TABLE2721,135555 -#define SQLITE_CREATE_TEMP_TRIGGER SQLITE_CREATE_TEMP_TRIGGER2722,135634 -#define SQLITE_CREATE_TEMP_VIEW SQLITE_CREATE_TEMP_VIEW2723,135713 -#define SQLITE_CREATE_TRIGGER SQLITE_CREATE_TRIGGER2724,135792 -#define SQLITE_CREATE_VIEW SQLITE_CREATE_VIEW2725,135871 -#define SQLITE_DELETE SQLITE_DELETE2726,135950 -#define SQLITE_DROP_INDEX SQLITE_DROP_INDEX2727,136029 -#define SQLITE_DROP_TABLE SQLITE_DROP_TABLE2728,136108 -#define SQLITE_DROP_TEMP_INDEX SQLITE_DROP_TEMP_INDEX2729,136187 -#define SQLITE_DROP_TEMP_TABLE SQLITE_DROP_TEMP_TABLE2730,136266 -#define SQLITE_DROP_TEMP_TRIGGER SQLITE_DROP_TEMP_TRIGGER2731,136345 -#define SQLITE_DROP_TEMP_VIEW SQLITE_DROP_TEMP_VIEW2732,136424 -#define SQLITE_DROP_TRIGGER SQLITE_DROP_TRIGGER2733,136503 -#define SQLITE_DROP_VIEW SQLITE_DROP_VIEW2734,136582 -#define SQLITE_INSERT SQLITE_INSERT2735,136661 -#define SQLITE_PRAGMA SQLITE_PRAGMA2736,136740 -#define SQLITE_READ SQLITE_READ2737,136819 -#define SQLITE_SELECT SQLITE_SELECT2738,136898 -#define SQLITE_TRANSACTION SQLITE_TRANSACTION2739,136977 -#define SQLITE_UPDATE SQLITE_UPDATE2740,137056 -#define SQLITE_ATTACH SQLITE_ATTACH2741,137135 -#define SQLITE_DETACH SQLITE_DETACH2742,137214 -#define SQLITE_ALTER_TABLE SQLITE_ALTER_TABLE2743,137293 -#define SQLITE_REINDEX SQLITE_REINDEX2744,137372 -#define SQLITE_ANALYZE SQLITE_ANALYZE2745,137451 -#define SQLITE_CREATE_VTABLE SQLITE_CREATE_VTABLE2746,137530 -#define SQLITE_DROP_VTABLE SQLITE_DROP_VTABLE2747,137609 -#define SQLITE_FUNCTION SQLITE_FUNCTION2748,137688 -#define SQLITE_SAVEPOINT SQLITE_SAVEPOINT2749,137767 -#define SQLITE_COPY SQLITE_COPY2750,137846 -#define SQLITE_RECURSIVE SQLITE_RECURSIVE2751,137908 -typedef struct sqlite3_stmt sqlite3_stmt;sqlite3_stmt3177,159984 -#define SQLITE_LIMIT_LENGTH SQLITE_LIMIT_LENGTH3277,164498 -#define SQLITE_LIMIT_SQL_LENGTH SQLITE_LIMIT_SQL_LENGTH3278,164547 -#define SQLITE_LIMIT_COLUMN SQLITE_LIMIT_COLUMN3279,164596 -#define SQLITE_LIMIT_EXPR_DEPTH SQLITE_LIMIT_EXPR_DEPTH3280,164645 -#define SQLITE_LIMIT_COMPOUND_SELECT SQLITE_LIMIT_COMPOUND_SELECT3281,164694 -#define SQLITE_LIMIT_VDBE_OP SQLITE_LIMIT_VDBE_OP3282,164743 -#define SQLITE_LIMIT_FUNCTION_ARG SQLITE_LIMIT_FUNCTION_ARG3283,164792 -#define SQLITE_LIMIT_ATTACHED SQLITE_LIMIT_ATTACHED3284,164841 -#define SQLITE_LIMIT_LIKE_PATTERN_LENGTH SQLITE_LIMIT_LIKE_PATTERN_LENGTH3285,164890 -#define SQLITE_LIMIT_VARIABLE_NUMBER SQLITE_LIMIT_VARIABLE_NUMBER3286,164939 -#define SQLITE_LIMIT_TRIGGER_DEPTH SQLITE_LIMIT_TRIGGER_DEPTH3287,164988 -#define SQLITE_LIMIT_WORKER_THREADS SQLITE_LIMIT_WORKER_THREADS3288,165037 -typedef struct Mem sqlite3_value;sqlite3_value3502,175346 -typedef struct sqlite3_context sqlite3_context;sqlite3_context3516,175928 -#define SQLITE_INTEGER SQLITE_INTEGER3966,197367 -#define SQLITE_FLOAT SQLITE_FLOAT3967,197393 -#define SQLITE_BLOB SQLITE_BLOB3968,197419 -#define SQLITE_NULL SQLITE_NULL3969,197445 -# undef SQLITE_TEXTSQLITE_TEXT3971,197490 -# define SQLITE_TEXT SQLITE_TEXT3973,197516 -#define SQLITE3_TEXT SQLITE3_TEXT3975,197550 -#define SQLITE_UTF8 SQLITE_UTF84335,215432 -#define SQLITE_UTF16LE SQLITE_UTF16LE4336,215492 -#define SQLITE_UTF16BE SQLITE_UTF16BE4337,215552 -#define SQLITE_UTF16 SQLITE_UTF164338,215612 -#define SQLITE_ANY SQLITE_ANY4339,215675 -#define SQLITE_UTF16_ALIGNED SQLITE_UTF16_ALIGNED4340,215727 -#define SQLITE_DETERMINISTIC SQLITE_DETERMINISTIC4350,216056 -typedef void (*sqlite3_destructor_type)(void*);sqlite3_destructor_type4605,228274 -#define SQLITE_STATIC SQLITE_STATIC4606,228322 -#define SQLITE_TRANSIENT SQLITE_TRANSIENT4607,228378 -SQLITE_API SQLITE_EXTERN char *sqlite3_temp_directory;sqlite3_temp_directory5032,248531 -SQLITE_API SQLITE_EXTERN char *sqlite3_data_directory;sqlite3_data_directory5069,250367 -typedef struct sqlite3_vtab sqlite3_vtab;sqlite3_vtab5613,274823 -typedef struct sqlite3_index_info sqlite3_index_info;sqlite3_index_info5614,274865 -typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor;sqlite3_vtab_cursor5615,274919 -typedef struct sqlite3_module sqlite3_module;sqlite3_module5616,274975 -struct sqlite3_module {sqlite3_module5634,275727 - int iVersion;iVersion5635,275751 - int iVersion;sqlite3_module::iVersion5635,275751 - int (*xCreate)(sqlite3*, void *pAux,xCreate5636,275767 - int (*xCreate)(sqlite3*, void *pAux,sqlite3_module::xCreate5636,275767 - int (*xConnect)(sqlite3*, void *pAux,xConnect5639,275902 - int (*xConnect)(sqlite3*, void *pAux,sqlite3_module::xConnect5639,275902 - int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);xBestIndex5642,276038 - int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);sqlite3_module::xBestIndex5642,276038 - int (*xDisconnect)(sqlite3_vtab *pVTab);xDisconnect5643,276101 - int (*xDisconnect)(sqlite3_vtab *pVTab);sqlite3_module::xDisconnect5643,276101 - int (*xDestroy)(sqlite3_vtab *pVTab);xDestroy5644,276144 - int (*xDestroy)(sqlite3_vtab *pVTab);sqlite3_module::xDestroy5644,276144 - int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);xOpen5645,276184 - int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);sqlite3_module::xOpen5645,276184 - int (*xClose)(sqlite3_vtab_cursor*);xClose5646,276253 - int (*xClose)(sqlite3_vtab_cursor*);sqlite3_module::xClose5646,276253 - int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,xFilter5647,276292 - int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,sqlite3_module::xFilter5647,276292 - int (*xNext)(sqlite3_vtab_cursor*);xNext5649,276412 - int (*xNext)(sqlite3_vtab_cursor*);sqlite3_module::xNext5649,276412 - int (*xEof)(sqlite3_vtab_cursor*);xEof5650,276450 - int (*xEof)(sqlite3_vtab_cursor*);sqlite3_module::xEof5650,276450 - int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);xColumn5651,276487 - int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);sqlite3_module::xColumn5651,276487 - int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);xRowid5652,276550 - int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);sqlite3_module::xRowid5652,276550 - int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);xUpdate5653,276612 - int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);sqlite3_module::xUpdate5653,276612 - int (*xBegin)(sqlite3_vtab *pVTab);xBegin5654,276686 - int (*xBegin)(sqlite3_vtab *pVTab);sqlite3_module::xBegin5654,276686 - int (*xSync)(sqlite3_vtab *pVTab);xSync5655,276724 - int (*xSync)(sqlite3_vtab *pVTab);sqlite3_module::xSync5655,276724 - int (*xCommit)(sqlite3_vtab *pVTab);xCommit5656,276761 - int (*xCommit)(sqlite3_vtab *pVTab);sqlite3_module::xCommit5656,276761 - int (*xRollback)(sqlite3_vtab *pVTab);xRollback5657,276800 - int (*xRollback)(sqlite3_vtab *pVTab);sqlite3_module::xRollback5657,276800 - int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,xFindFunction5658,276841 - int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,sqlite3_module::xFindFunction5658,276841 - int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);xRename5661,277030 - int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);sqlite3_module::xRename5661,277030 - int (*xSavepoint)(sqlite3_vtab *pVTab, int);xSavepoint5664,277208 - int (*xSavepoint)(sqlite3_vtab *pVTab, int);sqlite3_module::xSavepoint5664,277208 - int (*xRelease)(sqlite3_vtab *pVTab, int);xRelease5665,277255 - int (*xRelease)(sqlite3_vtab *pVTab, int);sqlite3_module::xRelease5665,277255 - int (*xRollbackTo)(sqlite3_vtab *pVTab, int);xRollbackTo5666,277300 - int (*xRollbackTo)(sqlite3_vtab *pVTab, int);sqlite3_module::xRollbackTo5666,277300 -struct sqlite3_index_info {sqlite3_index_info5763,282400 - int nConstraint; /* Number of entries in aConstraint */nConstraint5765,282443 - int nConstraint; /* Number of entries in aConstraint */sqlite3_index_info::nConstraint5765,282443 - struct sqlite3_index_constraint {sqlite3_index_constraint5766,282511 - struct sqlite3_index_constraint {sqlite3_index_info::sqlite3_index_constraint5766,282511 - int iColumn; /* Column constrained. -1 for ROWID */iColumn5767,282547 - int iColumn; /* Column constrained. -1 for ROWID */sqlite3_index_info::sqlite3_index_constraint::iColumn5767,282547 - unsigned char op; /* Constraint operator */op5768,282618 - unsigned char op; /* Constraint operator */sqlite3_index_info::sqlite3_index_constraint::op5768,282618 - unsigned char usable; /* True if this constraint is usable */usable5769,282675 - unsigned char usable; /* True if this constraint is usable */sqlite3_index_info::sqlite3_index_constraint::usable5769,282675 - int iTermOffset; /* Used internally - xBestIndex should ignore */iTermOffset5770,282746 - int iTermOffset; /* Used internally - xBestIndex should ignore */sqlite3_index_info::sqlite3_index_constraint::iTermOffset5770,282746 - } *aConstraint; /* Table of WHERE clause constraints */aConstraint5771,282826 - } *aConstraint; /* Table of WHERE clause constraints */sqlite3_index_info::aConstraint5771,282826 - int nOrderBy; /* Number of terms in the ORDER BY clause */nOrderBy5772,282895 - int nOrderBy; /* Number of terms in the ORDER BY clause */sqlite3_index_info::nOrderBy5772,282895 - struct sqlite3_index_orderby {sqlite3_index_orderby5773,282969 - struct sqlite3_index_orderby {sqlite3_index_info::sqlite3_index_orderby5773,282969 - int iColumn; /* Column number */iColumn5774,283002 - int iColumn; /* Column number */sqlite3_index_info::sqlite3_index_orderby::iColumn5774,283002 - unsigned char desc; /* True for DESC. False for ASC. */desc5775,283053 - unsigned char desc; /* True for DESC. False for ASC. */sqlite3_index_info::sqlite3_index_orderby::desc5775,283053 - } *aOrderBy; /* The ORDER BY clause */aOrderBy5776,283121 - } *aOrderBy; /* The ORDER BY clause */sqlite3_index_info::aOrderBy5776,283121 - struct sqlite3_index_constraint_usage {sqlite3_index_constraint_usage5778,283192 - struct sqlite3_index_constraint_usage {sqlite3_index_info::sqlite3_index_constraint_usage5778,283192 - int argvIndex; /* if >0, constraint is part of argv to xFilter */argvIndex5779,283234 - int argvIndex; /* if >0, constraint is part of argv to xFilter */sqlite3_index_info::sqlite3_index_constraint_usage::argvIndex5779,283234 - unsigned char omit; /* Do not code a test for this constraint */omit5780,283314 - unsigned char omit; /* Do not code a test for this constraint */sqlite3_index_info::sqlite3_index_constraint_usage::omit5780,283314 - } *aConstraintUsage;aConstraintUsage5781,283388 - } *aConstraintUsage;sqlite3_index_info::aConstraintUsage5781,283388 - int idxNum; /* Number used to identify the index */idxNum5782,283411 - int idxNum; /* Number used to identify the index */sqlite3_index_info::idxNum5782,283411 - char *idxStr; /* String, possibly obtained from sqlite3_malloc */idxStr5783,283480 - char *idxStr; /* String, possibly obtained from sqlite3_malloc */sqlite3_index_info::idxStr5783,283480 - int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */needToFreeIdxStr5784,283561 - int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */sqlite3_index_info::needToFreeIdxStr5784,283561 - int orderByConsumed; /* True if output is already ordered */orderByConsumed5785,283637 - int orderByConsumed; /* True if output is already ordered */sqlite3_index_info::orderByConsumed5785,283637 - double estimatedCost; /* Estimated cost of using this index */estimatedCost5786,283706 - double estimatedCost; /* Estimated cost of using this index */sqlite3_index_info::estimatedCost5786,283706 - sqlite3_int64 estimatedRows; /* Estimated number of rows returned */estimatedRows5788,283847 - sqlite3_int64 estimatedRows; /* Estimated number of rows returned */sqlite3_index_info::estimatedRows5788,283847 - int idxFlags; /* Mask of SQLITE_INDEX_SCAN_* flags */idxFlags5790,283987 - int idxFlags; /* Mask of SQLITE_INDEX_SCAN_* flags */sqlite3_index_info::idxFlags5790,283987 - sqlite3_uint64 colUsed; /* Input: Mask of columns used by statement */colUsed5792,284123 - sqlite3_uint64 colUsed; /* Input: Mask of columns used by statement */sqlite3_index_info::colUsed5792,284123 -#define SQLITE_INDEX_SCAN_UNIQUE SQLITE_INDEX_SCAN_UNIQUE5798,284247 -#define SQLITE_INDEX_CONSTRAINT_EQ SQLITE_INDEX_CONSTRAINT_EQ5808,284620 -#define SQLITE_INDEX_CONSTRAINT_GT SQLITE_INDEX_CONSTRAINT_GT5809,284662 -#define SQLITE_INDEX_CONSTRAINT_LE SQLITE_INDEX_CONSTRAINT_LE5810,284704 -#define SQLITE_INDEX_CONSTRAINT_LT SQLITE_INDEX_CONSTRAINT_LT5811,284746 -#define SQLITE_INDEX_CONSTRAINT_GE SQLITE_INDEX_CONSTRAINT_GE5812,284788 -#define SQLITE_INDEX_CONSTRAINT_MATCH SQLITE_INDEX_CONSTRAINT_MATCH5813,284830 -#define SQLITE_INDEX_CONSTRAINT_LIKE SQLITE_INDEX_CONSTRAINT_LIKE5814,284872 -#define SQLITE_INDEX_CONSTRAINT_GLOB SQLITE_INDEX_CONSTRAINT_GLOB5815,284914 -#define SQLITE_INDEX_CONSTRAINT_REGEXP SQLITE_INDEX_CONSTRAINT_REGEXP5816,284956 -struct sqlite3_vtab {sqlite3_vtab5876,287803 - const sqlite3_module *pModule; /* The module for this virtual table */pModule5877,287825 - const sqlite3_module *pModule; /* The module for this virtual table */sqlite3_vtab::pModule5877,287825 - int nRef; /* Number of open cursors */nRef5878,287899 - int nRef; /* Number of open cursors */sqlite3_vtab::nRef5878,287899 - char *zErrMsg; /* Error message from sqlite3_mprintf() */zErrMsg5879,287962 - char *zErrMsg; /* Error message from sqlite3_mprintf() */sqlite3_vtab::zErrMsg5879,287962 -struct sqlite3_vtab_cursor {sqlite3_vtab_cursor5900,288900 - sqlite3_vtab *pVtab; /* Virtual table of this cursor */pVtab5901,288929 - sqlite3_vtab *pVtab; /* Virtual table of this cursor */sqlite3_vtab_cursor::pVtab5901,288929 -typedef struct sqlite3_blob sqlite3_blob;sqlite3_blob5956,291240 -typedef struct sqlite3_mutex_methods sqlite3_mutex_methods;sqlite3_mutex_methods6394,311629 -struct sqlite3_mutex_methods {sqlite3_mutex_methods6395,311689 - int (*xMutexInit)(void);xMutexInit6396,311720 - int (*xMutexInit)(void);sqlite3_mutex_methods::xMutexInit6396,311720 - int (*xMutexEnd)(void);xMutexEnd6397,311747 - int (*xMutexEnd)(void);sqlite3_mutex_methods::xMutexEnd6397,311747 - sqlite3_mutex *(*xMutexAlloc)(int);xMutexAlloc6398,311773 - sqlite3_mutex *(*xMutexAlloc)(int);sqlite3_mutex_methods::xMutexAlloc6398,311773 - void (*xMutexFree)(sqlite3_mutex *);xMutexFree6399,311811 - void (*xMutexFree)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexFree6399,311811 - void (*xMutexEnter)(sqlite3_mutex *);xMutexEnter6400,311850 - void (*xMutexEnter)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexEnter6400,311850 - int (*xMutexTry)(sqlite3_mutex *);xMutexTry6401,311890 - int (*xMutexTry)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexTry6401,311890 - void (*xMutexLeave)(sqlite3_mutex *);xMutexLeave6402,311927 - void (*xMutexLeave)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexLeave6402,311927 - int (*xMutexHeld)(sqlite3_mutex *);xMutexHeld6403,311967 - int (*xMutexHeld)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexHeld6403,311967 - int (*xMutexNotheld)(sqlite3_mutex *);xMutexNotheld6404,312005 - int (*xMutexNotheld)(sqlite3_mutex *);sqlite3_mutex_methods::xMutexNotheld6404,312005 -#define SQLITE_MUTEX_FAST SQLITE_MUTEX_FAST6451,314058 -#define SQLITE_MUTEX_RECURSIVE SQLITE_MUTEX_RECURSIVE6452,314098 -#define SQLITE_MUTEX_STATIC_MASTER SQLITE_MUTEX_STATIC_MASTER6453,314138 -#define SQLITE_MUTEX_STATIC_MEM SQLITE_MUTEX_STATIC_MEM6454,314178 -#define SQLITE_MUTEX_STATIC_MEM2 SQLITE_MUTEX_STATIC_MEM26455,314242 -#define SQLITE_MUTEX_STATIC_OPEN SQLITE_MUTEX_STATIC_OPEN6456,314298 -#define SQLITE_MUTEX_STATIC_PRNG SQLITE_MUTEX_STATIC_PRNG6457,314364 -#define SQLITE_MUTEX_STATIC_LRU SQLITE_MUTEX_STATIC_LRU6458,314428 -#define SQLITE_MUTEX_STATIC_LRU2 SQLITE_MUTEX_STATIC_LRU26459,314489 -#define SQLITE_MUTEX_STATIC_PMEM SQLITE_MUTEX_STATIC_PMEM6460,314545 -#define SQLITE_MUTEX_STATIC_APP1 SQLITE_MUTEX_STATIC_APP16461,314612 -#define SQLITE_MUTEX_STATIC_APP2 SQLITE_MUTEX_STATIC_APP26462,314682 -#define SQLITE_MUTEX_STATIC_APP3 SQLITE_MUTEX_STATIC_APP36463,314752 -#define SQLITE_MUTEX_STATIC_VFS1 SQLITE_MUTEX_STATIC_VFS16464,314822 -#define SQLITE_MUTEX_STATIC_VFS2 SQLITE_MUTEX_STATIC_VFS26465,314893 -#define SQLITE_MUTEX_STATIC_VFS3 SQLITE_MUTEX_STATIC_VFS36466,314965 -#define SQLITE_TESTCTRL_FIRST SQLITE_TESTCTRL_FIRST6545,318501 -#define SQLITE_TESTCTRL_PRNG_SAVE SQLITE_TESTCTRL_PRNG_SAVE6546,318552 -#define SQLITE_TESTCTRL_PRNG_RESTORE SQLITE_TESTCTRL_PRNG_RESTORE6547,318603 -#define SQLITE_TESTCTRL_PRNG_RESET SQLITE_TESTCTRL_PRNG_RESET6548,318654 -#define SQLITE_TESTCTRL_BITVEC_TEST SQLITE_TESTCTRL_BITVEC_TEST6549,318705 -#define SQLITE_TESTCTRL_FAULT_INSTALL SQLITE_TESTCTRL_FAULT_INSTALL6550,318756 -#define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS6551,318807 -#define SQLITE_TESTCTRL_PENDING_BYTE SQLITE_TESTCTRL_PENDING_BYTE6552,318858 -#define SQLITE_TESTCTRL_ASSERT SQLITE_TESTCTRL_ASSERT6553,318909 -#define SQLITE_TESTCTRL_ALWAYS SQLITE_TESTCTRL_ALWAYS6554,318960 -#define SQLITE_TESTCTRL_RESERVE SQLITE_TESTCTRL_RESERVE6555,319011 -#define SQLITE_TESTCTRL_OPTIMIZATIONS SQLITE_TESTCTRL_OPTIMIZATIONS6556,319062 -#define SQLITE_TESTCTRL_ISKEYWORD SQLITE_TESTCTRL_ISKEYWORD6557,319113 -#define SQLITE_TESTCTRL_SCRATCHMALLOC SQLITE_TESTCTRL_SCRATCHMALLOC6558,319164 -#define SQLITE_TESTCTRL_LOCALTIME_FAULT SQLITE_TESTCTRL_LOCALTIME_FAULT6559,319215 -#define SQLITE_TESTCTRL_EXPLAIN_STMT SQLITE_TESTCTRL_EXPLAIN_STMT6560,319266 -#define SQLITE_TESTCTRL_NEVER_CORRUPT SQLITE_TESTCTRL_NEVER_CORRUPT6561,319333 -#define SQLITE_TESTCTRL_VDBE_COVERAGE SQLITE_TESTCTRL_VDBE_COVERAGE6562,319384 -#define SQLITE_TESTCTRL_BYTEORDER SQLITE_TESTCTRL_BYTEORDER6563,319435 -#define SQLITE_TESTCTRL_ISINIT SQLITE_TESTCTRL_ISINIT6564,319486 -#define SQLITE_TESTCTRL_SORTER_MMAP SQLITE_TESTCTRL_SORTER_MMAP6565,319537 -#define SQLITE_TESTCTRL_IMPOSTER SQLITE_TESTCTRL_IMPOSTER6566,319588 -#define SQLITE_TESTCTRL_LAST SQLITE_TESTCTRL_LAST6567,319639 -#define SQLITE_STATUS_MEMORY_USED SQLITE_STATUS_MEMORY_USED6687,325486 -#define SQLITE_STATUS_PAGECACHE_USED SQLITE_STATUS_PAGECACHE_USED6688,325531 -#define SQLITE_STATUS_PAGECACHE_OVERFLOW SQLITE_STATUS_PAGECACHE_OVERFLOW6689,325576 -#define SQLITE_STATUS_SCRATCH_USED SQLITE_STATUS_SCRATCH_USED6690,325621 -#define SQLITE_STATUS_SCRATCH_OVERFLOW SQLITE_STATUS_SCRATCH_OVERFLOW6691,325666 -#define SQLITE_STATUS_MALLOC_SIZE SQLITE_STATUS_MALLOC_SIZE6692,325711 -#define SQLITE_STATUS_PARSER_STACK SQLITE_STATUS_PARSER_STACK6693,325756 -#define SQLITE_STATUS_PAGECACHE_SIZE SQLITE_STATUS_PAGECACHE_SIZE6694,325801 -#define SQLITE_STATUS_SCRATCH_SIZE SQLITE_STATUS_SCRATCH_SIZE6695,325846 -#define SQLITE_STATUS_MALLOC_COUNT SQLITE_STATUS_MALLOC_COUNT6696,325891 -#define SQLITE_DBSTATUS_LOOKASIDE_USED SQLITE_DBSTATUS_LOOKASIDE_USED6813,331378 -#define SQLITE_DBSTATUS_CACHE_USED SQLITE_DBSTATUS_CACHE_USED6814,331425 -#define SQLITE_DBSTATUS_SCHEMA_USED SQLITE_DBSTATUS_SCHEMA_USED6815,331472 -#define SQLITE_DBSTATUS_STMT_USED SQLITE_DBSTATUS_STMT_USED6816,331519 -#define SQLITE_DBSTATUS_LOOKASIDE_HIT SQLITE_DBSTATUS_LOOKASIDE_HIT6817,331566 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE6818,331613 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL6819,331660 -#define SQLITE_DBSTATUS_CACHE_HIT SQLITE_DBSTATUS_CACHE_HIT6820,331707 -#define SQLITE_DBSTATUS_CACHE_MISS SQLITE_DBSTATUS_CACHE_MISS6821,331754 -#define SQLITE_DBSTATUS_CACHE_WRITE SQLITE_DBSTATUS_CACHE_WRITE6822,331801 -#define SQLITE_DBSTATUS_DEFERRED_FKS SQLITE_DBSTATUS_DEFERRED_FKS6823,331848 -#define SQLITE_DBSTATUS_MAX SQLITE_DBSTATUS_MAX6824,331895 -#define SQLITE_STMTSTATUS_FULLSCAN_STEP SQLITE_STMTSTATUS_FULLSCAN_STEP6890,334953 -#define SQLITE_STMTSTATUS_SORT SQLITE_STMTSTATUS_SORT6891,334999 -#define SQLITE_STMTSTATUS_AUTOINDEX SQLITE_STMTSTATUS_AUTOINDEX6892,335045 -#define SQLITE_STMTSTATUS_VM_STEP SQLITE_STMTSTATUS_VM_STEP6893,335091 -typedef struct sqlite3_pcache sqlite3_pcache;sqlite3_pcache6906,335512 -typedef struct sqlite3_pcache_page sqlite3_pcache_page;sqlite3_pcache_page6918,335929 -struct sqlite3_pcache_page {sqlite3_pcache_page6919,335985 - void *pBuf; /* The content of the page */pBuf6920,336014 - void *pBuf; /* The content of the page */sqlite3_pcache_page::pBuf6920,336014 - void *pExtra; /* Extra information associated with the page */pExtra6921,336065 - void *pExtra; /* Extra information associated with the page */sqlite3_pcache_page::pExtra6921,336065 -typedef struct sqlite3_pcache_methods2 sqlite3_pcache_methods2;sqlite3_pcache_methods27083,344293 -struct sqlite3_pcache_methods2 {sqlite3_pcache_methods27084,344357 - int iVersion;iVersion7085,344390 - int iVersion;sqlite3_pcache_methods2::iVersion7085,344390 - void *pArg;pArg7086,344406 - void *pArg;sqlite3_pcache_methods2::pArg7086,344406 - int (*xInit)(void*);xInit7087,344420 - int (*xInit)(void*);sqlite3_pcache_methods2::xInit7087,344420 - void (*xShutdown)(void*);xShutdown7088,344443 - void (*xShutdown)(void*);sqlite3_pcache_methods2::xShutdown7088,344443 - sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);xCreate7089,344471 - sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);sqlite3_pcache_methods2::xCreate7089,344471 - void (*xCachesize)(sqlite3_pcache*, int nCachesize);xCachesize7090,344542 - void (*xCachesize)(sqlite3_pcache*, int nCachesize);sqlite3_pcache_methods2::xCachesize7090,344542 - int (*xPagecount)(sqlite3_pcache*);xPagecount7091,344597 - int (*xPagecount)(sqlite3_pcache*);sqlite3_pcache_methods2::xPagecount7091,344597 - sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);xFetch7092,344635 - sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);sqlite3_pcache_methods2::xFetch7092,344635 - void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard);xUnpin7093,344716 - void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard);sqlite3_pcache_methods2::xUnpin7093,344716 - void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*, xRekey7094,344786 - void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*, sqlite3_pcache_methods2::xRekey7094,344786 - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);xTruncate7096,344884 - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);sqlite3_pcache_methods2::xTruncate7096,344884 - void (*xDestroy)(sqlite3_pcache*);xDestroy7097,344939 - void (*xDestroy)(sqlite3_pcache*);sqlite3_pcache_methods2::xDestroy7097,344939 - void (*xShrink)(sqlite3_pcache*);xShrink7098,344976 - void (*xShrink)(sqlite3_pcache*);sqlite3_pcache_methods2::xShrink7098,344976 -typedef struct sqlite3_pcache_methods sqlite3_pcache_methods;sqlite3_pcache_methods7106,345234 -struct sqlite3_pcache_methods {sqlite3_pcache_methods7107,345296 - void *pArg;pArg7108,345328 - void *pArg;sqlite3_pcache_methods::pArg7108,345328 - int (*xInit)(void*);xInit7109,345342 - int (*xInit)(void*);sqlite3_pcache_methods::xInit7109,345342 - void (*xShutdown)(void*);xShutdown7110,345365 - void (*xShutdown)(void*);sqlite3_pcache_methods::xShutdown7110,345365 - sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);xCreate7111,345393 - sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);sqlite3_pcache_methods::xCreate7111,345393 - void (*xCachesize)(sqlite3_pcache*, int nCachesize);xCachesize7112,345451 - void (*xCachesize)(sqlite3_pcache*, int nCachesize);sqlite3_pcache_methods::xCachesize7112,345451 - int (*xPagecount)(sqlite3_pcache*);xPagecount7113,345506 - int (*xPagecount)(sqlite3_pcache*);sqlite3_pcache_methods::xPagecount7113,345506 - void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);xFetch7114,345544 - void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);sqlite3_pcache_methods::xFetch7114,345544 - void (*xUnpin)(sqlite3_pcache*, void*, int discard);xUnpin7115,345610 - void (*xUnpin)(sqlite3_pcache*, void*, int discard);sqlite3_pcache_methods::xUnpin7115,345610 - void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);xRekey7116,345665 - void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);sqlite3_pcache_methods::xRekey7116,345665 - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);xTruncate7117,345741 - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);sqlite3_pcache_methods::xTruncate7117,345741 - void (*xDestroy)(sqlite3_pcache*);xDestroy7118,345796 - void (*xDestroy)(sqlite3_pcache*);sqlite3_pcache_methods::xDestroy7118,345796 -typedef struct sqlite3_backup sqlite3_backup;sqlite3_backup7132,346173 -#define SQLITE_CHECKPOINT_PASSIVE SQLITE_CHECKPOINT_PASSIVE7729,376751 -#define SQLITE_CHECKPOINT_FULL SQLITE_CHECKPOINT_FULL7730,376831 -#define SQLITE_CHECKPOINT_RESTART SQLITE_CHECKPOINT_RESTART7731,376909 -#define SQLITE_CHECKPOINT_TRUNCATE SQLITE_CHECKPOINT_TRUNCATE7732,376988 -#define SQLITE_VTAB_CONSTRAINT_SUPPORT SQLITE_VTAB_CONSTRAINT_SUPPORT7789,379668 -#define SQLITE_ROLLBACK SQLITE_ROLLBACK7815,380713 -#define SQLITE_FAIL SQLITE_FAIL7817,380815 -#define SQLITE_REPLACE SQLITE_REPLACE7819,380893 -#define SQLITE_SCANSTAT_NLOOP SQLITE_SCANSTAT_NLOOP7868,383214 -#define SQLITE_SCANSTAT_NVISIT SQLITE_SCANSTAT_NVISIT7869,383249 -#define SQLITE_SCANSTAT_EST SQLITE_SCANSTAT_EST7870,383284 -#define SQLITE_SCANSTAT_NAME SQLITE_SCANSTAT_NAME7871,383319 -#define SQLITE_SCANSTAT_EXPLAIN SQLITE_SCANSTAT_EXPLAIN7872,383354 -#define SQLITE_SCANSTAT_SELECTID SQLITE_SCANSTAT_SELECTID7873,383389 -typedef struct sqlite3_snapshot sqlite3_snapshot;sqlite3_snapshot8090,394178 -# undef doubledouble8201,398745 -#define _SQLITE3RTREE_H__SQLITE3RTREE_H_8224,399307 -typedef struct sqlite3_rtree_geometry sqlite3_rtree_geometry;sqlite3_rtree_geometry8231,399374 -typedef struct sqlite3_rtree_query_info sqlite3_rtree_query_info;sqlite3_rtree_query_info8232,399436 - typedef sqlite3_int64 sqlite3_rtree_dbl;sqlite3_rtree_dbl8238,399643 - typedef double sqlite3_rtree_dbl;sqlite3_rtree_dbl8240,399692 -struct sqlite3_rtree_geometry {sqlite3_rtree_geometry8261,400273 - void *pContext; /* Copy of pContext passed to s_r_g_c() */pContext8262,400305 - void *pContext; /* Copy of pContext passed to s_r_g_c() */sqlite3_rtree_geometry::pContext8262,400305 - int nParam; /* Size of array aParam[] */nParam8263,400382 - int nParam; /* Size of array aParam[] */sqlite3_rtree_geometry::nParam8263,400382 - sqlite3_rtree_dbl *aParam; /* Parameters passed to SQL geom function */aParam8264,400445 - sqlite3_rtree_dbl *aParam; /* Parameters passed to SQL geom function */sqlite3_rtree_geometry::aParam8264,400445 - void *pUser; /* Callback implementation user data */pUser8265,400524 - void *pUser; /* Callback implementation user data */sqlite3_rtree_geometry::pUser8265,400524 - void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */xDelUser8266,400598 - void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */sqlite3_rtree_geometry::xDelUser8266,400598 -struct sqlite3_rtree_query_info {sqlite3_rtree_query_info8293,401420 - void *pContext; /* pContext from when function registered */pContext8294,401454 - void *pContext; /* pContext from when function registered */sqlite3_rtree_query_info::pContext8294,401454 - int nParam; /* Number of function parameters */nParam8295,401535 - int nParam; /* Number of function parameters */sqlite3_rtree_query_info::nParam8295,401535 - sqlite3_rtree_dbl *aParam; /* value of function parameters */aParam8296,401607 - sqlite3_rtree_dbl *aParam; /* value of function parameters */sqlite3_rtree_query_info::aParam8296,401607 - void *pUser; /* callback can use this, if desired */pUser8297,401678 - void *pUser; /* callback can use this, if desired */sqlite3_rtree_query_info::pUser8297,401678 - void (*xDelUser)(void*); /* function to free pUser */xDelUser8298,401754 - void (*xDelUser)(void*); /* function to free pUser */sqlite3_rtree_query_info::xDelUser8298,401754 - sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */aCoord8299,401819 - sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */sqlite3_rtree_query_info::aCoord8299,401819 - unsigned int *anQueue; /* Number of pending entries in the queue */anQueue8300,401899 - unsigned int *anQueue; /* Number of pending entries in the queue */sqlite3_rtree_query_info::anQueue8300,401899 - int nCoord; /* Number of coordinates */nCoord8301,401980 - int nCoord; /* Number of coordinates */sqlite3_rtree_query_info::nCoord8301,401980 - int iLevel; /* Level of current node or entry */iLevel8302,402044 - int iLevel; /* Level of current node or entry */sqlite3_rtree_query_info::iLevel8302,402044 - int mxLevel; /* The largest iLevel value in the tree */mxLevel8303,402117 - int mxLevel; /* The largest iLevel value in the tree */sqlite3_rtree_query_info::mxLevel8303,402117 - sqlite3_int64 iRowid; /* Rowid for current entry */iRowid8304,402196 - sqlite3_int64 iRowid; /* Rowid for current entry */sqlite3_rtree_query_info::iRowid8304,402196 - sqlite3_rtree_dbl rParentScore; /* Score of parent node */rParentScore8305,402262 - sqlite3_rtree_dbl rParentScore; /* Score of parent node */sqlite3_rtree_query_info::rParentScore8305,402262 - int eParentWithin; /* Visibility of parent node */eParentWithin8306,402325 - int eParentWithin; /* Visibility of parent node */sqlite3_rtree_query_info::eParentWithin8306,402325 - int eWithin; /* OUT: Visiblity */eWithin8307,402393 - int eWithin; /* OUT: Visiblity */sqlite3_rtree_query_info::eWithin8307,402393 - sqlite3_rtree_dbl rScore; /* OUT: Write the score here */rScore8308,402450 - sqlite3_rtree_dbl rScore; /* OUT: Write the score here */sqlite3_rtree_query_info::rScore8308,402450 - sqlite3_value **apSqlParam; /* Original SQL values of parameters */apSqlParam8310,402586 - sqlite3_value **apSqlParam; /* Original SQL values of parameters */sqlite3_rtree_query_info::apSqlParam8310,402586 -#define NOT_WITHIN NOT_WITHIN8316,402742 -#define PARTLY_WITHIN PARTLY_WITHIN8317,402819 -#define FULLY_WITHIN FULLY_WITHIN8318,402893 -#define __SQLITESESSION_H_ __SQLITESESSION_H_8331,403238 -typedef struct sqlite3_session sqlite3_session;sqlite3_session8344,403402 -typedef struct sqlite3_changeset_iter sqlite3_changeset_iter;sqlite3_changeset_iter8349,403496 -typedef struct sqlite3_changegroup sqlite3_changegroup;sqlite3_changegroup9059,436010 -#define SQLITE_CHANGESET_DATA SQLITE_CHANGESET_DATA9413,453522 -#define SQLITE_CHANGESET_NOTFOUND SQLITE_CHANGESET_NOTFOUND9414,453561 -#define SQLITE_CHANGESET_CONFLICT SQLITE_CHANGESET_CONFLICT9415,453600 -#define SQLITE_CHANGESET_CONSTRAINT SQLITE_CHANGESET_CONSTRAINT9416,453639 -#define SQLITE_CHANGESET_FOREIGN_KEY SQLITE_CHANGESET_FOREIGN_KEY9417,453678 -#define SQLITE_CHANGESET_OMIT SQLITE_CHANGESET_OMIT9450,455115 -#define SQLITE_CHANGESET_REPLACE SQLITE_CHANGESET_REPLACE9451,455153 -#define SQLITE_CHANGESET_ABORT SQLITE_CHANGESET_ABORT9452,455191 -#define _FTS5_H_FTS5_H9629,462144 -typedef struct Fts5ExtensionApi Fts5ExtensionApi;Fts5ExtensionApi9643,462436 -typedef struct Fts5Context Fts5Context;Fts5Context9644,462486 -typedef struct Fts5PhraseIter Fts5PhraseIter;Fts5PhraseIter9645,462526 -typedef void (*fts5_extension_function)(fts5_extension_function9647,462573 -struct Fts5PhraseIter {Fts5PhraseIter9655,462986 - const unsigned char *a;a9656,463010 - const unsigned char *a;Fts5PhraseIter::a9656,463010 - const unsigned char *b;b9657,463036 - const unsigned char *b;Fts5PhraseIter::b9657,463036 -struct Fts5ExtensionApi {Fts5ExtensionApi9875,472697 - int iVersion; /* Currently always set to 3 */iVersion9876,472723 - int iVersion; /* Currently always set to 3 */Fts5ExtensionApi::iVersion9876,472723 - void *(*xUserData)(Fts5Context*);xUserData9878,472790 - void *(*xUserData)(Fts5Context*);Fts5ExtensionApi::xUserData9878,472790 - int (*xColumnCount)(Fts5Context*);xColumnCount9880,472827 - int (*xColumnCount)(Fts5Context*);Fts5ExtensionApi::xColumnCount9880,472827 - int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);xRowCount9881,472864 - int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow);Fts5ExtensionApi::xRowCount9881,472864 - int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken);xColumnTotalSize9882,472920 - int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken);Fts5ExtensionApi::xColumnTotalSize9882,472920 - int (*xTokenize)(Fts5Context*, xTokenize9884,472996 - int (*xTokenize)(Fts5Context*, Fts5ExtensionApi::xTokenize9884,472996 - int (*xPhraseCount)(Fts5Context*);xPhraseCount9890,473239 - int (*xPhraseCount)(Fts5Context*);Fts5ExtensionApi::xPhraseCount9890,473239 - int (*xPhraseSize)(Fts5Context*, int iPhrase);xPhraseSize9891,473276 - int (*xPhraseSize)(Fts5Context*, int iPhrase);Fts5ExtensionApi::xPhraseSize9891,473276 - int (*xInstCount)(Fts5Context*, int *pnInst);xInstCount9893,473326 - int (*xInstCount)(Fts5Context*, int *pnInst);Fts5ExtensionApi::xInstCount9893,473326 - int (*xInst)(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff);xInst9894,473374 - int (*xInst)(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff);Fts5ExtensionApi::xInst9894,473374 - sqlite3_int64 (*xRowid)(Fts5Context*);xRowid9896,473454 - sqlite3_int64 (*xRowid)(Fts5Context*);Fts5ExtensionApi::xRowid9896,473454 - int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);xColumnText9897,473495 - int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn);Fts5ExtensionApi::xColumnText9897,473495 - int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken);xColumnSize9898,473567 - int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken);Fts5ExtensionApi::xColumnSize9898,473567 - int (*xQueryPhrase)(Fts5Context*, int iPhrase, void *pUserData,xQueryPhrase9900,473628 - int (*xQueryPhrase)(Fts5Context*, int iPhrase, void *pUserData,Fts5ExtensionApi::xQueryPhrase9900,473628 - int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*));xSetAuxdata9903,473754 - int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*));Fts5ExtensionApi::xSetAuxdata9903,473754 - void *(*xGetAuxdata)(Fts5Context*, int bClear);xGetAuxdata9904,473825 - void *(*xGetAuxdata)(Fts5Context*, int bClear);Fts5ExtensionApi::xGetAuxdata9904,473825 - int (*xPhraseFirst)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*);xPhraseFirst9906,473876 - int (*xPhraseFirst)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*);Fts5ExtensionApi::xPhraseFirst9906,473876 - void (*xPhraseNext)(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff);xPhraseNext9907,473955 - void (*xPhraseNext)(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff);Fts5ExtensionApi::xPhraseNext9907,473955 - int (*xPhraseFirstColumn)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*);xPhraseFirstColumn9909,474034 - int (*xPhraseFirstColumn)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*);Fts5ExtensionApi::xPhraseFirstColumn9909,474034 - void (*xPhraseNextColumn)(Fts5Context*, Fts5PhraseIter*, int *piCol);xPhraseNextColumn9910,474113 - void (*xPhraseNextColumn)(Fts5Context*, Fts5PhraseIter*, int *piCol);Fts5ExtensionApi::xPhraseNextColumn9910,474113 -typedef struct Fts5Tokenizer Fts5Tokenizer;Fts5Tokenizer10109,484413 -typedef struct fts5_tokenizer fts5_tokenizer;fts5_tokenizer10110,484457 -struct fts5_tokenizer {fts5_tokenizer10111,484503 - int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut);xCreate10112,484527 - int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut);fts5_tokenizer::xCreate10112,484527 - void (*xDelete)(Fts5Tokenizer*);xDelete10113,484605 - void (*xDelete)(Fts5Tokenizer*);fts5_tokenizer::xDelete10113,484605 - int (*xTokenize)(Fts5Tokenizer*, xTokenize10114,484640 - int (*xTokenize)(Fts5Tokenizer*, fts5_tokenizer::xTokenize10114,484640 -#define FTS5_TOKENIZE_QUERY FTS5_TOKENIZE_QUERY10130,485311 -#define FTS5_TOKENIZE_PREFIX FTS5_TOKENIZE_PREFIX10131,485350 -#define FTS5_TOKENIZE_DOCUMENT FTS5_TOKENIZE_DOCUMENT10132,485389 -#define FTS5_TOKENIZE_AUX FTS5_TOKENIZE_AUX10133,485428 -#define FTS5_TOKEN_COLOCATED FTS5_TOKEN_COLOCATED10137,485602 -typedef struct fts5_api fts5_api;fts5_api10146,485902 -struct fts5_api {fts5_api10147,485936 - int iVersion; /* Currently always set to 2 */iVersion10148,485954 - int iVersion; /* Currently always set to 2 */fts5_api::iVersion10148,485954 - int (*xCreateTokenizer)(xCreateTokenizer10151,486052 - int (*xCreateTokenizer)(fts5_api::xCreateTokenizer10151,486052 - int (*xFindTokenizer)(xFindTokenizer10160,486243 - int (*xFindTokenizer)(fts5_api::xFindTokenizer10160,486243 - int (*xCreateFunction)(xCreateFunction10168,486410 - int (*xCreateFunction)(fts5_api::xCreateFunction10168,486410 - -packages/myddas/sqlite3/src/sqlite3ext.h,49143 -#define _SQLITE3EXT_H__SQLITE3EXT_H_19,664 -typedef struct sqlite3_api_routines sqlite3_api_routines;sqlite3_api_routines22,709 -struct sqlite3_api_routines {sqlite3_api_routines34,1141 - void * (*aggregate_context)(sqlite3_context*,int nBytes);aggregate_context35,1171 - void * (*aggregate_context)(sqlite3_context*,int nBytes);sqlite3_api_routines::aggregate_context35,1171 - int (*aggregate_count)(sqlite3_context*);aggregate_count36,1231 - int (*aggregate_count)(sqlite3_context*);sqlite3_api_routines::aggregate_count36,1231 - int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));bind_blob37,1276 - int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));sqlite3_api_routines::bind_blob37,1276 - int (*bind_double)(sqlite3_stmt*,int,double);bind_double38,1349 - int (*bind_double)(sqlite3_stmt*,int,double);sqlite3_api_routines::bind_double38,1349 - int (*bind_int)(sqlite3_stmt*,int,int);bind_int39,1398 - int (*bind_int)(sqlite3_stmt*,int,int);sqlite3_api_routines::bind_int39,1398 - int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);bind_int6440,1441 - int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);sqlite3_api_routines::bind_int6440,1441 - int (*bind_null)(sqlite3_stmt*,int);bind_null41,1495 - int (*bind_null)(sqlite3_stmt*,int);sqlite3_api_routines::bind_null41,1495 - int (*bind_parameter_count)(sqlite3_stmt*);bind_parameter_count42,1535 - int (*bind_parameter_count)(sqlite3_stmt*);sqlite3_api_routines::bind_parameter_count42,1535 - int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);bind_parameter_index43,1582 - int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);sqlite3_api_routines::bind_parameter_index43,1582 - const char * (*bind_parameter_name)(sqlite3_stmt*,int);bind_parameter_name44,1646 - const char * (*bind_parameter_name)(sqlite3_stmt*,int);sqlite3_api_routines::bind_parameter_name44,1646 - int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));bind_text45,1704 - int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));sqlite3_api_routines::bind_text45,1704 - int (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*));bind_text1646,1777 - int (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*));sqlite3_api_routines::bind_text1646,1777 - int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*);bind_value47,1850 - int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*);sqlite3_api_routines::bind_value47,1850 - int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);busy_handler48,1912 - int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);sqlite3_api_routines::busy_handler48,1912 - int (*busy_timeout)(sqlite3*,int ms);busy_timeout49,1970 - int (*busy_timeout)(sqlite3*,int ms);sqlite3_api_routines::busy_timeout49,1970 - int (*changes)(sqlite3*);changes50,2011 - int (*changes)(sqlite3*);sqlite3_api_routines::changes50,2011 - int (*close)(sqlite3*);close51,2040 - int (*close)(sqlite3*);sqlite3_api_routines::close51,2040 - int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,collation_needed52,2067 - int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,sqlite3_api_routines::collation_needed52,2067 - int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,collation_needed1654,2188 - int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,sqlite3_api_routines::collation_needed1654,2188 - const void * (*column_blob)(sqlite3_stmt*,int iCol);column_blob56,2313 - const void * (*column_blob)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_blob56,2313 - int (*column_bytes)(sqlite3_stmt*,int iCol);column_bytes57,2368 - int (*column_bytes)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_bytes57,2368 - int (*column_bytes16)(sqlite3_stmt*,int iCol);column_bytes1658,2416 - int (*column_bytes16)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_bytes1658,2416 - int (*column_count)(sqlite3_stmt*pStmt);column_count59,2466 - int (*column_count)(sqlite3_stmt*pStmt);sqlite3_api_routines::column_count59,2466 - const char * (*column_database_name)(sqlite3_stmt*,int);column_database_name60,2510 - const char * (*column_database_name)(sqlite3_stmt*,int);sqlite3_api_routines::column_database_name60,2510 - const void * (*column_database_name16)(sqlite3_stmt*,int);column_database_name1661,2569 - const void * (*column_database_name16)(sqlite3_stmt*,int);sqlite3_api_routines::column_database_name1661,2569 - const char * (*column_decltype)(sqlite3_stmt*,int i);column_decltype62,2630 - const char * (*column_decltype)(sqlite3_stmt*,int i);sqlite3_api_routines::column_decltype62,2630 - const void * (*column_decltype16)(sqlite3_stmt*,int);column_decltype1663,2686 - const void * (*column_decltype16)(sqlite3_stmt*,int);sqlite3_api_routines::column_decltype1663,2686 - double (*column_double)(sqlite3_stmt*,int iCol);column_double64,2742 - double (*column_double)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_double64,2742 - int (*column_int)(sqlite3_stmt*,int iCol);column_int65,2794 - int (*column_int)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_int65,2794 - sqlite_int64 (*column_int64)(sqlite3_stmt*,int iCol);column_int6466,2840 - sqlite_int64 (*column_int64)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_int6466,2840 - const char * (*column_name)(sqlite3_stmt*,int);column_name67,2897 - const char * (*column_name)(sqlite3_stmt*,int);sqlite3_api_routines::column_name67,2897 - const void * (*column_name16)(sqlite3_stmt*,int);column_name1668,2947 - const void * (*column_name16)(sqlite3_stmt*,int);sqlite3_api_routines::column_name1668,2947 - const char * (*column_origin_name)(sqlite3_stmt*,int);column_origin_name69,2999 - const char * (*column_origin_name)(sqlite3_stmt*,int);sqlite3_api_routines::column_origin_name69,2999 - const void * (*column_origin_name16)(sqlite3_stmt*,int);column_origin_name1670,3056 - const void * (*column_origin_name16)(sqlite3_stmt*,int);sqlite3_api_routines::column_origin_name1670,3056 - const char * (*column_table_name)(sqlite3_stmt*,int);column_table_name71,3115 - const char * (*column_table_name)(sqlite3_stmt*,int);sqlite3_api_routines::column_table_name71,3115 - const void * (*column_table_name16)(sqlite3_stmt*,int);column_table_name1672,3171 - const void * (*column_table_name16)(sqlite3_stmt*,int);sqlite3_api_routines::column_table_name1672,3171 - const unsigned char * (*column_text)(sqlite3_stmt*,int iCol);column_text73,3229 - const unsigned char * (*column_text)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_text73,3229 - const void * (*column_text16)(sqlite3_stmt*,int iCol);column_text1674,3293 - const void * (*column_text16)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_text1674,3293 - int (*column_type)(sqlite3_stmt*,int iCol);column_type75,3350 - int (*column_type)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_type75,3350 - sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol);column_value76,3397 - sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol);sqlite3_api_routines::column_value76,3397 - void * (*commit_hook)(sqlite3*,int(*)(void*),void*);commit_hook77,3455 - void * (*commit_hook)(sqlite3*,int(*)(void*),void*);sqlite3_api_routines::commit_hook77,3455 - int (*complete)(const char*sql);complete78,3510 - int (*complete)(const char*sql);sqlite3_api_routines::complete78,3510 - int (*complete16)(const void*sql);complete1679,3546 - int (*complete16)(const void*sql);sqlite3_api_routines::complete1679,3546 - int (*create_collation)(sqlite3*,const char*,int,void*,create_collation80,3584 - int (*create_collation)(sqlite3*,const char*,int,void*,sqlite3_api_routines::create_collation80,3584 - int (*create_collation16)(sqlite3*,const void*,int,void*,create_collation1682,3718 - int (*create_collation16)(sqlite3*,const void*,int,void*,sqlite3_api_routines::create_collation1682,3718 - int (*create_function)(sqlite3*,const char*,int,int,void*,create_function84,3856 - int (*create_function)(sqlite3*,const char*,int,int,void*,sqlite3_api_routines::create_function84,3856 - int (*create_function16)(sqlite3*,const void*,int,int,void*,create_function1688,4137 - int (*create_function16)(sqlite3*,const void*,int,int,void*,sqlite3_api_routines::create_function1688,4137 - int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*);create_module92,4426 - int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*);sqlite3_api_routines::create_module92,4426 - int (*data_count)(sqlite3_stmt*pStmt);data_count93,4500 - int (*data_count)(sqlite3_stmt*pStmt);sqlite3_api_routines::data_count93,4500 - sqlite3 * (*db_handle)(sqlite3_stmt*);db_handle94,4542 - sqlite3 * (*db_handle)(sqlite3_stmt*);sqlite3_api_routines::db_handle94,4542 - int (*declare_vtab)(sqlite3*,const char*);declare_vtab95,4583 - int (*declare_vtab)(sqlite3*,const char*);sqlite3_api_routines::declare_vtab95,4583 - int (*enable_shared_cache)(int);enable_shared_cache96,4628 - int (*enable_shared_cache)(int);sqlite3_api_routines::enable_shared_cache96,4628 - int (*errcode)(sqlite3*db);errcode97,4664 - int (*errcode)(sqlite3*db);sqlite3_api_routines::errcode97,4664 - const char * (*errmsg)(sqlite3*);errmsg98,4695 - const char * (*errmsg)(sqlite3*);sqlite3_api_routines::errmsg98,4695 - const void * (*errmsg16)(sqlite3*);errmsg1699,4731 - const void * (*errmsg16)(sqlite3*);sqlite3_api_routines::errmsg1699,4731 - int (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**);exec100,4769 - int (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**);sqlite3_api_routines::exec100,4769 - int (*expired)(sqlite3_stmt*);expired101,4837 - int (*expired)(sqlite3_stmt*);sqlite3_api_routines::expired101,4837 - int (*finalize)(sqlite3_stmt*pStmt);finalize102,4871 - int (*finalize)(sqlite3_stmt*pStmt);sqlite3_api_routines::finalize102,4871 - void (*free)(void*);free103,4911 - void (*free)(void*);sqlite3_api_routines::free103,4911 - void (*free_table)(char**result);free_table104,4935 - void (*free_table)(char**result);sqlite3_api_routines::free_table104,4935 - int (*get_autocommit)(sqlite3*);get_autocommit105,4972 - int (*get_autocommit)(sqlite3*);sqlite3_api_routines::get_autocommit105,4972 - void * (*get_auxdata)(sqlite3_context*,int);get_auxdata106,5008 - void * (*get_auxdata)(sqlite3_context*,int);sqlite3_api_routines::get_auxdata106,5008 - int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**);get_table107,5055 - int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**);sqlite3_api_routines::get_table107,5055 - int (*global_recover)(void);global_recover108,5123 - int (*global_recover)(void);sqlite3_api_routines::global_recover108,5123 - void (*interruptx)(sqlite3*);interruptx109,5155 - void (*interruptx)(sqlite3*);sqlite3_api_routines::interruptx109,5155 - sqlite_int64 (*last_insert_rowid)(sqlite3*);last_insert_rowid110,5188 - sqlite_int64 (*last_insert_rowid)(sqlite3*);sqlite3_api_routines::last_insert_rowid110,5188 - const char * (*libversion)(void);libversion111,5236 - const char * (*libversion)(void);sqlite3_api_routines::libversion111,5236 - int (*libversion_number)(void);libversion_number112,5272 - int (*libversion_number)(void);sqlite3_api_routines::libversion_number112,5272 - void *(*malloc)(int);malloc113,5307 - void *(*malloc)(int);sqlite3_api_routines::malloc113,5307 - char * (*mprintf)(const char*,...);mprintf114,5331 - char * (*mprintf)(const char*,...);sqlite3_api_routines::mprintf114,5331 - int (*open)(const char*,sqlite3**);open115,5369 - int (*open)(const char*,sqlite3**);sqlite3_api_routines::open115,5369 - int (*open16)(const void*,sqlite3**);open16116,5408 - int (*open16)(const void*,sqlite3**);sqlite3_api_routines::open16116,5408 - int (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);prepare117,5449 - int (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);sqlite3_api_routines::prepare117,5449 - int (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);prepare16118,5522 - int (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);sqlite3_api_routines::prepare16118,5522 - void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*);profile119,5597 - void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*);sqlite3_api_routines::profile119,5597 - void (*progress_handler)(sqlite3*,int,int(*)(void*),void*);progress_handler120,5675 - void (*progress_handler)(sqlite3*,int,int(*)(void*),void*);sqlite3_api_routines::progress_handler120,5675 - void *(*realloc)(void*,int);realloc121,5738 - void *(*realloc)(void*,int);sqlite3_api_routines::realloc121,5738 - int (*reset)(sqlite3_stmt*pStmt);reset122,5769 - int (*reset)(sqlite3_stmt*pStmt);sqlite3_api_routines::reset122,5769 - void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*));result_blob123,5806 - void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*));sqlite3_api_routines::result_blob123,5806 - void (*result_double)(sqlite3_context*,double);result_double124,5879 - void (*result_double)(sqlite3_context*,double);sqlite3_api_routines::result_double124,5879 - void (*result_error)(sqlite3_context*,const char*,int);result_error125,5930 - void (*result_error)(sqlite3_context*,const char*,int);sqlite3_api_routines::result_error125,5930 - void (*result_error16)(sqlite3_context*,const void*,int);result_error16126,5989 - void (*result_error16)(sqlite3_context*,const void*,int);sqlite3_api_routines::result_error16126,5989 - void (*result_int)(sqlite3_context*,int);result_int127,6050 - void (*result_int)(sqlite3_context*,int);sqlite3_api_routines::result_int127,6050 - void (*result_int64)(sqlite3_context*,sqlite_int64);result_int64128,6095 - void (*result_int64)(sqlite3_context*,sqlite_int64);sqlite3_api_routines::result_int64128,6095 - void (*result_null)(sqlite3_context*);result_null129,6151 - void (*result_null)(sqlite3_context*);sqlite3_api_routines::result_null129,6151 - void (*result_text)(sqlite3_context*,const char*,int,void(*)(void*));result_text130,6193 - void (*result_text)(sqlite3_context*,const char*,int,void(*)(void*));sqlite3_api_routines::result_text130,6193 - void (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*));result_text16131,6266 - void (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*));sqlite3_api_routines::result_text16131,6266 - void (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*));result_text16be132,6341 - void (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*));sqlite3_api_routines::result_text16be132,6341 - void (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*));result_text16le133,6418 - void (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*));sqlite3_api_routines::result_text16le133,6418 - void (*result_value)(sqlite3_context*,sqlite3_value*);result_value134,6495 - void (*result_value)(sqlite3_context*,sqlite3_value*);sqlite3_api_routines::result_value134,6495 - void * (*rollback_hook)(sqlite3*,void(*)(void*),void*);rollback_hook135,6553 - void * (*rollback_hook)(sqlite3*,void(*)(void*),void*);sqlite3_api_routines::rollback_hook135,6553 - int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*,set_authorizer136,6611 - int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*,sqlite3_api_routines::set_authorizer136,6611 - void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*));set_auxdata138,6745 - void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*));sqlite3_api_routines::set_auxdata138,6745 - char * (*snprintf)(int,char*,const char*,...);snprintf139,6813 - char * (*snprintf)(int,char*,const char*,...);sqlite3_api_routines::snprintf139,6813 - int (*step)(sqlite3_stmt*);step140,6862 - int (*step)(sqlite3_stmt*);sqlite3_api_routines::step140,6862 - int (*table_column_metadata)(sqlite3*,const char*,const char*,const char*,table_column_metadata141,6893 - int (*table_column_metadata)(sqlite3*,const char*,const char*,const char*,sqlite3_api_routines::table_column_metadata141,6893 - void (*thread_cleanup)(void);thread_cleanup143,7046 - void (*thread_cleanup)(void);sqlite3_api_routines::thread_cleanup143,7046 - int (*total_changes)(sqlite3*);total_changes144,7079 - int (*total_changes)(sqlite3*);sqlite3_api_routines::total_changes144,7079 - void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*);trace145,7114 - void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*);sqlite3_api_routines::trace145,7114 - int (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*);transfer_bindings146,7182 - int (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*);sqlite3_api_routines::transfer_bindings146,7182 - void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*,update_hook147,7240 - void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*,sqlite3_api_routines::update_hook147,7240 - void * (*user_data)(sqlite3_context*);user_data149,7380 - void * (*user_data)(sqlite3_context*);sqlite3_api_routines::user_data149,7380 - const void * (*value_blob)(sqlite3_value*);value_blob150,7421 - const void * (*value_blob)(sqlite3_value*);sqlite3_api_routines::value_blob150,7421 - int (*value_bytes)(sqlite3_value*);value_bytes151,7467 - int (*value_bytes)(sqlite3_value*);sqlite3_api_routines::value_bytes151,7467 - int (*value_bytes16)(sqlite3_value*);value_bytes16152,7506 - int (*value_bytes16)(sqlite3_value*);sqlite3_api_routines::value_bytes16152,7506 - double (*value_double)(sqlite3_value*);value_double153,7547 - double (*value_double)(sqlite3_value*);sqlite3_api_routines::value_double153,7547 - int (*value_int)(sqlite3_value*);value_int154,7590 - int (*value_int)(sqlite3_value*);sqlite3_api_routines::value_int154,7590 - sqlite_int64 (*value_int64)(sqlite3_value*);value_int64155,7627 - sqlite_int64 (*value_int64)(sqlite3_value*);sqlite3_api_routines::value_int64155,7627 - int (*value_numeric_type)(sqlite3_value*);value_numeric_type156,7675 - int (*value_numeric_type)(sqlite3_value*);sqlite3_api_routines::value_numeric_type156,7675 - const unsigned char * (*value_text)(sqlite3_value*);value_text157,7721 - const unsigned char * (*value_text)(sqlite3_value*);sqlite3_api_routines::value_text157,7721 - const void * (*value_text16)(sqlite3_value*);value_text16158,7776 - const void * (*value_text16)(sqlite3_value*);sqlite3_api_routines::value_text16158,7776 - const void * (*value_text16be)(sqlite3_value*);value_text16be159,7824 - const void * (*value_text16be)(sqlite3_value*);sqlite3_api_routines::value_text16be159,7824 - const void * (*value_text16le)(sqlite3_value*);value_text16le160,7874 - const void * (*value_text16le)(sqlite3_value*);sqlite3_api_routines::value_text16le160,7874 - int (*value_type)(sqlite3_value*);value_type161,7924 - int (*value_type)(sqlite3_value*);sqlite3_api_routines::value_type161,7924 - char *(*vmprintf)(const char*,va_list);vmprintf162,7962 - char *(*vmprintf)(const char*,va_list);sqlite3_api_routines::vmprintf162,7962 - int (*overload_function)(sqlite3*, const char *zFuncName, int nArg);overload_function164,8022 - int (*overload_function)(sqlite3*, const char *zFuncName, int nArg);sqlite3_api_routines::overload_function164,8022 - int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);prepare_v2166,8117 - int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);sqlite3_api_routines::prepare_v2166,8117 - int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);prepare16_v2167,8192 - int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);sqlite3_api_routines::prepare16_v2167,8192 - int (*clear_bindings)(sqlite3_stmt*);clear_bindings168,8269 - int (*clear_bindings)(sqlite3_stmt*);sqlite3_api_routines::clear_bindings168,8269 - int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,create_module_v2170,8332 - int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,sqlite3_api_routines::create_module_v2170,8332 - int (*bind_zeroblob)(sqlite3_stmt*,int,int);bind_zeroblob173,8484 - int (*bind_zeroblob)(sqlite3_stmt*,int,int);sqlite3_api_routines::bind_zeroblob173,8484 - int (*blob_bytes)(sqlite3_blob*);blob_bytes174,8531 - int (*blob_bytes)(sqlite3_blob*);sqlite3_api_routines::blob_bytes174,8531 - int (*blob_close)(sqlite3_blob*);blob_close175,8567 - int (*blob_close)(sqlite3_blob*);sqlite3_api_routines::blob_close175,8567 - int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64,blob_open176,8603 - int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64,sqlite3_api_routines::blob_open176,8603 - int (*blob_read)(sqlite3_blob*,void*,int,int);blob_read178,8722 - int (*blob_read)(sqlite3_blob*,void*,int,int);sqlite3_api_routines::blob_read178,8722 - int (*blob_write)(sqlite3_blob*,const void*,int,int);blob_write179,8771 - int (*blob_write)(sqlite3_blob*,const void*,int,int);sqlite3_api_routines::blob_write179,8771 - int (*create_collation_v2)(sqlite3*,const char*,int,void*,create_collation_v2180,8827 - int (*create_collation_v2)(sqlite3*,const char*,int,void*,sqlite3_api_routines::create_collation_v2180,8827 - int (*file_control)(sqlite3*,const char*,int,void*);file_control183,9010 - int (*file_control)(sqlite3*,const char*,int,void*);sqlite3_api_routines::file_control183,9010 - sqlite3_int64 (*memory_highwater)(int);memory_highwater184,9065 - sqlite3_int64 (*memory_highwater)(int);sqlite3_api_routines::memory_highwater184,9065 - sqlite3_int64 (*memory_used)(void);memory_used185,9107 - sqlite3_int64 (*memory_used)(void);sqlite3_api_routines::memory_used185,9107 - sqlite3_mutex *(*mutex_alloc)(int);mutex_alloc186,9145 - sqlite3_mutex *(*mutex_alloc)(int);sqlite3_api_routines::mutex_alloc186,9145 - void (*mutex_enter)(sqlite3_mutex*);mutex_enter187,9183 - void (*mutex_enter)(sqlite3_mutex*);sqlite3_api_routines::mutex_enter187,9183 - void (*mutex_free)(sqlite3_mutex*);mutex_free188,9222 - void (*mutex_free)(sqlite3_mutex*);sqlite3_api_routines::mutex_free188,9222 - void (*mutex_leave)(sqlite3_mutex*);mutex_leave189,9260 - void (*mutex_leave)(sqlite3_mutex*);sqlite3_api_routines::mutex_leave189,9260 - int (*mutex_try)(sqlite3_mutex*);mutex_try190,9299 - int (*mutex_try)(sqlite3_mutex*);sqlite3_api_routines::mutex_try190,9299 - int (*open_v2)(const char*,sqlite3**,int,const char*);open_v2191,9335 - int (*open_v2)(const char*,sqlite3**,int,const char*);sqlite3_api_routines::open_v2191,9335 - int (*release_memory)(int);release_memory192,9392 - int (*release_memory)(int);sqlite3_api_routines::release_memory192,9392 - void (*result_error_nomem)(sqlite3_context*);result_error_nomem193,9422 - void (*result_error_nomem)(sqlite3_context*);sqlite3_api_routines::result_error_nomem193,9422 - void (*result_error_toobig)(sqlite3_context*);result_error_toobig194,9470 - void (*result_error_toobig)(sqlite3_context*);sqlite3_api_routines::result_error_toobig194,9470 - int (*sleep)(int);sleep195,9519 - int (*sleep)(int);sqlite3_api_routines::sleep195,9519 - void (*soft_heap_limit)(int);soft_heap_limit196,9540 - void (*soft_heap_limit)(int);sqlite3_api_routines::soft_heap_limit196,9540 - sqlite3_vfs *(*vfs_find)(const char*);vfs_find197,9572 - sqlite3_vfs *(*vfs_find)(const char*);sqlite3_api_routines::vfs_find197,9572 - int (*vfs_register)(sqlite3_vfs*,int);vfs_register198,9613 - int (*vfs_register)(sqlite3_vfs*,int);sqlite3_api_routines::vfs_register198,9613 - int (*vfs_unregister)(sqlite3_vfs*);vfs_unregister199,9654 - int (*vfs_unregister)(sqlite3_vfs*);sqlite3_api_routines::vfs_unregister199,9654 - int (*xthreadsafe)(void);xthreadsafe200,9693 - int (*xthreadsafe)(void);sqlite3_api_routines::xthreadsafe200,9693 - void (*result_zeroblob)(sqlite3_context*,int);result_zeroblob201,9721 - void (*result_zeroblob)(sqlite3_context*,int);sqlite3_api_routines::result_zeroblob201,9721 - void (*result_error_code)(sqlite3_context*,int);result_error_code202,9770 - void (*result_error_code)(sqlite3_context*,int);sqlite3_api_routines::result_error_code202,9770 - int (*test_control)(int, ...);test_control203,9821 - int (*test_control)(int, ...);sqlite3_api_routines::test_control203,9821 - void (*randomness)(int,void*);randomness204,9854 - void (*randomness)(int,void*);sqlite3_api_routines::randomness204,9854 - sqlite3 *(*context_db_handle)(sqlite3_context*);context_db_handle205,9887 - sqlite3 *(*context_db_handle)(sqlite3_context*);sqlite3_api_routines::context_db_handle205,9887 - int (*extended_result_codes)(sqlite3*,int);extended_result_codes206,9938 - int (*extended_result_codes)(sqlite3*,int);sqlite3_api_routines::extended_result_codes206,9938 - int (*limit)(sqlite3*,int,int);limit207,9984 - int (*limit)(sqlite3*,int,int);sqlite3_api_routines::limit207,9984 - sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*);next_stmt208,10018 - sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*);sqlite3_api_routines::next_stmt208,10018 - const char *(*sql)(sqlite3_stmt*);sql209,10072 - const char *(*sql)(sqlite3_stmt*);sqlite3_api_routines::sql209,10072 - int (*status)(int,int*,int*,int);status210,10109 - int (*status)(int,int*,int*,int);sqlite3_api_routines::status210,10109 - int (*backup_finish)(sqlite3_backup*);backup_finish211,10145 - int (*backup_finish)(sqlite3_backup*);sqlite3_api_routines::backup_finish211,10145 - sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*);backup_init212,10186 - sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*);sqlite3_api_routines::backup_init212,10186 - int (*backup_pagecount)(sqlite3_backup*);backup_pagecount213,10263 - int (*backup_pagecount)(sqlite3_backup*);sqlite3_api_routines::backup_pagecount213,10263 - int (*backup_remaining)(sqlite3_backup*);backup_remaining214,10307 - int (*backup_remaining)(sqlite3_backup*);sqlite3_api_routines::backup_remaining214,10307 - int (*backup_step)(sqlite3_backup*,int);backup_step215,10351 - int (*backup_step)(sqlite3_backup*,int);sqlite3_api_routines::backup_step215,10351 - const char *(*compileoption_get)(int);compileoption_get216,10394 - const char *(*compileoption_get)(int);sqlite3_api_routines::compileoption_get216,10394 - int (*compileoption_used)(const char*);compileoption_used217,10435 - int (*compileoption_used)(const char*);sqlite3_api_routines::compileoption_used217,10435 - int (*create_function_v2)(sqlite3*,const char*,int,int,void*,create_function_v2218,10477 - int (*create_function_v2)(sqlite3*,const char*,int,int,void*,sqlite3_api_routines::create_function_v2218,10477 - int (*db_config)(sqlite3*,int,...);db_config223,10818 - int (*db_config)(sqlite3*,int,...);sqlite3_api_routines::db_config223,10818 - sqlite3_mutex *(*db_mutex)(sqlite3*);db_mutex224,10856 - sqlite3_mutex *(*db_mutex)(sqlite3*);sqlite3_api_routines::db_mutex224,10856 - int (*db_status)(sqlite3*,int,int*,int*,int);db_status225,10896 - int (*db_status)(sqlite3*,int,int*,int*,int);sqlite3_api_routines::db_status225,10896 - int (*extended_errcode)(sqlite3*);extended_errcode226,10944 - int (*extended_errcode)(sqlite3*);sqlite3_api_routines::extended_errcode226,10944 - void (*log)(int,const char*,...);log227,10981 - void (*log)(int,const char*,...);sqlite3_api_routines::log227,10981 - sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64);soft_heap_limit64228,11017 - sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64);sqlite3_api_routines::soft_heap_limit64228,11017 - const char *(*sourceid)(void);sourceid229,11070 - const char *(*sourceid)(void);sqlite3_api_routines::sourceid229,11070 - int (*stmt_status)(sqlite3_stmt*,int,int);stmt_status230,11103 - int (*stmt_status)(sqlite3_stmt*,int,int);sqlite3_api_routines::stmt_status230,11103 - int (*strnicmp)(const char*,const char*,int);strnicmp231,11148 - int (*strnicmp)(const char*,const char*,int);sqlite3_api_routines::strnicmp231,11148 - int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*);unlock_notify232,11196 - int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*);sqlite3_api_routines::unlock_notify232,11196 - int (*wal_autocheckpoint)(sqlite3*,int);wal_autocheckpoint233,11256 - int (*wal_autocheckpoint)(sqlite3*,int);sqlite3_api_routines::wal_autocheckpoint233,11256 - int (*wal_checkpoint)(sqlite3*,const char*);wal_checkpoint234,11299 - int (*wal_checkpoint)(sqlite3*,const char*);sqlite3_api_routines::wal_checkpoint234,11299 - void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*);wal_hook235,11346 - void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*);sqlite3_api_routines::wal_hook235,11346 - int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);blob_reopen236,11422 - int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);sqlite3_api_routines::blob_reopen236,11422 - int (*vtab_config)(sqlite3*,int op,...);vtab_config237,11473 - int (*vtab_config)(sqlite3*,int op,...);sqlite3_api_routines::vtab_config237,11473 - int (*vtab_on_conflict)(sqlite3*);vtab_on_conflict238,11516 - int (*vtab_on_conflict)(sqlite3*);sqlite3_api_routines::vtab_on_conflict238,11516 - int (*close_v2)(sqlite3*);close_v2240,11586 - int (*close_v2)(sqlite3*);sqlite3_api_routines::close_v2240,11586 - const char *(*db_filename)(sqlite3*,const char*);db_filename241,11615 - const char *(*db_filename)(sqlite3*,const char*);sqlite3_api_routines::db_filename241,11615 - int (*db_readonly)(sqlite3*,const char*);db_readonly242,11667 - int (*db_readonly)(sqlite3*,const char*);sqlite3_api_routines::db_readonly242,11667 - int (*db_release_memory)(sqlite3*);db_release_memory243,11711 - int (*db_release_memory)(sqlite3*);sqlite3_api_routines::db_release_memory243,11711 - const char *(*errstr)(int);errstr244,11749 - const char *(*errstr)(int);sqlite3_api_routines::errstr244,11749 - int (*stmt_busy)(sqlite3_stmt*);stmt_busy245,11779 - int (*stmt_busy)(sqlite3_stmt*);sqlite3_api_routines::stmt_busy245,11779 - int (*stmt_readonly)(sqlite3_stmt*);stmt_readonly246,11814 - int (*stmt_readonly)(sqlite3_stmt*);sqlite3_api_routines::stmt_readonly246,11814 - int (*stricmp)(const char*,const char*);stricmp247,11853 - int (*stricmp)(const char*,const char*);sqlite3_api_routines::stricmp247,11853 - int (*uri_boolean)(const char*,const char*,int);uri_boolean248,11896 - int (*uri_boolean)(const char*,const char*,int);sqlite3_api_routines::uri_boolean248,11896 - sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64);uri_int64249,11947 - sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64);sqlite3_api_routines::uri_int64249,11947 - const char *(*uri_parameter)(const char*,const char*);uri_parameter250,12016 - const char *(*uri_parameter)(const char*,const char*);sqlite3_api_routines::uri_parameter250,12016 - char *(*vsnprintf)(int,char*,const char*,va_list);vsnprintf251,12073 - char *(*vsnprintf)(int,char*,const char*,va_list);sqlite3_api_routines::vsnprintf251,12073 - int (*wal_checkpoint_v2)(sqlite3*,const char*,int,int*,int*);wal_checkpoint_v2252,12126 - int (*wal_checkpoint_v2)(sqlite3*,const char*,int,int*,int*);sqlite3_api_routines::wal_checkpoint_v2252,12126 - int (*auto_extension)(void(*)(void));auto_extension254,12222 - int (*auto_extension)(void(*)(void));sqlite3_api_routines::auto_extension254,12222 - int (*bind_blob64)(sqlite3_stmt*,int,const void*,sqlite3_uint64,bind_blob64255,12262 - int (*bind_blob64)(sqlite3_stmt*,int,const void*,sqlite3_uint64,sqlite3_api_routines::bind_blob64255,12262 - int (*bind_text64)(sqlite3_stmt*,int,const char*,sqlite3_uint64,bind_text64257,12367 - int (*bind_text64)(sqlite3_stmt*,int,const char*,sqlite3_uint64,sqlite3_api_routines::bind_text64257,12367 - int (*cancel_auto_extension)(void(*)(void));cancel_auto_extension259,12487 - int (*cancel_auto_extension)(void(*)(void));sqlite3_api_routines::cancel_auto_extension259,12487 - int (*load_extension)(sqlite3*,const char*,const char*,char**);load_extension260,12534 - int (*load_extension)(sqlite3*,const char*,const char*,char**);sqlite3_api_routines::load_extension260,12534 - void *(*malloc64)(sqlite3_uint64);malloc64261,12600 - void *(*malloc64)(sqlite3_uint64);sqlite3_api_routines::malloc64261,12600 - sqlite3_uint64 (*msize)(void*);msize262,12637 - sqlite3_uint64 (*msize)(void*);sqlite3_api_routines::msize262,12637 - void *(*realloc64)(void*,sqlite3_uint64);realloc64263,12671 - void *(*realloc64)(void*,sqlite3_uint64);sqlite3_api_routines::realloc64263,12671 - void (*reset_auto_extension)(void);reset_auto_extension264,12715 - void (*reset_auto_extension)(void);sqlite3_api_routines::reset_auto_extension264,12715 - void (*result_blob64)(sqlite3_context*,const void*,sqlite3_uint64,result_blob64265,12753 - void (*result_blob64)(sqlite3_context*,const void*,sqlite3_uint64,sqlite3_api_routines::result_blob64265,12753 - void (*result_text64)(sqlite3_context*,const char*,sqlite3_uint64,result_text64267,12863 - void (*result_text64)(sqlite3_context*,const char*,sqlite3_uint64,sqlite3_api_routines::result_text64267,12863 - int (*strglob)(const char*,const char*);strglob269,12989 - int (*strglob)(const char*,const char*);sqlite3_api_routines::strglob269,12989 - sqlite3_value *(*value_dup)(const sqlite3_value*);value_dup271,13065 - sqlite3_value *(*value_dup)(const sqlite3_value*);sqlite3_api_routines::value_dup271,13065 - void (*value_free)(sqlite3_value*);value_free272,13118 - void (*value_free)(sqlite3_value*);sqlite3_api_routines::value_free272,13118 - int (*result_zeroblob64)(sqlite3_context*,sqlite3_uint64);result_zeroblob64273,13156 - int (*result_zeroblob64)(sqlite3_context*,sqlite3_uint64);sqlite3_api_routines::result_zeroblob64273,13156 - int (*bind_zeroblob64)(sqlite3_stmt*, int, sqlite3_uint64);bind_zeroblob64274,13217 - int (*bind_zeroblob64)(sqlite3_stmt*, int, sqlite3_uint64);sqlite3_api_routines::bind_zeroblob64274,13217 - unsigned int (*value_subtype)(sqlite3_value*);value_subtype276,13311 - unsigned int (*value_subtype)(sqlite3_value*);sqlite3_api_routines::value_subtype276,13311 - void (*result_subtype)(sqlite3_context*,unsigned int);result_subtype277,13360 - void (*result_subtype)(sqlite3_context*,unsigned int);sqlite3_api_routines::result_subtype277,13360 - int (*status64)(int,sqlite3_int64*,sqlite3_int64*,int);status64279,13450 - int (*status64)(int,sqlite3_int64*,sqlite3_int64*,int);sqlite3_api_routines::status64279,13450 - int (*strlike)(const char*,const char*,unsigned int);strlike280,13508 - int (*strlike)(const char*,const char*,unsigned int);sqlite3_api_routines::strlike280,13508 - int (*db_cacheflush)(sqlite3*);db_cacheflush281,13564 - int (*db_cacheflush)(sqlite3*);sqlite3_api_routines::db_cacheflush281,13564 - int (*system_errno)(sqlite3*);system_errno283,13631 - int (*system_errno)(sqlite3*);sqlite3_api_routines::system_errno283,13631 -#define sqlite3_aggregate_context sqlite3_aggregate_context298,14212 -#define sqlite3_aggregate_count sqlite3_aggregate_count300,14313 -#define sqlite3_bind_blob sqlite3_bind_blob302,14388 -#define sqlite3_bind_double sqlite3_bind_double303,14450 -#define sqlite3_bind_int sqlite3_bind_int304,14514 -#define sqlite3_bind_int64 sqlite3_bind_int64305,14575 -#define sqlite3_bind_null sqlite3_bind_null306,14638 -#define sqlite3_bind_parameter_count sqlite3_bind_parameter_count307,14700 -#define sqlite3_bind_parameter_index sqlite3_bind_parameter_index308,14773 -#define sqlite3_bind_parameter_name sqlite3_bind_parameter_name309,14846 -#define sqlite3_bind_text sqlite3_bind_text310,14918 -#define sqlite3_bind_text16 sqlite3_bind_text16311,14980 -#define sqlite3_bind_value sqlite3_bind_value312,15044 -#define sqlite3_busy_handler sqlite3_busy_handler313,15107 -#define sqlite3_busy_timeout sqlite3_busy_timeout314,15172 -#define sqlite3_changes sqlite3_changes315,15237 -#define sqlite3_close sqlite3_close316,15297 -#define sqlite3_collation_needed sqlite3_collation_needed317,15355 -#define sqlite3_collation_needed16 sqlite3_collation_needed16318,15424 -#define sqlite3_column_blob sqlite3_column_blob319,15495 -#define sqlite3_column_bytes sqlite3_column_bytes320,15559 -#define sqlite3_column_bytes16 sqlite3_column_bytes16321,15624 -#define sqlite3_column_count sqlite3_column_count322,15691 -#define sqlite3_column_database_name sqlite3_column_database_name323,15756 -#define sqlite3_column_database_name16 sqlite3_column_database_name16324,15829 -#define sqlite3_column_decltype sqlite3_column_decltype325,15904 -#define sqlite3_column_decltype16 sqlite3_column_decltype16326,15972 -#define sqlite3_column_double sqlite3_column_double327,16042 -#define sqlite3_column_int sqlite3_column_int328,16108 -#define sqlite3_column_int64 sqlite3_column_int64329,16171 -#define sqlite3_column_name sqlite3_column_name330,16236 -#define sqlite3_column_name16 sqlite3_column_name16331,16300 -#define sqlite3_column_origin_name sqlite3_column_origin_name332,16366 -#define sqlite3_column_origin_name16 sqlite3_column_origin_name16333,16437 -#define sqlite3_column_table_name sqlite3_column_table_name334,16510 -#define sqlite3_column_table_name16 sqlite3_column_table_name16335,16580 -#define sqlite3_column_text sqlite3_column_text336,16652 -#define sqlite3_column_text16 sqlite3_column_text16337,16716 -#define sqlite3_column_type sqlite3_column_type338,16782 -#define sqlite3_column_value sqlite3_column_value339,16846 -#define sqlite3_commit_hook sqlite3_commit_hook340,16911 -#define sqlite3_complete sqlite3_complete341,16975 -#define sqlite3_complete16 sqlite3_complete16342,17036 -#define sqlite3_create_collation sqlite3_create_collation343,17099 -#define sqlite3_create_collation16 sqlite3_create_collation16344,17168 -#define sqlite3_create_function sqlite3_create_function345,17239 -#define sqlite3_create_function16 sqlite3_create_function16346,17307 -#define sqlite3_create_module sqlite3_create_module347,17377 -#define sqlite3_create_module_v2 sqlite3_create_module_v2348,17443 -#define sqlite3_data_count sqlite3_data_count349,17512 -#define sqlite3_db_handle sqlite3_db_handle350,17575 -#define sqlite3_declare_vtab sqlite3_declare_vtab351,17637 -#define sqlite3_enable_shared_cache sqlite3_enable_shared_cache352,17702 -#define sqlite3_errcode sqlite3_errcode353,17774 -#define sqlite3_errmsg sqlite3_errmsg354,17834 -#define sqlite3_errmsg16 sqlite3_errmsg16355,17893 -#define sqlite3_exec sqlite3_exec356,17954 -#define sqlite3_expired sqlite3_expired358,18042 -#define sqlite3_finalize sqlite3_finalize360,18109 -#define sqlite3_free sqlite3_free361,18170 -#define sqlite3_free_table sqlite3_free_table362,18227 -#define sqlite3_get_autocommit sqlite3_get_autocommit363,18290 -#define sqlite3_get_auxdata sqlite3_get_auxdata364,18357 -#define sqlite3_get_table sqlite3_get_table365,18421 -#define sqlite3_global_recover sqlite3_global_recover367,18514 -#define sqlite3_interrupt sqlite3_interrupt369,18588 -#define sqlite3_last_insert_rowid sqlite3_last_insert_rowid370,18651 -#define sqlite3_libversion sqlite3_libversion371,18721 -#define sqlite3_libversion_number sqlite3_libversion_number372,18784 -#define sqlite3_malloc sqlite3_malloc373,18854 -#define sqlite3_mprintf sqlite3_mprintf374,18913 -#define sqlite3_open sqlite3_open375,18973 -#define sqlite3_open16 sqlite3_open16376,19030 -#define sqlite3_prepare sqlite3_prepare377,19089 -#define sqlite3_prepare16 sqlite3_prepare16378,19149 -#define sqlite3_prepare_v2 sqlite3_prepare_v2379,19211 -#define sqlite3_prepare16_v2 sqlite3_prepare16_v2380,19274 -#define sqlite3_profile sqlite3_profile381,19339 -#define sqlite3_progress_handler sqlite3_progress_handler382,19399 -#define sqlite3_realloc sqlite3_realloc383,19468 -#define sqlite3_reset sqlite3_reset384,19528 -#define sqlite3_result_blob sqlite3_result_blob385,19586 -#define sqlite3_result_double sqlite3_result_double386,19650 -#define sqlite3_result_error sqlite3_result_error387,19716 -#define sqlite3_result_error16 sqlite3_result_error16388,19781 -#define sqlite3_result_int sqlite3_result_int389,19848 -#define sqlite3_result_int64 sqlite3_result_int64390,19911 -#define sqlite3_result_null sqlite3_result_null391,19976 -#define sqlite3_result_text sqlite3_result_text392,20040 -#define sqlite3_result_text16 sqlite3_result_text16393,20104 -#define sqlite3_result_text16be sqlite3_result_text16be394,20170 -#define sqlite3_result_text16le sqlite3_result_text16le395,20238 -#define sqlite3_result_value sqlite3_result_value396,20306 -#define sqlite3_rollback_hook sqlite3_rollback_hook397,20371 -#define sqlite3_set_authorizer sqlite3_set_authorizer398,20437 -#define sqlite3_set_auxdata sqlite3_set_auxdata399,20504 -#define sqlite3_snprintf sqlite3_snprintf400,20568 -#define sqlite3_step sqlite3_step401,20629 -#define sqlite3_table_column_metadata sqlite3_table_column_metadata402,20686 -#define sqlite3_thread_cleanup sqlite3_thread_cleanup403,20760 -#define sqlite3_total_changes sqlite3_total_changes404,20827 -#define sqlite3_trace sqlite3_trace405,20893 -#define sqlite3_transfer_bindings sqlite3_transfer_bindings407,20982 -#define sqlite3_update_hook sqlite3_update_hook409,21059 -#define sqlite3_user_data sqlite3_user_data410,21123 -#define sqlite3_value_blob sqlite3_value_blob411,21185 -#define sqlite3_value_bytes sqlite3_value_bytes412,21248 -#define sqlite3_value_bytes16 sqlite3_value_bytes16413,21312 -#define sqlite3_value_double sqlite3_value_double414,21378 -#define sqlite3_value_int sqlite3_value_int415,21443 -#define sqlite3_value_int64 sqlite3_value_int64416,21505 -#define sqlite3_value_numeric_type sqlite3_value_numeric_type417,21569 -#define sqlite3_value_text sqlite3_value_text418,21640 -#define sqlite3_value_text16 sqlite3_value_text16419,21703 -#define sqlite3_value_text16be sqlite3_value_text16be420,21768 -#define sqlite3_value_text16le sqlite3_value_text16le421,21835 -#define sqlite3_value_type sqlite3_value_type422,21902 -#define sqlite3_vmprintf sqlite3_vmprintf423,21965 -#define sqlite3_vsnprintf sqlite3_vsnprintf424,22026 -#define sqlite3_overload_function sqlite3_overload_function425,22088 -#define sqlite3_prepare_v2 sqlite3_prepare_v2426,22158 -#define sqlite3_prepare16_v2 sqlite3_prepare16_v2427,22221 -#define sqlite3_clear_bindings sqlite3_clear_bindings428,22286 -#define sqlite3_bind_zeroblob sqlite3_bind_zeroblob429,22353 -#define sqlite3_blob_bytes sqlite3_blob_bytes430,22419 -#define sqlite3_blob_close sqlite3_blob_close431,22482 -#define sqlite3_blob_open sqlite3_blob_open432,22545 -#define sqlite3_blob_read sqlite3_blob_read433,22607 -#define sqlite3_blob_write sqlite3_blob_write434,22669 -#define sqlite3_create_collation_v2 sqlite3_create_collation_v2435,22732 -#define sqlite3_file_control sqlite3_file_control436,22804 -#define sqlite3_memory_highwater sqlite3_memory_highwater437,22869 -#define sqlite3_memory_used sqlite3_memory_used438,22938 -#define sqlite3_mutex_alloc sqlite3_mutex_alloc439,23002 -#define sqlite3_mutex_enter sqlite3_mutex_enter440,23066 -#define sqlite3_mutex_free sqlite3_mutex_free441,23130 -#define sqlite3_mutex_leave sqlite3_mutex_leave442,23193 -#define sqlite3_mutex_try sqlite3_mutex_try443,23257 -#define sqlite3_open_v2 sqlite3_open_v2444,23319 -#define sqlite3_release_memory sqlite3_release_memory445,23379 -#define sqlite3_result_error_nomem sqlite3_result_error_nomem446,23446 -#define sqlite3_result_error_toobig sqlite3_result_error_toobig447,23517 -#define sqlite3_sleep sqlite3_sleep448,23589 -#define sqlite3_soft_heap_limit sqlite3_soft_heap_limit449,23647 -#define sqlite3_vfs_find sqlite3_vfs_find450,23715 -#define sqlite3_vfs_register sqlite3_vfs_register451,23776 -#define sqlite3_vfs_unregister sqlite3_vfs_unregister452,23841 -#define sqlite3_threadsafe sqlite3_threadsafe453,23908 -#define sqlite3_result_zeroblob sqlite3_result_zeroblob454,23972 -#define sqlite3_result_error_code sqlite3_result_error_code455,24040 -#define sqlite3_test_control sqlite3_test_control456,24110 -#define sqlite3_randomness sqlite3_randomness457,24175 -#define sqlite3_context_db_handle sqlite3_context_db_handle458,24238 -#define sqlite3_extended_result_codes sqlite3_extended_result_codes459,24308 -#define sqlite3_limit sqlite3_limit460,24382 -#define sqlite3_next_stmt sqlite3_next_stmt461,24440 -#define sqlite3_sql sqlite3_sql462,24502 -#define sqlite3_status sqlite3_status463,24558 -#define sqlite3_backup_finish sqlite3_backup_finish464,24617 -#define sqlite3_backup_init sqlite3_backup_init465,24683 -#define sqlite3_backup_pagecount sqlite3_backup_pagecount466,24747 -#define sqlite3_backup_remaining sqlite3_backup_remaining467,24816 -#define sqlite3_backup_step sqlite3_backup_step468,24885 -#define sqlite3_compileoption_get sqlite3_compileoption_get469,24949 -#define sqlite3_compileoption_used sqlite3_compileoption_used470,25019 -#define sqlite3_create_function_v2 sqlite3_create_function_v2471,25090 -#define sqlite3_db_config sqlite3_db_config472,25161 -#define sqlite3_db_mutex sqlite3_db_mutex473,25223 -#define sqlite3_db_status sqlite3_db_status474,25284 -#define sqlite3_extended_errcode sqlite3_extended_errcode475,25346 -#define sqlite3_log sqlite3_log476,25415 -#define sqlite3_soft_heap_limit64 sqlite3_soft_heap_limit64477,25471 -#define sqlite3_sourceid sqlite3_sourceid478,25541 -#define sqlite3_stmt_status sqlite3_stmt_status479,25602 -#define sqlite3_strnicmp sqlite3_strnicmp480,25666 -#define sqlite3_unlock_notify sqlite3_unlock_notify481,25727 -#define sqlite3_wal_autocheckpoint sqlite3_wal_autocheckpoint482,25793 -#define sqlite3_wal_checkpoint sqlite3_wal_checkpoint483,25864 -#define sqlite3_wal_hook sqlite3_wal_hook484,25931 -#define sqlite3_blob_reopen sqlite3_blob_reopen485,25992 -#define sqlite3_vtab_config sqlite3_vtab_config486,26056 -#define sqlite3_vtab_on_conflict sqlite3_vtab_on_conflict487,26120 -#define sqlite3_close_v2 sqlite3_close_v2489,26220 -#define sqlite3_db_filename sqlite3_db_filename490,26281 -#define sqlite3_db_readonly sqlite3_db_readonly491,26345 -#define sqlite3_db_release_memory sqlite3_db_release_memory492,26409 -#define sqlite3_errstr sqlite3_errstr493,26479 -#define sqlite3_stmt_busy sqlite3_stmt_busy494,26538 -#define sqlite3_stmt_readonly sqlite3_stmt_readonly495,26600 -#define sqlite3_stricmp sqlite3_stricmp496,26666 -#define sqlite3_uri_boolean sqlite3_uri_boolean497,26726 -#define sqlite3_uri_int64 sqlite3_uri_int64498,26790 -#define sqlite3_uri_parameter sqlite3_uri_parameter499,26852 -#define sqlite3_uri_vsnprintf sqlite3_uri_vsnprintf500,26918 -#define sqlite3_wal_checkpoint_v2 sqlite3_wal_checkpoint_v2501,26980 -#define sqlite3_auto_extension sqlite3_auto_extension503,27080 -#define sqlite3_bind_blob64 sqlite3_bind_blob64504,27147 -#define sqlite3_bind_text64 sqlite3_bind_text64505,27211 -#define sqlite3_cancel_auto_extension sqlite3_cancel_auto_extension506,27275 -#define sqlite3_load_extension sqlite3_load_extension507,27349 -#define sqlite3_malloc64 sqlite3_malloc64508,27416 -#define sqlite3_msize sqlite3_msize509,27477 -#define sqlite3_realloc64 sqlite3_realloc64510,27535 -#define sqlite3_reset_auto_extension sqlite3_reset_auto_extension511,27597 -#define sqlite3_result_blob64 sqlite3_result_blob64512,27670 -#define sqlite3_result_text64 sqlite3_result_text64513,27736 -#define sqlite3_strglob sqlite3_strglob514,27802 -#define sqlite3_value_dup sqlite3_value_dup516,27893 -#define sqlite3_value_free sqlite3_value_free517,27955 -#define sqlite3_result_zeroblob64 sqlite3_result_zeroblob64518,28018 -#define sqlite3_bind_zeroblob64 sqlite3_bind_zeroblob64519,28088 -#define sqlite3_value_subtype sqlite3_value_subtype521,28186 -#define sqlite3_result_subtype sqlite3_result_subtype522,28252 -#define sqlite3_status64 sqlite3_status64524,28350 -#define sqlite3_strlike sqlite3_strlike525,28411 -#define sqlite3_db_cacheflush sqlite3_db_cacheflush526,28471 -#define sqlite3_system_errno sqlite3_system_errno528,28568 -# define SQLITE_EXTENSION_INIT1 SQLITE_EXTENSION_INIT1534,28862 -# define SQLITE_EXTENSION_INIT2(SQLITE_EXTENSION_INIT2535,28941 -# define SQLITE_EXTENSION_INIT3 SQLITE_EXTENSION_INIT3536,28992 -# define SQLITE_EXTENSION_INIT1 SQLITE_EXTENSION_INIT1541,29174 -# define SQLITE_EXTENSION_INIT2(SQLITE_EXTENSION_INIT2542,29220 -# define SQLITE_EXTENSION_INIT3 SQLITE_EXTENSION_INIT3543,29288 - -packages/OPTYap/Makefile,0 - -packages/pl/Makefile,0 - -packages/prism/exs/jtree/README,0 - -packages/prism/exs/noisy_or/README,0 - -packages/prism/exs/README,82 - compiler). For PRISM programs with negation, see ../exs_fail.negation29,1387 - -packages/prism/LICENSE,0 - -packages/prism/README,0 - -packages/prism/src/c/core/bpx.c,2252 -#define REQUIRE_HEAP(REQUIRE_HEAP11,221 -static NORET bpx_raise(const char *fmt, ...)bpx_raise58,1340 -bool bpx_is_var(TERM t)bpx_is_var73,1652 -bool bpx_is_atom(TERM t)bpx_is_atom79,1717 -bool bpx_is_integer(TERM t)bpx_is_integer85,1784 -bool bpx_is_float(TERM t)bpx_is_float91,1853 -bool bpx_is_nil(TERM t)bpx_is_nil97,1920 -bool bpx_is_list(TERM t)bpx_is_list103,1985 -bool bpx_is_structure(TERM t)bpx_is_structure109,2052 -bool bpx_is_compound(TERM t)bpx_is_compound115,2126 -bool bpx_is_unifiable(TERM t1, TERM t2)bpx_is_unifiable121,2201 -bool bpx_is_identical(TERM t1, TERM t2)bpx_is_identical128,2319 -TERM bpx_get_call_arg(BPLONG i, BPLONG arity)bpx_get_call_arg137,2511 -BPLONG bpx_get_integer(TERM t)bpx_get_integer147,2669 -double bpx_get_float(TERM t)bpx_get_float159,2829 -const char * bpx_get_name(TERM t)bpx_get_name174,3077 -int bpx_get_arity(TERM t)bpx_get_arity190,3375 -TERM bpx_get_arg(BPLONG i, TERM t)bpx_get_arg206,3665 -TERM bpx_get_car(TERM t)bpx_get_car231,4075 -TERM bpx_get_cdr(TERM t)bpx_get_cdr243,4228 -TERM bpx_build_var(void)bpx_build_var257,4455 -TERM bpx_build_integer(BPLONG n)bpx_build_integer268,4600 -TERM bpx_build_float(double x)bpx_build_float273,4661 -TERM bpx_build_atom(const char *name)bpx_build_atom280,4769 -TERM bpx_build_list(void)bpx_build_list288,4904 -TERM bpx_build_nil(void)bpx_build_nil300,5074 -TERM bpx_build_structure(const char *name, BPLONG arity)bpx_build_structure305,5124 -bool bpx_unify(TERM t1, TERM t2)bpx_unify323,5523 -TERM bpx_string_2_term(const char *s)bpx_string_2_term330,5669 -const char * bpx_term_2_string(TERM t)bpx_term_2_string349,6026 -int bpx_call_term(TERM t)bpx_call_term357,6191 -int bpx_call_string(const char *s)bpx_call_string363,6265 -int bpx_mount_query_term(TERM t)bpx_mount_query_term368,6352 -int bpx_mount_query_string(const char *s)bpx_mount_query_string374,6440 -int bpx_next_solution(void)bpx_next_solution379,6541 -void bpx_write(TERM t)bpx_write389,6766 -int bpx_printf(const char *fmt, ...)bpx_printf397,6902 -BPLONG toam_signal_vec;toam_signal_vec412,7159 -BPLONG illegal_arguments;illegal_arguments414,7184 -BPLONG failure_atom;failure_atom415,7210 -BPLONG number_var_exception;number_var_exception416,7231 - -packages/prism/src/c/core/bpx.h,3605 -#define BPX_HBPX_H2,14 -typedef void *SYM_REC_PTR;SYM_REC_PTR15,196 -#define heap_top heap_top17,224 -#define local_top local_top18,244 -#define trail_top trail_top19,266 -#define trail_up_addr trail_up_addr20,287 -#define UNDO_TRAILING UNDO_TRAILING22,328 -#define NEW_HEAP_NODE(NEW_HEAP_NODE24,438 -#define STACK_OVERFLOW STACK_OVERFLOW26,493 -#define ARG(ARG30,593 -#define XDEREF(XDEREF31,626 -#define MAKEINT(MAKEINT32,746 -#define INTVAL(INTVAL33,792 -#define MAX_ARITY MAX_ARITY35,836 -#define BP_MALLOC(BP_MALLOC37,865 -#define NULL_TERM NULL_TERM39,933 -#define REF0 REF041,972 -#define REF1 REF142,990 -#define SUSP SUSP43,1008 -#define LST LST44,1026 -#define ATM ATM45,1044 -#define INT INT46,1062 -#define STR STR47,1081 -#define NVAR NVAR48,1100 -#define GET_STR_SYM_REC(GET_STR_SYM_REC50,1132 -#define GET_ATM_SYM_REC(GET_ATM_SYM_REC51,1186 -#define GET_ARITY_STR(GET_ARITY_STR53,1243 -#define GET_ARITY_ATOM(GET_ARITY_ATOM54,1308 -#define GET_NAME_STR(GET_NAME_STR56,1340 -#define GET_NAME_ATOM(GET_NAME_ATOM57,1418 -long int XTAG(TERM t)XTAG60,1489 -INLINE_ONLY extern inline TERM ADDTAG(void * t,int tag) {ADDTAG106,2851 -#define ISREF(ISREF114,3042 -#define ISATOM(ISATOM115,3072 -#define ISINT(ISINT116,3104 -#define ISNUM(ISNUM117,3138 -#define ISNIL(ISNIL118,3175 -#define ISLIST(ISLIST119,3209 -#define ISSTRUCT(ISSTRUCT120,3241 -#define ISFLOAT(ISFLOAT121,3275 -#define ISCOMPOUND(ISCOMPOUND122,3309 -double floatval(TERM t)floatval125,3369 -TERM encodefloat1(double f USES_REGS)encodefloat1131,3444 -INLINE_ONLY extern inline int is_UNIFIABLE(TERM t1, TERM t2)is_UNIFIABLE136,3519 -INLINE_ONLY extern inline int is_IDENTICAL(TERM t1, TERM t2)is_IDENTICAL141,3617 -#define SWITCH_OP(SWITCH_OP147,3719 -#define XNDEREF(XNDEREF161,4321 -#define GET_ARG(GET_ARG163,4345 -#define GET_CAR(GET_CAR164,4390 -#define GET_CDR(GET_CDR165,4428 -#define MAKE_NVAR(MAKE_NVAR167,4467 -#define float_psc float_psc169,4509 -#define NEW_HEAP_FREE NEW_HEAP_FREE171,4557 -#define nil_sym nil_sym173,4605 -#define unify unify181,4768 -extern inline INLINE_ONLY int YAP_UnifyINT(YAP_Term t1, YAP_Term t2) { return YAP_Unify(t1,t2); }YAP_UnifyINT184,4866 -bp_term_2_string(TERM t)bp_term_2_string187,4998 -bp_string_2_term(const char *s, TERM to, TERM tv)bp_string_2_term197,5188 -insert(const char *name, int size, int arity)insert205,5396 -compare(TERM t1, TERM t2)compare214,5609 -write_term(TERM t)write_term221,5726 -INLINE_ONLY inline EXTERN NORET quit(const char *s)quit229,5889 -INLINE_ONLY inline EXTERN NORET myquit(int i, const char *s)myquit236,5998 -list_length(BPLONG t1, BPLONG t2)list_length244,6161 -#define PRE_NUMBER_VAR(PRE_NUMBER_VAR249,6235 -numberVarTermOpt(TERM t)numberVarTermOpt252,6294 -unnumberVarTerm(TERM t, BPLONG_PTR pt1, BPLONG_PTR pt2)unnumberVarTerm258,6379 -unifyNumberedTerms(TERM t1, TERM t2)unifyNumberedTerms264,6500 -#define IsNumberedVar IsNumberedVar271,6599 -#define GET_ARITY_ATOM GET_ARITY_ATOM275,6652 -#define GET_ARITY_STR GET_ARITY_STR276,6685 -#define GET_NAME_STR GET_NAME_STR278,6718 -#define GET_NAME_ATOM GET_NAME_ATOM279,6752 -#define NULL_TERM NULL_TERM283,6861 -#define XDEREF(XDEREF289,7004 -#define XNDEREF(XNDEREF291,7106 -#define XTAG(XTAG299,7414 -#define REF0 REF0301,7450 -#define REF1 REF1302,7468 -#define INT INT303,7489 -#define NVAR NVAR304,7510 -#define IS_NVAR(IS_NVAR311,7716 -#define MAKE_NVAR(MAKE_NVAR312,7766 -#undef UNTAGGED_ADDRUNTAGGED_ADDR319,7972 -#define UNTAGGED_ADDR(UNTAGGED_ADDR320,7994 - -packages/prism/src/c/core/error.c,1162 -TERM err_runtime;err_runtime18,482 -TERM err_internal;err_internal19,500 -TERM err_cycle_detected;err_cycle_detected21,520 -TERM err_invalid_likelihood;err_invalid_likelihood22,545 -TERM err_invalid_free_energy;err_invalid_free_energy23,574 -TERM err_invalid_numeric_value;err_invalid_numeric_value24,604 -TERM err_invalid_goal_id;err_invalid_goal_id25,636 -TERM err_invalid_switch_instance_id;err_invalid_switch_instance_id26,662 -TERM err_underflow;err_underflow27,699 -TERM err_overflow;err_overflow28,719 -TERM err_ctrl_c_pressed;err_ctrl_c_pressed29,738 -TERM ierr_invalid_likelihood;ierr_invalid_likelihood31,764 -TERM ierr_invalid_free_energy;ierr_invalid_free_energy32,794 -TERM ierr_function_not_implemented;ierr_function_not_implemented33,825 -TERM ierr_unmatched_branches;ierr_unmatched_branches34,861 -TERM build_runtime_error(const char *s)build_runtime_error38,966 -TERM build_internal_error(const char *s)build_internal_error50,1210 -void register_prism_errors(void)register_prism_errors64,1531 -void emit_error(const char *fmt, ...)emit_error87,2807 -void emit_internal_error(const char *fmt, ...)emit_internal_error100,3035 - -packages/prism/src/c/core/error.h,242 -#define ERROR_HERROR_H2,16 -#define RET_ERR(RET_ERR6,107 -#define RET_RUNTIME_ERR RET_RUNTIME_ERR12,332 -#define RET_INTERNAL_ERR RET_INTERNAL_ERR18,557 -#define RET_ON_ERR(RET_ON_ERR24,782 -#define RET_ERR_ON_ERR(RET_ERR_ON_ERR29,955 - -packages/prism/src/c/core/fputil.c,84 -double fputil_snan(void)fputil_snan3,26 -double fputil_qnan(void)fputil_qnan8,78 - -packages/prism/src/c/core/fputil.h,406 -#define FPUTIL_HFPUTIL_H2,17 -#define C99C9910,184 -#define isfinite isfinite20,359 -#define isnan isnan21,387 -#define INFINITY INFINITY22,414 -# define isfinite isfinite25,482 -# define isnan isnan28,538 -# define INFINITY INFINITY31,596 -#define isfinite(isfinite37,696 -#define isnan(isnan40,756 -#define INFINITY INFINITY43,813 -#define SNAN SNAN47,857 -#define QNAN QNAN48,884 - -packages/prism/src/c/core/gamma.c,199 -#define PI PI43,1665 -#define PI_2 PI_244,1732 -#define PI_4 PI_445,1799 -#define LN_SQRT2PI LN_SQRT2PI46,1866 -double lngamma(double x)lngamma51,1971 -double digamma(double x)digamma209,7028 - -packages/prism/src/c/core/gamma.h,29 -#define GAMMA_HGAMMA_H2,16 - -packages/prism/src/c/core/glue.c,479 -#define REGISTER_CPRED(REGISTER_CPRED11,246 -typedef struct sym_rec * SYM_REC_PTR;SYM_REC_PTR16,455 -typedef long int TERM;TERM17,493 -typedef int (*CPredicate)(void);CPredicate22,614 -SYM_REC_PTR insert_cpred(const char *s, int n, int(*f)(void))insert_cpred26,724 -void bp4p_init(int *argc, char **argv[])bp4p_init45,1125 -void bp4p_exit(int status)bp4p_exit52,1214 -void bp4p_quit(int status)bp4p_quit60,1297 -void bp4p_register_preds(void)bp4p_register_preds69,1392 - -packages/prism/src/c/core/glue.h,27 -#define GLUE_HGLUE_H2,15 - -packages/prism/src/c/core/idtable.c,1274 -struct id_table {id_table14,347 - TERM_POOL *store;store15,365 - TERM_POOL *store;id_table::store15,365 - struct id_table_entry *elems;elems16,387 - struct id_table_entry *elems;id_table::elems16,387 - IDNUM *bucks;bucks17,421 - IDNUM *bucks;id_table::bucks17,421 - IDNUM nbucks;nbucks18,439 - IDNUM nbucks;id_table::nbucks18,439 -struct id_table_entry {id_table_entry21,461 - TERM term;term22,485 - TERM term;id_table_entry::term22,485 - IDNUM next;next23,501 - IDNUM next;id_table_entry::next23,501 -static void id_table_rehash(ID_TABLE *this)id_table_rehash28,595 -static IDNUM id_table_search(const ID_TABLE *this, TERM term)id_table_search62,1302 -static IDNUM id_table_insert(ID_TABLE *this, TERM term)id_table_insert81,1635 -ID_TABLE * id_table_create(void)id_table_create107,2244 -void id_table_delete(ID_TABLE *this)id_table_delete126,2648 -TERM id_table_id2term(const ID_TABLE *this, IDNUM i)id_table_id2term137,2869 -IDNUM id_table_retrieve(const ID_TABLE *this, TERM term)id_table_retrieve142,2974 -IDNUM id_table_register(ID_TABLE *this, TERM term)id_table_register149,3127 -int id_table_count(const ID_TABLE *this)id_table_count164,3422 -TERM unnumber_var_term(TERM term)unnumber_var_term171,3584 - -packages/prism/src/c/core/idtable.h,155 -#define IDTABLE_HIDTABLE_H2,18 -#define ID_NONE ID_NONE8,129 -typedef struct id_table ID_TABLE;ID_TABLE12,234 -typedef unsigned int IDNUM;IDNUM13,268 - -packages/prism/src/c/core/idtable_preds.c,2155 -static ID_TABLE *g_table = NULL; /* goals */g_table6,121 -static ID_TABLE *s_table = NULL; /* switches */s_table7,167 -static ID_TABLE *i_table = NULL; /* switch instances */i_table8,216 -int prism_goal_id_register(TERM term)prism_goal_id_register52,1582 -int prism_sw_id_register(TERM term)prism_sw_id_register57,1670 -int prism_sw_ins_id_register(TERM term)prism_sw_ins_id_register62,1756 -int prism_goal_id_get(TERM term)prism_goal_id_get67,1846 -int prism_sw_id_get(TERM term)prism_sw_id_get72,1929 -int prism_sw_ins_id_get(TERM term)prism_sw_ins_id_get77,2010 -int prism_goal_count(void)prism_goal_count82,2095 -int prism_sw_count(void)prism_sw_count87,2163 -int prism_sw_ins_count(void)prism_sw_ins_count92,2229 -TERM prism_goal_term(IDNUM i)prism_goal_term97,2299 -TERM prism_sw_term(IDNUM i)prism_sw_term102,2375 -TERM prism_sw_ins_term(IDNUM i)prism_sw_ins_term107,2449 -char * prism_goal_string(IDNUM i)prism_goal_string112,2527 -char * prism_sw_string(IDNUM i)prism_sw_string117,2615 -char * prism_sw_ins_string(IDNUM i)prism_sw_ins_string122,2699 -char * copy_prism_goal_string(IDNUM i)copy_prism_goal_string128,2870 -char * copy_prism_sw_string(IDNUM i)copy_prism_sw_string133,2955 -char * copy_prism_sw_ins_string(IDNUM i)copy_prism_sw_ins_string138,3036 -int pc_prism_id_table_init_0(void)pc_prism_id_table_init_0145,3199 -int pc_prism_goal_id_register_2(void)pc_prism_goal_id_register_2158,3513 -int pc_prism_sw_id_register_2(void)pc_prism_sw_id_register_2171,3719 -int pc_prism_sw_ins_id_register_2(void)pc_prism_sw_ins_id_register_2184,3921 -int pc_prism_goal_id_get_2(void)pc_prism_goal_id_get_2197,4131 -int pc_prism_sw_id_get_2(void)pc_prism_sw_id_get_2212,4368 -int pc_prism_sw_ins_id_get_2(void)pc_prism_sw_ins_id_get_2226,4600 -int pc_prism_goal_count_1(void)pc_prism_goal_count_1240,4840 -int pc_prism_sw_count_1(void)pc_prism_sw_count_1246,4947 -int pc_prism_sw_ins_count_1(void)pc_prism_sw_ins_count_1252,5050 -int pc_prism_goal_term_2(void)pc_prism_goal_term_2258,5161 -int pc_prism_sw_term_2(void)pc_prism_sw_term_2270,5366 -int pc_prism_sw_ins_term_2(void)pc_prism_sw_ins_term_2283,5568 - -packages/prism/src/c/core/idtable_preds.h,41 -#define IDTABLE_AUX_HIDTABLE_AUX_H2,22 - -packages/prism/src/c/core/random.c,1360 -#define N N61,2479 -#define M M62,2493 -#define MATRIX_A MATRIX_A63,2507 -#define UPPER_MASK UPPER_MASK64,2563 -#define LOWER_MASK LOWER_MASK65,2627 -static unsigned long mt[N]; /* the array for the state vector */mt67,2691 -static int mti=N+1; /* mti==N+1 means mt[N] is not initialized */mti68,2757 -static void init_genrand(unsigned long s)init_genrand71,2860 -void init_by_array(unsigned long init_key[], int key_length)init_by_array90,3559 -static unsigned long genrand_int32(void)genrand_int32124,4504 -static double genrand_res53(void)genrand_res53162,5574 -#define M_PI M_PI182,6104 -static int gauss_flag = 0;gauss_flag185,6147 -int random_int(int n)random_int189,6249 -double random_float(void)random_float206,6503 -double random_gaussian(double mu, double sigma)random_gaussian212,6586 -int pc_random_auto_seed_1(void)pc_random_auto_seed_1259,7565 -int pc_random_init_by_seed_1(void)pc_random_init_by_seed_1266,7712 -int pc_random_init_by_list_1(void)pc_random_init_by_list_1273,7847 -int pc_random_float_1(void)pc_random_float_1293,8205 -int pc_random_gaussian_1(void)pc_random_gaussian_1299,8316 -int pc_random_int_2(void)pc_random_int_2305,8440 -int pc_random_int_3(void)pc_random_int_3313,8630 -int pc_random_get_state_1(void)pc_random_get_state_1324,8957 -int pc_random_set_state_1(void)pc_random_set_state_1353,9618 - -packages/prism/src/c/core/random.h,31 -#define RANDOM_HRANDOM_H2,17 - -packages/prism/src/c/core/stuff.h,402 -#define STUFF_HSTUFF_H2,16 -typedef enum { false, true } bool;false6,119 -typedef enum { false, true } bool;true6,119 -typedef enum { false, true } bool;bool6,119 -#define NORET NORET11,258 -#define PRINTF_LIKE_FUNC(PRINTF_LIKE_FUNC12,298 -#define NORET NORET14,364 -#define PRINTF_LIKE_FUNC(PRINTF_LIKE_FUNC15,409 -#define NORET NORET17,496 -#define PRINTF_LIKE_FUNC(PRINTF_LIKE_FUNC18,515 - -packages/prism/src/c/core/termpool.c,1985 -#define prism_quit(prism_quit8,135 -#define BLOCK_SIZE BLOCK_SIZE17,472 -static BPLONG_PTR work;work27,845 -struct term_pool {term_pool31,944 - BPLONG_PTR head;head32,963 - BPLONG_PTR head;term_pool::head32,963 - BPLONG_PTR curr;curr33,984 - BPLONG_PTR curr;term_pool::curr33,984 - BPLONG_PTR tail;tail34,1005 - BPLONG_PTR tail;term_pool::tail34,1005 - struct hash_entry **bucks;bucks35,1026 - struct hash_entry **bucks;term_pool::bucks35,1026 - size_t nbucks;nbucks36,1057 - size_t nbucks;term_pool::nbucks36,1057 - size_t count;count37,1076 - size_t count;term_pool::count37,1076 -struct hash_entry {hash_entry40,1098 - TERM term;term41,1118 - TERM term;hash_entry::term41,1118 - BPULONG hash;hash42,1133 - BPULONG hash;hash_entry::hash42,1133 - struct hash_entry *next;next43,1151 - struct hash_entry *next;hash_entry::next43,1151 -static ptrdiff_t trail_pos0 = 0;trail_pos061,1603 -static void number_vars(TERM term)number_vars63,1637 -static void revert_vars(void)revert_vars77,1926 -static BPULONG prism_hash_value(TERM term)prism_hash_value93,2256 -static BPLONG_PTR term_pool_allocate(TERM_POOL *this, size_t size)term_pool_allocate155,3575 -static TERM term_pool_store(TERM_POOL *this, TERM term)term_pool_store176,4112 -static void term_pool_rehash(TERM_POOL *this)term_pool_rehash237,5522 -static TERM term_pool_search(const TERM_POOL *this, TERM term, BPULONG hash)term_pool_search279,6394 -static TERM term_pool_insert(TERM_POOL *this, TERM term, BPULONG hash)term_pool_insert297,6760 -static TERM term_pool_intern(const TERM_POOL *this1, TERM_POOL *this2, TERM term)term_pool_intern315,7256 -TERM_POOL * term_pool_create(void)term_pool_create361,8122 -void term_pool_delete(TERM_POOL *this)term_pool_delete387,8664 -TERM term_pool_retrieve(const TERM_POOL *this, TERM term)term_pool_retrieve416,9195 -TERM term_pool_register(TERM_POOL *this, TERM term)term_pool_register421,9305 - -packages/prism/src/c/core/termpool.h,87 -#define TERMPOOL_HTERMPOOL_H2,19 -typedef struct term_pool TERM_POOL;TERM_POOL8,131 - -packages/prism/src/c/core/vector.c,692 -#define INITIAL_CAPA INITIAL_CAPA7,146 -#undef VECTOR_SIZEVECTOR_SIZE9,171 -#undef VECTOR_CAPAVECTOR_CAPA10,190 -#define VECTOR_SIZE(VECTOR_SIZE13,243 -#define VECTOR_CAPA(VECTOR_CAPA14,288 -void * vector_create(size_t unit, size_t size, size_t capa)vector_create18,408 -void vector_delete(void *vec)vector_delete28,653 -void * vector_expand(void *vec, size_t unit)vector_expand33,721 -void * vector_reduce(void *vec)vector_reduce49,1048 -void * vector_resize(void *vec, size_t unit, size_t size)vector_resize56,1161 -void * vector_reserve(void *vec, size_t unit, size_t capa)vector_reserve63,1312 -void * vector_realloc(void *vec, size_t unit, size_t capa)vector_realloc71,1480 - -packages/prism/src/c/core/vector.h,637 -#define VECTOR_HVECTOR_H2,17 -#define VECTOR_INIT(VECTOR_INIT8,130 -#define VECTOR_INIT_SIZE(VECTOR_INIT_SIZE10,198 -#define VECTOR_INIT_CAPA(VECTOR_INIT_CAPA12,274 -#define VECTOR_FREE(VECTOR_FREE15,351 -#define VECTOR_SIZE(VECTOR_SIZE20,485 -#define VECTOR_CAPA(VECTOR_CAPA22,549 -#define VECTOR_PUSH(VECTOR_PUSH25,614 -#define VECTOR_POP(VECTOR_POP27,713 -#define VECTOR_PUSH_NONE(VECTOR_PUSH_NONE30,785 -#define VECTOR_RESIZE(VECTOR_RESIZE33,856 -#define VECTOR_RESERVE(VECTOR_RESERVE35,929 -#define VECTOR_STRIP(VECTOR_STRIP37,1004 -#define VECTOR_CLEAR(VECTOR_CLEAR40,1088 -#define VECTOR_EMPTY(VECTOR_EMPTY42,1155 - -packages/prism/src/c/core/xmalloc.c,61 -void * xmallocxmalloc7,140 -void * xreallocxrealloc21,392 - -packages/prism/src/c/core/xmalloc.h,221 -#define XMALLOC_HXMALLOC_H2,18 -# define MALLOC(MALLOC14,340 -# define REALLOC(REALLOC15,378 -# define FREE(FREE16,434 -# define MALLOC(MALLOC18,486 -# define REALLOC(REALLOC19,545 -# define FREE(FREE20,623 - -packages/prism/src/c/makefiles/README,0 - -packages/prism/src/c/mp/mp.h,241 -#define MP_HMP_H4,61 -#define TAG_GOAL_REQ TAG_GOAL_REQ12,251 -#define TAG_GOAL_LEN TAG_GOAL_LEN13,278 -#define TAG_GOAL_STR TAG_GOAL_STR14,305 -#define TAG_SWITCH_REQ TAG_SWITCH_REQ16,333 -#define TAG_SWITCH_RES TAG_SWITCH_RES17,360 - -packages/prism/src/c/mp/mp_core.c,370 -#define DEV_NULL DEV_NULL19,378 -int fd_dup_stdout = -1;fd_dup_stdout23,487 -int mp_size;mp_size25,512 -int mp_rank;mp_rank26,525 -static void close_stdout(void)close_stdout30,618 -void mp_init(int *argc, char **argv[])mp_init45,932 -void mp_done(void)mp_done63,1286 -NORET mp_quit(int status)mp_quit68,1330 -void mp_debug(const char *fmt, ...)mp_debug77,1595 - -packages/prism/src/c/mp/mp_core.h,33 -#define MP_CORE_HMP_CORE_H4,66 - -packages/prism/src/c/mp/mp_em_aux.c,943 -int sw_msg_size = 0;sw_msg_size18,383 -static void * sw_msg_send = NULL;sw_msg_send19,404 -static void * sw_msg_recv = NULL;sw_msg_recv20,438 -void alloc_sw_msg_buffers(void)alloc_sw_msg_buffers29,679 -void release_sw_msg_buffers(void)release_sw_msg_buffers35,828 -void mpm_bcast_fixed(void)mpm_bcast_fixed45,1039 -void mps_bcast_fixed(void)mps_bcast_fixed63,1504 -void mpm_bcast_inside(void)mpm_bcast_inside83,2052 -void mps_bcast_inside(void)mps_bcast_inside101,2487 -void mpm_bcast_inside_h(void)mpm_bcast_inside_h119,2961 -void mps_bcast_inside_h(void)mps_bcast_inside_h137,3402 -void mpm_bcast_smooth(void)mpm_bcast_smooth155,3882 -void mps_bcast_smooth(void)mps_bcast_smooth173,4317 -void clear_sw_msg_send(void)clear_sw_msg_send193,4869 -void mpm_share_expectation(void)mpm_share_expectation205,5077 -void mps_share_expectation(void)mps_share_expectation222,5512 -double mp_sum_value(double value)mp_sum_value247,6267 - -packages/prism/src/c/mp/mp_em_aux.h,37 -#define MP_EM_AUX_HMP_EM_AUX_H4,68 - -packages/prism/src/c/mp/mp_em_ml.c,244 -void mpm_share_preconds_em(int *smooth)mpm_share_preconds_em24,522 -void mps_share_preconds_em(int *smooth)mps_share_preconds_em51,1157 -int mpm_run_em(EM_ENG_PTR emptr)mpm_run_em80,1877 -int mps_run_em(EM_ENG_PTR emptr)mps_run_em193,5466 - -packages/prism/src/c/mp/mp_em_ml.h,35 -#define MP_EM_ML_HMP_EM_ML_H4,67 - -packages/prism/src/c/mp/mp_em_preds.c,502 -int pc_mpm_prism_em_6(void)pc_mpm_prism_em_630,688 -int pc_mps_prism_em_0(void)pc_mps_prism_em_053,1568 -int pc_mpm_prism_vbem_2(void)pc_mpm_prism_vbem_267,1845 -int pc_mps_prism_vbem_0(void)pc_mps_prism_vbem_082,2244 -int pc_mpm_prism_both_em_2(void)pc_mpm_prism_both_em_296,2515 -int pc_mps_prism_both_em_0(void)pc_mps_prism_both_em_0114,2939 -int pc_mpm_import_graph_stats_4(void)pc_mpm_import_graph_stats_4133,3313 -int pc_mps_import_graph_stats_0(void)pc_mps_import_graph_stats_0149,3844 - -packages/prism/src/c/mp/mp_em_preds.h,41 -#define MP_EM_PREDS_HMP_EM_PREDS_H4,70 - -packages/prism/src/c/mp/mp_em_vb.c,249 -void mpm_share_preconds_vbem(void)mpm_share_preconds_vbem23,498 -void mps_share_preconds_vbem(void)mps_share_preconds_vbem45,981 -int mpm_run_vbem(VBEM_ENG_PTR vbptr)mpm_run_vbem69,1555 -int mps_run_vbem(VBEM_ENG_PTR vbptr)mps_run_vbem179,4918 - -packages/prism/src/c/mp/mp_em_vb.h,35 -#define MP_EM_VB_HMP_EM_VB_H4,67 - -packages/prism/src/c/mp/mp_flags.c,191 -#define PUT(PUT13,277 -#define GET(GET16,381 -int pc_mpm_share_prism_flags_0(void)pc_mpm_share_prism_flags_021,565 -int pc_mps_share_prism_flags_0(void)pc_mps_share_prism_flags_048,1613 - -packages/prism/src/c/mp/mp_flags.h,35 -#define MP_FLAGS_HMP_FLAGS_H4,67 - -packages/prism/src/c/mp/mp_preds.c,772 -static char str_prealloc[65536];str_prealloc21,475 -static int send_term(TERM arg, int mode, int rank)send_term25,587 -static int recv_term(TERM arg, int mode, int rank)recv_term49,1166 -int pc_mp_size_1(void)pc_mp_size_198,2225 -int pc_mp_rank_1(void)pc_mp_rank_1103,2326 -int pc_mp_master_0(void)pc_mp_master_0108,2427 -int pc_mp_abort_0(void)pc_mp_abort_0113,2505 -int pc_mp_wtime_1(void)pc_mp_wtime_1118,2550 -int pc_mp_sync_2(void)pc_mp_sync_2123,2654 -int pc_mp_send_goal_1(void)pc_mp_send_goal_1154,3443 -int pc_mp_recv_goal_1(void)pc_mp_recv_goal_1162,3654 -int pc_mpm_bcast_command_1(void)pc_mpm_bcast_command_1168,3803 -int pc_mps_bcast_command_1(void)pc_mps_bcast_command_1173,3892 -int pc_mps_revert_stdout_0(void)pc_mps_revert_stdout_0178,3981 - -packages/prism/src/c/mp/mp_preds.h,35 -#define MP_PREDS_HMP_PREDS_H4,67 - -packages/prism/src/c/mp/mp_sw.c,636 -int *occ_position = NULL;occ_position23,508 -static int * sizes = NULL;sizes24,534 -static int ** swids = NULL;swids25,562 -#define L(L27,591 -#define N(N28,664 -static void parse_switch_req(const char *msg, int src)parse_switch_req40,1012 -int pc_mp_send_switches_0(void)pc_mp_send_switches_061,1491 -int pc_mp_recv_switches_0(void)pc_mp_recv_switches_0101,2371 -int pc_mp_send_swlayout_0(void)pc_mp_send_swlayout_0131,2955 -int pc_mp_recv_swlayout_0(void)pc_mp_recv_swlayout_0165,3597 -int pc_mpm_alloc_occ_switches_0(void)pc_mpm_alloc_occ_switches_0184,4090 -void release_occ_position(void)release_occ_position198,4411 - -packages/prism/src/c/mp/mp_sw.h,29 -#define MP_SW_HMP_SW_H4,64 - -packages/prism/src/c/up/em.h,4053 -#define __EM_H____EM_H__4,65 -#define DEFAULT_MAX_ITERATE DEFAULT_MAX_ITERATE8,161 -struct EM_Engine {EM_Engine12,276 - int smooth; /* [in ] flag: use MAP? */smooth13,295 - int smooth; /* [in ] flag: use MAP? */EM_Engine::smooth13,295 - double lambda; /* [out] log post */lambda14,354 - double lambda; /* [out] log post */EM_Engine::lambda14,354 - double likelihood; /* [out] log likelihood */likelihood15,407 - double likelihood; /* [out] log likelihood */EM_Engine::likelihood15,407 - int iterate; /* [out] number of iterations */iterate16,466 - int iterate; /* [out] number of iterations */EM_Engine::iterate16,466 - double bic; /* [out] BIC score */bic17,531 - double bic; /* [out] BIC score */EM_Engine::bic17,531 - double cs; /* [out] CS score */cs18,585 - double cs; /* [out] CS score */EM_Engine::cs18,585 - int (* compute_inside )(void);compute_inside21,686 - int (* compute_inside )(void);EM_Engine::compute_inside21,686 - int (* examine_inside )(void);examine_inside22,733 - int (* examine_inside )(void);EM_Engine::examine_inside22,733 - int (* compute_expectation )(void);compute_expectation23,780 - int (* compute_expectation )(void);EM_Engine::compute_expectation23,780 - double (* compute_likelihood )(void);compute_likelihood24,827 - double (* compute_likelihood )(void);EM_Engine::compute_likelihood24,827 - double (* compute_log_prior )(void);compute_log_prior25,874 - double (* compute_log_prior )(void);EM_Engine::compute_log_prior25,874 - int (* update_params )(void);update_params26,921 - int (* update_params )(void);EM_Engine::update_params26,921 -struct VBEM_Engine {VBEM_Engine29,972 - double free_energy; /* [out] free energy */free_energy30,993 - double free_energy; /* [out] free energy */VBEM_Engine::free_energy30,993 - int iterate; /* [out] number of iterations */iterate31,1049 - int iterate; /* [out] number of iterations */VBEM_Engine::iterate31,1049 - int (* compute_pi )(void);compute_pi34,1162 - int (* compute_pi )(void);VBEM_Engine::compute_pi34,1162 - int (* compute_inside )(void);compute_inside35,1209 - int (* compute_inside )(void);VBEM_Engine::compute_inside35,1209 - int (* examine_inside )(void);examine_inside36,1256 - int (* examine_inside )(void);VBEM_Engine::examine_inside36,1256 - int (* compute_expectation )(void);compute_expectation37,1303 - int (* compute_expectation )(void);VBEM_Engine::compute_expectation37,1303 - double (* compute_free_energy_l0 )(void);compute_free_energy_l038,1350 - double (* compute_free_energy_l0 )(void);VBEM_Engine::compute_free_energy_l038,1350 - double (* compute_free_energy_l1 )(void);compute_free_energy_l139,1397 - double (* compute_free_energy_l1 )(void);VBEM_Engine::compute_free_energy_l139,1397 - double (* compute_likelihood )(void);compute_likelihood40,1444 - double (* compute_likelihood )(void);VBEM_Engine::compute_likelihood40,1444 - int (* update_hyperparams )(void);update_hyperparams41,1491 - int (* update_hyperparams )(void);VBEM_Engine::update_hyperparams41,1491 -typedef struct EM_Engine * EM_ENG_PTR;EM_ENG_PTR44,1542 -typedef struct VBEM_Engine * VBEM_ENG_PTR;VBEM_ENG_PTR45,1583 -#define SHOW_PROGRESS(SHOW_PROGRESS49,1705 -#define SHOW_PROGRESS_HEAD(SHOW_PROGRESS_HEAD59,2315 -#define SHOW_PROGRESS_TAIL(SHOW_PROGRESS_TAIL71,3072 -#define SHOW_PROGRESS_TEMP(SHOW_PROGRESS_TEMP82,3755 -#define SHOW_PROGRESS_INTR(SHOW_PROGRESS_INTR92,4364 -#define REACHED_MAX_ITERATE(REACHED_MAX_ITERATE100,4825 - -packages/prism/src/c/up/em_aux.c,601 -int * num_sw_vals = NULL;num_sw_vals12,288 -double itemp;itemp13,315 -double inside_failure;inside_failure14,329 -int failure_observed;failure_observed15,352 -compare_sw_ins(const void *a, const void *b)compare_sw_ins37,983 -void alloc_occ_switches(void)alloc_occ_switches56,1562 -void sort_occ_switches(void)sort_occ_switches110,3000 -void release_occ_switches(void)release_occ_switches115,3113 -void alloc_num_sw_vals(void)alloc_num_sw_vals121,3199 -void release_num_sw_vals(void)release_num_sw_vals139,3585 -void transfer_hyperparams_prolog(void)transfer_hyperparams_prolog147,3746 - -packages/prism/src/c/up/em_aux.h,31 -#define EM_AUX_HEM_AUX_H2,17 - -packages/prism/src/c/up/em_aux_ml.c,1575 -int check_smooth(int *smooth)check_smooth45,1495 -static void initialize_params_noisy_uniform(void)initialize_params_noisy_uniform100,3259 -static void initialize_params_random(void)initialize_params_random128,3968 -void initialize_params(void)initialize_params153,4529 -int compute_inside_scaling_none(void)compute_inside_scaling_none163,4772 -int compute_inside_scaling_log_exp(void)compute_inside_scaling_log_exp195,5691 -int compute_daem_inside_scaling_none(void)compute_daem_inside_scaling_none244,7362 -int compute_daem_inside_scaling_log_exp(void)compute_daem_inside_scaling_log_exp276,8298 -int examine_inside_scaling_none(void)examine_inside_scaling_none327,10060 -int examine_inside_scaling_log_exp(void)examine_inside_scaling_log_exp354,10744 -int compute_expectation_scaling_none(void)compute_expectation_scaling_none389,11844 -int compute_expectation_scaling_log_exp(void)compute_expectation_scaling_log_exp437,13193 -double compute_likelihood_scaling_none(void)compute_likelihood_scaling_none547,17191 -double compute_likelihood_scaling_log_exp(void)compute_likelihood_scaling_log_exp564,17659 -double compute_log_prior(void)compute_log_prior583,18204 -double compute_daem_log_prior(void)compute_daem_log_prior601,18570 -int update_params(void)update_params621,19027 -int update_params_smooth(void)update_params_smooth657,20092 -void save_params(void)save_params695,21108 -void restore_params(void)restore_params711,21460 -double compute_bic(double likelihood)compute_bic729,21893 -double compute_cs(double likelihood)compute_cs750,22384 - -packages/prism/src/c/up/em_aux_ml.h,37 -#define EM_AUX_ML_HEM_AUX_ML_H2,20 - -packages/prism/src/c/up/em_aux_vb.c,1528 -int check_smooth_vb(void)check_smooth_vb39,1266 -void initialize_hyperparams(void)initialize_hyperparams62,1811 -int compute_pi_scaling_none(void)compute_pi_scaling_none103,2910 -int compute_pi_scaling_log_exp(void)compute_pi_scaling_log_exp129,3444 -int compute_inside_vb_scaling_none(void)compute_inside_vb_scaling_none157,4054 -int compute_inside_vb_scaling_log_exp(void)compute_inside_vb_scaling_log_exp189,4911 -int compute_daem_inside_vb_scaling_none(void)compute_daem_inside_vb_scaling_none241,6533 -int compute_daem_inside_vb_scaling_log_exp(void)compute_daem_inside_vb_scaling_log_exp273,7406 -double compute_free_energy_l0(void)compute_free_energy_l0336,9367 -double compute_daem_free_energy_l0(void)compute_daem_free_energy_l0372,10157 -double compute_free_energy_l1_scaling_none(void)compute_free_energy_l1_scaling_none408,10968 -double compute_free_energy_l1_scaling_log_exp(void)compute_free_energy_l1_scaling_log_exp425,11317 -double compute_daem_free_energy_l1_scaling_none(void)compute_daem_free_energy_l1_scaling_none443,11701 -double compute_daem_free_energy_l1_scaling_log_exp(void)compute_daem_free_energy_l1_scaling_log_exp460,12063 -int update_hyperparams(void)update_hyperparams480,12538 -int update_daem_hyperparams(void)update_daem_hyperparams498,12887 -void save_hyperparams(void)save_hyperparams518,13329 -void restore_hyperparams(void)restore_hyperparams533,13636 -void transfer_hyperparams(void)transfer_hyperparams548,13946 -void get_param_means(void)get_param_means566,14335 - -packages/prism/src/c/up/em_aux_vb.h,37 -#define EM_AUX_VB_HEM_AUX_VB_H2,20 - -packages/prism/src/c/up/em_ml.c,96 -void config_em(EM_ENG_PTR em_ptr)config_em19,449 -int run_em(EM_ENG_PTR em_ptr)run_em41,1615 - -packages/prism/src/c/up/em_ml.h,29 -#define EM_ML_HEM_ML_H2,16 - -packages/prism/src/c/up/em_preds.c,324 -int pc_prism_prepare_4(void)pc_prism_prepare_434,833 -int pc_prism_em_6(void)pc_prism_em_672,1800 -int pc_prism_vbem_2(void)pc_prism_vbem_289,2468 -int pc_prism_both_em_2(void)pc_prism_both_em_2102,2798 -int pc_compute_inside_2(void)pc_compute_inside_2118,3153 -int pc_compute_probf_1(void)pc_compute_probf_1150,3844 - -packages/prism/src/c/up/em_preds.h,35 -#define EM_PREDS_HEM_PREDS_H2,19 - -packages/prism/src/c/up/em_vb.c,108 -void config_vbem(VBEM_ENG_PTR vb_ptr)config_vbem21,508 -int run_vbem(VBEM_ENG_PTR vb_ptr)run_vbem47,2139 - -packages/prism/src/c/up/em_vb.h,29 -#define EM_VB_HEM_VB_H2,16 - -packages/prism/src/c/up/flags.c,2201 -int daem = 0;daem17,501 -int em_message = 1;em_message18,536 -int em_progress = 10;em_progress19,571 -int error_on_cycle = 1;error_on_cycle20,607 -int explicit_empty_expls = 1;explicit_empty_expls21,642 -int fix_init_order = 1;fix_init_order22,677 -int init_method = 1;init_method23,712 -double itemp_init = 0.1;itemp_init24,747 -double itemp_rate = 1.2;itemp_rate25,784 -int log_scale = 0;log_scale26,821 -int max_iterate = -1; /* == DEFAULT_MAX_ITERATE */max_iterate27,856 -int num_restart = 1;num_restart28,921 -double prism_epsilon = 0.0001;prism_epsilon29,956 -int show_itemp = 0;show_itemp30,996 -double std_ratio = 0.1;std_ratio31,1031 -int verb_em = 0;verb_em32,1068 -int verb_graph = 0;verb_graph33,1103 -static int warn = 0;warn34,1138 -int debug_level = 0;debug_level40,1301 -int pc_set_daem_1(void)pc_set_daem_166,2076 -int pc_set_em_message_1(void)pc_set_em_message_172,2176 -int pc_set_em_progress_1(void)pc_set_em_progress_178,2288 -int pc_set_error_on_cycle_1(void)pc_set_error_on_cycle_184,2402 -int pc_set_explicit_empty_expls_1(void)pc_set_explicit_empty_expls_190,2522 -int pc_set_fix_init_order_1(void)pc_set_fix_init_order_196,2654 -int pc_set_init_method_1(void)pc_set_init_method_1102,2774 -int pc_set_itemp_init_1(void)pc_set_itemp_init_1108,2888 -int pc_set_itemp_rate_1(void)pc_set_itemp_rate_1114,2998 -int pc_set_log_scale_1(void)pc_set_log_scale_1120,3108 -int pc_set_max_iterate_1(void)pc_set_max_iterate_1126,3218 -int pc_set_num_restart_1(void)pc_set_num_restart_1132,3332 -int pc_set_prism_epsilon_1(void)pc_set_prism_epsilon_1138,3446 -int pc_set_show_itemp_1(void)pc_set_show_itemp_1144,3562 -int pc_set_std_ratio_1(void)pc_set_std_ratio_1150,3674 -int pc_set_verb_em_1(void)pc_set_verb_em_1156,3782 -int pc_set_verb_graph_1(void)pc_set_verb_graph_1162,3888 -int pc_set_warn_1(void)pc_set_warn_1168,4000 -int pc_set_debug_level_1(void)pc_set_debug_level_1174,4100 - -packages/prism/src/c/up/flags.h,29 -#define FLAGS_HFLAGS_H2,16 - -packages/prism/src/c/up/graph.c,4145 -static int max_egraph_size = INIT_MAX_EGRAPH_SIZE;max_egraph_size19,423 -static int max_sorted_egraph_size = INIT_MAX_EGRAPH_SIZE;max_sorted_egraph_size20,481 -static int egraph_size = 0;egraph_size21,539 -static int max_sw_tab_size = INIT_MAX_SW_TABLE_SIZE;max_sw_tab_size23,579 -static int max_sw_ins_tab_size = INIT_MAX_SW_INS_TABLE_SIZE;max_sw_ins_tab_size24,636 -static int index_to_sort = 0;index_to_sort26,698 -static int suppress_init_flags = 0; /* flag: suppress INIT_VISITED_FLAGS? */suppress_init_flags27,734 -int sorted_egraph_size = 0;sorted_egraph_size29,813 -EG_NODE_PTR *expl_graph = NULL;expl_graph30,849 -EG_NODE_PTR *sorted_expl_graph = NULL;sorted_expl_graph31,888 -ROOT *roots = NULL;roots32,927 -int num_roots;num_roots34,967 -int num_goals;num_goals35,982 -int min_node_index;min_node_index37,998 -int max_node_index;max_node_index38,1018 -SW_INS_PTR *switches = NULL;switches40,1039 -SW_INS_PTR *switch_instances = NULL;switch_instances41,1076 -SW_INS_PTR *occ_switches = NULL; /* subset of switches */occ_switches42,1113 -int sw_tab_size = 0;sw_tab_size43,1176 -int sw_ins_tab_size = 0;sw_ins_tab_size44,1210 -int occ_switch_tab_size = 0;occ_switch_tab_size45,1244 -int failure_subgoal_id;failure_subgoal_id47,1279 -int failure_root_index;failure_root_index48,1303 -static void alloc_switch_table(void)alloc_switch_table52,1406 -static void expand_switch_table(int req_sw_tab_size)expand_switch_table62,1626 -static void clean_switch_table(void)clean_switch_table80,2095 -static SW_INS_PTR alloc_switch_instance(void)alloc_switch_instance91,2348 -static void alloc_switch_instance_table(void)alloc_switch_instance_table99,2520 -static void expand_switch_instance_table(int req_sw_ins_tab_size)expand_switch_instance_table110,2785 -static void clean_switch_instance_table(void)clean_switch_instance_table129,3328 -static EG_NODE_PTR alloc_egraph_node(void)alloc_egraph_node144,3719 -int pc_alloc_egraph_0(void)pc_alloc_egraph_0158,4050 -static void expand_egraph(int req_egraph_size)expand_egraph176,4405 -static void clean_sorted_egraph(void)clean_sorted_egraph203,5138 -static void clean_base_egraph(void)clean_base_egraph209,5262 -int pc_clean_base_egraph_0(void)pc_clean_base_egraph_0244,6316 -int pc_clean_egraph_0(void)pc_clean_egraph_0250,6399 -int pc_export_switch_2(void)pc_export_switch_2258,6557 -static int add_egraph_path(int node_id, TERM children_prolog, TERM sws_prolog)add_egraph_path289,7494 -int pc_add_egraph_path_3(void)pc_add_egraph_path_3352,9319 -void alloc_sorted_egraph(int n)alloc_sorted_egraph375,9900 -static void expand_sorted_egraph(int req_sorted_egraph_size)expand_sorted_egraph390,10223 -void initialize_egraph_index(void)initialize_egraph_index408,10875 -static int topological_sort(int node_id)topological_sort413,10938 -int sort_one_egraph(int root_id, int root_index, int count)sort_one_egraph447,11875 -int sort_egraphs(TERM p_fact_list) /* assumed to be dereferenced in advance */sort_egraphs478,12798 -int pc_alloc_sort_egraph_1(void)pc_alloc_sort_egraph_1513,13702 -static void clean_root_tables(void)clean_root_tables528,14009 -int pc_clean_external_tables_0(void)pc_clean_external_tables_0538,14181 -int pc_export_sw_info_1(void)pc_export_sw_info_1563,14999 -int pc_import_sorted_graph_size_1(void)pc_import_sorted_graph_size_1629,17259 -int pc_import_sorted_graph_gid_2(void)pc_import_sorted_graph_gid_2635,17409 -int pc_import_sorted_graph_paths_2(void)pc_import_sorted_graph_paths_2642,17620 -int pc_get_gnode_inside_2(void)pc_get_gnode_inside_2736,20651 -int pc_get_gnode_outside_2(void)pc_get_gnode_outside_2743,20850 -int pc_get_gnode_viterbi_2(void)pc_get_gnode_viterbi_2750,21051 -int pc_get_snode_inside_2(void)pc_get_snode_inside_2757,21248 -int pc_get_snode_expectation_2(void)pc_get_snode_expectation_2767,21484 -int pc_import_occ_switches_3(void)pc_import_occ_switches_3774,21700 -void graph_stats(int stats[4])graph_stats851,24021 -int pc_import_graph_stats_4(void)pc_import_graph_stats_4879,24692 - -packages/prism/src/c/up/graph.h,467 -#define GRAPH_HGRAPH_H2,16 -#define INIT_MAX_SW_TABLE_SIZE INIT_MAX_SW_TABLE_SIZE6,107 -#define INIT_MAX_SW_INS_TABLE_SIZE INIT_MAX_SW_INS_TABLE_SIZE7,147 -#define INIT_MAX_EGRAPH_SIZE INIT_MAX_EGRAPH_SIZE8,187 -#define MAX_EGRAPH_SIZE_EXPAND_LIMIT MAX_EGRAPH_SIZE_EXPAND_LIMIT9,233 -#define UPDATE_MIN_MAX_NODE_NOS(UPDATE_MIN_MAX_NODE_NOS12,320 -#define INIT_MIN_MAX_NODE_NOS INIT_MIN_MAX_NODE_NOS18,643 -#define INIT_VISITED_FLAGS INIT_VISITED_FLAGS22,842 - -packages/prism/src/c/up/graph_aux.c,471 -static EG_NODE_PTR *subgraph;subgraph15,336 -static int subgraph_size;subgraph_size16,366 -static int max_subgraph_size;max_subgraph_size17,392 -static void alloc_subgraph(void)alloc_subgraph21,501 -static void expand_subgraph(int req_subgraph_size)expand_subgraph27,664 -static void release_subgraph(void)release_subgraph41,1111 -static void traverse_egraph(EG_NODE_PTR node_ptr)traverse_egraph47,1192 -void print_egraph(int level, int mode)print_egraph75,1996 - -packages/prism/src/c/up/graph_aux.h,195 -#define GRAPH_AUX_HGRAPH_AUX_H2,20 -#define PRINT_NEUTRAL PRINT_NEUTRAL8,134 -#define PRINT_EM PRINT_EM9,159 -#define PRINT_VBEM PRINT_VBEM10,184 -#define PRINT_VITERBI PRINT_VITERBI11,209 - -packages/prism/src/c/up/hindsight.c,950 -#define INIT_MAX_HINDSIGHT_GOAL_SIZE INIT_MAX_HINDSIGHT_GOAL_SIZE11,238 -static int * hindsight_goals = NULL;hindsight_goals26,727 -static double * hindsight_probs = NULL;hindsight_probs27,767 -static int max_hindsight_goal_size;max_hindsight_goal_size28,807 -static int hindsight_goal_size;hindsight_goal_size29,843 -static void alloc_hindsight_goals(void)alloc_hindsight_goals33,954 -static void expand_hindsight_goals(int req_hindsight_goal_size)expand_hindsight_goals49,1393 -int compute_outside_scaling_none(void)compute_outside_scaling_none78,2276 -int compute_outside_scaling_log_exp(void)compute_outside_scaling_log_exp115,3273 -static int get_hindsight_goals_scaling_none(TERM p_subgoal, int is_cond)get_hindsight_goals_scaling_none183,5617 -static int get_hindsight_goals_scaling_log_exp(TERM p_subgoal, int is_cond)get_hindsight_goals_scaling_log_exp213,6396 -int pc_compute_hindsight_4(void)pc_compute_hindsight_4243,7169 - -packages/prism/src/c/up/hindsight.h,37 -#define HINDSIGHT_HHINDSIGHT_H2,20 - -packages/prism/src/c/up/up.h,7850 -#define UP_HUP_H2,13 -#define BINARY_VERSION BINARY_VERSION19,300 -#define INIT_PROB_THRESHOLD INIT_PROB_THRESHOLD21,335 -#define EPS EPS22,368 -#define NULL_TERM NULL_TERM24,403 -#define HUGE_PROB HUGE_PROB27,523 -#define TINY_PROB TINY_PROB28,550 -typedef struct ExplGraphPath *EG_PATH_PTR;EG_PATH_PTR31,619 -struct ExplGraphPath {ExplGraphPath32,662 - int children_len;children_len33,685 - int children_len;ExplGraphPath::children_len33,685 - int sws_len;sws_len34,707 - int sws_len;ExplGraphPath::sws_len34,707 - struct ExplGraphNode **children; /* an array of pointers to children nodes */children35,724 - struct ExplGraphNode **children; /* an array of pointers to children nodes */ExplGraphPath::children35,724 - struct SwitchInstance **sws; /* an array of pointers to switches */sws36,806 - struct SwitchInstance **sws; /* an array of pointers to switches */ExplGraphPath::sws36,806 - double inside; /* Inside propability of this path */inside37,878 - double inside; /* Inside propability of this path */ExplGraphPath::inside37,878 - double max; /* Max propability of this path (for Viterbi) */max38,938 - double max; /* Max propability of this path (for Viterbi) */ExplGraphPath::max38,938 - struct ExplGraphPath *next; /* next path in a list */next39,1009 - struct ExplGraphPath *next; /* next path in a list */ExplGraphPath::next39,1009 -typedef struct ViterbiEntry *V_ENT_PTR;V_ENT_PTR42,1071 -struct ViterbiEntry {ViterbiEntry43,1111 - int goal_id;goal_id44,1133 - int goal_id;ViterbiEntry::goal_id44,1133 - EG_PATH_PTR path_ptr; /* path for a node */path_ptr45,1150 - EG_PATH_PTR path_ptr; /* path for a node */ViterbiEntry::path_ptr45,1150 - int children_len; /* number of children in the path */children_len46,1199 - int children_len; /* number of children in the path */ViterbiEntry::children_len46,1199 - int *top_n_index; /* indices of paths in the top-N lists for children */top_n_index47,1263 - int *top_n_index; /* indices of paths in the top-N lists for children */ViterbiEntry::top_n_index47,1263 - double max; /* max. prob of the path with the sub-paths indicated by top_n_index[] */max48,1345 - double max; /* max. prob of the path with the sub-paths indicated by top_n_index[] */ViterbiEntry::max48,1345 -typedef struct ExplGraphNode *EG_NODE_PTR;EG_NODE_PTR51,1440 -struct ExplGraphNode {ExplGraphNode52,1483 - int id;id53,1506 - int id;ExplGraphNode::id53,1506 - double inside, outside; /* inside and outside propabilities */inside54,1518 - double inside, outside; /* inside and outside propabilities */ExplGraphNode::inside54,1518 - double inside, outside; /* inside and outside propabilities */outside54,1518 - double inside, outside; /* inside and outside propabilities */ExplGraphNode::outside54,1518 - double max; /* max probabilities */max55,1586 - double max; /* max probabilities */ExplGraphNode::max55,1586 - EG_PATH_PTR max_path; /* pointer to the path with max prob. */max_path56,1639 - EG_PATH_PTR max_path; /* pointer to the path with max prob. */ExplGraphNode::max_path56,1639 - V_ENT_PTR *top_n; /* top-N list (for top-N Viterbi) */top_n57,1709 - V_ENT_PTR *top_n; /* top-N list (for top-N Viterbi) */ExplGraphNode::top_n57,1709 - int top_n_len; /* size of top-N list (for top-N Viterbi) */top_n_len58,1775 - int top_n_len; /* size of top-N list (for top-N Viterbi) */ExplGraphNode::top_n_len58,1775 - int shared; /* number of goals which call this subgoal */shared59,1849 - int shared; /* number of goals which call this subgoal */ExplGraphNode::shared59,1849 - EG_PATH_PTR path_ptr;path_ptr60,1924 - EG_PATH_PTR path_ptr;ExplGraphNode::path_ptr60,1924 - double first_outside;first_outside61,1950 - double first_outside;ExplGraphNode::first_outside61,1950 - char has_first_outside;has_first_outside62,1976 - char has_first_outside;ExplGraphNode::has_first_outside62,1976 - char visited; /* flag: each node needs to occur at most once */visited63,2004 - char visited; /* flag: each node needs to occur at most once */ExplGraphNode::visited63,2004 -typedef struct ViterbiList *V_LIST_PTR;V_LIST_PTR66,2079 -struct ViterbiList {ViterbiList67,2119 - V_ENT_PTR entry;entry68,2140 - V_ENT_PTR entry;ViterbiList::entry68,2140 - V_LIST_PTR prev;prev69,2161 - V_LIST_PTR prev;ViterbiList::prev69,2161 - V_LIST_PTR next;next70,2182 - V_LIST_PTR next;ViterbiList::next70,2182 -typedef struct SwitchInstance *SW_INS_PTR;SW_INS_PTR75,2333 -struct SwitchInstance {SwitchInstance76,2376 - int id;id77,2400 - int id;SwitchInstance::id77,2400 - char fixed; /* parameter is fixed or not */fixed78,2413 - char fixed; /* parameter is fixed or not */SwitchInstance::fixed78,2413 - char fixed_h; /* hyperparameter is fixed or not */fixed_h79,2463 - char fixed_h; /* hyperparameter is fixed or not */SwitchInstance::fixed_h79,2463 - char occ; /* occurring in the current expl graphs or not (temporarily used) */occ80,2518 - char occ; /* occurring in the current expl graphs or not (temporarily used) */SwitchInstance::occ80,2518 - double inside; /* theta (parameter) in ML/MAP */inside81,2605 - double inside; /* theta (parameter) in ML/MAP */SwitchInstance::inside81,2605 - double inside_h; /* alpha (hyperparameter) in VB */inside_h82,2661 - double inside_h; /* alpha (hyperparameter) in VB */SwitchInstance::inside_h82,2661 - double smooth; /* pseudo count which equals alpha - 1.0 */smooth83,2717 - double smooth; /* pseudo count which equals alpha - 1.0 */SwitchInstance::smooth83,2717 - double smooth_prolog; /* original pseudo count passed from the Prolog part */smooth_prolog84,2787 - double smooth_prolog; /* original pseudo count passed from the Prolog part */SwitchInstance::smooth_prolog84,2787 - double pi;pi85,2869 - double pi;SwitchInstance::pi85,2869 - double best_inside; /* best theta */best_inside86,2884 - double best_inside; /* best theta */SwitchInstance::best_inside86,2884 - double best_inside_h; /* best alpha */best_inside_h87,2927 - double best_inside_h; /* best alpha */SwitchInstance::best_inside_h87,2927 - double first_expectation;first_expectation88,2970 - double first_expectation;SwitchInstance::first_expectation88,2970 - char has_first_expectation;has_first_expectation89,3000 - char has_first_expectation;SwitchInstance::has_first_expectation89,3000 - double total_expect; /* Sigma ru */total_expect90,3034 - double total_expect; /* Sigma ru */SwitchInstance::total_expect90,3034 - double best_total_expect; /* best Sigma ru */best_total_expect91,3079 - double best_total_expect; /* best Sigma ru */SwitchInstance::best_total_expect91,3079 - int count; /* number of occurrences in complete data */count92,3129 - int count; /* number of occurrences in complete data */SwitchInstance::count92,3129 - SW_INS_PTR next; /* connect next instance of the same switch */next93,3195 - SW_INS_PTR next; /* connect next instance of the same switch */SwitchInstance::next93,3195 -typedef struct ObservedFactNode *ROOT;ROOT96,3267 -struct ObservedFactNode {ObservedFactNode97,3306 - int id;id98,3332 - int id;ObservedFactNode::id98,3332 - int count; /* number of occurrences */count99,3344 - int count; /* number of occurrences */ObservedFactNode::count99,3344 -#define CTRLC_PRESSED CTRLC_PRESSED102,3391 -#define isfinite isfinite108,3536 -#define isnan isnan109,3561 -#define isfinite isfinite114,3620 - -packages/prism/src/c/up/util.c,514 -int prism_printf(const char *fmt, ...)prism_printf23,597 -int pc_mp_mode_0(void)pc_mp_mode_039,864 -int compare_sw_ins(const void *a, const void *b)compare_sw_ins50,1035 -int get_term_depth(TERM t)get_term_depth66,1464 -int pc_get_term_depth_2(void)pc_get_term_depth_2108,2283 -int pc_lngamma_2(void)pc_lngamma_2116,2520 -int pc_mtrace_0(void)pc_mtrace_0126,2760 -int pc_muntrace_0(void)pc_muntrace_0134,2844 -void xsleep(unsigned int milliseconds)xsleep145,3054 -int pc_sleep_1(void)pc_sleep_1152,3153 - -packages/prism/src/c/up/util.h,27 -#define UTIL_HUTIL_H2,15 - -packages/prism/src/c/up/viterbi.c,2558 -typedef struct ViterbiRankEntry *V_RANK_PTR;V_RANK_PTR11,241 -struct ViterbiRankEntry {ViterbiRankEntry12,286 - int size;size13,312 - int size;ViterbiRankEntry::size13,312 - V_ENT_PTR *expl;expl14,326 - V_ENT_PTR *expl;ViterbiRankEntry::expl14,326 - double score;score15,347 - double score;ViterbiRankEntry::score15,347 -static EG_NODE_PTR * viterbi_egraphs = NULL;viterbi_egraphs30,724 -static int max_viterbi_egraph_size;max_viterbi_egraph_size31,770 -static int viterbi_egraph_size;viterbi_egraph_size32,817 -static V_LIST_PTR queue_first;queue_first34,861 -static V_LIST_PTR queue_last;queue_last35,896 -static int queue_len;queue_len36,930 -static V_LIST_PTR top_n_first;top_n_first37,963 -static V_LIST_PTR top_n_last;top_n_last38,998 -static int top_n_len;top_n_len39,1032 -static V_ENT_PTR * n_viterbi_egraphs = NULL;n_viterbi_egraphs40,1065 -static int max_n_viterbi_egraph_size;max_n_viterbi_egraph_size41,1113 -static int n_viterbi_egraph_size;n_viterbi_egraph_size42,1162 -static V_RANK_PTR viterbi_rank = NULL;viterbi_rank44,1208 -void compute_max(void)compute_max51,1386 -static void clean_queue(void)clean_queue131,3874 -static void clean_top_n(void)clean_top_n145,4123 -void compute_n_max(int n)compute_n_max159,4372 -static void alloc_viterbi_egraphs(void)alloc_viterbi_egraphs407,13097 -static void expand_viterbi_egraphs(int req_viterbi_egraph_size)expand_viterbi_egraphs424,13609 -static void alloc_n_viterbi_egraphs(void)alloc_n_viterbi_egraphs446,14204 -static void expand_n_viterbi_egraphs(int req_n_viterbi_egraph_size)expand_n_viterbi_egraphs460,14544 -static int visit_most_likely_path(EG_NODE_PTR eg_ptr,visit_most_likely_path482,15224 -static void get_most_likely_path(int goal_id,get_most_likely_path513,16026 -static int visit_n_most_likely_path(V_ENT_PTR v_ent, int start_vindex)visit_n_most_likely_path627,19921 -static void get_n_most_likely_path(int n, int goal_id,get_n_most_likely_path673,21338 -static double compute_rerank_score(void)compute_rerank_score816,26493 -static int compare_viterbi_rank(const void *a, const void *b)compare_viterbi_rank869,27869 -static void get_n_most_likely_path_rerank(int n, int l, int goal_id,get_n_most_likely_path_rerank880,28117 -int pc_compute_viterbi_5(void)pc_compute_viterbi_51046,33934 -int pc_compute_n_viterbi_3(void)pc_compute_n_viterbi_31074,34764 -int pc_compute_n_viterbi_rerank_4(void)pc_compute_n_viterbi_rerank_41101,35491 - -packages/prism/src/c/up/viterbi.h,33 -#define VITERBI_HVITERBI_H2,18 - -packages/prism/src/prolog/bp/eval.pl,259 -eval_call('_$if_then_else'(C,A,B),CP) => eval_call((C->A;B),CP).eval_call48,1145 -eval_call('_$if_then_else'(C,A,B),CP) => eval_call((C->A;B),CP).eval_call48,1145 -spy(F):-spy354,11461 -spy(F):-spy354,11461 -spy(F):-spy354,11461 -nospy:-nospy383,12052 - -packages/prism/src/prolog/core/error.pl,0 - -packages/prism/src/prolog/core/format.pl,0 - -packages/prism/src/prolog/core/message.pl,0 - -packages/prism/src/prolog/core/random.pl,3389 -random_get_seed(Seed) :-random_get_seed9,138 -random_get_seed(Seed) :-random_get_seed9,138 -random_get_seed(Seed) :-random_get_seed9,138 -random_set_seed :-random_set_seed12,204 -random_set_seed(Seed) :-random_set_seed16,285 -random_set_seed(Seed) :-random_set_seed16,285 -random_set_seed(Seed) :-random_set_seed16,285 -random_get_state(State) :-random_get_state25,568 -random_get_state(State) :-random_get_state25,568 -random_get_state(State) :-random_get_state25,568 -random_set_state(State) :-random_set_state28,631 -random_set_state(State) :-random_set_state28,631 -random_set_state(State) :-random_set_state28,631 -set_seed(Seed) :-set_seed34,787 -set_seed(Seed) :-set_seed34,787 -set_seed(Seed) :-set_seed34,787 -set_seed_time :-set_seed_time38,899 -set_seed_time(Seed) :-set_seed_time42,1009 -set_seed_time(Seed) :-set_seed_time42,1009 -set_seed_time(Seed) :-set_seed_time42,1009 -random_int(Max,Value) :-random_int49,1178 -random_int(Max,Value) :-random_int49,1178 -random_int(Max,Value) :-random_int49,1178 -random_int(Min,Max,Value) :-random_int53,1298 -random_int(Min,Max,Value) :-random_int53,1298 -random_int(Min,Max,Value) :-random_int53,1298 -random_int_incl(Min,Max,Value) :-random_int_incl60,1557 -random_int_incl(Min,Max,Value) :-random_int_incl60,1557 -random_int_incl(Min,Max,Value) :-random_int_incl60,1557 -random_int_excl(Min,Max,Value) :-random_int_excl67,1815 -random_int_excl(Min,Max,Value) :-random_int_excl67,1815 -random_int_excl(Min,Max,Value) :-random_int_excl67,1815 -random_uniform(Value) :-random_uniform77,2160 -random_uniform(Value) :-random_uniform77,2160 -random_uniform(Value) :-random_uniform77,2160 -random_uniform(Max,Value) :-random_uniform80,2215 -random_uniform(Max,Value) :-random_uniform80,2215 -random_uniform(Max,Value) :-random_uniform80,2215 -random_uniform(Min,Max,Value) :-random_uniform85,2368 -random_uniform(Min,Max,Value) :-random_uniform85,2368 -random_uniform(Min,Max,Value) :-random_uniform85,2368 -random_gaussian(Value) :-random_gaussian92,2659 -random_gaussian(Value) :-random_gaussian92,2659 -random_gaussian(Value) :-random_gaussian92,2659 -random_gaussian(Mu,Sigma,Value) :-random_gaussian95,2718 -random_gaussian(Mu,Sigma,Value) :-random_gaussian95,2718 -random_gaussian(Mu,Sigma,Value) :-random_gaussian95,2718 -random_select(List,Value) :-random_select103,2991 -random_select(List,Value) :-random_select103,2991 -random_select(List,Value) :-random_select103,2991 -random_select(List,Dist,Value) :-random_select106,3060 -random_select(List,Dist,Value) :-random_select106,3060 -random_select(List,Dist,Value) :-random_select106,3060 -dice(List,Value) :-dice129,3780 -dice(List,Value) :-dice129,3780 -dice(List,Value) :-dice129,3780 -dice(List,Dist,Value) :-dice133,3892 -dice(List,Dist,Value) :-dice133,3892 -dice(List,Dist,Value) :-dice133,3892 -random_multiselect(List,N,Result) :-random_multiselect139,4058 -random_multiselect(List,N,Result) :-random_multiselect139,4058 -random_multiselect(List,N,Result) :-random_multiselect139,4058 -random_group(List,N,Result) :-random_group188,5642 -random_group(List,N,Result) :-random_group188,5642 -random_group(List,N,Result) :-random_group188,5642 -random_shuffle(List0,List) :-random_shuffle224,6638 -random_shuffle(List0,List) :-random_shuffle224,6638 -random_shuffle(List0,List) :-random_shuffle224,6638 - -packages/prism/src/prolog/mp/mp_learn.pl,0 - -packages/prism/src/prolog/mp/mp_main.pl,278 -main :- $pp_batch.main16,486 -abort :- $pc_mp_abort.abort45,1190 -mp_call(Goal) :-mp_call76,1932 -mp_call(Goal) :-mp_call76,1932 -mp_call(Goal) :-mp_call76,1932 -mp_call_s(Goal) :-mp_call_s78,1993 -mp_call_s(Goal) :-mp_call_s78,1993 -mp_call_s(Goal) :-mp_call_s78,1993 - -packages/prism/src/prolog/prism.yap,21 -init :-init47,1240 - -packages/prism/src/prolog/README,0 - -packages/prism/src/prolog/trans/bpif.pl,0 - -packages/prism/src/prolog/trans/dump.pl,0 - -packages/prism/src/prolog/trans/trans.pl,558 -'_$initialize_var'(_)._$initialize_var706,28107 -'_$initialize_var'(_)./p,predicate,predicate definition706,28107 -'_$initialize_var'(_)._$initialize_var706,28107 -'_$if_then_else'(C,A,B) :- (C->A;B)._$if_then_else707,28130 -'_$if_then_else'(C,A,B) :- (C->A;B)._$if_then_else707,28130 -'_$if_then_else'(C,A,B) :- (C->A;B)._$if_then_else707,28130 -'_$if_then_else'(C,A,B) :- (C->A;B)./p,predicate,predicate definition707,28130 -'_$if_then_else'(C,A,B) :- (C->A;B)._$if_then_else707,28130 -'_$if_then_else'(C,A,B) :- (C->A;B)._$if_then_else707,28130 - -packages/prism/src/prolog/trans/verify.pl,0 - -packages/prism/src/prolog/up/batch.pl,28 -main :- $pp_batch.main1,0 - -packages/prism/src/prolog/up/bigarray.pl,174 -list_to_bigarray(List,Array) :-list_to_bigarray130,3492 -list_to_bigarray(List,Array) :-list_to_bigarray130,3492 -list_to_bigarray(List,Array) :-list_to_bigarray130,3492 - -packages/prism/src/prolog/up/dist.pl,663 -expand_probs(Dist,Probs) :-expand_probs3,44 -expand_probs(Dist,Probs) :-expand_probs3,44 -expand_probs(Dist,Probs) :-expand_probs3,44 -expand_probs(Dist,N,Probs) :-expand_probs6,122 -expand_probs(Dist,N,Probs) :-expand_probs6,122 -expand_probs(Dist,N,Probs) :-expand_probs6,122 -expand_pseudo_counts(Spec,Cs) :-expand_pseudo_counts79,2467 -expand_pseudo_counts(Spec,Cs) :-expand_pseudo_counts79,2467 -expand_pseudo_counts(Spec,Cs) :-expand_pseudo_counts79,2467 -expand_pseudo_counts(Spec,N,Cs) :-expand_pseudo_counts84,2693 -expand_pseudo_counts(Spec,N,Cs) :-expand_pseudo_counts84,2693 -expand_pseudo_counts(Spec,N,Cs) :-expand_pseudo_counts84,2693 - -packages/prism/src/prolog/up/dynamic.pl,0 - -packages/prism/src/prolog/up/expl.pl,0 - -packages/prism/src/prolog/up/flags.pl,1337 -get_prism_flag(Name,Value) :-get_prism_flag111,4210 -get_prism_flag(Name,Value) :-get_prism_flag111,4210 -get_prism_flag(Name,Value) :-get_prism_flag111,4210 -get_prism_flag(Name,Value) :-get_prism_flag115,4346 -get_prism_flag(Name,Value) :-get_prism_flag115,4346 -get_prism_flag(Name,Value) :-get_prism_flag115,4346 -set_prism_flag(Name,Value) :-set_prism_flag124,4606 -set_prism_flag(Name,Value) :-set_prism_flag124,4606 -set_prism_flag(Name,Value) :-set_prism_flag124,4606 -reset_prism_flags :-reset_prism_flags151,5750 -set_default_prism_flags :-set_default_prism_flags155,5836 -disable_exclusive_prism_flags :-disable_exclusive_prism_flags161,5971 -show_prism_flags :-show_prism_flags171,6212 -current_prism_flag(Name,Value) :- get_prism_flag(Name,Value).current_prism_flag183,6468 -current_prism_flag(Name,Value) :- get_prism_flag(Name,Value).current_prism_flag183,6468 -current_prism_flag(Name,Value) :- get_prism_flag(Name,Value).current_prism_flag183,6468 -current_prism_flag(Name,Value) :- get_prism_flag(Name,Value).current_prism_flag183,6468 -current_prism_flag(Name,Value) :- get_prism_flag(Name,Value).current_prism_flag183,6468 -show_prism_flag :- show_prism_flags.show_prism_flag185,6531 -show_flags :- show_prism_flags.show_flags186,6568 -show_flag :- show_prism_flags.show_flag187,6605 - -packages/prism/src/prolog/up/hash.pl,0 - -packages/prism/src/prolog/up/hindsight.pl,1646 -hindsight(G) :- hindsight(G,_).hindsight12,225 -hindsight(G) :- hindsight(G,_).hindsight12,225 -hindsight(G) :- hindsight(G,_).hindsight12,225 -hindsight(G) :- hindsight(G,_).hindsight12,225 -hindsight(G) :- hindsight(G,_).hindsight12,225 -hindsight(G,SubG) :-hindsight14,258 -hindsight(G,SubG) :-hindsight14,258 -hindsight(G,SubG) :-hindsight14,258 -hindsight(G,SubG,HProbs) :-hindsight21,456 -hindsight(G,SubG,HProbs) :-hindsight21,456 -hindsight(G,SubG,HProbs) :-hindsight21,456 -hindsight_agg(G,Agg) :-hindsight_agg34,859 -hindsight_agg(G,Agg) :-hindsight_agg34,859 -hindsight_agg(G,Agg) :-hindsight_agg34,859 -hindsight_agg(G,Agg,HProbs) :-hindsight_agg41,1067 -hindsight_agg(G,Agg,HProbs) :-hindsight_agg41,1067 -hindsight_agg(G,Agg,HProbs) :-hindsight_agg41,1067 -chindsight(G) :- chindsight(G,_).chindsight112,3672 -chindsight(G) :- chindsight(G,_).chindsight112,3672 -chindsight(G) :- chindsight(G,_).chindsight112,3672 -chindsight(G) :- chindsight(G,_).chindsight112,3672 -chindsight(G) :- chindsight(G,_).chindsight112,3672 -chindsight(G,SubG) :-chindsight114,3707 -chindsight(G,SubG) :-chindsight114,3707 -chindsight(G,SubG) :-chindsight114,3707 -chindsight(G,SubG,HProbs) :-chindsight121,3919 -chindsight(G,SubG,HProbs) :-chindsight121,3919 -chindsight(G,SubG,HProbs) :-chindsight121,3919 -chindsight_agg(G,Agg) :-chindsight_agg134,4326 -chindsight_agg(G,Agg) :-chindsight_agg134,4326 -chindsight_agg(G,Agg) :-chindsight_agg134,4326 -chindsight_agg(G,Agg,HProbs) :-chindsight_agg141,4548 -chindsight_agg(G,Agg,HProbs) :-chindsight_agg141,4548 -chindsight_agg(G,Agg,HProbs) :-chindsight_agg141,4548 - -packages/prism/src/prolog/up/learn.pl,474 -learn :-learn1,0 -learn(Goals) :-learn4,72 -learn(Goals) :-learn4,72 -learn(Goals) :-learn4,72 -learn_p :-learn_p8,158 -learn_p(Goals) :-learn_p10,197 -learn_p(Goals) :-learn_p10,197 -learn_p(Goals) :-learn_p10,197 -learn_h :-learn_h12,249 -learn_h(Goals) :-learn_h14,289 -learn_h(Goals) :-learn_h14,289 -learn_h(Goals) :-learn_h14,289 -learn_b :-learn_b16,342 -learn_b(Goals) :-learn_b18,379 -learn_b(Goals) :-learn_b18,379 -learn_b(Goals) :-learn_b18,379 - -packages/prism/src/prolog/up/list.pl,6480 -avglist(List,Mean) :-avglist71,1755 -avglist(List,Mean) :-avglist71,1755 -avglist(List,Mean) :-avglist71,1755 -meanlist(List,Mean) :-meanlist74,1819 -meanlist(List,Mean) :-meanlist74,1819 -meanlist(List,Mean) :-meanlist74,1819 -gmeanlist(List,Mean) :-gmeanlist77,1885 -gmeanlist(List,Mean) :-gmeanlist77,1885 -gmeanlist(List,Mean) :-gmeanlist77,1885 -hmeanlist(List,Mean) :-hmeanlist80,1954 -hmeanlist(List,Mean) :-hmeanlist80,1954 -hmeanlist(List,Mean) :-hmeanlist80,1954 -varlistp(List,Var) :-varlistp135,3475 -varlistp(List,Var) :-varlistp135,3475 -varlistp(List,Var) :-varlistp135,3475 -varlist(List,Var) :-varlist139,3560 -varlist(List,Var) :-varlist139,3560 -varlist(List,Var) :-varlist139,3560 -stdlistp(List,Std) :-stdlistp143,3649 -stdlistp(List,Std) :-stdlistp143,3649 -stdlistp(List,Std) :-stdlistp143,3649 -stdlist(List,Std) :-stdlist147,3740 -stdlist(List,Std) :-stdlist147,3740 -stdlist(List,Std) :-stdlist147,3740 -semlistp(List,Sem) :-semlistp151,3835 -semlistp(List,Sem) :-semlistp151,3835 -semlistp(List,Sem) :-semlistp151,3835 -semlist(List,Sem) :-semlist155,3926 -semlist(List,Sem) :-semlist155,3926 -semlist(List,Sem) :-semlist155,3926 -skewlistp(List,Skew) :-skewlistp159,4025 -skewlistp(List,Skew) :-skewlistp159,4025 -skewlistp(List,Skew) :-skewlistp159,4025 -skewlist(List,Skew) :-skewlist163,4134 -skewlist(List,Skew) :-skewlist163,4134 -skewlist(List,Skew) :-skewlist163,4134 -kurtlistp(List,Kurt) :-kurtlistp167,4241 -kurtlistp(List,Kurt) :-kurtlistp167,4241 -kurtlistp(List,Kurt) :-kurtlistp167,4241 -kurtlist(List,Kurt) :-kurtlist171,4352 -kurtlist(List,Kurt) :-kurtlist171,4352 -kurtlist(List,Kurt) :-kurtlist171,4352 -modelist(List,Mode) :-modelist266,7425 -modelist(List,Mode) :-modelist266,7425 -modelist(List,Mode) :-modelist266,7425 -amodelist(List,Modes) :-amodelist269,7489 -amodelist(List,Modes) :-amodelist269,7489 -amodelist(List,Modes) :-amodelist269,7489 -rmodelist(List,Mode) :-rmodelist272,7558 -rmodelist(List,Mode) :-rmodelist272,7558 -rmodelist(List,Mode) :-rmodelist272,7558 -pmodelist(List,Mode) :-pmodelist276,7657 -pmodelist(List,Mode) :-pmodelist276,7657 -pmodelist(List,Mode) :-pmodelist276,7657 -medianlist(List,Median) :-medianlist338,9470 -medianlist(List,Median) :-medianlist338,9470 -medianlist(List,Median) :-medianlist338,9470 -minlist(List,Min) :-minlist364,10135 -minlist(List,Min) :-minlist364,10135 -minlist(List,Min) :-minlist364,10135 -maxlist(List,Max) :-maxlist369,10299 -maxlist(List,Max) :-maxlist369,10299 -maxlist(List,Max) :-maxlist369,10299 -agglist(List,Dest) :-agglist378,10520 -agglist(List,Dest) :-agglist378,10520 -agglist(List,Dest) :-agglist378,10520 -maplist(X,Clause,Xs) :-maplist481,14232 -maplist(X,Clause,Xs) :-maplist481,14232 -maplist(X,Clause,Xs) :-maplist481,14232 -maplist(X,Y,Clause,Xs,Ys) :-maplist486,14388 -maplist(X,Y,Clause,Xs,Ys) :-maplist486,14388 -maplist(X,Y,Clause,Xs,Ys) :-maplist486,14388 -maplist(X,Y,Z,Clause,Xs,Ys,Zs) :-maplist491,14554 -maplist(X,Y,Z,Clause,Xs,Ys,Zs) :-maplist491,14554 -maplist(X,Y,Z,Clause,Xs,Ys,Zs) :-maplist491,14554 -maplist_func(F,Xs) :-maplist_func508,15063 -maplist_func(F,Xs) :-maplist_func508,15063 -maplist_func(F,Xs) :-maplist_func508,15063 -maplist_func(F,Xs,Ys) :-maplist_func512,15165 -maplist_func(F,Xs,Ys) :-maplist_func512,15165 -maplist_func(F,Xs,Ys) :-maplist_func512,15165 -maplist_func(F,Xs,Ys,Zs) :-maplist_func516,15273 -maplist_func(F,Xs,Ys,Zs) :-maplist_func516,15273 -maplist_func(F,Xs,Ys,Zs) :-maplist_func516,15273 -maplist_math(Op,Xs,Ys) :-maplist_math532,15723 -maplist_math(Op,Xs,Ys) :-maplist_math532,15723 -maplist_math(Op,Xs,Ys) :-maplist_math532,15723 -maplist_math(Op,Xs,Ys,Zs) :-maplist_math537,15860 -maplist_math(Op,Xs,Ys,Zs) :-maplist_math537,15860 -maplist_math(Op,Xs,Ys,Zs) :-maplist_math537,15860 -reducelist(A,B,C,Body,Xs,Y0,Y) :-reducelist559,16367 -reducelist(A,B,C,Body,Xs,Y0,Y) :-reducelist559,16367 -reducelist(A,B,C,Body,Xs,Y0,Y) :-reducelist559,16367 -reducelist_func(F,Xs,Y0,Y) :-reducelist_func568,16668 -reducelist_func(F,Xs,Y0,Y) :-reducelist_func568,16668 -reducelist_func(F,Xs,Y0,Y) :-reducelist_func568,16668 -reducelist_math(Op,Xs,Y0,Y) :-reducelist_math576,16915 -reducelist_math(Op,Xs,Y0,Y) :-reducelist_math576,16915 -reducelist_math(Op,Xs,Y0,Y) :-reducelist_math576,16915 -sublist(Sub,Lst,I,J) :-sublist596,17404 -sublist(Sub,Lst,I,J) :-sublist596,17404 -sublist(Sub,Lst,I,J) :-sublist596,17404 -splitlist(Prefix,Suffix,List,N) :-splitlist659,19007 -splitlist(Prefix,Suffix,List,N) :-splitlist659,19007 -splitlist(Prefix,Suffix,List,N) :-splitlist659,19007 -grouplist(List,N,Sizes,Dest) :-grouplist662,19096 -grouplist(List,N,Sizes,Dest) :-grouplist662,19096 -grouplist(List,N,Sizes,Dest) :-grouplist662,19096 -egrouplist(List,N,Dest) :-egrouplist666,19227 -egrouplist(List,N,Dest) :-egrouplist666,19227 -egrouplist(List,N,Dest) :-egrouplist666,19227 -filter(Patt,Xs,Ys) :-filter723,20627 -filter(Patt,Xs,Ys) :-filter723,20627 -filter(Patt,Xs,Ys) :-filter723,20627 -filter(Patt,Xs,Ys,Count) :-filter728,20757 -filter(Patt,Xs,Ys,Count) :-filter728,20757 -filter(Patt,Xs,Ys,Count) :-filter728,20757 -filter_not(Patt,Xs,Ys) :-filter_not740,21085 -filter_not(Patt,Xs,Ys) :-filter_not740,21085 -filter_not(Patt,Xs,Ys) :-filter_not740,21085 -filter_not(Patt,Xs,Ys,Count) :-filter_not745,21223 -filter_not(Patt,Xs,Ys,Count) :-filter_not745,21223 -filter_not(Patt,Xs,Ys,Count) :-filter_not745,21223 -countlist(List,Counts) :-countlist761,21625 -countlist(List,Counts) :-countlist761,21625 -countlist(List,Counts) :-countlist761,21625 -countlist(Patt,List,Count) :-countlist774,22065 -countlist(Patt,List,Count) :-countlist774,22065 -countlist(Patt,List,Count) :-countlist774,22065 -number_sort(Xs,Ys) :-number_sort801,22828 -number_sort(Xs,Ys) :-number_sort801,22828 -number_sort(Xs,Ys) :-number_sort801,22828 -custom_sort(Op,Xs,Ys), Op == '<' => $pp_custom_sort(0,Xs,Ys,custom_sort/3).custom_sort804,22895 -custom_sort(Op,Xs,Ys), Op == '<' => $pp_custom_sort(0,Xs,Ys,custom_sort/3).custom_sort804,22895 -custom_sort(Op,Xs,Ys), Op == '@<' => $pp_custom_sort(1,Xs,Ys,custom_sort/3).custom_sort805,22972 -custom_sort(Op,Xs,Ys), Op == '@<' => $pp_custom_sort(1,Xs,Ys,custom_sort/3).custom_sort805,22972 -custom_sort(A,B,Body,Xs,Ys) :-custom_sort812,23230 -custom_sort(A,B,Body,Xs,Ys) :-custom_sort812,23230 -custom_sort(A,B,Body,Xs,Ys) :-custom_sort812,23230 - -packages/prism/src/prolog/up/main.pl,2668 -get_version(V) :- $pp_version(V).get_version9,205 -get_version(V) :- $pp_version(V).get_version9,205 -get_version(V) :- $pp_version(V).get_version9,205 -get_version(V) :- $pp_version(V).get_version9,205 -get_version(V) :- $pp_version(V).get_version9,205 -print_version :- $pp_version(V), !, format("~w~n",[V]).print_version10,240 -print_copyright :- $pp_copyright(Msg), !, format("~w~n",[Msg]).print_copyright11,302 -p_table(_).p_table47,1029 -p_table(_).p_table47,1029 -p_not_table(_).p_not_table48,1041 -p_not_table(_).p_not_table48,1041 -prism_help :-prism_help69,1472 -prism(File) :-prism94,2834 -prism(File) :-prism94,2834 -prism(File) :-prism94,2834 -prism(Opts,File) :-prism97,2870 -prism(Opts,File) :-prism97,2870 -prism(Opts,File) :-prism97,2870 -prism(_Opts,File) :-prism115,3533 -prism(_Opts,File) :-prism115,3533 -prism(_Opts,File) :-prism115,3533 -show_values :-show_values208,6415 -is_prob_pred(F/N) :- is_prob_pred(F,N).is_prob_pred223,6932 -is_prob_pred(F/N) :- is_prob_pred(F,N).is_prob_pred223,6932 -is_prob_pred(F/N) :- is_prob_pred(F,N).is_prob_pred223,6932 -is_prob_pred(F/N) :- is_prob_pred(F,N).is_prob_pred223,6932 -is_prob_pred(F/N) :- is_prob_pred(F,N).is_prob_pred223,6932 -is_prob_pred(F,N) :- $pd_is_prob_pred(F,N).is_prob_pred224,6972 -is_prob_pred(F,N) :- $pd_is_prob_pred(F,N).is_prob_pred224,6972 -is_prob_pred(F,N) :- $pd_is_prob_pred(F,N).is_prob_pred224,6972 -is_prob_pred(F,N) :- $pd_is_prob_pred(F,N).is_prob_pred224,6972 -is_prob_pred(F,N) :- $pd_is_prob_pred(F,N).is_prob_pred224,6972 -is_tabled_pred(F/N) :- is_tabled_pred(F,N).is_tabled_pred226,7017 -is_tabled_pred(F/N) :- is_tabled_pred(F,N).is_tabled_pred226,7017 -is_tabled_pred(F/N) :- is_tabled_pred(F,N).is_tabled_pred226,7017 -is_tabled_pred(F/N) :- is_tabled_pred(F,N).is_tabled_pred226,7017 -is_tabled_pred(F/N) :- is_tabled_pred(F,N).is_tabled_pred226,7017 -is_tabled_pred(F,N) :- $pd_is_tabled_pred(F,N).is_tabled_pred227,7061 -is_tabled_pred(F,N) :- $pd_is_tabled_pred(F,N).is_tabled_pred227,7061 -is_tabled_pred(F,N) :- $pd_is_tabled_pred(F,N).is_tabled_pred227,7061 -is_tabled_pred(F,N) :- $pd_is_tabled_pred(F,N).is_tabled_pred227,7061 -is_tabled_pred(F,N) :- $pd_is_tabled_pred(F,N).is_tabled_pred227,7061 -show_prob_preds :-show_prob_preds229,7110 -show_tabled_preds :-show_tabled_preds239,7338 -show_tabled_preds :-show_tabled_preds243,7445 -show_prob_pred :- show_prob_preds.show_prob_pred254,7695 -show_table_pred :- show_tabled_preds.show_table_pred255,7733 -show_table_preds :- show_tabled_preds.show_table_preds256,7773 -show_tabled_pred :- show_tabled_preds.show_tabled_pred257,7813 - -packages/prism/src/prolog/up/prob.pl,3834 -prob(Goal) :-prob1,0 -prob(Goal) :-prob1,0 -prob(Goal) :-prob1,0 -prob(Goal,Prob) :-prob6,159 -prob(Goal,Prob) :-prob6,159 -prob(Goal,Prob) :-prob6,159 -log_prob(Goal) :-log_prob38,1065 -log_prob(Goal) :-log_prob38,1065 -log_prob(Goal) :-log_prob38,1065 -log_prob(Goal,P) :-log_prob40,1157 -log_prob(Goal,P) :-log_prob40,1157 -log_prob(Goal,P) :-log_prob40,1157 -get_subgoal_hashtable(GTab) :-get_subgoal_hashtable122,4060 -get_subgoal_hashtable(GTab) :-get_subgoal_hashtable122,4060 -get_subgoal_hashtable(GTab) :-get_subgoal_hashtable122,4060 -get_switch_hashtable(SwTab) :-get_switch_hashtable137,4487 -get_switch_hashtable(SwTab) :-get_switch_hashtable137,4487 -get_switch_hashtable(SwTab) :-get_switch_hashtable137,4487 -probf(Goal) :-probf152,4919 -probf(Goal) :-probf152,4919 -probf(Goal) :-probf152,4919 -probfi(Goal) :-probfi154,5003 -probfi(Goal) :-probfi154,5003 -probfi(Goal) :-probfi154,5003 -probfo(Goal) :-probfo156,5088 -probfo(Goal) :-probfo156,5088 -probfo(Goal) :-probfo156,5088 -probfv(Goal) :-probfv158,5173 -probfv(Goal) :-probfv158,5173 -probfv(Goal) :-probfv158,5173 -probfio(Goal) :-probfio160,5258 -probfio(Goal) :-probfio160,5258 -probfio(Goal) :-probfio160,5258 -probf(Goal,Expls) :-probf163,5345 -probf(Goal,Expls) :-probf163,5345 -probf(Goal,Expls) :-probf163,5345 -probfi(Goal,Expls) :-probfi165,5397 -probfi(Goal,Expls) :-probfi165,5397 -probfi(Goal,Expls) :-probfi165,5397 -probfo(Goal,Expls) :-probfo167,5450 -probfo(Goal,Expls) :-probfo167,5450 -probfo(Goal,Expls) :-probfo167,5450 -probfv(Goal,Expls) :-probfv169,5503 -probfv(Goal,Expls) :-probfv169,5503 -probfv(Goal,Expls) :-probfv169,5503 -probfio(Goal,Expls) :-probfio171,5556 -probfio(Goal,Expls) :-probfio171,5556 -probfio(Goal,Expls) :-probfio171,5556 -probef(Goal) :-probef174,5611 -probef(Goal) :-probef174,5611 -probef(Goal) :-probef174,5611 -probefi(Goal) :-probefi176,5696 -probefi(Goal) :-probefi176,5696 -probefi(Goal) :-probefi176,5696 -probefo(Goal) :-probefo178,5782 -probefo(Goal) :-probefo178,5782 -probefo(Goal) :-probefo178,5782 -probefv(Goal) :-probefv180,5868 -probefv(Goal) :-probefv180,5868 -probefv(Goal) :-probefv180,5868 -probefio(Goal) :-probefio182,5954 -probefio(Goal) :-probefio182,5954 -probefio(Goal) :-probefio182,5954 -probef(Goal,Expls) :-probef185,6042 -probef(Goal,Expls) :-probef185,6042 -probef(Goal,Expls) :-probef185,6042 -probefi(Goal,Expls) :-probefi187,6095 -probefi(Goal,Expls) :-probefi187,6095 -probefi(Goal,Expls) :-probefi187,6095 -probefo(Goal,Expls) :-probefo189,6149 -probefo(Goal,Expls) :-probefo189,6149 -probefo(Goal,Expls) :-probefo189,6149 -probefv(Goal,Expls) :-probefv191,6203 -probefv(Goal,Expls) :-probefv191,6203 -probefv(Goal,Expls) :-probefv191,6203 -probefio(Goal,Expls) :-probefio193,6257 -probefio(Goal,Expls) :-probefio193,6257 -probefio(Goal,Expls) :-probefio193,6257 -probef(Goal,Expls,GoalHashTab,SwHashTab) :-probef196,6313 -probef(Goal,Expls,GoalHashTab,SwHashTab) :-probef196,6313 -probef(Goal,Expls,GoalHashTab,SwHashTab) :-probef196,6313 -probefi(Goal,Expls,GoalHashTab,SwHashTab) :-probefi200,6473 -probefi(Goal,Expls,GoalHashTab,SwHashTab) :-probefi200,6473 -probefi(Goal,Expls,GoalHashTab,SwHashTab) :-probefi200,6473 -probefo(Goal,Expls,GoalHashTab,SwHashTab) :-probefo204,6634 -probefo(Goal,Expls,GoalHashTab,SwHashTab) :-probefo204,6634 -probefo(Goal,Expls,GoalHashTab,SwHashTab) :-probefo204,6634 -probefv(Goal,Expls,GoalHashTab,SwHashTab) :-probefv208,6795 -probefv(Goal,Expls,GoalHashTab,SwHashTab) :-probefv208,6795 -probefv(Goal,Expls,GoalHashTab,SwHashTab) :-probefv208,6795 -probefio(Goal,Expls,GoalHashTab,SwHashTab) :-probefio212,6956 -probefio(Goal,Expls,GoalHashTab,SwHashTab) :-probefio212,6956 -probefio(Goal,Expls,GoalHashTab,SwHashTab) :-probefio212,6956 - -packages/prism/src/prolog/up/sample.pl,1116 -sample(Goal) :-sample20,342 -sample(Goal) :-sample20,342 -sample(Goal) :-sample20,342 -msw(Sw,V) :-msw26,571 -msw(Sw,V) :-msw26,571 -msw(Sw,V) :-msw26,571 -get_samples(N,G,Gs) :- % G assumed to never failget_samples61,1575 -get_samples(N,G,Gs) :- % G assumed to never failget_samples61,1575 -get_samples(N,G,Gs) :- % G assumed to never failget_samples61,1575 -get_samples_c(N,G,Gs) :- get_samples_c(N,G,true,Gs).get_samples_c73,1952 -get_samples_c(N,G,Gs) :- get_samples_c(N,G,true,Gs).get_samples_c73,1952 -get_samples_c(N,G,Gs) :- get_samples_c(N,G,true,Gs).get_samples_c73,1952 -get_samples_c(N,G,Gs) :- get_samples_c(N,G,true,Gs).get_samples_c73,1952 -get_samples_c(N,G,Gs) :- get_samples_c(N,G,true,Gs).get_samples_c73,1952 -get_samples_c(N,G,C,Gs) :-get_samples_c75,2006 -get_samples_c(N,G,C,Gs) :-get_samples_c75,2006 -get_samples_c(N,G,C,Gs) :-get_samples_c75,2006 -get_samples_c(PairN,PairG,C,Gs,[NS,NF]) :-get_samples_c80,2168 -get_samples_c(PairN,PairG,C,Gs,[NS,NF]) :-get_samples_c80,2168 -get_samples_c(PairN,PairG,C,Gs,[NS,NF]) :-get_samples_c80,2168 - -packages/prism/src/prolog/up/switch.pl,22160 -set_sw(Sw) :- set_sw(Sw,default).set_sw4,133 -set_sw(Sw) :- set_sw(Sw,default).set_sw4,133 -set_sw(Sw) :- set_sw(Sw,default).set_sw4,133 -set_sw(Sw) :- set_sw(Sw,default).set_sw4,133 -set_sw(Sw) :- set_sw(Sw,default).set_sw4,133 -set_sw(Sw,Dist) :-set_sw6,168 -set_sw(Sw,Dist) :-set_sw6,168 -set_sw(Sw,Dist) :-set_sw6,168 -set_sw_all :- $pp_set_sw_all(_,default).set_sw_all23,743 -set_sw_all(Sw) :- $pp_set_sw_all(Sw,default).set_sw_all24,793 -set_sw_all(Sw) :- $pp_set_sw_all(Sw,default).set_sw_all24,793 -set_sw_all(Sw) :- $pp_set_sw_all(Sw,default).set_sw_all24,793 -set_sw_all(Sw) :- $pp_set_sw_all(Sw,default).set_sw_all24,793 -set_sw_all(Sw) :- $pp_set_sw_all(Sw,default).set_sw_all24,793 -set_sw_all(Sw,Dist) :- $pp_set_sw_all(Sw,Dist).set_sw_all25,844 -set_sw_all(Sw,Dist) :- $pp_set_sw_all(Sw,Dist).set_sw_all25,844 -set_sw_all(Sw,Dist) :- $pp_set_sw_all(Sw,Dist).set_sw_all25,844 -set_sw_all(Sw,Dist) :- $pp_set_sw_all(Sw,Dist).set_sw_all25,844 -set_sw_all(Sw,Dist) :- $pp_set_sw_all(Sw,Dist).set_sw_all25,844 -fix_sw(Sw,Dist) :-fix_sw37,1124 -fix_sw(Sw,Dist) :-fix_sw37,1124 -fix_sw(Sw,Dist) :-fix_sw37,1124 -fix_sw(Sw) :- var(Sw),!,fix_sw45,1374 -fix_sw(Sw) :- var(Sw),!,fix_sw45,1374 -fix_sw(Sw) :- var(Sw),!,fix_sw45,1374 -fix_sw(Sw) :- Sw = [_|_],!,fix_sw51,1480 -fix_sw(Sw) :- Sw = [_|_],!,fix_sw51,1480 -fix_sw(Sw) :- Sw = [_|_],!,fix_sw51,1480 -fix_sw(Sw) :-fix_sw53,1533 -fix_sw(Sw) :-fix_sw53,1533 -fix_sw(Sw) :-fix_sw53,1533 -unfix_sw(Sw) :- var(Sw),!,unfix_sw70,1828 -unfix_sw(Sw) :- var(Sw),!,unfix_sw70,1828 -unfix_sw(Sw) :- var(Sw),!,unfix_sw70,1828 -unfix_sw(SwList) :- SwList = [_|_],!,$pp_unfix_sw_list(SwList).unfix_sw76,1938 -unfix_sw(SwList) :- SwList = [_|_],!,$pp_unfix_sw_list(SwList).unfix_sw76,1938 -unfix_sw(SwList) :- SwList = [_|_],!,$pp_unfix_sw_list(SwList).unfix_sw76,1938 -unfix_sw(SwList) :- SwList = [_|_],!,$pp_unfix_sw_list(SwList).unfix_sw76,1938 -unfix_sw(SwList) :- SwList = [_|_],!,$pp_unfix_sw_list(SwList).unfix_sw76,1938 -unfix_sw(Sw) :-unfix_sw77,2002 -unfix_sw(Sw) :-unfix_sw77,2002 -unfix_sw(Sw) :-unfix_sw77,2002 -show_sw :- show_sw(_).show_sw93,2298 -show_sw(Sw) :-show_sw95,2322 -show_sw(Sw) :-show_sw95,2322 -show_sw(Sw) :-show_sw95,2322 -get_sw(Sw) :-get_sw118,2914 -get_sw(Sw) :-get_sw118,2914 -get_sw(Sw) :-get_sw118,2914 -get_sw(Sw,[Status,Values,Probs]) :-get_sw122,3014 -get_sw(Sw,[Status,Values,Probs]) :-get_sw122,3014 -get_sw(Sw,[Status,Values,Probs]) :-get_sw122,3014 -get_sw(Sw,Status,Values,Probs) :-get_sw128,3202 -get_sw(Sw,Status,Values,Probs) :-get_sw128,3202 -get_sw(Sw,Status,Values,Probs) :-get_sw128,3202 -get_sw(Sw,Status,Values,Probs,Es) :-get_sw132,3353 -get_sw(Sw,Status,Values,Probs,Es) :-get_sw132,3353 -get_sw(Sw,Status,Values,Probs,Es) :-get_sw132,3353 -save_sw :- save_sw('Saved_SW').save_sw139,3574 -save_sw(File) :-save_sw141,3607 -save_sw(File) :-save_sw141,3607 -save_sw(File) :-save_sw141,3607 -restore_sw :- restore_sw('Saved_SW').restore_sw157,4083 -restore_sw(File) :-restore_sw159,4122 -restore_sw(File) :-restore_sw159,4122 -restore_sw(File) :-restore_sw159,4122 -set_sw_a(Sw) :- set_sw_a(Sw,default).set_sw_a173,4486 -set_sw_a(Sw) :- set_sw_a(Sw,default).set_sw_a173,4486 -set_sw_a(Sw) :- set_sw_a(Sw,default).set_sw_a173,4486 -set_sw_a(Sw) :- set_sw_a(Sw,default).set_sw_a173,4486 -set_sw_a(Sw) :- set_sw_a(Sw,default).set_sw_a173,4486 -set_sw_a(Sw,Spec) :-set_sw_a175,4525 -set_sw_a(Sw,Spec) :-set_sw_a175,4525 -set_sw_a(Sw,Spec) :-set_sw_a175,4525 -set_sw_d(Sw) :- set_sw_d(Sw,default).set_sw_d190,5098 -set_sw_d(Sw) :- set_sw_d(Sw,default).set_sw_d190,5098 -set_sw_d(Sw) :- set_sw_d(Sw,default).set_sw_d190,5098 -set_sw_d(Sw) :- set_sw_d(Sw,default).set_sw_d190,5098 -set_sw_d(Sw) :- set_sw_d(Sw,default).set_sw_d190,5098 -set_sw_d(Sw,Spec) :-set_sw_d192,5137 -set_sw_d(Sw,Spec) :-set_sw_d192,5137 -set_sw_d(Sw,Spec) :-set_sw_d192,5137 -set_sw_h(Sw) :- set_sw_d(Sw).set_sw_h229,6432 -set_sw_h(Sw) :- set_sw_d(Sw).set_sw_h229,6432 -set_sw_h(Sw) :- set_sw_d(Sw).set_sw_h229,6432 -set_sw_h(Sw) :- set_sw_d(Sw).set_sw_h229,6432 -set_sw_h(Sw) :- set_sw_d(Sw).set_sw_h229,6432 -set_sw_h(Sw,Spec) :- set_sw_d(Sw,Spec).set_sw_h230,6467 -set_sw_h(Sw,Spec) :- set_sw_d(Sw,Spec).set_sw_h230,6467 -set_sw_h(Sw,Spec) :- set_sw_d(Sw,Spec).set_sw_h230,6467 -set_sw_h(Sw,Spec) :- set_sw_d(Sw,Spec).set_sw_h230,6467 -set_sw_h(Sw,Spec) :- set_sw_d(Sw,Spec).set_sw_h230,6467 -set_sw_all_a :- set_sw_all_a(_).set_sw_all_a235,6601 -set_sw_all_a(Sw) :- set_sw_all_a(Sw,default).set_sw_all_a237,6635 -set_sw_all_a(Sw) :- set_sw_all_a(Sw,default).set_sw_all_a237,6635 -set_sw_all_a(Sw) :- set_sw_all_a(Sw,default).set_sw_all_a237,6635 -set_sw_all_a(Sw) :- set_sw_all_a(Sw,default).set_sw_all_a237,6635 -set_sw_all_a(Sw) :- set_sw_all_a(Sw,default).set_sw_all_a237,6635 -set_sw_all_a(Sw,Spec) :-set_sw_all_a239,6682 -set_sw_all_a(Sw,Spec) :-set_sw_all_a239,6682 -set_sw_all_a(Sw,Spec) :-set_sw_all_a239,6682 -set_sw_all_d :- set_sw_all_d(_).set_sw_all_d249,6907 -set_sw_all_d(Sw) :- set_sw_all_d(Sw,default).set_sw_all_d251,6941 -set_sw_all_d(Sw) :- set_sw_all_d(Sw,default).set_sw_all_d251,6941 -set_sw_all_d(Sw) :- set_sw_all_d(Sw,default).set_sw_all_d251,6941 -set_sw_all_d(Sw) :- set_sw_all_d(Sw,default).set_sw_all_d251,6941 -set_sw_all_d(Sw) :- set_sw_all_d(Sw,default).set_sw_all_d251,6941 -set_sw_all_d(Sw,Spec) :-set_sw_all_d253,6988 -set_sw_all_d(Sw,Spec) :-set_sw_all_d253,6988 -set_sw_all_d(Sw,Spec) :-set_sw_all_d253,6988 -set_sw_all_h :- set_sw_all_d.set_sw_all_h264,7251 -set_sw_all_h(Sw) :- set_sw_all_d(Sw).set_sw_all_h265,7290 -set_sw_all_h(Sw) :- set_sw_all_d(Sw).set_sw_all_h265,7290 -set_sw_all_h(Sw) :- set_sw_all_d(Sw).set_sw_all_h265,7290 -set_sw_all_h(Sw) :- set_sw_all_d(Sw).set_sw_all_h265,7290 -set_sw_all_h(Sw) :- set_sw_all_d(Sw).set_sw_all_h265,7290 -set_sw_all_h(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_all_h266,7333 -set_sw_all_h(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_all_h266,7333 -set_sw_all_h(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_all_h266,7333 -set_sw_all_h(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_all_h266,7333 -set_sw_all_h(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_all_h266,7333 -set_sw_a_all :- set_sw_all_a.set_sw_a_all268,7382 -set_sw_a_all(Sw) :- set_sw_all_a(Sw).set_sw_a_all269,7421 -set_sw_a_all(Sw) :- set_sw_all_a(Sw).set_sw_a_all269,7421 -set_sw_a_all(Sw) :- set_sw_all_a(Sw).set_sw_a_all269,7421 -set_sw_a_all(Sw) :- set_sw_all_a(Sw).set_sw_a_all269,7421 -set_sw_a_all(Sw) :- set_sw_all_a(Sw).set_sw_a_all269,7421 -set_sw_a_all(Sw,Spec) :- set_sw_all_a(Sw,Spec).set_sw_a_all270,7464 -set_sw_a_all(Sw,Spec) :- set_sw_all_a(Sw,Spec).set_sw_a_all270,7464 -set_sw_a_all(Sw,Spec) :- set_sw_all_a(Sw,Spec).set_sw_a_all270,7464 -set_sw_a_all(Sw,Spec) :- set_sw_all_a(Sw,Spec).set_sw_a_all270,7464 -set_sw_a_all(Sw,Spec) :- set_sw_all_a(Sw,Spec).set_sw_a_all270,7464 -set_sw_d_all :- set_sw_all_d.set_sw_d_all272,7513 -set_sw_d_all(Sw) :- set_sw_all_d(Sw).set_sw_d_all273,7552 -set_sw_d_all(Sw) :- set_sw_all_d(Sw).set_sw_d_all273,7552 -set_sw_d_all(Sw) :- set_sw_all_d(Sw).set_sw_d_all273,7552 -set_sw_d_all(Sw) :- set_sw_all_d(Sw).set_sw_d_all273,7552 -set_sw_d_all(Sw) :- set_sw_all_d(Sw).set_sw_d_all273,7552 -set_sw_d_all(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_d_all274,7595 -set_sw_d_all(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_d_all274,7595 -set_sw_d_all(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_d_all274,7595 -set_sw_d_all(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_d_all274,7595 -set_sw_d_all(Sw,Spec) :- set_sw_all_d(Sw,Spec).set_sw_d_all274,7595 -set_sw_h_all :- set_sw_all_h.set_sw_h_all276,7644 -set_sw_h_all(Sw) :- set_sw_all_h(Sw).set_sw_h_all277,7683 -set_sw_h_all(Sw) :- set_sw_all_h(Sw).set_sw_h_all277,7683 -set_sw_h_all(Sw) :- set_sw_all_h(Sw).set_sw_h_all277,7683 -set_sw_h_all(Sw) :- set_sw_all_h(Sw).set_sw_h_all277,7683 -set_sw_h_all(Sw) :- set_sw_all_h(Sw).set_sw_h_all277,7683 -set_sw_h_all(Sw,Spec) :- set_sw_all_h(Sw,Spec).set_sw_h_all278,7726 -set_sw_h_all(Sw,Spec) :- set_sw_all_h(Sw,Spec).set_sw_h_all278,7726 -set_sw_h_all(Sw,Spec) :- set_sw_all_h(Sw,Spec).set_sw_h_all278,7726 -set_sw_h_all(Sw,Spec) :- set_sw_all_h(Sw,Spec).set_sw_h_all278,7726 -set_sw_h_all(Sw,Spec) :- set_sw_all_h(Sw,Spec).set_sw_h_all278,7726 -fix_sw_a(Sw,Spec) :-fix_sw_a282,7839 -fix_sw_a(Sw,Spec) :-fix_sw_a282,7839 -fix_sw_a(Sw,Spec) :-fix_sw_a282,7839 -fix_sw_a(Sw) :- var(Sw),!,fix_sw_a290,8106 -fix_sw_a(Sw) :- var(Sw),!,fix_sw_a290,8106 -fix_sw_a(Sw) :- var(Sw),!,fix_sw_a290,8106 -fix_sw_a(Sw) :- Sw = [_|_],!,fix_sw_a296,8218 -fix_sw_a(Sw) :- Sw = [_|_],!,fix_sw_a296,8218 -fix_sw_a(Sw) :- Sw = [_|_],!,fix_sw_a296,8218 -fix_sw_a(Sw) :-fix_sw_a298,8275 -fix_sw_a(Sw) :-fix_sw_a298,8275 -fix_sw_a(Sw) :-fix_sw_a298,8275 -fix_sw_d(Sw,Spec) :-fix_sw_d310,8487 -fix_sw_d(Sw,Spec) :-fix_sw_d310,8487 -fix_sw_d(Sw,Spec) :-fix_sw_d310,8487 -fix_sw_d(Sw) :- var(Sw),!,fix_sw_d318,8754 -fix_sw_d(Sw) :- var(Sw),!,fix_sw_d318,8754 -fix_sw_d(Sw) :- var(Sw),!,fix_sw_d318,8754 -fix_sw_d(Sw) :- Sw = [_|_],!,fix_sw_d324,8866 -fix_sw_d(Sw) :- Sw = [_|_],!,fix_sw_d324,8866 -fix_sw_d(Sw) :- Sw = [_|_],!,fix_sw_d324,8866 -fix_sw_d(Sw) :-fix_sw_d326,8923 -fix_sw_d(Sw) :-fix_sw_d326,8923 -fix_sw_d(Sw) :-fix_sw_d326,8923 -fix_sw_h(Sw,Spec) :- fix_sw_d(Sw,Spec).fix_sw_h345,9300 -fix_sw_h(Sw,Spec) :- fix_sw_d(Sw,Spec).fix_sw_h345,9300 -fix_sw_h(Sw,Spec) :- fix_sw_d(Sw,Spec).fix_sw_h345,9300 -fix_sw_h(Sw,Spec) :- fix_sw_d(Sw,Spec).fix_sw_h345,9300 -fix_sw_h(Sw,Spec) :- fix_sw_d(Sw,Spec).fix_sw_h345,9300 -fix_sw_h(Sw) :- fix_sw_d(Sw).fix_sw_h346,9340 -fix_sw_h(Sw) :- fix_sw_d(Sw).fix_sw_h346,9340 -fix_sw_h(Sw) :- fix_sw_d(Sw).fix_sw_h346,9340 -fix_sw_h(Sw) :- fix_sw_d(Sw).fix_sw_h346,9340 -fix_sw_h(Sw) :- fix_sw_d(Sw).fix_sw_h346,9340 -unfix_sw_d(Sw) :- var(Sw),!,unfix_sw_d350,9435 -unfix_sw_d(Sw) :- var(Sw),!,unfix_sw_d350,9435 -unfix_sw_d(Sw) :- var(Sw),!,unfix_sw_d350,9435 -unfix_sw_d(SwList) :- SwList = [_|_],!,unfix_sw_d356,9551 -unfix_sw_d(SwList) :- SwList = [_|_],!,unfix_sw_d356,9551 -unfix_sw_d(SwList) :- SwList = [_|_],!,unfix_sw_d356,9551 -unfix_sw_d(Sw) :-unfix_sw_d358,9624 -unfix_sw_d(Sw) :-unfix_sw_d358,9624 -unfix_sw_d(Sw) :-unfix_sw_d358,9624 -unfix_sw_a(Sw) :- unfix_sw_d(Sw).unfix_sw_a377,9954 -unfix_sw_a(Sw) :- unfix_sw_d(Sw).unfix_sw_a377,9954 -unfix_sw_a(Sw) :- unfix_sw_d(Sw).unfix_sw_a377,9954 -unfix_sw_a(Sw) :- unfix_sw_d(Sw).unfix_sw_a377,9954 -unfix_sw_a(Sw) :- unfix_sw_d(Sw).unfix_sw_a377,9954 -unfix_sw_h(Sw) :- unfix_sw_d(Sw).unfix_sw_h378,9988 -unfix_sw_h(Sw) :- unfix_sw_d(Sw).unfix_sw_h378,9988 -unfix_sw_h(Sw) :- unfix_sw_d(Sw).unfix_sw_h378,9988 -unfix_sw_h(Sw) :- unfix_sw_d(Sw).unfix_sw_h378,9988 -unfix_sw_h(Sw) :- unfix_sw_d(Sw).unfix_sw_h378,9988 -show_sw_a :- show_sw_a(_).show_sw_a382,10049 -show_sw_a(Sw) :-show_sw_a384,10077 -show_sw_a(Sw) :-show_sw_a384,10077 -show_sw_a(Sw) :-show_sw_a384,10077 -show_sw_d :- show_sw_d(_).show_sw_d406,10675 -show_sw_d(Sw) :-show_sw_d408,10703 -show_sw_d(Sw) :-show_sw_d408,10703 -show_sw_d(Sw) :-show_sw_d408,10703 -show_sw_h :- show_sw_d.show_sw_h432,11313 -show_sw_h(Sw) :- show_sw_d(Sw).show_sw_h433,11341 -show_sw_h(Sw) :- show_sw_d(Sw).show_sw_h433,11341 -show_sw_h(Sw) :- show_sw_d(Sw).show_sw_h433,11341 -show_sw_h(Sw) :- show_sw_d(Sw).show_sw_h433,11341 -show_sw_h(Sw) :- show_sw_d(Sw).show_sw_h433,11341 -show_sw_pa :- show_sw_pa(_).show_sw_pa437,11420 -show_sw_pa(Sw) :-show_sw_pa439,11450 -show_sw_pa(Sw) :-show_sw_pa439,11450 -show_sw_pa(Sw) :-show_sw_pa439,11450 -show_sw_pd :- show_sw_pd(_).show_sw_pd472,12507 -show_sw_pd(Sw) :-show_sw_pd474,12537 -show_sw_pd(Sw) :-show_sw_pd474,12537 -show_sw_pd(Sw) :-show_sw_pd474,12537 -show_sw_b :- show_sw_pd.show_sw_b509,13606 -show_sw_b(Sw) :- show_sw_pd(Sw).show_sw_b510,13635 -show_sw_b(Sw) :- show_sw_pd(Sw).show_sw_b510,13635 -show_sw_b(Sw) :- show_sw_pd(Sw).show_sw_b510,13635 -show_sw_b(Sw) :- show_sw_pd(Sw).show_sw_b510,13635 -show_sw_b(Sw) :- show_sw_pd(Sw).show_sw_b510,13635 -get_sw_a(Sw) :-get_sw_a514,13723 -get_sw_a(Sw) :-get_sw_a514,13723 -get_sw_a(Sw) :-get_sw_a514,13723 -get_sw_a(Sw,[Status,Values,Alphas]) :- get_sw_a(Sw,Status,Values,Alphas).get_sw_a518,13829 -get_sw_a(Sw,[Status,Values,Alphas]) :- get_sw_a(Sw,Status,Values,Alphas).get_sw_a518,13829 -get_sw_a(Sw,[Status,Values,Alphas]) :- get_sw_a(Sw,Status,Values,Alphas).get_sw_a518,13829 -get_sw_a(Sw,[Status,Values,Alphas]) :- get_sw_a(Sw,Status,Values,Alphas).get_sw_a518,13829 -get_sw_a(Sw,[Status,Values,Alphas]) :- get_sw_a(Sw,Status,Values,Alphas).get_sw_a518,13829 -get_sw_a(Sw,Status,Values,Alphas) :-get_sw_a520,13904 -get_sw_a(Sw,Status,Values,Alphas) :-get_sw_a520,13904 -get_sw_a(Sw,Status,Values,Alphas) :-get_sw_a520,13904 -get_sw_a(Sw,Status,Values,Alphas,Es) :-get_sw_a524,14067 -get_sw_a(Sw,Status,Values,Alphas,Es) :-get_sw_a524,14067 -get_sw_a(Sw,Status,Values,Alphas,Es) :-get_sw_a524,14067 -get_sw_d(Sw) :-get_sw_d529,14273 -get_sw_d(Sw) :-get_sw_d529,14273 -get_sw_d(Sw) :-get_sw_d529,14273 -get_sw_d(Sw,[Status,Values,Deltas]) :- get_sw_d(Sw,Status,Values,Deltas).get_sw_d533,14379 -get_sw_d(Sw,[Status,Values,Deltas]) :- get_sw_d(Sw,Status,Values,Deltas).get_sw_d533,14379 -get_sw_d(Sw,[Status,Values,Deltas]) :- get_sw_d(Sw,Status,Values,Deltas).get_sw_d533,14379 -get_sw_d(Sw,[Status,Values,Deltas]) :- get_sw_d(Sw,Status,Values,Deltas).get_sw_d533,14379 -get_sw_d(Sw,[Status,Values,Deltas]) :- get_sw_d(Sw,Status,Values,Deltas).get_sw_d533,14379 -get_sw_d(Sw,Status,Values,Deltas) :-get_sw_d535,14454 -get_sw_d(Sw,Status,Values,Deltas) :-get_sw_d535,14454 -get_sw_d(Sw,Status,Values,Deltas) :-get_sw_d535,14454 -get_sw_d(Sw,Status,Values,Deltas,Es) :-get_sw_d539,14617 -get_sw_d(Sw,Status,Values,Deltas,Es) :-get_sw_d539,14617 -get_sw_d(Sw,Status,Values,Deltas,Es) :-get_sw_d539,14617 -get_sw_h(Sw) :- get_sw_d(Sw).get_sw_h546,14830 -get_sw_h(Sw) :- get_sw_d(Sw).get_sw_h546,14830 -get_sw_h(Sw) :- get_sw_d(Sw).get_sw_h546,14830 -get_sw_h(Sw) :- get_sw_d(Sw).get_sw_h546,14830 -get_sw_h(Sw) :- get_sw_d(Sw).get_sw_h546,14830 -get_sw_h(Sw,Info) :- get_sw_d(Sw,Info).get_sw_h547,14873 -get_sw_h(Sw,Info) :- get_sw_d(Sw,Info).get_sw_h547,14873 -get_sw_h(Sw,Info) :- get_sw_d(Sw,Info).get_sw_h547,14873 -get_sw_h(Sw,Info) :- get_sw_d(Sw,Info).get_sw_h547,14873 -get_sw_h(Sw,Info) :- get_sw_d(Sw,Info).get_sw_h547,14873 -get_sw_h(Sw,Status,Vs,Ds) :- get_sw_d(Sw,Status,Vs,Ds).get_sw_h548,14921 -get_sw_h(Sw,Status,Vs,Ds) :- get_sw_d(Sw,Status,Vs,Ds).get_sw_h548,14921 -get_sw_h(Sw,Status,Vs,Ds) :- get_sw_d(Sw,Status,Vs,Ds).get_sw_h548,14921 -get_sw_h(Sw,Status,Vs,Ds) :- get_sw_d(Sw,Status,Vs,Ds).get_sw_h548,14921 -get_sw_h(Sw,Status,Vs,Ds) :- get_sw_d(Sw,Status,Vs,Ds).get_sw_h548,14921 -get_sw_pa(Sw) :-get_sw_pa552,15052 -get_sw_pa(Sw) :-get_sw_pa552,15052 -get_sw_pa(Sw) :-get_sw_pa552,15052 -get_sw_pa(Sw,[StatusPair,Values,Probs,Alphas]) :-get_sw_pa556,15180 -get_sw_pa(Sw,[StatusPair,Values,Probs,Alphas]) :-get_sw_pa556,15180 -get_sw_pa(Sw,[StatusPair,Values,Probs,Alphas]) :-get_sw_pa556,15180 -get_sw_pa(Sw,[StatusP,StatusH],Values,Probs,Alphas) :-get_sw_pa559,15281 -get_sw_pa(Sw,[StatusP,StatusH],Values,Probs,Alphas) :-get_sw_pa559,15281 -get_sw_pa(Sw,[StatusP,StatusH],Values,Probs,Alphas) :-get_sw_pa559,15281 -get_sw_pa(Sw,[StatusP,StatusH],Values,Probs,Alphas,Es) :-get_sw_pa565,15578 -get_sw_pa(Sw,[StatusP,StatusH],Values,Probs,Alphas,Es) :-get_sw_pa565,15578 -get_sw_pa(Sw,[StatusP,StatusH],Values,Probs,Alphas,Es) :-get_sw_pa565,15578 -get_sw_pd(Sw) :-get_sw_pd572,15918 -get_sw_pd(Sw) :-get_sw_pd572,15918 -get_sw_pd(Sw) :-get_sw_pd572,15918 -get_sw_pd(Sw,[StatusPair,Values,Probs,Deltas]) :-get_sw_pd576,16046 -get_sw_pd(Sw,[StatusPair,Values,Probs,Deltas]) :-get_sw_pd576,16046 -get_sw_pd(Sw,[StatusPair,Values,Probs,Deltas]) :-get_sw_pd576,16046 -get_sw_pd(Sw,[StatusP,StatusH],Values,Probs,Deltas) :-get_sw_pd579,16147 -get_sw_pd(Sw,[StatusP,StatusH],Values,Probs,Deltas) :-get_sw_pd579,16147 -get_sw_pd(Sw,[StatusP,StatusH],Values,Probs,Deltas) :-get_sw_pd579,16147 -get_sw_pd(Sw,[StatusP,StatusH],Values,Probs,Deltas,Es) :-get_sw_pd585,16444 -get_sw_pd(Sw,[StatusP,StatusH],Values,Probs,Deltas,Es) :-get_sw_pd585,16444 -get_sw_pd(Sw,[StatusP,StatusH],Values,Probs,Deltas,Es) :-get_sw_pd585,16444 -get_sw_b(Sw) :- get_sw_pd(Sw).get_sw_b594,16791 -get_sw_b(Sw) :- get_sw_pd(Sw).get_sw_b594,16791 -get_sw_b(Sw) :- get_sw_pd(Sw).get_sw_b594,16791 -get_sw_b(Sw) :- get_sw_pd(Sw).get_sw_b594,16791 -get_sw_b(Sw) :- get_sw_pd(Sw).get_sw_b594,16791 -get_sw_b(Sw,Info) :- get_sw_pd(Sw,Info).get_sw_b595,16840 -get_sw_b(Sw,Info) :- get_sw_pd(Sw,Info).get_sw_b595,16840 -get_sw_b(Sw,Info) :- get_sw_pd(Sw,Info).get_sw_b595,16840 -get_sw_b(Sw,Info) :- get_sw_pd(Sw,Info).get_sw_b595,16840 -get_sw_b(Sw,Info) :- get_sw_pd(Sw,Info).get_sw_b595,16840 -get_sw_b(Sw,StatusPH,Vs,Ps,Ds) :- get_sw_pd(Sw,StatusPH,Vs,Ps,Ds).get_sw_b596,16894 -get_sw_b(Sw,StatusPH,Vs,Ps,Ds) :- get_sw_pd(Sw,StatusPH,Vs,Ps,Ds).get_sw_b596,16894 -get_sw_b(Sw,StatusPH,Vs,Ps,Ds) :- get_sw_pd(Sw,StatusPH,Vs,Ps,Ds).get_sw_b596,16894 -get_sw_b(Sw,StatusPH,Vs,Ps,Ds) :- get_sw_pd(Sw,StatusPH,Vs,Ps,Ds).get_sw_b596,16894 -get_sw_b(Sw,StatusPH,Vs,Ps,Ds) :- get_sw_pd(Sw,StatusPH,Vs,Ps,Ds).get_sw_b596,16894 -save_sw_a :- save_sw_a('Saved_SW_A').save_sw_a600,16989 -save_sw_a(File) :-save_sw_a602,17028 -save_sw_a(File) :-save_sw_a602,17028 -save_sw_a(File) :-save_sw_a602,17028 -save_sw_d :- save_sw_d('Saved_SW_D').save_sw_d613,17336 -save_sw_d(File) :-save_sw_d615,17375 -save_sw_d(File) :-save_sw_d615,17375 -save_sw_d(File) :-save_sw_d615,17375 -save_sw_h :- save_sw_d.save_sw_h633,17869 -save_sw_h(File) :- save_sw_d(File).save_sw_h634,17899 -save_sw_h(File) :- save_sw_d(File).save_sw_h634,17899 -save_sw_h(File) :- save_sw_d(File).save_sw_h634,17899 -save_sw_h(File) :- save_sw_d(File).save_sw_h634,17899 -save_sw_h(File) :- save_sw_d(File).save_sw_h634,17899 -restore_sw_a :- restore_sw_a('Saved_SW_A').restore_sw_a638,17966 -restore_sw_a(File) :-restore_sw_a640,18011 -restore_sw_a(File) :-restore_sw_a640,18011 -restore_sw_a(File) :-restore_sw_a640,18011 -restore_sw_d :- restore_sw_d('Saved_SW_D').restore_sw_d651,18237 -restore_sw_d(File) :-restore_sw_d653,18282 -restore_sw_d(File) :-restore_sw_d653,18282 -restore_sw_d(File) :-restore_sw_d653,18282 -restore_sw_h :- restore_sw_d.restore_sw_h666,18520 -restore_sw_h(File) :- restore_sw_d(File).restore_sw_h667,18556 -restore_sw_h(File) :- restore_sw_d(File).restore_sw_h667,18556 -restore_sw_h(File) :- restore_sw_d(File).restore_sw_h667,18556 -restore_sw_h(File) :- restore_sw_d(File).restore_sw_h667,18556 -restore_sw_h(File) :- restore_sw_d(File).restore_sw_h667,18556 -save_sw_pa :- save_sw, save_sw_a.save_sw_pa671,18646 -save_sw_pa(FileP,FileA) :-save_sw_pa673,18681 -save_sw_pa(FileP,FileA) :-save_sw_pa673,18681 -save_sw_pa(FileP,FileA) :-save_sw_pa673,18681 -save_sw_pd :- save_sw, save_sw_d.save_sw_pd677,18753 -save_sw_pd(FileP,FileD) :-save_sw_pd679,18788 -save_sw_pd(FileP,FileD) :-save_sw_pd679,18788 -save_sw_pd(FileP,FileD) :-save_sw_pd679,18788 -save_sw_b :- save_sw_pd.save_sw_b685,18872 -save_sw_b(FileP,FileD) :- save_sw_pd(FileP,FileD).save_sw_b686,18910 -save_sw_b(FileP,FileD) :- save_sw_pd(FileP,FileD).save_sw_b686,18910 -save_sw_b(FileP,FileD) :- save_sw_pd(FileP,FileD).save_sw_b686,18910 -save_sw_b(FileP,FileD) :- save_sw_pd(FileP,FileD).save_sw_b686,18910 -save_sw_b(FileP,FileD) :- save_sw_pd(FileP,FileD).save_sw_b686,18910 -restore_sw_pa :- restore_sw, restore_sw_a.restore_sw_pa690,19012 -restore_sw_pa(FileP,FileA) :-restore_sw_pa692,19056 -restore_sw_pa(FileP,FileA) :-restore_sw_pa692,19056 -restore_sw_pa(FileP,FileA) :-restore_sw_pa692,19056 -restore_sw_pd :- restore_sw, restore_sw_d.restore_sw_pd696,19137 -restore_sw_pd(FileP,FileD) :-restore_sw_pd698,19181 -restore_sw_pd(FileP,FileD) :-restore_sw_pd698,19181 -restore_sw_pd(FileP,FileD) :-restore_sw_pd698,19181 -restore_sw_b :- restore_sw_pd.restore_sw_b704,19274 -restore_sw_b(FileP,FileD) :- restore_sw_pd(FileP,FileD).restore_sw_b705,19318 -restore_sw_b(FileP,FileD) :- restore_sw_pd(FileP,FileD).restore_sw_b705,19318 -restore_sw_b(FileP,FileD) :- restore_sw_pd(FileP,FileD).restore_sw_b705,19318 -restore_sw_b(FileP,FileD) :- restore_sw_pd(FileP,FileD).restore_sw_b705,19318 -restore_sw_b(FileP,FileD) :- restore_sw_pd(FileP,FileD).restore_sw_b705,19318 -get_values(Sw,Values) :-get_values714,19668 -get_values(Sw,Values) :-get_values714,19668 -get_values(Sw,Values) :-get_values714,19668 -get_values0(Sw,Values) :-get_values0719,19833 -get_values0(Sw,Values) :-get_values0719,19833 -get_values0(Sw,Values) :-get_values0719,19833 -get_values1(Sw,Values) :-get_values1725,20040 -get_values1(Sw,Values) :-get_values1725,20040 -get_values1(Sw,Values) :-get_values1725,20040 -show_reg_sw :-show_reg_sw805,22915 -get_reg_sw(Sw) :-get_reg_sw818,23198 -get_reg_sw(Sw) :-get_reg_sw818,23198 -get_reg_sw(Sw) :-get_reg_sw818,23198 -get_reg_sw_list(Sws) :-get_reg_sw_list822,23267 -get_reg_sw_list(Sws) :-get_reg_sw_list822,23267 -get_reg_sw_list(Sws) :-get_reg_sw_list822,23267 -alpha_to_delta(Alphas,Deltas) :-alpha_to_delta828,23402 -alpha_to_delta(Alphas,Deltas) :-alpha_to_delta828,23402 -alpha_to_delta(Alphas,Deltas) :-alpha_to_delta828,23402 -delta_to_alpha(Deltas,Alphas) :-delta_to_alpha837,23699 -delta_to_alpha(Deltas,Alphas) :-delta_to_alpha837,23699 -delta_to_alpha(Deltas,Alphas) :-delta_to_alpha837,23699 - -packages/prism/src/prolog/up/util.pl,4659 -err_msg(Msg) :-err_msg4,73 -err_msg(Msg) :-err_msg4,73 -err_msg(Msg) :-err_msg4,73 -err_msg(Msg,Vars) :-err_msg7,163 -err_msg(Msg,Vars) :-err_msg7,163 -err_msg(Msg,Vars) :-err_msg7,163 -warn_msg(Msg) :-warn_msg11,265 -warn_msg(Msg) :-warn_msg11,265 -warn_msg(Msg) :-warn_msg11,265 -warn_msg(Msg,Vars) :-warn_msg16,399 -warn_msg(Msg,Vars) :-warn_msg16,399 -warn_msg(Msg,Vars) :-warn_msg16,399 -show_goals :-show_goals155,4765 -show_goals :-show_goals160,4967 -get_goals(Gs) :-get_goals179,5658 -get_goals(Gs) :-get_goals179,5658 -get_goals(Gs) :-get_goals179,5658 -get_goal_counts(GCounts) :-get_goal_counts195,6207 -get_goal_counts(GCounts) :-get_goal_counts195,6207 -get_goal_counts(GCounts) :-get_goal_counts195,6207 -prism_statistics(Name,L) :-prism_statistics215,7068 -prism_statistics(Name,L) :-prism_statistics215,7068 -prism_statistics(Name,L) :-prism_statistics215,7068 -graph_statistics(Name,L) :-graph_statistics221,7197 -graph_statistics(Name,L) :-graph_statistics221,7197 -graph_statistics(Name,L) :-graph_statistics221,7197 -learn_statistics(Name,L) :-learn_statistics235,7610 -learn_statistics(Name,L) :-learn_statistics235,7610 -learn_statistics(Name,L) :-learn_statistics235,7610 -infer_statistics(Name,L) :-infer_statistics273,8940 -infer_statistics(Name,L) :-infer_statistics273,8940 -infer_statistics(Name,L) :-infer_statistics273,8940 -prism_statistics :-prism_statistics283,9224 -learn_statistics :-learn_statistics291,9390 -graph_statistics :-graph_statistics299,9559 -infer_statistics :-infer_statistics307,9754 -load_clauses(FileName,Clauses) :-load_clauses325,10296 -load_clauses(FileName,Clauses) :-load_clauses325,10296 -load_clauses(FileName,Clauses) :-load_clauses325,10296 -load_clauses(FileName,Clauses,From,Size) :-load_clauses328,10370 -load_clauses(FileName,Clauses,From,Size) :-load_clauses328,10370 -load_clauses(FileName,Clauses,From,Size) :-load_clauses328,10370 -load_clauses(FileName,Clauses,Opts) :-load_clauses332,10542 -load_clauses(FileName,Clauses,Opts) :-load_clauses332,10542 -load_clauses(FileName,Clauses,Opts) :-load_clauses332,10542 -save_clauses(FileName,Clauses) :-save_clauses365,11568 -save_clauses(FileName,Clauses) :-save_clauses365,11568 -save_clauses(FileName,Clauses) :-save_clauses365,11568 -save_clauses(FileName,Clauses,From,Size) :-save_clauses368,11642 -save_clauses(FileName,Clauses,From,Size) :-save_clauses368,11642 -save_clauses(FileName,Clauses,From,Size) :-save_clauses368,11642 -save_clauses(FileName,Clauses,Opts) :-save_clauses372,11814 -save_clauses(FileName,Clauses,Opts) :-save_clauses372,11814 -save_clauses(FileName,Clauses,Opts) :-save_clauses372,11814 -load_csv(FileName,Rows) :-load_csv398,12714 -load_csv(FileName,Rows) :-load_csv398,12714 -load_csv(FileName,Rows) :-load_csv398,12714 -load_csv(FileName,Rows,Opts) :-load_csv401,12774 -load_csv(FileName,Rows,Opts) :-load_csv401,12774 -load_csv(FileName,Rows,Opts) :-load_csv401,12774 -print_graph(G) :-print_graph581,19249 -print_graph(G) :-print_graph581,19249 -print_graph(G) :-print_graph581,19249 -print_graph(G,Opts) :-print_graph584,19313 -print_graph(G,Opts) :-print_graph584,19313 -print_graph(G,Opts) :-print_graph584,19313 -print_graph(S,G,Opts) :-print_graph587,19382 -print_graph(S,G,Opts) :-print_graph587,19382 -print_graph(S,G,Opts) :-print_graph587,19382 -print_tree(T) :-print_tree675,22618 -print_tree(T) :-print_tree675,22618 -print_tree(T) :-print_tree675,22618 -print_tree(T,Opts) :-print_tree678,22678 -print_tree(T,Opts) :-print_tree678,22678 -print_tree(T,Opts) :-print_tree678,22678 -print_tree(S,T,Opts) :-print_tree681,22745 -print_tree(S,T,Opts) :-print_tree681,22745 -print_tree(S,T,Opts) :-print_tree681,22745 -strip_switches(G0,G1) :-strip_switches717,23761 -strip_switches(G0,G1) :-strip_switches717,23761 -strip_switches(G0,G1) :-strip_switches717,23761 -write_call(Goal) :-write_call733,24218 -write_call(Goal) :-write_call733,24218 -write_call(Goal) :-write_call733,24218 -write_call(Opts,Goal) :-write_call736,24264 -write_call(Opts,Goal) :-write_call736,24264 -write_call(Opts,Goal) :-write_call736,24264 -disable_write_call :-disable_write_call746,24560 -expand_values(Ns,ExpandedNs) :-expand_values876,29704 -expand_values(Ns,ExpandedNs) :-expand_values876,29704 -expand_values(Ns,ExpandedNs) :-expand_values876,29704 -expand_values1(Ns,ExpandedNs) :-expand_values1882,29927 -expand_values1(Ns,ExpandedNs) :-expand_values1882,29927 -expand_values1(Ns,ExpandedNs) :-expand_values1882,29927 -lngamma(X,G) :-lngamma921,31027 -lngamma(X,G) :-lngamma921,31027 -lngamma(X,G) :-lngamma921,31027 - -packages/prism/src/prolog/up/viterbi.pl,11490 -viterbi(G) :-viterbi3,23 -viterbi(G) :-viterbi3,23 -viterbi(G) :-viterbi3,23 -viterbi(G,P) :-viterbi5,74 -viterbi(G,P) :-viterbi5,74 -viterbi(G,P) :-viterbi5,74 -viterbif(G) :-viterbif7,129 -viterbif(G) :-viterbif7,129 -viterbif(G) :-viterbif7,129 -viterbif(G,P,V) :-viterbif9,182 -viterbif(G,P,V) :-viterbif9,182 -viterbif(G,P,V) :-viterbif9,182 -viterbit(G) :-viterbit11,243 -viterbit(G) :-viterbit11,243 -viterbit(G) :-viterbit11,243 -viterbit(G,P,T) :-viterbit13,296 -viterbit(G,P,T) :-viterbit13,296 -viterbit(G,P,T) :-viterbit13,296 -n_viterbi(N,G) :-n_viterbi15,357 -n_viterbi(N,G) :-n_viterbi15,357 -n_viterbi(N,G) :-n_viterbi15,357 -n_viterbi(N,G,P) :-n_viterbi17,416 -n_viterbi(N,G,P) :-n_viterbi17,416 -n_viterbi(N,G,P) :-n_viterbi17,416 -n_viterbif(N,G) :-n_viterbif19,479 -n_viterbif(N,G) :-n_viterbif19,479 -n_viterbif(N,G) :-n_viterbif19,479 -n_viterbif(N,G,V) :-n_viterbif21,540 -n_viterbif(N,G,V) :-n_viterbif21,540 -n_viterbif(N,G,V) :-n_viterbif21,540 -n_viterbit(N,G) :-n_viterbit23,605 -n_viterbit(N,G) :-n_viterbit23,605 -n_viterbit(N,G) :-n_viterbit23,605 -n_viterbit(N,G,T) :-n_viterbit25,666 -n_viterbit(N,G,T) :-n_viterbit25,666 -n_viterbit(N,G,T) :-n_viterbit25,666 -viterbig(G) :-viterbig27,731 -viterbig(G) :-viterbig27,731 -viterbig(G) :-viterbig27,731 -viterbig(G,P) :-viterbig29,784 -viterbig(G,P) :-viterbig29,784 -viterbig(G,P) :-viterbig29,784 -viterbig(G,P,V) :-viterbig31,841 -viterbig(G,P,V) :-viterbig31,841 -viterbig(G,P,V) :-viterbig31,841 -n_viterbig(N,G) :-n_viterbig33,902 -n_viterbig(N,G) :-n_viterbig33,902 -n_viterbig(N,G) :-n_viterbig33,902 -n_viterbig(N,G,P) :-n_viterbig35,963 -n_viterbig(N,G,P) :-n_viterbig35,963 -n_viterbig(N,G,P) :-n_viterbig35,963 -n_viterbig(N,G,P,V) :-n_viterbig37,1028 -n_viterbig(N,G,P,V) :-n_viterbig37,1028 -n_viterbig(N,G,P,V) :-n_viterbig37,1028 -viterbi_p(Goal) :-viterbi_p65,1950 -viterbi_p(Goal) :-viterbi_p65,1950 -viterbi_p(Goal) :-viterbi_p65,1950 -viterbi_p(Goal,Pmax) :-viterbi_p69,2033 -viterbi_p(Goal,Pmax) :-viterbi_p69,2033 -viterbi_p(Goal,Pmax) :-viterbi_p69,2033 -viterbif_p(Goal) :-viterbif_p74,2107 -viterbif_p(Goal) :-viterbif_p74,2107 -viterbif_p(Goal) :-viterbif_p74,2107 -viterbif_p(Goal,Pmax,VNodeL) :-viterbif_p80,2253 -viterbif_p(Goal,Pmax,VNodeL) :-viterbif_p80,2253 -viterbif_p(Goal,Pmax,VNodeL) :-viterbif_p80,2253 -viterbit_p(Goal) :-viterbit_p99,2782 -viterbit_p(Goal) :-viterbit_p99,2782 -viterbit_p(Goal) :-viterbit_p99,2782 -viterbit_p(Goal,Pmax,VTreeL) :-viterbit_p105,2916 -viterbit_p(Goal,Pmax,VTreeL) :-viterbit_p105,2916 -viterbit_p(Goal,Pmax,VTreeL) :-viterbit_p105,2916 -viterbig_p(Goal) :-viterbig_p112,3113 -viterbig_p(Goal) :-viterbig_p112,3113 -viterbig_p(Goal) :-viterbig_p112,3113 -viterbig_p(Goal,Pmax) :-viterbig_p117,3206 -viterbig_p(Goal,Pmax) :-viterbig_p117,3206 -viterbig_p(Goal,Pmax) :-viterbig_p117,3206 -viterbig_p(Goal,Pmax,VNodeL) :-viterbig_p122,3312 -viterbig_p(Goal,Pmax,VNodeL) :-viterbig_p122,3312 -viterbig_p(Goal,Pmax,VNodeL) :-viterbig_p122,3312 -n_viterbi_p(N,Goal) :-n_viterbi_p260,8292 -n_viterbi_p(N,Goal) :-n_viterbi_p260,8292 -n_viterbi_p(N,Goal) :-n_viterbi_p260,8292 -n_viterbi_p(N,Goal,Ps) :-n_viterbi_p268,8452 -n_viterbi_p(N,Goal,Ps) :-n_viterbi_p268,8452 -n_viterbi_p(N,Goal,Ps) :-n_viterbi_p268,8452 -n_viterbif_p(N,Goal) :-n_viterbif_p274,8589 -n_viterbif_p(N,Goal) :-n_viterbif_p274,8589 -n_viterbif_p(N,Goal) :-n_viterbif_p274,8589 -n_viterbif_p(N,Goal,VPathL) :-n_viterbif_p278,8683 -n_viterbif_p(N,Goal,VPathL) :-n_viterbif_p278,8683 -n_viterbif_p(N,Goal,VPathL) :-n_viterbif_p278,8683 -n_viterbit_p(N,Goal) :-n_viterbit_p293,9115 -n_viterbit_p(N,Goal) :-n_viterbit_p293,9115 -n_viterbit_p(N,Goal) :-n_viterbit_p293,9115 -n_viterbit_p(N,Goal,VPathL) :-n_viterbit_p297,9209 -n_viterbit_p(N,Goal,VPathL) :-n_viterbit_p297,9209 -n_viterbit_p(N,Goal,VPathL) :-n_viterbit_p297,9209 -n_viterbig_p(N,Goal) :-n_viterbig_p310,9723 -n_viterbig_p(N,Goal) :-n_viterbig_p310,9723 -n_viterbig_p(N,Goal) :-n_viterbig_p310,9723 -n_viterbig_p(N,Goal,Pmax) :-n_viterbig_p315,9828 -n_viterbig_p(N,Goal,Pmax) :-n_viterbig_p315,9828 -n_viterbig_p(N,Goal,Pmax) :-n_viterbig_p315,9828 -n_viterbig_p(N,Goal,Pmax,VNodeL) :-n_viterbig_p320,9962 -n_viterbig_p(N,Goal,Pmax,VNodeL) :-n_viterbig_p320,9962 -n_viterbig_p(N,Goal,Pmax,VNodeL) :-n_viterbig_p320,9962 -viterbi_h(G) :- n_viterbi_h([1,default],G).viterbi_h512,17627 -viterbi_h(G) :- n_viterbi_h([1,default],G).viterbi_h512,17627 -viterbi_h(G) :- n_viterbi_h([1,default],G).viterbi_h512,17627 -viterbi_h(G) :- n_viterbi_h([1,default],G).viterbi_h512,17627 -viterbi_h(G) :- n_viterbi_h([1,default],G).viterbi_h512,17627 -viterbi_h(G,P) :- n_viterbi_h([1,default],G,[P]).viterbi_h513,17673 -viterbi_h(G,P) :- n_viterbi_h([1,default],G,[P]).viterbi_h513,17673 -viterbi_h(G,P) :- n_viterbi_h([1,default],G,[P]).viterbi_h513,17673 -viterbi_h(G,P) :- n_viterbi_h([1,default],G,[P]).viterbi_h513,17673 -viterbi_h(G,P) :- n_viterbi_h([1,default],G,[P]).viterbi_h513,17673 -viterbif_h(G) :- n_viterbif_h([1,default],G).viterbif_h514,17723 -viterbif_h(G) :- n_viterbif_h([1,default],G).viterbif_h514,17723 -viterbif_h(G) :- n_viterbif_h([1,default],G).viterbif_h514,17723 -viterbif_h(G) :- n_viterbif_h([1,default],G).viterbif_h514,17723 -viterbif_h(G) :- n_viterbif_h([1,default],G).viterbif_h514,17723 -viterbif_h(G,P,VPath) :- n_viterbif_h([1,default],G,[v_expl(0,P,VPath)]).viterbif_h515,17770 -viterbif_h(G,P,VPath) :- n_viterbif_h([1,default],G,[v_expl(0,P,VPath)]).viterbif_h515,17770 -viterbif_h(G,P,VPath) :- n_viterbif_h([1,default],G,[v_expl(0,P,VPath)]).viterbif_h515,17770 -viterbif_h(G,P,VPath) :- n_viterbif_h([1,default],G,[v_expl(0,P,VPath)]).viterbif_h515,17770 -viterbif_h(G,P,VPath) :- n_viterbif_h([1,default],G,[v_expl(0,P,VPath)]).viterbif_h515,17770 -viterbit_h(G) :- n_viterbit_h([1,default],G).viterbit_h516,17844 -viterbit_h(G) :- n_viterbit_h([1,default],G).viterbit_h516,17844 -viterbit_h(G) :- n_viterbit_h([1,default],G).viterbit_h516,17844 -viterbit_h(G) :- n_viterbit_h([1,default],G).viterbit_h516,17844 -viterbit_h(G) :- n_viterbit_h([1,default],G).viterbit_h516,17844 -viterbit_h(G,P,VTree) :-viterbit_h517,17890 -viterbit_h(G,P,VTree) :-viterbit_h517,17890 -viterbit_h(G,P,VTree) :-viterbit_h517,17890 -n_viterbi_h([N,M],G) :- !,n_viterbi_h521,18002 -n_viterbi_h([N,M],G) :- !,n_viterbi_h521,18002 -n_viterbi_h([N,M],G) :- !,n_viterbi_h521,18002 -n_viterbi_h(N,G) :- n_viterbi_h([N,default],G).n_viterbi_h528,18168 -n_viterbi_h(N,G) :- n_viterbi_h([N,default],G).n_viterbi_h528,18168 -n_viterbi_h(N,G) :- n_viterbi_h([N,default],G).n_viterbi_h528,18168 -n_viterbi_h(N,G) :- n_viterbi_h([N,default],G).n_viterbi_h528,18168 -n_viterbi_h(N,G) :- n_viterbi_h([N,default],G).n_viterbi_h528,18168 -n_viterbi_h([N,M],G,Ps) :- !,n_viterbi_h530,18217 -n_viterbi_h([N,M],G,Ps) :- !,n_viterbi_h530,18217 -n_viterbi_h([N,M],G,Ps) :- !,n_viterbi_h530,18217 -n_viterbi_h(N,G,Ps) :- n_viterbi_h([N,default],G,Ps).n_viterbi_h533,18337 -n_viterbi_h(N,G,Ps) :- n_viterbi_h([N,default],G,Ps).n_viterbi_h533,18337 -n_viterbi_h(N,G,Ps) :- n_viterbi_h([N,default],G,Ps).n_viterbi_h533,18337 -n_viterbi_h(N,G,Ps) :- n_viterbi_h([N,default],G,Ps).n_viterbi_h533,18337 -n_viterbi_h(N,G,Ps) :- n_viterbi_h([N,default],G,Ps).n_viterbi_h533,18337 -n_viterbif_h([N,M],G) :- !,n_viterbif_h535,18392 -n_viterbif_h([N,M],G) :- !,n_viterbif_h535,18392 -n_viterbif_h([N,M],G) :- !,n_viterbif_h535,18392 -n_viterbif_h(N,G) :-n_viterbif_h538,18490 -n_viterbif_h(N,G) :-n_viterbif_h538,18490 -n_viterbif_h(N,G) :-n_viterbif_h538,18490 -n_viterbif_h([N,M],Goal,VPathL) :- !,n_viterbif_h541,18545 -n_viterbif_h([N,M],Goal,VPathL) :- !,n_viterbif_h541,18545 -n_viterbif_h([N,M],Goal,VPathL) :- !,n_viterbif_h541,18545 -n_viterbif_h(N,G,VPathL) :-n_viterbif_h553,19011 -n_viterbif_h(N,G,VPathL) :-n_viterbif_h553,19011 -n_viterbif_h(N,G,VPathL) :-n_viterbif_h553,19011 -n_viterbit_h([N,M],G) :- !,n_viterbit_h564,19290 -n_viterbit_h([N,M],G) :- !,n_viterbit_h564,19290 -n_viterbit_h([N,M],G) :- !,n_viterbit_h564,19290 -n_viterbit_h(N,G) :-n_viterbit_h567,19388 -n_viterbit_h(N,G) :-n_viterbit_h567,19388 -n_viterbit_h(N,G) :-n_viterbit_h567,19388 -n_viterbit_h([N,M],G,VPathL) :- !,n_viterbit_h570,19443 -n_viterbit_h([N,M],G,VPathL) :- !,n_viterbit_h570,19443 -n_viterbit_h([N,M],G,VPathL) :- !,n_viterbit_h570,19443 -n_viterbit_h(N,G,VPathL) :-n_viterbit_h573,19557 -n_viterbit_h(N,G,VPathL) :-n_viterbit_h573,19557 -n_viterbit_h(N,G,VPathL) :-n_viterbit_h573,19557 -viterbig_h(Goal) :- n_viterbig_h(1,Goal).viterbig_h576,19626 -viterbig_h(Goal) :- n_viterbig_h(1,Goal).viterbig_h576,19626 -viterbig_h(Goal) :- n_viterbig_h(1,Goal).viterbig_h576,19626 -viterbig_h(Goal) :- n_viterbig_h(1,Goal).viterbig_h576,19626 -viterbig_h(Goal) :- n_viterbig_h(1,Goal).viterbig_h576,19626 -viterbig_h(Goal,Pmax) :- n_viterbig_h(1,Goal,Pmax).viterbig_h577,19668 -viterbig_h(Goal,Pmax) :- n_viterbig_h(1,Goal,Pmax).viterbig_h577,19668 -viterbig_h(Goal,Pmax) :- n_viterbig_h(1,Goal,Pmax).viterbig_h577,19668 -viterbig_h(Goal,Pmax) :- n_viterbig_h(1,Goal,Pmax).viterbig_h577,19668 -viterbig_h(Goal,Pmax) :- n_viterbig_h(1,Goal,Pmax).viterbig_h577,19668 -viterbig_h(Goal,Pmax,VNodeL) :- n_viterbig_h(1,Goal,Pmax,VNodeL).viterbig_h578,19720 -viterbig_h(Goal,Pmax,VNodeL) :- n_viterbig_h(1,Goal,Pmax,VNodeL).viterbig_h578,19720 -viterbig_h(Goal,Pmax,VNodeL) :- n_viterbig_h(1,Goal,Pmax,VNodeL).viterbig_h578,19720 -viterbig_h(Goal,Pmax,VNodeL) :- n_viterbig_h(1,Goal,Pmax,VNodeL).viterbig_h578,19720 -viterbig_h(Goal,Pmax,VNodeL) :- n_viterbig_h(1,Goal,Pmax,VNodeL).viterbig_h578,19720 -n_viterbig_h([N,M],Goal) :- !,n_viterbig_h580,19787 -n_viterbig_h([N,M],Goal) :- !,n_viterbig_h580,19787 -n_viterbig_h([N,M],Goal) :- !,n_viterbig_h580,19787 -n_viterbig_h(N,Goal) :-n_viterbig_h584,19906 -n_viterbig_h(N,Goal) :-n_viterbig_h584,19906 -n_viterbig_h(N,Goal) :-n_viterbig_h584,19906 -n_viterbig_h([N,M],Goal,Pmax) :- !,n_viterbig_h589,20011 -n_viterbig_h([N,M],Goal,Pmax) :- !,n_viterbig_h589,20011 -n_viterbig_h([N,M],Goal,Pmax) :- !,n_viterbig_h589,20011 -n_viterbig_h(N,Goal,Pmax) :-n_viterbig_h593,20159 -n_viterbig_h(N,Goal,Pmax) :-n_viterbig_h593,20159 -n_viterbig_h(N,Goal,Pmax) :-n_viterbig_h593,20159 -n_viterbig_h([N,default],Goal,Pmax,VNodeL) :- !,n_viterbig_h598,20293 -n_viterbig_h([N,default],Goal,Pmax,VNodeL) :- !,n_viterbig_h598,20293 -n_viterbig_h([N,default],Goal,Pmax,VNodeL) :- !,n_viterbig_h598,20293 -n_viterbig_h([N,M],Goal,Pmax,VNodeL) :- !,n_viterbig_h601,20416 -n_viterbig_h([N,M],Goal,Pmax,VNodeL) :- !,n_viterbig_h601,20416 -n_viterbig_h([N,M],Goal,Pmax,VNodeL) :- !,n_viterbig_h601,20416 -n_viterbig_h(N,Goal,Pmax,VNodeL) :-n_viterbig_h607,20743 -n_viterbig_h(N,Goal,Pmax,VNodeL) :-n_viterbig_h607,20743 -n_viterbig_h(N,Goal,Pmax,VNodeL) :-n_viterbig_h607,20743 -viterbi_tree(EG,Tree) :-viterbi_tree727,24942 -viterbi_tree(EG,Tree) :-viterbi_tree727,24942 -viterbi_tree(EG,Tree) :-viterbi_tree727,24942 -viterbi_subgoals(VNodes,Goals) :-viterbi_subgoals765,26198 -viterbi_subgoals(VNodes,Goals) :-viterbi_subgoals765,26198 -viterbi_subgoals(VNodes,Goals) :-viterbi_subgoals765,26198 -viterbi_switches(VNodes,Goals) :-viterbi_switches776,26568 -viterbi_switches(VNodes,Goals) :-viterbi_switches776,26568 -viterbi_switches(VNodes,Goals) :-viterbi_switches776,26568 - -packages/prism/src/README,76 -This directory contains the source files of the PRISM part, alongpart3,68 - -packages/ProbLog/aproblog.yap,21748 -:- dynamic calcp/2. % used in lazy evaluationdynamic260,12388 -:- dynamic calcp/2. % used in lazy evaluationdynamic260,12388 -:- dynamic aproblog_cached/4. % cache in depth first searchdynamic261,12454 -:- dynamic aproblog_cached/4. % cache in depth first searchdynamic261,12454 -:- dynamic aproblog_cache_vars/0. % decides whether cache also contains variables which are then used for compensation dynamic262,12523 -:- dynamic aproblog_cache_vars/0. % decides whether cache also contains variables which are then used for compensation dynamic262,12523 -aproblog_flag(F,V) :-aproblog_flag277,13467 -aproblog_flag(F,V) :-aproblog_flag277,13467 -aproblog_flag(F,V) :-aproblog_flag277,13467 -set_aproblog_flag(F,V) :-set_aproblog_flag279,13509 -set_aproblog_flag(F,V) :-set_aproblog_flag279,13509 -set_aproblog_flag(F,V) :-set_aproblog_flag279,13509 -labeled_fact(Label,Goal,ID) :-labeled_fact289,13715 -labeled_fact(Label,Goal,ID) :-labeled_fact289,13715 -labeled_fact(Label,Goal,ID) :-labeled_fact289,13715 -labeled_fact(Label,Goal,ID) :-labeled_fact299,13927 -labeled_fact(Label,Goal,ID) :-labeled_fact299,13927 -labeled_fact(Label,Goal,ID) :-labeled_fact299,13927 -user:term_expansion(_P::( _Goal :- _Body ), _Error) :-term_expansion311,14373 -user:term_expansion(_P::( _Goal :- _Body ), _Error) :-term_expansion311,14373 -user:term_expansion(P::Goal, aproblog:ProbFact) :- term_expansion314,14478 -user:term_expansion(P::Goal, aproblog:ProbFact) :- term_expansion314,14478 -aproblog_predicate(Name, Arity, _) :-aproblog_predicate339,15155 -aproblog_predicate(Name, Arity, _) :-aproblog_predicate339,15155 -aproblog_predicate(Name, Arity, _) :-aproblog_predicate339,15155 -aproblog_predicate(Name, Arity, AproblogName) :-aproblog_predicate342,15231 -aproblog_predicate(Name, Arity, AproblogName) :-aproblog_predicate342,15231 -aproblog_predicate(Name, Arity, AproblogName) :-aproblog_predicate342,15231 -labelclause_id(ID) :-labelclause_id377,16229 -labelclause_id(ID) :-labelclause_id377,16229 -labelclause_id(ID) :-labelclause_id377,16229 -non_ground_fact_grounding_id(Goal,ID) :-non_ground_fact_grounding_id383,16371 -non_ground_fact_grounding_id(Goal,ID) :-non_ground_fact_grounding_id383,16371 -non_ground_fact_grounding_id(Goal,ID) :-non_ground_fact_grounding_id383,16371 -reset_non_ground_facts :-reset_non_ground_facts407,17016 -get_fact_label(ID,Prob) :-get_fact_label412,17166 -get_fact_label(ID,Prob) :-get_fact_label412,17166 -get_fact_label(ID,Prob) :-get_fact_label412,17166 -get_internal_fact(ID,AproblogTerm,AproblogName,AproblogArity) :-get_internal_fact423,17301 -get_internal_fact(ID,AproblogTerm,AproblogName,AproblogArity) :-get_internal_fact423,17301 -get_internal_fact(ID,AproblogTerm,AproblogName,AproblogArity) :-get_internal_fact423,17301 -get_fact(ID,OutsideTerm) :-get_fact432,17646 -get_fact(ID,OutsideTerm) :-get_fact432,17646 -get_fact(ID,OutsideTerm) :-get_fact432,17646 -get_fact(ID,OutsideTerm) :-get_fact440,18011 -get_fact(ID,OutsideTerm) :-get_fact440,18011 -get_fact(ID,OutsideTerm) :-get_fact440,18011 -recover_grounding_id(Atom,ID) :-recover_grounding_id444,18109 -recover_grounding_id(Atom,ID) :-recover_grounding_id444,18109 -recover_grounding_id(Atom,ID) :-recover_grounding_id444,18109 -recover_number([95|_],[]) :- !. % name('_',[95])recover_number450,18246 -recover_number([95|_],[]) :- !. % name('_',[95])recover_number450,18246 -recover_number([95|_],[]) :- !. % name('_',[95])recover_number450,18246 -recover_number([A|B],[A|C]) :-recover_number451,18296 -recover_number([A|B],[A|C]) :-recover_number451,18296 -recover_number([A|B],[A|C]) :-recover_number451,18296 -get_fact_list([],[]).get_fact_list454,18350 -get_fact_list([],[]).get_fact_list454,18350 -get_fact_list([neg(T)|IDs],[not(Goal)|Facts]) :-get_fact_list455,18372 -get_fact_list([neg(T)|IDs],[not(Goal)|Facts]) :-get_fact_list455,18372 -get_fact_list([neg(T)|IDs],[not(Goal)|Facts]) :-get_fact_list455,18372 -get_fact_list([ID|IDs],[Fact|Facts]) :-get_fact_list459,18481 -get_fact_list([ID|IDs],[Fact|Facts]) :-get_fact_list459,18481 -get_fact_list([ID|IDs],[Fact|Facts]) :-get_fact_list459,18481 -add_to_proof(ID) :-add_to_proof469,18809 -add_to_proof(ID) :-add_to_proof469,18809 -add_to_proof(ID) :-add_to_proof469,18809 -add_to_proof_negated(ID) :-add_to_proof_negated490,19270 -add_to_proof_negated(ID) :-add_to_proof_negated490,19270 -add_to_proof_negated(ID) :-add_to_proof_negated490,19270 -init_aproblog :-init_aproblog512,19740 -init_aproblog_trie :-init_aproblog_trie516,19855 -aproblog_call(Goal) :-aproblog_call524,20116 -aproblog_call(Goal) :-aproblog_call524,20116 -aproblog_call(Goal) :-aproblog_call524,20116 -put_module((Mod:Goal,Rest),Module,(Mod:Goal,Transformed)) :-put_module531,20353 -put_module((Mod:Goal,Rest),Module,(Mod:Goal,Transformed)) :-put_module531,20353 -put_module((Mod:Goal,Rest),Module,(Mod:Goal,Transformed)) :-put_module531,20353 -put_module((Goal,Rest),Module,(Module:Goal,Transformed)) :-put_module534,20456 -put_module((Goal,Rest),Module,(Module:Goal,Transformed)) :-put_module534,20456 -put_module((Goal,Rest),Module,(Module:Goal,Transformed)) :-put_module534,20456 -put_module((Mod:Goal),_Module,(Mod:Goal)) :-put_module537,20558 -put_module((Mod:Goal),_Module,(Mod:Goal)) :-put_module537,20558 -put_module((Mod:Goal),_Module,(Mod:Goal)) :-put_module537,20558 -put_module(Goal,Module,Module:Goal).put_module539,20607 -put_module(Goal,Module,Module:Goal).put_module539,20607 -build_dnf(Goal) :-build_dnf551,21124 -build_dnf(Goal) :-build_dnf551,21124 -build_dnf(Goal) :-build_dnf551,21124 -build_dnf(_).build_dnf558,21275 -build_dnf(_).build_dnf558,21275 -add_solution(N) :-add_solution560,21290 -add_solution(N) :-add_solution560,21290 -add_solution(N) :-add_solution560,21290 -delete_dnf :-delete_dnf565,21413 -print_dnf :-print_dnf569,21494 -evaluate_dnf(_) :-evaluate_dnf578,21775 -evaluate_dnf(_) :-evaluate_dnf578,21775 -evaluate_dnf(_) :-evaluate_dnf578,21775 -evaluate_dnf(Label) :-evaluate_dnf585,21965 -evaluate_dnf(Label) :-evaluate_dnf585,21965 -evaluate_dnf(Label) :-evaluate_dnf585,21965 -update_label(Explanation) :-update_label588,22024 -update_label(Explanation) :-update_label588,22024 -update_label(Explanation) :-update_label588,22024 -multiply_label([],Result,Result).multiply_label595,22235 -multiply_label([],Result,Result).multiply_label595,22235 -multiply_label([not(First)|Rest],Acc,Result) :-multiply_label596,22269 -multiply_label([not(First)|Rest],Acc,Result) :-multiply_label596,22269 -multiply_label([not(First)|Rest],Acc,Result) :-multiply_label596,22269 -multiply_label([First|Rest],Acc,Result) :-multiply_label602,22447 -multiply_label([First|Rest],Acc,Result) :-multiply_label602,22447 -multiply_label([First|Rest],Acc,Result) :-multiply_label602,22447 -evaluate_dnf_with_compensation(_) :-evaluate_dnf_with_compensation612,22772 -evaluate_dnf_with_compensation(_) :-evaluate_dnf_with_compensation612,22772 -evaluate_dnf_with_compensation(_) :-evaluate_dnf_with_compensation612,22772 -evaluate_dnf_with_compensation(Label) :-evaluate_dnf_with_compensation620,23034 -evaluate_dnf_with_compensation(Label) :-evaluate_dnf_with_compensation620,23034 -evaluate_dnf_with_compensation(Label) :-evaluate_dnf_with_compensation620,23034 -update_label_with_compensation(Explanation) :-update_label_with_compensation623,23111 -update_label_with_compensation(Explanation) :-update_label_with_compensation623,23111 -update_label_with_compensation(Explanation) :-update_label_with_compensation623,23111 -evaluate_dnf_with_compensation_naive(_) :-evaluate_dnf_with_compensation_naive639,23929 -evaluate_dnf_with_compensation_naive(_) :-evaluate_dnf_with_compensation_naive639,23929 -evaluate_dnf_with_compensation_naive(_) :-evaluate_dnf_with_compensation_naive639,23929 -evaluate_dnf_with_compensation_naive(Label) :-evaluate_dnf_with_compensation_naive648,24224 -evaluate_dnf_with_compensation_naive(Label) :-evaluate_dnf_with_compensation_naive648,24224 -evaluate_dnf_with_compensation_naive(Label) :-evaluate_dnf_with_compensation_naive648,24224 -dnf_to_bdd_naive :-dnf_to_bdd_naive660,24711 -dnf_to_bdd_naive(FDO) :-dnf_to_bdd_naive665,24802 -dnf_to_bdd_naive(FDO) :-dnf_to_bdd_naive665,24802 -dnf_to_bdd_naive(FDO) :-dnf_to_bdd_naive665,24802 -dnf_to_bdd_naive(FDO) :-dnf_to_bdd_naive671,24983 -dnf_to_bdd_naive(FDO) :-dnf_to_bdd_naive671,24983 -dnf_to_bdd_naive(FDO) :-dnf_to_bdd_naive671,24983 -add_to_bdd([true],FDO) :-add_to_bdd685,25258 -add_to_bdd([true],FDO) :-add_to_bdd685,25258 -add_to_bdd([true],FDO) :-add_to_bdd685,25258 -add_to_bdd(AndList,FDO) :-add_to_bdd692,25445 -add_to_bdd(AndList,FDO) :-add_to_bdd692,25445 -add_to_bdd(AndList,FDO) :-add_to_bdd692,25445 -dnf_to_bdd :-dnf_to_bdd704,25815 -dnf_to_bdd(FDO) :-dnf_to_bdd710,25977 -dnf_to_bdd(FDO) :-dnf_to_bdd710,25977 -dnf_to_bdd(FDO) :-dnf_to_bdd710,25977 -lazy_eval(FDO,FDI,Value) :-lazy_eval740,26758 -lazy_eval(FDO,FDI,Value) :-lazy_eval740,26758 -lazy_eval(FDO,FDI,Value) :-lazy_eval740,26758 -evaluate_expression(s(m('FALSE',_),m(c('FALSE'),_)), Z) :-evaluate_expression772,27412 -evaluate_expression(s(m('FALSE',_),m(c('FALSE'),_)), Z) :-evaluate_expression772,27412 -evaluate_expression(s(m('FALSE',_),m(c('FALSE'),_)), Z) :-evaluate_expression772,27412 -evaluate_expression(s(m('TRUE',_),m(c('TRUE'),_)), Z) :-evaluate_expression775,27494 -evaluate_expression(s(m('TRUE',_),m(c('TRUE'),_)), Z) :-evaluate_expression775,27494 -evaluate_expression(s(m('TRUE',_),m(c('TRUE'),_)), Z) :-evaluate_expression775,27494 -evaluate_expression(V,Z) :-evaluate_expression778,27573 -evaluate_expression(V,Z) :-evaluate_expression778,27573 -evaluate_expression(V,Z) :-evaluate_expression778,27573 -evaluate_expression(s(A,B),C) :-evaluate_expression784,27847 -evaluate_expression(s(A,B),C) :-evaluate_expression784,27847 -evaluate_expression(s(A,B),C) :-evaluate_expression784,27847 -evaluate_expression(m(A,B),C) :-evaluate_expression789,27969 -evaluate_expression(m(A,B),C) :-evaluate_expression789,27969 -evaluate_expression(m(A,B),C) :-evaluate_expression789,27969 -evaluate_expression(c(A),C) :-evaluate_expression794,28097 -evaluate_expression(c(A),C) :-evaluate_expression794,28097 -evaluate_expression(c(A),C) :-evaluate_expression794,28097 -evaluate_expression('FALSE',Z) :-evaluate_expression798,28180 -evaluate_expression('FALSE',Z) :-evaluate_expression798,28180 -evaluate_expression('FALSE',Z) :-evaluate_expression798,28180 -evaluate_expression('TRUE',Z) :-evaluate_expression801,28237 -evaluate_expression('TRUE',Z) :-evaluate_expression801,28237 -evaluate_expression('TRUE',Z) :-evaluate_expression801,28237 -evaluate_expression(A,C) :-evaluate_expression804,28292 -evaluate_expression(A,C) :-evaluate_expression804,28292 -evaluate_expression(A,C) :-evaluate_expression804,28292 -eval_bdd_cached(FDO, FDI, Result,Vars ) :-eval_bdd_cached821,29271 -eval_bdd_cached(FDO, FDI, Result,Vars ) :-eval_bdd_cached821,29271 -eval_bdd_cached(FDO, FDI, Result,Vars ) :-eval_bdd_cached821,29271 -traverse_bdd_caching([],_FDO, _FDI).traverse_bdd_caching827,29553 -traverse_bdd_caching([],_FDO, _FDI).traverse_bdd_caching827,29553 -traverse_bdd_caching([HeadS|RestS],FDO, FDI) :-traverse_bdd_caching828,29590 -traverse_bdd_caching([HeadS|RestS],FDO, FDI) :-traverse_bdd_caching828,29590 -traverse_bdd_caching([HeadS|RestS],FDO, FDI) :-traverse_bdd_caching828,29590 -add_child(_Kid,root,root).add_child844,30051 -add_child(_Kid,root,root).add_child844,30051 -add_child(Kid,n(Node,High,Low),n(Node,Kid,Low)) :-add_child845,30078 -add_child(Kid,n(Node,High,Low),n(Node,Kid,Low)) :-add_child845,30078 -add_child(Kid,n(Node,High,Low),n(Node,Kid,Low)) :-add_child845,30078 -add_child(Kid,n(Node,High,Low),n(Node,High,Kid)) :-add_child847,30143 -add_child(Kid,n(Node,High,Low),n(Node,High,Kid)) :-add_child847,30143 -add_child(Kid,n(Node,High,Low),n(Node,High,Kid)) :-add_child847,30143 -reduce_stack([root],[]).reduce_stack857,30651 -reduce_stack([root],[]).reduce_stack857,30651 -reduce_stack([n(N-ID,_,_)|Stack],Red) :-reduce_stack858,30676 -reduce_stack([n(N-ID,_,_)|Stack],Red) :-reduce_stack858,30676 -reduce_stack([n(N-ID,_,_)|Stack],Red) :-reduce_stack858,30676 -reduce_stack([n(N-ID,H,L)|Stack],Reduced) :-reduce_stack863,30780 -reduce_stack([n(N-ID,H,L)|Stack],Reduced) :-reduce_stack863,30780 -reduce_stack([n(N-ID,H,L)|Stack],Reduced) :-reduce_stack863,30780 -cache_leaf(Var,Node) :- cache_leaf878,31205 -cache_leaf(Var,Node) :- cache_leaf878,31205 -cache_leaf(Var,Node) :- cache_leaf878,31205 -cache_leaf_pure('TRUE',ID) :-cache_leaf_pure887,31323 -cache_leaf_pure('TRUE',ID) :-cache_leaf_pure887,31323 -cache_leaf_pure('TRUE',ID) :-cache_leaf_pure887,31323 -cache_leaf_pure('FALSE',ID) :-cache_leaf_pure890,31413 -cache_leaf_pure('FALSE',ID) :-cache_leaf_pure890,31413 -cache_leaf_pure('FALSE',ID) :-cache_leaf_pure890,31413 -cache_leaf_vars('TRUE',ID) :-cache_leaf_vars894,31507 -cache_leaf_vars('TRUE',ID) :-cache_leaf_vars894,31507 -cache_leaf_vars('TRUE',ID) :-cache_leaf_vars894,31507 -cache_leaf_vars('FALSE',ID) :-cache_leaf_vars897,31597 -cache_leaf_vars('FALSE',ID) :-cache_leaf_vars897,31597 -cache_leaf_vars('FALSE',ID) :-cache_leaf_vars897,31597 -cache_inner_node(N,H,L) :- cache_inner_node902,31770 -cache_inner_node(N,H,L) :- cache_inner_node902,31770 -cache_inner_node(N,H,L) :- cache_inner_node902,31770 -cache_inner_node_pure(N-ID,H-HID,L-LID) :-cache_inner_node_pure911,31897 -cache_inner_node_pure(N-ID,H-HID,L-LID) :-cache_inner_node_pure911,31897 -cache_inner_node_pure(N-ID,H-HID,L-LID) :-cache_inner_node_pure911,31897 -cache_inner_node_vars(N-ID,H-HID,L-LID) :-cache_inner_node_vars921,32199 -cache_inner_node_vars(N-ID,H-HID,L-LID) :-cache_inner_node_vars921,32199 -cache_inner_node_vars(N-ID,H-HID,L-LID) :-cache_inner_node_vars921,32199 -get_variables([],[]).get_variables939,33317 -get_variables([],[]).get_variables939,33317 -get_variables([not(V)|Vs],[V|Others]) :-get_variables940,33339 -get_variables([not(V)|Vs],[V|Others]) :-get_variables940,33339 -get_variables([not(V)|Vs],[V|Others]) :-get_variables940,33339 -get_variables([V|Vs],[V|Others]) :-get_variables943,33411 -get_variables([V|Vs],[V|Others]) :-get_variables943,33411 -get_variables([V|Vs],[V|Others]) :-get_variables943,33411 -compensate_label([],_,W,W).compensate_label947,33589 -compensate_label([],_,W,W).compensate_label947,33589 -compensate_label([A|Rest],Vars,Acc,Result) :-compensate_label948,33617 -compensate_label([A|Rest],Vars,Acc,Result) :-compensate_label948,33617 -compensate_label([A|Rest],Vars,Acc,Result) :-compensate_label948,33617 -compensate_label([A|Rest],Vars,Acc,Result) :-compensate_label952,33728 -compensate_label([A|Rest],Vars,Acc,Result) :-compensate_label952,33728 -compensate_label([A|Rest],Vars,Acc,Result) :-compensate_label952,33728 -ids_to_vars([],[]).ids_to_vars960,34040 -ids_to_vars([],[]).ids_to_vars960,34040 -ids_to_vars([not(A)|B],[C|D]) :-ids_to_vars961,34060 -ids_to_vars([not(A)|B],[C|D]) :-ids_to_vars961,34060 -ids_to_vars([not(A)|B],[C|D]) :-ids_to_vars961,34060 -ids_to_vars([A|B],[C|D]) :-ids_to_vars965,34144 -ids_to_vars([A|B],[C|D]) :-ids_to_vars965,34144 -ids_to_vars([A|B],[C|D]) :-ids_to_vars965,34144 -get_var_label(XID,Label,VariableName) :-get_var_label972,34452 -get_var_label(XID,Label,VariableName) :-get_var_label972,34452 -get_var_label(XID,Label,VariableName) :-get_var_label972,34452 -get_fact_from_id(IAtom,NumAtom) :-get_fact_from_id986,34739 -get_fact_from_id(IAtom,NumAtom) :-get_fact_from_id986,34739 -get_fact_from_id(IAtom,NumAtom) :-get_fact_from_id986,34739 -get_fact_from_id(I,I).get_fact_from_id989,34841 -get_fact_from_id(I,I).get_fact_from_id989,34841 -conditional_format(_String,_Args) :-conditional_format991,34865 -conditional_format(_String,_Args) :-conditional_format991,34865 -conditional_format(_String,_Args) :-conditional_format991,34865 -conditional_format(String,Args) :-conditional_format993,34935 -conditional_format(String,Args) :-conditional_format993,34935 -conditional_format(String,Args) :-conditional_format993,34935 -semiring_zero(Z) :-semiring_zero1000,35282 -semiring_zero(Z) :-semiring_zero1000,35282 -semiring_zero(Z) :-semiring_zero1000,35282 -semiring_one(Z) :-semiring_one1002,35326 -semiring_one(Z) :-semiring_one1002,35326 -semiring_one(Z) :-semiring_one1002,35326 -semiring_addition(OldLabel,Label,NewLabel) :-semiring_addition1004,35368 -semiring_addition(OldLabel,Label,NewLabel) :-semiring_addition1004,35368 -semiring_addition(OldLabel,Label,NewLabel) :-semiring_addition1004,35368 -semiring_multiplication(OldLabel,Label,NewLabel) :-semiring_multiplication1006,35464 -semiring_multiplication(OldLabel,Label,NewLabel) :-semiring_multiplication1006,35464 -semiring_multiplication(OldLabel,Label,NewLabel) :-semiring_multiplication1006,35464 -label_negated(W,Wbar) :-label_negated1008,35572 -label_negated(W,Wbar) :-label_negated1008,35572 -label_negated(W,Wbar) :-label_negated1008,35572 -aproblog_label(Query,Label) :-aproblog_label1015,35912 -aproblog_label(Query,Label) :-aproblog_label1015,35912 -aproblog_label(Query,Label) :-aproblog_label1015,35912 -aproblog_label(Query,Label) :-aproblog_label1019,36050 -aproblog_label(Query,Label) :-aproblog_label1019,36050 -aproblog_label(Query,Label) :-aproblog_label1019,36050 -aproblog_label(Query,Label) :-aproblog_label1023,36181 -aproblog_label(Query,Label) :-aproblog_label1023,36181 -aproblog_label(Query,Label) :-aproblog_label1023,36181 -aproblog_label(Query,Label) :-aproblog_label1027,36311 -aproblog_label(Query,Label) :-aproblog_label1027,36311 -aproblog_label(Query,Label) :-aproblog_label1027,36311 -label_disjoint_neutral(Query,Label) :-label_disjoint_neutral1037,36662 -label_disjoint_neutral(Query,Label) :-label_disjoint_neutral1037,36662 -label_disjoint_neutral(Query,Label) :-label_disjoint_neutral1037,36662 -label_neutral_disjoint(Query,Label) :-label_neutral_disjoint1040,36740 -label_neutral_disjoint(Query,Label) :-label_neutral_disjoint1040,36740 -label_neutral_disjoint(Query,Label) :-label_neutral_disjoint1040,36740 -direct_eval(Goal,_) :-direct_eval1048,36992 -direct_eval(Goal,_) :-direct_eval1048,36992 -direct_eval(Goal,_) :-direct_eval1048,36992 -direct_eval(_,Label) :-direct_eval1055,37139 -direct_eval(_,Label) :-direct_eval1055,37139 -direct_eval(_,Label) :-direct_eval1055,37139 -add_solution_to_eval :-add_solution_to_eval1058,37198 -label_neutral_disjoint_on_dnf(Query,Label) :-label_neutral_disjoint_on_dnf1063,37317 -label_neutral_disjoint_on_dnf(Query,Label) :-label_neutral_disjoint_on_dnf1063,37317 -label_neutral_disjoint_on_dnf(Query,Label) :-label_neutral_disjoint_on_dnf1063,37317 -label_disjoint(Query,Label) :-label_disjoint1080,37956 -label_disjoint(Query,Label) :-label_disjoint1080,37956 -label_disjoint(Query,Label) :-label_disjoint1080,37956 -direct_eval_with_compensation(Goal,_) :-direct_eval_with_compensation1088,38216 -direct_eval_with_compensation(Goal,_) :-direct_eval_with_compensation1088,38216 -direct_eval_with_compensation(Goal,_) :-direct_eval_with_compensation1088,38216 -direct_eval_with_compensation(_,Label) :-direct_eval_with_compensation1096,38435 -direct_eval_with_compensation(_,Label) :-direct_eval_with_compensation1096,38435 -direct_eval_with_compensation(_,Label) :-direct_eval_with_compensation1096,38435 -add_solution_to_eval_with_compensation :-add_solution_to_eval_with_compensation1107,38696 -compensate_for_unseen_vars(LabelOnUsed, UsedVars, Label) :-compensate_for_unseen_vars1111,38817 -compensate_for_unseen_vars(LabelOnUsed, UsedVars, Label) :-compensate_for_unseen_vars1111,38817 -compensate_for_unseen_vars(LabelOnUsed, UsedVars, Label) :-compensate_for_unseen_vars1111,38817 -label_disjoint_on_dnf(Query,Label) :-label_disjoint_on_dnf1126,39401 -label_disjoint_on_dnf(Query,Label) :-label_disjoint_on_dnf1126,39401 -label_disjoint_on_dnf(Query,Label) :-label_disjoint_on_dnf1126,39401 -label_disjoint_naive(Query,Label) :-label_disjoint_naive1141,39935 -label_disjoint_naive(Query,Label) :-label_disjoint_naive1141,39935 -label_disjoint_naive(Query,Label) :-label_disjoint_naive1141,39935 -label_neutral(Query,Result) :-label_neutral1157,40421 -label_neutral(Query,Result) :-label_neutral1157,40421 -label_neutral(Query,Result) :-label_neutral1157,40421 -label_lazy(Query,Label) :-label_lazy1163,40664 -label_lazy(Query,Label) :-label_lazy1163,40664 -label_lazy(Query,Label) :-label_lazy1163,40664 -label(Query,Result) :-label1187,41447 -label(Query,Result) :-label1187,41447 -label(Query,Result) :-label1187,41447 -label_internal(Query,Label) :- label_internal1197,41876 -label_internal(Query,Label) :- label_internal1197,41876 -label_internal(Query,Label) :- label_internal1197,41876 -print_dnf(Query) :-print_dnf1227,42892 -print_dnf(Query) :-print_dnf1227,42892 -print_dnf(Query) :-print_dnf1227,42892 -print_bdd(Query) :-print_bdd1232,42962 -print_bdd(Query) :-print_bdd1232,42962 -print_bdd(Query) :-print_bdd1232,42962 -used_vars(Query,Vars) :-used_vars1238,43117 -used_vars(Query,Vars) :-used_vars1238,43117 -used_vars(Query,Vars) :-used_vars1238,43117 -used_facts(Query,Facts) :-used_facts1243,43244 -used_facts(Query,Facts) :-used_facts1243,43244 -used_facts(Query,Facts) :-used_facts1243,43244 -test(Query) :-test1252,43405 -test(Query) :-test1252,43405 -test(Query) :-test1252,43405 -test_inner(Query) :-test_inner1263,43739 -test_inner(Query) :-test_inner1263,43739 -test_inner(Query) :-test_inner1263,43739 - -packages/ProbLog/dtproblog.yap,17182 -init_dtproblog :-init_dtproblog320,12484 -dtproblog_utility_facts(Facts) :-dtproblog_utility_facts336,12926 -dtproblog_utility_facts(Facts) :-dtproblog_utility_facts336,12926 -dtproblog_utility_facts(Facts) :-dtproblog_utility_facts336,12926 -dtproblog_utility_attributes(Attrs) :-dtproblog_utility_attributes339,13010 -dtproblog_utility_attributes(Attrs) :-dtproblog_utility_attributes339,13010 -dtproblog_utility_attributes(Attrs) :-dtproblog_utility_attributes339,13010 -facts_to_attributes([],[]).facts_to_attributes343,13120 -facts_to_attributes([],[]).facts_to_attributes343,13120 -facts_to_attributes([A => _|FR],[A|AR]) :- facts_to_attributes(FR,AR).facts_to_attributes344,13148 -facts_to_attributes([A => _|FR],[A|AR]) :- facts_to_attributes(FR,AR).facts_to_attributes344,13148 -facts_to_attributes([A => _|FR],[A|AR]) :- facts_to_attributes(FR,AR).facts_to_attributes344,13148 -facts_to_attributes([A => _|FR],[A|AR]) :- facts_to_attributes(FR,AR).facts_to_attributes344,13148 -facts_to_attributes([A => _|FR],[A|AR]) :- facts_to_attributes(FR,AR).facts_to_attributes344,13148 -conditioned_utility_facts([],_,[],[]).conditioned_utility_facts346,13220 -conditioned_utility_facts([],_,[],[]).conditioned_utility_facts346,13220 -conditioned_utility_facts([(Attr => Reward)|Facts],Condition,[(Condition,Attr)|Attrs],[Reward|Rewards]):-conditioned_utility_facts347,13259 -conditioned_utility_facts([(Attr => Reward)|Facts],Condition,[(Condition,Attr)|Attrs],[Reward|Rewards]):-conditioned_utility_facts347,13259 -conditioned_utility_facts([(Attr => Reward)|Facts],Condition,[(Condition,Attr)|Attrs],[Reward|Rewards]):-conditioned_utility_facts347,13259 -set_ground_strategy(GID,LogProb) :- bb_put(GID,LogProb).set_ground_strategy357,13767 -set_ground_strategy(GID,LogProb) :- bb_put(GID,LogProb).set_ground_strategy357,13767 -set_ground_strategy(GID,LogProb) :- bb_put(GID,LogProb).set_ground_strategy357,13767 -set_ground_strategy(GID,LogProb) :- bb_put(GID,LogProb).set_ground_strategy357,13767 -set_ground_strategy(GID,LogProb) :- bb_put(GID,LogProb).set_ground_strategy357,13767 -get_ground_strategy(GID,LogProb) :- bb_get(GID,LogProb),!.get_ground_strategy358,13824 -get_ground_strategy(GID,LogProb) :- bb_get(GID,LogProb),!.get_ground_strategy358,13824 -get_ground_strategy(GID,LogProb) :- bb_get(GID,LogProb),!.get_ground_strategy358,13824 -get_ground_strategy(_,never).get_ground_strategy359,13883 -get_ground_strategy(_,never).get_ground_strategy359,13883 -strategy(_,_,_) :-strategy367,14071 -strategy(_,_,_) :-strategy367,14071 -strategy(_,_,_) :-strategy367,14071 -strategy(ID,Decision,Prob) :-strategy370,14202 -strategy(ID,Decision,Prob) :-strategy370,14202 -strategy(ID,Decision,Prob) :-strategy370,14202 -strategy(_,Decision,Prob) :-strategy375,14400 -strategy(_,Decision,Prob) :-strategy375,14400 -strategy(_,Decision,Prob) :-strategy375,14400 -strategy(_,_,never).strategy379,14509 -strategy(_,_,never).strategy379,14509 -strategy_log(ID,Decision,LogProb) :-strategy_log381,14531 -strategy_log(ID,Decision,LogProb) :-strategy_log381,14531 -strategy_log(ID,Decision,LogProb) :-strategy_log381,14531 -logprob_prob(always,always) :- !.logprob_prob386,14683 -logprob_prob(always,always) :- !.logprob_prob386,14683 -logprob_prob(always,always) :- !.logprob_prob386,14683 -logprob_prob(never,never) :- !.logprob_prob387,14717 -logprob_prob(never,never) :- !.logprob_prob387,14717 -logprob_prob(never,never) :- !.logprob_prob387,14717 -logprob_prob(0,always) :- !.logprob_prob388,14749 -logprob_prob(0,always) :- !.logprob_prob388,14749 -logprob_prob(0,always) :- !.logprob_prob388,14749 -logprob_prob(-inf,never) :- !.logprob_prob389,14778 -logprob_prob(-inf,never) :- !.logprob_prob389,14778 -logprob_prob(-inf,never) :- !.logprob_prob389,14778 -logprob_prob(always,1) :- !.logprob_prob390,14809 -logprob_prob(always,1) :- !.logprob_prob390,14809 -logprob_prob(always,1) :- !.logprob_prob390,14809 -logprob_prob(never,0) :- !.logprob_prob391,14838 -logprob_prob(never,0) :- !.logprob_prob391,14838 -logprob_prob(never,0) :- !.logprob_prob391,14838 -logprob_prob(LogP,P) :-logprob_prob392,14866 -logprob_prob(LogP,P) :-logprob_prob392,14866 -logprob_prob(LogP,P) :-logprob_prob392,14866 -logprob_prob(LogP,P) :-logprob_prob396,14929 -logprob_prob(LogP,P) :-logprob_prob396,14929 -logprob_prob(LogP,P) :-logprob_prob396,14929 -set_strategy(_) :-set_strategy405,15164 -set_strategy(_) :-set_strategy405,15164 -set_strategy(_) :-set_strategy405,15164 -set_strategy([]) :- problog_control(on,internal_strategy).set_strategy408,15286 -set_strategy([]) :- problog_control(on,internal_strategy).set_strategy408,15286 -set_strategy([]) :- problog_control(on,internal_strategy).set_strategy408,15286 -set_strategy([]) :- problog_control(on,internal_strategy).set_strategy408,15286 -set_strategy([]) :- problog_control(on,internal_strategy).set_strategy408,15286 -set_strategy([Term|R]) :-set_strategy409,15345 -set_strategy([Term|R]) :-set_strategy409,15345 -set_strategy([Term|R]) :-set_strategy409,15345 -unset_strategy(_) :-unset_strategy422,15743 -unset_strategy(_) :-unset_strategy422,15743 -unset_strategy(_) :-unset_strategy422,15743 -unset_strategy([]) :-unset_strategy425,15879 -unset_strategy([]) :-unset_strategy425,15879 -unset_strategy([]) :-unset_strategy425,15879 -unset_strategy([Term|R]) :-unset_strategy428,15983 -unset_strategy([Term|R]) :-unset_strategy428,15983 -unset_strategy([Term|R]) :-unset_strategy428,15983 -strategy_entry('::'(Prob,Decision),LogProb,Decision) :-strategy_entry440,16296 -strategy_entry('::'(Prob,Decision),LogProb,Decision) :-strategy_entry440,16296 -strategy_entry('::'(Prob,Decision),LogProb,Decision) :-strategy_entry440,16296 -strategy_entry(Decision,always,Decision).strategy_entry442,16385 -strategy_entry(Decision,always,Decision).strategy_entry442,16385 -strategy_as_term_list(IDs,List) :- strategy_as_term_list(IDs,[],List).strategy_as_term_list446,16545 -strategy_as_term_list(IDs,List) :- strategy_as_term_list(IDs,[],List).strategy_as_term_list446,16545 -strategy_as_term_list(IDs,List) :- strategy_as_term_list(IDs,[],List).strategy_as_term_list446,16545 -strategy_as_term_list(IDs,List) :- strategy_as_term_list(IDs,[],List).strategy_as_term_list446,16545 -strategy_as_term_list(IDs,List) :- strategy_as_term_list(IDs,[],List).strategy_as_term_list446,16545 -strategy_as_term_list([],In,In).strategy_as_term_list447,16616 -strategy_as_term_list([],In,In).strategy_as_term_list447,16616 -strategy_as_term_list([ID|R],In,Out) :-strategy_as_term_list448,16649 -strategy_as_term_list([ID|R],In,Out) :-strategy_as_term_list448,16649 -strategy_as_term_list([ID|R],In,Out) :-strategy_as_term_list448,16649 -strategy_as_term(ID,In,Out) :-strategy_as_term453,16788 -strategy_as_term(ID,In,Out) :-strategy_as_term453,16788 -strategy_as_term(ID,In,Out) :-strategy_as_term453,16788 -strategy_as_term_entry(_,0,In,In) :- !.strategy_as_term_entry469,17330 -strategy_as_term_entry(_,0,In,In) :- !.strategy_as_term_entry469,17330 -strategy_as_term_entry(_,0,In,In) :- !.strategy_as_term_entry469,17330 -strategy_as_term_entry(Decision,1,In,[Decision|In]) :- !.strategy_as_term_entry470,17370 -strategy_as_term_entry(Decision,1,In,[Decision|In]) :- !.strategy_as_term_entry470,17370 -strategy_as_term_entry(Decision,1,In,[Decision|In]) :- !.strategy_as_term_entry470,17370 -strategy_as_term_entry(_,never,In,In) :- !.strategy_as_term_entry471,17428 -strategy_as_term_entry(_,never,In,In) :- !.strategy_as_term_entry471,17428 -strategy_as_term_entry(_,never,In,In) :- !.strategy_as_term_entry471,17428 -strategy_as_term_entry(Decision,always,In,[Decision|In]) :- !.strategy_as_term_entry472,17472 -strategy_as_term_entry(Decision,always,In,[Decision|In]) :- !.strategy_as_term_entry472,17472 -strategy_as_term_entry(Decision,always,In,[Decision|In]) :- !.strategy_as_term_entry472,17472 -strategy_as_term_entry(Decision,P,In,[P'::'Decision|In]).strategy_as_term_entry473,17535 -strategy_as_term_entry(Decision,P,In,[P'::'Decision|In]).strategy_as_term_entry473,17535 -dtproblog_ev(Strategy,Ev) :- dtproblog_ev(Strategy,true,Ev).dtproblog_ev480,17786 -dtproblog_ev(Strategy,Ev) :- dtproblog_ev(Strategy,true,Ev).dtproblog_ev480,17786 -dtproblog_ev(Strategy,Ev) :- dtproblog_ev(Strategy,true,Ev).dtproblog_ev480,17786 -dtproblog_ev(Strategy,Ev) :- dtproblog_ev(Strategy,true,Ev).dtproblog_ev480,17786 -dtproblog_ev(Strategy,Ev) :- dtproblog_ev(Strategy,true,Ev).dtproblog_ev480,17786 -dtproblog_ev(Strategy,Condition,Ev) :-dtproblog_ev483,17925 -dtproblog_ev(Strategy,Condition,Ev) :-dtproblog_ev483,17925 -dtproblog_ev(Strategy,Condition,Ev) :-dtproblog_ev483,17925 -dtproblog_ev(Strategy,Condition,UtilFacts,Ev) :-dtproblog_ev492,18233 -dtproblog_ev(Strategy,Condition,UtilFacts,Ev) :-dtproblog_ev492,18233 -dtproblog_ev(Strategy,Condition,UtilFacts,Ev) :-dtproblog_ev492,18233 -ev_for_internal_strategy(Condition,UtilFacts,Ev) :-ev_for_internal_strategy502,18600 -ev_for_internal_strategy(Condition,UtilFacts,Ev) :-ev_for_internal_strategy502,18600 -ev_for_internal_strategy(Condition,UtilFacts,Ev) :-ev_for_internal_strategy502,18600 -summed_utils([],[],Ev,Ev).summed_utils527,19537 -summed_utils([],[],Ev,Ev).summed_utils527,19537 -summed_utils([Util|Utils],[Prob|Probs],Acc,Ev) :-summed_utils528,19564 -summed_utils([Util|Utils],[Prob|Probs],Acc,Ev) :-summed_utils528,19564 -summed_utils([Util|Utils],[Prob|Probs],Acc,Ev) :-summed_utils528,19564 -ev_loop(_, [],Acc,Acc).ev_loop532,19681 -ev_loop(_, [],Acc,Acc).ev_loop532,19681 -ev_loop(Condition,[(Attr => Util)|R],Acc,Ev) :-ev_loop533,19705 -ev_loop(Condition,[(Attr => Util)|R],Acc,Ev) :-ev_loop533,19705 -ev_loop(Condition,[(Attr => Util)|R],Acc,Ev) :-ev_loop533,19705 -dtproblog_decisions(Decisions) :-dtproblog_decisions544,20191 -dtproblog_decisions(Decisions) :-dtproblog_decisions544,20191 -dtproblog_decisions(Decisions) :-dtproblog_decisions544,20191 -ids_as_decisions(IDs,List) :- ids_as_decisions(IDs,[],List).ids_as_decisions553,20406 -ids_as_decisions(IDs,List) :- ids_as_decisions(IDs,[],List).ids_as_decisions553,20406 -ids_as_decisions(IDs,List) :- ids_as_decisions(IDs,[],List).ids_as_decisions553,20406 -ids_as_decisions(IDs,List) :- ids_as_decisions(IDs,[],List).ids_as_decisions553,20406 -ids_as_decisions(IDs,List) :- ids_as_decisions(IDs,[],List).ids_as_decisions553,20406 -ids_as_decisions([],In,In).ids_as_decisions555,20468 -ids_as_decisions([],In,In).ids_as_decisions555,20468 -ids_as_decisions([ID|R],In,Out) :-ids_as_decisions556,20496 -ids_as_decisions([ID|R],In,Out) :-ids_as_decisions556,20496 -ids_as_decisions([ID|R],In,Out) :-ids_as_decisions556,20496 -id_as_decision(ID,In,[Decision|In]) :-id_as_decision560,20596 -id_as_decision(ID,In,[Decision|In]) :-id_as_decision560,20596 -id_as_decision(ID,In,[Decision|In]) :-id_as_decision560,20596 -dtproblog_decision_ids(Decisions) :-dtproblog_decision_ids574,21099 -dtproblog_decision_ids(Decisions) :-dtproblog_decision_ids574,21099 -dtproblog_decision_ids(Decisions) :-dtproblog_decision_ids574,21099 -dtproblog_decision_ids(UtilityAttrs,Decisions) :-dtproblog_decision_ids581,21275 -dtproblog_decision_ids(UtilityAttrs,Decisions) :-dtproblog_decision_ids581,21275 -dtproblog_decision_ids(UtilityAttrs,Decisions) :-dtproblog_decision_ids581,21275 -add_decisions_all([]) :-add_decisions_all593,21659 -add_decisions_all([]) :-add_decisions_all593,21659 -add_decisions_all([]) :-add_decisions_all593,21659 -add_decisions_all([Goal|R]) :-add_decisions_all595,21703 -add_decisions_all([Goal|R]) :-add_decisions_all595,21703 -add_decisions_all([Goal|R]) :-add_decisions_all595,21703 -add_decisions(Goal) :-add_decisions603,22070 -add_decisions(Goal) :-add_decisions603,22070 -add_decisions(Goal) :-add_decisions603,22070 -reset_decisions :- bb_put(problog:decisions,[]).reset_decisions609,22218 -get_decisions(D) :- bb_get(problog:decisions,D).get_decisions611,22268 -get_decisions(D) :- bb_get(problog:decisions,D).get_decisions611,22268 -get_decisions(D) :- bb_get(problog:decisions,D).get_decisions611,22268 -get_decisions(D) :- bb_get(problog:decisions,D).get_decisions611,22268 -get_decisions(D) :- bb_get(problog:decisions,D).get_decisions611,22268 -dtproblog_solve(Strategy,EV) :-dtproblog_solve622,22592 -dtproblog_solve(Strategy,EV) :-dtproblog_solve622,22592 -dtproblog_solve(Strategy,EV) :-dtproblog_solve622,22592 -dtproblog_solve_specialized(Strategy,EV) :-dtproblog_solve_specialized638,23240 -dtproblog_solve_specialized(Strategy,EV) :-dtproblog_solve_specialized638,23240 -dtproblog_solve_specialized(Strategy,EV) :-dtproblog_solve_specialized638,23240 -dtproblog_solve_specialized_supported :-dtproblog_solve_specialized_supported656,23911 -write_util_file(Utils) :-write_util_file666,24171 -write_util_file(Utils) :-write_util_file666,24171 -write_util_file(Utils) :-write_util_file666,24171 -write_util_file_line([]).write_util_file_line676,24378 -write_util_file_line([]).write_util_file_line676,24378 -write_util_file_line([U|R]) :-write_util_file_line677,24404 -write_util_file_line([U|R]) :-write_util_file_line677,24404 -write_util_file_line([U|R]) :-write_util_file_line677,24404 -bdd_util_file(UtilFile) :-bdd_util_file681,24483 -bdd_util_file(UtilFile) :-bdd_util_file681,24483 -bdd_util_file(UtilFile) :-bdd_util_file681,24483 -delete_util_file :-delete_util_file686,24664 -bdd_optimization(N,EV,Decisions,Status) :-bdd_optimization690,24744 -bdd_optimization(N,EV,Decisions,Status) :-bdd_optimization690,24744 -bdd_optimization(N,EV,Decisions,Status) :-bdd_optimization690,24744 -read_strategy(_) :-read_strategy734,26387 -read_strategy(_) :-read_strategy734,26387 -read_strategy(_) :-read_strategy734,26387 -read_strategy(DecisionIDs) :-read_strategy737,26510 -read_strategy(DecisionIDs) :-read_strategy737,26510 -read_strategy(DecisionIDs) :-read_strategy737,26510 -read_strategy_intern(DecisionIDs) :-read_strategy_intern740,26618 -read_strategy_intern(DecisionIDs) :-read_strategy_intern740,26618 -read_strategy_intern(DecisionIDs) :-read_strategy_intern740,26618 -dtproblog_solve_general(Strategy,EV) :-dtproblog_solve_general756,27026 -dtproblog_solve_general(Strategy,EV) :-dtproblog_solve_general756,27026 -dtproblog_solve_general(Strategy,EV) :-dtproblog_solve_general756,27026 -dtproblog_solve_general_supported :- problog_flag(optimization, local).dtproblog_solve_general_supported764,27292 -dtproblog_solve_local(Condition,Utils,Strategy,EV) :-dtproblog_solve_local766,27365 -dtproblog_solve_local(Condition,Utils,Strategy,EV) :-dtproblog_solve_local766,27365 -dtproblog_solve_local(Condition,Utils,Strategy,EV) :-dtproblog_solve_local766,27365 -optimization_iteration_loop(Decisions,Condition,Utils,EVIn,EVOut) :-optimization_iteration_loop778,27884 -optimization_iteration_loop(Decisions,Condition,Utils,EVIn,EVOut) :-optimization_iteration_loop778,27884 -optimization_iteration_loop(Decisions,Condition,Utils,EVIn,EVOut) :-optimization_iteration_loop778,27884 -optimization_decision_loop([],_,_,Ev,Ev).optimization_decision_loop788,28278 -optimization_decision_loop([],_,_,Ev,Ev).optimization_decision_loop788,28278 -optimization_decision_loop([ID|Rest],Condition,Utils,EvIn,EvOut) :-optimization_decision_loop789,28320 -optimization_decision_loop([ID|Rest],Condition,Utils,EvIn,EvOut) :-optimization_decision_loop789,28320 -optimization_decision_loop([ID|Rest],Condition,Utils,EvIn,EvOut) :-optimization_decision_loop789,28320 -flip(always,never) :- !.flip804,28945 -flip(always,never) :- !.flip804,28945 -flip(always,never) :- !.flip804,28945 -flip(never,always) :- !.flip805,28970 -flip(never,always) :- !.flip805,28970 -flip(never,always) :- !.flip805,28970 -flip(P,always) :- P<1, !.flip806,28995 -flip(P,always) :- P<1, !.flip806,28995 -flip(P,always) :- P<1, !.flip806,28995 -flip(_,never).flip807,29021 -flip(_,never).flip807,29021 -dtproblog_solve_naive(Strategy,EV) :-dtproblog_solve_naive813,29175 -dtproblog_solve_naive(Strategy,EV) :-dtproblog_solve_naive813,29175 -dtproblog_solve_naive(Strategy,EV) :-dtproblog_solve_naive813,29175 -max_strategy([],Strategy,EV,Strategy,EV).max_strategy821,29417 -max_strategy([],Strategy,EV,Strategy,EV).max_strategy821,29417 -max_strategy([S1|Rest],S2,U2,S3,U3) :-max_strategy822,29459 -max_strategy([S1|Rest],S2,U2,S3,U3) :-max_strategy822,29459 -max_strategy([S1|Rest],S2,U2,S3,U3) :-max_strategy822,29459 -all_subsets([], [[]]).all_subsets832,29680 -all_subsets([], [[]]).all_subsets832,29680 -all_subsets([X|Xs], Subsets) :-all_subsets833,29703 -all_subsets([X|Xs], Subsets) :-all_subsets833,29703 -all_subsets([X|Xs], Subsets) :-all_subsets833,29703 -attach_first_element([], _, S, S).attach_first_element837,29825 -attach_first_element([], _, S, S).attach_first_element837,29825 -attach_first_element([Sub|Subs], X, [[X|Sub]|XSubs], S) :-attach_first_element838,29860 -attach_first_element([Sub|Subs], X, [[X|Sub]|XSubs], S) :-attach_first_element838,29860 -attach_first_element([Sub|Subs], X, [[X|Sub]|XSubs], S) :-attach_first_element838,29860 - -packages/ProbLog/LICENSE,0 - -packages/ProbLog/problog/ad_converter.yap,5222 -:- discontiguous user:(<--)/2, problog:(<--)/2.discontiguous219,9914 -:- discontiguous user:(<--)/2, problog:(<--)/2.discontiguous219,9914 -:- discontiguous user:myclause/1, problog:myclause/1. % notation of ADs in LFI-ProbLogdiscontiguous220,9962 -:- discontiguous user:myclause/1, problog:myclause/1. % notation of ADs in LFI-ProbLogdiscontiguous220,9962 -term_expansion_intern_ad((Head<--Body), Module, Mode, [user:ad_intern((Head<--Body),ID,Aux_Facts)|Result]) :-term_expansion_intern_ad239,10809 -term_expansion_intern_ad((Head<--Body), Module, Mode, [user:ad_intern((Head<--Body),ID,Aux_Facts)|Result]) :-term_expansion_intern_ad239,10809 -term_expansion_intern_ad((Head<--Body), Module, Mode, [user:ad_intern((Head<--Body),ID,Aux_Facts)|Result]) :-term_expansion_intern_ad239,10809 -term_expansion_intern_ad( (Head<--Body),_,_) :-term_expansion_intern_ad301,12835 -term_expansion_intern_ad( (Head<--Body),_,_) :-term_expansion_intern_ad301,12835 -term_expansion_intern_ad( (Head<--Body),_,_) :-term_expansion_intern_ad301,12835 -proper_ad_head( P :: A, Acc) :-proper_ad_head335,13945 -proper_ad_head( P :: A, Acc) :-proper_ad_head335,13945 -proper_ad_head( P :: A, Acc) :-proper_ad_head335,13945 -proper_ad_head((P :: A;T),Acc) :-proper_ad_head342,14069 -proper_ad_head((P :: A;T),Acc) :-proper_ad_head342,14069 -proper_ad_head((P :: A;T),Acc) :-proper_ad_head342,14069 -proper_tunable_ad_head( t(_)::A ) :-proper_tunable_ad_head358,14498 -proper_tunable_ad_head( t(_)::A ) :-proper_tunable_ad_head358,14498 -proper_tunable_ad_head( t(_)::A ) :-proper_tunable_ad_head358,14498 -proper_tunable_ad_head( ( t(_)::A ;T) ) :-proper_tunable_ad_head363,14605 -proper_tunable_ad_head( ( t(_)::A ;T) ) :-proper_tunable_ad_head363,14605 -proper_tunable_ad_head( ( t(_)::A ;T) ) :-proper_tunable_ad_head363,14605 -create_mws_atom(A,Body_Vars,ID,Pos,A2) :-create_mws_atom374,14919 -create_mws_atom(A,Body_Vars,ID,Pos,A2) :-create_mws_atom374,14919 -create_mws_atom(A,Body_Vars,ID,Pos,A2) :-create_mws_atom374,14919 -create_ad_aux_facts(P::_, _, _, _, Acc, []) :-create_ad_aux_facts385,15254 -create_ad_aux_facts(P::_, _, _, _, Acc, []) :-create_ad_aux_facts385,15254 -create_ad_aux_facts(P::_, _, _, _, Acc, []) :-create_ad_aux_facts385,15254 -create_ad_aux_facts(P::Atom, Body_Vars, ID, Pos, Acc, [P1::ProbFact]) :-create_ad_aux_facts390,15420 -create_ad_aux_facts(P::Atom, Body_Vars, ID, Pos, Acc, [P1::ProbFact]) :-create_ad_aux_facts390,15420 -create_ad_aux_facts(P::Atom, Body_Vars, ID, Pos, Acc, [P1::ProbFact]) :-create_ad_aux_facts390,15420 -create_ad_aux_facts((P::Atom;T), Body_Vars, ID, Pos, Acc, [P1::ProbFact|T2]) :-create_ad_aux_facts398,15612 -create_ad_aux_facts((P::Atom;T), Body_Vars, ID, Pos, Acc, [P1::ProbFact|T2]) :-create_ad_aux_facts398,15612 -create_ad_aux_facts((P::Atom;T), Body_Vars, ID, Pos, Acc, [P1::ProbFact|T2]) :-create_ad_aux_facts398,15612 -create_tunable_ad_aux_facts(t(_)::_,_,_,Pos,[]) :-create_tunable_ad_aux_facts415,16021 -create_tunable_ad_aux_facts(t(_)::_,_,_,Pos,[]) :-create_tunable_ad_aux_facts415,16021 -create_tunable_ad_aux_facts(t(_)::_,_,_,Pos,[]) :-create_tunable_ad_aux_facts415,16021 -create_tunable_ad_aux_facts(t(_)::Atom,Body_Vars,ID,Pos,[t(_)::ProbFact]) :-create_tunable_ad_aux_facts419,16124 -create_tunable_ad_aux_facts(t(_)::Atom,Body_Vars,ID,Pos,[t(_)::ProbFact]) :-create_tunable_ad_aux_facts419,16124 -create_tunable_ad_aux_facts(t(_)::Atom,Body_Vars,ID,Pos,[t(_)::ProbFact]) :-create_tunable_ad_aux_facts419,16124 -create_tunable_ad_aux_facts((t(_)::Atom;T),Body_Vars,ID,Pos,[t(_)::ProbFact|T2]) :-create_tunable_ad_aux_facts421,16251 -create_tunable_ad_aux_facts((t(_)::Atom;T),Body_Vars,ID,Pos,[t(_)::ProbFact|T2]) :-create_tunable_ad_aux_facts421,16251 -create_tunable_ad_aux_facts((t(_)::Atom;T),Body_Vars,ID,Pos,[t(_)::ProbFact|T2]) :-create_tunable_ad_aux_facts421,16251 -create_aux_bodies(_::Atom, Body_Vars, Body, ID, Pos, Aux_Facts , _, [(Atom:-Body2)]) :-create_aux_bodies430,16581 -create_aux_bodies(_::Atom, Body_Vars, Body, ID, Pos, Aux_Facts , _, [(Atom:-Body2)]) :-create_aux_bodies430,16581 -create_aux_bodies(_::Atom, Body_Vars, Body, ID, Pos, Aux_Facts , _, [(Atom:-Body2)]) :-create_aux_bodies430,16581 -create_aux_bodies((_::Atom; T), Body_Vars, Body, ID, Pos, Aux_Facts , Mode, [(Atom:-Body2)|T2]) :-create_aux_bodies439,16820 -create_aux_bodies((_::Atom; T), Body_Vars, Body, ID, Pos, Aux_Facts , Mode, [(Atom:-Body2)|T2]) :-create_aux_bodies439,16820 -create_aux_bodies((_::Atom; T), Body_Vars, Body, ID, Pos, Aux_Facts , Mode, [(Atom:-Body2)|T2]) :-create_aux_bodies439,16820 -tuple_append(true,X,X) :-tuple_append456,17341 -tuple_append(true,X,X) :-tuple_append456,17341 -tuple_append(true,X,X) :-tuple_append456,17341 -tuple_append(X,true,X) :-tuple_append458,17371 -tuple_append(X,true,X) :-tuple_append458,17371 -tuple_append(X,true,X) :-tuple_append458,17371 -tuple_append((A,B),X,(A,B2)) :-tuple_append460,17401 -tuple_append((A,B),X,(A,B2)) :-tuple_append460,17401 -tuple_append((A,B),X,(A,B2)) :-tuple_append460,17401 -tuple_append(X,Y,(X,Y)) :-tuple_append464,17472 -tuple_append(X,Y,(X,Y)) :-tuple_append464,17472 -tuple_append(X,Y,(X,Y)) :-tuple_append464,17472 - -packages/ProbLog/problog/bdd.yap,4207 -:- dynamic bdd_curinter/1.dynamic211,9851 -:- dynamic bdd_curinter/1.dynamic211,9851 -bdd_init(FDO, PID):-bdd_init213,9879 -bdd_init(FDO, PID):-bdd_init213,9879 -bdd_init(FDO, PID):-bdd_init213,9879 -bdd_init(FDO, FDI, PID):-bdd_init219,10070 -bdd_init(FDO, FDI, PID):-bdd_init219,10070 -bdd_init(FDO, FDI, PID):-bdd_init219,10070 -bdd_commit(FDO, LINE):-bdd_commit225,10277 -bdd_commit(FDO, LINE):-bdd_commit225,10277 -bdd_commit(FDO, LINE):-bdd_commit225,10277 -bdd_kill(FDO, PID, S):-bdd_kill230,10363 -bdd_kill(FDO, PID, S):-bdd_kill230,10363 -bdd_kill(FDO, PID, S):-bdd_kill230,10363 -bdd_kill(FDO, FDI, PID, S):-bdd_kill235,10443 -bdd_kill(FDO, FDI, PID, S):-bdd_kill235,10443 -bdd_kill(FDO, FDI, PID, S):-bdd_kill235,10443 -bdd_line([], X, _, L):-bdd_line241,10542 -bdd_line([], X, _, L):-bdd_line241,10542 -bdd_line([], X, _, L):-bdd_line241,10542 -bdd_line(L, X, O, NL):-bdd_line253,10740 -bdd_line(L, X, O, NL):-bdd_line253,10740 -bdd_line(L, X, O, NL):-bdd_line253,10740 -bdd_line(L, [], _, L):-!.bdd_line260,10843 -bdd_line(L, [], _, L):-!.bdd_line260,10843 -bdd_line(L, [], _, L):-!.bdd_line260,10843 -bdd_line(L, [X|T], O, R):-bdd_line262,10870 -bdd_line(L, [X|T], O, R):-bdd_line262,10870 -bdd_line(L, [X|T], O, R):-bdd_line262,10870 -bdd_AND(L, X, NL):-bdd_AND266,10948 -bdd_AND(L, X, NL):-bdd_AND266,10948 -bdd_AND(L, X, NL):-bdd_AND266,10948 -bdd_OR(L, X, NL):-bdd_OR268,10995 -bdd_OR(L, X, NL):-bdd_OR268,10995 -bdd_OR(L, X, NL):-bdd_OR268,10995 -bdd_XOR(L, X, NL):-bdd_XOR270,11041 -bdd_XOR(L, X, NL):-bdd_XOR270,11041 -bdd_XOR(L, X, NL):-bdd_XOR270,11041 -bdd_NAND(L, X, NL):-bdd_NAND272,11088 -bdd_NAND(L, X, NL):-bdd_NAND272,11088 -bdd_NAND(L, X, NL):-bdd_NAND272,11088 -bdd_NOR(L, X, NL):-bdd_NOR274,11137 -bdd_NOR(L, X, NL):-bdd_NOR274,11137 -bdd_NOR(L, X, NL):-bdd_NOR274,11137 -bdd_XNOR(L, X, NL):-bdd_XNOR276,11185 -bdd_XNOR(L, X, NL):-bdd_XNOR276,11185 -bdd_XNOR(L, X, NL):-bdd_XNOR276,11185 -bdd_not(X, NX):-bdd_not279,11235 -bdd_not(X, NX):-bdd_not279,11235 -bdd_not(X, NX):-bdd_not279,11235 -bdd_laststep(L):-bdd_laststep283,11297 -bdd_laststep(L):-bdd_laststep283,11297 -bdd_laststep(L):-bdd_laststep283,11297 -bdd_nextDFS(FDO):-bdd_nextDFS289,11384 -bdd_nextDFS(FDO):-bdd_nextDFS289,11384 -bdd_nextDFS(FDO):-bdd_nextDFS289,11384 -bdd_reset(FDO):-bdd_reset292,11429 -bdd_reset(FDO):-bdd_reset292,11429 -bdd_reset(FDO):-bdd_reset292,11429 -bdd_nextBFS(FDO):-bdd_nextBFS295,11472 -bdd_nextBFS(FDO):-bdd_nextBFS295,11472 -bdd_nextBFS(FDO):-bdd_nextBFS295,11472 -bdd_ignoreDFS(FDO) :-bdd_ignoreDFS298,11521 -bdd_ignoreDFS(FDO) :-bdd_ignoreDFS298,11521 -bdd_ignoreDFS(FDO) :-bdd_ignoreDFS298,11521 -bdd_current(FDO, FDI, N, Qcnt, NodeId):-bdd_current301,11569 -bdd_current(FDO, FDI, N, Qcnt, NodeId):-bdd_current301,11569 -bdd_current(FDO, FDI, N, Qcnt, NodeId):-bdd_current301,11569 -bdd_highnodeof(FDO, FDI, H):-bdd_highnodeof308,11714 -bdd_highnodeof(FDO, FDI, H):-bdd_highnodeof308,11714 -bdd_highnodeof(FDO, FDI, H):-bdd_highnodeof308,11714 -bdd_lownodeof(FDO, FDI, L):-bdd_lownodeof315,11834 -bdd_lownodeof(FDO, FDI, L):-bdd_lownodeof315,11834 -bdd_lownodeof(FDO, FDI, L):-bdd_lownodeof315,11834 -bdd_nodevaluesof(FDO, FDI, N, V):-bdd_nodevaluesof322,11953 -bdd_nodevaluesof(FDO, FDI, N, V):-bdd_nodevaluesof322,11953 -bdd_nodevaluesof(FDO, FDI, N, V):-bdd_nodevaluesof322,11953 -nodevalues(_, _, 'TRUE', [1.0, 1, '(null)']):-!.nodevalues330,12107 -nodevalues(_, _, 'TRUE', [1.0, 1, '(null)']):-!.nodevalues330,12107 -nodevalues(_, _, 'TRUE', [1.0, 1, '(null)']):-!.nodevalues330,12107 -nodevalues(_, _, 'FALSE', [0.0, 0, '(null)']):-!.nodevalues331,12156 -nodevalues(_, _, 'FALSE', [0.0, 0, '(null)']):-!.nodevalues331,12156 -nodevalues(_, _, 'FALSE', [0.0, 0, '(null)']):-!.nodevalues331,12156 -nodevalues(FDO, FDI, N, V):-nodevalues332,12206 -nodevalues(FDO, FDI, N, V):-nodevalues332,12206 -nodevalues(FDO, FDI, N, V):-nodevalues332,12206 -bdd_leaf('TRUE'):-!.bdd_leaf335,12272 -bdd_leaf('TRUE'):-!.bdd_leaf335,12272 -bdd_leaf('TRUE'):-!.bdd_leaf335,12272 -bdd_leaf('FALSE'):-!.bdd_leaf336,12293 -bdd_leaf('FALSE'):-!.bdd_leaf336,12293 -bdd_leaf('FALSE'):-!.bdd_leaf336,12293 - -packages/ProbLog/problog/completion.yap,11974 -:- dynamic seen_atom/4.dynamic222,10086 -:- dynamic seen_atom/4.dynamic222,10086 -:- dynamic bdd_cluster/2.dynamic223,10110 -:- dynamic bdd_cluster/2.dynamic223,10110 -reset_completion :-reset_completion235,10875 -propagate_evidence(_,_) :-propagate_evidence243,11112 -propagate_evidence(_,_) :-propagate_evidence243,11112 -propagate_evidence(_,_) :-propagate_evidence243,11112 -propagate_evidence(InterpretationID,Query_Type) :-propagate_evidence249,11342 -propagate_evidence(InterpretationID,Query_Type) :-propagate_evidence249,11342 -propagate_evidence(InterpretationID,Query_Type) :-propagate_evidence249,11342 -print_script_per_cluster([],_,_,Seen_Atoms,Seen_Atoms,Cluster_IDs,Cluster_IDs).print_script_per_cluster385,16033 -print_script_per_cluster([],_,_,Seen_Atoms,Seen_Atoms,Cluster_IDs,Cluster_IDs).print_script_per_cluster385,16033 -print_script_per_cluster([Refs|T],InterpretationID,Cluster_ID,Old_Seen_Atoms,Seen_Atoms,Old_Cluster_IDs,Cluster_IDs) :-print_script_per_cluster386,16113 -print_script_per_cluster([Refs|T],InterpretationID,Cluster_ID,Old_Seen_Atoms,Seen_Atoms,Old_Cluster_IDs,Cluster_IDs) :-print_script_per_cluster386,16113 -print_script_per_cluster([Refs|T],InterpretationID,Cluster_ID,Old_Seen_Atoms,Seen_Atoms,Old_Cluster_IDs,Cluster_IDs) :-print_script_per_cluster386,16113 -completion(InterpretationID) :-completion398,16729 -completion(InterpretationID) :-completion398,16729 -completion(InterpretationID) :-completion398,16729 -propagate :-propagate441,18167 -propagate :-propagate451,18370 -propagate_intern_known(true) :-propagate_intern_known457,18454 -propagate_intern_known(true) :-propagate_intern_known457,18454 -propagate_intern_known(true) :-propagate_intern_known457,18454 -propagate_intern_known(false).propagate_intern_known482,19108 -propagate_intern_known(false).propagate_intern_known482,19108 -propagate_intern_deterministic(true) :-propagate_intern_deterministic484,19140 -propagate_intern_deterministic(true) :-propagate_intern_deterministic484,19140 -propagate_intern_deterministic(true) :-propagate_intern_deterministic484,19140 -propagate_intern_deterministic(false).propagate_intern_deterministic508,19744 -propagate_intern_deterministic(false).propagate_intern_deterministic508,19744 -record_constraint_cs_check( (X <=> Y) ) :-record_constraint_cs_check515,19938 -record_constraint_cs_check( (X <=> Y) ) :-record_constraint_cs_check515,19938 -record_constraint_cs_check( (X <=> Y) ) :-record_constraint_cs_check515,19938 -record_constraint_cs_check((X,Y)) :-record_constraint_cs_check517,20010 -record_constraint_cs_check((X,Y)) :-record_constraint_cs_check517,20010 -record_constraint_cs_check((X,Y)) :-record_constraint_cs_check517,20010 -record_constraint_cs_check( (X;Y)) :-record_constraint_cs_check520,20111 -record_constraint_cs_check( (X;Y)) :-record_constraint_cs_check520,20111 -record_constraint_cs_check( (X;Y)) :-record_constraint_cs_check520,20111 -record_constraint_cs_check( \+ '$atom'(X) ) :-record_constraint_cs_check522,20174 -record_constraint_cs_check( \+ '$atom'(X) ) :-record_constraint_cs_check522,20174 -record_constraint_cs_check( \+ '$atom'(X) ) :-record_constraint_cs_check522,20174 -record_constraint_cs_check('$atom'(X)) :-record_constraint_cs_check529,20365 -record_constraint_cs_check('$atom'(X)) :-record_constraint_cs_check529,20365 -record_constraint_cs_check('$atom'(X)) :-record_constraint_cs_check529,20365 -record_constraint_cs_check(true).record_constraint_cs_check536,20549 -record_constraint_cs_check(true).record_constraint_cs_check536,20549 -split_atom_name(Name,ID,GroundID) :-split_atom_name543,20738 -split_atom_name(Name,ID,GroundID) :-split_atom_name543,20738 -split_atom_name(Name,ID,GroundID) :-split_atom_name543,20738 -store_known_atoms(ID,ClusterIDs,Query_Type) :-store_known_atoms562,21013 -store_known_atoms(ID,ClusterIDs,Query_Type) :-store_known_atoms562,21013 -store_known_atoms(ID,ClusterIDs,Query_Type) :-store_known_atoms562,21013 -know_atom_expected_count(true,1).know_atom_expected_count602,21950 -know_atom_expected_count(true,1).know_atom_expected_count602,21950 -know_atom_expected_count(false,0).know_atom_expected_count603,21984 -know_atom_expected_count(false,0).know_atom_expected_count603,21984 -print_theory :-print_theory610,22174 -split_rules(Cluster) :-split_rules631,22912 -split_rules(Cluster) :-split_rules631,22912 -split_rules(Cluster) :-split_rules631,22912 -include_in_clusters(Expression,Reference) :-include_in_clusters662,23703 -include_in_clusters(Expression,Reference) :-include_in_clusters662,23703 -include_in_clusters(Expression,Reference) :-include_in_clusters662,23703 -merge_cluster(true) :-merge_cluster700,24836 -merge_cluster(true) :-merge_cluster700,24836 -merge_cluster(true) :-merge_cluster700,24836 -merge_cluster(false).merge_cluster714,25258 -merge_cluster(false).merge_cluster714,25258 -print_simplecudd_script(Refs,BDDFilename,Seen_Atoms) :-print_simplecudd_script720,25434 -print_simplecudd_script(Refs,BDDFilename,Seen_Atoms) :-print_simplecudd_script720,25434 -print_simplecudd_script(Refs,BDDFilename,Seen_Atoms) :-print_simplecudd_script720,25434 -print_expression(Term,_Handle,N) :-print_expression792,27170 -print_expression(Term,_Handle,N) :-print_expression792,27170 -print_expression(Term,_Handle,N) :-print_expression792,27170 -print_expression(X <=> Y, Handle,N3) :-print_expression796,27233 -print_expression(X <=> Y, Handle,N3) :-print_expression796,27233 -print_expression(X <=> Y, Handle,N3) :-print_expression796,27233 -print_expression( (X,Y), Handle,Number) :-print_expression802,27438 -print_expression( (X,Y), Handle,Number) :-print_expression802,27438 -print_expression( (X,Y), Handle,Number) :-print_expression802,27438 -print_expression( (X;Y), Handle,Number) :-print_expression805,27565 -print_expression( (X;Y), Handle,Number) :-print_expression805,27565 -print_expression( (X;Y), Handle,Number) :-print_expression805,27565 -print_expression( \+ '$atom'(X), _Handle,ID) :-print_expression808,27691 -print_expression( \+ '$atom'(X), _Handle,ID) :-print_expression808,27691 -print_expression( \+ '$atom'(X), _Handle,ID) :-print_expression808,27691 -print_expression( true, _Handle,'TRUE').print_expression811,27789 -print_expression( true, _Handle,'TRUE').print_expression811,27789 -print_expression( false, _Handle,'FALSE').print_expression812,27830 -print_expression( false, _Handle,'FALSE').print_expression812,27830 -print_expression('$atom'(X), _Handle,ID) :-print_expression813,27873 -print_expression('$atom'(X), _Handle,ID) :-print_expression813,27873 -print_expression('$atom'(X), _Handle,ID) :-print_expression813,27873 -print_expression_or((X;Y), Handle,OldAcc,Number) :-print_expression_or816,27935 -print_expression_or((X;Y), Handle,OldAcc,Number) :-print_expression_or816,27935 -print_expression_or((X;Y), Handle,OldAcc,Number) :-print_expression_or816,27935 -print_expression_or(X, Handle,OldAcc,Number) :-print_expression_or821,28111 -print_expression_or(X, Handle,OldAcc,Number) :-print_expression_or821,28111 -print_expression_or(X, Handle,OldAcc,Number) :-print_expression_or821,28111 -print_expression_and((X,Y), Handle,OldAcc,Number) :-print_expression_and827,28266 -print_expression_and((X,Y), Handle,OldAcc,Number) :-print_expression_and827,28266 -print_expression_and((X,Y), Handle,OldAcc,Number) :-print_expression_and827,28266 -print_expression_and(X, Handle,OldAcc,Number) :-print_expression_and832,28444 -print_expression_and(X, Handle,OldAcc,Number) :-print_expression_and832,28444 -print_expression_and(X, Handle,OldAcc,Number) :-print_expression_and832,28444 -print_expression_and_final((X,Y), Handle,OldAcc,Number) :-print_expression_and_final838,28600 -print_expression_and_final((X,Y), Handle,OldAcc,Number) :-print_expression_and_final838,28600 -print_expression_and_final((X,Y), Handle,OldAcc,Number) :-print_expression_and_final838,28600 -print_expression_and_final( true, _Handle,_ACC,'TRUE').print_expression_and_final842,28757 -print_expression_and_final( true, _Handle,_ACC,'TRUE').print_expression_and_final842,28757 -print_expression_and_final(X, Handle,OldAcc,Number) :-print_expression_and_final843,28813 -print_expression_and_final(X, Handle,OldAcc,Number) :-print_expression_and_final843,28813 -print_expression_and_final(X, Handle,OldAcc,Number) :-print_expression_and_final843,28813 -print_dot_expression_or((X;Y), Handle,Number) :-print_dot_expression_or852,29095 -print_dot_expression_or((X;Y), Handle,Number) :-print_dot_expression_or852,29095 -print_dot_expression_or((X;Y), Handle,Number) :-print_dot_expression_or852,29095 -print_dot_expression_or(X, Handle,Number) :-print_dot_expression_or857,29262 -print_dot_expression_or(X, Handle,Number) :-print_dot_expression_or857,29262 -print_dot_expression_or(X, Handle,Number) :-print_dot_expression_or857,29262 -print_dot_expression_and((X,Y), Handle,Number) :-print_dot_expression_and862,29380 -print_dot_expression_and((X,Y), Handle,Number) :-print_dot_expression_and862,29380 -print_dot_expression_and((X,Y), Handle,Number) :-print_dot_expression_and862,29380 -print_dot_expression_and(X, Handle,Number) :-print_dot_expression_and867,29549 -print_dot_expression_and(X, Handle,Number) :-print_dot_expression_and867,29549 -print_dot_expression_and(X, Handle,Number) :-print_dot_expression_and867,29549 -print_dot_expression(X <=> Y, Handle,N3) :-print_dot_expression874,29670 -print_dot_expression(X <=> Y, Handle,N3) :-print_dot_expression874,29670 -print_dot_expression(X <=> Y, Handle,N3) :-print_dot_expression874,29670 -print_dot_expression( (X,Y), Handle,Number) :-print_dot_expression881,29964 -print_dot_expression( (X,Y), Handle,Number) :-print_dot_expression881,29964 -print_dot_expression( (X,Y), Handle,Number) :-print_dot_expression881,29964 -print_dot_expression( (X;Y), Handle,Number) :-print_dot_expression885,30185 -print_dot_expression( (X;Y), Handle,Number) :-print_dot_expression885,30185 -print_dot_expression( (X;Y), Handle,Number) :-print_dot_expression885,30185 -print_dot_expression( \+ '$atom'(X), _Handle,ID) :-print_dot_expression889,30405 -print_dot_expression( \+ '$atom'(X), _Handle,ID) :-print_dot_expression889,30405 -print_dot_expression( \+ '$atom'(X), _Handle,ID) :-print_dot_expression889,30405 -print_dot_expression(true, _Handle,'TRUE').print_dot_expression892,30507 -print_dot_expression(true, _Handle,'TRUE').print_dot_expression892,30507 -print_dot_expression( false, _Handle,'FALSE').print_dot_expression893,30551 -print_dot_expression( false, _Handle,'FALSE').print_dot_expression893,30551 -print_dot_expression( '$atom'(X), _Handle,ID) :-print_dot_expression894,30598 -print_dot_expression( '$atom'(X), _Handle,ID) :-print_dot_expression894,30598 -print_dot_expression( '$atom'(X), _Handle,ID) :-print_dot_expression894,30598 -print_dot_line(N1,N2,Handle) :-print_dot_line898,30666 -print_dot_line(N1,N2,Handle) :-print_dot_line898,30666 -print_dot_line(N1,N2,Handle) :-print_dot_line898,30666 -remember(X,Name) :-remember911,30993 -remember(X,Name) :-remember911,30993 -remember(X,Name) :-remember911,30993 -remember(X,X) :-remember914,31041 -remember(X,X) :-remember914,31041 -remember(X,X) :-remember914,31041 -remember(X,Name) :-remember918,31108 -remember(X,Name) :-remember918,31108 -remember(X,Name) :-remember918,31108 -remember(X,Name) :-remember931,31349 -remember(X,Name) :-remember931,31349 -remember(X,Name) :-remember931,31349 -next_grounding_id(N) :-next_grounding_id937,31468 -next_grounding_id(N) :-next_grounding_id937,31468 -next_grounding_id(N) :-next_grounding_id937,31468 -next_det_counter(ID) :-next_det_counter942,31566 -next_det_counter(ID) :-next_det_counter942,31566 -next_det_counter(ID) :-next_det_counter942,31566 -next_counter(ID) :-next_counter948,31681 -next_counter(ID) :-next_counter948,31681 -next_counter(ID) :-next_counter948,31681 - -packages/ProbLog/problog/discrete.yap,1845 -uniform(I,N,ID) :-uniform254,11439 -uniform(I,N,ID) :-uniform254,11439 -uniform(I,N,ID) :-uniform254,11439 -uniform(I,I,Old,N,ID) :-uniform259,11538 -uniform(I,I,Old,N,ID) :-uniform259,11538 -uniform(I,I,Old,N,ID) :-uniform259,11538 -uniform(I,I2,Old,N,ID) :-uniform264,11635 -uniform(I,I2,Old,N,ID) :-uniform264,11635 -uniform(I,I2,Old,N,ID) :-uniform264,11635 -binomial(K,N,P,ID) :-binomial279,12062 -binomial(K,N,P,ID) :-binomial279,12062 -binomial(K,N,P,ID) :-binomial279,12062 -binomial(K,KResult,N,P,Old,ProbAcc,ID) :-binomial287,12201 -binomial(K,KResult,N,P,Old,ProbAcc,ID) :-binomial287,12201 -binomial(K,KResult,N,P,Old,ProbAcc,ID) :-binomial287,12201 -poisson(K,Lambda,ID) :-poisson333,13216 -poisson(K,Lambda,ID) :-poisson333,13216 -poisson(K,Lambda,ID) :-poisson333,13216 -poisson(K,K2,Old,Lambda,ProbAcc,ID) :-poisson340,13348 -poisson(K,K2,Old,Lambda,ProbAcc,ID) :-poisson340,13348 -poisson(K,K2,Old,Lambda,ProbAcc,ID) :-poisson340,13348 -power_over_factorial(N,Lambda,Result) :-power_over_factorial384,14254 -power_over_factorial(N,Lambda,Result) :-power_over_factorial384,14254 -power_over_factorial(N,Lambda,Result) :-power_over_factorial384,14254 -power_over_factorial(N,Lambda,Old,Result) :-power_over_factorial388,14359 -power_over_factorial(N,Lambda,Old,Result) :-power_over_factorial388,14359 -power_over_factorial(N,Lambda,Old,Result) :-power_over_factorial388,14359 -binomial_coefficient(N,K,Result) :-binomial_coefficient403,14588 -binomial_coefficient(N,K,Result) :-binomial_coefficient403,14588 -binomial_coefficient(N,K,Result) :-binomial_coefficient403,14588 -binomial_coefficient(I,N,Product,Result) :-binomial_coefficient407,14683 -binomial_coefficient(I,N,Product,Result) :-binomial_coefficient407,14683 -binomial_coefficient(I,N,Product,Result) :-binomial_coefficient407,14683 - -packages/ProbLog/problog/extlists.yap,1595 -open_end_memberchk(_A, []):-!, fail.open_end_memberchk218,10148 -open_end_memberchk(_A, []):-!, fail.open_end_memberchk218,10148 -open_end_memberchk(_A, []):-!, fail.open_end_memberchk218,10148 -open_end_memberchk(A, L-E):-open_end_memberchk219,10185 -open_end_memberchk(A, L-E):-open_end_memberchk219,10185 -open_end_memberchk(A, L-E):-open_end_memberchk219,10185 -open_end_add(A, [], [A|E]-E):-!.open_end_add222,10242 -open_end_add(A, [], [A|E]-E):-!.open_end_add222,10242 -open_end_add(A, [], [A|E]-E):-!.open_end_add222,10242 -open_end_add(A, L-E, L-NE):-open_end_add223,10275 -open_end_add(A, L-E, L-NE):-open_end_add223,10275 -open_end_add(A, L-E, L-NE):-open_end_add223,10275 -open_end_add_unique(A, [], [A|E]-E):-!.open_end_add_unique226,10319 -open_end_add_unique(A, [], [A|E]-E):-!.open_end_add_unique226,10319 -open_end_add_unique(A, [], [A|E]-E):-!.open_end_add_unique226,10319 -open_end_add_unique(A, L-E, L-E):-open_end_add_unique227,10359 -open_end_add_unique(A, L-E, L-E):-open_end_add_unique227,10359 -open_end_add_unique(A, L-E, L-E):-open_end_add_unique227,10359 -open_end_add_unique(A, L-E, L-NE):-open_end_add_unique229,10424 -open_end_add_unique(A, L-E, L-NE):-open_end_add_unique229,10424 -open_end_add_unique(A, L-E, L-NE):-open_end_add_unique229,10424 -open_end_close_end([], []):-!.open_end_close_end232,10475 -open_end_close_end([], []):-!.open_end_close_end232,10475 -open_end_close_end([], []):-!.open_end_close_end232,10475 -open_end_close_end(L-[], L).open_end_close_end233,10506 -open_end_close_end(L-[], L).open_end_close_end233,10506 - -packages/ProbLog/problog/flags.yap,11548 -problog_define_flag(Flag, Type, Description, DefaultValue):-problog_define_flag221,10179 -problog_define_flag(Flag, Type, Description, DefaultValue):-problog_define_flag221,10179 -problog_define_flag(Flag, Type, Description, DefaultValue):-problog_define_flag221,10179 -problog_define_flag(Flag, Type, Description, DefaultValue, FlagGroup):-problog_define_flag224,10295 -problog_define_flag(Flag, Type, Description, DefaultValue, FlagGroup):-problog_define_flag224,10295 -problog_define_flag(Flag, Type, Description, DefaultValue, FlagGroup):-problog_define_flag224,10295 -problog_define_flag(Flag, Type, Description, DefaultValue, FlagGroup, Handler):-problog_define_flag227,10433 -problog_define_flag(Flag, Type, Description, DefaultValue, FlagGroup, Handler):-problog_define_flag227,10433 -problog_define_flag(Flag, Type, Description, DefaultValue, FlagGroup, Handler):-problog_define_flag227,10433 -problog_defined_flag(Flag, Group, DefaultValue, Domain, Message):-problog_defined_flag230,10589 -problog_defined_flag(Flag, Group, DefaultValue, Domain, Message):-problog_defined_flag230,10589 -problog_defined_flag(Flag, Group, DefaultValue, Domain, Message):-problog_defined_flag230,10589 -problog_defined_flag_group(Group):-problog_defined_flag_group233,10717 -problog_defined_flag_group(Group):-problog_defined_flag_group233,10717 -problog_defined_flag_group(Group):-problog_defined_flag_group233,10717 -set_problog_flag(Flag, Value):-set_problog_flag236,10783 -set_problog_flag(Flag, Value):-set_problog_flag236,10783 -set_problog_flag(Flag, Value):-set_problog_flag236,10783 -problog_flag(Flag, Value):-problog_flag239,10841 -problog_flag(Flag, Value):-problog_flag239,10841 -problog_flag(Flag, Value):-problog_flag239,10841 -reset_problog_flags:- flags_reset.reset_problog_flags242,10895 -last_threshold_handler(message, '').last_threshold_handler278,14656 -last_threshold_handler(message, '').last_threshold_handler278,14656 -last_threshold_handler(validating, _Value).last_threshold_handler279,14693 -last_threshold_handler(validating, _Value).last_threshold_handler279,14693 -last_threshold_handler(validated, _Value).last_threshold_handler280,14737 -last_threshold_handler(validated, _Value).last_threshold_handler280,14737 -last_threshold_handler(stored, Value):-last_threshold_handler281,14780 -last_threshold_handler(stored, Value):-last_threshold_handler281,14780 -last_threshold_handler(stored, Value):-last_threshold_handler281,14780 -id_stepsize_handler(message, '').id_stepsize_handler285,14891 -id_stepsize_handler(message, '').id_stepsize_handler285,14891 -id_stepsize_handler(validating, _Value).id_stepsize_handler286,14925 -id_stepsize_handler(validating, _Value).id_stepsize_handler286,14925 -id_stepsize_handler(validated, _Value).id_stepsize_handler287,14966 -id_stepsize_handler(validated, _Value).id_stepsize_handler287,14966 -id_stepsize_handler(stored, Value):-id_stepsize_handler288,15006 -id_stepsize_handler(stored, Value):-id_stepsize_handler288,15006 -id_stepsize_handler(stored, Value):-id_stepsize_handler288,15006 -bdd_file_handler(message, '').bdd_file_handler292,15111 -bdd_file_handler(message, '').bdd_file_handler292,15111 -bdd_file_handler(validating, _Value).bdd_file_handler293,15142 -bdd_file_handler(validating, _Value).bdd_file_handler293,15142 -bdd_file_handler(validate, Value):-bdd_file_handler294,15180 -bdd_file_handler(validate, Value):-bdd_file_handler294,15180 -bdd_file_handler(validate, Value):-bdd_file_handler294,15180 -bdd_file_handler(validate, Value):-bdd_file_handler297,15341 -bdd_file_handler(validate, Value):-bdd_file_handler297,15341 -bdd_file_handler(validate, Value):-bdd_file_handler297,15341 -bdd_file_handler(validated, _Value).bdd_file_handler302,15525 -bdd_file_handler(validated, _Value).bdd_file_handler302,15525 -bdd_file_handler(stored, Value):-bdd_file_handler303,15562 -bdd_file_handler(stored, Value):-bdd_file_handler303,15562 -bdd_file_handler(stored, Value):-bdd_file_handler303,15562 -working_file_handler(message, '').working_file_handler309,15753 -working_file_handler(message, '').working_file_handler309,15753 -working_file_handler(validating, _Value).working_file_handler310,15788 -working_file_handler(validating, _Value).working_file_handler310,15788 -working_file_handler(validate, Value):-working_file_handler311,15830 -working_file_handler(validate, Value):-working_file_handler311,15830 -working_file_handler(validate, Value):-working_file_handler311,15830 -working_file_handler(validate, Value):-working_file_handler314,15995 -working_file_handler(validate, Value):-working_file_handler314,15995 -working_file_handler(validate, Value):-working_file_handler314,15995 -working_file_handler(validated, _Value).working_file_handler319,16183 -working_file_handler(validated, _Value).working_file_handler319,16183 -working_file_handler(stored, _Value).working_file_handler320,16224 -working_file_handler(stored, _Value).working_file_handler320,16224 -auto_handler(message, 'auto non-zero').auto_handler322,16263 -auto_handler(message, 'auto non-zero').auto_handler322,16263 -auto_handler(validating, Value) :-auto_handler323,16303 -auto_handler(validating, Value) :-auto_handler323,16303 -auto_handler(validating, Value) :-auto_handler323,16303 -auto_handler(validate, Value):-auto_handler326,16368 -auto_handler(validate, Value):-auto_handler326,16368 -auto_handler(validate, Value):-auto_handler326,16368 -auto_handler(validated, _Value).auto_handler328,16417 -auto_handler(validated, _Value).auto_handler328,16417 -auto_handler(stored, _Value).auto_handler329,16450 -auto_handler(stored, _Value).auto_handler329,16450 -examples_handler(message, 'examples').examples_handler332,16482 -examples_handler(message, 'examples').examples_handler332,16482 -examples_handler(validating, _Value).examples_handler333,16521 -examples_handler(validating, _Value).examples_handler333,16521 -examples_handler(validate, Value):-examples_handler334,16559 -examples_handler(validate, Value):-examples_handler334,16559 -examples_handler(validate, Value):-examples_handler334,16559 -examples_handler(validated, _Value).examples_handler336,16616 -examples_handler(validated, _Value).examples_handler336,16616 -examples_handler(stored, _Value).examples_handler337,16653 -examples_handler(stored, _Value).examples_handler337,16653 -learning_init_handler(message, '(Q,P,BDDFile,ProbFile,Query)').learning_init_handler340,16689 -learning_init_handler(message, '(Q,P,BDDFile,ProbFile,Query)').learning_init_handler340,16689 -learning_init_handler(validating, (_,_,_,_,_)).learning_init_handler341,16753 -learning_init_handler(validating, (_,_,_,_,_)).learning_init_handler341,16753 -learning_init_handler(validated, _Value).learning_init_handler343,16839 -learning_init_handler(validated, _Value).learning_init_handler343,16839 -learning_init_handler(stored, _Value).learning_init_handler344,16881 -learning_init_handler(stored, _Value).learning_init_handler344,16881 -learning_libdd_init_handler(message, '(Q,BDD,Query)').learning_libdd_init_handler346,16921 -learning_libdd_init_handler(message, '(Q,BDD,Query)').learning_libdd_init_handler346,16921 -learning_libdd_init_handler(validating, (_,_,_)).learning_libdd_init_handler347,16976 -learning_libdd_init_handler(validating, (_,_,_)).learning_libdd_init_handler347,16976 -learning_libdd_init_handler(validated, _Value).learning_libdd_init_handler349,17064 -learning_libdd_init_handler(validated, _Value).learning_libdd_init_handler349,17064 -learning_libdd_init_handler(stored, _Value).learning_libdd_init_handler350,17112 -learning_libdd_init_handler(stored, _Value).learning_libdd_init_handler350,17112 -learning_prob_init_handler(message, '(0,1] or uniform(l,h) ').learning_prob_init_handler352,17158 -learning_prob_init_handler(message, '(0,1] or uniform(l,h) ').learning_prob_init_handler352,17158 -learning_prob_init_handler(validating, uniform(Low,High)) :-learning_prob_init_handler353,17221 -learning_prob_init_handler(validating, uniform(Low,High)) :-learning_prob_init_handler353,17221 -learning_prob_init_handler(validating, uniform(Low,High)) :-learning_prob_init_handler353,17221 -learning_prob_init_handler(validating, N) :-learning_prob_init_handler359,17342 -learning_prob_init_handler(validating, N) :-learning_prob_init_handler359,17342 -learning_prob_init_handler(validating, N) :-learning_prob_init_handler359,17342 -learning_prob_init_handler(validating, A) :-learning_prob_init_handler363,17414 -learning_prob_init_handler(validating, A) :-learning_prob_init_handler363,17414 -learning_prob_init_handler(validating, A) :-learning_prob_init_handler363,17414 -learning_prob_init_handler(validated, _Value).learning_prob_init_handler366,17521 -learning_prob_init_handler(validated, _Value).learning_prob_init_handler366,17521 -learning_prob_init_handler(stored, _Value).learning_prob_init_handler367,17568 -learning_prob_init_handler(stored, _Value).learning_prob_init_handler367,17568 -linesearch_interval_handler(message,'nonempty interval(L,H)').linesearch_interval_handler370,17614 -linesearch_interval_handler(message,'nonempty interval(L,H)').linesearch_interval_handler370,17614 -linesearch_interval_handler(validating,V):-linesearch_interval_handler371,17677 -linesearch_interval_handler(validating,V):-linesearch_interval_handler371,17677 -linesearch_interval_handler(validating,V):-linesearch_interval_handler371,17677 -linesearch_interval_handler(validated,_).linesearch_interval_handler377,17803 -linesearch_interval_handler(validated,_).linesearch_interval_handler377,17803 -linesearch_interval_handler(stored,_).linesearch_interval_handler378,17845 -linesearch_interval_handler(stored,_).linesearch_interval_handler378,17845 -learning_output_dir_handler(message, '').learning_output_dir_handler382,17887 -learning_output_dir_handler(message, '').learning_output_dir_handler382,17887 -learning_output_dir_handler(validating, _Value).learning_output_dir_handler383,17929 -learning_output_dir_handler(validating, _Value).learning_output_dir_handler383,17929 -learning_output_dir_handler(validated, _Value).learning_output_dir_handler384,17978 -learning_output_dir_handler(validated, _Value).learning_output_dir_handler384,17978 -learning_output_dir_handler(stored, Value):-learning_output_dir_handler385,18026 -learning_output_dir_handler(stored, Value):-learning_output_dir_handler385,18026 -learning_output_dir_handler(stored, Value):-learning_output_dir_handler385,18026 -validation_type_values(problog_flag_validate_learninginit,'(QueryID,P, BDD,Probs,Call)').validation_type_values394,18229 -validation_type_values(problog_flag_validate_learninginit,'(QueryID,P, BDD,Probs,Call)').validation_type_values394,18229 -validation_type_values(problog_flag_validate_learningprobinit,'(FactID,P,Call)').validation_type_values396,18320 -validation_type_values(problog_flag_validate_learningprobinit,'(FactID,P,Call)').validation_type_values396,18320 -validation_type_values(problog_flag_validate_interval,'any nonempty interval (a,b)').validation_type_values398,18403 -validation_type_values(problog_flag_validate_interval,'any nonempty interval (a,b)').validation_type_values398,18403 -problog_flag_validate_interval( (V1,V2) ) :-problog_flag_validate_interval402,18523 -problog_flag_validate_interval( (V1,V2) ) :-problog_flag_validate_interval402,18523 -problog_flag_validate_interval( (V1,V2) ) :-problog_flag_validate_interval402,18523 - -packages/ProbLog/problog/gflags.yap,15185 -flag_define(Flag, Type, DefaultValue, Message):-flag_define251,11491 -flag_define(Flag, Type, DefaultValue, Message):-flag_define251,11491 -flag_define(Flag, Type, DefaultValue, Message):-flag_define251,11491 -flag_define(Flag, Group, Type, DefaultValue, Message):-flag_define254,11612 -flag_define(Flag, Group, Type, DefaultValue, Message):-flag_define254,11612 -flag_define(Flag, Group, Type, DefaultValue, Message):-flag_define254,11612 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define257,11738 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define257,11738 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define257,11738 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define261,11999 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define261,11999 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define261,11999 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define269,12298 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define269,12298 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define269,12298 -flag_define(Flag, Group, Type, DefaultValue, M:Handler, Message):-flag_define272,12492 -flag_define(Flag, Group, Type, DefaultValue, M:Handler, Message):-flag_define272,12492 -flag_define(Flag, Group, Type, DefaultValue, M:Handler, Message):-flag_define272,12492 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define276,12717 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define276,12717 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define276,12717 -flag_define(_Flag, Group, Type, DefaultValue, Handler, Message):-flag_define280,12941 -flag_define(_Flag, Group, Type, DefaultValue, Handler, Message):-flag_define280,12941 -flag_define(_Flag, Group, Type, DefaultValue, Handler, Message):-flag_define280,12941 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define289,13213 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define289,13213 -flag_define(Flag, Group, Type, DefaultValue, Handler, Message):-flag_define289,13213 -flag_group_defined(general).flag_group_defined298,13575 -flag_group_defined(general).flag_group_defined298,13575 -flag_group_defined(Group):-flag_group_defined299,13604 -flag_group_defined(Group):-flag_group_defined299,13604 -flag_group_defined(Group):-flag_group_defined299,13604 -flag_defined(Flag, Group, DefaultValue, Domain, Message):-flag_defined302,13677 -flag_defined(Flag, Group, DefaultValue, Domain, Message):-flag_defined302,13677 -flag_defined(Flag, Group, DefaultValue, Domain, Message):-flag_defined302,13677 -flag_get_domain_message(Type, M:Handler, Message):-flag_get_domain_message306,13877 -flag_get_domain_message(Type, M:Handler, Message):-flag_get_domain_message306,13877 -flag_get_domain_message(Type, M:Handler, Message):-flag_get_domain_message306,13877 -flag_set(Flag, _Value):-flag_set324,14303 -flag_set(Flag, _Value):-flag_set324,14303 -flag_set(Flag, _Value):-flag_set324,14303 -flag_set(Flag, _Value):-flag_set327,14394 -flag_set(Flag, _Value):-flag_set327,14394 -flag_set(Flag, _Value):-flag_set327,14394 -flag_set(Flag, Value):-flag_set331,14561 -flag_set(Flag, Value):-flag_set331,14561 -flag_set(Flag, Value):-flag_set331,14561 -flag_get(Flag, Value):-flag_get345,14976 -flag_get(Flag, Value):-flag_get345,14976 -flag_get(Flag, Value):-flag_get345,14976 -flag_store(Flag, Value):-flag_store348,15051 -flag_store(Flag, Value):-flag_store348,15051 -flag_store(Flag, Value):-flag_store348,15051 -flags_reset:-flags_reset356,15208 -flag_validate(_Flag, Value, _Type, M:Handler):-flag_validate363,15371 -flag_validate(_Flag, Value, _Type, M:Handler):-flag_validate363,15371 -flag_validate(_Flag, Value, _Type, M:Handler):-flag_validate363,15371 -flag_validate(_Flag, Value, Type, M:Handler):-flag_validate368,15513 -flag_validate(_Flag, Value, Type, M:Handler):-flag_validate368,15513 -flag_validate(_Flag, Value, Type, M:Handler):-flag_validate368,15513 -flag_validate(_Flag, Value, Type, _M:Handler):-flag_validate375,15740 -flag_validate(_Flag, Value, Type, _M:Handler):-flag_validate375,15740 -flag_validate(_Flag, Value, Type, _M:Handler):-flag_validate375,15740 -flag_validate(_Flag, Value, SyntacticSugar, M:Handler):-flag_validate382,15898 -flag_validate(_Flag, Value, SyntacticSugar, M:Handler):-flag_validate382,15898 -flag_validate(_Flag, Value, SyntacticSugar, M:Handler):-flag_validate382,15898 -flag_validate(_Flag, Value, SyntacticSugar, _M:Handler):-flag_validate390,16192 -flag_validate(_Flag, Value, SyntacticSugar, _M:Handler):-flag_validate390,16192 -flag_validate(_Flag, Value, SyntacticSugar, _M:Handler):-flag_validate390,16192 -flag_validate(Flag, Value, Type, Handler):-flag_validate397,16416 -flag_validate(Flag, Value, Type, Handler):-flag_validate397,16416 -flag_validate(Flag, Value, Type, Handler):-flag_validate397,16416 -flag_validate_dummy(Value):-flag_validate_dummy411,16683 -flag_validate_dummy(Value):-flag_validate_dummy411,16683 -flag_validate_dummy(Value):-flag_validate_dummy411,16683 -flag_validate_atom(Value):-flag_validate_atom415,16750 -flag_validate_atom(Value):-flag_validate_atom415,16750 -flag_validate_atom(Value):-flag_validate_atom415,16750 -flag_validate_atomic(Value):-flag_validate_atomic419,16816 -flag_validate_atomic(Value):-flag_validate_atomic419,16816 -flag_validate_atomic(Value):-flag_validate_atomic419,16816 -flag_validate_number(Value):-flag_validate_number423,16886 -flag_validate_number(Value):-flag_validate_number423,16886 -flag_validate_number(Value):-flag_validate_number423,16886 -flag_validate_integer(Value):-flag_validate_integer427,16957 -flag_validate_integer(Value):-flag_validate_integer427,16957 -flag_validate_integer(Value):-flag_validate_integer427,16957 -flag_validate_directory(Value):-flag_validate_directory431,17032 -flag_validate_directory(Value):-flag_validate_directory431,17032 -flag_validate_directory(Value):-flag_validate_directory431,17032 -flag_validate_directory(Value):-flag_validate_directory435,17166 -flag_validate_directory(Value):-flag_validate_directory435,17166 -flag_validate_directory(Value):-flag_validate_directory435,17166 -flag_validate_file(Value):-flag_validate_file441,17342 -flag_validate_file(Value):-flag_validate_file441,17342 -flag_validate_file(Value):-flag_validate_file441,17342 -flag_validate_file(Value):-flag_validate_file443,17448 -flag_validate_file(Value):-flag_validate_file443,17448 -flag_validate_file(Value):-flag_validate_file443,17448 -flag_validate_in_list(Domain):-flag_validate_in_list451,17597 -flag_validate_in_list(Domain):-flag_validate_in_list451,17597 -flag_validate_in_list(Domain):-flag_validate_in_list451,17597 -flag_validate_in_list(Domain, Value):-flag_validate_in_list453,17680 -flag_validate_in_list(Domain, Value):-flag_validate_in_list453,17680 -flag_validate_in_list(Domain, Value):-flag_validate_in_list453,17680 -flag_validate_in_interval([L, U], Type):-flag_validate_in_interval458,17766 -flag_validate_in_interval([L, U], Type):-flag_validate_in_interval458,17766 -flag_validate_in_interval([L, U], Type):-flag_validate_in_interval458,17766 -flag_validate_in_interval((L, U), Type):-flag_validate_in_interval469,18005 -flag_validate_in_interval((L, U), Type):-flag_validate_in_interval469,18005 -flag_validate_in_interval((L, U), Type):-flag_validate_in_interval469,18005 -flag_validate_in_interval(([L], U), Type):-flag_validate_in_interval480,18265 -flag_validate_in_interval(([L], U), Type):-flag_validate_in_interval480,18265 -flag_validate_in_interval(([L], U), Type):-flag_validate_in_interval480,18265 -flag_validate_in_interval((L, [U]), Type):-flag_validate_in_interval491,18515 -flag_validate_in_interval((L, [U]), Type):-flag_validate_in_interval491,18515 -flag_validate_in_interval((L, [U]), Type):-flag_validate_in_interval491,18515 -flag_validate_in_interval(([L], [U]), Type):-flag_validate_in_interval502,18765 -flag_validate_in_interval(([L], [U]), Type):-flag_validate_in_interval502,18765 -flag_validate_in_interval(([L], [U]), Type):-flag_validate_in_interval502,18765 -flag_validate_in_interval([L, U], Type, Value):-flag_validate_in_interval514,19009 -flag_validate_in_interval([L, U], Type, Value):-flag_validate_in_interval514,19009 -flag_validate_in_interval([L, U], Type, Value):-flag_validate_in_interval514,19009 -flag_validate_in_interval((L, U), Type, Value):-flag_validate_in_interval518,19127 -flag_validate_in_interval((L, U), Type, Value):-flag_validate_in_interval518,19127 -flag_validate_in_interval((L, U), Type, Value):-flag_validate_in_interval518,19127 -flag_validate_in_interval(([L], U), Type, Value):-flag_validate_in_interval522,19243 -flag_validate_in_interval(([L], U), Type, Value):-flag_validate_in_interval522,19243 -flag_validate_in_interval(([L], U), Type, Value):-flag_validate_in_interval522,19243 -flag_validate_in_interval((L, [U]), Type, Value):-flag_validate_in_interval526,19362 -flag_validate_in_interval((L, [U]), Type, Value):-flag_validate_in_interval526,19362 -flag_validate_in_interval((L, [U]), Type, Value):-flag_validate_in_interval526,19362 -flag_validate_in_interval(([L], [U]), Type, Value):-flag_validate_in_interval530,19481 -flag_validate_in_interval(([L], [U]), Type, Value):-flag_validate_in_interval530,19481 -flag_validate_in_interval(([L], [U]), Type, Value):-flag_validate_in_interval530,19481 -check_same_type(integer, Value, L, U):-check_same_type535,19601 -check_same_type(integer, Value, L, U):-check_same_type535,19601 -check_same_type(integer, Value, L, U):-check_same_type535,19601 -check_same_type(integer, Value, L, +inf):-check_same_type537,19686 -check_same_type(integer, Value, L, +inf):-check_same_type537,19686 -check_same_type(integer, Value, L, +inf):-check_same_type537,19686 -check_same_type(integer, Value, -inf, U):-check_same_type539,19762 -check_same_type(integer, Value, -inf, U):-check_same_type539,19762 -check_same_type(integer, Value, -inf, U):-check_same_type539,19762 -check_same_type(integer, Value, -inf, +inf):-check_same_type541,19838 -check_same_type(integer, Value, -inf, +inf):-check_same_type541,19838 -check_same_type(integer, Value, -inf, +inf):-check_same_type541,19838 -check_same_type(float, Value, L, U):-check_same_type543,19905 -check_same_type(float, Value, L, U):-check_same_type543,19905 -check_same_type(float, Value, L, U):-check_same_type543,19905 -check_same_type(number, Value, L, U):-check_same_type545,19979 -check_same_type(number, Value, L, U):-check_same_type545,19979 -check_same_type(number, Value, L, U):-check_same_type545,19979 -make_list_msg([H], H).make_list_msg550,20136 -make_list_msg([H], H).make_list_msg550,20136 -make_list_msg([H|T], Msg/H):-make_list_msg551,20159 -make_list_msg([H|T], Msg/H):-make_list_msg551,20159 -make_list_msg([H|T], Msg/H):-make_list_msg551,20159 -validation_type_values(flag_validate_dummy, '').validation_type_values554,20215 -validation_type_values(flag_validate_dummy, '').validation_type_values554,20215 -validation_type_values(flag_validate_atom, 'any atom').validation_type_values555,20264 -validation_type_values(flag_validate_atom, 'any atom').validation_type_values555,20264 -validation_type_values(flag_validate_atomic, 'any atomic').validation_type_values556,20320 -validation_type_values(flag_validate_atomic, 'any atomic').validation_type_values556,20320 -validation_type_values(flag_validate_number, 'any number').validation_type_values557,20380 -validation_type_values(flag_validate_number, 'any number').validation_type_values557,20380 -validation_type_values(flag_validate_integer, 'any integer').validation_type_values558,20440 -validation_type_values(flag_validate_integer, 'any integer').validation_type_values558,20440 -validation_type_values(flag_validate_directory, 'any valid directory').validation_type_values559,20502 -validation_type_values(flag_validate_directory, 'any valid directory').validation_type_values559,20502 -validation_type_values(flag_validate_file, 'any valid file').validation_type_values560,20574 -validation_type_values(flag_validate_file, 'any valid file').validation_type_values560,20574 -validation_type_values(flag_validate_in_list(L), Msg):-validation_type_values562,20637 -validation_type_values(flag_validate_in_list(L), Msg):-validation_type_values562,20637 -validation_type_values(flag_validate_in_list(L), Msg):-validation_type_values562,20637 -validation_type_values(flag_validate_in_interval((L, U), Type), Domain):-validation_type_values566,20736 -validation_type_values(flag_validate_in_interval((L, U), Type), Domain):-validation_type_values566,20736 -validation_type_values(flag_validate_in_interval((L, U), Type), Domain):-validation_type_values566,20736 -validation_type_values(flag_validate_in_interval(([L], U), Type), Domain):-validation_type_values569,20891 -validation_type_values(flag_validate_in_interval(([L], U), Type), Domain):-validation_type_values569,20891 -validation_type_values(flag_validate_in_interval(([L], U), Type), Domain):-validation_type_values569,20891 -validation_type_values(flag_validate_in_interval((L, [U]), Type), Domain):-validation_type_values572,21048 -validation_type_values(flag_validate_in_interval((L, [U]), Type), Domain):-validation_type_values572,21048 -validation_type_values(flag_validate_in_interval((L, [U]), Type), Domain):-validation_type_values572,21048 -validation_type_values(flag_validate_in_interval(([L], [U]), Type), Domain):-validation_type_values575,21205 -validation_type_values(flag_validate_in_interval(([L], [U]), Type), Domain):-validation_type_values575,21205 -validation_type_values(flag_validate_in_interval(([L], [U]), Type), Domain):-validation_type_values575,21205 -validation_type_values(flag_validate_in_interval([L, U], Type), Domain):-validation_type_values578,21364 -validation_type_values(flag_validate_in_interval([L, U], Type), Domain):-validation_type_values578,21364 -validation_type_values(flag_validate_in_interval([L, U], Type), Domain):-validation_type_values578,21364 -validation_type_values(ValidationType, Domain):-validation_type_values582,21520 -validation_type_values(ValidationType, Domain):-validation_type_values582,21520 -validation_type_values(ValidationType, Domain):-validation_type_values582,21520 -flag_validation_syntactic_sugar(SyntacticSugar, Type):-flag_validation_syntactic_sugar590,21727 -flag_validation_syntactic_sugar(SyntacticSugar, Type):-flag_validation_syntactic_sugar590,21727 -flag_validation_syntactic_sugar(SyntacticSugar, Type):-flag_validation_syntactic_sugar590,21727 -flag_add_validation_syntactic_sugar(SyntacticSugar, Type):-flag_add_validation_syntactic_sugar593,21859 -flag_add_validation_syntactic_sugar(SyntacticSugar, Type):-flag_add_validation_syntactic_sugar593,21859 -flag_add_validation_syntactic_sugar(SyntacticSugar, Type):-flag_add_validation_syntactic_sugar593,21859 - -packages/ProbLog/problog/grounder.yap,5131 -:- multifile user:myclause/3.multifile32,827 -:- multifile user:myclause/3.multifile32,827 -user:myclause(_InterpretationID,Head,Body) :-myclause34,858 -user:myclause(_InterpretationID,Head,Body) :-myclause34,858 -grounder_reset :-grounder_reset43,1184 -grounder_reachable_atom(Atom) :-grounder_reachable_atom51,1409 -grounder_reachable_atom(Atom) :-grounder_reachable_atom51,1409 -grounder_reachable_atom(Atom) :-grounder_reachable_atom51,1409 -grounder_compute_reachable_atoms(A,ID,Success) :-grounder_compute_reachable_atoms73,2185 -grounder_compute_reachable_atoms(A,ID,Success) :-grounder_compute_reachable_atoms73,2185 -grounder_compute_reachable_atoms(A,ID,Success) :-grounder_compute_reachable_atoms73,2185 -tabled_meta_interpreter(X,ID) :-tabled_meta_interpreter103,3091 -tabled_meta_interpreter(X,ID) :-tabled_meta_interpreter103,3091 -tabled_meta_interpreter(X,ID) :-tabled_meta_interpreter103,3091 -tabled_meta_interpreter((X,Y),ID) :-tabled_meta_interpreter105,3149 -tabled_meta_interpreter((X,Y),ID) :-tabled_meta_interpreter105,3149 -tabled_meta_interpreter((X,Y),ID) :-tabled_meta_interpreter105,3149 -tabled_meta_interpreter((X;Y),ID) :-tabled_meta_interpreter109,3254 -tabled_meta_interpreter((X;Y),ID) :-tabled_meta_interpreter109,3254 -tabled_meta_interpreter((X;Y),ID) :-tabled_meta_interpreter109,3254 -tabled_meta_interpreter(\+ X,ID) :-tabled_meta_interpreter115,3367 -tabled_meta_interpreter(\+ X,ID) :-tabled_meta_interpreter115,3367 -tabled_meta_interpreter(\+ X,ID) :-tabled_meta_interpreter115,3367 -tabled_meta_interpreter(X,_) :-tabled_meta_interpreter124,3561 -tabled_meta_interpreter(X,_) :-tabled_meta_interpreter124,3561 -tabled_meta_interpreter(X,_) :-tabled_meta_interpreter124,3561 -tabled_meta_interpreter( Atom,ID ) :-tabled_meta_interpreter128,3640 -tabled_meta_interpreter( Atom,ID ) :-tabled_meta_interpreter128,3640 -tabled_meta_interpreter( Atom,ID ) :-tabled_meta_interpreter128,3640 -tabled_meta_interpreter(Atom,ID) :-tabled_meta_interpreter141,3937 -tabled_meta_interpreter(Atom,ID) :-tabled_meta_interpreter141,3937 -tabled_meta_interpreter(Atom,ID) :-tabled_meta_interpreter141,3937 -tabled_meta_interpreter_aux_ground_atom(Atom,_ID) :-tabled_meta_interpreter_aux_ground_atom186,5625 -tabled_meta_interpreter_aux_ground_atom(Atom,_ID) :-tabled_meta_interpreter_aux_ground_atom186,5625 -tabled_meta_interpreter_aux_ground_atom(Atom,_ID) :-tabled_meta_interpreter_aux_ground_atom186,5625 -tabled_meta_interpreter_aux_ground_atom(Atom,ID) :-tabled_meta_interpreter_aux_ground_atom191,5853 -tabled_meta_interpreter_aux_ground_atom(Atom,ID) :-tabled_meta_interpreter_aux_ground_atom191,5853 -tabled_meta_interpreter_aux_ground_atom(Atom,ID) :-tabled_meta_interpreter_aux_ground_atom191,5853 -grounder_ground_term_with_reachable_atoms( (X,Y), (X2,Y2)) :-grounder_ground_term_with_reachable_atoms209,6560 -grounder_ground_term_with_reachable_atoms( (X,Y), (X2,Y2)) :-grounder_ground_term_with_reachable_atoms209,6560 -grounder_ground_term_with_reachable_atoms( (X,Y), (X2,Y2)) :-grounder_ground_term_with_reachable_atoms209,6560 -grounder_ground_term_with_reachable_atoms( (X;Y), (X2;Y2)) :-grounder_ground_term_with_reachable_atoms213,6727 -grounder_ground_term_with_reachable_atoms( (X;Y), (X2;Y2)) :-grounder_ground_term_with_reachable_atoms213,6727 -grounder_ground_term_with_reachable_atoms( (X;Y), (X2;Y2)) :-grounder_ground_term_with_reachable_atoms213,6727 -grounder_ground_term_with_reachable_atoms( \+X, \+X2) :-grounder_ground_term_with_reachable_atoms217,6894 -grounder_ground_term_with_reachable_atoms( \+X, \+X2) :-grounder_ground_term_with_reachable_atoms217,6894 -grounder_ground_term_with_reachable_atoms( \+X, \+X2) :-grounder_ground_term_with_reachable_atoms217,6894 -grounder_ground_term_with_reachable_atoms( false, false) :-grounder_ground_term_with_reachable_atoms220,7006 -grounder_ground_term_with_reachable_atoms( false, false) :-grounder_ground_term_with_reachable_atoms220,7006 -grounder_ground_term_with_reachable_atoms( false, false) :-grounder_ground_term_with_reachable_atoms220,7006 -grounder_ground_term_with_reachable_atoms(X, true) :-grounder_ground_term_with_reachable_atoms222,7071 -grounder_ground_term_with_reachable_atoms(X, true) :-grounder_ground_term_with_reachable_atoms222,7071 -grounder_ground_term_with_reachable_atoms(X, true) :-grounder_ground_term_with_reachable_atoms222,7071 -grounder_ground_term_with_reachable_atoms(X,'$atom'(X)) :-grounder_ground_term_with_reachable_atoms226,7172 -grounder_ground_term_with_reachable_atoms(X,'$atom'(X)) :-grounder_ground_term_with_reachable_atoms226,7172 -grounder_ground_term_with_reachable_atoms(X,'$atom'(X)) :-grounder_ground_term_with_reachable_atoms226,7172 -grounder_completion_for_atom(Head,InterpretationID,'$atom'(Head)<=>Disjunction) :-grounder_completion_for_atom242,7498 -grounder_completion_for_atom(Head,InterpretationID,'$atom'(Head)<=>Disjunction) :-grounder_completion_for_atom242,7498 -grounder_completion_for_atom(Head,InterpretationID,'$atom'(Head)<=>Disjunction) :-grounder_completion_for_atom242,7498 - -packages/ProbLog/problog/hash_table.yap,15063 -int(N):-int283,12456 -int(N):-int283,12456 -int(N):-int283,12456 -int(N, N).int285,12478 -int(N, N).int285,12478 -int(P, R):-int286,12489 -int(P, R):-int286,12489 -int(P, R):-int286,12489 -get_digits(Num, Digits):-get_digits290,12529 -get_digits(Num, Digits):-get_digits290,12529 -get_digits(Num, Digits):-get_digits290,12529 -get_digits(Num, Digits, Digits):-get_digits292,12585 -get_digits(Num, Digits, Digits):-get_digits292,12585 -get_digits(Num, Digits, Digits):-get_digits292,12585 -get_digits(Num, Digits, Acc):-get_digits294,12634 -get_digits(Num, Digits, Acc):-get_digits294,12634 -get_digits(Num, Digits, Acc):-get_digits294,12634 -get_next_array(ID, Name):-get_next_array304,12805 -get_next_array(ID, Name):-get_next_array304,12805 -get_next_array(ID, Name):-get_next_array304,12805 -get_next_identifier(Identifier, Next):-get_next_identifier310,12934 -get_next_identifier(Identifier, Next):-get_next_identifier310,12934 -get_next_identifier(Identifier, Next):-get_next_identifier310,12934 -get_array_name(ID, Array):- % if you change this, you need to change also get_next_arrayget_array_name318,13079 -get_array_name(ID, Array):- % if you change this, you need to change also get_next_arrayget_array_name318,13079 -get_array_name(ID, Array):- % if you change this, you need to change also get_next_arrayget_array_name318,13079 -get_array_identifier(ID, Identifier):-get_array_identifier323,13260 -get_array_identifier(ID, Identifier):-get_array_identifier323,13260 -get_array_identifier(ID, Identifier):-get_array_identifier323,13260 -hash_table_init(Size, HashTable):-hash_table_init331,13528 -hash_table_init(Size, HashTable):-hash_table_init331,13528 -hash_table_init(Size, HashTable):-hash_table_init331,13528 -hash_table_init(Size, RevSize, HashTable):-hash_table_init333,13605 -hash_table_init(Size, RevSize, HashTable):-hash_table_init333,13605 -hash_table_init(Size, RevSize, HashTable):-hash_table_init333,13605 -hash_table_expand_array(Array, Size, NewArray):-hash_table_expand_array344,14005 -hash_table_expand_array(Array, Size, NewArray):-hash_table_expand_array344,14005 -hash_table_expand_array(Array, Size, NewArray):-hash_table_expand_array344,14005 -hash_table_sub_array_init(Array, Index, NewArray, Size):-hash_table_sub_array_init350,14187 -hash_table_sub_array_init(Array, Index, NewArray, Size):-hash_table_sub_array_init350,14187 -hash_table_sub_array_init(Array, Index, NewArray, Size):-hash_table_sub_array_init350,14187 -hash_table_set_domain_size(HashTable, Index, DomainSize):-hash_table_set_domain_size361,14510 -hash_table_set_domain_size(HashTable, Index, DomainSize):-hash_table_set_domain_size361,14510 -hash_table_set_domain_size(HashTable, Index, DomainSize):-hash_table_set_domain_size361,14510 -hash_table_set_domain_size(Array, Size, Index, DomainSize):-hash_table_set_domain_size367,14758 -hash_table_set_domain_size(Array, Size, Index, DomainSize):-hash_table_set_domain_size367,14758 -hash_table_set_domain_size(Array, Size, Index, DomainSize):-hash_table_set_domain_size367,14758 -hash_table_set_domain_size(Array, Size, Index, DomainSize):-hash_table_set_domain_size377,15075 -hash_table_set_domain_size(Array, Size, Index, DomainSize):-hash_table_set_domain_size377,15075 -hash_table_set_domain_size(Array, Size, Index, DomainSize):-hash_table_set_domain_size377,15075 -hash_table_set_domain_size(Array, Size, Index, DomainSize):-hash_table_set_domain_size388,15418 -hash_table_set_domain_size(Array, Size, Index, DomainSize):-hash_table_set_domain_size388,15418 -hash_table_set_domain_size(Array, Size, Index, DomainSize):-hash_table_set_domain_size388,15418 -hash_table_set_domain_size(Array, Size, (Index, Rest), DomainSize):-hash_table_set_domain_size394,15587 -hash_table_set_domain_size(Array, Size, (Index, Rest), DomainSize):-hash_table_set_domain_size394,15587 -hash_table_set_domain_size(Array, Size, (Index, Rest), DomainSize):-hash_table_set_domain_size394,15587 -hash_table_set_domain_size(Array, Size, (Index, Rest), DomainSize):-hash_table_set_domain_size405,16024 -hash_table_set_domain_size(Array, Size, (Index, Rest), DomainSize):-hash_table_set_domain_size405,16024 -hash_table_set_domain_size(Array, Size, (Index, Rest), DomainSize):-hash_table_set_domain_size405,16024 -hash_table_delete(HashTable):-hash_table_delete422,16501 -hash_table_delete(HashTable):-hash_table_delete422,16501 -hash_table_delete(HashTable):-hash_table_delete422,16501 -hash_table_delete_array(Array, Size):-hash_table_delete_array430,16777 -hash_table_delete_array(Array, Size):-hash_table_delete_array430,16777 -hash_table_delete_array(Array, Size):-hash_table_delete_array430,16777 -hash_table_delete_chain(Array, Size):-hash_table_delete_chain435,16924 -hash_table_delete_chain(Array, Size):-hash_table_delete_chain435,16924 -hash_table_delete_chain(Array, Size):-hash_table_delete_chain435,16924 -hash_table_delete_subarrays(Array):- % I can improve the performance of this by making a second record with Array infronthash_table_delete_subarrays444,17142 -hash_table_delete_subarrays(Array):- % I can improve the performance of this by making a second record with Array infronthash_table_delete_subarrays444,17142 -hash_table_delete_subarrays(Array):- % I can improve the performance of this by making a second record with Array infronthash_table_delete_subarrays444,17142 -hash_table_delete_rev_array(Array, Size):-hash_table_delete_rev_array448,17412 -hash_table_delete_rev_array(Array, Size):-hash_table_delete_rev_array448,17412 -hash_table_delete_rev_array(Array, Size):-hash_table_delete_rev_array448,17412 -hash_table_reset(HashTable):-hash_table_reset463,17686 -hash_table_reset(HashTable):-hash_table_reset463,17686 -hash_table_reset(HashTable):-hash_table_reset463,17686 -hash_table_reset_element(Array, Size, Index):-hash_table_reset_element474,18074 -hash_table_reset_element(Array, Size, Index):-hash_table_reset_element474,18074 -hash_table_reset_element(Array, Size, Index):-hash_table_reset_element474,18074 -hash_table_reset_element(Array, Size, Index):-hash_table_reset_element479,18192 -hash_table_reset_element(Array, Size, Index):-hash_table_reset_element479,18192 -hash_table_reset_element(Array, Size, Index):-hash_table_reset_element479,18192 -hash_table_reset_element(Array, Size, (Index, Rest)):-hash_table_reset_element486,18422 -hash_table_reset_element(Array, Size, (Index, Rest)):-hash_table_reset_element486,18422 -hash_table_reset_element(Array, Size, (Index, Rest)):-hash_table_reset_element486,18422 -hash_table_reset_element(Array, Size, (Index, Rest)):-hash_table_reset_element493,18700 -hash_table_reset_element(Array, Size, (Index, Rest)):-hash_table_reset_element493,18700 -hash_table_reset_element(Array, Size, (Index, Rest)):-hash_table_reset_element493,18700 -hash_table_reset_rev_array(RevArray, RevSize):-hash_table_reset_rev_array500,18948 -hash_table_reset_rev_array(RevArray, RevSize):-hash_table_reset_rev_array500,18948 -hash_table_reset_rev_array(RevArray, RevSize):-hash_table_reset_rev_array500,18948 -hash_table_reset_rev_array(RevArray, _RevSize):-hash_table_reset_rev_array506,19180 -hash_table_reset_rev_array(RevArray, _RevSize):-hash_table_reset_rev_array506,19180 -hash_table_reset_rev_array(RevArray, _RevSize):-hash_table_reset_rev_array506,19180 -hash_table_lookup(HashTable, Tuple, ID):-hash_table_lookup520,19654 -hash_table_lookup(HashTable, Tuple, ID):-hash_table_lookup520,19654 -hash_table_lookup(HashTable, Tuple, ID):-hash_table_lookup520,19654 -hash_table_lookup(HashTable, Tuple, ID):-hash_table_lookup527,19941 -hash_table_lookup(HashTable, Tuple, ID):-hash_table_lookup527,19941 -hash_table_lookup(HashTable, Tuple, ID):-hash_table_lookup527,19941 -hash_table_lookup(Array, Size, Identifier, Index, RID):-hash_table_lookup533,20170 -hash_table_lookup(Array, Size, Identifier, Index, RID):-hash_table_lookup533,20170 -hash_table_lookup(Array, Size, Identifier, Index, RID):-hash_table_lookup533,20170 -hash_table_lookup(Array, Size, Identifier, Index, ID):-hash_table_lookup545,20446 -hash_table_lookup(Array, Size, Identifier, Index, ID):-hash_table_lookup545,20446 -hash_table_lookup(Array, Size, Identifier, Index, ID):-hash_table_lookup545,20446 -hash_table_lookup(Array, Size, Identifier, (Index,Tuple), ID):-hash_table_lookup556,20771 -hash_table_lookup(Array, Size, Identifier, (Index,Tuple), ID):-hash_table_lookup556,20771 -hash_table_lookup(Array, Size, Identifier, (Index,Tuple), ID):-hash_table_lookup556,20771 -hash_table_lookup(Array, Size, Identifier, (Index,Tuple), ID):-hash_table_lookup568,21161 -hash_table_lookup(Array, Size, Identifier, (Index,Tuple), ID):-hash_table_lookup568,21161 -hash_table_lookup(Array, Size, Identifier, (Index,Tuple), ID):-hash_table_lookup568,21161 -hash_table_update_rev_array(Array, Size, Index, Tuple):-hash_table_update_rev_array579,21500 -hash_table_update_rev_array(Array, Size, Index, Tuple):-hash_table_update_rev_array579,21500 -hash_table_update_rev_array(Array, Size, Index, Tuple):-hash_table_update_rev_array579,21500 -hash_table_update_rev_array(Array, Size, Index, Tuple):-hash_table_update_rev_array584,21632 -hash_table_update_rev_array(Array, Size, Index, Tuple):-hash_table_update_rev_array584,21632 -hash_table_update_rev_array(Array, Size, Index, Tuple):-hash_table_update_rev_array584,21632 -hash_table_element_rev_array(Array, Size, Index, Tuple):-hash_table_element_rev_array597,22022 -hash_table_element_rev_array(Array, Size, Index, Tuple):-hash_table_element_rev_array597,22022 -hash_table_element_rev_array(Array, Size, Index, Tuple):-hash_table_element_rev_array597,22022 -hash_table_element_rev_array(Array, Size, Index, Tuple):-hash_table_element_rev_array602,22156 -hash_table_element_rev_array(Array, Size, Index, Tuple):-hash_table_element_rev_array602,22156 -hash_table_element_rev_array(Array, Size, Index, Tuple):-hash_table_element_rev_array602,22156 -hash_table_contains(HashTable, Tuple, ID):-hash_table_contains617,22689 -hash_table_contains(HashTable, Tuple, ID):-hash_table_contains617,22689 -hash_table_contains(HashTable, Tuple, ID):-hash_table_contains617,22689 -hash_table_contains(Array, Size, Index, RID):-hash_table_contains623,22910 -hash_table_contains(Array, Size, Index, RID):-hash_table_contains623,22910 -hash_table_contains(Array, Size, Index, RID):-hash_table_contains623,22910 -hash_table_contains(Array, Size, Index, ID):-hash_table_contains630,23057 -hash_table_contains(Array, Size, Index, ID):-hash_table_contains630,23057 -hash_table_contains(Array, Size, Index, ID):-hash_table_contains630,23057 -hash_table_contains(Array, Size, (Index,Tuple), ID):-hash_table_contains638,23306 -hash_table_contains(Array, Size, (Index,Tuple), ID):-hash_table_contains638,23306 -hash_table_contains(Array, Size, (Index,Tuple), ID):-hash_table_contains638,23306 -hash_table_contains(Array, Size, (Index,Tuple), ID):-hash_table_contains646,23591 -hash_table_contains(Array, Size, (Index,Tuple), ID):-hash_table_contains646,23591 -hash_table_contains(Array, Size, (Index,Tuple), ID):-hash_table_contains646,23591 -hash_table_get_entries(HashTable, Count):-hash_table_get_entries659,23959 -hash_table_get_entries(HashTable, Count):-hash_table_get_entries659,23959 -hash_table_get_entries(HashTable, Count):-hash_table_get_entries659,23959 -hash_table_display(HashTable, ColSize, PaneSize):-hash_table_display670,24250 -hash_table_display(HashTable, ColSize, PaneSize):-hash_table_display670,24250 -hash_table_display(HashTable, ColSize, PaneSize):-hash_table_display670,24250 -hash_table_display_array(Array, Size):-hash_table_display_array678,24728 -hash_table_display_array(Array, Size):-hash_table_display_array678,24728 -hash_table_display_array(Array, Size):-hash_table_display_array678,24728 -hash_table_display_rev_array(RevArray, RevSize, Identifier, ColSize, PaneSize):-hash_table_display_rev_array687,25175 -hash_table_display_rev_array(RevArray, RevSize, Identifier, ColSize, PaneSize):-hash_table_display_rev_array687,25175 -hash_table_display_rev_array(RevArray, RevSize, Identifier, ColSize, PaneSize):-hash_table_display_rev_array687,25175 -hash_table_get_elements(RevArray, RevSize, Current, [Tupple|Tupples]):-hash_table_get_elements695,25571 -hash_table_get_elements(RevArray, RevSize, Current, [Tupple|Tupples]):-hash_table_get_elements695,25571 -hash_table_get_elements(RevArray, RevSize, Current, [Tupple|Tupples]):-hash_table_get_elements695,25571 -hash_table_get_elements(_RevArray, RevSize, Current, []):-hash_table_get_elements700,25795 -hash_table_get_elements(_RevArray, RevSize, Current, []):-hash_table_get_elements700,25795 -hash_table_get_elements(_RevArray, RevSize, Current, []):-hash_table_get_elements700,25795 -hash_table_get_elements(RevArray, RevSize, RevSize, Tupples):-hash_table_get_elements702,25878 -hash_table_get_elements(RevArray, RevSize, RevSize, Tupples):-hash_table_get_elements702,25878 -hash_table_get_elements(RevArray, RevSize, RevSize, Tupples):-hash_table_get_elements702,25878 -hash_table_get_elements(_RevArray, RevSize, RevSize, []).hash_table_get_elements705,26050 -hash_table_get_elements(_RevArray, RevSize, RevSize, []).hash_table_get_elements705,26050 -hash_table_get_chains(Array, Size, Chains):-hash_table_get_chains707,26109 -hash_table_get_chains(Array, Size, Chains):-hash_table_get_chains707,26109 -hash_table_get_chains(Array, Size, Chains):-hash_table_get_chains707,26109 -hash_table_display_elements(_Index, [], _Digits, _ColSize, _PaneSize):- format('~n',[]), !.hash_table_display_elements720,26436 -hash_table_display_elements(_Index, [], _Digits, _ColSize, _PaneSize):- format('~n',[]), !.hash_table_display_elements720,26436 -hash_table_display_elements(_Index, [], _Digits, _ColSize, _PaneSize):- format('~n',[]), !.hash_table_display_elements720,26436 -hash_table_display_elements(Index, [Element|T], Digits, ColSize, PaneSize):-hash_table_display_elements721,26528 -hash_table_display_elements(Index, [Element|T], Digits, ColSize, PaneSize):-hash_table_display_elements721,26528 -hash_table_display_elements(Index, [Element|T], Digits, ColSize, PaneSize):-hash_table_display_elements721,26528 -problog_key_to_tuple(Key, Key):-problog_key_to_tuple735,26999 -problog_key_to_tuple(Key, Key):-problog_key_to_tuple735,26999 -problog_key_to_tuple(Key, Key):-problog_key_to_tuple735,26999 -problog_key_to_tuple(Key, (PID, SID)):-problog_key_to_tuple737,27051 -problog_key_to_tuple(Key, (PID, SID)):-problog_key_to_tuple737,27051 -problog_key_to_tuple(Key, (PID, SID)):-problog_key_to_tuple737,27051 -break_list_at([H|T], H, [], T):-!.break_list_at745,27295 -break_list_at([H|T], H, [], T):-!.break_list_at745,27295 -break_list_at([H|T], H, [], T):-!.break_list_at745,27295 -break_list_at([H|T], At, [H|Part1], Part2):-break_list_at746,27330 -break_list_at([H|T], At, [H|Part1], Part2):-break_list_at746,27330 -break_list_at([H|T], At, [H|Part1], Part2):-break_list_at746,27330 - -packages/ProbLog/problog/intervals.yap,8890 -intervals_merge(all,X,X).intervals_merge221,10259 -intervals_merge(all,X,X).intervals_merge221,10259 -intervals_merge(none,_,none).intervals_merge222,10285 -intervals_merge(none,_,none).intervals_merge222,10285 -intervals_merge(above(X),Other,Result) :-intervals_merge223,10315 -intervals_merge(above(X),Other,Result) :-intervals_merge223,10315 -intervals_merge(above(X),Other,Result) :-intervals_merge223,10315 -intervals_merge(below(X),Other,Result) :-intervals_merge226,10409 -intervals_merge(below(X),Other,Result) :-intervals_merge226,10409 -intervals_merge(below(X),Other,Result) :-intervals_merge226,10409 -intervals_merge(interval(X1,X2),Other,Result) :-intervals_merge229,10503 -intervals_merge(interval(X1,X2),Other,Result) :-intervals_merge229,10503 -intervals_merge(interval(X1,X2),Other,Result) :-intervals_merge229,10503 -intervals_merge_above(all,X,above(X)).intervals_merge_above234,10626 -intervals_merge_above(all,X,above(X)).intervals_merge_above234,10626 -intervals_merge_above(none,_,none).intervals_merge_above235,10665 -intervals_merge_above(none,_,none).intervals_merge_above235,10665 -intervals_merge_above(above(Y),X,above(Z)) :-intervals_merge_above236,10701 -intervals_merge_above(above(Y),X,above(Z)) :-intervals_merge_above236,10701 -intervals_merge_above(above(Y),X,above(Z)) :-intervals_merge_above236,10701 -intervals_merge_above(below(Y),X,Result) :-intervals_merge_above239,10775 -intervals_merge_above(below(Y),X,Result) :-intervals_merge_above239,10775 -intervals_merge_above(below(Y),X,Result) :-intervals_merge_above239,10775 -intervals_merge_above(interval(Y1,Y2),X,Result):-intervals_merge_above247,10887 -intervals_merge_above(interval(Y1,Y2),X,Result):-intervals_merge_above247,10887 -intervals_merge_above(interval(Y1,Y2),X,Result):-intervals_merge_above247,10887 -intervals_merge_below(all,X,below(X)).intervals_merge_below262,11072 -intervals_merge_below(all,X,below(X)).intervals_merge_below262,11072 -intervals_merge_below(none,_,none).intervals_merge_below263,11111 -intervals_merge_below(none,_,none).intervals_merge_below263,11111 -intervals_merge_below(above(Y),X,Result) :-intervals_merge_below264,11147 -intervals_merge_below(above(Y),X,Result) :-intervals_merge_below264,11147 -intervals_merge_below(above(Y),X,Result) :-intervals_merge_below264,11147 -intervals_merge_below(below(Y),X,below(Z)) :-intervals_merge_below272,11259 -intervals_merge_below(below(Y),X,below(Z)) :-intervals_merge_below272,11259 -intervals_merge_below(below(Y),X,below(Z)) :-intervals_merge_below272,11259 -intervals_merge_below(interval(Y1,Y2),X,Result) :-intervals_merge_below275,11333 -intervals_merge_below(interval(Y1,Y2),X,Result) :-intervals_merge_below275,11333 -intervals_merge_below(interval(Y1,Y2),X,Result) :-intervals_merge_below275,11333 -intervals_merge_interval(all,X1,X2,interval(X1,X2)).intervals_merge_interval292,11521 -intervals_merge_interval(all,X1,X2,interval(X1,X2)).intervals_merge_interval292,11521 -intervals_merge_interval(none,_,_,none).intervals_merge_interval293,11574 -intervals_merge_interval(none,_,_,none).intervals_merge_interval293,11574 -intervals_merge_interval(above(X),Y1,Y2,Result) :-intervals_merge_interval294,11615 -intervals_merge_interval(above(X),Y1,Y2,Result) :-intervals_merge_interval294,11615 -intervals_merge_interval(above(X),Y1,Y2,Result) :-intervals_merge_interval294,11615 -intervals_merge_interval(below(X),Y1,Y2,Result) :-intervals_merge_interval297,11728 -intervals_merge_interval(below(X),Y1,Y2,Result) :-intervals_merge_interval297,11728 -intervals_merge_interval(below(X),Y1,Y2,Result) :-intervals_merge_interval297,11728 -intervals_merge_interval(interval(X1,X2),Y1,Y2,Result) :-intervals_merge_interval300,11841 -intervals_merge_interval(interval(X1,X2),Y1,Y2,Result) :-intervals_merge_interval300,11841 -intervals_merge_interval(interval(X1,X2),Y1,Y2,Result) :-intervals_merge_interval300,11841 -intervals_merge_interval_intern(_X1,X2,Y1,Y2,Result) :-intervals_merge_interval_intern309,12062 -intervals_merge_interval_intern(_X1,X2,Y1,Y2,Result) :-intervals_merge_interval_intern309,12062 -intervals_merge_interval_intern(_X1,X2,Y1,Y2,Result) :-intervals_merge_interval_intern309,12062 -select_all([],List,List).select_all327,12359 -select_all([],List,List).select_all327,12359 -select_all([H|T],List,Remainder) :-select_all328,12385 -select_all([H|T],List,Remainder) :-select_all328,12385 -select_all([H|T],List,Remainder) :-select_all328,12385 -intervals_disjoin(X,P,In,Out) :-intervals_disjoin336,12605 -intervals_disjoin(X,P,In,Out) :-intervals_disjoin336,12605 -intervals_disjoin(X,P,In,Out) :-intervals_disjoin336,12605 -intervals_disjoin(X,P,In) :-intervals_disjoin339,12686 -intervals_disjoin(X,P,In) :-intervals_disjoin339,12686 -intervals_disjoin(X,P,In) :-intervals_disjoin339,12686 -disjoin_intern(below(X),P,In) :-disjoin_intern341,12740 -disjoin_intern(below(X),P,In) :-disjoin_intern341,12740 -disjoin_intern(below(X),P,In) :-disjoin_intern341,12740 -disjoin_intern(above(X),P,In) :-disjoin_intern349,12930 -disjoin_intern(above(X),P,In) :-disjoin_intern349,12930 -disjoin_intern(above(X),P,In) :-disjoin_intern349,12930 -disjoin_intern(interval(X,Y),P,In) :-disjoin_intern357,13120 -disjoin_intern(interval(X,Y),P,In) :-disjoin_intern357,13120 -disjoin_intern(interval(X,Y),P,In) :-disjoin_intern357,13120 -intervals_partition([],[]).intervals_partition376,13674 -intervals_partition([],[]).intervals_partition376,13674 -intervals_partition([X|T],[(below(A), [])|T2]) :-intervals_partition377,13702 -intervals_partition([X|T],[(below(A), [])|T2]) :-intervals_partition377,13702 -intervals_partition([X|T],[(below(A), [])|T2]) :-intervals_partition377,13702 -extract_points([],X,Y) :-extract_points391,14137 -extract_points([],X,Y) :-extract_points391,14137 -extract_points([],X,Y) :-extract_points391,14137 -extract_points([below(A)|T],X,Y) :-extract_points393,14175 -extract_points([below(A)|T],X,Y) :-extract_points393,14175 -extract_points([below(A)|T],X,Y) :-extract_points393,14175 -extract_points([above(A)|T],X,Y) :-extract_points396,14257 -extract_points([above(A)|T],X,Y) :-extract_points396,14257 -extract_points([above(A)|T],X,Y) :-extract_points396,14257 -extract_points([interval(A,B)|T],X,Y) :-extract_points399,14339 -extract_points([interval(A,B)|T],X,Y) :-extract_points399,14339 -extract_points([interval(A,B)|T],X,Y) :-extract_points399,14339 -to_interval([],A,Tail,[(above(A),Tail)]).to_interval409,14666 -to_interval([],A,Tail,[(above(A),Tail)]).to_interval409,14666 -to_interval([B|T],A,Tail,[(interval(A,B),Tail)|T2]) :-to_interval410,14708 -to_interval([B|T],A,Tail,[(interval(A,B),Tail)|T2]) :-to_interval410,14708 -to_interval([B|T],A,Tail,[(interval(A,B),Tail)|T2]) :-to_interval410,14708 -intervals_encode(below(X),Atom) :-intervals_encode426,15179 -intervals_encode(below(X),Atom) :-intervals_encode426,15179 -intervals_encode(below(X),Atom) :-intervals_encode426,15179 -intervals_encode(above(X),Atom) :-intervals_encode434,15304 -intervals_encode(above(X),Atom) :-intervals_encode434,15304 -intervals_encode(above(X),Atom) :-intervals_encode434,15304 -intervals_encode(interval(Low,High),Atom) :-intervals_encode442,15427 -intervals_encode(interval(Low,High),Atom) :-intervals_encode442,15427 -intervals_encode(interval(Low,High),Atom) :-intervals_encode442,15427 -my_number_atom(Number,Atom) :-my_number_atom447,15580 -my_number_atom(Number,Atom) :-my_number_atom447,15580 -my_number_atom(Number,Atom) :-my_number_atom447,15580 -remove_prefix_zeros([],[]).remove_prefix_zeros460,15857 -remove_prefix_zeros([],[]).remove_prefix_zeros460,15857 -remove_prefix_zeros([X|T],Result) :-remove_prefix_zeros461,15885 -remove_prefix_zeros([X|T],Result) :-remove_prefix_zeros461,15885 -remove_prefix_zeros([X|T],Result) :-remove_prefix_zeros461,15885 -remove_prefix_dot([],[]).remove_prefix_dot469,16002 -remove_prefix_dot([],[]).remove_prefix_dot469,16002 -remove_prefix_dot([X|T],Result) :-remove_prefix_dot470,16028 -remove_prefix_dot([X|T],Result) :-remove_prefix_dot470,16028 -remove_prefix_dot([X|T],Result) :-remove_prefix_dot470,16028 -fix_special_cases([],[48]).fix_special_cases478,16122 -fix_special_cases([],[48]).fix_special_cases478,16122 -fix_special_cases([H|T],Result) :-fix_special_cases479,16150 -fix_special_cases([H|T],Result) :-fix_special_cases479,16150 -fix_special_cases([H|T],Result) :-fix_special_cases479,16150 -replace_special_characters([],[]).replace_special_characters487,16258 -replace_special_characters([],[]).replace_special_characters487,16258 -replace_special_characters([H|T],[H2|T2]) :-replace_special_characters488,16293 -replace_special_characters([H|T],[H2|T2]) :-replace_special_characters488,16293 -replace_special_characters([H|T],[H2|T2]) :-replace_special_characters488,16293 - -packages/ProbLog/problog/logger.yap,4916 -logger_define_variable(Name,Type) :-logger_define_variable241,10752 -logger_define_variable(Name,Type) :-logger_define_variable241,10752 -logger_define_variable(Name,Type) :-logger_define_variable241,10752 -logger_define_variable(Name,Type) :-logger_define_variable246,10929 -logger_define_variable(Name,Type) :-logger_define_variable246,10929 -logger_define_variable(Name,Type) :-logger_define_variable246,10929 -logger_define_variable(Name,Type) :-logger_define_variable251,11043 -logger_define_variable(Name,Type) :-logger_define_variable251,11043 -logger_define_variable(Name,Type) :-logger_define_variable251,11043 -logger_define_variable_intern(int,Name) :-logger_define_variable_intern254,11154 -logger_define_variable_intern(int,Name) :-logger_define_variable_intern254,11154 -logger_define_variable_intern(int,Name) :-logger_define_variable_intern254,11154 -logger_define_variable_intern(float,Name) :-logger_define_variable_intern261,11389 -logger_define_variable_intern(float,Name) :-logger_define_variable_intern261,11389 -logger_define_variable_intern(float,Name) :-logger_define_variable_intern261,11389 -logger_define_variable_intern(time,Name) :-logger_define_variable_intern268,11628 -logger_define_variable_intern(time,Name) :-logger_define_variable_intern268,11628 -logger_define_variable_intern(time,Name) :-logger_define_variable_intern268,11628 -logger_define_variable_intern(Type,Name) :-logger_define_variable_intern277,11929 -logger_define_variable_intern(Type,Name) :-logger_define_variable_intern277,11929 -logger_define_variable_intern(Type,Name) :-logger_define_variable_intern277,11929 -logger_set_filename(Name) :-logger_set_filename287,12269 -logger_set_filename(Name) :-logger_set_filename287,12269 -logger_set_filename(Name) :-logger_set_filename287,12269 -logger_set_delimiter(Delimiter) :-logger_set_delimiter296,12533 -logger_set_delimiter(Delimiter) :-logger_set_delimiter296,12533 -logger_set_delimiter(Delimiter) :-logger_set_delimiter296,12533 -logger_set_variable(Name,Value) :-logger_set_variable306,12942 -logger_set_variable(Name,Value) :-logger_set_variable306,12942 -logger_set_variable(Name,Value) :-logger_set_variable306,12942 -logger_set_variable_again(Name,Value) :-logger_set_variable_again339,13747 -logger_set_variable_again(Name,Value) :-logger_set_variable_again339,13747 -logger_set_variable_again(Name,Value) :-logger_set_variable_again339,13747 -logger_variable_is_set(Name) :-logger_variable_is_set355,14021 -logger_variable_is_set(Name) :-logger_variable_is_set355,14021 -logger_variable_is_set(Name) :-logger_variable_is_set355,14021 -logger_add_to_variable(Name,Value) :-logger_add_to_variable360,14119 -logger_add_to_variable(Name,Value) :-logger_add_to_variable360,14119 -logger_add_to_variable(Name,Value) :-logger_add_to_variable360,14119 -logger_get_variable(Name,Value) :-logger_get_variable380,14694 -logger_get_variable(Name,Value) :-logger_get_variable380,14694 -logger_get_variable(Name,Value) :-logger_get_variable380,14694 -logger_start_timer(Name) :-logger_start_timer408,15251 -logger_start_timer(Name) :-logger_start_timer408,15251 -logger_start_timer(Name) :-logger_start_timer408,15251 -logger_stop_timer(Name) :-logger_stop_timer429,15660 -logger_stop_timer(Name) :-logger_stop_timer429,15660 -logger_stop_timer(Name) :-logger_stop_timer429,15660 -logger_write_data :-logger_write_data455,16369 -logger_write_data_intern([],_).logger_write_data_intern464,16582 -logger_write_data_intern([],_).logger_write_data_intern464,16582 -logger_write_data_intern([(Name,_Type)],Handle) :-logger_write_data_intern465,16614 -logger_write_data_intern([(Name,_Type)],Handle) :-logger_write_data_intern465,16614 -logger_write_data_intern([(Name,_Type)],Handle) :-logger_write_data_intern465,16614 -logger_write_data_intern([(Name,_Type),Next|T],Handle) :-logger_write_data_intern469,16751 -logger_write_data_intern([(Name,_Type),Next|T],Handle) :-logger_write_data_intern469,16751 -logger_write_data_intern([(Name,_Type),Next|T],Handle) :-logger_write_data_intern469,16751 -variablevalue_with_nullcheck(Name,Result) :-variablevalue_with_nullcheck476,16966 -variablevalue_with_nullcheck(Name,Result) :-variablevalue_with_nullcheck476,16966 -variablevalue_with_nullcheck(Name,Result) :-variablevalue_with_nullcheck476,16966 -logger_reset_all_variables :-logger_reset_all_variables491,17295 -logger_write_header :-logger_write_header506,17749 -logger_write_header_intern([],_,_).logger_write_header_intern517,18278 -logger_write_header_intern([],_,_).logger_write_header_intern517,18278 -logger_write_header_intern([(Name,Type)|T],Position,Handle) :-logger_write_header_intern518,18314 -logger_write_header_intern([(Name,Type)|T],Position,Handle) :-logger_write_header_intern518,18314 -logger_write_header_intern([(Name,Type)|T],Position,Handle) :-logger_write_header_intern518,18314 - -packages/ProbLog/problog/mc_DNF_sampling.yap,15233 -problog_independed(T, P, ProofCNT):-problog_independed236,11072 -problog_independed(T, P, ProofCNT):-problog_independed236,11072 -problog_independed(T, P, ProofCNT):-problog_independed236,11072 -problog_independed(_T, 0.0, 0).problog_independed239,11207 -problog_independed(_T, 0.0, 0).problog_independed239,11207 -problog_independed([], P, P, ProofCNT, ProofCNT).problog_independed242,11294 -problog_independed([], P, P, ProofCNT, ProofCNT).problog_independed242,11294 -problog_independed(ProofRef, P, A, ProofCNT, Index):-problog_independed243,11344 -problog_independed(ProofRef, P, A, ProofCNT, Index):-problog_independed243,11344 -problog_independed(ProofRef, P, A, ProofCNT, Index):-problog_independed243,11344 -calculate_prob_proof([true], 1.0):-!.calculate_prob_proof259,11859 -calculate_prob_proof([true], 1.0):-!.calculate_prob_proof259,11859 -calculate_prob_proof([true], 1.0):-!.calculate_prob_proof259,11859 -calculate_prob_proof(Proof, P):-calculate_prob_proof260,11897 -calculate_prob_proof(Proof, P):-calculate_prob_proof260,11897 -calculate_prob_proof(Proof, P):-calculate_prob_proof260,11897 -calculate_curr_prob([], Acc, Acc).calculate_curr_prob265,11985 -calculate_curr_prob([], Acc, Acc).calculate_curr_prob265,11985 -calculate_curr_prob([ID|Rest], AccCurrProb, CurrProb):-calculate_curr_prob266,12020 -calculate_curr_prob([ID|Rest], AccCurrProb, CurrProb):-calculate_curr_prob266,12020 -calculate_curr_prob([ID|Rest], AccCurrProb, CurrProb):-calculate_curr_prob266,12020 -get_log_prob_not_check(not(ID), IDProb):-get_log_prob_not_check272,12270 -get_log_prob_not_check(not(ID), IDProb):-get_log_prob_not_check272,12270 -get_log_prob_not_check(not(ID), IDProb):-get_log_prob_not_check272,12270 -get_log_prob_not_check(ID, IDProb):-get_log_prob_not_check275,12402 -get_log_prob_not_check(ID, IDProb):-get_log_prob_not_check275,12402 -get_log_prob_not_check(ID, IDProb):-get_log_prob_not_check275,12402 -problog_mc_DNF(Trie, Delta, P):-problog_mc_DNF279,12489 -problog_mc_DNF(Trie, Delta, P):-problog_mc_DNF279,12489 -problog_mc_DNF(Trie, Delta, P):-problog_mc_DNF279,12489 -problog_mc_DNF(_Trie, Pind, _ProofCNT, Delta, Samples, SamplesSoFar, SamplesSoFar, Naccepted, Naccepted, Epsilon):-problog_mc_DNF291,12853 -problog_mc_DNF(_Trie, Pind, _ProofCNT, Delta, Samples, SamplesSoFar, SamplesSoFar, Naccepted, Naccepted, Epsilon):-problog_mc_DNF291,12853 -problog_mc_DNF(_Trie, Pind, _ProofCNT, Delta, Samples, SamplesSoFar, SamplesSoFar, Naccepted, Naccepted, Epsilon):-problog_mc_DNF291,12853 -problog_mc_DNF(_Trie, _Pind, _ProofCNT, _Delta, Samples, SamplesSoFar, _SamplesSoFar, _Naccepted, _Naccepted, _Epsilon):-problog_mc_DNF306,13478 -problog_mc_DNF(_Trie, _Pind, _ProofCNT, _Delta, Samples, SamplesSoFar, _SamplesSoFar, _Naccepted, _Naccepted, _Epsilon):-problog_mc_DNF306,13478 -problog_mc_DNF(_Trie, _Pind, _ProofCNT, _Delta, Samples, SamplesSoFar, _SamplesSoFar, _Naccepted, _Naccepted, _Epsilon):-problog_mc_DNF306,13478 -problog_mc_DNF(Trie, Pind, ProofCNT, Delta, Samples, SAcc, SamplesSoFar, Naccepted, NAcc, Epsilon):-problog_mc_DNF310,13645 -problog_mc_DNF(Trie, Pind, ProofCNT, Delta, Samples, SAcc, SamplesSoFar, Naccepted, NAcc, Epsilon):-problog_mc_DNF310,13645 -problog_mc_DNF(Trie, Pind, ProofCNT, Delta, Samples, SAcc, SamplesSoFar, Naccepted, NAcc, Epsilon):-problog_mc_DNF310,13645 -get_sample_proof_linear(Ref, Thr, L_true_pf, L_false_pf):-get_sample_proof_linear348,14731 -get_sample_proof_linear(Ref, Thr, L_true_pf, L_false_pf):-get_sample_proof_linear348,14731 -get_sample_proof_linear(Ref, Thr, L_true_pf, L_false_pf):-get_sample_proof_linear348,14731 -get_sample_proof_binary(Ref, Thr, ProofCNT, L_true_pf, L_false_pf):-get_sample_proof_binary370,15462 -get_sample_proof_binary(Ref, Thr, ProofCNT, L_true_pf, L_false_pf):-get_sample_proof_binary370,15462 -get_sample_proof_binary(Ref, Thr, ProofCNT, L_true_pf, L_false_pf):-get_sample_proof_binary370,15462 -binary_search(Thr, From, To, Ref):-binary_search393,16191 -binary_search(Thr, From, To, Ref):-binary_search393,16191 -binary_search(Thr, From, To, Ref):-binary_search393,16191 -binary_search(_Thr, Index, Index, Ref):-binary_search402,16417 -binary_search(_Thr, Index, Index, Ref):-binary_search402,16417 -binary_search(_Thr, Index, Index, Ref):-binary_search402,16417 -binary_search(Thr, From, To, Res):-binary_search405,16526 -binary_search(Thr, From, To, Res):-binary_search405,16526 -binary_search(Thr, From, To, Res):-binary_search405,16526 -check_sample_proofs([], _, _).check_sample_proofs419,16886 -check_sample_proofs([], _, _).check_sample_proofs419,16886 -check_sample_proofs(CurRef, L_true_pf, L_false_pf):-check_sample_proofs421,16918 -check_sample_proofs(CurRef, L_true_pf, L_false_pf):-check_sample_proofs421,16918 -check_sample_proofs(CurRef, L_true_pf, L_false_pf):-check_sample_proofs421,16918 -add_proof_to_array_world([]).add_proof_to_array_world449,17758 -add_proof_to_array_world([]).add_proof_to_array_world449,17758 -add_proof_to_array_world([not(H)|T]):-add_proof_to_array_world450,17788 -add_proof_to_array_world([not(H)|T]):-add_proof_to_array_world450,17788 -add_proof_to_array_world([not(H)|T]):-add_proof_to_array_world450,17788 -add_proof_to_array_world([H|T]):-add_proof_to_array_world452,17904 -add_proof_to_array_world([H|T]):-add_proof_to_array_world452,17904 -add_proof_to_array_world([H|T]):-add_proof_to_array_world452,17904 -check_proof_in_array_world([not(F)|_Rest]):-check_proof_in_array_world456,18013 -check_proof_in_array_world([not(F)|_Rest]):-check_proof_in_array_world456,18013 -check_proof_in_array_world([not(F)|_Rest]):-check_proof_in_array_world456,18013 -check_proof_in_array_world([not(F)|Rest]):-check_proof_in_array_world459,18107 -check_proof_in_array_world([not(F)|Rest]):-check_proof_in_array_world459,18107 -check_proof_in_array_world([not(F)|Rest]):-check_proof_in_array_world459,18107 -check_proof_in_array_world([not(F)|Rest]):-check_proof_in_array_world463,18237 -check_proof_in_array_world([not(F)|Rest]):-check_proof_in_array_world463,18237 -check_proof_in_array_world([not(F)|Rest]):-check_proof_in_array_world463,18237 -check_proof_in_array_world([F|_Rest]):-check_proof_in_array_world473,18527 -check_proof_in_array_world([F|_Rest]):-check_proof_in_array_world473,18527 -check_proof_in_array_world([F|_Rest]):-check_proof_in_array_world473,18527 -check_proof_in_array_world([F|Rest]):-check_proof_in_array_world476,18617 -check_proof_in_array_world([F|Rest]):-check_proof_in_array_world476,18617 -check_proof_in_array_world([F|Rest]):-check_proof_in_array_world476,18617 -check_proof_in_array_world([F|Rest]):-check_proof_in_array_world480,18741 -check_proof_in_array_world([F|Rest]):-check_proof_in_array_world480,18741 -check_proof_in_array_world([F|Rest]):-check_proof_in_array_world480,18741 -add_proof_to_rec_world([]).add_proof_to_rec_world493,19028 -add_proof_to_rec_world([]).add_proof_to_rec_world493,19028 -add_proof_to_rec_world([not(H)|T]):-add_proof_to_rec_world494,19056 -add_proof_to_rec_world([not(H)|T]):-add_proof_to_rec_world494,19056 -add_proof_to_rec_world([not(H)|T]):-add_proof_to_rec_world494,19056 -add_proof_to_rec_world([H|T]):-add_proof_to_rec_world496,19174 -add_proof_to_rec_world([H|T]):-add_proof_to_rec_world496,19174 -add_proof_to_rec_world([H|T]):-add_proof_to_rec_world496,19174 -check_proof_in_rec_world([not(F)|_Rest]):-check_proof_in_rec_world499,19284 -check_proof_in_rec_world([not(F)|_Rest]):-check_proof_in_rec_world499,19284 -check_proof_in_rec_world([not(F)|_Rest]):-check_proof_in_rec_world499,19284 -check_proof_in_rec_world([not(F)|Rest]):-check_proof_in_rec_world502,19382 -check_proof_in_rec_world([not(F)|Rest]):-check_proof_in_rec_world502,19382 -check_proof_in_rec_world([not(F)|Rest]):-check_proof_in_rec_world502,19382 -check_proof_in_rec_world([not(F)|Rest]):-check_proof_in_rec_world506,19514 -check_proof_in_rec_world([not(F)|Rest]):-check_proof_in_rec_world506,19514 -check_proof_in_rec_world([not(F)|Rest]):-check_proof_in_rec_world506,19514 -check_proof_in_rec_world([F|_Rest]):-check_proof_in_rec_world516,19812 -check_proof_in_rec_world([F|_Rest]):-check_proof_in_rec_world516,19812 -check_proof_in_rec_world([F|_Rest]):-check_proof_in_rec_world516,19812 -check_proof_in_rec_world([F|Rest]):-check_proof_in_rec_world519,19906 -check_proof_in_rec_world([F|Rest]):-check_proof_in_rec_world519,19906 -check_proof_in_rec_world([F|Rest]):-check_proof_in_rec_world519,19906 -check_proof_in_rec_world([F|Rest]):-check_proof_in_rec_world523,20032 -check_proof_in_rec_world([F|Rest]):-check_proof_in_rec_world523,20032 -check_proof_in_rec_world([F|Rest]):-check_proof_in_rec_world523,20032 -make_hash_tables(TrueHashTable, FalseHashTable):-make_hash_tables535,20326 -make_hash_tables(TrueHashTable, FalseHashTable):-make_hash_tables535,20326 -make_hash_tables(TrueHashTable, FalseHashTable):-make_hash_tables535,20326 -add_proof_to_hash_world([], _TrueHashTable, _FalseHashTable).add_proof_to_hash_world541,20519 -add_proof_to_hash_world([], _TrueHashTable, _FalseHashTable).add_proof_to_hash_world541,20519 -add_proof_to_hash_world([not(H)|T], TrueHashTable, FalseHashTable):-add_proof_to_hash_world542,20581 -add_proof_to_hash_world([not(H)|T], TrueHashTable, FalseHashTable):-add_proof_to_hash_world542,20581 -add_proof_to_hash_world([not(H)|T], TrueHashTable, FalseHashTable):-add_proof_to_hash_world542,20581 -add_proof_to_hash_world([H|T], TrueHashTable, FalseHashTable):-add_proof_to_hash_world546,20795 -add_proof_to_hash_world([H|T], TrueHashTable, FalseHashTable):-add_proof_to_hash_world546,20795 -add_proof_to_hash_world([H|T], TrueHashTable, FalseHashTable):-add_proof_to_hash_world546,20795 -check_proof_in_hash_world([not(F)|_Rest], TrueHashTable, _FalseHashTable):-check_proof_in_hash_world552,21002 -check_proof_in_hash_world([not(F)|_Rest], TrueHashTable, _FalseHashTable):-check_proof_in_hash_world552,21002 -check_proof_in_hash_world([not(F)|_Rest], TrueHashTable, _FalseHashTable):-check_proof_in_hash_world552,21002 -check_proof_in_hash_world([not(F)|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world556,21164 -check_proof_in_hash_world([not(F)|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world556,21164 -check_proof_in_hash_world([not(F)|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world556,21164 -check_proof_in_hash_world([not(F)|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world561,21391 -check_proof_in_hash_world([not(F)|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world561,21391 -check_proof_in_hash_world([not(F)|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world561,21391 -check_proof_in_hash_world([F|_Rest], _TrueHashTable, FalseHashTable):-check_proof_in_hash_world572,21779 -check_proof_in_hash_world([F|_Rest], _TrueHashTable, FalseHashTable):-check_proof_in_hash_world572,21779 -check_proof_in_hash_world([F|_Rest], _TrueHashTable, FalseHashTable):-check_proof_in_hash_world572,21779 -check_proof_in_hash_world([F|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world576,21937 -check_proof_in_hash_world([F|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world576,21937 -check_proof_in_hash_world([F|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world576,21937 -check_proof_in_hash_world([F|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world581,22158 -check_proof_in_hash_world([F|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world581,22158 -check_proof_in_hash_world([F|Rest], TrueHashTable, FalseHashTable):-check_proof_in_hash_world581,22158 -add_proof_to_list_world([], [], []).add_proof_to_list_world594,22542 -add_proof_to_list_world([], [], []).add_proof_to_list_world594,22542 -add_proof_to_list_world([not(H)|T], TrueList, [H|FalseList]):-add_proof_to_list_world595,22579 -add_proof_to_list_world([not(H)|T], TrueList, [H|FalseList]):-add_proof_to_list_world595,22579 -add_proof_to_list_world([not(H)|T], TrueList, [H|FalseList]):-add_proof_to_list_world595,22579 -add_proof_to_list_world([H|T], [H|TrueList], FalseList):-add_proof_to_list_world597,22693 -add_proof_to_list_world([H|T], [H|TrueList], FalseList):-add_proof_to_list_world597,22693 -add_proof_to_list_world([H|T], [H|TrueList], FalseList):-add_proof_to_list_world597,22693 -check_proof_in_list_world([not(F)|_Rest], TrueList, TrueList, FalseList, FalseList):-check_proof_in_list_world600,22803 -check_proof_in_list_world([not(F)|_Rest], TrueList, TrueList, FalseList, FalseList):-check_proof_in_list_world600,22803 -check_proof_in_list_world([not(F)|_Rest], TrueList, TrueList, FalseList, FalseList):-check_proof_in_list_world600,22803 -check_proof_in_list_world([not(F)|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world603,22919 -check_proof_in_list_world([not(F)|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world603,22919 -check_proof_in_list_world([not(F)|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world603,22919 -check_proof_in_list_world([not(F)|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world607,23124 -check_proof_in_list_world([not(F)|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world607,23124 -check_proof_in_list_world([not(F)|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world607,23124 -check_proof_in_list_world([F|_Rest], TrueList, TrueList, FalseList, FalseList):-check_proof_in_list_world617,23481 -check_proof_in_list_world([F|_Rest], TrueList, TrueList, FalseList, FalseList):-check_proof_in_list_world617,23481 -check_proof_in_list_world([F|_Rest], TrueList, TrueList, FalseList, FalseList):-check_proof_in_list_world617,23481 -check_proof_in_list_world([F|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world620,23593 -check_proof_in_list_world([F|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world620,23593 -check_proof_in_list_world([F|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world620,23593 -check_proof_in_list_world([F|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world624,23792 -check_proof_in_list_world([F|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world624,23792 -check_proof_in_list_world([F|Rest], TrueList, NewTrueList, FalseList, NewFalseList):-check_proof_in_list_world624,23792 -problog_collect_trie(Goal, Threshold) :-problog_collect_trie636,24145 -problog_collect_trie(Goal, Threshold) :-problog_collect_trie636,24145 -problog_collect_trie(Goal, Threshold) :-problog_collect_trie636,24145 -problog_collect_trie(_, _) :-problog_collect_trie644,24398 -problog_collect_trie(_, _) :-problog_collect_trie644,24398 -problog_collect_trie(_, _) :-problog_collect_trie644,24398 -problog_dnf_sampling(Goal, Delta, P):-problog_dnf_sampling648,24504 -problog_dnf_sampling(Goal, Delta, P):-problog_dnf_sampling648,24504 -problog_dnf_sampling(Goal, Delta, P):-problog_dnf_sampling648,24504 - -packages/ProbLog/problog/nestedtries.yap,10135 -trie_replace_entry(_Trie, Entry, E, false):-trie_replace_entry248,11635 -trie_replace_entry(_Trie, Entry, E, false):-trie_replace_entry248,11635 -trie_replace_entry(_Trie, Entry, E, false):-trie_replace_entry248,11635 -trie_replace_entry(Trie, Entry, E, true):-trie_replace_entry252,11766 -trie_replace_entry(Trie, Entry, E, true):-trie_replace_entry252,11766 -trie_replace_entry(Trie, Entry, E, true):-trie_replace_entry252,11766 -trie_replace_entry(Trie, _Entry, t(ID), R):-trie_replace_entry263,12054 -trie_replace_entry(Trie, _Entry, t(ID), R):-trie_replace_entry263,12054 -trie_replace_entry(Trie, _Entry, t(ID), R):-trie_replace_entry263,12054 -trie_delete(Trie):-trie_delete266,12141 -trie_delete(Trie):-trie_delete266,12141 -trie_delete(Trie):-trie_delete266,12141 -trie_delete(_Trie).trie_delete270,12219 -trie_delete(_Trie).trie_delete270,12219 -is_state(Variable):-is_state272,12240 -is_state(Variable):-is_state272,12240 -is_state(Variable):-is_state272,12240 -is_state(Variable):-is_state274,12284 -is_state(Variable):-is_state274,12284 -is_state(Variable):-is_state274,12284 -is_state(Variable):-is_state276,12326 -is_state(Variable):-is_state276,12326 -is_state(Variable):-is_state276,12326 -is_trie(Trie, ID):-is_trie281,12430 -is_trie(Trie, ID):-is_trie281,12430 -is_trie(Trie, ID):-is_trie281,12430 -is_trie(Trie, ID):-is_trie284,12485 -is_trie(Trie, ID):-is_trie284,12485 -is_trie(Trie, ID):-is_trie284,12485 -is_label(Label, ID):-is_label289,12575 -is_label(Label, ID):-is_label289,12575 -is_label(Label, ID):-is_label289,12575 -is_label(Label, ID):-is_label292,12648 -is_label(Label, ID):-is_label292,12648 -is_label(Label, ID):-is_label292,12648 -simplify(not(false), true):- !.simplify297,12745 -simplify(not(false), true):- !.simplify297,12745 -simplify(not(false), true):- !.simplify297,12745 -simplify(not(true), false):- !.simplify298,12777 -simplify(not(true), false):- !.simplify298,12777 -simplify(not(true), false):- !.simplify298,12777 -simplify(not(not(A)), B):-simplify299,12809 -simplify(not(not(A)), B):-simplify299,12809 -simplify(not(not(A)), B):-simplify299,12809 -simplify(A, A).simplify301,12857 -simplify(A, A).simplify301,12857 -initialise_ancestors(0):-initialise_ancestors305,12900 -initialise_ancestors(0):-initialise_ancestors305,12900 -initialise_ancestors(0):-initialise_ancestors305,12900 -initialise_ancestors([]):-initialise_ancestors307,12969 -initialise_ancestors([]):-initialise_ancestors307,12969 -initialise_ancestors([]):-initialise_ancestors307,12969 -add_to_ancestors(ID, Ancestors, NewAncestors):-add_to_ancestors310,13037 -add_to_ancestors(ID, Ancestors, NewAncestors):-add_to_ancestors310,13037 -add_to_ancestors(ID, Ancestors, NewAncestors):-add_to_ancestors310,13037 -add_to_ancestors(ID, Ancestors, NewAncestors):-add_to_ancestors313,13158 -add_to_ancestors(ID, Ancestors, NewAncestors):-add_to_ancestors313,13158 -add_to_ancestors(ID, Ancestors, NewAncestors):-add_to_ancestors313,13158 -ancestors_union(Ancestors1, Ancestors2, NewAncestors):-ancestors_union317,13278 -ancestors_union(Ancestors1, Ancestors2, NewAncestors):-ancestors_union317,13278 -ancestors_union(Ancestors1, Ancestors2, NewAncestors):-ancestors_union317,13278 -ancestors_union(Ancestors1, Ancestors2, NewAncestors):-ancestors_union320,13404 -ancestors_union(Ancestors1, Ancestors2, NewAncestors):-ancestors_union320,13404 -ancestors_union(Ancestors1, Ancestors2, NewAncestors):-ancestors_union320,13404 -ancestor_subset_check(SubAncestors, Ancestors):-ancestor_subset_check324,13535 -ancestor_subset_check(SubAncestors, Ancestors):-ancestor_subset_check324,13535 -ancestor_subset_check(SubAncestors, Ancestors):-ancestor_subset_check324,13535 -ancestor_subset_check(SubAncestors, Ancestors):-ancestor_subset_check327,13657 -ancestor_subset_check(SubAncestors, Ancestors):-ancestor_subset_check327,13657 -ancestor_subset_check(SubAncestors, Ancestors):-ancestor_subset_check327,13657 -ancestor_loop_refine(Loop, Ancestors, 0):-ancestor_loop_refine331,13771 -ancestor_loop_refine(Loop, Ancestors, 0):-ancestor_loop_refine331,13771 -ancestor_loop_refine(Loop, Ancestors, 0):-ancestor_loop_refine331,13771 -ancestor_loop_refine(Loop, Ancestors, []):-ancestor_loop_refine333,13850 -ancestor_loop_refine(Loop, Ancestors, []):-ancestor_loop_refine333,13850 -ancestor_loop_refine(Loop, Ancestors, []):-ancestor_loop_refine333,13850 -ancestor_loop_refine(true, Ancestors, Ancestors).ancestor_loop_refine335,13930 -ancestor_loop_refine(true, Ancestors, Ancestors).ancestor_loop_refine335,13930 -ancestor_child_refine(true, Ancestors, Childs, NewAncestors):-ancestor_child_refine337,13981 -ancestor_child_refine(true, Ancestors, Childs, NewAncestors):-ancestor_child_refine337,13981 -ancestor_child_refine(true, Ancestors, Childs, NewAncestors):-ancestor_child_refine337,13981 -ancestor_child_refine(true, Ancestors, Childs, NewAncestors):-ancestor_child_refine340,14108 -ancestor_child_refine(true, Ancestors, Childs, NewAncestors):-ancestor_child_refine340,14108 -ancestor_child_refine(true, Ancestors, Childs, NewAncestors):-ancestor_child_refine340,14108 -ancestor_child_refine(false, Ancestors, _, Ancestors).ancestor_child_refine343,14249 -ancestor_child_refine(false, Ancestors, _, Ancestors).ancestor_child_refine343,14249 -cycle_check(ID, Ancestors):-cycle_check348,14358 -cycle_check(ID, Ancestors):-cycle_check348,14358 -cycle_check(ID, Ancestors):-cycle_check348,14358 -cycle_check_intern(ID, Ancestors):-cycle_check_intern352,14465 -cycle_check_intern(ID, Ancestors):-cycle_check_intern352,14465 -cycle_check_intern(ID, Ancestors):-cycle_check_intern352,14465 -cycle_check_intern(ID, Ancestors):-cycle_check_intern356,14577 -cycle_check_intern(ID, Ancestors):-cycle_check_intern356,14577 -cycle_check_intern(ID, Ancestors):-cycle_check_intern356,14577 -get_negated_synonym_id(ID, ID).get_negated_synonym_id360,14664 -get_negated_synonym_id(ID, ID).get_negated_synonym_id360,14664 -get_negated_synonym_id(ID, NegID):-get_negated_synonym_id361,14696 -get_negated_synonym_id(ID, NegID):-get_negated_synonym_id361,14696 -get_negated_synonym_id(ID, NegID):-get_negated_synonym_id361,14696 -get_negated_name(Name, NotName1):-get_negated_name372,15111 -get_negated_name(Name, NotName1):-get_negated_name372,15111 -get_negated_name(Name, NotName1):-get_negated_name372,15111 -get_negated_name(Name, NotName1):-get_negated_name374,15213 -get_negated_name(Name, NotName1):-get_negated_name374,15213 -get_negated_name(Name, NotName1):-get_negated_name374,15213 -trie_dup_reverse(Trie, DupTrie):-trie_dup_reverse377,15313 -trie_dup_reverse(Trie, DupTrie):-trie_dup_reverse377,15313 -trie_dup_reverse(Trie, DupTrie):-trie_dup_reverse377,15313 -trie_dup_rev(Trie, DupTrie):-trie_dup_rev383,15464 -trie_dup_rev(Trie, DupTrie):-trie_dup_rev383,15464 -trie_dup_rev(Trie, DupTrie):-trie_dup_rev383,15464 -trie_dup_rev(_, _).trie_dup_rev389,15631 -trie_dup_rev(_, _).trie_dup_rev389,15631 -preprocess(Index, DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount):-preprocess392,15653 -preprocess(Index, DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount):-preprocess392,15653 -preprocess(Index, DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount):-preprocess392,15653 -preprocess(_, _, _, FinalEndCount, FinalEndCount).preprocess400,16093 -preprocess(_, _, _, FinalEndCount, FinalEndCount).preprocess400,16093 -make_nested_trie_base_cases(Trie, t(ID), DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount, Ancestors):-make_nested_trie_base_cases402,16145 -make_nested_trie_base_cases(Trie, t(ID), DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount, Ancestors):-make_nested_trie_base_cases402,16145 -make_nested_trie_base_cases(Trie, t(ID), DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount, Ancestors):-make_nested_trie_base_cases402,16145 -nested_trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel):-nested_trie_to_depth_breadth_trie414,16753 -nested_trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel):-nested_trie_to_depth_breadth_trie414,16753 -nested_trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel):-nested_trie_to_depth_breadth_trie414,16753 -trie_2_dbtrie_init(ID, DepthBreadthTrie, OptimizationLevel, StartCount, EndCount, Ancestors, Label, ContainLoop, FinalChilds):-trie_2_dbtrie_init430,17400 -trie_2_dbtrie_init(ID, DepthBreadthTrie, OptimizationLevel, StartCount, EndCount, Ancestors, Label, ContainLoop, FinalChilds):-trie_2_dbtrie_init430,17400 -trie_2_dbtrie_init(ID, DepthBreadthTrie, OptimizationLevel, StartCount, EndCount, Ancestors, Label, ContainLoop, FinalChilds):-trie_2_dbtrie_init430,17400 -trie_2_dbtrie_intern(Trie, DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount, Ancestors, TrieLabel, ContainLoop, Childs, FinalChilds):-trie_2_dbtrie_intern437,17796 -trie_2_dbtrie_intern(Trie, DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount, Ancestors, TrieLabel, ContainLoop, Childs, FinalChilds):-trie_2_dbtrie_intern437,17796 -trie_2_dbtrie_intern(Trie, DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount, Ancestors, TrieLabel, ContainLoop, Childs, FinalChilds):-trie_2_dbtrie_intern437,17796 -get_trie_pointer(ID, Trie):-get_trie_pointer475,19471 -get_trie_pointer(ID, Trie):-get_trie_pointer475,19471 -get_trie_pointer(ID, Trie):-get_trie_pointer475,19471 -get_trie_pointer(Trie, Trie).get_trie_pointer477,19542 -get_trie_pointer(Trie, Trie).get_trie_pointer477,19542 -get_trie(Trie, Label, Ancestors):-get_trie479,19573 -get_trie(Trie, Label, Ancestors):-get_trie479,19573 -get_trie(Trie, Label, Ancestors):-get_trie479,19573 -get_trie(Trie, Label, Ancestors):-get_trie483,19772 -get_trie(Trie, Label, Ancestors):-get_trie483,19772 -get_trie(Trie, Label, Ancestors):-get_trie483,19772 -set_trie(Trie, Label, Ancestors):-set_trie487,19912 -set_trie(Trie, Label, Ancestors):-set_trie487,19912 -set_trie(Trie, Label, Ancestors):-set_trie487,19912 - -packages/ProbLog/problog/os.yap,3162 -set_problog_path( _Path):-set_problog_path239,10516 -set_problog_path( _Path):-set_problog_path239,10516 -set_problog_path( _Path):-set_problog_path239,10516 -set_problog_path(Path):-set_problog_path252,10855 -set_problog_path(Path):-set_problog_path252,10855 -set_problog_path(Path):-set_problog_path252,10855 -set_problog_path(Path):-set_problog_path257,11005 -set_problog_path(Path):-set_problog_path257,11005 -set_problog_path(Path):-set_problog_path257,11005 -set_problog_paths( [Path|Paths] ) :-set_problog_paths261,11069 -set_problog_paths( [Path|Paths] ) :-set_problog_paths261,11069 -set_problog_paths( [Path|Paths] ) :-set_problog_paths261,11069 -set_problog_paths( [] ).set_problog_paths264,11172 -set_problog_paths( [] ).set_problog_paths264,11172 -convert_filename_to_working_path(File_Name, Path):-convert_filename_to_working_path272,11356 -convert_filename_to_working_path(File_Name, Path):-convert_filename_to_working_path272,11356 -convert_filename_to_working_path(File_Name, Path):-convert_filename_to_working_path272,11356 -convert_filename_to_problog_path(File_Name, Path):-convert_filename_to_problog_path276,11480 -convert_filename_to_problog_path(File_Name, Path):-convert_filename_to_problog_path276,11480 -convert_filename_to_problog_path(File_Name, Path):-convert_filename_to_problog_path276,11480 -concat_path_with_filename(Path, File_Name, Result):-concat_path_with_filename288,11805 -concat_path_with_filename(Path, File_Name, Result):-concat_path_with_filename288,11805 -concat_path_with_filename(Path, File_Name, Result):-concat_path_with_filename288,11805 -calc_md5(Filename,MD5):-calc_md5298,12244 -calc_md5(Filename,MD5):-calc_md5298,12244 -calc_md5(Filename,MD5):-calc_md5298,12244 -calc_md5(Filename,MD5):-calc_md5301,12319 -calc_md5(Filename,MD5):-calc_md5301,12319 -calc_md5(Filename,MD5):-calc_md5301,12319 -calc_md5_intern(Filename,MD5) :-calc_md5_intern304,12387 -calc_md5_intern(Filename,MD5) :-calc_md5_intern304,12387 -calc_md5_intern(Filename,MD5) :-calc_md5_intern304,12387 -file_to_codes( F, Codes, LF ) :-file_to_codes310,12570 -file_to_codes( F, Codes, LF ) :-file_to_codes310,12570 -file_to_codes( F, Codes, LF ) :-file_to_codes310,12570 -get_codes(S, [C|L], LF) :-get_codes315,12661 -get_codes(S, [C|L], LF) :-get_codes315,12661 -get_codes(S, [C|L], LF) :-get_codes315,12661 -get_codes(_, LF, LF).get_codes320,12741 -get_codes(_, LF, LF).get_codes320,12741 -check_existance(FileName):-check_existance329,12923 -check_existance(FileName):-check_existance329,12923 -check_existance(FileName):-check_existance329,12923 -check_existance(FileName):-check_existance332,13041 -check_existance(FileName):-check_existance332,13041 -check_existance(FileName):-check_existance332,13041 -path_grouping(PathSep) :-path_grouping337,13270 -path_grouping(PathSep) :-path_grouping337,13270 -path_grouping(PathSep) :-path_grouping337,13270 -path_separator('\\') :-path_separator340,13373 -path_separator('\\') :-path_separator340,13373 -path_separator('\\') :-path_separator340,13373 -path_separator('/').path_separator342,13443 -path_separator('/').path_separator342,13443 - -packages/ProbLog/problog/print.yap,3594 -problog_pane_properties(125, 45, 61).problog_pane_properties240,10949 -problog_pane_properties(125, 45, 61).problog_pane_properties240,10949 -problog_pane_split_inference([65,60], [w,w]).problog_pane_split_inference241,10987 -problog_pane_split_inference([65,60], [w,w]).problog_pane_split_inference241,10987 -problog_pane_split_stat([40,3,1,1], ['t~w',w,q,w]).problog_pane_split_stat242,11033 -problog_pane_split_stat([40,3,1,1], ['t~w',w,q,w]).problog_pane_split_stat242,11033 -problog_pane_split_param([55,30,20,20], [w,w,w,q]).problog_pane_split_param243,11085 -problog_pane_split_param([55,30,20,20], [w,w,w,q]).problog_pane_split_param243,11085 -print_inference(Call,Description) :-print_inference245,11138 -print_inference(Call,Description) :-print_inference245,11138 -print_inference(Call,Description) :-print_inference245,11138 -print_param(Keyword,Value,Function,Legal) :-print_param250,11330 -print_param(Keyword,Value,Function,Legal) :-print_param250,11330 -print_param(Keyword,Value,Function,Legal) :-print_param250,11330 -print_long_param(Keyword,Value,Function,Legal) :-print_long_param254,11560 -print_long_param(Keyword,Value,Function,Legal) :-print_long_param254,11560 -print_long_param(Keyword,Value,Function,Legal) :-print_long_param254,11560 -print_stat(StatName, Seperator, StatValue, StatUnit) :-print_stat258,11744 -print_stat(StatName, Seperator, StatValue, StatUnit) :-print_stat258,11744 -print_stat(StatName, Seperator, StatValue, StatUnit) :-print_stat258,11744 -print_sep_line :-print_sep_line262,11920 -print_sep_line_bold :-print_sep_line_bold265,12038 -print_group_line(Group) :-print_group_line269,12166 -print_group_line(Group) :-print_group_line269,12166 -print_group_line(Group) :-print_group_line269,12166 -print_group_line_bold(Group) :-print_group_line_bold274,12369 -print_group_line_bold(Group) :-print_group_line_bold274,12369 -print_group_line_bold(Group) :-print_group_line_bold274,12369 -print_column(Columns, Style, Messages):-print_column280,12586 -print_column(Columns, Style, Messages):-print_column280,12586 -print_column(Columns, Style, Messages):-print_column280,12586 -make_column_format(Columns, Style, Format):-make_column_format284,12708 -make_column_format(Columns, Style, Format):-make_column_format284,12708 -make_column_format(Columns, Style, Format):-make_column_format284,12708 -make_column_format([], [], Format, Format).make_column_format287,12848 -make_column_format([], [], Format, Format).make_column_format287,12848 -make_column_format([HC|TC], [HS|TS], Format, Acc):-make_column_format288,12892 -make_column_format([HC|TC], [HS|TS], Format, Acc):-make_column_format288,12892 -make_column_format([HC|TC], [HS|TS], Format, Acc):-make_column_format288,12892 -problog_help :-problog_help302,13156 -problog_version :-problog_version317,13740 -print_version([], _Path).print_version329,14159 -print_version([], _Path).print_version329,14159 -print_version([H|T], Path):-print_version330,14185 -print_version([H|T], Path):-print_version330,14185 -print_version([H|T], Path):-print_version330,14185 -print_version([_H|T], Path):-print_version342,14582 -print_version([_H|T], Path):-print_version342,14582 -print_version([_H|T], Path):-print_version342,14582 -show_inference :-show_inference346,14640 -problog_flags(Group):-problog_flags364,15787 -problog_flags(Group):-problog_flags364,15787 -problog_flags(Group):-problog_flags364,15787 -problog_flags:-problog_flags384,16311 -problog_statistics:-problog_statistics402,16746 -problog_statistics:-problog_statistics418,17271 - -packages/ProbLog/problog/print_learning.yap,1980 -format_learning(Level,String,Arguments) :-format_learning226,10172 -format_learning(Level,String,Arguments) :-format_learning226,10172 -format_learning(Level,String,Arguments) :-format_learning226,10172 -format_learning(_,_,_) :-format_learning232,10329 -format_learning(_,_,_) :-format_learning232,10329 -format_learning(_,_,_) :-format_learning232,10329 -format_learning_rule(D,'$atom'(A)):-format_learning_rule242,10524 -format_learning_rule(D,'$atom'(A)):-format_learning_rule242,10524 -format_learning_rule(D,'$atom'(A)):-format_learning_rule242,10524 -format_learning_rule(D,\+A):-format_learning_rule244,10591 -format_learning_rule(D,\+A):-format_learning_rule244,10591 -format_learning_rule(D,\+A):-format_learning_rule244,10591 -format_learning_rule(D,'true'):-format_learning_rule249,10714 -format_learning_rule(D,'true'):-format_learning_rule249,10714 -format_learning_rule(D,'true'):-format_learning_rule249,10714 -format_learning_rule(D,'false'):-format_learning_rule251,10778 -format_learning_rule(D,'false'):-format_learning_rule251,10778 -format_learning_rule(D,'false'):-format_learning_rule251,10778 -format_learning_rule(D,(First<=>Second)):-format_learning_rule254,10845 -format_learning_rule(D,(First<=>Second)):-format_learning_rule254,10845 -format_learning_rule(D,(First<=>Second)):-format_learning_rule254,10845 -format_learning_rule(D,(First;Second)):-format_learning_rule259,10986 -format_learning_rule(D,(First;Second)):-format_learning_rule259,10986 -format_learning_rule(D,(First;Second)):-format_learning_rule259,10986 -format_learning_rule(D,(First,Second)):-format_learning_rule266,11178 -format_learning_rule(D,(First,Second)):-format_learning_rule266,11178 -format_learning_rule(D,(First,Second)):-format_learning_rule266,11178 -format_learning_rule(D,R,Key):-format_learning_rule271,11314 -format_learning_rule(D,R,Key):-format_learning_rule271,11314 -format_learning_rule(D,R,Key):-format_learning_rule271,11314 - -packages/ProbLog/problog/ptree.yap,44503 -init_ptree(Trie) :-init_ptree293,13489 -init_ptree(Trie) :-init_ptree293,13489 -init_ptree(Trie) :-init_ptree293,13489 -delete_ptree(Trie) :-delete_ptree296,13528 -delete_ptree(Trie) :-delete_ptree296,13528 -delete_ptree(Trie) :-delete_ptree296,13528 -delete_ptree(_).delete_ptree298,13572 -delete_ptree(_).delete_ptree298,13572 -empty_ptree(Trie) :-empty_ptree300,13590 -empty_ptree(Trie) :-empty_ptree300,13590 -empty_ptree(Trie) :-empty_ptree300,13590 -traverse_ptree(Trie, List) :-traverse_ptree303,13640 -traverse_ptree(Trie, List) :-traverse_ptree303,13640 -traverse_ptree(Trie, List) :-traverse_ptree303,13640 -traverse_ptree_mode(Mode) :-traverse_ptree_mode307,13728 -traverse_ptree_mode(Mode) :-traverse_ptree_mode307,13728 -traverse_ptree_mode(Mode) :-traverse_ptree_mode307,13728 -member_ptree(List, Trie) :-member_ptree315,13877 -member_ptree(List, Trie) :-member_ptree315,13877 -member_ptree(List, Trie) :-member_ptree315,13877 -enum_member_ptree(List, Trie) :-enum_member_ptree319,13966 -enum_member_ptree(List, Trie) :-enum_member_ptree319,13966 -enum_member_ptree(List, Trie) :-enum_member_ptree319,13966 -trie_path(Trie, List) :-trie_path322,14024 -trie_path(Trie, List) :-trie_path322,14024 -trie_path(Trie, List) :-trie_path322,14024 -insert_ptree(false, _Trie) :-!.insert_ptree329,14176 -insert_ptree(false, _Trie) :-!.insert_ptree329,14176 -insert_ptree(false, _Trie) :-!.insert_ptree329,14176 -insert_ptree(true, Trie) :-insert_ptree330,14208 -insert_ptree(true, Trie) :-insert_ptree330,14208 -insert_ptree(true, Trie) :-insert_ptree330,14208 -insert_ptree(List, Trie) :-insert_ptree334,14297 -insert_ptree(List, Trie) :-insert_ptree334,14297 -insert_ptree(List, Trie) :-insert_ptree334,14297 -delete_ptree(List, Trie) :-delete_ptree345,14524 -delete_ptree(List, Trie) :-delete_ptree345,14524 -delete_ptree(List, Trie) :-delete_ptree345,14524 -edges_ptree(Trie, []) :-edges_ptree355,14781 -edges_ptree(Trie, []) :-edges_ptree355,14781 -edges_ptree(Trie, []) :-edges_ptree355,14781 -edges_ptree(Trie, []) :-edges_ptree358,14830 -edges_ptree(Trie, []) :-edges_ptree358,14830 -edges_ptree(Trie, []) :-edges_ptree358,14830 -edges_ptree(Trie ,Edges) :-edges_ptree361,14895 -edges_ptree(Trie ,Edges) :-edges_ptree361,14895 -edges_ptree(Trie ,Edges) :-edges_ptree361,14895 -trie_literal(Trie, X) :-trie_literal364,14965 -trie_literal(Trie, X) :-trie_literal364,14965 -trie_literal(Trie, X) :-trie_literal364,14965 -count_ptree(Trie, N) :-count_ptree373,15120 -count_ptree(Trie, N) :-count_ptree373,15120 -count_ptree(Trie, N) :-count_ptree373,15120 -prune_check_ptree(_List, _Trie) :-prune_check_ptree382,15375 -prune_check_ptree(_List, _Trie) :-prune_check_ptree382,15375 -prune_check_ptree(_List, _Trie) :-prune_check_ptree382,15375 -merge_ptree(T1, _) :-merge_ptree391,15612 -merge_ptree(T1, _) :-merge_ptree391,15612 -merge_ptree(T1, _) :-merge_ptree391,15612 -merge_ptree(_, T2) :-merge_ptree393,15671 -merge_ptree(_, T2) :-merge_ptree393,15671 -merge_ptree(_, T2) :-merge_ptree393,15671 -merge_ptree(T1, T2) :-merge_ptree395,15771 -merge_ptree(T1, T2) :-merge_ptree395,15771 -merge_ptree(T1, T2) :-merge_ptree395,15771 -merge_ptree(T1, _, T3) :-merge_ptree398,15815 -merge_ptree(T1, _, T3) :-merge_ptree398,15815 -merge_ptree(T1, _, T3) :-merge_ptree398,15815 -merge_ptree(_, T2, T3) :-merge_ptree403,15927 -merge_ptree(_, T2, T3) :-merge_ptree403,15927 -merge_ptree(_, T2, T3) :-merge_ptree403,15927 -merge_ptree(T1, T2, T3) :-merge_ptree408,16039 -merge_ptree(T1, T2, T3) :-merge_ptree408,16039 -merge_ptree(T1, T2, T3) :-merge_ptree408,16039 -bdd_struct_ptree(Trie, FileBDD, Variables) :-bdd_struct_ptree427,16688 -bdd_struct_ptree(Trie, FileBDD, Variables) :-bdd_struct_ptree427,16688 -bdd_struct_ptree(Trie, FileBDD, Variables) :-bdd_struct_ptree427,16688 -bdd_struct_ptree_map(Trie, FileBDD, Variables, Mapping) :-bdd_struct_ptree_map431,16809 -bdd_struct_ptree_map(Trie, FileBDD, Variables, Mapping) :-bdd_struct_ptree_map431,16809 -bdd_struct_ptree_map(Trie, FileBDD, Variables, Mapping) :-bdd_struct_ptree_map431,16809 -bdd_struct_ptree_script(Trie, FileBDD, Variables) :-bdd_struct_ptree_script437,17014 -bdd_struct_ptree_script(Trie, FileBDD, Variables) :-bdd_struct_ptree_script437,17014 -bdd_struct_ptree_script(Trie, FileBDD, Variables) :-bdd_struct_ptree_script437,17014 -name_vars([]).name_vars452,17489 -name_vars([]).name_vars452,17489 -name_vars([A|B]) :-name_vars453,17504 -name_vars([A|B]) :-name_vars453,17504 -name_vars([A|B]) :-name_vars453,17504 -nested_ptree_to_BDD_struct_script(Trie, BDDFileName, Variables):-nested_ptree_to_BDD_struct_script463,17632 -nested_ptree_to_BDD_struct_script(Trie, BDDFileName, Variables):-nested_ptree_to_BDD_struct_script463,17632 -nested_ptree_to_BDD_struct_script(Trie, BDDFileName, Variables):-nested_ptree_to_BDD_struct_script463,17632 -trie_to_bdd_struct_trie(A, B, OutputFile, OptimizationLevel, Variables) :-trie_to_bdd_struct_trie491,18210 -trie_to_bdd_struct_trie(A, B, OutputFile, OptimizationLevel, Variables) :-trie_to_bdd_struct_trie491,18210 -trie_to_bdd_struct_trie(A, B, OutputFile, OptimizationLevel, Variables) :-trie_to_bdd_struct_trie491,18210 -nested_trie_to_bdd_struct_trie(A, B, OutputFile, OptimizationLevel, Variables):-nested_trie_to_bdd_struct_trie529,19155 -nested_trie_to_bdd_struct_trie(A, B, OutputFile, OptimizationLevel, Variables):-nested_trie_to_bdd_struct_trie529,19155 -nested_trie_to_bdd_struct_trie(A, B, OutputFile, OptimizationLevel, Variables):-nested_trie_to_bdd_struct_trie529,19155 -ptree_decomposition_struct(Trie, BDDFileName, Variables) :-ptree_decomposition_struct586,20605 -ptree_decomposition_struct(Trie, BDDFileName, Variables) :-ptree_decomposition_struct586,20605 -ptree_decomposition_struct(Trie, BDDFileName, Variables) :-ptree_decomposition_struct586,20605 -bdd_ptree(Trie, FileBDD, FileParam) :-bdd_ptree617,21360 -bdd_ptree(Trie, FileBDD, FileParam) :-bdd_ptree617,21360 -bdd_ptree(Trie, FileBDD, FileParam) :-bdd_ptree617,21360 -bdd_ptree_map(Trie, FileBDD, FileParam, Mapping) :-bdd_ptree_map622,21498 -bdd_ptree_map(Trie, FileBDD, FileParam, Mapping) :-bdd_ptree_map622,21498 -bdd_ptree_map(Trie, FileBDD, FileParam, Mapping) :-bdd_ptree_map622,21498 -add_probs([], []).add_probs628,21677 -add_probs([], []).add_probs628,21677 -add_probs([m(A,Name)|Map], [m(A, Name, Prob)|Mapping]) :-add_probs629,21696 -add_probs([m(A,Name)|Map], [m(A, Name, Prob)|Mapping]) :-add_probs629,21696 -add_probs([m(A,Name)|Map], [m(A, Name, Prob)|Mapping]) :-add_probs629,21696 -bdd_ptree_script(Trie, FileBDD, FileParam) :-bdd_ptree_script637,22005 -bdd_ptree_script(Trie, FileBDD, FileParam) :-bdd_ptree_script637,22005 -bdd_ptree_script(Trie, FileBDD, FileParam) :-bdd_ptree_script637,22005 -bdd_vars_script(Vars):-bdd_vars_script661,22510 -bdd_vars_script(Vars):-bdd_vars_script661,22510 -bdd_vars_script(Vars):-bdd_vars_script661,22510 -writemap([],[]).writemap675,22862 -writemap([],[]).writemap675,22862 -writemap([Name|Names],[Fact|Facts]):-writemap676,22879 -writemap([Name|Names],[Fact|Facts]):-writemap676,22879 -writemap([Name|Names],[Fact|Facts]):-writemap676,22879 -bdd_vars_script([], []).bdd_vars_script680,22972 -bdd_vars_script([], []).bdd_vars_script680,22972 -bdd_vars_script([false|T], Names):-bdd_vars_script681,22997 -bdd_vars_script([false|T], Names):-bdd_vars_script681,22997 -bdd_vars_script([false|T], Names):-bdd_vars_script681,22997 -bdd_vars_script([true|T], Names):-bdd_vars_script683,23062 -bdd_vars_script([true|T], Names):-bdd_vars_script683,23062 -bdd_vars_script([true|T], Names):-bdd_vars_script683,23062 -bdd_vars_script([not(A)|B], Names) :-bdd_vars_script685,23126 -bdd_vars_script([not(A)|B], Names) :-bdd_vars_script685,23126 -bdd_vars_script([not(A)|B], Names) :-bdd_vars_script685,23126 -bdd_vars_script([A|B], [NameA|Names]) :-bdd_vars_script687,23200 -bdd_vars_script([A|B], [NameA|Names]) :-bdd_vars_script687,23200 -bdd_vars_script([A|B], [NameA|Names]) :-bdd_vars_script687,23200 -bdd_vars_script_intern(A, NameA) :-bdd_vars_script_intern691,23307 -bdd_vars_script_intern(A, NameA) :-bdd_vars_script_intern691,23307 -bdd_vars_script_intern(A, NameA) :-bdd_vars_script_intern691,23307 -bdd_vars_script_intern2(A, NameA) :-bdd_vars_script_intern2710,23968 -bdd_vars_script_intern2(A, NameA) :-bdd_vars_script_intern2710,23968 -bdd_vars_script_intern2(A, NameA) :-bdd_vars_script_intern2710,23968 -bdd_pt(Trie, false) :-bdd_pt753,25313 -bdd_pt(Trie, false) :-bdd_pt753,25313 -bdd_pt(Trie, false) :-bdd_pt753,25313 -bdd_pt(Trie, true) :-bdd_pt758,25403 -bdd_pt(Trie, true) :-bdd_pt758,25403 -bdd_pt(Trie, true) :-bdd_pt758,25403 -bdd_pt(Trie, CT) :-bdd_pt765,25581 -bdd_pt(Trie, CT) :-bdd_pt765,25581 -bdd_pt(Trie, CT) :-bdd_pt765,25581 -trie_to_tree(Trie, Tree) :-trie_to_tree769,25659 -trie_to_tree(Trie, Tree) :-trie_to_tree769,25659 -trie_to_tree(Trie, Tree) :-trie_to_tree769,25659 -add_trees([], Tree, Tree).add_trees773,25763 -add_trees([], Tree, Tree).add_trees773,25763 -add_trees([List|Paths], Tree0, Tree) :-add_trees774,25790 -add_trees([List|Paths], Tree0, Tree) :-add_trees774,25790 -add_trees([List|Paths], Tree0, Tree) :-add_trees774,25790 -ins_pt([], _T, []) :- !.ins_pt779,25944 -ins_pt([], _T, []) :- !.ins_pt779,25944 -ins_pt([], _T, []) :- !.ins_pt779,25944 -ins_pt([A|B], [s(A1, AT)|OldT], NewT) :-ins_pt782,26033 -ins_pt([A|B], [s(A1, AT)|OldT], NewT) :-ins_pt782,26033 -ins_pt([A|B], [s(A1, AT)|OldT], NewT) :-ins_pt782,26033 -ins_pt([A|B], [], [s(A, NewAT)]) :-ins_pt798,26380 -ins_pt([A|B], [], [s(A, NewAT)]) :-ins_pt798,26380 -ins_pt([A|B], [], [s(A, NewAT)]) :-ins_pt798,26380 -compress_pt(T, TT) :-compress_pt809,26797 -compress_pt(T, TT) :-compress_pt809,26797 -compress_pt(T, TT) :-compress_pt809,26797 -compress_pt(T, T) :-compress_pt817,26978 -compress_pt(T, T) :-compress_pt817,26978 -compress_pt(T, T) :-compress_pt817,26978 -compress_pt(T, CT) :-compress_pt822,27142 -compress_pt(T, CT) :-compress_pt822,27142 -compress_pt(T, CT) :-compress_pt822,27142 -and_or_compression(T, CT) :-and_or_compression829,27412 -and_or_compression(T, CT) :-and_or_compression829,27412 -and_or_compression(T, CT) :-and_or_compression829,27412 -and_comp(T, AT) :-and_comp834,27559 -and_comp(T, AT) :-and_comp834,27559 -and_comp(T, AT) :-and_comp834,27559 -or_comp(T, AT) :-or_comp840,27736 -or_comp(T, AT) :-or_comp840,27736 -or_comp(T, AT) :-or_comp840,27736 -all_leaves_pt(T, L) :-all_leaves_pt845,27845 -all_leaves_pt(T, L) :-all_leaves_pt845,27845 -all_leaves_pt(T, L) :-all_leaves_pt845,27845 -some_leaf_pt([s(A, [])|_], s(A,[])).some_leaf_pt848,27901 -some_leaf_pt([s(A, [])|_], s(A,[])).some_leaf_pt848,27901 -some_leaf_pt([s(A, L)|_], s(A, L)) :-some_leaf_pt849,27938 -some_leaf_pt([s(A, L)|_], s(A, L)) :-some_leaf_pt849,27938 -some_leaf_pt([s(A, L)|_], s(A, L)) :-some_leaf_pt849,27938 -some_leaf_pt([s(_, L)|_], X) :-some_leaf_pt851,27994 -some_leaf_pt([s(_, L)|_], X) :-some_leaf_pt851,27994 -some_leaf_pt([s(_, L)|_], X) :-some_leaf_pt851,27994 -some_leaf_pt([_|L],X) :-some_leaf_pt853,28047 -some_leaf_pt([_|L],X) :-some_leaf_pt853,28047 -some_leaf_pt([_|L],X) :-some_leaf_pt853,28047 -all_leaflists_pt(L, [L]) :-all_leaflists_pt856,28093 -all_leaflists_pt(L, [L]) :-all_leaflists_pt856,28093 -all_leaflists_pt(L, [L]) :-all_leaflists_pt856,28093 -all_leaflists_pt(T, L) :-all_leaflists_pt858,28138 -all_leaflists_pt(T, L) :-all_leaflists_pt858,28138 -all_leaflists_pt(T, L) :-all_leaflists_pt858,28138 -all_leaflists_pt(_, []).all_leaflists_pt860,28202 -all_leaflists_pt(_, []).all_leaflists_pt860,28202 -some_leaflist_pt([s(_, L)|_], L) :-some_leaflist_pt862,28228 -some_leaflist_pt([s(_, L)|_], L) :-some_leaflist_pt862,28228 -some_leaflist_pt([s(_, L)|_], L) :-some_leaflist_pt862,28228 -some_leaflist_pt([s(_, L)|_], X) :-some_leaflist_pt864,28278 -some_leaflist_pt([s(_, L)|_], X) :-some_leaflist_pt864,28278 -some_leaflist_pt([s(_, L)|_], X) :-some_leaflist_pt864,28278 -some_leaflist_pt([_|L], X) :-some_leaflist_pt866,28339 -some_leaflist_pt([_|L], X) :-some_leaflist_pt866,28339 -some_leaflist_pt([_|L], X) :-some_leaflist_pt866,28339 -not_or_atom(T) :-not_or_atom869,28395 -not_or_atom(T) :-not_or_atom869,28395 -not_or_atom(T) :-not_or_atom869,28395 -atomlist([]).atomlist877,28470 -atomlist([]).atomlist877,28470 -atomlist([A|B]) :-atomlist878,28484 -atomlist([A|B]) :-atomlist878,28484 -atomlist([A|B]) :-atomlist878,28484 -compression_mapping([], []).compression_mapping884,28711 -compression_mapping([], []).compression_mapping884,28711 -compression_mapping([First|B], [N-First|BB]) :-compression_mapping885,28740 -compression_mapping([First|B], [N-First|BB]) :-compression_mapping885,28740 -compression_mapping([First|B], [N-First|BB]) :-compression_mapping885,28740 -replace_pt(T, [], T).replace_pt916,29759 -replace_pt(T, [], T).replace_pt916,29759 -replace_pt([], _, []).replace_pt917,29781 -replace_pt([], _, []).replace_pt917,29781 -replace_pt(L, M, R) :-replace_pt918,29804 -replace_pt(L, M, R) :-replace_pt918,29804 -replace_pt(L, M, R) :-replace_pt918,29804 -replace_pt([L|LL], [M|MM], R) :-replace_pt922,29862 -replace_pt([L|LL], [M|MM], R) :-replace_pt922,29862 -replace_pt([L|LL], [M|MM], R) :-replace_pt922,29862 -replace_pt_list([T|Tree], [M|Map], [C|Compr]) :-replace_pt_list925,29933 -replace_pt_list([T|Tree], [M|Map], [C|Compr]) :-replace_pt_list925,29933 -replace_pt_list([T|Tree], [M|Map], [C|Compr]) :-replace_pt_list925,29933 -replace_pt_list([], _, []).replace_pt_list928,30057 -replace_pt_list([], _, []).replace_pt_list928,30057 -replace_pt_single(s(A, T), [M|Map], Res) :-replace_pt_single930,30086 -replace_pt_single(s(A, T), [M|Map], Res) :-replace_pt_single930,30086 -replace_pt_single(s(A, T), [M|Map], Res) :-replace_pt_single930,30086 -replace_pt_single(s(A, T), [M|Map], s(A, Res)) :-replace_pt_single934,30179 -replace_pt_single(s(A, T), [M|Map], s(A, Res)) :-replace_pt_single934,30179 -replace_pt_single(s(A, T), [M|Map], s(A, Res)) :-replace_pt_single934,30179 -replace_pt_single(s(A, T), [M|Map], Res) :-replace_pt_single938,30272 -replace_pt_single(s(A, T), [M|Map], Res) :-replace_pt_single938,30272 -replace_pt_single(s(A, T), [M|Map], Res) :-replace_pt_single938,30272 -replace_pt_single(s(A, T), [M|Map], s(A, TT)) :-replace_pt_single941,30351 -replace_pt_single(s(A, T), [M|Map], s(A, TT)) :-replace_pt_single941,30351 -replace_pt_single(s(A, T), [M|Map], s(A, TT)) :-replace_pt_single941,30351 -replace_pt_single(A, _, A) :-replace_pt_single944,30438 -replace_pt_single(A, _, A) :-replace_pt_single944,30438 -replace_pt_single(A, _, A) :-replace_pt_single944,30438 -output_compressed_script(false) :-output_compressed_script951,30628 -output_compressed_script(false) :-output_compressed_script951,30628 -output_compressed_script(false) :-output_compressed_script951,30628 -output_compressed_script(true) :-output_compressed_script954,30700 -output_compressed_script(true) :-output_compressed_script954,30700 -output_compressed_script(true) :-output_compressed_script954,30700 -output_compressed_script(T) :-output_compressed_script959,30963 -output_compressed_script(T) :-output_compressed_script959,30963 -output_compressed_script(T) :-output_compressed_script959,30963 -format_compression_script(s(A0, B0)) :-format_compression_script970,31257 -format_compression_script(s(A0, B0)) :-format_compression_script970,31257 -format_compression_script(s(A0, B0)) :-format_compression_script970,31257 -format_compression_script([A]) :-format_compression_script984,31489 -format_compression_script([A]) :-format_compression_script984,31489 -format_compression_script([A]) :-format_compression_script984,31489 -format_compression_script([A, B|C]) :-format_compression_script986,31545 -format_compression_script([A, B|C]) :-format_compression_script986,31545 -format_compression_script([A, B|C]) :-format_compression_script986,31545 -get_next_name(Name) :-get_next_name995,31769 -get_next_name(Name) :-get_next_name995,31769 -get_next_name(Name) :-get_next_name995,31769 -simplify_list(List, SList):-simplify_list1006,32010 -simplify_list(List, SList):-simplify_list1006,32010 -simplify_list(List, SList):-simplify_list1006,32010 -simplify(not(false), true):- !.simplify1009,32102 -simplify(not(false), true):- !.simplify1009,32102 -simplify(not(false), true):- !.simplify1009,32102 -simplify(not(true), false):- !.simplify1010,32134 -simplify(not(true), false):- !.simplify1010,32134 -simplify(not(true), false):- !.simplify1010,32134 -simplify(not(not(A)), B):-simplify1011,32166 -simplify(not(not(A)), B):-simplify1011,32166 -simplify(not(not(A)), B):-simplify1011,32166 -simplify(A, A).simplify1013,32214 -simplify(A, A).simplify1013,32214 -simplify(not(false), true):- !.simplify1017,32233 -simplify(not(false), true):- !.simplify1017,32233 -simplify(not(false), true):- !.simplify1017,32233 -simplify(not(true), false):- !.simplify1018,32265 -simplify(not(true), false):- !.simplify1018,32265 -simplify(not(true), false):- !.simplify1018,32265 -simplify(not(not(A)), B):-simplify1019,32297 -simplify(not(not(A)), B):-simplify1019,32297 -simplify(not(not(A)), B):-simplify1019,32297 -simplify(A, A).simplify1021,32345 -simplify(A, A).simplify1021,32345 -get_var_name(true, 'TRUE'):- !.get_var_name1023,32362 -get_var_name(true, 'TRUE'):- !.get_var_name1023,32362 -get_var_name(true, 'TRUE'):- !.get_var_name1023,32362 -get_var_name(false, 'FALSE'):- !.get_var_name1024,32394 -get_var_name(false, 'FALSE'):- !.get_var_name1024,32394 -get_var_name(false, 'FALSE'):- !.get_var_name1024,32394 -get_var_name(Variable, Name):-get_var_name1025,32428 -get_var_name(Variable, Name):-get_var_name1025,32428 -get_var_name(Variable, Name):-get_var_name1025,32428 -get_var_name(not(A), NameA):-get_var_name1033,32619 -get_var_name(not(A), NameA):-get_var_name1033,32619 -get_var_name(not(A), NameA):-get_var_name1033,32619 -get_var_name(true, 'TRUE') :-!.get_var_name1038,32680 -get_var_name(true, 'TRUE') :-!.get_var_name1038,32680 -get_var_name(true, 'TRUE') :-!.get_var_name1038,32680 -get_var_name(false, 'FALSE') :-!.get_var_name1039,32712 -get_var_name(false, 'FALSE') :-!.get_var_name1039,32712 -get_var_name(false, 'FALSE') :-!.get_var_name1039,32712 -get_var_name(not(A), NameA):-get_var_name1040,32746 -get_var_name(not(A), NameA):-get_var_name1040,32746 -get_var_name(not(A), NameA):-get_var_name1040,32746 -get_var_name(A, NameA) :-get_var_name1042,32805 -get_var_name(A, NameA) :-get_var_name1042,32805 -get_var_name(A, NameA) :-get_var_name1042,32805 -test_var_name(T) :-test_var_name1054,33072 -test_var_name(T) :-test_var_name1054,33072 -test_var_name(T) :-test_var_name1054,33072 -test_var_name(T) :-test_var_name1056,33117 -test_var_name(T) :-test_var_name1056,33117 -test_var_name(T) :-test_var_name1056,33117 -print_ptree(Trie):-print_ptree1062,33194 -print_ptree(Trie):-print_ptree1062,33194 -print_ptree(Trie):-print_ptree1062,33194 -statistics_ptree:-statistics_ptree1065,33235 -print_nested_ptree(Trie):-print_nested_ptree1077,33584 -print_nested_ptree(Trie):-print_nested_ptree1077,33584 -print_nested_ptree(Trie):-print_nested_ptree1077,33584 -print_nested_ptree(Trie, _, _):-print_nested_ptree1081,33726 -print_nested_ptree(Trie, _, _):-print_nested_ptree1081,33726 -print_nested_ptree(Trie, _, _):-print_nested_ptree1081,33726 -print_nested_ptree(Trie, Level, Space):-print_nested_ptree1083,33792 -print_nested_ptree(Trie, Level, Space):-print_nested_ptree1083,33792 -print_nested_ptree(Trie, Level, Space):-print_nested_ptree1083,33792 -print_nested_ptree(Trie, Level, Space):-print_nested_ptree1086,33886 -print_nested_ptree(Trie, Level, Space):-print_nested_ptree1086,33886 -print_nested_ptree(Trie, Level, Space):-print_nested_ptree1086,33886 -print_nested_ptree(Trie, Level, Space):-print_nested_ptree1096,34239 -print_nested_ptree(Trie, Level, Space):-print_nested_ptree1096,34239 -print_nested_ptree(Trie, Level, Space):-print_nested_ptree1096,34239 -spacy_print(Msg, 0, _):-spacy_print1099,34324 -spacy_print(Msg, 0, _):-spacy_print1099,34324 -spacy_print(Msg, 0, _):-spacy_print1099,34324 -spacy_print(Msg, Level, Space):-spacy_print1101,34370 -spacy_print(Msg, Level, Space):-spacy_print1101,34370 -spacy_print(Msg, Level, Space):-spacy_print1101,34370 -nested_ptree_to_BDD_script(Trie, BDDFileName, VarFileName):-nested_ptree_to_BDD_script1114,34652 -nested_ptree_to_BDD_script(Trie, BDDFileName, VarFileName):-nested_ptree_to_BDD_script1114,34652 -nested_ptree_to_BDD_script(Trie, BDDFileName, VarFileName):-nested_ptree_to_BDD_script1114,34652 -cleanup_BDD_generation:-cleanup_BDD_generation1139,35302 -generate_BDD_from_trie(Trie, TrieInter, Stream):-generate_BDD_from_trie1144,35440 -generate_BDD_from_trie(Trie, TrieInter, Stream):-generate_BDD_from_trie1144,35440 -generate_BDD_from_trie(Trie, TrieInter, Stream):-generate_BDD_from_trie1144,35440 -generate_BDD_from_trie(Trie, TrieInter, _Stream):-generate_BDD_from_trie1148,35625 -generate_BDD_from_trie(Trie, TrieInter, _Stream):-generate_BDD_from_trie1148,35625 -generate_BDD_from_trie(Trie, TrieInter, _Stream):-generate_BDD_from_trie1148,35625 -generate_BDD_from_trie(Trie, TrieInter, Stream):-generate_BDD_from_trie1151,35745 -generate_BDD_from_trie(Trie, TrieInter, Stream):-generate_BDD_from_trie1151,35745 -generate_BDD_from_trie(Trie, TrieInter, Stream):-generate_BDD_from_trie1151,35745 -write_bdd_line([], _LineInter, _Operator, _Stream):-!.write_bdd_line1165,36173 -write_bdd_line([], _LineInter, _Operator, _Stream):-!.write_bdd_line1165,36173 -write_bdd_line([], _LineInter, _Operator, _Stream):-!.write_bdd_line1165,36173 -write_bdd_line(LineTerms, LineInter, Operator, Stream):-write_bdd_line1166,36228 -write_bdd_line(LineTerms, LineInter, Operator, Stream):-write_bdd_line1166,36228 -write_bdd_line(LineTerms, LineInter, Operator, Stream):-write_bdd_line1166,36228 -write_bdd_lineterm([LineTerm|[]], _Operator, Stream):-write_bdd_lineterm1170,36385 -write_bdd_lineterm([LineTerm|[]], _Operator, Stream):-write_bdd_lineterm1170,36385 -write_bdd_lineterm([LineTerm|[]], _Operator, Stream):-write_bdd_lineterm1170,36385 -write_bdd_lineterm([LineTerm|LineTerms], Operator, Stream):-write_bdd_lineterm1172,36482 -write_bdd_lineterm([LineTerm|LineTerms], Operator, Stream):-write_bdd_lineterm1172,36482 -write_bdd_lineterm([LineTerm|LineTerms], Operator, Stream):-write_bdd_lineterm1172,36482 -generate_line([], [], Inter, _Stream):-generate_line1176,36647 -generate_line([], [], Inter, _Stream):-generate_line1176,36647 -generate_line([], [], Inter, _Stream):-generate_line1176,36647 -generate_line([not(t(Hash))|L], [TrieInter|T] , Inter, Stream):-generate_line1178,36727 -generate_line([not(t(Hash))|L], [TrieInter|T] , Inter, Stream):-generate_line1178,36727 -generate_line([not(t(Hash))|L], [TrieInter|T] , Inter, Stream):-generate_line1178,36727 -generate_line([t(Hash)|L], [TrieInter|T] , Inter, Stream):-generate_line1183,36977 -generate_line([t(Hash)|L], [TrieInter|T] , Inter, Stream):-generate_line1183,36977 -generate_line([t(Hash)|L], [TrieInter|T] , Inter, Stream):-generate_line1183,36977 -generate_line([V|L], [BDDV|T], Inter, Stream):-generate_line1187,37170 -generate_line([V|L], [BDDV|T], Inter, Stream):-generate_line1187,37170 -generate_line([V|L], [BDDV|T], Inter, Stream):-generate_line1187,37170 -bddvars_to_script([], _Stream):-!.bddvars_to_script1196,37373 -bddvars_to_script([], _Stream):-!.bddvars_to_script1196,37373 -bddvars_to_script([], _Stream):-!.bddvars_to_script1196,37373 -bddvars_to_script([H|T], Stream):-bddvars_to_script1197,37408 -bddvars_to_script([H|T], Stream):-bddvars_to_script1197,37408 -bddvars_to_script([H|T], Stream):-bddvars_to_script1197,37408 -get_next_intermediate_step('L1'):-get_next_intermediate_step1217,37951 -get_next_intermediate_step('L1'):-get_next_intermediate_step1217,37951 -get_next_intermediate_step('L1'):-get_next_intermediate_step1217,37951 -get_next_intermediate_step(Inter):-get_next_intermediate_step1220,38070 -get_next_intermediate_step(Inter):-get_next_intermediate_step1220,38070 -get_next_intermediate_step(Inter):-get_next_intermediate_step1220,38070 -make_bdd_var('true', 'TRUE'):-!.make_bdd_var1227,38316 -make_bdd_var('true', 'TRUE'):-!.make_bdd_var1227,38316 -make_bdd_var('true', 'TRUE'):-!.make_bdd_var1227,38316 -make_bdd_var('false', 'FALSE'):-!.make_bdd_var1228,38349 -make_bdd_var('false', 'FALSE'):-!.make_bdd_var1228,38349 -make_bdd_var('false', 'FALSE'):-!.make_bdd_var1228,38349 -make_bdd_var(not(V), NotVName):-make_bdd_var1231,38458 -make_bdd_var(not(V), NotVName):-make_bdd_var1231,38458 -make_bdd_var(not(V), NotVName):-make_bdd_var1231,38458 -make_bdd_var(V, VName):-make_bdd_var1236,38581 -make_bdd_var(V, VName):-make_bdd_var1236,38581 -make_bdd_var(V, VName):-make_bdd_var1236,38581 -add_to_vars(V):-add_to_vars1241,38652 -add_to_vars(V):-add_to_vars1241,38652 -add_to_vars(V):-add_to_vars1241,38652 -add_to_vars(V):-add_to_vars1244,38734 -add_to_vars(V):-add_to_vars1244,38734 -add_to_vars(V):-add_to_vars1244,38734 -add_to_vars(V):-add_to_vars1249,38894 -add_to_vars(V):-add_to_vars1249,38894 -add_to_vars(V):-add_to_vars1249,38894 -variables_in_dbtrie(Trie, []):-variables_in_dbtrie1266,39458 -variables_in_dbtrie(Trie, []):-variables_in_dbtrie1266,39458 -variables_in_dbtrie(Trie, []):-variables_in_dbtrie1266,39458 -variables_in_dbtrie(Trie, []):-variables_in_dbtrie1268,39514 -variables_in_dbtrie(Trie, []):-variables_in_dbtrie1268,39514 -variables_in_dbtrie(Trie, []):-variables_in_dbtrie1268,39514 -variables_in_dbtrie(Trie, L):-variables_in_dbtrie1270,39587 -variables_in_dbtrie(Trie, L):-variables_in_dbtrie1270,39587 -variables_in_dbtrie(Trie, L):-variables_in_dbtrie1270,39587 -variable_in_dbtrie(Trie, V):-variable_in_dbtrie1273,39660 -variable_in_dbtrie(Trie, V):-variable_in_dbtrie1273,39660 -variable_in_dbtrie(Trie, V):-variable_in_dbtrie1273,39660 -get_next_variable(V, depth(L, _S)):-get_next_variable1279,39792 -get_next_variable(V, depth(L, _S)):-get_next_variable1279,39792 -get_next_variable(V, depth(L, _S)):-get_next_variable1279,39792 -get_next_variable(V, breadth(L, _S)):-get_next_variable1282,39863 -get_next_variable(V, breadth(L, _S)):-get_next_variable1282,39863 -get_next_variable(V, breadth(L, _S)):-get_next_variable1282,39863 -get_next_variable(V, L):-get_next_variable1285,39936 -get_next_variable(V, L):-get_next_variable1285,39936 -get_next_variable(V, L):-get_next_variable1285,39936 -get_variable(not(V), R):-get_variable1290,40019 -get_variable(not(V), R):-get_variable1290,40019 -get_variable(not(V), R):-get_variable1290,40019 -get_variable(R, R).get_variable1292,40070 -get_variable(R, R).get_variable1292,40070 -trie_to_bdd_trie(A, B, OutputFile, OptimizationLevel, FileParam):-trie_to_bdd_trie1301,40329 -trie_to_bdd_trie(A, B, OutputFile, OptimizationLevel, FileParam):-trie_to_bdd_trie1301,40329 -trie_to_bdd_trie(A, B, OutputFile, OptimizationLevel, FileParam):-trie_to_bdd_trie1301,40329 -is_state(true).is_state1351,41467 -is_state(true).is_state1351,41467 -is_state(false).is_state1352,41483 -is_state(false).is_state1352,41483 -nested_trie_to_bdd_trie(A, B, OutputFile, OptimizationLevel, FileParam):-nested_trie_to_bdd_trie1354,41501 -nested_trie_to_bdd_trie(A, B, OutputFile, OptimizationLevel, FileParam):-nested_trie_to_bdd_trie1354,41501 -nested_trie_to_bdd_trie(A, B, OutputFile, OptimizationLevel, FileParam):-nested_trie_to_bdd_trie1354,41501 -fix(false, 'FALSE'):-!.fix1448,43668 -fix(false, 'FALSE'):-!.fix1448,43668 -fix(false, 'FALSE'):-!.fix1448,43668 -fix(true, 'TRUE'):-!.fix1449,43692 -fix(true, 'TRUE'):-!.fix1449,43692 -fix(true, 'TRUE'):-!.fix1449,43692 -fix(A, A).fix1450,43714 -fix(A, A).fix1450,43714 -preprocess(Index, DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount):-preprocess1453,43729 -preprocess(Index, DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount):-preprocess1453,43729 -preprocess(Index, DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount):-preprocess1453,43729 -preprocess(_, _, _, FinalEndCount, FinalEndCount).preprocess1461,44169 -preprocess(_, _, _, FinalEndCount, FinalEndCount).preprocess1461,44169 -make_nested_trie_base_cases(Trie, t(ID), DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount, Ancestors):-make_nested_trie_base_cases1463,44221 -make_nested_trie_base_cases(Trie, t(ID), DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount, Ancestors):-make_nested_trie_base_cases1463,44221 -make_nested_trie_base_cases(Trie, t(ID), DepthBreadthTrie, OptimizationLevel, StartCount, FinalEndCount, Ancestors):-make_nested_trie_base_cases1463,44221 -trie_nested_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, Module:GetTriePredicate):-trie_nested_to_depth_breadth_trie1476,44905 -trie_nested_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, Module:GetTriePredicate):-trie_nested_to_depth_breadth_trie1476,44905 -trie_nested_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, Module:GetTriePredicate):-trie_nested_to_depth_breadth_trie1476,44905 -trie_nested_to_db_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCount, FinalEndCount, Module:GetTriePredicate, AncestorList, ContainsLoop, Childs, ChildsAcc):-trie_nested_to_db_trie1489,45468 -trie_nested_to_db_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCount, FinalEndCount, Module:GetTriePredicate, AncestorList, ContainsLoop, Childs, ChildsAcc):-trie_nested_to_db_trie1489,45468 -trie_nested_to_db_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCount, FinalEndCount, Module:GetTriePredicate, AncestorList, ContainsLoop, Childs, ChildsAcc):-trie_nested_to_db_trie1489,45468 -nested_trie_to_db_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCount, FinalEndCount, Module:GetTriePredicate, Ancestors, ContainsLoop, Childs, ChildsAcc):-nested_trie_to_db_trie1494,45884 -nested_trie_to_db_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCount, FinalEndCount, Module:GetTriePredicate, Ancestors, ContainsLoop, Childs, ChildsAcc):-nested_trie_to_db_trie1494,45884 -nested_trie_to_db_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCount, FinalEndCount, Module:GetTriePredicate, Ancestors, ContainsLoop, Childs, ChildsAcc):-nested_trie_to_db_trie1494,45884 -initialise_ancestors(Ancestors):-initialise_ancestors1540,47807 -initialise_ancestors(Ancestors):-initialise_ancestors1540,47807 -initialise_ancestors(Ancestors):-initialise_ancestors1540,47807 -add_to_ancestors(t(ID), Ancestors, NewAncestors):-add_to_ancestors1547,47931 -add_to_ancestors(t(ID), Ancestors, NewAncestors):-add_to_ancestors1547,47931 -add_to_ancestors(t(ID), Ancestors, NewAncestors):-add_to_ancestors1547,47931 -combine_ancestors(Ancestors, AddAncestors, Ancestors):-combine_ancestors1554,48132 -combine_ancestors(Ancestors, AddAncestors, Ancestors):-combine_ancestors1554,48132 -combine_ancestors(Ancestors, AddAncestors, Ancestors):-combine_ancestors1554,48132 -combine_ancestors(Ancestors, AddAncestors, AllAncestors):-combine_ancestors1556,48212 -combine_ancestors(Ancestors, AddAncestors, AllAncestors):-combine_ancestors1556,48212 -combine_ancestors(Ancestors, AddAncestors, AllAncestors):-combine_ancestors1556,48212 -my_trie_print(T):-my_trie_print1564,48424 -my_trie_print(T):-my_trie_print1564,48424 -my_trie_print(T):-my_trie_print1564,48424 -my_trie_print(_T).my_trie_print1569,48521 -my_trie_print(_T).my_trie_print1569,48521 -loopcheck(Proof, AncestorList):-loopcheck1571,48541 -loopcheck(Proof, AncestorList):-loopcheck1571,48541 -loopcheck(Proof, AncestorList):-loopcheck1571,48541 -chk_id(ID, AncestorList):-chk_id1576,48715 -chk_id(ID, AncestorList):-chk_id1576,48715 -chk_id(ID, AncestorList):-chk_id1576,48715 -chk_id(ID, AncestorList):-chk_id1582,48871 -chk_id(ID, AncestorList):-chk_id1582,48871 -chk_id(ID, AncestorList):-chk_id1582,48871 -get_negated_synonym_id(ID, NegID):-get_negated_synonym_id1596,49323 -get_negated_synonym_id(ID, NegID):-get_negated_synonym_id1596,49323 -get_negated_synonym_id(ID, NegID):-get_negated_synonym_id1596,49323 -is_nested_trie(T):-is_nested_trie1609,49834 -is_nested_trie(T):-is_nested_trie1609,49834 -is_nested_trie(T):-is_nested_trie1609,49834 -is_nested_trie(NT, ID):-is_nested_trie1612,49891 -is_nested_trie(NT, ID):-is_nested_trie1612,49891 -is_nested_trie(NT, ID):-is_nested_trie1612,49891 -is_nested_trie(t(ID), ID).is_nested_trie1616,49973 -is_nested_trie(t(ID), ID).is_nested_trie1616,49973 -contains_nested_trie(L, ID):-contains_nested_trie1618,50001 -contains_nested_trie(L, ID):-contains_nested_trie1618,50001 -contains_nested_trie(L, ID):-contains_nested_trie1618,50001 -subset([],_):-!.subset1623,50074 -subset([],_):-!.subset1623,50074 -subset([],_):-!.subset1623,50074 -subset(_,[]):-!,fail.subset1624,50091 -subset(_,[]):-!,fail.subset1624,50091 -subset(_,[]):-!,fail.subset1624,50091 -subset([H|T1], [H|T2]):-subset1625,50113 -subset([H|T1], [H|T2]):-subset1625,50113 -subset([H|T1], [H|T2]):-subset1625,50113 -subset([H1|T1], [H2|T2]):-subset1627,50156 -subset([H1|T1], [H2|T2]):-subset1627,50156 -subset([H1|T1], [H2|T2]):-subset1627,50156 -get_set_trie_from_id(t(ID), L, T, AncestorList, _GetTriePredicate, Childs):-get_set_trie_from_id1631,50228 -get_set_trie_from_id(t(ID), L, T, AncestorList, _GetTriePredicate, Childs):-get_set_trie_from_id1631,50228 -get_set_trie_from_id(t(ID), L, T, AncestorList, _GetTriePredicate, Childs):-get_set_trie_from_id1631,50228 -get_set_trie_from_id(t(ID), L, T, SuperSetAncestorList, _GetTriePredicate, Childs):-get_set_trie_from_id1646,50726 -get_set_trie_from_id(t(ID), L, T, SuperSetAncestorList, _GetTriePredicate, Childs):-get_set_trie_from_id1646,50726 -get_set_trie_from_id(t(ID), L, T, SuperSetAncestorList, _GetTriePredicate, Childs):-get_set_trie_from_id1646,50726 -get_set_trie_from_id(t(ID), _L, T, _SuperSetAncestorList, _GetTriePredicate, _):-get_set_trie_from_id1664,51383 -get_set_trie_from_id(t(ID), _L, T, _SuperSetAncestorList, _GetTriePredicate, _):-get_set_trie_from_id1664,51383 -get_set_trie_from_id(t(ID), _L, T, _SuperSetAncestorList, _GetTriePredicate, _):-get_set_trie_from_id1664,51383 -get_set_trie_from_id(t(ID), _L, T, _AncestorList, Module:GetTriePredicate, _):-get_set_trie_from_id1666,51555 -get_set_trie_from_id(t(ID), _L, T, _AncestorList, Module:GetTriePredicate, _):-get_set_trie_from_id1666,51555 -get_set_trie_from_id(t(ID), _L, T, _AncestorList, Module:GetTriePredicate, _):-get_set_trie_from_id1666,51555 -trie_replace_entry(_Trie, Entry, _E, false):-trie_replace_entry1670,51695 -trie_replace_entry(_Trie, Entry, _E, false):-trie_replace_entry1670,51695 -trie_replace_entry(_Trie, Entry, _E, false):-trie_replace_entry1670,51695 -trie_replace_entry(Trie, Entry, E, true):-trie_replace_entry1672,51772 -trie_replace_entry(Trie, Entry, E, true):-trie_replace_entry1672,51772 -trie_replace_entry(Trie, Entry, E, true):-trie_replace_entry1672,51772 -trie_replace_entry(Trie, _Entry, t(ID), R):-trie_replace_entry1689,52296 -trie_replace_entry(Trie, _Entry, t(ID), R):-trie_replace_entry1689,52296 -trie_replace_entry(Trie, _Entry, t(ID), R):-trie_replace_entry1689,52296 -trie_replace_term2(Trie, OldTerm, NewTerm):-trie_replace_term21695,52386 -trie_replace_term2(Trie, OldTerm, NewTerm):-trie_replace_term21695,52386 -trie_replace_term2(Trie, OldTerm, NewTerm):-trie_replace_term21695,52386 -trie_delete(Trie):-trie_delete1703,52578 -trie_delete(Trie):-trie_delete1703,52578 -trie_delete(Trie):-trie_delete1703,52578 -trie_delete(_Trie).trie_delete1707,52656 -trie_delete(_Trie).trie_delete1707,52656 -trie_replace_term(Trie, NewTrie, OldTerm, NewTerm):-trie_replace_term1709,52677 -trie_replace_term(Trie, NewTrie, OldTerm, NewTerm):-trie_replace_term1709,52677 -trie_replace_term(Trie, NewTrie, OldTerm, NewTerm):-trie_replace_term1709,52677 -trie_replace_term(_Trie, _NewTrie, _OldTerm, _NewTerm).trie_replace_term1715,52866 -trie_replace_term(_Trie, _NewTrie, _OldTerm, _NewTerm).trie_replace_term1715,52866 -replace_in_list([],[],_,_):-!.replace_in_list1717,52923 -replace_in_list([],[],_,_):-!.replace_in_list1717,52923 -replace_in_list([],[],_,_):-!.replace_in_list1717,52923 -replace_in_list([H|T], [N|NT], H, N):-replace_in_list1718,52954 -replace_in_list([H|T], [N|NT], H, N):-replace_in_list1718,52954 -replace_in_list([H|T], [N|NT], H, N):-replace_in_list1718,52954 -replace_in_list([H|T], [NH|NT], R, N):-replace_in_list1720,53028 -replace_in_list([H|T], [NH|NT], R, N):-replace_in_list1720,53028 -replace_in_list([H|T], [NH|NT], R, N):-replace_in_list1720,53028 -replace_in_list([H|T], [H|NT], R, N):-replace_in_list1724,53158 -replace_in_list([H|T], [H|NT], R, N):-replace_in_list1724,53158 -replace_in_list([H|T], [H|NT], R, N):-replace_in_list1724,53158 -replace_in_functor(F, NF, T, R):-replace_in_functor1726,53229 -replace_in_functor(F, NF, T, R):-replace_in_functor1726,53229 -replace_in_functor(F, NF, T, R):-replace_in_functor1726,53229 -trie_write(T, MAXL):-trie_write1733,53322 -trie_write(T, MAXL):-trie_write1733,53322 -trie_write(T, MAXL):-trie_write1733,53322 -trie_write(_, _).trie_write1745,53617 -trie_write(_, _).trie_write1745,53617 -dnfbddformat(depth(T, L), MAXL):-dnfbddformat1747,53636 -dnfbddformat(depth(T, L), MAXL):-dnfbddformat1747,53636 -dnfbddformat(depth(T, L), MAXL):-dnfbddformat1747,53636 -dnfbddformat(breadth(T, L), MAXL):-dnfbddformat1760,53937 -dnfbddformat(breadth(T, L), MAXL):-dnfbddformat1760,53937 -dnfbddformat(breadth(T, L), MAXL):-dnfbddformat1760,53937 -bddlineformat([not(H)|T], O):-bddlineformat1775,54242 -bddlineformat([not(H)|T], O):-bddlineformat1775,54242 -bddlineformat([not(H)|T], O):-bddlineformat1775,54242 -bddlineformat([H], _O):-bddlineformat1778,54317 -bddlineformat([H], _O):-bddlineformat1778,54317 -bddlineformat([H], _O):-bddlineformat1778,54317 -bddlineformat([H|T], O):-bddlineformat1785,54427 -bddlineformat([H|T], O):-bddlineformat1785,54427 -bddlineformat([H|T], O):-bddlineformat1785,54427 -bddlineformat([not(H)], O):-bddlineformat1795,54568 -bddlineformat([not(H)], O):-bddlineformat1795,54568 -bddlineformat([not(H)], O):-bddlineformat1795,54568 -bddlineformat([H], _O):-!,bddlineformat1798,54639 -bddlineformat([H], _O):-!,bddlineformat1798,54639 -bddlineformat([H], _O):-!,bddlineformat1798,54639 -bddlineformat([not(H)|T], O):-bddlineformat1805,54760 -bddlineformat([not(H)|T], O):-bddlineformat1805,54760 -bddlineformat([not(H)|T], O):-bddlineformat1805,54760 -bddlineformat([H|T], O):-bddlineformat1808,54835 -bddlineformat([H|T], O):-bddlineformat1808,54835 -bddlineformat([H|T], O):-bddlineformat1808,54835 -bddlineformat(T, L, O):-bddlineformat1817,54987 -bddlineformat(T, L, O):-bddlineformat1817,54987 -bddlineformat(T, L, O):-bddlineformat1817,54987 -is_label(not(L)):-is_label1825,55157 -is_label(not(L)):-is_label1825,55157 -is_label(not(L)):-is_label1825,55157 -is_label(Label):-is_label1827,55194 -is_label(Label):-is_label1827,55194 -is_label(Label):-is_label1827,55194 -isnestedtrie(not(T)):-isnestedtrie1831,55260 -isnestedtrie(not(T)):-isnestedtrie1831,55260 -isnestedtrie(not(T)):-isnestedtrie1831,55260 -isnestedtrie(t(_T)).isnestedtrie1833,55305 -isnestedtrie(t(_T)).isnestedtrie1833,55305 -seperate([], [], []).seperate1835,55327 -seperate([], [], []).seperate1835,55327 -seperate([H|T], [H|Labels], Vars):-seperate1836,55349 -seperate([H|T], [H|Labels], Vars):-seperate1836,55349 -seperate([H|T], [H|Labels], Vars):-seperate1836,55349 -seperate([H|T], Labels, [H|Vars]):-seperate1839,55432 -seperate([H|T], Labels, [H|Vars]):-seperate1839,55432 -seperate([H|T], Labels, [H|Vars]):-seperate1839,55432 -ptree_decomposition(Trie, BDDFileName, VarFileName) :-ptree_decomposition1843,55499 -ptree_decomposition(Trie, BDDFileName, VarFileName) :-ptree_decomposition1843,55499 -ptree_decomposition(Trie, BDDFileName, VarFileName) :-ptree_decomposition1843,55499 -get_next_inter_step(I):-get_next_inter_step1870,56035 -get_next_inter_step(I):-get_next_inter_step1870,56035 -get_next_inter_step(I):-get_next_inter_step1870,56035 -decompose_trie(Trie, _, false):-decompose_trie1875,56143 -decompose_trie(Trie, _, false):-decompose_trie1875,56143 -decompose_trie(Trie, _, false):-decompose_trie1875,56143 -decompose_trie(Trie, _, 'TRUE'):-decompose_trie1878,56201 -decompose_trie(Trie, _, 'TRUE'):-decompose_trie1878,56201 -decompose_trie(Trie, _, 'TRUE'):-decompose_trie1878,56201 -decompose_trie(Trie, [H|[]], Var):-decompose_trie1881,56276 -decompose_trie(Trie, [H|[]], Var):-decompose_trie1881,56276 -decompose_trie(Trie, [H|[]], Var):-decompose_trie1881,56276 -decompose_trie(Trie, [H|_T], L3):-decompose_trie1892,56469 -decompose_trie(Trie, [H|_T], L3):-decompose_trie1892,56469 -decompose_trie(Trie, [H|_T], L3):-decompose_trie1892,56469 -dwriteln(A):-dwriteln1975,58414 -dwriteln(A):-dwriteln1975,58414 -dwriteln(A):-dwriteln1975,58414 -non_false([], []):-!.non_false1979,58482 -non_false([], []):-!.non_false1979,58482 -non_false([], []):-!.non_false1979,58482 -non_false([H|T], [H|NT]):-non_false1980,58504 -non_false([H|T], [H|NT]):-non_false1980,58504 -non_false([H|T], [H|NT]):-non_false1980,58504 -non_false([H|T], NT):-non_false1983,58566 -non_false([H|T], NT):-non_false1983,58566 -non_false([H|T], NT):-non_false1983,58566 -one_true('TRUE', _, _):-!.one_true1987,58624 -one_true('TRUE', _, _):-!.one_true1987,58624 -one_true('TRUE', _, _):-!.one_true1987,58624 -one_true(_, 'TRUE', _):-!.one_true1988,58651 -one_true(_, 'TRUE', _):-!.one_true1988,58651 -one_true(_, 'TRUE', _):-!.one_true1988,58651 -one_true(_, _, 'TRUE'):-!.one_true1989,58678 -one_true(_, _, 'TRUE'):-!.one_true1989,58678 -one_true(_, _, 'TRUE'):-!.one_true1989,58678 -all_false(false,false,false).all_false1991,58706 -all_false(false,false,false).all_false1991,58706 -one_non_false(L, false, false, L):-one_non_false1992,58736 -one_non_false(L, false, false, L):-one_non_false1992,58736 -one_non_false(L, false, false, L):-one_non_false1992,58736 -one_non_false(false, L, false, L):-one_non_false1994,58790 -one_non_false(false, L, false, L):-one_non_false1994,58790 -one_non_false(false, L, false, L):-one_non_false1994,58790 -one_non_false(false, false, L, L):-one_non_false1996,58844 -one_non_false(false, false, L, L):-one_non_false1996,58844 -one_non_false(false, false, L, L):-one_non_false1996,58844 -trie_seperate(Trie, Var, TrieWith, TrieWithNeg, TrieWithOut):-trie_seperate1999,58899 -trie_seperate(Trie, Var, TrieWith, TrieWithNeg, TrieWithOut):-trie_seperate1999,58899 -trie_seperate(Trie, Var, TrieWith, TrieWithNeg, TrieWithOut):-trie_seperate1999,58899 -trie_seperate(_Trie, _Var, _TrieWith, _TrieWithNeg, _TrieWithOut).trie_seperate2022,59493 -trie_seperate(_Trie, _Var, _TrieWith, _TrieWithNeg, _TrieWithOut).trie_seperate2022,59493 -remove_from_list(_E, [], []):-!.remove_from_list2024,59561 -remove_from_list(_E, [], []):-!.remove_from_list2024,59561 -remove_from_list(_E, [], []):-!.remove_from_list2024,59561 -remove_from_list(E, [E|T], NT):-remove_from_list2025,59594 -remove_from_list(E, [E|T], NT):-remove_from_list2025,59594 -remove_from_list(E, [E|T], NT):-remove_from_list2025,59594 -remove_from_list(E, [A|T], [A|NT]):-remove_from_list2027,59660 -remove_from_list(E, [A|T], [A|NT]):-remove_from_list2027,59660 -remove_from_list(E, [A|T], [A|NT]):-remove_from_list2027,59660 -ptree_db_trie_opt_performed(LVL1, LVL2, LVL3):-ptree_db_trie_opt_performed2030,59728 -ptree_db_trie_opt_performed(LVL1, LVL2, LVL3):-ptree_db_trie_opt_performed2030,59728 -ptree_db_trie_opt_performed(LVL1, LVL2, LVL3):-ptree_db_trie_opt_performed2030,59728 -mark_for_deref(DB_Trie):-mark_for_deref2037,59982 -mark_for_deref(DB_Trie):-mark_for_deref2037,59982 -mark_for_deref(DB_Trie):-mark_for_deref2037,59982 -mark_deref(DB_Trie):-mark_deref2043,60121 -mark_deref(DB_Trie):-mark_deref2043,60121 -mark_deref(DB_Trie):-mark_deref2043,60121 -mark_deref(_).mark_deref2053,60355 -mark_deref(_).mark_deref2053,60355 - -packages/ProbLog/problog/sampling.yap,492 -problog_convergence_check(Time, P, SamplesSoFar, Delta, Epsilon, Converged):-problog_convergence_check224,10732 -problog_convergence_check(Time, P, SamplesSoFar, Delta, Epsilon, Converged):-problog_convergence_check224,10732 -problog_convergence_check(Time, P, SamplesSoFar, Delta, Epsilon, Converged):-problog_convergence_check224,10732 -problog_random(Random):-problog_random263,11796 -problog_random(Random):-problog_random263,11796 -problog_random(Random):-problog_random263,11796 - -packages/ProbLog/problog/tabling.yap,3843 -init_tabling :-init_tabling264,11692 -clear_tabling:-clear_tabling271,11938 -retain_tabling:-retain_tabling286,12294 -clear_retained_tables:-clear_retained_tables289,12389 -problog_chktabled(Index, Trie):-problog_chktabled293,12515 -problog_chktabled(Index, Trie):-problog_chktabled293,12515 -problog_chktabled(Index, Trie):-problog_chktabled293,12515 -problog_table_next_index(Index):-problog_table_next_index296,12608 -problog_table_next_index(Index):-problog_table_next_index296,12608 -problog_table_next_index(Index):-problog_table_next_index296,12608 -problog_table(M:P) :- !,problog_table301,12763 -problog_table(M:P) :- !,problog_table301,12763 -problog_table(M:P) :- !,problog_table301,12763 -problog_table(P) :-problog_table303,12811 -problog_table(P) :-problog_table303,12811 -problog_table(P) :-problog_table303,12811 -problog_table(M:P, _) :-problog_table307,12889 -problog_table(M:P, _) :-problog_table307,12889 -problog_table(M:P, _) :-problog_table307,12889 -problog_table((P1, P2), M) :-problog_table309,12937 -problog_table((P1, P2), M) :-problog_table309,12937 -problog_table((P1, P2), M) :-problog_table309,12937 -problog_table(Name/Arity, Module) :-problog_table312,13015 -problog_table(Name/Arity, Module) :-problog_table312,13015 -problog_table(Name/Arity, Module) :-problog_table312,13015 -problog_table(Name/Arity, Module) :-problog_table317,13281 -problog_table(Name/Arity, Module) :-problog_table317,13281 -problog_table(Name/Arity, Module) :-problog_table317,13281 -problog_abolish_all_tables:-problog_abolish_all_tables429,17471 -problog_abolish_table(M:P/A):-problog_abolish_table432,17523 -problog_abolish_table(M:P/A):-problog_abolish_table432,17523 -problog_abolish_table(M:P/A):-problog_abolish_table432,17523 -problog_neg(M:G):-problog_neg437,17715 -problog_neg(M:G):-problog_neg437,17715 -problog_neg(M:G):-problog_neg437,17715 -problog_neg(M:G):-problog_neg444,17997 -problog_neg(M:G):-problog_neg444,17997 -problog_neg(M:G):-problog_neg444,17997 -problog_neg(M:G):-problog_neg455,18356 -problog_neg(M:G):-problog_neg455,18356 -problog_neg(M:G):-problog_neg455,18356 -problog_tabling_negated_synonym(Name, NotName):-problog_tabling_negated_synonym461,18537 -problog_tabling_negated_synonym(Name, NotName):-problog_tabling_negated_synonym461,18537 -problog_tabling_negated_synonym(Name, NotName):-problog_tabling_negated_synonym461,18537 -problog_tabling_negated_synonym(Name, NotName):-problog_tabling_negated_synonym463,18652 -problog_tabling_negated_synonym(Name, NotName):-problog_tabling_negated_synonym463,18652 -problog_tabling_negated_synonym(Name, NotName):-problog_tabling_negated_synonym463,18652 -problog_tabling_get_negated_from_pred(Pred, Ref):-problog_tabling_get_negated_from_pred468,18817 -problog_tabling_get_negated_from_pred(Pred, Ref):-problog_tabling_get_negated_from_pred468,18817 -problog_tabling_get_negated_from_pred(Pred, Ref):-problog_tabling_get_negated_from_pred468,18817 -problog_tabling_get_negated_from_id(ID, Ref):-problog_tabling_get_negated_from_id479,19287 -problog_tabling_get_negated_from_id(ID, Ref):-problog_tabling_get_negated_from_id479,19287 -problog_tabling_get_negated_from_id(ID, Ref):-problog_tabling_get_negated_from_id479,19287 -get_negated_synonym_state(Pred, Fin):-get_negated_synonym_state492,19810 -get_negated_synonym_state(Pred, Fin):-get_negated_synonym_state492,19810 -get_negated_synonym_state(Pred, Fin):-get_negated_synonym_state492,19810 -get_negated_synonym_state(_, true).get_negated_synonym_state502,20267 -get_negated_synonym_state(_, true).get_negated_synonym_state502,20267 -get_negated_synonym_id(ID, NegID):-get_negated_synonym_id505,20307 -get_negated_synonym_id(ID, NegID):-get_negated_synonym_id505,20307 -get_negated_synonym_id(ID, NegID):-get_negated_synonym_id505,20307 - -packages/ProbLog/problog/termhandling.yap,11972 -term_element((X,Y),Z) :-term_element225,10254 -term_element((X,Y),Z) :-term_element225,10254 -term_element((X,Y),Z) :-term_element225,10254 -term_element((X;Y),Z) :-term_element227,10319 -term_element((X;Y),Z) :-term_element227,10319 -term_element((X;Y),Z) :-term_element227,10319 -term_element((X <=> Y),Z) :-term_element229,10384 -term_element((X <=> Y),Z) :-term_element229,10384 -term_element((X <=> Y),Z) :-term_element229,10384 -term_element(\+ X,Z) :-term_element231,10453 -term_element(\+ X,Z) :-term_element231,10453 -term_element(\+ X,Z) :-term_element231,10453 -term_element('$atom'(X),'$atom'(X)) :-term_element233,10497 -term_element('$atom'(X),'$atom'(X)) :-term_element233,10497 -term_element('$atom'(X),'$atom'(X)) :-term_element233,10497 -or(true,_,true).or240,10599 -or(true,_,true).or240,10599 -or(false,X,X).or241,10616 -or(false,X,X).or241,10616 -not(true,false).not245,10658 -not(true,false).not245,10658 -not(false,true).not246,10675 -not(false,true).not246,10675 -propagate_interpretation((X,Y),ID,(X2,Y2)) :-propagate_interpretation254,10908 -propagate_interpretation((X,Y),ID,(X2,Y2)) :-propagate_interpretation254,10908 -propagate_interpretation((X,Y),ID,(X2,Y2)) :-propagate_interpretation254,10908 -propagate_interpretation((X;Y),ID,(X2;Y2)) :-propagate_interpretation257,11026 -propagate_interpretation((X;Y),ID,(X2;Y2)) :-propagate_interpretation257,11026 -propagate_interpretation((X;Y),ID,(X2;Y2)) :-propagate_interpretation257,11026 -propagate_interpretation((X <=> Y),ID,(X2 <=> Y2)) :-propagate_interpretation260,11144 -propagate_interpretation((X <=> Y),ID,(X2 <=> Y2)) :-propagate_interpretation260,11144 -propagate_interpretation((X <=> Y),ID,(X2 <=> Y2)) :-propagate_interpretation260,11144 -propagate_interpretation((\+ X), ID,\+ X2) :-propagate_interpretation263,11270 -propagate_interpretation((\+ X), ID,\+ X2) :-propagate_interpretation263,11270 -propagate_interpretation((\+ X), ID,\+ X2) :-propagate_interpretation263,11270 -propagate_interpretation('$atom'(X),ID,Value) :-propagate_interpretation265,11352 -propagate_interpretation('$atom'(X),ID,Value) :-propagate_interpretation265,11352 -propagate_interpretation('$atom'(X),ID,Value) :-propagate_interpretation265,11352 -propagate_interpretation(true,_,true).propagate_interpretation272,11464 -propagate_interpretation(true,_,true).propagate_interpretation272,11464 -propagate_interpretation(false,_,false).propagate_interpretation273,11503 -propagate_interpretation(false,_,false).propagate_interpretation273,11503 -propagate((X,Y),A,AValue,(X2,Y2),Result) :-propagate281,11704 -propagate((X,Y),A,AValue,(X2,Y2),Result) :-propagate281,11704 -propagate((X,Y),A,AValue,(X2,Y2),Result) :-propagate281,11704 -propagate((X;Y),A,AValue,(X2;Y2),Result) :-propagate285,11847 -propagate((X;Y),A,AValue,(X2;Y2),Result) :-propagate285,11847 -propagate((X;Y),A,AValue,(X2;Y2),Result) :-propagate285,11847 -propagate((X <=> Y),A,AValue,(X2 <=> Y2),Result) :-propagate289,11990 -propagate((X <=> Y),A,AValue,(X2 <=> Y2),Result) :-propagate289,11990 -propagate((X <=> Y),A,AValue,(X2 <=> Y2),Result) :-propagate289,11990 -propagate((\+ X), A, AValue,\+ X2,Result) :-propagate293,12141 -propagate((\+ X), A, AValue,\+ X2,Result) :-propagate293,12141 -propagate((\+ X), A, AValue,\+ X2,Result) :-propagate293,12141 -propagate('$atom'(X),'$atom'(A),AValue,ResultTerm,Propagated) :-propagate295,12220 -propagate('$atom'(X),'$atom'(A),AValue,ResultTerm,Propagated) :-propagate295,12220 -propagate('$atom'(X),'$atom'(A),AValue,ResultTerm,Propagated) :-propagate295,12220 -propagate(true,_,_,true,false).propagate305,12404 -propagate(true,_,_,true,false).propagate305,12404 -propagate(false,_,_,false,false).propagate306,12436 -propagate(false,_,_,false,false).propagate306,12436 -negate_atom(\+ '$atom'(X), '$atom'(X)).negate_atom315,12631 -negate_atom(\+ '$atom'(X), '$atom'(X)).negate_atom315,12631 -negate_atom( '$atom'(X),\+ '$atom'(X)).negate_atom316,12673 -negate_atom( '$atom'(X),\+ '$atom'(X)).negate_atom316,12673 -occurs_check_and((X,_), A) :-occurs_check_and318,12716 -occurs_check_and((X,_), A) :-occurs_check_and318,12716 -occurs_check_and((X,_), A) :-occurs_check_and318,12716 -occurs_check_and((_,Y), A) :-occurs_check_and321,12774 -occurs_check_and((_,Y), A) :-occurs_check_and321,12774 -occurs_check_and((_,Y), A) :-occurs_check_and321,12774 -occurs_check_and( '$atom'(X), '$atom'(X)).occurs_check_and323,12828 -occurs_check_and( '$atom'(X), '$atom'(X)).occurs_check_and323,12828 -occurs_check_or((X;_), A) :-occurs_check_or326,12873 -occurs_check_or((X;_), A) :-occurs_check_or326,12873 -occurs_check_or((X;_), A) :-occurs_check_or326,12873 -occurs_check_or((_;Y), A) :-occurs_check_or329,12929 -occurs_check_or((_;Y), A) :-occurs_check_or329,12929 -occurs_check_or((_;Y), A) :-occurs_check_or329,12929 -occurs_check_or( '$atom'(X), '$atom'(X) ).occurs_check_or331,12982 -occurs_check_or( '$atom'(X), '$atom'(X) ).occurs_check_or331,12982 -simplify(Term,Term3,true) :-simplify348,13496 -simplify(Term,Term3,true) :-simplify348,13496 -simplify(Term,Term3,true) :-simplify348,13496 -simplify(Term,Term,false).simplify353,13607 -simplify(Term,Term,false).simplify353,13607 -simplify_intern( (X<=>Y), NewTerm, Result) :-simplify_intern356,13648 -simplify_intern( (X<=>Y), NewTerm, Result) :-simplify_intern356,13648 -simplify_intern( (X<=>Y), NewTerm, Result) :-simplify_intern356,13648 -simplify_intern((\+ X), NewTerm,Result) :-simplify_intern358,13747 -simplify_intern((\+ X), NewTerm,Result) :-simplify_intern358,13747 -simplify_intern((\+ X), NewTerm,Result) :-simplify_intern358,13747 -simplify_intern( (X;Y), NewTerm, Result) :-simplify_intern360,13835 -simplify_intern( (X;Y), NewTerm, Result) :-simplify_intern360,13835 -simplify_intern( (X;Y), NewTerm, Result) :-simplify_intern360,13835 -simplify_intern( (X,Y), NewTerm, Result) :-simplify_intern362,13923 -simplify_intern( (X,Y), NewTerm, Result) :-simplify_intern362,13923 -simplify_intern( (X,Y), NewTerm, Result) :-simplify_intern362,13923 -simplify_intern('$atom'(X),'$atom'(X),false).simplify_intern364,14012 -simplify_intern('$atom'(X),'$atom'(X),false).simplify_intern364,14012 -simplify_intern(true,true,false).simplify_intern365,14058 -simplify_intern(true,true,false).simplify_intern365,14058 -simplify_intern(false,false,false).simplify_intern366,14092 -simplify_intern(false,false,false).simplify_intern366,14092 -simplify_intern_or( true,_,true,true) :-simplify_intern_or370,14143 -simplify_intern_or( true,_,true,true) :-simplify_intern_or370,14143 -simplify_intern_or( true,_,true,true) :-simplify_intern_or370,14143 -simplify_intern_or( false,X,X,true) :-simplify_intern_or372,14188 -simplify_intern_or( false,X,X,true) :-simplify_intern_or372,14188 -simplify_intern_or( false,X,X,true) :-simplify_intern_or372,14188 -simplify_intern_or(_,true,true,true) :-simplify_intern_or374,14231 -simplify_intern_or(_,true,true,true) :-simplify_intern_or374,14231 -simplify_intern_or(_,true,true,true) :-simplify_intern_or374,14231 -simplify_intern_or(X,false,X,true) :-simplify_intern_or376,14275 -simplify_intern_or(X,false,X,true) :-simplify_intern_or376,14275 -simplify_intern_or(X,false,X,true) :-simplify_intern_or376,14275 -simplify_intern_or(X,Y,(X2;Y2),Result) :-simplify_intern_or383,14428 -simplify_intern_or(X,Y,(X2;Y2),Result) :-simplify_intern_or383,14428 -simplify_intern_or(X,Y,(X2;Y2),Result) :-simplify_intern_or383,14428 -simplify_intern_and( true,X,X,true) :-simplify_intern_and389,14580 -simplify_intern_and( true,X,X,true) :-simplify_intern_and389,14580 -simplify_intern_and( true,X,X,true) :-simplify_intern_and389,14580 -simplify_intern_and( false,_,false,true) :-simplify_intern_and391,14623 -simplify_intern_and( false,_,false,true) :-simplify_intern_and391,14623 -simplify_intern_and( false,_,false,true) :-simplify_intern_and391,14623 -simplify_intern_and(X,true,X,true) :-simplify_intern_and393,14671 -simplify_intern_and(X,true,X,true) :-simplify_intern_and393,14671 -simplify_intern_and(X,true,X,true) :-simplify_intern_and393,14671 -simplify_intern_and(_,false,false,true) :-simplify_intern_and395,14713 -simplify_intern_and(_,false,false,true) :-simplify_intern_and395,14713 -simplify_intern_and(_,false,false,true) :-simplify_intern_and395,14713 -simplify_intern_and(X,Y,(X2,Y2),Result) :-simplify_intern_and402,14874 -simplify_intern_and(X,Y,(X2,Y2),Result) :-simplify_intern_and402,14874 -simplify_intern_and(X,Y,(X2,Y2),Result) :-simplify_intern_and402,14874 -simplify_intern_implication(true,Y,Y,true) :-simplify_intern_implication409,15028 -simplify_intern_implication(true,Y,Y,true) :-simplify_intern_implication409,15028 -simplify_intern_implication(true,Y,Y,true) :-simplify_intern_implication409,15028 -simplify_intern_implication(false,Y,(\+ Y),true) :-simplify_intern_implication411,15078 -simplify_intern_implication(false,Y,(\+ Y),true) :-simplify_intern_implication411,15078 -simplify_intern_implication(false,Y,(\+ Y),true) :-simplify_intern_implication411,15078 -simplify_intern_implication(X,true,X,true) :-simplify_intern_implication413,15134 -simplify_intern_implication(X,true,X,true) :-simplify_intern_implication413,15134 -simplify_intern_implication(X,true,X,true) :-simplify_intern_implication413,15134 -simplify_intern_implication(X,false,(\+ X),true) :-simplify_intern_implication415,15184 -simplify_intern_implication(X,false,(\+ X),true) :-simplify_intern_implication415,15184 -simplify_intern_implication(X,false,(\+ X),true) :-simplify_intern_implication415,15184 -simplify_intern_implication(X,Y,(X <=> Y2), Result) :-simplify_intern_implication417,15240 -simplify_intern_implication(X,Y,(X <=> Y2), Result) :-simplify_intern_implication417,15240 -simplify_intern_implication(X,Y,(X <=> Y2), Result) :-simplify_intern_implication417,15240 -simplify_intern_negation(true,false,true).simplify_intern_negation423,15345 -simplify_intern_negation(true,false,true).simplify_intern_negation423,15345 -simplify_intern_negation(false,true,true).simplify_intern_negation424,15388 -simplify_intern_negation(false,true,true).simplify_intern_negation424,15388 -simplify_intern_negation((\+ X),X,true).simplify_intern_negation425,15431 -simplify_intern_negation((\+ X),X,true).simplify_intern_negation425,15431 -simplify_intern_negation((A,B),Term,true) :-simplify_intern_negation426,15472 -simplify_intern_negation((A,B),Term,true) :-simplify_intern_negation426,15472 -simplify_intern_negation((A,B),Term,true) :-simplify_intern_negation426,15472 -simplify_intern_negation((A;B),Term,true) :-simplify_intern_negation428,15564 -simplify_intern_negation((A;B),Term,true) :-simplify_intern_negation428,15564 -simplify_intern_negation((A;B),Term,true) :-simplify_intern_negation428,15564 -simplify_intern_negation('$atom'(X),(\+ '$atom'(X)),false).simplify_intern_negation430,15657 -simplify_intern_negation('$atom'(X),(\+ '$atom'(X)),false).simplify_intern_negation430,15657 -list_to_disjunction([A,B|T],(A;T2)) :-list_to_disjunction437,15915 -list_to_disjunction([A,B|T],(A;T2)) :-list_to_disjunction437,15915 -list_to_disjunction([A,B|T],(A;T2)) :-list_to_disjunction437,15915 -list_to_disjunction([A],A).list_to_disjunction440,15990 -list_to_disjunction([A],A).list_to_disjunction440,15990 -list_to_disjunction([],false).list_to_disjunction441,16018 -list_to_disjunction([],false).list_to_disjunction441,16018 -list_to_conjunction([A,B|T],(A,T2)) :-list_to_conjunction449,16257 -list_to_conjunction([A,B|T],(A,T2)) :-list_to_conjunction449,16257 -list_to_conjunction([A,B|T],(A,T2)) :-list_to_conjunction449,16257 -list_to_conjunction([A],A).list_to_conjunction452,16332 -list_to_conjunction([A],A).list_to_conjunction452,16332 -list_to_conjunction([],true).list_to_conjunction453,16360 -list_to_conjunction([],true).list_to_conjunction453,16360 - -packages/ProbLog/problog/timer.yap,1167 -timer_start(Name) :-timer_start222,10143 -timer_start(Name) :-timer_start222,10143 -timer_start(Name) :-timer_start222,10143 -timer_start_forced(Name) :-timer_start_forced232,10315 -timer_start_forced(Name) :-timer_start_forced232,10315 -timer_start_forced(Name) :-timer_start_forced232,10315 -timer_stop(Name,Duration) :-timer_stop237,10442 -timer_stop(Name,Duration) :-timer_stop237,10442 -timer_stop(Name,Duration) :-timer_stop237,10442 -timer_pause(Name) :-timer_pause246,10641 -timer_pause(Name) :-timer_pause246,10641 -timer_pause(Name) :-timer_pause246,10641 -timer_pause(Name, Duration) :-timer_pause257,10873 -timer_pause(Name, Duration) :-timer_pause257,10873 -timer_pause(Name, Duration) :-timer_pause257,10873 -timer_resume(Name):-timer_resume268,11115 -timer_resume(Name):-timer_resume268,11115 -timer_resume(Name):-timer_resume268,11115 -timer_elapsed(Name,Duration) :-timer_elapsed279,11363 -timer_elapsed(Name,Duration) :-timer_elapsed279,11363 -timer_elapsed(Name,Duration) :-timer_elapsed279,11363 -timer_reset(Name) :-timer_reset289,11560 -timer_reset(Name) :-timer_reset289,11560 -timer_reset(Name) :-timer_reset289,11560 - -packages/ProbLog/problog/utils.yap,3932 -delete_file_silently(File) :-delete_file_silently231,10331 -delete_file_silently(File) :-delete_file_silently231,10331 -delete_file_silently(File) :-delete_file_silently231,10331 -delete_file_silently(_).delete_file_silently234,10400 -delete_file_silently(_).delete_file_silently234,10400 -delete_files_silently([]).delete_files_silently242,10653 -delete_files_silently([]).delete_files_silently242,10653 -delete_files_silently([H|T]) :-delete_files_silently243,10680 -delete_files_silently([H|T]) :-delete_files_silently243,10680 -delete_files_silently([H|T]) :-delete_files_silently243,10680 -delete_file_pattern_silently(Path,Pattern) :-delete_file_pattern_silently255,11093 -delete_file_pattern_silently(Path,Pattern) :-delete_file_pattern_silently255,11093 -delete_file_pattern_silently(Path,Pattern) :-delete_file_pattern_silently255,11093 -slice_n([],_,[],[]) :-slice_n266,11524 -slice_n([],_,[],[]) :-slice_n266,11524 -slice_n([],_,[],[]) :-slice_n266,11524 -slice_n([H|T],N,[H|T2],T3) :-slice_n268,11551 -slice_n([H|T],N,[H|T2],T3) :-slice_n268,11551 -slice_n([H|T],N,[H|T2],T3) :-slice_n268,11551 -slice_n(L,0,[],L).slice_n273,11625 -slice_n(L,0,[],L).slice_n273,11625 -variable_in_term_exactly_once(T,V) :-variable_in_term_exactly_once280,11860 -variable_in_term_exactly_once(T,V) :-variable_in_term_exactly_once280,11860 -variable_in_term_exactly_once(T,V) :-variable_in_term_exactly_once280,11860 -var_memberchk_once([H|T],V) :-var_memberchk_once284,11953 -var_memberchk_once([H|T],V) :-var_memberchk_once284,11953 -var_memberchk_once([H|T],V) :-var_memberchk_once284,11953 -var_memberchk_once([_|T],V) :-var_memberchk_once288,12021 -var_memberchk_once([_|T],V) :-var_memberchk_once288,12021 -var_memberchk_once([_|T],V) :-var_memberchk_once288,12021 -var_memberchk_none([H|T],V) :-var_memberchk_none291,12079 -var_memberchk_none([H|T],V) :-var_memberchk_none291,12079 -var_memberchk_none([H|T],V) :-var_memberchk_none291,12079 -var_memberchk_none([],_).var_memberchk_none294,12144 -var_memberchk_none([],_).var_memberchk_none294,12144 -sorted_overlap_test([H|_],[H|_]) :-sorted_overlap_test303,12468 -sorted_overlap_test([H|_],[H|_]) :-sorted_overlap_test303,12468 -sorted_overlap_test([H|_],[H|_]) :-sorted_overlap_test303,12468 -sorted_overlap_test([H1|T1],[H2|T2]) :-sorted_overlap_test305,12508 -sorted_overlap_test([H1|T1],[H2|T2]) :-sorted_overlap_test305,12508 -sorted_overlap_test([H1|T1],[H2|T2]) :-sorted_overlap_test305,12508 -sorted_overlap_test([_|T1],[H2|T2]) :-sorted_overlap_test309,12597 -sorted_overlap_test([_|T1],[H2|T2]) :-sorted_overlap_test309,12597 -sorted_overlap_test([_|T1],[H2|T2]) :-sorted_overlap_test309,12597 -prefix_bdd_file_with_header(BDD_File_Name,VarCount,IntermediateSteps,TmpFile) :-prefix_bdd_file_with_header321,13141 -prefix_bdd_file_with_header(BDD_File_Name,VarCount,IntermediateSteps,TmpFile) :-prefix_bdd_file_with_header321,13141 -prefix_bdd_file_with_header(BDD_File_Name,VarCount,IntermediateSteps,TmpFile) :-prefix_bdd_file_with_header321,13141 -split_list([],[],[]).split_list352,13978 -split_list([],[],[]).split_list352,13978 -split_list([H|T],L1,L2) :-split_list353,14000 -split_list([H|T],L1,L2) :-split_list353,14000 -split_list([H|T],L1,L2) :-split_list353,14000 -split_list_intern(0,L,[],L).split_list_intern358,14115 -split_list_intern(0,L,[],L).split_list_intern358,14115 -split_list_intern(N,[H|T],[H|T1],L) :-split_list_intern359,14144 -split_list_intern(N,[H|T],[H|T1],L) :-split_list_intern359,14144 -split_list_intern(N,[H|T],[H|T1],L) :-split_list_intern359,14144 -succeeds_n_times(Goal, Times) :- succeeds_n_times369,14447 -succeeds_n_times(Goal, Times) :- succeeds_n_times369,14447 -succeeds_n_times(Goal, Times) :- succeeds_n_times369,14447 -sum_forall(X,Goal, Sum) :- sum_forall385,14784 -sum_forall(X,Goal, Sum) :- sum_forall385,14784 -sum_forall(X,Goal, Sum) :- sum_forall385,14784 - -packages/ProbLog/problog/utils_lbdd.yap,204 -create_bdd_nb(QueryID,ClusterID,NB_Name) :-create_bdd_nb233,10357 -create_bdd_nb(QueryID,ClusterID,NB_Name) :-create_bdd_nb233,10357 -create_bdd_nb(QueryID,ClusterID,NB_Name) :-create_bdd_nb233,10357 - -packages/ProbLog/problog/utils_learning.yap,4331 -empty_bdd_directory :-empty_bdd_directory229,10247 -empty_bdd_directory :-empty_bdd_directory233,10355 -empty_output_directory :-empty_output_directory242,10596 -empty_output_directory :-empty_output_directory256,11016 -create_known_values_file_name(QueryID,Absolute_File_Name) :-create_known_values_file_name265,11263 -create_known_values_file_name(QueryID,Absolute_File_Name) :-create_known_values_file_name265,11263 -create_known_values_file_name(QueryID,Absolute_File_Name) :-create_known_values_file_name265,11263 -create_known_values_file_name(_,_) :-create_known_values_file_name271,11489 -create_known_values_file_name(_,_) :-create_known_values_file_name271,11489 -create_known_values_file_name(_,_) :-create_known_values_file_name271,11489 -create_bdd_nb_name(QueryID,ClusterID,NB_Name) :-create_bdd_nb_name280,11745 -create_bdd_nb_name(QueryID,ClusterID,NB_Name) :-create_bdd_nb_name280,11745 -create_bdd_nb_name(QueryID,ClusterID,NB_Name) :-create_bdd_nb_name280,11745 -create_bdd_output_file_name(QueryID,ClusterID,Iteration,Absolute_File_Name) :-create_bdd_output_file_name288,12018 -create_bdd_output_file_name(QueryID,ClusterID,Iteration,Absolute_File_Name) :-create_bdd_output_file_name288,12018 -create_bdd_output_file_name(QueryID,ClusterID,Iteration,Absolute_File_Name) :-create_bdd_output_file_name288,12018 -create_bdd_output_file_name(_,_,_,_) :-create_bdd_output_file_name294,12292 -create_bdd_output_file_name(_,_,_,_) :-create_bdd_output_file_name294,12292 -create_bdd_output_file_name(_,_,_,_) :-create_bdd_output_file_name294,12292 -create_bdd_file_name(QueryID,ClusterID,Absolute_File_Name) :-create_bdd_file_name303,12617 -create_bdd_file_name(QueryID,ClusterID,Absolute_File_Name) :-create_bdd_file_name303,12617 -create_bdd_file_name(QueryID,ClusterID,Absolute_File_Name) :-create_bdd_file_name303,12617 -create_bdd_output_file_name(_,_,_) :-create_bdd_output_file_name309,12883 -create_bdd_output_file_name(_,_,_) :-create_bdd_output_file_name309,12883 -create_bdd_output_file_name(_,_,_) :-create_bdd_output_file_name309,12883 -create_bdd_input_file_name(Iteration,Absolute_File_Name) :-create_bdd_input_file_name316,13147 -create_bdd_input_file_name(Iteration,Absolute_File_Name) :-create_bdd_input_file_name316,13147 -create_bdd_input_file_name(Iteration,Absolute_File_Name) :-create_bdd_input_file_name316,13147 -create_bdd_input_file_name(_,_) :-create_bdd_input_file_name322,13368 -create_bdd_input_file_name(_,_) :-create_bdd_input_file_name322,13368 -create_bdd_input_file_name(_,_) :-create_bdd_input_file_name322,13368 -create_factprobs_file_name(Iteration,Absolute_File_Name) :-create_factprobs_file_name330,13623 -create_factprobs_file_name(Iteration,Absolute_File_Name) :-create_factprobs_file_name330,13623 -create_factprobs_file_name(Iteration,Absolute_File_Name) :-create_factprobs_file_name330,13623 -create_factprobs_file_name(_,_) :-create_factprobs_file_name336,13847 -create_factprobs_file_name(_,_) :-create_factprobs_file_name336,13847 -create_factprobs_file_name(_,_) :-create_factprobs_file_name336,13847 -create_test_predictions_file_name(Iteration,Absolute_File_Name) :-create_test_predictions_file_name345,14103 -create_test_predictions_file_name(Iteration,Absolute_File_Name) :-create_test_predictions_file_name345,14103 -create_test_predictions_file_name(Iteration,Absolute_File_Name) :-create_test_predictions_file_name345,14103 -create_test_predictions_file_name(_,_) :-create_test_predictions_file_name351,14341 -create_test_predictions_file_name(_,_) :-create_test_predictions_file_name351,14341 -create_test_predictions_file_name(_,_) :-create_test_predictions_file_name351,14341 -create_training_predictions_file_name(Iteration,Absolute_File_Name) :-create_training_predictions_file_name359,14603 -create_training_predictions_file_name(Iteration,Absolute_File_Name) :-create_training_predictions_file_name359,14603 -create_training_predictions_file_name(Iteration,Absolute_File_Name) :-create_training_predictions_file_name359,14603 -create_training_predictions_file_name(_,_) :-create_training_predictions_file_name365,14849 -create_training_predictions_file_name(_,_) :-create_training_predictions_file_name365,14849 -create_training_predictions_file_name(_,_) :-create_training_predictions_file_name365,14849 - -packages/ProbLog/problog/variable_elimination.yap,8554 -bit_encode(L, ON):-bit_encode220,10301 -bit_encode(L, ON):-bit_encode220,10301 -bit_encode(L, ON):-bit_encode220,10301 -bit_encode([], ON, ON):-!.bit_encode223,10346 -bit_encode([], ON, ON):-!.bit_encode223,10346 -bit_encode([], ON, ON):-!.bit_encode223,10346 -bit_encode([PF|T], ON, Acc):-bit_encode224,10373 -bit_encode([PF|T], ON, Acc):-bit_encode224,10373 -bit_encode([PF|T], ON, Acc):-bit_encode224,10373 -bit_decode(ON, L):-bit_decode237,10685 -bit_decode(ON, L):-bit_decode237,10685 -bit_decode(ON, L):-bit_decode237,10685 -bit_decode(_, ID, []):-bit_decode240,10730 -bit_decode(_, ID, []):-bit_decode240,10730 -bit_decode(_, ID, []):-bit_decode240,10730 -bit_decode(ON, ID, [PF|L]):-bit_decode242,10791 -bit_decode(ON, ID, [PF|L]):-bit_decode242,10791 -bit_decode(ON, ID, [PF|L]):-bit_decode242,10791 -bit_decode(ON, ID, L):-bit_decode247,10942 -bit_decode(ON, ID, L):-bit_decode247,10942 -bit_decode(ON, ID, L):-bit_decode247,10942 -update_table(T, ON, NT):-update_table251,11010 -update_table(T, ON, NT):-update_table251,11010 -update_table(T, ON, NT):-update_table251,11010 -update_table([], _ON, [], _).update_table254,11067 -update_table([], _ON, [], _).update_table254,11067 -update_table([H|T], ON, [NH|NT], Row):-update_table255,11097 -update_table([H|T], ON, [NH|NT], Row):-update_table255,11097 -update_table([H|T], ON, [NH|NT], Row):-update_table255,11097 -update_table([H|T], ON, [NH|NT], Row):-update_table260,11291 -update_table([H|T], ON, [NH|NT], Row):-update_table260,11291 -update_table([H|T], ON, [NH|NT], Row):-update_table260,11291 -make_mask(FromBit, ToBit, Mask):-make_mask265,11401 -make_mask(FromBit, ToBit, Mask):-make_mask265,11401 -make_mask(FromBit, ToBit, Mask):-make_mask265,11401 -make_table(_, 0, []):-!.make_table268,11491 -make_table(_, 0, []):-!.make_table268,11491 -make_table(_, 0, []):-!.make_table268,11491 -make_table(ON, T, [ON|L]):-make_table269,11516 -make_table(ON, T, [ON|L]):-make_table269,11516 -make_table(ON, T, [ON|L]):-make_table269,11516 -modify_table(L, OT, NT):-modify_table273,11585 -modify_table(L, OT, NT):-modify_table273,11585 -modify_table(L, OT, NT):-modify_table273,11585 -examin(T):-examin284,11841 -examin(T):-examin284,11841 -examin(T):-examin284,11841 -examin([], _Row).examin286,11869 -examin([], _Row).examin286,11869 -examin([H|T], Row):-examin287,11887 -examin([H|T], Row):-examin287,11887 -examin([H|T], Row):-examin287,11887 -examin([_H|T], Row):-examin297,12135 -examin([_H|T], Row):-examin297,12135 -examin([_H|T], Row):-examin297,12135 -trie_check_for_and_cluster(T):-trie_check_for_and_cluster302,12197 -trie_check_for_and_cluster(T):-trie_check_for_and_cluster302,12197 -trie_check_for_and_cluster(T):-trie_check_for_and_cluster302,12197 -trie_check_for_and_cluster(_T).trie_check_for_and_cluster305,12304 -trie_check_for_and_cluster(_T).trie_check_for_and_cluster305,12304 -trie_check_for_and_cluster(E, T):-trie_check_for_and_cluster307,12337 -trie_check_for_and_cluster(E, T):-trie_check_for_and_cluster307,12337 -trie_check_for_and_cluster(E, T):-trie_check_for_and_cluster307,12337 -trie_check_for_and_cluster(E, T):-trie_check_for_and_cluster312,12502 -trie_check_for_and_cluster(E, T):-trie_check_for_and_cluster312,12502 -trie_check_for_and_cluster(E, T):-trie_check_for_and_cluster312,12502 -trie_replace_and_cluster(To, Tn):-trie_replace_and_cluster317,12611 -trie_replace_and_cluster(To, Tn):-trie_replace_and_cluster317,12611 -trie_replace_and_cluster(To, Tn):-trie_replace_and_cluster317,12611 -trie_replace_and_cluster_do(To, Tn):-trie_replace_and_cluster_do320,12708 -trie_replace_and_cluster_do(To, Tn):-trie_replace_and_cluster_do320,12708 -trie_replace_and_cluster_do(To, Tn):-trie_replace_and_cluster_do320,12708 -trie_replace_and_cluster_do(_To, _Tn).trie_replace_and_cluster_do327,12967 -trie_replace_and_cluster_do(_To, _Tn).trie_replace_and_cluster_do327,12967 -foreach([], L, L).foreach329,13007 -foreach([], L, L).foreach329,13007 -foreach([Cluster/VarName|Rest], L, Acc):-foreach330,13026 -foreach([Cluster/VarName|Rest], L, Acc):-foreach330,13026 -foreach([Cluster/VarName|Rest], L, Acc):-foreach330,13026 -check_replace_cluster(Cluster, _VarName, L, L):-check_replace_cluster334,13145 -check_replace_cluster(Cluster, _VarName, L, L):-check_replace_cluster334,13145 -check_replace_cluster(Cluster, _VarName, L, L):-check_replace_cluster334,13145 -check_replace_cluster(Cluster, VarName, L, NewL):-check_replace_cluster336,13222 -check_replace_cluster(Cluster, VarName, L, NewL):-check_replace_cluster336,13222 -check_replace_cluster(Cluster, VarName, L, NewL):-check_replace_cluster336,13222 -replace_cluster(Cluster, VarName, L, Res):-replace_cluster339,13320 -replace_cluster(Cluster, VarName, L, Res):-replace_cluster339,13320 -replace_cluster(Cluster, VarName, L, Res):-replace_cluster339,13320 -replace_cluster(Cluster, VarName, _L, _Res):-replace_cluster345,13526 -replace_cluster(Cluster, VarName, _L, _Res):-replace_cluster345,13526 -replace_cluster(Cluster, VarName, _L, _Res):-replace_cluster345,13526 -replace_cluster2(Cluster, VarName, L, Res):-replace_cluster2348,13607 -replace_cluster2(Cluster, VarName, L, Res):-replace_cluster2348,13607 -replace_cluster2(Cluster, VarName, L, Res):-replace_cluster2348,13607 -replace_cluster2(Cluster, VarName, _L, _Res):-replace_cluster2352,13721 -replace_cluster2(Cluster, VarName, _L, _Res):-replace_cluster2352,13721 -replace_cluster2(Cluster, VarName, _L, _Res):-replace_cluster2352,13721 -replace_cluster3(Cluster, VarName, L, Res):-replace_cluster3355,13803 -replace_cluster3(Cluster, VarName, L, Res):-replace_cluster3355,13803 -replace_cluster3(Cluster, VarName, L, Res):-replace_cluster3355,13803 -replace_cluster3(Cluster, VarName, _L, _Res):-replace_cluster3361,14006 -replace_cluster3(Cluster, VarName, _L, _Res):-replace_cluster3361,14006 -replace_cluster3(Cluster, VarName, _L, _Res):-replace_cluster3361,14006 -first_cluster_element([], _, _).first_cluster_element364,14088 -first_cluster_element([], _, _).first_cluster_element364,14088 -first_cluster_element([H|_T], Cluster, H):-first_cluster_element365,14121 -first_cluster_element([H|_T], Cluster, H):-first_cluster_element365,14121 -first_cluster_element([H|_T], Cluster, H):-first_cluster_element365,14121 -first_cluster_element([_H|T], Cluster, R):-first_cluster_element367,14193 -first_cluster_element([_H|T], Cluster, R):-first_cluster_element367,14193 -first_cluster_element([_H|T], Cluster, R):-first_cluster_element367,14193 -last_cluster_element(L, Cluster, R):-last_cluster_element370,14278 -last_cluster_element(L, Cluster, R):-last_cluster_element370,14278 -last_cluster_element(L, Cluster, R):-last_cluster_element370,14278 -nocluster([], _).nocluster374,14376 -nocluster([], _).nocluster374,14376 -nocluster([H|T], L):-nocluster375,14394 -nocluster([H|T], L):-nocluster375,14394 -nocluster([H|T], L):-nocluster375,14394 -eliminate_list([], L, L).eliminate_list379,14458 -eliminate_list([], L, L).eliminate_list379,14458 -eliminate_list([H|T], L, Res):-eliminate_list380,14484 -eliminate_list([H|T], L, Res):-eliminate_list380,14484 -eliminate_list([H|T], L, Res):-eliminate_list380,14484 -replace([], _, _, []).replace385,14586 -replace([], _, _, []).replace385,14586 -replace([H|T], H, NH, [NH|NT]):-replace386,14609 -replace([H|T], H, NH, [NH|NT]):-replace386,14609 -replace([H|T], H, NH, [NH|NT]):-replace386,14609 -replace([H|T], R, NR, [H|NT]):-replace388,14667 -replace([H|T], R, NR, [H|NT]):-replace388,14667 -replace([H|T], R, NR, [H|NT]):-replace388,14667 -clean_up:-clean_up392,14736 -variable_elimination_stats(Clusters, OrigPF, CompPF):-variable_elimination_stats396,14815 -variable_elimination_stats(Clusters, OrigPF, CompPF):-variable_elimination_stats396,14815 -variable_elimination_stats(Clusters, OrigPF, CompPF):-variable_elimination_stats396,14815 -calc_prob_AND_cluster(L, P):-calc_prob_AND_cluster403,15109 -calc_prob_AND_cluster(L, P):-calc_prob_AND_cluster403,15109 -calc_prob_AND_cluster(L, P):-calc_prob_AND_cluster403,15109 -multiply_list([], P, P).multiply_list405,15167 -multiply_list([], P, P).multiply_list405,15167 -multiply_list([H|T], Pr, A):-multiply_list406,15192 -multiply_list([H|T], Pr, A):-multiply_list406,15192 -multiply_list([H|T], Pr, A):-multiply_list406,15192 -make_prob_fact(L, P, ID):-make_prob_fact412,15317 -make_prob_fact(L, P, ID):-make_prob_fact412,15317 -make_prob_fact(L, P, ID):-make_prob_fact412,15317 - -packages/ProbLog/problog/variables.yap,5460 -problog_var_set(Variable, Value):-problog_var_set239,11076 -problog_var_set(Variable, Value):-problog_var_set239,11076 -problog_var_set(Variable, Value):-problog_var_set239,11076 -problog_var_set_once(Variable, Value):-problog_var_set_once248,11306 -problog_var_set_once(Variable, Value):-problog_var_set_once248,11306 -problog_var_set_once(Variable, Value):-problog_var_set_once248,11306 -problog_var_get(Variable, Value):-problog_var_get256,11599 -problog_var_get(Variable, Value):-problog_var_get256,11599 -problog_var_get(Variable, Value):-problog_var_get256,11599 -problog_var_is_set(Variable):-problog_var_is_set263,11807 -problog_var_is_set(Variable):-problog_var_is_set263,11807 -problog_var_is_set(Variable):-problog_var_is_set263,11807 -problog_var_defined(Variable):-problog_var_defined267,11922 -problog_var_defined(Variable):-problog_var_defined267,11922 -problog_var_defined(Variable):-problog_var_defined267,11922 -problog_var_defined(Variable, Group, Type, Messages):-problog_var_defined269,12013 -problog_var_defined(Variable, Group, Type, Messages):-problog_var_defined269,12013 -problog_var_defined(Variable, Group, Type, Messages):-problog_var_defined269,12013 -problog_var_defined(Variable, default, untyped, messages(Variable, ':', '')):-problog_var_defined271,12147 -problog_var_defined(Variable, default, untyped, messages(Variable, ':', '')):-problog_var_defined271,12147 -problog_var_defined(Variable, default, untyped, messages(Variable, ':', '')):-problog_var_defined271,12147 -problog_var_define(Variable, Group, Type):-problog_var_define275,12372 -problog_var_define(Variable, Group, Type):-problog_var_define275,12372 -problog_var_define(Variable, Group, Type):-problog_var_define275,12372 -problog_var_define(Variable, Group, Type, Messages):-problog_var_define277,12490 -problog_var_define(Variable, Group, Type, Messages):-problog_var_define277,12490 -problog_var_define(Variable, Group, Type, Messages):-problog_var_define277,12490 -problog_var_define(Variable, Group, Type, Messages):-problog_var_define280,12722 -problog_var_define(Variable, Group, Type, Messages):-problog_var_define280,12722 -problog_var_define(Variable, Group, Type, Messages):-problog_var_define280,12722 -problog_var_clear(Variable):-problog_var_clear288,12976 -problog_var_clear(Variable):-problog_var_clear288,12976 -problog_var_clear(Variable):-problog_var_clear288,12976 -problog_var_clear_all:-problog_var_clear_all291,13077 -problog_var_group(Group):-problog_var_group297,13197 -problog_var_group(Group):-problog_var_group297,13197 -problog_var_group(Group):-problog_var_group297,13197 -problog_var_group(default).problog_var_group299,13272 -problog_var_group(default).problog_var_group299,13272 -problog_timer_start(Name) :-problog_timer_start311,13618 -problog_timer_start(Name) :-problog_timer_start311,13618 -problog_timer_start(Name) :-problog_timer_start311,13618 -problog_timer_stop(Name, Duration) :-problog_timer_stop318,13867 -problog_timer_stop(Name, Duration) :-problog_timer_stop318,13867 -problog_timer_stop(Name, Duration) :-problog_timer_stop318,13867 -problog_timer_stop(Name, Duration) :-problog_timer_stop323,14053 -problog_timer_stop(Name, Duration) :-problog_timer_stop323,14053 -problog_timer_stop(Name, Duration) :-problog_timer_stop323,14053 -problog_timer_pause(Name) :-problog_timer_pause330,14254 -problog_timer_pause(Name) :-problog_timer_pause330,14254 -problog_timer_pause(Name) :-problog_timer_pause330,14254 -problog_timer_pause(Name, Duration) :-problog_timer_pause340,14571 -problog_timer_pause(Name, Duration) :-problog_timer_pause340,14571 -problog_timer_pause(Name, Duration) :-problog_timer_pause340,14571 -problog_timer_resume(Name):-problog_timer_resume350,14898 -problog_timer_resume(Name):-problog_timer_resume350,14898 -problog_timer_resume(Name):-problog_timer_resume350,14898 -problog_var_timer_start(Variable):-problog_var_timer_start362,15292 -problog_var_timer_start(Variable):-problog_var_timer_start362,15292 -problog_var_timer_start(Variable):-problog_var_timer_start362,15292 -problog_var_timer_resume(Variable):-problog_var_timer_resume364,15361 -problog_var_timer_resume(Variable):-problog_var_timer_resume364,15361 -problog_var_timer_resume(Variable):-problog_var_timer_resume364,15361 -problog_var_timer_pause(Variable):-problog_var_timer_pause366,15432 -problog_var_timer_pause(Variable):-problog_var_timer_pause366,15432 -problog_var_timer_pause(Variable):-problog_var_timer_pause366,15432 -problog_var_timer_stop(Variable):-problog_var_timer_stop369,15550 -problog_var_timer_stop(Variable):-problog_var_timer_stop369,15550 -problog_var_timer_stop(Variable):-problog_var_timer_stop369,15550 -problog_var_timer_timeout(Variable):-problog_var_timer_timeout372,15666 -problog_var_timer_timeout(Variable):-problog_var_timer_timeout372,15666 -problog_var_timer_timeout(Variable):-problog_var_timer_timeout372,15666 -problog_var_time_out(M:Goal, TimeOut, Success, Variable):-problog_var_time_out385,16078 -problog_var_time_out(M:Goal, TimeOut, Success, Variable):-problog_var_time_out385,16078 -problog_var_time_out(M:Goal, TimeOut, Success, Variable):-problog_var_time_out385,16078 -problog_time_out(M:Goal, TimeOut, Success, Time):-problog_time_out388,16224 -problog_time_out(M:Goal, TimeOut, Success, Time):-problog_time_out388,16224 -problog_time_out(M:Goal, TimeOut, Success, Time):-problog_time_out388,16224 - -packages/ProbLog/problog/version_control.yap,471 -get_version(FilePath, Version, Revision):-get_version216,9999 -get_version(FilePath, Version, Revision):-get_version216,9999 -get_version(FilePath, Version, Revision):-get_version216,9999 -get_line(Stream, Line):-get_line232,10471 -get_line(Stream, Line):-get_line232,10471 -get_line(Stream, Line):-get_line232,10471 -get_line(Stream, Line, Acc):-get_line235,10551 -get_line(Stream, Line, Acc):-get_line235,10551 -get_line(Stream, Line, Acc):-get_line235,10551 - -packages/ProbLog/problog.tex,503 -\section{Introduction}Introduction18,193 -\section{Installing ProbLog}Installing ProbLog22,400 -\subsection{Requirements}Requirements24,430 -\subsection{Download}Download32,703 -\subsection{Compiling YAP Prolog}Compiling YAP Prolog45,1193 -\subsection{Compiling ProbLog}Compiling ProbLog72,2042 -\section{Running ProbLog}Running ProbLog84,2479 -\section{Loading the ProbLog modules}Loading the ProbLog modules88,2652 -\section{Encoding Probabilistic Facts}Encoding Probabilistic Facts102,3214 - -packages/ProbLog/problog.yap,58220 -t(0.5)::heads(_).t288,12901 -t(0.5)::heads(_).t288,12901 -:- dynamic optimal_proof/2.dynamic889,33374 -:- dynamic optimal_proof/2.dynamic889,33374 -:- dynamic current_prob/1.dynamic890,33402 -:- dynamic current_prob/1.dynamic890,33402 -:- dynamic possible_proof/2.dynamic891,33429 -:- dynamic possible_proof/2.dynamic891,33429 -:- dynamic impossible_proof/1.dynamic892,33458 -:- dynamic impossible_proof/1.dynamic892,33458 -:- table conditional_prob/4.table894,33490 -:- table conditional_prob/4.table894,33490 -problog_dir(PD):- problog_path(PD).problog_dir1014,38480 -problog_dir(PD):- problog_path(PD).problog_dir1014,38480 -problog_dir(PD):- problog_path(PD).problog_dir1014,38480 -problog_dir(PD):- problog_path(PD).problog_dir1014,38480 -problog_dir(PD):- problog_path(PD).problog_dir1014,38480 -init_global_params :-init_global_params1020,38606 -problog_control(on,X) :-problog_control1057,40926 -problog_control(on,X) :-problog_control1057,40926 -problog_control(on,X) :-problog_control1057,40926 -problog_control(on,X) :-problog_control1059,40963 -problog_control(on,X) :-problog_control1059,40963 -problog_control(on,X) :-problog_control1059,40963 -problog_control(off,X) :-problog_control1061,41001 -problog_control(off,X) :-problog_control1061,41001 -problog_control(off,X) :-problog_control1061,41001 -problog_control(check,X) :-problog_control1063,41043 -problog_control(check,X) :-problog_control1063,41043 -problog_control(check,X) :-problog_control1063,41043 -reset_control :-reset_control1066,41082 -grow_atom_table(N):-grow_atom_table1076,41313 -grow_atom_table(N):-grow_atom_table1076,41313 -grow_atom_table(N):-grow_atom_table1076,41313 -generate_atoms(N, N):-!.generate_atoms1079,41381 -generate_atoms(N, N):-!.generate_atoms1079,41381 -generate_atoms(N, N):-!.generate_atoms1079,41381 -generate_atoms(N, A):-generate_atoms1080,41406 -generate_atoms(N, A):-generate_atoms1080,41406 -generate_atoms(N, A):-generate_atoms1080,41406 -term_expansion_intern((Head<--Body), Module, C):-term_expansion_intern1107,42453 -term_expansion_intern((Head<--Body), Module, C):-term_expansion_intern1107,42453 -term_expansion_intern((Head<--Body), Module, C):-term_expansion_intern1107,42453 -term_expansion_intern((Annotation::Fact), Module, ExpandedClause) :-term_expansion_intern1110,42630 -term_expansion_intern((Annotation::Fact), Module, ExpandedClause) :-term_expansion_intern1110,42630 -term_expansion_intern((Annotation::Fact), Module, ExpandedClause) :-term_expansion_intern1110,42630 -term_expansion_intern((Annotation::Head; Alternatives), Module, C):-term_expansion_intern1113,42794 -term_expansion_intern((Annotation::Head; Alternatives), Module, C):-term_expansion_intern1113,42794 -term_expansion_intern((Annotation::Head; Alternatives), Module, C):-term_expansion_intern1113,42794 -term_expansion_intern((Annotation :: Head :- Body), Module, problog:ExpandedClause) :-term_expansion_intern1119,43026 -term_expansion_intern((Annotation :: Head :- Body), Module, problog:ExpandedClause) :-term_expansion_intern1119,43026 -term_expansion_intern((Annotation :: Head :- Body), Module, problog:ExpandedClause) :-term_expansion_intern1119,43026 -term_expansion_intern(Head :: Goal,Module,problog:ProbFact) :-term_expansion_intern1166,44401 -term_expansion_intern(Head :: Goal,Module,problog:ProbFact) :-term_expansion_intern1166,44401 -term_expansion_intern(Head :: Goal,Module,problog:ProbFact) :-term_expansion_intern1166,44401 -term_expansion_intern(P :: Goal,Module,problog:ProbFact) :-term_expansion_intern1227,45457 -term_expansion_intern(P :: Goal,Module,problog:ProbFact) :-term_expansion_intern1227,45457 -term_expansion_intern(P :: Goal,Module,problog:ProbFact) :-term_expansion_intern1227,45457 -sample_initial_value_for_tunable_fact(Goal,LogP) :-sample_initial_value_for_tunable_fact1275,46761 -sample_initial_value_for_tunable_fact(Goal,LogP) :-sample_initial_value_for_tunable_fact1275,46761 -sample_initial_value_for_tunable_fact(Goal,LogP) :-sample_initial_value_for_tunable_fact1275,46761 -is_alternatives( Var ) :-is_alternatives1309,47289 -is_alternatives( Var ) :-is_alternatives1309,47289 -is_alternatives( Var ) :-is_alternatives1309,47289 -is_alternatives( _Prob::_Alt ).is_alternatives1313,47339 -is_alternatives( _Prob::_Alt ).is_alternatives1313,47339 -is_alternatives( ( A1 ; As ) ) :-is_alternatives1314,47371 -is_alternatives( ( A1 ; As ) ) :-is_alternatives1314,47371 -is_alternatives( ( A1 ; As ) ) :-is_alternatives1314,47371 -problog_continuous_predicate(Name, Arity,ContinuousArgumentPosition,_,_) :-problog_continuous_predicate1323,47515 -problog_continuous_predicate(Name, Arity,ContinuousArgumentPosition,_,_) :-problog_continuous_predicate1323,47515 -problog_continuous_predicate(Name, Arity,ContinuousArgumentPosition,_,_) :-problog_continuous_predicate1323,47515 -problog_continuous_predicate(Name, Arity, ContinuousArgumentPosition, ProblogName,Module) :-problog_continuous_predicate1339,48261 -problog_continuous_predicate(Name, Arity, ContinuousArgumentPosition, ProblogName,Module) :-problog_continuous_predicate1339,48261 -problog_continuous_predicate(Name, Arity, ContinuousArgumentPosition, ProblogName,Module) :-problog_continuous_predicate1339,48261 -in_interval(ID,Low,High) :-in_interval1370,49424 -in_interval(ID,Low,High) :-in_interval1370,49424 -in_interval(ID,Low,High) :-in_interval1370,49424 -in_interval(ID,Low,High) :-in_interval1373,49523 -in_interval(ID,Low,High) :-in_interval1373,49523 -in_interval(ID,Low,High) :-in_interval1373,49523 -in_interval(ID,Low,High) :-in_interval1376,49623 -in_interval(ID,Low,High) :-in_interval1376,49623 -in_interval(ID,Low,High) :-in_interval1376,49623 -in_interval(ID,Low,High) :-in_interval1379,49724 -in_interval(ID,Low,High) :-in_interval1379,49724 -in_interval(ID,Low,High) :-in_interval1379,49724 -in_interval(ID,Low,High) :-in_interval1382,49833 -in_interval(ID,Low,High) :-in_interval1382,49833 -in_interval(ID,Low,High) :-in_interval1382,49833 -in_interval(ID,Low,High) :-in_interval1385,49944 -in_interval(ID,Low,High) :-in_interval1385,49944 -in_interval(ID,Low,High) :-in_interval1385,49944 -below(ID,X) :-below1390,50025 -below(ID,X) :-below1390,50025 -below(ID,X) :-below1390,50025 -below(ID,X) :-below1393,50098 -below(ID,X) :-below1393,50098 -below(ID,X) :-below1393,50098 -below(ID,X) :-below1396,50170 -below(ID,X) :-below1396,50170 -below(ID,X) :-below1396,50170 -below(ID,X) :-below1399,50249 -below(ID,X) :-below1399,50249 -below(ID,X) :-below1399,50249 -above(ID,X) :-above1402,50295 -above(ID,X) :-above1402,50295 -above(ID,X) :-above1402,50295 -above(ID,X) :-above1405,50368 -above(ID,X) :-above1405,50368 -above(ID,X) :-above1405,50368 -above(ID,X) :-above1408,50440 -above(ID,X) :-above1408,50440 -above(ID,X) :-above1408,50440 -above(ID,X) :-above1411,50519 -above(ID,X) :-above1411,50519 -above(ID,X) :-above1411,50519 -interval_merge((_ID,GroundID,_Type),Interval) :-interval_merge1415,50566 -interval_merge((_ID,GroundID,_Type),Interval) :-interval_merge1415,50566 -interval_merge((_ID,GroundID,_Type),Interval) :-interval_merge1415,50566 -problog_assert(P::Goal) :-problog_assert1428,50995 -problog_assert(P::Goal) :-problog_assert1428,50995 -problog_assert(P::Goal) :-problog_assert1428,50995 -problog_assert(Module, P::Goal) :-problog_assert1430,51053 -problog_assert(Module, P::Goal) :-problog_assert1430,51053 -problog_assert(Module, P::Goal) :-problog_assert1430,51053 -problog_retractall(Goal) :-problog_retractall1434,51174 -problog_retractall(Goal) :-problog_retractall1434,51174 -problog_retractall(Goal) :-problog_retractall1434,51174 -problog_predicate(Name, Arity, _,_) :-problog_predicate1447,51536 -problog_predicate(Name, Arity, _,_) :-problog_predicate1447,51536 -problog_predicate(Name, Arity, _,_) :-problog_predicate1447,51536 -problog_predicate(Name, Arity, ProblogName,Mod) :-problog_predicate1450,51612 -problog_predicate(Name, Arity, ProblogName,Mod) :-problog_predicate1450,51612 -problog_predicate(Name, Arity, ProblogName,Mod) :-problog_predicate1450,51612 -user:problog_user_ground(Goal) :-problog_user_ground1476,52478 -user:problog_user_ground(Goal) :-problog_user_ground1476,52478 -non_ground_fact_grounding_id(Goal,ID) :-non_ground_fact_grounding_id1479,52529 -non_ground_fact_grounding_id(Goal,ID) :-non_ground_fact_grounding_id1479,52529 -non_ground_fact_grounding_id(Goal,ID) :-non_ground_fact_grounding_id1479,52529 -non_ground_fact_grounding_id(Goal,_) :-non_ground_fact_grounding_id1491,52832 -non_ground_fact_grounding_id(Goal,_) :-non_ground_fact_grounding_id1491,52832 -non_ground_fact_grounding_id(Goal,_) :-non_ground_fact_grounding_id1491,52832 -reset_non_ground_facts :-reset_non_ground_facts1497,53187 -reset_non_ground_facts :-reset_non_ground_facts1500,53245 -grounding_id(ID,Goal,ID2) :-grounding_id1510,53574 -grounding_id(ID,Goal,ID2) :-grounding_id1510,53574 -grounding_id(ID,Goal,ID2) :-grounding_id1510,53574 -prove_problog_fact(ClauseID,GroundID,Prob) :-prove_problog_fact1522,53927 -prove_problog_fact(ClauseID,GroundID,Prob) :-prove_problog_fact1522,53927 -prove_problog_fact(ClauseID,GroundID,Prob) :-prove_problog_fact1522,53927 -prove_problog_fact_negated(ClauseID,GroundID,Prob) :-prove_problog_fact_negated1546,54503 -prove_problog_fact_negated(ClauseID,GroundID,Prob) :-prove_problog_fact_negated1546,54503 -prove_problog_fact_negated(ClauseID,GroundID,Prob) :-prove_problog_fact_negated1546,54503 -probclause_id(ID) :-probclause_id1573,55228 -probclause_id(ID) :-probclause_id1573,55228 -probclause_id(ID) :-probclause_id1573,55228 -probabilistic_fact(Prob,Goal,ID) :-probabilistic_fact1589,55583 -probabilistic_fact(Prob,Goal,ID) :-probabilistic_fact1589,55583 -probabilistic_fact(Prob,Goal,ID) :-probabilistic_fact1589,55583 -probabilistic_fact(Prob,Goal,ID) :-probabilistic_fact1601,55836 -probabilistic_fact(Prob,Goal,ID) :-probabilistic_fact1601,55836 -probabilistic_fact(Prob,Goal,ID) :-probabilistic_fact1601,55836 -continuous_fact((V,Distribution),Goal,ID) :-continuous_fact1615,56153 -continuous_fact((V,Distribution),Goal,ID) :-continuous_fact1615,56153 -continuous_fact((V,Distribution),Goal,ID) :-continuous_fact1615,56153 -proof_id(ID) :-proof_id1636,56858 -proof_id(ID) :-proof_id1636,56858 -proof_id(ID) :-proof_id1636,56858 -reset_proof_id :-reset_proof_id1641,56956 -prob_for_id(dummy,dummy,dummy).prob_for_id1652,57557 -prob_for_id(dummy,dummy,dummy).prob_for_id1652,57557 -get_fact_probability(A, Prob) :-get_fact_probability1654,57590 -get_fact_probability(A, Prob) :-get_fact_probability1654,57590 -get_fact_probability(A, Prob) :-get_fact_probability1654,57590 -get_fact_probability(ID,Prob) :-get_fact_probability1672,58055 -get_fact_probability(ID,Prob) :-get_fact_probability1672,58055 -get_fact_probability(ID,Prob) :-get_fact_probability1672,58055 -get_fact_probability(ID,Prob) :-get_fact_probability1676,58133 -get_fact_probability(ID,Prob) :-get_fact_probability1676,58133 -get_fact_probability(ID,Prob) :-get_fact_probability1676,58133 -get_fact_log_probability(ID,Prob) :-get_fact_log_probability1692,58528 -get_fact_log_probability(ID,Prob) :-get_fact_log_probability1692,58528 -get_fact_log_probability(ID,Prob) :-get_fact_log_probability1692,58528 -get_fact_log_probability(ID,Prob) :-get_fact_log_probability1695,58605 -get_fact_log_probability(ID,Prob) :-get_fact_log_probability1695,58605 -get_fact_log_probability(ID,Prob) :-get_fact_log_probability1695,58605 -get_fact_log_probability(ID,Prob) :-get_fact_log_probability1704,58857 -get_fact_log_probability(ID,Prob) :-get_fact_log_probability1704,58857 -get_fact_log_probability(ID,Prob) :-get_fact_log_probability1704,58857 -set_fact_probability(ID,Prob) :-set_fact_probability1708,58949 -set_fact_probability(ID,Prob) :-set_fact_probability1708,58949 -set_fact_probability(ID,Prob) :-set_fact_probability1708,58949 -get_internal_fact(ID,ProblogTerm,ProblogName,ProblogArity) :-get_internal_fact1718,59329 -get_internal_fact(ID,ProblogTerm,ProblogName,ProblogArity) :-get_internal_fact1718,59329 -get_internal_fact(ID,ProblogTerm,ProblogName,ProblogArity) :-get_internal_fact1718,59329 -get_continuous_fact_parameters(ID,Parameters) :-get_continuous_fact_parameters1726,59587 -get_continuous_fact_parameters(ID,Parameters) :-get_continuous_fact_parameters1726,59587 -get_continuous_fact_parameters(ID,Parameters) :-get_continuous_fact_parameters1726,59587 -get_internal_continuous_fact(ID,ProblogTerm,ProblogName,ProblogArity,ContinuousPos) :-get_internal_continuous_fact1736,59912 -get_internal_continuous_fact(ID,ProblogTerm,ProblogName,ProblogArity,ContinuousPos) :-get_internal_continuous_fact1736,59912 -get_internal_continuous_fact(ID,ProblogTerm,ProblogName,ProblogArity,ContinuousPos) :-get_internal_continuous_fact1736,59912 -set_continuous_fact_parameters(ID,Parameters) :-set_continuous_fact_parameters1744,60230 -set_continuous_fact_parameters(ID,Parameters) :-set_continuous_fact_parameters1744,60230 -set_continuous_fact_parameters(ID,Parameters) :-set_continuous_fact_parameters1744,60230 -export_facts(Filename) :-export_facts1758,60813 -export_facts(Filename) :-export_facts1758,60813 -export_facts(Filename) :-export_facts1758,60813 -is_mvs_aux_fact(A) :-is_mvs_aux_fact1793,61517 -is_mvs_aux_fact(A) :-is_mvs_aux_fact1793,61517 -is_mvs_aux_fact(A) :-is_mvs_aux_fact1793,61517 -print_ad_intern(Handle,(Head<--Body),_ID,Facts) :-print_ad_intern1798,61623 -print_ad_intern(Handle,(Head<--Body),_ID,Facts) :-print_ad_intern1798,61623 -print_ad_intern(Handle,(Head<--Body),_ID,Facts) :-print_ad_intern1798,61623 -print_ad_intern((A1;B1),[A2|B2],Mass,Handle) :-print_ad_intern1801,61752 -print_ad_intern((A1;B1),[A2|B2],Mass,Handle) :-print_ad_intern1801,61752 -print_ad_intern((A1;B1),[A2|B2],Mass,Handle) :-print_ad_intern1801,61752 -print_ad_intern(_::Fact,[],Mass,Handle) :-print_ad_intern1805,61920 -print_ad_intern(_::Fact,[],Mass,Handle) :-print_ad_intern1805,61920 -print_ad_intern(_::Fact,[],Mass,Handle) :-print_ad_intern1805,61920 -print_ad_intern(P::A1,[A2],Mass,Handle) :-print_ad_intern1808,62022 -print_ad_intern(P::A1,[A2],Mass,Handle) :-print_ad_intern1808,62022 -print_ad_intern(P::A1,[A2],Mass,Handle) :-print_ad_intern1808,62022 -print_ad_intern_one(_::Fact,_::AuxFact,Mass,NewMass,Handle) :-print_ad_intern_one1810,62124 -print_ad_intern_one(_::Fact,_::AuxFact,Mass,NewMass,Handle) :-print_ad_intern_one1810,62124 -print_ad_intern_one(_::Fact,_::AuxFact,Mass,NewMass,Handle) :-print_ad_intern_one1810,62124 -get_fact(ID,OutsideTerm) :-get_fact1823,62556 -get_fact(ID,OutsideTerm) :-get_fact1823,62556 -get_fact(ID,OutsideTerm) :-get_fact1823,62556 -get_fact(ID,OutsideTerm) :-get_fact1832,62919 -get_fact(ID,OutsideTerm) :-get_fact1832,62919 -get_fact(ID,OutsideTerm) :-get_fact1832,62919 -recover_grounding_id(Atom,ID) :-recover_grounding_id1836,63017 -recover_grounding_id(Atom,ID) :-recover_grounding_id1836,63017 -recover_grounding_id(Atom,ID) :-recover_grounding_id1836,63017 -recover_number([95|_],[]) :- !. % name('_',[95])recover_number1842,63154 -recover_number([95|_],[]) :- !. % name('_',[95])recover_number1842,63154 -recover_number([95|_],[]) :- !. % name('_',[95])recover_number1842,63154 -recover_number([A|B],[A|C]) :-recover_number1843,63204 -recover_number([A|B],[A|C]) :-recover_number1843,63204 -recover_number([A|B],[A|C]) :-recover_number1843,63204 -get_fact_list([],[]).get_fact_list1847,63259 -get_fact_list([],[]).get_fact_list1847,63259 -get_fact_list([ID|IDs],[Fact|Facts]) :-get_fact_list1848,63281 -get_fact_list([ID|IDs],[Fact|Facts]) :-get_fact_list1848,63281 -get_fact_list([ID|IDs],[Fact|Facts]) :-get_fact_list1848,63281 -add_to_proof(ID, _LogProb) :-add_to_proof1869,64131 -add_to_proof(ID, _LogProb) :-add_to_proof1869,64131 -add_to_proof(ID, _LogProb) :-add_to_proof1869,64131 -add_to_proof(ID, LogProb) :-add_to_proof1873,64217 -add_to_proof(ID, LogProb) :-add_to_proof1873,64217 -add_to_proof(ID, LogProb) :-add_to_proof1873,64217 -add_to_proof_negated(ID, _) :-add_to_proof_negated1907,65009 -add_to_proof_negated(ID, _) :-add_to_proof_negated1907,65009 -add_to_proof_negated(ID, _) :-add_to_proof_negated1907,65009 -add_to_proof_negated(ID, LogProb) :-add_to_proof_negated1912,65148 -add_to_proof_negated(ID, LogProb) :-add_to_proof_negated1912,65148 -add_to_proof_negated(ID, LogProb) :-add_to_proof_negated1912,65148 -add_continuous_to_proof(ID,GroundID) :-add_continuous_to_proof1947,65944 -add_continuous_to_proof(ID,GroundID) :-add_continuous_to_proof1947,65944 -add_continuous_to_proof(ID,GroundID) :-add_continuous_to_proof1947,65944 -montecarlo_check(ID) :-montecarlo_check1962,66332 -montecarlo_check(ID) :-montecarlo_check1962,66332 -montecarlo_check(ID) :-montecarlo_check1962,66332 -montecarlo_check(ComposedID) :-montecarlo_check1974,66571 -montecarlo_check(ComposedID) :-montecarlo_check1974,66571 -montecarlo_check(ComposedID) :-montecarlo_check1974,66571 -montecarlo_check(ComposedID) :-montecarlo_check1978,66700 -montecarlo_check(ComposedID) :-montecarlo_check1978,66700 -montecarlo_check(ComposedID) :-montecarlo_check1978,66700 -montecarlo_check(ID) :-montecarlo_check1984,66935 -montecarlo_check(ID) :-montecarlo_check1984,66935 -montecarlo_check(ID) :-montecarlo_check1984,66935 -new_sample(ID) :-new_sample1991,67134 -new_sample(ID) :-new_sample1991,67134 -new_sample(ID) :-new_sample1991,67134 -new_sample(ID) :-new_sample1997,67248 -new_sample(ID) :-new_sample1997,67248 -new_sample(ID) :-new_sample1997,67248 -new_sample_nonground(ComposedID,ID) :-new_sample_nonground2002,67412 -new_sample_nonground(ComposedID,ID) :-new_sample_nonground2002,67412 -new_sample_nonground(ComposedID,ID) :-new_sample_nonground2002,67412 -split_grounding_id(Composed,Fact,Grounding) :-split_grounding_id2022,67941 -split_grounding_id(Composed,Fact,Grounding) :-split_grounding_id2022,67941 -split_grounding_id(Composed,Fact,Grounding) :-split_grounding_id2022,67941 -split_g_id([95|Grounding],[],Grounding) :- !.split_g_id2027,68062 -split_g_id([95|Grounding],[],Grounding) :- !.split_g_id2027,68062 -split_g_id([95|Grounding],[],Grounding) :- !.split_g_id2027,68062 -split_g_id([A|B],[A|FactID],GroundingID) :-split_g_id2028,68108 -split_g_id([A|B],[A|FactID],GroundingID) :-split_g_id2028,68108 -split_g_id([A|B],[A|FactID],GroundingID) :-split_g_id2028,68108 -upper_bound(List) :-upper_bound2037,68375 -upper_bound(List) :-upper_bound2037,68375 -upper_bound(List) :-upper_bound2037,68375 -init_problog(Threshold) :-init_problog2048,68850 -init_problog(Threshold) :-init_problog2048,68850 -init_problog(Threshold) :-init_problog2048,68850 -prune_check(Proof, Trie) :-prune_check2083,70053 -prune_check(Proof, Trie) :-prune_check2083,70053 -prune_check(Proof, Trie) :-prune_check2083,70053 -problog_call(Goal) :-problog_call2089,70286 -problog_call(Goal) :-problog_call2089,70286 -problog_call(Goal) :-problog_call2089,70286 -put_module((Mod:Goal,Rest),Module,(Mod:Goal,Transformed)) :-put_module2096,70523 -put_module((Mod:Goal,Rest),Module,(Mod:Goal,Transformed)) :-put_module2096,70523 -put_module((Mod:Goal,Rest),Module,(Mod:Goal,Transformed)) :-put_module2096,70523 -put_module((Goal,Rest),Module,(Module:Goal,Transformed)) :-put_module2099,70626 -put_module((Goal,Rest),Module,(Module:Goal,Transformed)) :-put_module2099,70626 -put_module((Goal,Rest),Module,(Module:Goal,Transformed)) :-put_module2099,70626 -put_module((Mod:Goal),_Module,(Mod:Goal)) :-put_module2102,70728 -put_module((Mod:Goal),_Module,(Mod:Goal)) :-put_module2102,70728 -put_module((Mod:Goal),_Module,(Mod:Goal)) :-put_module2102,70728 -put_module(Goal,Module,Module:Goal).put_module2104,70777 -put_module(Goal,Module,Module:Goal).put_module2104,70777 -problog_statistics(Stat, Result):-problog_statistics2140,72828 -problog_statistics(Stat, Result):-problog_statistics2140,72828 -problog_statistics(Stat, Result):-problog_statistics2140,72828 -generate_order_by_prob_fact_appearance(Order, FileName):-generate_order_by_prob_fact_appearance2145,72951 -generate_order_by_prob_fact_appearance(Order, FileName):-generate_order_by_prob_fact_appearance2145,72951 -generate_order_by_prob_fact_appearance(Order, FileName):-generate_order_by_prob_fact_appearance2145,72951 -get_order(Trie, Order):-get_order2153,73175 -get_order(Trie, Order):-get_order2153,73175 -get_order(Trie, Order):-get_order2153,73175 -eval_dnf(OriTrie1, Prob, Status) :-eval_dnf2159,73327 -eval_dnf(OriTrie1, Prob, Status) :-eval_dnf2159,73327 -eval_dnf(OriTrie1, Prob, Status) :-eval_dnf2159,73327 -generate_ints(End, End, [End]).generate_ints2407,81319 -generate_ints(End, End, [End]).generate_ints2407,81319 -generate_ints(Start, End, [Start|Rest]):-generate_ints2408,81351 -generate_ints(Start, End, [Start|Rest]):-generate_ints2408,81351 -generate_ints(Start, End, [Start|Rest]):-generate_ints2408,81351 -execute_bdd_tool(BDDFile, BDDParFile, Prob, Status):-execute_bdd_tool2413,81470 -execute_bdd_tool(BDDFile, BDDParFile, Prob, Status):-execute_bdd_tool2413,81470 -execute_bdd_tool(BDDFile, BDDParFile, Prob, Status):-execute_bdd_tool2413,81470 -problog_threshold(Goal, Threshold, _, _, _) :-problog_threshold2462,83215 -problog_threshold(Goal, Threshold, _, _, _) :-problog_threshold2462,83215 -problog_threshold(Goal, Threshold, _, _, _) :-problog_threshold2462,83215 -problog_threshold(_, _, LP, UP, Status) :-problog_threshold2468,83366 -problog_threshold(_, _, LP, UP, Status) :-problog_threshold2468,83366 -problog_threshold(_, _, LP, UP, Status) :-problog_threshold2468,83366 -init_problog_threshold(Threshold) :-init_problog_threshold2471,83443 -init_problog_threshold(Threshold) :-init_problog_threshold2471,83443 -init_problog_threshold(Threshold) :-init_problog_threshold2471,83443 -add_solution :-add_solution2478,83695 -collect_all_intervals([],_,[]).collect_all_intervals2520,84648 -collect_all_intervals([],_,[]).collect_all_intervals2520,84648 -collect_all_intervals([(ID,GroundID)|T],ProofID,[Interval|T2]) :-collect_all_intervals2521,84680 -collect_all_intervals([(ID,GroundID)|T],ProofID,[Interval|T2]) :-collect_all_intervals2521,84680 -collect_all_intervals([(ID,GroundID)|T],ProofID,[Interval|T2]) :-collect_all_intervals2521,84680 -collect_all_intervals([_|T],ProofID,T2) :-collect_all_intervals2529,85046 -collect_all_intervals([_|T],ProofID,T2) :-collect_all_intervals2529,85046 -collect_all_intervals([_|T],ProofID,T2) :-collect_all_intervals2529,85046 -all_hybrid_subproofs(ProofID,List) :-all_hybrid_subproofs2537,85254 -all_hybrid_subproofs(ProofID,List) :-all_hybrid_subproofs2537,85254 -all_hybrid_subproofs(ProofID,List) :-all_hybrid_subproofs2537,85254 -generate_all_proof_combinations([],[]).generate_all_proof_combinations2545,85554 -generate_all_proof_combinations([],[]).generate_all_proof_combinations2545,85554 -generate_all_proof_combinations([(_ID,GroundID,Intervals)|T],Result) :-generate_all_proof_combinations2546,85594 -generate_all_proof_combinations([(_ID,GroundID,Intervals)|T],Result) :-generate_all_proof_combinations2546,85594 -generate_all_proof_combinations([(_ID,GroundID,Intervals)|T],Result) :-generate_all_proof_combinations2546,85594 -encode_tail([],_,[]).encode_tail2558,86046 -encode_tail([],_,[]).encode_tail2558,86046 -encode_tail([A|T],ID,[not(FullID)|T2]) :-encode_tail2559,86068 -encode_tail([A|T],ID,[not(FullID)|T2]) :-encode_tail2559,86068 -encode_tail([A|T],ID,[not(FullID)|T2]) :-encode_tail2559,86068 -disjoin_hybrid_proofs :-disjoin_hybrid_proofs2568,86328 -disjoin_hybrid_proofs([]).disjoin_hybrid_proofs2575,86502 -disjoin_hybrid_proofs([]).disjoin_hybrid_proofs2575,86502 -disjoin_hybrid_proofs([GroundID|T]) :-disjoin_hybrid_proofs2576,86529 -disjoin_hybrid_proofs([GroundID|T]) :-disjoin_hybrid_proofs2576,86529 -disjoin_hybrid_proofs([GroundID|T]) :-disjoin_hybrid_proofs2576,86529 -compute_bounds(LP, UP, Status) :-compute_bounds2596,87088 -compute_bounds(LP, UP, Status) :-compute_bounds2596,87088 -compute_bounds(LP, UP, Status) :-compute_bounds2596,87088 -problog_low(Goal/Cond, Threshold, _, _) :-problog_low2617,87966 -problog_low(Goal/Cond, Threshold, _, _) :-problog_low2617,87966 -problog_low(Goal/Cond, Threshold, _, _) :-problog_low2617,87966 -problog_low(Goal, Threshold, _, _) :-problog_low2622,88132 -problog_low(Goal, Threshold, _, _) :-problog_low2622,88132 -problog_low(Goal, Threshold, _, _) :-problog_low2622,88132 -problog_low(_, _, LP, Status) :-problog_low2629,88294 -problog_low(_, _, LP, Status) :-problog_low2629,88294 -problog_low(_, _, LP, Status) :-problog_low2629,88294 -init_problog_low(Threshold) :-init_problog_low2644,88732 -init_problog_low(Threshold) :-init_problog_low2644,88732 -init_problog_low(Threshold) :-init_problog_low2644,88732 -problog_all_explanations(Goal,Expl) :-problog_all_explanations2650,88979 -problog_all_explanations(Goal,Expl) :-problog_all_explanations2650,88979 -problog_all_explanations(Goal,Expl) :-problog_all_explanations2650,88979 -problog_all_explanations_unsorted(Goal, _) :-problog_all_explanations_unsorted2655,89128 -problog_all_explanations_unsorted(Goal, _) :-problog_all_explanations_unsorted2655,89128 -problog_all_explanations_unsorted(Goal, _) :-problog_all_explanations_unsorted2655,89128 -problog_all_explanations_unsorted(_,Expl) :-problog_all_explanations_unsorted2662,89292 -problog_all_explanations_unsorted(_,Expl) :-problog_all_explanations_unsorted2662,89292 -problog_all_explanations_unsorted(_,Expl) :-problog_all_explanations_unsorted2662,89292 -explanations_from_trie(Trie,[]) :-explanations_from_trie2669,89540 -explanations_from_trie(Trie,[]) :-explanations_from_trie2669,89540 -explanations_from_trie(Trie,[]) :-explanations_from_trie2669,89540 -explanations_from_trie(Trie,[1.0-[]]) :-explanations_from_trie2671,89597 -explanations_from_trie(Trie,[1.0-[]]) :-explanations_from_trie2671,89597 -explanations_from_trie(Trie,[1.0-[]]) :-explanations_from_trie2671,89597 -explanations_from_trie(Trie_Completed_Proofs,Expl) :-explanations_from_trie2673,89670 -explanations_from_trie(Trie_Completed_Proofs,Expl) :-explanations_from_trie2673,89670 -explanations_from_trie(Trie_Completed_Proofs,Expl) :-explanations_from_trie2673,89670 -problog_delta(Goal, Delta, Low, Up, Status) :-problog_delta2694,90529 -problog_delta(Goal, Delta, Low, Up, Status) :-problog_delta2694,90529 -problog_delta(Goal, Delta, Low, Up, Status) :-problog_delta2694,90529 -init_problog_delta(Threshold,Delta) :-init_problog_delta2707,90973 -init_problog_delta(Threshold,Delta) :-init_problog_delta2707,90973 -init_problog_delta(Threshold,Delta) :-init_problog_delta2707,90973 -problog_delta_id(Goal, _) :-problog_delta_id2720,91368 -problog_delta_id(Goal, _) :-problog_delta_id2720,91368 -problog_delta_id(Goal, _) :-problog_delta_id2720,91368 -problog_delta_id(Goal, Status) :-problog_delta_id2724,91476 -problog_delta_id(Goal, Status) :-problog_delta_id2724,91476 -problog_delta_id(Goal, Status) :-problog_delta_id2724,91476 -evaluateStep(Ans,Status) :- once(evalStep(Ans,Status)).evaluateStep2749,92009 -evaluateStep(Ans,Status) :- once(evalStep(Ans,Status)).evaluateStep2749,92009 -evaluateStep(Ans,Status) :- once(evalStep(Ans,Status)).evaluateStep2749,92009 -evaluateStep(Ans,Status) :- once(evalStep(Ans,Status)).evaluateStep2749,92009 -evaluateStep(Ans,Status) :- once(evalStep(Ans,Status)).evaluateStep2749,92009 -evalStep(Ans,Status) :-evalStep2751,92067 -evalStep(Ans,Status) :-evalStep2751,92067 -evalStep(Ans,Status) :-evalStep2751,92067 -eval_lower(N,P,ok) :-eval_lower2785,93077 -eval_lower(N,P,ok) :-eval_lower2785,93077 -eval_lower(N,P,ok) :-eval_lower2785,93077 -eval_lower(N,P,Status) :-eval_lower2788,93141 -eval_lower(N,P,Status) :-eval_lower2788,93141 -eval_lower(N,P,Status) :-eval_lower2788,93141 -eval_upper(0,P,ok) :-eval_upper2802,93473 -eval_upper(0,P,ok) :-eval_upper2802,93473 -eval_upper(0,P,ok) :-eval_upper2802,93473 -eval_upper(N,UpP,ok) :-eval_upper2808,93685 -eval_upper(N,UpP,ok) :-eval_upper2808,93685 -eval_upper(N,UpP,ok) :-eval_upper2808,93685 -problog_max(Goal, Prob, Facts) :-problog_max2834,94650 -problog_max(Goal, Prob, Facts) :-problog_max2834,94650 -problog_max(Goal, Prob, Facts) :-problog_max2834,94650 -init_problog_max(Threshold) :-init_problog_max2842,94900 -init_problog_max(Threshold) :-init_problog_max2842,94900 -init_problog_max(Threshold) :-init_problog_max2842,94900 -update_max :-update_max2849,95087 -problog_max_id(Goal, _Prob, _Clauses) :-problog_max_id2861,95412 -problog_max_id(Goal, _Prob, _Clauses) :-problog_max_id2861,95412 -problog_max_id(Goal, _Prob, _Clauses) :-problog_max_id2861,95412 -problog_max_id(Goal, Prob, Clauses) :-problog_max_id2865,95494 -problog_max_id(Goal, Prob, Clauses) :-problog_max_id2865,95494 -problog_max_id(Goal, Prob, Clauses) :-problog_max_id2865,95494 -problog_kbest_save(Goal, K, Prob, Status, BDDFile, ParamFile) :-problog_kbest_save2900,96889 -problog_kbest_save(Goal, K, Prob, Status, BDDFile, ParamFile) :-problog_kbest_save2900,96889 -problog_kbest_save(Goal, K, Prob, Status, BDDFile, ParamFile) :-problog_kbest_save2900,96889 -problog_kbest(Goal, K, Prob, Status) :-problog_kbest2923,97801 -problog_kbest(Goal, K, Prob, Status) :-problog_kbest2923,97801 -problog_kbest(Goal, K, Prob, Status) :-problog_kbest2923,97801 -problog_kbest_explanations(Goal, K, Explanations) :-problog_kbest_explanations2935,98245 -problog_kbest_explanations(Goal, K, Explanations) :-problog_kbest_explanations2935,98245 -problog_kbest_explanations(Goal, K, Explanations) :-problog_kbest_explanations2935,98245 -problog_real_kbest(Goal, K, Prob, Status) :-problog_real_kbest2943,98525 -problog_real_kbest(Goal, K, Prob, Status) :-problog_real_kbest2943,98525 -problog_real_kbest(Goal, K, Prob, Status) :-problog_real_kbest2943,98525 -init_problog_kbest(Threshold) :-init_problog_kbest2957,99158 -init_problog_kbest(Threshold) :-init_problog_kbest2957,99158 -init_problog_kbest(Threshold) :-init_problog_kbest2957,99158 -problog_kbest_id(Goal, K) :-problog_kbest_id2964,99425 -problog_kbest_id(Goal, K) :-problog_kbest_id2964,99425 -problog_kbest_id(Goal, K) :-problog_kbest_id2964,99425 -problog_kbest_id(Goal, K) :-problog_kbest_id2968,99500 -problog_kbest_id(Goal, K) :-problog_kbest_id2968,99500 -problog_kbest_id(Goal, K) :-problog_kbest_id2968,99500 -update_kbest(K) :-update_kbest2981,99907 -update_kbest(K) :-update_kbest2981,99907 -update_kbest(K) :-update_kbest2981,99907 -update_current_kbest(_,NewLogProb,Cl) :-update_current_kbest2989,100154 -update_current_kbest(_,NewLogProb,Cl) :-update_current_kbest2989,100154 -update_current_kbest(_,NewLogProb,Cl) :-update_current_kbest2989,100154 -update_current_kbest(K,NewLogProb,Cl) :-update_current_kbest2993,100257 -update_current_kbest(K,NewLogProb,Cl) :-update_current_kbest2993,100257 -update_current_kbest(K,NewLogProb,Cl) :-update_current_kbest2993,100257 -sorted_insert(A,[],[A]).sorted_insert3008,100771 -sorted_insert(A,[],[A]).sorted_insert3008,100771 -sorted_insert(A-LA,[B1-LB1|B], [A-LA,B1-LB1|B] ) :-sorted_insert3009,100796 -sorted_insert(A-LA,[B1-LB1|B], [A-LA,B1-LB1|B] ) :-sorted_insert3009,100796 -sorted_insert(A-LA,[B1-LB1|B], [A-LA,B1-LB1|B] ) :-sorted_insert3009,100796 -sorted_insert(A-LA,[B1-LB1|B], [B1-LB1|C] ) :-sorted_insert3011,100858 -sorted_insert(A-LA,[B1-LB1|B], [B1-LB1|C] ) :-sorted_insert3011,100858 -sorted_insert(A-LA,[B1-LB1|B], [B1-LB1|C] ) :-sorted_insert3011,100858 -cutoff(List,Len,1,List,Len) :- !.cutoff3016,101026 -cutoff(List,Len,1,List,Len) :- !.cutoff3016,101026 -cutoff(List,Len,1,List,Len) :- !.cutoff3016,101026 -cutoff([P-L|List],Length,First,[P-L|List],Length) :-cutoff3017,101060 -cutoff([P-L|List],Length,First,[P-L|List],Length) :-cutoff3017,101060 -cutoff([P-L|List],Length,First,[P-L|List],Length) :-cutoff3017,101060 -cutoff([_|List],Length,First,NewList,NewLength) :-cutoff3021,101156 -cutoff([_|List],Length,First,NewList,NewLength) :-cutoff3021,101156 -cutoff([_|List],Length,First,NewList,NewLength) :-cutoff3021,101156 -build_prefixtree([]).build_prefixtree3026,101310 -build_prefixtree([]).build_prefixtree3026,101310 -build_prefixtree([_-[]|_List]) :-build_prefixtree3027,101332 -build_prefixtree([_-[]|_List]) :-build_prefixtree3027,101332 -build_prefixtree([_-[]|_List]) :-build_prefixtree3027,101332 -build_prefixtree([LogP-L|List]) :-build_prefixtree3031,101475 -build_prefixtree([LogP-L|List]) :-build_prefixtree3031,101475 -build_prefixtree([LogP-L|List]) :-build_prefixtree3031,101475 -take_k_best(In,K,OutOf,Out) :-take_k_best3045,101783 -take_k_best(In,K,OutOf,Out) :-take_k_best3045,101783 -take_k_best(In,K,OutOf,Out) :-take_k_best3045,101783 -to_external_format_with_reverse(Intern,Extern) :-to_external_format_with_reverse3055,101914 -to_external_format_with_reverse(Intern,Extern) :-to_external_format_with_reverse3055,101914 -to_external_format_with_reverse(Intern,Extern) :-to_external_format_with_reverse3055,101914 -to_external_format_with_reverse([],Extern,Extern).to_external_format_with_reverse3057,102016 -to_external_format_with_reverse([],Extern,Extern).to_external_format_with_reverse3057,102016 -to_external_format_with_reverse([LogP-FactIDs|Intern],Acc,Extern) :-to_external_format_with_reverse3058,102067 -to_external_format_with_reverse([LogP-FactIDs|Intern],Acc,Extern) :-to_external_format_with_reverse3058,102067 -to_external_format_with_reverse([LogP-FactIDs|Intern],Acc,Extern) :-to_external_format_with_reverse3058,102067 -problog_exact(Goal,Prob,Status) :-problog_exact3071,102540 -problog_exact(Goal,Prob,Status) :-problog_exact3071,102540 -problog_exact(Goal,Prob,Status) :-problog_exact3071,102540 -problog_exact_save(Goal,Prob,Status,BDDFile,ParamFile) :-problog_exact_save3076,102669 -problog_exact_save(Goal,Prob,Status,BDDFile,ParamFile) :-problog_exact_save3076,102669 -problog_exact_save(Goal,Prob,Status,BDDFile,ParamFile) :-problog_exact_save3076,102669 -problog_collect_trie(Goal):-problog_collect_trie3106,103649 -problog_collect_trie(Goal):-problog_collect_trie3106,103649 -problog_collect_trie(Goal):-problog_collect_trie3106,103649 -problog_collect_trie(_Goal).problog_collect_trie3110,103721 -problog_collect_trie(_Goal).problog_collect_trie3110,103721 -problog_save_state(State):-problog_save_state3112,103751 -problog_save_state(State):-problog_save_state3112,103751 -problog_save_state(State):-problog_save_state3112,103751 -problog_restore_state(State):-problog_restore_state3120,104092 -problog_restore_state(State):-problog_restore_state3120,104092 -problog_restore_state(State):-problog_restore_state3120,104092 -problog_exact_nested(Goal, Prob, Status):-problog_exact_nested3126,104308 -problog_exact_nested(Goal, Prob, Status):-problog_exact_nested3126,104308 -problog_exact_nested(Goal, Prob, Status):-problog_exact_nested3126,104308 -problog_montecarlo(Goal,Delta,Prob) :-problog_montecarlo3143,105072 -problog_montecarlo(Goal,Delta,Prob) :-problog_montecarlo3143,105072 -problog_montecarlo(Goal,Delta,Prob) :-problog_montecarlo3143,105072 -montecarlo(Goal,Delta,K,File) :-montecarlo3156,105447 -montecarlo(Goal,Delta,K,File) :-montecarlo3156,105447 -montecarlo(Goal,Delta,K,File) :-montecarlo3156,105447 -montecarlo(Goal,Delta,K,SamplesSoFar,File,PositiveSoFar) :-montecarlo3171,105925 -montecarlo(Goal,Delta,K,SamplesSoFar,File,PositiveSoFar) :-montecarlo3171,105925 -montecarlo(Goal,Delta,K,SamplesSoFar,File,PositiveSoFar) :-montecarlo3171,105925 -montecarlo(Goal,Delta,K,SamplesSoFar,File,PositiveSoFar) :-montecarlo3195,106510 -montecarlo(Goal,Delta,K,SamplesSoFar,File,PositiveSoFar) :-montecarlo3195,106510 -montecarlo(Goal,Delta,K,SamplesSoFar,File,PositiveSoFar) :-montecarlo3195,106510 -mc_prove(A) :- !,mc_prove3201,106741 -mc_prove(A) :- !,mc_prove3201,106741 -mc_prove(A) :- !,mc_prove3201,106741 -clean_sample :-clean_sample3208,106825 -get_some_proof(Goal) :-get_some_proof3220,107093 -get_some_proof(Goal) :-get_some_proof3220,107093 -get_some_proof(Goal) :-get_some_proof3220,107093 -problog_answers(Goal,File) :-problog_answers3230,107379 -problog_answers(Goal,File) :-problog_answers3230,107379 -problog_answers(Goal,File) :-problog_answers3230,107379 -eval_answers :-eval_answers3239,107675 -problog_kbest_answers(Goal,K,ResultList) :-problog_kbest_answers3250,108065 -problog_kbest_answers(Goal,K,ResultList) :-problog_kbest_answers3250,108065 -problog_kbest_answers(Goal,K,ResultList) :-problog_kbest_answers3250,108065 -problog_kbest_answers_id(Goal, K) :-problog_kbest_answers_id3260,108518 -problog_kbest_answers_id(Goal, K) :-problog_kbest_answers_id3260,108518 -problog_kbest_answers_id(Goal, K) :-problog_kbest_answers_id3260,108518 -problog_kbest_answers_id(Goal, K) :-problog_kbest_answers_id3265,108655 -problog_kbest_answers_id(Goal, K) :-problog_kbest_answers_id3265,108655 -problog_kbest_answers_id(Goal, K) :-problog_kbest_answers_id3265,108655 -update_kbest_answers(Goal,K) :-update_kbest_answers3278,109078 -update_kbest_answers(Goal,K) :-update_kbest_answers3278,109078 -update_kbest_answers(Goal,K) :-update_kbest_answers3278,109078 -update_current_kbest_answers(_,NewLogProb,Goal) :-update_current_kbest_answers3284,109265 -update_current_kbest_answers(_,NewLogProb,Goal) :-update_current_kbest_answers3284,109265 -update_current_kbest_answers(_,NewLogProb,Goal) :-update_current_kbest_answers3284,109265 -update_current_kbest_answers(K,NewLogProb,Goal) :-update_current_kbest_answers3291,109566 -update_current_kbest_answers(K,NewLogProb,Goal) :-update_current_kbest_answers3291,109566 -update_current_kbest_answers(K,NewLogProb,Goal) :-update_current_kbest_answers3291,109566 -update_prob_of_known_answer([OldLogP-OldGoal|List],Goal,NewLogProb,[MaxLogP-OldGoal|List]) :-update_prob_of_known_answer3307,110210 -update_prob_of_known_answer([OldLogP-OldGoal|List],Goal,NewLogProb,[MaxLogP-OldGoal|List]) :-update_prob_of_known_answer3307,110210 -update_prob_of_known_answer([OldLogP-OldGoal|List],Goal,NewLogProb,[MaxLogP-OldGoal|List]) :-update_prob_of_known_answer3307,110210 -update_prob_of_known_answer([First|List],Goal,NewLogProb,[First|NewList]) :-update_prob_of_known_answer3311,110369 -update_prob_of_known_answer([First|List],Goal,NewLogProb,[First|NewList]) :-update_prob_of_known_answer3311,110369 -update_prob_of_known_answer([First|List],Goal,NewLogProb,[First|NewList]) :-update_prob_of_known_answer3311,110369 -transform_loglist_to_result(In,Out) :-transform_loglist_to_result3314,110507 -transform_loglist_to_result(In,Out) :-transform_loglist_to_result3314,110507 -transform_loglist_to_result(In,Out) :-transform_loglist_to_result3314,110507 -transform_loglist_to_result([],Acc,Acc).transform_loglist_to_result3316,110587 -transform_loglist_to_result([],Acc,Acc).transform_loglist_to_result3316,110587 -transform_loglist_to_result([LogP-G|List],Acc,Result) :-transform_loglist_to_result3317,110628 -transform_loglist_to_result([LogP-G|List],Acc,Result) :-transform_loglist_to_result3317,110628 -transform_loglist_to_result([LogP-G|List],Acc,Result) :-transform_loglist_to_result3317,110628 -problog_koptimal(Goal,K,Prob) :-problog_koptimal3325,110820 -problog_koptimal(Goal,K,Prob) :-problog_koptimal3325,110820 -problog_koptimal(Goal,K,Prob) :-problog_koptimal3325,110820 -problog_koptimal(Goal,K,Theta,Prob) :-problog_koptimal3329,110931 -problog_koptimal(Goal,K,Theta,Prob) :-problog_koptimal3329,110931 -problog_koptimal(Goal,K,Theta,Prob) :-problog_koptimal3329,110931 -init_problog_koptimal :-init_problog_koptimal3341,111351 -problog_koptimal_it(Goal,K,Theta) :-problog_koptimal_it3355,111873 -problog_koptimal_it(Goal,K,Theta) :-problog_koptimal_it3355,111873 -problog_koptimal_it(Goal,K,Theta) :-problog_koptimal_it3355,111873 -problog_koptimal_it(_,0,_).problog_koptimal_it3361,112118 -problog_koptimal_it(_,0,_).problog_koptimal_it3361,112118 -init_problog_koptimal_it(Theta) :-init_problog_koptimal_it3363,112147 -init_problog_koptimal_it(Theta) :-init_problog_koptimal_it3363,112147 -init_problog_koptimal_it(Theta) :-init_problog_koptimal_it3363,112147 -sort_possible_proofs(List,Sorted):-sort_possible_proofs(List,[],Sorted).sort_possible_proofs3386,112901 -sort_possible_proofs(List,Sorted):-sort_possible_proofs(List,[],Sorted).sort_possible_proofs3386,112901 -sort_possible_proofs(List,Sorted):-sort_possible_proofs(List,[],Sorted).sort_possible_proofs3386,112901 -sort_possible_proofs(List,Sorted):-sort_possible_proofs(List,[],Sorted).sort_possible_proofs3386,112901 -sort_possible_proofs(List,Sorted):-sort_possible_proofs(List,[],Sorted).sort_possible_proofs3386,112901 -sort_possible_proofs([],Acc,Acc).sort_possible_proofs3387,112974 -sort_possible_proofs([],Acc,Acc).sort_possible_proofs3387,112974 -sort_possible_proofs([H|T],Acc,Sorted):-sort_possible_proofs3388,113008 -sort_possible_proofs([H|T],Acc,Sorted):-sort_possible_proofs3388,113008 -sort_possible_proofs([H|T],Acc,Sorted):-sort_possible_proofs3388,113008 -pivoting(_,[],[],[]).pivoting3392,113155 -pivoting(_,[],[],[]).pivoting3392,113155 -pivoting(Pivot-PPivot,[Proof-P|T],[Proof-P|G],L):-P=PPivot,pivoting(Pivot-PPivot,T,G,L).pivoting3394,113267 -pivoting(Pivot-PPivot,[Proof-P|T],G,[Proof-P|L]):-P>PPivot,pivoting(Pivot-PPivot,T,G,L).pivoting3394,113267 -pivoting(Pivot-PPivot,[Proof-P|T],G,[Proof-P|L]):-P>PPivot,pivoting(Pivot-PPivot,T,G,L).pivoting3394,113267 -pivoting(Pivot-PPivot,[Proof-P|T],G,[Proof-P|L]):-P>PPivot,pivoting(Pivot-PPivot,T,G,L).pivoting3394,113267 -pivoting(Pivot-PPivot,[Proof-P|T],G,[Proof-P|L]):-P>PPivot,pivoting(Pivot-PPivot,T,G,L).pivoting3394,113267 -initialise_optimal_proof([],_).initialise_optimal_proof3397,113358 -initialise_optimal_proof([],_).initialise_optimal_proof3397,113358 -initialise_optimal_proof([Proof-MaxAdded|Rest],Theta) :-initialise_optimal_proof3398,113390 -initialise_optimal_proof([Proof-MaxAdded|Rest],Theta) :-initialise_optimal_proof3398,113390 -initialise_optimal_proof([Proof-MaxAdded|Rest],Theta) :-initialise_optimal_proof3398,113390 -add_optimal_proof(Goal,Theta) :-add_optimal_proof3431,114258 -add_optimal_proof(Goal,Theta) :-add_optimal_proof3431,114258 -add_optimal_proof(Goal,Theta) :-add_optimal_proof3431,114258 -add_optimal_proof(_,_) :-add_optimal_proof3434,114337 -add_optimal_proof(_,_) :-add_optimal_proof3434,114337 -add_optimal_proof(_,_) :-add_optimal_proof3434,114337 -update_koptimal(Theta) :-update_koptimal3450,114820 -update_koptimal(Theta) :-update_koptimal3450,114820 -update_koptimal(Theta) :-update_koptimal3450,114820 -remove_decision_facts([Fact|Proof], PrunedProof) :-remove_decision_facts3483,115760 -remove_decision_facts([Fact|Proof], PrunedProof) :-remove_decision_facts3483,115760 -remove_decision_facts([Fact|Proof], PrunedProof) :-remove_decision_facts3483,115760 -remove_decision_facts([],[]).remove_decision_facts3486,115950 -remove_decision_facts([],[]).remove_decision_facts3486,115950 -calculate_added_prob([],P,ok) :-calculate_added_prob3488,115981 -calculate_added_prob([],P,ok) :-calculate_added_prob3488,115981 -calculate_added_prob([],P,ok) :-calculate_added_prob3488,115981 -calculate_added_prob(Proof,P,S) :-calculate_added_prob3490,116032 -calculate_added_prob(Proof,P,S) :-calculate_added_prob3490,116032 -calculate_added_prob(Proof,P,S) :-calculate_added_prob3490,116032 -calculate_added_prob([],[],_,1,ok).calculate_added_prob3498,116277 -calculate_added_prob([],[],_,1,ok).calculate_added_prob3498,116277 -calculate_added_prob([UsedFact|UsedProof],[],Conditions,P,S) :-calculate_added_prob3499,116313 -calculate_added_prob([UsedFact|UsedProof],[],Conditions,P,S) :-calculate_added_prob3499,116313 -calculate_added_prob([UsedFact|UsedProof],[],Conditions,P,S) :-calculate_added_prob3499,116313 -calculate_added_prob(UsedProof,[NewFact|NewFacts],[],P,S) :-calculate_added_prob3517,116889 -calculate_added_prob(UsedProof,[NewFact|NewFacts],[],P,S) :-calculate_added_prob3517,116889 -calculate_added_prob(UsedProof,[NewFact|NewFacts],[],P,S) :-calculate_added_prob3517,116889 -bubblesort(List,Sorted):-bubblesort3527,117131 -bubblesort(List,Sorted):-bubblesort3527,117131 -bubblesort(List,Sorted):-bubblesort3527,117131 -bubblesort(Sorted,Sorted).bubblesort3530,117205 -bubblesort(Sorted,Sorted).bubblesort3530,117205 -swap([X,Y|Rest], [Y,X|Rest]):- bigger(X,Y).swap3532,117233 -swap([X,Y|Rest], [Y,X|Rest]):- bigger(X,Y).swap3532,117233 -swap([X,Y|Rest], [Y,X|Rest]):- bigger(X,Y).swap3532,117233 -swap([X,Y|Rest], [Y,X|Rest]):- bigger(X,Y).swap3532,117233 -swap([X,Y|Rest], [Y,X|Rest]):- bigger(X,Y).swap3532,117233 -swap([Z|Rest],[Z|Rest1]):- swap(Rest,Rest1).swap3533,117277 -swap([Z|Rest],[Z|Rest1]):- swap(Rest,Rest1).swap3533,117277 -swap([Z|Rest],[Z|Rest1]):- swap(Rest,Rest1).swap3533,117277 -swap([Z|Rest],[Z|Rest1]):- swap(Rest,Rest1).swap3533,117277 -swap([Z|Rest],[Z|Rest1]):- swap(Rest,Rest1).swap3533,117277 -bigger(not(X), X) :-bigger3535,117323 -bigger(not(X), X) :-bigger3535,117323 -bigger(not(X), X) :-bigger3535,117323 -bigger(not(X), not(Y)) :-bigger3537,117348 -bigger(not(X), not(Y)) :-bigger3537,117348 -bigger(not(X), not(Y)) :-bigger3537,117348 -bigger(not(X),Y) :-bigger3540,117392 -bigger(not(X),Y) :-bigger3540,117392 -bigger(not(X),Y) :-bigger3540,117392 -bigger(X, not(Y)) :-bigger3543,117430 -bigger(X, not(Y)) :-bigger3543,117430 -bigger(X, not(Y)) :-bigger3543,117430 -bigger(X,Y) :-bigger3546,117469 -bigger(X,Y) :-bigger3546,117469 -bigger(X,Y) :-bigger3546,117469 -bigger(X,Y) :-bigger3555,117602 -bigger(X,Y) :-bigger3555,117602 -bigger(X,Y) :-bigger3555,117602 -bigger(X,Y) :-bigger3558,117659 -bigger(X,Y) :-bigger3558,117659 -bigger(X,Y) :-bigger3558,117659 -bigger(X,Y) :-bigger3561,117716 -bigger(X,Y) :-bigger3561,117716 -bigger(X,Y) :-bigger3561,117716 -round_added_prob(P,RoundedP) :-round_added_prob3564,117740 -round_added_prob(P,RoundedP) :-round_added_prob3564,117740 -round_added_prob(P,RoundedP) :-round_added_prob3564,117740 -round_added_prob(P,RoundedP) :-round_added_prob3569,117861 -round_added_prob(P,RoundedP) :-round_added_prob3569,117861 -round_added_prob(P,RoundedP) :-round_added_prob3569,117861 -negate(not(Fact),Fact).negate3573,117942 -negate(not(Fact),Fact).negate3573,117942 -negate(Fact,not(Fact)) :-negate3574,117966 -negate(Fact,not(Fact)) :-negate3574,117966 -negate(Fact,not(Fact)) :-negate3574,117966 -remove_used_facts([],[],[]).remove_used_facts3577,118010 -remove_used_facts([],[],[]).remove_used_facts3577,118010 -remove_used_facts([Fact|Rest],Used,New) :-remove_used_facts3578,118039 -remove_used_facts([Fact|Rest],Used,New) :-remove_used_facts3578,118039 -remove_used_facts([Fact|Rest],Used,New) :-remove_used_facts3578,118039 -used_fact(Fact) :-used_fact3591,118257 -used_fact(Fact) :-used_fact3591,118257 -used_fact(Fact) :-used_fact3591,118257 -used_facts(Facts) :-used_facts3594,118317 -used_facts(Facts) :-used_facts3594,118317 -used_facts(Facts) :-used_facts3594,118317 -conditional_prob(_,_,[],P,ok) :-conditional_prob3601,118478 -conditional_prob(_,_,[],P,ok) :-conditional_prob3601,118478 -conditional_prob(_,_,[],P,ok) :-conditional_prob3601,118478 -conditional_prob(NodeDump,ParFile,Conditions,P,S) :-conditional_prob3603,118529 -conditional_prob(NodeDump,ParFile,Conditions,P,S) :-conditional_prob3603,118529 -conditional_prob(NodeDump,ParFile,Conditions,P,S) :-conditional_prob3603,118529 -change_par_file(ParFile,[],ChangedParFile) :-change_par_file3615,119011 -change_par_file(ParFile,[],ChangedParFile) :-change_par_file3615,119011 -change_par_file(ParFile,[],ChangedParFile) :-change_par_file3615,119011 -change_par_file(ParFile,[ID|Rest],ChangedParFile) :-change_par_file3623,119288 -change_par_file(ParFile,[ID|Rest],ChangedParFile) :-change_par_file3623,119288 -change_par_file(ParFile,[ID|Rest],ChangedParFile) :-change_par_file3623,119288 -change_par_file(ParFile,[not(ID)|Rest],ChangedParFile) :-change_par_file3630,119481 -change_par_file(ParFile,[not(ID)|Rest],ChangedParFile) :-change_par_file3630,119481 -change_par_file(ParFile,[not(ID)|Rest],ChangedParFile) :-change_par_file3630,119481 -copy_file(From,To) :-copy_file3638,119681 -copy_file(From,To) :-copy_file3638,119681 -copy_file(From,To) :-copy_file3638,119681 -copy_aux(In,In).copy_aux3640,119735 -copy_aux(In,In).copy_aux3640,119735 -problog_infer(Goal,Prob) :-problog_infer3653,120233 -problog_infer(Goal,Prob) :-problog_infer3653,120233 -problog_infer(Goal,Prob) :-problog_infer3653,120233 -problog_infer(exact,Goal,Prob) :-problog_infer3657,120329 -problog_infer(exact,Goal,Prob) :-problog_infer3657,120329 -problog_infer(exact,Goal,Prob) :-problog_infer3657,120329 -problog_infer(atleast-K-best,Goal,Prob) :-problog_infer3659,120393 -problog_infer(atleast-K-best,Goal,Prob) :-problog_infer3659,120393 -problog_infer(atleast-K-best,Goal,Prob) :-problog_infer3659,120393 -problog_infer(K-best,Goal,Prob) :-problog_infer3661,120468 -problog_infer(K-best,Goal,Prob) :-problog_infer3661,120468 -problog_infer(K-best,Goal,Prob) :-problog_infer3661,120468 -problog_infer(montecarlo(Confidence),Goal,Prob) :-problog_infer3663,120540 -problog_infer(montecarlo(Confidence),Goal,Prob) :-problog_infer3663,120540 -problog_infer(montecarlo(Confidence),Goal,Prob) :-problog_infer3663,120540 -problog_infer(delta(Width),Goal,Prob) :-problog_infer3665,120634 -problog_infer(delta(Width),Goal,Prob) :-problog_infer3665,120634 -problog_infer(delta(Width),Goal,Prob) :-problog_infer3665,120634 -problog_infer(low(Threshold),Goal,Prob) :-problog_infer3668,120760 -problog_infer(low(Threshold),Goal,Prob) :-problog_infer3668,120760 -problog_infer(low(Threshold),Goal,Prob) :-problog_infer3668,120760 -problog_infer(threshold(Threshold),Goal,Prob) :-problog_infer3670,120841 -problog_infer(threshold(Threshold),Goal,Prob) :-problog_infer3670,120841 -problog_infer(threshold(Threshold),Goal,Prob) :-problog_infer3670,120841 -problog_infer(K-optimal,Goal,Prob) :-problog_infer3673,120983 -problog_infer(K-optimal,Goal,Prob) :-problog_infer3673,120983 -problog_infer(K-optimal,Goal,Prob) :-problog_infer3673,120983 -problog_infer(K-T-optimal,Goal,Prob) :-problog_infer3675,121053 -problog_infer(K-T-optimal,Goal,Prob) :-problog_infer3675,121053 -problog_infer(K-T-optimal,Goal,Prob) :-problog_infer3675,121053 -problog_infer_forest([],[]) :- !.problog_infer_forest3682,121322 -problog_infer_forest([],[]) :- !.problog_infer_forest3682,121322 -problog_infer_forest([],[]) :- !.problog_infer_forest3682,121322 -problog_infer_forest(Goals,Probs) :-problog_infer_forest3683,121356 -problog_infer_forest(Goals,Probs) :-problog_infer_forest3683,121356 -problog_infer_forest(Goals,Probs) :-problog_infer_forest3683,121356 -problog_infer_forest_supported :- problog_bdd_forest_supported.problog_infer_forest_supported3692,121613 -eval_bdd_forest(N,Probs,Status) :-eval_bdd_forest3694,121678 -eval_bdd_forest(N,Probs,Status) :-eval_bdd_forest3694,121678 -eval_bdd_forest(N,Probs,Status) :-eval_bdd_forest3694,121678 -read_probs(N,Probs) :-read_probs3736,122955 -read_probs(N,Probs) :-read_probs3736,122955 -read_probs(N,Probs) :-read_probs3736,122955 -delete_bdd_forest_files(N) :-delete_bdd_forest_files3746,123095 -delete_bdd_forest_files(N) :-delete_bdd_forest_files3746,123095 -delete_bdd_forest_files(N) :-delete_bdd_forest_files3746,123095 -build_trie(Goal, Trie) :-build_trie3760,123434 -build_trie(Goal, Trie) :-build_trie3760,123434 -build_trie(Goal, Trie) :-build_trie3760,123434 -build_trie_supported :- problog_flag(inference,exact).build_trie_supported3768,123639 -build_trie_supported :- problog_flag(inference,low(_)).build_trie_supported3769,123694 -build_trie_supported :- problog_flag(inference,atleast-_-best).build_trie_supported3770,123750 -build_trie_supported :- problog_flag(inference,_-best).build_trie_supported3771,123814 -build_trie_supported :- problog_flag(inference,_-optimal).build_trie_supported3772,123870 -build_trie_supported :- problog_flag(inference,_-_-optimal).build_trie_supported3773,123929 -build_trie(exact, Goal, Trie) :-build_trie3775,123991 -build_trie(exact, Goal, Trie) :-build_trie3775,123991 -build_trie(exact, Goal, Trie) :-build_trie3775,123991 -build_trie(low(Threshold), Goal, _) :-build_trie3780,124120 -build_trie(low(Threshold), Goal, _) :-build_trie3780,124120 -build_trie(low(Threshold), Goal, _) :-build_trie3780,124120 -build_trie(low(Threshold), _, Trie) :-build_trie3788,124316 -build_trie(low(Threshold), _, Trie) :-build_trie3788,124316 -build_trie(low(Threshold), _, Trie) :-build_trie3788,124316 -build_trie(atleast-K-best, Goal, Trie) :-build_trie3795,124573 -build_trie(atleast-K-best, Goal, Trie) :-build_trie3795,124573 -build_trie(atleast-K-best, Goal, Trie) :-build_trie3795,124573 -build_trie(K-best, Goal, Trie) :-build_trie3807,124959 -build_trie(K-best, Goal, Trie) :-build_trie3807,124959 -build_trie(K-best, Goal, Trie) :-build_trie3807,124959 -build_trie(K-optimal, Goal, Trie) :-build_trie3822,125612 -build_trie(K-optimal, Goal, Trie) :-build_trie3822,125612 -build_trie(K-optimal, Goal, Trie) :-build_trie3822,125612 -build_trie(K-T-optimal, Goal, Trie) :-build_trie3834,125996 -build_trie(K-T-optimal, Goal, Trie) :-build_trie3834,125996 -build_trie(K-T-optimal, Goal, Trie) :-build_trie3834,125996 -write_bdd_struct_script(Trie,BDDFile,Variables) :-write_bdd_struct_script3849,126530 -write_bdd_struct_script(Trie,BDDFile,Variables) :-write_bdd_struct_script3849,126530 -write_bdd_struct_script(Trie,BDDFile,Variables) :-write_bdd_struct_script3849,126530 -problog_bdd_forest(Goals) :-problog_bdd_forest4018,132039 -problog_bdd_forest(Goals) :-problog_bdd_forest4018,132039 -problog_bdd_forest(Goals) :-problog_bdd_forest4018,132039 -problog_bdd_forest_supported :- build_trie_supported.problog_bdd_forest_supported4040,132706 -write_bdd_forest([],AtomsTot,AtomsTot,_).write_bdd_forest4043,132833 -write_bdd_forest([],AtomsTot,AtomsTot,_).write_bdd_forest4043,132833 -write_bdd_forest([Goal|Rest],AtomsAcc,AtomsTot,N) :-write_bdd_forest4044,132875 -write_bdd_forest([Goal|Rest],AtomsAcc,AtomsTot,N) :-write_bdd_forest4044,132875 -write_bdd_forest([Goal|Rest],AtomsAcc,AtomsTot,N) :-write_bdd_forest4044,132875 -write_nth_bdd_struct_script(N,Trie,Vars) :-write_nth_bdd_struct_script4065,133548 -write_nth_bdd_struct_script(N,Trie,Vars) :-write_nth_bdd_struct_script4065,133548 -write_nth_bdd_struct_script(N,Trie,Vars) :-write_nth_bdd_struct_script4065,133548 -write_global_bdd_file(NbVars,L) :-write_global_bdd_file4069,133667 -write_global_bdd_file(NbVars,L) :-write_global_bdd_file4069,133667 -write_global_bdd_file(NbVars,L) :-write_global_bdd_file4069,133667 -write_global_bdd_file_line(I,Max,_Handle) :-write_global_bdd_file_line4077,133940 -write_global_bdd_file_line(I,Max,_Handle) :-write_global_bdd_file_line4077,133940 -write_global_bdd_file_line(I,Max,_Handle) :-write_global_bdd_file_line4077,133940 -write_global_bdd_file_line(I,Max,Handle) :-write_global_bdd_file_line4080,133997 -write_global_bdd_file_line(I,Max,Handle) :-write_global_bdd_file_line4080,133997 -write_global_bdd_file_line(I,Max,Handle) :-write_global_bdd_file_line4080,133997 -write_global_bdd_file_query(Max,Max,Handle) :-write_global_bdd_file_query4086,134171 -write_global_bdd_file_query(Max,Max,Handle) :-write_global_bdd_file_query4086,134171 -write_global_bdd_file_query(Max,Max,Handle) :-write_global_bdd_file_query4086,134171 -write_global_bdd_file_query(I,Max,Handle) :-write_global_bdd_file_query4089,134253 -write_global_bdd_file_query(I,Max,Handle) :-write_global_bdd_file_query4089,134253 -write_global_bdd_file_query(I,Max,Handle) :-write_global_bdd_file_query4089,134253 -bdd_forest_file(N,BDDFile) :-bdd_forest_file4098,134533 -bdd_forest_file(N,BDDFile) :-bdd_forest_file4098,134533 -bdd_forest_file(N,BDDFile) :-bdd_forest_file4098,134533 -bdd_files(BDDFile,BDDParFile) :-bdd_files4103,134717 -bdd_files(BDDFile,BDDParFile) :-bdd_files4103,134717 -bdd_files(BDDFile,BDDParFile) :-bdd_files4103,134717 -bdd_file(BDDFile) :-bdd_file4107,134798 -bdd_file(BDDFile) :-bdd_file4107,134798 -bdd_file(BDDFile) :-bdd_file4107,134798 -bdd_par_file(BDDParFile) :-bdd_par_file4111,134915 -bdd_par_file(BDDParFile) :-bdd_par_file4111,134915 -bdd_par_file(BDDParFile) :-bdd_par_file4111,134915 -require(Feature) :-require4119,135199 -require(Feature) :-require4119,135199 -require(Feature) :-require4119,135199 -unrequire(Feature) :-unrequire4133,135623 -unrequire(Feature) :-unrequire4133,135623 -unrequire(Feature) :-unrequire4133,135623 -required(Feature) :-required4147,136024 -required(Feature) :-required4147,136024 -required(Feature) :-required4147,136024 -format_if_verbose(H,T,L) :-format_if_verbose4157,136366 -format_if_verbose(H,T,L) :-format_if_verbose4157,136366 -format_if_verbose(H,T,L) :-format_if_verbose4157,136366 -format_if_verbose(_,_,_).format_if_verbose4161,136443 -format_if_verbose(_,_,_).format_if_verbose4161,136443 -signal_decision(ClauseID,GroundID) :-signal_decision4166,136621 -signal_decision(ClauseID,GroundID) :-signal_decision4166,136621 -signal_decision(ClauseID,GroundID) :-signal_decision4166,136621 -user:term_expansion(Term,ExpandedTerm) :-term_expansion4185,137080 -user:term_expansion(Term,ExpandedTerm) :-term_expansion4185,137080 - -packages/ProbLog/problog_examples/alarm.pl,964 -t(_) :: hears_alarm(_Person).t36,914 -t(_) :: hears_alarm(_Person).t36,914 -myclause(person(mary), true).myclause46,1136 -myclause(person(mary), true).myclause46,1136 -myclause(person(john), true).myclause47,1166 -myclause(person(john), true).myclause47,1166 -myclause(alarm, burglary).myclause48,1196 -myclause(alarm, burglary).myclause48,1196 -myclause(alarm, earthquake).myclause49,1223 -myclause(alarm, earthquake).myclause49,1223 -myclause(calls(Person), (person(Person),alarm,hears_alarm(Person))).myclause50,1252 -myclause(calls(Person), (person(Person),alarm,hears_alarm(Person))).myclause50,1252 -example(1).example58,1413 -example(1).example58,1413 -example(2).example59,1425 -example(2).example59,1425 -known(1,alarm,true).known62,1453 -known(1,alarm,true).known62,1453 -known(2,earthquake,false).known65,1490 -known(2,earthquake,false).known65,1490 -known(2,calls(mary),true).known66,1517 -known(2,calls(mary),true).known66,1517 - -packages/ProbLog/problog_examples/aProbLog_examples.pl,7897 -path(X,Y) :- path(X,Y,[X],_).path14,448 -path(X,Y) :- path(X,Y,[X],_).path14,448 -path(X,Y) :- path(X,Y,[X],_).path14,448 -path(X,Y) :- path(X,Y,[X],_).path14,448 -path(X,Y) :- path(X,Y,[X],_).path14,448 -path(X,X,A,A).path16,479 -path(X,X,A,A).path16,479 -path(X,Y,A,R) :-path17,494 -path(X,Y,A,R) :-path17,494 -path(X,Y,A,R) :-path17,494 -edge(X,Y) :- dir_edge(Y,X).edge24,608 -edge(X,Y) :- dir_edge(Y,X).edge24,608 -edge(X,Y) :- dir_edge(Y,X).edge24,608 -edge(X,Y) :- dir_edge(Y,X).edge24,608 -edge(X,Y) :- dir_edge(Y,X).edge24,608 -edge(X,Y) :- dir_edge(X,Y).edge25,636 -edge(X,Y) :- dir_edge(X,Y).edge25,636 -edge(X,Y) :- dir_edge(X,Y).edge25,636 -edge(X,Y) :- dir_edge(X,Y).edge25,636 -edge(X,Y) :- dir_edge(X,Y).edge25,636 -absent(_,[]).absent28,716 -absent(_,[]).absent28,716 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent29,730 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent29,730 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent29,730 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent29,730 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent29,730 -semiring_zero(-inf).semiring_zero39,995 -semiring_zero(-inf).semiring_zero39,995 -semiring_one(inf).semiring_one40,1016 -semiring_one(inf).semiring_one40,1016 -label_negated(_W,N) :-label_negated41,1035 -label_negated(_W,N) :-label_negated41,1035 -label_negated(_W,N) :-label_negated41,1035 -semiring_addition(A,B,C) :-semiring_addition43,1076 -semiring_addition(A,B,C) :-semiring_addition43,1076 -semiring_addition(A,B,C) :-semiring_addition43,1076 -semiring_multiplication(A,B,C) :-semiring_multiplication45,1121 -semiring_multiplication(A,B,C) :-semiring_multiplication45,1121 -semiring_multiplication(A,B,C) :-semiring_multiplication45,1121 -semiring_zero(0-[]).semiring_zero72,1871 -semiring_zero(0-[]).semiring_zero72,1871 -semiring_one(1-[]).semiring_one73,1892 -semiring_one(1-[]).semiring_one73,1892 -label_negated(W-[A],WW-[not(A)]) :-label_negated74,1912 -label_negated(W-[A],WW-[not(A)]) :-label_negated74,1912 -label_negated(W-[A],WW-[not(A)]) :-label_negated74,1912 -semiring_addition(A-L,B-LL,C-LLL) :-semiring_addition76,1960 -semiring_addition(A-L,B-LL,C-LLL) :-semiring_addition76,1960 -semiring_addition(A-L,B-LL,C-LLL) :-semiring_addition76,1960 -semiring_multiplication(A-L,B-LL,C-LLL) :-semiring_multiplication85,2059 -semiring_multiplication(A-L,B-LL,C-LLL) :-semiring_multiplication85,2059 -semiring_multiplication(A-L,B-LL,C-LLL) :-semiring_multiplication85,2059 -semiring_zero((0,0)).semiring_zero110,2970 -semiring_zero((0,0)).semiring_zero110,2970 -semiring_one((1,0)).semiring_one111,2992 -semiring_one((1,0)).semiring_one111,2992 -label_negated((P,0),(P2,0)) :-label_negated113,3046 -label_negated((P,0),(P2,0)) :-label_negated113,3046 -label_negated((P,0),(P2,0)) :-label_negated113,3046 -label_negated((P,1),(P2,-1)) :-label_negated116,3093 -label_negated((P,1),(P2,-1)) :-label_negated116,3093 -label_negated((P,1),(P2,-1)) :-label_negated116,3093 -label_negated((P,[]),(P2,[])) :-label_negated119,3141 -label_negated((P,[]),(P2,[])) :-label_negated119,3141 -label_negated((P,[]),(P2,[])) :-label_negated119,3141 -label_negated((P,[0|R]),(P2,[0|R2])) :-label_negated122,3190 -label_negated((P,[0|R]),(P2,[0|R2])) :-label_negated122,3190 -label_negated((P,[0|R]),(P2,[0|R2])) :-label_negated122,3190 -label_negated((P,[1|R]),(P2,[-1|R2])) :-label_negated125,3265 -label_negated((P,[1|R]),(P2,[-1|R2])) :-label_negated125,3265 -label_negated((P,[1|R]),(P2,[-1|R2])) :-label_negated125,3265 -semiring_addition((A1,[FA|RA]),(B1,[FB|RB]),(C1,Res)) :-semiring_addition130,3390 -semiring_addition((A1,[FA|RA]),(B1,[FB|RB]),(C1,Res)) :-semiring_addition130,3390 -semiring_addition((A1,[FA|RA]),(B1,[FB|RB]),(C1,Res)) :-semiring_addition130,3390 -semiring_addition((A1,[FA|RA]),(B1,B2),(C1,Res)) :-semiring_addition135,3535 -semiring_addition((A1,[FA|RA]),(B1,B2),(C1,Res)) :-semiring_addition135,3535 -semiring_addition((A1,[FA|RA]),(B1,B2),(C1,Res)) :-semiring_addition135,3535 -semiring_addition((A1,A2),(B1,[FB|RB]),(C1,Res)) :-semiring_addition139,3651 -semiring_addition((A1,A2),(B1,[FB|RB]),(C1,Res)) :-semiring_addition139,3651 -semiring_addition((A1,A2),(B1,[FB|RB]),(C1,Res)) :-semiring_addition139,3651 -semiring_addition((A1,A2),(B1,B2),(C1,C2)) :-semiring_addition144,3795 -semiring_addition((A1,A2),(B1,B2),(C1,C2)) :-semiring_addition144,3795 -semiring_addition((A1,A2),(B1,B2),(C1,C2)) :-semiring_addition144,3795 -sum_lists_per_el([],[],[]).sum_lists_per_el148,3874 -sum_lists_per_el([],[],[]).sum_lists_per_el148,3874 -sum_lists_per_el([F|R],[FF|RR],[FFF|RRR]) :-sum_lists_per_el149,3902 -sum_lists_per_el([F|R],[FF|RR],[FFF|RRR]) :-sum_lists_per_el149,3902 -sum_lists_per_el([F|R],[FF|RR],[FFF|RRR]) :-sum_lists_per_el149,3902 -sum_lists_per_el_constant([],_,[]).sum_lists_per_el_constant153,3991 -sum_lists_per_el_constant([],_,[]).sum_lists_per_el_constant153,3991 -sum_lists_per_el_constant([F|R],C,[FFF|RRR]) :-sum_lists_per_el_constant154,4027 -sum_lists_per_el_constant([F|R],C,[FFF|RRR]) :-sum_lists_per_el_constant154,4027 -sum_lists_per_el_constant([F|R],C,[FFF|RRR]) :-sum_lists_per_el_constant154,4027 -semiring_multiplication((A1,[FA|RA]),(B1,[FB|RB]),(C1,Res)) :-semiring_multiplication159,4215 -semiring_multiplication((A1,[FA|RA]),(B1,[FB|RB]),(C1,Res)) :-semiring_multiplication159,4215 -semiring_multiplication((A1,[FA|RA]),(B1,[FB|RB]),(C1,Res)) :-semiring_multiplication159,4215 -semiring_multiplication((A1,[FA|RA]),(B1,B2),(C1,Res)) :-semiring_multiplication163,4345 -semiring_multiplication((A1,[FA|RA]),(B1,B2),(C1,Res)) :-semiring_multiplication163,4345 -semiring_multiplication((A1,[FA|RA]),(B1,B2),(C1,Res)) :-semiring_multiplication163,4345 -semiring_multiplication((A1,A2),(B1,[FB|RB]),(C1,Res)) :-semiring_multiplication167,4474 -semiring_multiplication((A1,A2),(B1,[FB|RB]),(C1,Res)) :-semiring_multiplication167,4474 -semiring_multiplication((A1,A2),(B1,[FB|RB]),(C1,Res)) :-semiring_multiplication167,4474 -semiring_multiplication((A1,A2),(B1,B2),(C1,C2)) :-semiring_multiplication171,4603 -semiring_multiplication((A1,A2),(B1,B2),(C1,C2)) :-semiring_multiplication171,4603 -semiring_multiplication((A1,A2),(B1,B2),(C1,C2)) :-semiring_multiplication171,4603 -mult_lists_per_el([],[],_,_,[]).mult_lists_per_el175,4692 -mult_lists_per_el([],[],_,_,[]).mult_lists_per_el175,4692 -mult_lists_per_el([F|R],[FF|RR],P,PP,[FFF|RRR]) :-mult_lists_per_el176,4725 -mult_lists_per_el([F|R],[FF|RR],P,PP,[FFF|RRR]) :-mult_lists_per_el176,4725 -mult_lists_per_el([F|R],[FF|RR],P,PP,[FFF|RRR]) :-mult_lists_per_el176,4725 -mult_lists_per_el_constant([],_,_,_,[]).mult_lists_per_el_constant180,4831 -mult_lists_per_el_constant([],_,_,_,[]).mult_lists_per_el_constant180,4831 -mult_lists_per_el_constant([F|R],C,P,PP,[FFF|RRR]) :-mult_lists_per_el_constant181,4872 -mult_lists_per_el_constant([F|R],C,P,PP,[FFF|RRR]) :-mult_lists_per_el_constant181,4872 -mult_lists_per_el_constant([F|R],C,P,PP,[FFF|RRR]) :-mult_lists_per_el_constant181,4872 -semiring_zero((0,0)).semiring_zero208,5727 -semiring_zero((0,0)).semiring_zero208,5727 -semiring_one((1,0)).semiring_one209,5749 -semiring_one((1,0)).semiring_one209,5749 -label_negated((P,_),(Q,0)) :- Q is 1-P.label_negated210,5770 -label_negated((P,_),(Q,0)) :- Q is 1-P.label_negated210,5770 -label_negated((P,_),(Q,0)) :- Q is 1-P.label_negated210,5770 -semiring_addition((A1,A2),(B1,B2),(C1,C2)) :-semiring_addition211,5810 -semiring_addition((A1,A2),(B1,B2),(C1,C2)) :-semiring_addition211,5810 -semiring_addition((A1,A2),(B1,B2),(C1,C2)) :-semiring_addition211,5810 -semiring_multiplication((A1,A2),(B1,B2),(C1,C2)) :-semiring_multiplication214,5884 -semiring_multiplication((A1,A2),(B1,B2),(C1,C2)) :-semiring_multiplication214,5884 -semiring_multiplication((A1,A2),(B1,B2),(C1,C2)) :-semiring_multiplication214,5884 - -packages/ProbLog/problog_examples/graph.pl,1067 -path(X,Y) :- path(X,Y,[X],_).path15,365 -path(X,Y) :- path(X,Y,[X],_).path15,365 -path(X,Y) :- path(X,Y,[X],_).path15,365 -path(X,Y) :- path(X,Y,[X],_).path15,365 -path(X,Y) :- path(X,Y,[X],_).path15,365 -path(X,X,A,A).path17,396 -path(X,X,A,A).path17,396 -path(X,Y,A,R) :-path18,411 -path(X,Y,A,R) :-path18,411 -path(X,Y,A,R) :-path18,411 -edge(X,Y) :- dir_edge(Y,X).edge25,525 -edge(X,Y) :- dir_edge(Y,X).edge25,525 -edge(X,Y) :- dir_edge(Y,X).edge25,525 -edge(X,Y) :- dir_edge(Y,X).edge25,525 -edge(X,Y) :- dir_edge(Y,X).edge25,525 -edge(X,Y) :- dir_edge(X,Y).edge26,553 -edge(X,Y) :- dir_edge(X,Y).edge26,553 -edge(X,Y) :- dir_edge(X,Y).edge26,553 -edge(X,Y) :- dir_edge(X,Y).edge26,553 -edge(X,Y) :- dir_edge(X,Y).edge26,553 -absent(_,[]).absent29,633 -absent(_,[]).absent29,633 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent30,647 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent30,647 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent30,647 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent30,647 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent30,647 - -packages/ProbLog/problog_examples/graph_tabled.pl,589 -:- dynamic path/2.dynamic21,631 -:- dynamic path/2.dynamic21,631 -path(X,X).path23,651 -path(X,X).path23,651 -path(X,Y) :-path24,662 -path(X,Y) :-path24,662 -path(X,Y) :-path24,662 -edge(X,Y) :- dir_edge(Y,X).edge33,879 -edge(X,Y) :- dir_edge(Y,X).edge33,879 -edge(X,Y) :- dir_edge(Y,X).edge33,879 -edge(X,Y) :- dir_edge(Y,X).edge33,879 -edge(X,Y) :- dir_edge(Y,X).edge33,879 -edge(X,Y) :- dir_edge(X,Y).edge34,907 -edge(X,Y) :- dir_edge(X,Y).edge34,907 -edge(X,Y) :- dir_edge(X,Y).edge34,907 -edge(X,Y) :- dir_edge(X,Y).edge34,907 -edge(X,Y) :- dir_edge(X,Y).edge34,907 - -packages/ProbLog/problog_examples/learn_graph.pl,5306 -path(X,Y) :- path(X,Y,[X],_).path24,683 -path(X,Y) :- path(X,Y,[X],_).path24,683 -path(X,Y) :- path(X,Y,[X],_).path24,683 -path(X,Y) :- path(X,Y,[X],_).path24,683 -path(X,Y) :- path(X,Y,[X],_).path24,683 -path(X,X,A,A).path26,714 -path(X,X,A,A).path26,714 -path(X,Y,A,R) :- path27,729 -path(X,Y,A,R) :- path27,729 -path(X,Y,A,R) :- path27,729 -edge(X,Y) :- dir_edge(Y,X).edge34,851 -edge(X,Y) :- dir_edge(Y,X).edge34,851 -edge(X,Y) :- dir_edge(Y,X).edge34,851 -edge(X,Y) :- dir_edge(Y,X).edge34,851 -edge(X,Y) :- dir_edge(Y,X).edge34,851 -edge(X,Y) :- dir_edge(X,Y).edge35,879 -edge(X,Y) :- dir_edge(X,Y).edge35,879 -edge(X,Y) :- dir_edge(X,Y).edge35,879 -edge(X,Y) :- dir_edge(X,Y).edge35,879 -edge(X,Y) :- dir_edge(X,Y).edge35,879 -absent(_,[]).absent38,959 -absent(_,[]).absent38,959 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,973 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,973 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,973 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,973 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,973 -t(0.9)::dir_edge(1,2).t46,1217 -t(0.9)::dir_edge(1,2).t46,1217 -t(0.8)::dir_edge(2,3).t47,1240 -t(0.8)::dir_edge(2,3).t47,1240 -t(0.6)::dir_edge(3,4).t48,1263 -t(0.6)::dir_edge(3,4).t48,1263 -t(0.7)::dir_edge(1,6).t49,1286 -t(0.7)::dir_edge(1,6).t49,1286 -t(0.5)::dir_edge(2,6).t50,1309 -t(0.5)::dir_edge(2,6).t50,1309 -t(0.4)::dir_edge(6,5).t51,1332 -t(0.4)::dir_edge(6,5).t51,1332 -t(0.7)::dir_edge(5,3).t52,1355 -t(0.7)::dir_edge(5,3).t52,1355 -t(0.2)::dir_edge(5,4).t53,1378 -t(0.2)::dir_edge(5,4).t53,1378 -example(1,path(1,2),0.94).example59,1499 -example(1,path(1,2),0.94).example59,1499 -example(2,path(1,3),0.81).example60,1526 -example(2,path(1,3),0.81).example60,1526 -example(3,path(1,4),0.54).example61,1553 -example(3,path(1,4),0.54).example61,1553 -example(4,path(1,5),0.70).example62,1580 -example(4,path(1,5),0.70).example62,1580 -example(5,path(1,6),0.87).example63,1607 -example(5,path(1,6),0.87).example63,1607 -example(6,path(2,3),0.85).example64,1634 -example(6,path(2,3),0.85).example64,1634 -example(7,path(2,4),0.57).example65,1661 -example(7,path(2,4),0.57).example65,1661 -example(8,path(2,5),0.72).example66,1688 -example(8,path(2,5),0.72).example66,1688 -example(9,path(2,6),0.86).example67,1715 -example(9,path(2,6),0.86).example67,1715 -example(10,path(3,4),0.66).example68,1742 -example(10,path(3,4),0.66).example68,1742 -example(11,path(3,5),0.80).example69,1770 -example(11,path(3,5),0.80).example69,1770 -example(12,path(3,6),0.75).example70,1798 -example(12,path(3,6),0.75).example70,1798 -example(13,path(4,5),0.57).example71,1826 -example(13,path(4,5),0.57).example71,1826 -example(14,path(4,6),0.51).example72,1854 -example(14,path(4,6),0.51).example72,1854 -example(15,path(5,6),0.69).example73,1882 -example(15,path(5,6),0.69).example73,1882 -example(16,(dir_edge(2,3),dir_edge(2,6),dir_edge(6,5),dir_edge(5,4)),0.032).example75,1952 -example(16,(dir_edge(2,3),dir_edge(2,6),dir_edge(6,5),dir_edge(5,4)),0.032).example75,1952 -example(17,(dir_edge(1,6),dir_edge(2,6),dir_edge(2,3),dir_edge(3,4)),0.168).example76,2029 -example(17,(dir_edge(1,6),dir_edge(2,6),dir_edge(2,3),dir_edge(3,4)),0.168).example76,2029 -example(18,(dir_edge(5,3),dir_edge(5,4)),0.14).example77,2106 -example(18,(dir_edge(5,3),dir_edge(5,4)),0.14).example77,2106 -example(19,(dir_edge(2,6),dir_edge(6,5)),0.2).example78,2154 -example(19,(dir_edge(2,6),dir_edge(6,5)),0.2).example78,2154 -example(20,(dir_edge(1,2),dir_edge(2,3),dir_edge(3,4)),0.432).example79,2201 -example(20,(dir_edge(1,2),dir_edge(2,3),dir_edge(3,4)),0.432).example79,2201 -test_example(21,path(2,1),0.94).test_example86,2420 -test_example(21,path(2,1),0.94).test_example86,2420 -test_example(22,path(3,1),0.81).test_example87,2453 -test_example(22,path(3,1),0.81).test_example87,2453 -test_example(23,path(4,1),0.54).test_example88,2486 -test_example(23,path(4,1),0.54).test_example88,2486 -test_example(24,path(5,1),0.70).test_example89,2519 -test_example(24,path(5,1),0.70).test_example89,2519 -test_example(25,path(6,1),0.87).test_example90,2552 -test_example(25,path(6,1),0.87).test_example90,2552 -test_example(26,path(3,2),0.85).test_example91,2585 -test_example(26,path(3,2),0.85).test_example91,2585 -test_example(27,path(4,2),0.57).test_example92,2618 -test_example(27,path(4,2),0.57).test_example92,2618 -test_example(28,path(5,2),0.72).test_example93,2651 -test_example(28,path(5,2),0.72).test_example93,2651 -test_example(29,path(6,2),0.86).test_example94,2684 -test_example(29,path(6,2),0.86).test_example94,2684 -test_example(30,path(4,3),0.66).test_example95,2717 -test_example(30,path(4,3),0.66).test_example95,2717 -test_example(31,path(5,3),0.80).test_example96,2750 -test_example(31,path(5,3),0.80).test_example96,2750 -test_example(32,path(6,3),0.75).test_example97,2783 -test_example(32,path(6,3),0.75).test_example97,2783 -test_example(33,path(5,4),0.57).test_example98,2816 -test_example(33,path(5,4),0.57).test_example98,2816 -test_example(34,path(6,4),0.51).test_example99,2849 -test_example(34,path(6,4),0.51).test_example99,2849 -test_example(35,path(6,5),0.69).test_example100,2882 -test_example(35,path(6,5),0.69).test_example100,2882 - -packages/ProbLog/problog_examples/learn_graph_lbdd.pl,5306 -path(X,Y) :- path(X,Y,[X],_).path24,688 -path(X,Y) :- path(X,Y,[X],_).path24,688 -path(X,Y) :- path(X,Y,[X],_).path24,688 -path(X,Y) :- path(X,Y,[X],_).path24,688 -path(X,Y) :- path(X,Y,[X],_).path24,688 -path(X,X,A,A).path26,719 -path(X,X,A,A).path26,719 -path(X,Y,A,R) :- path27,734 -path(X,Y,A,R) :- path27,734 -path(X,Y,A,R) :- path27,734 -edge(X,Y) :- dir_edge(Y,X).edge34,856 -edge(X,Y) :- dir_edge(Y,X).edge34,856 -edge(X,Y) :- dir_edge(Y,X).edge34,856 -edge(X,Y) :- dir_edge(Y,X).edge34,856 -edge(X,Y) :- dir_edge(Y,X).edge34,856 -edge(X,Y) :- dir_edge(X,Y).edge35,884 -edge(X,Y) :- dir_edge(X,Y).edge35,884 -edge(X,Y) :- dir_edge(X,Y).edge35,884 -edge(X,Y) :- dir_edge(X,Y).edge35,884 -edge(X,Y) :- dir_edge(X,Y).edge35,884 -absent(_,[]).absent38,964 -absent(_,[]).absent38,964 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,978 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,978 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,978 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,978 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent39,978 -t(0.9)::dir_edge(1,2).t46,1222 -t(0.9)::dir_edge(1,2).t46,1222 -t(0.8)::dir_edge(2,3).t47,1245 -t(0.8)::dir_edge(2,3).t47,1245 -t(0.6)::dir_edge(3,4).t48,1268 -t(0.6)::dir_edge(3,4).t48,1268 -t(0.7)::dir_edge(1,6).t49,1291 -t(0.7)::dir_edge(1,6).t49,1291 -t(0.5)::dir_edge(2,6).t50,1314 -t(0.5)::dir_edge(2,6).t50,1314 -t(0.4)::dir_edge(6,5).t51,1337 -t(0.4)::dir_edge(6,5).t51,1337 -t(0.7)::dir_edge(5,3).t52,1360 -t(0.7)::dir_edge(5,3).t52,1360 -t(0.2)::dir_edge(5,4).t53,1383 -t(0.2)::dir_edge(5,4).t53,1383 -example(1,path(1,2),0.94).example59,1504 -example(1,path(1,2),0.94).example59,1504 -example(2,path(1,3),0.81).example60,1531 -example(2,path(1,3),0.81).example60,1531 -example(3,path(1,4),0.54).example61,1558 -example(3,path(1,4),0.54).example61,1558 -example(4,path(1,5),0.70).example62,1585 -example(4,path(1,5),0.70).example62,1585 -example(5,path(1,6),0.87).example63,1612 -example(5,path(1,6),0.87).example63,1612 -example(6,path(2,3),0.85).example64,1639 -example(6,path(2,3),0.85).example64,1639 -example(7,path(2,4),0.57).example65,1666 -example(7,path(2,4),0.57).example65,1666 -example(8,path(2,5),0.72).example66,1693 -example(8,path(2,5),0.72).example66,1693 -example(9,path(2,6),0.86).example67,1720 -example(9,path(2,6),0.86).example67,1720 -example(10,path(3,4),0.66).example68,1747 -example(10,path(3,4),0.66).example68,1747 -example(11,path(3,5),0.80).example69,1775 -example(11,path(3,5),0.80).example69,1775 -example(12,path(3,6),0.75).example70,1803 -example(12,path(3,6),0.75).example70,1803 -example(13,path(4,5),0.57).example71,1831 -example(13,path(4,5),0.57).example71,1831 -example(14,path(4,6),0.51).example72,1859 -example(14,path(4,6),0.51).example72,1859 -example(15,path(5,6),0.69).example73,1887 -example(15,path(5,6),0.69).example73,1887 -example(16,(dir_edge(2,3),dir_edge(2,6),dir_edge(6,5),dir_edge(5,4)),0.032).example75,1957 -example(16,(dir_edge(2,3),dir_edge(2,6),dir_edge(6,5),dir_edge(5,4)),0.032).example75,1957 -example(17,(dir_edge(1,6),dir_edge(2,6),dir_edge(2,3),dir_edge(3,4)),0.168).example76,2034 -example(17,(dir_edge(1,6),dir_edge(2,6),dir_edge(2,3),dir_edge(3,4)),0.168).example76,2034 -example(18,(dir_edge(5,3),dir_edge(5,4)),0.14).example77,2111 -example(18,(dir_edge(5,3),dir_edge(5,4)),0.14).example77,2111 -example(19,(dir_edge(2,6),dir_edge(6,5)),0.2).example78,2159 -example(19,(dir_edge(2,6),dir_edge(6,5)),0.2).example78,2159 -example(20,(dir_edge(1,2),dir_edge(2,3),dir_edge(3,4)),0.432).example79,2206 -example(20,(dir_edge(1,2),dir_edge(2,3),dir_edge(3,4)),0.432).example79,2206 -test_example(21,path(2,1),0.94).test_example86,2425 -test_example(21,path(2,1),0.94).test_example86,2425 -test_example(22,path(3,1),0.81).test_example87,2458 -test_example(22,path(3,1),0.81).test_example87,2458 -test_example(23,path(4,1),0.54).test_example88,2491 -test_example(23,path(4,1),0.54).test_example88,2491 -test_example(24,path(5,1),0.70).test_example89,2524 -test_example(24,path(5,1),0.70).test_example89,2524 -test_example(25,path(6,1),0.87).test_example90,2557 -test_example(25,path(6,1),0.87).test_example90,2557 -test_example(26,path(3,2),0.85).test_example91,2590 -test_example(26,path(3,2),0.85).test_example91,2590 -test_example(27,path(4,2),0.57).test_example92,2623 -test_example(27,path(4,2),0.57).test_example92,2623 -test_example(28,path(5,2),0.72).test_example93,2656 -test_example(28,path(5,2),0.72).test_example93,2656 -test_example(29,path(6,2),0.86).test_example94,2689 -test_example(29,path(6,2),0.86).test_example94,2689 -test_example(30,path(4,3),0.66).test_example95,2722 -test_example(30,path(4,3),0.66).test_example95,2722 -test_example(31,path(5,3),0.80).test_example96,2755 -test_example(31,path(5,3),0.80).test_example96,2755 -test_example(32,path(6,3),0.75).test_example97,2788 -test_example(32,path(6,3),0.75).test_example97,2788 -test_example(33,path(5,4),0.57).test_example98,2821 -test_example(33,path(5,4),0.57).test_example98,2821 -test_example(34,path(6,4),0.51).test_example99,2854 -test_example(34,path(6,4),0.51).test_example99,2854 -test_example(35,path(6,5),0.69).test_example100,2887 -test_example(35,path(6,5),0.69).test_example100,2887 - -packages/ProbLog/problog_examples/office.pl,252 -in_office :- width(W),length(L), in_interval(W,2,4), in_interval(L,2,4).in_office16,380 -in_corridor :- width(W),length(L), below(W,2.5), above(L,3).in_corridor17,453 -room_has_window:-room_has_window19,515 -room_has_window:-room_has_window21,564 - -packages/ProbLog/problog_examples/viralmarketing.pl,3234 -buys(P) => 5 :- person(P).buys17,675 -buys(P) => 5 :- person(P).buys17,675 -marketed(P) => -2 :- person(P).marketed18,702 -marketed(P) => -2 :- person(P).marketed18,702 -person(bernd).person25,839 -person(bernd).person25,839 -person(ingo).person26,854 -person(ingo).person26,854 -person(theo).person27,868 -person(theo).person27,868 -person(angelika).person28,882 -person(angelika).person28,882 -person(guy).person29,900 -person(guy).person29,900 -person(martijn).person30,913 -person(martijn).person30,913 -person(laura).person31,930 -person(laura).person31,930 -person(kurt).person32,945 -person(kurt).person32,945 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,960 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,960 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,960 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,960 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,960 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,997 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,997 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,997 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,997 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,997 -trusts_directed(bernd,ingo).trusts_directed37,1035 -trusts_directed(bernd,ingo).trusts_directed37,1035 -trusts_directed(ingo,theo).trusts_directed38,1064 -trusts_directed(ingo,theo).trusts_directed38,1064 -trusts_directed(theo,angelika).trusts_directed39,1092 -trusts_directed(theo,angelika).trusts_directed39,1092 -trusts_directed(bernd,martijn).trusts_directed40,1124 -trusts_directed(bernd,martijn).trusts_directed40,1124 -trusts_directed(ingo,martijn).trusts_directed41,1156 -trusts_directed(ingo,martijn).trusts_directed41,1156 -trusts_directed(martijn,guy).trusts_directed42,1187 -trusts_directed(martijn,guy).trusts_directed42,1187 -trusts_directed(guy,theo).trusts_directed43,1217 -trusts_directed(guy,theo).trusts_directed43,1217 -trusts_directed(guy,angelika).trusts_directed44,1244 -trusts_directed(guy,angelika).trusts_directed44,1244 -trusts_directed(laura,ingo).trusts_directed45,1275 -trusts_directed(laura,ingo).trusts_directed45,1275 -trusts_directed(laura,theo).trusts_directed46,1304 -trusts_directed(laura,theo).trusts_directed46,1304 -trusts_directed(laura,guy).trusts_directed47,1333 -trusts_directed(laura,guy).trusts_directed47,1333 -trusts_directed(laura,martijn).trusts_directed48,1361 -trusts_directed(laura,martijn).trusts_directed48,1361 -trusts_directed(kurt,bernd).trusts_directed49,1393 -trusts_directed(kurt,bernd).trusts_directed49,1393 -buys(X) :- buys(X,[X]).buys51,1423 -buys(X) :- buys(X,[X]).buys51,1423 -buys(X) :- buys(X,[X]).buys51,1423 -buys(X) :- buys(X,[X]).buys51,1423 -buys(X) :- buys(X,[X]).buys51,1423 -buys(X, _) :-buys53,1448 -buys(X, _) :-buys53,1448 -buys(X, _) :-buys53,1448 -buys(X, Visited) :-buys56,1514 -buys(X, Visited) :-buys56,1514 -buys(X, Visited) :-buys56,1514 -absent(_,[]).absent62,1642 -absent(_,[]).absent62,1642 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent63,1656 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent63,1656 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent63,1656 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent63,1656 -absent(X,[Y|Z]):-X \= Y, absent(X,Z).absent63,1656 - -packages/ProbLog/problog_examples/viralmarketing_tabled.pl,2765 -buys(P) => 5 :- person(P).buys17,689 -buys(P) => 5 :- person(P).buys17,689 -marketed(P) => -2 :- person(P).marketed18,716 -marketed(P) => -2 :- person(P).marketed18,716 -person(bernd).person25,853 -person(bernd).person25,853 -person(ingo).person26,868 -person(ingo).person26,868 -person(theo).person27,882 -person(theo).person27,882 -person(angelika).person28,896 -person(angelika).person28,896 -person(guy).person29,914 -person(guy).person29,914 -person(martijn).person30,927 -person(martijn).person30,927 -person(laura).person31,944 -person(laura).person31,944 -person(kurt).person32,959 -person(kurt).person32,959 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,974 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,974 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,974 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,974 -trusts(X,Y) :- trusts_directed(X,Y).trusts34,974 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,1011 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,1011 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,1011 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,1011 -trusts(X,Y) :- trusts_directed(Y,X).trusts35,1011 -trusts_directed(bernd,ingo).trusts_directed37,1049 -trusts_directed(bernd,ingo).trusts_directed37,1049 -trusts_directed(ingo,theo).trusts_directed38,1078 -trusts_directed(ingo,theo).trusts_directed38,1078 -trusts_directed(theo,angelika).trusts_directed39,1106 -trusts_directed(theo,angelika).trusts_directed39,1106 -trusts_directed(bernd,martijn).trusts_directed40,1138 -trusts_directed(bernd,martijn).trusts_directed40,1138 -trusts_directed(ingo,martijn).trusts_directed41,1170 -trusts_directed(ingo,martijn).trusts_directed41,1170 -trusts_directed(martijn,guy).trusts_directed42,1201 -trusts_directed(martijn,guy).trusts_directed42,1201 -trusts_directed(guy,theo).trusts_directed43,1231 -trusts_directed(guy,theo).trusts_directed43,1231 -trusts_directed(guy,angelika).trusts_directed44,1258 -trusts_directed(guy,angelika).trusts_directed44,1258 -trusts_directed(laura,ingo).trusts_directed45,1289 -trusts_directed(laura,ingo).trusts_directed45,1289 -trusts_directed(laura,theo).trusts_directed46,1318 -trusts_directed(laura,theo).trusts_directed46,1318 -trusts_directed(laura,guy).trusts_directed47,1347 -trusts_directed(laura,guy).trusts_directed47,1347 -trusts_directed(laura,martijn).trusts_directed48,1375 -trusts_directed(laura,martijn).trusts_directed48,1375 -trusts_directed(kurt,bernd).trusts_directed49,1407 -trusts_directed(kurt,bernd).trusts_directed49,1407 -:- dynamic buys/1.dynamic54,1589 -:- dynamic buys/1.dynamic54,1589 -buys(X) :-buys56,1609 -buys(X) :-buys56,1609 -buys(X) :-buys56,1609 -buys(X) :-buys59,1672 -buys(X) :-buys59,1672 -buys(X) :-buys59,1672 - -packages/ProbLog/problog_lbdd.yap,1880 -problog_exact_lbdd(Goal,Prob,Status) :-problog_exact_lbdd9,178 -problog_exact_lbdd(Goal,Prob,Status) :-problog_exact_lbdd9,178 -problog_exact_lbdd(Goal,Prob,Status) :-problog_exact_lbdd9,178 -problog_low_lbdd(Goal, Threshold, _, _) :-problog_low_lbdd14,317 -problog_low_lbdd(Goal, Threshold, _, _) :-problog_low_lbdd14,317 -problog_low_lbdd(Goal, Threshold, _, _) :-problog_low_lbdd14,317 -problog_low_lbdd(_, _, Prob, ok) :-problog_low_lbdd21,484 -problog_low_lbdd(_, _, Prob, ok) :-problog_low_lbdd21,484 -problog_low_lbdd(_, _, Prob, ok) :-problog_low_lbdd21,484 -problog_kbest_bdd(Goal, K, Prob, ok) :-problog_kbest_bdd38,1059 -problog_kbest_bdd(Goal, K, Prob, ok) :-problog_kbest_bdd38,1059 -problog_kbest_bdd(Goal, K, Prob, ok) :-problog_kbest_bdd38,1059 -problog_kbest_as_bdd(Goal, K, bdd(Dir, Tree, MapList)) :-problog_kbest_as_bdd43,1236 -problog_kbest_as_bdd(Goal, K, bdd(Dir, Tree, MapList)) :-problog_kbest_as_bdd43,1236 -problog_kbest_as_bdd(Goal, K, bdd(Dir, Tree, MapList)) :-problog_kbest_as_bdd43,1236 -problog_kbest_to_bdd(Goal, K, BDD, MapList) :-problog_kbest_to_bdd48,1397 -problog_kbest_to_bdd(Goal, K, BDD, MapList) :-problog_kbest_to_bdd48,1397 -problog_kbest_to_bdd(Goal, K, BDD, MapList) :-problog_kbest_to_bdd48,1397 -problog_fl_bdd(Goal, _) :-problog_fl_bdd59,1793 -problog_fl_bdd(Goal, _) :-problog_fl_bdd59,1793 -problog_fl_bdd(Goal, _) :-problog_fl_bdd59,1793 -problog_fl_bdd(_,Prob) :-problog_fl_bdd66,1939 -problog_fl_bdd(_,Prob) :-problog_fl_bdd66,1939 -problog_fl_bdd(_,Prob) :-problog_fl_bdd66,1939 -bind_maplist([], []).bind_maplist76,2323 -bind_maplist([], []).bind_maplist76,2323 -bind_maplist([Node-_|MapList], [ProbFact|BoundVars]) :-bind_maplist77,2345 -bind_maplist([Node-_|MapList], [ProbFact|BoundVars]) :-bind_maplist77,2345 -bind_maplist([Node-_|MapList], [ProbFact|BoundVars]) :-bind_maplist77,2345 - -packages/ProbLog/problog_learning.yap,6013 -user:example(A,B,C,=) :-example250,10849 -user:example(A,B,C,=) :-example250,10849 -user:test_example(A,B,C,=) :-test_example256,11003 -user:test_example(A,B,C,=) :-test_example256,11003 -save_model:-save_model266,11347 -check_examples :-check_examples280,11710 -reset_learning :-reset_learning360,13770 -do_learning(Iterations) :-do_learning384,14565 -do_learning(Iterations) :-do_learning384,14565 -do_learning(Iterations) :-do_learning384,14565 -do_learning(Iterations,Epsilon) :-do_learning387,14622 -do_learning(Iterations,Epsilon) :-do_learning387,14622 -do_learning(Iterations,Epsilon) :-do_learning387,14622 -do_learning(_,_) :-do_learning394,14793 -do_learning(_,_) :-do_learning394,14793 -do_learning(_,_) :-do_learning394,14793 -do_learning_intern(0,_) :-do_learning_intern398,14887 -do_learning_intern(0,_) :-do_learning_intern398,14887 -do_learning_intern(0,_) :-do_learning_intern398,14887 -do_learning_intern(Iterations,Epsilon) :-do_learning_intern400,14918 -do_learning_intern(Iterations,Epsilon) :-do_learning_intern400,14918 -do_learning_intern(Iterations,Epsilon) :-do_learning_intern400,14918 -init_learning :-init_learning479,16579 -init_learning :-init_learning482,16623 -init_queries :-init_queries594,19651 -bdd_input_file(Filename) :-bdd_input_file599,19871 -bdd_input_file(Filename) :-bdd_input_file599,19871 -bdd_input_file(Filename) :-bdd_input_file599,19871 -init_one_query(QueryID,Query,Type) :-init_one_query603,19991 -init_one_query(QueryID,Query,Type) :-init_one_query603,19991 -init_one_query(QueryID,Query,Type) :-init_one_query603,19991 -update_values :-update_values657,21601 -update_values :-update_values660,21639 -update_query_cleanup(QueryID) :-update_query_cleanup713,23244 -update_query_cleanup(QueryID) :-update_query_cleanup713,23244 -update_query_cleanup(QueryID) :-update_query_cleanup713,23244 -update_query(QueryID,Symbol,What_To_Update) :-update_query724,23515 -update_query(QueryID,Symbol,What_To_Update) :-update_query724,23515 -update_query(QueryID,Symbol,What_To_Update) :-update_query724,23515 -my_load(File,QueryID) :-my_load799,25666 -my_load(File,QueryID) :-my_load799,25666 -my_load(File,QueryID) :-my_load799,25666 -my_load(File,QueryID) :-my_load804,25798 -my_load(File,QueryID) :-my_load804,25798 -my_load(File,QueryID) :-my_load804,25798 -my_load_intern(end_of_file,_,_) :-my_load_intern808,25925 -my_load_intern(end_of_file,_,_) :-my_load_intern808,25925 -my_load_intern(end_of_file,_,_) :-my_load_intern808,25925 -my_load_intern(query_probability(QueryID,Prob),Handle,QueryID) :-my_load_intern810,25964 -my_load_intern(query_probability(QueryID,Prob),Handle,QueryID) :-my_load_intern810,25964 -my_load_intern(query_probability(QueryID,Prob),Handle,QueryID) :-my_load_intern810,25964 -my_load_intern(query_gradient(QueryID,XFactID,Type,Value),Handle,QueryID) :-my_load_intern815,26136 -my_load_intern(query_gradient(QueryID,XFactID,Type,Value),Handle,QueryID) :-my_load_intern815,26136 -my_load_intern(query_gradient(QueryID,XFactID,Type,Value),Handle,QueryID) :-my_load_intern815,26136 -my_load_intern(X,Handle,QueryID) :-my_load_intern822,26399 -my_load_intern(X,Handle,QueryID) :-my_load_intern822,26399 -my_load_intern(X,Handle,QueryID) :-my_load_intern822,26399 -query_probability(QueryID,Prob) :-query_probability835,26712 -query_probability(QueryID,Prob) :-query_probability835,26712 -query_probability(QueryID,Prob) :-query_probability835,26712 -query_gradient(QueryID,Fact,Type,Value) :-query_gradient845,26905 -query_gradient(QueryID,Fact,Type,Value) :-query_gradient845,26905 -query_gradient(QueryID,Fact,Type,Value) :-query_gradient845,26905 -ground_truth_difference :-ground_truth_difference865,27291 -mse_trainingset_only_for_linesearch(MSE) :-mse_trainingset_only_for_linesearch898,28134 -mse_trainingset_only_for_linesearch(MSE) :-mse_trainingset_only_for_linesearch898,28134 -mse_trainingset_only_for_linesearch(MSE) :-mse_trainingset_only_for_linesearch898,28134 -mse_testset :-mse_testset925,28884 -sigmoid(T,Sig) :-sigmoid987,30961 -sigmoid(T,Sig) :-sigmoid987,30961 -sigmoid(T,Sig) :-sigmoid987,30961 -inv_sigmoid(T,InvSig) :-inv_sigmoid991,31045 -inv_sigmoid(T,InvSig) :-inv_sigmoid991,31045 -inv_sigmoid(T,InvSig) :-inv_sigmoid991,31045 -save_old_probabilities :-save_old_probabilities1010,31621 -forget_old_probabilities :-forget_old_probabilities1032,32091 -add_gradient(Learning_Rate) :-add_gradient1056,32628 -add_gradient(Learning_Rate) :-add_gradient1056,32628 -add_gradient(Learning_Rate) :-add_gradient1056,32628 -gradient_descent :-gradient_descent1097,33694 -line_search_evaluate_point(Learning_Rate,MSE) :-line_search_evaluate_point1312,40233 -line_search_evaluate_point(Learning_Rate,MSE) :-line_search_evaluate_point1312,40233 -line_search_evaluate_point(Learning_Rate,MSE) :-line_search_evaluate_point1312,40233 -lineSearch(Final_X,Final_Value) :-lineSearch1318,40417 -lineSearch(Final_X,Final_Value) :-lineSearch1318,40417 -lineSearch(Final_X,Final_Value) :-lineSearch1318,40417 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1414,42931 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1414,42931 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1414,42931 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1417,42975 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1417,42975 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1417,42975 -line_search_postcheck(_,_, LLH, FinalPosition) :-line_search_postcheck1420,43058 -line_search_postcheck(_,_, LLH, FinalPosition) :-line_search_postcheck1420,43058 -line_search_postcheck(_,_, LLH, FinalPosition) :-line_search_postcheck1420,43058 -my_5_min(V1,V2,V3,V4,V5,F1,F2,F3,F4,F5,VMin,FMin) :-my_5_min1456,43867 -my_5_min(V1,V2,V3,V4,V5,F1,F2,F3,F4,F5,VMin,FMin) :-my_5_min1456,43867 -my_5_min(V1,V2,V3,V4,V5,F1,F2,F3,F4,F5,VMin,FMin) :-my_5_min1456,43867 -init_flags :-init_flags1489,44500 -init_logger :-init_logger1510,46909 - -packages/ProbLog/problog_learning_lbdd.yap,10127 -user:example(A,B,C,=) :-example256,11073 -user:example(A,B,C,=) :-example256,11073 -user:test_example(A,B,C,=) :-test_example262,11230 -user:test_example(A,B,C,=) :-test_example262,11230 -save_model:-save_model273,11578 -check_examples :-check_examples287,11941 -reset_learning :-reset_learning367,14006 -do_learning(Iterations) :-do_learning391,14803 -do_learning(Iterations) :-do_learning391,14803 -do_learning(Iterations) :-do_learning391,14803 -do_learning(Iterations,Epsilon) :-do_learning394,14860 -do_learning(Iterations,Epsilon) :-do_learning394,14860 -do_learning(Iterations,Epsilon) :-do_learning394,14860 -do_learning(_,_) :-do_learning401,15031 -do_learning(_,_) :-do_learning401,15031 -do_learning(_,_) :-do_learning401,15031 -do_learning_intern(0,_) :-do_learning_intern405,15125 -do_learning_intern(0,_) :-do_learning_intern405,15125 -do_learning_intern(0,_) :-do_learning_intern405,15125 -do_learning_intern(Iterations,Epsilon) :-do_learning_intern407,15156 -do_learning_intern(Iterations,Epsilon) :-do_learning_intern407,15156 -do_learning_intern(Iterations,Epsilon) :-do_learning_intern407,15156 -init_learning :-init_learning486,16824 -init_learning :-init_learning489,16868 -init_queries :-init_queries605,20114 -bdd_input_file(Filename) :-bdd_input_file610,20334 -bdd_input_file(Filename) :-bdd_input_file610,20334 -bdd_input_file(Filename) :-bdd_input_file610,20334 -init_one_query(QueryID,Query,Type) :-init_one_query614,20454 -init_one_query(QueryID,Query,Type) :-init_one_query614,20454 -init_one_query(QueryID,Query,Type) :-init_one_query614,20454 -init_one_query(_QueryID,_Query,_Type).init_one_query648,21488 -init_one_query(_QueryID,_Query,_Type).init_one_query648,21488 -update_values :-update_values658,21863 -update_values :-update_values661,21901 -update_query_cleanup(QueryID) :-update_query_cleanup681,22365 -update_query_cleanup(QueryID) :-update_query_cleanup681,22365 -update_query_cleanup(QueryID) :-update_query_cleanup681,22365 -update_query(QueryID,Symbol,What_To_Update) :-update_query692,22636 -update_query(QueryID,Symbol,What_To_Update) :-update_query692,22636 -update_query(QueryID,Symbol,What_To_Update) :-update_query692,22636 -bind_maplist([]).bind_maplist706,22995 -bind_maplist([]).bind_maplist706,22995 -bind_maplist([Node-Theta|MapList]) :-bind_maplist707,23013 -bind_maplist([Node-Theta|MapList]) :-bind_maplist707,23013 -bind_maplist([Node-Theta|MapList]) :-bind_maplist707,23013 -get_prob(Node, Prob) :-get_prob714,23194 -get_prob(Node, Prob) :-get_prob714,23194 -get_prob(Node, Prob) :-get_prob714,23194 -gradient(QueryID, l, Slope) :-gradient717,23253 -gradient(QueryID, l, Slope) :-gradient717,23253 -gradient(QueryID, l, Slope) :-gradient717,23253 -gradient(_QueryID, l, _).gradient726,23569 -gradient(_QueryID, l, _).gradient726,23569 -gradient(QueryID, g, Slope) :-gradient727,23595 -gradient(QueryID, g, Slope) :-gradient727,23595 -gradient(QueryID, g, Slope) :-gradient727,23595 -gradient(QueryID, g, Slope) :-gradient736,23910 -gradient(QueryID, g, Slope) :-gradient736,23910 -gradient(QueryID, g, Slope) :-gradient736,23910 -maplist_to_hash([], H0, H0).maplist_to_hash739,23972 -maplist_to_hash([], H0, H0).maplist_to_hash739,23972 -maplist_to_hash([I-V|MapList], H0, Hash) :-maplist_to_hash740,24001 -maplist_to_hash([I-V|MapList], H0, Hash) :-maplist_to_hash740,24001 -maplist_to_hash([I-V|MapList], H0, Hash) :-maplist_to_hash740,24001 -tree_to_grad([], _, Grad, Grad).tree_to_grad744,24109 -tree_to_grad([], _, Grad, Grad).tree_to_grad744,24109 -tree_to_grad([Node|Tree], H, Grad0, Grad) :-tree_to_grad745,24142 -tree_to_grad([Node|Tree], H, Grad0, Grad) :-tree_to_grad745,24142 -tree_to_grad([Node|Tree], H, Grad0, Grad) :-tree_to_grad745,24142 -node_to_gradient_node(pp(P-G,X,L,R), H, gnodep(P,G,X,Id,PL,GL,PR,GR)) :-node_to_gradient_node749,24273 -node_to_gradient_node(pp(P-G,X,L,R), H, gnodep(P,G,X,Id,PL,GL,PR,GR)) :-node_to_gradient_node749,24273 -node_to_gradient_node(pp(P-G,X,L,R), H, gnodep(P,G,X,Id,PL,GL,PR,GR)) :-node_to_gradient_node749,24273 -node_to_gradient_node(pn(P-G,X,L,R), H, gnoden(P,G,X,Id,PL,GL,PR,GR)) :-node_to_gradient_node753,24490 -node_to_gradient_node(pn(P-G,X,L,R), H, gnoden(P,G,X,Id,PL,GL,PR,GR)) :-node_to_gradient_node753,24490 -node_to_gradient_node(pn(P-G,X,L,R), H, gnoden(P,G,X,Id,PL,GL,PR,GR)) :-node_to_gradient_node753,24490 -run_sp([], _, P0, P0).run_sp758,24716 -run_sp([], _, P0, P0).run_sp758,24716 -run_sp(gnodep(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp759,24739 -run_sp(gnodep(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp759,24739 -run_sp(gnodep(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp759,24739 -run_sp(gnodep(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp759,24739 -run_sp(gnodep(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp759,24739 -run_sp(gnoden(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp763,24901 -run_sp(gnoden(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp763,24901 -run_sp(gnoden(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp763,24901 -run_sp(gnoden(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp763,24901 -run_sp(gnoden(P,_G, X, _Id, PL, _GL, PR, _GR).Tree, Slope, _, PF) :-run_sp763,24901 -run_grad([], _I, _, G0, G0).run_grad768,25074 -run_grad([], _I, _, G0, G0).run_grad768,25074 -run_grad([gnodep(P,G, X, Id, PL, GL, PR, GR)|Tree], I, Slope, _, GF) :-run_grad769,25103 -run_grad([gnodep(P,G, X, Id, PL, GL, PR, GR)|Tree], I, Slope, _, GF) :-run_grad769,25103 -run_grad([gnodep(P,G, X, Id, PL, GL, PR, GR)|Tree], I, Slope, _, GF) :-run_grad769,25103 -run_grad([gnoden(P,G, X, Id, PL, GL, PR, GR)|Tree], I, Slope, _, GF) :-run_grad776,25382 -run_grad([gnoden(P,G, X, Id, PL, GL, PR, GR)|Tree], I, Slope, _, GF) :-run_grad776,25382 -run_grad([gnoden(P,G, X, Id, PL, GL, PR, GR)|Tree], I, Slope, _, GF) :-run_grad776,25382 -my_load(File,QueryID) :-my_load792,25976 -my_load(File,QueryID) :-my_load792,25976 -my_load(File,QueryID) :-my_load792,25976 -my_load(File,QueryID) :-my_load797,26108 -my_load(File,QueryID) :-my_load797,26108 -my_load(File,QueryID) :-my_load797,26108 -my_load_intern(end_of_file,_,_) :-my_load_intern801,26235 -my_load_intern(end_of_file,_,_) :-my_load_intern801,26235 -my_load_intern(end_of_file,_,_) :-my_load_intern801,26235 -my_load_intern(query_probability(QueryID,Prob),Handle,QueryID) :-my_load_intern803,26274 -my_load_intern(query_probability(QueryID,Prob),Handle,QueryID) :-my_load_intern803,26274 -my_load_intern(query_probability(QueryID,Prob),Handle,QueryID) :-my_load_intern803,26274 -my_load_intern(query_gradient(QueryID,XFactID,Type,Value),Handle,QueryID) :-my_load_intern808,26446 -my_load_intern(query_gradient(QueryID,XFactID,Type,Value),Handle,QueryID) :-my_load_intern808,26446 -my_load_intern(query_gradient(QueryID,XFactID,Type,Value),Handle,QueryID) :-my_load_intern808,26446 -my_load_intern(X,Handle,QueryID) :-my_load_intern815,26714 -my_load_intern(X,Handle,QueryID) :-my_load_intern815,26714 -my_load_intern(X,Handle,QueryID) :-my_load_intern815,26714 -query_probability(QueryID,Prob) :-query_probability828,27027 -query_probability(QueryID,Prob) :-query_probability828,27027 -query_probability(QueryID,Prob) :-query_probability828,27027 -query_gradient(QueryID,Fact,p,Value) :- !,query_gradient838,27220 -query_gradient(QueryID,Fact,p,Value) :- !,query_gradient838,27220 -query_gradient(QueryID,Fact,p,Value) :- !,query_gradient838,27220 -query_gradient(QueryID,Fact,Type,Value) :-query_gradient840,27310 -query_gradient(QueryID,Fact,Type,Value) :-query_gradient840,27310 -query_gradient(QueryID,Fact,Type,Value) :-query_gradient840,27310 -ground_truth_difference :-ground_truth_difference860,27696 -mse_trainingset_only_for_linesearch(MSE) :-mse_trainingset_only_for_linesearch893,28539 -mse_trainingset_only_for_linesearch(MSE) :-mse_trainingset_only_for_linesearch893,28539 -mse_trainingset_only_for_linesearch(MSE) :-mse_trainingset_only_for_linesearch893,28539 -mse_testset :-mse_testset920,29289 -sigmoid(T,Sig) :-sigmoid982,31367 -sigmoid(T,Sig) :-sigmoid982,31367 -sigmoid(T,Sig) :-sigmoid982,31367 -inv_sigmoid(T,InvSig) :-inv_sigmoid986,31451 -inv_sigmoid(T,InvSig) :-inv_sigmoid986,31451 -inv_sigmoid(T,InvSig) :-inv_sigmoid986,31451 -save_old_probabilities :-save_old_probabilities1005,32027 -forget_old_probabilities :-forget_old_probabilities1027,32497 -add_gradient(Learning_Rate) :-add_gradient1051,33034 -add_gradient(Learning_Rate) :-add_gradient1051,33034 -add_gradient(Learning_Rate) :-add_gradient1051,33034 -gradient_descent :-gradient_descent1094,34187 -line_search_evaluate_point(Learning_Rate,MSE) :-line_search_evaluate_point1303,40749 -line_search_evaluate_point(Learning_Rate,MSE) :-line_search_evaluate_point1303,40749 -line_search_evaluate_point(Learning_Rate,MSE) :-line_search_evaluate_point1303,40749 -lineSearch(Final_X,Final_Value) :-lineSearch1309,40933 -lineSearch(Final_X,Final_Value) :-lineSearch1309,40933 -lineSearch(Final_X,Final_Value) :-lineSearch1309,40933 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1405,43456 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1405,43456 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1405,43456 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1408,43500 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1408,43500 -line_search_postcheck(V,X,V,X) :-line_search_postcheck1408,43500 -line_search_postcheck(_,_, LLH, FinalPosition) :-line_search_postcheck1411,43583 -line_search_postcheck(_,_, LLH, FinalPosition) :-line_search_postcheck1411,43583 -line_search_postcheck(_,_, LLH, FinalPosition) :-line_search_postcheck1411,43583 -my_5_min(V1,V2,V3,V4,V5,F1,F2,F3,F4,F5,VMin,FMin) :-my_5_min1447,44394 -my_5_min(V1,V2,V3,V4,V5,F1,F2,F3,F4,F5,VMin,FMin) :-my_5_min1447,44394 -my_5_min(V1,V2,V3,V4,V5,F1,F2,F3,F4,F5,VMin,FMin) :-my_5_min1447,44394 -init_flags :-init_flags1480,45027 -init_logger :-init_logger1501,47405 - -packages/ProbLog/problog_lfi.yap,8657 -user:term_expansion(myclause((Head<--Body)), C) :-term_expansion252,10859 -user:term_expansion(myclause((Head<--Body)), C) :-term_expansion252,10859 -create_ground_tunable_fact(F,B) :-create_ground_tunable_fact266,11363 -create_ground_tunable_fact(F,B) :-create_ground_tunable_fact266,11363 -create_ground_tunable_fact(F,B) :-create_ground_tunable_fact266,11363 -create_ground_tunable_fact(_,_).create_ground_tunable_fact270,11435 -create_ground_tunable_fact(_,_).create_ground_tunable_fact270,11435 -save_model:-save_model279,11755 -is_mvs_aux_fact(A) :-is_mvs_aux_fact299,12304 -is_mvs_aux_fact(A) :-is_mvs_aux_fact299,12304 -is_mvs_aux_fact(A) :-is_mvs_aux_fact299,12304 -print_ad_intern(Handle,(Head<--Body),_ID,Facts) :-print_ad_intern303,12375 -print_ad_intern(Handle,(Head<--Body),_ID,Facts) :-print_ad_intern303,12375 -print_ad_intern(Handle,(Head<--Body),_ID,Facts) :-print_ad_intern303,12375 -print_ad_intern((A1;B1),[A2|B2],Mass,Handle) :-print_ad_intern307,12541 -print_ad_intern((A1;B1),[A2|B2],Mass,Handle) :-print_ad_intern307,12541 -print_ad_intern((A1;B1),[A2|B2],Mass,Handle) :-print_ad_intern307,12541 -print_ad_intern(_::Fact,[],Mass,Handle) :-print_ad_intern311,12709 -print_ad_intern(_::Fact,[],Mass,Handle) :-print_ad_intern311,12709 -print_ad_intern(_::Fact,[],Mass,Handle) :-print_ad_intern311,12709 -print_ad_intern_one(_::Fact,_::AuxFact,Mass,NewMass,Handle) :-print_ad_intern_one314,12809 -print_ad_intern_one(_::Fact,_::AuxFact,Mass,NewMass,Handle) :-print_ad_intern_one314,12809 -print_ad_intern_one(_::Fact,_::AuxFact,Mass,NewMass,Handle) :-print_ad_intern_one314,12809 -do_learning(Iterations) :-do_learning327,13344 -do_learning(Iterations) :-do_learning327,13344 -do_learning(Iterations) :-do_learning327,13344 -do_learning(Iterations,Epsilon) :-do_learning330,13401 -do_learning(Iterations,Epsilon) :-do_learning330,13401 -do_learning(Iterations,Epsilon) :-do_learning330,13401 -do_learning_intern(0,_) :-do_learning_intern340,13588 -do_learning_intern(0,_) :-do_learning_intern340,13588 -do_learning_intern(0,_) :-do_learning_intern340,13588 -do_learning_intern(Iterations,Epsilon) :-do_learning_intern342,13619 -do_learning_intern(Iterations,Epsilon) :-do_learning_intern342,13619 -do_learning_intern(Iterations,Epsilon) :-do_learning_intern342,13619 -init_learning :-init_learning408,15072 -init_learning :-init_learning411,15116 -check_theory :-check_theory495,17390 -initialize_fact_probabilities :-initialize_fact_probabilities585,20605 -copy_back_fact_probabilities :-copy_back_fact_probabilities592,20782 -init_queries :-init_queries609,21232 -init_one_query(QueryID,_Query_Type) :-init_one_query662,22742 -init_one_query(QueryID,_Query_Type) :-init_one_query662,22742 -init_one_query(QueryID,_Query_Type) :-init_one_query662,22742 -init_one_query(QueryID,Query_Type) :-init_one_query673,23049 -init_one_query(QueryID,Query_Type) :-init_one_query673,23049 -init_one_query(QueryID,Query_Type) :-init_one_query673,23049 -create_test_query_cluster_list(L2) :-create_test_query_cluster_list680,23207 -create_test_query_cluster_list(L2) :-create_test_query_cluster_list680,23207 -create_test_query_cluster_list(L2) :-create_test_query_cluster_list680,23207 -calc_all_md5([],[]).calc_all_md5702,23899 -calc_all_md5([],[]).calc_all_md5702,23899 -calc_all_md5([a(QueryID,ClusterID)|T],[a(QueryID,ClusterID,MD5)|T2]) :-calc_all_md5703,23920 -calc_all_md5([a(QueryID,ClusterID)|T],[a(QueryID,ClusterID,MD5)|T2]) :-calc_all_md5703,23920 -calc_all_md5([a(QueryID,ClusterID)|T],[a(QueryID,ClusterID,MD5)|T2]) :-calc_all_md5703,23920 -create_training_query_cluster_list(L2) :-create_training_query_cluster_list708,24092 -create_training_query_cluster_list(L2) :-create_training_query_cluster_list708,24092 -create_training_query_cluster_list(L2) :-create_training_query_cluster_list708,24092 -reset_learning :-reset_learning734,24868 -llh_testset :-llh_testset767,25733 -llh_testset :-llh_testset806,26751 -ground_truth_difference :-ground_truth_difference820,26944 -write_probabilities_file :-write_probabilities_file852,27735 -update_query(QueryID,ClusterID ,Method,Command,PID,Output_File_Name) :-update_query879,28322 -update_query(QueryID,ClusterID ,Method,Command,PID,Output_File_Name) :-update_query879,28322 -update_query(QueryID,ClusterID ,Method,Command,PID,Output_File_Name) :-update_query879,28322 -update_query_wait(QueryID,_ClusterID,Count,Symbol,Command,PID,OutputFilename,BDD_Probability) :-update_query_wait897,28954 -update_query_wait(QueryID,_ClusterID,Count,Symbol,Command,PID,OutputFilename,BDD_Probability) :-update_query_wait897,28954 -update_query_wait(QueryID,_ClusterID,Count,Symbol,Command,PID,OutputFilename,BDD_Probability) :-update_query_wait897,28954 -my_load_allinone(File,QueryID,Count,BDD_Probability) :-my_load_allinone930,29694 -my_load_allinone(File,QueryID,Count,BDD_Probability) :-my_load_allinone930,29694 -my_load_allinone(File,QueryID,Count,BDD_Probability) :-my_load_allinone930,29694 -my_load_allinone(File,QueryID,_,_,_,_) :-my_load_allinone937,29899 -my_load_allinone(File,QueryID,_,_,_,_) :-my_load_allinone937,29899 -my_load_allinone(File,QueryID,_,_,_,_) :-my_load_allinone937,29899 -my_load_intern_allinone(end_of_file,_,_,_,BDD_Probability,BDD_Probability) :-my_load_intern_allinone941,30043 -my_load_intern_allinone(end_of_file,_,_,_,BDD_Probability,BDD_Probability) :-my_load_intern_allinone941,30043 -my_load_intern_allinone(end_of_file,_,_,_,BDD_Probability,BDD_Probability) :-my_load_intern_allinone941,30043 -my_load_intern_allinone(query_probability(QueryID,Prob),Handle,QueryID,Count,Old_BDD_Probability,BDD_Probability) :-my_load_intern_allinone943,30125 -my_load_intern_allinone(query_probability(QueryID,Prob),Handle,QueryID,Count,Old_BDD_Probability,BDD_Probability) :-my_load_intern_allinone943,30125 -my_load_intern_allinone(query_probability(QueryID,Prob),Handle,QueryID,Count,Old_BDD_Probability,BDD_Probability) :-my_load_intern_allinone943,30125 -my_load_intern_allinone(ec(QueryID,VarName,Value),Handle,QueryID,Count,Old_BDD_Probability,BDD_Probability) :-my_load_intern_allinone954,30563 -my_load_intern_allinone(ec(QueryID,VarName,Value),Handle,QueryID,Count,Old_BDD_Probability,BDD_Probability) :-my_load_intern_allinone954,30563 -my_load_intern_allinone(ec(QueryID,VarName,Value),Handle,QueryID,Count,Old_BDD_Probability,BDD_Probability) :-my_load_intern_allinone954,30563 -my_load_intern_allinone(X,Handle,QueryID,Count,Old_BDD_Probability,BDD_Probability) :-my_load_intern_allinone962,30969 -my_load_intern_allinone(X,Handle,QueryID,Count,Old_BDD_Probability,BDD_Probability) :-my_load_intern_allinone962,30969 -my_load_intern_allinone(X,Handle,QueryID,Count,Old_BDD_Probability,BDD_Probability) :-my_load_intern_allinone962,30969 -my_reset_static_array(Name) :-my_reset_static_array971,31404 -my_reset_static_array(Name) :-my_reset_static_array971,31404 -my_reset_static_array(Name) :-my_reset_static_array971,31404 -em_one_iteration :-em_one_iteration987,31735 -evaluate_bdds([],_,_,_,_,LLH,LLH).evaluate_bdds1098,34890 -evaluate_bdds([],_,_,_,_,LLH,LLH).evaluate_bdds1098,34890 -evaluate_bdds([H|T],Handle,Parallel_Processes,Type,Symbol,OldLLH,LLH) :-evaluate_bdds1099,34925 -evaluate_bdds([H|T],Handle,Parallel_Processes,Type,Symbol,OldLLH,LLH) :-evaluate_bdds1099,34925 -evaluate_bdds([H|T],Handle,Parallel_Processes,Type,Symbol,OldLLH,LLH) :-evaluate_bdds1099,34925 -evaluate_bdds_start([],_,[]).evaluate_bdds_start1107,35320 -evaluate_bdds_start([],_,[]).evaluate_bdds_start1107,35320 -evaluate_bdds_start([a(QueryID,ClusterID,Count)|T],Type,[job(QueryID,ClusterID,Count,Command,PID,OutputFilename)|T2]) :-evaluate_bdds_start1108,35350 -evaluate_bdds_start([a(QueryID,ClusterID,Count)|T],Type,[job(QueryID,ClusterID,Count,Command,PID,OutputFilename)|T2]) :-evaluate_bdds_start1108,35350 -evaluate_bdds_start([a(QueryID,ClusterID,Count)|T],Type,[job(QueryID,ClusterID,Count,Command,PID,OutputFilename)|T2]) :-evaluate_bdds_start1108,35350 -evaluate_bdds_stop([],_,_,LLH,LLH).evaluate_bdds_stop1111,35576 -evaluate_bdds_stop([],_,_,LLH,LLH).evaluate_bdds_stop1111,35576 -evaluate_bdds_stop([job(ID,ClusterID,Count,Command,PID,OutputFilename)|T],Handle,Symbol,OldLLH,LLH) :-evaluate_bdds_stop1112,35612 -evaluate_bdds_stop([job(ID,ClusterID,Count,Command,PID,OutputFilename)|T],Handle,Symbol,OldLLH,LLH) :-evaluate_bdds_stop1112,35612 -evaluate_bdds_stop([job(ID,ClusterID,Count,Command,PID,OutputFilename)|T],Handle,Symbol,OldLLH,LLH) :-evaluate_bdds_stop1112,35612 -init_flags :-init_flags1131,36448 -init_logger :-init_logger1146,37859 - -packages/ProbLog/README,0 - -packages/prosqlite/c/prosqlite.c,1798 -atom_t row_atom;row_atom8,111 -functor_t minus2_functor;minus2_functor9,128 -static atom_t ATOM_true;ATOM_true11,155 -static atom_t ATOM_false;ATOM_false12,180 -int PL_SQLite_Connection_release(atom_t connection)PL_SQLite_Connection_release18,333 -PL_blob_t PL_SQLite_Connection = {PL_SQLite_Connection25,426 -static foreign_t c_sqlite_connect(term_t filename, term_t connection)c_sqlite_connect36,628 -static foreign_t c_sqlite_disconnect(term_t connection)c_sqlite_disconnect55,1000 -typedef struct query_contextquery_context74,1378 - sqlite3_stmt* statement;statement76,1409 - sqlite3_stmt* statement;query_context::statement76,1409 - functor_t row_functor;row_functor77,1436 - functor_t row_functor;query_context::row_functor77,1436 - int num_columns;num_columns78,1461 - int num_columns;query_context::num_columns78,1461 - int* column_types;column_types79,1480 - int* column_types;query_context::column_types79,1480 -} query_context;query_context80,1501 -static query_context* new_query_context(sqlite3_stmt* statement)new_query_context83,1520 -static void free_query_context(query_context* context)free_query_context100,2048 -static int unify_row_term(term_t row, query_context* context)unify_row_term108,2197 -static foreign_t c_sqlite_version(term_t ver, term_t datem)c_sqlite_version167,3771 -static int raise_sqlite_exception(sqlite3* db)raise_sqlite_exception182,4279 -static int formatted_string(term_t in, char** out)formatted_string196,4621 -static int get_query_string(term_t tquery, char** query)get_query_string229,5289 -static foreign_t c_sqlite_query(term_t connection, term_t query, term_t row,c_sqlite_query241,5783 -install_t install_prosqlite(void)install_prosqlite328,8053 -install_t uninstall_prosqlite(void)uninstall_prosqlite344,8556 - -packages/prosqlite/doc/prosqlite.html,1129 - sqlite_version/273,4378 - sqlite_binary_version/281,4708 - sqlite_citation/291,5267 - sqlite_connect/2101,5766 - sqlite_connect/3113,6268 - sqlite_disconnect/1185,9699 - sqlite_current_connection/1196,10036 - sqlite_default_connection/1204,10338 - sqlite_query/2213,10675 - sqlite_query/3221,10980 - sqlite_format_query/3229,11308 - sqlite_current_table/2241,11832 - sqlite_current_table/3249,12164 - sqlite_table_column/3258,12551 - sqlite_table_column/4266,12902 - sqlite_pragma/3281,13599 - sqlite_table_count/3293,14069 - sqlite_date_sql_atom/2301,14422 - -packages/prosqlite/examples/predicated.pl,764 -predicated :-predicated5,78 -end_bit :-end_bit17,404 -create_db :-create_db23,544 -interrogate :-interrogate31,800 -report_phones_db :-report_phones_db76,2730 -create( C ) :-create82,2939 -create( C ) :-create82,2939 -create( C ) :-create82,2939 -insert( I ) :-insert85,3056 -insert( I ) :-insert85,3056 -insert( I ) :-insert85,3056 -insert( I ) :-insert87,3158 -insert( I ) :-insert87,3158 -insert( I ) :-insert87,3158 -close_db :-close_db91,3368 -does_not_exist( Sfile ) :-does_not_exist95,3469 -does_not_exist( Sfile ) :-does_not_exist95,3469 -does_not_exist( Sfile ) :-does_not_exist95,3469 -does_not_exist( _Sfile ).does_not_exist102,3649 -does_not_exist( _Sfile ).does_not_exist102,3649 -del :- delete_file('phones.sqlite').del104,3676 - -packages/prosqlite/examples/simple.pl,288 -:- multifile user:message_poperty/2.multifile28,518 -:- multifile user:message_poperty/2.multifile28,518 -message_property(debug(sqlite), color([fg(yellow)])).message_property29,555 -message_property(debug(sqlite), color([fg(yellow)])).message_property29,555 -simple :-simple31,610 - -packages/prosqlite/examples/uniprot.pl,331 -uniprot :-uniprot85,1931 -show_tables :-show_tables121,3555 -show_tables :-show_tables125,3658 -show_columns :-show_columns128,3683 -show_columns :-show_columns132,3789 -show_counts :-show_counts135,3815 -show_counts :-show_counts140,3962 -findall_counts :-findall_counts143,3987 -findall_counts :-findall_counts151,4215 - -packages/prosqlite/pack.pl,1292 -name(prosqlite).name1,0 -name(prosqlite).name1,0 -version('0.1.2').version2,17 -version('0.1.2').version2,17 -title('An SWI-Prolog interface to SQLite').title3,35 -title('An SWI-Prolog interface to SQLite').title3,35 -keywords([sqlite,database,sql]).keywords4,79 -keywords([sqlite,database,sql]).keywords4,79 -author( 'Sander Canisius', 'http://bioinformatics.nki.nl/~canisius' ).author5,112 -author( 'Sander Canisius', 'http://bioinformatics.nki.nl/~canisius' ).author5,112 -author( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).author6,183 -author( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).author6,183 -packager( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).packager7,246 -packager( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).packager7,246 -maintainer( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).maintainer8,311 -maintainer( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).maintainer8,311 -home( 'http://stoics.org.uk/~nicos/sware/prosqlite' ).home9,378 -home( 'http://stoics.org.uk/~nicos/sware/prosqlite' ).home9,378 -download( 'http://stoics.org.uk/~nicos/sware/packs/prosqlite/prosqlite-*.tgz' ).download10,433 -download( 'http://stoics.org.uk/~nicos/sware/packs/prosqlite/prosqlite-*.tgz' ).download10,433 - -packages/prosqlite/prolog/prosqlite.pl,22631 -arity_flag_values( [arity,unary,both,palette] ).arity_flag_values100,4118 -arity_flag_values( [arity,unary,both,palette] ).arity_flag_values100,4118 -sqlite_version( 0:1:2, date(2013,11,1) ).sqlite_version108,4326 -sqlite_version( 0:1:2, date(2013,11,1) ).sqlite_version108,4326 -sqlite_binary_version( Ver, Date ) :-sqlite_binary_version115,4689 -sqlite_binary_version( Ver, Date ) :-sqlite_binary_version115,4689 -sqlite_binary_version( Ver, Date ) :-sqlite_binary_version115,4689 -sqlite_citation( Atom, bibtex(Type,Key,Pairs) ) :-sqlite_citation122,5046 -sqlite_citation( Atom, bibtex(Type,Key,Pairs) ) :-sqlite_citation122,5046 -sqlite_citation( Atom, bibtex(Type,Key,Pairs) ) :-sqlite_citation122,5046 -sqlite_citation( Atom, bibtex(Type,Key,Pairs) ) :-sqlite_citation137,5877 -sqlite_citation( Atom, bibtex(Type,Key,Pairs) ) :-sqlite_citation137,5877 -sqlite_citation( Atom, bibtex(Type,Key,Pairs) ) :-sqlite_citation137,5877 -sqlite_connect(File, Conn) :-sqlite_connect162,6991 -sqlite_connect(File, Conn) :-sqlite_connect162,6991 -sqlite_connect(File, Conn) :-sqlite_connect162,6991 -sqlite_connect(FileIn, Conn, OptIn) :-sqlite_connect242,10702 -sqlite_connect(FileIn, Conn, OptIn) :-sqlite_connect242,10702 -sqlite_connect(FileIn, Conn, OptIn) :-sqlite_connect242,10702 -sqlite_connect_1(File, _Conn, Opts) :-sqlite_connect_1248,10964 -sqlite_connect_1(File, _Conn, Opts) :-sqlite_connect_1248,10964 -sqlite_connect_1(File, _Conn, Opts) :-sqlite_connect_1248,10964 -sqlite_connect_1(File1, Conn, Opts) :-sqlite_connect_1253,11137 -sqlite_connect_1(File1, Conn, Opts) :-sqlite_connect_1253,11137 -sqlite_connect_1(File1, Conn, Opts) :-sqlite_connect_1253,11137 -sqlite_connect_1(File, Alias, Opts) :-sqlite_connect_1263,11455 -sqlite_connect_1(File, Alias, Opts) :-sqlite_connect_1263,11455 -sqlite_connect_1(File, Alias, Opts) :-sqlite_connect_1263,11455 -sqlite_connect(File, Conn, Opts) :-sqlite_connect286,12154 -sqlite_connect(File, Conn, Opts) :-sqlite_connect286,12154 -sqlite_connect(File, Conn, Opts) :-sqlite_connect286,12154 -sqlite_disconnect :-sqlite_disconnect294,12359 -sqlite_disconnect( Alias ) :-sqlite_disconnect308,12622 -sqlite_disconnect( Alias ) :-sqlite_disconnect308,12622 -sqlite_disconnect( Alias ) :-sqlite_disconnect308,12622 -sqlite_disconnect( Alias ) :-sqlite_disconnect317,13016 -sqlite_disconnect( Alias ) :-sqlite_disconnect317,13016 -sqlite_disconnect( Alias ) :-sqlite_disconnect317,13016 -sqlite_clean_up_predicated_for( Conn, pam(Pname,Arity,Mod) ) :-sqlite_clean_up_predicated_for320,13092 -sqlite_clean_up_predicated_for( Conn, pam(Pname,Arity,Mod) ) :-sqlite_clean_up_predicated_for320,13092 -sqlite_clean_up_predicated_for( Conn, pam(Pname,Arity,Mod) ) :-sqlite_clean_up_predicated_for320,13092 -sqlite_current_connection(Conn) :-sqlite_current_connection330,13437 -sqlite_current_connection(Conn) :-sqlite_current_connection330,13437 -sqlite_current_connection(Conn) :-sqlite_current_connection330,13437 -sqlite_default_connection(Alias) :-sqlite_default_connection338,13655 -sqlite_default_connection(Alias) :-sqlite_default_connection338,13655 -sqlite_default_connection(Alias) :-sqlite_default_connection338,13655 -sqlite_query(Sql, Row) :-sqlite_query346,13838 -sqlite_query(Sql, Row) :-sqlite_query346,13838 -sqlite_query(Sql, Row) :-sqlite_query346,13838 -sqlite_query(Alias, Query, Row) :-sqlite_query354,14055 -sqlite_query(Alias, Query, Row) :-sqlite_query354,14055 -sqlite_query(Alias, Query, Row) :-sqlite_query354,14055 -sqlite_format_query(Alias, Format-Arguments, Row) :-sqlite_format_query369,14541 -sqlite_format_query(Alias, Format-Arguments, Row) :-sqlite_format_query369,14541 -sqlite_format_query(Alias, Format-Arguments, Row) :-sqlite_format_query369,14541 -sqlite_current_table(Alias, Table) :-sqlite_current_table377,14803 -sqlite_current_table(Alias, Table) :-sqlite_current_table377,14803 -sqlite_current_table(Alias, Table) :-sqlite_current_table377,14803 -sqlite_current_table(Alias, Table) :-sqlite_current_table381,14949 -sqlite_current_table(Alias, Table) :-sqlite_current_table381,14949 -sqlite_current_table(Alias, Table) :-sqlite_current_table381,14949 -sqlite_current_table(Connection, Table, Facet ) :-sqlite_current_table392,15369 -sqlite_current_table(Connection, Table, Facet ) :-sqlite_current_table392,15369 -sqlite_current_table(Connection, Table, Facet ) :-sqlite_current_table392,15369 -sqlite_table_column( Alias, Table, Column ) :-sqlite_table_column400,15673 -sqlite_table_column( Alias, Table, Column ) :-sqlite_table_column400,15673 -sqlite_table_column( Alias, Table, Column ) :-sqlite_table_column400,15673 -sqlite_table_column(Alias, Table, Column, Facet) :-sqlite_table_column413,16249 -sqlite_table_column(Alias, Table, Column, Facet) :-sqlite_table_column413,16249 -sqlite_table_column(Alias, Table, Column, Facet) :-sqlite_table_column413,16249 -sqlite_pragma_info_facet( row(Nth0,_,_,_,_,_), position(Nth0) ).sqlite_pragma_info_facet419,16480 -sqlite_pragma_info_facet( row(Nth0,_,_,_,_,_), position(Nth0) ).sqlite_pragma_info_facet419,16480 -sqlite_pragma_info_facet( row(_,_,Dtype,_,_,_), data_type(Dtype) ).sqlite_pragma_info_facet420,16545 -sqlite_pragma_info_facet( row(_,_,Dtype,_,_,_), data_type(Dtype) ).sqlite_pragma_info_facet420,16545 -sqlite_pragma_info_facet( row(_,_,_,Null,_,_), nullable(Null) ). % fixme, ensure same semantics as ODBCsqlite_pragma_info_facet421,16613 -sqlite_pragma_info_facet( row(_,_,_,Null,_,_), nullable(Null) ). % fixme, ensure same semantics as ODBCsqlite_pragma_info_facet421,16613 -sqlite_pragma_info_facet( row(_,_,_,_,Default,_), default(Default) ).sqlite_pragma_info_facet422,16718 -sqlite_pragma_info_facet( row(_,_,_,_,Default,_), default(Default) ).sqlite_pragma_info_facet422,16718 -sqlite_pragma_info_facet( row(_,_,_,_,_,Key), primary_key(Key) ).sqlite_pragma_info_facet423,16788 -sqlite_pragma_info_facet( row(_,_,_,_,_,Key), primary_key(Key) ).sqlite_pragma_info_facet423,16788 -sqlite_pragma( Alias, Pragma-Par, Row ) :-sqlite_pragma433,17106 -sqlite_pragma( Alias, Pragma-Par, Row ) :-sqlite_pragma433,17106 -sqlite_pragma( Alias, Pragma-Par, Row ) :-sqlite_pragma433,17106 -sqlite_pragma( Alias, Pragma, Row ) :-sqlite_pragma437,17269 -sqlite_pragma( Alias, Pragma, Row ) :-sqlite_pragma437,17269 -sqlite_pragma( Alias, Pragma, Row ) :-sqlite_pragma437,17269 -pragmas_comm( [shrink_memory] ).pragmas_comm442,17494 -pragmas_comm( [shrink_memory] ).pragmas_comm442,17494 -set_table( Alias, Table ) :-set_table445,17529 -set_table( Alias, Table ) :-set_table445,17529 -set_table( Alias, Table ) :-set_table445,17529 -sqlite_table_count(Alias, Table, Count) :-sqlite_table_count456,17797 -sqlite_table_count(Alias, Table, Count) :-sqlite_table_count456,17797 -sqlite_table_count(Alias, Table, Count) :-sqlite_table_count456,17797 -sqlite_date_sql_atom( date(Y,M,D), Sql ) :-sqlite_date_sql_atom466,18072 -sqlite_date_sql_atom( date(Y,M,D), Sql ) :-sqlite_date_sql_atom466,18072 -sqlite_date_sql_atom( date(Y,M,D), Sql ) :-sqlite_date_sql_atom466,18072 -sqlite_date_sql_atom( date(Y,M,D), Sql ) :-sqlite_date_sql_atom471,18236 -sqlite_date_sql_atom( date(Y,M,D), Sql ) :-sqlite_date_sql_atom471,18236 -sqlite_date_sql_atom( date(Y,M,D), Sql ) :-sqlite_date_sql_atom471,18236 -sqlite_alias(Opts, _Conn, Alias) :-sqlite_alias480,18464 -sqlite_alias(Opts, _Conn, Alias) :-sqlite_alias480,18464 -sqlite_alias(Opts, _Conn, Alias) :-sqlite_alias480,18464 -sqlite_alias(_Opts, _Conn, Alias ) :-sqlite_alias483,18544 -sqlite_alias(_Opts, _Conn, Alias ) :-sqlite_alias483,18544 -sqlite_alias(_Opts, _Conn, Alias ) :-sqlite_alias483,18544 -sqlite_alias(_Opts, Conn, Conn).sqlite_alias486,18612 -sqlite_alias(_Opts, Conn, Conn).sqlite_alias486,18612 -sqlite_establish_predicates( Opts, Conn ) :-sqlite_establish_predicates488,18646 -sqlite_establish_predicates( Opts, Conn ) :-sqlite_establish_predicates488,18646 -sqlite_establish_predicates( Opts, Conn ) :-sqlite_establish_predicates488,18646 -sqlite_establish_predicates(_Opts, _Conn ).sqlite_establish_predicates498,19099 -sqlite_establish_predicates(_Opts, _Conn ).sqlite_establish_predicates498,19099 -sqlite_establish_tables( [], _Conn, _Mod, _ArityF, _Opts ).sqlite_establish_tables500,19144 -sqlite_establish_tables( [], _Conn, _Mod, _ArityF, _Opts ).sqlite_establish_tables500,19144 -sqlite_establish_tables( [Table-Columns|T], Conn, Mod, ArityF, Opts ) :-sqlite_establish_tables501,19204 -sqlite_establish_tables( [Table-Columns|T], Conn, Mod, ArityF, Opts ) :-sqlite_establish_tables501,19204 -sqlite_establish_tables( [Table-Columns|T], Conn, Mod, ArityF, Opts ) :-sqlite_establish_tables501,19204 -sqlite_establish_table( arity, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table512,19687 -sqlite_establish_table( arity, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table512,19687 -sqlite_establish_table( arity, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table512,19687 -sqlite_establish_table( both, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table515,19876 -sqlite_establish_table( both, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table515,19876 -sqlite_establish_table( both, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table515,19876 -sqlite_establish_table( unary, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table519,20145 -sqlite_establish_table( unary, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table519,20145 -sqlite_establish_table( unary, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table519,20145 -sqlite_establish_table( palette, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table521,20295 -sqlite_establish_table( palette, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table521,20295 -sqlite_establish_table( palette, Table, Pname, Columns, Conn, Mod ) :-sqlite_establish_table521,20295 -sqlite_establish_table_typed( Table, Pname, Columns, Conn, Mod, ArityF, Arity ) :-sqlite_establish_table_typed528,20586 -sqlite_establish_table_typed( Table, Pname, Columns, Conn, Mod, ArityF, Arity ) :-sqlite_establish_table_typed528,20586 -sqlite_establish_table_typed( Table, Pname, Columns, Conn, Mod, ArityF, Arity ) :-sqlite_establish_table_typed528,20586 -sqlite_holds( AliasOr, Name, _Arity, Type, Columns, Args ) :-sqlite_holds546,21303 -sqlite_holds( AliasOr, Name, _Arity, Type, Columns, Args ) :-sqlite_holds546,21303 -sqlite_holds( AliasOr, Name, _Arity, Type, Columns, Args ) :-sqlite_holds546,21303 -sqlite_holds_unknown( [], _UnKnwnAs, KnwnClmPrs, Name, Columns, Conn ) :-sqlite_holds_unknown552,21600 -sqlite_holds_unknown( [], _UnKnwnAs, KnwnClmPrs, Name, Columns, Conn ) :-sqlite_holds_unknown552,21600 -sqlite_holds_unknown( [], _UnKnwnAs, KnwnClmPrs, Name, Columns, Conn ) :-sqlite_holds_unknown552,21600 -sqlite_holds_unknown( UnKnwnCs, UnKnwnAs, KnwnClmPrs, Name, _Columns, Conn ) :-sqlite_holds_unknown556,21766 -sqlite_holds_unknown( UnKnwnCs, UnKnwnAs, KnwnClmPrs, Name, _Columns, Conn ) :-sqlite_holds_unknown556,21766 -sqlite_holds_unknown( UnKnwnCs, UnKnwnAs, KnwnClmPrs, Name, _Columns, Conn ) :-sqlite_holds_unknown556,21766 -sqlite_alias_connection( Alias, Connection ) :-sqlite_alias_connection564,22149 -sqlite_alias_connection( Alias, Connection ) :-sqlite_alias_connection564,22149 -sqlite_alias_connection( Alias, Connection ) :-sqlite_alias_connection564,22149 -sqlite_alias_connection( Connection, Connection ) :-sqlite_alias_connection568,22301 -sqlite_alias_connection( Connection, Connection ) :-sqlite_alias_connection568,22301 -sqlite_alias_connection( Connection, Connection ) :-sqlite_alias_connection568,22301 -sqlite_alias_connection( Alias, _Connection ) :-sqlite_alias_connection571,22402 -sqlite_alias_connection( Alias, _Connection ) :-sqlite_alias_connection571,22402 -sqlite_alias_connection( Alias, _Connection ) :-sqlite_alias_connection571,22402 -pl_as_predicate_to_sql_ready_data( unary, Columns, [Args], KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data575,22549 -pl_as_predicate_to_sql_ready_data( unary, Columns, [Args], KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data575,22549 -pl_as_predicate_to_sql_ready_data( unary, Columns, [Args], KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data575,22549 -pl_as_predicate_to_sql_ready_data( palette, Columns, ArgsIn, KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data577,22728 -pl_as_predicate_to_sql_ready_data( palette, Columns, ArgsIn, KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data577,22728 -pl_as_predicate_to_sql_ready_data( palette, Columns, ArgsIn, KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data577,22728 -pl_as_predicate_to_sql_ready_data( palette, Columns, ArgsIn, KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data588,23336 -pl_as_predicate_to_sql_ready_data( palette, Columns, ArgsIn, KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data588,23336 -pl_as_predicate_to_sql_ready_data( palette, Columns, ArgsIn, KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data588,23336 -pl_as_predicate_to_sql_ready_data( predicate, Columns, Args, KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data591,23580 -pl_as_predicate_to_sql_ready_data( predicate, Columns, Args, KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data591,23580 -pl_as_predicate_to_sql_ready_data( predicate, Columns, Args, KnwnClmPrs, UnKnwnCs, UnKnwnAs ) :-pl_as_predicate_to_sql_ready_data591,23580 -pl_args_column_arg_ground_or_not_pairs( [], [], [], [], [] ).pl_args_column_arg_ground_or_not_pairs594,23772 -pl_args_column_arg_ground_or_not_pairs( [], [], [], [], [] ).pl_args_column_arg_ground_or_not_pairs594,23772 -pl_args_column_arg_ground_or_not_pairs( [A|As], [C|Cs], Knwn, UnCs, UnAs ) :-pl_args_column_arg_ground_or_not_pairs595,23834 -pl_args_column_arg_ground_or_not_pairs( [A|As], [C|Cs], Knwn, UnCs, UnAs ) :-pl_args_column_arg_ground_or_not_pairs595,23834 -pl_args_column_arg_ground_or_not_pairs( [A|As], [C|Cs], Knwn, UnCs, UnAs ) :-pl_args_column_arg_ground_or_not_pairs595,23834 -pl_look_for_args_to_un_known( [], _Columns, [], [], [] ).pl_look_for_args_to_un_known607,24186 -pl_look_for_args_to_un_known( [], _Columns, [], [], [] ).pl_look_for_args_to_un_known607,24186 -pl_look_for_args_to_un_known( [A|As], Columns, Knwn, UnKnwnCs, UnKnownAs ) :-pl_look_for_args_to_un_known608,24244 -pl_look_for_args_to_un_known( [A|As], Columns, Knwn, UnKnwnCs, UnKnownAs ) :-pl_look_for_args_to_un_known608,24244 -pl_look_for_args_to_un_known( [A|As], Columns, Knwn, UnKnwnCs, UnKnownAs ) :-pl_look_for_args_to_un_known608,24244 -is_one_of_columns( Clm, Columns ) :-is_one_of_columns622,24720 -is_one_of_columns( Clm, Columns ) :-is_one_of_columns622,24720 -is_one_of_columns( Clm, Columns ) :-is_one_of_columns622,24720 -is_one_of_columns( Clm, Columns ) :-is_one_of_columns625,24798 -is_one_of_columns( Clm, Columns ) :-is_one_of_columns625,24798 -is_one_of_columns( Clm, Columns ) :-is_one_of_columns625,24798 -look_for_pair( Pair, K, V ) :-look_for_pair628,24886 -look_for_pair( Pair, K, V ) :-look_for_pair628,24886 -look_for_pair( Pair, K, V ) :-look_for_pair628,24886 -look_for_pair( Term, _A, _B ) :-look_for_pair631,24966 -look_for_pair( Term, _A, _B ) :-look_for_pair631,24966 -look_for_pair( Term, _A, _B ) :-look_for_pair631,24966 -look_for_pair_silent( A=B, A, B ).look_for_pair_silent639,25300 -look_for_pair_silent( A=B, A, B ).look_for_pair_silent639,25300 -look_for_pair_silent( A-B, A, B ).look_for_pair_silent640,25335 -look_for_pair_silent( A-B, A, B ).look_for_pair_silent640,25335 -look_for_pair_silent( A:B, A, B ).look_for_pair_silent641,25370 -look_for_pair_silent( A:B, A, B ).look_for_pair_silent641,25370 -sqlite_error( Term ) :-sqlite_error645,25428 -sqlite_error( Term ) :-sqlite_error645,25428 -sqlite_error( Term ) :-sqlite_error645,25428 -sqlite_fail( Term ) :-sqlite_fail650,25526 -sqlite_fail( Term ) :-sqlite_fail650,25526 -sqlite_fail( Term ) :-sqlite_fail650,25526 -sqlite_fail( Type, Term ) :-sqlite_fail654,25609 -sqlite_fail( Type, Term ) :-sqlite_fail654,25609 -sqlite_fail( Type, Term ) :-sqlite_fail654,25609 -:- multifile prolog:message//1.multifile660,25719 -:- multifile prolog:message//1.multifile660,25719 -prolog:message(sqlite(Message)) -->message662,25752 -prolog:message(sqlite(Message)) -->message662,25752 -message( pair_representation(Term) ) -->message666,25809 -message( pair_representation(Term) ) -->message666,25809 -message( pair_representation(Term) ) -->message666,25809 -message( unknown_column(Clm,Columns) ) -->message668,25959 -message( unknown_column(Clm,Columns) ) -->message668,25959 -message( unknown_column(Clm,Columns) ) -->message668,25959 -message( unknown_alias(Alias) ) -->message670,26068 -message( unknown_alias(Alias) ) -->message670,26068 -message( unknown_alias(Alias) ) -->message670,26068 -message( wrong_arity_value(ArityF) ) -->message672,26159 -message( wrong_arity_value(ArityF) ) -->message672,26159 -message( wrong_arity_value(ArityF) ) -->message672,26159 -message( predicated_creation_error(File,Alias) ) -->message675,26319 -message( predicated_creation_error(File,Alias) ) -->message675,26319 -message( predicated_creation_error(File,Alias) ) -->message675,26319 -message( connection_already_open(Conn) ) -->message677,26476 -message( connection_already_open(Conn) ) -->message677,26476 -message( connection_already_open(Conn) ) -->message677,26476 -message( alias_in_use(Conn,File) ) --> message679,26569 -message( alias_in_use(Conn,File) ) --> message679,26569 -message( alias_in_use(Conn,File) ) --> message679,26569 -message( not_a_connection(Alias) ) -->message681,26682 -message( not_a_connection(Alias) ) -->message681,26682 -message( not_a_connection(Alias) ) -->message681,26682 -message( insufficient_columns(Goal,Op) ) -->message683,26801 -message( insufficient_columns(Goal,Op) ) -->message683,26801 -message( insufficient_columns(Goal,Op) ) -->message683,26801 -message( predicate_already_registered(Conn,Pname,Arity) ) -->message685,26937 -message( predicate_already_registered(Conn,Pname,Arity) ) -->message685,26937 -message( predicate_already_registered(Conn,Pname,Arity) ) -->message685,26937 -message( maps_to_existing_predicate(Pname,Arity) ) -->message687,27081 -message( maps_to_existing_predicate(Pname,Arity) ) -->message687,27081 -message( maps_to_existing_predicate(Pname,Arity) ) -->message687,27081 -message( file_already_open(File,Alias) ) -->message689,27211 -message( file_already_open(File,Alias) ) -->message689,27211 -message( file_already_open(File,Alias) ) -->message689,27211 -message( db_at(File) ) -->message691,27319 -message( db_at(File) ) -->message691,27319 -message( db_at(File) ) -->message691,27319 -message( asserting_non_ground(Goal) ) -->message693,27396 -message( asserting_non_ground(Goal) ) -->message693,27396 -message( asserting_non_ground(Goal) ) -->message693,27396 -message( debug(Format,Args) ) -->message695,27489 -message( debug(Format,Args) ) -->message695,27489 -message( debug(Format,Args) ) -->message695,27489 -to_list(OptIn, Opts) :-to_list700,27660 -to_list(OptIn, Opts) :-to_list700,27660 -to_list(OptIn, Opts) :-to_list700,27660 -to_list(Opt, [Opt] ).to_list704,27732 -to_list(Opt, [Opt] ).to_list704,27732 -dquote( Val, Quoted ) :-dquote706,27755 -dquote( Val, Quoted ) :-dquote706,27755 -dquote( Val, Quoted ) :-dquote706,27755 -dquote( Val, Quoted ) :-dquote710,27828 -dquote( Val, Quoted ) :-dquote710,27828 -dquote( Val, Quoted ) :-dquote710,27828 -dquote( Val, Quoted ) :-dquote714,27929 -dquote( Val, Quoted ) :-dquote714,27929 -dquote( Val, Quoted ) :-dquote714,27929 -sql_clm_value_pairs_to_where(Known, Where) :-sql_clm_value_pairs_to_where719,28056 -sql_clm_value_pairs_to_where(Known, Where) :-sql_clm_value_pairs_to_where719,28056 -sql_clm_value_pairs_to_where(Known, Where) :-sql_clm_value_pairs_to_where719,28056 -sql_where_conjunction_to_where('', '' ) :- !.sql_where_conjunction_to_where723,28227 -sql_where_conjunction_to_where('', '' ) :- !.sql_where_conjunction_to_where723,28227 -sql_where_conjunction_to_where('', '' ) :- !.sql_where_conjunction_to_where723,28227 -sql_where_conjunction_to_where(Conjunction, Where ) :-sql_where_conjunction_to_where724,28273 -sql_where_conjunction_to_where(Conjunction, Where ) :-sql_where_conjunction_to_where724,28273 -sql_where_conjunction_to_where(Conjunction, Where ) :-sql_where_conjunction_to_where724,28273 -sql_clm_value_pairs_to_where_conjunction([], '').sql_clm_value_pairs_to_where_conjunction727,28379 -sql_clm_value_pairs_to_where_conjunction([], '').sql_clm_value_pairs_to_where_conjunction727,28379 -sql_clm_value_pairs_to_where_conjunction([K-V|T], Where) :-sql_clm_value_pairs_to_where_conjunction728,28429 -sql_clm_value_pairs_to_where_conjunction([K-V|T], Where) :-sql_clm_value_pairs_to_where_conjunction728,28429 -sql_clm_value_pairs_to_where_conjunction([K-V|T], Where) :-sql_clm_value_pairs_to_where_conjunction728,28429 -sql_clm_and_val_to_sql_equals_atom(K, V, KVAtm) :-sql_clm_and_val_to_sql_equals_atom737,28735 -sql_clm_and_val_to_sql_equals_atom(K, V, KVAtm) :-sql_clm_and_val_to_sql_equals_atom737,28735 -sql_clm_and_val_to_sql_equals_atom(K, V, KVAtm) :-sql_clm_and_val_to_sql_equals_atom737,28735 -sqlite_facet_table( arity(Arity), Connection, Table ) :-sqlite_facet_table747,29005 -sqlite_facet_table( arity(Arity), Connection, Table ) :-sqlite_facet_table747,29005 -sqlite_facet_table( arity(Arity), Connection, Table ) :-sqlite_facet_table747,29005 -arity_option( Opts, ArityF ) :-arity_option751,29175 -arity_option( Opts, ArityF ) :-arity_option751,29175 -arity_option( Opts, ArityF ) :-arity_option751,29175 -arity_option( Opts, ArityF ) :-arity_option756,29324 -arity_option( Opts, ArityF ) :-arity_option756,29324 -arity_option( Opts, ArityF ) :-arity_option756,29324 -arity_option( _Opts, arity ). % default for this flag, although we should arity_option760,29450 -arity_option( _Opts, arity ). % default for this flag, although we should arity_option760,29450 -kv_decompose( [], [], [] ).kv_decompose763,29604 -kv_decompose( [], [], [] ).kv_decompose763,29604 -kv_decompose( [K-V|T], [K|Ks], [V|Vs] ) :-kv_decompose764,29632 -kv_decompose( [K-V|T], [K|Ks], [V|Vs] ) :-kv_decompose764,29632 -kv_decompose( [K-V|T], [K|Ks], [V|Vs] ) :-kv_decompose764,29632 - -packages/pyswip/CHANGELOG,0 - -packages/pyswip/COPYING,0 - -packages/pyswip/examples/coins/coins.pl,111 -coins(S, Count, Total) :-coins6,86 -coins(S, Count, Total) :-coins6,86 -coins(S, Count, Total) :-coins6,86 - -packages/pyswip/examples/coins/coins.py,67 -from pyswip.prolog import PrologProlog5,56 -def main():main7,90 - -packages/pyswip/examples/create_term.py,67 -from pyswip.prolog import PrologProlog4,50 -def main():main6,84 - -packages/pyswip/examples/draughts/puzzle1.pl,210 -solve(Board) :-solve5,121 -solve(Board) :-solve5,121 -solve(Board) :-solve5,121 -in_board(D, V) :- V in D.in_board15,316 -in_board(D, V) :- V in D.in_board15,316 -in_board(D, V) :- V in D.in_board15,316 - -packages/pyswip/examples/draughts/puzzle1.py,71 -from pyswip.prolog import PrologProlog17,803 -def main():main19,837 - -packages/pyswip/examples/hanoi/hanoi.pl,460 -hanoi(N) :- move(N, left, right, center).hanoi5,68 -hanoi(N) :- move(N, left, right, center).hanoi5,68 -hanoi(N) :- move(N, left, right, center).hanoi5,68 -hanoi(N) :- move(N, left, right, center).hanoi5,68 -hanoi(N) :- move(N, left, right, center).hanoi5,68 -move(0, _, _, _) :- !.move6,110 -move(0, _, _, _) :- !.move6,110 -move(0, _, _, _) :- !.move6,110 -move(N, A, B, C) :-move7,133 -move(N, A, B, C) :-move7,133 -move(N, A, B, C) :-move7,133 - -packages/pyswip/examples/hanoi/hanoi.py,514 -from collections import dequedeque3,25 -from pyswip.prolog import PrologProlog4,55 -from pyswip.easy import getList, registerForeigngetList5,88 -from pyswip.easy import getList, registerForeignregisterForeign5,88 -class Notifier:Notifier7,138 - def __init__(self, fun):__init__8,154 - def notify(self, t):notify11,215 -class Tower:Tower16,338 - def __init__(self, N=3, interactive=False):__init__17,351 - def move(self, r):move26,651 - def draw(self):draw36,928 -def main():main55,1512 - -packages/pyswip/examples/knowledgebase.py,307 -p = Prolog()p4,23 -assertz = Functor("assertz")assertz6,37 -parent = Functor("parent", 2)parent7,66 -test1 = newModule("test1")test18,96 -test2 = newModule("test2")test29,123 -X = Variable()X19,386 -q = Query(parent(X, "bob"), module=test1)q20,401 -q = Query(parent(X, "bob"), module=test2)q27,530 - -packages/pyswip/examples/README,760 -PySWIP ExamplesExamples1,0 -+ (clp) sendmoremoney/ : if, SEND + MORE = MONEY, what is S, E, N, D, M, O, R, Y?MORE11,203 -+ (clp) sendmoremoney/ : if, SEND + MORE = MONEY, what is S, E, N, D, M, O, R, Y?S11,203 -+ (clp) sendmoremoney/ : if, SEND + MORE = MONEY, what is S, E, N, D, M, O, R, Y?E11,203 -+ (clp) sendmoremoney/ : if, SEND + MORE = MONEY, what is S, E, N, D, M, O, R, Y?N11,203 -+ (clp) sendmoremoney/ : if, SEND + MORE = MONEY, what is S, E, N, D, M, O, R, Y?D11,203 -+ (clp) sendmoremoney/ : if, SEND + MORE = MONEY, what is S, E, N, D, M, O, R, Y?M11,203 -+ (clp) sendmoremoney/ : if, SEND + MORE = MONEY, what is S, E, N, D, M, O, R, Y?O11,203 -+ (clp) sendmoremoney/ : if, SEND + MORE = MONEY, what is S, E, N, D, M, O, R, Y?R11,203 - -packages/pyswip/examples/register_foreign.py,251 -from pyswip import Prolog, registerForeign, AtomProlog2,1 -from pyswip import Prolog, registerForeign, AtomregisterForeign2,1 -from pyswip import Prolog, registerForeign, AtomAtom2,1 -def atom_checksum(*a):atom_checksum4,51 -p = Prolog()p12,233 - -packages/pyswip/examples/register_foreign_simple.py,245 -from pyswip.prolog import PrologProlog5,119 -from pyswip.easy import registerForeign, getAtomCharsregisterForeign6,152 -from pyswip.easy import registerForeign, getAtomCharsgetAtomChars6,152 -def hello(t):hello8,207 -def main():main12,260 - -packages/pyswip/examples/sendmoremoney/money.pl,105 -sendmore(Digits) :-sendmore7,126 -sendmore(Digits) :-sendmore7,126 -sendmore(Digits) :-sendmore7,126 - -packages/pyswip/examples/sendmoremoney/money.py,152 -from pyswip import PrologProlog11,169 -letters = "S E N D M O R Y".split()letters13,196 -prolog = Prolog()prolog14,232 - r = result["X"]r17,320 - -packages/pyswip/examples/sudoku/sudoku.pl,845 -sudoku(Pss) :-sudoku9,173 -sudoku(Pss) :-sudoku9,173 -sudoku(Pss) :-sudoku9,173 -columns([], [], [], [], [], [], [], [], []).columns18,443 -columns([], [], [], [], [], [], [], [], []).columns18,443 -columns([A|As],[B|Bs],[C|Cs],[D|Ds],[E|Es],[F|Fs],[G|Gs],[H|Hs],[I|Is]) :-columns19,488 -columns([A|As],[B|Bs],[C|Cs],[D|Ds],[E|Es],[F|Fs],[G|Gs],[H|Hs],[I|Is]) :-columns19,488 -columns([A|As],[B|Bs],[C|Cs],[D|Ds],[E|Es],[F|Fs],[G|Gs],[H|Hs],[I|Is]) :-columns19,488 -blocks([], [], []).blocks23,653 -blocks([], [], []).blocks23,653 -blocks([X1,X2,X3|R1], [X4,X5,X6|R2], [X7,X8,X9|R3]) :-blocks24,673 -blocks([X1,X2,X3|R1], [X4,X5,X6|R2], [X7,X8,X9|R3]) :-blocks24,673 -blocks([X1,X2,X3|R1], [X4,X5,X6|R2], [X7,X8,X9|R3]) :-blocks24,673 -all_in(D, Pos) :-all_in28,802 -all_in(D, Pos) :-all_in28,802 -all_in(D, Pos) :-all_in28,802 - -packages/pyswip/examples/sudoku/sudoku.py,250 -from pyswip.prolog import PrologProlog3,25 -_ = 0_6,85 -puzzle1 = [puzzle17,91 -puzzle2 = [puzzle220,415 -def pretty_print(table):pretty_print32,736 -def solve(problem):solve38,962 -def main():main48,1225 - prolog = Prolog()prolog61,1525 - -packages/pyswip/examples/sudoku/sudoku_daily.py,857 -import urlliburllib6,120 -from HTMLParser import HTMLParser, HTMLParseErrorHTMLParser7,134 -from HTMLParser import HTMLParser, HTMLParseErrorHTMLParseError7,134 -from pyswip.prolog import PrologProlog8,184 -URL = "http://www.sudoku.org.uk/daily.asp"URL11,244 -class DailySudokuPuzzle(HTMLParser):DailySudokuPuzzle13,288 - def __init__(self):__init__14,325 - def handle_starttag(self, tag, attrs):handle_starttag19,446 - def handle_endtag(self, tag):handle_endtag29,790 - def handle_data(self, data):handle_data33,894 -def pretty_print(table):pretty_print37,1003 -def get_daily_sudoku(url):get_daily_sudoku43,1225 -def solve(problem):solve53,1469 - prolog = Prolog() # having this in `solve` bites! because of __del__prolog64,1778 - puzzle = get_daily_sudoku(URL)puzzle68,1900 - solution = solve(puzzle)solution73,2027 - -packages/pyswip/INSTALL,673 -These instructions are tested on a Linux system, but should also work for POSIX systems. Also, you may want to install development packages for readline, libncurses, and libgmp.eadline9,299 -These instructions are tested on a Linux system, but should also work for POSIX systems. Also, you may want to install development packages for readline, libncurses, and libgmp.libncurses9,299 -7) If you are not using Python 2.5 or later, you should install ctypes, or get a new version of Python (apt-get is fine if you're using Ubuntu).ctypes45,1551 -8) Unpack PySwIP package and install it with, ``python setup.py install``.with47,1697 - >>> prolog = Prolog()prolog52,1888 - -packages/pyswip/pyswip/__init__.py,88 -__VERSION__ = "0.2.2"__VERSION__21,815 -from pyswip.prolog import PrologProlog23,838 - -packages/pyswip/pyswip/core.py,9116 -import syssys23,830 -import osos24,841 -import warningswarnings25,851 -from subprocess import Popen, PIPEPopen26,867 -from subprocess import Popen, PIPEPIPE26,867 -from ctypes.util import find_libraryfind_library28,923 -def _fixWindowsPath(dll):_fixWindowsPath31,962 -def _findYap():_findYap52,1625 -class c_void(Structure):c_void197,7007 - _fields_ = [('dummy', c_int)]_fields_198,7032 -c_void_p = POINTER(c_void)c_void_p200,7071 -path = _findYap()path203,7118 -_lib = CDLL(path)_lib206,7169 -PYSWIP_MAXSTR = 1024PYSWIP_MAXSTR209,7207 -c_int_p = POINTER(c_int)c_int_p210,7228 -c_long_p = POINTER(c_long)c_long_p211,7253 -c_double_p = POINTER(c_double)c_double_p212,7280 -PL_VARIABLE = 1 # nothing PL_VARIABLE216,7376 -PL_ATOM = 2 # const charPL_ATOM217,7404 -PL_INTEGER = 3 # intPL_INTEGER218,7430 -PL_FLOAT = 4 # doublePL_FLOAT219,7452 -PL_STRING = 5 # const char *PL_STRING220,7475 -PL_TERM = 6 #PL_TERM221,7505 -PL_FUNCTOR = 10 # functor_t, arg ...PL_FUNCTOR223,7538 -PL_LIST = 11 # length, arg ...PL_LIST224,7576 -PL_CHARS = 12 # const char *PL_CHARS225,7608 -PL_POINTER = 13 # void *PL_POINTER226,7638 -PL_FIRST_CALL = 0PL_FIRST_CALL260,9263 -PL_CUTTED = 1PL_CUTTED261,9281 -PL_REDO = 2PL_REDO262,9295 -PL_FA_NOTRACE = 0x01 # foreign cannot be tracedPL_FA_NOTRACE264,9308 -PL_FA_TRANSPARENT = 0x02 # foreign is module transparentPL_FA_TRANSPARENT265,9357 -PL_FA_NONDETERMINISTIC = 0x04 # foreign is non-deterministicPL_FA_NONDETERMINISTIC266,9415 -PL_FA_VARARGS = 0x08 # call using t0, ac, ctxPL_FA_VARARGS267,9478 -PL_FA_CREF = 0x10 # Internal: has clause-reference */PL_FA_CREF268,9525 -PL_Q_DEBUG = 0x01 # = TRUE for backward compatibilityPL_Q_DEBUG274,9700 -PL_Q_NORMAL = 0x02 # normal usagePL_Q_NORMAL275,9755 -PL_Q_NODEBUG = 0x04 # use this onePL_Q_NODEBUG276,9790 -PL_Q_CATCH_EXCEPTION = 0x08 # handle exceptions in CPL_Q_CATCH_EXCEPTION277,9827 -PL_Q_PASS_EXCEPTION = 0x10 # pass to parent environmentPL_Q_PASS_EXCEPTION278,9881 -PL_Q_DETERMINISTIC = 0x20 # call was deterministicPL_Q_DETERMINISTIC279,9938 -CVT_ATOM = 0x0001CVT_ATOM298,10668 -CVT_STRING = 0x0002CVT_STRING299,10686 -CVT_LIST = 0x0004CVT_LIST300,10706 -CVT_INTEGER = 0x0008CVT_INTEGER301,10724 -CVT_FLOAT = 0x0010CVT_FLOAT302,10745 -CVT_VARIABLE = 0x0020CVT_VARIABLE303,10764 -CVT_NUMBER = CVT_INTEGER | CVT_FLOATCVT_NUMBER304,10786 -CVT_ATOMIC = CVT_NUMBER | CVT_ATOM | CVT_STRINGCVT_ATOMIC305,10823 -CVT_WRITE = 0x0040 # as of version 3.2.10CVT_WRITE306,10871 -CVT_ALL = CVT_ATOMIC | CVT_LISTCVT_ALL307,10914 -CVT_MASK = 0x00ffCVT_MASK308,10946 -BUF_DISCARDABLE = 0x0000BUF_DISCARDABLE310,10965 -BUF_RING = 0x0100BUF_RING311,10990 -BUF_MALLOC = 0x0200BUF_MALLOC312,11008 -CVT_EXCEPTION = 0x10000 # throw exception on errorCVT_EXCEPTION314,11029 -argv = (c_char_p*(len(sys.argv) + 1))()argv316,11086 -argc = len(sys.argv)argc321,11200 -atom_t = c_ulongatom_t325,11231 -term_t = c_ulongterm_t326,11248 -fid_t = c_ulongfid_t327,11265 -module_t = c_void_pmodule_t328,11281 -predicate_t = c_void_ppredicate_t329,11301 -record_t = c_void_precord_t330,11324 -qid_t = c_ulongqid_t331,11344 -PL_fid_t = c_ulongPL_fid_t332,11360 -control_t = c_void_pcontrol_t333,11379 -PL_engine_t = c_void_pPL_engine_t334,11400 -functor_t = c_ulongfunctor_t335,11423 -PL_atomic_t = c_ulongPL_atomic_t336,11443 -foreign_t = c_ulongforeign_t337,11465 -pl_wchar_t = c_wcharpl_wchar_t338,11485 -PL_initialise = _lib.PL_initialisePL_initialise343,11552 -PL_open_foreign_frame = _lib.PL_open_foreign_framePL_open_foreign_frame346,11640 -PL_new_term_ref = _lib.PL_new_term_refPL_new_term_ref349,11730 -PL_new_term_refs = _lib.PL_new_term_refsPL_new_term_refs352,11803 -PL_chars_to_term = _lib.PL_chars_to_termPL_chars_to_term355,11879 -PL_call = _lib.PL_callPL_call358,11968 -PL_call_predicate = _lib.PL_call_predicatePL_call_predicate361,12030 -PL_discard_foreign_frame = _lib.PL_discard_foreign_framePL_discard_foreign_frame364,12142 -PL_put_list_chars = _lib.PL_put_list_charsPL_put_list_chars367,12244 -PL_register_atom = _lib.PL_register_atomPL_register_atom374,12488 -PL_unregister_atom = _lib.PL_unregister_atomPL_unregister_atom378,12615 -PL_functor_name = _lib.PL_functor_namePL_functor_name382,12749 -PL_functor_arity = _lib.PL_functor_arityPL_functor_arity387,12909 -PL_get_atom = _lib.PL_get_atomPL_get_atom392,13083 -PL_get_atom_ex = _lib.PL_get_atom_exPL_get_atom_ex395,13164 -PL_get_atom_chars = _lib.PL_get_atom_chars399,13310 -PL_get_atom_nchars = _lib.PL_get_atom_ncharsPL_get_atom_nchars402,13394 -PL_get_bool = _lib.PL_get_boolPL_get_bool406,13569 -PL_get_chars = _lib.PL_get_chars PL_get_chars418,14036 -PL_get_integer = _lib.PL_get_integerPL_get_integer431,14552 -PL_get_long = _lib.PL_get_longPL_get_long435,14683 -PL_get_pointer = _lib.PL_get_pointerPL_get_pointer439,14812 -PL_get_float = _lib.PL_get_floatPL_get_float443,14956 -PL_get_functor = _lib.PL_get_functorPL_get_functor447,15092 -PL_get_name_arity = _lib.PL_get_name_arityPL_get_name_arity452,15302 -PL_get_arg = _lib.PL_get_argPL_get_arg457,15537 -PL_get_head = _lib.PL_get_headPL_get_head462,15723 -PL_get_tail = _lib.PL_get_tailPL_get_tail466,15845 -PL_get_nil = _lib.PL_get_nilPL_get_nil470,15956 -PL_put_atom_chars = _lib.PL_put_atom_charsPL_put_atom_chars476,16137 -PL_put_atom_nchars = _lib.PL_put_atom_ncharsPL_put_atom_nchars479,16229 -PL_atom_chars = _lib.PL_atom_charsPL_atom_chars482,16334 -PL_predicate = _lib.PL_predicatePL_predicate486,16437 -PL_pred = _lib.PL_predPL_pred490,16558 -PL_open_query = _lib.PL_open_queryPL_open_query494,16653 -PL_next_solution = _lib.PL_next_solutionPL_next_solution498,16783 -PL_copy_term_ref = _lib.PL_copy_term_refPL_copy_term_ref501,16861 -PL_get_list = _lib.PL_get_listPL_get_list505,16974 -PL_close_query = _lib.PL_close_queryPL_close_query508,17054 -PL_cut_query = _lib.PL_cut_queryPL_cut_query512,17150 -PL_halt = _lib.PL_haltPL_halt515,17216 -PL_unify_integer = _lib.PL_unify_integerPL_unify_integer518,17267 -PL_unify = _lib.PL_unifyPL_unify521,17352 -PL_unify_arg = _lib.PL_unify_argPL_unify_arg524,17414 -PL_term_type = _lib.PL_term_typePL_term_type529,17510 -PL_is_variable = _lib.PL_is_variablePL_is_variable533,17606 -PL_is_ground = _lib.PL_is_groundPL_is_ground537,17710 -PL_is_atom = _lib.PL_is_atomPL_is_atom541,17806 -PL_is_integer = _lib.PL_is_integerPL_is_integer545,17894 -PL_is_string = _lib.PL_is_stringPL_is_string549,17994 -PL_is_float = _lib.PL_is_floatPL_is_float553,18090 -PL_is_compound = _lib.PL_is_compoundPL_is_compound561,18289 -PL_is_functor = _lib.PL_is_functorPL_is_functor565,18393 -PL_is_list = _lib.PL_is_listPL_is_list569,18504 -PL_is_atomic = _lib.PL_is_atomicPL_is_atomic573,18592 -PL_is_number = _lib.PL_is_numberPL_is_number577,18688 -PL_put_variable = _lib.PL_put_variablePL_put_variable583,18865 -PL_put_integer = _lib.PL_put_integerPL_put_integer598,19654 -PL_put_functor = _lib.PL_put_functorPL_put_functor606,19936 -PL_put_list = _lib.PL_put_listPL_put_list611,20091 -PL_put_nil = _lib.PL_put_nilPL_put_nil616,20222 -PL_put_term = _lib.PL_put_termPL_put_term621,20362 -PL_cons_functor_v = _lib.PL_cons_functor_vPL_cons_functor_v632,20776 -PL_cons_list = _lib.PL_cons_listPL_cons_list637,20972 -PL_exception = _lib.PL_exceptionPL_exception642,21090 -PL_register_foreign = _lib.PL_register_foreignPL_register_foreign650,21217 -PL_new_atom = _lib.PL_new_atomPL_new_atom655,21380 -PL_new_functor = _lib.PL_new_functorPL_new_functor660,21530 -PL_record = _lib.PL_recordPL_record669,21797 -PL_recorded = _lib.PL_recordedPL_recorded674,21945 -PL_erase = _lib.PL_erasePL_erase678,22063 -PL_new_module = _lib.PL_new_modulePL_new_module686,22302 -intptr_t = c_longintptr_t690,22405 -ssize_t = intptr_tssize_t691,22423 -wint_t = c_uintwint_t692,22442 -class _mbstate_t_value(Union):_mbstate_t_value704,22611 - _fields_ = [("__wch",wint_t),_fields_705,22642 -class mbstate_t(Structure):mbstate_t708,22714 - _fields_ = [("__count",c_int),_fields_709,22742 -Sread_function = CFUNCTYPE(ssize_t, c_void_p, c_char_p, c_size_t)Sread_function713,22847 -Swrite_function = CFUNCTYPE(ssize_t, c_void_p, c_char_p, c_size_t)Swrite_function714,22913 -Sseek_function = CFUNCTYPE(c_long, c_void_p, c_long, c_int)Sseek_function715,22980 -Sseek64_function = CFUNCTYPE(c_int64, c_void_p, c_int64, c_int)Sseek64_function716,23040 -Sclose_function = CFUNCTYPE(c_int, c_void_p)Sclose_function717,23104 -Scontrol_function = CFUNCTYPE(c_int, c_void_p, c_int, c_void_p)Scontrol_function718,23149 -IOLOCK = c_void_pIOLOCK721,23223 -class IOFUNCTIONS(Structure):IOFUNCTIONS724,23256 - _fields_ = [("read",Sread_function),_fields_725,23286 -IOENC = c_intIOENC734,23666 -class IOPOS(Structure):IOPOS737,23689 - _fields_ = [("byteno",c_int64),_fields_738,23713 -class IOSTREAM(Structure):IOSTREAM745,23908 - _fields_ = [("bufp",c_char_p),_fields_746,23935 -Sopen_string = _lib.Sopen_stringSopen_string772,24874 -Sclose = _lib.ScloseSclose777,25061 -PL_unify_stream = _lib.PL_unify_streamPL_unify_stream782,25180 - -packages/pyswip/pyswip/easy.py,3525 -class InvalidTypeError(TypeError):InvalidTypeError23,830 - def __init__(self, *args):__init__24,865 -class Atom(object):Atom30,1048 - __slots__ = "handle","chars"__slots__31,1068 - def __init__(self, handleOrChars):__init__33,1102 - def fromTerm(cls, term):fromTerm46,1597 - fromTerm = classmethod(fromTerm)fromTerm55,1844 - def __del__(self):__del__57,1882 - value = property(lambda s:s.chars)value60,1946 - def __str__(self):__str__62,1986 - def __repr__(self):__repr__68,2124 -class Term(object):Term71,2204 - __slots__ = "handle","chars","__value","a0"__slots__72,2224 - def __init__(self, handle=None, a0=None):__init__73,2272 - def __invert__(self):__invert__82,2528 - def get_value(self):get_value85,2581 -class Variable(object):Variable88,2620 - __slots__ = "handle","chars"__slots__89,2644 - def __init__(self, handle=None, name=None):__init__91,2678 - def unify(self, value):unify105,3156 - def get_value(self):get_value124,3683 - value = property(get_value, unify)value127,3745 - def unified(self):unified129,3785 - def __str__(self):__str__132,3865 - def __repr__(self):__repr__138,4003 - def put(self, term):put141,4072 -class Functor(object):Functor145,4156 - __slots__ = "handle","name","arity","args","__value","a0"__slots__146,4179 - func = {}func147,4241 - def __init__(self, handleOrName, arity=1, args=None, a0=None):__init__149,4256 - def fromTerm(cls, term):fromTerm175,5269 - fromTerm = classmethod(fromTerm)fromTerm193,5877 - value = property(lambda s: s.__value)value195,5915 - def __call__(self, *args):__call__197,5958 - def __str__(self):__str__207,6239 - def __repr__(self):__repr__213,6426 -def _unifier(arity, *args):_unifier216,6555 -_unify = Functor("=", 2)_unify225,6791 -_not = Functor("not", 1)_not227,6855 -_comma = Functor(",", 2)_comma228,6880 -def putTerm(term, value):putTerm230,6906 -def putList(l, ls):putList248,7466 -def getAtomChars(t):getAtomChars257,7680 -def getAtom(t):getAtom266,7921 -def getBool(t):getBool271,8044 -def getLong(t):getLong280,8269 -getInteger = getLong # just an alias for getLonggetInteger289,8490 -def getFloat(t):getFloat291,8541 -def getString(t):getString300,8768 -mappedTerms = {}mappedTerms310,9037 -def getTerm(t):getTerm311,9054 -def getList(x):getList327,9397 -def getFunctor(t):getFunctor338,9613 -def getVariable(t):getVariable343,9701 -_getterm_router = {_getterm_router346,9745 -arities = {}arities352,9969 -def _callbackWrapper(arity=1):_callbackWrapper353,9982 -funwraps = {}funwraps362,10184 -def _foreignWrapper(fun):_foreignWrapper363,10198 - def wrapper(*args):wrapper368,10293 -cwraps = []cwraps376,10509 -def registerForeign(func, name=None, arity=None, flags=0):registerForeign378,10522 -newTermRef = PL_new_term_refnewTermRef403,11403 -def newTermRefs(count):newTermRefs405,11433 -def call(*terms, **kwargs):call409,11521 -def newModule(name):newModule425,11858 -class Query(object):Query434,12052 - qid = Noneqid435,12073 - fid = Nonefid436,12088 - def __init__(self, *terms, **kwargs):__init__438,12104 - def nextSolution():nextSolution457,12663 - nextSolution = staticmethod(nextSolution)nextSolution460,12731 - def cutQuery():cutQuery462,12778 - cutQuery = staticmethod(cutQuery)cutQuery465,12831 - def closeQuery():closeQuery467,12870 - closeQuery = staticmethod(closeQuery)closeQuery472,12994 -def _test():_test475,13038 - -packages/pyswip/pyswip/prolog.py,1057 -import atexitatexit20,789 -def _initialize():_initialize23,830 -def _finalize():_finalize37,1311 -from pyswip.easy import getTermgetTerm41,1371 -class PrologError(Exception):PrologError43,1404 -class Prolog:Prolog48,1466 - class _QueryWrapper(object):_QueryWrapper52,1550 - __slots__ = "swipl_fid","swipl_qid","error"__slots__53,1583 - def __init__(self):__init__55,1644 - def __call__(self, query, maxresult, catcherrors, normalize):__call__58,1708 - def __del__(self):__del__93,3204 - def asserta(cls, assertion, catcherrors=False):asserta98,3375 - asserta = classmethod(asserta) asserta101,3524 - def assertz(cls, assertion, catcherrors=False):assertz103,3568 - assertz = classmethod(assertz)assertz106,3717 - def consult(cls, filename, catcherrors=False):consult108,3757 - consult = classmethod(consult)consult111,3899 - def query(cls, query, maxresult=-1, catcherrors=True, normalize=True):query113,3935 - query = classmethod(query)query131,4743 -def _test():_test134,4788 - -packages/pyswip/README,333 - from pyswip import Prolog, registerForeignProlog52,1555 - Hello, ginaHello67,1888 - from pyswip import Functor, Variable, QueryFunctor74,2113 - from pyswip import Functor, Variable, QueryVariable74,2113 - assertz = Functor("assertz", 2)assertz76,2162 - Hello, johnHello89,2465 - Hello, ginaHello90,2481 - -packages/pyswip/README.YAP,0 - -packages/pyswip/setup.py,605 -import syssys4,24 -import osos5,35 -import os.pathos6,45 -import os.pathpath6,45 -from distutils.core import setupsetup7,60 - version="0.2.2",version10,115 - url="http://code.google.com/p/pyswip/",url11,134 - download_url="http://code.google.com/p/pyswip/downloads/list",download_url12,176 - author="Yuce Tekol",author13,241 - author_email="yucetekol@gmail.com",author_email14,264 - description="PySWIP enables querying SWI-Prolog in your Python programs.",description15,302 - license="GPL",license104,2874 - packages=["pyswip"],packages105,2891 - classifiers=[classifiers106,2914 - -packages/python/#sc#,76 - PyThreadState *_save;_save1,0 - PyThreadState_Swap(_save);_save7,157 - -packages/python/__init__.py,39 -__version__ = '0.0.1'__version__3,35 - -packages/python/__main__.py,53 - from yap_kernel import kernelapp as appapp2,27 - -packages/python/examples/multiply.py,127 -i = 5i1,0 -def f(arg=i):f3,7 -def multiply(a,b):multiply6,36 -def square(a,b):square13,163 -def lsquare(a):lsquare16,202 - -packages/python/examples/mysql.pl,1029 -main :- main10,122 -ex(open) :-ex17,189 -ex(open) :-ex17,189 -ex(open) :-ex17,189 -ex(create) :-ex27,465 -ex(create) :-ex27,465 -ex(create) :-ex27,465 -ex(insert) :-ex41,870 -ex(insert) :-ex41,870 -ex(insert) :-ex41,870 -add :-add47,991 -add :- add56,1280 -rollback :-rollback60,1354 -connect :-connect63,1387 -close :-close72,1721 -ex(read) :-ex77,1800 -ex(read) :-ex77,1800 -ex(read) :-ex77,1800 -try:-try85,1984 -except:-except98,2349 -customer('João', 'Matos', 40, 'M', 2000).customer103,2431 -customer('João', 'Matos', 40, 'M', 2000).customer103,2431 -customer('Maria', 'Söderling', 20, 'F', 3000).customer104,2474 -customer('Maria', 'Söderling', 20, 'F', 3000).customer104,2474 -customer('毛', '泽东', 44, 'M', 500).customer105,2522 -customer('毛', '泽东', 44, 'M', 500).customer105,2522 -customer('রবীন্দ্রনাথ', 'ঠাকুর', 30, 'M', 8000).customer106,2563 -customer('রবীন্দ্রনাথ', 'ঠাকুর', 30, 'M', 8000).customer106,2563 - -packages/python/examples/nltk.pl,353 -main :-main15,301 -main :-main21,419 -process(In, Out) :-process31,930 -process(In, Out) :-process31,930 -process(In, Out) :-process31,930 -process(In, In).process34,990 -process(In, In).process34,990 -main(Sentence, Tokens, Tagged) :- main36,1012 -main(Sentence, Tokens, Tagged) :- main36,1012 -main(Sentence, Tokens, Tagged) :- main36,1012 - -packages/python/examples/plot.py,86 -:= import matplotlib.pyplot,matplotlib5,32 -:= import matplotlib.pyplot,pyplot5,32 - -packages/python/examples/plot.yap,40 -main :-main4,24 -main2 :-main215,206 - -packages/python/examples/pyx.pl,280 -setup_dir :-setup_dir6,60 -main :- main13,179 -ex(hello) :-ex20,246 -ex(hello) :-ex20,246 -ex(hello) :-ex20,246 -ex(pathitem) :-ex26,388 -ex(pathitem) :-ex26,388 -ex(pathitem) :-ex26,388 -ex(changebar) :-ex43,1175 -ex(changebar) :-ex43,1175 -ex(changebar) :-ex43,1175 - -packages/python/examples/tests.yap,1087 -main :-main4,64 -test(I) :-test11,147 -test(I) :-test11,147 -test(I) :-test11,147 -dot(I) :-dot17,259 -dot(I) :-dot17,259 -dot(I) :-dot17,259 -err(I,N) :-err21,305 -err(I,N) :-err21,305 -err(I,N) :-err21,305 -det(a1,[X],[2]) :- X:=2.det25,369 -det(a1,[X],[2]) :- X:=2.det25,369 -det(a1,[X],[2]) :- X:=2.det25,369 -det(a2,[],[]) :- x := range(1,10).det26,394 -det(a2,[],[]) :- x := range(1,10).det26,394 -det(a2,[],[]) :- x := range(1,10).det26,394 -det(a2,[],[]) :- x := range(1,10).det26,394 -det(a2,[],[]) :- x := range(1,10).det26,394 -det(b2 [X],[9]) :- X := x.length().det27,429 -det(b2 [X],[9]) :- X := x.length().det27,429 -det(b2 [X],[9]) :- X := x.length().det27,429 -det(b2 [X],[9]) :- X := x.length().det27,429 -det(b2 [X],[9]) :- X := x.length().det27,429 -det(c3,[X],[Y]) :- X:=cmath.sin(1), Y is sin(1)det28,465 -det(c3,[X],[Y]) :- X:=cmath.sin(1), Y is sin(1)det28,465 -det(c3,[X],[Y]) :- X:=cmath.sin(1), Y is sin(1)det28,465 -det(c3,[X],[Y]) :- X:=cmath.sin(1), Y is sin(1)det28,465 -det(c3,[X],[Y]) :- X:=cmath.sin(1), Y is sin(1)det28,465 - -packages/python/examples/tut.pl,1156 -main :- main6,60 -ex(currency) :-ex20,254 -ex(currency) :-ex20,254 -ex(currency) :-ex20,254 -ex(home) :-ex33,459 -ex(home) :-ex33,459 -ex(home) :-ex33,459 -ex(site) :-ex43,586 -ex(site) :-ex43,586 -ex(site) :-ex43,586 -ex(arith) :-ex47,669 -ex(arith) :-ex47,669 -ex(arith) :-ex47,669 -ex(undefined) :-ex56,818 -ex(undefined) :-ex56,818 -ex(undefined) :-ex56,818 -ex(fp) :-ex61,912 -ex(fp) :-ex61,912 -ex(fp) :-ex61,912 -ex(complex) :-ex66,989 -ex(complex) :-ex66,989 -ex(complex) :-ex66,989 -ex(floatint) :-ex74,1161 -ex(floatint) :-ex74,1161 -ex(floatint) :-ex74,1161 -ex(strings) :-ex80,1274 -ex(strings) :-ex80,1274 -ex(strings) :-ex80,1274 -ex(strings2) :-ex94,1676 -ex(strings2) :-ex94,1676 -ex(strings2) :-ex94,1676 -ex(slices) :-ex103,1877 -ex(slices) :-ex103,1877 -ex(slices) :-ex103,1877 -ex(lists) :-ex113,2076 -ex(lists) :-ex113,2076 -ex(lists) :-ex113,2076 -ex(iter) :-ex132,2492 -ex(iter) :-ex132,2492 -ex(iter) :-ex132,2492 -iterate(iter) :-iterate137,2562 -iterate(iter) :-iterate137,2562 -iterate(iter) :-iterate137,2562 -ex(range) :-ex147,2658 -ex(range) :-ex147,2658 -ex(range) :-ex147,2658 - -packages/python/install.py,481 -import jsonjson1,0 -import osos2,12 -import syssys3,22 - from jupyter_client.kernelspec import install_kernel_specinstall_kernel_spec6,39 - from IPython.kernel.kernelspec import install_kernel_specinstall_kernel_spec8,121 -from IPython.utils.tempdir import TemporaryDirectoryTemporaryDirectory9,183 -kernel_json = {kernel_json12,238 -def install_my_kernel_spec(user=False):install_my_kernel_spec22,465 -def _is_root():_is_root32,894 -def main(argv=[]):main39,1061 - -packages/python/pandas.yap,123 -pred2panda(Pred, Obj) :-pred2panda6,60 -pred2panda(Pred, Obj) :-pred2panda6,60 -pred2panda(Pred, Obj) :-pred2panda6,60 - -packages/python/pl2pl.c,489 -static foreign_t array_to_python_list(term_t addr, term_t type, term_t szt,array_to_python_list4,22 -static foreign_t array_to_python_tuple(term_t addr, term_t type, term_t szt,array_to_python_tuple35,828 -static foreign_t array_to_python_view(term_t addr, term_t type, term_t szt,array_to_python_view79,1839 -static foreign_t prolog_list_to_python_list(term_t plist, term_t pyt, term_t tlen) {prolog_list_to_python_list115,2748 -install_t install_pl2pl(void) {install_pl2pl145,3573 - -packages/python/pl2py.c,395 -PyObject *YE(term_t t, int line, const char *file, const char *code)YE7,63 -void YEM(const char *exp, int line, const char *file, const char *code)YEM16,318 -PyObject *term_to_python(term_t t, bool eval, PyObject *o)term_to_python29,716 -PyObject *yap_to_python(YAP_Term t, bool eval, PyObject *o)yap_to_python175,3565 -PyObject *deref_term_to_python(term_t t)deref_term_to_python185,3765 - -packages/python/py2pl.c,476 -static foreign_t repr_term(PyObject *pVal, term_t t) {repr_term4,26 -foreign_t assign_to_symbol(term_t t, PyObject *e) {assign_to_symbol14,311 -foreign_t python_to_term(PyObject *pVal, term_t t) {python_to_term25,564 -X_API YAP_Term pythonToYAP(PyObject *pVal) {pythonToYAP189,5190 -PyObject *py_Local, *py_Global;py_Local200,5431 -PyObject *py_Local, *py_Global;py_Global200,5431 -bool python_assign(term_t t, PyObject *exp, PyObject *context) {python_assign219,5955 - -packages/python/pybips.c,2121 -static PyObject *finalLookup(PyObject *i, const char *s) {finalLookup15,195 -PyObject *PythonLookupSpecial(const char *s) {PythonLookupSpecial35,637 -PyObject *lookupPySymbol(const char *sp, PyObject *pContext, PyObject **duc) {lookupPySymbol54,1000 -int lookupPyModule(Py_mod *q) {lookupPyModule85,1746 -PyObject *PythonLookup(const char *s, PyObject *oo) {PythonLookup112,2341 -PyObject *find_obj(PyObject *ob, term_t l, bool eval) {find_obj119,2501 -static PyObject *bip_abs(term_t t) {bip_abs146,2995 -static PyObject *bip_all(term_t t) {bip_all165,3441 -static PyObject *bip_any(term_t t) {bip_any212,4486 -static PyObject *bip_bin(term_t t) {bip_bin249,5258 -static PyObject *bip_float(term_t t, bool eval) {bip_float257,5419 -static PyObject *bip_int(term_t t) {bip_int276,5875 -static PyObject *bip_long(term_t t) {bip_long302,6454 -static PyObject *bip_iter(term_t t) {bip_iter321,6860 -static PyObject *bip_ord(term_t t) {bip_ord329,7021 -static PyObject *bip_sum(term_t t) {bip_sum371,7969 -static long get_int(term_t arg, bool eval) {get_int541,12396 -static long get_len_of_range(long lo, long hi, long step) {get_len_of_range563,12931 -static PyStructSequence_Field pnull[] = {pnull587,13972 -static PyObject *structseq_str(PyObject *iobj) {structseq_str598,14588 -#define REPR_BUFFER_SIZE REPR_BUFFER_SIZE601,14694 -#define TYPE_MAXSIZE TYPE_MAXSIZE602,14723 -static PyObject *structseq_repr(PyObject *iobj) {structseq_repr661,16116 -#define REPR_BUFFER_SIZE REPR_BUFFER_SIZE664,16223 -#define TYPE_MAXSIZE TYPE_MAXSIZE665,16252 -PyObject *term_to_nametuple(const char *s, arity_t arity, PyObject *tuple) {term_to_nametuple725,17647 -static PyObject *bip_range(term_t t) {bip_range775,19240 -static bool copy_to_dictionary(PyObject *dict, term_t targ, term_t taux,copy_to_dictionary831,20517 -PyObject *compound_to_data(term_t t, PyObject *o, functor_t fun, bool exec) {compound_to_data868,21619 -PyObject *compound_to_pytree(term_t t, PyObject *context) {compound_to_pytree1043,26289 -PyObject *compound_to_pyeval(term_t t, PyObject *context) {compound_to_pyeval1099,27713 - -packages/python/pypreds.c,2186 -PyObject *py_Main;py_Main4,25 -void pyErrorHandler__(int line, const char *file, const char *code) {pyErrorHandler__6,47 -static foreign_t python_len(term_t tobj, term_t tf) {python_len11,273 -static foreign_t python_dir(term_t tobj, term_t tf) {python_dir23,555 -static foreign_t python_index(term_t tobj, term_t tindex, term_t val) {python_index39,877 -static foreign_t python_is(term_t tobj, term_t tf) {python_is67,1570 -static foreign_t python_proc(term_t tobj) {python_proc85,1947 -static foreign_t python_slice(term_t parent, term_t indx, term_t tobj) {python_slice97,2186 -static foreign_t python_apply(term_t tin, term_t targs, term_t keywds,python_apply124,2803 -static foreign_t assign_python(term_t exp, term_t name) {assign_python205,4919 -static foreign_t python_builtin_eval(term_t caller, term_t dict, term_t out) {python_builtin_eval219,5277 -static foreign_t python_access(term_t obj, term_t f, term_t out) {python_access281,6901 -static foreign_t python_field(term_t parent, term_t att, term_t tobj) {python_field342,8604 -static foreign_t python_main_module(term_t mod) {python_main_module384,9679 -static foreign_t python_function(term_t tobj) {python_function393,9859 -foreign_t python_builtin(term_t out) {python_builtin401,10059 -static foreign_t python_run_file(term_t file) {python_run_file410,10231 -static foreign_t python_run_command(term_t cmd) {python_run_command436,10857 -static foreign_t python_run_script(term_t cmd, term_t fun) {python_run_script451,11153 -static foreign_t python_export(term_t t, term_t pl) {python_export508,12714 -static int python_import(term_t mname, term_t mod) {python_import538,13518 -static foreign_t python_to_rhs(term_t inp, term_t t) {python_to_rhs595,14937 -static bool _threaded = false;_threaded605,15231 -int _locked = 0;_locked626,15647 -PyThreadState *tstate;tstate627,15665 -static YAP_Int p_python_threaded(void) {p_python_threaded629,15691 -static PyGILState_STATE gstate;gstate639,15927 - term_t python_acquire_GIL(void) {python_acquire_GIL641,15962 -bool python_release_GIL(term_t curBlock) {python_release_GIL654,16349 -install_t install_pypreds(void) {install_pypreds665,16575 - -packages/python/python.c,5180 -atom_t ATOM_true, ATOM_false, ATOM_colon, ATOM_dot, ATOM_none, ATOM_t,ATOM_true4,22 -atom_t ATOM_true, ATOM_false, ATOM_colon, ATOM_dot, ATOM_none, ATOM_t,ATOM_false4,22 -atom_t ATOM_true, ATOM_false, ATOM_colon, ATOM_dot, ATOM_none, ATOM_t,ATOM_colon4,22 -atom_t ATOM_true, ATOM_false, ATOM_colon, ATOM_dot, ATOM_none, ATOM_t,ATOM_dot4,22 -atom_t ATOM_true, ATOM_false, ATOM_colon, ATOM_dot, ATOM_none, ATOM_t,ATOM_none4,22 -atom_t ATOM_true, ATOM_false, ATOM_colon, ATOM_dot, ATOM_none, ATOM_t,ATOM_t4,22 - ATOM_comma, ATOM_builtin, ATOM_A, ATOM_V, ATOM_self, ATOM_nil, ATOM_brackets, ATOM_curly_brackets;ATOM_comma5,93 - ATOM_comma, ATOM_builtin, ATOM_A, ATOM_V, ATOM_self, ATOM_nil, ATOM_brackets, ATOM_curly_brackets;ATOM_builtin5,93 - ATOM_comma, ATOM_builtin, ATOM_A, ATOM_V, ATOM_self, ATOM_nil, ATOM_brackets, ATOM_curly_brackets;ATOM_A5,93 - ATOM_comma, ATOM_builtin, ATOM_A, ATOM_V, ATOM_self, ATOM_nil, ATOM_brackets, ATOM_curly_brackets;ATOM_V5,93 - ATOM_comma, ATOM_builtin, ATOM_A, ATOM_V, ATOM_self, ATOM_nil, ATOM_brackets, ATOM_curly_brackets;ATOM_self5,93 - ATOM_comma, ATOM_builtin, ATOM_A, ATOM_V, ATOM_self, ATOM_nil, ATOM_brackets, ATOM_curly_brackets;ATOM_nil5,93 - ATOM_comma, ATOM_builtin, ATOM_A, ATOM_V, ATOM_self, ATOM_nil, ATOM_brackets, ATOM_curly_brackets;ATOM_brackets5,93 - ATOM_comma, ATOM_builtin, ATOM_A, ATOM_V, ATOM_self, ATOM_nil, ATOM_brackets, ATOM_curly_brackets;ATOM_curly_brackets5,93 -functor_t FUNCTOR_dollar1, FUNCTOR_abs1, FUNCTOR_all1, FUNCTOR_any1,FUNCTOR_dollar17,195 -functor_t FUNCTOR_dollar1, FUNCTOR_abs1, FUNCTOR_all1, FUNCTOR_any1,FUNCTOR_abs17,195 -functor_t FUNCTOR_dollar1, FUNCTOR_abs1, FUNCTOR_all1, FUNCTOR_any1,FUNCTOR_all17,195 -functor_t FUNCTOR_dollar1, FUNCTOR_abs1, FUNCTOR_all1, FUNCTOR_any1,FUNCTOR_any17,195 - FUNCTOR_bin1, FUNCTOR_brackets1, FUNCTOR_comma2, FUNCTOR_dir1,FUNCTOR_bin18,264 - FUNCTOR_bin1, FUNCTOR_brackets1, FUNCTOR_comma2, FUNCTOR_dir1,FUNCTOR_brackets18,264 - FUNCTOR_bin1, FUNCTOR_brackets1, FUNCTOR_comma2, FUNCTOR_dir1,FUNCTOR_comma28,264 - FUNCTOR_bin1, FUNCTOR_brackets1, FUNCTOR_comma2, FUNCTOR_dir1,FUNCTOR_dir18,264 - FUNCTOR_float1, FUNCTOR_int1, FUNCTOR_iter1, FUNCTOR_iter2, FUNCTOR_long1,FUNCTOR_float19,329 - FUNCTOR_float1, FUNCTOR_int1, FUNCTOR_iter1, FUNCTOR_iter2, FUNCTOR_long1,FUNCTOR_int19,329 - FUNCTOR_float1, FUNCTOR_int1, FUNCTOR_iter1, FUNCTOR_iter2, FUNCTOR_long1,FUNCTOR_iter19,329 - FUNCTOR_float1, FUNCTOR_int1, FUNCTOR_iter1, FUNCTOR_iter2, FUNCTOR_long1,FUNCTOR_iter29,329 - FUNCTOR_float1, FUNCTOR_int1, FUNCTOR_iter1, FUNCTOR_iter2, FUNCTOR_long1,FUNCTOR_long19,329 - FUNCTOR_len1, FUNCTOR_curly1, FUNCTOR_ord1, FUNCTOR_range1, FUNCTOR_range2,FUNCTOR_len110,406 - FUNCTOR_len1, FUNCTOR_curly1, FUNCTOR_ord1, FUNCTOR_range1, FUNCTOR_range2,FUNCTOR_curly110,406 - FUNCTOR_len1, FUNCTOR_curly1, FUNCTOR_ord1, FUNCTOR_range1, FUNCTOR_range2,FUNCTOR_ord110,406 - FUNCTOR_len1, FUNCTOR_curly1, FUNCTOR_ord1, FUNCTOR_range1, FUNCTOR_range2,FUNCTOR_range110,406 - FUNCTOR_len1, FUNCTOR_curly1, FUNCTOR_ord1, FUNCTOR_range1, FUNCTOR_range2,FUNCTOR_range210,406 - FUNCTOR_range3, FUNCTOR_sum1, FUNCTOR_pointer1, FUNCTOR_complex2,FUNCTOR_range311,484 - FUNCTOR_range3, FUNCTOR_sum1, FUNCTOR_pointer1, FUNCTOR_complex2,FUNCTOR_sum111,484 - FUNCTOR_range3, FUNCTOR_sum1, FUNCTOR_pointer1, FUNCTOR_complex2,FUNCTOR_pointer111,484 - FUNCTOR_range3, FUNCTOR_sum1, FUNCTOR_pointer1, FUNCTOR_complex2,FUNCTOR_complex211,484 - FUNCTOR_plus2, FUNCTOR_sub2, FUNCTOR_mul2, FUNCTOR_div2, FUNCTOR_hat2,FUNCTOR_plus212,552 - FUNCTOR_plus2, FUNCTOR_sub2, FUNCTOR_mul2, FUNCTOR_div2, FUNCTOR_hat2,FUNCTOR_sub212,552 - FUNCTOR_plus2, FUNCTOR_sub2, FUNCTOR_mul2, FUNCTOR_div2, FUNCTOR_hat2,FUNCTOR_mul212,552 - FUNCTOR_plus2, FUNCTOR_sub2, FUNCTOR_mul2, FUNCTOR_div2, FUNCTOR_hat2,FUNCTOR_div212,552 - FUNCTOR_plus2, FUNCTOR_sub2, FUNCTOR_mul2, FUNCTOR_div2, FUNCTOR_hat2,FUNCTOR_hat212,552 - FUNCTOR_colon2, FUNCTOR_comma2, FUNCTOR_equal2, FUNCTOR_sqbrackets2,FUNCTOR_colon213,625 - FUNCTOR_colon2, FUNCTOR_comma2, FUNCTOR_equal2, FUNCTOR_sqbrackets2,FUNCTOR_comma213,625 - FUNCTOR_colon2, FUNCTOR_comma2, FUNCTOR_equal2, FUNCTOR_sqbrackets2,FUNCTOR_equal213,625 - FUNCTOR_colon2, FUNCTOR_comma2, FUNCTOR_equal2, FUNCTOR_sqbrackets2,FUNCTOR_sqbrackets213,625 - FUNCTOR_dot2, FUNCTOR_brackets1;FUNCTOR_dot214,696 - FUNCTOR_dot2, FUNCTOR_brackets1;FUNCTOR_brackets114,696 -X_API PyObject *py_Builtin;py_Builtin16,732 -X_API PyObject *py_Yapex;py_Yapex17,760 -X_API PyObject *py_Sys;py_Sys18,786 -PyObject *py_Context;py_Context19,810 -PyObject *py_ModDict;py_ModDict20,832 -X_API PyObject *py_F2P;py_F2P22,855 -bool python_in_python;python_in_python24,880 -static void add_modules(void) {add_modules26,904 -static void install_py_constants(void) {install_py_constants43,1437 -foreign_t end_python(void) {end_python91,3789 -static bool libpython_initialized = 0;libpython_initialized98,3881 -X_API bool do_init_python(void) {do_init_python100,3921 -X_API bool init_python(void) {init_python119,4345 -int WINAPI win_python(HANDLE hinst, DWORD reason, LPVOID reserved) {win_python131,4532 - -packages/python/python.h,1175 -#undef _XOPEN_SOURCE _XOPEN_SOURCE12,168 -#undef HAVE_STATaHAVE_STATa18,287 -#define EXTRA_MESSSAGES EXTRA_MESSSAGES22,352 -#define PYTHON_H PYTHON_H25,396 -#define DebugPrintf(DebugPrintf30,491 -#define DebugPrintf(DebugPrintf32,577 -#define PY_MAX_MODLEN PY_MAX_MODLEN38,683 -typedef struct s_mod_t {s_mod_t39,708 - PyObject *mod;mod40,733 - PyObject *mod;s_mod_t::mod40,733 - int length;length41,750 - int length;s_mod_t::length41,750 - YAP_Term names[PY_MAX_MODLEN];names42,764 - YAP_Term names[PY_MAX_MODLEN];s_mod_t::names42,764 -} Py_mod;Py_mod43,797 -typedef YAP_Arity arity_t;arity_t48,934 -static inline Py_ssize_t get_p_int(PyObject *o, Py_ssize_t def) {get_p_int77,2082 -static inline foreign_t address_to_term(PyObject *pVal, term_t t) {address_to_term90,2347 -static inline int proper_ascii_string(const char *s) {proper_ascii_string100,2648 -static inline PyObject *atom_to_python_string(term_t t) {atom_to_python_string110,2805 -#define CHECK_CALL(CHECK_CALL129,3295 -#define CHECKNULL(CHECKNULL137,3512 -#define AOK(AOK138,3595 -#define pyErrorHandler(pyErrorHandler145,3910 -#define pyErrorAndReturn(pyErrorAndReturn152,4320 - -packages/python/python.pl,617 -:- dynamic python_mref_cache/2, python_obj_cache/2.dynamic116,3363 -:- dynamic python_mref_cache/2, python_obj_cache/2.dynamic116,3363 -python_import(Module) :-python_import133,3593 -python_import(Module) :-python_import133,3593 -python_import(Module) :-python_import133,3593 -python(Exp, Out) :-python137,3650 -python(Exp, Out) :-python137,3650 -python(Exp, Out) :-python137,3650 -python_command(Cmd) :-python_command140,3684 -python_command(Cmd) :-python_command140,3684 -python_command(Cmd) :-python_command140,3684 -start_python :-start_python144,3741 -add_cwd_to_python :-add_cwd_to_python148,3810 - -packages/python/pytils.yap,0 - -packages/python/setup.py,2089 -from __future__ import print_functionprint_function7,141 -name = 'ipykernel'name10,206 -import syssys16,423 -v = sys.version_infov18,435 - error = "ERROR: %s requires Python version 2.7 or 3.3 or above." % nameerror20,507 -PY3 = (sys.version_info[0] >= 3)PY324,634 -from glob import globglob30,844 -import osos31,866 -import shutilshutil32,876 -from distutils.core import setupsetup34,891 -pjoin = os.path.joinpjoin36,925 -here = os.path.abspath(os.path.dirname(__file__))here37,946 -pkg_root = pjoin(here, name)pkg_root38,996 -packages = []packages40,1026 -package_data = {package_data45,1199 -version_ns = {}version_ns49,1255 -setup_args = dict(setup_args54,1358 - name = name,name55,1377 - version = version_ns['__version__'],version56,1405 - scripts = glob(pjoin('scripts', '*')),scripts57,1454 - packages = packages,packages58,1505 - py_modules = ['ipykernel_launcher'],py_modules59,1537 - package_data = package_data,package_data60,1583 - description = "IPython Kernel for Jupyter",description61,1619 - author = 'IPython Development Team',author62,1671 - author_email = 'ipython-dev@scipy.org',author_email63,1721 - url = 'http://ipython.org',url64,1768 - license = 'BSD',license65,1812 - platforms = "Linux, Mac OS X, Windows",platforms66,1841 - keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'],keywords67,1891 - classifiers = [classifiers68,1961 - import setuptoolssetuptools80,2403 -setuptools_args = {}setuptools_args82,2426 - from ipykernel.kernelspec import write_kernel_spec, make_yap_kernel_cmd, KERNEL_NAMEwrite_kernel_spec91,2668 - from ipykernel.kernelspec import write_kernel_spec, make_yap_kernel_cmd, KERNEL_NAMEmake_yap_kernel_cmd91,2668 - from ipykernel.kernelspec import write_kernel_spec, make_yap_kernel_cmd, KERNEL_NAMEKERNEL_NAME91,2668 - argv = make_yap_kernel_cmd(executable='python')argv93,2758 - dest = os.path.join(here, 'data_kernelspec')dest94,2810 - -packages/python/swig/__init__.py,241 -import impimp1,0 -import osos2,11 -import ctypesctypes3,21 -import globglob4,35 -import os.pathos5,47 -import os.pathpath5,47 -import syssys6,62 -yap_lib_path = os.path.dirname(__file__)yap_lib_path9,94 -def load( dll ):load12,149 - -packages/python/swig/__main__.py,73 -import syssys3,51 -import yapiyapi4,62 -def main(args=None):main7,76 - -packages/python/swig/_yap.c,0 - -packages/python/swig/setup.py,2659 -from setuptools import setupsetup9,184 -from setuptools.extension import ExtensionExtension10,213 -from codecs import openopen12,289 -from os import path, makedirs, walkpath13,313 -from os import path, makedirs, walkmakedirs13,313 -from os import path, makedirs, walkwalk13,313 -from shutil import copytree, rmtree, copy2, movecopytree14,349 -from shutil import copytree, rmtree, copy2, movermtree14,349 -from shutil import copytree, rmtree, copy2, movecopy214,349 -from shutil import copytree, rmtree, copy2, movemove14,349 -from glob import globglob15,398 -from pathlib import PathPath16,420 -import platformplatform17,445 -import os.pathos18,461 -import os.pathpath18,461 -my_extra_link_args = []my_extra_link_args20,477 - my_extra_link_args = ['-Wl,-rpath','-Wl,']my_extra_link_args22,535 - so = 'dylib'so23,582 -pls = []pls26,655 -cplus=['../../../CXX/yapi.cpp']cplus35,896 -py2yap=['../../../packages/python/python.c',py2yap36,928 -python_sources = ['yapPYTHON_wrap.cxx']+py2yap+cpluspython_sources43,1197 -here = path.abspath(path.dirname(__file__))here44,1250 -extensions=[Extension('_yap', python_sources,extensions48,1344 - define_macros = [('MAJOR_VERSION', '1'),define_macros49,1390 - runtime_library_dirs=['yap4py','/usr/local/lib','/usr/local/bin'],runtime_library_dirs53,1646 - swig_opts=['-modern', '-c++', '-py3','-I../../..//CXX'],swig_opts54,1735 - library_dirs=['../../..','../../../CXX','../../packages/python',"/usr/local/lib/Yap","/usr/local/bin", '.'],library_dirs55,1804 - extra_link_args=my_extra_link_args,extra_link_args56,1935 - extra_compile_args=['-g'],extra_compile_args57,1983 - libraries=['Yap','/usr/local/lib/libgmp.dylib'],libraries58,2032 - include_dirs=['../../..',include_dirs59,2093 - name='YAP4Py',name70,2511 - version='6.3.5',version71,2530 - description='The YAP Prolog compiler as a Python Library',description72,2551 - url='https://github.com/vscosta/yap-6.3',url73,2615 - author='Vitor Santos Costa',author74,2661 - author_email='vsc@dcc.fc.up.pt',author_email75,2694 - license='Artistic',license76,2731 - classifiers=[classifiers77,2755 - keywords=['Logic Programing'],keywords88,3214 - include_package_data=True,include_package_data90,3283 - ext_modules = extensions,ext_modules91,3314 - py_modules = ['yap'],py_modules92,3344 - zip_safe=False,zip_safe93,3370 - eager_resources = ['yap4py'],eager_resources94,3390 - packages=['yap4py'] # find_packages()packages95,3424 - -packages/python/swig/yap4py/__init__.py,241 -import impimp1,0 -import osos2,11 -import ctypesctypes3,21 -import globglob4,35 -import os.pathos5,47 -import os.pathpath5,47 -import syssys6,62 -yap_lib_path = os.path.dirname(__file__)yap_lib_path9,94 -def load( dll ):load12,149 - -packages/python/swig/yap4py/prolog/apply.yap,0 - -packages/python/swig/yap4py/prolog/apply_macros.yap,0 - -packages/python/swig/yap4py/prolog/arg.yap,1504 -arg0(0,T,A) :- !,arg064,1063 -arg0(0,T,A) :- !,arg064,1063 -arg0(0,T,A) :- !,arg064,1063 -arg0(I,T,A) :-arg066,1098 -arg0(I,T,A) :-arg066,1098 -arg0(I,T,A) :-arg066,1098 -genarg0(I,T,A) :-genarg084,1368 -genarg0(I,T,A) :-genarg084,1368 -genarg0(I,T,A) :-genarg084,1368 -genarg0(0,T,A) :-genarg087,1415 -genarg0(0,T,A) :-genarg087,1415 -genarg0(0,T,A) :-genarg087,1415 -genarg0(I,T,A) :-genarg089,1450 -genarg0(I,T,A) :-genarg089,1450 -genarg0(I,T,A) :-genarg089,1450 -args( I, Ts, As) :-args99,1715 -args( I, Ts, As) :-args99,1715 -args( I, Ts, As) :-args99,1715 -args(_,[],[]).args112,1940 -args(_,[],[]).args112,1940 -args(I,[T|List],[A|ArgList]) :-args113,1955 -args(I,[T|List],[A|ArgList]) :-args113,1955 -args(I,[T|List],[A|ArgList]) :-args113,1955 -args( I, Ts, As) :-args124,2264 -args( I, Ts, As) :-args124,2264 -args( I, Ts, As) :-args124,2264 -args0(_,[],[]).args0137,2490 -args0(_,[],[]).args0137,2490 -args0(I,[T|List],[A|ArgList]) :-args0138,2506 -args0(I,[T|List],[A|ArgList]) :-args0138,2506 -args0(I,[T|List],[A|ArgList]) :-args0138,2506 -project(Terms, Index, Args) :-project149,2822 -project(Terms, Index, Args) :-project149,2822 -project(Terms, Index, Args) :-project149,2822 -path_arg([], Term, Term).path_arg160,3230 -path_arg([], Term, Term).path_arg160,3230 -path_arg([Index|Indices], Term, SubTerm) :-path_arg161,3256 -path_arg([Index|Indices], Term, SubTerm) :-path_arg161,3256 -path_arg([Index|Indices], Term, SubTerm) :-path_arg161,3256 - -packages/python/swig/yap4py/prolog/assoc.yap,3754 -empty_assoc(t).empty_assoc85,1624 -empty_assoc(t).empty_assoc85,1624 -assoc_to_list(t, L) :- !, L = [].assoc_to_list96,1829 -assoc_to_list(t, L) :- !, L = [].assoc_to_list96,1829 -assoc_to_list(t, L) :- !, L = [].assoc_to_list96,1829 -assoc_to_list(T, L) :-assoc_to_list97,1863 -assoc_to_list(T, L) :-assoc_to_list97,1863 -assoc_to_list(T, L) :-assoc_to_list97,1863 -is_assoc(t) :- !.is_assoc105,2020 -is_assoc(t) :- !.is_assoc105,2020 -is_assoc(t) :- !.is_assoc105,2020 -is_assoc(T) :-is_assoc106,2038 -is_assoc(T) :-is_assoc106,2038 -is_assoc(T) :-is_assoc106,2038 -min_assoc(T,K,V) :-min_assoc118,2239 -min_assoc(T,K,V) :-min_assoc118,2239 -min_assoc(T,K,V) :-min_assoc118,2239 -max_assoc(T,K,V) :-max_assoc130,2445 -max_assoc(T,K,V) :-max_assoc130,2445 -max_assoc(T,K,V) :-max_assoc130,2445 -gen_assoc(K, T, V) :-gen_assoc140,2697 -gen_assoc(K, T, V) :-gen_assoc140,2697 -gen_assoc(K, T, V) :-gen_assoc140,2697 -get_assoc(K,T,V) :-get_assoc149,2887 -get_assoc(K,T,V) :-get_assoc149,2887 -get_assoc(K,T,V) :-get_assoc149,2887 -get_assoc(K,T,V,NT,NV) :-get_assoc161,3191 -get_assoc(K,T,V,NT,NV) :-get_assoc161,3191 -get_assoc(K,T,V,NT,NV) :-get_assoc161,3191 -get_next_assoc(K,T,KN,VN) :-get_next_assoc171,3435 -get_next_assoc(K,T,KN,VN) :-get_next_assoc171,3435 -get_next_assoc(K,T,KN,VN) :-get_next_assoc171,3435 -get_prev_assoc(K,T,KP,VP) :-get_prev_assoc182,3684 -get_prev_assoc(K,T,KP,VP) :-get_prev_assoc182,3684 -get_prev_assoc(K,T,KP,VP) :-get_prev_assoc182,3684 -list_to_assoc(L, T) :-list_to_assoc194,3954 -list_to_assoc(L, T) :-list_to_assoc194,3954 -list_to_assoc(L, T) :-list_to_assoc194,3954 -ord_list_to_assoc(L, T) :-ord_list_to_assoc205,4228 -ord_list_to_assoc(L, T) :-ord_list_to_assoc205,4228 -ord_list_to_assoc(L, T) :-ord_list_to_assoc205,4228 -map_assoc(t, _) :- !.map_assoc216,4434 -map_assoc(t, _) :- !.map_assoc216,4434 -map_assoc(t, _) :- !.map_assoc216,4434 -map_assoc(P, T) :-map_assoc217,4456 -map_assoc(P, T) :-map_assoc217,4456 -map_assoc(P, T) :-map_assoc217,4456 -map_assoc(t, T, T) :- !.map_assoc229,4862 -map_assoc(t, T, T) :- !.map_assoc229,4862 -map_assoc(t, T, T) :- !.map_assoc229,4862 -map_assoc(P, T, NT) :-map_assoc230,4887 -map_assoc(P, T, NT) :-map_assoc230,4887 -map_assoc(P, T, NT) :-map_assoc230,4887 -extract_mod(G,_,_) :- var(G), !, fail.extract_mod237,5015 -extract_mod(G,_,_) :- var(G), !, fail.extract_mod237,5015 -extract_mod(G,_,_) :- var(G), !, fail.extract_mod237,5015 -extract_mod(M:G, _, FM, FG ) :- !,extract_mod238,5054 -extract_mod(M:G, _, FM, FG ) :- !,extract_mod238,5054 -extract_mod(M:G, _, FM, FG ) :- !,extract_mod238,5054 -extract_mod(G, M, M, G ).extract_mod240,5118 -extract_mod(G, M, M, G ).extract_mod240,5118 -put_assoc(K, T, V, NT) :-put_assoc249,5349 -put_assoc(K, T, V, NT) :-put_assoc249,5349 -put_assoc(K, T, V, NT) :-put_assoc249,5349 -put_assoc(K, t, V, NT) :- !,put_assoc251,5403 -put_assoc(K, t, V, NT) :- !,put_assoc251,5403 -put_assoc(K, t, V, NT) :- !,put_assoc251,5403 -put_assoc(K, T, V, NT) :-put_assoc253,5457 -put_assoc(K, T, V, NT) :-put_assoc253,5457 -put_assoc(K, T, V, NT) :-put_assoc253,5457 -del_assoc(K, T, V, NT) :-del_assoc264,5709 -del_assoc(K, T, V, NT) :-del_assoc264,5709 -del_assoc(K, T, V, NT) :-del_assoc264,5709 -del_min_assoc(T, K, V, NT) :-del_min_assoc275,5986 -del_min_assoc(T, K, V, NT) :-del_min_assoc275,5986 -del_min_assoc(T, K, V, NT) :-del_min_assoc275,5986 -del_max_assoc(T, K, V, NT) :-del_max_assoc286,6267 -del_max_assoc(T, K, V, NT) :-del_max_assoc286,6267 -del_max_assoc(T, K, V, NT) :-del_max_assoc286,6267 -assoc_to_keys(T, Ks) :-assoc_to_keys290,6325 -assoc_to_keys(T, Ks) :-assoc_to_keys290,6325 -assoc_to_keys(T, Ks) :-assoc_to_keys290,6325 - -packages/python/swig/yap4py/prolog/atts.yap,9814 -:- dynamic existing_attribute/4.dynamic63,1303 -:- dynamic existing_attribute/4.dynamic63,1303 -:- dynamic modules_with_attributes/1.dynamic64,1336 -:- dynamic modules_with_attributes/1.dynamic64,1336 -:- dynamic attributed_module/3.dynamic65,1374 -:- dynamic attributed_module/3.dynamic65,1374 -modules_with_attributes([]).modules_with_attributes67,1407 -modules_with_attributes([]).modules_with_attributes67,1407 -new_attribute(V) :- var(V), !,new_attribute73,1536 -new_attribute(V) :- var(V), !,new_attribute73,1536 -new_attribute(V) :- var(V), !,new_attribute73,1536 -new_attribute((At1,At2)) :-new_attribute75,1616 -new_attribute((At1,At2)) :-new_attribute75,1616 -new_attribute((At1,At2)) :-new_attribute75,1616 -new_attribute(Na/Ar) :-new_attribute78,1686 -new_attribute(Na/Ar) :-new_attribute78,1686 -new_attribute(Na/Ar) :-new_attribute78,1686 -new_attribute(Na/Ar) :-new_attribute82,1786 -new_attribute(Na/Ar) :-new_attribute82,1786 -new_attribute(Na/Ar) :-new_attribute82,1786 -store_new_module(Mod,Ar,ArgPosition) :-store_new_module88,1936 -store_new_module(Mod,Ar,ArgPosition) :-store_new_module88,1936 -store_new_module(Mod,Ar,ArgPosition) :-store_new_module88,1936 -user:goal_expansion(get_atts(Var,AccessSpec), Mod, Goal) :-goal_expansion121,2991 -user:goal_expansion(get_atts(Var,AccessSpec), Mod, Goal) :-goal_expansion121,2991 -user:goal_expansion(put_atts(Var,AccessSpec), Mod, Goal) :-goal_expansion140,3586 -user:goal_expansion(put_atts(Var,AccessSpec), Mod, Goal) :-goal_expansion140,3586 -expand_get_attributes(V,_,_,_) :- var(V), !, fail.expand_get_attributes144,3700 -expand_get_attributes(V,_,_,_) :- var(V), !, fail.expand_get_attributes144,3700 -expand_get_attributes(V,_,_,_) :- var(V), !, fail.expand_get_attributes144,3700 -expand_get_attributes([],_,_,true) :- !.expand_get_attributes145,3751 -expand_get_attributes([],_,_,true) :- !.expand_get_attributes145,3751 -expand_get_attributes([],_,_,true) :- !.expand_get_attributes145,3751 -expand_get_attributes([-G1],Mod,V,attributes:free_att(V,Mod,Pos)) :-expand_get_attributes146,3792 -expand_get_attributes([-G1],Mod,V,attributes:free_att(V,Mod,Pos)) :-expand_get_attributes146,3792 -expand_get_attributes([-G1],Mod,V,attributes:free_att(V,Mod,Pos)) :-expand_get_attributes146,3792 -expand_get_attributes([+G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes148,3899 -expand_get_attributes([+G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes148,3899 -expand_get_attributes([+G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes148,3899 -expand_get_attributes([G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes151,4021 -expand_get_attributes([G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes151,4021 -expand_get_attributes([G1],Mod,V,attributes:get_att(V,Mod,Pos,A)) :-expand_get_attributes151,4021 -expand_get_attributes(Atts,Mod,Var,attributes:get_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_get_attributes154,4142 -expand_get_attributes(Atts,Mod,Var,attributes:get_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_get_attributes154,4142 -expand_get_attributes(Atts,Mod,Var,attributes:get_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_get_attributes154,4142 -expand_get_attributes(Att,Mod,Var,Goal) :-expand_get_attributes161,4435 -expand_get_attributes(Att,Mod,Var,Goal) :-expand_get_attributes161,4435 -expand_get_attributes(Att,Mod,Var,Goal) :-expand_get_attributes161,4435 -build_att_term(NOfAtts,NOfAtts,[],_,_) :- !.build_att_term164,4523 -build_att_term(NOfAtts,NOfAtts,[],_,_) :- !.build_att_term164,4523 -build_att_term(NOfAtts,NOfAtts,[],_,_) :- !.build_att_term164,4523 -build_att_term(I0,NOfAtts,[I-Info|SortedLAtts],Void,AccessTerm) :-build_att_term165,4568 -build_att_term(I0,NOfAtts,[I-Info|SortedLAtts],Void,AccessTerm) :-build_att_term165,4568 -build_att_term(I0,NOfAtts,[I-Info|SortedLAtts],Void,AccessTerm) :-build_att_term165,4568 -build_att_term(I0,NOfAtts,SortedLAtts,Void,AccessTerm) :-build_att_term169,4746 -build_att_term(I0,NOfAtts,SortedLAtts,Void,AccessTerm) :-build_att_term169,4746 -build_att_term(I0,NOfAtts,SortedLAtts,Void,AccessTerm) :-build_att_term169,4746 -cvt_atts(V,_,_,_) :- var(V), !, fail.cvt_atts174,4898 -cvt_atts(V,_,_,_) :- var(V), !, fail.cvt_atts174,4898 -cvt_atts(V,_,_,_) :- var(V), !, fail.cvt_atts174,4898 -cvt_atts([],_,_,[]).cvt_atts175,4936 -cvt_atts([],_,_,[]).cvt_atts175,4936 -cvt_atts([V|_],_,_,_) :- var(V), !, fail.cvt_atts176,4957 -cvt_atts([V|_],_,_,_) :- var(V), !, fail.cvt_atts176,4957 -cvt_atts([V|_],_,_,_) :- var(V), !, fail.cvt_atts176,4957 -cvt_atts([+Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts177,4999 -cvt_atts([+Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts177,4999 -cvt_atts([+Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts177,4999 -cvt_atts([-Att|Atts],Mod,Void,[Pos-LVoids|Read]) :- !,cvt_atts181,5167 -cvt_atts([-Att|Atts],Mod,Void,[Pos-LVoids|Read]) :- !,cvt_atts181,5167 -cvt_atts([-Att|Atts],Mod,Void,[Pos-LVoids|Read]) :- !,cvt_atts181,5167 -cvt_atts([Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts192,5388 -cvt_atts([Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts192,5388 -cvt_atts([Att|Atts],Mod,Void,[Pos-LAtts|Read]) :- !,cvt_atts192,5388 -copy_att_args([],I,I,_).copy_att_args197,5556 -copy_att_args([],I,I,_).copy_att_args197,5556 -copy_att_args([V|Info],I,NI,AccessTerm) :-copy_att_args198,5581 -copy_att_args([V|Info],I,NI,AccessTerm) :-copy_att_args198,5581 -copy_att_args([V|Info],I,NI,AccessTerm) :-copy_att_args198,5581 -void_vars([],_,[]).void_vars203,5699 -void_vars([],_,[]).void_vars203,5699 -void_vars([_|LAtts],Void,[Void|LVoids]) :-void_vars204,5719 -void_vars([_|LAtts],Void,[Void|LVoids]) :-void_vars204,5719 -void_vars([_|LAtts],Void,[Void|LVoids]) :-void_vars204,5719 -expand_put_attributes(V,_,_,_) :- var(V), !, fail.expand_put_attributes207,5794 -expand_put_attributes(V,_,_,_) :- var(V), !, fail.expand_put_attributes207,5794 -expand_put_attributes(V,_,_,_) :- var(V), !, fail.expand_put_attributes207,5794 -expand_put_attributes([-G1],Mod,V,attributes:rm_att(V,Mod,NOfAtts,Pos)) :-expand_put_attributes208,5845 -expand_put_attributes([-G1],Mod,V,attributes:rm_att(V,Mod,NOfAtts,Pos)) :-expand_put_attributes208,5845 -expand_put_attributes([-G1],Mod,V,attributes:rm_att(V,Mod,NOfAtts,Pos)) :-expand_put_attributes208,5845 -expand_put_attributes([+G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes211,5993 -expand_put_attributes([+G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes211,5993 -expand_put_attributes([+G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes211,5993 -expand_put_attributes([G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes215,6158 -expand_put_attributes([G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes215,6158 -expand_put_attributes([G1],Mod,V,attributes:put_att(V,Mod,NOfAtts,Pos,A)) :-expand_put_attributes215,6158 -expand_put_attributes(Atts,Mod,Var,attributes:put_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_put_attributes219,6322 -expand_put_attributes(Atts,Mod,Var,attributes:put_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_put_attributes219,6322 -expand_put_attributes(Atts,Mod,Var,attributes:put_module_atts(Var,AccessTerm)) :- Atts = [_|_], !,expand_put_attributes219,6322 -expand_put_attributes(Att,Mod,Var,Goal) :-expand_put_attributes226,6615 -expand_put_attributes(Att,Mod,Var,Goal) :-expand_put_attributes226,6615 -expand_put_attributes(Att,Mod,Var,Goal) :-expand_put_attributes226,6615 -woken_att_do(AttVar, Binding, NGoals, DoNotBind) :-woken_att_do229,6703 -woken_att_do(AttVar, Binding, NGoals, DoNotBind) :-woken_att_do229,6703 -woken_att_do(AttVar, Binding, NGoals, DoNotBind) :-woken_att_do229,6703 -process_goals([], [], _).process_goals237,7030 -process_goals([], [], _).process_goals237,7030 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals((M:do_not_bind_variable(Gs)).Goals, (M:Gs).NGoals, true) :- !,process_goals238,7056 -process_goals(G.Goals, G.NGoals, Do) :-process_goals240,7167 -process_goals(G.Goals, G.NGoals, Do) :-process_goals240,7167 -process_goals(G.Goals, G.NGoals, Do) :-process_goals240,7167 -find_used([],_,L,L).find_used243,7243 -find_used([],_,L,L).find_used243,7243 -find_used([M|Mods],Mods0,L0,Lf) :-find_used244,7264 -find_used([M|Mods],Mods0,L0,Lf) :-find_used244,7264 -find_used([M|Mods],Mods0,L0,Lf) :-find_used244,7264 -find_used([_|Mods],Mods0,L0,Lf) :-find_used247,7361 -find_used([_|Mods],Mods0,L0,Lf) :-find_used247,7361 -find_used([_|Mods],Mods0,L0,Lf) :-find_used247,7361 -do_verify_attributes([], _, _, []).do_verify_attributes270,8299 -do_verify_attributes([], _, _, []).do_verify_attributes270,8299 -do_verify_attributes([Mod|Mods], AttVar, Binding, [Mod:Goal|Goals]) :-do_verify_attributes271,8335 -do_verify_attributes([Mod|Mods], AttVar, Binding, [Mod:Goal|Goals]) :-do_verify_attributes271,8335 -do_verify_attributes([Mod|Mods], AttVar, Binding, [Mod:Goal|Goals]) :-do_verify_attributes271,8335 -do_verify_attributes([_|Mods], AttVar, Binding, Goals) :-do_verify_attributes275,8577 -do_verify_attributes([_|Mods], AttVar, Binding, Goals) :-do_verify_attributes275,8577 -do_verify_attributes([_|Mods], AttVar, Binding, Goals) :-do_verify_attributes275,8577 - -packages/python/swig/yap4py/prolog/autoloader.yap,3052 -:- dynamic exported/3, loaded/1.dynamic6,91 -:- dynamic exported/3, loaded/1.dynamic6,91 -make_library_index :-make_library_index8,125 -scan_library_exports :-scan_library_exports12,190 -scan_exports(Library, CallName) :-scan_exports48,1624 -scan_exports(Library, CallName) :-scan_exports48,1624 -scan_exports(Library, CallName) :-scan_exports48,1624 -scan_exports(Library) :-scan_exports61,1939 -scan_exports(Library) :-scan_exports61,1939 -scan_exports(Library) :-scan_exports61,1939 -scan_swi_exports :-scan_swi_exports67,2088 -get_exports(O, Exports, Module) :-get_exports82,2484 -get_exports(O, Exports, Module) :-get_exports82,2484 -get_exports(O, Exports, Module) :-get_exports82,2484 -get_exports(O, Exports, Module) :-get_exports84,2561 -get_exports(O, Exports, Module) :-get_exports84,2561 -get_exports(O, Exports, Module) :-get_exports84,2561 -get_reexports(O, Exports, ExportsL) :-get_reexports87,2631 -get_reexports(O, Exports, ExportsL) :-get_reexports87,2631 -get_reexports(O, Exports, ExportsL) :-get_reexports87,2631 -get_reexports(_, Exports, Exports).get_reexports91,2791 -get_reexports(_, Exports, Exports).get_reexports91,2791 -publish_exports([], _, _, _).publish_exports93,2828 -publish_exports([], _, _, _).publish_exports93,2828 -publish_exports([F/A|Exports], W, Path, Module) :-publish_exports94,2858 -publish_exports([F/A|Exports], W, Path, Module) :-publish_exports94,2858 -publish_exports([F/A|Exports], W, Path, Module) :-publish_exports94,2858 -publish_exports([F//A0|Exports], W, Path, Module) :-publish_exports97,2993 -publish_exports([F//A0|Exports], W, Path, Module) :-publish_exports97,2993 -publish_exports([F//A0|Exports], W, Path, Module) :-publish_exports97,2993 -publish_exports([op(_,_,_)|Exports], W, Path, Module) :-publish_exports101,3142 -publish_exports([op(_,_,_)|Exports], W, Path, Module) :-publish_exports101,3142 -publish_exports([op(_,_,_)|Exports], W, Path, Module) :-publish_exports101,3142 -publish_export(F, A, _, _, Module) :-publish_export104,3244 -publish_export(F, A, _, _, Module) :-publish_export104,3244 -publish_export(F, A, _, _, Module) :-publish_export104,3244 -publish_export(F, A, W, Path, Module) :-publish_export107,3406 -publish_export(F, A, W, Path, Module) :-publish_export107,3406 -publish_export(F, A, W, Path, Module) :-publish_export107,3406 -find_predicate(G,ExportingModI) :-find_predicate111,3531 -find_predicate(G,ExportingModI) :-find_predicate111,3531 -find_predicate(G,ExportingModI) :-find_predicate111,3531 -find_predicate(G,ExportingModI) :-find_predicate116,3673 -find_predicate(G,ExportingModI) :-find_predicate116,3673 -find_predicate(G,ExportingModI) :-find_predicate116,3673 -ensure_file_loaded(File) :-ensure_file_loaded122,3820 -ensure_file_loaded(File) :-ensure_file_loaded122,3820 -ensure_file_loaded(File) :-ensure_file_loaded122,3820 -ensure_file_loaded(File) :-ensure_file_loaded124,3866 -ensure_file_loaded(File) :-ensure_file_loaded124,3866 -ensure_file_loaded(File) :-ensure_file_loaded124,3866 - -packages/python/swig/yap4py/prolog/avl.yap,3288 -avl_new([]).avl_new73,1742 -avl_new([]).avl_new73,1742 -avl_insert(Key, Value, T0, TF) :-avl_insert84,1949 -avl_insert(Key, Value, T0, TF) :-avl_insert84,1949 -avl_insert(Key, Value, T0, TF) :-avl_insert84,1949 -insert([], Key, Value, avl([],Key,Value,-,[]), yes).insert87,2016 -insert([], Key, Value, avl([],Key,Value,-,[]), yes).insert87,2016 -insert(avl(L,Root,RVal,Bl,R), E, Value, NewTree, WhatHasChanged) :-insert88,2069 -insert(avl(L,Root,RVal,Bl,R), E, Value, NewTree, WhatHasChanged) :-insert88,2069 -insert(avl(L,Root,RVal,Bl,R), E, Value, NewTree, WhatHasChanged) :-insert88,2069 -insert(avl(L,Root,RVal,Bl,R), E, Val, NewTree, WhatHasChanged) :-insert92,2278 -insert(avl(L,Root,RVal,Bl,R), E, Val, NewTree, WhatHasChanged) :-insert92,2278 -insert(avl(L,Root,RVal,Bl,R), E, Val, NewTree, WhatHasChanged) :-insert92,2278 -adjust(Oldtree, no, _, Oldtree, no).adjust98,2576 -adjust(Oldtree, no, _, Oldtree, no).adjust98,2576 -adjust(avl(L,Root,RVal,Bl,R), yes, Lor, NewTree, WhatHasChanged) :-adjust99,2613 -adjust(avl(L,Root,RVal,Bl,R), yes, Lor, NewTree, WhatHasChanged) :-adjust99,2613 -adjust(avl(L,Root,RVal,Bl,R), yes, Lor, NewTree, WhatHasChanged) :-adjust99,2613 -table(- , left , < , yes , no ).table105,2914 -table(- , left , < , yes , no ).table105,2914 -table(- , right , > , yes , no ).table106,2969 -table(- , right , > , yes , no ).table106,2969 -table(< , left , - , no , yes ).table107,3024 -table(< , left , - , no , yes ).table107,3024 -table(< , right , - , no , no ).table108,3079 -table(< , right , - , no , no ).table108,3079 -table(> , left , - , no , no ).table109,3134 -table(> , left , - , no , no ).table109,3134 -table(> , right , - , no , yes ).table110,3189 -table(> , right , - , no , yes ).table110,3189 -rebalance(avl(Lst, Root, RVal, _Bl, Rst), Bl1, no, avl(Lst, Root, RVal, Bl1,Rst)).rebalance112,3245 -rebalance(avl(Lst, Root, RVal, _Bl, Rst), Bl1, no, avl(Lst, Root, RVal, Bl1,Rst)).rebalance112,3245 -rebalance(OldTree, _, yes, NewTree) :-rebalance113,3328 -rebalance(OldTree, _, yes, NewTree) :-rebalance113,3328 -rebalance(OldTree, _, yes, NewTree) :-rebalance113,3328 -table2(< ,- ,> ).table2127,3918 -table2(< ,- ,> ).table2127,3918 -table2(> ,< ,- ).table2128,3936 -table2(> ,< ,- ).table2128,3936 -table2(- ,- ,- ).table2129,3954 -table2(- ,- ,- ).table2129,3954 -avl_lookup(Key, Value, avl(L,Key0,KVal,_,R)) :-avl_lookup139,4113 -avl_lookup(Key, Value, avl(L,Key0,KVal,_,R)) :-avl_lookup139,4113 -avl_lookup(Key, Value, avl(L,Key0,KVal,_,R)) :-avl_lookup139,4113 -avl_lookup(=, Value, _, _, _, Value).avl_lookup143,4230 -avl_lookup(=, Value, _, _, _, Value).avl_lookup143,4230 -avl_lookup(<, Value, L, _, Key, _) :-avl_lookup144,4268 -avl_lookup(<, Value, L, _, Key, _) :-avl_lookup144,4268 -avl_lookup(<, Value, L, _, Key, _) :-avl_lookup144,4268 -avl_lookup(>, Value, _, R, Key, _) :-avl_lookup146,4334 -avl_lookup(>, Value, _, R, Key, _) :-avl_lookup146,4334 -avl_lookup(>, Value, _, R, Key, _) :-avl_lookup146,4334 - -packages/python/swig/yap4py/prolog/bhash.yap,7886 -array_default_size(2048).array_default_size55,1040 -array_default_size(2048).array_default_size55,1040 -is_b_hash(V) :- var(V), !, fail.is_b_hash61,1129 -is_b_hash(V) :- var(V), !, fail.is_b_hash61,1129 -is_b_hash(V) :- var(V), !, fail.is_b_hash61,1129 -is_b_hash(hash(_,_,_,_,_)).is_b_hash62,1162 -is_b_hash(hash(_,_,_,_,_)).is_b_hash62,1162 -b_hash_new(hash(Keys, Vals, Size, N, _, _)) :-b_hash_new68,1289 -b_hash_new(hash(Keys, Vals, Size, N, _, _)) :-b_hash_new68,1289 -b_hash_new(hash(Keys, Vals, Size, N, _, _)) :-b_hash_new68,1289 -b_hash_new(hash(Keys, Vals, Size, N, _, _), Size) :-b_hash_new78,1528 -b_hash_new(hash(Keys, Vals, Size, N, _, _), Size) :-b_hash_new78,1528 -b_hash_new(hash(Keys, Vals, Size, N, _, _), Size) :-b_hash_new78,1528 -b_hash_new(hash(Keys,Vals, Size, N, HashF, CmpF), Size, HashF, CmpF) :-b_hash_new88,1841 -b_hash_new(hash(Keys,Vals, Size, N, HashF, CmpF), Size, HashF, CmpF) :-b_hash_new88,1841 -b_hash_new(hash(Keys,Vals, Size, N, HashF, CmpF), Size, HashF, CmpF) :-b_hash_new88,1841 -b_hash_size(hash(_, _, Size, _, _, _), Size).b_hash_size98,2081 -b_hash_size(hash(_, _, Size, _, _, _), Size).b_hash_size98,2081 -b_hash_lookup(Key, Val, hash(Keys, Vals, Size, _, F, CmpF)):-b_hash_lookup105,2273 -b_hash_lookup(Key, Val, hash(Keys, Vals, Size, _, F, CmpF)):-b_hash_lookup105,2273 -b_hash_lookup(Key, Val, hash(Keys, Vals, Size, _, F, CmpF)):-b_hash_lookup105,2273 -fetch_key(Keys, Index, Size, Key, CmpF, ActualIndex) :-fetch_key111,2493 -fetch_key(Keys, Index, Size, Key, CmpF, ActualIndex) :-fetch_key111,2493 -fetch_key(Keys, Index, Size, Key, CmpF, ActualIndex) :-fetch_key111,2493 -b_hash_update(Hash, Key, NewVal):-b_hash_update128,2892 -b_hash_update(Hash, Key, NewVal):-b_hash_update128,2892 -b_hash_update(Hash, Key, NewVal):-b_hash_update128,2892 -b_hash_update(Hash, Key, OldVal, NewVal):-b_hash_update140,3331 -b_hash_update(Hash, Key, OldVal, NewVal):-b_hash_update140,3331 -b_hash_update(Hash, Key, OldVal, NewVal):-b_hash_update140,3331 -b_hash_insert(Hash, Key, NewVal, NewHash):-b_hash_insert152,3802 -b_hash_insert(Hash, Key, NewVal, NewHash):-b_hash_insert152,3802 -b_hash_insert(Hash, Key, NewVal, NewHash):-b_hash_insert152,3802 -find_or_insert(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert157,3997 -find_or_insert(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert157,3997 -find_or_insert(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert157,3997 -b_hash_insert_new(Hash, Key, NewVal, NewHash):-b_hash_insert_new180,4669 -b_hash_insert_new(Hash, Key, NewVal, NewHash):-b_hash_insert_new180,4669 -b_hash_insert_new(Hash, Key, NewVal, NewHash):-b_hash_insert_new180,4669 -find_or_insert_new(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert_new185,4872 -find_or_insert_new(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert_new185,4872 -find_or_insert_new(Keys, Index, Size, N, CmpF, Vals, Key, NewVal, Hash, NewHash) :-find_or_insert_new185,4872 -add_element(Keys, Index, Size, N, Vals, Key, NewVal, Hash, NewHash) :-add_element200,5254 -add_element(Keys, Index, Size, N, Vals, Key, NewVal, Hash, NewHash) :-add_element200,5254 -add_element(Keys, Index, Size, N, Vals, Key, NewVal, Hash, NewHash) :-add_element200,5254 -expand_array(Hash, NewHash) :-expand_array216,5602 -expand_array(Hash, NewHash) :-expand_array216,5602 -expand_array(Hash, NewHash) :-expand_array216,5602 -expand_array(Hash, hash(NewKeys, NewVals, NewSize, X, F, CmpF)) :-expand_array228,5952 -expand_array(Hash, hash(NewKeys, NewVals, NewSize, X, F, CmpF)) :-expand_array228,5952 -expand_array(Hash, hash(NewKeys, NewVals, NewSize, X, F, CmpF)) :-expand_array228,5952 -new_size(Size, NewSize) :-new_size235,6208 -new_size(Size, NewSize) :-new_size235,6208 -new_size(Size, NewSize) :-new_size235,6208 -new_size(Size, NewSize) :-new_size238,6281 -new_size(Size, NewSize) :-new_size238,6281 -new_size(Size, NewSize) :-new_size238,6281 -copy_hash_table(0, _, _, _, _, _, _) :- !.copy_hash_table241,6329 -copy_hash_table(0, _, _, _, _, _, _) :- !.copy_hash_table241,6329 -copy_hash_table(0, _, _, _, _, _, _) :- !.copy_hash_table241,6329 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table242,6372 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table242,6372 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table242,6372 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table249,6632 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table249,6632 -copy_hash_table(I1, Keys, Vals, F, Size, NewKeys, NewVals) :-copy_hash_table249,6632 -insert_el(Key, Val, Size, F, NewKeys, NewVals) :-insert_el253,6767 -insert_el(Key, Val, Size, F, NewKeys, NewVals) :-insert_el253,6767 -insert_el(Key, Val, Size, F, NewKeys, NewVals) :-insert_el253,6767 -find_free(Index, Size, Keys, NewIndex) :-find_free259,6973 -find_free(Index, Size, Keys, NewIndex) :-find_free259,6973 -find_free(Index, Size, Keys, NewIndex) :-find_free259,6973 -hash_f(Key, Size, Index, F) :-hash_f270,7170 -hash_f(Key, Size, Index, F) :-hash_f270,7170 -hash_f(Key, Size, Index, F) :-hash_f270,7170 -hash_f(Key, Size, Index, F) :-hash_f273,7244 -hash_f(Key, Size, Index, F) :-hash_f273,7244 -hash_f(Key, Size, Index, F) :-hash_f273,7244 -cmp_f(F, A, B) :-cmp_f276,7304 -cmp_f(F, A, B) :-cmp_f276,7304 -cmp_f(F, A, B) :-cmp_f276,7304 -cmp_f(F, A, B) :-cmp_f279,7343 -cmp_f(F, A, B) :-cmp_f279,7343 -cmp_f(F, A, B) :-cmp_f279,7343 -b_hash_to_list(hash(Keys, Vals, _, _, _, _), LKeyVals) :-b_hash_to_list287,7528 -b_hash_to_list(hash(Keys, Vals, _, _, _, _), LKeyVals) :-b_hash_to_list287,7528 -b_hash_to_list(hash(Keys, Vals, _, _, _, _), LKeyVals) :-b_hash_to_list287,7528 -b_hash_keys_to_list(hash(Keys, _, _, _, _, _), LKeys) :-b_hash_keys_to_list297,7789 -b_hash_keys_to_list(hash(Keys, _, _, _, _, _), LKeys) :-b_hash_keys_to_list297,7789 -b_hash_keys_to_list(hash(Keys, _, _, _, _, _), LKeys) :-b_hash_keys_to_list297,7789 -b_hash_values_to_list(hash(_, Vals, _, _, _, _), LVals) :-b_hash_values_to_list306,8023 -b_hash_values_to_list(hash(_, Vals, _, _, _, _), LVals) :-b_hash_values_to_list306,8023 -b_hash_values_to_list(hash(_, Vals, _, _, _, _), LVals) :-b_hash_values_to_list306,8023 -mklistpairs([], [], []).mklistpairs310,8127 -mklistpairs([], [], []).mklistpairs310,8127 -mklistpairs(V.LKs, _.LVs, KeyVals) :- var(V), !,mklistpairs311,8152 -mklistpairs(V.LKs, _.LVs, KeyVals) :- var(V), !,mklistpairs311,8152 -mklistpairs(V.LKs, _.LVs, KeyVals) :- var(V), !,mklistpairs311,8152 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistpairs(K.LKs, V.LVs, (K-VV).KeyVals) :- mklistpairs313,8234 -mklistels([], []).mklistels317,8342 -mklistels([], []).mklistels317,8342 -mklistels(V.Els, NEls) :- var(V), !,mklistels318,8362 -mklistels(V.Els, NEls) :- var(V), !,mklistels318,8362 -mklistels(V.Els, NEls) :- var(V), !,mklistels318,8362 -mklistels(K.Els, K.NEls) :- mklistels320,8422 -mklistels(K.Els, K.NEls) :- mklistels320,8422 -mklistels(K.Els, K.NEls) :- mklistels320,8422 -mklistvals([], []).mklistvals323,8475 -mklistvals([], []).mklistvals323,8475 -mklistvals(V.Vals, NVals) :- var(V), !,mklistvals324,8496 -mklistvals(V.Vals, NVals) :- var(V), !,mklistvals324,8496 -mklistvals(V.Vals, NVals) :- var(V), !,mklistvals324,8496 -mklistvals(K.Vals, KK.NVals) :- mklistvals326,8562 -mklistvals(K.Vals, KK.NVals) :- mklistvals326,8562 -mklistvals(K.Vals, KK.NVals) :- mklistvals326,8562 - -packages/python/swig/yap4py/prolog/block_diagram.yap,11273 -parameter(texts((+inf))).parameter241,10602 -parameter(texts((+inf))).parameter241,10602 -parameter(depth((+inf))).parameter242,10628 -parameter(depth((+inf))).parameter242,10628 -parameter(default_ext('.yap')).parameter243,10654 -parameter(default_ext('.yap')).parameter243,10654 -make_diagram(InputFile, OutputFile):-make_diagram255,10974 -make_diagram(InputFile, OutputFile):-make_diagram255,10974 -make_diagram(InputFile, OutputFile):-make_diagram255,10974 -make_diagram(InputFile, OutputFile, Texts, Depth, Ext):-make_diagram271,11574 -make_diagram(InputFile, OutputFile, Texts, Depth, Ext):-make_diagram271,11574 -make_diagram(InputFile, OutputFile, Texts, Depth, Ext):-make_diagram271,11574 -path_seperator('\\'):-path_seperator284,11992 -path_seperator('\\'):-path_seperator284,11992 -path_seperator('\\'):-path_seperator284,11992 -path_seperator('/').path_seperator286,12046 -path_seperator('/').path_seperator286,12046 -split_path_file(PathFile, Path, File):-split_path_file288,12068 -split_path_file(PathFile, Path, File):-split_path_file288,12068 -split_path_file(PathFile, Path, File):-split_path_file288,12068 -split_file_ext(FileExt, File, Ext):-split_file_ext295,12290 -split_file_ext(FileExt, File, Ext):-split_file_ext295,12290 -split_file_ext(FileExt, File, Ext):-split_file_ext295,12290 -parse_module_directive(':-'(module(Name)), _):-parse_module_directive304,12503 -parse_module_directive(':-'(module(Name)), _):-parse_module_directive304,12503 -parse_module_directive(':-'(module(Name)), _):-parse_module_directive304,12503 -parse_module_directive(':-'(module(Name, _Exported)), _):-parse_module_directive306,12581 -parse_module_directive(':-'(module(Name, _Exported)), _):-parse_module_directive306,12581 -parse_module_directive(':-'(module(Name, _Exported)), _):-parse_module_directive306,12581 -parse_module_directive(':-'(module(Name, Exported)), Shape):-parse_module_directive308,12670 -parse_module_directive(':-'(module(Name, Exported)), Shape):-parse_module_directive308,12670 -parse_module_directive(':-'(module(Name, Exported)), Shape):-parse_module_directive308,12670 -parse_module_directive(':-'(module(Name)), Shape):-parse_module_directive314,12981 -parse_module_directive(':-'(module(Name)), Shape):-parse_module_directive314,12981 -parse_module_directive(':-'(module(Name)), Shape):-parse_module_directive314,12981 -extract_name_file(PathFile, Name, FinalFile):-extract_name_file320,13210 -extract_name_file(PathFile, Name, FinalFile):-extract_name_file320,13210 -extract_name_file(PathFile, Name, FinalFile):-extract_name_file320,13210 -extract_name_file(File, Name, File):-extract_name_file324,13399 -extract_name_file(File, Name, File):-extract_name_file324,13399 -extract_name_file(File, Name, File):-extract_name_file324,13399 -extract_name_file(Name, Name, File):-extract_name_file326,13473 -extract_name_file(Name, Name, File):-extract_name_file326,13473 -extract_name_file(Name, Name, File):-extract_name_file326,13473 -read_use_module_directive(':-'(ensure_loaded(library(Name))), Name, library(Name), []):- !.read_use_module_directive330,13575 -read_use_module_directive(':-'(ensure_loaded(library(Name))), Name, library(Name), []):- !.read_use_module_directive330,13575 -read_use_module_directive(':-'(ensure_loaded(library(Name))), Name, library(Name), []):- !.read_use_module_directive330,13575 -read_use_module_directive(':-'(ensure_loaded(Path)), Name, FinalFile, []):-read_use_module_directive331,13667 -read_use_module_directive(':-'(ensure_loaded(Path)), Name, FinalFile, []):-read_use_module_directive331,13667 -read_use_module_directive(':-'(ensure_loaded(Path)), Name, FinalFile, []):-read_use_module_directive331,13667 -read_use_module_directive(':-'(use_module(library(Name))), Name, library(Name), []):- !.read_use_module_directive333,13790 -read_use_module_directive(':-'(use_module(library(Name))), Name, library(Name), []):- !.read_use_module_directive333,13790 -read_use_module_directive(':-'(use_module(library(Name))), Name, library(Name), []):- !.read_use_module_directive333,13790 -read_use_module_directive(':-'(use_module(Path)), Name, FinalFile, []):-read_use_module_directive334,13879 -read_use_module_directive(':-'(use_module(Path)), Name, FinalFile, []):-read_use_module_directive334,13879 -read_use_module_directive(':-'(use_module(Path)), Name, FinalFile, []):-read_use_module_directive334,13879 -read_use_module_directive(':-'(use_module(library(Name), Import)), Name, library(Name), Import):- !.read_use_module_directive336,13999 -read_use_module_directive(':-'(use_module(library(Name), Import)), Name, library(Name), Import):- !.read_use_module_directive336,13999 -read_use_module_directive(':-'(use_module(library(Name), Import)), Name, library(Name), Import):- !.read_use_module_directive336,13999 -read_use_module_directive(':-'(use_module(Path, Import)), Name, FinalFile, Import):-read_use_module_directive337,14100 -read_use_module_directive(':-'(use_module(Path, Import)), Name, FinalFile, Import):-read_use_module_directive337,14100 -read_use_module_directive(':-'(use_module(Path, Import)), Name, FinalFile, Import):-read_use_module_directive337,14100 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive339,14232 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive339,14232 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive339,14232 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive342,14383 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive342,14383 -read_use_module_directive(':-'(use_module(Name, Path, Import)), Name, FinalFile, Import):-read_use_module_directive342,14383 -parse_use_module_directive(Module, Directive):-parse_use_module_directive346,14532 -parse_use_module_directive(Module, Directive):-parse_use_module_directive346,14532 -parse_use_module_directive(Module, Directive):-parse_use_module_directive346,14532 -parse_use_module_directive(Module, Name, _File, _Imported):-parse_use_module_directive349,14702 -parse_use_module_directive(Module, Name, _File, _Imported):-parse_use_module_directive349,14702 -parse_use_module_directive(Module, Name, _File, _Imported):-parse_use_module_directive349,14702 -parse_use_module_directive(Module, Name, File, Imported):-parse_use_module_directive351,14801 -parse_use_module_directive(Module, Name, File, Imported):-parse_use_module_directive351,14801 -parse_use_module_directive(Module, Name, File, Imported):-parse_use_module_directive351,14801 -list_to_message(List, Message):-list_to_message359,15141 -list_to_message(List, Message):-list_to_message359,15141 -list_to_message(List, Message):-list_to_message359,15141 -list_to_message([], Message, Message).list_to_message371,15413 -list_to_message([], Message, Message).list_to_message371,15413 -list_to_message([H|T], '', FinalMessage):-list_to_message372,15452 -list_to_message([H|T], '', FinalMessage):-list_to_message372,15452 -list_to_message([H|T], '', FinalMessage):-list_to_message372,15452 -list_to_message([H|T], AccMessage, FinalMessage):-list_to_message375,15567 -list_to_message([H|T], AccMessage, FinalMessage):-list_to_message375,15567 -list_to_message([H|T], AccMessage, FinalMessage):-list_to_message375,15567 -read_module_file(library(Module), Module):-read_module_file380,15748 -read_module_file(library(Module), Module):-read_module_file380,15748 -read_module_file(library(Module), Module):-read_module_file380,15748 -read_module_file(File, Module):-read_module_file382,15858 -read_module_file(File, Module):-read_module_file382,15858 -read_module_file(File, Module):-read_module_file382,15858 -read_module_file(_, _).read_module_file395,16333 -read_module_file(_, _).read_module_file395,16333 -process(_, end_of_file):-!.process406,16486 -process(_, end_of_file):-!.process406,16486 -process(_, end_of_file):-!.process406,16486 -process(_, Term):-process407,16514 -process(_, Term):-process407,16514 -process(_, Term):-process407,16514 -process(Module, Term):-process409,16579 -process(Module, Term):-process409,16579 -process(Module, Term):-process409,16579 -process(Module, Term):-process411,16656 -process(Module, Term):-process411,16656 -process(Module, Term):-process411,16656 -find_explicit_qualification(OwnerModule, ':-'(Module:Goal)):-find_explicit_qualification414,16732 -find_explicit_qualification(OwnerModule, ':-'(Module:Goal)):-find_explicit_qualification414,16732 -find_explicit_qualification(OwnerModule, ':-'(Module:Goal)):-find_explicit_qualification414,16732 -find_explicit_qualification(OwnerModule, ':-'(_Head, Body)):-find_explicit_qualification416,16850 -find_explicit_qualification(OwnerModule, ':-'(_Head, Body)):-find_explicit_qualification416,16850 -find_explicit_qualification(OwnerModule, ':-'(_Head, Body)):-find_explicit_qualification416,16850 -find_explicit_qualification(OwnerModule, (Module:Goal, RestBody)):-find_explicit_qualification418,16962 -find_explicit_qualification(OwnerModule, (Module:Goal, RestBody)):-find_explicit_qualification418,16962 -find_explicit_qualification(OwnerModule, (Module:Goal, RestBody)):-find_explicit_qualification418,16962 -find_explicit_qualification(OwnerModule, (_Goal, RestBody)):-find_explicit_qualification421,17140 -find_explicit_qualification(OwnerModule, (_Goal, RestBody)):-find_explicit_qualification421,17140 -find_explicit_qualification(OwnerModule, (_Goal, RestBody)):-find_explicit_qualification421,17140 -find_explicit_qualification(OwnerModule, Module:Goal):-find_explicit_qualification423,17259 -find_explicit_qualification(OwnerModule, Module:Goal):-find_explicit_qualification423,17259 -find_explicit_qualification(OwnerModule, Module:Goal):-find_explicit_qualification423,17259 -find_explicit_qualification(_OwnerModule, _Goal).find_explicit_qualification425,17371 -find_explicit_qualification(_OwnerModule, _Goal).find_explicit_qualification425,17371 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification427,17422 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification427,17422 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification427,17422 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification433,17688 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification433,17688 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification433,17688 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification438,17898 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification438,17898 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification438,17898 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification444,18163 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification444,18163 -explicit_qualification(InModule, ToModule, Goal):-explicit_qualification444,18163 -write_explicit:-write_explicit449,18369 - -packages/python/swig/yap4py/prolog/c_alarms.yap,5093 -local_init:-local_init243,10623 -get_next_identity(ID):-get_next_identity247,10682 -get_next_identity(ID):-get_next_identity247,10682 -get_next_identity(ID):-get_next_identity247,10682 -set_alarm(Seconds, Execute, ID):-set_alarm252,10773 -set_alarm(Seconds, Execute, ID):-set_alarm252,10773 -set_alarm(Seconds, Execute, ID):-set_alarm252,10773 -set_alarm(Seconds, Execute, ID):-set_alarm265,11270 -set_alarm(Seconds, Execute, ID):-set_alarm265,11270 -set_alarm(Seconds, Execute, ID):-set_alarm265,11270 -set_alarm(Seconds, Execute, ID):-set_alarm274,11815 -set_alarm(Seconds, Execute, ID):-set_alarm274,11815 -set_alarm(Seconds, Execute, ID):-set_alarm274,11815 -subtract(Elapsed, alarm(Seconds, ID, Execute), alarm(NewSeconds, ID, Execute)):-subtract277,11967 -subtract(Elapsed, alarm(Seconds, ID, Execute), alarm(NewSeconds, ID, Execute)):-subtract277,11967 -subtract(Elapsed, alarm(Seconds, ID, Execute), alarm(NewSeconds, ID, Execute)):-subtract277,11967 -unset_alarm(ID):-unset_alarm285,12190 -unset_alarm(ID):-unset_alarm285,12190 -unset_alarm(ID):-unset_alarm285,12190 -unset_alarm(ID):-unset_alarm288,12300 -unset_alarm(ID):-unset_alarm288,12300 -unset_alarm(ID):-unset_alarm288,12300 -unset_alarm(ID):-unset_alarm292,12481 -unset_alarm(ID):-unset_alarm292,12481 -unset_alarm(ID):-unset_alarm292,12481 -delete_alarm(Alarms, ID, NewAlarms):-delete_alarm306,12854 -delete_alarm(Alarms, ID, NewAlarms):-delete_alarm306,12854 -delete_alarm(Alarms, ID, NewAlarms):-delete_alarm306,12854 -alarm_handler:-alarm_handler310,13001 -alarm_handler:-alarm_handler314,13115 -find_zeros([], []).find_zeros327,13578 -find_zeros([], []).find_zeros327,13578 -find_zeros([alarm(0, ID, E)|T], [alarm(0, ID, E)|R]):-find_zeros328,13598 -find_zeros([alarm(0, ID, E)|T], [alarm(0, ID, E)|R]):-find_zeros328,13598 -find_zeros([alarm(0, ID, E)|T], [alarm(0, ID, E)|R]):-find_zeros328,13598 -find_zeros([alarm(S, _, _)|T], R):-find_zeros330,13673 -find_zeros([alarm(S, _, _)|T], R):-find_zeros330,13673 -find_zeros([alarm(S, _, _)|T], R):-find_zeros330,13673 -execute([]).execute334,13739 -execute([]).execute334,13739 -execute([alarm(_, _, Execute)|R]):-execute335,13752 -execute([alarm(_, _, Execute)|R]):-execute335,13752 -execute([alarm(_, _, Execute)|R]):-execute335,13752 -time_out_call_once(Seconds, Goal, Return):-time_out_call_once343,14013 -time_out_call_once(Seconds, Goal, Return):-time_out_call_once343,14013 -time_out_call_once(Seconds, Goal, Return):-time_out_call_once343,14013 -prove_once(Goal, success):-prove_once357,14323 -prove_once(Goal, success):-prove_once357,14323 -prove_once(Goal, success):-prove_once357,14323 -prove_once(_Goal, failure).prove_once359,14368 -prove_once(_Goal, failure).prove_once359,14368 -timer_start(Name):-timer_start361,14397 -timer_start(Name):-timer_start361,14397 -timer_start(Name):-timer_start361,14397 -timer_start(Name):-timer_start364,14513 -timer_start(Name):-timer_start364,14513 -timer_start(Name):-timer_start364,14513 -timer_start(Name):-timer_start367,14650 -timer_start(Name):-timer_start367,14650 -timer_start(Name):-timer_start367,14650 -timer_restart(Name):-timer_restart371,14758 -timer_restart(Name):-timer_restart371,14758 -timer_restart(Name):-timer_restart371,14758 -timer_restart(Name):-timer_restart374,14876 -timer_restart(Name):-timer_restart374,14876 -timer_restart(Name):-timer_restart374,14876 -timer_restart(Name):-timer_restart378,15015 -timer_restart(Name):-timer_restart378,15015 -timer_restart(Name):-timer_restart378,15015 -timer_restart(Name):-timer_restart382,15166 -timer_restart(Name):-timer_restart382,15166 -timer_restart(Name):-timer_restart382,15166 -timer_stop(Name, Elapsed):-timer_stop388,15354 -timer_stop(Name, Elapsed):-timer_stop388,15354 -timer_stop(Name, Elapsed):-timer_stop388,15354 -timer_stop(Name, Elapsed):-timer_stop391,15501 -timer_stop(Name, Elapsed):-timer_stop391,15501 -timer_stop(Name, Elapsed):-timer_stop391,15501 -timer_stop(Name, Elapsed):-timer_stop395,15651 -timer_stop(Name, Elapsed):-timer_stop395,15651 -timer_stop(Name, Elapsed):-timer_stop395,15651 -timer_elapsed(Name, Elapsed):-timer_elapsed398,15724 -timer_elapsed(Name, Elapsed):-timer_elapsed398,15724 -timer_elapsed(Name, Elapsed):-timer_elapsed398,15724 -timer_elapsed(Name, Elapsed):-timer_elapsed401,15877 -timer_elapsed(Name, Elapsed):-timer_elapsed401,15877 -timer_elapsed(Name, Elapsed):-timer_elapsed401,15877 -timer_elapsed(Name, Elapsed):-timer_elapsed405,16021 -timer_elapsed(Name, Elapsed):-timer_elapsed405,16021 -timer_elapsed(Name, Elapsed):-timer_elapsed405,16021 -timer_pause(Name, Elapsed):-timer_pause408,16088 -timer_pause(Name, Elapsed):-timer_pause408,16088 -timer_pause(Name, Elapsed):-timer_pause408,16088 -timer_pause(Name, Elapsed):-timer_pause411,16237 -timer_pause(Name, Elapsed):-timer_pause411,16237 -timer_pause(Name, Elapsed):-timer_pause411,16237 -timer_pause(Name, Elapsed):-timer_pause414,16389 -timer_pause(Name, Elapsed):-timer_pause414,16389 -timer_pause(Name, Elapsed):-timer_pause414,16389 - -packages/python/swig/yap4py/prolog/charsio.yap,3558 -format_to_chars(Format, Args, Codes) :-format_to_chars85,2031 -format_to_chars(Format, Args, Codes) :-format_to_chars85,2031 -format_to_chars(Format, Args, Codes) :-format_to_chars85,2031 -format_to_chars(Format, Args, OUT, L0) :-format_to_chars95,2348 -format_to_chars(Format, Args, OUT, L0) :-format_to_chars95,2348 -format_to_chars(Format, Args, OUT, L0) :-format_to_chars95,2348 -write_to_chars(Term, Codes) :-write_to_chars103,2610 -write_to_chars(Term, Codes) :-write_to_chars103,2610 -write_to_chars(Term, Codes) :-write_to_chars103,2610 -write_to_chars(Term, Out, Tail) :-write_to_chars112,2887 -write_to_chars(Term, Out, Tail) :-write_to_chars112,2887 -write_to_chars(Term, Out, Tail) :-write_to_chars112,2887 -atom_to_chars(Atom, OUT) :-atom_to_chars120,3081 -atom_to_chars(Atom, OUT) :-atom_to_chars120,3081 -atom_to_chars(Atom, OUT) :-atom_to_chars120,3081 -atom_to_chars(Atom, L0, OUT) :-atom_to_chars128,3283 -atom_to_chars(Atom, L0, OUT) :-atom_to_chars128,3283 -atom_to_chars(Atom, L0, OUT) :-atom_to_chars128,3283 -number_to_chars(Number, OUT) :-number_to_chars136,3483 -number_to_chars(Number, OUT) :-number_to_chars136,3483 -number_to_chars(Number, OUT) :-number_to_chars136,3483 -number_to_chars(Number, L0, OUT) :-number_to_chars144,3700 -number_to_chars(Number, L0, OUT) :-number_to_chars144,3700 -number_to_chars(Number, L0, OUT) :-number_to_chars144,3700 -number_to_chars(Number, L0, OUT) :-number_to_chars147,3822 -number_to_chars(Number, L0, OUT) :-number_to_chars147,3822 -number_to_chars(Number, L0, OUT) :-number_to_chars147,3822 -number_to_chars(Number, L0, OUT) :-number_to_chars150,3919 -number_to_chars(Number, L0, OUT) :-number_to_chars150,3919 -number_to_chars(Number, L0, OUT) :-number_to_chars150,3919 -open_chars_stream(Codes, Stream) :-open_chars_stream157,4152 -open_chars_stream(Codes, Stream) :-open_chars_stream157,4152 -open_chars_stream(Codes, Stream) :-open_chars_stream157,4152 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream160,4228 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream160,4228 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream160,4228 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream169,4552 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream169,4552 -open_chars_stream(Codes, Stream, Postfix) :-open_chars_stream169,4552 -with_output_to_chars(Goal, Codes) :-with_output_to_chars179,4937 -with_output_to_chars(Goal, Codes) :-with_output_to_chars179,4937 -with_output_to_chars(Goal, Codes) :-with_output_to_chars179,4937 -with_output_to_chars(Goal, Codes, L0) :-with_output_to_chars189,5302 -with_output_to_chars(Goal, Codes, L0) :-with_output_to_chars189,5302 -with_output_to_chars(Goal, Codes, L0) :-with_output_to_chars189,5302 -with_output_to_chars(Goal, Stream, Codes, Tail) :-with_output_to_chars206,5911 -with_output_to_chars(Goal, Stream, Codes, Tail) :-with_output_to_chars206,5911 -with_output_to_chars(Goal, Stream, Codes, Tail) :-with_output_to_chars206,5911 -with_stream(Stream, Goal) :-with_stream209,6027 -with_stream(Stream, Goal) :-with_stream209,6027 -with_stream(Stream, Goal) :-with_stream209,6027 -read_from_chars("", end_of_file) :- !.read_from_chars224,6515 -read_from_chars("", end_of_file) :- !.read_from_chars224,6515 -read_from_chars("", end_of_file) :- !.read_from_chars224,6515 -read_from_chars(List, Term) :-read_from_chars225,6554 -read_from_chars(List, Term) :-read_from_chars225,6554 -read_from_chars(List, Term) :-read_from_chars225,6554 - -packages/python/swig/yap4py/prolog/clauses.yap,2333 -conj2list( M:Conj, List ) :-conj2list34,721 -conj2list( M:Conj, List ) :-conj2list34,721 -conj2list( M:Conj, List ) :-conj2list34,721 -conj2list( Conj, List ) :-conj2list37,785 -conj2list( Conj, List ) :-conj2list37,785 -conj2list( Conj, List ) :-conj2list37,785 -conj2list_( C ) -->conj2list_41,845 -conj2list_( C ) -->conj2list_41,845 -conj2list_( C ) -->conj2list_41,845 -conj2list_( true ) --> !.conj2list_45,888 -conj2list_( true ) --> !.conj2list_45,888 -conj2list_( true ) --> !.conj2list_45,888 -conj2list_( (C1, C2) ) -->conj2list_46,915 -conj2list_( (C1, C2) ) -->conj2list_46,915 -conj2list_( (C1, C2) ) -->conj2list_46,915 -conj2list_( C ) -->conj2list_50,984 -conj2list_( C ) -->conj2list_50,984 -conj2list_( C ) -->conj2list_50,984 -conj2list_( C, M ) -->conj2list_53,1018 -conj2list_( C, M ) -->conj2list_53,1018 -conj2list_( C, M ) -->conj2list_53,1018 -conj2list_( true , _) --> !.conj2list_57,1067 -conj2list_( true , _) --> !.conj2list_57,1067 -conj2list_( true , _) --> !.conj2list_57,1067 -conj2list_( (C1, C2), M ) -->conj2list_58,1097 -conj2list_( (C1, C2), M ) -->conj2list_58,1097 -conj2list_( (C1, C2), M ) -->conj2list_58,1097 -conj2list_( C, M ) -->conj2list_62,1176 -conj2list_( C, M ) -->conj2list_62,1176 -conj2list_( C, M ) -->conj2list_62,1176 -list2conj([], true).list2conj72,1432 -list2conj([], true).list2conj72,1432 -list2conj([Last], Last).list2conj73,1453 -list2conj([Last], Last).list2conj73,1453 -list2conj([Head,Next|Tail], (Head,Goals)) :-list2conj74,1478 -list2conj([Head,Next|Tail], (Head,Goals)) :-list2conj74,1478 -list2conj([Head,Next|Tail], (Head,Goals)) :-list2conj74,1478 -clauselength( (_Head :- Conj), Length ) :-clauselength82,1739 -clauselength( (_Head :- Conj), Length ) :-clauselength82,1739 -clauselength( (_Head :- Conj), Length ) :-clauselength82,1739 -clauselength( C, I1, I ) :-clauselength86,1818 -clauselength( C, I1, I ) :-clauselength86,1818 -clauselength( C, I1, I ) :-clauselength86,1818 -clauselength( (C1, C2), I2, I ) :- !,clauselength90,1875 -clauselength( (C1, C2), I2, I ) :- !,clauselength90,1875 -clauselength( (C1, C2), I2, I ) :- !,clauselength90,1875 -clauselength( _C, I1, I ) :-clauselength93,1970 -clauselength( _C, I1, I ) :-clauselength93,1970 -clauselength( _C, I1, I ) :-clauselength93,1970 - -packages/python/swig/yap4py/prolog/coinduction.yap,3850 -:- dynamic coinductive/3.dynamic89,2405 -:- dynamic coinductive/3.dynamic89,2405 -coinductive(Spec) :-coinductive94,2489 -coinductive(Spec) :-coinductive94,2489 -coinductive(Spec) :-coinductive94,2489 -coinductive(Module:Spec) :-coinductive98,2580 -coinductive(Module:Spec) :-coinductive98,2580 -coinductive(Module:Spec) :-coinductive98,2580 -coinductive(Spec) :-coinductive100,2681 -coinductive(Spec) :-coinductive100,2681 -coinductive(Spec) :-coinductive100,2681 -coinductive_declaration(Spec, _M, G) :-coinductive_declaration104,2815 -coinductive_declaration(Spec, _M, G) :-coinductive_declaration104,2815 -coinductive_declaration(Spec, _M, G) :-coinductive_declaration104,2815 -coinductive_declaration((A,B), M, G) :- !,coinductive_declaration108,2909 -coinductive_declaration((A,B), M, G) :- !,coinductive_declaration108,2909 -coinductive_declaration((A,B), M, G) :- !,coinductive_declaration108,2909 -coinductive_declaration(M:Spec, _, G) :- !,coinductive_declaration111,3022 -coinductive_declaration(M:Spec, _, G) :- !,coinductive_declaration111,3022 -coinductive_declaration(M:Spec, _, G) :- !,coinductive_declaration111,3022 -coinductive_declaration(Spec, M, _G) :-coinductive_declaration113,3104 -coinductive_declaration(Spec, M, _G) :-coinductive_declaration113,3104 -coinductive_declaration(Spec, M, _G) :-coinductive_declaration113,3104 -valid_pi(Name/Arity, Name, Arity) :-valid_pi135,3542 -valid_pi(Name/Arity, Name, Arity) :-valid_pi135,3542 -valid_pi(Name/Arity, Name, Arity) :-valid_pi135,3542 -match_args(0,_,_) :- !.match_args139,3642 -match_args(0,_,_) :- !.match_args139,3642 -match_args(0,_,_) :- !.match_args139,3642 -match_args(I,S1,S2) :-match_args140,3666 -match_args(I,S1,S2) :-match_args140,3666 -match_args(I,S1,S2) :-match_args140,3666 -co_term_expansion((M:H :- B), _, (M:NH :- B)) :- !,co_term_expansion148,3809 -co_term_expansion((M:H :- B), _, (M:NH :- B)) :- !,co_term_expansion148,3809 -co_term_expansion((M:H :- B), _, (M:NH :- B)) :- !,co_term_expansion148,3809 -co_term_expansion((H :- B), M, (NH :- B)) :- !,co_term_expansion150,3905 -co_term_expansion((H :- B), M, (NH :- B)) :- !,co_term_expansion150,3905 -co_term_expansion((H :- B), M, (NH :- B)) :- !,co_term_expansion150,3905 -co_term_expansion(H, M, NH) :-co_term_expansion152,3980 -co_term_expansion(H, M, NH) :-co_term_expansion152,3980 -co_term_expansion(H, M, NH) :-co_term_expansion152,3980 -user:term_expansion(M:Cl,M:NCl ) :- !,term_expansion155,4039 -user:term_expansion(M:Cl,M:NCl ) :- !,term_expansion155,4039 -user:term_expansion(G, NG) :-term_expansion158,4111 -user:term_expansion(G, NG) :-term_expansion158,4111 -in_stack(_, V, V) :- var(V), !.in_stack165,4279 -in_stack(_, V, V) :- var(V), !.in_stack165,4279 -in_stack(_, V, V) :- var(V), !.in_stack165,4279 -in_stack(G, [G|_], [G|_]) :- !.in_stack166,4311 -in_stack(G, [G|_], [G|_]) :- !.in_stack166,4311 -in_stack(G, [G|_], [G|_]) :- !.in_stack166,4311 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -in_stack(G, [_|T], End) :- in_stack(G, T, End).in_stack167,4343 -writeG_val(G_var) :- writeG_val169,4392 -writeG_val(G_var) :- writeG_val169,4392 -writeG_val(G_var) :- writeG_val169,4392 -stream([H|T]) :- i(H), stream(T).stream181,4686 -stream([H|T]) :- i(H), stream(T).stream181,4686 -stream([H|T]) :- i(H), stream(T).stream181,4686 -stream([H|T]) :- i(H), stream(T).stream181,4686 -stream([H|T]) :- i(H), stream(T).stream181,4686 -i(0).i184,4733 -i(0).i184,4733 -i(s(N)) :- i(N).i185,4739 -i(s(N)) :- i(N).i185,4739 -i(s(N)) :- i(N).i185,4739 -i(s(N)) :- i(N).i185,4739 -i(s(N)) :- i(N).i185,4739 - -packages/python/swig/yap4py/prolog/dbqueues.yap,1566 -nb_enqueue(Name,El) :- var(Name),nb_enqueue33,548 -nb_enqueue(Name,El) :- var(Name),nb_enqueue33,548 -nb_enqueue(Name,El) :- var(Name),nb_enqueue33,548 -nb_enqueue(Name,El) :- \+ atom(Name), !,nb_enqueue35,644 -nb_enqueue(Name,El) :- \+ atom(Name), !,nb_enqueue35,644 -nb_enqueue(Name,El) :- \+ atom(Name), !,nb_enqueue35,644 -nb_enqueue(Name,El) :-nb_enqueue37,743 -nb_enqueue(Name,El) :-nb_enqueue37,743 -nb_enqueue(Name,El) :-nb_enqueue37,743 -nb_enqueue(Name,El) :-nb_enqueue40,838 -nb_enqueue(Name,El) :-nb_enqueue40,838 -nb_enqueue(Name,El) :-nb_enqueue40,838 -nb_dequeue(Name,El) :- var(Name),nb_dequeue46,961 -nb_dequeue(Name,El) :- var(Name),nb_dequeue46,961 -nb_dequeue(Name,El) :- var(Name),nb_dequeue46,961 -nb_dequeue(Name,El) :- \+ atom(Name), !,nb_dequeue48,1057 -nb_dequeue(Name,El) :- \+ atom(Name), !,nb_dequeue48,1057 -nb_dequeue(Name,El) :- \+ atom(Name), !,nb_dequeue48,1057 -nb_dequeue(Name,El) :-nb_dequeue50,1156 -nb_dequeue(Name,El) :-nb_dequeue50,1156 -nb_dequeue(Name,El) :-nb_dequeue50,1156 -nb_clean_queue(Name) :-nb_clean_queue59,1295 -nb_clean_queue(Name) :-nb_clean_queue59,1295 -nb_clean_queue(Name) :-nb_clean_queue59,1295 -nb_clean_queue(_).nb_clean_queue63,1392 -nb_clean_queue(_).nb_clean_queue63,1392 -nb_dequeue_all(Ref) :-nb_dequeue_all65,1412 -nb_dequeue_all(Ref) :-nb_dequeue_all65,1412 -nb_dequeue_all(Ref) :-nb_dequeue_all65,1412 -nb_dequeue_size(Ref, Size) :-nb_dequeue_size68,1501 -nb_dequeue_size(Ref, Size) :-nb_dequeue_size68,1501 -nb_dequeue_size(Ref, Size) :-nb_dequeue_size68,1501 - -packages/python/swig/yap4py/prolog/dbusage.yap,1907 -db_usage :-db_usage32,626 -db_usage:-db_usage92,2523 -db_static :-db_static103,2638 -db_static(Min) :-db_static113,2808 -db_static(Min) :-db_static113,2808 -db_static(Min) :-db_static113,2808 -db_dynamic :-db_dynamic131,3227 -db_dynamic(Min) :-db_dynamic143,3403 -db_dynamic(Min) :-db_dynamic143,3403 -db_dynamic(Min) :-db_dynamic143,3403 -display_preds([]).display_preds156,3819 -display_preds([]).display_preds156,3819 -display_preds([p(Sz,M:P,Cls,CSz,ISz)|_]) :-display_preds157,3838 -display_preds([p(Sz,M:P,Cls,CSz,ISz)|_]) :-display_preds157,3838 -display_preds([p(Sz,M:P,Cls,CSz,ISz)|_]) :-display_preds157,3838 -display_preds([_|All]) :-display_preds165,4109 -display_preds([_|All]) :-display_preds165,4109 -display_preds([_|All]) :-display_preds165,4109 -display_dpreds([]).display_dpreds169,4158 -display_dpreds([]).display_dpreds169,4158 -display_dpreds([p(Sz,M:P,Cls,CSz,ISz,ECls,ECSz,EISz)|_]) :-display_dpreds170,4178 -display_dpreds([p(Sz,M:P,Cls,CSz,ISz,ECls,ECSz,EISz)|_]) :-display_dpreds170,4178 -display_dpreds([p(Sz,M:P,Cls,CSz,ISz,ECls,ECSz,EISz)|_]) :-display_dpreds170,4178 -display_dpreds([_|All]) :-display_dpreds192,4738 -display_dpreds([_|All]) :-display_dpreds192,4738 -display_dpreds([_|All]) :-display_dpreds192,4738 -sumall(LEDAll, TEDCls, TEDCSz, TEDISz) :-sumall196,4789 -sumall(LEDAll, TEDCls, TEDCSz, TEDISz) :-sumall196,4789 -sumall(LEDAll, TEDCls, TEDCSz, TEDISz) :-sumall196,4789 -sumall([], TEDCls, TEDCls, TEDCSz, TEDCSz, TEDISz, TEDISz).sumall199,4882 -sumall([], TEDCls, TEDCls, TEDCSz, TEDCSz, TEDISz, TEDISz).sumall199,4882 -sumall([p(Cls,CSz,ISz)|LEDAll], TEDCls0, TEDCls, TEDCSz0, TEDCSz, TEDISz0, TEDISz) :-sumall200,4942 -sumall([p(Cls,CSz,ISz)|LEDAll], TEDCls0, TEDCls, TEDCSz0, TEDCSz, TEDISz0, TEDISz) :-sumall200,4942 -sumall([p(Cls,CSz,ISz)|LEDAll], TEDCls0, TEDCls, TEDCSz0, TEDCSz, TEDISz0, TEDISz) :-sumall200,4942 - -packages/python/swig/yap4py/prolog/dgraphs.yap,21352 -dgraph_add_edge(Vs0,V1,V2,Vs2) :-dgraph_add_edge104,2175 -dgraph_add_edge(Vs0,V1,V2,Vs2) :-dgraph_add_edge104,2175 -dgraph_add_edge(Vs0,V1,V2,Vs2) :-dgraph_add_edge104,2175 -dgraph_add_edges(V0, Edges, VF) :-dgraph_add_edges117,2453 -dgraph_add_edges(V0, Edges, VF) :-dgraph_add_edges117,2453 -dgraph_add_edges(V0, Edges, VF) :-dgraph_add_edges117,2453 -dgraph_add_edges(G0, Edges, GF) :-dgraph_add_edges124,2695 -dgraph_add_edges(G0, Edges, GF) :-dgraph_add_edges124,2695 -dgraph_add_edges(G0, Edges, GF) :-dgraph_add_edges124,2695 -all_vertices_in_edges([],[]).all_vertices_in_edges130,2890 -all_vertices_in_edges([],[]).all_vertices_in_edges130,2890 -all_vertices_in_edges([V1-V2|Edges],[V1,V2|Vertices]) :-all_vertices_in_edges131,2920 -all_vertices_in_edges([V1-V2|Edges],[V1,V2|Vertices]) :-all_vertices_in_edges131,2920 -all_vertices_in_edges([V1-V2|Edges],[V1,V2|Vertices]) :-all_vertices_in_edges131,2920 -edges2graphl([], [], []).edges2graphl134,3020 -edges2graphl([], [], []).edges2graphl134,3020 -edges2graphl([V|Vertices], [VV-V1|SortedEdges], [V-[V1|Children]|GraphL]) :-edges2graphl135,3046 -edges2graphl([V|Vertices], [VV-V1|SortedEdges], [V-[V1|Children]|GraphL]) :-edges2graphl135,3046 -edges2graphl([V|Vertices], [VV-V1|SortedEdges], [V-[V1|Children]|GraphL]) :-edges2graphl135,3046 -edges2graphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2graphl139,3234 -edges2graphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2graphl139,3234 -edges2graphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2graphl139,3234 -dgraph_add_edges([],[]) --> [].dgraph_add_edges143,3340 -dgraph_add_edges([],[]) --> [].dgraph_add_edges143,3340 -dgraph_add_edges([],[]) --> [].dgraph_add_edges143,3340 -dgraph_add_edges([V|Vs],[V0-V1|Es]) --> { V == V0 }, !,dgraph_add_edges144,3372 -dgraph_add_edges([V|Vs],[V0-V1|Es]) --> { V == V0 }, !,dgraph_add_edges144,3372 -dgraph_add_edges([V|Vs],[V0-V1|Es]) --> { V == V0 }, !,dgraph_add_edges144,3372 -dgraph_add_edges([V|Vs],Es) --> !,dgraph_add_edges148,3539 -dgraph_add_edges([V|Vs],Es) --> !,dgraph_add_edges148,3539 -dgraph_add_edges([V|Vs],Es) --> !,dgraph_add_edges148,3539 -get_extra_children([V-C|Es],VV,[C|Children],REs) :- V == VV, !,get_extra_children152,3630 -get_extra_children([V-C|Es],VV,[C|Children],REs) :- V == VV, !,get_extra_children152,3630 -get_extra_children([V-C|Es],VV,[C|Children],REs) :- V == VV, !,get_extra_children152,3630 -get_extra_children(Es,_,[],Es).get_extra_children154,3735 -get_extra_children(Es,_,[],Es).get_extra_children154,3735 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex156,3768 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex156,3768 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex156,3768 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex158,3860 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex158,3860 -dgraph_update_vertex(V,Children, Vs0, Vs) :-dgraph_update_vertex158,3860 -add_edges(E0,E1,E) :-add_edges161,3937 -add_edges(E0,E1,E) :-add_edges161,3937 -add_edges(E0,E1,E) :-add_edges161,3937 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge164,3981 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge164,3981 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge164,3981 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge166,4058 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge166,4058 -dgraph_new_edge(V1,V2,Vs0,Vs) :-dgraph_new_edge166,4058 -insert_edge(V2, Children0, Children) :-insert_edge169,4120 -insert_edge(V2, Children0, Children) :-insert_edge169,4120 -insert_edge(V2, Children0, Children) :-insert_edge169,4120 -dgraph_add_vertices(G, [], G).dgraph_add_vertices180,4385 -dgraph_add_vertices(G, [], G).dgraph_add_vertices180,4385 -dgraph_add_vertices(G0, [V|Vs], GF) :-dgraph_add_vertices181,4416 -dgraph_add_vertices(G0, [V|Vs], GF) :-dgraph_add_vertices181,4416 -dgraph_add_vertices(G0, [V|Vs], GF) :-dgraph_add_vertices181,4416 -dgraph_add_vertex(Vs0, V, Vs0) :-dgraph_add_vertex193,4689 -dgraph_add_vertex(Vs0, V, Vs0) :-dgraph_add_vertex193,4689 -dgraph_add_vertex(Vs0, V, Vs0) :-dgraph_add_vertex193,4689 -dgraph_add_vertex(Vs0, V, Vs) :-dgraph_add_vertex195,4747 -dgraph_add_vertex(Vs0, V, Vs) :-dgraph_add_vertex195,4747 -dgraph_add_vertex(Vs0, V, Vs) :-dgraph_add_vertex195,4747 -dgraph_edges(Vs,Edges) :-dgraph_edges207,4923 -dgraph_edges(Vs,Edges) :-dgraph_edges207,4923 -dgraph_edges(Vs,Edges) :-dgraph_edges207,4923 -dgraph_vertices(Vs,Vertices) :-dgraph_vertices218,5114 -dgraph_vertices(Vs,Vertices) :-dgraph_vertices218,5114 -dgraph_vertices(Vs,Vertices) :-dgraph_vertices218,5114 -cvt2edges([],[]).cvt2edges221,5170 -cvt2edges([],[]).cvt2edges221,5170 -cvt2edges([V-Children|L0],Edges) :-cvt2edges222,5188 -cvt2edges([V-Children|L0],Edges) :-cvt2edges222,5188 -cvt2edges([V-Children|L0],Edges) :-cvt2edges222,5188 -children2edges([],_,Edges,Edges).children2edges226,5290 -children2edges([],_,Edges,Edges).children2edges226,5290 -children2edges([Child|L0],V,[V-Child|EdgesF],Edges0) :-children2edges227,5324 -children2edges([Child|L0],V,[V-Child|EdgesF],Edges0) :-children2edges227,5324 -children2edges([Child|L0],V,[V-Child|EdgesF],Edges0) :-children2edges227,5324 -dgraph_neighbours(V,Vertices,Children) :-dgraph_neighbours238,5571 -dgraph_neighbours(V,Vertices,Children) :-dgraph_neighbours238,5571 -dgraph_neighbours(V,Vertices,Children) :-dgraph_neighbours238,5571 -dgraph_neighbors(V,Vertices,Children) :-dgraph_neighbors249,5839 -dgraph_neighbors(V,Vertices,Children) :-dgraph_neighbors249,5839 -dgraph_neighbors(V,Vertices,Children) :-dgraph_neighbors249,5839 -add_vertices(Graph, [], Graph).add_vertices252,5914 -add_vertices(Graph, [], Graph).add_vertices252,5914 -add_vertices(Graph, [V|Vertices], NewGraph) :-add_vertices253,5946 -add_vertices(Graph, [V|Vertices], NewGraph) :-add_vertices253,5946 -add_vertices(Graph, [V|Vertices], NewGraph) :-add_vertices253,5946 -dgraph_complement(Vs0,VsF) :-dgraph_complement264,6197 -dgraph_complement(Vs0,VsF) :-dgraph_complement264,6197 -dgraph_complement(Vs0,VsF) :-dgraph_complement264,6197 -complement(Vs,Children,NewChildren) :-complement268,6299 -complement(Vs,Children,NewChildren) :-complement268,6299 -complement(Vs,Children,NewChildren) :-complement268,6299 -dgraph_del_edge(Vs0,V1,V2,Vs1) :-dgraph_del_edge280,6608 -dgraph_del_edge(Vs0,V1,V2,Vs1) :-dgraph_del_edge280,6608 -dgraph_del_edge(Vs0,V1,V2,Vs1) :-dgraph_del_edge280,6608 -dgraph_del_edges(G0, Edges, Gf) :-dgraph_del_edges292,6902 -dgraph_del_edges(G0, Edges, Gf) :-dgraph_del_edges292,6902 -dgraph_del_edges(G0, Edges, Gf) :-dgraph_del_edges292,6902 -continue_del_edges([]) --> [].continue_del_edges296,7006 -continue_del_edges([]) --> [].continue_del_edges296,7006 -continue_del_edges([]) --> [].continue_del_edges296,7006 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges297,7037 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges297,7037 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges297,7037 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex302,7180 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex302,7180 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex302,7180 -del_edges(ToRemove,E0,E) :-del_edges305,7265 -del_edges(ToRemove,E0,E) :-del_edges305,7265 -del_edges(ToRemove,E0,E) :-del_edges305,7265 -dgraph_del_vertex(Vs0, V, Vsf) :-dgraph_del_vertex317,7547 -dgraph_del_vertex(Vs0, V, Vsf) :-dgraph_del_vertex317,7547 -dgraph_del_vertex(Vs0, V, Vsf) :-dgraph_del_vertex317,7547 -delete_edge(Edges0, V, Edges) :-delete_edge321,7642 -delete_edge(Edges0, V, Edges) :-delete_edge321,7642 -delete_edge(Edges0, V, Edges) :-delete_edge321,7642 -dgraph_del_vertices(G0, Vs, GF) :-dgraph_del_vertices333,7969 -dgraph_del_vertices(G0, Vs, GF) :-dgraph_del_vertices333,7969 -dgraph_del_vertices(G0, Vs, GF) :-dgraph_del_vertices333,7969 -delete_all([]) --> [].delete_all340,8205 -delete_all([]) --> [].delete_all340,8205 -delete_all([]) --> [].delete_all340,8205 -delete_all([V|Vs],Vs0,Vsf) :-delete_all341,8228 -delete_all([V|Vs],Vs0,Vsf) :-delete_all341,8228 -delete_all([V|Vs],Vs0,Vsf) :-delete_all341,8228 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges345,8309 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges345,8309 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges345,8309 -dgraph_transpose(Graph, TGraph) :-dgraph_transpose357,8590 -dgraph_transpose(Graph, TGraph) :-dgraph_transpose357,8590 -dgraph_transpose(Graph, TGraph) :-dgraph_transpose357,8590 -transpose([], []) --> [].transpose365,8847 -transpose([], []) --> [].transpose365,8847 -transpose([], []) --> [].transpose365,8847 -transpose([V-Edges|MoreVs], [V|Vs]) -->transpose366,8873 -transpose([V-Edges|MoreVs], [V|Vs]) -->transpose366,8873 -transpose([V-Edges|MoreVs], [V|Vs]) -->transpose366,8873 -transpose_edges([], _V) --> [].transpose_edges370,8966 -transpose_edges([], _V) --> [].transpose_edges370,8966 -transpose_edges([], _V) --> [].transpose_edges370,8966 -transpose_edges(E.Edges, V) -->transpose_edges371,8998 -transpose_edges(E.Edges, V) -->transpose_edges371,8998 -transpose_edges(E.Edges, V) -->transpose_edges371,8998 -dgraph_compose(T1,T2,CT) :-dgraph_compose375,9067 -dgraph_compose(T1,T2,CT) :-dgraph_compose375,9067 -dgraph_compose(T1,T2,CT) :-dgraph_compose375,9067 -compose([],_,[]).compose381,9200 -compose([],_,[]).compose381,9200 -compose([V-Children|Nodes],T2,NewNodes) :-compose382,9218 -compose([V-Children|Nodes],T2,NewNodes) :-compose382,9218 -compose([V-Children|Nodes],T2,NewNodes) :-compose382,9218 -compose2([],_,_,NewNodes,NewNodes).compose2386,9337 -compose2([],_,_,NewNodes,NewNodes).compose2386,9337 -compose2([C|Children],V,T2,NewNodes,NewNodes0) :-compose2387,9373 -compose2([C|Children],V,T2,NewNodes,NewNodes0) :-compose2387,9373 -compose2([C|Children],V,T2,NewNodes,NewNodes0) :-compose2387,9373 -compose3([], _, NewNodes, NewNodes).compose3392,9553 -compose3([], _, NewNodes, NewNodes).compose3392,9553 -compose3([GC|GrandChildren], V, [V-GC|NewNodes], NewNodes0) :-compose3393,9590 -compose3([GC|GrandChildren], V, [V-GC|NewNodes], NewNodes0) :-compose3393,9590 -compose3([GC|GrandChildren], V, [V-GC|NewNodes], NewNodes0) :-compose3393,9590 -dgraph_transitive_closure(G,Closure) :-dgraph_transitive_closure403,9837 -dgraph_transitive_closure(G,Closure) :-dgraph_transitive_closure403,9837 -dgraph_transitive_closure(G,Closure) :-dgraph_transitive_closure403,9837 -continue_closure([], Closure, Closure) :- !.continue_closure407,9938 -continue_closure([], Closure, Closure) :- !.continue_closure407,9938 -continue_closure([], Closure, Closure) :- !.continue_closure407,9938 -continue_closure(Edges, G, Closure) :-continue_closure408,9983 -continue_closure(Edges, G, Closure) :-continue_closure408,9983 -continue_closure(Edges, G, Closure) :-continue_closure408,9983 -transit_graph([],_,[]).transit_graph413,10135 -transit_graph([],_,[]).transit_graph413,10135 -transit_graph([V-V1|Edges],G,NewEdges) :-transit_graph414,10159 -transit_graph([V-V1|Edges],G,NewEdges) :-transit_graph414,10159 -transit_graph([V-V1|Edges],G,NewEdges) :-transit_graph414,10159 -transit_graph2([], _, _, NewEdges, NewEdges).transit_graph2419,10332 -transit_graph2([], _, _, NewEdges, NewEdges).transit_graph2419,10332 -transit_graph2([GC|GrandChildren], V, G, NewEdges, MoreEdges) :-transit_graph2420,10378 -transit_graph2([GC|GrandChildren], V, G, NewEdges, MoreEdges) :-transit_graph2420,10378 -transit_graph2([GC|GrandChildren], V, G, NewEdges, MoreEdges) :-transit_graph2420,10378 -transit_graph2([GC|GrandChildren], V, G, [V-GC|NewEdges], MoreEdges) :-transit_graph2423,10523 -transit_graph2([GC|GrandChildren], V, G, [V-GC|NewEdges], MoreEdges) :-transit_graph2423,10523 -transit_graph2([GC|GrandChildren], V, G, [V-GC|NewEdges], MoreEdges) :-transit_graph2423,10523 -is_edge(V1,V2,G) :-is_edge426,10655 -is_edge(V1,V2,G) :-is_edge426,10655 -is_edge(V1,V2,G) :-is_edge426,10655 -dgraph_symmetric_closure(G,S) :-dgraph_symmetric_closure439,10950 -dgraph_symmetric_closure(G,S) :-dgraph_symmetric_closure439,10950 -dgraph_symmetric_closure(G,S) :-dgraph_symmetric_closure439,10950 -invert_edges([], []).invert_edges444,11086 -invert_edges([], []).invert_edges444,11086 -invert_edges([V1-V2|Edges], [V2-V1|InvertedEdges]) :-invert_edges445,11108 -invert_edges([V1-V2|Edges], [V2-V1|InvertedEdges]) :-invert_edges445,11108 -invert_edges([V1-V2|Edges], [V2-V1|InvertedEdges]) :-invert_edges445,11108 -dgraph_top_sort(G, Q) :-dgraph_top_sort455,11323 -dgraph_top_sort(G, Q) :-dgraph_top_sort455,11323 -dgraph_top_sort(G, Q) :-dgraph_top_sort455,11323 -dgraph_top_sort(G, Q, RQ0) :-dgraph_top_sort465,11546 -dgraph_top_sort(G, Q, RQ0) :-dgraph_top_sort465,11546 -dgraph_top_sort(G, Q, RQ0) :-dgraph_top_sort465,11546 -invert_and_link([], [], [], [], []).invert_and_link479,11887 -invert_and_link([], [], [], [], []).invert_and_link479,11887 -invert_and_link([V-Vs|Edges], [V-NVs|ExtraEdges], UnsortedInvertedEdges, [V|AllVs],[_|Q]) :-invert_and_link480,11924 -invert_and_link([V-Vs|Edges], [V-NVs|ExtraEdges], UnsortedInvertedEdges, [V|AllVs],[_|Q]) :-invert_and_link480,11924 -invert_and_link([V-Vs|Edges], [V-NVs|ExtraEdges], UnsortedInvertedEdges, [V|AllVs],[_|Q]) :-invert_and_link480,11924 -inv_links([],[],_,UnsortedInvertedEdges,UnsortedInvertedEdges).inv_links484,12160 -inv_links([],[],_,UnsortedInvertedEdges,UnsortedInvertedEdges).inv_links484,12160 -inv_links([V2|Vs],[l(V2,A,B,S,E)|VLnks],V1,[V2-e(A,B,S,E)|UnsortedInvertedEdges],UnsortedInvertedEdges0) :-inv_links485,12224 -inv_links([V2|Vs],[l(V2,A,B,S,E)|VLnks],V1,[V2-e(A,B,S,E)|UnsortedInvertedEdges],UnsortedInvertedEdges0) :-inv_links485,12224 -inv_links([V2|Vs],[l(V2,A,B,S,E)|VLnks],V1,[V2-e(A,B,S,E)|UnsortedInvertedEdges],UnsortedInvertedEdges0) :-inv_links485,12224 -dup([], []).dup488,12403 -dup([], []).dup488,12403 -dup([_|AllVs], [_|Q]) :-dup489,12416 -dup([_|AllVs], [_|Q]) :-dup489,12416 -dup([_|AllVs], [_|Q]) :-dup489,12416 -start_queue([], [], RQ, RQ).start_queue492,12458 -start_queue([], [], RQ, RQ).start_queue492,12458 -start_queue([V|AllVs], [VV-e(S,B,S,E)|InvertedEdges], Q, RQ) :- V == VV, !,start_queue493,12487 -start_queue([V|AllVs], [VV-e(S,B,S,E)|InvertedEdges], Q, RQ) :- V == VV, !,start_queue493,12487 -start_queue([V|AllVs], [VV-e(S,B,S,E)|InvertedEdges], Q, RQ) :- V == VV, !,start_queue493,12487 -start_queue([V|AllVs], InvertedEdges, [V|Q], RQ) :-start_queue496,12664 -start_queue([V|AllVs], InvertedEdges, [V|Q], RQ) :-start_queue496,12664 -start_queue([V|AllVs], InvertedEdges, [V|Q], RQ) :-start_queue496,12664 -link_edges([V-e(A,B,S,E)|InvertedEdges], VV, A, S, E, RemEdges) :- V == VV, !,link_edges499,12760 -link_edges([V-e(A,B,S,E)|InvertedEdges], VV, A, S, E, RemEdges) :- V == VV, !,link_edges499,12760 -link_edges([V-e(A,B,S,E)|InvertedEdges], VV, A, S, E, RemEdges) :- V == VV, !,link_edges499,12760 -link_edges(RemEdges, _, A, _, A, RemEdges).link_edges501,12890 -link_edges(RemEdges, _, A, _, A, RemEdges).link_edges501,12890 -continue_queue([], _, RQ0, RQ0).continue_queue503,12935 -continue_queue([], _, RQ0, RQ0).continue_queue503,12935 -continue_queue([V|Q], LinkedG, RQ, RQ0) :-continue_queue504,12968 -continue_queue([V|Q], LinkedG, RQ, RQ0) :-continue_queue504,12968 -continue_queue([V|Q], LinkedG, RQ, RQ0) :-continue_queue504,12968 -close_links([], RQ, RQ).close_links510,13165 -close_links([], RQ, RQ).close_links510,13165 -close_links([l(V,A,A,S,E)|Links], RQ, RQ0) :-close_links511,13190 -close_links([l(V,A,A,S,E)|Links], RQ, RQ0) :-close_links511,13190 -close_links([l(V,A,A,S,E)|Links], RQ, RQ0) :-close_links511,13190 -ugraph_to_dgraph(UG, DG) :-ugraph_to_dgraph523,13502 -ugraph_to_dgraph(UG, DG) :-ugraph_to_dgraph523,13502 -ugraph_to_dgraph(UG, DG) :-ugraph_to_dgraph523,13502 -dgraph_to_ugraph(DG, UG) :-dgraph_to_ugraph535,13810 -dgraph_to_ugraph(DG, UG) :-dgraph_to_ugraph535,13810 -dgraph_to_ugraph(DG, UG) :-dgraph_to_ugraph535,13810 -dgraph_edge(N1, N2, G) :-dgraph_edge545,13972 -dgraph_edge(N1, N2, G) :-dgraph_edge545,13972 -dgraph_edge(N1, N2, G) :-dgraph_edge545,13972 -dgraph_min_path(V1, V2, Graph, Path, Cost) :-dgraph_min_path558,14259 -dgraph_min_path(V1, V2, Graph, Path, Cost) :-dgraph_min_path558,14259 -dgraph_min_path(V1, V2, Graph, Path, Cost) :-dgraph_min_path558,14259 -dgraph_max_path(V1, V2, Graph, Path, Cost) :-dgraph_max_path571,14601 -dgraph_max_path(V1, V2, Graph, Path, Cost) :-dgraph_max_path571,14601 -dgraph_max_path(V1, V2, Graph, Path, Cost) :-dgraph_max_path571,14601 -dgraph_min_paths(V1, Graph, Paths) :-dgraph_min_paths583,14896 -dgraph_min_paths(V1, Graph, Paths) :-dgraph_min_paths583,14896 -dgraph_min_paths(V1, Graph, Paths) :-dgraph_min_paths583,14896 -dgraph_path(V1, V2, Graph, Path) :-dgraph_path594,15189 -dgraph_path(V1, V2, Graph, Path) :-dgraph_path594,15189 -dgraph_path(V1, V2, Graph, Path) :-dgraph_path594,15189 -dgraph_path_children([V1|_], V2, _E1, _Graph, []) :- V1 == V2.dgraph_path_children599,15326 -dgraph_path_children([V1|_], V2, _E1, _Graph, []) :- V1 == V2.dgraph_path_children599,15326 -dgraph_path_children([V1|_], V2, _E1, _Graph, []) :- V1 == V2.dgraph_path_children599,15326 -dgraph_path_children([V1|_], V2, E1, Graph, [V1|Path]) :-dgraph_path_children600,15389 -dgraph_path_children([V1|_], V2, E1, Graph, [V1|Path]) :-dgraph_path_children600,15389 -dgraph_path_children([V1|_], V2, E1, Graph, [V1|Path]) :-dgraph_path_children600,15389 -dgraph_path_children([_|Children], V2, E1, Graph, Path) :-dgraph_path_children606,15600 -dgraph_path_children([_|Children], V2, E1, Graph, Path) :-dgraph_path_children606,15600 -dgraph_path_children([_|Children], V2, E1, Graph, Path) :-dgraph_path_children606,15600 -do_path([], _, _, []).do_path610,15715 -do_path([], _, _, []).do_path610,15715 -do_path([C|Children], G, SoFar, Path) :-do_path611,15738 -do_path([C|Children], G, SoFar, Path) :-do_path611,15738 -do_path([C|Children], G, SoFar, Path) :-do_path611,15738 -do_children([V|_], G, SoFar, [V|Path]) :-do_children614,15824 -do_children([V|_], G, SoFar, [V|Path]) :-do_children614,15824 -do_children([V|_], G, SoFar, [V|Path]) :-do_children614,15824 -do_children([_|Children], G, SoFar, Path) :-do_children619,15998 -do_children([_|Children], G, SoFar, Path) :-do_children619,15998 -do_children([_|Children], G, SoFar, Path) :-do_children619,15998 -dgraph_path(V, G, [V|P]) :-dgraph_path630,16223 -dgraph_path(V, G, [V|P]) :-dgraph_path630,16223 -dgraph_path(V, G, [V|P]) :-dgraph_path630,16223 -dgraph_isomorphic(Vs, Vs2, G1, G2) :-dgraph_isomorphic644,16523 -dgraph_isomorphic(Vs, Vs2, G1, G2) :-dgraph_isomorphic644,16523 -dgraph_isomorphic(Vs, Vs2, G1, G2) :-dgraph_isomorphic644,16523 -mapping([],[],Map,Map).mapping653,16752 -mapping([],[],Map,Map).mapping653,16752 -mapping([V1|Vs],[V2|Vs2],Map0,Map) :-mapping654,16776 -mapping([V1|Vs],[V2|Vs2],Map0,Map) :-mapping654,16776 -mapping([V1|Vs],[V2|Vs2],Map0,Map) :-mapping654,16776 -translate_edges([],_,[]).translate_edges660,16874 -translate_edges([],_,[]).translate_edges660,16874 -translate_edges([V1-V2|Edges],Map,[NV1-NV2|TEdges]) :-translate_edges661,16900 -translate_edges([V1-V2|Edges],Map,[NV1-NV2|TEdges]) :-translate_edges661,16900 -translate_edges([V1-V2|Edges],Map,[NV1-NV2|TEdges]) :-translate_edges661,16900 -dgraph_reachable(V, G, Edges) :-dgraph_reachable674,17185 -dgraph_reachable(V, G, Edges) :-dgraph_reachable674,17185 -dgraph_reachable(V, G, Edges) :-dgraph_reachable674,17185 -reachable([], Done, Done, _, Edges, Edges).reachable679,17328 -reachable([], Done, Done, _, Edges, Edges).reachable679,17328 -reachable([V|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable680,17372 -reachable([V|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable680,17372 -reachable([V|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable680,17372 -reachable([V|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable683,17514 -reachable([V|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable683,17514 -reachable([V|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable683,17514 -dgraph_leaves(Graph, Vertices) :-dgraph_leaves697,17866 -dgraph_leaves(Graph, Vertices) :-dgraph_leaves697,17866 -dgraph_leaves(Graph, Vertices) :-dgraph_leaves697,17866 -vertices_without_children([], []).vertices_without_children701,17971 -vertices_without_children([], []).vertices_without_children701,17971 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children((V-[]).Pairs, V.Vertices) :-vertices_without_children702,18006 -vertices_without_children(_V-[_|_].Pairs, Vertices) :-vertices_without_children704,18106 -vertices_without_children(_V-[_|_].Pairs, Vertices) :-vertices_without_children704,18106 -vertices_without_children(_V-[_|_].Pairs, Vertices) :-vertices_without_children704,18106 - -packages/python/swig/yap4py/prolog/exo_interval.yap,2250 -max(X, G) :-max106,2333 -max(X, G) :-max106,2333 -max(X, G) :-max106,2333 -min(X, G) :-min110,2386 -min(X, G) :-min110,2386 -min(X, G) :-min110,2386 -max(X) :-max114,2439 -max(X) :-max114,2439 -max(X) :-max114,2439 -maximum(X) :-maximum117,2479 -maximum(X) :-maximum117,2479 -maximum(X) :-maximum117,2479 -any(X) :-any120,2527 -any(X) :-any120,2527 -any(X) :-any120,2527 -min(X) :-min123,2567 -min(X) :-min123,2567 -min(X) :-min123,2567 -minimum(X) :-minimum126,2607 -minimum(X) :-minimum126,2607 -minimum(X) :-minimum126,2607 -least(X) :-least129,2655 -least(X) :-least129,2655 -least(X) :-least129,2655 -attribute_goals(X) -->attribute_goals168,3239 -attribute_goals(X) -->attribute_goals168,3239 -attribute_goals(X) -->attribute_goals168,3239 -range_min(Y, _X) -->range_min180,3553 -range_min(Y, _X) -->range_min180,3553 -range_min(Y, _X) -->range_min180,3553 -range_min(Y, X) -->range_min183,3595 -range_min(Y, X) -->range_min183,3595 -range_min(Y, X) -->range_min183,3595 -range_max(Y, _X) -->range_max186,3627 -range_max(Y, _X) -->range_max186,3627 -range_max(Y, _X) -->range_max186,3627 -range_max(Y, X) -->range_max189,3669 -range_max(Y, X) -->range_max189,3669 -range_max(Y, X) -->range_max189,3669 -range_op(Y, _X) -->range_op192,3701 -range_op(Y, _X) -->range_op192,3701 -range_op(Y, _X) -->range_op192,3701 -range_op(Y, X) -->range_op195,3742 -range_op(Y, X) -->range_op195,3742 -range_op(Y, X) -->range_op195,3742 -insert_atts(V, Att) :-insert_atts199,3789 -insert_atts(V, Att) :-insert_atts199,3789 -insert_atts(V, Att) :-insert_atts199,3789 -expand_atts(i(A1, B1, C1), i(A2, B2, C2), i(A3,B3,C3)) :-expand_atts210,4029 -expand_atts(i(A1, B1, C1), i(A2, B2, C2), i(A3,B3,C3)) :-expand_atts210,4029 -expand_atts(i(A1, B1, C1), i(A2, B2, C2), i(A3,B3,C3)) :-expand_atts210,4029 -expand_min(A1, A2, A3) :-expand_min215,4162 -expand_min(A1, A2, A3) :-expand_min215,4162 -expand_min(A1, A2, A3) :-expand_min215,4162 -expand_max(A1, A2, A3) :-expand_max222,4309 -expand_max(A1, A2, A3) :-expand_max222,4309 -expand_max(A1, A2, A3) :-expand_max222,4309 -expand_op(A1, A2, A3) :-expand_op229,4456 -expand_op(A1, A2, A3) :-expand_op229,4456 -expand_op(A1, A2, A3) :-expand_op229,4456 - -packages/python/swig/yap4py/prolog/expand_macros.yap,10705 -:- multifile allowed_module/2.multifile32,766 -:- multifile allowed_module/2.multifile32,766 -:- dynamic number_of_expansions/1.dynamic34,798 -:- dynamic number_of_expansions/1.dynamic34,798 -number_of_expansions(0).number_of_expansions36,834 -number_of_expansions(0).number_of_expansions36,834 -compile_aux([Clause|Clauses], Module) :-compile_aux44,917 -compile_aux([Clause|Clauses], Module) :-compile_aux44,917 -compile_aux([Clause|Clauses], Module) :-compile_aux44,917 -compile_term([], _).compile_term62,1330 -compile_term([], _).compile_term62,1330 -compile_term([Clause|Clauses], Module) :-compile_term63,1351 -compile_term([Clause|Clauses], Module) :-compile_term63,1351 -compile_term([Clause|Clauses], Module) :-compile_term63,1351 -append_args(Term, Args, NewTerm) :-append_args67,1457 -append_args(Term, Args, NewTerm) :-append_args67,1457 -append_args(Term, Args, NewTerm) :-append_args67,1457 -aux_preds(Module:Meta, MetaVars, Pred, PredVars, Proto, _, OModule) :- !,aux_preds72,1584 -aux_preds(Module:Meta, MetaVars, Pred, PredVars, Proto, _, OModule) :- !,aux_preds72,1584 -aux_preds(Module:Meta, MetaVars, Pred, PredVars, Proto, _, OModule) :- !,aux_preds72,1584 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto, Module, Module) :-aux_preds74,1726 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto, Module, Module) :-aux_preds74,1726 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto, Module, Module) :-aux_preds74,1726 -aux_args([], [], [], [], []).aux_args80,1923 -aux_args([], [], [], [], []).aux_args80,1923 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args81,1953 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args81,1953 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args81,1953 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args84,2087 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args84,2087 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args84,2087 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2219 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2219 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2219 -transformation_id(Id) :-transformation_id91,2365 -transformation_id(Id) :-transformation_id91,2365 -transformation_id(Id) :-transformation_id91,2365 -harmless_dcgexception(instantiation_error). % ex: phrase(([1],x:X,[3]),L)harmless_dcgexception97,2479 -harmless_dcgexception(instantiation_error). % ex: phrase(([1],x:X,[3]),L)harmless_dcgexception97,2479 -harmless_dcgexception(type_error(callable,_)). % ex: phrase(27,L)harmless_dcgexception98,2553 -harmless_dcgexception(type_error(callable,_)). % ex: phrase(27,L)harmless_dcgexception98,2553 -allowed_expansion(QExpand) :-allowed_expansion101,2621 -allowed_expansion(QExpand) :-allowed_expansion101,2621 -allowed_expansion(QExpand) :-allowed_expansion101,2621 -goal_expansion_allowed(Pred, Mod) :-goal_expansion_allowed105,2729 -goal_expansion_allowed(Pred, Mod) :-goal_expansion_allowed105,2729 -goal_expansion_allowed(Pred, Mod) :-goal_expansion_allowed105,2729 -allowed_module(checklist(_,_),expand_macros).allowed_module112,2867 -allowed_module(checklist(_,_),expand_macros).allowed_module112,2867 -allowed_module(checklist(_,_),apply_macros).allowed_module113,2913 -allowed_module(checklist(_,_),apply_macros).allowed_module113,2913 -allowed_module(checklist(_,_),maplist).allowed_module114,2958 -allowed_module(checklist(_,_),maplist).allowed_module114,2958 -allowed_module(maplist(_,_),expand_macros).allowed_module115,2998 -allowed_module(maplist(_,_),expand_macros).allowed_module115,2998 -allowed_module(maplist(_,_),apply_macros).allowed_module116,3042 -allowed_module(maplist(_,_),apply_macros).allowed_module116,3042 -allowed_module(maplist(_,_),maplist).allowed_module117,3085 -allowed_module(maplist(_,_),maplist).allowed_module117,3085 -allowed_module(maplist(_,_,_),expand_macros).allowed_module118,3123 -allowed_module(maplist(_,_,_),expand_macros).allowed_module118,3123 -allowed_module(maplist(_,_,_),apply_macros).allowed_module119,3169 -allowed_module(maplist(_,_,_),apply_macros).allowed_module119,3169 -allowed_module(maplist(_,_,_),maplist).allowed_module120,3214 -allowed_module(maplist(_,_,_),maplist).allowed_module120,3214 -allowed_module(maplist(_,_,_,_),expand_macros).allowed_module121,3254 -allowed_module(maplist(_,_,_,_),expand_macros).allowed_module121,3254 -allowed_module(maplist(_,_,_,_),apply_macros).allowed_module122,3302 -allowed_module(maplist(_,_,_,_),apply_macros).allowed_module122,3302 -allowed_module(maplist(_,_,_,_),maplist).allowed_module123,3349 -allowed_module(maplist(_,_,_,_),maplist).allowed_module123,3349 -allowed_module(maplist(_,_,_,_,_),expand_macros).allowed_module124,3391 -allowed_module(maplist(_,_,_,_,_),expand_macros).allowed_module124,3391 -allowed_module(maplist(_,_,_,_,_),apply_macros).allowed_module125,3441 -allowed_module(maplist(_,_,_,_,_),apply_macros).allowed_module125,3441 -allowed_module(maplist(_,_,_,_,_),maplist).allowed_module126,3490 -allowed_module(maplist(_,_,_,_,_),maplist).allowed_module126,3490 -allowed_module(maplist(_,_,_,_,_,_),expand_macros).allowed_module127,3534 -allowed_module(maplist(_,_,_,_,_,_),expand_macros).allowed_module127,3534 -allowed_module(maplist(_,_,_,_,_,_),apply_macros).allowed_module128,3586 -allowed_module(maplist(_,_,_,_,_,_),apply_macros).allowed_module128,3586 -allowed_module(maplist(_,_,_,_,_,_),maplist).allowed_module129,3637 -allowed_module(maplist(_,_,_,_,_,_),maplist).allowed_module129,3637 -allowed_module(selectlist(_,_,_),expand_macros).allowed_module130,3683 -allowed_module(selectlist(_,_,_),expand_macros).allowed_module130,3683 -allowed_module(selectlist(_,_,_),apply_macros).allowed_module131,3732 -allowed_module(selectlist(_,_,_),apply_macros).allowed_module131,3732 -allowed_module(selectlist(_,_,_),maplist).allowed_module132,3780 -allowed_module(selectlist(_,_,_),maplist).allowed_module132,3780 -allowed_module(include(_,_,_),expand_macros).allowed_module133,3823 -allowed_module(include(_,_,_),expand_macros).allowed_module133,3823 -allowed_module(include(_,_,_),apply_macros).allowed_module134,3869 -allowed_module(include(_,_,_),apply_macros).allowed_module134,3869 -allowed_module(include(_,_,_),maplist).allowed_module135,3914 -allowed_module(include(_,_,_),maplist).allowed_module135,3914 -allowed_module(exclude(_,_,_),expand_macros).allowed_module136,3954 -allowed_module(exclude(_,_,_),expand_macros).allowed_module136,3954 -allowed_module(exclude(_,_,_),apply_macros).allowed_module137,4000 -allowed_module(exclude(_,_,_),apply_macros).allowed_module137,4000 -allowed_module(exclude(_,_,_),maplist).allowed_module138,4045 -allowed_module(exclude(_,_,_),maplist).allowed_module138,4045 -allowed_module(partition(_,_,_,_),expand_macros).allowed_module139,4085 -allowed_module(partition(_,_,_,_),expand_macros).allowed_module139,4085 -allowed_module(partition(_,_,_,_),apply_macros).allowed_module140,4135 -allowed_module(partition(_,_,_,_),apply_macros).allowed_module140,4135 -allowed_module(partition(_,_,_,_),maplist).allowed_module141,4184 -allowed_module(partition(_,_,_,_),maplist).allowed_module141,4184 -allowed_module(partition(_,_,_,_,_),expand_macros).allowed_module142,4228 -allowed_module(partition(_,_,_,_,_),expand_macros).allowed_module142,4228 -allowed_module(partition(_,_,_,_,_),apply_macros).allowed_module143,4280 -allowed_module(partition(_,_,_,_,_),apply_macros).allowed_module143,4280 -allowed_module(partition(_,_,_,_,_),maplist).allowed_module144,4331 -allowed_module(partition(_,_,_,_,_),maplist).allowed_module144,4331 -allowed_module(convlist(_,_,_),expand_macros).allowed_module145,4377 -allowed_module(convlist(_,_,_),expand_macros).allowed_module145,4377 -allowed_module(convlist(_,_,_),apply_macros).allowed_module146,4424 -allowed_module(convlist(_,_,_),apply_macros).allowed_module146,4424 -allowed_module(convlist(_,_,_),maplist).allowed_module147,4470 -allowed_module(convlist(_,_,_),maplist).allowed_module147,4470 -allowed_module(sumlist(_,_,_,_),expand_macros).allowed_module148,4511 -allowed_module(sumlist(_,_,_,_),expand_macros).allowed_module148,4511 -allowed_module(sumlist(_,_,_,_),apply_macros).allowed_module149,4559 -allowed_module(sumlist(_,_,_,_),apply_macros).allowed_module149,4559 -allowed_module(sumlist(_,_,_,_),maplist).allowed_module150,4606 -allowed_module(sumlist(_,_,_,_),maplist).allowed_module150,4606 -allowed_module(mapargs(_,_,_),expand_macros).allowed_module151,4648 -allowed_module(mapargs(_,_,_),expand_macros).allowed_module151,4648 -allowed_module(mapargs(_,_,_),apply_macros).allowed_module152,4694 -allowed_module(mapargs(_,_,_),apply_macros).allowed_module152,4694 -allowed_module(mapargs(_,_,_),maplist).allowed_module153,4739 -allowed_module(mapargs(_,_,_),maplist).allowed_module153,4739 -allowed_module(sumargs(_,_,_,_),expand_macros).allowed_module154,4779 -allowed_module(sumargs(_,_,_,_),expand_macros).allowed_module154,4779 -allowed_module(sumargs(_,_,_,_),apply_macros).allowed_module155,4827 -allowed_module(sumargs(_,_,_,_),apply_macros).allowed_module155,4827 -allowed_module(sumargs(_,_,_,_),maplist).allowed_module156,4874 -allowed_module(sumargs(_,_,_,_),maplist).allowed_module156,4874 -allowed_module(mapnodes(_,_,_),expand_macros).allowed_module157,4916 -allowed_module(mapnodes(_,_,_),expand_macros).allowed_module157,4916 -allowed_module(mapnodes(_,_,_),apply_macros).allowed_module158,4963 -allowed_module(mapnodes(_,_,_),apply_macros).allowed_module158,4963 -allowed_module(mapnodes(_,_,_),maplist).allowed_module159,5009 -allowed_module(mapnodes(_,_,_),maplist).allowed_module159,5009 -allowed_module(checknodes(_,_),expand_macros).allowed_module160,5050 -allowed_module(checknodes(_,_),expand_macros).allowed_module160,5050 -allowed_module(checknodes(_,_),apply_macros).allowed_module161,5097 -allowed_module(checknodes(_,_),apply_macros).allowed_module161,5097 -allowed_module(checknodes(_,_),maplist).allowed_module162,5143 -allowed_module(checknodes(_,_),maplist).allowed_module162,5143 -allowed_module(sumnodes(_,_,_,_),expand_macros).allowed_module163,5184 -allowed_module(sumnodes(_,_,_,_),expand_macros).allowed_module163,5184 -allowed_module(sumnodes(_,_,_,_),apply_macros).allowed_module164,5233 -allowed_module(sumnodes(_,_,_,_),apply_macros).allowed_module164,5233 -allowed_module(sumnodes(_,_,_,_),maplist).allowed_module165,5281 -allowed_module(sumnodes(_,_,_,_),maplist).allowed_module165,5281 - -packages/python/swig/yap4py/prolog/flags.yap,14178 -flag_define(FlagName, InputOptions):-flag_define253,10831 -flag_define(FlagName, InputOptions):-flag_define253,10831 -flag_define(FlagName, InputOptions):-flag_define253,10831 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description):-flag_define265,11459 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description):-flag_define265,11459 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description):-flag_define265,11459 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, MHandler):-flag_define268,11623 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, MHandler):-flag_define268,11623 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, MHandler):-flag_define268,11623 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-flag_define299,13971 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-flag_define299,13971 -flag_define(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-flag_define299,13971 -flag_groups(FlagGroups):-flag_groups302,14266 -flag_groups(FlagGroups):-flag_groups302,14266 -flag_groups(FlagGroups):-flag_groups302,14266 -flag_group_chk(FlagGroup):-flag_group_chk305,14471 -flag_group_chk(FlagGroup):-flag_group_chk305,14471 -flag_group_chk(FlagGroup):-flag_group_chk305,14471 -flag_type(Type):-flag_type309,14625 -flag_type(Type):-flag_type309,14625 -flag_type(Type):-flag_type309,14625 -flags_type_definition(nonvar, nonvar, true).flags_type_definition313,14744 -flags_type_definition(nonvar, nonvar, true).flags_type_definition313,14744 -flags_type_definition(atom, atom, true).flags_type_definition314,14789 -flags_type_definition(atom, atom, true).flags_type_definition314,14789 -flags_type_definition(atomic, atomic, true).flags_type_definition315,14830 -flags_type_definition(atomic, atomic, true).flags_type_definition315,14830 -flags_type_definition(integer, integer, true).flags_type_definition316,14875 -flags_type_definition(integer, integer, true).flags_type_definition316,14875 -flags_type_definition(float, float, true).flags_type_definition317,14922 -flags_type_definition(float, float, true).flags_type_definition317,14922 -flags_type_definition(number, number, true).flags_type_definition318,14965 -flags_type_definition(number, number, true).flags_type_definition318,14965 -flags_type_definition(ground, ground, true).flags_type_definition319,15010 -flags_type_definition(ground, ground, true).flags_type_definition319,15010 -flags_type_definition(compound, compound, true).flags_type_definition320,15055 -flags_type_definition(compound, compound, true).flags_type_definition320,15055 -flags_type_definition(is_list, is_list, true).flags_type_definition321,15104 -flags_type_definition(is_list, is_list, true).flags_type_definition321,15104 -flags_type_definition(callable, callable, true).flags_type_definition322,15151 -flags_type_definition(callable, callable, true).flags_type_definition322,15151 -flags_type_definition(in_interval(Type, Interval), in_interval(Type, Interval), in_interval(Type, Interval)).flags_type_definition323,15200 -flags_type_definition(in_interval(Type, Interval), in_interval(Type, Interval), in_interval(Type, Interval)).flags_type_definition323,15200 -flags_type_definition(integer_in_interval(Interval), in_interval(integer, Interval), in_interval(integer, Interval)).flags_type_definition324,15310 -flags_type_definition(integer_in_interval(Interval), in_interval(integer, Interval), in_interval(integer, Interval)).flags_type_definition324,15310 -flags_type_definition(positive_integer, in_interval(integer, (0, (+inf))), true).flags_type_definition325,15428 -flags_type_definition(positive_integer, in_interval(integer, (0, (+inf))), true).flags_type_definition325,15428 -flags_type_definition(non_negative_integer, in_interval(integer, ([0], (+inf))), true).flags_type_definition326,15510 -flags_type_definition(non_negative_integer, in_interval(integer, ([0], (+inf))), true).flags_type_definition326,15510 -flags_type_definition(negative_integer, in_interval(integer, ((-inf), 0)), true).flags_type_definition327,15598 -flags_type_definition(negative_integer, in_interval(integer, ((-inf), 0)), true).flags_type_definition327,15598 -flags_type_definition(float_in_interval(Interval), in_interval(float, Interval), in_interval(float, Interval)).flags_type_definition328,15680 -flags_type_definition(float_in_interval(Interval), in_interval(float, Interval), in_interval(float, Interval)).flags_type_definition328,15680 -flags_type_definition(positive_float, in_interval(float, (0.0, (+inf))), true).flags_type_definition329,15792 -flags_type_definition(positive_float, in_interval(float, (0.0, (+inf))), true).flags_type_definition329,15792 -flags_type_definition(non_negative_float, in_interval(float, ([0.0], (+inf))), true).flags_type_definition330,15872 -flags_type_definition(non_negative_float, in_interval(float, ([0.0], (+inf))), true).flags_type_definition330,15872 -flags_type_definition(negative_float, in_interval(float, ((-inf), 0.0)), true).flags_type_definition331,15958 -flags_type_definition(negative_float, in_interval(float, ((-inf), 0.0)), true).flags_type_definition331,15958 -flags_type_definition(number_in_interval(Interval), in_interval(number, Interval), in_interval(number, Interval)).flags_type_definition332,16038 -flags_type_definition(number_in_interval(Interval), in_interval(number, Interval), in_interval(number, Interval)).flags_type_definition332,16038 -flags_type_definition(positive_number, in_interval(number, (0.0, (+inf))), true).flags_type_definition333,16153 -flags_type_definition(positive_number, in_interval(number, (0.0, (+inf))), true).flags_type_definition333,16153 -flags_type_definition(non_negative_number, in_interval(number, ([0.0], (+inf))), true).flags_type_definition334,16235 -flags_type_definition(non_negative_number, in_interval(number, ([0.0], (+inf))), true).flags_type_definition334,16235 -flags_type_definition(negative_number, in_interval(number, ((-inf), 0.0)), true).flags_type_definition335,16323 -flags_type_definition(negative_number, in_interval(number, ((-inf), 0.0)), true).flags_type_definition335,16323 -flags_type_definition(in_domain(Domain), in_domain(Domain), in_domain(Domain)).flags_type_definition336,16405 -flags_type_definition(in_domain(Domain), in_domain(Domain), in_domain(Domain)).flags_type_definition336,16405 -flags_type_definition(boolean, in_domain([true, false]), true).flags_type_definition337,16485 -flags_type_definition(boolean, in_domain([true, false]), true).flags_type_definition337,16485 -flags_type_definition(switch, in_domain([on, off]), true).flags_type_definition338,16549 -flags_type_definition(switch, in_domain([on, off]), true).flags_type_definition338,16549 -in_domain(Domain):-in_domain340,16609 -in_domain(Domain):-in_domain340,16609 -in_domain(Domain):-in_domain340,16609 -in_domain(Domain, Value):-in_domain343,16666 -in_domain(Domain, Value):-in_domain343,16666 -in_domain(Domain, Value):-in_domain343,16666 -in_interval(Type, Interval):-in_interval347,16739 -in_interval(Type, Interval):-in_interval347,16739 -in_interval(Type, Interval):-in_interval347,16739 -in_interval(Type, Interval):-in_interval351,16848 -in_interval(Type, Interval):-in_interval351,16848 -in_interval(Type, Interval):-in_interval351,16848 -in_interval_conj(_Type, []).in_interval_conj354,16917 -in_interval_conj(_Type, []).in_interval_conj354,16917 -in_interval_conj(Type, [Interval|Rest]):-in_interval_conj355,16946 -in_interval_conj(Type, [Interval|Rest]):-in_interval_conj355,16946 -in_interval_conj(Type, [Interval|Rest]):-in_interval_conj355,16946 -in_interval_single(Type, ([Min], [Max])):-in_interval_single359,17059 -in_interval_single(Type, ([Min], [Max])):-in_interval_single359,17059 -in_interval_single(Type, ([Min], [Max])):-in_interval_single359,17059 -in_interval_single(Type, ([Min], Max)):-in_interval_single364,17158 -in_interval_single(Type, ([Min], Max)):-in_interval_single364,17158 -in_interval_single(Type, ([Min], Max)):-in_interval_single364,17158 -in_interval_single(Type, (Min, [Max])):-in_interval_single369,17261 -in_interval_single(Type, (Min, [Max])):-in_interval_single369,17261 -in_interval_single(Type, (Min, [Max])):-in_interval_single369,17261 -in_interval_single(Type, (Min, Max)):-in_interval_single374,17364 -in_interval_single(Type, (Min, Max)):-in_interval_single374,17364 -in_interval_single(Type, (Min, Max)):-in_interval_single374,17364 -type_or_inf(Type, Value):-type_or_inf380,17488 -type_or_inf(Type, Value):-type_or_inf380,17488 -type_or_inf(Type, Value):-type_or_inf380,17488 -type_or_inf(Type, Value):-type_or_inf383,17568 -type_or_inf(Type, Value):-type_or_inf383,17568 -type_or_inf(Type, Value):-type_or_inf383,17568 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -type_or_inf(Type, Value):- call(Type, Value).type_or_inf386,17648 -in_interval(Type, [Interval|_Rest], Value):-in_interval388,17695 -in_interval(Type, [Interval|_Rest], Value):-in_interval388,17695 -in_interval(Type, [Interval|_Rest], Value):-in_interval388,17695 -in_interval(Type, [_Interval|Rest], Value):-in_interval390,17781 -in_interval(Type, [_Interval|Rest], Value):-in_interval390,17781 -in_interval(Type, [_Interval|Rest], Value):-in_interval390,17781 -in_interval(Type, ([Min], [Max]), Value):-in_interval393,17861 -in_interval(Type, ([Min], [Max]), Value):-in_interval393,17861 -in_interval(Type, ([Min], [Max]), Value):-in_interval393,17861 -in_interval(Type, ([Min], Max), Value):-in_interval398,17961 -in_interval(Type, ([Min], Max), Value):-in_interval398,17961 -in_interval(Type, ([Min], Max), Value):-in_interval398,17961 -in_interval(Type, (Min, [Max]), Value):-in_interval403,18058 -in_interval(Type, (Min, [Max]), Value):-in_interval403,18058 -in_interval(Type, (Min, [Max]), Value):-in_interval403,18058 -in_interval(Type, (Min, Max), Value):-in_interval408,18155 -in_interval(Type, (Min, Max), Value):-in_interval408,18155 -in_interval(Type, (Min, Max), Value):-in_interval408,18155 -validate_type(Type):-validate_type413,18246 -validate_type(Type):-validate_type413,18246 -validate_type(Type):-validate_type413,18246 -validate(FlagType, Handler, Value, FlagName):-validate417,18341 -validate(FlagType, Handler, Value, FlagName):-validate417,18341 -validate(FlagType, Handler, Value, FlagName):-validate417,18341 -validate(FlagType, Handler, Value, FlagName):-validate425,18663 -validate(FlagType, Handler, Value, FlagName):-validate425,18663 -validate(FlagType, Handler, Value, FlagName):-validate425,18663 -flag_set(FlagName, FlagValue):-flag_set433,19049 -flag_set(FlagName, FlagValue):-flag_set433,19049 -flag_set(FlagName, FlagValue):-flag_set433,19049 -flag_set(FlagName, OldValue, FlagValue):-flag_set435,19125 -flag_set(FlagName, OldValue, FlagValue):-flag_set435,19125 -flag_set(FlagName, OldValue, FlagValue):-flag_set435,19125 -flag_set(FlagName, OldValue, FlagValue):-flag_set450,19770 -flag_set(FlagName, OldValue, FlagValue):-flag_set450,19770 -flag_set(FlagName, OldValue, FlagValue):-flag_set450,19770 -flag_unsafe_set(FlagName, FlagValue):-flag_unsafe_set453,19940 -flag_unsafe_set(FlagName, FlagValue):-flag_unsafe_set453,19940 -flag_unsafe_set(FlagName, FlagValue):-flag_unsafe_set453,19940 -flag_get(FlagName, FlagValue):-flag_get457,20080 -flag_get(FlagName, FlagValue):-flag_get457,20080 -flag_get(FlagName, FlagValue):-flag_get457,20080 -flag_get(FlagName, FlagValue):-flag_get460,20269 -flag_get(FlagName, FlagValue):-flag_get460,20269 -flag_get(FlagName, FlagValue):-flag_get460,20269 -flags_reset:-flags_reset463,20347 -flags_reset(FlagGroup):-flags_reset475,20675 -flags_reset(FlagGroup):-flags_reset475,20675 -flags_reset(FlagGroup):-flags_reset475,20675 -flags_reset(_).flags_reset485,21006 -flags_reset(_).flags_reset485,21006 -flags_save(FileName):-flags_save487,21023 -flags_save(FileName):-flags_save487,21023 -flags_save(FileName):-flags_save487,21023 -flags_save(_FileName):-flags_save494,21266 -flags_save(_FileName):-flags_save494,21266 -flags_save(_FileName):-flags_save494,21266 -flags_load(FileName):-flags_load497,21299 -flags_load(FileName):-flags_load497,21299 -flags_load(FileName):-flags_load497,21299 -flags_load(_FileName):-flags_load503,21493 -flags_load(_FileName):-flags_load503,21493 -flags_load(_FileName):-flags_load503,21493 -clean_and_throw(Action, Exception):-clean_and_throw506,21526 -clean_and_throw(Action, Exception):-clean_and_throw506,21526 -clean_and_throw(Action, Exception):-clean_and_throw506,21526 -flag_help:-flag_help510,21594 -flag_help_types:-flag_help_types533,23140 -flag_help_handler:-flag_help_handler539,23262 -flags_print:-flags_print568,25400 -flags_print(Group):-flags_print571,25490 -flags_print(Group):-flags_print571,25490 -flags_print(Group):-flags_print571,25490 -flags_print(FlagGroup):-flags_print574,25622 -flags_print(FlagGroup):-flags_print574,25622 -flags_print(FlagGroup):-flags_print574,25622 -flags_print(_).flags_print580,25917 -flags_print(_).flags_print580,25917 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag582,25934 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag582,25934 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag582,25934 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag585,26169 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag585,26169 -defined_flag(FlagName, FlagGroup, FlagType, DefaultValue, Description, Access, Handler):-defined_flag585,26169 - -packages/python/swig/yap4py/prolog/gensym.yap,452 -:- dynamic gensym_key/2.dynamic27,470 -:- dynamic gensym_key/2.dynamic27,470 -gensym(Atom, New) :-gensym29,496 -gensym(Atom, New) :-gensym29,496 -gensym(Atom, New) :-gensym29,496 -gensym(Atom, New) :-gensym34,625 -gensym(Atom, New) :-gensym34,625 -gensym(Atom, New) :-gensym34,625 -reset_gensym(Atom) :-reset_gensym38,704 -reset_gensym(Atom) :-reset_gensym38,704 -reset_gensym(Atom) :-reset_gensym38,704 -reset_gensym :-reset_gensym41,757 - -packages/python/swig/yap4py/prolog/hacks.yap,1174 -stack_dump :-stack_dump38,733 -stack_dump(Max) :-stack_dump41,765 -stack_dump(Max) :-stack_dump41,765 -stack_dump(Max) :-stack_dump41,765 -run_formats([], _).run_formats51,1139 -run_formats([], _).run_formats51,1139 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1159 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1159 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1159 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm56,1270 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm56,1270 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm56,1270 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm61,1409 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm61,1409 -virtual_alarm(Interval, Goal, Left) :-virtual_alarm61,1409 -virtual_alarm(Interval.USecs, Goal, Left.LUSecs) :-virtual_alarm65,1543 -virtual_alarm(Interval.USecs, Goal, Left.LUSecs) :-virtual_alarm65,1543 -virtual_alarm(Interval.USecs, Goal, Left.LUSecs) :-virtual_alarm65,1543 -fully_strip_module(T,M,S) :-fully_strip_module69,1677 -fully_strip_module(T,M,S) :-fully_strip_module69,1677 -fully_strip_module(T,M,S) :-fully_strip_module69,1677 - -packages/python/swig/yap4py/prolog/heaps.yap,6332 -add_to_heap(t(M,[],OldTree), Key, Datum, t(N,[],NewTree)) :- !,add_to_heap119,4571 -add_to_heap(t(M,[],OldTree), Key, Datum, t(N,[],NewTree)) :- !,add_to_heap119,4571 -add_to_heap(t(M,[],OldTree), Key, Datum, t(N,[],NewTree)) :- !,add_to_heap119,4571 -add_to_heap(t(M,[H|T],OldTree), Key, Datum, t(N,T,NewTree)) :-add_to_heap122,4693 -add_to_heap(t(M,[H|T],OldTree), Key, Datum, t(N,T,NewTree)) :-add_to_heap122,4693 -add_to_heap(t(M,[H|T],OldTree), Key, Datum, t(N,T,NewTree)) :-add_to_heap122,4693 -add_to_heap(1, Key, Datum, _, t(Key,Datum,t,t)) :- !.add_to_heap127,4816 -add_to_heap(1, Key, Datum, _, t(Key,Datum,t,t)) :- !.add_to_heap127,4816 -add_to_heap(1, Key, Datum, _, t(Key,Datum,t,t)) :- !.add_to_heap127,4816 -add_to_heap(N, Key, Datum, t(K1,D1,L1,R1), t(K2,D2,L2,R2)) :-add_to_heap128,4870 -add_to_heap(N, Key, Datum, t(K1,D1,L1,R1), t(K2,D2,L2,R2)) :-add_to_heap128,4870 -add_to_heap(N, Key, Datum, t(K1,D1,L1,R1), t(K2,D2,L2,R2)) :-add_to_heap128,4870 -add_to_heap(0, N, Key, Datum, L1, R, L2, R) :- !,add_to_heap136,5114 -add_to_heap(0, N, Key, Datum, L1, R, L2, R) :- !,add_to_heap136,5114 -add_to_heap(0, N, Key, Datum, L1, R, L2, R) :- !,add_to_heap136,5114 -add_to_heap(1, N, Key, Datum, L, R1, L, R2) :- !,add_to_heap138,5201 -add_to_heap(1, N, Key, Datum, L, R1, L, R2) :- !,add_to_heap138,5201 -add_to_heap(1, N, Key, Datum, L, R1, L, R2) :- !,add_to_heap138,5201 -sort2(Key1, Datum1, Key2, Datum2, Key1, Datum1, Key2, Datum2) :-sort2142,5290 -sort2(Key1, Datum1, Key2, Datum2, Key1, Datum1, Key2, Datum2) :-sort2142,5290 -sort2(Key1, Datum1, Key2, Datum2, Key1, Datum1, Key2, Datum2) :-sort2142,5290 -sort2(Key1, Datum1, Key2, Datum2, Key2, Datum2, Key1, Datum1).sort2145,5374 -sort2(Key1, Datum1, Key2, Datum2, Key2, Datum2, Key1, Datum1).sort2145,5374 -get_from_heap(t(N,Free,t(Key,Datum,L,R)), Key, Datum, t(M,[Hole|Free],Tree)) :-get_from_heap159,5952 -get_from_heap(t(N,Free,t(Key,Datum,L,R)), Key, Datum, t(M,[Hole|Free],Tree)) :-get_from_heap159,5952 -get_from_heap(t(N,Free,t(Key,Datum,L,R)), Key, Datum, t(M,[Hole|Free],Tree)) :-get_from_heap159,5952 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K2,D2,t(K1,D1,L1,R1),R3), N) :-repair_heap164,6077 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K2,D2,t(K1,D1,L1,R1),R3), N) :-repair_heap164,6077 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K2,D2,t(K1,D1,L1,R1),R3), N) :-repair_heap164,6077 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K1,D1,L3,t(K2,D2,L2,R2)), N) :- !,repair_heap169,6212 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K1,D1,L3,t(K2,D2,L2,R2)), N) :- !,repair_heap169,6212 -repair_heap(t(K1,D1,L1,R1), t(K2,D2,L2,R2), t(K1,D1,L3,t(K2,D2,L2,R2)), N) :- !,repair_heap169,6212 -repair_heap(t(K1,D1,L1,R1), t, t(K1,D1,L3,t), N) :- !,repair_heap172,6333 -repair_heap(t(K1,D1,L1,R1), t, t(K1,D1,L3,t), N) :- !,repair_heap172,6333 -repair_heap(t(K1,D1,L1,R1), t, t(K1,D1,L3,t), N) :- !,repair_heap172,6333 -repair_heap(t, t(K2,D2,L2,R2), t(K2,D2,t,R3), N) :- !,repair_heap175,6428 -repair_heap(t, t(K2,D2,L2,R2), t(K2,D2,t,R3), N) :- !,repair_heap175,6428 -repair_heap(t, t(K2,D2,L2,R2), t(K2,D2,t,R3), N) :- !,repair_heap175,6428 -repair_heap(t, t, t, 1) :- !.repair_heap178,6525 -repair_heap(t, t, t, 1) :- !.repair_heap178,6525 -repair_heap(t, t, t, 1) :- !.repair_heap178,6525 -heap_size(t(Size,_,_), Size).heap_size186,6661 -heap_size(t(Size,_,_), Size).heap_size186,6661 -heap_to_list(t(_,_,Tree), List) :-heap_to_list201,7252 -heap_to_list(t(_,_,Tree), List) :-heap_to_list201,7252 -heap_to_list(t(_,_,Tree), List) :-heap_to_list201,7252 -heap_tree_to_list(t, []) :- !.heap_tree_to_list205,7321 -heap_tree_to_list(t, []) :- !.heap_tree_to_list205,7321 -heap_tree_to_list(t, []) :- !.heap_tree_to_list205,7321 -heap_tree_to_list(t(Key,Datum,Lson,Rson), [Key-Datum|Merged]) :-heap_tree_to_list206,7352 -heap_tree_to_list(t(Key,Datum,Lson,Rson), [Key-Datum|Merged]) :-heap_tree_to_list206,7352 -heap_tree_to_list(t(Key,Datum,Lson,Rson), [Key-Datum|Merged]) :-heap_tree_to_list206,7352 -heap_tree_to_list([H1|T1], [H2|T2], [H2|T3]) :-heap_tree_to_list212,7527 -heap_tree_to_list([H1|T1], [H2|T2], [H2|T3]) :-heap_tree_to_list212,7527 -heap_tree_to_list([H1|T1], [H2|T2], [H2|T3]) :-heap_tree_to_list212,7527 -heap_tree_to_list([H1|T1], T2, [H1|T3]) :- !,heap_tree_to_list216,7627 -heap_tree_to_list([H1|T1], T2, [H1|T3]) :- !,heap_tree_to_list216,7627 -heap_tree_to_list([H1|T1], T2, [H1|T3]) :- !,heap_tree_to_list216,7627 -heap_tree_to_list([], T, T) :- !.heap_tree_to_list218,7705 -heap_tree_to_list([], T, T) :- !.heap_tree_to_list218,7705 -heap_tree_to_list([], T, T) :- !.heap_tree_to_list218,7705 -heap_tree_to_list(T, [], T).heap_tree_to_list219,7739 -heap_tree_to_list(T, [], T).heap_tree_to_list219,7739 -list_to_heap(List, Heap) :-list_to_heap232,8197 -list_to_heap(List, Heap) :-list_to_heap232,8197 -list_to_heap(List, Heap) :-list_to_heap232,8197 -list_to_heap([], N, Tree, t(N,[],Tree)) :- !.list_to_heap236,8260 -list_to_heap([], N, Tree, t(N,[],Tree)) :- !.list_to_heap236,8260 -list_to_heap([], N, Tree, t(N,[],Tree)) :- !.list_to_heap236,8260 -list_to_heap([Key-Datum|Rest], M, OldTree, Heap) :-list_to_heap237,8306 -list_to_heap([Key-Datum|Rest], M, OldTree, Heap) :-list_to_heap237,8306 -list_to_heap([Key-Datum|Rest], M, OldTree, Heap) :-list_to_heap237,8306 -min_of_heap(t(_,_,t(Key,Datum,_,_)), Key, Datum).min_of_heap257,8889 -min_of_heap(t(_,_,t(Key,Datum,_,_)), Key, Datum).min_of_heap257,8889 -min_of_heap(t(_,_,t(Key1,Datum1,Lson,Rson)), Key1, Datum1, Key2, Datum2) :-min_of_heap265,9196 -min_of_heap(t(_,_,t(Key1,Datum1,Lson,Rson)), Key1, Datum1, Key2, Datum2) :-min_of_heap265,9196 -min_of_heap(t(_,_,t(Key1,Datum1,Lson,Rson)), Key1, Datum1, Key2, Datum2) :-min_of_heap265,9196 -min_of_heap(t(Ka,_Da,_,_), t(Kb,Db,_,_), Kb, Db) :-min_of_heap269,9314 -min_of_heap(t(Ka,_Da,_,_), t(Kb,Db,_,_), Kb, Db) :-min_of_heap269,9314 -min_of_heap(t(Ka,_Da,_,_), t(Kb,Db,_,_), Kb, Db) :-min_of_heap269,9314 -min_of_heap(t(Ka,Da,_,_), _, Ka, Da).min_of_heap271,9380 -min_of_heap(t(Ka,Da,_,_), _, Ka, Da).min_of_heap271,9380 -min_of_heap(t, t(Kb,Db,_,_), Kb, Db).min_of_heap272,9418 -min_of_heap(t, t(Kb,Db,_,_), Kb, Db).min_of_heap272,9418 -empty_heap(t(0,[],t)).empty_heap279,9532 -empty_heap(t(0,[],t)).empty_heap279,9532 - -packages/python/swig/yap4py/prolog/INDEX.pl,48888 -index(foreach,2,aggretate,library(aggregate)).index1,0 -index(foreach,2,aggretate,library(aggregate)).index1,0 -index(aggregate,3,aggretate,library(aggregate)).index2,47 -index(aggregate,3,aggretate,library(aggregate)).index2,47 -index(aggregate,4,aggretate,library(aggregate)).index3,96 -index(aggregate,4,aggretate,library(aggregate)).index3,96 -index(aggregate_all,3,aggretate,library(aggregate)).index4,145 -index(aggregate_all,3,aggretate,library(aggregate)).index4,145 -index(aggregate_all,4,aggretate,library(aggregate)).index5,198 -index(aggregate_all,4,aggretate,library(aggregate)).index5,198 -index(free_variables,4,aggretate,library(aggregate)).index6,251 -index(free_variables,4,aggretate,library(aggregate)).index6,251 -index(genarg,3,arg,library(arg)).index7,305 -index(genarg,3,arg,library(arg)).index7,305 -index(arg0,3,arg,library(arg)).index8,339 -index(arg0,3,arg,library(arg)).index8,339 -index(genarg0,3,arg,library(arg)).index9,371 -index(genarg0,3,arg,library(arg)).index9,371 -index(args,3,arg,library(arg)).index10,406 -index(args,3,arg,library(arg)).index10,406 -index(args0,3,arg,library(arg)).index11,438 -index(args0,3,arg,library(arg)).index11,438 -index(path_arg,3,arg,library(arg)).index12,471 -index(path_arg,3,arg,library(arg)).index12,471 -index(empty_assoc,1,assoc,library(assoc)).index13,507 -index(empty_assoc,1,assoc,library(assoc)).index13,507 -index(assoc_to_list,2,assoc,library(assoc)).index14,550 -index(assoc_to_list,2,assoc,library(assoc)).index14,550 -index(is_assoc,1,assoc,library(assoc)).index15,595 -index(is_assoc,1,assoc,library(assoc)).index15,595 -index(min_assoc,3,assoc,library(assoc)).index16,635 -index(min_assoc,3,assoc,library(assoc)).index16,635 -index(max_assoc,3,assoc,library(assoc)).index17,676 -index(max_assoc,3,assoc,library(assoc)).index17,676 -index(gen_assoc,3,assoc,library(assoc)).index18,717 -index(gen_assoc,3,assoc,library(assoc)).index18,717 -index(get_assoc,3,assoc,library(assoc)).index19,758 -index(get_assoc,3,assoc,library(assoc)).index19,758 -index(get_assoc,5,assoc,library(assoc)).index20,799 -index(get_assoc,5,assoc,library(assoc)).index20,799 -index(get_next_assoc,4,assoc,library(assoc)).index21,840 -index(get_next_assoc,4,assoc,library(assoc)).index21,840 -index(get_prev_assoc,4,assoc,library(assoc)).index22,886 -index(get_prev_assoc,4,assoc,library(assoc)).index22,886 -index(list_to_assoc,2,assoc,library(assoc)).index23,932 -index(list_to_assoc,2,assoc,library(assoc)).index23,932 -index(ord_list_to_assoc,2,assoc,library(assoc)).index24,977 -index(ord_list_to_assoc,2,assoc,library(assoc)).index24,977 -index(map_assoc,2,assoc,library(assoc)).index25,1026 -index(map_assoc,2,assoc,library(assoc)).index25,1026 -index(map_assoc,3,assoc,library(assoc)).index26,1067 -index(map_assoc,3,assoc,library(assoc)).index26,1067 -index(put_assoc,4,assoc,library(assoc)).index27,1108 -index(put_assoc,4,assoc,library(assoc)).index27,1108 -index(del_assoc,4,assoc,library(assoc)).index28,1149 -index(del_assoc,4,assoc,library(assoc)).index28,1149 -index(assoc_to_keys,2,assoc,library(assoc)).index29,1190 -index(assoc_to_keys,2,assoc,library(assoc)).index29,1190 -index(del_min_assoc,4,assoc,library(assoc)).index30,1235 -index(del_min_assoc,4,assoc,library(assoc)).index30,1235 -index(del_max_assoc,4,assoc,library(assoc)).index31,1280 -index(del_max_assoc,4,assoc,library(assoc)).index31,1280 -index(avl_new,1,avl,library(avl)).index32,1325 -index(avl_new,1,avl,library(avl)).index32,1325 -index(avl_insert,4,avl,library(avl)).index33,1360 -index(avl_insert,4,avl,library(avl)).index33,1360 -index(avl_lookup,3,avl,library(avl)).index34,1398 -index(avl_lookup,3,avl,library(avl)).index34,1398 -index(b_hash_new,1,b_hash,library(bhash)).index35,1436 -index(b_hash_new,1,b_hash,library(bhash)).index35,1436 -index(b_hash_new,2,b_hash,library(bhash)).index36,1479 -index(b_hash_new,2,b_hash,library(bhash)).index36,1479 -index(b_hash_new,4,b_hash,library(bhash)).index37,1522 -index(b_hash_new,4,b_hash,library(bhash)).index37,1522 -index(b_hash_lookup,3,b_hash,library(bhash)).index38,1565 -index(b_hash_lookup,3,b_hash,library(bhash)).index38,1565 -index(b_hash_update,3,b_hash,library(bhash)).index39,1611 -index(b_hash_update,3,b_hash,library(bhash)).index39,1611 -index(b_hash_update,4,b_hash,library(bhash)).index40,1657 -index(b_hash_update,4,b_hash,library(bhash)).index40,1657 -index(b_hash_insert_new,4,b_hash,library(bhash)).index41,1703 -index(b_hash_insert_new,4,b_hash,library(bhash)).index41,1703 -index(b_hash_insert,4,b_hash,library(bhash)).index42,1753 -index(b_hash_insert,4,b_hash,library(bhash)).index42,1753 -index(format_to_chars,3,charsio,library(charsio)).index43,1799 -index(format_to_chars,3,charsio,library(charsio)).index43,1799 -index(format_to_chars,4,charsio,library(charsio)).index44,1850 -index(format_to_chars,4,charsio,library(charsio)).index44,1850 -index(write_to_chars,3,charsio,library(charsio)).index45,1901 -index(write_to_chars,3,charsio,library(charsio)).index45,1901 -index(write_to_chars,2,charsio,library(charsio)).index46,1951 -index(write_to_chars,2,charsio,library(charsio)).index46,1951 -index(atom_to_chars,3,charsio,library(charsio)).index47,2001 -index(atom_to_chars,3,charsio,library(charsio)).index47,2001 -index(atom_to_chars,2,charsio,library(charsio)).index48,2050 -index(atom_to_chars,2,charsio,library(charsio)).index48,2050 -index(number_to_chars,3,charsio,library(charsio)).index49,2099 -index(number_to_chars,3,charsio,library(charsio)).index49,2099 -index(number_to_chars,2,charsio,library(charsio)).index50,2150 -index(number_to_chars,2,charsio,library(charsio)).index50,2150 -index(read_from_chars,2,charsio,library(charsio)).index51,2201 -index(read_from_chars,2,charsio,library(charsio)).index51,2201 -index(open_chars_stream,2,charsio,library(charsio)).index52,2252 -index(open_chars_stream,2,charsio,library(charsio)).index52,2252 -index(with_output_to_chars,2,charsio,library(charsio)).index53,2305 -index(with_output_to_chars,2,charsio,library(charsio)).index53,2305 -index(with_output_to_chars,3,charsio,library(charsio)).index54,2361 -index(with_output_to_chars,3,charsio,library(charsio)).index54,2361 -index(with_output_to_chars,4,charsio,library(charsio)).index55,2417 -index(with_output_to_chars,4,charsio,library(charsio)).index55,2417 -index(term_to_atom,2,charsio,library(charsio)).index56,2473 -index(term_to_atom,2,charsio,library(charsio)).index56,2473 -index(chr_show_store,1,chr,library(chr)).index57,2521 -index(chr_show_store,1,chr,library(chr)).index57,2521 -index(find_chr_constraint,1,chr,library(chr)).index58,2563 -index(find_chr_constraint,1,chr,library(chr)).index58,2563 -index(chr_trace,0,chr,library(chr)).index59,2610 -index(chr_trace,0,chr,library(chr)).index59,2610 -index(chr_notrace,0,chr,library(chr)).index60,2647 -index(chr_notrace,0,chr,library(chr)).index60,2647 -index(chr_leash,1,chr,library(chr)).index61,2686 -index(chr_leash,1,chr,library(chr)).index61,2686 -index(#>,2,clpfd,library(clpfd)).index62,2723 -index(#>,2,clpfd,library(clpfd)).index62,2723 -index(#<,2,clpfd,library(clpfd)).index63,2757 -index(#<,2,clpfd,library(clpfd)).index63,2757 -index(#>=,2,clpfd,library(clpfd)).index64,2791 -index(#>=,2,clpfd,library(clpfd)).index64,2791 -index(#=<,2,clpfd,library(clpfd)).index65,2826 -index(#=<,2,clpfd,library(clpfd)).index65,2826 -index(#=,2,clpfd,library(clpfd)).index66,2861 -index(#=,2,clpfd,library(clpfd)).index66,2861 -index(#\=,2,clpfd,library(clpfd)).index67,2895 -index(#\=,2,clpfd,library(clpfd)).index67,2895 -index(#\,1,clpfd,library(clpfd)).index68,2930 -index(#\,1,clpfd,library(clpfd)).index68,2930 -index(#<==>,2,clpfd,library(clpfd)).index69,2964 -index(#<==>,2,clpfd,library(clpfd)).index69,2964 -index(#==>,2,clpfd,library(clpfd)).index70,3001 -index(#==>,2,clpfd,library(clpfd)).index70,3001 -index(#<==,2,clpfd,library(clpfd)).index71,3037 -index(#<==,2,clpfd,library(clpfd)).index71,3037 -index(#\/,2,clpfd,library(clpfd)).index72,3073 -index(#\/,2,clpfd,library(clpfd)).index72,3073 -index(#/\,2,clpfd,library(clpfd)).index73,3108 -index(#/\,2,clpfd,library(clpfd)).index73,3108 -index(in,2,clpfd,library(clpfd)).index74,3143 -index(in,2,clpfd,library(clpfd)).index74,3143 -index(ins,2,clpfd,library(clpfd)).index75,3177 -index(ins,2,clpfd,library(clpfd)).index75,3177 -index(all_different,1,clpfd,library(clpfd)).index76,3212 -index(all_different,1,clpfd,library(clpfd)).index76,3212 -index(all_distinct,1,clpfd,library(clpfd)).index77,3257 -index(all_distinct,1,clpfd,library(clpfd)).index77,3257 -index(sum,3,clpfd,library(clpfd)).index78,3301 -index(sum,3,clpfd,library(clpfd)).index78,3301 -index(scalar_product,4,clpfd,library(clpfd)).index79,3336 -index(scalar_product,4,clpfd,library(clpfd)).index79,3336 -index(tuples_in,2,clpfd,library(clpfd)).index80,3382 -index(tuples_in,2,clpfd,library(clpfd)).index80,3382 -index(labeling,2,clpfd,library(clpfd)).index81,3423 -index(labeling,2,clpfd,library(clpfd)).index81,3423 -index(label,1,clpfd,library(clpfd)).index82,3463 -index(label,1,clpfd,library(clpfd)).index82,3463 -index(indomain,1,clpfd,library(clpfd)).index83,3500 -index(indomain,1,clpfd,library(clpfd)).index83,3500 -index(lex_chain,1,clpfd,library(clpfd)).index84,3540 -index(lex_chain,1,clpfd,library(clpfd)).index84,3540 -index(serialized,2,clpfd,library(clpfd)).index85,3581 -index(serialized,2,clpfd,library(clpfd)).index85,3581 -index(global_cardinality,2,clpfd,library(clpfd)).index86,3623 -index(global_cardinality,2,clpfd,library(clpfd)).index86,3623 -index(global_cardinality,3,clpfd,library(clpfd)).index87,3673 -index(global_cardinality,3,clpfd,library(clpfd)).index87,3673 -index(circuit,1,clpfd,library(clpfd)).index88,3723 -index(circuit,1,clpfd,library(clpfd)).index88,3723 -index(element,3,clpfd,library(clpfd)).index89,3762 -index(element,3,clpfd,library(clpfd)).index89,3762 -index(automaton,3,clpfd,library(clpfd)).index90,3801 -index(automaton,3,clpfd,library(clpfd)).index90,3801 -index(automaton,8,clpfd,library(clpfd)).index91,3842 -index(automaton,8,clpfd,library(clpfd)).index91,3842 -index(transpose,2,clpfd,library(clpfd)).index92,3883 -index(transpose,2,clpfd,library(clpfd)).index92,3883 -index(zcompare,3,clpfd,library(clpfd)).index93,3924 -index(zcompare,3,clpfd,library(clpfd)).index93,3924 -index(chain,2,clpfd,library(clpfd)).index94,3964 -index(chain,2,clpfd,library(clpfd)).index94,3964 -index(fd_var,1,clpfd,library(clpfd)).index95,4001 -index(fd_var,1,clpfd,library(clpfd)).index95,4001 -index(fd_inf,2,clpfd,library(clpfd)).index96,4039 -index(fd_inf,2,clpfd,library(clpfd)).index96,4039 -index(fd_sup,2,clpfd,library(clpfd)).index97,4077 -index(fd_sup,2,clpfd,library(clpfd)).index97,4077 -index(fd_size,2,clpfd,library(clpfd)).index98,4115 -index(fd_size,2,clpfd,library(clpfd)).index98,4115 -index(fd_dom,2,clpfd,library(clpfd)).index99,4154 -index(fd_dom,2,clpfd,library(clpfd)).index99,4154 -index({},1,clpr,library(clpr)).index100,4192 -index({},1,clpr,library(clpr)).index100,4192 -index(maximize,1,clpr,library(clpr)).index101,4224 -index(maximize,1,clpr,library(clpr)).index101,4224 -index(minimize,1,clpr,library(clpr)).index102,4262 -index(minimize,1,clpr,library(clpr)).index102,4262 -index(inf,2,clpr,library(clpr)).index103,4300 -index(inf,2,clpr,library(clpr)).index103,4300 -index(inf,4,clpr,library(clpr)).index104,4333 -index(inf,4,clpr,library(clpr)).index104,4333 -index(sup,2,clpr,library(clpr)).index105,4366 -index(sup,2,clpr,library(clpr)).index105,4366 -index(sup,4,clpr,library(clpr)).index106,4399 -index(sup,4,clpr,library(clpr)).index106,4399 -index(bb_inf,3,clpr,library(clpr)).index107,4432 -index(bb_inf,3,clpr,library(clpr)).index107,4432 -index(bb_inf,5,clpr,library(clpr)).index108,4468 -index(bb_inf,5,clpr,library(clpr)).index108,4468 -index(ordering,1,clpr,library(clpr)).index109,4504 -index(ordering,1,clpr,library(clpr)).index109,4504 -index(entailed,1,clpr,library(clpr)).index110,4542 -index(entailed,1,clpr,library(clpr)).index110,4542 -index(clp_type,2,clpr,library(clpr)).index111,4580 -index(clp_type,2,clpr,library(clpr)).index111,4580 -index(dump,3,clpr,library(clpr)).index112,4618 -index(dump,3,clpr,library(clpr)).index112,4618 -index(gensym,2,gensym,library(gensym)).index113,4652 -index(gensym,2,gensym,library(gensym)).index113,4652 -index(reset_gensym,1,gensym,library(gensym)).index114,4692 -index(reset_gensym,1,gensym,library(gensym)).index114,4692 -index(reset_gensym,0,gensym,library(gensym)).index115,4738 -index(reset_gensym,0,gensym,library(gensym)).index115,4738 -index(add_to_heap,4,heaps,library(heaps)).index116,4784 -index(add_to_heap,4,heaps,library(heaps)).index116,4784 -index(get_from_heap,4,heaps,library(heaps)).index117,4827 -index(get_from_heap,4,heaps,library(heaps)).index117,4827 -index(empty_heap,1,heaps,library(heaps)).index118,4872 -index(empty_heap,1,heaps,library(heaps)).index118,4872 -index(heap_size,2,heaps,library(heaps)).index119,4914 -index(heap_size,2,heaps,library(heaps)).index119,4914 -index(heap_to_list,2,heaps,library(heaps)).index120,4955 -index(heap_to_list,2,heaps,library(heaps)).index120,4955 -index(list_to_heap,2,heaps,library(heaps)).index121,4999 -index(list_to_heap,2,heaps,library(heaps)).index121,4999 -index(min_of_heap,3,heaps,library(heaps)).index122,5043 -index(min_of_heap,3,heaps,library(heaps)).index122,5043 -index(min_of_heap,5,heaps,library(heaps)).index123,5086 -index(min_of_heap,5,heaps,library(heaps)).index123,5086 -index(jpl_get_default_jvm_opts,1,jpl,library(jpl)).index124,5129 -index(jpl_get_default_jvm_opts,1,jpl,library(jpl)).index124,5129 -index(jpl_set_default_jvm_opts,1,jpl,library(jpl)).index125,5181 -index(jpl_set_default_jvm_opts,1,jpl,library(jpl)).index125,5181 -index(jpl_get_actual_jvm_opts,1,jpl,library(jpl)).index126,5233 -index(jpl_get_actual_jvm_opts,1,jpl,library(jpl)).index126,5233 -index(jpl_pl_lib_version,1,jpl,library(jpl)).index127,5284 -index(jpl_pl_lib_version,1,jpl,library(jpl)).index127,5284 -index(jpl_c_lib_version,1,jpl,library(jpl)).index128,5330 -index(jpl_c_lib_version,1,jpl,library(jpl)).index128,5330 -index(jpl_new,3,jpl,library(jpl)).index129,5375 -index(jpl_new,3,jpl,library(jpl)).index129,5375 -index(jpl_call,4,jpl,library(jpl)).index130,5410 -index(jpl_call,4,jpl,library(jpl)).index130,5410 -index(jpl_get,3,jpl,library(jpl)).index131,5446 -index(jpl_get,3,jpl,library(jpl)).index131,5446 -index(jpl_set,3,jpl,library(jpl)).index132,5481 -index(jpl_set,3,jpl,library(jpl)).index132,5481 -index(jpl_servlet_byref,3,jpl,library(jpl)).index133,5516 -index(jpl_servlet_byref,3,jpl,library(jpl)).index133,5516 -index(jpl_servlet_byval,3,jpl,library(jpl)).index134,5561 -index(jpl_servlet_byval,3,jpl,library(jpl)).index134,5561 -index(jpl_class_to_classname,2,jpl,library(jpl)).index135,5606 -index(jpl_class_to_classname,2,jpl,library(jpl)).index135,5606 -index(jpl_class_to_type,2,jpl,library(jpl)).index136,5656 -index(jpl_class_to_type,2,jpl,library(jpl)).index136,5656 -index(jpl_classname_to_class,2,jpl,library(jpl)).index137,5701 -index(jpl_classname_to_class,2,jpl,library(jpl)).index137,5701 -index(jpl_classname_to_type,2,jpl,library(jpl)).index138,5751 -index(jpl_classname_to_type,2,jpl,library(jpl)).index138,5751 -index(jpl_datum_to_type,2,jpl,library(jpl)).index139,5800 -index(jpl_datum_to_type,2,jpl,library(jpl)).index139,5800 -index(jpl_false,1,jpl,library(jpl)).index140,5845 -index(jpl_false,1,jpl,library(jpl)).index140,5845 -index(jpl_is_class,1,jpl,library(jpl)).index141,5882 -index(jpl_is_class,1,jpl,library(jpl)).index141,5882 -index(jpl_is_false,1,jpl,library(jpl)).index142,5922 -index(jpl_is_false,1,jpl,library(jpl)).index142,5922 -index(jpl_is_null,1,jpl,library(jpl)).index143,5962 -index(jpl_is_null,1,jpl,library(jpl)).index143,5962 -index(jpl_is_object,1,jpl,library(jpl)).index144,6001 -index(jpl_is_object,1,jpl,library(jpl)).index144,6001 -index(jpl_is_object_type,1,jpl,library(jpl)).index145,6042 -index(jpl_is_object_type,1,jpl,library(jpl)).index145,6042 -index(jpl_is_ref,1,jpl,library(jpl)).index146,6088 -index(jpl_is_ref,1,jpl,library(jpl)).index146,6088 -index(jpl_is_true,1,jpl,library(jpl)).index147,6126 -index(jpl_is_true,1,jpl,library(jpl)).index147,6126 -index(jpl_is_type,1,jpl,library(jpl)).index148,6165 -index(jpl_is_type,1,jpl,library(jpl)).index148,6165 -index(jpl_is_void,1,jpl,library(jpl)).index149,6204 -index(jpl_is_void,1,jpl,library(jpl)).index149,6204 -index(jpl_null,1,jpl,library(jpl)).index150,6243 -index(jpl_null,1,jpl,library(jpl)).index150,6243 -index(jpl_object_to_class,2,jpl,library(jpl)).index151,6279 -index(jpl_object_to_class,2,jpl,library(jpl)).index151,6279 -index(jpl_object_to_type,2,jpl,library(jpl)).index152,6326 -index(jpl_object_to_type,2,jpl,library(jpl)).index152,6326 -index(jpl_primitive_type,1,jpl,library(jpl)).index153,6372 -index(jpl_primitive_type,1,jpl,library(jpl)).index153,6372 -index(jpl_ref_to_type,2,jpl,library(jpl)).index154,6418 -index(jpl_ref_to_type,2,jpl,library(jpl)).index154,6418 -index(jpl_true,1,jpl,library(jpl)).index155,6461 -index(jpl_true,1,jpl,library(jpl)).index155,6461 -index(jpl_type_to_class,2,jpl,library(jpl)).index156,6497 -index(jpl_type_to_class,2,jpl,library(jpl)).index156,6497 -index(jpl_type_to_classname,2,jpl,library(jpl)).index157,6542 -index(jpl_type_to_classname,2,jpl,library(jpl)).index157,6542 -index(jpl_void,1,jpl,library(jpl)).index158,6591 -index(jpl_void,1,jpl,library(jpl)).index158,6591 -index(jpl_array_to_length,2,jpl,library(jpl)).index159,6627 -index(jpl_array_to_length,2,jpl,library(jpl)).index159,6627 -index(jpl_array_to_list,2,jpl,library(jpl)).index160,6674 -index(jpl_array_to_list,2,jpl,library(jpl)).index160,6674 -index(jpl_datums_to_array,2,jpl,library(jpl)).index161,6719 -index(jpl_datums_to_array,2,jpl,library(jpl)).index161,6719 -index(jpl_enumeration_element,2,jpl,library(jpl)).index162,6766 -index(jpl_enumeration_element,2,jpl,library(jpl)).index162,6766 -index(jpl_enumeration_to_list,2,jpl,library(jpl)).index163,6817 -index(jpl_enumeration_to_list,2,jpl,library(jpl)).index163,6817 -index(jpl_hashtable_pair,2,jpl,library(jpl)).index164,6868 -index(jpl_hashtable_pair,2,jpl,library(jpl)).index164,6868 -index(jpl_iterator_element,2,jpl,library(jpl)).index165,6914 -index(jpl_iterator_element,2,jpl,library(jpl)).index165,6914 -index(jpl_list_to_array,2,jpl,library(jpl)).index166,6962 -index(jpl_list_to_array,2,jpl,library(jpl)).index166,6962 -index(jpl_list_to_array,3,jpl,library(jpl)).index167,7007 -index(jpl_list_to_array,3,jpl,library(jpl)).index167,7007 -index(jpl_terms_to_array,2,jpl,library(jpl)).index168,7052 -index(jpl_terms_to_array,2,jpl,library(jpl)).index168,7052 -index(jpl_map_element,2,jpl,library(jpl)).index169,7098 -index(jpl_map_element,2,jpl,library(jpl)).index169,7098 -index(jpl_set_element,2,jpl,library(jpl)).index170,7141 -index(jpl_set_element,2,jpl,library(jpl)).index170,7141 -index(append,3,lists,library(lists)).index171,7184 -index(append,3,lists,library(lists)).index171,7184 -index(append,2,lists,library(lists)).index172,7222 -index(append,2,lists,library(lists)).index172,7222 -index(delete,3,lists,library(lists)).index173,7260 -index(delete,3,lists,library(lists)).index173,7260 -index(intersection,3,lists,library(lists)).index174,7298 -index(intersection,3,lists,library(lists)).index174,7298 -index(flatten,2,lists,library(lists)).index175,7342 -index(flatten,2,lists,library(lists)).index175,7342 -index(last,2,lists,library(lists)).index176,7381 -index(last,2,lists,library(lists)).index176,7381 -index(list_concat,2,lists,library(lists)).index177,7417 -index(list_concat,2,lists,library(lists)).index177,7417 -index(max_list,2,lists,library(lists)).index178,7460 -index(max_list,2,lists,library(lists)).index178,7460 -index(member,2,lists,library(lists)).index179,7500 -index(member,2,lists,library(lists)).index179,7500 -index(memberchk,2,lists,library(lists)).index180,7538 -index(memberchk,2,lists,library(lists)).index180,7538 -index(min_list,2,lists,library(lists)).index181,7579 -index(min_list,2,lists,library(lists)).index181,7579 -index(nextto,3,lists,library(lists)).index182,7619 -index(nextto,3,lists,library(lists)).index182,7619 -index(nth,3,lists,library(lists)).index183,7657 -index(nth,3,lists,library(lists)).index183,7657 -index(nth,4,lists,library(lists)).index184,7692 -index(nth,4,lists,library(lists)).index184,7692 -index(nth0,3,lists,library(lists)).index185,7727 -index(nth0,3,lists,library(lists)).index185,7727 -index(nth0,4,lists,library(lists)).index186,7763 -index(nth0,4,lists,library(lists)).index186,7763 -index(nth1,3,lists,library(lists)).index187,7799 -index(nth1,3,lists,library(lists)).index187,7799 -index(nth1,4,lists,library(lists)).index188,7835 -index(nth1,4,lists,library(lists)).index188,7835 -index(numlist,3,lists,library(lists)).index189,7871 -index(numlist,3,lists,library(lists)).index189,7871 -index(permutation,2,lists,library(lists)).index190,7910 -index(permutation,2,lists,library(lists)).index190,7910 -index(prefix,2,lists,library(lists)).index191,7953 -index(prefix,2,lists,library(lists)).index191,7953 -index(remove_duplicates,2,lists,library(lists)).index192,7991 -index(remove_duplicates,2,lists,library(lists)).index192,7991 -index(reverse,2,lists,library(lists)).index193,8040 -index(reverse,2,lists,library(lists)).index193,8040 -index(same_length,2,lists,library(lists)).index194,8079 -index(same_length,2,lists,library(lists)).index194,8079 -index(select,3,lists,library(lists)).index195,8122 -index(select,3,lists,library(lists)).index195,8122 -index(selectchk,3,lists,library(lists)).index196,8160 -index(selectchk,3,lists,library(lists)).index196,8160 -index(sublist,2,lists,library(lists)).index197,8201 -index(sublist,2,lists,library(lists)).index197,8201 -index(substitute,4,lists,library(lists)).index198,8240 -index(substitute,4,lists,library(lists)).index198,8240 -index(subtract,3,lists,library(lists)).index199,8282 -index(subtract,3,lists,library(lists)).index199,8282 -index(suffix,2,lists,library(lists)).index200,8322 -index(suffix,2,lists,library(lists)).index200,8322 -index(sum_list,2,lists,library(lists)).index201,8360 -index(sum_list,2,lists,library(lists)).index201,8360 -index(sum_list,3,lists,library(lists)).index202,8400 -index(sum_list,3,lists,library(lists)).index202,8400 -index(sumlist,2,lists,library(lists)).index203,8440 -index(sumlist,2,lists,library(lists)).index203,8440 -index(nb_queue,1,nb,library(nb)).index204,8479 -index(nb_queue,1,nb,library(nb)).index204,8479 -index(nb_queue,2,nb,library(nb)).index205,8513 -index(nb_queue,2,nb,library(nb)).index205,8513 -index(nb_queue_close,3,nb,library(nb)).index206,8547 -index(nb_queue_close,3,nb,library(nb)).index206,8547 -index(nb_queue_enqueue,2,nb,library(nb)).index207,8587 -index(nb_queue_enqueue,2,nb,library(nb)).index207,8587 -index(nb_queue_dequeue,2,nb,library(nb)).index208,8629 -index(nb_queue_dequeue,2,nb,library(nb)).index208,8629 -index(nb_queue_peek,2,nb,library(nb)).index209,8671 -index(nb_queue_peek,2,nb,library(nb)).index209,8671 -index(nb_queue_empty,1,nb,library(nb)).index210,8710 -index(nb_queue_empty,1,nb,library(nb)).index210,8710 -index(nb_queue_size,2,nb,library(nb)).index211,8750 -index(nb_queue_size,2,nb,library(nb)).index211,8750 -index(nb_heap,2,nb,library(nb)).index212,8789 -index(nb_heap,2,nb,library(nb)).index212,8789 -index(nb_heap_close,1,nb,library(nb)).index213,8822 -index(nb_heap_close,1,nb,library(nb)).index213,8822 -index(nb_heap_add,3,nb,library(nb)).index214,8861 -index(nb_heap_add,3,nb,library(nb)).index214,8861 -index(nb_heap_del,3,nb,library(nb)).index215,8898 -index(nb_heap_del,3,nb,library(nb)).index215,8898 -index(nb_heap_peek,3,nb,library(nb)).index216,8935 -index(nb_heap_peek,3,nb,library(nb)).index216,8935 -index(nb_heap_empty,1,nb,library(nb)).index217,8973 -index(nb_heap_empty,1,nb,library(nb)).index217,8973 -index(nb_heap_size,2,nb,library(nb)).index218,9012 -index(nb_heap_size,2,nb,library(nb)).index218,9012 -index(nb_beam,2,nb,library(nb)).index219,9050 -index(nb_beam,2,nb,library(nb)).index219,9050 -index(nb_beam_close,1,nb,library(nb)).index220,9083 -index(nb_beam_close,1,nb,library(nb)).index220,9083 -index(nb_beam_add,3,nb,library(nb)).index221,9122 -index(nb_beam_add,3,nb,library(nb)).index221,9122 -index(nb_beam_del,3,nb,library(nb)).index222,9159 -index(nb_beam_del,3,nb,library(nb)).index222,9159 -index(nb_beam_peek,3,nb,library(nb)).index223,9196 -index(nb_beam_peek,3,nb,library(nb)).index223,9196 -index(nb_beam_empty,1,nb,library(nb)).index224,9234 -index(nb_beam_empty,1,nb,library(nb)).index224,9234 -index(nb_beam_size,2,nb,library(nb)).index225,9273 -index(nb_beam_size,2,nb,library(nb)).index225,9273 -index(contains_term,2,occurs,library(occurs)).index226,9311 -index(contains_term,2,occurs,library(occurs)).index226,9311 -index(contains_var,2,occurs,library(occurs)).index227,9358 -index(contains_var,2,occurs,library(occurs)).index227,9358 -index(free_of_term,2,occurs,library(occurs)).index228,9404 -index(free_of_term,2,occurs,library(occurs)).index228,9404 -index(free_of_var,2,occurs,library(occurs)).index229,9450 -index(free_of_var,2,occurs,library(occurs)).index229,9450 -index(occurrences_of_term,3,occurs,library(occurs)).index230,9495 -index(occurrences_of_term,3,occurs,library(occurs)).index230,9495 -index(occurrences_of_var,3,occurs,library(occurs)).index231,9548 -index(occurrences_of_var,3,occurs,library(occurs)).index231,9548 -index(sub_term,2,occurs,library(occurs)).index232,9600 -index(sub_term,2,occurs,library(occurs)).index232,9600 -index(sub_var,2,occurs,library(occurs)).index233,9642 -index(sub_var,2,occurs,library(occurs)).index233,9642 -index(option,2,swi_option,library(option)).index234,9683 -index(option,2,swi_option,library(option)).index234,9683 -index(option,3,swi_option,library(option)).index235,9727 -index(option,3,swi_option,library(option)).index235,9727 -index(select_option,3,swi_option,library(option)).index236,9771 -index(select_option,3,swi_option,library(option)).index236,9771 -index(select_option,4,swi_option,library(option)).index237,9822 -index(select_option,4,swi_option,library(option)).index237,9822 -index(merge_options,3,swi_option,library(option)).index238,9873 -index(merge_options,3,swi_option,library(option)).index238,9873 -index(meta_options,3,swi_option,library(option)).index239,9924 -index(meta_options,3,swi_option,library(option)).index239,9924 -index(list_to_ord_set,2,ordsets,library(ordsets)).index240,9974 -index(list_to_ord_set,2,ordsets,library(ordsets)).index240,9974 -index(merge,3,ordsets,library(ordsets)).index241,10025 -index(merge,3,ordsets,library(ordsets)).index241,10025 -index(ord_add_element,3,ordsets,library(ordsets)).index242,10066 -index(ord_add_element,3,ordsets,library(ordsets)).index242,10066 -index(ord_del_element,3,ordsets,library(ordsets)).index243,10117 -index(ord_del_element,3,ordsets,library(ordsets)).index243,10117 -index(ord_disjoint,2,ordsets,library(ordsets)).index244,10168 -index(ord_disjoint,2,ordsets,library(ordsets)).index244,10168 -index(ord_insert,3,ordsets,library(ordsets)).index245,10216 -index(ord_insert,3,ordsets,library(ordsets)).index245,10216 -index(ord_member,2,ordsets,library(ordsets)).index246,10262 -index(ord_member,2,ordsets,library(ordsets)).index246,10262 -index(ord_intersect,2,ordsets,library(ordsets)).index247,10308 -index(ord_intersect,2,ordsets,library(ordsets)).index247,10308 -index(ord_intersect,3,ordsets,library(ordsets)).index248,10357 -index(ord_intersect,3,ordsets,library(ordsets)).index248,10357 -index(ord_intersection,3,ordsets,library(ordsets)).index249,10406 -index(ord_intersection,3,ordsets,library(ordsets)).index249,10406 -index(ord_intersection,4,ordsets,library(ordsets)).index250,10458 -index(ord_intersection,4,ordsets,library(ordsets)).index250,10458 -index(ord_seteq,2,ordsets,library(ordsets)).index251,10510 -index(ord_seteq,2,ordsets,library(ordsets)).index251,10510 -index(ord_setproduct,3,ordsets,library(ordsets)).index252,10555 -index(ord_setproduct,3,ordsets,library(ordsets)).index252,10555 -index(ord_subset,2,ordsets,library(ordsets)).index253,10605 -index(ord_subset,2,ordsets,library(ordsets)).index253,10605 -index(ord_subtract,3,ordsets,library(ordsets)).index254,10651 -index(ord_subtract,3,ordsets,library(ordsets)).index254,10651 -index(ord_symdiff,3,ordsets,library(ordsets)).index255,10699 -index(ord_symdiff,3,ordsets,library(ordsets)).index255,10699 -index(ord_union,2,ordsets,library(ordsets)).index256,10746 -index(ord_union,2,ordsets,library(ordsets)).index256,10746 -index(ord_union,3,ordsets,library(ordsets)).index257,10791 -index(ord_union,3,ordsets,library(ordsets)).index257,10791 -index(ord_union,4,ordsets,library(ordsets)).index258,10836 -index(ord_union,4,ordsets,library(ordsets)).index258,10836 -index(ord_empty,1,ordsets,library(ordsets)).index259,10881 -index(ord_empty,1,ordsets,library(ordsets)).index259,10881 -index(ord_memberchk,2,ordsets,library(ordsets)).index260,10926 -index(ord_memberchk,2,ordsets,library(ordsets)).index260,10926 -index(pairs_keys_values,3,pairs,library(pairs)).index261,10975 -index(pairs_keys_values,3,pairs,library(pairs)).index261,10975 -index(pairs_values,2,pairs,library(pairs)).index262,11024 -index(pairs_values,2,pairs,library(pairs)).index262,11024 -index(pairs_keys,2,pairs,library(pairs)).index263,11068 -index(pairs_keys,2,pairs,library(pairs)).index263,11068 -index(group_pairs_by_key,2,pairs,library(pairs)).index264,11110 -index(group_pairs_by_key,2,pairs,library(pairs)).index264,11110 -index(transpose_pairs,2,pairs,library(pairs)).index265,11160 -index(transpose_pairs,2,pairs,library(pairs)).index265,11160 -index(map_list_to_pairs,3,pairs,library(pairs)).index266,11207 -index(map_list_to_pairs,3,pairs,library(pairs)).index266,11207 -index(xref_source,1,prolog_xref,library(prolog_xref)).index267,11256 -index(xref_source,1,prolog_xref,library(prolog_xref)).index267,11256 -index(xref_called,3,prolog_xref,library(prolog_xref)).index268,11311 -index(xref_called,3,prolog_xref,library(prolog_xref)).index268,11311 -index(xref_defined,3,prolog_xref,library(prolog_xref)).index269,11366 -index(xref_defined,3,prolog_xref,library(prolog_xref)).index269,11366 -index(xref_definition_line,2,prolog_xref,library(prolog_xref)).index270,11422 -index(xref_definition_line,2,prolog_xref,library(prolog_xref)).index270,11422 -index(xref_exported,2,prolog_xref,library(prolog_xref)).index271,11486 -index(xref_exported,2,prolog_xref,library(prolog_xref)).index271,11486 -index(xref_module,2,prolog_xref,library(prolog_xref)).index272,11543 -index(xref_module,2,prolog_xref,library(prolog_xref)).index272,11543 -index(xref_op,2,prolog_xref,library(prolog_xref)).index273,11598 -index(xref_op,2,prolog_xref,library(prolog_xref)).index273,11598 -index(xref_clean,1,prolog_xref,library(prolog_xref)).index274,11649 -index(xref_clean,1,prolog_xref,library(prolog_xref)).index274,11649 -index(xref_current_source,1,prolog_xref,library(prolog_xref)).index275,11703 -index(xref_current_source,1,prolog_xref,library(prolog_xref)).index275,11703 -index(xref_done,2,prolog_xref,library(prolog_xref)).index276,11766 -index(xref_done,2,prolog_xref,library(prolog_xref)).index276,11766 -index(xref_built_in,1,prolog_xref,library(prolog_xref)).index277,11819 -index(xref_built_in,1,prolog_xref,library(prolog_xref)).index277,11819 -index(xref_expand,2,prolog_xref,library(prolog_xref)).index278,11876 -index(xref_expand,2,prolog_xref,library(prolog_xref)).index278,11876 -index(xref_source_file,3,prolog_xref,library(prolog_xref)).index279,11931 -index(xref_source_file,3,prolog_xref,library(prolog_xref)).index279,11931 -index(xref_source_file,4,prolog_xref,library(prolog_xref)).index280,11991 -index(xref_source_file,4,prolog_xref,library(prolog_xref)).index280,11991 -index(xref_public_list,4,prolog_xref,library(prolog_xref)).index281,12051 -index(xref_public_list,4,prolog_xref,library(prolog_xref)).index281,12051 -index(xref_meta,2,prolog_xref,library(prolog_xref)).index282,12111 -index(xref_meta,2,prolog_xref,library(prolog_xref)).index282,12111 -index(xref_hook,1,prolog_xref,library(prolog_xref)).index283,12164 -index(xref_hook,1,prolog_xref,library(prolog_xref)).index283,12164 -index(xref_used_class,2,prolog_xref,library(prolog_xref)).index284,12217 -index(xref_used_class,2,prolog_xref,library(prolog_xref)).index284,12217 -index(xref_defined_class,3,prolog_xref,library(prolog_xref)).index285,12276 -index(xref_defined_class,3,prolog_xref,library(prolog_xref)).index285,12276 -index(set_test_options,1,plunit,library(plunit)).index286,12338 -index(set_test_options,1,plunit,library(plunit)).index286,12338 -index(begin_tests,1,plunit,library(plunit)).index287,12388 -index(begin_tests,1,plunit,library(plunit)).index287,12388 -index(begin_tests,2,plunit,library(plunit)).index288,12433 -index(begin_tests,2,plunit,library(plunit)).index288,12433 -index(end_tests,1,plunit,library(plunit)).index289,12478 -index(end_tests,1,plunit,library(plunit)).index289,12478 -index(run_tests,0,plunit,library(plunit)).index290,12521 -index(run_tests,0,plunit,library(plunit)).index290,12521 -index(run_tests,1,plunit,library(plunit)).index291,12564 -index(run_tests,1,plunit,library(plunit)).index291,12564 -index(load_test_files,1,plunit,library(plunit)).index292,12607 -index(load_test_files,1,plunit,library(plunit)).index292,12607 -index(running_tests,0,plunit,library(plunit)).index293,12656 -index(running_tests,0,plunit,library(plunit)).index293,12656 -index(test_report,1,plunit,library(plunit)).index294,12703 -index(test_report,1,plunit,library(plunit)).index294,12703 -index(make_queue,1,queues,library(queues)).index295,12748 -index(make_queue,1,queues,library(queues)).index295,12748 -index(join_queue,3,queues,library(queues)).index296,12792 -index(join_queue,3,queues,library(queues)).index296,12792 -index(list_join_queue,3,queues,library(queues)).index297,12836 -index(list_join_queue,3,queues,library(queues)).index297,12836 -index(jump_queue,3,queues,library(queues)).index298,12885 -index(jump_queue,3,queues,library(queues)).index298,12885 -index(list_jump_queue,3,queues,library(queues)).index299,12929 -index(list_jump_queue,3,queues,library(queues)).index299,12929 -index(head_queue,2,queues,library(queues)).index300,12978 -index(head_queue,2,queues,library(queues)).index300,12978 -index(serve_queue,3,queues,library(queues)).index301,13022 -index(serve_queue,3,queues,library(queues)).index301,13022 -index(length_queue,2,queues,library(queues)).index302,13067 -index(length_queue,2,queues,library(queues)).index302,13067 -index(empty_queue,1,queues,library(queues)).index303,13113 -index(empty_queue,1,queues,library(queues)).index303,13113 -index(list_to_queue,2,queues,library(queues)).index304,13158 -index(list_to_queue,2,queues,library(queues)).index304,13158 -index(queue_to_list,2,queues,library(queues)).index305,13205 -index(queue_to_list,2,queues,library(queues)).index305,13205 -index(random,1,random,library(random)).index306,13252 -index(random,1,random,library(random)).index306,13252 -index(random,3,random,library(random)).index307,13292 -index(random,3,random,library(random)).index307,13292 -index(randseq,3,random,library(random)).index308,13332 -index(randseq,3,random,library(random)).index308,13332 -index(randset,3,random,library(random)).index309,13373 -index(randset,3,random,library(random)).index309,13373 -index(getrand,1,random,library(random)).index310,13414 -index(getrand,1,random,library(random)).index310,13414 -index(setrand,1,random,library(random)).index311,13455 -index(setrand,1,random,library(random)).index311,13455 -index(rb_new,1,rbtrees,library(rbtrees)).index312,13496 -index(rb_new,1,rbtrees,library(rbtrees)).index312,13496 -index(rb_empty,1,rbtrees,library(rbtrees)).index313,13538 -index(rb_empty,1,rbtrees,library(rbtrees)).index313,13538 -index(rb_lookup,3,rbtrees,library(rbtrees)).index314,13582 -index(rb_lookup,3,rbtrees,library(rbtrees)).index314,13582 -index(rb_update,4,rbtrees,library(rbtrees)).index315,13627 -index(rb_update,4,rbtrees,library(rbtrees)).index315,13627 -index(rb_update,5,rbtrees,library(rbtrees)).index316,13672 -index(rb_update,5,rbtrees,library(rbtrees)).index316,13672 -index(rb_apply,4,rbtrees,library(rbtrees)).index317,13717 -index(rb_apply,4,rbtrees,library(rbtrees)).index317,13717 -index(rb_lookupall,3,rbtrees,library(rbtrees)).index318,13761 -index(rb_lookupall,3,rbtrees,library(rbtrees)).index318,13761 -index(rb_insert,4,rbtrees,library(rbtrees)).index319,13809 -index(rb_insert,4,rbtrees,library(rbtrees)).index319,13809 -index(rb_insert_new,4,rbtrees,library(rbtrees)).index320,13854 -index(rb_insert_new,4,rbtrees,library(rbtrees)).index320,13854 -index(rb_delete,3,rbtrees,library(rbtrees)).index321,13903 -index(rb_delete,3,rbtrees,library(rbtrees)).index321,13903 -index(rb_delete,4,rbtrees,library(rbtrees)).index322,13948 -index(rb_delete,4,rbtrees,library(rbtrees)).index322,13948 -index(rb_visit,2,rbtrees,library(rbtrees)).index323,13993 -index(rb_visit,2,rbtrees,library(rbtrees)).index323,13993 -index(rb_visit,3,rbtrees,library(rbtrees)).index324,14037 -index(rb_visit,3,rbtrees,library(rbtrees)).index324,14037 -index(rb_keys,2,rbtrees,library(rbtrees)).index325,14081 -index(rb_keys,2,rbtrees,library(rbtrees)).index325,14081 -index(rb_keys,3,rbtrees,library(rbtrees)).index326,14124 -index(rb_keys,3,rbtrees,library(rbtrees)).index326,14124 -index(rb_map,2,rbtrees,library(rbtrees)).index327,14167 -index(rb_map,2,rbtrees,library(rbtrees)).index327,14167 -index(rb_map,3,rbtrees,library(rbtrees)).index328,14209 -index(rb_map,3,rbtrees,library(rbtrees)).index328,14209 -index(rb_partial_map,4,rbtrees,library(rbtrees)).index329,14251 -index(rb_partial_map,4,rbtrees,library(rbtrees)).index329,14251 -index(rb_clone,3,rbtrees,library(rbtrees)).index330,14301 -index(rb_clone,3,rbtrees,library(rbtrees)).index330,14301 -index(rb_clone,4,rbtrees,library(rbtrees)).index331,14345 -index(rb_clone,4,rbtrees,library(rbtrees)).index331,14345 -index(rb_min,3,rbtrees,library(rbtrees)).index332,14389 -index(rb_min,3,rbtrees,library(rbtrees)).index332,14389 -index(rb_max,3,rbtrees,library(rbtrees)).index333,14431 -index(rb_max,3,rbtrees,library(rbtrees)).index333,14431 -index(rb_del_min,4,rbtrees,library(rbtrees)).index334,14473 -index(rb_del_min,4,rbtrees,library(rbtrees)).index334,14473 -index(rb_del_max,4,rbtrees,library(rbtrees)).index335,14519 -index(rb_del_max,4,rbtrees,library(rbtrees)).index335,14519 -index(rb_next,4,rbtrees,library(rbtrees)).index336,14565 -index(rb_next,4,rbtrees,library(rbtrees)).index336,14565 -index(rb_previous,4,rbtrees,library(rbtrees)).index337,14608 -index(rb_previous,4,rbtrees,library(rbtrees)).index337,14608 -index(list_to_rbtree,2,rbtrees,library(rbtrees)).index338,14655 -index(list_to_rbtree,2,rbtrees,library(rbtrees)).index338,14655 -index(ord_list_to_rbtree,2,rbtrees,library(rbtrees)).index339,14705 -index(ord_list_to_rbtree,2,rbtrees,library(rbtrees)).index339,14705 -index(is_rbtree,1,rbtrees,library(rbtrees)).index340,14759 -index(is_rbtree,1,rbtrees,library(rbtrees)).index340,14759 -index(rb_size,2,rbtrees,library(rbtrees)).index341,14804 -index(rb_size,2,rbtrees,library(rbtrees)).index341,14804 -index(rb_in,3,rbtrees,library(rbtrees)).index342,14847 -index(rb_in,3,rbtrees,library(rbtrees)).index342,14847 -index(read_line_to_codes,2,read_util,library(readutil)).index343,14888 -index(read_line_to_codes,2,read_util,library(readutil)).index343,14888 -index(read_line_to_codes,3,read_util,library(readutil)).index344,14945 -index(read_line_to_codes,3,read_util,library(readutil)).index344,14945 -index(read_stream_to_codes,2,read_util,library(readutil)).index345,15002 -index(read_stream_to_codes,2,read_util,library(readutil)).index345,15002 -index(read_stream_to_codes,3,read_util,library(readutil)).index346,15061 -index(read_stream_to_codes,3,read_util,library(readutil)).index346,15061 -index(read_file_to_codes,3,read_util,library(readutil)).index347,15120 -index(read_file_to_codes,3,read_util,library(readutil)).index347,15120 -index(read_file_to_terms,3,read_util,library(readutil)).index348,15177 -index(read_file_to_terms,3,read_util,library(readutil)).index348,15177 -index(regexp,3,regexp,library(regexp)).index349,15234 -index(regexp,3,regexp,library(regexp)).index349,15234 -index(regexp,4,regexp,library(regexp)).index350,15274 -index(regexp,4,regexp,library(regexp)).index350,15274 -index(load_foreign_library,1,shlib,library(shlib)).index351,15314 -index(load_foreign_library,1,shlib,library(shlib)).index351,15314 -index(load_foreign_library,2,shlib,library(shlib)).index352,15366 -index(load_foreign_library,2,shlib,library(shlib)).index352,15366 -index(unload_foreign_library,1,shlib,library(shlib)).index353,15418 -index(unload_foreign_library,1,shlib,library(shlib)).index353,15418 -index(unload_foreign_library,2,shlib,library(shlib)).index354,15472 -index(unload_foreign_library,2,shlib,library(shlib)).index354,15472 -index(current_foreign_library,2,shlib,library(shlib)).index355,15526 -index(current_foreign_library,2,shlib,library(shlib)).index355,15526 -index(reload_foreign_libraries,0,shlib,library(shlib)).index356,15581 -index(reload_foreign_libraries,0,shlib,library(shlib)).index356,15581 -index(use_foreign_library,1,shlib,library(shlib)).index357,15637 -index(use_foreign_library,1,shlib,library(shlib)).index357,15637 -index(use_foreign_library,2,shlib,library(shlib)).index358,15688 -index(use_foreign_library,2,shlib,library(shlib)).index358,15688 -index(datime,1,operating_system_support,library(system)).index359,15739 -index(datime,1,operating_system_support,library(system)).index359,15739 -index(delete_file,1,operating_system_support,library(system)).index360,15797 -index(delete_file,1,operating_system_support,library(system)).index360,15797 -index(delete_file,2,operating_system_support,library(system)).index361,15860 -index(delete_file,2,operating_system_support,library(system)).index361,15860 -index(directory_files,2,operating_system_support,library(system)).index362,15923 -index(directory_files,2,operating_system_support,library(system)).index362,15923 -index(environ,2,operating_system_support,library(system)).index363,15990 -index(environ,2,operating_system_support,library(system)).index363,15990 -index(exec,3,operating_system_support,library(system)).index364,16049 -index(exec,3,operating_system_support,library(system)).index364,16049 -index(file_exists,1,operating_system_support,library(system)).index365,16105 -index(file_exists,1,operating_system_support,library(system)).index365,16105 -index(file_exists,2,operating_system_support,library(system)).index366,16168 -index(file_exists,2,operating_system_support,library(system)).index366,16168 -index(file_property,2,operating_system_support,library(system)).index367,16231 -index(file_property,2,operating_system_support,library(system)).index367,16231 -index(host_id,1,operating_system_support,library(system)).index368,16296 -index(host_id,1,operating_system_support,library(system)).index368,16296 -index(host_name,1,operating_system_support,library(system)).index369,16355 -index(host_name,1,operating_system_support,library(system)).index369,16355 -index(pid,1,operating_system_support,library(system)).index370,16416 -index(pid,1,operating_system_support,library(system)).index370,16416 -index(kill,2,operating_system_support,library(system)).index371,16471 -index(kill,2,operating_system_support,library(system)).index371,16471 -index(mktemp,2,operating_system_support,library(system)).index372,16527 -index(mktemp,2,operating_system_support,library(system)).index372,16527 -index(make_directory,1,operating_system_support,library(system)).index373,16585 -index(make_directory,1,operating_system_support,library(system)).index373,16585 -index(popen,3,operating_system_support,library(system)).index374,16651 -index(popen,3,operating_system_support,library(system)).index374,16651 -index(rename_file,2,operating_system_support,library(system)).index375,16708 -index(rename_file,2,operating_system_support,library(system)).index375,16708 -index(shell,0,operating_system_support,library(system)).index376,16771 -index(shell,0,operating_system_support,library(system)).index376,16771 -index(shell,1,operating_system_support,library(system)).index377,16828 -index(shell,1,operating_system_support,library(system)).index377,16828 -index(shell,2,operating_system_support,library(system)).index378,16885 -index(shell,2,operating_system_support,library(system)).index378,16885 -index(sleep,1,operating_system_support,library(system)).index379,16942 -index(sleep,1,operating_system_support,library(system)).index379,16942 -index(system,0,operating_system_support,library(system)).index380,16999 -index(system,0,operating_system_support,library(system)).index380,16999 -index(system,1,operating_system_support,library(system)).index381,17057 -index(system,1,operating_system_support,library(system)).index381,17057 -index(system,2,operating_system_support,library(system)).index382,17115 -index(system,2,operating_system_support,library(system)).index382,17115 -index(mktime,2,operating_system_support,library(system)).index383,17173 -index(mktime,2,operating_system_support,library(system)).index383,17173 -index(tmpnam,1,operating_system_support,library(system)).index384,17231 -index(tmpnam,1,operating_system_support,library(system)).index384,17231 -index(tmp_file,2,operating_system_support,library(system)).index385,17289 -index(tmp_file,2,operating_system_support,library(system)).index385,17289 -index(tmpdir,1,operating_system_support,library(system)).index386,17349 -index(tmpdir,1,operating_system_support,library(system)).index386,17349 -index(wait,2,operating_system_support,library(system)).index387,17407 -index(wait,2,operating_system_support,library(system)).index387,17407 -index(working_directory,2,operating_system_support,library(system)).index388,17463 -index(working_directory,2,operating_system_support,library(system)).index388,17463 -index(term_hash,2,terms,library(terms)).index389,17532 -index(term_hash,2,terms,library(terms)).index389,17532 -index(term_hash,4,terms,library(terms)).index390,17573 -index(term_hash,4,terms,library(terms)).index390,17573 -index(instantiated_term_hash,4,terms,library(terms)).index391,17614 -index(instantiated_term_hash,4,terms,library(terms)).index391,17614 -index(variant,2,terms,library(terms)).index392,17668 -index(variant,2,terms,library(terms)).index392,17668 -index(unifiable,3,terms,library(terms)).index393,17707 -index(unifiable,3,terms,library(terms)).index393,17707 -index(subsumes,2,terms,library(terms)).index394,17748 -index(subsumes,2,terms,library(terms)).index394,17748 -index(subsumes_chk,2,terms,library(terms)).index395,17788 -index(subsumes_chk,2,terms,library(terms)).index395,17788 -index(cyclic_term,1,terms,library(terms)).index396,17832 -index(cyclic_term,1,terms,library(terms)).index396,17832 -index(variable_in_term,2,terms,library(terms)).index397,17875 -index(variable_in_term,2,terms,library(terms)).index397,17875 -index(variables_within_term,3,terms,library(terms)).index398,17923 -index(variables_within_term,3,terms,library(terms)).index398,17923 -index(new_variables_in_term,3,terms,library(terms)).index399,17976 -index(new_variables_in_term,3,terms,library(terms)).index399,17976 -index(time_out,3,timeout,library(timeout)).index400,18029 -index(time_out,3,timeout,library(timeout)).index400,18029 -index(get_label,3,trees,library(trees)).index401,18073 -index(get_label,3,trees,library(trees)).index401,18073 -index(list_to_tree,2,trees,library(trees)).index402,18114 -index(list_to_tree,2,trees,library(trees)).index402,18114 -index(map_tree,3,trees,library(trees)).index403,18158 -index(map_tree,3,trees,library(trees)).index403,18158 -index(put_label,4,trees,library(trees)).index404,18198 -index(put_label,4,trees,library(trees)).index404,18198 -index(tree_size,2,trees,library(trees)).index405,18239 -index(tree_size,2,trees,library(trees)).index405,18239 -index(tree_to_list,2,trees,library(trees)).index406,18280 -index(tree_to_list,2,trees,library(trees)).index406,18280 - -packages/python/swig/yap4py/prolog/itries.yap,0 - -packages/python/swig/yap4py/prolog/lam_mpi.yap,150 -mpi_msg_size(Term, Size) :-mpi_msg_size217,5140 -mpi_msg_size(Term, Size) :-mpi_msg_size217,5140 -mpi_msg_size(Term, Size) :-mpi_msg_size217,5140 - -packages/python/swig/yap4py/prolog/lambda.pl,225 -dif(X, B).dif101,3292 -dif(X, B).dif101,3292 -dif(X, B).dif106,3367 -dif(X, B).dif106,3367 -no_hat_call(MGoal) :-no_hat_call208,5606 -no_hat_call(MGoal) :-no_hat_call208,5606 -no_hat_call(MGoal) :-no_hat_call208,5606 - -packages/python/swig/yap4py/prolog/lineutils.yap,11800 -search_for(C,L) :-search_for69,1328 -search_for(C,L) :-search_for69,1328 -search_for(C,L) :-search_for69,1328 -search_for(C) --> [C], !.search_for72,1371 -search_for(C) --> [C], !.search_for72,1371 -search_for(C) --> [C], !.search_for72,1371 -search_for(C) --> [_],search_for73,1397 -search_for(C) --> [_],search_for73,1397 -search_for(C) --> [_],search_for73,1397 -scan_integer(N) -->scan_integer82,1653 -scan_integer(N) -->scan_integer82,1653 -scan_integer(N) -->scan_integer82,1653 -scan_integer(N) -->scan_integer86,1715 -scan_integer(N) -->scan_integer86,1715 -scan_integer(N) -->scan_integer86,1715 -integer(N) -->integer95,1968 -integer(N) -->integer95,1968 -integer(N) -->integer95,1968 -integer(N) -->integer99,2020 -integer(N) -->integer99,2020 -integer(N) -->integer99,2020 -scan_natural(N) -->scan_natural108,2256 -scan_natural(N) -->scan_natural108,2256 -scan_natural(N) -->scan_natural108,2256 -scan_natural(N0,N) -->scan_natural111,2298 -scan_natural(N0,N) -->scan_natural111,2298 -scan_natural(N0,N) -->scan_natural111,2298 -scan_natural(N,N) --> [].scan_natural116,2403 -scan_natural(N,N) --> [].scan_natural116,2403 -scan_natural(N,N) --> [].scan_natural116,2403 -natural(N) -->natural124,2629 -natural(N) -->natural124,2629 -natural(N) -->natural124,2629 -natural(N0,N) -->natural127,2661 -natural(N0,N) -->natural127,2661 -natural(N0,N) -->natural127,2661 -natural(N,N) --> [].natural132,2761 -natural(N,N) --> [].natural132,2761 -natural(N,N) --> [].natural132,2761 -skip_whitespace([0' |Blanks]) -->skip_whitespace138,2928 -skip_whitespace([0' |Blanks]) -->skip_whitespace138,2928 -skip_whitespace([0' |Blanks]) -->skip_whitespace138,2928 -skip_whitespace([0' |Blanks]) -->skip_whitespace141,2996 -skip_whitespace([0' |Blanks]) -->skip_whitespace141,2996 -skip_whitespace([0' |Blanks]) -->skip_whitespace141,2996 -skip_whitespace( [] ) -->skip_whitespace144,3064 -skip_whitespace( [] ) -->skip_whitespace144,3064 -skip_whitespace( [] ) -->skip_whitespace144,3064 -blank([0' |Blanks]) -->blank151,3234 -blank([0' |Blanks]) -->blank151,3234 -blank([0' |Blanks]) -->blank151,3234 -blank([0' |Blanks]) -->blank154,3282 -blank([0' |Blanks]) -->blank154,3282 -blank([0' |Blanks]) -->blank154,3282 -blank( [] ) -->blank157,3330 -blank( [] ) -->blank157,3330 -blank( [] ) -->blank157,3330 -split(String, Strings) :-split166,3498 -split(String, Strings) :-split166,3498 -split(String, Strings) :-split166,3498 -split(String, SplitCodes, Strings) :-split186,3869 -split(String, SplitCodes, Strings) :-split186,3869 -split(String, SplitCodes, Strings) :-split186,3869 -split_at_blank(SplitCodes, More) -->split_at_blank189,3958 -split_at_blank(SplitCodes, More) -->split_at_blank189,3958 -split_at_blank(SplitCodes, More) -->split_at_blank189,3958 -split_at_blank(SplitCodes, [[C|New]| More]) -->split_at_blank193,4067 -split_at_blank(SplitCodes, [[C|New]| More]) -->split_at_blank193,4067 -split_at_blank(SplitCodes, [[C|New]| More]) -->split_at_blank193,4067 -split_at_blank(_, []) --> [].split_at_blank196,4156 -split_at_blank(_, []) --> [].split_at_blank196,4156 -split_at_blank(_, []) --> [].split_at_blank196,4156 -split_(SplitCodes, [], More) -->split_198,4187 -split_(SplitCodes, [], More) -->split_198,4187 -split_(SplitCodes, [], More) -->split_198,4187 -split_(SplitCodes, [C|New], Set) -->split_202,4292 -split_(SplitCodes, [C|New], Set) -->split_202,4292 -split_(SplitCodes, [C|New], Set) -->split_202,4292 -split_(_, [], []) --> [].split_205,4369 -split_(_, [], []) --> [].split_205,4369 -split_(_, [], []) --> [].split_205,4369 -split(Text, SplitCodes, DoubleQs, SingleQs, Strings) :-split208,4397 -split(Text, SplitCodes, DoubleQs, SingleQs, Strings) :-split208,4397 -split(Text, SplitCodes, DoubleQs, SingleQs, Strings) :-split208,4397 -split_element(SplitCodes, DoubleQs, SingleQs, Strings) -->split_element211,4521 -split_element(SplitCodes, DoubleQs, SingleQs, Strings) -->split_element211,4521 -split_element(SplitCodes, DoubleQs, SingleQs, Strings) -->split_element211,4521 -split_element(_SplitCodes, _DoubleQs, _SingleQs, []) --> !.split_element215,4661 -split_element(_SplitCodes, _DoubleQs, _SingleQs, []) --> !.split_element215,4661 -split_element(_SplitCodes, _DoubleQs, _SingleQs, []) --> !.split_element215,4661 -split_element(_SplitCodes, _DoubleQs, _SingleQs, [[]]) --> [].split_element216,4722 -split_element(_SplitCodes, _DoubleQs, _SingleQs, [[]]) --> [].split_element216,4722 -split_element(_SplitCodes, _DoubleQs, _SingleQs, [[]]) --> [].split_element216,4722 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element218,4787 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element218,4787 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element218,4787 -split_element(SplitCodes, DoubleQs, SingleQs, [[]|Strings], C) -->split_element224,4990 -split_element(SplitCodes, DoubleQs, SingleQs, [[]|Strings], C) -->split_element224,4990 -split_element(SplitCodes, DoubleQs, SingleQs, [[]|Strings], C) -->split_element224,4990 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element228,5150 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element228,5150 -split_element(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_element228,5150 -split_element(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_element232,5305 -split_element(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_element232,5305 -split_element(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_element232,5305 -split_within(SplitCodes, DoubleQs, SingleQs, Strings) -->split_within235,5450 -split_within(SplitCodes, DoubleQs, SingleQs, Strings) -->split_within235,5450 -split_within(SplitCodes, DoubleQs, SingleQs, Strings) -->split_within235,5450 -split_within(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_within239,5582 -split_within(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_within239,5582 -split_within(SplitCodes, DoubleQs, SingleQs, Strings, C) -->split_within239,5582 -split_within(SplitCodes, DoubleQs, C-SingleQs, Strings, C) -->split_within245,5783 -split_within(SplitCodes, DoubleQs, C-SingleQs, Strings, C) -->split_within245,5783 -split_within(SplitCodes, DoubleQs, C-SingleQs, Strings, C) -->split_within245,5783 -split_within(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_within248,5909 -split_within(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_within248,5909 -split_within(SplitCodes, DoubleQs, SingleQs, [[C|String]|Strings], C) -->split_within248,5909 -split_unquoted(String, SplitCodes, Strings) :-split_unquoted269,6418 -split_unquoted(String, SplitCodes, Strings) :-split_unquoted269,6418 -split_unquoted(String, SplitCodes, Strings) :-split_unquoted269,6418 -split_unquoted_at_blank(SplitCodes, [[0'"|New]|More]) --> %0'"split_unquoted_at_blank272,6532 -split_unquoted_at_blank(SplitCodes, [[0'"|New]|More]) --> %0'"split_unquoted_at_blank272,6532 -split_unquoted_at_blank(SplitCodes, [[0'"|New]|More]) --> %0'"split_unquoted_at_blank272,6532 -split_unquoted_at_blank(SplitCodes, More) -->split_unquoted_at_blank276,6681 -split_unquoted_at_blank(SplitCodes, More) -->split_unquoted_at_blank276,6681 -split_unquoted_at_blank(SplitCodes, More) -->split_unquoted_at_blank276,6681 -split_unquoted_at_blank(SplitCodes, [[C|New]| More]) -->split_unquoted_at_blank280,6829 -split_unquoted_at_blank(SplitCodes, [[C|New]| More]) -->split_unquoted_at_blank280,6829 -split_unquoted_at_blank(SplitCodes, [[C|New]| More]) -->split_unquoted_at_blank280,6829 -split_unquoted_at_blank(_, []) --> [].split_unquoted_at_blank283,6949 -split_unquoted_at_blank(_, []) --> [].split_unquoted_at_blank283,6949 -split_unquoted_at_blank(_, []) --> [].split_unquoted_at_blank283,6949 -split_unquoted(SplitCodes, [], More) -->split_unquoted285,6989 -split_unquoted(SplitCodes, [], More) -->split_unquoted285,6989 -split_unquoted(SplitCodes, [], More) -->split_unquoted285,6989 -split_unquoted(SplitCodes, [C|New], Set) -->split_unquoted289,7132 -split_unquoted(SplitCodes, [C|New], Set) -->split_unquoted289,7132 -split_unquoted(SplitCodes, [C|New], Set) -->split_unquoted289,7132 -split_unquoted(_, [], []) --> [].split_unquoted292,7239 -split_unquoted(_, [], []) --> [].split_unquoted292,7239 -split_unquoted(_, [], []) --> [].split_unquoted292,7239 -split_quoted( [0'"], _More) --> %0'"split_quoted312,7667 -split_quoted( [0'"], _More) --> %0'"split_quoted312,7667 -split_quoted( [0'"], _More) --> %0'"split_quoted312,7667 -split_quoted( [0'\\ ,C|New], More) --> split_quoted314,7714 -split_quoted( [0'\\ ,C|New], More) --> split_quoted314,7714 -split_quoted( [0'\\ ,C|New], More) --> split_quoted314,7714 -split_quoted( [C|New], More) --> %0'"split_quoted319,7811 -split_quoted( [C|New], More) --> %0'"split_quoted319,7811 -split_quoted( [C|New], More) --> %0'"split_quoted319,7811 -fields(String, Strings) :-fields329,8041 -fields(String, Strings) :-fields329,8041 -fields(String, Strings) :-fields329,8041 -fields(String, FieldsCodes, Strings) :-fields345,8484 -fields(String, FieldsCodes, Strings) :-fields345,8484 -fields(String, FieldsCodes, Strings) :-fields345,8484 -dofields(FieldsCodes, [], New.More) -->dofields355,8655 -dofields(FieldsCodes, [], New.More) -->dofields355,8655 -dofields(FieldsCodes, [], New.More) -->dofields355,8655 -dofields(FieldsCodes, [C|New], Set) -->dofields359,8768 -dofields(FieldsCodes, [C|New], Set) -->dofields359,8768 -dofields(FieldsCodes, [C|New], Set) -->dofields359,8768 -dofields(_, [], []) --> [].dofields362,8851 -dofields(_, [], []) --> [].dofields362,8851 -dofields(_, [], []) --> [].dofields362,8851 -glue([], _, []).glue369,9027 -glue([], _, []).glue369,9027 -glue([A], _, A) :- !.glue370,9044 -glue([A], _, A) :- !.glue370,9044 -glue([A], _, A) :- !.glue370,9044 -glue([H|T], [B|_], Merged) :-glue371,9066 -glue([H|T], [B|_], Merged) :-glue371,9066 -glue([H|T], [B|_], Merged) :-glue371,9066 -copy_line(StreamInp, StreamOut) :-copy_line379,9258 -copy_line(StreamInp, StreamOut) :-copy_line379,9258 -copy_line(StreamInp, StreamOut) :-copy_line379,9258 -select(Sep, In, Out) :-select393,9769 -select(Sep, In, Out) :-select393,9769 -select(Sep, In, Out) :-select393,9769 -select :-select397,9863 -filter(StreamInp, StreamOut, Command) :-filter402,9902 -filter(StreamInp, StreamOut, Command) :-filter402,9902 -filter(StreamInp, StreamOut, Command) :-filter402,9902 -process(StreamInp, Command) :-process421,10259 -process(StreamInp, Command) :-process421,10259 -process(StreamInp, Command) :-process421,10259 -file_filter(Inp, Out, Command) :-file_filter450,10945 -file_filter(Inp, Out, Command) :-file_filter450,10945 -file_filter(Inp, Out, Command) :-file_filter450,10945 -file_filter_with_initialization(Inp, Out, Command, FormatString, Parameters) :-file_filter_with_initialization463,11393 -file_filter_with_initialization(Inp, Out, Command, FormatString, Parameters) :-file_filter_with_initialization463,11393 -file_filter_with_initialization(Inp, Out, Command, FormatString, Parameters) :-file_filter_with_initialization463,11393 -file_filter_with_start_end(Inp, Out, Command, StartGoal, EndGoal) :-file_filter_with_start_end479,11994 -file_filter_with_start_end(Inp, Out, Command, StartGoal, EndGoal) :-file_filter_with_start_end479,11994 -file_filter_with_start_end(Inp, Out, Command, StartGoal, EndGoal) :-file_filter_with_start_end479,11994 -file_select(Inp, Command) :-file_select504,12767 -file_select(Inp, Command) :-file_select504,12767 -file_select(Inp, Command) :-file_select504,12767 - -packages/python/swig/yap4py/prolog/listing.yap,198 -portray_clause(Stream, Term, M:Options) :-portray_clause49,1121 -portray_clause(Stream, Term, M:Options) :-portray_clause49,1121 -portray_clause(Stream, Term, M:Options) :-portray_clause49,1121 - -packages/python/swig/yap4py/prolog/lists.yap,14489 -append(ListOfLists, List) :-append200,4604 -append(ListOfLists, List) :-append200,4604 -append(ListOfLists, List) :-append200,4604 -append_([], []).append_204,4693 -append_([], []).append_204,4693 -append_([L], L).append_205,4710 -append_([L], L).append_205,4710 -append_([L1,L2], L) :-append_206,4727 -append_([L1,L2], L) :-append_206,4727 -append_([L1,L2], L) :-append_206,4727 -append_([L1,L2|[L3|LL]], L) :-append_208,4768 -append_([L1,L2|[L3|LL]], L) :-append_208,4768 -append_([L1,L2|[L3|LL]], L) :-append_208,4768 -d(_, [X], L).d216,4955 -d(_, [X], L).d216,4955 -last([H|List], Last) :-last219,4973 -last([H|List], Last) :-last219,4973 -last([H|List], Last) :-last219,4973 -last([], Last, Last).last222,5020 -last([], Last, Last).last222,5020 -last([H|List], _, Last) :-last223,5042 -last([H|List], _, Last) :-last223,5042 -last([H|List], _, Last) :-last223,5042 -nextto(X,Y, [X,Y|_]).nextto231,5308 -nextto(X,Y, [X,Y|_]).nextto231,5308 -nextto(X,Y, [_|List]) :-nextto232,5330 -nextto(X,Y, [_|List]) :-nextto232,5330 -nextto(X,Y, [_|List]) :-nextto232,5330 -nth0(V, In, Element) :- var(V), !,nth0243,5807 -nth0(V, In, Element) :- var(V), !,nth0243,5807 -nth0(V, In, Element) :- var(V), !,nth0243,5807 -nth0(0, [Head|_], Head) :- !.nth0245,5876 -nth0(0, [Head|_], Head) :- !.nth0245,5876 -nth0(0, [Head|_], Head) :- !.nth0245,5876 -nth0(N, [_|Tail], Elem) :-nth0246,5906 -nth0(N, [_|Tail], Elem) :-nth0246,5906 -nth0(N, [_|Tail], Elem) :-nth0246,5906 -find_nth0(0, [Head|_], Head) :- !.find_nth0250,5972 -find_nth0(0, [Head|_], Head) :- !.find_nth0250,5972 -find_nth0(0, [Head|_], Head) :- !.find_nth0250,5972 -find_nth0(N, [_|Tail], Elem) :-find_nth0251,6007 -find_nth0(N, [_|Tail], Elem) :-find_nth0251,6007 -find_nth0(N, [_|Tail], Elem) :-find_nth0251,6007 -nth1(V, In, Element) :- var(V), !,nth1256,6079 -nth1(V, In, Element) :- var(V), !,nth1256,6079 -nth1(V, In, Element) :- var(V), !,nth1256,6079 -nth1(1, [Head|_], Head) :- !.nth1258,6148 -nth1(1, [Head|_], Head) :- !.nth1258,6148 -nth1(1, [Head|_], Head) :- !.nth1258,6148 -nth1(N, [_|Tail], Elem) :-nth1259,6178 -nth1(N, [_|Tail], Elem) :-nth1259,6178 -nth1(N, [_|Tail], Elem) :-nth1259,6178 -nth(V, In, Element) :- var(V), !,nth264,6283 -nth(V, In, Element) :- var(V), !,nth264,6283 -nth(V, In, Element) :- var(V), !,nth264,6283 -nth(1, [Head|_], Head) :- !.nth266,6351 -nth(1, [Head|_], Head) :- !.nth266,6351 -nth(1, [Head|_], Head) :- !.nth266,6351 -nth(N, [_|Tail], Elem) :-nth267,6380 -nth(N, [_|Tail], Elem) :-nth267,6380 -nth(N, [_|Tail], Elem) :-nth267,6380 -find_nth(1, [Head|_], Head) :- !.find_nth272,6484 -find_nth(1, [Head|_], Head) :- !.find_nth272,6484 -find_nth(1, [Head|_], Head) :- !.find_nth272,6484 -find_nth(N, [_|Tail], Elem) :-find_nth273,6518 -find_nth(N, [_|Tail], Elem) :-find_nth273,6518 -find_nth(N, [_|Tail], Elem) :-find_nth273,6518 -generate_nth(I, I, [Head|_], Head).generate_nth278,6588 -generate_nth(I, I, [Head|_], Head).generate_nth278,6588 -generate_nth(I, IN, [_|List], El) :-generate_nth279,6624 -generate_nth(I, IN, [_|List], El) :-generate_nth279,6624 -generate_nth(I, IN, [_|List], El) :-generate_nth279,6624 -nth0(V, In, Element, Tail) :- var(V), !,nth0293,7201 -nth0(V, In, Element, Tail) :- var(V), !,nth0293,7201 -nth0(V, In, Element, Tail) :- var(V), !,nth0293,7201 -nth0(0, [Head|Tail], Head, Tail) :- !.nth0295,7282 -nth0(0, [Head|Tail], Head, Tail) :- !.nth0295,7282 -nth0(0, [Head|Tail], Head, Tail) :- !.nth0295,7282 -nth0(N, [Head|Tail], Elem, [Head|Rest]) :-nth0296,7321 -nth0(N, [Head|Tail], Elem, [Head|Rest]) :-nth0296,7321 -nth0(N, [Head|Tail], Elem, [Head|Rest]) :-nth0296,7321 -find_nth0(0, [Head|Tail], Head, Tail) :- !.find_nth0300,7404 -find_nth0(0, [Head|Tail], Head, Tail) :- !.find_nth0300,7404 -find_nth0(0, [Head|Tail], Head, Tail) :- !.find_nth0300,7404 -find_nth0(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth0301,7448 -find_nth0(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth0301,7448 -find_nth0(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth0301,7448 -nth1(V, In, Element, Tail) :- var(V), !,nth1307,7543 -nth1(V, In, Element, Tail) :- var(V), !,nth1307,7543 -nth1(V, In, Element, Tail) :- var(V), !,nth1307,7543 -nth1(1, [Head|Tail], Head, Tail) :- !.nth1309,7624 -nth1(1, [Head|Tail], Head, Tail) :- !.nth1309,7624 -nth1(1, [Head|Tail], Head, Tail) :- !.nth1309,7624 -nth1(N, [Head|Tail], Elem, [Head|Rest]) :-nth1310,7663 -nth1(N, [Head|Tail], Elem, [Head|Rest]) :-nth1310,7663 -nth1(N, [Head|Tail], Elem, [Head|Rest]) :-nth1310,7663 -nth(V, In, Element, Tail) :- var(V), !,nth314,7746 -nth(V, In, Element, Tail) :- var(V), !,nth314,7746 -nth(V, In, Element, Tail) :- var(V), !,nth314,7746 -nth(1, [Head|Tail], Head, Tail) :- !.nth316,7826 -nth(1, [Head|Tail], Head, Tail) :- !.nth316,7826 -nth(1, [Head|Tail], Head, Tail) :- !.nth316,7826 -nth(N, [Head|Tail], Elem, [Head|Rest]) :-nth317,7864 -nth(N, [Head|Tail], Elem, [Head|Rest]) :-nth317,7864 -nth(N, [Head|Tail], Elem, [Head|Rest]) :-nth317,7864 -find_nth(1, [Head|Tail], Head, Tail) :- !.find_nth321,7945 -find_nth(1, [Head|Tail], Head, Tail) :- !.find_nth321,7945 -find_nth(1, [Head|Tail], Head, Tail) :- !.find_nth321,7945 -find_nth(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth322,7988 -find_nth(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth322,7988 -find_nth(N, [Head|Tail], Elem, [Head|Rest]) :-find_nth322,7988 -generate_nth(I, I, [Head|Tail], Head, Tail).generate_nth327,8080 -generate_nth(I, I, [Head|Tail], Head, Tail).generate_nth327,8080 -generate_nth(I, IN, [E|List], El, [E|Tail]) :-generate_nth328,8125 -generate_nth(I, IN, [E|List], El, [E|Tail]) :-generate_nth328,8125 -generate_nth(I, IN, [E|List], El, [E|Tail]) :-generate_nth328,8125 -permutation([], []).permutation344,8851 -permutation([], []).permutation344,8851 -permutation(List, [First|Perm]) :-permutation345,8872 -permutation(List, [First|Perm]) :-permutation345,8872 -permutation(List, [First|Perm]) :-permutation345,8872 -prefix([], _).prefix352,9062 -prefix([], _).prefix352,9062 -prefix([Elem | Rest_of_part], [Elem | Rest_of_whole]) :-prefix353,9077 -prefix([Elem | Rest_of_part], [Elem | Rest_of_whole]) :-prefix353,9077 -prefix([Elem | Rest_of_part], [Elem | Rest_of_whole]) :-prefix353,9077 -remove_duplicates([], []).remove_duplicates360,9333 -remove_duplicates([], []).remove_duplicates360,9333 -remove_duplicates([Elem|L], [Elem|NL]) :-remove_duplicates361,9360 -remove_duplicates([Elem|L], [Elem|NL]) :-remove_duplicates361,9360 -remove_duplicates([Elem|L], [Elem|NL]) :-remove_duplicates361,9360 -reverse(List, Reversed) :-reverse369,9617 -reverse(List, Reversed) :-reverse369,9617 -reverse(List, Reversed) :-reverse369,9617 -reverse([], Reversed, Reversed).reverse372,9675 -reverse([], Reversed, Reversed).reverse372,9675 -reverse([Head|Tail], Sofar, Reversed) :-reverse373,9708 -reverse([Head|Tail], Sofar, Reversed) :-reverse373,9708 -reverse([Head|Tail], Sofar, Reversed) :-reverse373,9708 -same_length([], []).same_length385,10210 -same_length([], []).same_length385,10210 -same_length([_|List1], [_|List2]) :-same_length386,10231 -same_length([_|List1], [_|List2]) :-same_length386,10231 -same_length([_|List1], [_|List2]) :-same_length386,10231 -selectchk(Elem, List, Residue) :-selectchk396,10436 -selectchk(Elem, List, Residue) :-selectchk396,10436 -selectchk(Elem, List, Residue) :-selectchk396,10436 -selectchk(Elem, List, Rest) :-selectchk401,10539 -selectchk(Elem, List, Rest) :-selectchk401,10539 -selectchk(Elem, List, Rest) :-selectchk401,10539 -select(Element, [Element|Rest], Rest).select414,10840 -select(Element, [Element|Rest], Rest).select414,10840 -select(Element, [Head|Tail], [Head|Rest]) :-select415,10879 -select(Element, [Head|Tail], [Head|Rest]) :-select415,10879 -select(Element, [Head|Tail], [Head|Rest]) :-select415,10879 -sublist(L, L).sublist426,11207 -sublist(L, L).sublist426,11207 -sublist(Sub, [H|T]) :-sublist427,11222 -sublist(Sub, [H|T]) :-sublist427,11222 -sublist(Sub, [H|T]) :-sublist427,11222 -'$sublist1'(Sub, _, Sub).$sublist1430,11271 -'$sublist1'(Sub, _, Sub)./p,predicate,predicate definition430,11271 -'$sublist1'(Sub, _, Sub).$sublist1430,11271 -'$sublist1'([H|T], _, Sub) :-$sublist1431,11297 -'$sublist1'([H|T], _, Sub) :-$sublist1431,11297 -'$sublist1'([H|T], _, Sub) :-$sublist1431,11297 -'$sublist1'([H|T], X, [X|Sub]) :-$sublist1433,11352 -'$sublist1'([H|T], X, [X|Sub]) :-$sublist1433,11352 -'$sublist1'([H|T], X, [X|Sub]) :-$sublist1433,11352 -substitute(X, XList, Y, YList) :-substitute439,11569 -substitute(X, XList, Y, YList) :-substitute439,11569 -substitute(X, XList, Y, YList) :-substitute439,11569 -substitute2([], _, _, []).substitute2442,11638 -substitute2([], _, _, []).substitute2442,11638 -substitute2([X0|XList], X, Y, [Y|YList]) :-substitute2443,11665 -substitute2([X0|XList], X, Y, [Y|YList]) :-substitute2443,11665 -substitute2([X0|XList], X, Y, [Y|YList]) :-substitute2443,11665 -substitute2([X0|XList], X, Y, [X0|YList]) :-substitute2446,11756 -substitute2([X0|XList], X, Y, [X0|YList]) :-substitute2446,11756 -substitute2([X0|XList], X, Y, [X0|YList]) :-substitute2446,11756 -suffix(Suffix, Suffix).suffix453,11921 -suffix(Suffix, Suffix).suffix453,11921 -suffix(Suffix, [_|List]) :-suffix454,11945 -suffix(Suffix, [_|List]) :-suffix454,11945 -suffix(Suffix, [_|List]) :-suffix454,11945 -sumlist(Numbers, Total) :-sumlist466,12174 -sumlist(Numbers, Total) :-sumlist466,12174 -sumlist(Numbers, Total) :-sumlist466,12174 -sum_list(Numbers, SoFar, Total) :-sum_list473,12386 -sum_list(Numbers, SoFar, Total) :-sum_list473,12386 -sum_list(Numbers, SoFar, Total) :-sum_list473,12386 -sum_list(Numbers, Total) :-sum_list481,12573 -sum_list(Numbers, Total) :-sum_list481,12573 -sum_list(Numbers, Total) :-sum_list481,12573 -sumlist([], Total, Total).sumlist484,12631 -sumlist([], Total, Total).sumlist484,12631 -sumlist([Head|Tail], Sofar, Total) :-sumlist485,12658 -sumlist([Head|Tail], Sofar, Total) :-sumlist485,12658 -sumlist([Head|Tail], Sofar, Total) :-sumlist485,12658 -list_concat([], []).list_concat494,12871 -list_concat([], []).list_concat494,12871 -list_concat([H|T], L) :-list_concat495,12892 -list_concat([H|T], L) :-list_concat495,12892 -list_concat([H|T], L) :-list_concat495,12892 -list_concat([], L, L).list_concat499,12963 -list_concat([], L, L).list_concat499,12963 -list_concat([H|T], [H|Lf], Li) :-list_concat500,12986 -list_concat([H|T], [H|Lf], Li) :-list_concat500,12986 -list_concat([H|T], [H|Lf], Li) :-list_concat500,12986 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten(X,Y) :- flatten_list(X,Y,[]).flatten519,13263 -flatten_list(V) --> {var(V)}, !, [V].flatten_list521,13302 -flatten_list(V) --> {var(V)}, !, [V].flatten_list521,13302 -flatten_list(V) --> {var(V)}, !, [V].flatten_list521,13302 -flatten_list([]) --> !.flatten_list522,13340 -flatten_list([]) --> !.flatten_list522,13340 -flatten_list([]) --> !.flatten_list522,13340 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list([H|T]) --> !, flatten_list(H),flatten_list(T).flatten_list523,13364 -flatten_list(H) --> [H].flatten_list524,13424 -flatten_list(H) --> [H].flatten_list524,13424 -flatten_list(H) --> [H].flatten_list524,13424 -max_list([H|L],Max) :-max_list526,13450 -max_list([H|L],Max) :-max_list526,13450 -max_list([H|L],Max) :-max_list526,13450 -max_list([],Max,Max).max_list529,13494 -max_list([],Max,Max).max_list529,13494 -max_list([H|L],Max0,Max) :-max_list530,13516 -max_list([H|L],Max0,Max) :-max_list530,13516 -max_list([H|L],Max0,Max) :-max_list530,13516 -min_list([H|L],Max) :-min_list539,13616 -min_list([H|L],Max) :-min_list539,13616 -min_list([H|L],Max) :-min_list539,13616 -min_list([],Max,Max).min_list542,13660 -min_list([],Max,Max).min_list542,13660 -min_list([H|L],Max0,Max) :-min_list543,13682 -min_list([H|L],Max0,Max) :-min_list543,13682 -min_list([H|L],Max0,Max) :-min_list543,13682 -numlist(L, U, Ns) :-numlist559,13990 -numlist(L, U, Ns) :-numlist559,13990 -numlist(L, U, Ns) :-numlist559,13990 -numlist_(U, U, OUT) :- !, OUT = [U].numlist_565,14114 -numlist_(U, U, OUT) :- !, OUT = [U].numlist_565,14114 -numlist_(U, U, OUT) :- !, OUT = [U].numlist_565,14114 -numlist_(L, U, [L|Ns]) :-numlist_566,14151 -numlist_(L, U, [L|Ns]) :-numlist_566,14151 -numlist_(L, U, [L|Ns]) :-numlist_566,14151 -intersection([], _, []) :- !.intersection583,14525 -intersection([], _, []) :- !.intersection583,14525 -intersection([], _, []) :- !.intersection583,14525 -intersection([X|T], L, Intersect) :-intersection584,14555 -intersection([X|T], L, Intersect) :-intersection584,14555 -intersection([X|T], L, Intersect) :-intersection584,14555 -intersection([_|T], L, R) :-intersection588,14657 -intersection([_|T], L, R) :-intersection588,14657 -intersection([_|T], L, R) :-intersection588,14657 -subtract([], _, []) :- !.subtract599,14984 -subtract([], _, []) :- !.subtract599,14984 -subtract([], _, []) :- !.subtract599,14984 -subtract([E|T], D, R) :-subtract600,15010 -subtract([E|T], D, R) :-subtract600,15010 -subtract([E|T], D, R) :-subtract600,15010 -subtract([H|T], D, [H|R]) :-subtract603,15076 -subtract([H|T], D, [H|R]) :-subtract603,15076 -subtract([H|T], D, [H|R]) :-subtract603,15076 -list_to_set(List, Set) :-list_to_set614,15349 -list_to_set(List, Set) :-list_to_set614,15349 -list_to_set(List, Set) :-list_to_set614,15349 -list_to_set_([], R) :-list_to_set_618,15416 -list_to_set_([], R) :-list_to_set_618,15416 -list_to_set_([], R) :-list_to_set_618,15416 -list_to_set_([H|T], R) :-list_to_set_620,15455 -list_to_set_([H|T], R) :-list_to_set_620,15455 -list_to_set_([H|T], R) :-list_to_set_620,15455 -close_list([]) :- !.close_list624,15524 -close_list([]) :- !.close_list624,15524 -close_list([]) :- !.close_list624,15524 -close_list([_|T]) :-close_list625,15545 -close_list([_|T]) :-close_list625,15545 -close_list([_|T]) :-close_list625,15545 - -packages/python/swig/yap4py/prolog/log2md.yap,93 -open_log(F) :-open_log48,957 -open_log(F) :-open_log48,957 -open_log(F) :-open_log48,957 - -packages/python/swig/yap4py/prolog/mapargs.yap,8268 -mapargs(Pred, TermIn) :-mapargs53,1438 -mapargs(Pred, TermIn) :-mapargs53,1438 -mapargs(Pred, TermIn) :-mapargs53,1438 -mapargs_args(Pred, TermIn, I, N) :-mapargs_args57,1530 -mapargs_args(Pred, TermIn, I, N) :-mapargs_args57,1530 -mapargs_args(Pred, TermIn, I, N) :-mapargs_args57,1530 -mapargs(Pred, TermIn, TermOut) :-mapargs64,1705 -mapargs(Pred, TermIn, TermOut) :-mapargs64,1705 -mapargs(Pred, TermIn, TermOut) :-mapargs64,1705 -mapargs_args(Pred, TermIn, TermOut, I, N) :-mapargs_args69,1842 -mapargs_args(Pred, TermIn, TermOut, I, N) :-mapargs_args69,1842 -mapargs_args(Pred, TermIn, TermOut, I, N) :-mapargs_args69,1842 -mapargs(Pred, TermIn, TermOut1, TermOut2) :-mapargs77,2075 -mapargs(Pred, TermIn, TermOut1, TermOut2) :-mapargs77,2075 -mapargs(Pred, TermIn, TermOut1, TermOut2) :-mapargs77,2075 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, I, N) :-mapargs_args83,2264 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, I, N) :-mapargs_args83,2264 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, I, N) :-mapargs_args83,2264 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3) :-mapargs92,2565 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3) :-mapargs92,2565 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3) :-mapargs92,2565 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, I, N) :-mapargs_args98,2774 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, I, N) :-mapargs_args98,2774 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, I, N) :-mapargs_args98,2774 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4) :-mapargs108,3138 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4) :-mapargs108,3138 -mapargs(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4) :-mapargs108,3138 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4, I, N) :-mapargs_args116,3425 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4, I, N) :-mapargs_args116,3425 -mapargs_args(Pred, TermIn, TermOut1, TermOut2, TermOut3, TermOut4, I, N) :-mapargs_args116,3425 -sumargs(Pred, Term, A0, A1) :-sumargs127,3852 -sumargs(Pred, Term, A0, A1) :-sumargs127,3852 -sumargs(Pred, Term, A0, A1) :-sumargs127,3852 -sumargs_args(_, _, A0, A1, 0) :-sumargs_args131,3945 -sumargs_args(_, _, A0, A1, 0) :-sumargs_args131,3945 -sumargs_args(_, _, A0, A1, 0) :-sumargs_args131,3945 -sumargs_args(Pred, Term, A1, A3, N) :-sumargs_args134,3998 -sumargs_args(Pred, Term, A1, A3, N) :-sumargs_args134,3998 -sumargs_args(Pred, Term, A1, A3, N) :-sumargs_args134,3998 -foldargs(Goal, S, V0, V) :-foldargs141,4150 -foldargs(Goal, S, V0, V) :-foldargs141,4150 -foldargs(Goal, S, V0, V) :-foldargs141,4150 -foldargs_(Goal, S, V0, V, I, N) :-foldargs_145,4234 -foldargs_(Goal, S, V0, V, I, N) :-foldargs_145,4234 -foldargs_(Goal, S, V0, V, I, N) :-foldargs_145,4234 -foldargs(Goal, S, O1, V0, V) :-foldargs152,4398 -foldargs(Goal, S, O1, V0, V) :-foldargs152,4398 -foldargs(Goal, S, O1, V0, V) :-foldargs152,4398 -foldargs_(Goal, S, O1, V0, V, I, N) :-foldargs_157,4511 -foldargs_(Goal, S, O1, V0, V, I, N) :-foldargs_157,4511 -foldargs_(Goal, S, O1, V0, V, I, N) :-foldargs_157,4511 -foldargs(Goal, S, O1, O2, V0, V) :-foldargs165,4710 -foldargs(Goal, S, O1, O2, V0, V) :-foldargs165,4710 -foldargs(Goal, S, O1, O2, V0, V) :-foldargs165,4710 -foldargs_(Goal, S, O1, O2, V0, V, I, N) :-foldargs_171,4852 -foldargs_(Goal, S, O1, O2, V0, V, I, N) :-foldargs_171,4852 -foldargs_(Goal, S, O1, O2, V0, V, I, N) :-foldargs_171,4852 -foldargs(Goal, S, O1, O2, O3, V0, V) :-foldargs180,5083 -foldargs(Goal, S, O1, O2, O3, V0, V) :-foldargs180,5083 -foldargs(Goal, S, O1, O2, O3, V0, V) :-foldargs180,5083 -foldargs_(Goal, S, O1, O2, O3, V0, V, I, N) :-foldargs_187,5254 -foldargs_(Goal, S, O1, O2, O3, V0, V, I, N) :-foldargs_187,5254 -foldargs_(Goal, S, O1, O2, O3, V0, V, I, N) :-foldargs_187,5254 -goal_expansion(mapargs(Meta, In), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion198,5521 -goal_expansion(mapargs(Meta, In), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion198,5521 -goal_expansion(mapargs(Meta, In), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion198,5521 -goal_expansion(mapargs(Meta, In, Out), (functor(In, Name, Ar), functor(Out, Name, Ar), Mod:Goal)) :-goal_expansion218,6227 -goal_expansion(mapargs(Meta, In, Out), (functor(In, Name, Ar), functor(Out, Name, Ar), Mod:Goal)) :-goal_expansion218,6227 -goal_expansion(mapargs(Meta, In, Out), (functor(In, Name, Ar), functor(Out, Name, Ar), Mod:Goal)) :-goal_expansion218,6227 -goal_expansion(mapargs(Meta, In, Out1, Out2), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion238,6989 -goal_expansion(mapargs(Meta, In, Out1, Out2), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion238,6989 -goal_expansion(mapargs(Meta, In, Out1, Out2), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion238,6989 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion258,7836 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion258,7836 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion258,7836 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3, Out4), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), functor(Out4, Name, Ar), Mod:Goal)) :-goal_expansion278,8735 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3, Out4), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), functor(Out4, Name, Ar), Mod:Goal)) :-goal_expansion278,8735 -goal_expansion(mapargs(Meta, In, Out1, Out2, Out3, Out4), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out3, Name, Ar), functor(Out4, Name, Ar), Mod:Goal)) :-goal_expansion278,8735 -goal_expansion(sumargs(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion298,9711 -goal_expansion(sumargs(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion298,9711 -goal_expansion(sumargs(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion298,9711 -goal_expansion(foldargs(Meta, In, Acc0, AccF), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion306,9925 -goal_expansion(foldargs(Meta, In, Acc0, AccF), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion306,9925 -goal_expansion(foldargs(Meta, In, Acc0, AccF), (functor(In, _Name, Ar), Mod:Goal)) :-goal_expansion306,9925 -goal_expansion(foldargs(Meta, In, Out1, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), Mod:Goal)) :-goal_expansion326,10709 -goal_expansion(foldargs(Meta, In, Out1, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), Mod:Goal)) :-goal_expansion326,10709 -goal_expansion(foldargs(Meta, In, Out1, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), Mod:Goal)) :-goal_expansion326,10709 -goal_expansion(foldargs(Meta, In, Out1, Out2, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion346,11570 -goal_expansion(foldargs(Meta, In, Out1, Out2, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion346,11570 -goal_expansion(foldargs(Meta, In, Out1, Out2, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), Mod:Goal)) :-goal_expansion346,11570 -goal_expansion(foldargs(Meta, In, Out1, Out2, Out3, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion366,12509 -goal_expansion(foldargs(Meta, In, Out1, Out2, Out3, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion366,12509 -goal_expansion(foldargs(Meta, In, Out1, Out2, Out3, Acc0, AccF), (functor(In, Name, Ar), functor(Out1, Name, Ar), functor(Out2, Name, Ar), functor(Out3, Name, Ar), Mod:Goal)) :-goal_expansion366,12509 - -packages/python/swig/yap4py/prolog/maplist.yap,19870 -plus(X,Y,Z) :- Z is X + Y.plus73,1681 -plus(X,Y,Z) :- Z is X + Y.plus73,1681 -plus(X,Y,Z) :- Z is X + Y.plus73,1681 -plus_if_pos(X,Y,Z) :- Y > 0, Z is X + Y.plus_if_pos75,1709 -plus_if_pos(X,Y,Z) :- Y > 0, Z is X + Y.plus_if_pos75,1709 -plus_if_pos(X,Y,Z) :- Y > 0, Z is X + Y.plus_if_pos75,1709 -vars(X, Y, [X|Y]) :- var(X), !.vars77,1751 -vars(X, Y, [X|Y]) :- var(X), !.vars77,1751 -vars(X, Y, [X|Y]) :- var(X), !.vars77,1751 -vars(_, Y, Y).vars78,1783 -vars(_, Y, Y).vars78,1783 -trans(TermIn, TermOut) :-trans80,1799 -trans(TermIn, TermOut) :-trans80,1799 -trans(TermIn, TermOut) :-trans80,1799 -trans(X,X).trans84,1910 -trans(X,X).trans84,1910 -include(G,In,Out) :-include173,3825 -include(G,In,Out) :-include173,3825 -include(G,In,Out) :-include173,3825 -selectlist(_, [], []).selectlist179,4004 -selectlist(_, [], []).selectlist179,4004 -selectlist(Pred, [In|ListIn], ListOut) :-selectlist180,4027 -selectlist(Pred, [In|ListIn], ListOut) :-selectlist180,4027 -selectlist(Pred, [In|ListIn], ListOut) :-selectlist180,4027 -selectlists(_, [], [], [], []).selectlists192,4405 -selectlists(_, [], [], [], []).selectlists192,4405 -selectlists(Pred, [In|ListIn], [In1|ListIn1], ListOut, ListOut1) :-selectlists193,4437 -selectlists(Pred, [In|ListIn], [In1|ListIn1], ListOut, ListOut1) :-selectlists193,4437 -selectlists(Pred, [In|ListIn], [In1|ListIn1], ListOut, ListOut1) :-selectlists193,4437 -selectlist(_, [], [], []).selectlist208,4921 -selectlist(_, [], [], []).selectlist208,4921 -selectlist(Pred, [In|ListIn], [In1|ListIn1], ListOut) :-selectlist209,4948 -selectlist(Pred, [In|ListIn], [In1|ListIn1], ListOut) :-selectlist209,4948 -selectlist(Pred, [In|ListIn], [In1|ListIn1], ListOut) :-selectlist209,4948 -exclude(_, [], []).exclude221,5332 -exclude(_, [], []).exclude221,5332 -exclude(Pred, [In|ListIn], ListOut) :-exclude222,5352 -exclude(Pred, [In|ListIn], ListOut) :-exclude222,5352 -exclude(Pred, [In|ListIn], ListOut) :-exclude222,5352 -partition(_, [], [], []).partition235,5763 -partition(_, [], [], []).partition235,5763 -partition(Pred, [In|ListIn], List1, List2) :-partition236,5789 -partition(Pred, [In|ListIn], List1, List2) :-partition236,5789 -partition(Pred, [In|ListIn], List1, List2) :-partition236,5789 -partition(_, [], [], [], []).partition255,6309 -partition(_, [], [], [], []).partition255,6309 -partition(Pred, [In|ListIn], List1, List2, List3) :-partition256,6339 -partition(Pred, [In|ListIn], List1, List2, List3) :-partition256,6339 -partition(Pred, [In|ListIn], List1, List2, List3) :-partition256,6339 -checklist(_, []).checklist280,6906 -checklist(_, []).checklist280,6906 -checklist(Pred, [In|ListIn]) :-checklist281,6924 -checklist(Pred, [In|ListIn]) :-checklist281,6924 -checklist(Pred, [In|ListIn]) :-checklist281,6924 -maplist(_, []).maplist291,7118 -maplist(_, []).maplist291,7118 -maplist(Pred, [In|ListIn]) :-maplist292,7134 -maplist(Pred, [In|ListIn]) :-maplist292,7134 -maplist(Pred, [In|ListIn]) :-maplist292,7134 -maplist(_, [], []).maplist306,7607 -maplist(_, [], []).maplist306,7607 -maplist(Pred, [In|ListIn], [Out|ListOut]) :-maplist307,7627 -maplist(Pred, [In|ListIn], [Out|ListOut]) :-maplist307,7627 -maplist(Pred, [In|ListIn], [Out|ListOut]) :-maplist307,7627 -maplist(_, [], [], []).maplist317,7929 -maplist(_, [], [], []).maplist317,7929 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3]) :-maplist318,7953 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3]) :-maplist318,7953 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3]) :-maplist318,7953 -maplist(_, [], [], [], []).maplist328,8284 -maplist(_, [], [], [], []).maplist328,8284 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3], [A4|L4]) :-maplist329,8312 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3], [A4|L4]) :-maplist329,8312 -maplist(Pred, [A1|L1], [A2|L2], [A3|L3], [A4|L4]) :-maplist329,8312 -convlist(_, [], []).convlist348,9040 -convlist(_, [], []).convlist348,9040 -convlist(Pred, [Old|Olds], NewList) :-convlist349,9061 -convlist(Pred, [Old|Olds], NewList) :-convlist349,9061 -convlist(Pred, [Old|Olds], NewList) :-convlist349,9061 -convlist(Pred, [_|Olds], News) :-convlist354,9179 -convlist(Pred, [_|Olds], News) :-convlist354,9179 -convlist(Pred, [_|Olds], News) :-convlist354,9179 -convlist(_, [], []).convlist371,9847 -convlist(_, [], []).convlist371,9847 -convlist(Pred, [Old|Olds], NewList) :-convlist372,9868 -convlist(Pred, [Old|Olds], NewList) :-convlist372,9868 -convlist(Pred, [Old|Olds], NewList) :-convlist372,9868 -convlist(Pred, [_|Olds], News) :-convlist377,9986 -convlist(Pred, [_|Olds], News) :-convlist377,9986 -convlist(Pred, [_|Olds], News) :-convlist377,9986 -mapnodes(Pred, TermIn, TermOut) :-mapnodes386,10230 -mapnodes(Pred, TermIn, TermOut) :-mapnodes386,10230 -mapnodes(Pred, TermIn, TermOut) :-mapnodes386,10230 -mapnodes(Pred, TermIn, TermOut) :-mapnodes389,10336 -mapnodes(Pred, TermIn, TermOut) :-mapnodes389,10336 -mapnodes(Pred, TermIn, TermOut) :-mapnodes389,10336 -mapnodes_list(_, [], []).mapnodes_list395,10504 -mapnodes_list(_, [], []).mapnodes_list395,10504 -mapnodes_list(Pred, [TermIn|ArgsIn], [TermOut|ArgsOut]) :-mapnodes_list396,10530 -mapnodes_list(Pred, [TermIn|ArgsIn], [TermOut|ArgsOut]) :-mapnodes_list396,10530 -mapnodes_list(Pred, [TermIn|ArgsIn], [TermOut|ArgsOut]) :-mapnodes_list396,10530 -checknodes(Pred, Term) :-checknodes406,10842 -checknodes(Pred, Term) :-checknodes406,10842 -checknodes(Pred, Term) :-checknodes406,10842 -checknodes(Pred, Term) :-checknodes409,10924 -checknodes(Pred, Term) :-checknodes409,10924 -checknodes(Pred, Term) :-checknodes409,10924 -checknodes_list(_, []).checknodes_list414,11029 -checknodes_list(_, []).checknodes_list414,11029 -checknodes_list(Pred, [Term|Args]) :-checknodes_list415,11053 -checknodes_list(Pred, [Term|Args]) :-checknodes_list415,11053 -checknodes_list(Pred, [Term|Args]) :-checknodes_list415,11053 -sumlist(_, [], Acc, Acc).sumlist425,11317 -sumlist(_, [], Acc, Acc).sumlist425,11317 -sumlist(Pred, [H|T], AccIn, AccOut) :-sumlist426,11343 -sumlist(Pred, [H|T], AccIn, AccOut) :-sumlist426,11343 -sumlist(Pred, [H|T], AccIn, AccOut) :-sumlist426,11343 -sumnodes(Pred, Term, A0, A2) :-sumnodes437,11665 -sumnodes(Pred, Term, A0, A2) :-sumnodes437,11665 -sumnodes(Pred, Term, A0, A2) :-sumnodes437,11665 -sumnodes_body(Pred, Term, A1, A3, N0, Ar) :-sumnodes_body446,11862 -sumnodes_body(Pred, Term, A1, A3, N0, Ar) :-sumnodes_body446,11862 -sumnodes_body(Pred, Term, A1, A3, N0, Ar) :-sumnodes_body446,11862 -foldl(Goal, List, V0, V) :-foldl469,12357 -foldl(Goal, List, V0, V) :-foldl469,12357 -foldl(Goal, List, V0, V) :-foldl469,12357 -foldl_([], _, V, V).foldl_472,12414 -foldl_([], _, V, V).foldl_472,12414 -foldl_([H|T], Goal, V0, V) :-foldl_473,12435 -foldl_([H|T], Goal, V0, V) :-foldl_473,12435 -foldl_([H|T], Goal, V0, V) :-foldl_473,12435 -foldl(Goal, List1, List2, V0, V) :-foldl492,12865 -foldl(Goal, List1, List2, V0, V) :-foldl492,12865 -foldl(Goal, List1, List2, V0, V) :-foldl492,12865 -foldl_([], [], _, V, V).foldl_495,12938 -foldl_([], [], _, V, V).foldl_495,12938 -foldl_([H1|T1], [H2|T2], Goal, V0, V) :-foldl_496,12963 -foldl_([H1|T1], [H2|T2], Goal, V0, V) :-foldl_496,12963 -foldl_([H1|T1], [H2|T2], Goal, V0, V) :-foldl_496,12963 -foldl(Goal, List1, List2, List3, V0, V) :-foldl503,13072 -foldl(Goal, List1, List2, List3, V0, V) :-foldl503,13072 -foldl(Goal, List1, List2, List3, V0, V) :-foldl503,13072 -foldl_([], [], [], _, V, V).foldl_506,13159 -foldl_([], [], [], _, V, V).foldl_506,13159 -foldl_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V) :-foldl_507,13188 -foldl_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V) :-foldl_507,13188 -foldl_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V) :-foldl_507,13188 -foldl(Goal, List1, List2, List3, List4, V0, V) :-foldl515,13315 -foldl(Goal, List1, List2, List3, List4, V0, V) :-foldl515,13315 -foldl(Goal, List1, List2, List3, List4, V0, V) :-foldl515,13315 -foldl_([], [], [], [], _, V, V).foldl_518,13416 -foldl_([], [], [], [], _, V, V).foldl_518,13416 -foldl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V0, V) :-foldl_519,13449 -foldl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V0, V) :-foldl_519,13449 -foldl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V0, V) :-foldl_519,13449 -foldl2(Goal, List, V0, V, W0, W) :-foldl2531,13736 -foldl2(Goal, List, V0, V, W0, W) :-foldl2531,13736 -foldl2(Goal, List, V0, V, W0, W) :-foldl2531,13736 -foldl2_([], _, V, V, W, W).foldl2_534,13809 -foldl2_([], _, V, V, W, W).foldl2_534,13809 -foldl2_([H|T], Goal, V0, V, W0, W) :-foldl2_535,13837 -foldl2_([H|T], Goal, V0, V, W0, W) :-foldl2_535,13837 -foldl2_([H|T], Goal, V0, V, W0, W) :-foldl2_535,13837 -foldl2(Goal, List1, List2, V0, V, W0, W) :-foldl2545,14118 -foldl2(Goal, List1, List2, V0, V, W0, W) :-foldl2545,14118 -foldl2(Goal, List1, List2, V0, V, W0, W) :-foldl2545,14118 -foldl2_([], [], _Goal, V, V, W, W).foldl2_548,14207 -foldl2_([], [], _Goal, V, V, W, W).foldl2_548,14207 -foldl2_([H1|T1], [H2|T2], Goal, V0, V, W0, W) :-foldl2_549,14243 -foldl2_([H1|T1], [H2|T2], Goal, V0, V, W0, W) :-foldl2_549,14243 -foldl2_([H1|T1], [H2|T2], Goal, V0, V, W0, W) :-foldl2_549,14243 -foldl2(Goal, List1, List2, List3, V0, V, W0, W) :-foldl2560,14567 -foldl2(Goal, List1, List2, List3, V0, V, W0, W) :-foldl2560,14567 -foldl2(Goal, List1, List2, List3, V0, V, W0, W) :-foldl2560,14567 -foldl2_([], [], [], _Goal, V, V, W, W).foldl2_563,14670 -foldl2_([], [], [], _Goal, V, V, W, W).foldl2_563,14670 -foldl2_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V, W0, W) :-foldl2_564,14710 -foldl2_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V, W0, W) :-foldl2_564,14710 -foldl2_([H1|T1], [H2|T2], [H3|T3], Goal, V0, V, W0, W) :-foldl2_564,14710 -foldl3(Goal, List, V0, V, W0, W, X0, X) :-foldl3576,15038 -foldl3(Goal, List, V0, V, W0, W, X0, X) :-foldl3576,15038 -foldl3(Goal, List, V0, V, W0, W, X0, X) :-foldl3576,15038 -foldl3_([], _, V, V, W, W, X, X).foldl3_579,15125 -foldl3_([], _, V, V, W, W, X, X).foldl3_579,15125 -foldl3_([H|T], Goal, V0, V, W0, W, X0, X) :-foldl3_580,15159 -foldl3_([H|T], Goal, V0, V, W0, W, X0, X) :-foldl3_580,15159 -foldl3_([H|T], Goal, V0, V, W0, W, X0, X) :-foldl3_580,15159 -foldl4(Goal, List, V0, V, W0, W, X0, X, Y0, Y) :-foldl4591,15490 -foldl4(Goal, List, V0, V, W0, W, X0, X, Y0, Y) :-foldl4591,15490 -foldl4(Goal, List, V0, V, W0, W, X0, X, Y0, Y) :-foldl4591,15490 -foldl4_([], _, V, V, W, W, X, X, Y, Y).foldl4_594,15591 -foldl4_([], _, V, V, W, W, X, X, Y, Y).foldl4_594,15591 -foldl4_([H|T], Goal, V0, V, W0, W, X0, X, Y0, Y) :-foldl4_595,15631 -foldl4_([H|T], Goal, V0, V, W0, W, X0, X, Y0, Y) :-foldl4_595,15631 -foldl4_([H|T], Goal, V0, V, W0, W, X0, X, Y0, Y) :-foldl4_595,15631 -scanl(Goal, List, V0, [V0|Values]) :-scanl634,16722 -scanl(Goal, List, V0, [V0|Values]) :-scanl634,16722 -scanl(Goal, List, V0, [V0|Values]) :-scanl634,16722 -scanl_([], _, _, []).scanl_637,16794 -scanl_([], _, _, []).scanl_637,16794 -scanl_([H|T], Goal, V, [VH|VT]) :-scanl_638,16816 -scanl_([H|T], Goal, V, [VH|VT]) :-scanl_638,16816 -scanl_([H|T], Goal, V, [VH|VT]) :-scanl_638,16816 -scanl(Goal, List1, List2, V0, [V0|Values]) :-scanl647,16986 -scanl(Goal, List1, List2, V0, [V0|Values]) :-scanl647,16986 -scanl(Goal, List1, List2, V0, [V0|Values]) :-scanl647,16986 -scanl_([], [], _, _, []).scanl_650,17074 -scanl_([], [], _, _, []).scanl_650,17074 -scanl_([H1|T1], [H2|T2], Goal, V, [VH|VT]) :-scanl_651,17100 -scanl_([H1|T1], [H2|T2], Goal, V, [VH|VT]) :-scanl_651,17100 -scanl_([H1|T1], [H2|T2], Goal, V, [VH|VT]) :-scanl_651,17100 -scanl(Goal, List1, List2, List3, V0, [V0|Values]) :-scanl660,17300 -scanl(Goal, List1, List2, List3, V0, [V0|Values]) :-scanl660,17300 -scanl(Goal, List1, List2, List3, V0, [V0|Values]) :-scanl660,17300 -scanl_([], [], [], _, _, []).scanl_663,17402 -scanl_([], [], [], _, _, []).scanl_663,17402 -scanl_([H1|T1], [H2|T2], [H3|T3], Goal, V, [VH|VT]) :-scanl_664,17432 -scanl_([H1|T1], [H2|T2], [H3|T3], Goal, V, [VH|VT]) :-scanl_664,17432 -scanl_([H1|T1], [H2|T2], [H3|T3], Goal, V, [VH|VT]) :-scanl_664,17432 -scanl(Goal, List1, List2, List3, List4, V0, [V0|Values]) :-scanl673,17663 -scanl(Goal, List1, List2, List3, List4, V0, [V0|Values]) :-scanl673,17663 -scanl(Goal, List1, List2, List3, List4, V0, [V0|Values]) :-scanl673,17663 -scanl_([], [], [], [], _, _, []).scanl_676,17779 -scanl_([], [], [], [], _, _, []).scanl_676,17779 -scanl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V, [VH|VT]) :-scanl_677,17813 -scanl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V, [VH|VT]) :-scanl_677,17813 -scanl_([H1|T1], [H2|T2], [H3|T3], [H4|T4], Goal, V, [VH|VT]) :-scanl_677,17813 -goal_expansion(checklist(Meta, List), Mod:Goal) :-goal_expansion682,17954 -goal_expansion(checklist(Meta, List), Mod:Goal) :-goal_expansion682,17954 -goal_expansion(checklist(Meta, List), Mod:Goal) :-goal_expansion682,17954 -goal_expansion(maplist(Meta, List), Mod:Goal) :-goal_expansion703,18597 -goal_expansion(maplist(Meta, List), Mod:Goal) :-goal_expansion703,18597 -goal_expansion(maplist(Meta, List), Mod:Goal) :-goal_expansion703,18597 -goal_expansion(maplist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion724,19236 -goal_expansion(maplist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion724,19236 -goal_expansion(maplist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion724,19236 -goal_expansion(maplist(Meta, L1, L2, L3), Mod:Goal) :-goal_expansion745,19924 -goal_expansion(maplist(Meta, L1, L2, L3), Mod:Goal) :-goal_expansion745,19924 -goal_expansion(maplist(Meta, L1, L2, L3), Mod:Goal) :-goal_expansion745,19924 -goal_expansion(maplist(Meta, L1, L2, L3, L4), Mod:Goal) :-goal_expansion766,20621 -goal_expansion(maplist(Meta, L1, L2, L3, L4), Mod:Goal) :-goal_expansion766,20621 -goal_expansion(maplist(Meta, L1, L2, L3, L4), Mod:Goal) :-goal_expansion766,20621 -goal_expansion(selectlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion787,21349 -goal_expansion(selectlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion787,21349 -goal_expansion(selectlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion787,21349 -goal_expansion(selectlist(Meta, ListIn, ListIn1, ListOut), Mod:Goal) :-goal_expansion810,22085 -goal_expansion(selectlist(Meta, ListIn, ListIn1, ListOut), Mod:Goal) :-goal_expansion810,22085 -goal_expansion(selectlist(Meta, ListIn, ListIn1, ListOut), Mod:Goal) :-goal_expansion810,22085 -goal_expansion(selectlists(Meta, ListIn, ListIn1, ListOut, ListOut1), Mod:Goal) :-goal_expansion833,22866 -goal_expansion(selectlists(Meta, ListIn, ListIn1, ListOut, ListOut1), Mod:Goal) :-goal_expansion833,22866 -goal_expansion(selectlists(Meta, ListIn, ListIn1, ListOut, ListOut1), Mod:Goal) :-goal_expansion833,22866 -goal_expansion(include(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion857,23747 -goal_expansion(include(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion857,23747 -goal_expansion(include(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion857,23747 -goal_expansion(exclude(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion880,24477 -goal_expansion(exclude(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion880,24477 -goal_expansion(exclude(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion880,24477 -goal_expansion(partition(Meta, ListIn, List1, List2), Mod:Goal) :-goal_expansion903,25207 -goal_expansion(partition(Meta, ListIn, List1, List2), Mod:Goal) :-goal_expansion903,25207 -goal_expansion(partition(Meta, ListIn, List1, List2), Mod:Goal) :-goal_expansion903,25207 -goal_expansion(partition(Meta, ListIn, List1, List2, List3), Mod:Goal) :-goal_expansion926,26013 -goal_expansion(partition(Meta, ListIn, List1, List2, List3), Mod:Goal) :-goal_expansion926,26013 -goal_expansion(partition(Meta, ListIn, List1, List2, List3), Mod:Goal) :-goal_expansion926,26013 -goal_expansion(convlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion966,27156 -goal_expansion(convlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion966,27156 -goal_expansion(convlist(Meta, ListIn, ListOut), Mod:Goal) :-goal_expansion966,27156 -goal_expansion(convlist(Meta, ListIn, ListExtra, ListOut), Mod:Goal) :-goal_expansion989,27894 -goal_expansion(convlist(Meta, ListIn, ListExtra, ListOut), Mod:Goal) :-goal_expansion989,27894 -goal_expansion(convlist(Meta, ListIn, ListExtra, ListOut), Mod:Goal) :-goal_expansion989,27894 -goal_expansion(sumlist(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1012,28689 -goal_expansion(sumlist(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1012,28689 -goal_expansion(sumlist(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1012,28689 -goal_expansion(foldl(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1033,29404 -goal_expansion(foldl(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1033,29404 -goal_expansion(foldl(Meta, List, AccIn, AccOut), Mod:Goal) :-goal_expansion1033,29404 -goal_expansion(foldl(Meta, List1, List2, AccIn, AccOut), Mod:Goal) :-goal_expansion1054,30115 -goal_expansion(foldl(Meta, List1, List2, AccIn, AccOut), Mod:Goal) :-goal_expansion1054,30115 -goal_expansion(foldl(Meta, List1, List2, AccIn, AccOut), Mod:Goal) :-goal_expansion1054,30115 -goal_expansion(foldl(Meta, List1, List2, List3, AccIn, AccOut), Mod:Goal) :-goal_expansion1075,30865 -goal_expansion(foldl(Meta, List1, List2, List3, AccIn, AccOut), Mod:Goal) :-goal_expansion1075,30865 -goal_expansion(foldl(Meta, List1, List2, List3, AccIn, AccOut), Mod:Goal) :-goal_expansion1075,30865 -goal_expansion(foldl2(Meta, List, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1096,31652 -goal_expansion(foldl2(Meta, List, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1096,31652 -goal_expansion(foldl2(Meta, List, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1096,31652 -goal_expansion(foldl2(Meta, List1, List2, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1117,32409 -goal_expansion(foldl2(Meta, List1, List2, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1117,32409 -goal_expansion(foldl2(Meta, List1, List2, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1117,32409 -goal_expansion(foldl2(Meta, List1, List2, List3, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1138,33213 -goal_expansion(foldl2(Meta, List1, List2, List3, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1138,33213 -goal_expansion(foldl2(Meta, List1, List2, List3, AccIn, AccOut, W0, W), Mod:Goal) :-goal_expansion1138,33213 -goal_expansion(foldl3(Meta, List, AccIn, AccOut, W0, W, X0, X), Mod:Goal) :-goal_expansion1159,34058 -goal_expansion(foldl3(Meta, List, AccIn, AccOut, W0, W, X0, X), Mod:Goal) :-goal_expansion1159,34058 -goal_expansion(foldl3(Meta, List, AccIn, AccOut, W0, W, X0, X), Mod:Goal) :-goal_expansion1159,34058 -goal_expansion(foldl4(Meta, List, AccIn, AccOut, W0, W, X0, X, Y0, Y), Mod:Goal) :-goal_expansion1180,34859 -goal_expansion(foldl4(Meta, List, AccIn, AccOut, W0, W, X0, X, Y0, Y), Mod:Goal) :-goal_expansion1180,34859 -goal_expansion(foldl4(Meta, List, AccIn, AccOut, W0, W, X0, X, Y0, Y), Mod:Goal) :-goal_expansion1180,34859 -goal_expansion(mapnodes(Meta, InTerm, OutTerm), Mod:Goal) :-goal_expansion1201,35704 -goal_expansion(mapnodes(Meta, InTerm, OutTerm), Mod:Goal) :-goal_expansion1201,35704 -goal_expansion(mapnodes(Meta, InTerm, OutTerm), Mod:Goal) :-goal_expansion1201,35704 -goal_expansion(checknodes(Meta, Term), Mod:Goal) :-goal_expansion1233,36619 -goal_expansion(checknodes(Meta, Term), Mod:Goal) :-goal_expansion1233,36619 -goal_expansion(checknodes(Meta, Term), Mod:Goal) :-goal_expansion1233,36619 -goal_expansion(sumnodes(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion1263,37425 -goal_expansion(sumnodes(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion1263,37425 -goal_expansion(sumnodes(Meta, Term, AccIn, AccOut), Mod:Goal) :-goal_expansion1263,37425 - -packages/python/swig/yap4py/prolog/maputils.yap,2591 -:- dynamic number_of_expansions/1.dynamic30,475 -:- dynamic number_of_expansions/1.dynamic30,475 -number_of_expansions(0).number_of_expansions32,511 -number_of_expansions(0).number_of_expansions32,511 -compile_aux([Clause|Clauses], Module) :-compile_aux37,589 -compile_aux([Clause|Clauses], Module) :-compile_aux37,589 -compile_aux([Clause|Clauses], Module) :-compile_aux37,589 -compile_term([], _).compile_term52,959 -compile_term([], _).compile_term52,959 -compile_term([Clause|Clauses], Module) :-compile_term53,980 -compile_term([Clause|Clauses], Module) :-compile_term53,980 -compile_term([Clause|Clauses], Module) :-compile_term53,980 -append_args(Term, Args, NewTerm) :-append_args57,1086 -append_args(Term, Args, NewTerm) :-append_args57,1086 -append_args(Term, Args, NewTerm) :-append_args57,1086 -aux_preds(Meta, _, _, _, _) :-aux_preds62,1213 -aux_preds(Meta, _, _, _, _) :-aux_preds62,1213 -aux_preds(Meta, _, _, _, _) :-aux_preds62,1213 -aux_preds(_:Meta, MetaVars, Pred, PredVars, Proto) :- !,aux_preds65,1266 -aux_preds(_:Meta, MetaVars, Pred, PredVars, Proto) :- !,aux_preds65,1266 -aux_preds(_:Meta, MetaVars, Pred, PredVars, Proto) :- !,aux_preds65,1266 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto) :-aux_preds67,1374 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto) :-aux_preds67,1374 -aux_preds(Meta, MetaVars, Pred, PredVars, Proto) :-aux_preds67,1374 -aux_args([], [], [], [], []).aux_args73,1555 -aux_args([], [], [], [], []).aux_args73,1555 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args74,1585 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args74,1585 -aux_args([Arg|Args], MVars, [Arg|PArgs], PVars, [Arg|ProtoArgs]) :-aux_args74,1585 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args77,1719 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args77,1719 -aux_args([Arg|Args], [Arg|MVars], [PVar|PArgs], [PVar|PVars], ['_'|ProtoArgs]) :-aux_args77,1719 -pred_name(Macro, Arity, _ , Name) :-pred_name80,1851 -pred_name(Macro, Arity, _ , Name) :-pred_name80,1851 -pred_name(Macro, Arity, _ , Name) :-pred_name80,1851 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2179 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2179 -pred_name(Macro, Arity, _ , Name) :-pred_name87,2179 -transformation_id(Id) :-transformation_id91,2313 -transformation_id(Id) :-transformation_id91,2313 -transformation_id(Id) :-transformation_id91,2313 -goal_expansion_allowed :-goal_expansion_allowed100,2506 - -packages/python/swig/yap4py/prolog/matlab.yap,4451 -tell_warning :-tell_warning232,5475 -matlab_eval_sequence(S) :-matlab_eval_sequence237,5645 -matlab_eval_sequence(S) :-matlab_eval_sequence237,5645 -matlab_eval_sequence(S) :-matlab_eval_sequence237,5645 -matlab_eval_sequence(S,O) :-matlab_eval_sequence241,5720 -matlab_eval_sequence(S,O) :-matlab_eval_sequence241,5720 -matlab_eval_sequence(S,O) :-matlab_eval_sequence241,5720 -matlab_vector( Vec, L) :-matlab_vector245,5799 -matlab_vector( Vec, L) :-matlab_vector245,5799 -matlab_vector( Vec, L) :-matlab_vector245,5799 -matlab_sequence(Min,Max,L) :-matlab_sequence249,5872 -matlab_sequence(Min,Max,L) :-matlab_sequence249,5872 -matlab_sequence(Min,Max,L) :-matlab_sequence249,5872 -mksequence(Min,Min,[Min]) :- !.mksequence254,5985 -mksequence(Min,Min,[Min]) :- !.mksequence254,5985 -mksequence(Min,Min,[Min]) :- !.mksequence254,5985 -mksequence(Min,Max,[Min|Vector]) :-mksequence255,6017 -mksequence(Min,Max,[Min|Vector]) :-mksequence255,6017 -mksequence(Min,Max,[Min|Vector]) :-mksequence255,6017 -matlab_call(S,Out) :-matlab_call259,6100 -matlab_call(S,Out) :-matlab_call259,6100 -matlab_call(S,Out) :-matlab_call259,6100 -matlab_call(S,Out,Result) :-matlab_call267,6287 -matlab_call(S,Out,Result) :-matlab_call267,6287 -matlab_call(S,Out,Result) :-matlab_call267,6287 -build_output(Out,['[ '|L],L0) :-build_output275,6489 -build_output(Out,['[ '|L],L0) :-build_output275,6489 -build_output(Out,['[ '|L],L0) :-build_output275,6489 -build_output(Out,Lf,L0) :-build_output278,6572 -build_output(Out,Lf,L0) :-build_output278,6572 -build_output(Out,Lf,L0) :-build_output278,6572 -build_outputs([],L,L).build_outputs281,6623 -build_outputs([],L,L).build_outputs281,6623 -build_outputs([Out|Outs],[Out,' '|L],L0) :-build_outputs282,6646 -build_outputs([Out|Outs],[Out,' '|L],L0) :-build_outputs282,6646 -build_outputs([Out|Outs],[Out,' '|L],L0) :-build_outputs282,6646 -build_args([],L,L). build_args285,6718 -build_args([],L,L). build_args285,6718 -build_args([Arg],Lf,L0) :- !,build_args286,6739 -build_args([Arg],Lf,L0) :- !,build_args286,6739 -build_args([Arg],Lf,L0) :- !,build_args286,6739 -build_args([Arg|Args],L,L0) :-build_args288,6798 -build_args([Arg|Args],L,L0) :-build_args288,6798 -build_args([Arg|Args],L,L0) :-build_args288,6798 -build_arg(V,_,_) :- var(V), !,build_arg292,6884 -build_arg(V,_,_) :- var(V), !,build_arg292,6884 -build_arg(V,_,_) :- var(V), !,build_arg292,6884 -build_arg(Arg,[Arg|L],L) :- atomic(Arg), !.build_arg294,6951 -build_arg(Arg,[Arg|L],L) :- atomic(Arg), !.build_arg294,6951 -build_arg(Arg,[Arg|L],L) :- atomic(Arg), !.build_arg294,6951 -build_arg(\S0,['\'',S0,'\''|L],L) :-build_arg295,6995 -build_arg(\S0,['\'',S0,'\''|L],L) :-build_arg295,6995 -build_arg(\S0,['\'',S0,'\''|L],L) :-build_arg295,6995 -build_arg([S1|S2],['['|L],L0) :-build_arg297,7046 -build_arg([S1|S2],['['|L],L0) :-build_arg297,7046 -build_arg([S1|S2],['['|L],L0) :-build_arg297,7046 -build_arg([S1|S2],L,L0) :- !,build_arg300,7126 -build_arg([S1|S2],L,L0) :- !,build_arg300,7126 -build_arg([S1|S2],L,L0) :- !,build_arg300,7126 -build_arg(S1:S2,L,L0) :- !,build_arg303,7205 -build_arg(S1:S2,L,L0) :- !,build_arg303,7205 -build_arg(S1:S2,L,L0) :- !,build_arg303,7205 -build_arg(F,[N,'{'|L],L0) :- %N({A}) = N{A}build_arg306,7282 -build_arg(F,[N,'{'|L],L0) :- %N({A}) = N{A}build_arg306,7282 -build_arg(F,[N,'{'|L],L0) :- %N({A}) = N{A}build_arg306,7282 -build_arg(F,[N,'('|L],L0) :-build_arg309,7369 -build_arg(F,[N,'('|L],L0) :-build_arg309,7369 -build_arg(F,[N,'('|L],L0) :-build_arg309,7369 -build_arglist([A],L,L0) :- !,build_arglist313,7434 -build_arglist([A],L,L0) :- !,build_arglist313,7434 -build_arglist([A],L,L0) :- !,build_arglist313,7434 -build_arglist([A|As],L,L0) :-build_arglist315,7491 -build_arglist([A|As],L,L0) :-build_arglist315,7491 -build_arglist([A|As],L,L0) :-build_arglist315,7491 -build_string([],['\''|L],L).build_string319,7575 -build_string([],['\''|L],L).build_string319,7575 -build_string([S0|S],[C|Lf],L0) :-build_string320,7604 -build_string([S0|S],[C|Lf],L0) :-build_string320,7604 -build_string([S0|S],[C|Lf],L0) :-build_string320,7604 -process_arg_entry([],[]) :- !.process_arg_entry325,7682 -process_arg_entry([],[]) :- !.process_arg_entry325,7682 -process_arg_entry([],[]) :- !.process_arg_entry325,7682 -process_arg_entry(L,['('|L]).process_arg_entry326,7713 -process_arg_entry(L,['('|L]).process_arg_entry326,7713 - -packages/python/swig/yap4py/prolog/matrix.yap,29448 -matrix_transpose(Matrix,Transpose) :-matrix_transpose632,13453 -matrix_transpose(Matrix,Transpose) :-matrix_transpose632,13453 -matrix_transpose(Matrix,Transpose) :-matrix_transpose632,13453 -:- multifile rhs_opaque/1, array_extension/2.multifile649,13713 -:- multifile rhs_opaque/1, array_extension/2.multifile649,13713 -norm_dim( I..J, D, I, P0, P) :- !,norm_dim690,14956 -norm_dim( I..J, D, I, P0, P) :- !,norm_dim690,14956 -norm_dim( I..J, D, I, P0, P) :- !,norm_dim690,14956 -norm_dim( I, I, 0, P0, P ) :-norm_dim693,15016 -norm_dim( I, I, 0, P0, P ) :-norm_dim693,15016 -norm_dim( I, I, 0, P0, P ) :-norm_dim693,15016 -rhs(RHS, RHS) :- var(RHS), !.rhs697,15060 -rhs(RHS, RHS) :- var(RHS), !.rhs697,15060 -rhs(RHS, RHS) :- var(RHS), !.rhs697,15060 -rhs(A, A) :- atom(A), !.rhs699,15102 -rhs(A, A) :- atom(A), !.rhs699,15102 -rhs(A, A) :- atom(A), !.rhs699,15102 -rhs(RHS, RHS) :- number(RHS), !.rhs700,15127 -rhs(RHS, RHS) :- number(RHS), !.rhs700,15127 -rhs(RHS, RHS) :- number(RHS), !.rhs700,15127 -rhs(RHS, RHS) :- opaque(RHS), !.rhs701,15160 -rhs(RHS, RHS) :- opaque(RHS), !.rhs701,15160 -rhs(RHS, RHS) :- opaque(RHS), !.rhs701,15160 -rhs(RHS, RHS) :- RHS = '$matrix'(_, _, _, _, _), !.rhs702,15193 -rhs(RHS, RHS) :- RHS = '$matrix'(_, _, _, _, _), !.rhs702,15193 -rhs(RHS, RHS) :- RHS = '$matrix'(_, _, _, _, _), !.rhs702,15193 -rhs(matrix(List), RHS) :- !,rhs703,15245 -rhs(matrix(List), RHS) :- !,rhs703,15245 -rhs(matrix(List), RHS) :- !,rhs703,15245 -rhs(matrix(List, Opt1), RHS) :- !,rhs706,15317 -rhs(matrix(List, Opt1), RHS) :- !,rhs706,15317 -rhs(matrix(List, Opt1), RHS) :- !,rhs706,15317 -rhs(matrix(List, Opt1, Opt2), RHS) :- !,rhs709,15397 -rhs(matrix(List, Opt1, Opt2), RHS) :- !,rhs709,15397 -rhs(matrix(List, Opt1, Opt2), RHS) :- !,rhs709,15397 -rhs(dim(RHS), Dims) :- !,rhs712,15491 -rhs(dim(RHS), Dims) :- !,rhs712,15491 -rhs(dim(RHS), Dims) :- !,rhs712,15491 -rhs(dims(RHS), Dims) :- !,rhs715,15558 -rhs(dims(RHS), Dims) :- !,rhs715,15558 -rhs(dims(RHS), Dims) :- !,rhs715,15558 -rhs(nrow(RHS), NRow) :- !,rhs718,15626 -rhs(nrow(RHS), NRow) :- !,rhs718,15626 -rhs(nrow(RHS), NRow) :- !,rhs718,15626 -rhs(ncol(RHS), NCol) :- !,rhs721,15698 -rhs(ncol(RHS), NCol) :- !,rhs721,15698 -rhs(ncol(RHS), NCol) :- !,rhs721,15698 -rhs(length(RHS), Size) :- !,rhs724,15770 -rhs(length(RHS), Size) :- !,rhs724,15770 -rhs(length(RHS), Size) :- !,rhs724,15770 -rhs(size(RHS), Size) :- !,rhs727,15840 -rhs(size(RHS), Size) :- !,rhs727,15840 -rhs(size(RHS), Size) :- !,rhs727,15840 -rhs(max(RHS), Size) :- !,rhs730,15908 -rhs(max(RHS), Size) :- !,rhs730,15908 -rhs(max(RHS), Size) :- !,rhs730,15908 -rhs(min(RHS), Size) :- !,rhs733,15974 -rhs(min(RHS), Size) :- !,rhs733,15974 -rhs(min(RHS), Size) :- !,rhs733,15974 -rhs(maxarg(RHS), Size) :- !,rhs736,16040 -rhs(maxarg(RHS), Size) :- !,rhs736,16040 -rhs(maxarg(RHS), Size) :- !,rhs736,16040 -rhs(minarg(RHS), Size) :- !,rhs739,16112 -rhs(minarg(RHS), Size) :- !,rhs739,16112 -rhs(minarg(RHS), Size) :- !,rhs739,16112 -rhs(list(RHS), List) :- !,rhs742,16184 -rhs(list(RHS), List) :- !,rhs742,16184 -rhs(list(RHS), List) :- !,rhs742,16184 -rhs(lists(RHS), List) :- !,rhs745,16255 -rhs(lists(RHS), List) :- !,rhs745,16255 -rhs(lists(RHS), List) :- !,rhs745,16255 -rhs('[]'(Args, RHS), Val) :-rhs748,16328 -rhs('[]'(Args, RHS), Val) :-rhs748,16328 -rhs('[]'(Args, RHS), Val) :-rhs748,16328 -rhs('..'(I, J), [I1|Is]) :- !,rhs760,16556 -rhs('..'(I, J), [I1|Is]) :- !,rhs760,16556 -rhs('..'(I, J), [I1|Is]) :- !,rhs760,16556 -rhs([H|T], [NH|NT]) :- !,rhs764,16646 -rhs([H|T], [NH|NT]) :- !,rhs764,16646 -rhs([H|T], [NH|NT]) :- !,rhs764,16646 -rhs(log(RHS), Logs ) :- !,rhs767,16698 -rhs(log(RHS), Logs ) :- !,rhs767,16698 -rhs(log(RHS), Logs ) :- !,rhs767,16698 -rhs(exp(RHS), Logs ) :- !,rhs770,16769 -rhs(exp(RHS), Logs ) :- !,rhs770,16769 -rhs(exp(RHS), Logs ) :- !,rhs770,16769 -rhs(S, NS) :-rhs773,16840 -rhs(S, NS) :-rhs773,16840 -rhs(S, NS) :-rhs773,16840 -rhs(E1+E2, V) :- !,rhs776,16884 -rhs(E1+E2, V) :- !,rhs776,16884 -rhs(E1+E2, V) :- !,rhs776,16884 -rhs(E1-E2, V) :- !,rhs780,16951 -rhs(E1-E2, V) :- !,rhs780,16951 -rhs(E1-E2, V) :- !,rhs780,16951 -rhs(S, NS) :-rhs784,17017 -rhs(S, NS) :-rhs784,17017 -rhs(S, NS) :-rhs784,17017 -set_lhs(V, R) :- var(V), !, V = R.set_lhs789,17086 -set_lhs(V, R) :- var(V), !, V = R.set_lhs789,17086 -set_lhs(V, R) :- var(V), !, V = R.set_lhs789,17086 -set_lhs(V, R) :- number(V), !, V = R.set_lhs790,17121 -set_lhs(V, R) :- number(V), !, V = R.set_lhs790,17121 -set_lhs(V, R) :- number(V), !, V = R.set_lhs790,17121 -set_lhs('[]'(Args, M), Val) :-set_lhs791,17159 -set_lhs('[]'(Args, M), Val) :-set_lhs791,17159 -set_lhs('[]'(Args, M), Val) :-set_lhs791,17159 -index(Range, V, M, Base, Indx) :- var(V), !,index805,17394 -index(Range, V, M, Base, Indx) :- var(V), !,index805,17394 -index(Range, V, M, Base, Indx) :- var(V), !,index805,17394 -index(Range, '*', M, Base, Indx) :- !,index808,17500 -index(Range, '*', M, Base, Indx) :- !,index808,17500 -index(Range, '*', M, Base, Indx) :- !,index808,17500 -index(Range, Exp, M, _Base, Indx) :- !,index811,17600 -index(Range, Exp, M, _Base, Indx) :- !,index811,17600 -index(Range, Exp, M, _Base, Indx) :- !,index811,17600 -index(I, _M, I ) :- integer(I), !.index817,17762 -index(I, _M, I ) :- integer(I), !.index817,17762 -index(I, _M, I ) :- integer(I), !.index817,17762 -index(I..J, _M, [I|O] ) :- !,index818,17797 -index(I..J, _M, [I|O] ) :- !,index818,17797 -index(I..J, _M, [I|O] ) :- !,index818,17797 -index(I:J, _M, [I|O] ) :- !,index821,17878 -index(I:J, _M, [I|O] ) :- !,index821,17878 -index(I:J, _M, [I|O] ) :- !,index821,17878 -index(I+J, M, O ) :- !,index824,17958 -index(I+J, M, O ) :- !,index824,17958 -index(I+J, M, O ) :- !,index824,17958 -index(I-J, M, O ) :- !,index828,18041 -index(I-J, M, O ) :- !,index828,18041 -index(I-J, M, O ) :- !,index828,18041 -index(I*J, M, O ) :- !,index832,18124 -index(I*J, M, O ) :- !,index832,18124 -index(I*J, M, O ) :- !,index832,18124 -index(I div J, M, O ) :- !,index836,18197 -index(I div J, M, O ) :- !,index836,18197 -index(I div J, M, O ) :- !,index836,18197 -index(I rem J, M, O ) :- !,index840,18278 -index(I rem J, M, O ) :- !,index840,18278 -index(I rem J, M, O ) :- !,index840,18278 -index(I, M, NI ) :-index844,18359 -index(I, M, NI ) :-index844,18359 -index(I, M, NI ) :-index844,18359 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -indx(M, I, NI) :- index(I, M, NI).indx847,18406 -add_index(I1, J1, O) :-add_index849,18442 -add_index(I1, J1, O) :-add_index849,18442 -add_index(I1, J1, O) :-add_index849,18442 -add_index(I1, J1, O) :-add_index853,18510 -add_index(I1, J1, O) :-add_index853,18510 -add_index(I1, J1, O) :-add_index853,18510 -add_index(I1, J1, O) :-add_index856,18578 -add_index(I1, J1, O) :-add_index856,18578 -add_index(I1, J1, O) :-add_index856,18578 -add_index(I1, J1, O) :-add_index859,18646 -add_index(I1, J1, O) :-add_index859,18646 -add_index(I1, J1, O) :-add_index859,18646 -sub_index(I1, J1, O) :-sub_index862,18694 -sub_index(I1, J1, O) :-sub_index862,18694 -sub_index(I1, J1, O) :-sub_index862,18694 -sub_index(I1, J1, O) :-sub_index866,18762 -sub_index(I1, J1, O) :-sub_index866,18762 -sub_index(I1, J1, O) :-sub_index866,18762 -sub_index(I1, J1, O) :-sub_index869,18832 -sub_index(I1, J1, O) :-sub_index869,18832 -sub_index(I1, J1, O) :-sub_index869,18832 -sub_index(I1, J1, O) :-sub_index872,18901 -sub_index(I1, J1, O) :-sub_index872,18901 -sub_index(I1, J1, O) :-sub_index872,18901 -minus(X, Y, Z) :- Z is X-Y.minus875,18952 -minus(X, Y, Z) :- Z is X-Y.minus875,18952 -minus(X, Y, Z) :- Z is X-Y.minus875,18952 -rminus(X, Y, Z) :- Z is Y-X.rminus877,18981 -rminus(X, Y, Z) :- Z is Y-X.rminus877,18981 -rminus(X, Y, Z) :- Z is Y-X.rminus877,18981 -times(X, Y, Z) :- Z is Y*X.times879,19011 -times(X, Y, Z) :- Z is Y*X.times879,19011 -times(X, Y, Z) :- Z is Y*X.times879,19011 -div(X, Y, Z) :- Z is X/Y.div881,19040 -div(X, Y, Z) :- Z is X/Y.div881,19040 -div(X, Y, Z) :- Z is X/Y.div881,19040 -rdiv(X, Y, Z) :- Z is Y/X.rdiv883,19067 -rdiv(X, Y, Z) :- Z is Y/X.rdiv883,19067 -rdiv(X, Y, Z) :- Z is Y/X.rdiv883,19067 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -zdiv(X, Y, Z) :- (X == 0 -> Z = 0 ; X == 0.0 -> Z = 0.0 ; Z is X / Y ).zdiv885,19095 -mplus(I1, I2, V) :-mplus887,19168 -mplus(I1, I2, V) :-mplus887,19168 -mplus(I1, I2, V) :-mplus887,19168 -msub(I1, I2, V) :-msub903,19647 -msub(I1, I2, V) :-msub903,19647 -msub(I1, I2, V) :-msub903,19647 -mtimes(I1, I2, V) :-mtimes920,20154 -mtimes(I1, I2, V) :-mtimes920,20154 -mtimes(I1, I2, V) :-mtimes920,20154 -matrix_new(terms,Dims, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new942,20705 -matrix_new(terms,Dims, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new942,20705 -matrix_new(terms,Dims, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new942,20705 -matrix_new(ints,Dims,Matrix) :-matrix_new947,20888 -matrix_new(ints,Dims,Matrix) :-matrix_new947,20888 -matrix_new(ints,Dims,Matrix) :-matrix_new947,20888 -matrix_new(floats,Dims,Matrix) :-matrix_new950,20987 -matrix_new(floats,Dims,Matrix) :-matrix_new950,20987 -matrix_new(floats,Dims,Matrix) :-matrix_new950,20987 -matrix_new(terms, Dims, Data, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new955,21094 -matrix_new(terms, Dims, Data, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new955,21094 -matrix_new(terms, Dims, Data, '$matrix'(Dims, NDims, Size, Offsets, Matrix) ) :-matrix_new955,21094 -matrix_new(ints,Dims,Data,Matrix) :-matrix_new961,21306 -matrix_new(ints,Dims,Data,Matrix) :-matrix_new961,21306 -matrix_new(ints,Dims,Data,Matrix) :-matrix_new961,21306 -matrix_new(floats,Dims,Data,Matrix) :-matrix_new964,21409 -matrix_new(floats,Dims,Data,Matrix) :-matrix_new964,21409 -matrix_new(floats,Dims,Data,Matrix) :-matrix_new964,21409 -matrix_dims( Mat, Dims) :-matrix_dims969,21518 -matrix_dims( Mat, Dims) :-matrix_dims969,21518 -matrix_dims( Mat, Dims) :-matrix_dims969,21518 -matrix_dims( Mat, Dims, Bases) :-matrix_dims973,21635 -matrix_dims( Mat, Dims, Bases) :-matrix_dims973,21635 -matrix_dims( Mat, Dims, Bases) :-matrix_dims973,21635 -matrix_ndims( Mat, NDims) :-matrix_ndims977,21770 -matrix_ndims( Mat, NDims) :-matrix_ndims977,21770 -matrix_ndims( Mat, NDims) :-matrix_ndims977,21770 -matrix_size( Mat, Size) :-matrix_size981,21892 -matrix_size( Mat, Size) :-matrix_size981,21892 -matrix_size( Mat, Size) :-matrix_size981,21892 -matrix_to_list( Mat, ToList) :-matrix_to_list985,22009 -matrix_to_list( Mat, ToList) :-matrix_to_list985,22009 -matrix_to_list( Mat, ToList) :-matrix_to_list985,22009 -matrix_to_lists( Mat, ToList) :-matrix_to_lists989,22150 -matrix_to_lists( Mat, ToList) :-matrix_to_lists989,22150 -matrix_to_lists( Mat, ToList) :-matrix_to_lists989,22150 -matrix_slicer( [_], M, Pos-[_], [O|L0], L0) :- !,matrix_slicer994,22299 -matrix_slicer( [_], M, Pos-[_], [O|L0], L0) :- !,matrix_slicer994,22299 -matrix_slicer( [_], M, Pos-[_], [O|L0], L0) :- !,matrix_slicer994,22299 -matrix_slicer( [D|Dims], M, Pos-[I|L], [O|L0], L0) :-matrix_slicer996,22369 -matrix_slicer( [D|Dims], M, Pos-[I|L], [O|L0], L0) :-matrix_slicer996,22369 -matrix_slicer( [D|Dims], M, Pos-[I|L], [O|L0], L0) :-matrix_slicer996,22369 -matrix_get( Mat, Pos, El) :-matrix_get1000,22502 -matrix_get( Mat, Pos, El) :-matrix_get1000,22502 -matrix_get( Mat, Pos, El) :-matrix_get1000,22502 -matrix_get_range( Mat, Pos, Els) :-matrix_get_range1004,22609 -matrix_get_range( Mat, Pos, Els) :-matrix_get_range1004,22609 -matrix_get_range( Mat, Pos, Els) :-matrix_get_range1004,22609 -slice([], [[]]).slice1008,22704 -slice([], [[]]).slice1008,22704 -slice([[H|T]|Extra], Els) :- !,slice1009,22721 -slice([[H|T]|Extra], Els) :- !,slice1009,22721 -slice([[H|T]|Extra], Els) :- !,slice1009,22721 -slice([H|Extra], Els) :- !,slice1012,22825 -slice([H|Extra], Els) :- !,slice1012,22825 -slice([H|Extra], Els) :- !,slice1012,22825 -add_index_prefix( [] , _H ) --> [].add_index_prefix1016,22915 -add_index_prefix( [] , _H ) --> [].add_index_prefix1016,22915 -add_index_prefix( [] , _H ) --> [].add_index_prefix1016,22915 -add_index_prefix( [L|Els0] , H ) --> [[H|L]],add_index_prefix1017,22951 -add_index_prefix( [L|Els0] , H ) --> [[H|L]],add_index_prefix1017,22951 -add_index_prefix( [L|Els0] , H ) --> [[H|L]],add_index_prefix1017,22951 -matrix_set_range( Mat, Pos, Els) :-matrix_set_range1021,23030 -matrix_set_range( Mat, Pos, Els) :-matrix_set_range1021,23030 -matrix_set_range( Mat, Pos, Els) :-matrix_set_range1021,23030 -matrix_set( Mat, Pos, El) :-matrix_set1025,23125 -matrix_set( Mat, Pos, El) :-matrix_set1025,23125 -matrix_set( Mat, Pos, El) :-matrix_set1025,23125 -matrix_new_set(ints,Dims,Elem,Matrix) :-matrix_new_set1029,23232 -matrix_new_set(ints,Dims,Elem,Matrix) :-matrix_new_set1029,23232 -matrix_new_set(ints,Dims,Elem,Matrix) :-matrix_new_set1029,23232 -matrix_new_set(floats,Dims,Elem,Matrix) :-matrix_new_set1032,23343 -matrix_new_set(floats,Dims,Elem,Matrix) :-matrix_new_set1032,23343 -matrix_new_set(floats,Dims,Elem,Matrix) :-matrix_new_set1032,23343 -matrix_type(Matrix,Type) :-matrix_type1037,23460 -matrix_type(Matrix,Type) :-matrix_type1037,23460 -matrix_type(Matrix,Type) :-matrix_type1037,23460 -matrix_base(Matrix, Bases) :-matrix_base1042,23600 -matrix_base(Matrix, Bases) :-matrix_base1042,23600 -matrix_base(Matrix, Bases) :-matrix_base1042,23600 -matrix_arg_to_offset(M, Index, Offset) :-matrix_arg_to_offset1046,23751 -matrix_arg_to_offset(M, Index, Offset) :-matrix_arg_to_offset1046,23751 -matrix_arg_to_offset(M, Index, Offset) :-matrix_arg_to_offset1046,23751 -matrix_offset_to_arg(M, Offset, Index) :-matrix_offset_to_arg1050,23958 -matrix_offset_to_arg(M, Offset, Index) :-matrix_offset_to_arg1050,23958 -matrix_offset_to_arg(M, Offset, Index) :-matrix_offset_to_arg1050,23958 -matrix_max(M, Max) :-matrix_max1054,24167 -matrix_max(M, Max) :-matrix_max1054,24167 -matrix_max(M, Max) :-matrix_max1054,24167 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -max(New, Old, Max) :- ( New >= Old -> New = Max ; Old = Max ).max1060,24352 -matrix_maxarg(M, MaxArg) :-matrix_maxarg1062,24416 -matrix_maxarg(M, MaxArg) :-matrix_maxarg1062,24416 -matrix_maxarg(M, MaxArg) :-matrix_maxarg1062,24416 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -maxarg(New, Old-OPos-I0, Max-MPos-I) :- I is I0+1, ( New > Old -> New = Max, MPos = I0 ; Old = Max, MPos = OPos ).maxarg1068,24698 -matrix_min(M, Min) :-matrix_min1070,24814 -matrix_min(M, Min) :-matrix_min1070,24814 -matrix_min(M, Min) :-matrix_min1070,24814 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -min(New, Old, Max) :- ( New =< Old -> New = Max ; Old = Max ).min1076,24999 -matrix_minarg(M, MinArg) :-matrix_minarg1078,25063 -matrix_minarg(M, MinArg) :-matrix_minarg1078,25063 -matrix_minarg(M, MinArg) :-matrix_minarg1078,25063 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -minarg(New, Old-OPos-I0, Min-MPos-I) :- I is I0+1, ( New < Old -> New = Min, MPos = I0 ; Old = Min, MPos = OPos ).minarg1084,25345 -matrix_to_logs(M, LogM) :-matrix_to_logs1086,25461 -matrix_to_logs(M, LogM) :-matrix_to_logs1086,25461 -matrix_to_logs(M, LogM) :-matrix_to_logs1086,25461 -log(X, Y) :- Y is log(X).log1094,25705 -log(X, Y) :- Y is log(X).log1094,25705 -log(X, Y) :- Y is log(X).log1094,25705 -log(X, Y) :- Y is log(X).log1094,25705 -log(X, Y) :- Y is log(X).log1094,25705 -matrix_to_exps(M, ExpM) :-matrix_to_exps1096,25732 -matrix_to_exps(M, ExpM) :-matrix_to_exps1096,25732 -matrix_to_exps(M, ExpM) :-matrix_to_exps1096,25732 -exp(X, Y) :- Y is exp(X).exp1104,25976 -exp(X, Y) :- Y is exp(X).exp1104,25976 -exp(X, Y) :- Y is exp(X).exp1104,25976 -exp(X, Y) :- Y is exp(X).exp1104,25976 -exp(X, Y) :- Y is exp(X).exp1104,25976 -matrix_agg_lines(M1,+,NM) :-matrix_agg_lines1106,26003 -matrix_agg_lines(M1,+,NM) :-matrix_agg_lines1106,26003 -matrix_agg_lines(M1,+,NM) :-matrix_agg_lines1106,26003 -matrix_agg_cols(M1,+,NM) :-matrix_agg_cols1110,26099 -matrix_agg_cols(M1,+,NM) :-matrix_agg_cols1110,26099 -matrix_agg_cols(M1,+,NM) :-matrix_agg_cols1110,26099 -matrix_op(M1,M2,+,NM) :-matrix_op1114,26193 -matrix_op(M1,M2,+,NM) :-matrix_op1114,26193 -matrix_op(M1,M2,+,NM) :-matrix_op1114,26193 -matrix_op(M1,M2,-,NM) :-matrix_op1121,26418 -matrix_op(M1,M2,-,NM) :-matrix_op1121,26418 -matrix_op(M1,M2,-,NM) :-matrix_op1121,26418 -matrix_op(M1,M2,*,NM) :-matrix_op1128,26644 -matrix_op(M1,M2,*,NM) :-matrix_op1128,26644 -matrix_op(M1,M2,*,NM) :-matrix_op1128,26644 -matrix_op(M1,M2,/,NM) :-matrix_op1135,26870 -matrix_op(M1,M2,/,NM) :-matrix_op1135,26870 -matrix_op(M1,M2,/,NM) :-matrix_op1135,26870 -matrix_op(M1,M2,zdiv,NM) :-matrix_op1142,27094 -matrix_op(M1,M2,zdiv,NM) :-matrix_op1142,27094 -matrix_op(M1,M2,zdiv,NM) :-matrix_op1142,27094 -matrix_op_to_all(M1,+,Num,NM) :-matrix_op_to_all1151,27324 -matrix_op_to_all(M1,+,Num,NM) :-matrix_op_to_all1151,27324 -matrix_op_to_all(M1,+,Num,NM) :-matrix_op_to_all1151,27324 -matrix_op_to_all(M1,-,Num,NM) :-matrix_op_to_all1159,27507 -matrix_op_to_all(M1,-,Num,NM) :-matrix_op_to_all1159,27507 -matrix_op_to_all(M1,-,Num,NM) :-matrix_op_to_all1159,27507 -matrix_op_to_all(M1,*,Num,NM) :-matrix_op_to_all1167,27691 -matrix_op_to_all(M1,*,Num,NM) :-matrix_op_to_all1167,27691 -matrix_op_to_all(M1,*,Num,NM) :-matrix_op_to_all1167,27691 -matrix_op_to_all(M1,/,Num,NM) :-matrix_op_to_all1175,27875 -matrix_op_to_all(M1,/,Num,NM) :-matrix_op_to_all1175,27875 -matrix_op_to_all(M1,/,Num,NM) :-matrix_op_to_all1175,27875 -matrix_op_to_lines(M1,M2,/,NM) :-matrix_op_to_lines1188,28140 -matrix_op_to_lines(M1,M2,/,NM) :-matrix_op_to_lines1188,28140 -matrix_op_to_lines(M1,M2,/,NM) :-matrix_op_to_lines1188,28140 -matrix_op_to_cols(M1,M2,+,NM) :-matrix_op_to_cols1192,28246 -matrix_op_to_cols(M1,M2,+,NM) :-matrix_op_to_cols1192,28246 -matrix_op_to_cols(M1,M2,+,NM) :-matrix_op_to_cols1192,28246 -matrix_transpose(M1,M2) :-matrix_transpose1197,28351 -matrix_transpose(M1,M2) :-matrix_transpose1197,28351 -matrix_transpose(M1,M2) :-matrix_transpose1197,28351 -size(N0, N1, N2) :-size1200,28409 -size(N0, N1, N2) :-size1200,28409 -size(N0, N1, N2) :-size1200,28409 -m_get('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_get1204,28476 -m_get('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_get1204,28476 -m_get('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_get1204,28476 -m_set('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_set1208,28601 -m_set('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_set1208,28601 -m_set('$matrix'(Dims, _, Sz, Bases, M), Indx, V) :-m_set1208,28601 -indx( I, Dim, Base, BlkSz, NBlkSz, I0, IF) :-indx1212,28726 -indx( I, Dim, Base, BlkSz, NBlkSz, I0, IF) :-indx1212,28726 -indx( I, Dim, Base, BlkSz, NBlkSz, I0, IF) :-indx1212,28726 -offset( I, Dim, BlkSz, NBlkSz, Base, I0, IF) :-offset1216,28829 -offset( I, Dim, BlkSz, NBlkSz, Base, I0, IF) :-offset1216,28829 -offset( I, Dim, BlkSz, NBlkSz, Base, I0, IF) :-offset1216,28829 -inc(I1, I, I1) :-inc1221,28954 -inc(I1, I, I1) :-inc1221,28954 -inc(I1, I, I1) :-inc1221,28954 -new_matrix(M0, Opts0, M) :-new_matrix1224,28985 -new_matrix(M0, Opts0, M) :-new_matrix1224,28985 -new_matrix(M0, Opts0, M) :-new_matrix1224,28985 -new_matrix('$matrix'(_,_,_,_,C), Opts0, M) :- !,new_matrix1228,29078 -new_matrix('$matrix'(_,_,_,_,C), Opts0, M) :- !,new_matrix1228,29078 -new_matrix('$matrix'(_,_,_,_,C), Opts0, M) :- !,new_matrix1228,29078 -new_matrix(C, Opts0, M) :-new_matrix1231,29166 -new_matrix(C, Opts0, M) :-new_matrix1231,29166 -new_matrix(C, Opts0, M) :-new_matrix1231,29166 -new_matrix(List, Opts0, M) :-new_matrix1235,29254 -new_matrix(List, Opts0, M) :-new_matrix1235,29254 -new_matrix(List, Opts0, M) :-new_matrix1235,29254 -new_matrix([H|List], Opts0, M) :-new_matrix1242,29567 -new_matrix([H|List], Opts0, M) :-new_matrix1242,29567 -new_matrix([H|List], Opts0, M) :-new_matrix1242,29567 -fix_opts(V, _) :-fix_opts1250,29861 -fix_opts(V, _) :-fix_opts1250,29861 -fix_opts(V, _) :-fix_opts1250,29861 -fix_opts(A=B, [A=B]).fix_opts1253,29930 -fix_opts(A=B, [A=B]).fix_opts1253,29930 -fix_opts(A, A) :-fix_opts1254,29952 -fix_opts(A, A) :-fix_opts1254,29952 -fix_opts(A, A) :-fix_opts1254,29952 -fix_opts(V, _) :-fix_opts1256,29986 -fix_opts(V, _) :-fix_opts1256,29986 -fix_opts(V, _) :-fix_opts1256,29986 -guess_type( List, Type ) :-guess_type1260,30069 -guess_type( List, Type ) :-guess_type1260,30069 -guess_type( List, Type ) :-guess_type1260,30069 -guess_type( List, Type ) :-guess_type1263,30140 -guess_type( List, Type ) :-guess_type1263,30140 -guess_type( List, Type ) :-guess_type1263,30140 -guess_type( _List, terms ).guess_type1266,30212 -guess_type( _List, terms ).guess_type1266,30212 -process_new_opt(_Base, dim=Dim, Type, Type, _, Dim) :- !.process_new_opt1268,30241 -process_new_opt(_Base, dim=Dim, Type, Type, _, Dim) :- !.process_new_opt1268,30241 -process_new_opt(_Base, dim=Dim, Type, Type, _, Dim) :- !.process_new_opt1268,30241 -process_new_opt(_Base, type=Type, _, Type, Dim, Dim) :- !.process_new_opt1269,30299 -process_new_opt(_Base, type=Type, _, Type, Dim, Dim) :- !.process_new_opt1269,30299 -process_new_opt(_Base, type=Type, _, Type, Dim, Dim) :- !.process_new_opt1269,30299 -process_new_opt( Base, base=Base, Type, Type, Dim, Dim) :- !.process_new_opt1270,30358 -process_new_opt( Base, base=Base, Type, Type, Dim, Dim) :- !.process_new_opt1270,30358 -process_new_opt( Base, base=Base, Type, Type, Dim, Dim) :- !.process_new_opt1270,30358 -process_new_opt(_Base, Opt, Type, Type, Dim, Dim) :-process_new_opt1271,30420 -process_new_opt(_Base, Opt, Type, Type, Dim, Dim) :-process_new_opt1271,30420 -process_new_opt(_Base, Opt, Type, Type, Dim, Dim) :-process_new_opt1271,30420 -el_list(_, V, _Els, _NEls, _I0, _I1) :-el_list1274,30524 -el_list(_, V, _Els, _NEls, _I0, _I1) :-el_list1274,30524 -el_list(_, V, _Els, _NEls, _I0, _I1) :-el_list1274,30524 -el_list([N|Extra], El, Els, NEls, I0, I1) :-el_list1277,30583 -el_list([N|Extra], El, Els, NEls, I0, I1) :-el_list1277,30583 -el_list([N|Extra], El, Els, NEls, I0, I1) :-el_list1277,30583 -el_list([N], El, Els, NEls, I0, I1) :-el_list1280,30690 -el_list([N], El, Els, NEls, I0, I1) :-el_list1280,30690 -el_list([N], El, Els, NEls, I0, I1) :-el_list1280,30690 -foreach( Domain, Goal) :-foreach1286,30796 -foreach( Domain, Goal) :-foreach1286,30796 -foreach( Domain, Goal) :-foreach1286,30796 -foreach( Domain, Goal ) :-foreach1292,31022 -foreach( Domain, Goal ) :-foreach1292,31022 -foreach( Domain, Goal ) :-foreach1292,31022 -foreach( Domain, Goal, Inp, Out) :-foreach1299,31233 -foreach( Domain, Goal, Inp, Out) :-foreach1299,31233 -foreach( Domain, Goal, Inp, Out) :-foreach1299,31233 -foreach( Domain, Goal, Inp, Out ) :-foreach1304,31441 -foreach( Domain, Goal, Inp, Out ) :-foreach1304,31441 -foreach( Domain, Goal, Inp, Out ) :-foreach1304,31441 -iterate( [], [], LocalVars, Goal, Vs, Bs ) :-iterate1310,31635 -iterate( [], [], LocalVars, Goal, Vs, Bs ) :-iterate1310,31635 -iterate( [], [], LocalVars, Goal, Vs, Bs ) :-iterate1310,31635 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs ) :-iterate1316,31790 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs ) :-iterate1316,31790 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs ) :-iterate1316,31790 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs ) :- !,iterate1318,31887 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs ) :- !,iterate1318,31887 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs ) :- !,iterate1318,31887 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs ) :- !,iterate1320,31981 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs ) :- !,iterate1320,31981 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs ) :- !,iterate1320,31981 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs ) :- !,iterate1323,32106 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs ) :- !,iterate1323,32106 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs ) :- !,iterate1323,32106 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs ) :- !,iterate1325,32213 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs ) :- !,iterate1325,32213 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs ) :- !,iterate1325,32213 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs ) :-iterate1327,32319 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs ) :-iterate1327,32319 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs ) :-iterate1327,32319 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs) :-iterate1335,32598 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs) :-iterate1335,32598 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs) :-iterate1335,32598 -iterate( [], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1349,32944 -iterate( [], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1349,32944 -iterate( [], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1349,32944 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1355,33125 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1355,33125 -iterate( [], [H|Cont], LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1355,33125 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1357,33242 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1357,33242 -iterate( [H|L], [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1357,33242 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1359,33356 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1359,33356 -iterate( [H|L], Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1359,33356 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1362,33501 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1362,33501 -iterate( [] ins _A .. _B, [], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1362,33501 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1364,33627 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1364,33627 -iterate( [] ins _A .. _B, [H|L], LocalVars, Goal, Vs, Bs, Inp, Out ) :- !,iterate1364,33627 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1366,33754 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1366,33754 -iterate( [V|Ps] ins A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out ) :-iterate1366,33754 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out) :-iterate1374,34066 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out) :-iterate1374,34066 -iterate( V in A..B, Cont, LocalVars, Goal, Vs, Bs, Inp, Out) :-iterate1374,34066 -eval(I, _Vs, _Bs, I) :- integer(I), !.eval1389,34467 -eval(I, _Vs, _Bs, I) :- integer(I), !.eval1389,34467 -eval(I, _Vs, _Bs, I) :- integer(I), !.eval1389,34467 -eval(I, Vs, Bs, NI) :-eval1390,34506 -eval(I, Vs, Bs, NI) :-eval1390,34506 -eval(I, Vs, Bs, NI) :-eval1390,34506 -matrix_seq(A, B, Dims, M) :-matrix_seq1394,34567 -matrix_seq(A, B, Dims, M) :-matrix_seq1394,34567 -matrix_seq(A, B, Dims, M) :-matrix_seq1394,34567 -ints(A,B,O) :-ints1398,34644 -ints(A,B,O) :-ints1398,34644 -ints(A,B,O) :-ints1398,34644 -zero(_, 0).zero1401,34719 -zero(_, 0).zero1401,34719 - -packages/python/swig/yap4py/prolog/nb.yap,0 - -packages/python/swig/yap4py/prolog/ordsets.yap,13677 -list_to_ord_set(List, Set) :-list_to_ord_set216,5303 -list_to_ord_set(List, Set) :-list_to_ord_set216,5303 -list_to_ord_set(List, Set) :-list_to_ord_set216,5303 -merge([Head1|Tail1], [Head2|Tail2], [Head2|Merged]) :-merge228,5796 -merge([Head1|Tail1], [Head2|Tail2], [Head2|Merged]) :-merge228,5796 -merge([Head1|Tail1], [Head2|Tail2], [Head2|Merged]) :-merge228,5796 -merge([Head1|Tail1], List2, [Head1|Merged]) :-merge231,5909 -merge([Head1|Tail1], List2, [Head1|Merged]) :-merge231,5909 -merge([Head1|Tail1], List2, [Head1|Merged]) :-merge231,5909 -merge([], List2, List2) :- !.merge234,6004 -merge([], List2, List2) :- !.merge234,6004 -merge([], List2, List2) :- !.merge234,6004 -merge(List1, [], List1).merge235,6034 -merge(List1, [], List1).merge235,6034 -ord_disjoint([], _) :- !.ord_disjoint243,6232 -ord_disjoint([], _) :- !.ord_disjoint243,6232 -ord_disjoint([], _) :- !.ord_disjoint243,6232 -ord_disjoint(_, []) :- !.ord_disjoint244,6258 -ord_disjoint(_, []) :- !.ord_disjoint244,6258 -ord_disjoint(_, []) :- !.ord_disjoint244,6258 -ord_disjoint([Head1|Tail1], [Head2|Tail2]) :-ord_disjoint245,6284 -ord_disjoint([Head1|Tail1], [Head2|Tail2]) :-ord_disjoint245,6284 -ord_disjoint([Head1|Tail1], [Head2|Tail2]) :-ord_disjoint245,6284 -ord_disjoint(<, _, Tail1, Head2, Tail2) :-ord_disjoint249,6412 -ord_disjoint(<, _, Tail1, Head2, Tail2) :-ord_disjoint249,6412 -ord_disjoint(<, _, Tail1, Head2, Tail2) :-ord_disjoint249,6412 -ord_disjoint(>, Head1, Tail1, _, Tail2) :-ord_disjoint251,6492 -ord_disjoint(>, Head1, Tail1, _, Tail2) :-ord_disjoint251,6492 -ord_disjoint(>, Head1, Tail1, _, Tail2) :-ord_disjoint251,6492 -ord_add_element([], Element, [Element]).ord_add_element262,6846 -ord_add_element([], Element, [Element]).ord_add_element262,6846 -ord_add_element([Head|Tail], Element, Set) :-ord_add_element263,6887 -ord_add_element([Head|Tail], Element, Set) :-ord_add_element263,6887 -ord_add_element([Head|Tail], Element, Set) :-ord_add_element263,6887 -ord_insert([], Element, [Element]).ord_insert268,7013 -ord_insert([], Element, [Element]).ord_insert268,7013 -ord_insert([Head|Tail], Element, Set) :-ord_insert269,7049 -ord_insert([Head|Tail], Element, Set) :-ord_insert269,7049 -ord_insert([Head|Tail], Element, Set) :-ord_insert269,7049 -ord_insert(<, Head, Tail, Element, [Head|Set]) :-ord_insert274,7170 -ord_insert(<, Head, Tail, Element, [Head|Set]) :-ord_insert274,7170 -ord_insert(<, Head, Tail, Element, [Head|Set]) :-ord_insert274,7170 -ord_insert(=, Head, Tail, _, [Head|Tail]).ord_insert276,7253 -ord_insert(=, Head, Tail, _, [Head|Tail]).ord_insert276,7253 -ord_insert(>, Head, Tail, Element, [Element,Head|Tail]).ord_insert277,7296 -ord_insert(>, Head, Tail, Element, [Element,Head|Tail]).ord_insert277,7296 -ord_intersect([Head1|Tail1], [Head2|Tail2]) :-ord_intersect285,7516 -ord_intersect([Head1|Tail1], [Head2|Tail2]) :-ord_intersect285,7516 -ord_intersect([Head1|Tail1], [Head2|Tail2]) :-ord_intersect285,7516 -ord_intersect(=, _, _, _, _).ord_intersect289,7646 -ord_intersect(=, _, _, _, _).ord_intersect289,7646 -ord_intersect(<, _, Tail1, Head2, Tail2) :-ord_intersect290,7676 -ord_intersect(<, _, Tail1, Head2, Tail2) :-ord_intersect290,7676 -ord_intersect(<, _, Tail1, Head2, Tail2) :-ord_intersect290,7676 -ord_intersect(>, Head1, Tail1, _, Tail2) :-ord_intersect292,7758 -ord_intersect(>, Head1, Tail1, _, Tail2) :-ord_intersect292,7758 -ord_intersect(>, Head1, Tail1, _, Tail2) :-ord_intersect292,7758 -ord_intersect(L1, L2, L) :-ord_intersect295,7841 -ord_intersect(L1, L2, L) :-ord_intersect295,7841 -ord_intersect(L1, L2, L) :-ord_intersect295,7841 -ord_intersection([], _, []) :- !.ord_intersection303,8087 -ord_intersection([], _, []) :- !.ord_intersection303,8087 -ord_intersection([], _, []) :- !.ord_intersection303,8087 -ord_intersection([_|_], [], []) :- !.ord_intersection304,8121 -ord_intersection([_|_], [], []) :- !.ord_intersection304,8121 -ord_intersection([_|_], [], []) :- !.ord_intersection304,8121 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection) :-ord_intersection305,8159 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection) :-ord_intersection305,8159 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection) :-ord_intersection305,8159 -ord_intersection([], L, [], L) :- !.ord_intersection320,8669 -ord_intersection([], L, [], L) :- !.ord_intersection320,8669 -ord_intersection([], L, [], L) :- !.ord_intersection320,8669 -ord_intersection([_|_], [], [], []) :- !.ord_intersection321,8706 -ord_intersection([_|_], [], [], []) :- !.ord_intersection321,8706 -ord_intersection([_|_], [], [], []) :- !.ord_intersection321,8706 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection, Difference) :-ord_intersection322,8748 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection, Difference) :-ord_intersection322,8748 -ord_intersection([Head1|Tail1], [Head2|Tail2], Intersection, Difference) :-ord_intersection322,8748 -ord_seteq(Set1, Set2) :-ord_seteq340,9320 -ord_seteq(Set1, Set2) :-ord_seteq340,9320 -ord_seteq(Set1, Set2) :-ord_seteq340,9320 -ord_subset([], _) :- !.ord_subset349,9485 -ord_subset([], _) :- !.ord_subset349,9485 -ord_subset([], _) :- !.ord_subset349,9485 -ord_subset([Head1|Tail1], [Head2|Tail2]) :-ord_subset350,9509 -ord_subset([Head1|Tail1], [Head2|Tail2]) :-ord_subset350,9509 -ord_subset([Head1|Tail1], [Head2|Tail2]) :-ord_subset350,9509 -ord_subset(=, _, Tail1, _, Tail2) :-ord_subset354,9633 -ord_subset(=, _, Tail1, _, Tail2) :-ord_subset354,9633 -ord_subset(=, _, Tail1, _, Tail2) :-ord_subset354,9633 -ord_subset(>, Head1, Tail1, _, Tail2) :-ord_subset356,9697 -ord_subset(>, Head1, Tail1, _, Tail2) :-ord_subset356,9697 -ord_subset(>, Head1, Tail1, _, Tail2) :-ord_subset356,9697 -ord_subtract(Set1, [], Set1) :- !.ord_subtract366,9925 -ord_subtract(Set1, [], Set1) :- !.ord_subtract366,9925 -ord_subtract(Set1, [], Set1) :- !.ord_subtract366,9925 -ord_subtract([], _, []) :- !.ord_subtract367,9960 -ord_subtract([], _, []) :- !.ord_subtract367,9960 -ord_subtract([], _, []) :- !.ord_subtract367,9960 -ord_subtract([Head1|Tail1], [Head2|Tail2], Difference) :-ord_subtract368,9990 -ord_subtract([Head1|Tail1], [Head2|Tail2], Difference) :-ord_subtract368,9990 -ord_subtract([Head1|Tail1], [Head2|Tail2], Difference) :-ord_subtract368,9990 -ord_subtract(=, _, Tail1, _, Tail2, Difference) :-ord_subtract372,10142 -ord_subtract(=, _, Tail1, _, Tail2, Difference) :-ord_subtract372,10142 -ord_subtract(=, _, Tail1, _, Tail2, Difference) :-ord_subtract372,10142 -ord_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_subtract374,10242 -ord_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_subtract374,10242 -ord_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_subtract374,10242 -ord_subtract(>, Head1, Tail1, _, Tail2, Difference) :-ord_subtract376,10358 -ord_subtract(>, Head1, Tail1, _, Tail2, Difference) :-ord_subtract376,10358 -ord_subtract(>, Head1, Tail1, _, Tail2, Difference) :-ord_subtract376,10358 -ord_del_element([], _, []).ord_del_element385,10585 -ord_del_element([], _, []).ord_del_element385,10585 -ord_del_element([Head1|Tail1], Head2, Rest) :-ord_del_element386,10613 -ord_del_element([Head1|Tail1], Head2, Rest) :-ord_del_element386,10613 -ord_del_element([Head1|Tail1], Head2, Rest) :-ord_del_element386,10613 -ord_del_element(=, _, Tail1, _, Tail1).ord_del_element390,10744 -ord_del_element(=, _, Tail1, _, Tail1).ord_del_element390,10744 -ord_del_element(<, Head1, Tail1, Head2, [Head1|Difference]) :-ord_del_element391,10788 -ord_del_element(<, Head1, Tail1, Head2, [Head1|Difference]) :-ord_del_element391,10788 -ord_del_element(<, Head1, Tail1, Head2, [Head1|Difference]) :-ord_del_element391,10788 -ord_del_element(>, Head1, Tail1, _, [Head1|Tail1]).ord_del_element393,10895 -ord_del_element(>, Head1, Tail1, _, [Head1|Tail1]).ord_del_element393,10895 -ord_symdiff(Set1, [], Set1) :- !.ord_symdiff400,11075 -ord_symdiff(Set1, [], Set1) :- !.ord_symdiff400,11075 -ord_symdiff(Set1, [], Set1) :- !.ord_symdiff400,11075 -ord_symdiff([], Set2, Set2) :- !.ord_symdiff401,11109 -ord_symdiff([], Set2, Set2) :- !.ord_symdiff401,11109 -ord_symdiff([], Set2, Set2) :- !.ord_symdiff401,11109 -ord_symdiff([Head1|Tail1], [Head2|Tail2], Difference) :-ord_symdiff402,11143 -ord_symdiff([Head1|Tail1], [Head2|Tail2], Difference) :-ord_symdiff402,11143 -ord_symdiff([Head1|Tail1], [Head2|Tail2], Difference) :-ord_symdiff402,11143 -ord_symdiff(=, _, Tail1, _, Tail2, Difference) :-ord_symdiff406,11293 -ord_symdiff(=, _, Tail1, _, Tail2, Difference) :-ord_symdiff406,11293 -ord_symdiff(=, _, Tail1, _, Tail2, Difference) :-ord_symdiff406,11293 -ord_symdiff(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_symdiff408,11391 -ord_symdiff(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_symdiff408,11391 -ord_symdiff(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-ord_symdiff408,11391 -ord_symdiff(>, Head1, Tail1, Head2, Tail2, [Head2|Difference]) :-ord_symdiff410,11505 -ord_symdiff(>, Head1, Tail1, Head2, Tail2, [Head2|Difference]) :-ord_symdiff410,11505 -ord_symdiff(>, Head1, Tail1, Head2, Tail2, [Head2|Difference]) :-ord_symdiff410,11505 -ord_union([S|Set1], [], [S|Set1]).ord_union419,11797 -ord_union([S|Set1], [], [S|Set1]).ord_union419,11797 -ord_union([], Set2, Set2).ord_union420,11832 -ord_union([], Set2, Set2).ord_union420,11832 -ord_union([Head1|Tail1], [Head2|Tail2], Union) :-ord_union421,11859 -ord_union([Head1|Tail1], [Head2|Tail2], Union) :-ord_union421,11859 -ord_union([Head1|Tail1], [Head2|Tail2], Union) :-ord_union421,11859 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union]) :-ord_union425,11995 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union]) :-ord_union425,11995 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union]) :-ord_union425,11995 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ord_union427,12086 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ord_union427,12086 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ord_union427,12086 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ord_union429,12186 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ord_union429,12186 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ord_union429,12186 -ord_union(Set1, [], Set1, []) :- !.ord_union437,12458 -ord_union(Set1, [], Set1, []) :- !.ord_union437,12458 -ord_union(Set1, [], Set1, []) :- !.ord_union437,12458 -ord_union([], Set2, Set2, Set2) :- !.ord_union438,12494 -ord_union([], Set2, Set2, Set2) :- !.ord_union438,12494 -ord_union([], Set2, Set2, Set2) :- !.ord_union438,12494 -ord_union([Head1|Tail1], [Head2|Tail2], Union, Diff) :-ord_union439,12532 -ord_union([Head1|Tail1], [Head2|Tail2], Union, Diff) :-ord_union439,12532 -ord_union([Head1|Tail1], [Head2|Tail2], Union, Diff) :-ord_union439,12532 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union], Diff) :-ord_union443,12680 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union], Diff) :-ord_union443,12680 -ord_union(=, Head, Tail1, _, Tail2, [Head|Union], Diff) :-ord_union443,12680 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union], Diff) :-ord_union445,12780 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union], Diff) :-ord_union445,12780 -ord_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union], Diff) :-ord_union445,12780 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union], [Head2|Diff]) :-ord_union447,12892 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union], [Head2|Diff]) :-ord_union447,12892 -ord_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union], [Head2|Diff]) :-ord_union447,12892 -ord_setproduct([], _, []).ord_setproduct459,13380 -ord_setproduct([], _, []).ord_setproduct459,13380 -ord_setproduct([H|T], L, Product) :-ord_setproduct460,13407 -ord_setproduct([H|T], L, Product) :-ord_setproduct460,13407 -ord_setproduct([H|T], L, Product) :-ord_setproduct460,13407 -ord_setproduct([], _, L, L).ord_setproduct464,13512 -ord_setproduct([], _, L, L).ord_setproduct464,13512 -ord_setproduct([H|T], X, [X-H|TX], TL) :-ord_setproduct465,13541 -ord_setproduct([H|T], X, [X-H|TX], TL) :-ord_setproduct465,13541 -ord_setproduct([H|T], X, [X-H|TX], TL) :-ord_setproduct465,13541 -ord_member(El,[H|T]):-ord_member469,13616 -ord_member(El,[H|T]):-ord_member469,13616 -ord_member(El,[H|T]):-ord_member469,13616 -ord_member(=,_,_).ord_member473,13687 -ord_member(=,_,_).ord_member473,13687 -ord_member(>,El,[H|T]) :-ord_member474,13706 -ord_member(>,El,[H|T]) :-ord_member474,13706 -ord_member(>,El,[H|T]) :-ord_member474,13706 -ord_union([], []).ord_union478,13780 -ord_union([], []).ord_union478,13780 -ord_union([Set|Sets], Union) :-ord_union479,13799 -ord_union([Set|Sets], Union) :-ord_union479,13799 -ord_union([Set|Sets], Union) :-ord_union479,13799 -ord_union_all(N,Sets0,Union,Sets) :-ord_union_all483,13926 -ord_union_all(N,Sets0,Union,Sets) :-ord_union_all483,13926 -ord_union_all(N,Sets0,Union,Sets) :-ord_union_all483,13926 -ord_empty([]).ord_empty494,14241 -ord_empty([]).ord_empty494,14241 -ord_memberchk(Element, [E|_]) :- E == Element, !.ord_memberchk496,14257 -ord_memberchk(Element, [E|_]) :- E == Element, !.ord_memberchk496,14257 -ord_memberchk(Element, [E|_]) :- E == Element, !.ord_memberchk496,14257 -ord_memberchk(Element, [_|Set]) :-ord_memberchk497,14307 -ord_memberchk(Element, [_|Set]) :-ord_memberchk497,14307 -ord_memberchk(Element, [_|Set]) :-ord_memberchk497,14307 - -packages/python/swig/yap4py/prolog/os/chartypes.yap,172986 -:- discontiguous digit_weight/2, digit_weight/3.discontiguous147,4205 -:- discontiguous digit_weight/2, digit_weight/3.discontiguous147,4205 -prolog:char_type( CH, TYPE) :-char_type149,4255 -prolog:char_type( CH, TYPE) :-char_type149,4255 -p_char_type( ALNUM, alnum) :-p_char_type165,4439 -p_char_type( ALNUM, alnum) :-p_char_type165,4439 -p_char_type( ALNUM, alnum) :-p_char_type165,4439 -p_char_type( ALPHA, alpha) :-p_char_type167,4499 -p_char_type( ALPHA, alpha) :-p_char_type167,4499 -p_char_type( ALPHA, alpha) :-p_char_type167,4499 -p_char_type( CSYM, csym) :-p_char_type169,4558 -p_char_type( CSYM, csym) :-p_char_type169,4558 -p_char_type( CSYM, csym) :-p_char_type169,4558 -p_char_type( CSYMF, csymf) :-p_char_type171,4614 -p_char_type( CSYMF, csymf) :-p_char_type171,4614 -p_char_type( CSYMF, csymf) :-p_char_type171,4614 -p_char_type( ASCII, ascii ) :-p_char_type173,4673 -p_char_type( ASCII, ascii ) :-p_char_type173,4673 -p_char_type( ASCII, ascii ) :-p_char_type173,4673 -p_char_type( WHITE, white) :-p_char_type175,4734 -p_char_type( WHITE, white) :-p_char_type175,4734 -p_char_type( WHITE, white) :-p_char_type175,4734 -p_char_type( CNTRL , cntrl) :-p_char_type177,4794 -p_char_type( CNTRL , cntrl) :-p_char_type177,4794 -p_char_type( CNTRL , cntrl) :-p_char_type177,4794 -p_char_type( DIGIT , digit) :-p_char_type179,4855 -p_char_type( DIGIT , digit) :-p_char_type179,4855 -p_char_type( DIGIT , digit) :-p_char_type179,4855 -p_char_type( DIGIT, digit(Weight) ) :-p_char_type181,4916 -p_char_type( DIGIT, digit(Weight) ) :-p_char_type181,4916 -p_char_type( DIGIT, digit(Weight) ) :-p_char_type181,4916 -p_char_type( XDIGIT, xdigit(Weight) ) :-p_char_type184,5021 -p_char_type( XDIGIT, xdigit(Weight) ) :-p_char_type184,5021 -p_char_type( XDIGIT, xdigit(Weight) ) :-p_char_type184,5021 -p_char_type( GRAPH , graph) :-p_char_type187,5131 -p_char_type( GRAPH , graph) :-p_char_type187,5131 -p_char_type( GRAPH , graph) :-p_char_type187,5131 -p_char_type( LOWER , lower) :-p_char_type189,5192 -p_char_type( LOWER , lower) :-p_char_type189,5192 -p_char_type( LOWER , lower) :-p_char_type189,5192 -p_char_type( LOWER, lower( Upper)) :-p_char_type191,5253 -p_char_type( LOWER, lower( Upper)) :-p_char_type191,5253 -p_char_type( LOWER, lower( Upper)) :-p_char_type191,5253 -p_char_type( LOWER, to_lower( Upper)) :-p_char_type194,5346 -p_char_type( LOWER, to_lower( Upper)) :-p_char_type194,5346 -p_char_type( LOWER, to_lower( Upper)) :-p_char_type194,5346 -p_char_type( UPPER, upper ) :-p_char_type196,5412 -p_char_type( UPPER, upper ) :-p_char_type196,5412 -p_char_type( UPPER, upper ) :-p_char_type196,5412 -p_char_type( UPPER , upper( Lower)) :-p_char_type198,5475 -p_char_type( UPPER , upper( Lower)) :-p_char_type198,5475 -p_char_type( UPPER , upper( Lower)) :-p_char_type198,5475 -p_char_type( UPPER, to_upper( Lower) ) :-p_char_type201,5572 -p_char_type( UPPER, to_upper( Lower) ) :-p_char_type201,5572 -p_char_type( UPPER, to_upper( Lower) ) :-p_char_type201,5572 -p_char_type( PUNCT , punct) :-p_char_type203,5639 -p_char_type( PUNCT , punct) :-p_char_type203,5639 -p_char_type( PUNCT , punct) :-p_char_type203,5639 -p_char_type( SPACE , space) :-p_char_type205,5700 -p_char_type( SPACE , space) :-p_char_type205,5700 -p_char_type( SPACE , space) :-p_char_type205,5700 -p_char_type( END_OF_FILE , end_of_file) :-p_char_type207,5761 -p_char_type( END_OF_FILE , end_of_file) :-p_char_type207,5761 -p_char_type( END_OF_FILE , end_of_file) :-p_char_type207,5761 -p_char_type( END_OF_LINE , end_of_line) :-p_char_type209,5846 -p_char_type( END_OF_LINE , end_of_line) :-p_char_type209,5846 -p_char_type( END_OF_LINE , end_of_line) :-p_char_type209,5846 -p_char_type( NEWLINE , newline) :-p_char_type211,5931 -p_char_type( NEWLINE , newline) :-p_char_type211,5931 -p_char_type( NEWLINE , newline) :-p_char_type211,5931 -p_char_type( PERIOD , period) :-p_char_type213,6000 -p_char_type( PERIOD , period) :-p_char_type213,6000 -p_char_type( PERIOD , period) :-p_char_type213,6000 -p_char_type( QUOTE , quote) :-p_char_type215,6065 -p_char_type( QUOTE , quote) :-p_char_type215,6065 -p_char_type( QUOTE , quote) :-p_char_type215,6065 -p_char_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_char_type217,6126 -p_char_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_char_type217,6126 -p_char_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_char_type217,6126 -p_char_type( PROLOG_VAR_START , prolog_var_start) :-p_char_type219,6220 -p_char_type( PROLOG_VAR_START , prolog_var_start) :-p_char_type219,6220 -p_char_type( PROLOG_VAR_START , prolog_var_start) :-p_char_type219,6220 -p_char_type( PROLOG_ATOM_START , prolog_atom_start) :-p_char_type221,6325 -p_char_type( PROLOG_ATOM_START , prolog_atom_start) :-p_char_type221,6325 -p_char_type( PROLOG_ATOM_START , prolog_atom_start) :-p_char_type221,6325 -p_char_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_char_type223,6434 -p_char_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_char_type223,6434 -p_char_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_char_type223,6434 -p_char_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_char_type225,6579 -p_char_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_char_type225,6579 -p_char_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_char_type225,6579 -prolog:code_type(CH, TYPE) :-code_type228,6701 -prolog:code_type(CH, TYPE) :-code_type228,6701 -p_code_type( ALNUM, alnum) :-p_code_type242,6873 -p_code_type( ALNUM, alnum) :-p_code_type242,6873 -p_code_type( ALNUM, alnum) :-p_code_type242,6873 -p_code_type( ALPHA, alpha) :-p_code_type244,6930 -p_code_type( ALPHA, alpha) :-p_code_type244,6930 -p_code_type( ALPHA, alpha) :-p_code_type244,6930 -p_code_type( CSYM, csym) :-p_code_type246,6986 -p_code_type( CSYM, csym) :-p_code_type246,6986 -p_code_type( CSYM, csym) :-p_code_type246,6986 -p_code_type( CSYMF, csymf) :-p_code_type248,7039 -p_code_type( CSYMF, csymf) :-p_code_type248,7039 -p_code_type( CSYMF, csymf) :-p_code_type248,7039 -p_code_type( ASCII, ascii ) :-p_code_type250,7095 -p_code_type( ASCII, ascii ) :-p_code_type250,7095 -p_code_type( ASCII, ascii ) :-p_code_type250,7095 -p_code_type( WHITE, white) :-p_code_type252,7153 -p_code_type( WHITE, white) :-p_code_type252,7153 -p_code_type( WHITE, white) :-p_code_type252,7153 -p_code_type( CNTRL , cntrl) :-p_code_type254,7210 -p_code_type( CNTRL , cntrl) :-p_code_type254,7210 -p_code_type( CNTRL , cntrl) :-p_code_type254,7210 -p_code_type( DIGIT , digit) :-p_code_type256,7268 -p_code_type( DIGIT , digit) :-p_code_type256,7268 -p_code_type( DIGIT , digit) :-p_code_type256,7268 -p_code_type( DIGIT, digit(Weight) ) :-p_code_type258,7326 -p_code_type( DIGIT, digit(Weight) ) :-p_code_type258,7326 -p_code_type( DIGIT, digit(Weight) ) :-p_code_type258,7326 -p_code_type( XDIGIT, xdigit(Weight) ) :-p_code_type261,7425 -p_code_type( XDIGIT, xdigit(Weight) ) :-p_code_type261,7425 -p_code_type( XDIGIT, xdigit(Weight) ) :-p_code_type261,7425 -p_code_type( GRAPH , graph) :-p_code_type264,7528 -p_code_type( GRAPH , graph) :-p_code_type264,7528 -p_code_type( GRAPH , graph) :-p_code_type264,7528 -p_code_type( LOWER , lower) :-p_code_type266,7586 -p_code_type( LOWER , lower) :-p_code_type266,7586 -p_code_type( LOWER , lower) :-p_code_type266,7586 -p_code_type( LOWER, lower( Upper)) :-p_code_type268,7644 -p_code_type( LOWER, lower( Upper)) :-p_code_type268,7644 -p_code_type( LOWER, lower( Upper)) :-p_code_type268,7644 -p_code_type( LOWER, to_lower( Upper)) :-p_code_type271,7734 -p_code_type( LOWER, to_lower( Upper)) :-p_code_type271,7734 -p_code_type( LOWER, to_lower( Upper)) :-p_code_type271,7734 -p_code_type( UPPER, upper ) :-p_code_type273,7800 -p_code_type( UPPER, upper ) :-p_code_type273,7800 -p_code_type( UPPER, upper ) :-p_code_type273,7800 -p_code_type( UPPER , upper( Lower)) :-p_code_type275,7859 -p_code_type( UPPER , upper( Lower)) :-p_code_type275,7859 -p_code_type( UPPER , upper( Lower)) :-p_code_type275,7859 -p_code_type( UPPER, to_upper( Lower) ) :-p_code_type277,7923 -p_code_type( UPPER, to_upper( Lower) ) :-p_code_type277,7923 -p_code_type( UPPER, to_upper( Lower) ) :-p_code_type277,7923 -p_code_type( PUNCT , punct) :-p_code_type280,8016 -p_code_type( PUNCT , punct) :-p_code_type280,8016 -p_code_type( PUNCT , punct) :-p_code_type280,8016 -p_code_type( SPACE , space) :-p_code_type282,8074 -p_code_type( SPACE , space) :-p_code_type282,8074 -p_code_type( SPACE , space) :-p_code_type282,8074 -p_code_type( END_OF_FILE , end_of_file) :-p_code_type284,8132 -p_code_type( END_OF_FILE , end_of_file) :-p_code_type284,8132 -p_code_type( END_OF_FILE , end_of_file) :-p_code_type284,8132 -p_code_type( END_OF_LINE , end_of_line) :-p_code_type286,8214 -p_code_type( END_OF_LINE , end_of_line) :-p_code_type286,8214 -p_code_type( END_OF_LINE , end_of_line) :-p_code_type286,8214 -p_code_type( NEWLINE , newline) :-p_code_type288,8296 -p_code_type( NEWLINE , newline) :-p_code_type288,8296 -p_code_type( NEWLINE , newline) :-p_code_type288,8296 -p_code_type( PERIOD , period) :-p_code_type290,8362 -p_code_type( PERIOD , period) :-p_code_type290,8362 -p_code_type( PERIOD , period) :-p_code_type290,8362 -p_code_type( QUOTE , quote) :-p_code_type292,8424 -p_code_type( QUOTE , quote) :-p_code_type292,8424 -p_code_type( QUOTE , quote) :-p_code_type292,8424 -p_code_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_code_type294,8482 -p_code_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_code_type294,8482 -p_code_type( Parent_Open, paren( PAREN_CLOSE) ) :-p_code_type294,8482 -p_code_type( PROLOG_VAR_START , prolog_var_start) :-p_code_type296,8573 -p_code_type( PROLOG_VAR_START , prolog_var_start) :-p_code_type296,8573 -p_code_type( PROLOG_VAR_START , prolog_var_start) :-p_code_type296,8573 -p_code_type( PROLOG_ATOM_START , prolog_atom_start) :-p_code_type298,8675 -p_code_type( PROLOG_ATOM_START , prolog_atom_start) :-p_code_type298,8675 -p_code_type( PROLOG_ATOM_START , prolog_atom_start) :-p_code_type298,8675 -p_code_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_code_type300,8781 -p_code_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_code_type300,8781 -p_code_type( PROLOG_IDENTIFIER_CONTINUE , prolog_identifier_continue) :-p_code_type300,8781 -p_code_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_code_type302,8923 -p_code_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_code_type302,8923 -p_code_type( PROLOG_PROLOG_SYMBOL , prolog_prolog_symbol) :-p_code_type302,8923 -digit_weight( 0x0F33, -1/2).digit_weight315,9259 -digit_weight( 0x0F33, -1/2).digit_weight315,9259 -digit_weight( 0x0030, 0).digit_weight316,9288 -digit_weight( 0x0030, 0).digit_weight316,9288 -digit_weight( 0x0660, 0).digit_weight317,9314 -digit_weight( 0x0660, 0).digit_weight317,9314 -digit_weight( 0x06F0, 0).digit_weight318,9340 -digit_weight( 0x06F0, 0).digit_weight318,9340 -digit_weight( 0x07C0, 0).digit_weight319,9366 -digit_weight( 0x07C0, 0).digit_weight319,9366 -digit_weight( 0x0966, 0).digit_weight320,9392 -digit_weight( 0x0966, 0).digit_weight320,9392 -digit_weight( 0x09E6, 0).digit_weight321,9418 -digit_weight( 0x09E6, 0).digit_weight321,9418 -digit_weight( 0x0A66, 0).digit_weight322,9444 -digit_weight( 0x0A66, 0).digit_weight322,9444 -digit_weight( 0x0AE6, 0).digit_weight323,9470 -digit_weight( 0x0AE6, 0).digit_weight323,9470 -digit_weight( 0x0B66, 0).digit_weight324,9496 -digit_weight( 0x0B66, 0).digit_weight324,9496 -digit_weight( 0x0BE6, 0).digit_weight325,9522 -digit_weight( 0x0BE6, 0).digit_weight325,9522 -digit_weight( 0x0C66, 0).digit_weight326,9548 -digit_weight( 0x0C66, 0).digit_weight326,9548 -digit_weight( 0x0C78, 0).digit_weight327,9574 -digit_weight( 0x0C78, 0).digit_weight327,9574 -digit_weight( 0x0CE6, 0).digit_weight328,9600 -digit_weight( 0x0CE6, 0).digit_weight328,9600 -digit_weight( 0x0D66, 0).digit_weight329,9626 -digit_weight( 0x0D66, 0).digit_weight329,9626 -digit_weight( 0x0DE6, 0).digit_weight330,9652 -digit_weight( 0x0DE6, 0).digit_weight330,9652 -digit_weight( 0x0E50, 0).digit_weight331,9678 -digit_weight( 0x0E50, 0).digit_weight331,9678 -digit_weight( 0x0ED0, 0).digit_weight332,9704 -digit_weight( 0x0ED0, 0).digit_weight332,9704 -digit_weight( 0x0F20, 0).digit_weight333,9730 -digit_weight( 0x0F20, 0).digit_weight333,9730 -digit_weight( 0x1040, 0).digit_weight334,9756 -digit_weight( 0x1040, 0).digit_weight334,9756 -digit_weight( 0x1090, 0).digit_weight335,9782 -digit_weight( 0x1090, 0).digit_weight335,9782 -digit_weight( 0x17E0, 0).digit_weight336,9808 -digit_weight( 0x17E0, 0).digit_weight336,9808 -digit_weight( 0x17F0, 0).digit_weight337,9834 -digit_weight( 0x17F0, 0).digit_weight337,9834 -digit_weight( 0x1810, 0).digit_weight338,9860 -digit_weight( 0x1810, 0).digit_weight338,9860 -digit_weight( 0x1946, 0).digit_weight339,9886 -digit_weight( 0x1946, 0).digit_weight339,9886 -digit_weight( 0x19D0, 0).digit_weight340,9912 -digit_weight( 0x19D0, 0).digit_weight340,9912 -digit_weight( 0x1A80, 0).digit_weight341,9938 -digit_weight( 0x1A80, 0).digit_weight341,9938 -digit_weight( 0x1A90, 0).digit_weight342,9964 -digit_weight( 0x1A90, 0).digit_weight342,9964 -digit_weight( 0x1B50, 0).digit_weight343,9990 -digit_weight( 0x1B50, 0).digit_weight343,9990 -digit_weight( 0x1BB0, 0).digit_weight344,10016 -digit_weight( 0x1BB0, 0).digit_weight344,10016 -digit_weight( 0x1C40, 0).digit_weight345,10042 -digit_weight( 0x1C40, 0).digit_weight345,10042 -digit_weight( 0x1C50, 0).digit_weight346,10068 -digit_weight( 0x1C50, 0).digit_weight346,10068 -digit_weight( 0x2070, 0).digit_weight347,10094 -digit_weight( 0x2070, 0).digit_weight347,10094 -digit_weight( 0x2080, 0).digit_weight348,10120 -digit_weight( 0x2080, 0).digit_weight348,10120 -digit_weight( 0x2189, 0).digit_weight349,10146 -digit_weight( 0x2189, 0).digit_weight349,10146 -digit_weight( 0x24EA, 0).digit_weight350,10172 -digit_weight( 0x24EA, 0).digit_weight350,10172 -digit_weight( 0x24FF, 0).digit_weight351,10198 -digit_weight( 0x24FF, 0).digit_weight351,10198 -digit_weight( 0x3007, 0).digit_weight352,10224 -digit_weight( 0x3007, 0).digit_weight352,10224 -digit_weight( 0x96F6, 0).digit_weight353,10250 -digit_weight( 0x96F6, 0).digit_weight353,10250 -digit_weight( 0xA620, 0).digit_weight354,10276 -digit_weight( 0xA620, 0).digit_weight354,10276 -digit_weight( 0xA6EF, 0).digit_weight355,10302 -digit_weight( 0xA6EF, 0).digit_weight355,10302 -digit_weight( 0xA8D0, 0).digit_weight356,10328 -digit_weight( 0xA8D0, 0).digit_weight356,10328 -digit_weight( 0xA900, 0).digit_weight357,10354 -digit_weight( 0xA900, 0).digit_weight357,10354 -digit_weight( 0xA9D0, 0).digit_weight358,10380 -digit_weight( 0xA9D0, 0).digit_weight358,10380 -digit_weight( 0xA9F0, 0).digit_weight359,10406 -digit_weight( 0xA9F0, 0).digit_weight359,10406 -digit_weight( 0xAA50, 0).digit_weight360,10432 -digit_weight( 0xAA50, 0).digit_weight360,10432 -digit_weight( 0xABF0, 0).digit_weight361,10458 -digit_weight( 0xABF0, 0).digit_weight361,10458 -digit_weight( 0xF9B2, 0).digit_weight362,10484 -digit_weight( 0xF9B2, 0).digit_weight362,10484 -digit_weight( 0xFF10, 0).digit_weight363,10510 -digit_weight( 0xFF10, 0).digit_weight363,10510 -digit_weight( 0x1018A, 0).digit_weight364,10536 -digit_weight( 0x1018A, 0).digit_weight364,10536 -digit_weight( 0x104A0, 0).digit_weight365,10563 -digit_weight( 0x104A0, 0).digit_weight365,10563 -digit_weight( 0x11066, 0).digit_weight366,10590 -digit_weight( 0x11066, 0).digit_weight366,10590 -digit_weight( 0x110F0, 0).digit_weight367,10617 -digit_weight( 0x110F0, 0).digit_weight367,10617 -digit_weight( 0x11136, 0).digit_weight368,10644 -digit_weight( 0x11136, 0).digit_weight368,10644 -digit_weight( 0x111D0, 0).digit_weight369,10671 -digit_weight( 0x111D0, 0).digit_weight369,10671 -digit_weight( 0x112F0, 0).digit_weight370,10698 -digit_weight( 0x112F0, 0).digit_weight370,10698 -digit_weight( 0x114D0, 0).digit_weight371,10725 -digit_weight( 0x114D0, 0).digit_weight371,10725 -digit_weight( 0x11650, 0).digit_weight372,10752 -digit_weight( 0x11650, 0).digit_weight372,10752 -digit_weight( 0x116C0, 0).digit_weight373,10779 -digit_weight( 0x116C0, 0).digit_weight373,10779 -digit_weight( 0x11730, 0).digit_weight374,10806 -digit_weight( 0x11730, 0).digit_weight374,10806 -digit_weight( 0x118E0, 0).digit_weight375,10833 -digit_weight( 0x118E0, 0).digit_weight375,10833 -digit_weight( 0x16A60, 0).digit_weight376,10860 -digit_weight( 0x16A60, 0).digit_weight376,10860 -digit_weight( 0x16B50, 0).digit_weight377,10887 -digit_weight( 0x16B50, 0).digit_weight377,10887 -digit_weight( 0x1D7CE, 0).digit_weight378,10914 -digit_weight( 0x1D7CE, 0).digit_weight378,10914 -digit_weight( 0x1D7D8, 0).digit_weight379,10941 -digit_weight( 0x1D7D8, 0).digit_weight379,10941 -digit_weight( 0x1D7E2, 0).digit_weight380,10968 -digit_weight( 0x1D7E2, 0).digit_weight380,10968 -digit_weight( 0x1D7EC, 0).digit_weight381,10995 -digit_weight( 0x1D7EC, 0).digit_weight381,10995 -vdigit_weight( 0x1D7F6, 0).vdigit_weight382,11022 -vdigit_weight( 0x1D7F6, 0).vdigit_weight382,11022 -digit_weight( 0x1F100, 0x1F101, 0).digit_weight383,11050 -digit_weight( 0x1F100, 0x1F101, 0).digit_weight383,11050 -digit_weight( 0x1F10B, 0x1F10C, 0).digit_weight384,11086 -digit_weight( 0x1F10B, 0x1F10C, 0).digit_weight384,11086 -digit_weight( 0x09F4, 1/16).digit_weight385,11122 -digit_weight( 0x09F4, 1/16).digit_weight385,11122 -digit_weight( 0x0B75, 1/16).digit_weight386,11151 -digit_weight( 0x0B75, 1/16).digit_weight386,11151 -digit_weight( 0xA833, 1/16).digit_weight387,11180 -digit_weight( 0xA833, 1/16).digit_weight387,11180 -digit_weight( 0x109F6, 1/12).digit_weight388,11209 -digit_weight( 0x109F6, 1/12).digit_weight388,11209 -digit_weight( 0x2152, 1/10).digit_weight389,11239 -digit_weight( 0x2152, 1/10).digit_weight389,11239 -digit_weight( 0x2151, 1/9).digit_weight390,11268 -digit_weight( 0x2151, 1/9).digit_weight390,11268 -digit_weight( 0x09F5, 1/8).digit_weight391,11296 -digit_weight( 0x09F5, 1/8).digit_weight391,11296 -digit_weight( 0x0B76, 1/8).digit_weight392,11324 -digit_weight( 0x0B76, 1/8).digit_weight392,11324 -digit_weight( 0x215B, 1/8).digit_weight393,11352 -digit_weight( 0x215B, 1/8).digit_weight393,11352 -digit_weight( 0xA834, 1/8).digit_weight394,11380 -digit_weight( 0xA834, 1/8).digit_weight394,11380 -digit_weight( 0x1245F, 1/8).digit_weight395,11408 -digit_weight( 0x1245F, 1/8).digit_weight395,11408 -digit_weight( 0x2150, 1/7).digit_weight396,11437 -digit_weight( 0x2150, 1/7).digit_weight396,11437 -digit_weight( 0x2159, 1/6).digit_weight397,11465 -digit_weight( 0x2159, 1/6).digit_weight397,11465 -digit_weight( 0x109F7, 1/6).digit_weight398,11493 -digit_weight( 0x109F7, 1/6).digit_weight398,11493 -digit_weight( 0x12461, 1/6).digit_weight399,11522 -digit_weight( 0x12461, 1/6).digit_weight399,11522 -digit_weight( 0x09F6, 3/16).digit_weight400,11551 -digit_weight( 0x09F6, 3/16).digit_weight400,11551 -digit_weight( 0x0B77, 3/16).digit_weight401,11580 -digit_weight( 0x0B77, 3/16).digit_weight401,11580 -digit_weight( 0xA835, 3/16).digit_weight402,11609 -digit_weight( 0xA835, 3/16).digit_weight402,11609 -digit_weight( 0x2155, 1/5).digit_weight403,11638 -digit_weight( 0x2155, 1/5).digit_weight403,11638 -digit_weight( 0x00BC, 1/4).digit_weight404,11666 -digit_weight( 0x00BC, 1/4).digit_weight404,11666 -digit_weight( 0x09F7, 1/4).digit_weight405,11694 -digit_weight( 0x09F7, 1/4).digit_weight405,11694 -digit_weight( 0x0B72, 1/4).digit_weight406,11722 -digit_weight( 0x0B72, 1/4).digit_weight406,11722 -digit_weight( 0x0D73, 1/4).digit_weight407,11750 -digit_weight( 0x0D73, 1/4).digit_weight407,11750 -digit_weight( 0xA830, 1/4).digit_weight408,11778 -digit_weight( 0xA830, 1/4).digit_weight408,11778 -digit_weight( 0x10140, 1/4).digit_weight409,11806 -digit_weight( 0x10140, 1/4).digit_weight409,11806 -digit_weight( 0x1018B, 1/4).digit_weight410,11835 -digit_weight( 0x1018B, 1/4).digit_weight410,11835 -digit_weight( 0x109F8, 1/4).digit_weight411,11864 -digit_weight( 0x109F8, 1/4).digit_weight411,11864 -digit_weight( 0x10E7C, 1/4).digit_weight412,11893 -digit_weight( 0x10E7C, 1/4).digit_weight412,11893 -digit_weight( 0x12460, 1/4).digit_weight413,11922 -digit_weight( 0x12460, 1/4).digit_weight413,11922 -digit_weight( 0x12462, 0x12463, 1/4).digit_weight414,11951 -digit_weight( 0x12462, 0x12463, 1/4).digit_weight414,11951 -digit_weight( 0x2153, 1/3).digit_weight415,11989 -digit_weight( 0x2153, 1/3).digit_weight415,11989 -digit_weight( 0x109F9, 1/3).digit_weight416,12017 -digit_weight( 0x109F9, 1/3).digit_weight416,12017 -digit_weight( 0x10E7D, 1/3).digit_weight417,12046 -digit_weight( 0x10E7D, 1/3).digit_weight417,12046 -digit_weight( 0x1245A, 1/3).digit_weight418,12075 -digit_weight( 0x1245A, 1/3).digit_weight418,12075 -digit_weight( 0x1245D, 1/3).digit_weight419,12104 -digit_weight( 0x1245D, 1/3).digit_weight419,12104 -digit_weight( 0x12465, 1/3).digit_weight420,12133 -digit_weight( 0x12465, 1/3).digit_weight420,12133 -digit_weight( 0x215C, 3/8).digit_weight421,12162 -digit_weight( 0x215C, 3/8).digit_weight421,12162 -digit_weight( 0x2156, 2/5).digit_weight422,12190 -digit_weight( 0x2156, 2/5).digit_weight422,12190 -digit_weight( 0x109FA, 5/12).digit_weight423,12218 -digit_weight( 0x109FA, 5/12).digit_weight423,12218 -digit_weight( 0x00BD, 1/2).digit_weight424,12248 -digit_weight( 0x00BD, 1/2).digit_weight424,12248 -digit_weight( 0x0B73, 1/2).digit_weight425,12276 -digit_weight( 0x0B73, 1/2).digit_weight425,12276 -digit_weight( 0x0D74, 1/2).digit_weight426,12304 -digit_weight( 0x0D74, 1/2).digit_weight426,12304 -digit_weight( 0x0F2A, 1/2).digit_weight427,12332 -digit_weight( 0x0F2A, 1/2).digit_weight427,12332 -digit_weight( 0x2CFD, 1/2).digit_weight428,12360 -digit_weight( 0x2CFD, 1/2).digit_weight428,12360 -digit_weight( 0xA831, 1/2).digit_weight429,12388 -digit_weight( 0xA831, 1/2).digit_weight429,12388 -digit_weight( 0x10141, 1/2).digit_weight430,12416 -digit_weight( 0x10141, 1/2).digit_weight430,12416 -digit_weight( 0x10175, 0x10176, 1/2).digit_weight431,12445 -digit_weight( 0x10175, 0x10176, 1/2).digit_weight431,12445 -digit_weight( 0x109BD, 1/2).digit_weight432,12483 -digit_weight( 0x109BD, 1/2).digit_weight432,12483 -digit_weight( 0x109FB, 1/2).digit_weight433,12512 -digit_weight( 0x109FB, 1/2).digit_weight433,12512 -digit_weight( 0x10E7B, 1/2).digit_weight434,12541 -digit_weight( 0x10E7B, 1/2).digit_weight434,12541 -digit_weight( 0x12464, 1/2).digit_weight435,12570 -digit_weight( 0x12464, 1/2).digit_weight435,12570 -digit_weight( 0x109FC, 7/12).digit_weight436,12599 -digit_weight( 0x109FC, 7/12).digit_weight436,12599 -digit_weight( 0x2157, 3/5).digit_weight437,12629 -digit_weight( 0x2157, 3/5).digit_weight437,12629 -digit_weight( 0x215D, 5/8).digit_weight438,12657 -digit_weight( 0x215D, 5/8).digit_weight438,12657 -digit_weight( 0x2154, 2/3).digit_weight439,12685 -digit_weight( 0x2154, 2/3).digit_weight439,12685 -digit_weight( 0x10177, 2/3).digit_weight440,12713 -digit_weight( 0x10177, 2/3).digit_weight440,12713 -digit_weight( 0x109FD, 2/3).digit_weight441,12742 -digit_weight( 0x109FD, 2/3).digit_weight441,12742 -digit_weight( 0x10E7E, 2/3).digit_weight442,12771 -digit_weight( 0x10E7E, 2/3).digit_weight442,12771 -digit_weight( 0x1245B, 2/3).digit_weight443,12800 -digit_weight( 0x1245B, 2/3).digit_weight443,12800 -digit_weight( 0x1245E, 2/3).digit_weight444,12829 -digit_weight( 0x1245E, 2/3).digit_weight444,12829 -digit_weight( 0x12466, 2/3).digit_weight445,12858 -digit_weight( 0x12466, 2/3).digit_weight445,12858 -digit_weight( 0x00BE, 3/4).digit_weight446,12887 -digit_weight( 0x00BE, 3/4).digit_weight446,12887 -digit_weight( 0x09F8, 3/4).digit_weight447,12915 -digit_weight( 0x09F8, 3/4).digit_weight447,12915 -digit_weight( 0x0B74, 3/4).digit_weight448,12943 -digit_weight( 0x0B74, 3/4).digit_weight448,12943 -digit_weight( 0x0D75, 3/4).digit_weight449,12971 -digit_weight( 0x0D75, 3/4).digit_weight449,12971 -digit_weight( 0xA832, 3/4).digit_weight450,12999 -digit_weight( 0xA832, 3/4).digit_weight450,12999 -digit_weight( 0x10178, 3/4).digit_weight451,13027 -digit_weight( 0x10178, 3/4).digit_weight451,13027 -digit_weight( 0x109FE, 3/4).digit_weight452,13056 -digit_weight( 0x109FE, 3/4).digit_weight452,13056 -digit_weight( 0x2158, 4/5).digit_weight453,13085 -digit_weight( 0x2158, 4/5).digit_weight453,13085 -digit_weight( 0x215A, 5/6).digit_weight454,13113 -digit_weight( 0x215A, 5/6).digit_weight454,13113 -digit_weight( 0x109FF, 5/6).digit_weight455,13141 -digit_weight( 0x109FF, 5/6).digit_weight455,13141 -digit_weight( 0x1245C, 5/6).digit_weight456,13170 -digit_weight( 0x1245C, 5/6).digit_weight456,13170 -digit_weight( 0x215E, 7/8).digit_weight457,13199 -digit_weight( 0x215E, 7/8).digit_weight457,13199 -digit_weight( 0x109BC, 11/12).digit_weight458,13227 -digit_weight( 0x109BC, 11/12).digit_weight458,13227 -digit_weight( 0x0031, 1).digit_weight459,13258 -digit_weight( 0x0031, 1).digit_weight459,13258 -digit_weight( 0x00B9, 1).digit_weight460,13284 -digit_weight( 0x00B9, 1).digit_weight460,13284 -digit_weight( 0x0661, 1).digit_weight461,13310 -digit_weight( 0x0661, 1).digit_weight461,13310 -digit_weight( 0x06F1, 1).digit_weight462,13336 -digit_weight( 0x06F1, 1).digit_weight462,13336 -digit_weight( 0x07C1, 1).digit_weight463,13362 -digit_weight( 0x07C1, 1).digit_weight463,13362 -digit_weight( 0x0967, 1).digit_weight464,13388 -digit_weight( 0x0967, 1).digit_weight464,13388 -digit_weight( 0x09E7, 1).digit_weight465,13414 -digit_weight( 0x09E7, 1).digit_weight465,13414 -digit_weight( 0x0A67, 1).digit_weight466,13440 -digit_weight( 0x0A67, 1).digit_weight466,13440 -digit_weight( 0x0AE7, 1).digit_weight467,13466 -digit_weight( 0x0AE7, 1).digit_weight467,13466 -digit_weight( 0x0B67, 1).digit_weight468,13492 -digit_weight( 0x0B67, 1).digit_weight468,13492 -digit_weight( 0x0BE7, 1).digit_weight469,13518 -digit_weight( 0x0BE7, 1).digit_weight469,13518 -digit_weight( 0x0C67, 1).digit_weight470,13544 -digit_weight( 0x0C67, 1).digit_weight470,13544 -digit_weight( 0x0C79, 1).digit_weight471,13570 -digit_weight( 0x0C79, 1).digit_weight471,13570 -digit_weight( 0x0C7C, 1).digit_weight472,13596 -digit_weight( 0x0C7C, 1).digit_weight472,13596 -digit_weight( 0x0CE7, 1).digit_weight473,13622 -digit_weight( 0x0CE7, 1).digit_weight473,13622 -digit_weight( 0x0D67, 1).digit_weight474,13648 -digit_weight( 0x0D67, 1).digit_weight474,13648 -digit_weight( 0x0DE7, 1).digit_weight475,13674 -digit_weight( 0x0DE7, 1).digit_weight475,13674 -digit_weight( 0x0E51, 1).digit_weight476,13700 -digit_weight( 0x0E51, 1).digit_weight476,13700 -digit_weight( 0x0ED1, 1).digit_weight477,13726 -digit_weight( 0x0ED1, 1).digit_weight477,13726 -digit_weight( 0x0F21, 1).digit_weight478,13752 -digit_weight( 0x0F21, 1).digit_weight478,13752 -digit_weight( 0x1041, 1).digit_weight479,13778 -digit_weight( 0x1041, 1).digit_weight479,13778 -digit_weight( 0x1091, 1).digit_weight480,13804 -digit_weight( 0x1091, 1).digit_weight480,13804 -digit_weight( 0x1369, 1).digit_weight481,13830 -digit_weight( 0x1369, 1).digit_weight481,13830 -digit_weight( 0x17E1, 1).digit_weight482,13856 -digit_weight( 0x17E1, 1).digit_weight482,13856 -digit_weight( 0x17F1, 1).digit_weight483,13882 -digit_weight( 0x17F1, 1).digit_weight483,13882 -digit_weight( 0x1811, 1).digit_weight484,13908 -digit_weight( 0x1811, 1).digit_weight484,13908 -digit_weight( 0x1947, 1).digit_weight485,13934 -digit_weight( 0x1947, 1).digit_weight485,13934 -digit_weight( 0x19D1, 1).digit_weight486,13960 -digit_weight( 0x19D1, 1).digit_weight486,13960 -digit_weight( 0x19DA, 1).digit_weight487,13986 -digit_weight( 0x19DA, 1).digit_weight487,13986 -digit_weight( 0x1A81, 1).digit_weight488,14012 -digit_weight( 0x1A81, 1).digit_weight488,14012 -digit_weight( 0x1A91, 1).digit_weight489,14038 -digit_weight( 0x1A91, 1).digit_weight489,14038 -digit_weight( 0x1B51, 1).digit_weight490,14064 -digit_weight( 0x1B51, 1).digit_weight490,14064 -digit_weight( 0x1BB1, 1).digit_weight491,14090 -digit_weight( 0x1BB1, 1).digit_weight491,14090 -digit_weight( 0x1C41, 1).digit_weight492,14116 -digit_weight( 0x1C41, 1).digit_weight492,14116 -digit_weight( 0x1C51, 1).digit_weight493,14142 -digit_weight( 0x1C51, 1).digit_weight493,14142 -digit_weight( 0x2081, 1).digit_weight494,14168 -digit_weight( 0x2081, 1).digit_weight494,14168 -digit_weight( 0x215F, 1).digit_weight495,14194 -digit_weight( 0x215F, 1).digit_weight495,14194 -digit_weight( 0x2160, 1).digit_weight496,14220 -digit_weight( 0x2160, 1).digit_weight496,14220 -digit_weight( 0x2170, 1).digit_weight497,14246 -digit_weight( 0x2170, 1).digit_weight497,14246 -digit_weight( 0x2460, 1).digit_weight498,14272 -digit_weight( 0x2460, 1).digit_weight498,14272 -digit_weight( 0x2474, 1).digit_weight499,14298 -digit_weight( 0x2474, 1).digit_weight499,14298 -digit_weight( 0x2488, 1).digit_weight500,14324 -digit_weight( 0x2488, 1).digit_weight500,14324 -digit_weight( 0x24F5, 1).digit_weight501,14350 -digit_weight( 0x24F5, 1).digit_weight501,14350 -digit_weight( 0x2776, 1).digit_weight502,14376 -digit_weight( 0x2776, 1).digit_weight502,14376 -digit_weight( 0x2780, 1).digit_weight503,14402 -digit_weight( 0x2780, 1).digit_weight503,14402 -digit_weight( 0x278A, 1).digit_weight504,14428 -digit_weight( 0x278A, 1).digit_weight504,14428 -digit_weight( 0x3021, 1).digit_weight505,14454 -digit_weight( 0x3021, 1).digit_weight505,14454 -digit_weight( 0x3192, 1).digit_weight506,14480 -digit_weight( 0x3192, 1).digit_weight506,14480 -digit_weight( 0x3220, 1).digit_weight507,14506 -digit_weight( 0x3220, 1).digit_weight507,14506 -digit_weight( 0x3280, 1).digit_weight508,14532 -digit_weight( 0x3280, 1).digit_weight508,14532 -digit_weight( 0x4E00, 1).digit_weight509,14558 -digit_weight( 0x4E00, 1).digit_weight509,14558 -digit_weight( 0x58F1, 1).digit_weight510,14584 -digit_weight( 0x58F1, 1).digit_weight510,14584 -digit_weight( 0x58F9, 1).digit_weight511,14610 -digit_weight( 0x58F9, 1).digit_weight511,14610 -digit_weight( 0x5E7A, 1).digit_weight512,14636 -digit_weight( 0x5E7A, 1).digit_weight512,14636 -digit_weight( 0x5F0C, 1).digit_weight513,14662 -digit_weight( 0x5F0C, 1).digit_weight513,14662 -digit_weight( 0xA621, 1).digit_weight514,14688 -digit_weight( 0xA621, 1).digit_weight514,14688 -digit_weight( 0xA6E6, 1).digit_weight515,14714 -digit_weight( 0xA6E6, 1).digit_weight515,14714 -digit_weight( 0xA8D1, 1).digit_weight516,14740 -digit_weight( 0xA8D1, 1).digit_weight516,14740 -digit_weight( 0xA901, 1).digit_weight517,14766 -digit_weight( 0xA901, 1).digit_weight517,14766 -digit_weight( 0xA9D1, 1).digit_weight518,14792 -digit_weight( 0xA9D1, 1).digit_weight518,14792 -digit_weight( 0xA9F1, 1).digit_weight519,14818 -digit_weight( 0xA9F1, 1).digit_weight519,14818 -digit_weight( 0xAA51, 1).digit_weight520,14844 -digit_weight( 0xAA51, 1).digit_weight520,14844 -digit_weight( 0xABF1, 1).digit_weight521,14870 -digit_weight( 0xABF1, 1).digit_weight521,14870 -digit_weight( 0xFF11, 1).digit_weight522,14896 -digit_weight( 0xFF11, 1).digit_weight522,14896 -digit_weight( 0x10107, 1).digit_weight523,14922 -digit_weight( 0x10107, 1).digit_weight523,14922 -digit_weight( 0x10142, 1).digit_weight524,14949 -digit_weight( 0x10142, 1).digit_weight524,14949 -digit_weight( 0x10158, 0x1015A, 1).digit_weight525,14976 -digit_weight( 0x10158, 0x1015A, 1).digit_weight525,14976 -digit_weight( 0x102E1, 1).digit_weight526,15012 -digit_weight( 0x102E1, 1).digit_weight526,15012 -digit_weight( 0x10320, 1).digit_weight527,15039 -digit_weight( 0x10320, 1).digit_weight527,15039 -digit_weight( 0x103D1, 1).digit_weight528,15066 -digit_weight( 0x103D1, 1).digit_weight528,15066 -digit_weight( 0x104A1, 1).digit_weight529,15093 -digit_weight( 0x104A1, 1).digit_weight529,15093 -digit_weight( 0x10858, 1).digit_weight530,15120 -digit_weight( 0x10858, 1).digit_weight530,15120 -digit_weight( 0x10879, 1).digit_weight531,15147 -digit_weight( 0x10879, 1).digit_weight531,15147 -digit_weight( 0x108A7, 1).digit_weight532,15174 -digit_weight( 0x108A7, 1).digit_weight532,15174 -digit_weight( 0x108FB, 1).digit_weight533,15201 -digit_weight( 0x108FB, 1).digit_weight533,15201 -digit_weight( 0x10916, 1).digit_weight534,15228 -digit_weight( 0x10916, 1).digit_weight534,15228 -digit_weight( 0x109C0, 1).digit_weight535,15255 -digit_weight( 0x109C0, 1).digit_weight535,15255 -digit_weight( 0x10A40, 1).digit_weight536,15282 -digit_weight( 0x10A40, 1).digit_weight536,15282 -digit_weight( 0x10A7D, 1).digit_weight537,15309 -digit_weight( 0x10A7D, 1).digit_weight537,15309 -digit_weight( 0x10A9D, 1).digit_weight538,15336 -digit_weight( 0x10A9D, 1).digit_weight538,15336 -digit_weight( 0x10AEB, 1).digit_weight539,15363 -digit_weight( 0x10AEB, 1).digit_weight539,15363 -digit_weight( 0x10B58, 1).digit_weight540,15390 -digit_weight( 0x10B58, 1).digit_weight540,15390 -digit_weight( 0x10B78, 1).digit_weight541,15417 -digit_weight( 0x10B78, 1).digit_weight541,15417 -digit_weight( 0x10BA9, 1).digit_weight542,15444 -digit_weight( 0x10BA9, 1).digit_weight542,15444 -digit_weight( 0x10CFA, 1).digit_weight543,15471 -digit_weight( 0x10CFA, 1).digit_weight543,15471 -digit_weight( 0x10E60, 1).digit_weight544,15498 -digit_weight( 0x10E60, 1).digit_weight544,15498 -digit_weight( 0x11052, 1).digit_weight545,15525 -digit_weight( 0x11052, 1).digit_weight545,15525 -digit_weight( 0x11067, 1).digit_weight546,15552 -digit_weight( 0x11067, 1).digit_weight546,15552 -digit_weight( 0x110F1, 1).digit_weight547,15579 -digit_weight( 0x110F1, 1).digit_weight547,15579 -digit_weight( 0x11137, 1).digit_weight548,15606 -digit_weight( 0x11137, 1).digit_weight548,15606 -digit_weight( 0x111D1, 1).digit_weight549,15633 -digit_weight( 0x111D1, 1).digit_weight549,15633 -digit_weight( 0x111E1, 1).digit_weight550,15660 -digit_weight( 0x111E1, 1).digit_weight550,15660 -digit_weight( 0x112F1, 1).digit_weight551,15687 -digit_weight( 0x112F1, 1).digit_weight551,15687 -digit_weight( 0x114D1, 1).digit_weight552,15714 -digit_weight( 0x114D1, 1).digit_weight552,15714 -digit_weight( 0x11651, 1).digit_weight553,15741 -digit_weight( 0x11651, 1).digit_weight553,15741 -digit_weight( 0x116C1, 1).digit_weight554,15768 -digit_weight( 0x116C1, 1).digit_weight554,15768 -digit_weight( 0x11731, 1).digit_weight555,15795 -digit_weight( 0x11731, 1).digit_weight555,15795 -digit_weight( 0x118E1, 1).digit_weight556,15822 -digit_weight( 0x118E1, 1).digit_weight556,15822 -digit_weight( 0x12415, 1).digit_weight557,15849 -digit_weight( 0x12415, 1).digit_weight557,15849 -digit_weight( 0x1241E, 1).digit_weight558,15876 -digit_weight( 0x1241E, 1).digit_weight558,15876 -digit_weight( 0x1242C, 1).digit_weight559,15903 -digit_weight( 0x1242C, 1).digit_weight559,15903 -digit_weight( 0x12434, 1).digit_weight560,15930 -digit_weight( 0x12434, 1).digit_weight560,15930 -digit_weight( 0x1244F, 1).digit_weight561,15957 -digit_weight( 0x1244F, 1).digit_weight561,15957 -digit_weight( 0x12458, 1).digit_weight562,15984 -digit_weight( 0x12458, 1).digit_weight562,15984 -digit_weight( 0x16A61, 1).digit_weight563,16011 -digit_weight( 0x16A61, 1).digit_weight563,16011 -digit_weight( 0x16B51, 1).digit_weight564,16038 -digit_weight( 0x16B51, 1).digit_weight564,16038 -digit_weight( 0x1D360, 1).digit_weight565,16065 -digit_weight( 0x1D360, 1).digit_weight565,16065 -digit_weight( 0x1D7CF, 1).digit_weight566,16092 -digit_weight( 0x1D7CF, 1).digit_weight566,16092 -digit_weight( 0x1D7D9, 1).digit_weight567,16119 -digit_weight( 0x1D7D9, 1).digit_weight567,16119 -digit_weight( 0x1D7E3, 1).digit_weight568,16146 -digit_weight( 0x1D7E3, 1).digit_weight568,16146 -digit_weight( 0x1D7ED, 1).digit_weight569,16173 -digit_weight( 0x1D7ED, 1).digit_weight569,16173 -digit_weight( 0x1D7F7, 1).digit_weight570,16200 -digit_weight( 0x1D7F7, 1).digit_weight570,16200 -digit_weight( 0x1E8C7, 1).digit_weight571,16227 -digit_weight( 0x1E8C7, 1).digit_weight571,16227 -digit_weight( 0x1F102, 1).digit_weight572,16254 -digit_weight( 0x1F102, 1).digit_weight572,16254 -digit_weight( 0x2092A, 1).digit_weight573,16281 -digit_weight( 0x2092A, 1).digit_weight573,16281 -digit_weight( 0x0F2B, 3/2).digit_weight574,16308 -digit_weight( 0x0F2B, 3/2).digit_weight574,16308 -digit_weight( 0x0032, 2).digit_weight575,16336 -digit_weight( 0x0032, 2).digit_weight575,16336 -digit_weight( 0x00B2, 2).digit_weight576,16362 -digit_weight( 0x00B2, 2).digit_weight576,16362 -digit_weight( 0x0662, 2).digit_weight577,16388 -digit_weight( 0x0662, 2).digit_weight577,16388 -digit_weight( 0x06F2, 2).digit_weight578,16414 -digit_weight( 0x06F2, 2).digit_weight578,16414 -digit_weight( 0x07C2, 2).digit_weight579,16440 -digit_weight( 0x07C2, 2).digit_weight579,16440 -digit_weight( 0x0968, 2).digit_weight580,16466 -digit_weight( 0x0968, 2).digit_weight580,16466 -digit_weight( 0x09E8, 2).digit_weight581,16492 -digit_weight( 0x09E8, 2).digit_weight581,16492 -digit_weight( 0x0A68, 2).digit_weight582,16518 -digit_weight( 0x0A68, 2).digit_weight582,16518 -digit_weight( 0x0AE8, 2).digit_weight583,16544 -digit_weight( 0x0AE8, 2).digit_weight583,16544 -digit_weight( 0x0B68, 2).digit_weight584,16570 -digit_weight( 0x0B68, 2).digit_weight584,16570 -digit_weight( 0x0BE8, 2).digit_weight585,16596 -digit_weight( 0x0BE8, 2).digit_weight585,16596 -digit_weight( 0x0C68, 2).digit_weight586,16622 -digit_weight( 0x0C68, 2).digit_weight586,16622 -digit_weight( 0x0C7A, 2).digit_weight587,16648 -digit_weight( 0x0C7A, 2).digit_weight587,16648 -digit_weight( 0x0C7D, 2).digit_weight588,16674 -digit_weight( 0x0C7D, 2).digit_weight588,16674 -digit_weight( 0x0CE8, 2).digit_weight589,16700 -digit_weight( 0x0CE8, 2).digit_weight589,16700 -digit_weight( 0x0D68, 2).digit_weight590,16726 -digit_weight( 0x0D68, 2).digit_weight590,16726 -digit_weight( 0x0DE8, 2).digit_weight591,16752 -digit_weight( 0x0DE8, 2).digit_weight591,16752 -digit_weight( 0x0E52, 2).digit_weight592,16778 -digit_weight( 0x0E52, 2).digit_weight592,16778 -digit_weight( 0x0ED2, 2).digit_weight593,16804 -digit_weight( 0x0ED2, 2).digit_weight593,16804 -digit_weight( 0x0F22, 2).digit_weight594,16830 -digit_weight( 0x0F22, 2).digit_weight594,16830 -digit_weight( 0x1042, 2).digit_weight595,16856 -digit_weight( 0x1042, 2).digit_weight595,16856 -digit_weight( 0x1092, 2).digit_weight596,16882 -digit_weight( 0x1092, 2).digit_weight596,16882 -digit_weight( 0x136A, 2).digit_weight597,16908 -digit_weight( 0x136A, 2).digit_weight597,16908 -digit_weight( 0x17E2, 2).digit_weight598,16934 -digit_weight( 0x17E2, 2).digit_weight598,16934 -digit_weight( 0x17F2, 2).digit_weight599,16960 -digit_weight( 0x17F2, 2).digit_weight599,16960 -digit_weight( 0x1812, 2).digit_weight600,16986 -digit_weight( 0x1812, 2).digit_weight600,16986 -digit_weight( 0x1948, 2).digit_weight601,17012 -digit_weight( 0x1948, 2).digit_weight601,17012 -digit_weight( 0x19D2, 2).digit_weight602,17038 -digit_weight( 0x19D2, 2).digit_weight602,17038 -digit_weight( 0x1A82, 2).digit_weight603,17064 -digit_weight( 0x1A82, 2).digit_weight603,17064 -digit_weight( 0x1A92, 2).digit_weight604,17090 -digit_weight( 0x1A92, 2).digit_weight604,17090 -digit_weight( 0x1B52, 2).digit_weight605,17116 -digit_weight( 0x1B52, 2).digit_weight605,17116 -digit_weight( 0x1BB2, 2).digit_weight606,17142 -digit_weight( 0x1BB2, 2).digit_weight606,17142 -digit_weight( 0x1C42, 2).digit_weight607,17168 -digit_weight( 0x1C42, 2).digit_weight607,17168 -digit_weight( 0x1C52, 2).digit_weight608,17194 -digit_weight( 0x1C52, 2).digit_weight608,17194 -digit_weight( 0x2082, 2).digit_weight609,17220 -digit_weight( 0x2082, 2).digit_weight609,17220 -digit_weight( 0x2161, 2).digit_weight610,17246 -digit_weight( 0x2161, 2).digit_weight610,17246 -digit_weight( 0x2171, 2).digit_weight611,17272 -digit_weight( 0x2171, 2).digit_weight611,17272 -digit_weight( 0x2461, 2).digit_weight612,17298 -digit_weight( 0x2461, 2).digit_weight612,17298 -digit_weight( 0x2475, 2).digit_weight613,17324 -digit_weight( 0x2475, 2).digit_weight613,17324 -digit_weight( 0x2489, 2).digit_weight614,17350 -digit_weight( 0x2489, 2).digit_weight614,17350 -digit_weight( 0x24F6, 2).digit_weight615,17376 -digit_weight( 0x24F6, 2).digit_weight615,17376 -digit_weight( 0x2777, 2).digit_weight616,17402 -digit_weight( 0x2777, 2).digit_weight616,17402 -digit_weight( 0x2781, 2).digit_weight617,17428 -digit_weight( 0x2781, 2).digit_weight617,17428 -digit_weight( 0x278B, 2).digit_weight618,17454 -digit_weight( 0x278B, 2).digit_weight618,17454 -digit_weight( 0x3022, 2).digit_weight619,17480 -digit_weight( 0x3022, 2).digit_weight619,17480 -digit_weight( 0x3193, 2).digit_weight620,17506 -digit_weight( 0x3193, 2).digit_weight620,17506 -digit_weight( 0x3221, 2).digit_weight621,17532 -digit_weight( 0x3221, 2).digit_weight621,17532 -digit_weight( 0x3281, 2).digit_weight622,17558 -digit_weight( 0x3281, 2).digit_weight622,17558 -digit_weight( 0x3483, 2).digit_weight623,17584 -digit_weight( 0x3483, 2).digit_weight623,17584 -digit_weight( 0x4E8C, 2).digit_weight624,17610 -digit_weight( 0x4E8C, 2).digit_weight624,17610 -digit_weight( 0x5169, 2).digit_weight625,17636 -digit_weight( 0x5169, 2).digit_weight625,17636 -digit_weight( 0x5F0D, 2).digit_weight626,17662 -digit_weight( 0x5F0D, 2).digit_weight626,17662 -digit_weight( 0x5F10, 2).digit_weight627,17688 -digit_weight( 0x5F10, 2).digit_weight627,17688 -digit_weight( 0x8CAE, 2).digit_weight628,17714 -digit_weight( 0x8CAE, 2).digit_weight628,17714 -digit_weight( 0x8CB3, 2).digit_weight629,17740 -digit_weight( 0x8CB3, 2).digit_weight629,17740 -digit_weight( 0x8D30, 2).digit_weight630,17766 -digit_weight( 0x8D30, 2).digit_weight630,17766 -digit_weight( 0xA622, 2).digit_weight631,17792 -digit_weight( 0xA622, 2).digit_weight631,17792 -digit_weight( 0xA6E7, 2).digit_weight632,17818 -digit_weight( 0xA6E7, 2).digit_weight632,17818 -digit_weight( 0xA8D2, 2).digit_weight633,17844 -digit_weight( 0xA8D2, 2).digit_weight633,17844 -digit_weight( 0xA902, 2).digit_weight634,17870 -digit_weight( 0xA902, 2).digit_weight634,17870 -digit_weight( 0xA9D2, 2).digit_weight635,17896 -digit_weight( 0xA9D2, 2).digit_weight635,17896 -digit_weight( 0xA9F2, 2).digit_weight636,17922 -digit_weight( 0xA9F2, 2).digit_weight636,17922 -digit_weight( 0xAA52, 2).digit_weight637,17948 -digit_weight( 0xAA52, 2).digit_weight637,17948 -digit_weight( 0xABF2, 2).digit_weight638,17974 -digit_weight( 0xABF2, 2).digit_weight638,17974 -digit_weight( 0xF978, 2).digit_weight639,18000 -digit_weight( 0xF978, 2).digit_weight639,18000 -digit_weight( 0xFF12, 2).digit_weight640,18026 -digit_weight( 0xFF12, 2).digit_weight640,18026 -digit_weight( 0x10108, 2).digit_weight641,18052 -digit_weight( 0x10108, 2).digit_weight641,18052 -digit_weight( 0x1015B, 0x1015E, 2).digit_weight642,18079 -digit_weight( 0x1015B, 0x1015E, 2).digit_weight642,18079 -digit_weight( 0x102E2, 2).digit_weight643,18115 -digit_weight( 0x102E2, 2).digit_weight643,18115 -digit_weight( 0x103D2, 2).digit_weight644,18142 -digit_weight( 0x103D2, 2).digit_weight644,18142 -digit_weight( 0x104A2, 2).digit_weight645,18169 -digit_weight( 0x104A2, 2).digit_weight645,18169 -digit_weight( 0x10859, 2).digit_weight646,18196 -digit_weight( 0x10859, 2).digit_weight646,18196 -digit_weight( 0x1087A, 2).digit_weight647,18223 -digit_weight( 0x1087A, 2).digit_weight647,18223 -digit_weight( 0x108A8, 2).digit_weight648,18250 -digit_weight( 0x108A8, 2).digit_weight648,18250 -digit_weight( 0x1091A, 2).digit_weight649,18277 -digit_weight( 0x1091A, 2).digit_weight649,18277 -digit_weight( 0x109C1, 2).digit_weight650,18304 -digit_weight( 0x109C1, 2).digit_weight650,18304 -digit_weight( 0x10A41, 2).digit_weight651,18331 -digit_weight( 0x10A41, 2).digit_weight651,18331 -digit_weight( 0x10B59, 2).digit_weight652,18358 -digit_weight( 0x10B59, 2).digit_weight652,18358 -digit_weight( 0x10B79, 2).digit_weight653,18385 -digit_weight( 0x10B79, 2).digit_weight653,18385 -digit_weight( 0x10BAA, 2).digit_weight654,18412 -digit_weight( 0x10BAA, 2).digit_weight654,18412 -digit_weight( 0x10E61, 2).digit_weight655,18439 -digit_weight( 0x10E61, 2).digit_weight655,18439 -digit_weight( 0x11053, 2).digit_weight656,18466 -digit_weight( 0x11053, 2).digit_weight656,18466 -digit_weight( 0x11068, 2).digit_weight657,18493 -digit_weight( 0x11068, 2).digit_weight657,18493 -digit_weight( 0x110F2, 2).digit_weight658,18520 -digit_weight( 0x110F2, 2).digit_weight658,18520 -digit_weight( 0x11138, 2).digit_weight659,18547 -digit_weight( 0x11138, 2).digit_weight659,18547 -digit_weight( 0x111D2, 2).digit_weight660,18574 -digit_weight( 0x111D2, 2).digit_weight660,18574 -digit_weight( 0x111E2, 2).digit_weight661,18601 -digit_weight( 0x111E2, 2).digit_weight661,18601 -digit_weight( 0x112F2, 2).digit_weight662,18628 -digit_weight( 0x112F2, 2).digit_weight662,18628 -digit_weight( 0x114D2, 2).digit_weight663,18655 -digit_weight( 0x114D2, 2).digit_weight663,18655 -digit_weight( 0x11652, 2).digit_weight664,18682 -digit_weight( 0x11652, 2).digit_weight664,18682 -digit_weight( 0x116C2, 2).digit_weight665,18709 -digit_weight( 0x116C2, 2).digit_weight665,18709 -digit_weight( 0x11732, 2).digit_weight666,18736 -digit_weight( 0x11732, 2).digit_weight666,18736 -digit_weight( 0x118E2, 2).digit_weight667,18763 -digit_weight( 0x118E2, 2).digit_weight667,18763 -digit_weight( 0x12400, 2).digit_weight668,18790 -digit_weight( 0x12400, 2).digit_weight668,18790 -digit_weight( 0x12416, 2).digit_weight669,18817 -digit_weight( 0x12416, 2).digit_weight669,18817 -digit_weight( 0x1241F, 2).digit_weight670,18844 -digit_weight( 0x1241F, 2).digit_weight670,18844 -digit_weight( 0x12423, 2).digit_weight671,18871 -digit_weight( 0x12423, 2).digit_weight671,18871 -digit_weight( 0x1242D, 2).digit_weight672,18898 -digit_weight( 0x1242D, 2).digit_weight672,18898 -digit_weight( 0x12435, 2).digit_weight673,18925 -digit_weight( 0x12435, 2).digit_weight673,18925 -digit_weight( 0x1244A, 2).digit_weight674,18952 -digit_weight( 0x1244A, 2).digit_weight674,18952 -digit_weight( 0x12450, 2).digit_weight675,18979 -digit_weight( 0x12450, 2).digit_weight675,18979 -digit_weight( 0x12456, 2).digit_weight676,19006 -digit_weight( 0x12456, 2).digit_weight676,19006 -digit_weight( 0x12459, 2).digit_weight677,19033 -digit_weight( 0x12459, 2).digit_weight677,19033 -digit_weight( 0x16A62, 2).digit_weight678,19060 -digit_weight( 0x16A62, 2).digit_weight678,19060 -digit_weight( 0x16B52, 2).digit_weight679,19087 -digit_weight( 0x16B52, 2).digit_weight679,19087 -digit_weight( 0x1D361, 2).digit_weight680,19114 -digit_weight( 0x1D361, 2).digit_weight680,19114 -digit_weight( 0x1D7D0, 2).digit_weight681,19141 -digit_weight( 0x1D7D0, 2).digit_weight681,19141 -digit_weight( 0x1D7DA, 2).digit_weight682,19168 -digit_weight( 0x1D7DA, 2).digit_weight682,19168 -digit_weight( 0x1D7E4, 2).digit_weight683,19195 -digit_weight( 0x1D7E4, 2).digit_weight683,19195 -digit_weight( 0x1D7EE, 2).digit_weight684,19222 -digit_weight( 0x1D7EE, 2).digit_weight684,19222 -digit_weight( 0x1D7F8, 2).digit_weight685,19249 -digit_weight( 0x1D7F8, 2).digit_weight685,19249 -digit_weight( 0x1E8C8, 2).digit_weight686,19276 -digit_weight( 0x1E8C8, 2).digit_weight686,19276 -digit_weight( 0x1F103, 2).digit_weight687,19303 -digit_weight( 0x1F103, 2).digit_weight687,19303 -digit_weight( 0x22390, 2).digit_weight688,19330 -digit_weight( 0x22390, 2).digit_weight688,19330 -digit_weight( 0x0F2C, 5/2).digit_weight689,19357 -digit_weight( 0x0F2C, 5/2).digit_weight689,19357 -digit_weight( 0x0033, 3).digit_weight690,19385 -digit_weight( 0x0033, 3).digit_weight690,19385 -digit_weight( 0x00B3, 3).digit_weight691,19411 -digit_weight( 0x00B3, 3).digit_weight691,19411 -digit_weight( 0x0663, 3).digit_weight692,19437 -digit_weight( 0x0663, 3).digit_weight692,19437 -digit_weight( 0x06F3, 3).digit_weight693,19463 -digit_weight( 0x06F3, 3).digit_weight693,19463 -digit_weight( 0x07C3, 3).digit_weight694,19489 -digit_weight( 0x07C3, 3).digit_weight694,19489 -digit_weight( 0x0969, 3).digit_weight695,19515 -digit_weight( 0x0969, 3).digit_weight695,19515 -digit_weight( 0x09E9, 3).digit_weight696,19541 -digit_weight( 0x09E9, 3).digit_weight696,19541 -digit_weight( 0x0A69, 3).digit_weight697,19567 -digit_weight( 0x0A69, 3).digit_weight697,19567 -digit_weight( 0x0AE9, 3).digit_weight698,19593 -digit_weight( 0x0AE9, 3).digit_weight698,19593 -digit_weight( 0x0B69, 3).digit_weight699,19619 -digit_weight( 0x0B69, 3).digit_weight699,19619 -digit_weight( 0x0BE9, 3).digit_weight700,19645 -digit_weight( 0x0BE9, 3).digit_weight700,19645 -digit_weight( 0x0C69, 3).digit_weight701,19671 -digit_weight( 0x0C69, 3).digit_weight701,19671 -digit_weight( 0x0C7B, 3).digit_weight702,19697 -digit_weight( 0x0C7B, 3).digit_weight702,19697 -digit_weight( 0x0C7E, 3).digit_weight703,19723 -digit_weight( 0x0C7E, 3).digit_weight703,19723 -digit_weight( 0x0CE9, 3).digit_weight704,19749 -digit_weight( 0x0CE9, 3).digit_weight704,19749 -digit_weight( 0x0D69, 3).digit_weight705,19775 -digit_weight( 0x0D69, 3).digit_weight705,19775 -digit_weight( 0x0DE9, 3).digit_weight706,19801 -digit_weight( 0x0DE9, 3).digit_weight706,19801 -digit_weight( 0x0E53, 3).digit_weight707,19827 -digit_weight( 0x0E53, 3).digit_weight707,19827 -digit_weight( 0x0ED3, 3).digit_weight708,19853 -digit_weight( 0x0ED3, 3).digit_weight708,19853 -digit_weight( 0x0F23, 3).digit_weight709,19879 -digit_weight( 0x0F23, 3).digit_weight709,19879 -digit_weight( 0x1043, 3).digit_weight710,19905 -digit_weight( 0x1043, 3).digit_weight710,19905 -digit_weight( 0x1093, 3).digit_weight711,19931 -digit_weight( 0x1093, 3).digit_weight711,19931 -digit_weight( 0x136B, 3).digit_weight712,19957 -digit_weight( 0x136B, 3).digit_weight712,19957 -digit_weight( 0x17E3, 3).digit_weight713,19983 -digit_weight( 0x17E3, 3).digit_weight713,19983 -digit_weight( 0x17F3, 3).digit_weight714,20009 -digit_weight( 0x17F3, 3).digit_weight714,20009 -digit_weight( 0x1813, 3).digit_weight715,20035 -digit_weight( 0x1813, 3).digit_weight715,20035 -digit_weight( 0x1949, 3).digit_weight716,20061 -digit_weight( 0x1949, 3).digit_weight716,20061 -digit_weight( 0x19D3, 3).digit_weight717,20087 -digit_weight( 0x19D3, 3).digit_weight717,20087 -digit_weight( 0x1A83, 3).digit_weight718,20113 -digit_weight( 0x1A83, 3).digit_weight718,20113 -digit_weight( 0x1A93, 3).digit_weight719,20139 -digit_weight( 0x1A93, 3).digit_weight719,20139 -digit_weight( 0x1B53, 3).digit_weight720,20165 -digit_weight( 0x1B53, 3).digit_weight720,20165 -digit_weight( 0x1BB3, 3).digit_weight721,20191 -digit_weight( 0x1BB3, 3).digit_weight721,20191 -digit_weight( 0x1C43, 3).digit_weight722,20217 -digit_weight( 0x1C43, 3).digit_weight722,20217 -digit_weight( 0x1C53, 3).digit_weight723,20243 -digit_weight( 0x1C53, 3).digit_weight723,20243 -digit_weight( 0x2083, 3).digit_weight724,20269 -digit_weight( 0x2083, 3).digit_weight724,20269 -digit_weight( 0x2162, 3).digit_weight725,20295 -digit_weight( 0x2162, 3).digit_weight725,20295 -digit_weight( 0x2172, 3).digit_weight726,20321 -digit_weight( 0x2172, 3).digit_weight726,20321 -digit_weight( 0x2462, 3).digit_weight727,20347 -digit_weight( 0x2462, 3).digit_weight727,20347 -digit_weight( 0x2476, 3).digit_weight728,20373 -digit_weight( 0x2476, 3).digit_weight728,20373 -digit_weight( 0x248A, 3).digit_weight729,20399 -digit_weight( 0x248A, 3).digit_weight729,20399 -digit_weight( 0x24F7, 3).digit_weight730,20425 -digit_weight( 0x24F7, 3).digit_weight730,20425 -digit_weight( 0x2778, 3).digit_weight731,20451 -digit_weight( 0x2778, 3).digit_weight731,20451 -digit_weight( 0x2782, 3).digit_weight732,20477 -digit_weight( 0x2782, 3).digit_weight732,20477 -digit_weight( 0x278C, 3).digit_weight733,20503 -digit_weight( 0x278C, 3).digit_weight733,20503 -digit_weight( 0x3023, 3).digit_weight734,20529 -digit_weight( 0x3023, 3).digit_weight734,20529 -digit_weight( 0x3194, 3).digit_weight735,20555 -digit_weight( 0x3194, 3).digit_weight735,20555 -digit_weight( 0x3222, 3).digit_weight736,20581 -digit_weight( 0x3222, 3).digit_weight736,20581 -digit_weight( 0x3282, 3).digit_weight737,20607 -digit_weight( 0x3282, 3).digit_weight737,20607 -digit_weight( 0x4E09, 3).digit_weight738,20633 -digit_weight( 0x4E09, 3).digit_weight738,20633 -digit_weight( 0x4EE8, 3).digit_weight739,20659 -digit_weight( 0x4EE8, 3).digit_weight739,20659 -digit_weight( 0x53C1, 0x53C4, 3).digit_weight740,20685 -digit_weight( 0x53C1, 0x53C4, 3).digit_weight740,20685 -digit_weight( 0x5F0E, 3).digit_weight741,20719 -digit_weight( 0x5F0E, 3).digit_weight741,20719 -digit_weight( 0xA623, 3).digit_weight742,20745 -digit_weight( 0xA623, 3).digit_weight742,20745 -digit_weight( 0xA6E8, 3).digit_weight743,20771 -digit_weight( 0xA6E8, 3).digit_weight743,20771 -digit_weight( 0xA8D3, 3).digit_weight744,20797 -digit_weight( 0xA8D3, 3).digit_weight744,20797 -digit_weight( 0xA903, 3).digit_weight745,20823 -digit_weight( 0xA903, 3).digit_weight745,20823 -digit_weight( 0xA9D3, 3).digit_weight746,20849 -digit_weight( 0xA9D3, 3).digit_weight746,20849 -digit_weight( 0xA9F3, 3).digit_weight747,20875 -digit_weight( 0xA9F3, 3).digit_weight747,20875 -digit_weight( 0xAA53, 3).digit_weight748,20901 -digit_weight( 0xAA53, 3).digit_weight748,20901 -digit_weight( 0xABF3, 3).digit_weight749,20927 -digit_weight( 0xABF3, 3).digit_weight749,20927 -digit_weight( 0xF96B, 3).digit_weight750,20953 -digit_weight( 0xF96B, 3).digit_weight750,20953 -digit_weight( 0xFF13, 3).digit_weight751,20979 -digit_weight( 0xFF13, 3).digit_weight751,20979 -digit_weight( 0x10109, 3).digit_weight752,21005 -digit_weight( 0x10109, 3).digit_weight752,21005 -digit_weight( 0x102E3, 3).digit_weight753,21032 -digit_weight( 0x102E3, 3).digit_weight753,21032 -digit_weight( 0x104A3, 3).digit_weight754,21059 -digit_weight( 0x104A3, 3).digit_weight754,21059 -digit_weight( 0x1085A, 3).digit_weight755,21086 -digit_weight( 0x1085A, 3).digit_weight755,21086 -digit_weight( 0x1087B, 3).digit_weight756,21113 -digit_weight( 0x1087B, 3).digit_weight756,21113 -digit_weight( 0x108A9, 3).digit_weight757,21140 -digit_weight( 0x108A9, 3).digit_weight757,21140 -digit_weight( 0x1091B, 3).digit_weight758,21167 -digit_weight( 0x1091B, 3).digit_weight758,21167 -digit_weight( 0x109C2, 3).digit_weight759,21194 -digit_weight( 0x109C2, 3).digit_weight759,21194 -digit_weight( 0x10A42, 3).digit_weight760,21221 -digit_weight( 0x10A42, 3).digit_weight760,21221 -digit_weight( 0x10B5A, 3).digit_weight761,21248 -digit_weight( 0x10B5A, 3).digit_weight761,21248 -digit_weight( 0x10B7A, 3).digit_weight762,21275 -digit_weight( 0x10B7A, 3).digit_weight762,21275 -digit_weight( 0x10BAB, 3).digit_weight763,21302 -digit_weight( 0x10BAB, 3).digit_weight763,21302 -digit_weight( 0x10E62, 3).digit_weight764,21329 -digit_weight( 0x10E62, 3).digit_weight764,21329 -digit_weight( 0x11054, 3).digit_weight765,21356 -digit_weight( 0x11054, 3).digit_weight765,21356 -digit_weight( 0x11069, 3).digit_weight766,21383 -digit_weight( 0x11069, 3).digit_weight766,21383 -digit_weight( 0x110F3, 3).digit_weight767,21410 -digit_weight( 0x110F3, 3).digit_weight767,21410 -digit_weight( 0x11139, 3).digit_weight768,21437 -digit_weight( 0x11139, 3).digit_weight768,21437 -digit_weight( 0x111D3, 3).digit_weight769,21464 -digit_weight( 0x111D3, 3).digit_weight769,21464 -digit_weight( 0x111E3, 3).digit_weight770,21491 -digit_weight( 0x111E3, 3).digit_weight770,21491 -digit_weight( 0x112F3, 3).digit_weight771,21518 -digit_weight( 0x112F3, 3).digit_weight771,21518 -digit_weight( 0x114D3, 3).digit_weight772,21545 -digit_weight( 0x114D3, 3).digit_weight772,21545 -digit_weight( 0x11653, 3).digit_weight773,21572 -digit_weight( 0x11653, 3).digit_weight773,21572 -digit_weight( 0x116C3, 3).digit_weight774,21599 -digit_weight( 0x116C3, 3).digit_weight774,21599 -digit_weight( 0x11733, 3).digit_weight775,21626 -digit_weight( 0x11733, 3).digit_weight775,21626 -digit_weight( 0x118E3, 3).digit_weight776,21653 -digit_weight( 0x118E3, 3).digit_weight776,21653 -digit_weight( 0x12401, 3).digit_weight777,21680 -digit_weight( 0x12401, 3).digit_weight777,21680 -digit_weight( 0x12408, 3).digit_weight778,21707 -digit_weight( 0x12408, 3).digit_weight778,21707 -digit_weight( 0x12417, 3).digit_weight779,21734 -digit_weight( 0x12417, 3).digit_weight779,21734 -digit_weight( 0x12420, 3).digit_weight780,21761 -digit_weight( 0x12420, 3).digit_weight780,21761 -digit_weight( 0x12424, 0x12425, 3).digit_weight781,21788 -digit_weight( 0x12424, 0x12425, 3).digit_weight781,21788 -digit_weight( 0x1242E, 0x1242F, 3).digit_weight782,21824 -digit_weight( 0x1242E, 0x1242F, 3).digit_weight782,21824 -digit_weight( 0x12436, 0x12437, 3).digit_weight783,21860 -digit_weight( 0x12436, 0x12437, 3).digit_weight783,21860 -digit_weight( 0x1243A, 0x1243B, 3).digit_weight784,21896 -digit_weight( 0x1243A, 0x1243B, 3).digit_weight784,21896 -digit_weight( 0x1244B, 3).digit_weight785,21932 -digit_weight( 0x1244B, 3).digit_weight785,21932 -digit_weight( 0x12451, 3).digit_weight786,21959 -digit_weight( 0x12451, 3).digit_weight786,21959 -digit_weight( 0x12457, 3).digit_weight787,21986 -digit_weight( 0x12457, 3).digit_weight787,21986 -digit_weight( 0x16A63, 3).digit_weight788,22013 -digit_weight( 0x16A63, 3).digit_weight788,22013 -digit_weight( 0x16B53, 3).digit_weight789,22040 -digit_weight( 0x16B53, 3).digit_weight789,22040 -digit_weight( 0x1D362, 3).digit_weight790,22067 -digit_weight( 0x1D362, 3).digit_weight790,22067 -digit_weight( 0x1D7D1, 3).digit_weight791,22094 -digit_weight( 0x1D7D1, 3).digit_weight791,22094 -digit_weight( 0x1D7DB, 3).digit_weight792,22121 -digit_weight( 0x1D7DB, 3).digit_weight792,22121 -digit_weight( 0x1D7E5, 3).digit_weight793,22148 -digit_weight( 0x1D7E5, 3).digit_weight793,22148 -digit_weight( 0x1D7EF, 3).digit_weight794,22175 -digit_weight( 0x1D7EF, 3).digit_weight794,22175 -digit_weight( 0x1D7F9, 3).digit_weight795,22202 -digit_weight( 0x1D7F9, 3).digit_weight795,22202 -digit_weight( 0x1E8C9, 3).digit_weight796,22229 -digit_weight( 0x1E8C9, 3).digit_weight796,22229 -digit_weight( 0x1F104, 3).digit_weight797,22256 -digit_weight( 0x1F104, 3).digit_weight797,22256 -digit_weight( 0x20AFD, 3).digit_weight798,22283 -digit_weight( 0x20AFD, 3).digit_weight798,22283 -digit_weight( 0x20B19, 3).digit_weight799,22310 -digit_weight( 0x20B19, 3).digit_weight799,22310 -digit_weight( 0x22998, 3).digit_weight800,22337 -digit_weight( 0x22998, 3).digit_weight800,22337 -digit_weight( 0x23B1B, 3).digit_weight801,22364 -digit_weight( 0x23B1B, 3).digit_weight801,22364 -digit_weight( 0x0F2D, 7/2).digit_weight802,22391 -digit_weight( 0x0F2D, 7/2).digit_weight802,22391 -digit_weight( 0x0034, 4).digit_weight803,22419 -digit_weight( 0x0034, 4).digit_weight803,22419 -digit_weight( 0x0664, 4).digit_weight804,22445 -digit_weight( 0x0664, 4).digit_weight804,22445 -digit_weight( 0x06F4, 4).digit_weight805,22471 -digit_weight( 0x06F4, 4).digit_weight805,22471 -digit_weight( 0x07C4, 4).digit_weight806,22497 -digit_weight( 0x07C4, 4).digit_weight806,22497 -digit_weight( 0x096A, 4).digit_weight807,22523 -digit_weight( 0x096A, 4).digit_weight807,22523 -digit_weight( 0x09EA, 4).digit_weight808,22549 -digit_weight( 0x09EA, 4).digit_weight808,22549 -digit_weight( 0x0A6A, 4).digit_weight809,22575 -digit_weight( 0x0A6A, 4).digit_weight809,22575 -digit_weight( 0x0AEA, 4).digit_weight810,22601 -digit_weight( 0x0AEA, 4).digit_weight810,22601 -digit_weight( 0x0B6A, 4).digit_weight811,22627 -digit_weight( 0x0B6A, 4).digit_weight811,22627 -digit_weight( 0x0BEA, 4).digit_weight812,22653 -digit_weight( 0x0BEA, 4).digit_weight812,22653 -digit_weight( 0x0C6A, 4).digit_weight813,22679 -digit_weight( 0x0C6A, 4).digit_weight813,22679 -digit_weight( 0x0CEA, 4).digit_weight814,22705 -digit_weight( 0x0CEA, 4).digit_weight814,22705 -digit_weight( 0x0D6A, 4).digit_weight815,22731 -digit_weight( 0x0D6A, 4).digit_weight815,22731 -digit_weight( 0x0DEA, 4).digit_weight816,22757 -digit_weight( 0x0DEA, 4).digit_weight816,22757 -digit_weight( 0x0E54, 4).digit_weight817,22783 -digit_weight( 0x0E54, 4).digit_weight817,22783 -digit_weight( 0x0ED4, 4).digit_weight818,22809 -digit_weight( 0x0ED4, 4).digit_weight818,22809 -digit_weight( 0x0F24, 4).digit_weight819,22835 -digit_weight( 0x0F24, 4).digit_weight819,22835 -digit_weight( 0x1044, 4).digit_weight820,22861 -digit_weight( 0x1044, 4).digit_weight820,22861 -digit_weight( 0x1094, 4).digit_weight821,22887 -digit_weight( 0x1094, 4).digit_weight821,22887 -digit_weight( 0x136C, 4).digit_weight822,22913 -digit_weight( 0x136C, 4).digit_weight822,22913 -digit_weight( 0x17E4, 4).digit_weight823,22939 -digit_weight( 0x17E4, 4).digit_weight823,22939 -digit_weight( 0x17F4, 4).digit_weight824,22965 -digit_weight( 0x17F4, 4).digit_weight824,22965 -digit_weight( 0x1814, 4).digit_weight825,22991 -digit_weight( 0x1814, 4).digit_weight825,22991 -digit_weight( 0x194A, 4).digit_weight826,23017 -digit_weight( 0x194A, 4).digit_weight826,23017 -digit_weight( 0x19D4, 4).digit_weight827,23043 -digit_weight( 0x19D4, 4).digit_weight827,23043 -digit_weight( 0x1A84, 4).digit_weight828,23069 -digit_weight( 0x1A84, 4).digit_weight828,23069 -digit_weight( 0x1A94, 4).digit_weight829,23095 -digit_weight( 0x1A94, 4).digit_weight829,23095 -digit_weight( 0x1B54, 4).digit_weight830,23121 -digit_weight( 0x1B54, 4).digit_weight830,23121 -digit_weight( 0x1BB4, 4).digit_weight831,23147 -digit_weight( 0x1BB4, 4).digit_weight831,23147 -digit_weight( 0x1C44, 4).digit_weight832,23173 -digit_weight( 0x1C44, 4).digit_weight832,23173 -digit_weight( 0x1C54, 4).digit_weight833,23199 -digit_weight( 0x1C54, 4).digit_weight833,23199 -digit_weight( 0x2074, 4).digit_weight834,23225 -digit_weight( 0x2074, 4).digit_weight834,23225 -digit_weight( 0x2084, 4).digit_weight835,23251 -digit_weight( 0x2084, 4).digit_weight835,23251 -digit_weight( 0x2163, 4).digit_weight836,23277 -digit_weight( 0x2163, 4).digit_weight836,23277 -digit_weight( 0x2173, 4).digit_weight837,23303 -digit_weight( 0x2173, 4).digit_weight837,23303 -digit_weight( 0x2463, 4).digit_weight838,23329 -digit_weight( 0x2463, 4).digit_weight838,23329 -digit_weight( 0x2477, 4).digit_weight839,23355 -digit_weight( 0x2477, 4).digit_weight839,23355 -digit_weight( 0x248B, 4).digit_weight840,23381 -digit_weight( 0x248B, 4).digit_weight840,23381 -digit_weight( 0x24F8, 4).digit_weight841,23407 -digit_weight( 0x24F8, 4).digit_weight841,23407 -digit_weight( 0x2779, 4).digit_weight842,23433 -digit_weight( 0x2779, 4).digit_weight842,23433 -digit_weight( 0x2783, 4).digit_weight843,23459 -digit_weight( 0x2783, 4).digit_weight843,23459 -digit_weight( 0x278D, 4).digit_weight844,23485 -digit_weight( 0x278D, 4).digit_weight844,23485 -digit_weight( 0x3024, 4).digit_weight845,23511 -digit_weight( 0x3024, 4).digit_weight845,23511 -digit_weight( 0x3195, 4).digit_weight846,23537 -digit_weight( 0x3195, 4).digit_weight846,23537 -digit_weight( 0x3223, 4).digit_weight847,23563 -digit_weight( 0x3223, 4).digit_weight847,23563 -digit_weight( 0x3283, 4).digit_weight848,23589 -digit_weight( 0x3283, 4).digit_weight848,23589 -digit_weight( 0x4E96, 4).digit_weight849,23615 -digit_weight( 0x4E96, 4).digit_weight849,23615 -digit_weight( 0x56DB, 4).digit_weight850,23641 -digit_weight( 0x56DB, 4).digit_weight850,23641 -digit_weight( 0x8086, 4).digit_weight851,23667 -digit_weight( 0x8086, 4).digit_weight851,23667 -digit_weight( 0xA624, 4).digit_weight852,23693 -digit_weight( 0xA624, 4).digit_weight852,23693 -digit_weight( 0xA6E9, 4).digit_weight853,23719 -digit_weight( 0xA6E9, 4).digit_weight853,23719 -digit_weight( 0xA8D4, 4).digit_weight854,23745 -digit_weight( 0xA8D4, 4).digit_weight854,23745 -digit_weight( 0xA904, 4).digit_weight855,23771 -digit_weight( 0xA904, 4).digit_weight855,23771 -digit_weight( 0xA9D4, 4).digit_weight856,23797 -digit_weight( 0xA9D4, 4).digit_weight856,23797 -digit_weight( 0xA9F4, 4).digit_weight857,23823 -digit_weight( 0xA9F4, 4).digit_weight857,23823 -digit_weight( 0xAA54, 4).digit_weight858,23849 -digit_weight( 0xAA54, 4).digit_weight858,23849 -digit_weight( 0xABF4, 4).digit_weight859,23875 -digit_weight( 0xABF4, 4).digit_weight859,23875 -digit_weight( 0xFF14, 4).digit_weight860,23901 -digit_weight( 0xFF14, 4).digit_weight860,23901 -digit_weight( 0x1010A, 4).digit_weight861,23927 -digit_weight( 0x1010A, 4).digit_weight861,23927 -digit_weight( 0x102E4, 4).digit_weight862,23954 -digit_weight( 0x102E4, 4).digit_weight862,23954 -digit_weight( 0x104A4, 4).digit_weight863,23981 -digit_weight( 0x104A4, 4).digit_weight863,23981 -digit_weight( 0x1087C, 4).digit_weight864,24008 -digit_weight( 0x1087C, 4).digit_weight864,24008 -digit_weight( 0x108AA, 0x108AB, 4).digit_weight865,24035 -digit_weight( 0x108AA, 0x108AB, 4).digit_weight865,24035 -digit_weight( 0x109C3, 4).digit_weight866,24071 -digit_weight( 0x109C3, 4).digit_weight866,24071 -digit_weight( 0x10A43, 4).digit_weight867,24098 -digit_weight( 0x10A43, 4).digit_weight867,24098 -digit_weight( 0x10B5B, 4).digit_weight868,24125 -digit_weight( 0x10B5B, 4).digit_weight868,24125 -digit_weight( 0x10B7B, 4).digit_weight869,24152 -digit_weight( 0x10B7B, 4).digit_weight869,24152 -digit_weight( 0x10BAC, 4).digit_weight870,24179 -digit_weight( 0x10BAC, 4).digit_weight870,24179 -digit_weight( 0x10E63, 4).digit_weight871,24206 -digit_weight( 0x10E63, 4).digit_weight871,24206 -digit_weight( 0x11055, 4).digit_weight872,24233 -digit_weight( 0x11055, 4).digit_weight872,24233 -digit_weight( 0x1106A, 4).digit_weight873,24260 -digit_weight( 0x1106A, 4).digit_weight873,24260 -digit_weight( 0x110F4, 4).digit_weight874,24287 -digit_weight( 0x110F4, 4).digit_weight874,24287 -digit_weight( 0x1113A, 4).digit_weight875,24314 -digit_weight( 0x1113A, 4).digit_weight875,24314 -digit_weight( 0x111D4, 4).digit_weight876,24341 -digit_weight( 0x111D4, 4).digit_weight876,24341 -digit_weight( 0x111E4, 4).digit_weight877,24368 -digit_weight( 0x111E4, 4).digit_weight877,24368 -digit_weight( 0x112F4, 4).digit_weight878,24395 -digit_weight( 0x112F4, 4).digit_weight878,24395 -digit_weight( 0x114D4, 4).digit_weight879,24422 -digit_weight( 0x114D4, 4).digit_weight879,24422 -digit_weight( 0x11654, 4).digit_weight880,24449 -digit_weight( 0x11654, 4).digit_weight880,24449 -digit_weight( 0x116C4, 4).digit_weight881,24476 -digit_weight( 0x116C4, 4).digit_weight881,24476 -digit_weight( 0x11734, 4).digit_weight882,24503 -digit_weight( 0x11734, 4).digit_weight882,24503 -digit_weight( 0x118E4, 4).digit_weight883,24530 -digit_weight( 0x118E4, 4).digit_weight883,24530 -digit_weight( 0x12402, 4).digit_weight884,24557 -digit_weight( 0x12402, 4).digit_weight884,24557 -digit_weight( 0x12409, 4).digit_weight885,24584 -digit_weight( 0x12409, 4).digit_weight885,24584 -digit_weight( 0x1240F, 4).digit_weight886,24611 -digit_weight( 0x1240F, 4).digit_weight886,24611 -digit_weight( 0x12418, 4).digit_weight887,24638 -digit_weight( 0x12418, 4).digit_weight887,24638 -digit_weight( 0x12421, 4).digit_weight888,24665 -digit_weight( 0x12421, 4).digit_weight888,24665 -digit_weight( 0x12426, 4).digit_weight889,24692 -digit_weight( 0x12426, 4).digit_weight889,24692 -digit_weight( 0x12430, 4).digit_weight890,24719 -digit_weight( 0x12430, 4).digit_weight890,24719 -digit_weight( 0x12438, 4).digit_weight891,24746 -digit_weight( 0x12438, 4).digit_weight891,24746 -digit_weight( 0x1243C, 0x1243F, 4).digit_weight892,24773 -digit_weight( 0x1243C, 0x1243F, 4).digit_weight892,24773 -digit_weight( 0x1244C, 4).digit_weight893,24809 -digit_weight( 0x1244C, 4).digit_weight893,24809 -digit_weight( 0x12452, 0x12453, 4).digit_weight894,24836 -digit_weight( 0x12452, 0x12453, 4).digit_weight894,24836 -digit_weight( 0x12469, 4).digit_weight895,24872 -digit_weight( 0x12469, 4).digit_weight895,24872 -digit_weight( 0x16A64, 4).digit_weight896,24899 -digit_weight( 0x16A64, 4).digit_weight896,24899 -digit_weight( 0x16B54, 4).digit_weight897,24926 -digit_weight( 0x16B54, 4).digit_weight897,24926 -digit_weight( 0x1D363, 4).digit_weight898,24953 -digit_weight( 0x1D363, 4).digit_weight898,24953 -digit_weight( 0x1D7D2, 4).digit_weight899,24980 -digit_weight( 0x1D7D2, 4).digit_weight899,24980 -digit_weight( 0x1D7DC, 4).digit_weight900,25007 -digit_weight( 0x1D7DC, 4).digit_weight900,25007 -digit_weight( 0x1D7E6, 4).digit_weight901,25034 -digit_weight( 0x1D7E6, 4).digit_weight901,25034 -digit_weight( 0x1D7F0, 4).digit_weight902,25061 -digit_weight( 0x1D7F0, 4).digit_weight902,25061 -digit_weight( 0x1D7FA, 4).digit_weight903,25088 -digit_weight( 0x1D7FA, 4).digit_weight903,25088 -digit_weight( 0x1E8CA, 4).digit_weight904,25115 -digit_weight( 0x1E8CA, 4).digit_weight904,25115 -digit_weight( 0x1F105, 4).digit_weight905,25142 -digit_weight( 0x1F105, 4).digit_weight905,25142 -digit_weight( 0x20064, 4).digit_weight906,25169 -digit_weight( 0x20064, 4).digit_weight906,25169 -digit_weight( 0x200E2, 4).digit_weight907,25196 -digit_weight( 0x200E2, 4).digit_weight907,25196 -digit_weight( 0x2626D, 4).digit_weight908,25223 -digit_weight( 0x2626D, 4).digit_weight908,25223 -digit_weight( 0x0F2E, 9/2).digit_weight909,25250 -digit_weight( 0x0F2E, 9/2).digit_weight909,25250 -digit_weight( 0x0035, 5).digit_weight910,25278 -digit_weight( 0x0035, 5).digit_weight910,25278 -digit_weight( 0x0665, 5).digit_weight911,25304 -digit_weight( 0x0665, 5).digit_weight911,25304 -digit_weight( 0x06F5, 5).digit_weight912,25330 -digit_weight( 0x06F5, 5).digit_weight912,25330 -digit_weight( 0x07C5, 5).digit_weight913,25356 -digit_weight( 0x07C5, 5).digit_weight913,25356 -digit_weight( 0x096B, 5).digit_weight914,25382 -digit_weight( 0x096B, 5).digit_weight914,25382 -digit_weight( 0x09EB, 5).digit_weight915,25408 -digit_weight( 0x09EB, 5).digit_weight915,25408 -digit_weight( 0x0A6B, 5).digit_weight916,25434 -digit_weight( 0x0A6B, 5).digit_weight916,25434 -digit_weight( 0x0AEB, 5).digit_weight917,25460 -digit_weight( 0x0AEB, 5).digit_weight917,25460 -digit_weight( 0x0B6B, 5).digit_weight918,25486 -digit_weight( 0x0B6B, 5).digit_weight918,25486 -digit_weight( 0x0BEB, 5).digit_weight919,25512 -digit_weight( 0x0BEB, 5).digit_weight919,25512 -digit_weight( 0x0C6B, 5).digit_weight920,25538 -digit_weight( 0x0C6B, 5).digit_weight920,25538 -digit_weight( 0x0CEB, 5).digit_weight921,25564 -digit_weight( 0x0CEB, 5).digit_weight921,25564 -digit_weight( 0x0D6B, 5).digit_weight922,25590 -digit_weight( 0x0D6B, 5).digit_weight922,25590 -digit_weight( 0x0DEB, 5).digit_weight923,25616 -digit_weight( 0x0DEB, 5).digit_weight923,25616 -digit_weight( 0x0E55, 5).digit_weight924,25642 -digit_weight( 0x0E55, 5).digit_weight924,25642 -digit_weight( 0x0ED5, 5).digit_weight925,25668 -digit_weight( 0x0ED5, 5).digit_weight925,25668 -digit_weight( 0x0F25, 5).digit_weight926,25694 -digit_weight( 0x0F25, 5).digit_weight926,25694 -digit_weight( 0x1045, 5).digit_weight927,25720 -digit_weight( 0x1045, 5).digit_weight927,25720 -digit_weight( 0x1095, 5).digit_weight928,25746 -digit_weight( 0x1095, 5).digit_weight928,25746 -digit_weight( 0x136D, 5).digit_weight929,25772 -digit_weight( 0x136D, 5).digit_weight929,25772 -digit_weight( 0x17E5, 5).digit_weight930,25798 -digit_weight( 0x17E5, 5).digit_weight930,25798 -digit_weight( 0x17F5, 5).digit_weight931,25824 -digit_weight( 0x17F5, 5).digit_weight931,25824 -digit_weight( 0x1815, 5).digit_weight932,25850 -digit_weight( 0x1815, 5).digit_weight932,25850 -digit_weight( 0x194B, 5).digit_weight933,25876 -digit_weight( 0x194B, 5).digit_weight933,25876 -digit_weight( 0x19D5, 5).digit_weight934,25902 -digit_weight( 0x19D5, 5).digit_weight934,25902 -digit_weight( 0x1A85, 5).digit_weight935,25928 -digit_weight( 0x1A85, 5).digit_weight935,25928 -digit_weight( 0x1A95, 5).digit_weight936,25954 -digit_weight( 0x1A95, 5).digit_weight936,25954 -digit_weight( 0x1B55, 5).digit_weight937,25980 -digit_weight( 0x1B55, 5).digit_weight937,25980 -digit_weight( 0x1BB5, 5).digit_weight938,26006 -digit_weight( 0x1BB5, 5).digit_weight938,26006 -digit_weight( 0x1C45, 5).digit_weight939,26032 -digit_weight( 0x1C45, 5).digit_weight939,26032 -digit_weight( 0x1C55, 5).digit_weight940,26058 -digit_weight( 0x1C55, 5).digit_weight940,26058 -digit_weight( 0x2075, 5).digit_weight941,26084 -digit_weight( 0x2075, 5).digit_weight941,26084 -digit_weight( 0x2085, 5).digit_weight942,26110 -digit_weight( 0x2085, 5).digit_weight942,26110 -digit_weight( 0x2164, 5).digit_weight943,26136 -digit_weight( 0x2164, 5).digit_weight943,26136 -digit_weight( 0x2174, 5).digit_weight944,26162 -digit_weight( 0x2174, 5).digit_weight944,26162 -digit_weight( 0x2464, 5).digit_weight945,26188 -digit_weight( 0x2464, 5).digit_weight945,26188 -digit_weight( 0x2478, 5).digit_weight946,26214 -digit_weight( 0x2478, 5).digit_weight946,26214 -digit_weight( 0x248C, 5).digit_weight947,26240 -digit_weight( 0x248C, 5).digit_weight947,26240 -digit_weight( 0x24F9, 5).digit_weight948,26266 -digit_weight( 0x24F9, 5).digit_weight948,26266 -digit_weight( 0x277A, 5).digit_weight949,26292 -digit_weight( 0x277A, 5).digit_weight949,26292 -digit_weight( 0x2784, 5).digit_weight950,26318 -digit_weight( 0x2784, 5).digit_weight950,26318 -digit_weight( 0x278E, 5).digit_weight951,26344 -digit_weight( 0x278E, 5).digit_weight951,26344 -digit_weight( 0x3025, 5).digit_weight952,26370 -digit_weight( 0x3025, 5).digit_weight952,26370 -digit_weight( 0x3224, 5).digit_weight953,26396 -digit_weight( 0x3224, 5).digit_weight953,26396 -digit_weight( 0x3284, 5).digit_weight954,26422 -digit_weight( 0x3284, 5).digit_weight954,26422 -digit_weight( 0x3405, 5).digit_weight955,26448 -digit_weight( 0x3405, 5).digit_weight955,26448 -digit_weight( 0x382A, 5).digit_weight956,26474 -digit_weight( 0x382A, 5).digit_weight956,26474 -digit_weight( 0x4E94, 5).digit_weight957,26500 -digit_weight( 0x4E94, 5).digit_weight957,26500 -digit_weight( 0x4F0D, 5).digit_weight958,26526 -digit_weight( 0x4F0D, 5).digit_weight958,26526 -digit_weight( 0xA625, 5).digit_weight959,26552 -digit_weight( 0xA625, 5).digit_weight959,26552 -digit_weight( 0xA6EA, 5).digit_weight960,26578 -digit_weight( 0xA6EA, 5).digit_weight960,26578 -digit_weight( 0xA8D5, 5).digit_weight961,26604 -digit_weight( 0xA8D5, 5).digit_weight961,26604 -digit_weight( 0xA905, 5).digit_weight962,26630 -digit_weight( 0xA905, 5).digit_weight962,26630 -digit_weight( 0xA9D5, 5).digit_weight963,26656 -digit_weight( 0xA9D5, 5).digit_weight963,26656 -digit_weight( 0xA9F5, 5).digit_weight964,26682 -digit_weight( 0xA9F5, 5).digit_weight964,26682 -digit_weight( 0xAA55, 5).digit_weight965,26708 -digit_weight( 0xAA55, 5).digit_weight965,26708 -digit_weight( 0xABF5, 5).digit_weight966,26734 -digit_weight( 0xABF5, 5).digit_weight966,26734 -digit_weight( 0xFF15, 5).digit_weight967,26760 -digit_weight( 0xFF15, 5).digit_weight967,26760 -digit_weight( 0x1010B, 5).digit_weight968,26786 -digit_weight( 0x1010B, 5).digit_weight968,26786 -digit_weight( 0x10143, 5).digit_weight969,26813 -digit_weight( 0x10143, 5).digit_weight969,26813 -digit_weight( 0x10148, 5).digit_weight970,26840 -digit_weight( 0x10148, 5).digit_weight970,26840 -digit_weight( 0x1014F, 5).digit_weight971,26867 -digit_weight( 0x1014F, 5).digit_weight971,26867 -digit_weight( 0x1015F, 5).digit_weight972,26894 -digit_weight( 0x1015F, 5).digit_weight972,26894 -digit_weight( 0x10173, 5).digit_weight973,26921 -digit_weight( 0x10173, 5).digit_weight973,26921 -digit_weight( 0x102E5, 5).digit_weight974,26948 -digit_weight( 0x102E5, 5).digit_weight974,26948 -digit_weight( 0x10321, 5).digit_weight975,26975 -digit_weight( 0x10321, 5).digit_weight975,26975 -digit_weight( 0x104A5, 5).digit_weight976,27002 -digit_weight( 0x104A5, 5).digit_weight976,27002 -digit_weight( 0x1087D, 5).digit_weight977,27029 -digit_weight( 0x1087D, 5).digit_weight977,27029 -digit_weight( 0x108AC, 5).digit_weight978,27056 -digit_weight( 0x108AC, 5).digit_weight978,27056 -digit_weight( 0x108FC, 5).digit_weight979,27083 -digit_weight( 0x108FC, 5).digit_weight979,27083 -digit_weight( 0x109C4, 5).digit_weight980,27110 -digit_weight( 0x109C4, 5).digit_weight980,27110 -digit_weight( 0x10AEC, 5).digit_weight981,27137 -digit_weight( 0x10AEC, 5).digit_weight981,27137 -digit_weight( 0x10CFB, 5).digit_weight982,27164 -digit_weight( 0x10CFB, 5).digit_weight982,27164 -digit_weight( 0x10E64, 5).digit_weight983,27191 -digit_weight( 0x10E64, 5).digit_weight983,27191 -digit_weight( 0x11056, 5).digit_weight984,27218 -digit_weight( 0x11056, 5).digit_weight984,27218 -digit_weight( 0x1106B, 5).digit_weight985,27245 -digit_weight( 0x1106B, 5).digit_weight985,27245 -digit_weight( 0x110F5, 5).digit_weight986,27272 -digit_weight( 0x110F5, 5).digit_weight986,27272 -digit_weight( 0x1113B, 5).digit_weight987,27299 -digit_weight( 0x1113B, 5).digit_weight987,27299 -digit_weight( 0x111D5, 5).digit_weight988,27326 -digit_weight( 0x111D5, 5).digit_weight988,27326 -digit_weight( 0x111E5, 5).digit_weight989,27353 -digit_weight( 0x111E5, 5).digit_weight989,27353 -digit_weight( 0x112F5, 5).digit_weight990,27380 -digit_weight( 0x112F5, 5).digit_weight990,27380 -digit_weight( 0x114D5, 5).digit_weight991,27407 -digit_weight( 0x114D5, 5).digit_weight991,27407 -digit_weight( 0x11655, 5).digit_weight992,27434 -digit_weight( 0x11655, 5).digit_weight992,27434 -digit_weight( 0x116C5, 5).digit_weight993,27461 -digit_weight( 0x116C5, 5).digit_weight993,27461 -digit_weight( 0x11735, 5).digit_weight994,27488 -digit_weight( 0x11735, 5).digit_weight994,27488 -digit_weight( 0x118E5, 5).digit_weight995,27515 -digit_weight( 0x118E5, 5).digit_weight995,27515 -digit_weight( 0x12403, 5).digit_weight996,27542 -digit_weight( 0x12403, 5).digit_weight996,27542 -digit_weight( 0x1240A, 5).digit_weight997,27569 -digit_weight( 0x1240A, 5).digit_weight997,27569 -digit_weight( 0x12410, 5).digit_weight998,27596 -digit_weight( 0x12410, 5).digit_weight998,27596 -digit_weight( 0x12419, 5).digit_weight999,27623 -digit_weight( 0x12419, 5).digit_weight999,27623 -digit_weight( 0x12422, 5).digit_weight1000,27650 -digit_weight( 0x12422, 5).digit_weight1000,27650 -digit_weight( 0x12427, 5).digit_weight1001,27677 -digit_weight( 0x12427, 5).digit_weight1001,27677 -digit_weight( 0x12431, 5).digit_weight1002,27704 -digit_weight( 0x12431, 5).digit_weight1002,27704 -digit_weight( 0x12439, 5).digit_weight1003,27731 -digit_weight( 0x12439, 5).digit_weight1003,27731 -digit_weight( 0x1244D, 5).digit_weight1004,27758 -digit_weight( 0x1244D, 5).digit_weight1004,27758 -digit_weight( 0x12454, 0x12455, 5).digit_weight1005,27785 -digit_weight( 0x12454, 0x12455, 5).digit_weight1005,27785 -digit_weight( 0x1246A, 5).digit_weight1006,27821 -digit_weight( 0x1246A, 5).digit_weight1006,27821 -digit_weight( 0x16A65, 5).digit_weight1007,27848 -digit_weight( 0x16A65, 5).digit_weight1007,27848 -digit_weight( 0x16B55, 5).digit_weight1008,27875 -digit_weight( 0x16B55, 5).digit_weight1008,27875 -digit_weight( 0x1D364, 5).digit_weight1009,27902 -digit_weight( 0x1D364, 5).digit_weight1009,27902 -digit_weight( 0x1D7D3, 5).digit_weight1010,27929 -digit_weight( 0x1D7D3, 5).digit_weight1010,27929 -digit_weight( 0x1D7DD, 5).digit_weight1011,27956 -digit_weight( 0x1D7DD, 5).digit_weight1011,27956 -digit_weight( 0x1D7E7, 5).digit_weight1012,27983 -digit_weight( 0x1D7E7, 5).digit_weight1012,27983 -digit_weight( 0x1D7F1, 5).digit_weight1013,28010 -digit_weight( 0x1D7F1, 5).digit_weight1013,28010 -digit_weight( 0x1D7FB, 5).digit_weight1014,28037 -digit_weight( 0x1D7FB, 5).digit_weight1014,28037 -digit_weight( 0x1E8CB, 5).digit_weight1015,28064 -digit_weight( 0x1E8CB, 5).digit_weight1015,28064 -digit_weight( 0x1F106, 5).digit_weight1016,28091 -digit_weight( 0x1F106, 5).digit_weight1016,28091 -digit_weight( 0x20121, 5).digit_weight1017,28118 -digit_weight( 0x20121, 5).digit_weight1017,28118 -digit_weight( 0x0F2F, 11/2).digit_weight1018,28145 -digit_weight( 0x0F2F, 11/2).digit_weight1018,28145 -digit_weight( 0x0036, 6).digit_weight1019,28174 -digit_weight( 0x0036, 6).digit_weight1019,28174 -digit_weight( 0x0666, 6).digit_weight1020,28200 -digit_weight( 0x0666, 6).digit_weight1020,28200 -digit_weight( 0x06F6, 6).digit_weight1021,28226 -digit_weight( 0x06F6, 6).digit_weight1021,28226 -digit_weight( 0x07C6, 6).digit_weight1022,28252 -digit_weight( 0x07C6, 6).digit_weight1022,28252 -digit_weight( 0x096C, 6).digit_weight1023,28278 -digit_weight( 0x096C, 6).digit_weight1023,28278 -digit_weight( 0x09EC, 6).digit_weight1024,28304 -digit_weight( 0x09EC, 6).digit_weight1024,28304 -digit_weight( 0x0A6C, 6).digit_weight1025,28330 -digit_weight( 0x0A6C, 6).digit_weight1025,28330 -digit_weight( 0x0AEC, 6).digit_weight1026,28356 -digit_weight( 0x0AEC, 6).digit_weight1026,28356 -digit_weight( 0x0B6C, 6).digit_weight1027,28382 -digit_weight( 0x0B6C, 6).digit_weight1027,28382 -digit_weight( 0x0BEC, 6).digit_weight1028,28408 -digit_weight( 0x0BEC, 6).digit_weight1028,28408 -digit_weight( 0x0C6C, 6).digit_weight1029,28434 -digit_weight( 0x0C6C, 6).digit_weight1029,28434 -digit_weight( 0x0CEC, 6).digit_weight1030,28460 -digit_weight( 0x0CEC, 6).digit_weight1030,28460 -digit_weight( 0x0D6C, 6).digit_weight1031,28486 -digit_weight( 0x0D6C, 6).digit_weight1031,28486 -digit_weight( 0x0DEC, 6).digit_weight1032,28512 -digit_weight( 0x0DEC, 6).digit_weight1032,28512 -digit_weight( 0x0E56, 6).digit_weight1033,28538 -digit_weight( 0x0E56, 6).digit_weight1033,28538 -digit_weight( 0x0ED6, 6).digit_weight1034,28564 -digit_weight( 0x0ED6, 6).digit_weight1034,28564 -digit_weight( 0x0F26, 6).digit_weight1035,28590 -digit_weight( 0x0F26, 6).digit_weight1035,28590 -digit_weight( 0x1046, 6).digit_weight1036,28616 -digit_weight( 0x1046, 6).digit_weight1036,28616 -digit_weight( 0x1096, 6).digit_weight1037,28642 -digit_weight( 0x1096, 6).digit_weight1037,28642 -digit_weight( 0x136E, 6).digit_weight1038,28668 -digit_weight( 0x136E, 6).digit_weight1038,28668 -digit_weight( 0x17E6, 6).digit_weight1039,28694 -digit_weight( 0x17E6, 6).digit_weight1039,28694 -digit_weight( 0x17F6, 6).digit_weight1040,28720 -digit_weight( 0x17F6, 6).digit_weight1040,28720 -digit_weight( 0x1816, 6).digit_weight1041,28746 -digit_weight( 0x1816, 6).digit_weight1041,28746 -digit_weight( 0x194C, 6).digit_weight1042,28772 -digit_weight( 0x194C, 6).digit_weight1042,28772 -digit_weight( 0x19D6, 6).digit_weight1043,28798 -digit_weight( 0x19D6, 6).digit_weight1043,28798 -digit_weight( 0x1A86, 6).digit_weight1044,28824 -digit_weight( 0x1A86, 6).digit_weight1044,28824 -digit_weight( 0x1A96, 6).digit_weight1045,28850 -digit_weight( 0x1A96, 6).digit_weight1045,28850 -digit_weight( 0x1B56, 6).digit_weight1046,28876 -digit_weight( 0x1B56, 6).digit_weight1046,28876 -digit_weight( 0x1BB6, 6).digit_weight1047,28902 -digit_weight( 0x1BB6, 6).digit_weight1047,28902 -digit_weight( 0x1C46, 6).digit_weight1048,28928 -digit_weight( 0x1C46, 6).digit_weight1048,28928 -digit_weight( 0x1C56, 6).digit_weight1049,28954 -digit_weight( 0x1C56, 6).digit_weight1049,28954 -digit_weight( 0x2076, 6).digit_weight1050,28980 -digit_weight( 0x2076, 6).digit_weight1050,28980 -digit_weight( 0x2086, 6).digit_weight1051,29006 -digit_weight( 0x2086, 6).digit_weight1051,29006 -digit_weight( 0x2165, 6).digit_weight1052,29032 -digit_weight( 0x2165, 6).digit_weight1052,29032 -digit_weight( 0x2175, 6).digit_weight1053,29058 -digit_weight( 0x2175, 6).digit_weight1053,29058 -digit_weight( 0x2185, 6).digit_weight1054,29084 -digit_weight( 0x2185, 6).digit_weight1054,29084 -digit_weight( 0x2465, 6).digit_weight1055,29110 -digit_weight( 0x2465, 6).digit_weight1055,29110 -digit_weight( 0x2479, 6).digit_weight1056,29136 -digit_weight( 0x2479, 6).digit_weight1056,29136 -digit_weight( 0x248D, 6).digit_weight1057,29162 -digit_weight( 0x248D, 6).digit_weight1057,29162 -digit_weight( 0x24FA, 6).digit_weight1058,29188 -digit_weight( 0x24FA, 6).digit_weight1058,29188 -digit_weight( 0x277B, 6).digit_weight1059,29214 -digit_weight( 0x277B, 6).digit_weight1059,29214 -digit_weight( 0x2785, 6).digit_weight1060,29240 -digit_weight( 0x2785, 6).digit_weight1060,29240 -digit_weight( 0x278F, 6).digit_weight1061,29266 -digit_weight( 0x278F, 6).digit_weight1061,29266 -digit_weight( 0x3026, 6).digit_weight1062,29292 -digit_weight( 0x3026, 6).digit_weight1062,29292 -digit_weight( 0x3225, 6).digit_weight1063,29318 -digit_weight( 0x3225, 6).digit_weight1063,29318 -digit_weight( 0x3285, 6).digit_weight1064,29344 -digit_weight( 0x3285, 6).digit_weight1064,29344 -digit_weight( 0x516D, 6).digit_weight1065,29370 -digit_weight( 0x516D, 6).digit_weight1065,29370 -digit_weight( 0x9646, 6).digit_weight1066,29396 -digit_weight( 0x9646, 6).digit_weight1066,29396 -digit_weight( 0x9678, 6).digit_weight1067,29422 -digit_weight( 0x9678, 6).digit_weight1067,29422 -digit_weight( 0xA626, 6).digit_weight1068,29448 -digit_weight( 0xA626, 6).digit_weight1068,29448 -digit_weight( 0xA6EB, 6).digit_weight1069,29474 -digit_weight( 0xA6EB, 6).digit_weight1069,29474 -digit_weight( 0xA8D6, 6).digit_weight1070,29500 -digit_weight( 0xA8D6, 6).digit_weight1070,29500 -digit_weight( 0xA906, 6).digit_weight1071,29526 -digit_weight( 0xA906, 6).digit_weight1071,29526 -digit_weight( 0xA9D6, 6).digit_weight1072,29552 -digit_weight( 0xA9D6, 6).digit_weight1072,29552 -digit_weight( 0xA9F6, 6).digit_weight1073,29578 -digit_weight( 0xA9F6, 6).digit_weight1073,29578 -digit_weight( 0xAA56, 6).digit_weight1074,29604 -digit_weight( 0xAA56, 6).digit_weight1074,29604 -digit_weight( 0xABF6, 6).digit_weight1075,29630 -digit_weight( 0xABF6, 6).digit_weight1075,29630 -digit_weight( 0xF9D1, 6).digit_weight1076,29656 -digit_weight( 0xF9D1, 6).digit_weight1076,29656 -digit_weight( 0xF9D3, 6).digit_weight1077,29682 -digit_weight( 0xF9D3, 6).digit_weight1077,29682 -digit_weight( 0xFF16, 6).digit_weight1078,29708 -digit_weight( 0xFF16, 6).digit_weight1078,29708 -digit_weight( 0x1010C, 6).digit_weight1079,29734 -digit_weight( 0x1010C, 6).digit_weight1079,29734 -digit_weight( 0x102E6, 6).digit_weight1080,29761 -digit_weight( 0x102E6, 6).digit_weight1080,29761 -digit_weight( 0x104A6, 6).digit_weight1081,29788 -digit_weight( 0x104A6, 6).digit_weight1081,29788 -digit_weight( 0x109C5, 6).digit_weight1082,29815 -digit_weight( 0x109C5, 6).digit_weight1082,29815 -digit_weight( 0x10E65, 6).digit_weight1083,29842 -digit_weight( 0x10E65, 6).digit_weight1083,29842 -digit_weight( 0x11057, 6).digit_weight1084,29869 -digit_weight( 0x11057, 6).digit_weight1084,29869 -digit_weight( 0x1106C, 6).digit_weight1085,29896 -digit_weight( 0x1106C, 6).digit_weight1085,29896 -digit_weight( 0x110F6, 6).digit_weight1086,29923 -digit_weight( 0x110F6, 6).digit_weight1086,29923 -digit_weight( 0x1113C, 6).digit_weight1087,29950 -digit_weight( 0x1113C, 6).digit_weight1087,29950 -digit_weight( 0x111D6, 6).digit_weight1088,29977 -digit_weight( 0x111D6, 6).digit_weight1088,29977 -digit_weight( 0x111E6, 6).digit_weight1089,30004 -digit_weight( 0x111E6, 6).digit_weight1089,30004 -digit_weight( 0x112F6, 6).digit_weight1090,30031 -digit_weight( 0x112F6, 6).digit_weight1090,30031 -digit_weight( 0x114D6, 6).digit_weight1091,30058 -digit_weight( 0x114D6, 6).digit_weight1091,30058 -digit_weight( 0x11656, 6).digit_weight1092,30085 -digit_weight( 0x11656, 6).digit_weight1092,30085 -digit_weight( 0x116C6, 6).digit_weight1093,30112 -digit_weight( 0x116C6, 6).digit_weight1093,30112 -digit_weight( 0x11736, 6).digit_weight1094,30139 -digit_weight( 0x11736, 6).digit_weight1094,30139 -digit_weight( 0x118E6, 6).digit_weight1095,30166 -digit_weight( 0x118E6, 6).digit_weight1095,30166 -digit_weight( 0x12404, 6).digit_weight1096,30193 -digit_weight( 0x12404, 6).digit_weight1096,30193 -digit_weight( 0x1240B, 6).digit_weight1097,30220 -digit_weight( 0x1240B, 6).digit_weight1097,30220 -digit_weight( 0x12411, 6).digit_weight1098,30247 -digit_weight( 0x12411, 6).digit_weight1098,30247 -digit_weight( 0x1241A, 6).digit_weight1099,30274 -digit_weight( 0x1241A, 6).digit_weight1099,30274 -digit_weight( 0x12428, 6).digit_weight1100,30301 -digit_weight( 0x12428, 6).digit_weight1100,30301 -digit_weight( 0x12440, 6).digit_weight1101,30328 -digit_weight( 0x12440, 6).digit_weight1101,30328 -digit_weight( 0x1244E, 6).digit_weight1102,30355 -digit_weight( 0x1244E, 6).digit_weight1102,30355 -digit_weight( 0x1246B, 6).digit_weight1103,30382 -digit_weight( 0x1246B, 6).digit_weight1103,30382 -digit_weight( 0x16A66, 6).digit_weight1104,30409 -digit_weight( 0x16A66, 6).digit_weight1104,30409 -digit_weight( 0x16B56, 6).digit_weight1105,30436 -digit_weight( 0x16B56, 6).digit_weight1105,30436 -digit_weight( 0x1D365, 6).digit_weight1106,30463 -digit_weight( 0x1D365, 6).digit_weight1106,30463 -digit_weight( 0x1D7D4, 6).digit_weight1107,30490 -digit_weight( 0x1D7D4, 6).digit_weight1107,30490 -digit_weight( 0x1D7DE, 6).digit_weight1108,30517 -digit_weight( 0x1D7DE, 6).digit_weight1108,30517 -digit_weight( 0x1D7E8, 6).digit_weight1109,30544 -digit_weight( 0x1D7E8, 6).digit_weight1109,30544 -digit_weight( 0x1D7F2, 6).digit_weight1110,30571 -digit_weight( 0x1D7F2, 6).digit_weight1110,30571 -digit_weight( 0x1D7FC, 6).digit_weight1111,30598 -digit_weight( 0x1D7FC, 6).digit_weight1111,30598 -digit_weight( 0x1E8CC, 6).digit_weight1112,30625 -digit_weight( 0x1E8CC, 6).digit_weight1112,30625 -digit_weight( 0x1F107, 6).digit_weight1113,30652 -digit_weight( 0x1F107, 6).digit_weight1113,30652 -digit_weight( 0x20AEA, 6).digit_weight1114,30679 -digit_weight( 0x20AEA, 6).digit_weight1114,30679 -digit_weight( 0x0F30, 13/2).digit_weight1115,30706 -digit_weight( 0x0F30, 13/2).digit_weight1115,30706 -digit_weight( 0x0037, 7).digit_weight1116,30735 -digit_weight( 0x0037, 7).digit_weight1116,30735 -digit_weight( 0x0667, 7).digit_weight1117,30761 -digit_weight( 0x0667, 7).digit_weight1117,30761 -digit_weight( 0x06F7, 7).digit_weight1118,30787 -digit_weight( 0x06F7, 7).digit_weight1118,30787 -digit_weight( 0x07C7, 7).digit_weight1119,30813 -digit_weight( 0x07C7, 7).digit_weight1119,30813 -digit_weight( 0x096D, 7).digit_weight1120,30839 -digit_weight( 0x096D, 7).digit_weight1120,30839 -digit_weight( 0x09ED, 7).digit_weight1121,30865 -digit_weight( 0x09ED, 7).digit_weight1121,30865 -digit_weight( 0x0A6D, 7).digit_weight1122,30891 -digit_weight( 0x0A6D, 7).digit_weight1122,30891 -digit_weight( 0x0AED, 7).digit_weight1123,30917 -digit_weight( 0x0AED, 7).digit_weight1123,30917 -digit_weight( 0x0B6D, 7).digit_weight1124,30943 -digit_weight( 0x0B6D, 7).digit_weight1124,30943 -digit_weight( 0x0BED, 7).digit_weight1125,30969 -digit_weight( 0x0BED, 7).digit_weight1125,30969 -digit_weight( 0x0C6D, 7).digit_weight1126,30995 -digit_weight( 0x0C6D, 7).digit_weight1126,30995 -digit_weight( 0x0CED, 7).digit_weight1127,31021 -digit_weight( 0x0CED, 7).digit_weight1127,31021 -digit_weight( 0x0D6D, 7).digit_weight1128,31047 -digit_weight( 0x0D6D, 7).digit_weight1128,31047 -digit_weight( 0x0DED, 7).digit_weight1129,31073 -digit_weight( 0x0DED, 7).digit_weight1129,31073 -digit_weight( 0x0E57, 7).digit_weight1130,31099 -digit_weight( 0x0E57, 7).digit_weight1130,31099 -digit_weight( 0x0ED7, 7).digit_weight1131,31125 -digit_weight( 0x0ED7, 7).digit_weight1131,31125 -digit_weight( 0x0F27, 7).digit_weight1132,31151 -digit_weight( 0x0F27, 7).digit_weight1132,31151 -digit_weight( 0x1047, 7).digit_weight1133,31177 -digit_weight( 0x1047, 7).digit_weight1133,31177 -digit_weight( 0x1097, 7).digit_weight1134,31203 -digit_weight( 0x1097, 7).digit_weight1134,31203 -digit_weight( 0x136F, 7).digit_weight1135,31229 -digit_weight( 0x136F, 7).digit_weight1135,31229 -digit_weight( 0x17E7, 7).digit_weight1136,31255 -digit_weight( 0x17E7, 7).digit_weight1136,31255 -digit_weight( 0x17F7, 7).digit_weight1137,31281 -digit_weight( 0x17F7, 7).digit_weight1137,31281 -digit_weight( 0x1817, 7).digit_weight1138,31307 -digit_weight( 0x1817, 7).digit_weight1138,31307 -digit_weight( 0x194D, 7).digit_weight1139,31333 -digit_weight( 0x194D, 7).digit_weight1139,31333 -digit_weight( 0x19D7, 7).digit_weight1140,31359 -digit_weight( 0x19D7, 7).digit_weight1140,31359 -digit_weight( 0x1A87, 7).digit_weight1141,31385 -digit_weight( 0x1A87, 7).digit_weight1141,31385 -digit_weight( 0x1A97, 7).digit_weight1142,31411 -digit_weight( 0x1A97, 7).digit_weight1142,31411 -digit_weight( 0x1B57, 7).digit_weight1143,31437 -digit_weight( 0x1B57, 7).digit_weight1143,31437 -digit_weight( 0x1BB7, 7).digit_weight1144,31463 -digit_weight( 0x1BB7, 7).digit_weight1144,31463 -digit_weight( 0x1C47, 7).digit_weight1145,31489 -digit_weight( 0x1C47, 7).digit_weight1145,31489 -digit_weight( 0x1C57, 7).digit_weight1146,31515 -digit_weight( 0x1C57, 7).digit_weight1146,31515 -digit_weight( 0x2077, 7).digit_weight1147,31541 -digit_weight( 0x2077, 7).digit_weight1147,31541 -digit_weight( 0x2087, 7).digit_weight1148,31567 -digit_weight( 0x2087, 7).digit_weight1148,31567 -digit_weight( 0x2166, 7).digit_weight1149,31593 -digit_weight( 0x2166, 7).digit_weight1149,31593 -digit_weight( 0x2176, 7).digit_weight1150,31619 -digit_weight( 0x2176, 7).digit_weight1150,31619 -digit_weight( 0x2466, 7).digit_weight1151,31645 -digit_weight( 0x2466, 7).digit_weight1151,31645 -digit_weight( 0x247A, 7).digit_weight1152,31671 -digit_weight( 0x247A, 7).digit_weight1152,31671 -digit_weight( 0x248E, 7).digit_weight1153,31697 -digit_weight( 0x248E, 7).digit_weight1153,31697 -digit_weight( 0x24FB, 7).digit_weight1154,31723 -digit_weight( 0x24FB, 7).digit_weight1154,31723 -digit_weight( 0x277C, 7).digit_weight1155,31749 -digit_weight( 0x277C, 7).digit_weight1155,31749 -digit_weight( 0x2786, 7).digit_weight1156,31775 -digit_weight( 0x2786, 7).digit_weight1156,31775 -digit_weight( 0x2790, 7).digit_weight1157,31801 -digit_weight( 0x2790, 7).digit_weight1157,31801 -digit_weight( 0x3027, 7).digit_weight1158,31827 -digit_weight( 0x3027, 7).digit_weight1158,31827 -digit_weight( 0x3226, 7).digit_weight1159,31853 -digit_weight( 0x3226, 7).digit_weight1159,31853 -digit_weight( 0x3286, 7).digit_weight1160,31879 -digit_weight( 0x3286, 7).digit_weight1160,31879 -digit_weight( 0x3B4D, 7).digit_weight1161,31905 -digit_weight( 0x3B4D, 7).digit_weight1161,31905 -digit_weight( 0x4E03, 7).digit_weight1162,31931 -digit_weight( 0x4E03, 7).digit_weight1162,31931 -digit_weight( 0x67D2, 7).digit_weight1163,31957 -digit_weight( 0x67D2, 7).digit_weight1163,31957 -digit_weight( 0x6F06, 7).digit_weight1164,31983 -digit_weight( 0x6F06, 7).digit_weight1164,31983 -digit_weight( 0xA627, 7).digit_weight1165,32009 -digit_weight( 0xA627, 7).digit_weight1165,32009 -digit_weight( 0xA6EC, 7).digit_weight1166,32035 -digit_weight( 0xA6EC, 7).digit_weight1166,32035 -digit_weight( 0xA8D7, 7).digit_weight1167,32061 -digit_weight( 0xA8D7, 7).digit_weight1167,32061 -digit_weight( 0xA907, 7).digit_weight1168,32087 -digit_weight( 0xA907, 7).digit_weight1168,32087 -digit_weight( 0xA9D7, 7).digit_weight1169,32113 -digit_weight( 0xA9D7, 7).digit_weight1169,32113 -digit_weight( 0xA9F7, 7).digit_weight1170,32139 -digit_weight( 0xA9F7, 7).digit_weight1170,32139 -digit_weight( 0xAA57, 7).digit_weight1171,32165 -digit_weight( 0xAA57, 7).digit_weight1171,32165 -digit_weight( 0xABF7, 7).digit_weight1172,32191 -digit_weight( 0xABF7, 7).digit_weight1172,32191 -digit_weight( 0xFF17, 7).digit_weight1173,32217 -digit_weight( 0xFF17, 7).digit_weight1173,32217 -digit_weight( 0x1010D, 7).digit_weight1174,32243 -digit_weight( 0x1010D, 7).digit_weight1174,32243 -digit_weight( 0x102E7, 7).digit_weight1175,32270 -digit_weight( 0x102E7, 7).digit_weight1175,32270 -digit_weight( 0x104A7, 7).digit_weight1176,32297 -digit_weight( 0x104A7, 7).digit_weight1176,32297 -digit_weight( 0x109C6, 7).digit_weight1177,32324 -digit_weight( 0x109C6, 7).digit_weight1177,32324 -digit_weight( 0x10E66, 7).digit_weight1178,32351 -digit_weight( 0x10E66, 7).digit_weight1178,32351 -digit_weight( 0x11058, 7).digit_weight1179,32378 -digit_weight( 0x11058, 7).digit_weight1179,32378 -digit_weight( 0x1106D, 7).digit_weight1180,32405 -digit_weight( 0x1106D, 7).digit_weight1180,32405 -digit_weight( 0x110F7, 7).digit_weight1181,32432 -digit_weight( 0x110F7, 7).digit_weight1181,32432 -digit_weight( 0x1113D, 7).digit_weight1182,32459 -digit_weight( 0x1113D, 7).digit_weight1182,32459 -digit_weight( 0x111D7, 7).digit_weight1183,32486 -digit_weight( 0x111D7, 7).digit_weight1183,32486 -digit_weight( 0x111E7, 7).digit_weight1184,32513 -digit_weight( 0x111E7, 7).digit_weight1184,32513 -digit_weight( 0x112F7, 7).digit_weight1185,32540 -digit_weight( 0x112F7, 7).digit_weight1185,32540 -digit_weight( 0x114D7, 7).digit_weight1186,32567 -digit_weight( 0x114D7, 7).digit_weight1186,32567 -digit_weight( 0x11657, 7).digit_weight1187,32594 -digit_weight( 0x11657, 7).digit_weight1187,32594 -digit_weight( 0x116C7, 7).digit_weight1188,32621 -digit_weight( 0x116C7, 7).digit_weight1188,32621 -digit_weight( 0x11737, 7).digit_weight1189,32648 -digit_weight( 0x11737, 7).digit_weight1189,32648 -digit_weight( 0x118E7, 7).digit_weight1190,32675 -digit_weight( 0x118E7, 7).digit_weight1190,32675 -digit_weight( 0x12405, 7).digit_weight1191,32702 -digit_weight( 0x12405, 7).digit_weight1191,32702 -digit_weight( 0x1240C, 7).digit_weight1192,32729 -digit_weight( 0x1240C, 7).digit_weight1192,32729 -digit_weight( 0x12412, 7).digit_weight1193,32756 -digit_weight( 0x12412, 7).digit_weight1193,32756 -digit_weight( 0x1241B, 7).digit_weight1194,32783 -digit_weight( 0x1241B, 7).digit_weight1194,32783 -digit_weight( 0x12429, 7).digit_weight1195,32810 -digit_weight( 0x12429, 7).digit_weight1195,32810 -digit_weight( 0x12441, 0x12443, 7).digit_weight1196,32837 -digit_weight( 0x12441, 0x12443, 7).digit_weight1196,32837 -digit_weight( 0x1246C, 7).digit_weight1197,32873 -digit_weight( 0x1246C, 7).digit_weight1197,32873 -digit_weight( 0x16A67, 7).digit_weight1198,32900 -digit_weight( 0x16A67, 7).digit_weight1198,32900 -digit_weight( 0x16B57, 7).digit_weight1199,32927 -digit_weight( 0x16B57, 7).digit_weight1199,32927 -digit_weight( 0x1D366, 7).digit_weight1200,32954 -digit_weight( 0x1D366, 7).digit_weight1200,32954 -digit_weight( 0x1D7D5, 7).digit_weight1201,32981 -digit_weight( 0x1D7D5, 7).digit_weight1201,32981 -digit_weight( 0x1D7DF, 7).digit_weight1202,33008 -digit_weight( 0x1D7DF, 7).digit_weight1202,33008 -digit_weight( 0x1D7E9, 7).digit_weight1203,33035 -digit_weight( 0x1D7E9, 7).digit_weight1203,33035 -digit_weight( 0x1D7F3, 7).digit_weight1204,33062 -digit_weight( 0x1D7F3, 7).digit_weight1204,33062 -digit_weight( 0x1D7FD, 7).digit_weight1205,33089 -digit_weight( 0x1D7FD, 7).digit_weight1205,33089 -digit_weight( 0x1E8CD, 7).digit_weight1206,33116 -digit_weight( 0x1E8CD, 7).digit_weight1206,33116 -digit_weight( 0x1F108, 7).digit_weight1207,33143 -digit_weight( 0x1F108, 7).digit_weight1207,33143 -digit_weight( 0x20001, 7).digit_weight1208,33170 -digit_weight( 0x20001, 7).digit_weight1208,33170 -digit_weight( 0x0F31, 15/2).digit_weight1209,33197 -digit_weight( 0x0F31, 15/2).digit_weight1209,33197 -digit_weight( 0x0038, 8).digit_weight1210,33226 -digit_weight( 0x0038, 8).digit_weight1210,33226 -digit_weight( 0x0668, 8).digit_weight1211,33252 -digit_weight( 0x0668, 8).digit_weight1211,33252 -digit_weight( 0x06F8, 8).digit_weight1212,33278 -digit_weight( 0x06F8, 8).digit_weight1212,33278 -digit_weight( 0x07C8, 8).digit_weight1213,33304 -digit_weight( 0x07C8, 8).digit_weight1213,33304 -digit_weight( 0x096E, 8).digit_weight1214,33330 -digit_weight( 0x096E, 8).digit_weight1214,33330 -digit_weight( 0x09EE, 8).digit_weight1215,33356 -digit_weight( 0x09EE, 8).digit_weight1215,33356 -digit_weight( 0x0A6E, 8).digit_weight1216,33382 -digit_weight( 0x0A6E, 8).digit_weight1216,33382 -digit_weight( 0x0AEE, 8).digit_weight1217,33408 -digit_weight( 0x0AEE, 8).digit_weight1217,33408 -digit_weight( 0x0B6E, 8).digit_weight1218,33434 -digit_weight( 0x0B6E, 8).digit_weight1218,33434 -digit_weight( 0x0BEE, 8).digit_weight1219,33460 -digit_weight( 0x0BEE, 8).digit_weight1219,33460 -digit_weight( 0x0C6E, 8).digit_weight1220,33486 -digit_weight( 0x0C6E, 8).digit_weight1220,33486 -digit_weight( 0x0CEE, 8).digit_weight1221,33512 -digit_weight( 0x0CEE, 8).digit_weight1221,33512 -digit_weight( 0x0D6E, 8).digit_weight1222,33538 -digit_weight( 0x0D6E, 8).digit_weight1222,33538 -digit_weight( 0x0DEE, 8).digit_weight1223,33564 -digit_weight( 0x0DEE, 8).digit_weight1223,33564 -digit_weight( 0x0E58, 8).digit_weight1224,33590 -digit_weight( 0x0E58, 8).digit_weight1224,33590 -digit_weight( 0x0ED8, 8).digit_weight1225,33616 -digit_weight( 0x0ED8, 8).digit_weight1225,33616 -digit_weight( 0x0F28, 8).digit_weight1226,33642 -digit_weight( 0x0F28, 8).digit_weight1226,33642 -digit_weight( 0x1048, 8).digit_weight1227,33668 -digit_weight( 0x1048, 8).digit_weight1227,33668 -digit_weight( 0x1098, 8).digit_weight1228,33694 -digit_weight( 0x1098, 8).digit_weight1228,33694 -digit_weight( 0x1370, 8).digit_weight1229,33720 -digit_weight( 0x1370, 8).digit_weight1229,33720 -digit_weight( 0x17E8, 8).digit_weight1230,33746 -digit_weight( 0x17E8, 8).digit_weight1230,33746 -digit_weight( 0x17F8, 8).digit_weight1231,33772 -digit_weight( 0x17F8, 8).digit_weight1231,33772 -digit_weight( 0x1818, 8).digit_weight1232,33798 -digit_weight( 0x1818, 8).digit_weight1232,33798 -digit_weight( 0x194E, 8).digit_weight1233,33824 -digit_weight( 0x194E, 8).digit_weight1233,33824 -digit_weight( 0x19D8, 8).digit_weight1234,33850 -digit_weight( 0x19D8, 8).digit_weight1234,33850 -digit_weight( 0x1A88, 8).digit_weight1235,33876 -digit_weight( 0x1A88, 8).digit_weight1235,33876 -digit_weight( 0x1A98, 8).digit_weight1236,33902 -digit_weight( 0x1A98, 8).digit_weight1236,33902 -digit_weight( 0x1B58, 8).digit_weight1237,33928 -digit_weight( 0x1B58, 8).digit_weight1237,33928 -digit_weight( 0x1BB8, 8).digit_weight1238,33954 -digit_weight( 0x1BB8, 8).digit_weight1238,33954 -digit_weight( 0x1C48, 8).digit_weight1239,33980 -digit_weight( 0x1C48, 8).digit_weight1239,33980 -digit_weight( 0x1C58, 8).digit_weight1240,34006 -digit_weight( 0x1C58, 8).digit_weight1240,34006 -digit_weight( 0x2078, 8).digit_weight1241,34032 -digit_weight( 0x2078, 8).digit_weight1241,34032 -digit_weight( 0x2088, 8).digit_weight1242,34058 -digit_weight( 0x2088, 8).digit_weight1242,34058 -digit_weight( 0x2167, 8).digit_weight1243,34084 -digit_weight( 0x2167, 8).digit_weight1243,34084 -digit_weight( 0x2177, 8).digit_weight1244,34110 -digit_weight( 0x2177, 8).digit_weight1244,34110 -digit_weight( 0x2467, 8).digit_weight1245,34136 -digit_weight( 0x2467, 8).digit_weight1245,34136 -digit_weight( 0x247B, 8).digit_weight1246,34162 -digit_weight( 0x247B, 8).digit_weight1246,34162 -digit_weight( 0x248F, 8).digit_weight1247,34188 -digit_weight( 0x248F, 8).digit_weight1247,34188 -digit_weight( 0x24FC, 8).digit_weight1248,34214 -digit_weight( 0x24FC, 8).digit_weight1248,34214 -digit_weight( 0x277D, 8).digit_weight1249,34240 -digit_weight( 0x277D, 8).digit_weight1249,34240 -digit_weight( 0x2787, 8).digit_weight1250,34266 -digit_weight( 0x2787, 8).digit_weight1250,34266 -digit_weight( 0x2791, 8).digit_weight1251,34292 -digit_weight( 0x2791, 8).digit_weight1251,34292 -digit_weight( 0x3028, 8).digit_weight1252,34318 -digit_weight( 0x3028, 8).digit_weight1252,34318 -digit_weight( 0x3227, 8).digit_weight1253,34344 -digit_weight( 0x3227, 8).digit_weight1253,34344 -digit_weight( 0x3287, 8).digit_weight1254,34370 -digit_weight( 0x3287, 8).digit_weight1254,34370 -digit_weight( 0x516B, 8).digit_weight1255,34396 -digit_weight( 0x516B, 8).digit_weight1255,34396 -digit_weight( 0x634C, 8).digit_weight1256,34422 -digit_weight( 0x634C, 8).digit_weight1256,34422 -digit_weight( 0xA628, 8).digit_weight1257,34448 -digit_weight( 0xA628, 8).digit_weight1257,34448 -digit_weight( 0xA6ED, 8).digit_weight1258,34474 -digit_weight( 0xA6ED, 8).digit_weight1258,34474 -digit_weight( 0xA8D8, 8).digit_weight1259,34500 -digit_weight( 0xA8D8, 8).digit_weight1259,34500 -digit_weight( 0xA908, 8).digit_weight1260,34526 -digit_weight( 0xA908, 8).digit_weight1260,34526 -digit_weight( 0xA9D8, 8).digit_weight1261,34552 -digit_weight( 0xA9D8, 8).digit_weight1261,34552 -digit_weight( 0xA9F8, 8).digit_weight1262,34578 -digit_weight( 0xA9F8, 8).digit_weight1262,34578 -digit_weight( 0xAA58, 8).digit_weight1263,34604 -digit_weight( 0xAA58, 8).digit_weight1263,34604 -digit_weight( 0xABF8, 8).digit_weight1264,34630 -digit_weight( 0xABF8, 8).digit_weight1264,34630 -digit_weight( 0xFF18, 8).digit_weight1265,34656 -digit_weight( 0xFF18, 8).digit_weight1265,34656 -digit_weight( 0x1010E, 8).digit_weight1266,34682 -digit_weight( 0x1010E, 8).digit_weight1266,34682 -digit_weight( 0x102E8, 8).digit_weight1267,34709 -digit_weight( 0x102E8, 8).digit_weight1267,34709 -digit_weight( 0x104A8, 8).digit_weight1268,34736 -digit_weight( 0x104A8, 8).digit_weight1268,34736 -digit_weight( 0x109C7, 8).digit_weight1269,34763 -digit_weight( 0x109C7, 8).digit_weight1269,34763 -digit_weight( 0x10E67, 8).digit_weight1270,34790 -digit_weight( 0x10E67, 8).digit_weight1270,34790 -digit_weight( 0x11059, 8).digit_weight1271,34817 -digit_weight( 0x11059, 8).digit_weight1271,34817 -digit_weight( 0x1106E, 8).digit_weight1272,34844 -digit_weight( 0x1106E, 8).digit_weight1272,34844 -digit_weight( 0x110F8, 8).digit_weight1273,34871 -digit_weight( 0x110F8, 8).digit_weight1273,34871 -digit_weight( 0x1113E, 8).digit_weight1274,34898 -digit_weight( 0x1113E, 8).digit_weight1274,34898 -digit_weight( 0x111D8, 8).digit_weight1275,34925 -digit_weight( 0x111D8, 8).digit_weight1275,34925 -digit_weight( 0x111E8, 8).digit_weight1276,34952 -digit_weight( 0x111E8, 8).digit_weight1276,34952 -digit_weight( 0x112F8, 8).digit_weight1277,34979 -digit_weight( 0x112F8, 8).digit_weight1277,34979 -digit_weight( 0x114D8, 8).digit_weight1278,35006 -digit_weight( 0x114D8, 8).digit_weight1278,35006 -digit_weight( 0x11658, 8).digit_weight1279,35033 -digit_weight( 0x11658, 8).digit_weight1279,35033 -digit_weight( 0x116C8, 8).digit_weight1280,35060 -digit_weight( 0x116C8, 8).digit_weight1280,35060 -digit_weight( 0x11738, 8).digit_weight1281,35087 -digit_weight( 0x11738, 8).digit_weight1281,35087 -digit_weight( 0x118E8, 8).digit_weight1282,35114 -digit_weight( 0x118E8, 8).digit_weight1282,35114 -digit_weight( 0x12406, 8).digit_weight1283,35141 -digit_weight( 0x12406, 8).digit_weight1283,35141 -digit_weight( 0x1240D, 8).digit_weight1284,35168 -digit_weight( 0x1240D, 8).digit_weight1284,35168 -digit_weight( 0x12413, 8).digit_weight1285,35195 -digit_weight( 0x12413, 8).digit_weight1285,35195 -digit_weight( 0x1241C, 8).digit_weight1286,35222 -digit_weight( 0x1241C, 8).digit_weight1286,35222 -digit_weight( 0x1242A, 8).digit_weight1287,35249 -digit_weight( 0x1242A, 8).digit_weight1287,35249 -digit_weight( 0x12444, 0x12445, 8).digit_weight1288,35276 -digit_weight( 0x12444, 0x12445, 8).digit_weight1288,35276 -digit_weight( 0x1246D, 8).digit_weight1289,35312 -digit_weight( 0x1246D, 8).digit_weight1289,35312 -digit_weight( 0x16A68, 8).digit_weight1290,35339 -digit_weight( 0x16A68, 8).digit_weight1290,35339 -digit_weight( 0x16B58, 8).digit_weight1291,35366 -digit_weight( 0x16B58, 8).digit_weight1291,35366 -digit_weight( 0x1D367, 8).digit_weight1292,35393 -digit_weight( 0x1D367, 8).digit_weight1292,35393 -digit_weight( 0x1D7D6, 8).digit_weight1293,35420 -digit_weight( 0x1D7D6, 8).digit_weight1293,35420 -digit_weight( 0x1D7E0, 8).digit_weight1294,35447 -digit_weight( 0x1D7E0, 8).digit_weight1294,35447 -digit_weight( 0x1D7EA, 8).digit_weight1295,35474 -digit_weight( 0x1D7EA, 8).digit_weight1295,35474 -digit_weight( 0x1D7F4, 8).digit_weight1296,35501 -digit_weight( 0x1D7F4, 8).digit_weight1296,35501 -digit_weight( 0x1D7FE, 8).digit_weight1297,35528 -digit_weight( 0x1D7FE, 8).digit_weight1297,35528 -digit_weight( 0x1E8CE, 8).digit_weight1298,35555 -digit_weight( 0x1E8CE, 8).digit_weight1298,35555 -digit_weight( 0x1F109, 8).digit_weight1299,35582 -digit_weight( 0x1F109, 8).digit_weight1299,35582 -digit_weight( 0x0F32, 17/2).digit_weight1300,35609 -digit_weight( 0x0F32, 17/2).digit_weight1300,35609 -digit_weight( 0x0039, 9).digit_weight1301,35638 -digit_weight( 0x0039, 9).digit_weight1301,35638 -digit_weight( 0x0669, 9).digit_weight1302,35664 -digit_weight( 0x0669, 9).digit_weight1302,35664 -digit_weight( 0x06F9, 9).digit_weight1303,35690 -digit_weight( 0x06F9, 9).digit_weight1303,35690 -digit_weight( 0x07C9, 9).digit_weight1304,35716 -digit_weight( 0x07C9, 9).digit_weight1304,35716 -digit_weight( 0x096F, 9).digit_weight1305,35742 -digit_weight( 0x096F, 9).digit_weight1305,35742 -digit_weight( 0x09EF, 9).digit_weight1306,35768 -digit_weight( 0x09EF, 9).digit_weight1306,35768 -digit_weight( 0x0A6F, 9).digit_weight1307,35794 -digit_weight( 0x0A6F, 9).digit_weight1307,35794 -digit_weight( 0x0AEF, 9).digit_weight1308,35820 -digit_weight( 0x0AEF, 9).digit_weight1308,35820 -digit_weight( 0x0B6F, 9).digit_weight1309,35846 -digit_weight( 0x0B6F, 9).digit_weight1309,35846 -digit_weight( 0x0BEF, 9).digit_weight1310,35872 -digit_weight( 0x0BEF, 9).digit_weight1310,35872 -digit_weight( 0x0C6F, 9).digit_weight1311,35898 -digit_weight( 0x0C6F, 9).digit_weight1311,35898 -digit_weight( 0x0CEF, 9).digit_weight1312,35924 -digit_weight( 0x0CEF, 9).digit_weight1312,35924 -digit_weight( 0x0D6F, 9).digit_weight1313,35950 -digit_weight( 0x0D6F, 9).digit_weight1313,35950 -digit_weight( 0x0DEF, 9).digit_weight1314,35976 -digit_weight( 0x0DEF, 9).digit_weight1314,35976 -digit_weight( 0x0E59, 9).digit_weight1315,36002 -digit_weight( 0x0E59, 9).digit_weight1315,36002 -digit_weight( 0x0ED9, 9).digit_weight1316,36028 -digit_weight( 0x0ED9, 9).digit_weight1316,36028 -digit_weight( 0x0F29, 9).digit_weight1317,36054 -digit_weight( 0x0F29, 9).digit_weight1317,36054 -digit_weight( 0x1049, 9).digit_weight1318,36080 -digit_weight( 0x1049, 9).digit_weight1318,36080 -digit_weight( 0x1099, 9).digit_weight1319,36106 -digit_weight( 0x1099, 9).digit_weight1319,36106 -digit_weight( 0x1371, 9).digit_weight1320,36132 -digit_weight( 0x1371, 9).digit_weight1320,36132 -digit_weight( 0x17E9, 9).digit_weight1321,36158 -digit_weight( 0x17E9, 9).digit_weight1321,36158 -digit_weight( 0x17F9, 9).digit_weight1322,36184 -digit_weight( 0x17F9, 9).digit_weight1322,36184 -digit_weight( 0x1819, 9).digit_weight1323,36210 -digit_weight( 0x1819, 9).digit_weight1323,36210 -digit_weight( 0x194F, 9).digit_weight1324,36236 -digit_weight( 0x194F, 9).digit_weight1324,36236 -digit_weight( 0x19D9, 9).digit_weight1325,36262 -digit_weight( 0x19D9, 9).digit_weight1325,36262 -digit_weight( 0x1A89, 9).digit_weight1326,36288 -digit_weight( 0x1A89, 9).digit_weight1326,36288 -digit_weight( 0x1A99, 9).digit_weight1327,36314 -digit_weight( 0x1A99, 9).digit_weight1327,36314 -digit_weight( 0x1B59, 9).digit_weight1328,36340 -digit_weight( 0x1B59, 9).digit_weight1328,36340 -digit_weight( 0x1BB9, 9).digit_weight1329,36366 -digit_weight( 0x1BB9, 9).digit_weight1329,36366 -digit_weight( 0x1C49, 9).digit_weight1330,36392 -digit_weight( 0x1C49, 9).digit_weight1330,36392 -digit_weight( 0x1C59, 9).digit_weight1331,36418 -digit_weight( 0x1C59, 9).digit_weight1331,36418 -digit_weight( 0x2079, 9).digit_weight1332,36444 -digit_weight( 0x2079, 9).digit_weight1332,36444 -digit_weight( 0x2089, 9).digit_weight1333,36470 -digit_weight( 0x2089, 9).digit_weight1333,36470 -digit_weight( 0x2168, 9).digit_weight1334,36496 -digit_weight( 0x2168, 9).digit_weight1334,36496 -digit_weight( 0x2178, 9).digit_weight1335,36522 -digit_weight( 0x2178, 9).digit_weight1335,36522 -digit_weight( 0x2468, 9).digit_weight1336,36548 -digit_weight( 0x2468, 9).digit_weight1336,36548 -digit_weight( 0x247C, 9).digit_weight1337,36574 -digit_weight( 0x247C, 9).digit_weight1337,36574 -digit_weight( 0x2490, 9).digit_weight1338,36600 -digit_weight( 0x2490, 9).digit_weight1338,36600 -digit_weight( 0x24FD, 9).digit_weight1339,36626 -digit_weight( 0x24FD, 9).digit_weight1339,36626 -digit_weight( 0x277E, 9).digit_weight1340,36652 -digit_weight( 0x277E, 9).digit_weight1340,36652 -digit_weight( 0x2788, 9).digit_weight1341,36678 -digit_weight( 0x2788, 9).digit_weight1341,36678 -digit_weight( 0x2792, 9).digit_weight1342,36704 -digit_weight( 0x2792, 9).digit_weight1342,36704 -digit_weight( 0x3029, 9).digit_weight1343,36730 -digit_weight( 0x3029, 9).digit_weight1343,36730 -digit_weight( 0x3228, 9).digit_weight1344,36756 -digit_weight( 0x3228, 9).digit_weight1344,36756 -digit_weight( 0x3288, 9).digit_weight1345,36782 -digit_weight( 0x3288, 9).digit_weight1345,36782 -digit_weight( 0x4E5D, 9).digit_weight1346,36808 -digit_weight( 0x4E5D, 9).digit_weight1346,36808 -digit_weight( 0x5EFE, 9).digit_weight1347,36834 -digit_weight( 0x5EFE, 9).digit_weight1347,36834 -digit_weight( 0x7396, 9).digit_weight1348,36860 -digit_weight( 0x7396, 9).digit_weight1348,36860 -digit_weight( 0xA629, 9).digit_weight1349,36886 -digit_weight( 0xA629, 9).digit_weight1349,36886 -digit_weight( 0xA6EE, 9).digit_weight1350,36912 -digit_weight( 0xA6EE, 9).digit_weight1350,36912 -digit_weight( 0xA8D9, 9).digit_weight1351,36938 -digit_weight( 0xA8D9, 9).digit_weight1351,36938 -digit_weight( 0xA909, 9).digit_weight1352,36964 -digit_weight( 0xA909, 9).digit_weight1352,36964 -digit_weight( 0xA9D9, 9).digit_weight1353,36990 -digit_weight( 0xA9D9, 9).digit_weight1353,36990 -digit_weight( 0xA9F9, 9).digit_weight1354,37016 -digit_weight( 0xA9F9, 9).digit_weight1354,37016 -digit_weight( 0xAA59, 9).digit_weight1355,37042 -digit_weight( 0xAA59, 9).digit_weight1355,37042 -digit_weight( 0xABF9, 9).digit_weight1356,37068 -digit_weight( 0xABF9, 9).digit_weight1356,37068 -digit_weight( 0xFF19, 9).digit_weight1357,37094 -digit_weight( 0xFF19, 9).digit_weight1357,37094 -digit_weight( 0x1010F, 9).digit_weight1358,37120 -digit_weight( 0x1010F, 9).digit_weight1358,37120 -digit_weight( 0x102E9, 9).digit_weight1359,37147 -digit_weight( 0x102E9, 9).digit_weight1359,37147 -digit_weight( 0x104A9, 9).digit_weight1360,37174 -digit_weight( 0x104A9, 9).digit_weight1360,37174 -digit_weight( 0x109C8, 9).digit_weight1361,37201 -digit_weight( 0x109C8, 9).digit_weight1361,37201 -digit_weight( 0x10E68, 9).digit_weight1362,37228 -digit_weight( 0x10E68, 9).digit_weight1362,37228 -digit_weight( 0x1105A, 9).digit_weight1363,37255 -digit_weight( 0x1105A, 9).digit_weight1363,37255 -digit_weight( 0x1106F, 9).digit_weight1364,37282 -digit_weight( 0x1106F, 9).digit_weight1364,37282 -digit_weight( 0x110F9, 9).digit_weight1365,37309 -digit_weight( 0x110F9, 9).digit_weight1365,37309 -digit_weight( 0x1113F, 9).digit_weight1366,37336 -digit_weight( 0x1113F, 9).digit_weight1366,37336 -digit_weight( 0x111D9, 9).digit_weight1367,37363 -digit_weight( 0x111D9, 9).digit_weight1367,37363 -digit_weight( 0x111E9, 9).digit_weight1368,37390 -digit_weight( 0x111E9, 9).digit_weight1368,37390 -digit_weight( 0x112F9, 9).digit_weight1369,37417 -digit_weight( 0x112F9, 9).digit_weight1369,37417 -digit_weight( 0x114D9, 9).digit_weight1370,37444 -digit_weight( 0x114D9, 9).digit_weight1370,37444 -digit_weight( 0x11659, 9).digit_weight1371,37471 -digit_weight( 0x11659, 9).digit_weight1371,37471 -digit_weight( 0x116C9, 9).digit_weight1372,37498 -digit_weight( 0x116C9, 9).digit_weight1372,37498 -digit_weight( 0x11739, 9).digit_weight1373,37525 -digit_weight( 0x11739, 9).digit_weight1373,37525 -digit_weight( 0x118E9, 9).digit_weight1374,37552 -digit_weight( 0x118E9, 9).digit_weight1374,37552 -digit_weight( 0x12407, 9).digit_weight1375,37579 -digit_weight( 0x12407, 9).digit_weight1375,37579 -digit_weight( 0x1240E, 9).digit_weight1376,37606 -digit_weight( 0x1240E, 9).digit_weight1376,37606 -digit_weight( 0x12414, 9).digit_weight1377,37633 -digit_weight( 0x12414, 9).digit_weight1377,37633 -digit_weight( 0x1241D, 9).digit_weight1378,37660 -digit_weight( 0x1241D, 9).digit_weight1378,37660 -digit_weight( 0x1242B, 9).digit_weight1379,37687 -digit_weight( 0x1242B, 9).digit_weight1379,37687 -digit_weight( 0x12446, 0x12449, 9).digit_weight1380,37714 -digit_weight( 0x12446, 0x12449, 9).digit_weight1380,37714 -digit_weight( 0x1246E, 9).digit_weight1381,37750 -digit_weight( 0x1246E, 9).digit_weight1381,37750 -digit_weight( 0x16A69, 9).digit_weight1382,37777 -digit_weight( 0x16A69, 9).digit_weight1382,37777 -digit_weight( 0x16B59, 9).digit_weight1383,37804 -digit_weight( 0x16B59, 9).digit_weight1383,37804 -digit_weight( 0x1D368, 9).digit_weight1384,37831 -digit_weight( 0x1D368, 9).digit_weight1384,37831 -digit_weight( 0x1D7D7, 9).digit_weight1385,37858 -digit_weight( 0x1D7D7, 9).digit_weight1385,37858 -digit_weight( 0x1D7E1, 9).digit_weight1386,37885 -digit_weight( 0x1D7E1, 9).digit_weight1386,37885 -digit_weight( 0x1D7EB, 9).digit_weight1387,37912 -digit_weight( 0x1D7EB, 9).digit_weight1387,37912 -digit_weight( 0x1D7F5, 9).digit_weight1388,37939 -digit_weight( 0x1D7F5, 9).digit_weight1388,37939 -digit_weight( 0x1D7FF, 9).digit_weight1389,37966 -digit_weight( 0x1D7FF, 9).digit_weight1389,37966 -digit_weight( 0x1E8CF, 9).digit_weight1390,37993 -digit_weight( 0x1E8CF, 9).digit_weight1390,37993 -digit_weight( 0x1F10A, 9).digit_weight1391,38020 -digit_weight( 0x1F10A, 9).digit_weight1391,38020 -digit_weight( 0x2F890, 9).digit_weight1392,38047 -digit_weight( 0x2F890, 9).digit_weight1392,38047 -digit_weight( 0x0BF0, 10).digit_weight1393,38074 -digit_weight( 0x0BF0, 10).digit_weight1393,38074 -digit_weight( 0x0D70, 10).digit_weight1394,38101 -digit_weight( 0x0D70, 10).digit_weight1394,38101 -digit_weight( 0x1372, 10).digit_weight1395,38128 -digit_weight( 0x1372, 10).digit_weight1395,38128 -digit_weight( 0x2169, 10).digit_weight1396,38155 -digit_weight( 0x2169, 10).digit_weight1396,38155 -digit_weight( 0x2179, 10).digit_weight1397,38182 -digit_weight( 0x2179, 10).digit_weight1397,38182 -digit_weight( 0x2469, 10).digit_weight1398,38209 -digit_weight( 0x2469, 10).digit_weight1398,38209 -digit_weight( 0x247D, 10).digit_weight1399,38236 -digit_weight( 0x247D, 10).digit_weight1399,38236 -digit_weight( 0x2491, 10).digit_weight1400,38263 -digit_weight( 0x2491, 10).digit_weight1400,38263 -digit_weight( 0x24FE, 10).digit_weight1401,38290 -digit_weight( 0x24FE, 10).digit_weight1401,38290 -digit_weight( 0x277F, 10).digit_weight1402,38317 -digit_weight( 0x277F, 10).digit_weight1402,38317 -digit_weight( 0x2789, 10).digit_weight1403,38344 -digit_weight( 0x2789, 10).digit_weight1403,38344 -digit_weight( 0x2793, 10).digit_weight1404,38371 -digit_weight( 0x2793, 10).digit_weight1404,38371 -digit_weight( 0x3038, 10).digit_weight1405,38398 -digit_weight( 0x3038, 10).digit_weight1405,38398 -digit_weight( 0x3229, 10).digit_weight1406,38425 -digit_weight( 0x3229, 10).digit_weight1406,38425 -digit_weight( 0x3248, 10).digit_weight1407,38452 -digit_weight( 0x3248, 10).digit_weight1407,38452 -digit_weight( 0x3289, 10).digit_weight1408,38479 -digit_weight( 0x3289, 10).digit_weight1408,38479 -digit_weight( 0x4EC0, 10).digit_weight1409,38506 -digit_weight( 0x4EC0, 10).digit_weight1409,38506 -digit_weight( 0x5341, 10).digit_weight1410,38533 -digit_weight( 0x5341, 10).digit_weight1410,38533 -digit_weight( 0x62FE, 10).digit_weight1411,38560 -digit_weight( 0x62FE, 10).digit_weight1411,38560 -digit_weight( 0xF973, 10).digit_weight1412,38587 -digit_weight( 0xF973, 10).digit_weight1412,38587 -digit_weight( 0xF9FD, 10).digit_weight1413,38614 -digit_weight( 0xF9FD, 10).digit_weight1413,38614 -digit_weight( 0x10110, 10).digit_weight1414,38641 -digit_weight( 0x10110, 10).digit_weight1414,38641 -digit_weight( 0x10149, 10).digit_weight1415,38669 -digit_weight( 0x10149, 10).digit_weight1415,38669 -digit_weight( 0x10150, 10).digit_weight1416,38697 -digit_weight( 0x10150, 10).digit_weight1416,38697 -digit_weight( 0x10157, 10).digit_weight1417,38725 -digit_weight( 0x10157, 10).digit_weight1417,38725 -digit_weight( 0x10160, 0x10164, 10).digit_weight1418,38753 -digit_weight( 0x10160, 0x10164, 10).digit_weight1418,38753 -digit_weight( 0x102EA, 10).digit_weight1419,38790 -digit_weight( 0x102EA, 10).digit_weight1419,38790 -digit_weight( 0x10322, 10).digit_weight1420,38818 -digit_weight( 0x10322, 10).digit_weight1420,38818 -digit_weight( 0x103D3, 10).digit_weight1421,38846 -digit_weight( 0x103D3, 10).digit_weight1421,38846 -digit_weight( 0x1085B, 10).digit_weight1422,38874 -digit_weight( 0x1085B, 10).digit_weight1422,38874 -digit_weight( 0x1087E, 10).digit_weight1423,38902 -digit_weight( 0x1087E, 10).digit_weight1423,38902 -digit_weight( 0x108AD, 10).digit_weight1424,38930 -digit_weight( 0x108AD, 10).digit_weight1424,38930 -digit_weight( 0x108FD, 10).digit_weight1425,38958 -digit_weight( 0x108FD, 10).digit_weight1425,38958 -digit_weight( 0x10917, 10).digit_weight1426,38986 -digit_weight( 0x10917, 10).digit_weight1426,38986 -digit_weight( 0x109C9, 10).digit_weight1427,39014 -digit_weight( 0x109C9, 10).digit_weight1427,39014 -digit_weight( 0x10A44, 10).digit_weight1428,39042 -digit_weight( 0x10A44, 10).digit_weight1428,39042 -digit_weight( 0x10A9E, 10).digit_weight1429,39070 -digit_weight( 0x10A9E, 10).digit_weight1429,39070 -digit_weight( 0x10AED, 10).digit_weight1430,39098 -digit_weight( 0x10AED, 10).digit_weight1430,39098 -digit_weight( 0x10B5C, 10).digit_weight1431,39126 -digit_weight( 0x10B5C, 10).digit_weight1431,39126 -digit_weight( 0x10B7C, 10).digit_weight1432,39154 -digit_weight( 0x10B7C, 10).digit_weight1432,39154 -digit_weight( 0x10BAD, 10).digit_weight1433,39182 -digit_weight( 0x10BAD, 10).digit_weight1433,39182 -digit_weight( 0x10CFC, 10).digit_weight1434,39210 -digit_weight( 0x10CFC, 10).digit_weight1434,39210 -digit_weight( 0x10E69, 10).digit_weight1435,39238 -digit_weight( 0x10E69, 10).digit_weight1435,39238 -digit_weight( 0x1105B, 10).digit_weight1436,39266 -digit_weight( 0x1105B, 10).digit_weight1436,39266 -digit_weight( 0x111EA, 10).digit_weight1437,39294 -digit_weight( 0x111EA, 10).digit_weight1437,39294 -digit_weight( 0x1173A, 10).digit_weight1438,39322 -digit_weight( 0x1173A, 10).digit_weight1438,39322 -digit_weight( 0x118EA, 10).digit_weight1439,39350 -digit_weight( 0x118EA, 10).digit_weight1439,39350 -digit_weight( 0x16B5B, 10).digit_weight1440,39378 -digit_weight( 0x16B5B, 10).digit_weight1440,39378 -digit_weight( 0x1D369, 10).digit_weight1441,39406 -digit_weight( 0x1D369, 10).digit_weight1441,39406 -digit_weight( 0x216A, 11).digit_weight1442,39434 -digit_weight( 0x216A, 11).digit_weight1442,39434 -digit_weight( 0x217A, 11).digit_weight1443,39461 -digit_weight( 0x217A, 11).digit_weight1443,39461 -digit_weight( 0x246A, 11).digit_weight1444,39488 -digit_weight( 0x246A, 11).digit_weight1444,39488 -digit_weight( 0x247E, 11).digit_weight1445,39515 -digit_weight( 0x247E, 11).digit_weight1445,39515 -digit_weight( 0x2492, 11).digit_weight1446,39542 -digit_weight( 0x2492, 11).digit_weight1446,39542 -digit_weight( 0x24EB, 11).digit_weight1447,39569 -digit_weight( 0x24EB, 11).digit_weight1447,39569 -digit_weight( 0x216B, 12).digit_weight1448,39596 -digit_weight( 0x216B, 12).digit_weight1448,39596 -digit_weight( 0x217B, 12).digit_weight1449,39623 -digit_weight( 0x217B, 12).digit_weight1449,39623 -digit_weight( 0x246B, 12).digit_weight1450,39650 -digit_weight( 0x246B, 12).digit_weight1450,39650 -digit_weight( 0x247F, 12).digit_weight1451,39677 -digit_weight( 0x247F, 12).digit_weight1451,39677 -digit_weight( 0x2493, 12).digit_weight1452,39704 -digit_weight( 0x2493, 12).digit_weight1452,39704 -digit_weight( 0x24EC, 12).digit_weight1453,39731 -digit_weight( 0x24EC, 12).digit_weight1453,39731 -digit_weight( 0x246C, 13).digit_weight1454,39758 -digit_weight( 0x246C, 13).digit_weight1454,39758 -digit_weight( 0x2480, 13).digit_weight1455,39785 -digit_weight( 0x2480, 13).digit_weight1455,39785 -digit_weight( 0x2494, 13).digit_weight1456,39812 -digit_weight( 0x2494, 13).digit_weight1456,39812 -digit_weight( 0x24ED, 13).digit_weight1457,39839 -digit_weight( 0x24ED, 13).digit_weight1457,39839 -digit_weight( 0x246D, 14).digit_weight1458,39866 -digit_weight( 0x246D, 14).digit_weight1458,39866 -digit_weight( 0x2481, 14).digit_weight1459,39893 -digit_weight( 0x2481, 14).digit_weight1459,39893 -digit_weight( 0x2495, 14).digit_weight1460,39920 -digit_weight( 0x2495, 14).digit_weight1460,39920 -digit_weight( 0x24EE, 14).digit_weight1461,39947 -digit_weight( 0x24EE, 14).digit_weight1461,39947 -digit_weight( 0x246E, 15).digit_weight1462,39974 -digit_weight( 0x246E, 15).digit_weight1462,39974 -digit_weight( 0x2482, 15).digit_weight1463,40001 -digit_weight( 0x2482, 15).digit_weight1463,40001 -digit_weight( 0x2496, 15).digit_weight1464,40028 -digit_weight( 0x2496, 15).digit_weight1464,40028 -digit_weight( 0x24EF, 15).digit_weight1465,40055 -digit_weight( 0x24EF, 15).digit_weight1465,40055 -digit_weight( 0x09F9, 16).digit_weight1466,40082 -digit_weight( 0x09F9, 16).digit_weight1466,40082 -digit_weight( 0x246F, 16).digit_weight1467,40109 -digit_weight( 0x246F, 16).digit_weight1467,40109 -digit_weight( 0x2483, 16).digit_weight1468,40136 -digit_weight( 0x2483, 16).digit_weight1468,40136 -digit_weight( 0x2497, 16).digit_weight1469,40163 -digit_weight( 0x2497, 16).digit_weight1469,40163 -digit_weight( 0x24F0, 16).digit_weight1470,40190 -digit_weight( 0x24F0, 16).digit_weight1470,40190 -digit_weight( 0x16EE, 17).digit_weight1471,40217 -digit_weight( 0x16EE, 17).digit_weight1471,40217 -digit_weight( 0x2470, 17).digit_weight1472,40244 -digit_weight( 0x2470, 17).digit_weight1472,40244 -digit_weight( 0x2484, 17).digit_weight1473,40271 -digit_weight( 0x2484, 17).digit_weight1473,40271 -digit_weight( 0x2498, 17).digit_weight1474,40298 -digit_weight( 0x2498, 17).digit_weight1474,40298 -digit_weight( 0x24F1, 17).digit_weight1475,40325 -digit_weight( 0x24F1, 17).digit_weight1475,40325 -digit_weight( 0x16EF, 18).digit_weight1476,40352 -digit_weight( 0x16EF, 18).digit_weight1476,40352 -digit_weight( 0x2471, 18).digit_weight1477,40379 -digit_weight( 0x2471, 18).digit_weight1477,40379 -digit_weight( 0x2485, 18).digit_weight1478,40406 -digit_weight( 0x2485, 18).digit_weight1478,40406 -digit_weight( 0x2499, 18).digit_weight1479,40433 -digit_weight( 0x2499, 18).digit_weight1479,40433 -digit_weight( 0x24F2, 18).digit_weight1480,40460 -digit_weight( 0x24F2, 18).digit_weight1480,40460 -digit_weight( 0x16F0, 19).digit_weight1481,40487 -digit_weight( 0x16F0, 19).digit_weight1481,40487 -digit_weight( 0x2472, 19).digit_weight1482,40514 -digit_weight( 0x2472, 19).digit_weight1482,40514 -digit_weight( 0x2486, 19).digit_weight1483,40541 -digit_weight( 0x2486, 19).digit_weight1483,40541 -digit_weight( 0x249A, 19).digit_weight1484,40568 -digit_weight( 0x249A, 19).digit_weight1484,40568 -digit_weight( 0x24F3, 19).digit_weight1485,40595 -digit_weight( 0x24F3, 19).digit_weight1485,40595 -digit_weight( 0x1373, 20).digit_weight1486,40622 -digit_weight( 0x1373, 20).digit_weight1486,40622 -digit_weight( 0x2473, 20).digit_weight1487,40649 -digit_weight( 0x2473, 20).digit_weight1487,40649 -digit_weight( 0x2487, 20).digit_weight1488,40676 -digit_weight( 0x2487, 20).digit_weight1488,40676 -digit_weight( 0x249B, 20).digit_weight1489,40703 -digit_weight( 0x249B, 20).digit_weight1489,40703 -digit_weight( 0x24F4, 20).digit_weight1490,40730 -digit_weight( 0x24F4, 20).digit_weight1490,40730 -digit_weight( 0x3039, 20).digit_weight1491,40757 -digit_weight( 0x3039, 20).digit_weight1491,40757 -digit_weight( 0x3249, 20).digit_weight1492,40784 -digit_weight( 0x3249, 20).digit_weight1492,40784 -digit_weight( 0x5344, 20).digit_weight1493,40811 -digit_weight( 0x5344, 20).digit_weight1493,40811 -digit_weight( 0x5EFF, 20).digit_weight1494,40838 -digit_weight( 0x5EFF, 20).digit_weight1494,40838 -digit_weight( 0x10111, 20).digit_weight1495,40865 -digit_weight( 0x10111, 20).digit_weight1495,40865 -digit_weight( 0x102EB, 20).digit_weight1496,40893 -digit_weight( 0x102EB, 20).digit_weight1496,40893 -digit_weight( 0x103D4, 20).digit_weight1497,40921 -digit_weight( 0x103D4, 20).digit_weight1497,40921 -digit_weight( 0x1085C, 20).digit_weight1498,40949 -digit_weight( 0x1085C, 20).digit_weight1498,40949 -digit_weight( 0x1087F, 20).digit_weight1499,40977 -digit_weight( 0x1087F, 20).digit_weight1499,40977 -digit_weight( 0x108AE, 20).digit_weight1500,41005 -digit_weight( 0x108AE, 20).digit_weight1500,41005 -digit_weight( 0x108FE, 20).digit_weight1501,41033 -digit_weight( 0x108FE, 20).digit_weight1501,41033 -digit_weight( 0x10918, 20).digit_weight1502,41061 -digit_weight( 0x10918, 20).digit_weight1502,41061 -digit_weight( 0x109CA, 20).digit_weight1503,41089 -digit_weight( 0x109CA, 20).digit_weight1503,41089 -digit_weight( 0x10A45, 20).digit_weight1504,41117 -digit_weight( 0x10A45, 20).digit_weight1504,41117 -digit_weight( 0x10A9F, 20).digit_weight1505,41145 -digit_weight( 0x10A9F, 20).digit_weight1505,41145 -digit_weight( 0x10AEE, 20).digit_weight1506,41173 -digit_weight( 0x10AEE, 20).digit_weight1506,41173 -digit_weight( 0x10B5D, 20).digit_weight1507,41201 -digit_weight( 0x10B5D, 20).digit_weight1507,41201 -digit_weight( 0x10B7D, 20).digit_weight1508,41229 -digit_weight( 0x10B7D, 20).digit_weight1508,41229 -digit_weight( 0x10BAE, 20).digit_weight1509,41257 -digit_weight( 0x10BAE, 20).digit_weight1509,41257 -digit_weight( 0x10E6A, 20).digit_weight1510,41285 -digit_weight( 0x10E6A, 20).digit_weight1510,41285 -digit_weight( 0x1105C, 20).digit_weight1511,41313 -digit_weight( 0x1105C, 20).digit_weight1511,41313 -digit_weight( 0x111EB, 20).digit_weight1512,41341 -digit_weight( 0x111EB, 20).digit_weight1512,41341 -digit_weight( 0x1173B, 20).digit_weight1513,41369 -digit_weight( 0x1173B, 20).digit_weight1513,41369 -digit_weight( 0x118EB, 20).digit_weight1514,41397 -digit_weight( 0x118EB, 20).digit_weight1514,41397 -digit_weight( 0x1D36A, 20).digit_weight1515,41425 -digit_weight( 0x1D36A, 20).digit_weight1515,41425 -digit_weight( 0x3251, 21).digit_weight1516,41453 -digit_weight( 0x3251, 21).digit_weight1516,41453 -digit_weight( 0x3252, 22).digit_weight1517,41480 -digit_weight( 0x3252, 22).digit_weight1517,41480 -digit_weight( 0x3253, 23).digit_weight1518,41507 -digit_weight( 0x3253, 23).digit_weight1518,41507 -digit_weight( 0x3254, 24).digit_weight1519,41534 -digit_weight( 0x3254, 24).digit_weight1519,41534 -digit_weight( 0x3255, 25).digit_weight1520,41561 -digit_weight( 0x3255, 25).digit_weight1520,41561 -digit_weight( 0x3256, 26).digit_weight1521,41588 -digit_weight( 0x3256, 26).digit_weight1521,41588 -digit_weight( 0x3257, 27).digit_weight1522,41615 -digit_weight( 0x3257, 27).digit_weight1522,41615 -digit_weight( 0x3258, 28).digit_weight1523,41642 -digit_weight( 0x3258, 28).digit_weight1523,41642 -digit_weight( 0x3259, 29).digit_weight1524,41669 -digit_weight( 0x3259, 29).digit_weight1524,41669 -digit_weight( 0x1374, 30).digit_weight1525,41696 -digit_weight( 0x1374, 30).digit_weight1525,41696 -digit_weight( 0x303A, 30).digit_weight1526,41723 -digit_weight( 0x303A, 30).digit_weight1526,41723 -digit_weight( 0x324A, 30).digit_weight1527,41750 -digit_weight( 0x324A, 30).digit_weight1527,41750 -digit_weight( 0x325A, 30).digit_weight1528,41777 -digit_weight( 0x325A, 30).digit_weight1528,41777 -digit_weight( 0x5345, 30).digit_weight1529,41804 -digit_weight( 0x5345, 30).digit_weight1529,41804 -digit_weight( 0x10112, 30).digit_weight1530,41831 -digit_weight( 0x10112, 30).digit_weight1530,41831 -digit_weight( 0x10165, 30).digit_weight1531,41859 -digit_weight( 0x10165, 30).digit_weight1531,41859 -digit_weight( 0x102EC, 30).digit_weight1532,41887 -digit_weight( 0x102EC, 30).digit_weight1532,41887 -digit_weight( 0x109CB, 30).digit_weight1533,41915 -digit_weight( 0x109CB, 30).digit_weight1533,41915 -digit_weight( 0x10E6B, 30).digit_weight1534,41943 -digit_weight( 0x10E6B, 30).digit_weight1534,41943 -digit_weight( 0x1105D, 30).digit_weight1535,41971 -digit_weight( 0x1105D, 30).digit_weight1535,41971 -digit_weight( 0x111EC, 30).digit_weight1536,41999 -digit_weight( 0x111EC, 30).digit_weight1536,41999 -digit_weight( 0x118EC, 30).digit_weight1537,42027 -digit_weight( 0x118EC, 30).digit_weight1537,42027 -digit_weight( 0x1D36B, 30).digit_weight1538,42055 -digit_weight( 0x1D36B, 30).digit_weight1538,42055 -digit_weight( 0x20983, 30).digit_weight1539,42083 -digit_weight( 0x20983, 30).digit_weight1539,42083 -digit_weight( 0x325B, 31).digit_weight1540,42111 -digit_weight( 0x325B, 31).digit_weight1540,42111 -digit_weight( 0x325C, 32).digit_weight1541,42138 -digit_weight( 0x325C, 32).digit_weight1541,42138 -digit_weight( 0x325D, 33).digit_weight1542,42165 -digit_weight( 0x325D, 33).digit_weight1542,42165 -digit_weight( 0x325E, 34).digit_weight1543,42192 -digit_weight( 0x325E, 34).digit_weight1543,42192 -digit_weight( 0x325F, 35).digit_weight1544,42219 -digit_weight( 0x325F, 35).digit_weight1544,42219 -digit_weight( 0x32B1, 36).digit_weight1545,42246 -digit_weight( 0x32B1, 36).digit_weight1545,42246 -digit_weight( 0x32B2, 37).digit_weight1546,42273 -digit_weight( 0x32B2, 37).digit_weight1546,42273 -digit_weight( 0x32B3, 38).digit_weight1547,42300 -digit_weight( 0x32B3, 38).digit_weight1547,42300 -digit_weight( 0x32B4, 39).digit_weight1548,42327 -digit_weight( 0x32B4, 39).digit_weight1548,42327 -digit_weight( 0x1375, 40).digit_weight1549,42354 -digit_weight( 0x1375, 40).digit_weight1549,42354 -digit_weight( 0x324B, 40).digit_weight1550,42381 -digit_weight( 0x324B, 40).digit_weight1550,42381 -digit_weight( 0x32B5, 40).digit_weight1551,42408 -digit_weight( 0x32B5, 40).digit_weight1551,42408 -digit_weight( 0x534C, 40).digit_weight1552,42435 -digit_weight( 0x534C, 40).digit_weight1552,42435 -digit_weight( 0x10113, 40).digit_weight1553,42462 -digit_weight( 0x10113, 40).digit_weight1553,42462 -digit_weight( 0x102ED, 40).digit_weight1554,42490 -digit_weight( 0x102ED, 40).digit_weight1554,42490 -digit_weight( 0x109CC, 40).digit_weight1555,42518 -digit_weight( 0x109CC, 40).digit_weight1555,42518 -digit_weight( 0x10E6C, 40).digit_weight1556,42546 -digit_weight( 0x10E6C, 40).digit_weight1556,42546 -digit_weight( 0x1105E, 40).digit_weight1557,42574 -digit_weight( 0x1105E, 40).digit_weight1557,42574 -digit_weight( 0x111ED, 40).digit_weight1558,42602 -digit_weight( 0x111ED, 40).digit_weight1558,42602 -digit_weight( 0x118ED, 40).digit_weight1559,42630 -digit_weight( 0x118ED, 40).digit_weight1559,42630 -digit_weight( 0x12467, 40).digit_weight1560,42658 -digit_weight( 0x12467, 40).digit_weight1560,42658 -digit_weight( 0x1D36C, 40).digit_weight1561,42686 -digit_weight( 0x1D36C, 40).digit_weight1561,42686 -digit_weight( 0x2098C, 40).digit_weight1562,42714 -digit_weight( 0x2098C, 40).digit_weight1562,42714 -digit_weight( 0x2099C, 40).digit_weight1563,42742 -digit_weight( 0x2099C, 40).digit_weight1563,42742 -digit_weight( 0x32B6, 41).digit_weight1564,42770 -digit_weight( 0x32B6, 41).digit_weight1564,42770 -digit_weight( 0x32B7, 42).digit_weight1565,42797 -digit_weight( 0x32B7, 42).digit_weight1565,42797 -digit_weight( 0x32B8, 43).digit_weight1566,42824 -digit_weight( 0x32B8, 43).digit_weight1566,42824 -digit_weight( 0x32B9, 44).digit_weight1567,42851 -digit_weight( 0x32B9, 44).digit_weight1567,42851 -digit_weight( 0x32BA, 45).digit_weight1568,42878 -digit_weight( 0x32BA, 45).digit_weight1568,42878 -digit_weight( 0x32BB, 46).digit_weight1569,42905 -digit_weight( 0x32BB, 46).digit_weight1569,42905 -digit_weight( 0x32BC, 47).digit_weight1570,42932 -digit_weight( 0x32BC, 47).digit_weight1570,42932 -digit_weight( 0x32BD, 48).digit_weight1571,42959 -digit_weight( 0x32BD, 48).digit_weight1571,42959 -digit_weight( 0x32BE, 49).digit_weight1572,42986 -digit_weight( 0x32BE, 49).digit_weight1572,42986 -digit_weight( 0x1376, 50).digit_weight1573,43013 -digit_weight( 0x1376, 50).digit_weight1573,43013 -digit_weight( 0x216C, 50).digit_weight1574,43040 -digit_weight( 0x216C, 50).digit_weight1574,43040 -digit_weight( 0x217C, 50).digit_weight1575,43067 -digit_weight( 0x217C, 50).digit_weight1575,43067 -digit_weight( 0x2186, 50).digit_weight1576,43094 -digit_weight( 0x2186, 50).digit_weight1576,43094 -digit_weight( 0x324C, 50).digit_weight1577,43121 -digit_weight( 0x324C, 50).digit_weight1577,43121 -digit_weight( 0x32BF, 50).digit_weight1578,43148 -digit_weight( 0x32BF, 50).digit_weight1578,43148 -digit_weight( 0x10114, 50).digit_weight1579,43175 -digit_weight( 0x10114, 50).digit_weight1579,43175 -digit_weight( 0x10144, 50).digit_weight1580,43203 -digit_weight( 0x10144, 50).digit_weight1580,43203 -digit_weight( 0x1014A, 50).digit_weight1581,43231 -digit_weight( 0x1014A, 50).digit_weight1581,43231 -digit_weight( 0x10151, 50).digit_weight1582,43259 -digit_weight( 0x10151, 50).digit_weight1582,43259 -digit_weight( 0x10166, 0x10169, 50).digit_weight1583,43287 -digit_weight( 0x10166, 0x10169, 50).digit_weight1583,43287 -digit_weight( 0x10174, 50).digit_weight1584,43324 -digit_weight( 0x10174, 50).digit_weight1584,43324 -digit_weight( 0x102EE, 50).digit_weight1585,43352 -digit_weight( 0x102EE, 50).digit_weight1585,43352 -digit_weight( 0x10323, 50).digit_weight1586,43380 -digit_weight( 0x10323, 50).digit_weight1586,43380 -digit_weight( 0x109CD, 50).digit_weight1587,43408 -digit_weight( 0x109CD, 50).digit_weight1587,43408 -digit_weight( 0x10A7E, 50).digit_weight1588,43436 -digit_weight( 0x10A7E, 50).digit_weight1588,43436 -digit_weight( 0x10CFD, 50).digit_weight1589,43464 -digit_weight( 0x10CFD, 50).digit_weight1589,43464 -digit_weight( 0x10E6D, 50).digit_weight1590,43492 -digit_weight( 0x10E6D, 50).digit_weight1590,43492 -digit_weight( 0x1105F, 50).digit_weight1591,43520 -digit_weight( 0x1105F, 50).digit_weight1591,43520 -digit_weight( 0x111EE, 50).digit_weight1592,43548 -digit_weight( 0x111EE, 50).digit_weight1592,43548 -digit_weight( 0x118EE, 50).digit_weight1593,43576 -digit_weight( 0x118EE, 50).digit_weight1593,43576 -digit_weight( 0x12468, 50).digit_weight1594,43604 -digit_weight( 0x12468, 50).digit_weight1594,43604 -digit_weight( 0x1D36D, 50).digit_weight1595,43632 -digit_weight( 0x1D36D, 50).digit_weight1595,43632 -digit_weight( 0x1377, 60).digit_weight1596,43660 -digit_weight( 0x1377, 60).digit_weight1596,43660 -digit_weight( 0x324D, 60).digit_weight1597,43687 -digit_weight( 0x324D, 60).digit_weight1597,43687 -digit_weight( 0x10115, 60).digit_weight1598,43714 -digit_weight( 0x10115, 60).digit_weight1598,43714 -digit_weight( 0x102EF, 60).digit_weight1599,43742 -digit_weight( 0x102EF, 60).digit_weight1599,43742 -digit_weight( 0x109CE, 60).digit_weight1600,43770 -digit_weight( 0x109CE, 60).digit_weight1600,43770 -digit_weight( 0x10E6E, 60).digit_weight1601,43798 -digit_weight( 0x10E6E, 60).digit_weight1601,43798 -digit_weight( 0x11060, 60).digit_weight1602,43826 -digit_weight( 0x11060, 60).digit_weight1602,43826 -digit_weight( 0x111EF, 60).digit_weight1603,43854 -digit_weight( 0x111EF, 60).digit_weight1603,43854 -digit_weight( 0x118EF, 60).digit_weight1604,43882 -digit_weight( 0x118EF, 60).digit_weight1604,43882 -digit_weight( 0x1D36E, 60).digit_weight1605,43910 -digit_weight( 0x1D36E, 60).digit_weight1605,43910 -digit_weight( 0x1378, 70).digit_weight1606,43938 -digit_weight( 0x1378, 70).digit_weight1606,43938 -digit_weight( 0x324E, 70).digit_weight1607,43965 -digit_weight( 0x324E, 70).digit_weight1607,43965 -digit_weight( 0x10116, 70).digit_weight1608,43992 -digit_weight( 0x10116, 70).digit_weight1608,43992 -digit_weight( 0x102F0, 70).digit_weight1609,44020 -digit_weight( 0x102F0, 70).digit_weight1609,44020 -digit_weight( 0x109CF, 70).digit_weight1610,44048 -digit_weight( 0x109CF, 70).digit_weight1610,44048 -digit_weight( 0x10E6F, 70).digit_weight1611,44076 -digit_weight( 0x10E6F, 70).digit_weight1611,44076 -digit_weight( 0x11061, 70).digit_weight1612,44104 -digit_weight( 0x11061, 70).digit_weight1612,44104 -digit_weight( 0x111F0, 70).digit_weight1613,44132 -digit_weight( 0x111F0, 70).digit_weight1613,44132 -digit_weight( 0x118F0, 70).digit_weight1614,44160 -digit_weight( 0x118F0, 70).digit_weight1614,44160 -digit_weight( 0x1D36F, 70).digit_weight1615,44188 -digit_weight( 0x1D36F, 70).digit_weight1615,44188 -digit_weight( 0x1379, 80).digit_weight1616,44216 -digit_weight( 0x1379, 80).digit_weight1616,44216 -digit_weight( 0x324F, 80).digit_weight1617,44243 -digit_weight( 0x324F, 80).digit_weight1617,44243 -digit_weight( 0x10117, 80).digit_weight1618,44270 -digit_weight( 0x10117, 80).digit_weight1618,44270 -digit_weight( 0x102F1, 80).digit_weight1619,44298 -digit_weight( 0x102F1, 80).digit_weight1619,44298 -digit_weight( 0x10E70, 80).digit_weight1620,44326 -digit_weight( 0x10E70, 80).digit_weight1620,44326 -digit_weight( 0x11062, 80).digit_weight1621,44354 -digit_weight( 0x11062, 80).digit_weight1621,44354 -digit_weight( 0x111F1, 80).digit_weight1622,44382 -digit_weight( 0x111F1, 80).digit_weight1622,44382 -digit_weight( 0x118F1, 80).digit_weight1623,44410 -digit_weight( 0x118F1, 80).digit_weight1623,44410 -digit_weight( 0x1D370, 80).digit_weight1624,44438 -digit_weight( 0x1D370, 80).digit_weight1624,44438 -digit_weight( 0x137A, 90).digit_weight1625,44466 -digit_weight( 0x137A, 90).digit_weight1625,44466 -digit_weight( 0x10118, 90).digit_weight1626,44493 -digit_weight( 0x10118, 90).digit_weight1626,44493 -digit_weight( 0x102F2, 90).digit_weight1627,44521 -digit_weight( 0x102F2, 90).digit_weight1627,44521 -digit_weight( 0x10341, 90).digit_weight1628,44549 -digit_weight( 0x10341, 90).digit_weight1628,44549 -digit_weight( 0x10E71, 90).digit_weight1629,44577 -digit_weight( 0x10E71, 90).digit_weight1629,44577 -digit_weight( 0x11063, 90).digit_weight1630,44605 -digit_weight( 0x11063, 90).digit_weight1630,44605 -digit_weight( 0x111F2, 90).digit_weight1631,44633 -digit_weight( 0x111F2, 90).digit_weight1631,44633 -digit_weight( 0x118F2, 90).digit_weight1632,44661 -digit_weight( 0x118F2, 90).digit_weight1632,44661 -digit_weight( 0x1D371, 90).digit_weight1633,44689 -digit_weight( 0x1D371, 90).digit_weight1633,44689 -digit_weight( 0x0BF1, 100).digit_weight1634,44717 -digit_weight( 0x0BF1, 100).digit_weight1634,44717 -digit_weight( 0x0D71, 100).digit_weight1635,44745 -digit_weight( 0x0D71, 100).digit_weight1635,44745 -digit_weight( 0x137B, 100).digit_weight1636,44773 -digit_weight( 0x137B, 100).digit_weight1636,44773 -digit_weight( 0x216D, 100).digit_weight1637,44801 -digit_weight( 0x216D, 100).digit_weight1637,44801 -digit_weight( 0x217D, 100).digit_weight1638,44829 -digit_weight( 0x217D, 100).digit_weight1638,44829 -digit_weight( 0x4F70, 100).digit_weight1639,44857 -digit_weight( 0x4F70, 100).digit_weight1639,44857 -digit_weight( 0x767E, 100).digit_weight1640,44885 -digit_weight( 0x767E, 100).digit_weight1640,44885 -digit_weight( 0x964C, 100).digit_weight1641,44913 -digit_weight( 0x964C, 100).digit_weight1641,44913 -digit_weight( 0x10119, 100).digit_weight1642,44941 -digit_weight( 0x10119, 100).digit_weight1642,44941 -digit_weight( 0x1014B, 100).digit_weight1643,44970 -digit_weight( 0x1014B, 100).digit_weight1643,44970 -digit_weight( 0x10152, 100).digit_weight1644,44999 -digit_weight( 0x10152, 100).digit_weight1644,44999 -digit_weight( 0x1016A, 100).digit_weight1645,45028 -digit_weight( 0x1016A, 100).digit_weight1645,45028 -digit_weight( 0x102F3, 100).digit_weight1646,45057 -digit_weight( 0x102F3, 100).digit_weight1646,45057 -digit_weight( 0x103D5, 100).digit_weight1647,45086 -digit_weight( 0x103D5, 100).digit_weight1647,45086 -digit_weight( 0x1085D, 100).digit_weight1648,45115 -digit_weight( 0x1085D, 100).digit_weight1648,45115 -digit_weight( 0x108AF, 100).digit_weight1649,45144 -digit_weight( 0x108AF, 100).digit_weight1649,45144 -digit_weight( 0x108FF, 100).digit_weight1650,45173 -digit_weight( 0x108FF, 100).digit_weight1650,45173 -digit_weight( 0x10919, 100).digit_weight1651,45202 -digit_weight( 0x10919, 100).digit_weight1651,45202 -digit_weight( 0x109D2, 100).digit_weight1652,45231 -digit_weight( 0x109D2, 100).digit_weight1652,45231 -digit_weight( 0x10A46, 100).digit_weight1653,45260 -digit_weight( 0x10A46, 100).digit_weight1653,45260 -digit_weight( 0x10AEF, 100).digit_weight1654,45289 -digit_weight( 0x10AEF, 100).digit_weight1654,45289 -digit_weight( 0x10B5E, 100).digit_weight1655,45318 -digit_weight( 0x10B5E, 100).digit_weight1655,45318 -digit_weight( 0x10B7E, 100).digit_weight1656,45347 -digit_weight( 0x10B7E, 100).digit_weight1656,45347 -digit_weight( 0x10BAF, 100).digit_weight1657,45376 -digit_weight( 0x10BAF, 100).digit_weight1657,45376 -digit_weight( 0x10CFE, 100).digit_weight1658,45405 -digit_weight( 0x10CFE, 100).digit_weight1658,45405 -digit_weight( 0x10E72, 100).digit_weight1659,45434 -digit_weight( 0x10E72, 100).digit_weight1659,45434 -digit_weight( 0x11064, 100).digit_weight1660,45463 -digit_weight( 0x11064, 100).digit_weight1660,45463 -digit_weight( 0x111F3, 100).digit_weight1661,45492 -digit_weight( 0x111F3, 100).digit_weight1661,45492 -digit_weight( 0x16B5C, 100).digit_weight1662,45521 -digit_weight( 0x16B5C, 100).digit_weight1662,45521 -digit_weight( 0x1011A, 200).digit_weight1663,45550 -digit_weight( 0x1011A, 200).digit_weight1663,45550 -digit_weight( 0x102F4, 200).digit_weight1664,45579 -digit_weight( 0x102F4, 200).digit_weight1664,45579 -digit_weight( 0x109D3, 200).digit_weight1665,45608 -digit_weight( 0x109D3, 200).digit_weight1665,45608 -digit_weight( 0x10E73, 200).digit_weight1666,45637 -digit_weight( 0x10E73, 200).digit_weight1666,45637 -digit_weight( 0x1011B, 300).digit_weight1667,45666 -digit_weight( 0x1011B, 300).digit_weight1667,45666 -digit_weight( 0x1016B, 300).digit_weight1668,45695 -digit_weight( 0x1016B, 300).digit_weight1668,45695 -digit_weight( 0x102F5, 300).digit_weight1669,45724 -digit_weight( 0x102F5, 300).digit_weight1669,45724 -digit_weight( 0x109D4, 300).digit_weight1670,45753 -digit_weight( 0x109D4, 300).digit_weight1670,45753 -digit_weight( 0x10E74, 300).digit_weight1671,45782 -digit_weight( 0x10E74, 300).digit_weight1671,45782 -digit_weight( 0x1011C, 400).digit_weight1672,45811 -digit_weight( 0x1011C, 400).digit_weight1672,45811 -digit_weight( 0x102F6, 400).digit_weight1673,45840 -digit_weight( 0x102F6, 400).digit_weight1673,45840 -digit_weight( 0x109D5, 400).digit_weight1674,45869 -digit_weight( 0x109D5, 400).digit_weight1674,45869 -digit_weight( 0x10E75, 400).digit_weight1675,45898 -digit_weight( 0x10E75, 400).digit_weight1675,45898 -digit_weight( 0x216E, 500).digit_weight1676,45927 -digit_weight( 0x216E, 500).digit_weight1676,45927 -digit_weight( 0x217E, 500).digit_weight1677,45955 -digit_weight( 0x217E, 500).digit_weight1677,45955 -digit_weight( 0x1011D, 500).digit_weight1678,45983 -digit_weight( 0x1011D, 500).digit_weight1678,45983 -digit_weight( 0x10145, 500).digit_weight1679,46012 -digit_weight( 0x10145, 500).digit_weight1679,46012 -digit_weight( 0x1014C, 500).digit_weight1680,46041 -digit_weight( 0x1014C, 500).digit_weight1680,46041 -digit_weight( 0x10153, 500).digit_weight1681,46070 -digit_weight( 0x10153, 500).digit_weight1681,46070 -digit_weight( 0x1016C, 0x10170, 500).digit_weight1682,46099 -digit_weight( 0x1016C, 0x10170, 500).digit_weight1682,46099 -digit_weight( 0x102F7, 500).digit_weight1683,46137 -digit_weight( 0x102F7, 500).digit_weight1683,46137 -digit_weight( 0x109D6, 500).digit_weight1684,46166 -digit_weight( 0x109D6, 500).digit_weight1684,46166 -digit_weight( 0x10E76, 500).digit_weight1685,46195 -digit_weight( 0x10E76, 500).digit_weight1685,46195 -digit_weight( 0x1011E, 600).digit_weight1686,46224 -digit_weight( 0x1011E, 600).digit_weight1686,46224 -digit_weight( 0x102F8, 600).digit_weight1687,46253 -digit_weight( 0x102F8, 600).digit_weight1687,46253 -digit_weight( 0x109D7, 600).digit_weight1688,46282 -digit_weight( 0x109D7, 600).digit_weight1688,46282 -digit_weight( 0x10E77, 600).digit_weight1689,46311 -digit_weight( 0x10E77, 600).digit_weight1689,46311 -digit_weight( 0x1011F, 700).digit_weight1690,46340 -digit_weight( 0x1011F, 700).digit_weight1690,46340 -digit_weight( 0x102F9, 700).digit_weight1691,46369 -digit_weight( 0x102F9, 700).digit_weight1691,46369 -digit_weight( 0x109D8, 700).digit_weight1692,46398 -digit_weight( 0x109D8, 700).digit_weight1692,46398 -digit_weight( 0x10E78, 700).digit_weight1693,46427 -digit_weight( 0x10E78, 700).digit_weight1693,46427 -digit_weight( 0x10120, 800).digit_weight1694,46456 -digit_weight( 0x10120, 800).digit_weight1694,46456 -digit_weight( 0x102FA, 800).digit_weight1695,46485 -digit_weight( 0x102FA, 800).digit_weight1695,46485 -digit_weight( 0x109D9, 800).digit_weight1696,46514 -digit_weight( 0x109D9, 800).digit_weight1696,46514 -digit_weight( 0x10E79, 800).digit_weight1697,46543 -digit_weight( 0x10E79, 800).digit_weight1697,46543 -digit_weight( 0x10121, 900).digit_weight1698,46572 -digit_weight( 0x10121, 900).digit_weight1698,46572 -digit_weight( 0x102FB, 900).digit_weight1699,46601 -digit_weight( 0x102FB, 900).digit_weight1699,46601 -digit_weight( 0x1034A, 900).digit_weight1700,46630 -digit_weight( 0x1034A, 900).digit_weight1700,46630 -digit_weight( 0x109DA, 900).digit_weight1701,46659 -digit_weight( 0x109DA, 900).digit_weight1701,46659 -digit_weight( 0x10E7A, 900).digit_weight1702,46688 -digit_weight( 0x10E7A, 900).digit_weight1702,46688 -digit_weight( 0x0BF2, 1000).digit_weight1703,46717 -digit_weight( 0x0BF2, 1000).digit_weight1703,46717 -digit_weight( 0x0D72, 1000).digit_weight1704,46746 -digit_weight( 0x0D72, 1000).digit_weight1704,46746 -digit_weight( 0x216F, 1000).digit_weight1705,46775 -digit_weight( 0x216F, 1000).digit_weight1705,46775 -digit_weight( 0x217F, 0x2180, 1000).digit_weight1706,46804 -digit_weight( 0x217F, 0x2180, 1000).digit_weight1706,46804 -digit_weight( 0x4EDF, 1000).digit_weight1707,46841 -digit_weight( 0x4EDF, 1000).digit_weight1707,46841 -digit_weight( 0x5343, 1000).digit_weight1708,46870 -digit_weight( 0x5343, 1000).digit_weight1708,46870 -digit_weight( 0x9621, 1000).digit_weight1709,46899 -digit_weight( 0x9621, 1000).digit_weight1709,46899 -digit_weight( 0x10122, 1000).digit_weight1710,46928 -digit_weight( 0x10122, 1000).digit_weight1710,46928 -digit_weight( 0x1014D, 1000).digit_weight1711,46958 -digit_weight( 0x1014D, 1000).digit_weight1711,46958 -digit_weight( 0x10154, 1000).digit_weight1712,46988 -digit_weight( 0x10154, 1000).digit_weight1712,46988 -digit_weight( 0x10171, 1000).digit_weight1713,47018 -digit_weight( 0x10171, 1000).digit_weight1713,47018 -digit_weight( 0x1085E, 1000).digit_weight1714,47048 -digit_weight( 0x1085E, 1000).digit_weight1714,47048 -digit_weight( 0x109DB, 1000).digit_weight1715,47078 -digit_weight( 0x109DB, 1000).digit_weight1715,47078 -digit_weight( 0x10A47, 1000).digit_weight1716,47108 -digit_weight( 0x10A47, 1000).digit_weight1716,47108 -digit_weight( 0x10B5F, 1000).digit_weight1717,47138 -digit_weight( 0x10B5F, 1000).digit_weight1717,47138 -digit_weight( 0x10B7F, 1000).digit_weight1718,47168 -digit_weight( 0x10B7F, 1000).digit_weight1718,47168 -digit_weight( 0x10CFF, 1000).digit_weight1719,47198 -digit_weight( 0x10CFF, 1000).digit_weight1719,47198 -digit_weight( 0x11065, 1000).digit_weight1720,47228 -digit_weight( 0x11065, 1000).digit_weight1720,47228 -digit_weight( 0x111F4, 1000).digit_weight1721,47258 -digit_weight( 0x111F4, 1000).digit_weight1721,47258 -digit_weight( 0x10123, 2000).digit_weight1722,47288 -digit_weight( 0x10123, 2000).digit_weight1722,47288 -digit_weight( 0x109DC, 2000).digit_weight1723,47318 -digit_weight( 0x109DC, 2000).digit_weight1723,47318 -digit_weight( 0x10124, 3000).digit_weight1724,47348 -digit_weight( 0x10124, 3000).digit_weight1724,47348 -digit_weight( 0x109DD, 3000).digit_weight1725,47378 -digit_weight( 0x109DD, 3000).digit_weight1725,47378 -digit_weight( 0x10125, 4000).digit_weight1726,47408 -digit_weight( 0x10125, 4000).digit_weight1726,47408 -digit_weight( 0x109DE, 4000).digit_weight1727,47438 -digit_weight( 0x109DE, 4000).digit_weight1727,47438 -digit_weight( 0x2181, 5000).digit_weight1728,47468 -digit_weight( 0x2181, 5000).digit_weight1728,47468 -digit_weight( 0x10126, 5000).digit_weight1729,47497 -digit_weight( 0x10126, 5000).digit_weight1729,47497 -digit_weight( 0x10146, 5000).digit_weight1730,47527 -digit_weight( 0x10146, 5000).digit_weight1730,47527 -digit_weight( 0x1014E, 5000).digit_weight1731,47557 -digit_weight( 0x1014E, 5000).digit_weight1731,47557 -digit_weight( 0x10172, 5000).digit_weight1732,47587 -digit_weight( 0x10172, 5000).digit_weight1732,47587 -digit_weight( 0x109DF, 5000).digit_weight1733,47617 -digit_weight( 0x109DF, 5000).digit_weight1733,47617 -digit_weight( 0x10127, 6000).digit_weight1734,47647 -digit_weight( 0x10127, 6000).digit_weight1734,47647 -digit_weight( 0x109E0, 6000).digit_weight1735,47677 -digit_weight( 0x109E0, 6000).digit_weight1735,47677 -digit_weight( 0x10128, 7000).digit_weight1736,47707 -digit_weight( 0x10128, 7000).digit_weight1736,47707 -digit_weight( 0x109E1, 7000).digit_weight1737,47737 -digit_weight( 0x109E1, 7000).digit_weight1737,47737 -digit_weight( 0x10129, 8000).digit_weight1738,47767 -digit_weight( 0x10129, 8000).digit_weight1738,47767 -digit_weight( 0x109E2, 8000).digit_weight1739,47797 -digit_weight( 0x109E2, 8000).digit_weight1739,47797 -digit_weight( 0x1012A, 9000).digit_weight1740,47827 -digit_weight( 0x1012A, 9000).digit_weight1740,47827 -digit_weight( 0x109E3, 9000).digit_weight1741,47857 -digit_weight( 0x109E3, 9000).digit_weight1741,47857 -digit_weight( 0x137C, 10000).digit_weight1742,47887 -digit_weight( 0x137C, 10000).digit_weight1742,47887 -digit_weight( 0x2182, 10000).digit_weight1743,47917 -digit_weight( 0x2182, 10000).digit_weight1743,47917 -digit_weight( 0x4E07, 10000).digit_weight1744,47947 -digit_weight( 0x4E07, 10000).digit_weight1744,47947 -digit_weight( 0x842C, 10000).digit_weight1745,47977 -digit_weight( 0x842C, 10000).digit_weight1745,47977 -digit_weight( 0x1012B, 10000).digit_weight1746,48007 -digit_weight( 0x1012B, 10000).digit_weight1746,48007 -digit_weight( 0x10155, 10000).digit_weight1747,48038 -digit_weight( 0x10155, 10000).digit_weight1747,48038 -digit_weight( 0x1085F, 10000).digit_weight1748,48069 -digit_weight( 0x1085F, 10000).digit_weight1748,48069 -digit_weight( 0x109E4, 10000).digit_weight1749,48100 -digit_weight( 0x109E4, 10000).digit_weight1749,48100 -digit_weight( 0x16B5D, 10000).digit_weight1750,48131 -digit_weight( 0x16B5D, 10000).digit_weight1750,48131 -digit_weight( 0x1012C, 20000).digit_weight1751,48162 -digit_weight( 0x1012C, 20000).digit_weight1751,48162 -digit_weight( 0x109E5, 20000).digit_weight1752,48193 -digit_weight( 0x109E5, 20000).digit_weight1752,48193 -digit_weight( 0x1012D, 30000).digit_weight1753,48224 -digit_weight( 0x1012D, 30000).digit_weight1753,48224 -digit_weight( 0x109E6, 30000).digit_weight1754,48255 -digit_weight( 0x109E6, 30000).digit_weight1754,48255 -digit_weight( 0x1012E, 40000).digit_weight1755,48286 -digit_weight( 0x1012E, 40000).digit_weight1755,48286 -digit_weight( 0x109E7, 40000).digit_weight1756,48317 -digit_weight( 0x109E7, 40000).digit_weight1756,48317 -digit_weight( 0x2187, 50000).digit_weight1757,48348 -digit_weight( 0x2187, 50000).digit_weight1757,48348 -digit_weight( 0x1012F, 50000).digit_weight1758,48378 -digit_weight( 0x1012F, 50000).digit_weight1758,48378 -digit_weight( 0x10147, 50000).digit_weight1759,48409 -digit_weight( 0x10147, 50000).digit_weight1759,48409 -digit_weight( 0x10156, 50000).digit_weight1760,48440 -digit_weight( 0x10156, 50000).digit_weight1760,48440 -digit_weight( 0x109E8, 50000).digit_weight1761,48471 -digit_weight( 0x109E8, 50000).digit_weight1761,48471 -digit_weight( 0x10130, 60000).digit_weight1762,48502 -digit_weight( 0x10130, 60000).digit_weight1762,48502 -digit_weight( 0x109E9, 60000).digit_weight1763,48533 -digit_weight( 0x109E9, 60000).digit_weight1763,48533 -digit_weight( 0x10131, 70000).digit_weight1764,48564 -digit_weight( 0x10131, 70000).digit_weight1764,48564 -digit_weight( 0x109EA, 70000).digit_weight1765,48595 -digit_weight( 0x109EA, 70000).digit_weight1765,48595 -digit_weight( 0x10132, 80000).digit_weight1766,48626 -digit_weight( 0x10132, 80000).digit_weight1766,48626 -digit_weight( 0x109EB, 80000).digit_weight1767,48657 -digit_weight( 0x109EB, 80000).digit_weight1767,48657 -digit_weight( 0x10133, 90000).digit_weight1768,48688 -digit_weight( 0x10133, 90000).digit_weight1768,48688 -digit_weight( 0x109EC, 90000).digit_weight1769,48719 -digit_weight( 0x109EC, 90000).digit_weight1769,48719 -digit_weight( 0x2188, 100000).digit_weight1770,48750 -digit_weight( 0x2188, 100000).digit_weight1770,48750 -digit_weight( 0x109ED, 100000).digit_weight1771,48781 -digit_weight( 0x109ED, 100000).digit_weight1771,48781 -digit_weight( 0x109EE, 200000).digit_weight1772,48813 -digit_weight( 0x109EE, 200000).digit_weight1772,48813 -digit_weight( 0x12432, 216000).digit_weight1773,48845 -digit_weight( 0x12432, 216000).digit_weight1773,48845 -digit_weight( 0x109EF, 300000).digit_weight1774,48877 -digit_weight( 0x109EF, 300000).digit_weight1774,48877 -digit_weight( 0x109F0, 400000).digit_weight1775,48909 -digit_weight( 0x109F0, 400000).digit_weight1775,48909 -digit_weight( 0x12433, 432000).digit_weight1776,48941 -digit_weight( 0x12433, 432000).digit_weight1776,48941 -digit_weight( 0x109F1, 500000).digit_weight1777,48973 -digit_weight( 0x109F1, 500000).digit_weight1777,48973 -digit_weight( 0x109F2, 600000).digit_weight1778,49005 -digit_weight( 0x109F2, 600000).digit_weight1778,49005 -digit_weight( 0x109F3, 700000).digit_weight1779,49037 -digit_weight( 0x109F3, 700000).digit_weight1779,49037 -digit_weight( 0x109F4, 800000).digit_weight1780,49069 -digit_weight( 0x109F4, 800000).digit_weight1780,49069 -digit_weight( 0x109F5, 900000).digit_weight1781,49101 -digit_weight( 0x109F5, 900000).digit_weight1781,49101 -digit_weight( 0x16B5E, 1000000).digit_weight1782,49133 -digit_weight( 0x16B5E, 1000000).digit_weight1782,49133 -digit_weight( 0x4EBF, 100000000).digit_weight1783,49166 -digit_weight( 0x4EBF, 100000000).digit_weight1783,49166 -digit_weight( 0x5104, 100000000).digit_weight1784,49200 -digit_weight( 0x5104, 100000000).digit_weight1784,49200 -digit_weight( 0x16B5F, 100000000).digit_weight1785,49234 -digit_weight( 0x16B5F, 100000000).digit_weight1785,49234 -digit_weight( 0x16B60, 10000000000).digit_weight1786,49269 -digit_weight( 0x16B60, 10000000000).digit_weight1786,49269 -digit_weight( 0x5146, 1000000000000).digit_weight1787,49306 -digit_weight( 0x5146, 1000000000000).digit_weight1787,49306 -digit_weight( 0x16B61, 1000000000000).digit_weight1788,49344 -digit_weight( 0x16B61, 1000000000000).digit_weight1788,49344 -paren_paren( 0x0028, 0x0029).paren_paren1799,49612 -paren_paren( 0x0028, 0x0029).paren_paren1799,49612 -paren_paren( 0x0029, 0x0028).paren_paren1800,49642 -paren_paren( 0x0029, 0x0028).paren_paren1800,49642 -paren_paren( 0x005B, 0x005D).paren_paren1801,49672 -paren_paren( 0x005B, 0x005D).paren_paren1801,49672 -paren_paren( 0x005D, 0x005B).paren_paren1802,49702 -paren_paren( 0x005D, 0x005B).paren_paren1802,49702 -paren_paren( 0x007B, 0x007D).paren_paren1803,49732 -paren_paren( 0x007B, 0x007D).paren_paren1803,49732 -paren_paren( 0x007D, 0x007B).paren_paren1804,49762 -paren_paren( 0x007D, 0x007B).paren_paren1804,49762 -paren_paren( 0x0F3A, 0x0F3B).paren_paren1805,49792 -paren_paren( 0x0F3A, 0x0F3B).paren_paren1805,49792 -paren_paren( 0x0F3B, 0x0F3A).paren_paren1806,49822 -paren_paren( 0x0F3B, 0x0F3A).paren_paren1806,49822 -paren_paren( 0x0F3C, 0x0F3D).paren_paren1807,49852 -paren_paren( 0x0F3C, 0x0F3D).paren_paren1807,49852 -paren_paren( 0x0F3D, 0x0F3C).paren_paren1808,49882 -paren_paren( 0x0F3D, 0x0F3C).paren_paren1808,49882 -paren_paren( 0x169B, 0x169C).paren_paren1809,49912 -paren_paren( 0x169B, 0x169C).paren_paren1809,49912 -paren_paren( 0x169C, 0x169B).paren_paren1810,49942 -paren_paren( 0x169C, 0x169B).paren_paren1810,49942 -paren_paren( 0x2045, 0x2046).paren_paren1811,49972 -paren_paren( 0x2045, 0x2046).paren_paren1811,49972 -paren_paren( 0x2046, 0x2045).paren_paren1812,50002 -paren_paren( 0x2046, 0x2045).paren_paren1812,50002 -paren_paren( 0x207D, 0x207E).paren_paren1813,50032 -paren_paren( 0x207D, 0x207E).paren_paren1813,50032 -paren_paren( 0x207E, 0x207D).paren_paren1814,50062 -paren_paren( 0x207E, 0x207D).paren_paren1814,50062 -paren_paren( 0x208D, 0x208E).paren_paren1815,50092 -paren_paren( 0x208D, 0x208E).paren_paren1815,50092 -paren_paren( 0x208E, 0x208D).paren_paren1816,50122 -paren_paren( 0x208E, 0x208D).paren_paren1816,50122 -paren_paren( 0x2308, 0x2309).paren_paren1817,50152 -paren_paren( 0x2308, 0x2309).paren_paren1817,50152 -paren_paren( 0x2309, 0x2308).paren_paren1818,50182 -paren_paren( 0x2309, 0x2308).paren_paren1818,50182 -paren_paren( 0x230A, 0x230B).paren_paren1819,50212 -paren_paren( 0x230A, 0x230B).paren_paren1819,50212 -paren_paren( 0x230B, 0x230A).paren_paren1820,50242 -paren_paren( 0x230B, 0x230A).paren_paren1820,50242 -paren_paren( 0x2329, 0x232A).paren_paren1821,50272 -paren_paren( 0x2329, 0x232A).paren_paren1821,50272 -paren_paren( 0x232A, 0x2329).paren_paren1822,50302 -paren_paren( 0x232A, 0x2329).paren_paren1822,50302 -paren_paren( 0x2768, 0x2769).paren_paren1823,50332 -paren_paren( 0x2768, 0x2769).paren_paren1823,50332 -paren_paren( 0x2769, 0x2768).paren_paren1824,50362 -paren_paren( 0x2769, 0x2768).paren_paren1824,50362 -paren_paren( 0x276A, 0x276B).paren_paren1825,50392 -paren_paren( 0x276A, 0x276B).paren_paren1825,50392 -paren_paren( 0x276B, 0x276A).paren_paren1826,50422 -paren_paren( 0x276B, 0x276A).paren_paren1826,50422 -paren_paren( 0x276C, 0x276D).paren_paren1827,50452 -paren_paren( 0x276C, 0x276D).paren_paren1827,50452 -paren_paren( 0x276D, 0x276C).paren_paren1828,50482 -paren_paren( 0x276D, 0x276C).paren_paren1828,50482 -paren_paren( 0x276E, 0x276F).paren_paren1829,50512 -paren_paren( 0x276E, 0x276F).paren_paren1829,50512 -paren_paren( 0x276F, 0x276E).paren_paren1830,50542 -paren_paren( 0x276F, 0x276E).paren_paren1830,50542 -paren_paren( 0x2770, 0x2771).paren_paren1831,50572 -paren_paren( 0x2770, 0x2771).paren_paren1831,50572 -paren_paren( 0x2771, 0x2770).paren_paren1832,50602 -paren_paren( 0x2771, 0x2770).paren_paren1832,50602 -paren_paren( 0x2772, 0x2773).paren_paren1833,50632 -paren_paren( 0x2772, 0x2773).paren_paren1833,50632 -paren_paren( 0x2773, 0x2772).paren_paren1834,50662 -paren_paren( 0x2773, 0x2772).paren_paren1834,50662 -paren_paren( 0x2774, 0x2775).paren_paren1835,50692 -paren_paren( 0x2774, 0x2775).paren_paren1835,50692 -paren_paren( 0x2775, 0x2774).paren_paren1836,50722 -paren_paren( 0x2775, 0x2774).paren_paren1836,50722 -paren_paren( 0x27C5, 0x27C6).paren_paren1837,50752 -paren_paren( 0x27C5, 0x27C6).paren_paren1837,50752 -paren_paren( 0x27C6, 0x27C5).paren_paren1838,50782 -paren_paren( 0x27C6, 0x27C5).paren_paren1838,50782 -paren_paren( 0x27E6, 0x27E7).paren_paren1839,50812 -paren_paren( 0x27E6, 0x27E7).paren_paren1839,50812 -paren_paren( 0x27E7, 0x27E6).paren_paren1840,50842 -paren_paren( 0x27E7, 0x27E6).paren_paren1840,50842 -paren_paren( 0x27E8, 0x27E9).paren_paren1841,50872 -paren_paren( 0x27E8, 0x27E9).paren_paren1841,50872 -paren_paren( 0x27E9, 0x27E8).paren_paren1842,50902 -paren_paren( 0x27E9, 0x27E8).paren_paren1842,50902 -paren_paren( 0x27EA, 0x27EB).paren_paren1843,50932 -paren_paren( 0x27EA, 0x27EB).paren_paren1843,50932 -paren_paren( 0x27EB, 0x27EA).paren_paren1844,50962 -paren_paren( 0x27EB, 0x27EA).paren_paren1844,50962 -paren_paren( 0x27EC, 0x27ED).paren_paren1845,50992 -paren_paren( 0x27EC, 0x27ED).paren_paren1845,50992 -paren_paren( 0x27ED, 0x27EC).paren_paren1846,51022 -paren_paren( 0x27ED, 0x27EC).paren_paren1846,51022 -paren_paren( 0x27EE, 0x27EF).paren_paren1847,51052 -paren_paren( 0x27EE, 0x27EF).paren_paren1847,51052 -paren_paren( 0x27EF, 0x27EE).paren_paren1848,51082 -paren_paren( 0x27EF, 0x27EE).paren_paren1848,51082 -paren_paren( 0x2983, 0x2984).paren_paren1849,51112 -paren_paren( 0x2983, 0x2984).paren_paren1849,51112 -paren_paren( 0x2984, 0x2983).paren_paren1850,51142 -paren_paren( 0x2984, 0x2983).paren_paren1850,51142 -paren_paren( 0x2985, 0x2986).paren_paren1851,51172 -paren_paren( 0x2985, 0x2986).paren_paren1851,51172 -paren_paren( 0x2986, 0x2985).paren_paren1852,51202 -paren_paren( 0x2986, 0x2985).paren_paren1852,51202 -paren_paren( 0x2987, 0x2988).paren_paren1853,51232 -paren_paren( 0x2987, 0x2988).paren_paren1853,51232 -paren_paren( 0x2988, 0x2987).paren_paren1854,51262 -paren_paren( 0x2988, 0x2987).paren_paren1854,51262 -paren_paren( 0x2989, 0x298A).paren_paren1855,51292 -paren_paren( 0x2989, 0x298A).paren_paren1855,51292 -paren_paren( 0x298A, 0x2989).paren_paren1856,51322 -paren_paren( 0x298A, 0x2989).paren_paren1856,51322 -paren_paren( 0x298B, 0x298C).paren_paren1857,51352 -paren_paren( 0x298B, 0x298C).paren_paren1857,51352 -paren_paren( 0x298C, 0x298B).paren_paren1858,51382 -paren_paren( 0x298C, 0x298B).paren_paren1858,51382 -paren_paren( 0x298D, 0x2990).paren_paren1859,51412 -paren_paren( 0x298D, 0x2990).paren_paren1859,51412 -paren_paren( 0x298E, 0x298F).paren_paren1860,51442 -paren_paren( 0x298E, 0x298F).paren_paren1860,51442 -paren_paren( 0x298F, 0x298E).paren_paren1861,51472 -paren_paren( 0x298F, 0x298E).paren_paren1861,51472 -paren_paren( 0x2990, 0x298D).paren_paren1862,51502 -paren_paren( 0x2990, 0x298D).paren_paren1862,51502 -paren_paren( 0x2991, 0x2992).paren_paren1863,51532 -paren_paren( 0x2991, 0x2992).paren_paren1863,51532 -paren_paren( 0x2992, 0x2991).paren_paren1864,51562 -paren_paren( 0x2992, 0x2991).paren_paren1864,51562 -paren_paren( 0x2993, 0x2994).paren_paren1865,51592 -paren_paren( 0x2993, 0x2994).paren_paren1865,51592 -paren_paren( 0x2994, 0x2993).paren_paren1866,51622 -paren_paren( 0x2994, 0x2993).paren_paren1866,51622 -paren_paren( 0x2995, 0x2996).paren_paren1867,51652 -paren_paren( 0x2995, 0x2996).paren_paren1867,51652 -paren_paren( 0x2996, 0x2995).paren_paren1868,51682 -paren_paren( 0x2996, 0x2995).paren_paren1868,51682 -paren_paren( 0x2997, 0x2998).paren_paren1869,51712 -paren_paren( 0x2997, 0x2998).paren_paren1869,51712 -paren_paren( 0x2998, 0x2997).paren_paren1870,51742 -paren_paren( 0x2998, 0x2997).paren_paren1870,51742 -paren_paren( 0x29D8, 0x29D9).paren_paren1871,51772 -paren_paren( 0x29D8, 0x29D9).paren_paren1871,51772 -paren_paren( 0x29D9, 0x29D8).paren_paren1872,51802 -paren_paren( 0x29D9, 0x29D8).paren_paren1872,51802 -paren_paren( 0x29DA, 0x29DB).paren_paren1873,51832 -paren_paren( 0x29DA, 0x29DB).paren_paren1873,51832 -paren_paren( 0x29DB, 0x29DA).paren_paren1874,51862 -paren_paren( 0x29DB, 0x29DA).paren_paren1874,51862 -paren_paren( 0x29FC, 0x29FD).paren_paren1875,51892 -paren_paren( 0x29FC, 0x29FD).paren_paren1875,51892 -paren_paren( 0x29FD, 0x29FC).paren_paren1876,51922 -paren_paren( 0x29FD, 0x29FC).paren_paren1876,51922 -paren_paren( 0x2E22, 0x2E23).paren_paren1877,51952 -paren_paren( 0x2E22, 0x2E23).paren_paren1877,51952 -paren_paren( 0x2E23, 0x2E22).paren_paren1878,51982 -paren_paren( 0x2E23, 0x2E22).paren_paren1878,51982 -paren_paren( 0x2E24, 0x2E25).paren_paren1879,52012 -paren_paren( 0x2E24, 0x2E25).paren_paren1879,52012 -paren_paren( 0x2E25, 0x2E24).paren_paren1880,52042 -paren_paren( 0x2E25, 0x2E24).paren_paren1880,52042 -paren_paren( 0x2E26, 0x2E27).paren_paren1881,52072 -paren_paren( 0x2E26, 0x2E27).paren_paren1881,52072 -paren_paren( 0x2E27, 0x2E26).paren_paren1882,52102 -paren_paren( 0x2E27, 0x2E26).paren_paren1882,52102 -paren_paren( 0x2E28, 0x2E29).paren_paren1883,52132 -paren_paren( 0x2E28, 0x2E29).paren_paren1883,52132 -paren_paren( 0x2E29, 0x2E28).paren_paren1884,52162 -paren_paren( 0x2E29, 0x2E28).paren_paren1884,52162 -paren_paren( 0x3008, 0x3009).paren_paren1885,52192 -paren_paren( 0x3008, 0x3009).paren_paren1885,52192 -paren_paren( 0x3009, 0x3008).paren_paren1886,52222 -paren_paren( 0x3009, 0x3008).paren_paren1886,52222 -paren_paren( 0x300A, 0x300B).paren_paren1887,52252 -paren_paren( 0x300A, 0x300B).paren_paren1887,52252 -paren_paren( 0x300B, 0x300A).paren_paren1888,52282 -paren_paren( 0x300B, 0x300A).paren_paren1888,52282 -paren_paren( 0x300C, 0x300D).paren_paren1889,52312 -paren_paren( 0x300C, 0x300D).paren_paren1889,52312 -paren_paren( 0x300D, 0x300C).paren_paren1890,52342 -paren_paren( 0x300D, 0x300C).paren_paren1890,52342 -paren_paren( 0x300E, 0x300F).paren_paren1891,52372 -paren_paren( 0x300E, 0x300F).paren_paren1891,52372 -paren_paren( 0x300F, 0x300E).paren_paren1892,52402 -paren_paren( 0x300F, 0x300E).paren_paren1892,52402 -paren_paren( 0x3010, 0x3011).paren_paren1893,52432 -paren_paren( 0x3010, 0x3011).paren_paren1893,52432 -paren_paren( 0x3011, 0x3010).paren_paren1894,52462 -paren_paren( 0x3011, 0x3010).paren_paren1894,52462 -paren_paren( 0x3014, 0x3015).paren_paren1895,52492 -paren_paren( 0x3014, 0x3015).paren_paren1895,52492 -paren_paren( 0x3015, 0x3014).paren_paren1896,52522 -paren_paren( 0x3015, 0x3014).paren_paren1896,52522 -paren_paren( 0x3016, 0x3017).paren_paren1897,52552 -paren_paren( 0x3016, 0x3017).paren_paren1897,52552 -paren_paren( 0x3017, 0x3016).paren_paren1898,52582 -paren_paren( 0x3017, 0x3016).paren_paren1898,52582 -paren_paren( 0x3018, 0x3019).paren_paren1899,52612 -paren_paren( 0x3018, 0x3019).paren_paren1899,52612 -paren_paren( 0x3019, 0x3018).paren_paren1900,52642 -paren_paren( 0x3019, 0x3018).paren_paren1900,52642 -paren_paren( 0x301A, 0x301B).paren_paren1901,52672 -paren_paren( 0x301A, 0x301B).paren_paren1901,52672 -paren_paren( 0x301B, 0x301A).paren_paren1902,52702 -paren_paren( 0x301B, 0x301A).paren_paren1902,52702 -paren_paren( 0xFE59, 0xFE5A).paren_paren1903,52732 -paren_paren( 0xFE59, 0xFE5A).paren_paren1903,52732 -paren_paren( 0xFE5A, 0xFE59).paren_paren1904,52762 -paren_paren( 0xFE5A, 0xFE59).paren_paren1904,52762 -paren_paren( 0xFE5B, 0xFE5C).paren_paren1905,52792 -paren_paren( 0xFE5B, 0xFE5C).paren_paren1905,52792 -paren_paren( 0xFE5C, 0xFE5B).paren_paren1906,52822 -paren_paren( 0xFE5C, 0xFE5B).paren_paren1906,52822 -paren_paren( 0xFE5D, 0xFE5E).paren_paren1907,52852 -paren_paren( 0xFE5D, 0xFE5E).paren_paren1907,52852 -paren_paren( 0xFE5E, 0xFE5D).paren_paren1908,52882 -paren_paren( 0xFE5E, 0xFE5D).paren_paren1908,52882 -paren_paren( 0xFF08, 0xFF09).paren_paren1909,52912 -paren_paren( 0xFF08, 0xFF09).paren_paren1909,52912 -paren_paren( 0xFF09, 0xFF08).paren_paren1910,52942 -paren_paren( 0xFF09, 0xFF08).paren_paren1910,52942 -paren_paren( 0xFF3B, 0xFF3D).paren_paren1911,52972 -paren_paren( 0xFF3B, 0xFF3D).paren_paren1911,52972 -paren_paren( 0xFF3D, 0xFF3B).paren_paren1912,53002 -paren_paren( 0xFF3D, 0xFF3B).paren_paren1912,53002 -paren_paren( 0xFF5B, 0xFF5D).paren_paren1913,53032 -paren_paren( 0xFF5B, 0xFF5D).paren_paren1913,53032 -paren_paren( 0xFF5D, 0xFF5B).paren_paren1914,53062 -paren_paren( 0xFF5D, 0xFF5B).paren_paren1914,53062 -paren_paren( 0xFF5F, 0xFF60).paren_paren1915,53092 -paren_paren( 0xFF5F, 0xFF60).paren_paren1915,53092 -paren_paren( 0xFF60, 0xFF5F).paren_paren1916,53122 -paren_paren( 0xFF60, 0xFF5F).paren_paren1916,53122 -paren_paren( 0xFF62, 0xFF63).paren_paren1917,53152 -paren_paren( 0xFF62, 0xFF63).paren_paren1917,53152 -paren_paren( 0xFF63, 0xFF62).paren_paren1918,53182 -paren_paren( 0xFF63, 0xFF62).paren_paren1918,53182 - -packages/python/swig/yap4py/prolog/os/edio.yap,2369 -see(user) :- !, set_input(user_input).see35,1045 -see(user) :- !, set_input(user_input).see35,1045 -see(user) :- !, set_input(user_input).see35,1045 -see(user) :- !, set_input(user_input).see35,1045 -see(user) :- !, set_input(user_input).see35,1045 -see(F) :- var(F), !,see36,1084 -see(F) :- var(F), !,see36,1084 -see(F) :- var(F), !,see36,1084 -see(F) :- current_input(Stream),see38,1147 -see(F) :- current_input(Stream),see38,1147 -see(F) :- current_input(Stream),see38,1147 -see(F) :- current_stream(_,read,Stream), '$user_file_name'(Stream,F), !,see40,1210 -see(F) :- current_stream(_,read,Stream), '$user_file_name'(Stream,F), !,see40,1210 -see(F) :- current_stream(_,read,Stream), '$user_file_name'(Stream,F), !,see40,1210 -see(Stream) :- '$stream'(Stream), current_stream(_,read,Stream), !,see42,1303 -see(Stream) :- '$stream'(Stream), current_stream(_,read,Stream), !,see42,1303 -see(Stream) :- '$stream'(Stream), current_stream(_,read,Stream), !,see42,1303 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -see(F) :- open(F,read,Stream), set_input(Stream).see44,1391 -seeing(File) :- current_input(Stream),seeing53,1521 -seeing(File) :- current_input(Stream),seeing53,1521 -seeing(File) :- current_input(Stream),seeing53,1521 -seen :- current_input(Stream), close(Stream), set_input(user).seen70,1827 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(user) :- !, set_output(user_output).tell91,2729 -tell(F) :- var(F), !,tell92,2771 -tell(F) :- var(F), !,tell92,2771 -tell(F) :- var(F), !,tell92,2771 -tell(F) :-tell94,2836 -tell(F) :-tell94,2836 -tell(F) :-tell94,2836 -tell(F) :-tell98,2915 -tell(F) :-tell98,2915 -tell(F) :-tell98,2915 -tell(Stream) :-tell102,3015 -tell(Stream) :-tell102,3015 -tell(Stream) :-tell102,3015 -tell(F) :-tell106,3108 -tell(F) :-tell106,3108 -tell(F) :-tell106,3108 -telling(File) :-telling155,4585 -telling(File) :-telling155,4585 -telling(File) :-telling155,4585 -told :- current_output(Stream),told170,5016 - -packages/python/swig/yap4py/prolog/pl/absf.yap,13769 -absolute_file_name(File,TrueFileName,Opts) :-absolute_file_name140,4782 -absolute_file_name(File,TrueFileName,Opts) :-absolute_file_name140,4782 -absolute_file_name(File,TrueFileName,Opts) :-absolute_file_name140,4782 -absolute_file_name(File,Opts,TrueFileName) :-absolute_file_name147,4974 -absolute_file_name(File,Opts,TrueFileName) :-absolute_file_name147,4974 -absolute_file_name(File,Opts,TrueFileName) :-absolute_file_name147,4974 -absolute_file_name(V,Out) :- var(V),absolute_file_name155,5322 -absolute_file_name(V,Out) :- var(V),absolute_file_name155,5322 -absolute_file_name(V,Out) :- var(V),absolute_file_name155,5322 -absolute_file_name(user,user) :- !.absolute_file_name158,5465 -absolute_file_name(user,user) :- !.absolute_file_name158,5465 -absolute_file_name(user,user) :- !.absolute_file_name158,5465 -absolute_file_name(File0,File) :-absolute_file_name159,5501 -absolute_file_name(File0,File) :-absolute_file_name159,5501 -absolute_file_name(File0,File) :-absolute_file_name159,5501 -'$full_filename'(F0, F, G) :-$full_filename162,5668 -'$full_filename'(F0, F, G) :-$full_filename162,5668 -'$full_filename'(F0, F, G) :-$full_filename162,5668 -'$absolute_file_name'(File,LOpts,TrueFileName, G) :-$absolute_file_name169,5936 -'$absolute_file_name'(File,LOpts,TrueFileName, G) :-$absolute_file_name169,5936 -'$absolute_file_name'(File,LOpts,TrueFileName, G) :-$absolute_file_name169,5936 -'$find_in_path'(user,_,user_input) :- !.$find_in_path220,8028 -'$find_in_path'(user,_,user_input) :- !.$find_in_path220,8028 -'$find_in_path'(user,_,user_input) :- !.$find_in_path220,8028 -'$find_in_path'(user_input,_,user_input) :- !.$find_in_path221,8069 -'$find_in_path'(user_input,_,user_input) :- !.$find_in_path221,8069 -'$find_in_path'(user_input,_,user_input) :- !.$find_in_path221,8069 -'$find_in_path'(user_output,_,user_ouput) :- !.$find_in_path222,8116 -'$find_in_path'(user_output,_,user_ouput) :- !.$find_in_path222,8116 -'$find_in_path'(user_output,_,user_ouput) :- !.$find_in_path222,8116 -'$find_in_path'(user_error,_,user_error) :- !.$find_in_path223,8164 -'$find_in_path'(user_error,_,user_error) :- !.$find_in_path223,8164 -'$find_in_path'(user_error,_,user_error) :- !.$find_in_path223,8164 -'$find_in_path'(Name, Opts, File) :-$find_in_path224,8211 -'$find_in_path'(Name, Opts, File) :-$find_in_path224,8211 -'$find_in_path'(Name, Opts, File) :-$find_in_path224,8211 -'$core_file_name'(Name, Opts) -->$core_file_name252,9343 -'$core_file_name'(Name, Opts) -->$core_file_name252,9343 -'$core_file_name'(Name, Opts) -->$core_file_name252,9343 -'$file_name'(Name, Opts, E) -->$file_name260,9498 -'$file_name'(Name, Opts, E) -->$file_name260,9498 -'$file_name'(Name, Opts, E) -->$file_name260,9498 -'$file_name'(Name, Opts, E) -->$file_name270,9794 -'$file_name'(Name, Opts, E) -->$file_name270,9794 -'$file_name'(Name, Opts, E) -->$file_name270,9794 -'$cat_file_name'(A/B, E ) -->$cat_file_name291,10189 -'$cat_file_name'(A/B, E ) -->$cat_file_name291,10189 -'$cat_file_name'(A/B, E ) -->$cat_file_name291,10189 -'$cat_file_name'(File, F) -->$cat_file_name295,10287 -'$cat_file_name'(File, F) -->$cat_file_name295,10287 -'$cat_file_name'(File, F) -->$cat_file_name295,10287 -'$cat_file_name'(File, S) -->$cat_file_name299,10372 -'$cat_file_name'(File, S) -->$cat_file_name299,10372 -'$cat_file_name'(File, S) -->$cat_file_name299,10372 -'$variable_expansion'( Path, Opts, APath ) :-$variable_expansion305,10465 -'$variable_expansion'( Path, Opts, APath ) :-$variable_expansion305,10465 -'$variable_expansion'( Path, Opts, APath ) :-$variable_expansion305,10465 -'$variable_expansion'( Path, _, Path ).$variable_expansion309,10608 -'$variable_expansion'( Path, _, Path )./p,predicate,predicate definition309,10608 -'$variable_expansion'( Path, _, Path ).$variable_expansion309,10608 -'$var'(S) -->$var312,10650 -'$var'(S) -->$var312,10650 -'$var'(S) -->$var312,10650 -'$var'(S) -->$var314,10691 -'$var'(S) -->$var314,10691 -'$var'(S) -->$var314,10691 -'$drive'(C) -->$drive317,10720 -'$drive'(C) -->$drive317,10720 -'$drive'(C) -->$drive317,10720 -'$id'([C|S]) --> [C],$id321,10764 -'$id'([C|S]) --> [C],$id321,10764 -'$id'([C|S]) --> [C],$id321,10764 -'$id'([]) --> [].$id326,10905 -'$id'([]) --> [].$id326,10905 -'$id'([]) --> [].$id326,10905 -'$check_file'(F, directory, _) :-$check_file330,10956 -'$check_file'(F, directory, _) :-$check_file330,10956 -'$check_file'(F, directory, _) :-$check_file330,10956 -'$check_file'(_F, _Type, none) :- !.$check_file333,11016 -'$check_file'(_F, _Type, none) :- !.$check_file333,11016 -'$check_file'(_F, _Type, none) :- !.$check_file333,11016 -'$check_file'(F, _Type, exist) :-$check_file334,11053 -'$check_file'(F, _Type, exist) :-$check_file334,11053 -'$check_file'(F, _Type, exist) :-$check_file334,11053 -'$check_file'(F, _Type, Access) :-$check_file336,11160 -'$check_file'(F, _Type, Access) :-$check_file336,11160 -'$check_file'(F, _Type, Access) :-$check_file336,11160 -'$suffix'(Last, _Opts) -->$suffix340,11298 -'$suffix'(Last, _Opts) -->$suffix340,11298 -'$suffix'(Last, _Opts) -->$suffix340,11298 -'$suffix'(_, Opts) -->$suffix344,11444 -'$suffix'(_, Opts) -->$suffix344,11444 -'$suffix'(_, Opts) -->$suffix344,11444 -'$suffix'(_,_Opts) -->$suffix361,11909 -'$suffix'(_,_Opts) -->$suffix361,11909 -'$suffix'(_,_Opts) -->$suffix361,11909 -'$add_suffix'(Cs) -->$add_suffix364,11974 -'$add_suffix'(Cs) -->$add_suffix364,11974 -'$add_suffix'(Cs) -->$add_suffix364,11974 -'$glob'(Opts) -->$glob371,12049 -'$glob'(Opts) -->$glob371,12049 -'$glob'(Opts) -->$glob371,12049 -'$glob'(_Opts) -->$glob380,12180 -'$glob'(_Opts) -->$glob380,12180 -'$glob'(_Opts) -->$glob380,12180 -'$enumerate_glob'(_File1, [ExpFile], ExpFile) :-$enumerate_glob383,12205 -'$enumerate_glob'(_File1, [ExpFile], ExpFile) :-$enumerate_glob383,12205 -'$enumerate_glob'(_File1, [ExpFile], ExpFile) :-$enumerate_glob383,12205 -'$enumerate_glob'(_File1, ExpFiles, ExpFile) :-$enumerate_glob385,12261 -'$enumerate_glob'(_File1, ExpFiles, ExpFile) :-$enumerate_glob385,12261 -'$enumerate_glob'(_File1, ExpFiles, ExpFile) :-$enumerate_glob385,12261 -'$prefix'( CorePath, _Opts) -->$prefix391,12418 -'$prefix'( CorePath, _Opts) -->$prefix391,12418 -'$prefix'( CorePath, _Opts) -->$prefix391,12418 -'$prefix'( CorePath, Opts) -->$prefix395,12514 -'$prefix'( CorePath, Opts) -->$prefix395,12514 -'$prefix'( CorePath, Opts) -->$prefix395,12514 -'$prefix'( CorePath, _) -->$prefix406,12802 -'$prefix'( CorePath, _) -->$prefix406,12802 -'$prefix'( CorePath, _) -->$prefix406,12802 -'$prefix'(CorePath, _ ) -->$prefix415,13038 -'$prefix'(CorePath, _ ) -->$prefix415,13038 -'$prefix'(CorePath, _ ) -->$prefix415,13038 -'$dir'('/') --> !.$dir425,13210 -'$dir'('/') --> !.$dir425,13210 -'$dir'('/') --> !.$dir425,13210 -'$dir'('\\') --> { current_prolog_flag(windows, true) },$dir426,13229 -'$dir'('\\') --> { current_prolog_flag(windows, true) },$dir426,13229 -'$dir'('\\') --> { current_prolog_flag(windows, true) },$dir426,13229 -'$dir'(_) --> '$dir'.$dir428,13293 -'$dir'(_) --> '$dir'.$dir428,13293 -'$dir'(_) --> '$dir'.$dir428,13293 -'$system_library_directories'(library, Dir) :-$system_library_directories433,13322 -'$system_library_directories'(library, Dir) :-$system_library_directories433,13322 -'$system_library_directories'(library, Dir) :-$system_library_directories433,13322 -'$system_library_directories'(foreign, Dir) :-$system_library_directories436,13437 -'$system_library_directories'(foreign, Dir) :-$system_library_directories436,13437 -'$system_library_directories'(foreign, Dir) :-$system_library_directories436,13437 -'$system_library_directories'(commons, Dir) :-$system_library_directories441,13594 -'$system_library_directories'(commons, Dir) :-$system_library_directories441,13594 -'$system_library_directories'(commons, Dir) :-$system_library_directories441,13594 -'$paths'(Cs, C) :-$paths446,13728 -'$paths'(Cs, C) :-$paths446,13728 -'$paths'(Cs, C) :-$paths446,13728 -'$paths'(S, S).$paths458,13978 -'$paths'(S, S)./p,predicate,predicate definition458,13978 -'$paths'(S, S).$paths458,13978 -'$absf_trace'(Msg, Args ) -->$absf_trace460,13995 -'$absf_trace'(Msg, Args ) -->$absf_trace460,13995 -'$absf_trace'(Msg, Args ) -->$absf_trace460,13995 -'$absf_trace'(_Msg, _Args ) --> [].$absf_trace464,14163 -'$absf_trace'(_Msg, _Args ) --> [].$absf_trace464,14163 -'$absf_trace'(_Msg, _Args ) --> [].$absf_trace464,14163 -'$absf_trace'(Msg, Args ) :-$absf_trace466,14200 -'$absf_trace'(Msg, Args ) :-$absf_trace466,14200 -'$absf_trace'(Msg, Args ) :-$absf_trace466,14200 -'$absf_trace'(_Msg, _Args ).$absf_trace470,14359 -'$absf_trace'(_Msg, _Args )./p,predicate,predicate definition470,14359 -'$absf_trace'(_Msg, _Args ).$absf_trace470,14359 -'$absf_trace'( File ) :-$absf_trace472,14389 -'$absf_trace'( File ) :-$absf_trace472,14389 -'$absf_trace'( File ) :-$absf_trace472,14389 -'$absf_trace'( _File ).$absf_trace476,14530 -'$absf_trace'( _File )./p,predicate,predicate definition476,14530 -'$absf_trace'( _File ).$absf_trace476,14530 -'$absf_trace_options'(Args ) :-$absf_trace_options478,14555 -'$absf_trace_options'(Args ) :-$absf_trace_options478,14555 -'$absf_trace_options'(Args ) :-$absf_trace_options478,14555 -'$absf_trace_options'( _Args ).$absf_trace_options482,14694 -'$absf_trace_options'( _Args )./p,predicate,predicate definition482,14694 -'$absf_trace_options'( _Args ).$absf_trace_options482,14694 -prolog_file_name(File, PrologFileName) :-prolog_file_name489,14850 -prolog_file_name(File, PrologFileName) :-prolog_file_name489,14850 -prolog_file_name(File, PrologFileName) :-prolog_file_name489,14850 -prolog_file_name(user, Out) :- !, Out = user.prolog_file_name492,14982 -prolog_file_name(user, Out) :- !, Out = user.prolog_file_name492,14982 -prolog_file_name(user, Out) :- !, Out = user.prolog_file_name492,14982 -prolog_file_name(File, PrologFileName) :-prolog_file_name493,15028 -prolog_file_name(File, PrologFileName) :-prolog_file_name493,15028 -prolog_file_name(File, PrologFileName) :-prolog_file_name493,15028 -prolog_file_name(File, PrologFileName) :-prolog_file_name496,15132 -prolog_file_name(File, PrologFileName) :-prolog_file_name496,15132 -prolog_file_name(File, PrologFileName) :-prolog_file_name496,15132 -path(Path) :-path506,15490 -path(Path) :-path506,15490 -path(Path) :-path506,15490 -'$in_path'(X) :-$in_path509,15537 -'$in_path'(X) :-$in_path509,15537 -'$in_path'(X) :-$in_path509,15537 -add_to_path(New) :-add_to_path522,15865 -add_to_path(New) :-add_to_path522,15865 -add_to_path(New) :-add_to_path522,15865 -add_to_path(New,Pos) :-add_to_path532,16192 -add_to_path(New,Pos) :-add_to_path532,16192 -add_to_path(New,Pos) :-add_to_path532,16192 -'$add_to_path'(New,_) :-$add_to_path538,16307 -'$add_to_path'(New,_) :-$add_to_path538,16307 -'$add_to_path'(New,_) :-$add_to_path538,16307 -'$add_to_path'(New,last) :-$add_to_path542,16376 -'$add_to_path'(New,last) :-$add_to_path542,16376 -'$add_to_path'(New,last) :-$add_to_path542,16376 -'$add_to_path'(New,first) :-$add_to_path545,16433 -'$add_to_path'(New,first) :-$add_to_path545,16433 -'$add_to_path'(New,first) :-$add_to_path545,16433 -remove_from_path(New) :- '$check_path'(New,Path),remove_from_path553,16561 -remove_from_path(New) :- '$check_path'(New,Path),remove_from_path553,16561 -remove_from_path(New) :- '$check_path'(New,Path),remove_from_path553,16561 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path556,16651 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path556,16651 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path556,16651 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt)./p,predicate,predicate definition556,16651 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path556,16651 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path556,16651 -'$check_path'([],[]).$check_path557,16729 -'$check_path'([],[])./p,predicate,predicate definition557,16729 -'$check_path'([],[]).$check_path557,16729 -'$check_path'([Ch],[Ch]) :- '$dir_separator'(Ch), !.$check_path558,16751 -'$check_path'([Ch],[Ch]) :- '$dir_separator'(Ch), !.$check_path558,16751 -'$check_path'([Ch],[Ch]) :- '$dir_separator'(Ch), !.$check_path558,16751 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path559,16804 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path559,16804 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path559,16804 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A)./p,predicate,predicate definition559,16804 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path559,16804 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator559,16804 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path560,16871 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path560,16871 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path560,16871 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN)./p,predicate,predicate definition560,16871 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path560,16871 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path'([N|S],[N|SN]) :- integer(N), '$check_path560,16871 - -packages/python/swig/yap4py/prolog/pl/arith.yap,15975 -expand_exprs(Old,New) :-expand_exprs75,2262 -expand_exprs(Old,New) :-expand_exprs75,2262 -expand_exprs(Old,New) :-expand_exprs75,2262 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true)./p,predicate,predicate definition81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[])./p,predicate,predicate definition82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -compile_expressions :- set_value('$c_arith',true).compile_expressions90,2648 -p(A):-p110,3049 -p(A):-p110,3049 -p(A):-p110,3049 -q(A):-q113,3081 -q(A):-q113,3081 -q(A):-q113,3081 -do_not_compile_expressions :- set_value('$c_arith',[]).do_not_compile_expressions118,3138 -'$c_built_in'(IN, M, H, OUT) :-$c_built_in120,3195 -'$c_built_in'(IN, M, H, OUT) :-$c_built_in120,3195 -'$c_built_in'(IN, M, H, OUT) :-$c_built_in120,3195 -'$c_built_in'(IN, _, _H, IN).$c_built_in123,3290 -'$c_built_in'(IN, _, _H, IN)./p,predicate,predicate definition123,3290 -'$c_built_in'(IN, _, _H, IN).$c_built_in123,3290 -do_c_built_in(G, M, H, OUT) :- var(G), !,do_c_built_in126,3322 -do_c_built_in(G, M, H, OUT) :- var(G), !,do_c_built_in126,3322 -do_c_built_in(G, M, H, OUT) :- var(G), !,do_c_built_in126,3322 -do_c_built_in(Mod:G, _, H, OUT) :-do_c_built_in128,3400 -do_c_built_in(Mod:G, _, H, OUT) :-do_c_built_in128,3400 -do_c_built_in(Mod:G, _, H, OUT) :-do_c_built_in128,3400 -do_c_built_in(X is Y, M, H, P) :-do_c_built_in141,3817 -do_c_built_in(X is Y, M, H, P) :-do_c_built_in141,3817 -do_c_built_in(X is Y, M, H, P) :-do_c_built_in141,3817 -do_c_built_in(X is Y, M, H, (P,A=X)) :-do_c_built_in144,3911 -do_c_built_in(X is Y, M, H, (P,A=X)) :-do_c_built_in144,3911 -do_c_built_in(X is Y, M, H, (P,A=X)) :-do_c_built_in144,3911 -do_c_built_in(X is Y, _, _, P) :-do_c_built_in147,3999 -do_c_built_in(X is Y, _, _, P) :-do_c_built_in147,3999 -do_c_built_in(X is Y, _, _, P) :-do_c_built_in147,3999 -do_c_built_in(phrase(NT,Xs), Mod, H, NTXsNil) :-do_c_built_in156,4205 -do_c_built_in(phrase(NT,Xs), Mod, H, NTXsNil) :-do_c_built_in156,4205 -do_c_built_in(phrase(NT,Xs), Mod, H, NTXsNil) :-do_c_built_in156,4205 -do_c_built_in(phrase(NT,Xs0,Xs), Mod, _, NewGoal) :-do_c_built_in158,4316 -do_c_built_in(phrase(NT,Xs0,Xs), Mod, _, NewGoal) :-do_c_built_in158,4316 -do_c_built_in(phrase(NT,Xs0,Xs), Mod, _, NewGoal) :-do_c_built_in158,4316 -do_c_built_in(Comp0, _, _, R) :- % now, do it for comparisonsdo_c_built_in161,4425 -do_c_built_in(Comp0, _, _, R) :- % now, do it for comparisonsdo_c_built_in161,4425 -do_c_built_in(Comp0, _, _, R) :- % now, do it for comparisonsdo_c_built_in161,4425 -do_c_built_in(P, _M, _H, P).do_c_built_in169,4643 -do_c_built_in(P, _M, _H, P).do_c_built_in169,4643 -do_c_built_metacall(G1, Mod, _, '$execute_wo_mod'(G1,Mod)) :-do_c_built_metacall171,4673 -do_c_built_metacall(G1, Mod, _, '$execute_wo_mod'(G1,Mod)) :-do_c_built_metacall171,4673 -do_c_built_metacall(G1, Mod, _, '$execute_wo_mod'(G1,Mod)) :-do_c_built_metacall171,4673 -do_c_built_metacall(G1, Mod, _, '$execute_in_mod'(G1,Mod)) :-do_c_built_metacall173,4752 -do_c_built_metacall(G1, Mod, _, '$execute_in_mod'(G1,Mod)) :-do_c_built_metacall173,4752 -do_c_built_metacall(G1, Mod, _, '$execute_in_mod'(G1,Mod)) :-do_c_built_metacall173,4752 -do_c_built_metacall(G1, Mod, _, call(Mod:G1)).do_c_built_metacall175,4832 -do_c_built_metacall(G1, Mod, _, call(Mod:G1)).do_c_built_metacall175,4832 -'$do_and'(true, P, P) :- !.$do_and177,4880 -'$do_and'(true, P, P) :- !.$do_and177,4880 -'$do_and'(true, P, P) :- !.$do_and177,4880 -'$do_and'(P, true, P) :- !.$do_and178,4908 -'$do_and'(P, true, P) :- !.$do_and178,4908 -'$do_and'(P, true, P) :- !.$do_and178,4908 -'$do_and'(P, Q, (P,Q)).$do_and179,4936 -'$do_and'(P, Q, (P,Q))./p,predicate,predicate definition179,4936 -'$do_and'(P, Q, (P,Q)).$do_and179,4936 -'$drop_is'(V, V1, P0, G) :-$drop_is184,5101 -'$drop_is'(V, V1, P0, G) :-$drop_is184,5101 -'$drop_is'(V, V1, P0, G) :-$drop_is184,5101 -'$drop_is'(V, X, P0, P) :- % atoms$drop_is189,5186 -'$drop_is'(V, X, P0, P) :- % atoms$drop_is189,5186 -'$drop_is'(V, X, P0, P) :- % atoms$drop_is189,5186 -'$compop'(X < Y, < , X, Y).$compop193,5288 -'$compop'(X < Y, < , X, Y)./p,predicate,predicate definition193,5288 -'$compop'(X < Y, < , X, Y).$compop193,5288 -'$compop'(X > Y, > , X, Y).$compop194,5316 -'$compop'(X > Y, > , X, Y)./p,predicate,predicate definition194,5316 -'$compop'(X > Y, > , X, Y).$compop194,5316 -'$compop'(X=< Y,=< , X, Y).$compop195,5344 -'$compop'(X=< Y,=< , X, Y)./p,predicate,predicate definition195,5344 -'$compop'(X=< Y,=< , X, Y).$compop195,5344 -'$compop'(X >=Y, >=, X, Y).$compop196,5372 -'$compop'(X >=Y, >=, X, Y)./p,predicate,predicate definition196,5372 -'$compop'(X >=Y, >=, X, Y).$compop196,5372 -'$compop'(X=:=Y,=:=, X, Y).$compop197,5400 -'$compop'(X=:=Y,=:=, X, Y)./p,predicate,predicate definition197,5400 -'$compop'(X=:=Y,=:=, X, Y).$compop197,5400 -'$compop'(X=\=Y,=\=, X, Y).$compop198,5428 -'$compop'(X=\=Y,=\=, X, Y)./p,predicate,predicate definition198,5428 -'$compop'(X=\=Y,=\=, X, Y).$compop198,5428 -'$composed_built_in'(V) :- var(V), !,$composed_built_in200,5457 -'$composed_built_in'(V) :- var(V), !,$composed_built_in200,5457 -'$composed_built_in'(V) :- var(V), !,$composed_built_in200,5457 -'$composed_built_in'(('$current_choice_point'(_),NG,'$$cut_by'(_))) :- !,$composed_built_in202,5502 -'$composed_built_in'(('$current_choice_point'(_),NG,'$$cut_by'(_))) :- !,$composed_built_in202,5502 -'$composed_built_in'(('$current_choice_point'(_),NG,'$$cut_by'(_))) :- !,$composed_built_in'(('$current_choice_point'(_),NG,'$$cut_by202,5502 -'$composed_built_in'((_,_)).$composed_built_in204,5603 -'$composed_built_in'((_,_))./p,predicate,predicate definition204,5603 -'$composed_built_in'((_,_)).$composed_built_in204,5603 -'$composed_built_in'((_;_)).$composed_built_in205,5632 -'$composed_built_in'((_;_))./p,predicate,predicate definition205,5632 -'$composed_built_in'((_;_)).$composed_built_in205,5632 -'$composed_built_in'((_|_)).$composed_built_in206,5661 -'$composed_built_in'((_|_))./p,predicate,predicate definition206,5661 -'$composed_built_in'((_|_)).$composed_built_in206,5661 -'$composed_built_in'((_->_)).$composed_built_in207,5690 -'$composed_built_in'((_->_))./p,predicate,predicate definition207,5690 -'$composed_built_in'((_->_)).$composed_built_in207,5690 -'$composed_built_in'(_:G) :-$composed_built_in208,5720 -'$composed_built_in'(_:G) :-$composed_built_in208,5720 -'$composed_built_in'(_:G) :-$composed_built_in208,5720 -'$composed_built_in'(\+G) :-$composed_built_in210,5775 -'$composed_built_in'(\+G) :-$composed_built_in210,5775 -'$composed_built_in'(\+G) :-$composed_built_in210,5775 -'$composed_built_in'(not(G)) :-$composed_built_in212,5830 -'$composed_built_in'(not(G)) :-$composed_built_in212,5830 -'$composed_built_in'(not(G)) :-$composed_built_in212,5830 -expand_expr(V, true, V) :-expand_expr219,6068 -expand_expr(V, true, V) :-expand_expr219,6068 -expand_expr(V, true, V) :-expand_expr219,6068 -expand_expr([T], E, V) :- !,expand_expr221,6107 -expand_expr([T], E, V) :- !,expand_expr221,6107 -expand_expr([T], E, V) :- !,expand_expr221,6107 -expand_expr(String, _E, V) :-expand_expr223,6159 -expand_expr(String, _E, V) :-expand_expr223,6159 -expand_expr(String, _E, V) :-expand_expr223,6159 -expand_expr(A, true, A) :-expand_expr226,6239 -expand_expr(A, true, A) :-expand_expr226,6239 -expand_expr(A, true, A) :-expand_expr226,6239 -expand_expr(T, E, V) :-expand_expr228,6281 -expand_expr(T, E, V) :-expand_expr228,6281 -expand_expr(T, E, V) :-expand_expr228,6281 -expand_expr(T, E, V) :-expand_expr232,6375 -expand_expr(T, E, V) :-expand_expr232,6375 -expand_expr(T, E, V) :-expand_expr232,6375 -expand_expr(Op, X, O, Q, Q) :-expand_expr243,6649 -expand_expr(Op, X, O, Q, Q) :-expand_expr243,6649 -expand_expr(Op, X, O, Q, Q) :-expand_expr243,6649 -expand_expr(Op, X, O, Q, P) :-expand_expr246,6768 -expand_expr(Op, X, O, Q, P) :-expand_expr246,6768 -expand_expr(Op, X, O, Q, P) :-expand_expr246,6768 -expand_expr(Op, X, Y, O, Q, Q) :-expand_expr257,7119 -expand_expr(Op, X, Y, O, Q, Q) :-expand_expr257,7119 -expand_expr(Op, X, Y, O, Q, Q) :-expand_expr257,7119 -expand_expr(+, X, Y, O, Q, P) :- !,expand_expr260,7212 -expand_expr(+, X, Y, O, Q, P) :- !,expand_expr260,7212 -expand_expr(+, X, Y, O, Q, P) :- !,expand_expr260,7212 -expand_expr(-, X, Y, O, Q, P) :-expand_expr264,7359 -expand_expr(-, X, Y, O, Q, P) :-expand_expr264,7359 -expand_expr(-, X, Y, O, Q, P) :-expand_expr264,7359 -expand_expr(-, X, Y, O, Q, P) :- !,expand_expr268,7457 -expand_expr(-, X, Y, O, Q, P) :- !,expand_expr268,7457 -expand_expr(-, X, Y, O, Q, P) :- !,expand_expr268,7457 -expand_expr(*, X, Y, O, Q, P) :- !,expand_expr272,7609 -expand_expr(*, X, Y, O, Q, P) :- !,expand_expr272,7609 -expand_expr(*, X, Y, O, Q, P) :- !,expand_expr272,7609 -expand_expr(//, X, Y, O, Q, P) :-expand_expr276,7757 -expand_expr(//, X, Y, O, Q, P) :-expand_expr276,7757 -expand_expr(//, X, Y, O, Q, P) :-expand_expr276,7757 -expand_expr(//, X, Y, O, Q, P) :- !,expand_expr280,7881 -expand_expr(//, X, Y, O, Q, P) :- !,expand_expr280,7881 -expand_expr(//, X, Y, O, Q, P) :- !,expand_expr280,7881 -expand_expr(/\, X, Y, O, Q, P) :- !,expand_expr284,8032 -expand_expr(/\, X, Y, O, Q, P) :- !,expand_expr284,8032 -expand_expr(/\, X, Y, O, Q, P) :- !,expand_expr284,8032 -expand_expr(\/, X, Y, O, Q, P) :- !,expand_expr288,8179 -expand_expr(\/, X, Y, O, Q, P) :- !,expand_expr288,8179 -expand_expr(\/, X, Y, O, Q, P) :- !,expand_expr288,8179 -expand_expr(<<, X, Y, O, Q, P) :-expand_expr292,8325 -expand_expr(<<, X, Y, O, Q, P) :-expand_expr292,8325 -expand_expr(<<, X, Y, O, Q, P) :-expand_expr292,8325 -expand_expr(<<, X, Y, O, Q, P) :- !,expand_expr296,8432 -expand_expr(<<, X, Y, O, Q, P) :- !,expand_expr296,8432 -expand_expr(<<, X, Y, O, Q, P) :- !,expand_expr296,8432 -expand_expr(>>, X, Y, O, Q, P) :-expand_expr300,8583 -expand_expr(>>, X, Y, O, Q, P) :-expand_expr300,8583 -expand_expr(>>, X, Y, O, Q, P) :-expand_expr300,8583 -expand_expr(>>, X, Y, O, Q, P) :- !,expand_expr304,8690 -expand_expr(>>, X, Y, O, Q, P) :- !,expand_expr304,8690 -expand_expr(>>, X, Y, O, Q, P) :- !,expand_expr304,8690 -expand_expr(Op, X, Y, O, Q, P) :-expand_expr308,8841 -expand_expr(Op, X, Y, O, Q, P) :-expand_expr308,8841 -expand_expr(Op, X, Y, O, Q, P) :-expand_expr308,8841 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative312,8943 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative312,8943 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative312,8943 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative314,9019 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative314,9019 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative314,9019 -'$preprocess_args_for_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_commutative316,9116 -'$preprocess_args_for_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_commutative316,9116 -'$preprocess_args_for_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_commutative316,9116 -'$preprocess_args_for_commutative'(X, Y, Y, X, true) :-$preprocess_args_for_commutative318,9185 -'$preprocess_args_for_commutative'(X, Y, Y, X, true) :-$preprocess_args_for_commutative318,9185 -'$preprocess_args_for_commutative'(X, Y, Y, X, true) :-$preprocess_args_for_commutative318,9185 -'$preprocess_args_for_commutative'(X, Y, Z, X, Z = Y) :-$preprocess_args_for_commutative320,9282 -'$preprocess_args_for_commutative'(X, Y, Z, X, Z = Y) :-$preprocess_args_for_commutative320,9282 -'$preprocess_args_for_commutative'(X, Y, Z, X, Z = Y) :-$preprocess_args_for_commutative320,9282 -'$preprocess_args_for_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_commutative322,9372 -'$preprocess_args_for_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_commutative322,9372 -'$preprocess_args_for_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_commutative322,9372 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative325,9455 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative325,9455 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative325,9455 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative327,9535 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative327,9535 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative327,9535 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative329,9636 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative329,9636 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative329,9636 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative331,9709 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative331,9709 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative331,9709 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative333,9810 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative333,9810 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative333,9810 -'$preprocess_args_for_non_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_non_commutative335,9904 -'$preprocess_args_for_non_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_non_commutative335,9904 -'$preprocess_args_for_non_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_non_commutative335,9904 -'$goal_expansion_allowed'(phrase(NT,_Xs0,_Xs), Mod) :-$goal_expansion_allowed339,9992 -'$goal_expansion_allowed'(phrase(NT,_Xs0,_Xs), Mod) :-$goal_expansion_allowed339,9992 -'$goal_expansion_allowed'(phrase(NT,_Xs0,_Xs), Mod) :-$goal_expansion_allowed339,9992 -'$contains_illegal_dcgnt'(NT) :-$contains_illegal_dcgnt348,10263 -'$contains_illegal_dcgnt'(NT) :-$contains_illegal_dcgnt348,10263 -'$contains_illegal_dcgnt'(NT) :-$contains_illegal_dcgnt348,10263 -'$harmless_dcgexception'(instantiation_error). % ex: phrase(([1],x:X,[3]),L)$harmless_dcgexception357,10489 -'$harmless_dcgexception'(instantiation_error). % ex: phrase(([1],x:X,[3]),L)/p,predicate,predicate definition357,10489 -'$harmless_dcgexception'(instantiation_error). % ex: phrase(([1],x:X,[3]),L)$harmless_dcgexception357,10489 -'$harmless_dcgexception'(type_error(callable,_)). % ex: phrase(27,L)$harmless_dcgexception358,10566 -'$harmless_dcgexception'(type_error(callable,_)). % ex: phrase(27,L)/p,predicate,predicate definition358,10566 -'$harmless_dcgexception'(type_error(callable,_)). % ex: phrase(27,L)$harmless_dcgexception358,10566 - -packages/python/swig/yap4py/prolog/pl/arithpreds.yap,1341 -succ(M,N) :-succ48,1342 -succ(M,N) :-succ48,1342 -succ(M,N) :-succ48,1342 -'$succ_error'(M,N) :-$succ_error80,1628 -'$succ_error'(M,N) :-$succ_error80,1628 -'$succ_error'(M,N) :-$succ_error80,1628 -'$succ_error'(M,N) :-$succ_error84,1716 -'$succ_error'(M,N) :-$succ_error84,1716 -'$succ_error'(M,N) :-$succ_error84,1716 -'$succ_error'(M,N) :-$succ_error88,1814 -'$succ_error'(M,N) :-$succ_error88,1814 -'$succ_error'(M,N) :-$succ_error88,1814 -'$succ_error'(M,N) :-$succ_error92,1917 -'$succ_error'(M,N) :-$succ_error92,1917 -'$succ_error'(M,N) :-$succ_error92,1917 -'$succ_error'(M,N) :-$succ_error96,2015 -'$succ_error'(M,N) :-$succ_error96,2015 -'$succ_error'(M,N) :-$succ_error96,2015 -plus(X, Y, Z) :-plus110,2308 -plus(X, Y, Z) :-plus110,2308 -plus(X, Y, Z) :-plus110,2308 -'$plus_error'(X,Y,Z) :-$plus_error155,3012 -'$plus_error'(X,Y,Z) :-$plus_error155,3012 -'$plus_error'(X,Y,Z) :-$plus_error155,3012 -'$plus_error'(X,Y,Z) :-$plus_error159,3132 -'$plus_error'(X,Y,Z) :-$plus_error159,3132 -'$plus_error'(X,Y,Z) :-$plus_error159,3132 -'$plus_error'(X,Y,Z) :-$plus_error163,3252 -'$plus_error'(X,Y,Z) :-$plus_error163,3252 -'$plus_error'(X,Y,Z) :-$plus_error163,3252 -'$plus_error'(X,Y,Z) :-$plus_error167,3372 -'$plus_error'(X,Y,Z) :-$plus_error167,3372 -'$plus_error'(X,Y,Z) :-$plus_error167,3372 - -packages/python/swig/yap4py/prolog/pl/arrays.yap,3180 -array(Obj, Size) :-array40,1031 -array(Obj, Size) :-array40,1031 -array(Obj, Size) :-array40,1031 -'$c_arrays'((P:-Q),(NP:-QF)) :- !,$c_arrays45,1110 -'$c_arrays'((P:-Q),(NP:-QF)) :- !,$c_arrays45,1110 -'$c_arrays'((P:-Q),(NP:-QF)) :- !,$c_arrays45,1110 -'$c_arrays'(P, NP) :-$c_arrays48,1205 -'$c_arrays'(P, NP) :-$c_arrays48,1205 -'$c_arrays'(P, NP) :-$c_arrays48,1205 -'$c_arrays_body'(P, P) :-$c_arrays_body51,1254 -'$c_arrays_body'(P, P) :-$c_arrays_body51,1254 -'$c_arrays_body'(P, P) :-$c_arrays_body51,1254 -'$c_arrays_body'((P0,Q0), (P,Q)) :- !,$c_arrays_body53,1292 -'$c_arrays_body'((P0,Q0), (P,Q)) :- !,$c_arrays_body53,1292 -'$c_arrays_body'((P0,Q0), (P,Q)) :- !,$c_arrays_body53,1292 -'$c_arrays_body'((P0;Q0), (P;Q)) :- !,$c_arrays_body56,1383 -'$c_arrays_body'((P0;Q0), (P;Q)) :- !,$c_arrays_body56,1383 -'$c_arrays_body'((P0;Q0), (P;Q)) :- !,$c_arrays_body56,1383 -'$c_arrays_body'((P0->Q0), (P->Q)) :- !,$c_arrays_body59,1474 -'$c_arrays_body'((P0->Q0), (P->Q)) :- !,$c_arrays_body59,1474 -'$c_arrays_body'((P0->Q0), (P->Q)) :- !,$c_arrays_body59,1474 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP)./p,predicate,predicate definition62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body'(P, NP) :- '$c_arrays_lit62,1567 -'$c_arrays_lit'(G, GL) :-$c_arrays_lit67,1682 -'$c_arrays_lit'(G, GL) :-$c_arrays_lit67,1682 -'$c_arrays_lit'(G, GL) :-$c_arrays_lit67,1682 -'$c_arrays_head'(G, NG, B, NB) :-$c_arrays_head71,1777 -'$c_arrays_head'(G, NG, B, NB) :-$c_arrays_head71,1777 -'$c_arrays_head'(G, NG, B, NB) :-$c_arrays_head71,1777 -'$c_arrays_fact'(G, NG) :-$c_arrays_fact75,1879 -'$c_arrays_fact'(G, NG) :-$c_arrays_fact75,1879 -'$c_arrays_fact'(G, NG) :-$c_arrays_fact75,1879 -'$add_array_entries'([], NG, NG).$add_array_entries80,2020 -'$add_array_entries'([], NG, NG)./p,predicate,predicate definition80,2020 -'$add_array_entries'([], NG, NG).$add_array_entries80,2020 -'$add_array_entries'([Head|Tail], G, (Head, NG)) :-$add_array_entries81,2054 -'$add_array_entries'([Head|Tail], G, (Head, NG)) :-$add_array_entries81,2054 -'$add_array_entries'([Head|Tail], G, (Head, NG)) :-$add_array_entries81,2054 -static_array_properties(Name, Size, Type) :-static_array_properties97,2426 -static_array_properties(Name, Size, Type) :-static_array_properties97,2426 -static_array_properties(Name, Size, Type) :-static_array_properties97,2426 -static_array_properties(Name, Size, Type) :-static_array_properties100,2534 -static_array_properties(Name, Size, Type) :-static_array_properties100,2534 -static_array_properties(Name, Size, Type) :-static_array_properties100,2534 -static_array_properties(Name, Size, Type) :-static_array_properties104,2662 -static_array_properties(Name, Size, Type) :-static_array_properties104,2662 -static_array_properties(Name, Size, Type) :-static_array_properties104,2662 - -packages/python/swig/yap4py/prolog/pl/atoms.yap,8895 -atom_concat(Xs,At) :-atom_concat40,873 -atom_concat(Xs,At) :-atom_concat40,873 -atom_concat(Xs,At) :-atom_concat40,873 -'$atom_concat_constraints'([At], 0, At, []) :- !.$atom_concat_constraints49,1109 -'$atom_concat_constraints'([At], 0, At, []) :- !.$atom_concat_constraints49,1109 -'$atom_concat_constraints'([At], 0, At, []) :- !.$atom_concat_constraints49,1109 -'$atom_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$atom_concat_constraints50,1159 -'$atom_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$atom_concat_constraints50,1159 -'$atom_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$atom_concat_constraints50,1159 -'$atom_concat_constraints'([At0|Xs], 0, At, Unbound) :-$atom_concat_constraints52,1271 -'$atom_concat_constraints'([At0|Xs], 0, At, Unbound) :-$atom_concat_constraints52,1271 -'$atom_concat_constraints'([At0|Xs], 0, At, Unbound) :-$atom_concat_constraints52,1271 -'$atom_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$atom_concat_constraints58,1550 -'$atom_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$atom_concat_constraints58,1550 -'$atom_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$atom_concat_constraints58,1550 -'$atom_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$atom_concat_constraints61,1709 -'$atom_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$atom_concat_constraints61,1709 -'$atom_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$atom_concat_constraints61,1709 -'$atom_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$atom_concat_constraints67,1951 -'$atom_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$atom_concat_constraints67,1951 -'$atom_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$atom_concat_constraints67,1951 -'$process_atom_holes'([]).$process_atom_holes70,2121 -'$process_atom_holes'([])./p,predicate,predicate definition70,2121 -'$process_atom_holes'([]).$process_atom_holes70,2121 -'$process_atom_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_atom_holes71,2148 -'$process_atom_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_atom_holes71,2148 -'$process_atom_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_atom_holes71,2148 -'$process_atom_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_atom_holes74,2292 -'$process_atom_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_atom_holes74,2292 -'$process_atom_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_atom_holes74,2292 -atomic_list_concat(L,At) :-atomic_list_concat90,2730 -atomic_list_concat(L,At) :-atomic_list_concat90,2730 -atomic_list_concat(L,At) :-atomic_list_concat90,2730 -atomic_list_concat(L, El, At) :-atomic_list_concat116,3274 -atomic_list_concat(L, El, At) :-atomic_list_concat116,3274 -atomic_list_concat(L, El, At) :-atomic_list_concat116,3274 -atomic_list_concat(L, El, At) :-atomic_list_concat119,3383 -atomic_list_concat(L, El, At) :-atomic_list_concat119,3383 -atomic_list_concat(L, El, At) :-atomic_list_concat119,3383 -atomic_list_concat(L, El, At) :-atomic_list_concat123,3479 -atomic_list_concat(L, El, At) :-atomic_list_concat123,3479 -atomic_list_concat(L, El, At) :-atomic_list_concat123,3479 -'$atomic_list_concat_all'( At, El, [A|L]) :-$atomic_list_concat_all127,3569 -'$atomic_list_concat_all'( At, El, [A|L]) :-$atomic_list_concat_all127,3569 -'$atomic_list_concat_all'( At, El, [A|L]) :-$atomic_list_concat_all127,3569 -'$atomic_list_concat_all'( At, _El, [At]).$atomic_list_concat_all132,3766 -'$atomic_list_concat_all'( At, _El, [At])./p,predicate,predicate definition132,3766 -'$atomic_list_concat_all'( At, _El, [At]).$atomic_list_concat_all132,3766 -'$add_els'([A,B|L],El,[A,El|NL]) :- !,$add_els134,3810 -'$add_els'([A,B|L],El,[A,El|NL]) :- !,$add_els134,3810 -'$add_els'([A,B|L],El,[A,El|NL]) :- !,$add_els134,3810 -'$add_els'(L,_,L).$add_els136,3875 -'$add_els'(L,_,L)./p,predicate,predicate definition136,3875 -'$add_els'(L,_,L).$add_els136,3875 -'$singletons_in_term'(T,VL) :-$singletons_in_term142,3926 -'$singletons_in_term'(T,VL) :-$singletons_in_term142,3926 -'$singletons_in_term'(T,VL) :-$singletons_in_term142,3926 -'$subtract_lists_of_variables'([],VL,VL).$subtract_lists_of_variables149,4110 -'$subtract_lists_of_variables'([],VL,VL)./p,predicate,predicate definition149,4110 -'$subtract_lists_of_variables'([],VL,VL).$subtract_lists_of_variables149,4110 -'$subtract_lists_of_variables'([_|_],[],[]) :- !.$subtract_lists_of_variables150,4152 -'$subtract_lists_of_variables'([_|_],[],[]) :- !.$subtract_lists_of_variables150,4152 -'$subtract_lists_of_variables'([_|_],[],[]) :- !.$subtract_lists_of_variables150,4152 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],VL) :-$subtract_lists_of_variables151,4202 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],VL) :-$subtract_lists_of_variables151,4202 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],VL) :-$subtract_lists_of_variables151,4202 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],[V2|VL]) :-$subtract_lists_of_variables154,4317 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],[V2|VL]) :-$subtract_lists_of_variables154,4317 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],[V2|VL]) :-$subtract_lists_of_variables154,4317 -current_atom(A) :- % checkcurrent_atom165,4579 -current_atom(A) :- % checkcurrent_atom165,4579 -current_atom(A) :- % checkcurrent_atom165,4579 -current_atom(A) :- % generatecurrent_atom167,4622 -current_atom(A) :- % generatecurrent_atom167,4622 -current_atom(A) :- % generatecurrent_atom167,4622 -string_concat(Xs,At) :-string_concat170,4677 -string_concat(Xs,At) :-string_concat170,4677 -string_concat(Xs,At) :-string_concat170,4677 -'$string_concat_constraints'([At], 0, At, []) :- !.$string_concat_constraints179,4925 -'$string_concat_constraints'([At], 0, At, []) :- !.$string_concat_constraints179,4925 -'$string_concat_constraints'([At], 0, At, []) :- !.$string_concat_constraints179,4925 -'$string_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$string_concat_constraints180,4977 -'$string_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$string_concat_constraints180,4977 -'$string_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$string_concat_constraints180,4977 -'$string_concat_constraints'([At0|Xs], 0, At, Unbound) :-$string_concat_constraints182,5093 -'$string_concat_constraints'([At0|Xs], 0, At, Unbound) :-$string_concat_constraints182,5093 -'$string_concat_constraints'([At0|Xs], 0, At, Unbound) :-$string_concat_constraints182,5093 -'$string_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$string_concat_constraints188,5382 -'$string_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$string_concat_constraints188,5382 -'$string_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$string_concat_constraints188,5382 -'$string_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$string_concat_constraints191,5545 -'$string_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$string_concat_constraints191,5545 -'$string_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$string_concat_constraints191,5545 -'$string_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$string_concat_constraints197,5799 -'$string_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$string_concat_constraints197,5799 -'$string_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$string_concat_constraints197,5799 -'$process_string_holes'([]).$process_string_holes200,5973 -'$process_string_holes'([])./p,predicate,predicate definition200,5973 -'$process_string_holes'([]).$process_string_holes200,5973 -'$process_string_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_string_holes201,6002 -'$process_string_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_string_holes201,6002 -'$process_string_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_string_holes201,6002 -'$process_string_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_string_holes204,6152 -'$process_string_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_string_holes204,6152 -'$process_string_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_string_holes204,6152 - -packages/python/swig/yap4py/prolog/pl/attributes.yap,10360 -:- dynamic attributes:existing_attribute/4.dynamic47,1242 -:- dynamic attributes:existing_attribute/4.dynamic47,1242 -:- dynamic attributes:modules_with_attributes/1.dynamic48,1286 -:- dynamic attributes:modules_with_attributes/1.dynamic48,1286 -:- dynamic attributes:attributed_module/3.dynamic49,1335 -:- dynamic attributes:attributed_module/3.dynamic49,1335 -:- dynamic existing_attribute/4.dynamic54,1437 -:- dynamic existing_attribute/4.dynamic54,1437 -:- dynamic modules_with_attributes/1.dynamic55,1470 -:- dynamic modules_with_attributes/1.dynamic55,1470 -:- dynamic attributed_module/3.dynamic56,1508 -:- dynamic attributed_module/3.dynamic56,1508 -prolog:get_attr(Var, Mod, Att) :-get_attr68,1838 -prolog:get_attr(Var, Mod, Att) :-get_attr68,1838 -prolog:put_attr(Var, Mod, Att) :-put_attr85,2444 -prolog:put_attr(Var, Mod, Att) :-put_attr85,2444 -prolog:del_attr(Var, Mod) :-del_attr101,2896 -prolog:del_attr(Var, Mod) :-del_attr101,2896 -prolog:del_attrs(Var) :-del_attrs114,3176 -prolog:del_attrs(Var) :-del_attrs114,3176 -prolog:get_attrs(AttVar, SWIAtts) :-get_attrs125,3452 -prolog:get_attrs(AttVar, SWIAtts) :-get_attrs125,3452 -prolog:put_attrs(_, []).put_attrs136,3670 -prolog:put_attrs(V, Atts) :-put_attrs137,3695 -prolog:put_attrs(V, Atts) :-put_attrs137,3695 -cvt_to_swi_atts([], _).cvt_to_swi_atts141,3796 -cvt_to_swi_atts([], _).cvt_to_swi_atts141,3796 -cvt_to_swi_atts(att(Mod,Attribute,Atts), ModAttribute) :-cvt_to_swi_atts142,3820 -cvt_to_swi_atts(att(Mod,Attribute,Atts), ModAttribute) :-cvt_to_swi_atts142,3820 -cvt_to_swi_atts(att(Mod,Attribute,Atts), ModAttribute) :-cvt_to_swi_atts142,3820 -prolog:copy_term(Term, Copy, Gs) :-copy_term162,4508 -prolog:copy_term(Term, Copy, Gs) :-copy_term162,4508 -residuals_and_delete_attributes(Vs, Gs, Term) :-residuals_and_delete_attributes172,4742 -residuals_and_delete_attributes(Vs, Gs, Term) :-residuals_and_delete_attributes172,4742 -residuals_and_delete_attributes(Vs, Gs, Term) :-residuals_and_delete_attributes172,4742 -attvars_residuals([]) --> [].attvars_residuals176,4850 -attvars_residuals([]) --> [].attvars_residuals176,4850 -attvars_residuals([]) --> [].attvars_residuals176,4850 -attvars_residuals([V|Vs]) -->attvars_residuals177,4880 -attvars_residuals([V|Vs]) -->attvars_residuals177,4880 -attvars_residuals([V|Vs]) -->attvars_residuals177,4880 -attvars_residuals([V|Vs]) -->attvars_residuals180,4953 -attvars_residuals([V|Vs]) -->attvars_residuals180,4953 -attvars_residuals([V|Vs]) -->attvars_residuals180,4953 -prolog:'$wake_up_goal'([Module1|Continuation], LG) :-$wake_up_goal199,5406 -prolog:'$wake_up_goal'([Module1|Continuation], LG) :-$wake_up_goal199,5406 -do_continuation('$cut_by'(X), _) :- !,do_continuation211,5744 -do_continuation('$cut_by'(X), _) :- !,do_continuation211,5744 -do_continuation('$cut_by'(X), _) :- !,do_continuation211,5744 -do_continuation('$restore_regs'(X), _) :- !,do_continuation213,5799 -do_continuation('$restore_regs'(X), _) :- !,do_continuation213,5799 -do_continuation('$restore_regs'(X), _) :- !,do_continuation213,5799 -do_continuation('$restore_regs'(X,Y), _) :- !,do_continuation217,5914 -do_continuation('$restore_regs'(X,Y), _) :- !,do_continuation217,5914 -do_continuation('$restore_regs'(X,Y), _) :- !,do_continuation217,5914 -do_continuation(Continuation, Module1) :-do_continuation221,6033 -do_continuation(Continuation, Module1) :-do_continuation221,6033 -do_continuation(Continuation, Module1) :-do_continuation221,6033 -execute_continuation(Continuation, Module1) :-execute_continuation224,6121 -execute_continuation(Continuation, Module1) :-execute_continuation224,6121 -execute_continuation(Continuation, Module1) :-execute_continuation224,6121 -execute_continuation(Continuation, Mod) :-execute_continuation229,6332 -execute_continuation(Continuation, Mod) :-execute_continuation229,6332 -execute_continuation(Continuation, Mod) :-execute_continuation229,6332 -execute_woken_system_goals([]).execute_woken_system_goals234,6467 -execute_woken_system_goals([]).execute_woken_system_goals234,6467 -execute_woken_system_goals(['$att_do'(V,New)|LG]) :-execute_woken_system_goals235,6499 -execute_woken_system_goals(['$att_do'(V,New)|LG]) :-execute_woken_system_goals235,6499 -execute_woken_system_goals(['$att_do'(V,New)|LG]) :-execute_woken_system_goals235,6499 -call_atts(V,_) :-call_atts242,6651 -call_atts(V,_) :-call_atts242,6651 -call_atts(V,_) :-call_atts242,6651 -call_atts(V,_) :-call_atts244,6684 -call_atts(V,_) :-call_atts244,6684 -call_atts(V,_) :-call_atts244,6684 -call_atts(V,New) :-call_atts246,6723 -call_atts(V,New) :-call_atts246,6723 -call_atts(V,New) :-call_atts246,6723 -do_hook_attributes([], _).do_hook_attributes265,7098 -do_hook_attributes([], _).do_hook_attributes265,7098 -do_hook_attributes(att(Mod,Att,Atts), Binding) :-do_hook_attributes266,7125 -do_hook_attributes(att(Mod,Att,Atts), Binding) :-do_hook_attributes266,7125 -do_hook_attributes(att(Mod,Att,Atts), Binding) :-do_hook_attributes266,7125 -lcall([]).lcall276,7317 -lcall([]).lcall276,7317 -lcall([Mod:Gls|Goals]) :-lcall277,7328 -lcall([Mod:Gls|Goals]) :-lcall277,7328 -lcall([Mod:Gls|Goals]) :-lcall277,7328 -lcall2([], _).lcall2281,7388 -lcall2([], _).lcall2281,7388 -lcall2([Goal|Goals], Mod) :-lcall2282,7403 -lcall2([Goal|Goals], Mod) :-lcall2282,7403 -lcall2([Goal|Goals], Mod) :-lcall2282,7403 -dif(X,Z), call_residue_vars(dif(X,Y),L).dif296,7683 -dif(X,Z), call_residue_vars(dif(X,Y),L).dif296,7683 -prolog:call_residue_vars(Goal,Residue) :-call_residue_vars304,7770 -prolog:call_residue_vars(Goal,Residue) :-call_residue_vars304,7770 -'$ord_remove'([], _, []).$ord_remove314,8047 -'$ord_remove'([], _, [])./p,predicate,predicate definition314,8047 -'$ord_remove'([], _, []).$ord_remove314,8047 -'$ord_remove'([V|Vs], [], [V|Vs]).$ord_remove315,8073 -'$ord_remove'([V|Vs], [], [V|Vs])./p,predicate,predicate definition315,8073 -'$ord_remove'([V|Vs], [], [V|Vs]).$ord_remove315,8073 -'$ord_remove'([V1|Vss], [V2|Vs0s], Residue) :-$ord_remove316,8108 -'$ord_remove'([V1|Vss], [V2|Vs0s], Residue) :-$ord_remove316,8108 -'$ord_remove'([V1|Vss], [V2|Vs0s], Residue) :-$ord_remove316,8108 -attvar_residuals(att(Module,Value,As), V) -->attvar_residuals348,9072 -attvar_residuals(att(Module,Value,As), V) -->attvar_residuals348,9072 -attvar_residuals(att(Module,Value,As), V) -->attvar_residuals348,9072 -list([]) --> [].list376,10013 -list([]) --> [].list376,10013 -list([]) --> [].list376,10013 -list([L|Ls]) --> [L], list(Ls).list377,10034 -list([L|Ls]) --> [L], list(Ls).list377,10034 -list([L|Ls]) --> [L], list(Ls).list377,10034 -list([L|Ls]) --> [L], list(Ls).list377,10034 -list([L|Ls]) --> [L], list(Ls).list377,10034 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list379,10067 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list379,10067 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list379,10067 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list379,10067 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list379,10067 -dot_list(A) --> [A].dot_list380,10116 -dot_list(A) --> [A].dot_list380,10116 -dot_list(A) --> [A].dot_list380,10116 -delete_attributes(Term) :-delete_attributes382,10138 -delete_attributes(Term) :-delete_attributes382,10138 -delete_attributes(Term) :-delete_attributes382,10138 -delete_attributes_([]).delete_attributes_386,10216 -delete_attributes_([]).delete_attributes_386,10216 -delete_attributes_([V|Vs]) :-delete_attributes_387,10240 -delete_attributes_([V|Vs]) :-delete_attributes_387,10240 -delete_attributes_([V|Vs]) :-delete_attributes_387,10240 -prolog:call_residue(Goal,Residue) :-call_residue422,10897 -prolog:call_residue(Goal,Residue) :-call_residue422,10897 -prolog:call_residue(Module:Goal,Residue) :-call_residue425,11011 -prolog:call_residue(Module:Goal,Residue) :-call_residue425,11011 -prolog:call_residue(Goal,Residue) :-call_residue428,11109 -prolog:call_residue(Goal,Residue) :-call_residue428,11109 -call_residue(Goal,Module,Residue) :-call_residue432,11211 -call_residue(Goal,Module,Residue) :-call_residue432,11211 -call_residue(Goal,Module,Residue) :-call_residue432,11211 -attributes:delayed_goals(G, Vs, NVs, Gs) :-delayed_goals443,11444 -attributes:delayed_goals(G, Vs, NVs, Gs) :-delayed_goals443,11444 -project_delayed_goals(G) :-project_delayed_goals448,11589 -project_delayed_goals(G) :-project_delayed_goals448,11589 -project_delayed_goals(G) :-project_delayed_goals448,11589 -project_delayed_goals(_).project_delayed_goals457,11901 -project_delayed_goals(_).project_delayed_goals457,11901 -attributed(G, Vs) :-attributed460,11929 -attributed(G, Vs) :-attributed460,11929 -attributed(G, Vs) :-attributed460,11929 -att_vars([], []).att_vars464,11996 -att_vars([], []).att_vars464,11996 -att_vars([V|LGs], [V|AttVars]) :- attvar(V), !,att_vars465,12014 -att_vars([V|LGs], [V|AttVars]) :- attvar(V), !,att_vars465,12014 -att_vars([V|LGs], [V|AttVars]) :- attvar(V), !,att_vars465,12014 -att_vars([_|LGs], AttVars) :-att_vars467,12087 -att_vars([_|LGs], AttVars) :-att_vars467,12087 -att_vars([_|LGs], AttVars) :-att_vars467,12087 -project_attributes(AllVs, G) :-project_attributes493,13124 -project_attributes(AllVs, G) :-project_attributes493,13124 -project_attributes(AllVs, G) :-project_attributes493,13124 -pick_att_vars([],[]).pick_att_vars500,13318 -pick_att_vars([],[]).pick_att_vars500,13318 -pick_att_vars([V|L],[V|NL]) :- attvar(V), !,pick_att_vars501,13340 -pick_att_vars([V|L],[V|NL]) :- attvar(V), !,pick_att_vars501,13340 -pick_att_vars([V|L],[V|NL]) :- attvar(V), !,pick_att_vars501,13340 -pick_att_vars([_|L],NL) :-pick_att_vars503,13407 -pick_att_vars([_|L],NL) :-pick_att_vars503,13407 -pick_att_vars([_|L],NL) :-pick_att_vars503,13407 -project_module([], _, _).project_module506,13457 -project_module([], _, _).project_module506,13457 -project_module([Mod|LMods], LIV, LAV) :-project_module507,13483 -project_module([Mod|LMods], LIV, LAV) :-project_module507,13483 -project_module([Mod|LMods], LIV, LAV) :-project_module507,13483 -project_module([_|LMods], LIV, LAV) :-project_module512,13683 -project_module([_|LMods], LIV, LAV) :-project_module512,13683 -project_module([_|LMods], LIV, LAV) :-project_module512,13683 - -packages/python/swig/yap4py/prolog/pl/boot.yap,33115 -system_module(_Mod, _SysExps, _Decls).system_module179,4029 -system_module(_Mod, _SysExps, _Decls).system_module179,4029 -use_system_module(_Module, _SysExps).use_system_module182,4098 -use_system_module(_Module, _SysExps).use_system_module182,4098 -private(_).private184,4137 -private(_).private184,4137 -'$early_print_message'(Level, Msg) :-$early_print_message260,6051 -'$early_print_message'(Level, Msg) :-$early_print_message260,6051 -'$early_print_message'(Level, Msg) :-$early_print_message260,6051 -'$early_print_message'(informational, _) :-$early_print_message263,6166 -'$early_print_message'(informational, _) :-$early_print_message263,6166 -'$early_print_message'(informational, _) :-$early_print_message263,6166 -'$early_print_message'(_, absolute_file_path(X, Y)) :- !,$early_print_message267,6252 -'$early_print_message'(_, absolute_file_path(X, Y)) :- !,$early_print_message267,6252 -'$early_print_message'(_, absolute_file_path(X, Y)) :- !,$early_print_message267,6252 -'$early_print_message'(_, loading( C, F)) :- !,$early_print_message269,6353 -'$early_print_message'(_, loading( C, F)) :- !,$early_print_message269,6353 -'$early_print_message'(_, loading( C, F)) :- !,$early_print_message269,6353 -'$early_print_message'(_, loaded(F,C,M,T,H)) :- !,$early_print_message272,6503 -'$early_print_message'(_, loaded(F,C,M,T,H)) :- !,$early_print_message272,6503 -'$early_print_message'(_, loaded(F,C,M,T,H)) :- !,$early_print_message272,6503 -'$early_print_message'(Level, Msg) :-$early_print_message275,6693 -'$early_print_message'(Level, Msg) :-$early_print_message275,6693 -'$early_print_message'(Level, Msg) :-$early_print_message275,6693 -'$early_print_message'(Level, Msg) :-$early_print_message279,6842 -'$early_print_message'(Level, Msg) :-$early_print_message279,6842 -'$early_print_message'(Level, Msg) :-$early_print_message279,6842 -'$bootstrap_predicate'('$expand_a_clause'(_,_,_,_), _M, _) :- !,$bootstrap_predicate282,6942 -'$bootstrap_predicate'('$expand_a_clause'(_,_,_,_), _M, _) :- !,$bootstrap_predicate282,6942 -'$bootstrap_predicate'('$expand_a_clause'(_,_,_,_), _M, _) :- !,$bootstrap_predicate'('$expand_a_clause282,6942 -'$bootstrap_predicate'('$imported_predicate'(_,_,_,_), _M, _) :- !,$bootstrap_predicate284,7016 -'$bootstrap_predicate'('$imported_predicate'(_,_,_,_), _M, _) :- !,$bootstrap_predicate284,7016 -'$bootstrap_predicate'('$imported_predicate'(_,_,_,_), _M, _) :- !,$bootstrap_predicate'('$imported_predicate284,7016 -'$bootstrap_predicate'('$process_directive'(Gs, _Mode, M, _VL, _Pos) , _M, _) :- !,$bootstrap_predicate286,7092 -'$bootstrap_predicate'('$process_directive'(Gs, _Mode, M, _VL, _Pos) , _M, _) :- !,$bootstrap_predicate286,7092 -'$bootstrap_predicate'('$process_directive'(Gs, _Mode, M, _VL, _Pos) , _M, _) :- !,$bootstrap_predicate'('$process_directive286,7092 -'$bootstrap_predicate'(delayed_goals(_, _, _ , _), _M, _) :- !,$bootstrap_predicate292,7367 -'$bootstrap_predicate'(delayed_goals(_, _, _ , _), _M, _) :- !,$bootstrap_predicate292,7367 -'$bootstrap_predicate'(delayed_goals(_, _, _ , _), _M, _) :- !,$bootstrap_predicate292,7367 -'$bootstrap_predicate'(sort(L, S), _M, _) :- !,$bootstrap_predicate294,7439 -'$bootstrap_predicate'(sort(L, S), _M, _) :- !,$bootstrap_predicate294,7439 -'$bootstrap_predicate'(sort(L, S), _M, _) :- !,$bootstrap_predicate294,7439 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate296,7504 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate296,7504 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate296,7504 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate298,7611 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate298,7611 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate298,7611 -'$bootstrap_predicate'(prolog_file_type(A,prolog), _, _) :- !,$bootstrap_predicate300,7722 -'$bootstrap_predicate'(prolog_file_type(A,prolog), _, _) :- !,$bootstrap_predicate300,7722 -'$bootstrap_predicate'(prolog_file_type(A,prolog), _, _) :- !,$bootstrap_predicate300,7722 -'$bootstrap_predicate'(file_search_path(_A,_B), _, _ ) :- !, fail.$bootstrap_predicate302,7829 -'$bootstrap_predicate'(file_search_path(_A,_B), _, _ ) :- !, fail.$bootstrap_predicate302,7829 -'$bootstrap_predicate'(file_search_path(_A,_B), _, _ ) :- !, fail.$bootstrap_predicate302,7829 -'$bootstrap_predicate'(meta_predicate(G), M, _) :- !,$bootstrap_predicate303,7896 -'$bootstrap_predicate'(meta_predicate(G), M, _) :- !,$bootstrap_predicate303,7896 -'$bootstrap_predicate'(meta_predicate(G), M, _) :- !,$bootstrap_predicate303,7896 -'$bootstrap_predicate'(G, ImportingMod, _) :-$bootstrap_predicate306,8011 -'$bootstrap_predicate'(G, ImportingMod, _) :-$bootstrap_predicate306,8011 -'$bootstrap_predicate'(G, ImportingMod, _) :-$bootstrap_predicate306,8011 -'$bootstrap_predicate'(G0, M0, Action) :-$bootstrap_predicate311,8240 -'$bootstrap_predicate'(G0, M0, Action) :-$bootstrap_predicate311,8240 -'$bootstrap_predicate'(G0, M0, Action) :-$bootstrap_predicate311,8240 -'$undefp0'([M|G], Action) :-$undefp0322,8614 -'$undefp0'([M|G], Action) :-$undefp0322,8614 -'$undefp0'([M|G], Action) :-$undefp0322,8614 -true :- true.true330,8734 -live :-live332,8749 -'$start_orp_threads'(1) :- !.$start_orp_threads449,11567 -'$start_orp_threads'(1) :- !.$start_orp_threads449,11567 -'$start_orp_threads'(1) :- !.$start_orp_threads449,11567 -'$start_orp_threads'(W) :-$start_orp_threads450,11597 -'$start_orp_threads'(W) :-$start_orp_threads450,11597 -'$start_orp_threads'(W) :-$start_orp_threads450,11597 -'$read_toplevel'(Goal, Bindings) :-$read_toplevel467,11957 -'$read_toplevel'(Goal, Bindings) :-$read_toplevel467,11957 -'$read_toplevel'(Goal, Bindings) :-$read_toplevel467,11957 -'$handle_toplevel_error'( syntax_error(_)) :-$handle_toplevel_error474,12137 -'$handle_toplevel_error'( syntax_error(_)) :-$handle_toplevel_error474,12137 -'$handle_toplevel_error'( syntax_error(_)) :-$handle_toplevel_error474,12137 -'$handle_toplevel_error'( error(io_error(read,user_input),_)) :-$handle_toplevel_error477,12194 -'$handle_toplevel_error'( error(io_error(read,user_input),_)) :-$handle_toplevel_error477,12194 -'$handle_toplevel_error'( error(io_error(read,user_input),_)) :-$handle_toplevel_error477,12194 -'$handle_toplevel_error'(_, E) :-$handle_toplevel_error479,12263 -'$handle_toplevel_error'(_, E) :-$handle_toplevel_error479,12263 -'$handle_toplevel_error'(_, E) :-$handle_toplevel_error479,12263 -'$command'(C,VL,Pos,Con) :-$command596,14877 -'$command'(C,VL,Pos,Con) :-$command596,14877 -'$command'(C,VL,Pos,Con) :-$command596,14877 -'$command'(C,VL,Pos,Con) :-$command599,15017 -'$command'(C,VL,Pos,Con) :-$command599,15017 -'$command'(C,VL,Pos,Con) :-$command599,15017 -'$execute_command'(C,_,_,top,Source) :-$execute_command630,15867 -'$execute_command'(C,_,_,top,Source) :-$execute_command630,15867 -'$execute_command'(C,_,_,top,Source) :-$execute_command630,15867 -'$execute_command'(C,_,_,top,Source) :-$execute_command634,15979 -'$execute_command'(C,_,_,top,Source) :-$execute_command634,15979 -'$execute_command'(C,_,_,top,Source) :-$execute_command634,15979 -'$continue_with_command'(Where,V,'$stream_position'(C,_P,A1,A2,A3),'$source_location'(_F,L):G,Source) :-$continue_with_command668,16928 -'$continue_with_command'(Where,V,'$stream_position'(C,_P,A1,A2,A3),'$source_location'(_F,L):G,Source) :-$continue_with_command668,16928 -'$continue_with_command'(Where,V,'$stream_position'(C,_P,A1,A2,A3),'$source_location'(_F,L):G,Source) :-$continue_with_command'(Where,V,'$stream_position'(C,_P,A1,A2,A3),'$source_location668,16928 -'$continue_with_command'(reconsult,V,Pos,G,Source) :-$continue_with_command671,17118 -'$continue_with_command'(reconsult,V,Pos,G,Source) :-$continue_with_command671,17118 -'$continue_with_command'(reconsult,V,Pos,G,Source) :-$continue_with_command671,17118 -'$continue_with_command'(consult,V,Pos,G,Source) :-$continue_with_command675,17245 -'$continue_with_command'(consult,V,Pos,G,Source) :-$continue_with_command675,17245 -'$continue_with_command'(consult,V,Pos,G,Source) :-$continue_with_command675,17245 -'$continue_with_command'(top,V,_,G,_) :-$continue_with_command678,17351 -'$continue_with_command'(top,V,_,G,_) :-$continue_with_command678,17351 -'$continue_with_command'(top,V,_,G,_) :-$continue_with_command678,17351 -'$go_compile_clause'(G, _Vs, _Pos, Where, Source) :-$go_compile_clause693,17924 -'$go_compile_clause'(G, _Vs, _Pos, Where, Source) :-$go_compile_clause693,17924 -'$go_compile_clause'(G, _Vs, _Pos, Where, Source) :-$go_compile_clause693,17924 -'$$compile'(C, Where, C0, R) :-$$compile700,18167 -'$$compile'(C, Where, C0, R) :-$$compile700,18167 -'$$compile'(C, Where, C0, R) :-$$compile700,18167 -'$init_pred'(H, Mod, _Where ) :-$init_pred713,18427 -'$init_pred'(H, Mod, _Where ) :-$init_pred713,18427 -'$init_pred'(H, Mod, _Where ) :-$init_pred713,18427 -'$init_pred'(H, Mod, Where ) :-$init_pred720,18641 -'$init_pred'(H, Mod, Where ) :-$init_pred720,18641 -'$init_pred'(H, Mod, Where ) :-$init_pred720,18641 -'$init_pred'(_H, _Mod, _Where ).$init_pred725,18763 -'$init_pred'(_H, _Mod, _Where )./p,predicate,predicate definition725,18763 -'$init_pred'(_H, _Mod, _Where ).$init_pred725,18763 -'$init_as_dynamic'( asserta ).$init_as_dynamic727,18797 -'$init_as_dynamic'( asserta )./p,predicate,predicate definition727,18797 -'$init_as_dynamic'( asserta ).$init_as_dynamic727,18797 -'$init_as_dynamic'( assertz ).$init_as_dynamic728,18828 -'$init_as_dynamic'( assertz )./p,predicate,predicate definition728,18828 -'$init_as_dynamic'( assertz ).$init_as_dynamic728,18828 -'$init_as_dynamic'( consult ) :-$init_as_dynamic729,18859 -'$init_as_dynamic'( consult ) :-$init_as_dynamic729,18859 -'$init_as_dynamic'( consult ) :-$init_as_dynamic729,18859 -'$init_as_dynamic'( reconsult ) :-$init_as_dynamic731,18933 -'$init_as_dynamic'( reconsult ) :-$init_as_dynamic731,18933 -'$init_as_dynamic'( reconsult ) :-$init_as_dynamic731,18933 -'$check_if_reconsulted'(N,A) :-$check_if_reconsulted734,19010 -'$check_if_reconsulted'(N,A) :-$check_if_reconsulted734,19010 -'$check_if_reconsulted'(N,A) :-$check_if_reconsulted734,19010 -'$inform_as_reconsulted'(N,A) :-$inform_as_reconsulted742,19180 -'$inform_as_reconsulted'(N,A) :-$inform_as_reconsulted742,19180 -'$inform_as_reconsulted'(N,A) :-$inform_as_reconsulted742,19180 -'$prompt_alternatives_on'(determinism).$prompt_alternatives_on752,19385 -'$prompt_alternatives_on'(determinism)./p,predicate,predicate definition752,19385 -'$prompt_alternatives_on'(determinism).$prompt_alternatives_on752,19385 -'$query'(end_of_file,_).$query756,19451 -'$query'(end_of_file,_)./p,predicate,predicate definition756,19451 -'$query'(end_of_file,_).$query756,19451 -'$query'(G,[]) :-$query757,19476 -'$query'(G,[]) :-$query757,19476 -'$query'(G,[]) :-$query757,19476 -'$query'(G,V) :-$query762,19600 -'$query'(G,V) :-$query762,19600 -'$query'(G,V) :-$query762,19600 -'$delayed_goals'(G, V, NV, LGs, NCP) :-$delayed_goals804,20418 -'$delayed_goals'(G, V, NV, LGs, NCP) :-$delayed_goals804,20418 -'$delayed_goals'(G, V, NV, LGs, NCP) :-$delayed_goals804,20418 -'$do_yes_no'([X|L], M) :-$do_yes_no824,20798 -'$do_yes_no'([X|L], M) :-$do_yes_no824,20798 -'$do_yes_no'([X|L], M) :-$do_yes_no824,20798 -'$do_yes_no'(G, M) :-$do_yes_no827,20849 -'$do_yes_no'(G, M) :-$do_yes_no827,20849 -'$do_yes_no'(G, M) :-$do_yes_no827,20849 -'$write_query_answer_true'([]) :- !,$write_query_answer_true830,20893 -'$write_query_answer_true'([]) :- !,$write_query_answer_true830,20893 -'$write_query_answer_true'([]) :- !,$write_query_answer_true830,20893 -'$write_query_answer_true'(_).$write_query_answer_true832,20959 -'$write_query_answer_true'(_)./p,predicate,predicate definition832,20959 -'$write_query_answer_true'(_).$write_query_answer_true832,20959 -'$present_answer'(_,_):-$present_answer840,21150 -'$present_answer'(_,_):-$present_answer840,21150 -'$present_answer'(_,_):-$present_answer840,21150 -'$present_answer'((?-), Answ) :-$present_answer843,21204 -'$present_answer'((?-), Answ) :-$present_answer843,21204 -'$present_answer'((?-), Answ) :-$present_answer843,21204 -'$do_another'(C) :-$do_another859,21636 -'$do_another'(C) :-$do_another859,21636 -'$do_another'(C) :-$do_another859,21636 -'$write_answer'(_,_,_) :-$write_answer897,22375 -'$write_answer'(_,_,_) :-$write_answer897,22375 -'$write_answer'(_,_,_) :-$write_answer897,22375 -'$write_answer'(Vs, LBlk, FLAnsw) :-$write_answer900,22426 -'$write_answer'(Vs, LBlk, FLAnsw) :-$write_answer900,22426 -'$write_answer'(Vs, LBlk, FLAnsw) :-$write_answer900,22426 -'$purge_dontcares'([],[]).$purge_dontcares907,22654 -'$purge_dontcares'([],[])./p,predicate,predicate definition907,22654 -'$purge_dontcares'([],[]).$purge_dontcares907,22654 -'$purge_dontcares'([Name=_|Vs],NVs) :-$purge_dontcares908,22681 -'$purge_dontcares'([Name=_|Vs],NVs) :-$purge_dontcares908,22681 -'$purge_dontcares'([Name=_|Vs],NVs) :-$purge_dontcares908,22681 -'$purge_dontcares'([V|Vs],[V|NVs]) :-$purge_dontcares911,22788 -'$purge_dontcares'([V|Vs],[V|NVs]) :-$purge_dontcares911,22788 -'$purge_dontcares'([V|Vs],[V|NVs]) :-$purge_dontcares911,22788 -'$prep_answer_var_by_var'([], L, L).$prep_answer_var_by_var915,22857 -'$prep_answer_var_by_var'([], L, L)./p,predicate,predicate definition915,22857 -'$prep_answer_var_by_var'([], L, L).$prep_answer_var_by_var915,22857 -'$prep_answer_var_by_var'([Name=Value|L], LF, L0) :-$prep_answer_var_by_var916,22894 -'$prep_answer_var_by_var'([Name=Value|L], LF, L0) :-$prep_answer_var_by_var916,22894 -'$prep_answer_var_by_var'([Name=Value|L], LF, L0) :-$prep_answer_var_by_var916,22894 -'$delete_identical_answers'([], _, [], []).$delete_identical_answers922,23136 -'$delete_identical_answers'([], _, [], [])./p,predicate,predicate definition922,23136 -'$delete_identical_answers'([], _, [], []).$delete_identical_answers922,23136 -'$delete_identical_answers'([(Name=Value)|L], Value0, FL, [Name|Names]) :-$delete_identical_answers923,23180 -'$delete_identical_answers'([(Name=Value)|L], Value0, FL, [Name|Names]) :-$delete_identical_answers923,23180 -'$delete_identical_answers'([(Name=Value)|L], Value0, FL, [Name|Names]) :-$delete_identical_answers923,23180 -'$delete_identical_answers'([VV|L], Value0, [VV|FL], Names) :-$delete_identical_answers926,23328 -'$delete_identical_answers'([VV|L], Value0, [VV|FL], Names) :-$delete_identical_answers926,23328 -'$delete_identical_answers'([VV|L], Value0, [VV|FL], Names) :-$delete_identical_answers926,23328 -'$prep_answer_var'(Names, Value, LF, L0) :- var(Value), !,$prep_answer_var930,23500 -'$prep_answer_var'(Names, Value, LF, L0) :- var(Value), !,$prep_answer_var930,23500 -'$prep_answer_var'(Names, Value, LF, L0) :- var(Value), !,$prep_answer_var930,23500 -'$prep_answer_var'(Names, Value, [nonvar(Names,Value)|L0], L0).$prep_answer_var932,23603 -'$prep_answer_var'(Names, Value, [nonvar(Names,Value)|L0], L0)./p,predicate,predicate definition932,23603 -'$prep_answer_var'(Names, Value, [nonvar(Names,Value)|L0], L0).$prep_answer_var932,23603 -'$prep_answer_unbound_var'([_], L, L) :- !.$prep_answer_unbound_var935,23695 -'$prep_answer_unbound_var'([_], L, L) :- !.$prep_answer_unbound_var935,23695 -'$prep_answer_unbound_var'([_], L, L) :- !.$prep_answer_unbound_var935,23695 -'$prep_answer_unbound_var'(Names, [var(Names)|L0], L0).$prep_answer_unbound_var936,23739 -'$prep_answer_unbound_var'(Names, [var(Names)|L0], L0)./p,predicate,predicate definition936,23739 -'$prep_answer_unbound_var'(Names, [var(Names)|L0], L0).$prep_answer_unbound_var936,23739 -'$gen_name_string'(I,L,[C|L]) :- I < 26, !, C is I+65.$gen_name_string938,23796 -'$gen_name_string'(I,L,[C|L]) :- I < 26, !, C is I+65.$gen_name_string938,23796 -'$gen_name_string'(I,L,[C|L]) :- I < 26, !, C is I+65.$gen_name_string938,23796 -'$gen_name_string'(I,L0,LF) :-$gen_name_string939,23851 -'$gen_name_string'(I,L0,LF) :-$gen_name_string939,23851 -'$gen_name_string'(I,L0,LF) :-$gen_name_string939,23851 -'$write_vars_and_goals'([], _, []).$write_vars_and_goals945,23964 -'$write_vars_and_goals'([], _, [])./p,predicate,predicate definition945,23964 -'$write_vars_and_goals'([], _, []).$write_vars_and_goals945,23964 -'$write_vars_and_goals'([nl,G1|LG], First, NG) :- !,$write_vars_and_goals946,24000 -'$write_vars_and_goals'([nl,G1|LG], First, NG) :- !,$write_vars_and_goals946,24000 -'$write_vars_and_goals'([nl,G1|LG], First, NG) :- !,$write_vars_and_goals946,24000 -'$write_vars_and_goals'([G1|LG], First, NG) :-$write_vars_and_goals950,24158 -'$write_vars_and_goals'([G1|LG], First, NG) :-$write_vars_and_goals950,24158 -'$write_vars_and_goals'([G1|LG], First, NG) :-$write_vars_and_goals950,24158 -'$goal_to_string'(Format, G, String) :-$goal_to_string954,24294 -'$goal_to_string'(Format, G, String) :-$goal_to_string954,24294 -'$goal_to_string'(Format, G, String) :-$goal_to_string954,24294 -'$write_goal_output'(var([V|VL]), First, [var([V|VL])|L], next, L) :- !,$write_goal_output957,24368 -'$write_goal_output'(var([V|VL]), First, [var([V|VL])|L], next, L) :- !,$write_goal_output957,24368 -'$write_goal_output'(var([V|VL]), First, [var([V|VL])|L], next, L) :- !,$write_goal_output957,24368 -'$write_goal_output'(nonvar([V|VL],B), First, [nonvar([V|VL],B)|L], next, L) :- !,$write_goal_output961,24559 -'$write_goal_output'(nonvar([V|VL],B), First, [nonvar([V|VL],B)|L], next, L) :- !,$write_goal_output961,24559 -'$write_goal_output'(nonvar([V|VL],B), First, [nonvar([V|VL],B)|L], next, L) :- !,$write_goal_output961,24559 -'$write_goal_output'(nl, First, NG, First, NG) :- !,$write_goal_output970,24955 -'$write_goal_output'(nl, First, NG, First, NG) :- !,$write_goal_output970,24955 -'$write_goal_output'(nl, First, NG, First, NG) :- !,$write_goal_output970,24955 -'$write_goal_output'(Format-G, First, NG, Next, IG) :- !,$write_goal_output972,25037 -'$write_goal_output'(Format-G, First, NG, Next, IG) :- !,$write_goal_output972,25037 -'$write_goal_output'(Format-G, First, NG, Next, IG) :- !,$write_goal_output972,25037 -'$write_goal_output'(_-G, First, [G|NG], next, NG) :- !,$write_goal_output986,25453 -'$write_goal_output'(_-G, First, [G|NG], next, NG) :- !,$write_goal_output986,25453 -'$write_goal_output'(_-G, First, [G|NG], next, NG) :- !,$write_goal_output986,25453 -'$write_goal_output'(_M:G, First, [G|NG], next, NG) :- !,$write_goal_output992,25707 -'$write_goal_output'(_M:G, First, [G|NG], next, NG) :- !,$write_goal_output992,25707 -'$write_goal_output'(_M:G, First, [G|NG], next, NG) :- !,$write_goal_output992,25707 -'$write_goal_output'(G, First, [M:G|NG], next, NG) :-$write_goal_output998,25962 -'$write_goal_output'(G, First, [M:G|NG], next, NG) :-$write_goal_output998,25962 -'$write_goal_output'(G, First, [M:G|NG], next, NG) :-$write_goal_output998,25962 -'$name_vars_in_goals'(G, VL0, G) :-$name_vars_in_goals1006,26237 -'$name_vars_in_goals'(G, VL0, G) :-$name_vars_in_goals1006,26237 -'$name_vars_in_goals'(G, VL0, G) :-$name_vars_in_goals1006,26237 -'$name_well_known_vars'([]).$name_well_known_vars1011,26376 -'$name_well_known_vars'([])./p,predicate,predicate definition1011,26376 -'$name_well_known_vars'([]).$name_well_known_vars1011,26376 -'$name_well_known_vars'([Name=V|NVL0]) :-$name_well_known_vars1012,26405 -'$name_well_known_vars'([Name=V|NVL0]) :-$name_well_known_vars1012,26405 -'$name_well_known_vars'([Name=V|NVL0]) :-$name_well_known_vars1012,26405 -'$name_well_known_vars'([_|NVL0]) :-$name_well_known_vars1016,26510 -'$name_well_known_vars'([_|NVL0]) :-$name_well_known_vars1016,26510 -'$name_well_known_vars'([_|NVL0]) :-$name_well_known_vars1016,26510 -'$name_vars_in_goals1'([], I, I).$name_vars_in_goals11019,26580 -'$name_vars_in_goals1'([], I, I)./p,predicate,predicate definition1019,26580 -'$name_vars_in_goals1'([], I, I).$name_vars_in_goals11019,26580 -'$name_vars_in_goals1'([V|NGVL], I0, IF) :-$name_vars_in_goals11020,26614 -'$name_vars_in_goals1'([V|NGVL], I0, IF) :-$name_vars_in_goals11020,26614 -'$name_vars_in_goals1'([V|NGVL], I0, IF) :-$name_vars_in_goals11020,26614 -'$name_vars_in_goals1'([NV|NGVL], I0, IF) :-$name_vars_in_goals11026,26795 -'$name_vars_in_goals1'([NV|NGVL], I0, IF) :-$name_vars_in_goals11026,26795 -'$name_vars_in_goals1'([NV|NGVL], I0, IF) :-$name_vars_in_goals11026,26795 -'$write_output_vars'([]).$write_output_vars1030,26893 -'$write_output_vars'([])./p,predicate,predicate definition1030,26893 -'$write_output_vars'([]).$write_output_vars1030,26893 -'$write_output_vars'([V|VL]) :-$write_output_vars1031,26919 -'$write_output_vars'([V|VL]) :-$write_output_vars1031,26919 -'$write_output_vars'([V|VL]) :-$write_output_vars1031,26919 -call(G) :- '$execute'(G).call1065,27631 -call(G) :- '$execute'(G).call1065,27631 -call(G) :- '$execute'(G).call1065,27631 -call(G) :- '$execute'(G).call1065,27631 -call(G) :- '$execute'(G).call1065,27631 -incore(G) :- '$execute'(G).incore1074,27710 -incore(G) :- '$execute'(G).incore1074,27710 -incore(G) :- '$execute'(G).incore1074,27710 -incore(G) :- '$execute'(G).incore1074,27710 -incore(G) :- '$execute'(G).incore1074,27710 -'$meta_call'(G, M) :-$meta_call1079,27809 -'$meta_call'(G, M) :-$meta_call1079,27809 -'$meta_call'(G, M) :-$meta_call1079,27809 -'$user_call'(G, M) :-$user_call1083,27885 -'$user_call'(G, M) :-$user_call1083,27885 -'$user_call'(G, M) :-$user_call1083,27885 -','(X,Y) :-,1132,28621 -','(X,Y) :-,1132,28621 -','(X,Y) :-,1132,28621 -';'((X->A),Y) :- !,;1137,28751 -';'((X->A),Y) :- !,;1137,28751 -';'((X->A),Y) :- !,;1137,28751 -';'((X*->A),Y) :- !,;1146,28918 -';'((X*->A),Y) :- !,;1146,28918 -';'((X*->A),Y) :- !,;1146,28918 -';'(X,Y) :-;1157,29146 -';'(X,Y) :-;1157,29146 -';'(X,Y) :-;1157,29146 -'|'(X,Y) :-|1161,29273 -'|'(X,Y) :-|1161,29273 -'|'(X,Y) :-|1161,29273 -'->'(X,Y) :-->1165,29400 -'->'(X,Y) :-->1165,29400 -'->'(X,Y) :-->1165,29400 -'*->'(X,Y) :-*->1169,29531 -'*->'(X,Y) :-*->1169,29531 -'*->'(X,Y) :-*->1169,29531 -not(G) :- \+ '$execute'(G).not1174,29694 -not(G) :- \+ '$execute'(G).not1174,29694 -not(G) :- \+ '$execute'(G).not1174,29694 -not(G) :- \+ '$execute'(G).not1174,29694 -not(G) :- \+ '$execute'(G).not1174,29694 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP)./p,predicate,predicate definition1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by'(CP) :- '$$cut_by1176,29726 -'$meta_call'(G,_ISO,M) :-$meta_call1181,29785 -'$meta_call'(G,_ISO,M) :-$meta_call1181,29785 -'$meta_call'(G,_ISO,M) :-$meta_call1181,29785 -'$meta_call'(G, CP, G0, M) :-$meta_call1186,29890 -'$meta_call'(G, CP, G0, M) :-$meta_call1186,29890 -'$meta_call'(G, CP, G0, M) :-$meta_call1186,29890 -'$call'(G, CP, G0, _, M) :- /* iso version */$call1189,29945 -'$call'(G, CP, G0, _, M) :- /* iso version */$call1189,29945 -'$call'(G, CP, G0, _, M) :- /* iso version */$call1189,29945 -'$call'(M:_,_,G0,_) :- var(M), !,$call1194,30044 -'$call'(M:_,_,G0,_) :- var(M), !,$call1194,30044 -'$call'(M:_,_,G0,_) :- var(M), !,$call1194,30044 -'$call'(M:G,CP,G0,_) :- !,$call1196,30122 -'$call'(M:G,CP,G0,_) :- !,$call1196,30122 -'$call'(M:G,CP,G0,_) :- !,$call1196,30122 -'$call'((X,Y),CP,G0,M) :- !,$call1198,30177 -'$call'((X,Y),CP,G0,M) :- !,$call1198,30177 -'$call'((X,Y),CP,G0,M) :- !,$call1198,30177 -'$call'((X->Y),CP,G0,M) :- !,$call1201,30262 -'$call'((X->Y),CP,G0,M) :- !,$call1201,30262 -'$call'((X->Y),CP,G0,M) :- !,$call1201,30262 -'$call'((X*->Y),CP,G0,M) :- !,$call1207,30354 -'$call'((X*->Y),CP,G0,M) :- !,$call1207,30354 -'$call'((X*->Y),CP,G0,M) :- !,$call1207,30354 -'$call'((X->Y; Z),CP,G0,M) :- !,$call1210,30427 -'$call'((X->Y; Z),CP,G0,M) :- !,$call1210,30427 -'$call'((X->Y; Z),CP,G0,M) :- !,$call1210,30427 -'$call'((X*->Y; Z),CP,G0,M) :- !,$call1218,30561 -'$call'((X*->Y; Z),CP,G0,M) :- !,$call1218,30561 -'$call'((X*->Y; Z),CP,G0,M) :- !,$call1218,30561 -'$call'((A;B),CP,G0,M) :- !,$call1227,30733 -'$call'((A;B),CP,G0,M) :- !,$call1227,30733 -'$call'((A;B),CP,G0,M) :- !,$call1227,30733 -'$call'((X->Y| Z),CP,G0,M) :- !,$call1233,30827 -'$call'((X->Y| Z),CP,G0,M) :- !,$call1233,30827 -'$call'((X->Y| Z),CP,G0,M) :- !,$call1233,30827 -'$call'((X*->Y| Z),CP,G0,M) :- !,$call1241,30954 -'$call'((X*->Y| Z),CP,G0,M) :- !,$call1241,30954 -'$call'((X*->Y| Z),CP,G0,M) :- !,$call1241,30954 -'$call'((A|B),CP, G0,M) :- !,$call1250,31126 -'$call'((A|B),CP, G0,M) :- !,$call1250,31126 -'$call'((A|B),CP, G0,M) :- !,$call1250,31126 -'$call'(\+ X, _CP, G0, M) :- !,$call1256,31221 -'$call'(\+ X, _CP, G0, M) :- !,$call1256,31221 -'$call'(\+ X, _CP, G0, M) :- !,$call1256,31221 -'$call'(not(X), _CP, G0, M) :- !,$call1259,31312 -'$call'(not(X), _CP, G0, M) :- !,$call1259,31312 -'$call'(not(X), _CP, G0, M) :- !,$call1259,31312 -'$call'(!, CP, _,_) :- !,$call1262,31405 -'$call'(!, CP, _,_) :- !,$call1262,31405 -'$call'(!, CP, _,_) :- !,$call1262,31405 -'$call'([A|B], _, _, M) :- !,$call1264,31448 -'$call'([A|B], _, _, M) :- !,$call1264,31448 -'$call'([A|B], _, _, M) :- !,$call1264,31448 -'$call'(G, _CP, _G0, CurMod) :-$call1266,31499 -'$call'(G, _CP, _G0, CurMod) :-$call1266,31499 -'$call'(G, _CP, _G0, CurMod) :-$call1266,31499 -'$check_callable'(V,G) :- var(V), !,$check_callable1278,31747 -'$check_callable'(V,G) :- var(V), !,$check_callable1278,31747 -'$check_callable'(V,G) :- var(V), !,$check_callable1278,31747 -'$check_callable'(M:_G1,G) :- var(M), !,$check_callable1280,31821 -'$check_callable'(M:_G1,G) :- var(M), !,$check_callable1280,31821 -'$check_callable'(M:_G1,G) :- var(M), !,$check_callable1280,31821 -'$check_callable'(_:G1,G) :- !,$check_callable1282,31899 -'$check_callable'(_:G1,G) :- !,$check_callable1282,31899 -'$check_callable'(_:G1,G) :- !,$check_callable1282,31899 -'$check_callable'(A,G) :- number(A), !,$check_callable1284,31957 -'$check_callable'(A,G) :- number(A), !,$check_callable1284,31957 -'$check_callable'(A,G) :- number(A), !,$check_callable1284,31957 -'$check_callable'(R,G) :- db_reference(R), !,$check_callable1286,32037 -'$check_callable'(R,G) :- db_reference(R), !,$check_callable1286,32037 -'$check_callable'(R,G) :- db_reference(R), !,$check_callable1286,32037 -'$check_callable'(_,_).$check_callable1288,32123 -'$check_callable'(_,_)./p,predicate,predicate definition1288,32123 -'$check_callable'(_,_).$check_callable1288,32123 -bootstrap(F) :-bootstrap1291,32149 -bootstrap(F) :-bootstrap1291,32149 -bootstrap(F) :-bootstrap1291,32149 -'$loop'(Stream,exo) :-$loop1325,32972 -'$loop'(Stream,exo) :-$loop1325,32972 -'$loop'(Stream,exo) :-$loop1325,32972 -'$loop'(Stream,db) :-$loop1334,33258 -'$loop'(Stream,db) :-$loop1334,33258 -'$loop'(Stream,db) :-$loop1334,33258 -'$loop'(Stream,Status) :-$loop1343,33542 -'$loop'(Stream,Status) :-$loop1343,33542 -'$loop'(Stream,Status) :-$loop1343,33542 -'$boot_loop'(Stream,Where) :-$boot_loop1352,33795 -'$boot_loop'(Stream,Where) :-$boot_loop1352,33795 -'$boot_loop'(Stream,Where) :-$boot_loop1352,33795 -'$boot_dcg'( H, B, Where ) :-$boot_dcg1383,34590 -'$boot_dcg'( H, B, Where ) :-$boot_dcg1383,34590 -'$boot_dcg'( H, B, Where ) :-$boot_dcg1383,34590 -'$boot_dcg'( H, B, _ ) :-$boot_dcg1387,34720 -'$boot_dcg'( H, B, _ ) :-$boot_dcg1387,34720 -'$boot_dcg'( H, B, _ ) :-$boot_dcg1387,34720 -'$boot_clause'( Command, Where ) :-$boot_clause1390,34800 -'$boot_clause'( Command, Where ) :-$boot_clause1390,34800 -'$boot_clause'( Command, Where ) :-$boot_clause1390,34800 -'$boot_clause'( Command, _ ) :-$boot_clause1393,34885 -'$boot_clause'( Command, _ ) :-$boot_clause1393,34885 -'$boot_clause'( Command, _ ) :-$boot_clause1393,34885 -'$enter_command'(Stream, Mod, Status) :-$enter_command1398,34970 -'$enter_command'(Stream, Mod, Status) :-$enter_command1398,34970 -'$enter_command'(Stream, Mod, Status) :-$enter_command1398,34970 -'$head_and_body'((H:-B),H,B) :- !.$head_and_body1424,35698 -'$head_and_body'((H:-B),H,B) :- !.$head_and_body1424,35698 -'$head_and_body'((H:-B),H,B) :- !.$head_and_body1424,35698 -'$head_and_body'(H,H,true).$head_and_body1425,35733 -'$head_and_body'(H,H,true)./p,predicate,predicate definition1425,35733 -'$head_and_body'(H,H,true).$head_and_body1425,35733 -'$check_head_and_body'(C,M,H,B,P) :-$check_head_and_body1430,35827 -'$check_head_and_body'(C,M,H,B,P) :-$check_head_and_body1430,35827 -'$check_head_and_body'(C,M,H,B,P) :-$check_head_and_body1430,35827 -'$check_head_and_body'(MH, M, H, true, P) :-$check_head_and_body1437,36010 -'$check_head_and_body'(MH, M, H, true, P) :-$check_head_and_body1437,36010 -'$check_head_and_body'(MH, M, H, true, P) :-$check_head_and_body1437,36010 -'$precompile_term'(Term, ExpandedUser, Expanded) :-$precompile_term1445,36296 -'$precompile_term'(Term, ExpandedUser, Expanded) :-$precompile_term1445,36296 -'$precompile_term'(Term, ExpandedUser, Expanded) :-$precompile_term1445,36296 -'$precompile_term'(Term, Term, Term).$precompile_term1461,36702 -'$precompile_term'(Term, Term, Term)./p,predicate,predicate definition1461,36702 -'$precompile_term'(Term, Term, Term).$precompile_term1461,36702 -'$expand_clause'(InputCl, C1, CO) :-$expand_clause1463,36741 -'$expand_clause'(InputCl, C1, CO) :-$expand_clause1463,36741 -'$expand_clause'(InputCl, C1, CO) :-$expand_clause1463,36741 -'$expand_clause'(Cl, Cl, Cl).$expand_clause1468,36897 -'$expand_clause'(Cl, Cl, Cl)./p,predicate,predicate definition1468,36897 -'$expand_clause'(Cl, Cl, Cl).$expand_clause1468,36897 -expand_term(Term,Expanded) :-expand_term1481,37478 -expand_term(Term,Expanded) :-expand_term1481,37478 -expand_term(Term,Expanded) :-expand_term1481,37478 -'$expand_term_grammar'((A-->B), C) :-$expand_term_grammar1493,37639 -'$expand_term_grammar'((A-->B), C) :-$expand_term_grammar1493,37639 -'$expand_term_grammar'((A-->B), C) :-$expand_term_grammar1493,37639 -'$expand_term_grammar'(A, A).$expand_term_grammar1495,37718 -'$expand_term_grammar'(A, A)./p,predicate,predicate definition1495,37718 -'$expand_term_grammar'(A, A).$expand_term_grammar1495,37718 -'$expand_array_accesses_in_term'(Expanded0,ExpandedF) :-$expand_array_accesses_in_term1500,37776 -'$expand_array_accesses_in_term'(Expanded0,ExpandedF) :-$expand_array_accesses_in_term1500,37776 -'$expand_array_accesses_in_term'(Expanded0,ExpandedF) :-$expand_array_accesses_in_term1500,37776 -'$expand_array_accesses_in_term'(Expanded,Expanded).$expand_array_accesses_in_term1503,37906 -'$expand_array_accesses_in_term'(Expanded,Expanded)./p,predicate,predicate definition1503,37906 -'$expand_array_accesses_in_term'(Expanded,Expanded).$expand_array_accesses_in_term1503,37906 -catch(G, C, A) :-catch1527,38637 -catch(G, C, A) :-catch1527,38637 -catch(G, C, A) :-catch1527,38637 -'$system_catch'(G, M, C, A) :-$system_catch1539,38915 -'$system_catch'(G, M, C, A) :-$system_catch1539,38915 -'$system_catch'(G, M, C, A) :-$system_catch1539,38915 -'$catch'(MG,_,_) :-$catch1543,38990 -'$catch'(MG,_,_) :-$catch1543,38990 -'$catch'(MG,_,_) :-$catch1543,38990 -'$catch'(_,C,A) :-$catch1555,39137 -'$catch'(_,C,A) :-$catch1555,39137 -'$catch'(_,C,A) :-$catch1555,39137 -'$run_catch'(G,E) :-$run_catch1560,39228 -'$run_catch'(G,E) :-$run_catch1560,39228 -'$run_catch'(G,E) :-$run_catch1560,39228 -'$run_catch'(abort,_) :-$run_catch1564,39290 -'$run_catch'(abort,_) :-$run_catch1564,39290 -'$run_catch'(abort,_) :-$run_catch1564,39290 -'$run_catch'('$Error'(E),E) :-$run_catch1566,39330 -'$run_catch'('$Error'(E),E) :-$run_catch1566,39330 -'$run_catch'('$Error'(E),E) :-$run_catch'('$Error1566,39330 -'$run_catch'('$LoopError'(E, Where),E) :-$run_catch1569,39404 -'$run_catch'('$LoopError'(E, Where),E) :-$run_catch1569,39404 -'$run_catch'('$LoopError'(E, Where),E) :-$run_catch'('$LoopError1569,39404 -'$run_catch'('$TraceError'(E, GoalNumber, G, Module, CalledFromDebugger),E) :-$run_catch1572,39485 -'$run_catch'('$TraceError'(E, GoalNumber, G, Module, CalledFromDebugger),E) :-$run_catch1572,39485 -'$run_catch'('$TraceError'(E, GoalNumber, G, Module, CalledFromDebugger),E) :-$run_catch'('$TraceError1572,39485 -'$run_catch'(_Signal,E) :-$run_catch1575,39640 -'$run_catch'(_Signal,E) :-$run_catch1575,39640 -'$run_catch'(_Signal,E) :-$run_catch1575,39640 -'$run_catch'(E, _Signal) :-$run_catch1579,39736 -'$run_catch'(E, _Signal) :-$run_catch1579,39736 -'$run_catch'(E, _Signal) :-$run_catch1579,39736 -throw(Ball) :-throw1593,40051 -throw(Ball) :-throw1593,40051 -throw(Ball) :-throw1593,40051 -log_event( String, Args ) :-log_event1610,40424 -log_event( String, Args ) :-log_event1610,40424 -log_event( String, Args ) :-log_event1610,40424 - -packages/python/swig/yap4py/prolog/pl/bootlists.yap,1499 -lists:memberchk(X,[X|_]) :- !.memberchk27,669 -lists:memberchk(X,[X|_]) :- !.memberchk27,669 -lists:memberchk(X,[_|L]) :-memberchk28,700 -lists:memberchk(X,[_|L]) :-memberchk28,700 -lists:member(X,[X|_]).member44,1177 -lists:member(X,[_|L]) :-member45,1200 -lists:member(X,[_|L]) :-member45,1200 -lists:identical_member(X,[Y|M]) :-identical_member53,1435 -lists:identical_member(X,[Y|M]) :-identical_member53,1435 -lists:append([], L, L).append69,1776 -lists:append([H|T], L, [H|R]) :-append70,1800 -lists:append([H|T], L, [H|R]) :-append70,1800 -lists:delete([], _, []).delete89,2404 -lists:delete([Head|List], Elem, Residue) :-delete90,2429 -lists:delete([Head|List], Elem, Residue) :-delete90,2429 -lists:delete([Head|List], Elem, [Head|Residue]) :-delete93,2535 -lists:delete([Head|List], Elem, [Head|Residue]) :-delete93,2535 -prolog:length(L, M) :-length111,2899 -prolog:length(L, M) :-length111,2899 -'$$_length'(R, M, M0) :-$$_length120,3098 -'$$_length'(R, M, M0) :-$$_length120,3098 -'$$_length'(R, M, M0) :-$$_length120,3098 -'$$_length1'([], M, M).$$_length1127,3246 -'$$_length1'([], M, M)./p,predicate,predicate definition127,3246 -'$$_length1'([], M, M).$$_length1127,3246 -'$$_length1'([_|L], O, N) :-$$_length1128,3270 -'$$_length1'([_|L], O, N) :-$$_length1128,3270 -'$$_length1'([_|L], O, N) :-$$_length1128,3270 -'$$_length2'(NL, O, N) :-$$_length2135,3391 -'$$_length2'(NL, O, N) :-$$_length2135,3391 -'$$_length2'(NL, O, N) :-$$_length2135,3391 - -packages/python/swig/yap4py/prolog/pl/callcount.yap,1158 -call_count_data(Calls, Retries, Both) :-call_count_data80,2626 -call_count_data(Calls, Retries, Both) :-call_count_data80,2626 -call_count_data(Calls, Retries, Both) :-call_count_data80,2626 -call_count_reset :-call_count_reset89,2800 -call_count(Calls, Retries, Both) :-call_count136,3881 -call_count(Calls, Retries, Both) :-call_count136,3881 -call_count(Calls, Retries, Both) :-call_count136,3881 -'$check_if_call_count_on'(Calls, 1) :- integer(Calls), !.$check_if_call_count_on142,4122 -'$check_if_call_count_on'(Calls, 1) :- integer(Calls), !.$check_if_call_count_on142,4122 -'$check_if_call_count_on'(Calls, 1) :- integer(Calls), !.$check_if_call_count_on142,4122 -'$check_if_call_count_on'(Calls, 0) :- var(Calls), !.$check_if_call_count_on143,4180 -'$check_if_call_count_on'(Calls, 0) :- var(Calls), !.$check_if_call_count_on143,4180 -'$check_if_call_count_on'(Calls, 0) :- var(Calls), !.$check_if_call_count_on143,4180 -'$check_if_call_count_on'(Calls, A) :-$check_if_call_count_on144,4234 -'$check_if_call_count_on'(Calls, A) :-$check_if_call_count_on144,4234 -'$check_if_call_count_on'(Calls, A) :-$check_if_call_count_on144,4234 - -packages/python/swig/yap4py/prolog/pl/checker.yap,5546 -style_check(V) :- var(V), !, fail.style_check77,2076 -style_check(V) :- var(V), !, fail.style_check77,2076 -style_check(V) :- var(V), !, fail.style_check77,2076 -style_check(V) :-style_check78,2111 -style_check(V) :-style_check78,2111 -style_check(V) :-style_check78,2111 -style_check(V) :-style_check84,2244 -style_check(V) :-style_check84,2244 -style_check(V) :-style_check84,2244 -style_check(all) :-style_check92,2378 -style_check(all) :-style_check92,2378 -style_check(all) :-style_check92,2378 -style_check(+X) :-style_check94,2454 -style_check(+X) :-style_check94,2454 -style_check(+X) :-style_check94,2454 -style_check(single_var) :-style_check96,2490 -style_check(single_var) :-style_check96,2490 -style_check(single_var) :-style_check96,2490 -style_check(singleton) :-style_check98,2544 -style_check(singleton) :-style_check98,2544 -style_check(singleton) :-style_check98,2544 -style_check(-single_var) :-style_check100,2610 -style_check(-single_var) :-style_check100,2610 -style_check(-single_var) :-style_check100,2610 -style_check(-singleton) :-style_check102,2679 -style_check(-singleton) :-style_check102,2679 -style_check(-singleton) :-style_check102,2679 -style_check(discontiguous) :-style_check104,2747 -style_check(discontiguous) :-style_check104,2747 -style_check(discontiguous) :-style_check104,2747 -style_check(-discontiguous) :-style_check106,2820 -style_check(-discontiguous) :-style_check106,2820 -style_check(-discontiguous) :-style_check106,2820 -style_check(multiple) :-style_check108,2895 -style_check(multiple) :-style_check108,2895 -style_check(multiple) :-style_check108,2895 -style_check(-multiple) :-style_check110,2958 -style_check(-multiple) :-style_check110,2958 -style_check(-multiple) :-style_check110,2958 -style_check(no_effect).style_check112,3023 -style_check(no_effect).style_check112,3023 -style_check(-no_effect).style_check114,3073 -style_check(-no_effect).style_check114,3073 -style_check(var_branches).style_check115,3098 -style_check(var_branches).style_check115,3098 -style_check(+var_branches) :-style_check116,3125 -style_check(+var_branches) :-style_check116,3125 -style_check(+var_branches) :-style_check116,3125 -style_check(-var_branches) :-style_check118,3195 -style_check(-var_branches) :-style_check118,3195 -style_check(-var_branches) :-style_check118,3195 -style_check(atom).style_check120,3266 -style_check(atom).style_check120,3266 -style_check(+atom) :-style_check121,3285 -style_check(+atom) :-style_check121,3285 -style_check(+atom) :-style_check121,3285 -style_check(-atom) :-style_check123,3339 -style_check(-atom) :-style_check123,3339 -style_check(-atom) :-style_check123,3339 -style_check(charset) :-style_check125,3394 -style_check(charset) :-style_check125,3394 -style_check(charset) :-style_check125,3394 -style_check(+charset) :-style_check127,3453 -style_check(+charset) :-style_check127,3453 -style_check(+charset) :-style_check127,3453 -style_check(-charset) :-style_check129,3513 -style_check(-charset) :-style_check129,3513 -style_check(-charset) :-style_check129,3513 -style_check('?'(Info) ) :-style_check131,3574 -style_check('?'(Info) ) :-style_check131,3574 -style_check('?'(Info) ) :-style_check131,3574 -style_check([]).style_check134,3710 -style_check([]).style_check134,3710 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -no_style_check(V) :- var(V), !, fail.no_style_check146,4030 -no_style_check(V) :- var(V), !, fail.no_style_check146,4030 -no_style_check(V) :- var(V), !, fail.no_style_check146,4030 -no_style_check(all) :-no_style_check147,4068 -no_style_check(all) :-no_style_check147,4068 -no_style_check(all) :-no_style_check147,4068 -no_style_check(-single_var) :-no_style_check149,4155 -no_style_check(-single_var) :-no_style_check149,4155 -no_style_check(-single_var) :-no_style_check149,4155 -no_style_check(-singleton) :-no_style_check151,4223 -no_style_check(-singleton) :-no_style_check151,4223 -no_style_check(-singleton) :-no_style_check151,4223 -no_style_check(-discontiguous) :-no_style_check153,4290 -no_style_check(-discontiguous) :-no_style_check153,4290 -no_style_check(-discontiguous) :-no_style_check153,4290 -no_style_check(-multiple) :-no_style_check155,4365 -no_style_check(-multiple) :-no_style_check155,4365 -no_style_check(-multiple) :-no_style_check155,4365 -no_style_check([]).no_style_check157,4431 -no_style_check([]).no_style_check157,4431 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 - -packages/python/swig/yap4py/prolog/pl/consult.yap,36362 -load_files(Files,Opts) :-load_files210,6023 -load_files(Files,Opts) :-load_files210,6023 -load_files(Files,Opts) :-load_files210,6023 -'$lf_option'(autoload, 1, false).$lf_option213,6101 -'$lf_option'(autoload, 1, false)./p,predicate,predicate definition213,6101 -'$lf_option'(autoload, 1, false).$lf_option213,6101 -'$lf_option'(derived_from, 2, false).$lf_option214,6135 -'$lf_option'(derived_from, 2, false)./p,predicate,predicate definition214,6135 -'$lf_option'(derived_from, 2, false).$lf_option214,6135 -'$lf_option'(encoding, 3, default).$lf_option215,6173 -'$lf_option'(encoding, 3, default)./p,predicate,predicate definition215,6173 -'$lf_option'(encoding, 3, default).$lf_option215,6173 -'$lf_option'(expand, 4, false).$lf_option216,6209 -'$lf_option'(expand, 4, false)./p,predicate,predicate definition216,6209 -'$lf_option'(expand, 4, false).$lf_option216,6209 -'$lf_option'(if, 5, true).$lf_option217,6241 -'$lf_option'(if, 5, true)./p,predicate,predicate definition217,6241 -'$lf_option'(if, 5, true).$lf_option217,6241 -'$lf_option'(imports, 6, all).$lf_option218,6268 -'$lf_option'(imports, 6, all)./p,predicate,predicate definition218,6268 -'$lf_option'(imports, 6, all).$lf_option218,6268 -'$lf_option'(qcompile, 7, Current) :-$lf_option219,6299 -'$lf_option'(qcompile, 7, Current) :-$lf_option219,6299 -'$lf_option'(qcompile, 7, Current) :-$lf_option219,6299 -'$lf_option'(silent, 8, _).$lf_option221,6394 -'$lf_option'(silent, 8, _)./p,predicate,predicate definition221,6394 -'$lf_option'(silent, 8, _).$lf_option221,6394 -'$lf_option'(skip_unix_header, 9, true).$lf_option222,6422 -'$lf_option'(skip_unix_header, 9, true)./p,predicate,predicate definition222,6422 -'$lf_option'(skip_unix_header, 9, true).$lf_option222,6422 -'$lf_option'(compilation_mode, 10, Flag) :-$lf_option223,6463 -'$lf_option'(compilation_mode, 10, Flag) :-$lf_option223,6463 -'$lf_option'(compilation_mode, 10, Flag) :-$lf_option223,6463 -'$lf_option'(consult, 11, reconsult).$lf_option226,6599 -'$lf_option'(consult, 11, reconsult)./p,predicate,predicate definition226,6599 -'$lf_option'(consult, 11, reconsult).$lf_option226,6599 -'$lf_option'(stream, 12, _).$lf_option227,6637 -'$lf_option'(stream, 12, _)./p,predicate,predicate definition227,6637 -'$lf_option'(stream, 12, _).$lf_option227,6637 -'$lf_option'(register, 13, true).$lf_option228,6666 -'$lf_option'(register, 13, true)./p,predicate,predicate definition228,6666 -'$lf_option'(register, 13, true).$lf_option228,6666 -'$lf_option'('$files', 14, _).$lf_option229,6700 -'$lf_option'('$files', 14, _)./p,predicate,predicate definition229,6700 -'$lf_option'('$files', 14, _).$lf_option229,6700 -'$lf_option'('$call', 15, _).$lf_option230,6731 -'$lf_option'('$call', 15, _)./p,predicate,predicate definition230,6731 -'$lf_option'('$call', 15, _).$lf_option230,6731 -'$lf_option'('$use_module', 16, _).$lf_option231,6761 -'$lf_option'('$use_module', 16, _)./p,predicate,predicate definition231,6761 -'$lf_option'('$use_module', 16, _).$lf_option231,6761 -'$lf_option'('$consulted_at', 17, _).$lf_option232,6797 -'$lf_option'('$consulted_at', 17, _)./p,predicate,predicate definition232,6797 -'$lf_option'('$consulted_at', 17, _).$lf_option232,6797 -'$lf_option'('$options', 18, _).$lf_option233,6835 -'$lf_option'('$options', 18, _)./p,predicate,predicate definition233,6835 -'$lf_option'('$options', 18, _).$lf_option233,6835 -'$lf_option'('$location', 19, _).$lf_option234,6868 -'$lf_option'('$location', 19, _)./p,predicate,predicate definition234,6868 -'$lf_option'('$location', 19, _).$lf_option234,6868 -'$lf_option'(dialect, 20, yap).$lf_option235,6902 -'$lf_option'(dialect, 20, yap)./p,predicate,predicate definition235,6902 -'$lf_option'(dialect, 20, yap).$lf_option235,6902 -'$lf_option'(format, 21, source).$lf_option236,6934 -'$lf_option'(format, 21, source)./p,predicate,predicate definition236,6934 -'$lf_option'(format, 21, source).$lf_option236,6934 -'$lf_option'(redefine_module, 22, Warn) :-$lf_option237,6968 -'$lf_option'(redefine_module, 22, Warn) :-$lf_option237,6968 -'$lf_option'(redefine_module, 22, Warn) :-$lf_option237,6968 -'$lf_option'(reexport, 23, false).$lf_option239,7105 -'$lf_option'(reexport, 23, false)./p,predicate,predicate definition239,7105 -'$lf_option'(reexport, 23, false).$lf_option239,7105 -'$lf_option'(sandboxed, 24, false).$lf_option240,7140 -'$lf_option'(sandboxed, 24, false)./p,predicate,predicate definition240,7140 -'$lf_option'(sandboxed, 24, false).$lf_option240,7140 -'$lf_option'(scope_settings, 25, false).$lf_option241,7176 -'$lf_option'(scope_settings, 25, false)./p,predicate,predicate definition241,7176 -'$lf_option'(scope_settings, 25, false).$lf_option241,7176 -'$lf_option'(modified, 26, _).$lf_option242,7217 -'$lf_option'(modified, 26, _)./p,predicate,predicate definition242,7217 -'$lf_option'(modified, 26, _).$lf_option242,7217 -'$lf_option'('$context_module', 27, _).$lf_option243,7248 -'$lf_option'('$context_module', 27, _)./p,predicate,predicate definition243,7248 -'$lf_option'('$context_module', 27, _).$lf_option243,7248 -'$lf_option'('$parent_topts', 28, _).$lf_option244,7288 -'$lf_option'('$parent_topts', 28, _)./p,predicate,predicate definition244,7288 -'$lf_option'('$parent_topts', 28, _).$lf_option244,7288 -'$lf_option'(must_be_module, 29, false).$lf_option245,7326 -'$lf_option'(must_be_module, 29, false)./p,predicate,predicate definition245,7326 -'$lf_option'(must_be_module, 29, false).$lf_option245,7326 -'$lf_option'('$source_pos', 30, _).$lf_option246,7367 -'$lf_option'('$source_pos', 30, _)./p,predicate,predicate definition246,7367 -'$lf_option'('$source_pos', 30, _).$lf_option246,7367 -'$lf_option'(initialization, 31, Ref) :-$lf_option247,7403 -'$lf_option'(initialization, 31, Ref) :-$lf_option247,7403 -'$lf_option'(initialization, 31, Ref) :-$lf_option247,7403 -'$lf_option'(last_opt, 31).$lf_option250,7469 -'$lf_option'(last_opt, 31)./p,predicate,predicate definition250,7469 -'$lf_option'(last_opt, 31).$lf_option250,7469 -'$lf_opt'( Op, TOpts, Val) :-$lf_opt252,7498 -'$lf_opt'( Op, TOpts, Val) :-$lf_opt252,7498 -'$lf_opt'( Op, TOpts, Val) :-$lf_opt252,7498 -'$set_lf_opt'( Op, TOpts, Val) :-$set_lf_opt256,7579 -'$set_lf_opt'( Op, TOpts, Val) :-$set_lf_opt256,7579 -'$set_lf_opt'( Op, TOpts, Val) :-$set_lf_opt256,7579 -'$load_files'(Files, Opts, Call) :-$load_files260,7667 -'$load_files'(Files, Opts, Call) :-$load_files260,7667 -'$load_files'(Files, Opts, Call) :-$load_files260,7667 -'$check_files'(Files, Call) :-$check_files292,8731 -'$check_files'(Files, Call) :-$check_files292,8731 -'$check_files'(Files, Call) :-$check_files292,8731 -'$check_files'(M:Files, Call) :- !,$check_files295,8819 -'$check_files'(M:Files, Call) :- !,$check_files295,8819 -'$check_files'(M:Files, Call) :- !,$check_files295,8819 -'$check_files'(Files, Call) :-$check_files306,9001 -'$check_files'(Files, Call) :-$check_files306,9001 -'$check_files'(Files, Call) :-$check_files306,9001 -'$process_lf_opts'(V, _, _, Call) :-$process_lf_opts314,9108 -'$process_lf_opts'(V, _, _, Call) :-$process_lf_opts314,9108 -'$process_lf_opts'(V, _, _, Call) :-$process_lf_opts314,9108 -'$process_lf_opts'([], _, _, _).$process_lf_opts317,9197 -'$process_lf_opts'([], _, _, _)./p,predicate,predicate definition317,9197 -'$process_lf_opts'([], _, _, _).$process_lf_opts317,9197 -'$process_lf_opts'([Opt|Opts],TOpt,Files,Call) :-$process_lf_opts318,9230 -'$process_lf_opts'([Opt|Opts],TOpt,Files,Call) :-$process_lf_opts318,9230 -'$process_lf_opts'([Opt|Opts],TOpt,Files,Call) :-$process_lf_opts318,9230 -'$process_lf_opts'([Opt|_],_,_,Call) :-$process_lf_opts324,9424 -'$process_lf_opts'([Opt|_],_,_,Call) :-$process_lf_opts324,9424 -'$process_lf_opts'([Opt|_],_,_,Call) :-$process_lf_opts324,9424 -'$process_lf_opt'(autoload, Val, Call) :-$process_lf_opt327,9524 -'$process_lf_opt'(autoload, Val, Call) :-$process_lf_opt327,9524 -'$process_lf_opt'(autoload, Val, Call) :-$process_lf_opt327,9524 -'$process_lf_opt'(derived_from, File, Call) :-$process_lf_opt331,9694 -'$process_lf_opt'(derived_from, File, Call) :-$process_lf_opt331,9694 -'$process_lf_opt'(derived_from, File, Call) :-$process_lf_opt331,9694 -'$process_lf_opt'(encoding, Encoding, _Call) :-$process_lf_opt333,9809 -'$process_lf_opt'(encoding, Encoding, _Call) :-$process_lf_opt333,9809 -'$process_lf_opt'(encoding, Encoding, _Call) :-$process_lf_opt333,9809 -'$process_lf_opt'(expand, Val, Call) :-$process_lf_opt335,9874 -'$process_lf_opt'(expand, Val, Call) :-$process_lf_opt335,9874 -'$process_lf_opt'(expand, Val, Call) :-$process_lf_opt335,9874 -'$process_lf_opt'(if, If, Call) :-$process_lf_opt339,10095 -'$process_lf_opt'(if, If, Call) :-$process_lf_opt339,10095 -'$process_lf_opt'(if, If, Call) :-$process_lf_opt339,10095 -'$process_lf_opt'(imports, Val, Call) :-$process_lf_opt344,10279 -'$process_lf_opt'(imports, Val, Call) :-$process_lf_opt344,10279 -'$process_lf_opt'(imports, Val, Call) :-$process_lf_opt344,10279 -'$process_lf_opt'(qcompile, Val,Call) :-$process_lf_opt349,10534 -'$process_lf_opt'(qcompile, Val,Call) :-$process_lf_opt349,10534 -'$process_lf_opt'(qcompile, Val,Call) :-$process_lf_opt349,10534 -'$process_lf_opt'(silent, Val, Call) :-$process_lf_opt355,10807 -'$process_lf_opt'(silent, Val, Call) :-$process_lf_opt355,10807 -'$process_lf_opt'(silent, Val, Call) :-$process_lf_opt355,10807 -'$process_lf_opt'(skip_unix_header, Val, Call) :-$process_lf_opt359,11023 -'$process_lf_opt'(skip_unix_header, Val, Call) :-$process_lf_opt359,11023 -'$process_lf_opt'(skip_unix_header, Val, Call) :-$process_lf_opt359,11023 -'$process_lf_opt'(compilation_mode, Val, Call) :-$process_lf_opt363,11209 -'$process_lf_opt'(compilation_mode, Val, Call) :-$process_lf_opt363,11209 -'$process_lf_opt'(compilation_mode, Val, Call) :-$process_lf_opt363,11209 -'$process_lf_opt'(consult, Val , Call) :-$process_lf_opt368,11438 -'$process_lf_opt'(consult, Val , Call) :-$process_lf_opt368,11438 -'$process_lf_opt'(consult, Val , Call) :-$process_lf_opt368,11438 -'$process_lf_opt'(reexport, Val , Call) :-$process_lf_opt374,11672 -'$process_lf_opt'(reexport, Val , Call) :-$process_lf_opt374,11672 -'$process_lf_opt'(reexport, Val , Call) :-$process_lf_opt374,11672 -'$process_lf_opt'(must_be_module, Val , Call) :-$process_lf_opt378,11841 -'$process_lf_opt'(must_be_module, Val , Call) :-$process_lf_opt378,11841 -'$process_lf_opt'(must_be_module, Val , Call) :-$process_lf_opt378,11841 -'$process_lf_opt'(stream, Val, Call) :-$process_lf_opt382,12024 -'$process_lf_opt'(stream, Val, Call) :-$process_lf_opt382,12024 -'$process_lf_opt'(stream, Val, Call) :-$process_lf_opt382,12024 -'$process_lf_opt'(register, Val, Call) :-$process_lf_opt385,12150 -'$process_lf_opt'(register, Val, Call) :-$process_lf_opt385,12150 -'$process_lf_opt'(register, Val, Call) :-$process_lf_opt385,12150 -'$process_lf_opt'('$context_module', Mod, Call) :-$process_lf_opt389,12320 -'$process_lf_opt'('$context_module', Mod, Call) :-$process_lf_opt389,12320 -'$process_lf_opt'('$context_module', Mod, Call) :-$process_lf_opt389,12320 -'$lf_default_opts'(I, LastOpt, _TOpts) :- I > LastOpt, !.$lf_default_opts393,12439 -'$lf_default_opts'(I, LastOpt, _TOpts) :- I > LastOpt, !.$lf_default_opts393,12439 -'$lf_default_opts'(I, LastOpt, _TOpts) :- I > LastOpt, !.$lf_default_opts393,12439 -'$lf_default_opts'(I, LastOpt, TOpts) :-$lf_default_opts394,12497 -'$lf_default_opts'(I, LastOpt, TOpts) :-$lf_default_opts394,12497 -'$lf_default_opts'(I, LastOpt, TOpts) :-$lf_default_opts394,12497 -'$check_use_module'(use_module(_), use_module(_)) :- !.$check_use_module404,12669 -'$check_use_module'(use_module(_), use_module(_)) :- !.$check_use_module404,12669 -'$check_use_module'(use_module(_), use_module(_)) :- !.$check_use_module404,12669 -'$check_use_module'(use_module(_,_), use_module(_)) :- !.$check_use_module405,12725 -'$check_use_module'(use_module(_,_), use_module(_)) :- !.$check_use_module405,12725 -'$check_use_module'(use_module(_,_), use_module(_)) :- !.$check_use_module405,12725 -'$check_use_module'(use_module(M,_,_), use_module(M)) :- !.$check_use_module406,12783 -'$check_use_module'(use_module(M,_,_), use_module(M)) :- !.$check_use_module406,12783 -'$check_use_module'(use_module(M,_,_), use_module(M)) :- !.$check_use_module406,12783 -'$check_use_module'(_, load_files) :- !.$check_use_module407,12843 -'$check_use_module'(_, load_files) :- !.$check_use_module407,12843 -'$check_use_module'(_, load_files) :- !.$check_use_module407,12843 -'$lf'(V,_,Call, _ ) :- var(V), !,$lf409,12885 -'$lf'(V,_,Call, _ ) :- var(V), !,$lf409,12885 -'$lf'(V,_,Call, _ ) :- var(V), !,$lf409,12885 -'$lf'([], _, _, _) :- !.$lf411,12959 -'$lf'([], _, _, _) :- !.$lf411,12959 -'$lf'([], _, _, _) :- !.$lf411,12959 -'$lf'(M:X, _, Call, TOpts) :- !,$lf412,12984 -'$lf'(M:X, _, Call, TOpts) :- !,$lf412,12984 -'$lf'(M:X, _, Call, TOpts) :- !,$lf412,12984 -'$lf'([F|Fs], Mod, Call, TOpts) :- !,$lf420,13111 -'$lf'([F|Fs], Mod, Call, TOpts) :- !,$lf420,13111 -'$lf'([F|Fs], Mod, Call, TOpts) :- !,$lf420,13111 -'$lf'(user, Mod, _, TOpts) :- !,$lf426,13266 -'$lf'(user, Mod, _, TOpts) :- !,$lf426,13266 -'$lf'(user, Mod, _, TOpts) :- !,$lf426,13266 -'$lf'(user_input, Mod, _, TOpts) :- !,$lf429,13396 -'$lf'(user_input, Mod, _, TOpts) :- !,$lf429,13396 -'$lf'(user_input, Mod, _, TOpts) :- !,$lf429,13396 -'$lf'(File, Mod, Call, TOpts) :-$lf432,13538 -'$lf'(File, Mod, Call, TOpts) :-$lf432,13538 -'$lf'(File, Mod, Call, TOpts) :-$lf432,13538 -'$start_lf'(not_loaded, Mod, _Stream, TOpts, UserFile, File, Reexport,Imports) :-$start_lf452,14249 -'$start_lf'(not_loaded, Mod, _Stream, TOpts, UserFile, File, Reexport,Imports) :-$start_lf452,14249 -'$start_lf'(not_loaded, Mod, _Stream, TOpts, UserFile, File, Reexport,Imports) :-$start_lf452,14249 -'$start_lf'(changed, Mod, _Stream, TOpts, UserFile, File, Reexport, Imports) :-$start_lf458,14600 -'$start_lf'(changed, Mod, _Stream, TOpts, UserFile, File, Reexport, Imports) :-$start_lf458,14600 -'$start_lf'(changed, Mod, _Stream, TOpts, UserFile, File, Reexport, Imports) :-$start_lf458,14600 -'$start_lf'(_, Mod, PlStream, TOpts, _UserFile, File, Reexport, ImportList) :-$start_lf464,14942 -'$start_lf'(_, Mod, PlStream, TOpts, _UserFile, File, Reexport, ImportList) :-$start_lf464,14942 -'$start_lf'(_, Mod, PlStream, TOpts, _UserFile, File, Reexport, ImportList) :-$start_lf464,14942 -'$start_lf'(_, Mod, Stream, TOpts, UserFile, File, _Reexport, _Imports) :-$start_lf497,16108 -'$start_lf'(_, Mod, Stream, TOpts, UserFile, File, _Reexport, _Imports) :-$start_lf497,16108 -'$start_lf'(_, Mod, Stream, TOpts, UserFile, File, _Reexport, _Imports) :-$start_lf497,16108 -ensure_loaded(Fs) :-ensure_loaded516,16760 -ensure_loaded(Fs) :-ensure_loaded516,16760 -ensure_loaded(Fs) :-ensure_loaded516,16760 -compile(Fs) :-compile519,16838 -compile(Fs) :-compile519,16838 -compile(Fs) :-compile519,16838 -consult(V) :-consult542,17536 -consult(V) :-consult542,17536 -consult(V) :-consult542,17536 -consult(M0:Fs) :- !,consult545,17608 -consult(M0:Fs) :- !,consult545,17608 -consult(M0:Fs) :- !,consult545,17608 -consult(Fs) :-consult547,17650 -consult(Fs) :-consult547,17650 -consult(Fs) :-consult547,17650 -'$consult'(Fs,Module) :-$consult551,17711 -'$consult'(Fs,Module) :-$consult551,17711 -'$consult'(Fs,Module) :-$consult551,17711 -'$consult'(Fs, Module) :-$consult555,17855 -'$consult'(Fs, Module) :-$consult555,17855 -'$consult'(Fs, Module) :-$consult555,17855 -reconsult(Fs) :-reconsult588,18712 -reconsult(Fs) :-reconsult588,18712 -reconsult(Fs) :-reconsult588,18712 -exo_files(Fs) :-exo_files608,19403 -exo_files(Fs) :-exo_files608,19403 -exo_files(Fs) :-exo_files608,19403 -db_files(Fs) :-db_files639,20727 -db_files(Fs) :-db_files639,20727 -db_files(Fs) :-db_files639,20727 -'$csult'(Fs, M) :-$csult643,20811 -'$csult'(Fs, M) :-$csult643,20811 -'$csult'(Fs, M) :-$csult643,20811 -'$csult'(Fs, M) :-$csult646,20894 -'$csult'(Fs, M) :-$csult646,20894 -'$csult'(Fs, M) :-$csult646,20894 -'$extract_minus'([], []).$extract_minus649,20962 -'$extract_minus'([], [])./p,predicate,predicate definition649,20962 -'$extract_minus'([], []).$extract_minus649,20962 -'$extract_minus'([-F|Fs], [F|MFs]) :-$extract_minus650,20988 -'$extract_minus'([-F|Fs], [F|MFs]) :-$extract_minus650,20988 -'$extract_minus'([-F|Fs], [F|MFs]) :-$extract_minus650,20988 -'$do_lf'(_ContextModule, Stream, _UserFile, _File, _TOpts) :-$do_lf653,21055 -'$do_lf'(_ContextModule, Stream, _UserFile, _File, _TOpts) :-$do_lf653,21055 -'$do_lf'(_ContextModule, Stream, _UserFile, _File, _TOpts) :-$do_lf653,21055 -'$do_lf'(ContextModule, Stream, UserFile, File, TOpts) :-$do_lf659,21280 -'$do_lf'(ContextModule, Stream, UserFile, File, TOpts) :-$do_lf659,21280 -'$do_lf'(ContextModule, Stream, UserFile, File, TOpts) :-$do_lf659,21280 -'$q_do_save_file'(File, UserF, TOpts ) :-$q_do_save_file740,24247 -'$q_do_save_file'(File, UserF, TOpts ) :-$q_do_save_file740,24247 -'$q_do_save_file'(File, UserF, TOpts ) :-$q_do_save_file740,24247 -'$q_do_save_file'(_File, _, _TOpts ).$q_do_save_file747,24571 -'$q_do_save_file'(_File, _, _TOpts )./p,predicate,predicate definition747,24571 -'$q_do_save_file'(_File, _, _TOpts ).$q_do_save_file747,24571 -'$reset_if'(OldIfLevel) :-$reset_if749,24610 -'$reset_if'(OldIfLevel) :-$reset_if749,24610 -'$reset_if'(OldIfLevel) :-$reset_if749,24610 -'$reset_if'(0) :-$reset_if752,24713 -'$reset_if'(0) :-$reset_if752,24713 -'$reset_if'(0) :-$reset_if752,24713 -nb_setval('$if_le1vel',0).nb_setval753,24731 -nb_setval('$if_le1vel',0).nb_setval753,24731 -'$get_if'(Level0) :-$get_if755,24759 -'$get_if'(Level0) :-$get_if755,24759 -'$get_if'(Level0) :-$get_if755,24759 -'$get_if'(0).$get_if758,24841 -'$get_if'(0)./p,predicate,predicate definition758,24841 -'$get_if'(0).$get_if758,24841 -'$bind_module'(_, load_files).$bind_module760,24856 -'$bind_module'(_, load_files)./p,predicate,predicate definition760,24856 -'$bind_module'(_, load_files).$bind_module760,24856 -'$bind_module'(Mod, use_module(Mod)).$bind_module761,24887 -'$bind_module'(Mod, use_module(Mod))./p,predicate,predicate definition761,24887 -'$bind_module'(Mod, use_module(Mod)).$bind_module761,24887 -'$import_to_current_module'(File, ContextModule, _Imports, _RemainingImports, _TOpts) :-$import_to_current_module763,24926 -'$import_to_current_module'(File, ContextModule, _Imports, _RemainingImports, _TOpts) :-$import_to_current_module763,24926 -'$import_to_current_module'(File, ContextModule, _Imports, _RemainingImports, _TOpts) :-$import_to_current_module763,24926 -'$import_to_current_module'(File, ContextModule, Imports, RemainingImports, TOpts) :-$import_to_current_module769,25241 -'$import_to_current_module'(File, ContextModule, Imports, RemainingImports, TOpts) :-$import_to_current_module769,25241 -'$import_to_current_module'(File, ContextModule, Imports, RemainingImports, TOpts) :-$import_to_current_module769,25241 -'$import_to_current_module'(_, _, _, _, _).$import_to_current_module775,25629 -'$import_to_current_module'(_, _, _, _, _)./p,predicate,predicate definition775,25629 -'$import_to_current_module'(_, _, _, _, _).$import_to_current_module775,25629 -'$start_reconsulting'(F) :-$start_reconsulting777,25674 -'$start_reconsulting'(F) :-$start_reconsulting777,25674 -'$start_reconsulting'(F) :-$start_reconsulting777,25674 -'$include'(V, _) :- var(V), !,$include826,26849 -'$include'(V, _) :- var(V), !,$include826,26849 -'$include'(V, _) :- var(V), !,$include826,26849 -'$include'([], _) :- !.$include828,26926 -'$include'([], _) :- !.$include828,26926 -'$include'([], _) :- !.$include828,26926 -'$include'([F|Fs], Status) :- !,$include829,26950 -'$include'([F|Fs], Status) :- !,$include829,26950 -'$include'([F|Fs], Status) :- !,$include829,26950 -'$include'(X, Status) :-$include832,27032 -'$include'(X, Status) :-$include832,27032 -'$include'(X, Status) :-$include832,27032 -'$do_startup_reconsult'(_X) :-$do_startup_reconsult865,28072 -'$do_startup_reconsult'(_X) :-$do_startup_reconsult865,28072 -'$do_startup_reconsult'(_X) :-$do_startup_reconsult865,28072 -'$do_startup_reconsult'(X) :-$do_startup_reconsult868,28133 -'$do_startup_reconsult'(X) :-$do_startup_reconsult868,28133 -'$do_startup_reconsult'(X) :-$do_startup_reconsult868,28133 -'$do_startup_reconsult'(_).$do_startup_reconsult872,28315 -'$do_startup_reconsult'(_)./p,predicate,predicate definition872,28315 -'$do_startup_reconsult'(_).$do_startup_reconsult872,28315 -'$skip_unix_header'(Stream) :-$skip_unix_header874,28344 -'$skip_unix_header'(Stream) :-$skip_unix_header874,28344 -'$skip_unix_header'(Stream) :-$skip_unix_header874,28344 -'$skip_unix_header'(_).$skip_unix_header878,28473 -'$skip_unix_header'(_)./p,predicate,predicate definition878,28473 -'$skip_unix_header'(_).$skip_unix_header878,28473 -source_file(FileName) :-source_file881,28499 -source_file(FileName) :-source_file881,28499 -source_file(FileName) :-source_file881,28499 -source_file(Mod:Pred, FileName) :-source_file884,28585 -source_file(Mod:Pred, FileName) :-source_file884,28585 -source_file(Mod:Pred, FileName) :-source_file884,28585 -'$owned_by'(T, Mod, FileName) :-$owned_by890,28733 -'$owned_by'(T, Mod, FileName) :-$owned_by890,28733 -'$owned_by'(T, Mod, FileName) :-$owned_by890,28733 -'$owned_by'(T, Mod, FileName) :-$owned_by895,28941 -'$owned_by'(T, Mod, FileName) :-$owned_by895,28941 -'$owned_by'(T, Mod, FileName) :-$owned_by895,28941 -prolog_load_context(directory, DirName) :-prolog_load_context945,30650 -prolog_load_context(directory, DirName) :-prolog_load_context945,30650 -prolog_load_context(directory, DirName) :-prolog_load_context945,30650 -prolog_load_context(file, FileName) :-prolog_load_context950,30829 -prolog_load_context(file, FileName) :-prolog_load_context950,30829 -prolog_load_context(file, FileName) :-prolog_load_context950,30829 -prolog_load_context(module, X) :-prolog_load_context957,30986 -prolog_load_context(module, X) :-prolog_load_context957,30986 -prolog_load_context(module, X) :-prolog_load_context957,30986 -prolog_load_context(source, F0) :-prolog_load_context960,31101 -prolog_load_context(source, F0) :-prolog_load_context960,31101 -prolog_load_context(source, F0) :-prolog_load_context960,31101 -prolog_load_context(stream, Stream) :-prolog_load_context969,31376 -prolog_load_context(stream, Stream) :-prolog_load_context969,31376 -prolog_load_context(stream, Stream) :-prolog_load_context969,31376 -'$file_loaded'(F0, M, Imports, TOpts) :-$file_loaded975,31539 -'$file_loaded'(F0, M, Imports, TOpts) :-$file_loaded975,31539 -'$file_loaded'(F0, M, Imports, TOpts) :-$file_loaded975,31539 -'$ensure_file_loaded'(F, M) :-$ensure_file_loaded987,31917 -'$ensure_file_loaded'(F, M) :-$ensure_file_loaded987,31917 -'$ensure_file_loaded'(F, M) :-$ensure_file_loaded987,31917 -'$file_unchanged'(F, M, Imports, TOpts) :-$file_unchanged995,32316 -'$file_unchanged'(F, M, Imports, TOpts) :-$file_unchanged995,32316 -'$file_unchanged'(F, M, Imports, TOpts) :-$file_unchanged995,32316 -'$ensure_file_unchanged'(F, M) :-$ensure_file_unchanged1001,32518 -'$ensure_file_unchanged'(F, M) :-$ensure_file_unchanged1001,32518 -'$ensure_file_unchanged'(F, M) :-$ensure_file_unchanged1001,32518 -'$file_is_unchanged'(F, R, Age) :-$file_is_unchanged1011,33014 -'$file_is_unchanged'(F, R, Age) :-$file_is_unchanged1011,33014 -'$file_is_unchanged'(F, R, Age) :-$file_is_unchanged1011,33014 -'$loaded'(F, UserFile, M, OldF, Line, Reconsult0, Reconsult, Dir, Opts) :-$loaded1017,33214 -'$loaded'(F, UserFile, M, OldF, Line, Reconsult0, Reconsult, Dir, Opts) :-$loaded1017,33214 -'$loaded'(F, UserFile, M, OldF, Line, Reconsult0, Reconsult, Dir, Opts) :-$loaded1017,33214 -make :-make1064,34654 -make_library_index(_Directory).make_library_index1070,34781 -make_library_index(_Directory).make_library_index1070,34781 -'$fetch_stream_alias'(OldStream,Alias) :-$fetch_stream_alias1072,34814 -'$fetch_stream_alias'(OldStream,Alias) :-$fetch_stream_alias1072,34814 -'$fetch_stream_alias'(OldStream,Alias) :-$fetch_stream_alias1072,34814 -'$require'(_Ps, _M).$require1075,34903 -'$require'(_Ps, _M)./p,predicate,predicate definition1075,34903 -'$require'(_Ps, _M).$require1075,34903 -'$store_clause'('$source_location'(File, _Line):Clause, File) :-$store_clause1077,34925 -'$store_clause'('$source_location'(File, _Line):Clause, File) :-$store_clause1077,34925 -'$store_clause'('$source_location'(File, _Line):Clause, File) :-$store_clause'('$source_location1077,34925 -exists_source(File) :-exists_source1081,35016 -exists_source(File) :-exists_source1081,35016 -exists_source(File) :-exists_source1081,35016 -source_file_property( File0, Prop) :-source_file_property1110,36199 -source_file_property( File0, Prop) :-source_file_property1110,36199 -source_file_property( File0, Prop) :-source_file_property1110,36199 -'$source_file_property'( OldF, includes(F, Age)) :-$source_file_property1114,36346 -'$source_file_property'( OldF, includes(F, Age)) :-$source_file_property1114,36346 -'$source_file_property'( OldF, includes(F, Age)) :-$source_file_property1114,36346 -'$source_file_property'( F, included_in(OldF, Line)) :-$source_file_property1117,36536 -'$source_file_property'( F, included_in(OldF, Line)) :-$source_file_property1117,36536 -'$source_file_property'( F, included_in(OldF, Line)) :-$source_file_property1117,36536 -'$source_file_property'( F, load_context(OldF, Line, Options)) :-$source_file_property1119,36672 -'$source_file_property'( F, load_context(OldF, Line, Options)) :-$source_file_property1119,36672 -'$source_file_property'( F, load_context(OldF, Line, Options)) :-$source_file_property1119,36672 -'$source_file_property'( F, modified(Age)) :-$source_file_property1121,36833 -'$source_file_property'( F, modified(Age)) :-$source_file_property1121,36833 -'$source_file_property'( F, modified(Age)) :-$source_file_property1121,36833 -'$source_file_property'( F, module(M)) :-$source_file_property1123,36936 -'$source_file_property'( F, module(M)) :-$source_file_property1123,36936 -'$source_file_property'( F, module(M)) :-$source_file_property1123,36936 -unload_file( F0 ) :-unload_file1126,37024 -unload_file( F0 ) :-unload_file1126,37024 -unload_file( F0 ) :-unload_file1126,37024 -'$unload_file'( FileName, _F0 ) :-$unload_file1132,37205 -'$unload_file'( FileName, _F0 ) :-$unload_file1132,37205 -'$unload_file'( FileName, _F0 ) :-$unload_file1132,37205 -'$unload_file'( FileName, _F0 ) :-$unload_file1141,37427 -'$unload_file'( FileName, _F0 ) :-$unload_file1141,37427 -'$unload_file'( FileName, _F0 ) :-$unload_file1141,37427 -'$unload_file'( FileName, _F0 ) :-$unload_file1145,37554 -'$unload_file'( FileName, _F0 ) :-$unload_file1145,37554 -'$unload_file'( FileName, _F0 ) :-$unload_file1145,37554 -'$unload_file'( FileName, _F0 ) :-$unload_file1150,37731 -'$unload_file'( FileName, _F0 ) :-$unload_file1150,37731 -'$unload_file'( FileName, _F0 ) :-$unload_file1150,37731 -'$unload_file'( FileName, _F0 ) :-$unload_file1155,37881 -'$unload_file'( FileName, _F0 ) :-$unload_file1155,37881 -'$unload_file'( FileName, _F0 ) :-$unload_file1155,37881 -'$unload_file'( FileName, _F0 ) :-$unload_file1159,38015 -'$unload_file'( FileName, _F0 ) :-$unload_file1159,38015 -'$unload_file'( FileName, _F0 ) :-$unload_file1159,38015 -'$unload_file'( FileName, _F0 ) :-$unload_file1164,38170 -'$unload_file'( FileName, _F0 ) :-$unload_file1164,38170 -'$unload_file'( FileName, _F0 ) :-$unload_file1164,38170 -module(Mod, Decls) :-module1185,38461 -module(Mod, Decls) :-module1185,38461 -module(Mod, Decls) :-module1185,38461 -'$export_preds'([]).$export_preds1189,38545 -'$export_preds'([])./p,predicate,predicate definition1189,38545 -'$export_preds'([]).$export_preds1189,38545 -'$export_preds'([N/A|Decls]) :-$export_preds1190,38566 -'$export_preds'([N/A|Decls]) :-$export_preds1190,38566 -'$export_preds'([N/A|Decls]) :-$export_preds1190,38566 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -'$use_module'(M,F,Is) :-$use_module1207,39083 -'$use_module'(M,F,Is) :-$use_module1207,39083 -'$use_module'(M,F,Is) :-$use_module1207,39083 -'$use_module'(M,F,Is) :-$use_module1210,39146 -'$use_module'(M,F,Is) :-$use_module1210,39146 -'$use_module'(M,F,Is) :-$use_module1210,39146 -'$use_module'(M,F,Is) :-$use_module1219,39453 -'$use_module'(M,F,Is) :-$use_module1219,39453 -'$use_module'(M,F,Is) :-$use_module1219,39453 -'$use_module'(M,F,Is) :-$use_module1228,39783 -'$use_module'(M,F,Is) :-$use_module1228,39783 -'$use_module'(M,F,Is) :-$use_module1228,39783 -'$reexport'( TOpts, File, Reexport, Imports, OldF ) :-$reexport1275,41310 -'$reexport'( TOpts, File, Reexport, Imports, OldF ) :-$reexport1275,41310 -'$reexport'( TOpts, File, Reexport, Imports, OldF ) :-$reexport1275,41310 -'$add_multifile'(Name,Arity,Module) :-$add_multifile1318,42713 -'$add_multifile'(Name,Arity,Module) :-$add_multifile1318,42713 -'$add_multifile'(Name,Arity,Module) :-$add_multifile1318,42713 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1322,42822 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1322,42822 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1322,42822 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1325,43014 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1325,43014 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1325,43014 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1328,43134 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1328,43134 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1328,43134 -'$add_multifile'(_,_,_,_).$add_multifile1333,43287 -'$add_multifile'(_,_,_,_)./p,predicate,predicate definition1333,43287 -'$add_multifile'(_,_,_,_).$add_multifile1333,43287 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1336,43365 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1336,43365 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1336,43365 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1340,43485 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1340,43485 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1340,43485 -'$remove_multifile_clauses'(_).$remove_multifile_clauses1345,43633 -'$remove_multifile_clauses'(_)./p,predicate,predicate definition1345,43633 -'$remove_multifile_clauses'(_).$remove_multifile_clauses1345,43633 -'$initialization'(G) :-$initialization1357,44021 -'$initialization'(G) :-$initialization1357,44021 -'$initialization'(G) :-$initialization1357,44021 -'$initialization_queue'(G) :-$initialization_queue1360,44086 -'$initialization_queue'(G) :-$initialization_queue1360,44086 -'$initialization_queue'(G) :-$initialization_queue1360,44086 -'$initialization_queue'(_).$initialization_queue1365,44226 -'$initialization_queue'(_)./p,predicate,predicate definition1365,44226 -'$initialization_queue'(_).$initialization_queue1365,44226 -initialization(G0,OPT) :-initialization1385,44697 -initialization(G0,OPT) :-initialization1385,44697 -initialization(G0,OPT) :-initialization1385,44697 -initialization(_G,_OPT).initialization1389,44834 -initialization(_G,_OPT).initialization1389,44834 -'$initialization'(G,OPT) :-$initialization1391,44860 -'$initialization'(G,OPT) :-$initialization1391,44860 -'$initialization'(G,OPT) :-$initialization1391,44860 -'$if'(_,top) :- !, fail.$if1469,46563 -'$if'(_,top) :- !, fail.$if1469,46563 -'$if'(_,top) :- !, fail.$if1469,46563 -'$if'(_Goal,_) :-$if1470,46588 -'$if'(_Goal,_) :-$if1470,46588 -'$if'(_Goal,_) :-$if1470,46588 -'$if'(_Goal,_) :-$if1479,46904 -'$if'(_Goal,_) :-$if1479,46904 -'$if'(_Goal,_) :-$if1479,46904 -'$if'(Goal,_) :-$if1483,47072 -'$if'(Goal,_) :-$if1483,47072 -'$if'(Goal,_) :-$if1483,47072 -'$else'(top) :- !, fail.$else1500,47411 -'$else'(top) :- !, fail.$else1500,47411 -'$else'(top) :- !, fail.$else1500,47411 -'$else'(_) :-$else1501,47436 -'$else'(_) :-$else1501,47436 -'$else'(_) :-$else1501,47436 -'$else'(_) :-$else1505,47549 -'$else'(_) :-$else1505,47549 -'$else'(_) :-$else1505,47549 -'$else'(_) :-$else1509,47662 -'$else'(_) :-$else1509,47662 -'$else'(_) :-$else1509,47662 -'$elif'(_,top) :- !, fail.$elif1522,48039 -'$elif'(_,top) :- !, fail.$elif1522,48039 -'$elif'(_,top) :- !, fail.$elif1522,48039 -'$elif'(Goal,_) :-$elif1523,48066 -'$elif'(Goal,_) :-$elif1523,48066 -'$elif'(Goal,_) :-$elif1523,48066 -'$elif'(_,_) :-$elif1527,48187 -'$elif'(_,_) :-$elif1527,48187 -'$elif'(_,_) :-$elif1527,48187 -'$elif'(Goal,_) :-$elif1531,48299 -'$elif'(Goal,_) :-$elif1531,48299 -'$elif'(Goal,_) :-$elif1531,48299 -'$elif'(_,_).$elif1543,48632 -'$elif'(_,_)./p,predicate,predicate definition1543,48632 -'$elif'(_,_).$elif1543,48632 -'$endif'(top) :- !, fail.$endif1549,48702 -'$endif'(top) :- !, fail.$endif1549,48702 -'$endif'(top) :- !, fail.$endif1549,48702 -'$endif'(_) :-$endif1550,48728 -'$endif'(_) :-$endif1550,48728 -'$endif'(_) :-$endif1550,48728 -'$endif'(_) :-$endif1554,48825 -'$endif'(_) :-$endif1554,48825 -'$endif'(_) :-$endif1554,48825 -'$if_call'(G) :-$if_call1566,49084 -'$if_call'(G) :-$if_call1566,49084 -'$if_call'(G) :-$if_call1566,49084 -'$eval_if'(Goal) :-$eval_if1569,49161 -'$eval_if'(Goal) :-$eval_if1569,49161 -'$eval_if'(Goal) :-$eval_if1569,49161 -'$if_directive'((:- if(_))).$if_directive1573,49228 -'$if_directive'((:- if(_)))./p,predicate,predicate definition1573,49228 -'$if_directive'((:- if(_))).$if_directive1573,49228 -'$if_directive'((:- else)).$if_directive1574,49257 -'$if_directive'((:- else))./p,predicate,predicate definition1574,49257 -'$if_directive'((:- else)).$if_directive1574,49257 -'$if_directive'((:- elif(_))).$if_directive1575,49285 -'$if_directive'((:- elif(_)))./p,predicate,predicate definition1575,49285 -'$if_directive'((:- elif(_))).$if_directive1575,49285 -'$if_directive'((:- endif)).$if_directive1576,49316 -'$if_directive'((:- endif))./p,predicate,predicate definition1576,49316 -'$if_directive'((:- endif)).$if_directive1576,49316 -'$comp_mode'( OldCompMode, CompMode) :-$comp_mode1579,49347 -'$comp_mode'( OldCompMode, CompMode) :-$comp_mode1579,49347 -'$comp_mode'( OldCompMode, CompMode) :-$comp_mode1579,49347 -'$comp_mode'(OldCompMode, assert_all) :-$comp_mode1582,49444 -'$comp_mode'(OldCompMode, assert_all) :-$comp_mode1582,49444 -'$comp_mode'(OldCompMode, assert_all) :-$comp_mode1582,49444 -'$comp_mode'(OldCompMode, source) :-$comp_mode1585,49551 -'$comp_mode'(OldCompMode, source) :-$comp_mode1585,49551 -'$comp_mode'(OldCompMode, source) :-$comp_mode1585,49551 -'$comp_mode'(OldCompMode, compact) :-$comp_mode1588,49656 -'$comp_mode'(OldCompMode, compact) :-$comp_mode1588,49656 -'$comp_mode'(OldCompMode, compact) :-$comp_mode1588,49656 -'$fetch_comp_status'(assert_all) :-$fetch_comp_status1592,49764 -'$fetch_comp_status'(assert_all) :-$fetch_comp_status1592,49764 -'$fetch_comp_status'(assert_all) :-$fetch_comp_status1592,49764 -'$fetch_comp_status'(source) :-$fetch_comp_status1594,49842 -'$fetch_comp_status'(source) :-$fetch_comp_status1594,49842 -'$fetch_comp_status'(source) :-$fetch_comp_status1594,49842 -'$fetch_comp_status'(compact).$fetch_comp_status1596,49914 -'$fetch_comp_status'(compact)./p,predicate,predicate definition1596,49914 -'$fetch_comp_status'(compact).$fetch_comp_status1596,49914 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 - -packages/python/swig/yap4py/prolog/pl/control.yap,13107 -once(G) :-once105,2227 -once(G) :-once105,2227 -once(G) :-once105,2227 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -ignore(Goal) :-ignore150,3209 -ignore(Goal) :-ignore150,3209 -ignore(Goal) :-ignore150,3209 -ignore(_).ignore152,3242 -ignore(_).ignore152,3242 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -notrace(G) :-notrace159,3300 -notrace(G) :-notrace159,3300 -notrace(G) :-notrace159,3300 -a(1). b(a). c(x).a182,3905 -a(1). b(a). c(x).a182,3905 -a(2). b(b). c(y).a183,3939 -a(2). b(b). c(y).a183,3939 -if(X,Y,Z) :-if216,4479 -if(X,Y,Z) :-if216,4479 -if(X,Y,Z) :-if216,4479 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call_cleanup(Goal, Cleanup) :-call_cleanup264,5744 -call_cleanup(Goal, Cleanup) :-call_cleanup264,5744 -call_cleanup(Goal, Cleanup) :-call_cleanup264,5744 -call_cleanup(Goal, Catcher, Cleanup) :-call_cleanup267,5836 -call_cleanup(Goal, Catcher, Cleanup) :-call_cleanup267,5836 -call_cleanup(Goal, Catcher, Cleanup) :-call_cleanup267,5836 -setup_call_cleanup(Setup,Goal, Cleanup) :-setup_call_cleanup285,6552 -setup_call_cleanup(Setup,Goal, Cleanup) :-setup_call_cleanup285,6552 -setup_call_cleanup(Setup,Goal, Cleanup) :-setup_call_cleanup285,6552 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -'$show_code' :- '$debug'(0'f). %' just make emacs happy$show_code' :- '$debug309,7199 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -garbage_collect :-garbage_collect338,7713 -gc :-gc351,7837 -nogc :-nogc361,7961 -garbage_collect_atoms :-garbage_collect_atoms373,8153 -'$good_list_of_character_codes'(V) :- var(V), !.$good_list_of_character_codes378,8222 -'$good_list_of_character_codes'(V) :- var(V), !.$good_list_of_character_codes378,8222 -'$good_list_of_character_codes'(V) :- var(V), !.$good_list_of_character_codes378,8222 -'$good_list_of_character_codes'([]).$good_list_of_character_codes379,8271 -'$good_list_of_character_codes'([])./p,predicate,predicate definition379,8271 -'$good_list_of_character_codes'([]).$good_list_of_character_codes379,8271 -'$good_list_of_character_codes'([X|L]) :-$good_list_of_character_codes380,8308 -'$good_list_of_character_codes'([X|L]) :-$good_list_of_character_codes380,8308 -'$good_list_of_character_codes'([X|L]) :-$good_list_of_character_codes380,8308 -'$good_character_code'(X) :- var(X), !.$good_character_code384,8416 -'$good_character_code'(X) :- var(X), !.$good_character_code384,8416 -'$good_character_code'(X) :- var(X), !.$good_character_code384,8416 -'$good_character_code'(X) :- integer(X), X > -2, X < 256.$good_character_code385,8456 -'$good_character_code'(X) :- integer(X), X > -2, X < 256.$good_character_code385,8456 -'$good_character_code'(X) :- integer(X), X > -2, X < 256.$good_character_code385,8456 -prolog_initialization(G) :- var(G), !,prolog_initialization395,8671 -prolog_initialization(G) :- var(G), !,prolog_initialization395,8671 -prolog_initialization(G) :- var(G), !,prolog_initialization395,8671 -prolog_initialization(T) :- callable(T), !,prolog_initialization397,8763 -prolog_initialization(T) :- callable(T), !,prolog_initialization397,8763 -prolog_initialization(T) :- callable(T), !,prolog_initialization397,8763 -prolog_initialization(T) :-prolog_initialization399,8827 -prolog_initialization(T) :-prolog_initialization399,8827 -prolog_initialization(T) :-prolog_initialization399,8827 -'$assert_init'(T) :- recordz('$startup_goal',T,_), fail.$assert_init402,8912 -'$assert_init'(T) :- recordz('$startup_goal',T,_), fail.$assert_init402,8912 -'$assert_init'(T) :- recordz('$startup_goal',T,_), fail.$assert_init402,8912 -'$assert_init'(_).$assert_init403,8969 -'$assert_init'(_)./p,predicate,predicate definition403,8969 -'$assert_init'(_).$assert_init403,8969 -version :- '$version'.version411,9039 -version(V) :- var(V), !,version420,9201 -version(V) :- var(V), !,version420,9201 -version(V) :- var(V), !,version420,9201 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :-version423,9321 -version(T) :-version423,9321 -version(T) :-version423,9321 -'$assert_version'(T) :- recordz('$version',T,_), fail.$assert_version426,9381 -'$assert_version'(T) :- recordz('$version',T,_), fail.$assert_version426,9381 -'$assert_version'(T) :- recordz('$version',T,_), fail.$assert_version426,9381 -'$assert_version'(_).$assert_version427,9436 -'$assert_version'(_)./p,predicate,predicate definition427,9436 -'$assert_version'(_).$assert_version427,9436 -'$set_toplevel_hook'(_) :-$set_toplevel_hook429,9459 -'$set_toplevel_hook'(_) :-$set_toplevel_hook429,9459 -'$set_toplevel_hook'(_) :-$set_toplevel_hook429,9459 -'$set_toplevel_hook'(H) :-$set_toplevel_hook433,9538 -'$set_toplevel_hook'(H) :-$set_toplevel_hook433,9538 -'$set_toplevel_hook'(H) :-$set_toplevel_hook433,9538 -'$set_toplevel_hook'(_).$set_toplevel_hook436,9605 -'$set_toplevel_hook'(_)./p,predicate,predicate definition436,9605 -'$set_toplevel_hook'(_).$set_toplevel_hook436,9605 -nb_getval(GlobalVariable, Val) :-nb_getval466,10377 -nb_getval(GlobalVariable, Val) :-nb_getval466,10377 -nb_getval(GlobalVariable, Val) :-nb_getval466,10377 -b_getval(GlobalVariable, Val) :-b_getval505,11685 -b_getval(GlobalVariable, Val) :-b_getval505,11685 -b_getval(GlobalVariable, Val) :-b_getval505,11685 -'$debug_state'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_state528,12117 -'$debug_state'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_state528,12117 -'$debug_state'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_state528,12117 -'$debug_stop'( State ) :-$debug_stop538,12390 -'$debug_stop'( State ) :-$debug_stop538,12390 -'$debug_stop'( State ) :-$debug_stop538,12390 -'$debug_restart'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_restart545,12559 -'$debug_restart'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_restart545,12559 -'$debug_restart'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_restart545,12559 -break :-break570,13248 -at_halt(G) :-at_halt602,14102 -at_halt(G) :-at_halt602,14102 -at_halt(G) :-at_halt602,14102 -at_halt(_).at_halt605,14148 -at_halt(_).at_halt605,14148 -halt :-halt612,14282 -halt :-halt615,14334 -halt(_) :-halt624,14490 -halt(_) :-halt624,14490 -halt(_) :-halt624,14490 -halt(X) :-halt628,14580 -halt(X) :-halt628,14580 -halt(X) :-halt628,14580 -prolog_current_frame(Env) :-prolog_current_frame633,14660 -prolog_current_frame(Env) :-prolog_current_frame633,14660 -prolog_current_frame(Env) :-prolog_current_frame633,14660 -'$run_atom_goal'(GA) :-$run_atom_goal636,14706 -'$run_atom_goal'(GA) :-$run_atom_goal636,14706 -'$run_atom_goal'(GA) :-$run_atom_goal636,14706 -'$add_dot_to_atom_goal'([],[0'.]) :- !. %'$add_dot_to_atom_goal641,14836 -'$add_dot_to_atom_goal'([],[0'.]) :- !. %'$add_dot_to_atom_goal641,14836 -'$add_dot_to_atom_goal'([],[0'.]) :- !. %'$add_dot_to_atom_goal641,14836 -'$add_dot_to_atom_goal'([0'.],[0'.]) :- !.$add_dot_to_atom_goal642,14879 -'$add_dot_to_atom_goal'([0'.],[0'.]) :- !.$add_dot_to_atom_goal642,14879 -'$add_dot_to_atom_goal'([0'.],[0'.]) :- !.$add_dot_to_atom_goal642,14879 -'$add_dot_to_atom_goal'([C|Gs0],[C|Gs]) :-$add_dot_to_atom_goal643,14922 -'$add_dot_to_atom_goal'([C|Gs0],[C|Gs]) :-$add_dot_to_atom_goal643,14922 -'$add_dot_to_atom_goal'([C|Gs0],[C|Gs]) :-$add_dot_to_atom_goal643,14922 - -packages/python/swig/yap4py/prolog/pl/corout.yap,16933 -attr_unify_hook(DelayList, _) :-attr_unify_hook71,1799 -attr_unify_hook(DelayList, _) :-attr_unify_hook71,1799 -attr_unify_hook(DelayList, _) :-attr_unify_hook71,1799 -wake_delays([]).wake_delays74,1858 -wake_delays([]).wake_delays74,1858 -wake_delays([Delay|List]) :-wake_delays75,1875 -wake_delays([Delay|List]) :-wake_delays75,1875 -wake_delays([Delay|List]) :-wake_delays75,1875 -wake_delay(redo_dif(Done, X, Y)) :-wake_delay82,1986 -wake_delay(redo_dif(Done, X, Y)) :-wake_delay82,1986 -wake_delay(redo_dif(Done, X, Y)) :-wake_delay82,1986 -wake_delay(redo_freeze(Done, V, Goal)) :-wake_delay84,2045 -wake_delay(redo_freeze(Done, V, Goal)) :-wake_delay84,2045 -wake_delay(redo_freeze(Done, V, Goal)) :-wake_delay84,2045 -wake_delay(redo_eq(Done, X, Y, Goal)) :-wake_delay86,2116 -wake_delay(redo_eq(Done, X, Y, Goal)) :-wake_delay86,2116 -wake_delay(redo_eq(Done, X, Y, Goal)) :-wake_delay86,2116 -wake_delay(redo_ground(Done, X, Goal)) :-wake_delay88,2189 -wake_delay(redo_ground(Done, X, Goal)) :-wake_delay88,2189 -wake_delay(redo_ground(Done, X, Goal)) :-wake_delay88,2189 -attribute_goals(Var) -->attribute_goals92,2262 -attribute_goals(Var) -->attribute_goals92,2262 -attribute_goals(Var) -->attribute_goals92,2262 -attgoal_for_delays([], _V) --> [].attgoal_for_delays96,2366 -attgoal_for_delays([], _V) --> [].attgoal_for_delays96,2366 -attgoal_for_delays([], _V) --> [].attgoal_for_delays96,2366 -attgoal_for_delays([G|AllAtts], V) -->attgoal_for_delays97,2401 -attgoal_for_delays([G|AllAtts], V) -->attgoal_for_delays97,2401 -attgoal_for_delays([G|AllAtts], V) -->attgoal_for_delays97,2401 -attgoal_for_delay(redo_dif(Done, X, Y), V) -->attgoal_for_delay101,2500 -attgoal_for_delay(redo_dif(Done, X, Y), V) -->attgoal_for_delay101,2500 -attgoal_for_delay(redo_dif(Done, X, Y), V) -->attgoal_for_delay101,2500 -attgoal_for_delay(redo_freeze(Done, V, Goal), V) -->attgoal_for_delay104,2610 -attgoal_for_delay(redo_freeze(Done, V, Goal), V) -->attgoal_for_delay104,2610 -attgoal_for_delay(redo_freeze(Done, V, Goal), V) -->attgoal_for_delay104,2610 -attgoal_for_delay(redo_eq(Done, X, Y, Goal), V) -->attgoal_for_delay108,2760 -attgoal_for_delay(redo_eq(Done, X, Y, Goal), V) -->attgoal_for_delay108,2760 -attgoal_for_delay(redo_eq(Done, X, Y, Goal), V) -->attgoal_for_delay108,2760 -attgoal_for_delay(redo_ground(Done, X, Goal), _V) -->attgoal_for_delay111,2879 -attgoal_for_delay(redo_ground(Done, X, Goal), _V) -->attgoal_for_delay111,2879 -attgoal_for_delay(redo_ground(Done, X, Goal), _V) -->attgoal_for_delay111,2879 -attgoal_for_delay(_, _V) --> [].attgoal_for_delay114,2987 -attgoal_for_delay(_, _V) --> [].attgoal_for_delay114,2987 -attgoal_for_delay(_, _V) --> [].attgoal_for_delay114,2987 -remove_when_declarations(when(Cond,Goal,_), when(Cond,NoWGoal)) :- !,remove_when_declarations116,3021 -remove_when_declarations(when(Cond,Goal,_), when(Cond,NoWGoal)) :- !,remove_when_declarations116,3021 -remove_when_declarations(when(Cond,Goal,_), when(Cond,NoWGoal)) :- !,remove_when_declarations116,3021 -remove_when_declarations(Goal, Goal).remove_when_declarations118,3133 -remove_when_declarations(Goal, Goal).remove_when_declarations118,3133 -prolog:freeze(V, G) :-freeze131,3314 -prolog:freeze(V, G) :-freeze131,3314 -prolog:freeze(_, G) :-freeze134,3368 -prolog:freeze(_, G) :-freeze134,3368 -freeze_goal(V,VG) :-freeze_goal137,3408 -freeze_goal(V,VG) :-freeze_goal137,3408 -freeze_goal(V,VG) :-freeze_goal137,3408 -freeze_goal(V,M:G) :- !,freeze_goal141,3513 -freeze_goal(V,M:G) :- !,freeze_goal141,3513 -freeze_goal(V,M:G) :- !,freeze_goal141,3513 -freeze_goal(V,G) :-freeze_goal143,3585 -freeze_goal(V,G) :-freeze_goal143,3585 -freeze_goal(V,G) :-freeze_goal143,3585 -prolog:dif(X, Y) :-dif192,5558 -prolog:dif(X, Y) :-dif192,5558 -prolog:dif(_, _).dif196,5678 -dif_suspend_on_lvars([], _).dif_suspend_on_lvars199,5698 -dif_suspend_on_lvars([], _).dif_suspend_on_lvars199,5698 -dif_suspend_on_lvars([H|T], G) :-dif_suspend_on_lvars200,5727 -dif_suspend_on_lvars([H|T], G) :-dif_suspend_on_lvars200,5727 -dif_suspend_on_lvars([H|T], G) :-dif_suspend_on_lvars200,5727 -redo_dif(Done, _, _) :- nonvar(Done), !.redo_dif213,6234 -redo_dif(Done, _, _) :- nonvar(Done), !.redo_dif213,6234 -redo_dif(Done, _, _) :- nonvar(Done), !.redo_dif213,6234 -redo_dif(Done, X, Y) :-redo_dif214,6275 -redo_dif(Done, X, Y) :-redo_dif214,6275 -redo_dif(Done, X, Y) :-redo_dif214,6275 -redo_dif('$done', _, _).redo_dif218,6398 -redo_dif('$done', _, _).redo_dif218,6398 -redo_freeze(Done, V, G0) :-redo_freeze220,6424 -redo_freeze(Done, V, G0) :-redo_freeze220,6424 -redo_freeze(Done, V, G0) :-redo_freeze220,6424 -redo_eq(Done, _, _, _, _) :- nonvar(Done), !.redo_eq244,7111 -redo_eq(Done, _, _, _, _) :- nonvar(Done), !.redo_eq244,7111 -redo_eq(Done, _, _, _, _) :- nonvar(Done), !.redo_eq244,7111 -redo_eq(_, X, Y, _, G) :-redo_eq245,7157 -redo_eq(_, X, Y, _, G) :-redo_eq245,7157 -redo_eq(_, X, Y, _, G) :-redo_eq245,7157 -redo_eq(Done, _, _, when(C, G, Done), _) :- !,redo_eq249,7263 -redo_eq(Done, _, _, when(C, G, Done), _) :- !,redo_eq249,7263 -redo_eq(Done, _, _, when(C, G, Done), _) :- !,redo_eq249,7263 -redo_eq('$done', _ ,_ , Goal, _) :-redo_eq251,7329 -redo_eq('$done', _ ,_ , Goal, _) :-redo_eq251,7329 -redo_eq('$done', _ ,_ , Goal, _) :-redo_eq251,7329 -redo_ground(Done, _, _) :- nonvar(Done), !.redo_ground256,7417 -redo_ground(Done, _, _) :- nonvar(Done), !.redo_ground256,7417 -redo_ground(Done, _, _) :- nonvar(Done), !.redo_ground256,7417 -redo_ground(Done, X, Goal) :-redo_ground257,7461 -redo_ground(Done, X, Goal) :-redo_ground257,7461 -redo_ground(Done, X, Goal) :-redo_ground257,7461 -redo_ground(Done, _, when(C, G, Done)) :- !,redo_ground260,7569 -redo_ground(Done, _, when(C, G, Done)) :- !,redo_ground260,7569 -redo_ground(Done, _, when(C, G, Done)) :- !,redo_ground260,7569 -redo_ground('$done', _, Goal) :-redo_ground262,7633 -redo_ground('$done', _, Goal) :-redo_ground262,7633 -redo_ground('$done', _, Goal) :-redo_ground262,7633 -prolog:when(Conds,Goal) :-when291,8249 -prolog:when(Conds,Goal) :-when291,8249 -prolog:when(_,Goal) :-when297,8444 -prolog:when(_,Goal) :-when297,8444 -'$declare_when'(Cond, G) :-$declare_when308,8655 -'$declare_when'(Cond, G) :-$declare_when308,8655 -'$declare_when'(Cond, G) :-$declare_when308,8655 -'$declare_when'(_,_).$declare_when312,8794 -'$declare_when'(_,_)./p,predicate,predicate definition312,8794 -'$declare_when'(_,_).$declare_when312,8794 -prepare_goal_for_when(G, Mod, Mod:call(G)) :- var(G), !.prepare_goal_for_when327,9075 -prepare_goal_for_when(G, Mod, Mod:call(G)) :- var(G), !.prepare_goal_for_when327,9075 -prepare_goal_for_when(G, Mod, Mod:call(G)) :- var(G), !.prepare_goal_for_when327,9075 -prepare_goal_for_when(M:G, _, M:G) :- !.prepare_goal_for_when328,9132 -prepare_goal_for_when(M:G, _, M:G) :- !.prepare_goal_for_when328,9132 -prepare_goal_for_when(M:G, _, M:G) :- !.prepare_goal_for_when328,9132 -prepare_goal_for_when(G, Mod, Mod:G).prepare_goal_for_when329,9174 -prepare_goal_for_when(G, Mod, Mod:G).prepare_goal_for_when329,9174 -when(V, G, _Done, LG, LG) :- var(V), !,when342,9420 -when(V, G, _Done, LG, LG) :- var(V), !,when342,9420 -when(V, G, _Done, LG, LG) :- var(V), !,when342,9420 -when(nonvar(V), G, Done, LG0, LGF) :-when344,9505 -when(nonvar(V), G, Done, LG0, LGF) :-when344,9505 -when(nonvar(V), G, Done, LG0, LGF) :-when344,9505 -when(?=(X,Y), G, Done, LG0, LGF) :-when346,9588 -when(?=(X,Y), G, Done, LG0, LGF) :-when346,9588 -when(?=(X,Y), G, Done, LG0, LGF) :-when346,9588 -when(ground(T), G, Done, LG0, LGF) :-when348,9667 -when(ground(T), G, Done, LG0, LGF) :-when348,9667 -when(ground(T), G, Done, LG0, LGF) :-when348,9667 -when((C1, C2), G, Done, LG0, LGF) :-when350,9750 -when((C1, C2), G, Done, LG0, LGF) :-when350,9750 -when((C1, C2), G, Done, LG0, LGF) :-when350,9750 -when((G1 ; G2), G, Done, LG0, LGF) :-when360,10017 -when((G1 ; G2), G, Done, LG0, LGF) :-when360,10017 -when((G1 ; G2), G, Done, LG0, LGF) :-when360,10017 -when(_, _, Done) :-when368,10250 -when(_, _, Done) :-when368,10250 -when(_, _, Done) :-when368,10250 -when(Cond, G, Done) :-when370,10288 -when(Cond, G, Done) :-when370,10288 -when(Cond, G, Done) :-when370,10288 -when(_, G, '$done') :-when374,10376 -when(_, G, '$done') :-when374,10376 -when(_, G, '$done') :-when374,10376 -when_suspend(_, _, Done, _, []) :- nonvar(Done), !.when_suspend382,10495 -when_suspend(_, _, Done, _, []) :- nonvar(Done), !.when_suspend382,10495 -when_suspend(_, _, Done, _, []) :- nonvar(Done), !.when_suspend382,10495 -when_suspend(nonvar(V), G, Done, LG0, LGF) :-when_suspend386,10580 -when_suspend(nonvar(V), G, Done, LG0, LGF) :-when_suspend386,10580 -when_suspend(nonvar(V), G, Done, LG0, LGF) :-when_suspend386,10580 -when_suspend(?=(X,Y), G, Done, LG0, LGF) :-when_suspend388,10661 -when_suspend(?=(X,Y), G, Done, LG0, LGF) :-when_suspend388,10661 -when_suspend(?=(X,Y), G, Done, LG0, LGF) :-when_suspend388,10661 -when_suspend(ground(X), G, Done, LG0, LGF) :-when_suspend390,10739 -when_suspend(ground(X), G, Done, LG0, LGF) :-when_suspend390,10739 -when_suspend(ground(X), G, Done, LG0, LGF) :-when_suspend390,10739 -try_freeze(V, G, Done, LG0, LGF) :-try_freeze394,10822 -try_freeze(V, G, Done, LG0, LGF) :-try_freeze394,10822 -try_freeze(V, G, Done, LG0, LGF) :-try_freeze394,10822 -try_eq(X, Y, G, Done, LG0, LGF) :-try_eq398,10941 -try_eq(X, Y, G, Done, LG0, LGF) :-try_eq398,10941 -try_eq(X, Y, G, Done, LG0, LGF) :-try_eq398,10941 -try_ground(X, G, Done, LG0, LGF) :-try_ground402,11101 -try_ground(X, G, Done, LG0, LGF) :-try_ground402,11101 -try_ground(X, G, Done, LG0, LGF) :-try_ground402,11101 -suspend_when_goals([], _).suspend_when_goals413,11511 -suspend_when_goals([], _).suspend_when_goals413,11511 -suspend_when_goals(['$coroutining':internal_freeze(V, G)|Ls], Done) :-suspend_when_goals414,11538 -suspend_when_goals(['$coroutining':internal_freeze(V, G)|Ls], Done) :-suspend_when_goals414,11538 -suspend_when_goals(['$coroutining':internal_freeze(V, G)|Ls], Done) :-suspend_when_goals414,11538 -suspend_when_goals([dif_suspend_on_lvars(LVars, G)|LG], Done) :-suspend_when_goals418,11679 -suspend_when_goals([dif_suspend_on_lvars(LVars, G)|LG], Done) :-suspend_when_goals418,11679 -suspend_when_goals([dif_suspend_on_lvars(LVars, G)|LG], Done) :-suspend_when_goals418,11679 -suspend_when_goals([_|_], _).suspend_when_goals422,11823 -suspend_when_goals([_|_], _).suspend_when_goals422,11823 -prolog:'$block'(Conds) :-$block437,12283 -prolog:'$block'(Conds) :-$block437,12283 -prolog:'$block'(_).$block441,12421 -prolog:'$block'(_).$block441,12421 -generate_blocking_code(Conds, G, Code) :-generate_blocking_code443,12442 -generate_blocking_code(Conds, G, Code) :-generate_blocking_code443,12442 -generate_blocking_code(Conds, G, Code) :-generate_blocking_code443,12442 -generate_blocking_code(Conds, G, (G :- (If, !, when(When, G)))) :-generate_blocking_code451,12700 -generate_blocking_code(Conds, G, (G :- (If, !, when(When, G)))) :-generate_blocking_code451,12700 -generate_blocking_code(Conds, G, (G :- (If, !, when(When, G)))) :-generate_blocking_code451,12700 -extract_head_for_block((C1, _), G) :- !,extract_head_for_block459,12936 -extract_head_for_block((C1, _), G) :- !,extract_head_for_block459,12936 -extract_head_for_block((C1, _), G) :- !,extract_head_for_block459,12936 -extract_head_for_block(C, G) :-extract_head_for_block461,13009 -extract_head_for_block(C, G) :-extract_head_for_block461,13009 -extract_head_for_block(C, G) :-extract_head_for_block461,13009 -generate_body_for_block((C1, C2), G, (Code1 -> true ; Code2), (WhenConds,OtherWhenConds)) :- !,generate_body_for_block485,13622 -generate_body_for_block((C1, C2), G, (Code1 -> true ; Code2), (WhenConds,OtherWhenConds)) :- !,generate_body_for_block485,13622 -generate_body_for_block((C1, C2), G, (Code1 -> true ; Code2), (WhenConds,OtherWhenConds)) :- !,generate_body_for_block485,13622 -generate_body_for_block(C, G, (Code -> true ; fail), WhenConds) :-generate_body_for_block488,13840 -generate_body_for_block(C, G, (Code -> true ; fail), WhenConds) :-generate_body_for_block488,13840 -generate_body_for_block(C, G, (Code -> true ; fail), WhenConds) :-generate_body_for_block488,13840 -generate_for_cond_in_block(C, G, Code, Whens) :-generate_for_cond_in_block491,13966 -generate_for_cond_in_block(C, G, Code, Whens) :-generate_for_cond_in_block491,13966 -generate_for_cond_in_block(C, G, Code, Whens) :-generate_for_cond_in_block491,13966 -add_blocking_vars([], [_]) :- !.add_blocking_vars498,14190 -add_blocking_vars([], [_]) :- !.add_blocking_vars498,14190 -add_blocking_vars([], [_]) :- !.add_blocking_vars498,14190 -add_blocking_vars(LV, LV).add_blocking_vars499,14223 -add_blocking_vars(LV, LV).add_blocking_vars499,14223 -fetch_out_variables_for_block([], [], []).fetch_out_variables_for_block501,14251 -fetch_out_variables_for_block([], [], []).fetch_out_variables_for_block501,14251 -fetch_out_variables_for_block(['?'|Args], [_|GArgs], LV) :-fetch_out_variables_for_block502,14294 -fetch_out_variables_for_block(['?'|Args], [_|GArgs], LV) :-fetch_out_variables_for_block502,14294 -fetch_out_variables_for_block(['?'|Args], [_|GArgs], LV) :-fetch_out_variables_for_block502,14294 -generate_for_each_arg_in_block([], false, true).generate_for_each_arg_in_block508,14531 -generate_for_each_arg_in_block([], false, true).generate_for_each_arg_in_block508,14531 -generate_for_each_arg_in_block([V], var(V), nonvar(V)) :- !.generate_for_each_arg_in_block509,14580 -generate_for_each_arg_in_block([V], var(V), nonvar(V)) :- !.generate_for_each_arg_in_block509,14580 -generate_for_each_arg_in_block([V], var(V), nonvar(V)) :- !.generate_for_each_arg_in_block509,14580 -generate_for_each_arg_in_block([V|L], (var(V),If), (nonvar(V);Whens)) :-generate_for_each_arg_in_block510,14641 -generate_for_each_arg_in_block([V|L], (var(V),If), (nonvar(V);Whens)) :-generate_for_each_arg_in_block510,14641 -generate_for_each_arg_in_block([V|L], (var(V),If), (nonvar(V);Whens)) :-generate_for_each_arg_in_block510,14641 -prolog:'$wait'(Na/Ar) :-$wait517,14840 -prolog:'$wait'(Na/Ar) :-$wait517,14840 -prolog:'$wait'(_).$wait522,15014 -prolog:'$wait'(_).$wait522,15014 -prolog:frozen(V, LG) :-frozen532,15172 -prolog:frozen(V, LG) :-frozen532,15172 -prolog:frozen(V, G) :-frozen537,15322 -prolog:frozen(V, G) :-frozen537,15322 -simplify_frozen( [prolog:freeze(_, G)|Gs], [G|NGs] ) :-simplify_frozen540,15401 -simplify_frozen( [prolog:freeze(_, G)|Gs], [G|NGs] ) :-simplify_frozen540,15401 -simplify_frozen( [prolog:freeze(_, G)|Gs], [G|NGs] ) :-simplify_frozen540,15401 -simplify_frozen( [prolog:when(_, G)|Gs], [G|NGs] ) :-simplify_frozen542,15488 -simplify_frozen( [prolog:when(_, G)|Gs], [G|NGs] ) :-simplify_frozen542,15488 -simplify_frozen( [prolog:when(_, G)|Gs], [G|NGs] ) :-simplify_frozen542,15488 -simplify_frozen( [prolog:dif(_, _)|Gs], NGs ) :-simplify_frozen544,15573 -simplify_frozen( [prolog:dif(_, _)|Gs], NGs ) :-simplify_frozen544,15573 -simplify_frozen( [prolog:dif(_, _)|Gs], NGs ) :-simplify_frozen544,15573 -simplify_frozen( [], [] ).simplify_frozen546,15653 -simplify_frozen( [], [] ).simplify_frozen546,15653 -list_to_conj([], true).list_to_conj548,15681 -list_to_conj([], true).list_to_conj548,15681 -list_to_conj([El], El).list_to_conj549,15705 -list_to_conj([El], El).list_to_conj549,15705 -list_to_conj([E,E1|Els], (E,C) ) :-list_to_conj550,15729 -list_to_conj([E,E1|Els], (E,C) ) :-list_to_conj550,15729 -list_to_conj([E,E1|Els], (E,C) ) :-list_to_conj550,15729 -internal_freeze(V,G) :-internal_freeze555,15875 -internal_freeze(V,G) :-internal_freeze555,15875 -internal_freeze(V,G) :-internal_freeze555,15875 -update_att(V, G) :-update_att558,15919 -update_att(V, G) :-update_att558,15919 -update_att(V, G) :-update_att558,15919 -update_att(V, G) :-update_att562,16075 -update_att(V, G) :-update_att562,16075 -update_att(V, G) :-update_att562,16075 -not_vmember(_, []).not_vmember566,16152 -not_vmember(_, []).not_vmember566,16152 -not_vmember(V, [V1|DonesSoFar]) :-not_vmember567,16172 -not_vmember(V, [V1|DonesSoFar]) :-not_vmember567,16172 -not_vmember(V, [V1|DonesSoFar]) :-not_vmember567,16172 -first_att(T, V) :-first_att571,16248 -first_att(T, V) :-first_att571,16248 -first_att(T, V) :-first_att571,16248 -check_first_attvar([V|_Vs], V0) :- attvar(V), !, V == V0.check_first_attvar575,16320 -check_first_attvar([V|_Vs], V0) :- attvar(V), !, V == V0.check_first_attvar575,16320 -check_first_attvar([V|_Vs], V0) :- attvar(V), !, V == V0.check_first_attvar575,16320 -check_first_attvar([_|Vs], V0) :-check_first_attvar576,16378 -check_first_attvar([_|Vs], V0) :-check_first_attvar576,16378 -check_first_attvar([_|Vs], V0) :-check_first_attvar576,16378 - -packages/python/swig/yap4py/prolog/pl/dbload.yap,2779 -load_mega_clause( Stream ) :-load_mega_clause37,1006 -load_mega_clause( Stream ) :-load_mega_clause37,1006 -load_mega_clause( Stream ) :-load_mega_clause37,1006 -'$input_lines'(R, csv, Lines ) :-$input_lines43,1162 -'$input_lines'(R, csv, Lines ) :-$input_lines43,1162 -'$input_lines'(R, csv, Lines ) :-$input_lines43,1162 -prolog:load_db(Fs) :-load_db51,1382 -prolog:load_db(Fs) :-load_db51,1382 -dbload(Fs, _, G) :-dbload59,1552 -dbload(Fs, _, G) :-dbload59,1552 -dbload(Fs, _, G) :-dbload59,1552 -dbload([], _, _) :- !.dbload62,1619 -dbload([], _, _) :- !.dbload62,1619 -dbload([], _, _) :- !.dbload62,1619 -dbload([F|Fs], M0, G) :- !,dbload63,1642 -dbload([F|Fs], M0, G) :- !,dbload63,1642 -dbload([F|Fs], M0, G) :- !,dbload63,1642 -dbload(M:F, _M0, G) :- !,dbload66,1709 -dbload(M:F, _M0, G) :- !,dbload66,1709 -dbload(M:F, _M0, G) :- !,dbload66,1709 -dbload(F, M0, G) :-dbload68,1753 -dbload(F, M0, G) :-dbload68,1753 -dbload(F, M0, G) :-dbload68,1753 -dbload(F, _, G) :-dbload71,1808 -dbload(F, _, G) :-dbload71,1808 -dbload(F, _, G) :-dbload71,1808 -do_dbload(F0, M0, G) :-do_dbload74,1864 -do_dbload(F0, M0, G) :-do_dbload74,1864 -do_dbload(F0, M0, G) :-do_dbload74,1864 -check_dbload_stream(R, M0) :-check_dbload_stream82,2005 -check_dbload_stream(R, M0) :-check_dbload_stream82,2005 -check_dbload_stream(R, M0) :-check_dbload_stream82,2005 -dbload_count(T0, M0) :-dbload_count90,2138 -dbload_count(T0, M0) :-dbload_count90,2138 -dbload_count(T0, M0) :-dbload_count90,2138 -get_module(M1:T0,_,T,M) :- !,get_module105,2463 -get_module(M1:T0,_,T,M) :- !,get_module105,2463 -get_module(M1:T0,_,T,M) :- !,get_module105,2463 -get_module(T,M,T,M).get_module107,2521 -get_module(T,M,T,M).get_module107,2521 -load_facts :-load_facts110,2544 -load_facts :-load_facts113,2614 -load_facts :-load_facts120,2806 -dbload_add_facts(R, M) :-dbload_add_facts128,2913 -dbload_add_facts(R, M) :-dbload_add_facts128,2913 -dbload_add_facts(R, M) :-dbload_add_facts128,2913 -dbload_add_fact(T0, M0) :-dbload_add_fact136,3044 -dbload_add_fact(T0, M0) :-dbload_add_fact136,3044 -dbload_add_fact(T0, M0) :-dbload_add_fact136,3044 -load_exofacts :-load_exofacts145,3233 -load_exofacts :-load_exofacts152,3428 -exodb_add_facts(R, M) :-exodb_add_facts160,3540 -exodb_add_facts(R, M) :-exodb_add_facts160,3540 -exodb_add_facts(R, M) :-exodb_add_facts160,3540 -protected_exodb_add_fact(R, M) :-protected_exodb_add_fact165,3628 -protected_exodb_add_fact(R, M) :-protected_exodb_add_fact165,3628 -protected_exodb_add_fact(R, M) :-protected_exodb_add_fact165,3628 -exodb_add_fact(T0, M0) :-exodb_add_fact173,3751 -exodb_add_fact(T0, M0) :-exodb_add_fact173,3751 -exodb_add_fact(T0, M0) :-exodb_add_fact173,3751 -clean_up :-clean_up182,3940 - -packages/python/swig/yap4py/prolog/pl/debug.yap,35348 -'$spy'([Mod|G]) :-$spy271,8348 -'$spy'([Mod|G]) :-$spy271,8348 -'$spy'([Mod|G]) :-$spy271,8348 -'$spy'([Mod|G]) :-$spy274,8434 -'$spy'([Mod|G]) :-$spy274,8434 -'$spy'([Mod|G]) :-$spy274,8434 -'$spy'([Mod|G], A1) :-$spy280,8551 -'$spy'([Mod|G], A1) :-$spy280,8551 -'$spy'([Mod|G], A1) :-$spy280,8551 -'$spy'([Mod|G], A1, A2) :-$spy286,8645 -'$spy'([Mod|G], A1, A2) :-$spy286,8645 -'$spy'([Mod|G], A1, A2) :-$spy286,8645 -'$spy'([Mod|G], A1, A2, A3) :-$spy292,8747 -'$spy'([Mod|G], A1, A2, A3) :-$spy292,8747 -'$spy'([Mod|G], A1, A2, A3) :-$spy292,8747 -'$spy'([Mod|G], A1, A2, A3, A4) :-$spy298,8857 -'$spy'([Mod|G], A1, A2, A3, A4) :-$spy298,8857 -'$spy'([Mod|G], A1, A2, A3, A4) :-$spy298,8857 -'$spy'([Mod|G], A1, A2, A3, A4, A5) :-$spy304,8972 -'$spy'([Mod|G], A1, A2, A3, A4, A5) :-$spy304,8972 -'$spy'([Mod|G], A1, A2, A3, A4, A5) :-$spy304,8972 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6) :-$spy310,9098 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6) :-$spy310,9098 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6) :-$spy310,9098 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6, A7) :-$spy316,9232 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6, A7) :-$spy316,9232 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6, A7) :-$spy316,9232 -'$trace_meta_call'( G, M, CP ) :-$trace_meta_call345,10037 -'$trace_meta_call'( G, M, CP ) :-$trace_meta_call345,10037 -'$trace_meta_call'( G, M, CP ) :-$trace_meta_call345,10037 -'$do_spy'(V, M, CP, Flag) :-$do_spy352,10310 -'$do_spy'(V, M, CP, Flag) :-$do_spy352,10310 -'$do_spy'(V, M, CP, Flag) :-$do_spy352,10310 -'$do_spy'(!, _, CP, _) :-$do_spy356,10414 -'$do_spy'(!, _, CP, _) :-$do_spy356,10414 -'$do_spy'(!, _, CP, _) :-$do_spy356,10414 -'$do_spy'('$cut_by'(M), _, _, _) :-$do_spy358,10460 -'$do_spy'('$cut_by'(M), _, _, _) :-$do_spy358,10460 -'$do_spy'('$cut_by'(M), _, _, _) :-$do_spy'('$cut_by358,10460 -'$do_spy'('$$cut_by'(M), _, _, _) :-$do_spy360,10515 -'$do_spy'('$$cut_by'(M), _, _, _) :-$do_spy360,10515 -'$do_spy'('$$cut_by'(M), _, _, _) :-$do_spy'('$$cut_by360,10515 -'$do_spy'(true, _, _, _) :- !.$do_spy362,10571 -'$do_spy'(true, _, _, _) :- !.$do_spy362,10571 -'$do_spy'(true, _, _, _) :- !.$do_spy362,10571 -'$do_spy'(M:G, _, CP, CalledFromDebugger) :- !,$do_spy364,10640 -'$do_spy'(M:G, _, CP, CalledFromDebugger) :- !,$do_spy364,10640 -'$do_spy'(M:G, _, CP, CalledFromDebugger) :- !,$do_spy364,10640 -'$do_spy'((A,B), M, CP, CalledFromDebugger) :- !,$do_spy366,10730 -'$do_spy'((A,B), M, CP, CalledFromDebugger) :- !,$do_spy366,10730 -'$do_spy'((A,B), M, CP, CalledFromDebugger) :- !,$do_spy366,10730 -'$do_spy'((T->A;B), M, CP, CalledFromDebugger) :- !,$do_spy369,10854 -'$do_spy'((T->A;B), M, CP, CalledFromDebugger) :- !,$do_spy369,10854 -'$do_spy'((T->A;B), M, CP, CalledFromDebugger) :- !,$do_spy369,10854 -'$do_spy'((T->A|B), M, CP, CalledFromDebugger) :- !,$do_spy375,11034 -'$do_spy'((T->A|B), M, CP, CalledFromDebugger) :- !,$do_spy375,11034 -'$do_spy'((T->A|B), M, CP, CalledFromDebugger) :- !,$do_spy375,11034 -'$do_spy'((T->A), M, CP, CalledFromDebugger) :- !,$do_spy384,11247 -'$do_spy'((T->A), M, CP, CalledFromDebugger) :- !,$do_spy384,11247 -'$do_spy'((T->A), M, CP, CalledFromDebugger) :- !,$do_spy384,11247 -'$do_spy'((A;B), M, CP, CalledFromDebugger) :- !,$do_spy386,11378 -'$do_spy'((A;B), M, CP, CalledFromDebugger) :- !,$do_spy386,11378 -'$do_spy'((A;B), M, CP, CalledFromDebugger) :- !,$do_spy386,11378 -'$do_spy'((A|B), M, CP, CalledFromDebugger) :- !,$do_spy393,11552 -'$do_spy'((A|B), M, CP, CalledFromDebugger) :- !,$do_spy393,11552 -'$do_spy'((A|B), M, CP, CalledFromDebugger) :- !,$do_spy393,11552 -'$do_spy'((\+G), M, CP, CalledFromDebugger) :- !,$do_spy400,11729 -'$do_spy'((\+G), M, CP, CalledFromDebugger) :- !,$do_spy400,11729 -'$do_spy'((\+G), M, CP, CalledFromDebugger) :- !,$do_spy400,11729 -'$do_spy'((not(G)), M, CP, CalledFromDebugger) :- !,$do_spy402,11824 -'$do_spy'((not(G)), M, CP, CalledFromDebugger) :- !,$do_spy402,11824 -'$do_spy'((not(G)), M, CP, CalledFromDebugger) :- !,$do_spy402,11824 -'$do_spy'(once(G), M, CP, CalledFromDebugger) :- !,$do_spy404,11922 -'$do_spy'(once(G), M, CP, CalledFromDebugger) :- !,$do_spy404,11922 -'$do_spy'(once(G), M, CP, CalledFromDebugger) :- !,$do_spy404,11922 -'$do_spy'(ignore(G), M, CP, CalledFromDebugger) :- !,$do_spy406,12024 -'$do_spy'(ignore(G), M, CP, CalledFromDebugger) :- !,$do_spy406,12024 -'$do_spy'(ignore(G), M, CP, CalledFromDebugger) :- !,$do_spy406,12024 -'$do_spy'(G, Module, _, CalledFromDebugger) :-$do_spy408,12130 -'$do_spy'(G, Module, _, CalledFromDebugger) :-$do_spy408,12130 -'$do_spy'(G, Module, _, CalledFromDebugger) :-$do_spy408,12130 -'$loop_spy'(GoalNumber, G, Module, CalledFromDebugger) :-$loop_spy419,12659 -'$loop_spy'(GoalNumber, G, Module, CalledFromDebugger) :-$loop_spy419,12659 -'$loop_spy'(GoalNumber, G, Module, CalledFromDebugger) :-$loop_spy419,12659 -'$TraceError'( abort, _, _, _, _) :-$TraceError433,13161 -'$TraceError'( abort, _, _, _, _) :-$TraceError433,13161 -'$TraceError'( abort, _, _, _, _) :-$TraceError433,13161 -'$TraceError'('$forward'('$retry_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError436,13234 -'$TraceError'('$forward'('$retry_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError436,13234 -'$TraceError'('$forward'('$retry_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError'('$forward'('$retry_spy436,13234 -'$TraceError'('$forward'('$fail_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError444,13479 -'$TraceError'('$forward'('$fail_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError444,13479 -'$TraceError'('$forward'('$fail_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError'('$forward'('$fail_spy444,13479 -'$TraceError'('$forward'('$fail_spy'(GoalNumber)), _, _, _, _) :- !,$TraceError447,13648 -'$TraceError'('$forward'('$fail_spy'(GoalNumber)), _, _, _, _) :- !,$TraceError447,13648 -'$TraceError'('$forward'('$fail_spy'(GoalNumber)), _, _, _, _) :- !,$TraceError'('$forward'('$fail_spy447,13648 -'$TraceError'('$forward'('$wrapper'(Event)), _, _, _, _) :-$TraceError451,13796 -'$TraceError'('$forward'('$wrapper'(Event)), _, _, _, _) :-$TraceError451,13796 -'$TraceError'('$forward'('$wrapper'(Event)), _, _, _, _) :-$TraceError'('$forward'('$wrapper451,13796 -'$TraceError'(Event, GoalNumber, G, Module, CalledFromDebugger) :-$TraceError455,13936 -'$TraceError'(Event, GoalNumber, G, Module, CalledFromDebugger) :-$TraceError455,13936 -'$TraceError'(Event, GoalNumber, G, Module, CalledFromDebugger) :-$TraceError455,13936 -'$debug_error'(Event) :-$debug_error465,14220 -'$debug_error'(Event) :-$debug_error465,14220 -'$debug_error'(Event) :-$debug_error465,14220 -'$debug_error'(_).$debug_error467,14269 -'$debug_error'(_)./p,predicate,predicate definition467,14269 -'$debug_error'(_).$debug_error467,14269 -'$loop_fail'(_GoalNumber, _G, _Module, CalledFromDebugger) :-$loop_fail472,14381 -'$loop_fail'(_GoalNumber, _G, _Module, CalledFromDebugger) :-$loop_fail472,14381 -'$loop_fail'(_GoalNumber, _G, _Module, CalledFromDebugger) :-$loop_fail472,14381 -'$loop_spy2'(GoalNumber, G, Module, CalledFromDebugger, CP) :-$loop_spy2488,14659 -'$loop_spy2'(GoalNumber, G, Module, CalledFromDebugger, CP) :-$loop_spy2488,14659 -'$loop_spy2'(GoalNumber, G, Module, CalledFromDebugger, CP) :-$loop_spy2488,14659 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal546,16449 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal546,16449 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal546,16449 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal548,16527 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal548,16527 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal548,16527 -'$show_trace'(_, G, Module, GoalNumber,_) :-$show_trace551,16614 -'$show_trace'(_, G, Module, GoalNumber,_) :-$show_trace551,16614 -'$show_trace'(_, G, Module, GoalNumber,_) :-$show_trace551,16614 -'$show_trace'(P,G,Module,GoalNumber,Deterministic) :-$show_trace553,16694 -'$show_trace'(P,G,Module,GoalNumber,Deterministic) :-$show_trace553,16694 -'$show_trace'(P,G,Module,GoalNumber,Deterministic) :-$show_trace553,16694 -'$zip'(_GoalNumber, _G, _Module) :-$zip559,16825 -'$zip'(_GoalNumber, _G, _Module) :-$zip559,16825 -'$zip'(_GoalNumber, _G, _Module) :-$zip559,16825 -'$zip'(GoalNumber, G, Module) :-$zip562,16901 -'$zip'(GoalNumber, G, Module) :-$zip562,16901 -'$zip'(GoalNumber, G, Module) :-$zip562,16901 -'$spycall'(G, M, _, _) :-$spycall581,17255 -'$spycall'(G, M, _, _) :-$spycall581,17255 -'$spycall'(G, M, _, _) :-$spycall581,17255 -'$spycall'(G, M, _, _) :-$spycall585,17357 -'$spycall'(G, M, _, _) :-$spycall585,17357 -'$spycall'(G, M, _, _) :-$spycall585,17357 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall595,17544 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall595,17544 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall595,17544 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall603,17775 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall603,17775 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall603,17775 -'$spycall_f'(G, M, _, _) :-$spycall_f606,17874 -'$spycall_f'(G, M, _, _) :-$spycall_f606,17874 -'$spycall_f'(G, M, _, _) :-$spycall_f606,17874 -'$spycall_f'(G, M, CalledFromDebugger, InRedo) :-$spycall_f610,18026 -'$spycall_f'(G, M, CalledFromDebugger, InRedo) :-$spycall_f610,18026 -'$spycall_f'(G, M, CalledFromDebugger, InRedo) :-$spycall_f610,18026 -'$spycall_expanded'(G, M, CalledFromDebugger, InRedo) :-$spycall_expanded613,18133 -'$spycall_expanded'(G, M, CalledFromDebugger, InRedo) :-$spycall_expanded613,18133 -'$spycall_expanded'(G, M, CalledFromDebugger, InRedo) :-$spycall_expanded613,18133 -'$spycall_expanded'(G, M, _CalledFromDebugger, InRedo) :-$spycall_expanded617,18315 -'$spycall_expanded'(G, M, _CalledFromDebugger, InRedo) :-$spycall_expanded617,18315 -'$spycall_expanded'(G, M, _CalledFromDebugger, InRedo) :-$spycall_expanded617,18315 -'$creep'('$execute_clause'(G,Mod,Ref,CP),_M) :-$creep646,18922 -'$creep'('$execute_clause'(G,Mod,Ref,CP),_M) :-$creep646,18922 -'$creep'('$execute_clause'(G,Mod,Ref,CP),_M) :-$creep'('$execute_clause646,18922 -'$creep'(G,M) :-$creep658,19174 -'$creep'(G,M) :-$creep658,19174 -'$creep'(G,M) :-$creep658,19174 -'$trace'(G,M) :-$trace677,19430 -'$trace'(G,M) :-$trace677,19430 -'$trace'(G,M) :-$trace677,19430 -'$tabled_predicate'(G,M) :-$tabled_predicate689,19611 -'$tabled_predicate'(G,M) :-$tabled_predicate689,19611 -'$tabled_predicate'(G,M) :-$tabled_predicate689,19611 -'$trace'(P,G,Module,L,Deterministic) :-$trace695,19797 -'$trace'(P,G,Module,L,Deterministic) :-$trace695,19797 -'$trace'(P,G,Module,L,Deterministic) :-$trace695,19797 -'$trace_msg'(P,G,Module,L,Deterministic) :-$trace_msg724,20452 -'$trace_msg'(P,G,Module,L,Deterministic) :-$trace_msg724,20452 -'$trace_msg'(P,G,Module,L,Deterministic) :-$trace_msg724,20452 -'$unleashed'(call) :- get_value('$leash',L), L /\ 2'1000 =:= 0. %'$unleashed743,20941 -'$unleashed'(call) :- get_value('$leash',L), L /\ 2'1000 =:= 0. %'$unleashed743,20941 -'$unleashed'(call) :- get_value('$leash',L), L /\ 2'1000 =:= 0. %'$unleashed743,20941 -'$unleashed'(exit) :- get_value('$leash',L), L /\ 2'0100 =:= 0. %'$unleashed744,21008 -'$unleashed'(exit) :- get_value('$leash',L), L /\ 2'0100 =:= 0. %'$unleashed744,21008 -'$unleashed'(exit) :- get_value('$leash',L), L /\ 2'0100 =:= 0. %'$unleashed744,21008 -'$unleashed'(redo) :- get_value('$leash',L), L /\ 2'0010 =:= 0. %'$unleashed745,21075 -'$unleashed'(redo) :- get_value('$leash',L), L /\ 2'0010 =:= 0. %'$unleashed745,21075 -'$unleashed'(redo) :- get_value('$leash',L), L /\ 2'0010 =:= 0. %'$unleashed745,21075 -'$unleashed'(fail) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed746,21142 -'$unleashed'(fail) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed746,21142 -'$unleashed'(fail) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed746,21142 -'$unleashed'(exception(_)) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed748,21229 -'$unleashed'(exception(_)) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed748,21229 -'$unleashed'(exception(_)) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed748,21229 -'$debugger_write'(Stream, G) :-$debugger_write750,21306 -'$debugger_write'(Stream, G) :-$debugger_write750,21306 -'$debugger_write'(Stream, G) :-$debugger_write750,21306 -'$debugger_write'(Stream, G) :-$debugger_write753,21423 -'$debugger_write'(Stream, G) :-$debugger_write753,21423 -'$debugger_write'(Stream, G) :-$debugger_write753,21423 -'$action'(13,P,CallNumber,G,Module,Zip) :- !, % newline creep$action756,21476 -'$action'(13,P,CallNumber,G,Module,Zip) :- !, % newline creep$action756,21476 -'$action'(13,P,CallNumber,G,Module,Zip) :- !, % newline creep$action756,21476 -'$action'(10,_,_,_,_,on) :- !, % newline creep$action759,21610 -'$action'(10,_,_,_,_,on) :- !, % newline creep$action759,21610 -'$action'(10,_,_,_,_,on) :- !, % newline creep$action759,21610 -'$action'(0'!,_,_,_,_,_) :- !, % ! 'g execute$action761,21699 -'$action'(0'!,_,_,_,_,_) :- !, % ! 'g execute$action761,21699 -'$action'(0'!,_,_,_,_,_) :- !, % ! 'g execute$action761,21699 -'$action'(0'^,_,_,G,_,_) :- !, % '$action784,22472 -'$action'(0'^,_,_,G,_,_) :- !, % '$action784,22472 -'$action'(0'^,_,_,G,_,_) :- !, % '$action784,22472 -'$action'(0'a,_,_,_,_,off) :- !, % 'a abort$action788,22558 -'$action'(0'a,_,_,_,_,off) :- !, % 'a abort$action788,22558 -'$action'(0'a,_,_,_,_,off) :- !, % 'a abort$action788,22558 -'$action'(0'b,_,_,_,_,_) :- !, % 'b break$action793,22668 -'$action'(0'b,_,_,_,_,_) :- !, % 'b break$action793,22668 -'$action'(0'b,_,_,_,_,_) :- !, % 'b break$action793,22668 -'$action'(0'A,_,_,_,_,_) :- !, % 'b break$action797,22746 -'$action'(0'A,_,_,_,_,_) :- !, % 'b break$action797,22746 -'$action'(0'A,_,_,_,_,_) :- !, % 'b break$action797,22746 -'$action'(0'c,_,_,_,_,on) :- !, % 'c creep$action801,22832 -'$action'(0'c,_,_,_,_,on) :- !, % 'c creep$action801,22832 -'$action'(0'c,_,_,_,_,on) :- !, % 'c creep$action801,22832 -'$action'(0'e,_,_,_,_,_) :- !, % 'e exit$action804,22935 -'$action'(0'e,_,_,_,_,_) :- !, % 'e exit$action804,22935 -'$action'(0'e,_,_,_,_,_) :- !, % 'e exit$action804,22935 -'$action'(0'f,_,CallId,_,_,_) :- !, % 'f fail$action807,23004 -'$action'(0'f,_,CallId,_,_,_) :- !, % 'f fail$action807,23004 -'$action'(0'f,_,CallId,_,_,_) :- !, % 'f fail$action807,23004 -'$action'(0'h,_,_,_,_,_) :- !, % 'h help$action810,23138 -'$action'(0'h,_,_,_,_,_) :- !, % 'h help$action810,23138 -'$action'(0'h,_,_,_,_,_) :- !, % 'h help$action810,23138 -'$action'(0'?,_,_,_,_,_) :- !, % '? help$action814,23224 -'$action'(0'?,_,_,_,_,_) :- !, % '? help$action814,23224 -'$action'(0'?,_,_,_,_,_) :- !, % '? help$action814,23224 -'$action'(0'p,_,_,G,Module,_) :- !, % 'p print$action818,23310 -'$action'(0'p,_,_,G,Module,_) :- !, % 'p print$action818,23310 -'$action'(0'p,_,_,G,Module,_) :- !, % 'p print$action818,23310 -'$action'(0'd,_,_,G,Module,_) :- !, % 'd display$action826,23519 -'$action'(0'd,_,_,G,Module,_) :- !, % 'd display$action826,23519 -'$action'(0'd,_,_,G,Module,_) :- !, % 'd display$action826,23519 -'$action'(0'l,_,_,_,_,on) :- !, % 'l leap$action834,23734 -'$action'(0'l,_,_,_,_,on) :- !, % 'l leap$action834,23734 -'$action'(0'l,_,_,_,_,on) :- !, % 'l leap$action834,23734 -'$action'(0'z,_,_,_,_,zip) :- !, % 'z zip, fast leap$action838,23872 -'$action'(0'z,_,_,_,_,zip) :- !, % 'z zip, fast leap$action838,23872 -'$action'(0'z,_,_,_,_,zip) :- !, % 'z zip, fast leap$action838,23872 -'$action'(0'k,_,_,_,_,zip) :- !, % 'k zip, fast leap$action844,24084 -'$action'(0'k,_,_,_,_,zip) :- !, % 'k zip, fast leap$action844,24084 -'$action'(0'k,_,_,_,_,zip) :- !, % 'k zip, fast leap$action844,24084 -'$action'(0'n,_,_,_,_,off) :- !, % 'n nodebug$action850,24295 -'$action'(0'n,_,_,_,_,off) :- !, % 'n nodebug$action850,24295 -'$action'(0'n,_,_,_,_,off) :- !, % 'n nodebug$action850,24295 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action856,24485 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action856,24485 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action856,24485 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action860,24675 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action860,24675 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action860,24675 -'$action'(0's,P,CallNumber,_,_,on) :- !, % 's skip$action864,24856 -'$action'(0's,P,CallNumber,_,_,on) :- !, % 's skip$action864,24856 -'$action'(0's,P,CallNumber,_,_,on) :- !, % 's skip$action864,24856 -'$action'(0't,P,CallNumber,_,_,zip) :- !, % 't fast skip$action874,25080 -'$action'(0't,P,CallNumber,_,_,zip) :- !, % 't fast skip$action874,25080 -'$action'(0't,P,CallNumber,_,_,zip) :- !, % 't fast skip$action874,25080 -'$action'(0'+,_,_,G,M,_) :- !, % '+ spy this$action882,25303 -'$action'(0'+,_,_,G,M,_) :- !, % '+ spy this$action882,25303 -'$action'(0'+,_,_,G,M,_) :- !, % '+ spy this$action882,25303 -'$action'(0'-,_,_,G,M,_) :- !, % '- nospy this$action886,25413 -'$action'(0'-,_,_,G,M,_) :- !, % '- nospy this$action886,25413 -'$action'(0'-,_,_,G,M,_) :- !, % '- nospy this$action886,25413 -'$action'(0'g,_,_,_,_,_) :- !, % 'g ancestors$action890,25527 -'$action'(0'g,_,_,_,_,_) :- !, % 'g ancestors$action890,25527 -'$action'(0'g,_,_,_,_,_) :- !, % 'g ancestors$action890,25527 -'$action'(0'T,exception(G),_,_,_,_) :- !, % 'T throw$action894,25671 -'$action'(0'T,exception(G),_,_,_,_) :- !, % 'T throw$action894,25671 -'$action'(0'T,exception(G),_,_,_,_) :- !, % 'T throw$action894,25671 -'$action'(C,_,_,_,_,_) :-$action896,25761 -'$action'(C,_,_,_,_,_) :-$action896,25761 -'$action'(C,_,_,_,_,_) :-$action896,25761 -'$continue_debugging'(_, _) :-$continue_debugging906,26030 -'$continue_debugging'(_, _) :-$continue_debugging906,26030 -'$continue_debugging'(_, _) :-$continue_debugging906,26030 -'$continue_debugging'(_, debugger) :- !.$continue_debugging910,26112 -'$continue_debugging'(_, debugger) :- !.$continue_debugging910,26112 -'$continue_debugging'(_, debugger) :- !.$continue_debugging910,26112 -'$continue_debugging'(zip, _) :- !.$continue_debugging913,26209 -'$continue_debugging'(zip, _) :- !.$continue_debugging913,26209 -'$continue_debugging'(zip, _) :- !.$continue_debugging913,26209 -'$continue_debugging'(_, creep) :- !,$continue_debugging914,26245 -'$continue_debugging'(_, creep) :- !,$continue_debugging914,26245 -'$continue_debugging'(_, creep) :- !,$continue_debugging914,26245 -'$continue_debugging'(_, spy) :-$continue_debugging916,26294 -'$continue_debugging'(_, spy) :-$continue_debugging916,26294 -'$continue_debugging'(_, spy) :-$continue_debugging916,26294 -'$continue_debugging'(fail, _) :- !.$continue_debugging920,26374 -'$continue_debugging'(fail, _) :- !.$continue_debugging920,26374 -'$continue_debugging'(fail, _) :- !.$continue_debugging920,26374 -'$continue_debugging'(_, _).$continue_debugging921,26411 -'$continue_debugging'(_, _)./p,predicate,predicate definition921,26411 -'$continue_debugging'(_, _).$continue_debugging921,26411 -'$continue_debugging_goal'(yes,G) :- !,$continue_debugging_goal924,26522 -'$continue_debugging_goal'(yes,G) :- !,$continue_debugging_goal924,26522 -'$continue_debugging_goal'(yes,G) :- !,$continue_debugging_goal924,26522 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal927,26608 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal927,26608 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal927,26608 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal931,26765 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal931,26765 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal931,26765 -'$execute_dgoal'('$execute_nonstop'(G,M)) :-$execute_dgoal934,26829 -'$execute_dgoal'('$execute_nonstop'(G,M)) :-$execute_dgoal934,26829 -'$execute_dgoal'('$execute_nonstop'(G,M)) :-$execute_dgoal'('$execute_nonstop934,26829 -'$execute_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_dgoal936,26901 -'$execute_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_dgoal936,26901 -'$execute_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_dgoal'('$execute_clause936,26901 -'$execute_creep_dgoal'('$execute_nonstop'(G,M)) :-$execute_creep_dgoal939,26988 -'$execute_creep_dgoal'('$execute_nonstop'(G,M)) :-$execute_creep_dgoal939,26988 -'$execute_creep_dgoal'('$execute_nonstop'(G,M)) :-$execute_creep_dgoal'('$execute_nonstop939,26988 -'$execute_creep_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_creep_dgoal942,27076 -'$execute_creep_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_creep_dgoal942,27076 -'$execute_creep_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_creep_dgoal'('$execute_clause942,27076 -'$show_ancestors'(HowMany) :-$show_ancestors946,27179 -'$show_ancestors'(HowMany) :-$show_ancestors946,27179 -'$show_ancestors'(HowMany) :-$show_ancestors946,27179 -'$show_ancestors'([],_).$show_ancestors957,27386 -'$show_ancestors'([],_)./p,predicate,predicate definition957,27386 -'$show_ancestors'([],_).$show_ancestors957,27386 -'$show_ancestors'([_|_],0) :- !.$show_ancestors958,27411 -'$show_ancestors'([_|_],0) :- !.$show_ancestors958,27411 -'$show_ancestors'([_|_],0) :- !.$show_ancestors958,27411 -'$show_ancestors'([info(L,M,G,Retry,Det,_Exited)|History],HowMany) :-$show_ancestors959,27444 -'$show_ancestors'([info(L,M,G,Retry,Det,_Exited)|History],HowMany) :-$show_ancestors959,27444 -'$show_ancestors'([info(L,M,G,Retry,Det,_Exited)|History],HowMany) :-$show_ancestors959,27444 -'$show_ancestor'(_,_,_,_,Det,HowMany,HowMany) :-$show_ancestor964,27656 -'$show_ancestor'(_,_,_,_,Det,HowMany,HowMany) :-$show_ancestor964,27656 -'$show_ancestor'(_,_,_,_,Det,HowMany,HowMany) :-$show_ancestor964,27656 -'$show_ancestor'(GoalNumber, M, G, Retry, _, HowMany, HowMany1) :-$show_ancestor967,27738 -'$show_ancestor'(GoalNumber, M, G, Retry, _, HowMany, HowMany1) :-$show_ancestor967,27738 -'$show_ancestor'(GoalNumber, M, G, Retry, _, HowMany, HowMany1) :-$show_ancestor967,27738 -'$show_ancestor'(GoalNumber, M, G, _, _, HowMany, HowMany1) :-$show_ancestor971,27906 -'$show_ancestor'(GoalNumber, M, G, _, _, HowMany, HowMany1) :-$show_ancestor971,27906 -'$show_ancestor'(GoalNumber, M, G, _, _, HowMany, HowMany1) :-$show_ancestor971,27906 -'$ilgl'(C) :-$ilgl992,28965 -'$ilgl'(C) :-$ilgl992,28965 -'$ilgl'(C) :-$ilgl992,28965 -'$skipeol'(10) :- !.$skipeol997,29064 -'$skipeol'(10) :- !.$skipeol997,29064 -'$skipeol'(10) :- !.$skipeol997,29064 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C)./p,predicate,predicate definition998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol'(_) :- get_code( debugger_input,C), '$skipeol998,29085 -'$scan_number'(_, _, Nb) :-$scan_number1000,29147 -'$scan_number'(_, _, Nb) :-$scan_number1000,29147 -'$scan_number'(_, _, Nb) :-$scan_number1000,29147 -'$scan_number'(_, CallId, CallId).$scan_number1003,29233 -'$scan_number'(_, CallId, CallId)./p,predicate,predicate definition1003,29233 -'$scan_number'(_, CallId, CallId).$scan_number1003,29233 -'$scan_number2'(10, _) :- !, fail.$scan_number21005,29269 -'$scan_number2'(10, _) :- !, fail.$scan_number21005,29269 -'$scan_number2'(10, _) :- !, fail.$scan_number21005,29269 -'$scan_number2'(0' , Nb) :- !, % '$scan_number21006,29304 -'$scan_number2'(0' , Nb) :- !, % '$scan_number21006,29304 -'$scan_number2'(0' , Nb) :- !, % '$scan_number21006,29304 -'$scan_number2'(0' , Nb) :- !, %'$scan_number21009,29395 -'$scan_number2'(0' , Nb) :- !, %'$scan_number21009,29395 -'$scan_number2'(0' , Nb) :- !, %'$scan_number21009,29395 -'$scan_number2'(C, Nb) :-$scan_number21012,29484 -'$scan_number2'(C, Nb) :-$scan_number21012,29484 -'$scan_number2'(C, Nb) :-$scan_number21012,29484 -'$scan_number3'(10, Nb, Nb) :- !, Nb > 0.$scan_number31015,29539 -'$scan_number3'(10, Nb, Nb) :- !, Nb > 0.$scan_number31015,29539 -'$scan_number3'(10, Nb, Nb) :- !, Nb > 0.$scan_number31015,29539 -'$scan_number3'( C, Nb0, Nb) :-$scan_number31016,29582 -'$scan_number3'( C, Nb0, Nb) :-$scan_number31016,29582 -'$scan_number3'( C, Nb0, Nb) :-$scan_number31016,29582 -'$print_deb_sterm'(G) :-$print_deb_sterm1022,29724 -'$print_deb_sterm'(G) :-$print_deb_sterm1022,29724 -'$print_deb_sterm'(G) :-$print_deb_sterm1022,29724 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94)./p,predicate,predicate definition1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm'(_) :- '$skipeol1027,29875 -'$get_sterm_list'(L) :-$get_sterm_list1029,29917 -'$get_sterm_list'(L) :-$get_sterm_list1029,29917 -'$get_sterm_list'(L) :-$get_sterm_list1029,29917 -'$deb_inc_in_sterm_oldie'(94,L0,CN) :- !,$deb_inc_in_sterm_oldie1034,30046 -'$deb_inc_in_sterm_oldie'(94,L0,CN) :- !,$deb_inc_in_sterm_oldie1034,30046 -'$deb_inc_in_sterm_oldie'(94,L0,CN) :- !,$deb_inc_in_sterm_oldie1034,30046 -'$deb_inc_in_sterm_oldie'(C,[],C).$deb_inc_in_sterm_oldie1038,30179 -'$deb_inc_in_sterm_oldie'(C,[],C)./p,predicate,predicate definition1038,30179 -'$deb_inc_in_sterm_oldie'(C,[],C).$deb_inc_in_sterm_oldie1038,30179 -'$get_sterm_list'(L0,C,N,L) :-$get_sterm_list1040,30215 -'$get_sterm_list'(L0,C,N,L) :-$get_sterm_list1040,30215 -'$get_sterm_list'(L0,C,N,L) :-$get_sterm_list1040,30215 -'$deb_get_sterm_in_g'([],G,G).$deb_get_sterm_in_g1047,30498 -'$deb_get_sterm_in_g'([],G,G)./p,predicate,predicate definition1047,30498 -'$deb_get_sterm_in_g'([],G,G).$deb_get_sterm_in_g1047,30498 -'$deb_get_sterm_in_g'([H|T],G,A) :-$deb_get_sterm_in_g1048,30529 -'$deb_get_sterm_in_g'([H|T],G,A) :-$deb_get_sterm_in_g1048,30529 -'$deb_get_sterm_in_g'([H|T],G,A) :-$deb_get_sterm_in_g1048,30529 -'$get_deb_depth'(10,10) :- !. % default depth is 0$get_deb_depth1057,30709 -'$get_deb_depth'(10,10) :- !. % default depth is 0$get_deb_depth1057,30709 -'$get_deb_depth'(10,10) :- !. % default depth is 0$get_deb_depth1057,30709 -'$get_deb_depth'(C,XF) :-$get_deb_depth1058,30761 -'$get_deb_depth'(C,XF) :-$get_deb_depth1058,30761 -'$get_deb_depth'(C,XF) :-$get_deb_depth1058,30761 -'$get_deb_depth_char_by_char'(10,X,X) :- !.$get_deb_depth_char_by_char1061,30828 -'$get_deb_depth_char_by_char'(10,X,X) :- !.$get_deb_depth_char_by_char1061,30828 -'$get_deb_depth_char_by_char'(10,X,X) :- !.$get_deb_depth_char_by_char1061,30828 -'$get_deb_depth_char_by_char'(C,X0,XF) :-$get_deb_depth_char_by_char1062,30872 -'$get_deb_depth_char_by_char'(C,X0,XF) :-$get_deb_depth_char_by_char1062,30872 -'$get_deb_depth_char_by_char'(C,X0,XF) :-$get_deb_depth_char_by_char1062,30872 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C)./p,predicate,predicate definition1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol1068,31059 -'$set_deb_depth'(D) :-$set_deb_depth1070,31116 -'$set_deb_depth'(D) :-$set_deb_depth1070,31116 -'$set_deb_depth'(D) :-$set_deb_depth1070,31116 -'$delete_if_there'([], _, TN, [TN]).$delete_if_there1075,31271 -'$delete_if_there'([], _, TN, [TN])./p,predicate,predicate definition1075,31271 -'$delete_if_there'([], _, TN, [TN]).$delete_if_there1075,31271 -'$delete_if_there'([T|L], T, TN, [TN|L]).$delete_if_there1076,31308 -'$delete_if_there'([T|L], T, TN, [TN|L])./p,predicate,predicate definition1076,31308 -'$delete_if_there'([T|L], T, TN, [TN|L]).$delete_if_there1076,31308 -'$delete_if_there'([Q|L], T, TN, [Q|LN]) :-$delete_if_there1077,31350 -'$delete_if_there'([Q|L], T, TN, [Q|LN]) :-$delete_if_there1077,31350 -'$delete_if_there'([Q|L], T, TN, [Q|LN]) :-$delete_if_there1077,31350 -'$debugger_deterministic_goal'(G) :-$debugger_deterministic_goal1080,31430 -'$debugger_deterministic_goal'(G) :-$debugger_deterministic_goal1080,31430 -'$debugger_deterministic_goal'(G) :-$debugger_deterministic_goal1080,31430 -'$cps'([CP|CPs]) :-$cps1090,31774 -'$cps'([CP|CPs]) :-$cps1090,31774 -'$cps'([CP|CPs]) :-$cps1090,31774 -'$cps'([]).$cps1094,31881 -'$cps'([])./p,predicate,predicate definition1094,31881 -'$cps'([]).$cps1094,31881 -'$debugger_skip_spycall'([CP|CPs],CPs1) :-$debugger_skip_spycall1097,31895 -'$debugger_skip_spycall'([CP|CPs],CPs1) :-$debugger_skip_spycall1097,31895 -'$debugger_skip_spycall'([CP|CPs],CPs1) :-$debugger_skip_spycall1097,31895 -'$debugger_skip_spycall'(CPs,CPs).$debugger_skip_spycall1100,32036 -'$debugger_skip_spycall'(CPs,CPs)./p,predicate,predicate definition1100,32036 -'$debugger_skip_spycall'(CPs,CPs).$debugger_skip_spycall1100,32036 -'$debugger_skip_traces'([CP|CPs],CPs1) :-$debugger_skip_traces1102,32072 -'$debugger_skip_traces'([CP|CPs],CPs1) :-$debugger_skip_traces1102,32072 -'$debugger_skip_traces'([CP|CPs],CPs1) :-$debugger_skip_traces1102,32072 -'$debugger_skip_traces'(CPs,CPs).$debugger_skip_traces1105,32209 -'$debugger_skip_traces'(CPs,CPs)./p,predicate,predicate definition1105,32209 -'$debugger_skip_traces'(CPs,CPs).$debugger_skip_traces1105,32209 -'$debugger_skip_loop_spy2'([CP|CPs],CPs1) :-$debugger_skip_loop_spy21107,32244 -'$debugger_skip_loop_spy2'([CP|CPs],CPs1) :-$debugger_skip_loop_spy21107,32244 -'$debugger_skip_loop_spy2'([CP|CPs],CPs1) :-$debugger_skip_loop_spy21107,32244 -'$debugger_skip_loop_spy2'(CPs,CPs).$debugger_skip_loop_spy21110,32391 -'$debugger_skip_loop_spy2'(CPs,CPs)./p,predicate,predicate definition1110,32391 -'$debugger_skip_loop_spy2'(CPs,CPs).$debugger_skip_loop_spy21110,32391 -'$debugger_expand_meta_call'( G, VL, M:G2 ) :-$debugger_expand_meta_call1112,32429 -'$debugger_expand_meta_call'( G, VL, M:G2 ) :-$debugger_expand_meta_call1112,32429 -'$debugger_expand_meta_call'( G, VL, M:G2 ) :-$debugger_expand_meta_call1112,32429 -'$debugger_process_meta_arguments'(G, M, G1) :-$debugger_process_meta_arguments1122,32670 -'$debugger_process_meta_arguments'(G, M, G1) :-$debugger_process_meta_arguments1122,32670 -'$debugger_process_meta_arguments'(G, M, G1) :-$debugger_process_meta_arguments1122,32670 -'$debugger_process_meta_arguments'(G, _M, G).$debugger_process_meta_arguments1130,32932 -'$debugger_process_meta_arguments'(G, _M, G)./p,predicate,predicate definition1130,32932 -'$debugger_process_meta_arguments'(G, _M, G).$debugger_process_meta_arguments1130,32932 -'$ldebugger_process_meta_args'([], _, [], []).$ldebugger_process_meta_args1132,32979 -'$ldebugger_process_meta_args'([], _, [], [])./p,predicate,predicate definition1132,32979 -'$ldebugger_process_meta_args'([], _, [], []).$ldebugger_process_meta_args1132,32979 -'$ldebugger_process_meta_args'([G|BGs], M, [N|BMs], ['$spy'([M1|G1])|BG1s]) :-$ldebugger_process_meta_args1133,33026 -'$ldebugger_process_meta_args'([G|BGs], M, [N|BMs], ['$spy'([M1|G1])|BG1s]) :-$ldebugger_process_meta_args1133,33026 -'$ldebugger_process_meta_args'([G|BGs], M, [N|BMs], ['$spy'([M1|G1])|BG1s]) :-$ldebugger_process_meta_args'([G|BGs], M, [N|BMs], ['$spy1133,33026 -'$ldebugger_process_meta_args'([G|BGs], M, [_|BMs], [G|BG1s]) :-$ldebugger_process_meta_args1141,33268 -'$ldebugger_process_meta_args'([G|BGs], M, [_|BMs], [G|BG1s]) :-$ldebugger_process_meta_args1141,33268 -'$ldebugger_process_meta_args'([G|BGs], M, [_|BMs], [G|BG1s]) :-$ldebugger_process_meta_args1141,33268 -'$trace_call'(G1,M1) :-$trace_call1144,33386 -'$trace_call'(G1,M1) :-$trace_call1144,33386 -'$trace_call'(G1,M1) :-$trace_call1144,33386 -'$trace_call'(G1,M1, A1) :-$trace_call1146,33444 -'$trace_call'(G1,M1, A1) :-$trace_call1146,33444 -'$trace_call'(G1,M1, A1) :-$trace_call1146,33444 -'$trace_call'(G1,M1, A1, A2) :-$trace_call1148,33510 -'$trace_call'(G1,M1, A1, A2) :-$trace_call1148,33510 -'$trace_call'(G1,M1, A1, A2) :-$trace_call1148,33510 -'$trace_call'(G1,M1, A1, A2, A3) :-$trace_call1150,33584 -'$trace_call'(G1,M1, A1, A2, A3) :-$trace_call1150,33584 -'$trace_call'(G1,M1, A1, A2, A3) :-$trace_call1150,33584 -'$trace_call'(G1,M1, A1, A2, A3, A4) :-$trace_call1152,33666 -'$trace_call'(G1,M1, A1, A2, A3, A4) :-$trace_call1152,33666 -'$trace_call'(G1,M1, A1, A2, A3, A4) :-$trace_call1152,33666 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5) :-$trace_call1154,33756 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5) :-$trace_call1154,33756 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5) :-$trace_call1154,33756 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6 ) :-$trace_call1156,33854 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6 ) :-$trace_call1156,33854 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6 ) :-$trace_call1156,33854 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7) :-$trace_call1158,33962 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7) :-$trace_call1158,33962 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7) :-$trace_call1158,33962 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8) :-$trace_call1160,34076 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8) :-$trace_call1160,34076 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8) :-$trace_call1160,34076 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9) :-$trace_call1162,34198 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9) :-$trace_call1162,34198 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9) :-$trace_call1162,34198 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) :-$trace_call1164,34328 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) :-$trace_call1164,34328 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) :-$trace_call1164,34328 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) :-$trace_call1166,34468 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) :-$trace_call1166,34468 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) :-$trace_call1166,34468 -'$trace_call'(G1,M1, EA1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) :-$trace_call1168,34618 -'$trace_call'(G1,M1, EA1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) :-$trace_call1168,34618 -'$trace_call'(G1,M1, EA1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) :-$trace_call1168,34618 - -packages/python/swig/yap4py/prolog/pl/depth_bound.yap,307 -system_module( '$_depth_bound', [depth_bound_call/2], []).system_module28,778 -system_module( '$_depth_bound', [depth_bound_call/2], []).system_module28,778 -depth_bound_call(A,D) :-depth_bound_call32,905 -depth_bound_call(A,D) :-depth_bound_call32,905 -depth_bound_call(A,D) :-depth_bound_call32,905 - -packages/python/swig/yap4py/prolog/pl/dialect.yap,1382 -prolog:expects_dialect(yap) :- !,expects_dialect16,354 -prolog:expects_dialect(yap) :- !,expects_dialect16,354 -prolog:expects_dialect(Dialect) :-expects_dialect19,439 -prolog:expects_dialect(Dialect) :-expects_dialect19,439 -check_dialect(Dialect) :-check_dialect29,713 -check_dialect(Dialect) :-check_dialect29,713 -check_dialect(Dialect) :-check_dialect29,713 -check_dialect(Dialect) :-check_dialect32,821 -check_dialect(Dialect) :-check_dialect32,821 -check_dialect(Dialect) :-check_dialect32,821 -check_dialect(Dialect) :-check_dialect35,933 -check_dialect(Dialect) :-check_dialect35,933 -check_dialect(Dialect) :-check_dialect35,933 -check_dialect(Dialect) :-check_dialect37,1004 -check_dialect(Dialect) :-check_dialect37,1004 -check_dialect(Dialect) :-check_dialect37,1004 -exists_source(Source, Path) :-exists_source56,1523 -exists_source(Source, Path) :-exists_source56,1523 -exists_source(Source, Path) :-exists_source56,1523 -source_exports(Source, Export) :-source_exports71,1950 -source_exports(Source, Export) :-source_exports71,1950 -source_exports(Source, Export) :-source_exports71,1950 -open_source(File, In) :-open_source83,2249 -open_source(File, In) :-open_source83,2249 -open_source(File, In) :-open_source83,2249 -exports(In, Exports) :-exports91,2380 -exports(In, Exports) :-exports91,2380 -exports(In, Exports) :-exports91,2380 - -packages/python/swig/yap4py/prolog/pl/directives.yap,17847 -'$all_directives'(_:G1) :- !,$all_directives50,1409 -'$all_directives'(_:G1) :- !,$all_directives50,1409 -'$all_directives'(_:G1) :- !,$all_directives50,1409 -'$all_directives'((G1,G2)) :- !,$all_directives52,1463 -'$all_directives'((G1,G2)) :- !,$all_directives52,1463 -'$all_directives'((G1,G2)) :- !,$all_directives52,1463 -'$all_directives'(G) :- !,$all_directives55,1544 -'$all_directives'(G) :- !,$all_directives55,1544 -'$all_directives'(G) :- !,$all_directives55,1544 -:- multifile prolog:'$exec_directive'/5, prolog:'$directive'/1.multifile59,1634 -:- multifile prolog:'$exec_directive'/5, prolog:'$directive'/1.multifile59,1634 -'$directive'(block(_)).$directive63,1701 -'$directive'(block(_))./p,predicate,predicate definition63,1701 -'$directive'(block(_)).$directive63,1701 -'$directive'(char_conversion(_,_)).$directive64,1725 -'$directive'(char_conversion(_,_))./p,predicate,predicate definition64,1725 -'$directive'(char_conversion(_,_)).$directive64,1725 -'$directive'(compile(_)).$directive65,1761 -'$directive'(compile(_))./p,predicate,predicate definition65,1761 -'$directive'(compile(_)).$directive65,1761 -'$directive'(consult(_)).$directive66,1787 -'$directive'(consult(_))./p,predicate,predicate definition66,1787 -'$directive'(consult(_)).$directive66,1787 -'$directive'(discontiguous(_)).$directive67,1813 -'$directive'(discontiguous(_))./p,predicate,predicate definition67,1813 -'$directive'(discontiguous(_)).$directive67,1813 -'$directive'(dynamic(_)).$directive68,1845 -'$directive'(dynamic(_))./p,predicate,predicate definition68,1845 -'$directive'(dynamic(_)).$directive68,1845 -'$directive'(elif(_)).$directive69,1871 -'$directive'(elif(_))./p,predicate,predicate definition69,1871 -'$directive'(elif(_)).$directive69,1871 -'$directive'(else).$directive70,1894 -'$directive'(else)./p,predicate,predicate definition70,1894 -'$directive'(else).$directive70,1894 -'$directive'(encoding(_)).$directive71,1914 -'$directive'(encoding(_))./p,predicate,predicate definition71,1914 -'$directive'(encoding(_)).$directive71,1914 -'$directive'(endif).$directive72,1941 -'$directive'(endif)./p,predicate,predicate definition72,1941 -'$directive'(endif).$directive72,1941 -'$directive'(ensure_loaded(_)).$directive73,1962 -'$directive'(ensure_loaded(_))./p,predicate,predicate definition73,1962 -'$directive'(ensure_loaded(_)).$directive73,1962 -'$directive'(expects_dialect(_)).$directive74,1994 -'$directive'(expects_dialect(_))./p,predicate,predicate definition74,1994 -'$directive'(expects_dialect(_)).$directive74,1994 -'$directive'(if(_)).$directive75,2028 -'$directive'(if(_))./p,predicate,predicate definition75,2028 -'$directive'(if(_)).$directive75,2028 -'$directive'(include(_)).$directive76,2049 -'$directive'(include(_))./p,predicate,predicate definition76,2049 -'$directive'(include(_)).$directive76,2049 -'$directive'(initialization(_)).$directive77,2075 -'$directive'(initialization(_))./p,predicate,predicate definition77,2075 -'$directive'(initialization(_)).$directive77,2075 -'$directive'(initialization(_,_)).$directive78,2108 -'$directive'(initialization(_,_))./p,predicate,predicate definition78,2108 -'$directive'(initialization(_,_)).$directive78,2108 -'$directive'(license(_)).$directive79,2143 -'$directive'(license(_))./p,predicate,predicate definition79,2143 -'$directive'(license(_)).$directive79,2143 -'$directive'(meta_predicate(_)).$directive80,2169 -'$directive'(meta_predicate(_))./p,predicate,predicate definition80,2169 -'$directive'(meta_predicate(_)).$directive80,2169 -'$directive'(module(_,_)).$directive81,2202 -'$directive'(module(_,_))./p,predicate,predicate definition81,2202 -'$directive'(module(_,_)).$directive81,2202 -'$directive'(module(_,_,_)).$directive82,2229 -'$directive'(module(_,_,_))./p,predicate,predicate definition82,2229 -'$directive'(module(_,_,_)).$directive82,2229 -'$directive'(module_transparent(_)).$directive83,2258 -'$directive'(module_transparent(_))./p,predicate,predicate definition83,2258 -'$directive'(module_transparent(_)).$directive83,2258 -'$directive'(multifile(_)).$directive84,2295 -'$directive'(multifile(_))./p,predicate,predicate definition84,2295 -'$directive'(multifile(_)).$directive84,2295 -'$directive'(noprofile(_)).$directive85,2323 -'$directive'(noprofile(_))./p,predicate,predicate definition85,2323 -'$directive'(noprofile(_)).$directive85,2323 -'$directive'(public(_)).$directive86,2351 -'$directive'(public(_))./p,predicate,predicate definition86,2351 -'$directive'(public(_)).$directive86,2351 -'$directive'(op(_,_,_)).$directive87,2376 -'$directive'(op(_,_,_))./p,predicate,predicate definition87,2376 -'$directive'(op(_,_,_)).$directive87,2376 -'$directive'(require(_)).$directive88,2401 -'$directive'(require(_))./p,predicate,predicate definition88,2401 -'$directive'(require(_)).$directive88,2401 -'$directive'(set_prolog_flag(_,_)).$directive89,2427 -'$directive'(set_prolog_flag(_,_))./p,predicate,predicate definition89,2427 -'$directive'(set_prolog_flag(_,_)).$directive89,2427 -'$directive'(reconsult(_)).$directive90,2463 -'$directive'(reconsult(_))./p,predicate,predicate definition90,2463 -'$directive'(reconsult(_)).$directive90,2463 -'$directive'(reexport(_)).$directive91,2491 -'$directive'(reexport(_))./p,predicate,predicate definition91,2491 -'$directive'(reexport(_)).$directive91,2491 -'$directive'(reexport(_,_)).$directive92,2518 -'$directive'(reexport(_,_))./p,predicate,predicate definition92,2518 -'$directive'(reexport(_,_)).$directive92,2518 -'$directive'(predicate_options(_,_,_)).$directive93,2547 -'$directive'(predicate_options(_,_,_))./p,predicate,predicate definition93,2547 -'$directive'(predicate_options(_,_,_)).$directive93,2547 -'$directive'(thread_initialization(_)).$directive94,2587 -'$directive'(thread_initialization(_))./p,predicate,predicate definition94,2587 -'$directive'(thread_initialization(_)).$directive94,2587 -'$directive'(thread_local(_)).$directive95,2627 -'$directive'(thread_local(_))./p,predicate,predicate definition95,2627 -'$directive'(thread_local(_)).$directive95,2627 -'$directive'(uncutable(_)).$directive96,2658 -'$directive'(uncutable(_))./p,predicate,predicate definition96,2658 -'$directive'(uncutable(_)).$directive96,2658 -'$directive'(use_module(_)).$directive97,2686 -'$directive'(use_module(_))./p,predicate,predicate definition97,2686 -'$directive'(use_module(_)).$directive97,2686 -'$directive'(use_module(_,_)).$directive98,2715 -'$directive'(use_module(_,_))./p,predicate,predicate definition98,2715 -'$directive'(use_module(_,_)).$directive98,2715 -'$directive'(use_module(_,_,_)).$directive99,2746 -'$directive'(use_module(_,_,_))./p,predicate,predicate definition99,2746 -'$directive'(use_module(_,_,_)).$directive99,2746 -'$directive'(wait(_)).$directive100,2779 -'$directive'(wait(_))./p,predicate,predicate definition100,2779 -'$directive'(wait(_)).$directive100,2779 -'$exec_directives'((G1,G2), Mode, M, VL, Pos) :-$exec_directives102,2803 -'$exec_directives'((G1,G2), Mode, M, VL, Pos) :-$exec_directives102,2803 -'$exec_directives'((G1,G2), Mode, M, VL, Pos) :-$exec_directives102,2803 -'$exec_directives'(G, Mode, M, VL, Pos) :-$exec_directives106,2951 -'$exec_directives'(G, Mode, M, VL, Pos) :-$exec_directives106,2951 -'$exec_directives'(G, Mode, M, VL, Pos) :-$exec_directives106,2951 -'$exec_directive'(multifile(D), _, M, _, _) :-$exec_directive110,3040 -'$exec_directive'(multifile(D), _, M, _, _) :-$exec_directive110,3040 -'$exec_directive'(multifile(D), _, M, _, _) :-$exec_directive110,3040 -'$exec_directive'(discontiguous(D), _, M, _, _) :-$exec_directive114,3180 -'$exec_directive'(discontiguous(D), _, M, _, _) :-$exec_directive114,3180 -'$exec_directive'(discontiguous(D), _, M, _, _) :-$exec_directive114,3180 -'$exec_directive'(initialization(D), _, M, _, _) :-$exec_directive123,3370 -'$exec_directive'(initialization(D), _, M, _, _) :-$exec_directive123,3370 -'$exec_directive'(initialization(D), _, M, _, _) :-$exec_directive123,3370 -'$exec_directive'(initialization(D,OPT), _, M, _, _) :-$exec_directive125,3447 -'$exec_directive'(initialization(D,OPT), _, M, _, _) :-$exec_directive125,3447 -'$exec_directive'(initialization(D,OPT), _, M, _, _) :-$exec_directive125,3447 -'$exec_directive'(thread_initialization(D), _, M, _, _) :-$exec_directive127,3533 -'$exec_directive'(thread_initialization(D), _, M, _, _) :-$exec_directive127,3533 -'$exec_directive'(thread_initialization(D), _, M, _, _) :-$exec_directive127,3533 -'$exec_directive'(expects_dialect(D), _, _, _, _) :-$exec_directive129,3624 -'$exec_directive'(expects_dialect(D), _, _, _, _) :-$exec_directive129,3624 -'$exec_directive'(expects_dialect(D), _, _, _, _) :-$exec_directive129,3624 -'$exec_directive'(encoding(Enc), _, _, _, _) :-$exec_directive131,3701 -'$exec_directive'(encoding(Enc), _, _, _, _) :-$exec_directive131,3701 -'$exec_directive'(encoding(Enc), _, _, _, _) :-$exec_directive131,3701 -'$exec_directive'(include(F), Status, _, _, _) :-$exec_directive133,3779 -'$exec_directive'(include(F), Status, _, _, _) :-$exec_directive133,3779 -'$exec_directive'(include(F), Status, _, _, _) :-$exec_directive133,3779 -'$exec_directive'(module(N,P), Status, _, _, _) :-$exec_directive136,3896 -'$exec_directive'(module(N,P), Status, _, _, _) :-$exec_directive136,3896 -'$exec_directive'(module(N,P), Status, _, _, _) :-$exec_directive136,3896 -'$exec_directive'(module(N,P,Op), Status, _, _, _) :-$exec_directive138,3971 -'$exec_directive'(module(N,P,Op), Status, _, _, _) :-$exec_directive138,3971 -'$exec_directive'(module(N,P,Op), Status, _, _, _) :-$exec_directive138,3971 -'$exec_directive'(meta_predicate(P), _, M, _, _) :-$exec_directive140,4052 -'$exec_directive'(meta_predicate(P), _, M, _, _) :-$exec_directive140,4052 -'$exec_directive'(meta_predicate(P), _, M, _, _) :-$exec_directive140,4052 -'$exec_directive'(module_transparent(P), _, M, _, _) :-$exec_directive143,4160 -'$exec_directive'(module_transparent(P), _, M, _, _) :-$exec_directive143,4160 -'$exec_directive'(module_transparent(P), _, M, _, _) :-$exec_directive143,4160 -'$exec_directive'(noprofile(P), _, M, _, _) :-$exec_directive145,4246 -'$exec_directive'(noprofile(P), _, M, _, _) :-$exec_directive145,4246 -'$exec_directive'(noprofile(P), _, M, _, _) :-$exec_directive145,4246 -'$exec_directive'(require(Ps), _, M, _, _) :-$exec_directive147,4314 -'$exec_directive'(require(Ps), _, M, _, _) :-$exec_directive147,4314 -'$exec_directive'(require(Ps), _, M, _, _) :-$exec_directive147,4314 -'$exec_directive'(dynamic(P), _, M, _, _) :-$exec_directive149,4380 -'$exec_directive'(dynamic(P), _, M, _, _) :-$exec_directive149,4380 -'$exec_directive'(dynamic(P), _, M, _, _) :-$exec_directive149,4380 -'$exec_directive'(thread_local(P), _, M, _, _) :-$exec_directive151,4444 -'$exec_directive'(thread_local(P), _, M, _, _) :-$exec_directive151,4444 -'$exec_directive'(thread_local(P), _, M, _, _) :-$exec_directive151,4444 -'$exec_directive'(op(P,OPSEC,OP), _, _, _, _) :-$exec_directive153,4518 -'$exec_directive'(op(P,OPSEC,OP), _, _, _, _) :-$exec_directive153,4518 -'$exec_directive'(op(P,OPSEC,OP), _, _, _, _) :-$exec_directive153,4518 -'$exec_directive'(set_prolog_flag(F,V), _, _, _, _) :-$exec_directive156,4609 -'$exec_directive'(set_prolog_flag(F,V), _, _, _, _) :-$exec_directive156,4609 -'$exec_directive'(set_prolog_flag(F,V), _, _, _, _) :-$exec_directive156,4609 -'$exec_directive'(ensure_loaded(Fs), _, M, _, _) :-$exec_directive158,4687 -'$exec_directive'(ensure_loaded(Fs), _, M, _, _) :-$exec_directive158,4687 -'$exec_directive'(ensure_loaded(Fs), _, M, _, _) :-$exec_directive158,4687 -'$exec_directive'(char_conversion(IN,OUT), _, _, _, _) :-$exec_directive160,4795 -'$exec_directive'(char_conversion(IN,OUT), _, _, _, _) :-$exec_directive160,4795 -'$exec_directive'(char_conversion(IN,OUT), _, _, _, _) :-$exec_directive160,4795 -'$exec_directive'(public(P), _, M, _, _) :-$exec_directive162,4879 -'$exec_directive'(public(P), _, M, _, _) :-$exec_directive162,4879 -'$exec_directive'(public(P), _, M, _, _) :-$exec_directive162,4879 -'$exec_directive'(compile(Fs), _, M, _, _) :-$exec_directive164,4941 -'$exec_directive'(compile(Fs), _, M, _, _) :-$exec_directive164,4941 -'$exec_directive'(compile(Fs), _, M, _, _) :-$exec_directive164,4941 -'$exec_directive'(reconsult(Fs), _, M, _, _) :-$exec_directive166,5026 -'$exec_directive'(reconsult(Fs), _, M, _, _) :-$exec_directive166,5026 -'$exec_directive'(reconsult(Fs), _, M, _, _) :-$exec_directive166,5026 -'$exec_directive'(consult(Fs), _, M, _, _) :-$exec_directive168,5115 -'$exec_directive'(consult(Fs), _, M, _, _) :-$exec_directive168,5115 -'$exec_directive'(consult(Fs), _, M, _, _) :-$exec_directive168,5115 -'$exec_directive'(use_module(F), _, M, _, _) :-$exec_directive170,5216 -'$exec_directive'(use_module(F), _, M, _, _) :-$exec_directive170,5216 -'$exec_directive'(use_module(F), _, M, _, _) :-$exec_directive170,5216 -'$exec_directive'(reexport(F), _, M, _, _) :-$exec_directive172,5282 -'$exec_directive'(reexport(F), _, M, _, _) :-$exec_directive172,5282 -'$exec_directive'(reexport(F), _, M, _, _) :-$exec_directive172,5282 -'$exec_directive'(reexport(F,Spec), _, M, _, _) :-$exec_directive174,5431 -'$exec_directive'(reexport(F,Spec), _, M, _, _) :-$exec_directive174,5431 -'$exec_directive'(reexport(F,Spec), _, M, _, _) :-$exec_directive174,5431 -'$exec_directive'(use_module(F, Is), _, M, _, _) :-$exec_directive176,5603 -'$exec_directive'(use_module(F, Is), _, M, _, _) :-$exec_directive176,5603 -'$exec_directive'(use_module(F, Is), _, M, _, _) :-$exec_directive176,5603 -'$exec_directive'(use_module(Mod,F,Is), _, _, _, _) :-$exec_directive178,5677 -'$exec_directive'(use_module(Mod,F,Is), _, _, _, _) :-$exec_directive178,5677 -'$exec_directive'(use_module(Mod,F,Is), _, _, _, _) :-$exec_directive178,5677 -'$exec_directive'(block(BlockSpec), _, _, _, _) :-$exec_directive180,5758 -'$exec_directive'(block(BlockSpec), _, _, _, _) :-$exec_directive180,5758 -'$exec_directive'(block(BlockSpec), _, _, _, _) :-$exec_directive180,5758 -'$exec_directive'(wait(BlockSpec), _, _, _, _) :-$exec_directive182,5831 -'$exec_directive'(wait(BlockSpec), _, _, _, _) :-$exec_directive182,5831 -'$exec_directive'(wait(BlockSpec), _, _, _, _) :-$exec_directive182,5831 -'$exec_directive'(table(PredSpec), _, M, _, _) :-$exec_directive184,5902 -'$exec_directive'(table(PredSpec), _, M, _, _) :-$exec_directive184,5902 -'$exec_directive'(table(PredSpec), _, M, _, _) :-$exec_directive184,5902 -'$exec_directive'(uncutable(PredSpec), _, M, _, _) :-$exec_directive186,5976 -'$exec_directive'(uncutable(PredSpec), _, M, _, _) :-$exec_directive186,5976 -'$exec_directive'(uncutable(PredSpec), _, M, _, _) :-$exec_directive186,5976 -'$exec_directive'(if(Goal), Context, M, _, _) :-$exec_directive188,6058 -'$exec_directive'(if(Goal), Context, M, _, _) :-$exec_directive188,6058 -'$exec_directive'(if(Goal), Context, M, _, _) :-$exec_directive188,6058 -'$exec_directive'(else, Context, _, _, _) :-$exec_directive190,6132 -'$exec_directive'(else, Context, _, _, _) :-$exec_directive190,6132 -'$exec_directive'(else, Context, _, _, _) :-$exec_directive190,6132 -'$exec_directive'(elif(Goal), Context, M, _, _) :-$exec_directive192,6196 -'$exec_directive'(elif(Goal), Context, M, _, _) :-$exec_directive192,6196 -'$exec_directive'(elif(Goal), Context, M, _, _) :-$exec_directive192,6196 -'$exec_directive'(endif, Context, _, _, _) :-$exec_directive194,6274 -'$exec_directive'(endif, Context, _, _, _) :-$exec_directive194,6274 -'$exec_directive'(endif, Context, _, _, _) :-$exec_directive194,6274 -'$exec_directive'(license(_), Context, _, _, _) :-$exec_directive196,6340 -'$exec_directive'(license(_), Context, _, _, _) :-$exec_directive196,6340 -'$exec_directive'(license(_), Context, _, _, _) :-$exec_directive196,6340 -'$exec_directive'(predicate_options(PI, Arg, Options), Context, Module, VL, Pos) :-$exec_directive198,6408 -'$exec_directive'(predicate_options(PI, Arg, Options), Context, Module, VL, Pos) :-$exec_directive198,6408 -'$exec_directive'(predicate_options(PI, Arg, Options), Context, Module, VL, Pos) :-$exec_directive198,6408 -'$assert_list'([], _Context, _Module, _VL, _Pos).$assert_list203,6625 -'$assert_list'([], _Context, _Module, _VL, _Pos)./p,predicate,predicate definition203,6625 -'$assert_list'([], _Context, _Module, _VL, _Pos).$assert_list203,6625 -'$assert_list'([Clause|Clauses], Context, Module, VL, Pos) :-$assert_list204,6675 -'$assert_list'([Clause|Clauses], Context, Module, VL, Pos) :-$assert_list204,6675 -'$assert_list'([Clause|Clauses], Context, Module, VL, Pos) :-$assert_list204,6675 -user_defined_directive(Dir,_) :-user_defined_directive212,6880 -user_defined_directive(Dir,_) :-user_defined_directive212,6880 -user_defined_directive(Dir,_) :-user_defined_directive212,6880 -user_defined_directive(Dir,Action) :-user_defined_directive214,6943 -user_defined_directive(Dir,Action) :-user_defined_directive214,6943 -user_defined_directive(Dir,Action) :-user_defined_directive214,6943 -'$thread_initialization'(M:D) :-$thread_initialization222,7224 -'$thread_initialization'(M:D) :-$thread_initialization222,7224 -'$thread_initialization'(M:D) :-$thread_initialization222,7224 -'$thread_initialization'(M:D) :-$thread_initialization226,7343 -'$thread_initialization'(M:D) :-$thread_initialization226,7343 -'$thread_initialization'(M:D) :-$thread_initialization226,7343 -'$process_directive'(D, _, M, _VL, _Pos) :-$process_directive252,8065 -'$process_directive'(D, _, M, _VL, _Pos) :-$process_directive252,8065 -'$process_directive'(D, _, M, _VL, _Pos) :-$process_directive252,8065 - -packages/python/swig/yap4py/prolog/pl/eam.yap,8116 -eamtrans(A,A):- var(A),!.eamtrans22,747 -eamtrans(A,A):- var(A),!.eamtrans22,747 -eamtrans(A,A):- var(A),!.eamtrans22,747 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans(B,B).eamtrans39,2070 -eamtrans(B,B).eamtrans39,2070 -eamconsult(File):- eam, eam, %fails if eam is disableeamconsult41,2086 -eamconsult(File):- eam, eam, %fails if eam is disableeamconsult41,2086 -eamconsult(File):- eam, eam, %fails if eam is disableeamconsult41,2086 - -packages/python/swig/yap4py/prolog/pl/error.yap,25420 -type_error(Type, Term) :-type_error58,1720 -type_error(Type, Term) :-type_error58,1720 -type_error(Type, Term) :-type_error58,1720 -domain_error(Type, Term) :-domain_error60,1788 -domain_error(Type, Term) :-domain_error60,1788 -domain_error(Type, Term) :-domain_error60,1788 -existence_error(Type, Term) :-existence_error62,1860 -existence_error(Type, Term) :-existence_error62,1860 -existence_error(Type, Term) :-existence_error62,1860 -permission_error(Action, Type, Term) :-permission_error64,1938 -permission_error(Action, Type, Term) :-permission_error64,1938 -permission_error(Action, Type, Term) :-permission_error64,1938 -instantiation_error(_Term) :-instantiation_error66,2034 -instantiation_error(_Term) :-instantiation_error66,2034 -instantiation_error(_Term) :-instantiation_error66,2034 -representation_error(Reason) :-representation_error68,2103 -representation_error(Reason) :-representation_error68,2103 -representation_error(Reason) :-representation_error68,2103 -must_be(Type, X) :-must_be100,3477 -must_be(Type, X) :-must_be100,3477 -must_be(Type, X) :-must_be100,3477 -must_be(Type, X, Comment) :-must_be103,3525 -must_be(Type, X, Comment) :-must_be103,3525 -must_be(Type, X, Comment) :-must_be103,3525 -must_be_of_type(callable, X) :-must_be_of_type106,3591 -must_be_of_type(callable, X) :-must_be_of_type106,3591 -must_be_of_type(callable, X) :-must_be_of_type106,3591 -must_be_of_type(atom, X) :-must_be_of_type109,3647 -must_be_of_type(atom, X) :-must_be_of_type109,3647 -must_be_of_type(atom, X) :-must_be_of_type109,3647 -must_be_of_type(module, X) :-must_be_of_type112,3695 -must_be_of_type(module, X) :-must_be_of_type112,3695 -must_be_of_type(module, X) :-must_be_of_type112,3695 -must_be_of_type(predicate_indicator, X) :-must_be_of_type115,3745 -must_be_of_type(predicate_indicator, X) :-must_be_of_type115,3745 -must_be_of_type(predicate_indicator, X) :-must_be_of_type115,3745 -must_be_of_type(Type, X) :-must_be_of_type118,3823 -must_be_of_type(Type, X) :-must_be_of_type118,3823 -must_be_of_type(Type, X) :-must_be_of_type118,3823 -inline(must_be_of_type( atom, X ), is_atom(X, _) ).inline124,3910 -inline(must_be_of_type( atom, X ), is_atom(X, _) ).inline124,3910 -inline(must_be_of_type( module, X ), is_module(X, _) ).inline125,3962 -inline(must_be_of_type( module, X ), is_module(X, _) ).inline125,3962 -inline(must_be_of_type( callable, X ), is_callable(X, _) ).inline126,4018 -inline(must_be_of_type( callable, X ), is_callable(X, _) ).inline126,4018 -inline(must_be_of_type( callable, X ), is_callable(X, _) ).inline127,4078 -inline(must_be_of_type( callable, X ), is_callable(X, _) ).inline127,4078 -inline(must_be_atom( X ), is_callable(X, _) ).inline128,4138 -inline(must_be_atom( X ), is_callable(X, _) ).inline128,4138 -inline(must_be_module( X ), is_atom(X, _) ).inline129,4185 -inline(must_be_module( X ), is_atom(X, _) ).inline129,4185 -must_be_of_type(predicate_indicator, X, Comment) :-must_be_of_type131,4231 -must_be_of_type(predicate_indicator, X, Comment) :-must_be_of_type131,4231 -must_be_of_type(predicate_indicator, X, Comment) :-must_be_of_type131,4231 -must_be_of_type(callable, X, Comment) :-must_be_of_type134,4324 -must_be_of_type(callable, X, Comment) :-must_be_of_type134,4324 -must_be_of_type(callable, X, Comment) :-must_be_of_type134,4324 -must_be_of_type(Type, X, _Comment) :-must_be_of_type137,4395 -must_be_of_type(Type, X, _Comment) :-must_be_of_type137,4395 -must_be_of_type(Type, X, _Comment) :-must_be_of_type137,4395 -must_bind_to_type(Type, X) :-must_bind_to_type143,4492 -must_bind_to_type(Type, X) :-must_bind_to_type143,4492 -must_bind_to_type(Type, X) :-must_bind_to_type143,4492 -is_not(list, X) :- !,is_not157,4767 -is_not(list, X) :- !,is_not157,4767 -is_not(list, X) :- !,is_not157,4767 -is_not(list(_), X) :- !,is_not159,4811 -is_not(list(_), X) :- !,is_not159,4811 -is_not(list(_), X) :- !,is_not159,4811 -is_not(list_or_partial_list, X) :- !,is_not161,4858 -is_not(list_or_partial_list, X) :- !,is_not161,4858 -is_not(list_or_partial_list, X) :- !,is_not161,4858 -is_not(chars, X) :- !,is_not163,4918 -is_not(chars, X) :- !,is_not163,4918 -is_not(chars, X) :- !,is_not163,4918 -is_not(codes, X) :- !,is_not165,4964 -is_not(codes, X) :- !,is_not165,4964 -is_not(codes, X) :- !,is_not165,4964 -is_not(var,_X) :- !,is_not167,5010 -is_not(var,_X) :- !,is_not167,5010 -is_not(var,_X) :- !,is_not167,5010 -is_not(rational, X) :- !,is_not169,5064 -is_not(rational, X) :- !,is_not169,5064 -is_not(rational, X) :- !,is_not169,5064 -is_not(Type, X) :-is_not171,5110 -is_not(Type, X) :-is_not171,5110 -is_not(Type, X) :-is_not171,5110 -ground_type(ground).ground_type179,5264 -ground_type(ground).ground_type179,5264 -ground_type(oneof(_)).ground_type180,5285 -ground_type(oneof(_)).ground_type180,5285 -ground_type(stream).ground_type181,5308 -ground_type(stream).ground_type181,5308 -ground_type(text).ground_type182,5329 -ground_type(text).ground_type182,5329 -ground_type(string).ground_type183,5348 -ground_type(string).ground_type183,5348 -not_a_list(Type, X) :-not_a_list185,5370 -not_a_list(Type, X) :-not_a_list185,5370 -not_a_list(Type, X) :-not_a_list185,5370 -not_a_rational(X) :-not_a_rational192,5493 -not_a_rational(X) :-not_a_rational192,5493 -not_a_rational(X) :-not_a_rational192,5493 -is_of_type(Type, Term) :-is_of_type205,5755 -is_of_type(Type, Term) :-is_of_type205,5755 -is_of_type(Type, Term) :-is_of_type205,5755 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(any, _).has_type214,5929 -has_type(any, _).has_type214,5929 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(between(L,U), X) :- ( integer(L)has_type217,6015 -has_type(between(L,U), X) :- ( integer(L)has_type217,6015 -has_type(between(L,U), X) :- ( integer(L)has_type217,6015 -has_type(boolean, X) :- (X==true;X==false), !.has_type221,6147 -has_type(boolean, X) :- (X==true;X==false), !.has_type221,6147 -has_type(boolean, X) :- (X==true;X==false), !.has_type221,6147 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(text, X) :- text(X).has_type225,6305 -has_type(text, X) :- text(X).has_type225,6305 -has_type(text, X) :- text(X).has_type225,6305 -has_type(text, X) :- text(X).has_type225,6305 -has_type(text, X) :- text(X).has_type225,6305 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(float, X) :- float(X).has_type228,6415 -has_type(float, X) :- float(X).has_type228,6415 -has_type(float, X) :- float(X).has_type228,6415 -has_type(float, X) :- float(X).has_type228,6415 -has_type(float, X) :- float(X).has_type228,6415 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(nonneg, X) :- integer(X), X >= 0.has_type231,6523 -has_type(nonneg, X) :- integer(X), X >= 0.has_type231,6523 -has_type(nonneg, X) :- integer(X), X >= 0.has_type231,6523 -has_type(positive_integer, X) :- integer(X), X > 0.has_type232,6568 -has_type(positive_integer, X) :- integer(X), X > 0.has_type232,6568 -has_type(positive_integer, X) :- integer(X), X > 0.has_type232,6568 -has_type(negative_integer, X) :- integer(X), X < 0.has_type233,6622 -has_type(negative_integer, X) :- integer(X), X < 0.has_type233,6622 -has_type(negative_integer, X) :- integer(X), X < 0.has_type233,6622 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(number, X) :- number(X).has_type235,6712 -has_type(number, X) :- number(X).has_type235,6712 -has_type(number, X) :- number(X).has_type235,6712 -has_type(number, X) :- number(X).has_type235,6712 -has_type(number, X) :- number(X).has_type235,6712 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(var, X) :- var(X).has_type241,6987 -has_type(var, X) :- var(X).has_type241,6987 -has_type(var, X) :- var(X).has_type241,6987 -has_type(var, X) :- var(X).has_type241,6987 -has_type(var, X) :- var(X).has_type241,6987 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(string, X) :- string(X).has_type243,7057 -has_type(string, X) :- string(X).has_type243,7057 -has_type(string, X) :- string(X).has_type243,7057 -has_type(string, X) :- string(X).has_type243,7057 -has_type(string, X) :- string(X).has_type243,7057 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -may_bind_to_type(_, X ) :- var(X), !.may_bind_to_type251,7303 -may_bind_to_type(_, X ) :- var(X), !.may_bind_to_type251,7303 -may_bind_to_type(_, X ) :- var(X), !.may_bind_to_type251,7303 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(any, _).may_bind_to_type253,7400 -may_bind_to_type(any, _).may_bind_to_type253,7400 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(between(L,U), X) :- ( integer(L)may_bind_to_type256,7510 -may_bind_to_type(between(L,U), X) :- ( integer(L)may_bind_to_type256,7510 -may_bind_to_type(between(L,U), X) :- ( integer(L)may_bind_to_type256,7510 -may_bind_to_type(boolean, X) :- (X==true;X==false), !.may_bind_to_type260,7650 -may_bind_to_type(boolean, X) :- (X==true;X==false), !.may_bind_to_type260,7650 -may_bind_to_type(boolean, X) :- (X==true;X==false), !.may_bind_to_type260,7650 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(nonneg, X) :- integer(X), X >= 0.may_bind_to_type270,8106 -may_bind_to_type(nonneg, X) :- integer(X), X >= 0.may_bind_to_type270,8106 -may_bind_to_type(nonneg, X) :- integer(X), X >= 0.may_bind_to_type270,8106 -may_bind_to_type(positive_integer, X) :- integer(X), X > 0.may_bind_to_type271,8159 -may_bind_to_type(positive_integer, X) :- integer(X), X > 0.may_bind_to_type271,8159 -may_bind_to_type(positive_integer, X) :- integer(X), X > 0.may_bind_to_type271,8159 -may_bind_to_type(negative_integer, X) :- integer(X), X < 0.may_bind_to_type272,8221 -may_bind_to_type(negative_integer, X) :- integer(X), X < 0.may_bind_to_type272,8221 -may_bind_to_type(negative_integer, X) :- integer(X), X < 0.may_bind_to_type272,8221 -may_bind_to_type(predicate_indicator, X) :-may_bind_to_type273,8283 -may_bind_to_type(predicate_indicator, X) :-may_bind_to_type273,8283 -may_bind_to_type(predicate_indicator, X) :-may_bind_to_type273,8283 -may_bind_to_type(nonvar, _X).may_bind_to_type292,8583 -may_bind_to_type(nonvar, _X).may_bind_to_type292,8583 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -chars(0) :- !, fail.chars305,9187 -chars(0) :- !, fail.chars305,9187 -chars(0) :- !, fail.chars305,9187 -chars([]).chars306,9208 -chars([]).chars306,9208 -chars([H|T]) :-chars307,9219 -chars([H|T]) :-chars307,9219 -chars([H|T]) :-chars307,9219 -codes(x) :- !, fail.codes311,9276 -codes(x) :- !, fail.codes311,9276 -codes(x) :- !, fail.codes311,9276 -codes([]).codes312,9297 -codes([]).codes312,9297 -codes([H|T]) :-codes313,9308 -codes([H|T]) :-codes313,9308 -codes([H|T]) :-codes313,9308 -text(X) :-text317,9374 -text(X) :-text317,9374 -text(X) :-text317,9374 -element_types([], _).element_types324,9449 -element_types([], _).element_types324,9449 -element_types([H|T], Type) :-element_types325,9471 -element_types([H|T], Type) :-element_types325,9471 -element_types([H|T], Type) :-element_types325,9471 -is_list_or_partial_list(L0) :-is_list_or_partial_list329,9546 -is_list_or_partial_list(L0) :-is_list_or_partial_list329,9546 -is_list_or_partial_list(L0) :-is_list_or_partial_list329,9546 -must_be_instantiated(X) :-must_be_instantiated333,9633 -must_be_instantiated(X) :-must_be_instantiated333,9633 -must_be_instantiated(X) :-must_be_instantiated333,9633 -must_be_instantiated(X, Comment) :-must_be_instantiated336,9707 -must_be_instantiated(X, Comment) :-must_be_instantiated336,9707 -must_be_instantiated(X, Comment) :-must_be_instantiated336,9707 - -packages/python/swig/yap4py/prolog/pl/errors.yap,2828 -system_error(Type,Goal) :-system_error61,1829 -system_error(Type,Goal) :-system_error61,1829 -system_error(Type,Goal) :-system_error61,1829 -'$do_error'(Type,Goal) :-$do_error65,1886 -'$do_error'(Type,Goal) :-$do_error65,1886 -'$do_error'(Type,Goal) :-$do_error65,1886 -system_error(Type,Goal,Culprit) :-system_error84,2259 -system_error(Type,Goal,Culprit) :-system_error84,2259 -system_error(Type,Goal,Culprit) :-system_error84,2259 -'$do_pi_error'(type_error(callable,Name/0),Message) :- !,$do_pi_error93,2467 -'$do_pi_error'(type_error(callable,Name/0),Message) :- !,$do_pi_error93,2467 -'$do_pi_error'(type_error(callable,Name/0),Message) :- !,$do_pi_error93,2467 -'$do_pi_error'(Error,Message) :- !,$do_pi_error95,2574 -'$do_pi_error'(Error,Message) :- !,$do_pi_error95,2574 -'$do_pi_error'(Error,Message) :- !,$do_pi_error95,2574 -'$Error'(E) :-$Error98,2640 -'$Error'(E) :-$Error98,2640 -'$Error'(E) :-$Error98,2640 -'$LoopError'(_, _) :-$LoopError101,2678 -'$LoopError'(_, _) :-$LoopError101,2678 -'$LoopError'(_, _) :-$LoopError101,2678 -'$LoopError'(Error, Level) :- !,$LoopError105,2762 -'$LoopError'(Error, Level) :- !,$LoopError105,2762 -'$LoopError'(Error, Level) :- !,$LoopError105,2762 -'$LoopError'(_, _) :-$LoopError108,2835 -'$LoopError'(_, _) :-$LoopError108,2835 -'$LoopError'(_, _) :-$LoopError108,2835 -'$process_error'('$forward'(Msg), _) :-$process_error113,2897 -'$process_error'('$forward'(Msg), _) :-$process_error113,2897 -'$process_error'('$forward'(Msg), _) :-$process_error'('$forward113,2897 -'$process_error'(abort, Level) :-$process_error116,2968 -'$process_error'(abort, Level) :-$process_error116,2968 -'$process_error'(abort, Level) :-$process_error116,2968 -'$process_error'(error(thread_cancel(_Id), _G),top) :-$process_error133,3256 -'$process_error'(error(thread_cancel(_Id), _G),top) :-$process_error133,3256 -'$process_error'(error(thread_cancel(_Id), _G),top) :-$process_error133,3256 -'$process_error'(error(thread_cancel(Id), G), _) :-$process_error135,3315 -'$process_error'(error(thread_cancel(Id), G), _) :-$process_error135,3315 -'$process_error'(error(thread_cancel(Id), G), _) :-$process_error135,3315 -'$process_error'(error(permission_error(module,redefined,A),B), Level) :-$process_error138,3415 -'$process_error'(error(permission_error(module,redefined,A),B), Level) :-$process_error138,3415 -'$process_error'(error(permission_error(module,redefined,A),B), Level) :-$process_error138,3415 -'$process_error'(Error, _Level) :-$process_error141,3576 -'$process_error'(Error, _Level) :-$process_error141,3576 -'$process_error'(Error, _Level) :-$process_error141,3576 -'$process_error'(Throw, _) :-$process_error146,3772 -'$process_error'(Throw, _) :-$process_error146,3772 -'$process_error'(Throw, _) :-$process_error146,3772 - -packages/python/swig/yap4py/prolog/pl/eval.yap,6972 -'$add_extra_safe'('$plus'(_,_,V)) --> !, [V].$add_extra_safe26,780 -'$add_extra_safe'('$plus'(_,_,V)) --> !, [V].$add_extra_safe26,780 -'$add_extra_safe'('$plus'(_,_,V)) --> !, [V].$add_extra_safe'('$plus26,780 -'$add_extra_safe'('$minus'(_,_,V)) --> !, [V].$add_extra_safe27,826 -'$add_extra_safe'('$minus'(_,_,V)) --> !, [V].$add_extra_safe27,826 -'$add_extra_safe'('$minus'(_,_,V)) --> !, [V].$add_extra_safe'('$minus27,826 -'$add_extra_safe'('$times'(_,_,V)) --> !, [V].$add_extra_safe28,873 -'$add_extra_safe'('$times'(_,_,V)) --> !, [V].$add_extra_safe28,873 -'$add_extra_safe'('$times'(_,_,V)) --> !, [V].$add_extra_safe'('$times28,873 -'$add_extra_safe'('$div'(_,_,V)) --> !, [V].$add_extra_safe29,920 -'$add_extra_safe'('$div'(_,_,V)) --> !, [V].$add_extra_safe29,920 -'$add_extra_safe'('$div'(_,_,V)) --> !, [V].$add_extra_safe'('$div29,920 -'$add_extra_safe'('$and'(_,_,V)) --> !, [V].$add_extra_safe30,965 -'$add_extra_safe'('$and'(_,_,V)) --> !, [V].$add_extra_safe30,965 -'$add_extra_safe'('$and'(_,_,V)) --> !, [V].$add_extra_safe'('$and30,965 -'$add_extra_safe'('$or'(_,_,V)) --> !, [V].$add_extra_safe31,1010 -'$add_extra_safe'('$or'(_,_,V)) --> !, [V].$add_extra_safe31,1010 -'$add_extra_safe'('$or'(_,_,V)) --> !, [V].$add_extra_safe'('$or31,1010 -'$add_extra_safe'('$sll'(_,_,V)) --> !, [V].$add_extra_safe32,1054 -'$add_extra_safe'('$sll'(_,_,V)) --> !, [V].$add_extra_safe32,1054 -'$add_extra_safe'('$sll'(_,_,V)) --> !, [V].$add_extra_safe'('$sll32,1054 -'$add_extra_safe'('$slr'(_,_,V)) --> !, [V].$add_extra_safe33,1099 -'$add_extra_safe'('$slr'(_,_,V)) --> !, [V].$add_extra_safe33,1099 -'$add_extra_safe'('$slr'(_,_,V)) --> !, [V].$add_extra_safe'('$slr33,1099 -'$add_extra_safe'(C=D,A,B) :-$add_extra_safe34,1144 -'$add_extra_safe'(C=D,A,B) :-$add_extra_safe34,1144 -'$add_extra_safe'(C=D,A,B) :-$add_extra_safe34,1144 -'$add_extra_safe'(_) --> [].$add_extra_safe46,1326 -'$add_extra_safe'(_) --> [].$add_extra_safe46,1326 -'$add_extra_safe'(_) --> [].$add_extra_safe46,1326 -'$gen_equals'([], [], _, O, O).$gen_equals49,1357 -'$gen_equals'([], [], _, O, O)./p,predicate,predicate definition49,1357 -'$gen_equals'([], [], _, O, O).$gen_equals49,1357 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, NO) :- V == NV, !,$gen_equals50,1389 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, NO) :- V == NV, !,$gen_equals50,1389 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, NO) :- V == NV, !,$gen_equals50,1389 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals52,1503 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals52,1503 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals52,1503 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals56,1662 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals56,1662 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals56,1662 -'$safe_guard'((A,B), M) :- !,$safe_guard60,1790 -'$safe_guard'((A,B), M) :- !,$safe_guard60,1790 -'$safe_guard'((A,B), M) :- !,$safe_guard60,1790 -'$safe_guard'((A;B), M) :- !,$safe_guard63,1872 -'$safe_guard'((A;B), M) :- !,$safe_guard63,1872 -'$safe_guard'((A;B), M) :- !,$safe_guard63,1872 -'$safe_guard'(A, M) :- !,$safe_guard66,1954 -'$safe_guard'(A, M) :- !,$safe_guard66,1954 -'$safe_guard'(A, M) :- !,$safe_guard66,1954 -'$safe_builtin'(G, Mod) :-$safe_builtin69,2009 -'$safe_builtin'(G, Mod) :-$safe_builtin69,2009 -'$safe_builtin'(G, Mod) :-$safe_builtin69,2009 -'$vmember'(V,[V1|_]) :- V == V1, !.$vmember73,2099 -'$vmember'(V,[V1|_]) :- V == V1, !.$vmember73,2099 -'$vmember'(V,[V1|_]) :- V == V1, !.$vmember73,2099 -'$vmember'(V,[_|LV0]) :-$vmember74,2135 -'$vmember'(V,[_|LV0]) :-$vmember74,2135 -'$vmember'(V,[_|LV0]) :-$vmember74,2135 -'$localise_disj_vars'((B;B2), M, (NB ; NB2), LV, LV0, LEqs) :- !,$localise_disj_vars78,2182 -'$localise_disj_vars'((B;B2), M, (NB ; NB2), LV, LV0, LEqs) :- !,$localise_disj_vars78,2182 -'$localise_disj_vars'((B;B2), M, (NB ; NB2), LV, LV0, LEqs) :- !,$localise_disj_vars78,2182 -'$localise_disj_vars'(B2, M, NB, LV, LV0, LEqs) :-$localise_disj_vars81,2343 -'$localise_disj_vars'(B2, M, NB, LV, LV0, LEqs) :-$localise_disj_vars81,2343 -'$localise_disj_vars'(B2, M, NB, LV, LV0, LEqs) :-$localise_disj_vars81,2343 -'$localise_vars'((A->B), M, (A->NB), LV, LV0, LEqs) :-$localise_vars84,2440 -'$localise_vars'((A->B), M, (A->NB), LV, LV0, LEqs) :-$localise_vars84,2440 -'$localise_vars'((A->B), M, (A->NB), LV, LV0, LEqs) :-$localise_vars84,2440 -'$localise_vars'((A;B), M, (NA;NB), LV1, LV0, LEqs) :- !,$localise_vars88,2601 -'$localise_vars'((A;B), M, (NA;NB), LV1, LV0, LEqs) :- !,$localise_vars88,2601 -'$localise_vars'((A;B), M, (NA;NB), LV1, LV0, LEqs) :- !,$localise_vars88,2601 -'$localise_vars'(((A,B),C), M, NG, LV, LV0, LEqs) :- !,$localise_vars91,2756 -'$localise_vars'(((A,B),C), M, NG, LV, LV0, LEqs) :- !,$localise_vars91,2756 -'$localise_vars'(((A,B),C), M, NG, LV, LV0, LEqs) :- !,$localise_vars91,2756 -'$localise_vars'((!,B), M, (!,NB), LV, LV0, LEqs) :- !,$localise_vars94,2885 -'$localise_vars'((!,B), M, (!,NB), LV, LV0, LEqs) :- !,$localise_vars94,2885 -'$localise_vars'((!,B), M, (!,NB), LV, LV0, LEqs) :- !,$localise_vars94,2885 -'$localise_vars'((X=Y,B), M, (X=Y,NB1), LV, LV0, LEqs) :-$localise_vars96,2986 -'$localise_vars'((X=Y,B), M, (X=Y,NB1), LV, LV0, LEqs) :-$localise_vars96,2986 -'$localise_vars'((X=Y,B), M, (X=Y,NB1), LV, LV0, LEqs) :-$localise_vars96,2986 -'$localise_vars'((G,B), M, (G,NB1), LV, LV0, LEqs) :-$localise_vars99,3116 -'$localise_vars'((G,B), M, (G,NB1), LV, LV0, LEqs) :-$localise_vars99,3116 -'$localise_vars'((G,B), M, (G,NB1), LV, LV0, LEqs) :-$localise_vars99,3116 -'$localise_vars'((G1,B1), _, O, LV, LV0, LEqs) :- !,$localise_vars104,3314 -'$localise_vars'((G1,B1), _, O, LV, LV0, LEqs) :- !,$localise_vars104,3314 -'$localise_vars'((G1,B1), _, O, LV, LV0, LEqs) :- !,$localise_vars104,3314 -'$localise_vars'(G, _, G, _, _, _).$localise_vars111,3596 -'$localise_vars'(G, _, G, _, _, _)./p,predicate,predicate definition111,3596 -'$localise_vars'(G, _, G, _, _, _).$localise_vars111,3596 -'$flatten_bd'((A,B),R,NB) :- !,$flatten_bd113,3633 -'$flatten_bd'((A,B),R,NB) :- !,$flatten_bd113,3633 -'$flatten_bd'((A,B),R,NB) :- !,$flatten_bd113,3633 -'$flatten_bd'(A,R,(A,R)).$flatten_bd116,3714 -'$flatten_bd'(A,R,(A,R))./p,predicate,predicate definition116,3714 -'$flatten_bd'(A,R,(A,R)).$flatten_bd116,3714 -'$localise_vars_opt'(H, M, (B1;B2), (NB1;NB2)) :-$localise_vars_opt120,3810 -'$localise_vars_opt'(H, M, (B1;B2), (NB1;NB2)) :-$localise_vars_opt120,3810 -'$localise_vars_opt'(H, M, (B1;B2), (NB1;NB2)) :-$localise_vars_opt120,3810 -'$full_clause_optimisation'(H, M, B0, BF) :-$full_clause_optimisation127,4014 -'$full_clause_optimisation'(H, M, B0, BF) :-$full_clause_optimisation127,4014 -'$full_clause_optimisation'(H, M, B0, BF) :-$full_clause_optimisation127,4014 - -packages/python/swig/yap4py/prolog/pl/flags.yap,2239 -'$adjust_language'(cprolog) :-$adjust_language40,1106 -'$adjust_language'(cprolog) :-$adjust_language40,1106 -'$adjust_language'(cprolog) :-$adjust_language40,1106 -'$adjust_language'(sicstus) :-$adjust_language50,1453 -'$adjust_language'(sicstus) :-$adjust_language50,1453 -'$adjust_language'(sicstus) :-$adjust_language50,1453 -'$adjust_language'(iso) :-$adjust_language66,1953 -'$adjust_language'(iso) :-$adjust_language66,1953 -'$adjust_language'(iso) :-$adjust_language66,1953 -create_prolog_flag(Name, Value, Options) :-create_prolog_flag93,2688 -create_prolog_flag(Name, Value, Options) :-create_prolog_flag93,2688 -create_prolog_flag(Name, Value, Options) :-create_prolog_flag93,2688 -'$flag_domain_from_value'(true, boolean) :- !.$flag_domain_from_value97,2835 -'$flag_domain_from_value'(true, boolean) :- !.$flag_domain_from_value97,2835 -'$flag_domain_from_value'(true, boolean) :- !.$flag_domain_from_value97,2835 -'$flag_domain_from_value'(false, boolean) :- !.$flag_domain_from_value98,2882 -'$flag_domain_from_value'(false, boolean) :- !.$flag_domain_from_value98,2882 -'$flag_domain_from_value'(false, boolean) :- !.$flag_domain_from_value98,2882 -'$flag_domain_from_value'(Value, integer) :- integer(Value), !.$flag_domain_from_value99,2930 -'$flag_domain_from_value'(Value, integer) :- integer(Value), !.$flag_domain_from_value99,2930 -'$flag_domain_from_value'(Value, integer) :- integer(Value), !.$flag_domain_from_value99,2930 -'$flag_domain_from_value'(Value, float) :- float(Value), !.$flag_domain_from_value100,2994 -'$flag_domain_from_value'(Value, float) :- float(Value), !.$flag_domain_from_value100,2994 -'$flag_domain_from_value'(Value, float) :- float(Value), !.$flag_domain_from_value100,2994 -'$flag_domain_from_value'(Value, atom) :- atom(Value), !.$flag_domain_from_value101,3054 -'$flag_domain_from_value'(Value, atom) :- atom(Value), !.$flag_domain_from_value101,3054 -'$flag_domain_from_value'(Value, atom) :- atom(Value), !.$flag_domain_from_value101,3054 -'$flag_domain_from_value'(_, term).$flag_domain_from_value102,3112 -'$flag_domain_from_value'(_, term)./p,predicate,predicate definition102,3112 -'$flag_domain_from_value'(_, term).$flag_domain_from_value102,3112 - -packages/python/swig/yap4py/prolog/pl/grammar.yap,8860 -head --> bodyhead39,967 -prolog:'$translate_rule'(Rule, (NH :- B) ) :-$translate_rule97,2395 -prolog:'$translate_rule'(Rule, (NH :- B) ) :-$translate_rule97,2395 -t_head(V, _, _, _, _, G0) :- var(V), !,t_head110,2779 -t_head(V, _, _, _, _, G0) :- var(V), !,t_head110,2779 -t_head(V, _, _, _, _, G0) :- var(V), !,t_head110,2779 -t_head((H,List), NH, NGs, S, S1, G0) :- !,t_head112,2857 -t_head((H,List), NH, NGs, S, S1, G0) :- !,t_head112,2857 -t_head((H,List), NH, NGs, S, S1, G0) :- !,t_head112,2857 -t_head(H, NH, _, S, SR, G0) :-t_head115,2961 -t_head(H, NH, _, S, SR, G0) :-t_head115,2961 -t_head(H, NH, _, S, SR, G0) :-t_head115,2961 -t_hgoal(V, _, _, _, G0) :- var(V), !,t_hgoal118,3021 -t_hgoal(V, _, _, _, G0) :- var(V), !,t_hgoal118,3021 -t_hgoal(V, _, _, _, G0) :- var(V), !,t_hgoal118,3021 -t_hgoal(M:H, M:NH, S, SR, G0) :- !,t_hgoal120,3097 -t_hgoal(M:H, M:NH, S, SR, G0) :- !,t_hgoal120,3097 -t_hgoal(M:H, M:NH, S, SR, G0) :- !,t_hgoal120,3097 -t_hgoal(H, NH, S, SR, _) :-t_hgoal122,3161 -t_hgoal(H, NH, S, SR, _) :-t_hgoal122,3161 -t_hgoal(H, NH, S, SR, _) :-t_hgoal122,3161 -t_hlist(V, _, _, _, G0) :- var(V), !,t_hlist125,3212 -t_hlist(V, _, _, _, G0) :- var(V), !,t_hlist125,3212 -t_hlist(V, _, _, _, G0) :- var(V), !,t_hlist125,3212 -t_hlist([], _, _, true, _).t_hlist127,3288 -t_hlist([], _, _, true, _).t_hlist127,3288 -t_hlist(String, S0, SR, SF, G0) :- string(String), !,t_hlist128,3316 -t_hlist(String, S0, SR, SF, G0) :- string(String), !,t_hlist128,3316 -t_hlist(String, S0, SR, SF, G0) :- string(String), !,t_hlist128,3316 -t_hlist([H], S0, SR, ('C'(SR,H,S0)), _) :- !.t_hlist131,3428 -t_hlist([H], S0, SR, ('C'(SR,H,S0)), _) :- !.t_hlist131,3428 -t_hlist([H], S0, SR, ('C'(SR,H,S0)), _) :- !.t_hlist131,3428 -t_hlist([H|List], S0, SR, ('C'(SR,H,S1),G0), Goal) :- !,t_hlist132,3474 -t_hlist([H|List], S0, SR, ('C'(SR,H,S1),G0), Goal) :- !,t_hlist132,3474 -t_hlist([H|List], S0, SR, ('C'(SR,H,S1),G0), Goal) :- !,t_hlist132,3474 -t_hlist(T, _, _, _, Goal) :-t_hlist134,3565 -t_hlist(T, _, _, _, Goal) :-t_hlist134,3565 -t_hlist(T, _, _, _, Goal) :-t_hlist134,3565 -t_body(Var, filled_in, _, S, S1, phrase(Var,S,S1)) :-t_body144,3804 -t_body(Var, filled_in, _, S, S1, phrase(Var,S,S1)) :-t_body144,3804 -t_body(Var, filled_in, _, S, S1, phrase(Var,S,S1)) :-t_body144,3804 -t_body(!, to_fill, last, S, S1, (!, S1 = S)) :- !.t_body147,3873 -t_body(!, to_fill, last, S, S1, (!, S1 = S)) :- !.t_body147,3873 -t_body(!, to_fill, last, S, S1, (!, S1 = S)) :- !.t_body147,3873 -t_body(!, _, _, S, S, !) :- !.t_body148,3924 -t_body(!, _, _, S, S, !) :- !.t_body148,3924 -t_body(!, _, _, S, S, !) :- !.t_body148,3924 -t_body([], to_fill, last, S, S1, S1=S) :- !.t_body149,3955 -t_body([], to_fill, last, S, S1, S1=S) :- !.t_body149,3955 -t_body([], to_fill, last, S, S1, S1=S) :- !.t_body149,3955 -t_body([], _, _, S, S, true) :- !.t_body150,4000 -t_body([], _, _, S, S, true) :- !.t_body150,4000 -t_body([], _, _, S, S, true) :- !.t_body150,4000 -t_body(X, FilledIn, Last, S, SR, OS) :- string(X), !,t_body151,4035 -t_body(X, FilledIn, Last, S, SR, OS) :- string(X), !,t_body151,4035 -t_body(X, FilledIn, Last, S, SR, OS) :- string(X), !,t_body151,4035 -t_body([X], filled_in, _, S, SR, 'C'(S,X,SR)) :- !.t_body154,4158 -t_body([X], filled_in, _, S, SR, 'C'(S,X,SR)) :- !.t_body154,4158 -t_body([X], filled_in, _, S, SR, 'C'(S,X,SR)) :- !.t_body154,4158 -t_body([X|R], filled_in, Last, S, SR, ('C'(S,X,SR1),RB)) :- !,t_body155,4210 -t_body([X|R], filled_in, Last, S, SR, ('C'(S,X,SR1),RB)) :- !,t_body155,4210 -t_body([X|R], filled_in, Last, S, SR, ('C'(S,X,SR1),RB)) :- !,t_body155,4210 -t_body({T}, to_fill, last, S, S1, (T, S1=S)) :- !.t_body157,4315 -t_body({T}, to_fill, last, S, S1, (T, S1=S)) :- !.t_body157,4315 -t_body({T}, to_fill, last, S, S1, (T, S1=S)) :- !.t_body157,4315 -t_body({T}, _, _, S, S, T) :- !.t_body158,4366 -t_body({T}, _, _, S, S, T) :- !.t_body158,4366 -t_body({T}, _, _, S, S, T) :- !.t_body158,4366 -t_body((T,R), ToFill, Last, S, SR, (Tt,Rt)) :- !,t_body159,4399 -t_body((T,R), ToFill, Last, S, SR, (Tt,Rt)) :- !,t_body159,4399 -t_body((T,R), ToFill, Last, S, SR, (Tt,Rt)) :- !,t_body159,4399 -t_body((T->R), ToFill, Last, S, SR, (Tt->Rt)) :- !,t_body162,4530 -t_body((T->R), ToFill, Last, S, SR, (Tt->Rt)) :- !,t_body162,4530 -t_body((T->R), ToFill, Last, S, SR, (Tt->Rt)) :- !,t_body162,4530 -t_body(\+T, ToFill, _, S, SR, (Tt->fail ; S=SR)) :- !,t_body165,4663 -t_body(\+T, ToFill, _, S, SR, (Tt->fail ; S=SR)) :- !,t_body165,4663 -t_body(\+T, ToFill, _, S, SR, (Tt->fail ; S=SR)) :- !,t_body165,4663 -t_body((T;R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body167,4758 -t_body((T;R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body167,4758 -t_body((T;R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body167,4758 -t_body((T|R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body170,4870 -t_body((T|R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body170,4870 -t_body((T|R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body170,4870 -t_body(M:G, ToFill, Last, S, SR, M:NG) :- !,t_body173,4994 -t_body(M:G, ToFill, Last, S, SR, M:NG) :- !,t_body173,4994 -t_body(M:G, ToFill, Last, S, SR, M:NG) :- !,t_body173,4994 -t_body(T, filled_in, _, S, SR, Tt) :-t_body175,5076 -t_body(T, filled_in, _, S, SR, Tt) :-t_body175,5076 -t_body(T, filled_in, _, S, SR, Tt) :-t_body175,5076 -extend(More, OldT, NewT) :-extend179,5140 -extend(More, OldT, NewT) :-extend179,5140 -extend(More, OldT, NewT) :-extend179,5140 -t_tidy(P,P) :- var(P), !.t_tidy184,5234 -t_tidy(P,P) :- var(P), !.t_tidy184,5234 -t_tidy(P,P) :- var(P), !.t_tidy184,5234 -t_tidy((P1;P2), (Q1;Q2)) :- !,t_tidy185,5260 -t_tidy((P1;P2), (Q1;Q2)) :- !,t_tidy185,5260 -t_tidy((P1;P2), (Q1;Q2)) :- !,t_tidy185,5260 -t_tidy((P1->P2), (Q1->Q2)) :- !,t_tidy188,5325 -t_tidy((P1->P2), (Q1->Q2)) :- !,t_tidy188,5325 -t_tidy((P1->P2), (Q1->Q2)) :- !,t_tidy188,5325 -t_tidy(((P1,P2),P3), Q) :-t_tidy191,5392 -t_tidy(((P1,P2),P3), Q) :-t_tidy191,5392 -t_tidy(((P1,P2),P3), Q) :-t_tidy191,5392 -t_tidy((true,P1), Q1) :- !,t_tidy193,5445 -t_tidy((true,P1), Q1) :- !,t_tidy193,5445 -t_tidy((true,P1), Q1) :- !,t_tidy193,5445 -t_tidy((P1,true), Q1) :- !,t_tidy195,5490 -t_tidy((P1,true), Q1) :- !,t_tidy195,5490 -t_tidy((P1,true), Q1) :- !,t_tidy195,5490 -t_tidy((P1,P2), (Q1,Q2)) :- !,t_tidy197,5535 -t_tidy((P1,P2), (Q1,Q2)) :- !,t_tidy197,5535 -t_tidy((P1,P2), (Q1,Q2)) :- !,t_tidy197,5535 -t_tidy(A, A).t_tidy200,5600 -t_tidy(A, A).t_tidy200,5600 -prolog:'C'([X|S],X,S).C208,5742 -prolog:'C'([X|S],X,S).C208,5742 -prolog:phrase(PhraseDef, WordList) :-phrase219,5995 -prolog:phrase(PhraseDef, WordList) :-phrase219,5995 -prolog:phrase(V, S0, S) :-phrase228,6202 -prolog:phrase(V, S0, S) :-phrase228,6202 -prolog:phrase([H|T], S0, S) :-phrase232,6301 -prolog:phrase([H|T], S0, S) :-phrase232,6301 -prolog:phrase([], S0, S) :-phrase236,6393 -prolog:phrase([], S0, S) :-phrase236,6393 -prolog:phrase(P, S0, S) :-phrase239,6440 -prolog:phrase(P, S0, S) :-phrase239,6440 -'$phrase_list'([], S, S).$phrase_list242,6485 -'$phrase_list'([], S, S)./p,predicate,predicate definition242,6485 -'$phrase_list'([], S, S).$phrase_list242,6485 -'$phrase_list'([H|T], [H|S1], S0) :-$phrase_list243,6511 -'$phrase_list'([H|T], [H|S1], S0) :-$phrase_list243,6511 -'$phrase_list'([H|T], [H|S1], S0) :-$phrase_list243,6511 -prolog:'.'(H,T, S0, S) :-.252,6670 -prolog:'.'(H,T, S0, S) :-.252,6670 -prolog:','(A,B, S0, S) :-,259,6769 -prolog:','(A,B, S0, S) :-,259,6769 -prolog:';'(A,B, S0, S) :-;263,6855 -prolog:';'(A,B, S0, S) :-;263,6855 -prolog:'->'(A,B, S0, S) :-->271,7029 -prolog:'->'(A,B, S0, S) :-->271,7029 -prolog:'\\+'(A, S0, S) :-\\+275,7117 -prolog:'\\+'(A, S0, S) :-\\+275,7117 -:- multifile system:goal_expansion/2.multifile279,7202 -:- multifile system:goal_expansion/2.multifile279,7202 -:- dynamic system:goal_expansion/2.dynamic281,7241 -:- dynamic system:goal_expansion/2.dynamic281,7241 -'$c_built_in_phrase'(NT, Xs0, Xs, Mod, NewGoal) :-$c_built_in_phrase283,7278 -'$c_built_in_phrase'(NT, Xs0, Xs, Mod, NewGoal) :-$c_built_in_phrase283,7278 -'$c_built_in_phrase'(NT, Xs0, Xs, Mod, NewGoal) :-$c_built_in_phrase283,7278 -do_c_built_in('C'(A,B,C), _, _, (A=[B|C])) :- !.do_c_built_in313,8232 -do_c_built_in('C'(A,B,C), _, _, (A=[B|C])) :- !.do_c_built_in313,8232 -do_c_built_in('C'(A,B,C), _, _, (A=[B|C])) :- !.do_c_built_in313,8232 -do_c_built_in(phrase(NT,Xs0, Xs),Mod, _, NewGoal) :- do_c_built_in315,8282 -do_c_built_in(phrase(NT,Xs0, Xs),Mod, _, NewGoal) :- do_c_built_in315,8282 -do_c_built_in(phrase(NT,Xs0, Xs),Mod, _, NewGoal) :- do_c_built_in315,8282 -do_c_built_in(phrase(NT,Xs),Mod,_,NewGoal) :-do_c_built_in319,8426 -do_c_built_in(phrase(NT,Xs),Mod,_,NewGoal) :-do_c_built_in319,8426 -do_c_built_in(phrase(NT,Xs),Mod,_,NewGoal) :-do_c_built_in319,8426 - -packages/python/swig/yap4py/prolog/pl/ground.yap,1823 -numbervars('$VAR'(M), M, N) :- !,numbervars22,635 -numbervars('$VAR'(M), M, N) :- !,numbervars22,635 -numbervars('$VAR'(M), M, N) :- !,numbervars22,635 -numbervars(Atomic, M, M) :-numbervars24,682 -numbervars(Atomic, M, M) :-numbervars24,682 -numbervars(Atomic, M, M) :-numbervars24,682 -numbervars(Term, M, N) :-numbervars26,730 -numbervars(Term, M, N) :-numbervars26,730 -numbervars(Term, M, N) :-numbervars26,730 -'$numbervars'(A, A, _, N, N) :- !.$numbervars30,820 -'$numbervars'(A, A, _, N, N) :- !.$numbervars30,820 -'$numbervars'(A, A, _, N, N) :- !.$numbervars30,820 -'$numbervars'(A,Arity, Term, M, N) :-$numbervars31,855 -'$numbervars'(A,Arity, Term, M, N) :-$numbervars31,855 -'$numbervars'(A,Arity, Term, M, N) :-$numbervars31,855 -ground(Term) :-ground38,998 -ground(Term) :-ground38,998 -ground(Term) :-ground38,998 -'$ground'(0, _) :- !.$ground43,1148 -'$ground'(0, _) :- !.$ground43,1148 -'$ground'(0, _) :- !.$ground43,1148 -'$ground'(N, Term) :-$ground44,1170 -'$ground'(N, Term) :-$ground44,1170 -'$ground'(N, Term) :-$ground44,1170 -numbervars(Term, M, N) :-numbervars50,1266 -numbervars(Term, M, N) :-numbervars50,1266 -numbervars(Term, M, N) :-numbervars50,1266 -'$numbermarked_vars'([], M, M).$numbermarked_vars54,1361 -'$numbermarked_vars'([], M, M)./p,predicate,predicate definition54,1361 -'$numbermarked_vars'([], M, M).$numbermarked_vars54,1361 -'$numbermarked_vars'([V|L], M, N) :- $numbermarked_vars55,1393 -'$numbermarked_vars'([V|L], M, N) :- $numbermarked_vars55,1393 -'$numbermarked_vars'([V|L], M, N) :- $numbermarked_vars55,1393 -'$numbermarked_vars'(['$VAR'(M)|L], M, N) :-$numbermarked_vars58,1478 -'$numbermarked_vars'(['$VAR'(M)|L], M, N) :-$numbermarked_vars58,1478 -'$numbermarked_vars'(['$VAR'(M)|L], M, N) :-$numbermarked_vars'(['$VAR58,1478 - -packages/python/swig/yap4py/prolog/pl/hacks.yap,14274 -hacks:context_variables(NamedVariables) :-context_variables37,1078 -hacks:context_variables(NamedVariables) :-context_variables37,1078 -run_formats([], _).run_formats51,1554 -run_formats([], _).run_formats51,1554 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1574 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1574 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1574 -display_stack_info(CPs,Envs,Lim,PC) :-display_stack_info56,1681 -display_stack_info(CPs,Envs,Lim,PC) :-display_stack_info56,1681 -display_stack_info(CPs,Envs,Lim,PC) :-display_stack_info56,1681 -code_location(Info,Where,Location) :-code_location62,1868 -code_location(Info,Where,Location) :-code_location62,1868 -code_location(Info,Where,Location) :-code_location62,1868 -code_location(Info,_,Info).code_location66,2026 -code_location(Info,_,Info).code_location66,2026 -construct_code(-1,Name,Arity,Mod,Where,Location) :- !,construct_code68,2055 -construct_code(-1,Name,Arity,Mod,Where,Location) :- !,construct_code68,2055 -construct_code(-1,Name,Arity,Mod,Where,Location) :- !,construct_code68,2055 -construct_code(0,_,_,_,Location,Location) :- !.construct_code72,2262 -construct_code(0,_,_,_,Location,Location) :- !.construct_code72,2262 -construct_code(0,_,_,_,Location,Location) :- !.construct_code72,2262 -construct_code(Cl,Name,Arity,Mod,Where,Location) :-construct_code73,2310 -construct_code(Cl,Name,Arity,Mod,Where,Location) :-construct_code73,2310 -construct_code(Cl,Name,Arity,Mod,Where,Location) :-construct_code73,2310 -'$prepare_loc'(Info,Where,Location) :- integer(Where), !,$prepare_loc80,2572 -'$prepare_loc'(Info,Where,Location) :- integer(Where), !,$prepare_loc80,2572 -'$prepare_loc'(Info,Where,Location) :- integer(Where), !,$prepare_loc80,2572 -'$prepare_loc'(Info,_,Info).$prepare_loc83,2732 -'$prepare_loc'(Info,_,Info)./p,predicate,predicate definition83,2732 -'$prepare_loc'(Info,_,Info).$prepare_loc83,2732 -display_pc(PC, PP, Source) -->display_pc85,2762 -display_pc(PC, PP, Source) -->display_pc85,2762 -display_pc(PC, PP, Source) -->display_pc85,2762 -pc_code(0,_PP,_Name,_Arity,_Mod, 'top level or system code' - []) --> !.pc_code90,2906 -pc_code(0,_PP,_Name,_Arity,_Mod, 'top level or system code' - []) --> !.pc_code90,2906 -pc_code(0,_PP,_Name,_Arity,_Mod, 'top level or system code' - []) --> !.pc_code90,2906 -pc_code(-1,_PP,Name,Arity,Mod, '~a:~q/~d' - [Mod,Name,Arity]) --> !,pc_code91,2979 -pc_code(-1,_PP,Name,Arity,Mod, '~a:~q/~d' - [Mod,Name,Arity]) --> !,pc_code91,2979 -pc_code(-1,_PP,Name,Arity,Mod, '~a:~q/~d' - [Mod,Name,Arity]) --> !,pc_code91,2979 -pc_code(Cl,Name,Arity,Mod, 'clause ~d for ~a:~q/~d'-[Cl,Mod,Name,Arity]) -->pc_code97,3211 -pc_code(Cl,Name,Arity,Mod, 'clause ~d for ~a:~q/~d'-[Cl,Mod,Name,Arity]) -->pc_code97,3211 -pc_code(Cl,Name,Arity,Mod, 'clause ~d for ~a:~q/~d'-[Cl,Mod,Name,Arity]) -->pc_code97,3211 -display_stack_info(_,_,0,_) --> !.display_stack_info105,3466 -display_stack_info(_,_,0,_) --> !.display_stack_info105,3466 -display_stack_info(_,_,0,_) --> !.display_stack_info105,3466 -display_stack_info([],[],_,_) --> [].display_stack_info106,3501 -display_stack_info([],[],_,_) --> [].display_stack_info106,3501 -display_stack_info([],[],_,_) --> [].display_stack_info106,3501 -display_stack_info([CP|CPs],[],I,_) -->display_stack_info107,3539 -display_stack_info([CP|CPs],[],I,_) -->display_stack_info107,3539 -display_stack_info([CP|CPs],[],I,_) -->display_stack_info107,3539 -display_stack_info([],[Env|Envs],I,Cont) -->display_stack_info111,3648 -display_stack_info([],[Env|Envs],I,Cont) -->display_stack_info111,3648 -display_stack_info([],[Env|Envs],I,Cont) -->display_stack_info111,3648 -display_stack_info([CP|LCPs],[Env|LEnvs],I,Cont) -->display_stack_info115,3780 -display_stack_info([CP|LCPs],[Env|LEnvs],I,Cont) -->display_stack_info115,3780 -display_stack_info([CP|LCPs],[Env|LEnvs],I,Cont) -->display_stack_info115,3780 -show_cp(CP, Continuation) -->show_cp134,4287 -show_cp(CP, Continuation) -->show_cp134,4287 -show_cp(CP, Continuation) -->show_cp134,4287 -show_env(Env,Cont,NCont) -->show_env150,4717 -show_env(Env,Cont,NCont) -->show_env150,4717 -show_env(Env,Cont,NCont) -->show_env150,4717 -clean_goal(G,Mod,NG) :-clean_goal162,5082 -clean_goal(G,Mod,NG) :-clean_goal162,5082 -clean_goal(G,Mod,NG) :-clean_goal162,5082 -clean_goal(G,_,G).clean_goal164,5147 -clean_goal(G,_,G).clean_goal164,5147 -scratch_goal(N,0,Mod,Mod:N) :-scratch_goal166,5167 -scratch_goal(N,0,Mod,Mod:N) :-scratch_goal166,5167 -scratch_goal(N,0,Mod,Mod:N) :-scratch_goal166,5167 -scratch_goal(N,A,Mod,NG) :-scratch_goal168,5202 -scratch_goal(N,A,Mod,NG) :-scratch_goal168,5202 -scratch_goal(N,A,Mod,NG) :-scratch_goal168,5202 -list_of_qmarks(0,[]) :- !.list_of_qmarks178,5328 -list_of_qmarks(0,[]) :- !.list_of_qmarks178,5328 -list_of_qmarks(0,[]) :- !.list_of_qmarks178,5328 -list_of_qmarks(I,[?|L]) :-list_of_qmarks179,5355 -list_of_qmarks(I,[?|L]) :-list_of_qmarks179,5355 -list_of_qmarks(I,[?|L]) :-list_of_qmarks179,5355 -fully_strip_module( T, M, TF) :-fully_strip_module183,5418 -fully_strip_module( T, M, TF) :-fully_strip_module183,5418 -fully_strip_module( T, M, TF) :-fully_strip_module183,5418 -beautify_hidden_goal('$yes_no'(G,_Query), prolog) -->beautify_hidden_goal187,5489 -beautify_hidden_goal('$yes_no'(G,_Query), prolog) -->beautify_hidden_goal187,5489 -beautify_hidden_goal('$yes_no'(G,_Query), prolog) -->beautify_hidden_goal187,5489 -beautify_hidden_goal('$do_yes_no'(G,Mod), prolog) -->beautify_hidden_goal191,5580 -beautify_hidden_goal('$do_yes_no'(G,Mod), prolog) -->beautify_hidden_goal191,5580 -beautify_hidden_goal('$do_yes_no'(G,Mod), prolog) -->beautify_hidden_goal191,5580 -beautify_hidden_goal('$query'(G,VarList), prolog) -->beautify_hidden_goal193,5644 -beautify_hidden_goal('$query'(G,VarList), prolog) -->beautify_hidden_goal193,5644 -beautify_hidden_goal('$query'(G,VarList), prolog) -->beautify_hidden_goal193,5644 -beautify_hidden_goal('$enter_top_level', prolog) -->beautify_hidden_goal195,5719 -beautify_hidden_goal('$enter_top_level', prolog) -->beautify_hidden_goal195,5719 -beautify_hidden_goal('$enter_top_level', prolog) -->beautify_hidden_goal195,5719 -beautify_hidden_goal('$csult'(Files,Mod),prolog) -->beautify_hidden_goal198,5829 -beautify_hidden_goal('$csult'(Files,Mod),prolog) -->beautify_hidden_goal198,5829 -beautify_hidden_goal('$csult'(Files,Mod),prolog) -->beautify_hidden_goal198,5829 -beautify_hidden_goal('$use_module'(Files,Mod,Is),prolog) -->beautify_hidden_goal200,5907 -beautify_hidden_goal('$use_module'(Files,Mod,Is),prolog) -->beautify_hidden_goal200,5907 -beautify_hidden_goal('$use_module'(Files,Mod,Is),prolog) -->beautify_hidden_goal200,5907 -beautify_hidden_goal('$continue_with_command'(reconsult,V,P,G,Source),prolog) -->beautify_hidden_goal202,5997 -beautify_hidden_goal('$continue_with_command'(reconsult,V,P,G,Source),prolog) -->beautify_hidden_goal202,5997 -beautify_hidden_goal('$continue_with_command'(reconsult,V,P,G,Source),prolog) -->beautify_hidden_goal202,5997 -beautify_hidden_goal('$continue_with_command'(consult,V,P,G,Source),prolog) -->beautify_hidden_goal204,6106 -beautify_hidden_goal('$continue_with_command'(consult,V,P,G,Source),prolog) -->beautify_hidden_goal204,6106 -beautify_hidden_goal('$continue_with_command'(consult,V,P,G,Source),prolog) -->beautify_hidden_goal204,6106 -beautify_hidden_goal('$continue_with_command'(top,V,P,G,_),prolog) -->beautify_hidden_goal206,6213 -beautify_hidden_goal('$continue_with_command'(top,V,P,G,_),prolog) -->beautify_hidden_goal206,6213 -beautify_hidden_goal('$continue_with_command'(top,V,P,G,_),prolog) -->beautify_hidden_goal206,6213 -beautify_hidden_goal('$continue_with_command'(Command,V,P,G,Source),prolog) -->beautify_hidden_goal208,6303 -beautify_hidden_goal('$continue_with_command'(Command,V,P,G,Source),prolog) -->beautify_hidden_goal208,6303 -beautify_hidden_goal('$continue_with_command'(Command,V,P,G,Source),prolog) -->beautify_hidden_goal208,6303 -beautify_hidden_goal('$spycall'(G,M,InControl,Redo),prolog) -->beautify_hidden_goal210,6420 -beautify_hidden_goal('$spycall'(G,M,InControl,Redo),prolog) -->beautify_hidden_goal210,6420 -beautify_hidden_goal('$spycall'(G,M,InControl,Redo),prolog) -->beautify_hidden_goal210,6420 -beautify_hidden_goal('$do_spy'(Goal, Mod, _CP, InControl),prolog) -->beautify_hidden_goal212,6525 -beautify_hidden_goal('$do_spy'(Goal, Mod, _CP, InControl),prolog) -->beautify_hidden_goal212,6525 -beautify_hidden_goal('$do_spy'(Goal, Mod, _CP, InControl),prolog) -->beautify_hidden_goal212,6525 -beautify_hidden_goal('$system_catch'(G,Mod,Exc,Handler),prolog) -->beautify_hidden_goal214,6635 -beautify_hidden_goal('$system_catch'(G,Mod,Exc,Handler),prolog) -->beautify_hidden_goal214,6635 -beautify_hidden_goal('$system_catch'(G,Mod,Exc,Handler),prolog) -->beautify_hidden_goal214,6635 -beautify_hidden_goal('$catch'(G,Exc,Handler),prolog) -->beautify_hidden_goal216,6734 -beautify_hidden_goal('$catch'(G,Exc,Handler),prolog) -->beautify_hidden_goal216,6734 -beautify_hidden_goal('$catch'(G,Exc,Handler),prolog) -->beautify_hidden_goal216,6734 -beautify_hidden_goal('$execute_command'(Query,V,P,Option,Source),prolog) -->beautify_hidden_goal218,6818 -beautify_hidden_goal('$execute_command'(Query,V,P,Option,Source),prolog) -->beautify_hidden_goal218,6818 -beautify_hidden_goal('$execute_command'(Query,V,P,Option,Source),prolog) -->beautify_hidden_goal218,6818 -beautify_hidden_goal('$process_directive'(Gs,_Mode,_VL),prolog) -->beautify_hidden_goal220,6943 -beautify_hidden_goal('$process_directive'(Gs,_Mode,_VL),prolog) -->beautify_hidden_goal220,6943 -beautify_hidden_goal('$process_directive'(Gs,_Mode,_VL),prolog) -->beautify_hidden_goal220,6943 -beautify_hidden_goal('$loop'(Stream,Option),prolog) -->beautify_hidden_goal222,7023 -beautify_hidden_goal('$loop'(Stream,Option),prolog) -->beautify_hidden_goal222,7023 -beautify_hidden_goal('$loop'(Stream,Option),prolog) -->beautify_hidden_goal222,7023 -beautify_hidden_goal('$load_files'(Files,Opts,?),prolog) -->beautify_hidden_goal224,7125 -beautify_hidden_goal('$load_files'(Files,Opts,?),prolog) -->beautify_hidden_goal224,7125 -beautify_hidden_goal('$load_files'(Files,Opts,?),prolog) -->beautify_hidden_goal224,7125 -beautify_hidden_goal('$load_files'(_,_,Name),prolog) -->beautify_hidden_goal226,7213 -beautify_hidden_goal('$load_files'(_,_,Name),prolog) -->beautify_hidden_goal226,7213 -beautify_hidden_goal('$load_files'(_,_,Name),prolog) -->beautify_hidden_goal226,7213 -beautify_hidden_goal('$reconsult'(Files,Mod),prolog) -->beautify_hidden_goal228,7279 -beautify_hidden_goal('$reconsult'(Files,Mod),prolog) -->beautify_hidden_goal228,7279 -beautify_hidden_goal('$reconsult'(Files,Mod),prolog) -->beautify_hidden_goal228,7279 -beautify_hidden_goal('$undefp'([Mod|G]),prolog) -->beautify_hidden_goal230,7361 -beautify_hidden_goal('$undefp'([Mod|G]),prolog) -->beautify_hidden_goal230,7361 -beautify_hidden_goal('$undefp'([Mod|G]),prolog) -->beautify_hidden_goal230,7361 -beautify_hidden_goal('$undefp'(?),prolog) -->beautify_hidden_goal232,7440 -beautify_hidden_goal('$undefp'(?),prolog) -->beautify_hidden_goal232,7440 -beautify_hidden_goal('$undefp'(?),prolog) -->beautify_hidden_goal232,7440 -beautify_hidden_goal(repeat,prolog) -->beautify_hidden_goal234,7511 -beautify_hidden_goal(repeat,prolog) -->beautify_hidden_goal234,7511 -beautify_hidden_goal(repeat,prolog) -->beautify_hidden_goal234,7511 -beautify_hidden_goal('$recorded_with_key'(A,B,C),prolog) -->beautify_hidden_goal236,7562 -beautify_hidden_goal('$recorded_with_key'(A,B,C),prolog) -->beautify_hidden_goal236,7562 -beautify_hidden_goal('$recorded_with_key'(A,B,C),prolog) -->beautify_hidden_goal236,7562 -beautify_hidden_goal('$findall_with_common_vars'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal238,7643 -beautify_hidden_goal('$findall_with_common_vars'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal238,7643 -beautify_hidden_goal('$findall_with_common_vars'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal238,7643 -beautify_hidden_goal('$bagof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal240,7748 -beautify_hidden_goal('$bagof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal240,7748 -beautify_hidden_goal('$bagof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal240,7748 -beautify_hidden_goal('$setof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal242,7832 -beautify_hidden_goal('$setof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal242,7832 -beautify_hidden_goal('$setof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal242,7832 -beautify_hidden_goal('$findall'(T,G,S,A),prolog) -->beautify_hidden_goal244,7916 -beautify_hidden_goal('$findall'(T,G,S,A),prolog) -->beautify_hidden_goal244,7916 -beautify_hidden_goal('$findall'(T,G,S,A),prolog) -->beautify_hidden_goal244,7916 -beautify_hidden_goal('$listing'(G,M,_Stream),prolog) -->beautify_hidden_goal246,7990 -beautify_hidden_goal('$listing'(G,M,_Stream),prolog) -->beautify_hidden_goal246,7990 -beautify_hidden_goal('$listing'(G,M,_Stream),prolog) -->beautify_hidden_goal246,7990 -beautify_hidden_goal('$call'(G,_CP,?,M),prolog) -->beautify_hidden_goal248,8064 -beautify_hidden_goal('$call'(G,_CP,?,M),prolog) -->beautify_hidden_goal248,8064 -beautify_hidden_goal('$call'(G,_CP,?,M),prolog) -->beautify_hidden_goal248,8064 -beautify_hidden_goal('$call'(_G,_CP,G0,M),prolog) -->beautify_hidden_goal250,8130 -beautify_hidden_goal('$call'(_G,_CP,G0,M),prolog) -->beautify_hidden_goal250,8130 -beautify_hidden_goal('$call'(_G,_CP,G0,M),prolog) -->beautify_hidden_goal250,8130 -beautify_hidden_goal('$current_predicate'(Na,M,S,_),prolog) -->beautify_hidden_goal252,8199 -beautify_hidden_goal('$current_predicate'(Na,M,S,_),prolog) -->beautify_hidden_goal252,8199 -beautify_hidden_goal('$current_predicate'(Na,M,S,_),prolog) -->beautify_hidden_goal252,8199 -beautify_hidden_goal('$list_clauses'(Stream,M,Pred),prolog) -->beautify_hidden_goal254,8293 -beautify_hidden_goal('$list_clauses'(Stream,M,Pred),prolog) -->beautify_hidden_goal254,8293 -beautify_hidden_goal('$list_clauses'(Stream,M,Pred),prolog) -->beautify_hidden_goal254,8293 - -packages/python/swig/yap4py/prolog/pl/init.yap,6168 -fail :- fail.fail66,1480 -false :- fail.false75,1544 -'$$!'(CP) :- '$cut_by'(CP).$$!85,1631 -'$$!'(CP) :- '$cut_by'(CP).$$!85,1631 -'$$!'(CP) :- '$cut_by'(CP).$$!85,1631 -'$$!'(CP) :- '$cut_by'(CP)./p,predicate,predicate definition85,1631 -'$$!'(CP) :- '$cut_by'(CP).$$!85,1631 -'$$!'(CP) :- '$cut_by'(CP).$$!'(CP) :- '$cut_by85,1631 -'$do_log_upd_clause'(_,_,_,_,_,_).$do_log_upd_clause93,1775 -'$do_log_upd_clause'(_,_,_,_,_,_)./p,predicate,predicate definition93,1775 -'$do_log_upd_clause'(_,_,_,_,_,_).$do_log_upd_clause93,1775 -'$do_log_upd_clause'(A,B,C,D,E,_) :-$do_log_upd_clause94,1810 -'$do_log_upd_clause'(A,B,C,D,E,_) :-$do_log_upd_clause94,1810 -'$do_log_upd_clause'(A,B,C,D,E,_) :-$do_log_upd_clause94,1810 -'$do_log_upd_clause'(_,_,_,_,_,_).$do_log_upd_clause96,1890 -'$do_log_upd_clause'(_,_,_,_,_,_)./p,predicate,predicate definition96,1890 -'$do_log_upd_clause'(_,_,_,_,_,_).$do_log_upd_clause96,1890 -'$do_log_upd_clause_erase'(_,_,_,_,_,_).$do_log_upd_clause_erase99,1927 -'$do_log_upd_clause_erase'(_,_,_,_,_,_)./p,predicate,predicate definition99,1927 -'$do_log_upd_clause_erase'(_,_,_,_,_,_).$do_log_upd_clause_erase99,1927 -'$do_log_upd_clause_erase'(A,B,C,D,E,_) :-$do_log_upd_clause_erase100,1968 -'$do_log_upd_clause_erase'(A,B,C,D,E,_) :-$do_log_upd_clause_erase100,1968 -'$do_log_upd_clause_erase'(A,B,C,D,E,_) :-$do_log_upd_clause_erase100,1968 -'$do_log_upd_clause_erase'(_,_,_,_,_,_).$do_log_upd_clause_erase102,2060 -'$do_log_upd_clause_erase'(_,_,_,_,_,_)./p,predicate,predicate definition102,2060 -'$do_log_upd_clause_erase'(_,_,_,_,_,_).$do_log_upd_clause_erase102,2060 -'$do_log_upd_clause0'(_,_,_,_,_,_).$do_log_upd_clause0104,2102 -'$do_log_upd_clause0'(_,_,_,_,_,_)./p,predicate,predicate definition104,2102 -'$do_log_upd_clause0'(_,_,_,_,_,_).$do_log_upd_clause0104,2102 -'$do_log_upd_clause0'(A,B,C,D,_,_) :-$do_log_upd_clause0105,2138 -'$do_log_upd_clause0'(A,B,C,D,_,_) :-$do_log_upd_clause0105,2138 -'$do_log_upd_clause0'(A,B,C,D,_,_) :-$do_log_upd_clause0105,2138 -'$do_log_upd_clause0'(_,_,_,_,_,_).$do_log_upd_clause0107,2217 -'$do_log_upd_clause0'(_,_,_,_,_,_)./p,predicate,predicate definition107,2217 -'$do_log_upd_clause0'(_,_,_,_,_,_).$do_log_upd_clause0107,2217 -'$do_static_clause'(_,_,_,_,_).$do_static_clause110,2255 -'$do_static_clause'(_,_,_,_,_)./p,predicate,predicate definition110,2255 -'$do_static_clause'(_,_,_,_,_).$do_static_clause110,2255 -'$do_static_clause'(A,B,C,D,E) :-$do_static_clause111,2287 -'$do_static_clause'(A,B,C,D,E) :-$do_static_clause111,2287 -'$do_static_clause'(A,B,C,D,E) :-$do_static_clause111,2287 -'$do_static_clause'(_,_,_,_,_).$do_static_clause113,2360 -'$do_static_clause'(_,_,_,_,_)./p,predicate,predicate definition113,2360 -'$do_static_clause'(_,_,_,_,_).$do_static_clause113,2360 -:- dynamic prolog:'$parent_module'/2.dynamic135,2858 -:- dynamic prolog:'$parent_module'/2.dynamic135,2858 -:- dynamic prolog:'$user_defined_flag'/4.dynamic186,3665 -:- dynamic prolog:'$user_defined_flag'/4.dynamic186,3665 -:- multifile prolog:debug_action_hook/1.multifile188,3708 -:- multifile prolog:debug_action_hook/1.multifile188,3708 -:- multifile prolog:'$system_predicate'/2.multifile190,3750 -:- multifile prolog:'$system_predicate'/2.multifile190,3750 -version(yap,[6,3]).version194,3816 -version(yap,[6,3]).version194,3816 -:- multifile user:portray_message/2.multifile203,3955 -:- multifile user:portray_message/2.multifile203,3955 -:- dynamic user:portray_message/2.dynamic205,3993 -:- dynamic user:portray_message/2.dynamic205,3993 -:- multifile user:goal_expansion/3.multifile220,4599 -:- multifile user:goal_expansion/3.multifile220,4599 -:- dynamic user:goal_expansion/3.dynamic222,4636 -:- dynamic user:goal_expansion/3.dynamic222,4636 -:- multifile user:goal_expansion/2.multifile224,4671 -:- multifile user:goal_expansion/2.multifile224,4671 -:- dynamic user:goal_expansion/2.dynamic226,4708 -:- dynamic user:goal_expansion/2.dynamic226,4708 -:- multifile system:goal_expansion/2.multifile228,4743 -:- multifile system:goal_expansion/2.multifile228,4743 -:- dynamic system:goal_expansion/2.dynamic230,4782 -:- dynamic system:goal_expansion/2.dynamic230,4782 -:- multifile goal_expansion/2.multifile232,4819 -:- multifile goal_expansion/2.multifile232,4819 -:- dynamic goal_expansion/2.dynamic234,4851 -:- dynamic goal_expansion/2.dynamic234,4851 -yap_hacks:cut_by(CP) :- '$$cut_by'(CP).cut_by251,5200 -yap_hacks:cut_by(CP) :- '$$cut_by'(CP).cut_by251,5200 -yap_hacks:cut_by(CP) :- '$$cut_by'(CP).cut_by251,5200 -:- multifile term_expansion/2.multifile303,6424 -:- multifile term_expansion/2.multifile303,6424 -:- dynamic term_expansion/2.dynamic305,6456 -:- dynamic term_expansion/2.dynamic305,6456 -:- multifile system:term_expansion/2.multifile307,6486 -:- multifile system:term_expansion/2.multifile307,6486 -:- dynamic system:term_expansion/2.dynamic309,6525 -:- dynamic system:term_expansion/2.dynamic309,6525 -:- multifile swi:swi_predicate_table/4.multifile311,6562 -:- multifile swi:swi_predicate_table/4.multifile311,6562 -:- multifile user:message_hook/3.multifile326,7021 -:- multifile user:message_hook/3.multifile326,7021 -:- dynamic user:message_hook/3.dynamic328,7056 -:- dynamic user:message_hook/3.dynamic328,7056 -:- multifile user:exception/3.multifile343,8291 -:- multifile user:exception/3.multifile343,8291 -:- dynamic user:exception/3.dynamic345,8323 -:- dynamic user:exception/3.dynamic345,8323 -p(X,Y) :- Y is X*X.p361,8501 -p(X,Y) :- Y is X*X.p361,8501 -p(X,Y) :- Y is X*X.p361,8501 -prefix(information, '% ', S, user_error) --> [].prefix363,8522 -prefix(information, '% ', S, user_error) --> [].prefix363,8522 -prefix(information, '% ', S, user_error) --> [].prefix363,8522 -a(1).a371,8638 -a(1).a371,8638 -a(2).a375,8649 -a(2).a375,8649 -a(2).a376,8655 -a(2).a376,8655 -lists:member(1,[1]).member378,8662 -clause_to_indicator(T, M:Name/Arity) :- ,clause_to_indicator380,8684 -clause_to_indicator(T, M:Name/Arity) :- ,clause_to_indicator380,8684 -clause_to_indicator(T, M:Name/Arity) :- ,clause_to_indicator380,8684 - -packages/python/swig/yap4py/prolog/pl/listing.yap,8361 -listing :-listing59,1749 -listing(MV) :-listing79,2199 -listing(MV) :-listing79,2199 -listing(MV) :-listing79,2199 -listing(Stream, MV) :-listing83,2268 -listing(Stream, MV) :-listing83,2268 -listing(Stream, MV) :-listing83,2268 -listing(_Stream, []) :- !.listing86,2351 -listing(_Stream, []) :- !.listing86,2351 -listing(_Stream, []) :- !.listing86,2351 -listing(Stream, [MV|MVs]) :- !,listing87,2378 -listing(Stream, [MV|MVs]) :- !,listing87,2378 -listing(Stream, [MV|MVs]) :- !,listing87,2378 -'$mlisting'(Stream, MV, M) :-$mlisting91,2463 -'$mlisting'(Stream, MV, M) :-$mlisting91,2463 -'$mlisting'(Stream, MV, M) :-$mlisting91,2463 -'$do_listing'(Stream, M, Name/Arity) :-$do_listing110,3004 -'$do_listing'(Stream, M, Name/Arity) :-$do_listing110,3004 -'$do_listing'(Stream, M, Name/Arity) :-$do_listing110,3004 -'$listing'(Name, Arity, M, Stream) :-$listing123,3287 -'$listing'(Name, Arity, M, Stream) :-$listing123,3287 -'$listing'(Name, Arity, M, Stream) :-$listing123,3287 -'$listing'(_,_,_,_).$listing127,3445 -'$listing'(_,_,_,_)./p,predicate,predicate definition127,3445 -'$listing'(_,_,_,_).$listing127,3445 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name)./p,predicate,predicate definition129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name,Name,_) :- atom(Name), !.$funcspec130,3520 -'$funcspec'(Name,Name,_) :- atom(Name), !.$funcspec130,3520 -'$funcspec'(Name,Name,_) :- atom(Name), !.$funcspec130,3520 -'$funcspec'(Name,_,_) :-$funcspec131,3563 -'$funcspec'(Name,_,_) :-$funcspec131,3563 -'$funcspec'(Name,_,_) :-$funcspec131,3563 -'$list_clauses'(Stream, M, Pred) :-$list_clauses134,3652 -'$list_clauses'(Stream, M, Pred) :-$list_clauses134,3652 -'$list_clauses'(Stream, M, Pred) :-$list_clauses134,3652 -'$list_clauses'(Stream, M, Pred) :-$list_clauses143,3810 -'$list_clauses'(Stream, M, Pred) :-$list_clauses143,3810 -'$list_clauses'(Stream, M, Pred) :-$list_clauses143,3810 -'$list_clauses'(Stream, M, Pred) :-$list_clauses155,4132 -'$list_clauses'(Stream, M, Pred) :-$list_clauses155,4132 -'$list_clauses'(Stream, M, Pred) :-$list_clauses155,4132 -'$list_clauses'(Stream, M, Pred) :-$list_clauses167,4426 -'$list_clauses'(Stream, M, Pred) :-$list_clauses167,4426 -'$list_clauses'(Stream, M, Pred) :-$list_clauses167,4426 -'$list_clauses'(Stream, M, Pred) :-$list_clauses179,4711 -'$list_clauses'(Stream, M, Pred) :-$list_clauses179,4711 -'$list_clauses'(Stream, M, Pred) :-$list_clauses179,4711 -'$list_clauses'(Stream, _M, _Pred) :-$list_clauses192,5037 -'$list_clauses'(Stream, _M, _Pred) :-$list_clauses192,5037 -'$list_clauses'(Stream, _M, _Pred) :-$list_clauses192,5037 -'$list_clauses'(Stream, M, Pred) :-$list_clauses195,5111 -'$list_clauses'(Stream, M, Pred) :-$list_clauses195,5111 -'$list_clauses'(Stream, M, Pred) :-$list_clauses195,5111 -portray_clause(Stream, Clause) :-portray_clause209,5516 -portray_clause(Stream, Clause) :-portray_clause209,5516 -portray_clause(Stream, Clause) :-portray_clause209,5516 -portray_clause(_, _).portray_clause213,5637 -portray_clause(_, _).portray_clause213,5637 -portray_clause(Clause) :-portray_clause220,5744 -portray_clause(Clause) :-portray_clause220,5744 -portray_clause(Clause) :-portray_clause220,5744 -'$portray_clause'(Stream, (Pred :- true)) :- !,$portray_clause224,5836 -'$portray_clause'(Stream, (Pred :- true)) :- !,$portray_clause224,5836 -'$portray_clause'(Stream, (Pred :- true)) :- !,$portray_clause224,5836 -'$portray_clause'(Stream, (Pred:-Body)) :- !,$portray_clause227,5943 -'$portray_clause'(Stream, (Pred:-Body)) :- !,$portray_clause227,5943 -'$portray_clause'(Stream, (Pred:-Body)) :- !,$portray_clause227,5943 -'$portray_clause'(Stream, Pred) :-$portray_clause232,6122 -'$portray_clause'(Stream, Pred) :-$portray_clause232,6122 -'$portray_clause'(Stream, Pred) :-$portray_clause232,6122 -'$write_body'(X,I,T,Stream) :- var(X), !,$write_body236,6217 -'$write_body'(X,I,T,Stream) :- var(X), !,$write_body236,6217 -'$write_body'(X,I,T,Stream) :- var(X), !,$write_body236,6217 -'$write_body'((P,Q), I, T, Stream) :-$write_body239,6308 -'$write_body'((P,Q), I, T, Stream) :-$write_body239,6308 -'$write_body'((P,Q), I, T, Stream) :-$write_body239,6308 -'$write_body'((P->Q;S),I,_, Stream) :-$write_body244,6460 -'$write_body'((P->Q;S),I,_, Stream) :-$write_body244,6460 -'$write_body'((P->Q;S),I,_, Stream) :-$write_body244,6460 -'$write_body'((P->Q|S),I,_,Stream) :-$write_body252,6694 -'$write_body'((P->Q|S),I,_,Stream) :-$write_body252,6694 -'$write_body'((P->Q|S),I,_,Stream) :-$write_body252,6694 -'$write_body'((P->Q),I,_,Stream) :-$write_body260,6926 -'$write_body'((P->Q),I,_,Stream) :-$write_body260,6926 -'$write_body'((P->Q),I,_,Stream) :-$write_body260,6926 -'$write_body'((P;Q),I,_,Stream) :-$write_body268,7165 -'$write_body'((P;Q),I,_,Stream) :-$write_body268,7165 -'$write_body'((P;Q),I,_,Stream) :-$write_body268,7165 -'$write_body'((P|Q),I,_,Stream) :-$write_body274,7333 -'$write_body'((P|Q),I,_,Stream) :-$write_body274,7333 -'$write_body'((P|Q),I,_,Stream) :-$write_body274,7333 -'$write_body'(X,I,T,Stream) :-$write_body280,7501 -'$write_body'(X,I,T,Stream) :-$write_body280,7501 -'$write_body'(X,I,T,Stream) :-$write_body280,7501 -'$write_disj'((Q;S),I0,I,C,Stream) :- !,$write_disj287,7596 -'$write_disj'((Q;S),I0,I,C,Stream) :- !,$write_disj287,7596 -'$write_disj'((Q;S),I0,I,C,Stream) :- !,$write_disj287,7596 -'$write_disj'((Q|S),I0,I,C,Stream) :- !,$write_disj291,7738 -'$write_disj'((Q|S),I0,I,C,Stream) :- !,$write_disj291,7738 -'$write_disj'((Q|S),I0,I,C,Stream) :- !,$write_disj291,7738 -'$write_disj'(S,_,I,C,Stream) :-$write_disj295,7880 -'$write_disj'(S,_,I,C,Stream) :-$write_disj295,7880 -'$write_disj'(S,_,I,C,Stream) :-$write_disj295,7880 -'$beforelit'('(',_,Stream) :-$beforelit299,7945 -'$beforelit'('(',_,Stream) :-$beforelit299,7945 -'$beforelit'('(',_,Stream) :-$beforelit'(299,7945 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ])./p,predicate,predicate definition302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beautify_vars'(T) :-$beautify_vars304,8070 -'$beautify_vars'(T) :-$beautify_vars304,8070 -'$beautify_vars'(T) :-$beautify_vars304,8070 -'$list_get_vars'(V,L,[V|L] ) :- var(V), !.$list_get_vars310,8162 -'$list_get_vars'(V,L,[V|L] ) :- var(V), !.$list_get_vars310,8162 -'$list_get_vars'(V,L,[V|L] ) :- var(V), !.$list_get_vars310,8162 -'$list_get_vars'(Atomic, M, M) :-$list_get_vars311,8205 -'$list_get_vars'(Atomic, M, M) :-$list_get_vars311,8205 -'$list_get_vars'(Atomic, M, M) :-$list_get_vars311,8205 -'$list_get_vars'([Arg|Args], M, N) :- !,$list_get_vars313,8262 -'$list_get_vars'([Arg|Args], M, N) :- !,$list_get_vars313,8262 -'$list_get_vars'([Arg|Args], M, N) :- !,$list_get_vars313,8262 -'$list_get_vars'(Term, M, N) :-$list_get_vars316,8365 -'$list_get_vars'(Term, M, N) :-$list_get_vars316,8365 -'$list_get_vars'(Term, M, N) :-$list_get_vars316,8365 -'$list_transform'([],_) :- !.$list_transform320,8449 -'$list_transform'([],_) :- !.$list_transform320,8449 -'$list_transform'([],_) :- !.$list_transform320,8449 -'$list_transform'([X,Y|L],M) :-$list_transform321,8479 -'$list_transform'([X,Y|L],M) :-$list_transform321,8479 -'$list_transform'([X,Y|L],M) :-$list_transform321,8479 -'$list_transform'(['$VAR'(-1)|L],M) :- !,$list_transform327,8576 -'$list_transform'(['$VAR'(-1)|L],M) :- !,$list_transform327,8576 -'$list_transform'(['$VAR'(-1)|L],M) :- !,$list_transform'(['$VAR327,8576 -'$list_transform'([_|L],M) :-$list_transform329,8643 -'$list_transform'([_|L],M) :-$list_transform329,8643 -'$list_transform'([_|L],M) :-$list_transform329,8643 - -packages/python/swig/yap4py/prolog/pl/load_foreign.yap,8971 -load_foreign_files(Objs,Libs,Entry) :-load_foreign_files57,1725 -load_foreign_files(Objs,Libs,Entry) :-load_foreign_files57,1725 -load_foreign_files(Objs,Libs,Entry) :-load_foreign_files57,1725 -load_absolute_foreign_files(Objs,Libs,Entry) :-load_absolute_foreign_files84,2554 -load_absolute_foreign_files(Objs,Libs,Entry) :-load_absolute_foreign_files84,2554 -load_absolute_foreign_files(Objs,Libs,Entry) :-load_absolute_foreign_files84,2554 -'$check_objs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_objs_for_load_foreign_files102,2891 -'$check_objs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_objs_for_load_foreign_files102,2891 -'$check_objs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_objs_for_load_foreign_files102,2891 -'$check_objs_for_load_foreign_files'([],[],_) :- !.$check_objs_for_load_foreign_files104,2986 -'$check_objs_for_load_foreign_files'([],[],_) :- !.$check_objs_for_load_foreign_files104,2986 -'$check_objs_for_load_foreign_files'([],[],_) :- !.$check_objs_for_load_foreign_files104,2986 -'$check_objs_for_load_foreign_files'([Obj|Objs],[NObj|NewObjs],G) :- !,$check_objs_for_load_foreign_files105,3038 -'$check_objs_for_load_foreign_files'([Obj|Objs],[NObj|NewObjs],G) :- !,$check_objs_for_load_foreign_files105,3038 -'$check_objs_for_load_foreign_files'([Obj|Objs],[NObj|NewObjs],G) :- !,$check_objs_for_load_foreign_files105,3038 -'$check_objs_for_load_foreign_files'(Objs,_,G) :-$check_objs_for_load_foreign_files108,3215 -'$check_objs_for_load_foreign_files'(Objs,_,G) :-$check_objs_for_load_foreign_files108,3215 -'$check_objs_for_load_foreign_files'(Objs,_,G) :-$check_objs_for_load_foreign_files108,3215 -'$check_obj_for_load_foreign_files'(V,_,G) :- var(V), !,$check_obj_for_load_foreign_files111,3305 -'$check_obj_for_load_foreign_files'(V,_,G) :- var(V), !,$check_obj_for_load_foreign_files111,3305 -'$check_obj_for_load_foreign_files'(V,_,G) :- var(V), !,$check_obj_for_load_foreign_files111,3305 -'$check_obj_for_load_foreign_files'(Obj,NewObj,_) :- atom(Obj), !,$check_obj_for_load_foreign_files113,3399 -'$check_obj_for_load_foreign_files'(Obj,NewObj,_) :- atom(Obj), !,$check_obj_for_load_foreign_files113,3399 -'$check_obj_for_load_foreign_files'(Obj,NewObj,_) :- atom(Obj), !,$check_obj_for_load_foreign_files113,3399 -'$check_obj_for_load_foreign_files'(Obj,_,G) :-$check_obj_for_load_foreign_files120,3661 -'$check_obj_for_load_foreign_files'(Obj,_,G) :-$check_obj_for_load_foreign_files120,3661 -'$check_obj_for_load_foreign_files'(Obj,_,G) :-$check_obj_for_load_foreign_files120,3661 -'$check_libs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_libs_for_load_foreign_files123,3748 -'$check_libs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_libs_for_load_foreign_files123,3748 -'$check_libs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_libs_for_load_foreign_files123,3748 -'$check_libs_for_load_foreign_files'([],[],_) :- !.$check_libs_for_load_foreign_files125,3843 -'$check_libs_for_load_foreign_files'([],[],_) :- !.$check_libs_for_load_foreign_files125,3843 -'$check_libs_for_load_foreign_files'([],[],_) :- !.$check_libs_for_load_foreign_files125,3843 -'$check_libs_for_load_foreign_files'([Lib|Libs],[NLib|NLibs],G) :- !,$check_libs_for_load_foreign_files126,3895 -'$check_libs_for_load_foreign_files'([Lib|Libs],[NLib|NLibs],G) :- !,$check_libs_for_load_foreign_files126,3895 -'$check_libs_for_load_foreign_files'([Lib|Libs],[NLib|NLibs],G) :- !,$check_libs_for_load_foreign_files126,3895 -'$check_libs_for_load_foreign_files'(Libs,_,G) :-$check_libs_for_load_foreign_files129,4068 -'$check_libs_for_load_foreign_files'(Libs,_,G) :-$check_libs_for_load_foreign_files129,4068 -'$check_libs_for_load_foreign_files'(Libs,_,G) :-$check_libs_for_load_foreign_files129,4068 -'$check_lib_for_load_foreign_files'(V,_,G) :- var(V), !,$check_lib_for_load_foreign_files132,4158 -'$check_lib_for_load_foreign_files'(V,_,G) :- var(V), !,$check_lib_for_load_foreign_files132,4158 -'$check_lib_for_load_foreign_files'(V,_,G) :- var(V), !,$check_lib_for_load_foreign_files132,4158 -'$check_lib_for_load_foreign_files'(Lib,NLib,_) :- atom(Lib), !,$check_lib_for_load_foreign_files134,4252 -'$check_lib_for_load_foreign_files'(Lib,NLib,_) :- atom(Lib), !,$check_lib_for_load_foreign_files134,4252 -'$check_lib_for_load_foreign_files'(Lib,NLib,_) :- atom(Lib), !,$check_lib_for_load_foreign_files134,4252 -'$check_lib_for_load_foreign_files'(Lib,_,G) :-$check_lib_for_load_foreign_files137,4387 -'$check_lib_for_load_foreign_files'(Lib,_,G) :-$check_lib_for_load_foreign_files137,4387 -'$check_lib_for_load_foreign_files'(Lib,_,G) :-$check_lib_for_load_foreign_files137,4387 -'$process_obj_suffix'(Obj,Obj) :-$process_obj_suffix140,4474 -'$process_obj_suffix'(Obj,Obj) :-$process_obj_suffix140,4474 -'$process_obj_suffix'(Obj,Obj) :-$process_obj_suffix140,4474 -'$process_obj_suffix'(Obj,NewObj) :-$process_obj_suffix143,4605 -'$process_obj_suffix'(Obj,NewObj) :-$process_obj_suffix143,4605 -'$process_obj_suffix'(Obj,NewObj) :-$process_obj_suffix143,4605 -'$checklib_prefix'(F,F) :- is_absolute_file_name(F), !.$checklib_prefix147,4743 -'$checklib_prefix'(F,F) :- is_absolute_file_name(F), !.$checklib_prefix147,4743 -'$checklib_prefix'(F,F) :- is_absolute_file_name(F), !.$checklib_prefix147,4743 -'$checklib_prefix'(F, F) :-$checklib_prefix148,4799 -'$checklib_prefix'(F, F) :-$checklib_prefix148,4799 -'$checklib_prefix'(F, F) :-$checklib_prefix148,4799 -'$checklib_prefix'(F, Lib) :-$checklib_prefix150,4858 -'$checklib_prefix'(F, Lib) :-$checklib_prefix150,4858 -'$checklib_prefix'(F, Lib) :-$checklib_prefix150,4858 -'$import_foreign'(F, M0, M) :-$import_foreign153,4916 -'$import_foreign'(F, M0, M) :-$import_foreign153,4916 -'$import_foreign'(F, M0, M) :-$import_foreign153,4916 -'$import_foreign'(_F, _M0, _M).$import_foreign160,5103 -'$import_foreign'(_F, _M0, _M)./p,predicate,predicate definition160,5103 -'$import_foreign'(_F, _M0, _M).$import_foreign160,5103 -'$check_entry_for_load_foreign_files'(V,G) :- var(V), !,$check_entry_for_load_foreign_files162,5136 -'$check_entry_for_load_foreign_files'(V,G) :- var(V), !,$check_entry_for_load_foreign_files162,5136 -'$check_entry_for_load_foreign_files'(V,G) :- var(V), !,$check_entry_for_load_foreign_files162,5136 -'$check_entry_for_load_foreign_files'(Entry,_) :- atom(Entry), !.$check_entry_for_load_foreign_files164,5230 -'$check_entry_for_load_foreign_files'(Entry,_) :- atom(Entry), !.$check_entry_for_load_foreign_files164,5230 -'$check_entry_for_load_foreign_files'(Entry,_) :- atom(Entry), !.$check_entry_for_load_foreign_files164,5230 -'$check_entry_for_load_foreign_files'(Entry,G) :-$check_entry_for_load_foreign_files165,5296 -'$check_entry_for_load_foreign_files'(Entry,G) :-$check_entry_for_load_foreign_files165,5296 -'$check_entry_for_load_foreign_files'(Entry,G) :-$check_entry_for_load_foreign_files165,5296 -dlerror().dlerror178,5852 -open_shared_object(File, Handle) :-open_shared_object182,5868 -open_shared_object(File, Handle) :-open_shared_object182,5868 -open_shared_object(File, Handle) :-open_shared_object182,5868 -open_shared_object(File, Opts, Handle) :-open_shared_object199,6509 -open_shared_object(File, Opts, Handle) :-open_shared_object199,6509 -open_shared_object(File, Opts, Handle) :-open_shared_object199,6509 -'$open_shared_opts'(Opts, G, _OptsI) :-$open_shared_opts205,6783 -'$open_shared_opts'(Opts, G, _OptsI) :-$open_shared_opts205,6783 -'$open_shared_opts'(Opts, G, _OptsI) :-$open_shared_opts205,6783 -'$open_shared_opts'([], _, 0) :- !.$open_shared_opts208,6875 -'$open_shared_opts'([], _, 0) :- !.$open_shared_opts208,6875 -'$open_shared_opts'([], _, 0) :- !.$open_shared_opts208,6875 -'$open_shared_opts'([Opt|Opts], G, V) :-$open_shared_opts209,6911 -'$open_shared_opts'([Opt|Opts], G, V) :-$open_shared_opts209,6911 -'$open_shared_opts'([Opt|Opts], G, V) :-$open_shared_opts209,6911 -'$open_shared_opt'(Opt, G, _) :-$open_shared_opt214,7041 -'$open_shared_opt'(Opt, G, _) :-$open_shared_opt214,7041 -'$open_shared_opt'(Opt, G, _) :-$open_shared_opt214,7041 -'$open_shared_opt'(now, __, 1) :- !.$open_shared_opt217,7125 -'$open_shared_opt'(now, __, 1) :- !.$open_shared_opt217,7125 -'$open_shared_opt'(now, __, 1) :- !.$open_shared_opt217,7125 -'$open_shared_opt'(global, __, 2) :- !.$open_shared_opt218,7162 -'$open_shared_opt'(global, __, 2) :- !.$open_shared_opt218,7162 -'$open_shared_opt'(global, __, 2) :- !.$open_shared_opt218,7162 -'$open_shared_opt'(Opt, Goal, _) :-$open_shared_opt219,7202 -'$open_shared_opt'(Opt, Goal, _) :-$open_shared_opt219,7202 -'$open_shared_opt'(Opt, Goal, _) :-$open_shared_opt219,7202 -call_shared_object_function( Handle, Function) :-call_shared_object_function231,7622 -call_shared_object_function( Handle, Function) :-call_shared_object_function231,7622 -call_shared_object_function( Handle, Function) :-call_shared_object_function231,7622 - -packages/python/swig/yap4py/prolog/pl/messages.yap,57955 -caller( error(_,Term), _) -->caller59,1641 -caller( error(_,Term), _) -->caller59,1641 -caller( error(_,Term), _) -->caller59,1641 -:- multifile prolog:message/3.multifile111,2780 -:- multifile prolog:message/3.multifile111,2780 -:- multifile user:message_hook/3.multifile113,2812 -:- multifile user:message_hook/3.multifile113,2812 -prolog:message_to_string(Event, Message) :-message_to_string124,3001 -prolog:message_to_string(Event, Message) :-message_to_string124,3001 -compose_message( Term, Level ) -->compose_message134,3415 -compose_message( Term, Level ) -->compose_message134,3415 -compose_message( Term, Level ) -->compose_message134,3415 -compose_message( query(_QueryResult,_), _Level) -->compose_message138,3500 -compose_message( query(_QueryResult,_), _Level) -->compose_message138,3500 -compose_message( query(_QueryResult,_), _Level) -->compose_message138,3500 -compose_message( absolute_file_path(File), _Level) -->compose_message140,3557 -compose_message( absolute_file_path(File), _Level) -->compose_message140,3557 -compose_message( absolute_file_path(File), _Level) -->compose_message140,3557 -compose_message( absolute_file_path(Msg, Args), _Level) -->compose_message142,3655 -compose_message( absolute_file_path(Msg, Args), _Level) -->compose_message142,3655 -compose_message( absolute_file_path(Msg, Args), _Level) -->compose_message142,3655 -compose_message( arguments([]), _Level) -->compose_message146,3758 -compose_message( arguments([]), _Level) -->compose_message146,3758 -compose_message( arguments([]), _Level) -->compose_message146,3758 -compose_message( arguments([A|As]), Level) -->compose_message148,3807 -compose_message( arguments([A|As]), Level) -->compose_message148,3807 -compose_message( arguments([A|As]), Level) -->compose_message148,3807 -compose_message( ancestors([]), _Level) -->compose_message152,3923 -compose_message( ancestors([]), _Level) -->compose_message152,3923 -compose_message( ancestors([]), _Level) -->compose_message152,3923 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,already), _Level) -->compose_message154,3999 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,already), _Level) -->compose_message154,3999 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,already), _Level) -->compose_message154,3999 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,ok), _Level) -->compose_message156,4134 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,ok), _Level) -->compose_message156,4134 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,ok), _Level) -->compose_message156,4134 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),remove,last), _Level) -->compose_message158,4249 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),remove,last), _Level) -->compose_message158,4249 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),remove,last), _Level) -->compose_message158,4249 -compose_message( breakp(no,breakpoint_for,M:F/N), _Level) -->compose_message160,4373 -compose_message( breakp(no,breakpoint_for,M:F/N), _Level) -->compose_message160,4373 -compose_message( breakp(no,breakpoint_for,M:F/N), _Level) -->compose_message160,4373 -compose_message( breakpoints([]), _Level) -->compose_message162,4488 -compose_message( breakpoints([]), _Level) -->compose_message162,4488 -compose_message( breakpoints([]), _Level) -->compose_message162,4488 -compose_message( breakpoints(L), _Level) -->compose_message164,4571 -compose_message( breakpoints(L), _Level) -->compose_message164,4571 -compose_message( breakpoints(L), _Level) -->compose_message164,4571 -compose_message( clauses_not_together(P), _Level) -->compose_message167,4662 -compose_message( clauses_not_together(P), _Level) -->compose_message167,4662 -compose_message( clauses_not_together(P), _Level) -->compose_message167,4662 -compose_message( debug(debug), _Level) -->compose_message169,4762 -compose_message( debug(debug), _Level) -->compose_message169,4762 -compose_message( debug(debug), _Level) -->compose_message169,4762 -compose_message( debug(off), _Level) -->compose_message171,4833 -compose_message( debug(off), _Level) -->compose_message171,4833 -compose_message( debug(off), _Level) -->compose_message171,4833 -compose_message( debug(trace), _Level) -->compose_message173,4902 -compose_message( debug(trace), _Level) -->compose_message173,4902 -compose_message( debug(trace), _Level) -->compose_message173,4902 -compose_message( declaration(Args,Action), _Level) -->compose_message175,4972 -compose_message( declaration(Args,Action), _Level) -->compose_message175,4972 -compose_message( declaration(Args,Action), _Level) -->compose_message175,4972 -compose_message( defined_elsewhere(P,F), _Level) -->compose_message177,5070 -compose_message( defined_elsewhere(P,F), _Level) -->compose_message177,5070 -compose_message( defined_elsewhere(P,F), _Level) -->compose_message177,5070 -compose_message( functionality(Library), _Level) -->compose_message179,5183 -compose_message( functionality(Library), _Level) -->compose_message179,5183 -compose_message( functionality(Library), _Level) -->compose_message179,5183 -compose_message( import(Pred,To,From,private), _Level) -->compose_message181,5274 -compose_message( import(Pred,To,From,private), _Level) -->compose_message181,5274 -compose_message( import(Pred,To,From,private), _Level) -->compose_message181,5274 -compose_message( redefine_imported(M,M0,PI), _Level) -->compose_message183,5399 -compose_message( redefine_imported(M,M0,PI), _Level) -->compose_message183,5399 -compose_message( redefine_imported(M,M0,PI), _Level) -->compose_message183,5399 -compose_message( leash([]), _Level) -->compose_message186,5581 -compose_message( leash([]), _Level) -->compose_message186,5581 -compose_message( leash([]), _Level) -->compose_message186,5581 -compose_message( leash([A|B]), _Level) -->compose_message188,5642 -compose_message( leash([A|B]), _Level) -->compose_message188,5642 -compose_message( leash([A|B]), _Level) -->compose_message188,5642 -compose_message( no, _Level) -->compose_message190,5723 -compose_message( no, _Level) -->compose_message190,5723 -compose_message( no, _Level) -->compose_message190,5723 -compose_message( no_match(P), _Level) -->compose_message192,5773 -compose_message( no_match(P), _Level) -->compose_message192,5773 -compose_message( no_match(P), _Level) -->compose_message192,5773 -compose_message( leash([A|B]), _Level) -->compose_message194,5859 -compose_message( leash([A|B]), _Level) -->compose_message194,5859 -compose_message( leash([A|B]), _Level) -->compose_message194,5859 -compose_message( halt, _Level) --> !,compose_message196,5941 -compose_message( halt, _Level) --> !,compose_message196,5941 -compose_message( halt, _Level) --> !,compose_message196,5941 -compose_message( false, _Level) --> !,compose_message198,6012 -compose_message( false, _Level) --> !,compose_message198,6012 -compose_message( false, _Level) --> !,compose_message198,6012 -compose_message( '$abort', _Level) --> !,compose_message200,6069 -compose_message( '$abort', _Level) --> !,compose_message200,6069 -compose_message( '$abort', _Level) --> !,compose_message200,6069 -compose_message( abort(user), _Level) --> !,compose_message202,6144 -compose_message( abort(user), _Level) --> !,compose_message202,6144 -compose_message( abort(user), _Level) --> !,compose_message202,6144 -compose_message( loading(_,F), _Level) --> { F == user }, !.compose_message204,6224 -compose_message( loading(_,F), _Level) --> { F == user }, !.compose_message204,6224 -compose_message( loading(_,F), _Level) --> { F == user }, !.compose_message204,6224 -compose_message( loading(What,FileName), _Level) --> !,compose_message205,6285 -compose_message( loading(What,FileName), _Level) --> !,compose_message205,6285 -compose_message( loading(What,FileName), _Level) --> !,compose_message205,6285 -compose_message( loaded(_,user,_,_,_), _Level) --> !.compose_message207,6377 -compose_message( loaded(_,user,_,_,_), _Level) --> !.compose_message207,6377 -compose_message( loaded(_,user,_,_,_), _Level) --> !.compose_message207,6377 -compose_message( loaded(included,AbsFileName,Mod,Time,Space), _Level) --> !,compose_message208,6431 -compose_message( loaded(included,AbsFileName,Mod,Time,Space), _Level) --> !,compose_message208,6431 -compose_message( loaded(included,AbsFileName,Mod,Time,Space), _Level) --> !,compose_message208,6431 -compose_message( loaded(What,AbsoluteFileName,Mod,Time,Space), _Level) --> !,compose_message211,6597 -compose_message( loaded(What,AbsoluteFileName,Mod,Time,Space), _Level) --> !,compose_message211,6597 -compose_message( loaded(What,AbsoluteFileName,Mod,Time,Space), _Level) --> !,compose_message211,6597 -compose_message(trace_command(-1), _Leve) -->compose_message214,6769 -compose_message(trace_command(-1), _Leve) -->compose_message214,6769 -compose_message(trace_command(-1), _Leve) -->compose_message214,6769 -compose_message(trace_command(C), _Leve) -->compose_message216,6861 -compose_message(trace_command(C), _Leve) -->compose_message216,6861 -compose_message(trace_command(C), _Leve) -->compose_message216,6861 -compose_message(trace_help, _Leve) -->compose_message218,6956 -compose_message(trace_help, _Leve) -->compose_message218,6956 -compose_message(trace_help, _Leve) -->compose_message218,6956 -compose_message(version(Version), _Leve) -->compose_message220,7059 -compose_message(version(Version), _Leve) -->compose_message220,7059 -compose_message(version(Version), _Leve) -->compose_message220,7059 -compose_message(myddas_version(Version), _Leve) -->compose_message222,7127 -compose_message(myddas_version(Version), _Leve) -->compose_message222,7127 -compose_message(myddas_version(Version), _Leve) -->compose_message222,7127 -compose_message(yes, _Level) --> !,compose_message224,7217 -compose_message(yes, _Level) --> !,compose_message224,7217 -compose_message(yes, _Level) --> !,compose_message224,7217 -compose_message(Term, Level) -->compose_message226,7271 -compose_message(Term, Level) -->compose_message226,7271 -compose_message(Term, Level) -->compose_message226,7271 -compose_message(Term, Level) -->compose_message235,7490 -compose_message(Term, Level) -->compose_message235,7490 -compose_message(Term, Level) -->compose_message235,7490 -location(error(syntax_error(_),info(between(_,LN,_), FileName, _)), _ , _) -->location241,7648 -location(error(syntax_error(_),info(between(_,LN,_), FileName, _)), _ , _) -->location241,7648 -location(error(syntax_error(_),info(between(_,LN,_), FileName, _)), _ , _) -->location241,7648 -location(error(style_check(style_check(_,LN,FileName,_ ) ),_), _ , _) -->location245,7770 -location(error(style_check(style_check(_,LN,FileName,_ ) ),_), _ , _) -->location245,7770 -location(error(style_check(style_check(_,LN,FileName,_ ) ),_), _ , _) -->location245,7770 -location( error(_,Term), Level, LC ) -->location248,7882 -location( error(_,Term), Level, LC ) -->location248,7882 -location( error(_,Term), Level, LC ) -->location248,7882 -location( error(_,Term), Level, LC ) -->location254,8159 -location( error(_,Term), Level, LC ) -->location254,8159 -location( error(_,Term), Level, LC ) -->location254,8159 -main_message(error(Msg,Info), _, _) --> {var(Info)}, !,main_message260,8443 -main_message(error(Msg,Info), _, _) --> {var(Info)}, !,main_message260,8443 -main_message(error(Msg,Info), _, _) --> {var(Info)}, !,main_message260,8443 -main_message( error(syntax_error(Msg),info(between(L0,LM,LF),_Stream,Term)), Level, LC ) -->main_message262,8557 -main_message( error(syntax_error(Msg),info(between(L0,LM,LF),_Stream,Term)), Level, LC ) -->main_message262,8557 -main_message( error(syntax_error(Msg),info(between(L0,LM,LF),_Stream,Term)), Level, LC ) -->main_message262,8557 -main_message(error(style_check(style_check(singleton(SVs),_Pos,_File,P)),_), Level, _LC) -->main_message273,8864 -main_message(error(style_check(style_check(singleton(SVs),_Pos,_File,P)),_), Level, _LC) -->main_message273,8864 -main_message(error(style_check(style_check(singleton(SVs),_Pos,_File,P)),_), Level, _LC) -->main_message273,8864 -main_message(error(style_check(style_check(multiple(N,A,Mod,I0),_Pos,File,_P)),_), Level, _LC) -->main_message281,9157 -main_message(error(style_check(style_check(multiple(N,A,Mod,I0),_Pos,File,_P)),_), Level, _LC) -->main_message281,9157 -main_message(error(style_check(style_check(multiple(N,A,Mod,I0),_Pos,File,_P)),_), Level, _LC) -->main_message281,9157 -main_message(error(style_check(style_check(discontiguous(N,A,Mod),_S,_W,_P)),_) , Level, _LC)-->main_message284,9331 -main_message(error(style_check(style_check(discontiguous(N,A,Mod),_S,_W,_P)),_) , Level, _LC)-->main_message284,9331 -main_message(error(style_check(style_check(discontiguous(N,A,Mod),_S,_W,_P)),_) , Level, _LC)-->main_message284,9331 -main_message(error(consistency_error(Who)), Level, _LC) -->main_message287,9500 -main_message(error(consistency_error(Who)), Level, _LC) -->main_message287,9500 -main_message(error(consistency_error(Who)), Level, _LC) -->main_message287,9500 -main_message(error(domain_error(Who , Type), _Where), Level, _LC) -->main_message290,9634 -main_message(error(domain_error(Who , Type), _Where), Level, _LC) -->main_message290,9634 -main_message(error(domain_error(Who , Type), _Where), Level, _LC) -->main_message290,9634 -main_message(error(existence_error(Type , Who), _Where), Level, _LC) -->main_message299,10145 -main_message(error(existence_error(Type , Who), _Where), Level, _LC) -->main_message299,10145 -main_message(error(existence_error(Type , Who), _Where), Level, _LC) -->main_message299,10145 -main_message(error(permission_error(Op, Type, Id), _Where), Level, _LC) -->main_message302,10290 -main_message(error(permission_error(Op, Type, Id), _Where), Level, _LC) -->main_message302,10290 -main_message(error(permission_error(Op, Type, Id), _Where), Level, _LC) -->main_message302,10290 -main_message(error(instantiation_error, _Where), Level, _LC) -->main_message304,10435 -main_message(error(instantiation_error, _Where), Level, _LC) -->main_message304,10435 -main_message(error(instantiation_error, _Where), Level, _LC) -->main_message304,10435 -main_message(error(representation_error(Type)), Level, _LC) -->main_message306,10544 -main_message(error(representation_error(Type)), Level, _LC) -->main_message306,10544 -main_message(error(representation_error(Type)), Level, _LC) -->main_message306,10544 -main_message(error(type_error(Type,Who), _What), Level, _LC) -->main_message308,10668 -main_message(error(type_error(Type,Who), _What), Level, _LC) -->main_message308,10668 -main_message(error(type_error(Type,Who), _What), Level, _LC) -->main_message308,10668 -main_message(error(system_error(Who), _What), Level, _LC) -->main_message311,10797 -main_message(error(system_error(Who), _What), Level, _LC) -->main_message311,10797 -main_message(error(system_error(Who), _What), Level, _LC) -->main_message311,10797 -main_message(error(uninstantiation_error(T),_), Level, _LC) -->main_message314,10903 -main_message(error(uninstantiation_error(T),_), Level, _LC) -->main_message314,10903 -main_message(error(uninstantiation_error(T),_), Level, _LC) -->main_message314,10903 -display_consulting( F, Level, LC) -->display_consulting317,11034 -display_consulting( F, Level, LC) -->display_consulting317,11034 -display_consulting( F, Level, LC) -->display_consulting317,11034 -display_consulting(_F, _, _LC) -->display_consulting323,11187 -display_consulting(_F, _, _LC) -->display_consulting323,11187 -display_consulting(_F, _, _LC) -->display_consulting323,11187 -caller( error(_,Term), _) -->caller326,11230 -caller( error(_,Term), _) -->caller326,11230 -caller( error(_,Term), _) -->caller326,11230 -caller( error(_,Term), _) -->caller334,11498 -caller( error(_,Term), _) -->caller334,11498 -caller( error(_,Term), _) -->caller334,11498 -caller( error(_,Term), _) -->caller339,11676 -caller( error(_,Term), _) -->caller339,11676 -caller( error(_,Term), _) -->caller339,11676 -caller( _, _) -->caller344,11788 -caller( _, _) -->caller344,11788 -caller( _, _) -->caller344,11788 -c_goal( error(_,Term), Level ) -->c_goal347,11812 -c_goal( error(_,Term), Level ) -->c_goal347,11812 -c_goal( error(_,Term), Level ) -->c_goal347,11812 -c_goal( _, _Level ) --> [].c_goal352,11993 -c_goal( _, _Level ) --> [].c_goal352,11993 -c_goal( _, _Level ) --> [].c_goal352,11993 -prolog_message(X) -->prolog_message355,12023 -prolog_message(X) -->prolog_message355,12023 -prolog_message(X) -->prolog_message355,12023 -system_message(error(Msg,Info)) -->system_message358,12066 -system_message(error(Msg,Info)) -->system_message358,12066 -system_message(error(Msg,Info)) -->system_message358,12066 -system_message(error(consistency_error(Who),Where)) -->system_message361,12178 -system_message(error(consistency_error(Who),Where)) -->system_message361,12178 -system_message(error(consistency_error(Who),Where)) -->system_message361,12178 -system_message(error(context_error(Goal,Who),Where)) -->system_message363,12320 -system_message(error(context_error(Goal,Who),Where)) -->system_message363,12320 -system_message(error(context_error(Goal,Who),Where)) -->system_message363,12320 -system_message(error(domain_error(DomainType,Opt), Where)) -->system_message365,12441 -system_message(error(domain_error(DomainType,Opt), Where)) -->system_message365,12441 -system_message(error(domain_error(DomainType,Opt), Where)) -->system_message365,12441 -system_message(error(format_argument_type(Type,Arg), Where)) -->system_message368,12570 -system_message(error(format_argument_type(Type,Arg), Where)) -->system_message368,12570 -system_message(error(format_argument_type(Type,Arg), Where)) -->system_message368,12570 -system_message(error(existence_error(directory,Key), Where)) -->system_message370,12712 -system_message(error(existence_error(directory,Key), Where)) -->system_message370,12712 -system_message(error(existence_error(directory,Key), Where)) -->system_message370,12712 -system_message(error(existence_error(key,Key), Where)) -->system_message372,12849 -system_message(error(existence_error(key,Key), Where)) -->system_message372,12849 -system_message(error(existence_error(key,Key), Where)) -->system_message372,12849 -system_message(error(existence_error(mutex,Key), Where)) -->system_message374,12974 -system_message(error(existence_error(mutex,Key), Where)) -->system_message374,12974 -system_message(error(existence_error(mutex,Key), Where)) -->system_message374,12974 -system_message(existence_error(prolog_flag,F)) -->system_message376,13103 -system_message(existence_error(prolog_flag,F)) -->system_message376,13103 -system_message(existence_error(prolog_flag,F)) -->system_message376,13103 -system_message(error(existence_error(prolog_flag,P), Where)) --> !,system_message378,13245 -system_message(error(existence_error(prolog_flag,P), Where)) --> !,system_message378,13245 -system_message(error(existence_error(prolog_flag,P), Where)) --> !,system_message378,13245 -system_message(error(existence_error(procedure,P), context(Call,Parent))) --> !,system_message380,13382 -system_message(error(existence_error(procedure,P), context(Call,Parent))) --> !,system_message380,13382 -system_message(error(existence_error(procedure,P), context(Call,Parent))) --> !,system_message380,13382 -system_message(error(existence_error(stream,Stream), Where)) -->system_message382,13587 -system_message(error(existence_error(stream,Stream), Where)) -->system_message382,13587 -system_message(error(existence_error(stream,Stream), Where)) -->system_message382,13587 -system_message(error(existence_error(thread,Thread), Where)) -->system_message384,13720 -system_message(error(existence_error(thread,Thread), Where)) -->system_message384,13720 -system_message(error(existence_error(thread,Thread), Where)) -->system_message384,13720 -system_message(error(existence_error(variable,Var), Where)) -->system_message386,13855 -system_message(error(existence_error(variable,Var), Where)) -->system_message386,13855 -system_message(error(existence_error(variable,Var), Where)) -->system_message386,13855 -system_message(error(existence_error(Name,F), W)) -->system_message388,13989 -system_message(error(existence_error(Name,F), W)) -->system_message388,13989 -system_message(error(existence_error(Name,F), W)) -->system_message388,13989 -system_message(error(evaluation_error(int_overflow), Where)) -->system_message391,14141 -system_message(error(evaluation_error(int_overflow), Where)) -->system_message391,14141 -system_message(error(evaluation_error(int_overflow), Where)) -->system_message391,14141 -system_message(error(evaluation_error(float_overflow), Where)) -->system_message393,14251 -system_message(error(evaluation_error(float_overflow), Where)) -->system_message393,14251 -system_message(error(evaluation_error(float_overflow), Where)) -->system_message393,14251 -system_message(error(evaluation_error(undefined), Where)) -->system_message395,14370 -system_message(error(evaluation_error(undefined), Where)) -->system_message395,14370 -system_message(error(evaluation_error(undefined), Where)) -->system_message395,14370 -system_message(error(evaluation_error(underflow), Where)) -->system_message397,14488 -system_message(error(evaluation_error(underflow), Where)) -->system_message397,14488 -system_message(error(evaluation_error(underflow), Where)) -->system_message397,14488 -system_message(error(evaluation_error(float_underflow), Where)) -->system_message399,14588 -system_message(error(evaluation_error(float_underflow), Where)) -->system_message399,14588 -system_message(error(evaluation_error(float_underflow), Where)) -->system_message399,14588 -system_message(error(evaluation_error(zero_divisor), Where)) -->system_message401,14709 -system_message(error(evaluation_error(zero_divisor), Where)) -->system_message401,14709 -system_message(error(evaluation_error(zero_divisor), Where)) -->system_message401,14709 -system_message(error(not_implemented(Type, What), Where)) -->system_message403,14815 -system_message(error(not_implemented(Type, What), Where)) -->system_message403,14815 -system_message(error(not_implemented(Type, What), Where)) -->system_message403,14815 -system_message(error(operating_SYSTEM_ERROR_INTERNAL, Where)) -->system_message405,14934 -system_message(error(operating_SYSTEM_ERROR_INTERNAL, Where)) -->system_message405,14934 -system_message(error(operating_SYSTEM_ERROR_INTERNAL, Where)) -->system_message405,14934 -system_message(error(out_of_heap_error, Where)) -->system_message407,15045 -system_message(error(out_of_heap_error, Where)) -->system_message407,15045 -system_message(error(out_of_heap_error, Where)) -->system_message407,15045 -system_message(error(out_of_stack_error, Where)) -->system_message409,15147 -system_message(error(out_of_stack_error, Where)) -->system_message409,15147 -system_message(error(out_of_stack_error, Where)) -->system_message409,15147 -system_message(error(out_of_trail_error, Where)) -->system_message411,15247 -system_message(error(out_of_trail_error, Where)) -->system_message411,15247 -system_message(error(out_of_trail_error, Where)) -->system_message411,15247 -system_message(error(out_of_attvars_error, Where)) -->system_message413,15347 -system_message(error(out_of_attvars_error, Where)) -->system_message413,15347 -system_message(error(out_of_attvars_error, Where)) -->system_message413,15347 -system_message(error(out_of_auxspace_error, Where)) -->system_message415,15449 -system_message(error(out_of_auxspace_error, Where)) -->system_message415,15449 -system_message(error(out_of_auxspace_error, Where)) -->system_message415,15449 -system_message(error(permission_error(access,private_procedure,P), Where)) -->system_message417,15562 -system_message(error(permission_error(access,private_procedure,P), Where)) -->system_message417,15562 -system_message(error(permission_error(access,private_procedure,P), Where)) -->system_message417,15562 -system_message(error(permission_error(access,static_procedure,P), Where)) -->system_message419,15709 -system_message(error(permission_error(access,static_procedure,P), Where)) -->system_message419,15709 -system_message(error(permission_error(access,static_procedure,P), Where)) -->system_message419,15709 -system_message(error(permission_error(alias,new,P), Where)) -->system_message421,15863 -system_message(error(permission_error(alias,new,P), Where)) -->system_message421,15863 -system_message(error(permission_error(alias,new,P), Where)) -->system_message421,15863 -system_message(error(permission_error(create,Name,P), Where)) -->system_message423,15992 -system_message(error(permission_error(create,Name,P), Where)) -->system_message423,15992 -system_message(error(permission_error(create,Name,P), Where)) -->system_message423,15992 -system_message(error(permission_error(import,M1:I,redefined,SecondMod), Where)) -->system_message425,16125 -system_message(error(permission_error(import,M1:I,redefined,SecondMod), Where)) -->system_message425,16125 -system_message(error(permission_error(import,M1:I,redefined,SecondMod), Where)) -->system_message425,16125 -system_message(error(permission_error(input,binary_stream,Stream), Where)) -->system_message427,16305 -system_message(error(permission_error(input,binary_stream,Stream), Where)) -->system_message427,16305 -system_message(error(permission_error(input,binary_stream,Stream), Where)) -->system_message427,16305 -system_message(error(permission_error(input,closed_stream,Stream), Where)) -->system_message429,16465 -system_message(error(permission_error(input,closed_stream,Stream), Where)) -->system_message429,16465 -system_message(error(permission_error(input,closed_stream,Stream), Where)) -->system_message429,16465 -system_message(error(permission_error(input,past_end_of_stream,Stream), Where)) -->system_message431,16628 -system_message(error(permission_error(input,past_end_of_stream,Stream), Where)) -->system_message431,16628 -system_message(error(permission_error(input,past_end_of_stream,Stream), Where)) -->system_message431,16628 -system_message(error(permission_error(input,stream,Stream), Where)) -->system_message433,16781 -system_message(error(permission_error(input,stream,Stream), Where)) -->system_message433,16781 -system_message(error(permission_error(input,stream,Stream), Where)) -->system_message433,16781 -system_message(error(permission_error(input,text_stream,Stream), Where)) -->system_message435,16920 -system_message(error(permission_error(input,text_stream,Stream), Where)) -->system_message435,16920 -system_message(error(permission_error(input,text_stream,Stream), Where)) -->system_message435,16920 -system_message(error(permission_error(modify,dynamic_procedure,_), Where)) -->system_message437,17076 -system_message(error(permission_error(modify,dynamic_procedure,_), Where)) -->system_message437,17076 -system_message(error(permission_error(modify,dynamic_procedure,_), Where)) -->system_message437,17076 -system_message(error(permission_error(modify,flag,W), _)) -->system_message439,17225 -system_message(error(permission_error(modify,flag,W), _)) -->system_message439,17225 -system_message(error(permission_error(modify,flag,W), _)) -->system_message439,17225 -system_message(error(permission_error(modify,operator,W), Q)) -->system_message441,17341 -system_message(error(permission_error(modify,operator,W), Q)) -->system_message441,17341 -system_message(error(permission_error(modify,operator,W), Q)) -->system_message441,17341 -system_message(error(permission_error(modify,dynamic_procedure,F), Where)) -->system_message443,17471 -system_message(error(permission_error(modify,dynamic_procedure,F), Where)) -->system_message443,17471 -system_message(error(permission_error(modify,dynamic_procedure,F), Where)) -->system_message443,17471 -system_message(error(permission_error(modify,static_procedure,F), Where)) -->system_message445,17623 -system_message(error(permission_error(modify,static_procedure,F), Where)) -->system_message445,17623 -system_message(error(permission_error(modify,static_procedure,F), Where)) -->system_message445,17623 -system_message(error(permission_error(modify,static_procedure_in_use,_), Where)) -->system_message447,17773 -system_message(error(permission_error(modify,static_procedure_in_use,_), Where)) -->system_message447,17773 -system_message(error(permission_error(modify,static_procedure_in_use,_), Where)) -->system_message447,17773 -system_message(error(permission_error(modify,table,P), _)) -->system_message449,17934 -system_message(error(permission_error(modify,table,P), _)) -->system_message449,17934 -system_message(error(permission_error(modify,table,P), _)) -->system_message449,17934 -system_message(error(permission_error(module,redefined,Mod), Who)) -->system_message451,18055 -system_message(error(permission_error(module,redefined,Mod), Who)) -->system_message451,18055 -system_message(error(permission_error(module,redefined,Mod), Who)) -->system_message451,18055 -system_message(error(permission_error(open,source_sink,Stream), Where)) -->system_message453,18208 -system_message(error(permission_error(open,source_sink,Stream), Where)) -->system_message453,18208 -system_message(error(permission_error(open,source_sink,Stream), Where)) -->system_message453,18208 -system_message(error(permission_error(output,binary_stream,Stream), Where)) -->system_message455,18351 -system_message(error(permission_error(output,binary_stream,Stream), Where)) -->system_message455,18351 -system_message(error(permission_error(output,binary_stream,Stream), Where)) -->system_message455,18351 -system_message(error(permission_error(output,stream,Stream), Where)) -->system_message458,18512 -system_message(error(permission_error(output,stream,Stream), Where)) -->system_message458,18512 -system_message(error(permission_error(output,stream,Stream), Where)) -->system_message458,18512 -system_message(error(permission_error(output,text_stream,Stream), Where)) -->system_message460,18651 -system_message(error(permission_error(output,text_stream,Stream), Where)) -->system_message460,18651 -system_message(error(permission_error(output,text_stream,Stream), Where)) -->system_message460,18651 -system_message(error(permission_error(resize,array,P), Where)) -->system_message462,18807 -system_message(error(permission_error(resize,array,P), Where)) -->system_message462,18807 -system_message(error(permission_error(resize,array,P), Where)) -->system_message462,18807 -system_message(error(permission_error(unlock,mutex,P), Where)) -->system_message464,18939 -system_message(error(permission_error(unlock,mutex,P), Where)) -->system_message464,18939 -system_message(error(permission_error(unlock,mutex,P), Where)) -->system_message464,18939 -system_message(error(representation_error(character), Where)) -->system_message466,19071 -system_message(error(representation_error(character), Where)) -->system_message466,19071 -system_message(error(representation_error(character), Where)) -->system_message466,19071 -system_message(error(representation_error(character_code), Where)) -->system_message468,19200 -system_message(error(representation_error(character_code), Where)) -->system_message468,19200 -system_message(error(representation_error(character_code), Where)) -->system_message468,19200 -system_message(error(representation_error(max_arity), Where)) -->system_message470,19339 -system_message(error(representation_error(max_arity), Where)) -->system_message470,19339 -system_message(error(representation_error(max_arity), Where)) -->system_message470,19339 -system_message(error(representation_error(variable), Where)) -->system_message472,19464 -system_message(error(representation_error(variable), Where)) -->system_message472,19464 -system_message(error(representation_error(variable), Where)) -->system_message472,19464 -system_message(error(resource_error(code_space), Where)) -->system_message474,19594 -system_message(error(resource_error(code_space), Where)) -->system_message474,19594 -system_message(error(resource_error(code_space), Where)) -->system_message474,19594 -system_message(error(resource_error(huge_int), Where)) -->system_message476,19711 -system_message(error(resource_error(huge_int), Where)) -->system_message476,19711 -system_message(error(resource_error(huge_int), Where)) -->system_message476,19711 -system_message(error(resource_error(memory), Where)) -->system_message478,19843 -system_message(error(resource_error(memory), Where)) -->system_message478,19843 -system_message(error(resource_error(memory), Where)) -->system_message478,19843 -system_message(error(resource_error(stack), Where)) -->system_message480,19960 -system_message(error(resource_error(stack), Where)) -->system_message480,19960 -system_message(error(resource_error(stack), Where)) -->system_message480,19960 -system_message(error(resource_error(streams), Where)) -->system_message482,20067 -system_message(error(resource_error(streams), Where)) -->system_message482,20067 -system_message(error(resource_error(streams), Where)) -->system_message482,20067 -system_message(error(resource_error(threads), Where)) -->system_message484,20188 -system_message(error(resource_error(threads), Where)) -->system_message484,20188 -system_message(error(resource_error(threads), Where)) -->system_message484,20188 -system_message(error(resource_error(trail), Where)) -->system_message486,20302 -system_message(error(resource_error(trail), Where)) -->system_message486,20302 -system_message(error(resource_error(trail), Where)) -->system_message486,20302 -system_message(error(signal(SIG,_), _)) -->system_message488,20415 -system_message(error(signal(SIG,_), _)) -->system_message488,20415 -system_message(error(signal(SIG,_), _)) -->system_message488,20415 -system_message(error(unhandled_exception,Throw)) -->system_message491,20527 -system_message(error(unhandled_exception,Throw)) -->system_message491,20527 -system_message(error(unhandled_exception,Throw)) -->system_message491,20527 -system_message(error(uninstantiation_error(TE), _Where)) -->system_message493,20639 -system_message(error(uninstantiation_error(TE), _Where)) -->system_message493,20639 -system_message(error(uninstantiation_error(TE), _Where)) -->system_message493,20639 -system_message(Messg) -->system_message495,20769 -system_message(Messg) -->system_message495,20769 -system_message(Messg) -->system_message495,20769 -domain_error(array_overflow, Opt) --> !,domain_error499,20816 -domain_error(array_overflow, Opt) --> !,domain_error499,20816 -domain_error(array_overflow, Opt) --> !,domain_error499,20816 -domain_error(array_type, Opt) --> !,domain_error501,20905 -domain_error(array_type, Opt) --> !,domain_error501,20905 -domain_error(array_type, Opt) --> !,domain_error501,20905 -domain_error(builtin_procedure, _) --> !,domain_error503,20985 -domain_error(builtin_procedure, _) --> !,domain_error503,20985 -domain_error(builtin_procedure, _) --> !,domain_error503,20985 -domain_error(character_code_list, Opt) --> !,domain_error505,21063 -domain_error(character_code_list, Opt) --> !,domain_error505,21063 -domain_error(character_code_list, Opt) --> !,domain_error505,21063 -domain_error(close_option, Opt) --> !,domain_error507,21150 -domain_error(close_option, Opt) --> !,domain_error507,21150 -domain_error(close_option, Opt) --> !,domain_error507,21150 -domain_error(delete_file_option, Opt) --> !,domain_error509,21229 -domain_error(delete_file_option, Opt) --> !,domain_error509,21229 -domain_error(delete_file_option, Opt) --> !,domain_error509,21229 -domain_error(encoding, Opt) --> !,domain_error511,21317 -domain_error(encoding, Opt) --> !,domain_error511,21317 -domain_error(encoding, Opt) --> !,domain_error511,21317 -domain_error(flag_value, [Opt,Flag]) --> !,domain_error513,21388 -domain_error(flag_value, [Opt,Flag]) --> !,domain_error513,21388 -domain_error(flag_value, [Opt,Flag]) --> !,domain_error513,21388 -domain_error(flag_value, Opt) --> !,domain_error515,21482 -domain_error(flag_value, Opt) --> !,domain_error515,21482 -domain_error(flag_value, Opt) --> !,domain_error515,21482 -domain_error(io_mode, Opt) --> !,domain_error517,21561 -domain_error(io_mode, Opt) --> !,domain_error517,21561 -domain_error(io_mode, Opt) --> !,domain_error517,21561 -domain_error(mutable, Opt) --> !,domain_error519,21630 -domain_error(mutable, Opt) --> !,domain_error519,21630 -domain_error(mutable, Opt) --> !,domain_error519,21630 -domain_error(module_decl_options, Opt) --> !,domain_error521,21702 -domain_error(module_decl_options, Opt) --> !,domain_error521,21702 -domain_error(module_decl_options, Opt) --> !,domain_error521,21702 -domain_error(non_empty_list, Opt) --> !,domain_error523,21808 -domain_error(non_empty_list, Opt) --> !,domain_error523,21808 -domain_error(non_empty_list, Opt) --> !,domain_error523,21808 -domain_error(not_less_than_zero, Opt) --> !,domain_error525,21882 -domain_error(not_less_than_zero, Opt) --> !,domain_error525,21882 -domain_error(not_less_than_zero, Opt) --> !,domain_error525,21882 -domain_error(not_newline, Opt) --> !,domain_error527,21968 -domain_error(not_newline, Opt) --> !,domain_error527,21968 -domain_error(not_newline, Opt) --> !,domain_error527,21968 -domain_error(not_zero, Opt) --> !,domain_error529,22044 -domain_error(not_zero, Opt) --> !,domain_error529,22044 -domain_error(not_zero, Opt) --> !,domain_error529,22044 -domain_error(operator_priority, Opt) --> !,domain_error531,22127 -domain_error(operator_priority, Opt) --> !,domain_error531,22127 -domain_error(operator_priority, Opt) --> !,domain_error531,22127 -domain_error(operator_specifier, Opt) --> !,domain_error533,22216 -domain_error(operator_specifier, Opt) --> !,domain_error533,22216 -domain_error(operator_specifier, Opt) --> !,domain_error533,22216 -domain_error(out_of_range, Opt) --> !,domain_error535,22307 -domain_error(out_of_range, Opt) --> !,domain_error535,22307 -domain_error(out_of_range, Opt) --> !,domain_error535,22307 -domain_error(predicate_spec, Opt) --> !,domain_error537,22392 -domain_error(predicate_spec, Opt) --> !,domain_error537,22392 -domain_error(predicate_spec, Opt) --> !,domain_error537,22392 -domain_error(radix, Opt) --> !,domain_error539,22480 -domain_error(radix, Opt) --> !,domain_error539,22480 -domain_error(radix, Opt) --> !,domain_error539,22480 -domain_error(read_option, Opt) --> !,domain_error541,22545 -domain_error(read_option, Opt) --> !,domain_error541,22545 -domain_error(read_option, Opt) --> !,domain_error541,22545 -domain_error(semantics_indicator, Opt) --> !,domain_error543,22630 -domain_error(semantics_indicator, Opt) --> !,domain_error543,22630 -domain_error(semantics_indicator, Opt) --> !,domain_error543,22630 -domain_error(shift_count_overflow, Opt) --> !,domain_error545,22720 -domain_error(shift_count_overflow, Opt) --> !,domain_error545,22720 -domain_error(shift_count_overflow, Opt) --> !,domain_error545,22720 -domain_error(source_sink, Opt) --> !,domain_error547,22810 -domain_error(source_sink, Opt) --> !,domain_error547,22810 -domain_error(source_sink, Opt) --> !,domain_error547,22810 -domain_error(stream, Opt) --> !,domain_error549,22893 -domain_error(stream, Opt) --> !,domain_error549,22893 -domain_error(stream, Opt) --> !,domain_error549,22893 -domain_error(stream_or_alias, Opt) --> !,domain_error551,22961 -domain_error(stream_or_alias, Opt) --> !,domain_error551,22961 -domain_error(stream_or_alias, Opt) --> !,domain_error551,22961 -domain_error(stream_encoding, Opt) --> !,domain_error553,23049 -domain_error(stream_encoding, Opt) --> !,domain_error553,23049 -domain_error(stream_encoding, Opt) --> !,domain_error553,23049 -domain_error(stream_position, Opt) --> !,domain_error555,23145 -domain_error(stream_position, Opt) --> !,domain_error555,23145 -domain_error(stream_position, Opt) --> !,domain_error555,23145 -domain_error(stream_property, Opt) --> !,domain_error557,23231 -domain_error(stream_property, Opt) --> !,domain_error557,23231 -domain_error(stream_property, Opt) --> !,domain_error557,23231 -domain_error(syntax_error_handler, Opt) --> !,domain_error559,23317 -domain_error(syntax_error_handler, Opt) --> !,domain_error559,23317 -domain_error(syntax_error_handler, Opt) --> !,domain_error559,23317 -domain_error(table, Opt) --> !,domain_error561,23413 -domain_error(table, Opt) --> !,domain_error561,23413 -domain_error(table, Opt) --> !,domain_error561,23413 -domain_error(thread_create_option, Opt) --> !,domain_error563,23485 -domain_error(thread_create_option, Opt) --> !,domain_error563,23485 -domain_error(thread_create_option, Opt) --> !,domain_error563,23485 -domain_error(time_out_spec, Opt) --> !,domain_error565,23581 -domain_error(time_out_spec, Opt) --> !,domain_error565,23581 -domain_error(time_out_spec, Opt) --> !,domain_error565,23581 -domain_error(unimplemented_option, Opt) --> !,domain_error567,23679 -domain_error(unimplemented_option, Opt) --> !,domain_error567,23679 -domain_error(unimplemented_option, Opt) --> !,domain_error567,23679 -domain_error(write_option, Opt) --> !,domain_error569,23768 -domain_error(write_option, Opt) --> !,domain_error569,23768 -domain_error(write_option, Opt) --> !,domain_error569,23768 -domain_error(Domain, Opt) -->domain_error571,23847 -domain_error(Domain, Opt) -->domain_error571,23847 -domain_error(Domain, Opt) -->domain_error571,23847 -extra_info( error(_,Extra), _ ) -->extra_info574,23931 -extra_info( error(_,Extra), _ ) -->extra_info574,23931 -extra_info( error(_,Extra), _ ) -->extra_info574,23931 -extra_info( _, _ ) -->extra_info578,24077 -extra_info( _, _ ) -->extra_info578,24077 -extra_info( _, _ ) -->extra_info578,24077 -object_name(array, array).object_name581,24106 -object_name(array, array).object_name581,24106 -object_name(atom, atom).object_name582,24133 -object_name(atom, atom).object_name582,24133 -object_name(atomic, atomic).object_name583,24158 -object_name(atomic, atomic).object_name583,24158 -object_name(byte, byte).object_name584,24187 -object_name(byte, byte).object_name584,24187 -object_name(callable, 'callable goal').object_name585,24212 -object_name(callable, 'callable goal').object_name585,24212 -object_name(char, char).object_name586,24252 -object_name(char, char).object_name586,24252 -object_name(character_code, 'character code').object_name587,24277 -object_name(character_code, 'character code').object_name587,24277 -object_name(compound, 'compound term').object_name588,24324 -object_name(compound, 'compound term').object_name588,24324 -object_name(db_reference, 'data base reference').object_name589,24364 -object_name(db_reference, 'data base reference').object_name589,24364 -object_name(evaluable, 'evaluable term').object_name590,24414 -object_name(evaluable, 'evaluable term').object_name590,24414 -object_name(file, file).object_name591,24456 -object_name(file, file).object_name591,24456 -object_name(float, float).object_name592,24481 -object_name(float, float).object_name592,24481 -object_name(in_byte, byte).object_name593,24508 -object_name(in_byte, byte).object_name593,24508 -object_name(in_character, character).object_name594,24536 -object_name(in_character, character).object_name594,24536 -object_name(integer, integer).object_name595,24574 -object_name(integer, integer).object_name595,24574 -object_name(key, 'database key').object_name597,24606 -object_name(key, 'database key').object_name597,24606 -object_name(leash_mode, 'leash mode').object_name598,24640 -object_name(leash_mode, 'leash mode').object_name598,24640 -object_name(library, library).object_name599,24679 -object_name(library, library).object_name599,24679 -object_name(list, list).object_name600,24710 -object_name(list, list).object_name600,24710 -object_name(message_queue, 'message queue').object_name601,24735 -object_name(message_queue, 'message queue').object_name601,24735 -object_name(mutex, mutex).object_name602,24780 -object_name(mutex, mutex).object_name602,24780 -object_name(number, number).object_name603,24807 -object_name(number, number).object_name603,24807 -object_name(operator, operator).object_name604,24836 -object_name(operator, operator).object_name604,24836 -object_name(pointer, pointer).object_name605,24869 -object_name(pointer, pointer).object_name605,24869 -object_name(predicate_indicator, 'predicate indicator').object_name606,24900 -object_name(predicate_indicator, 'predicate indicator').object_name606,24900 -object_name(source_sink, file).object_name607,24957 -object_name(source_sink, file).object_name607,24957 -object_name(unsigned_byte, 'unsigned byte').object_name608,24989 -object_name(unsigned_byte, 'unsigned byte').object_name608,24989 -object_name(unsigned_char, 'unsigned char').object_name609,25034 -object_name(unsigned_char, 'unsigned char').object_name609,25034 -object_name(variable, 'unbound variable').object_name610,25079 -object_name(variable, 'unbound variable').object_name610,25079 -svs([A=VA], [A=VA], S) :- !,svs612,25123 -svs([A=VA], [A=VA], S) :- !,svs612,25123 -svs([A=VA], [A=VA], S) :- !,svs612,25123 -svs([A=VA,B=VB], [A=VA,B=VB], SN) :- !,svs614,25172 -svs([A=VA,B=VB], [A=VA,B=VB], SN) :- !,svs614,25172 -svs([A=VA,B=VB], [A=VA,B=VB], SN) :- !,svs614,25172 -svs([A=_], _, SN) :- !,svs618,25289 -svs([A=_], _, SN) :- !,svs618,25289 -svs([A=_], _, SN) :- !,svs618,25289 -svs([A=V|L], [A=V|L], SN) :- !,svs621,25365 -svs([A=V|L], [A=V|L], SN) :- !,svs621,25365 -svs([A=V|L], [A=V|L], SN) :- !,svs621,25365 -svs([A=_V|L], All, SN) :- !,svs625,25470 -svs([A=_V|L], All, SN) :- !,svs625,25470 -svs([A=_V|L], All, SN) :- !,svs625,25470 -list_of_preds([]) --> [].list_of_preds630,25574 -list_of_preds([]) --> [].list_of_preds630,25574 -list_of_preds([]) --> [].list_of_preds630,25574 -list_of_preds([P|L]) -->list_of_preds631,25600 -list_of_preds([P|L]) -->list_of_preds631,25600 -list_of_preds([P|L]) -->list_of_preds631,25600 -syntax_error_term(between(_I,_J,_L),LTaL,LC) -->syntax_error_term635,25660 -syntax_error_term(between(_I,_J,_L),LTaL,LC) -->syntax_error_term635,25660 -syntax_error_term(between(_I,_J,_L),LTaL,LC) -->syntax_error_term635,25660 -syntax_error_tokens([], _LC) --> [].syntax_error_tokens639,25792 -syntax_error_tokens([], _LC) --> [].syntax_error_tokens639,25792 -syntax_error_tokens([], _LC) --> [].syntax_error_tokens639,25792 -syntax_error_tokens([T|L], LC) -->syntax_error_tokens640,25829 -syntax_error_tokens([T|L], LC) -->syntax_error_tokens640,25829 -syntax_error_tokens([T|L], LC) -->syntax_error_tokens640,25829 -syntax_error_token(atom(A), _LC) --> !,syntax_error_token644,25922 -syntax_error_token(atom(A), _LC) --> !,syntax_error_token644,25922 -syntax_error_token(atom(A), _LC) --> !,syntax_error_token644,25922 -syntax_error_token(number(N), _LC) --> !,syntax_error_token646,25979 -syntax_error_token(number(N), _LC) --> !,syntax_error_token646,25979 -syntax_error_token(number(N), _LC) --> !,syntax_error_token646,25979 -syntax_error_token(var(_,S), _LC) --> !,syntax_error_token648,26038 -syntax_error_token(var(_,S), _LC) --> !,syntax_error_token648,26038 -syntax_error_token(var(_,S), _LC) --> !,syntax_error_token648,26038 -syntax_error_token(string(S), _LC) --> !,syntax_error_token650,26098 -syntax_error_token(string(S), _LC) --> !,syntax_error_token650,26098 -syntax_error_token(string(S), _LC) --> !,syntax_error_token650,26098 -syntax_error_token(error, _LC) --> !,syntax_error_token652,26159 -syntax_error_token(error, _LC) --> !,syntax_error_token652,26159 -syntax_error_token(error, _LC) --> !,syntax_error_token652,26159 -syntax_error_token('EOT', _LC) --> !,syntax_error_token654,26220 -syntax_error_token('EOT', _LC) --> !,syntax_error_token654,26220 -syntax_error_token('EOT', _LC) --> !,syntax_error_token654,26220 -syntax_error_token('(', _LC) --> !,syntax_error_token656,26278 -syntax_error_token('(', _LC) --> !,syntax_error_token656,26278 -syntax_error_token('(', _LC) --> !,syntax_error_token656,26278 -syntax_error_token('{', _LC) --> !,syntax_error_token658,26330 -syntax_error_token('{', _LC) --> !,syntax_error_token658,26330 -syntax_error_token('{', _LC) --> !,syntax_error_token658,26330 -syntax_error_token('[', _LC) --> !,syntax_error_token660,26382 -syntax_error_token('[', _LC) --> !,syntax_error_token660,26382 -syntax_error_token('[', _LC) --> !,syntax_error_token660,26382 -syntax_error_token(')', _LC) --> !,syntax_error_token662,26433 -syntax_error_token(')', _LC) --> !,syntax_error_token662,26433 -syntax_error_token(')', _LC) --> !,syntax_error_token662,26433 -syntax_error_token(']', _LC) --> !,syntax_error_token664,26485 -syntax_error_token(']', _LC) --> !,syntax_error_token664,26485 -syntax_error_token(']', _LC) --> !,syntax_error_token664,26485 -syntax_error_token('}', _LC) --> !,syntax_error_token666,26536 -syntax_error_token('}', _LC) --> !,syntax_error_token666,26536 -syntax_error_token('}', _LC) --> !,syntax_error_token666,26536 -syntax_error_token(',', _LC) --> !,syntax_error_token668,26588 -syntax_error_token(',', _LC) --> !,syntax_error_token668,26588 -syntax_error_token(',', _LC) --> !,syntax_error_token668,26588 -syntax_error_token('.', _LC) --> !,syntax_error_token670,26640 -syntax_error_token('.', _LC) --> !,syntax_error_token670,26640 -syntax_error_token('.', _LC) --> !,syntax_error_token670,26640 -syntax_error_token(';', _LC) --> !,syntax_error_token672,26691 -syntax_error_token(';', _LC) --> !,syntax_error_token672,26691 -syntax_error_token(';', _LC) --> !,syntax_error_token672,26691 -syntax_error_token(':', _LC) --> !,syntax_error_token674,26743 -syntax_error_token(':', _LC) --> !,syntax_error_token674,26743 -syntax_error_token(':', _LC) --> !,syntax_error_token674,26743 -syntax_error_token('|', _LC) --> !,syntax_error_token676,26794 -syntax_error_token('|', _LC) --> !,syntax_error_token676,26794 -syntax_error_token('|', _LC) --> !,syntax_error_token676,26794 -syntax_error_token('l', _LC) --> !,syntax_error_token678,26845 -syntax_error_token('l', _LC) --> !,syntax_error_token678,26845 -syntax_error_token('l', _LC) --> !,syntax_error_token678,26845 -syntax_error_token(nl, LC) --> !,syntax_error_token680,26896 -syntax_error_token(nl, LC) --> !,syntax_error_token680,26896 -syntax_error_token(nl, LC) --> !,syntax_error_token680,26896 -syntax_error_token(B, _LC) --> !,syntax_error_token682,26958 -syntax_error_token(B, _LC) --> !,syntax_error_token682,26958 -syntax_error_token(B, _LC) --> !,syntax_error_token682,26958 -print_lines( S, _, Key) -->print_lines686,27030 -print_lines( S, _, Key) -->print_lines686,27030 -print_lines( S, _, Key) -->print_lines686,27030 -print_lines( S, _, Key) -->print_lines692,27130 -print_lines( S, _, Key) -->print_lines692,27130 -print_lines( S, _, Key) -->print_lines692,27130 -print_lines(S, _, Key) -->print_lines697,27223 -print_lines(S, _, Key) -->print_lines697,27223 -print_lines(S, _, Key) -->print_lines697,27223 -print_lines( S, Prefix, Key) -->print_lines701,27299 -print_lines( S, Prefix, Key) -->print_lines701,27299 -print_lines( S, Prefix, Key) -->print_lines701,27299 -print_lines( S, Prefixes, Key) -->print_lines705,27384 -print_lines( S, Prefixes, Key) -->print_lines705,27384 -print_lines( S, Prefixes, Key) -->print_lines705,27384 -print_lines( S, Prefixes, Key) -->print_lines720,27622 -print_lines( S, Prefixes, Key) -->print_lines720,27622 -print_lines( S, Prefixes, Key) -->print_lines720,27622 -print_lines(S, Prefixes, Key) -->print_lines725,27727 -print_lines(S, Prefixes, Key) -->print_lines725,27727 -print_lines(S, Prefixes, Key) -->print_lines725,27727 -print_lines(S, Prefixes, Key) -->print_lines730,27863 -print_lines(S, Prefixes, Key) -->print_lines730,27863 -print_lines(S, Prefixes, Key) -->print_lines730,27863 -print_lines(S, Prefixes, Key) -->print_lines736,28033 -print_lines(S, Prefixes, Key) -->print_lines736,28033 -print_lines(S, Prefixes, Key) -->print_lines736,28033 -print_lines(S, Prefixes, Key) -->print_lines740,28137 -print_lines(S, Prefixes, Key) -->print_lines740,28137 -print_lines(S, Prefixes, Key) -->print_lines740,28137 -print_lines(S, Prefixes, Key) -->print_lines745,28268 -print_lines(S, Prefixes, Key) -->print_lines745,28268 -print_lines(S, Prefixes, Key) -->print_lines745,28268 -print_lines(S, Prefixes, Key) -->print_lines750,28380 -print_lines(S, Prefixes, Key) -->print_lines750,28380 -print_lines(S, Prefixes, Key) -->print_lines750,28380 -print_lines(S, Prefixes, Key) -->print_lines756,28517 -print_lines(S, Prefixes, Key) -->print_lines756,28517 -print_lines(S, Prefixes, Key) -->print_lines756,28517 -print_lines(S, _Prefixes, _Key) -->print_lines762,28654 -print_lines(S, _Prefixes, _Key) -->print_lines762,28654 -print_lines(S, _Prefixes, _Key) -->print_lines762,28654 -prefix(help, '~N'-[]).prefix766,28764 -prefix(help, '~N'-[]).prefix766,28764 -prefix(query, '~N'-[]).prefix767,28793 -prefix(query, '~N'-[]).prefix767,28793 -prefix(debug, '~N'-[]).prefix768,28823 -prefix(debug, '~N'-[]).prefix768,28823 -prefix(warning, '~N'-[]).prefix769,28853 -prefix(warning, '~N'-[]).prefix769,28853 -prefix(error, '~N'-[]).prefix778,29060 -prefix(error, '~N'-[]).prefix778,29060 -prefix(error, '', user_error) -->prefix787,29237 -prefix(error, '', user_error) -->prefix787,29237 -prefix(error, '', user_error) -->prefix787,29237 -prefix(banner, '~N'-[]).prefix796,29459 -prefix(banner, '~N'-[]).prefix796,29459 -prefix(informational, '~N~*|% '-[LC]) :-prefix797,29490 -prefix(informational, '~N~*|% '-[LC]) :-prefix797,29490 -prefix(informational, '~N~*|% '-[LC]) :-prefix797,29490 -prefix(debug(_), '~N% '-[]).prefix799,29559 -prefix(debug(_), '~N% '-[]).prefix799,29559 -prefix(information, '~N% '-[]).prefix800,29593 -prefix(information, '~N% '-[]).prefix800,29593 -clause_to_indicator(T, MNameArity) :-clause_to_indicator803,29629 -clause_to_indicator(T, MNameArity) :-clause_to_indicator803,29629 -clause_to_indicator(T, MNameArity) :-clause_to_indicator803,29629 -pred_arity(V, M, M:call/1) :- var(V), !.pred_arity807,29729 -pred_arity(V, M, M:call/1) :- var(V), !.pred_arity807,29729 -pred_arity(V, M, M:call/1) :- var(V), !.pred_arity807,29729 -pred_arity((:- _Path), _M, prolog:(:-)/1 ) :- !.pred_arity808,29770 -pred_arity((:- _Path), _M, prolog:(:-)/1 ) :- !.pred_arity808,29770 -pred_arity((:- _Path), _M, prolog:(:-)/1 ) :- !.pred_arity808,29770 -pred_arity((?- _Path), _M, prolog:(?)/1 ) :- !.pred_arity809,29819 -pred_arity((?- _Path), _M, prolog:(?)/1 ) :- !.pred_arity809,29819 -pred_arity((?- _Path), _M, prolog:(?)/1 ) :- !.pred_arity809,29819 -pred_arity((H:-_),M, MNameArity) :-pred_arity810,29867 -pred_arity((H:-_),M, MNameArity) :-pred_arity810,29867 -pred_arity((H:-_),M, MNameArity) :-pred_arity810,29867 -pred_arity((H-->_), M, M2:Name//Arity) :-pred_arity815,29993 -pred_arity((H-->_), M, M2:Name//Arity) :-pred_arity815,29993 -pred_arity((H-->_), M, M2:Name//Arity) :-pred_arity815,29993 -pred_arity((H,_), M, MNameArity) :-pred_arity821,30161 -pred_arity((H,_), M, MNameArity) :-pred_arity821,30161 -pred_arity((H,_), M, MNameArity) :-pred_arity821,30161 -pred_arity(Name/Arity, M, M:Name/Arity) :-pred_arity826,30287 -pred_arity(Name/Arity, M, M:Name/Arity) :-pred_arity826,30287 -pred_arity(Name/Arity, M, M:Name/Arity) :-pred_arity826,30287 -pred_arity(Name//Arity, M, M:Name//Arity) :-pred_arity828,30337 -pred_arity(Name//Arity, M, M:Name//Arity) :-pred_arity828,30337 -pred_arity(Name//Arity, M, M:Name//Arity) :-pred_arity828,30337 -pred_arity(H,M, M:Name/Arity) :-pred_arity830,30389 -pred_arity(H,M, M:Name/Arity) :-pred_arity830,30389 -pred_arity(H,M, M:Name/Arity) :-pred_arity830,30389 -translate_message(Term, Level) -->translate_message834,30451 -translate_message(Term, Level) -->translate_message834,30451 -translate_message(Term, Level) -->translate_message834,30451 -translate_message(Term, _) -->translate_message836,30520 -translate_message(Term, _) -->translate_message836,30520 -translate_message(Term, _) -->translate_message836,30520 -translate_message(Term, _) -->translate_message839,30613 -translate_message(Term, _) -->translate_message839,30613 -translate_message(Term, _) -->translate_message839,30613 -prolog:print_message_lines(S, Prefix0, Lines) :-print_message_lines873,31726 -prolog:print_message_lines(S, Prefix0, Lines) :-print_message_lines873,31726 -prolog:print_message(Severity, Msg) :-print_message920,33276 -prolog:print_message(Severity, Msg) :-print_message920,33276 -prolog:print_message(Level, _Msg) :-print_message940,33628 -prolog:print_message(Level, _Msg) :-print_message940,33628 -prolog:print_message(Level, _Msg) :-print_message945,33785 -prolog:print_message(Level, _Msg) :-print_message945,33785 -prolog:print_message(_, _Msg) :-print_message950,33901 -prolog:print_message(_, _Msg) :-print_message950,33901 -prolog:print_message(force(_Severity), Msg) :- !,print_message954,34013 -prolog:print_message(force(_Severity), Msg) :- !,print_message954,34013 -prolog:print_message(Severity, Term) :-print_message957,34139 -prolog:print_message(Severity, Term) :-print_message957,34139 -prolog:print_message(Severity, Term) :-print_message969,34416 -prolog:print_message(Severity, Term) :-print_message969,34416 -prolog:print_message(Severity, _Term) :-print_message981,34707 -prolog:print_message(Severity, _Term) :-print_message981,34707 - -packages/python/swig/yap4py/prolog/pl/meta.yap,16253 -:- dynamic prolog:'$meta_predicate'/4.dynamic32,879 -:- dynamic prolog:'$meta_predicate'/4.dynamic32,879 -:- multifile prolog:'$meta_predicate'/4,multifile34,919 -:- multifile prolog:'$meta_predicate'/4,multifile34,919 -'$meta_predicate'(M:P) :-$meta_predicate39,1018 -'$meta_predicate'(M:P) :-$meta_predicate39,1018 -'$meta_predicate'(M:P) :-$meta_predicate39,1018 -'$meta_predicate'(M:P) :-$meta_predicate42,1108 -'$meta_predicate'(M:P) :-$meta_predicate42,1108 -'$meta_predicate'(M:P) :-$meta_predicate42,1108 -'$meta_predicate'(M:(P,Ps)) :- !,$meta_predicate45,1198 -'$meta_predicate'(M:(P,Ps)) :- !,$meta_predicate45,1198 -'$meta_predicate'(M:(P,Ps)) :- !,$meta_predicate45,1198 -'$meta_predicate'( M:D ) :-$meta_predicate48,1283 -'$meta_predicate'( M:D ) :-$meta_predicate48,1283 -'$meta_predicate'( M:D ) :-$meta_predicate48,1283 -'$install_meta_predicate'(M1:P) :-$install_meta_predicate52,1384 -'$install_meta_predicate'(M1:P) :-$install_meta_predicate52,1384 -'$install_meta_predicate'(M1:P) :-$install_meta_predicate52,1384 -'$is_mt'(H, B, HM, _SM, M, (context_module(CM),B), CM) :-$is_mt67,1872 -'$is_mt'(H, B, HM, _SM, M, (context_module(CM),B), CM) :-$is_mt67,1872 -'$is_mt'(H, B, HM, _SM, M, (context_module(CM),B), CM) :-$is_mt67,1872 -'$is_mt'(_H, B, _HM, _SM, BM, B, BM).$is_mt70,2008 -'$is_mt'(_H, B, _HM, _SM, BM, B, BM)./p,predicate,predicate definition70,2008 -'$is_mt'(_H, B, _HM, _SM, BM, B, BM).$is_mt70,2008 -'$clean_cuts'(G,('$current_choicepoint'(DCP),NG)) :-$clean_cuts76,2130 -'$clean_cuts'(G,('$current_choicepoint'(DCP),NG)) :-$clean_cuts76,2130 -'$clean_cuts'(G,('$current_choicepoint'(DCP),NG)) :-$clean_cuts'(G,('$current_choicepoint76,2130 -'$clean_cuts'(G,G).$clean_cuts78,2228 -'$clean_cuts'(G,G)./p,predicate,predicate definition78,2228 -'$clean_cuts'(G,G).$clean_cuts78,2228 -'$clean_cuts'(G,DCP,NG) :-$clean_cuts80,2249 -'$clean_cuts'(G,DCP,NG) :-$clean_cuts80,2249 -'$clean_cuts'(G,DCP,NG) :-$clean_cuts80,2249 -'$clean_cuts'(G,_,G).$clean_cuts82,2321 -'$clean_cuts'(G,_,G)./p,predicate,predicate definition82,2321 -'$clean_cuts'(G,_,G).$clean_cuts82,2321 -'$conj_has_cuts'(V,_,V, _) :- var(V), !.$conj_has_cuts84,2344 -'$conj_has_cuts'(V,_,V, _) :- var(V), !.$conj_has_cuts84,2344 -'$conj_has_cuts'(V,_,V, _) :- var(V), !.$conj_has_cuts84,2344 -'$conj_has_cuts'(!,DCP,'$$cut_by'(DCP), ok) :- !.$conj_has_cuts85,2385 -'$conj_has_cuts'(!,DCP,'$$cut_by'(DCP), ok) :- !.$conj_has_cuts85,2385 -'$conj_has_cuts'(!,DCP,'$$cut_by'(DCP), ok) :- !.$conj_has_cuts'(!,DCP,'$$cut_by85,2385 -'$conj_has_cuts'((G1,G2),DCP,(NG1,NG2), OK) :- !,$conj_has_cuts86,2435 -'$conj_has_cuts'((G1,G2),DCP,(NG1,NG2), OK) :- !,$conj_has_cuts86,2435 -'$conj_has_cuts'((G1,G2),DCP,(NG1,NG2), OK) :- !,$conj_has_cuts86,2435 -'$conj_has_cuts'((G1;G2),DCP,(NG1;NG2), OK) :- !,$conj_has_cuts89,2559 -'$conj_has_cuts'((G1;G2),DCP,(NG1;NG2), OK) :- !,$conj_has_cuts89,2559 -'$conj_has_cuts'((G1;G2),DCP,(NG1;NG2), OK) :- !,$conj_has_cuts89,2559 -'$conj_has_cuts'((G1->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts92,2683 -'$conj_has_cuts'((G1->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts92,2683 -'$conj_has_cuts'((G1->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts92,2683 -'$conj_has_cuts'((G1*->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts95,2814 -'$conj_has_cuts'((G1*->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts95,2814 -'$conj_has_cuts'((G1*->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts95,2814 -'$conj_has_cuts'(if(G1,G2,G3),DCP,if(G1,NG2,NG3), OK) :- !,$conj_has_cuts98,2946 -'$conj_has_cuts'(if(G1,G2,G3),DCP,if(G1,NG2,NG3), OK) :- !,$conj_has_cuts98,2946 -'$conj_has_cuts'(if(G1,G2,G3),DCP,if(G1,NG2,NG3), OK) :- !,$conj_has_cuts98,2946 -'$conj_has_cuts'(G,_,G, _).$conj_has_cuts102,3124 -'$conj_has_cuts'(G,_,G, _)./p,predicate,predicate definition102,3124 -'$conj_has_cuts'(G,_,G, _).$conj_has_cuts102,3124 -'$module_u_vars'(M, H, UVars) :-$module_u_vars110,3344 -'$module_u_vars'(M, H, UVars) :-$module_u_vars110,3344 -'$module_u_vars'(M, H, UVars) :-$module_u_vars110,3344 -'$do_module_u_vars'(M:H,UVars) :-$do_module_u_vars113,3414 -'$do_module_u_vars'(M:H,UVars) :-$do_module_u_vars113,3414 -'$do_module_u_vars'(M:H,UVars) :-$do_module_u_vars113,3414 -'$do_module_u_vars'(_,[]).$do_module_u_vars117,3532 -'$do_module_u_vars'(_,[])./p,predicate,predicate definition117,3532 -'$do_module_u_vars'(_,[]).$do_module_u_vars117,3532 -'$do_module_u_vars'(0,_,_,[]) :- !.$do_module_u_vars119,3560 -'$do_module_u_vars'(0,_,_,[]) :- !.$do_module_u_vars119,3560 -'$do_module_u_vars'(0,_,_,[]) :- !.$do_module_u_vars119,3560 -'$do_module_u_vars'(I,D,H,LF) :-$do_module_u_vars120,3596 -'$do_module_u_vars'(I,D,H,LF) :-$do_module_u_vars120,3596 -'$do_module_u_vars'(I,D,H,LF) :-$do_module_u_vars120,3596 -'$do_module_u_vars'(I,D,H,L) :-$do_module_u_vars125,3752 -'$do_module_u_vars'(I,D,H,L) :-$do_module_u_vars125,3752 -'$do_module_u_vars'(I,D,H,L) :-$do_module_u_vars125,3752 -'$uvar'(Y, [Y|L], L) :- var(Y), !.$uvar129,3829 -'$uvar'(Y, [Y|L], L) :- var(Y), !.$uvar129,3829 -'$uvar'(Y, [Y|L], L) :- var(Y), !.$uvar129,3829 -'$uvar'(same( G, _), LF, L) :-$uvar131,3881 -'$uvar'(same( G, _), LF, L) :-$uvar131,3881 -'$uvar'(same( G, _), LF, L) :-$uvar131,3881 -'$uvar'('^'( _, G), LF, L) :-$uvar133,3936 -'$uvar'('^'( _, G), LF, L) :-$uvar133,3936 -'$uvar'('^'( _, G), LF, L) :-$uvar'('^133,3936 -'$meta_expand'(G, _, CM, HVars, OG) :-$meta_expand143,4191 -'$meta_expand'(G, _, CM, HVars, OG) :-$meta_expand143,4191 -'$meta_expand'(G, _, CM, HVars, OG) :-$meta_expand143,4191 -'$meta_expand'(G0, PredDef, CM, HVars, NG) :-$meta_expand154,4362 -'$meta_expand'(G0, PredDef, CM, HVars, NG) :-$meta_expand154,4362 -'$meta_expand'(G0, PredDef, CM, HVars, NG) :-$meta_expand154,4362 -'$expand_args'([], _, [], _, []).$expand_args162,4588 -'$expand_args'([], _, [], _, [])./p,predicate,predicate definition162,4588 -'$expand_args'([], _, [], _, []).$expand_args162,4588 -'$expand_args'([A|GArgs], CM, [M|GDefs], HVars, [NA|NGArgs]) :-$expand_args163,4623 -'$expand_args'([A|GArgs], CM, [M|GDefs], HVars, [NA|NGArgs]) :-$expand_args163,4623 -'$expand_args'([A|GArgs], CM, [M|GDefs], HVars, [NA|NGArgs]) :-$expand_args163,4623 -'$expand_args'([A|GArgs], CM, [_|GDefs], HVars, [A|NGArgs]) :-$expand_args168,4815 -'$expand_args'([A|GArgs], CM, [_|GDefs], HVars, [A|NGArgs]) :-$expand_args168,4815 -'$expand_args'([A|GArgs], CM, [_|GDefs], HVars, [A|NGArgs]) :-$expand_args168,4815 -'$expand_arg'(G, CM, HVars, OG) :-$expand_arg173,4973 -'$expand_arg'(G, CM, HVars, OG) :-$expand_arg173,4973 -'$expand_arg'(G, CM, HVars, OG) :-$expand_arg173,4973 -'$expand_arg'(G, CM, _HVars, NCM:NG) :-$expand_arg177,5090 -'$expand_arg'(G, CM, _HVars, NCM:NG) :-$expand_arg177,5090 -'$expand_arg'(G, CM, _HVars, NCM:NG) :-$expand_arg177,5090 -'$expand_goals'(V,NG,NGO,HM,SM,BM,HVars-H) :-$expand_goals216,6183 -'$expand_goals'(V,NG,NGO,HM,SM,BM,HVars-H) :-$expand_goals216,6183 -'$expand_goals'(V,NG,NGO,HM,SM,BM,HVars-H) :-$expand_goals216,6183 -'$expand_goals'(BM:V,NG,NGO,HM,SM,_BM,HVarsH) :-$expand_goals231,6508 -'$expand_goals'(BM:V,NG,NGO,HM,SM,_BM,HVarsH) :-$expand_goals231,6508 -'$expand_goals'(BM:V,NG,NGO,HM,SM,_BM,HVarsH) :-$expand_goals231,6508 -'$expand_goals'(CM0:V,NG,NGO,HM,SM,BM,HVarsH) :-$expand_goals237,6674 -'$expand_goals'(CM0:V,NG,NGO,HM,SM,BM,HVarsH) :-$expand_goals237,6674 -'$expand_goals'(CM0:V,NG,NGO,HM,SM,BM,HVarsH) :-$expand_goals237,6674 -'$expand_goals'(V,NG,NGO,_HM,_SM,BM,_HVarsH) :-$expand_goals243,6925 -'$expand_goals'(V,NG,NGO,_HM,_SM,BM,_HVarsH) :-$expand_goals243,6925 -'$expand_goals'(V,NG,NGO,_HM,_SM,BM,_HVarsH) :-$expand_goals243,6925 -'$expand_goals'((A,B),(A1,B1),(AO,BO),HM,SM,BM,HVars) :- !,$expand_goals254,7299 -'$expand_goals'((A,B),(A1,B1),(AO,BO),HM,SM,BM,HVars) :- !,$expand_goals254,7299 -'$expand_goals'((A,B),(A1,B1),(AO,BO),HM,SM,BM,HVars) :- !,$expand_goals254,7299 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- var(A), !,$expand_goals257,7443 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- var(A), !,$expand_goals257,7443 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- var(A), !,$expand_goals257,7443 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- !,$expand_goals273,7958 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- !,$expand_goals273,7958 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- !,$expand_goals273,7958 -'$expand_goals'((A|B),(A1|B1),(AO|BO),HM,SM,BM,HVars) :- !,$expand_goals276,8102 -'$expand_goals'((A|B),(A1|B1),(AO|BO),HM,SM,BM,HVars) :- !,$expand_goals276,8102 -'$expand_goals'((A|B),(A1|B1),(AO|BO),HM,SM,BM,HVars) :- !,$expand_goals276,8102 -'$expand_goals'((A->B),(A1->B1),(AO->BO),HM,SM,BM,HVars) :- !,$expand_goals279,8246 -'$expand_goals'((A->B),(A1->B1),(AO->BO),HM,SM,BM,HVars) :- !,$expand_goals279,8246 -'$expand_goals'((A->B),(A1->B1),(AO->BO),HM,SM,BM,HVars) :- !,$expand_goals279,8246 -'$expand_goals'(\+G,\+G,A\=B,_HM,_BM,_SM,_HVars) :-$expand_goals283,8419 -'$expand_goals'(\+G,\+G,A\=B,_HM,_BM,_SM,_HVars) :-$expand_goals283,8419 -'$expand_goals'(\+G,\+G,A\=B,_HM,_BM,_SM,_HVars) :-$expand_goals283,8419 -'$expand_goals'(\+A,\+A1,('$current_choice_point'(CP),AO,'$$cut_by'(CP)-> false;true),HM,SM,BM,HVars) :- !,$expand_goals287,8510 -'$expand_goals'(\+A,\+A1,('$current_choice_point'(CP),AO,'$$cut_by'(CP)-> false;true),HM,SM,BM,HVars) :- !,$expand_goals287,8510 -'$expand_goals'(\+A,\+A1,('$current_choice_point'(CP),AO,'$$cut_by'(CP)-> false;true),HM,SM,BM,HVars) :- !,$expand_goals'(\+A,\+A1,('$current_choice_point'(CP),AO,'$$cut_by287,8510 -'$expand_goals'(not(A),not(A1),('$current_choice_point'(CP),AO,'$$cut_by'(CP) -> fail; true),HM,SM,BM,HVars) :- !,$expand_goals302,9269 -'$expand_goals'(not(A),not(A1),('$current_choice_point'(CP),AO,'$$cut_by'(CP) -> fail; true),HM,SM,BM,HVars) :- !,$expand_goals302,9269 -'$expand_goals'(not(A),not(A1),('$current_choice_point'(CP),AO,'$$cut_by'(CP) -> fail; true),HM,SM,BM,HVars) :- !,$expand_goals'(not(A),not(A1),('$current_choice_point'(CP),AO,'$$cut_by302,9269 -'$expand_goals'(true,true,true,_,_,_,_) :- !.$expand_goals321,10212 -'$expand_goals'(true,true,true,_,_,_,_) :- !.$expand_goals321,10212 -'$expand_goals'(true,true,true,_,_,_,_) :- !.$expand_goals321,10212 -'$expand_goals'(fail,fail,fail,_,_,_,_) :- !.$expand_goals322,10258 -'$expand_goals'(fail,fail,fail,_,_,_,_) :- !.$expand_goals322,10258 -'$expand_goals'(fail,fail,fail,_,_,_,_) :- !.$expand_goals322,10258 -'$expand_goals'(false,false,false,_,_,_,_) :- !.$expand_goals323,10304 -'$expand_goals'(false,false,false,_,_,_,_) :- !.$expand_goals323,10304 -'$expand_goals'(false,false,false,_,_,_,_) :- !.$expand_goals323,10304 -'$expand_goals'(G, G1, GO, HM, SM, BM, HVars) :-$expand_goals324,10353 -'$expand_goals'(G, G1, GO, HM, SM, BM, HVars) :-$expand_goals324,10353 -'$expand_goals'(G, G1, GO, HM, SM, BM, HVars) :-$expand_goals324,10353 -'$import_expansion'(M:G, M1:G1) :-$import_expansion329,10497 -'$import_expansion'(M:G, M1:G1) :-$import_expansion329,10497 -'$import_expansion'(M:G, M1:G1) :-$import_expansion329,10497 -'$import_expansion'(MG, MG).$import_expansion332,10581 -'$import_expansion'(MG, MG)./p,predicate,predicate definition332,10581 -'$import_expansion'(MG, MG).$import_expansion332,10581 -'$meta_expansion'(GMG, BM, HVars, GM:GF) :-$meta_expansion334,10611 -'$meta_expansion'(GMG, BM, HVars, GM:GF) :-$meta_expansion334,10611 -'$meta_expansion'(GMG, BM, HVars, GM:GF) :-$meta_expansion334,10611 -'$meta_expansion'(GMG, _BM, _HVars, GM:G) :-$meta_expansion340,10809 -'$meta_expansion'(GMG, _BM, _HVars, GM:G) :-$meta_expansion340,10809 -'$meta_expansion'(GMG, _BM, _HVars, GM:G) :-$meta_expansion340,10809 -o:p(B) :- n:g, X is 2+3, call(B).p350,11009 -o:p(B) :- n:g, X is 2+3, call(B).p350,11009 -o:p(B) :- n:g, X is 2+3, call(B).p350,11009 -'$expand_goal'(G0, G1F, GOF, HM, SM, BM, HVars-H) :-$expand_goal364,11556 -'$expand_goal'(G0, G1F, GOF, HM, SM, BM, HVars-H) :-$expand_goal364,11556 -'$expand_goal'(G0, G1F, GOF, HM, SM, BM, HVars-H) :-$expand_goal364,11556 -'$end_goal_expansion'(G, G1F, GOF, HM, SM, BM, H) :-$end_goal_expansion371,11837 -'$end_goal_expansion'(G, G1F, GOF, HM, SM, BM, H) :-$end_goal_expansion371,11837 -'$end_goal_expansion'(G, G1F, GOF, HM, SM, BM, H) :-$end_goal_expansion371,11837 -'$user_expansion'(M0N:G0N, M1:G1) :-$user_expansion377,12045 -'$user_expansion'(M0N:G0N, M1:G1) :-$user_expansion377,12045 -'$user_expansion'(M0N:G0N, M1:G1) :-$user_expansion377,12045 -'$user_expansion'(MG, MG).$user_expansion386,12223 -'$user_expansion'(MG, MG)./p,predicate,predicate definition386,12223 -'$user_expansion'(MG, MG).$user_expansion386,12223 -'$build_up'(HM, NH, SM, true, NH, true, NH) :- HM == SM, !.$build_up403,12475 -'$build_up'(HM, NH, SM, true, NH, true, NH) :- HM == SM, !.$build_up403,12475 -'$build_up'(HM, NH, SM, true, NH, true, NH) :- HM == SM, !.$build_up403,12475 -'$build_up'(HM, NH, _SM, true, HM:NH, true, HM:NH) :- !.$build_up404,12535 -'$build_up'(HM, NH, _SM, true, HM:NH, true, HM:NH) :- !.$build_up404,12535 -'$build_up'(HM, NH, _SM, true, HM:NH, true, HM:NH) :- !.$build_up404,12535 -'$build_up'(HM, NH, SM, B1, (NH :- B1), BO, ( NH :- BO)) :- HM == SM, !.$build_up405,12592 -'$build_up'(HM, NH, SM, B1, (NH :- B1), BO, ( NH :- BO)) :- HM == SM, !.$build_up405,12592 -'$build_up'(HM, NH, SM, B1, (NH :- B1), BO, ( NH :- BO)) :- HM == SM, !.$build_up405,12592 -'$build_up'(HM, NH, _SM, B1, (NH :- B1), BO, ( HM:NH :- BO)) :- !.$build_up406,12665 -'$build_up'(HM, NH, _SM, B1, (NH :- B1), BO, ( HM:NH :- BO)) :- !.$build_up406,12665 -'$build_up'(HM, NH, _SM, B1, (NH :- B1), BO, ( HM:NH :- BO)) :- !.$build_up406,12665 -'$expand_clause_body'(V, _NH1, _HM1, _SM, M, call(M:V), call(M:V) ) :-$expand_clause_body408,12733 -'$expand_clause_body'(V, _NH1, _HM1, _SM, M, call(M:V), call(M:V) ) :-$expand_clause_body408,12733 -'$expand_clause_body'(V, _NH1, _HM1, _SM, M, call(M:V), call(M:V) ) :-$expand_clause_body408,12733 -'$expand_clause_body'(true, _NH1, _HM1, _SM, _M, true, true ) :- !.$expand_clause_body410,12819 -'$expand_clause_body'(true, _NH1, _HM1, _SM, _M, true, true ) :- !.$expand_clause_body410,12819 -'$expand_clause_body'(true, _NH1, _HM1, _SM, _M, true, true ) :- !.$expand_clause_body410,12819 -'$expand_clause_body'(B, H, HM, SM, M, B1, BO ) :-$expand_clause_body411,12887 -'$expand_clause_body'(B, H, HM, SM, M, B1, BO ) :-$expand_clause_body411,12887 -'$expand_clause_body'(B, H, HM, SM, M, B1, BO ) :-$expand_clause_body411,12887 -'$not_imported'(H, Mod) :-$not_imported429,13394 -'$not_imported'(H, Mod) :-$not_imported429,13394 -'$not_imported'(H, Mod) :-$not_imported429,13394 -'$not_imported'(_, _).$not_imported436,13577 -'$not_imported'(_, _)./p,predicate,predicate definition436,13577 -'$not_imported'(_, _).$not_imported436,13577 -'$verify_import'(_M:G, prolog:G) :-$verify_import439,13602 -'$verify_import'(_M:G, prolog:G) :-$verify_import439,13602 -'$verify_import'(_M:G, prolog:G) :-$verify_import439,13602 -'$verify_import'(M:G, NM:NG) :-$verify_import441,13677 -'$verify_import'(M:G, NM:NG) :-$verify_import441,13677 -'$verify_import'(M:G, NM:NG) :-$verify_import441,13677 -'$verify_import'(MG, MG).$verify_import444,13757 -'$verify_import'(MG, MG)./p,predicate,predicate definition444,13757 -'$verify_import'(MG, MG).$verify_import444,13757 -'$expand_a_clause'(MHB, SM0, Cl1, ClO) :- % MHB is the original clause, SM0 the current source, Cl1 and ClO output clauses$expand_a_clause463,14366 -'$expand_a_clause'(MHB, SM0, Cl1, ClO) :- % MHB is the original clause, SM0 the current source, Cl1 and ClO output clauses$expand_a_clause463,14366 -'$expand_a_clause'(MHB, SM0, Cl1, ClO) :- % MHB is the original clause, SM0 the current source, Cl1 and ClO output clauses$expand_a_clause463,14366 -expand_goal(Input, Output) :-expand_goal474,14927 -expand_goal(Input, Output) :-expand_goal474,14927 -expand_goal(Input, Output) :-expand_goal474,14927 -'$expand_meta_call'(G, HVars, MF:GF ) :-$expand_meta_call477,15003 -'$expand_meta_call'(G, HVars, MF:GF ) :-$expand_meta_call477,15003 -'$expand_meta_call'(G, HVars, MF:GF ) :-$expand_meta_call477,15003 - -packages/python/swig/yap4py/prolog/pl/modules.yap,23106 -use_module(F) :-use_module88,2303 -use_module(F) :-use_module88,2303 -use_module(F) :-use_module88,2303 -a(1).a112,3158 -a(1).a112,3158 -a(X) :- b(X).a113,3164 -a(X) :- b(X).a113,3164 -a(X) :- b(X).a113,3164 -a(X) :- b(X).a113,3164 -a(X) :- b(X).a113,3164 -a(2).a121,3302 -a(2).a121,3302 -b(1).b123,3309 -b(1).b123,3309 -a(X) :-a155,4137 -a(X) :-a155,4137 -a(X) :-a155,4137 -a(X) :-a157,4152 -a(X) :-a157,4152 -a(X) :-a157,4152 -a(X) :-a159,4167 -a(X) :-a159,4167 -a(X) :-a159,4167 -vvb(2).vvb165,4222 -vvb(2).vvb165,4222 -c(3).c166,4230 -c(3).c166,4230 -b(1).b172,4275 -b(1).b172,4275 -d(4).d173,4281 -d(4).d173,4281 -use_module(F) :- '$load_files'(F,use_module197,4833 -use_module(F) :- '$load_files'(F,use_module197,4833 -use_module(F) :- '$load_files'(F,use_module197,4833 -use_module(Files, Imports) :-use_module211,5242 -use_module(Files, Imports) :-use_module211,5242 -use_module(Files, Imports) :-use_module211,5242 -use_module(F,Is) :-use_module230,5882 -use_module(F,Is) :-use_module230,5882 -use_module(F,Is) :-use_module230,5882 -'$module'(O,N,P,Opts) :- !,$module233,5991 -'$module'(O,N,P,Opts) :- !,$module233,5991 -'$module'(O,N,P,Opts) :- !,$module233,5991 -'$process_module_decls_options'(Var,Mod) :-$process_module_decls_options238,6097 -'$process_module_decls_options'(Var,Mod) :-$process_module_decls_options238,6097 -'$process_module_decls_options'(Var,Mod) :-$process_module_decls_options238,6097 -'$process_module_decls_options'([],_) :- !.$process_module_decls_options241,6194 -'$process_module_decls_options'([],_) :- !.$process_module_decls_options241,6194 -'$process_module_decls_options'([],_) :- !.$process_module_decls_options241,6194 -'$process_module_decls_options'([H|L],M) :- !,$process_module_decls_options242,6238 -'$process_module_decls_options'([H|L],M) :- !,$process_module_decls_options242,6238 -'$process_module_decls_options'([H|L],M) :- !,$process_module_decls_options242,6238 -'$process_module_decls_options'(T,M) :-$process_module_decls_options245,6362 -'$process_module_decls_options'(T,M) :-$process_module_decls_options245,6362 -'$process_module_decls_options'(T,M) :-$process_module_decls_options245,6362 -'$process_module_decls_option'(Var,M) :-$process_module_decls_option248,6439 -'$process_module_decls_option'(Var,M) :-$process_module_decls_option248,6439 -'$process_module_decls_option'(Var,M) :-$process_module_decls_option248,6439 -'$process_module_decls_option'(At,M) :-$process_module_decls_option251,6528 -'$process_module_decls_option'(At,M) :-$process_module_decls_option251,6528 -'$process_module_decls_option'(At,M) :-$process_module_decls_option251,6528 -'$process_module_decls_option'(library(L),M) :- !,$process_module_decls_option254,6601 -'$process_module_decls_option'(library(L),M) :- !,$process_module_decls_option254,6601 -'$process_module_decls_option'(library(L),M) :- !,$process_module_decls_option254,6601 -'$process_module_decls_option'(hidden(Bool),M) :- !,$process_module_decls_option256,6679 -'$process_module_decls_option'(hidden(Bool),M) :- !,$process_module_decls_option256,6679 -'$process_module_decls_option'(hidden(Bool),M) :- !,$process_module_decls_option256,6679 -'$process_module_decls_option'(Opt,M) :-$process_module_decls_option258,6768 -'$process_module_decls_option'(Opt,M) :-$process_module_decls_option258,6768 -'$process_module_decls_option'(Opt,M) :-$process_module_decls_option258,6768 -'$process_hidden_module'(TNew,M) :-$process_hidden_module261,6865 -'$process_hidden_module'(TNew,M) :-$process_hidden_module261,6865 -'$process_hidden_module'(TNew,M) :-$process_hidden_module261,6865 -'$convert_true_off_mod3'(true, off, _) :- !.$convert_true_off_mod3266,7011 -'$convert_true_off_mod3'(true, off, _) :- !.$convert_true_off_mod3266,7011 -'$convert_true_off_mod3'(true, off, _) :- !.$convert_true_off_mod3266,7011 -'$convert_true_off_mod3'(false, on, _) :- !.$convert_true_off_mod3267,7056 -'$convert_true_off_mod3'(false, on, _) :- !.$convert_true_off_mod3267,7056 -'$convert_true_off_mod3'(false, on, _) :- !.$convert_true_off_mod3267,7056 -'$convert_true_off_mod3'(X, _, M) :-$convert_true_off_mod3268,7101 -'$convert_true_off_mod3'(X, _, M) :-$convert_true_off_mod3268,7101 -'$convert_true_off_mod3'(X, _, M) :-$convert_true_off_mod3268,7101 -'$prepare_restore_hidden'(Old,Old) :- !.$prepare_restore_hidden271,7200 -'$prepare_restore_hidden'(Old,Old) :- !.$prepare_restore_hidden271,7200 -'$prepare_restore_hidden'(Old,Old) :- !.$prepare_restore_hidden271,7200 -'$prepare_restore_hidden'(Old,New) :-$prepare_restore_hidden272,7241 -'$prepare_restore_hidden'(Old,New) :-$prepare_restore_hidden272,7241 -'$prepare_restore_hidden'(Old,New) :-$prepare_restore_hidden272,7241 -'$extend_exports'(HostF, Exports, DonorF ) :-$extend_exports276,7342 -'$extend_exports'(HostF, Exports, DonorF ) :-$extend_exports276,7342 -'$extend_exports'(HostF, Exports, DonorF ) :-$extend_exports276,7342 -'$module_produced by'(M, M0, N, K) :-$module_produced by286,8026 -'$module_produced by'(M, M0, N, K) :-$module_produced by286,8026 -'$module_produced by'(M, M0, N, K) :-$module_produced by286,8026 -'$module_produced by'(M, M0, N, K) :-$module_produced by288,8115 -'$module_produced by'(M, M0, N, K) :-$module_produced by288,8115 -'$module_produced by'(M, M0, N, K) :-$module_produced by288,8115 -current_module(Mod) :-current_module303,8537 -current_module(Mod) :-current_module303,8537 -current_module(Mod) :-current_module303,8537 -current_module(Mod,TFN) :-current_module311,8845 -current_module(Mod,TFN) :-current_module311,8845 -current_module(Mod,TFN) :-current_module311,8845 -system_module(Mod) :-system_module315,9009 -system_module(Mod) :-system_module315,9009 -system_module(Mod) :-system_module315,9009 -'$trace_module'(X) :-$trace_module319,9113 -'$trace_module'(X) :-$trace_module319,9113 -'$trace_module'(X) :-$trace_module319,9113 -'$trace_module'(_).$trace_module324,9197 -'$trace_module'(_)./p,predicate,predicate definition324,9197 -'$trace_module'(_).$trace_module324,9197 -'$trace_module'(X,Y) :- X==Y, !.$trace_module326,9218 -'$trace_module'(X,Y) :- X==Y, !.$trace_module326,9218 -'$trace_module'(X,Y) :- X==Y, !.$trace_module326,9218 -'$trace_module'(X,Y) :-$trace_module327,9251 -'$trace_module'(X,Y) :-$trace_module327,9251 -'$trace_module'(X,Y) :-$trace_module327,9251 -'$trace_module'(_,_).$trace_module334,9399 -'$trace_module'(_,_)./p,predicate,predicate definition334,9399 -'$trace_module'(_,_).$trace_module334,9399 -'$continue_imported'(Mod,Mod,Pred,Pred) :-$continue_imported337,9423 -'$continue_imported'(Mod,Mod,Pred,Pred) :-$continue_imported337,9423 -'$continue_imported'(Mod,Mod,Pred,Pred) :-$continue_imported337,9423 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported340,9501 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported340,9501 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported340,9501 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported343,9650 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported343,9650 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported343,9650 -'$imported_predicate'(G, _ImportingMod, G, prolog) :-$imported_predicate350,9832 -'$imported_predicate'(G, _ImportingMod, G, prolog) :-$imported_predicate350,9832 -'$imported_predicate'(G, _ImportingMod, G, prolog) :-$imported_predicate350,9832 -'$imported_predicate'(G, ImportingMod, G0, ExportingMod) :-$imported_predicate352,9936 -'$imported_predicate'(G, ImportingMod, G0, ExportingMod) :-$imported_predicate352,9936 -'$imported_predicate'(G, ImportingMod, G0, ExportingMod) :-$imported_predicate352,9936 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred361,10182 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred361,10182 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred361,10182 -'$get_undefined_pred'(G, _ImportingMod, G, user) :-$get_undefined_pred366,10396 -'$get_undefined_pred'(G, _ImportingMod, G, user) :-$get_undefined_pred366,10396 -'$get_undefined_pred'(G, _ImportingMod, G, user) :-$get_undefined_pred366,10396 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred369,10489 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred369,10489 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred369,10489 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred385,10921 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred385,10921 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred385,10921 -'$autoload'(G, _ImportingMod, ExportingMod, Dialect) :-$autoload389,11088 -'$autoload'(G, _ImportingMod, ExportingMod, Dialect) :-$autoload389,11088 -'$autoload'(G, _ImportingMod, ExportingMod, Dialect) :-$autoload389,11088 -'$autoload'(G, ImportingMod, ExportingMod, _Dialect) :-$autoload394,11294 -'$autoload'(G, ImportingMod, ExportingMod, _Dialect) :-$autoload394,11294 -'$autoload'(G, ImportingMod, ExportingMod, _Dialect) :-$autoload394,11294 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate402,11572 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate402,11572 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate402,11572 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate405,11716 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate405,11716 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate405,11716 -'$declare_module'(Name, _Super, Context, _File, _Line) :-$declare_module431,12651 -'$declare_module'(Name, _Super, Context, _File, _Line) :-$declare_module431,12651 -'$declare_module'(Name, _Super, Context, _File, _Line) :-$declare_module431,12651 -abolish_module(Mod) :-abolish_module438,12863 -abolish_module(Mod) :-abolish_module438,12863 -abolish_module(Mod) :-abolish_module438,12863 -abolish_module(Mod) :-abolish_module441,12950 -abolish_module(Mod) :-abolish_module441,12950 -abolish_module(Mod) :-abolish_module441,12950 -abolish_module(Mod) :-abolish_module444,13039 -abolish_module(Mod) :-abolish_module444,13039 -abolish_module(Mod) :-abolish_module444,13039 -abolish_module(_).abolish_module449,13146 -abolish_module(_).abolish_module449,13146 -export(Resource) :-export451,13166 -export(Resource) :-export451,13166 -export(Resource) :-export451,13166 -export([]) :- !.export454,13254 -export([]) :- !.export454,13254 -export([]) :- !.export454,13254 -export([Resource| Resources]) :- !,export455,13271 -export([Resource| Resources]) :- !,export455,13271 -export([Resource| Resources]) :- !,export455,13271 -export(Resource) :-export458,13355 -export(Resource) :-export458,13355 -export(Resource) :-export458,13355 -export_resource(Resource) :-export_resource461,13404 -export_resource(Resource) :-export_resource461,13404 -export_resource(Resource) :-export_resource461,13404 -export_resource(P) :-export_resource464,13504 -export_resource(P) :-export_resource464,13504 -export_resource(P) :-export_resource464,13504 -export_resource(P0) :-export_resource474,13922 -export_resource(P0) :-export_resource474,13922 -export_resource(P0) :-export_resource474,13922 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource485,14366 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource485,14366 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource485,14366 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource487,14439 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource487,14439 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource487,14439 -export_resource(Resource) :-export_resource489,14510 -export_resource(Resource) :-export_resource489,14510 -export_resource(Resource) :-export_resource489,14510 -export_list(Module, List) :-export_list492,14613 -export_list(Module, List) :-export_list492,14613 -export_list(Module, List) :-export_list492,14613 -'$add_to_imports'([], _, _).$add_to_imports496,14697 -'$add_to_imports'([], _, _)./p,predicate,predicate definition496,14697 -'$add_to_imports'([], _, _).$add_to_imports496,14697 -'$add_to_imports'([T|Tab], Module, ContextModule) :-$add_to_imports498,14769 -'$add_to_imports'([T|Tab], Module, ContextModule) :-$add_to_imports498,14769 -'$add_to_imports'([T|Tab], Module, ContextModule) :-$add_to_imports498,14769 -'$do_import'(op(Prio,Assoc,Name), _Mod, ContextMod) :-$do_import502,14912 -'$do_import'(op(Prio,Assoc,Name), _Mod, ContextMod) :-$do_import502,14912 -'$do_import'(op(Prio,Assoc,Name), _Mod, ContextMod) :-$do_import502,14912 -'$do_import'(N0/K0-N0/K0, Mod, Mod) :- !.$do_import504,15000 -'$do_import'(N0/K0-N0/K0, Mod, Mod) :- !.$do_import504,15000 -'$do_import'(N0/K0-N0/K0, Mod, Mod) :- !.$do_import504,15000 -'$do_import'(N0/K0-N0/K0, _Mod, prolog) :- !.$do_import505,15042 -'$do_import'(N0/K0-N0/K0, _Mod, prolog) :- !.$do_import505,15042 -'$do_import'(N0/K0-N0/K0, _Mod, prolog) :- !.$do_import505,15042 -'$do_import'(_N/K-N1/K, _Mod, ContextMod) :-$do_import506,15088 -'$do_import'(_N/K-N1/K, _Mod, ContextMod) :-$do_import506,15088 -'$do_import'(_N/K-N1/K, _Mod, ContextMod) :-$do_import506,15088 -'$do_import'( N/K-N1/K, Mod, ContextMod) :-$do_import512,15398 -'$do_import'( N/K-N1/K, Mod, ContextMod) :-$do_import512,15398 -'$do_import'( N/K-N1/K, Mod, ContextMod) :-$do_import512,15398 -'$follow_import_chain'(M,G,M0,G0) :-$follow_import_chain531,15808 -'$follow_import_chain'(M,G,M0,G0) :-$follow_import_chain531,15808 -'$follow_import_chain'(M,G,M0,G0) :-$follow_import_chain531,15808 -'$follow_import_chain'(M,G,M,G).$follow_import_chain534,15944 -'$follow_import_chain'(M,G,M,G)./p,predicate,predicate definition534,15944 -'$follow_import_chain'(M,G,M,G).$follow_import_chain534,15944 -'$check_import'(Mod, ContextM, N, K) :-$check_import537,16019 -'$check_import'(Mod, ContextM, N, K) :-$check_import537,16019 -'$check_import'(Mod, ContextM, N, K) :-$check_import537,16019 -'$check_import'(_,_,_,_).$check_import545,16382 -'$check_import'(_,_,_,_)./p,predicate,predicate definition545,16382 -'$check_import'(_,_,_,_).$check_import545,16382 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import547,16409 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import547,16409 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import547,16409 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import551,16606 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import551,16606 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import551,16606 -'$redefine_action'(ask, M1, M2, M, _, N/K) :-$redefine_action555,16715 -'$redefine_action'(ask, M1, M2, M, _, N/K) :-$redefine_action555,16715 -'$redefine_action'(ask, M1, M2, M, _, N/K) :-$redefine_action555,16715 -'$redefine_action'(true, M1, _, _, _, _) :- !,$redefine_action562,17032 -'$redefine_action'(true, M1, _, _, _, _) :- !,$redefine_action562,17032 -'$redefine_action'(true, M1, _, _, _, _) :- !,$redefine_action562,17032 -'$redefine_action'(false, M1, M2, _M, ContextM, N/K) :-$redefine_action565,17158 -'$redefine_action'(false, M1, M2, _M, ContextM, N/K) :-$redefine_action565,17158 -'$redefine_action'(false, M1, M2, _M, ContextM, N/K) :-$redefine_action565,17158 -'$mod_scan'(C) :-$mod_scan570,17372 -'$mod_scan'(C) :-$mod_scan570,17372 -'$mod_scan'(C) :-$mod_scan570,17372 -set_base_module(ExportingModule) :-set_base_module585,17839 -set_base_module(ExportingModule) :-set_base_module585,17839 -set_base_module(ExportingModule) :-set_base_module585,17839 -set_base_module(ExportingModule) :-set_base_module588,17966 -set_base_module(ExportingModule) :-set_base_module588,17966 -set_base_module(ExportingModule) :-set_base_module588,17966 -set_base_module(ExportingModule) :-set_base_module593,18155 -set_base_module(ExportingModule) :-set_base_module593,18155 -set_base_module(ExportingModule) :-set_base_module593,18155 -import_module(Mod, ImportModule) :-import_module607,18670 -import_module(Mod, ImportModule) :-import_module607,18670 -import_module(Mod, ImportModule) :-import_module607,18670 -import_module(Mod, ImportModule) :-import_module610,18785 -import_module(Mod, ImportModule) :-import_module610,18785 -import_module(Mod, ImportModule) :-import_module610,18785 -import_module(Mod, EM) :-import_module613,18880 -import_module(Mod, EM) :-import_module613,18880 -import_module(Mod, EM) :-import_module613,18880 -add_import_module(Mod, ImportModule, Pos) :-add_import_module628,19353 -add_import_module(Mod, ImportModule, Pos) :-add_import_module628,19353 -add_import_module(Mod, ImportModule, Pos) :-add_import_module628,19353 -add_import_module(Mod, ImportModule, Pos) :-add_import_module631,19486 -add_import_module(Mod, ImportModule, Pos) :-add_import_module631,19486 -add_import_module(Mod, ImportModule, Pos) :-add_import_module631,19486 -add_import_module(Mod, ImportModule, start) :-add_import_module634,19619 -add_import_module(Mod, ImportModule, start) :-add_import_module634,19619 -add_import_module(Mod, ImportModule, start) :-add_import_module634,19619 -add_import_module(Mod, ImportModule, end) :-add_import_module638,19790 -add_import_module(Mod, ImportModule, end) :-add_import_module638,19790 -add_import_module(Mod, ImportModule, end) :-add_import_module638,19790 -add_import_module(Mod, ImportModule, Pos) :-add_import_module642,19959 -add_import_module(Mod, ImportModule, Pos) :-add_import_module642,19959 -add_import_module(Mod, ImportModule, Pos) :-add_import_module642,19959 -add_import_module(Mod, ImportModule, Pos) :-add_import_module645,20100 -add_import_module(Mod, ImportModule, Pos) :-add_import_module645,20100 -add_import_module(Mod, ImportModule, Pos) :-add_import_module645,20100 -delete_import_module(Mod, ImportModule) :-delete_import_module657,20494 -delete_import_module(Mod, ImportModule) :-delete_import_module657,20494 -delete_import_module(Mod, ImportModule) :-delete_import_module657,20494 -delete_import_module(Mod, ImportModule) :-delete_import_module660,20623 -delete_import_module(Mod, ImportModule) :-delete_import_module660,20623 -delete_import_module(Mod, ImportModule) :-delete_import_module660,20623 -delete_import_module(Mod, ImportModule) :-delete_import_module663,20761 -delete_import_module(Mod, ImportModule) :-delete_import_module663,20761 -delete_import_module(Mod, ImportModule) :-delete_import_module663,20761 -delete_import_module(Mod, ImportModule) :-delete_import_module667,20896 -delete_import_module(Mod, ImportModule) :-delete_import_module667,20896 -delete_import_module(Mod, ImportModule) :-delete_import_module667,20896 -delete_import_module(Mod, ImportModule) :-delete_import_module670,21033 -delete_import_module(Mod, ImportModule) :-delete_import_module670,21033 -delete_import_module(Mod, ImportModule) :-delete_import_module670,21033 -'$set_source_module'(Source0, SourceF) :-$set_source_module673,21162 -'$set_source_module'(Source0, SourceF) :-$set_source_module673,21162 -'$set_source_module'(Source0, SourceF) :-$set_source_module673,21162 -'$set_source_module'(Source0, SourceF) :-$set_source_module676,21264 -'$set_source_module'(Source0, SourceF) :-$set_source_module676,21264 -'$set_source_module'(Source0, SourceF) :-$set_source_module676,21264 -module_property(Mod, Prop) :-module_property696,21858 -module_property(Mod, Prop) :-module_property696,21858 -module_property(Mod, Prop) :-module_property696,21858 -module_property(Mod, class(L)) :-module_property701,21990 -module_property(Mod, class(L)) :-module_property701,21990 -module_property(Mod, class(L)) :-module_property701,21990 -module_property(Mod, line_count(L)) :-module_property703,22050 -module_property(Mod, line_count(L)) :-module_property703,22050 -module_property(Mod, line_count(L)) :-module_property703,22050 -module_property(Mod, file(F)) :-module_property705,22137 -module_property(Mod, file(F)) :-module_property705,22137 -module_property(Mod, file(F)) :-module_property705,22137 -module_property(Mod, exports(Es)) :-module_property707,22217 -module_property(Mod, exports(Es)) :-module_property707,22217 -module_property(Mod, exports(Es)) :-module_property707,22217 -'$module_class'( Mod, system) :- '$is_system_module'( Mod ), !.$module_class722,22551 -'$module_class'( Mod, system) :- '$is_system_module'( Mod ), !.$module_class722,22551 -'$module_class'( Mod, system) :- '$is_system_module'( Mod ), !.$module_class722,22551 -'$module_class'( Mod, library) :- '$library_module'( Mod ), !.$module_class723,22615 -'$module_class'( Mod, library) :- '$library_module'( Mod ), !.$module_class723,22615 -'$module_class'( Mod, library) :- '$library_module'( Mod ), !.$module_class723,22615 -'$module_class'(_Mod, user) :- !.$module_class724,22678 -'$module_class'(_Mod, user) :- !.$module_class724,22678 -'$module_class'(_Mod, user) :- !.$module_class724,22678 -'$module_class'( _, temporary) :- fail.$module_class725,22712 -'$module_class'( _, temporary) :- fail.$module_class725,22712 -'$module_class'( _, temporary) :- fail.$module_class725,22712 -'$module_class'( _, test) :- fail.$module_class726,22754 -'$module_class'( _, test) :- fail.$module_class726,22754 -'$module_class'( _, test) :- fail.$module_class726,22754 -'$module_class'( _, development) :- fail.$module_class727,22791 -'$module_class'( _, development) :- fail.$module_class727,22791 -'$module_class'( _, development) :- fail.$module_class727,22791 -'$library_module'(M1) :-$library_module729,22836 -'$library_module'(M1) :-$library_module729,22836 -'$library_module'(M1) :-$library_module729,22836 -ls_imports :-ls_imports732,22933 -unload_module(Mod) :-unload_module739,23089 -unload_module(Mod) :-unload_module739,23089 -unload_module(Mod) :-unload_module739,23089 -unload_module(Mod) :-unload_module743,23187 -unload_module(Mod) :-unload_module743,23187 -unload_module(Mod) :-unload_module743,23187 -unload_module(Mod) :-unload_module747,23308 -unload_module(Mod) :-unload_module747,23308 -unload_module(Mod) :-unload_module747,23308 -unload_module(Mod) :-unload_module752,23424 -unload_module(Mod) :-unload_module752,23424 -unload_module(Mod) :-unload_module752,23424 -unload_module(Mod) :-unload_module760,23723 -unload_module(Mod) :-unload_module760,23723 -unload_module(Mod) :-unload_module760,23723 -unload_module(Mod) :-unload_module765,23883 -unload_module(Mod) :-unload_module765,23883 -unload_module(Mod) :-unload_module765,23883 -unload_module(Mod) :-unload_module769,23961 -unload_module(Mod) :-unload_module769,23961 -unload_module(Mod) :-unload_module769,23961 -unload_module(Mod) :-unload_module773,24065 -unload_module(Mod) :-unload_module773,24065 -unload_module(Mod) :-unload_module773,24065 -module_state :-module_state779,24181 - -packages/python/swig/yap4py/prolog/pl/newmod.yap,2274 -module(N) :-module14,417 -module(N) :-module14,417 -module(N) :-module14,417 -module(N) :-module17,484 -module(N) :-module17,484 -module(N) :-module17,484 -module(N) :-module21,564 -module(N) :-module21,564 -module(N) :-module21,564 -'$module_dec'(system(N, Ss), Ps) :- !,$module_dec45,1509 -'$module_dec'(system(N, Ss), Ps) :- !,$module_dec45,1509 -'$module_dec'(system(N, Ss), Ps) :- !,$module_dec45,1509 -'$module_dec'(system(N), Ps) :- !,$module_dec49,1637 -'$module_dec'(system(N), Ps) :- !,$module_dec49,1637 -'$module_dec'(system(N), Ps) :- !,$module_dec49,1637 -'$module_dec'(N, Ps) :-$module_dec53,1762 -'$module_dec'(N, Ps) :-$module_dec53,1762 -'$module_dec'(N, Ps) :-$module_dec53,1762 -'$mk_system_predicates'( Ps, _N ) :-$mk_system_predicates59,1934 -'$mk_system_predicates'( Ps, _N ) :-$mk_system_predicates59,1934 -'$mk_system_predicates'( Ps, _N ) :-$mk_system_predicates59,1934 -'$mk_system_predicates'( _Ps, _N ).$mk_system_predicates63,2058 -'$mk_system_predicates'( _Ps, _N )./p,predicate,predicate definition63,2058 -'$mk_system_predicates'( _Ps, _N ).$mk_system_predicates63,2058 -declare_module(Mod) -->declare_module66,2098 -declare_module(Mod) -->declare_module66,2098 -declare_module(Mod) -->declare_module66,2098 -'$module'(_,N,P) :-$module82,2600 -'$module'(_,N,P) :-$module82,2600 -'$module'(_,N,P) :-$module82,2600 -set_module_property(Mod, base(Base)) :-set_module_property92,2906 -set_module_property(Mod, base(Base)) :-set_module_property92,2906 -set_module_property(Mod, base(Base)) :-set_module_property92,2906 -set_module_property(Mod, exports(Exports)) :-set_module_property95,3016 -set_module_property(Mod, exports(Exports)) :-set_module_property95,3016 -set_module_property(Mod, exports(Exports)) :-set_module_property95,3016 -set_module_property(Mod, exports(Exports, File, Line)) :-set_module_property98,3160 -set_module_property(Mod, exports(Exports, File, Line)) :-set_module_property98,3160 -set_module_property(Mod, exports(Exports, File, Line)) :-set_module_property98,3160 -set_module_property(Mod, class(Class)) :-set_module_property101,3313 -set_module_property(Mod, class(Class)) :-set_module_property101,3313 -set_module_property(Mod, class(Class)) :-set_module_property101,3313 - -packages/python/swig/yap4py/prolog/pl/os.yap,6823 -cd :-cd42,894 -cd(F) :-cd52,993 -cd(F) :-cd52,993 -cd(F) :-cd52,993 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -ls :-ls73,1369 -'$load_system_ls'(X,L) :-$load_system_ls78,1436 -'$load_system_ls'(X,L) :-$load_system_ls78,1436 -'$load_system_ls'(X,L) :-$load_system_ls78,1436 -'$load_system_ls'(X,L) :-$load_system_ls82,1560 -'$load_system_ls'(X,L) :-$load_system_ls82,1560 -'$load_system_ls'(X,L) :-$load_system_ls82,1560 -'$do_print_files'([]) :-$do_print_files86,1619 -'$do_print_files'([]) :-$do_print_files86,1619 -'$do_print_files'([]) :-$do_print_files86,1619 -'$do_print_files'([F| Fs]) :-$do_print_files88,1649 -'$do_print_files'([F| Fs]) :-$do_print_files88,1649 -'$do_print_files'([F| Fs]) :-$do_print_files88,1649 -'$do_print_file'('.') :- !.$do_print_file92,1726 -'$do_print_file'('.') :- !.$do_print_file92,1726 -'$do_print_file'('.') :- !.$do_print_file92,1726 -'$do_print_file'('..') :- !.$do_print_file93,1754 -'$do_print_file'('..') :- !.$do_print_file93,1754 -'$do_print_file'('..') :- !.$do_print_file93,1754 -'$do_print_file'(F) :- atom_concat('.', _, F), !.$do_print_file94,1783 -'$do_print_file'(F) :- atom_concat('.', _, F), !.$do_print_file94,1783 -'$do_print_file'(F) :- atom_concat('.', _, F), !.$do_print_file94,1783 -'$do_print_file'(F) :-$do_print_file95,1833 -'$do_print_file'(F) :-$do_print_file95,1833 -'$do_print_file'(F) :-$do_print_file95,1833 -pwd :-pwd105,1933 -unix(V) :- var(V), !,unix143,2886 -unix(V) :- var(V), !,unix143,2886 -unix(V) :- var(V), !,unix143,2886 -unix(argv(L)) :-unix145,2951 -unix(argv(L)) :-unix145,2951 -unix(argv(L)) :-unix145,2951 -unix(cd) :- cd('~').unix147,2999 -unix(cd) :- cd('~').unix147,2999 -unix(cd) :- cd('~').unix147,2999 -unix(cd) :- cd('~').unix147,2999 -unix(cd) :- cd('~').unix147,2999 -unix(cd(A)) :- cd(A).unix148,3020 -unix(cd(A)) :- cd(A).unix148,3020 -unix(cd(A)) :- cd(A).unix148,3020 -unix(cd(A)) :- cd(A).unix148,3020 -unix(cd(A)) :- cd(A).unix148,3020 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(shell(V)) :- var(V), !,unix151,3114 -unix(shell(V)) :- var(V), !,unix151,3114 -unix(shell(V)) :- var(V), !,unix151,3114 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(V)) :-unix155,3281 -unix(shell(V)) :-unix155,3281 -unix(shell(V)) :-unix155,3281 -unix(system(V)) :- var(V), !,unix157,3350 -unix(system(V)) :- var(V), !,unix157,3350 -unix(system(V)) :- var(V), !,unix157,3350 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(V)) :-unix161,3517 -unix(system(V)) :-unix161,3517 -unix(system(V)) :-unix161,3517 -unix(shell) :- sh.unix163,3586 -unix(shell) :- sh.unix163,3586 -unix(shell) :- sh.unix163,3586 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -'$is_list_of_atoms'(V,_) :- var(V),!.$is_list_of_atoms167,3644 -'$is_list_of_atoms'(V,_) :- var(V),!.$is_list_of_atoms167,3644 -'$is_list_of_atoms'(V,_) :- var(V),!.$is_list_of_atoms167,3644 -'$is_list_of_atoms'([],_) :- !.$is_list_of_atoms168,3682 -'$is_list_of_atoms'([],_) :- !.$is_list_of_atoms168,3682 -'$is_list_of_atoms'([],_) :- !.$is_list_of_atoms168,3682 -'$is_list_of_atoms'([H|L],L0) :- !,$is_list_of_atoms169,3714 -'$is_list_of_atoms'([H|L],L0) :- !,$is_list_of_atoms169,3714 -'$is_list_of_atoms'([H|L],L0) :- !,$is_list_of_atoms169,3714 -'$is_list_of_atoms'(H,L0) :-$is_list_of_atoms172,3815 -'$is_list_of_atoms'(H,L0) :-$is_list_of_atoms172,3815 -'$is_list_of_atoms'(H,L0) :-$is_list_of_atoms172,3815 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom175,3894 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom175,3894 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom175,3894 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom177,3943 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom177,3943 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom177,3943 -'$check_if_head_may_be_atom'(H,L0) :-$check_if_head_may_be_atom179,3993 -'$check_if_head_may_be_atom'(H,L0) :-$check_if_head_may_be_atom179,3993 -'$check_if_head_may_be_atom'(H,L0) :-$check_if_head_may_be_atom179,3993 -'$do_environ'(X, Y) :-$do_environ183,4082 -'$do_environ'(X, Y) :-$do_environ183,4082 -'$do_environ'(X, Y) :-$do_environ183,4082 -'$do_environ'(X, Y) :- atom(X), !,$do_environ186,4171 -'$do_environ'(X, Y) :- atom(X), !,$do_environ186,4171 -'$do_environ'(X, Y) :- atom(X), !,$do_environ186,4171 -'$do_environ'(X, Y) :-$do_environ188,4223 -'$do_environ'(X, Y) :-$do_environ188,4223 -'$do_environ'(X, Y) :-$do_environ188,4223 -putenv(Na,Val) :-putenv201,4514 -putenv(Na,Val) :-putenv201,4514 -putenv(Na,Val) :-putenv201,4514 -getenv(Na,Val) :-getenv204,4553 -getenv(Na,Val) :-getenv204,4553 -getenv(Na,Val) :-getenv204,4553 -setenv(Na,Val) :-setenv217,4866 -setenv(Na,Val) :-setenv217,4866 -setenv(Na,Val) :-setenv217,4866 - -packages/python/swig/yap4py/prolog/pl/pathconf.yap,5938 -:- multifile library_directory/1.multifile24,682 -:- multifile library_directory/1.multifile24,682 -:- dynamic library_directory/1.dynamic26,717 -:- dynamic library_directory/1.dynamic26,717 -library_directory(Home) :-library_directory30,827 -library_directory(Home) :-library_directory30,827 -library_directory(Home) :-library_directory30,827 -library_directory( Dir ) :-library_directory34,950 -library_directory( Dir ) :-library_directory34,950 -library_directory( Dir ) :-library_directory34,950 -library_directory( '~/share/Yap' ).library_directory37,1040 -library_directory( '~/share/Yap' ).library_directory37,1040 -library_directory( '.' ).library_directory39,1106 -library_directory( '.' ).library_directory39,1106 -library_directory( Dir ) :-library_directory41,1162 -library_directory( Dir ) :-library_directory41,1162 -library_directory( Dir ) :-library_directory41,1162 -:- dynamic commons_directory/1.dynamic52,1445 -:- dynamic commons_directory/1.dynamic52,1445 -:- multifile commons_directory/1.multifile54,1478 -:- multifile commons_directory/1.multifile54,1478 -commons_directory( Path ):-commons_directory57,1514 -commons_directory( Path ):-commons_directory57,1514 -commons_directory( Path ):-commons_directory57,1514 -:- multifile foreign_directory/1.multifile69,1800 -:- multifile foreign_directory/1.multifile69,1800 -:- dynamic foreign_directory/1.dynamic71,1835 -:- dynamic foreign_directory/1.dynamic71,1835 -foreign_directory(Home) :-foreign_directory74,1897 -foreign_directory(Home) :-foreign_directory74,1897 -foreign_directory(Home) :-foreign_directory74,1897 -foreign_directory( '.').foreign_directory77,1997 -foreign_directory( '.').foreign_directory77,1997 -foreign_directory(yap('lib/Yap')).foreign_directory78,2022 -foreign_directory(yap('lib/Yap')).foreign_directory78,2022 -foreign_directory( Path ):-foreign_directory79,2057 -foreign_directory( Path ):-foreign_directory79,2057 -foreign_directory( Path ):-foreign_directory79,2057 -:- dynamic prolog_file_type/2.dynamic107,2931 -:- dynamic prolog_file_type/2.dynamic107,2931 -prolog_file_type(yap, prolog).prolog_file_type109,2963 -prolog_file_type(yap, prolog).prolog_file_type109,2963 -prolog_file_type(pl, prolog).prolog_file_type110,2994 -prolog_file_type(pl, prolog).prolog_file_type110,2994 -prolog_file_type(prolog, prolog).prolog_file_type111,3024 -prolog_file_type(prolog, prolog).prolog_file_type111,3024 -prolog_file_type(A, prolog) :-prolog_file_type112,3058 -prolog_file_type(A, prolog) :-prolog_file_type112,3058 -prolog_file_type(A, prolog) :-prolog_file_type112,3058 -prolog_file_type(qly, qly).prolog_file_type117,3163 -prolog_file_type(qly, qly).prolog_file_type117,3163 -prolog_file_type(A, executable) :-prolog_file_type118,3191 -prolog_file_type(A, executable) :-prolog_file_type118,3191 -prolog_file_type(A, executable) :-prolog_file_type118,3191 -file_search_path(library, Dir) :-file_search_path130,3613 -file_search_path(library, Dir) :-file_search_path130,3613 -file_search_path(library, Dir) :-file_search_path130,3613 -file_search_path(commons, Dir) :-file_search_path132,3673 -file_search_path(commons, Dir) :-file_search_path132,3673 -file_search_path(commons, Dir) :-file_search_path132,3673 -file_search_path(swi, Home) :-file_search_path134,3733 -file_search_path(swi, Home) :-file_search_path134,3733 -file_search_path(swi, Home) :-file_search_path134,3733 -file_search_path(yap, Home) :-file_search_path136,3799 -file_search_path(yap, Home) :-file_search_path136,3799 -file_search_path(yap, Home) :-file_search_path136,3799 -file_search_path(system, Dir) :-file_search_path138,3871 -file_search_path(system, Dir) :-file_search_path138,3871 -file_search_path(system, Dir) :-file_search_path138,3871 -file_search_path(foreign, Dir) :-file_search_path140,3935 -file_search_path(foreign, Dir) :-file_search_path140,3935 -file_search_path(foreign, Dir) :-file_search_path140,3935 -file_search_path(executable, Dir) :-file_search_path142,3995 -file_search_path(executable, Dir) :-file_search_path142,3995 -file_search_path(executable, Dir) :-file_search_path142,3995 -file_search_path(path, C) :-file_search_path144,4058 -file_search_path(path, C) :-file_search_path144,4058 -file_search_path(path, C) :-file_search_path144,4058 -:- multifile file_search_path/2.multifile160,4495 -:- multifile file_search_path/2.multifile160,4495 -:- dynamic file_search_path/2.dynamic162,4529 -:- dynamic file_search_path/2.dynamic162,4529 -file_search_path(library, Dir) :-file_search_path165,4562 -file_search_path(library, Dir) :-file_search_path165,4562 -file_search_path(library, Dir) :-file_search_path165,4562 -file_search_path(commons, Dir) :-file_search_path167,4621 -file_search_path(commons, Dir) :-file_search_path167,4621 -file_search_path(commons, Dir) :-file_search_path167,4621 -file_search_path(swi, Home) :-file_search_path169,4680 -file_search_path(swi, Home) :-file_search_path169,4680 -file_search_path(swi, Home) :-file_search_path169,4680 -file_search_path(yap, Home) :-file_search_path171,4745 -file_search_path(yap, Home) :-file_search_path171,4745 -file_search_path(yap, Home) :-file_search_path171,4745 -file_search_path(system, Dir) :-file_search_path173,4813 -file_search_path(system, Dir) :-file_search_path173,4813 -file_search_path(system, Dir) :-file_search_path173,4813 -file_search_path(foreign, Dir) :-file_search_path175,4876 -file_search_path(foreign, Dir) :-file_search_path175,4876 -file_search_path(foreign, Dir) :-file_search_path175,4876 -file_search_path(executable, Dir) :-file_search_path177,4936 -file_search_path(executable, Dir) :-file_search_path177,4936 -file_search_path(executable, Dir) :-file_search_path177,4936 -file_search_path(path, C) :-file_search_path179,4999 -file_search_path(path, C) :-file_search_path179,4999 -file_search_path(path, C) :-file_search_path179,4999 - -packages/python/swig/yap4py/prolog/pl/preddecls.yap,9128 -'$log_upd'(1).$log_upd28,919 -'$log_upd'(1)./p,predicate,predicate definition28,919 -'$log_upd'(1).$log_upd28,919 -:- dynamic god/1.dynamic52,1593 -:- dynamic god/1.dynamic52,1593 -:- dynamic son/3, father/2, mother/2.dynamic59,1662 -:- dynamic son/3, father/2, mother/2.dynamic59,1662 -dynamic(X) :-dynamic75,1864 -dynamic(X) :-dynamic75,1864 -dynamic(X) :-dynamic75,1864 -dynamic(X) :-dynamic79,1961 -dynamic(X) :-dynamic79,1961 -dynamic(X) :-dynamic79,1961 -'$dynamic'(X,M) :- var(X), !,$dynamic82,2035 -'$dynamic'(X,M) :- var(X), !,$dynamic82,2035 -'$dynamic'(X,M) :- var(X), !,$dynamic82,2035 -'$dynamic'(X,M) :- var(M), !,$dynamic84,2113 -'$dynamic'(X,M) :- var(M), !,$dynamic84,2113 -'$dynamic'(X,M) :- var(M), !,$dynamic84,2113 -'$dynamic'(Mod:Spec,_) :- !,$dynamic86,2191 -'$dynamic'(Mod:Spec,_) :- !,$dynamic86,2191 -'$dynamic'(Mod:Spec,_) :- !,$dynamic86,2191 -'$dynamic'([], _) :- !.$dynamic88,2243 -'$dynamic'([], _) :- !.$dynamic88,2243 -'$dynamic'([], _) :- !.$dynamic88,2243 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M)./p,predicate,predicate definition89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic89,2267 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M)./p,predicate,predicate definition90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic90,2330 -'$dynamic'(A//N,Mod) :- integer(N), !,$dynamic91,2390 -'$dynamic'(A//N,Mod) :- integer(N), !,$dynamic91,2390 -'$dynamic'(A//N,Mod) :- integer(N), !,$dynamic91,2390 -'$dynamic'(A/N,Mod) :-$dynamic94,2464 -'$dynamic'(A/N,Mod) :-$dynamic94,2464 -'$dynamic'(A/N,Mod) :-$dynamic94,2464 -'$public'(X, _) :- var(X), !,$public109,2893 -'$public'(X, _) :- var(X), !,$public109,2893 -'$public'(X, _) :- var(X), !,$public109,2893 -'$public'(Mod:Spec, _) :- !,$public111,2968 -'$public'(Mod:Spec, _) :- !,$public111,2968 -'$public'(Mod:Spec, _) :- !,$public111,2968 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M)./p,predicate,predicate definition113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public'((A,B), M) :- !, '$public'(A,M), '$public113,3019 -'$public'([],_) :- !.$public114,3077 -'$public'([],_) :- !.$public114,3077 -'$public'([],_) :- !.$public114,3077 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M)./p,predicate,predicate definition115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public'([H|L], M) :- !, '$public'(H, M), '$public115,3099 -'$public'(A//N1, Mod) :- integer(N1), !,$public116,3159 -'$public'(A//N1, Mod) :- integer(N1), !,$public116,3159 -'$public'(A//N1, Mod) :- integer(N1), !,$public116,3159 -'$public'(A/N, Mod) :- integer(N), atom(A), !,$public119,3234 -'$public'(A/N, Mod) :- integer(N), atom(A), !,$public119,3234 -'$public'(A/N, Mod) :- integer(N), atom(A), !,$public119,3234 -'$public'(X, Mod) :-$public122,3326 -'$public'(X, Mod) :-$public122,3326 -'$public'(X, Mod) :-$public122,3326 -'$do_make_public'(T, Mod) :-$do_make_public125,3404 -'$do_make_public'(T, Mod) :-$do_make_public125,3404 -'$do_make_public'(T, Mod) :-$do_make_public125,3404 -'$do_make_public'(T, Mod) :-$do_make_public127,3498 -'$do_make_public'(T, Mod) :-$do_make_public127,3498 -'$do_make_public'(T, Mod) :-$do_make_public127,3498 -:- multifile user:portray_message/2, multifile user:message_hook/3.multifile140,3810 -:- multifile user:portray_message/2, multifile user:message_hook/3.multifile140,3810 -multifile(P) :-multifile155,4334 -multifile(P) :-multifile155,4334 -multifile(P) :-multifile155,4334 -'$multifile'(V, _) :-$multifile159,4407 -'$multifile'(V, _) :-$multifile159,4407 -'$multifile'(V, _) :-$multifile159,4407 -'$multifile'((X,Y), M) :-$multifile163,4496 -'$multifile'((X,Y), M) :-$multifile163,4496 -'$multifile'((X,Y), M) :-$multifile163,4496 -'$multifile'(Mod:PredSpec, _) :-$multifile167,4577 -'$multifile'(Mod:PredSpec, _) :-$multifile167,4577 -'$multifile'(Mod:PredSpec, _) :-$multifile167,4577 -'$multifile'(N//A, M) :- !,$multifile170,4647 -'$multifile'(N//A, M) :- !,$multifile170,4647 -'$multifile'(N//A, M) :- !,$multifile170,4647 -'$multifile'(N/A, M) :-$multifile174,4724 -'$multifile'(N/A, M) :-$multifile174,4724 -'$multifile'(N/A, M) :-$multifile174,4724 -'$multifile'(N/A, M) :-$multifile177,4781 -'$multifile'(N/A, M) :-$multifile177,4781 -'$multifile'(N/A, M) :-$multifile177,4781 -'$multifile'(N/A, M) :- !,$multifile180,4852 -'$multifile'(N/A, M) :- !,$multifile180,4852 -'$multifile'(N/A, M) :- !,$multifile180,4852 -'$multifile'([H|T], M) :- !,$multifile182,4905 -'$multifile'([H|T], M) :- !,$multifile182,4905 -'$multifile'([H|T], M) :- !,$multifile182,4905 -'$multifile'(P, M) :-$multifile185,4974 -'$multifile'(P, M) :-$multifile185,4974 -'$multifile'(P, M) :-$multifile185,4974 -discontiguous(V) :-discontiguous188,5061 -discontiguous(V) :-discontiguous188,5061 -discontiguous(V) :-discontiguous188,5061 -discontiguous(M:F) :- !,discontiguous191,5145 -discontiguous(M:F) :- !,discontiguous191,5145 -discontiguous(M:F) :- !,discontiguous191,5145 -discontiguous(F) :-discontiguous193,5194 -discontiguous(F) :-discontiguous193,5194 -discontiguous(F) :-discontiguous193,5194 -'$discontiguous'(V,M) :- var(V), !,$discontiguous197,5262 -'$discontiguous'(V,M) :- var(V), !,$discontiguous197,5262 -'$discontiguous'(V,M) :- var(V), !,$discontiguous197,5262 -'$discontiguous'((X,Y),M) :- !,$discontiguous199,5352 -'$discontiguous'((X,Y),M) :- !,$discontiguous199,5352 -'$discontiguous'((X,Y),M) :- !,$discontiguous199,5352 -'$discontiguous'(M:A,_) :- !,$discontiguous202,5432 -'$discontiguous'(M:A,_) :- !,$discontiguous202,5432 -'$discontiguous'(M:A,_) :- !,$discontiguous202,5432 -'$discontiguous'(N//A1, M) :- !,$discontiguous204,5486 -'$discontiguous'(N//A1, M) :- !,$discontiguous204,5486 -'$discontiguous'(N//A1, M) :- !,$discontiguous204,5486 -'$discontiguous'(N/A, M) :- !,$discontiguous208,5575 -'$discontiguous'(N/A, M) :- !,$discontiguous208,5575 -'$discontiguous'(N/A, M) :- !,$discontiguous208,5575 -'$discontiguous'(P,M) :-$discontiguous210,5636 -'$discontiguous'(P,M) :-$discontiguous210,5636 -'$discontiguous'(P,M) :-$discontiguous210,5636 -'$check_multifile_pred'(Hd, M, _) :-$check_multifile_pred216,5771 -'$check_multifile_pred'(Hd, M, _) :-$check_multifile_pred216,5771 -'$check_multifile_pred'(Hd, M, _) :-$check_multifile_pred216,5771 -'$check_multifile_pred'(Hd, M, Fl) :-$check_multifile_pred221,5929 -'$check_multifile_pred'(Hd, M, Fl) :-$check_multifile_pred221,5929 -'$check_multifile_pred'(Hd, M, Fl) :-$check_multifile_pred221,5929 -'$warn_mfile'(F,A) :-$warn_mfile228,6127 -'$warn_mfile'(F,A) :-$warn_mfile228,6127 -'$warn_mfile'(F,A) :-$warn_mfile228,6127 -'$is_public'(T, Mod) :-$is_public236,6380 -'$is_public'(T, Mod) :-$is_public236,6380 -'$is_public'(T, Mod) :-$is_public236,6380 -'$is_public'(T, Mod) :-$is_public238,6469 -'$is_public'(T, Mod) :-$is_public238,6469 -'$is_public'(T, Mod) :-$is_public238,6469 -'$module_transparent'((P,Ps), M) :- !,$module_transparent258,7074 -'$module_transparent'((P,Ps), M) :- !,$module_transparent258,7074 -'$module_transparent'((P,Ps), M) :- !,$module_transparent258,7074 -'$module_transparent'(M:D, _) :- !,$module_transparent261,7174 -'$module_transparent'(M:D, _) :- !,$module_transparent261,7174 -'$module_transparent'(M:D, _) :- !,$module_transparent261,7174 -'$module_transparent'(F/N, M) :-$module_transparent263,7240 -'$module_transparent'(F/N, M) :-$module_transparent263,7240 -'$module_transparent'(F/N, M) :-$module_transparent263,7240 -'$module_transparent'(F/N, M) :-$module_transparent265,7309 -'$module_transparent'(F/N, M) :-$module_transparent265,7309 -'$module_transparent'(F/N, M) :-$module_transparent265,7309 - -packages/python/swig/yap4py/prolog/pl/preddyns.yap,7877 -asserta(Clause) :-asserta21,405 -asserta(Clause) :-asserta21,405 -asserta(Clause) :-asserta21,405 -assertz(Clause) :-assertz34,871 -assertz(Clause) :-assertz34,871 -assertz(Clause) :-assertz34,871 -assert(Clause) :-assert50,1493 -assert(Clause) :-assert50,1493 -assert(Clause) :-assert50,1493 -'$assert'(Clause, Where, R) :-$assert53,1547 -'$assert'(Clause, Where, R) :-$assert53,1547 -'$assert'(Clause, Where, R) :-$assert53,1547 -asserta(Clause, Ref) :-asserta67,1983 -asserta(Clause, Ref) :-asserta67,1983 -asserta(Clause, Ref) :-asserta67,1983 -assertz(Clause, Ref) :-assertz80,2339 -assertz(Clause, Ref) :-assertz80,2339 -assertz(Clause, Ref) :-assertz80,2339 -assert(Clause, Ref) :-assert93,2724 -assert(Clause, Ref) :-assert93,2724 -assert(Clause, Ref) :-assert93,2724 -'$assertz_dynamic'(X, C, C0, Mod) :-$assertz_dynamic97,2786 -'$assertz_dynamic'(X, C, C0, Mod) :-$assertz_dynamic97,2786 -'$assertz_dynamic'(X, C, C0, Mod) :-$assertz_dynamic97,2786 -'$assertz_dynamic'(X,C,C0,Mod) :-$assertz_dynamic102,2916 -'$assertz_dynamic'(X,C,C0,Mod) :-$assertz_dynamic102,2916 -'$assertz_dynamic'(X,C,C0,Mod) :-$assertz_dynamic102,2916 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses117,3194 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses117,3194 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses117,3194 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses121,3307 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses121,3307 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses121,3307 -'$remove_all_d_clauses'(_,_).$remove_all_d_clauses123,3379 -'$remove_all_d_clauses'(_,_)./p,predicate,predicate definition123,3379 -'$remove_all_d_clauses'(_,_).$remove_all_d_clauses123,3379 -'$erase_all_mf_dynamic'(Na,A,M) :-$erase_all_mf_dynamic125,3410 -'$erase_all_mf_dynamic'(Na,A,M) :-$erase_all_mf_dynamic125,3410 -'$erase_all_mf_dynamic'(Na,A,M) :-$erase_all_mf_dynamic125,3410 -'$erase_all_mf_dynamic'(_,_,_).$erase_all_mf_dynamic131,3564 -'$erase_all_mf_dynamic'(_,_,_)./p,predicate,predicate definition131,3564 -'$erase_all_mf_dynamic'(_,_,_).$erase_all_mf_dynamic131,3564 -'$assertat_d'(asserta,Head,Body,C0,Mod,R) :- !,$assertat_d133,3597 -'$assertat_d'(asserta,Head,Body,C0,Mod,R) :- !,$assertat_d133,3597 -'$assertat_d'(asserta,Head,Body,C0,Mod,R) :- !,$assertat_d133,3597 -'$assertat_d'(assertz,Head,Body,C0,Mod,R) :-$assertat_d151,4131 -'$assertat_d'(assertz,Head,Body,C0,Mod,R) :-$assertat_d151,4131 -'$assertat_d'(assertz,Head,Body,C0,Mod,R) :-$assertat_d151,4131 -retract( C ) :-retract180,4936 -retract( C ) :-retract180,4936 -retract( C ) :-retract180,4936 -'$retract2'(F, H, M, B, R) :-$retract2186,5096 -'$retract2'(F, H, M, B, R) :-$retract2186,5096 -'$retract2'(F, H, M, B, R) :-$retract2186,5096 -'$retract2'(F, H, M, B, R) :-$retract2192,5374 -'$retract2'(F, H, M, B, R) :-$retract2192,5374 -'$retract2'(F, H, M, B, R) :-$retract2192,5374 -'$retract2'(_, H,M,_,_) :-$retract2198,5658 -'$retract2'(_, H,M,_,_) :-$retract2198,5658 -'$retract2'(_, H,M,_,_) :-$retract2198,5658 -'$retract2'(_, H,M,B,_) :-$retract2203,5756 -'$retract2'(_, H,M,B,_) :-$retract2203,5756 -'$retract2'(_, H,M,B,_) :-$retract2203,5756 -retract(M:C,R) :- !,retract217,6054 -retract(M:C,R) :- !,retract217,6054 -retract(M:C,R) :- !,retract217,6054 -'$retract'(C, M0, R) :-$retract221,6138 -'$retract'(C, M0, R) :-$retract221,6138 -'$retract'(C, M0, R) :-$retract221,6138 -'$retract'(C,M0,R) :-$retract228,6288 -'$retract'(C,M0,R) :-$retract228,6288 -'$retract'(C,M0,R) :-$retract228,6288 -'$retract'(C,M,_) :-$retract232,6398 -'$retract'(C,M,_) :-$retract232,6398 -'$retract'(C,M,_) :-$retract232,6398 -'$fetch_predicate_indicator_from_clause'((C :- _), M:Na/Ar) :-$fetch_predicate_indicator_from_clause237,6569 -'$fetch_predicate_indicator_from_clause'((C :- _), M:Na/Ar) :-$fetch_predicate_indicator_from_clause237,6569 -'$fetch_predicate_indicator_from_clause'((C :- _), M:Na/Ar) :-$fetch_predicate_indicator_from_clause237,6569 -'$fetch_predicate_indicator_from_clause'(C, M:Na/Ar) :-$fetch_predicate_indicator_from_clause241,6695 -'$fetch_predicate_indicator_from_clause'(C, M:Na/Ar) :-$fetch_predicate_indicator_from_clause241,6695 -'$fetch_predicate_indicator_from_clause'(C, M:Na/Ar) :-$fetch_predicate_indicator_from_clause241,6695 -retractall(M:V) :- !,retractall253,6959 -retractall(M:V) :- !,retractall253,6959 -retractall(M:V) :- !,retractall253,6959 -retractall(V) :-retractall255,7002 -retractall(V) :-retractall255,7002 -retractall(V) :-retractall255,7002 -'$retractall'(V,M) :- var(V), !,$retractall259,7064 -'$retractall'(V,M) :- var(V), !,$retractall259,7064 -'$retractall'(V,M) :- var(V), !,$retractall259,7064 -'$retractall'(M:V,_) :- !,$retractall261,7145 -'$retractall'(M:V,_) :- !,$retractall261,7145 -'$retractall'(M:V,_) :- !,$retractall261,7145 -'$retractall'(T,M) :-$retractall263,7193 -'$retractall'(T,M) :-$retractall263,7193 -'$retractall'(T,M) :-$retractall263,7193 -'$retractall_lu'(T,M) :-$retractall_lu286,7690 -'$retractall_lu'(T,M) :-$retractall_lu286,7690 -'$retractall_lu'(T,M) :-$retractall_lu286,7690 -'$retractall_lu'(T,M) :-$retractall_lu289,7782 -'$retractall_lu'(T,M) :-$retractall_lu289,7782 -'$retractall_lu'(T,M) :-$retractall_lu289,7782 -'$retractall_lu'(_,_).$retractall_lu293,7857 -'$retractall_lu'(_,_)./p,predicate,predicate definition293,7857 -'$retractall_lu'(_,_).$retractall_lu293,7857 -'$retractall_lu_mf'(T,M) :-$retractall_lu_mf295,7881 -'$retractall_lu_mf'(T,M) :-$retractall_lu_mf295,7881 -'$retractall_lu_mf'(T,M) :-$retractall_lu_mf295,7881 -'$retractall_lu_mf'(_,_).$retractall_lu_mf300,8031 -'$retractall_lu_mf'(_,_)./p,predicate,predicate definition300,8031 -'$retractall_lu_mf'(_,_).$retractall_lu_mf300,8031 -'$erase_all_clauses_for_dynamic'(T, M) :-$erase_all_clauses_for_dynamic302,8058 -'$erase_all_clauses_for_dynamic'(T, M) :-$erase_all_clauses_for_dynamic302,8058 -'$erase_all_clauses_for_dynamic'(T, M) :-$erase_all_clauses_for_dynamic302,8058 -'$erase_all_clauses_for_dynamic'(T,M) :-$erase_all_clauses_for_dynamic304,8147 -'$erase_all_clauses_for_dynamic'(T,M) :-$erase_all_clauses_for_dynamic304,8147 -'$erase_all_clauses_for_dynamic'(T,M) :-$erase_all_clauses_for_dynamic304,8147 -'$erase_all_clauses_for_dynamic'(_,_).$erase_all_clauses_for_dynamic306,8218 -'$erase_all_clauses_for_dynamic'(_,_)./p,predicate,predicate definition306,8218 -'$erase_all_clauses_for_dynamic'(_,_).$erase_all_clauses_for_dynamic306,8218 -'$abolishd'(T, M) :-$abolishd309,8286 -'$abolishd'(T, M) :-$abolishd309,8286 -'$abolishd'(T, M) :-$abolishd309,8286 -'$abolishd'(T, M) :-$abolishd316,8438 -'$abolishd'(T, M) :-$abolishd316,8438 -'$abolishd'(T, M) :-$abolishd316,8438 -'$abolishd'(T, M) :-$abolishd320,8524 -'$abolishd'(T, M) :-$abolishd320,8524 -'$abolishd'(T, M) :-$abolishd320,8524 -'$abolishd'(T, M) :-$abolishd322,8575 -'$abolishd'(T, M) :-$abolishd322,8575 -'$abolishd'(T, M) :-$abolishd322,8575 -'$abolishd'(_, _).$abolishd324,8625 -'$abolishd'(_, _)./p,predicate,predicate definition324,8625 -'$abolishd'(_, _).$abolishd324,8625 -dynamic_predicate(P,Sem) :-dynamic_predicate336,8843 -dynamic_predicate(P,Sem) :-dynamic_predicate336,8843 -dynamic_predicate(P,Sem) :-dynamic_predicate336,8843 -dynamic_predicate(P,Sem) :-dynamic_predicate338,8917 -dynamic_predicate(P,Sem) :-dynamic_predicate338,8917 -dynamic_predicate(P,Sem) :-dynamic_predicate338,8917 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics345,9104 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics345,9104 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics345,9104 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics348,9195 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics348,9195 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics348,9195 - -packages/python/swig/yap4py/prolog/pl/preds.yap,22716 -assert_static(C) :-assert_static109,3296 -assert_static(C) :-assert_static109,3296 -assert_static(C) :-assert_static109,3296 -asserta_static(C) :-asserta_static119,3454 -asserta_static(C) :-asserta_static119,3454 -asserta_static(C) :-asserta_static119,3454 -assertz_static(C) :-assertz_static139,3861 -assertz_static(C) :-assertz_static139,3861 -assertz_static(C) :-assertz_static139,3861 -clause(V0,Q) :-clause155,4266 -clause(V0,Q) :-clause155,4266 -clause(V0,Q) :-clause155,4266 -clause(P,Q,R) :-clause167,4634 -clause(P,Q,R) :-clause167,4634 -clause(P,Q,R) :-clause167,4634 -clause(V0,Q,R) :-clause180,4882 -clause(V0,Q,R) :-clause180,4882 -clause(V0,Q,R) :-clause180,4882 -'$clause'(P,M,Q,R) :-$clause185,4990 -'$clause'(P,M,Q,R) :-$clause185,4990 -'$clause'(P,M,Q,R) :-$clause185,4990 -'$clause'(P,M,Q,R) :-$clause190,5089 -'$clause'(P,M,Q,R) :-$clause190,5089 -'$clause'(P,M,Q,R) :-$clause190,5089 -'$clause'(P,M,Q,R) :-$clause193,5174 -'$clause'(P,M,Q,R) :-$clause193,5174 -'$clause'(P,M,Q,R) :-$clause193,5174 -'$clause'(P,M,Q,R) :-$clause196,5248 -'$clause'(P,M,Q,R) :-$clause196,5248 -'$clause'(P,M,Q,R) :-$clause196,5248 -'$clause'(P,M,Q,R) :-$clause199,5327 -'$clause'(P,M,Q,R) :-$clause199,5327 -'$clause'(P,M,Q,R) :-$clause199,5327 -nth_clause(V,I,R) :-nth_clause233,6157 -nth_clause(V,I,R) :-nth_clause233,6157 -nth_clause(V,I,R) :-nth_clause233,6157 -'$nth_clause'(P,M,I,R) :-$nth_clause238,6237 -'$nth_clause'(P,M,I,R) :-$nth_clause238,6237 -'$nth_clause'(P,M,I,R) :-$nth_clause238,6237 -'$nth_clause'(P,M,I,R) :-$nth_clause242,6335 -'$nth_clause'(P,M,I,R) :-$nth_clause242,6335 -'$nth_clause'(P,M,I,R) :-$nth_clause242,6335 -abolish(N0,A) :-abolish252,6656 -abolish(N0,A) :-abolish252,6656 -abolish(N0,A) :-abolish252,6656 -'$abolish'(N,A,M) :- var(N), !,$abolish256,6726 -'$abolish'(N,A,M) :- var(N), !,$abolish256,6726 -'$abolish'(N,A,M) :- var(N), !,$abolish256,6726 -'$abolish'(N,A,M) :- var(A), !,$abolish258,6808 -'$abolish'(N,A,M) :- var(A), !,$abolish258,6808 -'$abolish'(N,A,M) :- var(A), !,$abolish258,6808 -'$abolish'(N,A,M) :-$abolish260,6890 -'$abolish'(N,A,M) :-$abolish260,6890 -'$abolish'(N,A,M) :-$abolish260,6890 -'$abolish'(N,A,M) :- functor(T,N,A),$abolish263,6993 -'$abolish'(N,A,M) :- functor(T,N,A),$abolish263,6993 -'$abolish'(N,A,M) :- functor(T,N,A),$abolish263,6993 -abolish(X0) :-abolish279,7546 -abolish(X0) :-abolish279,7546 -abolish(X0) :-abolish279,7546 -'$abolish'(X,M) :-$abolish283,7603 -'$abolish'(X,M) :-$abolish283,7603 -'$abolish'(X,M) :-$abolish283,7603 -'$abolish'(X, M) :-$abolish286,7688 -'$abolish'(X, M) :-$abolish286,7688 -'$abolish'(X, M) :-$abolish286,7688 -'$new_abolish'(V,M) :- var(V), !,$new_abolish289,7731 -'$new_abolish'(V,M) :- var(V), !,$new_abolish289,7731 -'$new_abolish'(V,M) :- var(V), !,$new_abolish289,7731 -'$new_abolish'(A/V,M) :- atom(A), var(V), !,$new_abolish291,7785 -'$new_abolish'(A/V,M) :- atom(A), var(V), !,$new_abolish291,7785 -'$new_abolish'(A/V,M) :- atom(A), var(V), !,$new_abolish291,7785 -'$new_abolish'(Na//Ar1, M) :-$new_abolish293,7858 -'$new_abolish'(Na//Ar1, M) :-$new_abolish293,7858 -'$new_abolish'(Na//Ar1, M) :-$new_abolish293,7858 -'$new_abolish'(Na/Ar, M) :-$new_abolish298,7949 -'$new_abolish'(Na/Ar, M) :-$new_abolish298,7949 -'$new_abolish'(Na/Ar, M) :-$new_abolish298,7949 -'$new_abolish'(Na/Ar, M) :- % succeed for undefined procedures.$new_abolish302,8043 -'$new_abolish'(Na/Ar, M) :- % succeed for undefined procedures.$new_abolish302,8043 -'$new_abolish'(Na/Ar, M) :- % succeed for undefined procedures.$new_abolish302,8043 -'$new_abolish'(Na/Ar, M) :-$new_abolish305,8152 -'$new_abolish'(Na/Ar, M) :-$new_abolish305,8152 -'$new_abolish'(Na/Ar, M) :-$new_abolish305,8152 -'$new_abolish'(T, M) :-$new_abolish307,8260 -'$new_abolish'(T, M) :-$new_abolish307,8260 -'$new_abolish'(T, M) :-$new_abolish307,8260 -'$abolish_all'(M) :-$abolish_all310,8347 -'$abolish_all'(M) :-$abolish_all310,8347 -'$abolish_all'(M) :-$abolish_all310,8347 -'$abolish_all'(_).$abolish_all315,8473 -'$abolish_all'(_)./p,predicate,predicate definition315,8473 -'$abolish_all'(_).$abolish_all315,8473 -'$abolish_all_atoms'(Na, M) :-$abolish_all_atoms317,8493 -'$abolish_all_atoms'(Na, M) :-$abolish_all_atoms317,8493 -'$abolish_all_atoms'(Na, M) :-$abolish_all_atoms317,8493 -'$abolish_all_atoms'(_,_).$abolish_all_atoms322,8626 -'$abolish_all_atoms'(_,_)./p,predicate,predicate definition322,8626 -'$abolish_all_atoms'(_,_).$abolish_all_atoms322,8626 -'$check_error_in_predicate_indicator'(V, Msg) :-$check_error_in_predicate_indicator324,8654 -'$check_error_in_predicate_indicator'(V, Msg) :-$check_error_in_predicate_indicator324,8654 -'$check_error_in_predicate_indicator'(V, Msg) :-$check_error_in_predicate_indicator324,8654 -'$check_error_in_predicate_indicator'(M:S, Msg) :- !,$check_error_in_predicate_indicator327,8755 -'$check_error_in_predicate_indicator'(M:S, Msg) :- !,$check_error_in_predicate_indicator327,8755 -'$check_error_in_predicate_indicator'(M:S, Msg) :- !,$check_error_in_predicate_indicator327,8755 -'$check_error_in_predicate_indicator'(S, Msg) :-$check_error_in_predicate_indicator330,8892 -'$check_error_in_predicate_indicator'(S, Msg) :-$check_error_in_predicate_indicator330,8892 -'$check_error_in_predicate_indicator'(S, Msg) :-$check_error_in_predicate_indicator330,8892 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator334,9021 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator334,9021 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator334,9021 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator337,9126 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator337,9126 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator337,9126 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator340,9235 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator340,9235 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator340,9235 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator343,9340 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator343,9340 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator343,9340 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator346,9455 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator346,9455 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator346,9455 -'$check_error_in_module'(M, Msg) :-$check_error_in_module354,9741 -'$check_error_in_module'(M, Msg) :-$check_error_in_module354,9741 -'$check_error_in_module'(M, Msg) :-$check_error_in_module354,9741 -'$check_error_in_module'(M, Msg) :-$check_error_in_module357,9829 -'$check_error_in_module'(M, Msg) :-$check_error_in_module357,9829 -'$check_error_in_module'(M, Msg) :-$check_error_in_module357,9829 -'$old_abolish'(V,M) :- var(V), !,$old_abolish361,9921 -'$old_abolish'(V,M) :- var(V), !,$old_abolish361,9921 -'$old_abolish'(V,M) :- var(V), !,$old_abolish361,9921 -'$old_abolish'(N/A, M) :- !,$old_abolish367,10095 -'$old_abolish'(N/A, M) :- !,$old_abolish367,10095 -'$old_abolish'(N/A, M) :- !,$old_abolish367,10095 -'$old_abolish'(A,M) :- atom(A), !,$old_abolish369,10146 -'$old_abolish'(A,M) :- atom(A), !,$old_abolish369,10146 -'$old_abolish'(A,M) :- atom(A), !,$old_abolish369,10146 -'$old_abolish'([], _) :- !.$old_abolish375,10327 -'$old_abolish'([], _) :- !.$old_abolish375,10327 -'$old_abolish'([], _) :- !.$old_abolish375,10327 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M)./p,predicate,predicate definition376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish376,10355 -'$old_abolish'(T, M) :-$old_abolish377,10431 -'$old_abolish'(T, M) :-$old_abolish377,10431 -'$old_abolish'(T, M) :-$old_abolish377,10431 -'$abolish_all_old'(M) :-$abolish_all_old380,10518 -'$abolish_all_old'(M) :-$abolish_all_old380,10518 -'$abolish_all_old'(M) :-$abolish_all_old380,10518 -'$abolish_all_old'(_).$abolish_all_old385,10640 -'$abolish_all_old'(_)./p,predicate,predicate definition385,10640 -'$abolish_all_old'(_).$abolish_all_old385,10640 -'$abolish_all_atoms_old'(Na, M) :-$abolish_all_atoms_old387,10664 -'$abolish_all_atoms_old'(Na, M) :-$abolish_all_atoms_old387,10664 -'$abolish_all_atoms_old'(Na, M) :-$abolish_all_atoms_old387,10664 -'$abolish_all_atoms_old'(_,_).$abolish_all_atoms_old392,10794 -'$abolish_all_atoms_old'(_,_)./p,predicate,predicate definition392,10794 -'$abolish_all_atoms_old'(_,_).$abolish_all_atoms_old392,10794 -'$abolishs'(G, M) :- '$system_predicate'(G,M), !,$abolishs394,10826 -'$abolishs'(G, M) :- '$system_predicate'(G,M), !,$abolishs394,10826 -'$abolishs'(G, M) :- '$system_predicate'(G,M), !,$abolishs394,10826 -'$abolishs'(G, Module) :-$abolishs397,10981 -'$abolishs'(G, Module) :-$abolishs397,10981 -'$abolishs'(G, Module) :-$abolishs397,10981 -'$abolishs'(G, M) :-$abolishs402,11191 -'$abolishs'(G, M) :-$abolishs402,11191 -'$abolishs'(G, M) :-$abolishs402,11191 -'$abolishs'(T, M) :-$abolishs409,11353 -'$abolishs'(T, M) :-$abolishs409,11353 -'$abolishs'(T, M) :-$abolishs409,11353 -'$abolishs'(G, M) :-$abolishs413,11441 -'$abolishs'(G, M) :-$abolishs413,11441 -'$abolishs'(G, M) :-$abolishs413,11441 -'$abolishs'(_, _).$abolishs415,11493 -'$abolishs'(_, _)./p,predicate,predicate definition415,11493 -'$abolishs'(_, _).$abolishs415,11493 -stash_predicate(P0) :-stash_predicate422,11742 -stash_predicate(P0) :-stash_predicate422,11742 -stash_predicate(P0) :-stash_predicate422,11742 -'$stash_predicate2'(V, M) :- var(V), !,$stash_predicate2426,11819 -'$stash_predicate2'(V, M) :- var(V), !,$stash_predicate2426,11819 -'$stash_predicate2'(V, M) :- var(V), !,$stash_predicate2426,11819 -'$stash_predicate2'(N/A, M) :- !,$stash_predicate2428,11915 -'$stash_predicate2'(N/A, M) :- !,$stash_predicate2428,11915 -'$stash_predicate2'(N/A, M) :- !,$stash_predicate2428,11915 -'$stash_predicate2'(PredDesc, M) :-$stash_predicate2431,11994 -'$stash_predicate2'(PredDesc, M) :-$stash_predicate2431,11994 -'$stash_predicate2'(PredDesc, M) :-$stash_predicate2431,11994 -hide_predicate(P0) :-hide_predicate439,12239 -hide_predicate(P0) :-hide_predicate439,12239 -hide_predicate(P0) :-hide_predicate439,12239 -predicate_property(Pred,Prop) :-predicate_property487,13372 -predicate_property(Pred,Prop) :-predicate_property487,13372 -predicate_property(Pred,Prop) :-predicate_property487,13372 -'$predicate_property2'(Pred, Prop, Mod) :-$predicate_property2491,13486 -'$predicate_property2'(Pred, Prop, Mod) :-$predicate_property2491,13486 -'$predicate_property2'(Pred, Prop, Mod) :-$predicate_property2491,13486 -'$predicate_property2'(Pred,Prop,M0) :-$predicate_property2495,13615 -'$predicate_property2'(Pred,Prop,M0) :-$predicate_property2495,13615 -'$predicate_property2'(Pred,Prop,M0) :-$predicate_property2495,13615 -'$predicate_property2'(M:Pred,Prop,_) :- !,$predicate_property2502,13913 -'$predicate_property2'(M:Pred,Prop,_) :- !,$predicate_property2502,13913 -'$predicate_property2'(M:Pred,Prop,_) :- !,$predicate_property2502,13913 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2504,13995 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2504,13995 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2504,13995 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2507,14109 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2507,14109 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2507,14109 -'$generate_all_preds_from_mod'(Pred, M, M) :-$generate_all_preds_from_mod516,14295 -'$generate_all_preds_from_mod'(Pred, M, M) :-$generate_all_preds_from_mod516,14295 -'$generate_all_preds_from_mod'(Pred, M, M) :-$generate_all_preds_from_mod516,14295 -'$generate_all_preds_from_mod'(Pred, SourceMod, Mod) :-$generate_all_preds_from_mod518,14378 -'$generate_all_preds_from_mod'(Pred, SourceMod, Mod) :-$generate_all_preds_from_mod518,14378 -'$generate_all_preds_from_mod'(Pred, SourceMod, Mod) :-$generate_all_preds_from_mod518,14378 -'$predicate_property'(P,M,_,built_in) :-$predicate_property522,14535 -'$predicate_property'(P,M,_,built_in) :-$predicate_property522,14535 -'$predicate_property'(P,M,_,built_in) :-$predicate_property522,14535 -'$predicate_property'(P,M,_,source) :-$predicate_property524,14606 -'$predicate_property'(P,M,_,source) :-$predicate_property524,14606 -'$predicate_property'(P,M,_,source) :-$predicate_property524,14606 -'$predicate_property'(P,M,_,tabled) :-$predicate_property527,14699 -'$predicate_property'(P,M,_,tabled) :-$predicate_property527,14699 -'$predicate_property'(P,M,_,tabled) :-$predicate_property527,14699 -'$predicate_property'(P,M,_,dynamic) :-$predicate_property530,14792 -'$predicate_property'(P,M,_,dynamic) :-$predicate_property530,14792 -'$predicate_property'(P,M,_,dynamic) :-$predicate_property530,14792 -'$predicate_property'(P,M,_,static) :-$predicate_property532,14853 -'$predicate_property'(P,M,_,static) :-$predicate_property532,14853 -'$predicate_property'(P,M,_,static) :-$predicate_property532,14853 -'$predicate_property'(P,M,_,meta_predicate(Q)) :-$predicate_property535,14939 -'$predicate_property'(P,M,_,meta_predicate(Q)) :-$predicate_property535,14939 -'$predicate_property'(P,M,_,meta_predicate(Q)) :-$predicate_property535,14939 -'$predicate_property'(P,M,_,multifile) :-$predicate_property538,15046 -'$predicate_property'(P,M,_,multifile) :-$predicate_property538,15046 -'$predicate_property'(P,M,_,multifile) :-$predicate_property538,15046 -'$predicate_property'(P,M,_,public) :-$predicate_property540,15111 -'$predicate_property'(P,M,_,public) :-$predicate_property540,15111 -'$predicate_property'(P,M,_,public) :-$predicate_property540,15111 -'$predicate_property'(P,M,_,thread_local) :-$predicate_property542,15170 -'$predicate_property'(P,M,_,thread_local) :-$predicate_property542,15170 -'$predicate_property'(P,M,_,thread_local) :-$predicate_property542,15170 -'$predicate_property'(P,M,M,exported) :-$predicate_property544,15241 -'$predicate_property'(P,M,M,exported) :-$predicate_property544,15241 -'$predicate_property'(P,M,M,exported) :-$predicate_property544,15241 -'$predicate_property'(P,Mod,_,number_of_clauses(NCl)) :-$predicate_property548,15392 -'$predicate_property'(P,Mod,_,number_of_clauses(NCl)) :-$predicate_property548,15392 -'$predicate_property'(P,Mod,_,number_of_clauses(NCl)) :-$predicate_property548,15392 -'$predicate_property'(P,Mod,_,file(F)) :-$predicate_property550,15483 -'$predicate_property'(P,Mod,_,file(F)) :-$predicate_property550,15483 -'$predicate_property'(P,Mod,_,file(F)) :-$predicate_property550,15483 -predicate_statistics(V,NCls,Sz,ISz) :- var(V), !,predicate_statistics562,15849 -predicate_statistics(V,NCls,Sz,ISz) :- var(V), !,predicate_statistics562,15849 -predicate_statistics(V,NCls,Sz,ISz) :- var(V), !,predicate_statistics562,15849 -predicate_statistics(P0,NCls,Sz,ISz) :-predicate_statistics564,15970 -predicate_statistics(P0,NCls,Sz,ISz) :-predicate_statistics564,15970 -predicate_statistics(P0,NCls,Sz,ISz) :-predicate_statistics564,15970 -'$predicate_statistics'(M:P,_,NCls,Sz,ISz) :- !,$predicate_statistics568,16079 -'$predicate_statistics'(M:P,_,NCls,Sz,ISz) :- !,$predicate_statistics568,16079 -'$predicate_statistics'(M:P,_,NCls,Sz,ISz) :- !,$predicate_statistics568,16079 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics570,16171 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics570,16171 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics570,16171 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics573,16282 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics573,16282 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics573,16282 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics575,16359 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics575,16359 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics575,16359 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics577,16426 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics577,16426 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics577,16426 -predicate_erased_statistics(P,NCls,Sz,ISz) :-predicate_erased_statistics589,16860 -predicate_erased_statistics(P,NCls,Sz,ISz) :-predicate_erased_statistics589,16860 -predicate_erased_statistics(P,NCls,Sz,ISz) :-predicate_erased_statistics589,16860 -predicate_erased_statistics(P0,NCls,Sz,ISz) :-predicate_erased_statistics593,16995 -predicate_erased_statistics(P0,NCls,Sz,ISz) :-predicate_erased_statistics593,16995 -predicate_erased_statistics(P0,NCls,Sz,ISz) :-predicate_erased_statistics593,16995 -current_predicate(A,T0) :-current_predicate601,17251 -current_predicate(A,T0) :-current_predicate601,17251 -current_predicate(A,T0) :-current_predicate601,17251 -system_predicate(P0) :-system_predicate616,17626 -system_predicate(P0) :-system_predicate616,17626 -system_predicate(P0) :-system_predicate616,17626 -system_predicate(A, P0) :-system_predicate666,18898 -system_predicate(A, P0) :-system_predicate666,18898 -system_predicate(A, P0) :-system_predicate666,18898 -current_predicate(F0) :-current_predicate686,19438 -current_predicate(F0) :-current_predicate686,19438 -current_predicate(F0) :-current_predicate686,19438 -'$c_i_predicate'( A/N, M ) :-$c_i_predicate691,19569 -'$c_i_predicate'( A/N, M ) :-$c_i_predicate691,19569 -'$c_i_predicate'( A/N, M ) :-$c_i_predicate691,19569 -'$c_i_predicate'( A//N, M ) :-$c_i_predicate703,19751 -'$c_i_predicate'( A//N, M ) :-$c_i_predicate703,19751 -'$c_i_predicate'( A//N, M ) :-$c_i_predicate703,19751 -current_key(A,K) :-current_key724,20159 -current_key(A,K) :-current_key724,20159 -current_key(A,K) :-current_key724,20159 -'$noprofile'(_, _).$noprofile728,20239 -'$noprofile'(_, _)./p,predicate,predicate definition728,20239 -'$noprofile'(_, _).$noprofile728,20239 -'$ifunctor'(Pred,Na,Ar) :-$ifunctor730,20260 -'$ifunctor'(Pred,Na,Ar) :-$ifunctor730,20260 -'$ifunctor'(Pred,Na,Ar) :-$ifunctor730,20260 -compile_predicates(Ps) :-compile_predicates750,20844 -compile_predicates(Ps) :-compile_predicates750,20844 -compile_predicates(Ps) :-compile_predicates750,20844 -'$compile_predicates'(V, _, Call) :-$compile_predicates754,20953 -'$compile_predicates'(V, _, Call) :-$compile_predicates754,20953 -'$compile_predicates'(V, _, Call) :-$compile_predicates754,20953 -'$compile_predicates'(M:Ps, _, Call) :-$compile_predicates757,21042 -'$compile_predicates'(M:Ps, _, Call) :-$compile_predicates757,21042 -'$compile_predicates'(M:Ps, _, Call) :-$compile_predicates757,21042 -'$compile_predicates'([], _, _).$compile_predicates759,21119 -'$compile_predicates'([], _, _)./p,predicate,predicate definition759,21119 -'$compile_predicates'([], _, _).$compile_predicates759,21119 -'$compile_predicates'([P|Ps], M, Call) :-$compile_predicates760,21152 -'$compile_predicates'([P|Ps], M, Call) :-$compile_predicates760,21152 -'$compile_predicates'([P|Ps], M, Call) :-$compile_predicates760,21152 -'$compile_predicate'(P, _M, Call) :-$compile_predicate764,21267 -'$compile_predicate'(P, _M, Call) :-$compile_predicate764,21267 -'$compile_predicate'(P, _M, Call) :-$compile_predicate764,21267 -'$compile_predicate'(M:P, _, Call) :-$compile_predicate767,21356 -'$compile_predicate'(M:P, _, Call) :-$compile_predicate767,21356 -'$compile_predicate'(M:P, _, Call) :-$compile_predicate767,21356 -'$compile_predicate'(Na/Ar, Mod, _Call) :-$compile_predicate769,21429 -'$compile_predicate'(Na/Ar, Mod, _Call) :-$compile_predicate769,21429 -'$compile_predicate'(Na/Ar, Mod, _Call) :-$compile_predicate769,21429 -'$add_all'([], _).$add_all775,21575 -'$add_all'([], _)./p,predicate,predicate definition775,21575 -'$add_all'([], _).$add_all775,21575 -'$add_all'([[G|B]|Cls], Mod) :-$add_all776,21594 -'$add_all'([[G|B]|Cls], Mod) :-$add_all776,21594 -'$add_all'([[G|B]|Cls], Mod) :-$add_all776,21594 -clause_property(ClauseRef, file(FileName)) :-clause_property781,21679 -clause_property(ClauseRef, file(FileName)) :-clause_property781,21679 -clause_property(ClauseRef, file(FileName)) :-clause_property781,21679 -clause_property(ClauseRef, source(FileName)) :-clause_property786,21859 -clause_property(ClauseRef, source(FileName)) :-clause_property786,21859 -clause_property(ClauseRef, source(FileName)) :-clause_property786,21859 -clause_property(ClauseRef, line_count(LineNumber)) :-clause_property791,22041 -clause_property(ClauseRef, line_count(LineNumber)) :-clause_property791,22041 -clause_property(ClauseRef, line_count(LineNumber)) :-clause_property791,22041 -clause_property(ClauseRef, fact) :-clause_property794,22158 -clause_property(ClauseRef, fact) :-clause_property794,22158 -clause_property(ClauseRef, fact) :-clause_property794,22158 -clause_property(ClauseRef, erased) :-clause_property796,22234 -clause_property(ClauseRef, erased) :-clause_property796,22234 -clause_property(ClauseRef, erased) :-clause_property796,22234 -clause_property(ClauseRef, predicate(PredicateIndicator)) :-clause_property798,22312 -clause_property(ClauseRef, predicate(PredicateIndicator)) :-clause_property798,22312 -clause_property(ClauseRef, predicate(PredicateIndicator)) :-clause_property798,22312 -'$set_predicate_attribute'(M:N/Ar, Flag, V) :-$set_predicate_attribute801,22428 -'$set_predicate_attribute'(M:N/Ar, Flag, V) :-$set_predicate_attribute801,22428 -'$set_predicate_attribute'(M:N/Ar, Flag, V) :-$set_predicate_attribute801,22428 -'$set_flag'(P, M, trace, off) :-$set_flag808,22586 -'$set_flag'(P, M, trace, off) :-$set_flag808,22586 -'$set_flag'(P, M, trace, off) :-$set_flag808,22586 - -packages/python/swig/yap4py/prolog/pl/profile.yap,6594 -list_profile :-list_profile42,1394 -list_profile(Module) :-list_profile49,1690 -list_profile(Module) :-list_profile49,1690 -list_profile(Module) :-list_profile49,1690 -write_profile_data([]).write_profile_data56,1991 -write_profile_data([]).write_profile_data56,1991 -write_profile_data([D-[M:P|R]|SLP]) :-write_profile_data57,2015 -write_profile_data([D-[M:P|R]|SLP]) :-write_profile_data57,2015 -write_profile_data([D-[M:P|R]|SLP]) :-write_profile_data57,2015 -profile_data(M:D, Parm, Data) :-!,profile_data106,3176 -profile_data(M:D, Parm, Data) :-!,profile_data106,3176 -profile_data(M:D, Parm, Data) :-!,profile_data106,3176 -profile_data(P, Parm, Data) :-profile_data113,3337 -profile_data(P, Parm, Data) :-profile_data113,3337 -profile_data(P, Parm, Data) :-profile_data113,3337 -'$profile_data'(P, Parm, Data,M) :- var(P), !,$profile_data117,3428 -'$profile_data'(P, Parm, Data,M) :- var(P), !,$profile_data117,3428 -'$profile_data'(P, Parm, Data,M) :- var(P), !,$profile_data117,3428 -'$profile_data'(M:P, Parm, Data, _) :- !,$profile_data119,3518 -'$profile_data'(M:P, Parm, Data, _) :- !,$profile_data119,3518 -'$profile_data'(M:P, Parm, Data, _) :- !,$profile_data119,3518 -'$profile_data'(P, Parm, Data, M) :-$profile_data121,3597 -'$profile_data'(P, Parm, Data, M) :-$profile_data121,3597 -'$profile_data'(P, Parm, Data, M) :-$profile_data121,3597 -'$profile_data2'(Na/Ar,Parm,Data, M) :-$profile_data2124,3672 -'$profile_data2'(Na/Ar,Parm,Data, M) :-$profile_data2124,3672 -'$profile_data2'(Na/Ar,Parm,Data, M) :-$profile_data2124,3672 -'$profile_data_for_var'(Name/Arity, Parm, Data, M) :-$profile_data_for_var129,3801 -'$profile_data_for_var'(Name/Arity, Parm, Data, M) :-$profile_data_for_var129,3801 -'$profile_data_for_var'(Name/Arity, Parm, Data, M) :-$profile_data_for_var129,3801 -'$profile_say'('$profile'(Entries, _, _), calls, Entries).$profile_say136,4035 -'$profile_say'('$profile'(Entries, _, _), calls, Entries)./p,predicate,predicate definition136,4035 -'$profile_say'('$profile'(Entries, _, _), calls, Entries).$profile_say'('$profile136,4035 -'$profile_say'('$profile'(_, _, Backtracks), retries, Backtracks).$profile_say137,4094 -'$profile_say'('$profile'(_, _, Backtracks), retries, Backtracks)./p,predicate,predicate definition137,4094 -'$profile_say'('$profile'(_, _, Backtracks), retries, Backtracks).$profile_say'('$profile137,4094 -profile_reset :-profile_reset139,4162 -showprofres :-showprofres153,4334 -showprofres(A) :-showprofres166,4735 -showprofres(A) :-showprofres166,4735 -showprofres(A) :-showprofres166,4735 -'$check_duplicates'([]).$check_duplicates189,5528 -'$check_duplicates'([])./p,predicate,predicate definition189,5528 -'$check_duplicates'([]).$check_duplicates189,5528 -'$check_duplicates'([A,A|ProfInfo]) :- !,$check_duplicates190,5553 -'$check_duplicates'([A,A|ProfInfo]) :- !,$check_duplicates190,5553 -'$check_duplicates'([A,A|ProfInfo]) :- !,$check_duplicates190,5553 -'$check_duplicates'([_|ProfInfo]) :-$check_duplicates193,5641 -'$check_duplicates'([_|ProfInfo]) :-$check_duplicates193,5641 -'$check_duplicates'([_|ProfInfo]) :-$check_duplicates193,5641 -'$get_all_profinfo'([],L,L,Tot,Tot) :- !.$get_all_profinfo198,5715 -'$get_all_profinfo'([],L,L,Tot,Tot) :- !.$get_all_profinfo198,5715 -'$get_all_profinfo'([],L,L,Tot,Tot) :- !.$get_all_profinfo198,5715 -'$get_all_profinfo'(Node,L0,Lf,Tot0,Totf) :-$get_all_profinfo199,5757 -'$get_all_profinfo'(Node,L0,Lf,Tot0,Totf) :-$get_all_profinfo199,5757 -'$get_all_profinfo'(Node,L0,Lf,Tot0,Totf) :-$get_all_profinfo199,5757 -'$get_ppreds'([],[]).$get_ppreds205,5993 -'$get_ppreds'([],[])./p,predicate,predicate definition205,5993 -'$get_ppreds'([],[]).$get_ppreds205,5993 -'$get_ppreds'([gprof(0,_,0)|Cls],Ps) :- !,$get_ppreds206,6015 -'$get_ppreds'([gprof(0,_,0)|Cls],Ps) :- !,$get_ppreds206,6015 -'$get_ppreds'([gprof(0,_,0)|Cls],Ps) :- !,$get_ppreds206,6015 -'$get_ppreds'([gprof(0,_,Count)|_],_) :- !,$get_ppreds208,6082 -'$get_ppreds'([gprof(0,_,Count)|_],_) :- !,$get_ppreds208,6082 -'$get_ppreds'([gprof(0,_,Count)|_],_) :- !,$get_ppreds208,6082 -'$get_ppreds'([gprof(PProfInfo,_,Count0)|Cls],[Sum-(Mod:Name/Arity)|Ps]) :-$get_ppreds210,6195 -'$get_ppreds'([gprof(PProfInfo,_,Count0)|Cls],[Sum-(Mod:Name/Arity)|Ps]) :-$get_ppreds210,6195 -'$get_ppreds'([gprof(PProfInfo,_,Count0)|Cls],[Sum-(Mod:Name/Arity)|Ps]) :-$get_ppreds210,6195 -'$get_more_ppreds'(Cls, _, Sum, Cls, NSum) :- NSum is -Sum.$get_more_ppreds219,6555 -'$get_more_ppreds'(Cls, _, Sum, Cls, NSum) :- NSum is -Sum.$get_more_ppreds219,6555 -'$get_more_ppreds'(Cls, _, Sum, Cls, NSum) :- NSum is -Sum.$get_more_ppreds219,6555 -'$display_preds'(_, _, _, N, N) :- !.$display_preds221,6616 -'$display_preds'(_, _, _, N, N) :- !.$display_preds221,6616 -'$display_preds'(_, _, _, N, N) :- !.$display_preds221,6616 -'$display_preds'([], _, _, _, _).$display_preds222,6654 -'$display_preds'([], _, _, _, _)./p,predicate,predicate definition222,6654 -'$display_preds'([], _, _, _, _).$display_preds222,6654 -'$display_preds'([0-_|_], _Tot, _SoFar, _I, _N) :- !.$display_preds223,6688 -'$display_preds'([0-_|_], _Tot, _SoFar, _I, _N) :- !.$display_preds223,6688 -'$display_preds'([0-_|_], _Tot, _SoFar, _I, _N) :- !.$display_preds223,6688 -'$display_preds'([NSum-P|Ps], Tot, SoFar, I, N) :-$display_preds224,6742 -'$display_preds'([NSum-P|Ps], Tot, SoFar, I, N) :-$display_preds224,6742 -'$display_preds'([NSum-P|Ps], Tot, SoFar, I, N) :-$display_preds224,6742 -'$sum_alls'([],Tot,Tot).$sum_alls243,7166 -'$sum_alls'([],Tot,Tot)./p,predicate,predicate definition243,7166 -'$sum_alls'([],Tot,Tot).$sum_alls243,7166 -'$sum_alls'([C-_|Preds],Tot0,Tot) :-$sum_alls244,7191 -'$sum_alls'([C-_|Preds],Tot0,Tot) :-$sum_alls244,7191 -'$sum_alls'([C-_|Preds],Tot0,Tot) :-$sum_alls244,7191 -'$add_extras_prof'(GCs, HGrows, SGrows, Mallocs, Preds0, PredsI) :-$add_extras_prof249,7277 -'$add_extras_prof'(GCs, HGrows, SGrows, Mallocs, Preds0, PredsI) :-$add_extras_prof249,7277 -'$add_extras_prof'(GCs, HGrows, SGrows, Mallocs, Preds0, PredsI) :-$add_extras_prof249,7277 -'$add_extra_prof'(0, _,Preds, Preds) :- !.$add_extra_prof255,7591 -'$add_extra_prof'(0, _,Preds, Preds) :- !.$add_extra_prof255,7591 -'$add_extra_prof'(0, _,Preds, Preds) :- !.$add_extra_prof255,7591 -'$add_extra_prof'(Ticks, Name, Preds, [NTicks-Name|Preds]) :-$add_extra_prof256,7634 -'$add_extra_prof'(Ticks, Name, Preds, [NTicks-Name|Preds]) :-$add_extra_prof256,7634 -'$add_extra_prof'(Ticks, Name, Preds, [NTicks-Name|Preds]) :-$add_extra_prof256,7634 - -packages/python/swig/yap4py/prolog/pl/protect.yap,3732 -'$visible'('$'). /* not $VAR */$visible59,1534 -'$visible'('$'). /* not $VAR *//p,predicate,predicate definition59,1534 -'$visible'('$'). /* not $VAR */$visible59,1534 -'$visible'('$VAR'). /* not $VAR */$visible60,1568 -'$visible'('$VAR'). /* not $VAR *//p,predicate,predicate definition60,1568 -'$visible'('$VAR'). /* not $VAR */$visible60,1568 -'$visible'('$dbref'). /* not stream position */$visible61,1605 -'$visible'('$dbref'). /* not stream position *//p,predicate,predicate definition61,1605 -'$visible'('$dbref'). /* not stream position */$visible61,1605 -'$visible'('$stream'). /* not $STREAM */$visible62,1655 -'$visible'('$stream'). /* not $STREAM *//p,predicate,predicate definition62,1655 -'$visible'('$stream'). /* not $STREAM */$visible62,1655 -'$visible'('$stream_position'). /* not stream position */$visible63,1698 -'$visible'('$stream_position'). /* not stream position *//p,predicate,predicate definition63,1698 -'$visible'('$stream_position'). /* not stream position */$visible63,1698 -'$visible'('$hacks').$visible64,1757 -'$visible'('$hacks')./p,predicate,predicate definition64,1757 -'$visible'('$hacks').$visible64,1757 -'$visible'('$source_location').$visible65,1779 -'$visible'('$source_location')./p,predicate,predicate definition65,1779 -'$visible'('$source_location').$visible65,1779 -'$visible'('$messages').$visible66,1811 -'$visible'('$messages')./p,predicate,predicate definition66,1811 -'$visible'('$messages').$visible66,1811 -'$visible'('$push_input_context').$visible67,1836 -'$visible'('$push_input_context')./p,predicate,predicate definition67,1836 -'$visible'('$push_input_context').$visible67,1836 -'$visible'('$pop_input_context').$visible68,1871 -'$visible'('$pop_input_context')./p,predicate,predicate definition68,1871 -'$visible'('$pop_input_context').$visible68,1871 -'$visible'('$set_source_module').$visible69,1905 -'$visible'('$set_source_module')./p,predicate,predicate definition69,1905 -'$visible'('$set_source_module').$visible69,1905 -'$visible'('$declare_module').$visible70,1939 -'$visible'('$declare_module')./p,predicate,predicate definition70,1939 -'$visible'('$declare_module').$visible70,1939 -'$visible'('$store_clause').$visible71,1970 -'$visible'('$store_clause')./p,predicate,predicate definition71,1970 -'$visible'('$store_clause').$visible71,1970 -'$visible'('$skip_list').$visible72,1999 -'$visible'('$skip_list')./p,predicate,predicate definition72,1999 -'$visible'('$skip_list').$visible72,1999 -'$visible'('$win_insert_menu_item').$visible73,2025 -'$visible'('$win_insert_menu_item')./p,predicate,predicate definition73,2025 -'$visible'('$win_insert_menu_item').$visible73,2025 -'$visible'('$set_predicate_attribute').$visible74,2062 -'$visible'('$set_predicate_attribute')./p,predicate,predicate definition74,2062 -'$visible'('$set_predicate_attribute').$visible74,2062 -'$visible'('$parse_quasi_quotations').$visible75,2102 -'$visible'('$parse_quasi_quotations')./p,predicate,predicate definition75,2102 -'$visible'('$parse_quasi_quotations').$visible75,2102 -'$visible'('$quasi_quotation').$visible76,2141 -'$visible'('$quasi_quotation')./p,predicate,predicate definition76,2141 -'$visible'('$quasi_quotation').$visible76,2141 -'$visible'('$qq_open').$visible77,2173 -'$visible'('$qq_open')./p,predicate,predicate definition77,2173 -'$visible'('$qq_open').$visible77,2173 -'$visible'('$live').$visible78,2197 -'$visible'('$live')./p,predicate,predicate definition78,2197 -'$visible'('$live').$visible78,2197 -'$visible'('$init_prolog').$visible79,2218 -'$visible'('$init_prolog')./p,predicate,predicate definition79,2218 -'$visible'('$init_prolog').$visible79,2218 - -packages/python/swig/yap4py/prolog/pl/qly.yap,21626 -save_program(File) :-save_program75,2274 -save_program(File) :-save_program75,2274 -save_program(File) :-save_program75,2274 -qsave_program(File) :-qsave_program84,2513 -qsave_program(File) :-qsave_program84,2513 -qsave_program(File) :-qsave_program84,2513 -qsave_program(File, Opts) :-qsave_program108,3117 -qsave_program(File, Opts) :-qsave_program108,3117 -qsave_program(File, Opts) :-qsave_program108,3117 -save_program(_File, Goal) :-save_program121,3528 -save_program(_File, Goal) :-save_program121,3528 -save_program(_File, Goal) :-save_program121,3528 -save_program(File, _Goal) :-save_program124,3601 -save_program(File, _Goal) :-save_program124,3601 -save_program(File, _Goal) :-save_program124,3601 -qend_program :-qend_program132,3791 -'$save_program_status'(Flags, G) :-$save_program_status137,3864 -'$save_program_status'(Flags, G) :-$save_program_status137,3864 -'$save_program_status'(Flags, G) :-$save_program_status137,3864 -'$save_program_status'(_Flags, _G).$save_program_status142,4019 -'$save_program_status'(_Flags, _G)./p,predicate,predicate definition142,4019 -'$save_program_status'(_Flags, _G).$save_program_status142,4019 -'$cvt_qsave_flags'(Flags, G) :-$cvt_qsave_flags144,4056 -'$cvt_qsave_flags'(Flags, G) :-$cvt_qsave_flags144,4056 -'$cvt_qsave_flags'(Flags, G) :-$cvt_qsave_flags144,4056 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags149,4218 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags149,4218 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags149,4218 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags152,4314 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags152,4314 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags152,4314 -'$cvt_qsave_lflags'([], _, _).$cvt_qsave_lflags155,4398 -'$cvt_qsave_lflags'([], _, _)./p,predicate,predicate definition155,4398 -'$cvt_qsave_lflags'([], _, _).$cvt_qsave_lflags155,4398 -'$cvt_qsave_lflags'([Flag|Flags], G, M) :-$cvt_qsave_lflags156,4429 -'$cvt_qsave_lflags'([Flag|Flags], G, M) :-$cvt_qsave_lflags156,4429 -'$cvt_qsave_lflags'([Flag|Flags], G, M) :-$cvt_qsave_lflags156,4429 -'$cvt_qsave_flag'(Flag, G, _) :-$cvt_qsave_flag160,4546 -'$cvt_qsave_flag'(Flag, G, _) :-$cvt_qsave_flag160,4546 -'$cvt_qsave_flag'(Flag, G, _) :-$cvt_qsave_flag160,4546 -'$cvt_qsave_flag'(local(B), G, _) :- !,$cvt_qsave_flag163,4637 -'$cvt_qsave_flag'(local(B), G, _) :- !,$cvt_qsave_flag163,4637 -'$cvt_qsave_flag'(local(B), G, _) :- !,$cvt_qsave_flag163,4637 -'$cvt_qsave_flag'(global(B), G, _) :- !,$cvt_qsave_flag172,4899 -'$cvt_qsave_flag'(global(B), G, _) :- !,$cvt_qsave_flag172,4899 -'$cvt_qsave_flag'(global(B), G, _) :- !,$cvt_qsave_flag172,4899 -'$cvt_qsave_flag'(stack(B), G, _) :- !,$cvt_qsave_flag181,5161 -'$cvt_qsave_flag'(stack(B), G, _) :- !,$cvt_qsave_flag181,5161 -'$cvt_qsave_flag'(stack(B), G, _) :- !,$cvt_qsave_flag181,5161 -'$cvt_qsave_flag'(trail(B), G, _) :- !,$cvt_qsave_flag190,5421 -'$cvt_qsave_flag'(trail(B), G, _) :- !,$cvt_qsave_flag190,5421 -'$cvt_qsave_flag'(trail(B), G, _) :- !,$cvt_qsave_flag190,5421 -'$cvt_qsave_flag'(goal(B), G, M) :- !,$cvt_qsave_flag199,5681 -'$cvt_qsave_flag'(goal(B), G, M) :- !,$cvt_qsave_flag199,5681 -'$cvt_qsave_flag'(goal(B), G, M) :- !,$cvt_qsave_flag199,5681 -'$cvt_qsave_flag'(toplevel(B), G, M) :- !,$cvt_qsave_flag207,5910 -'$cvt_qsave_flag'(toplevel(B), G, M) :- !,$cvt_qsave_flag207,5910 -'$cvt_qsave_flag'(toplevel(B), G, M) :- !,$cvt_qsave_flag207,5910 -'$cvt_qsave_flag'(init_file(B), G, M) :- !,$cvt_qsave_flag215,6147 -'$cvt_qsave_flag'(init_file(B), G, M) :- !,$cvt_qsave_flag215,6147 -'$cvt_qsave_flag'(init_file(B), G, M) :- !,$cvt_qsave_flag215,6147 -'$cvt_qsave_flag'(Opt, G, _M) :-$cvt_qsave_flag226,6568 -'$cvt_qsave_flag'(Opt, G, _M) :-$cvt_qsave_flag226,6568 -'$cvt_qsave_flag'(Opt, G, _M) :-$cvt_qsave_flag226,6568 -'$x_yap_flag'(language, V) :-$x_yap_flag230,6695 -'$x_yap_flag'(language, V) :-$x_yap_flag230,6695 -'$x_yap_flag'(language, V) :-$x_yap_flag230,6695 -'$x_yap_flag'(M:P, V) :-$x_yap_flag232,6749 -'$x_yap_flag'(M:P, V) :-$x_yap_flag232,6749 -'$x_yap_flag'(M:P, V) :-$x_yap_flag232,6749 -'$x_yap_flag'(X, V) :-$x_yap_flag235,6813 -'$x_yap_flag'(X, V) :-$x_yap_flag235,6813 -'$x_yap_flag'(X, V) :-$x_yap_flag235,6813 -qsave_file(F0) :-qsave_file400,10793 -qsave_file(F0) :-qsave_file400,10793 -qsave_file(F0) :-qsave_file400,10793 -qsave_file(F0, State) :-qsave_file411,11264 -qsave_file(F0, State) :-qsave_file411,11264 -qsave_file(F0, State) :-qsave_file411,11264 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_416,11466 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_416,11466 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_416,11466 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_422,11733 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_422,11733 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_422,11733 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_427,12037 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_427,12037 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_427,12037 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_432,12288 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_432,12288 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_432,12288 -'$qsave_file_'( File, _UserF, State ) :-$qsave_file_437,12509 -'$qsave_file_'( File, _UserF, State ) :-$qsave_file_437,12509 -'$qsave_file_'( File, _UserF, State ) :-$qsave_file_437,12509 -'$fetch_multi_files_file'(File, Multi_Files) :-$fetch_multi_files_file449,12761 -'$fetch_multi_files_file'(File, Multi_Files) :-$fetch_multi_files_file449,12761 -'$fetch_multi_files_file'(File, Multi_Files) :-$fetch_multi_files_file449,12761 -'$fetch_multi_file_file'(FileName, (M:G :- Body)) :-$fetch_multi_file_file452,12877 -'$fetch_multi_file_file'(FileName, (M:G :- Body)) :-$fetch_multi_file_file452,12877 -'$fetch_multi_file_file'(FileName, (M:G :- Body)) :-$fetch_multi_file_file452,12877 -qsave_module(Mod, OF) :-qsave_module463,13248 -qsave_module(Mod, OF) :-qsave_module463,13248 -qsave_module(Mod, OF) :-qsave_module463,13248 -qsave_module(_, _).qsave_module478,13850 -qsave_module(_, _).qsave_module478,13850 -qsave_module(Mod) :-qsave_module487,14037 -qsave_module(Mod) :-qsave_module487,14037 -qsave_module(Mod) :-qsave_module487,14037 -restore(File) :-restore496,14200 -restore(File) :-restore496,14200 -restore(File) :-restore496,14200 -qload_module(Mod) :-qload_module513,14710 -qload_module(Mod) :-qload_module513,14710 -qload_module(Mod) :-qload_module513,14710 -'$qload_module'(Mod, S, SourceModule) :-$qload_module534,15411 -'$qload_module'(Mod, S, SourceModule) :-$qload_module534,15411 -'$qload_module'(Mod, S, SourceModule) :-$qload_module534,15411 -'$qload_module'(Mod, File, SourceModule) :-$qload_module544,15680 -'$qload_module'(Mod, File, SourceModule) :-$qload_module544,15680 -'$qload_module'(Mod, File, SourceModule) :-$qload_module544,15680 -'$qload_module'(_S, Mod, _File, _SourceModule) :-$qload_module557,15989 -'$qload_module'(_S, Mod, _File, _SourceModule) :-$qload_module557,15989 -'$qload_module'(_S, Mod, _File, _SourceModule) :-$qload_module557,15989 -'$qload_module'(S, _Mod, _File, _SourceModule) :-$qload_module559,16071 -'$qload_module'(S, _Mod, _File, _SourceModule) :-$qload_module559,16071 -'$qload_module'(S, _Mod, _File, _SourceModule) :-$qload_module559,16071 -'$qload_module'(_S, Mod, File, SourceModule) :-$qload_module562,16155 -'$qload_module'(_S, Mod, File, SourceModule) :-$qload_module562,16155 -'$qload_module'(_S, Mod, File, SourceModule) :-$qload_module562,16155 -'$fetch_imports_module'(Mod, Imports) :-$fetch_imports_module578,17027 -'$fetch_imports_module'(Mod, Imports) :-$fetch_imports_module578,17027 -'$fetch_imports_module'(Mod, Imports) :-$fetch_imports_module578,17027 -'$fetch_import_module'(Mod, '$impcort'(Mod0,Mod,G0,G,N,K) - S) :-$fetch_import_module582,17177 -'$fetch_import_module'(Mod, '$impcort'(Mod0,Mod,G0,G,N,K) - S) :-$fetch_import_module582,17177 -'$fetch_import_module'(Mod, '$impcort'(Mod0,Mod,G0,G,N,K) - S) :-$fetch_import_module'(Mod, '$impcort582,17177 -'$fetch_parents_module'(Mod, Parents) :-$fetch_parents_module586,17381 -'$fetch_parents_module'(Mod, Parents) :-$fetch_parents_module586,17381 -'$fetch_parents_module'(Mod, Parents) :-$fetch_parents_module586,17381 -'$fetch_module_transparents_module'(Mod, Module_Transparents) :-$fetch_module_transparents_module589,17487 -'$fetch_module_transparents_module'(Mod, Module_Transparents) :-$fetch_module_transparents_module589,17487 -'$fetch_module_transparents_module'(Mod, Module_Transparents) :-$fetch_module_transparents_module589,17487 -'$fetch_module_transparent_module'(Mod, '$module_transparent'(F,Mod,N,P)) :-$fetch_module_transparent_module593,17703 -'$fetch_module_transparent_module'(Mod, '$module_transparent'(F,Mod,N,P)) :-$fetch_module_transparent_module593,17703 -'$fetch_module_transparent_module'(Mod, '$module_transparent'(F,Mod,N,P)) :-$fetch_module_transparent_module'(Mod, '$module_transparent593,17703 -'$fetch_meta_predicates_module'(Mod, Meta_Predicates) :-$fetch_meta_predicates_module596,17837 -'$fetch_meta_predicates_module'(Mod, Meta_Predicates) :-$fetch_meta_predicates_module596,17837 -'$fetch_meta_predicates_module'(Mod, Meta_Predicates) :-$fetch_meta_predicates_module596,17837 -'$fetch_meta_predicate_module'(Mod, '$meta_predicate'(F,Mod,N,P)) :-$fetch_meta_predicate_module600,18026 -'$fetch_meta_predicate_module'(Mod, '$meta_predicate'(F,Mod,N,P)) :-$fetch_meta_predicate_module600,18026 -'$fetch_meta_predicate_module'(Mod, '$meta_predicate'(F,Mod,N,P)) :-$fetch_meta_predicate_module'(Mod, '$meta_predicate600,18026 -'$fetch_multi_files_module'(Mod, Multi_Files) :-$fetch_multi_files_module603,18140 -'$fetch_multi_files_module'(Mod, Multi_Files) :-$fetch_multi_files_module603,18140 -'$fetch_multi_files_module'(Mod, Multi_Files) :-$fetch_multi_files_module603,18140 -'$fetch_multi_file_module'(Mod, '$defined'(FileName,Name,Arity,Mod)) :-$fetch_multi_file_module607,18310 -'$fetch_multi_file_module'(Mod, '$defined'(FileName,Name,Arity,Mod)) :-$fetch_multi_file_module607,18310 -'$fetch_multi_file_module'(Mod, '$defined'(FileName,Name,Arity,Mod)) :-$fetch_multi_file_module'(Mod, '$defined607,18310 -'$fetch_multi_file_module'(Mod, '$mf_clause'(FileName,_Name,_Arity,Mod,Clause), _) :-$fetch_multi_file_module609,18451 -'$fetch_multi_file_module'(Mod, '$mf_clause'(FileName,_Name,_Arity,Mod,Clause), _) :-$fetch_multi_file_module609,18451 -'$fetch_multi_file_module'(Mod, '$mf_clause'(FileName,_Name,_Arity,Mod,Clause), _) :-$fetch_multi_file_module'(Mod, '$mf_clause609,18451 -'$fetch_term_expansions_module'(Mod, TEs) :-$fetch_term_expansions_module613,18646 -'$fetch_term_expansions_module'(Mod, TEs) :-$fetch_term_expansions_module613,18646 -'$fetch_term_expansions_module'(Mod, TEs) :-$fetch_term_expansions_module613,18646 -'$fetch_term_expansion_module'(Mod, ( user:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module617,18818 -'$fetch_term_expansion_module'(Mod, ( user:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module617,18818 -'$fetch_term_expansion_module'(Mod, ( user:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module617,18818 -'$fetch_term_expansion_module'(Mod, ( system:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module621,19028 -'$fetch_term_expansion_module'(Mod, ( system:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module621,19028 -'$fetch_term_expansion_module'(Mod, ( system:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module621,19028 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, CurMod, GI) :- Bd )) :-$fetch_term_expansion_module625,19242 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, CurMod, GI) :- Bd )) :-$fetch_term_expansion_module625,19242 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, CurMod, GI) :- Bd )) :-$fetch_term_expansion_module625,19242 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module629,19458 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module629,19458 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module629,19458 -'$fetch_term_expansion_module'(Mod, ( system:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module633,19668 -'$fetch_term_expansion_module'(Mod, ( system:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module633,19668 -'$fetch_term_expansion_module'(Mod, ( system:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module633,19668 -'$fetch_foreigns_module'(Mod, Foreigns) :-$fetch_foreigns_module637,19821 -'$fetch_foreigns_module'(Mod, Foreigns) :-$fetch_foreigns_module637,19821 -'$fetch_foreigns_module'(Mod, Foreigns) :-$fetch_foreigns_module637,19821 -'$fetch_foreign_module'(Mod,Foreign) :-$fetch_foreign_module641,19989 -'$fetch_foreign_module'(Mod,Foreign) :-$fetch_foreign_module641,19989 -'$fetch_foreign_module'(Mod,Foreign) :-$fetch_foreign_module641,19989 -'$install_term_expansions_module'(_, []).$install_term_expansions_module644,20070 -'$install_term_expansions_module'(_, [])./p,predicate,predicate definition644,20070 -'$install_term_expansions_module'(_, []).$install_term_expansions_module644,20070 -'$install_term_expansions_module'(Mod, [TE|TEs]) :-$install_term_expansions_module645,20112 -'$install_term_expansions_module'(Mod, [TE|TEs]) :-$install_term_expansions_module645,20112 -'$install_term_expansions_module'(Mod, [TE|TEs]) :-$install_term_expansions_module645,20112 -'$install_imports_module'(_, [], Fs0) :-$install_imports_module649,20230 -'$install_imports_module'(_, [], Fs0) :-$install_imports_module649,20230 -'$install_imports_module'(_, [], Fs0) :-$install_imports_module649,20230 -'$install_imports_module'(Mod, [Import-F|Imports], Fs0) :-$install_imports_module652,20321 -'$install_imports_module'(Mod, [Import-F|Imports], Fs0) :-$install_imports_module652,20321 -'$install_imports_module'(Mod, [Import-F|Imports], Fs0) :-$install_imports_module652,20321 -'$restore_load_files'([]).$restore_load_files657,20486 -'$restore_load_files'([])./p,predicate,predicate definition657,20486 -'$restore_load_files'([]).$restore_load_files657,20486 -'$restore_load_files'([M-F0|Fs]) :-$restore_load_files658,20513 -'$restore_load_files'([M-F0|Fs]) :-$restore_load_files658,20513 -'$restore_load_files'([M-F0|Fs]) :-$restore_load_files658,20513 -'$install_parents_module'(_, []).$install_parents_module668,20745 -'$install_parents_module'(_, [])./p,predicate,predicate definition668,20745 -'$install_parents_module'(_, []).$install_parents_module668,20745 -'$install_parents_module'(Mod, [Parent|Parents]) :-$install_parents_module669,20779 -'$install_parents_module'(Mod, [Parent|Parents]) :-$install_parents_module669,20779 -'$install_parents_module'(Mod, [Parent|Parents]) :-$install_parents_module669,20779 -'$install_module_transparents_module'(_, []).$install_module_transparents_module673,20898 -'$install_module_transparents_module'(_, [])./p,predicate,predicate definition673,20898 -'$install_module_transparents_module'(_, []).$install_module_transparents_module673,20898 -'$install_module_transparents_module'(Mod, [Module_Transparent|Module_Transparents]) :-$install_module_transparents_module674,20944 -'$install_module_transparents_module'(Mod, [Module_Transparent|Module_Transparents]) :-$install_module_transparents_module674,20944 -'$install_module_transparents_module'(Mod, [Module_Transparent|Module_Transparents]) :-$install_module_transparents_module674,20944 -'$install_meta_predicates_module'(_, []).$install_meta_predicates_module678,21135 -'$install_meta_predicates_module'(_, [])./p,predicate,predicate definition678,21135 -'$install_meta_predicates_module'(_, []).$install_meta_predicates_module678,21135 -'$install_meta_predicates_module'(Mod, [Meta_Predicate|Meta_Predicates]) :-$install_meta_predicates_module679,21177 -'$install_meta_predicates_module'(Mod, [Meta_Predicate|Meta_Predicates]) :-$install_meta_predicates_module679,21177 -'$install_meta_predicates_module'(Mod, [Meta_Predicate|Meta_Predicates]) :-$install_meta_predicates_module679,21177 -'$install_multi_files_module'(_, []).$install_multi_files_module683,21344 -'$install_multi_files_module'(_, [])./p,predicate,predicate definition683,21344 -'$install_multi_files_module'(_, []).$install_multi_files_module683,21344 -'$install_multi_files_module'(Mod, [Multi_File|Multi_Files]) :-$install_multi_files_module684,21382 -'$install_multi_files_module'(Mod, [Multi_File|Multi_Files]) :-$install_multi_files_module684,21382 -'$install_multi_files_module'(Mod, [Multi_File|Multi_Files]) :-$install_multi_files_module684,21382 -'$install_foreigns_module'(_, []).$install_foreigns_module688,21540 -'$install_foreigns_module'(_, [])./p,predicate,predicate definition688,21540 -'$install_foreigns_module'(_, []).$install_foreigns_module688,21540 -'$install_foreigns_module'(Mod, [Foreign|Foreigns]) :-$install_foreigns_module689,21575 -'$install_foreigns_module'(Mod, [Foreign|Foreigns]) :-$install_foreigns_module689,21575 -'$install_foreigns_module'(Mod, [Foreign|Foreigns]) :-$install_foreigns_module689,21575 -'$do_foreign'('$foreign'(Objs,Libs,Entry), _) :-$do_foreign693,21710 -'$do_foreign'('$foreign'(Objs,Libs,Entry), _) :-$do_foreign693,21710 -'$do_foreign'('$foreign'(Objs,Libs,Entry), _) :-$do_foreign'('$foreign693,21710 -'$do_foreign'('$swi_foreign'(File, Opts, Handle), More) :-$do_foreign695,21800 -'$do_foreign'('$swi_foreign'(File, Opts, Handle), More) :-$do_foreign695,21800 -'$do_foreign'('$swi_foreign'(File, Opts, Handle), More) :-$do_foreign'('$swi_foreign695,21800 -'$do_foreign'('$swi_foreign'(_,_), _More).$do_foreign698,21953 -'$do_foreign'('$swi_foreign'(_,_), _More)./p,predicate,predicate definition698,21953 -'$do_foreign'('$swi_foreign'(_,_), _More).$do_foreign'('$swi_foreign698,21953 -'$init_foreigns'([], _Handle, _NewHandle).$init_foreigns700,21997 -'$init_foreigns'([], _Handle, _NewHandle)./p,predicate,predicate definition700,21997 -'$init_foreigns'([], _Handle, _NewHandle).$init_foreigns700,21997 -'$init_foreigns'(['$swi_foreign'( Handle, Function )|More], Handle, NewHandle) :-$init_foreigns701,22040 -'$init_foreigns'(['$swi_foreign'( Handle, Function )|More], Handle, NewHandle) :-$init_foreigns701,22040 -'$init_foreigns'(['$swi_foreign'( Handle, Function )|More], Handle, NewHandle) :-$init_foreigns'(['$swi_foreign701,22040 -'$init_foreigns'([_|More], Handle, NewHandle) :-$init_foreigns705,22231 -'$init_foreigns'([_|More], Handle, NewHandle) :-$init_foreigns705,22231 -'$init_foreigns'([_|More], Handle, NewHandle) :-$init_foreigns705,22231 -qload_file( F0 ) :-qload_file714,22431 -qload_file( F0 ) :-qload_file714,22431 -qload_file( F0 ) :-qload_file714,22431 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file757,23711 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file757,23711 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file757,23711 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file760,23867 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file760,23867 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file760,23867 -'$qload_file'(S, _SourceModule, _File, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file764,24098 -'$qload_file'(S, _SourceModule, _File, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file764,24098 -'$qload_file'(S, _SourceModule, _File, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file764,24098 -'$qload_file'(_S, SourceModule, F, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file767,24213 -'$qload_file'(_S, SourceModule, F, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file767,24213 -'$qload_file'(_S, SourceModule, F, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file767,24213 -'$qload_file'(_S, _SourceModule, _File, FilePl, F0, _ImportList, _TOpts) :-$qload_file771,24427 -'$qload_file'(_S, _SourceModule, _File, FilePl, F0, _ImportList, _TOpts) :-$qload_file771,24427 -'$qload_file'(_S, _SourceModule, _File, FilePl, F0, _ImportList, _TOpts) :-$qload_file771,24427 -'$qload_file'(_S, SourceModule, _File, FilePl, _F0, ImportList, TOpts) :-$qload_file775,24593 -'$qload_file'(_S, SourceModule, _File, FilePl, _F0, ImportList, TOpts) :-$qload_file775,24593 -'$qload_file'(_S, SourceModule, _File, FilePl, _F0, ImportList, TOpts) :-$qload_file775,24593 -'$ql_process_directives'( FilePl ) :-$ql_process_directives778,24746 -'$ql_process_directives'( FilePl ) :-$ql_process_directives778,24746 -'$ql_process_directives'( FilePl ) :-$ql_process_directives778,24746 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives782,24982 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives782,24982 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives782,24982 -'$ql_process_directives'( FilePl ) :-$ql_process_directives787,25135 -'$ql_process_directives'( FilePl ) :-$ql_process_directives787,25135 -'$ql_process_directives'( FilePl ) :-$ql_process_directives787,25135 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives793,25368 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives793,25368 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives793,25368 - -packages/python/swig/yap4py/prolog/pl/save.yap,3202 -save(A) :- save(A,_).save22,699 -save(A) :- save(A,_).save22,699 -save(A) :- save(A,_).save22,699 -save(A) :- save(A,_).save22,699 -save(A) :- save(A,_).save22,699 -save(A,_) :- var(A), !,save24,722 -save(A,_) :- var(A), !,save24,722 -save(A,_) :- var(A), !,save24,722 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save_program(A) :- var(A), !,save_program29,881 -save_program(A) :- var(A), !,save_program29,881 -save_program(A) :- var(A), !,save_program29,881 -save_program(A) :- atom(A), !, save_program31,962 -save_program(A) :- atom(A), !, save_program31,962 -save_program(A) :- atom(A), !, save_program31,962 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(A, G) :- var(A), !,save_program36,1087 -save_program(A, G) :- var(A), !,save_program36,1087 -save_program(A, G) :- var(A), !,save_program36,1087 -save_program(A, G) :- var(G), !,save_program38,1174 -save_program(A, G) :- var(G), !,save_program38,1174 -save_program(A, G) :- var(G), !,save_program38,1174 -save_program(A, G) :- \+ callable(G), !,save_program40,1261 -save_program(A, G) :- \+ callable(G), !,save_program40,1261 -save_program(A, G) :- \+ callable(G), !,save_program40,1261 -save_program(A, G) :-save_program42,1359 -save_program(A, G) :-save_program42,1359 -save_program(A, G) :-save_program42,1359 -save_program(_,_).save_program46,1453 -save_program(_,_).save_program46,1453 -'$save_program2'(S,G) :-$save_program248,1473 -'$save_program2'(S,G) :-$save_program248,1473 -'$save_program2'(S,G) :-$save_program248,1473 -'$save_program2'(_,_).$save_program279,1870 -'$save_program2'(_,_)./p,predicate,predicate definition79,1870 -'$save_program2'(_,_).$save_program279,1870 -restore(A) :- var(A), !,restore81,1894 -restore(A) :- var(A), !,restore81,1894 -restore(A) :- var(A), !,restore81,1894 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(S) :- '$restore'(S).restore84,2017 -restore(S) :- '$restore'(S).restore84,2017 -restore(S) :- '$restore'(S).restore84,2017 -restore(S) :- '$restore'(S).restore84,2017 -restore(S) :- '$restore'(S).restore84,2017 - -packages/python/swig/yap4py/prolog/pl/setof.yap,7784 -a(2,1).a87,2052 -a(2,1).a87,2052 -a(1,1).a88,2060 -a(1,1).a88,2060 -a(2,2).a89,2068 -a(2,2).a89,2068 -findall(X,a(X,Y),L).findall94,2113 -findall(X,a(X,Y),L).findall94,2113 -findall(Template, Generator, Answers) :-findall108,2201 -findall(Template, Generator, Answers) :-findall108,2201 -findall(Template, Generator, Answers) :-findall108,2201 -findall(Template, Generator, Answers, SoFar) :-findall120,2524 -findall(Template, Generator, Answers, SoFar) :-findall120,2524 -findall(Template, Generator, Answers, SoFar) :-findall120,2524 -'$findall'(Template, Generator, SoFar, Answers) :-$findall126,2745 -'$findall'(Template, Generator, SoFar, Answers) :-$findall126,2745 -'$findall'(Template, Generator, SoFar, Answers) :-$findall126,2745 -'$findall_with_common_vars'(Template, Generator, Answers) :-$findall_with_common_vars140,3076 -'$findall_with_common_vars'(Template, Generator, Answers) :-$findall_with_common_vars140,3076 -'$findall_with_common_vars'(Template, Generator, Answers) :-$findall_with_common_vars140,3076 -'$collect_with_common_vars'([], _).$collect_with_common_vars152,3324 -'$collect_with_common_vars'([], _)./p,predicate,predicate definition152,3324 -'$collect_with_common_vars'([], _).$collect_with_common_vars152,3324 -'$collect_with_common_vars'([Key-_|Answers], VarList) :-$collect_with_common_vars153,3360 -'$collect_with_common_vars'([Key-_|Answers], VarList) :-$collect_with_common_vars153,3360 -'$collect_with_common_vars'([Key-_|Answers], VarList) :-$collect_with_common_vars153,3360 -setof(X,a(X,Y),L).setof166,3768 -setof(X,a(X,Y),L).setof166,3768 -setof(Template, Generator, Set) :-setof184,3875 -setof(Template, Generator, Set) :-setof184,3875 -setof(Template, Generator, Set) :-setof184,3875 -bagof(X,a(X,Y),L).bagof209,4524 -bagof(X,a(X,Y),L).bagof209,4524 -bagof(Template, Generator, Bag) :-bagof224,4617 -bagof(Template, Generator, Bag) :-bagof224,4617 -bagof(Template, Generator, Bag) :-bagof224,4617 -'$bagof'(Template, Generator, Bag) :-$bagof232,4811 -'$bagof'(Template, Generator, Bag) :-$bagof232,4811 -'$bagof'(Template, Generator, Bag) :-$bagof232,4811 -'$pick'([K-X|Bags], Key, Bag) :-$pick247,5275 -'$pick'([K-X|Bags], Key, Bag) :-$pick247,5275 -'$pick'([K-X|Bags], Key, Bag) :-$pick247,5275 -'$parade'([K-X|L1], Key, [X|B], L) :- K == Key, !,$parade251,5385 -'$parade'([K-X|L1], Key, [X|B], L) :- K == Key, !,$parade251,5385 -'$parade'([K-X|L1], Key, [X|B], L) :- K == Key, !,$parade251,5385 -'$parade'(L, _, [], L).$parade253,5463 -'$parade'(L, _, [], L)./p,predicate,predicate definition253,5463 -'$parade'(L, _, [], L).$parade253,5463 -'$decide'([], Bag, Key0, Key, Bag) :- !,$decide262,5774 -'$decide'([], Bag, Key0, Key, Bag) :- !,$decide262,5774 -'$decide'([], Bag, Key0, Key, Bag) :- !,$decide262,5774 -'$decide'(_, Bag, Key, Key, Bag).$decide264,5826 -'$decide'(_, Bag, Key, Key, Bag)./p,predicate,predicate definition264,5826 -'$decide'(_, Bag, Key, Key, Bag).$decide264,5826 -'$decide'(Bags, _, _, Key, Bag) :-$decide265,5860 -'$decide'(Bags, _, _, Key, Bag) :-$decide265,5860 -'$decide'(Bags, _, _, Key, Bag) :-$decide265,5860 -all(X,a(X,Y),L).all279,6287 -all(X,a(X,Y),L).all279,6287 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T,G,S) :-all295,6486 -all(T,G,S) :-all295,6486 -all(T,G,S) :-all295,6486 -'$$set'(S,R) :-$$set306,6705 -'$$set'(S,R) :-$$set306,6705 -'$$set'(S,R) :-$$set306,6705 -'$$build'(Ns,S0,R) :- '$db_dequeue'(R,X), !,$$build311,6777 -'$$build'(Ns,S0,R) :- '$db_dequeue'(R,X), !,$$build311,6777 -'$$build'(Ns,S0,R) :- '$db_dequeue'(R,X), !,$$build311,6777 -'$$build'([],_,_).$$build313,6846 -'$$build'([],_,_)./p,predicate,predicate definition313,6846 -'$$build'([],_,_).$$build313,6846 -'$$build2'([X|Ns],Hash,R,X) :-$$build2315,6866 -'$$build2'([X|Ns],Hash,R,X) :-$$build2315,6866 -'$$build2'([X|Ns],Hash,R,X) :-$$build2315,6866 -'$$build2'(Ns,Hash,R,_) :-$$build2318,6941 -'$$build2'(Ns,Hash,R,_) :-$$build2318,6941 -'$$build2'(Ns,Hash,R,_) :-$$build2318,6941 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_)./p,predicate,predicate definition321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(n(R,El0,L),El) :-$$new322,7035 -'$$new'(n(R,El0,L),El) :-$$new322,7035 -'$$new'(n(R,El0,L),El) :-$$new322,7035 -'$$new'(=,_,_,_) :- !, fail.$$new326,7102 -'$$new'(=,_,_,_) :- !, fail.$$new326,7102 -'$$new'(=,_,_,_) :- !, fail.$$new326,7102 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El)./p,predicate,predicate definition327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new'(<,R,_,El) :- '$$new327,7131 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El)./p,predicate,predicate definition328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new'(>,_,L,El) :- '$$new328,7167 -'$$produce'([T1 same X1|Tn],S,X) :- '$$split'(Tn,T1,X1,S1,S2),$$produce331,7205 -'$$produce'([T1 same X1|Tn],S,X) :- '$$split'(Tn,T1,X1,S1,S2),$$produce331,7205 -'$$produce'([T1 same X1|Tn],S,X) :- '$$split'(Tn,T1,X1,S1,S2),$$produce331,7205 -'$$split'([],_,_,[],[]).$$split335,7314 -'$$split'([],_,_,[],[])./p,predicate,predicate definition335,7314 -'$$split'([],_,_,[],[]).$$split335,7314 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2)./p,predicate,predicate definition336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split'([T same X|Tn],T,X,S1,S2) :- '$$split336,7339 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2)./p,predicate,predicate definition337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split337,7402 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2)./p,predicate,predicate definition338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split338,7471 - -packages/python/swig/yap4py/prolog/pl/signals.yap,10069 -loop :- loop.loop52,1638 -ticker :- write('.'), flush_output,ticker54,1653 -loop :- loop.loop71,2267 -once_with_alarm(Time,Goal,DoOnAlarm) :-once_with_alarm87,2844 -once_with_alarm(Time,Goal,DoOnAlarm) :-once_with_alarm87,2844 -once_with_alarm(Time,Goal,DoOnAlarm) :-once_with_alarm87,2844 -execute_once_with_alarm(Time, Goal) :-execute_once_with_alarm90,2950 -execute_once_with_alarm(Time, Goal) :-execute_once_with_alarm90,2950 -execute_once_with_alarm(Time, Goal) :-execute_once_with_alarm90,2950 -'$creep'(G) :-$creep146,5083 -'$creep'(G) :-$creep146,5083 -'$creep'(G) :-$creep146,5083 -'$creep'([M|G]) :-$creep151,5199 -'$creep'([M|G]) :-$creep151,5199 -'$creep'([M|G]) :-$creep151,5199 -'$do_signal'(sig_wake_up, G) :-$do_signal155,5273 -'$do_signal'(sig_wake_up, G) :-$do_signal155,5273 -'$do_signal'(sig_wake_up, G) :-$do_signal155,5273 -'$do_signal'(sig_creep, MG) :-$do_signal162,5485 -'$do_signal'(sig_creep, MG) :-$do_signal162,5485 -'$do_signal'(sig_creep, MG) :-$do_signal162,5485 -'$do_signal'(sig_iti, [M|G]) :-$do_signal164,5545 -'$do_signal'(sig_iti, [M|G]) :-$do_signal164,5545 -'$do_signal'(sig_iti, [M|G]) :-$do_signal164,5545 -'$do_signal'(sig_trace, [M|G]) :-$do_signal171,5730 -'$do_signal'(sig_trace, [M|G]) :-$do_signal171,5730 -'$do_signal'(sig_trace, [M|G]) :-$do_signal171,5730 -'$do_signal'(sig_debug, [M|G]) :-$do_signal175,5812 -'$do_signal'(sig_debug, [M|G]) :-$do_signal175,5812 -'$do_signal'(sig_debug, [M|G]) :-$do_signal175,5812 -'$do_signal'(sig_break, [M|G]) :-$do_signal179,5894 -'$do_signal'(sig_break, [M|G]) :-$do_signal179,5894 -'$do_signal'(sig_break, [M|G]) :-$do_signal179,5894 -'$do_signal'(sig_statistics, [M|G]) :-$do_signal183,5977 -'$do_signal'(sig_statistics, [M|G]) :-$do_signal183,5977 -'$do_signal'(sig_statistics, [M|G]) :-$do_signal183,5977 -'$do_signal'(fail, [_|_]) :-$do_signal188,6111 -'$do_signal'(fail, [_|_]) :-$do_signal188,6111 -'$do_signal'(fail, [_|_]) :-$do_signal188,6111 -'$do_signal'(sig_stack_dump, [M|G]) :-$do_signal190,6147 -'$do_signal'(sig_stack_dump, [M|G]) :-$do_signal190,6147 -'$do_signal'(sig_stack_dump, [M|G]) :-$do_signal190,6147 -'$do_signal'(sig_fpe,G) :-$do_signal194,6252 -'$do_signal'(sig_fpe,G) :-$do_signal194,6252 -'$do_signal'(sig_fpe,G) :-$do_signal194,6252 -'$do_signal'(sig_alarm, G) :-$do_signal196,6314 -'$do_signal'(sig_alarm, G) :-$do_signal196,6314 -'$do_signal'(sig_alarm, G) :-$do_signal196,6314 -'$do_signal'(sig_vtalarm, G) :-$do_signal198,6378 -'$do_signal'(sig_vtalarm, G) :-$do_signal198,6378 -'$do_signal'(sig_vtalarm, G) :-$do_signal198,6378 -'$do_signal'(sig_hup, G) :-$do_signal200,6446 -'$do_signal'(sig_hup, G) :-$do_signal200,6446 -'$do_signal'(sig_hup, G) :-$do_signal200,6446 -'$do_signal'(sig_usr1, G) :-$do_signal202,6506 -'$do_signal'(sig_usr1, G) :-$do_signal202,6506 -'$do_signal'(sig_usr1, G) :-$do_signal202,6506 -'$do_signal'(sig_usr2, G) :-$do_signal204,6568 -'$do_signal'(sig_usr2, G) :-$do_signal204,6568 -'$do_signal'(sig_usr2, G) :-$do_signal204,6568 -'$do_signal'(sig_pipe, G) :-$do_signal206,6630 -'$do_signal'(sig_pipe, G) :-$do_signal206,6630 -'$do_signal'(sig_pipe, G) :-$do_signal206,6630 -'$signal_handler'(Sig, [M|G]) :-$signal_handler209,6693 -'$signal_handler'(Sig, [M|G]) :-$signal_handler209,6693 -'$signal_handler'(Sig, [M|G]) :-$signal_handler209,6693 -'$start_creep'([_M|G], _) :-$start_creep217,6930 -'$start_creep'([_M|G], _) :-$start_creep217,6930 -'$start_creep'([_M|G], _) :-$start_creep217,6930 -'$start_creep'([M|G], _) :-$start_creep222,7037 -'$start_creep'([M|G], _) :-$start_creep222,7037 -'$start_creep'([M|G], _) :-$start_creep222,7037 -'$start_creep'([Mod|G], WhereFrom) :-$start_creep235,7299 -'$start_creep'([Mod|G], WhereFrom) :-$start_creep235,7299 -'$start_creep'([Mod|G], WhereFrom) :-$start_creep235,7299 -'$no_creep_call'('$execute_clause'(G,Mod,Ref,CP),_) :- !,$no_creep_call239,7399 -'$no_creep_call'('$execute_clause'(G,Mod,Ref,CP),_) :- !,$no_creep_call239,7399 -'$no_creep_call'('$execute_clause'(G,Mod,Ref,CP),_) :- !,$no_creep_call'('$execute_clause239,7399 -'$no_creep_call'('$execute_nonstop'(G, M),_) :- !,$no_creep_call242,7520 -'$no_creep_call'('$execute_nonstop'(G, M),_) :- !,$no_creep_call242,7520 -'$no_creep_call'('$execute_nonstop'(G, M),_) :- !,$no_creep_call'('$execute_nonstop242,7520 -'$no_creep_call'(G, M) :-$no_creep_call245,7621 -'$no_creep_call'(G, M) :-$no_creep_call245,7621 -'$no_creep_call'(G, M) :-$no_creep_call245,7621 -'$execute_goal'(G, Mod) :-$execute_goal251,7700 -'$execute_goal'(G, Mod) :-$execute_goal251,7700 -'$execute_goal'(G, Mod) :-$execute_goal251,7700 -'$signal_do'(Sig, Goal) :-$signal_do261,7821 -'$signal_do'(Sig, Goal) :-$signal_do261,7821 -'$signal_do'(Sig, Goal) :-$signal_do261,7821 -'$signal_do'(Sig, Goal) :-$signal_do263,7902 -'$signal_do'(Sig, Goal) :-$signal_do263,7902 -'$signal_do'(Sig, Goal) :-$signal_do263,7902 -'$signal_def'(sig_usr1, throw(error(signal(usr1,[]),true))).$signal_def271,8206 -'$signal_def'(sig_usr1, throw(error(signal(usr1,[]),true)))./p,predicate,predicate definition271,8206 -'$signal_def'(sig_usr1, throw(error(signal(usr1,[]),true))).$signal_def271,8206 -'$signal_def'(sig_usr2, throw(error(signal(usr2,[]),true))).$signal_def272,8267 -'$signal_def'(sig_usr2, throw(error(signal(usr2,[]),true)))./p,predicate,predicate definition272,8267 -'$signal_def'(sig_usr2, throw(error(signal(usr2,[]),true))).$signal_def272,8267 -'$signal_def'(sig_pipe, throw(error(signal(pipe,[]),true))).$signal_def273,8328 -'$signal_def'(sig_pipe, throw(error(signal(pipe,[]),true)))./p,predicate,predicate definition273,8328 -'$signal_def'(sig_pipe, throw(error(signal(pipe,[]),true))).$signal_def273,8328 -'$signal_def'(sig_fpe, throw(error(signal(fpe,[]),true))).$signal_def274,8389 -'$signal_def'(sig_fpe, throw(error(signal(fpe,[]),true)))./p,predicate,predicate definition274,8389 -'$signal_def'(sig_fpe, throw(error(signal(fpe,[]),true))).$signal_def274,8389 -'$signal_def'(sig_alarm, true).$signal_def276,8478 -'$signal_def'(sig_alarm, true)./p,predicate,predicate definition276,8478 -'$signal_def'(sig_alarm, true).$signal_def276,8478 -'$signal'(sig_hup).$signal279,8512 -'$signal'(sig_hup)./p,predicate,predicate definition279,8512 -'$signal'(sig_hup).$signal279,8512 -'$signal'(sig_usr1).$signal280,8532 -'$signal'(sig_usr1)./p,predicate,predicate definition280,8532 -'$signal'(sig_usr1).$signal280,8532 -'$signal'(sig_usr2).$signal281,8553 -'$signal'(sig_usr2)./p,predicate,predicate definition281,8553 -'$signal'(sig_usr2).$signal281,8553 -'$signal'(sig_pipe).$signal282,8574 -'$signal'(sig_pipe)./p,predicate,predicate definition282,8574 -'$signal'(sig_pipe).$signal282,8574 -'$signal'(sig_alarm).$signal283,8595 -'$signal'(sig_alarm)./p,predicate,predicate definition283,8595 -'$signal'(sig_alarm).$signal283,8595 -'$signal'(sig_vtalarm).$signal284,8617 -'$signal'(sig_vtalarm)./p,predicate,predicate definition284,8617 -'$signal'(sig_vtalarm).$signal284,8617 -'$signal'(sig_fpe).$signal285,8641 -'$signal'(sig_fpe)./p,predicate,predicate definition285,8641 -'$signal'(sig_fpe).$signal285,8641 -on_signal(Signal,OldAction,NewAction) :-on_signal287,8662 -on_signal(Signal,OldAction,NewAction) :-on_signal287,8662 -on_signal(Signal,OldAction,NewAction) :-on_signal287,8662 -on_signal(Signal,OldAction,default) :-on_signal292,8867 -on_signal(Signal,OldAction,default) :-on_signal292,8867 -on_signal(Signal,OldAction,default) :-on_signal292,8867 -on_signal(_Signal,_OldAction,Action) :-on_signal294,8943 -on_signal(_Signal,_OldAction,Action) :-on_signal294,8943 -on_signal(_Signal,_OldAction,Action) :-on_signal294,8943 -on_signal(Signal,OldAction,Action) :-on_signal297,9110 -on_signal(Signal,OldAction,Action) :-on_signal297,9110 -on_signal(Signal,OldAction,Action) :-on_signal297,9110 -on_signal(Signal,OldAction,Action) :-on_signal302,9239 -on_signal(Signal,OldAction,Action) :-on_signal302,9239 -on_signal(Signal,OldAction,Action) :-on_signal302,9239 -'$reset_signal'(Signal, OldAction) :-$reset_signal313,9860 -'$reset_signal'(Signal, OldAction) :-$reset_signal313,9860 -'$reset_signal'(Signal, OldAction) :-$reset_signal313,9860 -'$reset_signal'(_, default).$reset_signal316,9975 -'$reset_signal'(_, default)./p,predicate,predicate definition316,9975 -'$reset_signal'(_, default).$reset_signal316,9975 -'$check_signal'(Signal, OldAction) :-$check_signal318,10005 -'$check_signal'(Signal, OldAction) :-$check_signal318,10005 -'$check_signal'(Signal, OldAction) :-$check_signal318,10005 -'$check_signal'(_, default).$check_signal320,10105 -'$check_signal'(_, default)./p,predicate,predicate definition320,10105 -'$check_signal'(_, default).$check_signal320,10105 -alarm(Interval, Goal, Left) :-alarm323,10136 -alarm(Interval, Goal, Left) :-alarm323,10136 -alarm(Interval, Goal, Left) :-alarm323,10136 -alarm(Interval, Goal, Left) :-alarm328,10260 -alarm(Interval, Goal, Left) :-alarm328,10260 -alarm(Interval, Goal, Left) :-alarm328,10260 -alarm(Number, Goal, Left) :-alarm331,10378 -alarm(Number, Goal, Left) :-alarm331,10378 -alarm(Number, Goal, Left) :-alarm331,10378 -alarm([Interval|USecs], Goal, [Left|LUSecs]) :-alarm337,10571 -alarm([Interval|USecs], Goal, [Left|LUSecs]) :-alarm337,10571 -alarm([Interval|USecs], Goal, [Left|LUSecs]) :-alarm337,10571 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -read_sig :-read_sig345,10779 - -packages/python/swig/yap4py/prolog/pl/sort.yap,2272 -sort(L,O) :-sort48,1299 -sort(L,O) :-sort48,1299 -sort(L,O) :-sort48,1299 -msort(L,O) :-msort72,1733 -msort(L,O) :-msort72,1733 -msort(L,O) :-msort72,1733 -keysort(L,O) :-keysort94,2109 -keysort(L,O) :-keysort94,2109 -keysort(L,O) :-keysort94,2109 -predsort(P, L, R) :-predsort132,3121 -predsort(P, L, R) :-predsort132,3121 -predsort(P, L, R) :-predsort132,3121 -predsort(P, 2, [X1, X2|L], L, R) :- !,predsort137,3197 -predsort(P, 2, [X1, X2|L], L, R) :- !,predsort137,3197 -predsort(P, 2, [X1, X2|L], L, R) :- !,predsort137,3197 -predsort(_, 1, [X|L], L, [X]) :- !.predsort140,3287 -predsort(_, 1, [X|L], L, [X]) :- !.predsort140,3287 -predsort(_, 1, [X|L], L, [X]) :- !.predsort140,3287 -predsort(_, 0, L, L, []) :- !.predsort141,3323 -predsort(_, 0, L, L, []) :- !.predsort141,3323 -predsort(_, 0, L, L, []) :- !.predsort141,3323 -predsort(P, N, L1, L3, R) :-predsort142,3354 -predsort(P, N, L1, L3, R) :-predsort142,3354 -predsort(P, N, L1, L3, R) :-predsort142,3354 -sort2(<, X1, X2, [X1, X2]).sort2149,3503 -sort2(<, X1, X2, [X1, X2]).sort2149,3503 -sort2(=, X1, _, [X1]).sort2150,3531 -sort2(=, X1, _, [X1]).sort2150,3531 -sort2(>, X1, X2, [X2, X1]).sort2151,3555 -sort2(>, X1, X2, [X2, X1]).sort2151,3555 -predmerge(_, [], R, R) :- !.predmerge153,3584 -predmerge(_, [], R, R) :- !.predmerge153,3584 -predmerge(_, [], R, R) :- !.predmerge153,3584 -predmerge(_, R, [], R) :- !.predmerge154,3613 -predmerge(_, R, [], R) :- !.predmerge154,3613 -predmerge(_, R, [], R) :- !.predmerge154,3613 -predmerge(P, [H1|T1], [H2|T2], Result) :-predmerge155,3642 -predmerge(P, [H1|T1], [H2|T2], Result) :-predmerge155,3642 -predmerge(P, [H1|T1], [H2|T2], Result) :-predmerge155,3642 -predmerge(>, P, H1, H2, T1, T2, [H2|R]) :-predmerge159,3756 -predmerge(>, P, H1, H2, T1, T2, [H2|R]) :-predmerge159,3756 -predmerge(>, P, H1, H2, T1, T2, [H2|R]) :-predmerge159,3756 -predmerge(=, P, H1, _, T1, T2, [H1|R]) :-predmerge161,3830 -predmerge(=, P, H1, _, T1, T2, [H1|R]) :-predmerge161,3830 -predmerge(=, P, H1, _, T1, T2, [H1|R]) :-predmerge161,3830 -predmerge(<, P, H1, H2, T1, T2, [H1|R]) :-predmerge163,3898 -predmerge(<, P, H1, H2, T1, T2, [H1|R]) :-predmerge163,3898 -predmerge(<, P, H1, H2, T1, T2, [H1|R]) :-predmerge163,3898 - -packages/python/swig/yap4py/prolog/pl/spy.yap,5090 -'$suspy_predicates_by_name'(A,spy,M) :- !,$suspy_predicates_by_name106,2366 -'$suspy_predicates_by_name'(A,spy,M) :- !,$suspy_predicates_by_name106,2366 -'$suspy_predicates_by_name'(A,spy,M) :- !,$suspy_predicates_by_name106,2366 -'$suspy_predicates_by_name'(A,nospy,M) :-$suspy_predicates_by_name108,2454 -'$suspy_predicates_by_name'(A,nospy,M) :-$suspy_predicates_by_name108,2454 -'$suspy_predicates_by_name'(A,nospy,M) :-$suspy_predicates_by_name108,2454 -'$do_suspy_predicates_by_name'(A,S,M) :-$do_suspy_predicates_by_name111,2544 -'$do_suspy_predicates_by_name'(A,S,M) :-$do_suspy_predicates_by_name111,2544 -'$do_suspy_predicates_by_name'(A,S,M) :-$do_suspy_predicates_by_name111,2544 -'$do_suspy_predicates_by_name'(A, S, M) :-$do_suspy_predicates_by_name115,2661 -'$do_suspy_predicates_by_name'(A, S, M) :-$do_suspy_predicates_by_name115,2661 -'$do_suspy_predicates_by_name'(A, S, M) :-$do_suspy_predicates_by_name115,2661 -nospyall :-nospyall211,5218 -nospyall :-nospyall214,5291 -debug :-debug220,5426 -'$start_debugging'(Mode) :-$start_debugging226,5608 -'$start_debugging'(Mode) :-$start_debugging226,5608 -'$start_debugging'(Mode) :-$start_debugging226,5608 -nodebug :-nodebug235,5805 -trace :-trace253,6069 -trace :-trace256,6109 -notrace :-notrace268,6322 -leash(X) :- var(X),leash328,7665 -leash(X) :- var(X),leash328,7665 -leash(X) :- var(X),leash328,7665 -leash(X) :-leash330,7729 -leash(X) :-leash330,7729 -leash(X) :-leash330,7729 -leash(X) :-leash335,7849 -leash(X) :-leash335,7849 -leash(X) :-leash335,7849 -'$show_leash'(Msg,0) :-$show_leash338,7911 -'$show_leash'(Msg,0) :-$show_leash338,7911 -'$show_leash'(Msg,0) :-$show_leash338,7911 -'$show_leash'(Msg,Code) :-$show_leash340,7966 -'$show_leash'(Msg,Code) :-$show_leash340,7966 -'$show_leash'(Msg,Code) :-$show_leash340,7966 -'$check_leash_bit'(Code,Bit,L0,_,L0) :- Bit /\ Code =:= 0, !.$check_leash_bit347,8193 -'$check_leash_bit'(Code,Bit,L0,_,L0) :- Bit /\ Code =:= 0, !.$check_leash_bit347,8193 -'$check_leash_bit'(Code,Bit,L0,_,L0) :- Bit /\ Code =:= 0, !.$check_leash_bit347,8193 -'$check_leash_bit'(_,_,L0,Name,[Name|L0]).$check_leash_bit348,8255 -'$check_leash_bit'(_,_,L0,Name,[Name|L0])./p,predicate,predicate definition348,8255 -'$check_leash_bit'(_,_,L0,Name,[Name|L0]).$check_leash_bit348,8255 -'$leashcode'(full,0xf) :- !.$leashcode350,8299 -'$leashcode'(full,0xf) :- !.$leashcode350,8299 -'$leashcode'(full,0xf) :- !.$leashcode350,8299 -'$leashcode'(on,0xf) :- !.$leashcode351,8328 -'$leashcode'(on,0xf) :- !.$leashcode351,8328 -'$leashcode'(on,0xf) :- !.$leashcode351,8328 -'$leashcode'(half,0xb) :- !.$leashcode352,8355 -'$leashcode'(half,0xb) :- !.$leashcode352,8355 -'$leashcode'(half,0xb) :- !.$leashcode352,8355 -'$leashcode'(loose,0x8) :- !.$leashcode353,8384 -'$leashcode'(loose,0x8) :- !.$leashcode353,8384 -'$leashcode'(loose,0x8) :- !.$leashcode353,8384 -'$leashcode'(off,0x0) :- !.$leashcode354,8414 -'$leashcode'(off,0x0) :- !.$leashcode354,8414 -'$leashcode'(off,0x0) :- !.$leashcode354,8414 -'$leashcode'(none,0x0) :- !.$leashcode355,8442 -'$leashcode'(none,0x0) :- !.$leashcode355,8442 -'$leashcode'(none,0x0) :- !.$leashcode355,8442 -'$leashcode'([L|M],Code) :- !,$leashcode357,8534 -'$leashcode'([L|M],Code) :- !,$leashcode357,8534 -'$leashcode'([L|M],Code) :- !,$leashcode357,8534 -'$leashcode'(N,N) :- integer(N), N >= 0, N =< 0xf.$leashcode359,8592 -'$leashcode'(N,N) :- integer(N), N >= 0, N =< 0xf.$leashcode359,8592 -'$leashcode'(N,N) :- integer(N), N >= 0, N =< 0xf.$leashcode359,8592 -'$list2Code'(V,_) :- var(V), !,$list2Code361,8644 -'$list2Code'(V,_) :- var(V), !,$list2Code361,8644 -'$list2Code'(V,_) :- var(V), !,$list2Code361,8644 -'$list2Code'([],0) :- !.$list2Code363,8720 -'$list2Code'([],0) :- !.$list2Code363,8720 -'$list2Code'([],0) :- !.$list2Code363,8720 -'$list2Code'([V|L],_) :- var(V), !,$list2Code364,8745 -'$list2Code'([V|L],_) :- var(V), !,$list2Code364,8745 -'$list2Code'([V|L],_) :- var(V), !,$list2Code364,8745 -'$list2Code'([call|L],N) :- '$list2Code'(L,N1), N is 0x8 + N1.$list2Code366,8829 -'$list2Code'([call|L],N) :- '$list2Code'(L,N1), N is 0x8 + N1.$list2Code366,8829 -'$list2Code'([call|L],N) :- '$list2Code'(L,N1), N is 0x8 + N1.$list2Code366,8829 -'$list2Code'([exit|L],N) :- '$list2Code'(L,N1), N is 0x4 + N1.$list2Code367,8892 -'$list2Code'([exit|L],N) :- '$list2Code'(L,N1), N is 0x4 + N1.$list2Code367,8892 -'$list2Code'([exit|L],N) :- '$list2Code'(L,N1), N is 0x4 + N1.$list2Code367,8892 -'$list2Code'([redo|L],N) :- '$list2Code'(L,N1), N is 0x2 + N1.$list2Code368,8955 -'$list2Code'([redo|L],N) :- '$list2Code'(L,N1), N is 0x2 + N1.$list2Code368,8955 -'$list2Code'([redo|L],N) :- '$list2Code'(L,N1), N is 0x2 + N1.$list2Code368,8955 -'$list2Code'([fail|L],N) :- '$list2Code'(L,N1), N is 0x1 + N1.$list2Code369,9018 -'$list2Code'([fail|L],N) :- '$list2Code'(L,N1), N is 0x1 + N1.$list2Code369,9018 -'$list2Code'([fail|L],N) :- '$list2Code'(L,N1), N is 0x1 + N1.$list2Code369,9018 -debugging :-debugging377,9259 -debugging :-debugging380,9331 - -packages/python/swig/yap4py/prolog/pl/statistics.yap,4846 -statistics :-statistics69,2605 -'$statistics'(Runtime,CPUtime,SYStime,Walltime,HpSpa,HpInUse,HpMax,TrlSpa, TrlInUse,_TrlMax,StkSpa, GlobInU, LocInU,GlobMax,LocMax,NOfHO,TotHOTime,NOfSO,TotSOTime,NOfTO,TotTOTime,NOfGC,TotGCTime,TotGCSize,NOfAGC,TotAGCTime,TotAGCSize) :-$statistics88,3463 -'$statistics'(Runtime,CPUtime,SYStime,Walltime,HpSpa,HpInUse,HpMax,TrlSpa, TrlInUse,_TrlMax,StkSpa, GlobInU, LocInU,GlobMax,LocMax,NOfHO,TotHOTime,NOfSO,TotSOTime,NOfTO,TotTOTime,NOfGC,TotGCTime,TotGCSize,NOfAGC,TotAGCTime,TotAGCSize) :-$statistics88,3463 -'$statistics'(Runtime,CPUtime,SYStime,Walltime,HpSpa,HpInUse,HpMax,TrlSpa, TrlInUse,_TrlMax,StkSpa, GlobInU, LocInU,GlobMax,LocMax,NOfHO,TotHOTime,NOfSO,TotSOTime,NOfTO,TotTOTime,NOfGC,TotGCTime,TotGCSize,NOfAGC,TotAGCTime,TotAGCSize) :-$statistics88,3463 -'$statistics'(_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_).$statistics129,5708 -'$statistics'(_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_)./p,predicate,predicate definition129,5708 -'$statistics'(_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_).$statistics129,5708 -statistics(runtime,[T,L]) :-statistics257,9191 -statistics(runtime,[T,L]) :-statistics257,9191 -statistics(runtime,[T,L]) :-statistics257,9191 -statistics(cputime,[T,L]) :-statistics259,9238 -statistics(cputime,[T,L]) :-statistics259,9238 -statistics(cputime,[T,L]) :-statistics259,9238 -statistics(walltime,[T,L]) :-statistics261,9285 -statistics(walltime,[T,L]) :-statistics261,9285 -statistics(walltime,[T,L]) :-statistics261,9285 -statistics(threads,NT) :-statistics263,9334 -statistics(threads,NT) :-statistics263,9334 -statistics(threads,NT) :-statistics263,9334 -statistics(threads_created,TC) :-statistics265,9381 -statistics(threads_created,TC) :-statistics265,9381 -statistics(threads_created,TC) :-statistics265,9381 -statistics(thread_cputime,TR) :-statistics267,9444 -statistics(thread_cputime,TR) :-statistics267,9444 -statistics(thread_cputime,TR) :-statistics267,9444 -statistics(heap,[Hp,HpF]) :-statistics271,9549 -statistics(heap,[Hp,HpF]) :-statistics271,9549 -statistics(heap,[Hp,HpF]) :-statistics271,9549 -statistics(program,Info) :-statistics274,9629 -statistics(program,Info) :-statistics274,9629 -statistics(program,Info) :-statistics274,9629 -statistics(global_stack,[GlobInU,GlobFree]) :-statistics276,9681 -statistics(global_stack,[GlobInU,GlobFree]) :-statistics276,9681 -statistics(global_stack,[GlobInU,GlobFree]) :-statistics276,9681 -statistics(local_stack,[LocInU,LocFree]) :-statistics279,9817 -statistics(local_stack,[LocInU,LocFree]) :-statistics279,9817 -statistics(local_stack,[LocInU,LocFree]) :-statistics279,9817 -statistics(trail,[TrlInUse,TrlFree]) :-statistics282,9949 -statistics(trail,[TrlInUse,TrlFree]) :-statistics282,9949 -statistics(trail,[TrlInUse,TrlFree]) :-statistics282,9949 -statistics(garbage_collection,[NOfGC,TotGCSize,TotGCTime]) :-statistics285,10063 -statistics(garbage_collection,[NOfGC,TotGCSize,TotGCTime]) :-statistics285,10063 -statistics(garbage_collection,[NOfGC,TotGCSize,TotGCTime]) :-statistics285,10063 -statistics(stack_shifts,[NOfHO,NOfSO,NOfTO]) :-statistics287,10167 -statistics(stack_shifts,[NOfHO,NOfSO,NOfTO]) :-statistics287,10167 -statistics(stack_shifts,[NOfHO,NOfSO,NOfTO]) :-statistics287,10167 -statistics(atoms,[NOf,SizeOf]) :-statistics291,10325 -statistics(atoms,[NOf,SizeOf]) :-statistics291,10325 -statistics(atoms,[NOf,SizeOf]) :-statistics291,10325 -statistics(static_code,[ClauseSize, IndexSize, TreeIndexSize, ExtIndexSize, SWIndexSize]) :-statistics293,10397 -statistics(static_code,[ClauseSize, IndexSize, TreeIndexSize, ExtIndexSize, SWIndexSize]) :-statistics293,10397 -statistics(static_code,[ClauseSize, IndexSize, TreeIndexSize, ExtIndexSize, SWIndexSize]) :-statistics293,10397 -statistics(dynamic_code,[ClauseSize,IndexSize, TreeIndexSize, CPIndexSize, ExtIndexSize, SWIndexSize]) :-statistics296,10624 -statistics(dynamic_code,[ClauseSize,IndexSize, TreeIndexSize, CPIndexSize, ExtIndexSize, SWIndexSize]) :-statistics296,10624 -statistics(dynamic_code,[ClauseSize,IndexSize, TreeIndexSize, CPIndexSize, ExtIndexSize, SWIndexSize]) :-statistics296,10624 -key_statistics(Key, NOfEntries, TotalSize) :-key_statistics308,11114 -key_statistics(Key, NOfEntries, TotalSize) :-key_statistics308,11114 -key_statistics(Key, NOfEntries, TotalSize) :-key_statistics308,11114 -time(Goal) :-time331,11753 -time(Goal) :-time331,11753 -time(Goal) :-time331,11753 -time(_:Goal) :-time334,11825 -time(_:Goal) :-time334,11825 -time(_:Goal) :-time334,11825 -time(Goal) :- \+ callable(Goal), !,time337,11899 -time(Goal) :- \+ callable(Goal), !,time337,11899 -time(Goal) :- \+ callable(Goal), !,time337,11899 -time(Goal) :-time339,11987 -time(Goal) :-time339,11987 -time(Goal) :-time339,11987 - -packages/python/swig/yap4py/prolog/pl/strict_iso.yap,28431 -'$iso_check_goal'(V,G) :-$iso_check_goal6,154 -'$iso_check_goal'(V,G) :-$iso_check_goal6,154 -'$iso_check_goal'(V,G) :-$iso_check_goal6,154 -'$iso_check_goal'(V,G) :-$iso_check_goal9,235 -'$iso_check_goal'(V,G) :-$iso_check_goal9,235 -'$iso_check_goal'(V,G) :-$iso_check_goal9,235 -'$iso_check_goal'(_:G,G0) :- !,$iso_check_goal12,316 -'$iso_check_goal'(_:G,G0) :- !,$iso_check_goal12,316 -'$iso_check_goal'(_:G,G0) :- !,$iso_check_goal12,316 -'$iso_check_goal'((G1,G2),G0) :- !,$iso_check_goal14,374 -'$iso_check_goal'((G1,G2),G0) :- !,$iso_check_goal14,374 -'$iso_check_goal'((G1,G2),G0) :- !,$iso_check_goal14,374 -'$iso_check_goal'((G1;G2),G0) :- !,$iso_check_goal17,484 -'$iso_check_goal'((G1;G2),G0) :- !,$iso_check_goal17,484 -'$iso_check_goal'((G1;G2),G0) :- !,$iso_check_goal17,484 -'$iso_check_goal'((G1->G2),G0) :- !,$iso_check_goal20,594 -'$iso_check_goal'((G1->G2),G0) :- !,$iso_check_goal20,594 -'$iso_check_goal'((G1->G2),G0) :- !,$iso_check_goal20,594 -'$iso_check_goal'(!,_) :- !.$iso_check_goal23,707 -'$iso_check_goal'(!,_) :- !.$iso_check_goal23,707 -'$iso_check_goal'(!,_) :- !.$iso_check_goal23,707 -'$iso_check_goal'((G1|G2),G0) :-$iso_check_goal24,736 -'$iso_check_goal'((G1|G2),G0) :-$iso_check_goal24,736 -'$iso_check_goal'((G1|G2),G0) :-$iso_check_goal24,736 -'$iso_check_goal'((G1|G2),G0) :- !,$iso_check_goal27,875 -'$iso_check_goal'((G1|G2),G0) :- !,$iso_check_goal27,875 -'$iso_check_goal'((G1|G2),G0) :- !,$iso_check_goal27,875 -'$iso_check_goal'(G,G0) :- $iso_check_goal30,985 -'$iso_check_goal'(G,G0) :- $iso_check_goal30,985 -'$iso_check_goal'(G,G0) :- $iso_check_goal30,985 -'$iso_check_goal'(_,_).$iso_check_goal40,1198 -'$iso_check_goal'(_,_)./p,predicate,predicate definition40,1198 -'$iso_check_goal'(_,_).$iso_check_goal40,1198 -'$iso_check_a_goal'(V,_,G) :-$iso_check_a_goal42,1223 -'$iso_check_a_goal'(V,_,G) :-$iso_check_a_goal42,1223 -'$iso_check_a_goal'(V,_,G) :-$iso_check_a_goal42,1223 -'$iso_check_a_goal'(V,E,G) :-$iso_check_a_goal45,1308 -'$iso_check_a_goal'(V,E,G) :-$iso_check_a_goal45,1308 -'$iso_check_a_goal'(V,E,G) :-$iso_check_a_goal45,1308 -'$iso_check_a_goal'(_:G,E,G0) :- !,$iso_check_a_goal48,1399 -'$iso_check_a_goal'(_:G,E,G0) :- !,$iso_check_a_goal48,1399 -'$iso_check_a_goal'(_:G,E,G0) :- !,$iso_check_a_goal48,1399 -'$iso_check_a_goal'((G1,G2),E,G0) :- !,$iso_check_a_goal50,1465 -'$iso_check_a_goal'((G1,G2),E,G0) :- !,$iso_check_a_goal50,1465 -'$iso_check_a_goal'((G1,G2),E,G0) :- !,$iso_check_a_goal50,1465 -'$iso_check_a_goal'((G1;G2),E,G0) :- !,$iso_check_a_goal53,1581 -'$iso_check_a_goal'((G1;G2),E,G0) :- !,$iso_check_a_goal53,1581 -'$iso_check_a_goal'((G1;G2),E,G0) :- !,$iso_check_a_goal53,1581 -'$iso_check_a_goal'((G1->G2),E,G0) :- !,$iso_check_a_goal56,1697 -'$iso_check_a_goal'((G1->G2),E,G0) :- !,$iso_check_a_goal56,1697 -'$iso_check_a_goal'((G1->G2),E,G0) :- !,$iso_check_a_goal56,1697 -'$iso_check_a_goal'(!,_,_) :- !.$iso_check_a_goal59,1814 -'$iso_check_a_goal'(!,_,_) :- !.$iso_check_a_goal59,1814 -'$iso_check_a_goal'(!,_,_) :- !.$iso_check_a_goal59,1814 -'$iso_check_a_goal'((_|_),E,G0) :-$iso_check_a_goal60,1847 -'$iso_check_a_goal'((_|_),E,G0) :-$iso_check_a_goal60,1847 -'$iso_check_a_goal'((_|_),E,G0) :-$iso_check_a_goal60,1847 -'$iso_check_a_goal'((_|_),_,_) :- !.$iso_check_a_goal63,1981 -'$iso_check_a_goal'((_|_),_,_) :- !.$iso_check_a_goal63,1981 -'$iso_check_a_goal'((_|_),_,_) :- !.$iso_check_a_goal63,1981 -'$iso_check_a_goal'(G,_,G0) :- $iso_check_a_goal64,2018 -'$iso_check_a_goal'(G,_,G0) :- $iso_check_a_goal64,2018 -'$iso_check_a_goal'(G,_,G0) :- $iso_check_a_goal64,2018 -'$iso_check_a_goal'(_,_,_).$iso_check_a_goal74,2238 -'$iso_check_a_goal'(_,_,_)./p,predicate,predicate definition74,2238 -'$iso_check_a_goal'(_,_,_).$iso_check_a_goal74,2238 -'$check_iso_strict_clause'((_:-B)) :- !,$check_iso_strict_clause76,2267 -'$check_iso_strict_clause'((_:-B)) :- !,$check_iso_strict_clause76,2267 -'$check_iso_strict_clause'((_:-B)) :- !,$check_iso_strict_clause76,2267 -'$check_iso_strict_clause'(_).$check_iso_strict_clause78,2338 -'$check_iso_strict_clause'(_)./p,predicate,predicate definition78,2338 -'$check_iso_strict_clause'(_).$check_iso_strict_clause78,2338 -'$check_iso_strict_body'((B1,B2)) :- !,$check_iso_strict_body80,2370 -'$check_iso_strict_body'((B1,B2)) :- !,$check_iso_strict_body80,2370 -'$check_iso_strict_body'((B1,B2)) :- !,$check_iso_strict_body80,2370 -'$check_iso_strict_body'((B1;B2)) :- !,$check_iso_strict_body83,2472 -'$check_iso_strict_body'((B1;B2)) :- !,$check_iso_strict_body83,2472 -'$check_iso_strict_body'((B1;B2)) :- !,$check_iso_strict_body83,2472 -'$check_iso_strict_body'((B1->B2)) :- !,$check_iso_strict_body86,2574 -'$check_iso_strict_body'((B1->B2)) :- !,$check_iso_strict_body86,2574 -'$check_iso_strict_body'((B1->B2)) :- !,$check_iso_strict_body86,2574 -'$check_iso_strict_body'(B) :-$check_iso_strict_body89,2677 -'$check_iso_strict_body'(B) :-$check_iso_strict_body89,2677 -'$check_iso_strict_body'(B) :-$check_iso_strict_body89,2677 -'$check_iso_strict_goal'(G) :-$check_iso_strict_goal92,2739 -'$check_iso_strict_goal'(G) :-$check_iso_strict_goal92,2739 -'$check_iso_strict_goal'(G) :-$check_iso_strict_goal92,2739 -'$check_iso_strict_goal'(_).$check_iso_strict_goal95,2838 -'$check_iso_strict_goal'(_)./p,predicate,predicate definition95,2838 -'$check_iso_strict_goal'(_).$check_iso_strict_goal95,2838 -'$check_iso_system_goal'(G) :-$check_iso_system_goal98,2869 -'$check_iso_system_goal'(G) :-$check_iso_system_goal98,2869 -'$check_iso_system_goal'(G) :-$check_iso_system_goal98,2869 -'$check_iso_system_goal'(G) :-$check_iso_system_goal100,2923 -'$check_iso_system_goal'(G) :-$check_iso_system_goal100,2923 -'$check_iso_system_goal'(G) :-$check_iso_system_goal100,2923 -'$iso_builtin'(abolish(_)).$iso_builtin103,3007 -'$iso_builtin'(abolish(_))./p,predicate,predicate definition103,3007 -'$iso_builtin'(abolish(_)).$iso_builtin103,3007 -'$iso_builtin'(acylic_term(_)).$iso_builtin104,3035 -'$iso_builtin'(acylic_term(_))./p,predicate,predicate definition104,3035 -'$iso_builtin'(acylic_term(_)).$iso_builtin104,3035 -'$iso_builtin'(arg(_,_,_)).$iso_builtin105,3067 -'$iso_builtin'(arg(_,_,_))./p,predicate,predicate definition105,3067 -'$iso_builtin'(arg(_,_,_)).$iso_builtin105,3067 -'$iso_builtin'(_=:=_).$iso_builtin106,3095 -'$iso_builtin'(_=:=_)./p,predicate,predicate definition106,3095 -'$iso_builtin'(_=:=_).$iso_builtin106,3095 -'$iso_builtin'(_=\=_).$iso_builtin107,3118 -'$iso_builtin'(_=\=_)./p,predicate,predicate definition107,3118 -'$iso_builtin'(_=\=_).$iso_builtin107,3118 -'$iso_builtin'(_>_).$iso_builtin108,3141 -'$iso_builtin'(_>_)./p,predicate,predicate definition108,3141 -'$iso_builtin'(_>_).$iso_builtin108,3141 -'$iso_builtin'(_>=_).$iso_builtin109,3162 -'$iso_builtin'(_>=_)./p,predicate,predicate definition109,3162 -'$iso_builtin'(_>=_).$iso_builtin109,3162 -'$iso_builtin'(_<_).$iso_builtin110,3184 -'$iso_builtin'(_<_)./p,predicate,predicate definition110,3184 -'$iso_builtin'(_<_).$iso_builtin110,3184 -'$iso_builtin'(_=<_).$iso_builtin111,3205 -'$iso_builtin'(_=<_)./p,predicate,predicate definition111,3205 -'$iso_builtin'(_=<_).$iso_builtin111,3205 -'$iso_builtin'(asserta(_)).$iso_builtin112,3227 -'$iso_builtin'(asserta(_))./p,predicate,predicate definition112,3227 -'$iso_builtin'(asserta(_)).$iso_builtin112,3227 -'$iso_builtin'(assertz(_)).$iso_builtin113,3255 -'$iso_builtin'(assertz(_))./p,predicate,predicate definition113,3255 -'$iso_builtin'(assertz(_)).$iso_builtin113,3255 -'$iso_builtin'(at_end_of_stream).$iso_builtin114,3283 -'$iso_builtin'(at_end_of_stream)./p,predicate,predicate definition114,3283 -'$iso_builtin'(at_end_of_stream).$iso_builtin114,3283 -'$iso_builtin'(at_end_of_stream(_)).$iso_builtin115,3317 -'$iso_builtin'(at_end_of_stream(_))./p,predicate,predicate definition115,3317 -'$iso_builtin'(at_end_of_stream(_)).$iso_builtin115,3317 -'$iso_builtin'(atom(_)).$iso_builtin116,3354 -'$iso_builtin'(atom(_))./p,predicate,predicate definition116,3354 -'$iso_builtin'(atom(_)).$iso_builtin116,3354 -'$iso_builtin'(atom_chars(_,_)).$iso_builtin117,3379 -'$iso_builtin'(atom_chars(_,_))./p,predicate,predicate definition117,3379 -'$iso_builtin'(atom_chars(_,_)).$iso_builtin117,3379 -'$iso_builtin'(atom_codes(_,_)).$iso_builtin118,3412 -'$iso_builtin'(atom_codes(_,_))./p,predicate,predicate definition118,3412 -'$iso_builtin'(atom_codes(_,_)).$iso_builtin118,3412 -'$iso_builtin'(atom_concat(_,_,_)).$iso_builtin119,3445 -'$iso_builtin'(atom_concat(_,_,_))./p,predicate,predicate definition119,3445 -'$iso_builtin'(atom_concat(_,_,_)).$iso_builtin119,3445 -'$iso_builtin'(atom_length(_,_)).$iso_builtin120,3481 -'$iso_builtin'(atom_length(_,_))./p,predicate,predicate definition120,3481 -'$iso_builtin'(atom_length(_,_)).$iso_builtin120,3481 -'$iso_builtin'(atomic(_)).$iso_builtin121,3515 -'$iso_builtin'(atomic(_))./p,predicate,predicate definition121,3515 -'$iso_builtin'(atomic(_)).$iso_builtin121,3515 -'$iso_builtin'(bagof(_,_,_)).$iso_builtin122,3542 -'$iso_builtin'(bagof(_,_,_))./p,predicate,predicate definition122,3542 -'$iso_builtin'(bagof(_,_,_)).$iso_builtin122,3542 -'$iso_builtin'(call(_)).$iso_builtin123,3572 -'$iso_builtin'(call(_))./p,predicate,predicate definition123,3572 -'$iso_builtin'(call(_)).$iso_builtin123,3572 -'$iso_builtin'(call(_,_)).$iso_builtin124,3597 -'$iso_builtin'(call(_,_))./p,predicate,predicate definition124,3597 -'$iso_builtin'(call(_,_)).$iso_builtin124,3597 -'$iso_builtin'(call(_,_,_)).$iso_builtin125,3624 -'$iso_builtin'(call(_,_,_))./p,predicate,predicate definition125,3624 -'$iso_builtin'(call(_,_,_)).$iso_builtin125,3624 -'$iso_builtin'(call(_,_,_,_)).$iso_builtin126,3653 -'$iso_builtin'(call(_,_,_,_))./p,predicate,predicate definition126,3653 -'$iso_builtin'(call(_,_,_,_)).$iso_builtin126,3653 -'$iso_builtin'(call(_,_,_,_,_)).$iso_builtin127,3684 -'$iso_builtin'(call(_,_,_,_,_))./p,predicate,predicate definition127,3684 -'$iso_builtin'(call(_,_,_,_,_)).$iso_builtin127,3684 -'$iso_builtin'(call(_,_,_,_,_,_)).$iso_builtin128,3717 -'$iso_builtin'(call(_,_,_,_,_,_))./p,predicate,predicate definition128,3717 -'$iso_builtin'(call(_,_,_,_,_,_)).$iso_builtin128,3717 -'$iso_builtin'(call(_,_,_,_,_,_,_)).$iso_builtin129,3752 -'$iso_builtin'(call(_,_,_,_,_,_,_))./p,predicate,predicate definition129,3752 -'$iso_builtin'(call(_,_,_,_,_,_,_)).$iso_builtin129,3752 -'$iso_builtin'(call(_,_,_,_,_,_,_,_)).$iso_builtin130,3789 -'$iso_builtin'(call(_,_,_,_,_,_,_,_))./p,predicate,predicate definition130,3789 -'$iso_builtin'(call(_,_,_,_,_,_,_,_)).$iso_builtin130,3789 -'$iso_builtin'(callable(_)).$iso_builtin131,3828 -'$iso_builtin'(callable(_))./p,predicate,predicate definition131,3828 -'$iso_builtin'(callable(_)).$iso_builtin131,3828 -'$iso_builtin'(catch(_,_,_)).$iso_builtin132,3857 -'$iso_builtin'(catch(_,_,_))./p,predicate,predicate definition132,3857 -'$iso_builtin'(catch(_,_,_)).$iso_builtin132,3857 -'$iso_builtin'(char_code(_,_)).$iso_builtin133,3887 -'$iso_builtin'(char_code(_,_))./p,predicate,predicate definition133,3887 -'$iso_builtin'(char_code(_,_)).$iso_builtin133,3887 -'$iso_builtin'(char_conversion(_,_)).$iso_builtin134,3919 -'$iso_builtin'(char_conversion(_,_))./p,predicate,predicate definition134,3919 -'$iso_builtin'(char_conversion(_,_)).$iso_builtin134,3919 -'$iso_builtin'(clause(_,_)).$iso_builtin135,3957 -'$iso_builtin'(clause(_,_))./p,predicate,predicate definition135,3957 -'$iso_builtin'(clause(_,_)).$iso_builtin135,3957 -'$iso_builtin'(close(_)).$iso_builtin136,3986 -'$iso_builtin'(close(_))./p,predicate,predicate definition136,3986 -'$iso_builtin'(close(_)).$iso_builtin136,3986 -'$iso_builtin'(close(_,_)).$iso_builtin137,4012 -'$iso_builtin'(close(_,_))./p,predicate,predicate definition137,4012 -'$iso_builtin'(close(_,_)).$iso_builtin137,4012 -'$iso_builtin'(compare(_,_,_)).$iso_builtin138,4040 -'$iso_builtin'(compare(_,_,_))./p,predicate,predicate definition138,4040 -'$iso_builtin'(compare(_,_,_)).$iso_builtin138,4040 -'$iso_builtin'(compound(_)).$iso_builtin139,4072 -'$iso_builtin'(compound(_))./p,predicate,predicate definition139,4072 -'$iso_builtin'(compound(_)).$iso_builtin139,4072 -'$iso_builtin'((_,_)).$iso_builtin140,4101 -'$iso_builtin'((_,_))./p,predicate,predicate definition140,4101 -'$iso_builtin'((_,_)).$iso_builtin140,4101 -'$iso_builtin'(copy_term(_,_)).$iso_builtin141,4124 -'$iso_builtin'(copy_term(_,_))./p,predicate,predicate definition141,4124 -'$iso_builtin'(copy_term(_,_)).$iso_builtin141,4124 -'$iso_builtin'(current_char_conversion(_,_)).$iso_builtin142,4156 -'$iso_builtin'(current_char_conversion(_,_))./p,predicate,predicate definition142,4156 -'$iso_builtin'(current_char_conversion(_,_)).$iso_builtin142,4156 -'$iso_builtin'(current_input(_)).$iso_builtin143,4202 -'$iso_builtin'(current_input(_))./p,predicate,predicate definition143,4202 -'$iso_builtin'(current_input(_)).$iso_builtin143,4202 -'$iso_builtin'(current_op(_,_,_)).$iso_builtin144,4236 -'$iso_builtin'(current_op(_,_,_))./p,predicate,predicate definition144,4236 -'$iso_builtin'(current_op(_,_,_)).$iso_builtin144,4236 -'$iso_builtin'(current_output(_)).$iso_builtin145,4271 -'$iso_builtin'(current_output(_))./p,predicate,predicate definition145,4271 -'$iso_builtin'(current_output(_)).$iso_builtin145,4271 -'$iso_builtin'(current_predicate(_)).$iso_builtin146,4306 -'$iso_builtin'(current_predicate(_))./p,predicate,predicate definition146,4306 -'$iso_builtin'(current_predicate(_)).$iso_builtin146,4306 -'$iso_builtin'(current_prolog_flag(_,_)).$iso_builtin147,4344 -'$iso_builtin'(current_prolog_flag(_,_))./p,predicate,predicate definition147,4344 -'$iso_builtin'(current_prolog_flag(_,_)).$iso_builtin147,4344 -'$iso_builtin'(!).$iso_builtin148,4386 -'$iso_builtin'(!)./p,predicate,predicate definition148,4386 -'$iso_builtin'(!).$iso_builtin148,4386 -'$iso_builtin'((_;_)).$iso_builtin149,4405 -'$iso_builtin'((_;_))./p,predicate,predicate definition149,4405 -'$iso_builtin'((_;_)).$iso_builtin149,4405 -'$iso_builtin'(fail).$iso_builtin150,4428 -'$iso_builtin'(fail)./p,predicate,predicate definition150,4428 -'$iso_builtin'(fail).$iso_builtin150,4428 -'$iso_builtin'(false).$iso_builtin151,4450 -'$iso_builtin'(false)./p,predicate,predicate definition151,4450 -'$iso_builtin'(false).$iso_builtin151,4450 -'$iso_builtin'(findall(_,_,_)).$iso_builtin152,4473 -'$iso_builtin'(findall(_,_,_))./p,predicate,predicate definition152,4473 -'$iso_builtin'(findall(_,_,_)).$iso_builtin152,4473 -'$iso_builtin'(float(_)).$iso_builtin153,4505 -'$iso_builtin'(float(_))./p,predicate,predicate definition153,4505 -'$iso_builtin'(float(_)).$iso_builtin153,4505 -'$iso_builtin'(abort).$iso_builtin154,4531 -'$iso_builtin'(abort)./p,predicate,predicate definition154,4531 -'$iso_builtin'(abort).$iso_builtin154,4531 -'$iso_builtin'(flush_output).$iso_builtin155,4554 -'$iso_builtin'(flush_output)./p,predicate,predicate definition155,4554 -'$iso_builtin'(flush_output).$iso_builtin155,4554 -'$iso_builtin'(flush_output(_)).$iso_builtin156,4584 -'$iso_builtin'(flush_output(_))./p,predicate,predicate definition156,4584 -'$iso_builtin'(flush_output(_)).$iso_builtin156,4584 -'$iso_builtin'(functor(_,_,_)).$iso_builtin157,4617 -'$iso_builtin'(functor(_,_,_))./p,predicate,predicate definition157,4617 -'$iso_builtin'(functor(_,_,_)).$iso_builtin157,4617 -'$iso_builtin'(get_byte(_)).$iso_builtin158,4649 -'$iso_builtin'(get_byte(_))./p,predicate,predicate definition158,4649 -'$iso_builtin'(get_byte(_)).$iso_builtin158,4649 -'$iso_builtin'(get_byte(_,_)).$iso_builtin159,4678 -'$iso_builtin'(get_byte(_,_))./p,predicate,predicate definition159,4678 -'$iso_builtin'(get_byte(_,_)).$iso_builtin159,4678 -'$iso_builtin'(get_char(_)).$iso_builtin160,4709 -'$iso_builtin'(get_char(_))./p,predicate,predicate definition160,4709 -'$iso_builtin'(get_char(_)).$iso_builtin160,4709 -'$iso_builtin'(get_char(_,_)).$iso_builtin161,4738 -'$iso_builtin'(get_char(_,_))./p,predicate,predicate definition161,4738 -'$iso_builtin'(get_char(_,_)).$iso_builtin161,4738 -'$iso_builtin'(get_code(_)).$iso_builtin162,4769 -'$iso_builtin'(get_code(_))./p,predicate,predicate definition162,4769 -'$iso_builtin'(get_code(_)).$iso_builtin162,4769 -'$iso_builtin'(get_code(_,_)).$iso_builtin163,4798 -'$iso_builtin'(get_code(_,_))./p,predicate,predicate definition163,4798 -'$iso_builtin'(get_code(_,_)).$iso_builtin163,4798 -'$iso_builtin'(ground(_)).$iso_builtin164,4829 -'$iso_builtin'(ground(_))./p,predicate,predicate definition164,4829 -'$iso_builtin'(ground(_)).$iso_builtin164,4829 -'$iso_builtin'(halt).$iso_builtin165,4856 -'$iso_builtin'(halt)./p,predicate,predicate definition165,4856 -'$iso_builtin'(halt).$iso_builtin165,4856 -'$iso_builtin'(halt(_)).$iso_builtin166,4878 -'$iso_builtin'(halt(_))./p,predicate,predicate definition166,4878 -'$iso_builtin'(halt(_)).$iso_builtin166,4878 -'$iso_builtin'((_->_)).$iso_builtin167,4903 -'$iso_builtin'((_->_))./p,predicate,predicate definition167,4903 -'$iso_builtin'((_->_)).$iso_builtin167,4903 -'$iso_builtin'(integer(_)).$iso_builtin168,4927 -'$iso_builtin'(integer(_))./p,predicate,predicate definition168,4927 -'$iso_builtin'(integer(_)).$iso_builtin168,4927 -'$iso_builtin'(_ is _).$iso_builtin169,4955 -'$iso_builtin'(_ is _)./p,predicate,predicate definition169,4955 -'$iso_builtin'(_ is _).$iso_builtin169,4955 -'$iso_builtin'(keysort(_,_)).$iso_builtin170,4979 -'$iso_builtin'(keysort(_,_))./p,predicate,predicate definition170,4979 -'$iso_builtin'(keysort(_,_)).$iso_builtin170,4979 -'$iso_builtin'(nl).$iso_builtin171,5009 -'$iso_builtin'(nl)./p,predicate,predicate definition171,5009 -'$iso_builtin'(nl).$iso_builtin171,5009 -'$iso_builtin'(nl(_)).$iso_builtin172,5029 -'$iso_builtin'(nl(_))./p,predicate,predicate definition172,5029 -'$iso_builtin'(nl(_)).$iso_builtin172,5029 -'$iso_builtin'(nonvar(_)).$iso_builtin173,5052 -'$iso_builtin'(nonvar(_))./p,predicate,predicate definition173,5052 -'$iso_builtin'(nonvar(_)).$iso_builtin173,5052 -'$iso_builtin'(\+(_)).$iso_builtin174,5079 -'$iso_builtin'(\+(_))./p,predicate,predicate definition174,5079 -'$iso_builtin'(\+(_)).$iso_builtin174,5079 -'$iso_builtin'(number(_)).$iso_builtin175,5102 -'$iso_builtin'(number(_))./p,predicate,predicate definition175,5102 -'$iso_builtin'(number(_)).$iso_builtin175,5102 -'$iso_builtin'(number_chars(_,_)).$iso_builtin176,5129 -'$iso_builtin'(number_chars(_,_))./p,predicate,predicate definition176,5129 -'$iso_builtin'(number_chars(_,_)).$iso_builtin176,5129 -'$iso_builtin'(number_codes(_,_)).$iso_builtin177,5164 -'$iso_builtin'(number_codes(_,_))./p,predicate,predicate definition177,5164 -'$iso_builtin'(number_codes(_,_)).$iso_builtin177,5164 -'$iso_builtin'(once(_)).$iso_builtin178,5199 -'$iso_builtin'(once(_))./p,predicate,predicate definition178,5199 -'$iso_builtin'(once(_)).$iso_builtin178,5199 -'$iso_builtin'(op(_,_,_)).$iso_builtin179,5224 -'$iso_builtin'(op(_,_,_))./p,predicate,predicate definition179,5224 -'$iso_builtin'(op(_,_,_)).$iso_builtin179,5224 -'$iso_builtin'(open(_,_,_)).$iso_builtin180,5251 -'$iso_builtin'(open(_,_,_))./p,predicate,predicate definition180,5251 -'$iso_builtin'(open(_,_,_)).$iso_builtin180,5251 -'$iso_builtin'(open(_,_,_,_)).$iso_builtin181,5280 -'$iso_builtin'(open(_,_,_,_))./p,predicate,predicate definition181,5280 -'$iso_builtin'(open(_,_,_,_)).$iso_builtin181,5280 -'$iso_builtin'(peek_byte(_)).$iso_builtin182,5311 -'$iso_builtin'(peek_byte(_))./p,predicate,predicate definition182,5311 -'$iso_builtin'(peek_byte(_)).$iso_builtin182,5311 -'$iso_builtin'(peek_byte(_,_)).$iso_builtin183,5341 -'$iso_builtin'(peek_byte(_,_))./p,predicate,predicate definition183,5341 -'$iso_builtin'(peek_byte(_,_)).$iso_builtin183,5341 -'$iso_builtin'(peek_char(_)).$iso_builtin184,5373 -'$iso_builtin'(peek_char(_))./p,predicate,predicate definition184,5373 -'$iso_builtin'(peek_char(_)).$iso_builtin184,5373 -'$iso_builtin'(peek_char(_,_)).$iso_builtin185,5403 -'$iso_builtin'(peek_char(_,_))./p,predicate,predicate definition185,5403 -'$iso_builtin'(peek_char(_,_)).$iso_builtin185,5403 -'$iso_builtin'(peek_code(_)).$iso_builtin186,5435 -'$iso_builtin'(peek_code(_))./p,predicate,predicate definition186,5435 -'$iso_builtin'(peek_code(_)).$iso_builtin186,5435 -'$iso_builtin'(peek_code(_,_)).$iso_builtin187,5465 -'$iso_builtin'(peek_code(_,_))./p,predicate,predicate definition187,5465 -'$iso_builtin'(peek_code(_,_)).$iso_builtin187,5465 -'$iso_builtin'(put_byte(_)).$iso_builtin188,5497 -'$iso_builtin'(put_byte(_))./p,predicate,predicate definition188,5497 -'$iso_builtin'(put_byte(_)).$iso_builtin188,5497 -'$iso_builtin'(put_byte(_,_)).$iso_builtin189,5526 -'$iso_builtin'(put_byte(_,_))./p,predicate,predicate definition189,5526 -'$iso_builtin'(put_byte(_,_)).$iso_builtin189,5526 -'$iso_builtin'(put_char(_)).$iso_builtin190,5557 -'$iso_builtin'(put_char(_))./p,predicate,predicate definition190,5557 -'$iso_builtin'(put_char(_)).$iso_builtin190,5557 -'$iso_builtin'(put_char(_,_)).$iso_builtin191,5586 -'$iso_builtin'(put_char(_,_))./p,predicate,predicate definition191,5586 -'$iso_builtin'(put_char(_,_)).$iso_builtin191,5586 -'$iso_builtin'(put_code(_)).$iso_builtin192,5617 -'$iso_builtin'(put_code(_))./p,predicate,predicate definition192,5617 -'$iso_builtin'(put_code(_)).$iso_builtin192,5617 -'$iso_builtin'(put_code(_,_)).$iso_builtin193,5646 -'$iso_builtin'(put_code(_,_))./p,predicate,predicate definition193,5646 -'$iso_builtin'(put_code(_,_)).$iso_builtin193,5646 -'$iso_builtin'(read(_)).$iso_builtin194,5677 -'$iso_builtin'(read(_))./p,predicate,predicate definition194,5677 -'$iso_builtin'(read(_)).$iso_builtin194,5677 -'$iso_builtin'(read(_,_)).$iso_builtin195,5702 -'$iso_builtin'(read(_,_))./p,predicate,predicate definition195,5702 -'$iso_builtin'(read(_,_)).$iso_builtin195,5702 -'$iso_builtin'(read_term(_,_)).$iso_builtin196,5729 -'$iso_builtin'(read_term(_,_))./p,predicate,predicate definition196,5729 -'$iso_builtin'(read_term(_,_)).$iso_builtin196,5729 -'$iso_builtin'(read_term(_,_,_)).$iso_builtin197,5761 -'$iso_builtin'(read_term(_,_,_))./p,predicate,predicate definition197,5761 -'$iso_builtin'(read_term(_,_,_)).$iso_builtin197,5761 -'$iso_builtin'(repeat).$iso_builtin198,5795 -'$iso_builtin'(repeat)./p,predicate,predicate definition198,5795 -'$iso_builtin'(repeat).$iso_builtin198,5795 -'$iso_builtin'(retract(_)).$iso_builtin199,5819 -'$iso_builtin'(retract(_))./p,predicate,predicate definition199,5819 -'$iso_builtin'(retract(_)).$iso_builtin199,5819 -'$iso_builtin'(retractall(_)).$iso_builtin200,5847 -'$iso_builtin'(retractall(_))./p,predicate,predicate definition200,5847 -'$iso_builtin'(retractall(_)).$iso_builtin200,5847 -'$iso_builtin'(set_input(_)).$iso_builtin201,5878 -'$iso_builtin'(set_input(_))./p,predicate,predicate definition201,5878 -'$iso_builtin'(set_input(_)).$iso_builtin201,5878 -'$iso_builtin'(set_output(_)).$iso_builtin202,5908 -'$iso_builtin'(set_output(_))./p,predicate,predicate definition202,5908 -'$iso_builtin'(set_output(_)).$iso_builtin202,5908 -'$iso_builtin'(set_prolog_flag(_,_)).$iso_builtin203,5939 -'$iso_builtin'(set_prolog_flag(_,_))./p,predicate,predicate definition203,5939 -'$iso_builtin'(set_prolog_flag(_,_)).$iso_builtin203,5939 -'$iso_builtin'(set_stream_position(_,_)).$iso_builtin204,5977 -'$iso_builtin'(set_stream_position(_,_))./p,predicate,predicate definition204,5977 -'$iso_builtin'(set_stream_position(_,_)).$iso_builtin204,5977 -'$iso_builtin'(setof(_,_,_)).$iso_builtin205,6019 -'$iso_builtin'(setof(_,_,_))./p,predicate,predicate definition205,6019 -'$iso_builtin'(setof(_,_,_)).$iso_builtin205,6019 -'$iso_builtin'(sort(_,_)).$iso_builtin206,6049 -'$iso_builtin'(sort(_,_))./p,predicate,predicate definition206,6049 -'$iso_builtin'(sort(_,_)).$iso_builtin206,6049 -'$iso_builtin'(stream_property(_,_)).$iso_builtin207,6076 -'$iso_builtin'(stream_property(_,_))./p,predicate,predicate definition207,6076 -'$iso_builtin'(stream_property(_,_)).$iso_builtin207,6076 -'$iso_builtin'(sub_atom(_,_,_,_,_)).$iso_builtin208,6114 -'$iso_builtin'(sub_atom(_,_,_,_,_))./p,predicate,predicate definition208,6114 -'$iso_builtin'(sub_atom(_,_,_,_,_)).$iso_builtin208,6114 -'$iso_builtin'(subsumes_term(_,_)).$iso_builtin209,6151 -'$iso_builtin'(subsumes_term(_,_))./p,predicate,predicate definition209,6151 -'$iso_builtin'(subsumes_term(_,_)).$iso_builtin209,6151 -'$iso_builtin'(_@>_).$iso_builtin210,6187 -'$iso_builtin'(_@>_)./p,predicate,predicate definition210,6187 -'$iso_builtin'(_@>_).$iso_builtin210,6187 -'$iso_builtin'(_@>=_).$iso_builtin211,6209 -'$iso_builtin'(_@>=_)./p,predicate,predicate definition211,6209 -'$iso_builtin'(_@>=_).$iso_builtin211,6209 -'$iso_builtin'(_==_).$iso_builtin212,6232 -'$iso_builtin'(_==_)./p,predicate,predicate definition212,6232 -'$iso_builtin'(_==_).$iso_builtin212,6232 -'$iso_builtin'(_@<_).$iso_builtin213,6254 -'$iso_builtin'(_@<_)./p,predicate,predicate definition213,6254 -'$iso_builtin'(_@<_).$iso_builtin213,6254 -'$iso_builtin'(_@=<_).$iso_builtin214,6276 -'$iso_builtin'(_@=<_)./p,predicate,predicate definition214,6276 -'$iso_builtin'(_@=<_).$iso_builtin214,6276 -'$iso_builtin'(_\==_).$iso_builtin215,6299 -'$iso_builtin'(_\==_)./p,predicate,predicate definition215,6299 -'$iso_builtin'(_\==_).$iso_builtin215,6299 -'$iso_builtin'(term_variables(_,_)).$iso_builtin216,6322 -'$iso_builtin'(term_variables(_,_))./p,predicate,predicate definition216,6322 -'$iso_builtin'(term_variables(_,_)).$iso_builtin216,6322 -'$iso_builtin'(throw(_)).$iso_builtin217,6359 -'$iso_builtin'(throw(_))./p,predicate,predicate definition217,6359 -'$iso_builtin'(throw(_)).$iso_builtin217,6359 -'$iso_builtin'(true).$iso_builtin218,6385 -'$iso_builtin'(true)./p,predicate,predicate definition218,6385 -'$iso_builtin'(true).$iso_builtin218,6385 -'$iso_builtin'(_\=_).$iso_builtin219,6407 -'$iso_builtin'(_\=_)./p,predicate,predicate definition219,6407 -'$iso_builtin'(_\=_).$iso_builtin219,6407 -'$iso_builtin'(_=_).$iso_builtin220,6429 -'$iso_builtin'(_=_)./p,predicate,predicate definition220,6429 -'$iso_builtin'(_=_).$iso_builtin220,6429 -'$iso_builtin'(unify_with_occurs_check(_,_)).$iso_builtin221,6450 -'$iso_builtin'(unify_with_occurs_check(_,_))./p,predicate,predicate definition221,6450 -'$iso_builtin'(unify_with_occurs_check(_,_)).$iso_builtin221,6450 -'$iso_builtin'(_384=.._385).$iso_builtin222,6496 -'$iso_builtin'(_384=.._385)./p,predicate,predicate definition222,6496 -'$iso_builtin'(_384=.._385).$iso_builtin222,6496 -'$iso_builtin'(var(_)).$iso_builtin223,6525 -'$iso_builtin'(var(_))./p,predicate,predicate definition223,6525 -'$iso_builtin'(var(_)).$iso_builtin223,6525 -'$iso_builtin'(write(_)).$iso_builtin224,6549 -'$iso_builtin'(write(_))./p,predicate,predicate definition224,6549 -'$iso_builtin'(write(_)).$iso_builtin224,6549 -'$iso_builtin'(write(_,_)).$iso_builtin225,6575 -'$iso_builtin'(write(_,_))./p,predicate,predicate definition225,6575 -'$iso_builtin'(write(_,_)).$iso_builtin225,6575 -'$iso_builtin'(write_canonical(_)).$iso_builtin226,6603 -'$iso_builtin'(write_canonical(_))./p,predicate,predicate definition226,6603 -'$iso_builtin'(write_canonical(_)).$iso_builtin226,6603 -'$iso_builtin'(write_canonical(_,_)).$iso_builtin227,6639 -'$iso_builtin'(write_canonical(_,_))./p,predicate,predicate definition227,6639 -'$iso_builtin'(write_canonical(_,_)).$iso_builtin227,6639 -'$iso_builtin'(write_term(_,_)).$iso_builtin228,6677 -'$iso_builtin'(write_term(_,_))./p,predicate,predicate definition228,6677 -'$iso_builtin'(write_term(_,_)).$iso_builtin228,6677 -'$iso_builtin'(write_term(_,_,_)).$iso_builtin229,6710 -'$iso_builtin'(write_term(_,_,_))./p,predicate,predicate definition229,6710 -'$iso_builtin'(write_term(_,_,_)).$iso_builtin229,6710 -'$iso_builtin'(writeq(_)).$iso_builtin230,6745 -'$iso_builtin'(writeq(_))./p,predicate,predicate definition230,6745 -'$iso_builtin'(writeq(_)).$iso_builtin230,6745 -'$iso_builtin'(writeq(_,_)).$iso_builtin231,6772 -'$iso_builtin'(writeq(_,_))./p,predicate,predicate definition231,6772 -'$iso_builtin'(writeq(_,_)).$iso_builtin231,6772 - -packages/python/swig/yap4py/prolog/pl/swi.yap,1627 -prolog:file_name_on_path(Path, ShortId) :-file_name_on_path14,359 -prolog:file_name_on_path(Path, ShortId) :-file_name_on_path14,359 -prolog:file_alias_path(Alias, Dir) :-file_alias_path30,703 -prolog:file_alias_path(Alias, Dir) :-file_alias_path30,703 -build_alias_cache :-build_alias_cache41,920 -search_path('.', Here, 999, DirLen) :-search_path49,1166 -search_path('.', Here, 999, DirLen) :-search_path49,1166 -search_path('.', Here, 999, DirLen) :-search_path49,1166 -search_path(Alias, Dir, AliasLen, DirLen) :-search_path53,1295 -search_path(Alias, Dir, AliasLen, DirLen) :-search_path53,1295 -search_path(Alias, Dir, AliasLen, DirLen) :-search_path53,1295 -ensure_slash(Dir, Dir) :-ensure_slash68,1702 -ensure_slash(Dir, Dir) :-ensure_slash68,1702 -ensure_slash(Dir, Dir) :-ensure_slash68,1702 -ensure_slash(Dir0, Dir) :-ensure_slash70,1759 -ensure_slash(Dir0, Dir) :-ensure_slash70,1759 -ensure_slash(Dir0, Dir) :-ensure_slash70,1759 -reverse(List, Reversed) :-reverse82,1959 -reverse(List, Reversed) :-reverse82,1959 -reverse(List, Reversed) :-reverse82,1959 -reverse([], Reversed, Reversed).reverse85,2017 -reverse([], Reversed, Reversed).reverse85,2017 -reverse([Head|Tail], Sofar, Reversed) :-reverse86,2050 -reverse([Head|Tail], Sofar, Reversed) :-reverse86,2050 -reverse([Head|Tail], Sofar, Reversed) :-reverse86,2050 -prolog:win_add_dll_directory(Dir) :-win_add_dll_directory96,2327 -prolog:win_add_dll_directory(Dir) :-win_add_dll_directory96,2327 -prolog:win_add_dll_directory(Dir) :-win_add_dll_directory98,2406 -prolog:win_add_dll_directory(Dir) :-win_add_dll_directory98,2406 - -packages/python/swig/yap4py/prolog/pl/tabling.yap,21041 -:- table son/3.table102,3440 -:- table son/3.table102,3440 -:- table father/2.table103,3456 -:- table father/2.table103,3456 -:- table mother/2.table104,3475 -:- table mother/2.table104,3475 -:- table son/3, father/2, mother/2.table109,3511 -:- table son/3, father/2, mother/2.table109,3511 -show_tabled_predicates :- show_tabled_predicates187,5901 -show_global_trie :-show_global_trie191,5991 -show_all_tables :-show_all_tables195,6068 -show_all_local_tables :-show_all_local_tables199,6143 -global_trie_statistics :-global_trie_statistics203,6230 -tabling_statistics :-tabling_statistics215,6407 -tabling_statistics(total_memory,[BytesInUse,BytesAllocated]) :-tabling_statistics226,6761 -tabling_statistics(total_memory,[BytesInUse,BytesAllocated]) :-tabling_statistics226,6761 -tabling_statistics(total_memory,[BytesInUse,BytesAllocated]) :-tabling_statistics226,6761 -tabling_statistics(table_entries,[BytesInUse,StructsInUse]) :-tabling_statistics228,6885 -tabling_statistics(table_entries,[BytesInUse,StructsInUse]) :-tabling_statistics228,6885 -tabling_statistics(table_entries,[BytesInUse,StructsInUse]) :-tabling_statistics228,6885 -tabling_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-tabling_statistics230,7006 -tabling_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-tabling_statistics230,7006 -tabling_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-tabling_statistics230,7006 -tabling_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-tabling_statistics232,7128 -tabling_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-tabling_statistics232,7128 -tabling_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-tabling_statistics232,7128 -tabling_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics234,7253 -tabling_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics234,7253 -tabling_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics234,7253 -tabling_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics236,7379 -tabling_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics236,7379 -tabling_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics236,7379 -tabling_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics238,7504 -tabling_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics238,7504 -tabling_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics238,7504 -tabling_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics240,7631 -tabling_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics240,7631 -tabling_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics240,7631 -tabling_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics242,7757 -tabling_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics242,7757 -tabling_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics242,7757 -tabling_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics244,7883 -tabling_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics244,7883 -tabling_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics244,7883 -tabling_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-tabling_statistics246,8010 -tabling_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-tabling_statistics246,8010 -tabling_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-tabling_statistics246,8010 -tabling_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics248,8134 -tabling_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics248,8134 -tabling_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics248,8134 -table(Pred) :-table257,8485 -table(Pred) :-table257,8485 -table(Pred) :-table257,8485 -'$do_table'(Mod,Pred) :-$do_table261,8554 -'$do_table'(Mod,Pred) :-$do_table261,8554 -'$do_table'(Mod,Pred) :-$do_table261,8554 -'$do_table'(_,Mod:Pred) :- !,$do_table264,8650 -'$do_table'(_,Mod:Pred) :- !,$do_table264,8650 -'$do_table'(_,Mod:Pred) :- !,$do_table264,8650 -'$do_table'(_,[]) :- !.$do_table266,8706 -'$do_table'(_,[]) :- !.$do_table266,8706 -'$do_table'(_,[]) :- !.$do_table266,8706 -'$do_table'(Mod,[HPred|TPred]) :- !,$do_table267,8730 -'$do_table'(Mod,[HPred|TPred]) :- !,$do_table267,8730 -'$do_table'(Mod,[HPred|TPred]) :- !,$do_table267,8730 -'$do_table'(Mod,(Pred1,Pred2)) :- !,$do_table270,8821 -'$do_table'(Mod,(Pred1,Pred2)) :- !,$do_table270,8821 -'$do_table'(Mod,(Pred1,Pred2)) :- !,$do_table270,8821 -'$do_table'(Mod,PredName/PredArity) :- $do_table273,8912 -'$do_table'(Mod,PredName/PredArity) :- $do_table273,8912 -'$do_table'(Mod,PredName/PredArity) :- $do_table273,8912 -'$do_table'(Mod,PredDeclaration) :- $do_table278,9079 -'$do_table'(Mod,PredDeclaration) :- $do_table278,9079 -'$do_table'(Mod,PredDeclaration) :- $do_table278,9079 -'$do_table'(Mod,Pred) :-$do_table283,9316 -'$do_table'(Mod,Pred) :-$do_table283,9316 -'$do_table'(Mod,Pred) :-$do_table283,9316 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table286,9404 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table286,9404 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table286,9404 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table290,9637 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table290,9637 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table290,9637 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table293,9765 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table293,9765 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table293,9765 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table296,9906 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table296,9906 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table296,9906 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table300,10082 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table300,10082 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table300,10082 -'$transl_to_mode_list'([],[],0) :- !.$transl_to_mode_list304,10276 -'$transl_to_mode_list'([],[],0) :- !.$transl_to_mode_list304,10276 -'$transl_to_mode_list'([],[],0) :- !.$transl_to_mode_list304,10276 -'$transl_to_mode_list'([TextualMode|L],[Mode|ModeList],Arity) :-$transl_to_mode_list305,10314 -'$transl_to_mode_list'([TextualMode|L],[Mode|ModeList],Arity) :-$transl_to_mode_list305,10314 -'$transl_to_mode_list'([TextualMode|L],[Mode|ModeList],Arity) :-$transl_to_mode_list305,10314 -'$transl_to_mode_directed_tabling'(index,1).$transl_to_mode_directed_tabling311,10565 -'$transl_to_mode_directed_tabling'(index,1)./p,predicate,predicate definition311,10565 -'$transl_to_mode_directed_tabling'(index,1).$transl_to_mode_directed_tabling311,10565 -'$transl_to_mode_directed_tabling'(min,2).$transl_to_mode_directed_tabling312,10610 -'$transl_to_mode_directed_tabling'(min,2)./p,predicate,predicate definition312,10610 -'$transl_to_mode_directed_tabling'(min,2).$transl_to_mode_directed_tabling312,10610 -'$transl_to_mode_directed_tabling'(max,3).$transl_to_mode_directed_tabling313,10653 -'$transl_to_mode_directed_tabling'(max,3)./p,predicate,predicate definition313,10653 -'$transl_to_mode_directed_tabling'(max,3).$transl_to_mode_directed_tabling313,10653 -'$transl_to_mode_directed_tabling'(all,4).$transl_to_mode_directed_tabling314,10696 -'$transl_to_mode_directed_tabling'(all,4)./p,predicate,predicate definition314,10696 -'$transl_to_mode_directed_tabling'(all,4).$transl_to_mode_directed_tabling314,10696 -'$transl_to_mode_directed_tabling'(sum,5).$transl_to_mode_directed_tabling315,10739 -'$transl_to_mode_directed_tabling'(sum,5)./p,predicate,predicate definition315,10739 -'$transl_to_mode_directed_tabling'(sum,5).$transl_to_mode_directed_tabling315,10739 -'$transl_to_mode_directed_tabling'(last,6).$transl_to_mode_directed_tabling316,10782 -'$transl_to_mode_directed_tabling'(last,6)./p,predicate,predicate definition316,10782 -'$transl_to_mode_directed_tabling'(last,6).$transl_to_mode_directed_tabling316,10782 -'$transl_to_mode_directed_tabling'(first,7).$transl_to_mode_directed_tabling317,10826 -'$transl_to_mode_directed_tabling'(first,7)./p,predicate,predicate definition317,10826 -'$transl_to_mode_directed_tabling'(first,7).$transl_to_mode_directed_tabling317,10826 -'$transl_to_mode_directed_tabling'(+,1).$transl_to_mode_directed_tabling319,10897 -'$transl_to_mode_directed_tabling'(+,1)./p,predicate,predicate definition319,10897 -'$transl_to_mode_directed_tabling'(+,1).$transl_to_mode_directed_tabling319,10897 -'$transl_to_mode_directed_tabling'(@,4).$transl_to_mode_directed_tabling320,10938 -'$transl_to_mode_directed_tabling'(@,4)./p,predicate,predicate definition320,10938 -'$transl_to_mode_directed_tabling'(@,4).$transl_to_mode_directed_tabling320,10938 -'$transl_to_mode_directed_tabling'(-,7).$transl_to_mode_directed_tabling321,10979 -'$transl_to_mode_directed_tabling'(-,7)./p,predicate,predicate definition321,10979 -'$transl_to_mode_directed_tabling'(-,7).$transl_to_mode_directed_tabling321,10979 -is_tabled(Pred) :- is_tabled329,11246 -is_tabled(Pred) :- is_tabled329,11246 -is_tabled(Pred) :- is_tabled329,11246 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled333,11325 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled333,11325 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled333,11325 -'$do_is_tabled'(_,Mod:Pred) :- !, $do_is_tabled336,11430 -'$do_is_tabled'(_,Mod:Pred) :- !, $do_is_tabled336,11430 -'$do_is_tabled'(_,Mod:Pred) :- !, $do_is_tabled336,11430 -'$do_is_tabled'(_,[]) :- !.$do_is_tabled338,11495 -'$do_is_tabled'(_,[]) :- !.$do_is_tabled338,11495 -'$do_is_tabled'(_,[]) :- !.$do_is_tabled338,11495 -'$do_is_tabled'(Mod,[HPred|TPred]) :- !,$do_is_tabled339,11523 -'$do_is_tabled'(Mod,[HPred|TPred]) :- !,$do_is_tabled339,11523 -'$do_is_tabled'(Mod,[HPred|TPred]) :- !,$do_is_tabled339,11523 -'$do_is_tabled'(Mod,(Pred1,Pred2)) :- !,$do_is_tabled342,11626 -'$do_is_tabled'(Mod,(Pred1,Pred2)) :- !,$do_is_tabled342,11626 -'$do_is_tabled'(Mod,(Pred1,Pred2)) :- !,$do_is_tabled342,11626 -'$do_is_tabled'(Mod,PredName/PredArity) :- $do_is_tabled345,11729 -'$do_is_tabled'(Mod,PredName/PredArity) :- $do_is_tabled345,11729 -'$do_is_tabled'(Mod,PredName/PredArity) :- $do_is_tabled345,11729 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled351,11943 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled351,11943 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled351,11943 -tabling_mode(Pred,Options) :- tabling_mode360,12265 -tabling_mode(Pred,Options) :- tabling_mode360,12265 -tabling_mode(Pred,Options) :- tabling_mode360,12265 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode364,12366 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode364,12366 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode364,12366 -'$do_tabling_mode'(_,Mod:Pred,Options) :- !, $do_tabling_mode367,12493 -'$do_tabling_mode'(_,Mod:Pred,Options) :- !, $do_tabling_mode367,12493 -'$do_tabling_mode'(_,Mod:Pred,Options) :- !, $do_tabling_mode367,12493 -'$do_tabling_mode'(_,[],_) :- !.$do_tabling_mode369,12580 -'$do_tabling_mode'(_,[],_) :- !.$do_tabling_mode369,12580 -'$do_tabling_mode'(_,[],_) :- !.$do_tabling_mode369,12580 -'$do_tabling_mode'(Mod,[HPred|TPred],Options) :- !,$do_tabling_mode370,12613 -'$do_tabling_mode'(Mod,[HPred|TPred],Options) :- !,$do_tabling_mode370,12613 -'$do_tabling_mode'(Mod,[HPred|TPred],Options) :- !,$do_tabling_mode370,12613 -'$do_tabling_mode'(Mod,(Pred1,Pred2),Options) :- !,$do_tabling_mode373,12749 -'$do_tabling_mode'(Mod,(Pred1,Pred2),Options) :- !,$do_tabling_mode373,12749 -'$do_tabling_mode'(Mod,(Pred1,Pred2),Options) :- !,$do_tabling_mode373,12749 -'$do_tabling_mode'(Mod,PredName/PredArity,Options) :- $do_tabling_mode376,12885 -'$do_tabling_mode'(Mod,PredName/PredArity,Options) :- $do_tabling_mode376,12885 -'$do_tabling_mode'(Mod,PredName/PredArity,Options) :- $do_tabling_mode376,12885 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode386,13286 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode386,13286 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode386,13286 -'$set_tabling_mode'(Mod,PredFunctor,Options) :-$set_tabling_mode389,13405 -'$set_tabling_mode'(Mod,PredFunctor,Options) :-$set_tabling_mode389,13405 -'$set_tabling_mode'(Mod,PredFunctor,Options) :-$set_tabling_mode389,13405 -'$set_tabling_mode'(_,_,[]) :- !.$set_tabling_mode392,13520 -'$set_tabling_mode'(_,_,[]) :- !.$set_tabling_mode392,13520 -'$set_tabling_mode'(_,_,[]) :- !.$set_tabling_mode392,13520 -'$set_tabling_mode'(Mod,PredFunctor,[HOption|TOption]) :- !,$set_tabling_mode393,13554 -'$set_tabling_mode'(Mod,PredFunctor,[HOption|TOption]) :- !,$set_tabling_mode393,13554 -'$set_tabling_mode'(Mod,PredFunctor,[HOption|TOption]) :- !,$set_tabling_mode393,13554 -'$set_tabling_mode'(Mod,PredFunctor,(Option1,Option2)) :- !,$set_tabling_mode396,13713 -'$set_tabling_mode'(Mod,PredFunctor,(Option1,Option2)) :- !,$set_tabling_mode396,13713 -'$set_tabling_mode'(Mod,PredFunctor,(Option1,Option2)) :- !,$set_tabling_mode396,13713 -'$set_tabling_mode'(Mod,PredFunctor,Option) :- $set_tabling_mode399,13872 -'$set_tabling_mode'(Mod,PredFunctor,Option) :- $set_tabling_mode399,13872 -'$set_tabling_mode'(Mod,PredFunctor,Option) :- $set_tabling_mode399,13872 -'$set_tabling_mode'(Mod,PredFunctor,Options) :- $set_tabling_mode402,14020 -'$set_tabling_mode'(Mod,PredFunctor,Options) :- $set_tabling_mode402,14020 -'$set_tabling_mode'(Mod,PredFunctor,Options) :- $set_tabling_mode402,14020 -'$transl_to_pred_flag_tabling_mode'(1,batched).$transl_to_pred_flag_tabling_mode407,14271 -'$transl_to_pred_flag_tabling_mode'(1,batched)./p,predicate,predicate definition407,14271 -'$transl_to_pred_flag_tabling_mode'(1,batched).$transl_to_pred_flag_tabling_mode407,14271 -'$transl_to_pred_flag_tabling_mode'(2,local).$transl_to_pred_flag_tabling_mode408,14319 -'$transl_to_pred_flag_tabling_mode'(2,local)./p,predicate,predicate definition408,14319 -'$transl_to_pred_flag_tabling_mode'(2,local).$transl_to_pred_flag_tabling_mode408,14319 -'$transl_to_pred_flag_tabling_mode'(3,exec_answers).$transl_to_pred_flag_tabling_mode409,14365 -'$transl_to_pred_flag_tabling_mode'(3,exec_answers)./p,predicate,predicate definition409,14365 -'$transl_to_pred_flag_tabling_mode'(3,exec_answers).$transl_to_pred_flag_tabling_mode409,14365 -'$transl_to_pred_flag_tabling_mode'(4,load_answers).$transl_to_pred_flag_tabling_mode410,14418 -'$transl_to_pred_flag_tabling_mode'(4,load_answers)./p,predicate,predicate definition410,14418 -'$transl_to_pred_flag_tabling_mode'(4,load_answers).$transl_to_pred_flag_tabling_mode410,14418 -'$transl_to_pred_flag_tabling_mode'(5,local_trie).$transl_to_pred_flag_tabling_mode411,14471 -'$transl_to_pred_flag_tabling_mode'(5,local_trie)./p,predicate,predicate definition411,14471 -'$transl_to_pred_flag_tabling_mode'(5,local_trie).$transl_to_pred_flag_tabling_mode411,14471 -'$transl_to_pred_flag_tabling_mode'(6,global_trie).$transl_to_pred_flag_tabling_mode412,14522 -'$transl_to_pred_flag_tabling_mode'(6,global_trie)./p,predicate,predicate definition412,14522 -'$transl_to_pred_flag_tabling_mode'(6,global_trie).$transl_to_pred_flag_tabling_mode412,14522 -'$transl_to_pred_flag_tabling_mode'(7,coinductive).$transl_to_pred_flag_tabling_mode413,14574 -'$transl_to_pred_flag_tabling_mode'(7,coinductive)./p,predicate,predicate definition413,14574 -'$transl_to_pred_flag_tabling_mode'(7,coinductive).$transl_to_pred_flag_tabling_mode413,14574 -abolish_table(Pred) :-abolish_table421,14852 -abolish_table(Pred) :-abolish_table421,14852 -abolish_table(Pred) :-abolish_table421,14852 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table425,14937 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table425,14937 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table425,14937 -'$do_abolish_table'(_,Mod:Pred) :- !,$do_abolish_table428,15048 -'$do_abolish_table'(_,Mod:Pred) :- !,$do_abolish_table428,15048 -'$do_abolish_table'(_,Mod:Pred) :- !,$do_abolish_table428,15048 -'$do_abolish_table'(_,[]) :- !.$do_abolish_table430,15120 -'$do_abolish_table'(_,[]) :- !.$do_abolish_table430,15120 -'$do_abolish_table'(_,[]) :- !.$do_abolish_table430,15120 -'$do_abolish_table'(Mod,[HPred|TPred]) :- !,$do_abolish_table431,15152 -'$do_abolish_table'(Mod,[HPred|TPred]) :- !,$do_abolish_table431,15152 -'$do_abolish_table'(Mod,[HPred|TPred]) :- !,$do_abolish_table431,15152 -'$do_abolish_table'(Mod,(Pred1,Pred2)) :- !,$do_abolish_table434,15267 -'$do_abolish_table'(Mod,(Pred1,Pred2)) :- !,$do_abolish_table434,15267 -'$do_abolish_table'(Mod,(Pred1,Pred2)) :- !,$do_abolish_table434,15267 -'$do_abolish_table'(Mod,PredName/PredArity) :- $do_abolish_table437,15382 -'$do_abolish_table'(Mod,PredName/PredArity) :- $do_abolish_table437,15382 -'$do_abolish_table'(Mod,PredName/PredArity) :- $do_abolish_table437,15382 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table447,15760 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table447,15760 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table447,15760 -show_table(Pred) :-show_table457,16163 -show_table(Pred) :-show_table457,16163 -show_table(Pred) :-show_table457,16163 -show_table(Stream,Pred) :-show_table461,16239 -show_table(Stream,Pred) :-show_table461,16239 -show_table(Stream,Pred) :-show_table461,16239 -'$do_show_table'(_,Mod,Pred) :-$do_show_table465,16332 -'$do_show_table'(_,Mod,Pred) :-$do_show_table465,16332 -'$do_show_table'(_,Mod,Pred) :-$do_show_table465,16332 -'$do_show_table'(Stream,_,Mod:Pred) :- !,$do_show_table468,16439 -'$do_show_table'(Stream,_,Mod:Pred) :- !,$do_show_table468,16439 -'$do_show_table'(Stream,_,Mod:Pred) :- !,$do_show_table468,16439 -'$do_show_table'(_,_,[]) :- !.$do_show_table470,16519 -'$do_show_table'(_,_,[]) :- !.$do_show_table470,16519 -'$do_show_table'(_,_,[]) :- !.$do_show_table470,16519 -'$do_show_table'(Stream,Mod,[HPred|TPred]) :- !,$do_show_table471,16550 -'$do_show_table'(Stream,Mod,[HPred|TPred]) :- !,$do_show_table471,16550 -'$do_show_table'(Stream,Mod,[HPred|TPred]) :- !,$do_show_table471,16550 -'$do_show_table'(Stream,Mod,(Pred1,Pred2)) :- !,$do_show_table474,16677 -'$do_show_table'(Stream,Mod,(Pred1,Pred2)) :- !,$do_show_table474,16677 -'$do_show_table'(Stream,Mod,(Pred1,Pred2)) :- !,$do_show_table474,16677 -'$do_show_table'(Stream,Mod,PredName/PredArity) :- $do_show_table477,16804 -'$do_show_table'(Stream,Mod,PredName/PredArity) :- $do_show_table477,16804 -'$do_show_table'(Stream,Mod,PredName/PredArity) :- $do_show_table477,16804 -'$do_show_table'(_,Mod,Pred) :-$do_show_table487,17187 -'$do_show_table'(_,Mod,Pred) :-$do_show_table487,17187 -'$do_show_table'(_,Mod,Pred) :-$do_show_table487,17187 -table_statistics(Pred) :-table_statistics497,17586 -table_statistics(Pred) :-table_statistics497,17586 -table_statistics(Pred) :-table_statistics497,17586 -table_statistics(Stream,Pred) :-table_statistics501,17674 -table_statistics(Stream,Pred) :-table_statistics501,17674 -table_statistics(Stream,Pred) :-table_statistics501,17674 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics505,17779 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics505,17779 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics505,17779 -'$do_table_statistics'(Stream,_,Mod:Pred) :- !,$do_table_statistics508,17898 -'$do_table_statistics'(Stream,_,Mod:Pred) :- !,$do_table_statistics508,17898 -'$do_table_statistics'(Stream,_,Mod:Pred) :- !,$do_table_statistics508,17898 -'$do_table_statistics'(_,_,[]) :- !.$do_table_statistics510,17990 -'$do_table_statistics'(_,_,[]) :- !.$do_table_statistics510,17990 -'$do_table_statistics'(_,_,[]) :- !.$do_table_statistics510,17990 -'$do_table_statistics'(Stream,Mod,[HPred|TPred]) :- !,$do_table_statistics511,18027 -'$do_table_statistics'(Stream,Mod,[HPred|TPred]) :- !,$do_table_statistics511,18027 -'$do_table_statistics'(Stream,Mod,[HPred|TPred]) :- !,$do_table_statistics511,18027 -'$do_table_statistics'(Stream,Mod,(Pred1,Pred2)) :- !,$do_table_statistics514,18172 -'$do_table_statistics'(Stream,Mod,(Pred1,Pred2)) :- !,$do_table_statistics514,18172 -'$do_table_statistics'(Stream,Mod,(Pred1,Pred2)) :- !,$do_table_statistics514,18172 -'$do_table_statistics'(Stream,Mod,PredName/PredArity) :- $do_table_statistics517,18317 -'$do_table_statistics'(Stream,Mod,PredName/PredArity) :- $do_table_statistics517,18317 -'$do_table_statistics'(Stream,Mod,PredName/PredArity) :- $do_table_statistics517,18317 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics527,18718 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics527,18718 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics527,18718 - -packages/python/swig/yap4py/prolog/pl/threads.yap,36723 -volatile(P) :- var(P),volatile94,3195 -volatile(P) :- var(P),volatile94,3195 -volatile(P) :- var(P),volatile94,3195 -volatile(M:P) :-volatile96,3266 -volatile(M:P) :-volatile96,3266 -volatile(M:P) :-volatile96,3266 -volatile((G1,G2)) :-volatile98,3305 -volatile((G1,G2)) :-volatile98,3305 -volatile((G1,G2)) :-volatile98,3305 -volatile(P) :-volatile102,3395 -volatile(P) :-volatile102,3395 -volatile(P) :-volatile102,3395 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$do_volatile'(P,M) :- dynamic(M:P)./p,predicate,predicate definition106,3456 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$top_thread_goal'(G, Detached) :-$top_thread_goal129,3891 -'$top_thread_goal'(G, Detached) :-$top_thread_goal129,3891 -'$top_thread_goal'(G, Detached) :-$top_thread_goal129,3891 -'$close_thread'(Status, _Detached) :-$close_thread139,4312 -'$close_thread'(Status, _Detached) :-$close_thread139,4312 -'$close_thread'(Status, _Detached) :-$close_thread139,4312 -'$record_thread_status'(Id0,Stat) :- !,$record_thread_status147,4585 -'$record_thread_status'(Id0,Stat) :- !,$record_thread_status147,4585 -'$record_thread_status'(Id0,Stat) :- !,$record_thread_status147,4585 -thread_create(Goal) :-thread_create163,4931 -thread_create(Goal) :-thread_create163,4931 -thread_create(Goal) :-thread_create163,4931 -thread_create(Goal, Id) :-thread_create185,5466 -thread_create(Goal, Id) :-thread_create185,5466 -thread_create(Goal, Id) :-thread_create185,5466 -thread_create(Goal, Id, Options) :-thread_create244,7592 -thread_create(Goal, Id, Options) :-thread_create244,7592 -thread_create(Goal, Id, Options) :-thread_create244,7592 -'$erase_thread_info'(Id) :-$erase_thread_info261,8130 -'$erase_thread_info'(Id) :-$erase_thread_info261,8130 -'$erase_thread_info'(Id) :-$erase_thread_info261,8130 -'$erase_thread_info'(Id) :-$erase_thread_info265,8213 -'$erase_thread_info'(Id) :-$erase_thread_info265,8213 -'$erase_thread_info'(Id) :-$erase_thread_info265,8213 -'$erase_thread_info'(_).$erase_thread_info269,8302 -'$erase_thread_info'(_)./p,predicate,predicate definition269,8302 -'$erase_thread_info'(_).$erase_thread_info269,8302 -'$thread_options'(Opts, Alias, Stack, Trail, System, Detached, AtExit, G) :-$thread_options272,8329 -'$thread_options'(Opts, Alias, Stack, Trail, System, Detached, AtExit, G) :-$thread_options272,8329 -'$thread_options'(Opts, Alias, Stack, Trail, System, Detached, AtExit, G) :-$thread_options272,8329 -'$thread_options'([], _, Stack, Trail, System, Detached, AtExit, _M, _) :-$thread_options294,8763 -'$thread_options'([], _, Stack, Trail, System, Detached, AtExit, _M, _) :-$thread_options294,8763 -'$thread_options'([], _, Stack, Trail, System, Detached, AtExit, _M, _) :-$thread_options294,8763 -'$thread_options'([Opt|Opts], Alias, Stack, Trail, System, Detached, AtExit, M, G0) :-$thread_options301,9199 -'$thread_options'([Opt|Opts], Alias, Stack, Trail, System, Detached, AtExit, M, G0) :-$thread_options301,9199 -'$thread_options'([Opt|Opts], Alias, Stack, Trail, System, Detached, AtExit, M, G0) :-$thread_options301,9199 -'$thread_option'(Option, _, _, _, _, _, _, _, G0) :- var(Option), !,$thread_option305,9445 -'$thread_option'(Option, _, _, _, _, _, _, _, G0) :- var(Option), !,$thread_option305,9445 -'$thread_option'(Option, _, _, _, _, _, _, _, G0) :- var(Option), !,$thread_option305,9445 -'$thread_option'(alias(Alias), Alias, _, _, _, _, _, _, G0) :- !,$thread_option307,9552 -'$thread_option'(alias(Alias), Alias, _, _, _, _, _, _, G0) :- !,$thread_option307,9552 -'$thread_option'(alias(Alias), Alias, _, _, _, _, _, _, G0) :- !,$thread_option307,9552 -'$thread_option'(stack(Stack), _, Stack, _, _, _, _, _, G0) :- !,$thread_option309,9688 -'$thread_option'(stack(Stack), _, Stack, _, _, _, _, _, G0) :- !,$thread_option309,9688 -'$thread_option'(stack(Stack), _, Stack, _, _, _, _, _, G0) :- !,$thread_option309,9688 -'$thread_option'(trail(Trail), _, _, Trail, _, _, _, _, G0) :- !,$thread_option311,9830 -'$thread_option'(trail(Trail), _, _, Trail, _, _, _, _, G0) :- !,$thread_option311,9830 -'$thread_option'(trail(Trail), _, _, Trail, _, _, _, _, G0) :- !,$thread_option311,9830 -'$thread_option'(system(System), _, _, _, System, _, _, _, G0) :- !,$thread_option313,9972 -'$thread_option'(system(System), _, _, _, System, _, _, _, G0) :- !,$thread_option313,9972 -'$thread_option'(system(System), _, _, _, System, _, _, _, G0) :- !,$thread_option313,9972 -'$thread_option'(detached(Detached), _, _, _, _, Detached, _, _, G0) :- !,$thread_option315,10119 -'$thread_option'(detached(Detached), _, _, _, _, Detached, _, _, G0) :- !,$thread_option315,10119 -'$thread_option'(detached(Detached), _, _, _, _, Detached, _, _, G0) :- !,$thread_option315,10119 -'$thread_option'(at_exit(AtExit), _, _, _, _, _, AtExit, _M, G0) :- !,$thread_option317,10314 -'$thread_option'(at_exit(AtExit), _, _, _, _, _, AtExit, _M, G0) :- !,$thread_option317,10314 -'$thread_option'(at_exit(AtExit), _, _, _, _, _, AtExit, _M, G0) :- !,$thread_option317,10314 -'$thread_option'(_Option, _, _, _, _, _, _, _, _G0).$thread_option320,10495 -'$thread_option'(_Option, _, _, _, _, _, _, _, _G0)./p,predicate,predicate definition320,10495 -'$thread_option'(_Option, _, _, _, _, _, _, _, _G0).$thread_option320,10495 -'$record_alias_info'(_, Alias) :-$record_alias_info323,10603 -'$record_alias_info'(_, Alias) :-$record_alias_info323,10603 -'$record_alias_info'(_, Alias) :-$record_alias_info323,10603 -'$record_alias_info'(_, Alias) :-$record_alias_info325,10653 -'$record_alias_info'(_, Alias) :-$record_alias_info325,10653 -'$record_alias_info'(_, Alias) :-$record_alias_info325,10653 -'$record_alias_info'(Id, Alias) :-$record_alias_info328,10807 -'$record_alias_info'(Id, Alias) :-$record_alias_info328,10807 -'$record_alias_info'(Id, Alias) :-$record_alias_info328,10807 -thread_defaults(Defaults) :-thread_defaults332,10898 -thread_defaults(Defaults) :-thread_defaults332,10898 -thread_defaults(Defaults) :-thread_defaults332,10898 -thread_defaults([stack(Stack), trail(Trail), system(System), detached(Detached), at_exit(AtExit)]) :-thread_defaults335,11023 -thread_defaults([stack(Stack), trail(Trail), system(System), detached(Detached), at_exit(AtExit)]) :-thread_defaults335,11023 -thread_defaults([stack(Stack), trail(Trail), system(System), detached(Detached), at_exit(AtExit)]) :-thread_defaults335,11023 -thread_default(Default) :-thread_default338,11201 -thread_default(Default) :-thread_default338,11201 -thread_default(Default) :-thread_default338,11201 -thread_default(stack(Stack)) :- !,thread_default342,11329 -thread_default(stack(Stack)) :- !,thread_default342,11329 -thread_default(stack(Stack)) :- !,thread_default342,11329 -thread_default(trail(Trail)) :- !,thread_default344,11418 -thread_default(trail(Trail)) :- !,thread_default344,11418 -thread_default(trail(Trail)) :- !,thread_default344,11418 -thread_default(system(System)) :- !,thread_default346,11507 -thread_default(system(System)) :- !,thread_default346,11507 -thread_default(system(System)) :- !,thread_default346,11507 -thread_default(detached(Detached)) :- !,thread_default348,11599 -thread_default(detached(Detached)) :- !,thread_default348,11599 -thread_default(detached(Detached)) :- !,thread_default348,11599 -thread_default(at_exit(AtExit)) :- !,thread_default350,11697 -thread_default(at_exit(AtExit)) :- !,thread_default350,11697 -thread_default(at_exit(AtExit)) :- !,thread_default350,11697 -thread_default(Default) :-thread_default352,11790 -thread_default(Default) :-thread_default352,11790 -thread_default(Default) :-thread_default352,11790 -'$thread_default'(stack(Stack), [Stack, _, _, _, _]).$thread_default355,11891 -'$thread_default'(stack(Stack), [Stack, _, _, _, _])./p,predicate,predicate definition355,11891 -'$thread_default'(stack(Stack), [Stack, _, _, _, _]).$thread_default355,11891 -'$thread_default'(trail(Trail), [_, Trail, _, _, _]).$thread_default356,11945 -'$thread_default'(trail(Trail), [_, Trail, _, _, _])./p,predicate,predicate definition356,11945 -'$thread_default'(trail(Trail), [_, Trail, _, _, _]).$thread_default356,11945 -'$thread_default'(system(System), [_, _, System, _, _]).$thread_default357,11999 -'$thread_default'(system(System), [_, _, System, _, _])./p,predicate,predicate definition357,11999 -'$thread_default'(system(System), [_, _, System, _, _]).$thread_default357,11999 -'$thread_default'(detached(Detached), [_, _, _, Detached, _]).$thread_default358,12056 -'$thread_default'(detached(Detached), [_, _, _, Detached, _])./p,predicate,predicate definition358,12056 -'$thread_default'(detached(Detached), [_, _, _, Detached, _]).$thread_default358,12056 -'$thread_default'(at_exit(AtExit), [_, _, _, _, AtExit]).$thread_default359,12119 -'$thread_default'(at_exit(AtExit), [_, _, _, _, AtExit])./p,predicate,predicate definition359,12119 -'$thread_default'(at_exit(AtExit), [_, _, _, _, AtExit]).$thread_default359,12119 -thread_set_defaults(V) :- var(V), !,thread_set_defaults361,12178 -thread_set_defaults(V) :- var(V), !,thread_set_defaults361,12178 -thread_set_defaults(V) :- var(V), !,thread_set_defaults361,12178 -thread_set_defaults([Default| Defaults]) :- !,thread_set_defaults363,12274 -thread_set_defaults([Default| Defaults]) :- !,thread_set_defaults363,12274 -thread_set_defaults([Default| Defaults]) :- !,thread_set_defaults363,12274 -thread_set_defaults(T) :-thread_set_defaults365,12409 -thread_set_defaults(T) :-thread_set_defaults365,12409 -thread_set_defaults(T) :-thread_set_defaults365,12409 -'$thread_set_defaults'([], _).$thread_set_defaults368,12495 -'$thread_set_defaults'([], _)./p,predicate,predicate definition368,12495 -'$thread_set_defaults'([], _).$thread_set_defaults368,12495 -'$thread_set_defaults'([Default| Defaults], G) :- !,$thread_set_defaults369,12526 -'$thread_set_defaults'([Default| Defaults], G) :- !,$thread_set_defaults369,12526 -'$thread_set_defaults'([Default| Defaults], G) :- !,$thread_set_defaults369,12526 -thread_set_default(V) :- var(V), !,thread_set_default373,12654 -thread_set_default(V) :- var(V), !,thread_set_default373,12654 -thread_set_default(V) :- var(V), !,thread_set_default373,12654 -thread_set_default(Default) :-thread_set_default375,12748 -thread_set_default(Default) :-thread_set_default375,12748 -thread_set_default(Default) :-thread_set_default375,12748 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default378,12842 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default378,12842 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default378,12842 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default381,12952 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default381,12952 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default381,12952 -'$thread_set_default'(stack(Stack), _) :- !,$thread_set_default384,13067 -'$thread_set_default'(stack(Stack), _) :- !,$thread_set_default384,13067 -'$thread_set_default'(stack(Stack), _) :- !,$thread_set_default384,13067 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default389,13275 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default389,13275 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default389,13275 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default392,13385 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default392,13385 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default392,13385 -'$thread_set_default'(trail(Trail), _) :- !,$thread_set_default395,13500 -'$thread_set_default'(trail(Trail), _) :- !,$thread_set_default395,13500 -'$thread_set_default'(trail(Trail), _) :- !,$thread_set_default395,13500 -'$thread_set_default'(system(System), G) :-$thread_set_default400,13708 -'$thread_set_default'(system(System), G) :-$thread_set_default400,13708 -'$thread_set_default'(system(System), G) :-$thread_set_default400,13708 -'$thread_set_default'(system(System), G0) :-$thread_set_default403,13822 -'$thread_set_default'(system(System), G0) :-$thread_set_default403,13822 -'$thread_set_default'(system(System), G0) :-$thread_set_default403,13822 -'$thread_set_default'(system(System), _) :- !,$thread_set_default406,13943 -'$thread_set_default'(system(System), _) :- !,$thread_set_default406,13943 -'$thread_set_default'(system(System), _) :- !,$thread_set_default406,13943 -'$thread_set_default'(detached(Detached), G) :-$thread_set_default411,14152 -'$thread_set_default'(detached(Detached), G) :-$thread_set_default411,14152 -'$thread_set_default'(detached(Detached), G) :-$thread_set_default411,14152 -'$thread_set_default'(detached(Detached), _) :- !,$thread_set_default414,14291 -'$thread_set_default'(detached(Detached), _) :- !,$thread_set_default414,14291 -'$thread_set_default'(detached(Detached), _) :- !,$thread_set_default414,14291 -'$thread_set_default'(at_exit(AtExit), G) :-$thread_set_default419,14502 -'$thread_set_default'(at_exit(AtExit), G) :-$thread_set_default419,14502 -'$thread_set_default'(at_exit(AtExit), G) :-$thread_set_default419,14502 -'$thread_set_default'(at_exit(AtExit), _) :- !,$thread_set_default422,14619 -'$thread_set_default'(at_exit(AtExit), _) :- !,$thread_set_default422,14619 -'$thread_set_default'(at_exit(AtExit), _) :- !,$thread_set_default422,14619 -'$thread_set_default'(Default, G) :-$thread_set_default428,14854 -'$thread_set_default'(Default, G) :-$thread_set_default428,14854 -'$thread_set_default'(Default, G) :-$thread_set_default428,14854 -thread_self(Id) :-thread_self439,15098 -thread_self(Id) :-thread_self439,15098 -thread_self(Id) :-thread_self439,15098 -thread_self(Id) :-thread_self442,15228 -thread_self(Id) :-thread_self442,15228 -thread_self(Id) :-thread_self442,15228 -thread_join(Id, Status) :-thread_join494,16947 -thread_join(Id, Status) :-thread_join494,16947 -thread_join(Id, Status) :-thread_join494,16947 -thread_join(Id, Status) :-thread_join497,17063 -thread_join(Id, Status) :-thread_join497,17063 -thread_join(Id, Status) :-thread_join497,17063 -thread_cancel(Id) :-thread_cancel506,17292 -thread_cancel(Id) :-thread_cancel506,17292 -thread_cancel(Id) :-thread_cancel506,17292 -thread_cancel(Id) :-thread_cancel509,17413 -thread_cancel(Id) :-thread_cancel509,17413 -thread_cancel(Id) :-thread_cancel509,17413 -thread_detach(Id) :-thread_detach512,17506 -thread_detach(Id) :-thread_detach512,17506 -thread_detach(Id) :-thread_detach512,17506 -thread_exit(Term) :-thread_exit535,18121 -thread_exit(Term) :-thread_exit535,18121 -thread_exit(Term) :-thread_exit535,18121 -thread_exit(Term) :-thread_exit538,18211 -thread_exit(Term) :-thread_exit538,18211 -thread_exit(Term) :-thread_exit538,18211 -'$run_at_thread_exit'(_Id0) :-$run_at_thread_exit541,18275 -'$run_at_thread_exit'(_Id0) :-$run_at_thread_exit541,18275 -'$run_at_thread_exit'(_Id0) :-$run_at_thread_exit541,18275 -'$run_at_thread_exit'(Id0) :-$run_at_thread_exit545,18371 -'$run_at_thread_exit'(Id0) :-$run_at_thread_exit545,18371 -'$run_at_thread_exit'(Id0) :-$run_at_thread_exit545,18371 -'$run_at_thread_exit'(_).$run_at_thread_exit549,18490 -'$run_at_thread_exit'(_)./p,predicate,predicate definition549,18490 -'$run_at_thread_exit'(_).$run_at_thread_exit549,18490 -thread_at_exit(Goal) :-thread_at_exit566,19144 -thread_at_exit(Goal) :-thread_at_exit566,19144 -thread_at_exit(Goal) :-thread_at_exit566,19144 -current_thread(Id, Status) :-current_thread622,20739 -current_thread(Id, Status) :-current_thread622,20739 -current_thread(Id, Status) :-current_thread622,20739 -'$thread_id_alias'(Id, Alias) :-$thread_id_alias627,20856 -'$thread_id_alias'(Id, Alias) :-$thread_id_alias627,20856 -'$thread_id_alias'(Id, Alias) :-$thread_id_alias627,20856 -'$thread_id_alias'(Id, Id).$thread_id_alias629,20942 -'$thread_id_alias'(Id, Id)./p,predicate,predicate definition629,20942 -'$thread_id_alias'(Id, Id).$thread_id_alias629,20942 -thread_property(Prop) :-thread_property633,20973 -thread_property(Prop) :-thread_property633,20973 -thread_property(Prop) :-thread_property633,20973 -thread_property(Id, Prop) :-thread_property671,21868 -thread_property(Id, Prop) :-thread_property671,21868 -thread_property(Id, Prop) :-thread_property671,21868 -'$enumerate_threads'(Id) :-$enumerate_threads680,22127 -'$enumerate_threads'(Id) :-$enumerate_threads680,22127 -'$enumerate_threads'(Id) :-$enumerate_threads680,22127 -'$thread_property'(alias(Alias), Id) :-$thread_property686,22247 -'$thread_property'(alias(Alias), Id) :-$thread_property686,22247 -'$thread_property'(alias(Alias), Id) :-$thread_property686,22247 -'$thread_property'(status(Status), Id) :-$thread_property688,22330 -'$thread_property'(status(Status), Id) :-$thread_property688,22330 -'$thread_property'(status(Status), Id) :-$thread_property688,22330 -'$thread_property'(detached(Detached), Id) :-$thread_property694,22470 -'$thread_property'(detached(Detached), Id) :-$thread_property694,22470 -'$thread_property'(detached(Detached), Id) :-$thread_property694,22470 -'$thread_property'(at_exit(M:G), _Id) :-$thread_property696,22581 -'$thread_property'(at_exit(M:G), _Id) :-$thread_property696,22581 -'$thread_property'(at_exit(M:G), _Id) :-$thread_property696,22581 -'$thread_property'(stack(Stack), Id) :-$thread_property698,22651 -'$thread_property'(stack(Stack), Id) :-$thread_property698,22651 -'$thread_property'(stack(Stack), Id) :-$thread_property698,22651 -'$thread_property'(trail(Trail), Id) :-$thread_property700,22727 -'$thread_property'(trail(Trail), Id) :-$thread_property700,22727 -'$thread_property'(trail(Trail), Id) :-$thread_property700,22727 -'$thread_property'(system(System), Id) :-$thread_property702,22803 -'$thread_property'(system(System), Id) :-$thread_property702,22803 -'$thread_property'(system(System), Id) :-$thread_property702,22803 -threads :-threads705,22883 -threads :-threads714,23351 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias718,23465 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias718,23465 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias718,23465 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias721,23561 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias721,23561 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias721,23561 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias724,23695 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias724,23695 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias724,23695 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias727,23843 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias727,23843 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias727,23843 -'$check_thread_or_alias'(_,_).$check_thread_or_alias730,23979 -'$check_thread_or_alias'(_,_)./p,predicate,predicate definition730,23979 -'$check_thread_or_alias'(_,_).$check_thread_or_alias730,23979 -'$check_thread_property'(Term, _) :-$check_thread_property732,24011 -'$check_thread_property'(Term, _) :-$check_thread_property732,24011 -'$check_thread_property'(Term, _) :-$check_thread_property732,24011 -'$check_thread_property'(alias(_), _) :- !.$check_thread_property734,24063 -'$check_thread_property'(alias(_), _) :- !.$check_thread_property734,24063 -'$check_thread_property'(alias(_), _) :- !.$check_thread_property734,24063 -'$check_thread_property'(detached(_), _) :- !.$check_thread_property735,24107 -'$check_thread_property'(detached(_), _) :- !.$check_thread_property735,24107 -'$check_thread_property'(detached(_), _) :- !.$check_thread_property735,24107 -'$check_thread_property'(at_exit(_), _) :- !.$check_thread_property736,24154 -'$check_thread_property'(at_exit(_), _) :- !.$check_thread_property736,24154 -'$check_thread_property'(at_exit(_), _) :- !.$check_thread_property736,24154 -'$check_thread_property'(status(_), _) :- !.$check_thread_property737,24200 -'$check_thread_property'(status(_), _) :- !.$check_thread_property737,24200 -'$check_thread_property'(status(_), _) :- !.$check_thread_property737,24200 -'$check_thread_property'(stack(_), _) :- !.$check_thread_property738,24245 -'$check_thread_property'(stack(_), _) :- !.$check_thread_property738,24245 -'$check_thread_property'(stack(_), _) :- !.$check_thread_property738,24245 -'$check_thread_property'(trail(_), _) :- !.$check_thread_property739,24289 -'$check_thread_property'(trail(_), _) :- !.$check_thread_property739,24289 -'$check_thread_property'(trail(_), _) :- !.$check_thread_property739,24289 -'$check_thread_property'(system(_), _) :- !.$check_thread_property740,24333 -'$check_thread_property'(system(_), _) :- !.$check_thread_property740,24333 -'$check_thread_property'(system(_), _) :- !.$check_thread_property740,24333 -'$check_thread_property'(Term, Goal) :-$check_thread_property741,24378 -'$check_thread_property'(Term, Goal) :-$check_thread_property741,24378 -'$check_thread_property'(Term, Goal) :-$check_thread_property741,24378 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias744,24476 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias744,24476 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias744,24476 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias747,24571 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias747,24571 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias747,24571 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias750,24703 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias750,24703 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias750,24703 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias753,24848 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias753,24848 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias753,24848 -'$check_mutex_or_alias'(_,_).$check_mutex_or_alias757,25041 -'$check_mutex_or_alias'(_,_)./p,predicate,predicate definition757,25041 -'$check_mutex_or_alias'(_,_).$check_mutex_or_alias757,25041 -'$check_mutex_property'(Term, _) :-$check_mutex_property759,25072 -'$check_mutex_property'(Term, _) :-$check_mutex_property759,25072 -'$check_mutex_property'(Term, _) :-$check_mutex_property759,25072 -'$check_mutex_property'(alias(_), _) :- !.$check_mutex_property761,25123 -'$check_mutex_property'(alias(_), _) :- !.$check_mutex_property761,25123 -'$check_mutex_property'(alias(_), _) :- !.$check_mutex_property761,25123 -'$check_mutex_property'(status(Status), Goal) :- !,$check_mutex_property762,25166 -'$check_mutex_property'(status(Status), Goal) :- !,$check_mutex_property762,25166 -'$check_mutex_property'(status(Status), Goal) :- !,$check_mutex_property762,25166 -'$check_mutex_property'(Term, Goal) :-$check_mutex_property771,25380 -'$check_mutex_property'(Term, Goal) :-$check_mutex_property771,25380 -'$check_mutex_property'(Term, Goal) :-$check_mutex_property771,25380 -'$mk_tstatus_key'(Id0, Key) :-$mk_tstatus_key774,25476 -'$mk_tstatus_key'(Id0, Key) :-$mk_tstatus_key774,25476 -'$mk_tstatus_key'(Id0, Key) :-$mk_tstatus_key774,25476 -thread_statistics(Id, Key, Val) :-thread_statistics805,26439 -thread_statistics(Id, Key, Val) :-thread_statistics805,26439 -thread_statistics(Id, Key, Val) :-thread_statistics805,26439 -change_address(Id, Address) :-change_address856,28303 -change_address(Id, Address) :-change_address856,28303 -change_address(Id, Address) :-change_address856,28303 -mutex_create(Id, Options) :-mutex_create873,28726 -mutex_create(Id, Options) :-mutex_create873,28726 -mutex_create(Id, Options) :-mutex_create873,28726 -mutex_create(Id, Options) :-mutex_create876,28839 -mutex_create(Id, Options) :-mutex_create876,28839 -mutex_create(Id, Options) :-mutex_create876,28839 -'$mutex_options'(Var, _, Goal) :-$mutex_options884,29009 -'$mutex_options'(Var, _, Goal) :-$mutex_options884,29009 -'$mutex_options'(Var, _, Goal) :-$mutex_options884,29009 -'$mutex_options'([], _, _) :- !.$mutex_options887,29098 -'$mutex_options'([], _, _) :- !.$mutex_options887,29098 -'$mutex_options'([], _, _) :- !.$mutex_options887,29098 -'$mutex_options'([Option| Options], Alias, Goal) :- !,$mutex_options888,29131 -'$mutex_options'([Option| Options], Alias, Goal) :- !,$mutex_options888,29131 -'$mutex_options'([Option| Options], Alias, Goal) :- !,$mutex_options888,29131 -'$mutex_options'(Options, _, Goal) :-$mutex_options891,29266 -'$mutex_options'(Options, _, Goal) :-$mutex_options891,29266 -'$mutex_options'(Options, _, Goal) :-$mutex_options891,29266 -'$mutex_option'(Var, _, Goal) :-$mutex_option894,29352 -'$mutex_option'(Var, _, Goal) :-$mutex_option894,29352 -'$mutex_option'(Var, _, Goal) :-$mutex_option894,29352 -'$mutex_option'(alias(Alias), Alias, Goal) :- !,$mutex_option897,29440 -'$mutex_option'(alias(Alias), Alias, Goal) :- !,$mutex_option897,29440 -'$mutex_option'(alias(Alias), Alias, Goal) :- !,$mutex_option897,29440 -'$mutex_option'(Option, _, Goal) :-$mutex_option902,29564 -'$mutex_option'(Option, _, Goal) :-$mutex_option902,29564 -'$mutex_option'(Option, _, Goal) :-$mutex_option902,29564 -mutex_unlock_all :-mutex_unlock_all914,29855 -'$unlock_all_thread_mutexes'(Tid) :-$unlock_all_thread_mutexes918,29934 -'$unlock_all_thread_mutexes'(Tid) :-$unlock_all_thread_mutexes918,29934 -'$unlock_all_thread_mutexes'(Tid) :-$unlock_all_thread_mutexes918,29934 -'$unlock_all_thread_mutexes'(_).$unlock_all_thread_mutexes924,30084 -'$unlock_all_thread_mutexes'(_)./p,predicate,predicate definition924,30084 -'$unlock_all_thread_mutexes'(_).$unlock_all_thread_mutexes924,30084 -'$mutex_unlock_all'(Id) :-$mutex_unlock_all926,30118 -'$mutex_unlock_all'(Id) :-$mutex_unlock_all926,30118 -'$mutex_unlock_all'(Id) :-$mutex_unlock_all926,30118 -current_mutex(M, T, NRefs) :-current_mutex943,30545 -current_mutex(M, T, NRefs) :-current_mutex943,30545 -current_mutex(M, T, NRefs) :-current_mutex943,30545 -mutex_property(Mutex, Prop) :-mutex_property947,30648 -mutex_property(Mutex, Prop) :-mutex_property947,30648 -mutex_property(Mutex, Prop) :-mutex_property947,30648 -'$mutex_property'(Id, alias(Alias)) :-$mutex_property956,30930 -'$mutex_property'(Id, alias(Alias)) :-$mutex_property956,30930 -'$mutex_property'(Id, alias(Alias)) :-$mutex_property956,30930 -'$mutex_property'(Id, status(Status)) :-$mutex_property959,31025 -'$mutex_property'(Id, status(Status)) :-$mutex_property959,31025 -'$mutex_property'(Id, status(Status)) :-$mutex_property959,31025 -message_queue_create(Id, Options) :-message_queue_create987,31864 -message_queue_create(Id, Options) :-message_queue_create987,31864 -message_queue_create(Id, Options) :-message_queue_create987,31864 -message_queue_create(Id, Options) :-message_queue_create990,31993 -message_queue_create(Id, Options) :-message_queue_create990,31993 -message_queue_create(Id, Options) :-message_queue_create990,31993 -message_queue_create(Id, []) :- !,message_queue_create993,32118 -message_queue_create(Id, []) :- !,message_queue_create993,32118 -message_queue_create(Id, []) :- !,message_queue_create993,32118 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create995,32183 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create995,32183 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create995,32183 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create998,32320 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create998,32320 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create998,32320 -message_queue_create(Id, [alias(Alias)]) :- var(Id), !,message_queue_create1001,32464 -message_queue_create(Id, [alias(Alias)]) :- var(Id), !,message_queue_create1001,32464 -message_queue_create(Id, [alias(Alias)]) :- var(Id), !,message_queue_create1001,32464 -message_queue_create(Alias, [alias(Alias)]) :- !,message_queue_create1007,32747 -message_queue_create(Alias, [alias(Alias)]) :- !,message_queue_create1007,32747 -message_queue_create(Alias, [alias(Alias)]) :- !,message_queue_create1007,32747 -message_queue_create(Id, [Option| _]) :-message_queue_create1012,32984 -message_queue_create(Id, [Option| _]) :-message_queue_create1012,32984 -message_queue_create(Id, [Option| _]) :-message_queue_create1012,32984 -message_queue_create(Id, Options) :-message_queue_create1014,33114 -message_queue_create(Id, Options) :-message_queue_create1014,33114 -message_queue_create(Id, Options) :-message_queue_create1014,33114 -message_queue_create(Id) :-message_queue_create1027,33524 -message_queue_create(Id) :-message_queue_create1027,33524 -message_queue_create(Id) :-message_queue_create1027,33524 -message_queue_destroy(Name) :-message_queue_destroy1045,34046 -message_queue_destroy(Name) :-message_queue_destroy1045,34046 -message_queue_destroy(Name) :-message_queue_destroy1045,34046 -message_queue_destroy(Alias) :-message_queue_destroy1048,34155 -message_queue_destroy(Alias) :-message_queue_destroy1048,34155 -message_queue_destroy(Alias) :-message_queue_destroy1048,34155 -message_queue_destroy(Name) :-message_queue_destroy1053,34302 -message_queue_destroy(Name) :-message_queue_destroy1053,34302 -message_queue_destroy(Name) :-message_queue_destroy1053,34302 -message_queue_destroy(_).message_queue_destroy1059,34462 -message_queue_destroy(_).message_queue_destroy1059,34462 -message_queue_property( Id, alias(Alias) ) :-message_queue_property1074,34859 -message_queue_property( Id, alias(Alias) ) :-message_queue_property1074,34859 -message_queue_property( Id, alias(Alias) ) :-message_queue_property1074,34859 -message_queue_property( Alias, size(Size) ) :-message_queue_property1076,34949 -message_queue_property( Alias, size(Size) ) :-message_queue_property1076,34949 -message_queue_property( Alias, size(Size) ) :-message_queue_property1076,34949 -message_queue_property( Id, size(Size) ) :-message_queue_property1080,35096 -message_queue_property( Id, size(Size) ) :-message_queue_property1080,35096 -message_queue_property( Id, size(Size) ) :-message_queue_property1080,35096 -thread_send_message(Term) :-thread_send_message1092,35460 -thread_send_message(Term) :-thread_send_message1092,35460 -thread_send_message(Term) :-thread_send_message1092,35460 -thread_send_message(Queue, Term) :- var(Queue), !,thread_send_message1114,36470 -thread_send_message(Queue, Term) :- var(Queue), !,thread_send_message1114,36470 -thread_send_message(Queue, Term) :- var(Queue), !,thread_send_message1114,36470 -thread_send_message(Queue, Term) :-thread_send_message1116,36588 -thread_send_message(Queue, Term) :-thread_send_message1116,36588 -thread_send_message(Queue, Term) :-thread_send_message1116,36588 -thread_send_message(Queue, Term) :-thread_send_message1119,36703 -thread_send_message(Queue, Term) :-thread_send_message1119,36703 -thread_send_message(Queue, Term) :-thread_send_message1119,36703 -thread_get_message(Term) :-thread_get_message1147,37436 -thread_get_message(Term) :-thread_get_message1147,37436 -thread_get_message(Term) :-thread_get_message1147,37436 -thread_get_message(Queue, Term) :- var(Queue), !,thread_get_message1159,37777 -thread_get_message(Queue, Term) :- var(Queue), !,thread_get_message1159,37777 -thread_get_message(Queue, Term) :- var(Queue), !,thread_get_message1159,37777 -thread_get_message(Queue, Term) :-thread_get_message1161,37893 -thread_get_message(Queue, Term) :-thread_get_message1161,37893 -thread_get_message(Queue, Term) :-thread_get_message1161,37893 -thread_get_message(Queue, Term) :-thread_get_message1164,38010 -thread_get_message(Queue, Term) :-thread_get_message1164,38010 -thread_get_message(Queue, Term) :-thread_get_message1164,38010 -thread_peek_message(Term) :-thread_peek_message1178,38393 -thread_peek_message(Term) :-thread_peek_message1178,38393 -thread_peek_message(Term) :-thread_peek_message1178,38393 -create_workers(Id, N) :-create_workers1202,39211 -create_workers(Id, N) :-create_workers1202,39211 -create_workers(Id, N) :-create_workers1202,39211 -do_work(Id) :-do_work1207,39343 -do_work(Id) :-do_work1207,39343 -do_work(Id) :-do_work1207,39343 -work(Id, Goal) :-work1220,39616 -work(Id, Goal) :-work1220,39616 -work(Id, Goal) :-work1220,39616 -thread_peek_message(Queue, Term) :- var(Queue), !,thread_peek_message1226,39681 -thread_peek_message(Queue, Term) :- var(Queue), !,thread_peek_message1226,39681 -thread_peek_message(Queue, Term) :- var(Queue), !,thread_peek_message1226,39681 -thread_peek_message(Queue, Term) :-thread_peek_message1228,39799 -thread_peek_message(Queue, Term) :-thread_peek_message1228,39799 -thread_peek_message(Queue, Term) :-thread_peek_message1228,39799 -tthread_peek_message(Queue, Term) :-tthread_peek_message1231,39914 -tthread_peek_message(Queue, Term) :-tthread_peek_message1231,39914 -tthread_peek_message(Queue, Term) :-tthread_peek_message1231,39914 -thread_sleep(Time) :-thread_sleep1264,40931 -thread_sleep(Time) :-thread_sleep1264,40931 -thread_sleep(Time) :-thread_sleep1264,40931 -thread_sleep(Time) :-thread_sleep1267,41022 -thread_sleep(Time) :-thread_sleep1267,41022 -thread_sleep(Time) :-thread_sleep1267,41022 -thread_sleep(Time) :-thread_sleep1273,41120 -thread_sleep(Time) :-thread_sleep1273,41120 -thread_sleep(Time) :-thread_sleep1273,41120 -thread_sleep(Time) :-thread_sleep1281,41329 -thread_sleep(Time) :-thread_sleep1281,41329 -thread_sleep(Time) :-thread_sleep1281,41329 -thread_signal(Id, Goal) :-thread_signal1285,41411 -thread_signal(Id, Goal) :-thread_signal1285,41411 -thread_signal(Id, Goal) :-thread_signal1285,41411 -'$thread_gfetch'(G) :-$thread_gfetch1295,41715 -'$thread_gfetch'(G) :-$thread_gfetch1295,41715 -'$thread_gfetch'(G) :-$thread_gfetch1295,41715 -foo(gnat).foo1348,43639 -foo(gnat).foo1348,43639 -thread_local(X) :-thread_local1355,43664 -thread_local(X) :-thread_local1355,43664 -thread_local(X) :-thread_local1355,43664 -'$thread_local'(X,M) :- var(X), !,$thread_local1359,43730 -'$thread_local'(X,M) :- var(X), !,$thread_local1359,43730 -'$thread_local'(X,M) :- var(X), !,$thread_local1359,43730 -'$thread_local'(Mod:Spec,_) :- !,$thread_local1361,43818 -'$thread_local'(Mod:Spec,_) :- !,$thread_local1361,43818 -'$thread_local'(Mod:Spec,_) :- !,$thread_local1361,43818 -'$thread_local'([], _) :- !.$thread_local1363,43880 -'$thread_local'([], _) :- !.$thread_local1363,43880 -'$thread_local'([], _) :- !.$thread_local1363,43880 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M)./p,predicate,predicate definition1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local1364,43909 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M)./p,predicate,predicate definition1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local1365,43987 -'$thread_local'(X,M) :- !,$thread_local1366,44062 -'$thread_local'(X,M) :- !,$thread_local1366,44062 -'$thread_local'(X,M) :- !,$thread_local1366,44062 -'$thread_local2'(A/N, Mod) :- integer(N), atom(A), !,$thread_local21369,44114 -'$thread_local2'(A/N, Mod) :- integer(N), atom(A), !,$thread_local21369,44114 -'$thread_local2'(A/N, Mod) :- integer(N), atom(A), !,$thread_local21369,44114 -'$thread_local2'(X,Mod) :-$thread_local21376,44486 -'$thread_local2'(X,Mod) :-$thread_local21376,44486 -'$thread_local2'(X,Mod) :-$thread_local21376,44486 - -packages/python/swig/yap4py/prolog/pl/udi.yap,72 -udi(Pred) :-udi26,713 -udi(Pred) :-udi26,713 -udi(Pred) :-udi26,713 - -packages/python/swig/yap4py/prolog/pl/undefined.yap,1462 -undefined(A) :- format('Undefined predicate: ~w~n',[A]), fail.undefined52,1847 -undefined(A) :- format('Undefined predicate: ~w~n',[A]), fail.undefined52,1847 -undefined(A) :- format('Undefined predicate: ~w~n',[A]), fail.undefined52,1847 -:- multifile user:unknown_predicate_handler/3.multifile67,2233 -:- multifile user:unknown_predicate_handler/3.multifile67,2233 -'$handle_error'(error,Goal,Mod) :-$handle_error69,2281 -'$handle_error'(error,Goal,Mod) :-$handle_error69,2281 -'$handle_error'(error,Goal,Mod) :-$handle_error69,2281 -'$handle_error'(warning,Goal,Mod) :-$handle_error74,2491 -'$handle_error'(warning,Goal,Mod) :-$handle_error74,2491 -'$handle_error'(warning,Goal,Mod) :-$handle_error74,2491 -'$handle_error'(fail,_Goal,_Mod) :-$handle_error79,2719 -'$handle_error'(fail,_Goal,_Mod) :-$handle_error79,2719 -'$handle_error'(fail,_Goal,_Mod) :-$handle_error79,2719 -'$undefp_search'(M0:G0, MG) :-$undefp_search98,3108 -'$undefp_search'(M0:G0, MG) :-$undefp_search98,3108 -'$undefp_search'(M0:G0, MG) :-$undefp_search98,3108 -'$undefp_search'(MG, FMG) :-$undefp_search104,3330 -'$undefp_search'(MG, FMG) :-$undefp_search104,3330 -'$undefp_search'(MG, FMG) :-$undefp_search104,3330 -'$undefp'([M0|G0], Action) :-$undefp109,3403 -'$undefp'([M0|G0], Action) :-$undefp109,3403 -'$undefp'([M0|G0], Action) :-$undefp109,3403 -unknown(P, NP) :-unknown147,4403 -unknown(P, NP) :-unknown147,4403 -unknown(P, NP) :-unknown147,4403 - -packages/python/swig/yap4py/prolog/pl/utils.yap,8548 -'$check_op'(P,T,Op,G) :-$check_op55,1603 -'$check_op'(P,T,Op,G) :-$check_op55,1603 -'$check_op'(P,T,Op,G) :-$check_op55,1603 -'$check_op'(P,_,_,G) :-$check_op58,1698 -'$check_op'(P,_,_,G) :-$check_op58,1698 -'$check_op'(P,_,_,G) :-$check_op58,1698 -'$check_op'(P,_,_,G) :-$check_op61,1780 -'$check_op'(P,_,_,G) :-$check_op61,1780 -'$check_op'(P,_,_,G) :-$check_op61,1780 -'$check_op'(_,T,_,G) :-$check_op64,1866 -'$check_op'(_,T,_,G) :-$check_op64,1866 -'$check_op'(_,T,_,G) :-$check_op64,1866 -'$check_op'(_,T,_,G) :-$check_op67,1942 -'$check_op'(_,T,_,G) :-$check_op67,1942 -'$check_op'(_,T,_,G) :-$check_op67,1942 -'$check_op'(P,T,V,G) :-$check_op70,2047 -'$check_op'(P,T,V,G) :-$check_op70,2047 -'$check_op'(P,T,V,G) :-$check_op70,2047 -'$check_top_op'(_, _, [], _) :- !.$check_top_op74,2138 -'$check_top_op'(_, _, [], _) :- !.$check_top_op74,2138 -'$check_top_op'(_, _, [], _) :- !.$check_top_op74,2138 -'$check_top_op'(P, T, [Op|NV], G) :- !,$check_top_op75,2173 -'$check_top_op'(P, T, [Op|NV], G) :- !,$check_top_op75,2173 -'$check_top_op'(P, T, [Op|NV], G) :- !,$check_top_op75,2173 -'$check_top_op'(P, T, V, G) :-$check_top_op77,2246 -'$check_top_op'(P, T, V, G) :-$check_top_op77,2246 -'$check_top_op'(P, T, V, G) :-$check_top_op77,2246 -'$check_top_op'(_P, _T, V, G) :-$check_top_op80,2321 -'$check_top_op'(_P, _T, V, G) :-$check_top_op80,2321 -'$check_top_op'(_P, _T, V, G) :-$check_top_op80,2321 -'$check_module_for_op'(MOp, G, _) :-$check_module_for_op92,2580 -'$check_module_for_op'(MOp, G, _) :-$check_module_for_op92,2580 -'$check_module_for_op'(MOp, G, _) :-$check_module_for_op92,2580 -'$check_module_for_op'(M:_V, G, _) :-$check_module_for_op95,2668 -'$check_module_for_op'(M:_V, G, _) :-$check_module_for_op95,2668 -'$check_module_for_op'(M:_V, G, _) :-$check_module_for_op95,2668 -'$check_module_for_op'(M:V, G, NV) :-$check_module_for_op98,2755 -'$check_module_for_op'(M:V, G, NV) :-$check_module_for_op98,2755 -'$check_module_for_op'(M:V, G, NV) :-$check_module_for_op98,2755 -'$check_module_for_op'(M:_V, G, _) :- !,$check_module_for_op101,2841 -'$check_module_for_op'(M:_V, G, _) :- !,$check_module_for_op101,2841 -'$check_module_for_op'(M:_V, G, _) :- !,$check_module_for_op101,2841 -'$check_module_for_op'(V, _G, V).$check_module_for_op103,2918 -'$check_module_for_op'(V, _G, V)./p,predicate,predicate definition103,2918 -'$check_module_for_op'(V, _G, V).$check_module_for_op103,2918 -'$check_ops'(_P, _T, [], _G) :- !.$check_ops105,2953 -'$check_ops'(_P, _T, [], _G) :- !.$check_ops105,2953 -'$check_ops'(_P, _T, [], _G) :- !.$check_ops105,2953 -'$check_ops'(P, T, [Op|NV], G) :- !,$check_ops106,2988 -'$check_ops'(P, T, [Op|NV], G) :- !,$check_ops106,2988 -'$check_ops'(P, T, [Op|NV], G) :- !,$check_ops106,2988 -'$check_ops'(_P, _T, Ops, G) :-$check_ops116,3186 -'$check_ops'(_P, _T, Ops, G) :-$check_ops116,3186 -'$check_ops'(_P, _T, Ops, G) :-$check_ops116,3186 -'$check_op_name'(_,_,V,G) :-$check_op_name119,3257 -'$check_op_name'(_,_,V,G) :-$check_op_name119,3257 -'$check_op_name'(_,_,V,G) :-$check_op_name119,3257 -'$check_op_name'(_,_,'[]',G) :- T \= yf, T\= xf, !,$check_op_name124,3431 -'$check_op_name'(_,_,'[]',G) :- T \= yf, T\= xf, !,$check_op_name124,3431 -'$check_op_name'(_,_,'[]',G) :- T \= yf, T\= xf, !,$check_op_name124,3431 -'$check_op_name'(_,_,'{}',G) :- T \= yf, T\= xf, !,$check_op_name126,3542 -'$check_op_name'(_,_,'{}',G) :- T \= yf, T\= xf, !,$check_op_name126,3542 -'$check_op_name'(_,_,'{}',G) :- T \= yf, T\= xf, !,$check_op_name126,3542 -'$check_op_name'(P,T,'|',G) :-$check_op_name128,3652 -'$check_op_name'(P,T,'|',G) :-$check_op_name128,3652 -'$check_op_name'(P,T,'|',G) :-$check_op_name128,3652 -'$check_op_name'(_,_,V,_) :-$check_op_name136,3812 -'$check_op_name'(_,_,V,_) :-$check_op_name136,3812 -'$check_op_name'(_,_,V,_) :-$check_op_name136,3812 -'$check_op_name'(_,_,A,G) :-$check_op_name138,3855 -'$check_op_name'(_,_,A,G) :-$check_op_name138,3855 -'$check_op_name'(_,_,A,G) :-$check_op_name138,3855 -'$op'(P, T, ML) :-$op141,3922 -'$op'(P, T, ML) :-$op141,3922 -'$op'(P, T, ML) :-$op141,3922 -'$op'(P, T, A) :-$op144,4000 -'$op'(P, T, A) :-$op144,4000 -'$op'(P, T, A) :-$op144,4000 -'$opl'(_P, _T, _, []).$opl147,4035 -'$opl'(_P, _T, _, [])./p,predicate,predicate definition147,4035 -'$opl'(_P, _T, _, []).$opl147,4035 -'$opl'(P, T, M, [A|As]) :-$opl148,4058 -'$opl'(P, T, M, [A|As]) :-$opl148,4058 -'$opl'(P, T, M, [A|As]) :-$opl148,4058 -'$op2'(P,T,A) :-$op2152,4128 -'$op2'(P,T,A) :-$op2152,4128 -'$op2'(P,T,A) :-$op2152,4128 -'$op2'(P,T,A) :-$op2155,4183 -'$op2'(P,T,A) :-$op2155,4183 -'$op2'(P,T,A) :-$op2155,4183 -current_op(X,Y,V) :- var(V), !,current_op167,4388 -current_op(X,Y,V) :- var(V), !,current_op167,4388 -current_op(X,Y,V) :- var(V), !,current_op167,4388 -current_op(X,Y,M:Z) :- !,current_op170,4471 -current_op(X,Y,M:Z) :- !,current_op170,4471 -current_op(X,Y,M:Z) :- !,current_op170,4471 -current_op(X,Y,Z) :-current_op172,4523 -current_op(X,Y,Z) :-current_op172,4523 -current_op(X,Y,Z) :-current_op172,4523 -'$current_opm'(X,Y,Z,M) :-$current_opm177,4597 -'$current_opm'(X,Y,Z,M) :-$current_opm177,4597 -'$current_opm'(X,Y,Z,M) :-$current_opm177,4597 -'$current_opm'(X,Y,Z,M) :-$current_opm181,4731 -'$current_opm'(X,Y,Z,M) :-$current_opm181,4731 -'$current_opm'(X,Y,Z,M) :-$current_opm181,4731 -'$current_opm'(X,Y,M:Z,_) :- !,$current_opm184,4798 -'$current_opm'(X,Y,M:Z,_) :- !,$current_opm184,4798 -'$current_opm'(X,Y,M:Z,_) :- !,$current_opm184,4798 -'$current_opm'(X,Y,Z,M) :-$current_opm186,4856 -'$current_opm'(X,Y,Z,M) :-$current_opm186,4856 -'$current_opm'(X,Y,Z,M) :-$current_opm186,4856 -'$do_current_op'(X,Y,Z,M) :-$do_current_op189,4912 -'$do_current_op'(X,Y,Z,M) :-$do_current_op189,4912 -'$do_current_op'(X,Y,Z,M) :-$do_current_op189,4912 -'$do_current_op'(X,Y,Z,M) :-$do_current_op193,5048 -'$do_current_op'(X,Y,Z,M) :-$do_current_op193,5048 -'$do_current_op'(X,Y,Z,M) :-$do_current_op193,5048 -'$do_current_op'(X,Y,Z,M) :-$do_current_op204,5277 -'$do_current_op'(X,Y,Z,M) :-$do_current_op204,5277 -'$do_current_op'(X,Y,Z,M) :-$do_current_op204,5277 -'$get_prefix'(Prefix, X, Y) :-$get_prefix215,5489 -'$get_prefix'(Prefix, X, Y) :-$get_prefix215,5489 -'$get_prefix'(Prefix, X, Y) :-$get_prefix215,5489 -'$get_infix'(Infix, X, Y) :-$get_infix226,5661 -'$get_infix'(Infix, X, Y) :-$get_infix226,5661 -'$get_infix'(Infix, X, Y) :-$get_infix226,5661 -'$get_posfix'(Posfix, X, Y) :-$get_posfix241,5898 -'$get_posfix'(Posfix, X, Y) :-$get_posfix241,5898 -'$get_posfix'(Posfix, X, Y) :-$get_posfix241,5898 -prolog :-prolog253,6064 -callable(A) :-callable266,6217 -callable(A) :-callable266,6217 -callable(A) :-callable266,6217 -simple(V) :- var(V), !.simple276,6366 -simple(V) :- var(V), !.simple276,6366 -simple(V) :- var(V), !.simple276,6366 -simple(A) :- atom(A), !.simple277,6390 -simple(A) :- atom(A), !.simple277,6390 -simple(A) :- atom(A), !.simple277,6390 -simple(N) :- number(N).simple278,6415 -simple(N) :- number(N).simple278,6415 -simple(N) :- number(N).simple278,6415 -simple(N) :- number(N).simple278,6415 -simple(N) :- number(N).simple278,6415 -nth_instance(Key,Index,Ref) :-nth_instance291,6774 -nth_instance(Key,Index,Ref) :-nth_instance291,6774 -nth_instance(Key,Index,Ref) :-nth_instance291,6774 -nth_instance(Key,Index,Ref) :-nth_instance295,6897 -nth_instance(Key,Index,Ref) :-nth_instance295,6897 -nth_instance(Key,Index,Ref) :-nth_instance295,6897 -nth_instance(Key,Index,T,Ref) :-nth_instance308,7300 -nth_instance(Key,Index,T,Ref) :-nth_instance308,7300 -nth_instance(Key,Index,T,Ref) :-nth_instance308,7300 -nth_instance(Key,Index,T,Ref) :-nth_instance312,7425 -nth_instance(Key,Index,T,Ref) :-nth_instance312,7425 -nth_instance(Key,Index,T,Ref) :-nth_instance312,7425 -nb_current(GlobalVariable, Val) :-nb_current332,7786 -nb_current(GlobalVariable, Val) :-nb_current332,7786 -nb_current(GlobalVariable, Val) :-nb_current332,7786 -'$getval_exception'(GlobalVariable, _Val, Caller) :-$getval_exception336,7893 -'$getval_exception'(GlobalVariable, _Val, Caller) :-$getval_exception336,7893 -'$getval_exception'(GlobalVariable, _Val, Caller) :-$getval_exception336,7893 -subsumes_term(A,B) :-subsumes_term365,8378 -subsumes_term(A,B) :-subsumes_term365,8378 -subsumes_term(A,B) :-subsumes_term365,8378 -term_string( T, S, Opts) :-term_string368,8429 -term_string( T, S, Opts) :-term_string368,8429 -term_string( T, S, Opts) :-term_string368,8429 - -packages/python/swig/yap4py/prolog/pl/yapor.yap,8605 -or_statistics :-or_statistics43,1688 -opt_statistics :-opt_statistics47,1759 -or_statistics(total_memory,[BytesInUse,BytesAllocated]) :-or_statistics58,2105 -or_statistics(total_memory,[BytesInUse,BytesAllocated]) :-or_statistics58,2105 -or_statistics(total_memory,[BytesInUse,BytesAllocated]) :-or_statistics58,2105 -or_statistics(or_frames,[BytesInUse,StructsInUse]) :-or_statistics60,2224 -or_statistics(or_frames,[BytesInUse,StructsInUse]) :-or_statistics60,2224 -or_statistics(or_frames,[BytesInUse,StructsInUse]) :-or_statistics60,2224 -or_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-or_statistics62,2336 -or_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-or_statistics62,2336 -or_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-or_statistics62,2336 -or_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-or_statistics64,2466 -or_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-or_statistics64,2466 -or_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-or_statistics64,2466 -opt_statistics(total_memory,[BytesInUse,BytesAllocated]) :-opt_statistics74,2868 -opt_statistics(total_memory,[BytesInUse,BytesAllocated]) :-opt_statistics74,2868 -opt_statistics(total_memory,[BytesInUse,BytesAllocated]) :-opt_statistics74,2868 -opt_statistics(table_entries,[BytesInUse,StructsInUse]) :-opt_statistics76,2988 -opt_statistics(table_entries,[BytesInUse,StructsInUse]) :-opt_statistics76,2988 -opt_statistics(table_entries,[BytesInUse,StructsInUse]) :-opt_statistics76,2988 -opt_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-opt_statistics78,3105 -opt_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-opt_statistics78,3105 -opt_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-opt_statistics78,3105 -opt_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-opt_statistics80,3223 -opt_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-opt_statistics80,3223 -opt_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-opt_statistics80,3223 -opt_statistics(or_frames,[BytesInUse,StructsInUse]) :-opt_statistics82,3344 -opt_statistics(or_frames,[BytesInUse,StructsInUse]) :-opt_statistics82,3344 -opt_statistics(or_frames,[BytesInUse,StructsInUse]) :-opt_statistics82,3344 -opt_statistics(suspension_frames,[BytesInUse,StructsInUse]) :-opt_statistics84,3457 -opt_statistics(suspension_frames,[BytesInUse,StructsInUse]) :-opt_statistics84,3457 -opt_statistics(suspension_frames,[BytesInUse,StructsInUse]) :-opt_statistics84,3457 -opt_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics86,3578 -opt_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics86,3578 -opt_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics86,3578 -opt_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics88,3700 -opt_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics88,3700 -opt_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics88,3700 -opt_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics90,3821 -opt_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics90,3821 -opt_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics90,3821 -opt_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics92,3944 -opt_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics92,3944 -opt_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics92,3944 -opt_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics94,4066 -opt_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics94,4066 -opt_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics94,4066 -opt_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics96,4188 -opt_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics96,4188 -opt_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics96,4188 -opt_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics98,4311 -opt_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics98,4311 -opt_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics98,4311 -opt_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics100,4442 -opt_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics100,4442 -opt_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics100,4442 -opt_statistics(table_subgoal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics102,4571 -opt_statistics(table_subgoal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics102,4571 -opt_statistics(table_subgoal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics102,4571 -opt_statistics(table_subgoal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics104,4705 -opt_statistics(table_subgoal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics104,4705 -opt_statistics(table_subgoal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics104,4705 -opt_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-opt_statistics106,4837 -opt_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-opt_statistics106,4837 -opt_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-opt_statistics106,4837 -opt_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-opt_statistics108,4957 -opt_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-opt_statistics108,4957 -opt_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-opt_statistics108,4957 -parallel(Goal) :-parallel117,5304 -parallel(Goal) :-parallel117,5304 -parallel(Goal) :-parallel117,5304 -parallel(Goal) :-parallel124,5417 -parallel(Goal) :-parallel124,5417 -parallel(Goal) :-parallel124,5417 -'$parallel_query'(Goal) :-$parallel_query132,5498 -'$parallel_query'(Goal) :-$parallel_query132,5498 -'$parallel_query'(Goal) :-$parallel_query132,5498 -'$parallel_query'(_).$parallel_query136,5577 -'$parallel_query'(_)./p,predicate,predicate definition136,5577 -'$parallel_query'(_).$parallel_query136,5577 -parallel_findall(Template,Goal,Answers) :- parallel_findall144,5825 -parallel_findall(Template,Goal,Answers) :- parallel_findall144,5825 -parallel_findall(Template,Goal,Answers) :- parallel_findall144,5825 -parallel_findall(Template,Goal,Answers) :-parallel_findall153,6097 -parallel_findall(Template,Goal,Answers) :-parallel_findall153,6097 -parallel_findall(Template,Goal,Answers) :-parallel_findall153,6097 -'$parallel_findall_query'(Template,Goal) :-$parallel_findall_query156,6176 -'$parallel_findall_query'(Template,Goal) :-$parallel_findall_query156,6176 -'$parallel_findall_query'(Template,Goal) :-$parallel_findall_query156,6176 -'$parallel_findall_query'(_,_).$parallel_findall_query162,6349 -'$parallel_findall_query'(_,_)./p,predicate,predicate definition162,6349 -'$parallel_findall_query'(_,_).$parallel_findall_query162,6349 -'$parallel_findall_recorded'([],[]) :- !.$parallel_findall_recorded164,6382 -'$parallel_findall_recorded'([],[]) :- !.$parallel_findall_recorded164,6382 -'$parallel_findall_recorded'([],[]) :- !.$parallel_findall_recorded164,6382 -'$parallel_findall_recorded'([Ref|Refs],[Template|Answers]):-$parallel_findall_recorded165,6424 -'$parallel_findall_recorded'([Ref|Refs],[Template|Answers]):-$parallel_findall_recorded165,6424 -'$parallel_findall_recorded'([Ref|Refs],[Template|Answers]):-$parallel_findall_recorded165,6424 -parallel_findfirst(Template,Goal,Answer) :- parallel_findfirst174,6802 -parallel_findfirst(Template,Goal,Answer) :- parallel_findfirst174,6802 -parallel_findfirst(Template,Goal,Answer) :- parallel_findfirst174,6802 -parallel_once(Goal) :-parallel_once182,7119 -parallel_once(Goal) :-parallel_once182,7119 -parallel_once(Goal) :-parallel_once182,7119 -parallel_once(Goal) :-parallel_once190,7288 -parallel_once(Goal) :-parallel_once190,7288 -parallel_once(Goal) :-parallel_once190,7288 -'$parallel_once_query'(Goal) :-$parallel_once_query193,7327 -'$parallel_once_query'(Goal) :-$parallel_once_query193,7327 -'$parallel_once_query'(Goal) :-$parallel_once_query193,7327 -'$parallel_once_query'(_).$parallel_once_query198,7453 -'$parallel_once_query'(_)./p,predicate,predicate definition198,7453 -'$parallel_once_query'(_).$parallel_once_query198,7453 - -packages/python/swig/yap4py/prolog/pl/yio.yap,9507 -exists(F) :-exists137,3348 -exists(F) :-exists137,3348 -exists(F) :-exists137,3348 -display(T) :-display168,3867 -display(T) :-display168,3867 -display(T) :-display168,3867 -display(Stream, T) :-display178,4047 -display(Stream, T) :-display178,4047 -display(Stream, T) :-display178,4047 -'$portray'(T) :-$portray182,4149 -'$portray'(T) :-$portray182,4149 -'$portray'(T) :-$portray182,4149 -'$portray'(_) :- set_value('$portray',false), fail.$portray186,4307 -'$portray'(_) :- set_value('$portray',false), fail.$portray186,4307 -'$portray'(_) :- set_value('$portray',false), fail.$portray186,4307 -format(T) :-format199,4481 -format(T) :-format199,4481 -format(T) :-format199,4481 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttynl :- nl(user_output).ttynl252,5124 -current_line_number(N) :-current_line_number264,5314 -current_line_number(N) :-current_line_number264,5314 -current_line_number(N) :-current_line_number264,5314 -current_line_number(Stream,N) :-current_line_number273,5508 -current_line_number(Stream,N) :-current_line_number273,5508 -current_line_number(Stream,N) :-current_line_number273,5508 -stream_position(Stream, Position) :-stream_position283,5803 -stream_position(Stream, Position) :-stream_position283,5803 -stream_position(Stream, Position) :-stream_position283,5803 -stream_position(Stream, Position, NewPosition) :-stream_position292,6099 -stream_position(Stream, Position, NewPosition) :-stream_position292,6099 -stream_position(Stream, Position, NewPosition) :-stream_position292,6099 -at_end_of_line :-at_end_of_line301,6360 -at_end_of_line(S) :-at_end_of_line309,6535 -at_end_of_line(S) :-at_end_of_line309,6535 -at_end_of_line(S) :-at_end_of_line309,6535 -at_end_of_line(S) :-at_end_of_line311,6601 -at_end_of_line(S) :-at_end_of_line311,6601 -at_end_of_line(S) :-at_end_of_line311,6601 -current_char_conversion(X,Y) :-current_char_conversion323,6852 -current_char_conversion(X,Y) :-current_char_conversion323,6852 -current_char_conversion(X,Y) :-current_char_conversion323,6852 -current_char_conversion(X,Y) :-current_char_conversion327,6965 -current_char_conversion(X,Y) :-current_char_conversion327,6965 -current_char_conversion(X,Y) :-current_char_conversion327,6965 -'$fetch_char_conversion'([X,Y|_],X,Y).$fetch_char_conversion331,7033 -'$fetch_char_conversion'([X,Y|_],X,Y)./p,predicate,predicate definition331,7033 -'$fetch_char_conversion'([X,Y|_],X,Y).$fetch_char_conversion331,7033 -'$fetch_char_conversion'([_,_|List],X,Y) :-$fetch_char_conversion332,7072 -'$fetch_char_conversion'([_,_|List],X,Y) :-$fetch_char_conversion332,7072 -'$fetch_char_conversion'([_,_|List],X,Y) :-$fetch_char_conversion332,7072 -split_path_file(File, Path, Name) :-split_path_file335,7154 -split_path_file(File, Path, Name) :-split_path_file335,7154 -split_path_file(File, Path, Name) :-split_path_file335,7154 -current_stream(File, Mode, Stream) :-current_stream352,7704 -current_stream(File, Mode, Stream) :-current_stream352,7704 -current_stream(File, Mode, Stream) :-current_stream352,7704 -'$stream_name'(Stream, File) :-$stream_name357,7819 -'$stream_name'(Stream, File) :-$stream_name357,7819 -'$stream_name'(Stream, File) :-$stream_name357,7819 -'$stream_name'(Stream, file_no(File)) :-$stream_name359,7900 -'$stream_name'(Stream, file_no(File)) :-$stream_name359,7900 -'$stream_name'(Stream, file_no(File)) :-$stream_name359,7900 -'$stream_name'(Stream, Stream).$stream_name361,7988 -'$stream_name'(Stream, Stream)./p,predicate,predicate definition361,7988 -'$stream_name'(Stream, Stream).$stream_name361,7988 -'$extend_file_search_path'(P) :-$extend_file_search_path363,8021 -'$extend_file_search_path'(P) :-$extend_file_search_path363,8021 -'$extend_file_search_path'(P) :-$extend_file_search_path363,8021 -'$split_for_path'([], _, _, []).$split_for_path369,8169 -'$split_for_path'([], _, _, [])./p,predicate,predicate definition369,8169 -'$split_for_path'([], _, _, []).$split_for_path369,8169 -'$split_for_path'(S, S1, S2, [A1=A2|R]) :-$split_for_path370,8202 -'$split_for_path'(S, S1, S2, [A1=A2|R]) :-$split_for_path370,8202 -'$split_for_path'(S, S1, S2, [A1=A2|R]) :-$split_for_path370,8202 -'$fetch_first_path'([S1|SR],S1,[],SR) :- !.$fetch_first_path375,8360 -'$fetch_first_path'([S1|SR],S1,[],SR) :- !.$fetch_first_path375,8360 -'$fetch_first_path'([S1|SR],S1,[],SR) :- !.$fetch_first_path375,8360 -'$fetch_first_path'([C|S],S1,[C|F],SR) :-$fetch_first_path376,8404 -'$fetch_first_path'([C|S],S1,[C|F],SR) :-$fetch_first_path376,8404 -'$fetch_first_path'([C|S],S1,[C|F],SR) :-$fetch_first_path376,8404 -'$fetch_second_path'([],_,[],[]).$fetch_second_path379,8480 -'$fetch_second_path'([],_,[],[])./p,predicate,predicate definition379,8480 -'$fetch_second_path'([],_,[],[]).$fetch_second_path379,8480 -'$fetch_second_path'([S1|SR],S1,[],SR) :- !.$fetch_second_path380,8514 -'$fetch_second_path'([S1|SR],S1,[],SR) :- !.$fetch_second_path380,8514 -'$fetch_second_path'([S1|SR],S1,[],SR) :- !.$fetch_second_path380,8514 -'$fetch_second_path'([C|S],S1,[C|A2],SR) :-$fetch_second_path381,8559 -'$fetch_second_path'([C|S],S1,[C|A2],SR) :-$fetch_second_path381,8559 -'$fetch_second_path'([C|S],S1,[C|A2],SR) :-$fetch_second_path381,8559 -'$add_file_search_paths'([]).$add_file_search_paths384,8639 -'$add_file_search_paths'([])./p,predicate,predicate definition384,8639 -'$add_file_search_paths'([]).$add_file_search_paths384,8639 -'$add_file_search_paths'([NS=DS|Paths]) :-$add_file_search_paths385,8669 -'$add_file_search_paths'([NS=DS|Paths]) :-$add_file_search_paths385,8669 -'$add_file_search_paths'([NS=DS|Paths]) :-$add_file_search_paths385,8669 -'$format@'(Goal,Out) :-$format@392,8823 -'$format@'(Goal,Out) :-$format@392,8823 -'$format@'(Goal,Out) :-$format@392,8823 -sformat(String, Form, Args) :-sformat395,8883 -sformat(String, Form, Args) :-sformat395,8883 -sformat(String, Form, Args) :-sformat395,8883 -stream_position_data(Prop, Term, Value) :-stream_position_data409,9302 -stream_position_data(Prop, Term, Value) :-stream_position_data409,9302 -stream_position_data(Prop, Term, Value) :-stream_position_data409,9302 -stream_position_data(Prop, Term, Value) :-stream_position_data415,9529 -stream_position_data(Prop, Term, Value) :-stream_position_data415,9529 -stream_position_data(Prop, Term, Value) :-stream_position_data415,9529 -'$stream_position_field'(char_count, 1).$stream_position_field419,9649 -'$stream_position_field'(char_count, 1)./p,predicate,predicate definition419,9649 -'$stream_position_field'(char_count, 1).$stream_position_field419,9649 -'$stream_position_field'(line_count, 2).$stream_position_field420,9693 -'$stream_position_field'(line_count, 2)./p,predicate,predicate definition420,9693 -'$stream_position_field'(line_count, 2).$stream_position_field420,9693 -'$stream_position_field'(line_position, 3).$stream_position_field421,9737 -'$stream_position_field'(line_position, 3)./p,predicate,predicate definition421,9737 -'$stream_position_field'(line_position, 3).$stream_position_field421,9737 -'$stream_position_field'(byte_count, 4).$stream_position_field422,9781 -'$stream_position_field'(byte_count, 4)./p,predicate,predicate definition422,9781 -'$stream_position_field'(byte_count, 4).$stream_position_field422,9781 -'$set_encoding'(Enc) :-$set_encoding424,9826 -'$set_encoding'(Enc) :-$set_encoding424,9826 -'$set_encoding'(Enc) :-$set_encoding424,9826 -'$codes_to_chars'(String0, String, String0) :- String0 == String, !.$codes_to_chars430,9903 -'$codes_to_chars'(String0, String, String0) :- String0 == String, !.$codes_to_chars430,9903 -'$codes_to_chars'(String0, String, String0) :- String0 == String, !.$codes_to_chars430,9903 -'$codes_to_chars'(String0, [Code|String], [Char|Chars]) :-$codes_to_chars431,9972 -'$codes_to_chars'(String0, [Code|String], [Char|Chars]) :-$codes_to_chars431,9972 -'$codes_to_chars'(String0, [Code|String], [Char|Chars]) :-$codes_to_chars431,9972 -file_exists(IFile) :-file_exists441,10205 -file_exists(IFile) :-file_exists441,10205 -file_exists(IFile) :-file_exists441,10205 -rename(IFile, OFile) :-rename448,10387 -rename(IFile, OFile) :-rename448,10387 -rename(IFile, OFile) :-rename448,10387 -access_file(IFile, Access) :-access_file458,10682 -access_file(IFile, Access) :-access_file458,10682 -access_file(IFile, Access) :-access_file458,10682 - -packages/python/swig/yap4py/prolog/prandom.yap,808 -rannum(X) :- yap_flag(max_integer,MI), rannum(R), X is R/MI.rannum76,2396 -rannum(X) :- yap_flag(max_integer,MI), rannum(R), X is R/MI.rannum76,2396 -rannum(X) :- yap_flag(max_integer,MI), rannum(R), X is R/MI.rannum76,2396 -:- dynamic ranState/5.dynamic111,3115 -:- dynamic ranState/5.dynamic111,3115 -wsize(32) :-wsize117,3179 -wsize(32) :-wsize117,3179 -wsize(32) :-wsize117,3179 -wsize(64).wsize119,3243 -wsize(64).wsize119,3243 -ranstart :- ranstart(8'365). %ranstart121,3255 -ranstart(N) :-ranstart123,3288 -ranstart(N) :-ranstart123,3288 -ranstart(N) :-ranstart123,3288 -rannum(Raw) :-rannum131,3602 -rannum(Raw) :-rannum131,3602 -rannum(Raw) :-rannum131,3602 -ranunif(Range, Unif) :-ranunif142,3850 -ranunif(Range, Unif) :-ranunif142,3850 -ranunif(Range, Unif) :-ranunif142,3850 - -packages/python/swig/yap4py/prolog/python.pl,617 -:- dynamic python_mref_cache/2, python_obj_cache/2.dynamic116,3363 -:- dynamic python_mref_cache/2, python_obj_cache/2.dynamic116,3363 -python_import(Module) :-python_import133,3593 -python_import(Module) :-python_import133,3593 -python_import(Module) :-python_import133,3593 -python(Exp, Out) :-python137,3650 -python(Exp, Out) :-python137,3650 -python(Exp, Out) :-python137,3650 -python_command(Cmd) :-python_command140,3684 -python_command(Cmd) :-python_command140,3684 -python_command(Cmd) :-python_command140,3684 -start_python :-start_python144,3741 -add_cwd_to_python :-add_cwd_to_python148,3810 - -packages/python/swig/yap4py/prolog/queues.yap,2639 -make_queue(X-X).make_queue159,3389 -make_queue(X-X).make_queue159,3389 -join_queue(Element, Front-[Element|Back], Front-Back).join_queue174,3793 -join_queue(Element, Front-[Element|Back], Front-Back).join_queue174,3793 -list_join_queue(List, Front-OldBack, Front-NewBack) :-list_join_queue183,4088 -list_join_queue(List, Front-OldBack, Front-NewBack) :-list_join_queue183,4088 -list_join_queue(List, Front-OldBack, Front-NewBack) :-list_join_queue183,4088 -jump_queue(Element, Front-Back, [Element|Front]-Back).jump_queue198,4552 -jump_queue(Element, Front-Back, [Element|Front]-Back).jump_queue198,4552 -list_jump_queue(List, OldFront-Back, NewFront-Back) :-list_jump_queue211,5148 -list_jump_queue(List, OldFront-Back, NewFront-Back) :-list_jump_queue211,5148 -list_jump_queue(List, OldFront-Back, NewFront-Back) :-list_jump_queue211,5148 -head_queue(Front-Back, Head) :-head_queue223,5609 -head_queue(Front-Back, Head) :-head_queue223,5609 -head_queue(Front-Back, Head) :-head_queue223,5609 -serve_queue(OldFront-Back, Head, NewFront-Back) :-serve_queue232,5806 -serve_queue(OldFront-Back, Head, NewFront-Back) :-serve_queue232,5806 -serve_queue(OldFront-Back, Head, NewFront-Back) :-serve_queue232,5806 -empty_queue(Front-Back) :-empty_queue245,6190 -empty_queue(Front-Back) :-empty_queue245,6190 -empty_queue(Front-Back) :-empty_queue245,6190 -length_queue(Front-Back, Length) :-length_queue255,6453 -length_queue(Front-Back, Length) :-length_queue255,6453 -length_queue(Front-Back, Length) :-length_queue255,6453 -length_queue(Front, Back, N, N) :-length_queue259,6537 -length_queue(Front, Back, N, N) :-length_queue259,6537 -length_queue(Front, Back, N, N) :-length_queue259,6537 -length_queue([_|Front], Back, K, N) :-length_queue261,6591 -length_queue([_|Front], Back, K, N) :-length_queue261,6591 -length_queue([_|Front], Back, K, N) :-length_queue261,6591 -list_to_queue(List, Front-Back) :-list_to_queue270,6766 -list_to_queue(List, Front-Back) :-list_to_queue270,6766 -list_to_queue(List, Front-Back) :-list_to_queue270,6766 -queue_to_list(Front-Back, List) :-queue_to_list278,6920 -queue_to_list(Front-Back, List) :-queue_to_list278,6920 -queue_to_list(Front-Back, List) :-queue_to_list278,6920 -queue_to_list(Front, Back, Ans) :-queue_to_list281,6991 -queue_to_list(Front, Back, Ans) :-queue_to_list281,6991 -queue_to_list(Front, Back, Ans) :-queue_to_list281,6991 -queue_to_list([Head|Front], Back, [Head|Tail]) :-queue_to_list283,7055 -queue_to_list([Head|Front], Back, [Head|Tail]) :-queue_to_list283,7055 -queue_to_list([Head|Front], Back, [Head|Tail]) :-queue_to_list283,7055 - -packages/python/swig/yap4py/prolog/random.yap,1638 -random(L, U, R) :-random141,3328 -random(L, U, R) :-random141,3328 -random(L, U, R) :-random141,3328 -randset(K, N, S) :-randset167,3833 -randset(K, N, S) :-randset167,3833 -randset(K, N, S) :-randset167,3833 -randset(0, _, S, S) :- !.randset173,3896 -randset(0, _, S, S) :- !.randset173,3896 -randset(0, _, S, S) :- !.randset173,3896 -randset(K, N, Si, So) :-randset174,3922 -randset(K, N, Si, So) :-randset174,3922 -randset(K, N, Si, So) :-randset174,3922 -randset(K, N, Si, So) :-randset180,4024 -randset(K, N, Si, So) :-randset180,4024 -randset(K, N, Si, So) :-randset180,4024 -randseq(K, N, S) :-randseq185,4086 -randseq(K, N, S) :-randseq185,4086 -randseq(K, N, S) :-randseq185,4086 -randseq(0, _, S, S) :- !.randseq190,4165 -randseq(0, _, S, S) :- !.randseq190,4165 -randseq(0, _, S, S) :- !.randseq190,4165 -randseq(K, N, [Y-N|Si], So) :-randseq191,4191 -randseq(K, N, [Y-N|Si], So) :-randseq191,4191 -randseq(K, N, [Y-N|Si], So) :-randseq191,4191 -randseq(K, N, Si, So) :-randseq198,4307 -randseq(K, N, Si, So) :-randseq198,4307 -randseq(K, N, Si, So) :-randseq198,4307 -strip_keys([], []) :- !.strip_keys203,4369 -strip_keys([], []) :- !.strip_keys203,4369 -strip_keys([], []) :- !.strip_keys203,4369 -strip_keys([_-K|L], [K|S]) :-strip_keys204,4394 -strip_keys([_-K|L], [K|S]) :-strip_keys204,4394 -strip_keys([_-K|L], [K|S]) :-strip_keys204,4394 -setrand(rand(X,Y,Z)) :-setrand207,4444 -setrand(rand(X,Y,Z)) :-setrand207,4444 -setrand(rand(X,Y,Z)) :-setrand207,4444 -getrand(rand(X,Y,Z)) :-getrand219,4585 -getrand(rand(X,Y,Z)) :-getrand219,4585 -getrand(rand(X,Y,Z)) :-getrand219,4585 - -packages/python/swig/yap4py/prolog/range.yap,0 - -packages/python/swig/yap4py/prolog/rbtrees.yap,35452 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_new105,2637 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_new(K,V,t(Nil,black(Nil,K,V,Nil))) :- Nil = black('',_,_,'').rb_new107,2684 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_empty(t(Nil,Nil)) :- Nil = black('',_,_,'').rb_empty112,2830 -rb_lookup(Key, Val, t(_,Tree)) :-rb_lookup119,3044 -rb_lookup(Key, Val, t(_,Tree)) :-rb_lookup119,3044 -rb_lookup(Key, Val, t(_,Tree)) :-rb_lookup119,3044 -lookup(_, _, black('',_,_,'')) :- !, fail.lookup122,3104 -lookup(_, _, black('',_,_,'')) :- !, fail.lookup122,3104 -lookup(_, _, black('',_,_,'')) :- !, fail.lookup122,3104 -lookup(Key, Val, Tree) :-lookup123,3147 -lookup(Key, Val, Tree) :-lookup123,3147 -lookup(Key, Val, Tree) :-lookup123,3147 -lookup(>, K, V, Tree) :-lookup128,3240 -lookup(>, K, V, Tree) :-lookup128,3240 -lookup(>, K, V, Tree) :-lookup128,3240 -lookup(<, K, V, Tree) :-lookup131,3307 -lookup(<, K, V, Tree) :-lookup131,3307 -lookup(<, K, V, Tree) :-lookup131,3307 -lookup(=, _, V, Tree) :-lookup134,3374 -lookup(=, _, V, Tree) :-lookup134,3374 -lookup(=, _, V, Tree) :-lookup134,3374 -rb_min(t(_,Tree), Key, Val) :-rb_min141,3524 -rb_min(t(_,Tree), Key, Val) :-rb_min141,3524 -rb_min(t(_,Tree), Key, Val) :-rb_min141,3524 -min(red(black('',_,_,_),Key,Val,_), Key, Val) :- !.min144,3578 -min(red(black('',_,_,_),Key,Val,_), Key, Val) :- !.min144,3578 -min(red(black('',_,_,_),Key,Val,_), Key, Val) :- !.min144,3578 -min(black(black('',_,_,_),Key,Val,_), Key, Val) :- !.min145,3630 -min(black(black('',_,_,_),Key,Val,_), Key, Val) :- !.min145,3630 -min(black(black('',_,_,_),Key,Val,_), Key, Val) :- !.min145,3630 -min(red(Right,_,_,_), Key, Val) :-min146,3684 -min(red(Right,_,_,_), Key, Val) :-min146,3684 -min(red(Right,_,_,_), Key, Val) :-min146,3684 -min(black(Right,_,_,_), Key, Val) :-min148,3740 -min(black(Right,_,_,_), Key, Val) :-min148,3740 -min(black(Right,_,_,_), Key, Val) :-min148,3740 -rb_max(t(_,Tree), Key, Val) :-rb_max155,3907 -rb_max(t(_,Tree), Key, Val) :-rb_max155,3907 -rb_max(t(_,Tree), Key, Val) :-rb_max155,3907 -max(red(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max158,3961 -max(red(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max158,3961 -max(red(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max158,3961 -max(black(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max159,4013 -max(black(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max159,4013 -max(black(_,Key,Val,black('',_,_,_)), Key, Val) :- !.max159,4013 -max(red(_,_,_,Left), Key, Val) :-max160,4067 -max(red(_,_,_,Left), Key, Val) :-max160,4067 -max(red(_,_,_,Left), Key, Val) :-max160,4067 -max(black(_,_,_,Left), Key, Val) :-max162,4121 -max(black(_,_,_,Left), Key, Val) :-max162,4121 -max(black(_,_,_,Left), Key, Val) :-max162,4121 -rb_next(t(_,Tree), Key, Next, Val) :-rb_next170,4308 -rb_next(t(_,Tree), Key, Next, Val) :-rb_next170,4308 -rb_next(t(_,Tree), Key, Next, Val) :-rb_next170,4308 -next(black('',_,_,''), _, _, _, _) :- !, fail.next173,4380 -next(black('',_,_,''), _, _, _, _) :- !, fail.next173,4380 -next(black('',_,_,''), _, _, _, _) :- !, fail.next173,4380 -next(Tree, Key, Next, Val, Candidate) :-next174,4427 -next(Tree, Key, Next, Val, Candidate) :-next174,4427 -next(Tree, Key, Next, Val, Candidate) :-next174,4427 -next(>, K, KA, VA, NK, V, Tree, _) :-next180,4578 -next(>, K, KA, VA, NK, V, Tree, _) :-next180,4578 -next(>, K, KA, VA, NK, V, Tree, _) :-next180,4578 -next(<, K, _, _, NK, V, Tree, Candidate) :-next183,4663 -next(<, K, _, _, NK, V, Tree, Candidate) :-next183,4663 -next(<, K, _, _, NK, V, Tree, Candidate) :-next183,4663 -next(=, _, _, _, NK, Val, Tree, Candidate) :-next186,4758 -next(=, _, _, _, NK, Val, Tree, Candidate) :-next186,4758 -next(=, _, _, _, NK, Val, Tree, Candidate) :-next186,4758 -rb_previous(t(_,Tree), Key, Previous, Val) :-rb_previous200,5051 -rb_previous(t(_,Tree), Key, Previous, Val) :-rb_previous200,5051 -rb_previous(t(_,Tree), Key, Previous, Val) :-rb_previous200,5051 -previous(black('',_,_,''), _, _, _, _) :- !, fail.previous203,5139 -previous(black('',_,_,''), _, _, _, _) :- !, fail.previous203,5139 -previous(black('',_,_,''), _, _, _, _) :- !, fail.previous203,5139 -previous(Tree, Key, Previous, Val, Candidate) :-previous204,5190 -previous(Tree, Key, Previous, Val, Candidate) :-previous204,5190 -previous(Tree, Key, Previous, Val, Candidate) :-previous204,5190 -previous(>, K, _, _, NK, V, Tree, Candidate) :-previous210,5357 -previous(>, K, _, _, NK, V, Tree, Candidate) :-previous210,5357 -previous(>, K, _, _, NK, V, Tree, Candidate) :-previous210,5357 -previous(<, K, KA, VA, NK, V, Tree, _) :-previous213,5460 -previous(<, K, KA, VA, NK, V, Tree, _) :-previous213,5460 -previous(<, K, KA, VA, NK, V, Tree, _) :-previous213,5460 -previous(=, _, _, _, K, Val, Tree, Candidate) :-previous216,5553 -previous(=, _, _, _, K, Val, Tree, Candidate) :-previous216,5553 -previous(=, _, _, _, K, Val, Tree, Candidate) :-previous216,5553 -rb_update(t(Nil,OldTree), Key, OldVal, Val, t(Nil,NewTree)) :-rb_update231,5926 -rb_update(t(Nil,OldTree), Key, OldVal, Val, t(Nil,NewTree)) :-rb_update231,5926 -rb_update(t(Nil,OldTree), Key, OldVal, Val, t(Nil,NewTree)) :-rb_update231,5926 -rb_update(t(Nil,OldTree), Key, Val, t(Nil,NewTree)) :-rb_update234,6035 -rb_update(t(Nil,OldTree), Key, Val, t(Nil,NewTree)) :-rb_update234,6035 -rb_update(t(Nil,OldTree), Key, Val, t(Nil,NewTree)) :-rb_update234,6035 -update(black(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update237,6131 -update(black(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update237,6131 -update(black(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update237,6131 -update(red(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update251,6512 -update(red(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update251,6512 -update(red(Left,Key0,Val0,Right), Key, OldVal, Val, NewTree) :-update251,6512 -rb_rewrite(t(_Nil,OldTree), Key, OldVal, Val) :-rb_rewrite271,7077 -rb_rewrite(t(_Nil,OldTree), Key, OldVal, Val) :-rb_rewrite271,7077 -rb_rewrite(t(_Nil,OldTree), Key, OldVal, Val) :-rb_rewrite271,7077 -rb_rewrite(t(_Nil,OldTree), Key, Val) :-rb_rewrite274,7164 -rb_rewrite(t(_Nil,OldTree), Key, Val) :-rb_rewrite274,7164 -rb_rewrite(t(_Nil,OldTree), Key, Val) :-rb_rewrite274,7164 -rewrite(Node, Key, OldVal, Val) :-rewrite277,7238 -rewrite(Node, Key, OldVal, Val) :-rewrite277,7238 -rewrite(Node, Key, OldVal, Val) :-rewrite277,7238 -rb_apply(t(Nil,OldTree), Key, Goal, t(Nil,NewTree)) :-rb_apply314,8114 -rb_apply(t(Nil,OldTree), Key, Goal, t(Nil,NewTree)) :-rb_apply314,8114 -rb_apply(t(Nil,OldTree), Key, Goal, t(Nil,NewTree)) :-rb_apply314,8114 -rb_in(Key, Val, t(_,T)) :-rb_in356,9087 -rb_in(Key, Val, t(_,T)) :-rb_in356,9087 -rb_in(Key, Val, t(_,T)) :-rb_in356,9087 -rb_in(Key, Val, t(_,T)) :-rb_in359,9148 -rb_in(Key, Val, t(_,T)) :-rb_in359,9148 -rb_in(Key, Val, t(_,T)) :-rb_in359,9148 -enum(Key, Val, black(L,K,V,R)) :-enum363,9199 -enum(Key, Val, black(L,K,V,R)) :-enum363,9199 -enum(Key, Val, black(L,K,V,R)) :-enum363,9199 -enum(Key, Val, red(L,K,V,R)) :-enum366,9278 -enum(Key, Val, red(L,K,V,R)) :-enum366,9278 -enum(Key, Val, red(L,K,V,R)) :-enum366,9278 -enum_cases(Key, Val, L, _, _, _) :-enum_cases369,9346 -enum_cases(Key, Val, L, _, _, _) :-enum_cases369,9346 -enum_cases(Key, Val, L, _, _, _) :-enum_cases369,9346 -enum_cases(Key, Val, _, Key, Val, _).enum_cases371,9402 -enum_cases(Key, Val, _, Key, Val, _).enum_cases371,9402 -enum_cases(Key, Val, _, _, _, R) :-enum_cases372,9440 -enum_cases(Key, Val, _, _, _, R) :-enum_cases372,9440 -enum_cases(Key, Val, _, _, _, R) :-enum_cases372,9440 -rb_lookupall(Key, Val, t(_,Tree)) :-rb_lookupall381,9631 -rb_lookupall(Key, Val, t(_,Tree)) :-rb_lookupall381,9631 -rb_lookupall(Key, Val, t(_,Tree)) :-rb_lookupall381,9631 -lookupall(_, _, black('',_,_,'')) :- !, fail.lookupall385,9698 -lookupall(_, _, black('',_,_,'')) :- !, fail.lookupall385,9698 -lookupall(_, _, black('',_,_,'')) :- !, fail.lookupall385,9698 -lookupall(Key, Val, Tree) :-lookupall386,9744 -lookupall(Key, Val, Tree) :-lookupall386,9744 -lookupall(Key, Val, Tree) :-lookupall386,9744 -lookupall(>, K, V, Tree) :-lookupall391,9843 -lookupall(>, K, V, Tree) :-lookupall391,9843 -lookupall(>, K, V, Tree) :-lookupall391,9843 -lookupall(=, _, V, Tree) :-lookupall394,9919 -lookupall(=, _, V, Tree) :-lookupall394,9919 -lookupall(=, _, V, Tree) :-lookupall394,9919 -lookupall(=, K, V, Tree) :-lookupall396,9963 -lookupall(=, K, V, Tree) :-lookupall396,9963 -lookupall(=, K, V, Tree) :-lookupall396,9963 -lookupall(<, K, V, Tree) :-lookupall399,10036 -lookupall(<, K, V, Tree) :-lookupall399,10036 -lookupall(<, K, V, Tree) :-lookupall399,10036 -rb_insert(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert415,10508 -rb_insert(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert415,10508 -rb_insert(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert415,10508 -insert(Tree0,Key,Val,Nil,Tree) :-insert419,10590 -insert(Tree0,Key,Val,Nil,Tree) :-insert419,10590 -insert(Tree0,Key,Val,Nil,Tree) :-insert419,10590 -insert2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert2446,11176 -insert2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert2446,11176 -insert2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert2446,11176 -insert2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2449,11273 -insert2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2449,11273 -insert2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2449,11273 -insert2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2461,11523 -insert2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2461,11523 -insert2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert2461,11523 -rb_insert_new(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert_new480,12063 -rb_insert_new(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert_new480,12063 -rb_insert_new(t(Nil,Tree0),Key,Val,t(Nil,Tree)) :-rb_insert_new480,12063 -insert_new(Tree0,Key,Val,Nil,Tree) :-insert_new484,12153 -insert_new(Tree0,Key,Val,Nil,Tree) :-insert_new484,12153 -insert_new(Tree0,Key,Val,Nil,Tree) :-insert_new484,12153 -insert_new_2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert_new_2491,12302 -insert_new_2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert_new_2491,12302 -insert_new_2(black('',_,_,''), K, V, Nil, T, Status) :- !,insert_new_2491,12302 -insert_new_2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2494,12404 -insert_new_2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2494,12404 -insert_new_2(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2494,12404 -insert_new_2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2505,12639 -insert_new_2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2505,12639 -insert_new_2(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-insert_new_2505,12639 -fix_root(black(L,K,V,R),black(L,K,V,R)).fix_root519,12959 -fix_root(black(L,K,V,R),black(L,K,V,R)).fix_root519,12959 -fix_root(red(L,K,V,R),black(L,K,V,R)).fix_root520,13000 -fix_root(red(L,K,V,R),black(L,K,V,R)).fix_root520,13000 -fix_left(done,T,T,done) :- !.fix_left527,13091 -fix_left(done,T,T,done) :- !.fix_left527,13091 -fix_left(done,T,T,done) :- !.fix_left527,13091 -fix_left(not_done,Tmp,Final,Done) :-fix_left528,13121 -fix_left(not_done,Tmp,Final,Done) :-fix_left528,13121 -fix_left(not_done,Tmp,Final,Done) :-fix_left528,13121 -fix_left(T,T,done).fix_left555,13898 -fix_left(T,T,done).fix_left555,13898 -fix_right(done,T,T,done) :- !.fix_right560,13969 -fix_right(done,T,T,done) :- !.fix_right560,13969 -fix_right(done,T,T,done) :- !.fix_right560,13969 -fix_right(not_done,Tmp,Final,Done) :-fix_right561,14000 -fix_right(not_done,Tmp,Final,Done) :-fix_right561,14000 -fix_right(not_done,Tmp,Final,Done) :-fix_right561,14000 -fix_right(T,T,done).fix_right588,14784 -fix_right(T,T,done).fix_right588,14784 -pretty_print(t(_,T)) :-pretty_print594,14835 -pretty_print(t(_,T)) :-pretty_print594,14835 -pretty_print(t(_,T)) :-pretty_print594,14835 -pretty_print(black('',_,_,''),_) :- !.pretty_print597,14880 -pretty_print(black('',_,_,''),_) :- !.pretty_print597,14880 -pretty_print(black('',_,_,''),_) :- !.pretty_print597,14880 -pretty_print(red(L,K,_,R),D) :-pretty_print598,14919 -pretty_print(red(L,K,_,R),D) :-pretty_print598,14919 -pretty_print(red(L,K,_,R),D) :-pretty_print598,14919 -pretty_print(black(L,K,_,R),D) :-pretty_print603,15038 -pretty_print(black(L,K,_,R),D) :-pretty_print603,15038 -pretty_print(black(L,K,_,R),D) :-pretty_print603,15038 -rb_delete(t(Nil,T), K, t(Nil,NT)) :-rb_delete610,15161 -rb_delete(t(Nil,T), K, t(Nil,NT)) :-rb_delete610,15161 -rb_delete(t(Nil,T), K, t(Nil,NT)) :-rb_delete610,15161 -rb_delete(t(Nil,T), K, V, t(Nil,NT)) :-rb_delete619,15407 -rb_delete(t(Nil,T), K, V, t(Nil,NT)) :-rb_delete619,15407 -rb_delete(t(Nil,T), K, V, t(Nil,NT)) :-rb_delete619,15407 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete626,15546 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete626,15546 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete626,15546 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete630,15675 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete630,15675 -delete(red(L,K0,V0,R), K, V, NT, Flag) :-delete630,15675 -delete(red(L,_,V,R), _, V, OUT, Flag) :-delete634,15805 -delete(red(L,_,V,R), _, V, OUT, Flag) :-delete634,15805 -delete(red(L,_,V,R), _, V, OUT, Flag) :-delete634,15805 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete637,15889 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete637,15889 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete637,15889 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete641,16022 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete641,16022 -delete(black(L,K0,V0,R), K, V, NT, Flag) :-delete641,16022 -delete(black(L,_,V,R), _, V, OUT, Flag) :-delete645,16156 -delete(black(L,_,V,R), _, V, OUT, Flag) :-delete645,16156 -delete(black(L,_,V,R), _, V, OUT, Flag) :-delete645,16156 -rb_del_min(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_min654,16409 -rb_del_min(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_min654,16409 -rb_del_min(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_min654,16409 -del_min(red(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min657,16486 -del_min(red(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min657,16486 -del_min(red(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min657,16486 -del_min(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min659,16584 -del_min(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min659,16584 -del_min(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min659,16584 -del_min(black(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min662,16713 -del_min(black(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min662,16713 -del_min(black(black('',_,_,_),K,V,R), K, V, Nil, OUT, Flag) :- !,del_min662,16713 -del_min(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min664,16815 -del_min(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min664,16815 -del_min(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_min664,16815 -rb_del_max(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_max674,17118 -rb_del_max(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_max674,17118 -rb_del_max(t(Nil,T), K, Val, t(Nil,NT)) :-rb_del_max674,17118 -del_max(red(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max677,17195 -del_max(red(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max677,17195 -del_max(red(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max677,17195 -del_max(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max679,17293 -del_max(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max679,17293 -del_max(red(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max679,17293 -del_max(black(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max682,17422 -del_max(black(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max682,17422 -del_max(black(L,K,V,black('',_,_,_)), K, V, Nil, OUT, Flag) :- !,del_max682,17422 -del_max(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max684,17524 -del_max(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max684,17524 -del_max(black(L,K0,V0,R), K, V, Nil, NT, Flag) :-del_max684,17524 -delete_red_node(L1,L2,L1,done) :- L1 == L2, !.delete_red_node690,17661 -delete_red_node(L1,L2,L1,done) :- L1 == L2, !.delete_red_node690,17661 -delete_red_node(L1,L2,L1,done) :- L1 == L2, !.delete_red_node690,17661 -delete_red_node(black('',_,_,''),R,R,done) :- !.delete_red_node691,17708 -delete_red_node(black('',_,_,''),R,R,done) :- !.delete_red_node691,17708 -delete_red_node(black('',_,_,''),R,R,done) :- !.delete_red_node691,17708 -delete_red_node(L,black('',_,_,''),L,done) :- !.delete_red_node692,17758 -delete_red_node(L,black('',_,_,''),L,done) :- !.delete_red_node692,17758 -delete_red_node(L,black('',_,_,''),L,done) :- !.delete_red_node692,17758 -delete_red_node(L,R,OUT,Done) :- delete_red_node693,17808 -delete_red_node(L,R,OUT,Done) :- delete_red_node693,17808 -delete_red_node(L,R,OUT,Done) :- delete_red_node693,17808 -delete_black_node(L1,L2,L1,not_done) :- L1 == L2, !.delete_black_node698,17924 -delete_black_node(L1,L2,L1,not_done) :- L1 == L2, !.delete_black_node698,17924 -delete_black_node(L1,L2,L1,not_done) :- L1 == L2, !.delete_black_node698,17924 -delete_black_node(black('',_,_,''),red(L,K,V,R),black(L,K,V,R),done) :- !.delete_black_node699,17978 -delete_black_node(black('',_,_,''),red(L,K,V,R),black(L,K,V,R),done) :- !.delete_black_node699,17978 -delete_black_node(black('',_,_,''),red(L,K,V,R),black(L,K,V,R),done) :- !.delete_black_node699,17978 -delete_black_node(black('',_,_,''),R,R,not_done) :- !.delete_black_node700,18053 -delete_black_node(black('',_,_,''),R,R,not_done) :- !.delete_black_node700,18053 -delete_black_node(black('',_,_,''),R,R,not_done) :- !.delete_black_node700,18053 -delete_black_node(red(L,K,V,R),black('',_,_,''),black(L,K,V,R),done) :- !.delete_black_node701,18108 -delete_black_node(red(L,K,V,R),black('',_,_,''),black(L,K,V,R),done) :- !.delete_black_node701,18108 -delete_black_node(red(L,K,V,R),black('',_,_,''),black(L,K,V,R),done) :- !.delete_black_node701,18108 -delete_black_node(L,black('',_,_,''),L,not_done) :- !.delete_black_node702,18183 -delete_black_node(L,black('',_,_,''),L,not_done) :- !.delete_black_node702,18183 -delete_black_node(L,black('',_,_,''),L,not_done) :- !.delete_black_node702,18183 -delete_black_node(L,R,OUT,Done) :-delete_black_node703,18238 -delete_black_node(L,R,OUT,Done) :-delete_black_node703,18238 -delete_black_node(L,R,OUT,Done) :-delete_black_node703,18238 -delete_next(red(black('',_,_,''),K,V,R),K,V,R,done) :- !.delete_next708,18355 -delete_next(red(black('',_,_,''),K,V,R),K,V,R,done) :- !.delete_next708,18355 -delete_next(red(black('',_,_,''),K,V,R),K,V,R,done) :- !.delete_next708,18355 -delete_next(black(black('',_,_,''),K,V,R),K,V,R,not_done) :- !.delete_next711,18508 -delete_next(black(black('',_,_,''),K,V,R),K,V,R,not_done) :- !.delete_next711,18508 -delete_next(black(black('',_,_,''),K,V,R),K,V,R,not_done) :- !.delete_next711,18508 -delete_next(red(L,K,V,R),K0,V0,OUT,Done) :-delete_next712,18572 -delete_next(red(L,K,V,R),K0,V0,OUT,Done) :-delete_next712,18572 -delete_next(red(L,K,V,R),K0,V0,OUT,Done) :-delete_next712,18572 -delete_next(black(L,K,V,R),K0,V0,OUT,Done) :-delete_next715,18691 -delete_next(black(L,K,V,R),K0,V0,OUT,Done) :-delete_next715,18691 -delete_next(black(L,K,V,R),K0,V0,OUT,Done) :-delete_next715,18691 -fixup_left(done,T,T,done).fixup_left720,18816 -fixup_left(done,T,T,done).fixup_left720,18816 -fixup_left(not_done,T,NT,Done) :-fixup_left721,18843 -fixup_left(not_done,T,NT,Done) :-fixup_left721,18843 -fixup_left(not_done,T,NT,Done) :-fixup_left721,18843 -fixup_right(done,T,T,done).fixup_right761,20380 -fixup_right(done,T,T,done).fixup_right761,20380 -fixup_right(not_done,T,NT,Done) :-fixup_right762,20408 -fixup_right(not_done,T,NT,Done) :-fixup_right762,20408 -fixup_right(not_done,T,NT,Done) :-fixup_right762,20408 -rb_visit(t(_,T),Lf) :-rb_visit813,22075 -rb_visit(t(_,T),Lf) :-rb_visit813,22075 -rb_visit(t(_,T),Lf) :-rb_visit813,22075 -rb_visit(t(_,T),L0,Lf) :-rb_visit816,22116 -rb_visit(t(_,T),L0,Lf) :-rb_visit816,22116 -rb_visit(t(_,T),L0,Lf) :-rb_visit816,22116 -visit(black('',_,_,_),L,L) :- !.visit819,22160 -visit(black('',_,_,_),L,L) :- !.visit819,22160 -visit(black('',_,_,_),L,L) :- !.visit819,22160 -visit(red(L,K,V,R),L0,Lf) :-visit820,22193 -visit(red(L,K,V,R),L0,Lf) :-visit820,22193 -visit(red(L,K,V,R),L0,Lf) :-visit820,22193 -visit(black(L,K,V,R),L0,Lf) :-visit823,22262 -visit(black(L,K,V,R),L0,Lf) :-visit823,22262 -visit(black(L,K,V,R),L0,Lf) :-visit823,22262 -rb_map(t(Nil,Tree),Goal,t(Nil,NewTree)) :-rb_map833,22480 -rb_map(t(Nil,Tree),Goal,t(Nil,NewTree)) :-rb_map833,22480 -rb_map(t(Nil,Tree),Goal,t(Nil,NewTree)) :-rb_map833,22480 -map(black('',_,_,''),_,Nil,Nil) :- !.map837,22554 -map(black('',_,_,''),_,Nil,Nil) :- !.map837,22554 -map(black('',_,_,''),_,Nil,Nil) :- !.map837,22554 -map(red(L,K,V,R),Goal,red(NL,K,NV,NR),Nil) :-map838,22592 -map(red(L,K,V,R),Goal,red(NL,K,NV,NR),Nil) :-map838,22592 -map(red(L,K,V,R),Goal,red(NL,K,NV,NR),Nil) :-map838,22592 -map(black(L,K,V,R),Goal,black(NL,K,NV,NR),Nil) :-map842,22701 -map(black(L,K,V,R),Goal,black(NL,K,NV,NR),Nil) :-map842,22701 -map(black(L,K,V,R),Goal,black(NL,K,NV,NR),Nil) :-map842,22701 -rb_map(t(_,Tree),Goal) :-rb_map857,23220 -rb_map(t(_,Tree),Goal) :-rb_map857,23220 -rb_map(t(_,Tree),Goal) :-rb_map857,23220 -map(black('',_,_,''),_) :- !.map861,23265 -map(black('',_,_,''),_) :- !.map861,23265 -map(black('',_,_,''),_) :- !.map861,23265 -map(red(L,_,V,R),Goal) :-map862,23295 -map(red(L,_,V,R),Goal) :-map862,23295 -map(red(L,_,V,R),Goal) :-map862,23295 -map(black(L,_,V,R),Goal) :-map866,23367 -map(black(L,_,V,R),Goal) :-map866,23367 -map(black(L,_,V,R),Goal) :-map866,23367 -rb_fold(Goal, t(_,Tree), In, Out) :-rb_fold883,23917 -rb_fold(Goal, t(_,Tree), In, Out) :-rb_fold883,23917 -rb_fold(Goal, t(_,Tree), In, Out) :-rb_fold883,23917 -map_acc(black('',_,_,''), _, Acc, Acc) :- !.map_acc886,23986 -map_acc(black('',_,_,''), _, Acc, Acc) :- !.map_acc886,23986 -map_acc(black('',_,_,''), _, Acc, Acc) :- !.map_acc886,23986 -map_acc(red(L,_,V,R), Goal, Left, Right) :-map_acc887,24031 -map_acc(red(L,_,V,R), Goal, Left, Right) :-map_acc887,24031 -map_acc(red(L,_,V,R), Goal, Left, Right) :-map_acc887,24031 -map_acc(black(L,_,V,R), Goal, Left, Right) :-map_acc891,24175 -map_acc(black(L,_,V,R), Goal, Left, Right) :-map_acc891,24175 -map_acc(black(L,_,V,R), Goal, Left, Right) :-map_acc891,24175 -rb_key_fold(Goal, t(_,Tree), In, Out) :-rb_key_fold908,24813 -rb_key_fold(Goal, t(_,Tree), In, Out) :-rb_key_fold908,24813 -rb_key_fold(Goal, t(_,Tree), In, Out) :-rb_key_fold908,24813 -map_key_acc(black('',_,_,''), _, Acc, Acc) :- !.map_key_acc911,24890 -map_key_acc(black('',_,_,''), _, Acc, Acc) :- !.map_key_acc911,24890 -map_key_acc(black('',_,_,''), _, Acc, Acc) :- !.map_key_acc911,24890 -map_key_acc(red(L,Key,V,R), Goal, Left, Right) :-map_key_acc912,24939 -map_key_acc(red(L,Key,V,R), Goal, Left, Right) :-map_key_acc912,24939 -map_key_acc(red(L,Key,V,R), Goal, Left, Right) :-map_key_acc912,24939 -map_key_acc(black(L,Key,V,R), Goal, Left, Right) :-map_key_acc916,25103 -map_key_acc(black(L,Key,V,R), Goal, Left, Right) :-map_key_acc916,25103 -map_key_acc(black(L,Key,V,R), Goal, Left, Right) :-map_key_acc916,25103 -rb_clone(t(Nil,T),t(Nil,NT),Ns) :-rb_clone927,25484 -rb_clone(t(Nil,T),t(Nil,NT),Ns) :-rb_clone927,25484 -rb_clone(t(Nil,T),t(Nil,NT),Ns) :-rb_clone927,25484 -clone(black('',_,_,''),Nil,Nil,Ns,Ns) :- !.clone930,25544 -clone(black('',_,_,''),Nil,Nil,Ns,Ns) :- !.clone930,25544 -clone(black('',_,_,''),Nil,Nil,Ns,Ns) :- !.clone930,25544 -clone(red(L,K,_,R),Nil,red(NL,K,NV,NR),NsF,Ns0) :-clone931,25588 -clone(red(L,K,_,R),Nil,red(NL,K,NV,NR),NsF,Ns0) :-clone931,25588 -clone(red(L,K,_,R),Nil,red(NL,K,NV,NR),NsF,Ns0) :-clone931,25588 -clone(black(L,K,_,R),Nil,black(NL,K,NV,NR),NsF,Ns0) :-clone934,25698 -clone(black(L,K,_,R),Nil,black(NL,K,NV,NR),NsF,Ns0) :-clone934,25698 -clone(black(L,K,_,R),Nil,black(NL,K,NV,NR),NsF,Ns0) :-clone934,25698 -rb_clone(t(Nil,T),ONs,t(Nil,NT),Ns) :-rb_clone938,25813 -rb_clone(t(Nil,T),ONs,t(Nil,NT),Ns) :-rb_clone938,25813 -rb_clone(t(Nil,T),ONs,t(Nil,NT),Ns) :-rb_clone938,25813 -clone(black('',_,_,''),Nil,ONs,ONs,Nil,Ns,Ns) :- !.clone941,25884 -clone(black('',_,_,''),Nil,ONs,ONs,Nil,Ns,Ns) :- !.clone941,25884 -clone(black('',_,_,''),Nil,ONs,ONs,Nil,Ns,Ns) :- !.clone941,25884 -clone(red(L,K,V,R),Nil,ONsF,ONs0,red(NL,K,NV,NR),NsF,Ns0) :-clone942,25936 -clone(red(L,K,V,R),Nil,ONsF,ONs0,red(NL,K,NV,NR),NsF,Ns0) :-clone942,25936 -clone(red(L,K,V,R),Nil,ONsF,ONs0,red(NL,K,NV,NR),NsF,Ns0) :-clone942,25936 -clone(black(L,K,V,R),Nil,ONsF,ONs0,black(NL,K,NV,NR),NsF,Ns0) :-clone945,26082 -clone(black(L,K,V,R),Nil,ONsF,ONs0,black(NL,K,NV,NR),NsF,Ns0) :-clone945,26082 -clone(black(L,K,V,R),Nil,ONsF,ONs0,black(NL,K,NV,NR),NsF,Ns0) :-clone945,26082 -rb_partial_map(t(Nil,T0), Map, Goal, t(Nil,TF)) :-rb_partial_map957,26562 -rb_partial_map(t(Nil,T0), Map, Goal, t(Nil,TF)) :-rb_partial_map957,26562 -rb_partial_map(t(Nil,T0), Map, Goal, t(Nil,TF)) :-rb_partial_map957,26562 -rb_partial_map(t(Nil,T0), Map, Map0, Goal, t(Nil,TF)) :-rb_partial_map960,26656 -rb_partial_map(t(Nil,T0), Map, Map0, Goal, t(Nil,TF)) :-rb_partial_map960,26656 -rb_partial_map(t(Nil,T0), Map, Map0, Goal, t(Nil,TF)) :-rb_partial_map960,26656 -partial_map(T,[],[],_,_,T) :- !.partial_map963,26758 -partial_map(T,[],[],_,_,T) :- !.partial_map963,26758 -partial_map(T,[],[],_,_,T) :- !.partial_map963,26758 -partial_map(black('',_,_,_),Map,Map,Nil,_,Nil) :- !.partial_map964,26791 -partial_map(black('',_,_,_),Map,Map,Nil,_,Nil) :- !.partial_map964,26791 -partial_map(black('',_,_,_),Map,Map,Nil,_,Nil) :- !.partial_map964,26791 -partial_map(red(L,K,V,R),Map,MapF,Nil,Goal,red(NL,K,NV,NR)) :-partial_map965,26844 -partial_map(red(L,K,V,R),Map,MapF,Nil,Goal,red(NL,K,NV,NR)) :-partial_map965,26844 -partial_map(red(L,K,V,R),Map,MapF,Nil,Goal,red(NL,K,NV,NR)) :-partial_map965,26844 -partial_map(black(L,K,V,R),Map,MapF,Nil,Goal,black(NL,K,NV,NR)) :-partial_map983,27191 -partial_map(black(L,K,V,R),Map,MapF,Nil,Goal,black(NL,K,NV,NR)) :-partial_map983,27191 -partial_map(black(L,K,V,R),Map,MapF,Nil,Goal,black(NL,K,NV,NR)) :-partial_map983,27191 -rb_keys(t(_,T),Lf) :-rb_keys1011,27673 -rb_keys(t(_,T),Lf) :-rb_keys1011,27673 -rb_keys(t(_,T),Lf) :-rb_keys1011,27673 -rb_keys(t(_,T),L0,Lf) :-rb_keys1014,27712 -rb_keys(t(_,T),L0,Lf) :-rb_keys1014,27712 -rb_keys(t(_,T),L0,Lf) :-rb_keys1014,27712 -keys(black('',_,_,''),L,L) :- !.keys1017,27754 -keys(black('',_,_,''),L,L) :- !.keys1017,27754 -keys(black('',_,_,''),L,L) :- !.keys1017,27754 -keys(red(L,K,_,R),L0,Lf) :-keys1018,27787 -keys(red(L,K,_,R),L0,Lf) :-keys1018,27787 -keys(red(L,K,_,R),L0,Lf) :-keys1018,27787 -keys(black(L,K,_,R),L0,Lf) :-keys1021,27851 -keys(black(L,K,_,R),L0,Lf) :-keys1021,27851 -keys(black(L,K,_,R),L0,Lf) :-keys1021,27851 -list_to_rbtree(List, T) :-list_to_rbtree1030,28022 -list_to_rbtree(List, T) :-list_to_rbtree1030,28022 -list_to_rbtree(List, T) :-list_to_rbtree1030,28022 -ord_list_to_rbtree([], t(Nil,Nil)) :- !,ord_list_to_rbtree1038,28219 -ord_list_to_rbtree([], t(Nil,Nil)) :- !,ord_list_to_rbtree1038,28219 -ord_list_to_rbtree([], t(Nil,Nil)) :- !,ord_list_to_rbtree1038,28219 -ord_list_to_rbtree([K-V], t(Nil,black(Nil,K,V,Nil))) :- !,ord_list_to_rbtree1040,28288 -ord_list_to_rbtree([K-V], t(Nil,black(Nil,K,V,Nil))) :- !,ord_list_to_rbtree1040,28288 -ord_list_to_rbtree([K-V], t(Nil,black(Nil,K,V,Nil))) :- !,ord_list_to_rbtree1040,28288 -ord_list_to_rbtree(List, t(Nil,Tree)) :-ord_list_to_rbtree1042,28375 -ord_list_to_rbtree(List, t(Nil,Tree)) :-ord_list_to_rbtree1042,28375 -ord_list_to_rbtree(List, t(Nil,Tree)) :-ord_list_to_rbtree1042,28375 -construct_rbtree(L, M, _, _, Nil, Nil) :- M < L, !.construct_rbtree1049,28567 -construct_rbtree(L, M, _, _, Nil, Nil) :- M < L, !.construct_rbtree1049,28567 -construct_rbtree(L, M, _, _, Nil, Nil) :- M < L, !.construct_rbtree1049,28567 -construct_rbtree(L, L, Ar, Depth, Nil, Node) :- !,construct_rbtree1050,28619 -construct_rbtree(L, L, Ar, Depth, Nil, Node) :- !,construct_rbtree1050,28619 -construct_rbtree(L, L, Ar, Depth, Nil, Node) :- !,construct_rbtree1050,28619 -construct_rbtree(I0, Max, Ar, Depth, Nil, Node) :-construct_rbtree1053,28734 -construct_rbtree(I0, Max, Ar, Depth, Nil, Node) :-construct_rbtree1053,28734 -construct_rbtree(I0, Max, Ar, Depth, Nil, Node) :-construct_rbtree1053,28734 -build_node( 0, Left, K, Val, Right, red(Left, K, Val, Right)) :- !.build_node1063,29024 -build_node( 0, Left, K, Val, Right, red(Left, K, Val, Right)) :- !.build_node1063,29024 -build_node( 0, Left, K, Val, Right, red(Left, K, Val, Right)) :- !.build_node1063,29024 -build_node( _, Left, K, Val, Right, black(Left, K, Val, Right)).build_node1064,29092 -build_node( _, Left, K, Val, Right, black(Left, K, Val, Right)).build_node1064,29092 -rb_size(t(_,T),Size) :-rb_size1071,29231 -rb_size(t(_,T),Size) :-rb_size1071,29231 -rb_size(t(_,T),Size) :-rb_size1071,29231 -size(black('',_,_,_),Sz,Sz) :- !.size1074,29273 -size(black('',_,_,_),Sz,Sz) :- !.size1074,29273 -size(black('',_,_,_),Sz,Sz) :- !.size1074,29273 -size(red(L,_,_,R),Sz0,Szf) :-size1075,29307 -size(red(L,_,_,R),Sz0,Szf) :-size1075,29307 -size(red(L,_,_,R),Sz0,Szf) :-size1075,29307 -size(black(L,_,_,R),Sz0,Szf) :-size1079,29388 -size(black(L,_,_,R),Sz0,Szf) :-size1079,29388 -size(black(L,_,_,R),Sz0,Szf) :-size1079,29388 -is_rbtree(X) :-is_rbtree1089,29575 -is_rbtree(X) :-is_rbtree1089,29575 -is_rbtree(X) :-is_rbtree1089,29575 -is_rbtree(t(Nil,Nil)) :- !.is_rbtree1091,29609 -is_rbtree(t(Nil,Nil)) :- !.is_rbtree1091,29609 -is_rbtree(t(Nil,Nil)) :- !.is_rbtree1091,29609 -is_rbtree(t(_,T)) :-is_rbtree1092,29637 -is_rbtree(t(_,T)) :-is_rbtree1092,29637 -is_rbtree(t(_,T)) :-is_rbtree1092,29637 -is_rbtree(X,_) :-is_rbtree1095,29695 -is_rbtree(X,_) :-is_rbtree1095,29695 -is_rbtree(X,_) :-is_rbtree1095,29695 -is_rbtree(T,Goal) :-is_rbtree1097,29731 -is_rbtree(T,Goal) :-is_rbtree1097,29731 -is_rbtree(T,Goal) :-is_rbtree1097,29731 -rbtree(t(_,black('',_,_,''))) :- !.rbtree1104,29874 -rbtree(t(_,black('',_,_,''))) :- !.rbtree1104,29874 -rbtree(t(_,black('',_,_,''))) :- !.rbtree1104,29874 -rbtree(t(_,T)) :-rbtree1105,29910 -rbtree(t(_,T)) :-rbtree1105,29910 -rbtree(t(_,T)) :-rbtree1105,29910 -rbtree1(black(L,K,_,R)) :-rbtree11108,29976 -rbtree1(black(L,K,_,R)) :-rbtree11108,29976 -rbtree1(black(L,K,_,R)) :-rbtree11108,29976 -rbtree1(red(_,_,_,_)) :-rbtree11112,30091 -rbtree1(red(_,_,_,_)) :-rbtree11112,30091 -rbtree1(red(_,_,_,_)) :-rbtree11112,30091 -find_path_blacks(black('',_,_,''), Bls, Bls) :- !.find_path_blacks1116,30159 -find_path_blacks(black('',_,_,''), Bls, Bls) :- !.find_path_blacks1116,30159 -find_path_blacks(black('',_,_,''), Bls, Bls) :- !.find_path_blacks1116,30159 -find_path_blacks(black(L,_,_,_), Bls0, Bls) :-find_path_blacks1117,30210 -find_path_blacks(black(L,_,_,_), Bls0, Bls) :-find_path_blacks1117,30210 -find_path_blacks(black(L,_,_,_), Bls0, Bls) :-find_path_blacks1117,30210 -find_path_blacks(red(L,_,_,_), Bls0, Bls) :-find_path_blacks1120,30307 -find_path_blacks(red(L,_,_,_), Bls0, Bls) :-find_path_blacks1120,30307 -find_path_blacks(red(L,_,_,_), Bls0, Bls) :-find_path_blacks1120,30307 -check_rbtree(black('',_,_,''),Min,Max,Bls0) :- !,check_rbtree1123,30386 -check_rbtree(black('',_,_,''),Min,Max,Bls0) :- !,check_rbtree1123,30386 -check_rbtree(black('',_,_,''),Min,Max,Bls0) :- !,check_rbtree1123,30386 -check_rbtree(red(L,K,_,R),Min,Max,Bls) :-check_rbtree1125,30465 -check_rbtree(red(L,K,_,R),Min,Max,Bls) :-check_rbtree1125,30465 -check_rbtree(red(L,K,_,R),Min,Max,Bls) :-check_rbtree1125,30465 -check_rbtree(black(L,K,_,R),Min,Max,Bls0) :-check_rbtree1131,30628 -check_rbtree(black(L,K,_,R),Min,Max,Bls0) :-check_rbtree1131,30628 -check_rbtree(black(L,K,_,R),Min,Max,Bls0) :-check_rbtree1131,30628 -check_height(0,_,_) :- !.check_height1137,30769 -check_height(0,_,_) :- !.check_height1137,30769 -check_height(0,_,_) :- !.check_height1137,30769 -check_height(Bls0,Min,Max) :-check_height1138,30795 -check_height(Bls0,Min,Max) :-check_height1138,30795 -check_height(Bls0,Min,Max) :-check_height1138,30795 -check_val(K, Min, Max) :- ( K @> Min ; Min == -inf), (K @< Max ; Max == +inf), !.check_val1141,30890 -check_val(K, Min, Max) :- ( K @> Min ; Min == -inf), (K @< Max ; Max == +inf), !.check_val1141,30890 -check_val(K, Min, Max) :- ( K @> Min ; Min == -inf), (K @< Max ; Max == +inf), !.check_val1141,30890 -check_val(K, Min, Max) :- check_val1142,30972 -check_val(K, Min, Max) :- check_val1142,30972 -check_val(K, Min, Max) :- check_val1142,30972 -check_red_child(black(_,_,_,_)).check_red_child1145,31068 -check_red_child(black(_,_,_,_)).check_red_child1145,31068 -check_red_child(red(_,K,_,_)) :-check_red_child1146,31101 -check_red_child(red(_,K,_,_)) :-check_red_child1146,31101 -check_red_child(red(_,K,_,_)) :-check_red_child1146,31101 -count(I,_,I).count1154,32024 -count(I,_,I).count1154,32024 -count(I,M,L) :-count1155,32038 -count(I,M,L) :-count1155,32038 -count(I,M,L) :-count1155,32038 -test_pos :-test_pos1158,32089 -build_ptree(X,X,T0,TF) :- !,build_ptree1173,32363 -build_ptree(X,X,T0,TF) :- !,build_ptree1173,32363 -build_ptree(X,X,T0,TF) :- !,build_ptree1173,32363 -build_ptree(X1,X,T0,TF) :-build_ptree1175,32415 -build_ptree(X1,X,T0,TF) :-build_ptree1175,32415 -build_ptree(X1,X,T0,TF) :-build_ptree1175,32415 -clean_tree(X,X,T0,TF) :- !,clean_tree1181,32508 -clean_tree(X,X,T0,TF) :- !,clean_tree1181,32508 -clean_tree(X,X,T0,TF) :- !,clean_tree1181,32508 -clean_tree(X1,X,T0,TF) :-clean_tree1184,32589 -clean_tree(X1,X,T0,TF) :-clean_tree1184,32589 -clean_tree(X1,X,T0,TF) :-clean_tree1184,32589 -bclean_tree(X,X,T0,TF) :- !,bclean_tree1190,32708 -bclean_tree(X,X,T0,TF) :- !,bclean_tree1190,32708 -bclean_tree(X,X,T0,TF) :- !,bclean_tree1190,32708 -bclean_tree(X1,X,T0,TF) :-bclean_tree1194,32821 -bclean_tree(X1,X,T0,TF) :-bclean_tree1194,32821 -bclean_tree(X1,X,T0,TF) :-bclean_tree1194,32821 -test_neg :-test_neg1203,32976 -build_ntree(X,X,T0,TF) :- !,build_ntree1219,33298 -build_ntree(X,X,T0,TF) :- !,build_ntree1219,33298 -build_ntree(X,X,T0,TF) :- !,build_ntree1219,33298 -build_ntree(X1,X,T0,TF) :-build_ntree1222,33363 -build_ntree(X1,X,T0,TF) :-build_ntree1222,33363 -build_ntree(X1,X,T0,TF) :-build_ntree1222,33363 - -packages/python/swig/yap4py/prolog/readutil.yap,1236 -read_stream_to_codes(Stream, Codes) :-read_stream_to_codes49,1166 -read_stream_to_codes(Stream, Codes) :-read_stream_to_codes49,1166 -read_stream_to_codes(Stream, Codes) :-read_stream_to_codes49,1166 -read_file_to_codes(File, Codes, _) :-read_file_to_codes52,1248 -read_file_to_codes(File, Codes, _) :-read_file_to_codes52,1248 -read_file_to_codes(File, Codes, _) :-read_file_to_codes52,1248 -read_file_to_codes(File, Codes) :-read_file_to_codes57,1372 -read_file_to_codes(File, Codes) :-read_file_to_codes57,1372 -read_file_to_codes(File, Codes) :-read_file_to_codes57,1372 -read_file_to_terms(File, Codes, _) :-read_file_to_terms62,1493 -read_file_to_terms(File, Codes, _) :-read_file_to_terms62,1493 -read_file_to_terms(File, Codes, _) :-read_file_to_terms62,1493 -read_file_to_terms(File, Codes) :-read_file_to_terms67,1624 -read_file_to_terms(File, Codes) :-read_file_to_terms67,1624 -read_file_to_terms(File, Codes) :-read_file_to_terms67,1624 -prolog_read_stream_to_terms(Stream, Terms, Terms0) :-prolog_read_stream_to_terms73,1746 -prolog_read_stream_to_terms(Stream, Terms, Terms0) :-prolog_read_stream_to_terms73,1746 -prolog_read_stream_to_terms(Stream, Terms, Terms0) :-prolog_read_stream_to_terms73,1746 - -packages/python/swig/yap4py/prolog/regexp.yap,2070 -regexp(RegExp, String, Opts) :-regexp169,6283 -regexp(RegExp, String, Opts) :-regexp169,6283 -regexp(RegExp, String, Opts) :-regexp169,6283 -regexp(RegExp, String, Opts, OUT) :-regexp175,6458 -regexp(RegExp, String, Opts, OUT) :-regexp175,6458 -regexp(RegExp, String, Opts, OUT) :-regexp175,6458 -check_out(V,_,_,_) :- var(V), !.check_out186,6801 -check_out(V,_,_,_) :- var(V), !.check_out186,6801 -check_out(V,_,_,_) :- var(V), !.check_out186,6801 -check_out([],I,I,_) :- !.check_out187,6834 -check_out([],I,I,_) :- !.check_out187,6834 -check_out([],I,I,_) :- !.check_out187,6834 -check_out([V|L],I0,IF,G) :- !,check_out188,6860 -check_out([V|L],I0,IF,G) :- !,check_out188,6860 -check_out([V|L],I0,IF,G) :- !,check_out188,6860 -check_out(OUT,_,_,G) :-check_out192,6990 -check_out(OUT,_,_,G) :-check_out192,6990 -check_out(OUT,_,_,G) :-check_out192,6990 -check_opts(V,_,_,G) :- var(V), !,check_opts198,7084 -check_opts(V,_,_,G) :- var(V), !,check_opts198,7084 -check_opts(V,_,_,G) :- var(V), !,check_opts198,7084 -check_opts([],I,I,_) :- !.check_opts200,7156 -check_opts([],I,I,_) :- !.check_opts200,7156 -check_opts([],I,I,_) :- !.check_opts200,7156 -check_opts([A|L],I0,IF,G) :- !,check_opts201,7183 -check_opts([A|L],I0,IF,G) :- !,check_opts201,7183 -check_opts([A|L],I0,IF,G) :- !,check_opts201,7183 -check_opts(Opts,_,_,G) :-check_opts205,7273 -check_opts(Opts,_,_,G) :-check_opts205,7273 -check_opts(Opts,_,_,G) :-check_opts205,7273 -process_opt(V,_,G) :- var(V), !,process_opt208,7344 -process_opt(V,_,G) :- var(V), !,process_opt208,7344 -process_opt(V,_,G) :- var(V), !,process_opt208,7344 -process_opt(nocase,1,_) :- !.process_opt210,7415 -process_opt(nocase,1,_) :- !.process_opt210,7415 -process_opt(nocase,1,_) :- !.process_opt210,7415 -process_opt(indices,2,_) :- !.process_opt211,7445 -process_opt(indices,2,_) :- !.process_opt211,7445 -process_opt(indices,2,_) :- !.process_opt211,7445 -process_opt(I,_,G) :-process_opt212,7476 -process_opt(I,_,G) :-process_opt212,7476 -process_opt(I,_,G) :-process_opt212,7476 - -packages/python/swig/yap4py/prolog/rltree.yap,0 - -packages/python/swig/yap4py/prolog/sockets.yap,2943 -ip_socket(Domain, 'SOCK_DGRAM', Protocol, SOCKET) :-ip_socket120,3633 -ip_socket(Domain, 'SOCK_DGRAM', Protocol, SOCKET) :-ip_socket120,3633 -ip_socket(Domain, 'SOCK_DGRAM', Protocol, SOCKET) :-ip_socket120,3633 -ip_socket(Domain, 'SOCK_STREAM', Protocol, SOCKET) :-ip_socket125,3823 -ip_socket(Domain, 'SOCK_STREAM', Protocol, SOCKET) :-ip_socket125,3823 -ip_socket(Domain, 'SOCK_STREAM', Protocol, SOCKET) :-ip_socket125,3823 -ip_socket(Domain, SOCK) :-ip_socket131,4016 -ip_socket(Domain, SOCK) :-ip_socket131,4016 -ip_socket(Domain, SOCK) :-ip_socket131,4016 -socket_close(Socket) :-socket_close134,4088 -socket_close(Socket) :-socket_close134,4088 -socket_close(Socket) :-socket_close134,4088 -socket_close(Socket) :-socket_close136,4153 -socket_close(Socket) :-socket_close136,4153 -socket_close(Socket) :-socket_close136,4153 -socket_bind(Socket, 'AF_INET'(Host,Port)) :-socket_bind140,4249 -socket_bind(Socket, 'AF_INET'(Host,Port)) :-socket_bind140,4249 -socket_bind(Socket, 'AF_INET'(Host,Port)) :-socket_bind140,4249 -tcp_socket_connect(Socket, Address, StreamPair) :-tcp_socket_connect151,4477 -tcp_socket_connect(Socket, Address, StreamPair) :-tcp_socket_connect151,4477 -tcp_socket_connect(Socket, Address, StreamPair) :-tcp_socket_connect151,4477 -socket_listen(SOCKET, BACKLOG) :-socket_listen160,4753 -socket_listen(SOCKET, BACKLOG) :-socket_listen160,4753 -socket_listen(SOCKET, BACKLOG) :-socket_listen160,4753 -socket_accept(Socket, Client, StreamPair) :-socket_accept163,4821 -socket_accept(Socket, Client, StreamPair) :-socket_accept163,4821 -socket_accept(Socket, Client, StreamPair) :-socket_accept163,4821 -socket_buffering(STREAM, _, CUR, NEW) :-socket_buffering179,5281 -socket_buffering(STREAM, _, CUR, NEW) :-socket_buffering179,5281 -socket_buffering(STREAM, _, CUR, NEW) :-socket_buffering179,5281 -translate_buffer(false, unbuf).translate_buffer185,5479 -translate_buffer(false, unbuf).translate_buffer185,5479 -translate_buffer(full, fullbuf).translate_buffer186,5511 -translate_buffer(full, fullbuf).translate_buffer186,5511 -current_host(Host) :-current_host188,5545 -current_host(Host) :-current_host188,5545 -current_host(Host) :-current_host188,5545 -hostname_address(Host, Address) :-hostname_address191,5591 -hostname_address(Host, Address) :-hostname_address191,5591 -hostname_address(Host, Address) :-hostname_address191,5591 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client196,5716 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client196,5716 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client196,5716 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client200,5844 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client200,5844 -peer_to_client(ip(A,B,C,D), Client) :-peer_to_client200,5844 -socket_select(_,_,_,_,_) :-socket_select226,7010 -socket_select(_,_,_,_,_) :-socket_select226,7010 -socket_select(_,_,_,_,_) :-socket_select226,7010 - -packages/python/swig/yap4py/prolog/splay.yap,5424 -splay_access(V, Item, Val, Tree, NewTree):-splay_access188,6675 -splay_access(V, Item, Val, Tree, NewTree):-splay_access188,6675 -splay_access(V, Item, Val, Tree, NewTree):-splay_access188,6675 -splay_insert(Item, Val,Tree, NewTree):-splay_insert190,6762 -splay_insert(Item, Val,Tree, NewTree):-splay_insert190,6762 -splay_insert(Item, Val,Tree, NewTree):-splay_insert190,6762 -splay_del(Item, Tree, NewTree):-splay_del192,6842 -splay_del(Item, Tree, NewTree):-splay_del192,6842 -splay_del(Item, Tree, NewTree):-splay_del192,6842 -splay_join(Left, Right, New):-splay_join195,6974 -splay_join(Left, Right, New):-splay_join195,6974 -splay_join(Left, Right, New):-splay_join195,6974 -splay_split(Item, Val, Tree, Left, Right):-splay_split197,7035 -splay_split(Item, Val, Tree, Left, Right):-splay_split197,7035 -splay_split(Item, Val, Tree, Left, Right):-splay_split197,7035 -bst(Op, Item, Val, Tree, NewTree):-bst213,7838 -bst(Op, Item, Val, Tree, NewTree):-bst213,7838 -bst(Op, Item, Val, Tree, NewTree):-bst213,7838 -bst(access(Null), _Item, _, _L, null, _R, _Tree):- !, Null = null.bst225,8345 -bst(access(Null), _Item, _, _L, null, _R, _Tree):- !, Null = null.bst225,8345 -bst(access(Null), _Item, _, _L, null, _R, _Tree):- !, Null = null.bst225,8345 -bst(access(true), Item, Val, Left-A, n(Item0, Val0, A, B), Right-B, n(Item, Val, Left, Right)) :- Item == Item0, !, Val = Val0.bst226,8412 -bst(access(true), Item, Val, Left-A, n(Item0, Val0, A, B), Right-B, n(Item, Val, Left, Right)) :- Item == Item0, !, Val = Val0.bst226,8412 -bst(access(true), Item, Val, Left-A, n(Item0, Val0, A, B), Right-B, n(Item, Val, Left, Right)) :- Item == Item0, !, Val = Val0.bst226,8412 -bst(insert, Item, Val, Left-A, T, Right-B, n(Item0, Val, Left, Right)) :-bst227,8540 -bst(insert, Item, Val, Left-A, T, Right-B, n(Item0, Val, Left, Right)) :-bst227,8540 -bst(insert, Item, Val, Left-A, T, Right-B, n(Item0, Val, Left, Right)) :-bst227,8540 -bst(access(Null), Item, _, Left-L, n(X, VX, null, B), Right-B, n(X, VX, Left, Right)) :-bst234,8976 -bst(access(Null), Item, _, Left-L, n(X, VX, null, B), Right-B, n(X, VX, Left, Right)) :-bst234,8976 -bst(access(Null), Item, _, Left-L, n(X, VX, null, B), Right-B, n(X, VX, Left, Right)) :-bst234,8976 -bst(Op, Item, Val, Left, n(X, VX, n(Item, Val, A1, A2), B), R-n(X, VX, NR,B), New):-bst236,9093 -bst(Op, Item, Val, Left, n(X, VX, n(Item, Val, A1, A2), B), R-n(X, VX, NR,B), New):-bst236,9093 -bst(Op, Item, Val, Left, n(X, VX, n(Item, Val, A1, A2), B), R-n(X, VX, NR,B), New):-bst236,9093 -bst(Op, Item, Val, Left, n(X, VX, n(Y, VY, Z, B), C), R-n(Y, VY, NR, n(X, VX, B, C)), New):-bst241,9307 -bst(Op, Item, Val, Left, n(X, VX, n(Y, VY, Z, B), C), R-n(Y, VY, NR, n(X, VX, B, C)), New):-bst241,9307 -bst(Op, Item, Val, Left, n(X, VX, n(Y, VY, Z, B), C), R-n(Y, VY, NR, n(X, VX, B, C)), New):-bst241,9307 -bst(Op, Item, Val, L-n(Y, VY, A, NL), n(X, _VX, n(Y, VY, A, Z), C), R-n(X, _NX, NR, C), New):-bst245,9478 -bst(Op, Item, Val, L-n(Y, VY, A, NL), n(X, _VX, n(Y, VY, A, Z), C), R-n(X, _NX, NR, C), New):-bst245,9478 -bst(Op, Item, Val, L-n(Y, VY, A, NL), n(X, _VX, n(Y, VY, A, Z), C), R-n(X, _NX, NR, C), New):-bst245,9478 -bst(access(Null), Item, _, Left-B, n(X, VX, B, null), Right-_R, n(X, VX, Left, Right)):-bst252,9734 -bst(access(Null), Item, _, Left-B, n(X, VX, B, null), Right-_R, n(X, VX, Left, Right)):-bst252,9734 -bst(access(Null), Item, _, Left-B, n(X, VX, B, null), Right-_R, n(X, VX, Left, Right)):-bst252,9734 -bst(Op, Item, Val, L-n(X, VX, B, NL), n(X, VX, B, n(Item, Val, A1, A2)), Right, New):-bst254,9871 -bst(Op, Item, Val, L-n(X, VX, B, NL), n(X, VX, B, n(Item, Val, A1, A2)), Right, New):-bst254,9871 -bst(Op, Item, Val, L-n(X, VX, B, NL), n(X, VX, B, n(Item, Val, A1, A2)), Right, New):-bst254,9871 -bst(Op, Item, Val, L-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, Z)), Right, New):-bst258,10044 -bst(Op, Item, Val, L-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, Z)), Right, New):-bst258,10044 -bst(Op, Item, Val, L-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, Z)), Right, New):-bst258,10044 -bst(Op, Item, Val, L-n(X, VX, A, NL), n(X, VX, A, n(Y, VY, Z, C)), R-n(Y, VY, NR, C), New):-bst262,10214 -bst(Op, Item, Val, L-n(X, VX, A, NL), n(X, VX, A, n(Y, VY, Z, C)), R-n(Y, VY, NR, C), New):-bst262,10214 -bst(Op, Item, Val, L-n(X, VX, A, NL), n(X, VX, A, n(Y, VY, Z, C)), R-n(Y, VY, NR, C), New):-bst262,10214 -join(Left-A, n(X, VX, A, var), Right, n(X, VX, Left, Right)):-!.join269,10589 -join(Left-A, n(X, VX, A, var), Right, n(X, VX, Left, Right)):-!.join269,10589 -join(Left-A, n(X, VX, A, var), Right, n(X, VX, Left, Right)):-!.join269,10589 -join(Left-n(X, VX, A, B), n(X, VX, A, n(Y, VY, B, var)), Right, n(Y, VY, Left, Right)):- !.join270,10654 -join(Left-n(X, VX, A, B), n(X, VX, A, n(Y, VY, B, var)), Right, n(Y, VY, Left, Right)):- !.join270,10654 -join(Left-n(X, VX, A, B), n(X, VX, A, n(Y, VY, B, var)), Right, n(Y, VY, Left, Right)):- !.join270,10654 -join(Left-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, n(Z, VZ, A1, A2))), Right, New):-join271,10746 -join(Left-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, n(Z, VZ, A1, A2))), Right, New):-join271,10746 -join(Left-n(Y, VY, n(X, VX, C, B), NL), n(X, VX, C, n(Y, VY, B, n(Z, VZ, A1, A2))), Right, New):-join271,10746 -splay_init(_).splay_init275,10892 -splay_init(_).splay_init275,10892 - -packages/python/swig/yap4py/prolog/stringutils.yap,986 -string([]).string21,355 -string([]).string21,355 -string([A|Cs]) :-string22,367 -string([A|Cs]) :-string22,367 -string([A|Cs]) :-string22,367 -upcase_string([], []).upcase_string28,502 -upcase_string([], []).upcase_string28,502 -upcase_string([C|Cs], [NC|NCs]) :-upcase_string29,525 -upcase_string([C|Cs], [NC|NCs]) :-upcase_string29,525 -upcase_string([C|Cs], [NC|NCs]) :-upcase_string29,525 -downcase_string([], []).downcase_string33,614 -downcase_string([], []).downcase_string33,614 -downcase_string([C|Cs], [NC|NCs]) :-downcase_string34,639 -downcase_string([C|Cs], [NC|NCs]) :-downcase_string34,639 -downcase_string([C|Cs], [NC|NCs]) :-downcase_string34,639 -string_length(S, Length) :-string_length38,732 -string_length(S, Length) :-string_length38,732 -string_length(S, Length) :-string_length38,732 -concat_strings(S1, S2, New) :-concat_strings41,781 -concat_strings(S1, S2, New) :-concat_strings41,781 -concat_strings(S1, S2, New) :-concat_strings41,781 - -packages/python/swig/yap4py/prolog/system.yap,23212 -exec(ls,[std,pipe(S),null],P),repeat, get0(S,C), (C = -1, close(S) ! ; put(C)).exec192,4336 -exec(ls,[std,pipe(S),null],P),repeat, get0(S,C), (C = -1, close(S) ! ; put(C)).exec192,4336 -:- dynamic tmp_file_sequence_counter/1.dynamic422,10231 -:- dynamic tmp_file_sequence_counter/1.dynamic422,10231 -datime(X) :-datime426,10289 -datime(X) :-datime426,10289 -datime(X) :-datime426,10289 -mktime(V, A) :- var(V), !,mktime430,10370 -mktime(V, A) :- var(V), !,mktime430,10370 -mktime(V, A) :- var(V), !,mktime430,10370 -mktime(In,Out) :-mktime432,10445 -mktime(In,Out) :-mktime432,10445 -mktime(In,Out) :-mktime432,10445 -check_mktime_inp(V, Inp) :- var(V), !,check_mktime_inp438,10626 -check_mktime_inp(V, Inp) :- var(V), !,check_mktime_inp438,10626 -check_mktime_inp(V, Inp) :- var(V), !,check_mktime_inp438,10626 -check_mktime_inp(datime(Y,Mo,D,H,Mi,S), Inp) :- !,check_mktime_inp440,10705 -check_mktime_inp(datime(Y,Mo,D,H,Mi,S), Inp) :- !,check_mktime_inp440,10705 -check_mktime_inp(datime(Y,Mo,D,H,Mi,S), Inp) :- !,check_mktime_inp440,10705 -check_mktime_inp(T, Inp) :-check_mktime_inp447,10878 -check_mktime_inp(T, Inp) :-check_mktime_inp447,10878 -check_mktime_inp(T, Inp) :-check_mktime_inp447,10878 -check_int(I, _) :- integer(I), !.check_int450,10950 -check_int(I, _) :- integer(I), !.check_int450,10950 -check_int(I, _) :- integer(I), !.check_int450,10950 -check_int(I, Inp) :- var(I),check_int451,10984 -check_int(I, Inp) :- var(I),check_int451,10984 -check_int(I, Inp) :- var(I),check_int451,10984 -check_int(I, Inp) :-check_int453,11053 -check_int(I, Inp) :-check_int453,11053 -check_int(I, Inp) :-check_int453,11053 -delete_file(IFile) :-delete_file459,11154 -delete_file(IFile) :-delete_file459,11154 -delete_file(IFile) :-delete_file459,11154 -delete_file(IFile, Opts) :-delete_file463,11241 -delete_file(IFile, Opts) :-delete_file463,11241 -delete_file(IFile, Opts) :-delete_file463,11241 -process_delete_file_opts(V, _, _, _, T) :- var(V), !,process_delete_file_opts468,11421 -process_delete_file_opts(V, _, _, _, T) :- var(V), !,process_delete_file_opts468,11421 -process_delete_file_opts(V, _, _, _, T) :- var(V), !,process_delete_file_opts468,11421 -process_delete_file_opts([], off, off, off, _) :- !.process_delete_file_opts470,11513 -process_delete_file_opts([], off, off, off, _) :- !.process_delete_file_opts470,11513 -process_delete_file_opts([], off, off, off, _) :- !.process_delete_file_opts470,11513 -process_delete_file_opts([V|_], _, _, _, T) :- var(V), !,process_delete_file_opts471,11566 -process_delete_file_opts([V|_], _, _, _, T) :- var(V), !,process_delete_file_opts471,11566 -process_delete_file_opts([V|_], _, _, _, T) :- var(V), !,process_delete_file_opts471,11566 -process_delete_file_opts([directory|Opts], on, Recurse, Ignore, T) :- !,process_delete_file_opts473,11662 -process_delete_file_opts([directory|Opts], on, Recurse, Ignore, T) :- !,process_delete_file_opts473,11662 -process_delete_file_opts([directory|Opts], on, Recurse, Ignore, T) :- !,process_delete_file_opts473,11662 -process_delete_file_opts([recursive|Opts], Dir, on, Ignore, T) :- !,process_delete_file_opts475,11791 -process_delete_file_opts([recursive|Opts], Dir, on, Ignore, T) :- !,process_delete_file_opts475,11791 -process_delete_file_opts([recursive|Opts], Dir, on, Ignore, T) :- !,process_delete_file_opts475,11791 -process_delete_file_opts([ignore|Opts], Dir, Recurse, on, T) :- !,process_delete_file_opts477,11912 -process_delete_file_opts([ignore|Opts], Dir, Recurse, on, T) :- !,process_delete_file_opts477,11912 -process_delete_file_opts([ignore|Opts], Dir, Recurse, on, T) :- !,process_delete_file_opts477,11912 -process_delete_file_opts(Opts, _, _, _, T) :-process_delete_file_opts479,12032 -process_delete_file_opts(Opts, _, _, _, T) :-process_delete_file_opts479,12032 -process_delete_file_opts(Opts, _, _, _, T) :-process_delete_file_opts479,12032 -delete_file(IFile, Dir, Recurse, Ignore) :-delete_file482,12135 -delete_file(IFile, Dir, Recurse, Ignore) :-delete_file482,12135 -delete_file(IFile, Dir, Recurse, Ignore) :-delete_file482,12135 -delete_file(N, File, _Dir, _Recurse, Ignore) :- number(N), !, % error.delete_file487,12317 -delete_file(N, File, _Dir, _Recurse, Ignore) :- number(N), !, % error.delete_file487,12317 -delete_file(N, File, _Dir, _Recurse, Ignore) :- number(N), !, % error.delete_file487,12317 -delete_file(directory, File, Dir, Recurse, Ignore) :-delete_file489,12443 -delete_file(directory, File, Dir, Recurse, Ignore) :-delete_file489,12443 -delete_file(directory, File, Dir, Recurse, Ignore) :-delete_file489,12443 -delete_file(_, File, _Dir, _Recurse, Ignore) :-delete_file491,12547 -delete_file(_, File, _Dir, _Recurse, Ignore) :-delete_file491,12547 -delete_file(_, File, _Dir, _Recurse, Ignore) :-delete_file491,12547 -unlink_file(IFile, Ignore) :-unlink_file494,12624 -unlink_file(IFile, Ignore) :-unlink_file494,12624 -unlink_file(IFile, Ignore) :-unlink_file494,12624 -delete_directory(on, File, _Recurse, Ignore) :-delete_directory499,12758 -delete_directory(on, File, _Recurse, Ignore) :-delete_directory499,12758 -delete_directory(on, File, _Recurse, Ignore) :-delete_directory499,12758 -delete_directory(off, File, Recurse, Ignore) :-delete_directory501,12835 -delete_directory(off, File, Recurse, Ignore) :-delete_directory501,12835 -delete_directory(off, File, Recurse, Ignore) :-delete_directory501,12835 -rm_directory(File, Ignore) :-rm_directory504,12926 -rm_directory(File, Ignore) :-rm_directory504,12926 -rm_directory(File, Ignore) :-rm_directory504,12926 -delete_directory(on, File, Ignore) :-delete_directory508,13037 -delete_directory(on, File, Ignore) :-delete_directory508,13037 -delete_directory(on, File, Ignore) :-delete_directory508,13037 -delete_dirfiles([], _, _).delete_dirfiles515,13233 -delete_dirfiles([], _, _).delete_dirfiles515,13233 -delete_dirfiles(['.'|Fs], File, Ignore) :- !,delete_dirfiles516,13260 -delete_dirfiles(['.'|Fs], File, Ignore) :- !,delete_dirfiles516,13260 -delete_dirfiles(['.'|Fs], File, Ignore) :- !,delete_dirfiles516,13260 -delete_dirfiles(['..'|Fs], File, Ignore) :- !,delete_dirfiles518,13342 -delete_dirfiles(['..'|Fs], File, Ignore) :- !,delete_dirfiles518,13342 -delete_dirfiles(['..'|Fs], File, Ignore) :- !,delete_dirfiles518,13342 -delete_dirfiles([F|Fs], File, Ignore) :-delete_dirfiles520,13425 -delete_dirfiles([F|Fs], File, Ignore) :-delete_dirfiles520,13425 -delete_dirfiles([F|Fs], File, Ignore) :-delete_dirfiles520,13425 -directory_files(File, FileList) :-directory_files525,13569 -directory_files(File, FileList) :-directory_files525,13569 -directory_files(File, FileList) :-directory_files525,13569 -directory_files(File, FileList, Ignore) :-directory_files528,13646 -directory_files(File, FileList, Ignore) :-directory_files528,13646 -directory_files(File, FileList, Ignore) :-directory_files528,13646 -handle_system_internal(Error, _Ignore, _G) :- var(Error), !.handle_system_internal532,13815 -handle_system_internal(Error, _Ignore, _G) :- var(Error), !.handle_system_internal532,13815 -handle_system_internal(Error, _Ignore, _G) :- var(Error), !.handle_system_internal532,13815 -handle_system_internal(Error, off, G) :- atom(Error), !,handle_system_internal533,13876 -handle_system_internal(Error, off, G) :- atom(Error), !,handle_system_internal533,13876 -handle_system_internal(Error, off, G) :- atom(Error), !,handle_system_internal533,13876 -handle_system_internal(Error, off, G) :-handle_system_internal535,13974 -handle_system_internal(Error, off, G) :-handle_system_internal535,13974 -handle_system_internal(Error, off, G) :-handle_system_internal535,13974 -handle_system_internal(Error, _Id, _Ignore, _G) :- var(Error), !.handle_system_internal539,14091 -handle_system_internal(Error, _Id, _Ignore, _G) :- var(Error), !.handle_system_internal539,14091 -handle_system_internal(Error, _Id, _Ignore, _G) :- var(Error), !.handle_system_internal539,14091 -handle_system_internal(Error, _SIG, off, G) :- integer(Error), !,handle_system_internal540,14157 -handle_system_internal(Error, _SIG, off, G) :- integer(Error), !,handle_system_internal540,14157 -handle_system_internal(Error, _SIG, off, G) :- integer(Error), !,handle_system_internal540,14157 -handle_system_internal(signal, SIG, off, G) :- !,handle_system_internal543,14298 -handle_system_internal(signal, SIG, off, G) :- !,handle_system_internal543,14298 -handle_system_internal(signal, SIG, off, G) :- !,handle_system_internal543,14298 -handle_system_internal(stopped, SIG, off, G) :-handle_system_internal545,14408 -handle_system_internal(stopped, SIG, off, G) :-handle_system_internal545,14408 -handle_system_internal(stopped, SIG, off, G) :-handle_system_internal545,14408 -file_property(IFile, type(Type)) :-file_property548,14518 -file_property(IFile, type(Type)) :-file_property548,14518 -file_property(IFile, type(Type)) :-file_property548,14518 -file_property(IFile, size(Size)) :-file_property551,14651 -file_property(IFile, size(Size)) :-file_property551,14651 -file_property(IFile, size(Size)) :-file_property551,14651 -file_property(IFile, mod_time(Date)) :-file_property554,14784 -file_property(IFile, mod_time(Date)) :-file_property554,14784 -file_property(IFile, mod_time(Date)) :-file_property554,14784 -file_property(IFile, mode(Permissions)) :-file_property557,14921 -file_property(IFile, mode(Permissions)) :-file_property557,14921 -file_property(IFile, mode(Permissions)) :-file_property557,14921 -file_property(IFile, linkto(LinkName)) :-file_property560,15061 -file_property(IFile, linkto(LinkName)) :-file_property560,15061 -file_property(IFile, linkto(LinkName)) :-file_property560,15061 -file_property(File, Type, Size, Date, Permissions, LinkName) :-file_property565,15218 -file_property(File, Type, Size, Date, Permissions, LinkName) :-file_property565,15218 -file_property(File, Type, Size, Date, Permissions, LinkName) :-file_property565,15218 -environ(Na,Val) :- var(Na), !,environ574,15445 -environ(Na,Val) :- var(Na), !,environ574,15445 -environ(Na,Val) :- var(Na), !,environ574,15445 -environ(Na,Val) :- atom(Na), !,environ579,15602 -environ(Na,Val) :- atom(Na), !,environ579,15602 -environ(Na,Val) :- atom(Na), !,environ579,15602 -environ(Na,Val) :-environ581,15659 -environ(Na,Val) :-environ581,15659 -environ(Na,Val) :-environ581,15659 -bound_environ(Na, Val) :- var(Val), !,bound_environ584,15731 -bound_environ(Na, Val) :- var(Val), !,bound_environ584,15731 -bound_environ(Na, Val) :- var(Val), !,bound_environ584,15731 -bound_environ(Na, Val) :- atom(Val), !,bound_environ586,15787 -bound_environ(Na, Val) :- atom(Val), !,bound_environ586,15787 -bound_environ(Na, Val) :- atom(Val), !,bound_environ586,15787 -bound_environ(Na, Val) :-bound_environ588,15844 -bound_environ(Na, Val) :-bound_environ588,15844 -bound_environ(Na, Val) :-bound_environ588,15844 -environ_enum(X,X).environ_enum591,15924 -environ_enum(X,X).environ_enum591,15924 -environ_enum(X,X1) :-environ_enum592,15943 -environ_enum(X,X1) :-environ_enum592,15943 -environ_enum(X,X1) :-environ_enum592,15943 -environ_split([61|SVal], [], SVal) :- !.environ_split596,16000 -environ_split([61|SVal], [], SVal) :- !.environ_split596,16000 -environ_split([61|SVal], [], SVal) :- !.environ_split596,16000 -environ_split([C|S],[C|SNa],SVal) :-environ_split597,16041 -environ_split([C|S],[C|SNa],SVal) :-environ_split597,16041 -environ_split([C|S],[C|SNa],SVal) :-environ_split597,16041 -exec(Command, [StdIn, StdOut, StdErr], PID) :-exec603,16131 -exec(Command, [StdIn, StdOut, StdErr], PID) :-exec603,16131 -exec(Command, [StdIn, StdOut, StdErr], PID) :-exec603,16131 -process_inp_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_inp_stream_for_exec613,16587 -process_inp_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_inp_stream_for_exec613,16587 -process_inp_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_inp_stream_for_exec613,16587 -process_inp_stream_for_exec(null, null, _, L, L) :- !.process_inp_stream_for_exec616,16714 -process_inp_stream_for_exec(null, null, _, L, L) :- !.process_inp_stream_for_exec616,16714 -process_inp_stream_for_exec(null, null, _, L, L) :- !.process_inp_stream_for_exec616,16714 -process_inp_stream_for_exec(std, 0, _, L, L) :- !.process_inp_stream_for_exec617,16769 -process_inp_stream_for_exec(std, 0, _, L, L) :- !.process_inp_stream_for_exec617,16769 -process_inp_stream_for_exec(std, 0, _, L, L) :- !.process_inp_stream_for_exec617,16769 -process_inp_stream_for_exec(pipe(ForWriting), ForReading, _, L, [ForReading|L]) :- var(ForWriting), !,process_inp_stream_for_exec618,16820 -process_inp_stream_for_exec(pipe(ForWriting), ForReading, _, L, [ForReading|L]) :- var(ForWriting), !,process_inp_stream_for_exec618,16820 -process_inp_stream_for_exec(pipe(ForWriting), ForReading, _, L, [ForReading|L]) :- var(ForWriting), !,process_inp_stream_for_exec618,16820 -process_inp_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_inp_stream_for_exec620,16967 -process_inp_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_inp_stream_for_exec620,16967 -process_inp_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_inp_stream_for_exec620,16967 -process_inp_stream_for_exec(Stream, Stream, _, L, L) :-process_inp_stream_for_exec622,17060 -process_inp_stream_for_exec(Stream, Stream, _, L, L) :-process_inp_stream_for_exec622,17060 -process_inp_stream_for_exec(Stream, Stream, _, L, L) :-process_inp_stream_for_exec622,17060 -process_out_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_out_stream_for_exec626,17149 -process_out_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_out_stream_for_exec626,17149 -process_out_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_out_stream_for_exec626,17149 -process_out_stream_for_exec(null, null, _, L, L) :- !.process_out_stream_for_exec629,17276 -process_out_stream_for_exec(null, null, _, L, L) :- !.process_out_stream_for_exec629,17276 -process_out_stream_for_exec(null, null, _, L, L) :- !.process_out_stream_for_exec629,17276 -process_out_stream_for_exec(std, 1, _, L, L) :- !.process_out_stream_for_exec630,17331 -process_out_stream_for_exec(std, 1, _, L, L) :- !.process_out_stream_for_exec630,17331 -process_out_stream_for_exec(std, 1, _, L, L) :- !.process_out_stream_for_exec630,17331 -process_out_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_out_stream_for_exec631,17382 -process_out_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_out_stream_for_exec631,17382 -process_out_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_out_stream_for_exec631,17382 -process_out_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_out_stream_for_exec633,17529 -process_out_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_out_stream_for_exec633,17529 -process_out_stream_for_exec(pipe(Stream), _, _, L, L) :- !,process_out_stream_for_exec633,17529 -process_out_stream_for_exec(Stream, Stream, _, L, L) :-process_out_stream_for_exec635,17623 -process_out_stream_for_exec(Stream, Stream, _, L, L) :-process_out_stream_for_exec635,17623 -process_out_stream_for_exec(Stream, Stream, _, L, L) :-process_out_stream_for_exec635,17623 -process_err_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_err_stream_for_exec638,17714 -process_err_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_err_stream_for_exec638,17714 -process_err_stream_for_exec(Error, _, G, L, L) :- var(Error), !,process_err_stream_for_exec638,17714 -process_err_stream_for_exec(null, null, _, L, L) :- !.process_err_stream_for_exec641,17841 -process_err_stream_for_exec(null, null, _, L, L) :- !.process_err_stream_for_exec641,17841 -process_err_stream_for_exec(null, null, _, L, L) :- !.process_err_stream_for_exec641,17841 -process_err_stream_for_exec(std, 2, _, L, L) :- !.process_err_stream_for_exec642,17896 -process_err_stream_for_exec(std, 2, _, L, L) :- !.process_err_stream_for_exec642,17896 -process_err_stream_for_exec(std, 2, _, L, L) :- !.process_err_stream_for_exec642,17896 -process_err_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_err_stream_for_exec643,17947 -process_err_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_err_stream_for_exec643,17947 -process_err_stream_for_exec(pipe(ForReading), ForWriting, _, L, [ForWriting|L]) :- var(ForReading), !,process_err_stream_for_exec643,17947 -process_err_stream_for_exec(pipe(Stream), Stream, _, L, L) :- !,process_err_stream_for_exec645,18094 -process_err_stream_for_exec(pipe(Stream), Stream, _, L, L) :- !,process_err_stream_for_exec645,18094 -process_err_stream_for_exec(pipe(Stream), Stream, _, L, L) :- !,process_err_stream_for_exec645,18094 -process_err_stream_for_exec(Stream, Stream, _, L, L) :-process_err_stream_for_exec647,18193 -process_err_stream_for_exec(Stream, Stream, _, L, L) :-process_err_stream_for_exec647,18193 -process_err_stream_for_exec(Stream, Stream, _, L, L) :-process_err_stream_for_exec647,18193 -close_temp_streams([]).close_temp_streams650,18284 -close_temp_streams([]).close_temp_streams650,18284 -close_temp_streams([S|Ss]) :-close_temp_streams651,18308 -close_temp_streams([S|Ss]) :-close_temp_streams651,18308 -close_temp_streams([S|Ss]) :-close_temp_streams651,18308 -popen(Command, Mode, Stream) :-popen655,18375 -popen(Command, Mode, Stream) :-popen655,18375 -popen(Command, Mode, Stream) :-popen655,18375 -check_command_with_default_shell(Com, ComF, G) :-check_command_with_default_shell658,18444 -check_command_with_default_shell(Com, ComF, G) :-check_command_with_default_shell658,18444 -check_command_with_default_shell(Com, ComF, G) :-check_command_with_default_shell658,18444 -os_command_postprocess(Com, ComF) :- win, !,os_command_postprocess665,18620 -os_command_postprocess(Com, ComF) :- win, !,os_command_postprocess665,18620 -os_command_postprocess(Com, ComF) :- win, !,os_command_postprocess665,18620 -os_command_postprocess(Com, Com).os_command_postprocess672,18819 -os_command_postprocess(Com, Com).os_command_postprocess672,18819 -check_command(Com, G) :- var(Com), !,check_command674,18854 -check_command(Com, G) :- var(Com), !,check_command674,18854 -check_command(Com, G) :- var(Com), !,check_command674,18854 -check_command(Com, _) :- atom(Com), !.check_command676,18930 -check_command(Com, _) :- atom(Com), !.check_command676,18930 -check_command(Com, _) :- atom(Com), !.check_command676,18930 -check_command(Com, G) :-check_command677,18969 -check_command(Com, G) :-check_command677,18969 -check_command(Com, G) :-check_command677,18969 -check_mode(Mode, _, G) :- var(Mode), !,check_mode680,19034 -check_mode(Mode, _, G) :- var(Mode), !,check_mode680,19034 -check_mode(Mode, _, G) :- var(Mode), !,check_mode680,19034 -check_mode(read, 0, _) :- !.check_mode682,19112 -check_mode(read, 0, _) :- !.check_mode682,19112 -check_mode(read, 0, _) :- !.check_mode682,19112 -check_mode(write,1, _) :- !.check_mode683,19141 -check_mode(write,1, _) :- !.check_mode683,19141 -check_mode(write,1, _) :- !.check_mode683,19141 -check_mode(Mode, G) :-check_mode684,19170 -check_mode(Mode, G) :-check_mode684,19170 -check_mode(Mode, G) :-check_mode684,19170 -shell :-shell687,19239 -shell(Command) :-shell695,19470 -shell(Command) :-shell695,19470 -shell(Command) :-shell695,19470 -shell(Command, Status) :-shell703,19661 -shell(Command, Status) :-shell703,19661 -shell(Command, Status) :-shell703,19661 -protect_command([], [0'"]). % "protect_command710,19855 -protect_command([], [0'"]). % "protect_command710,19855 -protect_command([H|L], [H|NL]) :-protect_command711,19887 -protect_command([H|L], [H|NL]) :-protect_command711,19887 -protect_command([H|L], [H|NL]) :-protect_command711,19887 -get_shell0(Shell) :-get_shell0714,19947 -get_shell0(Shell) :-get_shell0714,19947 -get_shell0(Shell) :-get_shell0714,19947 -get_shell0(Shell) :-get_shell0716,19996 -get_shell0(Shell) :-get_shell0716,19996 -get_shell0(Shell) :-get_shell0716,19996 -get_shell0('/bin/sh').get_shell0719,20053 -get_shell0('/bin/sh').get_shell0719,20053 -get_shell(Shell, '-c') :-get_shell721,20077 -get_shell(Shell, '-c') :-get_shell721,20077 -get_shell(Shell, '-c') :-get_shell721,20077 -get_shell(Shell, '/c') :-get_shell723,20131 -get_shell(Shell, '/c') :-get_shell723,20131 -get_shell(Shell, '/c') :-get_shell723,20131 -get_shell('/bin/sh','-c').get_shell726,20193 -get_shell('/bin/sh','-c').get_shell726,20193 -system :-system728,20221 -default_shell(Shell) :- win, !,default_shell733,20339 -default_shell(Shell) :- win, !,default_shell733,20339 -default_shell(Shell) :- win, !,default_shell733,20339 -default_shell('/bin/sh').default_shell735,20398 -default_shell('/bin/sh').default_shell735,20398 -system(Command, Status) :-system738,20426 -system(Command, Status) :-system738,20426 -system(Command, Status) :-system738,20426 -wait(PID,STATUS) :- var(PID), !,wait745,20601 -wait(PID,STATUS) :- var(PID), !,wait745,20601 -wait(PID,STATUS) :- var(PID), !,wait745,20601 -wait(PID,STATUS) :- integer(PID), !,wait747,20688 -wait(PID,STATUS) :- integer(PID), !,wait747,20688 -wait(PID,STATUS) :- integer(PID), !,wait747,20688 -wait(PID,STATUS) :-wait750,20820 -wait(PID,STATUS) :-wait750,20820 -wait(PID,STATUS) :-wait750,20820 -host_name(X) :-host_name756,20915 -host_name(X) :-host_name756,20915 -host_name(X) :-host_name756,20915 -host_id(X) :-host_id760,21005 -host_id(X) :-host_id760,21005 -host_id(X) :-host_id760,21005 -pid(X) :-pid766,21131 -pid(X) :-pid766,21131 -pid(X) :-pid766,21131 -kill(X,Y) :-kill770,21203 -kill(X,Y) :-kill770,21203 -kill(X,Y) :-kill770,21203 -kill(X,Y) :- (var(X) ; var(Y)), !,kill774,21312 -kill(X,Y) :- (var(X) ; var(Y)), !,kill774,21312 -kill(X,Y) :- (var(X) ; var(Y)), !,kill774,21312 -kill(X,Y) :- integer(X), !,kill776,21393 -kill(X,Y) :- integer(X), !,kill776,21393 -kill(X,Y) :- integer(X), !,kill776,21393 -kill(X,Y) :-kill778,21469 -kill(X,Y) :-kill778,21469 -kill(X,Y) :-kill778,21469 -mktemp(X,Y) :- var(X), !,mktemp781,21531 -mktemp(X,Y) :- var(X), !,mktemp781,21531 -mktemp(X,Y) :- var(X), !,mktemp781,21531 -mktemp(X,Y) :-mktemp783,21605 -mktemp(X,Y) :-mktemp783,21605 -mktemp(X,Y) :-mktemp783,21605 -mktemp(X,Y) :-mktemp787,21705 -mktemp(X,Y) :-mktemp787,21705 -mktemp(X,Y) :-mktemp787,21705 -tmpnam(X) :-tmpnam790,21768 -tmpnam(X) :-tmpnam790,21768 -tmpnam(X) :-tmpnam790,21768 -tmpdir(TmpDir):-tmpdir796,21957 -tmpdir(TmpDir):-tmpdir796,21957 -tmpdir(TmpDir):-tmpdir796,21957 -path_separator('\\'):-path_separator806,22156 -path_separator('\\'):-path_separator806,22156 -path_separator('\\'):-path_separator806,22156 -path_separator('/').path_separator808,22189 -path_separator('/').path_separator808,22189 -read_link(P,D,F) :-read_link810,22211 -read_link(P,D,F) :-read_link810,22211 -read_link(P,D,F) :-read_link810,22211 - -packages/python/swig/yap4py/prolog/terms.yap,240 -term_hash(T,H) :-term_hash146,3195 -term_hash(T,H) :-term_hash146,3195 -term_hash(T,H) :-term_hash146,3195 -subsumes_chk(X,Y) :-subsumes_chk152,3298 -subsumes_chk(X,Y) :-subsumes_chk152,3298 -subsumes_chk(X,Y) :-subsumes_chk152,3298 - -packages/python/swig/yap4py/prolog/timeout.yap,147 -time_out(Goal, Time, Result) :-time_out83,2101 -time_out(Goal, Time, Result) :-time_out83,2101 -time_out(Goal, Time, Result) :-time_out83,2101 - -packages/python/swig/yap4py/prolog/trees.yap,1364 -get_label(N, Tree, Label) :-get_label131,2762 -get_label(N, Tree, Label) :-get_label131,2762 -get_label(N, Tree, Label) :-get_label131,2762 -list_to_tree(List, Tree) :-list_to_tree153,3245 -list_to_tree(List, Tree) :-list_to_tree153,3245 -list_to_tree(List, Tree) :-list_to_tree153,3245 -map_tree(Pred, t(Old,OLeft,ORight), t(New,NLeft,NRight)) :-map_tree178,4069 -map_tree(Pred, t(Old,OLeft,ORight), t(New,NLeft,NRight)) :-map_tree178,4069 -map_tree(Pred, t(Old,OLeft,ORight), t(New,NLeft,NRight)) :-map_tree178,4069 -map_tree(_, t, t).map_tree182,4222 -map_tree(_, t, t).map_tree182,4222 -put_label(N, Old, Label, New) :-put_label190,4577 -put_label(N, Old, Label, New) :-put_label190,4577 -put_label(N, Old, Label, New) :-put_label190,4577 -tree_size(Tree, Size) :-tree_size212,5192 -tree_size(Tree, Size) :-tree_size212,5192 -tree_size(Tree, Size) :-tree_size212,5192 -tree_to_list(Tree, List) :-tree_to_list232,5779 -tree_to_list(Tree, List) :-tree_to_list232,5779 -tree_to_list(Tree, List) :-tree_to_list232,5779 -list(0, []).list243,6032 -list(0, []).list243,6032 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 -list(N, [N|L]) :- M is N-1, list(M, L).list244,6045 - -packages/python/swig/yap4py/prolog/tries.yap,1218 -trie_empty(Trie) :-trie_empty206,3928 -trie_empty(Trie) :-trie_empty206,3928 -trie_empty(Trie) :-trie_empty206,3928 -trie_dup(Trie, CopyTrie) :-trie_dup209,3977 -trie_dup(Trie, CopyTrie) :-trie_dup209,3977 -trie_dup(Trie, CopyTrie) :-trie_dup209,3977 -trie_traverse(Trie, Ref) :- trie_traverse213,4056 -trie_traverse(Trie, Ref) :- trie_traverse213,4056 -trie_traverse(Trie, Ref) :- trie_traverse213,4056 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel) :-trie_to_depth_breadth_trie216,4116 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel) :-trie_to_depth_breadth_trie216,4116 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel) :-trie_to_depth_breadth_trie216,4116 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCounter, EndCounter) :-trie_to_depth_breadth_trie223,4402 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCounter, EndCounter) :-trie_to_depth_breadth_trie223,4402 -trie_to_depth_breadth_trie(Trie, DepthBreadthTrie, FinalLabel, OptimizationLevel, StartCounter, EndCounter) :-trie_to_depth_breadth_trie223,4402 - -packages/python/swig/yap4py/prolog/ugraphs.yap,25538 -vertices([], []) :- !.vertices397,9019 -vertices([], []) :- !.vertices397,9019 -vertices([], []) :- !.vertices397,9019 -vertices([Vertex-_|Graph], [Vertex|Vertices]) :-vertices398,9042 -vertices([Vertex-_|Graph], [Vertex|Vertices]) :-vertices398,9042 -vertices([Vertex-_|Graph], [Vertex|Vertices]) :-vertices398,9042 -vertices_edges_to_ugraph(Vertices, Edges, Graph) :-vertices_edges_to_ugraph401,9121 -vertices_edges_to_ugraph(Vertices, Edges, Graph) :-vertices_edges_to_ugraph401,9121 -vertices_edges_to_ugraph(Vertices, Edges, Graph) :-vertices_edges_to_ugraph401,9121 -add_vertices(Graph, Vertices, NewGraph) :-add_vertices409,9350 -add_vertices(Graph, Vertices, NewGraph) :-add_vertices409,9350 -add_vertices(Graph, Vertices, NewGraph) :-add_vertices409,9350 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph(L, [], NL) :- !, add_empty_vertices(L, NL).add_vertices_to_s_graph413,9464 -add_vertices_to_s_graph([], L, L) :- !.add_vertices_to_s_graph414,9532 -add_vertices_to_s_graph([], L, L) :- !.add_vertices_to_s_graph414,9532 -add_vertices_to_s_graph([], L, L) :- !.add_vertices_to_s_graph414,9532 -add_vertices_to_s_graph([V1|VL], [V-Edges|G], NGL) :-add_vertices_to_s_graph415,9572 -add_vertices_to_s_graph([V1|VL], [V-Edges|G], NGL) :-add_vertices_to_s_graph415,9572 -add_vertices_to_s_graph([V1|VL], [V-Edges|G], NGL) :-add_vertices_to_s_graph415,9572 -add_vertices_to_s_graph(=, _, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph419,9706 -add_vertices_to_s_graph(=, _, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph419,9706 -add_vertices_to_s_graph(=, _, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph419,9706 -add_vertices_to_s_graph(<, V1, VL, V, Edges, G, [V1-[]|NGL]) :-add_vertices_to_s_graph421,9809 -add_vertices_to_s_graph(<, V1, VL, V, Edges, G, [V1-[]|NGL]) :-add_vertices_to_s_graph421,9809 -add_vertices_to_s_graph(<, V1, VL, V, Edges, G, [V1-[]|NGL]) :-add_vertices_to_s_graph421,9809 -add_vertices_to_s_graph(>, V1, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph423,9921 -add_vertices_to_s_graph(>, V1, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph423,9921 -add_vertices_to_s_graph(>, V1, VL, V, Edges, G, [V-Edges|NGL]) :-add_vertices_to_s_graph423,9921 -add_empty_vertices([], []).add_empty_vertices426,10031 -add_empty_vertices([], []).add_empty_vertices426,10031 -add_empty_vertices([V|G], [V-[]|NG]) :-add_empty_vertices427,10059 -add_empty_vertices([V|G], [V-[]|NG]) :-add_empty_vertices427,10059 -add_empty_vertices([V|G], [V-[]|NG]) :-add_empty_vertices427,10059 -del_vertices(Graph, Vertices, NewGraph) :-del_vertices433,10191 -del_vertices(Graph, Vertices, NewGraph) :-del_vertices433,10191 -del_vertices(Graph, Vertices, NewGraph) :-del_vertices433,10191 -del_vertices(G, [], V1, NG) :- !,del_vertices438,10332 -del_vertices(G, [], V1, NG) :- !,del_vertices438,10332 -del_vertices(G, [], V1, NG) :- !,del_vertices438,10332 -del_vertices([], _, _, []).del_vertices440,10412 -del_vertices([], _, _, []).del_vertices440,10412 -del_vertices([V-Edges|G], [V0|Vs], V1, NG) :- del_vertices441,10440 -del_vertices([V-Edges|G], [V0|Vs], V1, NG) :- del_vertices441,10440 -del_vertices([V-Edges|G], [V0|Vs], V1, NG) :- del_vertices441,10440 -del_remaining_edges_for_vertices([], _, []).del_remaining_edges_for_vertices446,10608 -del_remaining_edges_for_vertices([], _, []).del_remaining_edges_for_vertices446,10608 -del_remaining_edges_for_vertices([V0-Edges|G], V1, [V0-NEdges|NG]) :-del_remaining_edges_for_vertices447,10653 -del_remaining_edges_for_vertices([V0-Edges|G], V1, [V0-NEdges|NG]) :-del_remaining_edges_for_vertices447,10653 -del_remaining_edges_for_vertices([V0-Edges|G], V1, [V0-NEdges|NG]) :-del_remaining_edges_for_vertices447,10653 -split_on_del_vertices(<, V, Edges, Vs, Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices451,10804 -split_on_del_vertices(<, V, Edges, Vs, Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices451,10804 -split_on_del_vertices(<, V, Edges, Vs, Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices451,10804 -split_on_del_vertices(>, V, Edges, [_|Vs], Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices453,10907 -split_on_del_vertices(>, V, Edges, [_|Vs], Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices453,10907 -split_on_del_vertices(>, V, Edges, [_|Vs], Vs, V1, [V-NEdges|NG], NG) :-split_on_del_vertices453,10907 -split_on_del_vertices(=, _, _, [_|Vs], Vs, _, NG, NG).split_on_del_vertices455,11014 -split_on_del_vertices(=, _, _, [_|Vs], Vs, _, NG, NG).split_on_del_vertices455,11014 -add_edges(Graph, Edges, NewGraph) :-add_edges457,11070 -add_edges(Graph, Edges, NewGraph) :-add_edges457,11070 -add_edges(Graph, Edges, NewGraph) :-add_edges457,11070 -graph_union(Set1, [], Set1) :- !.graph_union465,11300 -graph_union(Set1, [], Set1) :- !.graph_union465,11300 -graph_union(Set1, [], Set1) :- !.graph_union465,11300 -graph_union([], Set2, Set2) :- !.graph_union466,11334 -graph_union([], Set2, Set2) :- !.graph_union466,11334 -graph_union([], Set2, Set2) :- !.graph_union466,11334 -graph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-graph_union467,11368 -graph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-graph_union467,11368 -graph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-graph_union467,11368 -graph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-graph_union471,11520 -graph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-graph_union471,11520 -graph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-graph_union471,11520 -graph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-graph_union474,11648 -graph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-graph_union474,11648 -graph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-graph_union474,11648 -graph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-graph_union476,11752 -graph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-graph_union476,11752 -graph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-graph_union476,11752 -del_edges(Graph, Edges, NewGraph) :-del_edges479,11857 -del_edges(Graph, Edges, NewGraph) :-del_edges479,11857 -del_edges(Graph, Edges, NewGraph) :-del_edges479,11857 -graph_subtract(Set1, [], Set1) :- !.graph_subtract487,12037 -graph_subtract(Set1, [], Set1) :- !.graph_subtract487,12037 -graph_subtract(Set1, [], Set1) :- !.graph_subtract487,12037 -graph_subtract([], _, []).graph_subtract488,12074 -graph_subtract([], _, []).graph_subtract488,12074 -graph_subtract([Head1-E1|Tail1], [Head2-E2|Tail2], Difference) :-graph_subtract489,12101 -graph_subtract([Head1-E1|Tail1], [Head2-E2|Tail2], Difference) :-graph_subtract489,12101 -graph_subtract([Head1-E1|Tail1], [Head2-E2|Tail2], Difference) :-graph_subtract489,12101 -graph_subtract(=, H-E1, Tail1, _-E2, Tail2, [H-E|Difference]) :-graph_subtract493,12269 -graph_subtract(=, H-E1, Tail1, _-E2, Tail2, [H-E|Difference]) :-graph_subtract493,12269 -graph_subtract(=, H-E1, Tail1, _-E2, Tail2, [H-E|Difference]) :-graph_subtract493,12269 -graph_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-graph_subtract496,12409 -graph_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-graph_subtract496,12409 -graph_subtract(<, Head1, Tail1, Head2, Tail2, [Head1|Difference]) :-graph_subtract496,12409 -graph_subtract(>, Head1, Tail1, _, Tail2, Difference) :-graph_subtract498,12529 -graph_subtract(>, Head1, Tail1, _, Tail2, Difference) :-graph_subtract498,12529 -graph_subtract(>, Head1, Tail1, _, Tail2, Difference) :-graph_subtract498,12529 -edges(Graph, Edges) :- edges503,12644 -edges(Graph, Edges) :- edges503,12644 -edges(Graph, Edges) :- edges503,12644 -p_to_s_graph(P_Graph, S_Graph) :-p_to_s_graph506,12698 -p_to_s_graph(P_Graph, S_Graph) :-p_to_s_graph506,12698 -p_to_s_graph(P_Graph, S_Graph) :-p_to_s_graph506,12698 -p_to_s_vertices([], []).p_to_s_vertices513,12872 -p_to_s_vertices([], []).p_to_s_vertices513,12872 -p_to_s_vertices([A-Z|Edges], [A,Z|Vertices]) :-p_to_s_vertices514,12897 -p_to_s_vertices([A-Z|Edges], [A,Z|Vertices]) :-p_to_s_vertices514,12897 -p_to_s_vertices([A-Z|Edges], [A,Z|Vertices]) :-p_to_s_vertices514,12897 -p_to_s_group([], _, []).p_to_s_group518,12984 -p_to_s_group([], _, []).p_to_s_group518,12984 -p_to_s_group([Vertex|Vertices], EdgeSet, [Vertex-Neibs|G]) :-p_to_s_group519,13009 -p_to_s_group([Vertex|Vertices], EdgeSet, [Vertex-Neibs|G]) :-p_to_s_group519,13009 -p_to_s_group([Vertex|Vertices], EdgeSet, [Vertex-Neibs|G]) :-p_to_s_group519,13009 -p_to_s_group([V1-X|Edges], V2, [X|Neibs], RestEdges) :- V1 == V2, !,p_to_s_group524,13164 -p_to_s_group([V1-X|Edges], V2, [X|Neibs], RestEdges) :- V1 == V2, !,p_to_s_group524,13164 -p_to_s_group([V1-X|Edges], V2, [X|Neibs], RestEdges) :- V1 == V2, !,p_to_s_group524,13164 -p_to_s_group(Edges, _, [], Edges).p_to_s_group526,13277 -p_to_s_group(Edges, _, [], Edges).p_to_s_group526,13277 -s_to_p_graph([], []) :- !.s_to_p_graph530,13318 -s_to_p_graph([], []) :- !.s_to_p_graph530,13318 -s_to_p_graph([], []) :- !.s_to_p_graph530,13318 -s_to_p_graph([Vertex-Neibs|G], P_Graph) :-s_to_p_graph531,13345 -s_to_p_graph([Vertex-Neibs|G], P_Graph) :-s_to_p_graph531,13345 -s_to_p_graph([Vertex-Neibs|G], P_Graph) :-s_to_p_graph531,13345 -s_to_p_graph([], _, P_Graph, P_Graph) :- !.s_to_p_graph536,13477 -s_to_p_graph([], _, P_Graph, P_Graph) :- !.s_to_p_graph536,13477 -s_to_p_graph([], _, P_Graph, P_Graph) :- !.s_to_p_graph536,13477 -s_to_p_graph([Neib|Neibs], Vertex, [Vertex-Neib|P], Rest_P) :-s_to_p_graph537,13521 -s_to_p_graph([Neib|Neibs], Vertex, [Vertex-Neib|P], Rest_P) :-s_to_p_graph537,13521 -s_to_p_graph([Neib|Neibs], Vertex, [Vertex-Neib|P], Rest_P) :-s_to_p_graph537,13521 -s_to_p_trans([], []) :- !.s_to_p_trans542,13631 -s_to_p_trans([], []) :- !.s_to_p_trans542,13631 -s_to_p_trans([], []) :- !.s_to_p_trans542,13631 -s_to_p_trans([Vertex-Neibs|G], P_Graph) :-s_to_p_trans543,13658 -s_to_p_trans([Vertex-Neibs|G], P_Graph) :-s_to_p_trans543,13658 -s_to_p_trans([Vertex-Neibs|G], P_Graph) :-s_to_p_trans543,13658 -s_to_p_trans([], _, P_Graph, P_Graph) :- !.s_to_p_trans548,13790 -s_to_p_trans([], _, P_Graph, P_Graph) :- !.s_to_p_trans548,13790 -s_to_p_trans([], _, P_Graph, P_Graph) :- !.s_to_p_trans548,13790 -s_to_p_trans([Neib|Neibs], Vertex, [Neib-Vertex|P], Rest_P) :-s_to_p_trans549,13834 -s_to_p_trans([Neib|Neibs], Vertex, [Neib-Vertex|P], Rest_P) :-s_to_p_trans549,13834 -s_to_p_trans([Neib|Neibs], Vertex, [Neib-Vertex|P], Rest_P) :-s_to_p_trans549,13834 -transitive_closure(Graph, Closure) :-transitive_closure554,13944 -transitive_closure(Graph, Closure) :-transitive_closure554,13944 -transitive_closure(Graph, Closure) :-transitive_closure554,13944 -warshall(Graph, Closure) :-warshall557,14018 -warshall(Graph, Closure) :-warshall557,14018 -warshall(Graph, Closure) :-warshall557,14018 -warshall([], Closure, Closure) :- !.warshall560,14082 -warshall([], Closure, Closure) :- !.warshall560,14082 -warshall([], Closure, Closure) :- !.warshall560,14082 -warshall([V-_|G], E, Closure) :-warshall561,14119 -warshall([V-_|G], E, Closure) :-warshall561,14119 -warshall([V-_|G], E, Closure) :-warshall561,14119 -warshall([X-Neibs|G], V, Y, [X-NewNeibs|NewG]) :-warshall567,14244 -warshall([X-Neibs|G], V, Y, [X-NewNeibs|NewG]) :-warshall567,14244 -warshall([X-Neibs|G], V, Y, [X-NewNeibs|NewG]) :-warshall567,14244 -warshall([X-Neibs|G], V, Y, [X-Neibs|NewG]) :- !,warshall572,14378 -warshall([X-Neibs|G], V, Y, [X-Neibs|NewG]) :- !,warshall572,14378 -warshall([X-Neibs|G], V, Y, [X-Neibs|NewG]) :- !,warshall572,14378 -warshall([], _, _, []).warshall574,14454 -warshall([], _, _, []).warshall574,14454 -p_transpose([], []) :- !.p_transpose578,14484 -p_transpose([], []) :- !.p_transpose578,14484 -p_transpose([], []) :- !.p_transpose578,14484 -p_transpose([From-To|Edges], [To-From|Transpose]) :-p_transpose579,14510 -p_transpose([From-To|Edges], [To-From|Transpose]) :-p_transpose579,14510 -p_transpose([From-To|Edges], [To-From|Transpose]) :-p_transpose579,14510 -transpose(S_Graph, Transpose) :-transpose600,15042 -transpose(S_Graph, Transpose) :-transpose600,15042 -transpose(S_Graph, Transpose) :-transpose600,15042 -s_transpose(S_Graph, Transpose) :-s_transpose603,15123 -s_transpose(S_Graph, Transpose) :-s_transpose603,15123 -s_transpose(S_Graph, Transpose) :-s_transpose603,15123 -s_transpose([], [], Base, Base) :- !.s_transpose606,15206 -s_transpose([], [], Base, Base) :- !.s_transpose606,15206 -s_transpose([], [], Base, Base) :- !.s_transpose606,15206 -s_transpose([Vertex-Neibs|Graph], [Vertex-[]|RestBase], Base, Transpose) :-s_transpose607,15244 -s_transpose([Vertex-Neibs|Graph], [Vertex-[]|RestBase], Base, Transpose) :-s_transpose607,15244 -s_transpose([Vertex-Neibs|Graph], [Vertex-[]|RestBase], Base, Transpose) :-s_transpose607,15244 -transpose_s([Head|SoFar], Neibs, Vertex, [Head|Transpose]) :- !,transpose_s614,15555 -transpose_s([Head|SoFar], Neibs, Vertex, [Head|Transpose]) :- !,transpose_s614,15555 -transpose_s([Head|SoFar], Neibs, Vertex, [Head|Transpose]) :- !,transpose_s614,15555 -transpose_s([], [], _, []).transpose_s616,15667 -transpose_s([], [], _, []).transpose_s616,15667 -p_member(X, Y, P_Graph) :-p_member626,16009 -p_member(X, Y, P_Graph) :-p_member626,16009 -p_member(X, Y, P_Graph) :-p_member626,16009 -p_member(X, Y, P_Graph) :-p_member629,16088 -p_member(X, Y, P_Graph) :-p_member629,16088 -p_member(X, Y, P_Graph) :-p_member629,16088 -s_member(X, Y, S_Graph) :-s_member637,16313 -s_member(X, Y, S_Graph) :-s_member637,16313 -s_member(X, Y, S_Graph) :-s_member637,16313 -s_member(X, Y, S_Graph) :-s_member641,16406 -s_member(X, Y, S_Graph) :-s_member641,16406 -s_member(X, Y, S_Graph) :-s_member641,16406 -s_member(X, Y, S_Graph) :-s_member645,16494 -s_member(X, Y, S_Graph) :-s_member645,16494 -s_member(X, Y, S_Graph) :-s_member645,16494 -s_member(X, Y, S_Graph) :-s_member649,16582 -s_member(X, Y, S_Graph) :-s_member649,16582 -s_member(X, Y, S_Graph) :-s_member649,16582 -compose(G1, G2, Composition) :-compose658,16803 -compose(G1, G2, Composition) :-compose658,16803 -compose(G1, G2, Composition) :-compose658,16803 -compose([], _, _, []) :- !.compose665,16934 -compose([], _, _, []) :- !.compose665,16934 -compose([], _, _, []) :- !.compose665,16934 -compose([Vertex|Vertices], [Vertex-Neibs|G1], G2, [Vertex-Comp|Composition]) :- !,compose666,16962 -compose([Vertex|Vertices], [Vertex-Neibs|G1], G2, [Vertex-Comp|Composition]) :- !,compose666,16962 -compose([Vertex|Vertices], [Vertex-Neibs|G1], G2, [Vertex-Comp|Composition]) :- !,compose666,16962 -compose([Vertex|Vertices], G1, G2, [Vertex-[]|Composition]) :-compose669,17118 -compose([Vertex|Vertices], G1, G2, [Vertex-[]|Composition]) :-compose669,17118 -compose([Vertex|Vertices], G1, G2, [Vertex-[]|Composition]) :-compose669,17118 -compose1([V1|Vs1], [V2-N2|G2], SoFar, Comp) :-compose1673,17226 -compose1([V1|Vs1], [V2-N2|G2], SoFar, Comp) :-compose1673,17226 -compose1([V1|Vs1], [V2-N2|G2], SoFar, Comp) :-compose1673,17226 -compose1(_, _, Comp, Comp).compose1676,17349 -compose1(_, _, Comp, Comp).compose1676,17349 -compose1(<, _, Vs1, V2, N2, G2, SoFar, Comp) :- !,compose1679,17381 -compose1(<, _, Vs1, V2, N2, G2, SoFar, Comp) :- !,compose1679,17381 -compose1(<, _, Vs1, V2, N2, G2, SoFar, Comp) :- !,compose1679,17381 -compose1(>, V1, Vs1, _, _, G2, SoFar, Comp) :- !,compose1681,17473 -compose1(>, V1, Vs1, _, _, G2, SoFar, Comp) :- !,compose1681,17473 -compose1(>, V1, Vs1, _, _, G2, SoFar, Comp) :- !,compose1681,17473 -compose1(=, V1, Vs1, V1, N2, G2, SoFar, Comp) :-compose1683,17561 -compose1(=, V1, Vs1, V1, N2, G2, SoFar, Comp) :-compose1683,17561 -compose1(=, V1, Vs1, V1, N2, G2, SoFar, Comp) :-compose1683,17561 -raakau(Vertices, InitialValue, Tree) :-raakau697,18095 -raakau(Vertices, InitialValue, Tree) :-raakau697,18095 -raakau(Vertices, InitialValue, Tree) :-raakau697,18095 -raakau(0, Vs, Vs, 0, I, t) :- !.raakau702,18209 -raakau(0, Vs, Vs, 0, I, t) :- !.raakau702,18209 -raakau(0, Vs, Vs, 0, I, t) :- !.raakau702,18209 -raakau(1, [V|Vs], Vs, V, I, t(V,I)) :- !.raakau703,18242 -raakau(1, [V|Vs], Vs, V, I, t(V,I)) :- !.raakau703,18242 -raakau(1, [V|Vs], Vs, V, I, t(V,I)) :- !.raakau703,18242 -raakau(N, Vi, Vo, W, I, t(V,W,I,L,R)) :-raakau704,18284 -raakau(N, Vi, Vo, W, I, t(V,W,I,L,R)) :-raakau704,18284 -raakau(N, Vi, Vo, W, I, t(V,W,I,L,R)) :-raakau704,18284 -incdec(OldTree, Labels, Incr, NewTree) :-incdec717,18735 -incdec(OldTree, Labels, Incr, NewTree) :-incdec717,18735 -incdec(OldTree, Labels, Incr, NewTree) :-incdec717,18735 -incdec(t(V,M), t(V,N), [V|L], L, I) :- !,incdec721,18825 -incdec(t(V,M), t(V,N), [V|L], L, I) :- !,incdec721,18825 -incdec(t(V,M), t(V,N), [V|L], L, I) :- !,incdec721,18825 -incdec(t(V,W,M,L1,R1), t(V,W,N,L2,R2), Li, Lo, I) :-incdec723,18878 -incdec(t(V,W,M,L1,R1), t(V,W,N,L2,R2), Li, Lo, I) :-incdec723,18878 -incdec(t(V,W,M,L1,R1), t(V,W,N,L2,R2), Li, Lo, I) :-incdec723,18878 -top_sort(Graph, Sorted) :-top_sort740,19185 -top_sort(Graph, Sorted) :-top_sort740,19185 -top_sort(Graph, Sorted) :-top_sort740,19185 -top_sort(Graph, Sorted0, Sorted) :-top_sort746,19403 -top_sort(Graph, Sorted0, Sorted) :-top_sort746,19403 -top_sort(Graph, Sorted0, Sorted) :-top_sort746,19403 -vertices_and_zeros([], [], []) :- !.vertices_and_zeros753,19641 -vertices_and_zeros([], [], []) :- !.vertices_and_zeros753,19641 -vertices_and_zeros([], [], []) :- !.vertices_and_zeros753,19641 -vertices_and_zeros([Vertex-_|Graph], [Vertex|Vertices], [0|Zeros]) :-vertices_and_zeros754,19678 -vertices_and_zeros([Vertex-_|Graph], [Vertex|Vertices], [0|Zeros]) :-vertices_and_zeros754,19678 -vertices_and_zeros([Vertex-_|Graph], [Vertex|Vertices], [0|Zeros]) :-vertices_and_zeros754,19678 -count_edges([], _, Counts, Counts) :- !.count_edges758,19797 -count_edges([], _, Counts, Counts) :- !.count_edges758,19797 -count_edges([], _, Counts, Counts) :- !.count_edges758,19797 -count_edges([_-Neibs|Graph], Vertices, Counts0, Counts2) :-count_edges759,19838 -count_edges([_-Neibs|Graph], Vertices, Counts0, Counts2) :-count_edges759,19838 -count_edges([_-Neibs|Graph], Vertices, Counts0, Counts2) :-count_edges759,19838 -incr_list([], _, Counts, Counts) :- !.incr_list764,19998 -incr_list([], _, Counts, Counts) :- !.incr_list764,19998 -incr_list([], _, Counts, Counts) :- !.incr_list764,19998 -incr_list([V1|Neibs], [V2|Vertices], [M|Counts0], [N|Counts1]) :- V1 == V2, !,incr_list765,20037 -incr_list([V1|Neibs], [V2|Vertices], [M|Counts0], [N|Counts1]) :- V1 == V2, !,incr_list765,20037 -incr_list([V1|Neibs], [V2|Vertices], [M|Counts0], [N|Counts1]) :- V1 == V2, !,incr_list765,20037 -incr_list(Neibs, [_|Vertices], [N|Counts0], [N|Counts1]) :-incr_list768,20174 -incr_list(Neibs, [_|Vertices], [N|Counts0], [N|Counts1]) :-incr_list768,20174 -incr_list(Neibs, [_|Vertices], [N|Counts0], [N|Counts1]) :-incr_list768,20174 -select_zeros([], [], []) :- !.select_zeros772,20285 -select_zeros([], [], []) :- !.select_zeros772,20285 -select_zeros([], [], []) :- !.select_zeros772,20285 -select_zeros([0|Counts], [Vertex|Vertices], [Vertex|Zeros]) :- !,select_zeros773,20316 -select_zeros([0|Counts], [Vertex|Vertices], [Vertex|Zeros]) :- !,select_zeros773,20316 -select_zeros([0|Counts], [Vertex|Vertices], [Vertex|Zeros]) :- !,select_zeros773,20316 -select_zeros([_|Counts], [_|Vertices], Zeros) :-select_zeros775,20422 -select_zeros([_|Counts], [_|Vertices], Zeros) :-select_zeros775,20422 -select_zeros([_|Counts], [_|Vertices], Zeros) :-select_zeros775,20422 -top_sort([], [], Graph, _, Counts) :- !,top_sort780,20517 -top_sort([], [], Graph, _, Counts) :- !,top_sort780,20517 -top_sort([], [], Graph, _, Counts) :- !,top_sort780,20517 -top_sort([Zero|Zeros], [Zero|Sorted], Graph, Vertices, Counts1) :-top_sort782,20597 -top_sort([Zero|Zeros], [Zero|Sorted], Graph, Vertices, Counts1) :-top_sort782,20597 -top_sort([Zero|Zeros], [Zero|Sorted], Graph, Vertices, Counts1) :-top_sort782,20597 -top_sort([], Sorted0, Sorted0, Graph, _, Counts) :- !,top_sort787,20822 -top_sort([], Sorted0, Sorted0, Graph, _, Counts) :- !,top_sort787,20822 -top_sort([], Sorted0, Sorted0, Graph, _, Counts) :- !,top_sort787,20822 -top_sort([Zero|Zeros], [Zero|Sorted], Sorted0, Graph, Vertices, Counts1) :-top_sort789,20916 -top_sort([Zero|Zeros], [Zero|Sorted], Sorted0, Graph, Vertices, Counts1) :-top_sort789,20916 -top_sort([Zero|Zeros], [Zero|Sorted], Sorted0, Graph, Vertices, Counts1) :-top_sort789,20916 -graph_memberchk(Element1-Edges, [Element2-Edges2|_]) :- Element1 == Element2, !,graph_memberchk794,21159 -graph_memberchk(Element1-Edges, [Element2-Edges2|_]) :- Element1 == Element2, !,graph_memberchk794,21159 -graph_memberchk(Element1-Edges, [Element2-Edges2|_]) :- Element1 == Element2, !,graph_memberchk794,21159 -graph_memberchk(Element, [_|Rest]) :-graph_memberchk796,21257 -graph_memberchk(Element, [_|Rest]) :-graph_memberchk796,21257 -graph_memberchk(Element, [_|Rest]) :-graph_memberchk796,21257 -decr_list([], _, Counts, Counts, Zeros, Zeros) :- !.decr_list800,21338 -decr_list([], _, Counts, Counts, Zeros, Zeros) :- !.decr_list800,21338 -decr_list([], _, Counts, Counts, Zeros, Zeros) :- !.decr_list800,21338 -decr_list([V1|Neibs], [V2|Vertices], [1|Counts1], [0|Counts2], Zi, Zo) :- V1 == V2, !,decr_list801,21391 -decr_list([V1|Neibs], [V2|Vertices], [1|Counts1], [0|Counts2], Zi, Zo) :- V1 == V2, !,decr_list801,21391 -decr_list([V1|Neibs], [V2|Vertices], [1|Counts1], [0|Counts2], Zi, Zo) :- V1 == V2, !,decr_list801,21391 -decr_list([V1|Neibs], [V2|Vertices], [N|Counts1], [M|Counts2], Zi, Zo) :- V1 == V2, !,decr_list803,21538 -decr_list([V1|Neibs], [V2|Vertices], [N|Counts1], [M|Counts2], Zi, Zo) :- V1 == V2, !,decr_list803,21538 -decr_list([V1|Neibs], [V2|Vertices], [N|Counts1], [M|Counts2], Zi, Zo) :- V1 == V2, !,decr_list803,21538 -decr_list(Neibs, [_|Vertices], [N|Counts1], [N|Counts2], Zi, Zo) :-decr_list806,21691 -decr_list(Neibs, [_|Vertices], [N|Counts1], [N|Counts2], Zi, Zo) :-decr_list806,21691 -decr_list(Neibs, [_|Vertices], [N|Counts1], [N|Counts2], Zi, Zo) :-decr_list806,21691 -neighbors(V,[V0-Neig|_],Neig) :- V == V0, !.neighbors811,21820 -neighbors(V,[V0-Neig|_],Neig) :- V == V0, !.neighbors811,21820 -neighbors(V,[V0-Neig|_],Neig) :- V == V0, !.neighbors811,21820 -neighbors(V,[_|G],Neig) :- neighbors812,21865 -neighbors(V,[_|G],Neig) :- neighbors812,21865 -neighbors(V,[_|G],Neig) :- neighbors812,21865 -neighbours(V,[V0-Neig|_],Neig) :- V == V0, !.neighbours815,21916 -neighbours(V,[V0-Neig|_],Neig) :- V == V0, !.neighbours815,21916 -neighbours(V,[V0-Neig|_],Neig) :- V == V0, !.neighbours815,21916 -neighbours(V,[_|G],Neig) :- neighbours816,21962 -neighbours(V,[_|G],Neig) :- neighbours816,21962 -neighbours(V,[_|G],Neig) :- neighbours816,21962 -complement(G, NG) :-complement823,22082 -complement(G, NG) :-complement823,22082 -complement(G, NG) :-complement823,22082 -complement([], _, []).complement827,22143 -complement([], _, []).complement827,22143 -complement([V-Ns|G], Vs, [V-INs|NG]) :-complement828,22166 -complement([V-Ns|G], Vs, [V-INs|NG]) :-complement828,22166 -complement([V-Ns|G], Vs, [V-INs|NG]) :-complement828,22166 -reachable(N, G, Rs) :-reachable835,22288 -reachable(N, G, Rs) :-reachable835,22288 -reachable(N, G, Rs) :-reachable835,22288 -reachable([], _, Rs, Rs).reachable838,22341 -reachable([], _, Rs, Rs).reachable838,22341 -reachable([N|Ns], G, Rs0, RsF) :-reachable839,22367 -reachable([N|Ns], G, Rs0, RsF) :-reachable839,22367 -reachable([N|Ns], G, Rs0, RsF) :-reachable839,22367 -ugraph_union(Set1, [], Set1) :- !.ugraph_union850,22638 -ugraph_union(Set1, [], Set1) :- !.ugraph_union850,22638 -ugraph_union(Set1, [], Set1) :- !.ugraph_union850,22638 -ugraph_union([], Set2, Set2) :- !.ugraph_union851,22673 -ugraph_union([], Set2, Set2) :- !.ugraph_union851,22673 -ugraph_union([], Set2, Set2) :- !.ugraph_union851,22673 -ugraph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-ugraph_union852,22708 -ugraph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-ugraph_union852,22708 -ugraph_union([Head1-E1|Tail1], [Head2-E2|Tail2], Union) :-ugraph_union852,22708 -ugraph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-ugraph_union856,22862 -ugraph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-ugraph_union856,22862 -ugraph_union(=, Head-E1, Tail1, _-E2, Tail2, [Head-Es|Union]) :-ugraph_union856,22862 -ugraph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ugraph_union859,22987 -ugraph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ugraph_union859,22987 -ugraph_union(<, Head1, Tail1, Head2, Tail2, [Head1|Union]) :-ugraph_union859,22987 -ugraph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ugraph_union861,23093 -ugraph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ugraph_union861,23093 -ugraph_union(>, Head1, Tail1, Head2, Tail2, [Head2|Union]) :-ugraph_union861,23093 - -packages/python/swig/yap4py/prolog/undgraphs.yap,5316 -undgraph_add_edge(Vs0,V1,V2,Vs2) :-undgraph_add_edge109,2274 -undgraph_add_edge(Vs0,V1,V2,Vs2) :-undgraph_add_edge109,2274 -undgraph_add_edge(Vs0,V1,V2,Vs2) :-undgraph_add_edge109,2274 -undgraph_add_edges(G0, Edges, GF) :-undgraph_add_edges121,2572 -undgraph_add_edges(G0, Edges, GF) :-undgraph_add_edges121,2572 -undgraph_add_edges(G0, Edges, GF) :-undgraph_add_edges121,2572 -dup_edges([],[]).dup_edges125,2676 -dup_edges([],[]).dup_edges125,2676 -dup_edges([E1-E2|Edges], [E1-E2,E2-E1|DupEdges]) :-dup_edges126,2694 -dup_edges([E1-E2|Edges], [E1-E2,E2-E1|DupEdges]) :-dup_edges126,2694 -dup_edges([E1-E2|Edges], [E1-E2,E2-E1|DupEdges]) :-dup_edges126,2694 -undgraph_add_vertices(G, [], G).undgraph_add_vertices137,2966 -undgraph_add_vertices(G, [], G).undgraph_add_vertices137,2966 -undgraph_add_vertices(G0, [V|Vs], GF) :-undgraph_add_vertices138,2999 -undgraph_add_vertices(G0, [V|Vs], GF) :-undgraph_add_vertices138,2999 -undgraph_add_vertices(G0, [V|Vs], GF) :-undgraph_add_vertices138,2999 -undgraph_edges(Vs,Edges) :-undgraph_edges150,3223 -undgraph_edges(Vs,Edges) :-undgraph_edges150,3223 -undgraph_edges(Vs,Edges) :-undgraph_edges150,3223 -remove_dups([],[]).remove_dups154,3310 -remove_dups([],[]).remove_dups154,3310 -remove_dups([V1-V2|DupEdges],NEdges) :- V1 @< V2, !,remove_dups155,3330 -remove_dups([V1-V2|DupEdges],NEdges) :- V1 @< V2, !,remove_dups155,3330 -remove_dups([V1-V2|DupEdges],NEdges) :- V1 @< V2, !,remove_dups155,3330 -remove_dups([_|DupEdges],Edges) :-remove_dups158,3438 -remove_dups([_|DupEdges],Edges) :-remove_dups158,3438 -remove_dups([_|DupEdges],Edges) :-remove_dups158,3438 -undgraph_neighbours(V,Vertices,Children) :-undgraph_neighbours169,3659 -undgraph_neighbours(V,Vertices,Children) :-undgraph_neighbours169,3659 -undgraph_neighbours(V,Vertices,Children) :-undgraph_neighbours169,3659 -undgraph_neighbors(V,Vertices,Children) :-undgraph_neighbors178,3838 -undgraph_neighbors(V,Vertices,Children) :-undgraph_neighbors178,3838 -undgraph_neighbors(V,Vertices,Children) :-undgraph_neighbors178,3838 -undgraph_del_edge(Vs0,V1,V2,VsF) :-undgraph_del_edge188,4016 -undgraph_del_edge(Vs0,V1,V2,VsF) :-undgraph_del_edge188,4016 -undgraph_del_edge(Vs0,V1,V2,VsF) :-undgraph_del_edge188,4016 -undgraph_del_edges(G0, Edges, GF) :-undgraph_del_edges201,4338 -undgraph_del_edges(G0, Edges, GF) :-undgraph_del_edges201,4338 -undgraph_del_edges(G0, Edges, GF) :-undgraph_del_edges201,4338 -undgraph_del_vertex(Vs0, V, Vsf) :-undgraph_del_vertex205,4441 -undgraph_del_vertex(Vs0, V, Vsf) :-undgraph_del_vertex205,4441 -undgraph_del_vertex(Vs0, V, Vsf) :-undgraph_del_vertex205,4441 -undgraph_del_vertices(G0, Vs, GF) :-undgraph_del_vertices225,4931 -undgraph_del_vertices(G0, Vs, GF) :-undgraph_del_vertices225,4931 -undgraph_del_vertices(G0, Vs, GF) :-undgraph_del_vertices225,4931 -delete_all([], BackEdges, BackEdges) --> [].delete_all233,5250 -delete_all([], BackEdges, BackEdges) --> [].delete_all233,5250 -delete_all([], BackEdges, BackEdges) --> [].delete_all233,5250 -delete_all([V|Vs], BackEdges0, BackEdgesF, Vs0,Vsf) :-delete_all234,5295 -delete_all([V|Vs], BackEdges0, BackEdgesF, Vs0,Vsf) :-delete_all234,5295 -delete_all([V|Vs], BackEdges0, BackEdgesF, Vs0,Vsf) :-delete_all234,5295 -delete_remaining_edges(SortedVs, TrueBackEdges, Vs0,Vsf) :-delete_remaining_edges239,5480 -delete_remaining_edges(SortedVs, TrueBackEdges, Vs0,Vsf) :-delete_remaining_edges239,5480 -delete_remaining_edges(SortedVs, TrueBackEdges, Vs0,Vsf) :-delete_remaining_edges239,5480 -del_edges(ToRemove,E0,E) :-del_edges242,5604 -del_edges(ToRemove,E0,E) :-del_edges242,5604 -del_edges(ToRemove,E0,E) :-del_edges242,5604 -del_edge(ToRemove,E0,E) :-del_edge245,5663 -del_edge(ToRemove,E0,E) :-del_edge245,5663 -del_edge(ToRemove,E0,E) :-del_edge245,5663 -undgraph_min_tree(G, T) :-undgraph_min_tree248,5724 -undgraph_min_tree(G, T) :-undgraph_min_tree248,5724 -undgraph_min_tree(G, T) :-undgraph_min_tree248,5724 -undgraph_max_tree(G, T) :-undgraph_max_tree253,5846 -undgraph_max_tree(G, T) :-undgraph_max_tree253,5846 -undgraph_max_tree(G, T) :-undgraph_max_tree253,5846 -undgraph_components(Graph,[Map|Gs]) :-undgraph_components258,5968 -undgraph_components(Graph,[Map|Gs]) :-undgraph_components258,5968 -undgraph_components(Graph,[Map|Gs]) :-undgraph_components258,5968 -undgraph_components(_,[]).undgraph_components264,6200 -undgraph_components(_,[]).undgraph_components264,6200 -expand_component([], Map, Map, Graph, Graph).expand_component266,6229 -expand_component([], Map, Map, Graph, Graph).expand_component266,6229 -expand_component([C|Children], Map1, Map, Graph1, NGraph) :-expand_component267,6275 -expand_component([C|Children], Map1, Map, Graph1, NGraph) :-expand_component267,6275 -expand_component([C|Children], Map1, Map, Graph1, NGraph) :-expand_component267,6275 -expand_component([_|Children], Map1, Map, Graph1, NGraph) :-expand_component272,6521 -expand_component([_|Children], Map1, Map, Graph1, NGraph) :-expand_component272,6521 -expand_component([_|Children], Map1, Map, Graph1, NGraph) :-expand_component272,6521 -pick_node(Graph,Node,Children,Graph1) :-pick_node276,6642 -pick_node(Graph,Node,Children,Graph1) :-pick_node276,6642 -pick_node(Graph,Node,Children,Graph1) :-pick_node276,6642 - -packages/python/swig/yap4py/prolog/varnumbers.yap,945 -numbervars(Term) :-numbervars24,315 -numbervars(Term) :-numbervars24,315 -numbervars(Term) :-numbervars24,315 -max_var_number(V,Max,Max) :- var(V), !.max_var_number27,361 -max_var_number(V,Max,Max) :- var(V), !.max_var_number27,361 -max_var_number(V,Max,Max) :- var(V), !.max_var_number27,361 -max_var_number('$VAR'(I),Max0,Max) :- !,max_var_number28,401 -max_var_number('$VAR'(I),Max0,Max) :- !,max_var_number28,401 -max_var_number('$VAR'(I),Max0,Max) :- !,max_var_number28,401 -max_var_number(S,Max0,Max) :-max_var_number30,463 -max_var_number(S,Max0,Max) :-max_var_number30,463 -max_var_number(S,Max0,Max) :-max_var_number30,463 -max_var_numberl(I0,Ar,T,Max0,Max) :-max_var_numberl34,547 -max_var_numberl(I0,Ar,T,Max0,Max) :-max_var_numberl34,547 -max_var_numberl(I0,Ar,T,Max0,Max) :-max_var_numberl34,547 -varnumbers(GT, VT) :-varnumbers44,729 -varnumbers(GT, VT) :-varnumbers44,729 -varnumbers(GT, VT) :-varnumbers44,729 - -packages/python/swig/yap4py/prolog/wdgraphs.yap,19966 -wdgraph_new(Vertices) :-wdgraph_new87,1610 -wdgraph_new(Vertices) :-wdgraph_new87,1610 -wdgraph_new(Vertices) :-wdgraph_new87,1610 -wdgraph_add_vertices_and_edges(Vs0,Vertices,Edges,Vs2) :-wdgraph_add_vertices_and_edges90,1655 -wdgraph_add_vertices_and_edges(Vs0,Vertices,Edges,Vs2) :-wdgraph_add_vertices_and_edges90,1655 -wdgraph_add_vertices_and_edges(Vs0,Vertices,Edges,Vs2) :-wdgraph_add_vertices_and_edges90,1655 -wdgraph_add_edge(Vs0,V1,V2,Weight,Vs2) :-wdgraph_add_edge95,1795 -wdgraph_add_edge(Vs0,V1,V2,Weight,Vs2) :-wdgraph_add_edge95,1795 -wdgraph_add_edge(Vs0,V1,V2,Weight,Vs2) :-wdgraph_add_edge95,1795 -wdgraph_add_edges(V0, Edges, VF) :-wdgraph_add_edges99,1911 -wdgraph_add_edges(V0, Edges, VF) :-wdgraph_add_edges99,1911 -wdgraph_add_edges(V0, Edges, VF) :-wdgraph_add_edges99,1911 -wdgraph_add_edges(G0, Edges, GF) :-wdgraph_add_edges106,2156 -wdgraph_add_edges(G0, Edges, GF) :-wdgraph_add_edges106,2156 -wdgraph_add_edges(G0, Edges, GF) :-wdgraph_add_edges106,2156 -all_vertices_in_wedges([],[]).all_vertices_in_wedges112,2346 -all_vertices_in_wedges([],[]).all_vertices_in_wedges112,2346 -all_vertices_in_wedges([V1-(V2-_)|Edges],[V1,V2|Vertices]) :-all_vertices_in_wedges113,2377 -all_vertices_in_wedges([V1-(V2-_)|Edges],[V1,V2|Vertices]) :-all_vertices_in_wedges113,2377 -all_vertices_in_wedges([V1-(V2-_)|Edges],[V1,V2|Vertices]) :-all_vertices_in_wedges113,2377 -edges2wgraphl([], [], []).edges2wgraphl116,2481 -edges2wgraphl([], [], []).edges2wgraphl116,2481 -edges2wgraphl([V|Vertices], [V-(V1-W)|SortedEdges], [V-[V1-W|Children]|GraphL]) :- !,edges2wgraphl117,2508 -edges2wgraphl([V|Vertices], [V-(V1-W)|SortedEdges], [V-[V1-W|Children]|GraphL]) :- !,edges2wgraphl117,2508 -edges2wgraphl([V|Vertices], [V-(V1-W)|SortedEdges], [V-[V1-W|Children]|GraphL]) :- !,edges2wgraphl117,2508 -edges2wgraphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2wgraphl120,2692 -edges2wgraphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2wgraphl120,2692 -edges2wgraphl([V|Vertices], SortedEdges, [V-[]|GraphL]) :-edges2wgraphl120,2692 -add_edges([],[]) --> [].add_edges124,2800 -add_edges([],[]) --> [].add_edges124,2800 -add_edges([],[]) --> [].add_edges124,2800 -add_edges([VA|Vs],[VB-(V1-W)|Es]) --> { VA == VB }, !,add_edges125,2825 -add_edges([VA|Vs],[VB-(V1-W)|Es]) --> { VA == VB }, !,add_edges125,2825 -add_edges([VA|Vs],[VB-(V1-W)|Es]) --> { VA == VB }, !,add_edges125,2825 -add_edges([V|Vs],Es) --> !,add_edges129,2989 -add_edges([V|Vs],Es) --> !,add_edges129,2989 -add_edges([V|Vs],Es) --> !,add_edges129,2989 -get_extra_children([VA-(C-W)|Es],VB,[C-W|Children],REs) :- VA == VB, !,get_extra_children133,3067 -get_extra_children([VA-(C-W)|Es],VB,[C-W|Children],REs) :- VA == VB, !,get_extra_children133,3067 -get_extra_children([VA-(C-W)|Es],VB,[C-W|Children],REs) :- VA == VB, !,get_extra_children133,3067 -get_extra_children(Es,_,[],Es).get_extra_children135,3180 -get_extra_children(Es,_,[],Es).get_extra_children135,3180 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex138,3214 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex138,3214 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex138,3214 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex141,3335 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex141,3335 -wdgraph_update_vertex(V,Edges,WG0,WGF) :-wdgraph_update_vertex141,3335 -key_union([], [], []) :- !.key_union144,3410 -key_union([], [], []) :- !.key_union144,3410 -key_union([], [], []) :- !.key_union144,3410 -key_union([], [C|Children], [C|Children]).key_union145,3438 -key_union([], [C|Children], [C|Children]).key_union145,3438 -key_union([C|Children], [], [C|Children]) :- !.key_union146,3481 -key_union([C|Children], [], [C|Children]) :- !.key_union146,3481 -key_union([C|Children], [], [C|Children]) :- !.key_union146,3481 -key_union([K-W|ToAdd], [K1-W1|Children0], NewUnion) :-key_union147,3529 -key_union([K-W|ToAdd], [K1-W1|Children0], NewUnion) :-key_union147,3529 -key_union([K-W|ToAdd], [K1-W1|Children0], NewUnion) :-key_union147,3529 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge160,3884 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge160,3884 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge160,3884 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge162,3966 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge162,3966 -wdgraph_new_edge(V1,V2,W,Vs0,Vs) :-wdgraph_new_edge162,3966 -insert_edge(V2, W, Children0, Children) :-insert_edge165,4033 -insert_edge(V2, W, Children0, Children) :-insert_edge165,4033 -insert_edge(V2, W, Children0, Children) :-insert_edge165,4033 -wdgraph_top_sort(WG,Q) :-wdgraph_top_sort168,4115 -wdgraph_top_sort(WG,Q) :-wdgraph_top_sort168,4115 -wdgraph_top_sort(WG,Q) :-wdgraph_top_sort168,4115 -wgraph_to_wdgraph(UG, DG) :-wgraph_to_wdgraph172,4193 -wgraph_to_wdgraph(UG, DG) :-wgraph_to_wdgraph172,4193 -wgraph_to_wdgraph(UG, DG) :-wgraph_to_wdgraph172,4193 -wdgraph_to_wgraph(DG, UG) :-wdgraph_to_wgraph175,4252 -wdgraph_to_wgraph(DG, UG) :-wdgraph_to_wgraph175,4252 -wdgraph_to_wgraph(DG, UG) :-wdgraph_to_wgraph175,4252 -wdgraph_edge(N1, N2, W, G) :-wdgraph_edge178,4301 -wdgraph_edge(N1, N2, W, G) :-wdgraph_edge178,4301 -wdgraph_edge(N1, N2, W, G) :-wdgraph_edge178,4301 -find_edge(N-W,[N1-W|_]) :- N == N1, !.find_edge182,4377 -find_edge(N-W,[N1-W|_]) :- N == N1, !.find_edge182,4377 -find_edge(N-W,[N1-W|_]) :- N == N1, !.find_edge182,4377 -find_edge(El,[_|Edges]) :-find_edge183,4416 -find_edge(El,[_|Edges]) :-find_edge183,4416 -find_edge(El,[_|Edges]) :-find_edge183,4416 -wdgraph_del_edge(Vs0, V1, V2, W, Vs) :-wdgraph_del_edge186,4466 -wdgraph_del_edge(Vs0, V1, V2, W, Vs) :-wdgraph_del_edge186,4466 -wdgraph_del_edge(Vs0, V1, V2, W, Vs) :-wdgraph_del_edge186,4466 -del_edge([K-W|Children], K1, W1, NewChildren) :-del_edge191,4645 -del_edge([K-W|Children], K1, W1, NewChildren) :-del_edge191,4645 -del_edge([K-W|Children], K1, W1, NewChildren) :-del_edge191,4645 -wdgraph_del_edges(G0, Edges, GF) :-wdgraph_del_edges201,4857 -wdgraph_del_edges(G0, Edges, GF) :-wdgraph_del_edges201,4857 -wdgraph_del_edges(G0, Edges, GF) :-wdgraph_del_edges201,4857 -continue_del_edges([]) --> [].continue_del_edges205,4962 -continue_del_edges([]) --> [].continue_del_edges205,4962 -continue_del_edges([]) --> [].continue_del_edges205,4962 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges206,4993 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges206,4993 -continue_del_edges([V-V1|Es]) --> !,continue_del_edges206,4993 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex211,5136 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex211,5136 -contract_vertex(V,Children, Vs0, Vs) :-contract_vertex211,5136 -del_vertices(Children, [], Children).del_vertices216,5321 -del_vertices(Children, [], Children).del_vertices216,5321 -del_vertices([K1-W1|Children0], [K-W|ToDel], NewChildren) :-del_vertices217,5359 -del_vertices([K1-W1|Children0], [K-W|ToDel], NewChildren) :-del_vertices217,5359 -del_vertices([K1-W1|Children0], [K-W|ToDel], NewChildren) :-del_vertices217,5359 -wdgraph_del_vertex(Vs0, V, Vsf) :-wdgraph_del_vertex227,5616 -wdgraph_del_vertex(Vs0, V, Vsf) :-wdgraph_del_vertex227,5616 -wdgraph_del_vertex(Vs0, V, Vsf) :-wdgraph_del_vertex227,5616 -delete_wedge(_, [], []).delete_wedge231,5713 -delete_wedge(_, [], []).delete_wedge231,5713 -delete_wedge(V, [K-W|Children], NewChildren) :-delete_wedge232,5738 -delete_wedge(V, [K-W|Children], NewChildren) :-delete_wedge232,5738 -delete_wedge(V, [K-W|Children], NewChildren) :-delete_wedge232,5738 -wdgraph_del_vertices(G0, Vs, GF) :-wdgraph_del_vertices243,5958 -wdgraph_del_vertices(G0, Vs, GF) :-wdgraph_del_vertices243,5958 -wdgraph_del_vertices(G0, Vs, GF) :-wdgraph_del_vertices243,5958 -delete_all([]) --> [].delete_all250,6195 -delete_all([]) --> [].delete_all250,6195 -delete_all([]) --> [].delete_all250,6195 -delete_all([V|Vs],Vs0,Vsf) :-delete_all251,6218 -delete_all([V|Vs],Vs0,Vsf) :-delete_all251,6218 -delete_all([V|Vs],Vs0,Vsf) :-delete_all251,6218 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges255,6299 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges255,6299 -delete_remaining_edges(SortedVs,Vs0,Vsf) :-delete_remaining_edges255,6299 -del_possible_edges([], [], []).del_possible_edges258,6393 -del_possible_edges([], [], []).del_possible_edges258,6393 -del_possible_edges([], [C|Children], [C|Children]).del_possible_edges259,6425 -del_possible_edges([], [C|Children], [C|Children]).del_possible_edges259,6425 -del_possible_edges([_|_], [], []).del_possible_edges260,6477 -del_possible_edges([_|_], [], []).del_possible_edges260,6477 -del_possible_edges([K|ToDel], [K1-W1|Children0], NewChildren) :-del_possible_edges261,6512 -del_possible_edges([K|ToDel], [K1-W1|Children0], NewChildren) :-del_possible_edges261,6512 -del_possible_edges([K|ToDel], [K1-W1|Children0], NewChildren) :-del_possible_edges261,6512 -wdgraph_to_dgraph(WG, DG) :-wdgraph_to_dgraph272,6837 -wdgraph_to_dgraph(WG, DG) :-wdgraph_to_dgraph272,6837 -wdgraph_to_dgraph(WG, DG) :-wdgraph_to_dgraph272,6837 -cvt_wedges([], []).cvt_wedges276,6943 -cvt_wedges([], []).cvt_wedges276,6943 -cvt_wedges([V-WEs|EdgesList0], [V-Es|EdgesList]) :-cvt_wedges277,6963 -cvt_wedges([V-WEs|EdgesList0], [V-Es|EdgesList]) :-cvt_wedges277,6963 -cvt_wedges([V-WEs|EdgesList0], [V-Es|EdgesList]) :-cvt_wedges277,6963 -cvt_wneighbs([], []).cvt_wneighbs281,7076 -cvt_wneighbs([], []).cvt_wneighbs281,7076 -cvt_wneighbs([V-_|WEs], [V|Es]) :-cvt_wneighbs282,7098 -cvt_wneighbs([V-_|WEs], [V|Es]) :-cvt_wneighbs282,7098 -cvt_wneighbs([V-_|WEs], [V|Es]) :-cvt_wneighbs282,7098 -dgraph_to_wdgraph(DG, WG) :-dgraph_to_wdgraph285,7158 -dgraph_to_wdgraph(DG, WG) :-dgraph_to_wdgraph285,7158 -dgraph_to_wdgraph(DG, WG) :-dgraph_to_wdgraph285,7158 -cvt_edges([], []).cvt_edges289,7265 -cvt_edges([], []).cvt_edges289,7265 -cvt_edges([V-Es|EdgesList0], [V-WEs|WEdgeList]) :-cvt_edges290,7284 -cvt_edges([V-Es|EdgesList0], [V-WEs|WEdgeList]) :-cvt_edges290,7284 -cvt_edges([V-Es|EdgesList0], [V-WEs|WEdgeList]) :-cvt_edges290,7284 -cvt_neighbs([], []).cvt_neighbs294,7394 -cvt_neighbs([], []).cvt_neighbs294,7394 -cvt_neighbs([V|WEs], [V-1|Es]) :-cvt_neighbs295,7415 -cvt_neighbs([V|WEs], [V-1|Es]) :-cvt_neighbs295,7415 -cvt_neighbs([V|WEs], [V-1|Es]) :-cvt_neighbs295,7415 -wdgraph_neighbors(V, WG, Neighbors) :-wdgraph_neighbors298,7473 -wdgraph_neighbors(V, WG, Neighbors) :-wdgraph_neighbors298,7473 -wdgraph_neighbors(V, WG, Neighbors) :-wdgraph_neighbors298,7473 -wdgraph_neighbours(V, WG, Neighbors) :-wdgraph_neighbours302,7582 -wdgraph_neighbours(V, WG, Neighbors) :-wdgraph_neighbours302,7582 -wdgraph_neighbours(V, WG, Neighbors) :-wdgraph_neighbours302,7582 -wdgraph_wneighbors(V, WG, Neighbors) :-wdgraph_wneighbors306,7692 -wdgraph_wneighbors(V, WG, Neighbors) :-wdgraph_wneighbors306,7692 -wdgraph_wneighbors(V, WG, Neighbors) :-wdgraph_wneighbors306,7692 -wdgraph_wneighbours(V, WG, Neighbors) :-wdgraph_wneighbours309,7763 -wdgraph_wneighbours(V, WG, Neighbors) :-wdgraph_wneighbours309,7763 -wdgraph_wneighbours(V, WG, Neighbors) :-wdgraph_wneighbours309,7763 -wdgraph_transpose(Graph, TGraph) :-wdgraph_transpose312,7835 -wdgraph_transpose(Graph, TGraph) :-wdgraph_transpose312,7835 -wdgraph_transpose(Graph, TGraph) :-wdgraph_transpose312,7835 -wtedges([],[]).wtedges319,8025 -wtedges([],[]).wtedges319,8025 -wtedges([V-Vs|Edges],TEdges) :-wtedges320,8041 -wtedges([V-Vs|Edges],TEdges) :-wtedges320,8041 -wtedges([V-Vs|Edges],TEdges) :-wtedges320,8041 -fill_wtedges([], _, TEdges, TEdges).fill_wtedges324,8138 -fill_wtedges([], _, TEdges, TEdges).fill_wtedges324,8138 -fill_wtedges([V1-W|Vs], V, [V1-(V-W)|TEdges], TEdges0) :-fill_wtedges325,8175 -fill_wtedges([V1-W|Vs], V, [V1-(V-W)|TEdges], TEdges0) :-fill_wtedges325,8175 -fill_wtedges([V1-W|Vs], V, [V1-(V-W)|TEdges], TEdges0) :-fill_wtedges325,8175 -fill_nodes([],[]).fill_nodes329,8274 -fill_nodes([],[]).fill_nodes329,8274 -fill_nodes([V-[Child|MoreChildren]|Nodes],[V-Child|Edges]) :- !,fill_nodes330,8293 -fill_nodes([V-[Child|MoreChildren]|Nodes],[V-Child|Edges]) :- !,fill_nodes330,8293 -fill_nodes([V-[Child|MoreChildren]|Nodes],[V-Child|Edges]) :- !,fill_nodes330,8293 -fill_nodes([_-[]|Edges],TEdges) :-fill_nodes333,8435 -fill_nodes([_-[]|Edges],TEdges) :-fill_nodes333,8435 -fill_nodes([_-[]|Edges],TEdges) :-fill_nodes333,8435 -wdgraph_transitive_closure(G,Closure) :-wdgraph_transitive_closure336,8498 -wdgraph_transitive_closure(G,Closure) :-wdgraph_transitive_closure336,8498 -wdgraph_transitive_closure(G,Closure) :-wdgraph_transitive_closure336,8498 -continue_closure([], Closure, Closure) :- !.continue_closure340,8600 -continue_closure([], Closure, Closure) :- !.continue_closure340,8600 -continue_closure([], Closure, Closure) :- !.continue_closure340,8600 -continue_closure(Edges, G, Closure) :-continue_closure341,8645 -continue_closure(Edges, G, Closure) :-continue_closure341,8645 -continue_closure(Edges, G, Closure) :-continue_closure341,8645 -transit_wgraph([],_,[]).transit_wgraph346,8799 -transit_wgraph([],_,[]).transit_wgraph346,8799 -transit_wgraph([V-(V1-W)|Edges],G,NewEdges) :-transit_wgraph347,8824 -transit_wgraph([V-(V1-W)|Edges],G,NewEdges) :-transit_wgraph347,8824 -transit_wgraph([V-(V1-W)|Edges],G,NewEdges) :-transit_wgraph347,8824 -transit_wgraph2([], _, _, _, NewEdges, NewEdges).transit_wgraph2352,9007 -transit_wgraph2([], _, _, _, NewEdges, NewEdges).transit_wgraph2352,9007 -transit_wgraph2([GC|GrandChildren], V, W, G, NewEdges, MoreEdges) :-transit_wgraph2353,9057 -transit_wgraph2([GC|GrandChildren], V, W, G, NewEdges, MoreEdges) :-transit_wgraph2353,9057 -transit_wgraph2([GC|GrandChildren], V, W, G, NewEdges, MoreEdges) :-transit_wgraph2353,9057 -transit_wgraph2([GC-W1|GrandChildren], V, W2, G, [V-(GC-W)|NewEdges], MoreEdges) :-transit_wgraph2356,9210 -transit_wgraph2([GC-W1|GrandChildren], V, W2, G, [V-(GC-W)|NewEdges], MoreEdges) :-transit_wgraph2356,9210 -transit_wgraph2([GC-W1|GrandChildren], V, W2, G, [V-(GC-W)|NewEdges], MoreEdges) :-transit_wgraph2356,9210 -is_edge(V1,V2,G) :-is_edge360,9372 -is_edge(V1,V2,G) :-is_edge360,9372 -is_edge(V1,V2,G) :-is_edge360,9372 -wdgraph_symmetric_closure(G,S) :-wdgraph_symmetric_closure364,9448 -wdgraph_symmetric_closure(G,S) :-wdgraph_symmetric_closure364,9448 -wdgraph_symmetric_closure(G,S) :-wdgraph_symmetric_closure364,9448 -invert_wedges([], []).invert_wedges369,9591 -invert_wedges([], []).invert_wedges369,9591 -invert_wedges([V1-(V2-W)|WEdges], [V2-(V1-W)|InvertedWEdges]) :-invert_wedges370,9614 -invert_wedges([V1-(V2-W)|WEdges], [V2-(V1-W)|InvertedWEdges]) :-invert_wedges370,9614 -invert_wedges([V1-(V2-W)|WEdges], [V2-(V1-W)|InvertedWEdges]) :-invert_wedges370,9614 -wdgraph_min_path(V1, V2, WGraph, Path, Cost) :-wdgraph_min_path373,9720 -wdgraph_min_path(V1, V2, WGraph, Path, Cost) :-wdgraph_min_path373,9720 -wdgraph_min_path(V1, V2, WGraph, Path, Cost) :-wdgraph_min_path373,9720 -wdgraph_max_path(V1, V2, WGraph0, Path, Cost) :-wdgraph_max_path382,9998 -wdgraph_max_path(V1, V2, WGraph0, Path, Cost) :-wdgraph_max_path382,9998 -wdgraph_max_path(V1, V2, WGraph0, Path, Cost) :-wdgraph_max_path382,9998 -inv_costs([], []).inv_costs388,10183 -inv_costs([], []).inv_costs388,10183 -inv_costs([V-Es|Edges0], [V-NEs|Edges]) :-inv_costs389,10202 -inv_costs([V-Es|Edges0], [V-NEs|Edges]) :-inv_costs389,10202 -inv_costs([V-Es|Edges0], [V-NEs|Edges]) :-inv_costs389,10202 -inv_costs2([],[]).inv_costs2393,10294 -inv_costs2([],[]).inv_costs2393,10294 -inv_costs2([V-E|Es],[V-NE|NEs]) :-inv_costs2394,10313 -inv_costs2([V-E|Es],[V-NE|NEs]) :-inv_costs2394,10313 -inv_costs2([V-E|Es],[V-NE|NEs]) :-inv_costs2394,10313 -queue_edges([], _, _, H, H).queue_edges398,10381 -queue_edges([], _, _, H, H).queue_edges398,10381 -queue_edges([V-W|Edges], V0, D0, H, NH) :-queue_edges399,10410 -queue_edges([V-W|Edges], V0, D0, H, NH) :-queue_edges399,10410 -queue_edges([V-W|Edges], V0, D0, H, NH) :-queue_edges399,10410 -dijkstra(H0, V2, WGraph, Status, Path0, PathF) :-dijkstra404,10538 -dijkstra(H0, V2, WGraph, Status, Path0, PathF) :-dijkstra404,10538 -dijkstra(H0, V2, WGraph, Status, Path0, PathF) :-dijkstra404,10538 -continue_dijkstra(_, V2, _, _, Path0, [e(V0,V2,W)|Path0], _, V0, V, W) :- V == V2, !.continue_dijkstra408,10700 -continue_dijkstra(_, V2, _, _, Path0, [e(V0,V2,W)|Path0], _, V0, V, W) :- V == V2, !.continue_dijkstra408,10700 -continue_dijkstra(_, V2, _, _, Path0, [e(V0,V2,W)|Path0], _, V0, V, W) :- V == V2, !.continue_dijkstra408,10700 -continue_dijkstra(H1, V2, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra409,10786 -continue_dijkstra(H1, V2, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra409,10786 -continue_dijkstra(H1, V2, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra409,10786 -continue_dijkstra(H1, V2, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra413,10960 -continue_dijkstra(H1, V2, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra413,10960 -continue_dijkstra(H1, V2, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra413,10960 -backtrace([], _, Path, Path, Cost, Cost).backtrace420,11197 -backtrace([], _, Path, Path, Cost, Cost).backtrace420,11197 -backtrace([e(V0,V,C)|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace421,11239 -backtrace([e(V0,V,C)|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace421,11239 -backtrace([e(V0,V,C)|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace421,11239 -backtrace([_|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace425,11387 -backtrace([_|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace425,11387 -backtrace([_|EPath], V1, Path0, Path, Cost0, Cost) :-backtrace425,11387 -wdgraph_min_paths(V1, WGraph, T) :-wdgraph_min_paths429,11492 -wdgraph_min_paths(V1, WGraph, T) :-wdgraph_min_paths429,11492 -wdgraph_min_paths(V1, WGraph, T) :-wdgraph_min_paths429,11492 -dijkstra(H0, WGraph, Status, Path0, PathF) :-dijkstra440,11760 -dijkstra(H0, WGraph, Status, Path0, PathF) :-dijkstra440,11760 -dijkstra(H0, WGraph, Status, Path0, PathF) :-dijkstra440,11760 -dijkstra(_, _, _, Path, Path).dijkstra443,11916 -dijkstra(_, _, _, Path, Path).dijkstra443,11916 -continue_dijkstra(H1, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra445,11948 -continue_dijkstra(H1, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra445,11948 -continue_dijkstra(H1, WGraph, Status, Path0, PathF, _, _, V, _) :-continue_dijkstra445,11948 -continue_dijkstra(H1, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra449,12114 -continue_dijkstra(H1, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra449,12114 -continue_dijkstra(H1, WGraph, Status0, Path0, PathF, D, V0, V, W) :-continue_dijkstra449,12114 -wdgraph_path(V, WG, P) :-wdgraph_path455,12341 -wdgraph_path(V, WG, P) :-wdgraph_path455,12341 -wdgraph_path(V, WG, P) :-wdgraph_path455,12341 -wdgraph_reachable(V, G, Edges) :-wdgraph_reachable459,12418 -wdgraph_reachable(V, G, Edges) :-wdgraph_reachable459,12418 -wdgraph_reachable(V, G, Edges) :-wdgraph_reachable459,12418 -reachable([], Done, Done, _, Edges, Edges).reachable464,12562 -reachable([], Done, Done, _, Edges, Edges).reachable464,12562 -reachable([V-_|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable465,12606 -reachable([V-_|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable465,12606 -reachable([V-_|Vertices], Done0, DoneF, G, EdgesF, Edges0) :-reachable465,12606 -reachable([V-_|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable468,12750 -reachable([V-_|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable468,12750 -reachable([V-_|Vertices], Done0, DoneF, G, [V|EdgesF], Edges0) :-reachable468,12750 - -packages/python/swig/yap4py/prolog/wgraphs.yap,255 -vertices_edges_to_wgraph(Vertices, Edges, Graph) :-vertices_edges_to_wgraph55,1371 -vertices_edges_to_wgraph(Vertices, Edges, Graph) :-vertices_edges_to_wgraph55,1371 -vertices_edges_to_wgraph(Vertices, Edges, Graph) :-vertices_edges_to_wgraph55,1371 - -packages/python/swig/yap4py/prolog/wundgraphs.yap,7330 -wundgraph_add_edge(Vs0, V1, V2, K, Vs2) :-wundgraph_add_edge78,1805 -wundgraph_add_edge(Vs0, V1, V2, K, Vs2) :-wundgraph_add_edge78,1805 -wundgraph_add_edge(Vs0, V1, V2, K, Vs2) :-wundgraph_add_edge78,1805 -wundgraph_add_edges(G0, Edges, GF) :-wundgraph_add_edges82,1940 -wundgraph_add_edges(G0, Edges, GF) :-wundgraph_add_edges82,1940 -wundgraph_add_edges(G0, Edges, GF) :-wundgraph_add_edges82,1940 -dup_edges([],[]).dup_edges86,2046 -dup_edges([],[]).dup_edges86,2046 -dup_edges([E1-(E2-K)|Edges], [E1-(E2-K),E2-(E1-K)|DupEdges]) :-dup_edges87,2064 -dup_edges([E1-(E2-K)|Edges], [E1-(E2-K),E2-(E1-K)|DupEdges]) :-dup_edges87,2064 -dup_edges([E1-(E2-K)|Edges], [E1-(E2-K),E2-(E1-K)|DupEdges]) :-dup_edges87,2064 -wundgraph_edges(Vs, Edges) :-wundgraph_edges90,2158 -wundgraph_edges(Vs, Edges) :-wundgraph_edges90,2158 -wundgraph_edges(Vs, Edges) :-wundgraph_edges90,2158 -remove_dups([],[]).remove_dups94,2249 -remove_dups([],[]).remove_dups94,2249 -remove_dups([V1-(V2-K)|DupEdges],NEdges) :- V1 @< V2, !,remove_dups95,2269 -remove_dups([V1-(V2-K)|DupEdges],NEdges) :- V1 @< V2, !,remove_dups95,2269 -remove_dups([V1-(V2-K)|DupEdges],NEdges) :- V1 @< V2, !,remove_dups95,2269 -remove_dups([_|DupEdges],Edges) :-remove_dups98,2385 -remove_dups([_|DupEdges],Edges) :-remove_dups98,2385 -remove_dups([_|DupEdges],Edges) :-remove_dups98,2385 -wundgraph_neighbours(V,Vertices,Children) :-wundgraph_neighbours101,2451 -wundgraph_neighbours(V,Vertices,Children) :-wundgraph_neighbours101,2451 -wundgraph_neighbours(V,Vertices,Children) :-wundgraph_neighbours101,2451 -wundgraph_neighbors(V,Vertices,Children) :-wundgraph_neighbors110,2623 -wundgraph_neighbors(V,Vertices,Children) :-wundgraph_neighbors110,2623 -wundgraph_neighbors(V,Vertices,Children) :-wundgraph_neighbors110,2623 -wundgraph_wneighbours(V,Vertices,Children) :-wundgraph_wneighbours120,2795 -wundgraph_wneighbours(V,Vertices,Children) :-wundgraph_wneighbours120,2795 -wundgraph_wneighbours(V,Vertices,Children) :-wundgraph_wneighbours120,2795 -wundgraph_wneighbors(V,Vertices,Children) :-wundgraph_wneighbors129,2970 -wundgraph_wneighbors(V,Vertices,Children) :-wundgraph_wneighbors129,2970 -wundgraph_wneighbors(V,Vertices,Children) :-wundgraph_wneighbors129,2970 -del_me([], _, []).del_me139,3145 -del_me([], _, []).del_me139,3145 -del_me([K|Children], K1, NewChildren) :-del_me140,3164 -del_me([K|Children], K1, NewChildren) :-del_me140,3164 -del_me([K|Children], K1, NewChildren) :-del_me140,3164 -wdel_me([], _, []).wdel_me152,3425 -wdel_me([], _, []).wdel_me152,3425 -wdel_me([K-A|Children], K1, NewChildren) :-wdel_me153,3445 -wdel_me([K-A|Children], K1, NewChildren) :-wdel_me153,3445 -wdel_me([K-A|Children], K1, NewChildren) :-wdel_me153,3445 -wundgraph_del_edge(Vs0,V1,V2,K,VsF) :-wundgraph_del_edge165,3714 -wundgraph_del_edge(Vs0,V1,V2,K,VsF) :-wundgraph_del_edge165,3714 -wundgraph_del_edge(Vs0,V1,V2,K,VsF) :-wundgraph_del_edge165,3714 -wundgraph_del_edges(G0, Edges, GF) :-wundgraph_del_edges169,3826 -wundgraph_del_edges(G0, Edges, GF) :-wundgraph_del_edges169,3826 -wundgraph_del_edges(G0, Edges, GF) :-wundgraph_del_edges169,3826 -wundgraph_del_vertex(Vs0, V, Vsf) :-wundgraph_del_vertex173,3931 -wundgraph_del_vertex(Vs0, V, Vsf) :-wundgraph_del_vertex173,3931 -wundgraph_del_vertex(Vs0, V, Vsf) :-wundgraph_del_vertex173,3931 -del_and_compact([], _, []).del_and_compact178,4103 -del_and_compact([], _, []).del_and_compact178,4103 -del_and_compact([K-_|Children], K1, NewChildren) :-del_and_compact179,4131 -del_and_compact([K-_|Children], K1, NewChildren) :-del_and_compact179,4131 -del_and_compact([K-_|Children], K1, NewChildren) :-del_and_compact179,4131 -compact([], []).compact191,4426 -compact([], []).compact191,4426 -compact([K-_|Children], [K|CompactChildren]) :-compact192,4443 -compact([K-_|Children], [K|CompactChildren]) :-compact192,4443 -compact([K-_|Children], [K|CompactChildren]) :-compact192,4443 -del_edge(_, [], []).del_edge196,4530 -del_edge(_, [], []).del_edge196,4530 -del_edge(K1, [K-W|Children], NewChildren) :-del_edge197,4551 -del_edge(K1, [K-W|Children], NewChildren) :-del_edge197,4551 -del_edge(K1, [K-W|Children], NewChildren) :-del_edge197,4551 -wundgraph_to_wdgraph(G, G).wundgraph_to_wdgraph208,4780 -wundgraph_to_wdgraph(G, G).wundgraph_to_wdgraph208,4780 -wundgraph_min_tree(G, T, C) :-wundgraph_min_tree214,4915 -wundgraph_min_tree(G, T, C) :-wundgraph_min_tree214,4915 -wundgraph_min_tree(G, T, C) :-wundgraph_min_tree214,4915 -generate_min_tree([], T, 0) :- !,generate_min_tree218,4999 -generate_min_tree([], T, 0) :- !,generate_min_tree218,4999 -generate_min_tree([], T, 0) :- !,generate_min_tree218,4999 -generate_min_tree([El-_], T, 0) :- !,generate_min_tree220,5052 -generate_min_tree([El-_], T, 0) :- !,generate_min_tree220,5052 -generate_min_tree([El-_], T, 0) :- !,generate_min_tree220,5052 -generate_min_tree(Els0, T, C) :-generate_min_tree223,5144 -generate_min_tree(Els0, T, C) :-generate_min_tree223,5144 -generate_min_tree(Els0, T, C) :-generate_min_tree223,5144 -wundgraph_max_tree(G, T, C) :-wundgraph_max_tree231,5359 -wundgraph_max_tree(G, T, C) :-wundgraph_max_tree231,5359 -wundgraph_max_tree(G, T, C) :-wundgraph_max_tree231,5359 -generate_max_tree([], T, 0) :- !,generate_max_tree235,5443 -generate_max_tree([], T, 0) :- !,generate_max_tree235,5443 -generate_max_tree([], T, 0) :- !,generate_max_tree235,5443 -generate_max_tree([El-_], T, 0) :- !,generate_max_tree237,5496 -generate_max_tree([El-_], T, 0) :- !,generate_max_tree237,5496 -generate_max_tree([El-_], T, 0) :- !,generate_max_tree237,5496 -generate_max_tree(Els0, T, C) :-generate_max_tree240,5588 -generate_max_tree(Els0, T, C) :-generate_max_tree240,5588 -generate_max_tree(Els0, T, C) :-generate_max_tree240,5588 -mk_list_of_edges([], []).mk_list_of_edges249,5843 -mk_list_of_edges([], []).mk_list_of_edges249,5843 -mk_list_of_edges([V-Els|Els0], Edges) :-mk_list_of_edges250,5869 -mk_list_of_edges([V-Els|Els0], Edges) :-mk_list_of_edges250,5869 -mk_list_of_edges([V-Els|Els0], Edges) :-mk_list_of_edges250,5869 -add_neighbs([], _, Edges, Edges).add_neighbs254,5981 -add_neighbs([], _, Edges, Edges).add_neighbs254,5981 -add_neighbs([V-W|Els], V0, [W-(V0-V)|Edges], Edges0) :-add_neighbs255,6015 -add_neighbs([V-W|Els], V0, [W-(V0-V)|Edges], Edges0) :-add_neighbs255,6015 -add_neighbs([V-W|Els], V0, [W-(V0-V)|Edges], Edges0) :-add_neighbs255,6015 -add_neighbs([_|Els], V0, Edges, Edges0) :-add_neighbs258,6122 -add_neighbs([_|Els], V0, Edges, Edges0) :-add_neighbs258,6122 -add_neighbs([_|Els], V0, Edges, Edges0) :-add_neighbs258,6122 -add_sorted_edges([], _, [], C, C).add_sorted_edges262,6206 -add_sorted_edges([], _, [], C, C).add_sorted_edges262,6206 -add_sorted_edges([W-(V0-V)|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges263,6241 -add_sorted_edges([W-(V0-V)|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges263,6241 -add_sorted_edges([W-(V0-V)|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges263,6241 -add_sorted_edges([_|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges292,7081 -add_sorted_edges([_|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges292,7081 -add_sorted_edges([_|SortedEdges], T0, NewTreeEdges, C0, C) :-add_sorted_edges292,7081 - -packages/python/swig/yap4py/prolog/yapi.yap,1458 -bindvars( [], [] ) :- !.bindvars10,153 -bindvars( [], [] ) :- !.bindvars10,153 -bindvars( [], [] ) :- !.bindvars10,153 -bindvars( L, NL ) :-bindvars11,178 -bindvars( L, NL ) :-bindvars11,178 -bindvars( L, NL ) :-bindvars11,178 -bind(t(_,t(X,Y)), Z, T0, T, N1, N2) :-bind19,312 -bind(t(_,t(X,Y)), Z, T0, T, N1, N2) :-bind19,312 -bind(t(_,t(X,Y)), Z, T0, T, N1, N2) :-bind19,312 -bind(tuple(_,tuple(X,Y)), Z, T0, T, N1, N2) :-bind22,386 -bind(tuple(_,tuple(X,Y)), Z, T0, T, N1, N2) :-bind22,386 -bind(tuple(_,tuple(X,Y)), Z, T0, T, N1, N2) :-bind22,386 -bind(X=Y, X=X, T0, T, N, N) :-bind25,468 -bind(X=Y, X=X, T0, T, N, N) :-bind25,468 -bind(X=Y, X=X, T0, T, N, N) :-bind25,468 -bind(X = G, X = G, T, T, N0, N0) :-bind29,537 -bind(X = G, X = G, T, T, N0, N0) :-bind29,537 -bind(X = G, X = G, T, T, N0, N0) :-bind29,537 -bind(X = C, X = NC, T, NT, N0, NF) :-bind32,589 -bind(X = C, X = NC, T, NT, N0, NF) :-bind32,589 -bind(X = C, X = NC, T, NT, N0, NF) :-bind32,589 -newb(Y, X, T, T, N, N) :-newb37,696 -newb(Y, X, T, T, N, N) :-newb37,696 -newb(Y, X, T, T, N, N) :-newb37,696 -newb(Y, X, T, TN, N, NF) :-newb41,756 -newb(Y, X, T, TN, N, NF) :-newb41,756 -newb(Y, X, T, TN, N, NF) :-newb41,756 -newb(Y, Y, T, T, N, N) :-newb47,859 -newb(Y, Y, T, T, N, N) :-newb47,859 -newb(Y, Y, T, T, N, N) :-newb47,859 -newb(Y, X, T, NT, N0, NF) :-newb50,901 -newb(Y, X, T, NT, N0, NF) :-newb50,901 -newb(Y, X, T, NT, N0, NF) :-newb50,901 - -packages/python/swig/yap4py/prolog/ypp.yap,3209 -ypp_state(State):-ypp_state44,1274 -ypp_state(State):-ypp_state44,1274 -ypp_state(State):-ypp_state44,1274 -ypp_state(State):-ypp_state48,1331 -ypp_state(State):-ypp_state48,1331 -ypp_state(State):-ypp_state48,1331 -ypp_define(Name,Value):-ypp_define52,1374 -ypp_define(Name,Value):-ypp_define52,1374 -ypp_define(Name,Value):-ypp_define52,1374 -ypp_undefine(Name):-ypp_undefine56,1456 -ypp_undefine(Name):-ypp_undefine56,1456 -ypp_undefine(Name):-ypp_undefine56,1456 -ypp_extcmd(Cmd):-ypp_extcmd60,1512 -ypp_extcmd(Cmd):-ypp_extcmd60,1512 -ypp_extcmd(Cmd):-ypp_extcmd60,1512 -ypp_extcmd(Cmd):-ypp_extcmd64,1609 -ypp_extcmd(Cmd):-ypp_extcmd64,1609 -ypp_extcmd(Cmd):-ypp_extcmd64,1609 -ypp_consult(File):-ypp_consult68,1680 -ypp_consult(File):-ypp_consult68,1680 -ypp_consult(File):-ypp_consult68,1680 -ypp_reconsult(File):-ypp_reconsult72,1769 -ypp_reconsult(File):-ypp_reconsult72,1769 -ypp_reconsult(File):-ypp_reconsult72,1769 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(on):-set_value('____ypp_state',1).set_state79,2055 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -set_state(off):-set_value('____ypp_state',0).set_state80,2100 -get_state(State):-get_state82,2147 -get_state(State):-get_state82,2147 -get_state(State):-get_state82,2147 -store_define(Name,_Value):-store_define87,2232 -store_define(Name,_Value):-store_define87,2232 -store_define(Name,_Value):-store_define87,2232 -store_define(Name,Value):-store_define91,2331 -store_define(Name,Value):-store_define91,2331 -store_define(Name,Value):-store_define91,2331 -store_define(Name,Value):-store_define95,2416 -store_define(Name,Value):-store_define95,2416 -store_define(Name,Value):-store_define95,2416 -store_define(_Name,_Value).store_define98,2488 -store_define(_Name,_Value).store_define98,2488 -system_variable( 'YAPLIBDIR' ).system_variable100,2517 -system_variable( 'YAPLIBDIR' ).system_variable100,2517 -system_variable( 'YAPSHAREDIR' ).system_variable101,2549 -system_variable( 'YAPSHAREDIR' ).system_variable101,2549 -system_variable( 'YAPBINDIR' ).system_variable102,2583 -system_variable( 'YAPBINDIR' ).system_variable102,2583 -del_define(Name):-del_define105,2617 -del_define(Name):-del_define105,2617 -del_define(Name):-del_define105,2617 -defines2string(S):-defines2string110,2728 -defines2string(S):-defines2string110,2728 -defines2string(S):-defines2string110,2728 -mergedefs([],_,'').mergedefs115,2847 -mergedefs([],_,'').mergedefs115,2847 -mergedefs([d(Name,Val)|RDefs],Pref,S):-mergedefs116,2867 -mergedefs([d(Name,Val)|RDefs],Pref,S):-mergedefs116,2867 -mergedefs([d(Name,Val)|RDefs],Pref,S):-mergedefs116,2867 -ypp_file(File,PPFile):-ypp_file121,2980 -ypp_file(File,PPFile):-ypp_file121,2980 -ypp_file(File,PPFile):-ypp_file121,2980 - -packages/python/swig/yap4py/prolog/ytest.yap,3724 -:- multifile test/1.multifile14,359 -:- multifile test/1.multifile14,359 -:- dynamic error/3, failed/3.dynamic16,381 -:- dynamic error/3, failed/3.dynamic16,381 -user:term_expansion( test( (A, B) ), ytest:test( Lab, Cond, Done ) ) :-term_expansion20,424 -user:term_expansion( test( (A, B) ), ytest:test( Lab, Cond, Done ) ) :-term_expansion20,424 -run_tests :-run_tests23,533 -run_tests :-run_tests27,600 -run_test(Lab, M) :-run_test30,628 -run_test(Lab, M) :-run_test30,628 -run_test(Lab, M) :-run_test30,628 -run_test(Lab,M) :-run_test40,948 -run_test(Lab,M) :-run_test40,948 -run_test(Lab,M) :-run_test40,948 -info((A,B), Lab, Cl, G) :- !,info50,1221 -info((A,B), Lab, Cl, G) :- !,info50,1221 -info((A,B), Lab, Cl, G) :- !,info50,1221 -info(A, _, _, _) :- var(A), !.info53,1301 -info(A, _, _, _) :- var(A), !.info53,1301 -info(A, _, _, _) :- var(A), !.info53,1301 -info(A returns B, _, (A returns B), g(_,ok)) :- !.info54,1332 -info(A returns B, _, (A returns B), g(_,ok)) :- !.info54,1332 -info(A returns B, _, (A returns B), g(_,ok)) :- !.info54,1332 -info(A, A, _, g(ok,_)) :- primitive(A), !.info55,1383 -info(A, A, _, g(ok,_)) :- primitive(A), !.info55,1383 -info(A, A, _, g(ok,_)) :- primitive(A), !.info55,1383 -info(_A, _, _, _).info56,1426 -info(_A, _, _, _).info56,1426 -do_returns(G0 , Sols0, Lab ) :-do_returns58,1446 -do_returns(G0 , Sols0, Lab ) :-do_returns58,1446 -do_returns(G0 , Sols0, Lab ) :-do_returns58,1446 -answer(G, V, Target0, Lab, answer(G)) :-answer67,1723 -answer(G, V, Target0, Lab, answer(G)) :-answer67,1723 -answer(G, V, Target0, Lab, answer(G)) :-answer67,1723 -step( I, Sols , G0, Sol, Lab ) :-step76,1871 -step( I, Sols , G0, Sol, Lab ) :-step76,1871 -step( I, Sols , G0, Sol, Lab ) :-step76,1871 -success( _, _) :-success102,2298 -success( _, _) :-success102,2298 -success( _, _) :-success102,2298 -error(_, G, E, _ , Lab) :-error106,2351 -error(_, G, E, _ , Lab) :-error106,2351 -error(_, G, E, _ , Lab) :-error106,2351 -failure( G, Pattern, Lab) :-failure111,2443 -failure( G, Pattern, Lab) :-failure111,2443 -failure( G, Pattern, Lab) :-failure111,2443 -reset( _ ) :-reset117,2545 -reset( _ ) :-reset117,2545 -reset( _ ) :-reset117,2545 -inc( I ) :-inc120,2592 -inc( I ) :-inc120,2592 -inc( I ) :-inc120,2592 -counter( I ) :-counter125,2685 -counter( I ) :-counter125,2685 -counter( I ) :-counter125,2685 -shutdown( _Streams, Refs ) :-shutdown129,2735 -shutdown( _Streams, Refs ) :-shutdown129,2735 -shutdown( _Streams, Refs ) :-shutdown129,2735 -test_error( Ball, e( Ball ) ).test_error133,2852 -test_error( Ball, e( Ball ) ).test_error133,2852 -fetch( 0, [ A ], A, []) :-fetch135,2884 -fetch( 0, [ A ], A, []) :-fetch135,2884 -fetch( 0, [ A ], A, []) :-fetch135,2884 -fetch( 0, [ A, B | _ ], A, B) :-fetch137,2919 -fetch( 0, [ A, B | _ ], A, B) :-fetch137,2919 -fetch( 0, [ A, B | _ ], A, B) :-fetch137,2919 -fetch( I0, [ _ | L ] , A, B) :-fetch139,2959 -fetch( I0, [ _ | L ] , A, B) :-fetch139,2959 -fetch( I0, [ _ | L ] , A, B) :-fetch139,2959 -show_bad :-show_bad144,3044 -show_bad :-show_bad150,3199 -end(done) :-end158,3370 -end(done) :-end158,3370 -end(done) :-end158,3370 -end(Ball) :-end162,3408 -end(Ball) :-end162,3408 -end(Ball) :-end162,3408 -assertall(Cls, REfs) :-assertall165,3447 -assertall(Cls, REfs) :-assertall165,3447 -assertall(Cls, REfs) :-assertall165,3447 -ensure_ground( g(Lab,Ok)) :-ensure_ground169,3532 -ensure_ground( g(Lab,Ok)) :-ensure_ground169,3532 -ensure_ground( g(Lab,Ok)) :-ensure_ground169,3532 -ensure_ground( g(Lab,Ok)) :-ensure_ground172,3610 -ensure_ground( g(Lab,Ok)) :-ensure_ground172,3610 -ensure_ground( g(Lab,Ok)) :-ensure_ground172,3610 - -packages/python/swig/yap4py/yapi.py,591 -import yapyap2,1 -import os.pathos3,12 -import os.pathpath3,12 -import syssys4,27 -import pdbpdb6,59 -from collections import namedtuplenamedtuple7,70 -yap_lib_path = os.path.dirname(__file__)yap_lib_path9,106 -use_module = namedtuple( 'use_module', 'file')use_module11,148 -bindvars = namedtuple( 'bindvars', 'list')bindvars12,195 -library = namedtuple( 'library', 'list')library13,238 -v = namedtuple( '_', 'slot')v14,279 -def numbervars( engine, l ):numbervars17,310 -def query_prolog(engine, s):query_prolog27,507 - def answer(q):answer29,537 -def live():live96,2680 - -packages/python/swig/yapi.py,640 -import yapyap2,1 -import os.pathos3,12 -import os.pathpath3,12 -import syssys4,27 -from collections import namedtuplenamedtuple7,72 -yap_lib_path = os.path.dirname(__file__)yap_lib_path9,108 -use_module = namedtuple( 'use_module', 'file')use_module11,150 -bindvars = namedtuple( 'bindvars', 'list')bindvars12,197 -library = namedtuple( 'library', 'list')library13,240 -v = namedtuple( '_', 'slot')v14,281 -yap_query = namedtuple( 'yap_query', 'query owner')yap_query15,310 -def numbervars( engine, l ):numbervars18,364 - def answer(q):answer28,558 -def boot_yap(**kwargs):boot_yap79,2042 -def live(**kwargs):live89,2404 - -packages/python/swig/yapi.yap,2180 -yap_query( Goal, VarNames, Stream, Dictionary) :-yap_query17,332 -yap_query( Goal, VarNames, Stream, Dictionary) :-yap_query17,332 -yap_query( Goal, VarNames, Stream, Dictionary) :-yap_query17,332 -prolog:yap_query( Goal, VarNames, Dictionary) :-yap_query24,473 -prolog:yap_query( Goal, VarNames, Dictionary) :-yap_query24,473 -constraints(QVs, Goal, Stream, {Dict}) :-constraints27,584 -constraints(QVs, Goal, Stream, {Dict}) :-constraints27,584 -constraints(QVs, Goal, Stream, {Dict}) :-constraints27,584 -constraints(_, _, {}) :-constraints32,724 -constraints(_, _, {}) :-constraints32,724 -constraints(_, _, {}) :-constraints32,724 -bind_qv(V=V0, Vs, Vs) :- var(V0), !, V0='$VAR'(V).bind_qv35,779 -bind_qv(V=V0, Vs, Vs) :- var(V0), !, V0='$VAR'(V).bind_qv35,779 -bind_qv(V=V0, Vs, Vs) :- var(V0), !, V0='$VAR'(V).bind_qv35,779 -bind_qv(V=V0, Vs, Vs) :- var(V0), !, V0='$VAR'(V).bind_qv35,779 -bind_qv(V=V0, Vs, Vs) :- var(V0), !, V0='$VAR'(V).bind_qv35,779 -bind_qv(V=V, Vs, Vs) :- !.bind_qv36,830 -bind_qv(V=V, Vs, Vs) :- !.bind_qv36,830 -bind_qv(V=V, Vs, Vs) :- !.bind_qv36,830 -bind_qv(V=S, Vs, [V=S|Vs]).bind_qv37,857 -bind_qv(V=S, Vs, [V=S|Vs]).bind_qv37,857 -enumerate('$VAR'(A), I, I1) :-enumerate39,886 -enumerate('$VAR'(A), I, I1) :-enumerate39,886 -enumerate('$VAR'(A), I, I1) :-enumerate39,886 -enum(I, [C]) :-enum44,977 -enum(I, [C]) :-enum44,977 -enum(I, [C]) :-enum44,977 -enum(I, [C|Cs]) :-enum47,1024 -enum(I, [C|Cs]) :-enum47,1024 -enum(I, [C|Cs]) :-enum47,1024 -out(Bs, S, _Dict) :-out53,1101 -out(Bs, S, _Dict) :-out53,1101 -out(Bs, S, _Dict) :-out53,1101 -out(Bs, _S, Dict) :-out56,1145 -out(Bs, _S, Dict) :-out56,1145 -out(Bs, _S, Dict) :-out56,1145 -v2py(v(I0) = _V, I0, I) :-v2py59,1183 -v2py(v(I0) = _V, I0, I) :-v2py59,1183 -v2py(v(I0) = _V, I0, I) :-v2py59,1183 -v2py(v(I0) = v(I0), I0, I) :-v2py62,1226 -v2py(v(I0) = v(I0), I0, I) :-v2py62,1226 -v2py(v(I0) = v(I0), I0, I) :-v2py62,1226 -output([V=B], S) :-output65,1272 -output([V=B], S) :-output65,1272 -output([V=B], S) :-output65,1272 -output([V=B|Ns], S) :-output67,1325 -output([V=B|Ns], S) :-output67,1325 -output([V=B|Ns], S) :-output67,1325 - -packages/python/yap_kernel/examples/embedding/inprocess_qtconsole.py,407 -from __future__ import print_functionprint_function1,0 -import osos2,38 -from IPython.qt.console.rich_ipython_widget import RichIPythonWidgetRichIPythonWidget4,49 -from IPython.qt.inprocess import QtInProcessKernelManagerQtInProcessKernelManager5,118 -from IPython.lib import guisupportguisupport6,176 -def print_process_id():print_process_id9,213 -def main():main13,280 - def stop():stop31,805 - -packages/python/yap_kernel/examples/embedding/inprocess_terminal.py,350 -from __future__ import print_functionprint_function1,0 -import osos2,38 -from IPython.kernel.inprocess import InProcessKernelManagerInProcessKernelManager4,49 -from IPython.terminal.console.interactiveshell import ZMQTerminalInteractiveShellZMQTerminalInteractiveShell5,109 -def print_process_id():print_process_id8,193 -def main():main12,260 - -packages/python/yap_kernel/examples/embedding/internal_ipkernel.py,567 -import syssys5,169 -from IPython.lib.kernel import connect_qtconsoleconnect_qtconsole7,181 -from IPython.kernel.zmq.kernelapp import YAP_KernelAppYAP_KernelApp8,230 -def mpl_kernel(gui):mpl_kernel13,468 -class InternalYAPKernel(object):InternalYAPKernel23,767 - def init_yapkernel(self, backend):init_yapkernel25,801 - def print_namespace(self, evt=None):print_namespace39,1415 - def new_qt_console(self, evt=None):new_qt_console46,1662 - def count(self, evt=None):count50,1864 - def cleanup_consoles(self, evt=None):cleanup_consoles53,1939 - -packages/python/yap_kernel/examples/embedding/ipkernel_qtapp.py,353 -from PyQt4 import QtQt21,873 -from internal_yapkernel import InternalYAPKernelInternalYAPKernel23,895 -class SimpleWindow(Qt.QWidget, InternalYAPKernel):SimpleWindow28,1127 - def __init__(self, app):__init__30,1179 - def add_widgets(self):add_widgets36,1327 - app = Qt.QApplication([]) app68,2568 - win = SimpleWindow(app)win70,2623 - -packages/python/yap_kernel/examples/embedding/ipkernel_wxapp.py,426 -import syssys22,947 -import wxwx24,959 -from internal_yapkernel import InternalYAPKernelInternalYAPKernel26,970 -class MyFrame(wx.Frame, InternalYAPKernel):MyFrame32,1203 - def __init__(self, parent, title):__init__38,1356 - def OnTimeToClose(self, evt):OnTimeToClose91,3337 -class MyApp(wx.App):MyApp102,3688 - def OnInit(self):OnInit103,3709 - app = MyApp(redirect=False, clearSigInt=False)app115,4104 - -packages/python/yap_kernel/setup.py,2073 -from __future__ import print_functionprint_function7,141 -name = 'yap_kernel'name10,206 -import syssys16,424 -v = sys.version_infov18,436 - error = "ERROR: %s requires Python version 2.7 or 3.3 or above." % nameerror20,508 -PY3 = (sys.version_info[0] >= 3)PY324,635 -from glob import globglob30,845 -import osos31,867 -import shutilshutil32,877 -from distutils.core import setupsetup34,892 -pjoin = os.path.joinpjoin36,926 -here = os.path.abspath(os.path.dirname(__file__))here37,947 -pkg_root = pjoin(here, name)pkg_root38,997 -packages = []packages40,1027 -package_data = {package_data45,1200 -version_ns = {}version_ns49,1257 -setup_args = dict(setup_args54,1360 - name = name,name55,1379 - version = version_ns['__version__'],version56,1407 - scripts = glob(pjoin('scripts', '*')),scripts57,1456 - packages = packages,packages58,1507 - py_modules = ['yap_kernel_launcher'],py_modules59,1539 - package_data = package_data,package_data60,1586 - description = "YAP Kernel for Jupyter",description61,1622 - author = 'YAP Development Team',author62,1670 - author_email = 'ipython-dev@scipy.org',author_email63,1716 - url = 'http://ipython.org',url64,1763 - license = 'BSD',license65,1807 - platforms = "Linux, Mac OS X, Windows",platforms66,1836 - keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'],keywords67,1886 - classifiers = [classifiers68,1956 - import setuptoolssetuptools80,2398 -setuptools_args = {}setuptools_args82,2421 - from ipykernel.kernelspec import write_kernel_spec, make_ipkernel_cmd, KERNEL_NAMEwrite_kernel_spec92,2676 - from ipykernel.kernelspec import write_kernel_spec, make_ipkernel_cmd, KERNEL_NAMEmake_ipkernel_cmd92,2676 - from ipykernel.kernelspec import write_kernel_spec, make_ipkernel_cmd, KERNEL_NAMEKERNEL_NAME92,2676 - argv = make_ipkernel_cmd(executable='python')argv94,2764 - dest = os.path.join(here, 'data_kernelspec')dest95,2814 - -packages/python/yap_kernel/yap_kernel/__init__.py,506 -from ._version import version_info, __version__, kernel_protocol_version_info, kernel_protocol_versionversion_info1,0 -from ._version import version_info, __version__, kernel_protocol_version_info, kernel_protocol_version__version__1,0 -from ._version import version_info, __version__, kernel_protocol_version_info, kernel_protocol_versionkernel_protocol_version_info1,0 -from ._version import version_info, __version__, kernel_protocol_version_info, kernel_protocol_versionkernel_protocol_version1,0 - -packages/python/yap_kernel/yap_kernel/__main__.py,53 - from yap_kernel import kernelapp as appapp2,27 - -packages/python/yap_kernel/yap_kernel/_version.py,273 -version_info = (6, 3, 5)version_info1,0 -__version__ = '.'.join(map(str, version_info))__version__2,25 -kernel_protocol_version_info = (5, 1)kernel_protocol_version_info4,73 -kernel_protocol_version = '%s.%s' % kernel_protocol_version_infokernel_protocol_version5,111 - -packages/python/yap_kernel/yap_kernel/codeutil.py,341 -import warningswarnings16,540 -import syssys19,689 -import typestypes20,700 - import copyreg # Py 3copyreg22,718 - import copyreg # Py 3Py22,718 - import copy_reg as copyreg # Py 2copyreg24,765 - import copy_reg as copyreg # Py 2Py24,765 -def code_ctor(*args):code_ctor26,805 -def reduce_code(co):reduce_code29,861 - -packages/python/yap_kernel/yap_kernel/comm/__init__.py,0 - -packages/python/yap_kernel/yap_kernel/comm/comm.py,2374 -import uuiduuid6,131 -from traitlets.config import LoggingConfigurableLoggingConfigurable8,144 -from yap_kernel.kernelbase import KernelKernel9,193 -from yap_kernel.jsonutil import json_cleanjson_clean11,235 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultInstance12,278 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultUnicode12,278 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultBytes12,278 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultBool12,278 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultDict12,278 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultAny12,278 -from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, defaultdefault12,278 -class Comm(LoggingConfigurable):Comm15,353 - kernel = Instance('yap_kernel.kernelbase.Kernel', allow_none=True)kernel17,452 - def _default_kernel(self):_default_kernel20,547 - comm_id = Unicode()comm_id24,649 - def _default_comm_id(self):_default_comm_id27,698 - primary = Bool(True, help="Am I the primary or secondary Comm?")primary30,763 - target_name = Unicode('comm')target_name32,833 - topic = Bytes()topic36,988 - def _default_topic(self):_default_topic39,1031 - _open_data = Dict(help="data dict, if any, to be included in comm_open")_open_data42,1120 - _close_data = Dict(help="data dict, if any, to be included in comm_close")_close_data43,1197 - _msg_callback = Any()_msg_callback45,1277 - _close_callback = Any()_close_callback46,1303 - _closed = Bool(True)_closed48,1332 - def __init__(self, target_name='', data=None, metadata=None, buffers=None, **kwargs):__init__50,1358 - def _publish_msg(self, msg_type, data=None, metadata=None, buffers=None, **keys):_publish_msg61,1793 - def __del__(self):__del__74,2362 - def open(self, data=None, metadata=None, buffers=None):open80,2468 - def close(self, data=None, metadata=None, buffers=None):close101,3336 - def send(self, data=None, metadata=None, buffers=None):send118,3927 - def on_close(self, callback):on_close126,4195 - def on_msg(self, callback):on_msg135,4454 - def handle_close(self, msg):handle_close146,4746 - def handle_msg(self, msg):handle_msg152,4959 -__all__ = ['Comm']__all__164,5350 - -packages/python/yap_kernel/yap_kernel/comm/manager.py,1343 -import syssys6,136 -import logginglogging7,147 -from traitlets.config import LoggingConfigurableLoggingConfigurable9,163 -from ipython_genutils.py3compat import string_typesstring_types12,267 -from traitlets import Instance, Unicode, Dict, Any, defaultInstance13,319 -from traitlets import Instance, Unicode, Dict, Any, defaultUnicode13,319 -from traitlets import Instance, Unicode, Dict, Any, defaultDict13,319 -from traitlets import Instance, Unicode, Dict, Any, defaultAny13,319 -from traitlets import Instance, Unicode, Dict, Any, defaultdefault13,319 -from .comm import CommComm15,380 -class CommManager(LoggingConfigurable):CommManager18,405 - kernel = Instance('yap_kernel.kernelbase.Kernel')kernel21,488 - comms = Dict()comms22,542 - targets = Dict()targets23,561 - def register_target(self, target_name, f):register_target27,602 - def unregister_target(self, target_name, f):unregister_target42,1062 - def register_comm(self, comm):register_comm46,1225 - def unregister_comm(self, comm):unregister_comm53,1418 - def get_comm(self, comm_id):get_comm58,1615 - def comm_open(self, stream, ident, msg):comm_open75,2219 - def comm_msg(self, stream, ident, msg):comm_msg102,3184 - def comm_close(self, stream, ident, msg):comm_close115,3581 -__all__ = ['CommManager']__all__130,4019 - -packages/python/yap_kernel/yap_kernel/connect.py,1288 -from __future__ import absolute_importabsolute_import6,158 -import jsonjson8,198 -import syssys9,210 -from subprocess import Popen, PIPEPopen10,221 -from subprocess import Popen, PIPEPIPE10,221 -import warningswarnings11,256 -from IPython.core.profiledir import ProfileDirProfileDir13,273 -from IPython.paths import get_ipython_dirget_ipython_dir14,320 -from ipython_genutils.path import filefindfilefind15,362 -from ipython_genutils.py3compat import str_to_bytesstr_to_bytes16,405 -import jupyter_clientjupyter_client18,458 -from jupyter_client import write_connection_filewrite_connection_file19,480 -def get_connection_file(app=None):get_connection_file23,532 - from yap_kernel.kernelapp import YAPKernelAppYAPKernelApp32,788 -def find_connection_file(filename='kernel-*.json', profile=None):find_connection_file40,1075 - import warningswarnings58,1671 - from IPython.core.application import BaseIPythonApplication as IPAppIPApp61,1845 -def _find_connection_file(connection_file, profile=None):_find_connection_file84,2701 -def get_connection_info(connection_file=None, unpack=False, profile=None):get_connection_info106,3586 -def connect_qtconsole(connection_file=None, argv=None, profile=None):connect_qtconsole140,4673 -__all__ = [__all__177,5855 - -packages/python/yap_kernel/yap_kernel/datapub.py,1102 -import warningswarnings4,55 -from traitlets.config import ConfigurableConfigurable10,281 -from traitlets import Instance, Dict, CBytes, AnyInstance11,323 -from traitlets import Instance, Dict, CBytes, AnyDict11,323 -from traitlets import Instance, Dict, CBytes, AnyCBytes11,323 -from traitlets import Instance, Dict, CBytes, AnyAny11,323 -from yap_kernel.jsonutil import json_cleanjson_clean12,373 -from yap_kernel.serialize import serialize_objectserialize_object13,416 -from jupyter_client.session import Session, extract_headerSession14,466 -from jupyter_client.session import Session, extract_headerextract_header14,466 -class ZMQDataPublisher(Configurable):ZMQDataPublisher17,527 - session = Instance(Session, allow_none=True)session20,605 - pub_socket = Any(allow_none=True)pub_socket21,654 - parent_header = Dict({})parent_header22,692 - def set_parent(self, parent):set_parent24,722 - def publish_data(self, data):publish_data28,861 -def publish_data(data):publish_data50,1516 - from yap_kernel.zmqshell import ZMQInteractiveShellZMQInteractiveShell61,1825 - -packages/python/yap_kernel/yap_kernel/displayhook.py,1452 -import syssys6,165 -from IPython.core.displayhook import DisplayHookDisplayHook8,177 -from yap_kernel.jsonutil import encode_imagesencode_images9,226 -from ipython_genutils.py3compat import builtin_modbuiltin_mod10,272 -from traitlets import Instance, Dict, AnyInstance11,323 -from traitlets import Instance, Dict, AnyDict11,323 -from traitlets import Instance, Dict, AnyAny11,323 -from jupyter_client.session import extract_header, Sessionextract_header12,365 -from jupyter_client.session import extract_header, SessionSession12,365 -class ZMQDisplayHook(object):ZMQDisplayHook15,426 - topic = b'execute_result'topic18,546 - def __init__(self, session, pub_socket):__init__20,577 - def get_execution_count(self):get_execution_count25,723 - def __call__(self, obj):__call__29,827 - def set_parent(self, parent):set_parent42,1287 -class ZMQShellDisplayHook(DisplayHook):ZMQShellDisplayHook46,1375 - topic=Nonetopic50,1610 - session = Instance(Session, allow_none=True)session52,1626 - pub_socket = Any(allow_none=True)pub_socket53,1675 - parent_header = Dict({})parent_header54,1713 - def set_parent(self, parent):set_parent56,1743 - def start_displayhook(self):start_displayhook60,1882 - def write_output_prompt(self):write_output_prompt66,2063 - def write_format_data(self, format_dict, md_dict=None):write_format_data70,2205 - def finish_displayhook(self):finish_displayhook74,2381 - -packages/python/yap_kernel/yap_kernel/embed.py,235 -import syssys7,224 -from IPython.utils.frame import extract_module_localsextract_module_locals9,236 -from .kernelapp import YAPKernelAppYAPKernelApp11,291 -def embed_kernel(module=None, local_ns=None, **kwargs):embed_kernel17,494 - -packages/python/yap_kernel/yap_kernel/eventloops.py,2427 -import osos7,180 -import syssys8,190 -import platformplatform9,201 -import zmqzmq11,218 -from distutils.version import LooseVersion as VV13,230 -from traitlets.config.application import ApplicationApplication14,278 -from IPython.utils import ioio15,331 -def _use_appnope():_use_appnope17,361 -def _notify_stream_qt(kernel, stream):_notify_stream_qt24,575 - from IPython.external.qt_for_kernel import QtCoreQtCore26,615 - from appnope import nope_scope as contextcontext29,720 - from contextlib import contextmanagercontextmanager31,780 - def context():context33,850 - def process_stream_events():process_stream_events36,892 -loop_map = {loop_map46,1263 -def register_integration(*toolkitnames):register_integration54,1377 - def decorator(func):decorator67,1990 -def _loop_qt(app):_loop_qt75,2127 -def loop_qt4(kernel):loop_qt488,2511 - from IPython.lib.guisupport import get_app_qt4get_app_qt491,2594 -def loop_qt5(kernel):loop_qt5103,2860 -def _loop_wx(app):_loop_wx109,3007 -def loop_wx(kernel):loop_wx122,3387 - import wxwx125,3462 - from appnope import nopenope130,3615 - class TimerFrame(wx.Frame):TimerFrame139,3924 - def __init__(self, func):__init__140,3956 - def on_timer(self, event):on_timer148,4255 - class IPWxApp(wx.App):IPWxApp153,4431 - def OnInit(self):OnInit154,4458 - import signalsignal166,4907 -def loop_tk(kernel):loop_tk174,5100 - from tkinter import Tk # Py 3Tk178,5180 - from tkinter import Tk # Py 3Py178,5180 - from Tkinter import Tk # Py 2Tk180,5243 - from Tkinter import Tk # Py 2Py180,5243 - class Timer(object):Timer185,5466 - def __init__(self, func):__init__186,5491 - def on_timer(self):on_timer191,5615 - def start(self):start195,5725 -def loop_gtk(kernel):loop_gtk204,5934 - from .gui.gtkembed import GTKEmbedGTKEmbed206,6021 -def loop_gtk3(kernel):loop_gtk3213,6150 - from .gui.gtk3embed import GTKEmbedGTKEmbed215,6238 -def loop_cocoa(kernel):loop_cocoa222,6367 - import matplotlibmatplotlib226,6512 - from matplotlib.backends.backend_macosx import TimerMac, showTimerMac237,6980 - from matplotlib.backends.backend_macosx import TimerMac, showshow237,6980 - def handle_int(etype, value, tb):handle_int243,7170 - def doi():doi251,7479 -def enable_gui(gui, kernel=None):enable_gui294,8962 - -packages/python/yap_kernel/yap_kernel/gui/__init__.py,0 - -packages/python/yap_kernel/yap_kernel/gui/gtk3embed.py,498 -import syssys14,605 -import gigi17,631 -from gi.repository import GObject, GtkGObject20,709 -from gi.repository import GObject, GtkGtk20,709 -class GTKEmbed(object):GTKEmbed26,932 - def __init__(self, kernel):__init__29,1027 - def start(self):start35,1232 - def _wire_kernel(self):_wire_kernel42,1477 - def iterate_kernel(self):iterate_kernel53,1903 - def stop(self):stop62,2217 - def _hijack_gtk(self):_hijack_gtk69,2480 - def dummy(*args, **kw):dummy83,2973 - -packages/python/yap_kernel/yap_kernel/gui/gtkembed.py,425 -import syssys14,605 -import gobjectgobject17,631 -import gtkgtk18,646 -class GTKEmbed(object):GTKEmbed24,841 - def __init__(self, kernel):__init__27,936 - def start(self):start33,1141 - def _wire_kernel(self):_wire_kernel40,1386 - def iterate_kernel(self):iterate_kernel51,1812 - def stop(self):stop60,2126 - def _hijack_gtk(self):_hijack_gtk67,2389 - def dummy(*args, **kw):dummy81,2882 - -packages/python/yap_kernel/yap_kernel/heartbeat.py,342 -import errnoerrno15,590 -import osos16,603 -import socketsocket17,613 -from threading import ThreadThread18,627 -import zmqzmq20,657 -from jupyter_client.localinterfaces import localhostlocalhost22,669 -class Heartbeat(Thread):Heartbeat29,890 - def __init__(self, context, addr=None):__init__32,980 - def run(self):run54,1860 - -packages/python/yap_kernel/yap_kernel/inprocess/__init__.py,230 -from .client import InProcessKernelClientInProcessKernelClient6,73 -from .manager import InProcessKernelManagerInProcessKernelManager7,115 -from .blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient8,159 - -packages/python/yap_kernel/yap_kernel/inprocess/blocking.py,1405 - from queue import Queue, Empty # Py 3Queue13,465 - from queue import Queue, Empty # Py 3Empty13,465 - from queue import Queue, Empty # Py 3Py13,465 - from Queue import Queue, Empty # Py 2Queue15,528 - from Queue import Queue, Empty # Py 2Empty15,528 - from Queue import Queue, Empty # Py 2Py15,528 -from IPython.utils.io import raw_printraw_print18,590 -from traitlets import TypeType19,629 -from .client import InProcessKernelClientInProcessKernelClient25,721 -class BlockingInProcessChannel(InProcessChannel):BlockingInProcessChannel27,764 - def __init__(self, *args, **kwds):__init__29,815 - def call_handlers(self, msg):call_handlers33,958 - def get_msg(self, block=True, timeout=None):get_msg36,1025 - def get_msgs(self):get_msgs44,1359 - def msg_ready(self):msg_ready54,1621 -class BlockingInProcessStdInChannel(BlockingInProcessChannel):BlockingInProcessStdInChannel59,1749 - def call_handlers(self, msg):call_handlers60,1812 -class BlockingInProcessKernelClient(InProcessKernelClient):BlockingInProcessKernelClient72,2237 - shell_channel_class = Type(BlockingInProcessChannel)shell_channel_class75,2349 - iopub_channel_class = Type(BlockingInProcessChannel)iopub_channel_class76,2406 - stdin_channel_class = Type(BlockingInProcessStdInChannel)stdin_channel_class77,2463 - def wait_for_ready(self):wait_for_ready79,2526 - -packages/python/yap_kernel/yap_kernel/inprocess/channels.py,1001 -from jupyter_client.channelsabc import HBChannelABCHBChannelABC6,149 -from .socket import DummySocketDummySocket8,202 -class InProcessChannel(object):InProcessChannel14,412 - proxy_methods = []proxy_methods16,490 - def __init__(self, client=None):__init__18,514 - def is_alive(self):is_alive23,661 - def start(self):start26,716 - def stop(self):stop29,768 - def call_handlers(self, msg):call_handlers32,820 - def flush(self, timeout=1.0):flush39,1103 - def call_handlers_later(self, *args, **kwds):call_handlers_later43,1152 - def process_events(self):process_events52,1532 -class InProcessHBChannel(object):InProcessHBChannel62,1775 - time_to_dead = 3.0time_to_dead70,2068 - def __init__(self, client=None):__init__72,2092 - def is_alive(self):is_alive78,2268 - def start(self):start81,2323 - def stop(self):stop84,2375 - def pause(self):pause87,2427 - def unpause(self):unpause90,2476 - def is_beating(self):is_beating93,2528 - -packages/python/yap_kernel/yap_kernel/inprocess/client.py,2071 -from yap_kernel.inprocess.socket import DummySocketDummySocket15,574 -from traitlets import Type, Instance, defaultType16,626 -from traitlets import Type, Instance, defaultInstance16,626 -from traitlets import Type, Instance, defaultdefault16,626 -from jupyter_client.clientabc import KernelClientABCKernelClientABC17,672 -from jupyter_client.client import KernelClientKernelClient18,725 -class InProcessKernelClient(KernelClient):InProcessKernelClient30,1048 - shell_channel_class = Type(InProcessChannel)shell_channel_class41,1435 - iopub_channel_class = Type(InProcessChannel)iopub_channel_class42,1484 - stdin_channel_class = Type(InProcessChannel)stdin_channel_class43,1533 - hb_channel_class = Type(InProcessHBChannel)hb_channel_class44,1582 - kernel = Instance('yap_kernel.inprocess.yapkernel.InProcessKernel',kernel46,1631 - allow_none=True)allow_none47,1703 - def _default_blocking_class(self):_default_blocking_class54,1968 - from .blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient55,2007 - def get_connection_info(self):get_connection_info58,2113 - def start_channels(self, *args, **kwargs):start_channels63,2269 - def shell_channel(self):shell_channel68,2434 - def iopub_channel(self):iopub_channel74,2618 - def stdin_channel(self):stdin_channel80,2802 - def hb_channel(self):hb_channel86,2986 - def execute(self, code, silent=False, store_history=True,execute94,3230 - def complete(self, code, cursor_pos=None):complete105,3744 - def inspect(self, code, cursor_pos=None, detail_level=0):inspect113,4052 - def history(self, raw=True, output=False, hist_access_type='range', **kwds):history123,4423 - def shutdown(self, restart=False):shutdown130,4754 - def kernel_info(self):kernel_info134,4899 - def comm_info(self, target_name=None):comm_info140,5093 - def input(self, string):input150,5467 - def is_complete(self, code):is_complete155,5649 - def _dispatch_to_kernel(self, msg):_dispatch_to_kernel160,5830 - -packages/python/yap_kernel/yap_kernel/inprocess/constants.py,49 -INPROCESS_KEY = b'inprocess'INPROCESS_KEY8,274 - -packages/python/yap_kernel/yap_kernel/inprocess/ipkernel.py,3761 -from contextlib import contextmanagercontextmanager6,130 -import logginglogging7,168 -import syssys8,183 -from IPython.core.interactiveshell import InteractiveShellABCInteractiveShellABC10,195 -from yap_kernel.jsonutil import json_cleanjson_clean11,257 -from traitlets import Any, Enum, Instance, List, Type, defaultAny12,300 -from traitlets import Any, Enum, Instance, List, Type, defaultEnum12,300 -from traitlets import Any, Enum, Instance, List, Type, defaultInstance12,300 -from traitlets import Any, Enum, Instance, List, Type, defaultList12,300 -from traitlets import Any, Enum, Instance, List, Type, defaultType12,300 -from traitlets import Any, Enum, Instance, List, Type, defaultdefault12,300 -from yap_kernel.yapkernel import YAPKernelYAPKernel13,363 -from yap_kernel.zmqshell import ZMQInteractiveShellZMQInteractiveShell14,406 -from .constants import INPROCESS_KEYINPROCESS_KEY16,459 -from .socket import DummySocketDummySocket17,496 -from ..iostream import OutStream, BackgroundSocket, IOPubThreadOutStream18,528 -from ..iostream import OutStream, BackgroundSocket, IOPubThreadBackgroundSocket18,528 -from ..iostream import OutStream, BackgroundSocket, IOPubThreadIOPubThread18,528 -class InProcessKernel(YAPKernel):InProcessKernel24,772 - frontends = List(frontends31,1044 - allow_none=True)allow_none33,1136 - gui = Enum(('tk', 'gtk', 'wx', 'qt', 'qt4', 'inline'),gui40,1451 - default_value='inline')default_value41,1510 - raw_input_str = Any()raw_input_str43,1550 - stdout = Any()stdout44,1576 - stderr = Any()stderr45,1595 - shell_class = Type(allow_none=True)shell_class51,1797 - shell_streams = List()shell_streams52,1837 - control_stream = Any()control_stream53,1864 - _underlying_iopub_socket = Instance(DummySocket, ())_underlying_iopub_socket54,1891 - iopub_thread = Instance(IOPubThread)iopub_thread55,1948 - def _default_iopub_thread(self):_default_iopub_thread58,2019 - iopub_socket = Instance(BackgroundSocket)iopub_socket63,2162 - def _default_iopub_socket(self):_default_iopub_socket66,2238 - stdin_socket = Instance(DummySocket, ())stdin_socket69,2327 - def __init__(self, **traits):__init__71,2373 - def execute_request(self, stream, ident, parent):execute_request89,3141 - def start(self):start94,3367 - def _abort_queue(self, stream):_abort_queue98,3491 - def _input_request(self, prompt, ident, parent, password=False):_input_request102,3603 - def _redirected_io(self):_redirected_io129,4643 - def _io_dispatch(self, change):_io_dispatch139,5001 - def _default_log(self):_default_log149,5374 - def _default_session(self):_default_session153,5470 - from jupyter_client.session import SessionSession154,5502 - def _default_shell_class(self):_default_shell_class158,5637 - def _default_stdout(self):_default_stdout162,5738 - def _default_stderr(self):_default_stderr166,5862 -class InProcessInteractiveShell(ZMQInteractiveShell):InProcessInteractiveShell173,6151 - kernel = Instance('yap_kernel.inprocess.yapkernel.InProcessKernel',kernel175,6206 - allow_none=True)allow_none176,6278 - def enable_gui(self, gui=None):enable_gui182,6510 - from yap_kernel.eventloops import enable_guienable_gui184,6599 - def enable_matplotlib(self, gui=None):enable_matplotlib191,6788 - def enable_pylab(self, gui=None, import_all=True, welcome_message=False):enable_pylab197,7023 - def closeq(self):closeq205,7367 - def run_cell(self, s, store_history=True, silent=False, shell_futures=True):run_cell210,7462 - def numbervars(self, l):numbervars236,8664 - def error_before_exec(value):error_before_exec248,8990 - -packages/python/yap_kernel/yap_kernel/inprocess/manager.py,1615 -from traitlets import Instance, DottedObjectName, defaultInstance6,150 -from traitlets import Instance, DottedObjectName, defaultDottedObjectName6,150 -from traitlets import Instance, DottedObjectName, defaultdefault6,150 -from jupyter_client.managerabc import KernelManagerABCKernelManagerABC7,208 -from jupyter_client.manager import KernelManagerKernelManager8,263 -from jupyter_client.session import SessionSession9,312 -from .constants import INPROCESS_KEYINPROCESS_KEY11,356 -class InProcessKernelManager(KernelManager):InProcessKernelManager14,395 - kernel = Instance('yap_kernel.inprocess.yapkernel.InProcessKernel',kernel25,822 - allow_none=True)allow_none26,894 - client_class = DottedObjectName('yap_kernel.inprocess.BlockingInProcessKernelClient')client_class28,981 - def _default_blocking_class(self):_default_blocking_class31,1103 - from .blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient32,1142 - def _default_session(self):_default_session36,1272 - def start_kernel(self, **kwds):start_kernel44,1594 - from yap_kernel.inprocess.yapkernel import InProcessKernelInProcessKernel45,1630 - def shutdown_kernel(self):shutdown_kernel48,1771 - def restart_kernel(self, now=False, **kwds):restart_kernel52,1871 - def has_kernel(self):has_kernel57,2000 - def _kill_kernel(self):_kill_kernel60,2066 - def interrupt_kernel(self):interrupt_kernel63,2122 - def signal_kernel(self, signum):signal_kernel66,2228 - def is_alive(self):is_alive69,2336 - def client(self, **kwargs):client72,2400 - -packages/python/yap_kernel/yap_kernel/inprocess/socket.py,1281 -import abcabc6,183 -import warningswarnings7,194 - from queue import Queue # Py 3Queue9,215 - from queue import Queue # Py 3Py9,215 - from Queue import Queue # Py 2Queue11,271 - from Queue import Queue # Py 2Py11,271 -import zmqzmq13,308 -from traitlets import HasTraits, Instance, IntHasTraits15,320 -from traitlets import HasTraits, Instance, IntInstance15,320 -from traitlets import HasTraits, Instance, IntInt15,320 -from ipython_genutils.py3compat import with_metaclasswith_metaclass16,367 -class SocketABC(with_metaclass(abc.ABCMeta, object)):SocketABC22,608 - def recv_multipart(self, flags=0, copy=True, track=False):recv_multipart25,691 - def send_multipart(self, msg_parts, flags=0, copy=True, track=False):send_multipart29,813 - def register(cls, other_cls):register33,943 -class DummySocket(HasTraits):DummySocket43,1383 - queue = Instance(Queue, ())queue46,1490 - message_sent = Int(0) # Should be an Eventmessage_sent47,1522 - context = Instance(zmq.Context)context48,1569 - def _context_default(self):_context_default49,1605 - def recv_multipart(self, flags=0, copy=True, track=False):recv_multipart56,1858 - def send_multipart(self, msg_parts, flags=0, copy=True, track=False):send_multipart59,1961 - -packages/python/yap_kernel/yap_kernel/inprocess/tests/__init__.py,0 - -packages/python/yap_kernel/yap_kernel/inprocess/tests/test_kernel.py,1092 -from __future__ import print_functionprint_function4,102 -import syssys6,141 -import unittestunittest7,152 -from ipykernel.inprocess.blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient9,169 -from ipykernel.inprocess.manager import InProcessKernelManagerInProcessKernelManager10,240 -from ipykernel.inprocess.ipkernel import InProcessKernelInProcessKernel11,303 -from ipykernel.tests.utils import assemble_outputassemble_output12,360 -from IPython.testing.decorators import skipif_not_matplotlibskipif_not_matplotlib13,410 -from IPython.utils.io import capture_outputcapture_output14,471 -from ipython_genutils import py3compatpy3compat15,515 - from io import StringIOStringIO18,573 - from StringIO import StringIOStringIO20,607 -class InProcessKernelTestCase(unittest.TestCase):InProcessKernelTestCase23,643 - def setUp(self):setUp25,694 - def test_pylab(self):test_pylab33,918 - def test_raw_input(self):test_raw_input40,1146 - def test_stdout(self):test_stdout55,1627 - def test_getpass_stream(self):test_getpass_stream70,2142 - -packages/python/yap_kernel/yap_kernel/inprocess/tests/test_kernelmanager.py,708 -from __future__ import print_functionprint_function4,102 -import unittestunittest6,141 -from ipykernel.inprocess.blocking import BlockingInProcessKernelClientBlockingInProcessKernelClient8,158 -from ipykernel.inprocess.manager import InProcessKernelManagerInProcessKernelManager9,229 -class InProcessKernelManagerTestCase(unittest.TestCase):InProcessKernelManagerTestCase15,464 - def setUp(self):setUp17,522 - def tearDown(self):tearDown20,587 - def test_interface(self):test_interface24,681 - def test_execute(self):test_execute54,1549 - def test_complete(self):test_complete65,1871 - def test_inspect(self):test_inspect80,2412 - def test_history(self):test_history97,2976 - -packages/python/yap_kernel/yap_kernel/interactiveshell.py,6118 -from __future__ import absolute_import, print_functionabsolute_import13,539 -from __future__ import absolute_import, print_functionprint_function13,539 -import __future____future__15,595 -import abcabc16,613 -import astast17,624 -import atexitatexit18,635 -import functoolsfunctools19,649 -import osos20,666 -import rere21,676 -import runpyrunpy22,686 -import signalsignal23,699 -import syssys25,714 -import tempfiletempfile26,725 -import tracebacktraceback27,741 -import typestypes28,758 -import subprocesssubprocess29,771 -import warningswarnings30,789 -import yap4py.yapiyap4py31,805 -import yap4py.yapiyapi31,805 -import yapyap32,824 -from io import open as io_openio_open33,835 -from pickleshare import PickleShareDBPickleShareDB35,867 -from traitlets.config.configurable import SingletonConfigurableSingletonConfigurable37,906 -from IPython.core import oinspectoinspect38,970 -from IPython.core import magicmagic39,1004 -from IPython.core import pagepage40,1035 -from IPython.core import prefilterprefilter41,1065 -from IPython.core import shadownsshadowns42,1100 -from IPython.core import ultratbultratb43,1134 -from IPython.core import interactiveshellinteractiveshell44,1167 -from IPython.core.alias import Alias, AliasManagerAlias45,1209 -from IPython.core.alias import Alias, AliasManagerAliasManager45,1209 -from IPython.core.autocall import ExitAutocallExitAutocall46,1260 -from IPython.core.builtin_trap import BuiltinTrapBuiltinTrap47,1307 -from IPython.core.events import EventManager, available_eventsEventManager48,1357 -from IPython.core.events import EventManager, available_eventsavailable_events48,1357 -from IPython.core.compilerop import CachingCompiler, check_linecache_ipythonCachingCompiler49,1420 -from IPython.core.compilerop import CachingCompiler, check_linecache_ipythoncheck_linecache_ipython49,1420 -from IPython.core.debugger import PdbPdb50,1497 -from IPython.core.display_trap import DisplayTrapDisplayTrap51,1535 -from IPython.core.displayhook import DisplayHookDisplayHook52,1585 -from IPython.core.displaypub import DisplayPublisherDisplayPublisher53,1634 -from IPython.core.error import InputRejected, UsageErrorInputRejected54,1687 -from IPython.core.error import InputRejected, UsageErrorUsageError54,1687 -from IPython.core.extensions import ExtensionManagerExtensionManager55,1744 -from IPython.core.formatters import DisplayFormatterDisplayFormatter56,1797 -from IPython.core.history import HistoryManagerHistoryManager57,1850 -from IPython.core.inputsplitter import ESC_MAGIC, ESC_MAGIC2ESC_MAGIC58,1898 -from IPython.core.inputsplitter import ESC_MAGIC, ESC_MAGIC2ESC_MAGIC258,1898 -from IPython.core.logger import LoggerLogger59,1959 -from IPython.core.macro import MacroMacro60,1998 -from IPython.core.payload import PayloadManagerPayloadManager61,2035 -from IPython.core.prefilter import PrefilterManagerPrefilterManager62,2083 -from IPython.core.profiledir import ProfileDirProfileDir63,2135 -from IPython.core.usage import default_bannerdefault_banner64,2182 -from IPython.core.interactiveshell import InteractiveShellABC, InteractiveShell, ExecutionResultInteractiveShellABC65,2228 -from IPython.core.interactiveshell import InteractiveShellABC, InteractiveShell, ExecutionResultInteractiveShell65,2228 -from IPython.core.interactiveshell import InteractiveShellABC, InteractiveShell, ExecutionResultExecutionResult65,2228 -from IPython.testing.skipdoctest import skip_doctestskip_doctest66,2325 -from IPython.utils import PyColorizePyColorize67,2378 -from IPython.utils import ioio68,2415 -from IPython.utils import py3compatpy3compat69,2444 -from IPython.utils import openpyopenpy70,2480 -from IPython.utils.decorators import undocundoc71,2513 -from IPython.utils.io import ask_yes_noask_yes_no72,2556 -from IPython.utils.ipstruct import StructStruct73,2596 -from IPython.paths import get_ipython_dirget_ipython_dir74,2638 -from IPython.utils.path import get_home_dir, get_py_filename, ensure_dir_existsget_home_dir75,2680 -from IPython.utils.path import get_home_dir, get_py_filename, ensure_dir_existsget_py_filename75,2680 -from IPython.utils.path import get_home_dir, get_py_filename, ensure_dir_existsensure_dir_exists75,2680 -from IPython.utils.process import system, getoutputsystem76,2760 -from IPython.utils.process import system, getoutputgetoutput76,2760 -from IPython.utils.py3compat import (builtin_mod, unicode_type, string_types,builtin_mod77,2812 -from IPython.utils.py3compat import (builtin_mod, unicode_type, string_types,unicode_type77,2812 -from IPython.utils.py3compat import (builtin_mod, unicode_type, string_types,string_types77,2812 -from IPython.utils.strdispatch import StrDispatchStrDispatch79,2954 -from IPython.utils.syspathcontext import prepended_to_syspathprepended_to_syspath80,3004 -from IPython.utils.text import format_screen, LSString, SList, DollarFormatterformat_screen81,3066 -from IPython.utils.text import format_screen, LSString, SList, DollarFormatterLSString81,3066 -from IPython.utils.text import format_screen, LSString, SList, DollarFormatterSList81,3066 -from IPython.utils.text import format_screen, LSString, SList, DollarFormatterDollarFormatter81,3066 -from IPython.utils.tempdir import TemporaryDirectoryTemporaryDirectory82,3145 -from warnings import warnwarn87,3325 -from logging import errorerror88,3351 -from collections import namedtuplenamedtuple89,3377 -use_module = namedtuple('use_module', 'file')use_module91,3413 -bindvars = namedtuple('bindvars', 'list')bindvars92,3459 -library = namedtuple('library', 'list')library93,3501 -v = namedtuple('_', 'slot')v94,3541 -load_files = namedtuple('load_files', 'file ofile args')load_files95,3569 -class YAPInteraction:YAPInteraction98,3628 - def __init__(self, shell, **kwargs):__init__101,3701 - def eng(self):eng121,4425 - def closeq(self):closeq124,4472 - def numbervars(self, l):numbervars129,4567 - def run_cell(self, s, store_history=True, silent=False,run_cell134,4643 - def error_before_exec(value):error_before_exec166,6017 - -packages/python/yap_kernel/yap_kernel/iostream.py,3037 -from __future__ import print_functionprint_function7,172 -import atexitatexit8,210 -from binascii import b2a_hexb2a_hex9,224 -import osos10,253 -import syssys11,263 -import threadingthreading12,274 -import warningswarnings13,291 -from io import StringIO, UnsupportedOperation, TextIOBaseStringIO14,307 -from io import StringIO, UnsupportedOperation, TextIOBaseUnsupportedOperation14,307 -from io import StringIO, UnsupportedOperation, TextIOBaseTextIOBase14,307 -import zmqzmq16,366 -from zmq.eventloop.ioloop import IOLoopIOLoop17,377 -from zmq.eventloop.zmqstream import ZMQStreamZMQStream18,417 -from jupyter_client.session import extract_headerextract_header20,464 -from ipython_genutils import py3compatpy3compat22,515 -from ipython_genutils.py3compat import unicode_typeunicode_type23,554 -MASTER = 0MASTER29,776 -CHILD = 1CHILD30,787 -class IOPubThread(object):IOPubThread36,970 - def __init__(self, socket, pipe=False):__init__45,1265 - def _thread_main(self):_thread_main70,2037 - def _setup_event_pipe(self):_setup_event_pipe75,2197 - def _event_pipe(self):_event_pipe88,2704 - def _handle_event(self, msg):_handle_event101,3209 - def _setup_pipe_in(self):_setup_pipe_in107,3385 - def _handle_pipe_msg(self, msg):_handle_pipe_msg129,4149 - def _setup_pipe_out(self):_setup_pipe_out138,4487 - def _is_master_process(self):_is_master_process146,4815 - def _check_mp_mode(self):_check_mp_mode149,4897 - def start(self):start156,5129 - def stop(self):stop163,5401 - def close(self):close172,5690 - def closed(self):closed177,5781 - def schedule(self, f):schedule180,5839 - def send_multipart(self, *args, **kwargs):send_multipart194,6270 - def _really_send(self, msg, *args, **kwargs):_really_send201,6552 -class BackgroundSocket(object):BackgroundSocket218,7223 - io_thread = Noneio_thread220,7328 - def __init__(self, io_thread):__init__222,7354 - def __getattr__(self, attr):__getattr__225,7429 - def __setattr__(self, attr, value):__setattr__236,7990 - def send(self, msg, *args, **kwargs):send244,8393 - def send_multipart(self, *args, **kwargs):send_multipart247,8495 -class OutStream(TextIOBase):OutStream252,8647 - flush_interval = 0.2flush_interval259,8867 - topic = Nonetopic260,8892 - encoding = 'UTF-8'encoding261,8909 - def __init__(self, session, pub_thread, name, pipe=None):__init__263,8933 - def _is_master_process(self):_is_master_process284,9901 - def set_parent(self, parent):set_parent287,9983 - def close(self):close290,10070 - def closed(self):closed294,10137 - def _schedule_flush(self):_schedule_flush297,10199 - def _schedule_in_thread():_schedule_in_thread307,10528 - def flush(self):flush311,10689 - def _flush(self):_flush325,11116 - def write(self, string):write342,11834 - def writelines(self, sequence):writelines362,12655 - def _flush_buffer(self):_flush_buffer369,12874 - def _new_buffer(self):_new_buffer382,13246 - -packages/python/yap_kernel/yap_kernel/jsonutil.py,1073 -import mathmath6,147 -import rere7,159 -import typestypes8,169 -from datetime import datetimedatetime9,182 -import numbersnumbers10,212 - from base64 import encodebytesencodebytes14,287 - from base64 import encodestring as encodebytesencodebytes17,359 -from ipython_genutils import py3compatpy3compat19,411 -from ipython_genutils.py3compat import unicode_type, iteritemsunicode_type20,450 -from ipython_genutils.py3compat import unicode_type, iteritemsiteritems20,450 -from ipython_genutils.encoding import DEFAULT_ENCODINGDEFAULT_ENCODING21,513 -next_attr_name = '__next__' if py3compat.PY3 else 'next'next_attr_name22,568 -ISO8601 = "%Y-%m-%dT%H:%M:%S.%f"ISO860129,829 -ISO8601_PAT=re.compile(r"^(\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2})(\.\d{1,6})?Z?([\+\-]\d{2}:?\d{2})?$")ISO8601_PAT30,862 -PNG = b'\x89PNG\r\n\x1a\n'PNG42,1305 -PNG64 = b'iVBORw0KG'PNG6444,1362 -JPEG = b'\xff\xd8'JPEG45,1383 -JPEG64 = b'/9'JPEG6447,1433 -PDF64 = b'JVBER'PDF6449,1478 -def encode_images(format_dict):encode_images51,1496 -def json_clean(obj):json_clean97,2816 - -packages/python/yap_kernel/yap_kernel/kernelapp.py,4616 -from __future__ import print_functionprint_function6,147 -import atexitatexit8,186 -import osos9,200 -import syssys10,210 -import signalsignal11,221 -import tracebacktraceback12,235 -import logginglogging13,252 -from tornado import ioloopioloop15,268 -import zmqzmq16,295 -from zmq.eventloop import ioloop as zmq_ioloopzmq_ioloop17,306 -from zmq.eventloop.zmqstream import ZMQStreamZMQStream18,353 -from IPython.core.profiledir import ProfileDirProfileDir23,514 -from IPython.utils import ioio27,651 -from ipython_genutils.path import filefind, ensure_dir_existsfilefind28,680 -from ipython_genutils.path import filefind, ensure_dir_existsensure_dir_exists28,680 -from jupyter_core.paths import jupyter_runtime_dirjupyter_runtime_dir33,903 -from jupyter_client import write_connection_filewrite_connection_file34,954 -from jupyter_client.connect import ConnectionFileMixinConnectionFileMixin35,1003 -from .iostream import IOPubThreadIOPubThread38,1075 -from .heartbeat import HeartbeatHeartbeat39,1109 -from .yapkernel import YAPKernelYAPKernel40,1142 -from .parentpoller import ParentPollerUnix, ParentPollerWindowsParentPollerUnix41,1175 -from .parentpoller import ParentPollerUnix, ParentPollerWindowsParentPollerWindows41,1175 -from .zmqshell import ZMQInteractiveShellZMQInteractiveShell45,1323 -kernel_aliases = dict(base_aliases)kernel_aliases51,1545 -kernel_flags = dict(base_flags)kernel_flags63,1927 - ConnectionFileMixin):YAPKernelApp100,3235 - name='YAP Kernel'name101,3265 - aliases = Dict(kernel_aliases)aliases102,3287 - flags = Dict(kernel_flags)flags103,3322 - classes = [YAPKernel, ZMQInteractiveShell, ProfileDir, Session]classes104,3353 - kernel_class = Type('yap_kernel.yapkernel.YAPKernel',kernel_class106,3464 - klass='yap_kernel.yapkernel.YAPKernel',klass107,3522 - kernel = Any()kernel113,3785 - poller = Any() # don't restrict this even though current pollers are all Threadspoller114,3804 - heartbeat = Instance(Heartbeat, allow_none=True)heartbeat115,3889 - ports = Dict()ports116,3942 - subcommands = {subcommands118,3962 - connection_dir = Unicode()connection_dir126,4142 - def _default_connection_dir(self):_default_connection_dir129,4205 - def abs_connection_file(self):abs_connection_file133,4296 - no_stdout = Bool(False, help="redirect stdout to the null device").tag(config=True)no_stdout140,4556 - no_stderr = Bool(False, help="redirect stderr to the null device").tag(config=True)no_stderr141,4644 - outstream_class = DottedObjectName('yap_kernel.iostream.OutStream',outstream_class142,4732 - displayhook_class = DottedObjectName('yap_kernel.displayhook.ZMQDisplayHook',displayhook_class144,4880 - parent_handle = Integer(int(os.environ.get('JPY_PARENT_PID') or 0),parent_handle148,5055 - interrupt = Integer(int(os.environ.get('JPY_INTERRUPT_EVENT') or 0),interrupt152,5321 - def init_crash_handler(self):init_crash_handler157,5522 - def excepthook(self, etype, evalue, tb):excepthook160,5598 - def init_poller(self):init_poller164,5789 - def _bind_socket(self, s, port):_bind_socket174,6264 - def write_connection_file(self):write_connection_file193,6940 - def cleanup_connection_file(self):cleanup_connection_file201,7371 - def init_connection_file(self):init_connection_file211,7636 - def init_sockets(self):init_sockets229,8463 - def init_iopub(self, context):init_iopub253,9565 - def init_heartbeat(self):init_heartbeat264,10125 - def log_connection_info(self):log_connection_info274,10613 - def init_blackhole(self):init_blackhole304,11856 - def init_io(self):init_io313,12214 - def patch_io(self):patch_io326,12843 - import faulthandlerfaulthandler329,12960 - def enable(file=sys.__stderr__, all_threads=True, **kwargs):enable339,13448 - def register(signum, file=sys.__stderr__, all_threads=True, chain=False, **kwargs):register346,13765 - def init_signal(self):init_signal351,14080 - def init_kernel(self):init_kernel354,14161 - def init_gui_pylab(self):init_gui_pylab378,15184 - def print_tb(etype, evalue, stb):print_tb398,16125 - def init_shell(self):init_shell407,16523 - def init_extensions(self):init_extensions412,16680 - def configure_tornado_logger(self):configure_tornado_logger424,17220 - def initialize(self, argv=None):initialize439,17849 - def start(self):start470,19020 -launch_new_instance = YAPKernelApp.launch_instancelaunch_new_instance481,19322 -def main():main483,19374 - -packages/python/yap_kernel/yap_kernel/kernelbase.py,6133 -from __future__ import print_functionprint_function6,167 -import syssys8,206 -import timetime9,217 -import logginglogging10,229 -import uuiduuid11,244 -from datetime import datetimedatetime13,257 - from jupyter_client.session import utcnow as nownow16,336 - now = datetime.nownow19,451 -from signal import signal, default_int_handler, SIGINTsignal21,475 -from signal import signal, default_int_handler, SIGINTdefault_int_handler21,475 -from signal import signal, default_int_handler, SIGINTSIGINT21,475 -import zmqzmq23,531 -from tornado import ioloopioloop24,542 -from zmq.eventloop.zmqstream import ZMQStreamZMQStream25,569 -from traitlets.config.configurable import SingletonConfigurableSingletonConfigurable27,616 -from IPython.core.error import StdinNotImplementedErrorStdinNotImplementedError28,680 -from ipython_genutils import py3compatpy3compat29,736 -from ipython_genutils.py3compat import unicode_type, string_typesunicode_type30,775 -from ipython_genutils.py3compat import unicode_type, string_typesstring_types30,775 -from yap_kernel.jsonutil import json_cleanjson_clean31,841 -from jupyter_client.session import SessionSession36,995 -from ._version import kernel_protocol_versionkernel_protocol_version38,1039 -class Kernel(SingletonConfigurable):Kernel40,1086 - eventloop = Any(None)eventloop47,1349 - def _update_eventloop(self, change):_update_eventloop50,1402 - session = Instance(Session, allow_none=True)session55,1585 - profile_dir = Instance('IPython.core.profiledir.ProfileDir', allow_none=True)profile_dir56,1634 - shell_streams = List()shell_streams57,1716 - control_stream = Instance(ZMQStream, allow_none=True)control_stream58,1743 - iopub_socket = Any()iopub_socket59,1801 - iopub_thread = Any()iopub_thread60,1826 - stdin_socket = Any()stdin_socket61,1851 - log = Instance(logging.Logger, allow_none=True)log62,1876 - int_id = Integer(-1)int_id65,1947 - ident = Unicode()ident66,1972 - def _default_ident(self):_default_ident69,2017 - language_info = {}language_info74,2181 - help_links = List()help_links77,2253 - _darwin_app_nap = Bool(True,_darwin_app_nap81,2303 - _allow_stdin = Bool(False)_allow_stdin89,2529 - _parent_header = Dict()_parent_header90,2560 - _parent_ident = Any(b'')_parent_ident91,2588 - _execute_sleep = Float(0.0005).tag(config=True)_execute_sleep99,3084 - _poll_interval = Float(0.05).tag(config=True)_poll_interval104,3285 - _shutdown_message = None_shutdown_message111,3669 - _recorded_ports = Dict()_recorded_ports115,3829 - aborted = Set()aborted118,3888 - execution_count = 0execution_count122,4029 - msg_types = [msg_types124,4054 - control_msg_types = msg_types + ['clear_request', 'abort_request']control_msg_types134,4398 - def __init__(self, **kwargs):__init__136,4470 - def dispatch_control(self, msg):dispatch_control149,4900 - def should_handle(self, stream, msg, idents):should_handle180,5939 - def dispatch_shell(self, stream, msg):dispatch_shell199,6743 - def pre_handler_hook(self):pre_handler_hook246,8417 - def post_handler_hook(self):post_handler_hook251,8640 - def enter_eventloop(self):enter_eventloop255,8784 - def start(self):start277,9653 - def make_dispatcher(stream):make_dispatcher282,9829 - def dispatcher(msg):dispatcher283,9866 - def do_one_iteration(self):do_one_iteration293,10150 - def record_ports(self, ports):record_ports302,10469 - def _publish_execute_input(self, code, parent, execution_count):_publish_execute_input314,10953 - def _publish_status(self, status, parent=None):_publish_status322,11316 - def set_parent(self, ident, parent):set_parent331,11701 - def send_response(self, stream, msg_or_type, content=None, ident=None,send_response343,12098 - def init_metadata(self, parent):init_metadata356,12693 - def finish_metadata(self, parent, metadata, reply_content):finish_metadata367,12971 - def execute_request(self, stream, ident, parent):execute_request374,13163 - def do_execute(self, code, silent, store_history=True,do_execute424,15122 - def complete_request(self, stream, ident, parent):complete_request430,15354 - def do_complete(self, code, cursor_pos):do_complete441,15793 - def inspect_request(self, stream, ident, parent):inspect_request450,16092 - def do_inspect(self, code, cursor_pos, detail_level=0):do_inspect461,16609 - def history_request(self, stream, ident, parent):history_request466,16816 - def do_history(self, hist_access_type, output, raw, session=None, start=None,do_history476,17163 - def connect_request(self, stream, ident, parent):connect_request482,17425 - def kernel_info(self):kernel_info493,17808 - def kernel_info_request(self, stream, ident, parent):kernel_info_request503,18165 - def comm_info_request(self, stream, ident, parent):comm_info_request510,18451 - def shutdown_request(self, stream, ident, parent):shutdown_request528,19154 - def do_shutdown(self, restart):do_shutdown541,19740 - def is_complete_request(self, stream, ident, parent):is_complete_request547,19937 - def do_is_complete(self, code):do_is_complete557,20344 - def apply_request(self, stream, ident, parent):apply_request567,20701 - def do_apply(self, content, bufs, msg_id, reply_metadata):do_apply590,21496 - def abort_request(self, stream, ident, parent):abort_request598,21818 - def clear_request(self, stream, idents, parent):clear_request614,22475 - def do_clear(self):do_clear621,22816 - def _topic(self, topic):_topic629,23089 - def _abort_queues(self):_abort_queues635,23269 - def _abort_queue(self, stream):_abort_queue640,23406 - def _no_raw_input(self):_no_raw_input665,24432 - def getpass(self, prompt='', stream=None):getpass671,24703 - import warningswarnings683,25118 - def raw_input(self, prompt=''):raw_input692,25454 - def _input_request(self, prompt, ident, parent, password=False):_input_request709,25983 - def _at_shutdown(self):_at_shutdown749,27384 - -packages/python/yap_kernel/yap_kernel/kernelspec.py,1158 -from __future__ import print_functionprint_function6,145 -import errnoerrno8,184 -import jsonjson9,197 -import osos10,209 -import shutilshutil11,219 -import syssys12,233 -import tempfiletempfile13,244 -from jupyter_client.kernelspec import KernelSpecManagerKernelSpecManager15,261 -pjoin = os.path.joinpjoin17,318 -KERNEL_NAME = 'YAPKernel'KERNEL_NAME19,340 -RESOURCES = pjoin(os.path.dirname(__file__), 'resources')RESOURCES22,398 -def make_yap_kernel_cmd(mod='yap_kernel', executable=None, extra_arguments=None, **kw):make_yap_kernel_cmd25,458 -def get_kernel_dict(extra_arguments=None):get_kernel_dict53,1292 -def write_kernel_spec(path=None, overrides=None, extra_arguments=None):write_kernel_spec62,1531 -def install(kernel_spec_manager=None, user=False, kernel_name=KERNEL_NAME, display_name=None,install86,2260 -from traitlets.config import ApplicationApplication140,4274 -class InstallYAPKernelSpecApp(Application):InstallYAPKernelSpecApp143,4317 - name = 'ipython-kernel-install'name145,4399 - def initialize(self, argv=None):initialize147,4436 - def start(self):start152,4556 - import argparseargparse153,4577 - -packages/python/yap_kernel/yap_kernel/log.py,592 -from logging import INFO, DEBUG, WARN, ERROR, FATALINFO1,0 -from logging import INFO, DEBUG, WARN, ERROR, FATALDEBUG1,0 -from logging import INFO, DEBUG, WARN, ERROR, FATALWARN1,0 -from logging import INFO, DEBUG, WARN, ERROR, FATALERROR1,0 -from logging import INFO, DEBUG, WARN, ERROR, FATALFATAL1,0 -from zmq.log.handlers import PUBHandlerPUBHandler3,53 -import warningswarnings5,94 -class EnginePUBHandler(PUBHandler):EnginePUBHandler8,217 - engine=Noneengine10,313 - def __init__(self, engine, *args, **kwargs):__init__12,330 - def root_topic(self):root_topic17,473 - -packages/python/yap_kernel/yap_kernel/parentpoller.py,1203 - import ctypesctypes5,107 - ctypes = Nonectypes7,133 -import osos8,151 -import platformplatform9,161 -import signalsignal10,177 -import timetime11,191 - from _thread import interrupt_main # Py 3interrupt_main13,208 - from _thread import interrupt_main # Py 3Py13,208 - from thread import interrupt_main # Py 2interrupt_main15,275 - from thread import interrupt_main # Py 2Py15,275 -from threading import ThreadThread16,321 -from traitlets.log import get_loggerget_logger18,351 -import warningswarnings20,389 -class ParentPollerUnix(Thread):ParentPollerUnix22,406 - def __init__(self):__init__27,571 - def run(self):run31,672 - from errno import EINTREINTR33,769 -class ParentPollerWindows(Thread):ParentPollerWindows46,1153 - def __init__(self, interrupt_handle=None, parent_handle=None):__init__52,1399 - def run(self):run74,2244 - from _winapi import WAIT_OBJECT_0, INFINITEWAIT_OBJECT_078,2346 - from _winapi import WAIT_OBJECT_0, INFINITEINFINITE78,2346 - from _subprocess import WAIT_OBJECT_0, INFINITEWAIT_OBJECT_080,2430 - from _subprocess import WAIT_OBJECT_0, INFINITEINFINITE80,2430 - -packages/python/yap_kernel/yap_kernel/pickleutil.py,4004 -import warningswarnings7,190 -import copycopy10,310 -import syssys11,322 -from types import FunctionTypeFunctionType12,333 - import cPickle as picklepickle15,370 - import picklepickle17,419 -from ipython_genutils import py3compatpy3compat19,438 -from ipython_genutils.py3compat import string_types, iteritems, buffer_to_bytes, buffer_to_bytes_py2string_types21,531 -from ipython_genutils.py3compat import string_types, iteritems, buffer_to_bytes, buffer_to_bytes_py2iteritems21,531 -from ipython_genutils.py3compat import string_types, iteritems, buffer_to_bytes, buffer_to_bytes_py2buffer_to_bytes21,531 -from ipython_genutils.py3compat import string_types, iteritems, buffer_to_bytes, buffer_to_bytes_py2buffer_to_bytes_py221,531 - from ipyparallel.serialize import codeutilcodeutil26,721 - from yap_kernel import codeutilcodeutil29,828 -from traitlets.log import get_loggerget_logger31,865 - buffer = memoryviewbuffer34,921 - class_type = typeclass_type35,945 - from types import ClassTypeClassType37,973 - class_type = (type, ClassType)class_type38,1005 - PICKLE_PROTOCOL = pickle.DEFAULT_PROTOCOLPICKLE_PROTOCOL41,1046 - PICKLE_PROTOCOL = pickle.HIGHEST_PROTOCOLPICKLE_PROTOCOL43,1115 -def _get_cell_type(a=None):_get_cell_type45,1162 - def inner():inner49,1286 -cell_type = _get_cell_type()cell_type53,1370 -def interactive(f):interactive60,1576 -def use_dill():use_dill78,2199 - import dilldill84,2386 - from yap_kernel import serializeserialize93,2552 -def use_cloudpickle():use_cloudpickle102,2780 - import cloudpicklecloudpickle107,2938 - from yap_kernel import serializeserialize113,3019 -class CannedObject(object):CannedObject128,3436 - def __init__(self, obj, keys=[], hook=None):__init__129,3464 - def get_object(self, g=None):get_object154,4241 -class Reference(CannedObject):Reference167,4563 - def __init__(self, name):__init__169,4652 - def __repr__(self):__repr__175,4834 - def get_object(self, g=None):get_object178,4902 -class CannedCell(CannedObject):CannedCell185,5022 - def __init__(self, cell):__init__187,5083 - def get_object(self, g=None):get_object190,5171 - def inner():inner192,5258 -class CannedFunction(CannedObject):CannedFunction197,5361 - def __init__(self, f):__init__199,5398 - def _check_type(self, obj):_check_type217,5927 - def get_object(self, g=None):get_object220,6028 -class CannedClass(CannedObject):CannedClass239,6663 - def __init__(self, cls):__init__241,6697 - def _check_type(self, obj):_check_type257,7188 - def get_object(self, g=None):get_object260,7284 -class CannedArray(CannedObject):CannedArray264,7454 - def __init__(self, obj):__init__265,7487 - from numpy import ascontiguousarrayascontiguousarray266,7516 - def get_object(self, g=None):get_object285,8268 - from numpy import frombufferfrombuffer286,8302 -class CannedBytes(CannedObject):CannedBytes299,8805 - wrap = staticmethod(buffer_to_bytes)wrap300,8838 - def __init__(self, obj):__init__302,8880 - def get_object(self, g=None):get_object305,8943 -class CannedBuffer(CannedBytes):CannedBuffer309,9040 - wrap = bufferwrap310,9073 -class CannedMemoryView(CannedBytes):CannedMemoryView312,9092 - wrap = memoryviewwrap313,9129 -def _import_mapping(mapping, original=None):_import_mapping319,9327 -def istype(obj, check):istype337,9963 -def can(obj):can350,10266 -def can_class(obj):can_class370,10773 -def can_dict(obj):can_dict376,10924 -sequence_types = (list, tuple, set)sequence_types386,11145 -def can_sequence(obj):can_sequence388,11182 -def uncan(obj, g=None):uncan396,11374 -def uncan_dict(obj, g=None):uncan_dict415,11894 -def uncan_sequence(obj, g=None):uncan_sequence424,12092 -can_map = {can_map437,12510 -uncan_map = {uncan_map448,12775 -_original_can_map = can_map.copy()_original_can_map454,12898 -_original_uncan_map = uncan_map.copy()_original_uncan_map455,12933 - -packages/python/yap_kernel/yap_kernel/pylab/__init__.py,0 - -packages/python/yap_kernel/yap_kernel/pylab/backend_inline.py,1297 -from __future__ import print_functionprint_function6,170 -import matplotlibmatplotlib8,209 -from matplotlib.backends.backend_agg import new_figure_manager, FigureCanvasAgg # analysis: ignorenew_figure_manager9,227 -from matplotlib.backends.backend_agg import new_figure_manager, FigureCanvasAgg # analysis: ignoreFigureCanvasAgg9,227 -from matplotlib.backends.backend_agg import new_figure_manager, FigureCanvasAgg # analysis: ignoreanalysis9,227 -from matplotlib.backends.backend_agg import new_figure_manager, FigureCanvasAgg # analysis: ignoreignore9,227 -from matplotlib._pylab_helpers import GcfGcf10,326 -from IPython.core.getipython import get_ipythonget_ipython12,369 -from IPython.core.display import displaydisplay13,417 -from .config import InlineBackendInlineBackend15,459 -def show(close=None, block=None):show18,495 -def draw_if_interactive():draw_if_interactive51,1638 -def flush_figures():flush_figures96,3386 -FigureCanvas = FigureCanvasAggFigureCanvas145,5157 -def _enable_matplotlib_integration():_enable_matplotlib_integration147,5189 - from matplotlib import get_backendget_backend149,5327 - from IPython.core.pylabtools import configure_inline_supportconfigure_inline_support153,5468 - def configure_once(*args):configure_once158,5687 - -packages/python/yap_kernel/yap_kernel/pylab/config.py,1106 -from traitlets.config.configurable import SingletonConfigurableSingletonConfigurable16,638 -def pil_available():pil_available25,981 - from PIL import ImageImage29,1069 -class InlineBackendConfig(SingletonConfigurable):InlineBackendConfig36,1219 -class InlineBackend(InlineBackendConfig):InlineBackend39,1279 - rc = Dict({'figure.figsize': (6.0,4.0),rc45,1538 - figure_formats = Set({'png'},figure_formats61,2196 - def _update_figure_formatters(self):_update_figure_formatters65,2386 - from IPython.core.pylabtools import select_figure_formatsselect_figure_formats67,2462 - def _figure_formats_changed(self, name, old, new):_figure_formats_changed70,2628 - def _figure_format_changed(self, name, old, new):_figure_format_changed79,3044 - print_figure_kwargs = Dict({'bbox_inches' : 'tight'},print_figure_kwargs83,3155 - _print_figure_kwargs_changed = _update_figure_formatters_print_figure_kwargs_changed89,3399 - close_figures = Bool(True,close_figures91,3461 - shell = Instance('IPython.core.interactiveshell.InteractiveShellABC',shell108,4372 - -packages/python/yap_kernel/yap_kernel/serialize.py,1068 -import warningswarnings6,152 - import cPicklecPickle10,285 - pickle = cPicklepickle11,304 - cPickle = NonecPickle13,333 - import picklepickle14,352 -from itertools import chainchain16,371 -from ipython_genutils.py3compat import PY3, buffer_to_bytes_py2PY318,400 -from ipython_genutils.py3compat import PY3, buffer_to_bytes_py2buffer_to_bytes_py218,400 -from jupyter_client.session import MAX_ITEMS, MAX_BYTESMAX_ITEMS23,607 -from jupyter_client.session import MAX_ITEMS, MAX_BYTESMAX_BYTES23,607 - buffer = memoryviewbuffer27,673 -def _extract_buffers(obj, threshold=MAX_BYTES):_extract_buffers34,884 -def _restore_buffers(obj, buffers):_restore_buffers51,1625 -def serialize_object(obj, buffer_threshold=MAX_BYTES, item_threshold=MAX_ITEMS):serialize_object58,1877 -def deserialize_object(buffers, g=None):deserialize_object96,3122 -def pack_apply_message(f, args, kwargs, buffer_threshold=MAX_BYTES, item_threshold=MAX_ITEMS):pack_apply_message130,4059 -def unpack_apply_message(bufs, g=None, copy=True):unpack_apply_message162,5208 - -packages/python/yap_kernel/yap_kernel/tests/__init__.py,493 -import osos4,102 -import shutilshutil5,112 -import syssys6,126 -import tempfiletempfile7,137 - from unittest.mock import patchpatch10,159 - from mock import patchpatch12,215 -from jupyter_core import paths as jpathsjpaths14,243 -from IPython import paths as ipathsipaths15,284 -from yap_kernel.kernelspec import installinstall16,320 -pjoin = os.path.joinpjoin18,363 -tmp = Nonetmp20,385 -patchers = []patchers21,396 -def setup():setup23,411 -def teardown():teardown41,839 - -packages/python/yap_kernel/yap_kernel/tests/test_connect.py,881 -import jsonjson6,147 -import osos7,159 -import nose.tools as ntnose9,170 -import nose.tools as ntnt9,170 -from traitlets.config import ConfigConfig11,195 -from ipython_genutils.tempdir import TemporaryDirectory, TemporaryWorkingDirectoryTemporaryDirectory12,231 -from ipython_genutils.tempdir import TemporaryDirectory, TemporaryWorkingDirectoryTemporaryWorkingDirectory12,231 -from ipython_genutils.py3compat import str_to_bytesstr_to_bytes13,314 -from yap_kernel import connectconnect14,366 -from yap_kernel.kernelapp import YAP_KernelAppYAP_KernelApp15,397 -sample_info = dict(ip='1.2.3.4', transport='ipc',sample_info18,446 -class DummyKernelApp(YAP_KernelApp):DummyKernelApp24,633 - def initialize(self, argv=[]):initialize25,670 -def test_get_connection_file():test_get_connection_file30,775 -def test_get_connection_info():test_get_connection_info49,1432 - -packages/python/yap_kernel/yap_kernel/tests/test_embed_kernel.py,978 -import osos6,137 -import shutilshutil7,147 -import syssys8,161 -import tempfiletempfile9,172 -import timetime10,188 -from contextlib import contextmanagercontextmanager12,201 -from subprocess import Popen, PIPEPopen13,239 -from subprocess import Popen, PIPEPIPE13,239 -import nose.tools as ntnose15,275 -import nose.tools as ntnt15,275 -from jupyter_client import BlockingKernelClientBlockingKernelClient17,300 -from jupyter_core import pathspaths18,348 -from IPython.paths import get_ipython_dirget_ipython_dir19,379 -from ipython_genutils import py3compatpy3compat20,421 -from ipython_genutils.py3compat import unicode_typeunicode_type21,460 -SETUP_TIMEOUT = 60SETUP_TIMEOUT24,514 -TIMEOUT = 15TIMEOUT25,533 -def setup_kernel(cmd):setup_kernel29,564 -def test_embed_kernel_basic():test_embed_kernel_basic69,1789 -def test_embed_kernel_namespace():test_embed_kernel_namespace101,2791 -def test_embed_kernel_reentrant():test_embed_kernel_reentrant136,3894 - -packages/python/yap_kernel/yap_kernel/tests/test_io.py,346 -import ioio3,39 -import zmqzmq5,50 -from jupyter_client.session import SessionSession7,62 -from yap_kernel.iostream import IOPubThread, OutStreamIOPubThread8,105 -from yap_kernel.iostream import IOPubThread, OutStreamOutStream8,105 -import nose.tools as ntnose10,161 -import nose.tools as ntnt10,161 -def test_io_api():test_io_api12,186 - -packages/python/yap_kernel/yap_kernel/tests/test_jsonutil.py,1153 -import jsonjson7,160 -import syssys8,172 - from base64 import decodestring as decodebytesdecodebytes11,212 - from base64 import decodebytesdecodebytes13,269 -from datetime import datetimedatetime15,305 -import numbersnumbers16,335 -import nose.tools as ntnose18,351 -import nose.tools as ntnt18,351 -from .. import jsonutiljsonutil20,376 -from ..jsonutil import json_clean, encode_imagesjson_clean21,400 -from ..jsonutil import json_clean, encode_imagesencode_images21,400 -from ipython_genutils.py3compat import unicode_to_str, str_to_bytes, iteritemsunicode_to_str22,449 -from ipython_genutils.py3compat import unicode_to_str, str_to_bytes, iteritemsstr_to_bytes22,449 -from ipython_genutils.py3compat import unicode_to_str, str_to_bytes, iteritemsiteritems22,449 -class MyInt(object):MyInt24,529 - def __int__(self):__int__25,550 -class MyFloat(object):MyFloat29,626 - def __float__(self):__float__30,649 -def test():test35,727 -def test_encode_images():test_encode_images68,1791 -def test_lambda():test_lambda97,2899 -def test_exception():test_exception102,2990 -def test_unicode_dict():test_unicode_dict110,3203 - -packages/python/yap_kernel/yap_kernel/tests/test_kernel.py,2679 -import ioio7,149 -import os.pathos8,159 -import os.pathpath8,159 -import syssys9,174 -import timetime10,185 -import nose.tools as ntnose12,198 -import nose.tools as ntnt12,198 -from IPython.testing import decorators as dec, tools as ttdec14,223 -from IPython.testing import decorators as dec, tools as tttt14,223 -from ipython_genutils import py3compatpy3compat15,282 -from IPython.paths import locate_profilelocate_profile16,321 -from ipython_genutils.tempdir import TemporaryDirectoryTemporaryDirectory17,362 -def _check_master(kc, expected=True, stream="stdout"):_check_master24,536 - execute(kc=kc, code="import sys")sys25,591 -def _check_status(content):_check_status32,851 -def test_simple_print():test_simple_print40,1052 -def test_sys_path():test_sys_path51,1407 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")sys54,1515 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")print54,1515 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")repr54,1515 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")sys54,1515 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")path54,1515 -def test_sys_path_profile_dir():test_sys_path_profile_dir58,1702 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")sys62,1894 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")print62,1894 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")repr62,1894 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")sys62,1894 - msg_id, content = execute(kc=kc, code="import sys; print (repr(sys.path[0]))")path62,1894 -def test_subprocess_print():test_subprocess_print67,2155 -def test_subprocess_noprint():test_subprocess_noprint95,3123 -def test_subprocess_error():test_subprocess_error118,3889 -def test_raw_input():test_raw_input140,4524 -def test_eval_input():test_eval_input162,5351 -def test_save_history():test_save_history182,6124 -def test_smoke_faulthandler():test_smoke_faulthandler200,6779 -def test_help_output():test_help_output214,7288 -def test_is_complete():test_is_complete219,7394 -def test_complete():test_complete238,8135 - cell = 'import IPython\nb = a.'IPython242,8240 - cell = 'import IPython\nb = a.'nb242,8240 - cell = 'import IPython\nb = a.'a242,8240 -def test_matplotlib_inline_on_import():test_matplotlib_inline_on_import256,8745 -def test_shutdown():test_shutdown271,9269 - -packages/python/yap_kernel/yap_kernel/tests/test_kernelspec.py,1259 -import jsonjson4,102 -import ioio5,114 -import osos6,124 -import shutilshutil7,134 -import syssys8,148 -import tempfiletempfile9,159 - from unittest import mockmock12,185 - import mock # py2mock14,235 - import mock # py2py214,235 -from jupyter_core.paths import jupyter_data_dirjupyter_data_dir16,258 -import nose.tools as ntnose28,488 -import nose.tools as ntnt28,488 -pjoin = os.path.joinpjoin30,513 -def test_make_yapkernel_cmd():test_make_yapkernel_cmd33,536 -def assert_kernel_dict(d):assert_kernel_dict44,745 -def test_get_kernel_dict():test_get_kernel_dict50,946 -def assert_kernel_dict_with_profile(d):assert_kernel_dict_with_profile55,1028 -def test_get_kernel_dict_with_profile():test_get_kernel_dict_with_profile62,1288 -def assert_is_spec(path):assert_is_spec67,1417 -def test_write_kernel_spec():test_write_kernel_spec77,1711 -def test_write_kernel_spec_path():test_write_kernel_spec_path83,1823 -def test_install_kernelspec():test_install_kernelspec91,2035 -def test_install_user():test_install_user102,2330 -def test_install():test_install112,2581 -def test_install_profile():test_install_profile122,2856 -def test_install_display_name_overrides_profile():test_install_display_name_overrides_profile136,3336 - -packages/python/yap_kernel/yap_kernel/tests/test_message_spec.py,6736 -import rere6,164 -import syssys7,174 -from distutils.version import LooseVersion as VV8,185 - from queue import Empty # Py 3Empty10,238 - from queue import Empty # Py 3Py10,238 - from Queue import Empty # Py 2Empty12,294 - from Queue import Empty # Py 2Py12,294 -import nose.tools as ntnose14,331 -import nose.tools as ntnt14,331 -from nose.plugins.skip import SkipTestSkipTest15,355 -from ipython_genutils.py3compat import string_types, iteritemsstring_types20,489 -from ipython_genutils.py3compat import string_types, iteritemsiteritems20,489 -from .utils import TIMEOUT, start_global_kernel, flush_channels, executeTIMEOUT22,553 -from .utils import TIMEOUT, start_global_kernel, flush_channels, executestart_global_kernel22,553 -from .utils import TIMEOUT, start_global_kernel, flush_channels, executeflush_channels22,553 -from .utils import TIMEOUT, start_global_kernel, flush_channels, executeexecute22,553 -KC = NoneKC27,795 -def setup():setup29,806 -class Reference(HasTraits):Reference37,1050 - def check(self, d):check49,1393 -class Version(Unicode):Version62,1794 - def __init__(self, *args, **kwargs):__init__63,1818 - def validate(self, obj, value):validate69,2044 -class RMessage(Reference):RMessage76,2326 - msg_id = Unicode()msg_id77,2353 - msg_type = Unicode()msg_type78,2376 - header = Dict()header79,2401 - parent_header = Dict()parent_header80,2421 - content = Dict()content81,2448 - def check(self, d):check83,2470 -class RHeader(Reference):RHeader89,2650 - msg_id = Unicode()msg_id90,2676 - msg_type = Unicode()msg_type91,2699 - session = Unicode()session92,2724 - username = Unicode()username93,2748 - version = Version(min='5.0')version94,2773 -mime_pat = re.compile(r'^[\w\-\+\.]+/[\w\-\+\.]+$')mime_pat96,2807 -class MimeBundle(Reference):MimeBundle98,2860 - metadata = Dict()metadata99,2889 - data = Dict()data100,2911 - def _data_changed(self, name, old, new):_data_changed101,2929 -class Reply(Reference):Reply108,3115 - status = Enum((u'ok', u'error'), default_value=u'ok')status109,3139 -class ExecuteReply(Reply):ExecuteReply112,3199 - execution_count = Integer()execution_count113,3226 - def check(self, d):check115,3259 -class ExecuteReplyOkay(Reply):ExecuteReplyOkay123,3468 - status = Enum(('ok',))status124,3499 - user_expressions = Dict()user_expressions125,3526 -class ExecuteReplyError(Reply):ExecuteReplyError128,3558 - ename = Unicode()ename129,3590 - evalue = Unicode()evalue130,3612 - traceback = List(Unicode())traceback131,3635 -class InspectReply(Reply, MimeBundle):InspectReply134,3669 - found = Bool()found135,3708 -class ArgSpec(Reference):ArgSpec138,3729 - args = List(Unicode())args139,3755 - varargs = Unicode()varargs140,3782 - varkw = Unicode()varkw141,3806 - defaults = List()defaults142,3828 -class Status(Reference):Status145,3852 - execution_state = Enum((u'busy', u'idle', u'starting'), default_value=u'busy')execution_state146,3877 -class CompleteReply(Reply):CompleteReply149,3962 - matches = List(Unicode())matches150,3990 - cursor_start = Integer()cursor_start151,4020 - cursor_end = Integer()cursor_end152,4049 - status = Unicode()status153,4076 -class LanguageInfo(Reference):LanguageInfo156,4101 - name = Unicode('python')name157,4132 - version = Unicode(sys.version.split()[0])version158,4161 -class KernelInfoReply(Reply):KernelInfoReply161,4209 - protocol_version = Version(min='5.0')protocol_version162,4239 - implementation = Unicode('ipython')implementation163,4281 - implementation_version = Version(min='2.1')implementation_version164,4321 - language_info = Dict()language_info165,4369 - banner = Unicode()banner166,4396 - def check(self, d):check168,4420 -class ConnectReply(Reference):ConnectReply173,4528 - shell_port = Integer()shell_port174,4559 - control_port = Integer()control_port175,4586 - stdin_port = Integer()stdin_port176,4615 - iopub_port = Integer()iopub_port177,4642 - hb_port = Integer()hb_port178,4669 -class CommInfoReply(Reply):CommInfoReply181,4695 - comms = Dict()comms182,4723 -class IsCompleteReply(Reference):IsCompleteReply185,4744 - status = Enum((u'complete', u'incomplete', u'invalid', u'unknown'), default_value=u'complete')status186,4778 - def check(self, d):check188,4878 -class IsCompleteReplyIncomplete(Reference):IsCompleteReplyIncomplete194,5026 - indent = Unicode()indent195,5070 -class ExecuteInput(Reference):ExecuteInput200,5113 - code = Unicode()code201,5144 - execution_count = Integer()execution_count202,5165 -class Error(ExecuteReplyError):Error205,5199 - status = None # no status fieldstatus207,5297 -class Stream(Reference):Stream210,5335 - name = Enum((u'stdout', u'stderr'), default_value=u'stdout')name211,5360 - text = Unicode()text212,5425 -class DisplayData(MimeBundle):DisplayData215,5448 -class ExecuteResult(MimeBundle):ExecuteResult219,5490 - execution_count = Integer()execution_count220,5523 -class HistoryReply(Reply):HistoryReply223,5557 - history = List(List())history224,5584 -references = {references227,5613 -def validate_message(msg, msg_type=None, parent=None):validate_message249,6228 -def test_execute():test_execute274,6972 -def test_execute_silent():test_execute_silent282,7151 -def test_execute_error():test_execute_error306,7942 -def test_execute_inc():test_execute_inc317,8235 -def test_execute_stop_on_error():test_execute_stop_on_error330,8558 -def test_user_expressions():test_user_expressions355,9362 -def test_user_expressions_fail():test_user_expressions_fail367,9686 -def test_oinfo():test_oinfo377,9999 -def test_oinfo_found():test_oinfo_found385,10169 -def test_oinfo_detail():test_oinfo_detail400,10555 -def test_oinfo_not_found():test_oinfo_not_found415,11004 -def test_complete():test_complete425,11255 -def test_kernel_info_request():test_kernel_info_request438,11605 -def test_connect_request():test_connect_request446,11794 -def test_comm_info_request():test_comm_info_request457,12085 -def test_single_payload():test_single_payload466,12329 -def test_is_complete():test_is_complete474,12640 -def test_history_range():test_history_range481,12827 -def test_history_tail():test_history_tail493,13282 -def test_history_search():test_history_search505,13721 -def test_stream():test_stream520,14197 -def test_display_data():test_display_data531,14464 - msg_id, reply = execute("from IPython.core.display import display; display(1)")display534,14511 - msg_id, reply = execute("from IPython.core.display import display; display(1)")display534,14511 - -packages/python/yap_kernel/yap_kernel/tests/test_pickleutil.py,797 -import osos2,1 -import picklepickle3,11 -import nose.tools as ntnose5,26 -import nose.tools as ntnt5,26 -from yap_kernel.pickleutil import can, uncan, codeutilcan7,51 -from yap_kernel.pickleutil import can, uncan, codeutiluncan7,51 -from yap_kernel.pickleutil import can, uncan, codeutilcodeutil7,51 -def interactive(f):interactive9,107 -def dumps(obj):dumps13,171 -def loads(obj):loads16,222 -def test_no_closure():test_no_closure19,275 - def foo():foo21,315 -def test_generator_closure():test_generator_closure29,445 - def foo():foo32,538 -def test_nested_closure():test_nested_closure41,703 - def foo():foo43,747 - def g():g45,778 -def test_closure():test_closure53,919 - def foo():foo56,968 -def test_uncan_bytes_buffer():test_uncan_bytes_buffer63,1084 - -packages/python/yap_kernel/yap_kernel/tests/test_serialize.py,2420 -import picklepickle6,134 -from collections import namedtuplenamedtuple7,148 -import nose.tools as ntnose9,184 -import nose.tools as ntnt9,184 -from yap_kernel.serialize import serialize_object, deserialize_objectserialize_object11,209 -from yap_kernel.serialize import serialize_object, deserialize_objectdeserialize_object11,209 -from IPython.testing import decorators as decdec12,279 -from yap_kernel.pickleutil import CannedArray, CannedClass, interactiveCannedArray13,325 -from yap_kernel.pickleutil import CannedArray, CannedClass, interactiveCannedClass13,325 -from yap_kernel.pickleutil import CannedArray, CannedClass, interactiveinteractive13,325 -from ipython_genutils.py3compat import iteritemsiteritems14,397 -def roundtrip(obj):roundtrip20,634 -SHAPES = ((100,), (1024,10), (10,8,6,5), (), (0,))SHAPES28,840 -DTYPES = ('uint8', 'float64', 'int32', [('g', 'float32')], '|S10')DTYPES29,891 -def new_array(shape, dtype):new_array35,1130 - import numpynumpy36,1159 -def test_roundtrip_simple():test_roundtrip_simple39,1229 -def test_roundtrip_nested():test_roundtrip_nested49,1439 -def test_roundtrip_buffered():test_roundtrip_buffered57,1646 -def test_roundtrip_memoryview():test_roundtrip_memoryview69,1981 -def test_numpy():test_numpy79,2275 - import numpynumpy80,2293 - from numpy.testing.utils import assert_array_equalassert_array_equal81,2310 -def test_recarray():test_recarray94,2788 - import numpynumpy95,2809 - from numpy.testing.utils import assert_array_equalassert_array_equal96,2826 -def test_numpy_in_seq():test_numpy_in_seq112,3361 - import numpynumpy113,3386 - from numpy.testing.utils import assert_array_equalassert_array_equal114,3403 -def test_numpy_in_dict():test_numpy_in_dict129,3973 - import numpynumpy130,3999 - from numpy.testing.utils import assert_array_equalassert_array_equal131,4016 -def test_class():test_class145,4568 - class C(object):C147,4603 - a=5a148,4624 -def test_class_oldstyle():test_class_oldstyle156,4846 - class C:C158,4890 - a=5a159,4903 -def test_tuple():test_tuple168,5126 -point = namedtuple('point', 'x y')point176,5367 -def test_namedtuple():test_namedtuple178,5403 -def test_list():test_list187,5663 -def test_class_inheritance():test_class_inheritance195,5902 - class C(object):C197,5949 - a=5a198,5970 - class D(C):D201,6000 - b=10b202,6016 - -packages/python/yap_kernel/yap_kernel/tests/test_start_kernel.py,317 -import nose.tools as ntnose1,0 -import nose.tools as ntnt1,0 -from .test_embed_kernel import setup_kernelsetup_kernel3,25 -TIMEOUT = 15TIMEOUT5,70 -def test_ipython_start_kernel_userns():test_ipython_start_kernel_userns7,84 -def test_ipython_start_kernel_no_userns():test_ipython_start_kernel_no_userns32,1064 - -packages/python/yap_kernel/yap_kernel/tests/test_zmq_shell.py,1485 -import osos7,176 - from queue import QueueQueue9,191 - from Queue import QueueQueue12,249 -from threading import ThreadThread13,277 -import unittestunittest14,306 -from traitlets import IntInt16,323 -import zmqzmq17,349 -from yap_kernel.zmqshell import ZMQDisplayPublisherZMQDisplayPublisher19,361 -from jupyter_client.session import SessionSession20,413 -class NoReturnDisplayHook(object):NoReturnDisplayHook23,458 - call_count = 0call_count29,666 - def __call__(self, obj):__call__31,686 -class ReturnDisplayHook(NoReturnDisplayHook):ReturnDisplayHook35,746 - def __call__(self, obj):__call__41,949 -class CounterSession(Session):CounterSession46,1052 - send_count = Int(0)send_count52,1221 - def send(self, *args, **kwargs):send54,1246 -class ZMQDisplayPublisherTests(unittest.TestCase):ZMQDisplayPublisherTests63,1504 - def setUp(self):setUp68,1621 - def tearDown(self):tearDown78,1900 - def test_display_publisher_creation(self):test_display_publisher_creation89,2224 - def test_thread_local_hooks(self):test_thread_local_hooks98,2570 - def hook(msg):hook104,2807 - def set_thread_hooks():set_thread_hooks110,2971 - def test_publish(self):test_publish117,3190 - def test_display_hook_halts_send(self):test_display_hook_halts_send128,3503 - def test_display_hook_return_calls_send(self):test_display_hook_return_calls_send147,4137 - def test_unregister_hook(self):test_unregister_hook166,4768 - -packages/python/yap_kernel/yap_kernel/tests/utils.py,1344 -import atexitatexit6,147 -import osos7,161 -from contextlib import contextmanagercontextmanager9,172 -from subprocess import PIPE, STDOUTPIPE10,210 -from subprocess import PIPE, STDOUTSTDOUT10,210 - from queue import Empty # Py 3Empty12,251 - from queue import Empty # Py 3Py12,251 - from Queue import Empty # Py 2Empty14,307 - from Queue import Empty # Py 2Py14,307 -import nosenose16,344 -import nose.tools as ntnose17,356 -import nose.tools as ntnt17,356 -from jupyter_client import managermanager19,381 -STARTUP_TIMEOUT = 60STARTUP_TIMEOUT25,590 -TIMEOUT = 15TIMEOUT26,611 -KM = NoneKM28,625 -KC = NoneKC29,635 -def start_new_kernel(**kwargs):start_new_kernel34,815 -def flush_channels(kc=None):flush_channels46,1222 - from .test_message_spec import validate_messagevalidate_message48,1301 -def execute(code='', kc=None, **kwargs):execute62,1652 - from .test_message_spec import validate_messagevalidate_message64,1770 -def start_global_kernel():start_global_kernel81,2414 -def kernel():kernel92,2704 -def uses_kernel(test_f):uses_kernel103,2931 - def wrapped_test():wrapped_test105,3013 -def stop_global_kernel():stop_global_kernel112,3200 -def new_kernel(argv=None):new_kernel122,3426 -def assemble_output(iopub):assemble_output137,3894 -def wait_for_idle(kc):wait_for_idle160,4673 - -packages/python/yap_kernel/yap_kernel/x.yap,0 - -packages/python/yap_kernel/yap_kernel/yapkernel.py,3511 -import getpassgetpass3,41 -import syssys4,56 -import tracebacktraceback5,67 -from IPython.core import releaserelease7,85 -from ipython_genutils.py3compat import builtin_mod, PY3, unicode_type, safe_unicodebuiltin_mod8,118 -from ipython_genutils.py3compat import builtin_mod, PY3, unicode_type, safe_unicodePY38,118 -from ipython_genutils.py3compat import builtin_mod, PY3, unicode_type, safe_unicodeunicode_type8,118 -from ipython_genutils.py3compat import builtin_mod, PY3, unicode_type, safe_unicodesafe_unicode8,118 -from IPython.utils.tokenutil import token_at_cursor, line_at_cursortoken_at_cursor9,202 -from IPython.utils.tokenutil import token_at_cursor, line_at_cursorline_at_cursor9,202 -from traitlets import Instance, Type, Any, ListInstance10,270 -from traitlets import Instance, Type, Any, ListType10,270 -from traitlets import Instance, Type, Any, ListAny10,270 -from traitlets import Instance, Type, Any, ListList10,270 -from .comm import CommManagerCommManager12,319 -from .kernelbase import Kernel as KernelBaseKernelBase13,349 -from .zmqshell import ZMQInteractiveShellZMQInteractiveShell14,394 -from .interactiveshell import YAPInteractionYAPInteraction15,436 -class YAPKernel(KernelBase):YAPKernel17,482 - shell = Instance('IPython.core.interactiveshell.InteractiveShellABC',shell18,511 - allow_none=True)allow_none19,585 - shell_class = Type(ZMQInteractiveShell)shell_class20,623 - user_module = Any()user_module21,667 - def _user_module_changed(self, name, old, new):_user_module_changed22,691 - user_ns = Instance(dict, args=None, allow_none=True)user_ns26,820 - def _user_ns_changed(self, name, old, new):_user_ns_changed27,877 - _sys_raw_input = Any()_sys_raw_input34,1178 - _sys_eval_input = Any()_sys_eval_input35,1205 - def __init__(self, **kwargs):__init__37,1234 - help_links = List([help_links63,2353 - implementation = 'yap'implementation95,3237 - implementation_version = "6.3"implementation_version96,3264 - language_info = {language_info97,3299 - def banner(self):banner111,3657 - def start(self):start114,3713 - def set_parent(self, ident, parent):set_parent118,3810 - def init_metadata(self, parent):init_metadata125,4071 - def finish_metadata(self, parent, metadata, reply_content):finish_metadata139,4501 - def _forward_input(self, allow_stdin=False):_forward_input152,5004 - def _restore_input(self):_restore_input170,5652 - def execution_count(self):execution_count181,5975 - def execution_count(self, value):execution_count185,6077 - def do_execute(self, code, silent, store_history=True,do_execute190,6238 - def do_complete(self, code, cursor_pos):do_complete250,8625 - def do_inspect(self, code, cursor_pos, detail_level=0):do_inspect266,9292 - def do_history(self, hist_access_type, output, raw, session=0, start=0,do_history283,9854 - def do_shutdown(self, restart):do_shutdown304,10696 - def do_is_complete(self, code):do_is_complete308,10818 - def do_apply(self, content, bufs, msg_id, reply_metadata):do_apply315,11074 - from .serialize import serialize_object, unpack_apply_messageserialize_object316,11137 - from .serialize import serialize_object, unpack_apply_messageunpack_apply_message316,11137 - def do_clear(self):do_clear370,13195 -class Kernel(YAPKernel):Kernel377,13358 - def __init__(self, *args, **kwargs):__init__378,13383 - import warningswarnings379,13424 - -packages/python/yap_kernel/yap_kernel/zmqshell.py,5017 -from __future__ import print_functionprint_function18,753 -import osos20,792 -import syssys21,802 -import timetime22,813 -import warningswarnings23,825 -from threading import locallocal24,841 -from tornado import ioloopioloop26,870 -from IPython.core import pagepage31,986 -from IPython.core.autocall import ZMQExitAutocallZMQExitAutocall32,1016 -from IPython.core.displaypub import DisplayPublisherDisplayPublisher33,1066 -from IPython.core.error import UsageErrorUsageError34,1119 -from IPython.core.magics import MacroToEdit, CodeMagicsMacroToEdit35,1161 -from IPython.core.magics import MacroToEdit, CodeMagicsCodeMagics35,1161 -from IPython.core.magic import magics_class, line_magic, Magicsmagics_class36,1217 -from IPython.core.magic import magics_class, line_magic, Magicsline_magic36,1217 -from IPython.core.magic import magics_class, line_magic, MagicsMagics36,1217 -from IPython.core import payloadpagepayloadpage37,1281 -from IPython.core.usage import default_bannerdefault_banner38,1318 -from IPython.display import display, Javascriptdisplay39,1364 -from IPython.display import display, JavascriptJavascript39,1364 -from IPython.utils import openpyopenpy43,1503 -from yap_kernel.jsonutil import json_clean, encode_imagesjson_clean44,1536 -from yap_kernel.jsonutil import json_clean, encode_imagesencode_images44,1536 -from IPython.utils.process import arg_splitarg_split45,1594 -from ipython_genutils import py3compatpy3compat46,1638 -from ipython_genutils.py3compat import unicode_typeunicode_type47,1677 -from yap_kernel.displayhook import ZMQShellDisplayHookZMQShellDisplayHook51,1818 -from jupyter_core.paths import jupyter_runtime_dirjupyter_runtime_dir53,1874 -from jupyter_client.session import extract_header, Sessionextract_header54,1925 -from jupyter_client.session import extract_header, SessionSession54,1925 -class ZMQDisplayPublisher(DisplayPublisher):ZMQDisplayPublisher60,2168 - session = Instance(Session, allow_none=True)session63,2291 - pub_socket = Any(allow_none=True)pub_socket64,2340 - parent_header = Dict({})parent_header65,2378 - topic = CBytes(b'display_data')topic66,2407 - _thread_local = Any()_thread_local71,2589 - def set_parent(self, parent):set_parent73,2616 - def _flush_streams(self):_flush_streams77,2755 - def _default_thread_local(self):_default_thread_local83,2918 - def _hooks(self):_hooks88,3043 - def publish(self, data, metadata=None, source=None, transient=None,publish94,3248 - def clear_output(self, wait=False):clear_output145,4965 - def register_hook(self, hook):register_hook163,5579 - def unregister_hook(self, hook):unregister_hook183,6163 -class KernelMagics(Magics):KernelMagics205,6683 - _find_edit_target = CodeMagics._find_edit_target_find_edit_target214,7164 - def edit(self, parameter_s='', last_call=['','']):edit217,7234 - def clear(self, arg_s):clear318,11758 - def less(self, arg_s):less332,12143 - more = line_magic('more')(less)more345,12549 - def man(self, arg_s):man350,12689 - def connect_info(self, arg_s):connect_info356,12943 - def qtconsole(self, arg_s):qtconsole394,14292 - from ipyparallel import bind_kernelbind_kernel404,14639 - def autosave(self, arg_s):autosave414,14928 -class ZMQInteractiveShell(InteractiveShell):ZMQInteractiveShell440,15788 - displayhook_class = Type(ZMQShellDisplayHook)displayhook_class443,15884 - display_pub_class = Type(ZMQDisplayPublisher)display_pub_class444,15934 - data_pub_class = Type('yap_kernel.datapub.ZMQDataPublisher')data_pub_class445,15984 - kernel = Any()kernel446,16049 - parent_header = Any()parent_header447,16068 - def _default_banner1(self):_default_banner1450,16119 - colors_force = CBool(True)colors_force456,16372 - readline_use = CBool(False)readline_use457,16403 - autoindent = CBool(False)autoindent460,16565 - exiter = Instance(ZMQExitAutocall)exiter462,16596 - def _default_exiter(self):_default_exiter465,16659 - def _update_exit_now(self, change):_update_exit_now469,16753 - keepkernel_on_exit = Nonekeepkernel_on_exit475,16972 - def enable_gui(self, gui):enable_gui479,17159 - from .eventloops import enable_gui as real_enable_guireal_enable_gui480,17190 - def init_environment(self):init_environment487,17410 - def init_hooks(self):init_hooks499,17916 - def init_data_pub(self):init_data_pub503,18072 - def data_pub(self):data_pub508,18202 - def data_pub(self, pub):data_pub519,18659 - def ask_exit(self):ask_exit522,18718 - def run_cell(self, *args, **kwargs):run_cell531,19005 - def _showtraceback(self, etype, evalue, stb):_showtraceback535,19157 - def set_next_input(self, text, replace=False):set_next_input560,20076 - def set_parent(self, parent):set_parent570,20405 - def get_parent(self):get_parent586,20939 - def init_magics(self):init_magics589,21000 - def init_virtualenv(self):init_virtualenv594,21183 - -packages/python/yap_kernel/yap_kernel_launcher.py,76 -import syssys7,173 - from yap_kernel import kernelapp as appapp15,379 - -packages/python/yapex.egg-info/PKG-INFO,0 - -packages/raptor/LICENSE,6693 - Version 2, June 1991Version2,27 - For example, if you distribute copies of such a program, whetherprogram33,1614 -gratis or for a fee, you must give the recipients all the rights thatfee34,1681 -you have. You must make sure that they, too, receive or can get thetoo35,1751 - We protect your rights with two steps: (1) copyright the software, andsoftware39,1897 -(2) offer you this license which gives you legal permission to copy,copy40,1970 -want its recipients to know that what they have is not the original, sooriginal46,2289 - Finally, any free program is threatened constantly by softwareFinally50,2456 - The precise terms and conditions for copying, distribution andopying56,2803 -under the terms of this General Public License. The "Program", below,below64,3144 -refers to any such program or work, and a "work based on the Program"work65,3215 -that is to say, a work containing the Program or a portion of it,say67,3354 -that is to say, a work containing the Program or a portion of it,it67,3354 -covered by this License; they are outside its scope. The act ofLicense73,3694 -source code as you receive it, in any medium, provided that youmedium80,4081 -copyright notice and disclaimer of warranty; keep intact all thewarranty82,4213 -notices that refer to this License and to the absence of any warranty;warranty83,4278 -of it, thus forming a work based on the Program, and copy andProgram91,4655 -above, provided that you also meet all of these conditions:above93,4784 - part thereof, to be licensed as a whole at no charge to all thirdthereof100,5120 - when run, you must cause it, when started running for suchit104,5305 - interactive use in the most ordinary way, to print or display anway105,5368 - these conditions, and telling the user how to view a copy of thisconditions109,5639 -themselves, then this License, and its terms, do not apply to thosethemselves117,6103 -themselves, then this License, and its terms, do not apply to thoseLicense117,6103 -themselves, then this License, and its terms, do not apply to thoseterms117,6103 -this License, whose permissions for other licensees extend to theLicense121,6378 -entire whole, and thus to each and every part regardless of who wrote it.whole122,6444 -your rights to work written entirely by you; rather, the intent is toyou125,6589 - 1 and 2 above on a medium customarily used for software interchange; or,interchange140,7352 - b) Accompany it with a written offer, valid for at least threeoffer142,7430 - years, to give any third party, for a charge no more than youryears143,7497 - years, to give any third party, for a charge no more than yourparty143,7497 - cost of physically performing source distribution, a completedistribution144,7564 - customarily used for software interchange; or,interchange147,7766 -code means all the source code for all modules it contains, plus anycontains157,8276 -associated interface definition files, plus the scripts used tofiles158,8345 -special exception, the source code distributed need not includeexception160,8480 -operating system on which the executable runs, unless that componentruns163,8679 -distribution of the source code, even though third parties are notcode169,8975 - 4. You may not copy, modify, sublicense, or distribute the Programmodify172,9100 - 4. You may not copy, modify, sublicense, or distribute the Programsublicense172,9100 -otherwise to copy, modify, sublicense or distribute the Program ismodify174,9231 -However, parties who have received copies, or rights, from you undercopies176,9369 -However, parties who have received copies, or rights, from you underrights176,9369 -Program), you indicate your acceptance of this License to do so, andso185,9880 -all its terms and conditions for copying, distributing or modifyingopying186,9949 -original licensor to copy, distribute or modify the Program subject tocopy191,10188 -otherwise) that contradict the conditions of this License, they do notLicense200,10681 -integrity of the free software distribution system, which issystem218,11705 -those countries, so that distribution is permitted only in or amongcountries233,12513 -Software Foundation, write to the Free Software Foundation; we sometimesFoundation253,13629 -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHENPROGRAM261,14023 -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OFIMPLIED264,14242 -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OFINCLUDING264,14242 -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OFTO264,14242 -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,SERVICING267,14456 -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,ABOVE272,14696 -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,DAMAGES272,14696 -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISINGGENERAL273,14771 -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISINGSPECIAL273,14771 -possible use to the public, the best way to achieve this is to make itpublic285,15348 - Copyright (C) {year} {fullname}Copyright294,15793 - This program is free software; you can redistribute it and/or modifysoftware296,15831 - the Free Software Foundation; either version 2 of the License, orFoundation298,15977 - the Free Software Foundation; either version 2 of the License, orLicense298,15977 - but WITHOUT ANY WARRANTY; without even the implied warranty ofWARRANTY302,16156 - with this program; if not, write to the Free Software Foundation, Inc.,Foundation307,16415 - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.Street308,16491 - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.Floor308,16491 - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.Boston308,16491 - Gnomovision version 69, Copyright (C) year name of authorversion315,16741 - This is free software, and you are welcome to redistribute itsoftware317,16881 - under certain conditions; type `show c' for details.conditions318,16947 -be called something other than `show w' and `show c'; they could even bew322,17155 -school, if any, to sign a "copyright disclaimer" for the program, ifschool326,17358 -school, if any, to sign a "copyright disclaimer" for the program, ifny326,17358 -school, if any, to sign a "copyright disclaimer" for the program, ifprogram326,17358 - Yoyodyne, Inc., hereby disclaims all copyright interest in the programYoyodyne329,17475 - Ty Coon, President of ViceCoon333,17663 - -packages/raptor/raptor.yap,0 - -packages/raptor/raptor_config.h,60 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H1,0 - -packages/raptor/raptor_yap.c,773 -raptor_world *world;world33,1072 -struct exo_aux {exo_aux35,1094 - YAP_Functor functor;functor36,1111 - YAP_Functor functor;exo_aux::functor36,1111 - YAP_PredEntryPtr pred;pred37,1134 - YAP_PredEntryPtr pred;exo_aux::pred37,1134 - size_t n;n38,1159 - size_t n;exo_aux::n38,1159 -static YAP_Atom term_load(const raptor_term *term) {term_load41,1175 -static int so_far = 0;so_far70,2105 -static void load_triples(void *user_data, raptor_statement *triple) {load_triples72,2129 -static void count_triples(void *user_data, raptor_statement *triple) {count_triples85,2564 -static YAP_Bool load(void) {load95,2828 -static inline void raptor_yap_halt(int exit, void *world) {raptor_yap_halt158,4432 -X_API void raptor_yap_init(void) {raptor_yap_init162,4539 - -packages/raptor/rdf.yap,0 - -packages/raptor/xml2.yap,0 - -packages/raptor/xml2_yap.c,533 -struct exo_aux {exo_aux33,1038 - YAP_Functor functor;functor34,1055 - YAP_Functor functor;exo_aux::functor34,1055 - YAP_PredEntryPtr pred;pred35,1078 - YAP_PredEntryPtr pred;exo_aux::pred35,1078 - size_t n;n36,1103 - size_t n;exo_aux::n36,1103 -static Term read_atts(xmlAttr *att_node, sigjmp_buf *ji USES_REGS)read_atts40,1120 -print_element_names(xmlNode * a_node, sigjmp_buf *ji USES_REGS)print_element_names80,2225 -load_xml ( void )load_xml113,3222 -X_API void libxml2_yap_init (void)libxml2_yap_init162,4331 - -packages/README,0 - -packages/real/examples/for_real.pl,4748 -for_real :-for_real13,267 -for_real :-for_real30,765 -ex(int) :-ex40,972 -ex(int) :-ex40,972 -ex(int) :-ex40,972 -ex(float) :-ex50,1157 -ex(float) :-ex50,1157 -ex(float) :-ex50,1157 -ex(to_float) :-ex62,1440 -ex(to_float) :-ex62,1440 -ex(to_float) :-ex62,1440 -ex(bool) :- ex75,1619 -ex(bool) :- ex75,1619 -ex(bool) :- ex75,1619 -ex(at_bool) :- ex85,1832 -ex(at_bool) :- ex85,1832 -ex(at_bool) :- ex85,1832 -ex(bool_f) :-ex98,2092 -ex(bool_f) :-ex98,2092 -ex(bool_f) :-ex98,2092 -ex(bool_back) :- ex110,2397 -ex(bool_back) :- ex110,2397 -ex(bool_back) :- ex110,2397 -ex(atom_char) :- ex122,2600 -ex(atom_char) :- ex122,2600 -ex(atom_char) :- ex122,2600 -ex(matrix_int) :-ex132,2786 -ex(matrix_int) :-ex132,2786 -ex(matrix_int) :-ex132,2786 -ex(matrix_char) :-ex142,2996 -ex(matrix_char) :-ex142,2996 -ex(matrix_char) :-ex142,2996 -ex(matrix_idx) :-ex152,3122 -ex(matrix_idx) :-ex152,3122 -ex(matrix_idx) :-ex152,3122 -ex(list) :-ex162,3320 -ex(list) :-ex162,3320 -ex(list) :-ex162,3320 -ex(unamed) :-ex177,3644 -ex(unamed) :-ex177,3644 -ex(unamed) :-ex177,3644 -ex(list_ea) :- % produces errorex188,3809 -ex(list_ea) :- % produces errorex188,3809 -ex(list_ea) :- % produces errorex188,3809 -ex(list_eb) :- ex198,4006 -ex(list_eb) :- ex198,4006 -ex(list_eb) :- ex198,4006 -ex(char_list) :-ex208,4181 -ex(char_list) :-ex208,4181 -ex(char_list) :-ex208,4181 -ex(mix_list) :-ex219,4372 -ex(mix_list) :-ex219,4372 -ex(mix_list) :-ex219,4372 -ex(list2) :-ex229,4573 -ex(list2) :-ex229,4573 -ex(list2) :-ex229,4573 -ex(slot) :-ex241,4787 -ex(slot) :-ex241,4787 -ex(slot) :-ex241,4787 -ex(add_element) :-ex266,5534 -ex(add_element) :-ex266,5534 -ex(add_element) :-ex266,5534 -ex(singletons) :- ex279,5953 -ex(singletons) :- ex279,5953 -ex(singletons) :- ex279,5953 -ex(assign) :- ex293,6223 -ex(assign) :- ex293,6223 -ex(assign) :- ex293,6223 -ex(assign_1) :- ex306,6450 -ex(assign_1) :- ex306,6450 -ex(assign_1) :- ex306,6450 -ex(assign_2) :- ex316,6642 -ex(assign_2) :- ex316,6642 -ex(assign_2) :- ex316,6642 -ex(assign_r) :- ex329,6930 -ex(assign_r) :- ex329,6930 -ex(assign_r) :- ex329,6930 -ex(dot_in_function_names) :-ex345,7291 -ex(dot_in_function_names) :-ex345,7291 -ex(dot_in_function_names) :-ex345,7291 -ex(dot_in_rvar) :-ex357,7535 -ex(dot_in_rvar) :-ex357,7535 -ex(dot_in_rvar) :-ex357,7535 -ex(semi_column) :-ex368,7749 -ex(semi_column) :-ex368,7749 -ex(semi_column) :-ex368,7749 -ex(c_vectors) :-ex379,7944 -ex(c_vectors) :-ex379,7944 -ex(c_vectors) :-ex379,7944 -ex(empty_args) :-ex391,8212 -ex(empty_args) :-ex391,8212 -ex(empty_args) :-ex391,8212 -ex(string) :-ex401,8489 -ex(string) :-ex401,8489 -ex(string) :-ex401,8489 -ex(binary_op) :-ex415,8951 -ex(binary_op) :-ex415,8951 -ex(binary_op) :-ex415,8951 -ex(utf) :-ex428,9221 -ex(utf) :-ex428,9221 -ex(utf) :-ex428,9221 -ex(utf_atom) :-ex439,9494 -ex(utf_atom) :-ex439,9494 -ex(utf_atom) :-ex439,9494 -ex(utf_1) :-ex449,9692 -ex(utf_1) :-ex449,9692 -ex(utf_1) :-ex449,9692 -ex(utf_2) :-ex459,10025 -ex(utf_2) :-ex459,10025 -ex(utf_2) :-ex459,10025 -ex(plot_cpu) :-ex472,10466 -ex(plot_cpu) :-ex472,10466 -ex(plot_cpu) :-ex472,10466 -ex(debug) :-ex475,10506 -ex(debug) :-ex475,10506 -ex(debug) :-ex475,10506 -ex(rtest) :-ex496,11014 -ex(rtest) :-ex496,11014 -ex(rtest) :-ex496,11014 -list_times :-list_times522,11499 -tut(tut1) :-tut536,11904 -tut(tut1) :-tut536,11904 -tut(tut1) :-tut536,11904 -tut(tut2) :-tut545,12092 -tut(tut2) :-tut545,12092 -tut(tut2) :-tut545,12092 -tut(tut3) :-tut562,12510 -tut(tut3) :-tut562,12510 -tut(tut3) :-tut562,12510 -tut(tut4) :-tut568,12604 -tut(tut4) :-tut568,12604 -tut(tut4) :-tut568,12604 -tut(tut5) :-tut591,13594 -tut(tut5) :-tut591,13594 -tut(tut5) :-tut591,13594 -tut(tut6) :-tut616,14087 -tut(tut6) :-tut616,14087 -tut(tut6) :-tut616,14087 -tut(tut7) :-tut622,14330 -tut(tut7) :-tut622,14330 -tut(tut7) :-tut622,14330 -cpu_points( [], [], [] ).cpu_points629,14486 -cpu_points( [], [], [] ).cpu_points629,14486 -cpu_points( [H|T], [S|Ss], [L|Ls] ) :-cpu_points630,14512 -cpu_points( [H|T], [S|Ss], [L|Ls] ) :-cpu_points630,14512 -cpu_points( [H|T], [S|Ss], [L|Ls] ) :-cpu_points630,14512 -catch_controlled( Expr ) :-catch_controlled651,15101 -catch_controlled( Expr ) :-catch_controlled651,15101 -catch_controlled( Expr ) :-catch_controlled651,15101 -between_1_and(N,X) :-between_1_and655,15237 -between_1_and(N,X) :-between_1_and655,15237 -between_1_and(N,X) :-between_1_and655,15237 -cpu( R ) :-cpu661,15388 -cpu( R ) :-cpu661,15388 -cpu( R ) :-cpu661,15388 -plot_cpu( Factor ) :-plot_cpu672,15776 -plot_cpu( Factor ) :-plot_cpu672,15776 -plot_cpu( Factor ) :-plot_cpu672,15776 - -packages/real/examples/pagerank.pl,2430 -aleph :-aleph5,97 -pagerank(F) :-pagerank8,134 -pagerank(F) :-pagerank8,134 -pagerank(F) :-pagerank8,134 -max_element(S, IF, VF) :-max_element18,391 -max_element(S, IF, VF) :-max_element18,391 -max_element(S, IF, VF) :-max_element18,391 -max_element([], VF, IM, _, IM, VF).max_element22,474 -max_element([], VF, IM, _, IM, VF).max_element22,474 -max_element([V|Els], VM, _IM, I0, IF, VF) :-max_element23,510 -max_element([V|Els], VM, _IM, I0, IF, VF) :-max_element23,510 -max_element([V|Els], VM, _IM, I0, IF, VF) :-max_element23,510 -max_element([_|Els], VM, IM, I0, IF, VF) :-max_element27,625 -max_element([_|Els], VM, IM, I0, IF, VF) :-max_element27,625 -max_element([_|Els], VM, IM, I0, IF, VF) :-max_element27,625 -parse(File, L) :-parse31,726 -parse(File, L) :-parse31,726 -parse(File, L) :-parse31,726 -process(S, O) :-process36,820 -process(S, O) :-process36,820 -process(S, O) :-process36,820 -do((A :- B), O) :-do45,951 -do((A :- B), O) :-do45,951 -do((A :- B), O) :-do45,951 -do((:- G),_) :- catch(call(G),_,fail), !, fail.do48,1011 -do((:- G),_) :- catch(call(G),_,fail), !, fail.do48,1011 -do((:- G),_) :- catch(call(G),_,fail), !, fail.do48,1011 -process_body(B, _IDA, _) :- var(B), !, fail.process_body50,1060 -process_body(B, _IDA, _) :- var(B), !, fail.process_body50,1060 -process_body(B, _IDA, _) :- var(B), !, fail.process_body50,1060 -process_body((B1,B2), IDA,O) :- !,process_body51,1106 -process_body((B1,B2), IDA,O) :- !,process_body51,1106 -process_body((B1,B2), IDA,O) :- !,process_body51,1106 -process_body((B1;B2), IDA, O) :- !,process_body54,1198 -process_body((B1;B2), IDA, O) :- !,process_body54,1198 -process_body((B1;B2), IDA, O) :- !,process_body54,1198 -process_body((B1->B2), IDA, O) :- !,process_body57,1291 -process_body((B1->B2), IDA, O) :- !,process_body57,1291 -process_body((B1->B2), IDA, O) :- !,process_body57,1291 -process_body(B, IDA, O) :-process_body60,1385 -process_body(B, IDA, O) :-process_body60,1385 -process_body(B, IDA, O) :-process_body60,1385 -:- dynamic ids/1, found/3, exists/2.dynamic65,1482 -:- dynamic ids/1, found/3, exists/2.dynamic65,1482 -new(IDA,IDB) :-new67,1520 -new(IDA,IDB) :-new67,1520 -new(IDA,IDB) :-new67,1520 -id(F, I) :-id72,1587 -id(F, I) :-id72,1587 -id(F, I) :-id72,1587 -ids(0).ids76,1660 -ids(0).ids76,1660 -new(N, A, I) :-new78,1669 -new(N, A, I) :-new78,1669 -new(N, A, I) :-new78,1669 - -packages/real/examples/test_real.pl,294 -test_real(_) :-test_real12,267 -test_real(_) :-test_real12,267 -test_real(_) :-test_real12,267 -test(int_array) :-test18,333 -test(int_array) :-test18,333 -test(int_array) :-test18,333 -test(mixed_array) :-test23,394 -test(mixed_array) :-test23,394 -test(mixed_array) :-test23,394 - -packages/real/LICENSE,0 - -packages/real/Makefile_so,0 - -packages/real/pack.pl,1244 -version('1.1.0').version2,16 -version('1.1.0').version2,16 -title('Integrative statistics with R').title3,34 -title('Integrative statistics with R').title3,34 -keywords([statistics,'R',bioinformatics,'machine learning']).keywords4,74 -keywords([statistics,'R',bioinformatics,'machine learning']).keywords4,74 -author( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).author5,136 -author( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).author5,136 -author( 'Vitor Santos Costa', 'http:/www.dcc.fc.up.pt/~vsc' ).author6,199 -author( 'Vitor Santos Costa', 'http:/www.dcc.fc.up.pt/~vsc' ).author6,199 -packager( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).packager7,262 -packager( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).packager7,262 -maintainer( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).maintainer8,327 -maintainer( 'Nicos Angelopoulos', 'http://stoics.org.uk/~nicos' ).maintainer8,327 -home( 'http://stoics.org.uk/~nicos/sware/real' ).home9,394 -home( 'http://stoics.org.uk/~nicos/sware/real' ).home9,394 -download( 'http://stoics.org.uk/~nicos/sware/packs/real/real-*.tgz' ).download10,444 -download( 'http://stoics.org.uk/~nicos/sware/packs/real/real-*.tgz' ).download10,444 - -packages/real/pltotex.pl,1839 -pltotex(File, Options) :-pltotex13,264 -pltotex(File, Options) :-pltotex13,264 -pltotex(File, Options) :-pltotex13,264 -pltotex(Lib, Options) :-pltotex20,429 -pltotex(Lib, Options) :-pltotex20,429 -pltotex(Lib, Options) :-pltotex20,429 -tex_file(_, TeXFile, Options) :-tex_file36,791 -tex_file(_, TeXFile, Options) :-tex_file36,791 -tex_file(_, TeXFile, Options) :-tex_file36,791 -tex_file(File, TeXFile, _) :-tex_file39,898 -tex_file(File, TeXFile, _) :-tex_file39,898 -tex_file(File, TeXFile, _) :-tex_file39,898 -strip(In, Code, Out) :-strip45,1066 -strip(In, Code, Out) :-strip45,1066 -strip(In, Code, Out) :-strip45,1066 -pltotex :-pltotex55,1238 -main(Argv) :-main58,1257 -main(Argv) :-main58,1257 -main(Argv) :-main58,1257 -is_option(Arg) :-is_option63,1396 -is_option(Arg) :-is_option63,1396 -is_option(Arg) :-is_option63,1396 -to_option('--section', section_level(section)) :- !.to_option66,1444 -to_option('--section', section_level(section)) :- !.to_option66,1444 -to_option('--section', section_level(section)) :- !.to_option66,1444 -to_option('--subsection', section_level(subsection)) :- !.to_option67,1497 -to_option('--subsection', section_level(subsection)) :- !.to_option67,1497 -to_option('--subsection', section_level(subsection)) :- !.to_option67,1497 -to_option('--subsubsection', section_level(subsubsection)) :- !.to_option68,1556 -to_option('--subsubsection', section_level(subsubsection)) :- !.to_option68,1556 -to_option('--subsubsection', section_level(subsubsection)) :- !.to_option68,1556 -to_option(Arg, Option) :-to_option69,1621 -to_option(Arg, Option) :-to_option69,1621 -to_option(Arg, Option) :-to_option69,1621 -process_file(Options, File) :-process_file76,1797 -process_file(Options, File) :-process_file76,1797 -process_file(Options, File) :-process_file76,1797 - -packages/real/rconfig.h,174 -#define RCONFIG_HRCONFIG_H7,343 -#define HAVE_R_H HAVE_R_H11,437 -#define HAVE_R_EMBEDDED_H HAVE_R_EMBEDDED_H16,548 -#define HAVE_R_INTERFACE_H HAVE_R_INTERFACE_H21,669 - -packages/real/real.c,6725 -#define CSTACK_DEFNSCSTACK_DEFNS2,1 -#define R_SIGNAL_HANDLERS R_SIGNAL_HANDLERS13,251 -#define PROTECT_AND_COUNT(PROTECT_AND_COUNT23,418 -#define Ureturn Ureturn30,908 -#define PROTECT_AND_COUNT(PROTECT_AND_COUNT39,1490 -#define Ureturn Ureturn44,1818 -static inline SEXP protected_tryEval(SEXP expr, SEXP env, int *errp) {protected_tryEval51,2020 -static atom_t ATOM_break;ATOM_break57,2161 -static atom_t ATOM_false;ATOM_false58,2187 -static atom_t ATOM_function;ATOM_function59,2213 -static atom_t ATOM_i;ATOM_i60,2242 -static atom_t ATOM_next;ATOM_next61,2264 -static atom_t ATOM_true;ATOM_true62,2289 -static functor_t FUNCTOR_at2;FUNCTOR_at264,2315 -static functor_t FUNCTOR_boolop1;FUNCTOR_boolop165,2345 -static functor_t FUNCTOR_brackets1;FUNCTOR_brackets166,2379 -static functor_t FUNCTOR_dollar1;FUNCTOR_dollar167,2415 -static functor_t FUNCTOR_dollar2;FUNCTOR_dollar268,2449 -static functor_t FUNCTOR_dot1;FUNCTOR_dot169,2483 -static functor_t FUNCTOR_equal2;FUNCTOR_equal270,2514 -static functor_t FUNCTOR_hat2;FUNCTOR_hat271,2547 -static functor_t FUNCTOR_i1;FUNCTOR_i172,2578 -static functor_t FUNCTOR_if2;FUNCTOR_if273,2607 -static functor_t FUNCTOR_iff2;FUNCTOR_iff274,2637 -static functor_t FUNCTOR_iff3;FUNCTOR_iff375,2668 -static functor_t FUNCTOR_in2;FUNCTOR_in276,2699 -static functor_t FUNCTOR_inner2;FUNCTOR_inner277,2729 -static functor_t FUNCTOR_for3;FUNCTOR_for378,2762 -static functor_t FUNCTOR_minus1;FUNCTOR_minus179,2793 -static functor_t FUNCTOR_minus2;FUNCTOR_minus280,2826 -static functor_t FUNCTOR_outer2;FUNCTOR_outer281,2859 -static functor_t FUNCTOR_plus1;FUNCTOR_plus182,2892 -static functor_t FUNCTOR_plus2;FUNCTOR_plus283,2924 -static functor_t FUNCTOR_quote1;FUNCTOR_quote184,2956 -static functor_t FUNCTOR_repeat1;FUNCTOR_repeat185,2989 -static functor_t FUNCTOR_square_brackets2;FUNCTOR_square_brackets286,3023 -static functor_t FUNCTOR_tilde1;FUNCTOR_tilde187,3066 -static functor_t FUNCTOR_tilde2;FUNCTOR_tilde288,3099 -static functor_t FUNCTOR_while2;FUNCTOR_while289,3132 -#define PL_R_BOOL PL_R_BOOL96,3292 -#define PL_R_CHARS PL_R_CHARS97,3338 -#define PL_R_INTEGER PL_R_INTEGER98,3384 -#define PL_R_FLOAT PL_R_FLOAT99,3421 -#define PL_R_COMPLEX PL_R_COMPLEX100,3461 -#define PL_R_SYMBOL PL_R_SYMBOL101,3503 -#define PL_R_CALL PL_R_CALL102,3540 -#define PL_R_LISTEL PL_R_LISTEL103,3580 -#define PL_R_SLOT PL_R_SLOT104,3624 -#define PL_R_NAME PL_R_NAME105,3666 -#define PL_R_PLUS PL_R_PLUS106,3730 -#define PL_R_PSYMBOL PL_R_PSYMBOL107,3768 -#define PL_R_ATBOOL PL_R_ATBOOL108,3806 -#define PL_R_VARIABLE PL_R_VARIABLE109,3844 -#define PL_R_SUBSET PL_R_SUBSET110,3879 -#define PL_R_DOT PL_R_DOT111,3915 -#define PL_R_DEFUN PL_R_DEFUN112,3950 -#define PL_R_QUOTE PL_R_QUOTE113,4006 -#define PL_R_INNER PL_R_INNER114,4048 -#define PL_R_OUTER PL_R_OUTER115,4085 -#define PL_R_FORMULA PL_R_FORMULA116,4122 -#define PL_R_IF PL_R_IF117,4164 -#define PL_R_IF_ELSE PL_R_IF_ELSE118,4213 -#define PL_R_FOR PL_R_FOR119,4268 -#define PL_R_WHILE PL_R_WHILE120,4323 -#define PL_R_REPEAT PL_R_REPEAT121,4375 -#define PL_R_NEXT PL_R_NEXT122,4422 -#define PL_R_BREAK PL_R_BREAK123,4461 -#define PL_R_IN PL_R_IN124,4501 -#define PL_R_RFORMULA PL_R_RFORMULA125,4541 -#define PL_R_EQUAL PL_R_EQUAL126,4580 -#define PL_R_VECTOR PL_R_VECTOR127,4619 -#define REAL_Error(REAL_Error129,4663 -static bool REAL_Error__(int line, const char *function, const char *s,REAL_Error__131,4732 -#define _PL_get_arg _PL_get_arg141,5055 -#define Sdprintf(Sdprintf143,5087 -static size_t pos_dims(size_t R_index[], size_t ndims, size_t dims[]) {pos_dims145,5135 -static void inc_dims(size_t R_index[], size_t ndims, size_t dims[]) {inc_dims153,5333 -static size_t sexp_rank(SEXP sexp) {sexp_rank162,5523 -static int sexp_shape(SEXP sexp, size_t nd, size_t *shape) {sexp_shape174,5848 -static SEXP getListElement(SEXP list, const char *str) {getListElement189,6242 -static int setListElement(term_t t, SEXP s_str, SEXP sexp) {setListElement203,6596 -static int complex_term(term_t head, double *valxP, double *valyP) {complex_term246,7788 -static int REAL_term_type(term_t t, int context) {REAL_term_type268,8715 -static int merge_dots(term_t t) {merge_dots428,12499 -static int term_to_S_el(term_t t, int objtype, size_t index, SEXP ans) {term_to_S_el478,14085 -static int sexp_to_S_el(SEXP sin, size_t index, SEXP ans) {sexp_to_S_el568,16200 -static int set_listEl_to_sexp(term_t t, SEXP sexp) {set_listEl_to_sexp633,17735 -static SEXP list_to_sexp(term_t t, int objtype) {list_to_sexp652,18219 -static int slot_to_sexp(term_t t, SEXP *ansP) {slot_to_sexp782,21804 -static int set_slot_to_sexp(term_t t, SEXP sexp) {set_slot_to_sexp814,22560 -static int listEl_to_sexp(term_t t, SEXP *ansP) {listEl_to_sexp845,23298 -static SEXP pl_to_func(term_t t, bool eval) {pl_to_func872,23963 -static int pl_to_body(term_t t, SEXP *ansP) {pl_to_body955,26026 -static int pl_to_defun(term_t t, SEXP *ansP) {pl_to_defun983,26689 -static int old_list_to_sexp(term_t t, SEXP c_R, int n, bool eval) {old_list_to_sexp1031,27754 -static SEXP subset_to_sexp(term_t t, bool eval) {subset_to_sexp1053,28221 -static int set_subset_eval(SEXP symbol, term_t a, SEXP lhs_R, SEXP sexp) {set_subset_eval1108,29468 -static int set_subset_to_sexp(term_t t, SEXP sexp) {set_subset_to_sexp1141,30382 -static int pl_to_unary(const char *s, term_t t, SEXP *ansP) {pl_to_unary1177,31263 -static int pl_to_binary(const char *s, term_t t, term_t tmp, SEXP *ansP) {pl_to_binary1187,31525 -static SEXP(term_to_sexp(term_t t, bool eval)) {term_to_sexp1213,32233 -static int bind_sexp(term_t t, SEXP sexp) {bind_sexp1470,38926 -static int sexp_to_pl(term_t t, SEXP s) {sexp_to_pl1659,43439 -static foreign_t init_R(void) {init_R1866,49448 -static foreign_t stop_R(void) {stop_R1880,49695 -static SEXP process_expression(const char *expression) {process_expression1893,49909 -static foreign_t send_R_command(term_t cmd) {send_R_command1923,50960 -static foreign_t send_c_vector(term_t tvec, term_t tout) {send_c_vector1943,51525 -static foreign_t rexpr_to_pl_term(term_t in, term_t out) {rexpr_to_pl_term2027,53466 -static foreign_t robj_to_pl_term(term_t name, term_t out) {robj_to_pl_term2049,53894 -static foreign_t set_R_variable(term_t rvar, term_t value) {set_R_variable2073,54413 -static foreign_t execute_R_1(term_t value) {execute_R_12090,54827 -static foreign_t execute_R(term_t rvar, term_t value) {execute_R2108,55219 -static foreign_t is_R_variable(term_t t) {is_R_variable2139,55990 -#define ATOM_dot ATOM_dot2158,56479 -install_real(void) { /* FUNCTOR_dot2 = PL_new_functor(PL_new_atom("."), 2); */install_real2162,56537 - -packages/real/real.h,1708 -#define BUFSIZE BUFSIZE10,162 -typedef unsigned int PL_Type;PL_Type12,183 -#define PL_Nil PL_Nil14,214 -#define PL_Var PL_Var15,237 -#define PL_Atom PL_Atom16,260 -#define PL_Appl PL_Appl17,283 -#define PL_Pair PL_Pair18,306 -#define PL_Int PL_Int19,329 -#define PL_Float PL_Float20,352 -#define PL_DbRef PL_DbRef21,375 -#define PL_Unknown PL_Unknown22,398 - r_undefined,r_undefined27,439 - r_double,r_double28,454 - r_int,r_int29,466 - r_characterr_character30,475 -} r_basic_types;r_basic_types31,489 - r_basic_types type;type35,524 - r_basic_types type;__anon485::type35,524 - int int_val;int_val37,559 - int int_val;__anon485::__anon486::int_val37,559 - double double_val;double_val38,580 - double double_val;__anon485::__anon486::double_val38,580 - char *char_val;char_val39,604 - char *char_val;__anon485::__anon486::char_val39,604 - } real_u;real_u40,627 - } real_u;__anon485::real_u40,627 -} list_cell;list_cell41,639 - int size;size45,670 - int size;__anon487::size45,670 - int nDims;nDims46,692 - int nDims;__anon487::nDims46,692 - int dims[BUFSIZE];dims47,715 - int dims[BUFSIZE];__anon487::dims47,715 - list_cell values[BUFSIZE];values48,746 - list_cell values[BUFSIZE];__anon487::values48,746 -} list;list49,779 -#define real_Int real_Int51,788 -#define real_Float real_Float52,813 -#define real_Char real_Char53,838 -#define real_Bool real_Bool54,863 -#define real_ty_Vector real_ty_Vector56,889 -#define real_ty_Matrix real_ty_Matrix57,919 -#define real_ty_List real_ty_List58,949 -#define real_ty_Array real_ty_Array59,979 - -packages/real/real.pl,20710 -init_r_env :-init_r_env80,2048 -init_r_env :-init_r_env87,2270 -init_r_env :-init_r_env114,3191 -init_r_env :-init_r_env122,3477 -init_r_env :-init_r_env130,3747 -init_r_env :-init_r_env134,3850 -init_r_env :-init_r_env144,4139 -dirpath_to_r_home( This0, Rhome ) :-dirpath_to_r_home149,4238 -dirpath_to_r_home( This0, Rhome ) :-dirpath_to_r_home149,4238 -dirpath_to_r_home( This0, Rhome ) :-dirpath_to_r_home149,4238 -dirpath_to_r_home( This, Rhome ) :-dirpath_to_r_home152,4344 -dirpath_to_r_home( This, Rhome ) :-dirpath_to_r_home152,4344 -dirpath_to_r_home( This, Rhome ) :-dirpath_to_r_home152,4344 -r_home_postfix( 'lib64/R' ) :-r_home_postfix164,4675 -r_home_postfix( 'lib64/R' ) :-r_home_postfix164,4675 -r_home_postfix( 'lib64/R' ) :-r_home_postfix164,4675 -r_home_postfix( 'lib/R' ).r_home_postfix166,4748 -r_home_postfix( 'lib/R' ).r_home_postfix166,4748 -to_nth( [To|T], To, T ) :- !.to_nth168,4778 -to_nth( [To|T], To, T ) :- !.to_nth168,4778 -to_nth( [To|T], To, T ) :- !.to_nth168,4778 -to_nth( [_H|T], To, Right ) :-to_nth169,4809 -to_nth( [_H|T], To, Right ) :-to_nth169,4809 -to_nth( [_H|T], To, Right ) :-to_nth169,4809 -install_in_ms_windows( ToR ) :-install_in_ms_windows174,4981 -install_in_ms_windows( ToR ) :-install_in_ms_windows174,4981 -install_in_ms_windows( ToR ) :-install_in_ms_windows174,4981 -install_in_ms_windows(RPath) :-install_in_ms_windows179,5157 -install_in_ms_windows(RPath) :-install_in_ms_windows179,5157 -install_in_ms_windows(RPath) :-install_in_ms_windows179,5157 -install_in_ms_windows_path(RPath) :-install_in_ms_windows_path183,5242 -install_in_ms_windows_path(RPath) :-install_in_ms_windows_path183,5242 -install_in_ms_windows_path(RPath) :-install_in_ms_windows_path183,5242 -install_in_osx :-install_in_osx191,5575 -install_in_osx :-install_in_osx197,5783 -install_in_osx :-install_in_osx203,6012 -start_r :-start_r219,6494 -end_r :-end_r233,6784 -'<-'(X) :- !,<-245,7171 -'<-'(X) :- !,<-245,7171 -'<-'(X) :- !,<-245,7171 -'<-'(X) :-<-247,7209 -'<-'(X) :-<-247,7209 -'<-'(X) :-<-247,7209 -'<-'(X,Y) :- !,<-279,8422 -'<-'(X,Y) :- !,<-279,8422 -'<-'(X,Y) :- !,<-279,8422 -'<-'(X,Y) :-<-281,8467 -'<-'(X,Y) :-<-281,8467 -'<-'(X,Y) :-<-281,8467 -r( RvarIn ) :-r288,8540 -r( RvarIn ) :-r288,8540 -r( RvarIn ) :-r288,8540 -r( R ) :-r298,8885 -r( R ) :-r298,8885 -r( R ) :-r298,8885 -r( _Other ) :-r303,8989 -r( _Other ) :-r303,8989 -r( _Other ) :-r303,8989 -r( Plvar, RvarIn ) :-r311,9126 -r( Plvar, RvarIn ) :-r311,9126 -r( Plvar, RvarIn ) :-r311,9126 -r( Plvar, Rexpr ) :-r318,9359 -r( Plvar, Rexpr ) :-r318,9359 -r( Plvar, Rexpr ) :-r318,9359 -r( RvarIn, PlrExpr ) :-r326,9625 -r( RvarIn, PlrExpr ) :-r326,9625 -r( RvarIn, PlrExpr ) :-r326,9625 -r( LRexpr, RRexpr ) :-r330,9717 -r( LRexpr, RRexpr ) :-r330,9717 -r( LRexpr, RRexpr ) :-r330,9717 -r( _Plvar, _Rexpr ) :-r335,9867 -r( _Plvar, _Rexpr ) :-r335,9867 -r( _Plvar, _Rexpr ) :-r335,9867 -is_rvar( Rvar ) :-is_rvar341,10075 -is_rvar( Rvar ) :-is_rvar341,10075 -is_rvar( Rvar ) :-is_rvar341,10075 -is_rvar( RvarIn, Rvar ) :-is_rvar347,10298 -is_rvar( RvarIn, Rvar ) :-is_rvar347,10298 -is_rvar( RvarIn, Rvar ) :-is_rvar347,10298 -is_rvar( RvarIn, Rvar ) :-is_rvar351,10387 -is_rvar( RvarIn, Rvar ) :-is_rvar351,10387 -is_rvar( RvarIn, Rvar ) :-is_rvar351,10387 -r_char( Atomic, Rchar ) :-r_char364,10899 -r_char( Atomic, Rchar ) :-r_char364,10899 -r_char( Atomic, Rchar ) :-r_char364,10899 -devoff :-devoff371,11119 -devoff_all :-devoff_all379,11215 -r_wait :-r_wait391,11406 -real_debug :-real_debug399,11605 -real_nodebug :-real_nodebug406,11740 -real_version( 1:0:4, date(2013,12,25), sinter_class ).real_version414,11990 -real_version( 1:0:4, date(2013,12,25), sinter_class ).real_version414,11990 -real_citation( Atom, bibtex(Type,Key,Pairs) ) :-real_citation423,12437 -real_citation( Atom, bibtex(Type,Key,Pairs) ) :-real_citation423,12437 -real_citation( Atom, bibtex(Type,Key,Pairs) ) :-real_citation423,12437 -r_remove( Plvar ) :-r_remove440,13419 -r_remove( Plvar ) :-r_remove440,13419 -r_remove( Plvar ) :-r_remove440,13419 -send_r_codes( Rcodes ) :-send_r_codes443,13469 -send_r_codes( Rcodes ) :-send_r_codes443,13469 -send_r_codes( Rcodes ) :-send_r_codes443,13469 -rexpr_codes( Rterm, RTmps, Rcodes ) :-rexpr_codes447,13581 -rexpr_codes( Rterm, RTmps, Rcodes ) :-rexpr_codes447,13581 -rexpr_codes( Rterm, RTmps, Rcodes ) :-rexpr_codes447,13581 -assignment(PlDataIn, Rvar) :-assignment450,13670 -assignment(PlDataIn, Rvar) :-assignment450,13670 -assignment(PlDataIn, Rvar) :-assignment450,13670 -assignment(PlDataIn, Rvar) :-assignment457,13914 -assignment(PlDataIn, Rvar) :-assignment457,13914 -assignment(PlDataIn, Rvar) :-assignment457,13914 -assignment( Rexpr, Rvar ) :-assignment468,14339 -assignment( Rexpr, Rvar ) :-assignment468,14339 -assignment( Rexpr, Rvar ) :-assignment468,14339 -pl_data( PlData, PlData ) :-pl_data475,14547 -pl_data( PlData, PlData ) :-pl_data475,14547 -pl_data( PlData, PlData ) :-pl_data475,14547 -pl_data( PlDataIn, PlData ) :-pl_data478,14658 -pl_data( PlDataIn, PlData ) :-pl_data478,14658 -pl_data( PlDataIn, PlData ) :-pl_data478,14658 -rvar_identifier( Rt, Rv, Rc ) :-rvar_identifier492,15114 -rvar_identifier( Rt, Rv, Rc ) :-rvar_identifier492,15114 -rvar_identifier( Rt, Rv, Rc ) :-rvar_identifier492,15114 -rvar_identifier_1( Rvar, Rvar, Rvar ) :-rvar_identifier_1498,15255 -rvar_identifier_1( Rvar, Rvar, Rvar ) :-rvar_identifier_1498,15255 -rvar_identifier_1( Rvar, Rvar, Rvar ) :-rvar_identifier_1498,15255 -rvar_identifier_1( A..B, Atom, Atom ) :-rvar_identifier_1502,15382 -rvar_identifier_1( A..B, Atom, Atom ) :-rvar_identifier_1502,15382 -rvar_identifier_1( A..B, Atom, Atom ) :-rvar_identifier_1502,15382 -rvar_identifier_1( A$B, Rv, C ) :-rvar_identifier_1506,15516 -rvar_identifier_1( A$B, Rv, C ) :-rvar_identifier_1506,15516 -rvar_identifier_1( A$B, Rv, C ) :-rvar_identifier_1506,15516 -rvar_identifier_1( A@B, Rv, C ) :-rvar_identifier_1511,15705 -rvar_identifier_1( A@B, Rv, C ) :-rvar_identifier_1511,15705 -rvar_identifier_1( A@B, Rv, C ) :-rvar_identifier_1511,15705 -rvar_identifier_1( []([[B]],A), Rv, C ) :-rvar_identifier_1515,15858 -rvar_identifier_1( []([[B]],A), Rv, C ) :-rvar_identifier_1515,15858 -rvar_identifier_1( []([[B]],A), Rv, C ) :-rvar_identifier_1515,15858 -rvar_identifier_1( A^[[B]], Rv, C ) :-rvar_identifier_1520,16067 -rvar_identifier_1( A^[[B]], Rv, C ) :-rvar_identifier_1520,16067 -rvar_identifier_1( A^[[B]], Rv, C ) :-rvar_identifier_1520,16067 -rvar_identifier_1( [](B,A), A, C ) :-rvar_identifier_1525,16272 -rvar_identifier_1( [](B,A), A, C ) :-rvar_identifier_1525,16272 -rvar_identifier_1( [](B,A), A, C ) :-rvar_identifier_1525,16272 -rvar_identifier_1( A^B, A, C ) :-rvar_identifier_1529,16412 -rvar_identifier_1( A^B, A, C ) :-rvar_identifier_1529,16412 -rvar_identifier_1( A^B, A, C ) :-rvar_identifier_1529,16412 -rexpr_codes(V,[]) -->rexpr_codes540,16692 -rexpr_codes(V,[]) -->rexpr_codes540,16692 -rexpr_codes(V,[]) -->rexpr_codes540,16692 -rexpr_codes(T,[]) -->rexpr_codes543,16785 -rexpr_codes(T,[]) -->rexpr_codes543,16785 -rexpr_codes(T,[]) -->rexpr_codes543,16785 -rexpr_codes(+A,[]) -->rexpr_codes549,16914 -rexpr_codes(+A,[]) -->rexpr_codes549,16914 -rexpr_codes(+A,[]) -->rexpr_codes549,16914 -rexpr_codes(-A,[]) -->rexpr_codes553,17006 -rexpr_codes(-A,[]) -->rexpr_codes553,17006 -rexpr_codes(-A,[]) -->rexpr_codes553,17006 -rexpr_codes(=+(A,B),List) -->rexpr_codes557,17116 -rexpr_codes(=+(A,B),List) -->rexpr_codes557,17116 -rexpr_codes(=+(A,B),List) -->rexpr_codes557,17116 -rexpr_codes(Array,TmpRs) -->rexpr_codes560,17182 -rexpr_codes(Array,TmpRs) -->rexpr_codes560,17182 -rexpr_codes(Array,TmpRs) -->rexpr_codes560,17182 -rexpr_codes(A,[]) -->rexpr_codes564,17284 -rexpr_codes(A,[]) -->rexpr_codes564,17284 -rexpr_codes(A,[]) -->rexpr_codes564,17284 -rexpr_codes(A,[]) --> % fixme: remove when .rexpr_codes568,17370 -rexpr_codes(A,[]) --> % fixme: remove when .rexpr_codes568,17370 -rexpr_codes(A,[]) --> % fixme: remove when .rexpr_codes568,17370 -rexpr_codes(A,List) -->rexpr_codes573,17609 -rexpr_codes(A,List) -->rexpr_codes573,17609 -rexpr_codes(A,List) -->rexpr_codes573,17609 -rexpr_codes(A,[]) -->rexpr_codes582,17759 -rexpr_codes(A,[]) -->rexpr_codes582,17759 -rexpr_codes(A,[]) -->rexpr_codes582,17759 -rexpr_codes(A,[]) -->rexpr_codes586,17850 -rexpr_codes(A,[]) -->rexpr_codes586,17850 -rexpr_codes(A,[]) -->rexpr_codes586,17850 -rexpr_codes(A,[]) -->rexpr_codes590,17922 -rexpr_codes(A,[]) -->rexpr_codes590,17922 -rexpr_codes(A,[]) -->rexpr_codes590,17922 -rexpr_codes(AKey, TmpRs) -->rexpr_codes593,17982 -rexpr_codes(AKey, TmpRs) -->rexpr_codes593,17982 -rexpr_codes(AKey, TmpRs) -->rexpr_codes593,17982 -rexpr_codes(A^[[Key]], TmpRs) -->rexpr_codes600,18190 -rexpr_codes(A^[[Key]], TmpRs) -->rexpr_codes600,18190 -rexpr_codes(A^[[Key]], TmpRs) -->rexpr_codes600,18190 -rexpr_codes(AList, TmpRs) -->rexpr_codes606,18364 -rexpr_codes(AList, TmpRs) -->rexpr_codes606,18364 -rexpr_codes(AList, TmpRs) -->rexpr_codes606,18364 -rexpr_codes(A^List, TmpRs) -->rexpr_codes611,18491 -rexpr_codes(A^List, TmpRs) -->rexpr_codes611,18491 -rexpr_codes(A^List, TmpRs) -->rexpr_codes611,18491 -rexpr_codes(A$B,TmpA) -->rexpr_codes616,18631 -rexpr_codes(A$B,TmpA) -->rexpr_codes616,18631 -rexpr_codes(A$B,TmpA) -->rexpr_codes616,18631 -rexpr_codes(A@B,TmpA) -->rexpr_codes622,18744 -rexpr_codes(A@B,TmpA) -->rexpr_codes622,18744 -rexpr_codes(A@B,TmpA) -->rexpr_codes622,18744 -rexpr_codes(A1..A2,TmpRs) --> !,rexpr_codes628,18857 -rexpr_codes(A1..A2,TmpRs) --> !,rexpr_codes628,18857 -rexpr_codes(A1..A2,TmpRs) --> !,rexpr_codes628,18857 -rexpr_codes((A1 :- A2), TmpRs) -->rexpr_codes636,19082 -rexpr_codes((A1 :- A2), TmpRs) -->rexpr_codes636,19082 -rexpr_codes((A1 :- A2), TmpRs) -->rexpr_codes636,19082 -rexpr_codes(S,TmpRs) -->rexpr_codes643,19213 -rexpr_codes(S,TmpRs) -->rexpr_codes643,19213 -rexpr_codes(S,TmpRs) -->rexpr_codes643,19213 -rexpr_codes(S,TmpRs) -->rexpr_codes656,19564 -rexpr_codes(S,TmpRs) -->rexpr_codes656,19564 -rexpr_codes(S,TmpRs) -->rexpr_codes656,19564 -left(Na) --> ({no_brace(Na)} -> "" ; "(").left664,19727 -left(Na) --> ({no_brace(Na)} -> "" ; "(").left664,19727 -left(Na) --> ({no_brace(Na)} -> "" ; "(").left664,19727 -left(Na) --> ({no_brace(Na)} -> "" ; "(").left664,19727 -left(Na) --> ({no_brace(Na)} -> "" ; "(").left664,19727 -right(Na) --> ({no_brace(Na)} -> "" ; ")").right665,19772 -right(Na) --> ({no_brace(Na)} -> "" ; ")").right665,19772 -right(Na) --> ({no_brace(Na)} -> "" ; ")").right665,19772 -right(Na) --> ({no_brace(Na)} -> "" ; ")").right665,19772 -right(Na) --> ({no_brace(Na)} -> "" ; ")").right665,19772 -no_brace(<-).no_brace667,19819 -no_brace(<-).no_brace667,19819 -no_brace(=).no_brace668,19834 -no_brace(=).no_brace668,19834 -no_brace(+).no_brace669,19848 -no_brace(+).no_brace669,19848 -rexprs_codes([], _, _, []) --> [].rexprs_codes671,19864 -rexprs_codes([], _, _, []) --> [].rexprs_codes671,19864 -rexprs_codes([], _, _, []) --> [].rexprs_codes671,19864 -rexprs_codes([Arg|Args], Fin, Func, TmpRs) -->rexprs_codes672,19900 -rexprs_codes([Arg|Args], Fin, Func, TmpRs) -->rexprs_codes672,19900 -rexprs_codes([Arg|Args], Fin, Func, TmpRs) -->rexprs_codes672,19900 -rexpr_unquoted(A, TmpRs) -->rexpr_unquoted680,20134 -rexpr_unquoted(A, TmpRs) -->rexpr_unquoted680,20134 -rexpr_unquoted(A, TmpRs) -->rexpr_unquoted680,20134 -literal(1, library).literal689,20290 -literal(1, library).literal689,20290 -literal(1, require).literal690,20312 -literal(1, require).literal690,20312 -indices_to_string( List ) -->indices_to_string693,20340 -indices_to_string( List ) -->indices_to_string693,20340 -indices_to_string( List ) -->indices_to_string693,20340 -index_to_string( [] ) --> [].index_to_string698,20414 -index_to_string( [] ) --> [].index_to_string698,20414 -index_to_string( [] ) --> [].index_to_string698,20414 -index_to_string( [H|T] ) -->index_to_string699,20445 -index_to_string( [H|T] ) -->index_to_string699,20445 -index_to_string( [H|T] ) -->index_to_string699,20445 -index_element_to_string( * ) -->index_element_to_string704,20565 -index_element_to_string( * ) -->index_element_to_string704,20565 -index_element_to_string( * ) -->index_element_to_string704,20565 -index_element_to_string( List ) -->index_element_to_string706,20605 -index_element_to_string( List ) -->index_element_to_string706,20605 -index_element_to_string( List ) -->index_element_to_string706,20605 -index_element_to_string( +Atom ) -->index_element_to_string710,20706 -index_element_to_string( +Atom ) -->index_element_to_string710,20706 -index_element_to_string( +Atom ) -->index_element_to_string710,20706 -index_element_to_string( -El ) -->index_element_to_string713,20809 -index_element_to_string( -El ) -->index_element_to_string713,20809 -index_element_to_string( -El ) -->index_element_to_string713,20809 -index_element_to_string( ElR:ElL ) -->index_element_to_string716,20883 -index_element_to_string( ElR:ElL ) -->index_element_to_string716,20883 -index_element_to_string( ElR:ElL ) -->index_element_to_string716,20883 -index_element_to_string( +String ) --> % fixme: remove at .index_element_to_string720,20994 -index_element_to_string( +String ) --> % fixme: remove at .index_element_to_string720,20994 -index_element_to_string( +String ) --> % fixme: remove at .index_element_to_string720,20994 -index_element_to_string( +String ) -->index_element_to_string723,21104 -index_element_to_string( +String ) -->index_element_to_string723,21104 -index_element_to_string( +String ) -->index_element_to_string723,21104 -index_element_to_string( CExp ) -->index_element_to_string726,21191 -index_element_to_string( CExp ) -->index_element_to_string726,21191 -index_element_to_string( CExp ) -->index_element_to_string726,21191 -index_element_to_string( Oth ) -->index_element_to_string729,21288 -index_element_to_string( Oth ) -->index_element_to_string729,21288 -index_element_to_string( Oth ) -->index_element_to_string729,21288 -index_element_to_string( CExp ) -->index_element_to_string732,21409 -index_element_to_string( CExp ) -->index_element_to_string732,21409 -index_element_to_string( CExp ) -->index_element_to_string732,21409 -index_comma( [] ) --> !, [].index_comma735,21489 -index_comma( [] ) --> !, [].index_comma735,21489 -index_comma( [] ) --> !, [].index_comma735,21489 -index_comma( _ ) -->index_comma736,21519 -index_comma( _ ) -->index_comma736,21519 -index_comma( _ ) -->index_comma736,21519 -codes_string([],[]).codes_string745,21716 -codes_string([],[]).codes_string745,21716 -codes_string(.(C,Cs),Q) :-codes_string746,21738 -codes_string(.(C,Cs),Q) :-codes_string746,21738 -codes_string(.(C,Cs),Q) :-codes_string746,21738 -char_my_utf8( C ) :-char_my_utf8754,21925 -char_my_utf8( C ) :-char_my_utf8754,21925 -char_my_utf8( C ) :-char_my_utf8754,21925 -char_my_utf8( C ) :-char_my_utf8757,21974 -char_my_utf8( C ) :-char_my_utf8757,21974 -char_my_utf8( C ) :-char_my_utf8757,21974 -sew_code( 34, [0'\\,0'"|T], T ) :- !.sew_code763,22122 -sew_code( 34, [0'\\,0'"|T], T ) :- !.sew_code763,22122 -sew_code( 34, [0'\\,0'"|T], T ) :- !.sew_code763,22122 -sew_code( C, [C|T], T ).sew_code764,22161 -sew_code( C, [C|T], T ).sew_code764,22161 -add_name( Name ) -->add_name772,22332 -add_name( Name ) -->add_name772,22332 -add_name( Name ) -->add_name772,22332 -rname_atom( Rname, Atom ) :-rname_atom784,22629 -rname_atom( Rname, Atom ) :-rname_atom784,22629 -rname_atom( Rname, Atom ) :-rname_atom784,22629 -add_atom([]) --> !,add_atom794,22838 -add_atom([]) --> !,add_atom794,22838 -add_atom([]) --> !,add_atom794,22838 -add_atom( -A ) -->add_atom796,22869 -add_atom( -A ) -->add_atom796,22869 -add_atom( -A ) -->add_atom796,22869 -add_atom( -A ) -->add_atom800,22938 -add_atom( -A ) -->add_atom800,22938 -add_atom( -A ) -->add_atom800,22938 -add_atom([C|Codes] ) -->add_atom804,23007 -add_atom([C|Codes] ) -->add_atom804,23007 -add_atom([C|Codes] ) -->add_atom804,23007 -add_atom(A) -->add_atom809,23142 -add_atom(A) -->add_atom809,23142 -add_atom(A) -->add_atom809,23142 -check_quoted(true, _) --> !, "TRUE".check_quoted813,23215 -check_quoted(true, _) --> !, "TRUE".check_quoted813,23215 -check_quoted(true, _) --> !, "TRUE".check_quoted813,23215 -check_quoted(false, _) --> !, "FALSE".check_quoted814,23253 -check_quoted(false, _) --> !, "FALSE".check_quoted814,23253 -check_quoted(false, _) --> !, "FALSE".check_quoted814,23253 -check_quoted(A, _) --> { is_R_variable(A) }, !,check_quoted815,23293 -check_quoted(A, _) --> { is_R_variable(A) }, !,check_quoted815,23293 -check_quoted(A, _) --> { is_R_variable(A) }, !,check_quoted815,23293 -check_quoted(A, _) -->check_quoted818,23390 -check_quoted(A, _) -->check_quoted818,23390 -check_quoted(A, _) -->check_quoted818,23390 -add_string_as_atom( [] ) --> [] .add_string_as_atom824,23489 -add_string_as_atom( [] ) --> [] .add_string_as_atom824,23489 -add_string_as_atom( [] ) --> [] .add_string_as_atom824,23489 -add_string_as_atom( [H|Tail] ) -->add_string_as_atom825,23524 -add_string_as_atom( [H|Tail] ) -->add_string_as_atom825,23524 -add_string_as_atom( [H|Tail] ) -->add_string_as_atom825,23524 -add_number(El) -->add_number835,23710 -add_number(El) -->add_number835,23710 -add_number(El) -->add_number835,23710 -array_to_c(Array,Rv) -->array_to_c839,23772 -array_to_c(Array,Rv) -->array_to_c839,23772 -array_to_c(Array,Rv) -->array_to_c839,23772 -fresh_r_variable(Plv) :-fresh_r_variable847,23931 -fresh_r_variable(Plv) :-fresh_r_variable847,23931 -fresh_r_variable(Plv) :-fresh_r_variable847,23931 -binary( Plname, Rname ) :-binary858,24304 -binary( Plname, Rname ) :-binary858,24304 -binary( Plname, Rname ) :-binary858,24304 -binary_real_r( Plname, Rname ) :-binary_real_r867,24640 -binary_real_r( Plname, Rname ) :-binary_real_r867,24640 -binary_real_r( Plname, Rname ) :-binary_real_r867,24640 -binary_real_r( OpName, OpName ).binary_real_r870,24715 -binary_real_r( OpName, OpName ).binary_real_r870,24715 -binary_real_op( @*@, '%*%' ).binary_real_op876,24886 -binary_real_op( @*@, '%*%' ).binary_real_op876,24886 -binary_real_op( @^@, '%o%' ).binary_real_op877,24918 -binary_real_op( @^@, '%o%' ).binary_real_op877,24918 -binary_real_op( //, '%/%' ).binary_real_op878,24950 -binary_real_op( //, '%/%' ).binary_real_op878,24950 -binary_real_op( mod, '%%' ).binary_real_op879,24981 -binary_real_op( mod, '%%' ).binary_real_op879,24981 -binary_op_associativity( yfx ).binary_op_associativity881,25014 -binary_op_associativity( yfx ).binary_op_associativity881,25014 -binary_op_associativity( xfy ).binary_op_associativity882,25047 -binary_op_associativity( xfy ).binary_op_associativity882,25047 -binary_op_associativity( xfx ).binary_op_associativity883,25080 -binary_op_associativity( xfx ).binary_op_associativity883,25080 -boolean_atom( true ).boolean_atom885,25115 -boolean_atom( true ).boolean_atom885,25115 -boolean_atom( false ).boolean_atom886,25138 -boolean_atom( false ).boolean_atom886,25138 -halt_r :-halt_r889,25205 -compound( Term, Name, Args ) :-compound898,25342 -compound( Term, Name, Args ) :-compound898,25342 -compound( Term, Name, Args ) :-compound898,25342 -compound( Term, Name, Args ) :-compound904,25506 -compound( Term, Name, Args ) :-compound904,25506 -compound( Term, Name, Args ) :-compound904,25506 -arity( Term, Name, Arity ) :- false,arity907,25565 -arity( Term, Name, Arity ) :- false,arity907,25565 -arity( Term, Name, Arity ) :- false,arity907,25565 -arity( Term, Name, Arity ) :-arity912,25720 -arity( Term, Name, Arity ) :-arity912,25720 -arity( Term, Name, Arity ) :-arity912,25720 -swipl_wins_warn :-swipl_wins_warn915,25785 -:- multifile prolog:message//1.multifile930,26487 -:- multifile prolog:message//1.multifile930,26487 -prolog:message(unhandled_exception(real_error(Message))) -->message932,26522 -prolog:message(unhandled_exception(real_error(Message))) -->message932,26522 -prolog:message(real_error(Message)) -->message935,26606 -prolog:message(real_error(Message)) -->message935,26606 -prolog:message(real_error(Message, Term, Line, File)) -->message938,26669 -prolog:message(real_error(Message, Term, Line, File)) -->message938,26669 -prolog:message( correspondence ) -->message942,26832 -prolog:message( correspondence ) -->message942,26832 -prolog:message( r_root ) -->message944,26960 -prolog:message( r_root ) -->message944,26960 - -packages/swi-minisat2/C/Alg.h,204 -#define Alg_hAlg_h21,1304 -static inline void remove(V& ts, const T& t)remove29,1485 -static inline void remove(V& ts, const T& t)remove39,1719 -static inline bool find(V& ts, const T& t)find50,1928 - -packages/swi-minisat2/C/BasicHeap.h,2533 -#define BasicHeap_hBasicHeap_h21,1310 -class BasicHeap {BasicHeap30,1537 - Comp lt;lt31,1555 - Comp lt;BasicHeap::lt31,1555 - vec heap; // heap of intsheap32,1572 - vec heap; // heap of intsBasicHeap::heap32,1572 - static inline int left (int i) { return i*2+1; }left35,1647 - static inline int left (int i) { return i*2+1; }BasicHeap::left35,1647 - static inline int right (int i) { return (i+1)*2; }right36,1701 - static inline int right (int i) { return (i+1)*2; }BasicHeap::right36,1701 - static inline int parent(int i) { return (i-1) >> 1; }parent37,1757 - static inline int parent(int i) { return (i-1) >> 1; }BasicHeap::parent37,1757 - inline void percolateUp(int i)percolateUp39,1817 - inline void percolateUp(int i)BasicHeap::percolateUp39,1817 - inline void percolateDown(int i)percolateDown50,2065 - inline void percolateDown(int i)BasicHeap::percolateDown50,2065 - bool heapProperty(int i) {heapProperty63,2443 - bool heapProperty(int i) {BasicHeap::heapProperty63,2443 - BasicHeap(const C& c) : comp(c) { }BasicHeap69,2631 - BasicHeap(const C& c) : comp(c) { }BasicHeap::BasicHeap69,2631 - int size () const { return heap.size(); }size71,2672 - int size () const { return heap.size(); }BasicHeap::size71,2672 - bool empty () const { return heap.size() == 0; }empty72,2744 - bool empty () const { return heap.size() == 0; }BasicHeap::empty72,2744 - int operator[](int index) const { return heap[index+1]; }operator []73,2821 - int operator[](int index) const { return heap[index+1]; }BasicHeap::operator []73,2821 - void clear (bool dealloc = false) { heap.clear(dealloc); }clear74,2895 - void clear (bool dealloc = false) { heap.clear(dealloc); }BasicHeap::clear74,2895 - void insert (int n) { heap.push(n); percolateUp(heap.size()-1); }insert75,2968 - void insert (int n) { heap.push(n); percolateUp(heap.size()-1); }BasicHeap::insert75,2968 - int removeMin() {removeMin78,3064 - int removeMin() {BasicHeap::removeMin78,3064 - bool heapProperty() {heapProperty88,3274 - bool heapProperty() {BasicHeap::heapProperty88,3274 - int getmin () { return removeMin(); }getmin93,3369 - int getmin () { return removeMin(); }BasicHeap::getmin93,3369 - -packages/swi-minisat2/C/BoxedVec.h,6116 -#define BoxedVec_hBoxedVec_h21,1309 -class bvec {bvec33,1634 - static inline int imin(int x, int y) {imin35,1648 - static inline int imin(int x, int y) {bvec::imin35,1648 - static inline int imax(int x, int y) {imax39,1780 - static inline int imax(int x, int y) {bvec::imax39,1780 - struct Vec_t {Vec_t43,1912 - struct Vec_t {bvec::Vec_t43,1912 - int sz;sz44,1931 - int sz;bvec::Vec_t::sz44,1931 - int cap;cap45,1947 - int cap;bvec::Vec_t::cap45,1947 - T data[0];data46,1964 - T data[0];bvec::Vec_t::data46,1964 - static Vec_t* alloc(Vec_t* x, int size){alloc48,1986 - static Vec_t* alloc(Vec_t* x, int size){bvec::Vec_t::alloc48,1986 - Vec_t* ref;ref56,2186 - Vec_t* ref;bvec::ref56,2186 - static const int init_size = 2;init_size58,2203 - static const int init_size = 2;bvec::init_size58,2203 - static int nextSize (int current) { return (current * 3 + 1) >> 1; }nextSize59,2239 - static int nextSize (int current) { return (current * 3 + 1) >> 1; }bvec::nextSize59,2239 - static int fitSize (int needed) { int x; for (x = init_size; needed > x; x = nextSize(x)); return x; }fitSize60,2314 - static int fitSize (int needed) { int x; for (x = init_size; needed > x; x = nextSize(x)); return x; }bvec::fitSize60,2314 - void fill (int size) {fill62,2426 - void fill (int size) {bvec::fill62,2426 - void fill (int size, const T& pad) {fill68,2572 - void fill (int size, const T& pad) {bvec::fill68,2572 - altvec& operator = (altvec& other) { assert(0); }operator =75,2777 - altvec& operator = (altvec& other) { assert(0); }bvec::operator =75,2777 - altvec (altvec& other) { assert(0); }altvec76,2838 - altvec (altvec& other) { assert(0); }bvec::altvec76,2838 - void clear (bool dealloc = false) { clear79,2909 - void clear (bool dealloc = false) { bvec::clear79,2909 - altvec(void) : ref (NULL) { }altvec92,3221 - altvec(void) : ref (NULL) { }bvec::altvec92,3221 - altvec(int size) : ref (Vec_t::alloc(NULL, fitSize(size))) { fill(size); ref->sz = size; }altvec93,3273 - altvec(int size) : ref (Vec_t::alloc(NULL, fitSize(size))) { fill(size); ref->sz = size; }bvec::altvec93,3273 - altvec(int size, const T& pad) : ref (Vec_t::alloc(NULL, fitSize(size))) { fill(size, pad); ref->sz = size; }altvec94,3387 - altvec(int size, const T& pad) : ref (Vec_t::alloc(NULL, fitSize(size))) { fill(size, pad); ref->sz = size; }bvec::altvec94,3387 - ~altvec(void) { clear(true); }~altvec95,3501 - ~altvec(void) { clear(true); }bvec::~altvec95,3501 - operator T* (void) { return ref->data; } // (unsafe but convenient)operator T*98,3574 - operator T* (void) { return ref->data; } // (unsafe but convenient)bvec::operator T*98,3574 - operator const T* (void) const { return ref->data; }operator const T*99,3666 - operator const T* (void) const { return ref->data; }bvec::operator const T*99,3666 - int size (void) const { return ref != NULL ? ref->sz : 0; }size102,3752 - int size (void) const { return ref != NULL ? ref->sz : 0; }bvec::size102,3752 - void pop (void) { assert(ref != NULL && ref->sz > 0); int last = --ref->sz; ref->data[last].~T(); }pop104,3830 - void pop (void) { assert(ref != NULL && ref->sz > 0); int last = --ref->sz; ref->data[last].~T(); }bvec::pop104,3830 - void push (const T& elem) {push105,3953 - void push (const T& elem) {bvec::push105,3953 - void push () {push117,4330 - void push () {bvec::push117,4330 - void shrink (int nelems) { for (int i = 0; i < nelems; i++) pop(); }shrink128,4655 - void shrink (int nelems) { for (int i = 0; i < nelems; i++) pop(); }bvec::shrink128,4655 - void shrink_(int nelems) { for (int i = 0; i < nelems; i++) pop(); }shrink_129,4744 - void shrink_(int nelems) { for (int i = 0; i < nelems; i++) pop(); }bvec::shrink_129,4744 - void growTo (int size) { while (this->size() < size) push(); }growTo130,4833 - void growTo (int size) { while (this->size() < size) push(); }bvec::growTo130,4833 - void growTo (int size, const T& pad) { while (this->size() < size) push(pad); }growTo131,4918 - void growTo (int size, const T& pad) { while (this->size() < size) push(pad); }bvec::growTo131,4918 - void capacity (int size) { growTo(size); }capacity132,5006 - void capacity (int size) { growTo(size); }bvec::capacity132,5006 - const T& last (void) const { return ref->data[ref->sz-1]; }last134,5070 - const T& last (void) const { return ref->data[ref->sz-1]; }bvec::last134,5070 - T& last (void) { return ref->data[ref->sz-1]; }last135,5148 - T& last (void) { return ref->data[ref->sz-1]; }bvec::last135,5148 - const T& operator [] (int index) const { return ref->data[index]; }operator []138,5252 - const T& operator [] (int index) const { return ref->data[index]; }bvec::operator []138,5252 - T& operator [] (int index) { return ref->data[index]; }operator []139,5325 - T& operator [] (int index) { return ref->data[index]; }bvec::operator []139,5325 - void copyTo(altvec& copy) const { copy.clear(); for (int i = 0; i < size(); i++) copy.push(ref->data[i]); }copyTo141,5399 - void copyTo(altvec& copy) const { copy.clear(); for (int i = 0; i < size(); i++) copy.push(ref->data[i]); }bvec::copyTo141,5399 - void moveTo(altvec& dest) { dest.clear(true); dest.ref = ref; ref = NULL; }moveTo142,5514 - void moveTo(altvec& dest) { dest.clear(true); dest.ref = ref; ref = NULL; }bvec::moveTo142,5514 - -packages/swi-minisat2/C/Heap.h,3368 -#define Heap_hHeap_h21,1305 -class Heap {Heap30,1527 - Comp lt;lt31,1540 - Comp lt;Heap::lt31,1540 - vec heap; // heap of intsheap32,1557 - vec heap; // heap of intsHeap::heap32,1557 - vec indices; // int -> index in heapindices33,1596 - vec indices; // int -> index in heapHeap::indices33,1596 - static inline int left (int i) { return i*2+1; }left36,1679 - static inline int left (int i) { return i*2+1; }Heap::left36,1679 - static inline int right (int i) { return (i+1)*2; }right37,1733 - static inline int right (int i) { return (i+1)*2; }Heap::right37,1733 - static inline int parent(int i) { return (i-1) >> 1; }parent38,1789 - static inline int parent(int i) { return (i-1) >> 1; }Heap::parent38,1789 - inline void percolateUp(int i)percolateUp41,1850 - inline void percolateUp(int i)Heap::percolateUp41,1850 - inline void percolateDown(int i)percolateDown54,2156 - inline void percolateDown(int i)Heap::percolateDown54,2156 - bool heapProperty (int i) const {heapProperty69,2595 - bool heapProperty (int i) const {Heap::heapProperty69,2595 - Heap(const Comp& c) : lt(c) { }Heap75,2790 - Heap(const Comp& c) : lt(c) { }Heap::Heap75,2790 - int size () const { return heap.size(); }size77,2827 - int size () const { return heap.size(); }Heap::size77,2827 - bool empty () const { return heap.size() == 0; }empty78,2888 - bool empty () const { return heap.size() == 0; }Heap::empty78,2888 - bool inHeap (int n) const { return n < indices.size() && indices[n] >= 0; }inHeap79,2954 - bool inHeap (int n) const { return n < indices.size() && indices[n] >= 0; }Heap::inHeap79,2954 - int operator[](int index) const { assert(index < heap.size()); return heap[index]; }operator []80,3041 - int operator[](int index) const { assert(index < heap.size()); return heap[index]; }Heap::operator []80,3041 - void decrease (int n) { assert(inHeap(n)); percolateUp(indices[n]); }decrease82,3132 - void decrease (int n) { assert(inHeap(n)); percolateUp(indices[n]); }Heap::decrease82,3132 - void increase_ (int n) { assert(inHeap(n)); percolateDown(indices[n]); }increase_85,3263 - void increase_ (int n) { assert(inHeap(n)); percolateDown(indices[n]); }Heap::increase_85,3263 - void insert(int n)insert88,3342 - void insert(int n)Heap::insert88,3342 - int removeMin()removeMin99,3531 - int removeMin()Heap::removeMin99,3531 - void clear(bool dealloc = false) clear111,3789 - void clear(bool dealloc = false) Heap::clear111,3789 - void update (int n)update124,4115 - void update (int n)Heap::update124,4115 - void filter(const F& filt) {filter138,4498 - void filter(const F& filt) {Heap::filter138,4498 - bool heapProperty() const {heapProperty156,4957 - bool heapProperty() const {Heap::heapProperty156,4957 - void setBounds (int n) { }setBounds161,5058 - void setBounds (int n) { }Heap::setBounds161,5058 - void increase (int n) { decrease(n); }increase162,5089 - void increase (int n) { decrease(n); }Heap::increase162,5089 - int getmin () { return removeMin(); }getmin163,5133 - int getmin () { return removeMin(); }Heap::getmin163,5133 - -packages/swi-minisat2/C/Map.h,4433 -#define Map_hMap_h21,1304 -template struct Hash { uint32_t operator()(const K& k) const { return hash(k); } };Hash31,1495 -template struct Hash { uint32_t operator()(const K& k) const { return hash(k); } };operator ()31,1495 -template struct Hash { uint32_t operator()(const K& k) const { return hash(k); } };Hash::operator ()31,1495 -template struct Equal { bool operator()(const K& k1, const K& k2) const { return k1 == k2; } };Equal32,1604 -template struct Equal { bool operator()(const K& k1, const K& k2) const { return k1 == k2; } };operator ()32,1604 -template struct Equal { bool operator()(const K& k1, const K& k2) const { return k1 == k2; } };Equal::operator ()32,1604 -template struct DeepHash { uint32_t operator()(const K* k) const { return hash(*k); } };DeepHash34,1714 -template struct DeepHash { uint32_t operator()(const K* k) const { return hash(*k); } };operator ()34,1714 -template struct DeepHash { uint32_t operator()(const K* k) const { return hash(*k); } };DeepHash::operator ()34,1714 -template struct DeepEqual { bool operator()(const K* k1, const K* k2) const { return *k1 == *k2; } };DeepEqual35,1828 -template struct DeepEqual { bool operator()(const K* k1, const K* k2) const { return *k1 == *k2; } };operator ()35,1828 -template struct DeepEqual { bool operator()(const K* k1, const K* k2) const { return *k1 == *k2; } };DeepEqual::operator ()35,1828 -static const int nprimes = 25;nprimes41,2063 -static const int primes [nprimes] = { 31, 73, 151, 313, 643, 1291, 2593, 5233, 10501, 21013, 42073, 84181, 168451, 337219, 674701, 1349473, 2699299, 5398891, 10798093, 21596719, 43193641, 86387383, 172775299, 345550609, 691101253 };primes42,2103 -class Map {Map49,2545 - struct Pair { K key; D data; };Pair50,2557 - struct Pair { K key; D data; };Map::Pair50,2557 - struct Pair { K key; D data; };key50,2557 - struct Pair { K key; D data; };Map::Pair::key50,2557 - struct Pair { K key; D data; };data50,2557 - struct Pair { K key; D data; };Map::Pair::data50,2557 - H hash;hash52,2594 - H hash;Map::hash52,2594 - E equals;equals53,2615 - E equals;Map::equals53,2615 - vec* table;table55,2639 - vec* table;Map::table55,2639 - int cap;cap56,2661 - int cap;Map::cap56,2661 - int size;size57,2681 - int size;Map::size57,2681 - Map& operator = (Map& other) { assert(0); }operator =60,2745 - Map& operator = (Map& other) { assert(0); }Map::operator =60,2745 - Map (Map& other) { assert(0); }Map61,2812 - Map (Map& other) { assert(0); }Map::Map61,2812 - int32_t index (const K& k) const { return hash(k) % cap; }index63,2880 - int32_t index (const K& k) const { return hash(k) % cap; }Map::index63,2880 - void _insert (const K& k, const D& d) { table[index(k)].push(); table[index(k)].last().key = k; table[index(k)].last().data = d; }_insert64,2944 - void _insert (const K& k, const D& d) { table[index(k)].push(); table[index(k)].last().key = k; table[index(k)].last().data = d; }Map::_insert64,2944 - void rehash () {rehash65,3081 - void rehash () {Map::rehash65,3081 - Map () : table(NULL), cap(0), size(0) {}Map86,3535 - Map () : table(NULL), cap(0), size(0) {}Map::Map86,3535 - Map (const H& h, const E& e) : Map(), hash(h), equals(e) {}Map87,3581 - Map (const H& h, const E& e) : Map(), hash(h), equals(e) {}Map::Map87,3581 - ~Map () { delete [] table; }~Map88,3646 - ~Map () { delete [] table; }Map::~Map88,3646 - void insert (const K& k, const D& d) { if (size+1 > cap / 2) rehash(); _insert(k, d); size++; }insert90,3680 - void insert (const K& k, const D& d) { if (size+1 > cap / 2) rehash(); _insert(k, d); size++; }Map::insert90,3680 - bool peek (const K& k, D& d) {peek91,3780 - bool peek (const K& k, D& d) {Map::peek91,3780 - void remove (const K& k) {remove101,4077 - void remove (const K& k) {Map::remove101,4077 - void clear () {clear111,4343 - void clear () {Map::clear111,4343 - -packages/swi-minisat2/C/pl-minisat.C,893 -#define val(val8,111 -Solver *s = NULL;s10,196 -extern "C" foreign_t minisat_new_solver()minisat_new_solver13,221 -extern "C" foreign_t minisat_delete_solver()minisat_delete_solver20,301 -static inline Lit pl2lit(term_t pl_literal)pl2lit29,419 -extern "C" foreign_t minisat_set_minvars(term_t l)minisat_set_minvars39,652 -extern "C" foreign_t minisat_add_clause(term_t l)minisat_add_clause55,1051 -extern "C" foreign_t minisat_solve(term_t assum) {minisat_solve72,1453 -extern "C" foreign_t minisat_get_var_assignment(term_t var, term_t res)minisat_get_var_assignment87,1839 -extern "C" foreign_t minisat_nvars(term_t res)minisat_nvars103,2144 -static const PL_extension predicates[] =predicates118,2413 -extern "C" install_t install()install134,3216 -static void install_readline(int argc, char**argv)install_readline155,3842 -int main(int argc, char **argv)main161,3932 - -packages/swi-minisat2/C/Queue.h,1181 -#define Queue_hQueue_h21,1306 -class Queue {Queue29,1462 - vec elems;elems30,1476 - vec elems;Queue::elems30,1476 - int first;first31,1495 - int first;Queue::first31,1495 - Queue(void) : first(0) { }Queue34,1523 - Queue(void) : first(0) { }Queue::Queue34,1523 - void insert(T x) { elems.push(x); }insert36,1555 - void insert(T x) { elems.push(x); }Queue::insert36,1555 - T peek () const { return elems[first]; }peek37,1597 - T peek () const { return elems[first]; }Queue::peek37,1597 - void pop () { first++; }pop38,1646 - void pop () { first++; }Queue::pop38,1646 - void clear(bool dealloc = false) { elems.clear(dealloc); first = 0; }clear40,1678 - void clear(bool dealloc = false) { elems.clear(dealloc); first = 0; }Queue::clear40,1678 - int size(void) { return elems.size() - first; }size41,1754 - int size(void) { return elems.size() - first; }Queue::size41,1754 - const T& operator [] (int index) const { return elems[first + index]; }operator []45,1925 - const T& operator [] (int index) const { return elems[first + index]; }Queue::operator []45,1925 - -packages/swi-minisat2/C/Solver.C,3148 -Solver::Solver() :Solver30,1496 -Solver::Solver() :Solver::Solver30,1496 -Solver::~Solver()~Solver64,2432 -Solver::~Solver()Solver::~Solver64,2432 -Var Solver::newVar(bool sign, bool dvar)newVar78,2897 -Var Solver::newVar(bool sign, bool dvar)Solver::newVar78,2897 -void Solver::attachClause(Clause& c) {attachClause146,4403 -void Solver::attachClause(Clause& c) {Solver::attachClause146,4403 -void Solver::detachClause(Clause& c) {detachClause154,4644 -void Solver::detachClause(Clause& c) {Solver::detachClause154,4644 -void Solver::removeClause(Clause& c) {removeClause164,4981 -void Solver::removeClause(Clause& c) {Solver::removeClause164,4981 -bool Solver::satisfied(const Clause& c) const {satisfied169,5059 -bool Solver::satisfied(const Clause& c) const {Solver::satisfied169,5059 -void Solver::cancelUntil(int level) {cancelUntil178,5321 -void Solver::cancelUntil(int level) {Solver::cancelUntil178,5321 -Lit Solver::pickBranchLit(int polarity_mode, double random_var_freq)pickBranchLit201,5983 -Lit Solver::pickBranchLit(int polarity_mode, double random_var_freq)Solver::pickBranchLit201,5983 -void Solver::analyze(Clause* confl, vec& out_learnt, int& out_btlevel)analyze248,7674 -void Solver::analyze(Clause* confl, vec& out_learnt, int& out_btlevel)Solver::analyze248,7674 -bool Solver::litRedundant(Lit p, uint32_t abstract_levels)litRedundant340,10641 -bool Solver::litRedundant(Lit p, uint32_t abstract_levels)Solver::litRedundant340,10641 -void Solver::analyzeFinal(Lit p, vec& out_conflict)analyzeFinal378,12132 -void Solver::analyzeFinal(Lit p, vec& out_conflict)Solver::analyzeFinal378,12132 -void Solver::uncheckedEnqueue(Lit p, Clause* from)uncheckedEnqueue408,12828 -void Solver::uncheckedEnqueue(Lit p, Clause* from)Solver::uncheckedEnqueue408,12828 -Clause* Solver::propagate()propagate429,13571 -Clause* Solver::propagate()Solver::propagate429,13571 -struct reduceDB_lt { bool operator () (Clause* x, Clause* y) { return x->size() > 2 && (y->size() == 2 || x->activity() < y->activity()); } };reduceDB_lt491,15706 -struct reduceDB_lt { bool operator () (Clause* x, Clause* y) { return x->size() > 2 && (y->size() == 2 || x->activity() < y->activity()); } };operator491,15706 -struct reduceDB_lt { bool operator () (Clause* x, Clause* y) { return x->size() > 2 && (y->size() == 2 || x->activity() < y->activity()); } };reduceDB_lt::operator491,15706 -void Solver::reduceDB()reduceDB492,15849 -void Solver::reduceDB()Solver::reduceDB492,15849 -bool Solver::simplify()simplify535,17181 -bool Solver::simplify()Solver::simplify535,17181 -lbool Solver::search(int nof_conflicts, int nof_learnts)search574,18664 -lbool Solver::search(int nof_conflicts, int nof_learnts)Solver::search574,18664 -double Solver::progressEstimate() constprogressEstimate686,21834 -double Solver::progressEstimate() constSolver::progressEstimate686,21834 -void Solver::verifyModel()verifyModel756,23922 -void Solver::verifyModel()Solver::verifyModel756,23922 -void Solver::checkLiteralCount()checkLiteralCount779,24446 -void Solver::checkLiteralCount()Solver::checkLiteralCount779,24446 - -packages/swi-minisat2/C/Solver.h,19932 -#define Solver_hSolver_h21,1307 -class Solver {Solver36,1555 - vec model; // If problem is satisfiable, this vector contains the model (if any).model74,3434 - vec model; // If problem is satisfiable, this vector contains the model (if any).Solver::model74,3434 - vec conflict; // If problem is unsatisfiable (possibly under assumptions),conflict75,3539 - vec conflict; // If problem is unsatisfiable (possibly under assumptions),Solver::conflict75,3539 - double var_decay; // Inverse of the variable activity decay factor. (default 1 / 0.95)var_decay80,3783 - double var_decay; // Inverse of the variable activity decay factor. (default 1 / 0.95)Solver::var_decay80,3783 - double clause_decay; // Inverse of the clause activity decay factor. (1 / 0.999)clause_decay81,3929 - double clause_decay; // Inverse of the clause activity decay factor. (1 / 0.999)Solver::clause_decay81,3929 - double random_var_freq; // The frequency with which the decision heuristic tries to choose a random variable. (default 0.02)random_var_freq82,4068 - double random_var_freq; // The frequency with which the decision heuristic tries to choose a random variable. (default 0.02)Solver::random_var_freq82,4068 - int restart_first; // The initial restart limit. (default 100)restart_first83,4210 - int restart_first; // The initial restart limit. (default 100)Solver::restart_first83,4210 - double restart_inc; // The factor with which the restart limit is multiplied in each restart. (default 1.5)restart_inc84,4351 - double restart_inc; // The factor with which the restart limit is multiplied in each restart. (default 1.5)Solver::restart_inc84,4351 - double learntsize_factor; // The intitial limit for learnt clauses is a factor of the original clauses. (default 1 / 3)learntsize_factor85,4492 - double learntsize_factor; // The intitial limit for learnt clauses is a factor of the original clauses. (default 1 / 3)Solver::learntsize_factor85,4492 - double learntsize_inc; // The limit for learnt clauses is multiplied with this factor each restart. (default 1.1)learntsize_inc86,4635 - double learntsize_inc; // The limit for learnt clauses is multiplied with this factor each restart. (default 1.1)Solver::learntsize_inc86,4635 - bool expensive_ccmin; // Controls conflict clause minimization. (default TRUE)expensive_ccmin87,4776 - bool expensive_ccmin; // Controls conflict clause minimization. (default TRUE)Solver::expensive_ccmin87,4776 - int polarity_mode; // Controls which polarity the decision heuristic chooses. See enum below for allowed modes. (default polarity_false)polarity_mode88,4918 - int polarity_mode; // Controls which polarity the decision heuristic chooses. See enum below for allowed modes. (default polarity_false)Solver::polarity_mode88,4918 - int verbosity; // Verbosity level. 0=silent, 1=some progress report (default 0)verbosity89,5070 - int verbosity; // Verbosity level. 0=silent, 1=some progress report (default 0)Solver::verbosity89,5070 - enum { polarity_true = 0, polarity_false = 1, polarity_user = 2, polarity_rnd = 3 };polarity_true91,5210 - enum { polarity_true = 0, polarity_false = 1, polarity_user = 2, polarity_rnd = 3 };Solver::polarity_true91,5210 - enum { polarity_true = 0, polarity_false = 1, polarity_user = 2, polarity_rnd = 3 };polarity_false91,5210 - enum { polarity_true = 0, polarity_false = 1, polarity_user = 2, polarity_rnd = 3 };Solver::polarity_false91,5210 - enum { polarity_true = 0, polarity_false = 1, polarity_user = 2, polarity_rnd = 3 };polarity_user91,5210 - enum { polarity_true = 0, polarity_false = 1, polarity_user = 2, polarity_rnd = 3 };Solver::polarity_user91,5210 - enum { polarity_true = 0, polarity_false = 1, polarity_user = 2, polarity_rnd = 3 };polarity_rnd91,5210 - enum { polarity_true = 0, polarity_false = 1, polarity_user = 2, polarity_rnd = 3 };Solver::polarity_rnd91,5210 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;starts95,5354 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;Solver::starts95,5354 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;decisions95,5354 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;Solver::decisions95,5354 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;rnd_decisions95,5354 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;Solver::rnd_decisions95,5354 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;propagations95,5354 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;Solver::propagations95,5354 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;conflicts95,5354 - uint64_t starts, decisions, rnd_decisions, propagations, conflicts;Solver::conflicts95,5354 - uint64_t clauses_literals, learnts_literals, max_literals, tot_literals;clauses_literals96,5426 - uint64_t clauses_literals, learnts_literals, max_literals, tot_literals;Solver::clauses_literals96,5426 - uint64_t clauses_literals, learnts_literals, max_literals, tot_literals;learnts_literals96,5426 - uint64_t clauses_literals, learnts_literals, max_literals, tot_literals;Solver::learnts_literals96,5426 - uint64_t clauses_literals, learnts_literals, max_literals, tot_literals;max_literals96,5426 - uint64_t clauses_literals, learnts_literals, max_literals, tot_literals;Solver::max_literals96,5426 - uint64_t clauses_literals, learnts_literals, max_literals, tot_literals;tot_literals96,5426 - uint64_t clauses_literals, learnts_literals, max_literals, tot_literals;Solver::tot_literals96,5426 - struct VarOrderLt {VarOrderLt102,5549 - struct VarOrderLt {Solver::VarOrderLt102,5549 - const vec& activity;activity103,5573 - const vec& activity;Solver::VarOrderLt::activity103,5573 - bool operator () (Var x, Var y) const { return activity[x] > activity[y]; }operator ()104,5611 - bool operator () (Var x, Var y) const { return activity[x] > activity[y]; }Solver::VarOrderLt::operator ()104,5611 - VarOrderLt(const vec& act) : activity(act) { }VarOrderLt105,5695 - VarOrderLt(const vec& act) : activity(act) { }Solver::VarOrderLt::VarOrderLt105,5695 - struct VarFilter {VarFilter109,5795 - struct VarFilter {Solver::VarFilter109,5795 - const Solver& s;s110,5818 - const Solver& s;Solver::VarFilter::s110,5818 - VarFilter(const Solver& _s) : s(_s) {}VarFilter111,5843 - VarFilter(const Solver& _s) : s(_s) {}Solver::VarFilter::VarFilter111,5843 - bool operator()(Var v) const { return toLbool(s.assigns[v]) == l_Undef && s.decision_var[v]; }operator ()112,5890 - bool operator()(Var v) const { return toLbool(s.assigns[v]) == l_Undef && s.decision_var[v]; }Solver::VarFilter::operator ()112,5890 - bool allMinVarsAssigned;allMinVarsAssigned119,6053 - bool allMinVarsAssigned;Solver::allMinVarsAssigned119,6053 - int lastMinVarDL;lastMinVarDL120,6097 - int lastMinVarDL;Solver::lastMinVarDL120,6097 - vec minVars;minVars121,6135 - vec minVars;Solver::minVars121,6135 - bool ok; // If FALSE, the constraints are already unsatisfiable. No part of the solver state may be used!ok125,6193 - bool ok; // If FALSE, the constraints are already unsatisfiable. No part of the solver state may be used!Solver::ok125,6193 - vec clauses; // List of problem clauses.clauses126,6332 - vec clauses; // List of problem clauses.Solver::clauses126,6332 - vec learnts; // List of learnt clauses.learnts127,6402 - vec learnts; // List of learnt clauses.Solver::learnts127,6402 - double cla_inc; // Amount to bump next clause with.cla_inc128,6471 - double cla_inc; // Amount to bump next clause with.Solver::cla_inc128,6471 - vec activity; // A heuristic measurement of the activity of a variable.activity129,6549 - vec activity; // A heuristic measurement of the activity of a variable.Solver::activity129,6549 - double var_inc; // Amount to bump next variable with.var_inc130,6649 - double var_inc; // Amount to bump next variable with.Solver::var_inc130,6649 - vec > watches; // 'watches[lit]' is a list of constraints watching 'lit' (will go there if literal becomes true).watches131,6729 - vec > watches; // 'watches[lit]' is a list of constraints watching 'lit' (will go there if literal becomes true).Solver::watches131,6729 - vec assigns; // The current assignments (lbool:s stored as char:s).assigns132,6870 - vec assigns; // The current assignments (lbool:s stored as char:s).Solver::assigns132,6870 - vec polarity; // The preferred polarity of each variable.polarity133,6967 - vec polarity; // The preferred polarity of each variable.Solver::polarity133,6967 - vec decision_var; // Declares if a variable is eligible for selection in the decision heuristic.decision_var134,7053 - vec decision_var; // Declares if a variable is eligible for selection in the decision heuristic.Solver::decision_var134,7053 - vec trail; // Assignment stack; stores all assigments made in the order they were made.trail135,7174 - vec trail; // Assignment stack; stores all assigments made in the order they were made.Solver::trail135,7174 - vec trail_lim; // Separator indices for different decision levels in 'trail'.trail_lim136,7293 - vec trail_lim; // Separator indices for different decision levels in 'trail'.Solver::trail_lim136,7293 - vec reason; // 'reason[var]' is the clause that implied the variables current value, or 'NULL' if none.reason137,7398 - vec reason; // 'reason[var]' is the clause that implied the variables current value, or 'NULL' if none.Solver::reason137,7398 - vec level; // 'level[var]' contains the level at which the assignment was made.level138,7532 - vec level; // 'level[var]' contains the level at which the assignment was made.Solver::level138,7532 - int qhead; // Head of queue (as index into the trail -- no more explicit propagation queue in MiniSat).qhead139,7643 - int qhead; // Head of queue (as index into the trail -- no more explicit propagation queue in MiniSat).Solver::qhead139,7643 - int simpDB_assigns; // Number of top-level assignments since last execution of 'simplify()'.simpDB_assigns140,7778 - int simpDB_assigns; // Number of top-level assignments since last execution of 'simplify()'.Solver::simpDB_assigns140,7778 - int64_t simpDB_props; // Remaining number of propagations that must be made before next execution of 'simplify()'.simpDB_props141,7893 - int64_t simpDB_props; // Remaining number of propagations that must be made before next execution of 'simplify()'.Solver::simpDB_props141,7893 - vec assumptions; // Current set of assumptions provided to solve by the user.assumptions142,8028 - vec assumptions; // Current set of assumptions provided to solve by the user.Solver::assumptions142,8028 - Heap order_heap; // A priority queue of variables ordered with respect to the variable activity.order_heap143,8131 - Heap order_heap; // A priority queue of variables ordered with respect to the variable activity.Solver::order_heap143,8131 - double random_seed; // Used by the random variable selection.random_seed144,8253 - double random_seed; // Used by the random variable selection.Solver::random_seed144,8253 - double progress_estimate;// Set by 'search()'.progress_estimate145,8337 - double progress_estimate;// Set by 'search()'.Solver::progress_estimate145,8337 - bool remove_satisfied; // Indicates whether possibly inefficient linear scan for satisfied clauses should be performed in 'simplify'.remove_satisfied146,8401 - bool remove_satisfied; // Indicates whether possibly inefficient linear scan for satisfied clauses should be performed in 'simplify'.Solver::remove_satisfied146,8401 - vec seen;seen151,8727 - vec seen;Solver::seen151,8727 - vec analyze_stack;analyze_stack152,8757 - vec analyze_stack;Solver::analyze_stack152,8757 - vec analyze_toclear;analyze_toclear153,8796 - vec analyze_toclear;Solver::analyze_toclear153,8796 - vec add_tmp;add_tmp154,8837 - vec add_tmp;Solver::add_tmp154,8837 - static inline double drand(double& seed) {drand204,12403 - static inline double drand(double& seed) {Solver::drand204,12403 - static inline int irand(double& seed, int size) {irand211,12663 - static inline int irand(double& seed, int size) {Solver::irand211,12663 -inline void Solver::insertVarOrder(Var x) {insertVarOrder220,12905 -inline void Solver::insertVarOrder(Var x) {Solver::insertVarOrder220,12905 -inline void Solver::varDecayActivity() { var_inc *= var_decay; }varDecayActivity223,13024 -inline void Solver::varDecayActivity() { var_inc *= var_decay; }Solver::varDecayActivity223,13024 -inline void Solver::varBumpActivity(Var v) {varBumpActivity224,13089 -inline void Solver::varBumpActivity(Var v) {Solver::varBumpActivity224,13089 -inline void Solver::claDecayActivity() { cla_inc *= clause_decay; }claDecayActivity235,13427 -inline void Solver::claDecayActivity() { cla_inc *= clause_decay; }Solver::claDecayActivity235,13427 -inline void Solver::claBumpActivity (Clause& c) {claBumpActivity236,13495 -inline void Solver::claBumpActivity (Clause& c) {Solver::claBumpActivity236,13495 -inline bool Solver::enqueue (Lit p, Clause* from) { return value(p) != l_Undef ? value(p) != l_False : (uncheckedEnqueue(p, from), true); }enqueue243,13756 -inline bool Solver::enqueue (Lit p, Clause* from) { return value(p) != l_Undef ? value(p) != l_False : (uncheckedEnqueue(p, from), true); }Solver::enqueue243,13756 -inline bool Solver::locked (const Clause& c) const { return reason[var(c[0])] == &c && value(c[0]) == l_True; }locked244,13910 -inline bool Solver::locked (const Clause& c) const { return reason[var(c[0])] == &c && value(c[0]) == l_True; }Solver::locked244,13910 -inline void Solver::newDecisionLevel() { trail_lim.push(trail.size()); }newDecisionLevel245,14035 -inline void Solver::newDecisionLevel() { trail_lim.push(trail.size()); }Solver::newDecisionLevel245,14035 -inline int Solver::decisionLevel () const { return trail_lim.size(); }decisionLevel247,14134 -inline int Solver::decisionLevel () const { return trail_lim.size(); }Solver::decisionLevel247,14134 -inline uint32_t Solver::abstractLevel (Var x) const { return 1 << (level[x] & 31); }abstractLevel248,14217 -inline uint32_t Solver::abstractLevel (Var x) const { return 1 << (level[x] & 31); }Solver::abstractLevel248,14217 -inline lbool Solver::value (Var x) const { return toLbool(assigns[x]); }value249,14304 -inline lbool Solver::value (Var x) const { return toLbool(assigns[x]); }Solver::value249,14304 -inline lbool Solver::value (Lit p) const { return toLbool(assigns[var(p)]) ^ sign(p); }value250,14390 -inline lbool Solver::value (Lit p) const { return toLbool(assigns[var(p)]) ^ sign(p); }Solver::value250,14390 -inline lbool Solver::modelValue (Lit p) const { return model[var(p)] ^ sign(p); }modelValue251,14491 -inline lbool Solver::modelValue (Lit p) const { return model[var(p)] ^ sign(p); }Solver::modelValue251,14491 -inline int Solver::nAssigns () const { return trail.size(); }nAssigns252,14581 -inline int Solver::nAssigns () const { return trail.size(); }Solver::nAssigns252,14581 -inline int Solver::nClauses () const { return clauses.size(); }nClauses253,14660 -inline int Solver::nClauses () const { return clauses.size(); }Solver::nClauses253,14660 -inline int Solver::nLearnts () const { return learnts.size(); }nLearnts254,14741 -inline int Solver::nLearnts () const { return learnts.size(); }Solver::nLearnts254,14741 -inline int Solver::nVars () const { return assigns.size(); }nVars255,14822 -inline int Solver::nVars () const { return assigns.size(); }Solver::nVars255,14822 -inline void Solver::setPolarity (Var v, bool b) { polarity [v] = (char)b; }setPolarity256,14903 -inline void Solver::setPolarity (Var v, bool b) { polarity [v] = (char)b; }Solver::setPolarity256,14903 -inline void Solver::setDecisionVar(Var v, bool b) { decision_var[v] = (char)b; if (b) { insertVarOrder(v); } }setDecisionVar257,14988 -inline void Solver::setDecisionVar(Var v, bool b) { decision_var[v] = (char)b; if (b) { insertVarOrder(v); } }Solver::setDecisionVar257,14988 -inline bool Solver::solve () { vec tmp; return solve(tmp); }solve258,15103 -inline bool Solver::solve () { vec tmp; return solve(tmp); }Solver::solve258,15103 -inline bool Solver::okay () const { return ok; }okay259,15194 -inline bool Solver::okay () const { return ok; }Solver::okay259,15194 -#define reportf(reportf267,15384 -static inline void logLit(FILE* f, Lit l)logLit269,15471 -static inline void logLits(FILE* f, const vec& ls)logLits274,15573 -static inline const char* showBool(bool b) { return b ? "true" : "false"; }showBool287,15849 -static inline void check(bool expr) { assert(expr); }check291,16016 -inline void Solver::printLit(Lit l)printLit294,16072 -inline void Solver::printLit(Lit l)Solver::printLit294,16072 -inline void Solver::printClause(const C& c)printClause301,16248 -inline void Solver::printClause(const C& c)Solver::printClause301,16248 - -packages/swi-minisat2/C/SolverTypes.h,6684 -#define SolverTypes_hSolverTypes_h22,1313 -typedef int Var;Var34,1667 -#define var_Undef var_Undef35,1684 -class Lit {Lit38,1709 - int x;x39,1721 - int x;Lit::x39,1721 - Lit() : x(2*var_Undef) { } // (lit_Undef)Lit41,1745 - Lit() : x(2*var_Undef) { } // (lit_Undef)Lit::Lit41,1745 - explicit Lit(Var var, bool sign = false) : x((var+var) + (int)sign) { }Lit42,1838 - explicit Lit(Var var, bool sign = false) : x((var+var) + (int)sign) { }Lit::Lit42,1838 - bool operator == (Lit p) const { return x == p.x; }operator ==53,2381 - bool operator == (Lit p) const { return x == p.x; }Lit::operator ==53,2381 - bool operator != (Lit p) const { return x != p.x; }operator !=54,2437 - bool operator != (Lit p) const { return x != p.x; }Lit::operator !=54,2437 - bool operator < (Lit p) const { return x < p.x; } // '<' guarantees that p, ~p are adjacent in the ordering.operator <55,2493 - bool operator < (Lit p) const { return x < p.x; } // '<' guarantees that p, ~p are adjacent in the ordering.Lit::operator <55,2493 -inline int toInt (Lit p) { return p.x; }toInt58,2612 -inline Lit toLit (int i) { Lit p; p.x = i; return p; }toLit59,2671 -inline Lit operator ~(Lit p) { Lit q; q.x = p.x ^ 1; return q; }operator ~60,2744 -inline bool sign (Lit p) { return p.x & 1; }sign61,2823 -inline int var (Lit p) { return p.x >> 1; }var62,2886 -inline Lit unsign (Lit p) { Lit q; q.x = p.x & ~1; return q; }unsign63,2950 -inline Lit id (Lit p, bool sgn) { Lit q; q.x = p.x ^ (int)sgn; return q; }id64,3030 -class lbool {lbool74,3358 - char value;value75,3372 - char value;lbool::value75,3372 - explicit lbool(int v) : value(v) { }lbool76,3392 - explicit lbool(int v) : value(v) { }lbool::lbool76,3392 - lbool() : value(0) { }lbool79,3442 - lbool() : value(0) { }lbool::lbool79,3442 - lbool(bool x) : value((int)x*2-1) { }lbool80,3475 - lbool(bool x) : value((int)x*2-1) { }lbool::lbool80,3475 - int toInt(void) const { return value; }toInt81,3517 - int toInt(void) const { return value; }lbool::toInt81,3517 - bool operator == (lbool b) const { return value == b.value; }operator ==83,3562 - bool operator == (lbool b) const { return value == b.value; }lbool::operator ==83,3562 - bool operator != (lbool b) const { return value != b.value; }operator !=84,3629 - bool operator != (lbool b) const { return value != b.value; }lbool::operator !=84,3629 - lbool operator ^ (bool b) const { return b ? lbool(-value) : lbool(value); }operator ^85,3696 - lbool operator ^ (bool b) const { return b ? lbool(-value) : lbool(value); }lbool::operator ^85,3696 -inline int toInt (lbool l) { return l.toInt(); }toInt90,3851 -inline lbool toLbool(int v) { return lbool(v); }toLbool91,3903 -const lbool l_True = toLbool( 1);l_True93,3956 -const lbool l_False = toLbool(-1);l_False94,3991 -const lbool l_Undef = toLbool( 0);l_Undef95,4026 -class Clause {Clause101,4219 - uint32_t size_etc;size_etc102,4234 - uint32_t size_etc;Clause::size_etc102,4234 - union { float act; uint32_t abst; } extra;act103,4257 - union { float act; uint32_t abst; } extra;Clause::__anon489::act103,4257 - union { float act; uint32_t abst; } extra;abst103,4257 - union { float act; uint32_t abst; } extra;Clause::__anon489::abst103,4257 - union { float act; uint32_t abst; } extra;extra103,4257 - union { float act; uint32_t abst; } extra;Clause::extra103,4257 - Lit data[0];data104,4304 - Lit data[0];Clause::data104,4304 - void calcAbstraction() {calcAbstraction107,4334 - void calcAbstraction() {Clause::calcAbstraction107,4334 - Clause(const V& ps, bool learnt) {Clause115,4639 - Clause(const V& ps, bool learnt) {Clause::Clause115,4639 - int size () const { return size_etc >> 3; }size124,4974 - int size () const { return size_etc >> 3; }Clause::size124,4974 - void shrink (int i) { assert(i <= size()); size_etc = (((size_etc >> 3) - i) << 3) | (size_etc & 7); }shrink125,5045 - void shrink (int i) { assert(i <= size()); size_etc = (((size_etc >> 3) - i) << 3) | (size_etc & 7); }Clause::shrink125,5045 - void pop () { shrink(1); }pop126,5173 - void pop () { shrink(1); }Clause::pop126,5173 - bool learnt () const { return size_etc & 1; }learnt127,5233 - bool learnt () const { return size_etc & 1; }Clause::learnt127,5233 - uint32_t mark () const { return (size_etc >> 1) & 3; }mark128,5303 - uint32_t mark () const { return (size_etc >> 1) & 3; }Clause::mark128,5303 - void mark (uint32_t m) { size_etc = (size_etc & ~6) | ((m & 3) << 1); }mark129,5380 - void mark (uint32_t m) { size_etc = (size_etc & ~6) | ((m & 3) << 1); }Clause::mark129,5380 - const Lit& last () const { return data[size()-1]; }last130,5474 - const Lit& last () const { return data[size()-1]; }Clause::last130,5474 - Lit& operator [] (int i) { return data[i]; }operator []134,5716 - Lit& operator [] (int i) { return data[i]; }Clause::operator []134,5716 - Lit operator [] (int i) const { return data[i]; }operator []135,5781 - Lit operator [] (int i) const { return data[i]; }Clause::operator []135,5781 - operator const Lit* (void) const { return data; }operator const Lit*136,5846 - operator const Lit* (void) const { return data; }Clause::operator const Lit*136,5846 - float& activity () { return extra.act; }activity138,5909 - float& activity () { return extra.act; }Clause::activity138,5909 - uint32_t abstraction () const { return extra.abst; }abstraction139,5976 - uint32_t abstraction () const { return extra.abst; }Clause::abstraction139,5976 -Clause* Clause_new(const V& ps, bool learnt) {Clause_new147,6157 -inline Lit Clause::subsumes(const Clause& other) constsubsumes165,7021 -inline Lit Clause::subsumes(const Clause& other) constClause::subsumes165,7021 -inline void Clause::strengthen(Lit p)strengthen193,7681 -inline void Clause::strengthen(Lit p)Clause::strengthen193,7681 - -packages/swi-minisat2/C/Sort.h,682 -#define Sort_hSort_h21,1305 -struct LessThan_default {LessThan_default30,1496 - bool operator () (T x, T y) { return x < y; }operator ()31,1522 - bool operator () (T x, T y) { return x < y; }LessThan_default::operator ()31,1522 -void selectionSort(T* array, int size, LessThan lt)selectionSort36,1612 -template static inline void selectionSort(T* array, int size) {selectionSort50,1964 -void sort(T* array, int size, LessThan lt)sort54,2131 -template static inline void sort(T* array, int size) {sort78,2680 -template void sort(vec& v, LessThan lt) {sort86,2912 -template void sort(vec& v) {sort88,3016 - -packages/swi-minisat2/C/Vec.h,6583 -#define Vec_hVec_h21,1304 -class vec {vec33,1624 - T* data;data34,1636 - T* data;vec::data34,1636 - int sz;sz35,1650 - int sz;vec::sz35,1650 - int cap;cap36,1662 - int cap;vec::cap36,1662 - vec& operator = (vec& other) { assert(0); return *this; }operator =42,1794 - vec& operator = (vec& other) { assert(0); return *this; }vec::operator =42,1794 - vec (vec& other) { assert(0); }vec43,1863 - vec (vec& other) { assert(0); }vec::vec43,1863 - static inline int imin(int x, int y) {imin45,1919 - static inline int imin(int x, int y) {vec::imin45,1919 - static inline int imax(int x, int y) {imax49,2051 - static inline int imax(int x, int y) {vec::imax49,2051 - typedef int Key;Key55,2205 - typedef int Key;vec::Key55,2205 - typedef T Datum;Datum56,2226 - typedef T Datum;vec::Datum56,2226 - vec(void) : data(NULL) , sz(0) , cap(0) { }vec59,2271 - vec(void) : data(NULL) , sz(0) , cap(0) { }vec::vec59,2271 - vec(int size) : data(NULL) , sz(0) , cap(0) { growTo(size); }vec60,2342 - vec(int size) : data(NULL) , sz(0) , cap(0) { growTo(size); }vec::vec60,2342 - vec(int size, const T& pad) : data(NULL) , sz(0) , cap(0) { growTo(size, pad); }vec61,2427 - vec(int size, const T& pad) : data(NULL) , sz(0) , cap(0) { growTo(size, pad); }vec::vec61,2427 - vec(T* array, int size) : data(array), sz(size), cap(size) { } // (takes ownership of array -- will be deallocated with 'free()')vec62,2517 - vec(T* array, int size) : data(array), sz(size), cap(size) { } // (takes ownership of array -- will be deallocated with 'free()')vec::vec62,2517 - ~vec(void) { clear(true); }~vec63,2660 - ~vec(void) { clear(true); }vec::~vec63,2660 - T* release (void) { T* ret = data; data = NULL; sz = 0; cap = 0; return ret; }release66,2783 - T* release (void) { T* ret = data; data = NULL; sz = 0; cap = 0; return ret; }vec::release66,2783 - operator T* (void) { return data; } // (unsafe but convenient)operator T*67,2883 - operator T* (void) { return data; } // (unsafe but convenient)vec::operator T*67,2883 - operator const T* (void) const { return data; }operator const T*68,2970 - operator const T* (void) const { return data; }vec::operator const T*68,2970 - int size (void) const { return sz; }size71,3051 - int size (void) const { return sz; }vec::size71,3051 - void shrink (int nelems) { assert(nelems <= sz); for (int i = 0; i < nelems; i++) sz--, data[sz].~T(); }shrink72,3105 - void shrink (int nelems) { assert(nelems <= sz); for (int i = 0; i < nelems; i++) sz--, data[sz].~T(); }vec::shrink72,3105 - void shrink_(int nelems) { assert(nelems <= sz); sz -= nelems; }shrink_73,3224 - void shrink_(int nelems) { assert(nelems <= sz); sz -= nelems; }vec::shrink_73,3224 - void pop (void) { sz--, data[sz].~T(); }pop74,3303 - void pop (void) { sz--, data[sz].~T(); }vec::pop74,3303 - void capacity (int size) { grow(size); }capacity78,3489 - void capacity (int size) { grow(size); }vec::capacity78,3489 - void push (void) { if (sz == cap) { cap = imax(2, (cap*3+1)>>1); data = (T*)realloc(data, cap * sizeof(T)); } new (&data[sz]) T(); sz++; }push82,3569 - void push (void) { if (sz == cap) { cap = imax(2, (cap*3+1)>>1); data = (T*)realloc(data, cap * sizeof(T)); } new (&data[sz]) T(); sz++; }vec::push82,3569 - void push (const T& elem) { if (sz == cap) { cap = imax(2, (cap*3+1)>>1); data = (T*)realloc(data, cap * sizeof(T)); } data[sz++] = elem; }push84,3897 - void push (const T& elem) { if (sz == cap) { cap = imax(2, (cap*3+1)>>1); data = (T*)realloc(data, cap * sizeof(T)); } data[sz++] = elem; }vec::push84,3897 - void push_ (const T& elem) { assert(sz < cap); data[sz++] = elem; }push_85,4050 - void push_ (const T& elem) { assert(sz < cap); data[sz++] = elem; }vec::push_85,4050 - void push (void) { if (sz == cap) grow(sz+1); new (&data[sz]) T() ; sz++; }push87,4136 - void push (void) { if (sz == cap) grow(sz+1); new (&data[sz]) T() ; sz++; }vec::push87,4136 - void push (const T& elem) { if (sz == cap) grow(sz+1); new (&data[sz]) T(elem); sz++; }push88,4237 - void push (const T& elem) { if (sz == cap) grow(sz+1); new (&data[sz]) T(elem); sz++; }vec::push88,4237 - const T& last (void) const { return data[sz-1]; }last91,4346 - const T& last (void) const { return data[sz-1]; }vec::last91,4346 - T& last (void) { return data[sz-1]; }last92,4408 - T& last (void) { return data[sz-1]; }vec::last92,4408 - const T& operator [] (int index) const { return data[index]; }operator []95,4496 - const T& operator [] (int index) const { return data[index]; }vec::operator []95,4496 - T& operator [] (int index) { return data[index]; }operator []96,4564 - T& operator [] (int index) { return data[index]; }vec::operator []96,4564 - void copyTo(vec& copy) const { copy.clear(); copy.growTo(sz); for (int i = 0; i < sz; i++) new (©[i]) T(data[i]); }copyTo100,4676 - void copyTo(vec& copy) const { copy.clear(); copy.growTo(sz); for (int i = 0; i < sz; i++) new (©[i]) T(data[i]); }vec::copyTo100,4676 - void moveTo(vec& dest) { dest.clear(true); dest.data = data; dest.sz = sz; dest.cap = cap; data = NULL; sz = 0; cap = 0; }moveTo101,4803 - void moveTo(vec& dest) { dest.clear(true); dest.data = data; dest.sz = sz; dest.cap = cap; data = NULL; sz = 0; cap = 0; }vec::moveTo101,4803 -void vec::grow(int min_cap) {grow105,4955 -void vec::grow(int min_cap) {vec::grow105,4955 -void vec::growTo(int size, const T& pad) {growTo112,5208 -void vec::growTo(int size, const T& pad) {vec::growTo112,5208 -void vec::growTo(int size) {growTo119,5393 -void vec::growTo(int size) {vec::growTo119,5393 -void vec::clear(bool dealloc) {clear126,5561 -void vec::clear(bool dealloc) {vec::clear126,5561 - -packages/swi-minisat2/cnf.pl,3176 -cnf(F,Cnf) :- cnf_dl(F,Cnf-[]).cnf27,1317 -cnf(F,Cnf) :- cnf_dl(F,Cnf-[]).cnf27,1317 -cnf(F,Cnf) :- cnf_dl(F,Cnf-[]).cnf27,1317 -cnf(F,Cnf) :- cnf_dl(F,Cnf-[]).cnf27,1317 -cnf(F,Cnf) :- cnf_dl(F,Cnf-[]).cnf27,1317 -cnf_dl(F,[[B]|Cnf1]-Cnf2) :- iff(F,+,B,Cnf2,Cnf1).cnf_dl29,1350 -cnf_dl(F,[[B]|Cnf1]-Cnf2) :- iff(F,+,B,Cnf2,Cnf1).cnf_dl29,1350 -cnf_dl(F,[[B]|Cnf1]-Cnf2) :- iff(F,+,B,Cnf2,Cnf1).cnf_dl29,1350 -cnf_dl(F,[[B]|Cnf1]-Cnf2) :- iff(F,+,B,Cnf2,Cnf1).cnf_dl29,1350 -cnf_dl(F,[[B]|Cnf1]-Cnf2) :- iff(F,+,B,Cnf2,Cnf1).cnf_dl29,1350 -iff(V,_,B,Acc,Cnf) :- var(V), !, V=B, Cnf=Acc.iff32,1403 -iff(V,_,B,Acc,Cnf) :- var(V), !, V=B, Cnf=Acc.iff32,1403 -iff(V,_,B,Acc,Cnf) :- var(V), !, V=B, Cnf=Acc.iff32,1403 -iff(1,_,B,Acc,Cnf) :- !, B=1, Cnf=Acc.iff33,1450 -iff(1,_,B,Acc,Cnf) :- !, B=1, Cnf=Acc.iff33,1450 -iff(1,_,B,Acc,Cnf) :- !, B=1, Cnf=Acc.iff33,1450 -iff(0,_,B,Acc,Cnf) :- !, B=0, Cnf=Acc.iff34,1489 -iff(0,_,B,Acc,Cnf) :- !, B=0, Cnf=Acc.iff34,1489 -iff(0,_,B,Acc,Cnf) :- !, B=0, Cnf=Acc.iff34,1489 -iff(-X,+,B,Acc,Cnf) :- !, iff(X,-,BX,Acc,Cnf), neglit(BX,B).iff36,1529 -iff(-X,+,B,Acc,Cnf) :- !, iff(X,-,BX,Acc,Cnf), neglit(BX,B).iff36,1529 -iff(-X,+,B,Acc,Cnf) :- !, iff(X,-,BX,Acc,Cnf), neglit(BX,B).iff36,1529 -iff(-X,+,B,Acc,Cnf) :- !, iff(X,-,BX,Acc,Cnf), neglit(BX,B).iff36,1529 -iff(-X,+,B,Acc,Cnf) :- !, iff(X,-,BX,Acc,Cnf), neglit(BX,B).iff36,1529 -iff(-X,-,B,Acc,Cnf) :- !, iff(X,+,BX,Acc,Cnf), neglit(BX,B).iff37,1590 -iff(-X,-,B,Acc,Cnf) :- !, iff(X,+,BX,Acc,Cnf), neglit(BX,B).iff37,1590 -iff(-X,-,B,Acc,Cnf) :- !, iff(X,+,BX,Acc,Cnf), neglit(BX,B).iff37,1590 -iff(-X,-,B,Acc,Cnf) :- !, iff(X,+,BX,Acc,Cnf), neglit(BX,B).iff37,1590 -iff(-X,-,B,Acc,Cnf) :- !, iff(X,+,BX,Acc,Cnf), neglit(BX,B).iff37,1590 -iff(-X,*,B,Acc,Cnf) :- !, iff(X,*,BX,Acc,Cnf), neglit(BX,B).iff38,1651 -iff(-X,*,B,Acc,Cnf) :- !, iff(X,*,BX,Acc,Cnf), neglit(BX,B).iff38,1651 -iff(-X,*,B,Acc,Cnf) :- !, iff(X,*,BX,Acc,Cnf), neglit(BX,B).iff38,1651 -iff(-X,*,B,Acc,Cnf) :- !, iff(X,*,BX,Acc,Cnf), neglit(BX,B).iff38,1651 -iff(-X,*,B,Acc,Cnf) :- !, iff(X,*,BX,Acc,Cnf), neglit(BX,B).iff38,1651 -iff((X+Y),Polarity,B,Acc,Cnf) :- !,iff40,1713 -iff((X+Y),Polarity,B,Acc,Cnf) :- !,iff40,1713 -iff((X+Y),Polarity,B,Acc,Cnf) :- !,iff40,1713 -iff((X*Y),Polarity,B,Acc,Cnf) :- !,iff51,1974 -iff((X*Y),Polarity,B,Acc,Cnf) :- !,iff51,1974 -iff((X*Y),Polarity,B,Acc,Cnf) :- !,iff51,1974 -iff((X==Y),Polarity,B,Acc,Cnf) :- !,iff62,2237 -iff((X==Y),Polarity,B,Acc,Cnf) :- !,iff62,2237 -iff((X==Y),Polarity,B,Acc,Cnf) :- !,iff62,2237 -iff((xor(X, Y)),Polarity,B,Acc,Cnf) :- !,iff73,2526 -iff((xor(X, Y)),Polarity,B,Acc,Cnf) :- !,iff73,2526 -iff((xor(X, Y)),Polarity,B,Acc,Cnf) :- !,iff73,2526 -iff((X->Y;Z),Polarity,B,Acc,Cnf) :- !,iff84,2819 -iff((X->Y;Z),Polarity,B,Acc,Cnf) :- !,iff84,2819 -iff((X->Y;Z),Polarity,B,Acc,Cnf) :- !,iff84,2819 -neglit(V,-V) :- var(V), !.neglit97,3212 -neglit(V,-V) :- var(V), !.neglit97,3212 -neglit(V,-V) :- var(V), !.neglit97,3212 -neglit(-V,V).neglit98,3239 -neglit(-V,V).neglit98,3239 -neglit(0,1).neglit99,3253 -neglit(0,1).neglit99,3253 -neglit(1,0).neglit100,3266 -neglit(1,0).neglit100,3266 - -packages/swi-minisat2/examples/adder.pl,1373 -sum([B],[S],(S==B)).sum3,27 -sum([B],[S],(S==B)).sum3,27 -sum([B1,B2|Bs],Sum,F1*F2*F3) :-sum4,48 -sum([B1,B2|Bs],Sum,F1*F2*F3) :-sum4,48 -sum([B1,B2|Bs],Sum,F1*F2*F3) :-sum4,48 -split([],[],[]).split8,156 -split([],[],[]).split8,156 -split([X],[X],[0]).split9,173 -split([X],[X],[0]).split9,173 -split([X,Y|XYs],[X|Xs],[Y|Ys]) :- split(XYs,Xs,Ys).split10,193 -split([X,Y|XYs],[X|Xs],[Y|Ys]) :- split(XYs,Xs,Ys).split10,193 -split([X,Y|XYs],[X|Xs],[Y|Ys]) :- split(XYs,Xs,Ys).split10,193 -split([X,Y|XYs],[X|Xs],[Y|Ys]) :- split(XYs,Xs,Ys).split10,193 -split([X,Y|XYs],[X|Xs],[Y|Ys]) :- split(XYs,Xs,Ys).split10,193 -add([X|Xs],[Y|Ys],[Z|Zs],(Z==SumXY)*Sum) :-add12,246 -add([X|Xs],[Y|Ys],[Z|Zs],(Z==SumXY)*Sum) :-add12,246 -add([X|Xs],[Y|Ys],[Z|Zs],(Z==SumXY)*Sum) :-add12,246 -adder([],[],Carry,[Z],Z==Carry).adder16,352 -adder([],[],Carry,[Z],Z==Carry).adder16,352 -adder([X|Xs],[Y|Ys],Carry,[Z|Zs],(Z==SumXY)*Rest) :-adder17,385 -adder([X|Xs],[Y|Ys],Carry,[Z|Zs],(Z==SumXY)*Rest) :-adder17,385 -adder([X|Xs],[Y|Ys],Carry,[Z|Zs],(Z==SumXY)*Rest) :-adder17,385 -fulladder(X, Y, C, (X xor Y xor C), (C->(X+Y);(X*Y)) ).fulladder21,507 -fulladder(X, Y, C, (X xor Y xor C), (C->(X+Y);(X*Y)) ).fulladder21,507 -halfadder(X, Y, (X xor Y), X*Y ).halfadder22,563 -halfadder(X, Y, (X xor Y), X*Y ).halfadder22,563 - -packages/swi-minisat2/examples/pearl_examples.pl,144 -partialMaxSat(Phi,Psi) :-partialMaxSat47,1036 -partialMaxSat(Phi,Psi) :-partialMaxSat47,1036 -partialMaxSat(Phi,Psi) :-partialMaxSat47,1036 - -packages/swi-minisat2/minisat.pl,8307 -:- dynamic tmp/1.dynamic50,1705 -:- dynamic tmp/1.dynamic50,1705 -sat_init :-sat_init56,1732 -sat_deinit :-sat_deinit63,1900 -sat_add_clauses(Cs, Vs, MiniSat_Vs) :-sat_add_clauses70,1947 -sat_add_clauses(Cs, Vs, MiniSat_Vs) :-sat_add_clauses70,1947 -sat_add_clauses(Cs, Vs, MiniSat_Vs) :-sat_add_clauses70,1947 -add_cnf_clauses([]).add_cnf_clauses79,2151 -add_cnf_clauses([]).add_cnf_clauses79,2151 -add_cnf_clauses([Cl|Cls]) :-add_cnf_clauses80,2172 -add_cnf_clauses([Cl|Cls]) :-add_cnf_clauses80,2172 -add_cnf_clauses([Cl|Cls]) :-add_cnf_clauses80,2172 -to_minisat([],[]).to_minisat85,2284 -to_minisat([],[]).to_minisat85,2284 -to_minisat([L|Ls],[N|Ns]) :- to_minisat86,2303 -to_minisat([L|Ls],[N|Ns]) :- to_minisat86,2303 -to_minisat([L|Ls],[N|Ns]) :- to_minisat86,2303 -minisat_aux(0,1) :- !.minisat_aux90,2375 -minisat_aux(0,1) :- !.minisat_aux90,2375 -minisat_aux(0,1) :- !.minisat_aux90,2375 -minisat_aux(1,2) :- !.minisat_aux91,2401 -minisat_aux(1,2) :- !.minisat_aux91,2401 -minisat_aux(1,2) :- !.minisat_aux91,2401 -minisat_aux(-(1),1) :- !.minisat_aux92,2427 -minisat_aux(-(1),1) :- !.minisat_aux92,2427 -minisat_aux(-(1),1) :- !.minisat_aux92,2427 -minisat_aux(-(0),2) :- !.minisat_aux93,2453 -minisat_aux(-(0),2) :- !.minisat_aux93,2453 -minisat_aux(-(0),2) :- !.minisat_aux93,2453 -minisat_aux(N,NN) :- NN is N.minisat_aux94,2479 -minisat_aux(N,NN) :- NN is N.minisat_aux94,2479 -minisat_aux(N,NN) :- NN is N.minisat_aux94,2479 -bind2index(Vs) :-bind2index97,2513 -bind2index(Vs) :-bind2index97,2513 -bind2index(Vs) :-bind2index97,2513 -bind2index_aux([],_N).bind2index_aux102,2587 -bind2index_aux([],_N).bind2index_aux102,2587 -bind2index_aux([V|Ns],N) :- bind2index_aux103,2610 -bind2index_aux([V|Ns],N) :- bind2index_aux103,2610 -bind2index_aux([V|Ns],N) :- bind2index_aux103,2610 -bind2index_aux([V|Ns],N) :- bind2index_aux108,2693 -bind2index_aux([V|Ns],N) :- bind2index_aux108,2693 -bind2index_aux([V|Ns],N) :- bind2index_aux108,2693 -sat_solve(As) :-sat_solve114,2765 -sat_solve(As) :-sat_solve114,2765 -sat_solve(As) :-sat_solve114,2765 -sat_get_values([],[]).sat_get_values121,2846 -sat_get_values([],[]).sat_get_values121,2846 -sat_get_values([SAT_V|SVs],[PL_V|PL_Vs]) :-sat_get_values122,2869 -sat_get_values([SAT_V|SVs],[PL_V|PL_Vs]) :-sat_get_values122,2869 -sat_get_values([SAT_V|SVs],[PL_V|PL_Vs]) :-sat_get_values122,2869 -sat(CNF) :-sat134,3103 -sat(CNF) :-sat134,3103 -sat(CNF) :-sat134,3103 -sat(_CNF) :- sat140,3187 -sat(_CNF) :- sat140,3187 -sat(_CNF) :- sat140,3187 -solve(CNF) :-solve149,3306 -solve(CNF) :-solve149,3306 -solve(CNF) :-solve149,3306 -solve(_) :- solve157,3463 -solve(_) :- solve157,3463 -solve(_) :- solve157,3463 -minimize(Vec,CNF) :- minimize_v1(Vec,CNF).minimize166,3511 -minimize(Vec,CNF) :- minimize_v1(Vec,CNF).minimize166,3511 -minimize(Vec,CNF) :- minimize_v1(Vec,CNF).minimize166,3511 -minimize(Vec,CNF) :- minimize_v1(Vec,CNF).minimize166,3511 -minimize(Vec,CNF) :- minimize_v1(Vec,CNF).minimize166,3511 -maximize(Vec,CNF) :- maximize_v1(Vec,CNF).maximize167,3554 -maximize(Vec,CNF) :- maximize_v1(Vec,CNF).maximize167,3554 -maximize(Vec,CNF) :- maximize_v1(Vec,CNF).maximize167,3554 -maximize(Vec,CNF) :- maximize_v1(Vec,CNF).maximize167,3554 -maximize(Vec,CNF) :- maximize_v1(Vec,CNF).maximize167,3554 -minimize_v1(Vec,CNF) :- minimize_v1172,3605 -minimize_v1(Vec,CNF) :- minimize_v1172,3605 -minimize_v1(Vec,CNF) :- minimize_v1172,3605 -minimize_v1_aux([],_CNF).minimize_v1_aux176,3670 -minimize_v1_aux([],_CNF).minimize_v1_aux176,3670 -minimize_v1_aux([B|Bs],CNF) :-minimize_v1_aux177,3696 -minimize_v1_aux([B|Bs],CNF) :-minimize_v1_aux177,3696 -minimize_v1_aux([B|Bs],CNF) :-minimize_v1_aux177,3696 -maximize_v1(Vec,CNF) :- maximize_v1184,3797 -maximize_v1(Vec,CNF) :- maximize_v1184,3797 -maximize_v1(Vec,CNF) :- maximize_v1184,3797 -maximize_v1_aux([],_CNF).maximize_v1_aux188,3862 -maximize_v1_aux([],_CNF).maximize_v1_aux188,3862 -maximize_v1_aux([B|Bs],CNF) :-maximize_v1_aux189,3888 -maximize_v1_aux([B|Bs],CNF) :-maximize_v1_aux189,3888 -maximize_v1_aux([B|Bs],CNF) :-maximize_v1_aux189,3888 -minimize_v2(Vec,CNF) :-minimize_v2198,3991 -minimize_v2(Vec,CNF) :-minimize_v2198,3991 -minimize_v2(Vec,CNF) :-minimize_v2198,3991 -minimize_v2_loop([]) :- minimize_v2_loop209,4259 -minimize_v2_loop([]) :- minimize_v2_loop209,4259 -minimize_v2_loop([]) :- minimize_v2_loop209,4259 -minimize_v2_loop([V|Vs]) :-minimize_v2_loop211,4300 -minimize_v2_loop([V|Vs]) :-minimize_v2_loop211,4300 -minimize_v2_loop([V|Vs]) :-minimize_v2_loop211,4300 -maximize_v2(Vec,CNF) :-maximize_v2224,4476 -maximize_v2(Vec,CNF) :-maximize_v2224,4476 -maximize_v2(Vec,CNF) :-maximize_v2224,4476 -maximize_v2_loop([]) :- maximize_v2_loop234,4723 -maximize_v2_loop([]) :- maximize_v2_loop234,4723 -maximize_v2_loop([]) :- maximize_v2_loop234,4723 -maximize_v2_loop([V|Vs]) :-maximize_v2_loop236,4764 -maximize_v2_loop([V|Vs]) :-maximize_v2_loop236,4764 -maximize_v2_loop([V|Vs]) :-maximize_v2_loop236,4764 -minimize_v3(Vec,CNF) :-minimize_v3251,4941 -minimize_v3(Vec,CNF) :-minimize_v3251,4941 -minimize_v3(Vec,CNF) :-minimize_v3251,4941 -minimize_v3_loop(Vec,CNF_SVars,Last_Min,_Last_Sol,Final_Min,Final_Sol) :-minimize_v3_loop263,5279 -minimize_v3_loop(Vec,CNF_SVars,Last_Min,_Last_Sol,Final_Min,Final_Sol) :-minimize_v3_loop263,5279 -minimize_v3_loop(Vec,CNF_SVars,Last_Min,_Last_Sol,Final_Min,Final_Sol) :-minimize_v3_loop263,5279 -minimize_v3_loop(_Vec,_CNF_SVars,Final_Min,Final_Sol,Final_Min,Final_Sol) :-minimize_v3_loop271,5572 -minimize_v3_loop(_Vec,_CNF_SVars,Final_Min,Final_Sol,Final_Min,Final_Sol) :-minimize_v3_loop271,5572 -minimize_v3_loop(_Vec,_CNF_SVars,Final_Min,Final_Sol,Final_Min,Final_Sol) :-minimize_v3_loop271,5572 -maximize_v3(Vec,CNF) :-maximize_v3278,5662 -maximize_v3(Vec,CNF) :-maximize_v3278,5662 -maximize_v3(Vec,CNF) :-maximize_v3278,5662 -maximize_v3_loop(Vec,CNF_SVars,Last_Max,_Last_Sol,Final_Max,Final_Sol) :-maximize_v3_loop290,6000 -maximize_v3_loop(Vec,CNF_SVars,Last_Max,_Last_Sol,Final_Max,Final_Sol) :-maximize_v3_loop290,6000 -maximize_v3_loop(Vec,CNF_SVars,Last_Max,_Last_Sol,Final_Max,Final_Sol) :-maximize_v3_loop290,6000 -maximize_v3_loop(_Vec,_CNF_SVars,Final_Max,Final_Sol,Final_Max,Final_Sol) :-maximize_v3_loop298,6293 -maximize_v3_loop(_Vec,_CNF_SVars,Final_Max,Final_Sol,Final_Max,Final_Sol) :-maximize_v3_loop298,6293 -maximize_v3_loop(_Vec,_CNF_SVars,Final_Max,Final_Sol,Final_Max,Final_Sol) :-maximize_v3_loop298,6293 -eliminate_prefix([],_Bit,[]) :- !.eliminate_prefix306,6384 -eliminate_prefix([],_Bit,[]) :- !.eliminate_prefix306,6384 -eliminate_prefix([],_Bit,[]) :- !.eliminate_prefix306,6384 -eliminate_prefix([V|Vs],Bit,New_Vs) :- eliminate_prefix307,6419 -eliminate_prefix([V|Vs],Bit,New_Vs) :- eliminate_prefix307,6419 -eliminate_prefix([V|Vs],Bit,New_Vs) :- eliminate_prefix307,6419 -eliminate_prefix(Vs,Vs).eliminate_prefix313,6613 -eliminate_prefix(Vs,Vs).eliminate_prefix313,6613 -xs_eq_ys([X],[Y],B,Cnf1-Cnf2) :- xs_eq_ys320,6664 -xs_eq_ys([X],[Y],B,Cnf1-Cnf2) :- xs_eq_ys320,6664 -xs_eq_ys([X],[Y],B,Cnf1-Cnf2) :- xs_eq_ys320,6664 -xs_eq_ys([X|Xs],[Y|Ys],B,Cnf1-Cnf4) :-xs_eq_ys323,6726 -xs_eq_ys([X|Xs],[Y|Ys],B,Cnf1-Cnf4) :-xs_eq_ys323,6726 -xs_eq_ys([X|Xs],[Y|Ys],B,Cnf1-Cnf4) :-xs_eq_ys323,6726 -xs_gt_ys(Xs,Ys,[[B]|Cnf1]-Cnf2) :-xs_gt_ys329,6854 -xs_gt_ys(Xs,Ys,[[B]|Cnf1]-Cnf2) :-xs_gt_ys329,6854 -xs_gt_ys(Xs,Ys,[[B]|Cnf1]-Cnf2) :-xs_gt_ys329,6854 -xs_gt_ys([X],[Y],B,Cnf1-Cnf2) :- !,xs_gt_ys334,6926 -xs_gt_ys([X],[Y],B,Cnf1-Cnf2) :- !,xs_gt_ys334,6926 -xs_gt_ys([X],[Y],B,Cnf1-Cnf2) :- !,xs_gt_ys334,6926 -xs_gt_ys(Xs,Ys,B, Cnf1-Cnf6) :-xs_gt_ys336,6986 -xs_gt_ys(Xs,Ys,B, Cnf1-Cnf6) :-xs_gt_ys336,6986 -xs_gt_ys(Xs,Ys,B, Cnf1-Cnf6) :-xs_gt_ys336,6986 -gt(X,Y,Z,[[Z,-X,Y],[-Z,X],[-Z,-Y]|Cnf]-Cnf).gt346,7275 -gt(X,Y,Z,[[Z,-X,Y],[-Z,X],[-Z,-Y]|Cnf]-Cnf).gt346,7275 -or(X,Y,Z, [[Z,-X],[Z,-Y],[-Z,X,Y] | Cnf]-Cnf).or353,7427 -or(X,Y,Z, [[Z,-X],[Z,-Y],[-Z,X,Y] | Cnf]-Cnf).or353,7427 -and(X,Y,Z, [[Z,X,Y],[-Z,X],[-Z,Y] | Cnf]-Cnf).and356,7490 -and(X,Y,Z, [[Z,X,Y],[-Z,X],[-Z,Y] | Cnf]-Cnf).and356,7490 -split(Xs,As,Bs) :-split359,7540 -split(Xs,As,Bs) :-split359,7540 -split(Xs,As,Bs) :-split359,7540 - -packages/swi-minisat2/README,0 - -packages/swi-minisat2/README.YAP,0 - -packages/swig/android/JavaYap.java,3101 -class DoNotDeleteErrorHandler implements DatabaseErrorHandler {DoNotDeleteErrorHandler51,1719 - private static final String TAG = "DoNotDeleteErrorHandler";TAG52,1783 - private static final String TAG = "DoNotDeleteErrorHandler";DoNotDeleteErrorHandler.TAG52,1783 - public void onCorruption(SQLiteDatabase dbObj) {onCorruption53,1848 - public void onCorruption(SQLiteDatabase dbObj) {DoNotDeleteErrorHandler.onCorruption53,1848 -public class JavaYap extends ActivityJavaYap58,1995 - TextView outputText = null;outputText60,2035 - TextView outputText = null;JavaYap.outputText60,2035 - ScrollView scroller = null;scroller61,2067 - ScrollView scroller = null;JavaYap.scroller61,2067 - YAPEngine eng = null;eng62,2099 - YAPEngine eng = null;JavaYap.eng62,2099 - EditText text;text63,2125 - EditText text;JavaYap.text63,2125 - String str;str64,2144 - String str;JavaYap.str64,2144 - String buf;buf65,2160 - String buf;JavaYap.buf65,2160 - YAPQuery q;q66,2176 - YAPQuery q;JavaYap.q66,2176 - Boolean running = false, compute = true;running67,2192 - Boolean running = false, compute = true;JavaYap.running67,2192 - Boolean running = false, compute = true;compute67,2192 - Boolean running = false, compute = true;JavaYap.compute67,2192 - int i=1;i68,2237 - int i=1;JavaYap.i68,2237 - YAPListTerm vs0;vs069,2250 - YAPListTerm vs0;JavaYap.vs069,2250 - private AssetManager mgr;mgr70,2271 - private AssetManager mgr;JavaYap.mgr70,2271 - void runQuery(String str, Boolean more)runQuery72,2302 - void runQuery(String str, Boolean more)JavaYap.runQuery72,2302 - public void onCreate(Bundle savedInstanceState)onCreate144,4670 - public void onCreate(Bundle savedInstanceState)JavaYap.onCreate144,4670 - public void onClearButtonClick(View view)onClearButtonClick189,6261 - public void onClearButtonClick(View view)JavaYap.onClearButtonClick189,6261 - public void onFirstButtonClick(View view)onFirstButtonClick208,6709 - public void onFirstButtonClick(View view)JavaYap.onFirstButtonClick208,6709 - public void onAllButtonClick(View view)onAllButtonClick225,7270 - public void onAllButtonClick(View view)JavaYap.onAllButtonClick225,7270 - private static native void load(AssetManager mgr);load256,8175 - private static native void load(AssetManager mgr);JavaYap.load256,8175 - private static final String TAG = "JavaYap";TAG258,8231 - private static final String TAG = "JavaYap";JavaYap.TAG258,8231 -class JavaCallback extends YAPCallbackJavaCallback262,8284 - TextView output;output264,8325 - TextView output;JavaCallback.output264,8325 - public JavaCallback( TextView outputText )JavaCallback266,8347 - public JavaCallback( TextView outputText )JavaCallback.JavaCallback266,8347 - public void run(String s)run273,8496 - public void run(String s)JavaCallback.run273,8496 - private static final String TAG = "JavaCallback";TAG279,8603 - private static final String TAG = "JavaCallback";JavaCallback.TAG279,8603 - -packages/swig/java/JavaYAP.java,1406 -class JavaYAP {JavaYAP5,64 - YAPQuery q;q7,81 - YAPQuery q;JavaYAP.q7,81 - YAPEngine eng;eng8,95 - YAPEngine eng;JavaYAP.eng8,95 - InputStreamReader istream = new InputStreamReader(System.in) ;istream9,112 - InputStreamReader istream = new InputStreamReader(System.in) ;JavaYAP.istream9,112 - BufferedReader bufRead = new BufferedReader(istream) ;bufRead10,177 - BufferedReader bufRead = new BufferedReader(istream) ;JavaYAP.bufRead10,177 - Boolean runQuery(String str)runQuery14,237 - Boolean runQuery(String str)JavaYAP.runQuery14,237 - Boolean continueQuery()continueQuery26,451 - Boolean continueQuery()JavaYAP.continueQuery26,451 - public void top_query()top_query53,1112 - public void top_query()JavaYAP.top_query53,1112 - public static void main(String args[])main93,2090 - public static void main(String args[])JavaYAP.main93,2090 -class JavaCallback extends YAPCallbackJavaCallback110,2334 - String callbacks;callbacks112,2375 - String callbacks;JavaCallback.callbacks112,2375 - public JavaCallback( String outputText )JavaCallback114,2396 - public JavaCallback( String outputText )JavaCallback.JavaCallback114,2396 - public void run(String s)run120,2490 - public void run(String s)JavaCallback.run120,2490 - private static final String TAG = "JavaCallback";TAG125,2554 - private static final String TAG = "JavaCallback";JavaCallback.TAG125,2554 - -packages/swig/jni/Android.mk,137 -LOCAL_PATH := $(call my-dir)LOCAL_PATH2,19 -LOCAL_MODULE := yapLOCAL_MODULE6,72 -LOCAL_SRC_FILES := yap_wrap.cLOCAL_SRC_FILES7,95 - -packages/swig/new,0 - -packages/swig/python/yapi.yap,1005 -bindvars( L, NL ) :-bindvars10,153 -bindvars( L, NL ) :-bindvars10,153 -bindvars( L, NL ) :-bindvars10,153 -bind(X=Y, X=X, T0, T, N, N) :-bind17,278 -bind(X=Y, X=X, T0, T, N, N) :-bind17,278 -bind(X=Y, X=X, T0, T, N, N) :-bind17,278 -bind(X = G, X = G, T, T, N0, N0) :-bind21,347 -bind(X = G, X = G, T, T, N0, N0) :-bind21,347 -bind(X = G, X = G, T, T, N0, N0) :-bind21,347 -bind(X = C, X = NC, T, NT, N0, NF) :-bind24,399 -bind(X = C, X = NC, T, NT, N0, NF) :-bind24,399 -bind(X = C, X = NC, T, NT, N0, NF) :-bind24,399 -newb(Y, X, T, T, N, N) :-newb29,506 -newb(Y, X, T, T, N, N) :-newb29,506 -newb(Y, X, T, T, N, N) :-newb29,506 -newb(Y, X, T, TN, N, NF) :-newb33,566 -newb(Y, X, T, TN, N, NF) :-newb33,566 -newb(Y, X, T, TN, N, NF) :-newb33,566 -newb(Y, Y, T, T, N, N) :-newb39,669 -newb(Y, Y, T, T, N, N) :-newb39,669 -newb(Y, Y, T, T, N, N) :-newb39,669 -newb(Y, X, T, NT, N0, NF) :-newb42,711 -newb(Y, X, T, NT, N0, NF) :-newb42,711 -newb(Y, X, T, NT, N0, NF) :-newb42,711 - -packages/swig/yap.py,20308 -from sys import version_info as _swig_python_version_info_swig_python_version_info7,204 - def swig_import_helper():swig_import_helper9,305 - import importlibimportlib10,335 - _yap = swig_import_helper()_yap17,596 - def swig_import_helper():swig_import_helper20,700 - from os.path import dirnamedirname21,730 - import impimp22,766 - import _yap_yap27,929 - _yap = swig_import_helper()_yap35,1155 - import _yap_yap38,1220 - _swig_property = property_swig_property42,1272 - import builtins as __builtin____builtin__47,1376 - import __builtin____builtin__49,1431 -def _swig_setattr_nondynamic(self, class_type, name, value, static=1):_swig_setattr_nondynamic51,1455 -def _swig_setattr(self, class_type, name, value):_swig_setattr67,1985 -def _swig_getattr(self, class_type, name):_swig_getattr71,2107 -def _swig_repr(self):_swig_repr80,2406 -def _swig_setattr_nondynamic_method(set):_swig_setattr_nondynamic_method88,2638 - def set_attr(self, name, value):set_attr89,2680 - import weakrefweakref100,2992 - weakref_proxy = weakref.proxyweakref_proxy101,3011 - weakref_proxy = lambda x: xweakref_proxy103,3075 -YAPA_HH = _yap.YAPA_HHYAPA_HH106,3109 -PRED_TAG = _yap.PRED_TAGPRED_TAG107,3132 -DB_TAG = _yap.DB_TAGDB_TAG108,3157 -FUNCTOR_TAG = _yap.FUNCTOR_TAGFUNCTOR_TAG109,3178 -ARITHMETIC_PROPERTY_TAG = _yap.ARITHMETIC_PROPERTY_TAGARITHMETIC_PROPERTY_TAG110,3209 -TRANSLATION_TAG = _yap.TRANSLATION_TAGTRANSLATION_TAG111,3264 -HOLD_TAG = _yap.HOLD_TAGHOLD_TAG112,3303 -MUTEX_TAG = _yap.MUTEX_TAGMUTEX_TAG113,3328 -ARRAY_TAG = _yap.ARRAY_TAGARRAY_TAG114,3355 -MODULE_TAG = _yap.MODULE_TAGMODULE_TAG115,3382 -BLACKBOARD_TAG = _yap.BLACKBOARD_TAGBLACKBOARD_TAG116,3411 -VALUE_TAG = _yap.VALUE_TAGVALUE_TAG117,3448 -GLOBAL_VAR_TAG = _yap.GLOBAL_VAR_TAGGLOBAL_VAR_TAG118,3475 -BLOB_TAG = _yap.BLOB_TAGBLOB_TAG119,3512 -OPERATOR_TAG = _yap.OPERATOR_TAGOPERATOR_TAG120,3537 -class YAPAtom(object):YAPAtom121,3570 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown122,3593 - __repr__ = _swig_repr__repr__123,3701 - def __init__(self, *args):__init__125,3728 - def getName(self) -> "char const *":getName132,3914 - def text(self) -> "char const *":text135,3998 - def getProp(self, tag: 'PropTag') -> "Prop":getProp138,4076 - __swig_destroy__ = _yap.delete_YAPAtom__swig_destroy__140,4172 - __del__ = lambda self: None__del__141,4215 -YAPAtom_swigregister = _yap.YAPAtom_swigregisterYAPAtom_swigregister142,4247 -class YAPProp(object):YAPProp145,4327 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown146,4350 - def __init__(self, *args, **kwargs):__init__148,4459 - __repr__ = _swig_repr__repr__150,4555 - __swig_destroy__ = _yap.delete_YAPProp__swig_destroy__151,4581 - __del__ = lambda self: None__del__152,4624 -YAPProp_swigregister = _yap.YAPProp_swigregisterYAPProp_swigregister153,4656 -class YAPError(object):YAPError156,4736 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown157,4760 - __repr__ = _swig_repr__repr__158,4868 - def __init__(self, *args):__init__160,4895 - def getID(self) -> "yap_error_number":getID167,5082 - def getErrorClass(self) -> "yap_error_class_number":getErrorClass170,5167 - def getFile(self) -> "char const *":getFile173,5274 - def getLine(self) -> "Int":getLine176,5359 - def text(self) -> "std::string":text179,5435 - __swig_destroy__ = _yap.delete_YAPError__swig_destroy__181,5512 - __del__ = lambda self: None__del__182,5556 -YAPError_swigregister = _yap.YAPError_swigregisterYAPError_swigregister183,5588 -YAPT_HH = _yap.YAPT_HHYAPT_HH186,5672 -def YAP_ReadBuffer(s: 'char const *', tp: 'Term *') -> "Term":YAP_ReadBuffer188,5696 -YAP_ReadBuffer = _yap.YAP_ReadBufferYAP_ReadBuffer190,5797 -class YAPTerm(object):YAPTerm191,5834 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown192,5857 - __repr__ = _swig_repr__repr__193,5965 - def gt(self) -> "Term":gt195,5992 - def mk(self, t0: 'Term') -> "void":mk198,6058 - def put(self, t0: 'Term') -> "void":put201,6140 - def __init__(self, *args):__init__204,6224 - __swig_destroy__ = _yap.delete_YAPTerm__swig_destroy__210,6409 - __del__ = lambda self: None__del__211,6452 - def tag(self) -> "YAP_tag_t":tag213,6485 - def deepCopy(self) -> "Term":deepCopy216,6558 - def numberVars(self, start: 'intptr_t', skip_singletons: 'bool'=False) -> "intptr_t":numberVars219,6636 - def term(self) -> "Term":term222,6796 - def bind(self, *args) -> "void":bind225,6866 - def exactlyEqual(self, t1: 'YAPTerm') -> "bool":exactlyEqual228,6950 - def unify(self, t1: 'YAPTerm') -> "bool":unify231,7055 - def unifiable(self, t1: 'YAPTerm') -> "bool":unifiable234,7146 - def variant(self, t1: 'YAPTerm') -> "YAP_Term":variant237,7245 - def hashTerm(self, sz: 'size_t', depth: 'size_t', variant: 'bool') -> "intptr_t":hashTerm240,7344 - def isVar(self) -> "bool":isVar243,7494 - def isAtom(self) -> "bool":isAtom246,7566 - def isInteger(self) -> "bool":isInteger249,7640 - def isFloat(self) -> "bool":isFloat252,7720 - def isString(self) -> "bool":isString255,7796 - def isCompound(self) -> "bool":isCompound258,7874 - def isAppl(self) -> "bool":isAppl261,7956 - def isPair(self) -> "bool":isPair264,8030 - def isGround(self) -> "bool":isGround267,8104 - def isList(self) -> "bool":isList270,8182 - def getArg(self, i: 'uintptr_t') -> "Term":getArg273,8256 - def arity(self) -> "uintptr_t":arity276,8349 - def text(self) -> "char const *":text279,8426 - def handle(self) -> "yhandle_t":handle282,8504 - def initialized(self) -> "bool":initialized285,8583 -YAPTerm_swigregister = _yap.YAPTerm_swigregisterYAPTerm_swigregister287,8666 -class YAPVarTerm(YAPTerm):YAPVarTerm290,8746 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown291,8773 - __repr__ = _swig_repr__repr__292,8881 - def __init__(self):__init__294,8908 - def getVar(self) -> "CELL *":getVar301,9085 - def unbound(self) -> "bool":unbound304,9164 - def isVar(self) -> "bool":isVar307,9243 - def isAtom(self) -> "bool":isAtom310,9318 - def isInteger(self) -> "bool":isInteger313,9395 - def isFloat(self) -> "bool":isFloat316,9478 - def isString(self) -> "bool":isString319,9557 - def isCompound(self) -> "bool":isCompound322,9638 - def isAppl(self) -> "bool":isAppl325,9723 - def isPair(self) -> "bool":isPair328,9800 - def isGround(self) -> "bool":isGround331,9877 - def isList(self) -> "bool":isList334,9958 - __swig_destroy__ = _yap.delete_YAPVarTerm__swig_destroy__336,10034 - __del__ = lambda self: None__del__337,10080 -YAPVarTerm_swigregister = _yap.YAPVarTerm_swigregisterYAPVarTerm_swigregister338,10112 -class YAPApplTerm(YAPTerm):YAPApplTerm341,10204 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown342,10232 - __repr__ = _swig_repr__repr__343,10340 - def __init__(self, *args):__init__345,10367 - def getFunctor(self) -> "YAPFunctor":getFunctor352,10557 - def getArg(self, i: 'uintptr_t') -> "Term":getArg355,10649 - def isVar(self) -> "bool":isVar358,10746 - def isAtom(self) -> "bool":isAtom361,10822 - def isInteger(self) -> "bool":isInteger364,10900 - def isFloat(self) -> "bool":isFloat367,10984 - def isString(self) -> "bool":isString370,11064 - def isCompound(self) -> "bool":isCompound373,11146 - def isAppl(self) -> "bool":isAppl376,11232 - def isPair(self) -> "bool":isPair379,11310 - def isGround(self) -> "bool":isGround382,11388 - def isList(self) -> "bool":isList385,11470 - __swig_destroy__ = _yap.delete_YAPApplTerm__swig_destroy__387,11547 - __del__ = lambda self: None__del__388,11594 -YAPApplTerm_swigregister = _yap.YAPApplTerm_swigregisterYAPApplTerm_swigregister389,11626 -class YAPPairTerm(YAPTerm):YAPPairTerm392,11722 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown393,11750 - __repr__ = _swig_repr__repr__394,11858 - def __init__(self, *args):__init__396,11885 - def getHead(self) -> "Term":getHead403,12075 - def getTail(self) -> "Term":getTail406,12155 - def listToArray(self) -> "std::vector< Term >":listToArray409,12235 - __swig_destroy__ = _yap.delete_YAPPairTerm__swig_destroy__411,12337 - __del__ = lambda self: None__del__412,12384 -YAPPairTerm_swigregister = _yap.YAPPairTerm_swigregisterYAPPairTerm_swigregister413,12416 -class YAPNumberTerm(YAPTerm):YAPNumberTerm416,12512 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown417,12542 - __repr__ = _swig_repr__repr__418,12650 - def __init__(self):__init__420,12677 - def isTagged(self) -> "bool":isTagged427,12857 - __swig_destroy__ = _yap.delete_YAPNumberTerm__swig_destroy__429,12940 - __del__ = lambda self: None__del__430,12989 -YAPNumberTerm_swigregister = _yap.YAPNumberTerm_swigregisterYAPNumberTerm_swigregister431,13021 -class YAPIntegerTerm(YAPNumberTerm):YAPIntegerTerm434,13125 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown435,13162 - __repr__ = _swig_repr__repr__436,13270 - def __init__(self, i: 'intptr_t'):__init__438,13297 - def getInteger(self) -> "intptr_t":getInteger445,13494 - __swig_destroy__ = _yap.delete_YAPIntegerTerm__swig_destroy__447,13586 - __del__ = lambda self: None__del__448,13636 -YAPIntegerTerm_swigregister = _yap.YAPIntegerTerm_swigregisterYAPIntegerTerm_swigregister449,13668 -class YAPFloatTerm(YAPNumberTerm):YAPFloatTerm452,13776 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown453,13811 - __repr__ = _swig_repr__repr__454,13919 - def __init__(self, dbl: 'double'):__init__456,13946 - def getFl(self) -> "double":getFl463,14143 - __swig_destroy__ = _yap.delete_YAPFloatTerm__swig_destroy__465,14221 - __del__ = lambda self: None__del__466,14269 -YAPFloatTerm_swigregister = _yap.YAPFloatTerm_swigregisterYAPFloatTerm_swigregister467,14301 -class YAPListTerm(YAPTerm):YAPListTerm470,14401 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown471,14429 - __repr__ = _swig_repr__repr__472,14537 - def __init__(self, *args):__init__474,14564 - def length(self) -> "size_t":length481,14754 - def car(self) -> "Term":car484,14834 - def cdr(self) -> "Term":cdr487,14906 - def dup(self) -> "Term":dup490,14978 - def nil(self) -> "bool":nil493,15050 - __swig_destroy__ = _yap.delete_YAPListTerm__swig_destroy__495,15121 - __del__ = lambda self: None__del__496,15168 -YAPListTerm_swigregister = _yap.YAPListTerm_swigregisterYAPListTerm_swigregister497,15200 -class YAPStringTerm(YAPTerm):YAPStringTerm500,15296 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown501,15326 - __repr__ = _swig_repr__repr__502,15434 - def __init__(self, *args):__init__504,15461 - def getString(self) -> "char const *":getString511,15653 - __swig_destroy__ = _yap.delete_YAPStringTerm__swig_destroy__513,15746 - __del__ = lambda self: None__del__514,15795 -YAPStringTerm_swigregister = _yap.YAPStringTerm_swigregisterYAPStringTerm_swigregister515,15827 -class YAPAtomTerm(YAPTerm):YAPAtomTerm518,15931 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown519,15959 - __repr__ = _swig_repr__repr__520,16067 - def __init__(self, *args):__init__522,16094 - def isVar(self) -> "bool":isVar529,16284 - def isAtom(self) -> "bool":isAtom532,16360 - def isInteger(self) -> "bool":isInteger535,16438 - def isFloat(self) -> "bool":isFloat538,16522 - def isString(self) -> "bool":isString541,16602 - def isCompound(self) -> "bool":isCompound544,16684 - def isAppl(self) -> "bool":isAppl547,16770 - def isPair(self) -> "bool":isPair550,16848 - def isGround(self) -> "bool":isGround553,16926 - def isList(self) -> "bool":isList556,17008 - def getAtom(self) -> "YAPAtom":getAtom559,17086 - def text(self) -> "char const *":text562,17169 - __swig_destroy__ = _yap.delete_YAPAtomTerm__swig_destroy__564,17250 - __del__ = lambda self: None__del__565,17297 -YAPAtomTerm_swigregister = _yap.YAPAtomTerm_swigregisterYAPAtomTerm_swigregister566,17329 -YAP_CPP_DB_INTERFACE = _yap.YAP_CPP_DB_INTERFACEYAP_CPP_DB_INTERFACE569,17425 -class YAPModule(object):YAPModule570,17474 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown571,17499 - __repr__ = _swig_repr__repr__572,17607 - def __init__(self, *args):__init__574,17634 - __swig_destroy__ = _yap.delete_YAPModule__swig_destroy__580,17821 - __del__ = lambda self: None__del__581,17866 -YAPModule_swigregister = _yap.YAPModule_swigregisterYAPModule_swigregister582,17898 -class YAPModuleProp(YAPProp):YAPModuleProp585,17986 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown586,18016 - __repr__ = _swig_repr__repr__587,18124 - def __init__(self, *args):__init__589,18151 - def module(self) -> "YAPModule":module596,18343 - __swig_destroy__ = _yap.delete_YAPModuleProp__swig_destroy__598,18427 - __del__ = lambda self: None__del__599,18476 -YAPModuleProp_swigregister = _yap.YAPModuleProp_swigregisterYAPModuleProp_swigregister600,18508 -class YAPFunctor(YAPProp):YAPFunctor603,18612 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown604,18639 - __repr__ = _swig_repr__repr__605,18747 - def __init__(self, *args):__init__607,18774 - def name(self) -> "YAPAtom":name614,18963 - def arity(self) -> "uintptr_t":arity617,19039 - __swig_destroy__ = _yap.delete_YAPFunctor__swig_destroy__619,19118 - __del__ = lambda self: None__del__620,19164 -YAPFunctor_swigregister = _yap.YAPFunctor_swigregisterYAPFunctor_swigregister621,19196 -class YAPPredicate(YAPModuleProp):YAPPredicate624,19288 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown625,19323 - __repr__ = _swig_repr__repr__626,19431 - def __init__(self, *args):__init__628,19458 - def module(self) -> "YAPModule":module635,19649 - def name(self) -> "YAPAtom":name638,19733 - def functor(self) -> "YAPFunctor":functor641,19811 - def getArity(self) -> "uintptr_t":getArity644,19898 - def arity(self) -> "uintptr_t":arity647,19986 - __swig_destroy__ = _yap.delete_YAPPredicate__swig_destroy__649,20067 - __del__ = lambda self: None__del__650,20115 -YAPPredicate_swigregister = _yap.YAPPredicate_swigregisterYAPPredicate_swigregister651,20147 -class YAPPrologPredicate(YAPPredicate):YAPPrologPredicate654,20247 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown655,20287 - __repr__ = _swig_repr__repr__656,20395 - def __init__(self, *args):__init__658,20422 - def assertClause(self, *args) -> "bool":assertClause665,20619 - def assertFact(self, tuple: 'YAPTerm', last: 'bool'=True) -> "bool":assertFact668,20730 - def retractClause(self, skeleton: 'YAPTerm', all: 'bool'=False) -> "void *":retractClause671,20873 - def nextClause(self) -> "YAPTerm *":nextClause674,21029 - __swig_destroy__ = _yap.delete_YAPPrologPredicate__swig_destroy__676,21126 - __del__ = lambda self: None__del__677,21180 -YAPPrologPredicate_swigregister = _yap.YAPPrologPredicate_swigregisterYAPPrologPredicate_swigregister678,21212 -class YAPFLIP(YAPPredicate):YAPFLIP681,21336 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown682,21365 - __repr__ = _swig_repr__repr__683,21473 - def __init__(self, *args):__init__685,21500 - def addCall(self, call: 'CPredicate') -> "bool":addCall692,21686 - def addRetry(self, call: 'CPredicate') -> "bool":addRetry695,21788 - def addCut(self, call: 'CPredicate') -> "bool":addCut698,21892 - __swig_destroy__ = _yap.delete_YAPFLIP__swig_destroy__700,21991 - __del__ = lambda self: None__del__701,22034 -YAPFLIP_swigregister = _yap.YAPFLIP_swigregisterYAPFLIP_swigregister702,22066 -YAPQ_HH = _yap.YAPQ_HHYAPQ_HH705,22146 -class YAPQuery(YAPPredicate):YAPQuery706,22169 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown707,22199 - __repr__ = _swig_repr__repr__708,22307 - def __init__(self, *args):__init__710,22334 - def setFlag(self, flag: 'int') -> "void":setFlag717,22521 - def resetFlag(self, flag: 'int') -> "void":resetFlag720,22617 - def first(self) -> "bool":first723,22717 - def next(self) -> "bool":next726,22790 - def deterministic(self) -> "bool":deterministic729,22861 - def text(self) -> "char const *":text732,22950 - def close(self) -> "void":close735,23029 - def cut(self) -> "void":cut738,23102 - def namedVars(self) -> "Term":namedVars741,23171 - def namedVarsVector(self) -> "std::vector< Term >":namedVarsVector744,23252 - def getTerm(self, t: 'yhandle_t') -> "YAPTerm":getTerm747,23360 - def command(self) -> "bool":command750,23459 - __swig_destroy__ = _yap.delete_YAPQuery__swig_destroy__752,23535 - __del__ = lambda self: None__del__753,23579 -YAPQuery_swigregister = _yap.YAPQuery_swigregisterYAPQuery_swigregister754,23611 -class YAPCallback(object):YAPCallback757,23695 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown758,23722 - __repr__ = _swig_repr__repr__759,23830 - __swig_destroy__ = _yap.delete_YAPCallback__swig_destroy__760,23856 - __del__ = lambda self: None__del__761,23903 - def run(self, *args) -> "void":run763,23936 - def __init__(self):__init__766,24022 - def __disown__(self):__disown__776,24312 -YAPCallback_swigregister = _yap.YAPCallback_swigregisterYAPCallback_swigregister780,24438 -class YAPEngine(object):YAPEngine783,24534 - thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')thisown784,24559 - __repr__ = _swig_repr__repr__785,24667 - def __init__(self, *args):__init__787,24694 - __swig_destroy__ = _yap.delete_YAPEngine__swig_destroy__793,24881 - __del__ = lambda self: None__del__794,24926 - def delYAPCallback(self) -> "void":delYAPCallback796,24959 - def setYAPCallback(self, cb: 'YAPCallback') -> "void":setYAPCallback799,25051 - def run(self, s: 'char *') -> "void":run802,25166 - def close(self) -> "void":close805,25252 - def hasError(self) -> "bool":hasError808,25326 - def query(self, s: 'char const *') -> "YAPQuery *":query811,25406 - def currentModule(self) -> "YAPModule":currentModule814,25508 - def getTerm(self, h: 'yhandle_t') -> "YAPTerm":getTerm817,25603 - def call(self, ap: 'YAPPredicate', ts: 'YAPTerm') -> "bool":call820,25703 - def goalt(self, Yt: 'YAPTerm') -> "bool":goalt823,25818 - def mgoal(self, t: 'Term', tmod: 'Term') -> "bool":mgoal826,25911 - def goal(self, t: 'Term') -> "bool":goal829,26019 - def reSet(self) -> "void":reSet832,26105 - def release(self) -> "void":release835,26179 - def currentDir(self) -> "char const *":currentDir838,26257 - def version(self) -> "char const *":version841,26349 - def fun(self, t: 'Term') -> "Term":fun844,26435 -YAPEngine_swigregister = _yap.YAPEngine_swigregisterYAPEngine_swigregister846,26518 - -packages/swig/yap_wrap.cpp,73163 -#define SWIGPYTHONSWIGPYTHON13,539 -#define SWIG_DIRECTORSSWIG_DIRECTORS16,566 -#define SWIG_PYTHON_DIRECTOR_NO_VTABLESWIG_PYTHON_DIRECTOR_NO_VTABLE17,589 -template class SwigValueWrapper {SwigValueWrapper22,697 - struct SwigMovePointer {SwigMovePointer23,743 - struct SwigMovePointer {SwigValueWrapper::SwigMovePointer23,743 - T *ptr;ptr24,770 - T *ptr;SwigValueWrapper::SwigMovePointer::ptr24,770 - SwigMovePointer(T *p) : ptr(p) { }SwigMovePointer25,782 - SwigMovePointer(T *p) : ptr(p) { }SwigValueWrapper::SwigMovePointer::SwigMovePointer25,782 - ~SwigMovePointer() { delete ptr; }~SwigMovePointer26,821 - ~SwigMovePointer() { delete ptr; }SwigValueWrapper::SwigMovePointer::~SwigMovePointer26,821 - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }operator =27,860 - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }SwigValueWrapper::SwigMovePointer::operator =27,860 - } pointer;pointer28,1000 - } pointer;SwigValueWrapper::pointer28,1000 - SwigValueWrapper() : pointer(0) { }SwigValueWrapper32,1136 - SwigValueWrapper() : pointer(0) { }SwigValueWrapper::SwigValueWrapper32,1136 - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; }operator =33,1174 - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; }SwigValueWrapper::operator =33,1174 - operator T&() const { return *pointer.ptr; }operator T&34,1280 - operator T&() const { return *pointer.ptr; }SwigValueWrapper::operator T&34,1280 - T *operator&() { return pointer.ptr; }operator &35,1327 - T *operator&() { return pointer.ptr; }SwigValueWrapper::operator &35,1327 -template T SwigValueInit() {SwigValueInit38,1372 -# define SWIGTEMPLATEDISAMBIGUATOR SWIGTEMPLATEDISAMBIGUATOR51,1911 -# define SWIGTEMPLATEDISAMBIGUATOR SWIGTEMPLATEDISAMBIGUATOR55,2166 -# define SWIGTEMPLATEDISAMBIGUATORSWIGTEMPLATEDISAMBIGUATOR57,2218 -# define SWIGINLINE SWIGINLINE64,2390 -# define SWIGINLINESWIGINLINE66,2426 -# define SWIGUNUSED SWIGUNUSED74,2669 -# define SWIGUNUSEDSWIGUNUSED76,2731 -# define SWIGUNUSED SWIGUNUSED79,2787 -# define SWIGUNUSEDSWIGUNUSED81,2845 -# define SWIGUNUSEDPARM(SWIGUNUSEDPARM93,3084 -# define SWIGUNUSEDPARM(SWIGUNUSEDPARM95,3120 -# define SWIGINTERN SWIGINTERN101,3224 -# define SWIGINTERNINLINE SWIGINTERNINLINE106,3329 -# define GCC_HASCLASSVISIBILITYGCC_HASCLASSVISIBILITY113,3530 -# define SWIGEXPORTSWIGEXPORT121,3710 -# define SWIGEXPORT SWIGEXPORT123,3743 -# define SWIGEXPORT SWIGEXPORT127,3866 -# define SWIGEXPORTSWIGEXPORT129,3939 -# define SWIGSTDCALL SWIGSTDCALL137,4113 -# define SWIGSTDCALLSWIGSTDCALL139,4153 -# define _CRT_SECURE_NO_DEPRECATE_CRT_SECURE_NO_DEPRECATE145,4377 -# define _SCL_SECURE_NO_DEPRECATE_SCL_SECURE_NO_DEPRECATE150,4611 -# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES155,4815 -# undef _DEBUG_DEBUG170,5358 -# define _DEBUG_DEBUG172,5394 -#define SWIG_RUNTIME_VERSION SWIG_RUNTIME_VERSION186,5864 -# define SWIG_QUOTE_STRING(SWIG_QUOTE_STRING190,5976 -# define SWIG_EXPAND_AND_QUOTE_STRING(SWIG_EXPAND_AND_QUOTE_STRING191,6009 -# define SWIG_TYPE_TABLE_NAME SWIG_TYPE_TABLE_NAME192,6071 -# define SWIG_TYPE_TABLE_NAMESWIG_TYPE_TABLE_NAME194,6153 -# define SWIGRUNTIME SWIGRUNTIME207,6520 -# define SWIGRUNTIMEINLINE SWIGRUNTIMEINLINE211,6586 -# define SWIG_BUFFER_SIZE SWIG_BUFFER_SIZE216,6696 -#define SWIG_POINTER_DISOWN SWIG_POINTER_DISOWN220,6771 -#define SWIG_CAST_NEW_MEMORY SWIG_CAST_NEW_MEMORY221,6810 -#define SWIG_POINTER_OWN SWIG_POINTER_OWN224,6886 -#define SWIG_OK SWIG_OK306,8989 -#define SWIG_ERROR SWIG_ERROR307,9028 -#define SWIG_IsOK(SWIG_IsOK308,9068 -#define SWIG_ArgError(SWIG_ArgError309,9112 -#define SWIG_CASTRANKLIMIT SWIG_CASTRANKLIMIT312,9259 -#define SWIG_NEWOBJMASK SWIG_NEWOBJMASK314,9371 -#define SWIG_TMPOBJMASK SWIG_TMPOBJMASK316,9500 -#define SWIG_BADOBJ SWIG_BADOBJ318,9588 -#define SWIG_OLDOBJ SWIG_OLDOBJ319,9636 -#define SWIG_NEWOBJ SWIG_NEWOBJ320,9681 -#define SWIG_TMPOBJ SWIG_TMPOBJ321,9744 -#define SWIG_AddNewMask(SWIG_AddNewMask323,9845 -#define SWIG_DelNewMask(SWIG_DelNewMask324,9923 -#define SWIG_IsNewObj(SWIG_IsNewObj325,10002 -#define SWIG_AddTmpMask(SWIG_AddTmpMask326,10077 -#define SWIG_DelTmpMask(SWIG_DelTmpMask327,10155 -#define SWIG_IsTmpObj(SWIG_IsTmpObj328,10234 -# define SWIG_TypeRank SWIG_TypeRank333,10387 -# define SWIG_MAXCASTRANK SWIG_MAXCASTRANK336,10513 -# define SWIG_CASTRANKMASK SWIG_CASTRANKMASK338,10564 -# define SWIG_CastRank(SWIG_CastRank339,10627 -SWIGINTERNINLINE int SWIG_AddCast(int r) {SWIG_AddCast340,10688 -SWIGINTERNINLINE int SWIG_CheckState(int r) {SWIG_CheckState343,10825 -# define SWIG_AddCast(SWIG_AddCast347,10953 -# define SWIG_CheckState(SWIG_CheckState348,10983 -typedef void *(*swig_converter_func)(void *, int *);swig_converter_func358,11105 -typedef struct swig_type_info *(*swig_dycast_func)(void **);swig_dycast_func359,11158 -typedef struct swig_type_info {swig_type_info362,11269 - const char *name; /* mangled name of this type */name363,11301 - const char *name; /* mangled name of this type */swig_type_info::name363,11301 - const char *str; /* human readable name of this type */str364,11367 - const char *str; /* human readable name of this type */swig_type_info::str364,11367 - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */dcast365,11439 - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */swig_type_info::dcast365,11439 - struct swig_cast_info *cast; /* linked list of types that can cast into this type */cast366,11518 - struct swig_cast_info *cast; /* linked list of types that can cast into this type */swig_type_info::cast366,11518 - void *clientdata; /* language specific type data */clientdata367,11608 - void *clientdata; /* language specific type data */swig_type_info::clientdata367,11608 - int owndata; /* flag if the structure owns the clientdata */owndata368,11681 - int owndata; /* flag if the structure owns the clientdata */swig_type_info::owndata368,11681 -} swig_type_info;swig_type_info369,11764 -typedef struct swig_cast_info {swig_cast_info372,11856 - swig_type_info *type; /* pointer to type that is equivalent to this type */type373,11888 - swig_type_info *type; /* pointer to type that is equivalent to this type */swig_cast_info::type373,11888 - swig_converter_func converter; /* function to cast the void pointers */converter374,11976 - swig_converter_func converter; /* function to cast the void pointers */swig_cast_info::converter374,11976 - struct swig_cast_info *next; /* pointer to next cast in linked list */next375,12055 - struct swig_cast_info *next; /* pointer to next cast in linked list */swig_cast_info::next375,12055 - struct swig_cast_info *prev; /* pointer to the previous cast */prev376,12131 - struct swig_cast_info *prev; /* pointer to the previous cast */swig_cast_info::prev376,12131 -} swig_cast_info;swig_cast_info377,12200 -typedef struct swig_module_info {swig_module_info382,12414 - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */types383,12448 - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */swig_module_info::types383,12448 - size_t size; /* Number of types in this module */size384,12560 - size_t size; /* Number of types in this module */swig_module_info::size384,12560 - struct swig_module_info *next; /* Pointer to next element in circularly linked list */next385,12637 - struct swig_module_info *next; /* Pointer to next element in circularly linked list */swig_module_info::next385,12637 - swig_type_info **type_initial; /* Array of initially generated type structures */type_initial386,12727 - swig_type_info **type_initial; /* Array of initially generated type structures */swig_module_info::type_initial386,12727 - swig_cast_info **cast_initial; /* Array of initially generated casting structures */cast_initial387,12819 - swig_cast_info **cast_initial; /* Array of initially generated casting structures */swig_module_info::cast_initial387,12819 - void *clientdata; /* Language specific module data */clientdata388,12914 - void *clientdata; /* Language specific module data */swig_module_info::clientdata388,12914 -} swig_module_info;swig_module_info389,12990 -SWIG_TypeNameComp(const char *f1, const char *l1,SWIG_TypeNameComp399,13248 -SWIG_TypeCmp(const char *nb, const char *tb) {SWIG_TypeCmp414,13705 -SWIG_TypeEquiv(const char *nb, const char *tb) {SWIG_TypeEquiv433,14136 -SWIG_TypeCheck(const char *c, swig_type_info *ty) {SWIG_TypeCheck441,14288 -SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) {SWIG_TypeCheckStruct468,14987 -SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {SWIG_TypeCast495,15643 -SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) {SWIG_TypeDynamicCast503,15881 -SWIG_TypeName(const swig_type_info *ty) {SWIG_TypeName517,16191 -SWIG_TypePrettyName(const swig_type_info *type) {SWIG_TypePrettyName526,16406 -SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {SWIG_TypeClientData547,16959 -SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {SWIG_TypeNewClientData563,17347 -SWIG_MangledTypeQueryModule(swig_module_info *start,SWIG_MangledTypeQueryModule577,17778 -SWIG_TypeQueryModule(swig_module_info *start,SWIG_TypeQueryModule622,19029 -SWIG_PackData(char *c, void *ptr, size_t sz) {SWIG_PackData651,19804 -SWIG_UnpackData(const char *c, void *ptr, size_t sz) {SWIG_UnpackData667,20190 -SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) {SWIG_PackVoidPtr695,20893 -SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) {SWIG_UnpackVoidPtr706,21205 -SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {SWIG_PackDataName719,21478 -SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {SWIG_UnpackDataName734,21827 -#define SWIG_UnknownError SWIG_UnknownError751,22130 -#define SWIG_IOError SWIG_IOError752,22167 -#define SWIG_RuntimeError SWIG_RuntimeError753,22203 -#define SWIG_IndexError SWIG_IndexError754,22239 -#define SWIG_TypeError SWIG_TypeError755,22275 -#define SWIG_DivisionByZero SWIG_DivisionByZero756,22311 -#define SWIG_OverflowError SWIG_OverflowError757,22347 -#define SWIG_SyntaxError SWIG_SyntaxError758,22383 -#define SWIG_ValueError SWIG_ValueError759,22419 -#define SWIG_SystemError SWIG_SystemError760,22455 -#define SWIG_AttributeError SWIG_AttributeError761,22492 -#define SWIG_MemoryError SWIG_MemoryError762,22529 -#define SWIG_NullReferenceError SWIG_NullReferenceError763,22566 -#define PyClass_Check(PyClass_Check770,22682 -#define PyInt_Check(PyInt_Check771,22760 -#define PyInt_AsLong(PyInt_AsLong772,22799 -#define PyInt_FromLong(PyInt_FromLong773,22840 -#define PyInt_FromSize_t(PyInt_FromSize_t774,22885 -#define PyString_Check(PyString_Check775,22934 -#define PyString_FromString(PyString_FromString776,22983 -#define PyString_Format(PyString_Format777,23038 -#define PyString_AsString(PyString_AsString778,23102 -#define PyString_Size(PyString_Size779,23155 -#define PyString_InternFromString(PyString_InternFromString780,23201 -#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_HAVE_CLASS781,23272 -#define PyString_AS_STRING(PyString_AS_STRING782,23322 -#define _PyLong_FromSsize_t(_PyLong_FromSsize_t783,23375 -# define Py_TYPE(Py_TYPE788,23453 -# define SWIG_Python_str_FromFormat SWIG_Python_str_FromFormat794,23588 -# define SWIG_Python_str_FromFormat SWIG_Python_str_FromFormat796,23652 -SWIG_Python_str_AsChar(PyObject *str)SWIG_Python_str_AsChar804,23871 -# define SWIG_Python_str_DelForPy3(SWIG_Python_str_DelForPy3822,24258 -# define SWIG_Python_str_DelForPy3(SWIG_Python_str_DelForPy3824,24323 -SWIG_Python_str_FromChar(const char *c)SWIG_Python_str_FromChar829,24393 -# define PyOS_snprintf PyOS_snprintf841,24692 -# define PyOS_snprintf PyOS_snprintf843,24733 -# define SWIG_PYBUFFER_SIZE SWIG_PYBUFFER_SIZE851,24907 -PyString_FromFormat(const char *fmt, ...) {PyString_FromFormat855,24966 -# define PyObject_DEL PyObject_DEL867,25261 -# define PyExc_StopIteration PyExc_StopIteration873,25425 -# define PyObject_GenericGetAttr PyObject_GenericGetAttr876,25515 -# define Py_NotImplemented Py_NotImplemented883,25676 -# define PyString_AsStringAndSize(PyString_AsStringAndSize890,25875 -# define PySequence_Size PySequence_Size897,26093 -PyObject *PyBool_FromLong(long ok)PyBool_FromLong904,26230 -typedef int Py_ssize_t;Py_ssize_t916,26561 -# define PY_SSIZE_T_MAX PY_SSIZE_T_MAX917,26585 -# define PY_SSIZE_T_MIN PY_SSIZE_T_MIN918,26617 -typedef inquiry lenfunc;lenfunc919,26649 -typedef intargfunc ssizeargfunc;ssizeargfunc920,26674 -typedef intintargfunc ssizessizeargfunc;ssizessizeargfunc921,26707 -typedef intobjargproc ssizeobjargproc;ssizeobjargproc922,26748 -typedef intintobjargproc ssizessizeobjargproc;ssizessizeobjargproc923,26787 -typedef getreadbufferproc readbufferproc;readbufferproc924,26834 -typedef getwritebufferproc writebufferproc;writebufferproc925,26876 -typedef getsegcountproc segcountproc;segcountproc926,26920 -typedef getcharbufferproc charbufferproc;charbufferproc927,26958 -static long PyNumber_AsSsize_t (PyObject *x, void *SWIGUNUSEDPARM(exc))PyNumber_AsSsize_t928,27000 -#define PyInt_FromSize_t(PyInt_FromSize_t941,27248 -#define Py_VISIT(Py_VISIT945,27340 - PyTypeObject type;type957,27571 - PyTypeObject type;__anon490::type957,27571 - PyNumberMethods as_number;as_number958,27592 - PyNumberMethods as_number;__anon490::as_number958,27592 - PyMappingMethods as_mapping;as_mapping959,27621 - PyMappingMethods as_mapping;__anon490::as_mapping959,27621 - PySequenceMethods as_sequence;as_sequence960,27652 - PySequenceMethods as_sequence;__anon490::as_sequence960,27652 - PyBufferProcs as_buffer;as_buffer961,27685 - PyBufferProcs as_buffer;__anon490::as_buffer961,27685 - PyObject *name, *slots;name962,27712 - PyObject *name, *slots;__anon490::name962,27712 - PyObject *name, *slots;slots962,27712 - PyObject *name, *slots;__anon490::slots962,27712 -} PyHeapTypeObject;PyHeapTypeObject963,27738 -typedef destructor freefunc;freefunc967,27798 -# define SWIGPY_USE_CAPSULESWIGPY_USE_CAPSULE973,27980 -# define SWIGPY_CAPSULE_NAME SWIGPY_CAPSULE_NAME974,28008 -#define PyDescr_TYPE(PyDescr_TYPE978,28172 -#define PyDescr_NAME(PyDescr_NAME979,28229 -#define Py_hash_t Py_hash_t980,28286 -SWIG_Python_ErrorType(int code) {SWIG_Python_ErrorType988,28527 -SWIG_Python_AddErrorMsg(const char* mesg)SWIG_Python_AddErrorMsg1032,29413 -# undef SWIG_PYTHON_THREADSSWIG_PYTHON_THREADS1056,30007 -# define SWIG_PYTHON_USE_GILSWIG_PYTHON_USE_GIL1062,30282 -# define SWIG_PYTHON_INITIALIZE_THREADS SWIG_PYTHON_INITIALIZE_THREADS1067,30449 - class SWIG_Python_Thread_Block {SWIG_Python_Thread_Block1070,30565 - bool status;status1071,30605 - bool status;SWIG_Python_Thread_Block::status1071,30605 - PyGILState_STATE state;state1072,30627 - PyGILState_STATE state;SWIG_Python_Thread_Block::state1072,30627 - void end() { if (status) { PyGILState_Release(state); status = false;} }end1074,30675 - void end() { if (status) { PyGILState_Release(state); status = false;} }SWIG_Python_Thread_Block::end1074,30675 - SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}SWIG_Python_Thread_Block1075,30757 - SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}SWIG_Python_Thread_Block::SWIG_Python_Thread_Block1075,30757 - ~SWIG_Python_Thread_Block() { end(); }~SWIG_Python_Thread_Block1076,30839 - ~SWIG_Python_Thread_Block() { end(); }SWIG_Python_Thread_Block::~SWIG_Python_Thread_Block1076,30839 - class SWIG_Python_Thread_Allow {SWIG_Python_Thread_Allow1078,30897 - bool status;status1079,30937 - bool status;SWIG_Python_Thread_Allow::status1079,30937 - PyThreadState *save;save1080,30959 - PyThreadState *save;SWIG_Python_Thread_Allow::save1080,30959 - void end() { if (status) { PyEval_RestoreThread(save); status = false; }}end1082,31004 - void end() { if (status) { PyEval_RestoreThread(save); status = false; }}SWIG_Python_Thread_Allow::end1082,31004 - SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}SWIG_Python_Thread_Allow1083,31087 - SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}SWIG_Python_Thread_Allow::SWIG_Python_Thread_Allow1083,31087 - ~SWIG_Python_Thread_Allow() { end(); }~SWIG_Python_Thread_Allow1084,31168 - ~SWIG_Python_Thread_Allow() { end(); }SWIG_Python_Thread_Allow::~SWIG_Python_Thread_Allow1084,31168 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_PYTHON_THREAD_BEGIN_BLOCK1086,31226 -# define SWIG_PYTHON_THREAD_END_BLOCK SWIG_PYTHON_THREAD_END_BLOCK1087,31317 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_PYTHON_THREAD_BEGIN_ALLOW1088,31389 -# define SWIG_PYTHON_THREAD_END_ALLOW SWIG_PYTHON_THREAD_END_ALLOW1089,31480 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_PYTHON_THREAD_BEGIN_BLOCK1091,31575 -# define SWIG_PYTHON_THREAD_END_BLOCK SWIG_PYTHON_THREAD_END_BLOCK1092,31680 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_PYTHON_THREAD_BEGIN_ALLOW1093,31766 -# define SWIG_PYTHON_THREAD_END_ALLOW SWIG_PYTHON_THREAD_END_ALLOW1094,31869 -# define SWIG_PYTHON_INITIALIZE_THREADSSWIG_PYTHON_INITIALIZE_THREADS1098,32085 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCKSWIG_PYTHON_THREAD_BEGIN_BLOCK1101,32190 -# define SWIG_PYTHON_THREAD_END_BLOCKSWIG_PYTHON_THREAD_END_BLOCK1104,32293 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOWSWIG_PYTHON_THREAD_BEGIN_ALLOW1107,32396 -# define SWIG_PYTHON_THREAD_END_ALLOWSWIG_PYTHON_THREAD_END_ALLOW1110,32499 -# define SWIG_PYTHON_INITIALIZE_THREADSSWIG_PYTHON_INITIALIZE_THREADS1114,32592 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCKSWIG_PYTHON_THREAD_BEGIN_BLOCK1115,32633 -# define SWIG_PYTHON_THREAD_END_BLOCKSWIG_PYTHON_THREAD_END_BLOCK1116,32674 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOWSWIG_PYTHON_THREAD_BEGIN_ALLOW1117,32713 -# define SWIG_PYTHON_THREAD_END_ALLOWSWIG_PYTHON_THREAD_END_ALLOW1118,32754 -#define SWIG_PY_POINTER SWIG_PY_POINTER1134,33268 -#define SWIG_PY_BINARY SWIG_PY_BINARY1135,33294 -typedef struct swig_const_info {swig_const_info1138,33358 - int type;type1139,33391 - int type;swig_const_info::type1139,33391 - char *name;name1140,33403 - char *name;swig_const_info::name1140,33403 - long lvalue;lvalue1141,33417 - long lvalue;swig_const_info::lvalue1141,33417 - double dvalue;dvalue1142,33432 - double dvalue;swig_const_info::dvalue1142,33432 - void *pvalue;pvalue1143,33449 - void *pvalue;swig_const_info::pvalue1143,33449 - swig_type_info **ptype;ptype1144,33467 - swig_type_info **ptype;swig_const_info::ptype1144,33467 -} swig_const_info;swig_const_info1145,33493 -SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(func))SWIGUNUSEDPARM1158,33972 -#define SWIG_Python_ConvertPtr(SWIG_Python_ConvertPtr1181,34514 -#define SWIG_ConvertPtr(SWIG_ConvertPtr1182,34626 -#define SWIG_ConvertPtrAndOwn(SWIG_ConvertPtrAndOwn1183,34729 -#define SWIG_NewPointerObj(SWIG_NewPointerObj1186,34870 -#define SWIG_NewPointerObj(SWIG_NewPointerObj1188,34982 -#define SWIG_InternalNewPointerObj(SWIG_InternalNewPointerObj1191,35096 -#define SWIG_CheckImplicit(SWIG_CheckImplicit1193,35200 -#define SWIG_AcquirePtr(SWIG_AcquirePtr1194,35287 -#define swig_owntype swig_owntype1195,35376 -#define SWIG_ConvertPacked(SWIG_ConvertPacked1198,35463 -#define SWIG_NewPackedObj(SWIG_NewPackedObj1199,35563 -#define SWIG_ConvertInstance(SWIG_ConvertInstance1202,35695 -#define SWIG_NewInstanceObj(SWIG_NewInstanceObj1203,35791 -#define SWIG_ConvertFunctionPtr(SWIG_ConvertFunctionPtr1206,35922 -#define SWIG_NewFunctionPtrObj(SWIG_NewFunctionPtrObj1207,36026 -#define SWIG_ConvertMember(SWIG_ConvertMember1210,36179 -#define SWIG_NewMemberObj(SWIG_NewMemberObj1211,36279 -#define SWIG_GetModule(SWIG_GetModule1216,36396 -#define SWIG_SetModule(SWIG_SetModule1217,36486 -#define SWIG_NewClientData(SWIG_NewClientData1218,36573 -#define SWIG_SetErrorObj SWIG_SetErrorObj1220,36656 -#define SWIG_SetErrorMsg SWIG_SetErrorMsg1221,36764 -#define SWIG_ErrorType(SWIG_ErrorType1222,36844 -#define SWIG_Error(SWIG_Error1223,36945 -#define SWIG_fail SWIG_fail1224,37040 -SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) {SWIG_Python_SetErrorObj1232,37180 -SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) {SWIG_Python_SetErrorMsg1240,37378 -#define SWIG_Python_Raise(SWIG_Python_Raise1246,37542 -SwigPyBuiltin_AddPublicSymbol(PyObject *seq, const char *key) {SwigPyBuiltin_AddPublicSymbol1253,37726 -SWIG_Python_SetConstant(PyObject *d, PyObject *public_interface, const char *name, PyObject *obj) { SWIG_Python_SetConstant1260,37898 -SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { SWIG_Python_SetConstant1274,38257 -SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) {SWIG_Python_AppendOutput1288,38579 -SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)SWIG_Python_UnpackTuple1333,39538 -#define SWIG_Python_CallFunctor(SWIG_Python_CallFunctor1380,40864 -#define SWIG_Python_CallFunctor(SWIG_Python_CallFunctor1382,40974 -#define SWIG_STATIC_POINTER(SWIG_STATIC_POINTER1390,41250 -#define SWIG_STATIC_POINTER(SWIG_STATIC_POINTER1392,41294 -#define SWIG_POINTER_NOSHADOW SWIG_POINTER_NOSHADOW1400,41585 -#define SWIG_POINTER_NEW SWIG_POINTER_NEW1401,41650 -#define SWIG_POINTER_IMPLICIT_CONV SWIG_POINTER_IMPLICIT_CONV1403,41730 -#define SWIG_BUILTIN_TP_INIT SWIG_BUILTIN_TP_INIT1405,41796 -#define SWIG_BUILTIN_INIT SWIG_BUILTIN_INIT1406,41853 -# define SWIG_PYTHON_BUILD_NONESWIG_PYTHON_BUILD_NONE1416,42131 -# undef Py_NonePy_None1423,42243 -# define Py_None Py_None1424,42261 -_SWIG_Py_None(void)_SWIG_Py_None1427,42334 -SWIG_Py_None(void)SWIG_Py_None1434,42461 -SWIG_Py_Void(void)SWIG_Py_Void1444,42637 - PyObject *klass;klass1454,42764 - PyObject *klass;__anon491::klass1454,42764 - PyObject *newraw;newraw1455,42783 - PyObject *newraw;__anon491::newraw1455,42783 - PyObject *newargs;newargs1456,42803 - PyObject *newargs;__anon491::newargs1456,42803 - PyObject *destroy;destroy1457,42824 - PyObject *destroy;__anon491::destroy1457,42824 - int delargs;delargs1458,42845 - int delargs;__anon491::delargs1458,42845 - int implicitconv;implicitconv1459,42860 - int implicitconv;__anon491::implicitconv1459,42860 - PyTypeObject *pytype;pytype1460,42880 - PyTypeObject *pytype;__anon491::pytype1460,42880 -} SwigPyClientData;SwigPyClientData1461,42904 -SWIG_Python_CheckImplicit(swig_type_info *ty)SWIG_Python_CheckImplicit1464,42948 -SWIG_Python_ExceptionType(swig_type_info *desc) {SWIG_Python_ExceptionType1471,43131 -SwigPyClientData_New(PyObject* obj)SwigPyClientData_New1479,43385 -SwigPyClientData_Del(SwigPyClientData *data) {SwigPyClientData_Del1533,44762 - void *ptr;ptr1543,44988 - void *ptr;__anon492::ptr1543,44988 - swig_type_info *ty;ty1544,45001 - swig_type_info *ty;__anon492::ty1544,45001 - int own;own1545,45023 - int own;__anon492::own1545,45023 - PyObject *next;next1546,45034 - PyObject *next;__anon492::next1546,45034 - PyObject *dict;dict1548,45078 - PyObject *dict;__anon492::dict1548,45078 -} SwigPyObject;SwigPyObject1550,45103 -SwigPyObject_get___dict__(PyObject *v, PyObject *SWIGUNUSEDPARM(args))SwigPyObject_get___dict__1556,45171 -SwigPyObject_long(SwigPyObject *v)SwigPyObject_long1570,45418 -SwigPyObject_format(const char* fmt, SwigPyObject *v)SwigPyObject_format1576,45518 -SwigPyObject_oct(SwigPyObject *v)SwigPyObject_oct1598,45998 -SwigPyObject_hex(SwigPyObject *v)SwigPyObject_hex1604,46098 -SwigPyObject_repr(SwigPyObject *v)SwigPyObject_repr1611,46217 -SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)SwigPyObject_compare1637,46918 -SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op)SwigPyObject_richcompare1646,47151 -static swig_type_info *SwigPyObject_stype = 0;SwigPyObject_stype1661,47528 -SwigPyObject_type(void) {SwigPyObject_type1663,47601 -SwigPyObject_type(void) {SwigPyObject_type1673,47843 -SwigPyObject_Check(PyObject *op) {SwigPyObject_Check1680,47992 -SwigPyObject_dealloc(PyObject *v)SwigPyObject_dealloc1696,48446 -SwigPyObject_append(PyObject* v, PyObject* next)SwigPyObject_append1747,50159 -SwigPyObject_next(PyObject* v)SwigPyObject_next1766,50623 -SwigPyObject_disown(PyObject *v)SwigPyObject_disown1782,50934 -SwigPyObject_acquire(PyObject *v)SwigPyObject_acquire1794,51174 -SwigPyObject_own(PyObject *v, PyObject *args)SwigPyObject_own1805,51412 -swigobject_methods[] = {swigobject_methods1843,52192 -swigobject_methods[] = {swigobject_methods1854,52957 -SwigPyObject_getattr(SwigPyObject *sobj,char *name)SwigPyObject_getattr1867,53764 -SwigPyObject_TypeOnce(void) {SwigPyObject_TypeOnce1874,53922 -SwigPyObject_New(void *ptr, swig_type_info *ty, int own)SwigPyObject_New2021,59872 - void *pack;pack2039,60405 - void *pack;__anon493::pack2039,60405 - swig_type_info *ty;ty2040,60419 - swig_type_info *ty;__anon493::ty2040,60419 - size_t size;size2041,60441 - size_t size;__anon493::size2041,60441 -} SwigPyPacked;SwigPyPacked2042,60456 -SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags))SwigPyPacked_print2045,60489 -SwigPyPacked_repr(SwigPyPacked *v)SwigPyPacked_repr2059,60836 -SwigPyPacked_str(SwigPyPacked *v)SwigPyPacked_str2070,61178 -SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w)SwigPyPacked_compare2081,61472 -SwigPyPacked_type(void) {SwigPyPacked_type2092,61773 -SwigPyPacked_Check(PyObject *op) {SwigPyPacked_Check2098,61915 -SwigPyPacked_dealloc(PyObject *v)SwigPyPacked_dealloc2104,62084 -SwigPyPacked_TypeOnce(void) {SwigPyPacked_TypeOnce2114,62270 -SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty)SwigPyPacked_New2208,66395 -SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size)SwigPyPacked_UnpackData2227,66833 -_SWIG_This(void)_SWIG_This2244,67328 -static PyObject *swig_this = NULL;swig_this2249,67395 -SWIG_This(void)SWIG_This2252,67454 -#define SWIG_PYTHON_SLOW_GETSET_THIS SWIG_PYTHON_SLOW_GETSET_THIS2263,67705 -SWIG_Python_GetSwigThis(PyObject *pyobj) SWIG_Python_GetSwigThis2267,67778 -SWIG_Python_AcquirePtr(PyObject *obj, int own) {SWIG_Python_AcquirePtr2333,69320 -SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {SWIG_Python_ConvertPtrAndOwn2348,69619 -SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) {SWIG_Python_ConvertFunctionPtr2453,72451 -SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) {SWIG_Python_ConvertPacked2485,73354 -SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)SWIG_Python_NewShadowInstance2508,74032 -SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this)SWIG_Python_SetSwigThis2583,75988 -SWIG_Python_InitShadowInstance(PyObject *args) {SWIG_Python_InitShadowInstance2605,76534 -SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags) {SWIG_Python_NewPointerObj2623,76982 -SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) {SWIG_Python_NewPackedObj2677,78439 -SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata)) {SWIG_Python_GetModule2690,78877 -PyModule_AddObject(PyObject *m, char *name, PyObject *o)PyModule_AddObject2716,79711 -SWIG_Python_DestroyModule(PyObject *obj)SWIG_Python_DestroyModule2744,80434 -SWIG_Python_SetModule(swig_module_info *swig_module) {SWIG_Python_SetModule2768,81079 -SWIG_Python_TypeCache(void) {SWIG_Python_TypeCache2795,82150 -SWIG_Python_TypeQuery(const char *type)SWIG_Python_TypeQuery2801,82290 -#define SWIG_POINTER_EXCEPTION SWIG_POINTER_EXCEPTION2833,83152 -#define SWIG_arg_fail(SWIG_arg_fail2834,83186 -#define SWIG_MustGetPtr(SWIG_MustGetPtr2835,83243 -SWIG_Python_AddErrMesg(const char* mesg, int infront)SWIG_Python_AddErrMesg2838,83356 -SWIG_Python_ArgFail(int argnum)SWIG_Python_ArgFail2865,84016 -SwigPyObject_GetDesc(PyObject *self)SwigPyObject_GetDesc2878,84322 -SWIG_Python_TypeError(const char *type, PyObject *obj)SWIG_Python_TypeError2886,84489 -SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags) {SWIG_Python_MustGetPtr2925,85603 -SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {SWIG_Python_NonDynamicSetAttr2941,86017 -#define SWIG_exception_fail(SWIG_exception_fail2999,87267 -#define SWIG_contract_assert(SWIG_contract_assert3001,87358 - #define SWIG_exception(SWIG_exception3005,87471 -#define SwigSwig3020,88052 -#define SWIG_DIRECTOR_PYTHON_HEADER_SWIG_DIRECTOR_PYTHON_HEADER_3030,88401 -#define SWIG_PYTHON_DIRECTOR_VTABLESWIG_PYTHON_DIRECTOR_VTABLE3047,88772 -#define SWIG_DIRECTOR_UEHSWIG_DIRECTOR_UEH3059,89001 -# define SWIG_DIRECTOR_RTDIRSWIG_DIRECTOR_RTDIR3075,89382 -namespace Swig {Swig3077,89412 - SWIGINTERN std::map& get_rtdir_map() {get_rtdir_map3079,89447 - SWIGINTERN std::map& get_rtdir_map() {Swig::get_rtdir_map3079,89447 - SWIGINTERNINLINE void set_rtdir(void *vptr, Director *rtdir) {set_rtdir3084,89586 - SWIGINTERNINLINE void set_rtdir(void *vptr, Director *rtdir) {Swig::set_rtdir3084,89586 - SWIGINTERNINLINE Director *get_rtdir(void *vptr) {get_rtdir3088,89691 - SWIGINTERNINLINE Director *get_rtdir(void *vptr) {Swig::get_rtdir3088,89691 -# define SWIG_DIRECTOR_CAST(SWIG_DIRECTOR_CAST3096,89958 -# define SWIG_DIRECTOR_RGTR(SWIG_DIRECTOR_RGTR3097,90033 -namespace Swig {Swig3110,90316 - struct GCItem {GCItem3113,90357 - struct GCItem {Swig::GCItem3113,90357 - virtual ~GCItem() {}~GCItem3114,90375 - virtual ~GCItem() {}Swig::GCItem::~GCItem3114,90375 - virtual int get_own() const {get_own3116,90401 - virtual int get_own() const {Swig::GCItem::get_own3116,90401 - struct GCItem_var {GCItem_var3121,90463 - struct GCItem_var {Swig::GCItem_var3121,90463 - GCItem_var(GCItem *item = 0) : _item(item) {GCItem_var3122,90485 - GCItem_var(GCItem *item = 0) : _item(item) {Swig::GCItem_var::GCItem_var3122,90485 - GCItem_var& operator=(GCItem *item) {operator =3125,90541 - GCItem_var& operator=(GCItem *item) {Swig::GCItem_var::operator =3125,90541 - ~GCItem_var() {~GCItem_var3132,90675 - ~GCItem_var() {Swig::GCItem_var::~GCItem_var3132,90675 - GCItem * operator->() const {operator ->3136,90722 - GCItem * operator->() const {Swig::GCItem_var::operator ->3136,90722 - GCItem *_item;_item3141,90794 - GCItem *_item;Swig::GCItem_var::_item3141,90794 - struct GCItem_Object : GCItem {GCItem_Object3144,90819 - struct GCItem_Object : GCItem {Swig::GCItem_Object3144,90819 - GCItem_Object(int own) : _own(own) {GCItem_Object3145,90853 - GCItem_Object(int own) : _own(own) {Swig::GCItem_Object::GCItem_Object3145,90853 - virtual ~GCItem_Object() {~GCItem_Object3148,90901 - virtual ~GCItem_Object() {Swig::GCItem_Object::~GCItem_Object3148,90901 - int get_own() const {get_own3151,90939 - int get_own() const {Swig::GCItem_Object::get_own3151,90939 - int _own;_own3156,91002 - int _own;Swig::GCItem_Object::_own3156,91002 - struct GCItem_T : GCItem {GCItem_T3160,91049 - struct GCItem_T : GCItem {Swig::GCItem_T3160,91049 - GCItem_T(Type *ptr) : _ptr(ptr) {GCItem_T3161,91078 - GCItem_T(Type *ptr) : _ptr(ptr) {Swig::GCItem_T::GCItem_T3161,91078 - virtual ~GCItem_T() {~GCItem_T3164,91123 - virtual ~GCItem_T() {Swig::GCItem_T::~GCItem_T3164,91123 - Type *_ptr;_ptr3169,91186 - Type *_ptr;Swig::GCItem_T::_ptr3169,91186 - struct GCArray_T : GCItem {GCArray_T3173,91235 - struct GCArray_T : GCItem {Swig::GCArray_T3173,91235 - GCArray_T(Type *ptr) : _ptr(ptr) {GCArray_T3174,91265 - GCArray_T(Type *ptr) : _ptr(ptr) {Swig::GCArray_T::GCArray_T3174,91265 - virtual ~GCArray_T() {~GCArray_T3177,91311 - virtual ~GCArray_T() {Swig::GCArray_T::~GCArray_T3177,91311 - Type *_ptr;_ptr3182,91377 - Type *_ptr;Swig::GCArray_T::_ptr3182,91377 - class DirectorException : public std::exception {DirectorException3186,91442 - class DirectorException : public std::exception {Swig::DirectorException3186,91442 - std::string swig_msg;swig_msg3188,91507 - std::string swig_msg;Swig::DirectorException::swig_msg3188,91507 - DirectorException(PyObject *error, const char *hdr ="", const char *msg ="") : swig_msg(hdr) {DirectorException3190,91543 - DirectorException(PyObject *error, const char *hdr ="", const char *msg ="") : swig_msg(hdr) {Swig::DirectorException::DirectorException3190,91543 - virtual ~DirectorException() throw() {~DirectorException3202,91880 - virtual ~DirectorException() throw() {Swig::DirectorException::~DirectorException3202,91880 - const char *getMessage() const {getMessage3206,91971 - const char *getMessage() const {Swig::DirectorException::getMessage3206,91971 - const char *what() const throw() {what3210,92036 - const char *what() const throw() {Swig::DirectorException::what3210,92036 - static void raise(PyObject *error, const char *msg) {raise3214,92113 - static void raise(PyObject *error, const char *msg) {Swig::DirectorException::raise3214,92113 - static void raise(const char *msg) {raise3218,92221 - static void raise(const char *msg) {Swig::DirectorException::raise3218,92221 - class UnknownExceptionHandler {UnknownExceptionHandler3224,92347 - class UnknownExceptionHandler {Swig::UnknownExceptionHandler3224,92347 - static void handler() {handler3226,92406 - static void handler() {Swig::UnknownExceptionHandler::handler3226,92406 - std::unexpected_handler old;old3252,93328 - std::unexpected_handler old;Swig::UnknownExceptionHandler::old3252,93328 - UnknownExceptionHandler(std::unexpected_handler nh = handler) {UnknownExceptionHandler3253,93361 - UnknownExceptionHandler(std::unexpected_handler nh = handler) {Swig::UnknownExceptionHandler::UnknownExceptionHandler3253,93361 - ~UnknownExceptionHandler() {~UnknownExceptionHandler3257,93473 - ~UnknownExceptionHandler() {Swig::UnknownExceptionHandler::~UnknownExceptionHandler3257,93473 - class DirectorTypeMismatchException : public DirectorException {DirectorTypeMismatchException3264,93625 - class DirectorTypeMismatchException : public DirectorException {Swig::DirectorTypeMismatchException3264,93625 - DirectorTypeMismatchException(PyObject *error, const char *msg="")DirectorTypeMismatchException3266,93702 - DirectorTypeMismatchException(PyObject *error, const char *msg="")Swig::DirectorTypeMismatchException::DirectorTypeMismatchException3266,93702 - DirectorTypeMismatchException(const char *msg="")DirectorTypeMismatchException3270,93851 - DirectorTypeMismatchException(const char *msg="")Swig::DirectorTypeMismatchException::DirectorTypeMismatchException3270,93851 - static void raise(PyObject *error, const char *msg) {raise3274,93993 - static void raise(PyObject *error, const char *msg) {Swig::DirectorTypeMismatchException::raise3274,93993 - static void raise(const char *msg) {raise3278,94113 - static void raise(const char *msg) {Swig::DirectorTypeMismatchException::raise3278,94113 - class DirectorMethodException : public DirectorException {DirectorMethodException3284,94285 - class DirectorMethodException : public DirectorException {Swig::DirectorMethodException3284,94285 - DirectorMethodException(const char *msg = "")DirectorMethodException3286,94356 - DirectorMethodException(const char *msg = "")Swig::DirectorMethodException::DirectorMethodException3286,94356 - static void raise(const char *msg) {raise3290,94497 - static void raise(const char *msg) {Swig::DirectorMethodException::raise3290,94497 - class DirectorPureVirtualException : public DirectorException {DirectorPureVirtualException3296,94660 - class DirectorPureVirtualException : public DirectorException {Swig::DirectorPureVirtualException3296,94660 - DirectorPureVirtualException(const char *msg = "")DirectorPureVirtualException3298,94736 - DirectorPureVirtualException(const char *msg = "")Swig::DirectorPureVirtualException::DirectorPureVirtualException3298,94736 - static void raise(const char *msg) {raise3302,94895 - static void raise(const char *msg) {Swig::DirectorPureVirtualException::raise3302,94895 -# define __THREAD__ __THREAD__3311,95122 - class Guard {Guard3317,95203 - class Guard {Swig::Guard3317,95203 - PyThread_type_lock &mutex_;mutex_3318,95219 - PyThread_type_lock &mutex_;Swig::Guard::mutex_3318,95219 - Guard(PyThread_type_lock & mutex) : mutex_(mutex) {Guard3321,95262 - Guard(PyThread_type_lock & mutex) : mutex_(mutex) {Swig::Guard::Guard3321,95262 - ~Guard() {~Guard3325,95373 - ~Guard() {Swig::Guard::~Guard3325,95373 -# define SWIG_GUARD(SWIG_GUARD3329,95436 -# define SWIG_GUARD(SWIG_GUARD3331,95489 - class Director {Director3335,95552 - class Director {Swig::Director3335,95552 - PyObject *swig_self;swig_self3338,95629 - PyObject *swig_self;Swig::Director::swig_self3338,95629 - mutable bool swig_disown_flag;swig_disown_flag3340,95725 - mutable bool swig_disown_flag;Swig::Director::swig_disown_flag3340,95725 - void swig_decref() const {swig_decref3343,95830 - void swig_decref() const {Swig::Director::swig_decref3343,95830 - Director(PyObject *self) : swig_self(self), swig_disown_flag(false) {Director3353,96056 - Director(PyObject *self) : swig_self(self), swig_disown_flag(false) {Swig::Director::Director3353,96056 - virtual ~Director() {~Director3357,96184 - virtual ~Director() {Swig::Director::~Director3357,96184 - PyObject *swig_get_self() const {swig_get_self3362,96294 - PyObject *swig_get_self() const {Swig::Director::swig_get_self3362,96294 - void swig_disown() const {swig_disown3367,96459 - void swig_disown() const {Swig::Director::swig_disown3367,96459 - void swig_incref() const {swig_incref3375,96658 - void swig_incref() const {Swig::Director::swig_incref3375,96658 - virtual bool swig_get_inner(const char * /* swig_protected_method_name */) const {swig_get_inner3382,96829 - virtual bool swig_get_inner(const char * /* swig_protected_method_name */) const {Swig::Director::swig_get_inner3382,96829 - virtual void swig_set_inner(const char * /* swig_protected_method_name */, bool /* swig_val */) const {swig_set_inner3386,96942 - virtual void swig_set_inner(const char * /* swig_protected_method_name */, bool /* swig_val */) const {Swig::Director::swig_set_inner3386,96942 - typedef std::map swig_ownership_map;swig_ownership_map3391,97097 - typedef std::map swig_ownership_map;Swig::Director::swig_ownership_map3391,97097 - mutable swig_ownership_map swig_owner;swig_owner3392,97158 - mutable swig_ownership_map swig_owner;Swig::Director::swig_owner3392,97158 - static PyThread_type_lock swig_mutex_own;swig_mutex_own3394,97219 - static PyThread_type_lock swig_mutex_own;Swig::Director::swig_mutex_own3394,97219 - void swig_acquire_ownership_array(Type *vptr) const {swig_acquire_ownership_array3399,97312 - void swig_acquire_ownership_array(Type *vptr) const {Swig::Director::swig_acquire_ownership_array3399,97312 - void swig_acquire_ownership(Type *vptr) const {swig_acquire_ownership3407,97522 - void swig_acquire_ownership(Type *vptr) const {Swig::Director::swig_acquire_ownership3407,97522 - void swig_acquire_ownership_obj(void *vptr, int own) const {swig_acquire_ownership_obj3414,97696 - void swig_acquire_ownership_obj(void *vptr, int own) const {Swig::Director::swig_acquire_ownership_obj3414,97696 - int swig_release_ownership(void *vptr) const {swig_release_ownership3421,97888 - int swig_release_ownership(void *vptr) const {Swig::Director::swig_release_ownership3421,97888 - static PyObject *swig_pyobj_disown(PyObject *pyobj, PyObject *SWIGUNUSEDPARM(args)) {swig_pyobj_disown3435,98266 - static PyObject *swig_pyobj_disown(PyObject *pyobj, PyObject *SWIGUNUSEDPARM(args)) {Swig::Director::swig_pyobj_disown3435,98266 - PyThread_type_lock Director::swig_mutex_own = PyThread_allocate_lock();swig_mutex_own3446,98619 - PyThread_type_lock Director::swig_mutex_own = PyThread_allocate_lock();Swig::Director::swig_mutex_own3446,98619 -#define SWIGTYPE_p_CELL SWIGTYPE_p_CELL3454,98756 -#define SWIGTYPE_p_CPredicate SWIGTYPE_p_CPredicate3455,98794 -#define SWIGTYPE_p_Functor SWIGTYPE_p_Functor3456,98838 -#define SWIGTYPE_p_Int SWIGTYPE_p_Int3457,98879 -#define SWIGTYPE_p_Prop SWIGTYPE_p_Prop3458,98916 -#define SWIGTYPE_p_Term SWIGTYPE_p_Term3459,98954 -#define SWIGTYPE_p_YAPApplTerm SWIGTYPE_p_YAPApplTerm3460,98992 -#define SWIGTYPE_p_YAPAtom SWIGTYPE_p_YAPAtom3461,99037 -#define SWIGTYPE_p_YAPAtomTerm SWIGTYPE_p_YAPAtomTerm3462,99078 -#define SWIGTYPE_p_YAPCallback SWIGTYPE_p_YAPCallback3463,99123 -#define SWIGTYPE_p_YAPEngine SWIGTYPE_p_YAPEngine3464,99168 -#define SWIGTYPE_p_YAPError SWIGTYPE_p_YAPError3465,99212 -#define SWIGTYPE_p_YAPFLIP SWIGTYPE_p_YAPFLIP3466,99255 -#define SWIGTYPE_p_YAPFloatTerm SWIGTYPE_p_YAPFloatTerm3467,99297 -#define SWIGTYPE_p_YAPFunctor SWIGTYPE_p_YAPFunctor3468,99344 -#define SWIGTYPE_p_YAPIntegerTerm SWIGTYPE_p_YAPIntegerTerm3469,99389 -#define SWIGTYPE_p_YAPListTerm SWIGTYPE_p_YAPListTerm3470,99438 -#define SWIGTYPE_p_YAPModule SWIGTYPE_p_YAPModule3471,99484 -#define SWIGTYPE_p_YAPModuleProp SWIGTYPE_p_YAPModuleProp3472,99528 -#define SWIGTYPE_p_YAPNumberTerm SWIGTYPE_p_YAPNumberTerm3473,99576 -#define SWIGTYPE_p_YAPPairTerm SWIGTYPE_p_YAPPairTerm3474,99624 -#define SWIGTYPE_p_YAPPredicate SWIGTYPE_p_YAPPredicate3475,99670 -#define SWIGTYPE_p_YAPPrologPredicate SWIGTYPE_p_YAPPrologPredicate3476,99717 -#define SWIGTYPE_p_YAPProp SWIGTYPE_p_YAPProp3477,99770 -#define SWIGTYPE_p_YAPQuery SWIGTYPE_p_YAPQuery3478,99812 -#define SWIGTYPE_p_YAPStringTerm SWIGTYPE_p_YAPStringTerm3479,99855 -#define SWIGTYPE_p_YAPTerm SWIGTYPE_p_YAPTerm3480,99903 -#define SWIGTYPE_p_YAPVarTerm SWIGTYPE_p_YAPVarTerm3481,99945 -#define SWIGTYPE_p_YAP_tag_t SWIGTYPE_p_YAP_tag_t3482,99990 -#define SWIGTYPE_p_char SWIGTYPE_p_char3483,100034 -#define SWIGTYPE_p_int SWIGTYPE_p_int3484,100073 -#define SWIGTYPE_p_long_long SWIGTYPE_p_long_long3485,100111 -#define SWIGTYPE_p_p_char SWIGTYPE_p_p_char3486,100155 -#define SWIGTYPE_p_short SWIGTYPE_p_short3487,100196 -#define SWIGTYPE_p_signed_char SWIGTYPE_p_signed_char3488,100236 -#define SWIGTYPE_p_std__string SWIGTYPE_p_std__string3489,100282 -#define SWIGTYPE_p_std__vectorT_Term_t SWIGTYPE_p_std__vectorT_Term_t3490,100328 -#define SWIGTYPE_p_std__vectorT_YAPTerm_t SWIGTYPE_p_std__vectorT_YAPTerm_t3491,100382 -#define SWIGTYPE_p_unsigned_char SWIGTYPE_p_unsigned_char3492,100439 -#define SWIGTYPE_p_unsigned_int SWIGTYPE_p_unsigned_int3493,100487 -#define SWIGTYPE_p_unsigned_long_long SWIGTYPE_p_unsigned_long_long3494,100534 -#define SWIGTYPE_p_unsigned_short SWIGTYPE_p_unsigned_short3495,100587 -#define SWIGTYPE_p_void SWIGTYPE_p_void3496,100636 -#define SWIGTYPE_p_wchar_t SWIGTYPE_p_wchar_t3497,100675 -#define SWIGTYPE_p_yap_error_class_number SWIGTYPE_p_yap_error_class_number3498,100717 -#define SWIGTYPE_p_yap_error_number SWIGTYPE_p_yap_error_number3499,100774 -#define SWIGTYPE_p_yhandle_t SWIGTYPE_p_yhandle_t3500,100825 -static swig_type_info *swig_types[48];swig_types3501,100869 -static swig_module_info swig_module = {swig_types, 47, 0, 0, 0, 0};swig_module3502,100908 -#define SWIG_TypeQuery(SWIG_TypeQuery3503,100976 -#define SWIG_MangledTypeQuery(SWIG_MangledTypeQuery3504,101060 -# define SWIG_init SWIG_init3524,101792 -# define SWIG_init SWIG_init3527,101834 -#define SWIG_name SWIG_name3530,101874 -#define SWIGVERSION SWIGVERSION3532,101903 -#define SWIG_VERSION SWIG_VERSION3533,101933 -#define SWIG_as_voidptr(SWIG_as_voidptr3536,101968 -#define SWIG_as_voidptrptr(SWIG_as_voidptrptr3537,102049 -namespace swig {swig3543,102163 - class SwigPtr_PyObject {SwigPtr_PyObject3544,102180 - class SwigPtr_PyObject {swig::SwigPtr_PyObject3544,102180 - PyObject *_obj;_obj3546,102220 - PyObject *_obj;swig::SwigPtr_PyObject::_obj3546,102220 - SwigPtr_PyObject() :_obj(0)SwigPtr_PyObject3549,102251 - SwigPtr_PyObject() :_obj(0)swig::SwigPtr_PyObject::SwigPtr_PyObject3549,102251 - SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj)SwigPtr_PyObject3553,102296 - SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj)swig::SwigPtr_PyObject::SwigPtr_PyObject3553,102296 - SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj)SwigPtr_PyObject3560,102486 - SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj)swig::SwigPtr_PyObject::SwigPtr_PyObject3560,102486 - SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) operator =3569,102712 - SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) swig::SwigPtr_PyObject::operator =3569,102712 - ~SwigPtr_PyObject() ~SwigPtr_PyObject3579,102970 - ~SwigPtr_PyObject() swig::SwigPtr_PyObject::~SwigPtr_PyObject3579,102970 - operator PyObject *() constoperator PyObject *3586,103110 - operator PyObject *() constswig::SwigPtr_PyObject::operator PyObject *3586,103110 - PyObject *operator->() constoperator ->3591,103174 - PyObject *operator->() constswig::SwigPtr_PyObject::operator ->3591,103174 -namespace swig {swig3599,103247 - struct SwigVar_PyObject : SwigPtr_PyObject {SwigVar_PyObject3600,103264 - struct SwigVar_PyObject : SwigPtr_PyObject {swig::SwigVar_PyObject3600,103264 - SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { }SwigVar_PyObject3601,103311 - SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { }swig::SwigVar_PyObject::SwigVar_PyObject3601,103311 - SwigVar_PyObject & operator = (PyObject* obj)operator =3603,103391 - SwigVar_PyObject & operator = (PyObject* obj)swig::SwigVar_PyObject::operator =3603,103391 - extern inline PyObject *AtomToPy(const char *s) {AtomToPy3634,103959 -#define Yap_regp Yap_regp3661,104588 - SWIG_From_int (int value)SWIG_From_int3672,104780 -SWIG_pchar_descriptor(void)SWIG_pchar_descriptor3679,104881 -SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc)SWIG_AsCharPtrAndSize3692,105074 -SWIG_AsVal_double (PyObject *obj, double *val)SWIG_AsVal_double3808,108178 -SWIG_CanCastAsInteger(double *d, double min, double max) {SWIG_CanCastAsInteger3860,109188 -SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) SWIG_AsVal_unsigned_SS_long3890,109795 -# define LLONG_MAX LLONG_MAX3940,110949 -# define LLONG_MIN LLONG_MIN3941,110988 -# define ULLONG_MAX ULLONG_MAX3942,111028 -# define SWIG_LONG_LONG_AVAILABLESWIG_LONG_LONG_AVAILABLE3948,111154 -SWIG_AsVal_unsigned_SS_long_SS_long (PyObject *obj, unsigned long long *val)SWIG_AsVal_unsigned_SS_long_SS_long3954,111245 -SWIG_AsVal_size_t (PyObject * obj, size_t *val)SWIG_AsVal_size_t3994,112215 -SWIG_FromCharPtrAndSize(const char* carray, size_t size)SWIG_FromCharPtrAndSize4015,112832 -SWIG_FromCharPtr(const char *cptr)SWIG_FromCharPtr4044,113711 -SWIG_AsVal_long (PyObject *obj, long* val)SWIG_AsVal_long4051,113835 -SWIG_AsVal_int (PyObject * obj, int *val)SWIG_AsVal_int4094,114725 -SWIG_AsVal_bool (PyObject *obj, bool *val)SWIG_AsVal_bool4110,115018 - SWIG_From_bool (bool value)SWIG_From_bool4124,115272 -SWIG_AsVal_unsigned_SS_int (PyObject * obj, unsigned int *val)SWIG_AsVal_unsigned_SS_int4131,115365 - SWIG_From_unsigned_SS_int (unsigned int value)SWIG_From_unsigned_SS_int4147,115707 - #define SWIG_From_double SWIG_From_double4153,115806 - #define SWIG_From_long SWIG_From_long4156,115857 -SWIG_From_unsigned_SS_long (unsigned long value)SWIG_From_unsigned_SS_long4160,115930 -SWIG_From_unsigned_SS_long_SS_long (unsigned long long value)SWIG_From_unsigned_SS_long_SS_long4169,116157 -SWIG_From_size_t (size_t value)SWIG_From_size_t4178,116376 -SwigDirector_YAPCallback::SwigDirector_YAPCallback(PyObject *self): YAPCallback(), Swig::Director(self) {SwigDirector_YAPCallback4200,116960 -SwigDirector_YAPCallback::SwigDirector_YAPCallback(PyObject *self): YAPCallback(), Swig::Director(self) {SwigDirector_YAPCallback::SwigDirector_YAPCallback4200,116960 -SwigDirector_YAPCallback::~SwigDirector_YAPCallback() {~SwigDirector_YAPCallback4207,117122 -SwigDirector_YAPCallback::~SwigDirector_YAPCallback() {SwigDirector_YAPCallback::~SwigDirector_YAPCallback4207,117122 -void SwigDirector_YAPCallback::run() {run4210,117181 -void SwigDirector_YAPCallback::run() {SwigDirector_YAPCallback::run4210,117181 -void SwigDirector_YAPCallback::run(char *s) {run4233,118083 -void SwigDirector_YAPCallback::run(char *s) {SwigDirector_YAPCallback::run4233,118083 -SWIGINTERN PyObject *_wrap_new_YAPAtom(PyObject *self, PyObject *args) {_wrap_new_YAPAtom4341,121961 -SWIGINTERN PyObject *_wrap_new_YAPError(PyObject *self, PyObject *args) {_wrap_new_YAPError4603,130602 -SWIGINTERN PyObject *_wrap_new_YAPTerm(PyObject *self, PyObject *args) {_wrap_new_YAPTerm4979,142665 -SWIGINTERN PyObject *_wrap_YAPTerm_numberVars(PyObject *self, PyObject *args) {_wrap_YAPTerm_numberVars5169,148643 -SWIGINTERN PyObject *_wrap_YAPTerm_bind(PyObject *self, PyObject *args) {_wrap_YAPTerm_bind5307,152607 -SWIGINTERN PyObject *_wrap_new_YAPApplTerm(PyObject *self, PyObject *args) {_wrap_new_YAPApplTerm6389,189366 -SWIGINTERN PyObject *_wrap_new_YAPPairTerm(PyObject *self, PyObject *args) {_wrap_new_YAPPairTerm6849,204814 -SWIGINTERN PyObject *_wrap_new_YAPListTerm(PyObject *self, PyObject *args) {_wrap_new_YAPListTerm7262,218873 -SWIGINTERN PyObject *_wrap_new_YAPStringTerm(PyObject *self, PyObject *args) {_wrap_new_YAPStringTerm7567,228957 -SWIGINTERN PyObject *_wrap_new_YAPAtomTerm(PyObject *self, PyObject *args) {_wrap_new_YAPAtomTerm7829,237722 -SWIGINTERN PyObject *_wrap_new_YAPModule(PyObject *self, PyObject *args) {_wrap_new_YAPModule8243,251434 -SWIGINTERN PyObject *_wrap_new_YAPModuleProp(PyObject *self, PyObject *args) {_wrap_new_YAPModuleProp8347,254818 -SWIGINTERN PyObject *_wrap_new_YAPFunctor(PyObject *self, PyObject *args) {_wrap_new_YAPFunctor8577,262981 -SWIGINTERN PyObject *_wrap_new_YAPPredicate(PyObject *self, PyObject *args) {_wrap_new_YAPPredicate9112,281751 -SWIGINTERN PyObject *_wrap_new_YAPPrologPredicate(PyObject *self, PyObject *args) {_wrap_new_YAPPrologPredicate9459,293433 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_assertClause(PyObject *self, PyObject *args) {_wrap_YAPPrologPredicate_assertClause9655,300502 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_assertFact(PyObject *self, PyObject *args) {_wrap_YAPPrologPredicate_assertFact9804,305582 -SWIGINTERN PyObject *_wrap_YAPPrologPredicate_retractClause(PyObject *self, PyObject *args) {_wrap_YAPPrologPredicate_retractClause9947,310622 -SWIGINTERN PyObject *_wrap_new_YAPFLIP(PyObject *self, PyObject *args) {_wrap_new_YAPFLIP10763,340281 -SWIGINTERN PyObject *_wrap_new_YAPQuery(PyObject *self, PyObject *args) {_wrap_new_YAPQuery11317,358748 -SWIGINTERN PyObject *_wrap_YAPCallback_run(PyObject *self, PyObject *args) {_wrap_YAPCallback_run11922,378326 -SWIGINTERN PyObject *_wrap_new_YAPEngine(PyObject *self, PyObject *args) {_wrap_new_YAPEngine13221,424722 -static PyMethodDef SwigMethods[] = {SwigMethods14317,460130 -static void *_p_YAPApplTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPApplTermTo_p_YAPTerm14521,476021 -static void *_p_YAPVarTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPVarTermTo_p_YAPTerm14524,476161 -static void *_p_YAPIntegerTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPIntegerTermTo_p_YAPTerm14527,476299 -static void *_p_YAPFloatTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFloatTermTo_p_YAPTerm14530,476462 -static void *_p_YAPPairTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPairTermTo_p_YAPTerm14533,476621 -static void *_p_YAPNumberTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPNumberTermTo_p_YAPTerm14536,476761 -static void *_p_YAPListTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPListTermTo_p_YAPTerm14539,476905 -static void *_p_YAPAtomTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPAtomTermTo_p_YAPTerm14542,477045 -static void *_p_YAPStringTermTo_p_YAPTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPStringTermTo_p_YAPTerm14545,477185 -static void *_p_YAPFLIPTo_p_YAPModuleProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFLIPTo_p_YAPModuleProp14548,477329 -static void *_p_YAPQueryTo_p_YAPModuleProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPQueryTo_p_YAPModuleProp14551,477489 -static void *_p_YAPPredicateTo_p_YAPModuleProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPredicateTo_p_YAPModuleProp14554,477651 -static void *_p_YAPPrologPredicateTo_p_YAPModuleProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPrologPredicateTo_p_YAPModuleProp14557,477805 -static void *_p_YAPModuleTo_p_YAPAtomTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPModuleTo_p_YAPAtomTerm14560,477987 -static void *_p_YAPIntegerTermTo_p_YAPNumberTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPIntegerTermTo_p_YAPNumberTerm14563,478131 -static void *_p_YAPFloatTermTo_p_YAPNumberTerm(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFloatTermTo_p_YAPNumberTerm14566,478289 -static void *_p_YAPFLIPTo_p_YAPPredicate(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFLIPTo_p_YAPPredicate14569,478443 -static void *_p_YAPQueryTo_p_YAPPredicate(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPQueryTo_p_YAPPredicate14572,478585 -static void *_p_YAPPrologPredicateTo_p_YAPPredicate(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPrologPredicateTo_p_YAPPredicate14575,478729 -static void *_p_YAPFunctorTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFunctorTo_p_YAPProp14578,478893 -static void *_p_YAPFLIPTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPFLIPTo_p_YAPProp14581,479031 -static void *_p_YAPQueryTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPQueryTo_p_YAPProp14584,479196 -static void *_p_YAPModulePropTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPModulePropTo_p_YAPProp14587,479363 -static void *_p_YAPPredicateTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPredicateTo_p_YAPProp14590,479507 -static void *_p_YAPPrologPredicateTo_p_YAPProp(void *x, int *SWIGUNUSEDPARM(newmemory)) {_p_YAPPrologPredicateTo_p_YAPProp14593,479666 -static swig_type_info _swigt__p_CELL = {"_p_CELL", "CELL *", 0, 0, (void*)0, 0};_swigt__p_CELL14596,479853 -static swig_type_info _swigt__p_CPredicate = {"_p_CPredicate", "CPredicate *", 0, 0, (void*)0, 0};_swigt__p_CPredicate14597,479934 -static swig_type_info _swigt__p_Functor = {"_p_Functor", "Functor *", 0, 0, (void*)0, 0};_swigt__p_Functor14598,480033 -static swig_type_info _swigt__p_Int = {"_p_Int", "Int *", 0, 0, (void*)0, 0};_swigt__p_Int14599,480123 -static swig_type_info _swigt__p_Prop = {"_p_Prop", "Prop *", 0, 0, (void*)0, 0};_swigt__p_Prop14600,480201 -static swig_type_info _swigt__p_Term = {"_p_Term", "Term *", 0, 0, (void*)0, 0};_swigt__p_Term14601,480282 -static swig_type_info _swigt__p_YAPApplTerm = {"_p_YAPApplTerm", "YAPApplTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPApplTerm14602,480363 -static swig_type_info _swigt__p_YAPAtom = {"_p_YAPAtom", "YAPAtom *", 0, 0, (void*)0, 0};_swigt__p_YAPAtom14603,480465 -static swig_type_info _swigt__p_YAPAtomTerm = {"_p_YAPAtomTerm", "YAPAtomTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPAtomTerm14604,480555 -static swig_type_info _swigt__p_YAPCallback = {"_p_YAPCallback", "YAPCallback *", 0, 0, (void*)0, 0};_swigt__p_YAPCallback14605,480657 -static swig_type_info _swigt__p_YAPEngine = {"_p_YAPEngine", "YAPEngine *", 0, 0, (void*)0, 0};_swigt__p_YAPEngine14606,480759 -static swig_type_info _swigt__p_YAPError = {"_p_YAPError", "YAPError *", 0, 0, (void*)0, 0};_swigt__p_YAPError14607,480855 -static swig_type_info _swigt__p_YAPFLIP = {"_p_YAPFLIP", "YAPFLIP *", 0, 0, (void*)0, 0};_swigt__p_YAPFLIP14608,480948 -static swig_type_info _swigt__p_YAPFloatTerm = {"_p_YAPFloatTerm", "YAPFloatTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPFloatTerm14609,481038 -static swig_type_info _swigt__p_YAPFunctor = {"_p_YAPFunctor", "YAPFunctor *", 0, 0, (void*)0, 0};_swigt__p_YAPFunctor14610,481143 -static swig_type_info _swigt__p_YAPIntegerTerm = {"_p_YAPIntegerTerm", "YAPIntegerTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPIntegerTerm14611,481242 -static swig_type_info _swigt__p_YAPListTerm = {"_p_YAPListTerm", "YAPListTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPListTerm14612,481353 -static swig_type_info _swigt__p_YAPModule = {"_p_YAPModule", "YAPModule *", 0, 0, (void*)0, 0};_swigt__p_YAPModule14613,481455 -static swig_type_info _swigt__p_YAPModuleProp = {"_p_YAPModuleProp", "YAPModuleProp *", 0, 0, (void*)0, 0};_swigt__p_YAPModuleProp14614,481551 -static swig_type_info _swigt__p_YAPNumberTerm = {"_p_YAPNumberTerm", "YAPNumberTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPNumberTerm14615,481659 -static swig_type_info _swigt__p_YAPPairTerm = {"_p_YAPPairTerm", "YAPPairTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPPairTerm14616,481767 -static swig_type_info _swigt__p_YAPPredicate = {"_p_YAPPredicate", "YAPPredicate *", 0, 0, (void*)0, 0};_swigt__p_YAPPredicate14617,481869 -static swig_type_info _swigt__p_YAPPrologPredicate = {"_p_YAPPrologPredicate", "YAPPrologPredicate *", 0, 0, (void*)0, 0};_swigt__p_YAPPrologPredicate14618,481974 -static swig_type_info _swigt__p_YAPProp = {"_p_YAPProp", "YAPProp *", 0, 0, (void*)0, 0};_swigt__p_YAPProp14619,482097 -static swig_type_info _swigt__p_YAPQuery = {"_p_YAPQuery", "YAPQuery *", 0, 0, (void*)0, 0};_swigt__p_YAPQuery14620,482187 -static swig_type_info _swigt__p_YAPStringTerm = {"_p_YAPStringTerm", "YAPStringTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPStringTerm14621,482280 -static swig_type_info _swigt__p_YAPTerm = {"_p_YAPTerm", "YAPTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPTerm14622,482388 -static swig_type_info _swigt__p_YAPVarTerm = {"_p_YAPVarTerm", "YAPVarTerm *", 0, 0, (void*)0, 0};_swigt__p_YAPVarTerm14623,482478 -static swig_type_info _swigt__p_YAP_tag_t = {"_p_YAP_tag_t", "YAP_tag_t *", 0, 0, (void*)0, 0};_swigt__p_YAP_tag_t14624,482577 -static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};_swigt__p_char14625,482673 -static swig_type_info _swigt__p_int = {"_p_int", "intptr_t *|int *|int_least32_t *|int_fast32_t *|int32_t *|int_fast16_t *", 0, 0, (void*)0, 0};_swigt__p_int14626,482754 -static swig_type_info _swigt__p_long_long = {"_p_long_long", "int_least64_t *|int_fast64_t *|int64_t *|long long *|intmax_t *", 0, 0, (void*)0, 0};_swigt__p_long_long14627,482899 -static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0};_swigt__p_p_char14628,483047 -static swig_type_info _swigt__p_short = {"_p_short", "short *|int_least16_t *|int16_t *", 0, 0, (void*)0, 0};_swigt__p_short14629,483133 -static swig_type_info _swigt__p_signed_char = {"_p_signed_char", "signed char *|int_least8_t *|int_fast8_t *|int8_t *", 0, 0, (void*)0, 0};_swigt__p_signed_char14630,483243 -static swig_type_info _swigt__p_std__string = {"_p_std__string", "std::string *", 0, 0, (void*)0, 0};_swigt__p_std__string14631,483383 -static swig_type_info _swigt__p_std__vectorT_Term_t = {"_p_std__vectorT_Term_t", "std::vector< Term > *", 0, 0, (void*)0, 0};_swigt__p_std__vectorT_Term_t14632,483485 -static swig_type_info _swigt__p_std__vectorT_YAPTerm_t = {"_p_std__vectorT_YAPTerm_t", "std::vector< YAPTerm > *", 0, 0, (void*)0, 0};_swigt__p_std__vectorT_YAPTerm_t14633,483611 -static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "unsigned char *|uint_least8_t *|uint_fast8_t *|uint8_t *", 0, 0, (void*)0, 0};_swigt__p_unsigned_char14634,483746 -static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "uintptr_t *|uint_least32_t *|uint_fast32_t *|uint32_t *|unsigned int *|uint_fast16_t *", 0, 0, (void*)0, 0};_swigt__p_unsigned_int14635,483895 -static swig_type_info _swigt__p_unsigned_long_long = {"_p_unsigned_long_long", "uint_least64_t *|uint_fast64_t *|uint64_t *|unsigned long long *|uintmax_t *", 0, 0, (void*)0, 0};_swigt__p_unsigned_long_long14636,484072 -static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|uint_least16_t *|uint16_t *", 0, 0, (void*)0, 0};_swigt__p_unsigned_short14637,484251 -static swig_type_info _swigt__p_void = {"_p_void", "void *", 0, 0, (void*)0, 0};_swigt__p_void14638,484390 -static swig_type_info _swigt__p_wchar_t = {"_p_wchar_t", "wchar_t *", 0, 0, (void*)0, 0};_swigt__p_wchar_t14639,484471 -static swig_type_info _swigt__p_yap_error_class_number = {"_p_yap_error_class_number", "yap_error_class_number *", 0, 0, (void*)0, 0};_swigt__p_yap_error_class_number14640,484561 -static swig_type_info _swigt__p_yap_error_number = {"_p_yap_error_number", "yap_error_number *", 0, 0, (void*)0, 0};_swigt__p_yap_error_number14641,484696 -static swig_type_info _swigt__p_yhandle_t = {"_p_yhandle_t", "yhandle_t *", 0, 0, (void*)0, 0};_swigt__p_yhandle_t14642,484813 -static swig_type_info *swig_type_initial[] = {swig_type_initial14644,484910 -static swig_cast_info _swigc__p_CELL[] = { {&_swigt__p_CELL, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_CELL14694,486144 -static swig_cast_info _swigc__p_CPredicate[] = { {&_swigt__p_CPredicate, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_CPredicate14695,486230 -static swig_cast_info _swigc__p_Functor[] = { {&_swigt__p_Functor, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_Functor14696,486328 -static swig_cast_info _swigc__p_Int[] = { {&_swigt__p_Int, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_Int14697,486420 -static swig_cast_info _swigc__p_Prop[] = { {&_swigt__p_Prop, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_Prop14698,486504 -static swig_cast_info _swigc__p_Term[] = { {&_swigt__p_Term, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_Term14699,486590 -static swig_cast_info _swigc__p_YAPApplTerm[] = { {&_swigt__p_YAPApplTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPApplTerm14700,486676 -static swig_cast_info _swigc__p_YAPAtom[] = { {&_swigt__p_YAPAtom, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPAtom14701,486776 -static swig_cast_info _swigc__p_YAPAtomTerm[] = { {&_swigt__p_YAPModule, _p_YAPModuleTo_p_YAPAtomTerm, 0, 0}, {&_swigt__p_YAPAtomTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPAtomTerm14702,486868 -static swig_cast_info _swigc__p_YAPCallback[] = { {&_swigt__p_YAPCallback, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPCallback14703,487029 -static swig_cast_info _swigc__p_YAPEngine[] = { {&_swigt__p_YAPEngine, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPEngine14704,487129 -static swig_cast_info _swigc__p_YAPError[] = { {&_swigt__p_YAPError, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPError14705,487225 -static swig_cast_info _swigc__p_YAPFLIP[] = { {&_swigt__p_YAPFLIP, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPFLIP14706,487319 -static swig_cast_info _swigc__p_YAPFloatTerm[] = { {&_swigt__p_YAPFloatTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPFloatTerm14707,487411 -static swig_cast_info _swigc__p_YAPFunctor[] = { {&_swigt__p_YAPFunctor, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPFunctor14708,487513 -static swig_cast_info _swigc__p_YAPIntegerTerm[] = { {&_swigt__p_YAPIntegerTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPIntegerTerm14709,487611 -static swig_cast_info _swigc__p_YAPListTerm[] = { {&_swigt__p_YAPListTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPListTerm14710,487717 -static swig_cast_info _swigc__p_YAPModule[] = { {&_swigt__p_YAPModule, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPModule14711,487817 -static swig_cast_info _swigc__p_YAPModuleProp[] = { {&_swigt__p_YAPFLIP, _p_YAPFLIPTo_p_YAPModuleProp, 0, 0}, {&_swigt__p_YAPQuery, _p_YAPQueryTo_p_YAPModuleProp, 0, 0}, {&_swigt__p_YAPModuleProp, 0, 0, 0}, {&_swigt__p_YAPPredicate, _p_YAPPredicateTo_p_YAPModuleProp, 0, 0}, {&_swigt__p_YAPPrologPredicate, _p_YAPPrologPredicateTo_p_YAPModuleProp, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPModuleProp14712,487913 -static swig_cast_info _swigc__p_YAPNumberTerm[] = { {&_swigt__p_YAPIntegerTerm, _p_YAPIntegerTermTo_p_YAPNumberTerm, 0, 0}, {&_swigt__p_YAPFloatTerm, _p_YAPFloatTermTo_p_YAPNumberTerm, 0, 0}, {&_swigt__p_YAPNumberTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPNumberTerm14713,488287 -static swig_cast_info _swigc__p_YAPPairTerm[] = { {&_swigt__p_YAPPairTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPPairTerm14714,488533 -static swig_cast_info _swigc__p_YAPPredicate[] = { {&_swigt__p_YAPFLIP, _p_YAPFLIPTo_p_YAPPredicate, 0, 0}, {&_swigt__p_YAPQuery, _p_YAPQueryTo_p_YAPPredicate, 0, 0}, {&_swigt__p_YAPPredicate, 0, 0, 0}, {&_swigt__p_YAPPrologPredicate, _p_YAPPrologPredicateTo_p_YAPPredicate, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPPredicate14715,488633 -static swig_cast_info _swigc__p_YAPPrologPredicate[] = { {&_swigt__p_YAPPrologPredicate, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPPrologPredicate14716,488933 -static swig_cast_info _swigc__p_YAPProp[] = { {&_swigt__p_YAPFunctor, _p_YAPFunctorTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPFLIP, _p_YAPFLIPTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPQuery, _p_YAPQueryTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPProp, 0, 0, 0}, {&_swigt__p_YAPModuleProp, _p_YAPModulePropTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPPredicate, _p_YAPPredicateTo_p_YAPProp, 0, 0}, {&_swigt__p_YAPPrologPredicate, _p_YAPPrologPredicateTo_p_YAPProp, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPProp14717,489047 -static swig_cast_info _swigc__p_YAPQuery[] = { {&_swigt__p_YAPQuery, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPQuery14718,489509 -static swig_cast_info _swigc__p_YAPStringTerm[] = { {&_swigt__p_YAPStringTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPStringTerm14719,489603 -static swig_cast_info _swigc__p_YAPTerm[] = { {&_swigt__p_YAPApplTerm, _p_YAPApplTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPModule, 0, 0, 0}, {&_swigt__p_YAPVarTerm, _p_YAPVarTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPIntegerTerm, _p_YAPIntegerTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPFloatTerm, _p_YAPFloatTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPPairTerm, _p_YAPPairTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPNumberTerm, _p_YAPNumberTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPListTerm, _p_YAPListTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPAtomTerm, _p_YAPAtomTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPStringTerm, _p_YAPStringTermTo_p_YAPTerm, 0, 0}, {&_swigt__p_YAPTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPTerm14720,489707 -static swig_cast_info _swigc__p_YAPVarTerm[] = { {&_swigt__p_YAPVarTerm, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAPVarTerm14721,490396 -static swig_cast_info _swigc__p_YAP_tag_t[] = { {&_swigt__p_YAP_tag_t, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_YAP_tag_t14722,490494 -static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_char14723,490590 -static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_int14724,490676 -static swig_cast_info _swigc__p_long_long[] = { {&_swigt__p_long_long, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_long_long14725,490760 -static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_p_char14726,490856 -static swig_cast_info _swigc__p_short[] = { {&_swigt__p_short, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_short14727,490946 -static swig_cast_info _swigc__p_signed_char[] = { {&_swigt__p_signed_char, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_signed_char14728,491034 -static swig_cast_info _swigc__p_std__string[] = { {&_swigt__p_std__string, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_std__string14729,491134 -static swig_cast_info _swigc__p_std__vectorT_Term_t[] = { {&_swigt__p_std__vectorT_Term_t, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_std__vectorT_Term_t14730,491234 -static swig_cast_info _swigc__p_std__vectorT_YAPTerm_t[] = { {&_swigt__p_std__vectorT_YAPTerm_t, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_std__vectorT_YAPTerm_t14731,491350 -static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_unsigned_char14732,491472 -static swig_cast_info _swigc__p_unsigned_int[] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_unsigned_int14733,491576 -static swig_cast_info _swigc__p_unsigned_long_long[] = { {&_swigt__p_unsigned_long_long, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_unsigned_long_long14734,491678 -static swig_cast_info _swigc__p_unsigned_short[] = { {&_swigt__p_unsigned_short, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_unsigned_short14735,491792 -static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_void14736,491898 -static swig_cast_info _swigc__p_wchar_t[] = { {&_swigt__p_wchar_t, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_wchar_t14737,491984 -static swig_cast_info _swigc__p_yap_error_class_number[] = { {&_swigt__p_yap_error_class_number, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_yap_error_class_number14738,492076 -static swig_cast_info _swigc__p_yap_error_number[] = { {&_swigt__p_yap_error_number, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_yap_error_number14739,492198 -static swig_cast_info _swigc__p_yhandle_t[] = { {&_swigt__p_yhandle_t, 0, 0, 0},{0, 0, 0, 0}};_swigc__p_yhandle_t14740,492308 -static swig_cast_info *swig_cast_initial[] = {swig_cast_initial14742,492405 -static swig_const_info swig_const_table[] = {swig_const_table14795,493662 -SWIG_InitializeModule(void *clientdata) {SWIG_InitializeModule14855,496460 -SWIG_PropagateClientData(void) {SWIG_PropagateClientData15002,501291 -#define SWIG_newvarlink(SWIG_newvarlink15039,501947 -#define SWIG_addvarlink(SWIG_addvarlink15040,502026 -#define SWIG_InstallConstants(SWIG_InstallConstants15041,502132 - typedef struct swig_globalvar {swig_globalvar15047,502439 - char *name; /* Name of global variable */name15048,502473 - char *name; /* Name of global variable */swig_globalvar::name15048,502473 - PyObject *(*get_attr)(void); /* Return the current value */get_attr15049,502542 - PyObject *(*get_attr)(void); /* Return the current value */swig_globalvar::get_attr15049,502542 - int (*set_attr)(PyObject *); /* Set the value */set_attr15050,502612 - int (*set_attr)(PyObject *); /* Set the value */swig_globalvar::set_attr15050,502612 - struct swig_globalvar *next;next15051,502671 - struct swig_globalvar *next;swig_globalvar::next15051,502671 - } swig_globalvar;swig_globalvar15052,502704 - typedef struct swig_varlinkobject {swig_varlinkobject15054,502727 - swig_globalvar *vars;vars15056,502783 - swig_globalvar *vars;swig_varlinkobject::vars15056,502783 - } swig_varlinkobject;swig_varlinkobject15057,502809 - swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) {SWIGUNUSEDPARM15060,502860 - swig_varlink_str(swig_varlinkobject *v) {swig_varlink_str15069,503123 - swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) {swig_varlink_print15107,504245 - swig_varlink_dealloc(swig_varlinkobject *v) {swig_varlink_dealloc15118,504580 - swig_varlink_getattr(swig_varlinkobject *v, char *n) {swig_varlink_getattr15129,504810 - swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) {swig_varlink_setattr15146,505239 - swig_varlink_type(void) {swig_varlink_type15163,505680 - SWIG_Python_newvarlink(void) {SWIG_Python_newvarlink15235,508642 - SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) {SWIG_Python_addvarlink15244,508870 - SWIG_globals(void) {SWIG_globals15261,509416 - SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) {SWIG_Python_InstallConstants15273,509826 - SWIG_Python_FixMethods(PyMethodDef *methods,SWIG_Python_FixMethods15300,510713 -SWIG_init(void) {SWIG_init15361,512423 - -packages/swig/yap_wrap.h,1176 -#define SWIG_yap_WRAP_H_SWIG_yap_WRAP_H_12,544 -class SwigDirector_YAPCallback : public YAPCallback, public Swig::Director {SwigDirector_YAPCallback18,605 - bool swig_get_inner(const char *swig_protected_method_name) const {swig_get_inner28,876 - bool swig_get_inner(const char *swig_protected_method_name) const {SwigDirector_YAPCallback::swig_get_inner28,876 - void swig_set_inner(const char *swig_protected_method_name, bool swig_val) const {swig_set_inner32,1114 - void swig_set_inner(const char *swig_protected_method_name, bool swig_val) const {SwigDirector_YAPCallback::swig_set_inner32,1114 - mutable std::map swig_inner;swig_inner36,1273 - mutable std::map swig_inner;SwigDirector_YAPCallback::swig_inner36,1273 - PyObject *swig_get_method(size_t method_index, const char *method_name) const {swig_get_method40,1395 - PyObject *swig_get_method(size_t method_index, const char *method_name) const {SwigDirector_YAPCallback::swig_get_method40,1395 - mutable swig::SwigVar_PyObject vtable[2];vtable55,1974 - mutable swig::SwigVar_PyObject vtable[2];SwigDirector_YAPCallback::vtable55,1974 - -packages/swiLibrary/Makefile,0 - -packages/udi/b+tree/b+tree.c,948 -btree_t BTreeNew (void)BTreeNew8,109 -void BTreeDestroy (btree_t t)BTreeDestroy16,210 -static void BTreeDestroyNode (node_t n)BTreeDestroyNode22,280 -static node_t BTreeNewNode (void)BTreeNewNode38,543 -static void BTreeNodeInit (node_t n)BTreeNodeInit48,677 -void *BTreeMin (node_t n, node_t *f, int *i)BTreeMin54,773 -void *BTreeMax (node_t n, node_t *f, int *i)BTreeMax69,1008 -void * BTreeSearch (node_t n, double k, int s, node_t *f, int *i)BTreeSearch93,1348 -void *BTreeSearchNext (double max, int s, node_t *n, int *i)BTreeSearchNext138,2367 -void BTreeInsert (btree_t *t, double k, void *ptr)BTreeInsert160,2824 -static int BTreeInsertNode(node_t n, double *k, void **ptr)BTreeInsertNode179,3243 -static int BTreeAddBranch(node_t n, int idx, double *k,BTreeAddBranch206,3748 -static int BTreePickBranch(node_t n, double k)BTreePickBranch278,5374 -static int BTreeAddLeaf(node_t n, double *k, void **ptr)BTreeAddLeaf288,5527 - -packages/udi/b+tree/b+tree.h,219 -#define __BTREE_H____BTREE_H__2,20 -typedef void * btree_t;btree_t5,69 -typedef void * node_t;node_t6,93 -#define EQ EQ36,752 -#define LE LE37,812 -#define LT LT38,825 -#define GE GE42,986 -#define GT GT43,999 - -packages/udi/b+tree/b+tree.yap,2474 -c1(A,X,X) :-c138,936 -c1(A,X,X) :-c138,936 -c1(A,X,X) :-c138,936 -c1(gt(_,X),gt(_,Y),gt(_,Z)) :-c141,969 -c1(gt(_,X),gt(_,Y),gt(_,Z)) :-c141,969 -c1(gt(_,X),gt(_,Y),gt(_,Z)) :-c141,969 -c1(gt(_,X),ge(_,Y),ge(_,Y)) :-c143,1023 -c1(gt(_,X),ge(_,Y),ge(_,Y)) :-c143,1023 -c1(gt(_,X),ge(_,Y),ge(_,Y)) :-c143,1023 -c1(gt(_,X),ge(_,Y),gt(_,X)) :-c145,1077 -c1(gt(_,X),ge(_,Y),gt(_,X)) :-c145,1077 -c1(gt(_,X),ge(_,Y),gt(_,X)) :-c145,1077 -c1(ge(_,X),ge(_,Y),ge(_,Z)) :-c147,1131 -c1(ge(_,X),ge(_,Y),ge(_,Z)) :-c147,1131 -c1(ge(_,X),ge(_,Y),ge(_,Z)) :-c147,1131 -c1(ge(_,X),gt(_,Y),ge(_,X)) :-c149,1185 -c1(ge(_,X),gt(_,Y),ge(_,X)) :-c149,1185 -c1(ge(_,X),gt(_,Y),ge(_,X)) :-c149,1185 -c1(ge(_,X),gt(_,Y),gt(_,Y)) :-c151,1239 -c1(ge(_,X),gt(_,Y),gt(_,Y)) :-c151,1239 -c1(ge(_,X),gt(_,Y),gt(_,Y)) :-c151,1239 -c1(lt(_,X),lt(_,Y),lt(_,Z)) :-c154,1294 -c1(lt(_,X),lt(_,Y),lt(_,Z)) :-c154,1294 -c1(lt(_,X),lt(_,Y),lt(_,Z)) :-c154,1294 -c1(lt(_,X),le(_,Y),le(_,Y)) :-c156,1348 -c1(lt(_,X),le(_,Y),le(_,Y)) :-c156,1348 -c1(lt(_,X),le(_,Y),le(_,Y)) :-c156,1348 -c1(lt(_,X),le(_,Y),lt(_,X)) :-c158,1402 -c1(lt(_,X),le(_,Y),lt(_,X)) :-c158,1402 -c1(lt(_,X),le(_,Y),lt(_,X)) :-c158,1402 -c1(le(_,X),ge(_,Y),le(_,Z)) :-c160,1456 -c1(le(_,X),ge(_,Y),le(_,Z)) :-c160,1456 -c1(le(_,X),ge(_,Y),le(_,Z)) :-c160,1456 -c1(le(_,X),lt(_,Y),le(_,X)) :-c162,1510 -c1(le(_,X),lt(_,Y),le(_,X)) :-c162,1510 -c1(le(_,X),lt(_,Y),le(_,X)) :-c162,1510 -c1(le(_,X),lt(_,Y),lt(_,Y)) :-c164,1564 -c1(le(_,X),lt(_,Y),lt(_,Y)) :-c164,1564 -c1(le(_,X),lt(_,Y),lt(_,Y)) :-c164,1564 -c1(gt(_,X),lt(_,Y),range(_,X,false,Y,false)).c168,1639 -c1(gt(_,X),lt(_,Y),range(_,X,false,Y,false)).c168,1639 -c1(gt(_,X),le(_,Y),range(_,X,false,Y,true)).c169,1685 -c1(gt(_,X),le(_,Y),range(_,X,false,Y,true)).c169,1685 -c1(lt(_,Y),gt(_,X),range(_,X,false,Y,false)).c170,1730 -c1(lt(_,Y),gt(_,X),range(_,X,false,Y,false)).c170,1730 -c1(lt(_,Y),ge(_,X),range(_,X,true,Y,false)).c171,1776 -c1(lt(_,Y),ge(_,X),range(_,X,true,Y,false)).c171,1776 -c1(le(_,Y),gt(_,X),range(_,X,false,Y,true)).c172,1821 -c1(le(_,Y),gt(_,X),range(_,X,false,Y,true)).c172,1821 -c1(le(_,Y),ge(_,X),range(_,X,true,Y,true)).c173,1866 -c1(le(_,Y),ge(_,X),range(_,X,true,Y,true)).c173,1866 -c1(ge(_,X),lt(_,Y),range(_,X,true,Y,false)).c174,1910 -c1(ge(_,X),lt(_,Y),range(_,X,true,Y,false)).c174,1910 -c1(ge(_,X),le(_,Y),range(_,X,true,Y,true)).c175,1955 -c1(ge(_,X),le(_,Y),range(_,X,true,Y,true)).c175,1955 - -packages/udi/b+tree/b+tree_private.h,960 -#define __BTREE_PRIVATE_H__ __BTREE_PRIVATE_H__2,28 -#define MAXCARD MAXCARD8,159 -#define MINCARD MINCARD9,235 -struct BranchBranch11,266 - double key;key13,282 - double key;Branch::key13,282 - void * child;child14,296 - void * child;Branch::child14,296 -typedef struct Branch branch_t;branch_t17,387 -struct NodeNode19,420 - int count;count21,434 - int count;Node::count21,434 - int level;level22,447 - int level;Node::level22,447 - branch_t branch[FLEXIBLE_SIZE];branch28,574 - branch_t branch[FLEXIBLE_SIZE];Node::branch28,574 -typedef struct Node * node_t;node_t33,694 -#define SIZEOF_NODE SIZEOF_NODE34,724 -struct RangeRange36,791 - double min;min38,806 - double min;Range::min38,806 - int le;le39,820 - int le;Range::le39,820 - double max;max40,830 - double max;Range::max40,830 - int ge;ge41,844 - int ge;Range::ge41,844 -typedef struct Range range_t;range_t43,857 -typedef node_t btree_t;btree_t45,888 - -packages/udi/b+tree/b+tree_udi.c,1235 -static struct udi_control_block BtreeCB;BtreeCB9,124 -void udi_btree_init(void) {udi_btree_init11,166 -void *BtreeUdiInit (YAP_Term spec, int arg, int arity)BtreeUdiInit25,433 -void *BtreeUdiInsert (void *control,BtreeUdiInsert30,522 -int BtreeUdiSearch (void *control,BtreeUdiSearch44,807 -int BTreeMinAtt (btree_t tree, YAP_Term constraint, Yap_UdiCallback callback, void *args)BTreeMinAtt68,1517 -int BTreeMaxAtt (btree_t tree, YAP_Term constraint, Yap_UdiCallback callback, void *args)BTreeMaxAtt77,1717 -int BTreeEqAtt (btree_t tree, YAP_Term constraint, Yap_UdiCallback callback, void *args)BTreeEqAtt86,1912 -int BTreeLtAtt (btree_t tree, YAP_Term constraint, Yap_UdiCallback callback, void *args)BTreeLtAtt103,2200 -int BTreeLeAtt (btree_t tree, YAP_Term constraint, Yap_UdiCallback callback, void *args)BTreeLeAtt123,2564 -int BTreeGtAtt (btree_t tree, YAP_Term constraint, Yap_UdiCallback callback, void *args)BTreeGtAtt143,2928 -int BTreeGeAtt (btree_t tree, YAP_Term constraint, Yap_UdiCallback callback, void *args)BTreeGeAtt163,3307 -int BTreeRangeAtt (btree_t tree, YAP_Term constraint, Yap_UdiCallback callback, void *args)BTreeRangeAtt183,3695 -int BtreeUdiDestroy(void *control)BtreeUdiDestroy209,4379 - -packages/udi/b+tree/b+tree_udi.h,425 -#define __BTREE_UDI_H__ __BTREE_UDI_H__2,24 -#define SPEC SPEC8,115 -typedef int (*BTreeSearchAtt) (btree_t tree, YAP_Term constraint, Yap_UdiCallback callback, void *args);BTreeSearchAtt22,464 -struct AttAtt24,570 - const char *att;att26,583 - const char *att;Att::att26,583 - BTreeSearchAtt proc_att;proc_att27,602 - BTreeSearchAtt proc_att;Att::proc_att27,602 -static struct Att att_func[] = att_func39,1359 - -packages/udi/judy.c,176 -static inline int j1_callback(void *key, void *data, void *arg)j1_callback6,103 -Yap_udi_join(struct ClauseList *clauselist. UdiPArg parg. UdiInfo info)Yap_udi_join18,317 - -packages/udi/rtree/rtree.c,1850 -rtree_t RTreeNew (void)RTreeNew9,127 -void RTreeDestroy (rtree_t t)RTreeDestroy17,228 -static node_t RTreeNewNode (void)RTreeNewNode23,298 -static void RTreeDestroyNode (node_t node)RTreeDestroyNode33,432 -static void RTreeNodeInit (node_t n)RTreeNodeInit56,877 -int RTreeSearch (rtree_t t, rect_t s, SearchHitCallback f, void *arg)RTreeSearch62,973 -static int RTreeSearchNode (node_t n, rect_t s, SearchHitCallback f, void *arg)RTreeSearchNode68,1098 -void RTreeInsert (rtree_t *t, rect_t r, void *data)RTreeInsert95,1728 -static int RTreeInsertNode (node_t n, int level,RTreeInsertNode117,2241 -static int RTreeAddBranch(node_t n, branch_t b, node_t *new_node)RTreeAddBranch153,3141 -static int RTreePickBranch (rect_t r, node_t n)RTreePickBranch178,3612 -static void RTreeSplitNode (node_t n, branch_t b, node_t *new_node)RTreeSplitNode217,4435 -static void RTreePickNext(partition_t p, node_t n1, node_t n2)RTreePickNext251,5234 -static void RTreePickSeeds(partition_t p, node_t n1, node_t n2)RTreePickSeeds275,5839 -static void RTreeNodeAddBranch(rect_t *r, node_t n, branch_t b)RTreeNodeAddBranch335,7547 -void RTreePrint(node_t t)RTreePrint353,7847 -static partition_t PartitionNew (void)PartitionNew388,8505 -static void PartitionPush (partition_t p, branch_t b)PartitionPush399,8755 -static branch_t PartitionPop (partition_t p)PartitionPop407,8928 -static branch_t PartitionGet (partition_t p, int n)PartitionGet414,9035 -rect_t RectInit (void)RectInit427,9217 -rect_t RectInitCoords (double c[4])RectInitCoords433,9312 -static double RectArea (rect_t r)RectArea443,9467 -static rect_t RectCombine (rect_t r, rect_t s)RectCombine457,9721 -static int RectOverlap (rect_t r, rect_t s)RectOverlap471,10006 -static rect_t RTreeNodeCover(node_t n)RTreeNodeCover482,10226 -void RectPrint (rect_t r)RectPrint498,10463 - -packages/udi/rtree/rtree.h,399 -#define _RTREE_ _RTREE_2,16 - typedef void * rtree_t;rtree_t5,63 - typedef void * node_t;node_t6,88 - struct RectRect8,113 - double coords[4]; /*TODO: change this from here*/coords10,129 - double coords[4]; /*TODO: change this from here*/Rect::coords10,129 - typedef struct Rect rect_t;rect_t12,185 -typedef int (*SearchHitCallback)(void *, void *data, void *arg);SearchHitCallback15,222 - -packages/udi/rtree/rtree.yap,0 - -packages/udi/rtree/rtree_private.h,1561 -#define __RTREE_PRIVATE_H__ __RTREE_PRIVATE_H__2,28 -#define NUMDIMS NUMDIMS6,84 -#define MAXCARD MAXCARD11,264 -#define MINCARD MINCARD12,342 -struct RectRect14,373 - double coords[2*NUMDIMS]; /* x1min, y1min, ... , x1max, y1max, ...*/coords16,387 - double coords[2*NUMDIMS]; /* x1min, y1min, ... , x1max, y1max, ...*/Rect::coords16,387 -typedef struct Rect rect_t;rect_t18,461 -typedef size_t index_t;index_t20,490 -struct BranchBranch22,515 - rect_t mbr;mbr24,531 - rect_t mbr;Branch::mbr24,531 - void * child; /*void * so user can store whatever he needs, in casechild25,545 - void * child; /*void * so user can store whatever he needs, in caseBranch::child25,545 -typedef struct Branch branch_t;branch_t28,668 -struct NodeNode30,701 - int count;count32,715 - int count;Node::count32,715 - int level;level33,728 - int level;Node::level33,728 - branch_t branch[FLEXIBLE_SIZE];branch34,741 - branch_t branch[FLEXIBLE_SIZE];Node::branch34,741 -typedef struct Node * node_t;node_t36,778 -#define SIZEOF_NODE SIZEOF_NODE37,808 -typedef node_t rtree_t;rtree_t39,875 -struct PartitionPartition41,900 - int n;n43,919 - int n;Partition::n43,919 - rect_t cover_all;cover_all44,928 - rect_t cover_all;Partition::cover_all44,928 - rect_t cover[2];cover45,948 - rect_t cover[2];Partition::cover45,948 - branch_t buffer[FLEXIBLE_SIZE];buffer46,967 - branch_t buffer[FLEXIBLE_SIZE];Partition::buffer46,967 -typedef struct Partition * partition_t;partition_t48,1004 -#define SIZEOF_PARTITION SIZEOF_PARTITION49,1044 - -packages/udi/rtree/rtree_udi.c,504 -static struct udi_control_block RtreeCB;RtreeCB8,104 -void udi_rtree_init(void) {udi_rtree_init10,146 -static int YAP_IsNumberTermToFloat (YAP_Term term, YAP_Float *n)YAP_IsNumberTermToFloat25,414 -static rect_t RectOfTerm (YAP_Term term)RectOfTerm42,750 -RtreeUdiInit (YAP_Term spec, int arg, int arity) {RtreeUdiInit63,1142 -RtreeUdiInsert (void *control,RtreeUdiInsert68,1232 -int RtreeUdiSearch (void *control,RtreeUdiSearch85,1589 -int RtreeUdiDestroy(void *control)RtreeUdiDestroy112,2125 - -packages/udi/rtree/rtree_udi.h,62 -#define _RTREE_UDI__RTREE_UDI_2,20 -#define SPEC SPEC8,104 - -packages/udi/udi_common.h,190 -#define FALSE FALSE2,14 -#define TRUE TRUE5,50 -#define FLEXIBLE_SIZE FLEXIBLE_SIZE25,350 -#define SIZEOF_FLEXIBLE(SIZEOF_FLEXIBLE26,374 -#define MIN(MIN29,495 -#define MAX(MAX30,537 - -packages/udi/utarray.h,2938 -#define UTARRAY_HUTARRAY_H28,1253 -#define UTARRAY_VERSION UTARRAY_VERSION30,1272 -#define _UNUSED_ _UNUSED_33,1319 -#define _UNUSED_ _UNUSED_35,1372 -#define oom(oom42,1504 -typedef void (ctor_f)(void *dst, const void *src);ctor_f44,1528 -typedef void (dtor_f)(void *elt);dtor_f45,1579 -typedef void (init_f)(void *elt);init_f46,1613 - size_t sz;sz48,1664 - size_t sz;__anon494::sz48,1664 - init_f *init;init49,1679 - init_f *init;__anon494::init49,1679 - ctor_f *copy;copy50,1697 - ctor_f *copy;__anon494::copy50,1697 - dtor_f *dtor;dtor51,1715 - dtor_f *dtor;__anon494::dtor51,1715 -} UT_icd;UT_icd52,1733 - unsigned i,n;/* i: index of next available slot, n: num slots */i55,1761 - unsigned i,n;/* i: index of next available slot, n: num slots */__anon495::i55,1761 - unsigned i,n;/* i: index of next available slot, n: num slots */n55,1761 - unsigned i,n;/* i: index of next available slot, n: num slots */__anon495::n55,1761 - UT_icd icd; /* initializer, copy and destructor functions */icd56,1830 - UT_icd icd; /* initializer, copy and destructor functions */__anon495::icd56,1830 - char *d; /* n slots of size icd->sz*/d57,1896 - char *d; /* n slots of size icd->sz*/__anon495::d57,1896 -} UT_array;UT_array58,1942 -#define utarray_init(utarray_init60,1955 -#define utarray_done(utarray_done65,2207 -#define utarray_new(utarray_new78,3099 -#define utarray_free(utarray_free83,3351 -#define utarray_reserve(utarray_reserve88,3603 -#define utarray_push_back(utarray_push_back95,4015 -#define utarray_pop_back(utarray_pop_back101,4347 -#define utarray_extend_back(utarray_extend_back106,4599 -#define utarray_len(utarray_len113,5011 -#define utarray_eltptr(utarray_eltptr115,5044 -#define _utarray_eltptr(_utarray_eltptr116,5119 -#define utarray_insert(utarray_insert118,5188 -#define utarray_inserta(utarray_inserta130,6000 -#define utarray_resize(utarray_resize151,7532 -#define utarray_concat(utarray_concat172,9064 -#define utarray_erase(utarray_erase176,9236 -#define utarray_renew(utarray_renew190,10208 -#define utarray_clear(utarray_clear195,10363 -#define utarray_sort(utarray_sort207,11175 -#define utarray_find(utarray_find211,11347 -#define utarray_front(utarray_front213,11421 -#define utarray_next(utarray_next214,11489 -#define utarray_prev(utarray_prev215,11639 -#define utarray_back(utarray_back216,11777 -#define utarray_eltidx(utarray_eltidx217,11851 -static void utarray_str_cpy(void *dst, const void *src) {utarray_str_cpy220,12041 -static void utarray_str_dtor(void *elt) {utarray_str_dtor224,12202 -static const UT_icd ut_str_icd _UNUSED_ = {sizeof(char*),NULL,utarray_str_cpy,utarray_str_dtor};_UNUSED_228,12301 -static const UT_icd ut_int_icd _UNUSED_ = {sizeof(int),NULL,NULL,NULL};_UNUSED_229,12398 -static const UT_icd ut_ptr_icd _UNUSED_ = {sizeof(void*),NULL,NULL,NULL};_UNUSED_230,12470 - -packages/udi/uthash/uthash.h,8330 -#define UTHASH_H UTHASH_H25,1157 -#define DECLTYPE(DECLTYPE37,1700 -#define NO_DECLTYPENO_DECLTYPE39,1802 -#define DECLTYPE(DECLTYPE40,1822 -#define DECLTYPE(DECLTYPE43,1908 -#define DECLTYPE_ASSIGN(DECLTYPE_ASSIGN47,1969 -#define DECLTYPE_ASSIGN(DECLTYPE_ASSIGN53,2319 -typedef unsigned int uint32_t;uint32_t61,2681 -typedef unsigned char uint8_t;uint8_t62,2712 -#define UTHASH_VERSION UTHASH_VERSION67,2796 -#define uthash_fatal(uthash_fatal70,2847 -#define uthash_malloc(uthash_malloc73,2956 -#define uthash_free(uthash_free76,3063 -#define uthash_noexpand_fyi(uthash_noexpand_fyi80,3179 -#define uthash_expand_fyi(uthash_expand_fyi83,3292 -#define HASH_INITIAL_NUM_BUCKETS HASH_INITIAL_NUM_BUCKETS87,3412 -#define HASH_INITIAL_NUM_BUCKETS_LOG2 HASH_INITIAL_NUM_BUCKETS_LOG288,3492 -#define HASH_BKT_CAPACITY_THRESH HASH_BKT_CAPACITY_THRESH89,3572 -#define ELMT_FROM_HH(ELMT_FROM_HH92,3714 -#define HASH_FIND(HASH_FIND94,3786 -#define HASH_BLOOM_BITLEN HASH_BLOOM_BITLEN108,4730 -#define HASH_BLOOM_BYTELEN HASH_BLOOM_BYTELEN109,4777 -#define HASH_BLOOM_MAKE(HASH_BLOOM_MAKE110,4858 -#define HASH_BLOOM_FREE(HASH_BLOOM_FREE119,5453 -#define HASH_BLOOM_BITSET(HASH_BLOOM_BITSET124,5716 -#define HASH_BLOOM_BITTEST(HASH_BLOOM_BITTEST125,5785 -#define HASH_BLOOM_ADD(HASH_BLOOM_ADD127,5855 -#define HASH_BLOOM_TEST(HASH_BLOOM_TEST130,6032 -#define HASH_BLOOM_MAKE(HASH_BLOOM_MAKE134,6216 -#define HASH_BLOOM_FREE(HASH_BLOOM_FREE135,6246 -#define HASH_BLOOM_ADD(HASH_BLOOM_ADD136,6276 -#define HASH_BLOOM_TEST(HASH_BLOOM_TEST137,6311 -#define HASH_MAKE_TABLE(HASH_MAKE_TABLE140,6358 -#define HASH_ADD(HASH_ADD159,7781 -#define HASH_ADD_KEYPTR(HASH_ADD_KEYPTR162,7933 -#define HASH_TO_BKT(HASH_TO_BKT187,9864 -#define HASH_DELETE(HASH_DELETE204,10801 -#define HASH_FIND_STR(HASH_FIND_STR241,13609 -#define HASH_ADD_STR(HASH_ADD_STR243,13743 -#define HASH_FIND_INT(HASH_FIND_INT245,13883 -#define HASH_ADD_INT(HASH_ADD_INT247,14013 -#define HASH_FIND_PTR(HASH_FIND_PTR249,14143 -#define HASH_ADD_PTR(HASH_ADD_PTR251,14276 -#define HASH_DEL(HASH_DEL253,14409 -#define HASH_OOPS(HASH_OOPS260,14714 -#define HASH_FSCK(HASH_FSCK261,14793 -#define HASH_FSCK(HASH_FSCK313,18961 -#define HASH_EMIT_KEY(HASH_EMIT_KEY320,19248 -#define HASH_EMIT_KEY(HASH_EMIT_KEY327,19682 -#define HASH_FCN HASH_FCN332,19857 -#define HASH_FCN HASH_FCN334,19894 -#define HASH_BER(HASH_BER338,19990 -#define HASH_SAX(HASH_SAX350,20732 -#define HASH_FNV(HASH_FNV360,21409 -#define HASH_OAT(HASH_OAT370,22087 -#define HASH_JEN_MIX(HASH_JEN_MIX386,23261 -#define HASH_JEN(HASH_JEN399,24187 -#undef get16bitsget16bits441,27481 -#define get16bits(get16bits444,27654 -#define get16bits(get16bits448,27736 -#define HASH_SFH(HASH_SFH451,27890 -#define MUR_GETBLOCK(MUR_GETBLOCK506,31914 -#define MUR_PLUS0_ALIGNED(MUR_PLUS0_ALIGNED508,31967 -#define MUR_PLUS1_ALIGNED(MUR_PLUS1_ALIGNED509,32028 -#define MUR_PLUS2_ALIGNED(MUR_PLUS2_ALIGNED510,32089 -#define MUR_PLUS3_ALIGNED(MUR_PLUS3_ALIGNED511,32150 -#define WP(WP512,32211 -#define MUR_THREE_ONE(MUR_THREE_ONE514,32356 -#define MUR_TWO_TWO(MUR_TWO_TWO515,32448 -#define MUR_ONE_THREE(MUR_ONE_THREE516,32540 -#define MUR_THREE_ONE(MUR_THREE_ONE518,32675 -#define MUR_TWO_TWO(MUR_TWO_TWO519,32767 -#define MUR_ONE_THREE(MUR_ONE_THREE520,32859 -#define MUR_GETBLOCK(MUR_GETBLOCK522,32958 -#define MUR_ROTL32(MUR_ROTL32527,33258 -#define MUR_FMIX(MUR_FMIX528,33319 -#define HASH_MUR(HASH_MUR537,33492 -#define HASH_KEYCMP(HASH_KEYCMP575,36094 -#define HASH_FIND_IN_BKT(HASH_FIND_IN_BKT578,36205 -#define HASH_ADD_TO_BKT(HASH_ADD_TO_BKT592,37169 -#define HASH_DEL_IN_BKT(HASH_DEL_IN_BKT606,38135 -#define HASH_EXPAND_BUCKETS(HASH_EXPAND_BUCKETS647,40485 -#define HASH_SORT(HASH_SORT699,44519 -#define HASH_SRT(HASH_SRT700,44575 -#define HASH_SELECT(HASH_SELECT784,51291 -#define HASH_CLEAR(HASH_CLEAR822,54292 -#define HASH_ITER(HASH_ITER834,55070 -#define HASH_ITER(HASH_ITER838,55316 -#define HASH_COUNT(HASH_COUNT844,55596 -#define HASH_CNT(HASH_CNT845,55640 -typedef struct UT_hash_bucket {UT_hash_bucket847,55706 - struct UT_hash_handle *hh_head;hh_head848,55738 - struct UT_hash_handle *hh_head;UT_hash_bucket::hh_head848,55738 - unsigned count;count849,55773 - unsigned count;UT_hash_bucket::count849,55773 - unsigned expand_mult;expand_mult863,56634 - unsigned expand_mult;UT_hash_bucket::expand_mult863,56634 -} UT_hash_bucket;UT_hash_bucket865,56660 -#define HASH_SIGNATURE HASH_SIGNATURE868,56753 -#define HASH_BLOOM_SIGNATURE HASH_BLOOM_SIGNATURE869,56787 -typedef struct UT_hash_table {UT_hash_table871,56828 - UT_hash_bucket *buckets;buckets872,56859 - UT_hash_bucket *buckets;UT_hash_table::buckets872,56859 - unsigned num_buckets, log2_num_buckets;num_buckets873,56887 - unsigned num_buckets, log2_num_buckets;UT_hash_table::num_buckets873,56887 - unsigned num_buckets, log2_num_buckets;log2_num_buckets873,56887 - unsigned num_buckets, log2_num_buckets;UT_hash_table::log2_num_buckets873,56887 - unsigned num_items;num_items874,56930 - unsigned num_items;UT_hash_table::num_items874,56930 - struct UT_hash_handle *tail; /* tail hh in app order, for fast append */tail875,56953 - struct UT_hash_handle *tail; /* tail hh in app order, for fast append */UT_hash_table::tail875,56953 - ptrdiff_t hho; /* hash handle offset (byte pos of hash handle in element */hho876,57032 - ptrdiff_t hho; /* hash handle offset (byte pos of hash handle in element */UT_hash_table::hho876,57032 - unsigned ideal_chain_maxlen;ideal_chain_maxlen880,57268 - unsigned ideal_chain_maxlen;UT_hash_table::ideal_chain_maxlen880,57268 - unsigned nonideal_items;nonideal_items885,57540 - unsigned nonideal_items;UT_hash_table::nonideal_items885,57540 - unsigned ineff_expands, noexpand;ineff_expands893,58018 - unsigned ineff_expands, noexpand;UT_hash_table::ineff_expands893,58018 - unsigned ineff_expands, noexpand;noexpand893,58018 - unsigned ineff_expands, noexpand;UT_hash_table::noexpand893,58018 - uint32_t signature; /* used only to find hash tables in external analysis */signature895,58056 - uint32_t signature; /* used only to find hash tables in external analysis */UT_hash_table::signature895,58056 - uint32_t bloom_sig; /* used only to test bloom exists in external analysis */bloom_sig897,58154 - uint32_t bloom_sig; /* used only to test bloom exists in external analysis */UT_hash_table::bloom_sig897,58154 - uint8_t *bloom_bv;bloom_bv898,58235 - uint8_t *bloom_bv;UT_hash_table::bloom_bv898,58235 - char bloom_nbits;bloom_nbits899,58257 - char bloom_nbits;UT_hash_table::bloom_nbits899,58257 -} UT_hash_table;UT_hash_table902,58286 -typedef struct UT_hash_handle {UT_hash_handle904,58304 - struct UT_hash_table *tbl;tbl905,58336 - struct UT_hash_table *tbl;UT_hash_handle::tbl905,58336 - void *prev; /* prev element in app order */prev906,58366 - void *prev; /* prev element in app order */UT_hash_handle::prev906,58366 - void *next; /* next element in app order */next907,58440 - void *next; /* next element in app order */UT_hash_handle::next907,58440 - struct UT_hash_handle *hh_prev; /* previous hh in bucket order */hh_prev908,58514 - struct UT_hash_handle *hh_prev; /* previous hh in bucket order */UT_hash_handle::hh_prev908,58514 - struct UT_hash_handle *hh_next; /* next hh in bucket order */hh_next909,58588 - struct UT_hash_handle *hh_next; /* next hh in bucket order */UT_hash_handle::hh_next909,58588 - void *key; /* ptr to enclosing struct's key */key910,58662 - void *key; /* ptr to enclosing struct's key */UT_hash_handle::key910,58662 - unsigned keylen; /* enclosing struct's key len */keylen911,58736 - unsigned keylen; /* enclosing struct's key len */UT_hash_handle::keylen911,58736 - unsigned hashv; /* result of hash-fcn(key) */hashv912,58810 - unsigned hashv; /* result of hash-fcn(key) */UT_hash_handle::hashv912,58810 -} UT_hash_handle;UT_hash_handle913,58884 - -packages/udi/uthash/uthash.yap,0 - -packages/udi/uthash/uthash_udi.c,368 -static struct udi_control_block UTHashCB;UTHashCB7,97 -void udi_uthash_init(void) {udi_uthash_init9,140 -void *UTHashUdiInit (YAP_Term spec, int arg, int arity) {UTHashUdiInit24,414 -void *UTHashUdiInsert (void *control,UTHashUdiInsert28,506 -int UTHashUdiSearch (void *control,UTHashUdiSearch55,1203 -int UTHashUdiDestroy(void *control)UTHashUdiDestroy91,2084 - -packages/udi/uthash/uthash_udi.h,64 -#define _UTHASH_UDI__UTHASH_UDI_2,21 -#define SPEC SPEC8,107 - -packages/udi/uthash/uthash_udi_private.h,654 -#define _UTHASH_UDI_PRIVATE__UTHASH_UDI_PRIVATE_2,29 -union AI {AI6,80 - YAP_Atom atom;atom7,91 - YAP_Atom atom;AI::atom7,91 - YAP_Int integer;integer8,108 - YAP_Int integer;AI::integer8,108 -struct UTHashUTHash11,131 - union AI key;key13,147 - union AI key;UTHash::key13,147 - void *data;data14,163 - void *data;UTHash::data14,163 - UT_hash_handle hh;hh15,177 - UT_hash_handle hh;UTHash::hh15,177 -typedef struct UTHash *uthash_t;uthash_t17,201 -#define HASH_FIND_NEXT(HASH_FIND_NEXT22,289 -#define HASH_FIND_AI(HASH_FIND_AI40,1518 -#define HASH_ADD_AI(HASH_ADD_AI42,1617 -#define HASH_FIND_NEXT_AI(HASH_FIND_NEXT_AI44,1710 - -packages/udi/uthash.h,8330 -#define UTHASH_H UTHASH_H25,1157 -#define DECLTYPE(DECLTYPE37,1700 -#define NO_DECLTYPENO_DECLTYPE39,1802 -#define DECLTYPE(DECLTYPE40,1822 -#define DECLTYPE(DECLTYPE43,1908 -#define DECLTYPE_ASSIGN(DECLTYPE_ASSIGN47,1969 -#define DECLTYPE_ASSIGN(DECLTYPE_ASSIGN53,2319 -typedef unsigned int uint32_t;uint32_t61,2681 -typedef unsigned char uint8_t;uint8_t62,2712 -#define UTHASH_VERSION UTHASH_VERSION67,2796 -#define uthash_fatal(uthash_fatal70,2847 -#define uthash_malloc(uthash_malloc73,2956 -#define uthash_free(uthash_free76,3063 -#define uthash_noexpand_fyi(uthash_noexpand_fyi80,3179 -#define uthash_expand_fyi(uthash_expand_fyi83,3292 -#define HASH_INITIAL_NUM_BUCKETS HASH_INITIAL_NUM_BUCKETS87,3412 -#define HASH_INITIAL_NUM_BUCKETS_LOG2 HASH_INITIAL_NUM_BUCKETS_LOG288,3492 -#define HASH_BKT_CAPACITY_THRESH HASH_BKT_CAPACITY_THRESH89,3572 -#define ELMT_FROM_HH(ELMT_FROM_HH92,3714 -#define HASH_FIND(HASH_FIND94,3786 -#define HASH_BLOOM_BITLEN HASH_BLOOM_BITLEN108,4730 -#define HASH_BLOOM_BYTELEN HASH_BLOOM_BYTELEN109,4777 -#define HASH_BLOOM_MAKE(HASH_BLOOM_MAKE110,4858 -#define HASH_BLOOM_FREE(HASH_BLOOM_FREE119,5453 -#define HASH_BLOOM_BITSET(HASH_BLOOM_BITSET124,5716 -#define HASH_BLOOM_BITTEST(HASH_BLOOM_BITTEST125,5785 -#define HASH_BLOOM_ADD(HASH_BLOOM_ADD127,5855 -#define HASH_BLOOM_TEST(HASH_BLOOM_TEST130,6032 -#define HASH_BLOOM_MAKE(HASH_BLOOM_MAKE134,6216 -#define HASH_BLOOM_FREE(HASH_BLOOM_FREE135,6246 -#define HASH_BLOOM_ADD(HASH_BLOOM_ADD136,6276 -#define HASH_BLOOM_TEST(HASH_BLOOM_TEST137,6311 -#define HASH_MAKE_TABLE(HASH_MAKE_TABLE140,6358 -#define HASH_ADD(HASH_ADD159,7781 -#define HASH_ADD_KEYPTR(HASH_ADD_KEYPTR162,7933 -#define HASH_TO_BKT(HASH_TO_BKT187,9864 -#define HASH_DELETE(HASH_DELETE204,10801 -#define HASH_FIND_STR(HASH_FIND_STR241,13609 -#define HASH_ADD_STR(HASH_ADD_STR243,13743 -#define HASH_FIND_INT(HASH_FIND_INT245,13883 -#define HASH_ADD_INT(HASH_ADD_INT247,14013 -#define HASH_FIND_PTR(HASH_FIND_PTR249,14143 -#define HASH_ADD_PTR(HASH_ADD_PTR251,14276 -#define HASH_DEL(HASH_DEL253,14409 -#define HASH_OOPS(HASH_OOPS260,14714 -#define HASH_FSCK(HASH_FSCK261,14793 -#define HASH_FSCK(HASH_FSCK313,18961 -#define HASH_EMIT_KEY(HASH_EMIT_KEY320,19248 -#define HASH_EMIT_KEY(HASH_EMIT_KEY327,19682 -#define HASH_FCN HASH_FCN332,19857 -#define HASH_FCN HASH_FCN334,19894 -#define HASH_BER(HASH_BER338,19990 -#define HASH_SAX(HASH_SAX350,20732 -#define HASH_FNV(HASH_FNV360,21409 -#define HASH_OAT(HASH_OAT370,22087 -#define HASH_JEN_MIX(HASH_JEN_MIX386,23261 -#define HASH_JEN(HASH_JEN399,24187 -#undef get16bitsget16bits441,27481 -#define get16bits(get16bits444,27654 -#define get16bits(get16bits448,27736 -#define HASH_SFH(HASH_SFH451,27890 -#define MUR_GETBLOCK(MUR_GETBLOCK506,31934 -#define MUR_PLUS0_ALIGNED(MUR_PLUS0_ALIGNED508,31987 -#define MUR_PLUS1_ALIGNED(MUR_PLUS1_ALIGNED509,32048 -#define MUR_PLUS2_ALIGNED(MUR_PLUS2_ALIGNED510,32109 -#define MUR_PLUS3_ALIGNED(MUR_PLUS3_ALIGNED511,32170 -#define WP(WP512,32231 -#define MUR_THREE_ONE(MUR_THREE_ONE514,32376 -#define MUR_TWO_TWO(MUR_TWO_TWO515,32468 -#define MUR_ONE_THREE(MUR_ONE_THREE516,32560 -#define MUR_THREE_ONE(MUR_THREE_ONE518,32695 -#define MUR_TWO_TWO(MUR_TWO_TWO519,32787 -#define MUR_ONE_THREE(MUR_ONE_THREE520,32879 -#define MUR_GETBLOCK(MUR_GETBLOCK522,32978 -#define MUR_ROTL32(MUR_ROTL32527,33278 -#define MUR_FMIX(MUR_FMIX528,33339 -#define HASH_MUR(HASH_MUR537,33512 -#define HASH_KEYCMP(HASH_KEYCMP577,36256 -#define HASH_FIND_IN_BKT(HASH_FIND_IN_BKT580,36367 -#define HASH_ADD_TO_BKT(HASH_ADD_TO_BKT594,37331 -#define HASH_DEL_IN_BKT(HASH_DEL_IN_BKT608,38297 -#define HASH_EXPAND_BUCKETS(HASH_EXPAND_BUCKETS649,40647 -#define HASH_SORT(HASH_SORT701,44681 -#define HASH_SRT(HASH_SRT702,44737 -#define HASH_SELECT(HASH_SELECT786,51453 -#define HASH_CLEAR(HASH_CLEAR824,54454 -#define HASH_ITER(HASH_ITER836,55232 -#define HASH_ITER(HASH_ITER840,55478 -#define HASH_COUNT(HASH_COUNT846,55758 -#define HASH_CNT(HASH_CNT847,55802 -typedef struct UT_hash_bucket {UT_hash_bucket849,55868 - struct UT_hash_handle *hh_head;hh_head850,55900 - struct UT_hash_handle *hh_head;UT_hash_bucket::hh_head850,55900 - unsigned count;count851,55935 - unsigned count;UT_hash_bucket::count851,55935 - unsigned expand_mult;expand_mult865,56796 - unsigned expand_mult;UT_hash_bucket::expand_mult865,56796 -} UT_hash_bucket;UT_hash_bucket867,56822 -#define HASH_SIGNATURE HASH_SIGNATURE870,56915 -#define HASH_BLOOM_SIGNATURE HASH_BLOOM_SIGNATURE871,56949 -typedef struct UT_hash_table {UT_hash_table873,56990 - UT_hash_bucket *buckets;buckets874,57021 - UT_hash_bucket *buckets;UT_hash_table::buckets874,57021 - unsigned num_buckets, log2_num_buckets;num_buckets875,57049 - unsigned num_buckets, log2_num_buckets;UT_hash_table::num_buckets875,57049 - unsigned num_buckets, log2_num_buckets;log2_num_buckets875,57049 - unsigned num_buckets, log2_num_buckets;UT_hash_table::log2_num_buckets875,57049 - unsigned num_items;num_items876,57092 - unsigned num_items;UT_hash_table::num_items876,57092 - struct UT_hash_handle *tail; /* tail hh in app order, for fast append */tail877,57115 - struct UT_hash_handle *tail; /* tail hh in app order, for fast append */UT_hash_table::tail877,57115 - ptrdiff_t hho; /* hash handle offset (byte pos of hash handle in element */hho878,57194 - ptrdiff_t hho; /* hash handle offset (byte pos of hash handle in element */UT_hash_table::hho878,57194 - unsigned ideal_chain_maxlen;ideal_chain_maxlen882,57430 - unsigned ideal_chain_maxlen;UT_hash_table::ideal_chain_maxlen882,57430 - unsigned nonideal_items;nonideal_items887,57702 - unsigned nonideal_items;UT_hash_table::nonideal_items887,57702 - unsigned ineff_expands, noexpand;ineff_expands895,58180 - unsigned ineff_expands, noexpand;UT_hash_table::ineff_expands895,58180 - unsigned ineff_expands, noexpand;noexpand895,58180 - unsigned ineff_expands, noexpand;UT_hash_table::noexpand895,58180 - uint32_t signature; /* used only to find hash tables in external analysis */signature897,58218 - uint32_t signature; /* used only to find hash tables in external analysis */UT_hash_table::signature897,58218 - uint32_t bloom_sig; /* used only to test bloom exists in external analysis */bloom_sig899,58316 - uint32_t bloom_sig; /* used only to test bloom exists in external analysis */UT_hash_table::bloom_sig899,58316 - uint8_t *bloom_bv;bloom_bv900,58397 - uint8_t *bloom_bv;UT_hash_table::bloom_bv900,58397 - char bloom_nbits;bloom_nbits901,58419 - char bloom_nbits;UT_hash_table::bloom_nbits901,58419 -} UT_hash_table;UT_hash_table904,58448 -typedef struct UT_hash_handle {UT_hash_handle906,58466 - struct UT_hash_table *tbl;tbl907,58498 - struct UT_hash_table *tbl;UT_hash_handle::tbl907,58498 - void *prev; /* prev element in app order */prev908,58528 - void *prev; /* prev element in app order */UT_hash_handle::prev908,58528 - void *next; /* next element in app order */next909,58602 - void *next; /* next element in app order */UT_hash_handle::next909,58602 - struct UT_hash_handle *hh_prev; /* previous hh in bucket order */hh_prev910,58676 - struct UT_hash_handle *hh_prev; /* previous hh in bucket order */UT_hash_handle::hh_prev910,58676 - struct UT_hash_handle *hh_next; /* next hh in bucket order */hh_next911,58750 - struct UT_hash_handle *hh_next; /* next hh in bucket order */UT_hash_handle::hh_next911,58750 - void *key; /* ptr to enclosing struct's key */key912,58824 - void *key; /* ptr to enclosing struct's key */UT_hash_handle::key912,58824 - unsigned keylen; /* enclosing struct's key len */keylen913,58898 - unsigned keylen; /* enclosing struct's key len */UT_hash_handle::keylen913,58898 - unsigned hashv; /* result of hash-fcn(key) */hashv914,58972 - unsigned hashv; /* result of hash-fcn(key) */UT_hash_handle::hashv914,58972 -} UT_hash_handle;UT_hash_handle915,59046 - -packages/utf8proc/Makefile,0 - -packages/xml/xml.iso.pl,1108 -xml_exception( Message, Document, Culprit, Path ) :- xml_exception44,1635 -xml_exception( Message, Document, Culprit, Path ) :- xml_exception44,1635 -xml_exception( Message, Document, Culprit, Path ) :- xml_exception44,1635 -append( [], L, L ). append50,1818 -append( [], L, L ). append50,1818 -append( [H|T0], L, [H|T1] ) :- append51,1840 -append( [H|T0], L, [H|T1] ) :- append51,1840 -append( [H|T0], L, [H|T1] ) :- append51,1840 -member( H, [H|_] ). member58,1993 -member( H, [H|_] ). member58,1993 -member( H, [_|T] ):- member59,2015 -member( H, [_|T] ):- member59,2015 -member( H, [_|T] ):- member59,2015 -select( H, [H|T], T ). select65,2171 -select( H, [H|T], T ). select65,2171 -select( Element, [H|T0], [H|T1] ):- select66,2196 -select( Element, [H|T0], [H|T1] ):- select66,2196 -select( Element, [H|T0], [H|T1] ):- select66,2196 -is_list( List ) :- is_list73,2353 -is_list( List ) :- is_list73,2353 -is_list( List ) :- is_list73,2353 -is_list1( [] ). is_list177,2417 -is_list1( [] ). is_list177,2417 -is_list1( [_|_] ). is_list178,2435 -is_list1( [_|_] ). is_list178,2435 - -packages/xml/xml.lpa.pl,1024 -atom_codes( Atom, Codes ) :- atom_codes39,1475 -atom_codes( Atom, Codes ) :- atom_codes39,1475 -atom_codes( Atom, Codes ) :- atom_codes39,1475 -number_codes( Number, Codes ) :- number_codes52,1855 -number_codes( Number, Codes ) :- number_codes52,1855 -number_codes( Number, Codes ) :- number_codes52,1855 -xml_exception( Message, Document, Culprit, Path ) :- xml_exception64,2414 -xml_exception( Message, Document, Culprit, Path ) :- xml_exception64,2414 -xml_exception( Message, Document, Culprit, Path ) :- xml_exception64,2414 -select( H, [H|T], T ). select70,2641 -select( H, [H|T], T ). select70,2641 -select( Element, [H|T0], [H|T1] ):- select71,2666 -select( Element, [H|T0], [H|T1] ):- select71,2666 -select( Element, [H|T0], [H|T1] ):- select71,2666 -is_list( List ) :- is_list84,2959 -is_list( List ) :- is_list84,2959 -is_list( List ) :- is_list84,2959 -is_list1( [] ). is_list188,3023 -is_list1( [] ). is_list188,3023 -is_list1( [_|_] ). is_list189,3041 -is_list1( [_|_] ). is_list189,3041 - -packages/xml/xml.pl,884 -xml_exception( Message, Document, Culprit, Path ) :-xml_exception64,2031 -xml_exception( Message, Document, Culprit, Path ) :-xml_exception64,2031 -xml_exception( Message, Document, Culprit, Path ) :-xml_exception64,2031 -load_xml(File, XML, []) :-load_xml70,2218 -load_xml(File, XML, []) :-load_xml70,2218 -load_xml(File, XML, []) :-load_xml70,2218 -load_xml(File, XML) :-load_xml76,2351 -load_xml(File, XML) :-load_xml76,2351 -load_xml(File, XML) :-load_xml76,2351 -member( H, [H|_] ).member85,2557 -member( H, [H|_] ).member85,2557 -member( H, [_|T] ):-member86,2578 -member( H, [_|T] ):-member86,2578 -member( H, [_|T] ):-member86,2578 -select( H, [H|T], T ).select92,2728 -select( H, [H|T], T ).select92,2728 -select( Element, [H|T0], [H|T1] ):-select93,2752 -select( Element, [H|T0], [H|T1] ):-select93,2752 -select( Element, [H|T0], [H|T1] ):-select93,2752 - -packages/xml/xml_acquisition.pl,36108 -xml_to_document( Controls, XML, Document ) :-xml_to_document27,753 -xml_to_document( Controls, XML, Document ) :-xml_to_document27,753 -xml_to_document( Controls, XML, Document ) :-xml_to_document27,753 -xml_to_document1( true, Attributes, Terms, xml(Attributes, Terms) ).xml_to_document138,1097 -xml_to_document1( true, Attributes, Terms, xml(Attributes, Terms) ).xml_to_document138,1097 -xml_to_document1( false, Attributes, Terms, malformed(Attributes, Terms) ).xml_to_document139,1168 -xml_to_document1( false, Attributes, Terms, malformed(Attributes, Terms) ).xml_to_document139,1168 -unparsed( Unparsed, _Context, [unparsed(Unparsed)], [], false ).unparsed42,1313 -unparsed( Unparsed, _Context, [unparsed(Unparsed)], [], false ).unparsed42,1313 -xml_declaration( Attributes ) -->xml_declaration44,1381 -xml_declaration( Attributes ) -->xml_declaration44,1381 -xml_declaration( Attributes ) -->xml_declaration44,1381 -xml_to_document( [], Context, Terms, [], WF ) :-xml_to_document52,1516 -xml_to_document( [], Context, Terms, [], WF ) :-xml_to_document52,1516 -xml_to_document( [], Context, Terms, [], WF ) :-xml_to_document52,1516 -xml_to_document( [Char|Chars], Context, Terms, Residue, WF ) :-xml_to_document54,1605 -xml_to_document( [Char|Chars], Context, Terms, Residue, WF ) :-xml_to_document54,1605 -xml_to_document( [Char|Chars], Context, Terms, Residue, WF ) :-xml_to_document54,1605 -layouts( [], Context, _Plus, _Minus, Terms, [], WF ) :-layouts69,2167 -layouts( [], Context, _Plus, _Minus, Terms, [], WF ) :-layouts69,2167 -layouts( [], Context, _Plus, _Minus, Terms, [], WF ) :-layouts69,2167 -layouts( [Char|Chars], Context, Plus, Minus, Terms, Residue, WF ) :-layouts71,2263 -layouts( [Char|Chars], Context, Plus, Minus, Terms, Residue, WF ) :-layouts71,2263 -layouts( [Char|Chars], Context, Plus, Minus, Terms, Residue, WF ) :-layouts71,2263 -acquire_pcdata( [], Context, [], Terms, [], WF ) :-acquire_pcdata88,2917 -acquire_pcdata( [], Context, [], Terms, [], WF ) :-acquire_pcdata88,2917 -acquire_pcdata( [], Context, [], Terms, [], WF ) :-acquire_pcdata88,2917 -acquire_pcdata( [Char|Chars], Context, Chars1, Terms, Residue, WF ) :-acquire_pcdata90,3009 -acquire_pcdata( [Char|Chars], Context, Chars1, Terms, Residue, WF ) :-acquire_pcdata90,3009 -acquire_pcdata( [Char|Chars], Context, Chars1, Terms, Residue, WF ) :-acquire_pcdata90,3009 -xml_markup_structure( [], Context, Terms, Residue, WF ) :-xml_markup_structure101,3383 -xml_markup_structure( [], Context, Terms, Residue, WF ) :-xml_markup_structure101,3383 -xml_markup_structure( [], Context, Terms, Residue, WF ) :-xml_markup_structure101,3383 -xml_markup_structure( Chars, Context, Terms, Residue, WF ) :-xml_markup_structure103,3491 -xml_markup_structure( Chars, Context, Terms, Residue, WF ) :-xml_markup_structure103,3491 -xml_markup_structure( Chars, Context, Terms, Residue, WF ) :-xml_markup_structure103,3491 -push_tag( Tag, Chars, Context, Attributes, Type, Terms, Residue, WF ) :-push_tag117,4034 -push_tag( Tag, Chars, Context, Attributes, Type, Terms, Residue, WF ) :-push_tag117,4034 -push_tag( Tag, Chars, Context, Attributes, Type, Terms, Residue, WF ) :-push_tag117,4034 -push_tag1( true, Context, Term, Chars, [Term|Terms], Residue, WF ) :-push_tag1121,4242 -push_tag1( true, Context, Term, Chars, [Term|Terms], Residue, WF ) :-push_tag1121,4242 -push_tag1( true, Context, Term, Chars, [Term|Terms], Residue, WF ) :-push_tag1121,4242 -push_tag1( false, _Context, Term, Chars, [Term], Chars, false ).push_tag1123,4370 -push_tag1( false, _Context, Term, Chars, [Term], Chars, false ).push_tag1123,4370 -new_element( TagChars, Chars, Context, Attributes0, Type, Term, Residue, WF ) :-new_element125,4438 -new_element( TagChars, Chars, Context, Attributes0, Type, Term, Residue, WF ) :-new_element125,4438 -new_element( TagChars, Chars, Context, Attributes0, Type, Term, Residue, WF ) :-new_element125,4438 -close_tag( empty, Residue, _Context, [], Residue, true ).close_tag149,5348 -close_tag( empty, Residue, _Context, [], Residue, true ).close_tag149,5348 -close_tag( push(Tag), Chars, Context0, Contents, Residue, WF ) :-close_tag150,5407 -close_tag( push(Tag), Chars, Context0, Contents, Residue, WF ) :-close_tag150,5407 -close_tag( push(Tag), Chars, Context0, Contents, Residue, WF ) :-close_tag150,5407 -pi_acquisition( Chars, Context, Terms, Residue, WellFormed ) :-pi_acquisition154,5591 -pi_acquisition( Chars, Context, Terms, Residue, WellFormed ) :-pi_acquisition154,5591 -pi_acquisition( Chars, Context, Terms, Residue, WellFormed ) :-pi_acquisition154,5591 -declaration_acquisition( Chars, Context, Terms, Residue, WF ) :-declaration_acquisition163,5947 -declaration_acquisition( Chars, Context, Terms, Residue, WF ) :-declaration_acquisition163,5947 -declaration_acquisition( Chars, Context, Terms, Residue, WF ) :-declaration_acquisition163,5947 -open_tag( Tag, Namespaces, Attributes, Termination ) -->open_tag172,6298 -open_tag( Tag, Namespaces, Attributes, Termination ) -->open_tag172,6298 -open_tag( Tag, Namespaces, Attributes, Termination ) -->open_tag172,6298 -open_tag_terminator( Tag, push(Tag) ) -->open_tag_terminator178,6479 -open_tag_terminator( Tag, push(Tag) ) -->open_tag_terminator178,6479 -open_tag_terminator( Tag, push(Tag) ) -->open_tag_terminator178,6479 -open_tag_terminator( _Tag, empty ) -->open_tag_terminator180,6529 -open_tag_terminator( _Tag, empty ) -->open_tag_terminator180,6529 -open_tag_terminator( _Tag, empty ) -->open_tag_terminator180,6529 -declaration_parse( comment, Namespaces, comment(Comment), Namespaces ) -->declaration_parse183,6579 -declaration_parse( comment, Namespaces, comment(Comment), Namespaces ) -->declaration_parse183,6579 -declaration_parse( comment, Namespaces, comment(Comment), Namespaces ) -->declaration_parse183,6579 -declaration_parse( cdata, Namespaces, cdata(CData), Namespaces ) -->declaration_parse185,6675 -declaration_parse( cdata, Namespaces, cdata(CData), Namespaces ) -->declaration_parse185,6675 -declaration_parse( cdata, Namespaces, cdata(CData), Namespaces ) -->declaration_parse185,6675 -declaration_parse( doctype, Namespaces0, doctype(Name, Names), Namespaces ) -->declaration_parse187,6763 -declaration_parse( doctype, Namespaces0, doctype(Name, Names), Namespaces ) -->declaration_parse187,6763 -declaration_parse( doctype, Namespaces0, doctype(Name, Names), Namespaces ) -->declaration_parse187,6763 -inline_instruction( Target, Processing, Plus, Minus ) :-inline_instruction192,6914 -inline_instruction( Target, Processing, Plus, Minus ) :-inline_instruction192,6914 -inline_instruction( Target, Processing, Plus, Minus ) :-inline_instruction192,6914 -entity_reference_name( Reference ) -->entity_reference_name198,7083 -entity_reference_name( Reference ) -->entity_reference_name198,7083 -entity_reference_name( Reference ) -->entity_reference_name198,7083 -declaration_type( [Char1,Char2|Chars1], Class, Rest ) :-declaration_type202,7162 -declaration_type( [Char1,Char2|Chars1], Class, Rest ) :-declaration_type202,7162 -declaration_type( [Char1,Char2|Chars1], Class, Rest ) :-declaration_type202,7162 -declaration_type1( 0'-, 0'-, Chars, comment, Chars ).declaration_type1212,7415 -declaration_type1( 0'-, 0'-, Chars, comment, Chars ).declaration_type1212,7415 -declaration_type1( 0'[, 0'C, Chars, cdata, Residue ) :-declaration_type1213,7470 -declaration_type1( 0'[, 0'C, Chars, cdata, Residue ) :-declaration_type1213,7470 -declaration_type1( 0'[, 0'C, Chars, cdata, Residue ) :-declaration_type1213,7470 -declaration_type1( 0'D, 0'O, Chars, doctype, Residue ) :-declaration_type1215,7564 -declaration_type1( 0'D, 0'O, Chars, doctype, Residue ) :-declaration_type1215,7564 -declaration_type1( 0'D, 0'O, Chars, doctype, Residue ) :-declaration_type1215,7564 -closing_tag( Context, Chars, Terms, Residue, WellFormed ) :-closing_tag218,7662 -closing_tag( Context, Chars, Terms, Residue, WellFormed ) :-closing_tag218,7662 -closing_tag( Context, Chars, Terms, Residue, WellFormed ) :-closing_tag218,7662 -closing_tag_name( Tag ) -->closing_tag_name228,7948 -closing_tag_name( Tag ) -->closing_tag_name228,7948 -closing_tag_name( Tag ) -->closing_tag_name228,7948 -entity_reference( Chars, Context, Terms, Residue, WF ) :-entity_reference233,8020 -entity_reference( Chars, Context, Terms, Residue, WF ) :-entity_reference233,8020 -entity_reference( Chars, Context, Terms, Residue, WF ) :-entity_reference233,8020 -reference_in_layout( Chars, Context, Plus, Minus, Terms, Residue, WF ) :-reference_in_layout236,8148 -reference_in_layout( Chars, Context, Plus, Minus, Terms, Residue, WF ) :-reference_in_layout236,8148 -reference_in_layout( Chars, Context, Plus, Minus, Terms, Residue, WF ) :-reference_in_layout236,8148 -reference_in_pcdata( Chars0, Context, Chars1, Terms, Residue, WF ) :-reference_in_pcdata253,8839 -reference_in_pcdata( Chars0, Context, Chars1, Terms, Residue, WF ) :-reference_in_pcdata253,8839 -reference_in_pcdata( Chars0, Context, Chars1, Terms, Residue, WF ) :-reference_in_pcdata253,8839 -namespace_attributes( [], Context, Context, [] ).namespace_attributes269,9479 -namespace_attributes( [], Context, Context, [] ).namespace_attributes269,9479 -namespace_attributes( Attributes0, Context0, Context, Attributes ) :-namespace_attributes270,9530 -namespace_attributes( Attributes0, Context0, Context, Attributes ) :-namespace_attributes270,9530 -namespace_attributes( Attributes0, Context0, Context, Attributes ) :-namespace_attributes270,9530 -input_attributes( [], _Context, [] ).input_attributes290,10412 -input_attributes( [], _Context, [] ).input_attributes290,10412 -attributes( [Name=Value|Attributes], Seen, Namespaces ) -->attributes304,10913 -attributes( [Name=Value|Attributes], Seen, Namespaces ) -->attributes304,10913 -attributes( [Name=Value|Attributes], Seen, Namespaces ) -->attributes304,10913 -attributes( [], _Seen, _Namespaces ) --> "".attributes313,11156 -attributes( [], _Seen, _Namespaces ) --> "".attributes313,11156 -attributes( [], _Seen, _Namespaces ) --> "".attributes313,11156 -xml_declaration_attributes( [] ) --> "".xml_declaration_attributes315,11204 -xml_declaration_attributes( [] ) --> "".xml_declaration_attributes315,11204 -xml_declaration_attributes( [] ) --> "".xml_declaration_attributes315,11204 -xml_declaration_attributes( [Name=S|Attributes] ) -->xml_declaration_attributes316,11246 -xml_declaration_attributes( [Name=S|Attributes] ) -->xml_declaration_attributes316,11246 -xml_declaration_attributes( [Name=S|Attributes] ) -->xml_declaration_attributes316,11246 -doctype( Name, External, Namespaces0, Namespaces1 ) -->doctype328,11528 -doctype( Name, External, Namespaces0, Namespaces1 ) -->doctype328,11528 -doctype( Name, External, Namespaces0, Namespaces1 ) -->doctype328,11528 -doctype_extension( [], External, External ).doctype_extension337,11767 -doctype_extension( [], External, External ).doctype_extension337,11767 -doctype_extension( [Literal|Literals], External0, External ) :-doctype_extension338,11813 -doctype_extension( [Literal|Literals], External0, External ) :-doctype_extension338,11813 -doctype_extension( [Literal|Literals], External0, External ) :-doctype_extension338,11813 -extended_doctype( system(URL), Literals, system(URL,Literals) ).extended_doctype341,11943 -extended_doctype( system(URL), Literals, system(URL,Literals) ).extended_doctype341,11943 -extended_doctype( public(URN,URL), Literals, public(URN,URL,Literals) ).extended_doctype342,12009 -extended_doctype( public(URN,URL), Literals, public(URN,URL,Literals) ).extended_doctype342,12009 -extended_doctype( local, Literals, local(Literals) ).extended_doctype343,12083 -extended_doctype( local, Literals, local(Literals) ).extended_doctype343,12083 -doctype1( Namespaces0, Literals, Namespaces1 ) -->doctype1345,12140 -doctype1( Namespaces0, Literals, Namespaces1 ) -->doctype1345,12140 -doctype1( Namespaces0, Literals, Namespaces1 ) -->doctype1345,12140 -doctype1( Namespaces, [], Namespaces ) --> "".doctype1350,12256 -doctype1( Namespaces, [], Namespaces ) --> "".doctype1350,12256 -doctype1( Namespaces, [], Namespaces ) --> "".doctype1350,12256 -doctype_id( system(URL) ) -->doctype_id352,12306 -doctype_id( system(URL) ) -->doctype_id352,12306 -doctype_id( system(URL) ) -->doctype_id352,12306 -doctype_id( public(URN,URL) ) -->doctype_id356,12373 -doctype_id( public(URN,URL) ) -->doctype_id356,12373 -doctype_id( public(URN,URL) ) -->doctype_id356,12373 -doctype_id( local ) --> "".doctype_id362,12468 -doctype_id( local ) --> "".doctype_id362,12468 -doctype_id( local ) --> "".doctype_id362,12468 -dtd( Namespaces0, Literals, Namespaces1 ) -->dtd364,12499 -dtd( Namespaces0, Literals, Namespaces1 ) -->dtd364,12499 -dtd( Namespaces0, Literals, Namespaces1 ) -->dtd364,12499 -dtd( Namespaces0, Literals, Namespaces1 ) -->dtd382,12990 -dtd( Namespaces0, Literals, Namespaces1 ) -->dtd382,12990 -dtd( Namespaces0, Literals, Namespaces1 ) -->dtd382,12990 -dtd( Namespaces0, [dtd_literal(Literal)|Literals], Namespaces1 ) -->dtd389,13129 -dtd( Namespaces0, [dtd_literal(Literal)|Literals], Namespaces1 ) -->dtd389,13129 -dtd( Namespaces0, [dtd_literal(Literal)|Literals], Namespaces1 ) -->dtd389,13129 -dtd( Namespaces, [], Namespaces ) --> spaces.dtd395,13293 -dtd( Namespaces, [], Namespaces ) --> spaces.dtd395,13293 -dtd( Namespaces, [], Namespaces ) --> spaces.dtd395,13293 -dtd_literal( [] ) --> ">", !.dtd_literal397,13342 -dtd_literal( [] ) --> ">", !.dtd_literal397,13342 -dtd_literal( [] ) --> ">", !.dtd_literal397,13342 -dtd_literal( Chars ) -->dtd_literal398,13373 -dtd_literal( Chars ) -->dtd_literal398,13373 -dtd_literal( Chars ) -->dtd_literal398,13373 -dtd_literal( [Char|Chars] ) -->dtd_literal403,13451 -dtd_literal( [Char|Chars] ) -->dtd_literal403,13451 -dtd_literal( [Char|Chars] ) -->dtd_literal403,13451 -dtd_comment( Plus, Minus ) :-dtd_comment407,13520 -dtd_comment( Plus, Minus ) :-dtd_comment407,13520 -dtd_comment( Plus, Minus ) :-dtd_comment407,13520 -nmtokens( [Name|Names] ) -->nmtokens411,13601 -nmtokens( [Name|Names] ) -->nmtokens411,13601 -nmtokens( [Name|Names] ) -->nmtokens411,13601 -nmtokens( [] ) --> [].nmtokens415,13681 -nmtokens( [] ) --> [].nmtokens415,13681 -nmtokens( [] ) --> [].nmtokens415,13681 -entity_value( Quote, Namespaces, String, [Char|Plus], Minus ) :-entity_value417,13707 -entity_value( Quote, Namespaces, String, [Char|Plus], Minus ) :-entity_value417,13707 -entity_value( Quote, Namespaces, String, [Char|Plus], Minus ) :-entity_value417,13707 -attribute_value( String, Namespaces ) -->attribute_value428,14022 -attribute_value( String, Namespaces ) -->attribute_value428,14022 -attribute_value( String, Namespaces ) -->attribute_value428,14022 -attribute_leading_layouts( _Quote, _Namespace, [], [], [] ).attribute_leading_layouts432,14143 -attribute_leading_layouts( _Quote, _Namespace, [], [], [] ).attribute_leading_layouts432,14143 -attribute_leading_layouts( Quote, Namespaces, String, [Char|Plus], Minus ) :-attribute_leading_layouts433,14205 -attribute_leading_layouts( Quote, Namespaces, String, [Char|Plus], Minus ) :-attribute_leading_layouts433,14205 -attribute_leading_layouts( Quote, Namespaces, String, [Char|Plus], Minus ) :-attribute_leading_layouts433,14205 -attribute_layouts( _Quote, _Namespaces, _Layout, [], [], [] ).attribute_layouts446,14651 -attribute_layouts( _Quote, _Namespaces, _Layout, [], [], [] ).attribute_layouts446,14651 -attribute_layouts( Quote, Namespaces, Layout, String, [Char|Plus], Minus ) :-attribute_layouts447,14715 -attribute_layouts( Quote, Namespaces, Layout, String, [Char|Plus], Minus ) :-attribute_layouts447,14715 -attribute_layouts( Quote, Namespaces, Layout, String, [Char|Plus], Minus ) :-attribute_layouts447,14715 -ref_in_attribute_layout( NS, Quote, String, Plus, Minus ) :-ref_in_attribute_layout464,15244 -ref_in_attribute_layout( NS, Quote, String, Plus, Minus ) :-ref_in_attribute_layout464,15244 -ref_in_attribute_layout( NS, Quote, String, Plus, Minus ) :-ref_in_attribute_layout464,15244 -reference_in_value( Namespaces, Quote, Layout, String, Plus, Minus ) :-reference_in_value477,15777 -reference_in_value( Namespaces, Quote, Layout, String, Plus, Minus ) :-reference_in_value477,15777 -reference_in_value( Namespaces, Quote, Layout, String, Plus, Minus ) :-reference_in_value477,15777 -reference_in_entity( Namespaces, Quote, String, Plus, Minus ) :-reference_in_entity500,16489 -reference_in_entity( Namespaces, Quote, String, Plus, Minus ) :-reference_in_entity500,16489 -reference_in_entity( Namespaces, Quote, String, Plus, Minus ) :-reference_in_entity500,16489 -standard_character_entity( Char ) -->standard_character_entity511,16907 -standard_character_entity( Char ) -->standard_character_entity511,16907 -standard_character_entity( Char ) -->standard_character_entity511,16907 -standard_character_entity( Char ) -->standard_character_entity513,16992 -standard_character_entity( Char ) -->standard_character_entity513,16992 -standard_character_entity( Char ) -->standard_character_entity513,16992 -standard_character_entity( C ) -->standard_character_entity516,17118 -standard_character_entity( C ) -->standard_character_entity516,17118 -standard_character_entity( C ) -->standard_character_entity516,17118 -uri( URI ) -->uri522,17220 -uri( URI ) -->uri522,17220 -uri( URI ) -->uri522,17220 -uri1( Quote, [] ) -->uri1526,17278 -uri1( Quote, [] ) -->uri1526,17278 -uri1( Quote, [] ) -->uri1526,17278 -uri1( Quote, [Char|Chars] ) -->uri1529,17324 -uri1( Quote, [Char|Chars] ) -->uri1529,17324 -uri1( Quote, [Char|Chars] ) -->uri1529,17324 -comment( Chars, Plus, Minus ) :-comment533,17393 -comment( Chars, Plus, Minus ) :-comment533,17393 -comment( Chars, Plus, Minus ) :-comment533,17393 -cdata( Chars, Plus, Minus ) :-cdata537,17483 -cdata( Chars, Plus, Minus ) :-cdata537,17483 -cdata( Chars, Plus, Minus ) :-cdata537,17483 -hex_character_reference( Code ) -->hex_character_reference542,17592 -hex_character_reference( Code ) -->hex_character_reference542,17592 -hex_character_reference( Code ) -->hex_character_reference542,17592 -hex_character_reference1( Current, Code ) -->hex_character_reference1545,17670 -hex_character_reference1( Current, Code ) -->hex_character_reference1545,17670 -hex_character_reference1( Current, Code ) -->hex_character_reference1545,17670 -hex_character_reference1( Code, Code ) --> "".hex_character_reference1550,17825 -hex_character_reference1( Code, Code ) --> "".hex_character_reference1550,17825 -hex_character_reference1( Code, Code ) --> "".hex_character_reference1550,17825 -hex_digit_char( 0 ) --> "0".hex_digit_char552,17875 -hex_digit_char( 0 ) --> "0".hex_digit_char552,17875 -hex_digit_char( 0 ) --> "0".hex_digit_char552,17875 -hex_digit_char( 1 ) --> "1".hex_digit_char553,17905 -hex_digit_char( 1 ) --> "1".hex_digit_char553,17905 -hex_digit_char( 1 ) --> "1".hex_digit_char553,17905 -hex_digit_char( 2 ) --> "2".hex_digit_char554,17935 -hex_digit_char( 2 ) --> "2".hex_digit_char554,17935 -hex_digit_char( 2 ) --> "2".hex_digit_char554,17935 -hex_digit_char( 3 ) --> "3".hex_digit_char555,17965 -hex_digit_char( 3 ) --> "3".hex_digit_char555,17965 -hex_digit_char( 3 ) --> "3".hex_digit_char555,17965 -hex_digit_char( 4 ) --> "4".hex_digit_char556,17995 -hex_digit_char( 4 ) --> "4".hex_digit_char556,17995 -hex_digit_char( 4 ) --> "4".hex_digit_char556,17995 -hex_digit_char( 5 ) --> "5".hex_digit_char557,18025 -hex_digit_char( 5 ) --> "5".hex_digit_char557,18025 -hex_digit_char( 5 ) --> "5".hex_digit_char557,18025 -hex_digit_char( 6 ) --> "6".hex_digit_char558,18055 -hex_digit_char( 6 ) --> "6".hex_digit_char558,18055 -hex_digit_char( 6 ) --> "6".hex_digit_char558,18055 -hex_digit_char( 7 ) --> "7".hex_digit_char559,18085 -hex_digit_char( 7 ) --> "7".hex_digit_char559,18085 -hex_digit_char( 7 ) --> "7".hex_digit_char559,18085 -hex_digit_char( 8 ) --> "8".hex_digit_char560,18115 -hex_digit_char( 8 ) --> "8".hex_digit_char560,18115 -hex_digit_char( 8 ) --> "8".hex_digit_char560,18115 -hex_digit_char( 9 ) --> "9".hex_digit_char561,18145 -hex_digit_char( 9 ) --> "9".hex_digit_char561,18145 -hex_digit_char( 9 ) --> "9".hex_digit_char561,18145 -hex_digit_char( 10 ) --> "A".hex_digit_char562,18175 -hex_digit_char( 10 ) --> "A".hex_digit_char562,18175 -hex_digit_char( 10 ) --> "A".hex_digit_char562,18175 -hex_digit_char( 11 ) --> "B".hex_digit_char563,18206 -hex_digit_char( 11 ) --> "B".hex_digit_char563,18206 -hex_digit_char( 11 ) --> "B".hex_digit_char563,18206 -hex_digit_char( 12 ) --> "C".hex_digit_char564,18237 -hex_digit_char( 12 ) --> "C".hex_digit_char564,18237 -hex_digit_char( 12 ) --> "C".hex_digit_char564,18237 -hex_digit_char( 13 ) --> "D".hex_digit_char565,18268 -hex_digit_char( 13 ) --> "D".hex_digit_char565,18268 -hex_digit_char( 13 ) --> "D".hex_digit_char565,18268 -hex_digit_char( 14 ) --> "E".hex_digit_char566,18299 -hex_digit_char( 14 ) --> "E".hex_digit_char566,18299 -hex_digit_char( 14 ) --> "E".hex_digit_char566,18299 -hex_digit_char( 15 ) --> "F".hex_digit_char567,18330 -hex_digit_char( 15 ) --> "F".hex_digit_char567,18330 -hex_digit_char( 15 ) --> "F".hex_digit_char567,18330 -hex_digit_char( 10 ) --> "a".hex_digit_char568,18361 -hex_digit_char( 10 ) --> "a".hex_digit_char568,18361 -hex_digit_char( 10 ) --> "a".hex_digit_char568,18361 -hex_digit_char( 11 ) --> "b".hex_digit_char569,18392 -hex_digit_char( 11 ) --> "b".hex_digit_char569,18392 -hex_digit_char( 11 ) --> "b".hex_digit_char569,18392 -hex_digit_char( 12 ) --> "c".hex_digit_char570,18423 -hex_digit_char( 12 ) --> "c".hex_digit_char570,18423 -hex_digit_char( 12 ) --> "c".hex_digit_char570,18423 -hex_digit_char( 13 ) --> "d".hex_digit_char571,18454 -hex_digit_char( 13 ) --> "d".hex_digit_char571,18454 -hex_digit_char( 13 ) --> "d".hex_digit_char571,18454 -hex_digit_char( 14 ) --> "e".hex_digit_char572,18485 -hex_digit_char( 14 ) --> "e".hex_digit_char572,18485 -hex_digit_char( 14 ) --> "e".hex_digit_char572,18485 -hex_digit_char( 15 ) --> "f".hex_digit_char573,18516 -hex_digit_char( 15 ) --> "f".hex_digit_char573,18516 -hex_digit_char( 15 ) --> "f".hex_digit_char573,18516 -quote( 0'" ) --> %'quote575,18549 -quote( 0'" ) --> %'quote575,18549 -quote( 0'" ) --> %'quote575,18549 -quote( 0'' ) -->quote577,18578 -quote( 0'' ) -->quote577,18578 -quote( 0'' ) -->quote577,18578 -spaces( [], [] ).spaces580,18605 -spaces( [], [] ).spaces580,18605 -spaces( [Char|Chars0], Chars1 ) :-spaces581,18624 -spaces( [Char|Chars0], Chars1 ) :-spaces581,18624 -spaces( [Char|Chars0], Chars1 ) :-spaces581,18624 -nmtoken( Name ) -->nmtoken588,18756 -nmtoken( Name ) -->nmtoken588,18756 -nmtoken( Name ) -->nmtoken588,18756 -nmtoken_chars( [Char|Chars] ) -->nmtoken_chars592,18834 -nmtoken_chars( [Char|Chars] ) -->nmtoken_chars592,18834 -nmtoken_chars( [Char|Chars] ) -->nmtoken_chars592,18834 -nmtoken_chars_tail( [Char|Chars] ) -->nmtoken_chars_tail597,18939 -nmtoken_chars_tail( [Char|Chars] ) -->nmtoken_chars_tail597,18939 -nmtoken_chars_tail( [Char|Chars] ) -->nmtoken_chars_tail597,18939 -nmtoken_chars_tail([]) --> "".nmtoken_chars_tail602,19049 -nmtoken_chars_tail([]) --> "".nmtoken_chars_tail602,19049 -nmtoken_chars_tail([]) --> "".nmtoken_chars_tail602,19049 -nmtoken_first( 0': ).nmtoken_first604,19083 -nmtoken_first( 0': ).nmtoken_first604,19083 -nmtoken_first( 0'_ ).nmtoken_first605,19106 -nmtoken_first( 0'_ ).nmtoken_first605,19106 -nmtoken_first( Char ) :-nmtoken_first606,19129 -nmtoken_first( Char ) :-nmtoken_first606,19129 -nmtoken_first( Char ) :-nmtoken_first606,19129 -nmtoken_char( 0'a ).nmtoken_char609,19177 -nmtoken_char( 0'a ).nmtoken_char609,19177 -nmtoken_char( 0'b ).nmtoken_char610,19199 -nmtoken_char( 0'b ).nmtoken_char610,19199 -nmtoken_char( 0'c ).nmtoken_char611,19221 -nmtoken_char( 0'c ).nmtoken_char611,19221 -nmtoken_char( 0'd ).nmtoken_char612,19243 -nmtoken_char( 0'd ).nmtoken_char612,19243 -nmtoken_char( 0'e ).nmtoken_char613,19265 -nmtoken_char( 0'e ).nmtoken_char613,19265 -nmtoken_char( 0'f ).nmtoken_char614,19287 -nmtoken_char( 0'f ).nmtoken_char614,19287 -nmtoken_char( 0'g ).nmtoken_char615,19309 -nmtoken_char( 0'g ).nmtoken_char615,19309 -nmtoken_char( 0'h ).nmtoken_char616,19331 -nmtoken_char( 0'h ).nmtoken_char616,19331 -nmtoken_char( 0'i ).nmtoken_char617,19353 -nmtoken_char( 0'i ).nmtoken_char617,19353 -nmtoken_char( 0'j ).nmtoken_char618,19375 -nmtoken_char( 0'j ).nmtoken_char618,19375 -nmtoken_char( 0'k ).nmtoken_char619,19397 -nmtoken_char( 0'k ).nmtoken_char619,19397 -nmtoken_char( 0'l ).nmtoken_char620,19419 -nmtoken_char( 0'l ).nmtoken_char620,19419 -nmtoken_char( 0'm ).nmtoken_char621,19441 -nmtoken_char( 0'm ).nmtoken_char621,19441 -nmtoken_char( 0'n ).nmtoken_char622,19463 -nmtoken_char( 0'n ).nmtoken_char622,19463 -nmtoken_char( 0'o ).nmtoken_char623,19485 -nmtoken_char( 0'o ).nmtoken_char623,19485 -nmtoken_char( 0'p ).nmtoken_char624,19507 -nmtoken_char( 0'p ).nmtoken_char624,19507 -nmtoken_char( 0'q ).nmtoken_char625,19529 -nmtoken_char( 0'q ).nmtoken_char625,19529 -nmtoken_char( 0'r ).nmtoken_char626,19551 -nmtoken_char( 0'r ).nmtoken_char626,19551 -nmtoken_char( 0's ).nmtoken_char627,19573 -nmtoken_char( 0's ).nmtoken_char627,19573 -nmtoken_char( 0't ).nmtoken_char628,19595 -nmtoken_char( 0't ).nmtoken_char628,19595 -nmtoken_char( 0'u ).nmtoken_char629,19617 -nmtoken_char( 0'u ).nmtoken_char629,19617 -nmtoken_char( 0'v ).nmtoken_char630,19639 -nmtoken_char( 0'v ).nmtoken_char630,19639 -nmtoken_char( 0'w ).nmtoken_char631,19661 -nmtoken_char( 0'w ).nmtoken_char631,19661 -nmtoken_char( 0'x ).nmtoken_char632,19683 -nmtoken_char( 0'x ).nmtoken_char632,19683 -nmtoken_char( 0'y ).nmtoken_char633,19705 -nmtoken_char( 0'y ).nmtoken_char633,19705 -nmtoken_char( 0'z ).nmtoken_char634,19727 -nmtoken_char( 0'z ).nmtoken_char634,19727 -nmtoken_char( 0'A ).nmtoken_char635,19749 -nmtoken_char( 0'A ).nmtoken_char635,19749 -nmtoken_char( 0'B ).nmtoken_char636,19771 -nmtoken_char( 0'B ).nmtoken_char636,19771 -nmtoken_char( 0'C ).nmtoken_char637,19793 -nmtoken_char( 0'C ).nmtoken_char637,19793 -nmtoken_char( 0'D ).nmtoken_char638,19815 -nmtoken_char( 0'D ).nmtoken_char638,19815 -nmtoken_char( 0'E ).nmtoken_char639,19837 -nmtoken_char( 0'E ).nmtoken_char639,19837 -nmtoken_char( 0'F ).nmtoken_char640,19859 -nmtoken_char( 0'F ).nmtoken_char640,19859 -nmtoken_char( 0'G ).nmtoken_char641,19881 -nmtoken_char( 0'G ).nmtoken_char641,19881 -nmtoken_char( 0'H ).nmtoken_char642,19903 -nmtoken_char( 0'H ).nmtoken_char642,19903 -nmtoken_char( 0'I ).nmtoken_char643,19925 -nmtoken_char( 0'I ).nmtoken_char643,19925 -nmtoken_char( 0'J ).nmtoken_char644,19947 -nmtoken_char( 0'J ).nmtoken_char644,19947 -nmtoken_char( 0'K ).nmtoken_char645,19969 -nmtoken_char( 0'K ).nmtoken_char645,19969 -nmtoken_char( 0'L ).nmtoken_char646,19991 -nmtoken_char( 0'L ).nmtoken_char646,19991 -nmtoken_char( 0'M ).nmtoken_char647,20013 -nmtoken_char( 0'M ).nmtoken_char647,20013 -nmtoken_char( 0'N ).nmtoken_char648,20035 -nmtoken_char( 0'N ).nmtoken_char648,20035 -nmtoken_char( 0'O ).nmtoken_char649,20057 -nmtoken_char( 0'O ).nmtoken_char649,20057 -nmtoken_char( 0'P ).nmtoken_char650,20079 -nmtoken_char( 0'P ).nmtoken_char650,20079 -nmtoken_char( 0'Q ).nmtoken_char651,20101 -nmtoken_char( 0'Q ).nmtoken_char651,20101 -nmtoken_char( 0'R ).nmtoken_char652,20123 -nmtoken_char( 0'R ).nmtoken_char652,20123 -nmtoken_char( 0'S ).nmtoken_char653,20145 -nmtoken_char( 0'S ).nmtoken_char653,20145 -nmtoken_char( 0'T ).nmtoken_char654,20167 -nmtoken_char( 0'T ).nmtoken_char654,20167 -nmtoken_char( 0'U ).nmtoken_char655,20189 -nmtoken_char( 0'U ).nmtoken_char655,20189 -nmtoken_char( 0'V ).nmtoken_char656,20211 -nmtoken_char( 0'V ).nmtoken_char656,20211 -nmtoken_char( 0'W ).nmtoken_char657,20233 -nmtoken_char( 0'W ).nmtoken_char657,20233 -nmtoken_char( 0'X ).nmtoken_char658,20255 -nmtoken_char( 0'X ).nmtoken_char658,20255 -nmtoken_char( 0'Y ).nmtoken_char659,20277 -nmtoken_char( 0'Y ).nmtoken_char659,20277 -nmtoken_char( 0'Z ).nmtoken_char660,20299 -nmtoken_char( 0'Z ).nmtoken_char660,20299 -nmtoken_char( 0'0 ).nmtoken_char661,20321 -nmtoken_char( 0'0 ).nmtoken_char661,20321 -nmtoken_char( 0'1 ).nmtoken_char662,20343 -nmtoken_char( 0'1 ).nmtoken_char662,20343 -nmtoken_char( 0'2 ).nmtoken_char663,20365 -nmtoken_char( 0'2 ).nmtoken_char663,20365 -nmtoken_char( 0'3 ).nmtoken_char664,20387 -nmtoken_char( 0'3 ).nmtoken_char664,20387 -nmtoken_char( 0'4 ).nmtoken_char665,20409 -nmtoken_char( 0'4 ).nmtoken_char665,20409 -nmtoken_char( 0'5 ).nmtoken_char666,20431 -nmtoken_char( 0'5 ).nmtoken_char666,20431 -nmtoken_char( 0'6 ).nmtoken_char667,20453 -nmtoken_char( 0'6 ).nmtoken_char667,20453 -nmtoken_char( 0'7 ).nmtoken_char668,20475 -nmtoken_char( 0'7 ).nmtoken_char668,20475 -nmtoken_char( 0'8 ).nmtoken_char669,20497 -nmtoken_char( 0'8 ).nmtoken_char669,20497 -nmtoken_char( 0'9 ).nmtoken_char670,20519 -nmtoken_char( 0'9 ).nmtoken_char670,20519 -nmtoken_char( 0'. ).nmtoken_char671,20541 -nmtoken_char( 0'. ).nmtoken_char671,20541 -nmtoken_char( 0'- ).nmtoken_char672,20563 -nmtoken_char( 0'- ).nmtoken_char672,20563 -nmtoken_char( 0'_ ).nmtoken_char673,20585 -nmtoken_char( 0'_ ).nmtoken_char673,20585 -nmtoken_char( 0': ).nmtoken_char674,20607 -nmtoken_char( 0': ).nmtoken_char674,20607 -xml_string( String ) -->xml_string676,20631 -xml_string( String ) -->xml_string676,20631 -xml_string( String ) -->xml_string676,20631 -xml_string1( Quote, [] ) -->xml_string1680,20709 -xml_string1( Quote, [] ) -->xml_string1680,20709 -xml_string1( Quote, [] ) -->xml_string1680,20709 -xml_string1( Quote, [Char|Chars] ) -->xml_string1683,20762 -xml_string1( Quote, [Char|Chars] ) -->xml_string1683,20762 -xml_string1( Quote, [Char|Chars] ) -->xml_string1683,20762 -alphabet( 0'a ).alphabet687,20845 -alphabet( 0'a ).alphabet687,20845 -alphabet( 0'b ).alphabet688,20863 -alphabet( 0'b ).alphabet688,20863 -alphabet( 0'c ).alphabet689,20881 -alphabet( 0'c ).alphabet689,20881 -alphabet( 0'd ).alphabet690,20899 -alphabet( 0'd ).alphabet690,20899 -alphabet( 0'e ).alphabet691,20917 -alphabet( 0'e ).alphabet691,20917 -alphabet( 0'f ).alphabet692,20935 -alphabet( 0'f ).alphabet692,20935 -alphabet( 0'g ).alphabet693,20953 -alphabet( 0'g ).alphabet693,20953 -alphabet( 0'h ).alphabet694,20971 -alphabet( 0'h ).alphabet694,20971 -alphabet( 0'i ).alphabet695,20989 -alphabet( 0'i ).alphabet695,20989 -alphabet( 0'j ).alphabet696,21007 -alphabet( 0'j ).alphabet696,21007 -alphabet( 0'k ).alphabet697,21025 -alphabet( 0'k ).alphabet697,21025 -alphabet( 0'l ).alphabet698,21043 -alphabet( 0'l ).alphabet698,21043 -alphabet( 0'm ).alphabet699,21061 -alphabet( 0'm ).alphabet699,21061 -alphabet( 0'n ).alphabet700,21079 -alphabet( 0'n ).alphabet700,21079 -alphabet( 0'o ).alphabet701,21097 -alphabet( 0'o ).alphabet701,21097 -alphabet( 0'p ).alphabet702,21115 -alphabet( 0'p ).alphabet702,21115 -alphabet( 0'q ).alphabet703,21133 -alphabet( 0'q ).alphabet703,21133 -alphabet( 0'r ).alphabet704,21151 -alphabet( 0'r ).alphabet704,21151 -alphabet( 0's ).alphabet705,21169 -alphabet( 0's ).alphabet705,21169 -alphabet( 0't ).alphabet706,21187 -alphabet( 0't ).alphabet706,21187 -alphabet( 0'u ).alphabet707,21205 -alphabet( 0'u ).alphabet707,21205 -alphabet( 0'v ).alphabet708,21223 -alphabet( 0'v ).alphabet708,21223 -alphabet( 0'w ).alphabet709,21241 -alphabet( 0'w ).alphabet709,21241 -alphabet( 0'x ).alphabet710,21259 -alphabet( 0'x ).alphabet710,21259 -alphabet( 0'y ).alphabet711,21277 -alphabet( 0'y ).alphabet711,21277 -alphabet( 0'z ).alphabet712,21295 -alphabet( 0'z ).alphabet712,21295 -alphabet( 0'A ).alphabet713,21313 -alphabet( 0'A ).alphabet713,21313 -alphabet( 0'B ).alphabet714,21331 -alphabet( 0'B ).alphabet714,21331 -alphabet( 0'C ).alphabet715,21349 -alphabet( 0'C ).alphabet715,21349 -alphabet( 0'D ).alphabet716,21367 -alphabet( 0'D ).alphabet716,21367 -alphabet( 0'E ).alphabet717,21385 -alphabet( 0'E ).alphabet717,21385 -alphabet( 0'F ).alphabet718,21403 -alphabet( 0'F ).alphabet718,21403 -alphabet( 0'G ).alphabet719,21421 -alphabet( 0'G ).alphabet719,21421 -alphabet( 0'H ).alphabet720,21439 -alphabet( 0'H ).alphabet720,21439 -alphabet( 0'I ).alphabet721,21457 -alphabet( 0'I ).alphabet721,21457 -alphabet( 0'J ).alphabet722,21475 -alphabet( 0'J ).alphabet722,21475 -alphabet( 0'K ).alphabet723,21493 -alphabet( 0'K ).alphabet723,21493 -alphabet( 0'L ).alphabet724,21511 -alphabet( 0'L ).alphabet724,21511 -alphabet( 0'M ).alphabet725,21529 -alphabet( 0'M ).alphabet725,21529 -alphabet( 0'N ).alphabet726,21547 -alphabet( 0'N ).alphabet726,21547 -alphabet( 0'O ).alphabet727,21565 -alphabet( 0'O ).alphabet727,21565 -alphabet( 0'P ).alphabet728,21583 -alphabet( 0'P ).alphabet728,21583 -alphabet( 0'Q ).alphabet729,21601 -alphabet( 0'Q ).alphabet729,21601 -alphabet( 0'R ).alphabet730,21619 -alphabet( 0'R ).alphabet730,21619 -alphabet( 0'S ).alphabet731,21637 -alphabet( 0'S ).alphabet731,21637 -alphabet( 0'T ).alphabet732,21655 -alphabet( 0'T ).alphabet732,21655 -alphabet( 0'U ).alphabet733,21673 -alphabet( 0'U ).alphabet733,21673 -alphabet( 0'V ).alphabet734,21691 -alphabet( 0'V ).alphabet734,21691 -alphabet( 0'W ).alphabet735,21709 -alphabet( 0'W ).alphabet735,21709 -alphabet( 0'X ).alphabet736,21727 -alphabet( 0'X ).alphabet736,21727 -alphabet( 0'Y ).alphabet737,21745 -alphabet( 0'Y ).alphabet737,21745 -alphabet( 0'Z ).alphabet738,21763 -alphabet( 0'Z ).alphabet738,21763 -digit( C ) --> [C], {digit_table( C )}.digit740,21783 -digit( C ) --> [C], {digit_table( C )}.digit740,21783 -digit( C ) --> [C], {digit_table( C )}.digit740,21783 -digit_table( 0'0 ).digit_table742,21826 -digit_table( 0'0 ).digit_table742,21826 -digit_table( 0'1 ).digit_table743,21847 -digit_table( 0'1 ).digit_table743,21847 -digit_table( 0'2 ).digit_table744,21868 -digit_table( 0'2 ).digit_table744,21868 -digit_table( 0'3 ).digit_table745,21889 -digit_table( 0'3 ).digit_table745,21889 -digit_table( 0'4 ).digit_table746,21910 -digit_table( 0'4 ).digit_table746,21910 -digit_table( 0'5 ).digit_table747,21931 -digit_table( 0'5 ).digit_table747,21931 -digit_table( 0'6 ).digit_table748,21952 -digit_table( 0'6 ).digit_table748,21952 -digit_table( 0'7 ).digit_table749,21973 -digit_table( 0'7 ).digit_table749,21973 -digit_table( 0'8 ).digit_table750,21994 -digit_table( 0'8 ).digit_table750,21994 -digit_table( 0'9 ).digit_table751,22015 -digit_table( 0'9 ).digit_table751,22015 -digits( [Digit|Digits] ) -->digits753,22038 -digits( [Digit|Digits] ) -->digits753,22038 -digits( [Digit|Digits] ) -->digits753,22038 -digits( [] ) --> [].digits756,22106 -digits( [] ) --> [].digits756,22106 -digits( [] ) --> [].digits756,22106 -character_entity( "quot", 0'" ). %'character_entity758,22130 -character_entity( "quot", 0'" ). %'character_entity758,22130 -character_entity( "amp", 0'& ). %'character_entity759,22167 -character_entity( "amp", 0'& ). %'character_entity759,22167 -character_entity( "lt", 0'< ). %'character_entity760,22204 -character_entity( "lt", 0'< ). %'character_entity760,22204 -character_entity( "gt", 0'> ). %'character_entity761,22239 -character_entity( "gt", 0'> ). %'character_entity761,22239 -character_entity( "apos", 0'' ).character_entity762,22274 -character_entity( "apos", 0'' ).character_entity762,22274 -namechar -->namechar769,22478 -letter --> (basechar | ideographic).letter780,22597 -basechar --> basechar782,22638 -ideographic -->ideographic986,27887 -combiningchar -->combiningchar991,27984 -unicode_digit -->unicode_digit1089,30397 -extender -->extender1107,30874 -range( Low, High ) -->range1121,31098 -range( Low, High ) -->range1121,31098 -range( Low, High ) -->range1121,31098 - -packages/xml/xml_diagnosis.pl,6357 -xml_fault( Term, _Indent, Term, [], "Illegal Variable" ) :-xml_fault25,861 -xml_fault( Term, _Indent, Term, [], "Illegal Variable" ) :-xml_fault25,861 -xml_fault( Term, _Indent, Term, [], "Illegal Variable" ) :-xml_fault25,861 -xml_fault( xml(Attributes,_Content), _Indent, Term, [], Message ) :-xml_fault27,937 -xml_fault( xml(Attributes,_Content), _Indent, Term, [], Message ) :-xml_fault27,937 -xml_fault( xml(Attributes,_Content), _Indent, Term, [], Message ) :-xml_fault27,937 -xml_fault( xml(_Attributes,Content), Indent, Culprit, Path, Message ) :-xml_fault30,1089 -xml_fault( xml(_Attributes,Content), Indent, Culprit, Path, Message ) :-xml_fault30,1089 -xml_fault( xml(_Attributes,Content), Indent, Culprit, Path, Message ) :-xml_fault30,1089 -xml_fault( Term, _Indent, Term, [], "Illegal Term" ).xml_fault32,1227 -xml_fault( Term, _Indent, Term, [], "Illegal Term" ).xml_fault32,1227 -xml_content_fault( Term, _Indent, Term, [], "Illegal Variable" ) :-xml_content_fault34,1284 -xml_content_fault( Term, _Indent, Term, [], "Illegal Variable" ) :-xml_content_fault34,1284 -xml_content_fault( Term, _Indent, Term, [], "Illegal Variable" ) :-xml_content_fault34,1284 -xml_content_fault( pcdata(Chars), _Indent, Chars, [], "Invalid Character Data" ) :-xml_content_fault36,1368 -xml_content_fault( pcdata(Chars), _Indent, Chars, [], "Invalid Character Data" ) :-xml_content_fault36,1368 -xml_content_fault( pcdata(Chars), _Indent, Chars, [], "Invalid Character Data" ) :-xml_content_fault36,1368 -xml_content_fault( cdata(Chars), _Indent, Chars, [], "Invalid Character Data" ) :-xml_content_fault38,1477 -xml_content_fault( cdata(Chars), _Indent, Chars, [], "Invalid Character Data" ) :-xml_content_fault38,1477 -xml_content_fault( cdata(Chars), _Indent, Chars, [], "Invalid Character Data" ) :-xml_content_fault38,1477 -xml_content_fault( [H|_T], Indent, Culprit, Path, Message ) :-xml_content_fault40,1585 -xml_content_fault( [H|_T], Indent, Culprit, Path, Message ) :-xml_content_fault40,1585 -xml_content_fault( [H|_T], Indent, Culprit, Path, Message ) :-xml_content_fault40,1585 -xml_content_fault( [_H|T], Indent, Culprit, Path, Message ) :-xml_content_fault42,1707 -xml_content_fault( [_H|T], Indent, Culprit, Path, Message ) :-xml_content_fault42,1707 -xml_content_fault( [_H|T], Indent, Culprit, Path, Message ) :-xml_content_fault42,1707 -xml_content_fault( namespace(_URI,_Prefix,Element), Indent, Culprit, Path, Message ) :-xml_content_fault44,1829 -xml_content_fault( namespace(_URI,_Prefix,Element), Indent, Culprit, Path, Message ) :-xml_content_fault44,1829 -xml_content_fault( namespace(_URI,_Prefix,Element), Indent, Culprit, Path, Message ) :-xml_content_fault44,1829 -xml_content_fault( Element, Indent, Culprit, Path, Message ) :-xml_content_fault46,1984 -xml_content_fault( Element, Indent, Culprit, Path, Message ) :-xml_content_fault46,1984 -xml_content_fault( Element, Indent, Culprit, Path, Message ) :-xml_content_fault46,1984 -xml_content_fault( Term, Indent, Term, [], "Illegal Term" ) :-xml_content_fault48,2115 -xml_content_fault( Term, Indent, Term, [], "Illegal Term" ) :-xml_content_fault48,2115 -xml_content_fault( Term, Indent, Term, [], "Illegal Term" ) :-xml_content_fault48,2115 -element_fault( element(Tag, _Attributes, _Contents), _Indent, Tag, [], "Tag must be an atom" ) :-element_fault51,2248 -element_fault( element(Tag, _Attributes, _Contents), _Indent, Tag, [], "Tag must be an atom" ) :-element_fault51,2248 -element_fault( element(Tag, _Attributes, _Contents), _Indent, Tag, [], "Tag must be an atom" ) :-element_fault51,2248 -element_fault( element(Tag, Attributes, _Contents), _Indent, Tag, [], "Attributes must be instantiated" ) :-element_fault53,2365 -element_fault( element(Tag, Attributes, _Contents), _Indent, Tag, [], "Attributes must be instantiated" ) :-element_fault53,2365 -element_fault( element(Tag, Attributes, _Contents), _Indent, Tag, [], "Attributes must be instantiated" ) :-element_fault53,2365 -element_fault( element(Tag, Attributes, _Contents), _Indent, Faulty, Path, Message ) :-element_fault55,2496 -element_fault( element(Tag, Attributes, _Contents), _Indent, Faulty, Path, Message ) :-element_fault55,2496 -element_fault( element(Tag, Attributes, _Contents), _Indent, Faulty, Path, Message ) :-element_fault55,2496 -element_fault( element(Tag, Attributes, Contents), Indent, Culprit, Path, Message ) :-element_fault59,2712 -element_fault( element(Tag, Attributes, Contents), Indent, Culprit, Path, Message ) :-element_fault59,2712 -element_fault( element(Tag, Attributes, Contents), Indent, Culprit, Path, Message ) :-element_fault59,2712 -attribute_fault( Attribute, Attribute, "Illegal Variable" ) :-attribute_fault63,2914 -attribute_fault( Attribute, Attribute, "Illegal Variable" ) :-attribute_fault63,2914 -attribute_fault( Attribute, Attribute, "Illegal Variable" ) :-attribute_fault63,2914 -attribute_fault( Name=Value, Name=Value, "Attribute Name must be atom" ) :-attribute_fault65,2998 -attribute_fault( Name=Value, Name=Value, "Attribute Name must be atom" ) :-attribute_fault65,2998 -attribute_fault( Name=Value, Name=Value, "Attribute Name must be atom" ) :-attribute_fault65,2998 -attribute_fault( Name=Value, Name=Value, "Attribute Value must be chars" ) :-attribute_fault67,3092 -attribute_fault( Name=Value, Name=Value, "Attribute Value must be chars" ) :-attribute_fault67,3092 -attribute_fault( Name=Value, Name=Value, "Attribute Value must be chars" ) :-attribute_fault67,3092 -attribute_fault( Attribute, Attribute, "Malformed Attribute" ) :-attribute_fault69,3195 -attribute_fault( Attribute, Attribute, "Malformed Attribute" ) :-attribute_fault69,3195 -attribute_fault( Attribute, Attribute, "Malformed Attribute" ) :-attribute_fault69,3195 -is_chars( Chars ) :-is_chars72,3297 -is_chars( Chars ) :-is_chars72,3297 -is_chars( Chars ) :-is_chars72,3297 -fault_path( Tag, Attributes ) -->fault_path76,3414 -fault_path( Tag, Attributes ) -->fault_path76,3414 -fault_path( Tag, Attributes ) -->fault_path76,3414 -fault_id( Attributes ) -->fault_id82,3532 -fault_id( Attributes ) -->fault_id82,3532 -fault_id( Attributes ) -->fault_id82,3532 -fault_id( _Attributes ) --> "".fault_id86,3646 -fault_id( _Attributes ) --> "".fault_id86,3646 -fault_id( _Attributes ) --> "".fault_id86,3646 - -packages/xml/xml_driver.pl,1479 -xml_parse( Chars, Document ) :-xml_parse88,3932 -xml_parse( Chars, Document ) :-xml_parse88,3932 -xml_parse( Chars, Document ) :-xml_parse88,3932 -xml_parse( Controls, Chars, Document ) :-xml_parse91,4003 -xml_parse( Controls, Chars, Document ) :-xml_parse91,4003 -xml_parse( Controls, Chars, Document ) :-xml_parse91,4003 -document_to_xml( Controls, Document, Chars ) :-document_to_xml98,4189 -document_to_xml( Controls, Document, Chars ) :-document_to_xml98,4189 -document_to_xml( Controls, Document, Chars ) :-document_to_xml98,4189 -xml_subterm( Term, Term ).xml_subterm117,4715 -xml_subterm( Term, Term ).xml_subterm117,4715 -xml_subterm( xml(_Attributes, Content), Term ) :-xml_subterm118,4743 -xml_subterm( xml(_Attributes, Content), Term ) :-xml_subterm118,4743 -xml_subterm( xml(_Attributes, Content), Term ) :-xml_subterm118,4743 -xml_subterm( [H|T], Term ) :-xml_subterm120,4827 -xml_subterm( [H|T], Term ) :-xml_subterm120,4827 -xml_subterm( [H|T], Term ) :-xml_subterm120,4827 -xml_subterm( element(_Name,_Attributes,Content), Term ) :-xml_subterm124,4917 -xml_subterm( element(_Name,_Attributes,Content), Term ) :-xml_subterm124,4917 -xml_subterm( element(_Name,_Attributes,Content), Term ) :-xml_subterm124,4917 -xml_subterm( namespace(_URI,_Prefix,Content), Term ) :-xml_subterm126,5009 -xml_subterm( namespace(_URI,_Prefix,Content), Term ) :-xml_subterm126,5009 -xml_subterm( namespace(_URI,_Prefix,Content), Term ) :-xml_subterm126,5009 - -packages/xml/xml_example/misc.pl,1839 -unique_solution( Goal ) :-unique_solution8,284 -unique_solution( Goal ) :-unique_solution8,284 -unique_solution( Goal ) :-unique_solution8,284 -same_solution( [], _Solution ).same_solution13,415 -same_solution( [], _Solution ).same_solution13,415 -same_solution( [Solution0|Solutions], Solution ) :-same_solution14,447 -same_solution( [Solution0|Solutions], Solution ) :-same_solution14,447 -same_solution( [Solution0|Solutions], Solution ) :-same_solution14,447 -member( H, [H|_] ).member25,875 -member( H, [H|_] ).member25,875 -member( H, [_|T] ):-member26,895 -member( H, [_|T] ):-member26,895 -member( H, [_|T] ):-member26,895 -select( H, [H|T], T ).select31,1029 -select( H, [H|T], T ).select31,1029 -select( Element, [H|T0], [H|T1] ):-select32,1052 -select( Element, [H|T0], [H|T1] ):-select32,1052 -select( Element, [H|T0], [H|T1] ):-select32,1052 -memberchk( Element, List ):-memberchk36,1197 -memberchk( Element, List ):-memberchk36,1197 -memberchk( Element, List ):-memberchk36,1197 -generate_between( Lower, Upper, Index ) :-generate_between57,1915 -generate_between( Lower, Upper, Index ) :-generate_between57,1915 -generate_between( Lower, Upper, Index ) :-generate_between57,1915 -sum( [H|T], Sum ) :-sum68,2167 -sum( [H|T], Sum ) :-sum68,2167 -sum( [H|T], Sum ) :-sum68,2167 -sum1( [], Sum, Sum ).sum171,2209 -sum1( [], Sum, Sum ).sum171,2209 -sum1( [H|T], Sum0, Sum ):-sum172,2231 -sum1( [H|T], Sum0, Sum ):-sum172,2231 -sum1( [H|T], Sum0, Sum ):-sum172,2231 -put_chars( [] ).put_chars79,2456 -put_chars( [] ).put_chars79,2456 -put_chars( [Char|Chars] ) :-put_chars80,2473 -put_chars( [Char|Chars] ) :-put_chars80,2473 -put_chars( [Char|Chars] ) :-put_chars80,2473 -get_chars( Input ) :-get_chars87,2654 -get_chars( Input ) :-get_chars87,2654 -get_chars( Input ) :-get_chars87,2654 - -packages/xml/xml_example/xml_example.pl,4755 -test( Query ) :-test26,1157 -test( Query ) :-test26,1157 -test( Query ) :-test26,1157 -xml_query( q1, element(bib, [], Books) ) :-xml_query47,1857 -xml_query( q1, element(bib, [], Books) ) :-xml_query47,1857 -xml_query( q1, element(bib, [], Books) ) :-xml_query47,1857 -xml_query( q2, element(results, [], Results) ) :-xml_query69,2508 -xml_query( q2, element(results, [], Results) ) :-xml_query69,2508 -xml_query( q2, element(results, [], Results) ) :-xml_query69,2508 -xml_query( q3, element(results, [], Results) ) :-xml_query87,2990 -xml_query( q3, element(results, [], Results) ) :-xml_query87,2990 -xml_query( q3, element(results, [], Results) ) :-xml_query87,2990 -xml_query( q4, element(results, [], Results) ) :-xml_query105,3540 -xml_query( q4, element(results, [], Results) ) :-xml_query105,3540 -xml_query( q4, element(results, [], Results) ) :-xml_query105,3540 -xml_query( q5, element('books-with-prices', [], BooksWithPrices) ) :-xml_query130,4210 -xml_query( q5, element('books-with-prices', [], BooksWithPrices) ) :-xml_query130,4210 -xml_query( q5, element('books-with-prices', [], BooksWithPrices) ) :-xml_query130,4210 -xml_query( q6, element(bib, [], Results) ) :-xml_query156,5056 -xml_query( q6, element(bib, [], Results) ) :-xml_query156,5056 -xml_query( q6, element(bib, [], Results) ) :-xml_query156,5056 -xml_query( q7, element(bib, [], Books) ) :-xml_query175,5623 -xml_query( q7, element(bib, [], Books) ) :-xml_query175,5623 -xml_query( q7, element(bib, [], Books) ) :-xml_query175,5623 -xml_query( q8, element(bib, [], Books) ) :-xml_query200,6464 -xml_query( q8, element(bib, [], Books) ) :-xml_query200,6464 -xml_query( q8, element(bib, [], Books) ) :-xml_query200,6464 -xml_query( q9, element(results, [], Titles) ) :-xml_query224,7251 -xml_query( q9, element(results, [], Titles) ) :-xml_query224,7251 -xml_query( q9, element(results, [], Titles) ) :-xml_query224,7251 -xml_query( q10, element(results, [], MinPrices) ) :-xml_query242,7762 -xml_query( q10, element(results, [], MinPrices) ) :-xml_query242,7762 -xml_query( q10, element(results, [], MinPrices) ) :-xml_query242,7762 -xml_query( q11, element(bib, [], Results) ) :-xml_query274,8750 -xml_query( q11, element(bib, [], Results) ) :-xml_query274,8750 -xml_query( q11, element(bib, [], Results) ) :-xml_query274,8750 -xml_query( q12, element(bib, [], Pairs) ) :-xml_query305,9635 -xml_query( q12, element(bib, [], Pairs) ) :-xml_query305,9635 -xml_query( q12, element(bib, [], Pairs) ) :-xml_query305,9635 -other_authors( [], [] ).other_authors330,10353 -other_authors( [], [] ).other_authors330,10353 -other_authors( [Author|Authors], [Author|EtAl] ) :-other_authors331,10379 -other_authors( [Author|Authors], [Author|EtAl] ) :-other_authors331,10379 -other_authors( [Author|Authors], [Author|EtAl] ) :-other_authors331,10379 -et_al( [], [] ).et_al334,10460 -et_al( [], [] ).et_al334,10460 -et_al( [_|_], [element('et-al',[],[])] ).et_al335,10478 -et_al( [_|_], [element('et-al',[],[])] ).et_al335,10478 -text_value( [pcdata(Text)], Text ).text_value337,10523 -text_value( [pcdata(Text)], Text ).text_value337,10523 -text_value( [cdata(Text)], Text ).text_value338,10560 -text_value( [cdata(Text)], Text ).text_value338,10560 -element_name( element(Name, _Attributes, _Content), Name ).element_name340,10598 -element_name( element(Name, _Attributes, _Content), Name ).element_name340,10598 -range( [], [] ).range346,10771 -range( [], [] ).range346,10771 -range( [_Key-Datum|Pairs], [Datum|Data] ) :-range347,10789 -range( [_Key-Datum|Pairs], [Datum|Data] ) :-range347,10789 -range( [_Key-Datum|Pairs], [Datum|Data] ) :-range347,10789 -minimum( [H|T], Min ):-minimum353,10963 -minimum( [H|T], Min ):-minimum353,10963 -minimum( [H|T], Min ):-minimum353,10963 -minimum1( [], Min, Min ).minimum1356,11015 -minimum1( [], Min, Min ).minimum1356,11015 -minimum1( [H|T], Min0, Min ) :-minimum1357,11042 -minimum1( [H|T], Min0, Min ) :-minimum1357,11042 -minimum1( [H|T], Min0, Min ) :-minimum1357,11042 -minimum2( '=', Min0, Min0, T, Min ) :-minimum2361,11150 -minimum2( '=', Min0, Min0, T, Min ) :-minimum2361,11150 -minimum2( '=', Min0, Min0, T, Min ) :-minimum2361,11150 -minimum2( '<', Min0, _Min1, T, Min ) :-minimum2363,11218 -minimum2( '<', Min0, _Min1, T, Min ) :-minimum2363,11218 -minimum2( '<', Min0, _Min1, T, Min ) :-minimum2363,11218 -minimum2( '>', _Min0, Min1, T, Min ) :-minimum2365,11287 -minimum2( '>', _Min0, Min1, T, Min ) :-minimum2365,11287 -minimum2( '>', _Min0, Min1, T, Min ) :-minimum2365,11287 -input_document( File, XML ) :-input_document371,11470 -input_document( File, XML ) :-input_document371,11470 -input_document( File, XML ) :-input_document371,11470 - -packages/xml/xml_generation.pl,29492 -document_generation( Format, xml(Attributes, Document) ) -->document_generation29,1015 -document_generation( Format, xml(Attributes, Document) ) -->document_generation29,1015 -document_generation( Format, xml(Attributes, Document) ) -->document_generation29,1015 -document_generation_body( [], Format, Document ) -->document_generation_body32,1139 -document_generation_body( [], Format, Document ) -->document_generation_body32,1139 -document_generation_body( [], Format, Document ) -->document_generation_body32,1139 -document_generation_body( Attributes, Format, Document ) -->document_generation_body34,1245 -document_generation_body( Attributes, Format, Document ) -->document_generation_body34,1245 -document_generation_body( Attributes, Format, Document ) -->document_generation_body34,1245 -generation( [], _Prefix, Format, _Indent, Format ) --> [].generation44,1537 -generation( [], _Prefix, Format, _Indent, Format ) --> [].generation44,1537 -generation( [], _Prefix, Format, _Indent, Format ) --> [].generation44,1537 -generation( [Term|Terms], Prefix, Format0, Indent, Format ) -->generation45,1597 -generation( [Term|Terms], Prefix, Format0, Indent, Format ) -->generation45,1597 -generation( [Term|Terms], Prefix, Format0, Indent, Format ) -->generation45,1597 -generation( doctype(Name, External), _Prefix, Format, [], Format ) -->generation48,1774 -generation( doctype(Name, External), _Prefix, Format, [], Format ) -->generation48,1774 -generation( doctype(Name, External), _Prefix, Format, [], Format ) -->generation48,1774 -generation( instructions(Target,Process), _Prefix, Format, Indent, Format ) -->generation53,1932 -generation( instructions(Target,Process), _Prefix, Format, Indent, Format ) -->generation53,1932 -generation( instructions(Target,Process), _Prefix, Format, Indent, Format ) -->generation53,1932 -generation( pcdata(Chars), _Prefix, Format0, _Indent, Format1 ) -->generation56,2102 -generation( pcdata(Chars), _Prefix, Format0, _Indent, Format1 ) -->generation56,2102 -generation( pcdata(Chars), _Prefix, Format0, _Indent, Format1 ) -->generation56,2102 -generation( comment( Comment ), _Prefix, Format, Indent, Format ) -->generation59,2255 -generation( comment( Comment ), _Prefix, Format, Indent, Format ) -->generation59,2255 -generation( comment( Comment ), _Prefix, Format, Indent, Format ) -->generation59,2255 -generation( element(Name, Atts, Content), Prefix, Format, Indent, Format ) -->generation68,2709 -generation( element(Name, Atts, Content), Prefix, Format, Indent, Format ) -->generation68,2709 -generation( element(Name, Atts, Content), Prefix, Format, Indent, Format ) -->generation68,2709 -generation( cdata(CData), _Prefix, Format0, _Indent, Format1 ) -->generation73,2978 -generation( cdata(CData), _Prefix, Format0, _Indent, Format1 ) -->generation73,2978 -generation( cdata(CData), _Prefix, Format0, _Indent, Format1 ) -->generation73,2978 -generated_attributes( [], Format, Format ) --> [].generated_attributes77,3149 -generated_attributes( [], Format, Format ) --> [].generated_attributes77,3149 -generated_attributes( [], Format, Format ) --> [].generated_attributes77,3149 -generated_attributes( [Name=Value|Attributes], Format0, Format ) -->generated_attributes78,3202 -generated_attributes( [Name=Value|Attributes], Format0, Format ) -->generated_attributes78,3202 -generated_attributes( [Name=Value|Attributes], Format0, Format ) -->generated_attributes78,3202 -generated_prefixed_name( [], Name ) -->generated_prefixed_name92,3525 -generated_prefixed_name( [], Name ) -->generated_prefixed_name92,3525 -generated_prefixed_name( [], Name ) -->generated_prefixed_name92,3525 -generated_prefixed_name( Prefix, Name ) -->generated_prefixed_name94,3592 -generated_prefixed_name( Prefix, Name ) -->generated_prefixed_name94,3592 -generated_prefixed_name( Prefix, Name ) -->generated_prefixed_name94,3592 -generated_content( [], _Format, _Indent, _Prefix, _Namespace ) -->generated_content99,3709 -generated_content( [], _Format, _Indent, _Prefix, _Namespace ) -->generated_content99,3709 -generated_content( [], _Format, _Indent, _Prefix, _Namespace ) -->generated_content99,3709 -generated_content( [H|T], Format, Indent, Prefix, Namespace ) -->generated_content101,3827 -generated_content( [H|T], Format, Indent, Prefix, Namespace ) -->generated_content101,3827 -generated_content( [H|T], Format, Indent, Prefix, Namespace ) -->generated_content101,3827 -generated_prefixed_attributes( [_|_Prefix], _URI, Atts, Format0, Format ) -->generated_prefixed_attributes108,4108 -generated_prefixed_attributes( [_|_Prefix], _URI, Atts, Format0, Format ) -->generated_prefixed_attributes108,4108 -generated_prefixed_attributes( [_|_Prefix], _URI, Atts, Format0, Format ) -->generated_prefixed_attributes108,4108 -generated_prefixed_attributes( [], URI, Atts, Format0, Format ) -->generated_prefixed_attributes110,4237 -generated_prefixed_attributes( [], URI, Atts, Format0, Format ) -->generated_prefixed_attributes110,4237 -generated_prefixed_attributes( [], URI, Atts, Format0, Format ) -->generated_prefixed_attributes110,4237 -generated_name( Name, Plus, Minus ) :-generated_name116,4486 -generated_name( Name, Plus, Minus ) :-generated_name116,4486 -generated_name( Name, Plus, Minus ) :-generated_name116,4486 -generated_external_id( local ) --> "".generated_external_id120,4589 -generated_external_id( local ) --> "".generated_external_id120,4589 -generated_external_id( local ) --> "".generated_external_id120,4589 -generated_external_id( local(Literals) ) --> " [",generated_external_id121,4629 -generated_external_id( local(Literals) ) --> " [",generated_external_id121,4629 -generated_external_id( local(Literals) ) --> " [",generated_external_id121,4629 -generated_external_id( system(URL) ) -->generated_external_id124,4731 -generated_external_id( system(URL) ) -->generated_external_id124,4731 -generated_external_id( system(URL) ) -->generated_external_id124,4731 -generated_external_id( system(URL,Literals) ) -->generated_external_id128,4813 -generated_external_id( system(URL,Literals) ) -->generated_external_id128,4813 -generated_external_id( system(URL,Literals) ) -->generated_external_id128,4813 -generated_external_id( public(URN,URL) ) -->generated_external_id134,4956 -generated_external_id( public(URN,URL) ) -->generated_external_id134,4956 -generated_external_id( public(URN,URL) ) -->generated_external_id134,4956 -generated_external_id( public(URN,URL,Literals) ) -->generated_external_id140,5069 -generated_external_id( public(URN,URL,Literals) ) -->generated_external_id140,5069 -generated_external_id( public(URN,URL,Literals) ) -->generated_external_id140,5069 -generated_doctype_literals( [] ) --> "".generated_doctype_literals149,5245 -generated_doctype_literals( [] ) --> "".generated_doctype_literals149,5245 -generated_doctype_literals( [] ) --> "".generated_doctype_literals149,5245 -generated_doctype_literals( [dtd_literal(String)|Literals] ) --> "generated_doctype_literals150,5287 -generated_doctype_literals( [dtd_literal(String)|Literals] ) --> "generated_doctype_literals150,5287 -generated_doctype_literals( [dtd_literal(String)|Literals] ) --> "generated_doctype_literals150,5287 -quoted_string( Raw, Plus, Minus ) :-quoted_string159,5705 -quoted_string( Raw, Plus, Minus ) :-quoted_string159,5705 -quoted_string( Raw, Plus, Minus ) :-quoted_string159,5705 -quoted_string1( [], [] ).quoted_string1163,5855 -quoted_string1( [], [] ).quoted_string1163,5855 -quoted_string1( [Char|Chars], NoLeadingLayouts ) :-quoted_string1164,5882 -quoted_string1( [Char|Chars], NoLeadingLayouts ) :-quoted_string1164,5882 -quoted_string1( [Char|Chars], NoLeadingLayouts ) :-quoted_string1164,5882 -quoted_string2( [], _LayoutPlus, _LayoutMinus, List, List ).quoted_string2171,6056 -quoted_string2( [], _LayoutPlus, _LayoutMinus, List, List ).quoted_string2171,6056 -quoted_string2( [Char|Chars], LayoutPlus, LayoutMinus, Plus, Minus ) :-quoted_string2172,6118 -quoted_string2( [Char|Chars], LayoutPlus, LayoutMinus, Plus, Minus ) :-quoted_string2172,6118 -quoted_string2( [Char|Chars], LayoutPlus, LayoutMinus, Plus, Minus ) :-quoted_string2172,6118 -indent( false, _Indent ) --> [].indent201,6955 -indent( false, _Indent ) --> [].indent201,6955 -indent( false, _Indent ) --> [].indent201,6955 -indent( true, Indent ) -->indent202,6989 -indent( true, Indent ) -->indent202,6989 -indent( true, Indent ) -->indent202,6989 -apos --> "'".apos206,7046 -escaped_quote --> """.escaped_quote208,7068 -pcdata_generation( [], Plus, Plus ).pcdata_generation217,7513 -pcdata_generation( [], Plus, Plus ).pcdata_generation217,7513 -pcdata_generation( [Char|Chars], Plus, Minus ) :-pcdata_generation218,7551 -pcdata_generation( [Char|Chars], Plus, Minus ) :-pcdata_generation218,7551 -pcdata_generation( [Char|Chars], Plus, Minus ) :-pcdata_generation218,7551 -pcdata_7bit( 0 ) --> "".pcdata_7bit232,7982 -pcdata_7bit( 0 ) --> "".pcdata_7bit232,7982 -pcdata_7bit( 0 ) --> "".pcdata_7bit232,7982 -pcdata_7bit( 1 ) --> "".pcdata_7bit233,8008 -pcdata_7bit( 1 ) --> "".pcdata_7bit233,8008 -pcdata_7bit( 1 ) --> "".pcdata_7bit233,8008 -pcdata_7bit( 2 ) --> "".pcdata_7bit234,8034 -pcdata_7bit( 2 ) --> "".pcdata_7bit234,8034 -pcdata_7bit( 2 ) --> "".pcdata_7bit234,8034 -pcdata_7bit( 3 ) --> "".pcdata_7bit235,8060 -pcdata_7bit( 3 ) --> "".pcdata_7bit235,8060 -pcdata_7bit( 3 ) --> "".pcdata_7bit235,8060 -pcdata_7bit( 4 ) --> "".pcdata_7bit236,8086 -pcdata_7bit( 4 ) --> "".pcdata_7bit236,8086 -pcdata_7bit( 4 ) --> "".pcdata_7bit236,8086 -pcdata_7bit( 5 ) --> "".pcdata_7bit237,8112 -pcdata_7bit( 5 ) --> "".pcdata_7bit237,8112 -pcdata_7bit( 5 ) --> "".pcdata_7bit237,8112 -pcdata_7bit( 6 ) --> "".pcdata_7bit238,8138 -pcdata_7bit( 6 ) --> "".pcdata_7bit238,8138 -pcdata_7bit( 6 ) --> "".pcdata_7bit238,8138 -pcdata_7bit( 7 ) --> "".pcdata_7bit239,8164 -pcdata_7bit( 7 ) --> "".pcdata_7bit239,8164 -pcdata_7bit( 7 ) --> "".pcdata_7bit239,8164 -pcdata_7bit( 8 ) --> "".pcdata_7bit240,8190 -pcdata_7bit( 8 ) --> "".pcdata_7bit240,8190 -pcdata_7bit( 8 ) --> "".pcdata_7bit240,8190 -pcdata_7bit( 9 ) --> [9].pcdata_7bit241,8216 -pcdata_7bit( 9 ) --> [9].pcdata_7bit241,8216 -pcdata_7bit( 9 ) --> [9].pcdata_7bit241,8216 -pcdata_7bit( 10 ) --> [10].pcdata_7bit242,8243 -pcdata_7bit( 10 ) --> [10].pcdata_7bit242,8243 -pcdata_7bit( 10 ) --> [10].pcdata_7bit242,8243 -pcdata_7bit( 11 ) --> "".pcdata_7bit243,8272 -pcdata_7bit( 11 ) --> "".pcdata_7bit243,8272 -pcdata_7bit( 11 ) --> "".pcdata_7bit243,8272 -pcdata_7bit( 12 ) --> "".pcdata_7bit244,8299 -pcdata_7bit( 12 ) --> "".pcdata_7bit244,8299 -pcdata_7bit( 12 ) --> "".pcdata_7bit244,8299 -pcdata_7bit( 13 ) --> [13].pcdata_7bit245,8326 -pcdata_7bit( 13 ) --> [13].pcdata_7bit245,8326 -pcdata_7bit( 13 ) --> [13].pcdata_7bit245,8326 -pcdata_7bit( 14 ) --> "".pcdata_7bit246,8355 -pcdata_7bit( 14 ) --> "".pcdata_7bit246,8355 -pcdata_7bit( 14 ) --> "".pcdata_7bit246,8355 -pcdata_7bit( 15 ) --> "".pcdata_7bit247,8382 -pcdata_7bit( 15 ) --> "".pcdata_7bit247,8382 -pcdata_7bit( 15 ) --> "".pcdata_7bit247,8382 -pcdata_7bit( 16 ) --> "".pcdata_7bit248,8409 -pcdata_7bit( 16 ) --> "".pcdata_7bit248,8409 -pcdata_7bit( 16 ) --> "".pcdata_7bit248,8409 -pcdata_7bit( 17 ) --> "".pcdata_7bit249,8436 -pcdata_7bit( 17 ) --> "".pcdata_7bit249,8436 -pcdata_7bit( 17 ) --> "".pcdata_7bit249,8436 -pcdata_7bit( 18 ) --> "".pcdata_7bit250,8463 -pcdata_7bit( 18 ) --> "".pcdata_7bit250,8463 -pcdata_7bit( 18 ) --> "".pcdata_7bit250,8463 -pcdata_7bit( 19 ) --> "".pcdata_7bit251,8490 -pcdata_7bit( 19 ) --> "".pcdata_7bit251,8490 -pcdata_7bit( 19 ) --> "".pcdata_7bit251,8490 -pcdata_7bit( 20 ) --> "".pcdata_7bit252,8517 -pcdata_7bit( 20 ) --> "".pcdata_7bit252,8517 -pcdata_7bit( 20 ) --> "".pcdata_7bit252,8517 -pcdata_7bit( 21 ) --> "".pcdata_7bit253,8544 -pcdata_7bit( 21 ) --> "".pcdata_7bit253,8544 -pcdata_7bit( 21 ) --> "".pcdata_7bit253,8544 -pcdata_7bit( 22 ) --> "".pcdata_7bit254,8571 -pcdata_7bit( 22 ) --> "".pcdata_7bit254,8571 -pcdata_7bit( 22 ) --> "".pcdata_7bit254,8571 -pcdata_7bit( 23 ) --> "".pcdata_7bit255,8598 -pcdata_7bit( 23 ) --> "".pcdata_7bit255,8598 -pcdata_7bit( 23 ) --> "".pcdata_7bit255,8598 -pcdata_7bit( 24 ) --> "".pcdata_7bit256,8625 -pcdata_7bit( 24 ) --> "".pcdata_7bit256,8625 -pcdata_7bit( 24 ) --> "".pcdata_7bit256,8625 -pcdata_7bit( 25 ) --> "".pcdata_7bit257,8652 -pcdata_7bit( 25 ) --> "".pcdata_7bit257,8652 -pcdata_7bit( 25 ) --> "".pcdata_7bit257,8652 -pcdata_7bit( 26 ) --> "".pcdata_7bit258,8679 -pcdata_7bit( 26 ) --> "".pcdata_7bit258,8679 -pcdata_7bit( 26 ) --> "".pcdata_7bit258,8679 -pcdata_7bit( 27 ) --> "".pcdata_7bit259,8706 -pcdata_7bit( 27 ) --> "".pcdata_7bit259,8706 -pcdata_7bit( 27 ) --> "".pcdata_7bit259,8706 -pcdata_7bit( 28 ) --> "".pcdata_7bit260,8733 -pcdata_7bit( 28 ) --> "".pcdata_7bit260,8733 -pcdata_7bit( 28 ) --> "".pcdata_7bit260,8733 -pcdata_7bit( 29 ) --> "".pcdata_7bit261,8760 -pcdata_7bit( 29 ) --> "".pcdata_7bit261,8760 -pcdata_7bit( 29 ) --> "".pcdata_7bit261,8760 -pcdata_7bit( 30 ) --> "".pcdata_7bit262,8787 -pcdata_7bit( 30 ) --> "".pcdata_7bit262,8787 -pcdata_7bit( 30 ) --> "".pcdata_7bit262,8787 -pcdata_7bit( 31 ) --> "".pcdata_7bit263,8814 -pcdata_7bit( 31 ) --> "".pcdata_7bit263,8814 -pcdata_7bit( 31 ) --> "".pcdata_7bit263,8814 -pcdata_7bit( 32 ) --> " ".pcdata_7bit264,8841 -pcdata_7bit( 32 ) --> " ".pcdata_7bit264,8841 -pcdata_7bit( 32 ) --> " ".pcdata_7bit264,8841 -pcdata_7bit( 33 ) --> "!".pcdata_7bit265,8869 -pcdata_7bit( 33 ) --> "!".pcdata_7bit265,8869 -pcdata_7bit( 33 ) --> "!".pcdata_7bit265,8869 -pcdata_7bit( 34 ) --> [34].pcdata_7bit266,8897 -pcdata_7bit( 34 ) --> [34].pcdata_7bit266,8897 -pcdata_7bit( 34 ) --> [34].pcdata_7bit266,8897 -pcdata_7bit( 35 ) --> "#".pcdata_7bit267,8926 -pcdata_7bit( 35 ) --> "#".pcdata_7bit267,8926 -pcdata_7bit( 35 ) --> "#".pcdata_7bit267,8926 -pcdata_7bit( 36 ) --> "$".pcdata_7bit268,8954 -pcdata_7bit( 36 ) --> "$".pcdata_7bit268,8954 -pcdata_7bit( 36 ) --> "$".pcdata_7bit268,8954 -pcdata_7bit( 37 ) --> "%".pcdata_7bit269,8982 -pcdata_7bit( 37 ) --> "%".pcdata_7bit269,8982 -pcdata_7bit( 37 ) --> "%".pcdata_7bit269,8982 -pcdata_7bit( 38 ) --> "&".pcdata_7bit270,9010 -pcdata_7bit( 38 ) --> "&".pcdata_7bit270,9010 -pcdata_7bit( 38 ) --> "&".pcdata_7bit270,9010 -pcdata_7bit( 39 ) --> "'".pcdata_7bit271,9042 -pcdata_7bit( 39 ) --> "'".pcdata_7bit271,9042 -pcdata_7bit( 39 ) --> "'".pcdata_7bit271,9042 -pcdata_7bit( 40 ) --> "(".pcdata_7bit272,9070 -pcdata_7bit( 40 ) --> "(".pcdata_7bit272,9070 -pcdata_7bit( 40 ) --> "(".pcdata_7bit272,9070 -pcdata_7bit( 41 ) --> ")".pcdata_7bit273,9098 -pcdata_7bit( 41 ) --> ")".pcdata_7bit273,9098 -pcdata_7bit( 41 ) --> ")".pcdata_7bit273,9098 -pcdata_7bit( 42 ) --> "*".pcdata_7bit274,9126 -pcdata_7bit( 42 ) --> "*".pcdata_7bit274,9126 -pcdata_7bit( 42 ) --> "*".pcdata_7bit274,9126 -pcdata_7bit( 43 ) --> "+".pcdata_7bit275,9154 -pcdata_7bit( 43 ) --> "+".pcdata_7bit275,9154 -pcdata_7bit( 43 ) --> "+".pcdata_7bit275,9154 -pcdata_7bit( 44 ) --> ",".pcdata_7bit276,9182 -pcdata_7bit( 44 ) --> ",".pcdata_7bit276,9182 -pcdata_7bit( 44 ) --> ",".pcdata_7bit276,9182 -pcdata_7bit( 45 ) --> "-".pcdata_7bit277,9210 -pcdata_7bit( 45 ) --> "-".pcdata_7bit277,9210 -pcdata_7bit( 45 ) --> "-".pcdata_7bit277,9210 -pcdata_7bit( 46 ) --> ".".pcdata_7bit278,9238 -pcdata_7bit( 46 ) --> ".".pcdata_7bit278,9238 -pcdata_7bit( 46 ) --> ".".pcdata_7bit278,9238 -pcdata_7bit( 47 ) --> "/".pcdata_7bit279,9266 -pcdata_7bit( 47 ) --> "/".pcdata_7bit279,9266 -pcdata_7bit( 47 ) --> "/".pcdata_7bit279,9266 -pcdata_7bit( 48 ) --> "0".pcdata_7bit280,9294 -pcdata_7bit( 48 ) --> "0".pcdata_7bit280,9294 -pcdata_7bit( 48 ) --> "0".pcdata_7bit280,9294 -pcdata_7bit( 49 ) --> "1".pcdata_7bit281,9322 -pcdata_7bit( 49 ) --> "1".pcdata_7bit281,9322 -pcdata_7bit( 49 ) --> "1".pcdata_7bit281,9322 -pcdata_7bit( 50 ) --> "2".pcdata_7bit282,9350 -pcdata_7bit( 50 ) --> "2".pcdata_7bit282,9350 -pcdata_7bit( 50 ) --> "2".pcdata_7bit282,9350 -pcdata_7bit( 51 ) --> "3".pcdata_7bit283,9378 -pcdata_7bit( 51 ) --> "3".pcdata_7bit283,9378 -pcdata_7bit( 51 ) --> "3".pcdata_7bit283,9378 -pcdata_7bit( 52 ) --> "4".pcdata_7bit284,9406 -pcdata_7bit( 52 ) --> "4".pcdata_7bit284,9406 -pcdata_7bit( 52 ) --> "4".pcdata_7bit284,9406 -pcdata_7bit( 53 ) --> "5".pcdata_7bit285,9434 -pcdata_7bit( 53 ) --> "5".pcdata_7bit285,9434 -pcdata_7bit( 53 ) --> "5".pcdata_7bit285,9434 -pcdata_7bit( 54 ) --> "6".pcdata_7bit286,9462 -pcdata_7bit( 54 ) --> "6".pcdata_7bit286,9462 -pcdata_7bit( 54 ) --> "6".pcdata_7bit286,9462 -pcdata_7bit( 55 ) --> "7".pcdata_7bit287,9490 -pcdata_7bit( 55 ) --> "7".pcdata_7bit287,9490 -pcdata_7bit( 55 ) --> "7".pcdata_7bit287,9490 -pcdata_7bit( 56 ) --> "8".pcdata_7bit288,9518 -pcdata_7bit( 56 ) --> "8".pcdata_7bit288,9518 -pcdata_7bit( 56 ) --> "8".pcdata_7bit288,9518 -pcdata_7bit( 57 ) --> "9".pcdata_7bit289,9546 -pcdata_7bit( 57 ) --> "9".pcdata_7bit289,9546 -pcdata_7bit( 57 ) --> "9".pcdata_7bit289,9546 -pcdata_7bit( 58 ) --> ":".pcdata_7bit290,9574 -pcdata_7bit( 58 ) --> ":".pcdata_7bit290,9574 -pcdata_7bit( 58 ) --> ":".pcdata_7bit290,9574 -pcdata_7bit( 59 ) --> ";".pcdata_7bit291,9602 -pcdata_7bit( 59 ) --> ";".pcdata_7bit291,9602 -pcdata_7bit( 59 ) --> ";".pcdata_7bit291,9602 -pcdata_7bit( 60 ) --> "<".pcdata_7bit292,9630 -pcdata_7bit( 60 ) --> "<".pcdata_7bit292,9630 -pcdata_7bit( 60 ) --> "<".pcdata_7bit292,9630 -pcdata_7bit( 61 ) --> "=".pcdata_7bit293,9661 -pcdata_7bit( 61 ) --> "=".pcdata_7bit293,9661 -pcdata_7bit( 61 ) --> "=".pcdata_7bit293,9661 -pcdata_7bit( 62 ) --> ">". % escaping necessary to prevent ']]>' sequences in pcdata.pcdata_7bit294,9689 -pcdata_7bit( 62 ) --> ">". % escaping necessary to prevent ']]>' sequences in pcdata.pcdata_7bit294,9689 -pcdata_7bit( 62 ) --> ">". % escaping necessary to prevent ']]>' sequences in pcdata.pcdata_7bit294,9689 -pcdata_7bit( 63 ) --> "?".pcdata_7bit295,9779 -pcdata_7bit( 63 ) --> "?".pcdata_7bit295,9779 -pcdata_7bit( 63 ) --> "?".pcdata_7bit295,9779 -pcdata_7bit( 64 ) --> "@".pcdata_7bit296,9807 -pcdata_7bit( 64 ) --> "@".pcdata_7bit296,9807 -pcdata_7bit( 64 ) --> "@".pcdata_7bit296,9807 -pcdata_7bit( 65 ) --> "A".pcdata_7bit297,9835 -pcdata_7bit( 65 ) --> "A".pcdata_7bit297,9835 -pcdata_7bit( 65 ) --> "A".pcdata_7bit297,9835 -pcdata_7bit( 66 ) --> "B".pcdata_7bit298,9863 -pcdata_7bit( 66 ) --> "B".pcdata_7bit298,9863 -pcdata_7bit( 66 ) --> "B".pcdata_7bit298,9863 -pcdata_7bit( 67 ) --> "C".pcdata_7bit299,9891 -pcdata_7bit( 67 ) --> "C".pcdata_7bit299,9891 -pcdata_7bit( 67 ) --> "C".pcdata_7bit299,9891 -pcdata_7bit( 68 ) --> "D".pcdata_7bit300,9919 -pcdata_7bit( 68 ) --> "D".pcdata_7bit300,9919 -pcdata_7bit( 68 ) --> "D".pcdata_7bit300,9919 -pcdata_7bit( 69 ) --> "E".pcdata_7bit301,9947 -pcdata_7bit( 69 ) --> "E".pcdata_7bit301,9947 -pcdata_7bit( 69 ) --> "E".pcdata_7bit301,9947 -pcdata_7bit( 70 ) --> "F".pcdata_7bit302,9975 -pcdata_7bit( 70 ) --> "F".pcdata_7bit302,9975 -pcdata_7bit( 70 ) --> "F".pcdata_7bit302,9975 -pcdata_7bit( 71 ) --> "G".pcdata_7bit303,10003 -pcdata_7bit( 71 ) --> "G".pcdata_7bit303,10003 -pcdata_7bit( 71 ) --> "G".pcdata_7bit303,10003 -pcdata_7bit( 72 ) --> "H".pcdata_7bit304,10031 -pcdata_7bit( 72 ) --> "H".pcdata_7bit304,10031 -pcdata_7bit( 72 ) --> "H".pcdata_7bit304,10031 -pcdata_7bit( 73 ) --> "I".pcdata_7bit305,10059 -pcdata_7bit( 73 ) --> "I".pcdata_7bit305,10059 -pcdata_7bit( 73 ) --> "I".pcdata_7bit305,10059 -pcdata_7bit( 74 ) --> "J".pcdata_7bit306,10087 -pcdata_7bit( 74 ) --> "J".pcdata_7bit306,10087 -pcdata_7bit( 74 ) --> "J".pcdata_7bit306,10087 -pcdata_7bit( 75 ) --> "K".pcdata_7bit307,10115 -pcdata_7bit( 75 ) --> "K".pcdata_7bit307,10115 -pcdata_7bit( 75 ) --> "K".pcdata_7bit307,10115 -pcdata_7bit( 76 ) --> "L".pcdata_7bit308,10143 -pcdata_7bit( 76 ) --> "L".pcdata_7bit308,10143 -pcdata_7bit( 76 ) --> "L".pcdata_7bit308,10143 -pcdata_7bit( 77 ) --> "M".pcdata_7bit309,10171 -pcdata_7bit( 77 ) --> "M".pcdata_7bit309,10171 -pcdata_7bit( 77 ) --> "M".pcdata_7bit309,10171 -pcdata_7bit( 78 ) --> "N".pcdata_7bit310,10199 -pcdata_7bit( 78 ) --> "N".pcdata_7bit310,10199 -pcdata_7bit( 78 ) --> "N".pcdata_7bit310,10199 -pcdata_7bit( 79 ) --> "O".pcdata_7bit311,10227 -pcdata_7bit( 79 ) --> "O".pcdata_7bit311,10227 -pcdata_7bit( 79 ) --> "O".pcdata_7bit311,10227 -pcdata_7bit( 80 ) --> "P".pcdata_7bit312,10255 -pcdata_7bit( 80 ) --> "P".pcdata_7bit312,10255 -pcdata_7bit( 80 ) --> "P".pcdata_7bit312,10255 -pcdata_7bit( 81 ) --> "Q".pcdata_7bit313,10283 -pcdata_7bit( 81 ) --> "Q".pcdata_7bit313,10283 -pcdata_7bit( 81 ) --> "Q".pcdata_7bit313,10283 -pcdata_7bit( 82 ) --> "R".pcdata_7bit314,10311 -pcdata_7bit( 82 ) --> "R".pcdata_7bit314,10311 -pcdata_7bit( 82 ) --> "R".pcdata_7bit314,10311 -pcdata_7bit( 83 ) --> "S".pcdata_7bit315,10339 -pcdata_7bit( 83 ) --> "S".pcdata_7bit315,10339 -pcdata_7bit( 83 ) --> "S".pcdata_7bit315,10339 -pcdata_7bit( 84 ) --> "T".pcdata_7bit316,10367 -pcdata_7bit( 84 ) --> "T".pcdata_7bit316,10367 -pcdata_7bit( 84 ) --> "T".pcdata_7bit316,10367 -pcdata_7bit( 85 ) --> "U".pcdata_7bit317,10395 -pcdata_7bit( 85 ) --> "U".pcdata_7bit317,10395 -pcdata_7bit( 85 ) --> "U".pcdata_7bit317,10395 -pcdata_7bit( 86 ) --> "V".pcdata_7bit318,10423 -pcdata_7bit( 86 ) --> "V".pcdata_7bit318,10423 -pcdata_7bit( 86 ) --> "V".pcdata_7bit318,10423 -pcdata_7bit( 87 ) --> "W".pcdata_7bit319,10451 -pcdata_7bit( 87 ) --> "W".pcdata_7bit319,10451 -pcdata_7bit( 87 ) --> "W".pcdata_7bit319,10451 -pcdata_7bit( 88 ) --> "X".pcdata_7bit320,10479 -pcdata_7bit( 88 ) --> "X".pcdata_7bit320,10479 -pcdata_7bit( 88 ) --> "X".pcdata_7bit320,10479 -pcdata_7bit( 89 ) --> "Y".pcdata_7bit321,10507 -pcdata_7bit( 89 ) --> "Y".pcdata_7bit321,10507 -pcdata_7bit( 89 ) --> "Y".pcdata_7bit321,10507 -pcdata_7bit( 90 ) --> "Z".pcdata_7bit322,10535 -pcdata_7bit( 90 ) --> "Z".pcdata_7bit322,10535 -pcdata_7bit( 90 ) --> "Z".pcdata_7bit322,10535 -pcdata_7bit( 91 ) --> "[".pcdata_7bit323,10563 -pcdata_7bit( 91 ) --> "[".pcdata_7bit323,10563 -pcdata_7bit( 91 ) --> "[".pcdata_7bit323,10563 -pcdata_7bit( 92 ) --> [92].pcdata_7bit324,10591 -pcdata_7bit( 92 ) --> [92].pcdata_7bit324,10591 -pcdata_7bit( 92 ) --> [92].pcdata_7bit324,10591 -pcdata_7bit( 93 ) --> "]".pcdata_7bit325,10620 -pcdata_7bit( 93 ) --> "]".pcdata_7bit325,10620 -pcdata_7bit( 93 ) --> "]".pcdata_7bit325,10620 -pcdata_7bit( 94 ) --> "^".pcdata_7bit326,10648 -pcdata_7bit( 94 ) --> "^".pcdata_7bit326,10648 -pcdata_7bit( 94 ) --> "^".pcdata_7bit326,10648 -pcdata_7bit( 95 ) --> "_".pcdata_7bit327,10676 -pcdata_7bit( 95 ) --> "_".pcdata_7bit327,10676 -pcdata_7bit( 95 ) --> "_".pcdata_7bit327,10676 -pcdata_7bit( 96 ) --> "`".pcdata_7bit328,10704 -pcdata_7bit( 96 ) --> "`".pcdata_7bit328,10704 -pcdata_7bit( 96 ) --> "`".pcdata_7bit328,10704 -pcdata_7bit( 97 ) --> "a".pcdata_7bit329,10736 -pcdata_7bit( 97 ) --> "a".pcdata_7bit329,10736 -pcdata_7bit( 97 ) --> "a".pcdata_7bit329,10736 -pcdata_7bit( 98 ) --> "b".pcdata_7bit330,10764 -pcdata_7bit( 98 ) --> "b".pcdata_7bit330,10764 -pcdata_7bit( 98 ) --> "b".pcdata_7bit330,10764 -pcdata_7bit( 99 ) --> "c".pcdata_7bit331,10792 -pcdata_7bit( 99 ) --> "c".pcdata_7bit331,10792 -pcdata_7bit( 99 ) --> "c".pcdata_7bit331,10792 -pcdata_7bit( 100 ) --> "d".pcdata_7bit332,10820 -pcdata_7bit( 100 ) --> "d".pcdata_7bit332,10820 -pcdata_7bit( 100 ) --> "d".pcdata_7bit332,10820 -pcdata_7bit( 101 ) --> "e".pcdata_7bit333,10849 -pcdata_7bit( 101 ) --> "e".pcdata_7bit333,10849 -pcdata_7bit( 101 ) --> "e".pcdata_7bit333,10849 -pcdata_7bit( 102 ) --> "f".pcdata_7bit334,10878 -pcdata_7bit( 102 ) --> "f".pcdata_7bit334,10878 -pcdata_7bit( 102 ) --> "f".pcdata_7bit334,10878 -pcdata_7bit( 103 ) --> "g".pcdata_7bit335,10907 -pcdata_7bit( 103 ) --> "g".pcdata_7bit335,10907 -pcdata_7bit( 103 ) --> "g".pcdata_7bit335,10907 -pcdata_7bit( 104 ) --> "h".pcdata_7bit336,10936 -pcdata_7bit( 104 ) --> "h".pcdata_7bit336,10936 -pcdata_7bit( 104 ) --> "h".pcdata_7bit336,10936 -pcdata_7bit( 105 ) --> "i".pcdata_7bit337,10965 -pcdata_7bit( 105 ) --> "i".pcdata_7bit337,10965 -pcdata_7bit( 105 ) --> "i".pcdata_7bit337,10965 -pcdata_7bit( 106 ) --> "j".pcdata_7bit338,10994 -pcdata_7bit( 106 ) --> "j".pcdata_7bit338,10994 -pcdata_7bit( 106 ) --> "j".pcdata_7bit338,10994 -pcdata_7bit( 107 ) --> "k".pcdata_7bit339,11023 -pcdata_7bit( 107 ) --> "k".pcdata_7bit339,11023 -pcdata_7bit( 107 ) --> "k".pcdata_7bit339,11023 -pcdata_7bit( 108 ) --> "l".pcdata_7bit340,11052 -pcdata_7bit( 108 ) --> "l".pcdata_7bit340,11052 -pcdata_7bit( 108 ) --> "l".pcdata_7bit340,11052 -pcdata_7bit( 109 ) --> "m".pcdata_7bit341,11081 -pcdata_7bit( 109 ) --> "m".pcdata_7bit341,11081 -pcdata_7bit( 109 ) --> "m".pcdata_7bit341,11081 -pcdata_7bit( 110 ) --> "n".pcdata_7bit342,11110 -pcdata_7bit( 110 ) --> "n".pcdata_7bit342,11110 -pcdata_7bit( 110 ) --> "n".pcdata_7bit342,11110 -pcdata_7bit( 111 ) --> "o".pcdata_7bit343,11139 -pcdata_7bit( 111 ) --> "o".pcdata_7bit343,11139 -pcdata_7bit( 111 ) --> "o".pcdata_7bit343,11139 -pcdata_7bit( 112 ) --> "p".pcdata_7bit344,11168 -pcdata_7bit( 112 ) --> "p".pcdata_7bit344,11168 -pcdata_7bit( 112 ) --> "p".pcdata_7bit344,11168 -pcdata_7bit( 113 ) --> "q".pcdata_7bit345,11197 -pcdata_7bit( 113 ) --> "q".pcdata_7bit345,11197 -pcdata_7bit( 113 ) --> "q".pcdata_7bit345,11197 -pcdata_7bit( 114 ) --> "r".pcdata_7bit346,11226 -pcdata_7bit( 114 ) --> "r".pcdata_7bit346,11226 -pcdata_7bit( 114 ) --> "r".pcdata_7bit346,11226 -pcdata_7bit( 115 ) --> "s".pcdata_7bit347,11255 -pcdata_7bit( 115 ) --> "s".pcdata_7bit347,11255 -pcdata_7bit( 115 ) --> "s".pcdata_7bit347,11255 -pcdata_7bit( 116 ) --> "t".pcdata_7bit348,11284 -pcdata_7bit( 116 ) --> "t".pcdata_7bit348,11284 -pcdata_7bit( 116 ) --> "t".pcdata_7bit348,11284 -pcdata_7bit( 117 ) --> "u".pcdata_7bit349,11313 -pcdata_7bit( 117 ) --> "u".pcdata_7bit349,11313 -pcdata_7bit( 117 ) --> "u".pcdata_7bit349,11313 -pcdata_7bit( 118 ) --> "v".pcdata_7bit350,11342 -pcdata_7bit( 118 ) --> "v".pcdata_7bit350,11342 -pcdata_7bit( 118 ) --> "v".pcdata_7bit350,11342 -pcdata_7bit( 119 ) --> "w".pcdata_7bit351,11371 -pcdata_7bit( 119 ) --> "w".pcdata_7bit351,11371 -pcdata_7bit( 119 ) --> "w".pcdata_7bit351,11371 -pcdata_7bit( 120 ) --> "x".pcdata_7bit352,11400 -pcdata_7bit( 120 ) --> "x".pcdata_7bit352,11400 -pcdata_7bit( 120 ) --> "x".pcdata_7bit352,11400 -pcdata_7bit( 121 ) --> "y".pcdata_7bit353,11429 -pcdata_7bit( 121 ) --> "y".pcdata_7bit353,11429 -pcdata_7bit( 121 ) --> "y".pcdata_7bit353,11429 -pcdata_7bit( 122 ) --> "z".pcdata_7bit354,11458 -pcdata_7bit( 122 ) --> "z".pcdata_7bit354,11458 -pcdata_7bit( 122 ) --> "z".pcdata_7bit354,11458 -pcdata_7bit( 123 ) --> "{".pcdata_7bit355,11487 -pcdata_7bit( 123 ) --> "{".pcdata_7bit355,11487 -pcdata_7bit( 123 ) --> "{".pcdata_7bit355,11487 -pcdata_7bit( 124 ) --> "|".pcdata_7bit356,11516 -pcdata_7bit( 124 ) --> "|".pcdata_7bit356,11516 -pcdata_7bit( 124 ) --> "|".pcdata_7bit356,11516 -pcdata_7bit( 125 ) --> "}".pcdata_7bit357,11545 -pcdata_7bit( 125 ) --> "}".pcdata_7bit357,11545 -pcdata_7bit( 125 ) --> "}".pcdata_7bit357,11545 -pcdata_7bit( 126 ) --> [126].pcdata_7bit358,11574 -pcdata_7bit( 126 ) --> [126].pcdata_7bit358,11574 -pcdata_7bit( 126 ) --> [126].pcdata_7bit358,11574 -pcdata_7bit( 127 ) --> "".pcdata_7bit359,11605 -pcdata_7bit( 127 ) --> "".pcdata_7bit359,11605 -pcdata_7bit( 127 ) --> "".pcdata_7bit359,11605 -pcdata_8bits_plus( Codes ) -->pcdata_8bits_plus361,11641 -pcdata_8bits_plus( Codes ) -->pcdata_8bits_plus361,11641 -pcdata_8bits_plus( Codes ) -->pcdata_8bits_plus361,11641 -character_data_format( [], Format, Format ).character_data_format368,11884 -character_data_format( [], Format, Format ).character_data_format368,11884 -character_data_format( [_Char|_Chars], _Format, false ).character_data_format369,11930 -character_data_format( [_Char|_Chars], _Format, false ).character_data_format369,11930 -cdata_generation( [] ) --> "".cdata_generation375,12191 -cdata_generation( [] ) --> "".cdata_generation375,12191 -cdata_generation( [] ) --> "".cdata_generation375,12191 -cdata_generation( [Char|Chars] ) -->cdata_generation376,12223 -cdata_generation( [Char|Chars] ) -->cdata_generation376,12223 -cdata_generation( [Char|Chars] ) -->cdata_generation376,12223 -legal_xml_unicode( 9 ).legal_xml_unicode382,12347 -legal_xml_unicode( 9 ).legal_xml_unicode382,12347 -legal_xml_unicode( 10 ).legal_xml_unicode383,12372 -legal_xml_unicode( 10 ).legal_xml_unicode383,12372 -legal_xml_unicode( 13 ).legal_xml_unicode384,12398 -legal_xml_unicode( 13 ).legal_xml_unicode384,12398 -legal_xml_unicode( Code ) :-legal_xml_unicode385,12424 -legal_xml_unicode( Code ) :-legal_xml_unicode385,12424 -legal_xml_unicode( Code ) :-legal_xml_unicode385,12424 -legal_xml_unicode( Code ) :-legal_xml_unicode388,12485 -legal_xml_unicode( Code ) :-legal_xml_unicode388,12485 -legal_xml_unicode( Code ) :-legal_xml_unicode388,12485 -legal_xml_unicode( Code ) :-legal_xml_unicode391,12549 -legal_xml_unicode( Code ) :-legal_xml_unicode391,12549 -legal_xml_unicode( Code ) :-legal_xml_unicode391,12549 - -packages/xml/xml_pp.pl,13691 -xml_pp( xml(Attributes, Document) ) :-xml_pp22,585 -xml_pp( xml(Attributes, Document) ) :-xml_pp22,585 -xml_pp( xml(Attributes, Document) ) :-xml_pp22,585 -xml_pp( malformed(Attributes, Document) ) :-xml_pp26,742 -xml_pp( malformed(Attributes, Document) ) :-xml_pp26,742 -xml_pp( malformed(Attributes, Document) ) :-xml_pp26,742 -pp_indented( [], Indent ) :-pp_indented31,913 -pp_indented( [], Indent ) :-pp_indented31,913 -pp_indented( [], Indent ) :-pp_indented31,913 -pp_indented( List, Indent ) :-pp_indented33,980 -pp_indented( List, Indent ) :-pp_indented33,980 -pp_indented( List, Indent ) :-pp_indented33,980 -pp_indented( comment(Text), Indent ) :-pp_indented37,1078 -pp_indented( comment(Text), Indent ) :-pp_indented37,1078 -pp_indented( comment(Text), Indent ) :-pp_indented37,1078 -pp_indented( namespace(URI,Prefix,Element), Indent ) :-pp_indented39,1194 -pp_indented( namespace(URI,Prefix,Element), Indent ) :-pp_indented39,1194 -pp_indented( namespace(URI,Prefix,Element), Indent ) :-pp_indented39,1194 -pp_indented( element(Tag,Attributes,Contents), Indent ) :-pp_indented45,1446 -pp_indented( element(Tag,Attributes,Contents), Indent ) :-pp_indented45,1446 -pp_indented( element(Tag,Attributes,Contents), Indent ) :-pp_indented45,1446 -pp_indented( instructions(Target, Processing), Indent ) :-pp_indented49,1685 -pp_indented( instructions(Target, Processing), Indent ) :-pp_indented49,1685 -pp_indented( instructions(Target, Processing), Indent ) :-pp_indented49,1685 -pp_indented( doctype(Name, DoctypeId), Indent ) :-pp_indented52,1865 -pp_indented( doctype(Name, DoctypeId), Indent ) :-pp_indented52,1865 -pp_indented( doctype(Name, DoctypeId), Indent ) :-pp_indented52,1865 -pp_indented( cdata(CData), Indent ) :-pp_indented56,2050 -pp_indented( cdata(CData), Indent ) :-pp_indented56,2050 -pp_indented( cdata(CData), Indent ) :-pp_indented56,2050 -pp_indented( pcdata(PCData), Indent ) :-pp_indented58,2164 -pp_indented( pcdata(PCData), Indent ) :-pp_indented58,2164 -pp_indented( pcdata(PCData), Indent ) :-pp_indented58,2164 -pp_indented( public(URN,URL), _Indent ) :-pp_indented60,2282 -pp_indented( public(URN,URL), _Indent ) :-pp_indented60,2282 -pp_indented( public(URN,URL), _Indent ) :-pp_indented60,2282 -pp_indented( public(URN,URL,Literals), Indent ) :-pp_indented63,2409 -pp_indented( public(URN,URL,Literals), Indent ) :-pp_indented63,2409 -pp_indented( public(URN,URL,Literals), Indent ) :-pp_indented63,2409 -pp_indented( system(URL), _Indent ) :-pp_indented66,2576 -pp_indented( system(URL), _Indent ) :-pp_indented66,2576 -pp_indented( system(URL), _Indent ) :-pp_indented66,2576 -pp_indented( system(URL,Literals), Indent ) :-pp_indented68,2668 -pp_indented( system(URL,Literals), Indent ) :-pp_indented68,2668 -pp_indented( system(URL,Literals), Indent ) :-pp_indented68,2668 -pp_indented( local, _Indent ) :-pp_indented71,2815 -pp_indented( local, _Indent ) :-pp_indented71,2815 -pp_indented( local, _Indent ) :-pp_indented71,2815 -pp_indented( local(Literals), Indent ) :-pp_indented73,2867 -pp_indented( local(Literals), Indent ) :-pp_indented73,2867 -pp_indented( local(Literals), Indent ) :-pp_indented73,2867 -pp_indented( dtd_literal(String), Indent ) :-pp_indented76,2983 -pp_indented( dtd_literal(String), Indent ) :-pp_indented76,2983 -pp_indented( dtd_literal(String), Indent ) :-pp_indented76,2983 -pp_indented( out_of_context(Tag), Indent ) :-pp_indented78,3111 -pp_indented( out_of_context(Tag), Indent ) :-pp_indented78,3111 -pp_indented( out_of_context(Tag), Indent ) :-pp_indented78,3111 -pp_indented( unparsed(String), Indent ) :-pp_indented81,3261 -pp_indented( unparsed(String), Indent ) :-pp_indented81,3261 -pp_indented( unparsed(String), Indent ) :-pp_indented81,3261 -pp_list( [], Indent ) :-pp_list85,3408 -pp_list( [], Indent ) :-pp_list85,3408 -pp_list( [], Indent ) :-pp_list85,3408 -pp_list( [H|T], Indent ) :-pp_list87,3470 -pp_list( [H|T], Indent ) :-pp_list87,3470 -pp_list( [H|T], Indent ) :-pp_list87,3470 -pp_list1( [], _Indent ) :-pp_list193,3632 -pp_list1( [], _Indent ) :-pp_list193,3632 -pp_list1( [], _Indent ) :-pp_list193,3632 -pp_list1( [H|T], Indent ) :-pp_list195,3666 -pp_list1( [H|T], Indent ) :-pp_list195,3666 -pp_list1( [H|T], Indent ) :-pp_list195,3666 -pp_attributes( [], Indent ) :-pp_attributes100,3767 -pp_attributes( [], Indent ) :-pp_attributes100,3767 -pp_attributes( [], Indent ) :-pp_attributes100,3767 -pp_attributes( [Attribute|Attributes], Indent ) :-pp_attributes102,3835 -pp_attributes( [Attribute|Attributes], Indent ) :-pp_attributes102,3835 -pp_attributes( [Attribute|Attributes], Indent ) :-pp_attributes102,3835 -pp_attributes1( [], Name=Value ) :-pp_attributes1107,3985 -pp_attributes1( [], Name=Value ) :-pp_attributes1107,3985 -pp_attributes1( [], Name=Value ) :-pp_attributes1107,3985 -pp_attributes1( [H|T], Name=Value ) :-pp_attributes1109,4061 -pp_attributes1( [H|T], Name=Value ) :-pp_attributes1109,4061 -pp_attributes1( [H|T], Name=Value ) :-pp_attributes1109,4061 -pp_name( Name ) :-pp_name114,4183 -pp_name( Name ) :-pp_name114,4183 -pp_name( Name ) :-pp_name114,4183 -possible_operator( (abolish) ).possible_operator121,4338 -possible_operator( (abolish) ).possible_operator121,4338 -possible_operator( (attribute) ).possible_operator122,4371 -possible_operator( (attribute) ).possible_operator122,4371 -possible_operator( (check_advice) ).possible_operator123,4406 -possible_operator( (check_advice) ).possible_operator123,4406 -possible_operator( (compile_command) ).possible_operator124,4444 -possible_operator( (compile_command) ).possible_operator124,4444 -possible_operator( (delay) ).possible_operator125,4485 -possible_operator( (delay) ).possible_operator125,4485 -possible_operator( (demon) ).possible_operator126,4516 -possible_operator( (demon) ).possible_operator126,4516 -possible_operator( (discontiguous) ).possible_operator127,4547 -possible_operator( (discontiguous) ).possible_operator127,4547 -possible_operator( (div) ).possible_operator128,4586 -possible_operator( (div) ).possible_operator128,4586 -possible_operator( (do) ).possible_operator129,4615 -possible_operator( (do) ).possible_operator129,4615 -possible_operator( (document_export) ).possible_operator130,4643 -possible_operator( (document_export) ).possible_operator130,4643 -possible_operator( (document_import) ).possible_operator131,4684 -possible_operator( (document_import) ).possible_operator131,4684 -possible_operator( (dy) ).possible_operator132,4725 -possible_operator( (dy) ).possible_operator132,4725 -possible_operator( (dynamic) ).possible_operator133,4753 -possible_operator( (dynamic) ).possible_operator133,4753 -possible_operator( (edb) ).possible_operator134,4786 -possible_operator( (edb) ).possible_operator134,4786 -possible_operator( (eexport) ).possible_operator135,4815 -possible_operator( (eexport) ).possible_operator135,4815 -possible_operator( (else) ).possible_operator136,4848 -possible_operator( (else) ).possible_operator136,4848 -possible_operator( (except) ).possible_operator137,4878 -possible_operator( (except) ).possible_operator137,4878 -possible_operator( (export) ).possible_operator138,4910 -possible_operator( (export) ).possible_operator138,4910 -possible_operator( (foreign_pred) ).possible_operator139,4942 -possible_operator( (foreign_pred) ).possible_operator139,4942 -possible_operator( (from) ).possible_operator140,4980 -possible_operator( (from) ).possible_operator140,4980 -possible_operator( (from_chars) ).possible_operator141,5010 -possible_operator( (from_chars) ).possible_operator141,5010 -possible_operator( (from_file) ).possible_operator142,5046 -possible_operator( (from_file) ).possible_operator142,5046 -possible_operator( (from_stream) ).possible_operator143,5081 -possible_operator( (from_stream) ).possible_operator143,5081 -possible_operator( (global) ).possible_operator144,5118 -possible_operator( (global) ).possible_operator144,5118 -possible_operator( (help) ).possible_operator145,5150 -possible_operator( (help) ).possible_operator145,5150 -possible_operator( (hilog) ).possible_operator146,5180 -possible_operator( (hilog) ).possible_operator146,5180 -possible_operator( (if) ).possible_operator147,5211 -possible_operator( (if) ).possible_operator147,5211 -possible_operator( (import) ).possible_operator148,5239 -possible_operator( (import) ).possible_operator148,5239 -possible_operator( (index) ).possible_operator149,5271 -possible_operator( (index) ).possible_operator149,5271 -possible_operator( (initialization) ).possible_operator150,5302 -possible_operator( (initialization) ).possible_operator150,5302 -possible_operator( (is) ).possible_operator151,5342 -possible_operator( (is) ).possible_operator151,5342 -possible_operator( (listing) ).possible_operator152,5370 -possible_operator( (listing) ).possible_operator152,5370 -possible_operator( (local) ).possible_operator153,5403 -possible_operator( (local) ).possible_operator153,5403 -possible_operator( (locked) ).possible_operator154,5434 -possible_operator( (locked) ).possible_operator154,5434 -possible_operator( (meta_predicate) ).possible_operator155,5466 -possible_operator( (meta_predicate) ).possible_operator155,5466 -possible_operator( (mod) ).possible_operator156,5506 -possible_operator( (mod) ).possible_operator156,5506 -possible_operator( (mode) ).possible_operator157,5535 -possible_operator( (mode) ).possible_operator157,5535 -possible_operator( (module_transparent) ).possible_operator158,5565 -possible_operator( (module_transparent) ).possible_operator158,5565 -possible_operator( (multifile) ).possible_operator159,5609 -possible_operator( (multifile) ).possible_operator159,5609 -possible_operator( (namic) ).possible_operator160,5644 -possible_operator( (namic) ).possible_operator160,5644 -possible_operator( (nocheck_advice) ).possible_operator161,5675 -possible_operator( (nocheck_advice) ).possible_operator161,5675 -possible_operator( (nospy) ).possible_operator162,5715 -possible_operator( (nospy) ).possible_operator162,5715 -possible_operator( (not) ).possible_operator163,5746 -possible_operator( (not) ).possible_operator163,5746 -possible_operator( (of) ).possible_operator164,5775 -possible_operator( (of) ).possible_operator164,5775 -possible_operator( (once) ).possible_operator165,5803 -possible_operator( (once) ).possible_operator165,5803 -possible_operator( (onto_chars) ).possible_operator166,5833 -possible_operator( (onto_chars) ).possible_operator166,5833 -possible_operator( (onto_file) ).possible_operator167,5869 -possible_operator( (onto_file) ).possible_operator167,5869 -possible_operator( (onto_stream) ).possible_operator168,5904 -possible_operator( (onto_stream) ).possible_operator168,5904 -possible_operator( (parallel) ).possible_operator169,5941 -possible_operator( (parallel) ).possible_operator169,5941 -possible_operator( (public) ).possible_operator170,5975 -possible_operator( (public) ).possible_operator170,5975 -possible_operator( (r) ).possible_operator171,6007 -possible_operator( (r) ).possible_operator171,6007 -possible_operator( (rem) ).possible_operator172,6034 -possible_operator( (rem) ).possible_operator172,6034 -possible_operator( (skipped) ).possible_operator173,6063 -possible_operator( (skipped) ).possible_operator173,6063 -possible_operator( (spy) ).possible_operator174,6096 -possible_operator( (spy) ).possible_operator174,6096 -possible_operator( (table) ).possible_operator175,6125 -possible_operator( (table) ).possible_operator175,6125 -possible_operator( (then) ).possible_operator176,6156 -possible_operator( (then) ).possible_operator176,6156 -possible_operator( (thread_local) ).possible_operator177,6186 -possible_operator( (thread_local) ).possible_operator177,6186 -possible_operator( (ti) ).possible_operator178,6224 -possible_operator( (ti) ).possible_operator178,6224 -possible_operator( (ti_off) ).possible_operator179,6252 -possible_operator( (ti_off) ).possible_operator179,6252 -possible_operator( (traceable) ).possible_operator180,6284 -possible_operator( (traceable) ).possible_operator180,6284 -possible_operator( (unskipped) ).possible_operator181,6319 -possible_operator( (unskipped) ).possible_operator181,6319 -possible_operator( (untraceable) ).possible_operator182,6354 -possible_operator( (untraceable) ).possible_operator182,6354 -possible_operator( (use_subsumptive_tabling) ).possible_operator183,6391 -possible_operator( (use_subsumptive_tabling) ).possible_operator183,6391 -possible_operator( (use_variant_tabling) ).possible_operator184,6440 -possible_operator( (use_variant_tabling) ).possible_operator184,6440 -possible_operator( (volatile) ).possible_operator185,6485 -possible_operator( (volatile) ).possible_operator185,6485 -possible_operator( (with) ).possible_operator186,6519 -possible_operator( (with) ).possible_operator186,6519 -possible_operator( (with_input_from_chars) ).possible_operator187,6549 -possible_operator( (with_input_from_chars) ).possible_operator187,6549 -possible_operator( (with_output_to_chars) ).possible_operator188,6596 -possible_operator( (with_output_to_chars) ).possible_operator188,6596 -possible_operator( (xor) ).possible_operator189,6642 -possible_operator( (xor) ).possible_operator189,6642 -pp_indent( 0 ).pp_indent191,6673 -pp_indent( 0 ).pp_indent191,6673 -pp_indent( s(N) ) :-pp_indent192,6690 -pp_indent( s(N) ) :-pp_indent192,6690 -pp_indent( s(N) ) :-pp_indent192,6690 -pp_comma :-pp_comma196,6748 -pp_comma_sp :-pp_comma_sp199,6779 - -packages/xml/xml_utilities.pl,8214 -empty_map( [] ).empty_map26,682 -empty_map( [] ).empty_map26,682 -map_member( Key0, [Key1-Data1|Rest], Data0 ) :-map_member33,850 -map_member( Key0, [Key1-Data1|Rest], Data0 ) :-map_member33,850 -map_member( Key0, [Key1-Data1|Rest], Data0 ) :-map_member33,850 -map_store( [], Key, Data, [Key-Data] ).map_store47,1212 -map_store( [], Key, Data, [Key-Data] ).map_store47,1212 -map_store( [Key0-Data0|Map0], Key, Data, Map ) :-map_store48,1253 -map_store( [Key0-Data0|Map0], Key, Data, Map ) :-map_store48,1253 -map_store( [Key0-Data0|Map0], Key, Data, Map ) :-map_store48,1253 -context_update( current_namespace, Context0, URI, Context1 ) :-context_update89,2337 -context_update( current_namespace, Context0, URI, Context1 ) :-context_update89,2337 -context_update( current_namespace, Context0, URI, Context1 ) :-context_update89,2337 -context_update( element, Context0, Tag, Context1 ) :-context_update94,2615 -context_update( element, Context0, Tag, Context1 ) :-context_update94,2615 -context_update( element, Context0, Tag, Context1 ) :-context_update94,2615 -context_update( default_namespace, Context0, URI, Context1 ):-context_update99,2888 -context_update( default_namespace, Context0, URI, Context1 ):-context_update99,2888 -context_update( default_namespace, Context0, URI, Context1 ):-context_update99,2888 -context_update( space_preserve, Context0, Boolean, Context1 ):-context_update104,3165 -context_update( space_preserve, Context0, Boolean, Context1 ):-context_update104,3165 -context_update( space_preserve, Context0, Boolean, Context1 ):-context_update104,3165 -context_update( ns_prefix(Prefix), Context0, URI, Context1 ) :-context_update109,3446 -context_update( ns_prefix(Prefix), Context0, URI, Context1 ) :-context_update109,3446 -context_update( ns_prefix(Prefix), Context0, URI, Context1 ) :-context_update109,3446 -context_update( entity(Name), Context0, String, Context1 ) :-context_update115,3783 -context_update( entity(Name), Context0, String, Context1 ) :-context_update115,3783 -context_update( entity(Name), Context0, String, Context1 ) :-context_update115,3783 -remove_attribute_prefixes( Context ) :-remove_attribute_prefixes122,4117 -remove_attribute_prefixes( Context ) :-remove_attribute_prefixes122,4117 -remove_attribute_prefixes( Context ) :-remove_attribute_prefixes122,4117 -current_tag( Context, Tag ) :-current_tag126,4255 -current_tag( Context, Tag ) :-current_tag126,4255 -current_tag( Context, Tag ) :-current_tag126,4255 -current_namespace( Context, Current ) :-current_namespace130,4385 -current_namespace( Context, Current ) :-current_namespace130,4385 -current_namespace( Context, Current ) :-current_namespace130,4385 -default_namespace( Context, Default ) :-default_namespace134,4524 -default_namespace( Context, Default ) :-default_namespace134,4524 -default_namespace( Context, Default ) :-default_namespace134,4524 -space_preserve( Context ) :-space_preserve138,4663 -space_preserve( Context ) :-space_preserve138,4663 -space_preserve( Context ) :-space_preserve138,4663 -specific_namespace( Prefix, Context, URI ) :-specific_namespace142,4787 -specific_namespace( Prefix, Context, URI ) :-specific_namespace142,4787 -specific_namespace( Prefix, Context, URI ) :-specific_namespace142,4787 -defined_entity( Reference, Context, String ) :-defined_entity147,4972 -defined_entity( Reference, Context, String ) :-defined_entity147,4972 -defined_entity( Reference, Context, String ) :-defined_entity147,4972 -close_context( Context, Terms, WellFormed ) :-close_context152,5164 -close_context( Context, Terms, WellFormed ) :-close_context152,5164 -close_context( Context, Terms, WellFormed ) :-close_context152,5164 -close_context1( void, [], true ).close_context1157,5357 -close_context1( void, [], true ).close_context1157,5357 -close_context1( tag(TagChars), [out_of_context(Tag)], false ) :-close_context1158,5392 -close_context1( tag(TagChars), [out_of_context(Tag)], false ) :-close_context1158,5392 -close_context1( tag(TagChars), [out_of_context(Tag)], false ) :-close_context1158,5392 -pp_string( Chars ) :-pp_string176,5967 -pp_string( Chars ) :-pp_string176,5967 -pp_string( Chars ) :-pp_string176,5967 -not_shorthand( Char ) :-not_shorthand186,6139 -not_shorthand( Char ) :-not_shorthand186,6139 -not_shorthand( Char ) :-not_shorthand186,6139 -not_shorthand( Char ) :-not_shorthand188,6179 -not_shorthand( Char ) :-not_shorthand188,6179 -not_shorthand( Char ) :-not_shorthand188,6179 -not_shorthand( 126 ). % ~ gives syntax errors in LPA Prolognot_shorthand190,6217 -not_shorthand( 126 ). % ~ gives syntax errors in LPA Prolognot_shorthand190,6217 -put_quote :-put_quote192,6280 -pp_string1( [] ).pp_string1195,6314 -pp_string1( [] ).pp_string1195,6314 -pp_string1( [Char|Chars] ) :-pp_string1196,6333 -pp_string1( [Char|Chars] ) :-pp_string1196,6333 -pp_string1( [Char|Chars] ) :-pp_string1196,6333 -xml_declaration_attributes_valid( [] ).xml_declaration_attributes_valid210,6632 -xml_declaration_attributes_valid( [] ).xml_declaration_attributes_valid210,6632 -xml_declaration_attributes_valid( [Name=Value|Attributes] ) :-xml_declaration_attributes_valid211,6673 -xml_declaration_attributes_valid( [Name=Value|Attributes] ) :-xml_declaration_attributes_valid211,6673 -xml_declaration_attributes_valid( [Name=Value|Attributes] ) :-xml_declaration_attributes_valid211,6673 -xml_declaration_attribute_valid( Name, Value ) :-xml_declaration_attribute_valid215,6839 -xml_declaration_attribute_valid( Name, Value ) :-xml_declaration_attribute_valid215,6839 -xml_declaration_attribute_valid( Name, Value ) :-xml_declaration_attribute_valid215,6839 -canonical_xml_declaration_attribute( version, "1.0" ).canonical_xml_declaration_attribute219,6983 -canonical_xml_declaration_attribute( version, "1.0" ).canonical_xml_declaration_attribute219,6983 -canonical_xml_declaration_attribute( standalone, "yes" ).canonical_xml_declaration_attribute220,7039 -canonical_xml_declaration_attribute( standalone, "yes" ).canonical_xml_declaration_attribute220,7039 -canonical_xml_declaration_attribute( standalone, "no" ).canonical_xml_declaration_attribute221,7098 -canonical_xml_declaration_attribute( standalone, "no" ).canonical_xml_declaration_attribute221,7098 -canonical_xml_declaration_attribute( encoding, "utf-8" ).canonical_xml_declaration_attribute223,7217 -canonical_xml_declaration_attribute( encoding, "utf-8" ).canonical_xml_declaration_attribute223,7217 -canonical_xml_declaration_attribute( encoding, "us-ascii" ).canonical_xml_declaration_attribute226,7390 -canonical_xml_declaration_attribute( encoding, "us-ascii" ).canonical_xml_declaration_attribute226,7390 -canonical_xml_declaration_attribute( encoding, "ascii" ).canonical_xml_declaration_attribute227,7452 -canonical_xml_declaration_attribute( encoding, "ascii" ).canonical_xml_declaration_attribute227,7452 -canonical_xml_declaration_attribute( encoding, "iso-8859-1" ).canonical_xml_declaration_attribute228,7511 -canonical_xml_declaration_attribute( encoding, "iso-8859-1" ).canonical_xml_declaration_attribute228,7511 -canonical_xml_declaration_attribute( encoding, "iso-8859-2" ).canonical_xml_declaration_attribute229,7575 -canonical_xml_declaration_attribute( encoding, "iso-8859-2" ).canonical_xml_declaration_attribute229,7575 -canonical_xml_declaration_attribute( encoding, "iso-8859-15" ).canonical_xml_declaration_attribute230,7639 -canonical_xml_declaration_attribute( encoding, "iso-8859-15" ).canonical_xml_declaration_attribute230,7639 -canonical_xml_declaration_attribute( encoding, "windows-1252" ).canonical_xml_declaration_attribute231,7704 -canonical_xml_declaration_attribute( encoding, "windows-1252" ).canonical_xml_declaration_attribute231,7704 -lowercase( [], [] ).lowercase238,8054 -lowercase( [], [] ).lowercase238,8054 -lowercase( [Char|Chars], [Lower|LowerCase] ) :-lowercase239,8076 -lowercase( [Char|Chars], [Lower|LowerCase] ) :-lowercase239,8076 -lowercase( [Char|Chars], [Lower|LowerCase] ) :-lowercase239,8076 -chars( Chars, Plus, Minus ) :-chars512,21834 -chars( Chars, Plus, Minus ) :-chars512,21834 -chars( Chars, Plus, Minus ) :-chars512,21834 - -packages/yap-lbfgs/doc/index.html,0 - -packages/yap-lbfgs/ex1.pl,354 -evaluate(FX,_N,_Step) :-evaluate24,843 -evaluate(FX,_N,_Step) :-evaluate24,843 -evaluate(FX,_N,_Step) :-evaluate24,843 -progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls,0) :-progress33,1114 -progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls,0) :-progress33,1114 -progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls,0) :-progress33,1114 -demo :-demo39,1319 - -packages/yap-lbfgs/ex2.pl,354 -evaluate(FX,_N,_Step) :-evaluate24,843 -evaluate(FX,_N,_Step) :-evaluate24,843 -evaluate(FX,_N,_Step) :-evaluate24,843 -progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls,0) :-progress38,1205 -progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls,0) :-progress38,1205 -progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls,0) :-progress38,1205 -demo :-demo45,1448 - -packages/yap-lbfgs/lbfgs.pl,1532 -evaluate(FX,_N,_Step) :-evaluate98,3030 -evaluate(FX,_N,_Step) :-evaluate98,3030 -evaluate(FX,_N,_Step) :-evaluate98,3030 -progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls,0) :-progress107,3300 -progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls,0) :-progress107,3300 -progress(FX,X_Norm,G_Norm,Step,_N,Iteration,Ls,0) :-progress107,3300 -demo :-demo115,3537 -:- dynamic initialized/0.dynamic155,4584 -:- dynamic initialized/0.dynamic155,4584 -optimizer_initialize(N,Call_Evaluate,Call_Progress) :-optimizer_initialize168,4867 -optimizer_initialize(N,Call_Evaluate,Call_Progress) :-optimizer_initialize168,4867 -optimizer_initialize(N,Call_Evaluate,Call_Progress) :-optimizer_initialize168,4867 -optimizer_initialize(N,Module,Call_Evaluate,Call_Progress) :-optimizer_initialize171,4982 -optimizer_initialize(N,Module,Call_Evaluate,Call_Progress) :-optimizer_initialize171,4982 -optimizer_initialize(N,Module,Call_Evaluate,Call_Progress) :-optimizer_initialize171,4982 -optimizer_initialize(N,Module,Call_Evaluate,Call_Progress) :-optimizer_initialize175,5137 -optimizer_initialize(N,Module,Call_Evaluate,Call_Progress) :-optimizer_initialize175,5137 -optimizer_initialize(N,Module,Call_Evaluate,Call_Progress) :-optimizer_initialize175,5137 -optimizer_finalize :-optimizer_finalize201,6034 -optimizer_parameters :-optimizer_parameters236,8229 -print_param(Name,Value,Text,Dom) :-print_param277,10861 -print_param(Name,Value,Text,Dom) :-print_param277,10861 -print_param(Name,Value,Text,Dom) :-print_param277,10861 - -packages/yap-lbfgs/liblbfgs-1.10/AUTHORS,0 - -packages/yap-lbfgs/liblbfgs-1.10/ChangeLog,90 - - Defined LBFGS_SUCCESS status code as zero; removed unused constants,constants63,2678 - -packages/yap-lbfgs/liblbfgs-1.10/COPYING,0 - -packages/yap-lbfgs/liblbfgs-1.10/include/lbfgs.h,4834 -#define __LBFGS_H____LBFGS_H__30,1272 -#define LBFGS_FLOAT LBFGS_FLOAT40,1445 -#define LBFGS_IEEE_FLOAT LBFGS_IEEE_FLOAT47,1596 -typedef float lbfgsfloatval_t;lbfgsfloatval_t51,1680 -typedef double lbfgsfloatval_t;lbfgsfloatval_t54,1738 - LBFGS_SUCCESS = 0,LBFGS_SUCCESS77,2146 - LBFGS_CONVERGENCE = 0,LBFGS_CONVERGENCE78,2169 - LBFGS_STOP,LBFGS_STOP79,2196 - LBFGS_ALREADY_MINIMIZED,LBFGS_ALREADY_MINIMIZED81,2286 - LBFGSERR_UNKNOWNERROR = -1024,LBFGSERR_UNKNOWNERROR84,2342 - LBFGSERR_LOGICERROR,LBFGSERR_LOGICERROR86,2401 - LBFGSERR_OUTOFMEMORY,LBFGSERR_OUTOFMEMORY88,2458 - LBFGSERR_CANCELED,LBFGSERR_CANCELED90,2539 - LBFGSERR_INVALID_N,LBFGSERR_INVALID_N92,2612 - LBFGSERR_INVALID_N_SSE,LBFGSERR_INVALID_N_SSE94,2696 - LBFGSERR_INVALID_X_SSE,LBFGSERR_INVALID_X_SSE96,2780 - LBFGSERR_INVALID_EPSILON,LBFGSERR_INVALID_EPSILON98,2875 - LBFGSERR_INVALID_TESTPERIOD,LBFGSERR_INVALID_TESTPERIOD100,2969 - LBFGSERR_INVALID_DELTA,LBFGSERR_INVALID_DELTA102,3067 - LBFGSERR_INVALID_LINESEARCH,LBFGSERR_INVALID_LINESEARCH104,3165 - LBFGSERR_INVALID_MINSTEP,LBFGSERR_INVALID_MINSTEP106,3266 - LBFGSERR_INVALID_MAXSTEP,LBFGSERR_INVALID_MAXSTEP108,3364 - LBFGSERR_INVALID_FTOL,LBFGSERR_INVALID_FTOL110,3458 - LBFGSERR_INVALID_WOLFE,LBFGSERR_INVALID_WOLFE112,3550 - LBFGSERR_INVALID_GTOL,LBFGSERR_INVALID_GTOL114,3642 - LBFGSERR_INVALID_XTOL,LBFGSERR_INVALID_XTOL116,3733 - LBFGSERR_INVALID_MAXLINESEARCH,LBFGSERR_INVALID_MAXLINESEARCH118,3834 - LBFGSERR_INVALID_ORTHANTWISE,LBFGSERR_INVALID_ORTHANTWISE120,3943 - LBFGSERR_INVALID_ORTHANTWISE_START,LBFGSERR_INVALID_ORTHANTWISE_START122,4054 - LBFGSERR_INVALID_ORTHANTWISE_END,LBFGSERR_INVALID_ORTHANTWISE_END124,4169 - LBFGSERR_OUTOFINTERVAL,LBFGSERR_OUTOFINTERVAL126,4280 - LBFGSERR_INCORRECT_TMINMAX,LBFGSERR_INCORRECT_TMINMAX129,4412 - LBFGSERR_ROUNDING_ERROR,LBFGSERR_ROUNDING_ERROR132,4585 - LBFGSERR_MINIMUMSTEP,LBFGSERR_MINIMUMSTEP134,4695 - LBFGSERR_MAXIMUMSTEP,LBFGSERR_MAXIMUMSTEP136,4801 - LBFGSERR_MAXIMUMLINESEARCH,LBFGSERR_MAXIMUMLINESEARCH138,4905 - LBFGSERR_MAXIMUMITERATION,LBFGSERR_MAXIMUMITERATION140,5012 - LBFGSERR_WIDTHTOOSMALL,LBFGSERR_WIDTHTOOSMALL143,5144 - LBFGSERR_INVALIDPARAMETERS,LBFGSERR_INVALIDPARAMETERS145,5235 - LBFGSERR_INCREASEGRADIENT,LBFGSERR_INCREASEGRADIENT147,5347 - LBFGS_LINESEARCH_DEFAULT = 0,LBFGS_LINESEARCH_DEFAULT155,5479 - LBFGS_LINESEARCH_MORETHUENTE = 0,LBFGS_LINESEARCH_MORETHUENTE157,5572 - LBFGS_LINESEARCH_BACKTRACKING_ARMIJO = 1,LBFGS_LINESEARCH_BACKTRACKING_ARMIJO167,5998 - LBFGS_LINESEARCH_BACKTRACKING = 2,LBFGS_LINESEARCH_BACKTRACKING169,6123 - LBFGS_LINESEARCH_BACKTRACKING_WOLFE = 2,LBFGS_LINESEARCH_BACKTRACKING_WOLFE180,6605 - LBFGS_LINESEARCH_BACKTRACKING_STRONG_WOLFE = 3,LBFGS_LINESEARCH_BACKTRACKING_STRONG_WOLFE191,7096 - int m;m208,7781 - int m;__anon498::m208,7781 - lbfgsfloatval_t epsilon;epsilon218,8125 - lbfgsfloatval_t epsilon;__anon498::epsilon218,8125 - int past;past227,8497 - int past;__anon498::past227,8497 - lbfgsfloatval_t delta;delta239,8953 - lbfgsfloatval_t delta;__anon498::delta239,8953 - int max_iterations;max_iterations249,9351 - int max_iterations;__anon498::max_iterations249,9351 - int linesearch;linesearch256,9537 - int linesearch;__anon498::linesearch256,9537 - int max_linesearch;max_linesearch263,9803 - int max_linesearch;__anon498::max_linesearch263,9803 - lbfgsfloatval_t min_step;min_step272,10165 - lbfgsfloatval_t min_step;__anon498::min_step272,10165 - lbfgsfloatval_t max_step;max_step281,10513 - lbfgsfloatval_t max_step;__anon498::max_step281,10513 - lbfgsfloatval_t ftol;ftol288,10745 - lbfgsfloatval_t ftol;__anon498::ftol288,10745 - lbfgsfloatval_t wolfe;wolfe299,11188 - lbfgsfloatval_t wolfe;__anon498::wolfe299,11188 - lbfgsfloatval_t gtol;gtol311,11743 - lbfgsfloatval_t gtol;__anon498::gtol311,11743 - lbfgsfloatval_t xtol;xtol320,12143 - lbfgsfloatval_t xtol;__anon498::xtol320,12143 - lbfgsfloatval_t orthantwise_c;orthantwise_c335,12924 - lbfgsfloatval_t orthantwise_c;__anon498::orthantwise_c335,12924 - int orthantwise_start;orthantwise_start349,13603 - int orthantwise_start;__anon498::orthantwise_start349,13603 - int orthantwise_end;orthantwise_end358,13954 - int orthantwise_end;__anon498::orthantwise_end358,13954 -} lbfgs_parameter_t;lbfgs_parameter_t359,13991 -typedef lbfgsfloatval_t (*lbfgs_evaluate_t)(lbfgs_evaluate_t379,14909 -typedef int (*lbfgs_progress_t)(lbfgs_progress_t407,16151 - -packages/yap-lbfgs/liblbfgs-1.10/INSTALL,656 -unlimited permission to copy, distribute and modify it.copy8,214 - If you need to do unusual things to compile the package, please trypackage30,1154 -`/usr/local/bin', `/usr/local/man', etc. You can specify anbin106,4447 -find the X include and library files automatically, but if it doesn't,automatically136,5866 -architectures, `configure' can figure that out, but if it prints aarchitectures146,6306 -message saying it cannot guess the machine type, give it thetype147,6373 -platform different from the build platform, you should specify theplatform166,7059 -`configure' looks for `PREFIX/share/config.site' if it exists, thenexists176,7469 - -packages/yap-lbfgs/liblbfgs-1.10/lib/arithmetic_ansi.h,1293 -#define fsigndiff(fsigndiff32,1303 -#define fsigndiff(fsigndiff34,1389 -inline static void* vecalloc(size_t size)vecalloc37,1475 -inline static void vecfree(void *memblock)vecfree46,1639 -inline static void vecset(lbfgsfloatval_t *x, const lbfgsfloatval_t c, const int n)vecset51,1707 -inline static void veccpy(lbfgsfloatval_t *y, const lbfgsfloatval_t *x, const int n)veccpy60,1864 -inline static void vecncpy(lbfgsfloatval_t *y, const lbfgsfloatval_t *x, const int n)vecncpy69,2021 -inline static void vecadd(lbfgsfloatval_t *y, const lbfgsfloatval_t *x, const lbfgsfloatval_t c, const int n)vecadd78,2180 -inline static void vecdiff(lbfgsfloatval_t *z, const lbfgsfloatval_t *x, const lbfgsfloatval_t *y, const int n)vecdiff87,2367 -inline static void vecscale(lbfgsfloatval_t *y, const lbfgsfloatval_t c, const int n)vecscale96,2558 -inline static void vecmul(lbfgsfloatval_t *y, const lbfgsfloatval_t *x, const int n)vecmul105,2714 -inline static void vecdot(lbfgsfloatval_t* s, const lbfgsfloatval_t *x, const lbfgsfloatval_t *y, const int n)vecdot114,2872 -inline static void vec2norm(lbfgsfloatval_t* s, const lbfgsfloatval_t *x, const int n)vec2norm123,3073 -inline static void vec2norminv(lbfgsfloatval_t* s, const lbfgsfloatval_t *x, const int n)vec2norminv129,3225 - -packages/yap-lbfgs/liblbfgs-1.10/lib/arithmetic_sse_double.h,598 -inline static void* vecalloc(size_t size)vecalloc42,1463 -inline static void vecfree(void *memblock)vecfree60,1908 -#define fsigndiff(fsigndiff69,2034 -#define vecset(vecset72,2121 -#define veccpy(veccpy84,2403 -#define vecncpy(vecncpy99,2836 -#define vecadd(vecadd122,3606 -#define vecdiff(vecdiff140,4165 -#define vecscale(vecscale163,4954 -#define vecmul(vecmul177,5336 -#define __horizontal_sum(__horizontal_sum207,6259 -#define __horizontal_sum(__horizontal_sum215,6436 -#define vecdot(vecdot225,6679 -#define vec2norm(vec2norm247,7373 -#define vec2norminv(vec2norminv271,8067 - -packages/yap-lbfgs/liblbfgs-1.10/lib/arithmetic_sse_float.h,635 -#define fsigndiff(fsigndiff43,1504 -#define fsigndiff(fsigndiff45,1590 -inline static void* vecalloc(size_t size)vecalloc48,1676 -inline static void vecfree(void *memblock)vecfree66,2121 -#define vecset(vecset71,2198 -#define veccpy(veccpy83,2484 -#define vecncpy(vecncpy98,2922 -#define vecadd(vecadd119,3614 -#define vecdiff(vecdiff137,4168 -#define vecscale(vecscale160,4962 -#define vecmul(vecmul174,5341 -#define __horizontal_sum(__horizontal_sum204,6269 -#define __horizontal_sum(__horizontal_sum212,6446 -#define vecdot(vecdot222,6689 -#define vec2norm(vec2norm243,7318 -#define vec2norminv(vec2norminv272,8211 - -packages/yap-lbfgs/liblbfgs-1.10/lib/lbfgs.c,2429 -#define inline inline76,2983 -#define min2(min293,3422 -#define max2(max294,3471 -#define max3(max395,3520 -struct tag_callback_data {tag_callback_data97,3572 - int n;n98,3599 - int n;tag_callback_data::n98,3599 - void *instance;instance99,3610 - void *instance;tag_callback_data::instance99,3610 - lbfgs_evaluate_t proc_evaluate;proc_evaluate100,3630 - lbfgs_evaluate_t proc_evaluate;tag_callback_data::proc_evaluate100,3630 - lbfgs_progress_t proc_progress;proc_progress101,3666 - lbfgs_progress_t proc_progress;tag_callback_data::proc_progress101,3666 -typedef struct tag_callback_data callback_data_t;callback_data_t103,3705 -struct tag_iteration_data {tag_iteration_data105,3756 - lbfgsfloatval_t alpha;alpha106,3784 - lbfgsfloatval_t alpha;tag_iteration_data::alpha106,3784 - lbfgsfloatval_t *s; /* [n] */s107,3811 - lbfgsfloatval_t *s; /* [n] */tag_iteration_data::s107,3811 - lbfgsfloatval_t *y; /* [n] */y108,3849 - lbfgsfloatval_t *y; /* [n] */tag_iteration_data::y108,3849 - lbfgsfloatval_t ys; /* vecdot(y, s) */ys109,3887 - lbfgsfloatval_t ys; /* vecdot(y, s) */tag_iteration_data::ys109,3887 -typedef struct tag_iteration_data iteration_data_t;iteration_data_t111,3937 -static const lbfgs_parameter_t _defparam = {_defparam113,3990 -typedef int (*line_search_proc)(line_search_proc122,4194 -static int round_out_variables(int n)round_out_variables218,6368 -lbfgsfloatval_t* lbfgs_malloc(int n)lbfgs_malloc227,6488 -void lbfgs_free(lbfgsfloatval_t *x)lbfgs_free235,6725 -void lbfgs_parameter_init(lbfgs_parameter_t *param)lbfgs_parameter_init240,6782 -int lbfgs(lbfgs245,6886 -static int line_search_backtracking(line_search_backtracking645,18922 -static int line_search_backtracking_owlqn(line_search_backtracking_owlqn738,21445 -static int line_search_morethuente(line_search_morethuente812,23455 -#define USES_MINIMIZER USES_MINIMIZER1008,29831 -#define CUBIC_MINIMIZER(CUBIC_MINIMIZER1021,30289 -#define CUBIC_MINIMIZER2(CUBIC_MINIMIZER21049,31246 -#define QUARD_MINIMIZER(QUARD_MINIMIZER1080,32253 -#define QUARD_MINIMIZER2(QUARD_MINIMIZER21092,32693 -static int update_trial_interval(update_trial_interval1125,34267 -static lbfgsfloatval_t owlqn_x1norm(owlqn_x1norm1298,39454 -static void owlqn_pseudo_gradient(owlqn_pseudo_gradient1314,39696 -static void owlqn_project(owlqn_project1357,40689 - -packages/yap-lbfgs/liblbfgs-1.10/README,0 - -packages/yap-lbfgs/yap_lbfgs.c,1690 -#define OPTIMIZER_STATUS_NONE OPTIMIZER_STATUS_NONE27,835 -#define OPTIMIZER_STATUS_INITIALIZED OPTIMIZER_STATUS_INITIALIZED28,874 -#define OPTIMIZER_STATUS_RUNNING OPTIMIZER_STATUS_RUNNING29,913 -#define OPTIMIZER_STATUS_CB_EVAL OPTIMIZER_STATUS_CB_EVAL30,952 -#define OPTIMIZER_STATUS_CB_PROGRESS OPTIMIZER_STATUS_CB_PROGRESS31,991 -int optimizer_status=OPTIMIZER_STATUS_NONE; // the internal stateoptimizer_status35,1069 -int n; // the size of the parameter vectorn36,1137 -lbfgsfloatval_t *x; // pointer to the parameter vector x[0],...,x[n-1]x37,1219 -lbfgsfloatval_t *g; // pointer to the gradient vector g[0],...,g[n-1]g38,1316 -lbfgs_parameter_t param; // the parameters used for lbfgsparam39,1412 -YAP_Functor fcall3, fprogress8;fcall341,1492 -YAP_Functor fcall3, fprogress8;fprogress841,1492 -static lbfgsfloatval_t evaluate(evaluate43,1525 -static int progress(progress90,2546 -static YAP_Bool set_x_value(void) {set_x_value145,3878 -static YAP_Bool get_x_value(void) {get_x_value182,4688 -static YAP_Bool set_g_value(void) {set_g_value213,5370 -static YAP_Bool get_g_value(void) {get_g_value250,6168 -static YAP_Bool optimizer_initialize(void) {optimizer_initialize314,8365 -static YAP_Bool optimizer_run(void) {optimizer_run356,9236 -static YAP_Bool optimizer_finalize( void ) {optimizer_finalize394,10229 -static YAP_Bool optimizer_set_parameter( void ) {optimizer_set_parameter419,10825 -static YAP_Bool optimizer_get_parameter( void ) {optimizer_get_parameter579,14656 -void init_lbfgs_predicates( void )init_lbfgs_predicates629,16549 - -pl/absf.yap,13772 -absolute_file_name(File,TrueFileName,Opts) :-absolute_file_name140,4782 -absolute_file_name(File,TrueFileName,Opts) :-absolute_file_name140,4782 -absolute_file_name(File,TrueFileName,Opts) :-absolute_file_name140,4782 -absolute_file_name(File,Opts,TrueFileName) :-absolute_file_name147,4974 -absolute_file_name(File,Opts,TrueFileName) :-absolute_file_name147,4974 -absolute_file_name(File,Opts,TrueFileName) :-absolute_file_name147,4974 -absolute_file_name(V,Out) :- var(V),absolute_file_name155,5322 -absolute_file_name(V,Out) :- var(V),absolute_file_name155,5322 -absolute_file_name(V,Out) :- var(V),absolute_file_name155,5322 -absolute_file_name(user,user) :- !.absolute_file_name158,5465 -absolute_file_name(user,user) :- !.absolute_file_name158,5465 -absolute_file_name(user,user) :- !.absolute_file_name158,5465 -absolute_file_name(File0,File) :-absolute_file_name159,5501 -absolute_file_name(File0,File) :-absolute_file_name159,5501 -absolute_file_name(File0,File) :-absolute_file_name159,5501 -'$full_filename'(F0, F, G) :-$full_filename162,5668 -'$full_filename'(F0, F, G) :-$full_filename162,5668 -'$full_filename'(F0, F, G) :-$full_filename162,5668 -'$absolute_file_name'(File,LOpts,TrueFileName, G) :-$absolute_file_name169,5936 -'$absolute_file_name'(File,LOpts,TrueFileName, G) :-$absolute_file_name169,5936 -'$absolute_file_name'(File,LOpts,TrueFileName, G) :-$absolute_file_name169,5936 -'$find_in_path'(user,_,user_input) :- !.$find_in_path220,8028 -'$find_in_path'(user,_,user_input) :- !.$find_in_path220,8028 -'$find_in_path'(user,_,user_input) :- !.$find_in_path220,8028 -'$find_in_path'(user_input,_,user_input) :- !.$find_in_path221,8069 -'$find_in_path'(user_input,_,user_input) :- !.$find_in_path221,8069 -'$find_in_path'(user_input,_,user_input) :- !.$find_in_path221,8069 -'$find_in_path'(user_output,_,user_ouput) :- !.$find_in_path222,8116 -'$find_in_path'(user_output,_,user_ouput) :- !.$find_in_path222,8116 -'$find_in_path'(user_output,_,user_ouput) :- !.$find_in_path222,8116 -'$find_in_path'(user_error,_,user_error) :- !.$find_in_path223,8164 -'$find_in_path'(user_error,_,user_error) :- !.$find_in_path223,8164 -'$find_in_path'(user_error,_,user_error) :- !.$find_in_path223,8164 -'$find_in_path'(Name, Opts, File) :-$find_in_path224,8211 -'$find_in_path'(Name, Opts, File) :-$find_in_path224,8211 -'$find_in_path'(Name, Opts, File) :-$find_in_path224,8211 -'$core_file_name'(Name, Opts) -->$core_file_name252,9343 -'$core_file_name'(Name, Opts) -->$core_file_name252,9343 -'$core_file_name'(Name, Opts) -->$core_file_name252,9343 -'$file_name'(Name, Opts, E) -->$file_name260,9498 -'$file_name'(Name, Opts, E) -->$file_name260,9498 -'$file_name'(Name, Opts, E) -->$file_name260,9498 -'$file_name'(Name, _Opts, E) -->$file_name270,9794 -'$file_name'(Name, _Opts, E) -->$file_name270,9794 -'$file_name'(Name, _Opts, E) -->$file_name270,9794 -'$cat_file_name'(A/B, E ) -->$cat_file_name291,10191 -'$cat_file_name'(A/B, E ) -->$cat_file_name291,10191 -'$cat_file_name'(A/B, E ) -->$cat_file_name291,10191 -'$cat_file_name'(File, F) -->$cat_file_name295,10289 -'$cat_file_name'(File, F) -->$cat_file_name295,10289 -'$cat_file_name'(File, F) -->$cat_file_name295,10289 -'$cat_file_name'(File, S) -->$cat_file_name299,10374 -'$cat_file_name'(File, S) -->$cat_file_name299,10374 -'$cat_file_name'(File, S) -->$cat_file_name299,10374 -'$variable_expansion'( Path, Opts, APath ) :-$variable_expansion305,10467 -'$variable_expansion'( Path, Opts, APath ) :-$variable_expansion305,10467 -'$variable_expansion'( Path, Opts, APath ) :-$variable_expansion305,10467 -'$variable_expansion'( Path, _, Path ).$variable_expansion309,10610 -'$variable_expansion'( Path, _, Path )./p,predicate,predicate definition309,10610 -'$variable_expansion'( Path, _, Path ).$variable_expansion309,10610 -'$var'(S) -->$var312,10652 -'$var'(S) -->$var312,10652 -'$var'(S) -->$var312,10652 -'$var'(S) -->$var314,10693 -'$var'(S) -->$var314,10693 -'$var'(S) -->$var314,10693 -'$drive'(C) -->$drive317,10722 -'$drive'(C) -->$drive317,10722 -'$drive'(C) -->$drive317,10722 -'$id'([C|S]) --> [C],$id321,10766 -'$id'([C|S]) --> [C],$id321,10766 -'$id'([C|S]) --> [C],$id321,10766 -'$id'([]) --> [].$id326,10907 -'$id'([]) --> [].$id326,10907 -'$id'([]) --> [].$id326,10907 -'$check_file'(F, directory, _) :-$check_file330,10958 -'$check_file'(F, directory, _) :-$check_file330,10958 -'$check_file'(F, directory, _) :-$check_file330,10958 -'$check_file'(_F, _Type, none) :- !.$check_file333,11018 -'$check_file'(_F, _Type, none) :- !.$check_file333,11018 -'$check_file'(_F, _Type, none) :- !.$check_file333,11018 -'$check_file'(F, _Type, exist) :-$check_file334,11055 -'$check_file'(F, _Type, exist) :-$check_file334,11055 -'$check_file'(F, _Type, exist) :-$check_file334,11055 -'$check_file'(F, _Type, Access) :-$check_file336,11162 -'$check_file'(F, _Type, Access) :-$check_file336,11162 -'$check_file'(F, _Type, Access) :-$check_file336,11162 -'$suffix'(Last, _Opts) -->$suffix340,11300 -'$suffix'(Last, _Opts) -->$suffix340,11300 -'$suffix'(Last, _Opts) -->$suffix340,11300 -'$suffix'(_, Opts) -->$suffix344,11446 -'$suffix'(_, Opts) -->$suffix344,11446 -'$suffix'(_, Opts) -->$suffix344,11446 -'$suffix'(_,_Opts) -->$suffix361,11911 -'$suffix'(_,_Opts) -->$suffix361,11911 -'$suffix'(_,_Opts) -->$suffix361,11911 -'$add_suffix'(Cs) -->$add_suffix364,11976 -'$add_suffix'(Cs) -->$add_suffix364,11976 -'$add_suffix'(Cs) -->$add_suffix364,11976 -'$glob'(Opts) -->$glob371,12051 -'$glob'(Opts) -->$glob371,12051 -'$glob'(Opts) -->$glob371,12051 -'$glob'(_Opts) -->$glob380,12182 -'$glob'(_Opts) -->$glob380,12182 -'$glob'(_Opts) -->$glob380,12182 -'$enumerate_glob'(_File1, [ExpFile], ExpFile) :-$enumerate_glob383,12207 -'$enumerate_glob'(_File1, [ExpFile], ExpFile) :-$enumerate_glob383,12207 -'$enumerate_glob'(_File1, [ExpFile], ExpFile) :-$enumerate_glob383,12207 -'$enumerate_glob'(_File1, ExpFiles, ExpFile) :-$enumerate_glob385,12263 -'$enumerate_glob'(_File1, ExpFiles, ExpFile) :-$enumerate_glob385,12263 -'$enumerate_glob'(_File1, ExpFiles, ExpFile) :-$enumerate_glob385,12263 -'$prefix'( CorePath, _Opts) -->$prefix391,12420 -'$prefix'( CorePath, _Opts) -->$prefix391,12420 -'$prefix'( CorePath, _Opts) -->$prefix391,12420 -'$prefix'( CorePath, Opts) -->$prefix395,12516 -'$prefix'( CorePath, Opts) -->$prefix395,12516 -'$prefix'( CorePath, Opts) -->$prefix395,12516 -'$prefix'( CorePath, _) -->$prefix406,12804 -'$prefix'( CorePath, _) -->$prefix406,12804 -'$prefix'( CorePath, _) -->$prefix406,12804 -'$prefix'(CorePath, _ ) -->$prefix415,13040 -'$prefix'(CorePath, _ ) -->$prefix415,13040 -'$prefix'(CorePath, _ ) -->$prefix415,13040 -'$dir'('/') --> !.$dir425,13212 -'$dir'('/') --> !.$dir425,13212 -'$dir'('/') --> !.$dir425,13212 -'$dir'('\\') --> { current_prolog_flag(windows, true) },$dir426,13231 -'$dir'('\\') --> { current_prolog_flag(windows, true) },$dir426,13231 -'$dir'('\\') --> { current_prolog_flag(windows, true) },$dir426,13231 -'$dir'(_) --> '$dir'.$dir428,13295 -'$dir'(_) --> '$dir'.$dir428,13295 -'$dir'(_) --> '$dir'.$dir428,13295 -'$system_library_directories'(library, Dir) :-$system_library_directories433,13324 -'$system_library_directories'(library, Dir) :-$system_library_directories433,13324 -'$system_library_directories'(library, Dir) :-$system_library_directories433,13324 -'$system_library_directories'(foreign, Dir) :-$system_library_directories436,13439 -'$system_library_directories'(foreign, Dir) :-$system_library_directories436,13439 -'$system_library_directories'(foreign, Dir) :-$system_library_directories436,13439 -'$system_library_directories'(commons, Dir) :-$system_library_directories441,13596 -'$system_library_directories'(commons, Dir) :-$system_library_directories441,13596 -'$system_library_directories'(commons, Dir) :-$system_library_directories441,13596 -'$paths'(Cs, C) :-$paths446,13730 -'$paths'(Cs, C) :-$paths446,13730 -'$paths'(Cs, C) :-$paths446,13730 -'$paths'(S, S).$paths458,13980 -'$paths'(S, S)./p,predicate,predicate definition458,13980 -'$paths'(S, S).$paths458,13980 -'$absf_trace'(Msg, Args ) -->$absf_trace460,13997 -'$absf_trace'(Msg, Args ) -->$absf_trace460,13997 -'$absf_trace'(Msg, Args ) -->$absf_trace460,13997 -'$absf_trace'(_Msg, _Args ) --> [].$absf_trace464,14165 -'$absf_trace'(_Msg, _Args ) --> [].$absf_trace464,14165 -'$absf_trace'(_Msg, _Args ) --> [].$absf_trace464,14165 -'$absf_trace'(Msg, Args ) :-$absf_trace466,14202 -'$absf_trace'(Msg, Args ) :-$absf_trace466,14202 -'$absf_trace'(Msg, Args ) :-$absf_trace466,14202 -'$absf_trace'(_Msg, _Args ).$absf_trace470,14361 -'$absf_trace'(_Msg, _Args )./p,predicate,predicate definition470,14361 -'$absf_trace'(_Msg, _Args ).$absf_trace470,14361 -'$absf_trace'( File ) :-$absf_trace472,14391 -'$absf_trace'( File ) :-$absf_trace472,14391 -'$absf_trace'( File ) :-$absf_trace472,14391 -'$absf_trace'( _File ).$absf_trace476,14532 -'$absf_trace'( _File )./p,predicate,predicate definition476,14532 -'$absf_trace'( _File ).$absf_trace476,14532 -'$absf_trace_options'(Args ) :-$absf_trace_options478,14557 -'$absf_trace_options'(Args ) :-$absf_trace_options478,14557 -'$absf_trace_options'(Args ) :-$absf_trace_options478,14557 -'$absf_trace_options'( _Args ).$absf_trace_options482,14696 -'$absf_trace_options'( _Args )./p,predicate,predicate definition482,14696 -'$absf_trace_options'( _Args ).$absf_trace_options482,14696 -prolog_file_name(File, PrologFileName) :-prolog_file_name489,14852 -prolog_file_name(File, PrologFileName) :-prolog_file_name489,14852 -prolog_file_name(File, PrologFileName) :-prolog_file_name489,14852 -prolog_file_name(user, Out) :- !, Out = user.prolog_file_name492,14984 -prolog_file_name(user, Out) :- !, Out = user.prolog_file_name492,14984 -prolog_file_name(user, Out) :- !, Out = user.prolog_file_name492,14984 -prolog_file_name(File, PrologFileName) :-prolog_file_name493,15030 -prolog_file_name(File, PrologFileName) :-prolog_file_name493,15030 -prolog_file_name(File, PrologFileName) :-prolog_file_name493,15030 -prolog_file_name(File, PrologFileName) :-prolog_file_name496,15134 -prolog_file_name(File, PrologFileName) :-prolog_file_name496,15134 -prolog_file_name(File, PrologFileName) :-prolog_file_name496,15134 -path(Path) :-path506,15492 -path(Path) :-path506,15492 -path(Path) :-path506,15492 -'$in_path'(X) :-$in_path509,15539 -'$in_path'(X) :-$in_path509,15539 -'$in_path'(X) :-$in_path509,15539 -add_to_path(New) :-add_to_path522,15867 -add_to_path(New) :-add_to_path522,15867 -add_to_path(New) :-add_to_path522,15867 -add_to_path(New,Pos) :-add_to_path532,16194 -add_to_path(New,Pos) :-add_to_path532,16194 -add_to_path(New,Pos) :-add_to_path532,16194 -'$add_to_path'(New,_) :-$add_to_path538,16309 -'$add_to_path'(New,_) :-$add_to_path538,16309 -'$add_to_path'(New,_) :-$add_to_path538,16309 -'$add_to_path'(New,last) :-$add_to_path542,16378 -'$add_to_path'(New,last) :-$add_to_path542,16378 -'$add_to_path'(New,last) :-$add_to_path542,16378 -'$add_to_path'(New,first) :-$add_to_path545,16435 -'$add_to_path'(New,first) :-$add_to_path545,16435 -'$add_to_path'(New,first) :-$add_to_path545,16435 -remove_from_path(New) :- '$check_path'(New,Path),remove_from_path553,16563 -remove_from_path(New) :- '$check_path'(New,Path),remove_from_path553,16563 -remove_from_path(New) :- '$check_path'(New,Path),remove_from_path553,16563 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path556,16653 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path556,16653 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path556,16653 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt)./p,predicate,predicate definition556,16653 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path556,16653 -'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path556,16653 -'$check_path'([],[]).$check_path557,16731 -'$check_path'([],[])./p,predicate,predicate definition557,16731 -'$check_path'([],[]).$check_path557,16731 -'$check_path'([Ch],[Ch]) :- '$dir_separator'(Ch), !.$check_path558,16753 -'$check_path'([Ch],[Ch]) :- '$dir_separator'(Ch), !.$check_path558,16753 -'$check_path'([Ch],[Ch]) :- '$dir_separator'(Ch), !.$check_path558,16753 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path559,16806 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path559,16806 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path559,16806 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A)./p,predicate,predicate definition559,16806 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path559,16806 -'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator559,16806 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path560,16873 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path560,16873 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path560,16873 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN)./p,predicate,predicate definition560,16873 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path560,16873 -'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).$check_path'([N|S],[N|SN]) :- integer(N), '$check_path560,16873 - -pl/arith.yap,15975 -expand_exprs(Old,New) :-expand_exprs75,2262 -expand_exprs(Old,New) :-expand_exprs75,2262 -expand_exprs(Old,New) :-expand_exprs75,2262 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true)./p,predicate,predicate definition81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(on) :- set_value('$c_arith',true).$set_arith_expan81,2376 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[])./p,predicate,predicate definition82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -'$set_arith_expan'(off) :- set_value('$c_arith',[]).$set_arith_expan82,2430 -compile_expressions :- set_value('$c_arith',true).compile_expressions90,2648 -p(A):-p110,3049 -p(A):-p110,3049 -p(A):-p110,3049 -q(A):-q113,3081 -q(A):-q113,3081 -q(A):-q113,3081 -do_not_compile_expressions :- set_value('$c_arith',[]).do_not_compile_expressions118,3138 -'$c_built_in'(IN, M, H, OUT) :-$c_built_in120,3195 -'$c_built_in'(IN, M, H, OUT) :-$c_built_in120,3195 -'$c_built_in'(IN, M, H, OUT) :-$c_built_in120,3195 -'$c_built_in'(IN, _, _H, IN).$c_built_in123,3290 -'$c_built_in'(IN, _, _H, IN)./p,predicate,predicate definition123,3290 -'$c_built_in'(IN, _, _H, IN).$c_built_in123,3290 -do_c_built_in(G, M, H, OUT) :- var(G), !,do_c_built_in126,3322 -do_c_built_in(G, M, H, OUT) :- var(G), !,do_c_built_in126,3322 -do_c_built_in(G, M, H, OUT) :- var(G), !,do_c_built_in126,3322 -do_c_built_in(Mod:G, _, H, OUT) :-do_c_built_in128,3400 -do_c_built_in(Mod:G, _, H, OUT) :-do_c_built_in128,3400 -do_c_built_in(Mod:G, _, H, OUT) :-do_c_built_in128,3400 -do_c_built_in(X is Y, M, H, P) :-do_c_built_in141,3817 -do_c_built_in(X is Y, M, H, P) :-do_c_built_in141,3817 -do_c_built_in(X is Y, M, H, P) :-do_c_built_in141,3817 -do_c_built_in(X is Y, M, H, (P,A=X)) :-do_c_built_in144,3911 -do_c_built_in(X is Y, M, H, (P,A=X)) :-do_c_built_in144,3911 -do_c_built_in(X is Y, M, H, (P,A=X)) :-do_c_built_in144,3911 -do_c_built_in(X is Y, _, _, P) :-do_c_built_in147,3999 -do_c_built_in(X is Y, _, _, P) :-do_c_built_in147,3999 -do_c_built_in(X is Y, _, _, P) :-do_c_built_in147,3999 -do_c_built_in(phrase(NT,Xs), Mod, H, NTXsNil) :-do_c_built_in156,4205 -do_c_built_in(phrase(NT,Xs), Mod, H, NTXsNil) :-do_c_built_in156,4205 -do_c_built_in(phrase(NT,Xs), Mod, H, NTXsNil) :-do_c_built_in156,4205 -do_c_built_in(phrase(NT,Xs0,Xs), Mod, _, NewGoal) :-do_c_built_in158,4316 -do_c_built_in(phrase(NT,Xs0,Xs), Mod, _, NewGoal) :-do_c_built_in158,4316 -do_c_built_in(phrase(NT,Xs0,Xs), Mod, _, NewGoal) :-do_c_built_in158,4316 -do_c_built_in(Comp0, _, _, R) :- % now, do it for comparisonsdo_c_built_in161,4425 -do_c_built_in(Comp0, _, _, R) :- % now, do it for comparisonsdo_c_built_in161,4425 -do_c_built_in(Comp0, _, _, R) :- % now, do it for comparisonsdo_c_built_in161,4425 -do_c_built_in(P, _M, _H, P).do_c_built_in169,4643 -do_c_built_in(P, _M, _H, P).do_c_built_in169,4643 -do_c_built_metacall(G1, Mod, _, '$execute_wo_mod'(G1,Mod)) :-do_c_built_metacall171,4673 -do_c_built_metacall(G1, Mod, _, '$execute_wo_mod'(G1,Mod)) :-do_c_built_metacall171,4673 -do_c_built_metacall(G1, Mod, _, '$execute_wo_mod'(G1,Mod)) :-do_c_built_metacall171,4673 -do_c_built_metacall(G1, Mod, _, '$execute_in_mod'(G1,Mod)) :-do_c_built_metacall173,4752 -do_c_built_metacall(G1, Mod, _, '$execute_in_mod'(G1,Mod)) :-do_c_built_metacall173,4752 -do_c_built_metacall(G1, Mod, _, '$execute_in_mod'(G1,Mod)) :-do_c_built_metacall173,4752 -do_c_built_metacall(G1, Mod, _, call(Mod:G1)).do_c_built_metacall175,4832 -do_c_built_metacall(G1, Mod, _, call(Mod:G1)).do_c_built_metacall175,4832 -'$do_and'(true, P, P) :- !.$do_and177,4880 -'$do_and'(true, P, P) :- !.$do_and177,4880 -'$do_and'(true, P, P) :- !.$do_and177,4880 -'$do_and'(P, true, P) :- !.$do_and178,4908 -'$do_and'(P, true, P) :- !.$do_and178,4908 -'$do_and'(P, true, P) :- !.$do_and178,4908 -'$do_and'(P, Q, (P,Q)).$do_and179,4936 -'$do_and'(P, Q, (P,Q))./p,predicate,predicate definition179,4936 -'$do_and'(P, Q, (P,Q)).$do_and179,4936 -'$drop_is'(V, V1, P0, G) :-$drop_is184,5101 -'$drop_is'(V, V1, P0, G) :-$drop_is184,5101 -'$drop_is'(V, V1, P0, G) :-$drop_is184,5101 -'$drop_is'(V, X, P0, P) :- % atoms$drop_is189,5186 -'$drop_is'(V, X, P0, P) :- % atoms$drop_is189,5186 -'$drop_is'(V, X, P0, P) :- % atoms$drop_is189,5186 -'$compop'(X < Y, < , X, Y).$compop193,5288 -'$compop'(X < Y, < , X, Y)./p,predicate,predicate definition193,5288 -'$compop'(X < Y, < , X, Y).$compop193,5288 -'$compop'(X > Y, > , X, Y).$compop194,5316 -'$compop'(X > Y, > , X, Y)./p,predicate,predicate definition194,5316 -'$compop'(X > Y, > , X, Y).$compop194,5316 -'$compop'(X=< Y,=< , X, Y).$compop195,5344 -'$compop'(X=< Y,=< , X, Y)./p,predicate,predicate definition195,5344 -'$compop'(X=< Y,=< , X, Y).$compop195,5344 -'$compop'(X >=Y, >=, X, Y).$compop196,5372 -'$compop'(X >=Y, >=, X, Y)./p,predicate,predicate definition196,5372 -'$compop'(X >=Y, >=, X, Y).$compop196,5372 -'$compop'(X=:=Y,=:=, X, Y).$compop197,5400 -'$compop'(X=:=Y,=:=, X, Y)./p,predicate,predicate definition197,5400 -'$compop'(X=:=Y,=:=, X, Y).$compop197,5400 -'$compop'(X=\=Y,=\=, X, Y).$compop198,5428 -'$compop'(X=\=Y,=\=, X, Y)./p,predicate,predicate definition198,5428 -'$compop'(X=\=Y,=\=, X, Y).$compop198,5428 -'$composed_built_in'(V) :- var(V), !,$composed_built_in200,5457 -'$composed_built_in'(V) :- var(V), !,$composed_built_in200,5457 -'$composed_built_in'(V) :- var(V), !,$composed_built_in200,5457 -'$composed_built_in'(('$current_choice_point'(_),NG,'$$cut_by'(_))) :- !,$composed_built_in202,5502 -'$composed_built_in'(('$current_choice_point'(_),NG,'$$cut_by'(_))) :- !,$composed_built_in202,5502 -'$composed_built_in'(('$current_choice_point'(_),NG,'$$cut_by'(_))) :- !,$composed_built_in'(('$current_choice_point'(_),NG,'$$cut_by202,5502 -'$composed_built_in'((_,_)).$composed_built_in204,5603 -'$composed_built_in'((_,_))./p,predicate,predicate definition204,5603 -'$composed_built_in'((_,_)).$composed_built_in204,5603 -'$composed_built_in'((_;_)).$composed_built_in205,5632 -'$composed_built_in'((_;_))./p,predicate,predicate definition205,5632 -'$composed_built_in'((_;_)).$composed_built_in205,5632 -'$composed_built_in'((_|_)).$composed_built_in206,5661 -'$composed_built_in'((_|_))./p,predicate,predicate definition206,5661 -'$composed_built_in'((_|_)).$composed_built_in206,5661 -'$composed_built_in'((_->_)).$composed_built_in207,5690 -'$composed_built_in'((_->_))./p,predicate,predicate definition207,5690 -'$composed_built_in'((_->_)).$composed_built_in207,5690 -'$composed_built_in'(_:G) :-$composed_built_in208,5720 -'$composed_built_in'(_:G) :-$composed_built_in208,5720 -'$composed_built_in'(_:G) :-$composed_built_in208,5720 -'$composed_built_in'(\+G) :-$composed_built_in210,5775 -'$composed_built_in'(\+G) :-$composed_built_in210,5775 -'$composed_built_in'(\+G) :-$composed_built_in210,5775 -'$composed_built_in'(not(G)) :-$composed_built_in212,5830 -'$composed_built_in'(not(G)) :-$composed_built_in212,5830 -'$composed_built_in'(not(G)) :-$composed_built_in212,5830 -expand_expr(V, true, V) :-expand_expr219,6068 -expand_expr(V, true, V) :-expand_expr219,6068 -expand_expr(V, true, V) :-expand_expr219,6068 -expand_expr([T], E, V) :- !,expand_expr221,6107 -expand_expr([T], E, V) :- !,expand_expr221,6107 -expand_expr([T], E, V) :- !,expand_expr221,6107 -expand_expr(String, _E, V) :-expand_expr223,6159 -expand_expr(String, _E, V) :-expand_expr223,6159 -expand_expr(String, _E, V) :-expand_expr223,6159 -expand_expr(A, true, A) :-expand_expr226,6239 -expand_expr(A, true, A) :-expand_expr226,6239 -expand_expr(A, true, A) :-expand_expr226,6239 -expand_expr(T, E, V) :-expand_expr228,6281 -expand_expr(T, E, V) :-expand_expr228,6281 -expand_expr(T, E, V) :-expand_expr228,6281 -expand_expr(T, E, V) :-expand_expr232,6375 -expand_expr(T, E, V) :-expand_expr232,6375 -expand_expr(T, E, V) :-expand_expr232,6375 -expand_expr(Op, X, O, Q, Q) :-expand_expr243,6649 -expand_expr(Op, X, O, Q, Q) :-expand_expr243,6649 -expand_expr(Op, X, O, Q, Q) :-expand_expr243,6649 -expand_expr(Op, X, O, Q, P) :-expand_expr246,6768 -expand_expr(Op, X, O, Q, P) :-expand_expr246,6768 -expand_expr(Op, X, O, Q, P) :-expand_expr246,6768 -expand_expr(Op, X, Y, O, Q, Q) :-expand_expr257,7119 -expand_expr(Op, X, Y, O, Q, Q) :-expand_expr257,7119 -expand_expr(Op, X, Y, O, Q, Q) :-expand_expr257,7119 -expand_expr(+, X, Y, O, Q, P) :- !,expand_expr260,7212 -expand_expr(+, X, Y, O, Q, P) :- !,expand_expr260,7212 -expand_expr(+, X, Y, O, Q, P) :- !,expand_expr260,7212 -expand_expr(-, X, Y, O, Q, P) :-expand_expr264,7359 -expand_expr(-, X, Y, O, Q, P) :-expand_expr264,7359 -expand_expr(-, X, Y, O, Q, P) :-expand_expr264,7359 -expand_expr(-, X, Y, O, Q, P) :- !,expand_expr268,7457 -expand_expr(-, X, Y, O, Q, P) :- !,expand_expr268,7457 -expand_expr(-, X, Y, O, Q, P) :- !,expand_expr268,7457 -expand_expr(*, X, Y, O, Q, P) :- !,expand_expr272,7609 -expand_expr(*, X, Y, O, Q, P) :- !,expand_expr272,7609 -expand_expr(*, X, Y, O, Q, P) :- !,expand_expr272,7609 -expand_expr(//, X, Y, O, Q, P) :-expand_expr276,7757 -expand_expr(//, X, Y, O, Q, P) :-expand_expr276,7757 -expand_expr(//, X, Y, O, Q, P) :-expand_expr276,7757 -expand_expr(//, X, Y, O, Q, P) :- !,expand_expr280,7881 -expand_expr(//, X, Y, O, Q, P) :- !,expand_expr280,7881 -expand_expr(//, X, Y, O, Q, P) :- !,expand_expr280,7881 -expand_expr(/\, X, Y, O, Q, P) :- !,expand_expr284,8032 -expand_expr(/\, X, Y, O, Q, P) :- !,expand_expr284,8032 -expand_expr(/\, X, Y, O, Q, P) :- !,expand_expr284,8032 -expand_expr(\/, X, Y, O, Q, P) :- !,expand_expr288,8179 -expand_expr(\/, X, Y, O, Q, P) :- !,expand_expr288,8179 -expand_expr(\/, X, Y, O, Q, P) :- !,expand_expr288,8179 -expand_expr(<<, X, Y, O, Q, P) :-expand_expr292,8325 -expand_expr(<<, X, Y, O, Q, P) :-expand_expr292,8325 -expand_expr(<<, X, Y, O, Q, P) :-expand_expr292,8325 -expand_expr(<<, X, Y, O, Q, P) :- !,expand_expr296,8432 -expand_expr(<<, X, Y, O, Q, P) :- !,expand_expr296,8432 -expand_expr(<<, X, Y, O, Q, P) :- !,expand_expr296,8432 -expand_expr(>>, X, Y, O, Q, P) :-expand_expr300,8583 -expand_expr(>>, X, Y, O, Q, P) :-expand_expr300,8583 -expand_expr(>>, X, Y, O, Q, P) :-expand_expr300,8583 -expand_expr(>>, X, Y, O, Q, P) :- !,expand_expr304,8690 -expand_expr(>>, X, Y, O, Q, P) :- !,expand_expr304,8690 -expand_expr(>>, X, Y, O, Q, P) :- !,expand_expr304,8690 -expand_expr(Op, X, Y, O, Q, P) :-expand_expr308,8841 -expand_expr(Op, X, Y, O, Q, P) :-expand_expr308,8841 -expand_expr(Op, X, Y, O, Q, P) :-expand_expr308,8841 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative312,8943 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative312,8943 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative312,8943 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative314,9019 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative314,9019 -'$preprocess_args_for_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_commutative314,9019 -'$preprocess_args_for_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_commutative316,9116 -'$preprocess_args_for_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_commutative316,9116 -'$preprocess_args_for_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_commutative316,9116 -'$preprocess_args_for_commutative'(X, Y, Y, X, true) :-$preprocess_args_for_commutative318,9185 -'$preprocess_args_for_commutative'(X, Y, Y, X, true) :-$preprocess_args_for_commutative318,9185 -'$preprocess_args_for_commutative'(X, Y, Y, X, true) :-$preprocess_args_for_commutative318,9185 -'$preprocess_args_for_commutative'(X, Y, Z, X, Z = Y) :-$preprocess_args_for_commutative320,9282 -'$preprocess_args_for_commutative'(X, Y, Z, X, Z = Y) :-$preprocess_args_for_commutative320,9282 -'$preprocess_args_for_commutative'(X, Y, Z, X, Z = Y) :-$preprocess_args_for_commutative320,9282 -'$preprocess_args_for_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_commutative322,9372 -'$preprocess_args_for_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_commutative322,9372 -'$preprocess_args_for_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_commutative322,9372 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative325,9455 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative325,9455 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative325,9455 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative327,9535 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative327,9535 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative327,9535 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative329,9636 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative329,9636 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative329,9636 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative331,9709 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative331,9709 -'$preprocess_args_for_non_commutative'(X, Y, X, Y, true) :-$preprocess_args_for_non_commutative331,9709 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative333,9810 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative333,9810 -'$preprocess_args_for_non_commutative'(X, Y, X, Z, Z = Y) :-$preprocess_args_for_non_commutative333,9810 -'$preprocess_args_for_non_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_non_commutative335,9904 -'$preprocess_args_for_non_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_non_commutative335,9904 -'$preprocess_args_for_non_commutative'(X, Y, Z, W, E) :-$preprocess_args_for_non_commutative335,9904 -'$goal_expansion_allowed'(phrase(NT,_Xs0,_Xs), Mod) :-$goal_expansion_allowed339,9992 -'$goal_expansion_allowed'(phrase(NT,_Xs0,_Xs), Mod) :-$goal_expansion_allowed339,9992 -'$goal_expansion_allowed'(phrase(NT,_Xs0,_Xs), Mod) :-$goal_expansion_allowed339,9992 -'$contains_illegal_dcgnt'(NT) :-$contains_illegal_dcgnt348,10263 -'$contains_illegal_dcgnt'(NT) :-$contains_illegal_dcgnt348,10263 -'$contains_illegal_dcgnt'(NT) :-$contains_illegal_dcgnt348,10263 -'$harmless_dcgexception'(instantiation_error). % ex: phrase(([1],x:X,[3]),L)$harmless_dcgexception357,10489 -'$harmless_dcgexception'(instantiation_error). % ex: phrase(([1],x:X,[3]),L)/p,predicate,predicate definition357,10489 -'$harmless_dcgexception'(instantiation_error). % ex: phrase(([1],x:X,[3]),L)$harmless_dcgexception357,10489 -'$harmless_dcgexception'(type_error(callable,_)). % ex: phrase(27,L)$harmless_dcgexception358,10566 -'$harmless_dcgexception'(type_error(callable,_)). % ex: phrase(27,L)/p,predicate,predicate definition358,10566 -'$harmless_dcgexception'(type_error(callable,_)). % ex: phrase(27,L)$harmless_dcgexception358,10566 - -pl/arithpreds.yap,1341 -succ(M,N) :-succ48,1342 -succ(M,N) :-succ48,1342 -succ(M,N) :-succ48,1342 -'$succ_error'(M,N) :-$succ_error80,1628 -'$succ_error'(M,N) :-$succ_error80,1628 -'$succ_error'(M,N) :-$succ_error80,1628 -'$succ_error'(M,N) :-$succ_error84,1716 -'$succ_error'(M,N) :-$succ_error84,1716 -'$succ_error'(M,N) :-$succ_error84,1716 -'$succ_error'(M,N) :-$succ_error88,1814 -'$succ_error'(M,N) :-$succ_error88,1814 -'$succ_error'(M,N) :-$succ_error88,1814 -'$succ_error'(M,N) :-$succ_error92,1917 -'$succ_error'(M,N) :-$succ_error92,1917 -'$succ_error'(M,N) :-$succ_error92,1917 -'$succ_error'(M,N) :-$succ_error96,2015 -'$succ_error'(M,N) :-$succ_error96,2015 -'$succ_error'(M,N) :-$succ_error96,2015 -plus(X, Y, Z) :-plus110,2308 -plus(X, Y, Z) :-plus110,2308 -plus(X, Y, Z) :-plus110,2308 -'$plus_error'(X,Y,Z) :-$plus_error155,3012 -'$plus_error'(X,Y,Z) :-$plus_error155,3012 -'$plus_error'(X,Y,Z) :-$plus_error155,3012 -'$plus_error'(X,Y,Z) :-$plus_error159,3132 -'$plus_error'(X,Y,Z) :-$plus_error159,3132 -'$plus_error'(X,Y,Z) :-$plus_error159,3132 -'$plus_error'(X,Y,Z) :-$plus_error163,3252 -'$plus_error'(X,Y,Z) :-$plus_error163,3252 -'$plus_error'(X,Y,Z) :-$plus_error163,3252 -'$plus_error'(X,Y,Z) :-$plus_error167,3372 -'$plus_error'(X,Y,Z) :-$plus_error167,3372 -'$plus_error'(X,Y,Z) :-$plus_error167,3372 - -pl/arrays.yap,3180 -array(Obj, Size) :-array40,1031 -array(Obj, Size) :-array40,1031 -array(Obj, Size) :-array40,1031 -'$c_arrays'((P:-Q),(NP:-QF)) :- !,$c_arrays45,1110 -'$c_arrays'((P:-Q),(NP:-QF)) :- !,$c_arrays45,1110 -'$c_arrays'((P:-Q),(NP:-QF)) :- !,$c_arrays45,1110 -'$c_arrays'(P, NP) :-$c_arrays48,1205 -'$c_arrays'(P, NP) :-$c_arrays48,1205 -'$c_arrays'(P, NP) :-$c_arrays48,1205 -'$c_arrays_body'(P, P) :-$c_arrays_body51,1254 -'$c_arrays_body'(P, P) :-$c_arrays_body51,1254 -'$c_arrays_body'(P, P) :-$c_arrays_body51,1254 -'$c_arrays_body'((P0,Q0), (P,Q)) :- !,$c_arrays_body53,1292 -'$c_arrays_body'((P0,Q0), (P,Q)) :- !,$c_arrays_body53,1292 -'$c_arrays_body'((P0,Q0), (P,Q)) :- !,$c_arrays_body53,1292 -'$c_arrays_body'((P0;Q0), (P;Q)) :- !,$c_arrays_body56,1383 -'$c_arrays_body'((P0;Q0), (P;Q)) :- !,$c_arrays_body56,1383 -'$c_arrays_body'((P0;Q0), (P;Q)) :- !,$c_arrays_body56,1383 -'$c_arrays_body'((P0->Q0), (P->Q)) :- !,$c_arrays_body59,1474 -'$c_arrays_body'((P0->Q0), (P->Q)) :- !,$c_arrays_body59,1474 -'$c_arrays_body'((P0->Q0), (P->Q)) :- !,$c_arrays_body59,1474 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP)./p,predicate,predicate definition62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body62,1567 -'$c_arrays_body'(P, NP) :- '$c_arrays_lit'(P, NP).$c_arrays_body'(P, NP) :- '$c_arrays_lit62,1567 -'$c_arrays_lit'(G, GL) :-$c_arrays_lit67,1682 -'$c_arrays_lit'(G, GL) :-$c_arrays_lit67,1682 -'$c_arrays_lit'(G, GL) :-$c_arrays_lit67,1682 -'$c_arrays_head'(G, NG, B, NB) :-$c_arrays_head71,1777 -'$c_arrays_head'(G, NG, B, NB) :-$c_arrays_head71,1777 -'$c_arrays_head'(G, NG, B, NB) :-$c_arrays_head71,1777 -'$c_arrays_fact'(G, NG) :-$c_arrays_fact75,1879 -'$c_arrays_fact'(G, NG) :-$c_arrays_fact75,1879 -'$c_arrays_fact'(G, NG) :-$c_arrays_fact75,1879 -'$add_array_entries'([], NG, NG).$add_array_entries80,2020 -'$add_array_entries'([], NG, NG)./p,predicate,predicate definition80,2020 -'$add_array_entries'([], NG, NG).$add_array_entries80,2020 -'$add_array_entries'([Head|Tail], G, (Head, NG)) :-$add_array_entries81,2054 -'$add_array_entries'([Head|Tail], G, (Head, NG)) :-$add_array_entries81,2054 -'$add_array_entries'([Head|Tail], G, (Head, NG)) :-$add_array_entries81,2054 -static_array_properties(Name, Size, Type) :-static_array_properties97,2426 -static_array_properties(Name, Size, Type) :-static_array_properties97,2426 -static_array_properties(Name, Size, Type) :-static_array_properties97,2426 -static_array_properties(Name, Size, Type) :-static_array_properties100,2534 -static_array_properties(Name, Size, Type) :-static_array_properties100,2534 -static_array_properties(Name, Size, Type) :-static_array_properties100,2534 -static_array_properties(Name, Size, Type) :-static_array_properties104,2662 -static_array_properties(Name, Size, Type) :-static_array_properties104,2662 -static_array_properties(Name, Size, Type) :-static_array_properties104,2662 - -pl/atoms.yap,8895 -atom_concat(Xs,At) :-atom_concat40,873 -atom_concat(Xs,At) :-atom_concat40,873 -atom_concat(Xs,At) :-atom_concat40,873 -'$atom_concat_constraints'([At], 0, At, []) :- !.$atom_concat_constraints49,1109 -'$atom_concat_constraints'([At], 0, At, []) :- !.$atom_concat_constraints49,1109 -'$atom_concat_constraints'([At], 0, At, []) :- !.$atom_concat_constraints49,1109 -'$atom_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$atom_concat_constraints50,1159 -'$atom_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$atom_concat_constraints50,1159 -'$atom_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$atom_concat_constraints50,1159 -'$atom_concat_constraints'([At0|Xs], 0, At, Unbound) :-$atom_concat_constraints52,1271 -'$atom_concat_constraints'([At0|Xs], 0, At, Unbound) :-$atom_concat_constraints52,1271 -'$atom_concat_constraints'([At0|Xs], 0, At, Unbound) :-$atom_concat_constraints52,1271 -'$atom_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$atom_concat_constraints58,1550 -'$atom_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$atom_concat_constraints58,1550 -'$atom_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$atom_concat_constraints58,1550 -'$atom_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$atom_concat_constraints61,1709 -'$atom_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$atom_concat_constraints61,1709 -'$atom_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$atom_concat_constraints61,1709 -'$atom_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$atom_concat_constraints67,1951 -'$atom_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$atom_concat_constraints67,1951 -'$atom_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$atom_concat_constraints67,1951 -'$process_atom_holes'([]).$process_atom_holes70,2121 -'$process_atom_holes'([])./p,predicate,predicate definition70,2121 -'$process_atom_holes'([]).$process_atom_holes70,2121 -'$process_atom_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_atom_holes71,2148 -'$process_atom_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_atom_holes71,2148 -'$process_atom_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_atom_holes71,2148 -'$process_atom_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_atom_holes74,2292 -'$process_atom_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_atom_holes74,2292 -'$process_atom_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_atom_holes74,2292 -atomic_list_concat(L,At) :-atomic_list_concat90,2730 -atomic_list_concat(L,At) :-atomic_list_concat90,2730 -atomic_list_concat(L,At) :-atomic_list_concat90,2730 -atomic_list_concat(L, El, At) :-atomic_list_concat116,3274 -atomic_list_concat(L, El, At) :-atomic_list_concat116,3274 -atomic_list_concat(L, El, At) :-atomic_list_concat116,3274 -atomic_list_concat(L, El, At) :-atomic_list_concat119,3383 -atomic_list_concat(L, El, At) :-atomic_list_concat119,3383 -atomic_list_concat(L, El, At) :-atomic_list_concat119,3383 -atomic_list_concat(L, El, At) :-atomic_list_concat123,3479 -atomic_list_concat(L, El, At) :-atomic_list_concat123,3479 -atomic_list_concat(L, El, At) :-atomic_list_concat123,3479 -'$atomic_list_concat_all'( At, El, [A|L]) :-$atomic_list_concat_all127,3569 -'$atomic_list_concat_all'( At, El, [A|L]) :-$atomic_list_concat_all127,3569 -'$atomic_list_concat_all'( At, El, [A|L]) :-$atomic_list_concat_all127,3569 -'$atomic_list_concat_all'( At, _El, [At]).$atomic_list_concat_all132,3766 -'$atomic_list_concat_all'( At, _El, [At])./p,predicate,predicate definition132,3766 -'$atomic_list_concat_all'( At, _El, [At]).$atomic_list_concat_all132,3766 -'$add_els'([A,B|L],El,[A,El|NL]) :- !,$add_els134,3810 -'$add_els'([A,B|L],El,[A,El|NL]) :- !,$add_els134,3810 -'$add_els'([A,B|L],El,[A,El|NL]) :- !,$add_els134,3810 -'$add_els'(L,_,L).$add_els136,3875 -'$add_els'(L,_,L)./p,predicate,predicate definition136,3875 -'$add_els'(L,_,L).$add_els136,3875 -'$singletons_in_term'(T,VL) :-$singletons_in_term142,3926 -'$singletons_in_term'(T,VL) :-$singletons_in_term142,3926 -'$singletons_in_term'(T,VL) :-$singletons_in_term142,3926 -'$subtract_lists_of_variables'([],VL,VL).$subtract_lists_of_variables149,4110 -'$subtract_lists_of_variables'([],VL,VL)./p,predicate,predicate definition149,4110 -'$subtract_lists_of_variables'([],VL,VL).$subtract_lists_of_variables149,4110 -'$subtract_lists_of_variables'([_|_],[],[]) :- !.$subtract_lists_of_variables150,4152 -'$subtract_lists_of_variables'([_|_],[],[]) :- !.$subtract_lists_of_variables150,4152 -'$subtract_lists_of_variables'([_|_],[],[]) :- !.$subtract_lists_of_variables150,4152 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],VL) :-$subtract_lists_of_variables151,4202 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],VL) :-$subtract_lists_of_variables151,4202 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],VL) :-$subtract_lists_of_variables151,4202 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],[V2|VL]) :-$subtract_lists_of_variables154,4317 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],[V2|VL]) :-$subtract_lists_of_variables154,4317 -'$subtract_lists_of_variables'([V1|VL1],[V2|VL2],[V2|VL]) :-$subtract_lists_of_variables154,4317 -current_atom(A) :- % checkcurrent_atom165,4579 -current_atom(A) :- % checkcurrent_atom165,4579 -current_atom(A) :- % checkcurrent_atom165,4579 -current_atom(A) :- % generatecurrent_atom167,4622 -current_atom(A) :- % generatecurrent_atom167,4622 -current_atom(A) :- % generatecurrent_atom167,4622 -string_concat(Xs,At) :-string_concat170,4677 -string_concat(Xs,At) :-string_concat170,4677 -string_concat(Xs,At) :-string_concat170,4677 -'$string_concat_constraints'([At], 0, At, []) :- !.$string_concat_constraints179,4925 -'$string_concat_constraints'([At], 0, At, []) :- !.$string_concat_constraints179,4925 -'$string_concat_constraints'([At], 0, At, []) :- !.$string_concat_constraints179,4925 -'$string_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$string_concat_constraints180,4977 -'$string_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$string_concat_constraints180,4977 -'$string_concat_constraints'([At0], mid(Next, At), At, [hole(At0, Next, At, end)]) :- !.$string_concat_constraints180,4977 -'$string_concat_constraints'([At0|Xs], 0, At, Unbound) :-$string_concat_constraints182,5093 -'$string_concat_constraints'([At0|Xs], 0, At, Unbound) :-$string_concat_constraints182,5093 -'$string_concat_constraints'([At0|Xs], 0, At, Unbound) :-$string_concat_constraints182,5093 -'$string_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$string_concat_constraints188,5382 -'$string_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$string_concat_constraints188,5382 -'$string_concat_constraints'([At0|Xs], 0, At, [hole(At0, 0, At, Next)|Unbound]) :-$string_concat_constraints188,5382 -'$string_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$string_concat_constraints191,5545 -'$string_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$string_concat_constraints191,5545 -'$string_concat_constraints'([At0|Xs], mid(end, At1), At, Unbound) :-$string_concat_constraints191,5545 -'$string_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$string_concat_constraints197,5799 -'$string_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$string_concat_constraints197,5799 -'$string_concat_constraints'([At0|Xs], mid(Next,At1), At, Next, [hole(At0, Next, At, Follow)|Unbound]) :-$string_concat_constraints197,5799 -'$process_string_holes'([]).$process_string_holes200,5973 -'$process_string_holes'([])./p,predicate,predicate definition200,5973 -'$process_string_holes'([]).$process_string_holes200,5973 -'$process_string_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_string_holes201,6002 -'$process_string_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_string_holes201,6002 -'$process_string_holes'([hole(At0, Next, At1, End)|Unbound]) :- End == end, !,$process_string_holes201,6002 -'$process_string_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_string_holes204,6152 -'$process_string_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_string_holes204,6152 -'$process_string_holes'([hole(At0, Next, At1, Follow)|Unbound]) :-$process_string_holes204,6152 - -pl/attributes.yap,10357 -:- dynamic attributes:existing_attribute/4.dynamic46,1211 -:- dynamic attributes:existing_attribute/4.dynamic46,1211 -:- dynamic attributes:modules_with_attributes/1.dynamic47,1255 -:- dynamic attributes:modules_with_attributes/1.dynamic47,1255 -:- dynamic attributes:attributed_module/3.dynamic48,1304 -:- dynamic attributes:attributed_module/3.dynamic48,1304 -:- dynamic existing_attribute/4.dynamic53,1406 -:- dynamic existing_attribute/4.dynamic53,1406 -:- dynamic modules_with_attributes/1.dynamic54,1439 -:- dynamic modules_with_attributes/1.dynamic54,1439 -:- dynamic attributed_module/3.dynamic55,1477 -:- dynamic attributed_module/3.dynamic55,1477 -prolog:get_attr(Var, Mod, Att) :-get_attr67,1807 -prolog:get_attr(Var, Mod, Att) :-get_attr67,1807 -prolog:put_attr(Var, Mod, Att) :-put_attr84,2413 -prolog:put_attr(Var, Mod, Att) :-put_attr84,2413 -prolog:del_attr(Var, Mod) :-del_attr100,2865 -prolog:del_attr(Var, Mod) :-del_attr100,2865 -prolog:del_attrs(Var) :-del_attrs113,3145 -prolog:del_attrs(Var) :-del_attrs113,3145 -prolog:get_attrs(AttVar, SWIAtts) :-get_attrs124,3421 -prolog:get_attrs(AttVar, SWIAtts) :-get_attrs124,3421 -prolog:put_attrs(_, []).put_attrs135,3639 -prolog:put_attrs(V, Atts) :-put_attrs136,3664 -prolog:put_attrs(V, Atts) :-put_attrs136,3664 -cvt_to_swi_atts([], _).cvt_to_swi_atts140,3765 -cvt_to_swi_atts([], _).cvt_to_swi_atts140,3765 -cvt_to_swi_atts(att(Mod,Attribute,Atts), ModAttribute) :-cvt_to_swi_atts141,3789 -cvt_to_swi_atts(att(Mod,Attribute,Atts), ModAttribute) :-cvt_to_swi_atts141,3789 -cvt_to_swi_atts(att(Mod,Attribute,Atts), ModAttribute) :-cvt_to_swi_atts141,3789 -prolog:copy_term(Term, Copy, Gs) :-copy_term161,4477 -prolog:copy_term(Term, Copy, Gs) :-copy_term161,4477 -residuals_and_delete_attributes(Vs, Gs, Term) :-residuals_and_delete_attributes171,4711 -residuals_and_delete_attributes(Vs, Gs, Term) :-residuals_and_delete_attributes171,4711 -residuals_and_delete_attributes(Vs, Gs, Term) :-residuals_and_delete_attributes171,4711 -attvars_residuals([]) --> [].attvars_residuals175,4819 -attvars_residuals([]) --> [].attvars_residuals175,4819 -attvars_residuals([]) --> [].attvars_residuals175,4819 -attvars_residuals([V|Vs]) -->attvars_residuals176,4849 -attvars_residuals([V|Vs]) -->attvars_residuals176,4849 -attvars_residuals([V|Vs]) -->attvars_residuals176,4849 -attvars_residuals([V|Vs]) -->attvars_residuals179,4922 -attvars_residuals([V|Vs]) -->attvars_residuals179,4922 -attvars_residuals([V|Vs]) -->attvars_residuals179,4922 -prolog:'$wake_up_goal'([Module1|Continuation], LG) :-$wake_up_goal198,5375 -prolog:'$wake_up_goal'([Module1|Continuation], LG) :-$wake_up_goal198,5375 -do_continuation('$cut_by'(X), _) :- !,do_continuation210,5713 -do_continuation('$cut_by'(X), _) :- !,do_continuation210,5713 -do_continuation('$cut_by'(X), _) :- !,do_continuation210,5713 -do_continuation('$restore_regs'(X), _) :- !,do_continuation212,5768 -do_continuation('$restore_regs'(X), _) :- !,do_continuation212,5768 -do_continuation('$restore_regs'(X), _) :- !,do_continuation212,5768 -do_continuation('$restore_regs'(X,Y), _) :- !,do_continuation216,5883 -do_continuation('$restore_regs'(X,Y), _) :- !,do_continuation216,5883 -do_continuation('$restore_regs'(X,Y), _) :- !,do_continuation216,5883 -do_continuation(Continuation, Module1) :-do_continuation220,6002 -do_continuation(Continuation, Module1) :-do_continuation220,6002 -do_continuation(Continuation, Module1) :-do_continuation220,6002 -execute_continuation(Continuation, Module1) :-execute_continuation223,6090 -execute_continuation(Continuation, Module1) :-execute_continuation223,6090 -execute_continuation(Continuation, Module1) :-execute_continuation223,6090 -execute_continuation(Continuation, Mod) :-execute_continuation228,6301 -execute_continuation(Continuation, Mod) :-execute_continuation228,6301 -execute_continuation(Continuation, Mod) :-execute_continuation228,6301 -execute_woken_system_goals([]).execute_woken_system_goals233,6436 -execute_woken_system_goals([]).execute_woken_system_goals233,6436 -execute_woken_system_goals(['$att_do'(V,New)|LG]) :-execute_woken_system_goals234,6468 -execute_woken_system_goals(['$att_do'(V,New)|LG]) :-execute_woken_system_goals234,6468 -execute_woken_system_goals(['$att_do'(V,New)|LG]) :-execute_woken_system_goals234,6468 -call_atts(V,_) :-call_atts241,6620 -call_atts(V,_) :-call_atts241,6620 -call_atts(V,_) :-call_atts241,6620 -call_atts(V,_) :-call_atts243,6653 -call_atts(V,_) :-call_atts243,6653 -call_atts(V,_) :-call_atts243,6653 -call_atts(V,New) :-call_atts245,6692 -call_atts(V,New) :-call_atts245,6692 -call_atts(V,New) :-call_atts245,6692 -do_hook_attributes([], _).do_hook_attributes264,7067 -do_hook_attributes([], _).do_hook_attributes264,7067 -do_hook_attributes(att(Mod,Att,Atts), Binding) :-do_hook_attributes265,7094 -do_hook_attributes(att(Mod,Att,Atts), Binding) :-do_hook_attributes265,7094 -do_hook_attributes(att(Mod,Att,Atts), Binding) :-do_hook_attributes265,7094 -lcall([]).lcall275,7286 -lcall([]).lcall275,7286 -lcall([Mod:Gls|Goals]) :-lcall276,7297 -lcall([Mod:Gls|Goals]) :-lcall276,7297 -lcall([Mod:Gls|Goals]) :-lcall276,7297 -lcall2([], _).lcall2280,7357 -lcall2([], _).lcall2280,7357 -lcall2([Goal|Goals], Mod) :-lcall2281,7372 -lcall2([Goal|Goals], Mod) :-lcall2281,7372 -lcall2([Goal|Goals], Mod) :-lcall2281,7372 -dif(X,Z), call_residue_vars(dif(X,Y),L).dif295,7652 -dif(X,Z), call_residue_vars(dif(X,Y),L).dif295,7652 -prolog:call_residue_vars(Goal,Residue) :-call_residue_vars303,7739 -prolog:call_residue_vars(Goal,Residue) :-call_residue_vars303,7739 -'$ord_remove'([], _, []).$ord_remove313,8016 -'$ord_remove'([], _, [])./p,predicate,predicate definition313,8016 -'$ord_remove'([], _, []).$ord_remove313,8016 -'$ord_remove'([V|Vs], [], [V|Vs]).$ord_remove314,8042 -'$ord_remove'([V|Vs], [], [V|Vs])./p,predicate,predicate definition314,8042 -'$ord_remove'([V|Vs], [], [V|Vs]).$ord_remove314,8042 -'$ord_remove'([V1|Vss], [V2|Vs0s], Residue) :-$ord_remove315,8077 -'$ord_remove'([V1|Vss], [V2|Vs0s], Residue) :-$ord_remove315,8077 -'$ord_remove'([V1|Vss], [V2|Vs0s], Residue) :-$ord_remove315,8077 -attvar_residuals(att(Module,Value,As), V) -->attvar_residuals347,9041 -attvar_residuals(att(Module,Value,As), V) -->attvar_residuals347,9041 -attvar_residuals(att(Module,Value,As), V) -->attvar_residuals347,9041 -list([]) --> [].list375,9982 -list([]) --> [].list375,9982 -list([]) --> [].list375,9982 -list([L|Ls]) --> [L], list(Ls).list376,10003 -list([L|Ls]) --> [L], list(Ls).list376,10003 -list([L|Ls]) --> [L], list(Ls).list376,10003 -list([L|Ls]) --> [L], list(Ls).list376,10003 -list([L|Ls]) --> [L], list(Ls).list376,10003 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list378,10036 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list378,10036 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list378,10036 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list378,10036 -dot_list((A,B)) --> !, dot_list(A), dot_list(B).dot_list378,10036 -dot_list(A) --> [A].dot_list379,10085 -dot_list(A) --> [A].dot_list379,10085 -dot_list(A) --> [A].dot_list379,10085 -delete_attributes(Term) :-delete_attributes381,10107 -delete_attributes(Term) :-delete_attributes381,10107 -delete_attributes(Term) :-delete_attributes381,10107 -delete_attributes_([]).delete_attributes_385,10185 -delete_attributes_([]).delete_attributes_385,10185 -delete_attributes_([V|Vs]) :-delete_attributes_386,10209 -delete_attributes_([V|Vs]) :-delete_attributes_386,10209 -delete_attributes_([V|Vs]) :-delete_attributes_386,10209 -prolog:call_residue(Goal,Residue) :-call_residue421,10866 -prolog:call_residue(Goal,Residue) :-call_residue421,10866 -prolog:call_residue(Module:Goal,Residue) :-call_residue424,10980 -prolog:call_residue(Module:Goal,Residue) :-call_residue424,10980 -prolog:call_residue(Goal,Residue) :-call_residue427,11078 -prolog:call_residue(Goal,Residue) :-call_residue427,11078 -call_residue(Goal,Module,Residue) :-call_residue431,11180 -call_residue(Goal,Module,Residue) :-call_residue431,11180 -call_residue(Goal,Module,Residue) :-call_residue431,11180 -attributes:delayed_goals(G, Vs, NVs, Gs) :-delayed_goals442,11413 -attributes:delayed_goals(G, Vs, NVs, Gs) :-delayed_goals442,11413 -project_delayed_goals(G) :-project_delayed_goals447,11558 -project_delayed_goals(G) :-project_delayed_goals447,11558 -project_delayed_goals(G) :-project_delayed_goals447,11558 -project_delayed_goals(_).project_delayed_goals456,11870 -project_delayed_goals(_).project_delayed_goals456,11870 -attributed(G, Vs) :-attributed459,11898 -attributed(G, Vs) :-attributed459,11898 -attributed(G, Vs) :-attributed459,11898 -att_vars([], []).att_vars463,11965 -att_vars([], []).att_vars463,11965 -att_vars([V|LGs], [V|AttVars]) :- attvar(V), !,att_vars464,11983 -att_vars([V|LGs], [V|AttVars]) :- attvar(V), !,att_vars464,11983 -att_vars([V|LGs], [V|AttVars]) :- attvar(V), !,att_vars464,11983 -att_vars([_|LGs], AttVars) :-att_vars466,12056 -att_vars([_|LGs], AttVars) :-att_vars466,12056 -att_vars([_|LGs], AttVars) :-att_vars466,12056 -project_attributes(AllVs, G) :-project_attributes492,13093 -project_attributes(AllVs, G) :-project_attributes492,13093 -project_attributes(AllVs, G) :-project_attributes492,13093 -pick_att_vars([],[]).pick_att_vars499,13287 -pick_att_vars([],[]).pick_att_vars499,13287 -pick_att_vars([V|L],[V|NL]) :- attvar(V), !,pick_att_vars500,13309 -pick_att_vars([V|L],[V|NL]) :- attvar(V), !,pick_att_vars500,13309 -pick_att_vars([V|L],[V|NL]) :- attvar(V), !,pick_att_vars500,13309 -pick_att_vars([_|L],NL) :-pick_att_vars502,13376 -pick_att_vars([_|L],NL) :-pick_att_vars502,13376 -pick_att_vars([_|L],NL) :-pick_att_vars502,13376 -project_module([], _, _).project_module505,13426 -project_module([], _, _).project_module505,13426 -project_module([Mod|LMods], LIV, LAV) :-project_module506,13452 -project_module([Mod|LMods], LIV, LAV) :-project_module506,13452 -project_module([Mod|LMods], LIV, LAV) :-project_module506,13452 -project_module([_|LMods], LIV, LAV) :-project_module511,13652 -project_module([_|LMods], LIV, LAV) :-project_module511,13652 -project_module([_|LMods], LIV, LAV) :-project_module511,13652 - -pl/boot.yap,33115 -system_module(_Mod, _SysExps, _Decls).system_module179,4029 -system_module(_Mod, _SysExps, _Decls).system_module179,4029 -use_system_module(_Module, _SysExps).use_system_module182,4098 -use_system_module(_Module, _SysExps).use_system_module182,4098 -private(_).private184,4137 -private(_).private184,4137 -'$early_print_message'(Level, Msg) :-$early_print_message260,6051 -'$early_print_message'(Level, Msg) :-$early_print_message260,6051 -'$early_print_message'(Level, Msg) :-$early_print_message260,6051 -'$early_print_message'(informational, _) :-$early_print_message263,6166 -'$early_print_message'(informational, _) :-$early_print_message263,6166 -'$early_print_message'(informational, _) :-$early_print_message263,6166 -'$early_print_message'(_, absolute_file_path(X, Y)) :- !,$early_print_message267,6252 -'$early_print_message'(_, absolute_file_path(X, Y)) :- !,$early_print_message267,6252 -'$early_print_message'(_, absolute_file_path(X, Y)) :- !,$early_print_message267,6252 -'$early_print_message'(_, loading( C, F)) :- !,$early_print_message269,6353 -'$early_print_message'(_, loading( C, F)) :- !,$early_print_message269,6353 -'$early_print_message'(_, loading( C, F)) :- !,$early_print_message269,6353 -'$early_print_message'(_, loaded(F,C,M,T,H)) :- !,$early_print_message272,6503 -'$early_print_message'(_, loaded(F,C,M,T,H)) :- !,$early_print_message272,6503 -'$early_print_message'(_, loaded(F,C,M,T,H)) :- !,$early_print_message272,6503 -'$early_print_message'(Level, Msg) :-$early_print_message275,6693 -'$early_print_message'(Level, Msg) :-$early_print_message275,6693 -'$early_print_message'(Level, Msg) :-$early_print_message275,6693 -'$early_print_message'(Level, Msg) :-$early_print_message279,6842 -'$early_print_message'(Level, Msg) :-$early_print_message279,6842 -'$early_print_message'(Level, Msg) :-$early_print_message279,6842 -'$bootstrap_predicate'('$expand_a_clause'(_,_,_,_), _M, _) :- !,$bootstrap_predicate282,6942 -'$bootstrap_predicate'('$expand_a_clause'(_,_,_,_), _M, _) :- !,$bootstrap_predicate282,6942 -'$bootstrap_predicate'('$expand_a_clause'(_,_,_,_), _M, _) :- !,$bootstrap_predicate'('$expand_a_clause282,6942 -'$bootstrap_predicate'('$imported_predicate'(_,_,_,_), _M, _) :- !,$bootstrap_predicate284,7016 -'$bootstrap_predicate'('$imported_predicate'(_,_,_,_), _M, _) :- !,$bootstrap_predicate284,7016 -'$bootstrap_predicate'('$imported_predicate'(_,_,_,_), _M, _) :- !,$bootstrap_predicate'('$imported_predicate284,7016 -'$bootstrap_predicate'('$process_directive'(Gs, _Mode, M, _VL, _Pos) , _M, _) :- !,$bootstrap_predicate286,7092 -'$bootstrap_predicate'('$process_directive'(Gs, _Mode, M, _VL, _Pos) , _M, _) :- !,$bootstrap_predicate286,7092 -'$bootstrap_predicate'('$process_directive'(Gs, _Mode, M, _VL, _Pos) , _M, _) :- !,$bootstrap_predicate'('$process_directive286,7092 -'$bootstrap_predicate'(delayed_goals(_, _, _ , _), _M, _) :- !,$bootstrap_predicate292,7367 -'$bootstrap_predicate'(delayed_goals(_, _, _ , _), _M, _) :- !,$bootstrap_predicate292,7367 -'$bootstrap_predicate'(delayed_goals(_, _, _ , _), _M, _) :- !,$bootstrap_predicate292,7367 -'$bootstrap_predicate'(sort(L, S), _M, _) :- !,$bootstrap_predicate294,7439 -'$bootstrap_predicate'(sort(L, S), _M, _) :- !,$bootstrap_predicate294,7439 -'$bootstrap_predicate'(sort(L, S), _M, _) :- !,$bootstrap_predicate294,7439 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate296,7504 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate296,7504 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate296,7504 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate298,7611 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate298,7611 -'$bootstrap_predicate'(print_message(Context, Msg), _M, _) :- !,$bootstrap_predicate298,7611 -'$bootstrap_predicate'(prolog_file_type(A,prolog), _, _) :- !,$bootstrap_predicate300,7722 -'$bootstrap_predicate'(prolog_file_type(A,prolog), _, _) :- !,$bootstrap_predicate300,7722 -'$bootstrap_predicate'(prolog_file_type(A,prolog), _, _) :- !,$bootstrap_predicate300,7722 -'$bootstrap_predicate'(file_search_path(_A,_B), _, _ ) :- !, fail.$bootstrap_predicate302,7829 -'$bootstrap_predicate'(file_search_path(_A,_B), _, _ ) :- !, fail.$bootstrap_predicate302,7829 -'$bootstrap_predicate'(file_search_path(_A,_B), _, _ ) :- !, fail.$bootstrap_predicate302,7829 -'$bootstrap_predicate'(meta_predicate(G), M, _) :- !,$bootstrap_predicate303,7896 -'$bootstrap_predicate'(meta_predicate(G), M, _) :- !,$bootstrap_predicate303,7896 -'$bootstrap_predicate'(meta_predicate(G), M, _) :- !,$bootstrap_predicate303,7896 -'$bootstrap_predicate'(G, ImportingMod, _) :-$bootstrap_predicate306,8011 -'$bootstrap_predicate'(G, ImportingMod, _) :-$bootstrap_predicate306,8011 -'$bootstrap_predicate'(G, ImportingMod, _) :-$bootstrap_predicate306,8011 -'$bootstrap_predicate'(G0, M0, Action) :-$bootstrap_predicate311,8240 -'$bootstrap_predicate'(G0, M0, Action) :-$bootstrap_predicate311,8240 -'$bootstrap_predicate'(G0, M0, Action) :-$bootstrap_predicate311,8240 -'$undefp0'([M|G], Action) :-$undefp0322,8614 -'$undefp0'([M|G], Action) :-$undefp0322,8614 -'$undefp0'([M|G], Action) :-$undefp0322,8614 -true :- true.true330,8734 -live :-live332,8749 -'$start_orp_threads'(1) :- !.$start_orp_threads449,11567 -'$start_orp_threads'(1) :- !.$start_orp_threads449,11567 -'$start_orp_threads'(1) :- !.$start_orp_threads449,11567 -'$start_orp_threads'(W) :-$start_orp_threads450,11597 -'$start_orp_threads'(W) :-$start_orp_threads450,11597 -'$start_orp_threads'(W) :-$start_orp_threads450,11597 -'$read_toplevel'(Goal, Bindings) :-$read_toplevel467,11957 -'$read_toplevel'(Goal, Bindings) :-$read_toplevel467,11957 -'$read_toplevel'(Goal, Bindings) :-$read_toplevel467,11957 -'$handle_toplevel_error'( syntax_error(_)) :-$handle_toplevel_error474,12137 -'$handle_toplevel_error'( syntax_error(_)) :-$handle_toplevel_error474,12137 -'$handle_toplevel_error'( syntax_error(_)) :-$handle_toplevel_error474,12137 -'$handle_toplevel_error'( error(io_error(read,user_input),_)) :-$handle_toplevel_error477,12194 -'$handle_toplevel_error'( error(io_error(read,user_input),_)) :-$handle_toplevel_error477,12194 -'$handle_toplevel_error'( error(io_error(read,user_input),_)) :-$handle_toplevel_error477,12194 -'$handle_toplevel_error'(_, E) :-$handle_toplevel_error479,12263 -'$handle_toplevel_error'(_, E) :-$handle_toplevel_error479,12263 -'$handle_toplevel_error'(_, E) :-$handle_toplevel_error479,12263 -'$command'(C,VL,Pos,Con) :-$command596,14877 -'$command'(C,VL,Pos,Con) :-$command596,14877 -'$command'(C,VL,Pos,Con) :-$command596,14877 -'$command'(C,VL,Pos,Con) :-$command599,15017 -'$command'(C,VL,Pos,Con) :-$command599,15017 -'$command'(C,VL,Pos,Con) :-$command599,15017 -'$execute_command'(C,_,_,top,Source) :-$execute_command630,15867 -'$execute_command'(C,_,_,top,Source) :-$execute_command630,15867 -'$execute_command'(C,_,_,top,Source) :-$execute_command630,15867 -'$execute_command'(C,_,_,top,Source) :-$execute_command634,15979 -'$execute_command'(C,_,_,top,Source) :-$execute_command634,15979 -'$execute_command'(C,_,_,top,Source) :-$execute_command634,15979 -'$continue_with_command'(Where,V,'$stream_position'(C,_P,A1,A2,A3),'$source_location'(_F,L):G,Source) :-$continue_with_command668,16928 -'$continue_with_command'(Where,V,'$stream_position'(C,_P,A1,A2,A3),'$source_location'(_F,L):G,Source) :-$continue_with_command668,16928 -'$continue_with_command'(Where,V,'$stream_position'(C,_P,A1,A2,A3),'$source_location'(_F,L):G,Source) :-$continue_with_command'(Where,V,'$stream_position'(C,_P,A1,A2,A3),'$source_location668,16928 -'$continue_with_command'(reconsult,V,Pos,G,Source) :-$continue_with_command671,17118 -'$continue_with_command'(reconsult,V,Pos,G,Source) :-$continue_with_command671,17118 -'$continue_with_command'(reconsult,V,Pos,G,Source) :-$continue_with_command671,17118 -'$continue_with_command'(consult,V,Pos,G,Source) :-$continue_with_command675,17245 -'$continue_with_command'(consult,V,Pos,G,Source) :-$continue_with_command675,17245 -'$continue_with_command'(consult,V,Pos,G,Source) :-$continue_with_command675,17245 -'$continue_with_command'(top,V,_,G,_) :-$continue_with_command678,17351 -'$continue_with_command'(top,V,_,G,_) :-$continue_with_command678,17351 -'$continue_with_command'(top,V,_,G,_) :-$continue_with_command678,17351 -'$go_compile_clause'(G, _Vs, _Pos, Where, Source) :-$go_compile_clause693,17924 -'$go_compile_clause'(G, _Vs, _Pos, Where, Source) :-$go_compile_clause693,17924 -'$go_compile_clause'(G, _Vs, _Pos, Where, Source) :-$go_compile_clause693,17924 -'$$compile'(C, Where, C0, R) :-$$compile700,18167 -'$$compile'(C, Where, C0, R) :-$$compile700,18167 -'$$compile'(C, Where, C0, R) :-$$compile700,18167 -'$init_pred'(H, Mod, _Where ) :-$init_pred713,18427 -'$init_pred'(H, Mod, _Where ) :-$init_pred713,18427 -'$init_pred'(H, Mod, _Where ) :-$init_pred713,18427 -'$init_pred'(H, Mod, Where ) :-$init_pred720,18641 -'$init_pred'(H, Mod, Where ) :-$init_pred720,18641 -'$init_pred'(H, Mod, Where ) :-$init_pred720,18641 -'$init_pred'(_H, _Mod, _Where ).$init_pred725,18763 -'$init_pred'(_H, _Mod, _Where )./p,predicate,predicate definition725,18763 -'$init_pred'(_H, _Mod, _Where ).$init_pred725,18763 -'$init_as_dynamic'( asserta ).$init_as_dynamic727,18797 -'$init_as_dynamic'( asserta )./p,predicate,predicate definition727,18797 -'$init_as_dynamic'( asserta ).$init_as_dynamic727,18797 -'$init_as_dynamic'( assertz ).$init_as_dynamic728,18828 -'$init_as_dynamic'( assertz )./p,predicate,predicate definition728,18828 -'$init_as_dynamic'( assertz ).$init_as_dynamic728,18828 -'$init_as_dynamic'( consult ) :-$init_as_dynamic729,18859 -'$init_as_dynamic'( consult ) :-$init_as_dynamic729,18859 -'$init_as_dynamic'( consult ) :-$init_as_dynamic729,18859 -'$init_as_dynamic'( reconsult ) :-$init_as_dynamic731,18933 -'$init_as_dynamic'( reconsult ) :-$init_as_dynamic731,18933 -'$init_as_dynamic'( reconsult ) :-$init_as_dynamic731,18933 -'$check_if_reconsulted'(N,A) :-$check_if_reconsulted734,19010 -'$check_if_reconsulted'(N,A) :-$check_if_reconsulted734,19010 -'$check_if_reconsulted'(N,A) :-$check_if_reconsulted734,19010 -'$inform_as_reconsulted'(N,A) :-$inform_as_reconsulted742,19180 -'$inform_as_reconsulted'(N,A) :-$inform_as_reconsulted742,19180 -'$inform_as_reconsulted'(N,A) :-$inform_as_reconsulted742,19180 -'$prompt_alternatives_on'(determinism).$prompt_alternatives_on752,19385 -'$prompt_alternatives_on'(determinism)./p,predicate,predicate definition752,19385 -'$prompt_alternatives_on'(determinism).$prompt_alternatives_on752,19385 -'$query'(end_of_file,_).$query756,19451 -'$query'(end_of_file,_)./p,predicate,predicate definition756,19451 -'$query'(end_of_file,_).$query756,19451 -'$query'(G,[]) :-$query757,19476 -'$query'(G,[]) :-$query757,19476 -'$query'(G,[]) :-$query757,19476 -'$query'(G,V) :-$query762,19600 -'$query'(G,V) :-$query762,19600 -'$query'(G,V) :-$query762,19600 -'$delayed_goals'(G, V, NV, LGs, NCP) :-$delayed_goals804,20418 -'$delayed_goals'(G, V, NV, LGs, NCP) :-$delayed_goals804,20418 -'$delayed_goals'(G, V, NV, LGs, NCP) :-$delayed_goals804,20418 -'$do_yes_no'([X|L], M) :-$do_yes_no824,20798 -'$do_yes_no'([X|L], M) :-$do_yes_no824,20798 -'$do_yes_no'([X|L], M) :-$do_yes_no824,20798 -'$do_yes_no'(G, M) :-$do_yes_no827,20849 -'$do_yes_no'(G, M) :-$do_yes_no827,20849 -'$do_yes_no'(G, M) :-$do_yes_no827,20849 -'$write_query_answer_true'([]) :- !,$write_query_answer_true830,20893 -'$write_query_answer_true'([]) :- !,$write_query_answer_true830,20893 -'$write_query_answer_true'([]) :- !,$write_query_answer_true830,20893 -'$write_query_answer_true'(_).$write_query_answer_true832,20959 -'$write_query_answer_true'(_)./p,predicate,predicate definition832,20959 -'$write_query_answer_true'(_).$write_query_answer_true832,20959 -'$present_answer'(_,_):-$present_answer840,21150 -'$present_answer'(_,_):-$present_answer840,21150 -'$present_answer'(_,_):-$present_answer840,21150 -'$present_answer'((?-), Answ) :-$present_answer843,21204 -'$present_answer'((?-), Answ) :-$present_answer843,21204 -'$present_answer'((?-), Answ) :-$present_answer843,21204 -'$do_another'(C) :-$do_another859,21636 -'$do_another'(C) :-$do_another859,21636 -'$do_another'(C) :-$do_another859,21636 -'$write_answer'(_,_,_) :-$write_answer897,22375 -'$write_answer'(_,_,_) :-$write_answer897,22375 -'$write_answer'(_,_,_) :-$write_answer897,22375 -'$write_answer'(Vs, LBlk, FLAnsw) :-$write_answer900,22426 -'$write_answer'(Vs, LBlk, FLAnsw) :-$write_answer900,22426 -'$write_answer'(Vs, LBlk, FLAnsw) :-$write_answer900,22426 -'$purge_dontcares'([],[]).$purge_dontcares907,22654 -'$purge_dontcares'([],[])./p,predicate,predicate definition907,22654 -'$purge_dontcares'([],[]).$purge_dontcares907,22654 -'$purge_dontcares'([Name=_|Vs],NVs) :-$purge_dontcares908,22681 -'$purge_dontcares'([Name=_|Vs],NVs) :-$purge_dontcares908,22681 -'$purge_dontcares'([Name=_|Vs],NVs) :-$purge_dontcares908,22681 -'$purge_dontcares'([V|Vs],[V|NVs]) :-$purge_dontcares911,22788 -'$purge_dontcares'([V|Vs],[V|NVs]) :-$purge_dontcares911,22788 -'$purge_dontcares'([V|Vs],[V|NVs]) :-$purge_dontcares911,22788 -'$prep_answer_var_by_var'([], L, L).$prep_answer_var_by_var915,22857 -'$prep_answer_var_by_var'([], L, L)./p,predicate,predicate definition915,22857 -'$prep_answer_var_by_var'([], L, L).$prep_answer_var_by_var915,22857 -'$prep_answer_var_by_var'([Name=Value|L], LF, L0) :-$prep_answer_var_by_var916,22894 -'$prep_answer_var_by_var'([Name=Value|L], LF, L0) :-$prep_answer_var_by_var916,22894 -'$prep_answer_var_by_var'([Name=Value|L], LF, L0) :-$prep_answer_var_by_var916,22894 -'$delete_identical_answers'([], _, [], []).$delete_identical_answers922,23136 -'$delete_identical_answers'([], _, [], [])./p,predicate,predicate definition922,23136 -'$delete_identical_answers'([], _, [], []).$delete_identical_answers922,23136 -'$delete_identical_answers'([(Name=Value)|L], Value0, FL, [Name|Names]) :-$delete_identical_answers923,23180 -'$delete_identical_answers'([(Name=Value)|L], Value0, FL, [Name|Names]) :-$delete_identical_answers923,23180 -'$delete_identical_answers'([(Name=Value)|L], Value0, FL, [Name|Names]) :-$delete_identical_answers923,23180 -'$delete_identical_answers'([VV|L], Value0, [VV|FL], Names) :-$delete_identical_answers926,23328 -'$delete_identical_answers'([VV|L], Value0, [VV|FL], Names) :-$delete_identical_answers926,23328 -'$delete_identical_answers'([VV|L], Value0, [VV|FL], Names) :-$delete_identical_answers926,23328 -'$prep_answer_var'(Names, Value, LF, L0) :- var(Value), !,$prep_answer_var930,23500 -'$prep_answer_var'(Names, Value, LF, L0) :- var(Value), !,$prep_answer_var930,23500 -'$prep_answer_var'(Names, Value, LF, L0) :- var(Value), !,$prep_answer_var930,23500 -'$prep_answer_var'(Names, Value, [nonvar(Names,Value)|L0], L0).$prep_answer_var932,23603 -'$prep_answer_var'(Names, Value, [nonvar(Names,Value)|L0], L0)./p,predicate,predicate definition932,23603 -'$prep_answer_var'(Names, Value, [nonvar(Names,Value)|L0], L0).$prep_answer_var932,23603 -'$prep_answer_unbound_var'([_], L, L) :- !.$prep_answer_unbound_var935,23695 -'$prep_answer_unbound_var'([_], L, L) :- !.$prep_answer_unbound_var935,23695 -'$prep_answer_unbound_var'([_], L, L) :- !.$prep_answer_unbound_var935,23695 -'$prep_answer_unbound_var'(Names, [var(Names)|L0], L0).$prep_answer_unbound_var936,23739 -'$prep_answer_unbound_var'(Names, [var(Names)|L0], L0)./p,predicate,predicate definition936,23739 -'$prep_answer_unbound_var'(Names, [var(Names)|L0], L0).$prep_answer_unbound_var936,23739 -'$gen_name_string'(I,L,[C|L]) :- I < 26, !, C is I+65.$gen_name_string938,23796 -'$gen_name_string'(I,L,[C|L]) :- I < 26, !, C is I+65.$gen_name_string938,23796 -'$gen_name_string'(I,L,[C|L]) :- I < 26, !, C is I+65.$gen_name_string938,23796 -'$gen_name_string'(I,L0,LF) :-$gen_name_string939,23851 -'$gen_name_string'(I,L0,LF) :-$gen_name_string939,23851 -'$gen_name_string'(I,L0,LF) :-$gen_name_string939,23851 -'$write_vars_and_goals'([], _, []).$write_vars_and_goals945,23964 -'$write_vars_and_goals'([], _, [])./p,predicate,predicate definition945,23964 -'$write_vars_and_goals'([], _, []).$write_vars_and_goals945,23964 -'$write_vars_and_goals'([nl,G1|LG], First, NG) :- !,$write_vars_and_goals946,24000 -'$write_vars_and_goals'([nl,G1|LG], First, NG) :- !,$write_vars_and_goals946,24000 -'$write_vars_and_goals'([nl,G1|LG], First, NG) :- !,$write_vars_and_goals946,24000 -'$write_vars_and_goals'([G1|LG], First, NG) :-$write_vars_and_goals950,24158 -'$write_vars_and_goals'([G1|LG], First, NG) :-$write_vars_and_goals950,24158 -'$write_vars_and_goals'([G1|LG], First, NG) :-$write_vars_and_goals950,24158 -'$goal_to_string'(Format, G, String) :-$goal_to_string954,24294 -'$goal_to_string'(Format, G, String) :-$goal_to_string954,24294 -'$goal_to_string'(Format, G, String) :-$goal_to_string954,24294 -'$write_goal_output'(var([V|VL]), First, [var([V|VL])|L], next, L) :- !,$write_goal_output957,24368 -'$write_goal_output'(var([V|VL]), First, [var([V|VL])|L], next, L) :- !,$write_goal_output957,24368 -'$write_goal_output'(var([V|VL]), First, [var([V|VL])|L], next, L) :- !,$write_goal_output957,24368 -'$write_goal_output'(nonvar([V|VL],B), First, [nonvar([V|VL],B)|L], next, L) :- !,$write_goal_output961,24559 -'$write_goal_output'(nonvar([V|VL],B), First, [nonvar([V|VL],B)|L], next, L) :- !,$write_goal_output961,24559 -'$write_goal_output'(nonvar([V|VL],B), First, [nonvar([V|VL],B)|L], next, L) :- !,$write_goal_output961,24559 -'$write_goal_output'(nl, First, NG, First, NG) :- !,$write_goal_output970,24955 -'$write_goal_output'(nl, First, NG, First, NG) :- !,$write_goal_output970,24955 -'$write_goal_output'(nl, First, NG, First, NG) :- !,$write_goal_output970,24955 -'$write_goal_output'(Format-G, First, NG, Next, IG) :- !,$write_goal_output972,25037 -'$write_goal_output'(Format-G, First, NG, Next, IG) :- !,$write_goal_output972,25037 -'$write_goal_output'(Format-G, First, NG, Next, IG) :- !,$write_goal_output972,25037 -'$write_goal_output'(_-G, First, [G|NG], next, NG) :- !,$write_goal_output986,25453 -'$write_goal_output'(_-G, First, [G|NG], next, NG) :- !,$write_goal_output986,25453 -'$write_goal_output'(_-G, First, [G|NG], next, NG) :- !,$write_goal_output986,25453 -'$write_goal_output'(_M:G, First, [G|NG], next, NG) :- !,$write_goal_output992,25707 -'$write_goal_output'(_M:G, First, [G|NG], next, NG) :- !,$write_goal_output992,25707 -'$write_goal_output'(_M:G, First, [G|NG], next, NG) :- !,$write_goal_output992,25707 -'$write_goal_output'(G, First, [M:G|NG], next, NG) :-$write_goal_output998,25962 -'$write_goal_output'(G, First, [M:G|NG], next, NG) :-$write_goal_output998,25962 -'$write_goal_output'(G, First, [M:G|NG], next, NG) :-$write_goal_output998,25962 -'$name_vars_in_goals'(G, VL0, G) :-$name_vars_in_goals1006,26237 -'$name_vars_in_goals'(G, VL0, G) :-$name_vars_in_goals1006,26237 -'$name_vars_in_goals'(G, VL0, G) :-$name_vars_in_goals1006,26237 -'$name_well_known_vars'([]).$name_well_known_vars1011,26376 -'$name_well_known_vars'([])./p,predicate,predicate definition1011,26376 -'$name_well_known_vars'([]).$name_well_known_vars1011,26376 -'$name_well_known_vars'([Name=V|NVL0]) :-$name_well_known_vars1012,26405 -'$name_well_known_vars'([Name=V|NVL0]) :-$name_well_known_vars1012,26405 -'$name_well_known_vars'([Name=V|NVL0]) :-$name_well_known_vars1012,26405 -'$name_well_known_vars'([_|NVL0]) :-$name_well_known_vars1016,26510 -'$name_well_known_vars'([_|NVL0]) :-$name_well_known_vars1016,26510 -'$name_well_known_vars'([_|NVL0]) :-$name_well_known_vars1016,26510 -'$name_vars_in_goals1'([], I, I).$name_vars_in_goals11019,26580 -'$name_vars_in_goals1'([], I, I)./p,predicate,predicate definition1019,26580 -'$name_vars_in_goals1'([], I, I).$name_vars_in_goals11019,26580 -'$name_vars_in_goals1'([V|NGVL], I0, IF) :-$name_vars_in_goals11020,26614 -'$name_vars_in_goals1'([V|NGVL], I0, IF) :-$name_vars_in_goals11020,26614 -'$name_vars_in_goals1'([V|NGVL], I0, IF) :-$name_vars_in_goals11020,26614 -'$name_vars_in_goals1'([NV|NGVL], I0, IF) :-$name_vars_in_goals11026,26795 -'$name_vars_in_goals1'([NV|NGVL], I0, IF) :-$name_vars_in_goals11026,26795 -'$name_vars_in_goals1'([NV|NGVL], I0, IF) :-$name_vars_in_goals11026,26795 -'$write_output_vars'([]).$write_output_vars1030,26893 -'$write_output_vars'([])./p,predicate,predicate definition1030,26893 -'$write_output_vars'([]).$write_output_vars1030,26893 -'$write_output_vars'([V|VL]) :-$write_output_vars1031,26919 -'$write_output_vars'([V|VL]) :-$write_output_vars1031,26919 -'$write_output_vars'([V|VL]) :-$write_output_vars1031,26919 -call(G) :- '$execute'(G).call1065,27631 -call(G) :- '$execute'(G).call1065,27631 -call(G) :- '$execute'(G).call1065,27631 -call(G) :- '$execute'(G).call1065,27631 -call(G) :- '$execute'(G).call1065,27631 -incore(G) :- '$execute'(G).incore1074,27710 -incore(G) :- '$execute'(G).incore1074,27710 -incore(G) :- '$execute'(G).incore1074,27710 -incore(G) :- '$execute'(G).incore1074,27710 -incore(G) :- '$execute'(G).incore1074,27710 -'$meta_call'(G, M) :-$meta_call1079,27809 -'$meta_call'(G, M) :-$meta_call1079,27809 -'$meta_call'(G, M) :-$meta_call1079,27809 -'$user_call'(G, M) :-$user_call1083,27885 -'$user_call'(G, M) :-$user_call1083,27885 -'$user_call'(G, M) :-$user_call1083,27885 -','(X,Y) :-,1132,28621 -','(X,Y) :-,1132,28621 -','(X,Y) :-,1132,28621 -';'((X->A),Y) :- !,;1137,28751 -';'((X->A),Y) :- !,;1137,28751 -';'((X->A),Y) :- !,;1137,28751 -';'((X*->A),Y) :- !,;1146,28918 -';'((X*->A),Y) :- !,;1146,28918 -';'((X*->A),Y) :- !,;1146,28918 -';'(X,Y) :-;1157,29146 -';'(X,Y) :-;1157,29146 -';'(X,Y) :-;1157,29146 -'|'(X,Y) :-|1161,29273 -'|'(X,Y) :-|1161,29273 -'|'(X,Y) :-|1161,29273 -'->'(X,Y) :-->1165,29400 -'->'(X,Y) :-->1165,29400 -'->'(X,Y) :-->1165,29400 -'*->'(X,Y) :-*->1169,29531 -'*->'(X,Y) :-*->1169,29531 -'*->'(X,Y) :-*->1169,29531 -not(G) :- \+ '$execute'(G).not1174,29694 -not(G) :- \+ '$execute'(G).not1174,29694 -not(G) :- \+ '$execute'(G).not1174,29694 -not(G) :- \+ '$execute'(G).not1174,29694 -not(G) :- \+ '$execute'(G).not1174,29694 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP)./p,predicate,predicate definition1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by1176,29726 -'$cut_by'(CP) :- '$$cut_by'(CP).$cut_by'(CP) :- '$$cut_by1176,29726 -'$meta_call'(G,_ISO,M) :-$meta_call1181,29785 -'$meta_call'(G,_ISO,M) :-$meta_call1181,29785 -'$meta_call'(G,_ISO,M) :-$meta_call1181,29785 -'$meta_call'(G, CP, G0, M) :-$meta_call1186,29890 -'$meta_call'(G, CP, G0, M) :-$meta_call1186,29890 -'$meta_call'(G, CP, G0, M) :-$meta_call1186,29890 -'$call'(G, CP, G0, _, M) :- /* iso version */$call1189,29945 -'$call'(G, CP, G0, _, M) :- /* iso version */$call1189,29945 -'$call'(G, CP, G0, _, M) :- /* iso version */$call1189,29945 -'$call'(M:_,_,G0,_) :- var(M), !,$call1194,30044 -'$call'(M:_,_,G0,_) :- var(M), !,$call1194,30044 -'$call'(M:_,_,G0,_) :- var(M), !,$call1194,30044 -'$call'(M:G,CP,G0,_) :- !,$call1196,30122 -'$call'(M:G,CP,G0,_) :- !,$call1196,30122 -'$call'(M:G,CP,G0,_) :- !,$call1196,30122 -'$call'((X,Y),CP,G0,M) :- !,$call1198,30177 -'$call'((X,Y),CP,G0,M) :- !,$call1198,30177 -'$call'((X,Y),CP,G0,M) :- !,$call1198,30177 -'$call'((X->Y),CP,G0,M) :- !,$call1201,30262 -'$call'((X->Y),CP,G0,M) :- !,$call1201,30262 -'$call'((X->Y),CP,G0,M) :- !,$call1201,30262 -'$call'((X*->Y),CP,G0,M) :- !,$call1207,30354 -'$call'((X*->Y),CP,G0,M) :- !,$call1207,30354 -'$call'((X*->Y),CP,G0,M) :- !,$call1207,30354 -'$call'((X->Y; Z),CP,G0,M) :- !,$call1210,30427 -'$call'((X->Y; Z),CP,G0,M) :- !,$call1210,30427 -'$call'((X->Y; Z),CP,G0,M) :- !,$call1210,30427 -'$call'((X*->Y; Z),CP,G0,M) :- !,$call1218,30561 -'$call'((X*->Y; Z),CP,G0,M) :- !,$call1218,30561 -'$call'((X*->Y; Z),CP,G0,M) :- !,$call1218,30561 -'$call'((A;B),CP,G0,M) :- !,$call1227,30733 -'$call'((A;B),CP,G0,M) :- !,$call1227,30733 -'$call'((A;B),CP,G0,M) :- !,$call1227,30733 -'$call'((X->Y| Z),CP,G0,M) :- !,$call1233,30827 -'$call'((X->Y| Z),CP,G0,M) :- !,$call1233,30827 -'$call'((X->Y| Z),CP,G0,M) :- !,$call1233,30827 -'$call'((X*->Y| Z),CP,G0,M) :- !,$call1241,30954 -'$call'((X*->Y| Z),CP,G0,M) :- !,$call1241,30954 -'$call'((X*->Y| Z),CP,G0,M) :- !,$call1241,30954 -'$call'((A|B),CP, G0,M) :- !,$call1250,31126 -'$call'((A|B),CP, G0,M) :- !,$call1250,31126 -'$call'((A|B),CP, G0,M) :- !,$call1250,31126 -'$call'(\+ X, _CP, G0, M) :- !,$call1256,31221 -'$call'(\+ X, _CP, G0, M) :- !,$call1256,31221 -'$call'(\+ X, _CP, G0, M) :- !,$call1256,31221 -'$call'(not(X), _CP, G0, M) :- !,$call1259,31312 -'$call'(not(X), _CP, G0, M) :- !,$call1259,31312 -'$call'(not(X), _CP, G0, M) :- !,$call1259,31312 -'$call'(!, CP, _,_) :- !,$call1262,31405 -'$call'(!, CP, _,_) :- !,$call1262,31405 -'$call'(!, CP, _,_) :- !,$call1262,31405 -'$call'([A|B], _, _, M) :- !,$call1264,31448 -'$call'([A|B], _, _, M) :- !,$call1264,31448 -'$call'([A|B], _, _, M) :- !,$call1264,31448 -'$call'(G, _CP, _G0, CurMod) :-$call1266,31499 -'$call'(G, _CP, _G0, CurMod) :-$call1266,31499 -'$call'(G, _CP, _G0, CurMod) :-$call1266,31499 -'$check_callable'(V,G) :- var(V), !,$check_callable1278,31747 -'$check_callable'(V,G) :- var(V), !,$check_callable1278,31747 -'$check_callable'(V,G) :- var(V), !,$check_callable1278,31747 -'$check_callable'(M:_G1,G) :- var(M), !,$check_callable1280,31821 -'$check_callable'(M:_G1,G) :- var(M), !,$check_callable1280,31821 -'$check_callable'(M:_G1,G) :- var(M), !,$check_callable1280,31821 -'$check_callable'(_:G1,G) :- !,$check_callable1282,31899 -'$check_callable'(_:G1,G) :- !,$check_callable1282,31899 -'$check_callable'(_:G1,G) :- !,$check_callable1282,31899 -'$check_callable'(A,G) :- number(A), !,$check_callable1284,31957 -'$check_callable'(A,G) :- number(A), !,$check_callable1284,31957 -'$check_callable'(A,G) :- number(A), !,$check_callable1284,31957 -'$check_callable'(R,G) :- db_reference(R), !,$check_callable1286,32037 -'$check_callable'(R,G) :- db_reference(R), !,$check_callable1286,32037 -'$check_callable'(R,G) :- db_reference(R), !,$check_callable1286,32037 -'$check_callable'(_,_).$check_callable1288,32123 -'$check_callable'(_,_)./p,predicate,predicate definition1288,32123 -'$check_callable'(_,_).$check_callable1288,32123 -bootstrap(F) :-bootstrap1291,32149 -bootstrap(F) :-bootstrap1291,32149 -bootstrap(F) :-bootstrap1291,32149 -'$loop'(Stream,exo) :-$loop1325,32972 -'$loop'(Stream,exo) :-$loop1325,32972 -'$loop'(Stream,exo) :-$loop1325,32972 -'$loop'(Stream,db) :-$loop1334,33258 -'$loop'(Stream,db) :-$loop1334,33258 -'$loop'(Stream,db) :-$loop1334,33258 -'$loop'(Stream,Status) :-$loop1343,33542 -'$loop'(Stream,Status) :-$loop1343,33542 -'$loop'(Stream,Status) :-$loop1343,33542 -'$boot_loop'(Stream,Where) :-$boot_loop1352,33795 -'$boot_loop'(Stream,Where) :-$boot_loop1352,33795 -'$boot_loop'(Stream,Where) :-$boot_loop1352,33795 -'$boot_dcg'( H, B, Where ) :-$boot_dcg1383,34590 -'$boot_dcg'( H, B, Where ) :-$boot_dcg1383,34590 -'$boot_dcg'( H, B, Where ) :-$boot_dcg1383,34590 -'$boot_dcg'( H, B, _ ) :-$boot_dcg1387,34720 -'$boot_dcg'( H, B, _ ) :-$boot_dcg1387,34720 -'$boot_dcg'( H, B, _ ) :-$boot_dcg1387,34720 -'$boot_clause'( Command, Where ) :-$boot_clause1390,34800 -'$boot_clause'( Command, Where ) :-$boot_clause1390,34800 -'$boot_clause'( Command, Where ) :-$boot_clause1390,34800 -'$boot_clause'( Command, _ ) :-$boot_clause1393,34885 -'$boot_clause'( Command, _ ) :-$boot_clause1393,34885 -'$boot_clause'( Command, _ ) :-$boot_clause1393,34885 -'$enter_command'(Stream, Mod, Status) :-$enter_command1398,34970 -'$enter_command'(Stream, Mod, Status) :-$enter_command1398,34970 -'$enter_command'(Stream, Mod, Status) :-$enter_command1398,34970 -'$head_and_body'((H:-B),H,B) :- !.$head_and_body1424,35698 -'$head_and_body'((H:-B),H,B) :- !.$head_and_body1424,35698 -'$head_and_body'((H:-B),H,B) :- !.$head_and_body1424,35698 -'$head_and_body'(H,H,true).$head_and_body1425,35733 -'$head_and_body'(H,H,true)./p,predicate,predicate definition1425,35733 -'$head_and_body'(H,H,true).$head_and_body1425,35733 -'$check_head_and_body'(C,M,H,B,P) :-$check_head_and_body1430,35827 -'$check_head_and_body'(C,M,H,B,P) :-$check_head_and_body1430,35827 -'$check_head_and_body'(C,M,H,B,P) :-$check_head_and_body1430,35827 -'$check_head_and_body'(MH, M, H, true, P) :-$check_head_and_body1437,36010 -'$check_head_and_body'(MH, M, H, true, P) :-$check_head_and_body1437,36010 -'$check_head_and_body'(MH, M, H, true, P) :-$check_head_and_body1437,36010 -'$precompile_term'(Term, ExpandedUser, Expanded) :-$precompile_term1445,36296 -'$precompile_term'(Term, ExpandedUser, Expanded) :-$precompile_term1445,36296 -'$precompile_term'(Term, ExpandedUser, Expanded) :-$precompile_term1445,36296 -'$precompile_term'(Term, Term, Term).$precompile_term1461,36702 -'$precompile_term'(Term, Term, Term)./p,predicate,predicate definition1461,36702 -'$precompile_term'(Term, Term, Term).$precompile_term1461,36702 -'$expand_clause'(InputCl, C1, CO) :-$expand_clause1463,36741 -'$expand_clause'(InputCl, C1, CO) :-$expand_clause1463,36741 -'$expand_clause'(InputCl, C1, CO) :-$expand_clause1463,36741 -'$expand_clause'(Cl, Cl, Cl).$expand_clause1468,36897 -'$expand_clause'(Cl, Cl, Cl)./p,predicate,predicate definition1468,36897 -'$expand_clause'(Cl, Cl, Cl).$expand_clause1468,36897 -expand_term(Term,Expanded) :-expand_term1481,37478 -expand_term(Term,Expanded) :-expand_term1481,37478 -expand_term(Term,Expanded) :-expand_term1481,37478 -'$expand_term_grammar'((A-->B), C) :-$expand_term_grammar1493,37639 -'$expand_term_grammar'((A-->B), C) :-$expand_term_grammar1493,37639 -'$expand_term_grammar'((A-->B), C) :-$expand_term_grammar1493,37639 -'$expand_term_grammar'(A, A).$expand_term_grammar1495,37718 -'$expand_term_grammar'(A, A)./p,predicate,predicate definition1495,37718 -'$expand_term_grammar'(A, A).$expand_term_grammar1495,37718 -'$expand_array_accesses_in_term'(Expanded0,ExpandedF) :-$expand_array_accesses_in_term1500,37776 -'$expand_array_accesses_in_term'(Expanded0,ExpandedF) :-$expand_array_accesses_in_term1500,37776 -'$expand_array_accesses_in_term'(Expanded0,ExpandedF) :-$expand_array_accesses_in_term1500,37776 -'$expand_array_accesses_in_term'(Expanded,Expanded).$expand_array_accesses_in_term1503,37906 -'$expand_array_accesses_in_term'(Expanded,Expanded)./p,predicate,predicate definition1503,37906 -'$expand_array_accesses_in_term'(Expanded,Expanded).$expand_array_accesses_in_term1503,37906 -catch(G, C, A) :-catch1527,38637 -catch(G, C, A) :-catch1527,38637 -catch(G, C, A) :-catch1527,38637 -'$system_catch'(G, M, C, A) :-$system_catch1539,38915 -'$system_catch'(G, M, C, A) :-$system_catch1539,38915 -'$system_catch'(G, M, C, A) :-$system_catch1539,38915 -'$catch'(MG,_,_) :-$catch1543,38990 -'$catch'(MG,_,_) :-$catch1543,38990 -'$catch'(MG,_,_) :-$catch1543,38990 -'$catch'(_,C,A) :-$catch1555,39137 -'$catch'(_,C,A) :-$catch1555,39137 -'$catch'(_,C,A) :-$catch1555,39137 -'$run_catch'(G,E) :-$run_catch1560,39228 -'$run_catch'(G,E) :-$run_catch1560,39228 -'$run_catch'(G,E) :-$run_catch1560,39228 -'$run_catch'(abort,_) :-$run_catch1564,39290 -'$run_catch'(abort,_) :-$run_catch1564,39290 -'$run_catch'(abort,_) :-$run_catch1564,39290 -'$run_catch'('$Error'(E),E) :-$run_catch1566,39330 -'$run_catch'('$Error'(E),E) :-$run_catch1566,39330 -'$run_catch'('$Error'(E),E) :-$run_catch'('$Error1566,39330 -'$run_catch'('$LoopError'(E, Where),E) :-$run_catch1569,39404 -'$run_catch'('$LoopError'(E, Where),E) :-$run_catch1569,39404 -'$run_catch'('$LoopError'(E, Where),E) :-$run_catch'('$LoopError1569,39404 -'$run_catch'('$TraceError'(E, GoalNumber, G, Module, CalledFromDebugger),E) :-$run_catch1572,39485 -'$run_catch'('$TraceError'(E, GoalNumber, G, Module, CalledFromDebugger),E) :-$run_catch1572,39485 -'$run_catch'('$TraceError'(E, GoalNumber, G, Module, CalledFromDebugger),E) :-$run_catch'('$TraceError1572,39485 -'$run_catch'(_Signal,E) :-$run_catch1575,39640 -'$run_catch'(_Signal,E) :-$run_catch1575,39640 -'$run_catch'(_Signal,E) :-$run_catch1575,39640 -'$run_catch'(E, _Signal) :-$run_catch1579,39736 -'$run_catch'(E, _Signal) :-$run_catch1579,39736 -'$run_catch'(E, _Signal) :-$run_catch1579,39736 -throw(Ball) :-throw1593,40051 -throw(Ball) :-throw1593,40051 -throw(Ball) :-throw1593,40051 -log_event( String, Args ) :-log_event1610,40424 -log_event( String, Args ) :-log_event1610,40424 -log_event( String, Args ) :-log_event1610,40424 - -pl/bootlists.yap,1499 -lists:memberchk(X,[X|_]) :- !.memberchk27,669 -lists:memberchk(X,[X|_]) :- !.memberchk27,669 -lists:memberchk(X,[_|L]) :-memberchk28,700 -lists:memberchk(X,[_|L]) :-memberchk28,700 -lists:member(X,[X|_]).member44,1177 -lists:member(X,[_|L]) :-member45,1200 -lists:member(X,[_|L]) :-member45,1200 -lists:identical_member(X,[Y|M]) :-identical_member53,1435 -lists:identical_member(X,[Y|M]) :-identical_member53,1435 -lists:append([], L, L).append69,1776 -lists:append([H|T], L, [H|R]) :-append70,1800 -lists:append([H|T], L, [H|R]) :-append70,1800 -lists:delete([], _, []).delete89,2404 -lists:delete([Head|List], Elem, Residue) :-delete90,2429 -lists:delete([Head|List], Elem, Residue) :-delete90,2429 -lists:delete([Head|List], Elem, [Head|Residue]) :-delete93,2535 -lists:delete([Head|List], Elem, [Head|Residue]) :-delete93,2535 -prolog:length(L, M) :-length111,2899 -prolog:length(L, M) :-length111,2899 -'$$_length'(R, M, M0) :-$$_length120,3098 -'$$_length'(R, M, M0) :-$$_length120,3098 -'$$_length'(R, M, M0) :-$$_length120,3098 -'$$_length1'([], M, M).$$_length1127,3246 -'$$_length1'([], M, M)./p,predicate,predicate definition127,3246 -'$$_length1'([], M, M).$$_length1127,3246 -'$$_length1'([_|L], O, N) :-$$_length1128,3270 -'$$_length1'([_|L], O, N) :-$$_length1128,3270 -'$$_length1'([_|L], O, N) :-$$_length1128,3270 -'$$_length2'(NL, O, N) :-$$_length2135,3391 -'$$_length2'(NL, O, N) :-$$_length2135,3391 -'$$_length2'(NL, O, N) :-$$_length2135,3391 - -pl/bootutils.yap,516 -recordaifnot(K,T,R) :-recordaifnot10,223 -recordaifnot(K,T,R) :-recordaifnot10,223 -recordaifnot(K,T,R) :-recordaifnot10,223 -recordaifnot(K,T,R) :-recordaifnot15,357 -recordaifnot(K,T,R) :-recordaifnot15,357 -recordaifnot(K,T,R) :-recordaifnot15,357 -recordzifnot(K,T,R) :-recordzifnot29,661 -recordzifnot(K,T,R) :-recordzifnot29,661 -recordzifnot(K,T,R) :-recordzifnot29,661 -recordzifnot(K,T,R) :-recordzifnot34,765 -recordzifnot(K,T,R) :-recordzifnot34,765 -recordzifnot(K,T,R) :-recordzifnot34,765 - -pl/callcount.yap,1158 -call_count_data(Calls, Retries, Both) :-call_count_data80,2626 -call_count_data(Calls, Retries, Both) :-call_count_data80,2626 -call_count_data(Calls, Retries, Both) :-call_count_data80,2626 -call_count_reset :-call_count_reset89,2800 -call_count(Calls, Retries, Both) :-call_count136,3881 -call_count(Calls, Retries, Both) :-call_count136,3881 -call_count(Calls, Retries, Both) :-call_count136,3881 -'$check_if_call_count_on'(Calls, 1) :- integer(Calls), !.$check_if_call_count_on142,4122 -'$check_if_call_count_on'(Calls, 1) :- integer(Calls), !.$check_if_call_count_on142,4122 -'$check_if_call_count_on'(Calls, 1) :- integer(Calls), !.$check_if_call_count_on142,4122 -'$check_if_call_count_on'(Calls, 0) :- var(Calls), !.$check_if_call_count_on143,4180 -'$check_if_call_count_on'(Calls, 0) :- var(Calls), !.$check_if_call_count_on143,4180 -'$check_if_call_count_on'(Calls, 0) :- var(Calls), !.$check_if_call_count_on143,4180 -'$check_if_call_count_on'(Calls, A) :-$check_if_call_count_on144,4234 -'$check_if_call_count_on'(Calls, A) :-$check_if_call_count_on144,4234 -'$check_if_call_count_on'(Calls, A) :-$check_if_call_count_on144,4234 - -pl/checker.yap,5546 -style_check(V) :- var(V), !, fail.style_check77,2076 -style_check(V) :- var(V), !, fail.style_check77,2076 -style_check(V) :- var(V), !, fail.style_check77,2076 -style_check(V) :-style_check78,2111 -style_check(V) :-style_check78,2111 -style_check(V) :-style_check78,2111 -style_check(V) :-style_check84,2244 -style_check(V) :-style_check84,2244 -style_check(V) :-style_check84,2244 -style_check(all) :-style_check92,2378 -style_check(all) :-style_check92,2378 -style_check(all) :-style_check92,2378 -style_check(+X) :-style_check94,2454 -style_check(+X) :-style_check94,2454 -style_check(+X) :-style_check94,2454 -style_check(single_var) :-style_check96,2490 -style_check(single_var) :-style_check96,2490 -style_check(single_var) :-style_check96,2490 -style_check(singleton) :-style_check98,2544 -style_check(singleton) :-style_check98,2544 -style_check(singleton) :-style_check98,2544 -style_check(-single_var) :-style_check100,2610 -style_check(-single_var) :-style_check100,2610 -style_check(-single_var) :-style_check100,2610 -style_check(-singleton) :-style_check102,2679 -style_check(-singleton) :-style_check102,2679 -style_check(-singleton) :-style_check102,2679 -style_check(discontiguous) :-style_check104,2747 -style_check(discontiguous) :-style_check104,2747 -style_check(discontiguous) :-style_check104,2747 -style_check(-discontiguous) :-style_check106,2820 -style_check(-discontiguous) :-style_check106,2820 -style_check(-discontiguous) :-style_check106,2820 -style_check(multiple) :-style_check108,2895 -style_check(multiple) :-style_check108,2895 -style_check(multiple) :-style_check108,2895 -style_check(-multiple) :-style_check110,2958 -style_check(-multiple) :-style_check110,2958 -style_check(-multiple) :-style_check110,2958 -style_check(no_effect).style_check112,3023 -style_check(no_effect).style_check112,3023 -style_check(-no_effect).style_check114,3073 -style_check(-no_effect).style_check114,3073 -style_check(var_branches).style_check115,3098 -style_check(var_branches).style_check115,3098 -style_check(+var_branches) :-style_check116,3125 -style_check(+var_branches) :-style_check116,3125 -style_check(+var_branches) :-style_check116,3125 -style_check(-var_branches) :-style_check118,3195 -style_check(-var_branches) :-style_check118,3195 -style_check(-var_branches) :-style_check118,3195 -style_check(atom).style_check120,3266 -style_check(atom).style_check120,3266 -style_check(+atom) :-style_check121,3285 -style_check(+atom) :-style_check121,3285 -style_check(+atom) :-style_check121,3285 -style_check(-atom) :-style_check123,3339 -style_check(-atom) :-style_check123,3339 -style_check(-atom) :-style_check123,3339 -style_check(charset) :-style_check125,3394 -style_check(charset) :-style_check125,3394 -style_check(charset) :-style_check125,3394 -style_check(+charset) :-style_check127,3453 -style_check(+charset) :-style_check127,3453 -style_check(+charset) :-style_check127,3453 -style_check(-charset) :-style_check129,3513 -style_check(-charset) :-style_check129,3513 -style_check(-charset) :-style_check129,3513 -style_check('?'(Info) ) :-style_check131,3574 -style_check('?'(Info) ) :-style_check131,3574 -style_check('?'(Info) ) :-style_check131,3574 -style_check([]).style_check134,3710 -style_check([]).style_check134,3710 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -style_check([H|T]) :- style_check(H), style_check(T).style_check135,3727 -no_style_check(V) :- var(V), !, fail.no_style_check146,4030 -no_style_check(V) :- var(V), !, fail.no_style_check146,4030 -no_style_check(V) :- var(V), !, fail.no_style_check146,4030 -no_style_check(all) :-no_style_check147,4068 -no_style_check(all) :-no_style_check147,4068 -no_style_check(all) :-no_style_check147,4068 -no_style_check(-single_var) :-no_style_check149,4155 -no_style_check(-single_var) :-no_style_check149,4155 -no_style_check(-single_var) :-no_style_check149,4155 -no_style_check(-singleton) :-no_style_check151,4223 -no_style_check(-singleton) :-no_style_check151,4223 -no_style_check(-singleton) :-no_style_check151,4223 -no_style_check(-discontiguous) :-no_style_check153,4290 -no_style_check(-discontiguous) :-no_style_check153,4290 -no_style_check(-discontiguous) :-no_style_check153,4290 -no_style_check(-multiple) :-no_style_check155,4365 -no_style_check(-multiple) :-no_style_check155,4365 -no_style_check(-multiple) :-no_style_check155,4365 -no_style_check([]).no_style_check157,4431 -no_style_check([]).no_style_check157,4431 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -no_style_check([H|T]) :- no_style_check(H), no_style_check(T).no_style_check158,4451 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 -discontiguous(P) :- '$discontiguous'(P).discontiguous169,4781 - -pl/consult.yap,36362 -load_files(Files,Opts) :-load_files210,6023 -load_files(Files,Opts) :-load_files210,6023 -load_files(Files,Opts) :-load_files210,6023 -'$lf_option'(autoload, 1, false).$lf_option213,6101 -'$lf_option'(autoload, 1, false)./p,predicate,predicate definition213,6101 -'$lf_option'(autoload, 1, false).$lf_option213,6101 -'$lf_option'(derived_from, 2, false).$lf_option214,6135 -'$lf_option'(derived_from, 2, false)./p,predicate,predicate definition214,6135 -'$lf_option'(derived_from, 2, false).$lf_option214,6135 -'$lf_option'(encoding, 3, default).$lf_option215,6173 -'$lf_option'(encoding, 3, default)./p,predicate,predicate definition215,6173 -'$lf_option'(encoding, 3, default).$lf_option215,6173 -'$lf_option'(expand, 4, false).$lf_option216,6209 -'$lf_option'(expand, 4, false)./p,predicate,predicate definition216,6209 -'$lf_option'(expand, 4, false).$lf_option216,6209 -'$lf_option'(if, 5, true).$lf_option217,6241 -'$lf_option'(if, 5, true)./p,predicate,predicate definition217,6241 -'$lf_option'(if, 5, true).$lf_option217,6241 -'$lf_option'(imports, 6, all).$lf_option218,6268 -'$lf_option'(imports, 6, all)./p,predicate,predicate definition218,6268 -'$lf_option'(imports, 6, all).$lf_option218,6268 -'$lf_option'(qcompile, 7, Current) :-$lf_option219,6299 -'$lf_option'(qcompile, 7, Current) :-$lf_option219,6299 -'$lf_option'(qcompile, 7, Current) :-$lf_option219,6299 -'$lf_option'(silent, 8, _).$lf_option221,6394 -'$lf_option'(silent, 8, _)./p,predicate,predicate definition221,6394 -'$lf_option'(silent, 8, _).$lf_option221,6394 -'$lf_option'(skip_unix_header, 9, true).$lf_option222,6422 -'$lf_option'(skip_unix_header, 9, true)./p,predicate,predicate definition222,6422 -'$lf_option'(skip_unix_header, 9, true).$lf_option222,6422 -'$lf_option'(compilation_mode, 10, Flag) :-$lf_option223,6463 -'$lf_option'(compilation_mode, 10, Flag) :-$lf_option223,6463 -'$lf_option'(compilation_mode, 10, Flag) :-$lf_option223,6463 -'$lf_option'(consult, 11, reconsult).$lf_option226,6599 -'$lf_option'(consult, 11, reconsult)./p,predicate,predicate definition226,6599 -'$lf_option'(consult, 11, reconsult).$lf_option226,6599 -'$lf_option'(stream, 12, _).$lf_option227,6637 -'$lf_option'(stream, 12, _)./p,predicate,predicate definition227,6637 -'$lf_option'(stream, 12, _).$lf_option227,6637 -'$lf_option'(register, 13, true).$lf_option228,6666 -'$lf_option'(register, 13, true)./p,predicate,predicate definition228,6666 -'$lf_option'(register, 13, true).$lf_option228,6666 -'$lf_option'('$files', 14, _).$lf_option229,6700 -'$lf_option'('$files', 14, _)./p,predicate,predicate definition229,6700 -'$lf_option'('$files', 14, _).$lf_option229,6700 -'$lf_option'('$call', 15, _).$lf_option230,6731 -'$lf_option'('$call', 15, _)./p,predicate,predicate definition230,6731 -'$lf_option'('$call', 15, _).$lf_option230,6731 -'$lf_option'('$use_module', 16, _).$lf_option231,6761 -'$lf_option'('$use_module', 16, _)./p,predicate,predicate definition231,6761 -'$lf_option'('$use_module', 16, _).$lf_option231,6761 -'$lf_option'('$consulted_at', 17, _).$lf_option232,6797 -'$lf_option'('$consulted_at', 17, _)./p,predicate,predicate definition232,6797 -'$lf_option'('$consulted_at', 17, _).$lf_option232,6797 -'$lf_option'('$options', 18, _).$lf_option233,6835 -'$lf_option'('$options', 18, _)./p,predicate,predicate definition233,6835 -'$lf_option'('$options', 18, _).$lf_option233,6835 -'$lf_option'('$location', 19, _).$lf_option234,6868 -'$lf_option'('$location', 19, _)./p,predicate,predicate definition234,6868 -'$lf_option'('$location', 19, _).$lf_option234,6868 -'$lf_option'(dialect, 20, yap).$lf_option235,6902 -'$lf_option'(dialect, 20, yap)./p,predicate,predicate definition235,6902 -'$lf_option'(dialect, 20, yap).$lf_option235,6902 -'$lf_option'(format, 21, source).$lf_option236,6934 -'$lf_option'(format, 21, source)./p,predicate,predicate definition236,6934 -'$lf_option'(format, 21, source).$lf_option236,6934 -'$lf_option'(redefine_module, 22, Warn) :-$lf_option237,6968 -'$lf_option'(redefine_module, 22, Warn) :-$lf_option237,6968 -'$lf_option'(redefine_module, 22, Warn) :-$lf_option237,6968 -'$lf_option'(reexport, 23, false).$lf_option239,7105 -'$lf_option'(reexport, 23, false)./p,predicate,predicate definition239,7105 -'$lf_option'(reexport, 23, false).$lf_option239,7105 -'$lf_option'(sandboxed, 24, false).$lf_option240,7140 -'$lf_option'(sandboxed, 24, false)./p,predicate,predicate definition240,7140 -'$lf_option'(sandboxed, 24, false).$lf_option240,7140 -'$lf_option'(scope_settings, 25, false).$lf_option241,7176 -'$lf_option'(scope_settings, 25, false)./p,predicate,predicate definition241,7176 -'$lf_option'(scope_settings, 25, false).$lf_option241,7176 -'$lf_option'(modified, 26, _).$lf_option242,7217 -'$lf_option'(modified, 26, _)./p,predicate,predicate definition242,7217 -'$lf_option'(modified, 26, _).$lf_option242,7217 -'$lf_option'('$context_module', 27, _).$lf_option243,7248 -'$lf_option'('$context_module', 27, _)./p,predicate,predicate definition243,7248 -'$lf_option'('$context_module', 27, _).$lf_option243,7248 -'$lf_option'('$parent_topts', 28, _).$lf_option244,7288 -'$lf_option'('$parent_topts', 28, _)./p,predicate,predicate definition244,7288 -'$lf_option'('$parent_topts', 28, _).$lf_option244,7288 -'$lf_option'(must_be_module, 29, false).$lf_option245,7326 -'$lf_option'(must_be_module, 29, false)./p,predicate,predicate definition245,7326 -'$lf_option'(must_be_module, 29, false).$lf_option245,7326 -'$lf_option'('$source_pos', 30, _).$lf_option246,7367 -'$lf_option'('$source_pos', 30, _)./p,predicate,predicate definition246,7367 -'$lf_option'('$source_pos', 30, _).$lf_option246,7367 -'$lf_option'(initialization, 31, Ref) :-$lf_option247,7403 -'$lf_option'(initialization, 31, Ref) :-$lf_option247,7403 -'$lf_option'(initialization, 31, Ref) :-$lf_option247,7403 -'$lf_option'(last_opt, 31).$lf_option250,7469 -'$lf_option'(last_opt, 31)./p,predicate,predicate definition250,7469 -'$lf_option'(last_opt, 31).$lf_option250,7469 -'$lf_opt'( Op, TOpts, Val) :-$lf_opt252,7498 -'$lf_opt'( Op, TOpts, Val) :-$lf_opt252,7498 -'$lf_opt'( Op, TOpts, Val) :-$lf_opt252,7498 -'$set_lf_opt'( Op, TOpts, Val) :-$set_lf_opt256,7579 -'$set_lf_opt'( Op, TOpts, Val) :-$set_lf_opt256,7579 -'$set_lf_opt'( Op, TOpts, Val) :-$set_lf_opt256,7579 -'$load_files'(Files, Opts, Call) :-$load_files260,7667 -'$load_files'(Files, Opts, Call) :-$load_files260,7667 -'$load_files'(Files, Opts, Call) :-$load_files260,7667 -'$check_files'(Files, Call) :-$check_files292,8731 -'$check_files'(Files, Call) :-$check_files292,8731 -'$check_files'(Files, Call) :-$check_files292,8731 -'$check_files'(M:Files, Call) :- !,$check_files295,8819 -'$check_files'(M:Files, Call) :- !,$check_files295,8819 -'$check_files'(M:Files, Call) :- !,$check_files295,8819 -'$check_files'(Files, Call) :-$check_files306,9001 -'$check_files'(Files, Call) :-$check_files306,9001 -'$check_files'(Files, Call) :-$check_files306,9001 -'$process_lf_opts'(V, _, _, Call) :-$process_lf_opts314,9108 -'$process_lf_opts'(V, _, _, Call) :-$process_lf_opts314,9108 -'$process_lf_opts'(V, _, _, Call) :-$process_lf_opts314,9108 -'$process_lf_opts'([], _, _, _).$process_lf_opts317,9197 -'$process_lf_opts'([], _, _, _)./p,predicate,predicate definition317,9197 -'$process_lf_opts'([], _, _, _).$process_lf_opts317,9197 -'$process_lf_opts'([Opt|Opts],TOpt,Files,Call) :-$process_lf_opts318,9230 -'$process_lf_opts'([Opt|Opts],TOpt,Files,Call) :-$process_lf_opts318,9230 -'$process_lf_opts'([Opt|Opts],TOpt,Files,Call) :-$process_lf_opts318,9230 -'$process_lf_opts'([Opt|_],_,_,Call) :-$process_lf_opts324,9424 -'$process_lf_opts'([Opt|_],_,_,Call) :-$process_lf_opts324,9424 -'$process_lf_opts'([Opt|_],_,_,Call) :-$process_lf_opts324,9424 -'$process_lf_opt'(autoload, Val, Call) :-$process_lf_opt327,9524 -'$process_lf_opt'(autoload, Val, Call) :-$process_lf_opt327,9524 -'$process_lf_opt'(autoload, Val, Call) :-$process_lf_opt327,9524 -'$process_lf_opt'(derived_from, File, Call) :-$process_lf_opt331,9694 -'$process_lf_opt'(derived_from, File, Call) :-$process_lf_opt331,9694 -'$process_lf_opt'(derived_from, File, Call) :-$process_lf_opt331,9694 -'$process_lf_opt'(encoding, Encoding, _Call) :-$process_lf_opt333,9809 -'$process_lf_opt'(encoding, Encoding, _Call) :-$process_lf_opt333,9809 -'$process_lf_opt'(encoding, Encoding, _Call) :-$process_lf_opt333,9809 -'$process_lf_opt'(expand, Val, Call) :-$process_lf_opt335,9874 -'$process_lf_opt'(expand, Val, Call) :-$process_lf_opt335,9874 -'$process_lf_opt'(expand, Val, Call) :-$process_lf_opt335,9874 -'$process_lf_opt'(if, If, Call) :-$process_lf_opt339,10095 -'$process_lf_opt'(if, If, Call) :-$process_lf_opt339,10095 -'$process_lf_opt'(if, If, Call) :-$process_lf_opt339,10095 -'$process_lf_opt'(imports, Val, Call) :-$process_lf_opt344,10279 -'$process_lf_opt'(imports, Val, Call) :-$process_lf_opt344,10279 -'$process_lf_opt'(imports, Val, Call) :-$process_lf_opt344,10279 -'$process_lf_opt'(qcompile, Val,Call) :-$process_lf_opt349,10534 -'$process_lf_opt'(qcompile, Val,Call) :-$process_lf_opt349,10534 -'$process_lf_opt'(qcompile, Val,Call) :-$process_lf_opt349,10534 -'$process_lf_opt'(silent, Val, Call) :-$process_lf_opt355,10807 -'$process_lf_opt'(silent, Val, Call) :-$process_lf_opt355,10807 -'$process_lf_opt'(silent, Val, Call) :-$process_lf_opt355,10807 -'$process_lf_opt'(skip_unix_header, Val, Call) :-$process_lf_opt359,11023 -'$process_lf_opt'(skip_unix_header, Val, Call) :-$process_lf_opt359,11023 -'$process_lf_opt'(skip_unix_header, Val, Call) :-$process_lf_opt359,11023 -'$process_lf_opt'(compilation_mode, Val, Call) :-$process_lf_opt363,11209 -'$process_lf_opt'(compilation_mode, Val, Call) :-$process_lf_opt363,11209 -'$process_lf_opt'(compilation_mode, Val, Call) :-$process_lf_opt363,11209 -'$process_lf_opt'(consult, Val , Call) :-$process_lf_opt368,11438 -'$process_lf_opt'(consult, Val , Call) :-$process_lf_opt368,11438 -'$process_lf_opt'(consult, Val , Call) :-$process_lf_opt368,11438 -'$process_lf_opt'(reexport, Val , Call) :-$process_lf_opt374,11672 -'$process_lf_opt'(reexport, Val , Call) :-$process_lf_opt374,11672 -'$process_lf_opt'(reexport, Val , Call) :-$process_lf_opt374,11672 -'$process_lf_opt'(must_be_module, Val , Call) :-$process_lf_opt378,11841 -'$process_lf_opt'(must_be_module, Val , Call) :-$process_lf_opt378,11841 -'$process_lf_opt'(must_be_module, Val , Call) :-$process_lf_opt378,11841 -'$process_lf_opt'(stream, Val, Call) :-$process_lf_opt382,12024 -'$process_lf_opt'(stream, Val, Call) :-$process_lf_opt382,12024 -'$process_lf_opt'(stream, Val, Call) :-$process_lf_opt382,12024 -'$process_lf_opt'(register, Val, Call) :-$process_lf_opt385,12150 -'$process_lf_opt'(register, Val, Call) :-$process_lf_opt385,12150 -'$process_lf_opt'(register, Val, Call) :-$process_lf_opt385,12150 -'$process_lf_opt'('$context_module', Mod, Call) :-$process_lf_opt389,12320 -'$process_lf_opt'('$context_module', Mod, Call) :-$process_lf_opt389,12320 -'$process_lf_opt'('$context_module', Mod, Call) :-$process_lf_opt389,12320 -'$lf_default_opts'(I, LastOpt, _TOpts) :- I > LastOpt, !.$lf_default_opts393,12439 -'$lf_default_opts'(I, LastOpt, _TOpts) :- I > LastOpt, !.$lf_default_opts393,12439 -'$lf_default_opts'(I, LastOpt, _TOpts) :- I > LastOpt, !.$lf_default_opts393,12439 -'$lf_default_opts'(I, LastOpt, TOpts) :-$lf_default_opts394,12497 -'$lf_default_opts'(I, LastOpt, TOpts) :-$lf_default_opts394,12497 -'$lf_default_opts'(I, LastOpt, TOpts) :-$lf_default_opts394,12497 -'$check_use_module'(use_module(_), use_module(_)) :- !.$check_use_module404,12669 -'$check_use_module'(use_module(_), use_module(_)) :- !.$check_use_module404,12669 -'$check_use_module'(use_module(_), use_module(_)) :- !.$check_use_module404,12669 -'$check_use_module'(use_module(_,_), use_module(_)) :- !.$check_use_module405,12725 -'$check_use_module'(use_module(_,_), use_module(_)) :- !.$check_use_module405,12725 -'$check_use_module'(use_module(_,_), use_module(_)) :- !.$check_use_module405,12725 -'$check_use_module'(use_module(M,_,_), use_module(M)) :- !.$check_use_module406,12783 -'$check_use_module'(use_module(M,_,_), use_module(M)) :- !.$check_use_module406,12783 -'$check_use_module'(use_module(M,_,_), use_module(M)) :- !.$check_use_module406,12783 -'$check_use_module'(_, load_files) :- !.$check_use_module407,12843 -'$check_use_module'(_, load_files) :- !.$check_use_module407,12843 -'$check_use_module'(_, load_files) :- !.$check_use_module407,12843 -'$lf'(V,_,Call, _ ) :- var(V), !,$lf409,12885 -'$lf'(V,_,Call, _ ) :- var(V), !,$lf409,12885 -'$lf'(V,_,Call, _ ) :- var(V), !,$lf409,12885 -'$lf'([], _, _, _) :- !.$lf411,12959 -'$lf'([], _, _, _) :- !.$lf411,12959 -'$lf'([], _, _, _) :- !.$lf411,12959 -'$lf'(M:X, _, Call, TOpts) :- !,$lf412,12984 -'$lf'(M:X, _, Call, TOpts) :- !,$lf412,12984 -'$lf'(M:X, _, Call, TOpts) :- !,$lf412,12984 -'$lf'([F|Fs], Mod, Call, TOpts) :- !,$lf420,13111 -'$lf'([F|Fs], Mod, Call, TOpts) :- !,$lf420,13111 -'$lf'([F|Fs], Mod, Call, TOpts) :- !,$lf420,13111 -'$lf'(user, Mod, _, TOpts) :- !,$lf426,13266 -'$lf'(user, Mod, _, TOpts) :- !,$lf426,13266 -'$lf'(user, Mod, _, TOpts) :- !,$lf426,13266 -'$lf'(user_input, Mod, _, TOpts) :- !,$lf429,13396 -'$lf'(user_input, Mod, _, TOpts) :- !,$lf429,13396 -'$lf'(user_input, Mod, _, TOpts) :- !,$lf429,13396 -'$lf'(File, Mod, Call, TOpts) :-$lf432,13538 -'$lf'(File, Mod, Call, TOpts) :-$lf432,13538 -'$lf'(File, Mod, Call, TOpts) :-$lf432,13538 -'$start_lf'(not_loaded, Mod, _Stream, TOpts, UserFile, File, Reexport,Imports) :-$start_lf452,14249 -'$start_lf'(not_loaded, Mod, _Stream, TOpts, UserFile, File, Reexport,Imports) :-$start_lf452,14249 -'$start_lf'(not_loaded, Mod, _Stream, TOpts, UserFile, File, Reexport,Imports) :-$start_lf452,14249 -'$start_lf'(changed, Mod, _Stream, TOpts, UserFile, File, Reexport, Imports) :-$start_lf458,14600 -'$start_lf'(changed, Mod, _Stream, TOpts, UserFile, File, Reexport, Imports) :-$start_lf458,14600 -'$start_lf'(changed, Mod, _Stream, TOpts, UserFile, File, Reexport, Imports) :-$start_lf458,14600 -'$start_lf'(_, Mod, PlStream, TOpts, _UserFile, File, Reexport, ImportList) :-$start_lf464,14942 -'$start_lf'(_, Mod, PlStream, TOpts, _UserFile, File, Reexport, ImportList) :-$start_lf464,14942 -'$start_lf'(_, Mod, PlStream, TOpts, _UserFile, File, Reexport, ImportList) :-$start_lf464,14942 -'$start_lf'(_, Mod, Stream, TOpts, UserFile, File, _Reexport, _Imports) :-$start_lf497,16108 -'$start_lf'(_, Mod, Stream, TOpts, UserFile, File, _Reexport, _Imports) :-$start_lf497,16108 -'$start_lf'(_, Mod, Stream, TOpts, UserFile, File, _Reexport, _Imports) :-$start_lf497,16108 -ensure_loaded(Fs) :-ensure_loaded516,16760 -ensure_loaded(Fs) :-ensure_loaded516,16760 -ensure_loaded(Fs) :-ensure_loaded516,16760 -compile(Fs) :-compile519,16838 -compile(Fs) :-compile519,16838 -compile(Fs) :-compile519,16838 -consult(V) :-consult542,17536 -consult(V) :-consult542,17536 -consult(V) :-consult542,17536 -consult(M0:Fs) :- !,consult545,17608 -consult(M0:Fs) :- !,consult545,17608 -consult(M0:Fs) :- !,consult545,17608 -consult(Fs) :-consult547,17650 -consult(Fs) :-consult547,17650 -consult(Fs) :-consult547,17650 -'$consult'(Fs,Module) :-$consult551,17711 -'$consult'(Fs,Module) :-$consult551,17711 -'$consult'(Fs,Module) :-$consult551,17711 -'$consult'(Fs, Module) :-$consult555,17855 -'$consult'(Fs, Module) :-$consult555,17855 -'$consult'(Fs, Module) :-$consult555,17855 -reconsult(Fs) :-reconsult588,18712 -reconsult(Fs) :-reconsult588,18712 -reconsult(Fs) :-reconsult588,18712 -exo_files(Fs) :-exo_files608,19403 -exo_files(Fs) :-exo_files608,19403 -exo_files(Fs) :-exo_files608,19403 -db_files(Fs) :-db_files639,20727 -db_files(Fs) :-db_files639,20727 -db_files(Fs) :-db_files639,20727 -'$csult'(Fs, M) :-$csult643,20811 -'$csult'(Fs, M) :-$csult643,20811 -'$csult'(Fs, M) :-$csult643,20811 -'$csult'(Fs, M) :-$csult646,20894 -'$csult'(Fs, M) :-$csult646,20894 -'$csult'(Fs, M) :-$csult646,20894 -'$extract_minus'([], []).$extract_minus649,20962 -'$extract_minus'([], [])./p,predicate,predicate definition649,20962 -'$extract_minus'([], []).$extract_minus649,20962 -'$extract_minus'([-F|Fs], [F|MFs]) :-$extract_minus650,20988 -'$extract_minus'([-F|Fs], [F|MFs]) :-$extract_minus650,20988 -'$extract_minus'([-F|Fs], [F|MFs]) :-$extract_minus650,20988 -'$do_lf'(_ContextModule, Stream, _UserFile, _File, _TOpts) :-$do_lf653,21055 -'$do_lf'(_ContextModule, Stream, _UserFile, _File, _TOpts) :-$do_lf653,21055 -'$do_lf'(_ContextModule, Stream, _UserFile, _File, _TOpts) :-$do_lf653,21055 -'$do_lf'(ContextModule, Stream, UserFile, File, TOpts) :-$do_lf659,21280 -'$do_lf'(ContextModule, Stream, UserFile, File, TOpts) :-$do_lf659,21280 -'$do_lf'(ContextModule, Stream, UserFile, File, TOpts) :-$do_lf659,21280 -'$q_do_save_file'(File, UserF, TOpts ) :-$q_do_save_file740,24247 -'$q_do_save_file'(File, UserF, TOpts ) :-$q_do_save_file740,24247 -'$q_do_save_file'(File, UserF, TOpts ) :-$q_do_save_file740,24247 -'$q_do_save_file'(_File, _, _TOpts ).$q_do_save_file747,24571 -'$q_do_save_file'(_File, _, _TOpts )./p,predicate,predicate definition747,24571 -'$q_do_save_file'(_File, _, _TOpts ).$q_do_save_file747,24571 -'$reset_if'(OldIfLevel) :-$reset_if749,24610 -'$reset_if'(OldIfLevel) :-$reset_if749,24610 -'$reset_if'(OldIfLevel) :-$reset_if749,24610 -'$reset_if'(0) :-$reset_if752,24713 -'$reset_if'(0) :-$reset_if752,24713 -'$reset_if'(0) :-$reset_if752,24713 -nb_setval('$if_le1vel',0).nb_setval753,24731 -nb_setval('$if_le1vel',0).nb_setval753,24731 -'$get_if'(Level0) :-$get_if755,24759 -'$get_if'(Level0) :-$get_if755,24759 -'$get_if'(Level0) :-$get_if755,24759 -'$get_if'(0).$get_if758,24841 -'$get_if'(0)./p,predicate,predicate definition758,24841 -'$get_if'(0).$get_if758,24841 -'$bind_module'(_, load_files).$bind_module760,24856 -'$bind_module'(_, load_files)./p,predicate,predicate definition760,24856 -'$bind_module'(_, load_files).$bind_module760,24856 -'$bind_module'(Mod, use_module(Mod)).$bind_module761,24887 -'$bind_module'(Mod, use_module(Mod))./p,predicate,predicate definition761,24887 -'$bind_module'(Mod, use_module(Mod)).$bind_module761,24887 -'$import_to_current_module'(File, ContextModule, _Imports, _RemainingImports, _TOpts) :-$import_to_current_module763,24926 -'$import_to_current_module'(File, ContextModule, _Imports, _RemainingImports, _TOpts) :-$import_to_current_module763,24926 -'$import_to_current_module'(File, ContextModule, _Imports, _RemainingImports, _TOpts) :-$import_to_current_module763,24926 -'$import_to_current_module'(File, ContextModule, Imports, RemainingImports, TOpts) :-$import_to_current_module769,25241 -'$import_to_current_module'(File, ContextModule, Imports, RemainingImports, TOpts) :-$import_to_current_module769,25241 -'$import_to_current_module'(File, ContextModule, Imports, RemainingImports, TOpts) :-$import_to_current_module769,25241 -'$import_to_current_module'(_, _, _, _, _).$import_to_current_module775,25629 -'$import_to_current_module'(_, _, _, _, _)./p,predicate,predicate definition775,25629 -'$import_to_current_module'(_, _, _, _, _).$import_to_current_module775,25629 -'$start_reconsulting'(F) :-$start_reconsulting777,25674 -'$start_reconsulting'(F) :-$start_reconsulting777,25674 -'$start_reconsulting'(F) :-$start_reconsulting777,25674 -'$include'(V, _) :- var(V), !,$include826,26849 -'$include'(V, _) :- var(V), !,$include826,26849 -'$include'(V, _) :- var(V), !,$include826,26849 -'$include'([], _) :- !.$include828,26926 -'$include'([], _) :- !.$include828,26926 -'$include'([], _) :- !.$include828,26926 -'$include'([F|Fs], Status) :- !,$include829,26950 -'$include'([F|Fs], Status) :- !,$include829,26950 -'$include'([F|Fs], Status) :- !,$include829,26950 -'$include'(X, Status) :-$include832,27032 -'$include'(X, Status) :-$include832,27032 -'$include'(X, Status) :-$include832,27032 -'$do_startup_reconsult'(_X) :-$do_startup_reconsult865,28072 -'$do_startup_reconsult'(_X) :-$do_startup_reconsult865,28072 -'$do_startup_reconsult'(_X) :-$do_startup_reconsult865,28072 -'$do_startup_reconsult'(X) :-$do_startup_reconsult868,28133 -'$do_startup_reconsult'(X) :-$do_startup_reconsult868,28133 -'$do_startup_reconsult'(X) :-$do_startup_reconsult868,28133 -'$do_startup_reconsult'(_).$do_startup_reconsult872,28315 -'$do_startup_reconsult'(_)./p,predicate,predicate definition872,28315 -'$do_startup_reconsult'(_).$do_startup_reconsult872,28315 -'$skip_unix_header'(Stream) :-$skip_unix_header874,28344 -'$skip_unix_header'(Stream) :-$skip_unix_header874,28344 -'$skip_unix_header'(Stream) :-$skip_unix_header874,28344 -'$skip_unix_header'(_).$skip_unix_header878,28473 -'$skip_unix_header'(_)./p,predicate,predicate definition878,28473 -'$skip_unix_header'(_).$skip_unix_header878,28473 -source_file(FileName) :-source_file881,28499 -source_file(FileName) :-source_file881,28499 -source_file(FileName) :-source_file881,28499 -source_file(Mod:Pred, FileName) :-source_file884,28585 -source_file(Mod:Pred, FileName) :-source_file884,28585 -source_file(Mod:Pred, FileName) :-source_file884,28585 -'$owned_by'(T, Mod, FileName) :-$owned_by890,28733 -'$owned_by'(T, Mod, FileName) :-$owned_by890,28733 -'$owned_by'(T, Mod, FileName) :-$owned_by890,28733 -'$owned_by'(T, Mod, FileName) :-$owned_by895,28941 -'$owned_by'(T, Mod, FileName) :-$owned_by895,28941 -'$owned_by'(T, Mod, FileName) :-$owned_by895,28941 -prolog_load_context(directory, DirName) :-prolog_load_context945,30650 -prolog_load_context(directory, DirName) :-prolog_load_context945,30650 -prolog_load_context(directory, DirName) :-prolog_load_context945,30650 -prolog_load_context(file, FileName) :-prolog_load_context950,30829 -prolog_load_context(file, FileName) :-prolog_load_context950,30829 -prolog_load_context(file, FileName) :-prolog_load_context950,30829 -prolog_load_context(module, X) :-prolog_load_context957,30986 -prolog_load_context(module, X) :-prolog_load_context957,30986 -prolog_load_context(module, X) :-prolog_load_context957,30986 -prolog_load_context(source, F0) :-prolog_load_context960,31101 -prolog_load_context(source, F0) :-prolog_load_context960,31101 -prolog_load_context(source, F0) :-prolog_load_context960,31101 -prolog_load_context(stream, Stream) :-prolog_load_context969,31376 -prolog_load_context(stream, Stream) :-prolog_load_context969,31376 -prolog_load_context(stream, Stream) :-prolog_load_context969,31376 -'$file_loaded'(F0, M, Imports, TOpts) :-$file_loaded975,31539 -'$file_loaded'(F0, M, Imports, TOpts) :-$file_loaded975,31539 -'$file_loaded'(F0, M, Imports, TOpts) :-$file_loaded975,31539 -'$ensure_file_loaded'(F, M) :-$ensure_file_loaded987,31917 -'$ensure_file_loaded'(F, M) :-$ensure_file_loaded987,31917 -'$ensure_file_loaded'(F, M) :-$ensure_file_loaded987,31917 -'$file_unchanged'(F, M, Imports, TOpts) :-$file_unchanged995,32316 -'$file_unchanged'(F, M, Imports, TOpts) :-$file_unchanged995,32316 -'$file_unchanged'(F, M, Imports, TOpts) :-$file_unchanged995,32316 -'$ensure_file_unchanged'(F, M) :-$ensure_file_unchanged1001,32518 -'$ensure_file_unchanged'(F, M) :-$ensure_file_unchanged1001,32518 -'$ensure_file_unchanged'(F, M) :-$ensure_file_unchanged1001,32518 -'$file_is_unchanged'(F, R, Age) :-$file_is_unchanged1011,33014 -'$file_is_unchanged'(F, R, Age) :-$file_is_unchanged1011,33014 -'$file_is_unchanged'(F, R, Age) :-$file_is_unchanged1011,33014 -'$loaded'(F, UserFile, M, OldF, Line, Reconsult0, Reconsult, Dir, Opts) :-$loaded1017,33214 -'$loaded'(F, UserFile, M, OldF, Line, Reconsult0, Reconsult, Dir, Opts) :-$loaded1017,33214 -'$loaded'(F, UserFile, M, OldF, Line, Reconsult0, Reconsult, Dir, Opts) :-$loaded1017,33214 -make :-make1064,34654 -make_library_index(_Directory).make_library_index1070,34781 -make_library_index(_Directory).make_library_index1070,34781 -'$fetch_stream_alias'(OldStream,Alias) :-$fetch_stream_alias1072,34814 -'$fetch_stream_alias'(OldStream,Alias) :-$fetch_stream_alias1072,34814 -'$fetch_stream_alias'(OldStream,Alias) :-$fetch_stream_alias1072,34814 -'$require'(_Ps, _M).$require1075,34903 -'$require'(_Ps, _M)./p,predicate,predicate definition1075,34903 -'$require'(_Ps, _M).$require1075,34903 -'$store_clause'('$source_location'(File, _Line):Clause, File) :-$store_clause1077,34925 -'$store_clause'('$source_location'(File, _Line):Clause, File) :-$store_clause1077,34925 -'$store_clause'('$source_location'(File, _Line):Clause, File) :-$store_clause'('$source_location1077,34925 -exists_source(File) :-exists_source1081,35016 -exists_source(File) :-exists_source1081,35016 -exists_source(File) :-exists_source1081,35016 -source_file_property( File0, Prop) :-source_file_property1110,36199 -source_file_property( File0, Prop) :-source_file_property1110,36199 -source_file_property( File0, Prop) :-source_file_property1110,36199 -'$source_file_property'( OldF, includes(F, Age)) :-$source_file_property1114,36346 -'$source_file_property'( OldF, includes(F, Age)) :-$source_file_property1114,36346 -'$source_file_property'( OldF, includes(F, Age)) :-$source_file_property1114,36346 -'$source_file_property'( F, included_in(OldF, Line)) :-$source_file_property1117,36536 -'$source_file_property'( F, included_in(OldF, Line)) :-$source_file_property1117,36536 -'$source_file_property'( F, included_in(OldF, Line)) :-$source_file_property1117,36536 -'$source_file_property'( F, load_context(OldF, Line, Options)) :-$source_file_property1119,36672 -'$source_file_property'( F, load_context(OldF, Line, Options)) :-$source_file_property1119,36672 -'$source_file_property'( F, load_context(OldF, Line, Options)) :-$source_file_property1119,36672 -'$source_file_property'( F, modified(Age)) :-$source_file_property1121,36833 -'$source_file_property'( F, modified(Age)) :-$source_file_property1121,36833 -'$source_file_property'( F, modified(Age)) :-$source_file_property1121,36833 -'$source_file_property'( F, module(M)) :-$source_file_property1123,36936 -'$source_file_property'( F, module(M)) :-$source_file_property1123,36936 -'$source_file_property'( F, module(M)) :-$source_file_property1123,36936 -unload_file( F0 ) :-unload_file1126,37024 -unload_file( F0 ) :-unload_file1126,37024 -unload_file( F0 ) :-unload_file1126,37024 -'$unload_file'( FileName, _F0 ) :-$unload_file1132,37205 -'$unload_file'( FileName, _F0 ) :-$unload_file1132,37205 -'$unload_file'( FileName, _F0 ) :-$unload_file1132,37205 -'$unload_file'( FileName, _F0 ) :-$unload_file1141,37427 -'$unload_file'( FileName, _F0 ) :-$unload_file1141,37427 -'$unload_file'( FileName, _F0 ) :-$unload_file1141,37427 -'$unload_file'( FileName, _F0 ) :-$unload_file1145,37554 -'$unload_file'( FileName, _F0 ) :-$unload_file1145,37554 -'$unload_file'( FileName, _F0 ) :-$unload_file1145,37554 -'$unload_file'( FileName, _F0 ) :-$unload_file1150,37731 -'$unload_file'( FileName, _F0 ) :-$unload_file1150,37731 -'$unload_file'( FileName, _F0 ) :-$unload_file1150,37731 -'$unload_file'( FileName, _F0 ) :-$unload_file1155,37881 -'$unload_file'( FileName, _F0 ) :-$unload_file1155,37881 -'$unload_file'( FileName, _F0 ) :-$unload_file1155,37881 -'$unload_file'( FileName, _F0 ) :-$unload_file1159,38015 -'$unload_file'( FileName, _F0 ) :-$unload_file1159,38015 -'$unload_file'( FileName, _F0 ) :-$unload_file1159,38015 -'$unload_file'( FileName, _F0 ) :-$unload_file1164,38170 -'$unload_file'( FileName, _F0 ) :-$unload_file1164,38170 -'$unload_file'( FileName, _F0 ) :-$unload_file1164,38170 -module(Mod, Decls) :-module1185,38461 -module(Mod, Decls) :-module1185,38461 -module(Mod, Decls) :-module1185,38461 -'$export_preds'([]).$export_preds1189,38545 -'$export_preds'([])./p,predicate,predicate definition1189,38545 -'$export_preds'([]).$export_preds1189,38545 -'$export_preds'([N/A|Decls]) :-$export_preds1190,38566 -'$export_preds'([N/A|Decls]) :-$export_preds1190,38566 -'$export_preds'([N/A|Decls]) :-$export_preds1190,38566 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -use_module(M,F,Is) :- '$use_module'(M,F,Is).use_module1205,39037 -'$use_module'(M,F,Is) :-$use_module1207,39083 -'$use_module'(M,F,Is) :-$use_module1207,39083 -'$use_module'(M,F,Is) :-$use_module1207,39083 -'$use_module'(M,F,Is) :-$use_module1210,39146 -'$use_module'(M,F,Is) :-$use_module1210,39146 -'$use_module'(M,F,Is) :-$use_module1210,39146 -'$use_module'(M,F,Is) :-$use_module1219,39453 -'$use_module'(M,F,Is) :-$use_module1219,39453 -'$use_module'(M,F,Is) :-$use_module1219,39453 -'$use_module'(M,F,Is) :-$use_module1228,39783 -'$use_module'(M,F,Is) :-$use_module1228,39783 -'$use_module'(M,F,Is) :-$use_module1228,39783 -'$reexport'( TOpts, File, Reexport, Imports, OldF ) :-$reexport1275,41310 -'$reexport'( TOpts, File, Reexport, Imports, OldF ) :-$reexport1275,41310 -'$reexport'( TOpts, File, Reexport, Imports, OldF ) :-$reexport1275,41310 -'$add_multifile'(Name,Arity,Module) :-$add_multifile1318,42713 -'$add_multifile'(Name,Arity,Module) :-$add_multifile1318,42713 -'$add_multifile'(Name,Arity,Module) :-$add_multifile1318,42713 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1322,42822 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1322,42822 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1322,42822 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1325,43014 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1325,43014 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1325,43014 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1328,43134 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1328,43134 -'$add_multifile'(File,Name,Arity,Module) :-$add_multifile1328,43134 -'$add_multifile'(_,_,_,_).$add_multifile1333,43287 -'$add_multifile'(_,_,_,_)./p,predicate,predicate definition1333,43287 -'$add_multifile'(_,_,_,_).$add_multifile1333,43287 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1336,43365 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1336,43365 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1336,43365 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1340,43485 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1340,43485 -'$remove_multifile_clauses'(FileName) :-$remove_multifile_clauses1340,43485 -'$remove_multifile_clauses'(_).$remove_multifile_clauses1345,43633 -'$remove_multifile_clauses'(_)./p,predicate,predicate definition1345,43633 -'$remove_multifile_clauses'(_).$remove_multifile_clauses1345,43633 -'$initialization'(G) :-$initialization1357,44021 -'$initialization'(G) :-$initialization1357,44021 -'$initialization'(G) :-$initialization1357,44021 -'$initialization_queue'(G) :-$initialization_queue1360,44086 -'$initialization_queue'(G) :-$initialization_queue1360,44086 -'$initialization_queue'(G) :-$initialization_queue1360,44086 -'$initialization_queue'(_).$initialization_queue1365,44226 -'$initialization_queue'(_)./p,predicate,predicate definition1365,44226 -'$initialization_queue'(_).$initialization_queue1365,44226 -initialization(G0,OPT) :-initialization1385,44697 -initialization(G0,OPT) :-initialization1385,44697 -initialization(G0,OPT) :-initialization1385,44697 -initialization(_G,_OPT).initialization1389,44834 -initialization(_G,_OPT).initialization1389,44834 -'$initialization'(G,OPT) :-$initialization1391,44860 -'$initialization'(G,OPT) :-$initialization1391,44860 -'$initialization'(G,OPT) :-$initialization1391,44860 -'$if'(_,top) :- !, fail.$if1469,46563 -'$if'(_,top) :- !, fail.$if1469,46563 -'$if'(_,top) :- !, fail.$if1469,46563 -'$if'(_Goal,_) :-$if1470,46588 -'$if'(_Goal,_) :-$if1470,46588 -'$if'(_Goal,_) :-$if1470,46588 -'$if'(_Goal,_) :-$if1479,46904 -'$if'(_Goal,_) :-$if1479,46904 -'$if'(_Goal,_) :-$if1479,46904 -'$if'(Goal,_) :-$if1483,47072 -'$if'(Goal,_) :-$if1483,47072 -'$if'(Goal,_) :-$if1483,47072 -'$else'(top) :- !, fail.$else1500,47411 -'$else'(top) :- !, fail.$else1500,47411 -'$else'(top) :- !, fail.$else1500,47411 -'$else'(_) :-$else1501,47436 -'$else'(_) :-$else1501,47436 -'$else'(_) :-$else1501,47436 -'$else'(_) :-$else1505,47549 -'$else'(_) :-$else1505,47549 -'$else'(_) :-$else1505,47549 -'$else'(_) :-$else1509,47662 -'$else'(_) :-$else1509,47662 -'$else'(_) :-$else1509,47662 -'$elif'(_,top) :- !, fail.$elif1522,48039 -'$elif'(_,top) :- !, fail.$elif1522,48039 -'$elif'(_,top) :- !, fail.$elif1522,48039 -'$elif'(Goal,_) :-$elif1523,48066 -'$elif'(Goal,_) :-$elif1523,48066 -'$elif'(Goal,_) :-$elif1523,48066 -'$elif'(_,_) :-$elif1527,48187 -'$elif'(_,_) :-$elif1527,48187 -'$elif'(_,_) :-$elif1527,48187 -'$elif'(Goal,_) :-$elif1531,48299 -'$elif'(Goal,_) :-$elif1531,48299 -'$elif'(Goal,_) :-$elif1531,48299 -'$elif'(_,_).$elif1543,48632 -'$elif'(_,_)./p,predicate,predicate definition1543,48632 -'$elif'(_,_).$elif1543,48632 -'$endif'(top) :- !, fail.$endif1549,48702 -'$endif'(top) :- !, fail.$endif1549,48702 -'$endif'(top) :- !, fail.$endif1549,48702 -'$endif'(_) :-$endif1550,48728 -'$endif'(_) :-$endif1550,48728 -'$endif'(_) :-$endif1550,48728 -'$endif'(_) :-$endif1554,48825 -'$endif'(_) :-$endif1554,48825 -'$endif'(_) :-$endif1554,48825 -'$if_call'(G) :-$if_call1566,49084 -'$if_call'(G) :-$if_call1566,49084 -'$if_call'(G) :-$if_call1566,49084 -'$eval_if'(Goal) :-$eval_if1569,49161 -'$eval_if'(Goal) :-$eval_if1569,49161 -'$eval_if'(Goal) :-$eval_if1569,49161 -'$if_directive'((:- if(_))).$if_directive1573,49228 -'$if_directive'((:- if(_)))./p,predicate,predicate definition1573,49228 -'$if_directive'((:- if(_))).$if_directive1573,49228 -'$if_directive'((:- else)).$if_directive1574,49257 -'$if_directive'((:- else))./p,predicate,predicate definition1574,49257 -'$if_directive'((:- else)).$if_directive1574,49257 -'$if_directive'((:- elif(_))).$if_directive1575,49285 -'$if_directive'((:- elif(_)))./p,predicate,predicate definition1575,49285 -'$if_directive'((:- elif(_))).$if_directive1575,49285 -'$if_directive'((:- endif)).$if_directive1576,49316 -'$if_directive'((:- endif))./p,predicate,predicate definition1576,49316 -'$if_directive'((:- endif)).$if_directive1576,49316 -'$comp_mode'( OldCompMode, CompMode) :-$comp_mode1579,49347 -'$comp_mode'( OldCompMode, CompMode) :-$comp_mode1579,49347 -'$comp_mode'( OldCompMode, CompMode) :-$comp_mode1579,49347 -'$comp_mode'(OldCompMode, assert_all) :-$comp_mode1582,49444 -'$comp_mode'(OldCompMode, assert_all) :-$comp_mode1582,49444 -'$comp_mode'(OldCompMode, assert_all) :-$comp_mode1582,49444 -'$comp_mode'(OldCompMode, source) :-$comp_mode1585,49551 -'$comp_mode'(OldCompMode, source) :-$comp_mode1585,49551 -'$comp_mode'(OldCompMode, source) :-$comp_mode1585,49551 -'$comp_mode'(OldCompMode, compact) :-$comp_mode1588,49656 -'$comp_mode'(OldCompMode, compact) :-$comp_mode1588,49656 -'$comp_mode'(OldCompMode, compact) :-$comp_mode1588,49656 -'$fetch_comp_status'(assert_all) :-$fetch_comp_status1592,49764 -'$fetch_comp_status'(assert_all) :-$fetch_comp_status1592,49764 -'$fetch_comp_status'(assert_all) :-$fetch_comp_status1592,49764 -'$fetch_comp_status'(source) :-$fetch_comp_status1594,49842 -'$fetch_comp_status'(source) :-$fetch_comp_status1594,49842 -'$fetch_comp_status'(source) :-$fetch_comp_status1594,49842 -'$fetch_comp_status'(compact).$fetch_comp_status1596,49914 -'$fetch_comp_status'(compact)./p,predicate,predicate definition1596,49914 -'$fetch_comp_status'(compact).$fetch_comp_status1596,49914 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 -consult_depth(LV) :- '$show_consult_level'(LV).consult_depth1598,49946 - -pl/control.yap,13107 -once(G) :-once105,2227 -once(G) :-once105,2227 -once(G) :-once105,2227 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -forall(Cond, Action) :- \+((Cond, \+(Action))).forall141,3016 -ignore(Goal) :-ignore150,3209 -ignore(Goal) :-ignore150,3209 -ignore(Goal) :-ignore150,3209 -ignore(_).ignore152,3242 -ignore(_).ignore152,3242 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -ignore(Goal) :- (Goal->true;true).ignore157,3264 -notrace(G) :-notrace159,3300 -notrace(G) :-notrace159,3300 -notrace(G) :-notrace159,3300 -a(1). b(a). c(x).a182,3905 -a(1). b(a). c(x).a182,3905 -a(2). b(b). c(y).a183,3939 -a(2). b(b). c(y).a183,3939 -if(X,Y,Z) :-if216,4479 -if(X,Y,Z) :-if216,4479 -if(X,Y,Z) :-if216,4479 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A) :- '$execute'(X,A).call227,4653 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2) :- '$execute'(X,A1,A2).call229,4684 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3) :- '$execute'(X,A1,A2,A3).call240,4945 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4) :- '$execute'(X,A1,A2,A3,A4).call242,4990 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5) :- '$execute'(X,A1,A2,A3,A4,A5).call244,5041 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6) :- '$execute'(X,A1,A2,A3,A4,A5,A6).call246,5098 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7).call248,5161 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8).call250,5230 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9).call252,5305 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10).call254,5386 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11) :- '$execute'(X,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11).call256,5475 -call_cleanup(Goal, Cleanup) :-call_cleanup264,5744 -call_cleanup(Goal, Cleanup) :-call_cleanup264,5744 -call_cleanup(Goal, Cleanup) :-call_cleanup264,5744 -call_cleanup(Goal, Catcher, Cleanup) :-call_cleanup267,5836 -call_cleanup(Goal, Catcher, Cleanup) :-call_cleanup267,5836 -call_cleanup(Goal, Catcher, Cleanup) :-call_cleanup267,5836 -setup_call_cleanup(Setup,Goal, Cleanup) :-setup_call_cleanup285,6552 -setup_call_cleanup(Setup,Goal, Cleanup) :-setup_call_cleanup285,6552 -setup_call_cleanup(Setup,Goal, Cleanup) :-setup_call_cleanup285,6552 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -call(p(X1,...,Xm), Y1,...,Yn) :- p(X1,...,Xm,Y1,...,Yn).call299,6999 -'$show_code' :- '$debug'(0'f). %' just make emacs happy$show_code' :- '$debug309,7199 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_heap(X) :- '$grow_heap'(X).grow_heap316,7330 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -grow_stack(X) :- '$grow_stack'(X).grow_stack324,7441 -garbage_collect :-garbage_collect338,7713 -gc :-gc351,7837 -nogc :-nogc361,7961 -garbage_collect_atoms :-garbage_collect_atoms373,8153 -'$good_list_of_character_codes'(V) :- var(V), !.$good_list_of_character_codes378,8222 -'$good_list_of_character_codes'(V) :- var(V), !.$good_list_of_character_codes378,8222 -'$good_list_of_character_codes'(V) :- var(V), !.$good_list_of_character_codes378,8222 -'$good_list_of_character_codes'([]).$good_list_of_character_codes379,8271 -'$good_list_of_character_codes'([])./p,predicate,predicate definition379,8271 -'$good_list_of_character_codes'([]).$good_list_of_character_codes379,8271 -'$good_list_of_character_codes'([X|L]) :-$good_list_of_character_codes380,8308 -'$good_list_of_character_codes'([X|L]) :-$good_list_of_character_codes380,8308 -'$good_list_of_character_codes'([X|L]) :-$good_list_of_character_codes380,8308 -'$good_character_code'(X) :- var(X), !.$good_character_code384,8416 -'$good_character_code'(X) :- var(X), !.$good_character_code384,8416 -'$good_character_code'(X) :- var(X), !.$good_character_code384,8416 -'$good_character_code'(X) :- integer(X), X > -2, X < 256.$good_character_code385,8456 -'$good_character_code'(X) :- integer(X), X > -2, X < 256.$good_character_code385,8456 -'$good_character_code'(X) :- integer(X), X > -2, X < 256.$good_character_code385,8456 -prolog_initialization(G) :- var(G), !,prolog_initialization395,8671 -prolog_initialization(G) :- var(G), !,prolog_initialization395,8671 -prolog_initialization(G) :- var(G), !,prolog_initialization395,8671 -prolog_initialization(T) :- callable(T), !,prolog_initialization397,8763 -prolog_initialization(T) :- callable(T), !,prolog_initialization397,8763 -prolog_initialization(T) :- callable(T), !,prolog_initialization397,8763 -prolog_initialization(T) :-prolog_initialization399,8827 -prolog_initialization(T) :-prolog_initialization399,8827 -prolog_initialization(T) :-prolog_initialization399,8827 -'$assert_init'(T) :- recordz('$startup_goal',T,_), fail.$assert_init402,8912 -'$assert_init'(T) :- recordz('$startup_goal',T,_), fail.$assert_init402,8912 -'$assert_init'(T) :- recordz('$startup_goal',T,_), fail.$assert_init402,8912 -'$assert_init'(_).$assert_init403,8969 -'$assert_init'(_)./p,predicate,predicate definition403,8969 -'$assert_init'(_).$assert_init403,8969 -version :- '$version'.version411,9039 -version(V) :- var(V), !,version420,9201 -version(V) :- var(V), !,version420,9201 -version(V) :- var(V), !,version420,9201 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :- atom(T), !, '$assert_version'(T).version422,9273 -version(T) :-version423,9321 -version(T) :-version423,9321 -version(T) :-version423,9321 -'$assert_version'(T) :- recordz('$version',T,_), fail.$assert_version426,9381 -'$assert_version'(T) :- recordz('$version',T,_), fail.$assert_version426,9381 -'$assert_version'(T) :- recordz('$version',T,_), fail.$assert_version426,9381 -'$assert_version'(_).$assert_version427,9436 -'$assert_version'(_)./p,predicate,predicate definition427,9436 -'$assert_version'(_).$assert_version427,9436 -'$set_toplevel_hook'(_) :-$set_toplevel_hook429,9459 -'$set_toplevel_hook'(_) :-$set_toplevel_hook429,9459 -'$set_toplevel_hook'(_) :-$set_toplevel_hook429,9459 -'$set_toplevel_hook'(H) :-$set_toplevel_hook433,9538 -'$set_toplevel_hook'(H) :-$set_toplevel_hook433,9538 -'$set_toplevel_hook'(H) :-$set_toplevel_hook433,9538 -'$set_toplevel_hook'(_).$set_toplevel_hook436,9605 -'$set_toplevel_hook'(_)./p,predicate,predicate definition436,9605 -'$set_toplevel_hook'(_).$set_toplevel_hook436,9605 -nb_getval(GlobalVariable, Val) :-nb_getval466,10377 -nb_getval(GlobalVariable, Val) :-nb_getval466,10377 -nb_getval(GlobalVariable, Val) :-nb_getval466,10377 -b_getval(GlobalVariable, Val) :-b_getval505,11685 -b_getval(GlobalVariable, Val) :-b_getval505,11685 -b_getval(GlobalVariable, Val) :-b_getval505,11685 -'$debug_state'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_state528,12117 -'$debug_state'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_state528,12117 -'$debug_state'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_state528,12117 -'$debug_stop'( State ) :-$debug_stop538,12390 -'$debug_stop'( State ) :-$debug_stop538,12390 -'$debug_stop'( State ) :-$debug_stop538,12390 -'$debug_restart'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_restart545,12559 -'$debug_restart'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_restart545,12559 -'$debug_restart'(state(Trace, Debug, Jump, Run, SPY_GN, GList)) :-$debug_restart545,12559 -break :-break570,13248 -at_halt(G) :-at_halt602,14102 -at_halt(G) :-at_halt602,14102 -at_halt(G) :-at_halt602,14102 -at_halt(_).at_halt605,14148 -at_halt(_).at_halt605,14148 -halt :-halt612,14282 -halt :-halt615,14334 -halt(_) :-halt624,14490 -halt(_) :-halt624,14490 -halt(_) :-halt624,14490 -halt(X) :-halt628,14580 -halt(X) :-halt628,14580 -halt(X) :-halt628,14580 -prolog_current_frame(Env) :-prolog_current_frame633,14660 -prolog_current_frame(Env) :-prolog_current_frame633,14660 -prolog_current_frame(Env) :-prolog_current_frame633,14660 -'$run_atom_goal'(GA) :-$run_atom_goal636,14706 -'$run_atom_goal'(GA) :-$run_atom_goal636,14706 -'$run_atom_goal'(GA) :-$run_atom_goal636,14706 -'$add_dot_to_atom_goal'([],[0'.]) :- !. %'$add_dot_to_atom_goal641,14836 -'$add_dot_to_atom_goal'([],[0'.]) :- !. %'$add_dot_to_atom_goal641,14836 -'$add_dot_to_atom_goal'([],[0'.]) :- !. %'$add_dot_to_atom_goal641,14836 -'$add_dot_to_atom_goal'([0'.],[0'.]) :- !.$add_dot_to_atom_goal642,14879 -'$add_dot_to_atom_goal'([0'.],[0'.]) :- !.$add_dot_to_atom_goal642,14879 -'$add_dot_to_atom_goal'([0'.],[0'.]) :- !.$add_dot_to_atom_goal642,14879 -'$add_dot_to_atom_goal'([C|Gs0],[C|Gs]) :-$add_dot_to_atom_goal643,14922 -'$add_dot_to_atom_goal'([C|Gs0],[C|Gs]) :-$add_dot_to_atom_goal643,14922 -'$add_dot_to_atom_goal'([C|Gs0],[C|Gs]) :-$add_dot_to_atom_goal643,14922 - -pl/corout.yap,16933 -attr_unify_hook(DelayList, _) :-attr_unify_hook71,1799 -attr_unify_hook(DelayList, _) :-attr_unify_hook71,1799 -attr_unify_hook(DelayList, _) :-attr_unify_hook71,1799 -wake_delays([]).wake_delays74,1858 -wake_delays([]).wake_delays74,1858 -wake_delays([Delay|List]) :-wake_delays75,1875 -wake_delays([Delay|List]) :-wake_delays75,1875 -wake_delays([Delay|List]) :-wake_delays75,1875 -wake_delay(redo_dif(Done, X, Y)) :-wake_delay82,1986 -wake_delay(redo_dif(Done, X, Y)) :-wake_delay82,1986 -wake_delay(redo_dif(Done, X, Y)) :-wake_delay82,1986 -wake_delay(redo_freeze(Done, V, Goal)) :-wake_delay84,2045 -wake_delay(redo_freeze(Done, V, Goal)) :-wake_delay84,2045 -wake_delay(redo_freeze(Done, V, Goal)) :-wake_delay84,2045 -wake_delay(redo_eq(Done, X, Y, Goal)) :-wake_delay86,2116 -wake_delay(redo_eq(Done, X, Y, Goal)) :-wake_delay86,2116 -wake_delay(redo_eq(Done, X, Y, Goal)) :-wake_delay86,2116 -wake_delay(redo_ground(Done, X, Goal)) :-wake_delay88,2189 -wake_delay(redo_ground(Done, X, Goal)) :-wake_delay88,2189 -wake_delay(redo_ground(Done, X, Goal)) :-wake_delay88,2189 -attribute_goals(Var) -->attribute_goals92,2262 -attribute_goals(Var) -->attribute_goals92,2262 -attribute_goals(Var) -->attribute_goals92,2262 -attgoal_for_delays([], _V) --> [].attgoal_for_delays96,2366 -attgoal_for_delays([], _V) --> [].attgoal_for_delays96,2366 -attgoal_for_delays([], _V) --> [].attgoal_for_delays96,2366 -attgoal_for_delays([G|AllAtts], V) -->attgoal_for_delays97,2401 -attgoal_for_delays([G|AllAtts], V) -->attgoal_for_delays97,2401 -attgoal_for_delays([G|AllAtts], V) -->attgoal_for_delays97,2401 -attgoal_for_delay(redo_dif(Done, X, Y), V) -->attgoal_for_delay101,2500 -attgoal_for_delay(redo_dif(Done, X, Y), V) -->attgoal_for_delay101,2500 -attgoal_for_delay(redo_dif(Done, X, Y), V) -->attgoal_for_delay101,2500 -attgoal_for_delay(redo_freeze(Done, V, Goal), V) -->attgoal_for_delay104,2610 -attgoal_for_delay(redo_freeze(Done, V, Goal), V) -->attgoal_for_delay104,2610 -attgoal_for_delay(redo_freeze(Done, V, Goal), V) -->attgoal_for_delay104,2610 -attgoal_for_delay(redo_eq(Done, X, Y, Goal), V) -->attgoal_for_delay108,2760 -attgoal_for_delay(redo_eq(Done, X, Y, Goal), V) -->attgoal_for_delay108,2760 -attgoal_for_delay(redo_eq(Done, X, Y, Goal), V) -->attgoal_for_delay108,2760 -attgoal_for_delay(redo_ground(Done, X, Goal), _V) -->attgoal_for_delay111,2879 -attgoal_for_delay(redo_ground(Done, X, Goal), _V) -->attgoal_for_delay111,2879 -attgoal_for_delay(redo_ground(Done, X, Goal), _V) -->attgoal_for_delay111,2879 -attgoal_for_delay(_, _V) --> [].attgoal_for_delay114,2987 -attgoal_for_delay(_, _V) --> [].attgoal_for_delay114,2987 -attgoal_for_delay(_, _V) --> [].attgoal_for_delay114,2987 -remove_when_declarations(when(Cond,Goal,_), when(Cond,NoWGoal)) :- !,remove_when_declarations116,3021 -remove_when_declarations(when(Cond,Goal,_), when(Cond,NoWGoal)) :- !,remove_when_declarations116,3021 -remove_when_declarations(when(Cond,Goal,_), when(Cond,NoWGoal)) :- !,remove_when_declarations116,3021 -remove_when_declarations(Goal, Goal).remove_when_declarations118,3133 -remove_when_declarations(Goal, Goal).remove_when_declarations118,3133 -prolog:freeze(V, G) :-freeze131,3314 -prolog:freeze(V, G) :-freeze131,3314 -prolog:freeze(_, G) :-freeze134,3368 -prolog:freeze(_, G) :-freeze134,3368 -freeze_goal(V,VG) :-freeze_goal137,3408 -freeze_goal(V,VG) :-freeze_goal137,3408 -freeze_goal(V,VG) :-freeze_goal137,3408 -freeze_goal(V,M:G) :- !,freeze_goal141,3513 -freeze_goal(V,M:G) :- !,freeze_goal141,3513 -freeze_goal(V,M:G) :- !,freeze_goal141,3513 -freeze_goal(V,G) :-freeze_goal143,3585 -freeze_goal(V,G) :-freeze_goal143,3585 -freeze_goal(V,G) :-freeze_goal143,3585 -prolog:dif(X, Y) :-dif192,5558 -prolog:dif(X, Y) :-dif192,5558 -prolog:dif(_, _).dif196,5678 -dif_suspend_on_lvars([], _).dif_suspend_on_lvars199,5698 -dif_suspend_on_lvars([], _).dif_suspend_on_lvars199,5698 -dif_suspend_on_lvars([H|T], G) :-dif_suspend_on_lvars200,5727 -dif_suspend_on_lvars([H|T], G) :-dif_suspend_on_lvars200,5727 -dif_suspend_on_lvars([H|T], G) :-dif_suspend_on_lvars200,5727 -redo_dif(Done, _, _) :- nonvar(Done), !.redo_dif213,6234 -redo_dif(Done, _, _) :- nonvar(Done), !.redo_dif213,6234 -redo_dif(Done, _, _) :- nonvar(Done), !.redo_dif213,6234 -redo_dif(Done, X, Y) :-redo_dif214,6275 -redo_dif(Done, X, Y) :-redo_dif214,6275 -redo_dif(Done, X, Y) :-redo_dif214,6275 -redo_dif('$done', _, _).redo_dif218,6398 -redo_dif('$done', _, _).redo_dif218,6398 -redo_freeze(Done, V, G0) :-redo_freeze220,6424 -redo_freeze(Done, V, G0) :-redo_freeze220,6424 -redo_freeze(Done, V, G0) :-redo_freeze220,6424 -redo_eq(Done, _, _, _, _) :- nonvar(Done), !.redo_eq244,7111 -redo_eq(Done, _, _, _, _) :- nonvar(Done), !.redo_eq244,7111 -redo_eq(Done, _, _, _, _) :- nonvar(Done), !.redo_eq244,7111 -redo_eq(_, X, Y, _, G) :-redo_eq245,7157 -redo_eq(_, X, Y, _, G) :-redo_eq245,7157 -redo_eq(_, X, Y, _, G) :-redo_eq245,7157 -redo_eq(Done, _, _, when(C, G, Done), _) :- !,redo_eq249,7263 -redo_eq(Done, _, _, when(C, G, Done), _) :- !,redo_eq249,7263 -redo_eq(Done, _, _, when(C, G, Done), _) :- !,redo_eq249,7263 -redo_eq('$done', _ ,_ , Goal, _) :-redo_eq251,7329 -redo_eq('$done', _ ,_ , Goal, _) :-redo_eq251,7329 -redo_eq('$done', _ ,_ , Goal, _) :-redo_eq251,7329 -redo_ground(Done, _, _) :- nonvar(Done), !.redo_ground256,7417 -redo_ground(Done, _, _) :- nonvar(Done), !.redo_ground256,7417 -redo_ground(Done, _, _) :- nonvar(Done), !.redo_ground256,7417 -redo_ground(Done, X, Goal) :-redo_ground257,7461 -redo_ground(Done, X, Goal) :-redo_ground257,7461 -redo_ground(Done, X, Goal) :-redo_ground257,7461 -redo_ground(Done, _, when(C, G, Done)) :- !,redo_ground260,7569 -redo_ground(Done, _, when(C, G, Done)) :- !,redo_ground260,7569 -redo_ground(Done, _, when(C, G, Done)) :- !,redo_ground260,7569 -redo_ground('$done', _, Goal) :-redo_ground262,7633 -redo_ground('$done', _, Goal) :-redo_ground262,7633 -redo_ground('$done', _, Goal) :-redo_ground262,7633 -prolog:when(Conds,Goal) :-when291,8249 -prolog:when(Conds,Goal) :-when291,8249 -prolog:when(_,Goal) :-when297,8444 -prolog:when(_,Goal) :-when297,8444 -'$declare_when'(Cond, G) :-$declare_when308,8655 -'$declare_when'(Cond, G) :-$declare_when308,8655 -'$declare_when'(Cond, G) :-$declare_when308,8655 -'$declare_when'(_,_).$declare_when312,8794 -'$declare_when'(_,_)./p,predicate,predicate definition312,8794 -'$declare_when'(_,_).$declare_when312,8794 -prepare_goal_for_when(G, Mod, Mod:call(G)) :- var(G), !.prepare_goal_for_when327,9075 -prepare_goal_for_when(G, Mod, Mod:call(G)) :- var(G), !.prepare_goal_for_when327,9075 -prepare_goal_for_when(G, Mod, Mod:call(G)) :- var(G), !.prepare_goal_for_when327,9075 -prepare_goal_for_when(M:G, _, M:G) :- !.prepare_goal_for_when328,9132 -prepare_goal_for_when(M:G, _, M:G) :- !.prepare_goal_for_when328,9132 -prepare_goal_for_when(M:G, _, M:G) :- !.prepare_goal_for_when328,9132 -prepare_goal_for_when(G, Mod, Mod:G).prepare_goal_for_when329,9174 -prepare_goal_for_when(G, Mod, Mod:G).prepare_goal_for_when329,9174 -when(V, G, _Done, LG, LG) :- var(V), !,when342,9420 -when(V, G, _Done, LG, LG) :- var(V), !,when342,9420 -when(V, G, _Done, LG, LG) :- var(V), !,when342,9420 -when(nonvar(V), G, Done, LG0, LGF) :-when344,9505 -when(nonvar(V), G, Done, LG0, LGF) :-when344,9505 -when(nonvar(V), G, Done, LG0, LGF) :-when344,9505 -when(?=(X,Y), G, Done, LG0, LGF) :-when346,9588 -when(?=(X,Y), G, Done, LG0, LGF) :-when346,9588 -when(?=(X,Y), G, Done, LG0, LGF) :-when346,9588 -when(ground(T), G, Done, LG0, LGF) :-when348,9667 -when(ground(T), G, Done, LG0, LGF) :-when348,9667 -when(ground(T), G, Done, LG0, LGF) :-when348,9667 -when((C1, C2), G, Done, LG0, LGF) :-when350,9750 -when((C1, C2), G, Done, LG0, LGF) :-when350,9750 -when((C1, C2), G, Done, LG0, LGF) :-when350,9750 -when((G1 ; G2), G, Done, LG0, LGF) :-when360,10017 -when((G1 ; G2), G, Done, LG0, LGF) :-when360,10017 -when((G1 ; G2), G, Done, LG0, LGF) :-when360,10017 -when(_, _, Done) :-when368,10250 -when(_, _, Done) :-when368,10250 -when(_, _, Done) :-when368,10250 -when(Cond, G, Done) :-when370,10288 -when(Cond, G, Done) :-when370,10288 -when(Cond, G, Done) :-when370,10288 -when(_, G, '$done') :-when374,10376 -when(_, G, '$done') :-when374,10376 -when(_, G, '$done') :-when374,10376 -when_suspend(_, _, Done, _, []) :- nonvar(Done), !.when_suspend382,10495 -when_suspend(_, _, Done, _, []) :- nonvar(Done), !.when_suspend382,10495 -when_suspend(_, _, Done, _, []) :- nonvar(Done), !.when_suspend382,10495 -when_suspend(nonvar(V), G, Done, LG0, LGF) :-when_suspend386,10580 -when_suspend(nonvar(V), G, Done, LG0, LGF) :-when_suspend386,10580 -when_suspend(nonvar(V), G, Done, LG0, LGF) :-when_suspend386,10580 -when_suspend(?=(X,Y), G, Done, LG0, LGF) :-when_suspend388,10661 -when_suspend(?=(X,Y), G, Done, LG0, LGF) :-when_suspend388,10661 -when_suspend(?=(X,Y), G, Done, LG0, LGF) :-when_suspend388,10661 -when_suspend(ground(X), G, Done, LG0, LGF) :-when_suspend390,10739 -when_suspend(ground(X), G, Done, LG0, LGF) :-when_suspend390,10739 -when_suspend(ground(X), G, Done, LG0, LGF) :-when_suspend390,10739 -try_freeze(V, G, Done, LG0, LGF) :-try_freeze394,10822 -try_freeze(V, G, Done, LG0, LGF) :-try_freeze394,10822 -try_freeze(V, G, Done, LG0, LGF) :-try_freeze394,10822 -try_eq(X, Y, G, Done, LG0, LGF) :-try_eq398,10941 -try_eq(X, Y, G, Done, LG0, LGF) :-try_eq398,10941 -try_eq(X, Y, G, Done, LG0, LGF) :-try_eq398,10941 -try_ground(X, G, Done, LG0, LGF) :-try_ground402,11101 -try_ground(X, G, Done, LG0, LGF) :-try_ground402,11101 -try_ground(X, G, Done, LG0, LGF) :-try_ground402,11101 -suspend_when_goals([], _).suspend_when_goals413,11511 -suspend_when_goals([], _).suspend_when_goals413,11511 -suspend_when_goals(['$coroutining':internal_freeze(V, G)|Ls], Done) :-suspend_when_goals414,11538 -suspend_when_goals(['$coroutining':internal_freeze(V, G)|Ls], Done) :-suspend_when_goals414,11538 -suspend_when_goals(['$coroutining':internal_freeze(V, G)|Ls], Done) :-suspend_when_goals414,11538 -suspend_when_goals([dif_suspend_on_lvars(LVars, G)|LG], Done) :-suspend_when_goals418,11679 -suspend_when_goals([dif_suspend_on_lvars(LVars, G)|LG], Done) :-suspend_when_goals418,11679 -suspend_when_goals([dif_suspend_on_lvars(LVars, G)|LG], Done) :-suspend_when_goals418,11679 -suspend_when_goals([_|_], _).suspend_when_goals422,11823 -suspend_when_goals([_|_], _).suspend_when_goals422,11823 -prolog:'$block'(Conds) :-$block437,12283 -prolog:'$block'(Conds) :-$block437,12283 -prolog:'$block'(_).$block441,12421 -prolog:'$block'(_).$block441,12421 -generate_blocking_code(Conds, G, Code) :-generate_blocking_code443,12442 -generate_blocking_code(Conds, G, Code) :-generate_blocking_code443,12442 -generate_blocking_code(Conds, G, Code) :-generate_blocking_code443,12442 -generate_blocking_code(Conds, G, (G :- (If, !, when(When, G)))) :-generate_blocking_code451,12700 -generate_blocking_code(Conds, G, (G :- (If, !, when(When, G)))) :-generate_blocking_code451,12700 -generate_blocking_code(Conds, G, (G :- (If, !, when(When, G)))) :-generate_blocking_code451,12700 -extract_head_for_block((C1, _), G) :- !,extract_head_for_block459,12936 -extract_head_for_block((C1, _), G) :- !,extract_head_for_block459,12936 -extract_head_for_block((C1, _), G) :- !,extract_head_for_block459,12936 -extract_head_for_block(C, G) :-extract_head_for_block461,13009 -extract_head_for_block(C, G) :-extract_head_for_block461,13009 -extract_head_for_block(C, G) :-extract_head_for_block461,13009 -generate_body_for_block((C1, C2), G, (Code1 -> true ; Code2), (WhenConds,OtherWhenConds)) :- !,generate_body_for_block485,13622 -generate_body_for_block((C1, C2), G, (Code1 -> true ; Code2), (WhenConds,OtherWhenConds)) :- !,generate_body_for_block485,13622 -generate_body_for_block((C1, C2), G, (Code1 -> true ; Code2), (WhenConds,OtherWhenConds)) :- !,generate_body_for_block485,13622 -generate_body_for_block(C, G, (Code -> true ; fail), WhenConds) :-generate_body_for_block488,13840 -generate_body_for_block(C, G, (Code -> true ; fail), WhenConds) :-generate_body_for_block488,13840 -generate_body_for_block(C, G, (Code -> true ; fail), WhenConds) :-generate_body_for_block488,13840 -generate_for_cond_in_block(C, G, Code, Whens) :-generate_for_cond_in_block491,13966 -generate_for_cond_in_block(C, G, Code, Whens) :-generate_for_cond_in_block491,13966 -generate_for_cond_in_block(C, G, Code, Whens) :-generate_for_cond_in_block491,13966 -add_blocking_vars([], [_]) :- !.add_blocking_vars498,14190 -add_blocking_vars([], [_]) :- !.add_blocking_vars498,14190 -add_blocking_vars([], [_]) :- !.add_blocking_vars498,14190 -add_blocking_vars(LV, LV).add_blocking_vars499,14223 -add_blocking_vars(LV, LV).add_blocking_vars499,14223 -fetch_out_variables_for_block([], [], []).fetch_out_variables_for_block501,14251 -fetch_out_variables_for_block([], [], []).fetch_out_variables_for_block501,14251 -fetch_out_variables_for_block(['?'|Args], [_|GArgs], LV) :-fetch_out_variables_for_block502,14294 -fetch_out_variables_for_block(['?'|Args], [_|GArgs], LV) :-fetch_out_variables_for_block502,14294 -fetch_out_variables_for_block(['?'|Args], [_|GArgs], LV) :-fetch_out_variables_for_block502,14294 -generate_for_each_arg_in_block([], false, true).generate_for_each_arg_in_block508,14531 -generate_for_each_arg_in_block([], false, true).generate_for_each_arg_in_block508,14531 -generate_for_each_arg_in_block([V], var(V), nonvar(V)) :- !.generate_for_each_arg_in_block509,14580 -generate_for_each_arg_in_block([V], var(V), nonvar(V)) :- !.generate_for_each_arg_in_block509,14580 -generate_for_each_arg_in_block([V], var(V), nonvar(V)) :- !.generate_for_each_arg_in_block509,14580 -generate_for_each_arg_in_block([V|L], (var(V),If), (nonvar(V);Whens)) :-generate_for_each_arg_in_block510,14641 -generate_for_each_arg_in_block([V|L], (var(V),If), (nonvar(V);Whens)) :-generate_for_each_arg_in_block510,14641 -generate_for_each_arg_in_block([V|L], (var(V),If), (nonvar(V);Whens)) :-generate_for_each_arg_in_block510,14641 -prolog:'$wait'(Na/Ar) :-$wait517,14840 -prolog:'$wait'(Na/Ar) :-$wait517,14840 -prolog:'$wait'(_).$wait522,15014 -prolog:'$wait'(_).$wait522,15014 -prolog:frozen(V, LG) :-frozen532,15172 -prolog:frozen(V, LG) :-frozen532,15172 -prolog:frozen(V, G) :-frozen537,15322 -prolog:frozen(V, G) :-frozen537,15322 -simplify_frozen( [prolog:freeze(_, G)|Gs], [G|NGs] ) :-simplify_frozen540,15401 -simplify_frozen( [prolog:freeze(_, G)|Gs], [G|NGs] ) :-simplify_frozen540,15401 -simplify_frozen( [prolog:freeze(_, G)|Gs], [G|NGs] ) :-simplify_frozen540,15401 -simplify_frozen( [prolog:when(_, G)|Gs], [G|NGs] ) :-simplify_frozen542,15488 -simplify_frozen( [prolog:when(_, G)|Gs], [G|NGs] ) :-simplify_frozen542,15488 -simplify_frozen( [prolog:when(_, G)|Gs], [G|NGs] ) :-simplify_frozen542,15488 -simplify_frozen( [prolog:dif(_, _)|Gs], NGs ) :-simplify_frozen544,15573 -simplify_frozen( [prolog:dif(_, _)|Gs], NGs ) :-simplify_frozen544,15573 -simplify_frozen( [prolog:dif(_, _)|Gs], NGs ) :-simplify_frozen544,15573 -simplify_frozen( [], [] ).simplify_frozen546,15653 -simplify_frozen( [], [] ).simplify_frozen546,15653 -list_to_conj([], true).list_to_conj548,15681 -list_to_conj([], true).list_to_conj548,15681 -list_to_conj([El], El).list_to_conj549,15705 -list_to_conj([El], El).list_to_conj549,15705 -list_to_conj([E,E1|Els], (E,C) ) :-list_to_conj550,15729 -list_to_conj([E,E1|Els], (E,C) ) :-list_to_conj550,15729 -list_to_conj([E,E1|Els], (E,C) ) :-list_to_conj550,15729 -internal_freeze(V,G) :-internal_freeze555,15875 -internal_freeze(V,G) :-internal_freeze555,15875 -internal_freeze(V,G) :-internal_freeze555,15875 -update_att(V, G) :-update_att558,15919 -update_att(V, G) :-update_att558,15919 -update_att(V, G) :-update_att558,15919 -update_att(V, G) :-update_att562,16075 -update_att(V, G) :-update_att562,16075 -update_att(V, G) :-update_att562,16075 -not_vmember(_, []).not_vmember566,16152 -not_vmember(_, []).not_vmember566,16152 -not_vmember(V, [V1|DonesSoFar]) :-not_vmember567,16172 -not_vmember(V, [V1|DonesSoFar]) :-not_vmember567,16172 -not_vmember(V, [V1|DonesSoFar]) :-not_vmember567,16172 -first_att(T, V) :-first_att571,16248 -first_att(T, V) :-first_att571,16248 -first_att(T, V) :-first_att571,16248 -check_first_attvar([V|_Vs], V0) :- attvar(V), !, V == V0.check_first_attvar575,16320 -check_first_attvar([V|_Vs], V0) :- attvar(V), !, V == V0.check_first_attvar575,16320 -check_first_attvar([V|_Vs], V0) :- attvar(V), !, V == V0.check_first_attvar575,16320 -check_first_attvar([_|Vs], V0) :-check_first_attvar576,16378 -check_first_attvar([_|Vs], V0) :-check_first_attvar576,16378 -check_first_attvar([_|Vs], V0) :-check_first_attvar576,16378 - -pl/dbload.yap,2779 -load_mega_clause( Stream ) :-load_mega_clause41,1035 -load_mega_clause( Stream ) :-load_mega_clause41,1035 -load_mega_clause( Stream ) :-load_mega_clause41,1035 -'$input_lines'(R, csv, Lines ) :-$input_lines47,1191 -'$input_lines'(R, csv, Lines ) :-$input_lines47,1191 -'$input_lines'(R, csv, Lines ) :-$input_lines47,1191 -prolog:load_db(Fs) :-load_db55,1411 -prolog:load_db(Fs) :-load_db55,1411 -dbload(Fs, _, G) :-dbload63,1581 -dbload(Fs, _, G) :-dbload63,1581 -dbload(Fs, _, G) :-dbload63,1581 -dbload([], _, _) :- !.dbload66,1648 -dbload([], _, _) :- !.dbload66,1648 -dbload([], _, _) :- !.dbload66,1648 -dbload([F|Fs], M0, G) :- !,dbload67,1671 -dbload([F|Fs], M0, G) :- !,dbload67,1671 -dbload([F|Fs], M0, G) :- !,dbload67,1671 -dbload(M:F, _M0, G) :- !,dbload70,1738 -dbload(M:F, _M0, G) :- !,dbload70,1738 -dbload(M:F, _M0, G) :- !,dbload70,1738 -dbload(F, M0, G) :-dbload72,1782 -dbload(F, M0, G) :-dbload72,1782 -dbload(F, M0, G) :-dbload72,1782 -dbload(F, _, G) :-dbload75,1837 -dbload(F, _, G) :-dbload75,1837 -dbload(F, _, G) :-dbload75,1837 -do_dbload(F0, M0, G) :-do_dbload78,1893 -do_dbload(F0, M0, G) :-do_dbload78,1893 -do_dbload(F0, M0, G) :-do_dbload78,1893 -check_dbload_stream(R, M0) :-check_dbload_stream86,2034 -check_dbload_stream(R, M0) :-check_dbload_stream86,2034 -check_dbload_stream(R, M0) :-check_dbload_stream86,2034 -dbload_count(T0, M0) :-dbload_count94,2167 -dbload_count(T0, M0) :-dbload_count94,2167 -dbload_count(T0, M0) :-dbload_count94,2167 -get_module(M1:T0,_,T,M) :- !,get_module109,2492 -get_module(M1:T0,_,T,M) :- !,get_module109,2492 -get_module(M1:T0,_,T,M) :- !,get_module109,2492 -get_module(T,M,T,M).get_module111,2550 -get_module(T,M,T,M).get_module111,2550 -load_facts :-load_facts114,2573 -load_facts :-load_facts117,2643 -load_facts :-load_facts124,2835 -dbload_add_facts(R, M) :-dbload_add_facts132,2942 -dbload_add_facts(R, M) :-dbload_add_facts132,2942 -dbload_add_facts(R, M) :-dbload_add_facts132,2942 -dbload_add_fact(T0, M0) :-dbload_add_fact140,3073 -dbload_add_fact(T0, M0) :-dbload_add_fact140,3073 -dbload_add_fact(T0, M0) :-dbload_add_fact140,3073 -load_exofacts :-load_exofacts149,3262 -load_exofacts :-load_exofacts156,3457 -exodb_add_facts(R, M) :-exodb_add_facts164,3569 -exodb_add_facts(R, M) :-exodb_add_facts164,3569 -exodb_add_facts(R, M) :-exodb_add_facts164,3569 -protected_exodb_add_fact(R, M) :-protected_exodb_add_fact169,3657 -protected_exodb_add_fact(R, M) :-protected_exodb_add_fact169,3657 -protected_exodb_add_fact(R, M) :-protected_exodb_add_fact169,3657 -exodb_add_fact(T0, M0) :-exodb_add_fact177,3780 -exodb_add_fact(T0, M0) :-exodb_add_fact177,3780 -exodb_add_fact(T0, M0) :-exodb_add_fact177,3780 -clean_up :-clean_up186,3969 - -pl/debug.yap,35348 -'$spy'([Mod|G]) :-$spy271,8348 -'$spy'([Mod|G]) :-$spy271,8348 -'$spy'([Mod|G]) :-$spy271,8348 -'$spy'([Mod|G]) :-$spy274,8434 -'$spy'([Mod|G]) :-$spy274,8434 -'$spy'([Mod|G]) :-$spy274,8434 -'$spy'([Mod|G], A1) :-$spy280,8551 -'$spy'([Mod|G], A1) :-$spy280,8551 -'$spy'([Mod|G], A1) :-$spy280,8551 -'$spy'([Mod|G], A1, A2) :-$spy286,8645 -'$spy'([Mod|G], A1, A2) :-$spy286,8645 -'$spy'([Mod|G], A1, A2) :-$spy286,8645 -'$spy'([Mod|G], A1, A2, A3) :-$spy292,8747 -'$spy'([Mod|G], A1, A2, A3) :-$spy292,8747 -'$spy'([Mod|G], A1, A2, A3) :-$spy292,8747 -'$spy'([Mod|G], A1, A2, A3, A4) :-$spy298,8857 -'$spy'([Mod|G], A1, A2, A3, A4) :-$spy298,8857 -'$spy'([Mod|G], A1, A2, A3, A4) :-$spy298,8857 -'$spy'([Mod|G], A1, A2, A3, A4, A5) :-$spy304,8972 -'$spy'([Mod|G], A1, A2, A3, A4, A5) :-$spy304,8972 -'$spy'([Mod|G], A1, A2, A3, A4, A5) :-$spy304,8972 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6) :-$spy310,9098 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6) :-$spy310,9098 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6) :-$spy310,9098 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6, A7) :-$spy316,9232 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6, A7) :-$spy316,9232 -'$spy'([Mod|G], A1, A2, A3, A4, A5, A6, A7) :-$spy316,9232 -'$trace_meta_call'( G, M, CP ) :-$trace_meta_call345,10037 -'$trace_meta_call'( G, M, CP ) :-$trace_meta_call345,10037 -'$trace_meta_call'( G, M, CP ) :-$trace_meta_call345,10037 -'$do_spy'(V, M, CP, Flag) :-$do_spy352,10310 -'$do_spy'(V, M, CP, Flag) :-$do_spy352,10310 -'$do_spy'(V, M, CP, Flag) :-$do_spy352,10310 -'$do_spy'(!, _, CP, _) :-$do_spy356,10414 -'$do_spy'(!, _, CP, _) :-$do_spy356,10414 -'$do_spy'(!, _, CP, _) :-$do_spy356,10414 -'$do_spy'('$cut_by'(M), _, _, _) :-$do_spy358,10460 -'$do_spy'('$cut_by'(M), _, _, _) :-$do_spy358,10460 -'$do_spy'('$cut_by'(M), _, _, _) :-$do_spy'('$cut_by358,10460 -'$do_spy'('$$cut_by'(M), _, _, _) :-$do_spy360,10515 -'$do_spy'('$$cut_by'(M), _, _, _) :-$do_spy360,10515 -'$do_spy'('$$cut_by'(M), _, _, _) :-$do_spy'('$$cut_by360,10515 -'$do_spy'(true, _, _, _) :- !.$do_spy362,10571 -'$do_spy'(true, _, _, _) :- !.$do_spy362,10571 -'$do_spy'(true, _, _, _) :- !.$do_spy362,10571 -'$do_spy'(M:G, _, CP, CalledFromDebugger) :- !,$do_spy364,10640 -'$do_spy'(M:G, _, CP, CalledFromDebugger) :- !,$do_spy364,10640 -'$do_spy'(M:G, _, CP, CalledFromDebugger) :- !,$do_spy364,10640 -'$do_spy'((A,B), M, CP, CalledFromDebugger) :- !,$do_spy366,10730 -'$do_spy'((A,B), M, CP, CalledFromDebugger) :- !,$do_spy366,10730 -'$do_spy'((A,B), M, CP, CalledFromDebugger) :- !,$do_spy366,10730 -'$do_spy'((T->A;B), M, CP, CalledFromDebugger) :- !,$do_spy369,10854 -'$do_spy'((T->A;B), M, CP, CalledFromDebugger) :- !,$do_spy369,10854 -'$do_spy'((T->A;B), M, CP, CalledFromDebugger) :- !,$do_spy369,10854 -'$do_spy'((T->A|B), M, CP, CalledFromDebugger) :- !,$do_spy375,11034 -'$do_spy'((T->A|B), M, CP, CalledFromDebugger) :- !,$do_spy375,11034 -'$do_spy'((T->A|B), M, CP, CalledFromDebugger) :- !,$do_spy375,11034 -'$do_spy'((T->A), M, CP, CalledFromDebugger) :- !,$do_spy384,11247 -'$do_spy'((T->A), M, CP, CalledFromDebugger) :- !,$do_spy384,11247 -'$do_spy'((T->A), M, CP, CalledFromDebugger) :- !,$do_spy384,11247 -'$do_spy'((A;B), M, CP, CalledFromDebugger) :- !,$do_spy386,11378 -'$do_spy'((A;B), M, CP, CalledFromDebugger) :- !,$do_spy386,11378 -'$do_spy'((A;B), M, CP, CalledFromDebugger) :- !,$do_spy386,11378 -'$do_spy'((A|B), M, CP, CalledFromDebugger) :- !,$do_spy393,11552 -'$do_spy'((A|B), M, CP, CalledFromDebugger) :- !,$do_spy393,11552 -'$do_spy'((A|B), M, CP, CalledFromDebugger) :- !,$do_spy393,11552 -'$do_spy'((\+G), M, CP, CalledFromDebugger) :- !,$do_spy400,11729 -'$do_spy'((\+G), M, CP, CalledFromDebugger) :- !,$do_spy400,11729 -'$do_spy'((\+G), M, CP, CalledFromDebugger) :- !,$do_spy400,11729 -'$do_spy'((not(G)), M, CP, CalledFromDebugger) :- !,$do_spy402,11824 -'$do_spy'((not(G)), M, CP, CalledFromDebugger) :- !,$do_spy402,11824 -'$do_spy'((not(G)), M, CP, CalledFromDebugger) :- !,$do_spy402,11824 -'$do_spy'(once(G), M, CP, CalledFromDebugger) :- !,$do_spy404,11922 -'$do_spy'(once(G), M, CP, CalledFromDebugger) :- !,$do_spy404,11922 -'$do_spy'(once(G), M, CP, CalledFromDebugger) :- !,$do_spy404,11922 -'$do_spy'(ignore(G), M, CP, CalledFromDebugger) :- !,$do_spy406,12024 -'$do_spy'(ignore(G), M, CP, CalledFromDebugger) :- !,$do_spy406,12024 -'$do_spy'(ignore(G), M, CP, CalledFromDebugger) :- !,$do_spy406,12024 -'$do_spy'(G, Module, _, CalledFromDebugger) :-$do_spy408,12130 -'$do_spy'(G, Module, _, CalledFromDebugger) :-$do_spy408,12130 -'$do_spy'(G, Module, _, CalledFromDebugger) :-$do_spy408,12130 -'$loop_spy'(GoalNumber, G, Module, CalledFromDebugger) :-$loop_spy419,12659 -'$loop_spy'(GoalNumber, G, Module, CalledFromDebugger) :-$loop_spy419,12659 -'$loop_spy'(GoalNumber, G, Module, CalledFromDebugger) :-$loop_spy419,12659 -'$TraceError'( abort, _, _, _, _) :-$TraceError433,13161 -'$TraceError'( abort, _, _, _, _) :-$TraceError433,13161 -'$TraceError'( abort, _, _, _, _) :-$TraceError433,13161 -'$TraceError'('$forward'('$retry_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError436,13234 -'$TraceError'('$forward'('$retry_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError436,13234 -'$TraceError'('$forward'('$retry_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError'('$forward'('$retry_spy436,13234 -'$TraceError'('$forward'('$fail_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError444,13479 -'$TraceError'('$forward'('$fail_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError444,13479 -'$TraceError'('$forward'('$fail_spy'(G0)), GoalNumber, G, Module, CalledFromDebugger) :-$TraceError'('$forward'('$fail_spy444,13479 -'$TraceError'('$forward'('$fail_spy'(GoalNumber)), _, _, _, _) :- !,$TraceError447,13648 -'$TraceError'('$forward'('$fail_spy'(GoalNumber)), _, _, _, _) :- !,$TraceError447,13648 -'$TraceError'('$forward'('$fail_spy'(GoalNumber)), _, _, _, _) :- !,$TraceError'('$forward'('$fail_spy447,13648 -'$TraceError'('$forward'('$wrapper'(Event)), _, _, _, _) :-$TraceError451,13796 -'$TraceError'('$forward'('$wrapper'(Event)), _, _, _, _) :-$TraceError451,13796 -'$TraceError'('$forward'('$wrapper'(Event)), _, _, _, _) :-$TraceError'('$forward'('$wrapper451,13796 -'$TraceError'(Event, GoalNumber, G, Module, CalledFromDebugger) :-$TraceError455,13936 -'$TraceError'(Event, GoalNumber, G, Module, CalledFromDebugger) :-$TraceError455,13936 -'$TraceError'(Event, GoalNumber, G, Module, CalledFromDebugger) :-$TraceError455,13936 -'$debug_error'(Event) :-$debug_error465,14220 -'$debug_error'(Event) :-$debug_error465,14220 -'$debug_error'(Event) :-$debug_error465,14220 -'$debug_error'(_).$debug_error467,14269 -'$debug_error'(_)./p,predicate,predicate definition467,14269 -'$debug_error'(_).$debug_error467,14269 -'$loop_fail'(_GoalNumber, _G, _Module, CalledFromDebugger) :-$loop_fail472,14381 -'$loop_fail'(_GoalNumber, _G, _Module, CalledFromDebugger) :-$loop_fail472,14381 -'$loop_fail'(_GoalNumber, _G, _Module, CalledFromDebugger) :-$loop_fail472,14381 -'$loop_spy2'(GoalNumber, G, Module, CalledFromDebugger, CP) :-$loop_spy2488,14659 -'$loop_spy2'(GoalNumber, G, Module, CalledFromDebugger, CP) :-$loop_spy2488,14659 -'$loop_spy2'(GoalNumber, G, Module, CalledFromDebugger, CP) :-$loop_spy2488,14659 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal546,16449 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal546,16449 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal546,16449 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal548,16527 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal548,16527 -'$enter_goal'(GoalNumber, G, Module) :-$enter_goal548,16527 -'$show_trace'(_, G, Module, GoalNumber,_) :-$show_trace551,16614 -'$show_trace'(_, G, Module, GoalNumber,_) :-$show_trace551,16614 -'$show_trace'(_, G, Module, GoalNumber,_) :-$show_trace551,16614 -'$show_trace'(P,G,Module,GoalNumber,Deterministic) :-$show_trace553,16694 -'$show_trace'(P,G,Module,GoalNumber,Deterministic) :-$show_trace553,16694 -'$show_trace'(P,G,Module,GoalNumber,Deterministic) :-$show_trace553,16694 -'$zip'(_GoalNumber, _G, _Module) :-$zip559,16825 -'$zip'(_GoalNumber, _G, _Module) :-$zip559,16825 -'$zip'(_GoalNumber, _G, _Module) :-$zip559,16825 -'$zip'(GoalNumber, G, Module) :-$zip562,16901 -'$zip'(GoalNumber, G, Module) :-$zip562,16901 -'$zip'(GoalNumber, G, Module) :-$zip562,16901 -'$spycall'(G, M, _, _) :-$spycall581,17255 -'$spycall'(G, M, _, _) :-$spycall581,17255 -'$spycall'(G, M, _, _) :-$spycall581,17255 -'$spycall'(G, M, _, _) :-$spycall585,17357 -'$spycall'(G, M, _, _) :-$spycall585,17357 -'$spycall'(G, M, _, _) :-$spycall585,17357 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall595,17544 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall595,17544 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall595,17544 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall603,17775 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall603,17775 -'$spycall'(G, M, CalledFromDebugger, InRedo) :-$spycall603,17775 -'$spycall_f'(G, M, _, _) :-$spycall_f606,17874 -'$spycall_f'(G, M, _, _) :-$spycall_f606,17874 -'$spycall_f'(G, M, _, _) :-$spycall_f606,17874 -'$spycall_f'(G, M, CalledFromDebugger, InRedo) :-$spycall_f610,18026 -'$spycall_f'(G, M, CalledFromDebugger, InRedo) :-$spycall_f610,18026 -'$spycall_f'(G, M, CalledFromDebugger, InRedo) :-$spycall_f610,18026 -'$spycall_expanded'(G, M, CalledFromDebugger, InRedo) :-$spycall_expanded613,18133 -'$spycall_expanded'(G, M, CalledFromDebugger, InRedo) :-$spycall_expanded613,18133 -'$spycall_expanded'(G, M, CalledFromDebugger, InRedo) :-$spycall_expanded613,18133 -'$spycall_expanded'(G, M, _CalledFromDebugger, InRedo) :-$spycall_expanded617,18315 -'$spycall_expanded'(G, M, _CalledFromDebugger, InRedo) :-$spycall_expanded617,18315 -'$spycall_expanded'(G, M, _CalledFromDebugger, InRedo) :-$spycall_expanded617,18315 -'$creep'('$execute_clause'(G,Mod,Ref,CP),_M) :-$creep646,18922 -'$creep'('$execute_clause'(G,Mod,Ref,CP),_M) :-$creep646,18922 -'$creep'('$execute_clause'(G,Mod,Ref,CP),_M) :-$creep'('$execute_clause646,18922 -'$creep'(G,M) :-$creep658,19174 -'$creep'(G,M) :-$creep658,19174 -'$creep'(G,M) :-$creep658,19174 -'$trace'(G,M) :-$trace677,19430 -'$trace'(G,M) :-$trace677,19430 -'$trace'(G,M) :-$trace677,19430 -'$tabled_predicate'(G,M) :-$tabled_predicate689,19611 -'$tabled_predicate'(G,M) :-$tabled_predicate689,19611 -'$tabled_predicate'(G,M) :-$tabled_predicate689,19611 -'$trace'(P,G,Module,L,Deterministic) :-$trace695,19797 -'$trace'(P,G,Module,L,Deterministic) :-$trace695,19797 -'$trace'(P,G,Module,L,Deterministic) :-$trace695,19797 -'$trace_msg'(P,G,Module,L,Deterministic) :-$trace_msg724,20452 -'$trace_msg'(P,G,Module,L,Deterministic) :-$trace_msg724,20452 -'$trace_msg'(P,G,Module,L,Deterministic) :-$trace_msg724,20452 -'$unleashed'(call) :- get_value('$leash',L), L /\ 2'1000 =:= 0. %'$unleashed743,20941 -'$unleashed'(call) :- get_value('$leash',L), L /\ 2'1000 =:= 0. %'$unleashed743,20941 -'$unleashed'(call) :- get_value('$leash',L), L /\ 2'1000 =:= 0. %'$unleashed743,20941 -'$unleashed'(exit) :- get_value('$leash',L), L /\ 2'0100 =:= 0. %'$unleashed744,21008 -'$unleashed'(exit) :- get_value('$leash',L), L /\ 2'0100 =:= 0. %'$unleashed744,21008 -'$unleashed'(exit) :- get_value('$leash',L), L /\ 2'0100 =:= 0. %'$unleashed744,21008 -'$unleashed'(redo) :- get_value('$leash',L), L /\ 2'0010 =:= 0. %'$unleashed745,21075 -'$unleashed'(redo) :- get_value('$leash',L), L /\ 2'0010 =:= 0. %'$unleashed745,21075 -'$unleashed'(redo) :- get_value('$leash',L), L /\ 2'0010 =:= 0. %'$unleashed745,21075 -'$unleashed'(fail) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed746,21142 -'$unleashed'(fail) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed746,21142 -'$unleashed'(fail) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed746,21142 -'$unleashed'(exception(_)) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed748,21229 -'$unleashed'(exception(_)) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed748,21229 -'$unleashed'(exception(_)) :- get_value('$leash',L), L /\ 2'0001 =:= 0. %'$unleashed748,21229 -'$debugger_write'(Stream, G) :-$debugger_write750,21306 -'$debugger_write'(Stream, G) :-$debugger_write750,21306 -'$debugger_write'(Stream, G) :-$debugger_write750,21306 -'$debugger_write'(Stream, G) :-$debugger_write753,21423 -'$debugger_write'(Stream, G) :-$debugger_write753,21423 -'$debugger_write'(Stream, G) :-$debugger_write753,21423 -'$action'(13,P,CallNumber,G,Module,Zip) :- !, % newline creep$action756,21476 -'$action'(13,P,CallNumber,G,Module,Zip) :- !, % newline creep$action756,21476 -'$action'(13,P,CallNumber,G,Module,Zip) :- !, % newline creep$action756,21476 -'$action'(10,_,_,_,_,on) :- !, % newline creep$action759,21610 -'$action'(10,_,_,_,_,on) :- !, % newline creep$action759,21610 -'$action'(10,_,_,_,_,on) :- !, % newline creep$action759,21610 -'$action'(0'!,_,_,_,_,_) :- !, % ! 'g execute$action761,21699 -'$action'(0'!,_,_,_,_,_) :- !, % ! 'g execute$action761,21699 -'$action'(0'!,_,_,_,_,_) :- !, % ! 'g execute$action761,21699 -'$action'(0'^,_,_,G,_,_) :- !, % '$action784,22472 -'$action'(0'^,_,_,G,_,_) :- !, % '$action784,22472 -'$action'(0'^,_,_,G,_,_) :- !, % '$action784,22472 -'$action'(0'a,_,_,_,_,off) :- !, % 'a abort$action788,22558 -'$action'(0'a,_,_,_,_,off) :- !, % 'a abort$action788,22558 -'$action'(0'a,_,_,_,_,off) :- !, % 'a abort$action788,22558 -'$action'(0'b,_,_,_,_,_) :- !, % 'b break$action793,22668 -'$action'(0'b,_,_,_,_,_) :- !, % 'b break$action793,22668 -'$action'(0'b,_,_,_,_,_) :- !, % 'b break$action793,22668 -'$action'(0'A,_,_,_,_,_) :- !, % 'b break$action797,22746 -'$action'(0'A,_,_,_,_,_) :- !, % 'b break$action797,22746 -'$action'(0'A,_,_,_,_,_) :- !, % 'b break$action797,22746 -'$action'(0'c,_,_,_,_,on) :- !, % 'c creep$action801,22832 -'$action'(0'c,_,_,_,_,on) :- !, % 'c creep$action801,22832 -'$action'(0'c,_,_,_,_,on) :- !, % 'c creep$action801,22832 -'$action'(0'e,_,_,_,_,_) :- !, % 'e exit$action804,22935 -'$action'(0'e,_,_,_,_,_) :- !, % 'e exit$action804,22935 -'$action'(0'e,_,_,_,_,_) :- !, % 'e exit$action804,22935 -'$action'(0'f,_,CallId,_,_,_) :- !, % 'f fail$action807,23004 -'$action'(0'f,_,CallId,_,_,_) :- !, % 'f fail$action807,23004 -'$action'(0'f,_,CallId,_,_,_) :- !, % 'f fail$action807,23004 -'$action'(0'h,_,_,_,_,_) :- !, % 'h help$action810,23138 -'$action'(0'h,_,_,_,_,_) :- !, % 'h help$action810,23138 -'$action'(0'h,_,_,_,_,_) :- !, % 'h help$action810,23138 -'$action'(0'?,_,_,_,_,_) :- !, % '? help$action814,23224 -'$action'(0'?,_,_,_,_,_) :- !, % '? help$action814,23224 -'$action'(0'?,_,_,_,_,_) :- !, % '? help$action814,23224 -'$action'(0'p,_,_,G,Module,_) :- !, % 'p print$action818,23310 -'$action'(0'p,_,_,G,Module,_) :- !, % 'p print$action818,23310 -'$action'(0'p,_,_,G,Module,_) :- !, % 'p print$action818,23310 -'$action'(0'd,_,_,G,Module,_) :- !, % 'd display$action826,23519 -'$action'(0'd,_,_,G,Module,_) :- !, % 'd display$action826,23519 -'$action'(0'd,_,_,G,Module,_) :- !, % 'd display$action826,23519 -'$action'(0'l,_,_,_,_,on) :- !, % 'l leap$action834,23734 -'$action'(0'l,_,_,_,_,on) :- !, % 'l leap$action834,23734 -'$action'(0'l,_,_,_,_,on) :- !, % 'l leap$action834,23734 -'$action'(0'z,_,_,_,_,zip) :- !, % 'z zip, fast leap$action838,23872 -'$action'(0'z,_,_,_,_,zip) :- !, % 'z zip, fast leap$action838,23872 -'$action'(0'z,_,_,_,_,zip) :- !, % 'z zip, fast leap$action838,23872 -'$action'(0'k,_,_,_,_,zip) :- !, % 'k zip, fast leap$action844,24084 -'$action'(0'k,_,_,_,_,zip) :- !, % 'k zip, fast leap$action844,24084 -'$action'(0'k,_,_,_,_,zip) :- !, % 'k zip, fast leap$action844,24084 -'$action'(0'n,_,_,_,_,off) :- !, % 'n nodebug$action850,24295 -'$action'(0'n,_,_,_,_,off) :- !, % 'n nodebug$action850,24295 -'$action'(0'n,_,_,_,_,off) :- !, % 'n nodebug$action850,24295 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action856,24485 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action856,24485 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action856,24485 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action860,24675 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action860,24675 -'$action'(0'r,_,CallId,_,_,_) :- !, % 'r retry$action860,24675 -'$action'(0's,P,CallNumber,_,_,on) :- !, % 's skip$action864,24856 -'$action'(0's,P,CallNumber,_,_,on) :- !, % 's skip$action864,24856 -'$action'(0's,P,CallNumber,_,_,on) :- !, % 's skip$action864,24856 -'$action'(0't,P,CallNumber,_,_,zip) :- !, % 't fast skip$action874,25080 -'$action'(0't,P,CallNumber,_,_,zip) :- !, % 't fast skip$action874,25080 -'$action'(0't,P,CallNumber,_,_,zip) :- !, % 't fast skip$action874,25080 -'$action'(0'+,_,_,G,M,_) :- !, % '+ spy this$action882,25303 -'$action'(0'+,_,_,G,M,_) :- !, % '+ spy this$action882,25303 -'$action'(0'+,_,_,G,M,_) :- !, % '+ spy this$action882,25303 -'$action'(0'-,_,_,G,M,_) :- !, % '- nospy this$action886,25413 -'$action'(0'-,_,_,G,M,_) :- !, % '- nospy this$action886,25413 -'$action'(0'-,_,_,G,M,_) :- !, % '- nospy this$action886,25413 -'$action'(0'g,_,_,_,_,_) :- !, % 'g ancestors$action890,25527 -'$action'(0'g,_,_,_,_,_) :- !, % 'g ancestors$action890,25527 -'$action'(0'g,_,_,_,_,_) :- !, % 'g ancestors$action890,25527 -'$action'(0'T,exception(G),_,_,_,_) :- !, % 'T throw$action894,25671 -'$action'(0'T,exception(G),_,_,_,_) :- !, % 'T throw$action894,25671 -'$action'(0'T,exception(G),_,_,_,_) :- !, % 'T throw$action894,25671 -'$action'(C,_,_,_,_,_) :-$action896,25761 -'$action'(C,_,_,_,_,_) :-$action896,25761 -'$action'(C,_,_,_,_,_) :-$action896,25761 -'$continue_debugging'(_, _) :-$continue_debugging906,26030 -'$continue_debugging'(_, _) :-$continue_debugging906,26030 -'$continue_debugging'(_, _) :-$continue_debugging906,26030 -'$continue_debugging'(_, debugger) :- !.$continue_debugging910,26112 -'$continue_debugging'(_, debugger) :- !.$continue_debugging910,26112 -'$continue_debugging'(_, debugger) :- !.$continue_debugging910,26112 -'$continue_debugging'(zip, _) :- !.$continue_debugging913,26209 -'$continue_debugging'(zip, _) :- !.$continue_debugging913,26209 -'$continue_debugging'(zip, _) :- !.$continue_debugging913,26209 -'$continue_debugging'(_, creep) :- !,$continue_debugging914,26245 -'$continue_debugging'(_, creep) :- !,$continue_debugging914,26245 -'$continue_debugging'(_, creep) :- !,$continue_debugging914,26245 -'$continue_debugging'(_, spy) :-$continue_debugging916,26294 -'$continue_debugging'(_, spy) :-$continue_debugging916,26294 -'$continue_debugging'(_, spy) :-$continue_debugging916,26294 -'$continue_debugging'(fail, _) :- !.$continue_debugging920,26374 -'$continue_debugging'(fail, _) :- !.$continue_debugging920,26374 -'$continue_debugging'(fail, _) :- !.$continue_debugging920,26374 -'$continue_debugging'(_, _).$continue_debugging921,26411 -'$continue_debugging'(_, _)./p,predicate,predicate definition921,26411 -'$continue_debugging'(_, _).$continue_debugging921,26411 -'$continue_debugging_goal'(yes,G) :- !,$continue_debugging_goal924,26522 -'$continue_debugging_goal'(yes,G) :- !,$continue_debugging_goal924,26522 -'$continue_debugging_goal'(yes,G) :- !,$continue_debugging_goal924,26522 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal927,26608 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal927,26608 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal927,26608 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal931,26765 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal931,26765 -'$continue_debugging_goal'(_,G) :-$continue_debugging_goal931,26765 -'$execute_dgoal'('$execute_nonstop'(G,M)) :-$execute_dgoal934,26829 -'$execute_dgoal'('$execute_nonstop'(G,M)) :-$execute_dgoal934,26829 -'$execute_dgoal'('$execute_nonstop'(G,M)) :-$execute_dgoal'('$execute_nonstop934,26829 -'$execute_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_dgoal936,26901 -'$execute_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_dgoal936,26901 -'$execute_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_dgoal'('$execute_clause936,26901 -'$execute_creep_dgoal'('$execute_nonstop'(G,M)) :-$execute_creep_dgoal939,26988 -'$execute_creep_dgoal'('$execute_nonstop'(G,M)) :-$execute_creep_dgoal939,26988 -'$execute_creep_dgoal'('$execute_nonstop'(G,M)) :-$execute_creep_dgoal'('$execute_nonstop939,26988 -'$execute_creep_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_creep_dgoal942,27076 -'$execute_creep_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_creep_dgoal942,27076 -'$execute_creep_dgoal'('$execute_clause'(G, M, R, CP)) :-$execute_creep_dgoal'('$execute_clause942,27076 -'$show_ancestors'(HowMany) :-$show_ancestors946,27179 -'$show_ancestors'(HowMany) :-$show_ancestors946,27179 -'$show_ancestors'(HowMany) :-$show_ancestors946,27179 -'$show_ancestors'([],_).$show_ancestors957,27386 -'$show_ancestors'([],_)./p,predicate,predicate definition957,27386 -'$show_ancestors'([],_).$show_ancestors957,27386 -'$show_ancestors'([_|_],0) :- !.$show_ancestors958,27411 -'$show_ancestors'([_|_],0) :- !.$show_ancestors958,27411 -'$show_ancestors'([_|_],0) :- !.$show_ancestors958,27411 -'$show_ancestors'([info(L,M,G,Retry,Det,_Exited)|History],HowMany) :-$show_ancestors959,27444 -'$show_ancestors'([info(L,M,G,Retry,Det,_Exited)|History],HowMany) :-$show_ancestors959,27444 -'$show_ancestors'([info(L,M,G,Retry,Det,_Exited)|History],HowMany) :-$show_ancestors959,27444 -'$show_ancestor'(_,_,_,_,Det,HowMany,HowMany) :-$show_ancestor964,27656 -'$show_ancestor'(_,_,_,_,Det,HowMany,HowMany) :-$show_ancestor964,27656 -'$show_ancestor'(_,_,_,_,Det,HowMany,HowMany) :-$show_ancestor964,27656 -'$show_ancestor'(GoalNumber, M, G, Retry, _, HowMany, HowMany1) :-$show_ancestor967,27738 -'$show_ancestor'(GoalNumber, M, G, Retry, _, HowMany, HowMany1) :-$show_ancestor967,27738 -'$show_ancestor'(GoalNumber, M, G, Retry, _, HowMany, HowMany1) :-$show_ancestor967,27738 -'$show_ancestor'(GoalNumber, M, G, _, _, HowMany, HowMany1) :-$show_ancestor971,27906 -'$show_ancestor'(GoalNumber, M, G, _, _, HowMany, HowMany1) :-$show_ancestor971,27906 -'$show_ancestor'(GoalNumber, M, G, _, _, HowMany, HowMany1) :-$show_ancestor971,27906 -'$ilgl'(C) :-$ilgl992,28965 -'$ilgl'(C) :-$ilgl992,28965 -'$ilgl'(C) :-$ilgl992,28965 -'$skipeol'(10) :- !.$skipeol997,29064 -'$skipeol'(10) :- !.$skipeol997,29064 -'$skipeol'(10) :- !.$skipeol997,29064 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C)./p,predicate,predicate definition998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol998,29085 -'$skipeol'(_) :- get_code( debugger_input,C), '$skipeol'(C).$skipeol'(_) :- get_code( debugger_input,C), '$skipeol998,29085 -'$scan_number'(_, _, Nb) :-$scan_number1000,29147 -'$scan_number'(_, _, Nb) :-$scan_number1000,29147 -'$scan_number'(_, _, Nb) :-$scan_number1000,29147 -'$scan_number'(_, CallId, CallId).$scan_number1003,29233 -'$scan_number'(_, CallId, CallId)./p,predicate,predicate definition1003,29233 -'$scan_number'(_, CallId, CallId).$scan_number1003,29233 -'$scan_number2'(10, _) :- !, fail.$scan_number21005,29269 -'$scan_number2'(10, _) :- !, fail.$scan_number21005,29269 -'$scan_number2'(10, _) :- !, fail.$scan_number21005,29269 -'$scan_number2'(0' , Nb) :- !, % '$scan_number21006,29304 -'$scan_number2'(0' , Nb) :- !, % '$scan_number21006,29304 -'$scan_number2'(0' , Nb) :- !, % '$scan_number21006,29304 -'$scan_number2'(0' , Nb) :- !, %'$scan_number21009,29395 -'$scan_number2'(0' , Nb) :- !, %'$scan_number21009,29395 -'$scan_number2'(0' , Nb) :- !, %'$scan_number21009,29395 -'$scan_number2'(C, Nb) :-$scan_number21012,29484 -'$scan_number2'(C, Nb) :-$scan_number21012,29484 -'$scan_number2'(C, Nb) :-$scan_number21012,29484 -'$scan_number3'(10, Nb, Nb) :- !, Nb > 0.$scan_number31015,29539 -'$scan_number3'(10, Nb, Nb) :- !, Nb > 0.$scan_number31015,29539 -'$scan_number3'(10, Nb, Nb) :- !, Nb > 0.$scan_number31015,29539 -'$scan_number3'( C, Nb0, Nb) :-$scan_number31016,29582 -'$scan_number3'( C, Nb0, Nb) :-$scan_number31016,29582 -'$scan_number3'( C, Nb0, Nb) :-$scan_number31016,29582 -'$print_deb_sterm'(G) :-$print_deb_sterm1022,29724 -'$print_deb_sterm'(G) :-$print_deb_sterm1022,29724 -'$print_deb_sterm'(G) :-$print_deb_sterm1022,29724 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94)./p,predicate,predicate definition1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm1027,29875 -'$print_deb_sterm'(_) :- '$skipeol'(94).$print_deb_sterm'(_) :- '$skipeol1027,29875 -'$get_sterm_list'(L) :-$get_sterm_list1029,29917 -'$get_sterm_list'(L) :-$get_sterm_list1029,29917 -'$get_sterm_list'(L) :-$get_sterm_list1029,29917 -'$deb_inc_in_sterm_oldie'(94,L0,CN) :- !,$deb_inc_in_sterm_oldie1034,30046 -'$deb_inc_in_sterm_oldie'(94,L0,CN) :- !,$deb_inc_in_sterm_oldie1034,30046 -'$deb_inc_in_sterm_oldie'(94,L0,CN) :- !,$deb_inc_in_sterm_oldie1034,30046 -'$deb_inc_in_sterm_oldie'(C,[],C).$deb_inc_in_sterm_oldie1038,30179 -'$deb_inc_in_sterm_oldie'(C,[],C)./p,predicate,predicate definition1038,30179 -'$deb_inc_in_sterm_oldie'(C,[],C).$deb_inc_in_sterm_oldie1038,30179 -'$get_sterm_list'(L0,C,N,L) :-$get_sterm_list1040,30215 -'$get_sterm_list'(L0,C,N,L) :-$get_sterm_list1040,30215 -'$get_sterm_list'(L0,C,N,L) :-$get_sterm_list1040,30215 -'$deb_get_sterm_in_g'([],G,G).$deb_get_sterm_in_g1047,30498 -'$deb_get_sterm_in_g'([],G,G)./p,predicate,predicate definition1047,30498 -'$deb_get_sterm_in_g'([],G,G).$deb_get_sterm_in_g1047,30498 -'$deb_get_sterm_in_g'([H|T],G,A) :-$deb_get_sterm_in_g1048,30529 -'$deb_get_sterm_in_g'([H|T],G,A) :-$deb_get_sterm_in_g1048,30529 -'$deb_get_sterm_in_g'([H|T],G,A) :-$deb_get_sterm_in_g1048,30529 -'$get_deb_depth'(10,10) :- !. % default depth is 0$get_deb_depth1057,30709 -'$get_deb_depth'(10,10) :- !. % default depth is 0$get_deb_depth1057,30709 -'$get_deb_depth'(10,10) :- !. % default depth is 0$get_deb_depth1057,30709 -'$get_deb_depth'(C,XF) :-$get_deb_depth1058,30761 -'$get_deb_depth'(C,XF) :-$get_deb_depth1058,30761 -'$get_deb_depth'(C,XF) :-$get_deb_depth1058,30761 -'$get_deb_depth_char_by_char'(10,X,X) :- !.$get_deb_depth_char_by_char1061,30828 -'$get_deb_depth_char_by_char'(10,X,X) :- !.$get_deb_depth_char_by_char1061,30828 -'$get_deb_depth_char_by_char'(10,X,X) :- !.$get_deb_depth_char_by_char1061,30828 -'$get_deb_depth_char_by_char'(C,X0,XF) :-$get_deb_depth_char_by_char1062,30872 -'$get_deb_depth_char_by_char'(C,X0,XF) :-$get_deb_depth_char_by_char1062,30872 -'$get_deb_depth_char_by_char'(C,X0,XF) :-$get_deb_depth_char_by_char1062,30872 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C)./p,predicate,predicate definition1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char1068,31059 -'$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol'(C).$get_deb_depth_char_by_char'(C,_,10) :- '$skipeol1068,31059 -'$set_deb_depth'(D) :-$set_deb_depth1070,31116 -'$set_deb_depth'(D) :-$set_deb_depth1070,31116 -'$set_deb_depth'(D) :-$set_deb_depth1070,31116 -'$delete_if_there'([], _, TN, [TN]).$delete_if_there1075,31271 -'$delete_if_there'([], _, TN, [TN])./p,predicate,predicate definition1075,31271 -'$delete_if_there'([], _, TN, [TN]).$delete_if_there1075,31271 -'$delete_if_there'([T|L], T, TN, [TN|L]).$delete_if_there1076,31308 -'$delete_if_there'([T|L], T, TN, [TN|L])./p,predicate,predicate definition1076,31308 -'$delete_if_there'([T|L], T, TN, [TN|L]).$delete_if_there1076,31308 -'$delete_if_there'([Q|L], T, TN, [Q|LN]) :-$delete_if_there1077,31350 -'$delete_if_there'([Q|L], T, TN, [Q|LN]) :-$delete_if_there1077,31350 -'$delete_if_there'([Q|L], T, TN, [Q|LN]) :-$delete_if_there1077,31350 -'$debugger_deterministic_goal'(G) :-$debugger_deterministic_goal1080,31430 -'$debugger_deterministic_goal'(G) :-$debugger_deterministic_goal1080,31430 -'$debugger_deterministic_goal'(G) :-$debugger_deterministic_goal1080,31430 -'$cps'([CP|CPs]) :-$cps1090,31774 -'$cps'([CP|CPs]) :-$cps1090,31774 -'$cps'([CP|CPs]) :-$cps1090,31774 -'$cps'([]).$cps1094,31881 -'$cps'([])./p,predicate,predicate definition1094,31881 -'$cps'([]).$cps1094,31881 -'$debugger_skip_spycall'([CP|CPs],CPs1) :-$debugger_skip_spycall1097,31895 -'$debugger_skip_spycall'([CP|CPs],CPs1) :-$debugger_skip_spycall1097,31895 -'$debugger_skip_spycall'([CP|CPs],CPs1) :-$debugger_skip_spycall1097,31895 -'$debugger_skip_spycall'(CPs,CPs).$debugger_skip_spycall1100,32036 -'$debugger_skip_spycall'(CPs,CPs)./p,predicate,predicate definition1100,32036 -'$debugger_skip_spycall'(CPs,CPs).$debugger_skip_spycall1100,32036 -'$debugger_skip_traces'([CP|CPs],CPs1) :-$debugger_skip_traces1102,32072 -'$debugger_skip_traces'([CP|CPs],CPs1) :-$debugger_skip_traces1102,32072 -'$debugger_skip_traces'([CP|CPs],CPs1) :-$debugger_skip_traces1102,32072 -'$debugger_skip_traces'(CPs,CPs).$debugger_skip_traces1105,32209 -'$debugger_skip_traces'(CPs,CPs)./p,predicate,predicate definition1105,32209 -'$debugger_skip_traces'(CPs,CPs).$debugger_skip_traces1105,32209 -'$debugger_skip_loop_spy2'([CP|CPs],CPs1) :-$debugger_skip_loop_spy21107,32244 -'$debugger_skip_loop_spy2'([CP|CPs],CPs1) :-$debugger_skip_loop_spy21107,32244 -'$debugger_skip_loop_spy2'([CP|CPs],CPs1) :-$debugger_skip_loop_spy21107,32244 -'$debugger_skip_loop_spy2'(CPs,CPs).$debugger_skip_loop_spy21110,32391 -'$debugger_skip_loop_spy2'(CPs,CPs)./p,predicate,predicate definition1110,32391 -'$debugger_skip_loop_spy2'(CPs,CPs).$debugger_skip_loop_spy21110,32391 -'$debugger_expand_meta_call'( G, VL, M:G2 ) :-$debugger_expand_meta_call1112,32429 -'$debugger_expand_meta_call'( G, VL, M:G2 ) :-$debugger_expand_meta_call1112,32429 -'$debugger_expand_meta_call'( G, VL, M:G2 ) :-$debugger_expand_meta_call1112,32429 -'$debugger_process_meta_arguments'(G, M, G1) :-$debugger_process_meta_arguments1122,32670 -'$debugger_process_meta_arguments'(G, M, G1) :-$debugger_process_meta_arguments1122,32670 -'$debugger_process_meta_arguments'(G, M, G1) :-$debugger_process_meta_arguments1122,32670 -'$debugger_process_meta_arguments'(G, _M, G).$debugger_process_meta_arguments1130,32932 -'$debugger_process_meta_arguments'(G, _M, G)./p,predicate,predicate definition1130,32932 -'$debugger_process_meta_arguments'(G, _M, G).$debugger_process_meta_arguments1130,32932 -'$ldebugger_process_meta_args'([], _, [], []).$ldebugger_process_meta_args1132,32979 -'$ldebugger_process_meta_args'([], _, [], [])./p,predicate,predicate definition1132,32979 -'$ldebugger_process_meta_args'([], _, [], []).$ldebugger_process_meta_args1132,32979 -'$ldebugger_process_meta_args'([G|BGs], M, [N|BMs], ['$spy'([M1|G1])|BG1s]) :-$ldebugger_process_meta_args1133,33026 -'$ldebugger_process_meta_args'([G|BGs], M, [N|BMs], ['$spy'([M1|G1])|BG1s]) :-$ldebugger_process_meta_args1133,33026 -'$ldebugger_process_meta_args'([G|BGs], M, [N|BMs], ['$spy'([M1|G1])|BG1s]) :-$ldebugger_process_meta_args'([G|BGs], M, [N|BMs], ['$spy1133,33026 -'$ldebugger_process_meta_args'([G|BGs], M, [_|BMs], [G|BG1s]) :-$ldebugger_process_meta_args1141,33268 -'$ldebugger_process_meta_args'([G|BGs], M, [_|BMs], [G|BG1s]) :-$ldebugger_process_meta_args1141,33268 -'$ldebugger_process_meta_args'([G|BGs], M, [_|BMs], [G|BG1s]) :-$ldebugger_process_meta_args1141,33268 -'$trace_call'(G1,M1) :-$trace_call1144,33386 -'$trace_call'(G1,M1) :-$trace_call1144,33386 -'$trace_call'(G1,M1) :-$trace_call1144,33386 -'$trace_call'(G1,M1, A1) :-$trace_call1146,33444 -'$trace_call'(G1,M1, A1) :-$trace_call1146,33444 -'$trace_call'(G1,M1, A1) :-$trace_call1146,33444 -'$trace_call'(G1,M1, A1, A2) :-$trace_call1148,33510 -'$trace_call'(G1,M1, A1, A2) :-$trace_call1148,33510 -'$trace_call'(G1,M1, A1, A2) :-$trace_call1148,33510 -'$trace_call'(G1,M1, A1, A2, A3) :-$trace_call1150,33584 -'$trace_call'(G1,M1, A1, A2, A3) :-$trace_call1150,33584 -'$trace_call'(G1,M1, A1, A2, A3) :-$trace_call1150,33584 -'$trace_call'(G1,M1, A1, A2, A3, A4) :-$trace_call1152,33666 -'$trace_call'(G1,M1, A1, A2, A3, A4) :-$trace_call1152,33666 -'$trace_call'(G1,M1, A1, A2, A3, A4) :-$trace_call1152,33666 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5) :-$trace_call1154,33756 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5) :-$trace_call1154,33756 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5) :-$trace_call1154,33756 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6 ) :-$trace_call1156,33854 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6 ) :-$trace_call1156,33854 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6 ) :-$trace_call1156,33854 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7) :-$trace_call1158,33962 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7) :-$trace_call1158,33962 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7) :-$trace_call1158,33962 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8) :-$trace_call1160,34076 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8) :-$trace_call1160,34076 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8) :-$trace_call1160,34076 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9) :-$trace_call1162,34198 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9) :-$trace_call1162,34198 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9) :-$trace_call1162,34198 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) :-$trace_call1164,34328 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) :-$trace_call1164,34328 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) :-$trace_call1164,34328 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) :-$trace_call1166,34468 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) :-$trace_call1166,34468 -'$trace_call'(G1,M1, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) :-$trace_call1166,34468 -'$trace_call'(G1,M1, EA1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) :-$trace_call1168,34618 -'$trace_call'(G1,M1, EA1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) :-$trace_call1168,34618 -'$trace_call'(G1,M1, EA1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) :-$trace_call1168,34618 - -pl/depth_bound.yap,307 -system_module( '$_depth_bound', [depth_bound_call/2], []).system_module28,778 -system_module( '$_depth_bound', [depth_bound_call/2], []).system_module28,778 -depth_bound_call(A,D) :-depth_bound_call32,905 -depth_bound_call(A,D) :-depth_bound_call32,905 -depth_bound_call(A,D) :-depth_bound_call32,905 - -pl/dialect.yap,1382 -prolog:expects_dialect(yap) :- !,expects_dialect16,354 -prolog:expects_dialect(yap) :- !,expects_dialect16,354 -prolog:expects_dialect(Dialect) :-expects_dialect19,439 -prolog:expects_dialect(Dialect) :-expects_dialect19,439 -check_dialect(Dialect) :-check_dialect29,713 -check_dialect(Dialect) :-check_dialect29,713 -check_dialect(Dialect) :-check_dialect29,713 -check_dialect(Dialect) :-check_dialect32,821 -check_dialect(Dialect) :-check_dialect32,821 -check_dialect(Dialect) :-check_dialect32,821 -check_dialect(Dialect) :-check_dialect35,933 -check_dialect(Dialect) :-check_dialect35,933 -check_dialect(Dialect) :-check_dialect35,933 -check_dialect(Dialect) :-check_dialect37,1004 -check_dialect(Dialect) :-check_dialect37,1004 -check_dialect(Dialect) :-check_dialect37,1004 -exists_source(Source, Path) :-exists_source56,1523 -exists_source(Source, Path) :-exists_source56,1523 -exists_source(Source, Path) :-exists_source56,1523 -source_exports(Source, Export) :-source_exports71,1950 -source_exports(Source, Export) :-source_exports71,1950 -source_exports(Source, Export) :-source_exports71,1950 -open_source(File, In) :-open_source83,2249 -open_source(File, In) :-open_source83,2249 -open_source(File, In) :-open_source83,2249 -exports(In, Exports) :-exports91,2380 -exports(In, Exports) :-exports91,2380 -exports(In, Exports) :-exports91,2380 - -pl/directives.yap,17847 -'$all_directives'(_:G1) :- !,$all_directives50,1409 -'$all_directives'(_:G1) :- !,$all_directives50,1409 -'$all_directives'(_:G1) :- !,$all_directives50,1409 -'$all_directives'((G1,G2)) :- !,$all_directives52,1463 -'$all_directives'((G1,G2)) :- !,$all_directives52,1463 -'$all_directives'((G1,G2)) :- !,$all_directives52,1463 -'$all_directives'(G) :- !,$all_directives55,1544 -'$all_directives'(G) :- !,$all_directives55,1544 -'$all_directives'(G) :- !,$all_directives55,1544 -:- multifile prolog:'$exec_directive'/5, prolog:'$directive'/1.multifile59,1634 -:- multifile prolog:'$exec_directive'/5, prolog:'$directive'/1.multifile59,1634 -'$directive'(block(_)).$directive63,1701 -'$directive'(block(_))./p,predicate,predicate definition63,1701 -'$directive'(block(_)).$directive63,1701 -'$directive'(char_conversion(_,_)).$directive64,1725 -'$directive'(char_conversion(_,_))./p,predicate,predicate definition64,1725 -'$directive'(char_conversion(_,_)).$directive64,1725 -'$directive'(compile(_)).$directive65,1761 -'$directive'(compile(_))./p,predicate,predicate definition65,1761 -'$directive'(compile(_)).$directive65,1761 -'$directive'(consult(_)).$directive66,1787 -'$directive'(consult(_))./p,predicate,predicate definition66,1787 -'$directive'(consult(_)).$directive66,1787 -'$directive'(discontiguous(_)).$directive67,1813 -'$directive'(discontiguous(_))./p,predicate,predicate definition67,1813 -'$directive'(discontiguous(_)).$directive67,1813 -'$directive'(dynamic(_)).$directive68,1845 -'$directive'(dynamic(_))./p,predicate,predicate definition68,1845 -'$directive'(dynamic(_)).$directive68,1845 -'$directive'(elif(_)).$directive69,1871 -'$directive'(elif(_))./p,predicate,predicate definition69,1871 -'$directive'(elif(_)).$directive69,1871 -'$directive'(else).$directive70,1894 -'$directive'(else)./p,predicate,predicate definition70,1894 -'$directive'(else).$directive70,1894 -'$directive'(encoding(_)).$directive71,1914 -'$directive'(encoding(_))./p,predicate,predicate definition71,1914 -'$directive'(encoding(_)).$directive71,1914 -'$directive'(endif).$directive72,1941 -'$directive'(endif)./p,predicate,predicate definition72,1941 -'$directive'(endif).$directive72,1941 -'$directive'(ensure_loaded(_)).$directive73,1962 -'$directive'(ensure_loaded(_))./p,predicate,predicate definition73,1962 -'$directive'(ensure_loaded(_)).$directive73,1962 -'$directive'(expects_dialect(_)).$directive74,1994 -'$directive'(expects_dialect(_))./p,predicate,predicate definition74,1994 -'$directive'(expects_dialect(_)).$directive74,1994 -'$directive'(if(_)).$directive75,2028 -'$directive'(if(_))./p,predicate,predicate definition75,2028 -'$directive'(if(_)).$directive75,2028 -'$directive'(include(_)).$directive76,2049 -'$directive'(include(_))./p,predicate,predicate definition76,2049 -'$directive'(include(_)).$directive76,2049 -'$directive'(initialization(_)).$directive77,2075 -'$directive'(initialization(_))./p,predicate,predicate definition77,2075 -'$directive'(initialization(_)).$directive77,2075 -'$directive'(initialization(_,_)).$directive78,2108 -'$directive'(initialization(_,_))./p,predicate,predicate definition78,2108 -'$directive'(initialization(_,_)).$directive78,2108 -'$directive'(license(_)).$directive79,2143 -'$directive'(license(_))./p,predicate,predicate definition79,2143 -'$directive'(license(_)).$directive79,2143 -'$directive'(meta_predicate(_)).$directive80,2169 -'$directive'(meta_predicate(_))./p,predicate,predicate definition80,2169 -'$directive'(meta_predicate(_)).$directive80,2169 -'$directive'(module(_,_)).$directive81,2202 -'$directive'(module(_,_))./p,predicate,predicate definition81,2202 -'$directive'(module(_,_)).$directive81,2202 -'$directive'(module(_,_,_)).$directive82,2229 -'$directive'(module(_,_,_))./p,predicate,predicate definition82,2229 -'$directive'(module(_,_,_)).$directive82,2229 -'$directive'(module_transparent(_)).$directive83,2258 -'$directive'(module_transparent(_))./p,predicate,predicate definition83,2258 -'$directive'(module_transparent(_)).$directive83,2258 -'$directive'(multifile(_)).$directive84,2295 -'$directive'(multifile(_))./p,predicate,predicate definition84,2295 -'$directive'(multifile(_)).$directive84,2295 -'$directive'(noprofile(_)).$directive85,2323 -'$directive'(noprofile(_))./p,predicate,predicate definition85,2323 -'$directive'(noprofile(_)).$directive85,2323 -'$directive'(public(_)).$directive86,2351 -'$directive'(public(_))./p,predicate,predicate definition86,2351 -'$directive'(public(_)).$directive86,2351 -'$directive'(op(_,_,_)).$directive87,2376 -'$directive'(op(_,_,_))./p,predicate,predicate definition87,2376 -'$directive'(op(_,_,_)).$directive87,2376 -'$directive'(require(_)).$directive88,2401 -'$directive'(require(_))./p,predicate,predicate definition88,2401 -'$directive'(require(_)).$directive88,2401 -'$directive'(set_prolog_flag(_,_)).$directive89,2427 -'$directive'(set_prolog_flag(_,_))./p,predicate,predicate definition89,2427 -'$directive'(set_prolog_flag(_,_)).$directive89,2427 -'$directive'(reconsult(_)).$directive90,2463 -'$directive'(reconsult(_))./p,predicate,predicate definition90,2463 -'$directive'(reconsult(_)).$directive90,2463 -'$directive'(reexport(_)).$directive91,2491 -'$directive'(reexport(_))./p,predicate,predicate definition91,2491 -'$directive'(reexport(_)).$directive91,2491 -'$directive'(reexport(_,_)).$directive92,2518 -'$directive'(reexport(_,_))./p,predicate,predicate definition92,2518 -'$directive'(reexport(_,_)).$directive92,2518 -'$directive'(predicate_options(_,_,_)).$directive93,2547 -'$directive'(predicate_options(_,_,_))./p,predicate,predicate definition93,2547 -'$directive'(predicate_options(_,_,_)).$directive93,2547 -'$directive'(thread_initialization(_)).$directive94,2587 -'$directive'(thread_initialization(_))./p,predicate,predicate definition94,2587 -'$directive'(thread_initialization(_)).$directive94,2587 -'$directive'(thread_local(_)).$directive95,2627 -'$directive'(thread_local(_))./p,predicate,predicate definition95,2627 -'$directive'(thread_local(_)).$directive95,2627 -'$directive'(uncutable(_)).$directive96,2658 -'$directive'(uncutable(_))./p,predicate,predicate definition96,2658 -'$directive'(uncutable(_)).$directive96,2658 -'$directive'(use_module(_)).$directive97,2686 -'$directive'(use_module(_))./p,predicate,predicate definition97,2686 -'$directive'(use_module(_)).$directive97,2686 -'$directive'(use_module(_,_)).$directive98,2715 -'$directive'(use_module(_,_))./p,predicate,predicate definition98,2715 -'$directive'(use_module(_,_)).$directive98,2715 -'$directive'(use_module(_,_,_)).$directive99,2746 -'$directive'(use_module(_,_,_))./p,predicate,predicate definition99,2746 -'$directive'(use_module(_,_,_)).$directive99,2746 -'$directive'(wait(_)).$directive100,2779 -'$directive'(wait(_))./p,predicate,predicate definition100,2779 -'$directive'(wait(_)).$directive100,2779 -'$exec_directives'((G1,G2), Mode, M, VL, Pos) :-$exec_directives102,2803 -'$exec_directives'((G1,G2), Mode, M, VL, Pos) :-$exec_directives102,2803 -'$exec_directives'((G1,G2), Mode, M, VL, Pos) :-$exec_directives102,2803 -'$exec_directives'(G, Mode, M, VL, Pos) :-$exec_directives106,2951 -'$exec_directives'(G, Mode, M, VL, Pos) :-$exec_directives106,2951 -'$exec_directives'(G, Mode, M, VL, Pos) :-$exec_directives106,2951 -'$exec_directive'(multifile(D), _, M, _, _) :-$exec_directive110,3040 -'$exec_directive'(multifile(D), _, M, _, _) :-$exec_directive110,3040 -'$exec_directive'(multifile(D), _, M, _, _) :-$exec_directive110,3040 -'$exec_directive'(discontiguous(D), _, M, _, _) :-$exec_directive114,3180 -'$exec_directive'(discontiguous(D), _, M, _, _) :-$exec_directive114,3180 -'$exec_directive'(discontiguous(D), _, M, _, _) :-$exec_directive114,3180 -'$exec_directive'(initialization(D), _, M, _, _) :-$exec_directive123,3370 -'$exec_directive'(initialization(D), _, M, _, _) :-$exec_directive123,3370 -'$exec_directive'(initialization(D), _, M, _, _) :-$exec_directive123,3370 -'$exec_directive'(initialization(D,OPT), _, M, _, _) :-$exec_directive125,3447 -'$exec_directive'(initialization(D,OPT), _, M, _, _) :-$exec_directive125,3447 -'$exec_directive'(initialization(D,OPT), _, M, _, _) :-$exec_directive125,3447 -'$exec_directive'(thread_initialization(D), _, M, _, _) :-$exec_directive127,3533 -'$exec_directive'(thread_initialization(D), _, M, _, _) :-$exec_directive127,3533 -'$exec_directive'(thread_initialization(D), _, M, _, _) :-$exec_directive127,3533 -'$exec_directive'(expects_dialect(D), _, _, _, _) :-$exec_directive129,3624 -'$exec_directive'(expects_dialect(D), _, _, _, _) :-$exec_directive129,3624 -'$exec_directive'(expects_dialect(D), _, _, _, _) :-$exec_directive129,3624 -'$exec_directive'(encoding(Enc), _, _, _, _) :-$exec_directive131,3701 -'$exec_directive'(encoding(Enc), _, _, _, _) :-$exec_directive131,3701 -'$exec_directive'(encoding(Enc), _, _, _, _) :-$exec_directive131,3701 -'$exec_directive'(include(F), Status, _, _, _) :-$exec_directive133,3779 -'$exec_directive'(include(F), Status, _, _, _) :-$exec_directive133,3779 -'$exec_directive'(include(F), Status, _, _, _) :-$exec_directive133,3779 -'$exec_directive'(module(N,P), Status, _, _, _) :-$exec_directive136,3896 -'$exec_directive'(module(N,P), Status, _, _, _) :-$exec_directive136,3896 -'$exec_directive'(module(N,P), Status, _, _, _) :-$exec_directive136,3896 -'$exec_directive'(module(N,P,Op), Status, _, _, _) :-$exec_directive138,3971 -'$exec_directive'(module(N,P,Op), Status, _, _, _) :-$exec_directive138,3971 -'$exec_directive'(module(N,P,Op), Status, _, _, _) :-$exec_directive138,3971 -'$exec_directive'(meta_predicate(P), _, M, _, _) :-$exec_directive140,4052 -'$exec_directive'(meta_predicate(P), _, M, _, _) :-$exec_directive140,4052 -'$exec_directive'(meta_predicate(P), _, M, _, _) :-$exec_directive140,4052 -'$exec_directive'(module_transparent(P), _, M, _, _) :-$exec_directive143,4160 -'$exec_directive'(module_transparent(P), _, M, _, _) :-$exec_directive143,4160 -'$exec_directive'(module_transparent(P), _, M, _, _) :-$exec_directive143,4160 -'$exec_directive'(noprofile(P), _, M, _, _) :-$exec_directive145,4246 -'$exec_directive'(noprofile(P), _, M, _, _) :-$exec_directive145,4246 -'$exec_directive'(noprofile(P), _, M, _, _) :-$exec_directive145,4246 -'$exec_directive'(require(Ps), _, M, _, _) :-$exec_directive147,4314 -'$exec_directive'(require(Ps), _, M, _, _) :-$exec_directive147,4314 -'$exec_directive'(require(Ps), _, M, _, _) :-$exec_directive147,4314 -'$exec_directive'(dynamic(P), _, M, _, _) :-$exec_directive149,4380 -'$exec_directive'(dynamic(P), _, M, _, _) :-$exec_directive149,4380 -'$exec_directive'(dynamic(P), _, M, _, _) :-$exec_directive149,4380 -'$exec_directive'(thread_local(P), _, M, _, _) :-$exec_directive151,4444 -'$exec_directive'(thread_local(P), _, M, _, _) :-$exec_directive151,4444 -'$exec_directive'(thread_local(P), _, M, _, _) :-$exec_directive151,4444 -'$exec_directive'(op(P,OPSEC,OP), _, _, _, _) :-$exec_directive153,4518 -'$exec_directive'(op(P,OPSEC,OP), _, _, _, _) :-$exec_directive153,4518 -'$exec_directive'(op(P,OPSEC,OP), _, _, _, _) :-$exec_directive153,4518 -'$exec_directive'(set_prolog_flag(F,V), _, _, _, _) :-$exec_directive156,4609 -'$exec_directive'(set_prolog_flag(F,V), _, _, _, _) :-$exec_directive156,4609 -'$exec_directive'(set_prolog_flag(F,V), _, _, _, _) :-$exec_directive156,4609 -'$exec_directive'(ensure_loaded(Fs), _, M, _, _) :-$exec_directive158,4687 -'$exec_directive'(ensure_loaded(Fs), _, M, _, _) :-$exec_directive158,4687 -'$exec_directive'(ensure_loaded(Fs), _, M, _, _) :-$exec_directive158,4687 -'$exec_directive'(char_conversion(IN,OUT), _, _, _, _) :-$exec_directive160,4795 -'$exec_directive'(char_conversion(IN,OUT), _, _, _, _) :-$exec_directive160,4795 -'$exec_directive'(char_conversion(IN,OUT), _, _, _, _) :-$exec_directive160,4795 -'$exec_directive'(public(P), _, M, _, _) :-$exec_directive162,4879 -'$exec_directive'(public(P), _, M, _, _) :-$exec_directive162,4879 -'$exec_directive'(public(P), _, M, _, _) :-$exec_directive162,4879 -'$exec_directive'(compile(Fs), _, M, _, _) :-$exec_directive164,4941 -'$exec_directive'(compile(Fs), _, M, _, _) :-$exec_directive164,4941 -'$exec_directive'(compile(Fs), _, M, _, _) :-$exec_directive164,4941 -'$exec_directive'(reconsult(Fs), _, M, _, _) :-$exec_directive166,5026 -'$exec_directive'(reconsult(Fs), _, M, _, _) :-$exec_directive166,5026 -'$exec_directive'(reconsult(Fs), _, M, _, _) :-$exec_directive166,5026 -'$exec_directive'(consult(Fs), _, M, _, _) :-$exec_directive168,5115 -'$exec_directive'(consult(Fs), _, M, _, _) :-$exec_directive168,5115 -'$exec_directive'(consult(Fs), _, M, _, _) :-$exec_directive168,5115 -'$exec_directive'(use_module(F), _, M, _, _) :-$exec_directive170,5216 -'$exec_directive'(use_module(F), _, M, _, _) :-$exec_directive170,5216 -'$exec_directive'(use_module(F), _, M, _, _) :-$exec_directive170,5216 -'$exec_directive'(reexport(F), _, M, _, _) :-$exec_directive172,5282 -'$exec_directive'(reexport(F), _, M, _, _) :-$exec_directive172,5282 -'$exec_directive'(reexport(F), _, M, _, _) :-$exec_directive172,5282 -'$exec_directive'(reexport(F,Spec), _, M, _, _) :-$exec_directive174,5431 -'$exec_directive'(reexport(F,Spec), _, M, _, _) :-$exec_directive174,5431 -'$exec_directive'(reexport(F,Spec), _, M, _, _) :-$exec_directive174,5431 -'$exec_directive'(use_module(F, Is), _, M, _, _) :-$exec_directive176,5603 -'$exec_directive'(use_module(F, Is), _, M, _, _) :-$exec_directive176,5603 -'$exec_directive'(use_module(F, Is), _, M, _, _) :-$exec_directive176,5603 -'$exec_directive'(use_module(Mod,F,Is), _, _, _, _) :-$exec_directive178,5677 -'$exec_directive'(use_module(Mod,F,Is), _, _, _, _) :-$exec_directive178,5677 -'$exec_directive'(use_module(Mod,F,Is), _, _, _, _) :-$exec_directive178,5677 -'$exec_directive'(block(BlockSpec), _, _, _, _) :-$exec_directive180,5758 -'$exec_directive'(block(BlockSpec), _, _, _, _) :-$exec_directive180,5758 -'$exec_directive'(block(BlockSpec), _, _, _, _) :-$exec_directive180,5758 -'$exec_directive'(wait(BlockSpec), _, _, _, _) :-$exec_directive182,5831 -'$exec_directive'(wait(BlockSpec), _, _, _, _) :-$exec_directive182,5831 -'$exec_directive'(wait(BlockSpec), _, _, _, _) :-$exec_directive182,5831 -'$exec_directive'(table(PredSpec), _, M, _, _) :-$exec_directive184,5902 -'$exec_directive'(table(PredSpec), _, M, _, _) :-$exec_directive184,5902 -'$exec_directive'(table(PredSpec), _, M, _, _) :-$exec_directive184,5902 -'$exec_directive'(uncutable(PredSpec), _, M, _, _) :-$exec_directive186,5976 -'$exec_directive'(uncutable(PredSpec), _, M, _, _) :-$exec_directive186,5976 -'$exec_directive'(uncutable(PredSpec), _, M, _, _) :-$exec_directive186,5976 -'$exec_directive'(if(Goal), Context, M, _, _) :-$exec_directive188,6058 -'$exec_directive'(if(Goal), Context, M, _, _) :-$exec_directive188,6058 -'$exec_directive'(if(Goal), Context, M, _, _) :-$exec_directive188,6058 -'$exec_directive'(else, Context, _, _, _) :-$exec_directive190,6132 -'$exec_directive'(else, Context, _, _, _) :-$exec_directive190,6132 -'$exec_directive'(else, Context, _, _, _) :-$exec_directive190,6132 -'$exec_directive'(elif(Goal), Context, M, _, _) :-$exec_directive192,6196 -'$exec_directive'(elif(Goal), Context, M, _, _) :-$exec_directive192,6196 -'$exec_directive'(elif(Goal), Context, M, _, _) :-$exec_directive192,6196 -'$exec_directive'(endif, Context, _, _, _) :-$exec_directive194,6274 -'$exec_directive'(endif, Context, _, _, _) :-$exec_directive194,6274 -'$exec_directive'(endif, Context, _, _, _) :-$exec_directive194,6274 -'$exec_directive'(license(_), Context, _, _, _) :-$exec_directive196,6340 -'$exec_directive'(license(_), Context, _, _, _) :-$exec_directive196,6340 -'$exec_directive'(license(_), Context, _, _, _) :-$exec_directive196,6340 -'$exec_directive'(predicate_options(PI, Arg, Options), Context, Module, VL, Pos) :-$exec_directive198,6408 -'$exec_directive'(predicate_options(PI, Arg, Options), Context, Module, VL, Pos) :-$exec_directive198,6408 -'$exec_directive'(predicate_options(PI, Arg, Options), Context, Module, VL, Pos) :-$exec_directive198,6408 -'$assert_list'([], _Context, _Module, _VL, _Pos).$assert_list203,6625 -'$assert_list'([], _Context, _Module, _VL, _Pos)./p,predicate,predicate definition203,6625 -'$assert_list'([], _Context, _Module, _VL, _Pos).$assert_list203,6625 -'$assert_list'([Clause|Clauses], Context, Module, VL, Pos) :-$assert_list204,6675 -'$assert_list'([Clause|Clauses], Context, Module, VL, Pos) :-$assert_list204,6675 -'$assert_list'([Clause|Clauses], Context, Module, VL, Pos) :-$assert_list204,6675 -user_defined_directive(Dir,_) :-user_defined_directive212,6880 -user_defined_directive(Dir,_) :-user_defined_directive212,6880 -user_defined_directive(Dir,_) :-user_defined_directive212,6880 -user_defined_directive(Dir,Action) :-user_defined_directive214,6943 -user_defined_directive(Dir,Action) :-user_defined_directive214,6943 -user_defined_directive(Dir,Action) :-user_defined_directive214,6943 -'$thread_initialization'(M:D) :-$thread_initialization222,7224 -'$thread_initialization'(M:D) :-$thread_initialization222,7224 -'$thread_initialization'(M:D) :-$thread_initialization222,7224 -'$thread_initialization'(M:D) :-$thread_initialization226,7343 -'$thread_initialization'(M:D) :-$thread_initialization226,7343 -'$thread_initialization'(M:D) :-$thread_initialization226,7343 -'$process_directive'(D, _, M, _VL, _Pos) :-$process_directive252,8065 -'$process_directive'(D, _, M, _VL, _Pos) :-$process_directive252,8065 -'$process_directive'(D, _, M, _VL, _Pos) :-$process_directive252,8065 - -pl/eam.yap,8116 -eamtrans(A,A):- var(A),!.eamtrans22,747 -eamtrans(A,A):- var(A),!.eamtrans22,747 -eamtrans(A,A):- var(A),!.eamtrans22,747 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((A,B),(C,D)):- !, eamtrans(A,C),eamtrans(B,D).eamtrans23,773 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X is Y) ,(skip_while_var(Vars), X is Y )):- !, '$variables_in_term'(Y,[],Vars).eamtrans24,829 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =\= Y),(skip_while_var(Vars), X =\= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans25,920 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X =:= Y),(skip_while_var(Vars), X =:= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans26,1015 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X >= Y) ,(skip_while_var(Vars), X >= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans27,1110 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X > Y) ,(skip_while_var(Vars), X > Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans28,1205 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X < Y) ,(skip_while_var(Vars), X < Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans29,1300 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X =< Y) ,(skip_while_var(Vars), X =< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans30,1395 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @>= Y) ,(skip_while_var(Vars), X @>= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans31,1490 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @> Y) ,(skip_while_var(Vars), X @> Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans32,1587 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @< Y) ,(skip_while_var(Vars), X @< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans33,1684 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X @=< Y) ,(skip_while_var(Vars), X @=< Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans34,1781 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \= Y) ,(skip_while_var(Vars), X \= Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans36,1879 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans((X \== Y),(skip_while_var(Vars), X \== Y )):- !, '$variables_in_term'(X + Y,[],Vars).eamtrans37,1974 -eamtrans(B,B).eamtrans39,2070 -eamtrans(B,B).eamtrans39,2070 -eamconsult(File):- eam, eam, %fails if eam is disableeamconsult41,2086 -eamconsult(File):- eam, eam, %fails if eam is disableeamconsult41,2086 -eamconsult(File):- eam, eam, %fails if eam is disableeamconsult41,2086 - -pl/error.yap,25420 -type_error(Type, Term) :-type_error58,1720 -type_error(Type, Term) :-type_error58,1720 -type_error(Type, Term) :-type_error58,1720 -domain_error(Type, Term) :-domain_error60,1788 -domain_error(Type, Term) :-domain_error60,1788 -domain_error(Type, Term) :-domain_error60,1788 -existence_error(Type, Term) :-existence_error62,1860 -existence_error(Type, Term) :-existence_error62,1860 -existence_error(Type, Term) :-existence_error62,1860 -permission_error(Action, Type, Term) :-permission_error64,1938 -permission_error(Action, Type, Term) :-permission_error64,1938 -permission_error(Action, Type, Term) :-permission_error64,1938 -instantiation_error(_Term) :-instantiation_error66,2034 -instantiation_error(_Term) :-instantiation_error66,2034 -instantiation_error(_Term) :-instantiation_error66,2034 -representation_error(Reason) :-representation_error68,2103 -representation_error(Reason) :-representation_error68,2103 -representation_error(Reason) :-representation_error68,2103 -must_be(Type, X) :-must_be100,3477 -must_be(Type, X) :-must_be100,3477 -must_be(Type, X) :-must_be100,3477 -must_be(Type, X, Comment) :-must_be103,3525 -must_be(Type, X, Comment) :-must_be103,3525 -must_be(Type, X, Comment) :-must_be103,3525 -must_be_of_type(callable, X) :-must_be_of_type106,3591 -must_be_of_type(callable, X) :-must_be_of_type106,3591 -must_be_of_type(callable, X) :-must_be_of_type106,3591 -must_be_of_type(atom, X) :-must_be_of_type109,3647 -must_be_of_type(atom, X) :-must_be_of_type109,3647 -must_be_of_type(atom, X) :-must_be_of_type109,3647 -must_be_of_type(module, X) :-must_be_of_type112,3695 -must_be_of_type(module, X) :-must_be_of_type112,3695 -must_be_of_type(module, X) :-must_be_of_type112,3695 -must_be_of_type(predicate_indicator, X) :-must_be_of_type115,3745 -must_be_of_type(predicate_indicator, X) :-must_be_of_type115,3745 -must_be_of_type(predicate_indicator, X) :-must_be_of_type115,3745 -must_be_of_type(Type, X) :-must_be_of_type118,3823 -must_be_of_type(Type, X) :-must_be_of_type118,3823 -must_be_of_type(Type, X) :-must_be_of_type118,3823 -inline(must_be_of_type( atom, X ), is_atom(X, _) ).inline124,3910 -inline(must_be_of_type( atom, X ), is_atom(X, _) ).inline124,3910 -inline(must_be_of_type( module, X ), is_module(X, _) ).inline125,3962 -inline(must_be_of_type( module, X ), is_module(X, _) ).inline125,3962 -inline(must_be_of_type( callable, X ), is_callable(X, _) ).inline126,4018 -inline(must_be_of_type( callable, X ), is_callable(X, _) ).inline126,4018 -inline(must_be_of_type( callable, X ), is_callable(X, _) ).inline127,4078 -inline(must_be_of_type( callable, X ), is_callable(X, _) ).inline127,4078 -inline(must_be_atom( X ), is_callable(X, _) ).inline128,4138 -inline(must_be_atom( X ), is_callable(X, _) ).inline128,4138 -inline(must_be_module( X ), is_atom(X, _) ).inline129,4185 -inline(must_be_module( X ), is_atom(X, _) ).inline129,4185 -must_be_of_type(predicate_indicator, X, Comment) :-must_be_of_type131,4231 -must_be_of_type(predicate_indicator, X, Comment) :-must_be_of_type131,4231 -must_be_of_type(predicate_indicator, X, Comment) :-must_be_of_type131,4231 -must_be_of_type(callable, X, Comment) :-must_be_of_type134,4324 -must_be_of_type(callable, X, Comment) :-must_be_of_type134,4324 -must_be_of_type(callable, X, Comment) :-must_be_of_type134,4324 -must_be_of_type(Type, X, _Comment) :-must_be_of_type137,4395 -must_be_of_type(Type, X, _Comment) :-must_be_of_type137,4395 -must_be_of_type(Type, X, _Comment) :-must_be_of_type137,4395 -must_bind_to_type(Type, X) :-must_bind_to_type143,4492 -must_bind_to_type(Type, X) :-must_bind_to_type143,4492 -must_bind_to_type(Type, X) :-must_bind_to_type143,4492 -is_not(list, X) :- !,is_not157,4767 -is_not(list, X) :- !,is_not157,4767 -is_not(list, X) :- !,is_not157,4767 -is_not(list(_), X) :- !,is_not159,4811 -is_not(list(_), X) :- !,is_not159,4811 -is_not(list(_), X) :- !,is_not159,4811 -is_not(list_or_partial_list, X) :- !,is_not161,4858 -is_not(list_or_partial_list, X) :- !,is_not161,4858 -is_not(list_or_partial_list, X) :- !,is_not161,4858 -is_not(chars, X) :- !,is_not163,4918 -is_not(chars, X) :- !,is_not163,4918 -is_not(chars, X) :- !,is_not163,4918 -is_not(codes, X) :- !,is_not165,4964 -is_not(codes, X) :- !,is_not165,4964 -is_not(codes, X) :- !,is_not165,4964 -is_not(var,_X) :- !,is_not167,5010 -is_not(var,_X) :- !,is_not167,5010 -is_not(var,_X) :- !,is_not167,5010 -is_not(rational, X) :- !,is_not169,5064 -is_not(rational, X) :- !,is_not169,5064 -is_not(rational, X) :- !,is_not169,5064 -is_not(Type, X) :-is_not171,5110 -is_not(Type, X) :-is_not171,5110 -is_not(Type, X) :-is_not171,5110 -ground_type(ground).ground_type179,5264 -ground_type(ground).ground_type179,5264 -ground_type(oneof(_)).ground_type180,5285 -ground_type(oneof(_)).ground_type180,5285 -ground_type(stream).ground_type181,5308 -ground_type(stream).ground_type181,5308 -ground_type(text).ground_type182,5329 -ground_type(text).ground_type182,5329 -ground_type(string).ground_type183,5348 -ground_type(string).ground_type183,5348 -not_a_list(Type, X) :-not_a_list185,5370 -not_a_list(Type, X) :-not_a_list185,5370 -not_a_list(Type, X) :-not_a_list185,5370 -not_a_rational(X) :-not_a_rational192,5493 -not_a_rational(X) :-not_a_rational192,5493 -not_a_rational(X) :-not_a_rational192,5493 -is_of_type(Type, Term) :-is_of_type205,5755 -is_of_type(Type, Term) :-is_of_type205,5755 -is_of_type(Type, Term) :-is_of_type205,5755 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(impossible, _) :- instantiation_error(_).has_type213,5878 -has_type(any, _).has_type214,5929 -has_type(any, _).has_type214,5929 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atom, X) :- atom(X).has_type215,5947 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(atomic, X) :- atomic(X).has_type216,5979 -has_type(between(L,U), X) :- ( integer(L)has_type217,6015 -has_type(between(L,U), X) :- ( integer(L)has_type217,6015 -has_type(between(L,U), X) :- ( integer(L)has_type217,6015 -has_type(boolean, X) :- (X==true;X==false), !.has_type221,6147 -has_type(boolean, X) :- (X==true;X==false), !.has_type221,6147 -has_type(boolean, X) :- (X==true;X==false), !.has_type221,6147 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(callable, X) :- callable(X).has_type222,6197 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(chars, X) :- chars(X).has_type223,6237 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(codes, X) :- codes(X).has_type224,6271 -has_type(text, X) :- text(X).has_type225,6305 -has_type(text, X) :- text(X).has_type225,6305 -has_type(text, X) :- text(X).has_type225,6305 -has_type(text, X) :- text(X).has_type225,6305 -has_type(text, X) :- text(X).has_type225,6305 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(compound, X) :- compound(X).has_type226,6337 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(constant, X) :- atomic(X).has_type227,6377 -has_type(float, X) :- float(X).has_type228,6415 -has_type(float, X) :- float(X).has_type228,6415 -has_type(float, X) :- float(X).has_type228,6415 -has_type(float, X) :- float(X).has_type228,6415 -has_type(float, X) :- float(X).has_type228,6415 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(ground, X) :- ground(X).has_type229,6449 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(integer, X) :- integer(X).has_type230,6485 -has_type(nonneg, X) :- integer(X), X >= 0.has_type231,6523 -has_type(nonneg, X) :- integer(X), X >= 0.has_type231,6523 -has_type(nonneg, X) :- integer(X), X >= 0.has_type231,6523 -has_type(positive_integer, X) :- integer(X), X > 0.has_type232,6568 -has_type(positive_integer, X) :- integer(X), X > 0.has_type232,6568 -has_type(positive_integer, X) :- integer(X), X > 0.has_type232,6568 -has_type(negative_integer, X) :- integer(X), X < 0.has_type233,6622 -has_type(negative_integer, X) :- integer(X), X < 0.has_type233,6622 -has_type(negative_integer, X) :- integer(X), X < 0.has_type233,6622 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(nonvar, X) :- nonvar(X).has_type234,6676 -has_type(number, X) :- number(X).has_type235,6712 -has_type(number, X) :- number(X).has_type235,6712 -has_type(number, X) :- number(X).has_type235,6712 -has_type(number, X) :- number(X).has_type235,6712 -has_type(number, X) :- number(X).has_type235,6712 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).has_type236,6748 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(proper_list, X) :- is_list(X).has_type237,6809 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list, X) :- is_list(X).has_type238,6850 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(list_or_partial_list, X) :- is_list_or_partial_list(X).has_type239,6887 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(symbol, X) :- atom(X).has_type240,6953 -has_type(var, X) :- var(X).has_type241,6987 -has_type(var, X) :- var(X).has_type241,6987 -has_type(var, X) :- var(X).has_type241,6987 -has_type(var, X) :- var(X).has_type241,6987 -has_type(var, X) :- var(X).has_type241,6987 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(rational, X) :- rational(X).has_type242,7017 -has_type(string, X) :- string(X).has_type243,7057 -has_type(string, X) :- string(X).has_type243,7057 -has_type(string, X) :- string(X).has_type243,7057 -has_type(string, X) :- string(X).has_type243,7057 -has_type(string, X) :- string(X).has_type243,7057 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(stream, X) :- is_stream(X).has_type244,7093 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -has_type(list(Type), X) :- is_list(X), element_types(X, Type).has_type245,7132 -may_bind_to_type(_, X ) :- var(X), !.may_bind_to_type251,7303 -may_bind_to_type(_, X ) :- var(X), !.may_bind_to_type251,7303 -may_bind_to_type(_, X ) :- var(X), !.may_bind_to_type251,7303 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(impossible, _) :- instantiation_error(_).may_bind_to_type252,7341 -may_bind_to_type(any, _).may_bind_to_type253,7400 -may_bind_to_type(any, _).may_bind_to_type253,7400 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atom, X) :- atom(X).may_bind_to_type254,7426 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(atomic, X) :- atomic(X).may_bind_to_type255,7466 -may_bind_to_type(between(L,U), X) :- ( integer(L)may_bind_to_type256,7510 -may_bind_to_type(between(L,U), X) :- ( integer(L)may_bind_to_type256,7510 -may_bind_to_type(between(L,U), X) :- ( integer(L)may_bind_to_type256,7510 -may_bind_to_type(boolean, X) :- (X==true;X==false), !.may_bind_to_type260,7650 -may_bind_to_type(boolean, X) :- (X==true;X==false), !.may_bind_to_type260,7650 -may_bind_to_type(boolean, X) :- (X==true;X==false), !.may_bind_to_type260,7650 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(callable, X) :- callable(X).may_bind_to_type261,7708 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(chars, X) :- chars(X).may_bind_to_type262,7756 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(codes, X) :- codes(X).may_bind_to_type263,7798 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(text, X) :- text(X).may_bind_to_type264,7840 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(compound, X) :- compound(X).may_bind_to_type265,7880 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(constant, X) :- atomic(X).may_bind_to_type266,7928 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(float, X) :- float(X).may_bind_to_type267,7974 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(ground, X) :- ground(X).may_bind_to_type268,8016 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(integer, X) :- integer(X).may_bind_to_type269,8060 -may_bind_to_type(nonneg, X) :- integer(X), X >= 0.may_bind_to_type270,8106 -may_bind_to_type(nonneg, X) :- integer(X), X >= 0.may_bind_to_type270,8106 -may_bind_to_type(nonneg, X) :- integer(X), X >= 0.may_bind_to_type270,8106 -may_bind_to_type(positive_integer, X) :- integer(X), X > 0.may_bind_to_type271,8159 -may_bind_to_type(positive_integer, X) :- integer(X), X > 0.may_bind_to_type271,8159 -may_bind_to_type(positive_integer, X) :- integer(X), X > 0.may_bind_to_type271,8159 -may_bind_to_type(negative_integer, X) :- integer(X), X < 0.may_bind_to_type272,8221 -may_bind_to_type(negative_integer, X) :- integer(X), X < 0.may_bind_to_type272,8221 -may_bind_to_type(negative_integer, X) :- integer(X), X < 0.may_bind_to_type272,8221 -may_bind_to_type(predicate_indicator, X) :-may_bind_to_type273,8283 -may_bind_to_type(predicate_indicator, X) :-may_bind_to_type273,8283 -may_bind_to_type(predicate_indicator, X) :-may_bind_to_type273,8283 -may_bind_to_type(nonvar, _X).may_bind_to_type292,8583 -may_bind_to_type(nonvar, _X).may_bind_to_type292,8583 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(number, X) :- number(X).may_bind_to_type293,8613 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(oneof(L), X) :- ground(X), lists:memberchk(X, L).may_bind_to_type294,8657 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(proper_list, X) :- is_list(X).may_bind_to_type295,8726 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list, X) :- is_list(X).may_bind_to_type296,8775 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(list_or_partial_list, X) :- is_list_or_partial_list(X).may_bind_to_type297,8820 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(symbol, X) :- atom(X).may_bind_to_type298,8894 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(var, X) :- var(X).may_bind_to_type299,8936 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(rational, X) :- rational(X).may_bind_to_type300,8974 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(string, X) :- string(X).may_bind_to_type301,9022 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(stream, X) :- is_stream(X).may_bind_to_type302,9066 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -may_bind_to_type(list(Type), X) :- is_list(X), element_types(X, Type).may_bind_to_type303,9113 -chars(0) :- !, fail.chars305,9187 -chars(0) :- !, fail.chars305,9187 -chars(0) :- !, fail.chars305,9187 -chars([]).chars306,9208 -chars([]).chars306,9208 -chars([H|T]) :-chars307,9219 -chars([H|T]) :-chars307,9219 -chars([H|T]) :-chars307,9219 -codes(x) :- !, fail.codes311,9276 -codes(x) :- !, fail.codes311,9276 -codes(x) :- !, fail.codes311,9276 -codes([]).codes312,9297 -codes([]).codes312,9297 -codes([H|T]) :-codes313,9308 -codes([H|T]) :-codes313,9308 -codes([H|T]) :-codes313,9308 -text(X) :-text317,9374 -text(X) :-text317,9374 -text(X) :-text317,9374 -element_types([], _).element_types324,9449 -element_types([], _).element_types324,9449 -element_types([H|T], Type) :-element_types325,9471 -element_types([H|T], Type) :-element_types325,9471 -element_types([H|T], Type) :-element_types325,9471 -is_list_or_partial_list(L0) :-is_list_or_partial_list329,9546 -is_list_or_partial_list(L0) :-is_list_or_partial_list329,9546 -is_list_or_partial_list(L0) :-is_list_or_partial_list329,9546 -must_be_instantiated(X) :-must_be_instantiated333,9633 -must_be_instantiated(X) :-must_be_instantiated333,9633 -must_be_instantiated(X) :-must_be_instantiated333,9633 -must_be_instantiated(X, Comment) :-must_be_instantiated336,9707 -must_be_instantiated(X, Comment) :-must_be_instantiated336,9707 -must_be_instantiated(X, Comment) :-must_be_instantiated336,9707 - -pl/errors.yap,2828 -system_error(Type,Goal) :-system_error61,1829 -system_error(Type,Goal) :-system_error61,1829 -system_error(Type,Goal) :-system_error61,1829 -'$do_error'(Type,Goal) :-$do_error65,1886 -'$do_error'(Type,Goal) :-$do_error65,1886 -'$do_error'(Type,Goal) :-$do_error65,1886 -system_error(Type,Goal,Culprit) :-system_error84,2259 -system_error(Type,Goal,Culprit) :-system_error84,2259 -system_error(Type,Goal,Culprit) :-system_error84,2259 -'$do_pi_error'(type_error(callable,Name/0),Message) :- !,$do_pi_error93,2467 -'$do_pi_error'(type_error(callable,Name/0),Message) :- !,$do_pi_error93,2467 -'$do_pi_error'(type_error(callable,Name/0),Message) :- !,$do_pi_error93,2467 -'$do_pi_error'(Error,Message) :- !,$do_pi_error95,2574 -'$do_pi_error'(Error,Message) :- !,$do_pi_error95,2574 -'$do_pi_error'(Error,Message) :- !,$do_pi_error95,2574 -'$Error'(E) :-$Error98,2640 -'$Error'(E) :-$Error98,2640 -'$Error'(E) :-$Error98,2640 -'$LoopError'(_, _) :-$LoopError101,2678 -'$LoopError'(_, _) :-$LoopError101,2678 -'$LoopError'(_, _) :-$LoopError101,2678 -'$LoopError'(Error, Level) :- !,$LoopError105,2762 -'$LoopError'(Error, Level) :- !,$LoopError105,2762 -'$LoopError'(Error, Level) :- !,$LoopError105,2762 -'$LoopError'(_, _) :-$LoopError108,2835 -'$LoopError'(_, _) :-$LoopError108,2835 -'$LoopError'(_, _) :-$LoopError108,2835 -'$process_error'('$forward'(Msg), _) :-$process_error113,2897 -'$process_error'('$forward'(Msg), _) :-$process_error113,2897 -'$process_error'('$forward'(Msg), _) :-$process_error'('$forward113,2897 -'$process_error'(abort, Level) :-$process_error116,2968 -'$process_error'(abort, Level) :-$process_error116,2968 -'$process_error'(abort, Level) :-$process_error116,2968 -'$process_error'(error(thread_cancel(_Id), _G),top) :-$process_error133,3256 -'$process_error'(error(thread_cancel(_Id), _G),top) :-$process_error133,3256 -'$process_error'(error(thread_cancel(_Id), _G),top) :-$process_error133,3256 -'$process_error'(error(thread_cancel(Id), G), _) :-$process_error135,3315 -'$process_error'(error(thread_cancel(Id), G), _) :-$process_error135,3315 -'$process_error'(error(thread_cancel(Id), G), _) :-$process_error135,3315 -'$process_error'(error(permission_error(module,redefined,A),B), Level) :-$process_error138,3415 -'$process_error'(error(permission_error(module,redefined,A),B), Level) :-$process_error138,3415 -'$process_error'(error(permission_error(module,redefined,A),B), Level) :-$process_error138,3415 -'$process_error'(Error, _Level) :-$process_error141,3576 -'$process_error'(Error, _Level) :-$process_error141,3576 -'$process_error'(Error, _Level) :-$process_error141,3576 -'$process_error'(Throw, _) :-$process_error146,3772 -'$process_error'(Throw, _) :-$process_error146,3772 -'$process_error'(Throw, _) :-$process_error146,3772 - -pl/eval.yap,6972 -'$add_extra_safe'('$plus'(_,_,V)) --> !, [V].$add_extra_safe26,780 -'$add_extra_safe'('$plus'(_,_,V)) --> !, [V].$add_extra_safe26,780 -'$add_extra_safe'('$plus'(_,_,V)) --> !, [V].$add_extra_safe'('$plus26,780 -'$add_extra_safe'('$minus'(_,_,V)) --> !, [V].$add_extra_safe27,826 -'$add_extra_safe'('$minus'(_,_,V)) --> !, [V].$add_extra_safe27,826 -'$add_extra_safe'('$minus'(_,_,V)) --> !, [V].$add_extra_safe'('$minus27,826 -'$add_extra_safe'('$times'(_,_,V)) --> !, [V].$add_extra_safe28,873 -'$add_extra_safe'('$times'(_,_,V)) --> !, [V].$add_extra_safe28,873 -'$add_extra_safe'('$times'(_,_,V)) --> !, [V].$add_extra_safe'('$times28,873 -'$add_extra_safe'('$div'(_,_,V)) --> !, [V].$add_extra_safe29,920 -'$add_extra_safe'('$div'(_,_,V)) --> !, [V].$add_extra_safe29,920 -'$add_extra_safe'('$div'(_,_,V)) --> !, [V].$add_extra_safe'('$div29,920 -'$add_extra_safe'('$and'(_,_,V)) --> !, [V].$add_extra_safe30,965 -'$add_extra_safe'('$and'(_,_,V)) --> !, [V].$add_extra_safe30,965 -'$add_extra_safe'('$and'(_,_,V)) --> !, [V].$add_extra_safe'('$and30,965 -'$add_extra_safe'('$or'(_,_,V)) --> !, [V].$add_extra_safe31,1010 -'$add_extra_safe'('$or'(_,_,V)) --> !, [V].$add_extra_safe31,1010 -'$add_extra_safe'('$or'(_,_,V)) --> !, [V].$add_extra_safe'('$or31,1010 -'$add_extra_safe'('$sll'(_,_,V)) --> !, [V].$add_extra_safe32,1054 -'$add_extra_safe'('$sll'(_,_,V)) --> !, [V].$add_extra_safe32,1054 -'$add_extra_safe'('$sll'(_,_,V)) --> !, [V].$add_extra_safe'('$sll32,1054 -'$add_extra_safe'('$slr'(_,_,V)) --> !, [V].$add_extra_safe33,1099 -'$add_extra_safe'('$slr'(_,_,V)) --> !, [V].$add_extra_safe33,1099 -'$add_extra_safe'('$slr'(_,_,V)) --> !, [V].$add_extra_safe'('$slr33,1099 -'$add_extra_safe'(C=D,A,B) :-$add_extra_safe34,1144 -'$add_extra_safe'(C=D,A,B) :-$add_extra_safe34,1144 -'$add_extra_safe'(C=D,A,B) :-$add_extra_safe34,1144 -'$add_extra_safe'(_) --> [].$add_extra_safe46,1326 -'$add_extra_safe'(_) --> [].$add_extra_safe46,1326 -'$add_extra_safe'(_) --> [].$add_extra_safe46,1326 -'$gen_equals'([], [], _, O, O).$gen_equals49,1357 -'$gen_equals'([], [], _, O, O)./p,predicate,predicate definition49,1357 -'$gen_equals'([], [], _, O, O).$gen_equals49,1357 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, NO) :- V == NV, !,$gen_equals50,1389 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, NO) :- V == NV, !,$gen_equals50,1389 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, NO) :- V == NV, !,$gen_equals50,1389 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals52,1503 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals52,1503 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals52,1503 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals56,1662 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals56,1662 -'$gen_equals'([V|Commons],[NV|NCommons], LV0, O, OO) :-$gen_equals56,1662 -'$safe_guard'((A,B), M) :- !,$safe_guard60,1790 -'$safe_guard'((A,B), M) :- !,$safe_guard60,1790 -'$safe_guard'((A,B), M) :- !,$safe_guard60,1790 -'$safe_guard'((A;B), M) :- !,$safe_guard63,1872 -'$safe_guard'((A;B), M) :- !,$safe_guard63,1872 -'$safe_guard'((A;B), M) :- !,$safe_guard63,1872 -'$safe_guard'(A, M) :- !,$safe_guard66,1954 -'$safe_guard'(A, M) :- !,$safe_guard66,1954 -'$safe_guard'(A, M) :- !,$safe_guard66,1954 -'$safe_builtin'(G, Mod) :-$safe_builtin69,2009 -'$safe_builtin'(G, Mod) :-$safe_builtin69,2009 -'$safe_builtin'(G, Mod) :-$safe_builtin69,2009 -'$vmember'(V,[V1|_]) :- V == V1, !.$vmember73,2099 -'$vmember'(V,[V1|_]) :- V == V1, !.$vmember73,2099 -'$vmember'(V,[V1|_]) :- V == V1, !.$vmember73,2099 -'$vmember'(V,[_|LV0]) :-$vmember74,2135 -'$vmember'(V,[_|LV0]) :-$vmember74,2135 -'$vmember'(V,[_|LV0]) :-$vmember74,2135 -'$localise_disj_vars'((B;B2), M, (NB ; NB2), LV, LV0, LEqs) :- !,$localise_disj_vars78,2182 -'$localise_disj_vars'((B;B2), M, (NB ; NB2), LV, LV0, LEqs) :- !,$localise_disj_vars78,2182 -'$localise_disj_vars'((B;B2), M, (NB ; NB2), LV, LV0, LEqs) :- !,$localise_disj_vars78,2182 -'$localise_disj_vars'(B2, M, NB, LV, LV0, LEqs) :-$localise_disj_vars81,2343 -'$localise_disj_vars'(B2, M, NB, LV, LV0, LEqs) :-$localise_disj_vars81,2343 -'$localise_disj_vars'(B2, M, NB, LV, LV0, LEqs) :-$localise_disj_vars81,2343 -'$localise_vars'((A->B), M, (A->NB), LV, LV0, LEqs) :-$localise_vars84,2440 -'$localise_vars'((A->B), M, (A->NB), LV, LV0, LEqs) :-$localise_vars84,2440 -'$localise_vars'((A->B), M, (A->NB), LV, LV0, LEqs) :-$localise_vars84,2440 -'$localise_vars'((A;B), M, (NA;NB), LV1, LV0, LEqs) :- !,$localise_vars88,2601 -'$localise_vars'((A;B), M, (NA;NB), LV1, LV0, LEqs) :- !,$localise_vars88,2601 -'$localise_vars'((A;B), M, (NA;NB), LV1, LV0, LEqs) :- !,$localise_vars88,2601 -'$localise_vars'(((A,B),C), M, NG, LV, LV0, LEqs) :- !,$localise_vars91,2756 -'$localise_vars'(((A,B),C), M, NG, LV, LV0, LEqs) :- !,$localise_vars91,2756 -'$localise_vars'(((A,B),C), M, NG, LV, LV0, LEqs) :- !,$localise_vars91,2756 -'$localise_vars'((!,B), M, (!,NB), LV, LV0, LEqs) :- !,$localise_vars94,2885 -'$localise_vars'((!,B), M, (!,NB), LV, LV0, LEqs) :- !,$localise_vars94,2885 -'$localise_vars'((!,B), M, (!,NB), LV, LV0, LEqs) :- !,$localise_vars94,2885 -'$localise_vars'((X=Y,B), M, (X=Y,NB1), LV, LV0, LEqs) :-$localise_vars96,2986 -'$localise_vars'((X=Y,B), M, (X=Y,NB1), LV, LV0, LEqs) :-$localise_vars96,2986 -'$localise_vars'((X=Y,B), M, (X=Y,NB1), LV, LV0, LEqs) :-$localise_vars96,2986 -'$localise_vars'((G,B), M, (G,NB1), LV, LV0, LEqs) :-$localise_vars99,3116 -'$localise_vars'((G,B), M, (G,NB1), LV, LV0, LEqs) :-$localise_vars99,3116 -'$localise_vars'((G,B), M, (G,NB1), LV, LV0, LEqs) :-$localise_vars99,3116 -'$localise_vars'((G1,B1), _, O, LV, LV0, LEqs) :- !,$localise_vars104,3314 -'$localise_vars'((G1,B1), _, O, LV, LV0, LEqs) :- !,$localise_vars104,3314 -'$localise_vars'((G1,B1), _, O, LV, LV0, LEqs) :- !,$localise_vars104,3314 -'$localise_vars'(G, _, G, _, _, _).$localise_vars111,3596 -'$localise_vars'(G, _, G, _, _, _)./p,predicate,predicate definition111,3596 -'$localise_vars'(G, _, G, _, _, _).$localise_vars111,3596 -'$flatten_bd'((A,B),R,NB) :- !,$flatten_bd113,3633 -'$flatten_bd'((A,B),R,NB) :- !,$flatten_bd113,3633 -'$flatten_bd'((A,B),R,NB) :- !,$flatten_bd113,3633 -'$flatten_bd'(A,R,(A,R)).$flatten_bd116,3714 -'$flatten_bd'(A,R,(A,R))./p,predicate,predicate definition116,3714 -'$flatten_bd'(A,R,(A,R)).$flatten_bd116,3714 -'$localise_vars_opt'(H, M, (B1;B2), (NB1;NB2)) :-$localise_vars_opt120,3810 -'$localise_vars_opt'(H, M, (B1;B2), (NB1;NB2)) :-$localise_vars_opt120,3810 -'$localise_vars_opt'(H, M, (B1;B2), (NB1;NB2)) :-$localise_vars_opt120,3810 -'$full_clause_optimisation'(H, M, B0, BF) :-$full_clause_optimisation127,4014 -'$full_clause_optimisation'(H, M, B0, BF) :-$full_clause_optimisation127,4014 -'$full_clause_optimisation'(H, M, B0, BF) :-$full_clause_optimisation127,4014 - -pl/flags.yap,2239 -'$adjust_language'(cprolog) :-$adjust_language40,1106 -'$adjust_language'(cprolog) :-$adjust_language40,1106 -'$adjust_language'(cprolog) :-$adjust_language40,1106 -'$adjust_language'(sicstus) :-$adjust_language50,1453 -'$adjust_language'(sicstus) :-$adjust_language50,1453 -'$adjust_language'(sicstus) :-$adjust_language50,1453 -'$adjust_language'(iso) :-$adjust_language66,1953 -'$adjust_language'(iso) :-$adjust_language66,1953 -'$adjust_language'(iso) :-$adjust_language66,1953 -create_prolog_flag(Name, Value, Options) :-create_prolog_flag93,2688 -create_prolog_flag(Name, Value, Options) :-create_prolog_flag93,2688 -create_prolog_flag(Name, Value, Options) :-create_prolog_flag93,2688 -'$flag_domain_from_value'(true, boolean) :- !.$flag_domain_from_value97,2835 -'$flag_domain_from_value'(true, boolean) :- !.$flag_domain_from_value97,2835 -'$flag_domain_from_value'(true, boolean) :- !.$flag_domain_from_value97,2835 -'$flag_domain_from_value'(false, boolean) :- !.$flag_domain_from_value98,2882 -'$flag_domain_from_value'(false, boolean) :- !.$flag_domain_from_value98,2882 -'$flag_domain_from_value'(false, boolean) :- !.$flag_domain_from_value98,2882 -'$flag_domain_from_value'(Value, integer) :- integer(Value), !.$flag_domain_from_value99,2930 -'$flag_domain_from_value'(Value, integer) :- integer(Value), !.$flag_domain_from_value99,2930 -'$flag_domain_from_value'(Value, integer) :- integer(Value), !.$flag_domain_from_value99,2930 -'$flag_domain_from_value'(Value, float) :- float(Value), !.$flag_domain_from_value100,2994 -'$flag_domain_from_value'(Value, float) :- float(Value), !.$flag_domain_from_value100,2994 -'$flag_domain_from_value'(Value, float) :- float(Value), !.$flag_domain_from_value100,2994 -'$flag_domain_from_value'(Value, atom) :- atom(Value), !.$flag_domain_from_value101,3054 -'$flag_domain_from_value'(Value, atom) :- atom(Value), !.$flag_domain_from_value101,3054 -'$flag_domain_from_value'(Value, atom) :- atom(Value), !.$flag_domain_from_value101,3054 -'$flag_domain_from_value'(_, term).$flag_domain_from_value102,3112 -'$flag_domain_from_value'(_, term)./p,predicate,predicate definition102,3112 -'$flag_domain_from_value'(_, term).$flag_domain_from_value102,3112 - -pl/grammar.yap,8860 -head --> bodyhead39,967 -prolog:'$translate_rule'(Rule, (NH :- B) ) :-$translate_rule97,2395 -prolog:'$translate_rule'(Rule, (NH :- B) ) :-$translate_rule97,2395 -t_head(V, _, _, _, _, G0) :- var(V), !,t_head110,2779 -t_head(V, _, _, _, _, G0) :- var(V), !,t_head110,2779 -t_head(V, _, _, _, _, G0) :- var(V), !,t_head110,2779 -t_head((H,List), NH, NGs, S, S1, G0) :- !,t_head112,2857 -t_head((H,List), NH, NGs, S, S1, G0) :- !,t_head112,2857 -t_head((H,List), NH, NGs, S, S1, G0) :- !,t_head112,2857 -t_head(H, NH, _, S, SR, G0) :-t_head115,2961 -t_head(H, NH, _, S, SR, G0) :-t_head115,2961 -t_head(H, NH, _, S, SR, G0) :-t_head115,2961 -t_hgoal(V, _, _, _, G0) :- var(V), !,t_hgoal118,3021 -t_hgoal(V, _, _, _, G0) :- var(V), !,t_hgoal118,3021 -t_hgoal(V, _, _, _, G0) :- var(V), !,t_hgoal118,3021 -t_hgoal(M:H, M:NH, S, SR, G0) :- !,t_hgoal120,3097 -t_hgoal(M:H, M:NH, S, SR, G0) :- !,t_hgoal120,3097 -t_hgoal(M:H, M:NH, S, SR, G0) :- !,t_hgoal120,3097 -t_hgoal(H, NH, S, SR, _) :-t_hgoal122,3161 -t_hgoal(H, NH, S, SR, _) :-t_hgoal122,3161 -t_hgoal(H, NH, S, SR, _) :-t_hgoal122,3161 -t_hlist(V, _, _, _, G0) :- var(V), !,t_hlist125,3212 -t_hlist(V, _, _, _, G0) :- var(V), !,t_hlist125,3212 -t_hlist(V, _, _, _, G0) :- var(V), !,t_hlist125,3212 -t_hlist([], _, _, true, _).t_hlist127,3288 -t_hlist([], _, _, true, _).t_hlist127,3288 -t_hlist(String, S0, SR, SF, G0) :- string(String), !,t_hlist128,3316 -t_hlist(String, S0, SR, SF, G0) :- string(String), !,t_hlist128,3316 -t_hlist(String, S0, SR, SF, G0) :- string(String), !,t_hlist128,3316 -t_hlist([H], S0, SR, ('C'(SR,H,S0)), _) :- !.t_hlist131,3428 -t_hlist([H], S0, SR, ('C'(SR,H,S0)), _) :- !.t_hlist131,3428 -t_hlist([H], S0, SR, ('C'(SR,H,S0)), _) :- !.t_hlist131,3428 -t_hlist([H|List], S0, SR, ('C'(SR,H,S1),G0), Goal) :- !,t_hlist132,3474 -t_hlist([H|List], S0, SR, ('C'(SR,H,S1),G0), Goal) :- !,t_hlist132,3474 -t_hlist([H|List], S0, SR, ('C'(SR,H,S1),G0), Goal) :- !,t_hlist132,3474 -t_hlist(T, _, _, _, Goal) :-t_hlist134,3565 -t_hlist(T, _, _, _, Goal) :-t_hlist134,3565 -t_hlist(T, _, _, _, Goal) :-t_hlist134,3565 -t_body(Var, filled_in, _, S, S1, phrase(Var,S,S1)) :-t_body144,3804 -t_body(Var, filled_in, _, S, S1, phrase(Var,S,S1)) :-t_body144,3804 -t_body(Var, filled_in, _, S, S1, phrase(Var,S,S1)) :-t_body144,3804 -t_body(!, to_fill, last, S, S1, (!, S1 = S)) :- !.t_body147,3873 -t_body(!, to_fill, last, S, S1, (!, S1 = S)) :- !.t_body147,3873 -t_body(!, to_fill, last, S, S1, (!, S1 = S)) :- !.t_body147,3873 -t_body(!, _, _, S, S, !) :- !.t_body148,3924 -t_body(!, _, _, S, S, !) :- !.t_body148,3924 -t_body(!, _, _, S, S, !) :- !.t_body148,3924 -t_body([], to_fill, last, S, S1, S1=S) :- !.t_body149,3955 -t_body([], to_fill, last, S, S1, S1=S) :- !.t_body149,3955 -t_body([], to_fill, last, S, S1, S1=S) :- !.t_body149,3955 -t_body([], _, _, S, S, true) :- !.t_body150,4000 -t_body([], _, _, S, S, true) :- !.t_body150,4000 -t_body([], _, _, S, S, true) :- !.t_body150,4000 -t_body(X, FilledIn, Last, S, SR, OS) :- string(X), !,t_body151,4035 -t_body(X, FilledIn, Last, S, SR, OS) :- string(X), !,t_body151,4035 -t_body(X, FilledIn, Last, S, SR, OS) :- string(X), !,t_body151,4035 -t_body([X], filled_in, _, S, SR, 'C'(S,X,SR)) :- !.t_body154,4158 -t_body([X], filled_in, _, S, SR, 'C'(S,X,SR)) :- !.t_body154,4158 -t_body([X], filled_in, _, S, SR, 'C'(S,X,SR)) :- !.t_body154,4158 -t_body([X|R], filled_in, Last, S, SR, ('C'(S,X,SR1),RB)) :- !,t_body155,4210 -t_body([X|R], filled_in, Last, S, SR, ('C'(S,X,SR1),RB)) :- !,t_body155,4210 -t_body([X|R], filled_in, Last, S, SR, ('C'(S,X,SR1),RB)) :- !,t_body155,4210 -t_body({T}, to_fill, last, S, S1, (T, S1=S)) :- !.t_body157,4315 -t_body({T}, to_fill, last, S, S1, (T, S1=S)) :- !.t_body157,4315 -t_body({T}, to_fill, last, S, S1, (T, S1=S)) :- !.t_body157,4315 -t_body({T}, _, _, S, S, T) :- !.t_body158,4366 -t_body({T}, _, _, S, S, T) :- !.t_body158,4366 -t_body({T}, _, _, S, S, T) :- !.t_body158,4366 -t_body((T,R), ToFill, Last, S, SR, (Tt,Rt)) :- !,t_body159,4399 -t_body((T,R), ToFill, Last, S, SR, (Tt,Rt)) :- !,t_body159,4399 -t_body((T,R), ToFill, Last, S, SR, (Tt,Rt)) :- !,t_body159,4399 -t_body((T->R), ToFill, Last, S, SR, (Tt->Rt)) :- !,t_body162,4530 -t_body((T->R), ToFill, Last, S, SR, (Tt->Rt)) :- !,t_body162,4530 -t_body((T->R), ToFill, Last, S, SR, (Tt->Rt)) :- !,t_body162,4530 -t_body(\+T, ToFill, _, S, SR, (Tt->fail ; S=SR)) :- !,t_body165,4663 -t_body(\+T, ToFill, _, S, SR, (Tt->fail ; S=SR)) :- !,t_body165,4663 -t_body(\+T, ToFill, _, S, SR, (Tt->fail ; S=SR)) :- !,t_body165,4663 -t_body((T;R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body167,4758 -t_body((T;R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body167,4758 -t_body((T;R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body167,4758 -t_body((T|R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body170,4870 -t_body((T|R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body170,4870 -t_body((T|R), _ToFill, _, S, SR, (Tt;Rt)) :- !,t_body170,4870 -t_body(M:G, ToFill, Last, S, SR, M:NG) :- !,t_body173,4994 -t_body(M:G, ToFill, Last, S, SR, M:NG) :- !,t_body173,4994 -t_body(M:G, ToFill, Last, S, SR, M:NG) :- !,t_body173,4994 -t_body(T, filled_in, _, S, SR, Tt) :-t_body175,5076 -t_body(T, filled_in, _, S, SR, Tt) :-t_body175,5076 -t_body(T, filled_in, _, S, SR, Tt) :-t_body175,5076 -extend(More, OldT, NewT) :-extend179,5140 -extend(More, OldT, NewT) :-extend179,5140 -extend(More, OldT, NewT) :-extend179,5140 -t_tidy(P,P) :- var(P), !.t_tidy184,5234 -t_tidy(P,P) :- var(P), !.t_tidy184,5234 -t_tidy(P,P) :- var(P), !.t_tidy184,5234 -t_tidy((P1;P2), (Q1;Q2)) :- !,t_tidy185,5260 -t_tidy((P1;P2), (Q1;Q2)) :- !,t_tidy185,5260 -t_tidy((P1;P2), (Q1;Q2)) :- !,t_tidy185,5260 -t_tidy((P1->P2), (Q1->Q2)) :- !,t_tidy188,5325 -t_tidy((P1->P2), (Q1->Q2)) :- !,t_tidy188,5325 -t_tidy((P1->P2), (Q1->Q2)) :- !,t_tidy188,5325 -t_tidy(((P1,P2),P3), Q) :-t_tidy191,5392 -t_tidy(((P1,P2),P3), Q) :-t_tidy191,5392 -t_tidy(((P1,P2),P3), Q) :-t_tidy191,5392 -t_tidy((true,P1), Q1) :- !,t_tidy193,5445 -t_tidy((true,P1), Q1) :- !,t_tidy193,5445 -t_tidy((true,P1), Q1) :- !,t_tidy193,5445 -t_tidy((P1,true), Q1) :- !,t_tidy195,5490 -t_tidy((P1,true), Q1) :- !,t_tidy195,5490 -t_tidy((P1,true), Q1) :- !,t_tidy195,5490 -t_tidy((P1,P2), (Q1,Q2)) :- !,t_tidy197,5535 -t_tidy((P1,P2), (Q1,Q2)) :- !,t_tidy197,5535 -t_tidy((P1,P2), (Q1,Q2)) :- !,t_tidy197,5535 -t_tidy(A, A).t_tidy200,5600 -t_tidy(A, A).t_tidy200,5600 -prolog:'C'([X|S],X,S).C208,5742 -prolog:'C'([X|S],X,S).C208,5742 -prolog:phrase(PhraseDef, WordList) :-phrase219,5995 -prolog:phrase(PhraseDef, WordList) :-phrase219,5995 -prolog:phrase(V, S0, S) :-phrase228,6202 -prolog:phrase(V, S0, S) :-phrase228,6202 -prolog:phrase([H|T], S0, S) :-phrase232,6301 -prolog:phrase([H|T], S0, S) :-phrase232,6301 -prolog:phrase([], S0, S) :-phrase236,6393 -prolog:phrase([], S0, S) :-phrase236,6393 -prolog:phrase(P, S0, S) :-phrase239,6440 -prolog:phrase(P, S0, S) :-phrase239,6440 -'$phrase_list'([], S, S).$phrase_list242,6485 -'$phrase_list'([], S, S)./p,predicate,predicate definition242,6485 -'$phrase_list'([], S, S).$phrase_list242,6485 -'$phrase_list'([H|T], [H|S1], S0) :-$phrase_list243,6511 -'$phrase_list'([H|T], [H|S1], S0) :-$phrase_list243,6511 -'$phrase_list'([H|T], [H|S1], S0) :-$phrase_list243,6511 -prolog:'.'(H,T, S0, S) :-.252,6670 -prolog:'.'(H,T, S0, S) :-.252,6670 -prolog:','(A,B, S0, S) :-,259,6769 -prolog:','(A,B, S0, S) :-,259,6769 -prolog:';'(A,B, S0, S) :-;263,6855 -prolog:';'(A,B, S0, S) :-;263,6855 -prolog:'->'(A,B, S0, S) :-->271,7029 -prolog:'->'(A,B, S0, S) :-->271,7029 -prolog:'\\+'(A, S0, S) :-\\+275,7117 -prolog:'\\+'(A, S0, S) :-\\+275,7117 -:- multifile system:goal_expansion/2.multifile279,7202 -:- multifile system:goal_expansion/2.multifile279,7202 -:- dynamic system:goal_expansion/2.dynamic281,7241 -:- dynamic system:goal_expansion/2.dynamic281,7241 -'$c_built_in_phrase'(NT, Xs0, Xs, Mod, NewGoal) :-$c_built_in_phrase283,7278 -'$c_built_in_phrase'(NT, Xs0, Xs, Mod, NewGoal) :-$c_built_in_phrase283,7278 -'$c_built_in_phrase'(NT, Xs0, Xs, Mod, NewGoal) :-$c_built_in_phrase283,7278 -do_c_built_in('C'(A,B,C), _, _, (A=[B|C])) :- !.do_c_built_in313,8232 -do_c_built_in('C'(A,B,C), _, _, (A=[B|C])) :- !.do_c_built_in313,8232 -do_c_built_in('C'(A,B,C), _, _, (A=[B|C])) :- !.do_c_built_in313,8232 -do_c_built_in(phrase(NT,Xs0, Xs),Mod, _, NewGoal) :- do_c_built_in315,8282 -do_c_built_in(phrase(NT,Xs0, Xs),Mod, _, NewGoal) :- do_c_built_in315,8282 -do_c_built_in(phrase(NT,Xs0, Xs),Mod, _, NewGoal) :- do_c_built_in315,8282 -do_c_built_in(phrase(NT,Xs),Mod,_,NewGoal) :-do_c_built_in319,8426 -do_c_built_in(phrase(NT,Xs),Mod,_,NewGoal) :-do_c_built_in319,8426 -do_c_built_in(phrase(NT,Xs),Mod,_,NewGoal) :-do_c_built_in319,8426 - -pl/ground.yap,1823 -numbervars('$VAR'(M), M, N) :- !,numbervars22,635 -numbervars('$VAR'(M), M, N) :- !,numbervars22,635 -numbervars('$VAR'(M), M, N) :- !,numbervars22,635 -numbervars(Atomic, M, M) :-numbervars24,682 -numbervars(Atomic, M, M) :-numbervars24,682 -numbervars(Atomic, M, M) :-numbervars24,682 -numbervars(Term, M, N) :-numbervars26,730 -numbervars(Term, M, N) :-numbervars26,730 -numbervars(Term, M, N) :-numbervars26,730 -'$numbervars'(A, A, _, N, N) :- !.$numbervars30,820 -'$numbervars'(A, A, _, N, N) :- !.$numbervars30,820 -'$numbervars'(A, A, _, N, N) :- !.$numbervars30,820 -'$numbervars'(A,Arity, Term, M, N) :-$numbervars31,855 -'$numbervars'(A,Arity, Term, M, N) :-$numbervars31,855 -'$numbervars'(A,Arity, Term, M, N) :-$numbervars31,855 -ground(Term) :-ground38,998 -ground(Term) :-ground38,998 -ground(Term) :-ground38,998 -'$ground'(0, _) :- !.$ground43,1148 -'$ground'(0, _) :- !.$ground43,1148 -'$ground'(0, _) :- !.$ground43,1148 -'$ground'(N, Term) :-$ground44,1170 -'$ground'(N, Term) :-$ground44,1170 -'$ground'(N, Term) :-$ground44,1170 -numbervars(Term, M, N) :-numbervars50,1266 -numbervars(Term, M, N) :-numbervars50,1266 -numbervars(Term, M, N) :-numbervars50,1266 -'$numbermarked_vars'([], M, M).$numbermarked_vars54,1361 -'$numbermarked_vars'([], M, M)./p,predicate,predicate definition54,1361 -'$numbermarked_vars'([], M, M).$numbermarked_vars54,1361 -'$numbermarked_vars'([V|L], M, N) :- $numbermarked_vars55,1393 -'$numbermarked_vars'([V|L], M, N) :- $numbermarked_vars55,1393 -'$numbermarked_vars'([V|L], M, N) :- $numbermarked_vars55,1393 -'$numbermarked_vars'(['$VAR'(M)|L], M, N) :-$numbermarked_vars58,1478 -'$numbermarked_vars'(['$VAR'(M)|L], M, N) :-$numbermarked_vars58,1478 -'$numbermarked_vars'(['$VAR'(M)|L], M, N) :-$numbermarked_vars'(['$VAR58,1478 - -pl/hacks.yap,14274 -hacks:context_variables(NamedVariables) :-context_variables37,1078 -hacks:context_variables(NamedVariables) :-context_variables37,1078 -run_formats([], _).run_formats51,1554 -run_formats([], _).run_formats51,1554 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1574 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1574 -run_formats([Com-Args|StackInfo], Stream) :-run_formats52,1574 -display_stack_info(CPs,Envs,Lim,PC) :-display_stack_info56,1681 -display_stack_info(CPs,Envs,Lim,PC) :-display_stack_info56,1681 -display_stack_info(CPs,Envs,Lim,PC) :-display_stack_info56,1681 -code_location(Info,Where,Location) :-code_location62,1868 -code_location(Info,Where,Location) :-code_location62,1868 -code_location(Info,Where,Location) :-code_location62,1868 -code_location(Info,_,Info).code_location66,2026 -code_location(Info,_,Info).code_location66,2026 -construct_code(-1,Name,Arity,Mod,Where,Location) :- !,construct_code68,2055 -construct_code(-1,Name,Arity,Mod,Where,Location) :- !,construct_code68,2055 -construct_code(-1,Name,Arity,Mod,Where,Location) :- !,construct_code68,2055 -construct_code(0,_,_,_,Location,Location) :- !.construct_code72,2262 -construct_code(0,_,_,_,Location,Location) :- !.construct_code72,2262 -construct_code(0,_,_,_,Location,Location) :- !.construct_code72,2262 -construct_code(Cl,Name,Arity,Mod,Where,Location) :-construct_code73,2310 -construct_code(Cl,Name,Arity,Mod,Where,Location) :-construct_code73,2310 -construct_code(Cl,Name,Arity,Mod,Where,Location) :-construct_code73,2310 -'$prepare_loc'(Info,Where,Location) :- integer(Where), !,$prepare_loc80,2572 -'$prepare_loc'(Info,Where,Location) :- integer(Where), !,$prepare_loc80,2572 -'$prepare_loc'(Info,Where,Location) :- integer(Where), !,$prepare_loc80,2572 -'$prepare_loc'(Info,_,Info).$prepare_loc83,2732 -'$prepare_loc'(Info,_,Info)./p,predicate,predicate definition83,2732 -'$prepare_loc'(Info,_,Info).$prepare_loc83,2732 -display_pc(PC, PP, Source) -->display_pc85,2762 -display_pc(PC, PP, Source) -->display_pc85,2762 -display_pc(PC, PP, Source) -->display_pc85,2762 -pc_code(0,_PP,_Name,_Arity,_Mod, 'top level or system code' - []) --> !.pc_code90,2906 -pc_code(0,_PP,_Name,_Arity,_Mod, 'top level or system code' - []) --> !.pc_code90,2906 -pc_code(0,_PP,_Name,_Arity,_Mod, 'top level or system code' - []) --> !.pc_code90,2906 -pc_code(-1,_PP,Name,Arity,Mod, '~a:~q/~d' - [Mod,Name,Arity]) --> !,pc_code91,2979 -pc_code(-1,_PP,Name,Arity,Mod, '~a:~q/~d' - [Mod,Name,Arity]) --> !,pc_code91,2979 -pc_code(-1,_PP,Name,Arity,Mod, '~a:~q/~d' - [Mod,Name,Arity]) --> !,pc_code91,2979 -pc_code(Cl,Name,Arity,Mod, 'clause ~d for ~a:~q/~d'-[Cl,Mod,Name,Arity]) -->pc_code97,3211 -pc_code(Cl,Name,Arity,Mod, 'clause ~d for ~a:~q/~d'-[Cl,Mod,Name,Arity]) -->pc_code97,3211 -pc_code(Cl,Name,Arity,Mod, 'clause ~d for ~a:~q/~d'-[Cl,Mod,Name,Arity]) -->pc_code97,3211 -display_stack_info(_,_,0,_) --> !.display_stack_info105,3466 -display_stack_info(_,_,0,_) --> !.display_stack_info105,3466 -display_stack_info(_,_,0,_) --> !.display_stack_info105,3466 -display_stack_info([],[],_,_) --> [].display_stack_info106,3501 -display_stack_info([],[],_,_) --> [].display_stack_info106,3501 -display_stack_info([],[],_,_) --> [].display_stack_info106,3501 -display_stack_info([CP|CPs],[],I,_) -->display_stack_info107,3539 -display_stack_info([CP|CPs],[],I,_) -->display_stack_info107,3539 -display_stack_info([CP|CPs],[],I,_) -->display_stack_info107,3539 -display_stack_info([],[Env|Envs],I,Cont) -->display_stack_info111,3648 -display_stack_info([],[Env|Envs],I,Cont) -->display_stack_info111,3648 -display_stack_info([],[Env|Envs],I,Cont) -->display_stack_info111,3648 -display_stack_info([CP|LCPs],[Env|LEnvs],I,Cont) -->display_stack_info115,3780 -display_stack_info([CP|LCPs],[Env|LEnvs],I,Cont) -->display_stack_info115,3780 -display_stack_info([CP|LCPs],[Env|LEnvs],I,Cont) -->display_stack_info115,3780 -show_cp(CP, Continuation) -->show_cp134,4287 -show_cp(CP, Continuation) -->show_cp134,4287 -show_cp(CP, Continuation) -->show_cp134,4287 -show_env(Env,Cont,NCont) -->show_env150,4717 -show_env(Env,Cont,NCont) -->show_env150,4717 -show_env(Env,Cont,NCont) -->show_env150,4717 -clean_goal(G,Mod,NG) :-clean_goal162,5082 -clean_goal(G,Mod,NG) :-clean_goal162,5082 -clean_goal(G,Mod,NG) :-clean_goal162,5082 -clean_goal(G,_,G).clean_goal164,5147 -clean_goal(G,_,G).clean_goal164,5147 -scratch_goal(N,0,Mod,Mod:N) :-scratch_goal166,5167 -scratch_goal(N,0,Mod,Mod:N) :-scratch_goal166,5167 -scratch_goal(N,0,Mod,Mod:N) :-scratch_goal166,5167 -scratch_goal(N,A,Mod,NG) :-scratch_goal168,5202 -scratch_goal(N,A,Mod,NG) :-scratch_goal168,5202 -scratch_goal(N,A,Mod,NG) :-scratch_goal168,5202 -list_of_qmarks(0,[]) :- !.list_of_qmarks178,5328 -list_of_qmarks(0,[]) :- !.list_of_qmarks178,5328 -list_of_qmarks(0,[]) :- !.list_of_qmarks178,5328 -list_of_qmarks(I,[?|L]) :-list_of_qmarks179,5355 -list_of_qmarks(I,[?|L]) :-list_of_qmarks179,5355 -list_of_qmarks(I,[?|L]) :-list_of_qmarks179,5355 -fully_strip_module( T, M, TF) :-fully_strip_module183,5418 -fully_strip_module( T, M, TF) :-fully_strip_module183,5418 -fully_strip_module( T, M, TF) :-fully_strip_module183,5418 -beautify_hidden_goal('$yes_no'(G,_Query), prolog) -->beautify_hidden_goal187,5489 -beautify_hidden_goal('$yes_no'(G,_Query), prolog) -->beautify_hidden_goal187,5489 -beautify_hidden_goal('$yes_no'(G,_Query), prolog) -->beautify_hidden_goal187,5489 -beautify_hidden_goal('$do_yes_no'(G,Mod), prolog) -->beautify_hidden_goal191,5580 -beautify_hidden_goal('$do_yes_no'(G,Mod), prolog) -->beautify_hidden_goal191,5580 -beautify_hidden_goal('$do_yes_no'(G,Mod), prolog) -->beautify_hidden_goal191,5580 -beautify_hidden_goal('$query'(G,VarList), prolog) -->beautify_hidden_goal193,5644 -beautify_hidden_goal('$query'(G,VarList), prolog) -->beautify_hidden_goal193,5644 -beautify_hidden_goal('$query'(G,VarList), prolog) -->beautify_hidden_goal193,5644 -beautify_hidden_goal('$enter_top_level', prolog) -->beautify_hidden_goal195,5719 -beautify_hidden_goal('$enter_top_level', prolog) -->beautify_hidden_goal195,5719 -beautify_hidden_goal('$enter_top_level', prolog) -->beautify_hidden_goal195,5719 -beautify_hidden_goal('$csult'(Files,Mod),prolog) -->beautify_hidden_goal198,5829 -beautify_hidden_goal('$csult'(Files,Mod),prolog) -->beautify_hidden_goal198,5829 -beautify_hidden_goal('$csult'(Files,Mod),prolog) -->beautify_hidden_goal198,5829 -beautify_hidden_goal('$use_module'(Files,Mod,Is),prolog) -->beautify_hidden_goal200,5907 -beautify_hidden_goal('$use_module'(Files,Mod,Is),prolog) -->beautify_hidden_goal200,5907 -beautify_hidden_goal('$use_module'(Files,Mod,Is),prolog) -->beautify_hidden_goal200,5907 -beautify_hidden_goal('$continue_with_command'(reconsult,V,P,G,Source),prolog) -->beautify_hidden_goal202,5997 -beautify_hidden_goal('$continue_with_command'(reconsult,V,P,G,Source),prolog) -->beautify_hidden_goal202,5997 -beautify_hidden_goal('$continue_with_command'(reconsult,V,P,G,Source),prolog) -->beautify_hidden_goal202,5997 -beautify_hidden_goal('$continue_with_command'(consult,V,P,G,Source),prolog) -->beautify_hidden_goal204,6106 -beautify_hidden_goal('$continue_with_command'(consult,V,P,G,Source),prolog) -->beautify_hidden_goal204,6106 -beautify_hidden_goal('$continue_with_command'(consult,V,P,G,Source),prolog) -->beautify_hidden_goal204,6106 -beautify_hidden_goal('$continue_with_command'(top,V,P,G,_),prolog) -->beautify_hidden_goal206,6213 -beautify_hidden_goal('$continue_with_command'(top,V,P,G,_),prolog) -->beautify_hidden_goal206,6213 -beautify_hidden_goal('$continue_with_command'(top,V,P,G,_),prolog) -->beautify_hidden_goal206,6213 -beautify_hidden_goal('$continue_with_command'(Command,V,P,G,Source),prolog) -->beautify_hidden_goal208,6303 -beautify_hidden_goal('$continue_with_command'(Command,V,P,G,Source),prolog) -->beautify_hidden_goal208,6303 -beautify_hidden_goal('$continue_with_command'(Command,V,P,G,Source),prolog) -->beautify_hidden_goal208,6303 -beautify_hidden_goal('$spycall'(G,M,InControl,Redo),prolog) -->beautify_hidden_goal210,6420 -beautify_hidden_goal('$spycall'(G,M,InControl,Redo),prolog) -->beautify_hidden_goal210,6420 -beautify_hidden_goal('$spycall'(G,M,InControl,Redo),prolog) -->beautify_hidden_goal210,6420 -beautify_hidden_goal('$do_spy'(Goal, Mod, _CP, InControl),prolog) -->beautify_hidden_goal212,6525 -beautify_hidden_goal('$do_spy'(Goal, Mod, _CP, InControl),prolog) -->beautify_hidden_goal212,6525 -beautify_hidden_goal('$do_spy'(Goal, Mod, _CP, InControl),prolog) -->beautify_hidden_goal212,6525 -beautify_hidden_goal('$system_catch'(G,Mod,Exc,Handler),prolog) -->beautify_hidden_goal214,6635 -beautify_hidden_goal('$system_catch'(G,Mod,Exc,Handler),prolog) -->beautify_hidden_goal214,6635 -beautify_hidden_goal('$system_catch'(G,Mod,Exc,Handler),prolog) -->beautify_hidden_goal214,6635 -beautify_hidden_goal('$catch'(G,Exc,Handler),prolog) -->beautify_hidden_goal216,6734 -beautify_hidden_goal('$catch'(G,Exc,Handler),prolog) -->beautify_hidden_goal216,6734 -beautify_hidden_goal('$catch'(G,Exc,Handler),prolog) -->beautify_hidden_goal216,6734 -beautify_hidden_goal('$execute_command'(Query,V,P,Option,Source),prolog) -->beautify_hidden_goal218,6818 -beautify_hidden_goal('$execute_command'(Query,V,P,Option,Source),prolog) -->beautify_hidden_goal218,6818 -beautify_hidden_goal('$execute_command'(Query,V,P,Option,Source),prolog) -->beautify_hidden_goal218,6818 -beautify_hidden_goal('$process_directive'(Gs,_Mode,_VL),prolog) -->beautify_hidden_goal220,6943 -beautify_hidden_goal('$process_directive'(Gs,_Mode,_VL),prolog) -->beautify_hidden_goal220,6943 -beautify_hidden_goal('$process_directive'(Gs,_Mode,_VL),prolog) -->beautify_hidden_goal220,6943 -beautify_hidden_goal('$loop'(Stream,Option),prolog) -->beautify_hidden_goal222,7023 -beautify_hidden_goal('$loop'(Stream,Option),prolog) -->beautify_hidden_goal222,7023 -beautify_hidden_goal('$loop'(Stream,Option),prolog) -->beautify_hidden_goal222,7023 -beautify_hidden_goal('$load_files'(Files,Opts,?),prolog) -->beautify_hidden_goal224,7125 -beautify_hidden_goal('$load_files'(Files,Opts,?),prolog) -->beautify_hidden_goal224,7125 -beautify_hidden_goal('$load_files'(Files,Opts,?),prolog) -->beautify_hidden_goal224,7125 -beautify_hidden_goal('$load_files'(_,_,Name),prolog) -->beautify_hidden_goal226,7213 -beautify_hidden_goal('$load_files'(_,_,Name),prolog) -->beautify_hidden_goal226,7213 -beautify_hidden_goal('$load_files'(_,_,Name),prolog) -->beautify_hidden_goal226,7213 -beautify_hidden_goal('$reconsult'(Files,Mod),prolog) -->beautify_hidden_goal228,7279 -beautify_hidden_goal('$reconsult'(Files,Mod),prolog) -->beautify_hidden_goal228,7279 -beautify_hidden_goal('$reconsult'(Files,Mod),prolog) -->beautify_hidden_goal228,7279 -beautify_hidden_goal('$undefp'([Mod|G]),prolog) -->beautify_hidden_goal230,7361 -beautify_hidden_goal('$undefp'([Mod|G]),prolog) -->beautify_hidden_goal230,7361 -beautify_hidden_goal('$undefp'([Mod|G]),prolog) -->beautify_hidden_goal230,7361 -beautify_hidden_goal('$undefp'(?),prolog) -->beautify_hidden_goal232,7440 -beautify_hidden_goal('$undefp'(?),prolog) -->beautify_hidden_goal232,7440 -beautify_hidden_goal('$undefp'(?),prolog) -->beautify_hidden_goal232,7440 -beautify_hidden_goal(repeat,prolog) -->beautify_hidden_goal234,7511 -beautify_hidden_goal(repeat,prolog) -->beautify_hidden_goal234,7511 -beautify_hidden_goal(repeat,prolog) -->beautify_hidden_goal234,7511 -beautify_hidden_goal('$recorded_with_key'(A,B,C),prolog) -->beautify_hidden_goal236,7562 -beautify_hidden_goal('$recorded_with_key'(A,B,C),prolog) -->beautify_hidden_goal236,7562 -beautify_hidden_goal('$recorded_with_key'(A,B,C),prolog) -->beautify_hidden_goal236,7562 -beautify_hidden_goal('$findall_with_common_vars'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal238,7643 -beautify_hidden_goal('$findall_with_common_vars'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal238,7643 -beautify_hidden_goal('$findall_with_common_vars'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal238,7643 -beautify_hidden_goal('$bagof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal240,7748 -beautify_hidden_goal('$bagof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal240,7748 -beautify_hidden_goal('$bagof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal240,7748 -beautify_hidden_goal('$setof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal242,7832 -beautify_hidden_goal('$setof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal242,7832 -beautify_hidden_goal('$setof'(Templ,Gen,Answ),prolog) -->beautify_hidden_goal242,7832 -beautify_hidden_goal('$findall'(T,G,S,A),prolog) -->beautify_hidden_goal244,7916 -beautify_hidden_goal('$findall'(T,G,S,A),prolog) -->beautify_hidden_goal244,7916 -beautify_hidden_goal('$findall'(T,G,S,A),prolog) -->beautify_hidden_goal244,7916 -beautify_hidden_goal('$listing'(G,M,_Stream),prolog) -->beautify_hidden_goal246,7990 -beautify_hidden_goal('$listing'(G,M,_Stream),prolog) -->beautify_hidden_goal246,7990 -beautify_hidden_goal('$listing'(G,M,_Stream),prolog) -->beautify_hidden_goal246,7990 -beautify_hidden_goal('$call'(G,_CP,?,M),prolog) -->beautify_hidden_goal248,8064 -beautify_hidden_goal('$call'(G,_CP,?,M),prolog) -->beautify_hidden_goal248,8064 -beautify_hidden_goal('$call'(G,_CP,?,M),prolog) -->beautify_hidden_goal248,8064 -beautify_hidden_goal('$call'(_G,_CP,G0,M),prolog) -->beautify_hidden_goal250,8130 -beautify_hidden_goal('$call'(_G,_CP,G0,M),prolog) -->beautify_hidden_goal250,8130 -beautify_hidden_goal('$call'(_G,_CP,G0,M),prolog) -->beautify_hidden_goal250,8130 -beautify_hidden_goal('$current_predicate'(Na,M,S,_),prolog) -->beautify_hidden_goal252,8199 -beautify_hidden_goal('$current_predicate'(Na,M,S,_),prolog) -->beautify_hidden_goal252,8199 -beautify_hidden_goal('$current_predicate'(Na,M,S,_),prolog) -->beautify_hidden_goal252,8199 -beautify_hidden_goal('$list_clauses'(Stream,M,Pred),prolog) -->beautify_hidden_goal254,8293 -beautify_hidden_goal('$list_clauses'(Stream,M,Pred),prolog) -->beautify_hidden_goal254,8293 -beautify_hidden_goal('$list_clauses'(Stream,M,Pred),prolog) -->beautify_hidden_goal254,8293 - -pl/init.yap,6168 -fail :- fail.fail66,1480 -false :- fail.false75,1544 -'$$!'(CP) :- '$cut_by'(CP).$$!85,1631 -'$$!'(CP) :- '$cut_by'(CP).$$!85,1631 -'$$!'(CP) :- '$cut_by'(CP).$$!85,1631 -'$$!'(CP) :- '$cut_by'(CP)./p,predicate,predicate definition85,1631 -'$$!'(CP) :- '$cut_by'(CP).$$!85,1631 -'$$!'(CP) :- '$cut_by'(CP).$$!'(CP) :- '$cut_by85,1631 -'$do_log_upd_clause'(_,_,_,_,_,_).$do_log_upd_clause93,1775 -'$do_log_upd_clause'(_,_,_,_,_,_)./p,predicate,predicate definition93,1775 -'$do_log_upd_clause'(_,_,_,_,_,_).$do_log_upd_clause93,1775 -'$do_log_upd_clause'(A,B,C,D,E,_) :-$do_log_upd_clause94,1810 -'$do_log_upd_clause'(A,B,C,D,E,_) :-$do_log_upd_clause94,1810 -'$do_log_upd_clause'(A,B,C,D,E,_) :-$do_log_upd_clause94,1810 -'$do_log_upd_clause'(_,_,_,_,_,_).$do_log_upd_clause96,1890 -'$do_log_upd_clause'(_,_,_,_,_,_)./p,predicate,predicate definition96,1890 -'$do_log_upd_clause'(_,_,_,_,_,_).$do_log_upd_clause96,1890 -'$do_log_upd_clause_erase'(_,_,_,_,_,_).$do_log_upd_clause_erase99,1927 -'$do_log_upd_clause_erase'(_,_,_,_,_,_)./p,predicate,predicate definition99,1927 -'$do_log_upd_clause_erase'(_,_,_,_,_,_).$do_log_upd_clause_erase99,1927 -'$do_log_upd_clause_erase'(A,B,C,D,E,_) :-$do_log_upd_clause_erase100,1968 -'$do_log_upd_clause_erase'(A,B,C,D,E,_) :-$do_log_upd_clause_erase100,1968 -'$do_log_upd_clause_erase'(A,B,C,D,E,_) :-$do_log_upd_clause_erase100,1968 -'$do_log_upd_clause_erase'(_,_,_,_,_,_).$do_log_upd_clause_erase102,2060 -'$do_log_upd_clause_erase'(_,_,_,_,_,_)./p,predicate,predicate definition102,2060 -'$do_log_upd_clause_erase'(_,_,_,_,_,_).$do_log_upd_clause_erase102,2060 -'$do_log_upd_clause0'(_,_,_,_,_,_).$do_log_upd_clause0104,2102 -'$do_log_upd_clause0'(_,_,_,_,_,_)./p,predicate,predicate definition104,2102 -'$do_log_upd_clause0'(_,_,_,_,_,_).$do_log_upd_clause0104,2102 -'$do_log_upd_clause0'(A,B,C,D,_,_) :-$do_log_upd_clause0105,2138 -'$do_log_upd_clause0'(A,B,C,D,_,_) :-$do_log_upd_clause0105,2138 -'$do_log_upd_clause0'(A,B,C,D,_,_) :-$do_log_upd_clause0105,2138 -'$do_log_upd_clause0'(_,_,_,_,_,_).$do_log_upd_clause0107,2217 -'$do_log_upd_clause0'(_,_,_,_,_,_)./p,predicate,predicate definition107,2217 -'$do_log_upd_clause0'(_,_,_,_,_,_).$do_log_upd_clause0107,2217 -'$do_static_clause'(_,_,_,_,_).$do_static_clause110,2255 -'$do_static_clause'(_,_,_,_,_)./p,predicate,predicate definition110,2255 -'$do_static_clause'(_,_,_,_,_).$do_static_clause110,2255 -'$do_static_clause'(A,B,C,D,E) :-$do_static_clause111,2287 -'$do_static_clause'(A,B,C,D,E) :-$do_static_clause111,2287 -'$do_static_clause'(A,B,C,D,E) :-$do_static_clause111,2287 -'$do_static_clause'(_,_,_,_,_).$do_static_clause113,2360 -'$do_static_clause'(_,_,_,_,_)./p,predicate,predicate definition113,2360 -'$do_static_clause'(_,_,_,_,_).$do_static_clause113,2360 -:- dynamic prolog:'$parent_module'/2.dynamic135,2858 -:- dynamic prolog:'$parent_module'/2.dynamic135,2858 -:- dynamic prolog:'$user_defined_flag'/4.dynamic186,3665 -:- dynamic prolog:'$user_defined_flag'/4.dynamic186,3665 -:- multifile prolog:debug_action_hook/1.multifile188,3708 -:- multifile prolog:debug_action_hook/1.multifile188,3708 -:- multifile prolog:'$system_predicate'/2.multifile190,3750 -:- multifile prolog:'$system_predicate'/2.multifile190,3750 -version(yap,[6,3]).version194,3816 -version(yap,[6,3]).version194,3816 -:- multifile user:portray_message/2.multifile203,3955 -:- multifile user:portray_message/2.multifile203,3955 -:- dynamic user:portray_message/2.dynamic205,3993 -:- dynamic user:portray_message/2.dynamic205,3993 -:- multifile user:goal_expansion/3.multifile220,4599 -:- multifile user:goal_expansion/3.multifile220,4599 -:- dynamic user:goal_expansion/3.dynamic222,4636 -:- dynamic user:goal_expansion/3.dynamic222,4636 -:- multifile user:goal_expansion/2.multifile224,4671 -:- multifile user:goal_expansion/2.multifile224,4671 -:- dynamic user:goal_expansion/2.dynamic226,4708 -:- dynamic user:goal_expansion/2.dynamic226,4708 -:- multifile system:goal_expansion/2.multifile228,4743 -:- multifile system:goal_expansion/2.multifile228,4743 -:- dynamic system:goal_expansion/2.dynamic230,4782 -:- dynamic system:goal_expansion/2.dynamic230,4782 -:- multifile goal_expansion/2.multifile232,4819 -:- multifile goal_expansion/2.multifile232,4819 -:- dynamic goal_expansion/2.dynamic234,4851 -:- dynamic goal_expansion/2.dynamic234,4851 -yap_hacks:cut_by(CP) :- '$$cut_by'(CP).cut_by251,5200 -yap_hacks:cut_by(CP) :- '$$cut_by'(CP).cut_by251,5200 -yap_hacks:cut_by(CP) :- '$$cut_by'(CP).cut_by251,5200 -:- multifile term_expansion/2.multifile303,6424 -:- multifile term_expansion/2.multifile303,6424 -:- dynamic term_expansion/2.dynamic305,6456 -:- dynamic term_expansion/2.dynamic305,6456 -:- multifile system:term_expansion/2.multifile307,6486 -:- multifile system:term_expansion/2.multifile307,6486 -:- dynamic system:term_expansion/2.dynamic309,6525 -:- dynamic system:term_expansion/2.dynamic309,6525 -:- multifile swi:swi_predicate_table/4.multifile311,6562 -:- multifile swi:swi_predicate_table/4.multifile311,6562 -:- multifile user:message_hook/3.multifile326,7021 -:- multifile user:message_hook/3.multifile326,7021 -:- dynamic user:message_hook/3.dynamic328,7056 -:- dynamic user:message_hook/3.dynamic328,7056 -:- multifile user:exception/3.multifile343,8291 -:- multifile user:exception/3.multifile343,8291 -:- dynamic user:exception/3.dynamic345,8323 -:- dynamic user:exception/3.dynamic345,8323 -p(X,Y) :- Y is X*X.p361,8501 -p(X,Y) :- Y is X*X.p361,8501 -p(X,Y) :- Y is X*X.p361,8501 -prefix(information, '% ', S, user_error) --> [].prefix363,8522 -prefix(information, '% ', S, user_error) --> [].prefix363,8522 -prefix(information, '% ', S, user_error) --> [].prefix363,8522 -a(1).a371,8638 -a(1).a371,8638 -a(2).a375,8649 -a(2).a375,8649 -a(2).a376,8655 -a(2).a376,8655 -lists:member(1,[1]).member378,8662 -clause_to_indicator(T, M:Name/Arity) :- ,clause_to_indicator380,8684 -clause_to_indicator(T, M:Name/Arity) :- ,clause_to_indicator380,8684 -clause_to_indicator(T, M:Name/Arity) :- ,clause_to_indicator380,8684 - -pl/listing.yap,8361 -listing :-listing59,1749 -listing(MV) :-listing79,2199 -listing(MV) :-listing79,2199 -listing(MV) :-listing79,2199 -listing(Stream, MV) :-listing83,2268 -listing(Stream, MV) :-listing83,2268 -listing(Stream, MV) :-listing83,2268 -listing(_Stream, []) :- !.listing86,2351 -listing(_Stream, []) :- !.listing86,2351 -listing(_Stream, []) :- !.listing86,2351 -listing(Stream, [MV|MVs]) :- !,listing87,2378 -listing(Stream, [MV|MVs]) :- !,listing87,2378 -listing(Stream, [MV|MVs]) :- !,listing87,2378 -'$mlisting'(Stream, MV, M) :-$mlisting91,2463 -'$mlisting'(Stream, MV, M) :-$mlisting91,2463 -'$mlisting'(Stream, MV, M) :-$mlisting91,2463 -'$do_listing'(Stream, M, Name/Arity) :-$do_listing110,3004 -'$do_listing'(Stream, M, Name/Arity) :-$do_listing110,3004 -'$do_listing'(Stream, M, Name/Arity) :-$do_listing110,3004 -'$listing'(Name, Arity, M, Stream) :-$listing123,3287 -'$listing'(Name, Arity, M, Stream) :-$listing123,3287 -'$listing'(Name, Arity, M, Stream) :-$listing123,3287 -'$listing'(_,_,_,_).$listing127,3445 -'$listing'(_,_,_,_)./p,predicate,predicate definition127,3445 -'$listing'(_,_,_,_).$listing127,3445 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name)./p,predicate,predicate definition129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name/Arity,Name,Arity) :- !, atom(Name).$funcspec129,3467 -'$funcspec'(Name,Name,_) :- atom(Name), !.$funcspec130,3520 -'$funcspec'(Name,Name,_) :- atom(Name), !.$funcspec130,3520 -'$funcspec'(Name,Name,_) :- atom(Name), !.$funcspec130,3520 -'$funcspec'(Name,_,_) :-$funcspec131,3563 -'$funcspec'(Name,_,_) :-$funcspec131,3563 -'$funcspec'(Name,_,_) :-$funcspec131,3563 -'$list_clauses'(Stream, M, Pred) :-$list_clauses134,3652 -'$list_clauses'(Stream, M, Pred) :-$list_clauses134,3652 -'$list_clauses'(Stream, M, Pred) :-$list_clauses134,3652 -'$list_clauses'(Stream, M, Pred) :-$list_clauses143,3810 -'$list_clauses'(Stream, M, Pred) :-$list_clauses143,3810 -'$list_clauses'(Stream, M, Pred) :-$list_clauses143,3810 -'$list_clauses'(Stream, M, Pred) :-$list_clauses155,4132 -'$list_clauses'(Stream, M, Pred) :-$list_clauses155,4132 -'$list_clauses'(Stream, M, Pred) :-$list_clauses155,4132 -'$list_clauses'(Stream, M, Pred) :-$list_clauses167,4426 -'$list_clauses'(Stream, M, Pred) :-$list_clauses167,4426 -'$list_clauses'(Stream, M, Pred) :-$list_clauses167,4426 -'$list_clauses'(Stream, M, Pred) :-$list_clauses179,4711 -'$list_clauses'(Stream, M, Pred) :-$list_clauses179,4711 -'$list_clauses'(Stream, M, Pred) :-$list_clauses179,4711 -'$list_clauses'(Stream, _M, _Pred) :-$list_clauses192,5037 -'$list_clauses'(Stream, _M, _Pred) :-$list_clauses192,5037 -'$list_clauses'(Stream, _M, _Pred) :-$list_clauses192,5037 -'$list_clauses'(Stream, M, Pred) :-$list_clauses195,5111 -'$list_clauses'(Stream, M, Pred) :-$list_clauses195,5111 -'$list_clauses'(Stream, M, Pred) :-$list_clauses195,5111 -portray_clause(Stream, Clause) :-portray_clause209,5516 -portray_clause(Stream, Clause) :-portray_clause209,5516 -portray_clause(Stream, Clause) :-portray_clause209,5516 -portray_clause(_, _).portray_clause213,5637 -portray_clause(_, _).portray_clause213,5637 -portray_clause(Clause) :-portray_clause220,5744 -portray_clause(Clause) :-portray_clause220,5744 -portray_clause(Clause) :-portray_clause220,5744 -'$portray_clause'(Stream, (Pred :- true)) :- !,$portray_clause224,5836 -'$portray_clause'(Stream, (Pred :- true)) :- !,$portray_clause224,5836 -'$portray_clause'(Stream, (Pred :- true)) :- !,$portray_clause224,5836 -'$portray_clause'(Stream, (Pred:-Body)) :- !,$portray_clause227,5943 -'$portray_clause'(Stream, (Pred:-Body)) :- !,$portray_clause227,5943 -'$portray_clause'(Stream, (Pred:-Body)) :- !,$portray_clause227,5943 -'$portray_clause'(Stream, Pred) :-$portray_clause232,6122 -'$portray_clause'(Stream, Pred) :-$portray_clause232,6122 -'$portray_clause'(Stream, Pred) :-$portray_clause232,6122 -'$write_body'(X,I,T,Stream) :- var(X), !,$write_body236,6217 -'$write_body'(X,I,T,Stream) :- var(X), !,$write_body236,6217 -'$write_body'(X,I,T,Stream) :- var(X), !,$write_body236,6217 -'$write_body'((P,Q), I, T, Stream) :-$write_body239,6308 -'$write_body'((P,Q), I, T, Stream) :-$write_body239,6308 -'$write_body'((P,Q), I, T, Stream) :-$write_body239,6308 -'$write_body'((P->Q;S),I,_, Stream) :-$write_body244,6460 -'$write_body'((P->Q;S),I,_, Stream) :-$write_body244,6460 -'$write_body'((P->Q;S),I,_, Stream) :-$write_body244,6460 -'$write_body'((P->Q|S),I,_,Stream) :-$write_body252,6694 -'$write_body'((P->Q|S),I,_,Stream) :-$write_body252,6694 -'$write_body'((P->Q|S),I,_,Stream) :-$write_body252,6694 -'$write_body'((P->Q),I,_,Stream) :-$write_body260,6926 -'$write_body'((P->Q),I,_,Stream) :-$write_body260,6926 -'$write_body'((P->Q),I,_,Stream) :-$write_body260,6926 -'$write_body'((P;Q),I,_,Stream) :-$write_body268,7165 -'$write_body'((P;Q),I,_,Stream) :-$write_body268,7165 -'$write_body'((P;Q),I,_,Stream) :-$write_body268,7165 -'$write_body'((P|Q),I,_,Stream) :-$write_body274,7333 -'$write_body'((P|Q),I,_,Stream) :-$write_body274,7333 -'$write_body'((P|Q),I,_,Stream) :-$write_body274,7333 -'$write_body'(X,I,T,Stream) :-$write_body280,7501 -'$write_body'(X,I,T,Stream) :-$write_body280,7501 -'$write_body'(X,I,T,Stream) :-$write_body280,7501 -'$write_disj'((Q;S),I0,I,C,Stream) :- !,$write_disj287,7596 -'$write_disj'((Q;S),I0,I,C,Stream) :- !,$write_disj287,7596 -'$write_disj'((Q;S),I0,I,C,Stream) :- !,$write_disj287,7596 -'$write_disj'((Q|S),I0,I,C,Stream) :- !,$write_disj291,7738 -'$write_disj'((Q|S),I0,I,C,Stream) :- !,$write_disj291,7738 -'$write_disj'((Q|S),I0,I,C,Stream) :- !,$write_disj291,7738 -'$write_disj'(S,_,I,C,Stream) :-$write_disj295,7880 -'$write_disj'(S,_,I,C,Stream) :-$write_disj295,7880 -'$write_disj'(S,_,I,C,Stream) :-$write_disj295,7880 -'$beforelit'('(',_,Stream) :-$beforelit299,7945 -'$beforelit'('(',_,Stream) :-$beforelit299,7945 -'$beforelit'('(',_,Stream) :-$beforelit'(299,7945 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ])./p,predicate,predicate definition302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beforelit'(_,I,Stream) :- format(Stream,'~n~*c',[I,0' ]).$beforelit302,8009 -'$beautify_vars'(T) :-$beautify_vars304,8070 -'$beautify_vars'(T) :-$beautify_vars304,8070 -'$beautify_vars'(T) :-$beautify_vars304,8070 -'$list_get_vars'(V,L,[V|L] ) :- var(V), !.$list_get_vars310,8162 -'$list_get_vars'(V,L,[V|L] ) :- var(V), !.$list_get_vars310,8162 -'$list_get_vars'(V,L,[V|L] ) :- var(V), !.$list_get_vars310,8162 -'$list_get_vars'(Atomic, M, M) :-$list_get_vars311,8205 -'$list_get_vars'(Atomic, M, M) :-$list_get_vars311,8205 -'$list_get_vars'(Atomic, M, M) :-$list_get_vars311,8205 -'$list_get_vars'([Arg|Args], M, N) :- !,$list_get_vars313,8262 -'$list_get_vars'([Arg|Args], M, N) :- !,$list_get_vars313,8262 -'$list_get_vars'([Arg|Args], M, N) :- !,$list_get_vars313,8262 -'$list_get_vars'(Term, M, N) :-$list_get_vars316,8365 -'$list_get_vars'(Term, M, N) :-$list_get_vars316,8365 -'$list_get_vars'(Term, M, N) :-$list_get_vars316,8365 -'$list_transform'([],_) :- !.$list_transform320,8449 -'$list_transform'([],_) :- !.$list_transform320,8449 -'$list_transform'([],_) :- !.$list_transform320,8449 -'$list_transform'([X,Y|L],M) :-$list_transform321,8479 -'$list_transform'([X,Y|L],M) :-$list_transform321,8479 -'$list_transform'([X,Y|L],M) :-$list_transform321,8479 -'$list_transform'(['$VAR'(-1)|L],M) :- !,$list_transform327,8576 -'$list_transform'(['$VAR'(-1)|L],M) :- !,$list_transform327,8576 -'$list_transform'(['$VAR'(-1)|L],M) :- !,$list_transform'(['$VAR327,8576 -'$list_transform'([_|L],M) :-$list_transform329,8643 -'$list_transform'([_|L],M) :-$list_transform329,8643 -'$list_transform'([_|L],M) :-$list_transform329,8643 - -pl/load_foreign.yap,8971 -load_foreign_files(Objs,Libs,Entry) :-load_foreign_files57,1725 -load_foreign_files(Objs,Libs,Entry) :-load_foreign_files57,1725 -load_foreign_files(Objs,Libs,Entry) :-load_foreign_files57,1725 -load_absolute_foreign_files(Objs,Libs,Entry) :-load_absolute_foreign_files84,2554 -load_absolute_foreign_files(Objs,Libs,Entry) :-load_absolute_foreign_files84,2554 -load_absolute_foreign_files(Objs,Libs,Entry) :-load_absolute_foreign_files84,2554 -'$check_objs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_objs_for_load_foreign_files102,2891 -'$check_objs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_objs_for_load_foreign_files102,2891 -'$check_objs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_objs_for_load_foreign_files102,2891 -'$check_objs_for_load_foreign_files'([],[],_) :- !.$check_objs_for_load_foreign_files104,2986 -'$check_objs_for_load_foreign_files'([],[],_) :- !.$check_objs_for_load_foreign_files104,2986 -'$check_objs_for_load_foreign_files'([],[],_) :- !.$check_objs_for_load_foreign_files104,2986 -'$check_objs_for_load_foreign_files'([Obj|Objs],[NObj|NewObjs],G) :- !,$check_objs_for_load_foreign_files105,3038 -'$check_objs_for_load_foreign_files'([Obj|Objs],[NObj|NewObjs],G) :- !,$check_objs_for_load_foreign_files105,3038 -'$check_objs_for_load_foreign_files'([Obj|Objs],[NObj|NewObjs],G) :- !,$check_objs_for_load_foreign_files105,3038 -'$check_objs_for_load_foreign_files'(Objs,_,G) :-$check_objs_for_load_foreign_files108,3215 -'$check_objs_for_load_foreign_files'(Objs,_,G) :-$check_objs_for_load_foreign_files108,3215 -'$check_objs_for_load_foreign_files'(Objs,_,G) :-$check_objs_for_load_foreign_files108,3215 -'$check_obj_for_load_foreign_files'(V,_,G) :- var(V), !,$check_obj_for_load_foreign_files111,3305 -'$check_obj_for_load_foreign_files'(V,_,G) :- var(V), !,$check_obj_for_load_foreign_files111,3305 -'$check_obj_for_load_foreign_files'(V,_,G) :- var(V), !,$check_obj_for_load_foreign_files111,3305 -'$check_obj_for_load_foreign_files'(Obj,NewObj,_) :- atom(Obj), !,$check_obj_for_load_foreign_files113,3399 -'$check_obj_for_load_foreign_files'(Obj,NewObj,_) :- atom(Obj), !,$check_obj_for_load_foreign_files113,3399 -'$check_obj_for_load_foreign_files'(Obj,NewObj,_) :- atom(Obj), !,$check_obj_for_load_foreign_files113,3399 -'$check_obj_for_load_foreign_files'(Obj,_,G) :-$check_obj_for_load_foreign_files120,3661 -'$check_obj_for_load_foreign_files'(Obj,_,G) :-$check_obj_for_load_foreign_files120,3661 -'$check_obj_for_load_foreign_files'(Obj,_,G) :-$check_obj_for_load_foreign_files120,3661 -'$check_libs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_libs_for_load_foreign_files123,3748 -'$check_libs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_libs_for_load_foreign_files123,3748 -'$check_libs_for_load_foreign_files'(V,_,G) :- var(V), !,$check_libs_for_load_foreign_files123,3748 -'$check_libs_for_load_foreign_files'([],[],_) :- !.$check_libs_for_load_foreign_files125,3843 -'$check_libs_for_load_foreign_files'([],[],_) :- !.$check_libs_for_load_foreign_files125,3843 -'$check_libs_for_load_foreign_files'([],[],_) :- !.$check_libs_for_load_foreign_files125,3843 -'$check_libs_for_load_foreign_files'([Lib|Libs],[NLib|NLibs],G) :- !,$check_libs_for_load_foreign_files126,3895 -'$check_libs_for_load_foreign_files'([Lib|Libs],[NLib|NLibs],G) :- !,$check_libs_for_load_foreign_files126,3895 -'$check_libs_for_load_foreign_files'([Lib|Libs],[NLib|NLibs],G) :- !,$check_libs_for_load_foreign_files126,3895 -'$check_libs_for_load_foreign_files'(Libs,_,G) :-$check_libs_for_load_foreign_files129,4068 -'$check_libs_for_load_foreign_files'(Libs,_,G) :-$check_libs_for_load_foreign_files129,4068 -'$check_libs_for_load_foreign_files'(Libs,_,G) :-$check_libs_for_load_foreign_files129,4068 -'$check_lib_for_load_foreign_files'(V,_,G) :- var(V), !,$check_lib_for_load_foreign_files132,4158 -'$check_lib_for_load_foreign_files'(V,_,G) :- var(V), !,$check_lib_for_load_foreign_files132,4158 -'$check_lib_for_load_foreign_files'(V,_,G) :- var(V), !,$check_lib_for_load_foreign_files132,4158 -'$check_lib_for_load_foreign_files'(Lib,NLib,_) :- atom(Lib), !,$check_lib_for_load_foreign_files134,4252 -'$check_lib_for_load_foreign_files'(Lib,NLib,_) :- atom(Lib), !,$check_lib_for_load_foreign_files134,4252 -'$check_lib_for_load_foreign_files'(Lib,NLib,_) :- atom(Lib), !,$check_lib_for_load_foreign_files134,4252 -'$check_lib_for_load_foreign_files'(Lib,_,G) :-$check_lib_for_load_foreign_files137,4387 -'$check_lib_for_load_foreign_files'(Lib,_,G) :-$check_lib_for_load_foreign_files137,4387 -'$check_lib_for_load_foreign_files'(Lib,_,G) :-$check_lib_for_load_foreign_files137,4387 -'$process_obj_suffix'(Obj,Obj) :-$process_obj_suffix140,4474 -'$process_obj_suffix'(Obj,Obj) :-$process_obj_suffix140,4474 -'$process_obj_suffix'(Obj,Obj) :-$process_obj_suffix140,4474 -'$process_obj_suffix'(Obj,NewObj) :-$process_obj_suffix143,4605 -'$process_obj_suffix'(Obj,NewObj) :-$process_obj_suffix143,4605 -'$process_obj_suffix'(Obj,NewObj) :-$process_obj_suffix143,4605 -'$checklib_prefix'(F,F) :- is_absolute_file_name(F), !.$checklib_prefix147,4743 -'$checklib_prefix'(F,F) :- is_absolute_file_name(F), !.$checklib_prefix147,4743 -'$checklib_prefix'(F,F) :- is_absolute_file_name(F), !.$checklib_prefix147,4743 -'$checklib_prefix'(F, F) :-$checklib_prefix148,4799 -'$checklib_prefix'(F, F) :-$checklib_prefix148,4799 -'$checklib_prefix'(F, F) :-$checklib_prefix148,4799 -'$checklib_prefix'(F, Lib) :-$checklib_prefix150,4858 -'$checklib_prefix'(F, Lib) :-$checklib_prefix150,4858 -'$checklib_prefix'(F, Lib) :-$checklib_prefix150,4858 -'$import_foreign'(F, M0, M) :-$import_foreign153,4916 -'$import_foreign'(F, M0, M) :-$import_foreign153,4916 -'$import_foreign'(F, M0, M) :-$import_foreign153,4916 -'$import_foreign'(_F, _M0, _M).$import_foreign160,5103 -'$import_foreign'(_F, _M0, _M)./p,predicate,predicate definition160,5103 -'$import_foreign'(_F, _M0, _M).$import_foreign160,5103 -'$check_entry_for_load_foreign_files'(V,G) :- var(V), !,$check_entry_for_load_foreign_files162,5136 -'$check_entry_for_load_foreign_files'(V,G) :- var(V), !,$check_entry_for_load_foreign_files162,5136 -'$check_entry_for_load_foreign_files'(V,G) :- var(V), !,$check_entry_for_load_foreign_files162,5136 -'$check_entry_for_load_foreign_files'(Entry,_) :- atom(Entry), !.$check_entry_for_load_foreign_files164,5230 -'$check_entry_for_load_foreign_files'(Entry,_) :- atom(Entry), !.$check_entry_for_load_foreign_files164,5230 -'$check_entry_for_load_foreign_files'(Entry,_) :- atom(Entry), !.$check_entry_for_load_foreign_files164,5230 -'$check_entry_for_load_foreign_files'(Entry,G) :-$check_entry_for_load_foreign_files165,5296 -'$check_entry_for_load_foreign_files'(Entry,G) :-$check_entry_for_load_foreign_files165,5296 -'$check_entry_for_load_foreign_files'(Entry,G) :-$check_entry_for_load_foreign_files165,5296 -dlerror().dlerror178,5852 -open_shared_object(File, Handle) :-open_shared_object182,5868 -open_shared_object(File, Handle) :-open_shared_object182,5868 -open_shared_object(File, Handle) :-open_shared_object182,5868 -open_shared_object(File, Opts, Handle) :-open_shared_object199,6509 -open_shared_object(File, Opts, Handle) :-open_shared_object199,6509 -open_shared_object(File, Opts, Handle) :-open_shared_object199,6509 -'$open_shared_opts'(Opts, G, _OptsI) :-$open_shared_opts205,6783 -'$open_shared_opts'(Opts, G, _OptsI) :-$open_shared_opts205,6783 -'$open_shared_opts'(Opts, G, _OptsI) :-$open_shared_opts205,6783 -'$open_shared_opts'([], _, 0) :- !.$open_shared_opts208,6875 -'$open_shared_opts'([], _, 0) :- !.$open_shared_opts208,6875 -'$open_shared_opts'([], _, 0) :- !.$open_shared_opts208,6875 -'$open_shared_opts'([Opt|Opts], G, V) :-$open_shared_opts209,6911 -'$open_shared_opts'([Opt|Opts], G, V) :-$open_shared_opts209,6911 -'$open_shared_opts'([Opt|Opts], G, V) :-$open_shared_opts209,6911 -'$open_shared_opt'(Opt, G, _) :-$open_shared_opt214,7041 -'$open_shared_opt'(Opt, G, _) :-$open_shared_opt214,7041 -'$open_shared_opt'(Opt, G, _) :-$open_shared_opt214,7041 -'$open_shared_opt'(now, __, 1) :- !.$open_shared_opt217,7125 -'$open_shared_opt'(now, __, 1) :- !.$open_shared_opt217,7125 -'$open_shared_opt'(now, __, 1) :- !.$open_shared_opt217,7125 -'$open_shared_opt'(global, __, 2) :- !.$open_shared_opt218,7162 -'$open_shared_opt'(global, __, 2) :- !.$open_shared_opt218,7162 -'$open_shared_opt'(global, __, 2) :- !.$open_shared_opt218,7162 -'$open_shared_opt'(Opt, Goal, _) :-$open_shared_opt219,7202 -'$open_shared_opt'(Opt, Goal, _) :-$open_shared_opt219,7202 -'$open_shared_opt'(Opt, Goal, _) :-$open_shared_opt219,7202 -call_shared_object_function( Handle, Function) :-call_shared_object_function231,7622 -call_shared_object_function( Handle, Function) :-call_shared_object_function231,7622 -call_shared_object_function( Handle, Function) :-call_shared_object_function231,7622 - -pl/messages.yap,57955 -caller( error(_,Term), _) -->caller59,1641 -caller( error(_,Term), _) -->caller59,1641 -caller( error(_,Term), _) -->caller59,1641 -:- multifile prolog:message/3.multifile111,2780 -:- multifile prolog:message/3.multifile111,2780 -:- multifile user:message_hook/3.multifile113,2812 -:- multifile user:message_hook/3.multifile113,2812 -prolog:message_to_string(Event, Message) :-message_to_string124,3001 -prolog:message_to_string(Event, Message) :-message_to_string124,3001 -compose_message( Term, Level ) -->compose_message134,3415 -compose_message( Term, Level ) -->compose_message134,3415 -compose_message( Term, Level ) -->compose_message134,3415 -compose_message( query(_QueryResult,_), _Level) -->compose_message138,3500 -compose_message( query(_QueryResult,_), _Level) -->compose_message138,3500 -compose_message( query(_QueryResult,_), _Level) -->compose_message138,3500 -compose_message( absolute_file_path(File), _Level) -->compose_message140,3557 -compose_message( absolute_file_path(File), _Level) -->compose_message140,3557 -compose_message( absolute_file_path(File), _Level) -->compose_message140,3557 -compose_message( absolute_file_path(Msg, Args), _Level) -->compose_message142,3655 -compose_message( absolute_file_path(Msg, Args), _Level) -->compose_message142,3655 -compose_message( absolute_file_path(Msg, Args), _Level) -->compose_message142,3655 -compose_message( arguments([]), _Level) -->compose_message146,3758 -compose_message( arguments([]), _Level) -->compose_message146,3758 -compose_message( arguments([]), _Level) -->compose_message146,3758 -compose_message( arguments([A|As]), Level) -->compose_message148,3807 -compose_message( arguments([A|As]), Level) -->compose_message148,3807 -compose_message( arguments([A|As]), Level) -->compose_message148,3807 -compose_message( ancestors([]), _Level) -->compose_message152,3923 -compose_message( ancestors([]), _Level) -->compose_message152,3923 -compose_message( ancestors([]), _Level) -->compose_message152,3923 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,already), _Level) -->compose_message154,3999 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,already), _Level) -->compose_message154,3999 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,already), _Level) -->compose_message154,3999 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,ok), _Level) -->compose_message156,4134 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,ok), _Level) -->compose_message156,4134 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),add,ok), _Level) -->compose_message156,4134 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),remove,last), _Level) -->compose_message158,4249 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),remove,last), _Level) -->compose_message158,4249 -compose_message( breakp(bp(debugger,_,_,M:F/N,_),remove,last), _Level) -->compose_message158,4249 -compose_message( breakp(no,breakpoint_for,M:F/N), _Level) -->compose_message160,4373 -compose_message( breakp(no,breakpoint_for,M:F/N), _Level) -->compose_message160,4373 -compose_message( breakp(no,breakpoint_for,M:F/N), _Level) -->compose_message160,4373 -compose_message( breakpoints([]), _Level) -->compose_message162,4488 -compose_message( breakpoints([]), _Level) -->compose_message162,4488 -compose_message( breakpoints([]), _Level) -->compose_message162,4488 -compose_message( breakpoints(L), _Level) -->compose_message164,4571 -compose_message( breakpoints(L), _Level) -->compose_message164,4571 -compose_message( breakpoints(L), _Level) -->compose_message164,4571 -compose_message( clauses_not_together(P), _Level) -->compose_message167,4662 -compose_message( clauses_not_together(P), _Level) -->compose_message167,4662 -compose_message( clauses_not_together(P), _Level) -->compose_message167,4662 -compose_message( debug(debug), _Level) -->compose_message169,4762 -compose_message( debug(debug), _Level) -->compose_message169,4762 -compose_message( debug(debug), _Level) -->compose_message169,4762 -compose_message( debug(off), _Level) -->compose_message171,4833 -compose_message( debug(off), _Level) -->compose_message171,4833 -compose_message( debug(off), _Level) -->compose_message171,4833 -compose_message( debug(trace), _Level) -->compose_message173,4902 -compose_message( debug(trace), _Level) -->compose_message173,4902 -compose_message( debug(trace), _Level) -->compose_message173,4902 -compose_message( declaration(Args,Action), _Level) -->compose_message175,4972 -compose_message( declaration(Args,Action), _Level) -->compose_message175,4972 -compose_message( declaration(Args,Action), _Level) -->compose_message175,4972 -compose_message( defined_elsewhere(P,F), _Level) -->compose_message177,5070 -compose_message( defined_elsewhere(P,F), _Level) -->compose_message177,5070 -compose_message( defined_elsewhere(P,F), _Level) -->compose_message177,5070 -compose_message( functionality(Library), _Level) -->compose_message179,5183 -compose_message( functionality(Library), _Level) -->compose_message179,5183 -compose_message( functionality(Library), _Level) -->compose_message179,5183 -compose_message( import(Pred,To,From,private), _Level) -->compose_message181,5274 -compose_message( import(Pred,To,From,private), _Level) -->compose_message181,5274 -compose_message( import(Pred,To,From,private), _Level) -->compose_message181,5274 -compose_message( redefine_imported(M,M0,PI), _Level) -->compose_message183,5399 -compose_message( redefine_imported(M,M0,PI), _Level) -->compose_message183,5399 -compose_message( redefine_imported(M,M0,PI), _Level) -->compose_message183,5399 -compose_message( leash([]), _Level) -->compose_message186,5581 -compose_message( leash([]), _Level) -->compose_message186,5581 -compose_message( leash([]), _Level) -->compose_message186,5581 -compose_message( leash([A|B]), _Level) -->compose_message188,5642 -compose_message( leash([A|B]), _Level) -->compose_message188,5642 -compose_message( leash([A|B]), _Level) -->compose_message188,5642 -compose_message( no, _Level) -->compose_message190,5723 -compose_message( no, _Level) -->compose_message190,5723 -compose_message( no, _Level) -->compose_message190,5723 -compose_message( no_match(P), _Level) -->compose_message192,5773 -compose_message( no_match(P), _Level) -->compose_message192,5773 -compose_message( no_match(P), _Level) -->compose_message192,5773 -compose_message( leash([A|B]), _Level) -->compose_message194,5859 -compose_message( leash([A|B]), _Level) -->compose_message194,5859 -compose_message( leash([A|B]), _Level) -->compose_message194,5859 -compose_message( halt, _Level) --> !,compose_message196,5941 -compose_message( halt, _Level) --> !,compose_message196,5941 -compose_message( halt, _Level) --> !,compose_message196,5941 -compose_message( false, _Level) --> !,compose_message198,6012 -compose_message( false, _Level) --> !,compose_message198,6012 -compose_message( false, _Level) --> !,compose_message198,6012 -compose_message( '$abort', _Level) --> !,compose_message200,6069 -compose_message( '$abort', _Level) --> !,compose_message200,6069 -compose_message( '$abort', _Level) --> !,compose_message200,6069 -compose_message( abort(user), _Level) --> !,compose_message202,6144 -compose_message( abort(user), _Level) --> !,compose_message202,6144 -compose_message( abort(user), _Level) --> !,compose_message202,6144 -compose_message( loading(_,F), _Level) --> { F == user }, !.compose_message204,6224 -compose_message( loading(_,F), _Level) --> { F == user }, !.compose_message204,6224 -compose_message( loading(_,F), _Level) --> { F == user }, !.compose_message204,6224 -compose_message( loading(What,FileName), _Level) --> !,compose_message205,6285 -compose_message( loading(What,FileName), _Level) --> !,compose_message205,6285 -compose_message( loading(What,FileName), _Level) --> !,compose_message205,6285 -compose_message( loaded(_,user,_,_,_), _Level) --> !.compose_message207,6377 -compose_message( loaded(_,user,_,_,_), _Level) --> !.compose_message207,6377 -compose_message( loaded(_,user,_,_,_), _Level) --> !.compose_message207,6377 -compose_message( loaded(included,AbsFileName,Mod,Time,Space), _Level) --> !,compose_message208,6431 -compose_message( loaded(included,AbsFileName,Mod,Time,Space), _Level) --> !,compose_message208,6431 -compose_message( loaded(included,AbsFileName,Mod,Time,Space), _Level) --> !,compose_message208,6431 -compose_message( loaded(What,AbsoluteFileName,Mod,Time,Space), _Level) --> !,compose_message211,6597 -compose_message( loaded(What,AbsoluteFileName,Mod,Time,Space), _Level) --> !,compose_message211,6597 -compose_message( loaded(What,AbsoluteFileName,Mod,Time,Space), _Level) --> !,compose_message211,6597 -compose_message(trace_command(-1), _Leve) -->compose_message214,6769 -compose_message(trace_command(-1), _Leve) -->compose_message214,6769 -compose_message(trace_command(-1), _Leve) -->compose_message214,6769 -compose_message(trace_command(C), _Leve) -->compose_message216,6861 -compose_message(trace_command(C), _Leve) -->compose_message216,6861 -compose_message(trace_command(C), _Leve) -->compose_message216,6861 -compose_message(trace_help, _Leve) -->compose_message218,6956 -compose_message(trace_help, _Leve) -->compose_message218,6956 -compose_message(trace_help, _Leve) -->compose_message218,6956 -compose_message(version(Version), _Leve) -->compose_message220,7059 -compose_message(version(Version), _Leve) -->compose_message220,7059 -compose_message(version(Version), _Leve) -->compose_message220,7059 -compose_message(myddas_version(Version), _Leve) -->compose_message222,7127 -compose_message(myddas_version(Version), _Leve) -->compose_message222,7127 -compose_message(myddas_version(Version), _Leve) -->compose_message222,7127 -compose_message(yes, _Level) --> !,compose_message224,7217 -compose_message(yes, _Level) --> !,compose_message224,7217 -compose_message(yes, _Level) --> !,compose_message224,7217 -compose_message(Term, Level) -->compose_message226,7271 -compose_message(Term, Level) -->compose_message226,7271 -compose_message(Term, Level) -->compose_message226,7271 -compose_message(Term, Level) -->compose_message235,7490 -compose_message(Term, Level) -->compose_message235,7490 -compose_message(Term, Level) -->compose_message235,7490 -location(error(syntax_error(_),info(between(_,LN,_), FileName, _)), _ , _) -->location241,7648 -location(error(syntax_error(_),info(between(_,LN,_), FileName, _)), _ , _) -->location241,7648 -location(error(syntax_error(_),info(between(_,LN,_), FileName, _)), _ , _) -->location241,7648 -location(error(style_check(style_check(_,LN,FileName,_ ) ),_), _ , _) -->location245,7770 -location(error(style_check(style_check(_,LN,FileName,_ ) ),_), _ , _) -->location245,7770 -location(error(style_check(style_check(_,LN,FileName,_ ) ),_), _ , _) -->location245,7770 -location( error(_,Term), Level, LC ) -->location248,7882 -location( error(_,Term), Level, LC ) -->location248,7882 -location( error(_,Term), Level, LC ) -->location248,7882 -location( error(_,Term), Level, LC ) -->location254,8159 -location( error(_,Term), Level, LC ) -->location254,8159 -location( error(_,Term), Level, LC ) -->location254,8159 -main_message(error(Msg,Info), _, _) --> {var(Info)}, !,main_message260,8443 -main_message(error(Msg,Info), _, _) --> {var(Info)}, !,main_message260,8443 -main_message(error(Msg,Info), _, _) --> {var(Info)}, !,main_message260,8443 -main_message( error(syntax_error(Msg),info(between(L0,LM,LF),_Stream,Term)), Level, LC ) -->main_message262,8557 -main_message( error(syntax_error(Msg),info(between(L0,LM,LF),_Stream,Term)), Level, LC ) -->main_message262,8557 -main_message( error(syntax_error(Msg),info(between(L0,LM,LF),_Stream,Term)), Level, LC ) -->main_message262,8557 -main_message(error(style_check(style_check(singleton(SVs),_Pos,_File,P)),_), Level, _LC) -->main_message273,8864 -main_message(error(style_check(style_check(singleton(SVs),_Pos,_File,P)),_), Level, _LC) -->main_message273,8864 -main_message(error(style_check(style_check(singleton(SVs),_Pos,_File,P)),_), Level, _LC) -->main_message273,8864 -main_message(error(style_check(style_check(multiple(N,A,Mod,I0),_Pos,File,_P)),_), Level, _LC) -->main_message281,9157 -main_message(error(style_check(style_check(multiple(N,A,Mod,I0),_Pos,File,_P)),_), Level, _LC) -->main_message281,9157 -main_message(error(style_check(style_check(multiple(N,A,Mod,I0),_Pos,File,_P)),_), Level, _LC) -->main_message281,9157 -main_message(error(style_check(style_check(discontiguous(N,A,Mod),_S,_W,_P)),_) , Level, _LC)-->main_message284,9331 -main_message(error(style_check(style_check(discontiguous(N,A,Mod),_S,_W,_P)),_) , Level, _LC)-->main_message284,9331 -main_message(error(style_check(style_check(discontiguous(N,A,Mod),_S,_W,_P)),_) , Level, _LC)-->main_message284,9331 -main_message(error(consistency_error(Who)), Level, _LC) -->main_message287,9500 -main_message(error(consistency_error(Who)), Level, _LC) -->main_message287,9500 -main_message(error(consistency_error(Who)), Level, _LC) -->main_message287,9500 -main_message(error(domain_error(Who , Type), _Where), Level, _LC) -->main_message290,9634 -main_message(error(domain_error(Who , Type), _Where), Level, _LC) -->main_message290,9634 -main_message(error(domain_error(Who , Type), _Where), Level, _LC) -->main_message290,9634 -main_message(error(existence_error(Type , Who), _Where), Level, _LC) -->main_message299,10145 -main_message(error(existence_error(Type , Who), _Where), Level, _LC) -->main_message299,10145 -main_message(error(existence_error(Type , Who), _Where), Level, _LC) -->main_message299,10145 -main_message(error(permission_error(Op, Type, Id), _Where), Level, _LC) -->main_message302,10290 -main_message(error(permission_error(Op, Type, Id), _Where), Level, _LC) -->main_message302,10290 -main_message(error(permission_error(Op, Type, Id), _Where), Level, _LC) -->main_message302,10290 -main_message(error(instantiation_error, _Where), Level, _LC) -->main_message304,10435 -main_message(error(instantiation_error, _Where), Level, _LC) -->main_message304,10435 -main_message(error(instantiation_error, _Where), Level, _LC) -->main_message304,10435 -main_message(error(representation_error(Type)), Level, _LC) -->main_message306,10544 -main_message(error(representation_error(Type)), Level, _LC) -->main_message306,10544 -main_message(error(representation_error(Type)), Level, _LC) -->main_message306,10544 -main_message(error(type_error(Type,Who), _What), Level, _LC) -->main_message308,10668 -main_message(error(type_error(Type,Who), _What), Level, _LC) -->main_message308,10668 -main_message(error(type_error(Type,Who), _What), Level, _LC) -->main_message308,10668 -main_message(error(system_error(Who), _What), Level, _LC) -->main_message311,10797 -main_message(error(system_error(Who), _What), Level, _LC) -->main_message311,10797 -main_message(error(system_error(Who), _What), Level, _LC) -->main_message311,10797 -main_message(error(uninstantiation_error(T),_), Level, _LC) -->main_message314,10903 -main_message(error(uninstantiation_error(T),_), Level, _LC) -->main_message314,10903 -main_message(error(uninstantiation_error(T),_), Level, _LC) -->main_message314,10903 -display_consulting( F, Level, LC) -->display_consulting317,11034 -display_consulting( F, Level, LC) -->display_consulting317,11034 -display_consulting( F, Level, LC) -->display_consulting317,11034 -display_consulting(_F, _, _LC) -->display_consulting323,11187 -display_consulting(_F, _, _LC) -->display_consulting323,11187 -display_consulting(_F, _, _LC) -->display_consulting323,11187 -caller( error(_,Term), _) -->caller326,11230 -caller( error(_,Term), _) -->caller326,11230 -caller( error(_,Term), _) -->caller326,11230 -caller( error(_,Term), _) -->caller334,11498 -caller( error(_,Term), _) -->caller334,11498 -caller( error(_,Term), _) -->caller334,11498 -caller( error(_,Term), _) -->caller339,11676 -caller( error(_,Term), _) -->caller339,11676 -caller( error(_,Term), _) -->caller339,11676 -caller( _, _) -->caller344,11788 -caller( _, _) -->caller344,11788 -caller( _, _) -->caller344,11788 -c_goal( error(_,Term), Level ) -->c_goal347,11812 -c_goal( error(_,Term), Level ) -->c_goal347,11812 -c_goal( error(_,Term), Level ) -->c_goal347,11812 -c_goal( _, _Level ) --> [].c_goal352,11993 -c_goal( _, _Level ) --> [].c_goal352,11993 -c_goal( _, _Level ) --> [].c_goal352,11993 -prolog_message(X) -->prolog_message355,12023 -prolog_message(X) -->prolog_message355,12023 -prolog_message(X) -->prolog_message355,12023 -system_message(error(Msg,Info)) -->system_message358,12066 -system_message(error(Msg,Info)) -->system_message358,12066 -system_message(error(Msg,Info)) -->system_message358,12066 -system_message(error(consistency_error(Who),Where)) -->system_message361,12178 -system_message(error(consistency_error(Who),Where)) -->system_message361,12178 -system_message(error(consistency_error(Who),Where)) -->system_message361,12178 -system_message(error(context_error(Goal,Who),Where)) -->system_message363,12320 -system_message(error(context_error(Goal,Who),Where)) -->system_message363,12320 -system_message(error(context_error(Goal,Who),Where)) -->system_message363,12320 -system_message(error(domain_error(DomainType,Opt), Where)) -->system_message365,12441 -system_message(error(domain_error(DomainType,Opt), Where)) -->system_message365,12441 -system_message(error(domain_error(DomainType,Opt), Where)) -->system_message365,12441 -system_message(error(format_argument_type(Type,Arg), Where)) -->system_message368,12570 -system_message(error(format_argument_type(Type,Arg), Where)) -->system_message368,12570 -system_message(error(format_argument_type(Type,Arg), Where)) -->system_message368,12570 -system_message(error(existence_error(directory,Key), Where)) -->system_message370,12712 -system_message(error(existence_error(directory,Key), Where)) -->system_message370,12712 -system_message(error(existence_error(directory,Key), Where)) -->system_message370,12712 -system_message(error(existence_error(key,Key), Where)) -->system_message372,12849 -system_message(error(existence_error(key,Key), Where)) -->system_message372,12849 -system_message(error(existence_error(key,Key), Where)) -->system_message372,12849 -system_message(error(existence_error(mutex,Key), Where)) -->system_message374,12974 -system_message(error(existence_error(mutex,Key), Where)) -->system_message374,12974 -system_message(error(existence_error(mutex,Key), Where)) -->system_message374,12974 -system_message(existence_error(prolog_flag,F)) -->system_message376,13103 -system_message(existence_error(prolog_flag,F)) -->system_message376,13103 -system_message(existence_error(prolog_flag,F)) -->system_message376,13103 -system_message(error(existence_error(prolog_flag,P), Where)) --> !,system_message378,13245 -system_message(error(existence_error(prolog_flag,P), Where)) --> !,system_message378,13245 -system_message(error(existence_error(prolog_flag,P), Where)) --> !,system_message378,13245 -system_message(error(existence_error(procedure,P), context(Call,Parent))) --> !,system_message380,13382 -system_message(error(existence_error(procedure,P), context(Call,Parent))) --> !,system_message380,13382 -system_message(error(existence_error(procedure,P), context(Call,Parent))) --> !,system_message380,13382 -system_message(error(existence_error(stream,Stream), Where)) -->system_message382,13587 -system_message(error(existence_error(stream,Stream), Where)) -->system_message382,13587 -system_message(error(existence_error(stream,Stream), Where)) -->system_message382,13587 -system_message(error(existence_error(thread,Thread), Where)) -->system_message384,13720 -system_message(error(existence_error(thread,Thread), Where)) -->system_message384,13720 -system_message(error(existence_error(thread,Thread), Where)) -->system_message384,13720 -system_message(error(existence_error(variable,Var), Where)) -->system_message386,13855 -system_message(error(existence_error(variable,Var), Where)) -->system_message386,13855 -system_message(error(existence_error(variable,Var), Where)) -->system_message386,13855 -system_message(error(existence_error(Name,F), W)) -->system_message388,13989 -system_message(error(existence_error(Name,F), W)) -->system_message388,13989 -system_message(error(existence_error(Name,F), W)) -->system_message388,13989 -system_message(error(evaluation_error(int_overflow), Where)) -->system_message391,14141 -system_message(error(evaluation_error(int_overflow), Where)) -->system_message391,14141 -system_message(error(evaluation_error(int_overflow), Where)) -->system_message391,14141 -system_message(error(evaluation_error(float_overflow), Where)) -->system_message393,14251 -system_message(error(evaluation_error(float_overflow), Where)) -->system_message393,14251 -system_message(error(evaluation_error(float_overflow), Where)) -->system_message393,14251 -system_message(error(evaluation_error(undefined), Where)) -->system_message395,14370 -system_message(error(evaluation_error(undefined), Where)) -->system_message395,14370 -system_message(error(evaluation_error(undefined), Where)) -->system_message395,14370 -system_message(error(evaluation_error(underflow), Where)) -->system_message397,14488 -system_message(error(evaluation_error(underflow), Where)) -->system_message397,14488 -system_message(error(evaluation_error(underflow), Where)) -->system_message397,14488 -system_message(error(evaluation_error(float_underflow), Where)) -->system_message399,14588 -system_message(error(evaluation_error(float_underflow), Where)) -->system_message399,14588 -system_message(error(evaluation_error(float_underflow), Where)) -->system_message399,14588 -system_message(error(evaluation_error(zero_divisor), Where)) -->system_message401,14709 -system_message(error(evaluation_error(zero_divisor), Where)) -->system_message401,14709 -system_message(error(evaluation_error(zero_divisor), Where)) -->system_message401,14709 -system_message(error(not_implemented(Type, What), Where)) -->system_message403,14815 -system_message(error(not_implemented(Type, What), Where)) -->system_message403,14815 -system_message(error(not_implemented(Type, What), Where)) -->system_message403,14815 -system_message(error(operating_SYSTEM_ERROR_INTERNAL, Where)) -->system_message405,14934 -system_message(error(operating_SYSTEM_ERROR_INTERNAL, Where)) -->system_message405,14934 -system_message(error(operating_SYSTEM_ERROR_INTERNAL, Where)) -->system_message405,14934 -system_message(error(out_of_heap_error, Where)) -->system_message407,15045 -system_message(error(out_of_heap_error, Where)) -->system_message407,15045 -system_message(error(out_of_heap_error, Where)) -->system_message407,15045 -system_message(error(out_of_stack_error, Where)) -->system_message409,15147 -system_message(error(out_of_stack_error, Where)) -->system_message409,15147 -system_message(error(out_of_stack_error, Where)) -->system_message409,15147 -system_message(error(out_of_trail_error, Where)) -->system_message411,15247 -system_message(error(out_of_trail_error, Where)) -->system_message411,15247 -system_message(error(out_of_trail_error, Where)) -->system_message411,15247 -system_message(error(out_of_attvars_error, Where)) -->system_message413,15347 -system_message(error(out_of_attvars_error, Where)) -->system_message413,15347 -system_message(error(out_of_attvars_error, Where)) -->system_message413,15347 -system_message(error(out_of_auxspace_error, Where)) -->system_message415,15449 -system_message(error(out_of_auxspace_error, Where)) -->system_message415,15449 -system_message(error(out_of_auxspace_error, Where)) -->system_message415,15449 -system_message(error(permission_error(access,private_procedure,P), Where)) -->system_message417,15562 -system_message(error(permission_error(access,private_procedure,P), Where)) -->system_message417,15562 -system_message(error(permission_error(access,private_procedure,P), Where)) -->system_message417,15562 -system_message(error(permission_error(access,static_procedure,P), Where)) -->system_message419,15709 -system_message(error(permission_error(access,static_procedure,P), Where)) -->system_message419,15709 -system_message(error(permission_error(access,static_procedure,P), Where)) -->system_message419,15709 -system_message(error(permission_error(alias,new,P), Where)) -->system_message421,15863 -system_message(error(permission_error(alias,new,P), Where)) -->system_message421,15863 -system_message(error(permission_error(alias,new,P), Where)) -->system_message421,15863 -system_message(error(permission_error(create,Name,P), Where)) -->system_message423,15992 -system_message(error(permission_error(create,Name,P), Where)) -->system_message423,15992 -system_message(error(permission_error(create,Name,P), Where)) -->system_message423,15992 -system_message(error(permission_error(import,M1:I,redefined,SecondMod), Where)) -->system_message425,16125 -system_message(error(permission_error(import,M1:I,redefined,SecondMod), Where)) -->system_message425,16125 -system_message(error(permission_error(import,M1:I,redefined,SecondMod), Where)) -->system_message425,16125 -system_message(error(permission_error(input,binary_stream,Stream), Where)) -->system_message427,16305 -system_message(error(permission_error(input,binary_stream,Stream), Where)) -->system_message427,16305 -system_message(error(permission_error(input,binary_stream,Stream), Where)) -->system_message427,16305 -system_message(error(permission_error(input,closed_stream,Stream), Where)) -->system_message429,16465 -system_message(error(permission_error(input,closed_stream,Stream), Where)) -->system_message429,16465 -system_message(error(permission_error(input,closed_stream,Stream), Where)) -->system_message429,16465 -system_message(error(permission_error(input,past_end_of_stream,Stream), Where)) -->system_message431,16628 -system_message(error(permission_error(input,past_end_of_stream,Stream), Where)) -->system_message431,16628 -system_message(error(permission_error(input,past_end_of_stream,Stream), Where)) -->system_message431,16628 -system_message(error(permission_error(input,stream,Stream), Where)) -->system_message433,16781 -system_message(error(permission_error(input,stream,Stream), Where)) -->system_message433,16781 -system_message(error(permission_error(input,stream,Stream), Where)) -->system_message433,16781 -system_message(error(permission_error(input,text_stream,Stream), Where)) -->system_message435,16920 -system_message(error(permission_error(input,text_stream,Stream), Where)) -->system_message435,16920 -system_message(error(permission_error(input,text_stream,Stream), Where)) -->system_message435,16920 -system_message(error(permission_error(modify,dynamic_procedure,_), Where)) -->system_message437,17076 -system_message(error(permission_error(modify,dynamic_procedure,_), Where)) -->system_message437,17076 -system_message(error(permission_error(modify,dynamic_procedure,_), Where)) -->system_message437,17076 -system_message(error(permission_error(modify,flag,W), _)) -->system_message439,17225 -system_message(error(permission_error(modify,flag,W), _)) -->system_message439,17225 -system_message(error(permission_error(modify,flag,W), _)) -->system_message439,17225 -system_message(error(permission_error(modify,operator,W), Q)) -->system_message441,17341 -system_message(error(permission_error(modify,operator,W), Q)) -->system_message441,17341 -system_message(error(permission_error(modify,operator,W), Q)) -->system_message441,17341 -system_message(error(permission_error(modify,dynamic_procedure,F), Where)) -->system_message443,17471 -system_message(error(permission_error(modify,dynamic_procedure,F), Where)) -->system_message443,17471 -system_message(error(permission_error(modify,dynamic_procedure,F), Where)) -->system_message443,17471 -system_message(error(permission_error(modify,static_procedure,F), Where)) -->system_message445,17623 -system_message(error(permission_error(modify,static_procedure,F), Where)) -->system_message445,17623 -system_message(error(permission_error(modify,static_procedure,F), Where)) -->system_message445,17623 -system_message(error(permission_error(modify,static_procedure_in_use,_), Where)) -->system_message447,17773 -system_message(error(permission_error(modify,static_procedure_in_use,_), Where)) -->system_message447,17773 -system_message(error(permission_error(modify,static_procedure_in_use,_), Where)) -->system_message447,17773 -system_message(error(permission_error(modify,table,P), _)) -->system_message449,17934 -system_message(error(permission_error(modify,table,P), _)) -->system_message449,17934 -system_message(error(permission_error(modify,table,P), _)) -->system_message449,17934 -system_message(error(permission_error(module,redefined,Mod), Who)) -->system_message451,18055 -system_message(error(permission_error(module,redefined,Mod), Who)) -->system_message451,18055 -system_message(error(permission_error(module,redefined,Mod), Who)) -->system_message451,18055 -system_message(error(permission_error(open,source_sink,Stream), Where)) -->system_message453,18208 -system_message(error(permission_error(open,source_sink,Stream), Where)) -->system_message453,18208 -system_message(error(permission_error(open,source_sink,Stream), Where)) -->system_message453,18208 -system_message(error(permission_error(output,binary_stream,Stream), Where)) -->system_message455,18351 -system_message(error(permission_error(output,binary_stream,Stream), Where)) -->system_message455,18351 -system_message(error(permission_error(output,binary_stream,Stream), Where)) -->system_message455,18351 -system_message(error(permission_error(output,stream,Stream), Where)) -->system_message458,18512 -system_message(error(permission_error(output,stream,Stream), Where)) -->system_message458,18512 -system_message(error(permission_error(output,stream,Stream), Where)) -->system_message458,18512 -system_message(error(permission_error(output,text_stream,Stream), Where)) -->system_message460,18651 -system_message(error(permission_error(output,text_stream,Stream), Where)) -->system_message460,18651 -system_message(error(permission_error(output,text_stream,Stream), Where)) -->system_message460,18651 -system_message(error(permission_error(resize,array,P), Where)) -->system_message462,18807 -system_message(error(permission_error(resize,array,P), Where)) -->system_message462,18807 -system_message(error(permission_error(resize,array,P), Where)) -->system_message462,18807 -system_message(error(permission_error(unlock,mutex,P), Where)) -->system_message464,18939 -system_message(error(permission_error(unlock,mutex,P), Where)) -->system_message464,18939 -system_message(error(permission_error(unlock,mutex,P), Where)) -->system_message464,18939 -system_message(error(representation_error(character), Where)) -->system_message466,19071 -system_message(error(representation_error(character), Where)) -->system_message466,19071 -system_message(error(representation_error(character), Where)) -->system_message466,19071 -system_message(error(representation_error(character_code), Where)) -->system_message468,19200 -system_message(error(representation_error(character_code), Where)) -->system_message468,19200 -system_message(error(representation_error(character_code), Where)) -->system_message468,19200 -system_message(error(representation_error(max_arity), Where)) -->system_message470,19339 -system_message(error(representation_error(max_arity), Where)) -->system_message470,19339 -system_message(error(representation_error(max_arity), Where)) -->system_message470,19339 -system_message(error(representation_error(variable), Where)) -->system_message472,19464 -system_message(error(representation_error(variable), Where)) -->system_message472,19464 -system_message(error(representation_error(variable), Where)) -->system_message472,19464 -system_message(error(resource_error(code_space), Where)) -->system_message474,19594 -system_message(error(resource_error(code_space), Where)) -->system_message474,19594 -system_message(error(resource_error(code_space), Where)) -->system_message474,19594 -system_message(error(resource_error(huge_int), Where)) -->system_message476,19711 -system_message(error(resource_error(huge_int), Where)) -->system_message476,19711 -system_message(error(resource_error(huge_int), Where)) -->system_message476,19711 -system_message(error(resource_error(memory), Where)) -->system_message478,19843 -system_message(error(resource_error(memory), Where)) -->system_message478,19843 -system_message(error(resource_error(memory), Where)) -->system_message478,19843 -system_message(error(resource_error(stack), Where)) -->system_message480,19960 -system_message(error(resource_error(stack), Where)) -->system_message480,19960 -system_message(error(resource_error(stack), Where)) -->system_message480,19960 -system_message(error(resource_error(streams), Where)) -->system_message482,20067 -system_message(error(resource_error(streams), Where)) -->system_message482,20067 -system_message(error(resource_error(streams), Where)) -->system_message482,20067 -system_message(error(resource_error(threads), Where)) -->system_message484,20188 -system_message(error(resource_error(threads), Where)) -->system_message484,20188 -system_message(error(resource_error(threads), Where)) -->system_message484,20188 -system_message(error(resource_error(trail), Where)) -->system_message486,20302 -system_message(error(resource_error(trail), Where)) -->system_message486,20302 -system_message(error(resource_error(trail), Where)) -->system_message486,20302 -system_message(error(signal(SIG,_), _)) -->system_message488,20415 -system_message(error(signal(SIG,_), _)) -->system_message488,20415 -system_message(error(signal(SIG,_), _)) -->system_message488,20415 -system_message(error(unhandled_exception,Throw)) -->system_message491,20527 -system_message(error(unhandled_exception,Throw)) -->system_message491,20527 -system_message(error(unhandled_exception,Throw)) -->system_message491,20527 -system_message(error(uninstantiation_error(TE), _Where)) -->system_message493,20639 -system_message(error(uninstantiation_error(TE), _Where)) -->system_message493,20639 -system_message(error(uninstantiation_error(TE), _Where)) -->system_message493,20639 -system_message(Messg) -->system_message495,20769 -system_message(Messg) -->system_message495,20769 -system_message(Messg) -->system_message495,20769 -domain_error(array_overflow, Opt) --> !,domain_error499,20816 -domain_error(array_overflow, Opt) --> !,domain_error499,20816 -domain_error(array_overflow, Opt) --> !,domain_error499,20816 -domain_error(array_type, Opt) --> !,domain_error501,20905 -domain_error(array_type, Opt) --> !,domain_error501,20905 -domain_error(array_type, Opt) --> !,domain_error501,20905 -domain_error(builtin_procedure, _) --> !,domain_error503,20985 -domain_error(builtin_procedure, _) --> !,domain_error503,20985 -domain_error(builtin_procedure, _) --> !,domain_error503,20985 -domain_error(character_code_list, Opt) --> !,domain_error505,21063 -domain_error(character_code_list, Opt) --> !,domain_error505,21063 -domain_error(character_code_list, Opt) --> !,domain_error505,21063 -domain_error(close_option, Opt) --> !,domain_error507,21150 -domain_error(close_option, Opt) --> !,domain_error507,21150 -domain_error(close_option, Opt) --> !,domain_error507,21150 -domain_error(delete_file_option, Opt) --> !,domain_error509,21229 -domain_error(delete_file_option, Opt) --> !,domain_error509,21229 -domain_error(delete_file_option, Opt) --> !,domain_error509,21229 -domain_error(encoding, Opt) --> !,domain_error511,21317 -domain_error(encoding, Opt) --> !,domain_error511,21317 -domain_error(encoding, Opt) --> !,domain_error511,21317 -domain_error(flag_value, [Opt,Flag]) --> !,domain_error513,21388 -domain_error(flag_value, [Opt,Flag]) --> !,domain_error513,21388 -domain_error(flag_value, [Opt,Flag]) --> !,domain_error513,21388 -domain_error(flag_value, Opt) --> !,domain_error515,21482 -domain_error(flag_value, Opt) --> !,domain_error515,21482 -domain_error(flag_value, Opt) --> !,domain_error515,21482 -domain_error(io_mode, Opt) --> !,domain_error517,21561 -domain_error(io_mode, Opt) --> !,domain_error517,21561 -domain_error(io_mode, Opt) --> !,domain_error517,21561 -domain_error(mutable, Opt) --> !,domain_error519,21630 -domain_error(mutable, Opt) --> !,domain_error519,21630 -domain_error(mutable, Opt) --> !,domain_error519,21630 -domain_error(module_decl_options, Opt) --> !,domain_error521,21702 -domain_error(module_decl_options, Opt) --> !,domain_error521,21702 -domain_error(module_decl_options, Opt) --> !,domain_error521,21702 -domain_error(non_empty_list, Opt) --> !,domain_error523,21808 -domain_error(non_empty_list, Opt) --> !,domain_error523,21808 -domain_error(non_empty_list, Opt) --> !,domain_error523,21808 -domain_error(not_less_than_zero, Opt) --> !,domain_error525,21882 -domain_error(not_less_than_zero, Opt) --> !,domain_error525,21882 -domain_error(not_less_than_zero, Opt) --> !,domain_error525,21882 -domain_error(not_newline, Opt) --> !,domain_error527,21968 -domain_error(not_newline, Opt) --> !,domain_error527,21968 -domain_error(not_newline, Opt) --> !,domain_error527,21968 -domain_error(not_zero, Opt) --> !,domain_error529,22044 -domain_error(not_zero, Opt) --> !,domain_error529,22044 -domain_error(not_zero, Opt) --> !,domain_error529,22044 -domain_error(operator_priority, Opt) --> !,domain_error531,22127 -domain_error(operator_priority, Opt) --> !,domain_error531,22127 -domain_error(operator_priority, Opt) --> !,domain_error531,22127 -domain_error(operator_specifier, Opt) --> !,domain_error533,22216 -domain_error(operator_specifier, Opt) --> !,domain_error533,22216 -domain_error(operator_specifier, Opt) --> !,domain_error533,22216 -domain_error(out_of_range, Opt) --> !,domain_error535,22307 -domain_error(out_of_range, Opt) --> !,domain_error535,22307 -domain_error(out_of_range, Opt) --> !,domain_error535,22307 -domain_error(predicate_spec, Opt) --> !,domain_error537,22392 -domain_error(predicate_spec, Opt) --> !,domain_error537,22392 -domain_error(predicate_spec, Opt) --> !,domain_error537,22392 -domain_error(radix, Opt) --> !,domain_error539,22480 -domain_error(radix, Opt) --> !,domain_error539,22480 -domain_error(radix, Opt) --> !,domain_error539,22480 -domain_error(read_option, Opt) --> !,domain_error541,22545 -domain_error(read_option, Opt) --> !,domain_error541,22545 -domain_error(read_option, Opt) --> !,domain_error541,22545 -domain_error(semantics_indicator, Opt) --> !,domain_error543,22630 -domain_error(semantics_indicator, Opt) --> !,domain_error543,22630 -domain_error(semantics_indicator, Opt) --> !,domain_error543,22630 -domain_error(shift_count_overflow, Opt) --> !,domain_error545,22720 -domain_error(shift_count_overflow, Opt) --> !,domain_error545,22720 -domain_error(shift_count_overflow, Opt) --> !,domain_error545,22720 -domain_error(source_sink, Opt) --> !,domain_error547,22810 -domain_error(source_sink, Opt) --> !,domain_error547,22810 -domain_error(source_sink, Opt) --> !,domain_error547,22810 -domain_error(stream, Opt) --> !,domain_error549,22893 -domain_error(stream, Opt) --> !,domain_error549,22893 -domain_error(stream, Opt) --> !,domain_error549,22893 -domain_error(stream_or_alias, Opt) --> !,domain_error551,22961 -domain_error(stream_or_alias, Opt) --> !,domain_error551,22961 -domain_error(stream_or_alias, Opt) --> !,domain_error551,22961 -domain_error(stream_encoding, Opt) --> !,domain_error553,23049 -domain_error(stream_encoding, Opt) --> !,domain_error553,23049 -domain_error(stream_encoding, Opt) --> !,domain_error553,23049 -domain_error(stream_position, Opt) --> !,domain_error555,23145 -domain_error(stream_position, Opt) --> !,domain_error555,23145 -domain_error(stream_position, Opt) --> !,domain_error555,23145 -domain_error(stream_property, Opt) --> !,domain_error557,23231 -domain_error(stream_property, Opt) --> !,domain_error557,23231 -domain_error(stream_property, Opt) --> !,domain_error557,23231 -domain_error(syntax_error_handler, Opt) --> !,domain_error559,23317 -domain_error(syntax_error_handler, Opt) --> !,domain_error559,23317 -domain_error(syntax_error_handler, Opt) --> !,domain_error559,23317 -domain_error(table, Opt) --> !,domain_error561,23413 -domain_error(table, Opt) --> !,domain_error561,23413 -domain_error(table, Opt) --> !,domain_error561,23413 -domain_error(thread_create_option, Opt) --> !,domain_error563,23485 -domain_error(thread_create_option, Opt) --> !,domain_error563,23485 -domain_error(thread_create_option, Opt) --> !,domain_error563,23485 -domain_error(time_out_spec, Opt) --> !,domain_error565,23581 -domain_error(time_out_spec, Opt) --> !,domain_error565,23581 -domain_error(time_out_spec, Opt) --> !,domain_error565,23581 -domain_error(unimplemented_option, Opt) --> !,domain_error567,23679 -domain_error(unimplemented_option, Opt) --> !,domain_error567,23679 -domain_error(unimplemented_option, Opt) --> !,domain_error567,23679 -domain_error(write_option, Opt) --> !,domain_error569,23768 -domain_error(write_option, Opt) --> !,domain_error569,23768 -domain_error(write_option, Opt) --> !,domain_error569,23768 -domain_error(Domain, Opt) -->domain_error571,23847 -domain_error(Domain, Opt) -->domain_error571,23847 -domain_error(Domain, Opt) -->domain_error571,23847 -extra_info( error(_,Extra), _ ) -->extra_info574,23931 -extra_info( error(_,Extra), _ ) -->extra_info574,23931 -extra_info( error(_,Extra), _ ) -->extra_info574,23931 -extra_info( _, _ ) -->extra_info578,24077 -extra_info( _, _ ) -->extra_info578,24077 -extra_info( _, _ ) -->extra_info578,24077 -object_name(array, array).object_name581,24106 -object_name(array, array).object_name581,24106 -object_name(atom, atom).object_name582,24133 -object_name(atom, atom).object_name582,24133 -object_name(atomic, atomic).object_name583,24158 -object_name(atomic, atomic).object_name583,24158 -object_name(byte, byte).object_name584,24187 -object_name(byte, byte).object_name584,24187 -object_name(callable, 'callable goal').object_name585,24212 -object_name(callable, 'callable goal').object_name585,24212 -object_name(char, char).object_name586,24252 -object_name(char, char).object_name586,24252 -object_name(character_code, 'character code').object_name587,24277 -object_name(character_code, 'character code').object_name587,24277 -object_name(compound, 'compound term').object_name588,24324 -object_name(compound, 'compound term').object_name588,24324 -object_name(db_reference, 'data base reference').object_name589,24364 -object_name(db_reference, 'data base reference').object_name589,24364 -object_name(evaluable, 'evaluable term').object_name590,24414 -object_name(evaluable, 'evaluable term').object_name590,24414 -object_name(file, file).object_name591,24456 -object_name(file, file).object_name591,24456 -object_name(float, float).object_name592,24481 -object_name(float, float).object_name592,24481 -object_name(in_byte, byte).object_name593,24508 -object_name(in_byte, byte).object_name593,24508 -object_name(in_character, character).object_name594,24536 -object_name(in_character, character).object_name594,24536 -object_name(integer, integer).object_name595,24574 -object_name(integer, integer).object_name595,24574 -object_name(key, 'database key').object_name597,24606 -object_name(key, 'database key').object_name597,24606 -object_name(leash_mode, 'leash mode').object_name598,24640 -object_name(leash_mode, 'leash mode').object_name598,24640 -object_name(library, library).object_name599,24679 -object_name(library, library).object_name599,24679 -object_name(list, list).object_name600,24710 -object_name(list, list).object_name600,24710 -object_name(message_queue, 'message queue').object_name601,24735 -object_name(message_queue, 'message queue').object_name601,24735 -object_name(mutex, mutex).object_name602,24780 -object_name(mutex, mutex).object_name602,24780 -object_name(number, number).object_name603,24807 -object_name(number, number).object_name603,24807 -object_name(operator, operator).object_name604,24836 -object_name(operator, operator).object_name604,24836 -object_name(pointer, pointer).object_name605,24869 -object_name(pointer, pointer).object_name605,24869 -object_name(predicate_indicator, 'predicate indicator').object_name606,24900 -object_name(predicate_indicator, 'predicate indicator').object_name606,24900 -object_name(source_sink, file).object_name607,24957 -object_name(source_sink, file).object_name607,24957 -object_name(unsigned_byte, 'unsigned byte').object_name608,24989 -object_name(unsigned_byte, 'unsigned byte').object_name608,24989 -object_name(unsigned_char, 'unsigned char').object_name609,25034 -object_name(unsigned_char, 'unsigned char').object_name609,25034 -object_name(variable, 'unbound variable').object_name610,25079 -object_name(variable, 'unbound variable').object_name610,25079 -svs([A=VA], [A=VA], S) :- !,svs612,25123 -svs([A=VA], [A=VA], S) :- !,svs612,25123 -svs([A=VA], [A=VA], S) :- !,svs612,25123 -svs([A=VA,B=VB], [A=VA,B=VB], SN) :- !,svs614,25172 -svs([A=VA,B=VB], [A=VA,B=VB], SN) :- !,svs614,25172 -svs([A=VA,B=VB], [A=VA,B=VB], SN) :- !,svs614,25172 -svs([A=_], _, SN) :- !,svs618,25289 -svs([A=_], _, SN) :- !,svs618,25289 -svs([A=_], _, SN) :- !,svs618,25289 -svs([A=V|L], [A=V|L], SN) :- !,svs621,25365 -svs([A=V|L], [A=V|L], SN) :- !,svs621,25365 -svs([A=V|L], [A=V|L], SN) :- !,svs621,25365 -svs([A=_V|L], All, SN) :- !,svs625,25470 -svs([A=_V|L], All, SN) :- !,svs625,25470 -svs([A=_V|L], All, SN) :- !,svs625,25470 -list_of_preds([]) --> [].list_of_preds630,25574 -list_of_preds([]) --> [].list_of_preds630,25574 -list_of_preds([]) --> [].list_of_preds630,25574 -list_of_preds([P|L]) -->list_of_preds631,25600 -list_of_preds([P|L]) -->list_of_preds631,25600 -list_of_preds([P|L]) -->list_of_preds631,25600 -syntax_error_term(between(_I,_J,_L),LTaL,LC) -->syntax_error_term635,25660 -syntax_error_term(between(_I,_J,_L),LTaL,LC) -->syntax_error_term635,25660 -syntax_error_term(between(_I,_J,_L),LTaL,LC) -->syntax_error_term635,25660 -syntax_error_tokens([], _LC) --> [].syntax_error_tokens639,25792 -syntax_error_tokens([], _LC) --> [].syntax_error_tokens639,25792 -syntax_error_tokens([], _LC) --> [].syntax_error_tokens639,25792 -syntax_error_tokens([T|L], LC) -->syntax_error_tokens640,25829 -syntax_error_tokens([T|L], LC) -->syntax_error_tokens640,25829 -syntax_error_tokens([T|L], LC) -->syntax_error_tokens640,25829 -syntax_error_token(atom(A), _LC) --> !,syntax_error_token644,25922 -syntax_error_token(atom(A), _LC) --> !,syntax_error_token644,25922 -syntax_error_token(atom(A), _LC) --> !,syntax_error_token644,25922 -syntax_error_token(number(N), _LC) --> !,syntax_error_token646,25979 -syntax_error_token(number(N), _LC) --> !,syntax_error_token646,25979 -syntax_error_token(number(N), _LC) --> !,syntax_error_token646,25979 -syntax_error_token(var(_,S), _LC) --> !,syntax_error_token648,26038 -syntax_error_token(var(_,S), _LC) --> !,syntax_error_token648,26038 -syntax_error_token(var(_,S), _LC) --> !,syntax_error_token648,26038 -syntax_error_token(string(S), _LC) --> !,syntax_error_token650,26098 -syntax_error_token(string(S), _LC) --> !,syntax_error_token650,26098 -syntax_error_token(string(S), _LC) --> !,syntax_error_token650,26098 -syntax_error_token(error, _LC) --> !,syntax_error_token652,26159 -syntax_error_token(error, _LC) --> !,syntax_error_token652,26159 -syntax_error_token(error, _LC) --> !,syntax_error_token652,26159 -syntax_error_token('EOT', _LC) --> !,syntax_error_token654,26220 -syntax_error_token('EOT', _LC) --> !,syntax_error_token654,26220 -syntax_error_token('EOT', _LC) --> !,syntax_error_token654,26220 -syntax_error_token('(', _LC) --> !,syntax_error_token656,26278 -syntax_error_token('(', _LC) --> !,syntax_error_token656,26278 -syntax_error_token('(', _LC) --> !,syntax_error_token656,26278 -syntax_error_token('{', _LC) --> !,syntax_error_token658,26330 -syntax_error_token('{', _LC) --> !,syntax_error_token658,26330 -syntax_error_token('{', _LC) --> !,syntax_error_token658,26330 -syntax_error_token('[', _LC) --> !,syntax_error_token660,26382 -syntax_error_token('[', _LC) --> !,syntax_error_token660,26382 -syntax_error_token('[', _LC) --> !,syntax_error_token660,26382 -syntax_error_token(')', _LC) --> !,syntax_error_token662,26433 -syntax_error_token(')', _LC) --> !,syntax_error_token662,26433 -syntax_error_token(')', _LC) --> !,syntax_error_token662,26433 -syntax_error_token(']', _LC) --> !,syntax_error_token664,26485 -syntax_error_token(']', _LC) --> !,syntax_error_token664,26485 -syntax_error_token(']', _LC) --> !,syntax_error_token664,26485 -syntax_error_token('}', _LC) --> !,syntax_error_token666,26536 -syntax_error_token('}', _LC) --> !,syntax_error_token666,26536 -syntax_error_token('}', _LC) --> !,syntax_error_token666,26536 -syntax_error_token(',', _LC) --> !,syntax_error_token668,26588 -syntax_error_token(',', _LC) --> !,syntax_error_token668,26588 -syntax_error_token(',', _LC) --> !,syntax_error_token668,26588 -syntax_error_token('.', _LC) --> !,syntax_error_token670,26640 -syntax_error_token('.', _LC) --> !,syntax_error_token670,26640 -syntax_error_token('.', _LC) --> !,syntax_error_token670,26640 -syntax_error_token(';', _LC) --> !,syntax_error_token672,26691 -syntax_error_token(';', _LC) --> !,syntax_error_token672,26691 -syntax_error_token(';', _LC) --> !,syntax_error_token672,26691 -syntax_error_token(':', _LC) --> !,syntax_error_token674,26743 -syntax_error_token(':', _LC) --> !,syntax_error_token674,26743 -syntax_error_token(':', _LC) --> !,syntax_error_token674,26743 -syntax_error_token('|', _LC) --> !,syntax_error_token676,26794 -syntax_error_token('|', _LC) --> !,syntax_error_token676,26794 -syntax_error_token('|', _LC) --> !,syntax_error_token676,26794 -syntax_error_token('l', _LC) --> !,syntax_error_token678,26845 -syntax_error_token('l', _LC) --> !,syntax_error_token678,26845 -syntax_error_token('l', _LC) --> !,syntax_error_token678,26845 -syntax_error_token(nl, LC) --> !,syntax_error_token680,26896 -syntax_error_token(nl, LC) --> !,syntax_error_token680,26896 -syntax_error_token(nl, LC) --> !,syntax_error_token680,26896 -syntax_error_token(B, _LC) --> !,syntax_error_token682,26958 -syntax_error_token(B, _LC) --> !,syntax_error_token682,26958 -syntax_error_token(B, _LC) --> !,syntax_error_token682,26958 -print_lines( S, _, Key) -->print_lines686,27030 -print_lines( S, _, Key) -->print_lines686,27030 -print_lines( S, _, Key) -->print_lines686,27030 -print_lines( S, _, Key) -->print_lines692,27130 -print_lines( S, _, Key) -->print_lines692,27130 -print_lines( S, _, Key) -->print_lines692,27130 -print_lines(S, _, Key) -->print_lines697,27223 -print_lines(S, _, Key) -->print_lines697,27223 -print_lines(S, _, Key) -->print_lines697,27223 -print_lines( S, Prefix, Key) -->print_lines701,27299 -print_lines( S, Prefix, Key) -->print_lines701,27299 -print_lines( S, Prefix, Key) -->print_lines701,27299 -print_lines( S, Prefixes, Key) -->print_lines705,27384 -print_lines( S, Prefixes, Key) -->print_lines705,27384 -print_lines( S, Prefixes, Key) -->print_lines705,27384 -print_lines( S, Prefixes, Key) -->print_lines720,27622 -print_lines( S, Prefixes, Key) -->print_lines720,27622 -print_lines( S, Prefixes, Key) -->print_lines720,27622 -print_lines(S, Prefixes, Key) -->print_lines725,27727 -print_lines(S, Prefixes, Key) -->print_lines725,27727 -print_lines(S, Prefixes, Key) -->print_lines725,27727 -print_lines(S, Prefixes, Key) -->print_lines730,27863 -print_lines(S, Prefixes, Key) -->print_lines730,27863 -print_lines(S, Prefixes, Key) -->print_lines730,27863 -print_lines(S, Prefixes, Key) -->print_lines736,28033 -print_lines(S, Prefixes, Key) -->print_lines736,28033 -print_lines(S, Prefixes, Key) -->print_lines736,28033 -print_lines(S, Prefixes, Key) -->print_lines740,28137 -print_lines(S, Prefixes, Key) -->print_lines740,28137 -print_lines(S, Prefixes, Key) -->print_lines740,28137 -print_lines(S, Prefixes, Key) -->print_lines745,28268 -print_lines(S, Prefixes, Key) -->print_lines745,28268 -print_lines(S, Prefixes, Key) -->print_lines745,28268 -print_lines(S, Prefixes, Key) -->print_lines750,28380 -print_lines(S, Prefixes, Key) -->print_lines750,28380 -print_lines(S, Prefixes, Key) -->print_lines750,28380 -print_lines(S, Prefixes, Key) -->print_lines756,28517 -print_lines(S, Prefixes, Key) -->print_lines756,28517 -print_lines(S, Prefixes, Key) -->print_lines756,28517 -print_lines(S, _Prefixes, _Key) -->print_lines762,28654 -print_lines(S, _Prefixes, _Key) -->print_lines762,28654 -print_lines(S, _Prefixes, _Key) -->print_lines762,28654 -prefix(help, '~N'-[]).prefix766,28764 -prefix(help, '~N'-[]).prefix766,28764 -prefix(query, '~N'-[]).prefix767,28793 -prefix(query, '~N'-[]).prefix767,28793 -prefix(debug, '~N'-[]).prefix768,28823 -prefix(debug, '~N'-[]).prefix768,28823 -prefix(warning, '~N'-[]).prefix769,28853 -prefix(warning, '~N'-[]).prefix769,28853 -prefix(error, '~N'-[]).prefix778,29060 -prefix(error, '~N'-[]).prefix778,29060 -prefix(error, '', user_error) -->prefix787,29237 -prefix(error, '', user_error) -->prefix787,29237 -prefix(error, '', user_error) -->prefix787,29237 -prefix(banner, '~N'-[]).prefix796,29459 -prefix(banner, '~N'-[]).prefix796,29459 -prefix(informational, '~N~*|% '-[LC]) :-prefix797,29490 -prefix(informational, '~N~*|% '-[LC]) :-prefix797,29490 -prefix(informational, '~N~*|% '-[LC]) :-prefix797,29490 -prefix(debug(_), '~N% '-[]).prefix799,29559 -prefix(debug(_), '~N% '-[]).prefix799,29559 -prefix(information, '~N% '-[]).prefix800,29593 -prefix(information, '~N% '-[]).prefix800,29593 -clause_to_indicator(T, MNameArity) :-clause_to_indicator803,29629 -clause_to_indicator(T, MNameArity) :-clause_to_indicator803,29629 -clause_to_indicator(T, MNameArity) :-clause_to_indicator803,29629 -pred_arity(V, M, M:call/1) :- var(V), !.pred_arity807,29729 -pred_arity(V, M, M:call/1) :- var(V), !.pred_arity807,29729 -pred_arity(V, M, M:call/1) :- var(V), !.pred_arity807,29729 -pred_arity((:- _Path), _M, prolog:(:-)/1 ) :- !.pred_arity808,29770 -pred_arity((:- _Path), _M, prolog:(:-)/1 ) :- !.pred_arity808,29770 -pred_arity((:- _Path), _M, prolog:(:-)/1 ) :- !.pred_arity808,29770 -pred_arity((?- _Path), _M, prolog:(?)/1 ) :- !.pred_arity809,29819 -pred_arity((?- _Path), _M, prolog:(?)/1 ) :- !.pred_arity809,29819 -pred_arity((?- _Path), _M, prolog:(?)/1 ) :- !.pred_arity809,29819 -pred_arity((H:-_),M, MNameArity) :-pred_arity810,29867 -pred_arity((H:-_),M, MNameArity) :-pred_arity810,29867 -pred_arity((H:-_),M, MNameArity) :-pred_arity810,29867 -pred_arity((H-->_), M, M2:Name//Arity) :-pred_arity815,29993 -pred_arity((H-->_), M, M2:Name//Arity) :-pred_arity815,29993 -pred_arity((H-->_), M, M2:Name//Arity) :-pred_arity815,29993 -pred_arity((H,_), M, MNameArity) :-pred_arity821,30161 -pred_arity((H,_), M, MNameArity) :-pred_arity821,30161 -pred_arity((H,_), M, MNameArity) :-pred_arity821,30161 -pred_arity(Name/Arity, M, M:Name/Arity) :-pred_arity826,30287 -pred_arity(Name/Arity, M, M:Name/Arity) :-pred_arity826,30287 -pred_arity(Name/Arity, M, M:Name/Arity) :-pred_arity826,30287 -pred_arity(Name//Arity, M, M:Name//Arity) :-pred_arity828,30337 -pred_arity(Name//Arity, M, M:Name//Arity) :-pred_arity828,30337 -pred_arity(Name//Arity, M, M:Name//Arity) :-pred_arity828,30337 -pred_arity(H,M, M:Name/Arity) :-pred_arity830,30389 -pred_arity(H,M, M:Name/Arity) :-pred_arity830,30389 -pred_arity(H,M, M:Name/Arity) :-pred_arity830,30389 -translate_message(Term, Level) -->translate_message834,30451 -translate_message(Term, Level) -->translate_message834,30451 -translate_message(Term, Level) -->translate_message834,30451 -translate_message(Term, _) -->translate_message836,30520 -translate_message(Term, _) -->translate_message836,30520 -translate_message(Term, _) -->translate_message836,30520 -translate_message(Term, _) -->translate_message839,30613 -translate_message(Term, _) -->translate_message839,30613 -translate_message(Term, _) -->translate_message839,30613 -prolog:print_message_lines(S, Prefix0, Lines) :-print_message_lines873,31726 -prolog:print_message_lines(S, Prefix0, Lines) :-print_message_lines873,31726 -prolog:print_message(Severity, Msg) :-print_message920,33276 -prolog:print_message(Severity, Msg) :-print_message920,33276 -prolog:print_message(Level, _Msg) :-print_message940,33628 -prolog:print_message(Level, _Msg) :-print_message940,33628 -prolog:print_message(Level, _Msg) :-print_message945,33785 -prolog:print_message(Level, _Msg) :-print_message945,33785 -prolog:print_message(_, _Msg) :-print_message950,33901 -prolog:print_message(_, _Msg) :-print_message950,33901 -prolog:print_message(force(_Severity), Msg) :- !,print_message954,34013 -prolog:print_message(force(_Severity), Msg) :- !,print_message954,34013 -prolog:print_message(Severity, Term) :-print_message957,34139 -prolog:print_message(Severity, Term) :-print_message957,34139 -prolog:print_message(Severity, Term) :-print_message969,34416 -prolog:print_message(Severity, Term) :-print_message969,34416 -prolog:print_message(Severity, _Term) :-print_message981,34707 -prolog:print_message(Severity, _Term) :-print_message981,34707 - -pl/meta.yap,16253 -:- dynamic prolog:'$meta_predicate'/4.dynamic32,879 -:- dynamic prolog:'$meta_predicate'/4.dynamic32,879 -:- multifile prolog:'$meta_predicate'/4,multifile34,919 -:- multifile prolog:'$meta_predicate'/4,multifile34,919 -'$meta_predicate'(M:P) :-$meta_predicate39,1018 -'$meta_predicate'(M:P) :-$meta_predicate39,1018 -'$meta_predicate'(M:P) :-$meta_predicate39,1018 -'$meta_predicate'(M:P) :-$meta_predicate42,1108 -'$meta_predicate'(M:P) :-$meta_predicate42,1108 -'$meta_predicate'(M:P) :-$meta_predicate42,1108 -'$meta_predicate'(M:(P,Ps)) :- !,$meta_predicate45,1198 -'$meta_predicate'(M:(P,Ps)) :- !,$meta_predicate45,1198 -'$meta_predicate'(M:(P,Ps)) :- !,$meta_predicate45,1198 -'$meta_predicate'( M:D ) :-$meta_predicate48,1283 -'$meta_predicate'( M:D ) :-$meta_predicate48,1283 -'$meta_predicate'( M:D ) :-$meta_predicate48,1283 -'$install_meta_predicate'(M1:P) :-$install_meta_predicate52,1384 -'$install_meta_predicate'(M1:P) :-$install_meta_predicate52,1384 -'$install_meta_predicate'(M1:P) :-$install_meta_predicate52,1384 -'$is_mt'(H, B, HM, _SM, M, (context_module(CM),B), CM) :-$is_mt67,1872 -'$is_mt'(H, B, HM, _SM, M, (context_module(CM),B), CM) :-$is_mt67,1872 -'$is_mt'(H, B, HM, _SM, M, (context_module(CM),B), CM) :-$is_mt67,1872 -'$is_mt'(_H, B, _HM, _SM, BM, B, BM).$is_mt70,2008 -'$is_mt'(_H, B, _HM, _SM, BM, B, BM)./p,predicate,predicate definition70,2008 -'$is_mt'(_H, B, _HM, _SM, BM, B, BM).$is_mt70,2008 -'$clean_cuts'(G,('$current_choicepoint'(DCP),NG)) :-$clean_cuts76,2130 -'$clean_cuts'(G,('$current_choicepoint'(DCP),NG)) :-$clean_cuts76,2130 -'$clean_cuts'(G,('$current_choicepoint'(DCP),NG)) :-$clean_cuts'(G,('$current_choicepoint76,2130 -'$clean_cuts'(G,G).$clean_cuts78,2228 -'$clean_cuts'(G,G)./p,predicate,predicate definition78,2228 -'$clean_cuts'(G,G).$clean_cuts78,2228 -'$clean_cuts'(G,DCP,NG) :-$clean_cuts80,2249 -'$clean_cuts'(G,DCP,NG) :-$clean_cuts80,2249 -'$clean_cuts'(G,DCP,NG) :-$clean_cuts80,2249 -'$clean_cuts'(G,_,G).$clean_cuts82,2321 -'$clean_cuts'(G,_,G)./p,predicate,predicate definition82,2321 -'$clean_cuts'(G,_,G).$clean_cuts82,2321 -'$conj_has_cuts'(V,_,V, _) :- var(V), !.$conj_has_cuts84,2344 -'$conj_has_cuts'(V,_,V, _) :- var(V), !.$conj_has_cuts84,2344 -'$conj_has_cuts'(V,_,V, _) :- var(V), !.$conj_has_cuts84,2344 -'$conj_has_cuts'(!,DCP,'$$cut_by'(DCP), ok) :- !.$conj_has_cuts85,2385 -'$conj_has_cuts'(!,DCP,'$$cut_by'(DCP), ok) :- !.$conj_has_cuts85,2385 -'$conj_has_cuts'(!,DCP,'$$cut_by'(DCP), ok) :- !.$conj_has_cuts'(!,DCP,'$$cut_by85,2385 -'$conj_has_cuts'((G1,G2),DCP,(NG1,NG2), OK) :- !,$conj_has_cuts86,2435 -'$conj_has_cuts'((G1,G2),DCP,(NG1,NG2), OK) :- !,$conj_has_cuts86,2435 -'$conj_has_cuts'((G1,G2),DCP,(NG1,NG2), OK) :- !,$conj_has_cuts86,2435 -'$conj_has_cuts'((G1;G2),DCP,(NG1;NG2), OK) :- !,$conj_has_cuts89,2559 -'$conj_has_cuts'((G1;G2),DCP,(NG1;NG2), OK) :- !,$conj_has_cuts89,2559 -'$conj_has_cuts'((G1;G2),DCP,(NG1;NG2), OK) :- !,$conj_has_cuts89,2559 -'$conj_has_cuts'((G1->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts92,2683 -'$conj_has_cuts'((G1->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts92,2683 -'$conj_has_cuts'((G1->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts92,2683 -'$conj_has_cuts'((G1*->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts95,2814 -'$conj_has_cuts'((G1*->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts95,2814 -'$conj_has_cuts'((G1*->G2),DCP,(G1;NG2), OK) :- !,$conj_has_cuts95,2814 -'$conj_has_cuts'(if(G1,G2,G3),DCP,if(G1,NG2,NG3), OK) :- !,$conj_has_cuts98,2946 -'$conj_has_cuts'(if(G1,G2,G3),DCP,if(G1,NG2,NG3), OK) :- !,$conj_has_cuts98,2946 -'$conj_has_cuts'(if(G1,G2,G3),DCP,if(G1,NG2,NG3), OK) :- !,$conj_has_cuts98,2946 -'$conj_has_cuts'(G,_,G, _).$conj_has_cuts102,3124 -'$conj_has_cuts'(G,_,G, _)./p,predicate,predicate definition102,3124 -'$conj_has_cuts'(G,_,G, _).$conj_has_cuts102,3124 -'$module_u_vars'(M, H, UVars) :-$module_u_vars110,3344 -'$module_u_vars'(M, H, UVars) :-$module_u_vars110,3344 -'$module_u_vars'(M, H, UVars) :-$module_u_vars110,3344 -'$do_module_u_vars'(M:H,UVars) :-$do_module_u_vars113,3414 -'$do_module_u_vars'(M:H,UVars) :-$do_module_u_vars113,3414 -'$do_module_u_vars'(M:H,UVars) :-$do_module_u_vars113,3414 -'$do_module_u_vars'(_,[]).$do_module_u_vars117,3532 -'$do_module_u_vars'(_,[])./p,predicate,predicate definition117,3532 -'$do_module_u_vars'(_,[]).$do_module_u_vars117,3532 -'$do_module_u_vars'(0,_,_,[]) :- !.$do_module_u_vars119,3560 -'$do_module_u_vars'(0,_,_,[]) :- !.$do_module_u_vars119,3560 -'$do_module_u_vars'(0,_,_,[]) :- !.$do_module_u_vars119,3560 -'$do_module_u_vars'(I,D,H,LF) :-$do_module_u_vars120,3596 -'$do_module_u_vars'(I,D,H,LF) :-$do_module_u_vars120,3596 -'$do_module_u_vars'(I,D,H,LF) :-$do_module_u_vars120,3596 -'$do_module_u_vars'(I,D,H,L) :-$do_module_u_vars125,3752 -'$do_module_u_vars'(I,D,H,L) :-$do_module_u_vars125,3752 -'$do_module_u_vars'(I,D,H,L) :-$do_module_u_vars125,3752 -'$uvar'(Y, [Y|L], L) :- var(Y), !.$uvar129,3829 -'$uvar'(Y, [Y|L], L) :- var(Y), !.$uvar129,3829 -'$uvar'(Y, [Y|L], L) :- var(Y), !.$uvar129,3829 -'$uvar'(same( G, _), LF, L) :-$uvar131,3881 -'$uvar'(same( G, _), LF, L) :-$uvar131,3881 -'$uvar'(same( G, _), LF, L) :-$uvar131,3881 -'$uvar'('^'( _, G), LF, L) :-$uvar133,3936 -'$uvar'('^'( _, G), LF, L) :-$uvar133,3936 -'$uvar'('^'( _, G), LF, L) :-$uvar'('^133,3936 -'$meta_expand'(G, _, CM, HVars, OG) :-$meta_expand143,4191 -'$meta_expand'(G, _, CM, HVars, OG) :-$meta_expand143,4191 -'$meta_expand'(G, _, CM, HVars, OG) :-$meta_expand143,4191 -'$meta_expand'(G0, PredDef, CM, HVars, NG) :-$meta_expand154,4362 -'$meta_expand'(G0, PredDef, CM, HVars, NG) :-$meta_expand154,4362 -'$meta_expand'(G0, PredDef, CM, HVars, NG) :-$meta_expand154,4362 -'$expand_args'([], _, [], _, []).$expand_args162,4588 -'$expand_args'([], _, [], _, [])./p,predicate,predicate definition162,4588 -'$expand_args'([], _, [], _, []).$expand_args162,4588 -'$expand_args'([A|GArgs], CM, [M|GDefs], HVars, [NA|NGArgs]) :-$expand_args163,4623 -'$expand_args'([A|GArgs], CM, [M|GDefs], HVars, [NA|NGArgs]) :-$expand_args163,4623 -'$expand_args'([A|GArgs], CM, [M|GDefs], HVars, [NA|NGArgs]) :-$expand_args163,4623 -'$expand_args'([A|GArgs], CM, [_|GDefs], HVars, [A|NGArgs]) :-$expand_args168,4815 -'$expand_args'([A|GArgs], CM, [_|GDefs], HVars, [A|NGArgs]) :-$expand_args168,4815 -'$expand_args'([A|GArgs], CM, [_|GDefs], HVars, [A|NGArgs]) :-$expand_args168,4815 -'$expand_arg'(G, CM, HVars, OG) :-$expand_arg173,4973 -'$expand_arg'(G, CM, HVars, OG) :-$expand_arg173,4973 -'$expand_arg'(G, CM, HVars, OG) :-$expand_arg173,4973 -'$expand_arg'(G, CM, _HVars, NCM:NG) :-$expand_arg177,5090 -'$expand_arg'(G, CM, _HVars, NCM:NG) :-$expand_arg177,5090 -'$expand_arg'(G, CM, _HVars, NCM:NG) :-$expand_arg177,5090 -'$expand_goals'(V,NG,NGO,HM,SM,BM,HVars-H) :-$expand_goals216,6183 -'$expand_goals'(V,NG,NGO,HM,SM,BM,HVars-H) :-$expand_goals216,6183 -'$expand_goals'(V,NG,NGO,HM,SM,BM,HVars-H) :-$expand_goals216,6183 -'$expand_goals'(BM:V,NG,NGO,HM,SM,_BM,HVarsH) :-$expand_goals231,6508 -'$expand_goals'(BM:V,NG,NGO,HM,SM,_BM,HVarsH) :-$expand_goals231,6508 -'$expand_goals'(BM:V,NG,NGO,HM,SM,_BM,HVarsH) :-$expand_goals231,6508 -'$expand_goals'(CM0:V,NG,NGO,HM,SM,BM,HVarsH) :-$expand_goals237,6674 -'$expand_goals'(CM0:V,NG,NGO,HM,SM,BM,HVarsH) :-$expand_goals237,6674 -'$expand_goals'(CM0:V,NG,NGO,HM,SM,BM,HVarsH) :-$expand_goals237,6674 -'$expand_goals'(V,NG,NGO,_HM,_SM,BM,_HVarsH) :-$expand_goals243,6925 -'$expand_goals'(V,NG,NGO,_HM,_SM,BM,_HVarsH) :-$expand_goals243,6925 -'$expand_goals'(V,NG,NGO,_HM,_SM,BM,_HVarsH) :-$expand_goals243,6925 -'$expand_goals'((A,B),(A1,B1),(AO,BO),HM,SM,BM,HVars) :- !,$expand_goals254,7299 -'$expand_goals'((A,B),(A1,B1),(AO,BO),HM,SM,BM,HVars) :- !,$expand_goals254,7299 -'$expand_goals'((A,B),(A1,B1),(AO,BO),HM,SM,BM,HVars) :- !,$expand_goals254,7299 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- var(A), !,$expand_goals257,7443 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- var(A), !,$expand_goals257,7443 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- var(A), !,$expand_goals257,7443 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- !,$expand_goals273,7958 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- !,$expand_goals273,7958 -'$expand_goals'((A;B),(A1;B1),(AO;BO),HM,SM,BM,HVars) :- !,$expand_goals273,7958 -'$expand_goals'((A|B),(A1|B1),(AO|BO),HM,SM,BM,HVars) :- !,$expand_goals276,8102 -'$expand_goals'((A|B),(A1|B1),(AO|BO),HM,SM,BM,HVars) :- !,$expand_goals276,8102 -'$expand_goals'((A|B),(A1|B1),(AO|BO),HM,SM,BM,HVars) :- !,$expand_goals276,8102 -'$expand_goals'((A->B),(A1->B1),(AO->BO),HM,SM,BM,HVars) :- !,$expand_goals279,8246 -'$expand_goals'((A->B),(A1->B1),(AO->BO),HM,SM,BM,HVars) :- !,$expand_goals279,8246 -'$expand_goals'((A->B),(A1->B1),(AO->BO),HM,SM,BM,HVars) :- !,$expand_goals279,8246 -'$expand_goals'(\+G,\+G,A\=B,_HM,_BM,_SM,_HVars) :-$expand_goals283,8419 -'$expand_goals'(\+G,\+G,A\=B,_HM,_BM,_SM,_HVars) :-$expand_goals283,8419 -'$expand_goals'(\+G,\+G,A\=B,_HM,_BM,_SM,_HVars) :-$expand_goals283,8419 -'$expand_goals'(\+A,\+A1,('$current_choice_point'(CP),AO,'$$cut_by'(CP)-> false;true),HM,SM,BM,HVars) :- !,$expand_goals287,8510 -'$expand_goals'(\+A,\+A1,('$current_choice_point'(CP),AO,'$$cut_by'(CP)-> false;true),HM,SM,BM,HVars) :- !,$expand_goals287,8510 -'$expand_goals'(\+A,\+A1,('$current_choice_point'(CP),AO,'$$cut_by'(CP)-> false;true),HM,SM,BM,HVars) :- !,$expand_goals'(\+A,\+A1,('$current_choice_point'(CP),AO,'$$cut_by287,8510 -'$expand_goals'(not(A),not(A1),('$current_choice_point'(CP),AO,'$$cut_by'(CP) -> fail; true),HM,SM,BM,HVars) :- !,$expand_goals302,9269 -'$expand_goals'(not(A),not(A1),('$current_choice_point'(CP),AO,'$$cut_by'(CP) -> fail; true),HM,SM,BM,HVars) :- !,$expand_goals302,9269 -'$expand_goals'(not(A),not(A1),('$current_choice_point'(CP),AO,'$$cut_by'(CP) -> fail; true),HM,SM,BM,HVars) :- !,$expand_goals'(not(A),not(A1),('$current_choice_point'(CP),AO,'$$cut_by302,9269 -'$expand_goals'(true,true,true,_,_,_,_) :- !.$expand_goals321,10212 -'$expand_goals'(true,true,true,_,_,_,_) :- !.$expand_goals321,10212 -'$expand_goals'(true,true,true,_,_,_,_) :- !.$expand_goals321,10212 -'$expand_goals'(fail,fail,fail,_,_,_,_) :- !.$expand_goals322,10258 -'$expand_goals'(fail,fail,fail,_,_,_,_) :- !.$expand_goals322,10258 -'$expand_goals'(fail,fail,fail,_,_,_,_) :- !.$expand_goals322,10258 -'$expand_goals'(false,false,false,_,_,_,_) :- !.$expand_goals323,10304 -'$expand_goals'(false,false,false,_,_,_,_) :- !.$expand_goals323,10304 -'$expand_goals'(false,false,false,_,_,_,_) :- !.$expand_goals323,10304 -'$expand_goals'(G, G1, GO, HM, SM, BM, HVars) :-$expand_goals324,10353 -'$expand_goals'(G, G1, GO, HM, SM, BM, HVars) :-$expand_goals324,10353 -'$expand_goals'(G, G1, GO, HM, SM, BM, HVars) :-$expand_goals324,10353 -'$import_expansion'(M:G, M1:G1) :-$import_expansion329,10497 -'$import_expansion'(M:G, M1:G1) :-$import_expansion329,10497 -'$import_expansion'(M:G, M1:G1) :-$import_expansion329,10497 -'$import_expansion'(MG, MG).$import_expansion332,10581 -'$import_expansion'(MG, MG)./p,predicate,predicate definition332,10581 -'$import_expansion'(MG, MG).$import_expansion332,10581 -'$meta_expansion'(GMG, BM, HVars, GM:GF) :-$meta_expansion334,10611 -'$meta_expansion'(GMG, BM, HVars, GM:GF) :-$meta_expansion334,10611 -'$meta_expansion'(GMG, BM, HVars, GM:GF) :-$meta_expansion334,10611 -'$meta_expansion'(GMG, _BM, _HVars, GM:G) :-$meta_expansion340,10809 -'$meta_expansion'(GMG, _BM, _HVars, GM:G) :-$meta_expansion340,10809 -'$meta_expansion'(GMG, _BM, _HVars, GM:G) :-$meta_expansion340,10809 -o:p(B) :- n:g, X is 2+3, call(B).p350,11009 -o:p(B) :- n:g, X is 2+3, call(B).p350,11009 -o:p(B) :- n:g, X is 2+3, call(B).p350,11009 -'$expand_goal'(G0, G1F, GOF, HM, SM, BM, HVars-H) :-$expand_goal364,11556 -'$expand_goal'(G0, G1F, GOF, HM, SM, BM, HVars-H) :-$expand_goal364,11556 -'$expand_goal'(G0, G1F, GOF, HM, SM, BM, HVars-H) :-$expand_goal364,11556 -'$end_goal_expansion'(G, G1F, GOF, HM, SM, BM, H) :-$end_goal_expansion371,11837 -'$end_goal_expansion'(G, G1F, GOF, HM, SM, BM, H) :-$end_goal_expansion371,11837 -'$end_goal_expansion'(G, G1F, GOF, HM, SM, BM, H) :-$end_goal_expansion371,11837 -'$user_expansion'(M0N:G0N, M1:G1) :-$user_expansion377,12045 -'$user_expansion'(M0N:G0N, M1:G1) :-$user_expansion377,12045 -'$user_expansion'(M0N:G0N, M1:G1) :-$user_expansion377,12045 -'$user_expansion'(MG, MG).$user_expansion386,12223 -'$user_expansion'(MG, MG)./p,predicate,predicate definition386,12223 -'$user_expansion'(MG, MG).$user_expansion386,12223 -'$build_up'(HM, NH, SM, true, NH, true, NH) :- HM == SM, !.$build_up403,12475 -'$build_up'(HM, NH, SM, true, NH, true, NH) :- HM == SM, !.$build_up403,12475 -'$build_up'(HM, NH, SM, true, NH, true, NH) :- HM == SM, !.$build_up403,12475 -'$build_up'(HM, NH, _SM, true, HM:NH, true, HM:NH) :- !.$build_up404,12535 -'$build_up'(HM, NH, _SM, true, HM:NH, true, HM:NH) :- !.$build_up404,12535 -'$build_up'(HM, NH, _SM, true, HM:NH, true, HM:NH) :- !.$build_up404,12535 -'$build_up'(HM, NH, SM, B1, (NH :- B1), BO, ( NH :- BO)) :- HM == SM, !.$build_up405,12592 -'$build_up'(HM, NH, SM, B1, (NH :- B1), BO, ( NH :- BO)) :- HM == SM, !.$build_up405,12592 -'$build_up'(HM, NH, SM, B1, (NH :- B1), BO, ( NH :- BO)) :- HM == SM, !.$build_up405,12592 -'$build_up'(HM, NH, _SM, B1, (NH :- B1), BO, ( HM:NH :- BO)) :- !.$build_up406,12665 -'$build_up'(HM, NH, _SM, B1, (NH :- B1), BO, ( HM:NH :- BO)) :- !.$build_up406,12665 -'$build_up'(HM, NH, _SM, B1, (NH :- B1), BO, ( HM:NH :- BO)) :- !.$build_up406,12665 -'$expand_clause_body'(V, _NH1, _HM1, _SM, M, call(M:V), call(M:V) ) :-$expand_clause_body408,12733 -'$expand_clause_body'(V, _NH1, _HM1, _SM, M, call(M:V), call(M:V) ) :-$expand_clause_body408,12733 -'$expand_clause_body'(V, _NH1, _HM1, _SM, M, call(M:V), call(M:V) ) :-$expand_clause_body408,12733 -'$expand_clause_body'(true, _NH1, _HM1, _SM, _M, true, true ) :- !.$expand_clause_body410,12819 -'$expand_clause_body'(true, _NH1, _HM1, _SM, _M, true, true ) :- !.$expand_clause_body410,12819 -'$expand_clause_body'(true, _NH1, _HM1, _SM, _M, true, true ) :- !.$expand_clause_body410,12819 -'$expand_clause_body'(B, H, HM, SM, M, B1, BO ) :-$expand_clause_body411,12887 -'$expand_clause_body'(B, H, HM, SM, M, B1, BO ) :-$expand_clause_body411,12887 -'$expand_clause_body'(B, H, HM, SM, M, B1, BO ) :-$expand_clause_body411,12887 -'$not_imported'(H, Mod) :-$not_imported429,13394 -'$not_imported'(H, Mod) :-$not_imported429,13394 -'$not_imported'(H, Mod) :-$not_imported429,13394 -'$not_imported'(_, _).$not_imported436,13577 -'$not_imported'(_, _)./p,predicate,predicate definition436,13577 -'$not_imported'(_, _).$not_imported436,13577 -'$verify_import'(_M:G, prolog:G) :-$verify_import439,13602 -'$verify_import'(_M:G, prolog:G) :-$verify_import439,13602 -'$verify_import'(_M:G, prolog:G) :-$verify_import439,13602 -'$verify_import'(M:G, NM:NG) :-$verify_import441,13677 -'$verify_import'(M:G, NM:NG) :-$verify_import441,13677 -'$verify_import'(M:G, NM:NG) :-$verify_import441,13677 -'$verify_import'(MG, MG).$verify_import444,13757 -'$verify_import'(MG, MG)./p,predicate,predicate definition444,13757 -'$verify_import'(MG, MG).$verify_import444,13757 -'$expand_a_clause'(MHB, SM0, Cl1, ClO) :- % MHB is the original clause, SM0 the current source, Cl1 and ClO output clauses$expand_a_clause463,14366 -'$expand_a_clause'(MHB, SM0, Cl1, ClO) :- % MHB is the original clause, SM0 the current source, Cl1 and ClO output clauses$expand_a_clause463,14366 -'$expand_a_clause'(MHB, SM0, Cl1, ClO) :- % MHB is the original clause, SM0 the current source, Cl1 and ClO output clauses$expand_a_clause463,14366 -expand_goal(Input, Output) :-expand_goal474,14927 -expand_goal(Input, Output) :-expand_goal474,14927 -expand_goal(Input, Output) :-expand_goal474,14927 -'$expand_meta_call'(G, HVars, MF:GF ) :-$expand_meta_call477,15003 -'$expand_meta_call'(G, HVars, MF:GF ) :-$expand_meta_call477,15003 -'$expand_meta_call'(G, HVars, MF:GF ) :-$expand_meta_call477,15003 - -pl/modules.yap,23106 -use_module(F) :-use_module88,2303 -use_module(F) :-use_module88,2303 -use_module(F) :-use_module88,2303 -a(1).a112,3158 -a(1).a112,3158 -a(X) :- b(X).a113,3164 -a(X) :- b(X).a113,3164 -a(X) :- b(X).a113,3164 -a(X) :- b(X).a113,3164 -a(X) :- b(X).a113,3164 -a(2).a121,3302 -a(2).a121,3302 -b(1).b123,3309 -b(1).b123,3309 -a(X) :-a155,4137 -a(X) :-a155,4137 -a(X) :-a155,4137 -a(X) :-a157,4152 -a(X) :-a157,4152 -a(X) :-a157,4152 -a(X) :-a159,4167 -a(X) :-a159,4167 -a(X) :-a159,4167 -vvb(2).vvb165,4222 -vvb(2).vvb165,4222 -c(3).c166,4230 -c(3).c166,4230 -b(1).b172,4275 -b(1).b172,4275 -d(4).d173,4281 -d(4).d173,4281 -use_module(F) :- '$load_files'(F,use_module197,4833 -use_module(F) :- '$load_files'(F,use_module197,4833 -use_module(F) :- '$load_files'(F,use_module197,4833 -use_module(Files, Imports) :-use_module211,5242 -use_module(Files, Imports) :-use_module211,5242 -use_module(Files, Imports) :-use_module211,5242 -use_module(F,Is) :-use_module230,5882 -use_module(F,Is) :-use_module230,5882 -use_module(F,Is) :-use_module230,5882 -'$module'(O,N,P,Opts) :- !,$module233,5991 -'$module'(O,N,P,Opts) :- !,$module233,5991 -'$module'(O,N,P,Opts) :- !,$module233,5991 -'$process_module_decls_options'(Var,Mod) :-$process_module_decls_options238,6097 -'$process_module_decls_options'(Var,Mod) :-$process_module_decls_options238,6097 -'$process_module_decls_options'(Var,Mod) :-$process_module_decls_options238,6097 -'$process_module_decls_options'([],_) :- !.$process_module_decls_options241,6194 -'$process_module_decls_options'([],_) :- !.$process_module_decls_options241,6194 -'$process_module_decls_options'([],_) :- !.$process_module_decls_options241,6194 -'$process_module_decls_options'([H|L],M) :- !,$process_module_decls_options242,6238 -'$process_module_decls_options'([H|L],M) :- !,$process_module_decls_options242,6238 -'$process_module_decls_options'([H|L],M) :- !,$process_module_decls_options242,6238 -'$process_module_decls_options'(T,M) :-$process_module_decls_options245,6362 -'$process_module_decls_options'(T,M) :-$process_module_decls_options245,6362 -'$process_module_decls_options'(T,M) :-$process_module_decls_options245,6362 -'$process_module_decls_option'(Var,M) :-$process_module_decls_option248,6439 -'$process_module_decls_option'(Var,M) :-$process_module_decls_option248,6439 -'$process_module_decls_option'(Var,M) :-$process_module_decls_option248,6439 -'$process_module_decls_option'(At,M) :-$process_module_decls_option251,6528 -'$process_module_decls_option'(At,M) :-$process_module_decls_option251,6528 -'$process_module_decls_option'(At,M) :-$process_module_decls_option251,6528 -'$process_module_decls_option'(library(L),M) :- !,$process_module_decls_option254,6601 -'$process_module_decls_option'(library(L),M) :- !,$process_module_decls_option254,6601 -'$process_module_decls_option'(library(L),M) :- !,$process_module_decls_option254,6601 -'$process_module_decls_option'(hidden(Bool),M) :- !,$process_module_decls_option256,6679 -'$process_module_decls_option'(hidden(Bool),M) :- !,$process_module_decls_option256,6679 -'$process_module_decls_option'(hidden(Bool),M) :- !,$process_module_decls_option256,6679 -'$process_module_decls_option'(Opt,M) :-$process_module_decls_option258,6768 -'$process_module_decls_option'(Opt,M) :-$process_module_decls_option258,6768 -'$process_module_decls_option'(Opt,M) :-$process_module_decls_option258,6768 -'$process_hidden_module'(TNew,M) :-$process_hidden_module261,6865 -'$process_hidden_module'(TNew,M) :-$process_hidden_module261,6865 -'$process_hidden_module'(TNew,M) :-$process_hidden_module261,6865 -'$convert_true_off_mod3'(true, off, _) :- !.$convert_true_off_mod3266,7011 -'$convert_true_off_mod3'(true, off, _) :- !.$convert_true_off_mod3266,7011 -'$convert_true_off_mod3'(true, off, _) :- !.$convert_true_off_mod3266,7011 -'$convert_true_off_mod3'(false, on, _) :- !.$convert_true_off_mod3267,7056 -'$convert_true_off_mod3'(false, on, _) :- !.$convert_true_off_mod3267,7056 -'$convert_true_off_mod3'(false, on, _) :- !.$convert_true_off_mod3267,7056 -'$convert_true_off_mod3'(X, _, M) :-$convert_true_off_mod3268,7101 -'$convert_true_off_mod3'(X, _, M) :-$convert_true_off_mod3268,7101 -'$convert_true_off_mod3'(X, _, M) :-$convert_true_off_mod3268,7101 -'$prepare_restore_hidden'(Old,Old) :- !.$prepare_restore_hidden271,7200 -'$prepare_restore_hidden'(Old,Old) :- !.$prepare_restore_hidden271,7200 -'$prepare_restore_hidden'(Old,Old) :- !.$prepare_restore_hidden271,7200 -'$prepare_restore_hidden'(Old,New) :-$prepare_restore_hidden272,7241 -'$prepare_restore_hidden'(Old,New) :-$prepare_restore_hidden272,7241 -'$prepare_restore_hidden'(Old,New) :-$prepare_restore_hidden272,7241 -'$extend_exports'(HostF, Exports, DonorF ) :-$extend_exports276,7342 -'$extend_exports'(HostF, Exports, DonorF ) :-$extend_exports276,7342 -'$extend_exports'(HostF, Exports, DonorF ) :-$extend_exports276,7342 -'$module_produced by'(M, M0, N, K) :-$module_produced by286,8026 -'$module_produced by'(M, M0, N, K) :-$module_produced by286,8026 -'$module_produced by'(M, M0, N, K) :-$module_produced by286,8026 -'$module_produced by'(M, M0, N, K) :-$module_produced by288,8115 -'$module_produced by'(M, M0, N, K) :-$module_produced by288,8115 -'$module_produced by'(M, M0, N, K) :-$module_produced by288,8115 -current_module(Mod) :-current_module303,8537 -current_module(Mod) :-current_module303,8537 -current_module(Mod) :-current_module303,8537 -current_module(Mod,TFN) :-current_module311,8845 -current_module(Mod,TFN) :-current_module311,8845 -current_module(Mod,TFN) :-current_module311,8845 -system_module(Mod) :-system_module315,9009 -system_module(Mod) :-system_module315,9009 -system_module(Mod) :-system_module315,9009 -'$trace_module'(X) :-$trace_module319,9113 -'$trace_module'(X) :-$trace_module319,9113 -'$trace_module'(X) :-$trace_module319,9113 -'$trace_module'(_).$trace_module324,9197 -'$trace_module'(_)./p,predicate,predicate definition324,9197 -'$trace_module'(_).$trace_module324,9197 -'$trace_module'(X,Y) :- X==Y, !.$trace_module326,9218 -'$trace_module'(X,Y) :- X==Y, !.$trace_module326,9218 -'$trace_module'(X,Y) :- X==Y, !.$trace_module326,9218 -'$trace_module'(X,Y) :-$trace_module327,9251 -'$trace_module'(X,Y) :-$trace_module327,9251 -'$trace_module'(X,Y) :-$trace_module327,9251 -'$trace_module'(_,_).$trace_module334,9399 -'$trace_module'(_,_)./p,predicate,predicate definition334,9399 -'$trace_module'(_,_).$trace_module334,9399 -'$continue_imported'(Mod,Mod,Pred,Pred) :-$continue_imported337,9423 -'$continue_imported'(Mod,Mod,Pred,Pred) :-$continue_imported337,9423 -'$continue_imported'(Mod,Mod,Pred,Pred) :-$continue_imported337,9423 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported340,9501 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported340,9501 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported340,9501 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported343,9650 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported343,9650 -'$continue_imported'(FM,Mod,FPred,Pred) :-$continue_imported343,9650 -'$imported_predicate'(G, _ImportingMod, G, prolog) :-$imported_predicate350,9832 -'$imported_predicate'(G, _ImportingMod, G, prolog) :-$imported_predicate350,9832 -'$imported_predicate'(G, _ImportingMod, G, prolog) :-$imported_predicate350,9832 -'$imported_predicate'(G, ImportingMod, G0, ExportingMod) :-$imported_predicate352,9936 -'$imported_predicate'(G, ImportingMod, G0, ExportingMod) :-$imported_predicate352,9936 -'$imported_predicate'(G, ImportingMod, G0, ExportingMod) :-$imported_predicate352,9936 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred361,10182 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred361,10182 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred361,10182 -'$get_undefined_pred'(G, _ImportingMod, G, user) :-$get_undefined_pred366,10396 -'$get_undefined_pred'(G, _ImportingMod, G, user) :-$get_undefined_pred366,10396 -'$get_undefined_pred'(G, _ImportingMod, G, user) :-$get_undefined_pred366,10396 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred369,10489 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred369,10489 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred369,10489 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred385,10921 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred385,10921 -'$get_undefined_pred'(G, ImportingMod, G0, ExportingMod) :-$get_undefined_pred385,10921 -'$autoload'(G, _ImportingMod, ExportingMod, Dialect) :-$autoload389,11088 -'$autoload'(G, _ImportingMod, ExportingMod, Dialect) :-$autoload389,11088 -'$autoload'(G, _ImportingMod, ExportingMod, Dialect) :-$autoload389,11088 -'$autoload'(G, ImportingMod, ExportingMod, _Dialect) :-$autoload394,11294 -'$autoload'(G, ImportingMod, ExportingMod, _Dialect) :-$autoload394,11294 -'$autoload'(G, ImportingMod, ExportingMod, _Dialect) :-$autoload394,11294 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate402,11572 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate402,11572 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate402,11572 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate405,11716 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate405,11716 -'$autoloader_find_predicate'(G,ExportingModI) :-$autoloader_find_predicate405,11716 -'$declare_module'(Name, _Super, Context, _File, _Line) :-$declare_module431,12651 -'$declare_module'(Name, _Super, Context, _File, _Line) :-$declare_module431,12651 -'$declare_module'(Name, _Super, Context, _File, _Line) :-$declare_module431,12651 -abolish_module(Mod) :-abolish_module438,12863 -abolish_module(Mod) :-abolish_module438,12863 -abolish_module(Mod) :-abolish_module438,12863 -abolish_module(Mod) :-abolish_module441,12950 -abolish_module(Mod) :-abolish_module441,12950 -abolish_module(Mod) :-abolish_module441,12950 -abolish_module(Mod) :-abolish_module444,13039 -abolish_module(Mod) :-abolish_module444,13039 -abolish_module(Mod) :-abolish_module444,13039 -abolish_module(_).abolish_module449,13146 -abolish_module(_).abolish_module449,13146 -export(Resource) :-export451,13166 -export(Resource) :-export451,13166 -export(Resource) :-export451,13166 -export([]) :- !.export454,13254 -export([]) :- !.export454,13254 -export([]) :- !.export454,13254 -export([Resource| Resources]) :- !,export455,13271 -export([Resource| Resources]) :- !,export455,13271 -export([Resource| Resources]) :- !,export455,13271 -export(Resource) :-export458,13355 -export(Resource) :-export458,13355 -export(Resource) :-export458,13355 -export_resource(Resource) :-export_resource461,13404 -export_resource(Resource) :-export_resource461,13404 -export_resource(Resource) :-export_resource461,13404 -export_resource(P) :-export_resource464,13504 -export_resource(P) :-export_resource464,13504 -export_resource(P) :-export_resource464,13504 -export_resource(P0) :-export_resource474,13922 -export_resource(P0) :-export_resource474,13922 -export_resource(P0) :-export_resource474,13922 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource485,14366 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource485,14366 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource485,14366 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource487,14439 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource487,14439 -export_resource(op(Prio,Assoc,Name)) :- !,export_resource487,14439 -export_resource(Resource) :-export_resource489,14510 -export_resource(Resource) :-export_resource489,14510 -export_resource(Resource) :-export_resource489,14510 -export_list(Module, List) :-export_list492,14613 -export_list(Module, List) :-export_list492,14613 -export_list(Module, List) :-export_list492,14613 -'$add_to_imports'([], _, _).$add_to_imports496,14697 -'$add_to_imports'([], _, _)./p,predicate,predicate definition496,14697 -'$add_to_imports'([], _, _).$add_to_imports496,14697 -'$add_to_imports'([T|Tab], Module, ContextModule) :-$add_to_imports498,14769 -'$add_to_imports'([T|Tab], Module, ContextModule) :-$add_to_imports498,14769 -'$add_to_imports'([T|Tab], Module, ContextModule) :-$add_to_imports498,14769 -'$do_import'(op(Prio,Assoc,Name), _Mod, ContextMod) :-$do_import502,14912 -'$do_import'(op(Prio,Assoc,Name), _Mod, ContextMod) :-$do_import502,14912 -'$do_import'(op(Prio,Assoc,Name), _Mod, ContextMod) :-$do_import502,14912 -'$do_import'(N0/K0-N0/K0, Mod, Mod) :- !.$do_import504,15000 -'$do_import'(N0/K0-N0/K0, Mod, Mod) :- !.$do_import504,15000 -'$do_import'(N0/K0-N0/K0, Mod, Mod) :- !.$do_import504,15000 -'$do_import'(N0/K0-N0/K0, _Mod, prolog) :- !.$do_import505,15042 -'$do_import'(N0/K0-N0/K0, _Mod, prolog) :- !.$do_import505,15042 -'$do_import'(N0/K0-N0/K0, _Mod, prolog) :- !.$do_import505,15042 -'$do_import'(_N/K-N1/K, _Mod, ContextMod) :-$do_import506,15088 -'$do_import'(_N/K-N1/K, _Mod, ContextMod) :-$do_import506,15088 -'$do_import'(_N/K-N1/K, _Mod, ContextMod) :-$do_import506,15088 -'$do_import'( N/K-N1/K, Mod, ContextMod) :-$do_import512,15398 -'$do_import'( N/K-N1/K, Mod, ContextMod) :-$do_import512,15398 -'$do_import'( N/K-N1/K, Mod, ContextMod) :-$do_import512,15398 -'$follow_import_chain'(M,G,M0,G0) :-$follow_import_chain531,15808 -'$follow_import_chain'(M,G,M0,G0) :-$follow_import_chain531,15808 -'$follow_import_chain'(M,G,M0,G0) :-$follow_import_chain531,15808 -'$follow_import_chain'(M,G,M,G).$follow_import_chain534,15944 -'$follow_import_chain'(M,G,M,G)./p,predicate,predicate definition534,15944 -'$follow_import_chain'(M,G,M,G).$follow_import_chain534,15944 -'$check_import'(Mod, ContextM, N, K) :-$check_import537,16019 -'$check_import'(Mod, ContextM, N, K) :-$check_import537,16019 -'$check_import'(Mod, ContextM, N, K) :-$check_import537,16019 -'$check_import'(_,_,_,_).$check_import545,16382 -'$check_import'(_,_,_,_)./p,predicate,predicate definition545,16382 -'$check_import'(_,_,_,_).$check_import545,16382 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import547,16409 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import547,16409 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import547,16409 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import551,16606 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import551,16606 -'$redefine_import'( M1, M2, Mod, ContextM, N/K) :-$redefine_import551,16606 -'$redefine_action'(ask, M1, M2, M, _, N/K) :-$redefine_action555,16715 -'$redefine_action'(ask, M1, M2, M, _, N/K) :-$redefine_action555,16715 -'$redefine_action'(ask, M1, M2, M, _, N/K) :-$redefine_action555,16715 -'$redefine_action'(true, M1, _, _, _, _) :- !,$redefine_action562,17032 -'$redefine_action'(true, M1, _, _, _, _) :- !,$redefine_action562,17032 -'$redefine_action'(true, M1, _, _, _, _) :- !,$redefine_action562,17032 -'$redefine_action'(false, M1, M2, _M, ContextM, N/K) :-$redefine_action565,17158 -'$redefine_action'(false, M1, M2, _M, ContextM, N/K) :-$redefine_action565,17158 -'$redefine_action'(false, M1, M2, _M, ContextM, N/K) :-$redefine_action565,17158 -'$mod_scan'(C) :-$mod_scan570,17372 -'$mod_scan'(C) :-$mod_scan570,17372 -'$mod_scan'(C) :-$mod_scan570,17372 -set_base_module(ExportingModule) :-set_base_module585,17839 -set_base_module(ExportingModule) :-set_base_module585,17839 -set_base_module(ExportingModule) :-set_base_module585,17839 -set_base_module(ExportingModule) :-set_base_module588,17966 -set_base_module(ExportingModule) :-set_base_module588,17966 -set_base_module(ExportingModule) :-set_base_module588,17966 -set_base_module(ExportingModule) :-set_base_module593,18155 -set_base_module(ExportingModule) :-set_base_module593,18155 -set_base_module(ExportingModule) :-set_base_module593,18155 -import_module(Mod, ImportModule) :-import_module607,18670 -import_module(Mod, ImportModule) :-import_module607,18670 -import_module(Mod, ImportModule) :-import_module607,18670 -import_module(Mod, ImportModule) :-import_module610,18785 -import_module(Mod, ImportModule) :-import_module610,18785 -import_module(Mod, ImportModule) :-import_module610,18785 -import_module(Mod, EM) :-import_module613,18880 -import_module(Mod, EM) :-import_module613,18880 -import_module(Mod, EM) :-import_module613,18880 -add_import_module(Mod, ImportModule, Pos) :-add_import_module628,19353 -add_import_module(Mod, ImportModule, Pos) :-add_import_module628,19353 -add_import_module(Mod, ImportModule, Pos) :-add_import_module628,19353 -add_import_module(Mod, ImportModule, Pos) :-add_import_module631,19486 -add_import_module(Mod, ImportModule, Pos) :-add_import_module631,19486 -add_import_module(Mod, ImportModule, Pos) :-add_import_module631,19486 -add_import_module(Mod, ImportModule, start) :-add_import_module634,19619 -add_import_module(Mod, ImportModule, start) :-add_import_module634,19619 -add_import_module(Mod, ImportModule, start) :-add_import_module634,19619 -add_import_module(Mod, ImportModule, end) :-add_import_module638,19790 -add_import_module(Mod, ImportModule, end) :-add_import_module638,19790 -add_import_module(Mod, ImportModule, end) :-add_import_module638,19790 -add_import_module(Mod, ImportModule, Pos) :-add_import_module642,19959 -add_import_module(Mod, ImportModule, Pos) :-add_import_module642,19959 -add_import_module(Mod, ImportModule, Pos) :-add_import_module642,19959 -add_import_module(Mod, ImportModule, Pos) :-add_import_module645,20100 -add_import_module(Mod, ImportModule, Pos) :-add_import_module645,20100 -add_import_module(Mod, ImportModule, Pos) :-add_import_module645,20100 -delete_import_module(Mod, ImportModule) :-delete_import_module657,20494 -delete_import_module(Mod, ImportModule) :-delete_import_module657,20494 -delete_import_module(Mod, ImportModule) :-delete_import_module657,20494 -delete_import_module(Mod, ImportModule) :-delete_import_module660,20623 -delete_import_module(Mod, ImportModule) :-delete_import_module660,20623 -delete_import_module(Mod, ImportModule) :-delete_import_module660,20623 -delete_import_module(Mod, ImportModule) :-delete_import_module663,20761 -delete_import_module(Mod, ImportModule) :-delete_import_module663,20761 -delete_import_module(Mod, ImportModule) :-delete_import_module663,20761 -delete_import_module(Mod, ImportModule) :-delete_import_module667,20896 -delete_import_module(Mod, ImportModule) :-delete_import_module667,20896 -delete_import_module(Mod, ImportModule) :-delete_import_module667,20896 -delete_import_module(Mod, ImportModule) :-delete_import_module670,21033 -delete_import_module(Mod, ImportModule) :-delete_import_module670,21033 -delete_import_module(Mod, ImportModule) :-delete_import_module670,21033 -'$set_source_module'(Source0, SourceF) :-$set_source_module673,21162 -'$set_source_module'(Source0, SourceF) :-$set_source_module673,21162 -'$set_source_module'(Source0, SourceF) :-$set_source_module673,21162 -'$set_source_module'(Source0, SourceF) :-$set_source_module676,21264 -'$set_source_module'(Source0, SourceF) :-$set_source_module676,21264 -'$set_source_module'(Source0, SourceF) :-$set_source_module676,21264 -module_property(Mod, Prop) :-module_property696,21858 -module_property(Mod, Prop) :-module_property696,21858 -module_property(Mod, Prop) :-module_property696,21858 -module_property(Mod, class(L)) :-module_property701,21990 -module_property(Mod, class(L)) :-module_property701,21990 -module_property(Mod, class(L)) :-module_property701,21990 -module_property(Mod, line_count(L)) :-module_property703,22050 -module_property(Mod, line_count(L)) :-module_property703,22050 -module_property(Mod, line_count(L)) :-module_property703,22050 -module_property(Mod, file(F)) :-module_property705,22137 -module_property(Mod, file(F)) :-module_property705,22137 -module_property(Mod, file(F)) :-module_property705,22137 -module_property(Mod, exports(Es)) :-module_property707,22217 -module_property(Mod, exports(Es)) :-module_property707,22217 -module_property(Mod, exports(Es)) :-module_property707,22217 -'$module_class'( Mod, system) :- '$is_system_module'( Mod ), !.$module_class722,22551 -'$module_class'( Mod, system) :- '$is_system_module'( Mod ), !.$module_class722,22551 -'$module_class'( Mod, system) :- '$is_system_module'( Mod ), !.$module_class722,22551 -'$module_class'( Mod, library) :- '$library_module'( Mod ), !.$module_class723,22615 -'$module_class'( Mod, library) :- '$library_module'( Mod ), !.$module_class723,22615 -'$module_class'( Mod, library) :- '$library_module'( Mod ), !.$module_class723,22615 -'$module_class'(_Mod, user) :- !.$module_class724,22678 -'$module_class'(_Mod, user) :- !.$module_class724,22678 -'$module_class'(_Mod, user) :- !.$module_class724,22678 -'$module_class'( _, temporary) :- fail.$module_class725,22712 -'$module_class'( _, temporary) :- fail.$module_class725,22712 -'$module_class'( _, temporary) :- fail.$module_class725,22712 -'$module_class'( _, test) :- fail.$module_class726,22754 -'$module_class'( _, test) :- fail.$module_class726,22754 -'$module_class'( _, test) :- fail.$module_class726,22754 -'$module_class'( _, development) :- fail.$module_class727,22791 -'$module_class'( _, development) :- fail.$module_class727,22791 -'$module_class'( _, development) :- fail.$module_class727,22791 -'$library_module'(M1) :-$library_module729,22836 -'$library_module'(M1) :-$library_module729,22836 -'$library_module'(M1) :-$library_module729,22836 -ls_imports :-ls_imports732,22933 -unload_module(Mod) :-unload_module739,23089 -unload_module(Mod) :-unload_module739,23089 -unload_module(Mod) :-unload_module739,23089 -unload_module(Mod) :-unload_module743,23187 -unload_module(Mod) :-unload_module743,23187 -unload_module(Mod) :-unload_module743,23187 -unload_module(Mod) :-unload_module747,23308 -unload_module(Mod) :-unload_module747,23308 -unload_module(Mod) :-unload_module747,23308 -unload_module(Mod) :-unload_module752,23424 -unload_module(Mod) :-unload_module752,23424 -unload_module(Mod) :-unload_module752,23424 -unload_module(Mod) :-unload_module760,23723 -unload_module(Mod) :-unload_module760,23723 -unload_module(Mod) :-unload_module760,23723 -unload_module(Mod) :-unload_module765,23883 -unload_module(Mod) :-unload_module765,23883 -unload_module(Mod) :-unload_module765,23883 -unload_module(Mod) :-unload_module769,23961 -unload_module(Mod) :-unload_module769,23961 -unload_module(Mod) :-unload_module769,23961 -unload_module(Mod) :-unload_module773,24065 -unload_module(Mod) :-unload_module773,24065 -unload_module(Mod) :-unload_module773,24065 -module_state :-module_state779,24181 - -pl/newmod.yap,2274 -module(N) :-module14,417 -module(N) :-module14,417 -module(N) :-module14,417 -module(N) :-module17,484 -module(N) :-module17,484 -module(N) :-module17,484 -module(N) :-module21,564 -module(N) :-module21,564 -module(N) :-module21,564 -'$module_dec'(system(N, Ss), Ps) :- !,$module_dec45,1509 -'$module_dec'(system(N, Ss), Ps) :- !,$module_dec45,1509 -'$module_dec'(system(N, Ss), Ps) :- !,$module_dec45,1509 -'$module_dec'(system(N), Ps) :- !,$module_dec49,1637 -'$module_dec'(system(N), Ps) :- !,$module_dec49,1637 -'$module_dec'(system(N), Ps) :- !,$module_dec49,1637 -'$module_dec'(N, Ps) :-$module_dec53,1762 -'$module_dec'(N, Ps) :-$module_dec53,1762 -'$module_dec'(N, Ps) :-$module_dec53,1762 -'$mk_system_predicates'( Ps, _N ) :-$mk_system_predicates59,1934 -'$mk_system_predicates'( Ps, _N ) :-$mk_system_predicates59,1934 -'$mk_system_predicates'( Ps, _N ) :-$mk_system_predicates59,1934 -'$mk_system_predicates'( _Ps, _N ).$mk_system_predicates63,2058 -'$mk_system_predicates'( _Ps, _N )./p,predicate,predicate definition63,2058 -'$mk_system_predicates'( _Ps, _N ).$mk_system_predicates63,2058 -declare_module(Mod) -->declare_module66,2098 -declare_module(Mod) -->declare_module66,2098 -declare_module(Mod) -->declare_module66,2098 -'$module'(_,N,P) :-$module82,2600 -'$module'(_,N,P) :-$module82,2600 -'$module'(_,N,P) :-$module82,2600 -set_module_property(Mod, base(Base)) :-set_module_property92,2906 -set_module_property(Mod, base(Base)) :-set_module_property92,2906 -set_module_property(Mod, base(Base)) :-set_module_property92,2906 -set_module_property(Mod, exports(Exports)) :-set_module_property95,3016 -set_module_property(Mod, exports(Exports)) :-set_module_property95,3016 -set_module_property(Mod, exports(Exports)) :-set_module_property95,3016 -set_module_property(Mod, exports(Exports, File, Line)) :-set_module_property98,3160 -set_module_property(Mod, exports(Exports, File, Line)) :-set_module_property98,3160 -set_module_property(Mod, exports(Exports, File, Line)) :-set_module_property98,3160 -set_module_property(Mod, class(Class)) :-set_module_property101,3313 -set_module_property(Mod, class(Class)) :-set_module_property101,3313 -set_module_property(Mod, class(Class)) :-set_module_property101,3313 - -pl/os.yap,6823 -cd :-cd42,894 -cd(F) :-cd52,993 -cd(F) :-cd52,993 -cd(F) :-cd52,993 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -getcwd(Dir) :- working_directory(Dir, Dir).getcwd64,1250 -ls :-ls73,1369 -'$load_system_ls'(X,L) :-$load_system_ls78,1436 -'$load_system_ls'(X,L) :-$load_system_ls78,1436 -'$load_system_ls'(X,L) :-$load_system_ls78,1436 -'$load_system_ls'(X,L) :-$load_system_ls82,1560 -'$load_system_ls'(X,L) :-$load_system_ls82,1560 -'$load_system_ls'(X,L) :-$load_system_ls82,1560 -'$do_print_files'([]) :-$do_print_files86,1619 -'$do_print_files'([]) :-$do_print_files86,1619 -'$do_print_files'([]) :-$do_print_files86,1619 -'$do_print_files'([F| Fs]) :-$do_print_files88,1649 -'$do_print_files'([F| Fs]) :-$do_print_files88,1649 -'$do_print_files'([F| Fs]) :-$do_print_files88,1649 -'$do_print_file'('.') :- !.$do_print_file92,1726 -'$do_print_file'('.') :- !.$do_print_file92,1726 -'$do_print_file'('.') :- !.$do_print_file92,1726 -'$do_print_file'('..') :- !.$do_print_file93,1754 -'$do_print_file'('..') :- !.$do_print_file93,1754 -'$do_print_file'('..') :- !.$do_print_file93,1754 -'$do_print_file'(F) :- atom_concat('.', _, F), !.$do_print_file94,1783 -'$do_print_file'(F) :- atom_concat('.', _, F), !.$do_print_file94,1783 -'$do_print_file'(F) :- atom_concat('.', _, F), !.$do_print_file94,1783 -'$do_print_file'(F) :-$do_print_file95,1833 -'$do_print_file'(F) :-$do_print_file95,1833 -'$do_print_file'(F) :-$do_print_file95,1833 -pwd :-pwd105,1933 -unix(V) :- var(V), !,unix143,2886 -unix(V) :- var(V), !,unix143,2886 -unix(V) :- var(V), !,unix143,2886 -unix(argv(L)) :-unix145,2951 -unix(argv(L)) :-unix145,2951 -unix(argv(L)) :-unix145,2951 -unix(cd) :- cd('~').unix147,2999 -unix(cd) :- cd('~').unix147,2999 -unix(cd) :- cd('~').unix147,2999 -unix(cd) :- cd('~').unix147,2999 -unix(cd) :- cd('~').unix147,2999 -unix(cd(A)) :- cd(A).unix148,3020 -unix(cd(A)) :- cd(A).unix148,3020 -unix(cd(A)) :- cd(A).unix148,3020 -unix(cd(A)) :- cd(A).unix148,3020 -unix(cd(A)) :- cd(A).unix148,3020 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(environ(X,Y)) :- '$do_environ'(X,Y).unix149,3042 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(getcwd(X)) :- getcwd(X).unix150,3084 -unix(shell(V)) :- var(V), !,unix151,3114 -unix(shell(V)) :- var(V), !,unix151,3114 -unix(shell(V)) :- var(V), !,unix151,3114 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- atom(A), !, '$shell'(A).unix153,3193 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(A)) :- string(A), !, '$shell'(A).unix154,3236 -unix(shell(V)) :-unix155,3281 -unix(shell(V)) :-unix155,3281 -unix(shell(V)) :-unix155,3281 -unix(system(V)) :- var(V), !,unix157,3350 -unix(system(V)) :- var(V), !,unix157,3350 -unix(system(V)) :- var(V), !,unix157,3350 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- atom(A), !, system(A).unix159,3431 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(A)) :- string(A), !, system(A).unix160,3473 -unix(system(V)) :-unix161,3517 -unix(system(V)) :-unix161,3517 -unix(system(V)) :-unix161,3517 -unix(shell) :- sh.unix163,3586 -unix(shell) :- sh.unix163,3586 -unix(shell) :- sh.unix163,3586 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -unix(putenv(X,Y)) :- '$putenv'(X,Y).unix164,3605 -'$is_list_of_atoms'(V,_) :- var(V),!.$is_list_of_atoms167,3644 -'$is_list_of_atoms'(V,_) :- var(V),!.$is_list_of_atoms167,3644 -'$is_list_of_atoms'(V,_) :- var(V),!.$is_list_of_atoms167,3644 -'$is_list_of_atoms'([],_) :- !.$is_list_of_atoms168,3682 -'$is_list_of_atoms'([],_) :- !.$is_list_of_atoms168,3682 -'$is_list_of_atoms'([],_) :- !.$is_list_of_atoms168,3682 -'$is_list_of_atoms'([H|L],L0) :- !,$is_list_of_atoms169,3714 -'$is_list_of_atoms'([H|L],L0) :- !,$is_list_of_atoms169,3714 -'$is_list_of_atoms'([H|L],L0) :- !,$is_list_of_atoms169,3714 -'$is_list_of_atoms'(H,L0) :-$is_list_of_atoms172,3815 -'$is_list_of_atoms'(H,L0) :-$is_list_of_atoms172,3815 -'$is_list_of_atoms'(H,L0) :-$is_list_of_atoms172,3815 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom175,3894 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom175,3894 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom175,3894 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom177,3943 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom177,3943 -'$check_if_head_may_be_atom'(H,_) :-$check_if_head_may_be_atom177,3943 -'$check_if_head_may_be_atom'(H,L0) :-$check_if_head_may_be_atom179,3993 -'$check_if_head_may_be_atom'(H,L0) :-$check_if_head_may_be_atom179,3993 -'$check_if_head_may_be_atom'(H,L0) :-$check_if_head_may_be_atom179,3993 -'$do_environ'(X, Y) :-$do_environ183,4082 -'$do_environ'(X, Y) :-$do_environ183,4082 -'$do_environ'(X, Y) :-$do_environ183,4082 -'$do_environ'(X, Y) :- atom(X), !,$do_environ186,4171 -'$do_environ'(X, Y) :- atom(X), !,$do_environ186,4171 -'$do_environ'(X, Y) :- atom(X), !,$do_environ186,4171 -'$do_environ'(X, Y) :-$do_environ188,4223 -'$do_environ'(X, Y) :-$do_environ188,4223 -'$do_environ'(X, Y) :-$do_environ188,4223 -putenv(Na,Val) :-putenv201,4514 -putenv(Na,Val) :-putenv201,4514 -putenv(Na,Val) :-putenv201,4514 -getenv(Na,Val) :-getenv204,4553 -getenv(Na,Val) :-getenv204,4553 -getenv(Na,Val) :-getenv204,4553 -setenv(Na,Val) :-setenv217,4866 -setenv(Na,Val) :-setenv217,4866 -setenv(Na,Val) :-setenv217,4866 - -pl/pathconf.yap,5938 -:- multifile library_directory/1.multifile24,682 -:- multifile library_directory/1.multifile24,682 -:- dynamic library_directory/1.dynamic26,717 -:- dynamic library_directory/1.dynamic26,717 -library_directory(Home) :-library_directory30,827 -library_directory(Home) :-library_directory30,827 -library_directory(Home) :-library_directory30,827 -library_directory( Dir ) :-library_directory34,950 -library_directory( Dir ) :-library_directory34,950 -library_directory( Dir ) :-library_directory34,950 -library_directory( '~/share/Yap' ).library_directory37,1040 -library_directory( '~/share/Yap' ).library_directory37,1040 -library_directory( '.' ).library_directory39,1106 -library_directory( '.' ).library_directory39,1106 -library_directory( Dir ) :-library_directory41,1162 -library_directory( Dir ) :-library_directory41,1162 -library_directory( Dir ) :-library_directory41,1162 -:- dynamic commons_directory/1.dynamic52,1445 -:- dynamic commons_directory/1.dynamic52,1445 -:- multifile commons_directory/1.multifile54,1478 -:- multifile commons_directory/1.multifile54,1478 -commons_directory( Path ):-commons_directory57,1514 -commons_directory( Path ):-commons_directory57,1514 -commons_directory( Path ):-commons_directory57,1514 -:- multifile foreign_directory/1.multifile69,1800 -:- multifile foreign_directory/1.multifile69,1800 -:- dynamic foreign_directory/1.dynamic71,1835 -:- dynamic foreign_directory/1.dynamic71,1835 -foreign_directory(Home) :-foreign_directory74,1897 -foreign_directory(Home) :-foreign_directory74,1897 -foreign_directory(Home) :-foreign_directory74,1897 -foreign_directory( '.').foreign_directory77,1997 -foreign_directory( '.').foreign_directory77,1997 -foreign_directory(yap('lib/Yap')).foreign_directory78,2022 -foreign_directory(yap('lib/Yap')).foreign_directory78,2022 -foreign_directory( Path ):-foreign_directory79,2057 -foreign_directory( Path ):-foreign_directory79,2057 -foreign_directory( Path ):-foreign_directory79,2057 -:- dynamic prolog_file_type/2.dynamic107,2931 -:- dynamic prolog_file_type/2.dynamic107,2931 -prolog_file_type(yap, prolog).prolog_file_type109,2963 -prolog_file_type(yap, prolog).prolog_file_type109,2963 -prolog_file_type(pl, prolog).prolog_file_type110,2994 -prolog_file_type(pl, prolog).prolog_file_type110,2994 -prolog_file_type(prolog, prolog).prolog_file_type111,3024 -prolog_file_type(prolog, prolog).prolog_file_type111,3024 -prolog_file_type(A, prolog) :-prolog_file_type112,3058 -prolog_file_type(A, prolog) :-prolog_file_type112,3058 -prolog_file_type(A, prolog) :-prolog_file_type112,3058 -prolog_file_type(qly, qly).prolog_file_type117,3163 -prolog_file_type(qly, qly).prolog_file_type117,3163 -prolog_file_type(A, executable) :-prolog_file_type118,3191 -prolog_file_type(A, executable) :-prolog_file_type118,3191 -prolog_file_type(A, executable) :-prolog_file_type118,3191 -file_search_path(library, Dir) :-file_search_path130,3613 -file_search_path(library, Dir) :-file_search_path130,3613 -file_search_path(library, Dir) :-file_search_path130,3613 -file_search_path(commons, Dir) :-file_search_path132,3673 -file_search_path(commons, Dir) :-file_search_path132,3673 -file_search_path(commons, Dir) :-file_search_path132,3673 -file_search_path(swi, Home) :-file_search_path134,3733 -file_search_path(swi, Home) :-file_search_path134,3733 -file_search_path(swi, Home) :-file_search_path134,3733 -file_search_path(yap, Home) :-file_search_path136,3799 -file_search_path(yap, Home) :-file_search_path136,3799 -file_search_path(yap, Home) :-file_search_path136,3799 -file_search_path(system, Dir) :-file_search_path138,3871 -file_search_path(system, Dir) :-file_search_path138,3871 -file_search_path(system, Dir) :-file_search_path138,3871 -file_search_path(foreign, Dir) :-file_search_path140,3935 -file_search_path(foreign, Dir) :-file_search_path140,3935 -file_search_path(foreign, Dir) :-file_search_path140,3935 -file_search_path(executable, Dir) :-file_search_path142,3995 -file_search_path(executable, Dir) :-file_search_path142,3995 -file_search_path(executable, Dir) :-file_search_path142,3995 -file_search_path(path, C) :-file_search_path144,4058 -file_search_path(path, C) :-file_search_path144,4058 -file_search_path(path, C) :-file_search_path144,4058 -:- multifile file_search_path/2.multifile160,4495 -:- multifile file_search_path/2.multifile160,4495 -:- dynamic file_search_path/2.dynamic162,4529 -:- dynamic file_search_path/2.dynamic162,4529 -file_search_path(library, Dir) :-file_search_path165,4562 -file_search_path(library, Dir) :-file_search_path165,4562 -file_search_path(library, Dir) :-file_search_path165,4562 -file_search_path(commons, Dir) :-file_search_path167,4621 -file_search_path(commons, Dir) :-file_search_path167,4621 -file_search_path(commons, Dir) :-file_search_path167,4621 -file_search_path(swi, Home) :-file_search_path169,4680 -file_search_path(swi, Home) :-file_search_path169,4680 -file_search_path(swi, Home) :-file_search_path169,4680 -file_search_path(yap, Home) :-file_search_path171,4745 -file_search_path(yap, Home) :-file_search_path171,4745 -file_search_path(yap, Home) :-file_search_path171,4745 -file_search_path(system, Dir) :-file_search_path173,4813 -file_search_path(system, Dir) :-file_search_path173,4813 -file_search_path(system, Dir) :-file_search_path173,4813 -file_search_path(foreign, Dir) :-file_search_path175,4876 -file_search_path(foreign, Dir) :-file_search_path175,4876 -file_search_path(foreign, Dir) :-file_search_path175,4876 -file_search_path(executable, Dir) :-file_search_path177,4936 -file_search_path(executable, Dir) :-file_search_path177,4936 -file_search_path(executable, Dir) :-file_search_path177,4936 -file_search_path(path, C) :-file_search_path179,4999 -file_search_path(path, C) :-file_search_path179,4999 -file_search_path(path, C) :-file_search_path179,4999 - -pl/pl,0 - -pl/preddecls.yap,9128 -'$log_upd'(1).$log_upd28,919 -'$log_upd'(1)./p,predicate,predicate definition28,919 -'$log_upd'(1).$log_upd28,919 -:- dynamic god/1.dynamic52,1593 -:- dynamic god/1.dynamic52,1593 -:- dynamic son/3, father/2, mother/2.dynamic59,1662 -:- dynamic son/3, father/2, mother/2.dynamic59,1662 -dynamic(X) :-dynamic75,1864 -dynamic(X) :-dynamic75,1864 -dynamic(X) :-dynamic75,1864 -dynamic(X) :-dynamic79,1961 -dynamic(X) :-dynamic79,1961 -dynamic(X) :-dynamic79,1961 -'$dynamic'(X,M) :- var(X), !,$dynamic82,2035 -'$dynamic'(X,M) :- var(X), !,$dynamic82,2035 -'$dynamic'(X,M) :- var(X), !,$dynamic82,2035 -'$dynamic'(X,M) :- var(M), !,$dynamic84,2113 -'$dynamic'(X,M) :- var(M), !,$dynamic84,2113 -'$dynamic'(X,M) :- var(M), !,$dynamic84,2113 -'$dynamic'(Mod:Spec,_) :- !,$dynamic86,2191 -'$dynamic'(Mod:Spec,_) :- !,$dynamic86,2191 -'$dynamic'(Mod:Spec,_) :- !,$dynamic86,2191 -'$dynamic'([], _) :- !.$dynamic88,2243 -'$dynamic'([], _) :- !.$dynamic88,2243 -'$dynamic'([], _) :- !.$dynamic88,2243 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M)./p,predicate,predicate definition89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic89,2267 -'$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic'(L, M).$dynamic'([H|L], M) :- !, '$dynamic'(H, M), '$dynamic89,2267 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M)./p,predicate,predicate definition90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic90,2330 -'$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic'(B,M).$dynamic'((A,B),M) :- !, '$dynamic'(A,M), '$dynamic90,2330 -'$dynamic'(A//N,Mod) :- integer(N), !,$dynamic91,2390 -'$dynamic'(A//N,Mod) :- integer(N), !,$dynamic91,2390 -'$dynamic'(A//N,Mod) :- integer(N), !,$dynamic91,2390 -'$dynamic'(A/N,Mod) :-$dynamic94,2464 -'$dynamic'(A/N,Mod) :-$dynamic94,2464 -'$dynamic'(A/N,Mod) :-$dynamic94,2464 -'$public'(X, _) :- var(X), !,$public109,2893 -'$public'(X, _) :- var(X), !,$public109,2893 -'$public'(X, _) :- var(X), !,$public109,2893 -'$public'(Mod:Spec, _) :- !,$public111,2968 -'$public'(Mod:Spec, _) :- !,$public111,2968 -'$public'(Mod:Spec, _) :- !,$public111,2968 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M)./p,predicate,predicate definition113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public113,3019 -'$public'((A,B), M) :- !, '$public'(A,M), '$public'(B,M).$public'((A,B), M) :- !, '$public'(A,M), '$public113,3019 -'$public'([],_) :- !.$public114,3077 -'$public'([],_) :- !.$public114,3077 -'$public'([],_) :- !.$public114,3077 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M)./p,predicate,predicate definition115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public115,3099 -'$public'([H|L], M) :- !, '$public'(H, M), '$public'(L, M).$public'([H|L], M) :- !, '$public'(H, M), '$public115,3099 -'$public'(A//N1, Mod) :- integer(N1), !,$public116,3159 -'$public'(A//N1, Mod) :- integer(N1), !,$public116,3159 -'$public'(A//N1, Mod) :- integer(N1), !,$public116,3159 -'$public'(A/N, Mod) :- integer(N), atom(A), !,$public119,3234 -'$public'(A/N, Mod) :- integer(N), atom(A), !,$public119,3234 -'$public'(A/N, Mod) :- integer(N), atom(A), !,$public119,3234 -'$public'(X, Mod) :-$public122,3326 -'$public'(X, Mod) :-$public122,3326 -'$public'(X, Mod) :-$public122,3326 -'$do_make_public'(T, Mod) :-$do_make_public125,3404 -'$do_make_public'(T, Mod) :-$do_make_public125,3404 -'$do_make_public'(T, Mod) :-$do_make_public125,3404 -'$do_make_public'(T, Mod) :-$do_make_public127,3498 -'$do_make_public'(T, Mod) :-$do_make_public127,3498 -'$do_make_public'(T, Mod) :-$do_make_public127,3498 -:- multifile user:portray_message/2, multifile user:message_hook/3.multifile140,3810 -:- multifile user:portray_message/2, multifile user:message_hook/3.multifile140,3810 -multifile(P) :-multifile155,4334 -multifile(P) :-multifile155,4334 -multifile(P) :-multifile155,4334 -'$multifile'(V, _) :-$multifile159,4407 -'$multifile'(V, _) :-$multifile159,4407 -'$multifile'(V, _) :-$multifile159,4407 -'$multifile'((X,Y), M) :-$multifile163,4496 -'$multifile'((X,Y), M) :-$multifile163,4496 -'$multifile'((X,Y), M) :-$multifile163,4496 -'$multifile'(Mod:PredSpec, _) :-$multifile167,4577 -'$multifile'(Mod:PredSpec, _) :-$multifile167,4577 -'$multifile'(Mod:PredSpec, _) :-$multifile167,4577 -'$multifile'(N//A, M) :- !,$multifile170,4647 -'$multifile'(N//A, M) :- !,$multifile170,4647 -'$multifile'(N//A, M) :- !,$multifile170,4647 -'$multifile'(N/A, M) :-$multifile174,4724 -'$multifile'(N/A, M) :-$multifile174,4724 -'$multifile'(N/A, M) :-$multifile174,4724 -'$multifile'(N/A, M) :-$multifile177,4781 -'$multifile'(N/A, M) :-$multifile177,4781 -'$multifile'(N/A, M) :-$multifile177,4781 -'$multifile'(N/A, M) :- !,$multifile180,4852 -'$multifile'(N/A, M) :- !,$multifile180,4852 -'$multifile'(N/A, M) :- !,$multifile180,4852 -'$multifile'([H|T], M) :- !,$multifile182,4905 -'$multifile'([H|T], M) :- !,$multifile182,4905 -'$multifile'([H|T], M) :- !,$multifile182,4905 -'$multifile'(P, M) :-$multifile185,4974 -'$multifile'(P, M) :-$multifile185,4974 -'$multifile'(P, M) :-$multifile185,4974 -discontiguous(V) :-discontiguous188,5061 -discontiguous(V) :-discontiguous188,5061 -discontiguous(V) :-discontiguous188,5061 -discontiguous(M:F) :- !,discontiguous191,5145 -discontiguous(M:F) :- !,discontiguous191,5145 -discontiguous(M:F) :- !,discontiguous191,5145 -discontiguous(F) :-discontiguous193,5194 -discontiguous(F) :-discontiguous193,5194 -discontiguous(F) :-discontiguous193,5194 -'$discontiguous'(V,M) :- var(V), !,$discontiguous197,5262 -'$discontiguous'(V,M) :- var(V), !,$discontiguous197,5262 -'$discontiguous'(V,M) :- var(V), !,$discontiguous197,5262 -'$discontiguous'((X,Y),M) :- !,$discontiguous199,5352 -'$discontiguous'((X,Y),M) :- !,$discontiguous199,5352 -'$discontiguous'((X,Y),M) :- !,$discontiguous199,5352 -'$discontiguous'(M:A,_) :- !,$discontiguous202,5432 -'$discontiguous'(M:A,_) :- !,$discontiguous202,5432 -'$discontiguous'(M:A,_) :- !,$discontiguous202,5432 -'$discontiguous'(N//A1, M) :- !,$discontiguous204,5486 -'$discontiguous'(N//A1, M) :- !,$discontiguous204,5486 -'$discontiguous'(N//A1, M) :- !,$discontiguous204,5486 -'$discontiguous'(N/A, M) :- !,$discontiguous208,5575 -'$discontiguous'(N/A, M) :- !,$discontiguous208,5575 -'$discontiguous'(N/A, M) :- !,$discontiguous208,5575 -'$discontiguous'(P,M) :-$discontiguous210,5636 -'$discontiguous'(P,M) :-$discontiguous210,5636 -'$discontiguous'(P,M) :-$discontiguous210,5636 -'$check_multifile_pred'(Hd, M, _) :-$check_multifile_pred216,5771 -'$check_multifile_pred'(Hd, M, _) :-$check_multifile_pred216,5771 -'$check_multifile_pred'(Hd, M, _) :-$check_multifile_pred216,5771 -'$check_multifile_pred'(Hd, M, Fl) :-$check_multifile_pred221,5929 -'$check_multifile_pred'(Hd, M, Fl) :-$check_multifile_pred221,5929 -'$check_multifile_pred'(Hd, M, Fl) :-$check_multifile_pred221,5929 -'$warn_mfile'(F,A) :-$warn_mfile228,6127 -'$warn_mfile'(F,A) :-$warn_mfile228,6127 -'$warn_mfile'(F,A) :-$warn_mfile228,6127 -'$is_public'(T, Mod) :-$is_public236,6380 -'$is_public'(T, Mod) :-$is_public236,6380 -'$is_public'(T, Mod) :-$is_public236,6380 -'$is_public'(T, Mod) :-$is_public238,6469 -'$is_public'(T, Mod) :-$is_public238,6469 -'$is_public'(T, Mod) :-$is_public238,6469 -'$module_transparent'((P,Ps), M) :- !,$module_transparent258,7074 -'$module_transparent'((P,Ps), M) :- !,$module_transparent258,7074 -'$module_transparent'((P,Ps), M) :- !,$module_transparent258,7074 -'$module_transparent'(M:D, _) :- !,$module_transparent261,7174 -'$module_transparent'(M:D, _) :- !,$module_transparent261,7174 -'$module_transparent'(M:D, _) :- !,$module_transparent261,7174 -'$module_transparent'(F/N, M) :-$module_transparent263,7240 -'$module_transparent'(F/N, M) :-$module_transparent263,7240 -'$module_transparent'(F/N, M) :-$module_transparent263,7240 -'$module_transparent'(F/N, M) :-$module_transparent265,7309 -'$module_transparent'(F/N, M) :-$module_transparent265,7309 -'$module_transparent'(F/N, M) :-$module_transparent265,7309 - -pl/preddyns.yap,7877 -asserta(Clause) :-asserta21,405 -asserta(Clause) :-asserta21,405 -asserta(Clause) :-asserta21,405 -assertz(Clause) :-assertz34,871 -assertz(Clause) :-assertz34,871 -assertz(Clause) :-assertz34,871 -assert(Clause) :-assert50,1493 -assert(Clause) :-assert50,1493 -assert(Clause) :-assert50,1493 -'$assert'(Clause, Where, R) :-$assert53,1547 -'$assert'(Clause, Where, R) :-$assert53,1547 -'$assert'(Clause, Where, R) :-$assert53,1547 -asserta(Clause, Ref) :-asserta67,1983 -asserta(Clause, Ref) :-asserta67,1983 -asserta(Clause, Ref) :-asserta67,1983 -assertz(Clause, Ref) :-assertz80,2339 -assertz(Clause, Ref) :-assertz80,2339 -assertz(Clause, Ref) :-assertz80,2339 -assert(Clause, Ref) :-assert93,2724 -assert(Clause, Ref) :-assert93,2724 -assert(Clause, Ref) :-assert93,2724 -'$assertz_dynamic'(X, C, C0, Mod) :-$assertz_dynamic97,2786 -'$assertz_dynamic'(X, C, C0, Mod) :-$assertz_dynamic97,2786 -'$assertz_dynamic'(X, C, C0, Mod) :-$assertz_dynamic97,2786 -'$assertz_dynamic'(X,C,C0,Mod) :-$assertz_dynamic102,2916 -'$assertz_dynamic'(X,C,C0,Mod) :-$assertz_dynamic102,2916 -'$assertz_dynamic'(X,C,C0,Mod) :-$assertz_dynamic102,2916 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses117,3194 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses117,3194 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses117,3194 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses121,3307 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses121,3307 -'$remove_all_d_clauses'(H,M) :-$remove_all_d_clauses121,3307 -'$remove_all_d_clauses'(_,_).$remove_all_d_clauses123,3379 -'$remove_all_d_clauses'(_,_)./p,predicate,predicate definition123,3379 -'$remove_all_d_clauses'(_,_).$remove_all_d_clauses123,3379 -'$erase_all_mf_dynamic'(Na,A,M) :-$erase_all_mf_dynamic125,3410 -'$erase_all_mf_dynamic'(Na,A,M) :-$erase_all_mf_dynamic125,3410 -'$erase_all_mf_dynamic'(Na,A,M) :-$erase_all_mf_dynamic125,3410 -'$erase_all_mf_dynamic'(_,_,_).$erase_all_mf_dynamic131,3564 -'$erase_all_mf_dynamic'(_,_,_)./p,predicate,predicate definition131,3564 -'$erase_all_mf_dynamic'(_,_,_).$erase_all_mf_dynamic131,3564 -'$assertat_d'(asserta,Head,Body,C0,Mod,R) :- !,$assertat_d133,3597 -'$assertat_d'(asserta,Head,Body,C0,Mod,R) :- !,$assertat_d133,3597 -'$assertat_d'(asserta,Head,Body,C0,Mod,R) :- !,$assertat_d133,3597 -'$assertat_d'(assertz,Head,Body,C0,Mod,R) :-$assertat_d151,4131 -'$assertat_d'(assertz,Head,Body,C0,Mod,R) :-$assertat_d151,4131 -'$assertat_d'(assertz,Head,Body,C0,Mod,R) :-$assertat_d151,4131 -retract( C ) :-retract180,4936 -retract( C ) :-retract180,4936 -retract( C ) :-retract180,4936 -'$retract2'(F, H, M, B, R) :-$retract2186,5096 -'$retract2'(F, H, M, B, R) :-$retract2186,5096 -'$retract2'(F, H, M, B, R) :-$retract2186,5096 -'$retract2'(F, H, M, B, R) :-$retract2192,5374 -'$retract2'(F, H, M, B, R) :-$retract2192,5374 -'$retract2'(F, H, M, B, R) :-$retract2192,5374 -'$retract2'(_, H,M,_,_) :-$retract2198,5658 -'$retract2'(_, H,M,_,_) :-$retract2198,5658 -'$retract2'(_, H,M,_,_) :-$retract2198,5658 -'$retract2'(_, H,M,B,_) :-$retract2203,5756 -'$retract2'(_, H,M,B,_) :-$retract2203,5756 -'$retract2'(_, H,M,B,_) :-$retract2203,5756 -retract(M:C,R) :- !,retract217,6054 -retract(M:C,R) :- !,retract217,6054 -retract(M:C,R) :- !,retract217,6054 -'$retract'(C, M0, R) :-$retract221,6138 -'$retract'(C, M0, R) :-$retract221,6138 -'$retract'(C, M0, R) :-$retract221,6138 -'$retract'(C,M0,R) :-$retract228,6288 -'$retract'(C,M0,R) :-$retract228,6288 -'$retract'(C,M0,R) :-$retract228,6288 -'$retract'(C,M,_) :-$retract232,6398 -'$retract'(C,M,_) :-$retract232,6398 -'$retract'(C,M,_) :-$retract232,6398 -'$fetch_predicate_indicator_from_clause'((C :- _), M:Na/Ar) :-$fetch_predicate_indicator_from_clause237,6569 -'$fetch_predicate_indicator_from_clause'((C :- _), M:Na/Ar) :-$fetch_predicate_indicator_from_clause237,6569 -'$fetch_predicate_indicator_from_clause'((C :- _), M:Na/Ar) :-$fetch_predicate_indicator_from_clause237,6569 -'$fetch_predicate_indicator_from_clause'(C, M:Na/Ar) :-$fetch_predicate_indicator_from_clause241,6695 -'$fetch_predicate_indicator_from_clause'(C, M:Na/Ar) :-$fetch_predicate_indicator_from_clause241,6695 -'$fetch_predicate_indicator_from_clause'(C, M:Na/Ar) :-$fetch_predicate_indicator_from_clause241,6695 -retractall(M:V) :- !,retractall253,6959 -retractall(M:V) :- !,retractall253,6959 -retractall(M:V) :- !,retractall253,6959 -retractall(V) :-retractall255,7002 -retractall(V) :-retractall255,7002 -retractall(V) :-retractall255,7002 -'$retractall'(V,M) :- var(V), !,$retractall259,7064 -'$retractall'(V,M) :- var(V), !,$retractall259,7064 -'$retractall'(V,M) :- var(V), !,$retractall259,7064 -'$retractall'(M:V,_) :- !,$retractall261,7145 -'$retractall'(M:V,_) :- !,$retractall261,7145 -'$retractall'(M:V,_) :- !,$retractall261,7145 -'$retractall'(T,M) :-$retractall263,7193 -'$retractall'(T,M) :-$retractall263,7193 -'$retractall'(T,M) :-$retractall263,7193 -'$retractall_lu'(T,M) :-$retractall_lu286,7690 -'$retractall_lu'(T,M) :-$retractall_lu286,7690 -'$retractall_lu'(T,M) :-$retractall_lu286,7690 -'$retractall_lu'(T,M) :-$retractall_lu289,7782 -'$retractall_lu'(T,M) :-$retractall_lu289,7782 -'$retractall_lu'(T,M) :-$retractall_lu289,7782 -'$retractall_lu'(_,_).$retractall_lu293,7857 -'$retractall_lu'(_,_)./p,predicate,predicate definition293,7857 -'$retractall_lu'(_,_).$retractall_lu293,7857 -'$retractall_lu_mf'(T,M) :-$retractall_lu_mf295,7881 -'$retractall_lu_mf'(T,M) :-$retractall_lu_mf295,7881 -'$retractall_lu_mf'(T,M) :-$retractall_lu_mf295,7881 -'$retractall_lu_mf'(_,_).$retractall_lu_mf300,8031 -'$retractall_lu_mf'(_,_)./p,predicate,predicate definition300,8031 -'$retractall_lu_mf'(_,_).$retractall_lu_mf300,8031 -'$erase_all_clauses_for_dynamic'(T, M) :-$erase_all_clauses_for_dynamic302,8058 -'$erase_all_clauses_for_dynamic'(T, M) :-$erase_all_clauses_for_dynamic302,8058 -'$erase_all_clauses_for_dynamic'(T, M) :-$erase_all_clauses_for_dynamic302,8058 -'$erase_all_clauses_for_dynamic'(T,M) :-$erase_all_clauses_for_dynamic304,8147 -'$erase_all_clauses_for_dynamic'(T,M) :-$erase_all_clauses_for_dynamic304,8147 -'$erase_all_clauses_for_dynamic'(T,M) :-$erase_all_clauses_for_dynamic304,8147 -'$erase_all_clauses_for_dynamic'(_,_).$erase_all_clauses_for_dynamic306,8218 -'$erase_all_clauses_for_dynamic'(_,_)./p,predicate,predicate definition306,8218 -'$erase_all_clauses_for_dynamic'(_,_).$erase_all_clauses_for_dynamic306,8218 -'$abolishd'(T, M) :-$abolishd309,8286 -'$abolishd'(T, M) :-$abolishd309,8286 -'$abolishd'(T, M) :-$abolishd309,8286 -'$abolishd'(T, M) :-$abolishd316,8438 -'$abolishd'(T, M) :-$abolishd316,8438 -'$abolishd'(T, M) :-$abolishd316,8438 -'$abolishd'(T, M) :-$abolishd320,8524 -'$abolishd'(T, M) :-$abolishd320,8524 -'$abolishd'(T, M) :-$abolishd320,8524 -'$abolishd'(T, M) :-$abolishd322,8575 -'$abolishd'(T, M) :-$abolishd322,8575 -'$abolishd'(T, M) :-$abolishd322,8575 -'$abolishd'(_, _).$abolishd324,8625 -'$abolishd'(_, _)./p,predicate,predicate definition324,8625 -'$abolishd'(_, _).$abolishd324,8625 -dynamic_predicate(P,Sem) :-dynamic_predicate336,8843 -dynamic_predicate(P,Sem) :-dynamic_predicate336,8843 -dynamic_predicate(P,Sem) :-dynamic_predicate336,8843 -dynamic_predicate(P,Sem) :-dynamic_predicate338,8917 -dynamic_predicate(P,Sem) :-dynamic_predicate338,8917 -dynamic_predicate(P,Sem) :-dynamic_predicate338,8917 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics345,9104 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics345,9104 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics345,9104 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics348,9195 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics348,9195 -'$bad_if_is_semantics'(Sem, Goal) :-$bad_if_is_semantics348,9195 - -pl/preds.yap,22716 -assert_static(C) :-assert_static109,3296 -assert_static(C) :-assert_static109,3296 -assert_static(C) :-assert_static109,3296 -asserta_static(C) :-asserta_static119,3454 -asserta_static(C) :-asserta_static119,3454 -asserta_static(C) :-asserta_static119,3454 -assertz_static(C) :-assertz_static139,3861 -assertz_static(C) :-assertz_static139,3861 -assertz_static(C) :-assertz_static139,3861 -clause(V0,Q) :-clause155,4266 -clause(V0,Q) :-clause155,4266 -clause(V0,Q) :-clause155,4266 -clause(P,Q,R) :-clause167,4634 -clause(P,Q,R) :-clause167,4634 -clause(P,Q,R) :-clause167,4634 -clause(V0,Q,R) :-clause180,4882 -clause(V0,Q,R) :-clause180,4882 -clause(V0,Q,R) :-clause180,4882 -'$clause'(P,M,Q,R) :-$clause185,4990 -'$clause'(P,M,Q,R) :-$clause185,4990 -'$clause'(P,M,Q,R) :-$clause185,4990 -'$clause'(P,M,Q,R) :-$clause190,5089 -'$clause'(P,M,Q,R) :-$clause190,5089 -'$clause'(P,M,Q,R) :-$clause190,5089 -'$clause'(P,M,Q,R) :-$clause193,5174 -'$clause'(P,M,Q,R) :-$clause193,5174 -'$clause'(P,M,Q,R) :-$clause193,5174 -'$clause'(P,M,Q,R) :-$clause196,5248 -'$clause'(P,M,Q,R) :-$clause196,5248 -'$clause'(P,M,Q,R) :-$clause196,5248 -'$clause'(P,M,Q,R) :-$clause199,5327 -'$clause'(P,M,Q,R) :-$clause199,5327 -'$clause'(P,M,Q,R) :-$clause199,5327 -nth_clause(V,I,R) :-nth_clause233,6157 -nth_clause(V,I,R) :-nth_clause233,6157 -nth_clause(V,I,R) :-nth_clause233,6157 -'$nth_clause'(P,M,I,R) :-$nth_clause238,6237 -'$nth_clause'(P,M,I,R) :-$nth_clause238,6237 -'$nth_clause'(P,M,I,R) :-$nth_clause238,6237 -'$nth_clause'(P,M,I,R) :-$nth_clause242,6335 -'$nth_clause'(P,M,I,R) :-$nth_clause242,6335 -'$nth_clause'(P,M,I,R) :-$nth_clause242,6335 -abolish(N0,A) :-abolish252,6656 -abolish(N0,A) :-abolish252,6656 -abolish(N0,A) :-abolish252,6656 -'$abolish'(N,A,M) :- var(N), !,$abolish256,6726 -'$abolish'(N,A,M) :- var(N), !,$abolish256,6726 -'$abolish'(N,A,M) :- var(N), !,$abolish256,6726 -'$abolish'(N,A,M) :- var(A), !,$abolish258,6808 -'$abolish'(N,A,M) :- var(A), !,$abolish258,6808 -'$abolish'(N,A,M) :- var(A), !,$abolish258,6808 -'$abolish'(N,A,M) :-$abolish260,6890 -'$abolish'(N,A,M) :-$abolish260,6890 -'$abolish'(N,A,M) :-$abolish260,6890 -'$abolish'(N,A,M) :- functor(T,N,A),$abolish263,6993 -'$abolish'(N,A,M) :- functor(T,N,A),$abolish263,6993 -'$abolish'(N,A,M) :- functor(T,N,A),$abolish263,6993 -abolish(X0) :-abolish279,7546 -abolish(X0) :-abolish279,7546 -abolish(X0) :-abolish279,7546 -'$abolish'(X,M) :-$abolish283,7603 -'$abolish'(X,M) :-$abolish283,7603 -'$abolish'(X,M) :-$abolish283,7603 -'$abolish'(X, M) :-$abolish286,7688 -'$abolish'(X, M) :-$abolish286,7688 -'$abolish'(X, M) :-$abolish286,7688 -'$new_abolish'(V,M) :- var(V), !,$new_abolish289,7731 -'$new_abolish'(V,M) :- var(V), !,$new_abolish289,7731 -'$new_abolish'(V,M) :- var(V), !,$new_abolish289,7731 -'$new_abolish'(A/V,M) :- atom(A), var(V), !,$new_abolish291,7785 -'$new_abolish'(A/V,M) :- atom(A), var(V), !,$new_abolish291,7785 -'$new_abolish'(A/V,M) :- atom(A), var(V), !,$new_abolish291,7785 -'$new_abolish'(Na//Ar1, M) :-$new_abolish293,7858 -'$new_abolish'(Na//Ar1, M) :-$new_abolish293,7858 -'$new_abolish'(Na//Ar1, M) :-$new_abolish293,7858 -'$new_abolish'(Na/Ar, M) :-$new_abolish298,7949 -'$new_abolish'(Na/Ar, M) :-$new_abolish298,7949 -'$new_abolish'(Na/Ar, M) :-$new_abolish298,7949 -'$new_abolish'(Na/Ar, M) :- % succeed for undefined procedures.$new_abolish302,8043 -'$new_abolish'(Na/Ar, M) :- % succeed for undefined procedures.$new_abolish302,8043 -'$new_abolish'(Na/Ar, M) :- % succeed for undefined procedures.$new_abolish302,8043 -'$new_abolish'(Na/Ar, M) :-$new_abolish305,8152 -'$new_abolish'(Na/Ar, M) :-$new_abolish305,8152 -'$new_abolish'(Na/Ar, M) :-$new_abolish305,8152 -'$new_abolish'(T, M) :-$new_abolish307,8260 -'$new_abolish'(T, M) :-$new_abolish307,8260 -'$new_abolish'(T, M) :-$new_abolish307,8260 -'$abolish_all'(M) :-$abolish_all310,8347 -'$abolish_all'(M) :-$abolish_all310,8347 -'$abolish_all'(M) :-$abolish_all310,8347 -'$abolish_all'(_).$abolish_all315,8473 -'$abolish_all'(_)./p,predicate,predicate definition315,8473 -'$abolish_all'(_).$abolish_all315,8473 -'$abolish_all_atoms'(Na, M) :-$abolish_all_atoms317,8493 -'$abolish_all_atoms'(Na, M) :-$abolish_all_atoms317,8493 -'$abolish_all_atoms'(Na, M) :-$abolish_all_atoms317,8493 -'$abolish_all_atoms'(_,_).$abolish_all_atoms322,8626 -'$abolish_all_atoms'(_,_)./p,predicate,predicate definition322,8626 -'$abolish_all_atoms'(_,_).$abolish_all_atoms322,8626 -'$check_error_in_predicate_indicator'(V, Msg) :-$check_error_in_predicate_indicator324,8654 -'$check_error_in_predicate_indicator'(V, Msg) :-$check_error_in_predicate_indicator324,8654 -'$check_error_in_predicate_indicator'(V, Msg) :-$check_error_in_predicate_indicator324,8654 -'$check_error_in_predicate_indicator'(M:S, Msg) :- !,$check_error_in_predicate_indicator327,8755 -'$check_error_in_predicate_indicator'(M:S, Msg) :- !,$check_error_in_predicate_indicator327,8755 -'$check_error_in_predicate_indicator'(M:S, Msg) :- !,$check_error_in_predicate_indicator327,8755 -'$check_error_in_predicate_indicator'(S, Msg) :-$check_error_in_predicate_indicator330,8892 -'$check_error_in_predicate_indicator'(S, Msg) :-$check_error_in_predicate_indicator330,8892 -'$check_error_in_predicate_indicator'(S, Msg) :-$check_error_in_predicate_indicator330,8892 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator334,9021 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator334,9021 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator334,9021 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator337,9126 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator337,9126 -'$check_error_in_predicate_indicator'(Na/_, Msg) :-$check_error_in_predicate_indicator337,9126 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator340,9235 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator340,9235 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator340,9235 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator343,9340 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator343,9340 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator343,9340 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator346,9455 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator346,9455 -'$check_error_in_predicate_indicator'(_/Ar, Msg) :-$check_error_in_predicate_indicator346,9455 -'$check_error_in_module'(M, Msg) :-$check_error_in_module354,9741 -'$check_error_in_module'(M, Msg) :-$check_error_in_module354,9741 -'$check_error_in_module'(M, Msg) :-$check_error_in_module354,9741 -'$check_error_in_module'(M, Msg) :-$check_error_in_module357,9829 -'$check_error_in_module'(M, Msg) :-$check_error_in_module357,9829 -'$check_error_in_module'(M, Msg) :-$check_error_in_module357,9829 -'$old_abolish'(V,M) :- var(V), !,$old_abolish361,9921 -'$old_abolish'(V,M) :- var(V), !,$old_abolish361,9921 -'$old_abolish'(V,M) :- var(V), !,$old_abolish361,9921 -'$old_abolish'(N/A, M) :- !,$old_abolish367,10095 -'$old_abolish'(N/A, M) :- !,$old_abolish367,10095 -'$old_abolish'(N/A, M) :- !,$old_abolish367,10095 -'$old_abolish'(A,M) :- atom(A), !,$old_abolish369,10146 -'$old_abolish'(A,M) :- atom(A), !,$old_abolish369,10146 -'$old_abolish'(A,M) :- atom(A), !,$old_abolish369,10146 -'$old_abolish'([], _) :- !.$old_abolish375,10327 -'$old_abolish'([], _) :- !.$old_abolish375,10327 -'$old_abolish'([], _) :- !.$old_abolish375,10327 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M)./p,predicate,predicate definition376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish376,10355 -'$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish'(T, M).$old_abolish'([H|T], M) :- !, '$old_abolish'(H, M), '$old_abolish376,10355 -'$old_abolish'(T, M) :-$old_abolish377,10431 -'$old_abolish'(T, M) :-$old_abolish377,10431 -'$old_abolish'(T, M) :-$old_abolish377,10431 -'$abolish_all_old'(M) :-$abolish_all_old380,10518 -'$abolish_all_old'(M) :-$abolish_all_old380,10518 -'$abolish_all_old'(M) :-$abolish_all_old380,10518 -'$abolish_all_old'(_).$abolish_all_old385,10640 -'$abolish_all_old'(_)./p,predicate,predicate definition385,10640 -'$abolish_all_old'(_).$abolish_all_old385,10640 -'$abolish_all_atoms_old'(Na, M) :-$abolish_all_atoms_old387,10664 -'$abolish_all_atoms_old'(Na, M) :-$abolish_all_atoms_old387,10664 -'$abolish_all_atoms_old'(Na, M) :-$abolish_all_atoms_old387,10664 -'$abolish_all_atoms_old'(_,_).$abolish_all_atoms_old392,10794 -'$abolish_all_atoms_old'(_,_)./p,predicate,predicate definition392,10794 -'$abolish_all_atoms_old'(_,_).$abolish_all_atoms_old392,10794 -'$abolishs'(G, M) :- '$system_predicate'(G,M), !,$abolishs394,10826 -'$abolishs'(G, M) :- '$system_predicate'(G,M), !,$abolishs394,10826 -'$abolishs'(G, M) :- '$system_predicate'(G,M), !,$abolishs394,10826 -'$abolishs'(G, Module) :-$abolishs397,10981 -'$abolishs'(G, Module) :-$abolishs397,10981 -'$abolishs'(G, Module) :-$abolishs397,10981 -'$abolishs'(G, M) :-$abolishs402,11191 -'$abolishs'(G, M) :-$abolishs402,11191 -'$abolishs'(G, M) :-$abolishs402,11191 -'$abolishs'(T, M) :-$abolishs409,11353 -'$abolishs'(T, M) :-$abolishs409,11353 -'$abolishs'(T, M) :-$abolishs409,11353 -'$abolishs'(G, M) :-$abolishs413,11441 -'$abolishs'(G, M) :-$abolishs413,11441 -'$abolishs'(G, M) :-$abolishs413,11441 -'$abolishs'(_, _).$abolishs415,11493 -'$abolishs'(_, _)./p,predicate,predicate definition415,11493 -'$abolishs'(_, _).$abolishs415,11493 -stash_predicate(P0) :-stash_predicate422,11742 -stash_predicate(P0) :-stash_predicate422,11742 -stash_predicate(P0) :-stash_predicate422,11742 -'$stash_predicate2'(V, M) :- var(V), !,$stash_predicate2426,11819 -'$stash_predicate2'(V, M) :- var(V), !,$stash_predicate2426,11819 -'$stash_predicate2'(V, M) :- var(V), !,$stash_predicate2426,11819 -'$stash_predicate2'(N/A, M) :- !,$stash_predicate2428,11915 -'$stash_predicate2'(N/A, M) :- !,$stash_predicate2428,11915 -'$stash_predicate2'(N/A, M) :- !,$stash_predicate2428,11915 -'$stash_predicate2'(PredDesc, M) :-$stash_predicate2431,11994 -'$stash_predicate2'(PredDesc, M) :-$stash_predicate2431,11994 -'$stash_predicate2'(PredDesc, M) :-$stash_predicate2431,11994 -hide_predicate(P0) :-hide_predicate439,12239 -hide_predicate(P0) :-hide_predicate439,12239 -hide_predicate(P0) :-hide_predicate439,12239 -predicate_property(Pred,Prop) :-predicate_property487,13372 -predicate_property(Pred,Prop) :-predicate_property487,13372 -predicate_property(Pred,Prop) :-predicate_property487,13372 -'$predicate_property2'(Pred, Prop, Mod) :-$predicate_property2491,13486 -'$predicate_property2'(Pred, Prop, Mod) :-$predicate_property2491,13486 -'$predicate_property2'(Pred, Prop, Mod) :-$predicate_property2491,13486 -'$predicate_property2'(Pred,Prop,M0) :-$predicate_property2495,13615 -'$predicate_property2'(Pred,Prop,M0) :-$predicate_property2495,13615 -'$predicate_property2'(Pred,Prop,M0) :-$predicate_property2495,13615 -'$predicate_property2'(M:Pred,Prop,_) :- !,$predicate_property2502,13913 -'$predicate_property2'(M:Pred,Prop,_) :- !,$predicate_property2502,13913 -'$predicate_property2'(M:Pred,Prop,_) :- !,$predicate_property2502,13913 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2504,13995 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2504,13995 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2504,13995 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2507,14109 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2507,14109 -'$predicate_property2'(Pred,Prop,Mod) :-$predicate_property2507,14109 -'$generate_all_preds_from_mod'(Pred, M, M) :-$generate_all_preds_from_mod516,14295 -'$generate_all_preds_from_mod'(Pred, M, M) :-$generate_all_preds_from_mod516,14295 -'$generate_all_preds_from_mod'(Pred, M, M) :-$generate_all_preds_from_mod516,14295 -'$generate_all_preds_from_mod'(Pred, SourceMod, Mod) :-$generate_all_preds_from_mod518,14378 -'$generate_all_preds_from_mod'(Pred, SourceMod, Mod) :-$generate_all_preds_from_mod518,14378 -'$generate_all_preds_from_mod'(Pred, SourceMod, Mod) :-$generate_all_preds_from_mod518,14378 -'$predicate_property'(P,M,_,built_in) :-$predicate_property522,14535 -'$predicate_property'(P,M,_,built_in) :-$predicate_property522,14535 -'$predicate_property'(P,M,_,built_in) :-$predicate_property522,14535 -'$predicate_property'(P,M,_,source) :-$predicate_property524,14606 -'$predicate_property'(P,M,_,source) :-$predicate_property524,14606 -'$predicate_property'(P,M,_,source) :-$predicate_property524,14606 -'$predicate_property'(P,M,_,tabled) :-$predicate_property527,14699 -'$predicate_property'(P,M,_,tabled) :-$predicate_property527,14699 -'$predicate_property'(P,M,_,tabled) :-$predicate_property527,14699 -'$predicate_property'(P,M,_,dynamic) :-$predicate_property530,14792 -'$predicate_property'(P,M,_,dynamic) :-$predicate_property530,14792 -'$predicate_property'(P,M,_,dynamic) :-$predicate_property530,14792 -'$predicate_property'(P,M,_,static) :-$predicate_property532,14853 -'$predicate_property'(P,M,_,static) :-$predicate_property532,14853 -'$predicate_property'(P,M,_,static) :-$predicate_property532,14853 -'$predicate_property'(P,M,_,meta_predicate(Q)) :-$predicate_property535,14939 -'$predicate_property'(P,M,_,meta_predicate(Q)) :-$predicate_property535,14939 -'$predicate_property'(P,M,_,meta_predicate(Q)) :-$predicate_property535,14939 -'$predicate_property'(P,M,_,multifile) :-$predicate_property538,15046 -'$predicate_property'(P,M,_,multifile) :-$predicate_property538,15046 -'$predicate_property'(P,M,_,multifile) :-$predicate_property538,15046 -'$predicate_property'(P,M,_,public) :-$predicate_property540,15111 -'$predicate_property'(P,M,_,public) :-$predicate_property540,15111 -'$predicate_property'(P,M,_,public) :-$predicate_property540,15111 -'$predicate_property'(P,M,_,thread_local) :-$predicate_property542,15170 -'$predicate_property'(P,M,_,thread_local) :-$predicate_property542,15170 -'$predicate_property'(P,M,_,thread_local) :-$predicate_property542,15170 -'$predicate_property'(P,M,M,exported) :-$predicate_property544,15241 -'$predicate_property'(P,M,M,exported) :-$predicate_property544,15241 -'$predicate_property'(P,M,M,exported) :-$predicate_property544,15241 -'$predicate_property'(P,Mod,_,number_of_clauses(NCl)) :-$predicate_property548,15392 -'$predicate_property'(P,Mod,_,number_of_clauses(NCl)) :-$predicate_property548,15392 -'$predicate_property'(P,Mod,_,number_of_clauses(NCl)) :-$predicate_property548,15392 -'$predicate_property'(P,Mod,_,file(F)) :-$predicate_property550,15483 -'$predicate_property'(P,Mod,_,file(F)) :-$predicate_property550,15483 -'$predicate_property'(P,Mod,_,file(F)) :-$predicate_property550,15483 -predicate_statistics(V,NCls,Sz,ISz) :- var(V), !,predicate_statistics562,15849 -predicate_statistics(V,NCls,Sz,ISz) :- var(V), !,predicate_statistics562,15849 -predicate_statistics(V,NCls,Sz,ISz) :- var(V), !,predicate_statistics562,15849 -predicate_statistics(P0,NCls,Sz,ISz) :-predicate_statistics564,15970 -predicate_statistics(P0,NCls,Sz,ISz) :-predicate_statistics564,15970 -predicate_statistics(P0,NCls,Sz,ISz) :-predicate_statistics564,15970 -'$predicate_statistics'(M:P,_,NCls,Sz,ISz) :- !,$predicate_statistics568,16079 -'$predicate_statistics'(M:P,_,NCls,Sz,ISz) :- !,$predicate_statistics568,16079 -'$predicate_statistics'(M:P,_,NCls,Sz,ISz) :- !,$predicate_statistics568,16079 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics570,16171 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics570,16171 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics570,16171 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics573,16282 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics573,16282 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics573,16282 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics575,16359 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics575,16359 -'$predicate_statistics'(P,M,_,_,_) :-$predicate_statistics575,16359 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics577,16426 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics577,16426 -'$predicate_statistics'(P,M,NCls,Sz,ISz) :-$predicate_statistics577,16426 -predicate_erased_statistics(P,NCls,Sz,ISz) :-predicate_erased_statistics589,16860 -predicate_erased_statistics(P,NCls,Sz,ISz) :-predicate_erased_statistics589,16860 -predicate_erased_statistics(P,NCls,Sz,ISz) :-predicate_erased_statistics589,16860 -predicate_erased_statistics(P0,NCls,Sz,ISz) :-predicate_erased_statistics593,16995 -predicate_erased_statistics(P0,NCls,Sz,ISz) :-predicate_erased_statistics593,16995 -predicate_erased_statistics(P0,NCls,Sz,ISz) :-predicate_erased_statistics593,16995 -current_predicate(A,T0) :-current_predicate601,17251 -current_predicate(A,T0) :-current_predicate601,17251 -current_predicate(A,T0) :-current_predicate601,17251 -system_predicate(P0) :-system_predicate616,17626 -system_predicate(P0) :-system_predicate616,17626 -system_predicate(P0) :-system_predicate616,17626 -system_predicate(A, P0) :-system_predicate666,18898 -system_predicate(A, P0) :-system_predicate666,18898 -system_predicate(A, P0) :-system_predicate666,18898 -current_predicate(F0) :-current_predicate686,19438 -current_predicate(F0) :-current_predicate686,19438 -current_predicate(F0) :-current_predicate686,19438 -'$c_i_predicate'( A/N, M ) :-$c_i_predicate691,19569 -'$c_i_predicate'( A/N, M ) :-$c_i_predicate691,19569 -'$c_i_predicate'( A/N, M ) :-$c_i_predicate691,19569 -'$c_i_predicate'( A//N, M ) :-$c_i_predicate703,19751 -'$c_i_predicate'( A//N, M ) :-$c_i_predicate703,19751 -'$c_i_predicate'( A//N, M ) :-$c_i_predicate703,19751 -current_key(A,K) :-current_key724,20159 -current_key(A,K) :-current_key724,20159 -current_key(A,K) :-current_key724,20159 -'$noprofile'(_, _).$noprofile728,20239 -'$noprofile'(_, _)./p,predicate,predicate definition728,20239 -'$noprofile'(_, _).$noprofile728,20239 -'$ifunctor'(Pred,Na,Ar) :-$ifunctor730,20260 -'$ifunctor'(Pred,Na,Ar) :-$ifunctor730,20260 -'$ifunctor'(Pred,Na,Ar) :-$ifunctor730,20260 -compile_predicates(Ps) :-compile_predicates750,20844 -compile_predicates(Ps) :-compile_predicates750,20844 -compile_predicates(Ps) :-compile_predicates750,20844 -'$compile_predicates'(V, _, Call) :-$compile_predicates754,20953 -'$compile_predicates'(V, _, Call) :-$compile_predicates754,20953 -'$compile_predicates'(V, _, Call) :-$compile_predicates754,20953 -'$compile_predicates'(M:Ps, _, Call) :-$compile_predicates757,21042 -'$compile_predicates'(M:Ps, _, Call) :-$compile_predicates757,21042 -'$compile_predicates'(M:Ps, _, Call) :-$compile_predicates757,21042 -'$compile_predicates'([], _, _).$compile_predicates759,21119 -'$compile_predicates'([], _, _)./p,predicate,predicate definition759,21119 -'$compile_predicates'([], _, _).$compile_predicates759,21119 -'$compile_predicates'([P|Ps], M, Call) :-$compile_predicates760,21152 -'$compile_predicates'([P|Ps], M, Call) :-$compile_predicates760,21152 -'$compile_predicates'([P|Ps], M, Call) :-$compile_predicates760,21152 -'$compile_predicate'(P, _M, Call) :-$compile_predicate764,21267 -'$compile_predicate'(P, _M, Call) :-$compile_predicate764,21267 -'$compile_predicate'(P, _M, Call) :-$compile_predicate764,21267 -'$compile_predicate'(M:P, _, Call) :-$compile_predicate767,21356 -'$compile_predicate'(M:P, _, Call) :-$compile_predicate767,21356 -'$compile_predicate'(M:P, _, Call) :-$compile_predicate767,21356 -'$compile_predicate'(Na/Ar, Mod, _Call) :-$compile_predicate769,21429 -'$compile_predicate'(Na/Ar, Mod, _Call) :-$compile_predicate769,21429 -'$compile_predicate'(Na/Ar, Mod, _Call) :-$compile_predicate769,21429 -'$add_all'([], _).$add_all775,21575 -'$add_all'([], _)./p,predicate,predicate definition775,21575 -'$add_all'([], _).$add_all775,21575 -'$add_all'([[G|B]|Cls], Mod) :-$add_all776,21594 -'$add_all'([[G|B]|Cls], Mod) :-$add_all776,21594 -'$add_all'([[G|B]|Cls], Mod) :-$add_all776,21594 -clause_property(ClauseRef, file(FileName)) :-clause_property781,21679 -clause_property(ClauseRef, file(FileName)) :-clause_property781,21679 -clause_property(ClauseRef, file(FileName)) :-clause_property781,21679 -clause_property(ClauseRef, source(FileName)) :-clause_property786,21859 -clause_property(ClauseRef, source(FileName)) :-clause_property786,21859 -clause_property(ClauseRef, source(FileName)) :-clause_property786,21859 -clause_property(ClauseRef, line_count(LineNumber)) :-clause_property791,22041 -clause_property(ClauseRef, line_count(LineNumber)) :-clause_property791,22041 -clause_property(ClauseRef, line_count(LineNumber)) :-clause_property791,22041 -clause_property(ClauseRef, fact) :-clause_property794,22158 -clause_property(ClauseRef, fact) :-clause_property794,22158 -clause_property(ClauseRef, fact) :-clause_property794,22158 -clause_property(ClauseRef, erased) :-clause_property796,22234 -clause_property(ClauseRef, erased) :-clause_property796,22234 -clause_property(ClauseRef, erased) :-clause_property796,22234 -clause_property(ClauseRef, predicate(PredicateIndicator)) :-clause_property798,22312 -clause_property(ClauseRef, predicate(PredicateIndicator)) :-clause_property798,22312 -clause_property(ClauseRef, predicate(PredicateIndicator)) :-clause_property798,22312 -'$set_predicate_attribute'(M:N/Ar, Flag, V) :-$set_predicate_attribute801,22428 -'$set_predicate_attribute'(M:N/Ar, Flag, V) :-$set_predicate_attribute801,22428 -'$set_predicate_attribute'(M:N/Ar, Flag, V) :-$set_predicate_attribute801,22428 -'$set_flag'(P, M, trace, off) :-$set_flag808,22586 -'$set_flag'(P, M, trace, off) :-$set_flag808,22586 -'$set_flag'(P, M, trace, off) :-$set_flag808,22586 - -pl/profile.yap,6594 -list_profile :-list_profile42,1394 -list_profile(Module) :-list_profile49,1690 -list_profile(Module) :-list_profile49,1690 -list_profile(Module) :-list_profile49,1690 -write_profile_data([]).write_profile_data56,1991 -write_profile_data([]).write_profile_data56,1991 -write_profile_data([D-[M:P|R]|SLP]) :-write_profile_data57,2015 -write_profile_data([D-[M:P|R]|SLP]) :-write_profile_data57,2015 -write_profile_data([D-[M:P|R]|SLP]) :-write_profile_data57,2015 -profile_data(M:D, Parm, Data) :-!,profile_data106,3176 -profile_data(M:D, Parm, Data) :-!,profile_data106,3176 -profile_data(M:D, Parm, Data) :-!,profile_data106,3176 -profile_data(P, Parm, Data) :-profile_data113,3337 -profile_data(P, Parm, Data) :-profile_data113,3337 -profile_data(P, Parm, Data) :-profile_data113,3337 -'$profile_data'(P, Parm, Data,M) :- var(P), !,$profile_data117,3428 -'$profile_data'(P, Parm, Data,M) :- var(P), !,$profile_data117,3428 -'$profile_data'(P, Parm, Data,M) :- var(P), !,$profile_data117,3428 -'$profile_data'(M:P, Parm, Data, _) :- !,$profile_data119,3518 -'$profile_data'(M:P, Parm, Data, _) :- !,$profile_data119,3518 -'$profile_data'(M:P, Parm, Data, _) :- !,$profile_data119,3518 -'$profile_data'(P, Parm, Data, M) :-$profile_data121,3597 -'$profile_data'(P, Parm, Data, M) :-$profile_data121,3597 -'$profile_data'(P, Parm, Data, M) :-$profile_data121,3597 -'$profile_data2'(Na/Ar,Parm,Data, M) :-$profile_data2124,3672 -'$profile_data2'(Na/Ar,Parm,Data, M) :-$profile_data2124,3672 -'$profile_data2'(Na/Ar,Parm,Data, M) :-$profile_data2124,3672 -'$profile_data_for_var'(Name/Arity, Parm, Data, M) :-$profile_data_for_var129,3801 -'$profile_data_for_var'(Name/Arity, Parm, Data, M) :-$profile_data_for_var129,3801 -'$profile_data_for_var'(Name/Arity, Parm, Data, M) :-$profile_data_for_var129,3801 -'$profile_say'('$profile'(Entries, _, _), calls, Entries).$profile_say136,4035 -'$profile_say'('$profile'(Entries, _, _), calls, Entries)./p,predicate,predicate definition136,4035 -'$profile_say'('$profile'(Entries, _, _), calls, Entries).$profile_say'('$profile136,4035 -'$profile_say'('$profile'(_, _, Backtracks), retries, Backtracks).$profile_say137,4094 -'$profile_say'('$profile'(_, _, Backtracks), retries, Backtracks)./p,predicate,predicate definition137,4094 -'$profile_say'('$profile'(_, _, Backtracks), retries, Backtracks).$profile_say'('$profile137,4094 -profile_reset :-profile_reset139,4162 -showprofres :-showprofres153,4334 -showprofres(A) :-showprofres166,4735 -showprofres(A) :-showprofres166,4735 -showprofres(A) :-showprofres166,4735 -'$check_duplicates'([]).$check_duplicates189,5528 -'$check_duplicates'([])./p,predicate,predicate definition189,5528 -'$check_duplicates'([]).$check_duplicates189,5528 -'$check_duplicates'([A,A|ProfInfo]) :- !,$check_duplicates190,5553 -'$check_duplicates'([A,A|ProfInfo]) :- !,$check_duplicates190,5553 -'$check_duplicates'([A,A|ProfInfo]) :- !,$check_duplicates190,5553 -'$check_duplicates'([_|ProfInfo]) :-$check_duplicates193,5641 -'$check_duplicates'([_|ProfInfo]) :-$check_duplicates193,5641 -'$check_duplicates'([_|ProfInfo]) :-$check_duplicates193,5641 -'$get_all_profinfo'([],L,L,Tot,Tot) :- !.$get_all_profinfo198,5715 -'$get_all_profinfo'([],L,L,Tot,Tot) :- !.$get_all_profinfo198,5715 -'$get_all_profinfo'([],L,L,Tot,Tot) :- !.$get_all_profinfo198,5715 -'$get_all_profinfo'(Node,L0,Lf,Tot0,Totf) :-$get_all_profinfo199,5757 -'$get_all_profinfo'(Node,L0,Lf,Tot0,Totf) :-$get_all_profinfo199,5757 -'$get_all_profinfo'(Node,L0,Lf,Tot0,Totf) :-$get_all_profinfo199,5757 -'$get_ppreds'([],[]).$get_ppreds205,5993 -'$get_ppreds'([],[])./p,predicate,predicate definition205,5993 -'$get_ppreds'([],[]).$get_ppreds205,5993 -'$get_ppreds'([gprof(0,_,0)|Cls],Ps) :- !,$get_ppreds206,6015 -'$get_ppreds'([gprof(0,_,0)|Cls],Ps) :- !,$get_ppreds206,6015 -'$get_ppreds'([gprof(0,_,0)|Cls],Ps) :- !,$get_ppreds206,6015 -'$get_ppreds'([gprof(0,_,Count)|_],_) :- !,$get_ppreds208,6082 -'$get_ppreds'([gprof(0,_,Count)|_],_) :- !,$get_ppreds208,6082 -'$get_ppreds'([gprof(0,_,Count)|_],_) :- !,$get_ppreds208,6082 -'$get_ppreds'([gprof(PProfInfo,_,Count0)|Cls],[Sum-(Mod:Name/Arity)|Ps]) :-$get_ppreds210,6195 -'$get_ppreds'([gprof(PProfInfo,_,Count0)|Cls],[Sum-(Mod:Name/Arity)|Ps]) :-$get_ppreds210,6195 -'$get_ppreds'([gprof(PProfInfo,_,Count0)|Cls],[Sum-(Mod:Name/Arity)|Ps]) :-$get_ppreds210,6195 -'$get_more_ppreds'(Cls, _, Sum, Cls, NSum) :- NSum is -Sum.$get_more_ppreds219,6555 -'$get_more_ppreds'(Cls, _, Sum, Cls, NSum) :- NSum is -Sum.$get_more_ppreds219,6555 -'$get_more_ppreds'(Cls, _, Sum, Cls, NSum) :- NSum is -Sum.$get_more_ppreds219,6555 -'$display_preds'(_, _, _, N, N) :- !.$display_preds221,6616 -'$display_preds'(_, _, _, N, N) :- !.$display_preds221,6616 -'$display_preds'(_, _, _, N, N) :- !.$display_preds221,6616 -'$display_preds'([], _, _, _, _).$display_preds222,6654 -'$display_preds'([], _, _, _, _)./p,predicate,predicate definition222,6654 -'$display_preds'([], _, _, _, _).$display_preds222,6654 -'$display_preds'([0-_|_], _Tot, _SoFar, _I, _N) :- !.$display_preds223,6688 -'$display_preds'([0-_|_], _Tot, _SoFar, _I, _N) :- !.$display_preds223,6688 -'$display_preds'([0-_|_], _Tot, _SoFar, _I, _N) :- !.$display_preds223,6688 -'$display_preds'([NSum-P|Ps], Tot, SoFar, I, N) :-$display_preds224,6742 -'$display_preds'([NSum-P|Ps], Tot, SoFar, I, N) :-$display_preds224,6742 -'$display_preds'([NSum-P|Ps], Tot, SoFar, I, N) :-$display_preds224,6742 -'$sum_alls'([],Tot,Tot).$sum_alls243,7166 -'$sum_alls'([],Tot,Tot)./p,predicate,predicate definition243,7166 -'$sum_alls'([],Tot,Tot).$sum_alls243,7166 -'$sum_alls'([C-_|Preds],Tot0,Tot) :-$sum_alls244,7191 -'$sum_alls'([C-_|Preds],Tot0,Tot) :-$sum_alls244,7191 -'$sum_alls'([C-_|Preds],Tot0,Tot) :-$sum_alls244,7191 -'$add_extras_prof'(GCs, HGrows, SGrows, Mallocs, Preds0, PredsI) :-$add_extras_prof249,7277 -'$add_extras_prof'(GCs, HGrows, SGrows, Mallocs, Preds0, PredsI) :-$add_extras_prof249,7277 -'$add_extras_prof'(GCs, HGrows, SGrows, Mallocs, Preds0, PredsI) :-$add_extras_prof249,7277 -'$add_extra_prof'(0, _,Preds, Preds) :- !.$add_extra_prof255,7591 -'$add_extra_prof'(0, _,Preds, Preds) :- !.$add_extra_prof255,7591 -'$add_extra_prof'(0, _,Preds, Preds) :- !.$add_extra_prof255,7591 -'$add_extra_prof'(Ticks, Name, Preds, [NTicks-Name|Preds]) :-$add_extra_prof256,7634 -'$add_extra_prof'(Ticks, Name, Preds, [NTicks-Name|Preds]) :-$add_extra_prof256,7634 -'$add_extra_prof'(Ticks, Name, Preds, [NTicks-Name|Preds]) :-$add_extra_prof256,7634 - -pl/protect.yap,3732 -'$visible'('$'). /* not $VAR */$visible59,1534 -'$visible'('$'). /* not $VAR *//p,predicate,predicate definition59,1534 -'$visible'('$'). /* not $VAR */$visible59,1534 -'$visible'('$VAR'). /* not $VAR */$visible60,1568 -'$visible'('$VAR'). /* not $VAR *//p,predicate,predicate definition60,1568 -'$visible'('$VAR'). /* not $VAR */$visible60,1568 -'$visible'('$dbref'). /* not stream position */$visible61,1605 -'$visible'('$dbref'). /* not stream position *//p,predicate,predicate definition61,1605 -'$visible'('$dbref'). /* not stream position */$visible61,1605 -'$visible'('$stream'). /* not $STREAM */$visible62,1655 -'$visible'('$stream'). /* not $STREAM *//p,predicate,predicate definition62,1655 -'$visible'('$stream'). /* not $STREAM */$visible62,1655 -'$visible'('$stream_position'). /* not stream position */$visible63,1698 -'$visible'('$stream_position'). /* not stream position *//p,predicate,predicate definition63,1698 -'$visible'('$stream_position'). /* not stream position */$visible63,1698 -'$visible'('$hacks').$visible64,1757 -'$visible'('$hacks')./p,predicate,predicate definition64,1757 -'$visible'('$hacks').$visible64,1757 -'$visible'('$source_location').$visible65,1779 -'$visible'('$source_location')./p,predicate,predicate definition65,1779 -'$visible'('$source_location').$visible65,1779 -'$visible'('$messages').$visible66,1811 -'$visible'('$messages')./p,predicate,predicate definition66,1811 -'$visible'('$messages').$visible66,1811 -'$visible'('$push_input_context').$visible67,1836 -'$visible'('$push_input_context')./p,predicate,predicate definition67,1836 -'$visible'('$push_input_context').$visible67,1836 -'$visible'('$pop_input_context').$visible68,1871 -'$visible'('$pop_input_context')./p,predicate,predicate definition68,1871 -'$visible'('$pop_input_context').$visible68,1871 -'$visible'('$set_source_module').$visible69,1905 -'$visible'('$set_source_module')./p,predicate,predicate definition69,1905 -'$visible'('$set_source_module').$visible69,1905 -'$visible'('$declare_module').$visible70,1939 -'$visible'('$declare_module')./p,predicate,predicate definition70,1939 -'$visible'('$declare_module').$visible70,1939 -'$visible'('$store_clause').$visible71,1970 -'$visible'('$store_clause')./p,predicate,predicate definition71,1970 -'$visible'('$store_clause').$visible71,1970 -'$visible'('$skip_list').$visible72,1999 -'$visible'('$skip_list')./p,predicate,predicate definition72,1999 -'$visible'('$skip_list').$visible72,1999 -'$visible'('$win_insert_menu_item').$visible73,2025 -'$visible'('$win_insert_menu_item')./p,predicate,predicate definition73,2025 -'$visible'('$win_insert_menu_item').$visible73,2025 -'$visible'('$set_predicate_attribute').$visible74,2062 -'$visible'('$set_predicate_attribute')./p,predicate,predicate definition74,2062 -'$visible'('$set_predicate_attribute').$visible74,2062 -'$visible'('$parse_quasi_quotations').$visible75,2102 -'$visible'('$parse_quasi_quotations')./p,predicate,predicate definition75,2102 -'$visible'('$parse_quasi_quotations').$visible75,2102 -'$visible'('$quasi_quotation').$visible76,2141 -'$visible'('$quasi_quotation')./p,predicate,predicate definition76,2141 -'$visible'('$quasi_quotation').$visible76,2141 -'$visible'('$qq_open').$visible77,2173 -'$visible'('$qq_open')./p,predicate,predicate definition77,2173 -'$visible'('$qq_open').$visible77,2173 -'$visible'('$live').$visible78,2197 -'$visible'('$live')./p,predicate,predicate definition78,2197 -'$visible'('$live').$visible78,2197 -'$visible'('$init_prolog').$visible79,2218 -'$visible'('$init_prolog')./p,predicate,predicate definition79,2218 -'$visible'('$init_prolog').$visible79,2218 - -pl/qly.yap,21626 -save_program(File) :-save_program75,2274 -save_program(File) :-save_program75,2274 -save_program(File) :-save_program75,2274 -qsave_program(File) :-qsave_program84,2513 -qsave_program(File) :-qsave_program84,2513 -qsave_program(File) :-qsave_program84,2513 -qsave_program(File, Opts) :-qsave_program108,3117 -qsave_program(File, Opts) :-qsave_program108,3117 -qsave_program(File, Opts) :-qsave_program108,3117 -save_program(_File, Goal) :-save_program121,3528 -save_program(_File, Goal) :-save_program121,3528 -save_program(_File, Goal) :-save_program121,3528 -save_program(File, _Goal) :-save_program124,3601 -save_program(File, _Goal) :-save_program124,3601 -save_program(File, _Goal) :-save_program124,3601 -qend_program :-qend_program132,3791 -'$save_program_status'(Flags, G) :-$save_program_status137,3864 -'$save_program_status'(Flags, G) :-$save_program_status137,3864 -'$save_program_status'(Flags, G) :-$save_program_status137,3864 -'$save_program_status'(_Flags, _G).$save_program_status142,4019 -'$save_program_status'(_Flags, _G)./p,predicate,predicate definition142,4019 -'$save_program_status'(_Flags, _G).$save_program_status142,4019 -'$cvt_qsave_flags'(Flags, G) :-$cvt_qsave_flags144,4056 -'$cvt_qsave_flags'(Flags, G) :-$cvt_qsave_flags144,4056 -'$cvt_qsave_flags'(Flags, G) :-$cvt_qsave_flags144,4056 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags149,4218 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags149,4218 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags149,4218 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags152,4314 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags152,4314 -'$cvt_qsave_flags'(Flags, G,_OFlags) :-$cvt_qsave_flags152,4314 -'$cvt_qsave_lflags'([], _, _).$cvt_qsave_lflags155,4398 -'$cvt_qsave_lflags'([], _, _)./p,predicate,predicate definition155,4398 -'$cvt_qsave_lflags'([], _, _).$cvt_qsave_lflags155,4398 -'$cvt_qsave_lflags'([Flag|Flags], G, M) :-$cvt_qsave_lflags156,4429 -'$cvt_qsave_lflags'([Flag|Flags], G, M) :-$cvt_qsave_lflags156,4429 -'$cvt_qsave_lflags'([Flag|Flags], G, M) :-$cvt_qsave_lflags156,4429 -'$cvt_qsave_flag'(Flag, G, _) :-$cvt_qsave_flag160,4546 -'$cvt_qsave_flag'(Flag, G, _) :-$cvt_qsave_flag160,4546 -'$cvt_qsave_flag'(Flag, G, _) :-$cvt_qsave_flag160,4546 -'$cvt_qsave_flag'(local(B), G, _) :- !,$cvt_qsave_flag163,4637 -'$cvt_qsave_flag'(local(B), G, _) :- !,$cvt_qsave_flag163,4637 -'$cvt_qsave_flag'(local(B), G, _) :- !,$cvt_qsave_flag163,4637 -'$cvt_qsave_flag'(global(B), G, _) :- !,$cvt_qsave_flag172,4899 -'$cvt_qsave_flag'(global(B), G, _) :- !,$cvt_qsave_flag172,4899 -'$cvt_qsave_flag'(global(B), G, _) :- !,$cvt_qsave_flag172,4899 -'$cvt_qsave_flag'(stack(B), G, _) :- !,$cvt_qsave_flag181,5161 -'$cvt_qsave_flag'(stack(B), G, _) :- !,$cvt_qsave_flag181,5161 -'$cvt_qsave_flag'(stack(B), G, _) :- !,$cvt_qsave_flag181,5161 -'$cvt_qsave_flag'(trail(B), G, _) :- !,$cvt_qsave_flag190,5421 -'$cvt_qsave_flag'(trail(B), G, _) :- !,$cvt_qsave_flag190,5421 -'$cvt_qsave_flag'(trail(B), G, _) :- !,$cvt_qsave_flag190,5421 -'$cvt_qsave_flag'(goal(B), G, M) :- !,$cvt_qsave_flag199,5681 -'$cvt_qsave_flag'(goal(B), G, M) :- !,$cvt_qsave_flag199,5681 -'$cvt_qsave_flag'(goal(B), G, M) :- !,$cvt_qsave_flag199,5681 -'$cvt_qsave_flag'(toplevel(B), G, M) :- !,$cvt_qsave_flag207,5910 -'$cvt_qsave_flag'(toplevel(B), G, M) :- !,$cvt_qsave_flag207,5910 -'$cvt_qsave_flag'(toplevel(B), G, M) :- !,$cvt_qsave_flag207,5910 -'$cvt_qsave_flag'(init_file(B), G, M) :- !,$cvt_qsave_flag215,6147 -'$cvt_qsave_flag'(init_file(B), G, M) :- !,$cvt_qsave_flag215,6147 -'$cvt_qsave_flag'(init_file(B), G, M) :- !,$cvt_qsave_flag215,6147 -'$cvt_qsave_flag'(Opt, G, _M) :-$cvt_qsave_flag226,6568 -'$cvt_qsave_flag'(Opt, G, _M) :-$cvt_qsave_flag226,6568 -'$cvt_qsave_flag'(Opt, G, _M) :-$cvt_qsave_flag226,6568 -'$x_yap_flag'(language, V) :-$x_yap_flag230,6695 -'$x_yap_flag'(language, V) :-$x_yap_flag230,6695 -'$x_yap_flag'(language, V) :-$x_yap_flag230,6695 -'$x_yap_flag'(M:P, V) :-$x_yap_flag232,6749 -'$x_yap_flag'(M:P, V) :-$x_yap_flag232,6749 -'$x_yap_flag'(M:P, V) :-$x_yap_flag232,6749 -'$x_yap_flag'(X, V) :-$x_yap_flag235,6813 -'$x_yap_flag'(X, V) :-$x_yap_flag235,6813 -'$x_yap_flag'(X, V) :-$x_yap_flag235,6813 -qsave_file(F0) :-qsave_file400,10793 -qsave_file(F0) :-qsave_file400,10793 -qsave_file(F0) :-qsave_file400,10793 -qsave_file(F0, State) :-qsave_file411,11264 -qsave_file(F0, State) :-qsave_file411,11264 -qsave_file(F0, State) :-qsave_file411,11264 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_416,11466 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_416,11466 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_416,11466 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_422,11733 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_422,11733 -'$qsave_file_'(File, UserF, _State) :-$qsave_file_422,11733 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_427,12037 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_427,12037 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_427,12037 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_432,12288 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_432,12288 -'$qsave_file_'(File, _UserF, _State) :-$qsave_file_432,12288 -'$qsave_file_'( File, _UserF, State ) :-$qsave_file_437,12509 -'$qsave_file_'( File, _UserF, State ) :-$qsave_file_437,12509 -'$qsave_file_'( File, _UserF, State ) :-$qsave_file_437,12509 -'$fetch_multi_files_file'(File, Multi_Files) :-$fetch_multi_files_file449,12761 -'$fetch_multi_files_file'(File, Multi_Files) :-$fetch_multi_files_file449,12761 -'$fetch_multi_files_file'(File, Multi_Files) :-$fetch_multi_files_file449,12761 -'$fetch_multi_file_file'(FileName, (M:G :- Body)) :-$fetch_multi_file_file452,12877 -'$fetch_multi_file_file'(FileName, (M:G :- Body)) :-$fetch_multi_file_file452,12877 -'$fetch_multi_file_file'(FileName, (M:G :- Body)) :-$fetch_multi_file_file452,12877 -qsave_module(Mod, OF) :-qsave_module463,13248 -qsave_module(Mod, OF) :-qsave_module463,13248 -qsave_module(Mod, OF) :-qsave_module463,13248 -qsave_module(_, _).qsave_module478,13850 -qsave_module(_, _).qsave_module478,13850 -qsave_module(Mod) :-qsave_module487,14037 -qsave_module(Mod) :-qsave_module487,14037 -qsave_module(Mod) :-qsave_module487,14037 -restore(File) :-restore496,14200 -restore(File) :-restore496,14200 -restore(File) :-restore496,14200 -qload_module(Mod) :-qload_module513,14710 -qload_module(Mod) :-qload_module513,14710 -qload_module(Mod) :-qload_module513,14710 -'$qload_module'(Mod, S, SourceModule) :-$qload_module534,15411 -'$qload_module'(Mod, S, SourceModule) :-$qload_module534,15411 -'$qload_module'(Mod, S, SourceModule) :-$qload_module534,15411 -'$qload_module'(Mod, File, SourceModule) :-$qload_module544,15680 -'$qload_module'(Mod, File, SourceModule) :-$qload_module544,15680 -'$qload_module'(Mod, File, SourceModule) :-$qload_module544,15680 -'$qload_module'(_S, Mod, _File, _SourceModule) :-$qload_module557,15989 -'$qload_module'(_S, Mod, _File, _SourceModule) :-$qload_module557,15989 -'$qload_module'(_S, Mod, _File, _SourceModule) :-$qload_module557,15989 -'$qload_module'(S, _Mod, _File, _SourceModule) :-$qload_module559,16071 -'$qload_module'(S, _Mod, _File, _SourceModule) :-$qload_module559,16071 -'$qload_module'(S, _Mod, _File, _SourceModule) :-$qload_module559,16071 -'$qload_module'(_S, Mod, File, SourceModule) :-$qload_module562,16155 -'$qload_module'(_S, Mod, File, SourceModule) :-$qload_module562,16155 -'$qload_module'(_S, Mod, File, SourceModule) :-$qload_module562,16155 -'$fetch_imports_module'(Mod, Imports) :-$fetch_imports_module578,17027 -'$fetch_imports_module'(Mod, Imports) :-$fetch_imports_module578,17027 -'$fetch_imports_module'(Mod, Imports) :-$fetch_imports_module578,17027 -'$fetch_import_module'(Mod, '$impcort'(Mod0,Mod,G0,G,N,K) - S) :-$fetch_import_module582,17177 -'$fetch_import_module'(Mod, '$impcort'(Mod0,Mod,G0,G,N,K) - S) :-$fetch_import_module582,17177 -'$fetch_import_module'(Mod, '$impcort'(Mod0,Mod,G0,G,N,K) - S) :-$fetch_import_module'(Mod, '$impcort582,17177 -'$fetch_parents_module'(Mod, Parents) :-$fetch_parents_module586,17381 -'$fetch_parents_module'(Mod, Parents) :-$fetch_parents_module586,17381 -'$fetch_parents_module'(Mod, Parents) :-$fetch_parents_module586,17381 -'$fetch_module_transparents_module'(Mod, Module_Transparents) :-$fetch_module_transparents_module589,17487 -'$fetch_module_transparents_module'(Mod, Module_Transparents) :-$fetch_module_transparents_module589,17487 -'$fetch_module_transparents_module'(Mod, Module_Transparents) :-$fetch_module_transparents_module589,17487 -'$fetch_module_transparent_module'(Mod, '$module_transparent'(F,Mod,N,P)) :-$fetch_module_transparent_module593,17703 -'$fetch_module_transparent_module'(Mod, '$module_transparent'(F,Mod,N,P)) :-$fetch_module_transparent_module593,17703 -'$fetch_module_transparent_module'(Mod, '$module_transparent'(F,Mod,N,P)) :-$fetch_module_transparent_module'(Mod, '$module_transparent593,17703 -'$fetch_meta_predicates_module'(Mod, Meta_Predicates) :-$fetch_meta_predicates_module596,17837 -'$fetch_meta_predicates_module'(Mod, Meta_Predicates) :-$fetch_meta_predicates_module596,17837 -'$fetch_meta_predicates_module'(Mod, Meta_Predicates) :-$fetch_meta_predicates_module596,17837 -'$fetch_meta_predicate_module'(Mod, '$meta_predicate'(F,Mod,N,P)) :-$fetch_meta_predicate_module600,18026 -'$fetch_meta_predicate_module'(Mod, '$meta_predicate'(F,Mod,N,P)) :-$fetch_meta_predicate_module600,18026 -'$fetch_meta_predicate_module'(Mod, '$meta_predicate'(F,Mod,N,P)) :-$fetch_meta_predicate_module'(Mod, '$meta_predicate600,18026 -'$fetch_multi_files_module'(Mod, Multi_Files) :-$fetch_multi_files_module603,18140 -'$fetch_multi_files_module'(Mod, Multi_Files) :-$fetch_multi_files_module603,18140 -'$fetch_multi_files_module'(Mod, Multi_Files) :-$fetch_multi_files_module603,18140 -'$fetch_multi_file_module'(Mod, '$defined'(FileName,Name,Arity,Mod)) :-$fetch_multi_file_module607,18310 -'$fetch_multi_file_module'(Mod, '$defined'(FileName,Name,Arity,Mod)) :-$fetch_multi_file_module607,18310 -'$fetch_multi_file_module'(Mod, '$defined'(FileName,Name,Arity,Mod)) :-$fetch_multi_file_module'(Mod, '$defined607,18310 -'$fetch_multi_file_module'(Mod, '$mf_clause'(FileName,_Name,_Arity,Mod,Clause), _) :-$fetch_multi_file_module609,18451 -'$fetch_multi_file_module'(Mod, '$mf_clause'(FileName,_Name,_Arity,Mod,Clause), _) :-$fetch_multi_file_module609,18451 -'$fetch_multi_file_module'(Mod, '$mf_clause'(FileName,_Name,_Arity,Mod,Clause), _) :-$fetch_multi_file_module'(Mod, '$mf_clause609,18451 -'$fetch_term_expansions_module'(Mod, TEs) :-$fetch_term_expansions_module613,18646 -'$fetch_term_expansions_module'(Mod, TEs) :-$fetch_term_expansions_module613,18646 -'$fetch_term_expansions_module'(Mod, TEs) :-$fetch_term_expansions_module613,18646 -'$fetch_term_expansion_module'(Mod, ( user:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module617,18818 -'$fetch_term_expansion_module'(Mod, ( user:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module617,18818 -'$fetch_term_expansion_module'(Mod, ( user:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module617,18818 -'$fetch_term_expansion_module'(Mod, ( system:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module621,19028 -'$fetch_term_expansion_module'(Mod, ( system:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module621,19028 -'$fetch_term_expansion_module'(Mod, ( system:term_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module621,19028 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, CurMod, GI) :- Bd )) :-$fetch_term_expansion_module625,19242 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, CurMod, GI) :- Bd )) :-$fetch_term_expansion_module625,19242 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, CurMod, GI) :- Bd )) :-$fetch_term_expansion_module625,19242 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module629,19458 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module629,19458 -'$fetch_term_expansion_module'(Mod, ( user:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module629,19458 -'$fetch_term_expansion_module'(Mod, ( system:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module633,19668 -'$fetch_term_expansion_module'(Mod, ( system:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module633,19668 -'$fetch_term_expansion_module'(Mod, ( system:goal_expansion(G, GI) :- Bd )) :-$fetch_term_expansion_module633,19668 -'$fetch_foreigns_module'(Mod, Foreigns) :-$fetch_foreigns_module637,19821 -'$fetch_foreigns_module'(Mod, Foreigns) :-$fetch_foreigns_module637,19821 -'$fetch_foreigns_module'(Mod, Foreigns) :-$fetch_foreigns_module637,19821 -'$fetch_foreign_module'(Mod,Foreign) :-$fetch_foreign_module641,19989 -'$fetch_foreign_module'(Mod,Foreign) :-$fetch_foreign_module641,19989 -'$fetch_foreign_module'(Mod,Foreign) :-$fetch_foreign_module641,19989 -'$install_term_expansions_module'(_, []).$install_term_expansions_module644,20070 -'$install_term_expansions_module'(_, [])./p,predicate,predicate definition644,20070 -'$install_term_expansions_module'(_, []).$install_term_expansions_module644,20070 -'$install_term_expansions_module'(Mod, [TE|TEs]) :-$install_term_expansions_module645,20112 -'$install_term_expansions_module'(Mod, [TE|TEs]) :-$install_term_expansions_module645,20112 -'$install_term_expansions_module'(Mod, [TE|TEs]) :-$install_term_expansions_module645,20112 -'$install_imports_module'(_, [], Fs0) :-$install_imports_module649,20230 -'$install_imports_module'(_, [], Fs0) :-$install_imports_module649,20230 -'$install_imports_module'(_, [], Fs0) :-$install_imports_module649,20230 -'$install_imports_module'(Mod, [Import-F|Imports], Fs0) :-$install_imports_module652,20321 -'$install_imports_module'(Mod, [Import-F|Imports], Fs0) :-$install_imports_module652,20321 -'$install_imports_module'(Mod, [Import-F|Imports], Fs0) :-$install_imports_module652,20321 -'$restore_load_files'([]).$restore_load_files657,20486 -'$restore_load_files'([])./p,predicate,predicate definition657,20486 -'$restore_load_files'([]).$restore_load_files657,20486 -'$restore_load_files'([M-F0|Fs]) :-$restore_load_files658,20513 -'$restore_load_files'([M-F0|Fs]) :-$restore_load_files658,20513 -'$restore_load_files'([M-F0|Fs]) :-$restore_load_files658,20513 -'$install_parents_module'(_, []).$install_parents_module668,20745 -'$install_parents_module'(_, [])./p,predicate,predicate definition668,20745 -'$install_parents_module'(_, []).$install_parents_module668,20745 -'$install_parents_module'(Mod, [Parent|Parents]) :-$install_parents_module669,20779 -'$install_parents_module'(Mod, [Parent|Parents]) :-$install_parents_module669,20779 -'$install_parents_module'(Mod, [Parent|Parents]) :-$install_parents_module669,20779 -'$install_module_transparents_module'(_, []).$install_module_transparents_module673,20898 -'$install_module_transparents_module'(_, [])./p,predicate,predicate definition673,20898 -'$install_module_transparents_module'(_, []).$install_module_transparents_module673,20898 -'$install_module_transparents_module'(Mod, [Module_Transparent|Module_Transparents]) :-$install_module_transparents_module674,20944 -'$install_module_transparents_module'(Mod, [Module_Transparent|Module_Transparents]) :-$install_module_transparents_module674,20944 -'$install_module_transparents_module'(Mod, [Module_Transparent|Module_Transparents]) :-$install_module_transparents_module674,20944 -'$install_meta_predicates_module'(_, []).$install_meta_predicates_module678,21135 -'$install_meta_predicates_module'(_, [])./p,predicate,predicate definition678,21135 -'$install_meta_predicates_module'(_, []).$install_meta_predicates_module678,21135 -'$install_meta_predicates_module'(Mod, [Meta_Predicate|Meta_Predicates]) :-$install_meta_predicates_module679,21177 -'$install_meta_predicates_module'(Mod, [Meta_Predicate|Meta_Predicates]) :-$install_meta_predicates_module679,21177 -'$install_meta_predicates_module'(Mod, [Meta_Predicate|Meta_Predicates]) :-$install_meta_predicates_module679,21177 -'$install_multi_files_module'(_, []).$install_multi_files_module683,21344 -'$install_multi_files_module'(_, [])./p,predicate,predicate definition683,21344 -'$install_multi_files_module'(_, []).$install_multi_files_module683,21344 -'$install_multi_files_module'(Mod, [Multi_File|Multi_Files]) :-$install_multi_files_module684,21382 -'$install_multi_files_module'(Mod, [Multi_File|Multi_Files]) :-$install_multi_files_module684,21382 -'$install_multi_files_module'(Mod, [Multi_File|Multi_Files]) :-$install_multi_files_module684,21382 -'$install_foreigns_module'(_, []).$install_foreigns_module688,21540 -'$install_foreigns_module'(_, [])./p,predicate,predicate definition688,21540 -'$install_foreigns_module'(_, []).$install_foreigns_module688,21540 -'$install_foreigns_module'(Mod, [Foreign|Foreigns]) :-$install_foreigns_module689,21575 -'$install_foreigns_module'(Mod, [Foreign|Foreigns]) :-$install_foreigns_module689,21575 -'$install_foreigns_module'(Mod, [Foreign|Foreigns]) :-$install_foreigns_module689,21575 -'$do_foreign'('$foreign'(Objs,Libs,Entry), _) :-$do_foreign693,21710 -'$do_foreign'('$foreign'(Objs,Libs,Entry), _) :-$do_foreign693,21710 -'$do_foreign'('$foreign'(Objs,Libs,Entry), _) :-$do_foreign'('$foreign693,21710 -'$do_foreign'('$swi_foreign'(File, Opts, Handle), More) :-$do_foreign695,21800 -'$do_foreign'('$swi_foreign'(File, Opts, Handle), More) :-$do_foreign695,21800 -'$do_foreign'('$swi_foreign'(File, Opts, Handle), More) :-$do_foreign'('$swi_foreign695,21800 -'$do_foreign'('$swi_foreign'(_,_), _More).$do_foreign698,21953 -'$do_foreign'('$swi_foreign'(_,_), _More)./p,predicate,predicate definition698,21953 -'$do_foreign'('$swi_foreign'(_,_), _More).$do_foreign'('$swi_foreign698,21953 -'$init_foreigns'([], _Handle, _NewHandle).$init_foreigns700,21997 -'$init_foreigns'([], _Handle, _NewHandle)./p,predicate,predicate definition700,21997 -'$init_foreigns'([], _Handle, _NewHandle).$init_foreigns700,21997 -'$init_foreigns'(['$swi_foreign'( Handle, Function )|More], Handle, NewHandle) :-$init_foreigns701,22040 -'$init_foreigns'(['$swi_foreign'( Handle, Function )|More], Handle, NewHandle) :-$init_foreigns701,22040 -'$init_foreigns'(['$swi_foreign'( Handle, Function )|More], Handle, NewHandle) :-$init_foreigns'(['$swi_foreign701,22040 -'$init_foreigns'([_|More], Handle, NewHandle) :-$init_foreigns705,22231 -'$init_foreigns'([_|More], Handle, NewHandle) :-$init_foreigns705,22231 -'$init_foreigns'([_|More], Handle, NewHandle) :-$init_foreigns705,22231 -qload_file( F0 ) :-qload_file714,22431 -qload_file( F0 ) :-qload_file714,22431 -qload_file( F0 ) :-qload_file714,22431 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file757,23711 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file757,23711 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file757,23711 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file760,23867 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file760,23867 -'$qload_file'(_S, SourceModule, _F, FilePl, _F0, _ImportList, _TOpts) :-$qload_file760,23867 -'$qload_file'(S, _SourceModule, _File, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file764,24098 -'$qload_file'(S, _SourceModule, _File, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file764,24098 -'$qload_file'(S, _SourceModule, _File, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file764,24098 -'$qload_file'(_S, SourceModule, F, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file767,24213 -'$qload_file'(_S, SourceModule, F, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file767,24213 -'$qload_file'(_S, SourceModule, F, _FilePl, _F0, _ImportList, _TOpts) :-$qload_file767,24213 -'$qload_file'(_S, _SourceModule, _File, FilePl, F0, _ImportList, _TOpts) :-$qload_file771,24427 -'$qload_file'(_S, _SourceModule, _File, FilePl, F0, _ImportList, _TOpts) :-$qload_file771,24427 -'$qload_file'(_S, _SourceModule, _File, FilePl, F0, _ImportList, _TOpts) :-$qload_file771,24427 -'$qload_file'(_S, SourceModule, _File, FilePl, _F0, ImportList, TOpts) :-$qload_file775,24593 -'$qload_file'(_S, SourceModule, _File, FilePl, _F0, ImportList, TOpts) :-$qload_file775,24593 -'$qload_file'(_S, SourceModule, _File, FilePl, _F0, ImportList, TOpts) :-$qload_file775,24593 -'$ql_process_directives'( FilePl ) :-$ql_process_directives778,24746 -'$ql_process_directives'( FilePl ) :-$ql_process_directives778,24746 -'$ql_process_directives'( FilePl ) :-$ql_process_directives778,24746 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives782,24982 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives782,24982 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives782,24982 -'$ql_process_directives'( FilePl ) :-$ql_process_directives787,25135 -'$ql_process_directives'( FilePl ) :-$ql_process_directives787,25135 -'$ql_process_directives'( FilePl ) :-$ql_process_directives787,25135 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives793,25368 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives793,25368 -'$ql_process_directives'( _FilePl ) :-$ql_process_directives793,25368 - -pl/rev,208 -A bit confusing, you make it sound like hie clust is better: Keeping in mind our example caseconfusing7,202 -from flow cytometry, we opted for the second option. The rest of this discussioncytometry8,296 - -pl/save.yap,3202 -save(A) :- save(A,_).save22,699 -save(A) :- save(A,_).save22,699 -save(A) :- save(A,_).save22,699 -save(A) :- save(A,_).save22,699 -save(A) :- save(A,_).save22,699 -save(A,_) :- var(A), !,save24,722 -save(A,_) :- var(A), !,save24,722 -save(A,_) :- var(A), !,save24,722 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(A,OUT) :- atom(A), !, atom_codes(A,S), '$save'(S,OUT).save26,789 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save(S,OUT) :- '$save'(S,OUT).save27,849 -save_program(A) :- var(A), !,save_program29,881 -save_program(A) :- var(A), !,save_program29,881 -save_program(A) :- var(A), !,save_program29,881 -save_program(A) :- atom(A), !, save_program31,962 -save_program(A) :- atom(A), !, save_program31,962 -save_program(A) :- atom(A), !, save_program31,962 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(S) :- '$save_program2'(S, true).save_program34,1040 -save_program(A, G) :- var(A), !,save_program36,1087 -save_program(A, G) :- var(A), !,save_program36,1087 -save_program(A, G) :- var(A), !,save_program36,1087 -save_program(A, G) :- var(G), !,save_program38,1174 -save_program(A, G) :- var(G), !,save_program38,1174 -save_program(A, G) :- var(G), !,save_program38,1174 -save_program(A, G) :- \+ callable(G), !,save_program40,1261 -save_program(A, G) :- \+ callable(G), !,save_program40,1261 -save_program(A, G) :- \+ callable(G), !,save_program40,1261 -save_program(A, G) :-save_program42,1359 -save_program(A, G) :-save_program42,1359 -save_program(A, G) :-save_program42,1359 -save_program(_,_).save_program46,1453 -save_program(_,_).save_program46,1453 -'$save_program2'(S,G) :-$save_program248,1473 -'$save_program2'(S,G) :-$save_program248,1473 -'$save_program2'(S,G) :-$save_program248,1473 -'$save_program2'(_,_).$save_program279,1870 -'$save_program2'(_,_)./p,predicate,predicate definition79,1870 -'$save_program2'(_,_).$save_program279,1870 -restore(A) :- var(A), !,restore81,1894 -restore(A) :- var(A), !,restore81,1894 -restore(A) :- var(A), !,restore81,1894 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(A) :- atom(A), !, name(A,S), '$restore'(S).restore83,1965 -restore(S) :- '$restore'(S).restore84,2017 -restore(S) :- '$restore'(S).restore84,2017 -restore(S) :- '$restore'(S).restore84,2017 -restore(S) :- '$restore'(S).restore84,2017 -restore(S) :- '$restore'(S).restore84,2017 - -pl/setof.yap,7784 -a(2,1).a87,2052 -a(2,1).a87,2052 -a(1,1).a88,2060 -a(1,1).a88,2060 -a(2,2).a89,2068 -a(2,2).a89,2068 -findall(X,a(X,Y),L).findall94,2113 -findall(X,a(X,Y),L).findall94,2113 -findall(Template, Generator, Answers) :-findall108,2201 -findall(Template, Generator, Answers) :-findall108,2201 -findall(Template, Generator, Answers) :-findall108,2201 -findall(Template, Generator, Answers, SoFar) :-findall120,2524 -findall(Template, Generator, Answers, SoFar) :-findall120,2524 -findall(Template, Generator, Answers, SoFar) :-findall120,2524 -'$findall'(Template, Generator, SoFar, Answers) :-$findall126,2745 -'$findall'(Template, Generator, SoFar, Answers) :-$findall126,2745 -'$findall'(Template, Generator, SoFar, Answers) :-$findall126,2745 -'$findall_with_common_vars'(Template, Generator, Answers) :-$findall_with_common_vars140,3076 -'$findall_with_common_vars'(Template, Generator, Answers) :-$findall_with_common_vars140,3076 -'$findall_with_common_vars'(Template, Generator, Answers) :-$findall_with_common_vars140,3076 -'$collect_with_common_vars'([], _).$collect_with_common_vars152,3324 -'$collect_with_common_vars'([], _)./p,predicate,predicate definition152,3324 -'$collect_with_common_vars'([], _).$collect_with_common_vars152,3324 -'$collect_with_common_vars'([Key-_|Answers], VarList) :-$collect_with_common_vars153,3360 -'$collect_with_common_vars'([Key-_|Answers], VarList) :-$collect_with_common_vars153,3360 -'$collect_with_common_vars'([Key-_|Answers], VarList) :-$collect_with_common_vars153,3360 -setof(X,a(X,Y),L).setof166,3768 -setof(X,a(X,Y),L).setof166,3768 -setof(Template, Generator, Set) :-setof184,3875 -setof(Template, Generator, Set) :-setof184,3875 -setof(Template, Generator, Set) :-setof184,3875 -bagof(X,a(X,Y),L).bagof209,4524 -bagof(X,a(X,Y),L).bagof209,4524 -bagof(Template, Generator, Bag) :-bagof224,4617 -bagof(Template, Generator, Bag) :-bagof224,4617 -bagof(Template, Generator, Bag) :-bagof224,4617 -'$bagof'(Template, Generator, Bag) :-$bagof232,4811 -'$bagof'(Template, Generator, Bag) :-$bagof232,4811 -'$bagof'(Template, Generator, Bag) :-$bagof232,4811 -'$pick'([K-X|Bags], Key, Bag) :-$pick247,5275 -'$pick'([K-X|Bags], Key, Bag) :-$pick247,5275 -'$pick'([K-X|Bags], Key, Bag) :-$pick247,5275 -'$parade'([K-X|L1], Key, [X|B], L) :- K == Key, !,$parade251,5385 -'$parade'([K-X|L1], Key, [X|B], L) :- K == Key, !,$parade251,5385 -'$parade'([K-X|L1], Key, [X|B], L) :- K == Key, !,$parade251,5385 -'$parade'(L, _, [], L).$parade253,5463 -'$parade'(L, _, [], L)./p,predicate,predicate definition253,5463 -'$parade'(L, _, [], L).$parade253,5463 -'$decide'([], Bag, Key0, Key, Bag) :- !,$decide262,5774 -'$decide'([], Bag, Key0, Key, Bag) :- !,$decide262,5774 -'$decide'([], Bag, Key0, Key, Bag) :- !,$decide262,5774 -'$decide'(_, Bag, Key, Key, Bag).$decide264,5826 -'$decide'(_, Bag, Key, Key, Bag)./p,predicate,predicate definition264,5826 -'$decide'(_, Bag, Key, Key, Bag).$decide264,5826 -'$decide'(Bags, _, _, Key, Bag) :-$decide265,5860 -'$decide'(Bags, _, _, Key, Bag) :-$decide265,5860 -'$decide'(Bags, _, _, Key, Bag) :-$decide265,5860 -all(X,a(X,Y),L).all279,6287 -all(X,a(X,Y),L).all279,6287 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T, G same X,S) :- !, all(T same X,G,Sx), '$$produce'(Sx,S,X).all294,6420 -all(T,G,S) :-all295,6486 -all(T,G,S) :-all295,6486 -all(T,G,S) :-all295,6486 -'$$set'(S,R) :-$$set306,6705 -'$$set'(S,R) :-$$set306,6705 -'$$set'(S,R) :-$$set306,6705 -'$$build'(Ns,S0,R) :- '$db_dequeue'(R,X), !,$$build311,6777 -'$$build'(Ns,S0,R) :- '$db_dequeue'(R,X), !,$$build311,6777 -'$$build'(Ns,S0,R) :- '$db_dequeue'(R,X), !,$$build311,6777 -'$$build'([],_,_).$$build313,6846 -'$$build'([],_,_)./p,predicate,predicate definition313,6846 -'$$build'([],_,_).$$build313,6846 -'$$build2'([X|Ns],Hash,R,X) :-$$build2315,6866 -'$$build2'([X|Ns],Hash,R,X) :-$$build2315,6866 -'$$build2'([X|Ns],Hash,R,X) :-$$build2315,6866 -'$$build2'(Ns,Hash,R,_) :-$$build2318,6941 -'$$build2'(Ns,Hash,R,_) :-$$build2318,6941 -'$$build2'(Ns,Hash,R,_) :-$$build2318,6941 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_)./p,predicate,predicate definition321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(V,El) :- var(V), !, V = n(_,El,_).$$new321,6992 -'$$new'(n(R,El0,L),El) :-$$new322,7035 -'$$new'(n(R,El0,L),El) :-$$new322,7035 -'$$new'(n(R,El0,L),El) :-$$new322,7035 -'$$new'(=,_,_,_) :- !, fail.$$new326,7102 -'$$new'(=,_,_,_) :- !, fail.$$new326,7102 -'$$new'(=,_,_,_) :- !, fail.$$new326,7102 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El)./p,predicate,predicate definition327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new327,7131 -'$$new'(<,R,_,El) :- '$$new'(R,El).$$new'(<,R,_,El) :- '$$new327,7131 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El)./p,predicate,predicate definition328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new328,7167 -'$$new'(>,_,L,El) :- '$$new'(L,El).$$new'(>,_,L,El) :- '$$new328,7167 -'$$produce'([T1 same X1|Tn],S,X) :- '$$split'(Tn,T1,X1,S1,S2),$$produce331,7205 -'$$produce'([T1 same X1|Tn],S,X) :- '$$split'(Tn,T1,X1,S1,S2),$$produce331,7205 -'$$produce'([T1 same X1|Tn],S,X) :- '$$split'(Tn,T1,X1,S1,S2),$$produce331,7205 -'$$split'([],_,_,[],[]).$$split335,7314 -'$$split'([],_,_,[],[])./p,predicate,predicate definition335,7314 -'$$split'([],_,_,[],[]).$$split335,7314 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2)./p,predicate,predicate definition336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split336,7339 -'$$split'([T same X|Tn],T,X,S1,S2) :- '$$split'(Tn,T,X,S1,S2).$$split'([T same X|Tn],T,X,S1,S2) :- '$$split336,7339 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2)./p,predicate,predicate definition337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split337,7402 -'$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split'(Tn,T,X,S1,S2).$$split'([T1 same X|Tn],T,X,[T1|S1],S2) :- '$$split337,7402 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2)./p,predicate,predicate definition338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split338,7471 -'$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split'(Tn,T,X,S1,S2).$$split'([T1|Tn],T,X,S1,[T1|S2]) :- '$$split338,7471 - -pl/signals.yap,10069 -loop :- loop.loop52,1638 -ticker :- write('.'), flush_output,ticker54,1653 -loop :- loop.loop71,2267 -once_with_alarm(Time,Goal,DoOnAlarm) :-once_with_alarm87,2844 -once_with_alarm(Time,Goal,DoOnAlarm) :-once_with_alarm87,2844 -once_with_alarm(Time,Goal,DoOnAlarm) :-once_with_alarm87,2844 -execute_once_with_alarm(Time, Goal) :-execute_once_with_alarm90,2950 -execute_once_with_alarm(Time, Goal) :-execute_once_with_alarm90,2950 -execute_once_with_alarm(Time, Goal) :-execute_once_with_alarm90,2950 -'$creep'(G) :-$creep146,5083 -'$creep'(G) :-$creep146,5083 -'$creep'(G) :-$creep146,5083 -'$creep'([M|G]) :-$creep151,5199 -'$creep'([M|G]) :-$creep151,5199 -'$creep'([M|G]) :-$creep151,5199 -'$do_signal'(sig_wake_up, G) :-$do_signal155,5273 -'$do_signal'(sig_wake_up, G) :-$do_signal155,5273 -'$do_signal'(sig_wake_up, G) :-$do_signal155,5273 -'$do_signal'(sig_creep, MG) :-$do_signal162,5485 -'$do_signal'(sig_creep, MG) :-$do_signal162,5485 -'$do_signal'(sig_creep, MG) :-$do_signal162,5485 -'$do_signal'(sig_iti, [M|G]) :-$do_signal164,5545 -'$do_signal'(sig_iti, [M|G]) :-$do_signal164,5545 -'$do_signal'(sig_iti, [M|G]) :-$do_signal164,5545 -'$do_signal'(sig_trace, [M|G]) :-$do_signal171,5730 -'$do_signal'(sig_trace, [M|G]) :-$do_signal171,5730 -'$do_signal'(sig_trace, [M|G]) :-$do_signal171,5730 -'$do_signal'(sig_debug, [M|G]) :-$do_signal175,5812 -'$do_signal'(sig_debug, [M|G]) :-$do_signal175,5812 -'$do_signal'(sig_debug, [M|G]) :-$do_signal175,5812 -'$do_signal'(sig_break, [M|G]) :-$do_signal179,5894 -'$do_signal'(sig_break, [M|G]) :-$do_signal179,5894 -'$do_signal'(sig_break, [M|G]) :-$do_signal179,5894 -'$do_signal'(sig_statistics, [M|G]) :-$do_signal183,5977 -'$do_signal'(sig_statistics, [M|G]) :-$do_signal183,5977 -'$do_signal'(sig_statistics, [M|G]) :-$do_signal183,5977 -'$do_signal'(fail, [_|_]) :-$do_signal188,6111 -'$do_signal'(fail, [_|_]) :-$do_signal188,6111 -'$do_signal'(fail, [_|_]) :-$do_signal188,6111 -'$do_signal'(sig_stack_dump, [M|G]) :-$do_signal190,6147 -'$do_signal'(sig_stack_dump, [M|G]) :-$do_signal190,6147 -'$do_signal'(sig_stack_dump, [M|G]) :-$do_signal190,6147 -'$do_signal'(sig_fpe,G) :-$do_signal194,6252 -'$do_signal'(sig_fpe,G) :-$do_signal194,6252 -'$do_signal'(sig_fpe,G) :-$do_signal194,6252 -'$do_signal'(sig_alarm, G) :-$do_signal196,6314 -'$do_signal'(sig_alarm, G) :-$do_signal196,6314 -'$do_signal'(sig_alarm, G) :-$do_signal196,6314 -'$do_signal'(sig_vtalarm, G) :-$do_signal198,6378 -'$do_signal'(sig_vtalarm, G) :-$do_signal198,6378 -'$do_signal'(sig_vtalarm, G) :-$do_signal198,6378 -'$do_signal'(sig_hup, G) :-$do_signal200,6446 -'$do_signal'(sig_hup, G) :-$do_signal200,6446 -'$do_signal'(sig_hup, G) :-$do_signal200,6446 -'$do_signal'(sig_usr1, G) :-$do_signal202,6506 -'$do_signal'(sig_usr1, G) :-$do_signal202,6506 -'$do_signal'(sig_usr1, G) :-$do_signal202,6506 -'$do_signal'(sig_usr2, G) :-$do_signal204,6568 -'$do_signal'(sig_usr2, G) :-$do_signal204,6568 -'$do_signal'(sig_usr2, G) :-$do_signal204,6568 -'$do_signal'(sig_pipe, G) :-$do_signal206,6630 -'$do_signal'(sig_pipe, G) :-$do_signal206,6630 -'$do_signal'(sig_pipe, G) :-$do_signal206,6630 -'$signal_handler'(Sig, [M|G]) :-$signal_handler209,6693 -'$signal_handler'(Sig, [M|G]) :-$signal_handler209,6693 -'$signal_handler'(Sig, [M|G]) :-$signal_handler209,6693 -'$start_creep'([_M|G], _) :-$start_creep217,6930 -'$start_creep'([_M|G], _) :-$start_creep217,6930 -'$start_creep'([_M|G], _) :-$start_creep217,6930 -'$start_creep'([M|G], _) :-$start_creep222,7037 -'$start_creep'([M|G], _) :-$start_creep222,7037 -'$start_creep'([M|G], _) :-$start_creep222,7037 -'$start_creep'([Mod|G], WhereFrom) :-$start_creep235,7299 -'$start_creep'([Mod|G], WhereFrom) :-$start_creep235,7299 -'$start_creep'([Mod|G], WhereFrom) :-$start_creep235,7299 -'$no_creep_call'('$execute_clause'(G,Mod,Ref,CP),_) :- !,$no_creep_call239,7399 -'$no_creep_call'('$execute_clause'(G,Mod,Ref,CP),_) :- !,$no_creep_call239,7399 -'$no_creep_call'('$execute_clause'(G,Mod,Ref,CP),_) :- !,$no_creep_call'('$execute_clause239,7399 -'$no_creep_call'('$execute_nonstop'(G, M),_) :- !,$no_creep_call242,7520 -'$no_creep_call'('$execute_nonstop'(G, M),_) :- !,$no_creep_call242,7520 -'$no_creep_call'('$execute_nonstop'(G, M),_) :- !,$no_creep_call'('$execute_nonstop242,7520 -'$no_creep_call'(G, M) :-$no_creep_call245,7621 -'$no_creep_call'(G, M) :-$no_creep_call245,7621 -'$no_creep_call'(G, M) :-$no_creep_call245,7621 -'$execute_goal'(G, Mod) :-$execute_goal251,7700 -'$execute_goal'(G, Mod) :-$execute_goal251,7700 -'$execute_goal'(G, Mod) :-$execute_goal251,7700 -'$signal_do'(Sig, Goal) :-$signal_do261,7821 -'$signal_do'(Sig, Goal) :-$signal_do261,7821 -'$signal_do'(Sig, Goal) :-$signal_do261,7821 -'$signal_do'(Sig, Goal) :-$signal_do263,7902 -'$signal_do'(Sig, Goal) :-$signal_do263,7902 -'$signal_do'(Sig, Goal) :-$signal_do263,7902 -'$signal_def'(sig_usr1, throw(error(signal(usr1,[]),true))).$signal_def271,8206 -'$signal_def'(sig_usr1, throw(error(signal(usr1,[]),true)))./p,predicate,predicate definition271,8206 -'$signal_def'(sig_usr1, throw(error(signal(usr1,[]),true))).$signal_def271,8206 -'$signal_def'(sig_usr2, throw(error(signal(usr2,[]),true))).$signal_def272,8267 -'$signal_def'(sig_usr2, throw(error(signal(usr2,[]),true)))./p,predicate,predicate definition272,8267 -'$signal_def'(sig_usr2, throw(error(signal(usr2,[]),true))).$signal_def272,8267 -'$signal_def'(sig_pipe, throw(error(signal(pipe,[]),true))).$signal_def273,8328 -'$signal_def'(sig_pipe, throw(error(signal(pipe,[]),true)))./p,predicate,predicate definition273,8328 -'$signal_def'(sig_pipe, throw(error(signal(pipe,[]),true))).$signal_def273,8328 -'$signal_def'(sig_fpe, throw(error(signal(fpe,[]),true))).$signal_def274,8389 -'$signal_def'(sig_fpe, throw(error(signal(fpe,[]),true)))./p,predicate,predicate definition274,8389 -'$signal_def'(sig_fpe, throw(error(signal(fpe,[]),true))).$signal_def274,8389 -'$signal_def'(sig_alarm, true).$signal_def276,8478 -'$signal_def'(sig_alarm, true)./p,predicate,predicate definition276,8478 -'$signal_def'(sig_alarm, true).$signal_def276,8478 -'$signal'(sig_hup).$signal279,8512 -'$signal'(sig_hup)./p,predicate,predicate definition279,8512 -'$signal'(sig_hup).$signal279,8512 -'$signal'(sig_usr1).$signal280,8532 -'$signal'(sig_usr1)./p,predicate,predicate definition280,8532 -'$signal'(sig_usr1).$signal280,8532 -'$signal'(sig_usr2).$signal281,8553 -'$signal'(sig_usr2)./p,predicate,predicate definition281,8553 -'$signal'(sig_usr2).$signal281,8553 -'$signal'(sig_pipe).$signal282,8574 -'$signal'(sig_pipe)./p,predicate,predicate definition282,8574 -'$signal'(sig_pipe).$signal282,8574 -'$signal'(sig_alarm).$signal283,8595 -'$signal'(sig_alarm)./p,predicate,predicate definition283,8595 -'$signal'(sig_alarm).$signal283,8595 -'$signal'(sig_vtalarm).$signal284,8617 -'$signal'(sig_vtalarm)./p,predicate,predicate definition284,8617 -'$signal'(sig_vtalarm).$signal284,8617 -'$signal'(sig_fpe).$signal285,8641 -'$signal'(sig_fpe)./p,predicate,predicate definition285,8641 -'$signal'(sig_fpe).$signal285,8641 -on_signal(Signal,OldAction,NewAction) :-on_signal287,8662 -on_signal(Signal,OldAction,NewAction) :-on_signal287,8662 -on_signal(Signal,OldAction,NewAction) :-on_signal287,8662 -on_signal(Signal,OldAction,default) :-on_signal292,8867 -on_signal(Signal,OldAction,default) :-on_signal292,8867 -on_signal(Signal,OldAction,default) :-on_signal292,8867 -on_signal(_Signal,_OldAction,Action) :-on_signal294,8943 -on_signal(_Signal,_OldAction,Action) :-on_signal294,8943 -on_signal(_Signal,_OldAction,Action) :-on_signal294,8943 -on_signal(Signal,OldAction,Action) :-on_signal297,9110 -on_signal(Signal,OldAction,Action) :-on_signal297,9110 -on_signal(Signal,OldAction,Action) :-on_signal297,9110 -on_signal(Signal,OldAction,Action) :-on_signal302,9239 -on_signal(Signal,OldAction,Action) :-on_signal302,9239 -on_signal(Signal,OldAction,Action) :-on_signal302,9239 -'$reset_signal'(Signal, OldAction) :-$reset_signal313,9860 -'$reset_signal'(Signal, OldAction) :-$reset_signal313,9860 -'$reset_signal'(Signal, OldAction) :-$reset_signal313,9860 -'$reset_signal'(_, default).$reset_signal316,9975 -'$reset_signal'(_, default)./p,predicate,predicate definition316,9975 -'$reset_signal'(_, default).$reset_signal316,9975 -'$check_signal'(Signal, OldAction) :-$check_signal318,10005 -'$check_signal'(Signal, OldAction) :-$check_signal318,10005 -'$check_signal'(Signal, OldAction) :-$check_signal318,10005 -'$check_signal'(_, default).$check_signal320,10105 -'$check_signal'(_, default)./p,predicate,predicate definition320,10105 -'$check_signal'(_, default).$check_signal320,10105 -alarm(Interval, Goal, Left) :-alarm323,10136 -alarm(Interval, Goal, Left) :-alarm323,10136 -alarm(Interval, Goal, Left) :-alarm323,10136 -alarm(Interval, Goal, Left) :-alarm328,10260 -alarm(Interval, Goal, Left) :-alarm328,10260 -alarm(Interval, Goal, Left) :-alarm328,10260 -alarm(Number, Goal, Left) :-alarm331,10378 -alarm(Number, Goal, Left) :-alarm331,10378 -alarm(Number, Goal, Left) :-alarm331,10378 -alarm([Interval|USecs], Goal, [Left|LUSecs]) :-alarm337,10571 -alarm([Interval|USecs], Goal, [Left|LUSecs]) :-alarm337,10571 -alarm([Interval|USecs], Goal, [Left|LUSecs]) :-alarm337,10571 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -raise_exception(Ball) :- throw(Ball).raise_exception341,10694 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -on_exception(Pat, G, H) :- catch(G, Pat, H).on_exception343,10733 -read_sig :-read_sig345,10779 - -pl/sort.yap,2272 -sort(L,O) :-sort48,1299 -sort(L,O) :-sort48,1299 -sort(L,O) :-sort48,1299 -msort(L,O) :-msort72,1733 -msort(L,O) :-msort72,1733 -msort(L,O) :-msort72,1733 -keysort(L,O) :-keysort94,2109 -keysort(L,O) :-keysort94,2109 -keysort(L,O) :-keysort94,2109 -predsort(P, L, R) :-predsort132,3121 -predsort(P, L, R) :-predsort132,3121 -predsort(P, L, R) :-predsort132,3121 -predsort(P, 2, [X1, X2|L], L, R) :- !,predsort137,3197 -predsort(P, 2, [X1, X2|L], L, R) :- !,predsort137,3197 -predsort(P, 2, [X1, X2|L], L, R) :- !,predsort137,3197 -predsort(_, 1, [X|L], L, [X]) :- !.predsort140,3287 -predsort(_, 1, [X|L], L, [X]) :- !.predsort140,3287 -predsort(_, 1, [X|L], L, [X]) :- !.predsort140,3287 -predsort(_, 0, L, L, []) :- !.predsort141,3323 -predsort(_, 0, L, L, []) :- !.predsort141,3323 -predsort(_, 0, L, L, []) :- !.predsort141,3323 -predsort(P, N, L1, L3, R) :-predsort142,3354 -predsort(P, N, L1, L3, R) :-predsort142,3354 -predsort(P, N, L1, L3, R) :-predsort142,3354 -sort2(<, X1, X2, [X1, X2]).sort2149,3503 -sort2(<, X1, X2, [X1, X2]).sort2149,3503 -sort2(=, X1, _, [X1]).sort2150,3531 -sort2(=, X1, _, [X1]).sort2150,3531 -sort2(>, X1, X2, [X2, X1]).sort2151,3555 -sort2(>, X1, X2, [X2, X1]).sort2151,3555 -predmerge(_, [], R, R) :- !.predmerge153,3584 -predmerge(_, [], R, R) :- !.predmerge153,3584 -predmerge(_, [], R, R) :- !.predmerge153,3584 -predmerge(_, R, [], R) :- !.predmerge154,3613 -predmerge(_, R, [], R) :- !.predmerge154,3613 -predmerge(_, R, [], R) :- !.predmerge154,3613 -predmerge(P, [H1|T1], [H2|T2], Result) :-predmerge155,3642 -predmerge(P, [H1|T1], [H2|T2], Result) :-predmerge155,3642 -predmerge(P, [H1|T1], [H2|T2], Result) :-predmerge155,3642 -predmerge(>, P, H1, H2, T1, T2, [H2|R]) :-predmerge159,3756 -predmerge(>, P, H1, H2, T1, T2, [H2|R]) :-predmerge159,3756 -predmerge(>, P, H1, H2, T1, T2, [H2|R]) :-predmerge159,3756 -predmerge(=, P, H1, _, T1, T2, [H1|R]) :-predmerge161,3830 -predmerge(=, P, H1, _, T1, T2, [H1|R]) :-predmerge161,3830 -predmerge(=, P, H1, _, T1, T2, [H1|R]) :-predmerge161,3830 -predmerge(<, P, H1, H2, T1, T2, [H1|R]) :-predmerge163,3898 -predmerge(<, P, H1, H2, T1, T2, [H1|R]) :-predmerge163,3898 -predmerge(<, P, H1, H2, T1, T2, [H1|R]) :-predmerge163,3898 - -pl/spy.yap,5090 -'$suspy_predicates_by_name'(A,spy,M) :- !,$suspy_predicates_by_name106,2366 -'$suspy_predicates_by_name'(A,spy,M) :- !,$suspy_predicates_by_name106,2366 -'$suspy_predicates_by_name'(A,spy,M) :- !,$suspy_predicates_by_name106,2366 -'$suspy_predicates_by_name'(A,nospy,M) :-$suspy_predicates_by_name108,2454 -'$suspy_predicates_by_name'(A,nospy,M) :-$suspy_predicates_by_name108,2454 -'$suspy_predicates_by_name'(A,nospy,M) :-$suspy_predicates_by_name108,2454 -'$do_suspy_predicates_by_name'(A,S,M) :-$do_suspy_predicates_by_name111,2544 -'$do_suspy_predicates_by_name'(A,S,M) :-$do_suspy_predicates_by_name111,2544 -'$do_suspy_predicates_by_name'(A,S,M) :-$do_suspy_predicates_by_name111,2544 -'$do_suspy_predicates_by_name'(A, S, M) :-$do_suspy_predicates_by_name115,2661 -'$do_suspy_predicates_by_name'(A, S, M) :-$do_suspy_predicates_by_name115,2661 -'$do_suspy_predicates_by_name'(A, S, M) :-$do_suspy_predicates_by_name115,2661 -nospyall :-nospyall211,5218 -nospyall :-nospyall214,5291 -debug :-debug220,5426 -'$start_debugging'(Mode) :-$start_debugging226,5608 -'$start_debugging'(Mode) :-$start_debugging226,5608 -'$start_debugging'(Mode) :-$start_debugging226,5608 -nodebug :-nodebug235,5805 -trace :-trace253,6069 -trace :-trace256,6109 -notrace :-notrace268,6322 -leash(X) :- var(X),leash328,7665 -leash(X) :- var(X),leash328,7665 -leash(X) :- var(X),leash328,7665 -leash(X) :-leash330,7729 -leash(X) :-leash330,7729 -leash(X) :-leash330,7729 -leash(X) :-leash335,7849 -leash(X) :-leash335,7849 -leash(X) :-leash335,7849 -'$show_leash'(Msg,0) :-$show_leash338,7911 -'$show_leash'(Msg,0) :-$show_leash338,7911 -'$show_leash'(Msg,0) :-$show_leash338,7911 -'$show_leash'(Msg,Code) :-$show_leash340,7966 -'$show_leash'(Msg,Code) :-$show_leash340,7966 -'$show_leash'(Msg,Code) :-$show_leash340,7966 -'$check_leash_bit'(Code,Bit,L0,_,L0) :- Bit /\ Code =:= 0, !.$check_leash_bit347,8193 -'$check_leash_bit'(Code,Bit,L0,_,L0) :- Bit /\ Code =:= 0, !.$check_leash_bit347,8193 -'$check_leash_bit'(Code,Bit,L0,_,L0) :- Bit /\ Code =:= 0, !.$check_leash_bit347,8193 -'$check_leash_bit'(_,_,L0,Name,[Name|L0]).$check_leash_bit348,8255 -'$check_leash_bit'(_,_,L0,Name,[Name|L0])./p,predicate,predicate definition348,8255 -'$check_leash_bit'(_,_,L0,Name,[Name|L0]).$check_leash_bit348,8255 -'$leashcode'(full,0xf) :- !.$leashcode350,8299 -'$leashcode'(full,0xf) :- !.$leashcode350,8299 -'$leashcode'(full,0xf) :- !.$leashcode350,8299 -'$leashcode'(on,0xf) :- !.$leashcode351,8328 -'$leashcode'(on,0xf) :- !.$leashcode351,8328 -'$leashcode'(on,0xf) :- !.$leashcode351,8328 -'$leashcode'(half,0xb) :- !.$leashcode352,8355 -'$leashcode'(half,0xb) :- !.$leashcode352,8355 -'$leashcode'(half,0xb) :- !.$leashcode352,8355 -'$leashcode'(loose,0x8) :- !.$leashcode353,8384 -'$leashcode'(loose,0x8) :- !.$leashcode353,8384 -'$leashcode'(loose,0x8) :- !.$leashcode353,8384 -'$leashcode'(off,0x0) :- !.$leashcode354,8414 -'$leashcode'(off,0x0) :- !.$leashcode354,8414 -'$leashcode'(off,0x0) :- !.$leashcode354,8414 -'$leashcode'(none,0x0) :- !.$leashcode355,8442 -'$leashcode'(none,0x0) :- !.$leashcode355,8442 -'$leashcode'(none,0x0) :- !.$leashcode355,8442 -'$leashcode'([L|M],Code) :- !,$leashcode357,8534 -'$leashcode'([L|M],Code) :- !,$leashcode357,8534 -'$leashcode'([L|M],Code) :- !,$leashcode357,8534 -'$leashcode'(N,N) :- integer(N), N >= 0, N =< 0xf.$leashcode359,8592 -'$leashcode'(N,N) :- integer(N), N >= 0, N =< 0xf.$leashcode359,8592 -'$leashcode'(N,N) :- integer(N), N >= 0, N =< 0xf.$leashcode359,8592 -'$list2Code'(V,_) :- var(V), !,$list2Code361,8644 -'$list2Code'(V,_) :- var(V), !,$list2Code361,8644 -'$list2Code'(V,_) :- var(V), !,$list2Code361,8644 -'$list2Code'([],0) :- !.$list2Code363,8720 -'$list2Code'([],0) :- !.$list2Code363,8720 -'$list2Code'([],0) :- !.$list2Code363,8720 -'$list2Code'([V|L],_) :- var(V), !,$list2Code364,8745 -'$list2Code'([V|L],_) :- var(V), !,$list2Code364,8745 -'$list2Code'([V|L],_) :- var(V), !,$list2Code364,8745 -'$list2Code'([call|L],N) :- '$list2Code'(L,N1), N is 0x8 + N1.$list2Code366,8829 -'$list2Code'([call|L],N) :- '$list2Code'(L,N1), N is 0x8 + N1.$list2Code366,8829 -'$list2Code'([call|L],N) :- '$list2Code'(L,N1), N is 0x8 + N1.$list2Code366,8829 -'$list2Code'([exit|L],N) :- '$list2Code'(L,N1), N is 0x4 + N1.$list2Code367,8892 -'$list2Code'([exit|L],N) :- '$list2Code'(L,N1), N is 0x4 + N1.$list2Code367,8892 -'$list2Code'([exit|L],N) :- '$list2Code'(L,N1), N is 0x4 + N1.$list2Code367,8892 -'$list2Code'([redo|L],N) :- '$list2Code'(L,N1), N is 0x2 + N1.$list2Code368,8955 -'$list2Code'([redo|L],N) :- '$list2Code'(L,N1), N is 0x2 + N1.$list2Code368,8955 -'$list2Code'([redo|L],N) :- '$list2Code'(L,N1), N is 0x2 + N1.$list2Code368,8955 -'$list2Code'([fail|L],N) :- '$list2Code'(L,N1), N is 0x1 + N1.$list2Code369,9018 -'$list2Code'([fail|L],N) :- '$list2Code'(L,N1), N is 0x1 + N1.$list2Code369,9018 -'$list2Code'([fail|L],N) :- '$list2Code'(L,N1), N is 0x1 + N1.$list2Code369,9018 -debugging :-debugging377,9259 -debugging :-debugging380,9331 - -pl/statistics.yap,4846 -statistics :-statistics69,2605 -'$statistics'(Runtime,CPUtime,SYStime,Walltime,HpSpa,HpInUse,HpMax,TrlSpa, TrlInUse,_TrlMax,StkSpa, GlobInU, LocInU,GlobMax,LocMax,NOfHO,TotHOTime,NOfSO,TotSOTime,NOfTO,TotTOTime,NOfGC,TotGCTime,TotGCSize,NOfAGC,TotAGCTime,TotAGCSize) :-$statistics88,3463 -'$statistics'(Runtime,CPUtime,SYStime,Walltime,HpSpa,HpInUse,HpMax,TrlSpa, TrlInUse,_TrlMax,StkSpa, GlobInU, LocInU,GlobMax,LocMax,NOfHO,TotHOTime,NOfSO,TotSOTime,NOfTO,TotTOTime,NOfGC,TotGCTime,TotGCSize,NOfAGC,TotAGCTime,TotAGCSize) :-$statistics88,3463 -'$statistics'(Runtime,CPUtime,SYStime,Walltime,HpSpa,HpInUse,HpMax,TrlSpa, TrlInUse,_TrlMax,StkSpa, GlobInU, LocInU,GlobMax,LocMax,NOfHO,TotHOTime,NOfSO,TotSOTime,NOfTO,TotTOTime,NOfGC,TotGCTime,TotGCSize,NOfAGC,TotAGCTime,TotAGCSize) :-$statistics88,3463 -'$statistics'(_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_).$statistics129,5708 -'$statistics'(_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_)./p,predicate,predicate definition129,5708 -'$statistics'(_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_).$statistics129,5708 -statistics(runtime,[T,L]) :-statistics257,9191 -statistics(runtime,[T,L]) :-statistics257,9191 -statistics(runtime,[T,L]) :-statistics257,9191 -statistics(cputime,[T,L]) :-statistics259,9238 -statistics(cputime,[T,L]) :-statistics259,9238 -statistics(cputime,[T,L]) :-statistics259,9238 -statistics(walltime,[T,L]) :-statistics261,9285 -statistics(walltime,[T,L]) :-statistics261,9285 -statistics(walltime,[T,L]) :-statistics261,9285 -statistics(threads,NT) :-statistics263,9334 -statistics(threads,NT) :-statistics263,9334 -statistics(threads,NT) :-statistics263,9334 -statistics(threads_created,TC) :-statistics265,9381 -statistics(threads_created,TC) :-statistics265,9381 -statistics(threads_created,TC) :-statistics265,9381 -statistics(thread_cputime,TR) :-statistics267,9444 -statistics(thread_cputime,TR) :-statistics267,9444 -statistics(thread_cputime,TR) :-statistics267,9444 -statistics(heap,[Hp,HpF]) :-statistics271,9549 -statistics(heap,[Hp,HpF]) :-statistics271,9549 -statistics(heap,[Hp,HpF]) :-statistics271,9549 -statistics(program,Info) :-statistics274,9629 -statistics(program,Info) :-statistics274,9629 -statistics(program,Info) :-statistics274,9629 -statistics(global_stack,[GlobInU,GlobFree]) :-statistics276,9681 -statistics(global_stack,[GlobInU,GlobFree]) :-statistics276,9681 -statistics(global_stack,[GlobInU,GlobFree]) :-statistics276,9681 -statistics(local_stack,[LocInU,LocFree]) :-statistics279,9817 -statistics(local_stack,[LocInU,LocFree]) :-statistics279,9817 -statistics(local_stack,[LocInU,LocFree]) :-statistics279,9817 -statistics(trail,[TrlInUse,TrlFree]) :-statistics282,9949 -statistics(trail,[TrlInUse,TrlFree]) :-statistics282,9949 -statistics(trail,[TrlInUse,TrlFree]) :-statistics282,9949 -statistics(garbage_collection,[NOfGC,TotGCSize,TotGCTime]) :-statistics285,10063 -statistics(garbage_collection,[NOfGC,TotGCSize,TotGCTime]) :-statistics285,10063 -statistics(garbage_collection,[NOfGC,TotGCSize,TotGCTime]) :-statistics285,10063 -statistics(stack_shifts,[NOfHO,NOfSO,NOfTO]) :-statistics287,10167 -statistics(stack_shifts,[NOfHO,NOfSO,NOfTO]) :-statistics287,10167 -statistics(stack_shifts,[NOfHO,NOfSO,NOfTO]) :-statistics287,10167 -statistics(atoms,[NOf,SizeOf]) :-statistics291,10325 -statistics(atoms,[NOf,SizeOf]) :-statistics291,10325 -statistics(atoms,[NOf,SizeOf]) :-statistics291,10325 -statistics(static_code,[ClauseSize, IndexSize, TreeIndexSize, ExtIndexSize, SWIndexSize]) :-statistics293,10397 -statistics(static_code,[ClauseSize, IndexSize, TreeIndexSize, ExtIndexSize, SWIndexSize]) :-statistics293,10397 -statistics(static_code,[ClauseSize, IndexSize, TreeIndexSize, ExtIndexSize, SWIndexSize]) :-statistics293,10397 -statistics(dynamic_code,[ClauseSize,IndexSize, TreeIndexSize, CPIndexSize, ExtIndexSize, SWIndexSize]) :-statistics296,10624 -statistics(dynamic_code,[ClauseSize,IndexSize, TreeIndexSize, CPIndexSize, ExtIndexSize, SWIndexSize]) :-statistics296,10624 -statistics(dynamic_code,[ClauseSize,IndexSize, TreeIndexSize, CPIndexSize, ExtIndexSize, SWIndexSize]) :-statistics296,10624 -key_statistics(Key, NOfEntries, TotalSize) :-key_statistics308,11114 -key_statistics(Key, NOfEntries, TotalSize) :-key_statistics308,11114 -key_statistics(Key, NOfEntries, TotalSize) :-key_statistics308,11114 -time(Goal) :-time331,11753 -time(Goal) :-time331,11753 -time(Goal) :-time331,11753 -time(_:Goal) :-time334,11825 -time(_:Goal) :-time334,11825 -time(_:Goal) :-time334,11825 -time(Goal) :- \+ callable(Goal), !,time337,11899 -time(Goal) :- \+ callable(Goal), !,time337,11899 -time(Goal) :- \+ callable(Goal), !,time337,11899 -time(Goal) :-time339,11987 -time(Goal) :-time339,11987 -time(Goal) :-time339,11987 - -pl/strict_iso.yap,28431 -'$iso_check_goal'(V,G) :-$iso_check_goal6,154 -'$iso_check_goal'(V,G) :-$iso_check_goal6,154 -'$iso_check_goal'(V,G) :-$iso_check_goal6,154 -'$iso_check_goal'(V,G) :-$iso_check_goal9,235 -'$iso_check_goal'(V,G) :-$iso_check_goal9,235 -'$iso_check_goal'(V,G) :-$iso_check_goal9,235 -'$iso_check_goal'(_:G,G0) :- !,$iso_check_goal12,316 -'$iso_check_goal'(_:G,G0) :- !,$iso_check_goal12,316 -'$iso_check_goal'(_:G,G0) :- !,$iso_check_goal12,316 -'$iso_check_goal'((G1,G2),G0) :- !,$iso_check_goal14,374 -'$iso_check_goal'((G1,G2),G0) :- !,$iso_check_goal14,374 -'$iso_check_goal'((G1,G2),G0) :- !,$iso_check_goal14,374 -'$iso_check_goal'((G1;G2),G0) :- !,$iso_check_goal17,484 -'$iso_check_goal'((G1;G2),G0) :- !,$iso_check_goal17,484 -'$iso_check_goal'((G1;G2),G0) :- !,$iso_check_goal17,484 -'$iso_check_goal'((G1->G2),G0) :- !,$iso_check_goal20,594 -'$iso_check_goal'((G1->G2),G0) :- !,$iso_check_goal20,594 -'$iso_check_goal'((G1->G2),G0) :- !,$iso_check_goal20,594 -'$iso_check_goal'(!,_) :- !.$iso_check_goal23,707 -'$iso_check_goal'(!,_) :- !.$iso_check_goal23,707 -'$iso_check_goal'(!,_) :- !.$iso_check_goal23,707 -'$iso_check_goal'((G1|G2),G0) :-$iso_check_goal24,736 -'$iso_check_goal'((G1|G2),G0) :-$iso_check_goal24,736 -'$iso_check_goal'((G1|G2),G0) :-$iso_check_goal24,736 -'$iso_check_goal'((G1|G2),G0) :- !,$iso_check_goal27,875 -'$iso_check_goal'((G1|G2),G0) :- !,$iso_check_goal27,875 -'$iso_check_goal'((G1|G2),G0) :- !,$iso_check_goal27,875 -'$iso_check_goal'(G,G0) :- $iso_check_goal30,985 -'$iso_check_goal'(G,G0) :- $iso_check_goal30,985 -'$iso_check_goal'(G,G0) :- $iso_check_goal30,985 -'$iso_check_goal'(_,_).$iso_check_goal40,1198 -'$iso_check_goal'(_,_)./p,predicate,predicate definition40,1198 -'$iso_check_goal'(_,_).$iso_check_goal40,1198 -'$iso_check_a_goal'(V,_,G) :-$iso_check_a_goal42,1223 -'$iso_check_a_goal'(V,_,G) :-$iso_check_a_goal42,1223 -'$iso_check_a_goal'(V,_,G) :-$iso_check_a_goal42,1223 -'$iso_check_a_goal'(V,E,G) :-$iso_check_a_goal45,1308 -'$iso_check_a_goal'(V,E,G) :-$iso_check_a_goal45,1308 -'$iso_check_a_goal'(V,E,G) :-$iso_check_a_goal45,1308 -'$iso_check_a_goal'(_:G,E,G0) :- !,$iso_check_a_goal48,1399 -'$iso_check_a_goal'(_:G,E,G0) :- !,$iso_check_a_goal48,1399 -'$iso_check_a_goal'(_:G,E,G0) :- !,$iso_check_a_goal48,1399 -'$iso_check_a_goal'((G1,G2),E,G0) :- !,$iso_check_a_goal50,1465 -'$iso_check_a_goal'((G1,G2),E,G0) :- !,$iso_check_a_goal50,1465 -'$iso_check_a_goal'((G1,G2),E,G0) :- !,$iso_check_a_goal50,1465 -'$iso_check_a_goal'((G1;G2),E,G0) :- !,$iso_check_a_goal53,1581 -'$iso_check_a_goal'((G1;G2),E,G0) :- !,$iso_check_a_goal53,1581 -'$iso_check_a_goal'((G1;G2),E,G0) :- !,$iso_check_a_goal53,1581 -'$iso_check_a_goal'((G1->G2),E,G0) :- !,$iso_check_a_goal56,1697 -'$iso_check_a_goal'((G1->G2),E,G0) :- !,$iso_check_a_goal56,1697 -'$iso_check_a_goal'((G1->G2),E,G0) :- !,$iso_check_a_goal56,1697 -'$iso_check_a_goal'(!,_,_) :- !.$iso_check_a_goal59,1814 -'$iso_check_a_goal'(!,_,_) :- !.$iso_check_a_goal59,1814 -'$iso_check_a_goal'(!,_,_) :- !.$iso_check_a_goal59,1814 -'$iso_check_a_goal'((_|_),E,G0) :-$iso_check_a_goal60,1847 -'$iso_check_a_goal'((_|_),E,G0) :-$iso_check_a_goal60,1847 -'$iso_check_a_goal'((_|_),E,G0) :-$iso_check_a_goal60,1847 -'$iso_check_a_goal'((_|_),_,_) :- !.$iso_check_a_goal63,1981 -'$iso_check_a_goal'((_|_),_,_) :- !.$iso_check_a_goal63,1981 -'$iso_check_a_goal'((_|_),_,_) :- !.$iso_check_a_goal63,1981 -'$iso_check_a_goal'(G,_,G0) :- $iso_check_a_goal64,2018 -'$iso_check_a_goal'(G,_,G0) :- $iso_check_a_goal64,2018 -'$iso_check_a_goal'(G,_,G0) :- $iso_check_a_goal64,2018 -'$iso_check_a_goal'(_,_,_).$iso_check_a_goal74,2238 -'$iso_check_a_goal'(_,_,_)./p,predicate,predicate definition74,2238 -'$iso_check_a_goal'(_,_,_).$iso_check_a_goal74,2238 -'$check_iso_strict_clause'((_:-B)) :- !,$check_iso_strict_clause76,2267 -'$check_iso_strict_clause'((_:-B)) :- !,$check_iso_strict_clause76,2267 -'$check_iso_strict_clause'((_:-B)) :- !,$check_iso_strict_clause76,2267 -'$check_iso_strict_clause'(_).$check_iso_strict_clause78,2338 -'$check_iso_strict_clause'(_)./p,predicate,predicate definition78,2338 -'$check_iso_strict_clause'(_).$check_iso_strict_clause78,2338 -'$check_iso_strict_body'((B1,B2)) :- !,$check_iso_strict_body80,2370 -'$check_iso_strict_body'((B1,B2)) :- !,$check_iso_strict_body80,2370 -'$check_iso_strict_body'((B1,B2)) :- !,$check_iso_strict_body80,2370 -'$check_iso_strict_body'((B1;B2)) :- !,$check_iso_strict_body83,2472 -'$check_iso_strict_body'((B1;B2)) :- !,$check_iso_strict_body83,2472 -'$check_iso_strict_body'((B1;B2)) :- !,$check_iso_strict_body83,2472 -'$check_iso_strict_body'((B1->B2)) :- !,$check_iso_strict_body86,2574 -'$check_iso_strict_body'((B1->B2)) :- !,$check_iso_strict_body86,2574 -'$check_iso_strict_body'((B1->B2)) :- !,$check_iso_strict_body86,2574 -'$check_iso_strict_body'(B) :-$check_iso_strict_body89,2677 -'$check_iso_strict_body'(B) :-$check_iso_strict_body89,2677 -'$check_iso_strict_body'(B) :-$check_iso_strict_body89,2677 -'$check_iso_strict_goal'(G) :-$check_iso_strict_goal92,2739 -'$check_iso_strict_goal'(G) :-$check_iso_strict_goal92,2739 -'$check_iso_strict_goal'(G) :-$check_iso_strict_goal92,2739 -'$check_iso_strict_goal'(_).$check_iso_strict_goal95,2838 -'$check_iso_strict_goal'(_)./p,predicate,predicate definition95,2838 -'$check_iso_strict_goal'(_).$check_iso_strict_goal95,2838 -'$check_iso_system_goal'(G) :-$check_iso_system_goal98,2869 -'$check_iso_system_goal'(G) :-$check_iso_system_goal98,2869 -'$check_iso_system_goal'(G) :-$check_iso_system_goal98,2869 -'$check_iso_system_goal'(G) :-$check_iso_system_goal100,2923 -'$check_iso_system_goal'(G) :-$check_iso_system_goal100,2923 -'$check_iso_system_goal'(G) :-$check_iso_system_goal100,2923 -'$iso_builtin'(abolish(_)).$iso_builtin103,3007 -'$iso_builtin'(abolish(_))./p,predicate,predicate definition103,3007 -'$iso_builtin'(abolish(_)).$iso_builtin103,3007 -'$iso_builtin'(acylic_term(_)).$iso_builtin104,3035 -'$iso_builtin'(acylic_term(_))./p,predicate,predicate definition104,3035 -'$iso_builtin'(acylic_term(_)).$iso_builtin104,3035 -'$iso_builtin'(arg(_,_,_)).$iso_builtin105,3067 -'$iso_builtin'(arg(_,_,_))./p,predicate,predicate definition105,3067 -'$iso_builtin'(arg(_,_,_)).$iso_builtin105,3067 -'$iso_builtin'(_=:=_).$iso_builtin106,3095 -'$iso_builtin'(_=:=_)./p,predicate,predicate definition106,3095 -'$iso_builtin'(_=:=_).$iso_builtin106,3095 -'$iso_builtin'(_=\=_).$iso_builtin107,3118 -'$iso_builtin'(_=\=_)./p,predicate,predicate definition107,3118 -'$iso_builtin'(_=\=_).$iso_builtin107,3118 -'$iso_builtin'(_>_).$iso_builtin108,3141 -'$iso_builtin'(_>_)./p,predicate,predicate definition108,3141 -'$iso_builtin'(_>_).$iso_builtin108,3141 -'$iso_builtin'(_>=_).$iso_builtin109,3162 -'$iso_builtin'(_>=_)./p,predicate,predicate definition109,3162 -'$iso_builtin'(_>=_).$iso_builtin109,3162 -'$iso_builtin'(_<_).$iso_builtin110,3184 -'$iso_builtin'(_<_)./p,predicate,predicate definition110,3184 -'$iso_builtin'(_<_).$iso_builtin110,3184 -'$iso_builtin'(_=<_).$iso_builtin111,3205 -'$iso_builtin'(_=<_)./p,predicate,predicate definition111,3205 -'$iso_builtin'(_=<_).$iso_builtin111,3205 -'$iso_builtin'(asserta(_)).$iso_builtin112,3227 -'$iso_builtin'(asserta(_))./p,predicate,predicate definition112,3227 -'$iso_builtin'(asserta(_)).$iso_builtin112,3227 -'$iso_builtin'(assertz(_)).$iso_builtin113,3255 -'$iso_builtin'(assertz(_))./p,predicate,predicate definition113,3255 -'$iso_builtin'(assertz(_)).$iso_builtin113,3255 -'$iso_builtin'(at_end_of_stream).$iso_builtin114,3283 -'$iso_builtin'(at_end_of_stream)./p,predicate,predicate definition114,3283 -'$iso_builtin'(at_end_of_stream).$iso_builtin114,3283 -'$iso_builtin'(at_end_of_stream(_)).$iso_builtin115,3317 -'$iso_builtin'(at_end_of_stream(_))./p,predicate,predicate definition115,3317 -'$iso_builtin'(at_end_of_stream(_)).$iso_builtin115,3317 -'$iso_builtin'(atom(_)).$iso_builtin116,3354 -'$iso_builtin'(atom(_))./p,predicate,predicate definition116,3354 -'$iso_builtin'(atom(_)).$iso_builtin116,3354 -'$iso_builtin'(atom_chars(_,_)).$iso_builtin117,3379 -'$iso_builtin'(atom_chars(_,_))./p,predicate,predicate definition117,3379 -'$iso_builtin'(atom_chars(_,_)).$iso_builtin117,3379 -'$iso_builtin'(atom_codes(_,_)).$iso_builtin118,3412 -'$iso_builtin'(atom_codes(_,_))./p,predicate,predicate definition118,3412 -'$iso_builtin'(atom_codes(_,_)).$iso_builtin118,3412 -'$iso_builtin'(atom_concat(_,_,_)).$iso_builtin119,3445 -'$iso_builtin'(atom_concat(_,_,_))./p,predicate,predicate definition119,3445 -'$iso_builtin'(atom_concat(_,_,_)).$iso_builtin119,3445 -'$iso_builtin'(atom_length(_,_)).$iso_builtin120,3481 -'$iso_builtin'(atom_length(_,_))./p,predicate,predicate definition120,3481 -'$iso_builtin'(atom_length(_,_)).$iso_builtin120,3481 -'$iso_builtin'(atomic(_)).$iso_builtin121,3515 -'$iso_builtin'(atomic(_))./p,predicate,predicate definition121,3515 -'$iso_builtin'(atomic(_)).$iso_builtin121,3515 -'$iso_builtin'(bagof(_,_,_)).$iso_builtin122,3542 -'$iso_builtin'(bagof(_,_,_))./p,predicate,predicate definition122,3542 -'$iso_builtin'(bagof(_,_,_)).$iso_builtin122,3542 -'$iso_builtin'(call(_)).$iso_builtin123,3572 -'$iso_builtin'(call(_))./p,predicate,predicate definition123,3572 -'$iso_builtin'(call(_)).$iso_builtin123,3572 -'$iso_builtin'(call(_,_)).$iso_builtin124,3597 -'$iso_builtin'(call(_,_))./p,predicate,predicate definition124,3597 -'$iso_builtin'(call(_,_)).$iso_builtin124,3597 -'$iso_builtin'(call(_,_,_)).$iso_builtin125,3624 -'$iso_builtin'(call(_,_,_))./p,predicate,predicate definition125,3624 -'$iso_builtin'(call(_,_,_)).$iso_builtin125,3624 -'$iso_builtin'(call(_,_,_,_)).$iso_builtin126,3653 -'$iso_builtin'(call(_,_,_,_))./p,predicate,predicate definition126,3653 -'$iso_builtin'(call(_,_,_,_)).$iso_builtin126,3653 -'$iso_builtin'(call(_,_,_,_,_)).$iso_builtin127,3684 -'$iso_builtin'(call(_,_,_,_,_))./p,predicate,predicate definition127,3684 -'$iso_builtin'(call(_,_,_,_,_)).$iso_builtin127,3684 -'$iso_builtin'(call(_,_,_,_,_,_)).$iso_builtin128,3717 -'$iso_builtin'(call(_,_,_,_,_,_))./p,predicate,predicate definition128,3717 -'$iso_builtin'(call(_,_,_,_,_,_)).$iso_builtin128,3717 -'$iso_builtin'(call(_,_,_,_,_,_,_)).$iso_builtin129,3752 -'$iso_builtin'(call(_,_,_,_,_,_,_))./p,predicate,predicate definition129,3752 -'$iso_builtin'(call(_,_,_,_,_,_,_)).$iso_builtin129,3752 -'$iso_builtin'(call(_,_,_,_,_,_,_,_)).$iso_builtin130,3789 -'$iso_builtin'(call(_,_,_,_,_,_,_,_))./p,predicate,predicate definition130,3789 -'$iso_builtin'(call(_,_,_,_,_,_,_,_)).$iso_builtin130,3789 -'$iso_builtin'(callable(_)).$iso_builtin131,3828 -'$iso_builtin'(callable(_))./p,predicate,predicate definition131,3828 -'$iso_builtin'(callable(_)).$iso_builtin131,3828 -'$iso_builtin'(catch(_,_,_)).$iso_builtin132,3857 -'$iso_builtin'(catch(_,_,_))./p,predicate,predicate definition132,3857 -'$iso_builtin'(catch(_,_,_)).$iso_builtin132,3857 -'$iso_builtin'(char_code(_,_)).$iso_builtin133,3887 -'$iso_builtin'(char_code(_,_))./p,predicate,predicate definition133,3887 -'$iso_builtin'(char_code(_,_)).$iso_builtin133,3887 -'$iso_builtin'(char_conversion(_,_)).$iso_builtin134,3919 -'$iso_builtin'(char_conversion(_,_))./p,predicate,predicate definition134,3919 -'$iso_builtin'(char_conversion(_,_)).$iso_builtin134,3919 -'$iso_builtin'(clause(_,_)).$iso_builtin135,3957 -'$iso_builtin'(clause(_,_))./p,predicate,predicate definition135,3957 -'$iso_builtin'(clause(_,_)).$iso_builtin135,3957 -'$iso_builtin'(close(_)).$iso_builtin136,3986 -'$iso_builtin'(close(_))./p,predicate,predicate definition136,3986 -'$iso_builtin'(close(_)).$iso_builtin136,3986 -'$iso_builtin'(close(_,_)).$iso_builtin137,4012 -'$iso_builtin'(close(_,_))./p,predicate,predicate definition137,4012 -'$iso_builtin'(close(_,_)).$iso_builtin137,4012 -'$iso_builtin'(compare(_,_,_)).$iso_builtin138,4040 -'$iso_builtin'(compare(_,_,_))./p,predicate,predicate definition138,4040 -'$iso_builtin'(compare(_,_,_)).$iso_builtin138,4040 -'$iso_builtin'(compound(_)).$iso_builtin139,4072 -'$iso_builtin'(compound(_))./p,predicate,predicate definition139,4072 -'$iso_builtin'(compound(_)).$iso_builtin139,4072 -'$iso_builtin'((_,_)).$iso_builtin140,4101 -'$iso_builtin'((_,_))./p,predicate,predicate definition140,4101 -'$iso_builtin'((_,_)).$iso_builtin140,4101 -'$iso_builtin'(copy_term(_,_)).$iso_builtin141,4124 -'$iso_builtin'(copy_term(_,_))./p,predicate,predicate definition141,4124 -'$iso_builtin'(copy_term(_,_)).$iso_builtin141,4124 -'$iso_builtin'(current_char_conversion(_,_)).$iso_builtin142,4156 -'$iso_builtin'(current_char_conversion(_,_))./p,predicate,predicate definition142,4156 -'$iso_builtin'(current_char_conversion(_,_)).$iso_builtin142,4156 -'$iso_builtin'(current_input(_)).$iso_builtin143,4202 -'$iso_builtin'(current_input(_))./p,predicate,predicate definition143,4202 -'$iso_builtin'(current_input(_)).$iso_builtin143,4202 -'$iso_builtin'(current_op(_,_,_)).$iso_builtin144,4236 -'$iso_builtin'(current_op(_,_,_))./p,predicate,predicate definition144,4236 -'$iso_builtin'(current_op(_,_,_)).$iso_builtin144,4236 -'$iso_builtin'(current_output(_)).$iso_builtin145,4271 -'$iso_builtin'(current_output(_))./p,predicate,predicate definition145,4271 -'$iso_builtin'(current_output(_)).$iso_builtin145,4271 -'$iso_builtin'(current_predicate(_)).$iso_builtin146,4306 -'$iso_builtin'(current_predicate(_))./p,predicate,predicate definition146,4306 -'$iso_builtin'(current_predicate(_)).$iso_builtin146,4306 -'$iso_builtin'(current_prolog_flag(_,_)).$iso_builtin147,4344 -'$iso_builtin'(current_prolog_flag(_,_))./p,predicate,predicate definition147,4344 -'$iso_builtin'(current_prolog_flag(_,_)).$iso_builtin147,4344 -'$iso_builtin'(!).$iso_builtin148,4386 -'$iso_builtin'(!)./p,predicate,predicate definition148,4386 -'$iso_builtin'(!).$iso_builtin148,4386 -'$iso_builtin'((_;_)).$iso_builtin149,4405 -'$iso_builtin'((_;_))./p,predicate,predicate definition149,4405 -'$iso_builtin'((_;_)).$iso_builtin149,4405 -'$iso_builtin'(fail).$iso_builtin150,4428 -'$iso_builtin'(fail)./p,predicate,predicate definition150,4428 -'$iso_builtin'(fail).$iso_builtin150,4428 -'$iso_builtin'(false).$iso_builtin151,4450 -'$iso_builtin'(false)./p,predicate,predicate definition151,4450 -'$iso_builtin'(false).$iso_builtin151,4450 -'$iso_builtin'(findall(_,_,_)).$iso_builtin152,4473 -'$iso_builtin'(findall(_,_,_))./p,predicate,predicate definition152,4473 -'$iso_builtin'(findall(_,_,_)).$iso_builtin152,4473 -'$iso_builtin'(float(_)).$iso_builtin153,4505 -'$iso_builtin'(float(_))./p,predicate,predicate definition153,4505 -'$iso_builtin'(float(_)).$iso_builtin153,4505 -'$iso_builtin'(abort).$iso_builtin154,4531 -'$iso_builtin'(abort)./p,predicate,predicate definition154,4531 -'$iso_builtin'(abort).$iso_builtin154,4531 -'$iso_builtin'(flush_output).$iso_builtin155,4554 -'$iso_builtin'(flush_output)./p,predicate,predicate definition155,4554 -'$iso_builtin'(flush_output).$iso_builtin155,4554 -'$iso_builtin'(flush_output(_)).$iso_builtin156,4584 -'$iso_builtin'(flush_output(_))./p,predicate,predicate definition156,4584 -'$iso_builtin'(flush_output(_)).$iso_builtin156,4584 -'$iso_builtin'(functor(_,_,_)).$iso_builtin157,4617 -'$iso_builtin'(functor(_,_,_))./p,predicate,predicate definition157,4617 -'$iso_builtin'(functor(_,_,_)).$iso_builtin157,4617 -'$iso_builtin'(get_byte(_)).$iso_builtin158,4649 -'$iso_builtin'(get_byte(_))./p,predicate,predicate definition158,4649 -'$iso_builtin'(get_byte(_)).$iso_builtin158,4649 -'$iso_builtin'(get_byte(_,_)).$iso_builtin159,4678 -'$iso_builtin'(get_byte(_,_))./p,predicate,predicate definition159,4678 -'$iso_builtin'(get_byte(_,_)).$iso_builtin159,4678 -'$iso_builtin'(get_char(_)).$iso_builtin160,4709 -'$iso_builtin'(get_char(_))./p,predicate,predicate definition160,4709 -'$iso_builtin'(get_char(_)).$iso_builtin160,4709 -'$iso_builtin'(get_char(_,_)).$iso_builtin161,4738 -'$iso_builtin'(get_char(_,_))./p,predicate,predicate definition161,4738 -'$iso_builtin'(get_char(_,_)).$iso_builtin161,4738 -'$iso_builtin'(get_code(_)).$iso_builtin162,4769 -'$iso_builtin'(get_code(_))./p,predicate,predicate definition162,4769 -'$iso_builtin'(get_code(_)).$iso_builtin162,4769 -'$iso_builtin'(get_code(_,_)).$iso_builtin163,4798 -'$iso_builtin'(get_code(_,_))./p,predicate,predicate definition163,4798 -'$iso_builtin'(get_code(_,_)).$iso_builtin163,4798 -'$iso_builtin'(ground(_)).$iso_builtin164,4829 -'$iso_builtin'(ground(_))./p,predicate,predicate definition164,4829 -'$iso_builtin'(ground(_)).$iso_builtin164,4829 -'$iso_builtin'(halt).$iso_builtin165,4856 -'$iso_builtin'(halt)./p,predicate,predicate definition165,4856 -'$iso_builtin'(halt).$iso_builtin165,4856 -'$iso_builtin'(halt(_)).$iso_builtin166,4878 -'$iso_builtin'(halt(_))./p,predicate,predicate definition166,4878 -'$iso_builtin'(halt(_)).$iso_builtin166,4878 -'$iso_builtin'((_->_)).$iso_builtin167,4903 -'$iso_builtin'((_->_))./p,predicate,predicate definition167,4903 -'$iso_builtin'((_->_)).$iso_builtin167,4903 -'$iso_builtin'(integer(_)).$iso_builtin168,4927 -'$iso_builtin'(integer(_))./p,predicate,predicate definition168,4927 -'$iso_builtin'(integer(_)).$iso_builtin168,4927 -'$iso_builtin'(_ is _).$iso_builtin169,4955 -'$iso_builtin'(_ is _)./p,predicate,predicate definition169,4955 -'$iso_builtin'(_ is _).$iso_builtin169,4955 -'$iso_builtin'(keysort(_,_)).$iso_builtin170,4979 -'$iso_builtin'(keysort(_,_))./p,predicate,predicate definition170,4979 -'$iso_builtin'(keysort(_,_)).$iso_builtin170,4979 -'$iso_builtin'(nl).$iso_builtin171,5009 -'$iso_builtin'(nl)./p,predicate,predicate definition171,5009 -'$iso_builtin'(nl).$iso_builtin171,5009 -'$iso_builtin'(nl(_)).$iso_builtin172,5029 -'$iso_builtin'(nl(_))./p,predicate,predicate definition172,5029 -'$iso_builtin'(nl(_)).$iso_builtin172,5029 -'$iso_builtin'(nonvar(_)).$iso_builtin173,5052 -'$iso_builtin'(nonvar(_))./p,predicate,predicate definition173,5052 -'$iso_builtin'(nonvar(_)).$iso_builtin173,5052 -'$iso_builtin'(\+(_)).$iso_builtin174,5079 -'$iso_builtin'(\+(_))./p,predicate,predicate definition174,5079 -'$iso_builtin'(\+(_)).$iso_builtin174,5079 -'$iso_builtin'(number(_)).$iso_builtin175,5102 -'$iso_builtin'(number(_))./p,predicate,predicate definition175,5102 -'$iso_builtin'(number(_)).$iso_builtin175,5102 -'$iso_builtin'(number_chars(_,_)).$iso_builtin176,5129 -'$iso_builtin'(number_chars(_,_))./p,predicate,predicate definition176,5129 -'$iso_builtin'(number_chars(_,_)).$iso_builtin176,5129 -'$iso_builtin'(number_codes(_,_)).$iso_builtin177,5164 -'$iso_builtin'(number_codes(_,_))./p,predicate,predicate definition177,5164 -'$iso_builtin'(number_codes(_,_)).$iso_builtin177,5164 -'$iso_builtin'(once(_)).$iso_builtin178,5199 -'$iso_builtin'(once(_))./p,predicate,predicate definition178,5199 -'$iso_builtin'(once(_)).$iso_builtin178,5199 -'$iso_builtin'(op(_,_,_)).$iso_builtin179,5224 -'$iso_builtin'(op(_,_,_))./p,predicate,predicate definition179,5224 -'$iso_builtin'(op(_,_,_)).$iso_builtin179,5224 -'$iso_builtin'(open(_,_,_)).$iso_builtin180,5251 -'$iso_builtin'(open(_,_,_))./p,predicate,predicate definition180,5251 -'$iso_builtin'(open(_,_,_)).$iso_builtin180,5251 -'$iso_builtin'(open(_,_,_,_)).$iso_builtin181,5280 -'$iso_builtin'(open(_,_,_,_))./p,predicate,predicate definition181,5280 -'$iso_builtin'(open(_,_,_,_)).$iso_builtin181,5280 -'$iso_builtin'(peek_byte(_)).$iso_builtin182,5311 -'$iso_builtin'(peek_byte(_))./p,predicate,predicate definition182,5311 -'$iso_builtin'(peek_byte(_)).$iso_builtin182,5311 -'$iso_builtin'(peek_byte(_,_)).$iso_builtin183,5341 -'$iso_builtin'(peek_byte(_,_))./p,predicate,predicate definition183,5341 -'$iso_builtin'(peek_byte(_,_)).$iso_builtin183,5341 -'$iso_builtin'(peek_char(_)).$iso_builtin184,5373 -'$iso_builtin'(peek_char(_))./p,predicate,predicate definition184,5373 -'$iso_builtin'(peek_char(_)).$iso_builtin184,5373 -'$iso_builtin'(peek_char(_,_)).$iso_builtin185,5403 -'$iso_builtin'(peek_char(_,_))./p,predicate,predicate definition185,5403 -'$iso_builtin'(peek_char(_,_)).$iso_builtin185,5403 -'$iso_builtin'(peek_code(_)).$iso_builtin186,5435 -'$iso_builtin'(peek_code(_))./p,predicate,predicate definition186,5435 -'$iso_builtin'(peek_code(_)).$iso_builtin186,5435 -'$iso_builtin'(peek_code(_,_)).$iso_builtin187,5465 -'$iso_builtin'(peek_code(_,_))./p,predicate,predicate definition187,5465 -'$iso_builtin'(peek_code(_,_)).$iso_builtin187,5465 -'$iso_builtin'(put_byte(_)).$iso_builtin188,5497 -'$iso_builtin'(put_byte(_))./p,predicate,predicate definition188,5497 -'$iso_builtin'(put_byte(_)).$iso_builtin188,5497 -'$iso_builtin'(put_byte(_,_)).$iso_builtin189,5526 -'$iso_builtin'(put_byte(_,_))./p,predicate,predicate definition189,5526 -'$iso_builtin'(put_byte(_,_)).$iso_builtin189,5526 -'$iso_builtin'(put_char(_)).$iso_builtin190,5557 -'$iso_builtin'(put_char(_))./p,predicate,predicate definition190,5557 -'$iso_builtin'(put_char(_)).$iso_builtin190,5557 -'$iso_builtin'(put_char(_,_)).$iso_builtin191,5586 -'$iso_builtin'(put_char(_,_))./p,predicate,predicate definition191,5586 -'$iso_builtin'(put_char(_,_)).$iso_builtin191,5586 -'$iso_builtin'(put_code(_)).$iso_builtin192,5617 -'$iso_builtin'(put_code(_))./p,predicate,predicate definition192,5617 -'$iso_builtin'(put_code(_)).$iso_builtin192,5617 -'$iso_builtin'(put_code(_,_)).$iso_builtin193,5646 -'$iso_builtin'(put_code(_,_))./p,predicate,predicate definition193,5646 -'$iso_builtin'(put_code(_,_)).$iso_builtin193,5646 -'$iso_builtin'(read(_)).$iso_builtin194,5677 -'$iso_builtin'(read(_))./p,predicate,predicate definition194,5677 -'$iso_builtin'(read(_)).$iso_builtin194,5677 -'$iso_builtin'(read(_,_)).$iso_builtin195,5702 -'$iso_builtin'(read(_,_))./p,predicate,predicate definition195,5702 -'$iso_builtin'(read(_,_)).$iso_builtin195,5702 -'$iso_builtin'(read_term(_,_)).$iso_builtin196,5729 -'$iso_builtin'(read_term(_,_))./p,predicate,predicate definition196,5729 -'$iso_builtin'(read_term(_,_)).$iso_builtin196,5729 -'$iso_builtin'(read_term(_,_,_)).$iso_builtin197,5761 -'$iso_builtin'(read_term(_,_,_))./p,predicate,predicate definition197,5761 -'$iso_builtin'(read_term(_,_,_)).$iso_builtin197,5761 -'$iso_builtin'(repeat).$iso_builtin198,5795 -'$iso_builtin'(repeat)./p,predicate,predicate definition198,5795 -'$iso_builtin'(repeat).$iso_builtin198,5795 -'$iso_builtin'(retract(_)).$iso_builtin199,5819 -'$iso_builtin'(retract(_))./p,predicate,predicate definition199,5819 -'$iso_builtin'(retract(_)).$iso_builtin199,5819 -'$iso_builtin'(retractall(_)).$iso_builtin200,5847 -'$iso_builtin'(retractall(_))./p,predicate,predicate definition200,5847 -'$iso_builtin'(retractall(_)).$iso_builtin200,5847 -'$iso_builtin'(set_input(_)).$iso_builtin201,5878 -'$iso_builtin'(set_input(_))./p,predicate,predicate definition201,5878 -'$iso_builtin'(set_input(_)).$iso_builtin201,5878 -'$iso_builtin'(set_output(_)).$iso_builtin202,5908 -'$iso_builtin'(set_output(_))./p,predicate,predicate definition202,5908 -'$iso_builtin'(set_output(_)).$iso_builtin202,5908 -'$iso_builtin'(set_prolog_flag(_,_)).$iso_builtin203,5939 -'$iso_builtin'(set_prolog_flag(_,_))./p,predicate,predicate definition203,5939 -'$iso_builtin'(set_prolog_flag(_,_)).$iso_builtin203,5939 -'$iso_builtin'(set_stream_position(_,_)).$iso_builtin204,5977 -'$iso_builtin'(set_stream_position(_,_))./p,predicate,predicate definition204,5977 -'$iso_builtin'(set_stream_position(_,_)).$iso_builtin204,5977 -'$iso_builtin'(setof(_,_,_)).$iso_builtin205,6019 -'$iso_builtin'(setof(_,_,_))./p,predicate,predicate definition205,6019 -'$iso_builtin'(setof(_,_,_)).$iso_builtin205,6019 -'$iso_builtin'(sort(_,_)).$iso_builtin206,6049 -'$iso_builtin'(sort(_,_))./p,predicate,predicate definition206,6049 -'$iso_builtin'(sort(_,_)).$iso_builtin206,6049 -'$iso_builtin'(stream_property(_,_)).$iso_builtin207,6076 -'$iso_builtin'(stream_property(_,_))./p,predicate,predicate definition207,6076 -'$iso_builtin'(stream_property(_,_)).$iso_builtin207,6076 -'$iso_builtin'(sub_atom(_,_,_,_,_)).$iso_builtin208,6114 -'$iso_builtin'(sub_atom(_,_,_,_,_))./p,predicate,predicate definition208,6114 -'$iso_builtin'(sub_atom(_,_,_,_,_)).$iso_builtin208,6114 -'$iso_builtin'(subsumes_term(_,_)).$iso_builtin209,6151 -'$iso_builtin'(subsumes_term(_,_))./p,predicate,predicate definition209,6151 -'$iso_builtin'(subsumes_term(_,_)).$iso_builtin209,6151 -'$iso_builtin'(_@>_).$iso_builtin210,6187 -'$iso_builtin'(_@>_)./p,predicate,predicate definition210,6187 -'$iso_builtin'(_@>_).$iso_builtin210,6187 -'$iso_builtin'(_@>=_).$iso_builtin211,6209 -'$iso_builtin'(_@>=_)./p,predicate,predicate definition211,6209 -'$iso_builtin'(_@>=_).$iso_builtin211,6209 -'$iso_builtin'(_==_).$iso_builtin212,6232 -'$iso_builtin'(_==_)./p,predicate,predicate definition212,6232 -'$iso_builtin'(_==_).$iso_builtin212,6232 -'$iso_builtin'(_@<_).$iso_builtin213,6254 -'$iso_builtin'(_@<_)./p,predicate,predicate definition213,6254 -'$iso_builtin'(_@<_).$iso_builtin213,6254 -'$iso_builtin'(_@=<_).$iso_builtin214,6276 -'$iso_builtin'(_@=<_)./p,predicate,predicate definition214,6276 -'$iso_builtin'(_@=<_).$iso_builtin214,6276 -'$iso_builtin'(_\==_).$iso_builtin215,6299 -'$iso_builtin'(_\==_)./p,predicate,predicate definition215,6299 -'$iso_builtin'(_\==_).$iso_builtin215,6299 -'$iso_builtin'(term_variables(_,_)).$iso_builtin216,6322 -'$iso_builtin'(term_variables(_,_))./p,predicate,predicate definition216,6322 -'$iso_builtin'(term_variables(_,_)).$iso_builtin216,6322 -'$iso_builtin'(throw(_)).$iso_builtin217,6359 -'$iso_builtin'(throw(_))./p,predicate,predicate definition217,6359 -'$iso_builtin'(throw(_)).$iso_builtin217,6359 -'$iso_builtin'(true).$iso_builtin218,6385 -'$iso_builtin'(true)./p,predicate,predicate definition218,6385 -'$iso_builtin'(true).$iso_builtin218,6385 -'$iso_builtin'(_\=_).$iso_builtin219,6407 -'$iso_builtin'(_\=_)./p,predicate,predicate definition219,6407 -'$iso_builtin'(_\=_).$iso_builtin219,6407 -'$iso_builtin'(_=_).$iso_builtin220,6429 -'$iso_builtin'(_=_)./p,predicate,predicate definition220,6429 -'$iso_builtin'(_=_).$iso_builtin220,6429 -'$iso_builtin'(unify_with_occurs_check(_,_)).$iso_builtin221,6450 -'$iso_builtin'(unify_with_occurs_check(_,_))./p,predicate,predicate definition221,6450 -'$iso_builtin'(unify_with_occurs_check(_,_)).$iso_builtin221,6450 -'$iso_builtin'(_384=.._385).$iso_builtin222,6496 -'$iso_builtin'(_384=.._385)./p,predicate,predicate definition222,6496 -'$iso_builtin'(_384=.._385).$iso_builtin222,6496 -'$iso_builtin'(var(_)).$iso_builtin223,6525 -'$iso_builtin'(var(_))./p,predicate,predicate definition223,6525 -'$iso_builtin'(var(_)).$iso_builtin223,6525 -'$iso_builtin'(write(_)).$iso_builtin224,6549 -'$iso_builtin'(write(_))./p,predicate,predicate definition224,6549 -'$iso_builtin'(write(_)).$iso_builtin224,6549 -'$iso_builtin'(write(_,_)).$iso_builtin225,6575 -'$iso_builtin'(write(_,_))./p,predicate,predicate definition225,6575 -'$iso_builtin'(write(_,_)).$iso_builtin225,6575 -'$iso_builtin'(write_canonical(_)).$iso_builtin226,6603 -'$iso_builtin'(write_canonical(_))./p,predicate,predicate definition226,6603 -'$iso_builtin'(write_canonical(_)).$iso_builtin226,6603 -'$iso_builtin'(write_canonical(_,_)).$iso_builtin227,6639 -'$iso_builtin'(write_canonical(_,_))./p,predicate,predicate definition227,6639 -'$iso_builtin'(write_canonical(_,_)).$iso_builtin227,6639 -'$iso_builtin'(write_term(_,_)).$iso_builtin228,6677 -'$iso_builtin'(write_term(_,_))./p,predicate,predicate definition228,6677 -'$iso_builtin'(write_term(_,_)).$iso_builtin228,6677 -'$iso_builtin'(write_term(_,_,_)).$iso_builtin229,6710 -'$iso_builtin'(write_term(_,_,_))./p,predicate,predicate definition229,6710 -'$iso_builtin'(write_term(_,_,_)).$iso_builtin229,6710 -'$iso_builtin'(writeq(_)).$iso_builtin230,6745 -'$iso_builtin'(writeq(_))./p,predicate,predicate definition230,6745 -'$iso_builtin'(writeq(_)).$iso_builtin230,6745 -'$iso_builtin'(writeq(_,_)).$iso_builtin231,6772 -'$iso_builtin'(writeq(_,_))./p,predicate,predicate definition231,6772 -'$iso_builtin'(writeq(_,_)).$iso_builtin231,6772 - -pl/swi.yap,1627 -prolog:file_name_on_path(Path, ShortId) :-file_name_on_path14,359 -prolog:file_name_on_path(Path, ShortId) :-file_name_on_path14,359 -prolog:file_alias_path(Alias, Dir) :-file_alias_path30,703 -prolog:file_alias_path(Alias, Dir) :-file_alias_path30,703 -build_alias_cache :-build_alias_cache41,920 -search_path('.', Here, 999, DirLen) :-search_path49,1166 -search_path('.', Here, 999, DirLen) :-search_path49,1166 -search_path('.', Here, 999, DirLen) :-search_path49,1166 -search_path(Alias, Dir, AliasLen, DirLen) :-search_path53,1295 -search_path(Alias, Dir, AliasLen, DirLen) :-search_path53,1295 -search_path(Alias, Dir, AliasLen, DirLen) :-search_path53,1295 -ensure_slash(Dir, Dir) :-ensure_slash68,1702 -ensure_slash(Dir, Dir) :-ensure_slash68,1702 -ensure_slash(Dir, Dir) :-ensure_slash68,1702 -ensure_slash(Dir0, Dir) :-ensure_slash70,1759 -ensure_slash(Dir0, Dir) :-ensure_slash70,1759 -ensure_slash(Dir0, Dir) :-ensure_slash70,1759 -reverse(List, Reversed) :-reverse82,1959 -reverse(List, Reversed) :-reverse82,1959 -reverse(List, Reversed) :-reverse82,1959 -reverse([], Reversed, Reversed).reverse85,2017 -reverse([], Reversed, Reversed).reverse85,2017 -reverse([Head|Tail], Sofar, Reversed) :-reverse86,2050 -reverse([Head|Tail], Sofar, Reversed) :-reverse86,2050 -reverse([Head|Tail], Sofar, Reversed) :-reverse86,2050 -prolog:win_add_dll_directory(Dir) :-win_add_dll_directory96,2327 -prolog:win_add_dll_directory(Dir) :-win_add_dll_directory96,2327 -prolog:win_add_dll_directory(Dir) :-win_add_dll_directory98,2406 -prolog:win_add_dll_directory(Dir) :-win_add_dll_directory98,2406 - -pl/tabling.yap,21041 -:- table son/3.table102,3440 -:- table son/3.table102,3440 -:- table father/2.table103,3456 -:- table father/2.table103,3456 -:- table mother/2.table104,3475 -:- table mother/2.table104,3475 -:- table son/3, father/2, mother/2.table109,3511 -:- table son/3, father/2, mother/2.table109,3511 -show_tabled_predicates :- show_tabled_predicates187,5901 -show_global_trie :-show_global_trie191,5991 -show_all_tables :-show_all_tables195,6068 -show_all_local_tables :-show_all_local_tables199,6143 -global_trie_statistics :-global_trie_statistics203,6230 -tabling_statistics :-tabling_statistics215,6407 -tabling_statistics(total_memory,[BytesInUse,BytesAllocated]) :-tabling_statistics226,6761 -tabling_statistics(total_memory,[BytesInUse,BytesAllocated]) :-tabling_statistics226,6761 -tabling_statistics(total_memory,[BytesInUse,BytesAllocated]) :-tabling_statistics226,6761 -tabling_statistics(table_entries,[BytesInUse,StructsInUse]) :-tabling_statistics228,6885 -tabling_statistics(table_entries,[BytesInUse,StructsInUse]) :-tabling_statistics228,6885 -tabling_statistics(table_entries,[BytesInUse,StructsInUse]) :-tabling_statistics228,6885 -tabling_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-tabling_statistics230,7006 -tabling_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-tabling_statistics230,7006 -tabling_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-tabling_statistics230,7006 -tabling_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-tabling_statistics232,7128 -tabling_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-tabling_statistics232,7128 -tabling_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-tabling_statistics232,7128 -tabling_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics234,7253 -tabling_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics234,7253 -tabling_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics234,7253 -tabling_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics236,7379 -tabling_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics236,7379 -tabling_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics236,7379 -tabling_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics238,7504 -tabling_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics238,7504 -tabling_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics238,7504 -tabling_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics240,7631 -tabling_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics240,7631 -tabling_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics240,7631 -tabling_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics242,7757 -tabling_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics242,7757 -tabling_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics242,7757 -tabling_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics244,7883 -tabling_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics244,7883 -tabling_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-tabling_statistics244,7883 -tabling_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-tabling_statistics246,8010 -tabling_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-tabling_statistics246,8010 -tabling_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-tabling_statistics246,8010 -tabling_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics248,8134 -tabling_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics248,8134 -tabling_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-tabling_statistics248,8134 -table(Pred) :-table257,8485 -table(Pred) :-table257,8485 -table(Pred) :-table257,8485 -'$do_table'(Mod,Pred) :-$do_table261,8554 -'$do_table'(Mod,Pred) :-$do_table261,8554 -'$do_table'(Mod,Pred) :-$do_table261,8554 -'$do_table'(_,Mod:Pred) :- !,$do_table264,8650 -'$do_table'(_,Mod:Pred) :- !,$do_table264,8650 -'$do_table'(_,Mod:Pred) :- !,$do_table264,8650 -'$do_table'(_,[]) :- !.$do_table266,8706 -'$do_table'(_,[]) :- !.$do_table266,8706 -'$do_table'(_,[]) :- !.$do_table266,8706 -'$do_table'(Mod,[HPred|TPred]) :- !,$do_table267,8730 -'$do_table'(Mod,[HPred|TPred]) :- !,$do_table267,8730 -'$do_table'(Mod,[HPred|TPred]) :- !,$do_table267,8730 -'$do_table'(Mod,(Pred1,Pred2)) :- !,$do_table270,8821 -'$do_table'(Mod,(Pred1,Pred2)) :- !,$do_table270,8821 -'$do_table'(Mod,(Pred1,Pred2)) :- !,$do_table270,8821 -'$do_table'(Mod,PredName/PredArity) :- $do_table273,8912 -'$do_table'(Mod,PredName/PredArity) :- $do_table273,8912 -'$do_table'(Mod,PredName/PredArity) :- $do_table273,8912 -'$do_table'(Mod,PredDeclaration) :- $do_table278,9079 -'$do_table'(Mod,PredDeclaration) :- $do_table278,9079 -'$do_table'(Mod,PredDeclaration) :- $do_table278,9079 -'$do_table'(Mod,Pred) :-$do_table283,9316 -'$do_table'(Mod,Pred) :-$do_table283,9316 -'$do_table'(Mod,Pred) :-$do_table283,9316 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table286,9404 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table286,9404 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table286,9404 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table290,9637 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table290,9637 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table290,9637 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table293,9765 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table293,9765 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table293,9765 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table296,9906 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table296,9906 -'$set_table'(Mod,PredFunctor,PredModeList) :-$set_table296,9906 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table300,10082 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table300,10082 -'$set_table'(Mod,PredFunctor,_PredModeList) :-$set_table300,10082 -'$transl_to_mode_list'([],[],0) :- !.$transl_to_mode_list304,10276 -'$transl_to_mode_list'([],[],0) :- !.$transl_to_mode_list304,10276 -'$transl_to_mode_list'([],[],0) :- !.$transl_to_mode_list304,10276 -'$transl_to_mode_list'([TextualMode|L],[Mode|ModeList],Arity) :-$transl_to_mode_list305,10314 -'$transl_to_mode_list'([TextualMode|L],[Mode|ModeList],Arity) :-$transl_to_mode_list305,10314 -'$transl_to_mode_list'([TextualMode|L],[Mode|ModeList],Arity) :-$transl_to_mode_list305,10314 -'$transl_to_mode_directed_tabling'(index,1).$transl_to_mode_directed_tabling311,10565 -'$transl_to_mode_directed_tabling'(index,1)./p,predicate,predicate definition311,10565 -'$transl_to_mode_directed_tabling'(index,1).$transl_to_mode_directed_tabling311,10565 -'$transl_to_mode_directed_tabling'(min,2).$transl_to_mode_directed_tabling312,10610 -'$transl_to_mode_directed_tabling'(min,2)./p,predicate,predicate definition312,10610 -'$transl_to_mode_directed_tabling'(min,2).$transl_to_mode_directed_tabling312,10610 -'$transl_to_mode_directed_tabling'(max,3).$transl_to_mode_directed_tabling313,10653 -'$transl_to_mode_directed_tabling'(max,3)./p,predicate,predicate definition313,10653 -'$transl_to_mode_directed_tabling'(max,3).$transl_to_mode_directed_tabling313,10653 -'$transl_to_mode_directed_tabling'(all,4).$transl_to_mode_directed_tabling314,10696 -'$transl_to_mode_directed_tabling'(all,4)./p,predicate,predicate definition314,10696 -'$transl_to_mode_directed_tabling'(all,4).$transl_to_mode_directed_tabling314,10696 -'$transl_to_mode_directed_tabling'(sum,5).$transl_to_mode_directed_tabling315,10739 -'$transl_to_mode_directed_tabling'(sum,5)./p,predicate,predicate definition315,10739 -'$transl_to_mode_directed_tabling'(sum,5).$transl_to_mode_directed_tabling315,10739 -'$transl_to_mode_directed_tabling'(last,6).$transl_to_mode_directed_tabling316,10782 -'$transl_to_mode_directed_tabling'(last,6)./p,predicate,predicate definition316,10782 -'$transl_to_mode_directed_tabling'(last,6).$transl_to_mode_directed_tabling316,10782 -'$transl_to_mode_directed_tabling'(first,7).$transl_to_mode_directed_tabling317,10826 -'$transl_to_mode_directed_tabling'(first,7)./p,predicate,predicate definition317,10826 -'$transl_to_mode_directed_tabling'(first,7).$transl_to_mode_directed_tabling317,10826 -'$transl_to_mode_directed_tabling'(+,1).$transl_to_mode_directed_tabling319,10897 -'$transl_to_mode_directed_tabling'(+,1)./p,predicate,predicate definition319,10897 -'$transl_to_mode_directed_tabling'(+,1).$transl_to_mode_directed_tabling319,10897 -'$transl_to_mode_directed_tabling'(@,4).$transl_to_mode_directed_tabling320,10938 -'$transl_to_mode_directed_tabling'(@,4)./p,predicate,predicate definition320,10938 -'$transl_to_mode_directed_tabling'(@,4).$transl_to_mode_directed_tabling320,10938 -'$transl_to_mode_directed_tabling'(-,7).$transl_to_mode_directed_tabling321,10979 -'$transl_to_mode_directed_tabling'(-,7)./p,predicate,predicate definition321,10979 -'$transl_to_mode_directed_tabling'(-,7).$transl_to_mode_directed_tabling321,10979 -is_tabled(Pred) :- is_tabled329,11246 -is_tabled(Pred) :- is_tabled329,11246 -is_tabled(Pred) :- is_tabled329,11246 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled333,11325 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled333,11325 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled333,11325 -'$do_is_tabled'(_,Mod:Pred) :- !, $do_is_tabled336,11430 -'$do_is_tabled'(_,Mod:Pred) :- !, $do_is_tabled336,11430 -'$do_is_tabled'(_,Mod:Pred) :- !, $do_is_tabled336,11430 -'$do_is_tabled'(_,[]) :- !.$do_is_tabled338,11495 -'$do_is_tabled'(_,[]) :- !.$do_is_tabled338,11495 -'$do_is_tabled'(_,[]) :- !.$do_is_tabled338,11495 -'$do_is_tabled'(Mod,[HPred|TPred]) :- !,$do_is_tabled339,11523 -'$do_is_tabled'(Mod,[HPred|TPred]) :- !,$do_is_tabled339,11523 -'$do_is_tabled'(Mod,[HPred|TPred]) :- !,$do_is_tabled339,11523 -'$do_is_tabled'(Mod,(Pred1,Pred2)) :- !,$do_is_tabled342,11626 -'$do_is_tabled'(Mod,(Pred1,Pred2)) :- !,$do_is_tabled342,11626 -'$do_is_tabled'(Mod,(Pred1,Pred2)) :- !,$do_is_tabled342,11626 -'$do_is_tabled'(Mod,PredName/PredArity) :- $do_is_tabled345,11729 -'$do_is_tabled'(Mod,PredName/PredArity) :- $do_is_tabled345,11729 -'$do_is_tabled'(Mod,PredName/PredArity) :- $do_is_tabled345,11729 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled351,11943 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled351,11943 -'$do_is_tabled'(Mod,Pred) :- $do_is_tabled351,11943 -tabling_mode(Pred,Options) :- tabling_mode360,12265 -tabling_mode(Pred,Options) :- tabling_mode360,12265 -tabling_mode(Pred,Options) :- tabling_mode360,12265 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode364,12366 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode364,12366 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode364,12366 -'$do_tabling_mode'(_,Mod:Pred,Options) :- !, $do_tabling_mode367,12493 -'$do_tabling_mode'(_,Mod:Pred,Options) :- !, $do_tabling_mode367,12493 -'$do_tabling_mode'(_,Mod:Pred,Options) :- !, $do_tabling_mode367,12493 -'$do_tabling_mode'(_,[],_) :- !.$do_tabling_mode369,12580 -'$do_tabling_mode'(_,[],_) :- !.$do_tabling_mode369,12580 -'$do_tabling_mode'(_,[],_) :- !.$do_tabling_mode369,12580 -'$do_tabling_mode'(Mod,[HPred|TPred],Options) :- !,$do_tabling_mode370,12613 -'$do_tabling_mode'(Mod,[HPred|TPred],Options) :- !,$do_tabling_mode370,12613 -'$do_tabling_mode'(Mod,[HPred|TPred],Options) :- !,$do_tabling_mode370,12613 -'$do_tabling_mode'(Mod,(Pred1,Pred2),Options) :- !,$do_tabling_mode373,12749 -'$do_tabling_mode'(Mod,(Pred1,Pred2),Options) :- !,$do_tabling_mode373,12749 -'$do_tabling_mode'(Mod,(Pred1,Pred2),Options) :- !,$do_tabling_mode373,12749 -'$do_tabling_mode'(Mod,PredName/PredArity,Options) :- $do_tabling_mode376,12885 -'$do_tabling_mode'(Mod,PredName/PredArity,Options) :- $do_tabling_mode376,12885 -'$do_tabling_mode'(Mod,PredName/PredArity,Options) :- $do_tabling_mode376,12885 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode386,13286 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode386,13286 -'$do_tabling_mode'(Mod,Pred,Options) :- $do_tabling_mode386,13286 -'$set_tabling_mode'(Mod,PredFunctor,Options) :-$set_tabling_mode389,13405 -'$set_tabling_mode'(Mod,PredFunctor,Options) :-$set_tabling_mode389,13405 -'$set_tabling_mode'(Mod,PredFunctor,Options) :-$set_tabling_mode389,13405 -'$set_tabling_mode'(_,_,[]) :- !.$set_tabling_mode392,13520 -'$set_tabling_mode'(_,_,[]) :- !.$set_tabling_mode392,13520 -'$set_tabling_mode'(_,_,[]) :- !.$set_tabling_mode392,13520 -'$set_tabling_mode'(Mod,PredFunctor,[HOption|TOption]) :- !,$set_tabling_mode393,13554 -'$set_tabling_mode'(Mod,PredFunctor,[HOption|TOption]) :- !,$set_tabling_mode393,13554 -'$set_tabling_mode'(Mod,PredFunctor,[HOption|TOption]) :- !,$set_tabling_mode393,13554 -'$set_tabling_mode'(Mod,PredFunctor,(Option1,Option2)) :- !,$set_tabling_mode396,13713 -'$set_tabling_mode'(Mod,PredFunctor,(Option1,Option2)) :- !,$set_tabling_mode396,13713 -'$set_tabling_mode'(Mod,PredFunctor,(Option1,Option2)) :- !,$set_tabling_mode396,13713 -'$set_tabling_mode'(Mod,PredFunctor,Option) :- $set_tabling_mode399,13872 -'$set_tabling_mode'(Mod,PredFunctor,Option) :- $set_tabling_mode399,13872 -'$set_tabling_mode'(Mod,PredFunctor,Option) :- $set_tabling_mode399,13872 -'$set_tabling_mode'(Mod,PredFunctor,Options) :- $set_tabling_mode402,14020 -'$set_tabling_mode'(Mod,PredFunctor,Options) :- $set_tabling_mode402,14020 -'$set_tabling_mode'(Mod,PredFunctor,Options) :- $set_tabling_mode402,14020 -'$transl_to_pred_flag_tabling_mode'(1,batched).$transl_to_pred_flag_tabling_mode407,14271 -'$transl_to_pred_flag_tabling_mode'(1,batched)./p,predicate,predicate definition407,14271 -'$transl_to_pred_flag_tabling_mode'(1,batched).$transl_to_pred_flag_tabling_mode407,14271 -'$transl_to_pred_flag_tabling_mode'(2,local).$transl_to_pred_flag_tabling_mode408,14319 -'$transl_to_pred_flag_tabling_mode'(2,local)./p,predicate,predicate definition408,14319 -'$transl_to_pred_flag_tabling_mode'(2,local).$transl_to_pred_flag_tabling_mode408,14319 -'$transl_to_pred_flag_tabling_mode'(3,exec_answers).$transl_to_pred_flag_tabling_mode409,14365 -'$transl_to_pred_flag_tabling_mode'(3,exec_answers)./p,predicate,predicate definition409,14365 -'$transl_to_pred_flag_tabling_mode'(3,exec_answers).$transl_to_pred_flag_tabling_mode409,14365 -'$transl_to_pred_flag_tabling_mode'(4,load_answers).$transl_to_pred_flag_tabling_mode410,14418 -'$transl_to_pred_flag_tabling_mode'(4,load_answers)./p,predicate,predicate definition410,14418 -'$transl_to_pred_flag_tabling_mode'(4,load_answers).$transl_to_pred_flag_tabling_mode410,14418 -'$transl_to_pred_flag_tabling_mode'(5,local_trie).$transl_to_pred_flag_tabling_mode411,14471 -'$transl_to_pred_flag_tabling_mode'(5,local_trie)./p,predicate,predicate definition411,14471 -'$transl_to_pred_flag_tabling_mode'(5,local_trie).$transl_to_pred_flag_tabling_mode411,14471 -'$transl_to_pred_flag_tabling_mode'(6,global_trie).$transl_to_pred_flag_tabling_mode412,14522 -'$transl_to_pred_flag_tabling_mode'(6,global_trie)./p,predicate,predicate definition412,14522 -'$transl_to_pred_flag_tabling_mode'(6,global_trie).$transl_to_pred_flag_tabling_mode412,14522 -'$transl_to_pred_flag_tabling_mode'(7,coinductive).$transl_to_pred_flag_tabling_mode413,14574 -'$transl_to_pred_flag_tabling_mode'(7,coinductive)./p,predicate,predicate definition413,14574 -'$transl_to_pred_flag_tabling_mode'(7,coinductive).$transl_to_pred_flag_tabling_mode413,14574 -abolish_table(Pred) :-abolish_table421,14852 -abolish_table(Pred) :-abolish_table421,14852 -abolish_table(Pred) :-abolish_table421,14852 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table425,14937 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table425,14937 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table425,14937 -'$do_abolish_table'(_,Mod:Pred) :- !,$do_abolish_table428,15048 -'$do_abolish_table'(_,Mod:Pred) :- !,$do_abolish_table428,15048 -'$do_abolish_table'(_,Mod:Pred) :- !,$do_abolish_table428,15048 -'$do_abolish_table'(_,[]) :- !.$do_abolish_table430,15120 -'$do_abolish_table'(_,[]) :- !.$do_abolish_table430,15120 -'$do_abolish_table'(_,[]) :- !.$do_abolish_table430,15120 -'$do_abolish_table'(Mod,[HPred|TPred]) :- !,$do_abolish_table431,15152 -'$do_abolish_table'(Mod,[HPred|TPred]) :- !,$do_abolish_table431,15152 -'$do_abolish_table'(Mod,[HPred|TPred]) :- !,$do_abolish_table431,15152 -'$do_abolish_table'(Mod,(Pred1,Pred2)) :- !,$do_abolish_table434,15267 -'$do_abolish_table'(Mod,(Pred1,Pred2)) :- !,$do_abolish_table434,15267 -'$do_abolish_table'(Mod,(Pred1,Pred2)) :- !,$do_abolish_table434,15267 -'$do_abolish_table'(Mod,PredName/PredArity) :- $do_abolish_table437,15382 -'$do_abolish_table'(Mod,PredName/PredArity) :- $do_abolish_table437,15382 -'$do_abolish_table'(Mod,PredName/PredArity) :- $do_abolish_table437,15382 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table447,15760 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table447,15760 -'$do_abolish_table'(Mod,Pred) :-$do_abolish_table447,15760 -show_table(Pred) :-show_table457,16163 -show_table(Pred) :-show_table457,16163 -show_table(Pred) :-show_table457,16163 -show_table(Stream,Pred) :-show_table461,16239 -show_table(Stream,Pred) :-show_table461,16239 -show_table(Stream,Pred) :-show_table461,16239 -'$do_show_table'(_,Mod,Pred) :-$do_show_table465,16332 -'$do_show_table'(_,Mod,Pred) :-$do_show_table465,16332 -'$do_show_table'(_,Mod,Pred) :-$do_show_table465,16332 -'$do_show_table'(Stream,_,Mod:Pred) :- !,$do_show_table468,16439 -'$do_show_table'(Stream,_,Mod:Pred) :- !,$do_show_table468,16439 -'$do_show_table'(Stream,_,Mod:Pred) :- !,$do_show_table468,16439 -'$do_show_table'(_,_,[]) :- !.$do_show_table470,16519 -'$do_show_table'(_,_,[]) :- !.$do_show_table470,16519 -'$do_show_table'(_,_,[]) :- !.$do_show_table470,16519 -'$do_show_table'(Stream,Mod,[HPred|TPred]) :- !,$do_show_table471,16550 -'$do_show_table'(Stream,Mod,[HPred|TPred]) :- !,$do_show_table471,16550 -'$do_show_table'(Stream,Mod,[HPred|TPred]) :- !,$do_show_table471,16550 -'$do_show_table'(Stream,Mod,(Pred1,Pred2)) :- !,$do_show_table474,16677 -'$do_show_table'(Stream,Mod,(Pred1,Pred2)) :- !,$do_show_table474,16677 -'$do_show_table'(Stream,Mod,(Pred1,Pred2)) :- !,$do_show_table474,16677 -'$do_show_table'(Stream,Mod,PredName/PredArity) :- $do_show_table477,16804 -'$do_show_table'(Stream,Mod,PredName/PredArity) :- $do_show_table477,16804 -'$do_show_table'(Stream,Mod,PredName/PredArity) :- $do_show_table477,16804 -'$do_show_table'(_,Mod,Pred) :-$do_show_table487,17187 -'$do_show_table'(_,Mod,Pred) :-$do_show_table487,17187 -'$do_show_table'(_,Mod,Pred) :-$do_show_table487,17187 -table_statistics(Pred) :-table_statistics497,17586 -table_statistics(Pred) :-table_statistics497,17586 -table_statistics(Pred) :-table_statistics497,17586 -table_statistics(Stream,Pred) :-table_statistics501,17674 -table_statistics(Stream,Pred) :-table_statistics501,17674 -table_statistics(Stream,Pred) :-table_statistics501,17674 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics505,17779 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics505,17779 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics505,17779 -'$do_table_statistics'(Stream,_,Mod:Pred) :- !,$do_table_statistics508,17898 -'$do_table_statistics'(Stream,_,Mod:Pred) :- !,$do_table_statistics508,17898 -'$do_table_statistics'(Stream,_,Mod:Pred) :- !,$do_table_statistics508,17898 -'$do_table_statistics'(_,_,[]) :- !.$do_table_statistics510,17990 -'$do_table_statistics'(_,_,[]) :- !.$do_table_statistics510,17990 -'$do_table_statistics'(_,_,[]) :- !.$do_table_statistics510,17990 -'$do_table_statistics'(Stream,Mod,[HPred|TPred]) :- !,$do_table_statistics511,18027 -'$do_table_statistics'(Stream,Mod,[HPred|TPred]) :- !,$do_table_statistics511,18027 -'$do_table_statistics'(Stream,Mod,[HPred|TPred]) :- !,$do_table_statistics511,18027 -'$do_table_statistics'(Stream,Mod,(Pred1,Pred2)) :- !,$do_table_statistics514,18172 -'$do_table_statistics'(Stream,Mod,(Pred1,Pred2)) :- !,$do_table_statistics514,18172 -'$do_table_statistics'(Stream,Mod,(Pred1,Pred2)) :- !,$do_table_statistics514,18172 -'$do_table_statistics'(Stream,Mod,PredName/PredArity) :- $do_table_statistics517,18317 -'$do_table_statistics'(Stream,Mod,PredName/PredArity) :- $do_table_statistics517,18317 -'$do_table_statistics'(Stream,Mod,PredName/PredArity) :- $do_table_statistics517,18317 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics527,18718 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics527,18718 -'$do_table_statistics'(_,Mod,Pred) :-$do_table_statistics527,18718 - -pl/threads.yap,36723 -volatile(P) :- var(P),volatile94,3195 -volatile(P) :- var(P),volatile94,3195 -volatile(P) :- var(P),volatile94,3195 -volatile(M:P) :-volatile96,3266 -volatile(M:P) :-volatile96,3266 -volatile(M:P) :-volatile96,3266 -volatile((G1,G2)) :-volatile98,3305 -volatile((G1,G2)) :-volatile98,3305 -volatile((G1,G2)) :-volatile98,3305 -volatile(P) :-volatile102,3395 -volatile(P) :-volatile102,3395 -volatile(P) :-volatile102,3395 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$do_volatile'(P,M) :- dynamic(M:P)./p,predicate,predicate definition106,3456 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$do_volatile'(P,M) :- dynamic(M:P).$do_volatile106,3456 -'$top_thread_goal'(G, Detached) :-$top_thread_goal129,3891 -'$top_thread_goal'(G, Detached) :-$top_thread_goal129,3891 -'$top_thread_goal'(G, Detached) :-$top_thread_goal129,3891 -'$close_thread'(Status, _Detached) :-$close_thread139,4312 -'$close_thread'(Status, _Detached) :-$close_thread139,4312 -'$close_thread'(Status, _Detached) :-$close_thread139,4312 -'$record_thread_status'(Id0,Stat) :- !,$record_thread_status147,4585 -'$record_thread_status'(Id0,Stat) :- !,$record_thread_status147,4585 -'$record_thread_status'(Id0,Stat) :- !,$record_thread_status147,4585 -thread_create(Goal) :-thread_create163,4931 -thread_create(Goal) :-thread_create163,4931 -thread_create(Goal) :-thread_create163,4931 -thread_create(Goal, Id) :-thread_create185,5466 -thread_create(Goal, Id) :-thread_create185,5466 -thread_create(Goal, Id) :-thread_create185,5466 -thread_create(Goal, Id, Options) :-thread_create244,7592 -thread_create(Goal, Id, Options) :-thread_create244,7592 -thread_create(Goal, Id, Options) :-thread_create244,7592 -'$erase_thread_info'(Id) :-$erase_thread_info261,8130 -'$erase_thread_info'(Id) :-$erase_thread_info261,8130 -'$erase_thread_info'(Id) :-$erase_thread_info261,8130 -'$erase_thread_info'(Id) :-$erase_thread_info265,8213 -'$erase_thread_info'(Id) :-$erase_thread_info265,8213 -'$erase_thread_info'(Id) :-$erase_thread_info265,8213 -'$erase_thread_info'(_).$erase_thread_info269,8302 -'$erase_thread_info'(_)./p,predicate,predicate definition269,8302 -'$erase_thread_info'(_).$erase_thread_info269,8302 -'$thread_options'(Opts, Alias, Stack, Trail, System, Detached, AtExit, G) :-$thread_options272,8329 -'$thread_options'(Opts, Alias, Stack, Trail, System, Detached, AtExit, G) :-$thread_options272,8329 -'$thread_options'(Opts, Alias, Stack, Trail, System, Detached, AtExit, G) :-$thread_options272,8329 -'$thread_options'([], _, Stack, Trail, System, Detached, AtExit, _M, _) :-$thread_options294,8763 -'$thread_options'([], _, Stack, Trail, System, Detached, AtExit, _M, _) :-$thread_options294,8763 -'$thread_options'([], _, Stack, Trail, System, Detached, AtExit, _M, _) :-$thread_options294,8763 -'$thread_options'([Opt|Opts], Alias, Stack, Trail, System, Detached, AtExit, M, G0) :-$thread_options301,9199 -'$thread_options'([Opt|Opts], Alias, Stack, Trail, System, Detached, AtExit, M, G0) :-$thread_options301,9199 -'$thread_options'([Opt|Opts], Alias, Stack, Trail, System, Detached, AtExit, M, G0) :-$thread_options301,9199 -'$thread_option'(Option, _, _, _, _, _, _, _, G0) :- var(Option), !,$thread_option305,9445 -'$thread_option'(Option, _, _, _, _, _, _, _, G0) :- var(Option), !,$thread_option305,9445 -'$thread_option'(Option, _, _, _, _, _, _, _, G0) :- var(Option), !,$thread_option305,9445 -'$thread_option'(alias(Alias), Alias, _, _, _, _, _, _, G0) :- !,$thread_option307,9552 -'$thread_option'(alias(Alias), Alias, _, _, _, _, _, _, G0) :- !,$thread_option307,9552 -'$thread_option'(alias(Alias), Alias, _, _, _, _, _, _, G0) :- !,$thread_option307,9552 -'$thread_option'(stack(Stack), _, Stack, _, _, _, _, _, G0) :- !,$thread_option309,9688 -'$thread_option'(stack(Stack), _, Stack, _, _, _, _, _, G0) :- !,$thread_option309,9688 -'$thread_option'(stack(Stack), _, Stack, _, _, _, _, _, G0) :- !,$thread_option309,9688 -'$thread_option'(trail(Trail), _, _, Trail, _, _, _, _, G0) :- !,$thread_option311,9830 -'$thread_option'(trail(Trail), _, _, Trail, _, _, _, _, G0) :- !,$thread_option311,9830 -'$thread_option'(trail(Trail), _, _, Trail, _, _, _, _, G0) :- !,$thread_option311,9830 -'$thread_option'(system(System), _, _, _, System, _, _, _, G0) :- !,$thread_option313,9972 -'$thread_option'(system(System), _, _, _, System, _, _, _, G0) :- !,$thread_option313,9972 -'$thread_option'(system(System), _, _, _, System, _, _, _, G0) :- !,$thread_option313,9972 -'$thread_option'(detached(Detached), _, _, _, _, Detached, _, _, G0) :- !,$thread_option315,10119 -'$thread_option'(detached(Detached), _, _, _, _, Detached, _, _, G0) :- !,$thread_option315,10119 -'$thread_option'(detached(Detached), _, _, _, _, Detached, _, _, G0) :- !,$thread_option315,10119 -'$thread_option'(at_exit(AtExit), _, _, _, _, _, AtExit, _M, G0) :- !,$thread_option317,10314 -'$thread_option'(at_exit(AtExit), _, _, _, _, _, AtExit, _M, G0) :- !,$thread_option317,10314 -'$thread_option'(at_exit(AtExit), _, _, _, _, _, AtExit, _M, G0) :- !,$thread_option317,10314 -'$thread_option'(_Option, _, _, _, _, _, _, _, _G0).$thread_option320,10495 -'$thread_option'(_Option, _, _, _, _, _, _, _, _G0)./p,predicate,predicate definition320,10495 -'$thread_option'(_Option, _, _, _, _, _, _, _, _G0).$thread_option320,10495 -'$record_alias_info'(_, Alias) :-$record_alias_info323,10603 -'$record_alias_info'(_, Alias) :-$record_alias_info323,10603 -'$record_alias_info'(_, Alias) :-$record_alias_info323,10603 -'$record_alias_info'(_, Alias) :-$record_alias_info325,10653 -'$record_alias_info'(_, Alias) :-$record_alias_info325,10653 -'$record_alias_info'(_, Alias) :-$record_alias_info325,10653 -'$record_alias_info'(Id, Alias) :-$record_alias_info328,10807 -'$record_alias_info'(Id, Alias) :-$record_alias_info328,10807 -'$record_alias_info'(Id, Alias) :-$record_alias_info328,10807 -thread_defaults(Defaults) :-thread_defaults332,10898 -thread_defaults(Defaults) :-thread_defaults332,10898 -thread_defaults(Defaults) :-thread_defaults332,10898 -thread_defaults([stack(Stack), trail(Trail), system(System), detached(Detached), at_exit(AtExit)]) :-thread_defaults335,11023 -thread_defaults([stack(Stack), trail(Trail), system(System), detached(Detached), at_exit(AtExit)]) :-thread_defaults335,11023 -thread_defaults([stack(Stack), trail(Trail), system(System), detached(Detached), at_exit(AtExit)]) :-thread_defaults335,11023 -thread_default(Default) :-thread_default338,11201 -thread_default(Default) :-thread_default338,11201 -thread_default(Default) :-thread_default338,11201 -thread_default(stack(Stack)) :- !,thread_default342,11329 -thread_default(stack(Stack)) :- !,thread_default342,11329 -thread_default(stack(Stack)) :- !,thread_default342,11329 -thread_default(trail(Trail)) :- !,thread_default344,11418 -thread_default(trail(Trail)) :- !,thread_default344,11418 -thread_default(trail(Trail)) :- !,thread_default344,11418 -thread_default(system(System)) :- !,thread_default346,11507 -thread_default(system(System)) :- !,thread_default346,11507 -thread_default(system(System)) :- !,thread_default346,11507 -thread_default(detached(Detached)) :- !,thread_default348,11599 -thread_default(detached(Detached)) :- !,thread_default348,11599 -thread_default(detached(Detached)) :- !,thread_default348,11599 -thread_default(at_exit(AtExit)) :- !,thread_default350,11697 -thread_default(at_exit(AtExit)) :- !,thread_default350,11697 -thread_default(at_exit(AtExit)) :- !,thread_default350,11697 -thread_default(Default) :-thread_default352,11790 -thread_default(Default) :-thread_default352,11790 -thread_default(Default) :-thread_default352,11790 -'$thread_default'(stack(Stack), [Stack, _, _, _, _]).$thread_default355,11891 -'$thread_default'(stack(Stack), [Stack, _, _, _, _])./p,predicate,predicate definition355,11891 -'$thread_default'(stack(Stack), [Stack, _, _, _, _]).$thread_default355,11891 -'$thread_default'(trail(Trail), [_, Trail, _, _, _]).$thread_default356,11945 -'$thread_default'(trail(Trail), [_, Trail, _, _, _])./p,predicate,predicate definition356,11945 -'$thread_default'(trail(Trail), [_, Trail, _, _, _]).$thread_default356,11945 -'$thread_default'(system(System), [_, _, System, _, _]).$thread_default357,11999 -'$thread_default'(system(System), [_, _, System, _, _])./p,predicate,predicate definition357,11999 -'$thread_default'(system(System), [_, _, System, _, _]).$thread_default357,11999 -'$thread_default'(detached(Detached), [_, _, _, Detached, _]).$thread_default358,12056 -'$thread_default'(detached(Detached), [_, _, _, Detached, _])./p,predicate,predicate definition358,12056 -'$thread_default'(detached(Detached), [_, _, _, Detached, _]).$thread_default358,12056 -'$thread_default'(at_exit(AtExit), [_, _, _, _, AtExit]).$thread_default359,12119 -'$thread_default'(at_exit(AtExit), [_, _, _, _, AtExit])./p,predicate,predicate definition359,12119 -'$thread_default'(at_exit(AtExit), [_, _, _, _, AtExit]).$thread_default359,12119 -thread_set_defaults(V) :- var(V), !,thread_set_defaults361,12178 -thread_set_defaults(V) :- var(V), !,thread_set_defaults361,12178 -thread_set_defaults(V) :- var(V), !,thread_set_defaults361,12178 -thread_set_defaults([Default| Defaults]) :- !,thread_set_defaults363,12274 -thread_set_defaults([Default| Defaults]) :- !,thread_set_defaults363,12274 -thread_set_defaults([Default| Defaults]) :- !,thread_set_defaults363,12274 -thread_set_defaults(T) :-thread_set_defaults365,12409 -thread_set_defaults(T) :-thread_set_defaults365,12409 -thread_set_defaults(T) :-thread_set_defaults365,12409 -'$thread_set_defaults'([], _).$thread_set_defaults368,12495 -'$thread_set_defaults'([], _)./p,predicate,predicate definition368,12495 -'$thread_set_defaults'([], _).$thread_set_defaults368,12495 -'$thread_set_defaults'([Default| Defaults], G) :- !,$thread_set_defaults369,12526 -'$thread_set_defaults'([Default| Defaults], G) :- !,$thread_set_defaults369,12526 -'$thread_set_defaults'([Default| Defaults], G) :- !,$thread_set_defaults369,12526 -thread_set_default(V) :- var(V), !,thread_set_default373,12654 -thread_set_default(V) :- var(V), !,thread_set_default373,12654 -thread_set_default(V) :- var(V), !,thread_set_default373,12654 -thread_set_default(Default) :-thread_set_default375,12748 -thread_set_default(Default) :-thread_set_default375,12748 -thread_set_default(Default) :-thread_set_default375,12748 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default378,12842 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default378,12842 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default378,12842 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default381,12952 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default381,12952 -'$thread_set_default'(stack(Stack), G) :-$thread_set_default381,12952 -'$thread_set_default'(stack(Stack), _) :- !,$thread_set_default384,13067 -'$thread_set_default'(stack(Stack), _) :- !,$thread_set_default384,13067 -'$thread_set_default'(stack(Stack), _) :- !,$thread_set_default384,13067 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default389,13275 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default389,13275 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default389,13275 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default392,13385 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default392,13385 -'$thread_set_default'(trail(Trail), G) :-$thread_set_default392,13385 -'$thread_set_default'(trail(Trail), _) :- !,$thread_set_default395,13500 -'$thread_set_default'(trail(Trail), _) :- !,$thread_set_default395,13500 -'$thread_set_default'(trail(Trail), _) :- !,$thread_set_default395,13500 -'$thread_set_default'(system(System), G) :-$thread_set_default400,13708 -'$thread_set_default'(system(System), G) :-$thread_set_default400,13708 -'$thread_set_default'(system(System), G) :-$thread_set_default400,13708 -'$thread_set_default'(system(System), G0) :-$thread_set_default403,13822 -'$thread_set_default'(system(System), G0) :-$thread_set_default403,13822 -'$thread_set_default'(system(System), G0) :-$thread_set_default403,13822 -'$thread_set_default'(system(System), _) :- !,$thread_set_default406,13943 -'$thread_set_default'(system(System), _) :- !,$thread_set_default406,13943 -'$thread_set_default'(system(System), _) :- !,$thread_set_default406,13943 -'$thread_set_default'(detached(Detached), G) :-$thread_set_default411,14152 -'$thread_set_default'(detached(Detached), G) :-$thread_set_default411,14152 -'$thread_set_default'(detached(Detached), G) :-$thread_set_default411,14152 -'$thread_set_default'(detached(Detached), _) :- !,$thread_set_default414,14291 -'$thread_set_default'(detached(Detached), _) :- !,$thread_set_default414,14291 -'$thread_set_default'(detached(Detached), _) :- !,$thread_set_default414,14291 -'$thread_set_default'(at_exit(AtExit), G) :-$thread_set_default419,14502 -'$thread_set_default'(at_exit(AtExit), G) :-$thread_set_default419,14502 -'$thread_set_default'(at_exit(AtExit), G) :-$thread_set_default419,14502 -'$thread_set_default'(at_exit(AtExit), _) :- !,$thread_set_default422,14619 -'$thread_set_default'(at_exit(AtExit), _) :- !,$thread_set_default422,14619 -'$thread_set_default'(at_exit(AtExit), _) :- !,$thread_set_default422,14619 -'$thread_set_default'(Default, G) :-$thread_set_default428,14854 -'$thread_set_default'(Default, G) :-$thread_set_default428,14854 -'$thread_set_default'(Default, G) :-$thread_set_default428,14854 -thread_self(Id) :-thread_self439,15098 -thread_self(Id) :-thread_self439,15098 -thread_self(Id) :-thread_self439,15098 -thread_self(Id) :-thread_self442,15228 -thread_self(Id) :-thread_self442,15228 -thread_self(Id) :-thread_self442,15228 -thread_join(Id, Status) :-thread_join494,16947 -thread_join(Id, Status) :-thread_join494,16947 -thread_join(Id, Status) :-thread_join494,16947 -thread_join(Id, Status) :-thread_join497,17063 -thread_join(Id, Status) :-thread_join497,17063 -thread_join(Id, Status) :-thread_join497,17063 -thread_cancel(Id) :-thread_cancel506,17292 -thread_cancel(Id) :-thread_cancel506,17292 -thread_cancel(Id) :-thread_cancel506,17292 -thread_cancel(Id) :-thread_cancel509,17413 -thread_cancel(Id) :-thread_cancel509,17413 -thread_cancel(Id) :-thread_cancel509,17413 -thread_detach(Id) :-thread_detach512,17506 -thread_detach(Id) :-thread_detach512,17506 -thread_detach(Id) :-thread_detach512,17506 -thread_exit(Term) :-thread_exit535,18121 -thread_exit(Term) :-thread_exit535,18121 -thread_exit(Term) :-thread_exit535,18121 -thread_exit(Term) :-thread_exit538,18211 -thread_exit(Term) :-thread_exit538,18211 -thread_exit(Term) :-thread_exit538,18211 -'$run_at_thread_exit'(_Id0) :-$run_at_thread_exit541,18275 -'$run_at_thread_exit'(_Id0) :-$run_at_thread_exit541,18275 -'$run_at_thread_exit'(_Id0) :-$run_at_thread_exit541,18275 -'$run_at_thread_exit'(Id0) :-$run_at_thread_exit545,18371 -'$run_at_thread_exit'(Id0) :-$run_at_thread_exit545,18371 -'$run_at_thread_exit'(Id0) :-$run_at_thread_exit545,18371 -'$run_at_thread_exit'(_).$run_at_thread_exit549,18490 -'$run_at_thread_exit'(_)./p,predicate,predicate definition549,18490 -'$run_at_thread_exit'(_).$run_at_thread_exit549,18490 -thread_at_exit(Goal) :-thread_at_exit566,19144 -thread_at_exit(Goal) :-thread_at_exit566,19144 -thread_at_exit(Goal) :-thread_at_exit566,19144 -current_thread(Id, Status) :-current_thread622,20739 -current_thread(Id, Status) :-current_thread622,20739 -current_thread(Id, Status) :-current_thread622,20739 -'$thread_id_alias'(Id, Alias) :-$thread_id_alias627,20856 -'$thread_id_alias'(Id, Alias) :-$thread_id_alias627,20856 -'$thread_id_alias'(Id, Alias) :-$thread_id_alias627,20856 -'$thread_id_alias'(Id, Id).$thread_id_alias629,20942 -'$thread_id_alias'(Id, Id)./p,predicate,predicate definition629,20942 -'$thread_id_alias'(Id, Id).$thread_id_alias629,20942 -thread_property(Prop) :-thread_property633,20973 -thread_property(Prop) :-thread_property633,20973 -thread_property(Prop) :-thread_property633,20973 -thread_property(Id, Prop) :-thread_property671,21868 -thread_property(Id, Prop) :-thread_property671,21868 -thread_property(Id, Prop) :-thread_property671,21868 -'$enumerate_threads'(Id) :-$enumerate_threads680,22127 -'$enumerate_threads'(Id) :-$enumerate_threads680,22127 -'$enumerate_threads'(Id) :-$enumerate_threads680,22127 -'$thread_property'(alias(Alias), Id) :-$thread_property686,22247 -'$thread_property'(alias(Alias), Id) :-$thread_property686,22247 -'$thread_property'(alias(Alias), Id) :-$thread_property686,22247 -'$thread_property'(status(Status), Id) :-$thread_property688,22330 -'$thread_property'(status(Status), Id) :-$thread_property688,22330 -'$thread_property'(status(Status), Id) :-$thread_property688,22330 -'$thread_property'(detached(Detached), Id) :-$thread_property694,22470 -'$thread_property'(detached(Detached), Id) :-$thread_property694,22470 -'$thread_property'(detached(Detached), Id) :-$thread_property694,22470 -'$thread_property'(at_exit(M:G), _Id) :-$thread_property696,22581 -'$thread_property'(at_exit(M:G), _Id) :-$thread_property696,22581 -'$thread_property'(at_exit(M:G), _Id) :-$thread_property696,22581 -'$thread_property'(stack(Stack), Id) :-$thread_property698,22651 -'$thread_property'(stack(Stack), Id) :-$thread_property698,22651 -'$thread_property'(stack(Stack), Id) :-$thread_property698,22651 -'$thread_property'(trail(Trail), Id) :-$thread_property700,22727 -'$thread_property'(trail(Trail), Id) :-$thread_property700,22727 -'$thread_property'(trail(Trail), Id) :-$thread_property700,22727 -'$thread_property'(system(System), Id) :-$thread_property702,22803 -'$thread_property'(system(System), Id) :-$thread_property702,22803 -'$thread_property'(system(System), Id) :-$thread_property702,22803 -threads :-threads705,22883 -threads :-threads714,23351 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias718,23465 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias718,23465 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias718,23465 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias721,23561 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias721,23561 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias721,23561 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias724,23695 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias724,23695 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias724,23695 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias727,23843 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias727,23843 -'$check_thread_or_alias'(Term, Goal) :-$check_thread_or_alias727,23843 -'$check_thread_or_alias'(_,_).$check_thread_or_alias730,23979 -'$check_thread_or_alias'(_,_)./p,predicate,predicate definition730,23979 -'$check_thread_or_alias'(_,_).$check_thread_or_alias730,23979 -'$check_thread_property'(Term, _) :-$check_thread_property732,24011 -'$check_thread_property'(Term, _) :-$check_thread_property732,24011 -'$check_thread_property'(Term, _) :-$check_thread_property732,24011 -'$check_thread_property'(alias(_), _) :- !.$check_thread_property734,24063 -'$check_thread_property'(alias(_), _) :- !.$check_thread_property734,24063 -'$check_thread_property'(alias(_), _) :- !.$check_thread_property734,24063 -'$check_thread_property'(detached(_), _) :- !.$check_thread_property735,24107 -'$check_thread_property'(detached(_), _) :- !.$check_thread_property735,24107 -'$check_thread_property'(detached(_), _) :- !.$check_thread_property735,24107 -'$check_thread_property'(at_exit(_), _) :- !.$check_thread_property736,24154 -'$check_thread_property'(at_exit(_), _) :- !.$check_thread_property736,24154 -'$check_thread_property'(at_exit(_), _) :- !.$check_thread_property736,24154 -'$check_thread_property'(status(_), _) :- !.$check_thread_property737,24200 -'$check_thread_property'(status(_), _) :- !.$check_thread_property737,24200 -'$check_thread_property'(status(_), _) :- !.$check_thread_property737,24200 -'$check_thread_property'(stack(_), _) :- !.$check_thread_property738,24245 -'$check_thread_property'(stack(_), _) :- !.$check_thread_property738,24245 -'$check_thread_property'(stack(_), _) :- !.$check_thread_property738,24245 -'$check_thread_property'(trail(_), _) :- !.$check_thread_property739,24289 -'$check_thread_property'(trail(_), _) :- !.$check_thread_property739,24289 -'$check_thread_property'(trail(_), _) :- !.$check_thread_property739,24289 -'$check_thread_property'(system(_), _) :- !.$check_thread_property740,24333 -'$check_thread_property'(system(_), _) :- !.$check_thread_property740,24333 -'$check_thread_property'(system(_), _) :- !.$check_thread_property740,24333 -'$check_thread_property'(Term, Goal) :-$check_thread_property741,24378 -'$check_thread_property'(Term, Goal) :-$check_thread_property741,24378 -'$check_thread_property'(Term, Goal) :-$check_thread_property741,24378 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias744,24476 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias744,24476 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias744,24476 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias747,24571 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias747,24571 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias747,24571 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias750,24703 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias750,24703 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias750,24703 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias753,24848 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias753,24848 -'$check_mutex_or_alias'(Term, Goal) :-$check_mutex_or_alias753,24848 -'$check_mutex_or_alias'(_,_).$check_mutex_or_alias757,25041 -'$check_mutex_or_alias'(_,_)./p,predicate,predicate definition757,25041 -'$check_mutex_or_alias'(_,_).$check_mutex_or_alias757,25041 -'$check_mutex_property'(Term, _) :-$check_mutex_property759,25072 -'$check_mutex_property'(Term, _) :-$check_mutex_property759,25072 -'$check_mutex_property'(Term, _) :-$check_mutex_property759,25072 -'$check_mutex_property'(alias(_), _) :- !.$check_mutex_property761,25123 -'$check_mutex_property'(alias(_), _) :- !.$check_mutex_property761,25123 -'$check_mutex_property'(alias(_), _) :- !.$check_mutex_property761,25123 -'$check_mutex_property'(status(Status), Goal) :- !,$check_mutex_property762,25166 -'$check_mutex_property'(status(Status), Goal) :- !,$check_mutex_property762,25166 -'$check_mutex_property'(status(Status), Goal) :- !,$check_mutex_property762,25166 -'$check_mutex_property'(Term, Goal) :-$check_mutex_property771,25380 -'$check_mutex_property'(Term, Goal) :-$check_mutex_property771,25380 -'$check_mutex_property'(Term, Goal) :-$check_mutex_property771,25380 -'$mk_tstatus_key'(Id0, Key) :-$mk_tstatus_key774,25476 -'$mk_tstatus_key'(Id0, Key) :-$mk_tstatus_key774,25476 -'$mk_tstatus_key'(Id0, Key) :-$mk_tstatus_key774,25476 -thread_statistics(Id, Key, Val) :-thread_statistics805,26439 -thread_statistics(Id, Key, Val) :-thread_statistics805,26439 -thread_statistics(Id, Key, Val) :-thread_statistics805,26439 -change_address(Id, Address) :-change_address856,28303 -change_address(Id, Address) :-change_address856,28303 -change_address(Id, Address) :-change_address856,28303 -mutex_create(Id, Options) :-mutex_create873,28726 -mutex_create(Id, Options) :-mutex_create873,28726 -mutex_create(Id, Options) :-mutex_create873,28726 -mutex_create(Id, Options) :-mutex_create876,28839 -mutex_create(Id, Options) :-mutex_create876,28839 -mutex_create(Id, Options) :-mutex_create876,28839 -'$mutex_options'(Var, _, Goal) :-$mutex_options884,29009 -'$mutex_options'(Var, _, Goal) :-$mutex_options884,29009 -'$mutex_options'(Var, _, Goal) :-$mutex_options884,29009 -'$mutex_options'([], _, _) :- !.$mutex_options887,29098 -'$mutex_options'([], _, _) :- !.$mutex_options887,29098 -'$mutex_options'([], _, _) :- !.$mutex_options887,29098 -'$mutex_options'([Option| Options], Alias, Goal) :- !,$mutex_options888,29131 -'$mutex_options'([Option| Options], Alias, Goal) :- !,$mutex_options888,29131 -'$mutex_options'([Option| Options], Alias, Goal) :- !,$mutex_options888,29131 -'$mutex_options'(Options, _, Goal) :-$mutex_options891,29266 -'$mutex_options'(Options, _, Goal) :-$mutex_options891,29266 -'$mutex_options'(Options, _, Goal) :-$mutex_options891,29266 -'$mutex_option'(Var, _, Goal) :-$mutex_option894,29352 -'$mutex_option'(Var, _, Goal) :-$mutex_option894,29352 -'$mutex_option'(Var, _, Goal) :-$mutex_option894,29352 -'$mutex_option'(alias(Alias), Alias, Goal) :- !,$mutex_option897,29440 -'$mutex_option'(alias(Alias), Alias, Goal) :- !,$mutex_option897,29440 -'$mutex_option'(alias(Alias), Alias, Goal) :- !,$mutex_option897,29440 -'$mutex_option'(Option, _, Goal) :-$mutex_option902,29564 -'$mutex_option'(Option, _, Goal) :-$mutex_option902,29564 -'$mutex_option'(Option, _, Goal) :-$mutex_option902,29564 -mutex_unlock_all :-mutex_unlock_all914,29855 -'$unlock_all_thread_mutexes'(Tid) :-$unlock_all_thread_mutexes918,29934 -'$unlock_all_thread_mutexes'(Tid) :-$unlock_all_thread_mutexes918,29934 -'$unlock_all_thread_mutexes'(Tid) :-$unlock_all_thread_mutexes918,29934 -'$unlock_all_thread_mutexes'(_).$unlock_all_thread_mutexes924,30084 -'$unlock_all_thread_mutexes'(_)./p,predicate,predicate definition924,30084 -'$unlock_all_thread_mutexes'(_).$unlock_all_thread_mutexes924,30084 -'$mutex_unlock_all'(Id) :-$mutex_unlock_all926,30118 -'$mutex_unlock_all'(Id) :-$mutex_unlock_all926,30118 -'$mutex_unlock_all'(Id) :-$mutex_unlock_all926,30118 -current_mutex(M, T, NRefs) :-current_mutex943,30545 -current_mutex(M, T, NRefs) :-current_mutex943,30545 -current_mutex(M, T, NRefs) :-current_mutex943,30545 -mutex_property(Mutex, Prop) :-mutex_property947,30648 -mutex_property(Mutex, Prop) :-mutex_property947,30648 -mutex_property(Mutex, Prop) :-mutex_property947,30648 -'$mutex_property'(Id, alias(Alias)) :-$mutex_property956,30930 -'$mutex_property'(Id, alias(Alias)) :-$mutex_property956,30930 -'$mutex_property'(Id, alias(Alias)) :-$mutex_property956,30930 -'$mutex_property'(Id, status(Status)) :-$mutex_property959,31025 -'$mutex_property'(Id, status(Status)) :-$mutex_property959,31025 -'$mutex_property'(Id, status(Status)) :-$mutex_property959,31025 -message_queue_create(Id, Options) :-message_queue_create987,31864 -message_queue_create(Id, Options) :-message_queue_create987,31864 -message_queue_create(Id, Options) :-message_queue_create987,31864 -message_queue_create(Id, Options) :-message_queue_create990,31993 -message_queue_create(Id, Options) :-message_queue_create990,31993 -message_queue_create(Id, Options) :-message_queue_create990,31993 -message_queue_create(Id, []) :- !,message_queue_create993,32118 -message_queue_create(Id, []) :- !,message_queue_create993,32118 -message_queue_create(Id, []) :- !,message_queue_create993,32118 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create995,32183 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create995,32183 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create995,32183 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create998,32320 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create998,32320 -message_queue_create(Id, [alias(Alias)]) :-message_queue_create998,32320 -message_queue_create(Id, [alias(Alias)]) :- var(Id), !,message_queue_create1001,32464 -message_queue_create(Id, [alias(Alias)]) :- var(Id), !,message_queue_create1001,32464 -message_queue_create(Id, [alias(Alias)]) :- var(Id), !,message_queue_create1001,32464 -message_queue_create(Alias, [alias(Alias)]) :- !,message_queue_create1007,32747 -message_queue_create(Alias, [alias(Alias)]) :- !,message_queue_create1007,32747 -message_queue_create(Alias, [alias(Alias)]) :- !,message_queue_create1007,32747 -message_queue_create(Id, [Option| _]) :-message_queue_create1012,32984 -message_queue_create(Id, [Option| _]) :-message_queue_create1012,32984 -message_queue_create(Id, [Option| _]) :-message_queue_create1012,32984 -message_queue_create(Id, Options) :-message_queue_create1014,33114 -message_queue_create(Id, Options) :-message_queue_create1014,33114 -message_queue_create(Id, Options) :-message_queue_create1014,33114 -message_queue_create(Id) :-message_queue_create1027,33524 -message_queue_create(Id) :-message_queue_create1027,33524 -message_queue_create(Id) :-message_queue_create1027,33524 -message_queue_destroy(Name) :-message_queue_destroy1045,34046 -message_queue_destroy(Name) :-message_queue_destroy1045,34046 -message_queue_destroy(Name) :-message_queue_destroy1045,34046 -message_queue_destroy(Alias) :-message_queue_destroy1048,34155 -message_queue_destroy(Alias) :-message_queue_destroy1048,34155 -message_queue_destroy(Alias) :-message_queue_destroy1048,34155 -message_queue_destroy(Name) :-message_queue_destroy1053,34302 -message_queue_destroy(Name) :-message_queue_destroy1053,34302 -message_queue_destroy(Name) :-message_queue_destroy1053,34302 -message_queue_destroy(_).message_queue_destroy1059,34462 -message_queue_destroy(_).message_queue_destroy1059,34462 -message_queue_property( Id, alias(Alias) ) :-message_queue_property1074,34859 -message_queue_property( Id, alias(Alias) ) :-message_queue_property1074,34859 -message_queue_property( Id, alias(Alias) ) :-message_queue_property1074,34859 -message_queue_property( Alias, size(Size) ) :-message_queue_property1076,34949 -message_queue_property( Alias, size(Size) ) :-message_queue_property1076,34949 -message_queue_property( Alias, size(Size) ) :-message_queue_property1076,34949 -message_queue_property( Id, size(Size) ) :-message_queue_property1080,35096 -message_queue_property( Id, size(Size) ) :-message_queue_property1080,35096 -message_queue_property( Id, size(Size) ) :-message_queue_property1080,35096 -thread_send_message(Term) :-thread_send_message1092,35460 -thread_send_message(Term) :-thread_send_message1092,35460 -thread_send_message(Term) :-thread_send_message1092,35460 -thread_send_message(Queue, Term) :- var(Queue), !,thread_send_message1114,36470 -thread_send_message(Queue, Term) :- var(Queue), !,thread_send_message1114,36470 -thread_send_message(Queue, Term) :- var(Queue), !,thread_send_message1114,36470 -thread_send_message(Queue, Term) :-thread_send_message1116,36588 -thread_send_message(Queue, Term) :-thread_send_message1116,36588 -thread_send_message(Queue, Term) :-thread_send_message1116,36588 -thread_send_message(Queue, Term) :-thread_send_message1119,36703 -thread_send_message(Queue, Term) :-thread_send_message1119,36703 -thread_send_message(Queue, Term) :-thread_send_message1119,36703 -thread_get_message(Term) :-thread_get_message1147,37436 -thread_get_message(Term) :-thread_get_message1147,37436 -thread_get_message(Term) :-thread_get_message1147,37436 -thread_get_message(Queue, Term) :- var(Queue), !,thread_get_message1159,37777 -thread_get_message(Queue, Term) :- var(Queue), !,thread_get_message1159,37777 -thread_get_message(Queue, Term) :- var(Queue), !,thread_get_message1159,37777 -thread_get_message(Queue, Term) :-thread_get_message1161,37893 -thread_get_message(Queue, Term) :-thread_get_message1161,37893 -thread_get_message(Queue, Term) :-thread_get_message1161,37893 -thread_get_message(Queue, Term) :-thread_get_message1164,38010 -thread_get_message(Queue, Term) :-thread_get_message1164,38010 -thread_get_message(Queue, Term) :-thread_get_message1164,38010 -thread_peek_message(Term) :-thread_peek_message1178,38393 -thread_peek_message(Term) :-thread_peek_message1178,38393 -thread_peek_message(Term) :-thread_peek_message1178,38393 -create_workers(Id, N) :-create_workers1202,39211 -create_workers(Id, N) :-create_workers1202,39211 -create_workers(Id, N) :-create_workers1202,39211 -do_work(Id) :-do_work1207,39343 -do_work(Id) :-do_work1207,39343 -do_work(Id) :-do_work1207,39343 -work(Id, Goal) :-work1220,39616 -work(Id, Goal) :-work1220,39616 -work(Id, Goal) :-work1220,39616 -thread_peek_message(Queue, Term) :- var(Queue), !,thread_peek_message1226,39681 -thread_peek_message(Queue, Term) :- var(Queue), !,thread_peek_message1226,39681 -thread_peek_message(Queue, Term) :- var(Queue), !,thread_peek_message1226,39681 -thread_peek_message(Queue, Term) :-thread_peek_message1228,39799 -thread_peek_message(Queue, Term) :-thread_peek_message1228,39799 -thread_peek_message(Queue, Term) :-thread_peek_message1228,39799 -tthread_peek_message(Queue, Term) :-tthread_peek_message1231,39914 -tthread_peek_message(Queue, Term) :-tthread_peek_message1231,39914 -tthread_peek_message(Queue, Term) :-tthread_peek_message1231,39914 -thread_sleep(Time) :-thread_sleep1264,40931 -thread_sleep(Time) :-thread_sleep1264,40931 -thread_sleep(Time) :-thread_sleep1264,40931 -thread_sleep(Time) :-thread_sleep1267,41022 -thread_sleep(Time) :-thread_sleep1267,41022 -thread_sleep(Time) :-thread_sleep1267,41022 -thread_sleep(Time) :-thread_sleep1273,41120 -thread_sleep(Time) :-thread_sleep1273,41120 -thread_sleep(Time) :-thread_sleep1273,41120 -thread_sleep(Time) :-thread_sleep1281,41329 -thread_sleep(Time) :-thread_sleep1281,41329 -thread_sleep(Time) :-thread_sleep1281,41329 -thread_signal(Id, Goal) :-thread_signal1285,41411 -thread_signal(Id, Goal) :-thread_signal1285,41411 -thread_signal(Id, Goal) :-thread_signal1285,41411 -'$thread_gfetch'(G) :-$thread_gfetch1295,41715 -'$thread_gfetch'(G) :-$thread_gfetch1295,41715 -'$thread_gfetch'(G) :-$thread_gfetch1295,41715 -foo(gnat).foo1348,43639 -foo(gnat).foo1348,43639 -thread_local(X) :-thread_local1355,43664 -thread_local(X) :-thread_local1355,43664 -thread_local(X) :-thread_local1355,43664 -'$thread_local'(X,M) :- var(X), !,$thread_local1359,43730 -'$thread_local'(X,M) :- var(X), !,$thread_local1359,43730 -'$thread_local'(X,M) :- var(X), !,$thread_local1359,43730 -'$thread_local'(Mod:Spec,_) :- !,$thread_local1361,43818 -'$thread_local'(Mod:Spec,_) :- !,$thread_local1361,43818 -'$thread_local'(Mod:Spec,_) :- !,$thread_local1361,43818 -'$thread_local'([], _) :- !.$thread_local1363,43880 -'$thread_local'([], _) :- !.$thread_local1363,43880 -'$thread_local'([], _) :- !.$thread_local1363,43880 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M)./p,predicate,predicate definition1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local1364,43909 -'$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local'(L, M).$thread_local'([H|L], M) :- !, '$thread_local'(H, M), '$thread_local1364,43909 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M)./p,predicate,predicate definition1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local1365,43987 -'$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local'(B,M).$thread_local'((A,B),M) :- !, '$thread_local'(A,M), '$thread_local1365,43987 -'$thread_local'(X,M) :- !,$thread_local1366,44062 -'$thread_local'(X,M) :- !,$thread_local1366,44062 -'$thread_local'(X,M) :- !,$thread_local1366,44062 -'$thread_local2'(A/N, Mod) :- integer(N), atom(A), !,$thread_local21369,44114 -'$thread_local2'(A/N, Mod) :- integer(N), atom(A), !,$thread_local21369,44114 -'$thread_local2'(A/N, Mod) :- integer(N), atom(A), !,$thread_local21369,44114 -'$thread_local2'(X,Mod) :-$thread_local21376,44486 -'$thread_local2'(X,Mod) :-$thread_local21376,44486 -'$thread_local2'(X,Mod) :-$thread_local21376,44486 - -pl/udi.yap,72 -udi(Pred) :-udi26,713 -udi(Pred) :-udi26,713 -udi(Pred) :-udi26,713 - -pl/undefined.yap,1462 -undefined(A) :- format('Undefined predicate: ~w~n',[A]), fail.undefined52,1847 -undefined(A) :- format('Undefined predicate: ~w~n',[A]), fail.undefined52,1847 -undefined(A) :- format('Undefined predicate: ~w~n',[A]), fail.undefined52,1847 -:- multifile user:unknown_predicate_handler/3.multifile67,2233 -:- multifile user:unknown_predicate_handler/3.multifile67,2233 -'$handle_error'(error,Goal,Mod) :-$handle_error69,2281 -'$handle_error'(error,Goal,Mod) :-$handle_error69,2281 -'$handle_error'(error,Goal,Mod) :-$handle_error69,2281 -'$handle_error'(warning,Goal,Mod) :-$handle_error74,2491 -'$handle_error'(warning,Goal,Mod) :-$handle_error74,2491 -'$handle_error'(warning,Goal,Mod) :-$handle_error74,2491 -'$handle_error'(fail,_Goal,_Mod) :-$handle_error79,2719 -'$handle_error'(fail,_Goal,_Mod) :-$handle_error79,2719 -'$handle_error'(fail,_Goal,_Mod) :-$handle_error79,2719 -'$undefp_search'(M0:G0, MG) :-$undefp_search98,3108 -'$undefp_search'(M0:G0, MG) :-$undefp_search98,3108 -'$undefp_search'(M0:G0, MG) :-$undefp_search98,3108 -'$undefp_search'(MG, FMG) :-$undefp_search104,3330 -'$undefp_search'(MG, FMG) :-$undefp_search104,3330 -'$undefp_search'(MG, FMG) :-$undefp_search104,3330 -'$undefp'([M0|G0], Action) :-$undefp109,3403 -'$undefp'([M0|G0], Action) :-$undefp109,3403 -'$undefp'([M0|G0], Action) :-$undefp109,3403 -unknown(P, NP) :-unknown147,4403 -unknown(P, NP) :-unknown147,4403 -unknown(P, NP) :-unknown147,4403 - -pl/utils.yap,8548 -'$check_op'(P,T,Op,G) :-$check_op55,1603 -'$check_op'(P,T,Op,G) :-$check_op55,1603 -'$check_op'(P,T,Op,G) :-$check_op55,1603 -'$check_op'(P,_,_,G) :-$check_op58,1698 -'$check_op'(P,_,_,G) :-$check_op58,1698 -'$check_op'(P,_,_,G) :-$check_op58,1698 -'$check_op'(P,_,_,G) :-$check_op61,1780 -'$check_op'(P,_,_,G) :-$check_op61,1780 -'$check_op'(P,_,_,G) :-$check_op61,1780 -'$check_op'(_,T,_,G) :-$check_op64,1866 -'$check_op'(_,T,_,G) :-$check_op64,1866 -'$check_op'(_,T,_,G) :-$check_op64,1866 -'$check_op'(_,T,_,G) :-$check_op67,1942 -'$check_op'(_,T,_,G) :-$check_op67,1942 -'$check_op'(_,T,_,G) :-$check_op67,1942 -'$check_op'(P,T,V,G) :-$check_op70,2047 -'$check_op'(P,T,V,G) :-$check_op70,2047 -'$check_op'(P,T,V,G) :-$check_op70,2047 -'$check_top_op'(_, _, [], _) :- !.$check_top_op74,2138 -'$check_top_op'(_, _, [], _) :- !.$check_top_op74,2138 -'$check_top_op'(_, _, [], _) :- !.$check_top_op74,2138 -'$check_top_op'(P, T, [Op|NV], G) :- !,$check_top_op75,2173 -'$check_top_op'(P, T, [Op|NV], G) :- !,$check_top_op75,2173 -'$check_top_op'(P, T, [Op|NV], G) :- !,$check_top_op75,2173 -'$check_top_op'(P, T, V, G) :-$check_top_op77,2246 -'$check_top_op'(P, T, V, G) :-$check_top_op77,2246 -'$check_top_op'(P, T, V, G) :-$check_top_op77,2246 -'$check_top_op'(_P, _T, V, G) :-$check_top_op80,2321 -'$check_top_op'(_P, _T, V, G) :-$check_top_op80,2321 -'$check_top_op'(_P, _T, V, G) :-$check_top_op80,2321 -'$check_module_for_op'(MOp, G, _) :-$check_module_for_op92,2580 -'$check_module_for_op'(MOp, G, _) :-$check_module_for_op92,2580 -'$check_module_for_op'(MOp, G, _) :-$check_module_for_op92,2580 -'$check_module_for_op'(M:_V, G, _) :-$check_module_for_op95,2668 -'$check_module_for_op'(M:_V, G, _) :-$check_module_for_op95,2668 -'$check_module_for_op'(M:_V, G, _) :-$check_module_for_op95,2668 -'$check_module_for_op'(M:V, G, NV) :-$check_module_for_op98,2755 -'$check_module_for_op'(M:V, G, NV) :-$check_module_for_op98,2755 -'$check_module_for_op'(M:V, G, NV) :-$check_module_for_op98,2755 -'$check_module_for_op'(M:_V, G, _) :- !,$check_module_for_op101,2841 -'$check_module_for_op'(M:_V, G, _) :- !,$check_module_for_op101,2841 -'$check_module_for_op'(M:_V, G, _) :- !,$check_module_for_op101,2841 -'$check_module_for_op'(V, _G, V).$check_module_for_op103,2918 -'$check_module_for_op'(V, _G, V)./p,predicate,predicate definition103,2918 -'$check_module_for_op'(V, _G, V).$check_module_for_op103,2918 -'$check_ops'(_P, _T, [], _G) :- !.$check_ops105,2953 -'$check_ops'(_P, _T, [], _G) :- !.$check_ops105,2953 -'$check_ops'(_P, _T, [], _G) :- !.$check_ops105,2953 -'$check_ops'(P, T, [Op|NV], G) :- !,$check_ops106,2988 -'$check_ops'(P, T, [Op|NV], G) :- !,$check_ops106,2988 -'$check_ops'(P, T, [Op|NV], G) :- !,$check_ops106,2988 -'$check_ops'(_P, _T, Ops, G) :-$check_ops116,3186 -'$check_ops'(_P, _T, Ops, G) :-$check_ops116,3186 -'$check_ops'(_P, _T, Ops, G) :-$check_ops116,3186 -'$check_op_name'(_,_,V,G) :-$check_op_name119,3257 -'$check_op_name'(_,_,V,G) :-$check_op_name119,3257 -'$check_op_name'(_,_,V,G) :-$check_op_name119,3257 -'$check_op_name'(_,_,'[]',G) :- T \= yf, T\= xf, !,$check_op_name124,3431 -'$check_op_name'(_,_,'[]',G) :- T \= yf, T\= xf, !,$check_op_name124,3431 -'$check_op_name'(_,_,'[]',G) :- T \= yf, T\= xf, !,$check_op_name124,3431 -'$check_op_name'(_,_,'{}',G) :- T \= yf, T\= xf, !,$check_op_name126,3542 -'$check_op_name'(_,_,'{}',G) :- T \= yf, T\= xf, !,$check_op_name126,3542 -'$check_op_name'(_,_,'{}',G) :- T \= yf, T\= xf, !,$check_op_name126,3542 -'$check_op_name'(P,T,'|',G) :-$check_op_name128,3652 -'$check_op_name'(P,T,'|',G) :-$check_op_name128,3652 -'$check_op_name'(P,T,'|',G) :-$check_op_name128,3652 -'$check_op_name'(_,_,V,_) :-$check_op_name136,3812 -'$check_op_name'(_,_,V,_) :-$check_op_name136,3812 -'$check_op_name'(_,_,V,_) :-$check_op_name136,3812 -'$check_op_name'(_,_,A,G) :-$check_op_name138,3855 -'$check_op_name'(_,_,A,G) :-$check_op_name138,3855 -'$check_op_name'(_,_,A,G) :-$check_op_name138,3855 -'$op'(P, T, ML) :-$op141,3922 -'$op'(P, T, ML) :-$op141,3922 -'$op'(P, T, ML) :-$op141,3922 -'$op'(P, T, A) :-$op144,4000 -'$op'(P, T, A) :-$op144,4000 -'$op'(P, T, A) :-$op144,4000 -'$opl'(_P, _T, _, []).$opl147,4035 -'$opl'(_P, _T, _, [])./p,predicate,predicate definition147,4035 -'$opl'(_P, _T, _, []).$opl147,4035 -'$opl'(P, T, M, [A|As]) :-$opl148,4058 -'$opl'(P, T, M, [A|As]) :-$opl148,4058 -'$opl'(P, T, M, [A|As]) :-$opl148,4058 -'$op2'(P,T,A) :-$op2152,4128 -'$op2'(P,T,A) :-$op2152,4128 -'$op2'(P,T,A) :-$op2152,4128 -'$op2'(P,T,A) :-$op2155,4183 -'$op2'(P,T,A) :-$op2155,4183 -'$op2'(P,T,A) :-$op2155,4183 -current_op(X,Y,V) :- var(V), !,current_op167,4388 -current_op(X,Y,V) :- var(V), !,current_op167,4388 -current_op(X,Y,V) :- var(V), !,current_op167,4388 -current_op(X,Y,M:Z) :- !,current_op170,4471 -current_op(X,Y,M:Z) :- !,current_op170,4471 -current_op(X,Y,M:Z) :- !,current_op170,4471 -current_op(X,Y,Z) :-current_op172,4523 -current_op(X,Y,Z) :-current_op172,4523 -current_op(X,Y,Z) :-current_op172,4523 -'$current_opm'(X,Y,Z,M) :-$current_opm177,4597 -'$current_opm'(X,Y,Z,M) :-$current_opm177,4597 -'$current_opm'(X,Y,Z,M) :-$current_opm177,4597 -'$current_opm'(X,Y,Z,M) :-$current_opm181,4731 -'$current_opm'(X,Y,Z,M) :-$current_opm181,4731 -'$current_opm'(X,Y,Z,M) :-$current_opm181,4731 -'$current_opm'(X,Y,M:Z,_) :- !,$current_opm184,4798 -'$current_opm'(X,Y,M:Z,_) :- !,$current_opm184,4798 -'$current_opm'(X,Y,M:Z,_) :- !,$current_opm184,4798 -'$current_opm'(X,Y,Z,M) :-$current_opm186,4856 -'$current_opm'(X,Y,Z,M) :-$current_opm186,4856 -'$current_opm'(X,Y,Z,M) :-$current_opm186,4856 -'$do_current_op'(X,Y,Z,M) :-$do_current_op189,4912 -'$do_current_op'(X,Y,Z,M) :-$do_current_op189,4912 -'$do_current_op'(X,Y,Z,M) :-$do_current_op189,4912 -'$do_current_op'(X,Y,Z,M) :-$do_current_op193,5048 -'$do_current_op'(X,Y,Z,M) :-$do_current_op193,5048 -'$do_current_op'(X,Y,Z,M) :-$do_current_op193,5048 -'$do_current_op'(X,Y,Z,M) :-$do_current_op204,5277 -'$do_current_op'(X,Y,Z,M) :-$do_current_op204,5277 -'$do_current_op'(X,Y,Z,M) :-$do_current_op204,5277 -'$get_prefix'(Prefix, X, Y) :-$get_prefix215,5489 -'$get_prefix'(Prefix, X, Y) :-$get_prefix215,5489 -'$get_prefix'(Prefix, X, Y) :-$get_prefix215,5489 -'$get_infix'(Infix, X, Y) :-$get_infix226,5661 -'$get_infix'(Infix, X, Y) :-$get_infix226,5661 -'$get_infix'(Infix, X, Y) :-$get_infix226,5661 -'$get_posfix'(Posfix, X, Y) :-$get_posfix241,5898 -'$get_posfix'(Posfix, X, Y) :-$get_posfix241,5898 -'$get_posfix'(Posfix, X, Y) :-$get_posfix241,5898 -prolog :-prolog253,6064 -callable(A) :-callable266,6217 -callable(A) :-callable266,6217 -callable(A) :-callable266,6217 -simple(V) :- var(V), !.simple276,6366 -simple(V) :- var(V), !.simple276,6366 -simple(V) :- var(V), !.simple276,6366 -simple(A) :- atom(A), !.simple277,6390 -simple(A) :- atom(A), !.simple277,6390 -simple(A) :- atom(A), !.simple277,6390 -simple(N) :- number(N).simple278,6415 -simple(N) :- number(N).simple278,6415 -simple(N) :- number(N).simple278,6415 -simple(N) :- number(N).simple278,6415 -simple(N) :- number(N).simple278,6415 -nth_instance(Key,Index,Ref) :-nth_instance291,6774 -nth_instance(Key,Index,Ref) :-nth_instance291,6774 -nth_instance(Key,Index,Ref) :-nth_instance291,6774 -nth_instance(Key,Index,Ref) :-nth_instance295,6897 -nth_instance(Key,Index,Ref) :-nth_instance295,6897 -nth_instance(Key,Index,Ref) :-nth_instance295,6897 -nth_instance(Key,Index,T,Ref) :-nth_instance308,7300 -nth_instance(Key,Index,T,Ref) :-nth_instance308,7300 -nth_instance(Key,Index,T,Ref) :-nth_instance308,7300 -nth_instance(Key,Index,T,Ref) :-nth_instance312,7425 -nth_instance(Key,Index,T,Ref) :-nth_instance312,7425 -nth_instance(Key,Index,T,Ref) :-nth_instance312,7425 -nb_current(GlobalVariable, Val) :-nb_current332,7786 -nb_current(GlobalVariable, Val) :-nb_current332,7786 -nb_current(GlobalVariable, Val) :-nb_current332,7786 -'$getval_exception'(GlobalVariable, _Val, Caller) :-$getval_exception336,7893 -'$getval_exception'(GlobalVariable, _Val, Caller) :-$getval_exception336,7893 -'$getval_exception'(GlobalVariable, _Val, Caller) :-$getval_exception336,7893 -subsumes_term(A,B) :-subsumes_term365,8378 -subsumes_term(A,B) :-subsumes_term365,8378 -subsumes_term(A,B) :-subsumes_term365,8378 -term_string( T, S, Opts) :-term_string368,8429 -term_string( T, S, Opts) :-term_string368,8429 -term_string( T, S, Opts) :-term_string368,8429 - -pl/yapor.yap,8605 -or_statistics :-or_statistics43,1688 -opt_statistics :-opt_statistics47,1759 -or_statistics(total_memory,[BytesInUse,BytesAllocated]) :-or_statistics58,2105 -or_statistics(total_memory,[BytesInUse,BytesAllocated]) :-or_statistics58,2105 -or_statistics(total_memory,[BytesInUse,BytesAllocated]) :-or_statistics58,2105 -or_statistics(or_frames,[BytesInUse,StructsInUse]) :-or_statistics60,2224 -or_statistics(or_frames,[BytesInUse,StructsInUse]) :-or_statistics60,2224 -or_statistics(or_frames,[BytesInUse,StructsInUse]) :-or_statistics60,2224 -or_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-or_statistics62,2336 -or_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-or_statistics62,2336 -or_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-or_statistics62,2336 -or_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-or_statistics64,2466 -or_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-or_statistics64,2466 -or_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-or_statistics64,2466 -opt_statistics(total_memory,[BytesInUse,BytesAllocated]) :-opt_statistics74,2868 -opt_statistics(total_memory,[BytesInUse,BytesAllocated]) :-opt_statistics74,2868 -opt_statistics(total_memory,[BytesInUse,BytesAllocated]) :-opt_statistics74,2868 -opt_statistics(table_entries,[BytesInUse,StructsInUse]) :-opt_statistics76,2988 -opt_statistics(table_entries,[BytesInUse,StructsInUse]) :-opt_statistics76,2988 -opt_statistics(table_entries,[BytesInUse,StructsInUse]) :-opt_statistics76,2988 -opt_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-opt_statistics78,3105 -opt_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-opt_statistics78,3105 -opt_statistics(subgoal_frames,[BytesInUse,StructsInUse]) :-opt_statistics78,3105 -opt_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-opt_statistics80,3223 -opt_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-opt_statistics80,3223 -opt_statistics(dependency_frames,[BytesInUse,StructsInUse]) :-opt_statistics80,3223 -opt_statistics(or_frames,[BytesInUse,StructsInUse]) :-opt_statistics82,3344 -opt_statistics(or_frames,[BytesInUse,StructsInUse]) :-opt_statistics82,3344 -opt_statistics(or_frames,[BytesInUse,StructsInUse]) :-opt_statistics82,3344 -opt_statistics(suspension_frames,[BytesInUse,StructsInUse]) :-opt_statistics84,3457 -opt_statistics(suspension_frames,[BytesInUse,StructsInUse]) :-opt_statistics84,3457 -opt_statistics(suspension_frames,[BytesInUse,StructsInUse]) :-opt_statistics84,3457 -opt_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics86,3578 -opt_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics86,3578 -opt_statistics(subgoal_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics86,3578 -opt_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics88,3700 -opt_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics88,3700 -opt_statistics(answer_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics88,3700 -opt_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics90,3821 -opt_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics90,3821 -opt_statistics(subgoal_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics90,3821 -opt_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics92,3944 -opt_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics92,3944 -opt_statistics(answer_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics92,3944 -opt_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics94,4066 -opt_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics94,4066 -opt_statistics(global_trie_nodes,[BytesInUse,StructsInUse]) :-opt_statistics94,4066 -opt_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics96,4188 -opt_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics96,4188 -opt_statistics(global_trie_hashes,[BytesInUse,StructsInUse]) :-opt_statistics96,4188 -opt_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics98,4311 -opt_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics98,4311 -opt_statistics(query_goal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics98,4311 -opt_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics100,4442 -opt_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics100,4442 -opt_statistics(query_goal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics100,4442 -opt_statistics(table_subgoal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics102,4571 -opt_statistics(table_subgoal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics102,4571 -opt_statistics(table_subgoal_solution_frames,[BytesInUse,StructsInUse]) :-opt_statistics102,4571 -opt_statistics(table_subgoal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics104,4705 -opt_statistics(table_subgoal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics104,4705 -opt_statistics(table_subgoal_answer_frames,[BytesInUse,StructsInUse]) :-opt_statistics104,4705 -opt_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-opt_statistics106,4837 -opt_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-opt_statistics106,4837 -opt_statistics(subgoal_entries,[BytesInUse,StructsInUse]) :-opt_statistics106,4837 -opt_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-opt_statistics108,4957 -opt_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-opt_statistics108,4957 -opt_statistics(answer_ref_nodes,[BytesInUse,StructsInUse]) :-opt_statistics108,4957 -parallel(Goal) :-parallel117,5304 -parallel(Goal) :-parallel117,5304 -parallel(Goal) :-parallel117,5304 -parallel(Goal) :-parallel124,5417 -parallel(Goal) :-parallel124,5417 -parallel(Goal) :-parallel124,5417 -'$parallel_query'(Goal) :-$parallel_query132,5498 -'$parallel_query'(Goal) :-$parallel_query132,5498 -'$parallel_query'(Goal) :-$parallel_query132,5498 -'$parallel_query'(_).$parallel_query136,5577 -'$parallel_query'(_)./p,predicate,predicate definition136,5577 -'$parallel_query'(_).$parallel_query136,5577 -parallel_findall(Template,Goal,Answers) :- parallel_findall144,5825 -parallel_findall(Template,Goal,Answers) :- parallel_findall144,5825 -parallel_findall(Template,Goal,Answers) :- parallel_findall144,5825 -parallel_findall(Template,Goal,Answers) :-parallel_findall153,6097 -parallel_findall(Template,Goal,Answers) :-parallel_findall153,6097 -parallel_findall(Template,Goal,Answers) :-parallel_findall153,6097 -'$parallel_findall_query'(Template,Goal) :-$parallel_findall_query156,6176 -'$parallel_findall_query'(Template,Goal) :-$parallel_findall_query156,6176 -'$parallel_findall_query'(Template,Goal) :-$parallel_findall_query156,6176 -'$parallel_findall_query'(_,_).$parallel_findall_query162,6349 -'$parallel_findall_query'(_,_)./p,predicate,predicate definition162,6349 -'$parallel_findall_query'(_,_).$parallel_findall_query162,6349 -'$parallel_findall_recorded'([],[]) :- !.$parallel_findall_recorded164,6382 -'$parallel_findall_recorded'([],[]) :- !.$parallel_findall_recorded164,6382 -'$parallel_findall_recorded'([],[]) :- !.$parallel_findall_recorded164,6382 -'$parallel_findall_recorded'([Ref|Refs],[Template|Answers]):-$parallel_findall_recorded165,6424 -'$parallel_findall_recorded'([Ref|Refs],[Template|Answers]):-$parallel_findall_recorded165,6424 -'$parallel_findall_recorded'([Ref|Refs],[Template|Answers]):-$parallel_findall_recorded165,6424 -parallel_findfirst(Template,Goal,Answer) :- parallel_findfirst174,6802 -parallel_findfirst(Template,Goal,Answer) :- parallel_findfirst174,6802 -parallel_findfirst(Template,Goal,Answer) :- parallel_findfirst174,6802 -parallel_once(Goal) :-parallel_once182,7119 -parallel_once(Goal) :-parallel_once182,7119 -parallel_once(Goal) :-parallel_once182,7119 -parallel_once(Goal) :-parallel_once190,7288 -parallel_once(Goal) :-parallel_once190,7288 -parallel_once(Goal) :-parallel_once190,7288 -'$parallel_once_query'(Goal) :-$parallel_once_query193,7327 -'$parallel_once_query'(Goal) :-$parallel_once_query193,7327 -'$parallel_once_query'(Goal) :-$parallel_once_query193,7327 -'$parallel_once_query'(_).$parallel_once_query198,7453 -'$parallel_once_query'(_)./p,predicate,predicate definition198,7453 -'$parallel_once_query'(_).$parallel_once_query198,7453 - -pl/yio.yap,9507 -exists(F) :-exists137,3348 -exists(F) :-exists137,3348 -exists(F) :-exists137,3348 -display(T) :-display168,3867 -display(T) :-display168,3867 -display(T) :-display168,3867 -display(Stream, T) :-display178,4047 -display(Stream, T) :-display178,4047 -display(Stream, T) :-display178,4047 -'$portray'(T) :-$portray182,4149 -'$portray'(T) :-$portray182,4149 -'$portray'(T) :-$portray182,4149 -'$portray'(_) :- set_value('$portray',false), fail.$portray186,4307 -'$portray'(_) :- set_value('$portray',false), fail.$portray186,4307 -'$portray'(_) :- set_value('$portray',false), fail.$portray186,4307 -format(T) :-format199,4481 -format(T) :-format199,4481 -format(T) :-format199,4481 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget(N) :- get(user_input,N).ttyget216,4652 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyget0(N) :- get0(user_input,N).ttyget0225,4769 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyskip(N) :- N1 is N, '$skip'(user_input,N1).ttyskip235,4894 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttyput(N) :- N1 is N, put(user_output,N1).ttyput244,5014 -ttynl :- nl(user_output).ttynl252,5124 -current_line_number(N) :-current_line_number264,5314 -current_line_number(N) :-current_line_number264,5314 -current_line_number(N) :-current_line_number264,5314 -current_line_number(Stream,N) :-current_line_number273,5508 -current_line_number(Stream,N) :-current_line_number273,5508 -current_line_number(Stream,N) :-current_line_number273,5508 -stream_position(Stream, Position) :-stream_position283,5803 -stream_position(Stream, Position) :-stream_position283,5803 -stream_position(Stream, Position) :-stream_position283,5803 -stream_position(Stream, Position, NewPosition) :-stream_position292,6099 -stream_position(Stream, Position, NewPosition) :-stream_position292,6099 -stream_position(Stream, Position, NewPosition) :-stream_position292,6099 -at_end_of_line :-at_end_of_line301,6360 -at_end_of_line(S) :-at_end_of_line309,6535 -at_end_of_line(S) :-at_end_of_line309,6535 -at_end_of_line(S) :-at_end_of_line309,6535 -at_end_of_line(S) :-at_end_of_line311,6601 -at_end_of_line(S) :-at_end_of_line311,6601 -at_end_of_line(S) :-at_end_of_line311,6601 -current_char_conversion(X,Y) :-current_char_conversion323,6852 -current_char_conversion(X,Y) :-current_char_conversion323,6852 -current_char_conversion(X,Y) :-current_char_conversion323,6852 -current_char_conversion(X,Y) :-current_char_conversion327,6965 -current_char_conversion(X,Y) :-current_char_conversion327,6965 -current_char_conversion(X,Y) :-current_char_conversion327,6965 -'$fetch_char_conversion'([X,Y|_],X,Y).$fetch_char_conversion331,7033 -'$fetch_char_conversion'([X,Y|_],X,Y)./p,predicate,predicate definition331,7033 -'$fetch_char_conversion'([X,Y|_],X,Y).$fetch_char_conversion331,7033 -'$fetch_char_conversion'([_,_|List],X,Y) :-$fetch_char_conversion332,7072 -'$fetch_char_conversion'([_,_|List],X,Y) :-$fetch_char_conversion332,7072 -'$fetch_char_conversion'([_,_|List],X,Y) :-$fetch_char_conversion332,7072 -split_path_file(File, Path, Name) :-split_path_file335,7154 -split_path_file(File, Path, Name) :-split_path_file335,7154 -split_path_file(File, Path, Name) :-split_path_file335,7154 -current_stream(File, Mode, Stream) :-current_stream352,7704 -current_stream(File, Mode, Stream) :-current_stream352,7704 -current_stream(File, Mode, Stream) :-current_stream352,7704 -'$stream_name'(Stream, File) :-$stream_name357,7819 -'$stream_name'(Stream, File) :-$stream_name357,7819 -'$stream_name'(Stream, File) :-$stream_name357,7819 -'$stream_name'(Stream, file_no(File)) :-$stream_name359,7900 -'$stream_name'(Stream, file_no(File)) :-$stream_name359,7900 -'$stream_name'(Stream, file_no(File)) :-$stream_name359,7900 -'$stream_name'(Stream, Stream).$stream_name361,7988 -'$stream_name'(Stream, Stream)./p,predicate,predicate definition361,7988 -'$stream_name'(Stream, Stream).$stream_name361,7988 -'$extend_file_search_path'(P) :-$extend_file_search_path363,8021 -'$extend_file_search_path'(P) :-$extend_file_search_path363,8021 -'$extend_file_search_path'(P) :-$extend_file_search_path363,8021 -'$split_for_path'([], _, _, []).$split_for_path369,8169 -'$split_for_path'([], _, _, [])./p,predicate,predicate definition369,8169 -'$split_for_path'([], _, _, []).$split_for_path369,8169 -'$split_for_path'(S, S1, S2, [A1=A2|R]) :-$split_for_path370,8202 -'$split_for_path'(S, S1, S2, [A1=A2|R]) :-$split_for_path370,8202 -'$split_for_path'(S, S1, S2, [A1=A2|R]) :-$split_for_path370,8202 -'$fetch_first_path'([S1|SR],S1,[],SR) :- !.$fetch_first_path375,8360 -'$fetch_first_path'([S1|SR],S1,[],SR) :- !.$fetch_first_path375,8360 -'$fetch_first_path'([S1|SR],S1,[],SR) :- !.$fetch_first_path375,8360 -'$fetch_first_path'([C|S],S1,[C|F],SR) :-$fetch_first_path376,8404 -'$fetch_first_path'([C|S],S1,[C|F],SR) :-$fetch_first_path376,8404 -'$fetch_first_path'([C|S],S1,[C|F],SR) :-$fetch_first_path376,8404 -'$fetch_second_path'([],_,[],[]).$fetch_second_path379,8480 -'$fetch_second_path'([],_,[],[])./p,predicate,predicate definition379,8480 -'$fetch_second_path'([],_,[],[]).$fetch_second_path379,8480 -'$fetch_second_path'([S1|SR],S1,[],SR) :- !.$fetch_second_path380,8514 -'$fetch_second_path'([S1|SR],S1,[],SR) :- !.$fetch_second_path380,8514 -'$fetch_second_path'([S1|SR],S1,[],SR) :- !.$fetch_second_path380,8514 -'$fetch_second_path'([C|S],S1,[C|A2],SR) :-$fetch_second_path381,8559 -'$fetch_second_path'([C|S],S1,[C|A2],SR) :-$fetch_second_path381,8559 -'$fetch_second_path'([C|S],S1,[C|A2],SR) :-$fetch_second_path381,8559 -'$add_file_search_paths'([]).$add_file_search_paths384,8639 -'$add_file_search_paths'([])./p,predicate,predicate definition384,8639 -'$add_file_search_paths'([]).$add_file_search_paths384,8639 -'$add_file_search_paths'([NS=DS|Paths]) :-$add_file_search_paths385,8669 -'$add_file_search_paths'([NS=DS|Paths]) :-$add_file_search_paths385,8669 -'$add_file_search_paths'([NS=DS|Paths]) :-$add_file_search_paths385,8669 -'$format@'(Goal,Out) :-$format@392,8823 -'$format@'(Goal,Out) :-$format@392,8823 -'$format@'(Goal,Out) :-$format@392,8823 -sformat(String, Form, Args) :-sformat395,8883 -sformat(String, Form, Args) :-sformat395,8883 -sformat(String, Form, Args) :-sformat395,8883 -stream_position_data(Prop, Term, Value) :-stream_position_data409,9302 -stream_position_data(Prop, Term, Value) :-stream_position_data409,9302 -stream_position_data(Prop, Term, Value) :-stream_position_data409,9302 -stream_position_data(Prop, Term, Value) :-stream_position_data415,9529 -stream_position_data(Prop, Term, Value) :-stream_position_data415,9529 -stream_position_data(Prop, Term, Value) :-stream_position_data415,9529 -'$stream_position_field'(char_count, 1).$stream_position_field419,9649 -'$stream_position_field'(char_count, 1)./p,predicate,predicate definition419,9649 -'$stream_position_field'(char_count, 1).$stream_position_field419,9649 -'$stream_position_field'(line_count, 2).$stream_position_field420,9693 -'$stream_position_field'(line_count, 2)./p,predicate,predicate definition420,9693 -'$stream_position_field'(line_count, 2).$stream_position_field420,9693 -'$stream_position_field'(line_position, 3).$stream_position_field421,9737 -'$stream_position_field'(line_position, 3)./p,predicate,predicate definition421,9737 -'$stream_position_field'(line_position, 3).$stream_position_field421,9737 -'$stream_position_field'(byte_count, 4).$stream_position_field422,9781 -'$stream_position_field'(byte_count, 4)./p,predicate,predicate definition422,9781 -'$stream_position_field'(byte_count, 4).$stream_position_field422,9781 -'$set_encoding'(Enc) :-$set_encoding424,9826 -'$set_encoding'(Enc) :-$set_encoding424,9826 -'$set_encoding'(Enc) :-$set_encoding424,9826 -'$codes_to_chars'(String0, String, String0) :- String0 == String, !.$codes_to_chars430,9903 -'$codes_to_chars'(String0, String, String0) :- String0 == String, !.$codes_to_chars430,9903 -'$codes_to_chars'(String0, String, String0) :- String0 == String, !.$codes_to_chars430,9903 -'$codes_to_chars'(String0, [Code|String], [Char|Chars]) :-$codes_to_chars431,9972 -'$codes_to_chars'(String0, [Code|String], [Char|Chars]) :-$codes_to_chars431,9972 -'$codes_to_chars'(String0, [Code|String], [Char|Chars]) :-$codes_to_chars431,9972 -file_exists(IFile) :-file_exists441,10205 -file_exists(IFile) :-file_exists441,10205 -file_exists(IFile) :-file_exists441,10205 -rename(IFile, OFile) :-rename448,10387 -rename(IFile, OFile) :-rename448,10387 -rename(IFile, OFile) :-rename448,10387 -access_file(IFile, Access) :-access_file458,10682 -access_file(IFile, Access) :-access_file458,10682 -access_file(IFile, Access) :-access_file458,10682 - -README,0 - -README.EAM.html,0 - -regression/dados/csv2pl_v3,333 - list_of_titles(Ss, As).list_of_titles114,2838 - get_field(N),N143,3527 - get_more_data(L, W, Key).get_more_data146,3612 -any([C|Cs]) --> [C], any(Cs).any167,3974 - natural(H),H181,4185 - natural(M),M184,4227 - Y is 2000+Y0,Y0191,4300 - days(Y,M,D,N).days192,4315 -number(N) -->number206,4509 -number(N) -->number210,4564 - -regression/dados/dados.yap,0 - -regression/dados/daynumber.yap,13815 -days(Y,M,D,Total) :-days1,0 -days(Y,M,D,Total) :-days1,0 -days(Y,M,D,Total) :-days1,0 -years_to_days(Y0, DY) :-years_to_days6,92 -years_to_days(Y0, DY) :-years_to_days6,92 -years_to_days(Y0, DY) :-years_to_days6,92 -months_to_day(1,_,0).months_to_day10,161 -months_to_day(1,_,0).months_to_day10,161 -months_to_day(2,_,31).months_to_day11,183 -months_to_day(2,_,31).months_to_day11,183 -months_to_day(3,Y,DM) :-months_to_day12,206 -months_to_day(3,Y,DM) :-months_to_day12,206 -months_to_day(3,Y,DM) :-months_to_day12,206 -months_to_day(4,Y,DM) :-months_to_day15,266 -months_to_day(4,Y,DM) :-months_to_day15,266 -months_to_day(4,Y,DM) :-months_to_day15,266 -months_to_day(5,Y,DM) :-months_to_day18,329 -months_to_day(5,Y,DM) :-months_to_day18,329 -months_to_day(5,Y,DM) :-months_to_day18,329 -months_to_day(6,Y,DM) :-months_to_day21,395 -months_to_day(6,Y,DM) :-months_to_day21,395 -months_to_day(6,Y,DM) :-months_to_day21,395 -months_to_day(7,Y,DM) :-months_to_day24,464 -months_to_day(7,Y,DM) :-months_to_day24,464 -months_to_day(7,Y,DM) :-months_to_day24,464 -months_to_day(8,Y,DM) :-months_to_day27,536 -months_to_day(8,Y,DM) :-months_to_day27,536 -months_to_day(8,Y,DM) :-months_to_day27,536 -months_to_day(9,Y,DM) :-months_to_day30,611 -months_to_day(9,Y,DM) :-months_to_day30,611 -months_to_day(9,Y,DM) :-months_to_day30,611 -months_to_day(10,Y,DM) :-months_to_day33,689 -months_to_day(10,Y,DM) :-months_to_day33,689 -months_to_day(10,Y,DM) :-months_to_day33,689 -months_to_day(11,Y,DM) :-months_to_day36,771 -months_to_day(11,Y,DM) :-months_to_day36,771 -months_to_day(11,Y,DM) :-months_to_day36,771 -months_to_day(12,Y,DM) :-months_to_day39,856 -months_to_day(12,Y,DM) :-months_to_day39,856 -months_to_day(12,Y,DM) :-months_to_day39,856 -months_to_day(13,Y,DM) :- % should never succeed...months_to_day42,944 -months_to_day(13,Y,DM) :- % should never succeed...months_to_day42,944 -months_to_day(13,Y,DM) :- % should never succeed...months_to_day42,944 -extra_day(Y,1) :- Y mod 4 == 0, !.extra_day46,1062 -extra_day(Y,1) :- Y mod 4 == 0, !.extra_day46,1062 -extra_day(Y,1) :- Y mod 4 == 0, !.extra_day46,1062 -extra_day(_,0).extra_day47,1097 -extra_day(_,0).extra_day47,1097 -date(Total, Y, M, D) :-date49,1114 -date(Total, Y, M, D) :-date49,1114 -date(Total, Y, M, D) :-date49,1114 -get_years(Total, Y, DaysLeft) :-get_years54,1216 -get_years(Total, Y, DaysLeft) :-get_years54,1216 -get_years(Total, Y, DaysLeft) :-get_years54,1216 -get_months(Total, Y, Month, Days) :-get_months62,1357 -get_months(Total, Y, Month, Days) :-get_months62,1357 -get_months(Total, Y, Month, Days) :-get_months62,1357 -gendays(120,_) :- !.gendays70,1529 -gendays(120,_) :- !.gendays70,1529 -gendays(120,_) :- !.gendays70,1529 -gendays(I0,D0) :- !,gendays71,1550 -gendays(I0,D0) :- !,gendays71,1550 -gendays(I0,D0) :- !,gendays71,1550 -daysperyear(1900,0).daysperyear78,1699 -daysperyear(1900,0).daysperyear78,1699 -daysperyear(1901,366).daysperyear79,1720 -daysperyear(1901,366).daysperyear79,1720 -daysperyear(1902,731).daysperyear80,1743 -daysperyear(1902,731).daysperyear80,1743 -daysperyear(1903,1096).daysperyear81,1766 -daysperyear(1903,1096).daysperyear81,1766 -daysperyear(1904,1461).daysperyear82,1790 -daysperyear(1904,1461).daysperyear82,1790 -daysperyear(1905,1827).daysperyear83,1814 -daysperyear(1905,1827).daysperyear83,1814 -daysperyear(1906,2192).daysperyear84,1838 -daysperyear(1906,2192).daysperyear84,1838 -daysperyear(1907,2557).daysperyear85,1862 -daysperyear(1907,2557).daysperyear85,1862 -daysperyear(1908,2922).daysperyear86,1886 -daysperyear(1908,2922).daysperyear86,1886 -daysperyear(1909,3288).daysperyear87,1910 -daysperyear(1909,3288).daysperyear87,1910 -daysperyear(1910,3653).daysperyear88,1934 -daysperyear(1910,3653).daysperyear88,1934 -daysperyear(1911,4018).daysperyear89,1958 -daysperyear(1911,4018).daysperyear89,1958 -daysperyear(1912,4383).daysperyear90,1982 -daysperyear(1912,4383).daysperyear90,1982 -daysperyear(1913,4749).daysperyear91,2006 -daysperyear(1913,4749).daysperyear91,2006 -daysperyear(1914,5114).daysperyear92,2030 -daysperyear(1914,5114).daysperyear92,2030 -daysperyear(1915,5479).daysperyear93,2054 -daysperyear(1915,5479).daysperyear93,2054 -daysperyear(1916,5844).daysperyear94,2078 -daysperyear(1916,5844).daysperyear94,2078 -daysperyear(1917,6210).daysperyear95,2102 -daysperyear(1917,6210).daysperyear95,2102 -daysperyear(1918,6575).daysperyear96,2126 -daysperyear(1918,6575).daysperyear96,2126 -daysperyear(1919,6940).daysperyear97,2150 -daysperyear(1919,6940).daysperyear97,2150 -daysperyear(1920,7305).daysperyear98,2174 -daysperyear(1920,7305).daysperyear98,2174 -daysperyear(1921,7671).daysperyear99,2198 -daysperyear(1921,7671).daysperyear99,2198 -daysperyear(1922,8036).daysperyear100,2222 -daysperyear(1922,8036).daysperyear100,2222 -daysperyear(1923,8401).daysperyear101,2246 -daysperyear(1923,8401).daysperyear101,2246 -daysperyear(1924,8766).daysperyear102,2270 -daysperyear(1924,8766).daysperyear102,2270 -daysperyear(1925,9132).daysperyear103,2294 -daysperyear(1925,9132).daysperyear103,2294 -daysperyear(1926,9497).daysperyear104,2318 -daysperyear(1926,9497).daysperyear104,2318 -daysperyear(1927,9862).daysperyear105,2342 -daysperyear(1927,9862).daysperyear105,2342 -daysperyear(1928,10227).daysperyear106,2366 -daysperyear(1928,10227).daysperyear106,2366 -daysperyear(1929,10593).daysperyear107,2391 -daysperyear(1929,10593).daysperyear107,2391 -daysperyear(1930,10958).daysperyear108,2416 -daysperyear(1930,10958).daysperyear108,2416 -daysperyear(1931,11323).daysperyear109,2441 -daysperyear(1931,11323).daysperyear109,2441 -daysperyear(1932,11688).daysperyear110,2466 -daysperyear(1932,11688).daysperyear110,2466 -daysperyear(1933,12054).daysperyear111,2491 -daysperyear(1933,12054).daysperyear111,2491 -daysperyear(1934,12419).daysperyear112,2516 -daysperyear(1934,12419).daysperyear112,2516 -daysperyear(1935,12784).daysperyear113,2541 -daysperyear(1935,12784).daysperyear113,2541 -daysperyear(1936,13149).daysperyear114,2566 -daysperyear(1936,13149).daysperyear114,2566 -daysperyear(1937,13515).daysperyear115,2591 -daysperyear(1937,13515).daysperyear115,2591 -daysperyear(1938,13880).daysperyear116,2616 -daysperyear(1938,13880).daysperyear116,2616 -daysperyear(1939,14245).daysperyear117,2641 -daysperyear(1939,14245).daysperyear117,2641 -daysperyear(1940,14610).daysperyear118,2666 -daysperyear(1940,14610).daysperyear118,2666 -daysperyear(1941,14976).daysperyear119,2691 -daysperyear(1941,14976).daysperyear119,2691 -daysperyear(1942,15341).daysperyear120,2716 -daysperyear(1942,15341).daysperyear120,2716 -daysperyear(1943,15706).daysperyear121,2741 -daysperyear(1943,15706).daysperyear121,2741 -daysperyear(1944,16071).daysperyear122,2766 -daysperyear(1944,16071).daysperyear122,2766 -daysperyear(1945,16437).daysperyear123,2791 -daysperyear(1945,16437).daysperyear123,2791 -daysperyear(1946,16802).daysperyear124,2816 -daysperyear(1946,16802).daysperyear124,2816 -daysperyear(1947,17167).daysperyear125,2841 -daysperyear(1947,17167).daysperyear125,2841 -daysperyear(1948,17532).daysperyear126,2866 -daysperyear(1948,17532).daysperyear126,2866 -daysperyear(1949,17898).daysperyear127,2891 -daysperyear(1949,17898).daysperyear127,2891 -daysperyear(1950,18263).daysperyear128,2916 -daysperyear(1950,18263).daysperyear128,2916 -daysperyear(1951,18628).daysperyear129,2941 -daysperyear(1951,18628).daysperyear129,2941 -daysperyear(1952,18993).daysperyear130,2966 -daysperyear(1952,18993).daysperyear130,2966 -daysperyear(1953,19359).daysperyear131,2991 -daysperyear(1953,19359).daysperyear131,2991 -daysperyear(1954,19724).daysperyear132,3016 -daysperyear(1954,19724).daysperyear132,3016 -daysperyear(1955,20089).daysperyear133,3041 -daysperyear(1955,20089).daysperyear133,3041 -daysperyear(1956,20454).daysperyear134,3066 -daysperyear(1956,20454).daysperyear134,3066 -daysperyear(1957,20820).daysperyear135,3091 -daysperyear(1957,20820).daysperyear135,3091 -daysperyear(1958,21185).daysperyear136,3116 -daysperyear(1958,21185).daysperyear136,3116 -daysperyear(1959,21550).daysperyear137,3141 -daysperyear(1959,21550).daysperyear137,3141 -daysperyear(1960,21915).daysperyear138,3166 -daysperyear(1960,21915).daysperyear138,3166 -daysperyear(1961,22281).daysperyear139,3191 -daysperyear(1961,22281).daysperyear139,3191 -daysperyear(1962,22646).daysperyear140,3216 -daysperyear(1962,22646).daysperyear140,3216 -daysperyear(1963,23011).daysperyear141,3241 -daysperyear(1963,23011).daysperyear141,3241 -daysperyear(1964,23376).daysperyear142,3266 -daysperyear(1964,23376).daysperyear142,3266 -daysperyear(1965,23742).daysperyear143,3291 -daysperyear(1965,23742).daysperyear143,3291 -daysperyear(1966,24107).daysperyear144,3316 -daysperyear(1966,24107).daysperyear144,3316 -daysperyear(1967,24472).daysperyear145,3341 -daysperyear(1967,24472).daysperyear145,3341 -daysperyear(1968,24837).daysperyear146,3366 -daysperyear(1968,24837).daysperyear146,3366 -daysperyear(1969,25203).daysperyear147,3391 -daysperyear(1969,25203).daysperyear147,3391 -daysperyear(1970,25568).daysperyear148,3416 -daysperyear(1970,25568).daysperyear148,3416 -daysperyear(1971,25933).daysperyear149,3441 -daysperyear(1971,25933).daysperyear149,3441 -daysperyear(1972,26298).daysperyear150,3466 -daysperyear(1972,26298).daysperyear150,3466 -daysperyear(1973,26664).daysperyear151,3491 -daysperyear(1973,26664).daysperyear151,3491 -daysperyear(1974,27029).daysperyear152,3516 -daysperyear(1974,27029).daysperyear152,3516 -daysperyear(1975,27394).daysperyear153,3541 -daysperyear(1975,27394).daysperyear153,3541 -daysperyear(1976,27759).daysperyear154,3566 -daysperyear(1976,27759).daysperyear154,3566 -daysperyear(1977,28125).daysperyear155,3591 -daysperyear(1977,28125).daysperyear155,3591 -daysperyear(1978,28490).daysperyear156,3616 -daysperyear(1978,28490).daysperyear156,3616 -daysperyear(1979,28855).daysperyear157,3641 -daysperyear(1979,28855).daysperyear157,3641 -daysperyear(1980,29220).daysperyear158,3666 -daysperyear(1980,29220).daysperyear158,3666 -daysperyear(1981,29586).daysperyear159,3691 -daysperyear(1981,29586).daysperyear159,3691 -daysperyear(1982,29951).daysperyear160,3716 -daysperyear(1982,29951).daysperyear160,3716 -daysperyear(1983,30316).daysperyear161,3741 -daysperyear(1983,30316).daysperyear161,3741 -daysperyear(1984,30681).daysperyear162,3766 -daysperyear(1984,30681).daysperyear162,3766 -daysperyear(1985,31047).daysperyear163,3791 -daysperyear(1985,31047).daysperyear163,3791 -daysperyear(1986,31412).daysperyear164,3816 -daysperyear(1986,31412).daysperyear164,3816 -daysperyear(1987,31777).daysperyear165,3841 -daysperyear(1987,31777).daysperyear165,3841 -daysperyear(1988,32142).daysperyear166,3866 -daysperyear(1988,32142).daysperyear166,3866 -daysperyear(1989,32508).daysperyear167,3891 -daysperyear(1989,32508).daysperyear167,3891 -daysperyear(1990,32873).daysperyear168,3916 -daysperyear(1990,32873).daysperyear168,3916 -daysperyear(1991,33238).daysperyear169,3941 -daysperyear(1991,33238).daysperyear169,3941 -daysperyear(1992,33603).daysperyear170,3966 -daysperyear(1992,33603).daysperyear170,3966 -daysperyear(1993,33969).daysperyear171,3991 -daysperyear(1993,33969).daysperyear171,3991 -daysperyear(1994,34334).daysperyear172,4016 -daysperyear(1994,34334).daysperyear172,4016 -daysperyear(1995,34699).daysperyear173,4041 -daysperyear(1995,34699).daysperyear173,4041 -daysperyear(1996,35064).daysperyear174,4066 -daysperyear(1996,35064).daysperyear174,4066 -daysperyear(1997,35430).daysperyear175,4091 -daysperyear(1997,35430).daysperyear175,4091 -daysperyear(1998,35795).daysperyear176,4116 -daysperyear(1998,35795).daysperyear176,4116 -daysperyear(1999,36160).daysperyear177,4141 -daysperyear(1999,36160).daysperyear177,4141 -daysperyear(2000,36525).daysperyear178,4166 -daysperyear(2000,36525).daysperyear178,4166 -daysperyear(2001,36891).daysperyear179,4191 -daysperyear(2001,36891).daysperyear179,4191 -daysperyear(2002,37256).daysperyear180,4216 -daysperyear(2002,37256).daysperyear180,4216 -daysperyear(2003,37621).daysperyear181,4241 -daysperyear(2003,37621).daysperyear181,4241 -daysperyear(2004,37986).daysperyear182,4266 -daysperyear(2004,37986).daysperyear182,4266 -daysperyear(2005,38352).daysperyear183,4291 -daysperyear(2005,38352).daysperyear183,4291 -daysperyear(2006,38717).daysperyear184,4316 -daysperyear(2006,38717).daysperyear184,4316 -daysperyear(2007,39082).daysperyear185,4341 -daysperyear(2007,39082).daysperyear185,4341 -daysperyear(2008,39447).daysperyear186,4366 -daysperyear(2008,39447).daysperyear186,4366 -daysperyear(2009,39813).daysperyear187,4391 -daysperyear(2009,39813).daysperyear187,4391 -daysperyear(2010,40178).daysperyear188,4416 -daysperyear(2010,40178).daysperyear188,4416 -daysperyear(2011,40543).daysperyear189,4441 -daysperyear(2011,40543).daysperyear189,4441 -daysperyear(2012,40908).daysperyear190,4466 -daysperyear(2012,40908).daysperyear190,4466 -daysperyear(2013,41274).daysperyear191,4491 -daysperyear(2013,41274).daysperyear191,4491 -daysperyear(2014,41639).daysperyear192,4516 -daysperyear(2014,41639).daysperyear192,4516 -daysperyear(2015,42004).daysperyear193,4541 -daysperyear(2015,42004).daysperyear193,4541 -daysperyear(2016,42369).daysperyear194,4566 -daysperyear(2016,42369).daysperyear194,4566 -daysperyear(2017,42735).daysperyear195,4591 -daysperyear(2017,42735).daysperyear195,4591 -daysperyear(2018,43100).daysperyear196,4616 -daysperyear(2018,43100).daysperyear196,4616 -daysperyear(2019,43465).daysperyear197,4641 -daysperyear(2019,43465).daysperyear197,4641 - -regression/dados/order_by.pl,486 -order_by(PredicateIndicator, Argument) :-order_by13,285 -order_by(PredicateIndicator, Argument) :-order_by13,285 -order_by(PredicateIndicator, Argument) :-order_by13,285 -assert_in_module(Module, P) :-assert_in_module23,632 -assert_in_module(Module, P) :-assert_in_module23,632 -assert_in_module(Module, P) :-assert_in_module23,632 -by_arg(Argument, Delta, E1, E2) :-by_arg26,690 -by_arg(Argument, Delta, E1, E2) :-by_arg26,690 -by_arg(Argument, Delta, E1, E2) :-by_arg26,690 - -regression/dados/run,0 - -regression/errors.yap,311 -:- discontiguous main/0.discontiguous13,241 -:- discontiguous main/0.discontiguous13,241 -a(1).a24,542 -a(1).a24,542 -a(2,2).a25,548 -a(2,2).a25,548 -a(1).a26,556 -a(1).a26,556 -a(X). % Xa38,845 -a(X). % Xa38,845 -a(_X). % no msga39,856 -a(_X). % no msga39,856 -a :- b(X) ; c(X). %no msga40,872 - -regression/metaconj.yap,264 -a(X) :- X.a1,0 -a(X) :- X.a1,0 -a(X) :- X.a1,0 -b(X) :- X, writeln(X).b2,11 -b(X) :- X, writeln(X).b2,11 -b(X) :- X, writeln(X).b2,11 -b(X) :- X, writeln(X).b2,11 -b(X) :- X, writeln(X).b2,11 -c(X) :- X, X.c3,34 -c(X) :- X, X.c3,34 -c(X) :- X, X.c3,34 - -regression/modules/dynimport.yap,30 -d(2).d10,203 -d(2).d10,203 - -regression/modules/goal_expansion_tests.yap,0 - -regression/modules/meta.yap,141 -meta_expand(InputCl, C1) :-meta_expand11,112 -meta_expand(InputCl, C1) :-meta_expand11,112 -meta_expand(InputCl, C1) :-meta_expand11,112 - -regression/modules/meta_tests.pl,220 -:- dynamic a/1, b/1, c/1, d:bd/1, g:c/1, b/0, gflags:flag_define/6.dynamic6,61 -:- dynamic a/1, b/1, c/1, d:bd/1, g:c/1, b/0, gflags:flag_define/6.dynamic6,61 -a(1).a8,131 -a(1).a8,131 -b(1).b9,137 -b(1).b9,137 - -regression/modules/mod1.yap,36 -mod1(a).mod12,1 -mod1(a).mod12,1 - -regression/modules/runmeta.yap,291 -meta_expand( Clause, Canon) :-meta_expand9,74 -meta_expand( Clause, Canon) :-meta_expand9,74 -meta_expand( Clause, Canon) :-meta_expand9,74 -indicator(MC, HM:N/A, HM:G0) :-indicator30,413 -indicator(MC, HM:N/A, HM:G0) :-indicator30,413 -indicator(MC, HM:N/A, HM:G0) :-indicator30,413 - -regression/mu1.yap,24 -a(1).a1,0 -a(1).a1,0 - -regression/mu2.yap,24 -a(2).a1,0 -a(2).a1,0 - -regression/parse/run,0 - -regression/plsimple.pl,81 -test(reverse) :-test7,89 -test(reverse) :-test7,89 -test(reverse) :-test7,89 - -sign,0 - -swi/console/common.h,104 -#define IMODE_SWITCH_CHAR IMODE_SWITCH_CHAR25,958 -#define RL_CANCELED_CHARP RL_CANCELED_CHARP26,987 - -swi/console/complete.c,337 -#define EOS EOS30,1032 -typedef wint_t _TINT;_TINT34,1068 -static TCHAR *completion_chars = TEXT("~:\\/-.");completion_chars37,1098 -complete_scan_backwards(Line ln, size_t from)complete_scan_backwards40,1163 -close_quote(int c)close_quote56,1407 -rlc_complete_file_function(RlcCompleteData data)rlc_complete_file_function62,1476 - -swi/console/console.c,11716 -#define initHeapDebug(initHeapDebug77,3277 -#define WM_MOUSEWHEEL WM_MOUSEWHEEL83,3401 -#define WM_UNICHAR WM_UNICHAR86,3456 -#define UNICODE_NOCHAR UNICODE_NOCHAR87,3481 -typedef DWORD DWORD_PTR;DWORD_PTR91,3566 -#define _MAKE_DLL _MAKE_DLL98,3675 -#undef _export_export99,3695 -#define isletter(isletter108,3845 -#define MAXPATHLEN MAXPATHLEN112,3921 -#define CHAR_MAX CHAR_MAX116,3969 -#define MAXLINE MAXLINE119,3998 -#define CMD_INITIAL CMD_INITIAL121,4051 -#define CMD_ESC CMD_ESC122,4073 -#define CMD_ANSI CMD_ANSI123,4092 -#define GWL_DATA GWL_DATA125,4112 -#define CHG_RESET CHG_RESET127,4162 -#define CHG_CHANGED CHG_CHANGED128,4199 -#define CHG_CLEAR CHG_CLEAR129,4250 -#define CHG_CARET CHG_CARET130,4283 -#define SEL_CHAR SEL_CHAR132,4327 -#define SEL_WORD SEL_WORD133,4378 -#define SEL_LINE SEL_LINE134,4424 -#define EOS EOS137,4483 -#define ESC ESC140,4505 -#define WM_RLC_INPUT WM_RLC_INPUT142,4551 -#define WM_RLC_WRITE WM_RLC_WRITE143,4609 -#define WM_RLC_FLUSH WM_RLC_FLUSH144,4659 -#define WM_RLC_READY WM_RLC_READY145,4718 -#define WM_RLC_CLOSEWIN WM_RLC_CLOSEWIN146,4780 -#define IMODE_RAW IMODE_RAW149,4914 -#define IMODE_COOKED IMODE_COOKED150,4954 -#define NextLine(NextLine152,4998 -#define PrevLine(PrevLine153,5055 -#define Bounds(Bounds154,5112 -#define Control(Control156,5185 -#define streq(streq158,5217 -#define OPT_SIZE OPT_SIZE162,5318 -#define OPT_POSITION OPT_POSITION163,5340 - RlcData _rlc_stdio = NULL; /* the main buffer */_rlc_stdio169,5460 -static int _rlc_show; /* initial show */_rlc_show170,5517 -static char _rlc_word_chars[CHAR_MAX]; /* word-characters (selection) */_rlc_word_chars171,5564 -static const TCHAR * _rlc_program; /* name of the program */_rlc_program172,5637 -static HANDLE _rlc_hinstance; /* Global instance */_rlc_hinstance173,5699 -static HICON _rlc_hicon; /* Global icon */_rlc_hicon174,5754 -static RlcUpdateHook _rlc_update_hook;_rlc_update_hook227,7994 -static RlcTimerHook _rlc_timer_hook;_rlc_timer_hook228,8033 -static RlcRenderHook _rlc_render_hook;_rlc_render_hook229,8070 -static RlcRenderAllHook _rlc_render_all_hook;_rlc_render_all_hook230,8109 -static RlcInterruptHook _rlc_interrupt_hook;_rlc_interrupt_hook231,8155 -static RlcResizeHook _rlc_resize_hook;_rlc_resize_hook232,8200 -static RlcMenuHook _rlc_menu_hook;_rlc_menu_hook233,8242 -static RlcMessageHook _rlc_message_hook;_rlc_message_hook234,8277 -static int _rlc_copy_output_to_debug_output=0; /* != 0: copy to debugger */_rlc_copy_output_to_debug_output235,8318 -static int emulate_three_buttons;emulate_three_buttons236,8394 -static HWND emu_hwnd; /* Emulating for this window */emu_hwnd237,8428 -#define DEBUG(DEBUG246,8737 -rlc_assert(const TCHAR *msg)rlc_assert259,9310 -rlc_check_assertions(RlcData b)rlc_check_assertions264,9424 -#define DEBUG(DEBUG282,9868 -#define rlc_check_assertions(rlc_check_assertions283,9898 -rlc_long_name(TCHAR *file)rlc_long_name294,10330 -rlc_window_class(HICON icon)rlc_window_class343,11382 -rlc_main(HANDLE hInstance, HANDLE hPrevInstance,rlc_main388,13000 -rlc_create_console(rlc_console_attr *attr)rlc_create_console423,13767 -rlc_create_window(RlcData b)rlc_create_window467,14802 -rlc_iswin32s()rlc_iswin32s516,16324 -rlc_progbase(TCHAR *path, TCHAR *base)rlc_progbase525,16459 -rlc_kill_wnd_proc(HWND hwnd, UINT message, UINT wParam, LONG lParam)rlc_kill_wnd_proc546,16858 -rlc_kill_window_class(void)rlc_kill_window_class557,17086 -_rlc_create_kill_window(RlcData b)_rlc_create_kill_window585,17796 -#define MAXREGSTRLEN MAXREGSTRLEN598,18096 -reg_save_int(HKEY key, const TCHAR *name, int value)reg_save_int601,18135 -reg_save_str(HKEY key, const TCHAR *name, TCHAR *value)reg_save_str612,18435 -rlc_save_options(RlcData b)rlc_save_options620,18718 -reg_get_int(HKEY key, const TCHAR *name, int mn, int def, int mx, int *value)reg_get_int654,19650 -reg_get_str(HKEY key, const TCHAR *name, TCHAR *value, int length)reg_get_str685,20224 -reg_open_key(TCHAR **which, int create)reg_open_key706,20667 -rlc_option_key(rlc_console_attr *attr, int create)rlc_option_key738,21218 -rlc_get_options(rlc_console_attr *attr)rlc_get_options760,21701 -rlc_breakargs(TCHAR *line, TCHAR **argv)rlc_breakargs807,23314 -rcl_setup_ansi_colors(RlcData b)rcl_setup_ansi_colors851,24117 -rlc_color(rlc_console con, int which, COLORREF c)rlc_color902,26117 -rlc_kill(RlcData b)rlc_kill940,26826 -rlc_interrupt(RlcData b)rlc_interrupt981,27677 -typed_char(RlcData b, int chr)typed_char990,27825 -rlc_destroy(RlcData b)rlc_destroy1012,28280 -IsDownKey(int code)IsDownKey1022,28418 -rlc_wnd_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)rlc_wnd_proc1030,28523 -rlc_get_message(MSG *msg, HWND hwnd, UINT low, UINT high)rlc_get_message1403,36410 -rlc_dispatch(RlcData b)rlc_dispatch1418,36699 -rlc_yield()rlc_yield1438,37149 -rlc_init_word_chars(void)rlc_init_word_chars1452,37397 -rlc_word_char(int chr, int isword)rlc_word_char1461,37536 -rlc_is_word_char(int chr)rlc_is_word_char1468,37649 -#define SelLT(SelLT1480,37903 -#define SelEQ(SelEQ1481,37980 -rlc_min(RlcData b, int x, int y)rlc_min1484,38053 -rlc_max(RlcData b, int x, int y)rlc_max1493,38203 -rlc_changed_line(RlcData b, int i, int mask)rlc_changed_line1502,38354 -rlc_set_selection(RlcData b, int sl, int sc, int el, int ec)rlc_set_selection1508,38446 -rlc_translate_mouse(RlcData b, int x, int y, int *line, int *chr)rlc_translate_mouse1569,39906 -rlc_start_selection(RlcData b, int x, int y)rlc_start_selection1623,40826 -rlc_between(RlcData b, int f, int t, int v)rlc_between1635,41073 -rlc_word_selection(RlcData b, int x, int y)rlc_word_selection1647,41304 -rlc_extend_selection(RlcData b, int x, int y)rlc_extend_selection1670,41793 -rlc_read_from_window(RlcData b, int sl, int sc, int el, int ec)rlc_read_from_window1719,43267 -rlc_has_selection(RlcData b)rlc_has_selection1766,44350 -rlc_selection(RlcData b)rlc_selection1775,44526 -rlc_copy(RlcData b)rlc_copy1785,44730 -rlc_place_caret(RlcData b)rlc_place_caret1825,45505 -rlc_update_scrollbar(RlcData b)rlc_update_scrollbar1864,46326 -rcl_paint_text(RlcData b, HDC hdc,rcl_paint_text1882,46781 -rlc_redraw(RlcData b)rlc_redraw1956,48472 -rlc_request_redraw(RlcData b)rlc_request_redraw2062,51229 -rlc_normalise(RlcData b)rlc_normalise2099,51992 -rlc_resize_pixel_units(RlcData b, int w, int h)rlc_resize_pixel_units2109,52263 -rlc_init_text_dimensions(RlcData b, HFONT font)rlc_init_text_dimensions2138,52879 -text_width(RlcData b, HDC hdc, const text_char *text, int len)text_width2190,54241 -tchar_width(RlcData b, HDC hdc, const TCHAR *text, int len)tchar_width2208,54552 -rlc_save_font_options(HFONT font, rlc_console_attr *attr)rlc_save_font_options2221,54772 -rlc_queryfont(RlcData b)rlc_queryfont2244,55351 -rlc_make_buffer(int w, int h)rlc_make_buffer2282,56136 -rlc_shift_lines_down(RlcData b, int line)rlc_shift_lines_down2316,57071 -rlc_shift_lines_up(RlcData b, int line)rlc_shift_lines_up2337,57651 -rlc_resize(RlcData b, int w, int h)rlc_resize2353,57924 -rlc_reinit_line(RlcData b, int line)rlc_reinit_line2442,60448 -rlc_free_line(RlcData b, int line)rlc_free_line2453,60629 -rlc_adjust_line(RlcData b, int line)rlc_adjust_line2463,60789 -rlc_unadjust_line(RlcData b, int line)rlc_unadjust_line2476,61052 -rlc_open_line(RlcData b)rlc_open_line2493,61409 -rlc_add_line(RlcData b)rlc_add_line2511,61835 -rlc_count_lines(RlcData b, int from, int to)rlc_count_lines2521,62024 -rlc_add_lines(RlcData b, int here, int add)rlc_add_lines2530,62157 -rlc_need_arg(RlcData b, int arg, int def)rlc_need_arg2546,62451 -rlc_caret_up(RlcData b, int arg)rlc_caret_up2555,62581 -rlc_caret_down(RlcData b, int arg)rlc_caret_down2564,62745 -rlc_caret_forward(RlcData b, int arg)rlc_caret_forward2583,63262 -rlc_caret_backward(RlcData b, int arg)rlc_caret_backward2597,63505 -rlc_cariage_return(RlcData b)rlc_cariage_return2610,63703 -rlc_tab(RlcData b)rlc_tab2618,63795 -rlc_set_caret(RlcData b, int x, int y)rlc_set_caret2641,64185 -rlc_save_caret_position(RlcData b)rlc_save_caret_position2658,64515 -rlc_restore_caret_position(RlcData b)rlc_restore_caret_position2665,64659 -rlc_erase_display(RlcData b)rlc_erase_display2671,64759 -rlc_erase_line(RlcData b)rlc_erase_line2687,65053 -rlc_sgr(RlcData b, int sgr)rlc_sgr2696,65200 -rlc_put(RlcData b, int chr)rlc_put2720,65986 -#define CMD(CMD2742,66442 -#define CMD(CMD2744,66482 -rlc_putansi(RlcData b, int chr)rlc_putansi2748,66522 -rlc_paste(RlcData b)rlc_paste2872,68918 -rlc_get_mark(rlc_console c, RlcMark m)rlc_get_mark2915,69757 -rlc_goto_mark(rlc_console c, RlcMark m, const TCHAR *data, size_t offset)rlc_goto_mark2924,69889 -rlc_erase_from_caret(rlc_console c)rlc_erase_from_caret2947,70268 -rlc_putchar(rlc_console c, int chr)rlc_putchar2968,70647 -rlc_read_screen(rlc_console c, RlcMark f, RlcMark t)rlc_read_screen2976,70750 -rlc_update(rlc_console c)rlc_update2987,70950 -window_loop(LPVOID arg)window_loop3002,71222 -getch(rlc_console c)getch3084,72921 -getche(rlc_console c)getche3115,73486 -getkey(rlc_console con)getkey3129,73709 -kbhit(rlc_console c)kbhit3150,74074 -ScreenGetCursor(rlc_console c, int *row, int *col)ScreenGetCursor3158,74176 -ScreenSetCursor(rlc_console c, int row, int col)ScreenSetCursor3167,74355 -ScreenCols(rlc_console c)ScreenCols3175,74478 -ScreenRows(rlc_console c)ScreenRows3183,74563 -#define QN(QN3193,74742 -rlc_make_queue(int size)rlc_make_queue3197,74803 -rlc_resize_queue(RlcQueue q, int size)rlc_resize_queue3214,75091 -rlc_add_queue(RlcData b, RlcQueue q, int chr)rlc_add_queue3239,75489 -rlc_is_empty_queue(RlcQueue q)rlc_is_empty_queue3261,75878 -rlc_from_queue(RlcQueue q)rlc_from_queue3270,75987 -rlc_read(rlc_console c, TCHAR *buf, size_t count)rlc_read3292,76448 -rlc_do_write(RlcData b, TCHAR *buf, int count)rlc_do_write3355,77795 -rlc_flush_output(rlc_console c)rlc_flush_output3378,78146 -rlc_write(rlc_console c, TCHAR *buf, size_t count)rlc_write3395,78375 -free_rlc_data(RlcData b)free_rlc_data3430,79005 -rlc_close(rlc_console c)rlc_close3460,79871 -rlc_prompt(rlc_console c, const TCHAR *new)rlc_prompt3488,80330 -rlc_clearprompt(rlc_console c)rlc_clearprompt3505,80571 -rlc_title(rlc_console c, TCHAR *title, TCHAR *old, int size)rlc_title3520,80800 -rlc_icon(rlc_console c, HICON icon)rlc_icon3536,81119 -rlc_window_pos(rlc_console c,rlc_window_pos3543,81226 -rlc_hinstance()rlc_hinstance3565,81539 -rlc_hwnd(rlc_console c)rlc_hwnd3571,81589 -rlc_copy_output_to_debug_output(int new)rlc_copy_output_to_debug_output3582,81786 -rlc_update_hook(RlcUpdateHook new)rlc_update_hook3591,81948 -rlc_timer_hook(RlcTimerHook new)rlc_timer_hook3599,82080 -rlc_render_hook(RlcRenderHook new)rlc_render_hook3607,82208 -rlc_render_all_hook(RlcRenderAllHook new)rlc_render_all_hook3615,82344 -rlc_interrupt_hook(RlcInterruptHook new)rlc_interrupt_hook3623,82498 -rlc_resize_hook(RlcResizeHook new)rlc_resize_hook3631,82646 -rlc_menu_hook(RlcMenuHook new)rlc_menu_hook3639,82777 -rlc_message_hook(RlcMessageHook new)rlc_message_hook3648,82902 -rlc_set(rlc_console c, int what, uintptr_t data, RlcFreeDataHook hook)rlc_set3657,83031 -rlc_get(rlc_console c, int what, uintptr_t *data)rlc_get3674,83392 -free_user_data(RlcData b)free_user_data3699,83930 -noMemory(void)noMemory3720,84300 -rlc_malloc(size_t size)rlc_malloc3728,84425 -rlc_realloc(void *ptr, size_t size)rlc_realloc3742,84594 -rlc_free(void *ptr)rlc_free3753,84734 -initHeapDebug(void)initHeapDebug3764,84899 -Dprintf(const TCHAR *fmt, ...)Dprintf3788,85410 -Dprint_lines(RlcData b, int from, int to)Dprint_lines3800,85614 - -swi/console/console.h,7417 -#define _CONSOLE_H_INCLUDED_CONSOLE_H_INCLUDED26,986 -#define RLC_VENDOR RLC_VENDOR30,1056 -#define RLC_VENDOR RLC_VENDOR32,1093 -#define RLC_TITLE_MAX RLC_TITLE_MAX36,1139 -#define _export _export40,1233 -#define _export _export42,1277 -typedef long intptr_t;intptr_t50,1393 -typedef unsigned long uintptr_t;uintptr_t51,1416 -#define RLC_APPTIMER_ID RLC_APPTIMER_ID57,1490 -{ int first;first60,1566 -{ int first;__anon499::first60,1566 - int last;last61,1581 - int last;__anon499::last61,1581 - int size; /* size of the buffer */size62,1595 - int size; /* size of the buffer */__anon499::size62,1595 - TCHAR *buffer; /* character buffer */buffer63,1636 - TCHAR *buffer; /* character buffer */__anon499::buffer63,1636 - int flags; /* flags for the queue */flags64,1685 - int flags; /* flags for the queue */__anon499::flags64,1685 -} rlc_queue, *RlcQueue;rlc_queue65,1728 -} rlc_queue, *RlcQueue;RlcQueue65,1728 -#define RLC_EOF RLC_EOF67,1753 -{ int mark_x;mark_x70,1816 -{ int mark_x;__anon500::mark_x70,1816 - int mark_y;mark_y71,1831 - int mark_y;__anon500::mark_y71,1831 -} rlc_mark, *RlcMark;rlc_mark72,1846 -} rlc_mark, *RlcMark;RlcMark72,1846 -{ const TCHAR *title; /* window title */title75,1884 -{ const TCHAR *title; /* window title */__anon501::title75,1884 - const TCHAR *key; /* Last part of registry-key */key76,1929 - const TCHAR *key; /* Last part of registry-key */__anon501::key76,1929 - int width; /* # characters(0: default) */width77,1985 - int width; /* # characters(0: default) */__anon501::width77,1985 - int height; /* # characters (0: default) */height78,2032 - int height; /* # characters (0: default) */__anon501::height78,2032 - int x; /* # pixels (0: default) */x79,2081 - int x; /* # pixels (0: default) */__anon501::x79,2081 - int y; /* # pixels (0: default) */y80,2121 - int y; /* # pixels (0: default) */__anon501::y80,2121 - int savelines; /* # lines to save (0: default) */savelines81,2161 - int savelines; /* # lines to save (0: default) */__anon501::savelines81,2161 - TCHAR face_name[32]; /* font name */face_name82,2215 - TCHAR face_name[32]; /* font name */__anon501::face_name82,2215 - int font_family; /* family id */font_family83,2256 - int font_family; /* family id */__anon501::font_family83,2256 - int font_size;font_size84,2293 - int font_size;__anon501::font_size84,2293 - int font_weight;font_weight85,2311 - int font_weight;__anon501::font_weight85,2311 - int font_char_set;font_char_set86,2331 - int font_char_set;__anon501::font_char_set86,2331 -} rlc_console_attr;rlc_console_attr87,2353 -typedef void * rlc_console; /* console handle */rlc_console89,2374 -typedef void (*RlcUpdateHook)(void); /* Graphics update hook */RlcUpdateHook91,2425 -typedef void (*RlcTimerHook)(int); /* Timer fireing hook */RlcTimerHook92,2489 -typedef int (*RlcRenderHook)(WPARAM); /* Render one format */RlcRenderHook93,2549 -typedef void (*RlcRenderAllHook)(void); /* Render all formats */RlcRenderAllHook94,2611 -typedef int (*RlcMain)(rlc_console c, int, TCHAR**); /* main() */RlcMain95,2676 -typedef void (*RlcInterruptHook)(rlc_console, int); /* Hook for Control-C */RlcInterruptHook96,2742 -typedef void (*RlcResizeHook)(int, int); /* Hook for window change */RlcResizeHook97,2819 -typedef void (*RlcMenuHook)(rlc_console, const TCHAR *id); /* Hook for menu-selection */RlcMenuHook98,2889 -typedef void (*RlcFreeDataHook)(uintptr_t data); /* release data */RlcFreeDataHook99,2978 -#define RLC_WINDOW RLC_WINDOW103,3131 -#define RLC_TEXT RLC_TEXT104,3181 -#define RLC_HIGHLIGHT RLC_HIGHLIGHT105,3222 -#define RLC_HIGHLIGHTTEXT RLC_HIGHLIGHTTEXT106,3282 -typedef LRESULT (*RlcMessageHook)(HWND hwnd, UINT message,RlcMessageHook119,3871 -#define RLC_APPLICATION_THREAD RLC_APPLICATION_THREAD172,5942 -#define RLC_APPLICATION_THREAD_ID RLC_APPLICATION_THREAD_ID173,6011 -#define RLC_VALUE(RLC_VALUE174,6078 -typedef struct _line_line187,6371 -{ rlc_mark origin; /* origin of edit */origin188,6392 -{ rlc_mark origin; /* origin of edit */_line::origin188,6392 - size_t point; /* location of the caret */point189,6434 - size_t point; /* location of the caret */_line::point189,6434 - size_t size; /* # characters in buffer */size190,6480 - size_t size; /* # characters in buffer */_line::size190,6480 - size_t allocated; /* # characters allocated */allocated191,6526 - size_t allocated; /* # characters allocated */_line::allocated191,6526 - size_t change_start; /* start of change */change_start192,6576 - size_t change_start; /* start of change */_line::change_start192,6576 - int complete; /* line is completed */complete193,6622 - int complete; /* line is completed */_line::complete193,6622 - int reprompt; /* repeat the prompt */reprompt194,6664 - int reprompt; /* repeat the prompt */_line::reprompt194,6664 - TCHAR *data; /* the data (malloc'ed) */data195,6706 - TCHAR *data; /* the data (malloc'ed) */_line::data195,6706 - rlc_console console; /* console I belong to */console196,6757 - rlc_console console; /* console I belong to */_line::console196,6757 -} line, *Line;line197,6807 -} line, *Line;Line197,6807 -#define COMPLETE_MAX_WORD_LEN COMPLETE_MAX_WORD_LEN199,6823 -#define COMPLETE_MAX_MATCHES COMPLETE_MAX_MATCHES200,6857 -#define COMPLETE_INIT COMPLETE_INIT202,6891 -#define COMPLETE_ENUMERATE COMPLETE_ENUMERATE203,6918 -#define COMPLETE_CLOSE COMPLETE_CLOSE204,6947 -typedef int (*RlcCompleteFunc)(struct _complete_data *);RlcCompleteFunc208,7000 -typedef struct _complete_data_complete_data210,7058 -{ Line line; /* line we are completing */line211,7088 -{ Line line; /* line we are completing */_complete_data::line211,7088 - int call_type; /* COMPLETE_* */call_type212,7133 - int call_type; /* COMPLETE_* */_complete_data::call_type212,7133 - int replace_from; /* index to start replacement */replace_from213,7169 - int replace_from; /* index to start replacement */_complete_data::replace_from213,7169 - int quote; /* closing quote */quote214,7224 - int quote; /* closing quote */_complete_data::quote214,7224 - int case_insensitive; /* if TRUE: insensitive match */case_insensitive215,7260 - int case_insensitive; /* if TRUE: insensitive match */_complete_data::case_insensitive215,7260 - TCHAR candidate[COMPLETE_MAX_WORD_LEN];candidate216,7318 - TCHAR candidate[COMPLETE_MAX_WORD_LEN];_complete_data::candidate216,7318 - TCHAR buf_handle[COMPLETE_MAX_WORD_LEN];buf_handle217,7361 - TCHAR buf_handle[COMPLETE_MAX_WORD_LEN];_complete_data::buf_handle217,7361 - RlcCompleteFunc function; /* function for continuation */function218,7405 - RlcCompleteFunc function; /* function for continuation */_complete_data::function218,7405 - void *ptr_handle; /* pointer handle for client */ptr_handle219,7466 - void *ptr_handle; /* pointer handle for client */_complete_data::ptr_handle219,7466 - intptr_t num_handle; /* numeric handle for client */num_handle220,7526 - intptr_t num_handle; /* numeric handle for client */_complete_data::num_handle220,7526 -} rlc_complete_data, *RlcCompleteData;rlc_complete_data221,7582 -} rlc_complete_data, *RlcCompleteData;RlcCompleteData221,7582 - -swi/console/console_i.h,12987 -typedef struct _history_history33,1279 -{ int size; /* size of the history */size34,1303 -{ int size; /* size of the history */_history::size34,1303 - int tail; /* oldest position */tail35,1344 - int tail; /* oldest position */_history::tail35,1344 - int head; /* newest position */head36,1381 - int head; /* newest position */_history::head36,1381 - int current; /* for retrieval */current37,1418 - int current; /* for retrieval */_history::current37,1418 - TCHAR ** lines; /* the lines */lines38,1455 - TCHAR ** lines; /* the lines */_history::lines38,1455 -} history, *History;history39,1491 -} history, *History;History39,1491 -#define ANSI_MAX_ARGC ANSI_MAX_ARGC46,1611 -#define MAXPROMPT MAXPROMPT47,1673 -#define OQSIZE OQSIZE48,1728 -#define MAX_USER_VALUES MAX_USER_VALUES49,1774 -typedef struct lqueuedlqueued51,1833 -{ TCHAR * line; /* Lines in queue */line52,1856 -{ TCHAR * line; /* Lines in queue */lqueued::line52,1856 - struct lqueued* next; /* Next in queue */next53,1897 - struct lqueued* next; /* Next in queue */lqueued::next53,1897 -} lqueued, *LQueued;lqueued54,1943 -} lqueued, *LQueued;LQueued54,1943 -typedef unsigned short text_flags;text_flags56,1965 -#define ANSI_COLOR_DEFAULT ANSI_COLOR_DEFAULT58,2001 -#define TF_FG(TF_FG60,2032 -#define TF_BG(TF_BG61,2077 -#define TF_BOLD(TF_BOLD62,2127 -#define TF_UNDERLINE(TF_UNDERLINE63,2171 -#define TF_DEFAULT TF_DEFAULT65,2226 -#define TF_SET_FG(TF_SET_FG67,2291 -#define TF_SET_BG(TF_SET_BG68,2333 -#define TF_SET_BOLD(TF_SET_BOLD69,2385 -#define TF_SET_UNDERLINE(TF_SET_UNDERLINE70,2437 -{ TCHAR code; /* character code */code73,2510 -{ TCHAR code; /* character code */__anon502::code73,2510 - text_flags flags; /* flags for the text */flags74,2549 - text_flags flags; /* flags for the text */__anon502::flags74,2549 -} text_char;text_char75,2597 -{ text_char *text; /* the storage */text78,2626 -{ text_char *text; /* the storage */__anon503::text78,2626 - unsigned short size; /* #characters in line */size79,2669 - unsigned short size; /* #characters in line */__anon503::size79,2669 - unsigned adjusted : 1; /* line has been adjusted? */adjusted80,2720 - unsigned adjusted : 1; /* line has been adjusted? */__anon503::adjusted80,2720 - unsigned changed : 1; /* line needs redraw */changed81,2777 - unsigned changed : 1; /* line needs redraw */__anon503::changed81,2777 - unsigned softreturn : 1; /* wrapped line */softreturn82,2827 - unsigned softreturn : 1; /* wrapped line */__anon503::softreturn82,2827 -} text_line, *TextLine;text_line83,2874 -} text_line, *TextLine;TextLine83,2874 -{ uintptr_t data; /* the data itself */data86,2914 -{ uintptr_t data; /* the data itself */__anon504::data86,2914 - RlcFreeDataHook hook; /* call when destroying console */hook87,2956 - RlcFreeDataHook hook; /* call when destroying console */__anon504::hook87,2956 -} user_data;user_data88,3017 -#define RLC_MAGIC RLC_MAGIC90,3031 -{ int magic;magic93,3105 -{ int magic;__anon505::magic93,3105 - int height; /* number of lines in buffer */height94,3119 - int height; /* number of lines in buffer */__anon505::height94,3119 - int width; /* #characters ler line */width95,3168 - int width; /* #characters ler line */__anon505::width95,3168 - int first; /* first line of ring */first96,3211 - int first; /* first line of ring */__anon505::first96,3211 - int last; /* last line of ring */last97,3252 - int last; /* last line of ring */__anon505::last97,3252 - int caret_x; /* cursor's x-position */caret_x98,3291 - int caret_x; /* cursor's x-position */__anon505::caret_x98,3291 - int caret_y; /* its line */caret_y99,3334 - int caret_y; /* its line */__anon505::caret_y99,3334 - int window_start; /* start line of the window */window_start100,3366 - int window_start; /* start line of the window */__anon505::window_start100,3366 - int window_size; /* #lines on the window */window_size101,3419 - int window_size; /* #lines on the window */__anon505::window_size101,3419 - TextLine lines; /* the actual lines */lines102,3467 - TextLine lines; /* the actual lines */__anon505::lines102,3467 - int sel_unit; /* SEL_CHAR, SEL_WORD, SEL_LINE */sel_unit103,3510 - int sel_unit; /* SEL_CHAR, SEL_WORD, SEL_LINE */__anon505::sel_unit103,3510 - int sel_org_line; /* line origin of the selection */sel_org_line104,3563 - int sel_org_line; /* line origin of the selection */__anon505::sel_org_line104,3563 - int sel_org_char; /* char origin of the selection */sel_org_char105,3620 - int sel_org_char; /* char origin of the selection */__anon505::sel_org_char105,3620 - int sel_start_line; /* starting line for selection */sel_start_line106,3677 - int sel_start_line; /* starting line for selection */__anon505::sel_start_line106,3677 - int sel_start_char; /* starting char for selection */sel_start_char107,3735 - int sel_start_char; /* starting char for selection */__anon505::sel_start_char107,3735 - int sel_end_line; /* ending line for selection */sel_end_line108,3793 - int sel_end_line; /* ending line for selection */__anon505::sel_end_line108,3793 - int sel_end_char; /* ending char for selection */sel_end_char109,3847 - int sel_end_char; /* ending char for selection */__anon505::sel_end_char109,3847 - int cmdstat; /* for parsing ANSI escape */cmdstat110,3901 - int cmdstat; /* for parsing ANSI escape */__anon505::cmdstat110,3901 - int argstat; /* argument status ANSI */argstat111,3948 - int argstat; /* argument status ANSI */__anon505::argstat111,3948 - int argc; /* argument count for ANSI */argc112,3992 - int argc; /* argument count for ANSI */__anon505::argc112,3992 - int argv[ANSI_MAX_ARGC]; /* argument vector for ANSI */argv113,4037 - int argv[ANSI_MAX_ARGC]; /* argument vector for ANSI */__anon505::argv113,4037 - int scaret_x; /* saved-caret X */scaret_x114,4096 - int scaret_x; /* saved-caret X */__anon505::scaret_x114,4096 - int scaret_y; /* saved-caret Y */scaret_y115,4134 - int scaret_y; /* saved-caret Y */__anon505::scaret_y115,4134 - HWND window; /* MS-Window window handle */window116,4172 - HWND window; /* MS-Window window handle */__anon505::window116,4172 - int has_focus; /* Application has the focus */has_focus117,4220 - int has_focus; /* Application has the focus */__anon505::has_focus117,4220 - HFONT hfont; /* Windows font handle */hfont118,4271 - HFONT hfont; /* Windows font handle */__anon505::hfont118,4271 - int fixedfont; /* Font is fixed */fixedfont119,4315 - int fixedfont; /* Font is fixed */__anon505::fixedfont119,4315 - COLORREF foreground; /* Foreground (text) color */foreground120,4354 - COLORREF foreground; /* Foreground (text) color */__anon505::foreground120,4354 - COLORREF background; /* Background color */background121,4408 - COLORREF background; /* Background color */__anon505::background121,4408 - COLORREF sel_foreground; /* Selection foreground */sel_foreground122,4455 - COLORREF sel_foreground; /* Selection foreground */__anon505::sel_foreground122,4455 - COLORREF sel_background; /* Selection background */sel_background123,4510 - COLORREF sel_background; /* Selection background */__anon505::sel_background123,4510 - COLORREF ansi_color[16]; /* ANSI colors (8 normal + 8 bright) */ansi_color124,4565 - COLORREF ansi_color[16]; /* ANSI colors (8 normal + 8 bright) */__anon505::ansi_color124,4565 - text_flags sgr_flags; /* Current SGR flags */sgr_flags125,4633 - text_flags sgr_flags; /* Current SGR flags */__anon505::sgr_flags125,4633 - int cw; /* character width */cw126,4682 - int cw; /* character width */__anon505::cw126,4682 - int ch; /* character height */ch127,4717 - int ch; /* character height */__anon505::ch127,4717 - int cb; /* baseline */cb128,4753 - int cb; /* baseline */__anon505::cb128,4753 - int changed; /* changes to the whole screen */changed129,4781 - int changed; /* changes to the whole screen */__anon505::changed129,4781 - int sb_lines; /* #lines the scrollbar thinks */sb_lines130,4832 - int sb_lines; /* #lines the scrollbar thinks */__anon505::sb_lines130,4832 - int sb_start; /* start-line scrollbar thinks */sb_start131,4884 - int sb_start; /* start-line scrollbar thinks */__anon505::sb_start131,4884 - int caret_is_shown; /* is caret in the window? */caret_is_shown132,4936 - int caret_is_shown; /* is caret in the window? */__anon505::caret_is_shown132,4936 - TCHAR current_title[RLC_TITLE_MAX]; /* window title */current_title133,4990 - TCHAR current_title[RLC_TITLE_MAX]; /* window title */__anon505::current_title133,4990 - rlc_console_attr * create_attributes; /* Creation attributes */create_attributes135,5066 - rlc_console_attr * create_attributes; /* Creation attributes */__anon505::create_attributes135,5066 - TCHAR *regkey_name; /* last part of key */regkey_name136,5132 - TCHAR *regkey_name; /* last part of key */__anon505::regkey_name136,5132 - int win_x; /* window top-left corner */win_x137,5185 - int win_x; /* window top-left corner */__anon505::win_x137,5185 - int win_y; /* window top-left corner */win_y138,5230 - int win_y; /* window top-left corner */__anon505::win_y138,5230 - TCHAR output_queue[OQSIZE]; /* The output queue */output_queue140,5299 - TCHAR output_queue[OQSIZE]; /* The output queue */__anon505::output_queue140,5299 - int output_queued; /* # characters in the queue */output_queued141,5360 - int output_queued; /* # characters in the queue */__anon505::output_queued141,5360 - { TCHAR *line; /* buffered line */line143,5424 - { TCHAR *line; /* buffered line */__anon505::__anon506::line143,5424 - size_t length; /* length of line */length144,5463 - size_t length; /* length of line */__anon505::__anon506::length144,5463 - size_t given; /* how much we passed */given145,5505 - size_t given; /* how much we passed */__anon505::__anon506::given145,5505 - } read_buffer;read_buffer146,5550 - } read_buffer;__anon505::read_buffer146,5550 - int imode; /* input mode */imode148,5592 - int imode; /* input mode */__anon505::imode148,5592 - int imodeswitch; /* switching imode */imodeswitch149,5625 - int imodeswitch; /* switching imode */__anon505::imodeswitch149,5625 - RlcQueue queue; /* input stream */queue150,5668 - RlcQueue queue; /* input stream */__anon505::queue150,5668 - LQueued lhead; /* line-queue head */lhead151,5707 - LQueued lhead; /* line-queue head */__anon505::lhead151,5707 - LQueued ltail; /* line-queue tail */ltail152,5748 - LQueued ltail; /* line-queue tail */__anon505::ltail152,5748 - TCHAR promptbuf[MAXPROMPT]; /* Buffer for building prompt */promptbuf153,5789 - TCHAR promptbuf[MAXPROMPT]; /* Buffer for building prompt */__anon505::promptbuf153,5789 - TCHAR prompt[MAXPROMPT]; /* The prompt */prompt154,5853 - TCHAR prompt[MAXPROMPT]; /* The prompt */__anon505::prompt154,5853 - int promptlen; /* length of the prompt */promptlen155,5898 - int promptlen; /* length of the prompt */__anon505::promptlen155,5898 - int closing; /* closing status */closing156,5944 - int closing; /* closing status */__anon505::closing156,5944 - int modified_options; /* OPT_ */modified_options157,5982 - int modified_options; /* OPT_ */__anon505::modified_options157,5982 - history history; /* history for this console */history158,6018 - history history; /* history for this console */__anon505::history158,6018 - HANDLE console_thread; /* I/O thread */console_thread160,6095 - HANDLE console_thread; /* I/O thread */__anon505::console_thread160,6095 - HANDLE application_thread; /* The application I work for */application_thread161,6139 - HANDLE application_thread; /* The application I work for */__anon505::application_thread161,6139 - DWORD console_thread_id; /* I/O thread id */console_thread_id162,6201 - DWORD console_thread_id; /* I/O thread id */__anon505::console_thread_id162,6201 - DWORD application_thread_id;application_thread_id163,6249 - DWORD application_thread_id;__anon505::application_thread_id163,6249 - HWND kill_window; /* window in app thread for destroy */kill_window164,6281 - HWND kill_window; /* window in app thread for destroy */__anon505::kill_window164,6281 - user_data values[MAX_USER_VALUES]; /* associated user data */values166,6343 - user_data values[MAX_USER_VALUES]; /* associated user data */__anon505::values166,6343 -} rlc_data, *RlcData;rlc_data167,6407 -} rlc_data, *RlcData;RlcData167,6407 -#define assert(assert202,7388 -#define assert(assert204,7443 -rlc_get_data(rlc_console c)rlc_get_data208,7501 - -swi/console/edit.c,3507 -#define _MAKE_DLL _MAKE_DLL27,998 -#undef _export_export28,1018 -#define EOF EOF37,1169 -typedef void (*function)(Line ln, int chr); /* edit-function */function40,1192 -static function dispatch_table[256]; /* general dispatch-table */dispatch_table42,1257 -static function dispatch_meta[256]; /* ESC-char dispatch */dispatch_meta43,1323 -static RlcCompleteFunc _rlc_complete_function = rlc_complete_file_function;_rlc_complete_function44,1383 -#define min(min50,1547 -#define max(max51,1589 -#define TRUE TRUE55,1652 -#define FALSE FALSE56,1667 -#define EOS EOS60,1703 -#define ESC ESC64,1737 -#define COMPLETE_NEWLINE COMPLETE_NEWLINE67,1760 -#define COMPLETE_EOF COMPLETE_EOF68,1787 -#define ctrl(ctrl70,1812 -#define META_OFFSET META_OFFSET71,1840 -#define meta(meta72,1864 -make_room(Line ln, size_t room)make_room84,2231 -set_line(Line ln, const TCHAR *s)set_line104,2742 -terminate(Line ln)terminate114,2900 -delete(Line ln, size_t from, size_t len)delete124,3051 -back_word(Line ln, size_t from)back_word138,3385 -forw_word(Line ln, size_t from)forw_word153,3673 -changed(Line ln, size_t from)changed172,4082 -insert_self(Line ln, int chr)insert_self178,4178 -backward_delete_character(Line ln, int chr)backward_delete_character185,4275 -delete_character(Line ln, int chr)delete_character198,4524 -backward_character(Line ln, int chr)backward_character207,4666 -forward_character(Line ln, int chr)forward_character214,4759 -backward_word(Line ln, int chr)backward_word221,4858 -forward_word(Line ln, int chr)forward_word227,4946 -backward_delete_word(Line ln, int chr)backward_delete_word233,5033 -forward_delete_word(Line ln, int chr)forward_delete_word245,5295 -transpose_chars(Line ln, int chr)transpose_chars255,5525 -start_of_line(Line ln, int chr)start_of_line266,5771 -end_of_line(Line ln, int chr)end_of_line272,5836 -kill_line(Line ln, int chr)kill_line278,5906 -empty_line(Line ln, int chr)empty_line285,5999 -enter(Line ln, int chr)enter292,6090 -eof(Line ln, int chr)eof308,6371 -delete_character_or_eof(Line ln, int chr)delete_character_or_eof316,6481 -undefined(Line ln, int chr)undefined327,6680 -interrupt(Line ln, int chr)interrupt333,6726 -add_history(rlc_console c, const TCHAR *data)add_history342,6876 -backward_history(Line ln, int chr)backward_history354,7038 -forward_history(Line ln, int chr)forward_history370,7325 -rlc_complete_hook(RlcCompleteFunc new)rlc_complete_hook387,7673 -common(const TCHAR *s1, const TCHAR *s2, int insensitive)common397,7823 -complete(Line ln, int chr)complete420,8152 -#define MAX_LIST_COMPLETIONS MAX_LIST_COMPLETIONS457,9190 -list_completions(Line ln, int chr)list_completions460,9236 -output(rlc_console b, TCHAR *s, size_t len)output541,11103 -update_display(Line ln)update_display551,11262 -read_line(rlc_console b)read_line581,12006 -init_dispatch_table(void)init_dispatch_table637,13041 -init_line_package(RlcData b)init_line_package658,13360 -typedef struct _action_action667,13537 -{ char *name;name668,13560 -{ char *name;_action::name668,13560 - function function;function669,13575 - function function;_action::function669,13575 - unsigned char keys[4];keys670,13597 - unsigned char keys[4];_action::keys670,13597 -} action, *Action;action671,13623 -} action, *Action;Action671,13623 -#define ACTION(ACTION673,13643 -static action actions[] = {actions675,13680 -rlc_bind(int chr, const char *fname)rlc_bind704,15155 -bind_actions()bind_actions724,15507 - -swi/console/history.c,556 -#define _MAKE_DLL _MAKE_DLL27,998 -#undef _export_export28,1018 -#define TRUE TRUE34,1155 -#define FALSE FALSE35,1170 -next(RlcData b, int i)next39,1214 -prev(RlcData b, int i)prev48,1320 -rlc_init_history(rlc_console c, int size)rlc_init_history57,1412 -rlc_add_history(rlc_console c, const TCHAR *line)rlc_add_history79,1863 -rlc_for_history(rlc_console c,rlc_for_history124,2999 -rlc_at_head_history(RlcData b)rlc_at_head_history143,3353 -rlc_bwd_history(RlcData b)rlc_bwd_history149,3452 -rlc_fwd_history(RlcData b)rlc_fwd_history166,3810 - -swi/console/history.h,0 - -swi/console/menu.c,1778 -#define _MAKE_DLL _MAKE_DLL27,998 -#undef _export_export28,1018 -#define EOS EOS34,1108 -#define streq(streq37,1130 -static TCHAR **menuids;menuids39,1175 -static int nmenus;nmenus40,1199 -static int nmenualloc;nmenualloc41,1218 -static struct rl_itemrl_item43,1242 -{ UINT id;id44,1264 -{ UINT id;rl_item::id44,1264 - const TCHAR *name;name45,1281 - const TCHAR *name;rl_item::name45,1281 -} rl_items[] =rl_items46,1302 -lookupMenuLabel(const TCHAR *label)lookupMenuLabel59,1543 -lookupMenuId(UINT id)lookupMenuId92,2263 -insertMenu(HMENU in, const TCHAR *label, const TCHAR *before)insertMenu107,2543 -findPopup(RlcData b, const TCHAR *name, int *pos)findPopup145,3465 -append_builtin(HMENU menu, UINT id)append_builtin185,4191 -rlc_add_menu_bar(HWND cwin)rlc_add_menu_bar191,4289 -#define MEN_MAGIC MEN_MAGIC220,5091 -typedef struct menu_datamenu_data222,5121 -{ intptr_t magic; /* safety */magic223,5146 -{ intptr_t magic; /* safety */menu_data::magic223,5146 - const TCHAR *menu; /* menu to operate on */menu224,5180 - const TCHAR *menu; /* menu to operate on */menu_data::menu224,5180 - const TCHAR *label; /* new label */label225,5228 - const TCHAR *label; /* new label */menu_data::label225,5228 - const TCHAR *before; /* add before this one */before226,5268 - const TCHAR *before; /* add before this one */menu_data::before226,5268 - int rc; /* result */rc227,5319 - int rc; /* result */menu_data::rc227,5319 -} menu_data;menu_data228,5352 -rlc_menu_action(rlc_console c, menu_data *data)rlc_menu_action232,5372 -rlc_insert_menu(rlc_console c, const TCHAR *label, const TCHAR *before)rlc_insert_menu280,6479 -rlc_insert_menu_item(rlc_console c,rlc_insert_menu_item296,6773 - -swi/console/menu.h,328 -#define WM_RLC_MENU WM_RLC_MENU26,988 -#define IDM_USER IDM_USER28,1041 -#define MAXLABELLEN MAXLABELLEN29,1088 -#define IDM_EXIT IDM_EXIT31,1151 -#define IDM_CUT IDM_CUT32,1171 -#define IDM_COPY IDM_COPY33,1191 -#define IDM_PASTE IDM_PASTE34,1211 -#define IDM_BREAK IDM_BREAK35,1232 -#define IDM_FONT IDM_FONT36,1253 - -swi/console/README,0 - -swi/console/registry.c,343 -#define MAXKEYLEN MAXKEYLEN28,1002 -#define MAXKEYPATHLEN MAXKEYPATHLEN29,1024 -static TCHAR _rlc_regbase[MAXKEYPATHLEN] = TEXT("current_user/PrologConsole");_rlc_regbase31,1052 -reg_open_key(const TCHAR *path, HKEY parent, REGSAM access)reg_open_key34,1144 -RegOpenKeyFromPath(const TCHAR *path, REGSAM access)RegOpenKeyFromPath66,1772 - -swi/library/aggregate.pl,17978 -average_country_area(Name, Area) :-average_country_area64,2478 -average_country_area(Name, Area) :-average_country_area64,2478 -average_country_area(Name, Area) :-average_country_area64,2478 -aggregate(Template, Goal0, Result) :-aggregate139,5267 -aggregate(Template, Goal0, Result) :-aggregate139,5267 -aggregate(Template, Goal0, Result) :-aggregate139,5267 -aggregate(Template, Discriminator, Goal0, Result) :-aggregate149,5622 -aggregate(Template, Discriminator, Goal0, Result) :-aggregate149,5622 -aggregate(Template, Discriminator, Goal0, Result) :-aggregate149,5622 -aggregate_all(Template, Goal0, Result) :-aggregate_all160,6030 -aggregate_all(Template, Goal0, Result) :-aggregate_all160,6030 -aggregate_all(Template, Goal0, Result) :-aggregate_all160,6030 -aggregate_all(Template, Discriminator, Goal0, Result) :-aggregate_all170,6421 -aggregate_all(Template, Discriminator, Goal0, Result) :-aggregate_all170,6421 -aggregate_all(Template, Discriminator, Goal0, Result) :-aggregate_all170,6421 -template_to_pattern(_All, Template, Pattern, Goal0, Goal, Aggregate) :-template_to_pattern178,6689 -template_to_pattern(_All, Template, Pattern, Goal0, Goal, Aggregate) :-template_to_pattern178,6689 -template_to_pattern(_All, Template, Pattern, Goal0, Goal, Aggregate) :-template_to_pattern178,6689 -existential_vars(Var, Var) -->existential_vars184,6954 -existential_vars(Var, Var) -->existential_vars184,6954 -existential_vars(Var, Var) -->existential_vars184,6954 -existential_vars(Var^G0, G) --> !,existential_vars186,7003 -existential_vars(Var^G0, G) --> !,existential_vars186,7003 -existential_vars(Var^G0, G) --> !,existential_vars186,7003 -existential_vars(G, G) -->existential_vars189,7072 -existential_vars(G, G) -->existential_vars189,7072 -existential_vars(G, G) -->existential_vars189,7072 -add_existential_vars([], G, G).add_existential_vars192,7105 -add_existential_vars([], G, G).add_existential_vars192,7105 -add_existential_vars([H|T], G0, H^G1) :-add_existential_vars193,7137 -add_existential_vars([H|T], G0, H^G1) :-add_existential_vars193,7137 -add_existential_vars([H|T], G0, H^G1) :-add_existential_vars193,7137 -clean_body((Goal0,Goal1), Goal) :- !,clean_body201,7292 -clean_body((Goal0,Goal1), Goal) :- !,clean_body201,7292 -clean_body((Goal0,Goal1), Goal) :- !,clean_body201,7292 -clean_body(Goal, Goal).clean_body210,7488 -clean_body(Goal, Goal).clean_body210,7488 -template_to_pattern(sum(X), X, true, [], sum) :- var(X), !.template_to_pattern224,7948 -template_to_pattern(sum(X), X, true, [], sum) :- var(X), !.template_to_pattern224,7948 -template_to_pattern(sum(X), X, true, [], sum) :- var(X), !.template_to_pattern224,7948 -template_to_pattern(sum(X0), X, X is X0, [X0], sum) :- !.template_to_pattern225,8020 -template_to_pattern(sum(X0), X, X is X0, [X0], sum) :- !.template_to_pattern225,8020 -template_to_pattern(sum(X0), X, X is X0, [X0], sum) :- !.template_to_pattern225,8020 -template_to_pattern(count, 1, true, [], count) :- !.template_to_pattern226,8085 -template_to_pattern(count, 1, true, [], count) :- !.template_to_pattern226,8085 -template_to_pattern(count, 1, true, [], count) :- !.template_to_pattern226,8085 -template_to_pattern(min(X), X, true, [], min) :- var(X), !.template_to_pattern227,8150 -template_to_pattern(min(X), X, true, [], min) :- var(X), !.template_to_pattern227,8150 -template_to_pattern(min(X), X, true, [], min) :- var(X), !.template_to_pattern227,8150 -template_to_pattern(min(X0), X, X is X0, [X0], min) :- !.template_to_pattern228,8222 -template_to_pattern(min(X0), X, X is X0, [X0], min) :- !.template_to_pattern228,8222 -template_to_pattern(min(X0), X, X is X0, [X0], min) :- !.template_to_pattern228,8222 -template_to_pattern(min(X0, Witness), X-Witness, X is X0, [X0], min_witness) :- !.template_to_pattern229,8287 -template_to_pattern(min(X0, Witness), X-Witness, X is X0, [X0], min_witness) :- !.template_to_pattern229,8287 -template_to_pattern(min(X0, Witness), X-Witness, X is X0, [X0], min_witness) :- !.template_to_pattern229,8287 -template_to_pattern(max(X0), X, X is X0, [X0], max) :- !.template_to_pattern230,8370 -template_to_pattern(max(X0), X, X is X0, [X0], max) :- !.template_to_pattern230,8370 -template_to_pattern(max(X0), X, X is X0, [X0], max) :- !.template_to_pattern230,8370 -template_to_pattern(max(X0, Witness), X-Witness, X is X0, [X0], max_witness) :- !.template_to_pattern231,8435 -template_to_pattern(max(X0, Witness), X-Witness, X is X0, [X0], max_witness) :- !.template_to_pattern231,8435 -template_to_pattern(max(X0, Witness), X-Witness, X is X0, [X0], max_witness) :- !.template_to_pattern231,8435 -template_to_pattern(set(X), X, true, [], set) :- !.template_to_pattern232,8518 -template_to_pattern(set(X), X, true, [], set) :- !.template_to_pattern232,8518 -template_to_pattern(set(X), X, true, [], set) :- !.template_to_pattern232,8518 -template_to_pattern(bag(X), X, true, [], bag) :- !.template_to_pattern233,8582 -template_to_pattern(bag(X), X, true, [], bag) :- !.template_to_pattern233,8582 -template_to_pattern(bag(X), X, true, [], bag) :- !.template_to_pattern233,8582 -template_to_pattern(Term, Pattern, Goal, Vars, term(MinNeeded, Functor, AggregateArgs)) :-template_to_pattern234,8646 -template_to_pattern(Term, Pattern, Goal, Vars, term(MinNeeded, Functor, AggregateArgs)) :-template_to_pattern234,8646 -template_to_pattern(Term, Pattern, Goal, Vars, term(MinNeeded, Functor, AggregateArgs)) :-template_to_pattern234,8646 -template_to_pattern(Term, _, _, _, _) :-template_to_pattern240,8915 -template_to_pattern(Term, _, _, _, _) :-template_to_pattern240,8915 -template_to_pattern(Term, _, _, _, _) :-template_to_pattern240,8915 -templates_to_patterns([], [], true, [], []).templates_to_patterns243,8996 -templates_to_patterns([], [], true, [], []).templates_to_patterns243,8996 -templates_to_patterns([H0], [H], G, Vars, [A]) :- !,templates_to_patterns244,9041 -templates_to_patterns([H0], [H], G, Vars, [A]) :- !,templates_to_patterns244,9041 -templates_to_patterns([H0], [H], G, Vars, [A]) :- !,templates_to_patterns244,9041 -templates_to_patterns([H0|T0], [H|T], (G0,G), Vars, [A0|A]) :-templates_to_patterns246,9135 -templates_to_patterns([H0|T0], [H|T], (G0,G), Vars, [A0|A]) :-templates_to_patterns246,9135 -templates_to_patterns([H0|T0], [H|T], (G0,G), Vars, [A0|A]) :-templates_to_patterns246,9135 -needs_one(Ops, 1) :-needs_one256,9439 -needs_one(Ops, 1) :-needs_one256,9439 -needs_one(Ops, 1) :-needs_one256,9439 -needs_one(_, 0).needs_one259,9497 -needs_one(_, 0).needs_one259,9497 -needs_one(min).needs_one261,9515 -needs_one(min).needs_one261,9515 -needs_one(min_witness).needs_one262,9531 -needs_one(min_witness).needs_one262,9531 -needs_one(max).needs_one263,9555 -needs_one(max).needs_one263,9555 -needs_one(max_witness).needs_one264,9571 -needs_one(max_witness).needs_one264,9571 -aggregate_list(bag, List0, List) :- !,aggregate_list276,9963 -aggregate_list(bag, List0, List) :- !,aggregate_list276,9963 -aggregate_list(bag, List0, List) :- !,aggregate_list276,9963 -aggregate_list(set, List, Set) :- !,aggregate_list278,10017 -aggregate_list(set, List, Set) :- !,aggregate_list278,10017 -aggregate_list(set, List, Set) :- !,aggregate_list278,10017 -aggregate_list(sum, List, Sum) :-aggregate_list280,10072 -aggregate_list(sum, List, Sum) :-aggregate_list280,10072 -aggregate_list(sum, List, Sum) :-aggregate_list280,10072 -aggregate_list(count, List, Count) :-aggregate_list282,10127 -aggregate_list(count, List, Count) :-aggregate_list282,10127 -aggregate_list(count, List, Count) :-aggregate_list282,10127 -aggregate_list(max, List, Sum) :-aggregate_list284,10187 -aggregate_list(max, List, Sum) :-aggregate_list284,10187 -aggregate_list(max, List, Sum) :-aggregate_list284,10187 -aggregate_list(max_witness, List, max(Max, Witness)) :-aggregate_list286,10243 -aggregate_list(max_witness, List, max(Max, Witness)) :-aggregate_list286,10243 -aggregate_list(max_witness, List, max(Max, Witness)) :-aggregate_list286,10243 -aggregate_list(min, List, Sum) :-aggregate_list288,10330 -aggregate_list(min, List, Sum) :-aggregate_list288,10330 -aggregate_list(min, List, Sum) :-aggregate_list288,10330 -aggregate_list(min_witness, List, min(Min, Witness)) :-aggregate_list290,10386 -aggregate_list(min_witness, List, min(Min, Witness)) :-aggregate_list290,10386 -aggregate_list(min_witness, List, min(Min, Witness)) :-aggregate_list290,10386 -aggregate_list(term(0, Functor, Ops), List, Result) :- !,aggregate_list292,10473 -aggregate_list(term(0, Functor, Ops), List, Result) :- !,aggregate_list292,10473 -aggregate_list(term(0, Functor, Ops), List, Result) :- !,aggregate_list292,10473 -aggregate_list(term(1, Functor, Ops), [H|List], Result) :-aggregate_list297,10710 -aggregate_list(term(1, Functor, Ops), [H|List], Result) :-aggregate_list297,10710 -aggregate_list(term(1, Functor, Ops), [H|List], Result) :-aggregate_list297,10710 -aggregate_term_list([], _, State, State).aggregate_term_list304,10978 -aggregate_term_list([], _, State, State).aggregate_term_list304,10978 -aggregate_term_list([H|T], Ops, State0, State) :-aggregate_term_list305,11020 -aggregate_term_list([H|T], Ops, State0, State) :-aggregate_term_list305,11020 -aggregate_term_list([H|T], Ops, State0, State) :-aggregate_term_list305,11020 -min_pair([M0-W0|T], M, W) :-min_pair317,11386 -min_pair([M0-W0|T], M, W) :-min_pair317,11386 -min_pair([M0-W0|T], M, W) :-min_pair317,11386 -min_pair([], M, W, M, W).min_pair320,11444 -min_pair([], M, W, M, W).min_pair320,11444 -min_pair([M0-W0|T], M1, W1, M, W) :-min_pair321,11470 -min_pair([M0-W0|T], M1, W1, M, W) :-min_pair321,11470 -min_pair([M0-W0|T], M1, W1, M, W) :-min_pair321,11470 -max_pair([M0-W0|T], M, W) :-max_pair327,11587 -max_pair([M0-W0|T], M, W) :-max_pair327,11587 -max_pair([M0-W0|T], M, W) :-max_pair327,11587 -max_pair([], M, W, M, W).max_pair330,11645 -max_pair([], M, W, M, W).max_pair330,11645 -max_pair([M0-W0|T], M1, W1, M, W) :-max_pair331,11671 -max_pair([M0-W0|T], M1, W1, M, W) :-max_pair331,11671 -max_pair([M0-W0|T], M1, W1, M, W) :-max_pair331,11671 -step(bag, X, [X|L], L).step339,11840 -step(bag, X, [X|L], L).step339,11840 -step(set, X, [X|L], L).step340,11866 -step(set, X, [X|L], L).step340,11866 -step(count, _, X0, X1) :-step341,11892 -step(count, _, X0, X1) :-step341,11892 -step(count, _, X0, X1) :-step341,11892 -step(sum, X, X0, X1) :-step343,11933 -step(sum, X, X0, X1) :-step343,11933 -step(sum, X, X0, X1) :-step343,11933 -step(max, X, X0, X1) :-step345,11972 -step(max, X, X0, X1) :-step345,11972 -step(max, X, X0, X1) :-step345,11972 -step(min, X, X0, X1) :-step347,12017 -step(min, X, X0, X1) :-step347,12017 -step(min, X, X0, X1) :-step347,12017 -step(max_witness, X-W, X0-W0, X1-W1) :-step349,12062 -step(max_witness, X-W, X0-W0, X1-W1) :-step349,12062 -step(max_witness, X-W, X0-W0, X1-W1) :-step349,12062 -step(min_witness, X-W, X0-W0, X1-W1) :-step354,12160 -step(min_witness, X-W, X0-W0, X1-W1) :-step354,12160 -step(min_witness, X-W, X0-W0, X1-W1) :-step354,12160 -step(term(Ops), Row, Row0, Row1) :-step359,12258 -step(term(Ops), Row, Row0, Row1) :-step359,12258 -step(term(Ops), Row, Row0, Row1) :-step359,12258 -step_term(Ops, Row, Row0, Row1) :-step_term362,12329 -step_term(Ops, Row, Row0, Row1) :-step_term362,12329 -step_term(Ops, Row, Row0, Row1) :-step_term362,12329 -step_list([], _, _, _, _).step_list367,12459 -step_list([], _, _, _, _).step_list367,12459 -step_list([Op|OpT], Arg, Row, Row0, Row1) :-step_list368,12486 -step_list([Op|OpT], Arg, Row, Row0, Row1) :-step_list368,12486 -step_list([Op|OpT], Arg, Row, Row0, Row1) :-step_list368,12486 -finish_result(Ops, Finish, R0, R) :-finish_result376,12673 -finish_result(Ops, Finish, R0, R) :-finish_result376,12673 -finish_result(Ops, Finish, R0, R) :-finish_result376,12673 -finish_result([], _, _, _, _).finish_result381,12809 -finish_result([], _, _, _, _).finish_result381,12809 -finish_result([Op|OpT], [F|FT], I, R0, R) :-finish_result382,12840 -finish_result([Op|OpT], [F|FT], I, R0, R) :-finish_result382,12840 -finish_result([Op|OpT], [F|FT], I, R0, R) :-finish_result382,12840 -finish_result1(bag, Bag0, [], Bag) :- !,finish_result1389,13000 -finish_result1(bag, Bag0, [], Bag) :- !,finish_result1389,13000 -finish_result1(bag, Bag0, [], Bag) :- !,finish_result1389,13000 -finish_result1(set, Bag, [], Set) :- !,finish_result1391,13054 -finish_result1(set, Bag, [], Set) :- !,finish_result1391,13054 -finish_result1(set, Bag, [], Set) :- !,finish_result1391,13054 -finish_result1(max_witness, _, M-W, R) :- !,finish_result1393,13112 -finish_result1(max_witness, _, M-W, R) :- !,finish_result1393,13112 -finish_result1(max_witness, _, M-W, R) :- !,finish_result1393,13112 -finish_result1(min_witness, _, M-W, R) :- !,finish_result1395,13172 -finish_result1(min_witness, _, M-W, R) :- !,finish_result1395,13172 -finish_result1(min_witness, _, M-W, R) :- !,finish_result1395,13172 -finish_result1(_, _, A, A).finish_result1397,13232 -finish_result1(_, _, A, A).finish_result1397,13232 -state0(bag, L, L).state0401,13294 -state0(bag, L, L).state0401,13294 -state0(set, L, L).state0402,13315 -state0(set, L, L).state0402,13315 -state0(count, 0, _).state0403,13336 -state0(count, 0, _).state0403,13336 -state0(sum, 0, _).state0404,13357 -state0(sum, 0, _).state0404,13357 -state1(bag, X, [X|L], L).state1408,13420 -state1(bag, X, [X|L], L).state1408,13420 -state1(set, X, [X|L], L).state1409,13446 -state1(set, X, [X|L], L).state1409,13446 -state1(_, X, X, _).state1410,13472 -state1(_, X, X, _).state1410,13472 -foreach(Generator, Goal0) :-foreach442,14413 -foreach(Generator, Goal0) :-foreach442,14413 -foreach(Generator, Goal0) :-foreach442,14413 -prove_list([], _, _, _).prove_list457,14956 -prove_list([], _, _, _).prove_list457,14956 -prove_list([H|T], Templ, SharedTempl, Goal) :-prove_list458,14981 -prove_list([H|T], Templ, SharedTempl, Goal) :-prove_list458,14981 -prove_list([H|T], Templ, SharedTempl, Goal) :-prove_list458,14981 -free_variables(Term, Bound, VarList, [Term|VarList]) :-free_variables483,15858 -free_variables(Term, Bound, VarList, [Term|VarList]) :-free_variables483,15858 -free_variables(Term, Bound, VarList, [Term|VarList]) :-free_variables483,15858 -free_variables(Term, _Bound, VarList, VarList) :-free_variables487,15993 -free_variables(Term, _Bound, VarList, VarList) :-free_variables487,15993 -free_variables(Term, _Bound, VarList, VarList) :-free_variables487,15993 -free_variables(Term, Bound, OldList, NewList) :-free_variables489,16058 -free_variables(Term, Bound, OldList, NewList) :-free_variables489,16058 -free_variables(Term, Bound, OldList, NewList) :-free_variables489,16058 -free_variables(Term, Bound, OldList, NewList) :-free_variables492,16215 -free_variables(Term, Bound, OldList, NewList) :-free_variables492,16215 -free_variables(Term, Bound, OldList, NewList) :-free_variables492,16215 -free_variables(0, _, _, VarList, VarList) :- !.free_variables496,16338 -free_variables(0, _, _, VarList, VarList) :- !.free_variables496,16338 -free_variables(0, _, _, VarList, VarList) :- !.free_variables496,16338 -free_variables(N, Term, Bound, OldList, NewList) :-free_variables497,16386 -free_variables(N, Term, Bound, OldList, NewList) :-free_variables497,16386 -free_variables(N, Term, Bound, OldList, NewList) :-free_variables497,16386 -explicit_binding(\+ _Goal, Bound, fail, Bound ) :- !.explicit_binding506,16714 -explicit_binding(\+ _Goal, Bound, fail, Bound ) :- !.explicit_binding506,16714 -explicit_binding(\+ _Goal, Bound, fail, Bound ) :- !.explicit_binding506,16714 -explicit_binding(not(_Goal), Bound, fail, Bound ) :- !.explicit_binding507,16780 -explicit_binding(not(_Goal), Bound, fail, Bound ) :- !.explicit_binding507,16780 -explicit_binding(not(_Goal), Bound, fail, Bound ) :- !.explicit_binding507,16780 -explicit_binding(Var^Goal, Bound, Goal, Bound+Var) :- !.explicit_binding508,16846 -explicit_binding(Var^Goal, Bound, Goal, Bound+Var) :- !.explicit_binding508,16846 -explicit_binding(Var^Goal, Bound, Goal, Bound+Var) :- !.explicit_binding508,16846 -explicit_binding(setof(Var,Goal,Set), Bound, Goal-Set, Bound+Var) :- !.explicit_binding509,16910 -explicit_binding(setof(Var,Goal,Set), Bound, Goal-Set, Bound+Var) :- !.explicit_binding509,16910 -explicit_binding(setof(Var,Goal,Set), Bound, Goal-Set, Bound+Var) :- !.explicit_binding509,16910 -explicit_binding(bagof(Var,Goal,Bag), Bound, Goal-Bag, Bound+Var) :- !.explicit_binding510,16983 -explicit_binding(bagof(Var,Goal,Bag), Bound, Goal-Bag, Bound+Var) :- !.explicit_binding510,16983 -explicit_binding(bagof(Var,Goal,Bag), Bound, Goal-Bag, Bound+Var) :- !.explicit_binding510,16983 -term_is_free_of(Term, Var) :-term_is_free_of518,17247 -term_is_free_of(Term, Var) :-term_is_free_of518,17247 -term_is_free_of(Term, Var) :-term_is_free_of518,17247 -var_in_term(Term, Var) :-var_in_term521,17306 -var_in_term(Term, Var) :-var_in_term521,17306 -var_in_term(Term, Var) :-var_in_term521,17306 -var_in_term(Term, Var) :-var_in_term523,17349 -var_in_term(Term, Var) :-var_in_term523,17349 -var_in_term(Term, Var) :-var_in_term523,17349 -list_is_free_of([Head|Tail], Var) :-list_is_free_of533,17521 -list_is_free_of([Head|Tail], Var) :-list_is_free_of533,17521 -list_is_free_of([Head|Tail], Var) :-list_is_free_of533,17521 -list_is_free_of([], _).list_is_free_of536,17605 -list_is_free_of([], _).list_is_free_of536,17605 - -swi/library/base64.pl,6701 -base64(Plain, Encoded) :-base6465,1961 -base64(Plain, Encoded) :-base6465,1961 -base64(Plain, Encoded) :-base6465,1961 -base64(Plain, Encoded) :-base6470,2109 -base64(Plain, Encoded) :-base6470,2109 -base64(Plain, Encoded) :-base6470,2109 -base64(_, _) :-base6475,2259 -base64(_, _) :-base6475,2259 -base64(_, _) :-base6475,2259 -base64(Input) -->base6485,2461 -base64(Input) -->base6485,2461 -base64(Input) -->base6485,2461 -base64(Output) -->base6488,2518 -base64(Output) -->base6488,2518 -base64(Output) -->base6488,2518 -encode([I0, I1, I2|Rest]) --> !,encode96,2652 -encode([I0, I1, I2|Rest]) --> !,encode96,2652 -encode([I0, I1, I2|Rest]) --> !,encode96,2652 -encode([I0, I1]) --> !,encode109,2959 -encode([I0, I1]) --> !,encode109,2959 -encode([I0, I1]) --> !,encode109,2959 -encode([I0]) --> !,encode119,3191 -encode([I0]) --> !,encode119,3191 -encode([I0]) --> !,encode119,3191 -encode([]) -->encode127,3357 -encode([]) -->encode127,3357 -encode([]) -->encode127,3357 -decode(Text) -->decode135,3473 -decode(Text) -->decode135,3473 -decode(Text) -->decode135,3473 -decode([]) -->decode160,4095 -decode([]) -->decode160,4095 -decode([]) -->decode160,4095 -base64_char(00, 0'A).base64_char168,4224 -base64_char(00, 0'A).base64_char168,4224 -base64_char(01, 0'B).base64_char169,4246 -base64_char(01, 0'B).base64_char169,4246 -base64_char(02, 0'C).base64_char170,4268 -base64_char(02, 0'C).base64_char170,4268 -base64_char(03, 0'D).base64_char171,4290 -base64_char(03, 0'D).base64_char171,4290 -base64_char(04, 0'E).base64_char172,4312 -base64_char(04, 0'E).base64_char172,4312 -base64_char(05, 0'F).base64_char173,4334 -base64_char(05, 0'F).base64_char173,4334 -base64_char(06, 0'G).base64_char174,4356 -base64_char(06, 0'G).base64_char174,4356 -base64_char(07, 0'H).base64_char175,4378 -base64_char(07, 0'H).base64_char175,4378 -base64_char(08, 0'I).base64_char176,4400 -base64_char(08, 0'I).base64_char176,4400 -base64_char(09, 0'J).base64_char177,4422 -base64_char(09, 0'J).base64_char177,4422 -base64_char(10, 0'K).base64_char178,4444 -base64_char(10, 0'K).base64_char178,4444 -base64_char(11, 0'L).base64_char179,4466 -base64_char(11, 0'L).base64_char179,4466 -base64_char(12, 0'M).base64_char180,4488 -base64_char(12, 0'M).base64_char180,4488 -base64_char(13, 0'N).base64_char181,4510 -base64_char(13, 0'N).base64_char181,4510 -base64_char(14, 0'O).base64_char182,4532 -base64_char(14, 0'O).base64_char182,4532 -base64_char(15, 0'P).base64_char183,4554 -base64_char(15, 0'P).base64_char183,4554 -base64_char(16, 0'Q).base64_char184,4576 -base64_char(16, 0'Q).base64_char184,4576 -base64_char(17, 0'R).base64_char185,4598 -base64_char(17, 0'R).base64_char185,4598 -base64_char(18, 0'S).base64_char186,4620 -base64_char(18, 0'S).base64_char186,4620 -base64_char(19, 0'T).base64_char187,4642 -base64_char(19, 0'T).base64_char187,4642 -base64_char(20, 0'U).base64_char188,4664 -base64_char(20, 0'U).base64_char188,4664 -base64_char(21, 0'V).base64_char189,4686 -base64_char(21, 0'V).base64_char189,4686 -base64_char(22, 0'W).base64_char190,4708 -base64_char(22, 0'W).base64_char190,4708 -base64_char(23, 0'X).base64_char191,4730 -base64_char(23, 0'X).base64_char191,4730 -base64_char(24, 0'Y).base64_char192,4752 -base64_char(24, 0'Y).base64_char192,4752 -base64_char(25, 0'Z).base64_char193,4774 -base64_char(25, 0'Z).base64_char193,4774 -base64_char(26, 0'a).base64_char194,4796 -base64_char(26, 0'a).base64_char194,4796 -base64_char(27, 0'b).base64_char195,4818 -base64_char(27, 0'b).base64_char195,4818 -base64_char(28, 0'c).base64_char196,4840 -base64_char(28, 0'c).base64_char196,4840 -base64_char(29, 0'd).base64_char197,4862 -base64_char(29, 0'd).base64_char197,4862 -base64_char(30, 0'e).base64_char198,4884 -base64_char(30, 0'e).base64_char198,4884 -base64_char(31, 0'f).base64_char199,4906 -base64_char(31, 0'f).base64_char199,4906 -base64_char(32, 0'g).base64_char200,4928 -base64_char(32, 0'g).base64_char200,4928 -base64_char(33, 0'h).base64_char201,4950 -base64_char(33, 0'h).base64_char201,4950 -base64_char(34, 0'i).base64_char202,4972 -base64_char(34, 0'i).base64_char202,4972 -base64_char(35, 0'j).base64_char203,4994 -base64_char(35, 0'j).base64_char203,4994 -base64_char(36, 0'k).base64_char204,5016 -base64_char(36, 0'k).base64_char204,5016 -base64_char(37, 0'l).base64_char205,5038 -base64_char(37, 0'l).base64_char205,5038 -base64_char(38, 0'm).base64_char206,5060 -base64_char(38, 0'm).base64_char206,5060 -base64_char(39, 0'n).base64_char207,5082 -base64_char(39, 0'n).base64_char207,5082 -base64_char(40, 0'o).base64_char208,5104 -base64_char(40, 0'o).base64_char208,5104 -base64_char(41, 0'p).base64_char209,5126 -base64_char(41, 0'p).base64_char209,5126 -base64_char(42, 0'q).base64_char210,5148 -base64_char(42, 0'q).base64_char210,5148 -base64_char(43, 0'r).base64_char211,5170 -base64_char(43, 0'r).base64_char211,5170 -base64_char(44, 0's).base64_char212,5192 -base64_char(44, 0's).base64_char212,5192 -base64_char(45, 0't).base64_char213,5214 -base64_char(45, 0't).base64_char213,5214 -base64_char(46, 0'u).base64_char214,5236 -base64_char(46, 0'u).base64_char214,5236 -base64_char(47, 0'v).base64_char215,5258 -base64_char(47, 0'v).base64_char215,5258 -base64_char(48, 0'w).base64_char216,5280 -base64_char(48, 0'w).base64_char216,5280 -base64_char(49, 0'x).base64_char217,5302 -base64_char(49, 0'x).base64_char217,5302 -base64_char(50, 0'y).base64_char218,5324 -base64_char(50, 0'y).base64_char218,5324 -base64_char(51, 0'z).base64_char219,5346 -base64_char(51, 0'z).base64_char219,5346 -base64_char(52, 0'0).base64_char220,5368 -base64_char(52, 0'0).base64_char220,5368 -base64_char(53, 0'1).base64_char221,5390 -base64_char(53, 0'1).base64_char221,5390 -base64_char(54, 0'2).base64_char222,5412 -base64_char(54, 0'2).base64_char222,5412 -base64_char(55, 0'3).base64_char223,5434 -base64_char(55, 0'3).base64_char223,5434 -base64_char(56, 0'4).base64_char224,5456 -base64_char(56, 0'4).base64_char224,5456 -base64_char(57, 0'5).base64_char225,5478 -base64_char(57, 0'5).base64_char225,5478 -base64_char(58, 0'6).base64_char226,5500 -base64_char(58, 0'6).base64_char226,5500 -base64_char(59, 0'7).base64_char227,5522 -base64_char(59, 0'7).base64_char227,5522 -base64_char(60, 0'8).base64_char228,5544 -base64_char(60, 0'8).base64_char228,5544 -base64_char(61, 0'9).base64_char229,5566 -base64_char(61, 0'9).base64_char229,5566 -base64_char(62, 0'+).base64_char230,5588 -base64_char(62, 0'+).base64_char230,5588 -base64_char(63, 0'/).base64_char231,5610 -base64_char(63, 0'/).base64_char231,5610 - -swi/library/broadcast.pl,2775 -broadcast(+Templ). All registered `listeners' will have their goalbroadcast54,1867 -broadcast(+Templ). All registered `listeners' will have their goalbroadcast54,1867 -change_workers(New) :-change_workers68,2405 -change_workers(New) :-change_workers68,2405 -change_workers(New) :-change_workers68,2405 -listen(Listener0, Templ, Goal) :-listen79,2632 -listen(Listener0, Templ, Goal) :-listen79,2632 -listen(Listener0, Templ, Goal) :-listen79,2632 -listen(Templ, Goal) :-listen84,2799 -listen(Templ, Goal) :-listen84,2799 -listen(Templ, Goal) :-listen84,2799 -unlisten(Listener0) :-unlisten96,3133 -unlisten(Listener0) :-unlisten96,3133 -unlisten(Listener0) :-unlisten96,3133 -unlisten(Listener0, Templ) :-unlisten99,3240 -unlisten(Listener0, Templ) :-unlisten99,3240 -unlisten(Listener0, Templ) :-unlisten99,3240 -unlisten(Listener0, Templ, Goal) :-unlisten102,3358 -unlisten(Listener0, Templ, Goal) :-unlisten102,3358 -unlisten(Listener0, Templ, Goal) :-unlisten102,3358 -listening(Listener0, Templ, Module:Goal) :-listening115,3648 -listening(Listener0, Templ, Module:Goal) :-listening115,3648 -listening(Listener0, Templ, Module:Goal) :-listening115,3648 -broadcast(Templ) :-broadcast124,3835 -broadcast(Templ) :-broadcast124,3835 -broadcast(Templ) :-broadcast124,3835 -broadcast_request(Templ) :-broadcast_request139,4192 -broadcast_request(Templ) :-broadcast_request139,4192 -broadcast_request(Templ) :-broadcast_request139,4192 -assert_listener(Templ, Listener, Module, TheGoal) :-assert_listener150,4534 -assert_listener(Templ, Listener, Module, TheGoal) :-assert_listener150,4534 -assert_listener(Templ, Listener, Module, TheGoal) :-assert_listener150,4534 -assert_listener(Templ, Listener, Module, TheGoal) :-assert_listener152,4635 -assert_listener(Templ, Listener, Module, TheGoal) :-assert_listener152,4635 -assert_listener(Templ, Listener, Module, TheGoal) :-assert_listener152,4635 -retract_listener(Templ, Listener, Module, TheGoal) :-retract_listener155,4743 -retract_listener(Templ, Listener, Module, TheGoal) :-retract_listener155,4743 -retract_listener(Templ, Listener, Module, TheGoal) :-retract_listener155,4743 -canonical_listener(Templ, Templ).canonical_listener162,4930 -canonical_listener(Templ, Templ).canonical_listener162,4930 -user:goal_expansion(listen(L,T,G0), listen(L,T,G)) :-goal_expansion172,5101 -user:goal_expansion(listen(L,T,G0), listen(L,T,G)) :-goal_expansion172,5101 -user:goal_expansion(listen(T,G0), listen(T,G)) :-goal_expansion174,5176 -user:goal_expansion(listen(T,G0), listen(T,G)) :-goal_expansion174,5176 -user:goal_expansion(unlisten(L,T,G0), unlisten(L,T,G)) :-goal_expansion176,5247 -user:goal_expansion(unlisten(L,T,G0), unlisten(L,T,G)) :-goal_expansion176,5247 - -swi/library/clp/clp_events.pl,1052 -notify(V,NMod) :-notify48,1779 -notify(V,NMod) :-notify48,1779 -notify(V,NMod) :-notify48,1779 -subscribe(V,NMod,SMod,Goal) :-subscribe55,1871 -subscribe(V,NMod,SMod,Goal) :-subscribe55,1871 -subscribe(V,NMod,SMod,Goal) :-subscribe55,1871 -unsubscribe(V,SMod) :-unsubscribe62,2055 -unsubscribe(V,SMod) :-unsubscribe62,2055 -unsubscribe(V,SMod) :-unsubscribe62,2055 -notify_list([],_).notify_list70,2195 -notify_list([],_).notify_list70,2195 -notify_list([entry(Mod,_,Goal)|Rest],NMod) :-notify_list71,2214 -notify_list([entry(Mod,_,Goal)|Rest],NMod) :-notify_list71,2214 -notify_list([entry(Mod,_,Goal)|Rest],NMod) :-notify_list71,2214 -unsubscribe_list([],_,_).unsubscribe_list79,2332 -unsubscribe_list([],_,_).unsubscribe_list79,2332 -unsubscribe_list([Entry|Rest],SMod,List) :-unsubscribe_list80,2358 -unsubscribe_list([Entry|Rest],SMod,List) :-unsubscribe_list80,2358 -unsubscribe_list([Entry|Rest],SMod,List) :-unsubscribe_list80,2358 -attr_unify_hook(_,_).attr_unify_hook89,2526 -attr_unify_hook(_,_).attr_unify_hook89,2526 - -swi/library/ctypes.pl,6066 -is_alnum(C) :- code_type(C, alnum).is_alnum70,2096 -is_alnum(C) :- code_type(C, alnum).is_alnum70,2096 -is_alnum(C) :- code_type(C, alnum).is_alnum70,2096 -is_alnum(C) :- code_type(C, alnum).is_alnum70,2096 -is_alnum(C) :- code_type(C, alnum).is_alnum70,2096 -is_alpha(C) :- code_type(C, alpha).is_alpha71,2134 -is_alpha(C) :- code_type(C, alpha).is_alpha71,2134 -is_alpha(C) :- code_type(C, alpha).is_alpha71,2134 -is_alpha(C) :- code_type(C, alpha).is_alpha71,2134 -is_alpha(C) :- code_type(C, alpha).is_alpha71,2134 -is_ascii(C) :- code_type(C, ascii).is_ascii72,2172 -is_ascii(C) :- code_type(C, ascii).is_ascii72,2172 -is_ascii(C) :- code_type(C, ascii).is_ascii72,2172 -is_ascii(C) :- code_type(C, ascii).is_ascii72,2172 -is_ascii(C) :- code_type(C, ascii).is_ascii72,2172 -is_cntrl(C) :- code_type(C, cntrl).is_cntrl73,2210 -is_cntrl(C) :- code_type(C, cntrl).is_cntrl73,2210 -is_cntrl(C) :- code_type(C, cntrl).is_cntrl73,2210 -is_cntrl(C) :- code_type(C, cntrl).is_cntrl73,2210 -is_cntrl(C) :- code_type(C, cntrl).is_cntrl73,2210 -is_csym(C) :- code_type(C, csym).is_csym74,2248 -is_csym(C) :- code_type(C, csym).is_csym74,2248 -is_csym(C) :- code_type(C, csym).is_csym74,2248 -is_csym(C) :- code_type(C, csym).is_csym74,2248 -is_csym(C) :- code_type(C, csym).is_csym74,2248 -is_csymf(C) :- code_type(C, csymf).is_csymf75,2285 -is_csymf(C) :- code_type(C, csymf).is_csymf75,2285 -is_csymf(C) :- code_type(C, csymf).is_csymf75,2285 -is_csymf(C) :- code_type(C, csymf).is_csymf75,2285 -is_csymf(C) :- code_type(C, csymf).is_csymf75,2285 -is_digit(C) :- code_type(C, digit).is_digit76,2323 -is_digit(C) :- code_type(C, digit).is_digit76,2323 -is_digit(C) :- code_type(C, digit).is_digit76,2323 -is_digit(C) :- code_type(C, digit).is_digit76,2323 -is_digit(C) :- code_type(C, digit).is_digit76,2323 -is_graph(C) :- code_type(C, graph).is_graph77,2361 -is_graph(C) :- code_type(C, graph).is_graph77,2361 -is_graph(C) :- code_type(C, graph).is_graph77,2361 -is_graph(C) :- code_type(C, graph).is_graph77,2361 -is_graph(C) :- code_type(C, graph).is_graph77,2361 -is_lower(C) :- code_type(C, lower).is_lower78,2399 -is_lower(C) :- code_type(C, lower).is_lower78,2399 -is_lower(C) :- code_type(C, lower).is_lower78,2399 -is_lower(C) :- code_type(C, lower).is_lower78,2399 -is_lower(C) :- code_type(C, lower).is_lower78,2399 -is_upper(C) :- code_type(C, upper).is_upper79,2437 -is_upper(C) :- code_type(C, upper).is_upper79,2437 -is_upper(C) :- code_type(C, upper).is_upper79,2437 -is_upper(C) :- code_type(C, upper).is_upper79,2437 -is_upper(C) :- code_type(C, upper).is_upper79,2437 -is_period(C) :- code_type(C, period).is_period80,2475 -is_period(C) :- code_type(C, period).is_period80,2475 -is_period(C) :- code_type(C, period).is_period80,2475 -is_period(C) :- code_type(C, period).is_period80,2475 -is_period(C) :- code_type(C, period).is_period80,2475 -is_endline(C) :- code_type(C, end_of_line).is_endline81,2514 -is_endline(C) :- code_type(C, end_of_line).is_endline81,2514 -is_endline(C) :- code_type(C, end_of_line).is_endline81,2514 -is_endline(C) :- code_type(C, end_of_line).is_endline81,2514 -is_endline(C) :- code_type(C, end_of_line).is_endline81,2514 -is_print(C) :- is_graph(C).is_print82,2558 -is_print(C) :- is_graph(C).is_print82,2558 -is_print(C) :- is_graph(C).is_print82,2558 -is_print(C) :- is_graph(C).is_print82,2558 -is_print(C) :- is_graph(C).is_print82,2558 -is_punct(C) :- code_type(C, punct).is_punct83,2588 -is_punct(C) :- code_type(C, punct).is_punct83,2588 -is_punct(C) :- code_type(C, punct).is_punct83,2588 -is_punct(C) :- code_type(C, punct).is_punct83,2588 -is_punct(C) :- code_type(C, punct).is_punct83,2588 -is_quote(C) :- code_type(C, quote).is_quote84,2626 -is_quote(C) :- code_type(C, quote).is_quote84,2626 -is_quote(C) :- code_type(C, quote).is_quote84,2626 -is_quote(C) :- code_type(C, quote).is_quote84,2626 -is_quote(C) :- code_type(C, quote).is_quote84,2626 -is_space(C) :- code_type(C, space).is_space85,2664 -is_space(C) :- code_type(C, space).is_space85,2664 -is_space(C) :- code_type(C, space).is_space85,2664 -is_space(C) :- code_type(C, space).is_space85,2664 -is_space(C) :- code_type(C, space).is_space85,2664 -is_white(C) :- code_type(C, white).is_white86,2702 -is_white(C) :- code_type(C, white).is_white86,2702 -is_white(C) :- code_type(C, white).is_white86,2702 -is_white(C) :- code_type(C, white).is_white86,2702 -is_white(C) :- code_type(C, white).is_white86,2702 -is_endfile(-1).is_endfile88,2741 -is_endfile(-1).is_endfile88,2741 -is_newpage(12). % Control-Lis_newpage89,2757 -is_newpage(12). % Control-Lis_newpage89,2757 -is_newline(10).is_newline90,2788 -is_newline(10).is_newline90,2788 -is_paren(0'(, 0')). % Prolog is too good at thisis_paren96,2896 -is_paren(0'(, 0')). % Prolog is too good at thisis_paren96,2896 -is_paren(0'[, 0']).is_paren97,2947 -is_paren(0'[, 0']).is_paren97,2947 -is_paren(0'{, 0'}).is_paren98,2967 -is_paren(0'{, 0'}).is_paren98,2967 -to_lower(U, L) :-to_lower107,3237 -to_lower(U, L) :-to_lower107,3237 -to_lower(U, L) :-to_lower107,3237 -to_upper(U, L) :-to_upper110,3284 -to_upper(U, L) :-to_upper110,3284 -to_upper(U, L) :-to_upper110,3284 -is_digit(C, Base, Weight) :-is_digit119,3553 -is_digit(C, Base, Weight) :-is_digit119,3553 -is_digit(C, Base, Weight) :-is_digit119,3553 -is_digit(C, Base, Weight) :-is_digit122,3628 -is_digit(C, Base, Weight) :-is_digit122,3628 -is_digit(C, Base, Weight) :-is_digit122,3628 -is_digit(C, Weight) :-is_digit128,3743 -is_digit(C, Weight) :-is_digit128,3743 -is_digit(C, Weight) :-is_digit128,3743 -is_digit(C, Weight) :-is_digit131,3806 -is_digit(C, Weight) :-is_digit131,3806 -is_digit(C, Weight) :-is_digit131,3806 -is_digit(C, Weight) :-is_digit133,3868 -is_digit(C, Weight) :-is_digit133,3868 -is_digit(C, Weight) :-is_digit133,3868 - -swi/library/date.pl,12323 -date_time_value(year, date(Y,_,_,_,_,_,_,_,_), Y).date_time_value58,2107 -date_time_value(year, date(Y,_,_,_,_,_,_,_,_), Y).date_time_value58,2107 -date_time_value(month, date(_,M,_,_,_,_,_,_,_), M).date_time_value59,2160 -date_time_value(month, date(_,M,_,_,_,_,_,_,_), M).date_time_value59,2160 -date_time_value(day, date(_,_,D,_,_,_,_,_,_), D).date_time_value60,2214 -date_time_value(day, date(_,_,D,_,_,_,_,_,_), D).date_time_value60,2214 -date_time_value(hour, date(_,_,_,H,_,_,_,_,_), H).date_time_value61,2266 -date_time_value(hour, date(_,_,_,H,_,_,_,_,_), H).date_time_value61,2266 -date_time_value(minute, date(_,_,_,_,M,_,_,_,_), M).date_time_value62,2319 -date_time_value(minute, date(_,_,_,_,M,_,_,_,_), M).date_time_value62,2319 -date_time_value(second, date(_,_,_,_,_,S,_,_,_), S).date_time_value63,2374 -date_time_value(second, date(_,_,_,_,_,S,_,_,_), S).date_time_value63,2374 -date_time_value(utc_offset, date(_,_,_,_,_,_,O,_,_), O).date_time_value64,2429 -date_time_value(utc_offset, date(_,_,_,_,_,_,O,_,_), O).date_time_value64,2429 -date_time_value(time_zone, date(_,_,_,_,_,_,_,Z,_), Z) :- Z \== (-).date_time_value65,2487 -date_time_value(time_zone, date(_,_,_,_,_,_,_,Z,_), Z) :- Z \== (-).date_time_value65,2487 -date_time_value(time_zone, date(_,_,_,_,_,_,_,Z,_), Z) :- Z \== (-).date_time_value65,2487 -date_time_value(time_zone, date(_,_,_,_,_,_,_,Z,_), Z) :- Z \== (-).date_time_value65,2487 -date_time_value(time_zone, date(_,_,_,_,_,_,_,Z,_), Z) :- Z \== (-).date_time_value65,2487 -date_time_value(daylight_saving, date(_,_,_,_,_,_,_,_,D), D) :- D \== (-).date_time_value66,2557 -date_time_value(daylight_saving, date(_,_,_,_,_,_,_,_,D), D) :- D \== (-).date_time_value66,2557 -date_time_value(daylight_saving, date(_,_,_,_,_,_,_,_,D), D) :- D \== (-).date_time_value66,2557 -date_time_value(daylight_saving, date(_,_,_,_,_,_,_,_,D), D) :- D \== (-).date_time_value66,2557 -date_time_value(daylight_saving, date(_,_,_,_,_,_,_,_,D), D) :- D \== (-).date_time_value66,2557 -date_time_value(date, date(Y,M,D,_,_,_,_,_,_), date(Y,M,D)).date_time_value68,2633 -date_time_value(date, date(Y,M,D,_,_,_,_,_,_), date(Y,M,D)).date_time_value68,2633 -date_time_value(time, date(_,_,_,H,M,S,_,_,_), time(H,M,S)).date_time_value69,2696 -date_time_value(time, date(_,_,_,H,M,S,_,_,_), time(H,M,S)).date_time_value69,2696 -parse_time(Text, Stamp) :-parse_time82,3111 -parse_time(Text, Stamp) :-parse_time82,3111 -parse_time(Text, Stamp) :-parse_time82,3111 -parse_time(Text, Format, Stamp) :-parse_time85,3174 -parse_time(Text, Format, Stamp) :-parse_time85,3174 -parse_time(Text, Format, Stamp) :-parse_time85,3174 -date(iso_8601, Yr, Mon, D, H, Min, S, 0) --> % BCdate90,3358 -date(iso_8601, Yr, Mon, D, H, Min, S, 0) --> % BCdate90,3358 -date(iso_8601, Yr, Mon, D, H, Min, S, 0) --> % BCdate90,3358 -date(iso_8601, Y, Mon, D, H, Min, S, 0) -->date93,3474 -date(iso_8601, Y, Mon, D, H, Min, S, 0) -->date93,3474 -date(iso_8601, Y, Mon, D, H, Min, S, 0) -->date93,3474 -date(rfc_1123, Y, Mon, D, H, Min, S, 0) --> % RFC 1123: "Fri, 08 Dec 2006 15:29:44 GMT"date96,3566 -date(rfc_1123, Y, Mon, D, H, Min, S, 0) --> % RFC 1123: "Fri, 08 Dec 2006 15:29:44 GMT"date96,3566 -date(rfc_1123, Y, Mon, D, H, Min, S, 0) --> % RFC 1123: "Fri, 08 Dec 2006 15:29:44 GMT"date96,3566 -iso_8601_rest(_, Mon, D, H, Min, S) -->iso_8601_rest111,3938 -iso_8601_rest(_, Mon, D, H, Min, S) -->iso_8601_rest111,3938 -iso_8601_rest(_, Mon, D, H, Min, S) -->iso_8601_rest111,3938 -iso_8601_rest(_, Mon, 0, 0, 0, 0) -->iso_8601_rest114,4031 -iso_8601_rest(_, Mon, 0, 0, 0, 0) -->iso_8601_rest114,4031 -iso_8601_rest(_, Mon, 0, 0, 0, 0) -->iso_8601_rest114,4031 -iso_8601_rest(_, Mon, D, H, Min, S) -->iso_8601_rest116,4087 -iso_8601_rest(_, Mon, D, H, Min, S) -->iso_8601_rest116,4087 -iso_8601_rest(_, Mon, D, H, Min, S) -->iso_8601_rest116,4087 -iso_8601_rest(_, 1, D, H, Min, S) -->iso_8601_rest119,4170 -iso_8601_rest(_, 1, D, H, Min, S) -->iso_8601_rest119,4170 -iso_8601_rest(_, 1, D, H, Min, S) -->iso_8601_rest119,4170 -iso_8601_rest(Yr, 1, D, H, Min, S) -->iso_8601_rest122,4248 -iso_8601_rest(Yr, 1, D, H, Min, S) -->iso_8601_rest122,4248 -iso_8601_rest(Yr, 1, D, H, Min, S) -->iso_8601_rest122,4248 -iso_8601_rest(Yr, 1, D, H, Min, S) -->iso_8601_rest126,4384 -iso_8601_rest(Yr, 1, D, H, Min, S) -->iso_8601_rest126,4384 -iso_8601_rest(Yr, 1, D, H, Min, S) -->iso_8601_rest126,4384 -iso_8601_rest(Yr, 1, D, 0, 0, 0) -->iso_8601_rest130,4514 -iso_8601_rest(Yr, 1, D, 0, 0, 0) -->iso_8601_rest130,4514 -iso_8601_rest(Yr, 1, D, 0, 0, 0) -->iso_8601_rest130,4514 -opt_time(Hr, Min, Sec) -->opt_time134,4599 -opt_time(Hr, Min, Sec) -->opt_time134,4599 -opt_time(Hr, Min, Sec) -->opt_time134,4599 -opt_time(0, 0, 0) --> "".opt_time136,4659 -opt_time(0, 0, 0) --> "".opt_time136,4659 -opt_time(0, 0, 0) --> "".opt_time136,4659 -iso_time(Hr, Min, Sec) -->iso_time140,4742 -iso_time(Hr, Min, Sec) -->iso_time140,4742 -iso_time(Hr, Min, Sec) -->iso_time140,4742 -iso_time(Hr, Min, Sec) -->iso_time144,4883 -iso_time(Hr, Min, Sec) -->iso_time144,4883 -iso_time(Hr, Min, Sec) -->iso_time144,4883 -iso_time(Hr, Min, Sec) -->iso_time148,5004 -iso_time(Hr, Min, Sec) -->iso_time148,5004 -iso_time(Hr, Min, Sec) -->iso_time148,5004 -iso_time(Hr, Min, Sec) -->iso_time152,5135 -iso_time(Hr, Min, Sec) -->iso_time152,5135 -iso_time(Hr, Min, Sec) -->iso_time152,5135 -iso_time(Hr, Min, Sec) -->iso_time156,5251 -iso_time(Hr, Min, Sec) -->iso_time156,5251 -iso_time(Hr, Min, Sec) -->iso_time156,5251 -timezone(Hr, Min, 0) -->timezone162,5385 -timezone(Hr, Min, 0) -->timezone162,5385 -timezone(Hr, Min, 0) -->timezone162,5385 -timezone(Hr, Min, 0) -->timezone164,5474 -timezone(Hr, Min, 0) -->timezone164,5474 -timezone(Hr, Min, 0) -->timezone164,5474 -timezone(Hr, 0, 0) -->timezone166,5558 -timezone(Hr, 0, 0) -->timezone166,5558 -timezone(Hr, 0, 0) -->timezone166,5558 -timezone(Hr, Min, 0) -->timezone168,5614 -timezone(Hr, Min, 0) -->timezone168,5614 -timezone(Hr, Min, 0) -->timezone168,5614 -timezone(Hr, Min, 0) -->timezone170,5693 -timezone(Hr, Min, 0) -->timezone170,5693 -timezone(Hr, Min, 0) -->timezone170,5693 -timezone(Hr, 0, 0) -->timezone172,5767 -timezone(Hr, 0, 0) -->timezone172,5767 -timezone(Hr, 0, 0) -->timezone172,5767 -timezone(0, 0, 0) -->timezone174,5818 -timezone(0, 0, 0) -->timezone174,5818 -timezone(0, 0, 0) -->timezone174,5818 -timezone(0, 0, 0) -->timezone176,5846 -timezone(0, 0, 0) -->timezone176,5846 -timezone(0, 0, 0) -->timezone176,5846 -timezone(0, 0, 0) -->timezone178,5880 -timezone(0, 0, 0) -->timezone178,5880 -timezone(0, 0, 0) -->timezone178,5880 -timezone(0, 0, 0) -->timezone180,5929 -timezone(0, 0, 0) -->timezone180,5929 -timezone(0, 0, 0) -->timezone180,5929 -day_name(0) --> "Sun".day_name183,5957 -day_name(0) --> "Sun".day_name183,5957 -day_name(0) --> "Sun".day_name183,5957 -day_name(1) --> "Mon".day_name184,5980 -day_name(1) --> "Mon".day_name184,5980 -day_name(1) --> "Mon".day_name184,5980 -day_name(2) --> "Tue".day_name185,6003 -day_name(2) --> "Tue".day_name185,6003 -day_name(2) --> "Tue".day_name185,6003 -day_name(3) --> "Wed".day_name186,6026 -day_name(3) --> "Wed".day_name186,6026 -day_name(3) --> "Wed".day_name186,6026 -day_name(4) --> "Thu".day_name187,6049 -day_name(4) --> "Thu".day_name187,6049 -day_name(4) --> "Thu".day_name187,6049 -day_name(5) --> "Fri".day_name188,6072 -day_name(5) --> "Fri".day_name188,6072 -day_name(5) --> "Fri".day_name188,6072 -day_name(6) --> "Sat".day_name189,6095 -day_name(6) --> "Sat".day_name189,6095 -day_name(6) --> "Sat".day_name189,6095 -day_name(7) --> "Sun".day_name190,6118 -day_name(7) --> "Sun".day_name190,6118 -day_name(7) --> "Sun".day_name190,6118 -month_name(1) --> "Jan".month_name192,6142 -month_name(1) --> "Jan".month_name192,6142 -month_name(1) --> "Jan".month_name192,6142 -month_name(2) --> "Feb".month_name193,6167 -month_name(2) --> "Feb".month_name193,6167 -month_name(2) --> "Feb".month_name193,6167 -month_name(3) --> "Mar".month_name194,6192 -month_name(3) --> "Mar".month_name194,6192 -month_name(3) --> "Mar".month_name194,6192 -month_name(4) --> "Apr".month_name195,6217 -month_name(4) --> "Apr".month_name195,6217 -month_name(4) --> "Apr".month_name195,6217 -month_name(5) --> "May".month_name196,6242 -month_name(5) --> "May".month_name196,6242 -month_name(5) --> "May".month_name196,6242 -month_name(6) --> "Jun".month_name197,6267 -month_name(6) --> "Jun".month_name197,6267 -month_name(6) --> "Jun".month_name197,6267 -month_name(7) --> "Jul".month_name198,6292 -month_name(7) --> "Jul".month_name198,6292 -month_name(7) --> "Jul".month_name198,6292 -month_name(8) --> "Aug".month_name199,6317 -month_name(8) --> "Aug".month_name199,6317 -month_name(8) --> "Aug".month_name199,6317 -month_name(9) --> "Sep".month_name200,6342 -month_name(9) --> "Sep".month_name200,6342 -month_name(9) --> "Sep".month_name200,6342 -month_name(10) --> "Oct".month_name201,6367 -month_name(10) --> "Oct".month_name201,6367 -month_name(10) --> "Oct".month_name201,6367 -month_name(11) --> "Nov".month_name202,6393 -month_name(11) --> "Nov".month_name202,6393 -month_name(11) --> "Nov".month_name202,6393 -month_name(12) --> "Dec".month_name203,6419 -month_name(12) --> "Dec".month_name203,6419 -month_name(12) --> "Dec".month_name203,6419 -day_of_the_month(N) --> int2digit(N), { between(1, 31, N) }.day_of_the_month205,6446 -day_of_the_month(N) --> int2digit(N), { between(1, 31, N) }.day_of_the_month205,6446 -day_of_the_month(N) --> int2digit(N), { between(1, 31, N) }.day_of_the_month205,6446 -day_of_the_week(N) --> digit(N), { between(1, 7, N) }.day_of_the_week206,6507 -day_of_the_week(N) --> digit(N), { between(1, 7, N) }.day_of_the_week206,6507 -day_of_the_week(N) --> digit(N), { between(1, 7, N) }.day_of_the_week206,6507 -month(M) --> int2digit(M), { between(1, 12, M) }.month207,6568 -month(M) --> int2digit(M), { between(1, 12, M) }.month207,6568 -month(M) --> int2digit(M), { between(1, 12, M) }.month207,6568 -week(W) --> int2digit(W), { between(1, 53, W) }.week208,6629 -week(W) --> int2digit(W), { between(1, 53, W) }.week208,6629 -week(W) --> int2digit(W), { between(1, 53, W) }.week208,6629 -day(D) --> int2digit(D), { between(1, 31, D) }.day209,6683 -day(D) --> int2digit(D), { between(1, 31, D) }.day209,6683 -day(D) --> int2digit(D), { between(1, 31, D) }.day209,6683 -hour(N) --> int2digit(N), { between(0, 23, N) }.hour210,6744 -hour(N) --> int2digit(N), { between(0, 23, N) }.hour210,6744 -hour(N) --> int2digit(N), { between(0, 23, N) }.hour210,6744 -minute(N) --> int2digit(N), { between(0, 59, N) }.minute211,6805 -minute(N) --> int2digit(N), { between(0, 59, N) }.minute211,6805 -minute(N) --> int2digit(N), { between(0, 59, N) }.minute211,6805 -second(N) --> int2digit(N), { between(0, 60, N) }. % leap secondsecond212,6860 -second(N) --> int2digit(N), { between(0, 60, N) }. % leap secondsecond212,6860 -second(N) --> int2digit(N), { between(0, 60, N) }. % leap secondsecond212,6860 -int2digit(N) -->int2digit214,6936 -int2digit(N) -->int2digit214,6936 -int2digit(N) -->int2digit214,6936 -year(Y) -->year219,6998 -year(Y) -->year219,6998 -year(Y) -->year219,6998 -ordinal(N) --> % Nth day of the year, jan 1 = 1, dec 31 = 365 or 366ordinal226,7094 -ordinal(N) --> % Nth day of the year, jan 1 = 1, dec 31 = 365 or 366ordinal226,7094 -ordinal(N) --> % Nth day of the year, jan 1 = 1, dec 31 = 365 or 366ordinal226,7094 -digit(D) -->digit232,7247 -digit(D) -->digit232,7247 -digit(D) -->digit232,7247 -ws -->ws236,7296 -ws -->ws239,7317 -day_of_the_week(date(Year, Mon, Day), DotW) :-day_of_the_week250,7602 -day_of_the_week(date(Year, Mon, Day), DotW) :-day_of_the_week250,7602 -day_of_the_week(date(Year, Mon, Day), DotW) :-day_of_the_week250,7602 -week_ordinal(Year, Week, Day, Ordinal) :-week_ordinal254,7742 -week_ordinal(Year, Week, Day, Ordinal) :-week_ordinal254,7742 -week_ordinal(Year, Week, Day, Ordinal) :-week_ordinal254,7742 - -swi/library/dcg/basics.pl,4753 -string_without(End, Codes) -->string_without95,3410 -string_without(End, Codes) -->string_without95,3410 -string_without(End, Codes) -->string_without95,3410 -string_without(End, Codes) -->string_without100,3534 -string_without(End, Codes) -->string_without100,3534 -string_without(End, Codes) -->string_without100,3534 -list_string_without(Not, [C|T]) -->list_string_without103,3600 -list_string_without(Not, [C|T]) -->list_string_without103,3600 -list_string_without(Not, [C|T]) -->list_string_without103,3600 -list_string_without(_, []) -->list_string_without108,3703 -list_string_without(_, []) -->list_string_without108,3703 -list_string_without(_, []) -->list_string_without108,3703 -string([]) -->string125,4063 -string([]) -->string125,4063 -string([]) -->string125,4063 -string([H|T]) -->string127,4083 -string([H|T]) -->string127,4083 -string([H|T]) -->string127,4083 -blanks -->blanks135,4187 -blanks -->blanks138,4218 -blank -->blank148,4357 -nonblanks([H|T]) -->nonblanks158,4479 -nonblanks([H|T]) -->nonblanks158,4479 -nonblanks([H|T]) -->nonblanks158,4479 -nonblanks([]) -->nonblanks163,4551 -nonblanks([]) -->nonblanks163,4551 -nonblanks([]) -->nonblanks163,4551 -nonblank(H) -->nonblank170,4661 -nonblank(H) -->nonblank170,4661 -nonblank(H) -->nonblank170,4661 -blanks_to_nl -->blanks_to_nl180,4838 -blanks_to_nl -->blanks_to_nl182,4865 -blanks_to_nl -->blanks_to_nl185,4908 -whites -->whites194,5031 -whites -->whites197,5062 -white -->white205,5192 -alpha_to_lower(L) -->alpha_to_lower222,5544 -alpha_to_lower(L) -->alpha_to_lower222,5544 -alpha_to_lower(L) -->alpha_to_lower222,5544 -alpha_to_lower(L) -->alpha_to_lower225,5592 -alpha_to_lower(L) -->alpha_to_lower225,5592 -alpha_to_lower(L) -->alpha_to_lower225,5592 -digits([H|T]) -->digits245,6101 -digits([H|T]) -->digits245,6101 -digits([H|T]) -->digits245,6101 -digits([]) -->digits248,6145 -digits([]) -->digits248,6145 -digits([]) -->digits248,6145 -digit(C) -->digit251,6166 -digit(C) -->digit251,6166 -digit(C) -->digit251,6166 -integer(I, Head, Tail) :-integer256,6213 -integer(I, Head, Tail) :-integer256,6213 -integer(I, Head, Tail) :-integer256,6213 -integer(I) -->integer259,6294 -integer(I) -->integer259,6294 -integer(I) -->integer259,6294 -int_codes([C,D0|D]) -->int_codes264,6359 -int_codes([C,D0|D]) -->int_codes264,6359 -int_codes([C,D0|D]) -->int_codes264,6359 -int_codes([D0|D]) -->int_codes268,6420 -int_codes([D0|D]) -->int_codes268,6420 -int_codes([D0|D]) -->int_codes268,6420 -float(F, Head, Tail) :-float278,6597 -float(F, Head, Tail) :-float278,6597 -float(F, Head, Tail) :-float278,6597 -float(F) -->float281,6681 -float(F) -->float281,6681 -float(F) -->float281,6681 -number(N, Head, Tail) :-number291,6871 -number(N, Head, Tail) :-number291,6871 -number(N, Head, Tail) :-number291,6871 -number(N) -->number294,6948 -number(N) -->number294,6948 -number(N) -->number294,6948 -sign(0'-) --> "-".sign311,7188 -sign(0'-) --> "-".sign311,7188 -sign(0'-) --> "-".sign311,7188 -sign(0'+) --> "+".sign312,7207 -sign(0'+) --> "+".sign312,7207 -sign(0'+) --> "+".sign312,7207 -dot --> ".".dot314,7227 -exp --> "e".exp316,7241 -exp --> "E".exp317,7254 -xinteger(Val, Head, Tail) :-xinteger329,7513 -xinteger(Val, Head, Tail) :-xinteger329,7513 -xinteger(Val, Head, Tail) :-xinteger329,7513 -xinteger(Val) -->xinteger332,7600 -xinteger(Val) -->xinteger332,7600 -xinteger(Val) -->xinteger332,7600 -xdigit(D) -->xdigit343,7801 -xdigit(D) -->xdigit343,7801 -xdigit(D) -->xdigit343,7801 -xdigits([D0|D]) -->xdigits353,7972 -xdigits([D0|D]) -->xdigits353,7972 -xdigits([D0|D]) -->xdigits353,7972 -xdigits([]) -->xdigits356,8021 -xdigits([]) -->xdigits356,8021 -xdigits([]) -->xdigits356,8021 -mkval([W0|Weights], Base, Val) :-mkval359,8043 -mkval([W0|Weights], Base, Val) :-mkval359,8043 -mkval([W0|Weights], Base, Val) :-mkval359,8043 -mkval([], _, W, W).mkval362,8110 -mkval([], _, W, W).mkval362,8110 -mkval([H|T], Base, W0, W) :-mkval363,8130 -mkval([H|T], Base, W0, W) :-mkval363,8130 -mkval([H|T], Base, W0, W) :-mkval363,8130 -eos([], []).eos385,8593 -eos([], []).eos385,8593 -prolog_var_name(Name) -->prolog_var_name396,8868 -prolog_var_name(Name) -->prolog_var_name396,8868 -prolog_var_name(Name) -->prolog_var_name396,8868 -prolog_id_cont([H|T]) -->prolog_id_cont401,8995 -prolog_id_cont([H|T]) -->prolog_id_cont401,8995 -prolog_id_cont([H|T]) -->prolog_id_cont401,8995 -prolog_id_cont([]) --> "".prolog_id_cont404,9096 -prolog_id_cont([]) --> "".prolog_id_cont404,9096 -prolog_id_cont([]) --> "".prolog_id_cont404,9096 -atom(Atom, Head, Tail) :-atom416,9346 -atom(Atom, Head, Tail) :-atom416,9346 -atom(Atom, Head, Tail) :-atom416,9346 - -swi/library/debug.pl,7280 -:- multifile prolog:assertion_failed/2.multifile50,1818 -:- multifile prolog:assertion_failed/2.multifile50,1818 -:- dynamic prolog:assertion_failed/2.dynamic51,1858 -:- dynamic prolog:assertion_failed/2.dynamic51,1858 -backtrace(N) :-backtrace60,2099 -backtrace(N) :-backtrace60,2099 -backtrace(N) :-backtrace60,2099 -debug_context(thread).debug_context71,2261 -debug_context(thread).debug_context71,2261 -debugging(Topic) :-debugging113,3418 -debugging(Topic) :-debugging113,3418 -debugging(Topic) :-debugging113,3418 -debugging(Topic, Bool) :-debugging116,3469 -debugging(Topic, Bool) :-debugging116,3469 -debugging(Topic, Bool) :-debugging116,3469 -debug(Topic) :-debug131,4030 -debug(Topic) :-debug131,4030 -debug(Topic) :-debug131,4030 -nodebug(Topic) :-nodebug133,4067 -nodebug(Topic) :-nodebug133,4067 -nodebug(Topic) :-nodebug133,4067 -debug(Spec, Val) :-debug136,4108 -debug(Spec, Val) :-debug136,4108 -debug(Spec, Val) :-debug136,4108 -debug_target(Spec, Topic, To) :-debug_target153,4559 -debug_target(Spec, Topic, To) :-debug_target153,4559 -debug_target(Spec, Topic, To) :-debug_target153,4559 -debug_target(Topic, Topic, -).debug_target156,4632 -debug_target(Topic, Topic, -).debug_target156,4632 -update_debug(_, To0, true, -, true, To) :- !,update_debug158,4664 -update_debug(_, To0, true, -, true, To) :- !,update_debug158,4664 -update_debug(_, To0, true, -, true, To) :- !,update_debug158,4664 -update_debug(true, To0, true, Out, true, Output) :- !,update_debug160,4735 -update_debug(true, To0, true, Out, true, Output) :- !,update_debug160,4735 -update_debug(true, To0, true, Out, true, Output) :- !,update_debug160,4735 -update_debug(false, _, true, Out, true, [Out]) :- !.update_debug162,4819 -update_debug(false, _, true, Out, true, [Out]) :- !.update_debug162,4819 -update_debug(false, _, true, Out, true, [Out]) :- !.update_debug162,4819 -update_debug(_, _, false, -, false, []) :- !.update_debug163,4872 -update_debug(_, _, false, -, false, []) :- !.update_debug163,4872 -update_debug(_, _, false, -, false, []) :- !.update_debug163,4872 -update_debug(true, [Out], false, Out, false, []) :- !.update_debug164,4918 -update_debug(true, [Out], false, Out, false, []) :- !.update_debug164,4918 -update_debug(true, [Out], false, Out, false, []) :- !.update_debug164,4918 -update_debug(true, To0, false, Out, true, Output) :- !,update_debug165,4973 -update_debug(true, To0, false, Out, true, Output) :- !,update_debug165,4973 -update_debug(true, To0, false, Out, true, Output) :- !,update_debug165,4973 -ensure_output([], [user_error]) :- !.ensure_output168,5057 -ensure_output([], [user_error]) :- !.ensure_output168,5057 -ensure_output([], [user_error]) :- !.ensure_output168,5057 -ensure_output(List, List).ensure_output169,5095 -ensure_output(List, List).ensure_output169,5095 -debug_topic(Topic) :-debug_topic176,5254 -debug_topic(Topic) :-debug_topic176,5254 -debug_topic(Topic) :-debug_topic176,5254 -list_debug_topics :-list_debug_topics187,5479 -debug_message_context(+Topic) :- !,debug_message_context206,6125 -debug_message_context(+Topic) :- !,debug_message_context206,6125 -debug_message_context(+Topic) :- !,debug_message_context206,6125 -debug_message_context(-Topic) :- !,debug_message_context210,6254 -debug_message_context(-Topic) :- !,debug_message_context210,6254 -debug_message_context(-Topic) :- !,debug_message_context210,6254 -debug_message_context(Term) :-debug_message_context213,6352 -debug_message_context(Term) :-debug_message_context213,6352 -debug_message_context(Term) :-debug_message_context213,6352 -valid_topic(thread, thread, thread) :- !.valid_topic216,6426 -valid_topic(thread, thread, thread) :- !.valid_topic216,6426 -valid_topic(thread, thread, thread) :- !.valid_topic216,6426 -valid_topic(time, time(_), time('%T.%3f')) :- !.valid_topic217,6468 -valid_topic(time, time(_), time('%T.%3f')) :- !.valid_topic217,6468 -valid_topic(time, time(_), time('%T.%3f')) :- !.valid_topic217,6468 -valid_topic(time(Format), time(_), time(Format)) :- !.valid_topic218,6517 -valid_topic(time(Format), time(_), time(Format)) :- !.valid_topic218,6517 -valid_topic(time(Format), time(_), time(Format)) :- !.valid_topic218,6517 -valid_topic(X, _, _) :-valid_topic219,6572 -valid_topic(X, _, _) :-valid_topic219,6572 -valid_topic(X, _, _) :-valid_topic219,6572 -debug(Topic, Format, Args) :-debug239,7336 -debug(Topic, Format, Args) :-debug239,7336 -debug(Topic, Format, Args) :-debug239,7336 -debug(_, _, _).debug242,7437 -debug(_, _, _).debug242,7437 -print_debug(Topic, _To, Format, Args) :-print_debug257,7733 -print_debug(Topic, _To, Format, Args) :-print_debug257,7733 -print_debug(Topic, _To, Format, Args) :-print_debug257,7733 -print_debug(_, [], _, _) :- !.print_debug259,7824 -print_debug(_, [], _, _) :- !.print_debug259,7824 -print_debug(_, [], _, _) :- !.print_debug259,7824 -print_debug(Topic, To, Format, Args) :-print_debug260,7855 -print_debug(Topic, To, Format, Args) :-print_debug260,7855 -print_debug(Topic, To, Format, Args) :-print_debug260,7855 -debug_output(user, user_error) :- !.debug_output270,8109 -debug_output(user, user_error) :- !.debug_output270,8109 -debug_output(user, user_error) :- !.debug_output270,8109 -debug_output(Stream, Stream) :-debug_output271,8146 -debug_output(Stream, Stream) :-debug_output271,8146 -debug_output(Stream, Stream) :-debug_output271,8146 -debug_output(File, Stream) :-debug_output273,8201 -debug_output(File, Stream) :-debug_output273,8201 -debug_output(File, Stream) :-debug_output273,8201 -assertion(G) :-assertion299,8963 -assertion(G) :-assertion299,8963 -assertion(G) :-assertion299,8963 -assertion(G) :-assertion304,9047 -assertion(G) :-assertion304,9047 -assertion(G) :-assertion304,9047 -assertion_failed(Reason, G) :-assertion_failed308,9146 -assertion_failed(Reason, G) :-assertion_failed308,9146 -assertion_failed(Reason, G) :-assertion_failed308,9146 -assertion_failed(Reason, G) :-assertion_failed310,9217 -assertion_failed(Reason, G) :-assertion_failed310,9217 -assertion_failed(Reason, G) :-assertion_failed310,9217 -system:goal_expansion(debug(Topic,_,_), true) :-goal_expansion335,9829 -system:goal_expansion(debug(Topic,_,_), true) :-goal_expansion335,9829 -system:goal_expansion(debugging(Topic), fail) :-goal_expansion341,9968 -system:goal_expansion(debugging(Topic), fail) :-goal_expansion341,9968 -system:goal_expansion(assertion(_), Goal) :-goal_expansion347,10107 -system:goal_expansion(assertion(_), Goal) :-goal_expansion347,10107 -system:goal_expansion(assume(_), Goal) :-goal_expansion350,10204 -system:goal_expansion(assume(_), Goal) :-goal_expansion350,10204 -prolog:message(assertion_failed(_, G)) -->message364,10515 -prolog:message(assertion_failed(_, G)) -->message364,10515 -prolog:message(debug(Fmt, Args)) -->message366,10591 -prolog:message(debug(Fmt, Args)) -->message366,10591 -prolog:message(debug_no_topic(Topic)) -->message370,10685 -prolog:message(debug_no_topic(Topic)) -->message370,10685 -show_thread_context -->show_thread_context373,10778 -show_thread_context -->show_thread_context379,10894 -show_time_context -->show_time_context382,10924 -show_time_context -->show_time_context388,11057 - -swi/library/doc_latex.pl,0 - -swi/library/edit.pl,17217 -edit(Spec) :-edit62,2234 -edit(Spec) :-edit62,2234 -edit(Spec) :-edit62,2234 -edit_no_trace(Spec) :-edit_no_trace65,2280 -edit_no_trace(Spec) :-edit_no_trace65,2280 -edit_no_trace(Spec) :-edit_no_trace65,2280 -edit_no_trace(Spec) :-edit_no_trace68,2357 -edit_no_trace(Spec) :-edit_no_trace68,2357 -edit_no_trace(Spec) :-edit_no_trace68,2357 -edit :-edit86,2742 -edit :-edit89,2817 -edit :-edit94,2953 -locate(FileSpec:Line, file(Path, line(Line)), [file(Path), line(Line)]) :-locate104,3153 -locate(FileSpec:Line, file(Path, line(Line)), [file(Path), line(Line)]) :-locate104,3153 -locate(FileSpec:Line, file(Path, line(Line)), [file(Path), line(Line)]) :-locate104,3153 -locate(Path, file(Path), [file(Path)]) :-locate115,3630 -locate(Path, file(Path), [file(Path)]) :-locate115,3630 -locate(Path, file(Path), [file(Path)]) :-locate115,3630 -locate(Pattern, file(Path), [file(Path)]) :-locate119,3733 -locate(Pattern, file(Path), [file(Path)]) :-locate119,3733 -locate(Pattern, file(Path), [file(Path)]) :-locate119,3733 -locate(FileBase, file(File), [file(File)]) :-locate125,3915 -locate(FileBase, file(File), [file(File)]) :-locate125,3915 -locate(FileBase, file(File), [file(File)]) :-locate125,3915 -locate(FileSpec, file(File), [file(File)]) :-locate134,4133 -locate(FileSpec, file(File), [file(File)]) :-locate134,4133 -locate(FileSpec, file(File), [file(File)]) :-locate134,4133 -locate(FileBase, source_file(Path), [file(Path)]) :-locate142,4324 -locate(FileBase, source_file(Path), [file(Path)]) :-locate142,4324 -locate(FileBase, source_file(Path), [file(Path)]) :-locate142,4324 -locate(FileBase, include_file(Path), [file(Path)]) :-locate150,4523 -locate(FileBase, include_file(Path), [file(Path)]) :-locate150,4523 -locate(FileBase, include_file(Path), [file(Path)]) :-locate150,4523 -locate(Name, FullSpec, Location) :-locate159,4766 -locate(Name, FullSpec, Location) :-locate159,4766 -locate(Name, FullSpec, Location) :-locate159,4766 -locate(Name/Arity, Module:Name/Arity, Location) :-locate162,4852 -locate(Name/Arity, Module:Name/Arity, Location) :-locate162,4852 -locate(Name/Arity, Module:Name/Arity, Location) :-locate162,4852 -locate(Name//DCGArity, FullSpec, Location) :-locate164,4941 -locate(Name//DCGArity, FullSpec, Location) :-locate164,4941 -locate(Name//DCGArity, FullSpec, Location) :-locate164,4941 -locate(Name/Arity, library(File), [file(PlPath)]) :-locate170,5144 -locate(Name/Arity, library(File), [file(PlPath)]) :-locate170,5144 -locate(Name/Arity, library(File), [file(PlPath)]) :-locate170,5144 -locate(Module:Name, Module:Name/Arity, Location) :-locate188,5588 -locate(Module:Name, Module:Name/Arity, Location) :-locate188,5588 -locate(Module:Name, Module:Name/Arity, Location) :-locate188,5588 -locate(Module:Head, Module:Name/Arity, Location) :-locate190,5678 -locate(Module:Head, Module:Name/Arity, Location) :-locate190,5678 -locate(Module:Head, Module:Name/Arity, Location) :-locate190,5678 -locate(Spec, module(Spec), Location) :-locate194,5814 -locate(Spec, module(Spec), Location) :-locate194,5814 -locate(Spec, module(Spec), Location) :-locate194,5814 -locate(Spec, Spec, Location) :-locate196,5887 -locate(Spec, Spec, Location) :-locate196,5887 -locate(Spec, Spec, Location) :-locate196,5887 -include_file(Path) :-include_file199,5945 -include_file(Path) :-include_file199,5945 -include_file(Path) :-include_file199,5945 -locate(file(File, line(Line)), [file(File), line(Line)]).locate207,6092 -locate(file(File, line(Line)), [file(File), line(Line)]).locate207,6092 -locate(file(File), [file(File)]).locate208,6150 -locate(file(File), [file(File)]).locate208,6150 -locate(Module:Name/Arity, [file(File), line(Line)]) :-locate209,6184 -locate(Module:Name/Arity, [file(File), line(Line)]) :-locate209,6184 -locate(Module:Name/Arity, [file(File), line(Line)]) :-locate209,6184 -locate(module(Module), [file(Path)|Rest]) :-locate228,6731 -locate(module(Module), [file(Path)|Rest]) :-locate228,6731 -locate(module(Module), [file(Path)|Rest]) :-locate228,6731 -locate(breakpoint(Id), Location) :-locate235,6920 -locate(breakpoint(Id), Location) :-locate235,6920 -locate(breakpoint(Id), Location) :-locate235,6920 -locate(clause(Ref), [file(File), line(Line)]) :-locate243,7177 -locate(clause(Ref), [file(File), line(Line)]) :-locate243,7177 -locate(clause(Ref), [file(File), line(Line)]) :-locate243,7177 -locate(clause(Ref, _PC), [file(File), line(Line)]) :- % TBD: use clauselocate246,7302 -locate(clause(Ref, _PC), [file(File), line(Line)]) :- % TBD: use clauselocate246,7302 -locate(clause(Ref, _PC), [file(File), line(Line)]) :- % TBD: use clauselocate246,7302 -do_edit_source(Location) :- % hookdo_edit_source267,8033 -do_edit_source(Location) :- % hookdo_edit_source267,8033 -do_edit_source(Location) :- % hookdo_edit_source267,8033 -do_edit_source(Location) :- % PceEmacsdo_edit_source269,8096 -do_edit_source(Location) :- % PceEmacsdo_edit_source269,8096 -do_edit_source(Location) :- % PceEmacsdo_edit_source269,8096 -do_edit_source(Location) :- % External editordo_edit_source282,8461 -do_edit_source(Location) :- % External editordo_edit_source282,8461 -do_edit_source(Location) :- % External editordo_edit_source282,8461 -external_edit_command(Location, Command) :-external_edit_command293,8795 -external_edit_command(Location, Command) :-external_edit_command293,8795 -external_edit_command(Location, Command) :-external_edit_command293,8795 -external_edit_command(Location, Command) :-external_edit_command306,9222 -external_edit_command(Location, Command) :-external_edit_command306,9222 -external_edit_command(Location, Command) :-external_edit_command306,9222 -external_edit_command(Location, Command) :-external_edit_command318,9611 -external_edit_command(Location, Command) :-external_edit_command318,9611 -external_edit_command(Location, Command) :-external_edit_command318,9611 -pceemacs(pce_emacs).pceemacs323,9770 -pceemacs(pce_emacs).pceemacs323,9770 -pceemacs(built_in).pceemacs324,9791 -pceemacs(built_in).pceemacs324,9791 -editor(Editor) :- % $EDITOReditor330,9874 -editor(Editor) :- % $EDITOReditor330,9874 -editor(Editor) :- % $EDITOReditor330,9874 -editor(Editor) :- % User defaultseditor340,10165 -editor(Editor) :- % User defaultseditor340,10165 -editor(Editor) :- % User defaultseditor340,10165 -editor(vi) :- % Platform defaultseditor342,10231 -editor(vi) :- % Platform defaultseditor342,10231 -editor(vi) :- % Platform defaultseditor342,10231 -editor(notepad) :-editor344,10305 -editor(notepad) :-editor344,10305 -editor(notepad) :-editor344,10305 -editor(_) :- % No luckeditor346,10364 -editor(_) :- % No luckeditor346,10364 -editor(_) :- % No luckeditor346,10364 -edit_command(vi, '%e +%d \'%f\'').edit_command359,10731 -edit_command(vi, '%e +%d \'%f\'').edit_command359,10731 -edit_command(vi, '%e \'%f\'').edit_command360,10768 -edit_command(vi, '%e \'%f\'').edit_command360,10768 -edit_command(emacs, '%e +%d \'%f\'').edit_command361,10801 -edit_command(emacs, '%e +%d \'%f\'').edit_command361,10801 -edit_command(emacs, '%e \'%f\'').edit_command362,10841 -edit_command(emacs, '%e \'%f\'').edit_command362,10841 -edit_command(notepad, '"%e" "%f"').edit_command363,10877 -edit_command(notepad, '"%e" "%f"').edit_command363,10877 -edit_command(wordpad, '"%e" "%f"').edit_command364,10917 -edit_command(wordpad, '"%e" "%f"').edit_command364,10917 -edit_command(uedit32, '%e "%f/%d/0"'). % ultraedit (www.ultraedit.com)edit_command365,10957 -edit_command(uedit32, '%e "%f/%d/0"'). % ultraedit (www.ultraedit.com)edit_command365,10957 -edit_command(jedit, '%e -wait \'%f\' +line:%d').edit_command366,11032 -edit_command(jedit, '%e -wait \'%f\' +line:%d').edit_command366,11032 -edit_command(jedit, '%e -wait \'%f\'').edit_command367,11083 -edit_command(jedit, '%e -wait \'%f\'').edit_command367,11083 -edit_command(edit, '%e %f:%d'). % PceEmacs client scriptedit_command368,11125 -edit_command(edit, '%e %f:%d'). % PceEmacs client scriptedit_command368,11125 -edit_command(edit, '%e %f').edit_command369,11190 -edit_command(edit, '%e %f').edit_command369,11190 -edit_command(emacsclient, Command) :- edit_command(emacs, Command).edit_command371,11227 -edit_command(emacsclient, Command) :- edit_command(emacs, Command).edit_command371,11227 -edit_command(emacsclient, Command) :- edit_command(emacs, Command).edit_command371,11227 -edit_command(emacsclient, Command) :- edit_command(emacs, Command).edit_command371,11227 -edit_command(emacsclient, Command) :- edit_command(emacs, Command).edit_command371,11227 -edit_command(vim, Command) :- edit_command(vi, Command).edit_command372,11295 -edit_command(vim, Command) :- edit_command(vi, Command).edit_command372,11295 -edit_command(vim, Command) :- edit_command(vi, Command).edit_command372,11295 -edit_command(vim, Command) :- edit_command(vi, Command).edit_command372,11295 -edit_command(vim, Command) :- edit_command(vi, Command).edit_command372,11295 -substitute(FromAtom, ToAtom, Old, New) :-substitute374,11364 -substitute(FromAtom, ToAtom, Old, New) :-substitute374,11364 -substitute(FromAtom, ToAtom, Old, New) :-substitute374,11364 -substitute(_, _, Old, Old).substitute384,11614 -substitute(_, _, Old, Old).substitute384,11614 -merge_locations(Pairs0, Pairs) :-merge_locations391,11738 -merge_locations(Pairs0, Pairs) :-merge_locations391,11738 -merge_locations(Pairs0, Pairs) :-merge_locations391,11738 -merge_locations2([], []).merge_locations2395,11833 -merge_locations2([], []).merge_locations2395,11833 -merge_locations2([H0|T0], [H|T]) :-merge_locations2396,11859 -merge_locations2([H0|T0], [H|T]) :-merge_locations2396,11859 -merge_locations2([H0|T0], [H|T]) :-merge_locations2396,11859 -remove_same_location(Pair0, H, [Pair1|T0], L) :-remove_same_location400,11960 -remove_same_location(Pair0, H, [Pair1|T0], L) :-remove_same_location400,11960 -remove_same_location(Pair0, H, [Pair1|T0], L) :-remove_same_location400,11960 -remove_same_location(H, H, L, L).remove_same_location403,12091 -remove_same_location(H, H, L, L).remove_same_location403,12091 -merge_locations(Loc1-Spec1, Loc2-Spec2, Loc-Spec) :-merge_locations405,12126 -merge_locations(Loc1-Spec1, Loc2-Spec2, Loc-Spec) :-merge_locations405,12126 -merge_locations(Loc1-Spec1, Loc2-Spec2, Loc-Spec) :-merge_locations405,12126 -merge_locations([file(X)]-_, Loc-Spec, Loc-Spec) :-merge_locations411,12314 -merge_locations([file(X)]-_, Loc-Spec, Loc-Spec) :-merge_locations411,12314 -merge_locations([file(X)]-_, Loc-Spec, Loc-Spec) :-merge_locations411,12314 -same_location(L, L, L).same_location415,12419 -same_location(L, L, L).same_location415,12419 -same_location([file(F1)], [file(F2)], [file(F)]) :-same_location416,12443 -same_location([file(F1)], [file(F2)], [file(F)]) :-same_location416,12443 -same_location([file(F1)], [file(F2)], [file(F)]) :-same_location416,12443 -same_location([file(F1),line(L)], [file(F2)], [file(F),line(L)]) :-same_location418,12523 -same_location([file(F1),line(L)], [file(F2)], [file(F),line(L)]) :-same_location418,12523 -same_location([file(F1),line(L)], [file(F2)], [file(F),line(L)]) :-same_location418,12523 -same_location([file(F1)], [file(F2),line(L)], [file(F),line(L)]) :-same_location420,12619 -same_location([file(F1)], [file(F2),line(L)], [file(F),line(L)]) :-same_location420,12619 -same_location([file(F1)], [file(F2),line(L)], [file(F),line(L)]) :-same_location420,12619 -best_same_file(F1, F2, F) :-best_same_file423,12716 -best_same_file(F1, F2, F) :-best_same_file423,12716 -best_same_file(F1, F2, F) :-best_same_file423,12716 -merge_specs(source_file(Path), _, source_file(Path)).merge_specs432,12870 -merge_specs(source_file(Path), _, source_file(Path)).merge_specs432,12870 -do_select_location(Pairs, Spec, Location) :-do_select_location436,12975 -do_select_location(Pairs, Spec, Location) :-do_select_location436,12975 -do_select_location(Pairs, Spec, Location) :-do_select_location436,12975 -do_select_location([], Spec, _) :- !,do_select_location439,13090 -do_select_location([], Spec, _) :- !,do_select_location439,13090 -do_select_location([], Spec, _) :- !,do_select_location439,13090 -do_select_location([Location-_Spec], _, Location) :- !.do_select_location442,13183 -do_select_location([Location-_Spec], _, Location) :- !.do_select_location442,13183 -do_select_location([Location-_Spec], _, Location) :- !.do_select_location442,13183 -do_select_location(Pairs, _, Location) :-do_select_location443,13239 -do_select_location(Pairs, _, Location) :-do_select_location443,13239 -do_select_location(Pairs, _, Location) :-do_select_location443,13239 -list_pairs([], N, N).list_pairs450,13443 -list_pairs([], N, N).list_pairs450,13443 -list_pairs([H|T], N0, N) :-list_pairs451,13465 -list_pairs([H|T], N0, N) :-list_pairs451,13465 -list_pairs([H|T], N0, N) :-list_pairs451,13465 -list_pair(Pair, N) :-list_pair456,13551 -list_pair(Pair, N) :-list_pair456,13551 -list_pair(Pair, N) :-list_pair456,13551 -read_number(Max, X) :-read_number460,13620 -read_number(Max, X) :-read_number460,13620 -read_number(Max, X) :-read_number460,13620 -read_number(_, X) :-read_number465,13716 -read_number(_, X) :-read_number465,13716 -read_number(_, X) :-read_number465,13716 -read_line(Chars) :-read_line470,13787 -read_line(Chars) :-read_line470,13787 -read_line(Chars) :-read_line470,13787 -read_line(10, []) :- !.read_line474,13854 -read_line(10, []) :- !.read_line474,13854 -read_line(10, []) :- !.read_line474,13854 -read_line(-1, []) :- !.read_line475,13878 -read_line(-1, []) :- !.read_line475,13878 -read_line(-1, []) :- !.read_line475,13878 -read_line(C, [C|T]) :-read_line476,13902 -read_line(C, [C|T]) :-read_line476,13902 -read_line(C, [C|T]) :-read_line476,13902 -prolog:message(edit(not_found(Spec))) -->message488,14099 -prolog:message(edit(not_found(Spec))) -->message488,14099 -prolog:message(edit(select)) -->message494,14293 -prolog:message(edit(select)) -->message494,14293 -prolog:message(edit(prompt_select)) -->message496,14370 -prolog:message(edit(prompt_select)) -->message496,14370 -prolog:message(edit(target(Location-Spec, N))) -->message498,14443 -prolog:message(edit(target(Location-Spec, N))) -->message498,14443 -prolog:message(edit(waiting_for_editor)) -->message503,14578 -prolog:message(edit(waiting_for_editor)) -->message503,14578 -prolog:message(edit(make)) -->message505,14662 -prolog:message(edit(make)) -->message505,14662 -prolog:message(edit(canceled)) -->message507,14739 -prolog:message(edit(canceled)) -->message507,14739 -edit_specifier(Module:Name/Arity) --> !,edit_specifier510,14839 -edit_specifier(Module:Name/Arity) --> !,edit_specifier510,14839 -edit_specifier(Module:Name/Arity) --> !,edit_specifier510,14839 -edit_specifier(file(_Path)) --> !,edit_specifier512,14919 -edit_specifier(file(_Path)) --> !,edit_specifier512,14919 -edit_specifier(file(_Path)) --> !,edit_specifier512,14919 -edit_specifier(source_file(_Path)) --> !,edit_specifier514,14969 -edit_specifier(source_file(_Path)) --> !,edit_specifier514,14969 -edit_specifier(source_file(_Path)) --> !,edit_specifier514,14969 -edit_specifier(include_file(_Path)) --> !,edit_specifier516,15033 -edit_specifier(include_file(_Path)) --> !,edit_specifier516,15033 -edit_specifier(include_file(_Path)) --> !,edit_specifier516,15033 -edit_specifier(Term) -->edit_specifier518,15100 -edit_specifier(Term) -->edit_specifier518,15100 -edit_specifier(Term) -->edit_specifier518,15100 -edit_location(Location) -->edit_location521,15144 -edit_location(Location) -->edit_location521,15144 -edit_location(Location) -->edit_location521,15144 -edit_location(Location) -->edit_location527,15308 -edit_location(Location) -->edit_location527,15308 -edit_location(Location) -->edit_location527,15308 -short_filename(Path, Spec) :-short_filename533,15428 -short_filename(Path, Spec) :-short_filename533,15428 -short_filename(Path, Spec) :-short_filename533,15428 -short_filename(Path, Spec) :-short_filename537,15563 -short_filename(Path, Spec) :-short_filename537,15563 -short_filename(Path, Spec) :-short_filename537,15563 -short_filename(Path, Path).short_filename540,15679 -short_filename(Path, Path).short_filename540,15679 -aliased_path(Path, Len-Spec) :-aliased_path542,15708 -aliased_path(Path, Len-Spec) :-aliased_path542,15708 -aliased_path(Path, Len-Spec) :-aliased_path542,15708 -file_alias_path(Alias) :-file_alias_path557,16152 -file_alias_path(Alias) :-file_alias_path557,16152 -file_alias_path(Alias) :-file_alias_path557,16152 -remove_leading_slash(Path, Local) :-remove_leading_slash560,16213 -remove_leading_slash(Path, Local) :-remove_leading_slash560,16213 -remove_leading_slash(Path, Local) :-remove_leading_slash560,16213 -remove_leading_slash(Path, Path).remove_leading_slash562,16283 -remove_leading_slash(Path, Path).remove_leading_slash562,16283 -load_extensions :-load_extensions569,16417 - -swi/library/error.pl,0 - -swi/library/main.pl,717 -main(Argv) :-main50,1869 -main(Argv) :-main50,1869 -main(Argv) :-main50,1869 -echo([]) :- nl.echo53,1897 -echo([]) :- nl.echo53,1897 -echo([]) :- nl.echo53,1897 -echo([Last]) :- !,echo54,1913 -echo([Last]) :- !,echo54,1913 -echo([Last]) :- !,echo54,1913 -echo([H|T]) :-echo56,1950 -echo([H|T]) :-echo56,1950 -echo([H|T]) :-echo56,1950 -main :-main72,2233 -run_main(Module, Av) :-run_main83,2420 -run_main(Module, Av) :-run_main83,2420 -run_main(Module, Av) :-run_main83,2420 -argv(Av) :-argv94,2636 -argv(Av) :-argv94,2636 -argv(Av) :-argv94,2636 -set_signals :-set_signals105,2857 -interrupt(_Sig) :-interrupt113,3005 -interrupt(_Sig) :-interrupt113,3005 -interrupt(_Sig) :-interrupt113,3005 - -swi/library/menu.pl,694 -prolog:on_menu(Label) :-on_menu47,1648 -prolog:on_menu(Label) :-on_menu47,1648 -prolog:win_has_menu :-win_has_menu56,1834 -prolog:win_insert_menu_item(Popup, --, Before, _Goal) :- !,win_insert_menu_item64,2067 -prolog:win_insert_menu_item(Popup, --, Before, _Goal) :- !,win_insert_menu_item64,2067 -prolog:win_insert_menu_item(Popup, Item, Before, Goal) :-win_insert_menu_item66,2200 -prolog:win_insert_menu_item(Popup, Item, Before, Goal) :-win_insert_menu_item66,2200 -insert_menu_item(Popup, Item, Before, Goal) :-insert_menu_item69,2305 -insert_menu_item(Popup, Item, Before, Goal) :-insert_menu_item69,2305 -insert_menu_item(Popup, Item, Before, Goal) :-insert_menu_item69,2305 - -swi/library/nb_set.pl,1564 -empty_nb_set(nb_set(t)).empty_nb_set61,2009 -empty_nb_set(nb_set(t)).empty_nb_set61,2009 -add_nb_set(Key, Set) :-add_nb_set70,2294 -add_nb_set(Key, Set) :-add_nb_set70,2294 -add_nb_set(Key, Set) :-add_nb_set70,2294 -add_nb_set(Key, Set, New) :-add_nb_set72,2344 -add_nb_set(Key, Set, New) :-add_nb_set72,2344 -add_nb_set(Key, Set, New) :-add_nb_set72,2344 -nb_set_to_list(nb_set(Set), List) :-nb_set_to_list91,2744 -nb_set_to_list(nb_set(Set), List) :-nb_set_to_list91,2744 -nb_set_to_list(nb_set(Set), List) :-nb_set_to_list91,2744 -nb_set_to_list(t) -->nb_set_to_list94,2818 -nb_set_to_list(t) -->nb_set_to_list94,2818 -nb_set_to_list(t) -->nb_set_to_list94,2818 -nb_set_to_list(t(Val, Left, Right)) -->nb_set_to_list96,2845 -nb_set_to_list(t(Val, Left, Right)) -->nb_set_to_list96,2845 -nb_set_to_list(t(Val, Left, Right)) -->nb_set_to_list96,2845 -gen_nb_set(nb_set(Tree), Key) :-gen_nb_set106,3036 -gen_nb_set(nb_set(Tree), Key) :-gen_nb_set106,3036 -gen_nb_set(nb_set(Tree), Key) :-gen_nb_set106,3036 -gen_set(t(Val, Left, Right), Key) :-gen_set109,3091 -gen_set(t(Val, Left, Right), Key) :-gen_set109,3091 -gen_set(t(Val, Left, Right), Key) :-gen_set109,3091 -size_nb_set(nb_set(Tree), Size) :-size_nb_set119,3280 -size_nb_set(nb_set(Tree), Size) :-size_nb_set119,3280 -size_nb_set(nb_set(Tree), Size) :-size_nb_set119,3280 -set_size(t, 0).set_size122,3339 -set_size(t, 0).set_size122,3339 -set_size(t(_,L,R), Size) :-set_size123,3355 -set_size(t(_,L,R), Size) :-set_size123,3355 -set_size(t(_,L,R), Size) :-set_size123,3355 - -swi/library/occurs.yap,1769 -contains_term(X, X) :- !.contains_term60,2273 -contains_term(X, X) :- !.contains_term60,2273 -contains_term(X, X) :- !.contains_term60,2273 -contains_term(X, Term) :-contains_term61,2299 -contains_term(X, Term) :-contains_term61,2299 -contains_term(X, Term) :-contains_term61,2299 -contains_var(X0, X1) :-contains_var71,2497 -contains_var(X0, X1) :-contains_var71,2497 -contains_var(X0, X1) :-contains_var71,2497 -contains_var(X, Term) :-contains_var73,2535 -contains_var(X, Term) :-contains_var73,2535 -contains_var(X, Term) :-contains_var73,2535 -free_of_term(Sub, Term) :-free_of_term82,2715 -free_of_term(Sub, Term) :-free_of_term82,2715 -free_of_term(Sub, Term) :-free_of_term82,2715 -free_of_var(Sub, Term) :-free_of_var89,2863 -free_of_var(Sub, Term) :-free_of_var89,2863 -free_of_var(Sub, Term) :-free_of_var89,2863 -occurrences_of_term(Sub, Term, Count) :-occurrences_of_term96,3009 -occurrences_of_term(Sub, Term, Count) :-occurrences_of_term96,3009 -occurrences_of_term(Sub, Term, Count) :-occurrences_of_term96,3009 -occurrences_of_var(Sub, Term, Count) :-occurrences_of_var103,3176 -occurrences_of_var(Sub, Term, Count) :-occurrences_of_var103,3176 -occurrences_of_var(Sub, Term, Count) :-occurrences_of_var103,3176 -sub_term(X, X).sub_term110,3332 -sub_term(X, X).sub_term110,3332 -sub_term(X, Term) :-sub_term111,3348 -sub_term(X, Term) :-sub_term111,3348 -sub_term(X, Term) :-sub_term111,3348 -sub_var(X0, X1) :-sub_var120,3513 -sub_var(X0, X1) :-sub_var120,3513 -sub_var(X0, X1) :-sub_var120,3513 -sub_var(X, Term) :-sub_var122,3543 -sub_var(X, Term) :-sub_var122,3543 -sub_var(X, Term) :-sub_var122,3543 -count(Goal, Count) :-count136,3776 -count(Goal, Count) :-count136,3776 -count(Goal, Count) :-count136,3776 - -swi/library/operators.pl,3225 -push_operators(New, Undo) :-push_operators99,3016 -push_operators(New, Undo) :-push_operators99,3016 -push_operators(New, Undo) :-push_operators99,3016 -push_operators(New) :-push_operators105,3158 -push_operators(New) :-push_operators105,3158 -push_operators(New) :-push_operators105,3158 -push_op(P, T, A0) :-push_op116,3448 -push_op(P, T, A0) :-push_op116,3448 -push_op(P, T, A0) :-push_op116,3448 -pop_operators :-pop_operators131,3719 -pop_operators(Undo) :-pop_operators143,3905 -pop_operators(Undo) :-pop_operators143,3905 -pop_operators(Undo) :-pop_operators143,3905 -tag_ops([], _, []).tag_ops146,3951 -tag_ops([], _, []).tag_ops146,3951 -tag_ops([op(P,Tp,N0)|T0], M, [op(P,Tp,N)|T]) :-tag_ops147,3971 -tag_ops([op(P,Tp,N0)|T0], M, [op(P,Tp,N)|T]) :-tag_ops147,3971 -tag_ops([op(P,Tp,N0)|T0], M, [op(P,Tp,N)|T]) :-tag_ops147,3971 -set_operators([]).set_operators154,4084 -set_operators([]).set_operators154,4084 -set_operators([H|R]) :-set_operators155,4103 -set_operators([H|R]) :-set_operators155,4103 -set_operators([H|R]) :-set_operators155,4103 -set_operators(op(P,T,A)) :-set_operators158,4165 -set_operators(op(P,T,A)) :-set_operators158,4165 -set_operators(op(P,T,A)) :-set_operators158,4165 -undo_operators([], []).undo_operators161,4208 -undo_operators([], []).undo_operators161,4208 -undo_operators([O0|T0], [U0|T]) :-undo_operators162,4232 -undo_operators([O0|T0], [U0|T]) :-undo_operators162,4232 -undo_operators([O0|T0], [U0|T]) :-undo_operators162,4232 -undo_operator(op(_P, T, N), op(OP, OT, N)) :-undo_operator166,4316 -undo_operator(op(_P, T, N), op(OP, OT, N)) :-undo_operator166,4316 -undo_operator(op(_P, T, N), op(OP, OT, N)) :-undo_operator166,4316 -undo_operator(op(P, T, [H|R]), [OH|OT]) :- !,undo_operator169,4411 -undo_operator(op(P, T, [H|R]), [OH|OT]) :- !,undo_operator169,4411 -undo_operator(op(P, T, [H|R]), [OH|OT]) :- !,undo_operator169,4411 -undo_operator(op(_, _, []), []) :- !.undo_operator172,4523 -undo_operator(op(_, _, []), []) :- !.undo_operator172,4523 -undo_operator(op(_, _, []), []) :- !.undo_operator172,4523 -undo_operator(op(_P, T, N), op(0, T, N)).undo_operator173,4561 -undo_operator(op(_P, T, N), op(0, T, N)).undo_operator173,4561 -same_op_type(T, OT) :-same_op_type175,4605 -same_op_type(T, OT) :-same_op_type175,4605 -same_op_type(T, OT) :-same_op_type175,4605 -op_type(fx, prefix).op_type179,4668 -op_type(fx, prefix).op_type179,4668 -op_type(fy, prefix).op_type180,4690 -op_type(fy, prefix).op_type180,4690 -op_type(xfx, infix).op_type181,4712 -op_type(xfx, infix).op_type181,4712 -op_type(xfy, infix).op_type182,4733 -op_type(xfy, infix).op_type182,4733 -op_type(yfx, infix).op_type183,4754 -op_type(yfx, infix).op_type183,4754 -op_type(yfy, infix).op_type184,4775 -op_type(yfy, infix).op_type184,4775 -op_type(xf, postfix).op_type185,4796 -op_type(xf, postfix).op_type185,4796 -op_type(yf, postfix).op_type186,4819 -op_type(yf, postfix).op_type186,4819 -assert_op(Term) :-assert_op193,4934 -assert_op(Term) :-assert_op193,4934 -assert_op(Term) :-assert_op193,4934 -retract_op(Term) :-retract_op196,4986 -retract_op(Term) :-retract_op196,4986 -retract_op(Term) :-retract_op196,4986 - -swi/library/option.pl,6109 -process(Data, Options) :-process67,2651 -process(Data, Options) :-process67,2651 -process(Data, Options) :-process67,2651 -action(Data, Attributes) :-action71,2738 -action(Data, Attributes) :-action71,2738 -action(Data, Attributes) :-action71,2738 -option(Opt, Options, Default) :- % make option processing stead-fastoption90,3260 -option(Opt, Options, Default) :- % make option processing stead-fastoption90,3260 -option(Opt, Options, Default) :- % make option processing stead-fastoption90,3260 -option(Opt, Options, _) :-option97,3469 -option(Opt, Options, _) :-option97,3469 -option(Opt, Options, _) :-option97,3469 -option(Opt, _, Default) :-option99,3526 -option(Opt, _, Default) :-option99,3526 -option(Opt, _, Default) :-option99,3526 -option(Opt, Options) :- % make option processing stead-fastoption110,3842 -option(Opt, Options) :- % make option processing stead-fastoption110,3842 -option(Opt, Options) :- % make option processing stead-fastoption110,3842 -option(Opt, Options) :-option117,4035 -option(Opt, Options) :-option117,4035 -option(Opt, Options) :-option117,4035 -get_option(Opt, Options) :-get_option121,4091 -get_option(Opt, Options) :-get_option121,4091 -get_option(Opt, Options) :-get_option121,4091 -get_option(Opt, Options) :-get_option123,4148 -get_option(Opt, Options) :-get_option123,4148 -get_option(Opt, Options) :-get_option123,4148 -select_option(Opt, Options0, Options) :- % stead-fastselect_option135,4494 -select_option(Opt, Options0, Options) :- % stead-fastselect_option135,4494 -select_option(Opt, Options0, Options) :- % stead-fastselect_option135,4494 -select_option(Opt, Options0, Options) :-select_option142,4696 -select_option(Opt, Options0, Options) :-select_option142,4696 -select_option(Opt, Options0, Options) :-select_option142,4696 -get_option(Opt, Options0, Options) :-get_option146,4779 -get_option(Opt, Options0, Options) :-get_option146,4779 -get_option(Opt, Options0, Options) :-get_option146,4779 -get_option(Opt, Options0, Options) :-get_option148,4853 -get_option(Opt, Options0, Options) :-get_option148,4853 -get_option(Opt, Options0, Options) :-get_option148,4853 -select_option(Option, Options, RestOptions, _Default) :-select_option159,5233 -select_option(Option, Options, RestOptions, _Default) :-select_option159,5233 -select_option(Option, Options, RestOptions, _Default) :-select_option159,5233 -select_option(Option, Options, Options, Default) :-select_option161,5339 -select_option(Option, Options, Options, Default) :-select_option161,5339 -select_option(Option, Options, Options, Default) :-select_option161,5339 -merge_options([], Old, Merged) :- !, Merged = Old.merge_options171,5658 -merge_options([], Old, Merged) :- !, Merged = Old.merge_options171,5658 -merge_options([], Old, Merged) :- !, Merged = Old.merge_options171,5658 -merge_options(New, [], Merged) :- !, Merged = New.merge_options172,5709 -merge_options(New, [], Merged) :- !, Merged = New.merge_options172,5709 -merge_options(New, [], Merged) :- !, Merged = New.merge_options172,5709 -merge_options(New, Old, Merged) :-merge_options173,5760 -merge_options(New, Old, Merged) :-merge_options173,5760 -merge_options(New, Old, Merged) :-merge_options173,5760 -ord_merge([], L, L) :- !.ord_merge180,5962 -ord_merge([], L, L) :- !.ord_merge180,5962 -ord_merge([], L, L) :- !.ord_merge180,5962 -ord_merge(L, [], L) :- !.ord_merge181,5988 -ord_merge(L, [], L) :- !.ord_merge181,5988 -ord_merge(L, [], L) :- !.ord_merge181,5988 -ord_merge([NO|TN], [OO|TO], Merged) :-ord_merge182,6014 -ord_merge([NO|TN], [OO|TO], Merged) :-ord_merge182,6014 -ord_merge([NO|TN], [OO|TO], Merged) :-ord_merge182,6014 -ord_merge(=, NO, _, _, _, TN, TO, [NO|T]) :-ord_merge188,6188 -ord_merge(=, NO, _, _, _, TN, TO, [NO|T]) :-ord_merge188,6188 -ord_merge(=, NO, _, _, _, TN, TO, [NO|T]) :-ord_merge188,6188 -ord_merge(<, NO, _, OO, OName, TN, TO, [NO|T]) :-ord_merge190,6256 -ord_merge(<, NO, _, OO, OName, TN, TO, [NO|T]) :-ord_merge190,6256 -ord_merge(<, NO, _, OO, OName, TN, TO, [NO|T]) :-ord_merge190,6256 -ord_merge(>, NO, NName, OO, _, TN, TO, [OO|T]) :-ord_merge197,6460 -ord_merge(>, NO, NName, OO, _, TN, TO, [OO|T]) :-ord_merge197,6460 -ord_merge(>, NO, NName, OO, _, TN, TO, [OO|T]) :-ord_merge197,6460 -canonise_options(In, Out) :-canonise_options210,6784 -canonise_options(In, Out) :-canonise_options210,6784 -canonise_options(In, Out) :-canonise_options210,6784 -canonise_options(Options, Options).canonise_options213,6898 -canonise_options(Options, Options).canonise_options213,6898 -canonise_options2([], []).canonise_options2215,6935 -canonise_options2([], []).canonise_options2215,6935 -canonise_options2([Name=Value|T0], [H|T]) :- !,canonise_options2216,6962 -canonise_options2([Name=Value|T0], [H|T]) :- !,canonise_options2216,6962 -canonise_options2([Name=Value|T0], [H|T]) :- !,canonise_options2216,6962 -canonise_options2([H|T0], [H|T]) :- !,canonise_options2219,7058 -canonise_options2([H|T0], [H|T]) :- !,canonise_options2219,7058 -canonise_options2([H|T0], [H|T]) :- !,canonise_options2219,7058 -meta_options(IsMeta, Context:Options0, Options) :-meta_options239,7490 -meta_options(IsMeta, Context:Options0, Options) :-meta_options239,7490 -meta_options(IsMeta, Context:Options0, Options) :-meta_options239,7490 -meta_options([], _, _, []).meta_options242,7593 -meta_options([], _, _, []).meta_options242,7593 -meta_options([H0|T0], IM, Context, [H|T]) :-meta_options243,7621 -meta_options([H0|T0], IM, Context, [H|T]) :-meta_options243,7621 -meta_options([H0|T0], IM, Context, [H|T]) :-meta_options243,7621 -meta_option(Name=V0, IM, Context, Name=M:V) :-meta_option247,7736 -meta_option(Name=V0, IM, Context, Name=M:V) :-meta_option247,7736 -meta_option(Name=V0, IM, Context, Name=M:V) :-meta_option247,7736 -meta_option(O0, IM, Context, O) :-meta_option250,7836 -meta_option(O0, IM, Context, O) :-meta_option250,7836 -meta_option(O0, IM, Context, O) :-meta_option250,7836 -meta_option(O, _, _, O).meta_option256,7977 -meta_option(O, _, _, O).meta_option256,7977 - -swi/library/pairs.pl,3350 -pairs_keys_values(Pairs, Keys, Values) :-pairs_keys_values63,2244 -pairs_keys_values(Pairs, Keys, Values) :-pairs_keys_values63,2244 -pairs_keys_values(Pairs, Keys, Values) :-pairs_keys_values63,2244 -pairs_keys_values_([], [], []).pairs_keys_values_71,2467 -pairs_keys_values_([], [], []).pairs_keys_values_71,2467 -pairs_keys_values_([K-V|Pairs], [K|Keys], [V|Values]) :-pairs_keys_values_72,2499 -pairs_keys_values_([K-V|Pairs], [K|Keys], [V|Values]) :-pairs_keys_values_72,2499 -pairs_keys_values_([K-V|Pairs], [K|Keys], [V|Values]) :-pairs_keys_values_72,2499 -keys_values_pairs([], [], []).keys_values_pairs75,2599 -keys_values_pairs([], [], []).keys_values_pairs75,2599 -keys_values_pairs([K|Ks], [V|Vs], [K-V|Pairs]) :-keys_values_pairs76,2630 -keys_values_pairs([K|Ks], [V|Vs], [K-V|Pairs]) :-keys_values_pairs76,2630 -keys_values_pairs([K|Ks], [V|Vs], [K-V|Pairs]) :-keys_values_pairs76,2630 -values_keys_pairs([], [], []).values_keys_pairs79,2716 -values_keys_pairs([], [], []).values_keys_pairs79,2716 -values_keys_pairs([V|Vs], [K|Ks], [K-V|Pairs]) :-values_keys_pairs80,2747 -values_keys_pairs([V|Vs], [K|Ks], [K-V|Pairs]) :-values_keys_pairs80,2747 -values_keys_pairs([V|Vs], [K|Ks], [K-V|Pairs]) :-values_keys_pairs80,2747 -pairs_values([], []).pairs_values88,2982 -pairs_values([], []).pairs_values88,2982 -pairs_values([_-V|T0], [V|T]) :-pairs_values89,3004 -pairs_values([_-V|T0], [V|T]) :-pairs_values89,3004 -pairs_values([_-V|T0], [V|T]) :-pairs_values89,3004 -pairs_keys([], []).pairs_keys98,3206 -pairs_keys([], []).pairs_keys98,3206 -pairs_keys([K-_|T0], [K|T]) :-pairs_keys99,3226 -pairs_keys([K-_|T0], [K|T]) :-pairs_keys99,3226 -pairs_keys([K-_|T0], [K|T]) :-pairs_keys99,3226 -group_pairs_by_key([], []).group_pairs_by_key118,3670 -group_pairs_by_key([], []).group_pairs_by_key118,3670 -group_pairs_by_key([M-N|T0], [M-[N|TN]|T]) :-group_pairs_by_key119,3698 -group_pairs_by_key([M-N|T0], [M-[N|TN]|T]) :-group_pairs_by_key119,3698 -group_pairs_by_key([M-N|T0], [M-[N|TN]|T]) :-group_pairs_by_key119,3698 -same_key(M, [M-N|T0], [N|TN], T) :- !,same_key123,3799 -same_key(M, [M-N|T0], [N|TN], T) :- !,same_key123,3799 -same_key(M, [M-N|T0], [N|TN], T) :- !,same_key123,3799 -same_key(_, L, [], L).same_key125,3863 -same_key(_, L, [], L).same_key125,3863 -transpose_pairs(Pairs, Transposed) :-transpose_pairs133,4031 -transpose_pairs(Pairs, Transposed) :-transpose_pairs133,4031 -transpose_pairs(Pairs, Transposed) :-transpose_pairs133,4031 -flip_pairs([], []).flip_pairs137,4130 -flip_pairs([], []).flip_pairs137,4130 -flip_pairs([Key-Val|Pairs], [Val-Key|Flipped]) :-flip_pairs138,4150 -flip_pairs([Key-Val|Pairs], [Val-Key|Flipped]) :-flip_pairs138,4150 -flip_pairs([Key-Val|Pairs], [Val-Key|Flipped]) :-flip_pairs138,4150 -map_list_to_pairs(Function, List, Pairs) :-map_list_to_pairs155,4535 -map_list_to_pairs(Function, List, Pairs) :-map_list_to_pairs155,4535 -map_list_to_pairs(Function, List, Pairs) :-map_list_to_pairs155,4535 -map_list_to_pairs2([], _, []).map_list_to_pairs2158,4624 -map_list_to_pairs2([], _, []).map_list_to_pairs2158,4624 -map_list_to_pairs2([H|T0], Pred, [K-H|T]) :-map_list_to_pairs2159,4655 -map_list_to_pairs2([H|T0], Pred, [K-H|T]) :-map_list_to_pairs2159,4655 -map_list_to_pairs2([H|T0], Pred, [K-H|T]) :-map_list_to_pairs2159,4655 - -swi/library/pce.pl,0 - -swi/library/pce_meta.pl,0 - -swi/library/persistence.yap,3022 -persistent_open(PredDesc, File, Opts) :-persistent_open68,2751 -persistent_open(PredDesc, File, Opts) :-persistent_open68,2751 -persistent_open(PredDesc, File, Opts) :-persistent_open68,2751 -persistent_close(PredDesc0) :-persistent_close104,4021 -persistent_close(PredDesc0) :-persistent_close104,4021 -persistent_close(PredDesc0) :-persistent_close104,4021 -persistent_assert(Term) :-persistent_assert121,4614 -persistent_assert(Term) :-persistent_assert121,4614 -persistent_assert(Term) :-persistent_assert121,4614 -persistent_assert(Term0) :-persistent_assert135,5165 -persistent_assert(Term0) :-persistent_assert135,5165 -persistent_assert(Term0) :-persistent_assert135,5165 -persistent_retract(Term0) :-persistent_retract152,5699 -persistent_retract(Term0) :-persistent_retract152,5699 -persistent_retract(Term0) :-persistent_retract152,5699 -persistent_save(PredDesc) :-persistent_save179,6374 -persistent_save(PredDesc) :-persistent_save179,6374 -persistent_save(PredDesc) :-persistent_save179,6374 -persistent_writeall(PredDesc, S) :-persistent_writeall201,7228 -persistent_writeall(PredDesc, S) :-persistent_writeall201,7228 -persistent_writeall(PredDesc, S) :-persistent_writeall201,7228 -persistent_writeall(_,_).persistent_writeall211,7553 -persistent_writeall(_,_).persistent_writeall211,7553 -persistent_load(PredDesc) :-persistent_load214,7629 -persistent_load(PredDesc) :-persistent_load214,7629 -persistent_load(PredDesc) :-persistent_load214,7629 -persistent_load_file(File) :-persistent_load_file250,9000 -persistent_load_file(File) :-persistent_load_file250,9000 -persistent_load_file(File) :-persistent_load_file250,9000 -persistent_lock_exclusive(PredDesc) :-persistent_lock_exclusive272,9553 -persistent_lock_exclusive(PredDesc) :-persistent_lock_exclusive272,9553 -persistent_lock_exclusive(PredDesc) :-persistent_lock_exclusive272,9553 -persistent_lock_exclusive(PredDesc) :-persistent_lock_exclusive284,9952 -persistent_lock_exclusive(PredDesc) :-persistent_lock_exclusive284,9952 -persistent_lock_exclusive(PredDesc) :-persistent_lock_exclusive284,9952 -persistent_lock_release(PredDesc) :-persistent_lock_release294,10307 -persistent_lock_release(PredDesc) :-persistent_lock_release294,10307 -persistent_lock_release(PredDesc) :-persistent_lock_release294,10307 -persistent_opts_store(_,[]).persistent_opts_store300,10486 -persistent_opts_store(_,[]).persistent_opts_store300,10486 -persistent_opts_store(PredDesc,[H|T]) :-persistent_opts_store301,10515 -persistent_opts_store(PredDesc,[H|T]) :-persistent_opts_store301,10515 -persistent_opts_store(PredDesc,[H|T]) :-persistent_opts_store301,10515 -module_goal(Module:Goal,Module:Goal) :-module_goal305,10632 -module_goal(Module:Goal,Module:Goal) :-module_goal305,10632 -module_goal(Module:Goal,Module:Goal) :-module_goal305,10632 -module_goal(Goal,Module:Goal) :-module_goal307,10707 -module_goal(Goal,Module:Goal) :-module_goal307,10707 -module_goal(Goal,Module:Goal) :-module_goal307,10707 - -swi/library/pio.pl,0 - -swi/library/plunit.pl,44980 -including :-including70,2365 -if_expansion((:- if(G)), []) :-if_expansion75,2423 -if_expansion((:- if(G)), []) :-if_expansion75,2423 -if_expansion((:- if(G)), []) :-if_expansion75,2423 -if_expansion((:- else), []) :-if_expansion83,2649 -if_expansion((:- else), []) :-if_expansion83,2649 -if_expansion((:- else), []) :-if_expansion83,2649 -if_expansion((:- endif), []) :-if_expansion94,2885 -if_expansion((:- endif), []) :-if_expansion94,2885 -if_expansion((:- endif), []) :-if_expansion94,2885 -if_expansion(_, []) :-if_expansion97,2948 -if_expansion(_, []) :-if_expansion97,2948 -if_expansion(_, []) :-if_expansion97,2948 -user:term_expansion(In, Out) :-term_expansion100,2987 -user:term_expansion(In, Out) :-term_expansion100,2987 -swi :- catch(current_prolog_flag(dialect, swi), _, fail), !.swi104,3082 -swi :- catch(current_prolog_flag(dialect, yap), _, fail).swi105,3147 -sicstus :- catch(current_prolog_flag(system_type, _), _, fail).sicstus106,3209 -throw_error(Error_term,Impldef) :-throw_error110,3287 -throw_error(Error_term,Impldef) :-throw_error110,3287 -throw_error(Error_term,Impldef) :-throw_error110,3287 -current_test_flag(Name, Value) :-current_test_flag117,3481 -current_test_flag(Name, Value) :-current_test_flag117,3481 -current_test_flag(Name, Value) :-current_test_flag117,3481 -set_test_flag(Name, Value) :-set_test_flag120,3551 -set_test_flag(Name, Value) :-set_test_flag120,3551 -set_test_flag(Name, Value) :-set_test_flag120,3551 -throw_error(Error_term,Impldef) :-throw_error126,3647 -throw_error(Error_term,Impldef) :-throw_error126,3647 -throw_error(Error_term,Impldef) :-throw_error126,3647 -'$set_source_module'( In, Out) :-$set_source_module133,3841 -'$set_source_module'( In, Out) :-$set_source_module133,3841 -'$set_source_module'( In, Out) :-$set_source_module133,3841 -:- dynamic test_flag/2. % Name, Valdynamic141,4047 -:- dynamic test_flag/2. % Name, Valdynamic141,4047 -current_test_flag(optimise, Val) :-current_test_flag143,4084 -current_test_flag(optimise, Val) :-current_test_flag143,4084 -current_test_flag(optimise, Val) :-current_test_flag143,4084 -current_test_flag(Name, Val) :-current_test_flag149,4255 -current_test_flag(Name, Val) :-current_test_flag149,4255 -current_test_flag(Name, Val) :-current_test_flag149,4255 -set_test_flag(Name, Val) :-set_test_flag155,4353 -set_test_flag(Name, Val) :-set_test_flag155,4353 -set_test_flag(Name, Val) :-set_test_flag155,4353 -set_test_flag( Name, Val ) :-set_test_flag158,4456 -set_test_flag( Name, Val ) :-set_test_flag158,4456 -set_test_flag( Name, Val ) :-set_test_flag158,4456 -user:term_expansion((:- thread_local(PI)), (:- dynamic(PI))) :-term_expansion164,4583 -user:term_expansion((:- thread_local(PI)), (:- dynamic(PI))) :-term_expansion164,4583 -set_test_options(Options) :-set_test_options213,5920 -set_test_options(Options) :-set_test_options213,5920 -set_test_options(Options) :-set_test_options213,5920 -global_test_option(load(Load)) :-global_test_option217,6034 -global_test_option(load(Load)) :-global_test_option217,6034 -global_test_option(load(Load)) :-global_test_option217,6034 -global_test_option(run(When)) :-global_test_option219,6114 -global_test_option(run(When)) :-global_test_option219,6114 -global_test_option(run(When)) :-global_test_option219,6114 -global_test_option(silent(Bool)) :-global_test_option221,6195 -global_test_option(silent(Bool)) :-global_test_option221,6195 -global_test_option(silent(Bool)) :-global_test_option221,6195 -global_test_option(sto(Bool)) :-global_test_option223,6256 -global_test_option(sto(Bool)) :-global_test_option223,6256 -global_test_option(sto(Bool)) :-global_test_option223,6256 -global_test_option(cleanup(Bool)) :-global_test_option225,6314 -global_test_option(cleanup(Bool)) :-global_test_option225,6314 -global_test_option(cleanup(Bool)) :-global_test_option225,6314 -loading_tests :-loading_tests233,6430 -begin_tests(Unit) :-begin_tests257,7079 -begin_tests(Unit) :-begin_tests257,7079 -begin_tests(Unit) :-begin_tests257,7079 -begin_tests(Unit, Options) :-begin_tests261,7133 -begin_tests(Unit, Options) :-begin_tests261,7133 -begin_tests(Unit, Options) :-begin_tests261,7133 -begin_tests(Unit, Name, File:Line, Options) :-begin_tests269,7367 -begin_tests(Unit, Name, File:Line, Options) :-begin_tests269,7367 -begin_tests(Unit, Name, File:Line, Options) :-begin_tests269,7367 -begin_tests(Unit, Name, File:_Line, _Options) :-begin_tests283,7914 -begin_tests(Unit, Name, File:_Line, _Options) :-begin_tests283,7914 -begin_tests(Unit, Name, File:_Line, _Options) :-begin_tests283,7914 -'$declare_module'( Name, Class, Context, File, Line, _AllowFile ) :-$declare_module287,8044 -'$declare_module'( Name, Class, Context, File, Line, _AllowFile ) :-$declare_module287,8044 -'$declare_module'( Name, Class, Context, File, Line, _AllowFile ) :-$declare_module287,8044 -begin_tests(Unit, Name, File:_Line, Options) :-begin_tests306,8624 -begin_tests(Unit, Name, File:_Line, Options) :-begin_tests306,8624 -begin_tests(Unit, Name, File:_Line, Options) :-begin_tests306,8624 -begin_tests(Unit, Name, File:_Line, _Options) :-begin_tests314,8891 -begin_tests(Unit, Name, File:_Line, _Options) :-begin_tests314,8891 -begin_tests(Unit, Name, File:_Line, _Options) :-begin_tests314,8891 -end_tests(Unit) :-end_tests326,9109 -end_tests(Unit) :-end_tests326,9109 -end_tests(Unit) :-end_tests326,9109 -end_tests(Unit) :-end_tests333,9349 -end_tests(Unit) :-end_tests333,9349 -end_tests(Unit) :-end_tests333,9349 -unit_module(Unit, Module) :-unit_module341,9529 -unit_module(Unit, Module) :-unit_module341,9529 -unit_module(Unit, Module) :-unit_module341,9529 -make_unit_module(Unit, Module) :-make_unit_module344,9598 -make_unit_module(Unit, Module) :-make_unit_module344,9598 -make_unit_module(Unit, Module) :-make_unit_module344,9598 -unit_module(Unit, Module) :-unit_module360,9960 -unit_module(Unit, Module) :-unit_module360,9960 -unit_module(Unit, Module) :-unit_module360,9960 -make_unit_module(Unit, Module) :-make_unit_module363,10027 -make_unit_module(Unit, Module) :-make_unit_module363,10027 -make_unit_module(Unit, Module) :-make_unit_module363,10027 -expand_option(Var, _) :-expand_option400,11249 -expand_option(Var, _) :-expand_option400,11249 -expand_option(Var, _) :-expand_option400,11249 -expand_option(A == B, true(A==B)) :- !.expand_option403,11325 -expand_option(A == B, true(A==B)) :- !.expand_option403,11325 -expand_option(A == B, true(A==B)) :- !.expand_option403,11325 -expand_option(A = B, true(A=B)) :- !.expand_option404,11365 -expand_option(A = B, true(A=B)) :- !.expand_option404,11365 -expand_option(A = B, true(A=B)) :- !.expand_option404,11365 -expand_option(A =@= B, true(A=@=B)) :- !.expand_option405,11403 -expand_option(A =@= B, true(A=@=B)) :- !.expand_option405,11403 -expand_option(A =@= B, true(A=@=B)) :- !.expand_option405,11403 -expand_option(A =:= B, true(A=:=B)) :- !.expand_option406,11445 -expand_option(A =:= B, true(A=:=B)) :- !.expand_option406,11445 -expand_option(A =:= B, true(A=:=B)) :- !.expand_option406,11445 -expand_option(error(X), throws(error(X, _))) :- !.expand_option407,11487 -expand_option(error(X), throws(error(X, _))) :- !.expand_option407,11487 -expand_option(error(X), throws(error(X, _))) :- !.expand_option407,11487 -expand_option(exception(X), throws(X)) :- !. % SICStus 4 compatibilityexpand_option408,11538 -expand_option(exception(X), throws(X)) :- !. % SICStus 4 compatibilityexpand_option408,11538 -expand_option(exception(X), throws(X)) :- !. % SICStus 4 compatibilityexpand_option408,11538 -expand_option(error(F,C), throws(error(F,C))) :- !. % SICStus 4 compatibilityexpand_option409,11609 -expand_option(error(F,C), throws(error(F,C))) :- !. % SICStus 4 compatibilityexpand_option409,11609 -expand_option(error(F,C), throws(error(F,C))) :- !. % SICStus 4 compatibilityexpand_option409,11609 -expand_option(true, true(true)) :- !.expand_option410,11687 -expand_option(true, true(true)) :- !.expand_option410,11687 -expand_option(true, true(true)) :- !.expand_option410,11687 -expand_option(O, O).expand_option411,11725 -expand_option(O, O).expand_option411,11725 -valid_test_mode(Options0, Options) :-valid_test_mode413,11747 -valid_test_mode(Options0, Options) :-valid_test_mode413,11747 -valid_test_mode(Options0, Options) :-valid_test_mode413,11747 -test_mode(true(_)).test_mode422,11980 -test_mode(true(_)).test_mode422,11980 -test_mode(all(_)).test_mode423,12000 -test_mode(all(_)).test_mode423,12000 -test_mode(set(_)).test_mode424,12019 -test_mode(set(_)).test_mode424,12019 -test_mode(fail).test_mode425,12038 -test_mode(fail).test_mode425,12038 -test_mode(throws(_)).test_mode426,12055 -test_mode(throws(_)).test_mode426,12055 -expand(end_of_file, _) :-expand431,12119 -expand(end_of_file, _) :-expand431,12119 -expand(end_of_file, _) :-expand431,12119 -expand((:-end_tests(_)), _) :- !,expand435,12212 -expand((:-end_tests(_)), _) :- !,expand435,12212 -expand((:-end_tests(_)), _) :- !,expand435,12212 -expand(_Term, []) :-expand437,12253 -expand(_Term, []) :-expand437,12253 -expand(_Term, []) :-expand437,12253 -expand((test(Name) :- Body), Clauses) :- !,expand439,12293 -expand((test(Name) :- Body), Clauses) :- !,expand439,12293 -expand((test(Name) :- Body), Clauses) :- !,expand439,12293 -expand((test(Name, Options) :- Body), Clauses) :- !,expand441,12376 -expand((test(Name, Options) :- Body), Clauses) :- !,expand441,12376 -expand((test(Name, Options) :- Body), Clauses) :- !,expand441,12376 -expand(test(Name), _) :- !,expand443,12473 -expand(test(Name), _) :- !,expand443,12473 -expand(test(Name), _) :- !,expand443,12473 -expand(test(Name, _Options), _) :- !,expand445,12553 -expand(test(Name, _Options), _) :- !,expand445,12553 -expand(test(Name, _Options), _) :- !,expand445,12553 -user:term_expansion(Term, Expanded) :-term_expansion453,12704 -user:term_expansion(Term, Expanded) :-term_expansion453,12704 -must_be(list, X) :- !,must_be468,13006 -must_be(list, X) :- !,must_be468,13006 -must_be(list, X) :- !,must_be468,13006 -must_be(Type, X) :-must_be473,13080 -must_be(Type, X) :-must_be473,13080 -must_be(Type, X) :-must_be473,13080 -is_not(Type, X) :-is_not479,13155 -is_not(Type, X) :-is_not479,13155 -is_not(Type, X) :-is_not479,13155 -valid_options(Options, Pred) :-valid_options493,13450 -valid_options(Options, Pred) :-valid_options493,13450 -valid_options(Options, Pred) :-valid_options493,13450 -verify_options([], _).verify_options497,13540 -verify_options([], _).verify_options497,13540 -verify_options([H|T], Pred) :-verify_options498,13563 -verify_options([H|T], Pred) :-verify_options498,13563 -verify_options([H|T], Pred) :-verify_options498,13563 -test_option(Option) :-test_option509,13790 -test_option(Option) :-test_option509,13790 -test_option(Option) :-test_option509,13790 -test_option(true(_)).test_option511,13842 -test_option(true(_)).test_option511,13842 -test_option(fail).test_option512,13864 -test_option(fail).test_option512,13864 -test_option(throws(_)).test_option513,13883 -test_option(throws(_)).test_option513,13883 -test_option(all(_)).test_option514,13907 -test_option(all(_)).test_option514,13907 -test_option(set(_)).test_option515,13928 -test_option(set(_)).test_option515,13928 -test_option(nondet).test_option516,13949 -test_option(nondet).test_option516,13949 -test_option(fixme(_)).test_option517,13970 -test_option(fixme(_)).test_option517,13970 -test_option(forall(X)) :-test_option518,13993 -test_option(forall(X)) :-test_option518,13993 -test_option(forall(X)) :-test_option518,13993 -test_set_option(blocked(X)) :-test_set_option526,14154 -test_set_option(blocked(X)) :-test_set_option526,14154 -test_set_option(blocked(X)) :-test_set_option526,14154 -test_set_option(condition(X)) :-test_set_option528,14206 -test_set_option(condition(X)) :-test_set_option528,14206 -test_set_option(condition(X)) :-test_set_option528,14206 -test_set_option(setup(X)) :-test_set_option530,14262 -test_set_option(setup(X)) :-test_set_option530,14262 -test_set_option(setup(X)) :-test_set_option530,14262 -test_set_option(cleanup(X)) :-test_set_option532,14314 -test_set_option(cleanup(X)) :-test_set_option532,14314 -test_set_option(cleanup(X)) :-test_set_option532,14314 -test_set_option(sto(V)) :-test_set_option534,14368 -test_set_option(sto(V)) :-test_set_option534,14368 -test_set_option(sto(V)) :-test_set_option534,14368 -run_tests :-run_tests564,15384 -run_tests(Set) :-run_tests577,15646 -run_tests(Set) :-run_tests577,15646 -run_tests(Set) :-run_tests577,15646 -run_unit([]) :- !.run_unit590,15894 -run_unit([]) :- !.run_unit590,15894 -run_unit([]) :- !.run_unit590,15894 -run_unit([H|T]) :- !,run_unit591,15913 -run_unit([H|T]) :- !,run_unit591,15913 -run_unit([H|T]) :- !,run_unit591,15913 -run_unit(Spec) :-run_unit594,15963 -run_unit(Spec) :-run_unit594,15963 -run_unit(Spec) :-run_unit594,15963 -unit_from_spec(Unit, Unit, _, Module, Options) :-unit_from_spec612,16512 -unit_from_spec(Unit, Unit, _, Module, Options) :-unit_from_spec612,16512 -unit_from_spec(Unit, Unit, _, Module, Options) :-unit_from_spec612,16512 -unit_from_spec(Unit:Tests, Unit, Tests, Module, Options) :-unit_from_spec618,16696 -unit_from_spec(Unit:Tests, Unit, Tests, Module, Options) :-unit_from_spec618,16696 -unit_from_spec(Unit:Tests, Unit, Tests, Module, Options) :-unit_from_spec618,16696 -matching_test(X, X) :- !.matching_test626,16892 -matching_test(X, X) :- !.matching_test626,16892 -matching_test(X, X) :- !.matching_test626,16892 -matching_test(Name, Set) :-matching_test627,16918 -matching_test(Name, Set) :-matching_test627,16918 -matching_test(Name, Set) :-matching_test627,16918 -cleanup :-cleanup631,16985 -cleanup_after_test :-cleanup_after_test641,17269 -run_tests_in_files(Files) :-run_tests_in_files654,17526 -run_tests_in_files(Files) :-run_tests_in_files654,17526 -run_tests_in_files(Files) :-run_tests_in_files654,17526 -unit_in_files(Files, Unit) :-unit_in_files661,17660 -unit_in_files(Files, Unit) :-unit_in_files661,17660 -unit_in_files(Files, Unit) :-unit_in_files661,17660 -make_run_tests(Files) :-make_run_tests680,18064 -make_run_tests(Files) :-make_run_tests680,18064 -make_run_tests(Files) :-make_run_tests680,18064 -unification_capability(sto_error_incomplete).unification_capability692,18284 -unification_capability(sto_error_incomplete).unification_capability692,18284 -unification_capability(rational_trees).unification_capability694,18370 -unification_capability(rational_trees).unification_capability694,18370 -unification_capability(finite_trees).unification_capability695,18410 -unification_capability(finite_trees).unification_capability695,18410 -set_unification_capability(Cap) :-set_unification_capability697,18449 -set_unification_capability(Cap) :-set_unification_capability697,18449 -set_unification_capability(Cap) :-set_unification_capability697,18449 -current_unification_capability(Cap) :-current_unification_capability701,18548 -current_unification_capability(Cap) :-current_unification_capability701,18548 -current_unification_capability(Cap) :-current_unification_capability701,18548 -cap_to_flag(sto_error_incomplete, error).cap_to_flag705,18658 -cap_to_flag(sto_error_incomplete, error).cap_to_flag705,18658 -cap_to_flag(rational_trees, false).cap_to_flag706,18700 -cap_to_flag(rational_trees, false).cap_to_flag706,18700 -cap_to_flag(finite_trees, true).cap_to_flag707,18736 -cap_to_flag(finite_trees, true).cap_to_flag707,18736 -unification_capability(rational_trees).unification_capability712,18796 -unification_capability(rational_trees).unification_capability712,18796 -set_unification_capability(rational_trees).set_unification_capability713,18836 -set_unification_capability(rational_trees).set_unification_capability713,18836 -current_unification_capability(rational_trees).current_unification_capability714,18880 -current_unification_capability(rational_trees).current_unification_capability714,18880 -unification_capability(_) :-unification_capability718,18939 -unification_capability(_) :-unification_capability718,18939 -unification_capability(_) :-unification_capability718,18939 -:- dynamic user:assertion_failed/2.dynamic730,19109 -:- dynamic user:assertion_failed/2.dynamic730,19109 -setup_trap_assertions(Ref) :-setup_trap_assertions732,19146 -setup_trap_assertions(Ref) :-setup_trap_assertions732,19146 -setup_trap_assertions(Ref) :-setup_trap_assertions732,19146 -cleanup_trap_assertions(Ref) :-cleanup_trap_assertions737,19275 -cleanup_trap_assertions(Ref) :-cleanup_trap_assertions737,19275 -cleanup_trap_assertions(Ref) :-cleanup_trap_assertions737,19275 -test_assertion_failed(Reason, Goal) :-test_assertion_failed740,19321 -test_assertion_failed(Reason, Goal) :-test_assertion_failed740,19321 -test_assertion_failed(Reason, Goal) :-test_assertion_failed740,19321 -assertion_location(Stack, File:Line) :-assertion_location754,19774 -assertion_location(Stack, File:Line) :-assertion_location754,19774 -assertion_location(Stack, File:Line) :-assertion_location754,19774 -setup_trap_assertions(_).setup_trap_assertions769,20233 -setup_trap_assertions(_).setup_trap_assertions769,20233 -cleanup_trap_assertions(_).cleanup_trap_assertions770,20259 -cleanup_trap_assertions(_).cleanup_trap_assertions770,20259 -run_test(Unit, Name, Line, Options, Body) :-run_test786,20483 -run_test(Unit, Name, Line, Options, Body) :-run_test786,20483 -run_test(Unit, Name, Line, Options, Body) :-run_test786,20483 -run_test(Unit, Name, Line, Options, Body) :-run_test792,20721 -run_test(Unit, Name, Line, Options, Body) :-run_test792,20721 -run_test(Unit, Name, Line, Options, Body) :-run_test792,20721 -run_test_once(Unit, Name, Line, Options, Body) :-run_test_once795,20816 -run_test_once(Unit, Name, Line, Options, Body) :-run_test_once795,20816 -run_test_once(Unit, Name, Line, Options, Body) :-run_test_once795,20816 -run_test_once(Unit, Name, Line, Options, Body) :-run_test_once803,21159 -run_test_once(Unit, Name, Line, Options, Body) :-run_test_once803,21159 -run_test_once(Unit, Name, Line, Options, Body) :-run_test_once803,21159 -run_test_once(Unit, Name, Line, Options, Body) :-run_test_once810,21480 -run_test_once(Unit, Name, Line, Options, Body) :-run_test_once810,21480 -run_test_once(Unit, Name, Line, Options, Body) :-run_test_once810,21480 -run_test_cap(Unit, Name, Line, Options, Body) :-run_test_cap815,21673 -run_test_cap(Unit, Name, Line, Options, Body) :-run_test_cap815,21673 -run_test_cap(Unit, Name, Line, Options, Body) :-run_test_cap815,21673 -test_caps(Type, Unit, Name, Line, Options, Body, Result, Key) :-test_caps839,22507 -test_caps(Type, Unit, Name, Line, Options, Body, Result, Key) :-test_caps839,22507 -test_caps(Type, Unit, Name, Line, Options, Body, Result, Key) :-test_caps839,22507 -result_to_key(blocked(_, _, _, _), blocked).result_to_key848,22817 -result_to_key(blocked(_, _, _, _), blocked).result_to_key848,22817 -result_to_key(failure(_, _, _, How0), failure(How1)) :-result_to_key849,22862 -result_to_key(failure(_, _, _, How0), failure(How1)) :-result_to_key849,22862 -result_to_key(failure(_, _, _, How0), failure(How1)) :-result_to_key849,22862 -result_to_key(success(_, _, _, Determinism, _), success(Determinism)).result_to_key851,22979 -result_to_key(success(_, _, _, Determinism, _), success(Determinism)).result_to_key851,22979 -result_to_key(setup_failed(_,_,_), setup_failed).result_to_key852,23050 -result_to_key(setup_failed(_,_,_), setup_failed).result_to_key852,23050 -report_result(blocked(Unit, Name, Line, Reason), _) :- !,report_result854,23101 -report_result(blocked(Unit, Name, Line, Reason), _) :- !,report_result854,23101 -report_result(blocked(Unit, Name, Line, Reason), _) :- !,report_result854,23101 -report_result(failure(Unit, Name, Line, How), Options) :- !,report_result856,23203 -report_result(failure(Unit, Name, Line, How), Options) :- !,report_result856,23203 -report_result(failure(Unit, Name, Line, How), Options) :- !,report_result856,23203 -report_result(success(Unit, Name, Line, Determinism, Time), Options) :- !,report_result858,23306 -report_result(success(Unit, Name, Line, Determinism, Time), Options) :- !,report_result858,23306 -report_result(success(Unit, Name, Line, Determinism, Time), Options) :- !,report_result858,23306 -report_result(setup_failed(_Unit, _Name, _Line), _Options).report_result860,23437 -report_result(setup_failed(_Unit, _Name, _Line), _Options).report_result860,23437 -report_result(sto(Unit, Name, Line, ResultByType), Options) :-report_result861,23497 -report_result(sto(Unit, Name, Line, ResultByType), Options) :-report_result861,23497 -report_result(sto(Unit, Name, Line, ResultByType), Options) :-report_result861,23497 -report_sto_results([], _).report_sto_results866,23705 -report_sto_results([], _).report_sto_results866,23705 -report_sto_results([Type+Result|T], Options) :-report_sto_results867,23732 -report_sto_results([Type+Result|T], Options) :-report_sto_results867,23732 -report_sto_results([Type+Result|T], Options) :-report_sto_results867,23732 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6884,24245 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6884,24245 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6884,24245 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6887,24419 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6887,24419 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6887,24419 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6890,24593 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6890,24593 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6890,24593 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6911,25289 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6911,25289 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6911,25289 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6936,26140 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6936,26140 -run_test_6(Unit, Name, Line, Options, Body, Result) :-run_test_6936,26140 -nondet_test(Expected, Unit, Name, Line, Options, Body, Result) :-nondet_test964,27018 -nondet_test(Expected, Unit, Name, Line, Options, Body, Result) :-nondet_test964,27018 -nondet_test(Expected, Unit, Name, Line, Options, Body, Result) :-nondet_test964,27018 -result_vars(Expected, Vars) :-result_vars991,27903 -result_vars(Expected, Vars) :-result_vars991,27903 -result_vars(Expected, Vars) :-result_vars991,27903 -nondet_compare(all(Cmp), Bindings, _Unit, _Name, _Line) :-nondet_compare1003,28224 -nondet_compare(all(Cmp), Bindings, _Unit, _Name, _Line) :-nondet_compare1003,28224 -nondet_compare(all(Cmp), Bindings, _Unit, _Name, _Line) :-nondet_compare1003,28224 -nondet_compare(set(Cmp), Bindings0, _Unit, _Name, _Line) :-nondet_compare1006,28346 -nondet_compare(set(Cmp), Bindings0, _Unit, _Name, _Line) :-nondet_compare1006,28346 -nondet_compare(set(Cmp), Bindings0, _Unit, _Name, _Line) :-nondet_compare1006,28346 -cmp_list([], [], _Op).cmp_list1012,28523 -cmp_list([], [], _Op).cmp_list1012,28523 -cmp_list([E0|ET], [V0|VT], Op) :-cmp_list1013,28546 -cmp_list([E0|ET], [V0|VT], Op) :-cmp_list1013,28546 -cmp_list([E0|ET], [V0|VT], Op) :-cmp_list1013,28546 -cmp(Var == Value, Var, ==, Value).cmp1019,28669 -cmp(Var == Value, Var, ==, Value).cmp1019,28669 -cmp(Var =:= Value, Var, =:=, Value).cmp1020,28706 -cmp(Var =:= Value, Var, =:=, Value).cmp1020,28706 -cmp(Var = Value, Var, =, Value).cmp1021,28743 -cmp(Var = Value, Var, =, Value).cmp1021,28743 -cmp(Var =@= Value, Var, =@=, Value).cmp1023,28792 -cmp(Var =@= Value, Var, =@=, Value).cmp1023,28792 -cmp(Var =@= Value, Var, variant, Value). % variant/2 is the same =@=cmp1026,28854 -cmp(Var =@= Value, Var, variant, Value). % variant/2 is the same =@=cmp1026,28854 -call_det(Goal, Det) :-call_det1037,29112 -call_det(Goal, Det) :-call_det1037,29112 -call_det(Goal, Det) :-call_det1037,29112 -call_det(Goal, true) :-call_det1041,29219 -call_det(Goal, true) :-call_det1041,29219 -call_det(Goal, true) :-call_det1041,29219 -match_error(Expect, Rec) :-match_error1050,29417 -match_error(Expect, Rec) :-match_error1050,29417 -match_error(Expect, Rec) :-match_error1050,29417 -setup(Module, Context, Options) :-setup1064,29842 -setup(Module, Context, Options) :-setup1064,29842 -setup(Module, Context, Options) :-setup1064,29842 -setup(Module, Context, Options) :-setup1069,30042 -setup(Module, Context, Options) :-setup1069,30042 -setup(Module, Context, Options) :-setup1069,30042 -setup(Module, Context, Options) :-setup1080,30333 -setup(Module, Context, Options) :-setup1080,30333 -setup(Module, Context, Options) :-setup1080,30333 -setup(_,_,_).setup1090,30575 -setup(_,_,_).setup1090,30575 -call_ex(Module, Goal) :-call_ex1096,30673 -call_ex(Module, Goal) :-call_ex1096,30673 -call_ex(Module, Goal) :-call_ex1096,30673 -cleanup(Module, Options) :-cleanup1105,30914 -cleanup(Module, Options) :-cleanup1105,30914 -cleanup(Module, Options) :-cleanup1105,30914 -success(Unit, Name, Line, Det, _Time, Options) :-success1115,31175 -success(Unit, Name, Line, Det, _Time, Options) :-success1115,31175 -success(Unit, Name, Line, Det, _Time, Options) :-success1115,31175 -success(Unit, Name, Line, _, _, Options) :-success1127,31497 -success(Unit, Name, Line, _, _, Options) :-success1127,31497 -success(Unit, Name, Line, _, _, Options) :-success1127,31497 -success(Unit, Name, Line, Det, Time, Options) :-success1130,31638 -success(Unit, Name, Line, Det, Time, Options) :-success1130,31638 -success(Unit, Name, Line, Det, Time, Options) :-success1130,31638 -failure(Unit, Name, Line, _, Options) :-failure1141,31946 -failure(Unit, Name, Line, _, Options) :-failure1141,31946 -failure(Unit, Name, Line, _, Options) :-failure1141,31946 -failure(Unit, Name, Line, E, Options) :-failure1146,32129 -failure(Unit, Name, Line, E, Options) :-failure1146,32129 -failure(Unit, Name, Line, E, Options) :-failure1146,32129 -assert_cyclic(Term) :-assert_cyclic1159,32523 -assert_cyclic(Term) :-assert_cyclic1159,32523 -assert_cyclic(Term) :-assert_cyclic1159,32523 -assert_cyclic(Term) :-assert_cyclic1162,32585 -assert_cyclic(Term) :-assert_cyclic1162,32585 -assert_cyclic(Term) :-assert_cyclic1162,32585 -assert_cyclic(Term) :-assert_cyclic1172,32833 -assert_cyclic(Term) :-assert_cyclic1172,32833 -assert_cyclic(Term) :-assert_cyclic1172,32833 -begin_test(Unit, Test, Line, STO) :-begin_test1192,33313 -begin_test(Unit, Test, Line, STO) :-begin_test1192,33313 -begin_test(Unit, Test, Line, STO) :-begin_test1192,33313 -end_test(Unit, Test, Line, STO) :-end_test1198,33504 -end_test(Unit, Test, Line, STO) :-end_test1198,33504 -end_test(Unit, Test, Line, STO) :-end_test1198,33504 -running_tests :-running_tests1208,33744 -running_tests(Running) :-running_tests1212,33844 -running_tests(Running) :-running_tests1212,33844 -running_tests(Running) :-running_tests1212,33844 -check_for_test_errors :-check_for_test_errors1223,34102 -report :-report1234,34374 -number_of_clauses(F/A,N) :-number_of_clauses1253,34920 -number_of_clauses(F/A,N) :-number_of_clauses1253,34920 -number_of_clauses(F/A,N) :-number_of_clauses1253,34920 -report_blocked :-report_blocked1262,35095 -report_failed :-report_failed1274,35372 -report_failed_assertions :-report_failed_assertions1278,35449 -report_sto :-report_sto1282,35558 -report_fixme :-report_fixme1286,35626 -report_fixme(TuplesF, TuplesP, TuplesN) :-report_fixme1289,35665 -report_fixme(TuplesF, TuplesP, TuplesN) :-report_fixme1289,35665 -report_fixme(TuplesF, TuplesP, TuplesN) :-report_fixme1289,35665 -fixme(How, Tuples, Count) :-fixme1296,35879 -fixme(How, Tuples, Count) :-fixme1296,35879 -fixme(How, Tuples, Count) :-fixme1296,35879 -report_failure(_, _, _, assertion, _) :- !,report_failure1302,36030 -report_failure(_, _, _, assertion, _) :- !,report_failure1302,36030 -report_failure(_, _, _, assertion, _) :- !,report_failure1302,36030 -report_failure(Unit, Name, Line, Error, _Options) :-report_failure1304,36102 -report_failure(Unit, Name, Line, Error, _Options) :-report_failure1304,36102 -report_failure(Unit, Name, Line, Error, _Options) :-report_failure1304,36102 -test_report(fixme) :- !,test_report1312,36302 -test_report(fixme) :- !,test_report1312,36302 -test_report(fixme) :- !,test_report1312,36302 -test_report(What) :-test_report1316,36469 -test_report(What) :-test_report1316,36469 -test_report(What) :-test_report1316,36469 -current_test_set(Unit) :-current_test_set1328,36724 -current_test_set(Unit) :-current_test_set1328,36724 -current_test_set(Unit) :-current_test_set1328,36724 -unit_file(Unit, File) :-unit_file1334,36875 -unit_file(Unit, File) :-unit_file1334,36875 -unit_file(Unit, File) :-unit_file1334,36875 -unit_file(Unit, PlFile) :-unit_file1337,36980 -unit_file(Unit, PlFile) :-unit_file1337,36980 -unit_file(Unit, PlFile) :-unit_file1337,36980 -load_test_files(_Options) :-load_test_files1352,37333 -load_test_files(_Options) :-load_test_files1352,37333 -load_test_files(_Options) :-load_test_files1352,37333 -info(Term) :-info1380,37936 -info(Term) :-info1380,37936 -info(Term) :-info1380,37936 -message_level(Level) :-message_level1384,38003 -message_level(Level) :-message_level1384,38003 -message_level(Level) :-message_level1384,38003 -locationprefix(File:Line) --> !,locationprefix1392,38184 -locationprefix(File:Line) --> !,locationprefix1392,38184 -locationprefix(File:Line) --> !,locationprefix1392,38184 -locationprefix(test(Unit,_Test,Line)) --> !,locationprefix1394,38247 -locationprefix(test(Unit,_Test,Line)) --> !,locationprefix1394,38247 -locationprefix(test(Unit,_Test,Line)) --> !,locationprefix1394,38247 -locationprefix(unit(Unit)) --> !,locationprefix1397,38348 -locationprefix(unit(Unit)) --> !,locationprefix1397,38348 -locationprefix(unit(Unit)) --> !,locationprefix1397,38348 -locationprefix(FileLine) -->locationprefix1399,38416 -locationprefix(FileLine) -->locationprefix1399,38416 -locationprefix(FileLine) -->locationprefix1399,38416 -:- discontiguous message//1.discontiguous1402,38504 -:- discontiguous message//1.discontiguous1402,38504 -message(error(context_error(plunit_close(Name, -)), _)) -->message1404,38534 -message(error(context_error(plunit_close(Name, -)), _)) -->message1404,38534 -message(error(context_error(plunit_close(Name, -)), _)) -->message1404,38534 -message(error(context_error(plunit_close(Name, Start)), _)) -->message1406,38653 -message(error(context_error(plunit_close(Name, Start)), _)) -->message1406,38653 -message(error(context_error(plunit_close(Name, Start)), _)) -->message1406,38653 -message(plunit(nondet(File, Line, Name))) -->message1408,38789 -message(plunit(nondet(File, Line, Name))) -->message1408,38789 -message(plunit(nondet(File, Line, Name))) -->message1408,38789 -message(error(plunit(incompatible_options, Tests), _)) -->message1411,38929 -message(error(plunit(incompatible_options, Tests), _)) -->message1411,38929 -message(error(plunit(incompatible_options, Tests), _)) -->message1411,38929 -message(plunit(begin(Unit))) -->message1416,39078 -message(plunit(begin(Unit))) -->message1416,39078 -message(plunit(begin(Unit))) -->message1416,39078 -message(plunit(end(_Unit))) -->message1418,39146 -message(plunit(end(_Unit))) -->message1418,39146 -message(plunit(end(_Unit))) -->message1418,39146 -message(plunit(begin(Unit))) -->message1421,39215 -message(plunit(begin(Unit))) -->message1421,39215 -message(plunit(begin(Unit))) -->message1421,39215 -message(plunit(end(_Unit))) -->message1423,39290 -message(plunit(end(_Unit))) -->message1423,39290 -message(plunit(end(_Unit))) -->message1423,39290 -message(plunit(blocked(unit(Unit, Reason)))) -->message1426,39349 -message(plunit(blocked(unit(Unit, Reason)))) -->message1426,39349 -message(plunit(blocked(unit(Unit, Reason)))) -->message1426,39349 -message(plunit(running([]))) --> !,message1428,39445 -message(plunit(running([]))) --> !,message1428,39445 -message(plunit(running([]))) --> !,message1428,39445 -message(plunit(running([One]))) --> !,message1430,39515 -message(plunit(running([One]))) --> !,message1430,39515 -message(plunit(running([One]))) --> !,message1430,39515 -message(plunit(running(More))) --> !,message1433,39595 -message(plunit(running(More))) --> !,message1433,39595 -message(plunit(running(More))) --> !,message1433,39595 -message(plunit(fixme([]))) --> !.message1436,39685 -message(plunit(fixme([]))) --> !.message1436,39685 -message(plunit(fixme([]))) --> !.message1436,39685 -message(plunit(fixme(Tuples))) --> !,message1437,39719 -message(plunit(fixme(Tuples))) --> !,message1437,39719 -message(plunit(fixme(Tuples))) --> !,message1437,39719 -message(plunit(blocked(1))) --> !,message1441,39803 -message(plunit(blocked(1))) --> !,message1441,39803 -message(plunit(blocked(1))) --> !,message1441,39803 -message(plunit(blocked(N))) -->message1443,39870 -message(plunit(blocked(N))) -->message1443,39870 -message(plunit(blocked(N))) -->message1443,39870 -message(plunit(blocked(Pos, Name, Reason))) -->message1445,39936 -message(plunit(blocked(Pos, Name, Reason))) -->message1445,39936 -message(plunit(blocked(Pos, Name, Reason))) -->message1445,39936 -message(plunit(no_tests)) --> !,message1451,40067 -message(plunit(no_tests)) --> !,message1451,40067 -message(plunit(no_tests)) --> !,message1451,40067 -message(plunit(all_passed(1))) --> !,message1453,40124 -message(plunit(all_passed(1))) --> !,message1453,40124 -message(plunit(all_passed(1))) --> !,message1453,40124 -message(plunit(all_passed(Count))) --> !,message1455,40182 -message(plunit(all_passed(Count))) --> !,message1455,40182 -message(plunit(all_passed(Count))) --> !,message1455,40182 -message(plunit(passed(Count))) --> !,message1457,40260 -message(plunit(passed(Count))) --> !,message1457,40260 -message(plunit(passed(Count))) --> !,message1457,40260 -message(plunit(failed(0))) --> !,message1459,40330 -message(plunit(failed(0))) --> !,message1459,40330 -message(plunit(failed(0))) --> !,message1459,40330 -message(plunit(failed(1))) --> !,message1461,40369 -message(plunit(failed(1))) --> !,message1461,40369 -message(plunit(failed(1))) --> !,message1461,40369 -message(plunit(failed(N))) -->message1463,40428 -message(plunit(failed(N))) -->message1463,40428 -message(plunit(failed(N))) -->message1463,40428 -message(plunit(failed_assertions(0))) --> !,message1465,40487 -message(plunit(failed_assertions(0))) --> !,message1465,40487 -message(plunit(failed_assertions(0))) --> !,message1465,40487 -message(plunit(failed_assertions(1))) --> !,message1467,40537 -message(plunit(failed_assertions(1))) --> !,message1467,40537 -message(plunit(failed_assertions(1))) --> !,message1467,40537 -message(plunit(failed_assertions(N))) -->message1469,40612 -message(plunit(failed_assertions(N))) -->message1469,40612 -message(plunit(failed_assertions(N))) -->message1469,40612 -message(plunit(sto(0))) --> !,message1471,40687 -message(plunit(sto(0))) --> !,message1471,40687 -message(plunit(sto(0))) --> !,message1471,40687 -message(plunit(sto(N))) -->message1473,40723 -message(plunit(sto(N))) -->message1473,40723 -message(plunit(sto(N))) -->message1473,40723 -message(plunit(fixme(0,0,0))) -->message1475,40806 -message(plunit(fixme(0,0,0))) -->message1475,40806 -message(plunit(fixme(0,0,0))) -->message1475,40806 -message(plunit(fixme(Failed,0,0))) --> !,message1477,40845 -message(plunit(fixme(Failed,0,0))) --> !,message1477,40845 -message(plunit(fixme(Failed,0,0))) --> !,message1477,40845 -message(plunit(fixme(Failed,Passed,0))) -->message1479,40938 -message(plunit(fixme(Failed,Passed,0))) -->message1479,40938 -message(plunit(fixme(Failed,Passed,0))) -->message1479,40938 -message(plunit(fixme(Failed,Passed,Nondet))) -->message1481,41035 -message(plunit(fixme(Failed,Passed,Nondet))) -->message1481,41035 -message(plunit(fixme(Failed,Passed,Nondet))) -->message1481,41035 -message(plunit(failed(Unit, Name, Line, Failure))) -->message1485,41202 -message(plunit(failed(Unit, Name, Line, Failure))) -->message1485,41202 -message(plunit(failed(Unit, Name, Line, Failure))) -->message1485,41202 -assertion_location(File:Line, File) -->assertion_location1502,41740 -assertion_location(File:Line, File) -->assertion_location1502,41740 -assertion_location(File:Line, File) -->assertion_location1502,41740 -assertion_location(File:Line, _) -->assertion_location1504,41807 -assertion_location(File:Line, _) -->assertion_location1504,41807 -assertion_location(File:Line, _) -->assertion_location1504,41807 -assertion_location(unknown, _) -->assertion_location1506,41875 -assertion_location(unknown, _) -->assertion_location1506,41875 -assertion_location(unknown, _) -->assertion_location1506,41875 -assertion_reason(fail) --> !,assertion_reason1509,41916 -assertion_reason(fail) --> !,assertion_reason1509,41916 -assertion_reason(fail) --> !,assertion_reason1509,41916 -assertion_reason(Error) -->assertion_reason1511,41965 -assertion_reason(Error) -->assertion_reason1511,41965 -assertion_reason(Error) -->assertion_reason1511,41965 -assertion_goal(Unit, Goal) -->assertion_goal1515,42063 -assertion_goal(Unit, Goal) -->assertion_goal1515,42063 -assertion_goal(Unit, Goal) -->assertion_goal1515,42063 -unqualify(Var, _, Var) :-unqualify1521,42193 -unqualify(Var, _, Var) :-unqualify1521,42193 -unqualify(Var, _, Var) :-unqualify1521,42193 -unqualify(M:Goal, Unit, Goal) :-unqualify1523,42233 -unqualify(M:Goal, Unit, Goal) :-unqualify1523,42233 -unqualify(M:Goal, Unit, Goal) :-unqualify1523,42233 -unqualify(M:Goal, _, Goal) :-unqualify1526,42304 -unqualify(M:Goal, _, Goal) :-unqualify1526,42304 -unqualify(M:Goal, _, Goal) :-unqualify1526,42304 -unqualify(Goal, _, Goal).unqualify1529,42406 -unqualify(Goal, _, Goal).unqualify1529,42406 -message(plunit(error(Where, Context, Exception))) -->message1533,42473 -message(plunit(error(Where, Context, Exception))) -->message1533,42473 -message(plunit(error(Where, Context, Exception))) -->message1533,42473 -message(plunit(sto(Unit, Name, Line))) -->message1539,42657 -message(plunit(sto(Unit, Name, Line))) -->message1539,42657 -message(plunit(sto(Unit, Name, Line))) -->message1539,42657 -message(plunit(sto(Type, Result))) -->message1544,42838 -message(plunit(sto(Type, Result))) -->message1544,42838 -message(plunit(sto(Type, Result))) -->message1544,42838 -message(interrupt(begin)) -->message1550,42952 -message(interrupt(begin)) -->message1550,42952 -message(interrupt(begin)) -->message1550,42952 -message(interrupt(begin)) -->message1559,43206 -message(interrupt(begin)) -->message1559,43206 -message(interrupt(begin)) -->message1559,43206 -test_name(@(Name,Bindings)) --> !,test_name1563,43294 -test_name(@(Name,Bindings)) --> !,test_name1563,43294 -test_name(@(Name,Bindings)) --> !,test_name1563,43294 -test_name(Name) --> !,test_name1565,43385 -test_name(Name) --> !,test_name1565,43385 -test_name(Name) --> !,test_name1565,43385 -sto_type(sto_error_incomplete) -->sto_type1568,43432 -sto_type(sto_error_incomplete) -->sto_type1568,43432 -sto_type(sto_error_incomplete) -->sto_type1568,43432 -sto_type(rational_trees) -->sto_type1570,43507 -sto_type(rational_trees) -->sto_type1570,43507 -sto_type(rational_trees) -->sto_type1570,43507 -sto_type(finite_trees) -->sto_type1572,43561 -sto_type(finite_trees) -->sto_type1572,43561 -sto_type(finite_trees) -->sto_type1572,43561 -sto_result(success(_Unit, _Name, _Line, Det, Time)) -->sto_result1575,43612 -sto_result(success(_Unit, _Name, _Line, Det, Time)) -->sto_result1575,43612 -sto_result(success(_Unit, _Name, _Line, Det, Time)) -->sto_result1575,43612 -sto_result(failure(_Unit, _Name, _Line, How)) -->sto_result1578,43718 -sto_result(failure(_Unit, _Name, _Line, How)) -->sto_result1578,43718 -sto_result(failure(_Unit, _Name, _Line, How)) -->sto_result1578,43718 -det(true) -->det1581,43784 -det(true) -->det1581,43784 -det(true) -->det1581,43784 -det(false) -->det1583,43820 -det(false) -->det1583,43820 -det(false) -->det1583,43820 -running(running(Unit:Test, File:Line, STO, Thread)) -->running1586,43862 -running(running(Unit:Test, File:Line, STO, Thread)) -->running1586,43862 -running(running(Unit:Test, File:Line, STO, Thread)) -->running1586,43862 -running([H|T]) -->running1590,44002 -running([H|T]) -->running1590,44002 -running([H|T]) -->running1590,44002 -thread(main) --> !.thread1597,44092 -thread(main) --> !.thread1597,44092 -thread(main) --> !.thread1597,44092 -thread(Other) -->thread1598,44112 -thread(Other) -->thread1598,44112 -thread(Other) -->thread1598,44112 -current_sto(sto_error_incomplete) -->current_sto1601,44153 -current_sto(sto_error_incomplete) -->current_sto1601,44153 -current_sto(sto_error_incomplete) -->current_sto1601,44153 -current_sto(rational_trees) -->current_sto1603,44222 -current_sto(rational_trees) -->current_sto1603,44222 -current_sto(rational_trees) -->current_sto1603,44222 -current_sto(finite_trees) -->current_sto1605,44259 -current_sto(finite_trees) -->current_sto1605,44259 -current_sto(finite_trees) -->current_sto1605,44259 -write_term(T, OPS) -->write_term1609,44339 -write_term(T, OPS) -->write_term1609,44339 -write_term(T, OPS) -->write_term1609,44339 -write_term(T, _OPS) -->write_term1612,44400 -write_term(T, _OPS) -->write_term1612,44400 -write_term(T, _OPS) -->write_term1612,44400 -expected_got_ops_(Ex, E, OPS, Goals) -->expected_got_ops_1616,44448 -expected_got_ops_(Ex, E, OPS, Goals) -->expected_got_ops_1616,44448 -expected_got_ops_(Ex, E, OPS, Goals) -->expected_got_ops_1616,44448 -failure(Var) -->failure1624,44675 -failure(Var) -->failure1624,44675 -failure(Var) -->failure1624,44675 -failure(succeeded(Time)) --> !,failure1627,44735 -failure(succeeded(Time)) --> !,failure1627,44735 -failure(succeeded(Time)) --> !,failure1627,44735 -failure(wrong_error(Expected, Error)) --> !,failure1629,44823 -failure(wrong_error(Expected, Error)) --> !,failure1629,44823 -failure(wrong_error(Expected, Error)) --> !,failure1629,44823 -failure(wrong_answer(Cmp)) -->failure1636,45036 -failure(wrong_answer(Cmp)) -->failure1636,45036 -failure(wrong_answer(Cmp)) -->failure1636,45036 -failure(wrong_answer(CmpExpected, Bindings)) -->failure1644,45295 -failure(wrong_answer(CmpExpected, Bindings)) -->failure1644,45295 -failure(wrong_answer(CmpExpected, Bindings)) -->failure1644,45295 -failure(cmp_error(_Cmp, Error)) -->failure1660,45725 -failure(cmp_error(_Cmp, Error)) -->failure1660,45725 -failure(cmp_error(_Cmp, Error)) -->failure1660,45725 -failure(Error) -->failure1663,45840 -failure(Error) -->failure1663,45840 -failure(Error) -->failure1663,45840 -failure(Why) -->failure1669,45973 -failure(Why) -->failure1669,45973 -failure(Why) -->failure1669,45973 -fixme_message([]) --> [].fixme_message1672,46010 -fixme_message([]) --> [].fixme_message1672,46010 -fixme_message([]) --> [].fixme_message1672,46010 -fixme_message([fixme(Unit, _Name, Line, Reason, How)|T]) -->fixme_message1673,46036 -fixme_message([fixme(Unit, _Name, Line, Reason, How)|T]) -->fixme_message1673,46036 -fixme_message([fixme(Unit, _Name, Line, Reason, How)|T]) -->fixme_message1673,46036 -fixme_message(Location, Reason, failed) -->fixme_message1682,46226 -fixme_message(Location, Reason, failed) -->fixme_message1682,46226 -fixme_message(Location, Reason, failed) -->fixme_message1682,46226 -fixme_message(Location, Reason, passed) -->fixme_message1684,46311 -fixme_message(Location, Reason, passed) -->fixme_message1684,46311 -fixme_message(Location, Reason, passed) -->fixme_message1684,46311 -fixme_message(Location, Reason, nondet) -->fixme_message1686,46403 -fixme_message(Location, Reason, nondet) -->fixme_message1686,46403 -fixme_message(Location, Reason, nondet) -->fixme_message1686,46403 -user:message_hook(make(done(Files)), _, _) :-message_hook1705,46728 -user:message_hook(make(done(Files)), _, _) :-message_hook1705,46728 -user:generate_message_hook(Message) -->generate_message_hook1713,46865 -user:generate_message_hook(Message) -->generate_message_hook1713,46865 -user:message_hook(informational, plunit(begin(Unit)), _Lines) :-message_hook1724,47300 -user:message_hook(informational, plunit(begin(Unit)), _Lines) :-message_hook1724,47300 -user:message_hook(informational, plunit(end(_Unit)), _Lines) :-message_hook1727,47439 -user:message_hook(informational, plunit(end(_Unit)), _Lines) :-message_hook1727,47439 - -swi/library/predicate_options.pl,21056 -:- multifile option_decl/3, pred_option/3.multifile130,4869 -:- multifile option_decl/3, pred_option/3.multifile130,4869 -:- dynamic dyn_option_decl/3.dynamic131,4912 -:- dynamic dyn_option_decl/3.dynamic131,4912 -predicate_options(PI, Arg, Options) :-predicate_options169,6078 -predicate_options(PI, Arg, Options) :-predicate_options169,6078 -predicate_options(PI, Arg, Options) :-predicate_options169,6078 -assert_predicate_options(PI, Arg, Options, New) :-assert_predicate_options181,6534 -assert_predicate_options(PI, Arg, Options, New) :-assert_predicate_options181,6534 -assert_predicate_options(PI, Arg, Options, New) :-assert_predicate_options181,6534 -assert_option_clause(Clause, New) :-assert_option_clause198,6969 -assert_option_clause(Clause, New) :-assert_option_clause198,6969 -assert_option_clause(Clause, New) :-assert_option_clause198,6969 -clause_head(M:(Head:-_Body), M:Head) :- !.clause_head208,7217 -clause_head(M:(Head:-_Body), M:Head) :- !.clause_head208,7217 -clause_head(M:(Head:-_Body), M:Head) :- !.clause_head208,7217 -clause_head((M:Head :-_Body), M:Head) :- !.clause_head209,7260 -clause_head((M:Head :-_Body), M:Head) :- !.clause_head209,7260 -clause_head((M:Head :-_Body), M:Head) :- !.clause_head209,7260 -clause_head(Head, Head).clause_head210,7304 -clause_head(Head, Head).clause_head210,7304 -rename_clause(M:Clause, M:NewClause, Head, NewHead) :- !,rename_clause212,7330 -rename_clause(M:Clause, M:NewClause, Head, NewHead) :- !,rename_clause212,7330 -rename_clause(M:Clause, M:NewClause, Head, NewHead) :- !,rename_clause212,7330 -rename_clause((Head :- Body), (NewHead :- Body), Head, NewHead) :- !.rename_clause214,7438 -rename_clause((Head :- Body), (NewHead :- Body), Head, NewHead) :- !.rename_clause214,7438 -rename_clause((Head :- Body), (NewHead :- Body), Head, NewHead) :- !.rename_clause214,7438 -rename_clause(Head, NewHead, Head, NewHead) :- !.rename_clause215,7508 -rename_clause(Head, NewHead, Head, NewHead) :- !.rename_clause215,7508 -rename_clause(Head, NewHead, Head, NewHead) :- !.rename_clause215,7508 -rename_clause(Head, Head, _, _).rename_clause216,7558 -rename_clause(Head, Head, _, _).rename_clause216,7558 -current_option_arg(Module:Name/Arity, Arg) :-current_option_arg229,7871 -current_option_arg(Module:Name/Arity, Arg) :-current_option_arg229,7871 -current_option_arg(Module:Name/Arity, Arg) :-current_option_arg229,7871 -current_option_arg(Module:Name/Arity, Arg, DefM) :-current_option_arg232,7970 -current_option_arg(Module:Name/Arity, Arg, DefM) :-current_option_arg232,7970 -current_option_arg(Module:Name/Arity, Arg, DefM) :-current_option_arg232,7970 -current_option_arg(M:Name/Arity, Arg, M) :-current_option_arg239,8212 -current_option_arg(M:Name/Arity, Arg, M) :-current_option_arg239,8212 -current_option_arg(M:Name/Arity, Arg, M) :-current_option_arg239,8212 -current_predicate_option(Module:PI, Arg, Option) :-current_predicate_option260,8812 -current_predicate_option(Module:PI, Arg, Option) :-current_predicate_option260,8812 -current_predicate_option(Module:PI, Arg, Option) :-current_predicate_option260,8812 -check_predicate_option(Module:PI, Arg, Option) :-check_predicate_option278,9397 -check_predicate_option(Module:PI, Arg, Option) :-check_predicate_option278,9397 -check_predicate_option(Module:PI, Arg, Option) :-check_predicate_option278,9397 -pred_option(M:Head, Option) :-pred_option289,9656 -pred_option(M:Head, Option) :-pred_option289,9656 -pred_option(M:Head, Option) :-pred_option289,9656 -pred_option(M:Head, Option, Seen) :-pred_option292,9722 -pred_option(M:Head, Option, Seen) :-pred_option292,9722 -pred_option(M:Head, Option, Seen) :-pred_option292,9722 -has_static_option_decl(M) :-has_static_option_decl299,9923 -has_static_option_decl(M) :-has_static_option_decl299,9923 -has_static_option_decl(M) :-has_static_option_decl299,9923 -has_dynamic_option_decl(M) :-has_dynamic_option_decl301,10007 -has_dynamic_option_decl(M) :-has_dynamic_option_decl301,10007 -has_dynamic_option_decl(M) :-has_dynamic_option_decl301,10007 -add_attr(Var, Value) :-add_attr313,10281 -add_attr(Var, Value) :-add_attr313,10281 -add_attr(Var, Value) :-add_attr313,10281 -system:predicate_option_type(Type, Arg) :-predicate_option_type319,10451 -system:predicate_option_type(Type, Arg) :-predicate_option_type319,10451 -system:predicate_option_type(Type, Arg) :-predicate_option_type322,10543 -system:predicate_option_type(Type, Arg) :-predicate_option_type322,10543 -system:predicate_option_mode(Mode, Arg) :-predicate_option_mode325,10608 -system:predicate_option_mode(Mode, Arg) :-predicate_option_mode325,10608 -system:predicate_option_mode(Mode, Arg) :-predicate_option_mode328,10700 -system:predicate_option_mode(Mode, Arg) :-predicate_option_mode328,10700 -check_mode(input, Arg) :-check_mode331,10768 -check_mode(input, Arg) :-check_mode331,10768 -check_mode(input, Arg) :-check_mode331,10768 -check_mode(output, Arg) :-check_mode336,10855 -check_mode(output, Arg) :-check_mode336,10855 -check_mode(output, Arg) :-check_mode336,10855 -attr_unify_hook([], _).attr_unify_hook342,10963 -attr_unify_hook([], _).attr_unify_hook342,10963 -attr_unify_hook([H|T], Var) :-attr_unify_hook343,10987 -attr_unify_hook([H|T], Var) :-attr_unify_hook343,10987 -attr_unify_hook([H|T], Var) :-attr_unify_hook343,10987 -option_hook(option_type(Type), Value) :-option_hook347,11067 -option_hook(option_type(Type), Value) :-option_hook347,11067 -option_hook(option_type(Type), Value) :-option_hook347,11067 -option_hook(option_mode(Mode), Value) :-option_hook349,11134 -option_hook(option_mode(Mode), Value) :-option_hook349,11134 -option_hook(option_mode(Mode), Value) :-option_hook349,11134 -attribute_goals(Var) -->attribute_goals353,11203 -attribute_goals(Var) -->attribute_goals353,11203 -attribute_goals(Var) -->attribute_goals353,11203 -option_goals([], _) --> [].option_goals357,11302 -option_goals([], _) --> [].option_goals357,11302 -option_goals([], _) --> [].option_goals357,11302 -option_goals([H|T], Var) -->option_goals358,11330 -option_goals([H|T], Var) -->option_goals358,11330 -option_goals([H|T], Var) -->option_goals358,11330 -option_goal(option_type(Type), Var) --> [predicate_option_type(Type, Var)].option_goal362,11405 -option_goal(option_type(Type), Var) --> [predicate_option_type(Type, Var)].option_goal362,11405 -option_goal(option_type(Type), Var) --> [predicate_option_type(Type, Var)].option_goal362,11405 -option_goal(option_mode(Mode), Var) --> [predicate_option_mode(Mode, Var)].option_goal363,11481 -option_goal(option_mode(Mode), Var) --> [predicate_option_mode(Mode, Var)].option_goal363,11481 -option_goal(option_mode(Mode), Var) --> [predicate_option_mode(Mode, Var)].option_goal363,11481 -current_predicate_options(PI, Arg, Options) :-current_predicate_options378,12004 -current_predicate_options(PI, Arg, Options) :-current_predicate_options378,12004 -current_predicate_options(PI, Arg, Options) :-current_predicate_options378,12004 -current_predicate_option_decl(PI, Arg, Option) :-current_predicate_option_decl386,12238 -current_predicate_option_decl(PI, Arg, Option) :-current_predicate_option_decl386,12238 -current_predicate_option_decl(PI, Arg, Option) :-current_predicate_option_decl386,12238 -mode_and_type(Value, ModeAndType) :-mode_and_type392,12428 -mode_and_type(Value, ModeAndType) :-mode_and_type392,12428 -mode_and_type(Value, ModeAndType) :-mode_and_type392,12428 -define_predicate(PI) :-define_predicate403,12688 -define_predicate(PI) :-define_predicate403,12688 -define_predicate(PI) :-define_predicate403,12688 -define_predicate(_).define_predicate408,12815 -define_predicate(_).define_predicate408,12815 -derived_predicate_options(PI, Arg, Options) :-derived_predicate_options415,12997 -derived_predicate_options(PI, Arg, Options) :-derived_predicate_options415,12997 -derived_predicate_options(PI, Arg, Options) :-derived_predicate_options415,12997 -derived_predicate_option(PI, Arg, Decl) :-derived_predicate_option426,13320 -derived_predicate_option(PI, Arg, Decl) :-derived_predicate_option426,13320 -derived_predicate_option(PI, Arg, Decl) :-derived_predicate_option426,13320 -expand_pass_to_options([], _) --> [].expand_pass_to_options441,13772 -expand_pass_to_options([], _) --> [].expand_pass_to_options441,13772 -expand_pass_to_options([], _) --> [].expand_pass_to_options441,13772 -expand_pass_to_options([H|T], M) -->expand_pass_to_options442,13810 -expand_pass_to_options([H|T], M) -->expand_pass_to_options442,13810 -expand_pass_to_options([H|T], M) -->expand_pass_to_options442,13810 -expand_pass_to(pass_to(PI, Arg), Module) -->expand_pass_to446,13902 -expand_pass_to(pass_to(PI, Arg), Module) -->expand_pass_to446,13902 -expand_pass_to(pass_to(PI, Arg), Module) -->expand_pass_to446,13902 -expand_pass_to(Option, _) -->expand_pass_to456,14224 -expand_pass_to(Option, _) -->expand_pass_to456,14224 -expand_pass_to(Option, _) -->expand_pass_to456,14224 -list([]) --> [].list459,14266 -list([]) --> [].list459,14266 -list([]) --> [].list459,14266 -list([H|T]) --> [H], list(T).list460,14283 -list([H|T]) --> [H], list(T).list460,14283 -list([H|T]) --> [H], list(T).list460,14283 -list([H|T]) --> [H], list(T).list460,14283 -list([H|T]) --> [H], list(T).list460,14283 -derived_predicate_options(Module) :-derived_predicate_options467,14466 -derived_predicate_options(Module) :-derived_predicate_options467,14466 -derived_predicate_options(Module) :-derived_predicate_options467,14466 -derived_predicate_options(Module) :-derived_predicate_options471,14596 -derived_predicate_options(Module) :-derived_predicate_options471,14596 -derived_predicate_options(Module) :-derived_predicate_options471,14596 -qualify_option(M, pass_to(PI0, Arg), pass_to(PI1, Arg)) :- !,qualify_option498,15364 -qualify_option(M, pass_to(PI0, Arg), pass_to(PI1, Arg)) :- !,qualify_option498,15364 -qualify_option(M, pass_to(PI0, Arg), pass_to(PI1, Arg)) :- !,qualify_option498,15364 -qualify_option(_, Opt, Opt).qualify_option500,15449 -qualify_option(_, Opt, Opt).qualify_option500,15449 -qualify(M:Term, M, Term) :- !.qualify502,15479 -qualify(M:Term, M, Term) :- !.qualify502,15479 -qualify(M:Term, M, Term) :- !.qualify502,15479 -qualify(QTerm, _, QTerm).qualify503,15510 -qualify(QTerm, _, QTerm).qualify503,15510 -retractall_predicate_options :-retractall_predicate_options514,15730 -check_predicate_options :-check_predicate_options541,16604 -derive_predicate_options :-derive_predicate_options555,17151 -new_decls([]).new_decls564,17372 -new_decls([]).new_decls564,17372 -new_decls([predicate_options(PI, A, O)|T]) :-new_decls565,17387 -new_decls([predicate_options(PI, A, O)|T]) :-new_decls565,17387 -new_decls([predicate_options(PI, A, O)|T]) :-new_decls565,17387 -derive_predicate_options(NewDecls) :-derive_predicate_options570,17490 -derive_predicate_options(NewDecls) :-derive_predicate_options570,17490 -derive_predicate_options(NewDecls) :-derive_predicate_options570,17490 -check_predicate_options_module(Module) :-check_predicate_options_module589,17959 -check_predicate_options_module(Module) :-check_predicate_options_module589,17959 -check_predicate_options_module(Module) :-check_predicate_options_module589,17959 -predicate_in_module(Module, PI) :-predicate_in_module593,18088 -predicate_in_module(Module, PI) :-predicate_in_module593,18088 -predicate_in_module(Module, PI) :-predicate_in_module593,18088 -check_predicate_options(Module:Name/Arity) :-check_predicate_options604,18432 -check_predicate_options(Module:Name/Arity) :-check_predicate_options604,18432 -check_predicate_options(Module:Name/Arity) :-check_predicate_options604,18432 -check_clause((Head:-Body), M, ClauseRef, Action) :- !,check_clause619,18850 -check_clause((Head:-Body), M, ClauseRef, Action) :- !,check_clause619,18850 -check_clause((Head:-Body), M, ClauseRef, Action) :- !,check_clause619,18850 -check_body(Var, _, _, _) :-check_body640,19522 -check_body(Var, _, _, _) :-check_body640,19522 -check_body(Var, _, _, _) :-check_body640,19522 -check_body(M:G, _, term_position(_,_,_,_,[_,Pos]), Action) :- !,check_body642,19564 -check_body(M:G, _, term_position(_,_,_,_,[_,Pos]), Action) :- !,check_body642,19564 -check_body(M:G, _, term_position(_,_,_,_,[_,Pos]), Action) :- !,check_body642,19564 -check_body((A,B), M, term_position(_,_,_,_,[PA,PB]), Action) :- !,check_body644,19661 -check_body((A,B), M, term_position(_,_,_,_,[PA,PB]), Action) :- !,check_body644,19661 -check_body((A,B), M, term_position(_,_,_,_,[PA,PB]), Action) :- !,check_body644,19661 -check_body(A=B, _, _, _) :- % partial evaluationcheck_body647,19790 -check_body(A=B, _, _, _) :- % partial evaluationcheck_body647,19790 -check_body(A=B, _, _, _) :- % partial evaluationcheck_body647,19790 -check_body(Goal, M, term_position(_,_,_,_,ArgPosList), Action) :-check_body649,19874 -check_body(Goal, M, term_position(_,_,_,_,ArgPosList), Action) :-check_body649,19874 -check_body(Goal, M, term_position(_,_,_,_,ArgPosList), Action) :-check_body649,19874 -check_body(Goal, M, _, Action) :-check_body663,20311 -check_body(Goal, M, _, Action) :-check_body663,20311 -check_body(Goal, M, _, Action) :-check_body663,20311 -check_body(Meta, M, term_position(_,_,_,_,ArgPosList), Action) :-check_body666,20418 -check_body(Meta, M, term_position(_,_,_,_,ArgPosList), Action) :-check_body666,20418 -check_body(Meta, M, term_position(_,_,_,_,ArgPosList), Action) :-check_body666,20418 -check_body(_, _, _, _).check_body669,20602 -check_body(_, _, _, _).check_body669,20602 -check_meta_args(I, Head, Meta, M, [ArgPos|ArgPosList], Action) :-check_meta_args671,20627 -check_meta_args(I, Head, Meta, M, [ArgPos|ArgPosList], Action) :-check_meta_args671,20627 -check_meta_args(I, Head, Meta, M, [ArgPos|ArgPosList], Action) :-check_meta_args671,20627 -check_meta_args(_,_,_,_, _, _).check_meta_args680,20875 -check_meta_args(_,_,_,_, _, _).check_meta_args680,20875 -check_called_by([], _, _).check_called_by686,21004 -check_called_by([], _, _).check_called_by686,21004 -check_called_by([H|T], M, Action) :-check_called_by687,21031 -check_called_by([H|T], M, Action) :-check_called_by687,21031 -check_called_by([H|T], M, Action) :-check_called_by687,21031 -extend(Goal, N, GoalEx) :-extend697,21233 -extend(Goal, N, GoalEx) :-extend697,21233 -extend(Goal, N, GoalEx) :-extend697,21233 -check_options(PI, OptArg, QOptions, ArgPos, Action) :-check_options712,21687 -check_options(PI, OptArg, QOptions, ArgPos, Action) :-check_options712,21687 -check_options(PI, OptArg, QOptions, ArgPos, Action) :-check_options712,21687 -remove_qualifier(X, X) :-remove_qualifier718,21946 -remove_qualifier(X, X) :-remove_qualifier718,21946 -remove_qualifier(X, X) :-remove_qualifier718,21946 -remove_qualifier(_:X, X) :- !.remove_qualifier720,21984 -remove_qualifier(_:X, X) :- !.remove_qualifier720,21984 -remove_qualifier(_:X, X) :- !.remove_qualifier720,21984 -remove_qualifier(X, X).remove_qualifier721,22015 -remove_qualifier(X, X).remove_qualifier721,22015 -check_option_list(Var, PI, OptArg, _, _, _) :-check_option_list723,22040 -check_option_list(Var, PI, OptArg, _, _, _) :-check_option_list723,22040 -check_option_list(Var, PI, OptArg, _, _, _) :-check_option_list723,22040 -check_option_list([], _, _, _, _, _).check_option_list726,22139 -check_option_list([], _, _, _, _, _).check_option_list726,22139 -check_option_list([H|T], PI, OptArg, Options, ArgPos, Action) :-check_option_list727,22177 -check_option_list([H|T], PI, OptArg, Options, ArgPos, Action) :-check_option_list727,22177 -check_option_list([H|T], PI, OptArg, Options, ArgPos, Action) :-check_option_list727,22177 -check_option(_, _, _, _, decl) :- !.check_option731,22349 -check_option(_, _, _, _, decl) :- !.check_option731,22349 -check_option(_, _, _, _, decl) :- !.check_option731,22349 -check_option(PI, OptArg, Opt, ArgPos, _) :-check_option732,22386 -check_option(PI, OptArg, Opt, ArgPos, _) :-check_option732,22386 -check_option(PI, OptArg, Opt, ArgPos, _) :-check_option732,22386 -annotate(Var, Term) :-annotate750,22844 -annotate(Var, Term) :-annotate750,22844 -annotate(Var, Term) :-annotate750,22844 -annotations(Var, Annotations) :-annotations758,23035 -annotations(Var, Annotations) :-annotations758,23035 -annotations(Var, Annotations) :-annotations758,23035 -predopts_analysis:attr_unify_hook(Opts, Value) :-attr_unify_hook761,23117 -predopts_analysis:attr_unify_hook(Opts, Value) :-attr_unify_hook761,23117 -predopts_analysis:attr_unify_hook(_, _).attr_unify_hook765,23285 -eval_option_pred(swi_option:option(Opt, Options)) :-eval_option_pred772,23425 -eval_option_pred(swi_option:option(Opt, Options)) :-eval_option_pred772,23425 -eval_option_pred(swi_option:option(Opt, Options)) :-eval_option_pred772,23425 -eval_option_pred(swi_option:option(Opt, Options, _Default)) :-eval_option_pred775,23527 -eval_option_pred(swi_option:option(Opt, Options, _Default)) :-eval_option_pred775,23527 -eval_option_pred(swi_option:option(Opt, Options, _Default)) :-eval_option_pred775,23527 -eval_option_pred(swi_option:select_option(Opt, Options, Rest)) :-eval_option_pred778,23639 -eval_option_pred(swi_option:select_option(Opt, Options, Rest)) :-eval_option_pred778,23639 -eval_option_pred(swi_option:select_option(Opt, Options, Rest)) :-eval_option_pred778,23639 -eval_option_pred(swi_option:select_option(Opt, Options, Rest, _Default)) :-eval_option_pred782,23803 -eval_option_pred(swi_option:select_option(Opt, Options, Rest, _Default)) :-eval_option_pred782,23803 -eval_option_pred(swi_option:select_option(Opt, Options, Rest, _Default)) :-eval_option_pred782,23803 -eval_option_pred(swi_option:meta_options(_Cond, QOptionsIn, QOptionsOut)) :-eval_option_pred786,23977 -eval_option_pred(swi_option:meta_options(_Cond, QOptionsIn, QOptionsOut)) :-eval_option_pred786,23977 -eval_option_pred(swi_option:meta_options(_Cond, QOptionsIn, QOptionsOut)) :-eval_option_pred786,23977 -processes(Opt, Spec) :-processes791,24198 -processes(Opt, Spec) :-processes791,24198 -processes(Opt, Spec) :-processes791,24198 -option_decl(_, check) :- !.option_decl810,24735 -option_decl(_, check) :- !.option_decl810,24735 -option_decl(_, check) :- !.option_decl810,24735 -option_decl(M:_, _) :-option_decl811,24763 -option_decl(M:_, _) :-option_decl811,24763 -option_decl(M:_, _) :-option_decl811,24763 -option_decl(M:_, _) :-option_decl813,24808 -option_decl(M:_, _) :-option_decl813,24808 -option_decl(M:_, _) :-option_decl813,24808 -option_decl(M:Head, _) :-option_decl815,24862 -option_decl(M:Head, _) :-option_decl815,24862 -option_decl(M:Head, _) :-option_decl815,24862 -option_decl(_, _).option_decl832,25334 -option_decl(_, _).option_decl832,25334 -system_module(system) :- !.system_module834,25354 -system_module(system) :- !.system_module834,25354 -system_module(system) :- !.system_module834,25354 -system_module(Module) :-system_module835,25382 -system_module(Module) :-system_module835,25382 -system_module(Module) :-system_module835,25382 -canonical_pi(M:Name//Arity, M:Name/PArity) :-canonical_pi843,25533 -canonical_pi(M:Name//Arity, M:Name/PArity) :-canonical_pi843,25533 -canonical_pi(M:Name//Arity, M:Name/PArity) :-canonical_pi843,25533 -canonical_pi(PI, PI).canonical_pi846,25616 -canonical_pi(PI, PI).canonical_pi846,25616 -resolve_module(Module:Name/Arity, DefM:Name/Arity) :-resolve_module856,25962 -resolve_module(Module:Name/Arity, DefM:Name/Arity) :-resolve_module856,25962 -resolve_module(Module:Name/Arity, DefM:Name/Arity) :-resolve_module856,25962 -prolog:message(predicate_option_error(Formal, Location)) -->message870,26271 -prolog:message(predicate_option_error(Formal, Location)) -->message870,26271 -prolog:message(check_options(new(Decls))) -->message873,26417 -prolog:message(check_options(new(Decls))) -->message873,26417 -error_location(file_char_count(File, CharPos)) -->error_location877,26521 -error_location(file_char_count(File, CharPos)) -->error_location877,26521 -error_location(file_char_count(File, CharPos)) -->error_location877,26521 -error_location(clause(ClauseRef)) -->error_location880,26662 -error_location(clause(ClauseRef)) -->error_location880,26662 -error_location(clause(ClauseRef)) -->error_location880,26662 -error_location(clause(ClauseRef)) -->error_location885,26827 -error_location(clause(ClauseRef)) -->error_location885,26827 -error_location(clause(ClauseRef)) -->error_location885,26827 -filepos_line(File, CharPos, Line, LinePos) :-filepos_line888,26898 -filepos_line(File, CharPos, Line, LinePos) :-filepos_line888,26898 -filepos_line(File, CharPos, Line, LinePos) :-filepos_line888,26898 -new_decls([]) --> [].new_decls903,27303 -new_decls([]) --> [].new_decls903,27303 -new_decls([]) --> [].new_decls903,27303 -new_decls([H|T]) -->new_decls904,27325 -new_decls([H|T]) -->new_decls904,27325 -new_decls([H|T]) -->new_decls904,27325 - -swi/library/predopts.pl,3104 -qualify_list([], _, []).qualify_list64,2226 -qualify_list([], _, []).qualify_list64,2226 -qualify_list([H0|T0], M, [H|T]) :-qualify_list65,2251 -qualify_list([H0|T0], M, [H|T]) :-qualify_list65,2251 -qualify_list([H0|T0], M, [H|T]) :-qualify_list65,2251 -qualify(M:Term, M, Term) :- !.qualify69,2332 -qualify(M:Term, M, Term) :- !.qualify69,2332 -qualify(M:Term, M, Term) :- !.qualify69,2332 -qualify(QTerm, _, QTerm).qualify70,2363 -qualify(QTerm, _, QTerm).qualify70,2363 -option_clauses([], _, _, _) --> [].option_clauses73,2391 -option_clauses([], _, _, _) --> [].option_clauses73,2391 -option_clauses([], _, _, _) --> [].option_clauses73,2391 -option_clauses([H|T], Head, M, A) -->option_clauses74,2427 -option_clauses([H|T], Head, M, A) -->option_clauses74,2427 -option_clauses([H|T], Head, M, A) -->option_clauses74,2427 -option_clause(Var, _, _) -->option_clause78,2526 -option_clause(Var, _, _) -->option_clause78,2526 -option_clause(Var, _, _) -->option_clause78,2526 -option_clause(pass_to(PI0, Arg), Head, M) --> !,option_clause82,2615 -option_clause(pass_to(PI0, Arg), Head, M) --> !,option_clause82,2615 -option_clause(pass_to(PI0, Arg), Head, M) --> !,option_clause82,2615 -option_clause(Option, Head, M) -->option_clause91,2952 -option_clause(Option, Head, M) -->option_clause91,2952 -option_clause(Option, Head, M) -->option_clause91,2952 -option_clause(Option, _, _) -->option_clause98,3173 -option_clause(Option, _, _) -->option_clause98,3173 -option_clause(Option, _, _) -->option_clause98,3173 -modes_and_types([], [], true).modes_and_types102,3264 -modes_and_types([], [], true).modes_and_types102,3264 -modes_and_types([H|T], [A|AT], Body) :-modes_and_types103,3295 -modes_and_types([H|T], [A|AT], Body) :-modes_and_types103,3295 -modes_and_types([H|T], [A|AT], Body) :-modes_and_types103,3295 -mode_and_type(-Type, A, (predicate_option_mode(output, A), Body)) :- !,mode_and_type115,3530 -mode_and_type(-Type, A, (predicate_option_mode(output, A), Body)) :- !,mode_and_type115,3530 -mode_and_type(-Type, A, (predicate_option_mode(output, A), Body)) :- !,mode_and_type115,3530 -mode_and_type(+Type, A, Body) :- !,mode_and_type117,3629 -mode_and_type(+Type, A, Body) :- !,mode_and_type117,3629 -mode_and_type(+Type, A, Body) :- !,mode_and_type117,3629 -mode_and_type(Type, A, Body) :-mode_and_type119,3692 -mode_and_type(Type, A, Body) :-mode_and_type119,3692 -mode_and_type(Type, A, Body) :-mode_and_type119,3692 -type_goal(Type, A, predicate_option_type(Type, A)).type_goal122,3752 -type_goal(Type, A, predicate_option_type(Type, A)).type_goal122,3752 -canonical_pi(M:Name//Arity, M:Name/PArity) :-canonical_pi127,3838 -canonical_pi(M:Name//Arity, M:Name/PArity) :-canonical_pi127,3838 -canonical_pi(M:Name//Arity, M:Name/PArity) :-canonical_pi127,3838 -canonical_pi(Name//Arity, Name/PArity) :-canonical_pi130,3924 -canonical_pi(Name//Arity, Name/PArity) :-canonical_pi130,3924 -canonical_pi(Name//Arity, Name/PArity) :-canonical_pi130,3924 -canonical_pi(PI, PI).canonical_pi133,4006 -canonical_pi(PI, PI).canonical_pi133,4006 - -swi/library/prolog_clause.pl,16250 -clause_info(ClauseRef, File, TermPos, NameOffset) :-clause_info74,2698 -clause_info(ClauseRef, File, TermPos, NameOffset) :-clause_info74,2698 -clause_info(ClauseRef, File, TermPos, NameOffset) :-clause_info74,2698 -unify_term(X, X) :- !.unify_term112,4069 -unify_term(X, X) :- !.unify_term112,4069 -unify_term(X, X) :- !.unify_term112,4069 -unify_term(X1, X2) :-unify_term113,4092 -unify_term(X1, X2) :-unify_term113,4092 -unify_term(X1, X2) :-unify_term113,4092 -unify_term(X, Y) :-unify_term119,4226 -unify_term(X, Y) :-unify_term119,4226 -unify_term(X, Y) :-unify_term119,4226 -unify_term(X, Y) :-unify_term121,4270 -unify_term(X, Y) :-unify_term121,4270 -unify_term(X, Y) :-unify_term121,4270 -unify_term(_, Y) :-unify_term125,4341 -unify_term(_, Y) :-unify_term125,4341 -unify_term(_, Y) :-unify_term125,4341 -unify_term(_:X, Y) :-unify_term127,4408 -unify_term(_:X, Y) :-unify_term127,4408 -unify_term(_:X, Y) :-unify_term127,4408 -unify_term(X, _:Y) :-unify_term129,4452 -unify_term(X, _:Y) :-unify_term129,4452 -unify_term(X, _:Y) :-unify_term129,4452 -unify_term(X, Y) :-unify_term131,4496 -unify_term(X, Y) :-unify_term131,4496 -unify_term(X, Y) :-unify_term131,4496 -unify_args(N, N, _, _) :- !.unify_args138,4626 -unify_args(N, N, _, _) :- !.unify_args138,4626 -unify_args(N, N, _, _) :- !.unify_args138,4626 -unify_args(I, Arity, T1, T2) :-unify_args139,4655 -unify_args(I, Arity, T1, T2) :-unify_args139,4655 -unify_args(I, Arity, T1, T2) :-unify_args139,4655 -read_term_at_line(File, Line, Module, Clause, TermPos, VarNames) :-read_term_at_line152,4917 -read_term_at_line(File, Line, Module, Clause, TermPos, VarNames) :-read_term_at_line152,4917 -read_term_at_line(File, Line, Module, Clause, TermPos, VarNames) :-read_term_at_line152,4917 -make_varnames(ReadClause, DecompiledClause, Offsets, Names, Term) :-make_varnames181,5867 -make_varnames(ReadClause, DecompiledClause, Offsets, Names, Term) :-make_varnames181,5867 -make_varnames(ReadClause, DecompiledClause, Offsets, Names, Term) :-make_varnames181,5867 -make_varnames((Head --> _Body), _, Offsets, Names, Bindings) :- !,make_varnames183,6012 -make_varnames((Head --> _Body), _, Offsets, Names, Bindings) :- !,make_varnames183,6012 -make_varnames((Head --> _Body), _, Offsets, Names, Bindings) :- !,make_varnames183,6012 -make_varnames(_, _, Offsets, Names, Bindings) :-make_varnames192,6325 -make_varnames(_, _, Offsets, Names, Bindings) :-make_varnames192,6325 -make_varnames(_, _, Offsets, Names, Bindings) :-make_varnames192,6325 -do_make_varnames([], _, _).do_make_varnames197,6474 -do_make_varnames([], _, _).do_make_varnames197,6474 -do_make_varnames([N=Var|TO], Names, Bindings) :-do_make_varnames198,6502 -do_make_varnames([N=Var|TO], Names, Bindings) :-do_make_varnames198,6502 -do_make_varnames([N=Var|TO], Names, Bindings) :-do_make_varnames198,6502 -find_varname(Var, [Name = TheVar|_], Name) :-find_varname207,6698 -find_varname(Var, [Name = TheVar|_], Name) :-find_varname207,6698 -find_varname(Var, [Name = TheVar|_], Name) :-find_varname207,6698 -find_varname(Var, [_|T], Name) :-find_varname209,6763 -find_varname(Var, [_|T], Name) :-find_varname209,6763 -find_varname(Var, [_|T], Name) :-find_varname209,6763 -unify_clause(Read, Read, _, TermPos, TermPos) :- !.unify_clause229,7453 -unify_clause(Read, Read, _, TermPos, TermPos) :- !.unify_clause229,7453 -unify_clause(Read, Read, _, TermPos, TermPos) :- !.unify_clause229,7453 -unify_clause(Read, Decompiled, Module, TermPoso, TermPos) :-unify_clause231,7530 -unify_clause(Read, Decompiled, Module, TermPoso, TermPos) :-unify_clause231,7530 -unify_clause(Read, Decompiled, Module, TermPoso, TermPos) :-unify_clause231,7530 -unify_clause(:->(Head, Body), (PlHead :- PlBody), _, TermPos0, TermPos) :- !,unify_clause233,7659 -unify_clause(:->(Head, Body), (PlHead :- PlBody), _, TermPos0, TermPos) :- !,unify_clause233,7659 -unify_clause(:->(Head, Body), (PlHead :- PlBody), _, TermPos0, TermPos) :- !,unify_clause233,7659 -unify_clause(:<-(Head, Body), (PlHead :- PlBody), _, TermPos0, TermPos) :- !,unify_clause236,7828 -unify_clause(:<-(Head, Body), (PlHead :- PlBody), _, TermPos0, TermPos) :- !,unify_clause236,7828 -unify_clause(:<-(Head, Body), (PlHead :- PlBody), _, TermPos0, TermPos) :- !,unify_clause236,7828 -unify_clause(Read, Compiled1, Module, TermPos0, TermPos) :-unify_clause256,8584 -unify_clause(Read, Compiled1, Module, TermPos0, TermPos) :-unify_clause256,8584 -unify_clause(Read, Compiled1, Module, TermPos0, TermPos) :-unify_clause256,8584 -unify_clause(Read, Compiled1, Module, TermPos0, TermPos) :-unify_clause271,9059 -unify_clause(Read, Compiled1, Module, TermPos0, TermPos) :-unify_clause271,9059 -unify_clause(Read, Compiled1, Module, TermPos0, TermPos) :-unify_clause271,9059 -unify_clause(_, _, _, _, _) :-unify_clause275,9236 -unify_clause(_, _, _, _, _) :-unify_clause275,9236 -unify_clause(_, _, _, _, _) :-unify_clause275,9236 -unify_clause_head(H1, H2) :-unify_clause_head279,9326 -unify_clause_head(H1, H2) :-unify_clause_head279,9326 -unify_clause_head(H1, H2) :-unify_clause_head279,9326 -ci_expand(Read, Compiled, Module) :-ci_expand283,9406 -ci_expand(Read, Compiled, Module) :-ci_expand283,9406 -ci_expand(Read, Compiled, Module) :-ci_expand283,9406 -match_module((H1 :- B1), (H2 :- B2), Pos0, Pos) :- !,match_module290,9617 -match_module((H1 :- B1), (H2 :- B2), Pos0, Pos) :- !,match_module290,9617 -match_module((H1 :- B1), (H2 :- B2), Pos0, Pos) :- !,match_module290,9617 -match_module(H1, H2, Pos, Pos) :- % deal with factsmatch_module293,9731 -match_module(H1, H2, Pos, Pos) :- % deal with factsmatch_module293,9731 -match_module(H1, H2, Pos, Pos) :- % deal with factsmatch_module293,9731 -expand_failed(E, Read) :-expand_failed300,9913 -expand_failed(E, Read) :-expand_failed300,9913 -expand_failed(E, Read) :-expand_failed300,9913 -unify_body(B, B, Pos, Pos) :-unify_body313,10300 -unify_body(B, B, Pos, Pos) :-unify_body313,10300 -unify_body(B, B, Pos, Pos) :-unify_body313,10300 -does_not_dcg_after_binding(B, Pos) :-does_not_dcg_after_binding328,10737 -does_not_dcg_after_binding(B, Pos) :-does_not_dcg_after_binding328,10737 -does_not_dcg_after_binding(B, Pos) :-does_not_dcg_after_binding328,10737 -a --> { x, y, z }.a337,10992 -ubody(B, B, P, P) :-ubody348,11425 -ubody(B, B, P, P) :-ubody348,11425 -ubody(B, B, P, P) :-ubody348,11425 -ubody(C0, C, P0, P) :-ubody367,11879 -ubody(C0, C, P0, P) :-ubody367,11879 -ubody(C0, C, P0, P) :-ubody367,11879 -ubody(A is B - C, A is B + C2, Pos, Pos) :-ubody396,12750 -ubody(A is B - C, A is B + C2, Pos, Pos) :-ubody396,12750 -ubody(A is B - C, A is B + C2, Pos, Pos) :-ubody396,12750 -ubody_list([], [], [], []).ubody_list400,12823 -ubody_list([], [], [], []).ubody_list400,12823 -ubody_list([G0|T0], [G|T], [PA0|PAT0], [PA|PAT]) :-ubody_list401,12851 -ubody_list([G0|T0], [G|T], [PA0|PAT0], [PA|PAT]) :-ubody_list401,12851 -ubody_list([G0|T0], [G|T], [PA0|PAT0], [PA|PAT]) :-ubody_list401,12851 -conj(Goal, Pos, GoalList, PosList) :-conj406,12960 -conj(Goal, Pos, GoalList, PosList) :-conj406,12960 -conj(Goal, Pos, GoalList, PosList) :-conj406,12960 -conj((A,B), term_position(_,_,_,_,[PA,PB]), GL, TG, PL, TP) :- !,conj409,13044 -conj((A,B), term_position(_,_,_,_,[PA,PB]), GL, TG, PL, TP) :- !,conj409,13044 -conj((A,B), term_position(_,_,_,_,[PA,PB]), GL, TG, PL, TP) :- !,conj409,13044 -conj((A,B), brace_term_position(_,T,PA), GL, TG, PL, TP) :-conj412,13174 -conj((A,B), brace_term_position(_,T,PA), GL, TG, PL, TP) :-conj412,13174 -conj((A,B), brace_term_position(_,T,PA), GL, TG, PL, TP) :-conj412,13174 -conj((!,(S=SR)), F-T, [!,S=SR|TG], TG, [F-T,F1-T1|TP], TP) :-conj417,13329 -conj((!,(S=SR)), F-T, [!,S=SR|TG], TG, [F-T,F1-T1|TP], TP) :-conj417,13329 -conj((!,(S=SR)), F-T, [!,S=SR|TG], TG, [F-T,F1-T1|TP], TP) :-conj417,13329 -conj(A, P, [A|TG], TG, [P|TP], TP).conj420,13415 -conj(A, P, [A|TG], TG, [P|TP], TP).conj420,13415 -mkconj(Goal, Pos, GoalList, PosList) :-mkconj423,13453 -mkconj(Goal, Pos, GoalList, PosList) :-mkconj423,13453 -mkconj(Goal, Pos, GoalList, PosList) :-mkconj423,13453 -mkconj(Conj, term_position(0,0,0,0,[PA,PB]), GL, TG, PL, TP) :-mkconj426,13541 -mkconj(Conj, term_position(0,0,0,0,[PA,PB]), GL, TG, PL, TP) :-mkconj426,13541 -mkconj(Conj, term_position(0,0,0,0,[PA,PB]), GL, TG, PL, TP) :-mkconj426,13541 -mkconj(A0, P0, [A|TG], TG, [P|TP], TP) :-mkconj431,13706 -mkconj(A0, P0, [A|TG], TG, [P|TP], TP) :-mkconj431,13706 -mkconj(A0, P0, [A|TG], TG, [P|TP], TP) :-mkconj431,13706 -pce_method_clause(Head, Body, _:PlHead, PlBody, TermPos0, TermPos) :- !,pce_method_clause449,14148 -pce_method_clause(Head, Body, _:PlHead, PlBody, TermPos0, TermPos) :- !,pce_method_clause449,14148 -pce_method_clause(Head, Body, _:PlHead, PlBody, TermPos0, TermPos) :- !,pce_method_clause449,14148 -pce_method_head_arguments(N, Arity, Head, Msg) :-pce_method_head_arguments475,15161 -pce_method_head_arguments(N, Arity, Head, Msg) :-pce_method_head_arguments475,15161 -pce_method_head_arguments(N, Arity, Head, Msg) :-pce_method_head_arguments475,15161 -pce_method_head_arguments(_, _, _, _).pce_method_head_arguments484,15443 -pce_method_head_arguments(_, _, _, _).pce_method_head_arguments484,15443 -pce_unify_head_arg(V, A) :-pce_unify_head_arg486,15483 -pce_unify_head_arg(V, A) :-pce_unify_head_arg486,15483 -pce_unify_head_arg(V, A) :-pce_unify_head_arg486,15483 -pce_unify_head_arg(A:_=_, A) :- !.pce_unify_head_arg489,15531 -pce_unify_head_arg(A:_=_, A) :- !.pce_unify_head_arg489,15531 -pce_unify_head_arg(A:_=_, A) :- !.pce_unify_head_arg489,15531 -pce_unify_head_arg(A:_, A).pce_unify_head_arg490,15566 -pce_unify_head_arg(A:_, A).pce_unify_head_arg490,15566 -pce_method_body(A0, A, TermPos0, TermPos) :-pce_method_body505,16114 -pce_method_body(A0, A, TermPos0, TermPos) :-pce_method_body505,16114 -pce_method_body(A0, A, TermPos0, TermPos) :-pce_method_body505,16114 -pce_method_body2(::(_,A0), A, TermPos0, TermPos) :- !,pce_method_body2517,16397 -pce_method_body2(::(_,A0), A, TermPos0, TermPos) :- !,pce_method_body2517,16397 -pce_method_body2(::(_,A0), A, TermPos0, TermPos) :- !,pce_method_body2517,16397 -pce_method_body2(A0, A, TermPos0, TermPos) :-pce_method_body2521,16569 -pce_method_body2(A0, A, TermPos0, TermPos) :-pce_method_body2521,16569 -pce_method_body2(A0, A, TermPos0, TermPos) :-pce_method_body2521,16569 -pce_method_body2(A0, A, TermPos0, TermPos) :-pce_method_body2535,16885 -pce_method_body2(A0, A, TermPos0, TermPos) :-pce_method_body2535,16885 -pce_method_body2(A0, A, TermPos0, TermPos) :-pce_method_body2535,16885 -control_op(',').control_op538,16972 -control_op(',').control_op538,16972 -control_op((;)).control_op539,16989 -control_op((;)).control_op539,16989 -control_op((->)).control_op540,17006 -control_op((->)).control_op540,17006 -control_op((*->)).control_op541,17024 -control_op((*->)).control_op541,17024 -expand_goal(G, call(G), P, term_position(0,0,0,0,[P])) :-expand_goal560,17748 -expand_goal(G, call(G), P, term_position(0,0,0,0,[P])) :-expand_goal560,17748 -expand_goal(G, call(G), P, term_position(0,0,0,0,[P])) :-expand_goal560,17748 -expand_goal(G, G, P, P) :-expand_goal562,17825 -expand_goal(G, G, P, P) :-expand_goal562,17825 -expand_goal(G, G, P, P) :-expand_goal562,17825 -expand_goal(M0, M, P0, P) :-expand_goal564,17871 -expand_goal(M0, M, P0, P) :-expand_goal564,17871 -expand_goal(M0, M, P0, P) :-expand_goal564,17871 -expand_goal(A, B, P0, P) :-expand_goal571,18083 -expand_goal(A, B, P0, P) :-expand_goal571,18083 -expand_goal(A, B, P0, P) :-expand_goal571,18083 -expand_goal(A, A, P, P).expand_goal574,18181 -expand_goal(A, A, P, P).expand_goal574,18181 -expand_meta_args([], [], _, _, _).expand_meta_args576,18207 -expand_meta_args([], [], _, _, _).expand_meta_args576,18207 -expand_meta_args([P0|T0], [P|T], I, M0, M) :-expand_meta_args577,18242 -expand_meta_args([P0|T0], [P|T], I, M0, M) :-expand_meta_args577,18242 -expand_meta_args([P0|T0], [P|T], I, M0, M) :-expand_meta_args577,18242 -meta((_ , _)).meta584,18401 -meta((_ , _)).meta584,18401 -meta((_ ; _)).meta585,18418 -meta((_ ; _)).meta585,18418 -meta((_ -> _)).meta586,18435 -meta((_ -> _)).meta586,18435 -meta((_ *-> _)).meta587,18452 -meta((_ *-> _)).meta587,18452 -meta((\+ _)).meta588,18469 -meta((\+ _)).meta588,18469 -meta((not(_))).meta589,18483 -meta((not(_))).meta589,18483 -meta((call(_))).meta590,18499 -meta((call(_))).meta590,18499 -meta((once(_))).meta591,18516 -meta((once(_))).meta591,18516 -meta((ignore(_))).meta592,18533 -meta((ignore(_))).meta592,18533 -meta((forall(_, _))).meta593,18552 -meta((forall(_, _))).meta593,18552 -goal_expansion(send(R, Msg), send_class(R, _, SuperMsg), P, P) :-goal_expansion595,18575 -goal_expansion(send(R, Msg), send_class(R, _, SuperMsg), P, P) :-goal_expansion595,18575 -goal_expansion(send(R, Msg), send_class(R, _, SuperMsg), P, P) :-goal_expansion595,18575 -goal_expansion(get(R, Msg, A), get_class(R, _, SuperMsg, A), P, P) :-goal_expansion599,18731 -goal_expansion(get(R, Msg, A), get_class(R, _, SuperMsg, A), P, P) :-goal_expansion599,18731 -goal_expansion(get(R, Msg, A), get_class(R, _, SuperMsg, A), P, P) :-goal_expansion599,18731 -goal_expansion(send_super(R, Msg), send_class(R, _, Msg), P, P).goal_expansion603,18890 -goal_expansion(send_super(R, Msg), send_class(R, _, Msg), P, P).goal_expansion603,18890 -goal_expansion(get_super(R, Msg, V), get_class(R, _, Msg, V), P, P).goal_expansion604,18955 -goal_expansion(get_super(R, Msg, V), get_class(R, _, Msg, V), P, P).goal_expansion604,18955 -goal_expansion(SendSuperN, send_class(R, _, Msg), P, P) :-goal_expansion605,19024 -goal_expansion(SendSuperN, send_class(R, _, Msg), P, P) :-goal_expansion605,19024 -goal_expansion(SendSuperN, send_class(R, _, Msg), P, P) :-goal_expansion605,19024 -goal_expansion(SendN, send(R, Msg), P, P) :-goal_expansion609,19172 -goal_expansion(SendN, send(R, Msg), P, P) :-goal_expansion609,19172 -goal_expansion(SendN, send(R, Msg), P, P) :-goal_expansion609,19172 -goal_expansion(GetSuperN, get_class(R, _, Msg, Answer), P, P) :-goal_expansion614,19315 -goal_expansion(GetSuperN, get_class(R, _, Msg, Answer), P, P) :-goal_expansion614,19315 -goal_expansion(GetSuperN, get_class(R, _, Msg, Answer), P, P) :-goal_expansion614,19315 -goal_expansion(GetN, get(R, Msg, Answer), P, P) :-goal_expansion619,19503 -goal_expansion(GetN, get(R, Msg, Answer), P, P) :-goal_expansion619,19503 -goal_expansion(GetN, get(R, Msg, Answer), P, P) :-goal_expansion619,19503 -goal_expansion(G0, G, P, P) :-goal_expansion625,19686 -goal_expansion(G0, G, P, P) :-goal_expansion625,19686 -goal_expansion(G0, G, P, P) :-goal_expansion625,19686 -hidden_module(user).hidden_module640,20008 -hidden_module(user).hidden_module640,20008 -hidden_module(system).hidden_module641,20029 -hidden_module(system).hidden_module641,20029 -hidden_module(pce_principal). % should be confighidden_module642,20052 -hidden_module(pce_principal). % should be confighidden_module642,20052 -hidden_module(Module) :- % SWI-Prolog specifichidden_module643,20102 -hidden_module(Module) :- % SWI-Prolog specifichidden_module643,20102 -hidden_module(Module) :- % SWI-Prolog specifichidden_module643,20102 -thaffix(1, st) :- !.thaffix646,20183 -thaffix(1, st) :- !.thaffix646,20183 -thaffix(1, st) :- !.thaffix646,20183 -thaffix(2, nd) :- !.thaffix647,20204 -thaffix(2, nd) :- !.thaffix647,20204 -thaffix(2, nd) :- !.thaffix647,20204 -thaffix(_, th).thaffix648,20225 -thaffix(_, th).thaffix648,20225 -predicate_name(Predicate, PName) :-predicate_name654,20343 -predicate_name(Predicate, PName) :-predicate_name654,20343 -predicate_name(Predicate, PName) :-predicate_name654,20343 -clause_name(Ref, Name) :-clause_name669,20767 -clause_name(Ref, Name) :-clause_name669,20767 -clause_name(Ref, Name) :-clause_name669,20767 -clause_name(Ref, Name) :-clause_name671,20833 -clause_name(Ref, Name) :-clause_name671,20833 -clause_name(Ref, Name) :-clause_name671,20833 -clause_name(_, '').clause_name676,21003 -clause_name(_, '').clause_name676,21003 - -swi/library/prolog_colour.pl,61713 -prolog_colourise_stream(Fd, SourceId, ColourItem) :-prolog_colourise_stream96,3254 -prolog_colourise_stream(Fd, SourceId, ColourItem) :-prolog_colourise_stream96,3254 -prolog_colourise_stream(Fd, SourceId, ColourItem) :-prolog_colourise_stream96,3254 -colourise_stream(Fd, TB) :-colourise_stream106,3505 -colourise_stream(Fd, TB) :-colourise_stream106,3505 -colourise_stream(Fd, TB) :-colourise_stream106,3505 -save_settings(state(Style, Esc)) :-save_settings133,4210 -save_settings(state(Style, Esc)) :-save_settings133,4210 -save_settings(state(Style, Esc)) :-save_settings133,4210 -restore_settings(state(Style, Esc)) :-restore_settings138,4345 -restore_settings(state(Style, Esc)) :-restore_settings138,4345 -restore_settings(state(Style, Esc)) :-restore_settings138,4345 -read_error(Error, TB, Stream, Start) :-read_error147,4590 -read_error(Error, TB, Stream, Start) :-read_error147,4590 -read_error(Error, TB, Stream, Start) :-read_error147,4590 -colour_item(Class, TB, Pos) :-colour_item158,4923 -colour_item(Class, TB, Pos) :-colour_item158,4923 -colour_item(Class, TB, Pos) :-colour_item158,4923 -safe_push_op(P, T, N0) :-safe_push_op171,5231 -safe_push_op(P, T, N0) :-safe_push_op171,5231 -safe_push_op(P, T, N0) :-safe_push_op171,5231 -fix_operators((:- Directive), Src) :-fix_operators186,5595 -fix_operators((:- Directive), Src) :-fix_operators186,5595 -fix_operators((:- Directive), Src) :-fix_operators186,5595 -fix_operators(_, _).fix_operators188,5688 -fix_operators(_, _).fix_operators188,5688 -process_directive(style_check(X), _) :- !,process_directive190,5710 -process_directive(style_check(X), _) :- !,process_directive190,5710 -process_directive(style_check(X), _) :- !,process_directive190,5710 -process_directive(op(P,T,N), _) :- !,process_directive192,5770 -process_directive(op(P,T,N), _) :- !,process_directive192,5770 -process_directive(op(P,T,N), _) :- !,process_directive192,5770 -process_directive(module(_Name, Export), _) :- !,process_directive194,5832 -process_directive(module(_Name, Export), _) :- !,process_directive194,5832 -process_directive(module(_Name, Export), _) :- !,process_directive194,5832 -process_directive(use_module(Spec), Src) :- !,process_directive197,5947 -process_directive(use_module(Spec), Src) :- !,process_directive197,5947 -process_directive(use_module(Spec), Src) :- !,process_directive197,5947 -process_directive(Directive, Src) :-process_directive199,6042 -process_directive(Directive, Src) :-process_directive199,6042 -process_directive(Directive, Src) :-process_directive199,6042 -process_use_module([], _) :- !.process_use_module206,6223 -process_use_module([], _) :- !.process_use_module206,6223 -process_use_module([], _) :- !.process_use_module206,6223 -process_use_module([H|T], Src) :- !,process_use_module207,6255 -process_use_module([H|T], Src) :- !,process_use_module207,6255 -process_use_module([H|T], Src) :- !,process_use_module207,6255 -process_use_module(File, Src) :-process_use_module210,6350 -process_use_module(File, Src) :-process_use_module210,6350 -process_use_module(File, Src) :-process_use_module210,6350 -prolog_colourise_term(Stream, SourceId, ColourItem, Options) :-prolog_colourise_term230,7022 -prolog_colourise_term(Stream, SourceId, ColourItem, Options) :-prolog_colourise_term230,7022 -prolog_colourise_term(Stream, SourceId, ColourItem, Options) :-prolog_colourise_term230,7022 -show_syntax_error(TB, Pos:Message, Range) :-show_syntax_error258,7895 -show_syntax_error(TB, Pos:Message, Range) :-show_syntax_error258,7895 -show_syntax_error(TB, Pos:Message, Range) :-show_syntax_error258,7895 -singleton(Var, TB) :-singleton263,8016 -singleton(Var, TB) :-singleton263,8016 -singleton(Var, TB) :-singleton263,8016 -member_var(V, [_=V2|_]) :-member_var267,8111 -member_var(V, [_=V2|_]) :-member_var267,8111 -member_var(V, [_=V2|_]) :-member_var267,8111 -member_var(V, [_|T]) :-member_var269,8151 -member_var(V, [_|T]) :-member_var269,8151 -member_var(V, [_|T]) :-member_var269,8151 -colourise_term(Term, TB, TermPos, Comments) :-colourise_term274,8247 -colourise_term(Term, TB, TermPos, Comments) :-colourise_term274,8247 -colourise_term(Term, TB, TermPos, Comments) :-colourise_term274,8247 -colourise_comments(-, _).colourise_comments278,8366 -colourise_comments(-, _).colourise_comments278,8366 -colourise_comments([], _).colourise_comments279,8392 -colourise_comments([], _).colourise_comments279,8392 -colourise_comments([H|T], TB) :-colourise_comments280,8419 -colourise_comments([H|T], TB) :-colourise_comments280,8419 -colourise_comments([H|T], TB) :-colourise_comments280,8419 -colourise_comment(Pos-Comment, TB) :-colourise_comment284,8508 -colourise_comment(Pos-Comment, TB) :-colourise_comment284,8508 -colourise_comment(Pos-Comment, TB) :-colourise_comment284,8508 -colourise_term(Term, TB, Pos) :-colourise_term290,8687 -colourise_term(Term, TB, Pos) :-colourise_term290,8687 -colourise_term(Term, TB, Pos) :-colourise_term290,8687 -colourise_term((:- Directive), TB, Pos) :- !,colourise_term319,9881 -colourise_term((:- Directive), TB, Pos) :- !,colourise_term319,9881 -colourise_term((:- Directive), TB, Pos) :- !,colourise_term319,9881 -colourise_term((?- Directive), TB, Pos) :- !,colourise_term323,10030 -colourise_term((?- Directive), TB, Pos) :- !,colourise_term323,10030 -colourise_term((?- Directive), TB, Pos) :- !,colourise_term323,10030 -colourise_term(end_of_file, _, _) :- !.colourise_term325,10118 -colourise_term(end_of_file, _, _) :- !.colourise_term325,10118 -colourise_term(end_of_file, _, _) :- !.colourise_term325,10118 -colourise_term(Fact, TB, Pos) :- !,colourise_term326,10158 -colourise_term(Fact, TB, Pos) :- !,colourise_term326,10158 -colourise_term(Fact, TB, Pos) :- !,colourise_term326,10158 -colourise_extended_head(Head, N, TB, Pos) :-colourise_extended_head336,10480 -colourise_extended_head(Head, N, TB, Pos) :-colourise_extended_head336,10480 -colourise_extended_head(Head, N, TB, Pos) :-colourise_extended_head336,10480 -extend(M:Head, N, M:ExtHead) :-extend340,10595 -extend(M:Head, N, M:ExtHead) :-extend340,10595 -extend(M:Head, N, M:ExtHead) :-extend340,10595 -extend(Head, N, ExtHead) :-extend343,10672 -extend(Head, N, ExtHead) :-extend343,10672 -extend(Head, N, ExtHead) :-extend343,10672 -extend(Head, _, Head).extend349,10804 -extend(Head, _, Head).extend349,10804 -colourise_clause_head(Head, TB, Pos) :-colourise_clause_head352,10829 -colourise_clause_head(Head, TB, Pos) :-colourise_clause_head352,10829 -colourise_clause_head(Head, TB, Pos) :-colourise_clause_head352,10829 -colourise_clause_head(Head, TB, Pos) :-colourise_clause_head361,11124 -colourise_clause_head(Head, TB, Pos) :-colourise_clause_head361,11124 -colourise_clause_head(Head, TB, Pos) :-colourise_clause_head361,11124 -colourise_extern_head(Head, M, TB, Pos) :-colourise_extern_head372,11483 -colourise_extern_head(Head, M, TB, Pos) :-colourise_extern_head372,11483 -colourise_extern_head(Head, M, TB, Pos) :-colourise_extern_head372,11483 -colour_method_head(SGHead, TB, Pos) :-colour_method_head377,11638 -colour_method_head(SGHead, TB, Pos) :-colour_method_head377,11638 -colour_method_head(SGHead, TB, Pos) :-colour_method_head377,11638 -functor_position(term_position(_,_,FF,FT,ArgPos), FF-FT, ArgPos) :- !.functor_position389,12017 -functor_position(term_position(_,_,FF,FT,ArgPos), FF-FT, ArgPos) :- !.functor_position389,12017 -functor_position(term_position(_,_,FF,FT,ArgPos), FF-FT, ArgPos) :- !.functor_position389,12017 -functor_position(list_position(F,_T,Elms,none), F-FT, Elms) :- !,functor_position390,12088 -functor_position(list_position(F,_T,Elms,none), F-FT, Elms) :- !,functor_position390,12088 -functor_position(list_position(F,_T,Elms,none), F-FT, Elms) :- !,functor_position390,12088 -functor_position(Pos, Pos, []).functor_position392,12168 -functor_position(Pos, Pos, []).functor_position392,12168 -colourise_directive((A,B), TB, term_position(_,_,_,_,[PA,PB])) :- !,colourise_directive399,12283 -colourise_directive((A,B), TB, term_position(_,_,_,_,[PA,PB])) :- !,colourise_directive399,12283 -colourise_directive((A,B), TB, term_position(_,_,_,_,[PA,PB])) :- !,colourise_directive399,12283 -colourise_directive(Body, TB, Pos) :-colourise_directive402,12418 -colourise_directive(Body, TB, Pos) :-colourise_directive402,12418 -colourise_directive(Body, TB, Pos) :-colourise_directive402,12418 -colourise_directive(Body, TB, Pos) :-colourise_directive412,12759 -colourise_directive(Body, TB, Pos) :-colourise_directive412,12759 -colourise_directive(Body, TB, Pos) :-colourise_directive412,12759 -colourise_body(Body, TB, Pos) :-colourise_body420,12904 -colourise_body(Body, TB, Pos) :-colourise_body420,12904 -colourise_body(Body, TB, Pos) :-colourise_body420,12904 -colourise_body(Body, Origin, TB, Pos) :-colourise_body423,12974 -colourise_body(Body, Origin, TB, Pos) :-colourise_body423,12974 -colourise_body(Body, Origin, TB, Pos) :-colourise_body423,12974 -colourise_method_body(Body, TB, Pos) :- % deal with pri(::) < 1000colourise_method_body438,13416 -colourise_method_body(Body, TB, Pos) :- % deal with pri(::) < 1000colourise_method_body438,13416 -colourise_method_body(Body, TB, Pos) :- % deal with pri(::) < 1000colourise_method_body438,13416 -colourise_method_body(Body, TB, Pos) :-colourise_method_body447,13657 -colourise_method_body(Body, TB, Pos) :-colourise_method_body447,13657 -colourise_method_body(Body, TB, Pos) :-colourise_method_body447,13657 -control_op(',').control_op450,13730 -control_op(',').control_op450,13730 -control_op((;)).control_op451,13747 -control_op((;)).control_op451,13747 -control_op((->)).control_op452,13764 -control_op((->)).control_op452,13764 -control_op((*->)).control_op453,13782 -control_op((*->)).control_op453,13782 -colourise_goals(Body, Origin, TB, term_position(_,_,_,_,ArgPos)) :-colourise_goals455,13802 -colourise_goals(Body, Origin, TB, term_position(_,_,_,_,ArgPos)) :-colourise_goals455,13802 -colourise_goals(Body, Origin, TB, term_position(_,_,_,_,ArgPos)) :-colourise_goals455,13802 -colourise_goals(Goal, Origin, TB, Pos) :-colourise_goals458,13945 -colourise_goals(Goal, Origin, TB, Pos) :-colourise_goals458,13945 -colourise_goals(Goal, Origin, TB, Pos) :-colourise_goals458,13945 -colourise_subgoals([], _, _, _, _).colourise_subgoals461,14028 -colourise_subgoals([], _, _, _, _).colourise_subgoals461,14028 -colourise_subgoals([Pos|T], N, Body, Origin, TB) :-colourise_subgoals462,14064 -colourise_subgoals([Pos|T], N, Body, Origin, TB) :-colourise_subgoals462,14064 -colourise_subgoals([Pos|T], N, Body, Origin, TB) :-colourise_subgoals462,14064 -colourise_dcg(Body, Head, TB, Pos) :-colourise_dcg472,14320 -colourise_dcg(Body, Head, TB, Pos) :-colourise_dcg472,14320 -colourise_dcg(Body, Head, TB, Pos) :-colourise_dcg472,14320 -colourise_dcg_goals(Var, _, TB, Pos) :-colourise_dcg_goals477,14459 -colourise_dcg_goals(Var, _, TB, Pos) :-colourise_dcg_goals477,14459 -colourise_dcg_goals(Var, _, TB, Pos) :-colourise_dcg_goals477,14459 -colourise_dcg_goals({Body}, Origin, TB, brace_term_position(F,T,Arg)) :- !,colourise_dcg_goals480,14552 -colourise_dcg_goals({Body}, Origin, TB, brace_term_position(F,T,Arg)) :- !,colourise_dcg_goals480,14552 -colourise_dcg_goals({Body}, Origin, TB, brace_term_position(F,T,Arg)) :- !,colourise_dcg_goals480,14552 -colourise_dcg_goals([], _, TB, Pos) :- !,colourise_dcg_goals483,14704 -colourise_dcg_goals([], _, TB, Pos) :- !,colourise_dcg_goals483,14704 -colourise_dcg_goals([], _, TB, Pos) :- !,colourise_dcg_goals483,14704 -colourise_dcg_goals(List, _, TB, Pos) :-colourise_dcg_goals485,14780 -colourise_dcg_goals(List, _, TB, Pos) :-colourise_dcg_goals485,14780 -colourise_dcg_goals(List, _, TB, Pos) :-colourise_dcg_goals485,14780 -colourise_dcg_goals(Body, Origin, TB, term_position(_,_,_,_,ArgPos)) :-colourise_dcg_goals489,14910 -colourise_dcg_goals(Body, Origin, TB, term_position(_,_,_,_,ArgPos)) :-colourise_dcg_goals489,14910 -colourise_dcg_goals(Body, Origin, TB, term_position(_,_,_,_,ArgPos)) :-colourise_dcg_goals489,14910 -colourise_dcg_goals(Goal, Origin, TB, Pos) :-colourise_dcg_goals492,15061 -colourise_dcg_goals(Goal, Origin, TB, Pos) :-colourise_dcg_goals492,15061 -colourise_dcg_goals(Goal, Origin, TB, Pos) :-colourise_dcg_goals492,15061 -colourise_dcg_subgoals([], _, _, _, _).colourise_dcg_subgoals496,15189 -colourise_dcg_subgoals([], _, _, _, _).colourise_dcg_subgoals496,15189 -colourise_dcg_subgoals([Pos|T], N, Body, Origin, TB) :-colourise_dcg_subgoals497,15229 -colourise_dcg_subgoals([Pos|T], N, Body, Origin, TB) :-colourise_dcg_subgoals497,15229 -colourise_dcg_subgoals([Pos|T], N, Body, Origin, TB) :-colourise_dcg_subgoals497,15229 -dcg_extend(Term, _) :-dcg_extend503,15414 -dcg_extend(Term, _) :-dcg_extend503,15414 -dcg_extend(Term, _) :-dcg_extend503,15414 -dcg_extend(M:Term, M:Goal) :-dcg_extend505,15458 -dcg_extend(M:Term, M:Goal) :-dcg_extend505,15458 -dcg_extend(M:Term, M:Goal) :-dcg_extend505,15458 -dcg_extend(Term, Goal) :-dcg_extend507,15513 -dcg_extend(Term, Goal) :-dcg_extend507,15513 -dcg_extend(Term, Goal) :-dcg_extend507,15513 -colourise_dcg_goal(!, Origin, TB, TermPos) :- !,colourise_dcg_goal515,15669 -colourise_dcg_goal(!, Origin, TB, TermPos) :- !,colourise_dcg_goal515,15669 -colourise_dcg_goal(!, Origin, TB, TermPos) :- !,colourise_dcg_goal515,15669 -colourise_dcg_goal(Goal, Origin, TB, TermPos) :-colourise_dcg_goal517,15759 -colourise_dcg_goal(Goal, Origin, TB, TermPos) :-colourise_dcg_goal517,15759 -colourise_dcg_goal(Goal, Origin, TB, TermPos) :-colourise_dcg_goal517,15759 -colourise_dcg_goal(Goal, _, TB, Pos) :-colourise_dcg_goal520,15886 -colourise_dcg_goal(Goal, _, TB, Pos) :-colourise_dcg_goal520,15886 -colourise_dcg_goal(Goal, _, TB, Pos) :-colourise_dcg_goal520,15886 -colourise_goal(Goal, _, TB, list_position(F,T,Elms,_)) :- !,colourise_goal529,16089 -colourise_goal(Goal, _, TB, list_position(F,T,Elms,_)) :- !,colourise_goal529,16089 -colourise_goal(Goal, _, TB, list_position(F,T,Elms,_)) :- !,colourise_goal529,16089 -colourise_goal(Goal, Origin, TB, Pos) :-colourise_goal535,16308 -colourise_goal(Goal, Origin, TB, Pos) :-colourise_goal535,16308 -colourise_goal(Goal, Origin, TB, Pos) :-colourise_goal535,16308 -colourise_goal(Module:Goal, _Origin, TB, term_position(_,_,_,_,[PM,PG])) :- !,colourise_goal545,16651 -colourise_goal(Module:Goal, _Origin, TB, term_position(_,_,_,_,[PM,PG])) :- !,colourise_goal545,16651 -colourise_goal(Module:Goal, _Origin, TB, term_position(_,_,_,_,[PM,PG])) :- !,colourise_goal545,16651 -colourise_goal(Goal, Origin, TB, Pos) :-colourise_goal553,16924 -colourise_goal(Goal, Origin, TB, Pos) :-colourise_goal553,16924 -colourise_goal(Goal, Origin, TB, Pos) :-colourise_goal553,16924 -colourise_goal_args(Goal, TB, term_position(_,_,_,_,ArgPos)) :-colourise_goal_args567,17322 -colourise_goal_args(Goal, TB, term_position(_,_,_,_,ArgPos)) :-colourise_goal_args567,17322 -colourise_goal_args(Goal, TB, term_position(_,_,_,_,ArgPos)) :-colourise_goal_args567,17322 -colourise_goal_args(Goal, TB, Pos) :-colourise_goal_args571,17508 -colourise_goal_args(Goal, TB, Pos) :-colourise_goal_args571,17508 -colourise_goal_args(Goal, TB, Pos) :-colourise_goal_args571,17508 -colourise_goal_args(_, _, _). % no argumentscolourise_goal_args575,17662 -colourise_goal_args(_, _, _). % no argumentscolourise_goal_args575,17662 -colourise_meta_args(_, _, _, _, []) :- !.colourise_meta_args577,17709 -colourise_meta_args(_, _, _, _, []) :- !.colourise_meta_args577,17709 -colourise_meta_args(_, _, _, _, []) :- !.colourise_meta_args577,17709 -colourise_meta_args(N, Goal, MetaArgs, TB, [P0|PT]) :-colourise_meta_args578,17751 -colourise_meta_args(N, Goal, MetaArgs, TB, [P0|PT]) :-colourise_meta_args578,17751 -colourise_meta_args(N, Goal, MetaArgs, TB, [P0|PT]) :-colourise_meta_args578,17751 -colourise_meta_arg(MetaSpec, Arg, TB, Pos) :-colourise_meta_arg585,17964 -colourise_meta_arg(MetaSpec, Arg, TB, Pos) :-colourise_meta_arg585,17964 -colourise_meta_arg(MetaSpec, Arg, TB, Pos) :-colourise_meta_arg585,17964 -colourise_meta_arg(_, Arg, TB, Pos) :-colourise_meta_arg588,18109 -colourise_meta_arg(_, Arg, TB, Pos) :-colourise_meta_arg588,18109 -colourise_meta_arg(_, Arg, TB, Pos) :-colourise_meta_arg588,18109 -meta_args(Goal, VarGoal) :-meta_args601,18501 -meta_args(Goal, VarGoal) :-meta_args601,18501 -meta_args(Goal, VarGoal) :-meta_args601,18501 -instantiate_meta([]).instantiate_meta608,18672 -instantiate_meta([]).instantiate_meta608,18672 -instantiate_meta([H|T]) :-instantiate_meta609,18694 -instantiate_meta([H|T]) :-instantiate_meta609,18694 -instantiate_meta([H|T]) :-instantiate_meta609,18694 -expand_meta(MetaSpec, Goal, Goal) :-expand_meta622,18926 -expand_meta(MetaSpec, Goal, Goal) :-expand_meta622,18926 -expand_meta(MetaSpec, Goal, Goal) :-expand_meta622,18926 -expand_meta(MetaSpec, M:Goal, M:Expanded) :-expand_meta624,18979 -expand_meta(MetaSpec, M:Goal, M:Expanded) :-expand_meta624,18979 -expand_meta(MetaSpec, M:Goal, M:Expanded) :-expand_meta624,18979 -expand_meta(MetaSpec, Goal, Expanded) :-expand_meta627,19077 -expand_meta(MetaSpec, Goal, Expanded) :-expand_meta627,19077 -expand_meta(MetaSpec, Goal, Expanded) :-expand_meta627,19077 -colourise_setof(Var^G, TB, term_position(_,_,FF,FT,[VP,GP])) :- !,colourise_setof639,19335 -colourise_setof(Var^G, TB, term_position(_,_,FF,FT,[VP,GP])) :- !,colourise_setof639,19335 -colourise_setof(Var^G, TB, term_position(_,_,FF,FT,[VP,GP])) :- !,colourise_setof639,19335 -colourise_setof(Term, TB, Pos) :-colourise_setof643,19500 -colourise_setof(Term, TB, Pos) :-colourise_setof643,19500 -colourise_setof(Term, TB, Pos) :-colourise_setof643,19500 -colourise_db((Head:-_Body), TB, term_position(_,_,_,_,[HP,_])) :- !,colourise_db651,19682 -colourise_db((Head:-_Body), TB, term_position(_,_,_,_,[HP,_])) :- !,colourise_db651,19682 -colourise_db((Head:-_Body), TB, term_position(_,_,_,_,[HP,_])) :- !,colourise_db651,19682 -colourise_db(Module:Head, TB, term_position(_,_,_,_,[MP,HP])) :- !,colourise_db653,19780 -colourise_db(Module:Head, TB, term_position(_,_,_,_,[MP,HP])) :- !,colourise_db653,19780 -colourise_db(Module:Head, TB, term_position(_,_,_,_,[MP,HP])) :- !,colourise_db653,19780 -colourise_db(Head, TB, Pos) :-colourise_db661,20064 -colourise_db(Head, TB, Pos) :-colourise_db661,20064 -colourise_db(Head, TB, Pos) :-colourise_db661,20064 -colourise_options(Goal, TB, ArgPos) :-colourise_options669,20219 -colourise_options(Goal, TB, ArgPos) :-colourise_options669,20219 -colourise_options(Goal, TB, ArgPos) :-colourise_options669,20219 -colourise_option_list(_, _, _, [], none).colourise_option_list706,21358 -colourise_option_list(_, _, _, [], none).colourise_option_list706,21358 -colourise_option_list(Tail, _, TB, [], TailPos) :-colourise_option_list707,21400 -colourise_option_list(Tail, _, TB, [], TailPos) :-colourise_option_list707,21400 -colourise_option_list(Tail, _, TB, [], TailPos) :-colourise_option_list707,21400 -colourise_option_list([H|T], OptionDecl, TB, [HPos|TPos], TailPos) :-colourise_option_list709,21491 -colourise_option_list([H|T], OptionDecl, TB, [HPos|TPos], TailPos) :-colourise_option_list709,21491 -colourise_option_list([H|T], OptionDecl, TB, [HPos|TPos], TailPos) :-colourise_option_list709,21491 -colourise_option(Opt, _, TB, Pos) :-colourise_option713,21664 -colourise_option(Opt, _, TB, Pos) :-colourise_option713,21664 -colourise_option(Opt, _, TB, Pos) :-colourise_option713,21664 -colourise_option(Opt, OptionDecl, TB, term_position(_,_,FF,FT,ValPosList)) :- !,colourise_option716,21750 -colourise_option(Opt, OptionDecl, TB, term_position(_,_,FF,FT,ValPosList)) :- !,colourise_option716,21750 -colourise_option(Opt, OptionDecl, TB, term_position(_,_,FF,FT,ValPosList)) :- !,colourise_option716,21750 -colourise_option(_, _, TB, Pos) :-colourise_option726,22130 -colourise_option(_, _, TB, Pos) :-colourise_option726,22130 -colourise_option(_, _, TB, Pos) :-colourise_option726,22130 -colour_option_values([], [], _, _).colour_option_values729,22209 -colour_option_values([], [], _, _).colour_option_values729,22209 -colour_option_values([V0|TV], [T0|TT], TB, [P0|TP]) :-colour_option_values730,22245 -colour_option_values([V0|TV], [T0|TT], TB, [P0|TP]) :-colour_option_values730,22245 -colour_option_values([V0|TV], [T0|TT], TB, [P0|TP]) :-colour_option_values730,22245 -colourise_files(List, TB, list_position(_,_,Elms,_)) :- !,colourise_files750,22705 -colourise_files(List, TB, list_position(_,_,Elms,_)) :- !,colourise_files750,22705 -colourise_files(List, TB, list_position(_,_,Elms,_)) :- !,colourise_files750,22705 -colourise_files(M:Spec, TB, term_position(_,_,_,_,[MP,SP])) :- !,colourise_files752,22802 -colourise_files(M:Spec, TB, term_position(_,_,_,_,[MP,SP])) :- !,colourise_files752,22802 -colourise_files(M:Spec, TB, term_position(_,_,_,_,[MP,SP])) :- !,colourise_files752,22802 -colourise_files(Var, TB, P) :-colourise_files755,22933 -colourise_files(Var, TB, P) :-colourise_files755,22933 -colourise_files(Var, TB, P) :-colourise_files755,22933 -colourise_files(Spec0, TB, Pos) :-colourise_files758,23004 -colourise_files(Spec0, TB, Pos) :-colourise_files758,23004 -colourise_files(Spec0, TB, Pos) :-colourise_files758,23004 -colourise_file_list([], _, _).colourise_file_list767,23296 -colourise_file_list([], _, _).colourise_file_list767,23296 -colourise_file_list([H|T], TB, [PH|PT]) :-colourise_file_list768,23327 -colourise_file_list([H|T], TB, [PH|PT]) :-colourise_file_list768,23327 -colourise_file_list([H|T], TB, [PH|PT]) :-colourise_file_list768,23327 -colourise_directory(Spec, TB, Pos) :-colourise_directory777,23536 -colourise_directory(Spec, TB, Pos) :-colourise_directory777,23536 -colourise_directory(Spec, TB, Pos) :-colourise_directory777,23536 -colourise_class(ClassName, TB, Pos) :-colourise_class791,23864 -colourise_class(ClassName, TB, Pos) :-colourise_class791,23864 -colourise_class(ClassName, TB, Pos) :-colourise_class791,23864 -classify_class(SourceId, Name, Class) :-classify_class798,24114 -classify_class(SourceId, Name, Class) :-classify_class798,24114 -classify_class(SourceId, Name, Class) :-classify_class798,24114 -classify_class(_, Name, Class) :-classify_class801,24246 -classify_class(_, Name, Class) :-classify_class801,24246 -classify_class(_, Name, Class) :-classify_class801,24246 -colourise_term_args(_, _, _).colourise_term_args812,24520 -colourise_term_args(_, _, _).colourise_term_args812,24520 -colourise_term_args([], _, _, _).colourise_term_args814,24551 -colourise_term_args([], _, _, _).colourise_term_args814,24551 -colourise_term_args([Pos|T], N, Term, TB) :-colourise_term_args815,24585 -colourise_term_args([Pos|T], N, Term, TB) :-colourise_term_args815,24585 -colourise_term_args([Pos|T], N, Term, TB) :-colourise_term_args815,24585 -colourise_term_arg(Var, TB, Pos) :- % variablecolourise_term_arg821,24739 -colourise_term_arg(Var, TB, Pos) :- % variablecolourise_term_arg821,24739 -colourise_term_arg(Var, TB, Pos) :- % variablecolourise_term_arg821,24739 -colourise_term_arg(List, TB, list_position(_, _, Elms, Tail)) :- !,colourise_term_arg827,24898 -colourise_term_arg(List, TB, list_position(_, _, Elms, Tail)) :- !,colourise_term_arg827,24898 -colourise_term_arg(List, TB, list_position(_, _, Elms, Tail)) :- !,colourise_term_arg827,24898 -colourise_term_arg(Compound, TB, Pos) :- % compoundcolourise_term_arg829,25027 -colourise_term_arg(Compound, TB, Pos) :- % compoundcolourise_term_arg829,25027 -colourise_term_arg(Compound, TB, Pos) :- % compoundcolourise_term_arg829,25027 -colourise_term_arg(_, TB, string_position(F, T)) :- !, % stringcolourise_term_arg832,25145 -colourise_term_arg(_, TB, string_position(F, T)) :- !, % stringcolourise_term_arg832,25145 -colourise_term_arg(_, TB, string_position(F, T)) :- !, % stringcolourise_term_arg832,25145 -colourise_term_arg(Atom, TB, Pos) :- % single quoted atomcolourise_term_arg834,25240 -colourise_term_arg(Atom, TB, Pos) :- % single quoted atomcolourise_term_arg834,25240 -colourise_term_arg(Atom, TB, Pos) :- % single quoted atomcolourise_term_arg834,25240 -colourise_term_arg(_Arg, _TB, _Pos) :-colourise_term_arg837,25345 -colourise_term_arg(_Arg, _TB, _Pos) :-colourise_term_arg837,25345 -colourise_term_arg(_Arg, _TB, _Pos) :-colourise_term_arg837,25345 -colourise_list_args([HP|TP], Tail, [H|T], TB, How) :-colourise_list_args840,25392 -colourise_list_args([HP|TP], Tail, [H|T], TB, How) :-colourise_list_args840,25392 -colourise_list_args([HP|TP], Tail, [H|T], TB, How) :-colourise_list_args840,25392 -colourise_list_args([], none, _, _, _) :- !.colourise_list_args843,25523 -colourise_list_args([], none, _, _, _) :- !.colourise_list_args843,25523 -colourise_list_args([], none, _, _, _) :- !.colourise_list_args843,25523 -colourise_list_args([], TP, T, TB, How) :-colourise_list_args844,25568 -colourise_list_args([], TP, T, TB, How) :-colourise_list_args844,25568 -colourise_list_args([], TP, T, TB, How) :-colourise_list_args844,25568 -colourise_exports([], _, _) :- !.colourise_exports853,25806 -colourise_exports([], _, _) :- !.colourise_exports853,25806 -colourise_exports([], _, _) :- !.colourise_exports853,25806 -colourise_exports(List, TB, list_position(_,_,ElmPos,Tail)) :- !,colourise_exports854,25840 -colourise_exports(List, TB, list_position(_,_,ElmPos,Tail)) :- !,colourise_exports854,25840 -colourise_exports(List, TB, list_position(_,_,ElmPos,Tail)) :- !,colourise_exports854,25840 -colourise_exports(_, TB, Pos) :-colourise_exports860,26022 -colourise_exports(_, TB, Pos) :-colourise_exports860,26022 -colourise_exports(_, TB, Pos) :-colourise_exports860,26022 -colourise_exports2([G0|GT], TB, [P0|PT]) :- !,colourise_exports2863,26097 -colourise_exports2([G0|GT], TB, [P0|PT]) :- !,colourise_exports2863,26097 -colourise_exports2([G0|GT], TB, [P0|PT]) :- !,colourise_exports2863,26097 -colourise_exports2(_, _, _).colourise_exports2866,26213 -colourise_exports2(_, _, _).colourise_exports2866,26213 -colourise_imports(List, File, TB, Pos) :-colourise_imports873,26356 -colourise_imports(List, File, TB, Pos) :-colourise_imports873,26356 -colourise_imports(List, File, TB, Pos) :-colourise_imports873,26356 -colourise_imports([], _, _, _, _).colourise_imports881,26590 -colourise_imports([], _, _, _, _).colourise_imports881,26590 -colourise_imports(List, File, Public, TB, list_position(_,_,ElmPos,Tail)) :- !,colourise_imports882,26625 -colourise_imports(List, File, Public, TB, list_position(_,_,ElmPos,Tail)) :- !,colourise_imports882,26625 -colourise_imports(List, File, Public, TB, list_position(_,_,ElmPos,Tail)) :- !,colourise_imports882,26625 -colourise_imports(_, _, _, TB, Pos) :-colourise_imports892,27020 -colourise_imports(_, _, _, TB, Pos) :-colourise_imports892,27020 -colourise_imports(_, _, _, TB, Pos) :-colourise_imports892,27020 -colourise_imports2([G0|GT], File, Public, TB, [P0|PT]) :- !,colourise_imports2895,27101 -colourise_imports2([G0|GT], File, Public, TB, [P0|PT]) :- !,colourise_imports2895,27101 -colourise_imports2([G0|GT], File, Public, TB, [P0|PT]) :- !,colourise_imports2895,27101 -colourise_imports2(_, _, _, _, _).colourise_imports2898,27246 -colourise_imports2(_, _, _, _, _).colourise_imports2898,27246 -colourise_import(PI as Name, File, TB, term_position(_,_,FF,FT,[PP,NP])) :-colourise_import901,27283 -colourise_import(PI as Name, File, TB, term_position(_,_,FF,FT,[PP,NP])) :-colourise_import901,27283 -colourise_import(PI as Name, File, TB, term_position(_,_,FF,FT,[PP,NP])) :-colourise_import901,27283 -colourise_import(PI, _, TB, Pos) :-colourise_import909,27621 -colourise_import(PI, _, TB, Pos) :-colourise_import909,27621 -colourise_import(PI, _, TB, Pos) :-colourise_import909,27621 -colourise_declarations(Last, TB, Pos) :-colourise_declarations922,27992 -colourise_declarations(Last, TB, Pos) :-colourise_declarations922,27992 -colourise_declarations(Last, TB, Pos) :-colourise_declarations922,27992 -colourise_declaration(PI, TB, Pos) :-colourise_declaration925,28073 -colourise_declaration(PI, TB, Pos) :-colourise_declaration925,28073 -colourise_declaration(PI, TB, Pos) :-colourise_declaration925,28073 -colourise_declaration(op(_,_,_), TB, Pos) :-colourise_declaration934,28420 -colourise_declaration(op(_,_,_), TB, Pos) :-colourise_declaration934,28420 -colourise_declaration(op(_,_,_), TB, Pos) :-colourise_declaration934,28420 -colourise_declaration(_, TB, Pos) :-colourise_declaration936,28507 -colourise_declaration(_, TB, Pos) :-colourise_declaration936,28507 -colourise_declaration(_, TB, Pos) :-colourise_declaration936,28507 -pi_to_term(Name/Arity, Term) :-pi_to_term939,28600 -pi_to_term(Name/Arity, Term) :-pi_to_term939,28600 -pi_to_term(Name/Arity, Term) :-pi_to_term939,28600 -pi_to_term(Name//Arity0, Term) :-pi_to_term942,28693 -pi_to_term(Name//Arity0, Term) :-pi_to_term942,28693 -pi_to_term(Name//Arity0, Term) :-pi_to_term942,28693 -colourise_prolog_flag_name(Name, TB, Pos) :-colourise_prolog_flag_name951,28901 -colourise_prolog_flag_name(Name, TB, Pos) :-colourise_prolog_flag_name951,28901 -colourise_prolog_flag_name(Name, TB, Pos) :-colourise_prolog_flag_name951,28901 -colourise_prolog_flag_name(Name, TB, Pos) :-colourise_prolog_flag_name957,29089 -colourise_prolog_flag_name(Name, TB, Pos) :-colourise_prolog_flag_name957,29089 -colourise_prolog_flag_name(Name, TB, Pos) :-colourise_prolog_flag_name957,29089 -body_compiled((_,_)).body_compiled969,29350 -body_compiled((_,_)).body_compiled969,29350 -body_compiled((_->_)).body_compiled970,29372 -body_compiled((_->_)).body_compiled970,29372 -body_compiled((_*->_)).body_compiled971,29395 -body_compiled((_*->_)).body_compiled971,29395 -body_compiled((_;_)).body_compiled972,29419 -body_compiled((_;_)).body_compiled972,29419 -body_compiled(\+_).body_compiled973,29441 -body_compiled(\+_).body_compiled973,29441 -goal_classification(_, Goal, _, meta) :-goal_classification980,29623 -goal_classification(_, Goal, _, meta) :-goal_classification980,29623 -goal_classification(_, Goal, _, meta) :-goal_classification980,29623 -goal_classification(_, Goal, Origin, recursion) :-goal_classification982,29679 -goal_classification(_, Goal, Origin, recursion) :-goal_classification982,29679 -goal_classification(_, Goal, Origin, recursion) :-goal_classification982,29679 -goal_classification(TB, Goal, _, How) :-goal_classification986,29810 -goal_classification(TB, Goal, _, How) :-goal_classification986,29810 -goal_classification(TB, Goal, _, How) :-goal_classification986,29810 -goal_classification(_TB, Goal, _, Class) :-goal_classification990,29948 -goal_classification(_TB, Goal, _, Class) :-goal_classification990,29948 -goal_classification(_TB, Goal, _, Class) :-goal_classification990,29948 -goal_classification(_TB, _Goal, _, undefined).goal_classification992,30030 -goal_classification(_TB, _Goal, _, undefined).goal_classification992,30030 -goal_classification(Goal, built_in) :-goal_classification998,30175 -goal_classification(Goal, built_in) :-goal_classification998,30175 -goal_classification(Goal, built_in) :-goal_classification998,30175 -goal_classification(Goal, autoload) :- % SWI-Prologgoal_classification1000,30244 -goal_classification(Goal, autoload) :- % SWI-Prologgoal_classification1000,30244 -goal_classification(Goal, autoload) :- % SWI-Prologgoal_classification1000,30244 -goal_classification(Goal, global) :- % SWI-Prologgoal_classification1003,30364 -goal_classification(Goal, global) :- % SWI-Prologgoal_classification1003,30364 -goal_classification(Goal, global) :- % SWI-Prologgoal_classification1003,30364 -goal_classification(SS, expanded) :- % XPCE (TBD)goal_classification1005,30451 -goal_classification(SS, expanded) :- % XPCE (TBD)goal_classification1005,30451 -goal_classification(SS, expanded) :- % XPCE (TBD)goal_classification1005,30451 -goal_classification(SS, expanded) :- % XPCE (TBD)goal_classification1008,30542 -goal_classification(SS, expanded) :- % XPCE (TBD)goal_classification1008,30542 -goal_classification(SS, expanded) :- % XPCE (TBD)goal_classification1008,30542 -classify_head(TB, Goal, exported) :-classify_head1012,30633 -classify_head(TB, Goal, exported) :-classify_head1012,30633 -classify_head(TB, Goal, exported) :-classify_head1012,30633 -classify_head(_TB, Goal, hook) :-classify_head1015,30744 -classify_head(_TB, Goal, hook) :-classify_head1015,30744 -classify_head(_TB, Goal, hook) :-classify_head1015,30744 -classify_head(TB, Goal, hook) :-classify_head1017,30799 -classify_head(TB, Goal, hook) :-classify_head1017,30799 -classify_head(TB, Goal, hook) :-classify_head1017,30799 -classify_head(TB, Goal, unreferenced) :-classify_head1021,30921 -classify_head(TB, Goal, unreferenced) :-classify_head1021,30921 -classify_head(TB, Goal, unreferenced) :-classify_head1021,30921 -classify_head(TB, Goal, How) :-classify_head1024,31055 -classify_head(TB, Goal, How) :-classify_head1024,31055 -classify_head(TB, Goal, How) :-classify_head1024,31055 -classify_head(_TB, Goal, built_in) :-classify_head1027,31165 -classify_head(_TB, Goal, built_in) :-classify_head1027,31165 -classify_head(_TB, Goal, built_in) :-classify_head1027,31165 -classify_head(_TB, _Goal, undefined).classify_head1029,31233 -classify_head(_TB, _Goal, undefined).classify_head1029,31233 -built_in_predicate(Goal) :-built_in_predicate1031,31272 -built_in_predicate(Goal) :-built_in_predicate1031,31272 -built_in_predicate(Goal) :-built_in_predicate1031,31272 -built_in_predicate(module(_, _)).built_in_predicate1033,31347 -built_in_predicate(module(_, _)).built_in_predicate1033,31347 -built_in_predicate(if(_)).built_in_predicate1034,31381 -built_in_predicate(if(_)).built_in_predicate1034,31381 -built_in_predicate(elif(_)).built_in_predicate1035,31408 -built_in_predicate(elif(_)).built_in_predicate1035,31408 -built_in_predicate(else).built_in_predicate1036,31437 -built_in_predicate(else).built_in_predicate1036,31437 -built_in_predicate(endif).built_in_predicate1037,31463 -built_in_predicate(endif).built_in_predicate1037,31463 -goal_colours(module(_,_), built_in-[identifier,exports]).goal_colours1041,31532 -goal_colours(module(_,_), built_in-[identifier,exports]).goal_colours1041,31532 -goal_colours(use_module(_), built_in-[file]).goal_colours1042,31595 -goal_colours(use_module(_), built_in-[file]).goal_colours1042,31595 -goal_colours(use_module(File,_), built_in-[file,imports(File)]).goal_colours1043,31646 -goal_colours(use_module(File,_), built_in-[file,imports(File)]).goal_colours1043,31646 -goal_colours(reexport(_), built_in-[file]).goal_colours1044,31715 -goal_colours(reexport(_), built_in-[file]).goal_colours1044,31715 -goal_colours(reexport(File,_), built_in-[file,imports(File)]).goal_colours1045,31764 -goal_colours(reexport(File,_), built_in-[file,imports(File)]).goal_colours1045,31764 -goal_colours(dynamic(_), built_in-[predicates]).goal_colours1046,31833 -goal_colours(dynamic(_), built_in-[predicates]).goal_colours1046,31833 -goal_colours(thread_local(_), built_in-[predicates]).goal_colours1047,31887 -goal_colours(thread_local(_), built_in-[predicates]).goal_colours1047,31887 -goal_colours(module_transparent(_), built_in-[predicates]).goal_colours1048,31946 -goal_colours(module_transparent(_), built_in-[predicates]).goal_colours1048,31946 -goal_colours(multifile(_), built_in-[predicates]).goal_colours1049,32007 -goal_colours(multifile(_), built_in-[predicates]).goal_colours1049,32007 -goal_colours(volatile(_), built_in-[predicates]).goal_colours1050,32063 -goal_colours(volatile(_), built_in-[predicates]).goal_colours1050,32063 -goal_colours(public(_), built_in-[predicates]).goal_colours1051,32118 -goal_colours(public(_), built_in-[predicates]).goal_colours1051,32118 -goal_colours(consult(_), built_in-[file]).goal_colours1052,32172 -goal_colours(consult(_), built_in-[file]).goal_colours1052,32172 -goal_colours(include(_), built_in-[file]).goal_colours1053,32220 -goal_colours(include(_), built_in-[file]).goal_colours1053,32220 -goal_colours(ensure_loaded(_), built_in-[file]).goal_colours1054,32268 -goal_colours(ensure_loaded(_), built_in-[file]).goal_colours1054,32268 -goal_colours(load_files(_,_), built_in-[file,classify]).goal_colours1055,32322 -goal_colours(load_files(_,_), built_in-[file,classify]).goal_colours1055,32322 -goal_colours(setof(_,_,_), built_in-[classify,setof,classify]).goal_colours1056,32384 -goal_colours(setof(_,_,_), built_in-[classify,setof,classify]).goal_colours1056,32384 -goal_colours(bagof(_,_,_), built_in-[classify,setof,classify]).goal_colours1057,32453 -goal_colours(bagof(_,_,_), built_in-[classify,setof,classify]).goal_colours1057,32453 -goal_colours(predicate_options(_,_,_), built_in-[predicate,classify,classify]).goal_colours1058,32522 -goal_colours(predicate_options(_,_,_), built_in-[predicate,classify,classify]).goal_colours1058,32522 -goal_colours(assert(_), built_in-[db]).goal_colours1060,32620 -goal_colours(assert(_), built_in-[db]).goal_colours1060,32620 -goal_colours(asserta(_), built_in-[db]).goal_colours1061,32666 -goal_colours(asserta(_), built_in-[db]).goal_colours1061,32666 -goal_colours(assertz(_), built_in-[db]).goal_colours1062,32712 -goal_colours(assertz(_), built_in-[db]).goal_colours1062,32712 -goal_colours(assert(_,_), built_in-[db,classify]).goal_colours1063,32758 -goal_colours(assert(_,_), built_in-[db,classify]).goal_colours1063,32758 -goal_colours(asserta(_,_), built_in-[db,classify]).goal_colours1064,32814 -goal_colours(asserta(_,_), built_in-[db,classify]).goal_colours1064,32814 -goal_colours(assertz(_,_), built_in-[db,classify]).goal_colours1065,32871 -goal_colours(assertz(_,_), built_in-[db,classify]).goal_colours1065,32871 -goal_colours(retract(_), built_in-[db]).goal_colours1066,32928 -goal_colours(retract(_), built_in-[db]).goal_colours1066,32928 -goal_colours(retractall(_), built_in-[db]).goal_colours1067,32974 -goal_colours(retractall(_), built_in-[db]).goal_colours1067,32974 -goal_colours(clause(_,_), built_in-[db,classify]).goal_colours1068,33023 -goal_colours(clause(_,_), built_in-[db,classify]).goal_colours1068,33023 -goal_colours(clause(_,_,_), built_in-[db,classify,classify]).goal_colours1069,33079 -goal_colours(clause(_,_,_), built_in-[db,classify,classify]).goal_colours1069,33079 -goal_colours(set_prolog_flag(_,_), built_in-[prolog_flag_name,classify]).goal_colours1071,33153 -goal_colours(set_prolog_flag(_,_), built_in-[prolog_flag_name,classify]).goal_colours1071,33153 -goal_colours(current_prolog_flag(_,_), built_in-[prolog_flag_name,classify]).goal_colours1072,33229 -goal_colours(current_prolog_flag(_,_), built_in-[prolog_flag_name,classify]).goal_colours1072,33229 -goal_colours(pce_autoload(_,_), classify-[classify,file]).goal_colours1074,33320 -goal_colours(pce_autoload(_,_), classify-[classify,file]).goal_colours1074,33320 -goal_colours(pce_image_directory(_), classify-[directory]).goal_colours1075,33384 -goal_colours(pce_image_directory(_), classify-[directory]).goal_colours1075,33384 -goal_colours(new(_, _), built_in-[classify,pce_new]).goal_colours1076,33444 -goal_colours(new(_, _), built_in-[classify,pce_new]).goal_colours1076,33444 -goal_colours(send_list(_,_,_), built_in-pce_arg_list).goal_colours1077,33504 -goal_colours(send_list(_,_,_), built_in-pce_arg_list).goal_colours1077,33504 -goal_colours(send(_,_), built_in-[pce_arg,pce_selector]).goal_colours1078,33564 -goal_colours(send(_,_), built_in-[pce_arg,pce_selector]).goal_colours1078,33564 -goal_colours(get(_,_,_), built_in-[pce_arg,pce_selector,pce_arg]).goal_colours1079,33628 -goal_colours(get(_,_,_), built_in-[pce_arg,pce_selector,pce_arg]).goal_colours1079,33628 -goal_colours(send_super(_,_), built_in-[pce_arg,pce_selector]).goal_colours1080,33700 -goal_colours(send_super(_,_), built_in-[pce_arg,pce_selector]).goal_colours1080,33700 -goal_colours(get_super(_,_), built_in-[pce_arg,pce_selector,pce_arg]).goal_colours1081,33769 -goal_colours(get_super(_,_), built_in-[pce_arg,pce_selector,pce_arg]).goal_colours1081,33769 -goal_colours(get_chain(_,_,_), built_in-[pce_arg,pce_selector,pce_arg]).goal_colours1082,33845 -goal_colours(get_chain(_,_,_), built_in-[pce_arg,pce_selector,pce_arg]).goal_colours1082,33845 -goal_colours(Pce, built_in-pce_arg) :-goal_colours1083,33923 -goal_colours(Pce, built_in-pce_arg) :-goal_colours1083,33923 -goal_colours(Pce, built_in-pce_arg) :-goal_colours1083,33923 -pce_functor(send).pce_functor1088,34035 -pce_functor(send).pce_functor1088,34035 -pce_functor(get).pce_functor1089,34054 -pce_functor(get).pce_functor1089,34054 -pce_functor(send_super).pce_functor1090,34072 -pce_functor(send_super).pce_functor1090,34072 -pce_functor(get_super).pce_functor1091,34097 -pce_functor(get_super).pce_functor1091,34097 -head_colours(file_search_path(_,_), hook-[identifier,classify]).head_colours1098,34220 -head_colours(file_search_path(_,_), hook-[identifier,classify]).head_colours1098,34220 -head_colours(library_directory(_), hook-[file]).head_colours1099,34285 -head_colours(library_directory(_), hook-[file]).head_colours1099,34285 -head_colours(resource(_,_,_), hook-[identifier,classify,file]).head_colours1100,34335 -head_colours(resource(_,_,_), hook-[identifier,classify,file]).head_colours1100,34335 -head_colours(Var, _) :-head_colours1102,34404 -head_colours(Var, _) :-head_colours1102,34404 -head_colours(Var, _) :-head_colours1102,34404 -head_colours(M:H, Colours) :-head_colours1105,34449 -head_colours(M:H, Colours) :-head_colours1105,34449 -head_colours(M:H, Colours) :-head_colours1105,34449 -head_colours(M:H, Colours) :-head_colours1109,34565 -head_colours(M:H, Colours) :-head_colours1109,34565 -head_colours(M:H, Colours) :-head_colours1109,34565 -head_colours(M:_, meta-[module(M),extern(M)]).head_colours1114,34680 -head_colours(M:_, meta-[module(M),extern(M)]).head_colours1114,34680 -def_style(goal(built_in,_), [colour(blue)]).def_style1127,35023 -def_style(goal(built_in,_), [colour(blue)]).def_style1127,35023 -def_style(goal(imported(_),_), [colour(blue)]).def_style1128,35071 -def_style(goal(imported(_),_), [colour(blue)]).def_style1128,35071 -def_style(goal(autoload,_), [colour(navy_blue)]).def_style1129,35122 -def_style(goal(autoload,_), [colour(navy_blue)]).def_style1129,35122 -def_style(goal(global,_), [colour(navy_blue)]).def_style1130,35175 -def_style(goal(global,_), [colour(navy_blue)]).def_style1130,35175 -def_style(goal(undefined,_), [colour(red)]).def_style1131,35226 -def_style(goal(undefined,_), [colour(red)]).def_style1131,35226 -def_style(goal(thread_local(_),_), [colour(magenta), underline(true)]).def_style1132,35274 -def_style(goal(thread_local(_),_), [colour(magenta), underline(true)]).def_style1132,35274 -def_style(goal(dynamic(_),_), [colour(magenta)]).def_style1133,35346 -def_style(goal(dynamic(_),_), [colour(magenta)]).def_style1133,35346 -def_style(goal(multifile(_),_), [colour(navy_blue)]).def_style1134,35399 -def_style(goal(multifile(_),_), [colour(navy_blue)]).def_style1134,35399 -def_style(goal(expanded,_), [colour(blue), underline(true)]).def_style1135,35456 -def_style(goal(expanded,_), [colour(blue), underline(true)]).def_style1135,35456 -def_style(goal(extern(_),_), [colour(blue), underline(true)]).def_style1136,35521 -def_style(goal(extern(_),_), [colour(blue), underline(true)]).def_style1136,35521 -def_style(goal(recursion,_), [underline(true)]).def_style1137,35587 -def_style(goal(recursion,_), [underline(true)]).def_style1137,35587 -def_style(goal(meta,_), [colour(red4)]).def_style1138,35639 -def_style(goal(meta,_), [colour(red4)]).def_style1138,35639 -def_style(goal(foreign(_),_), [colour(darkturquoise)]).def_style1139,35684 -def_style(goal(foreign(_),_), [colour(darkturquoise)]).def_style1139,35684 -def_style(goal(local(_),_), []).def_style1140,35743 -def_style(goal(local(_),_), []).def_style1140,35743 -def_style(goal(constraint(_),_), [colour(darkcyan)]).def_style1141,35779 -def_style(goal(constraint(_),_), [colour(darkcyan)]).def_style1141,35779 -def_style(option_name, [colour('#3434ba')]).def_style1143,35836 -def_style(option_name, [colour('#3434ba')]).def_style1143,35836 -def_style(no_option_name, [colour(red)]).def_style1144,35885 -def_style(no_option_name, [colour(red)]).def_style1144,35885 -def_style(head(exported), [colour(blue), bold(true)]).def_style1146,35931 -def_style(head(exported), [colour(blue), bold(true)]).def_style1146,35931 -def_style(head(public(_)), [colour('#016300'), bold(true)]).def_style1147,35989 -def_style(head(public(_)), [colour('#016300'), bold(true)]).def_style1147,35989 -def_style(head(extern(_)), [colour(blue), bold(true)]).def_style1148,36053 -def_style(head(extern(_)), [colour(blue), bold(true)]).def_style1148,36053 -def_style(head(dynamic), [colour(magenta), bold(true)]).def_style1149,36112 -def_style(head(dynamic), [colour(magenta), bold(true)]).def_style1149,36112 -def_style(head(multifile), [colour(navy_blue), bold(true)]).def_style1150,36172 -def_style(head(multifile), [colour(navy_blue), bold(true)]).def_style1150,36172 -def_style(head(unreferenced), [colour(red), bold(true)]).def_style1151,36236 -def_style(head(unreferenced), [colour(red), bold(true)]).def_style1151,36236 -def_style(head(hook), [colour(blue), underline(true)]).def_style1152,36297 -def_style(head(hook), [colour(blue), underline(true)]).def_style1152,36297 -def_style(head(meta), []).def_style1153,36357 -def_style(head(meta), []).def_style1153,36357 -def_style(head(constraint(_)), [colour(darkcyan), bold(true)]).def_style1154,36388 -def_style(head(constraint(_)), [colour(darkcyan), bold(true)]).def_style1154,36388 -def_style(head(_), [bold(true)]).def_style1155,36455 -def_style(head(_), [bold(true)]).def_style1155,36455 -def_style(module(_), [colour(dark_slate_blue)]).def_style1156,36493 -def_style(module(_), [colour(dark_slate_blue)]).def_style1156,36493 -def_style(comment, [colour(dark_green)]).def_style1157,36546 -def_style(comment, [colour(dark_green)]).def_style1157,36546 -def_style(directive, [background(grey90)]).def_style1159,36593 -def_style(directive, [background(grey90)]).def_style1159,36593 -def_style(method(_), [bold(true)]).def_style1160,36641 -def_style(method(_), [bold(true)]).def_style1160,36641 -def_style(var, [colour(red4)]).def_style1162,36682 -def_style(var, [colour(red4)]).def_style1162,36682 -def_style(singleton, [bold(true), colour(red4)]).def_style1163,36719 -def_style(singleton, [bold(true), colour(red4)]).def_style1163,36719 -def_style(unbound, [colour(red), bold(true)]).def_style1164,36773 -def_style(unbound, [colour(red), bold(true)]).def_style1164,36773 -def_style(quoted_atom, [colour(navy_blue)]).def_style1165,36824 -def_style(quoted_atom, [colour(navy_blue)]).def_style1165,36824 -def_style(string, [colour(navy_blue)]).def_style1166,36873 -def_style(string, [colour(navy_blue)]).def_style1166,36873 -def_style(nofile, [colour(red)]).def_style1167,36917 -def_style(nofile, [colour(red)]).def_style1167,36917 -def_style(file(_), [colour(blue), underline(true)]).def_style1168,36955 -def_style(file(_), [colour(blue), underline(true)]).def_style1168,36955 -def_style(directory(_), [colour(blue)]).def_style1169,37012 -def_style(directory(_), [colour(blue)]).def_style1169,37012 -def_style(class(built_in,_), [colour(blue), underline(true)]).def_style1170,37057 -def_style(class(built_in,_), [colour(blue), underline(true)]).def_style1170,37057 -def_style(class(library(_),_), [colour(navy_blue), underline(true)]).def_style1171,37123 -def_style(class(library(_),_), [colour(navy_blue), underline(true)]).def_style1171,37123 -def_style(class(local(_,_,_),_), [underline(true)]).def_style1172,37196 -def_style(class(local(_,_,_),_), [underline(true)]).def_style1172,37196 -def_style(class(user(_),_), [underline(true)]).def_style1173,37251 -def_style(class(user(_),_), [underline(true)]).def_style1173,37251 -def_style(class(user,_), [underline(true)]).def_style1174,37302 -def_style(class(user,_), [underline(true)]).def_style1174,37302 -def_style(class(undefined,_), [colour(red), underline(true)]).def_style1175,37350 -def_style(class(undefined,_), [colour(red), underline(true)]).def_style1175,37350 -def_style(prolog_data, [colour(blue), underline(true)]).def_style1176,37416 -def_style(prolog_data, [colour(blue), underline(true)]).def_style1176,37416 -def_style(flag_name(_), [colour(blue)]).def_style1177,37477 -def_style(flag_name(_), [colour(blue)]).def_style1177,37477 -def_style(no_flag_name(_), [colour(red)]).def_style1178,37522 -def_style(no_flag_name(_), [colour(red)]).def_style1178,37522 -def_style(keyword(_), [colour(blue)]).def_style1180,37569 -def_style(keyword(_), [colour(blue)]).def_style1180,37569 -def_style(identifier, [bold(true)]).def_style1181,37612 -def_style(identifier, [bold(true)]).def_style1181,37612 -def_style(delimiter, [bold(true)]).def_style1182,37653 -def_style(delimiter, [bold(true)]).def_style1182,37653 -def_style(expanded, [colour(blue), underline(true)]).def_style1183,37693 -def_style(expanded, [colour(blue), underline(true)]).def_style1183,37693 -def_style(hook, [colour(blue), underline(true)]).def_style1185,37752 -def_style(hook, [colour(blue), underline(true)]).def_style1185,37752 -def_style(error, [background(orange)]).def_style1187,37808 -def_style(error, [background(orange)]).def_style1187,37808 -def_style(type_error(_), [background(orange)]).def_style1188,37852 -def_style(type_error(_), [background(orange)]).def_style1188,37852 -def_style(syntax_error(_,_), [background(orange)]).def_style1189,37903 -def_style(syntax_error(_,_), [background(orange)]).def_style1189,37903 -syntax_colour(Class, Attributes) :-syntax_colour1205,38419 -syntax_colour(Class, Attributes) :-syntax_colour1205,38419 -syntax_colour(Class, Attributes) :-syntax_colour1205,38419 -term_colours((?- Directive), Colours) :-term_colours1215,38653 -term_colours((?- Directive), Colours) :-term_colours1215,38653 -term_colours((?- Directive), Colours) :-term_colours1215,38653 -prolog_message_hook(message(_)).prolog_message_hook1226,38919 -prolog_message_hook(message(_)).prolog_message_hook1226,38919 -prolog_message_hook(error_message(_)).prolog_message_hook1227,38952 -prolog_message_hook(error_message(_)).prolog_message_hook1227,38952 -prolog_message_hook(message_context(_)).prolog_message_hook1228,38991 -prolog_message_hook(message_context(_)).prolog_message_hook1228,38991 -prolog_message_hook(message_location(_)).prolog_message_hook1229,39032 -prolog_message_hook(message_location(_)).prolog_message_hook1229,39032 -specified_item(_, Var, TB, Pos) :-specified_item1333,41289 -specified_item(_, Var, TB, Pos) :-specified_item1333,41289 -specified_item(_, Var, TB, Pos) :-specified_item1333,41289 -specified_item(classify, Term, TB, Pos) :- !,specified_item1337,41403 -specified_item(classify, Term, TB, Pos) :- !,specified_item1337,41403 -specified_item(classify, Term, TB, Pos) :- !,specified_item1337,41403 -specified_item(head, Term, TB, Pos) :- !,specified_item1340,41509 -specified_item(head, Term, TB, Pos) :- !,specified_item1340,41509 -specified_item(head, Term, TB, Pos) :- !,specified_item1340,41509 -specified_item(head(+N), Term, TB, Pos) :- !,specified_item1343,41624 -specified_item(head(+N), Term, TB, Pos) :- !,specified_item1343,41624 -specified_item(head(+N), Term, TB, Pos) :- !,specified_item1343,41624 -specified_item(extern(M), Term, TB, Pos) :- !,specified_item1346,41728 -specified_item(extern(M), Term, TB, Pos) :- !,specified_item1346,41728 -specified_item(extern(M), Term, TB, Pos) :- !,specified_item1346,41728 -specified_item(body, Term, TB, Pos) :- !,specified_item1349,41841 -specified_item(body, Term, TB, Pos) :- !,specified_item1349,41841 -specified_item(body, Term, TB, Pos) :- !,specified_item1349,41841 -specified_item(setof, Term, TB, Pos) :- !,specified_item1351,41915 -specified_item(setof, Term, TB, Pos) :- !,specified_item1351,41915 -specified_item(setof, Term, TB, Pos) :- !,specified_item1351,41915 -specified_item(meta(MetaSpec), Term, TB, Pos) :- !,specified_item1353,41991 -specified_item(meta(MetaSpec), Term, TB, Pos) :- !,specified_item1353,41991 -specified_item(meta(MetaSpec), Term, TB, Pos) :- !,specified_item1353,41991 -specified_item(dcg, Term, TB, Pos) :- !,specified_item1356,42113 -specified_item(dcg, Term, TB, Pos) :- !,specified_item1356,42113 -specified_item(dcg, Term, TB, Pos) :- !,specified_item1356,42113 -specified_item(db, Term, TB, Pos) :- !,specified_item1359,42221 -specified_item(db, Term, TB, Pos) :- !,specified_item1359,42221 -specified_item(db, Term, TB, Pos) :- !,specified_item1359,42221 -specified_item(file, Term, TB, Pos) :- !,specified_item1362,42304 -specified_item(file, Term, TB, Pos) :- !,specified_item1362,42304 -specified_item(file, Term, TB, Pos) :- !,specified_item1362,42304 -specified_item(directory, Term, TB, Pos) :- !,specified_item1365,42396 -specified_item(directory, Term, TB, Pos) :- !,specified_item1365,42396 -specified_item(directory, Term, TB, Pos) :- !,specified_item1365,42396 -specified_item(exports, Term, TB, Pos) :- !,specified_item1368,42505 -specified_item(exports, Term, TB, Pos) :- !,specified_item1368,42505 -specified_item(exports, Term, TB, Pos) :- !,specified_item1368,42505 -specified_item(imports(File), Term, TB, Pos) :- !,specified_item1371,42610 -specified_item(imports(File), Term, TB, Pos) :- !,specified_item1371,42610 -specified_item(imports(File), Term, TB, Pos) :- !,specified_item1371,42610 -specified_item(predicates, Term, TB, Pos) :- !,specified_item1374,42725 -specified_item(predicates, Term, TB, Pos) :- !,specified_item1374,42725 -specified_item(predicates, Term, TB, Pos) :- !,specified_item1374,42725 -specified_item(predicate, Term, TB, Pos) :- !,specified_item1377,42831 -specified_item(predicate, Term, TB, Pos) :- !,specified_item1377,42831 -specified_item(predicate, Term, TB, Pos) :- !,specified_item1377,42831 -specified_item(prolog_flag_name, Term, TB, Pos) :- !,specified_item1380,42949 -specified_item(prolog_flag_name, Term, TB, Pos) :- !,specified_item1380,42949 -specified_item(prolog_flag_name, Term, TB, Pos) :- !,specified_item1380,42949 -specified_item(pce_new, Term, TB, Pos) :- !,specified_item1383,43072 -specified_item(pce_new, Term, TB, Pos) :- !,specified_item1383,43072 -specified_item(pce_new, Term, TB, Pos) :- !,specified_item1383,43072 -specified_item(pce_arg, @(Ref), TB, Pos) :- !,specified_item1401,43705 -specified_item(pce_arg, @(Ref), TB, Pos) :- !,specified_item1401,43705 -specified_item(pce_arg, @(Ref), TB, Pos) :- !,specified_item1401,43705 -specified_item(pce_arg, Term, TB, Pos) :-specified_item1407,43958 -specified_item(pce_arg, Term, TB, Pos) :-specified_item1407,43958 -specified_item(pce_arg, Term, TB, Pos) :-specified_item1407,43958 -specified_item(pce_arg, Term, TB, Pos) :- !,specified_item1411,44077 -specified_item(pce_arg, Term, TB, Pos) :- !,specified_item1411,44077 -specified_item(pce_arg, Term, TB, Pos) :- !,specified_item1411,44077 -specified_item(pce_arg_list, List, TB, list_position(_,_,Elms,Tail)) :- !,specified_item1414,44188 -specified_item(pce_arg_list, List, TB, list_position(_,_,Elms,Tail)) :- !,specified_item1414,44188 -specified_item(pce_arg_list, List, TB, list_position(_,_,Elms,Tail)) :- !,specified_item1414,44188 -specified_item(pce_arg_list, Term, TB, Pos) :- !,specified_item1416,44316 -specified_item(pce_arg_list, Term, TB, Pos) :- !,specified_item1416,44316 -specified_item(pce_arg_list, Term, TB, Pos) :- !,specified_item1416,44316 -specified_item(pce_selector, Term, TB, Pos) :-specified_item1422,44557 -specified_item(pce_selector, Term, TB, Pos) :-specified_item1422,44557 -specified_item(pce_selector, Term, TB, Pos) :-specified_item1422,44557 -specified_item(FuncSpec-ElmSpec, List, TB, list_position(F,T,ElmPos,TailPos)) :- !,specified_item1435,45072 -specified_item(FuncSpec-ElmSpec, List, TB, list_position(F,T,ElmPos,TailPos)) :- !,specified_item1435,45072 -specified_item(FuncSpec-ElmSpec, List, TB, list_position(F,T,ElmPos,TailPos)) :- !,specified_item1435,45072 -specified_item(Class, _, TB, Pos) :-specified_item1441,45305 -specified_item(Class, _, TB, Pos) :-specified_item1441,45305 -specified_item(Class, _, TB, Pos) :-specified_item1441,45305 -specified_items(Specs, Term, TB, PosList) :-specified_items1446,45418 -specified_items(Specs, Term, TB, PosList) :-specified_items1446,45418 -specified_items(Specs, Term, TB, PosList) :-specified_items1446,45418 -specified_items(Spec, Term, TB, PosList) :-specified_items1449,45532 -specified_items(Spec, Term, TB, PosList) :-specified_items1449,45532 -specified_items(Spec, Term, TB, PosList) :-specified_items1449,45532 -specified_arglist([], _, _, _, _).specified_arglist1453,45626 -specified_arglist([], _, _, _, _).specified_arglist1453,45626 -specified_arglist(_, _, _, _, []) :- !. % Excess specification argsspecified_arglist1454,45661 -specified_arglist(_, _, _, _, []) :- !. % Excess specification argsspecified_arglist1454,45661 -specified_arglist(_, _, _, _, []) :- !. % Excess specification argsspecified_arglist1454,45661 -specified_arglist([S0|ST], N, T, TB, [P0|PT]) :-specified_arglist1455,45730 -specified_arglist([S0|ST], N, T, TB, [P0|PT]) :-specified_arglist1455,45730 -specified_arglist([S0|ST], N, T, TB, [P0|PT]) :-specified_arglist1455,45730 -specified_argspec([], _, _, _, _).specified_argspec1461,45886 -specified_argspec([], _, _, _, _).specified_argspec1461,45886 -specified_argspec([P0|PT], Spec, N, T, TB) :-specified_argspec1462,45921 -specified_argspec([P0|PT], Spec, N, T, TB) :-specified_argspec1462,45921 -specified_argspec([P0|PT], Spec, N, T, TB) :-specified_argspec1462,45921 -specified_list([], [], _, [], _).specified_list1471,46135 -specified_list([], [], _, [], _).specified_list1471,46135 -specified_list([HS|TS], [H|T], TB, [HP|TP], TailPos) :- !,specified_list1472,46169 -specified_list([HS|TS], [H|T], TB, [HP|TP], TailPos) :- !,specified_list1472,46169 -specified_list([HS|TS], [H|T], TB, [HP|TP], TailPos) :- !,specified_list1472,46169 -specified_list(Spec, [H|T], TB, [HP|TP], TailPos) :-specified_list1475,46301 -specified_list(Spec, [H|T], TB, [HP|TP], TailPos) :-specified_list1475,46301 -specified_list(Spec, [H|T], TB, [HP|TP], TailPos) :-specified_list1475,46301 -specified_list(_, _, _, [], none) :- !.specified_list1478,46431 -specified_list(_, _, _, [], none) :- !.specified_list1478,46431 -specified_list(_, _, _, [], none) :- !.specified_list1478,46431 -specified_list(Spec, Tail, TB, [], TailPos) :-specified_list1479,46471 -specified_list(Spec, Tail, TB, [], TailPos) :-specified_list1479,46471 -specified_list(Spec, Tail, TB, [], TailPos) :-specified_list1479,46471 -syntax_message(Class) -->syntax_message1487,46659 -syntax_message(Class) -->syntax_message1487,46659 -syntax_message(Class) -->syntax_message1487,46659 -syntax_message(goal(Class, Goal)) --> !,syntax_message1489,46705 -syntax_message(goal(Class, Goal)) --> !,syntax_message1489,46705 -syntax_message(goal(Class, Goal)) --> !,syntax_message1489,46705 -syntax_message(class(Type, Class)) --> !,syntax_message1491,46774 -syntax_message(class(Type, Class)) --> !,syntax_message1491,46774 -syntax_message(class(Type, Class)) --> !,syntax_message1491,46774 -goal_message(meta, _) -->goal_message1494,46851 -goal_message(meta, _) -->goal_message1494,46851 -goal_message(meta, _) -->goal_message1494,46851 -goal_message(recursion, _) -->goal_message1496,46895 -goal_message(recursion, _) -->goal_message1496,46895 -goal_message(recursion, _) -->goal_message1496,46895 -goal_message(undefined, _) -->goal_message1498,46949 -goal_message(undefined, _) -->goal_message1498,46949 -goal_message(undefined, _) -->goal_message1498,46949 -goal_message(expanded, _) -->goal_message1500,47016 -goal_message(expanded, _) -->goal_message1500,47016 -goal_message(expanded, _) -->goal_message1500,47016 -goal_message(global, _) -->goal_message1502,47068 -goal_message(global, _) -->goal_message1502,47068 -goal_message(global, _) -->goal_message1502,47068 -goal_message(Class, Goal) -->goal_message1504,47135 -goal_message(Class, Goal) -->goal_message1504,47135 -goal_message(Class, Goal) -->goal_message1504,47135 -xpce_class_message(Type, Class) -->xpce_class_message1508,47240 -xpce_class_message(Type, Class) -->xpce_class_message1508,47240 -xpce_class_message(Type, Class) -->xpce_class_message1508,47240 - -swi/library/prolog_source.pl,4333 -'$style_check'([Singleton,Discontiguous,Multiple], StyleF) :-$style_check73,2712 -'$style_check'([Singleton,Discontiguous,Multiple], StyleF) :-$style_check73,2712 -'$style_check'([Singleton,Discontiguous,Multiple], StyleF) :-$style_check73,2712 -prolog_read_source_term(In, Term, Expanded, Options) :-prolog_read_source_term111,3477 -prolog_read_source_term(In, Term, Expanded, Options) :-prolog_read_source_term111,3477 -prolog_read_source_term(In, Term, Expanded, Options) :-prolog_read_source_term111,3477 -expand(Var, Var) :-expand120,3675 -expand(Var, Var) :-expand120,3675 -expand(Var, Var) :-expand120,3675 -expand(Term, _) :-expand122,3709 -expand(Term, _) :-expand122,3709 -expand(Term, _) :-expand122,3709 -expand('$:-'(X), '$:-'(X)) :- !, % boot moduleexpand126,3791 -expand('$:-'(X), '$:-'(X)) :- !, % boot moduleexpand126,3791 -expand('$:-'(X), '$:-'(X)) :- !, % boot moduleexpand126,3791 -expand(Term, Expanded) :-expand128,3861 -expand(Term, Expanded) :-expand128,3861 -expand(Term, Expanded) :-expand128,3861 -requires_library((:- emacs_begin_mode(_,_,_,_,_)), library(emacs_extend)).requires_library135,4024 -requires_library((:- emacs_begin_mode(_,_,_,_,_)), library(emacs_extend)).requires_library135,4024 -requires_library((:- draw_begin_shape(_,_,_,_)), library(pcedraw)).requires_library136,4099 -requires_library((:- draw_begin_shape(_,_,_,_)), library(pcedraw)).requires_library136,4099 -update_state([]) :- !.update_state142,4273 -update_state([]) :- !.update_state142,4273 -update_state([]) :- !.update_state142,4273 -update_state([H|T]) :- !,update_state143,4296 -update_state([H|T]) :- !,update_state143,4296 -update_state([H|T]) :- !,update_state143,4296 -update_state((:- Directive)) :- !,update_state146,4358 -update_state((:- Directive)) :- !,update_state146,4358 -update_state((:- Directive)) :- !,update_state146,4358 -update_state((?- Directive)) :- !,update_state148,4423 -update_state((?- Directive)) :- !,update_state148,4423 -update_state((?- Directive)) :- !,update_state148,4423 -update_state(_).update_state150,4488 -update_state(_).update_state150,4488 -update_directive(module(Module, Public)) :- !,update_directive152,4506 -update_directive(module(Module, Public)) :- !,update_directive152,4506 -update_directive(module(Module, Public)) :- !,update_directive152,4506 -update_directive(op(P,T,N)) :- !,update_directive155,4614 -update_directive(op(P,T,N)) :- !,update_directive155,4614 -update_directive(op(P,T,N)) :- !,update_directive155,4614 -update_directive(style_check(Style)) :-update_directive158,4699 -update_directive(style_check(Style)) :-update_directive158,4699 -update_directive(style_check(Style)) :-update_directive158,4699 -update_directive(_).update_directive160,4763 -update_directive(_).update_directive160,4763 -public_operators([]).public_operators162,4785 -public_operators([]).public_operators162,4785 -public_operators([H|T]) :- !,public_operators163,4807 -public_operators([H|T]) :- !,public_operators163,4807 -public_operators([H|T]) :- !,public_operators163,4807 -prolog_open_source(Src, Fd) :-prolog_open_source190,5611 -prolog_open_source(Src, Fd) :-prolog_open_source190,5611 -prolog_open_source(Src, Fd) :-prolog_open_source190,5611 -prolog_close_source(In) :-prolog_close_source210,6069 -prolog_close_source(In) :-prolog_close_source210,6069 -prolog_close_source(In) :-prolog_close_source210,6069 -prolog_canonical_source(Src, Id) :- % Call hookprolog_canonical_source226,6506 -prolog_canonical_source(Src, Id) :- % Call hookprolog_canonical_source226,6506 -prolog_canonical_source(Src, Id) :- % Call hookprolog_canonical_source226,6506 -prolog_canonical_source(User, user) :-prolog_canonical_source228,6599 -prolog_canonical_source(User, user) :-prolog_canonical_source228,6599 -prolog_canonical_source(User, user) :-prolog_canonical_source228,6599 -prolog_canonical_source(Source, Src) :-prolog_canonical_source230,6656 -prolog_canonical_source(Source, Src) :-prolog_canonical_source230,6656 -prolog_canonical_source(Source, Src) :-prolog_canonical_source230,6656 -prolog_canonical_source(Source, Src) :-prolog_canonical_source237,6823 -prolog_canonical_source(Source, Src) :-prolog_canonical_source237,6823 -prolog_canonical_source(Source, Src) :-prolog_canonical_source237,6823 - -swi/library/prolog_xref.pl,64446 -called_by(Goal, Called) :-called_by106,3763 -called_by(Goal, Called) :-called_by106,3763 -called_by(Goal, Called) :-called_by106,3763 -called_by(on_signal(_,_,New), [New+1]) :-called_by108,3826 -called_by(on_signal(_,_,New), [New+1]) :-called_by108,3826 -called_by(on_signal(_,_,New), [New+1]) :-called_by108,3826 -system_predicate(Goal) :-system_predicate125,4154 -system_predicate(Goal) :-system_predicate125,4154 -system_predicate(Goal) :-system_predicate125,4154 -verbose :-verbose135,4425 -xref_source(Source) :-xref_source146,4702 -xref_source(Source) :-xref_source146,4702 -xref_source(Source) :-xref_source146,4702 -xref_source(Source) :-xref_source152,4844 -xref_source(Source) :-xref_source152,4844 -xref_source(Source) :-xref_source152,4844 -xref_setup(Src, In, state(In, Xref, [SRef|HRefs])) :-xref_setup166,5198 -xref_setup(Src, In, state(In, Xref, [SRef|HRefs])) :-xref_setup166,5198 -xref_setup(Src, In, state(In, Xref, [SRef|HRefs])) :-xref_setup166,5198 -xref_cleanup(state(In, Xref, Refs)) :-xref_cleanup180,5512 -xref_cleanup(state(In, Xref, Refs)) :-xref_cleanup180,5512 -xref_cleanup(state(In, Xref, Refs)) :-xref_cleanup180,5512 -xref_input_stream(Stream) :-xref_input_stream189,5717 -xref_input_stream(Stream) :-xref_input_stream189,5717 -xref_input_stream(Stream) :-xref_input_stream189,5717 -xref_push_op(Src, P, T, N0) :- !,xref_push_op198,5935 -xref_push_op(Src, P, T, N0) :- !,xref_push_op198,5935 -xref_push_op(Src, P, T, N0) :- !,xref_push_op198,5935 -xref_clean(Source) :-xref_clean213,6209 -xref_clean(Source) :-xref_clean213,6209 -xref_clean(Source) :-xref_clean213,6209 -xref_current_source(Source) :-xref_current_source239,6927 -xref_current_source(Source) :-xref_current_source239,6927 -xref_current_source(Source) :-xref_current_source239,6927 -xref_done(Source, Time) :-xref_done247,7059 -xref_done(Source, Time) :-xref_done247,7059 -xref_done(Source, Time) :-xref_done247,7059 -xref_called(Source, Called, By) :-xref_called257,7299 -xref_called(Source, Called, By) :-xref_called257,7299 -xref_called(Source, Called, By) :-xref_called257,7299 -xref_defined(Source, Called, How) :-xref_defined269,7694 -xref_defined(Source, Called, How) :-xref_defined269,7694 -xref_defined(Source, Called, How) :-xref_defined269,7694 -xref_defined2(dynamic(Line), Src, Called) :-xref_defined2273,7805 -xref_defined2(dynamic(Line), Src, Called) :-xref_defined2273,7805 -xref_defined2(dynamic(Line), Src, Called) :-xref_defined2273,7805 -xref_defined2(thread_local(Line), Src, Called) :-xref_defined2275,7879 -xref_defined2(thread_local(Line), Src, Called) :-xref_defined2275,7879 -xref_defined2(thread_local(Line), Src, Called) :-xref_defined2275,7879 -xref_defined2(multifile(Line), Src, Called) :-xref_defined2277,7963 -xref_defined2(multifile(Line), Src, Called) :-xref_defined2277,7963 -xref_defined2(multifile(Line), Src, Called) :-xref_defined2277,7963 -xref_defined2(local(Line), Src, Called) :-xref_defined2279,8041 -xref_defined2(local(Line), Src, Called) :-xref_defined2279,8041 -xref_defined2(local(Line), Src, Called) :-xref_defined2279,8041 -xref_defined2(foreign(Line), Src, Called) :-xref_defined2281,8113 -xref_defined2(foreign(Line), Src, Called) :-xref_defined2281,8113 -xref_defined2(foreign(Line), Src, Called) :-xref_defined2281,8113 -xref_defined2(constraint(Line), Src, Called) :-xref_defined2283,8187 -xref_defined2(constraint(Line), Src, Called) :-xref_defined2283,8187 -xref_defined2(constraint(Line), Src, Called) :-xref_defined2283,8187 -xref_defined2(imported(From), Src, Called) :-xref_defined2285,8267 -xref_defined2(imported(From), Src, Called) :-xref_defined2285,8267 -xref_defined2(imported(From), Src, Called) :-xref_defined2285,8267 -xref_definition_line(local(Line), Line).xref_definition_line294,8466 -xref_definition_line(local(Line), Line).xref_definition_line294,8466 -xref_definition_line(dynamic(Line), Line).xref_definition_line295,8508 -xref_definition_line(dynamic(Line), Line).xref_definition_line295,8508 -xref_definition_line(thread_local(Line), Line).xref_definition_line296,8552 -xref_definition_line(thread_local(Line), Line).xref_definition_line296,8552 -xref_definition_line(multifile(Line), Line).xref_definition_line297,8600 -xref_definition_line(multifile(Line), Line).xref_definition_line297,8600 -xref_definition_line(constraint(Line), Line).xref_definition_line298,8646 -xref_definition_line(constraint(Line), Line).xref_definition_line298,8646 -xref_definition_line(foreign(Line), Line).xref_definition_line299,8693 -xref_definition_line(foreign(Line), Line).xref_definition_line299,8693 -xref_exported(Source, Called) :-xref_exported302,8739 -xref_exported(Source, Called) :-xref_exported302,8739 -xref_exported(Source, Called) :-xref_exported302,8739 -xref_module(Source, Module) :-xref_module310,8922 -xref_module(Source, Module) :-xref_module310,8922 -xref_module(Source, Module) :-xref_module310,8922 -xref_op(Source, Op) :-xref_op322,9259 -xref_op(Source, Op) :-xref_op322,9259 -xref_op(Source, Op) :-xref_op322,9259 -xref_built_in(Head) :-xref_built_in326,9337 -xref_built_in(Head) :-xref_built_in326,9337 -xref_built_in(Head) :-xref_built_in326,9337 -xref_used_class(Source, Class) :-xref_used_class329,9386 -xref_used_class(Source, Class) :-xref_used_class329,9386 -xref_used_class(Source, Class) :-xref_used_class329,9386 -xref_defined_class(Source, Class, local(Line, Super, Summary)) :-xref_defined_class333,9485 -xref_defined_class(Source, Class, local(Line, Super, Summary)) :-xref_defined_class333,9485 -xref_defined_class(Source, Class, local(Line, Super, Summary)) :-xref_defined_class333,9485 -xref_defined_class(Source, Class, file(File)) :-xref_defined_class337,9659 -xref_defined_class(Source, Class, file(File)) :-xref_defined_class337,9659 -xref_defined_class(Source, Class, file(File)) :-xref_defined_class337,9659 -collect(Src, In) :-collect341,9794 -collect(Src, In) :-collect341,9794 -collect(Src, In) :-collect341,9794 -read_source_term(Src, In, Term, TermPos) :-read_source_term363,10397 -read_source_term(Src, In, Term, TermPos) :-read_source_term363,10397 -read_source_term(Src, In, Term, TermPos) :-read_source_term363,10397 -read_source_term(_, In, Term, TermPos) :-read_source_term380,10856 -read_source_term(_, In, Term, TermPos) :-read_source_term380,10856 -read_source_term(_, In, Term, TermPos) :-read_source_term380,10856 -report_syntax_error(E) :-report_syntax_error388,11007 -report_syntax_error(E) :-report_syntax_error388,11007 -report_syntax_error(E) :-report_syntax_error388,11007 -xref_expand((:- if(Cond)), (:- if(Cond))).xref_expand408,11540 -xref_expand((:- if(Cond)), (:- if(Cond))).xref_expand408,11540 -xref_expand((:- elif(Cond)), (:- elif(Cond))).xref_expand409,11583 -xref_expand((:- elif(Cond)), (:- elif(Cond))).xref_expand409,11583 -xref_expand((:- else), (:- else)).xref_expand410,11630 -xref_expand((:- else), (:- else)).xref_expand410,11630 -xref_expand((:- endif), (:- endif)).xref_expand411,11665 -xref_expand((:- endif), (:- endif)).xref_expand411,11665 -xref_expand(Term, _) :-xref_expand414,11759 -xref_expand(Term, _) :-xref_expand414,11759 -xref_expand(Term, _) :-xref_expand414,11759 -xref_expand(Term, Term) :-xref_expand418,11846 -xref_expand(Term, Term) :-xref_expand418,11846 -xref_expand(Term, Term) :-xref_expand418,11846 -xref_expand('$:-'(X), '$:-'(X)) :- !, % boot modulexref_expand420,11899 -xref_expand('$:-'(X), '$:-'(X)) :- !, % boot modulexref_expand420,11899 -xref_expand('$:-'(X), '$:-'(X)) :- !, % boot modulexref_expand420,11899 -xref_expand(Term, T) :-xref_expand422,11974 -xref_expand(Term, T) :-xref_expand422,11974 -xref_expand(Term, T) :-xref_expand422,11974 -requires_library((:- emacs_begin_mode(_,_,_,_,_)), library(emacs_extend)).requires_library434,12215 -requires_library((:- emacs_begin_mode(_,_,_,_,_)), library(emacs_extend)).requires_library434,12215 -requires_library((:- draw_begin_shape(_,_,_,_)), library(pcedraw)).requires_library435,12290 -requires_library((:- draw_begin_shape(_,_,_,_)), library(pcedraw)).requires_library435,12290 -process(Var, _) :-process442,12454 -process(Var, _) :-process442,12454 -process(Var, _) :-process442,12454 -process((:- Directive), Src) :- !,process444,12497 -process((:- Directive), Src) :- !,process444,12497 -process((:- Directive), Src) :- !,process444,12497 -process((?- Directive), Src) :- !,process446,12571 -process((?- Directive), Src) :- !,process446,12571 -process((?- Directive), Src) :- !,process446,12571 -process((Head :- Body), Src) :- !,process448,12645 -process((Head :- Body), Src) :- !,process448,12645 -process((Head :- Body), Src) :- !,process448,12645 -process('$source_location'(_File, _Line):Clause, Src) :- !,process451,12740 -process('$source_location'(_File, _Line):Clause, Src) :- !,process451,12740 -process('$source_location'(_File, _Line):Clause, Src) :- !,process451,12740 -process(Term, Src) :-process453,12823 -process(Term, Src) :-process453,12823 -process(Term, Src) :-process453,12823 -process(M:(Head :- Body), Src) :- !,process456,12896 -process(M:(Head :- Body), Src) :- !,process456,12896 -process(M:(Head :- Body), Src) :- !,process456,12896 -process(Head, Src) :-process458,12968 -process(Head, Src) :-process458,12968 -process(Head, Src) :-process458,12968 -process_directive(Var, _) :-process_directive465,13122 -process_directive(Var, _) :-process_directive465,13122 -process_directive(Var, _) :-process_directive465,13122 -process_directive((A,B), Src) :- !, % TBD: whta about other controlprocess_directive467,13204 -process_directive((A,B), Src) :- !, % TBD: whta about other controlprocess_directive467,13204 -process_directive((A,B), Src) :- !, % TBD: whta about other controlprocess_directive467,13204 -process_directive(List, Src) :-process_directive470,13342 -process_directive(List, Src) :-process_directive470,13342 -process_directive(List, Src) :-process_directive470,13342 -process_directive(use_module(Spec, Import), Src) :-process_directive473,13433 -process_directive(use_module(Spec, Import), Src) :-process_directive473,13433 -process_directive(use_module(Spec, Import), Src) :-process_directive473,13433 -process_directive(reexport(Spec, Import), Src) :-process_directive476,13579 -process_directive(reexport(Spec, Import), Src) :-process_directive476,13579 -process_directive(reexport(Spec, Import), Src) :-process_directive476,13579 -process_directive(reexport(Modules), Src) :-process_directive479,13722 -process_directive(reexport(Modules), Src) :-process_directive479,13722 -process_directive(reexport(Modules), Src) :-process_directive479,13722 -process_directive(use_module(Modules), Src) :-process_directive481,13808 -process_directive(use_module(Modules), Src) :-process_directive481,13808 -process_directive(use_module(Modules), Src) :-process_directive481,13808 -process_directive(consult(Modules), Src) :-process_directive483,13897 -process_directive(consult(Modules), Src) :-process_directive483,13897 -process_directive(consult(Modules), Src) :-process_directive483,13897 -process_directive(ensure_loaded(Modules), Src) :-process_directive485,13983 -process_directive(ensure_loaded(Modules), Src) :-process_directive485,13983 -process_directive(ensure_loaded(Modules), Src) :-process_directive485,13983 -process_directive(load_files(Files, _Options), Src) :-process_directive487,14075 -process_directive(load_files(Files, _Options), Src) :-process_directive487,14075 -process_directive(load_files(Files, _Options), Src) :-process_directive487,14075 -process_directive(include(Files), Src) :-process_directive489,14170 -process_directive(include(Files), Src) :-process_directive489,14170 -process_directive(include(Files), Src) :-process_directive489,14170 -process_directive(dynamic(Dynamic), Src) :-process_directive491,14242 -process_directive(dynamic(Dynamic), Src) :-process_directive491,14242 -process_directive(dynamic(Dynamic), Src) :-process_directive491,14242 -process_directive(thread_local(Dynamic), Src) :-process_directive493,14317 -process_directive(thread_local(Dynamic), Src) :-process_directive493,14317 -process_directive(thread_local(Dynamic), Src) :-process_directive493,14317 -process_directive(multifile(Dynamic), Src) :-process_directive495,14402 -process_directive(multifile(Dynamic), Src) :-process_directive495,14402 -process_directive(multifile(Dynamic), Src) :-process_directive495,14402 -process_directive(module(Module, Export), Src) :-process_directive497,14481 -process_directive(module(Module, Export), Src) :-process_directive497,14481 -process_directive(module(Module, Export), Src) :-process_directive497,14481 -process_directive(system_mode(on), _Src) :- !,process_directive500,14589 -process_directive(system_mode(on), _Src) :- !,process_directive500,14589 -process_directive(system_mode(on), _Src) :- !,process_directive500,14589 -process_directive(pce_begin_class_definition(Name, Meta, Super, Doc), Src) :-process_directive502,14659 -process_directive(pce_begin_class_definition(Name, Meta, Super, Doc), Src) :-process_directive502,14659 -process_directive(pce_begin_class_definition(Name, Meta, Super, Doc), Src) :-process_directive502,14659 -process_directive(pce_autoload(Name, From), Src) :-process_directive504,14789 -process_directive(pce_autoload(Name, From), Src) :-process_directive504,14789 -process_directive(pce_autoload(Name, From), Src) :-process_directive504,14789 -process_directive(op(P, A, N), Src) :-process_directive507,14897 -process_directive(op(P, A, N), Src) :-process_directive507,14897 -process_directive(op(P, A, N), Src) :-process_directive507,14897 -process_directive(style_check(X), _) :-process_directive509,14965 -process_directive(style_check(X), _) :-process_directive509,14965 -process_directive(style_check(X), _) :-process_directive509,14965 -process_directive(encoding(Enc), _) :-process_directive511,15022 -process_directive(encoding(Enc), _) :-process_directive511,15022 -process_directive(encoding(Enc), _) :-process_directive511,15022 -process_directive(system_module, _) :-process_directive516,15182 -process_directive(system_module, _) :-process_directive516,15182 -process_directive(system_module, _) :-process_directive516,15182 -process_directive(set_prolog_flag(character_escapes, Esc), _) :-process_directive518,15244 -process_directive(set_prolog_flag(character_escapes, Esc), _) :-process_directive518,15244 -process_directive(set_prolog_flag(character_escapes, Esc), _) :-process_directive518,15244 -process_directive(pce_expansion:push_compile_operators, _) :-process_directive520,15351 -process_directive(pce_expansion:push_compile_operators, _) :-process_directive520,15351 -process_directive(pce_expansion:push_compile_operators, _) :-process_directive520,15351 -process_directive(pce_expansion:pop_compile_operators, _) :-process_directive523,15514 -process_directive(pce_expansion:pop_compile_operators, _) :-process_directive523,15514 -process_directive(pce_expansion:pop_compile_operators, _) :-process_directive523,15514 -process_directive(meta_predicate(Meta), _) :-process_directive525,15619 -process_directive(meta_predicate(Meta), _) :-process_directive525,15619 -process_directive(meta_predicate(Meta), _) :-process_directive525,15619 -process_directive(arithmetic_function(FSpec), Src) :-process_directive527,15696 -process_directive(arithmetic_function(FSpec), Src) :-process_directive527,15696 -process_directive(arithmetic_function(FSpec), Src) :-process_directive527,15696 -process_directive(format_predicate(_, Goal), Src) :- !,process_directive531,15865 -process_directive(format_predicate(_, Goal), Src) :- !,process_directive531,15865 -process_directive(format_predicate(_, Goal), Src) :- !,process_directive531,15865 -process_directive(if(Cond), Src) :- !,process_directive534,16003 -process_directive(if(Cond), Src) :- !,process_directive534,16003 -process_directive(if(Cond), Src) :- !,process_directive534,16003 -process_directive(elif(Cond), Src) :- !,process_directive537,16124 -process_directive(elif(Cond), Src) :- !,process_directive537,16124 -process_directive(elif(Cond), Src) :- !,process_directive537,16124 -process_directive(else, _) :- !.process_directive540,16247 -process_directive(else, _) :- !.process_directive540,16247 -process_directive(else, _) :- !.process_directive540,16247 -process_directive(endif, _) :- !.process_directive541,16280 -process_directive(endif, _) :- !.process_directive541,16280 -process_directive(endif, _) :- !.process_directive541,16280 -process_directive(Goal, Src) :-process_directive542,16314 -process_directive(Goal, Src) :-process_directive542,16314 -process_directive(Goal, Src) :-process_directive542,16314 -process_meta_predicate((A,B)) :- !,process_meta_predicate551,16538 -process_meta_predicate((A,B)) :- !,process_meta_predicate551,16538 -process_meta_predicate((A,B)) :- !,process_meta_predicate551,16538 -process_meta_predicate(Decl) :-process_meta_predicate554,16630 -process_meta_predicate(Decl) :-process_meta_predicate554,16630 -process_meta_predicate(Decl) :-process_meta_predicate554,16630 -meta_args(I, Arity, _, _, []) :-meta_args566,16908 -meta_args(I, Arity, _, _, []) :-meta_args566,16908 -meta_args(I, Arity, _, _, []) :-meta_args566,16908 -meta_args(I, Arity, Decl, Head, [H|T]) :- % 0meta_args568,16956 -meta_args(I, Arity, Decl, Head, [H|T]) :- % 0meta_args568,16956 -meta_args(I, Arity, Decl, Head, [H|T]) :- % 0meta_args568,16956 -meta_args(I, Arity, Decl, Head, [H+A|T]) :- % I --> H+Imeta_args573,17095 -meta_args(I, Arity, Decl, Head, [H+A|T]) :- % I --> H+Imeta_args573,17095 -meta_args(I, Arity, Decl, Head, [H+A|T]) :- % I --> H+Imeta_args573,17095 -meta_args(I, Arity, Decl, Head, Meta) :-meta_args579,17263 -meta_args(I, Arity, Decl, Head, Meta) :-meta_args579,17263 -meta_args(I, Arity, Decl, Head, Meta) :-meta_args579,17263 -xref_meta((A, B), [A, B]).xref_meta588,17478 -xref_meta((A, B), [A, B]).xref_meta588,17478 -xref_meta((A; B), [A, B]).xref_meta589,17507 -xref_meta((A; B), [A, B]).xref_meta589,17507 -xref_meta((A| B), [A, B]).xref_meta590,17536 -xref_meta((A| B), [A, B]).xref_meta590,17536 -xref_meta((A -> B), [A, B]).xref_meta591,17565 -xref_meta((A -> B), [A, B]).xref_meta591,17565 -xref_meta((A *-> B), [A, B]).xref_meta592,17595 -xref_meta((A *-> B), [A, B]).xref_meta592,17595 -xref_meta(findall(_V,G,_L), [G]).xref_meta593,17626 -xref_meta(findall(_V,G,_L), [G]).xref_meta593,17626 -xref_meta(findall(_V,G,_L,_T), [G]).xref_meta594,17660 -xref_meta(findall(_V,G,_L,_T), [G]).xref_meta594,17660 -xref_meta(setof(_V, G, _L), [G]).xref_meta595,17697 -xref_meta(setof(_V, G, _L), [G]).xref_meta595,17697 -xref_meta(bagof(_V, G, _L), [G]).xref_meta596,17731 -xref_meta(bagof(_V, G, _L), [G]).xref_meta596,17731 -xref_meta(forall(A, B), [A, B]).xref_meta597,17765 -xref_meta(forall(A, B), [A, B]).xref_meta597,17765 -xref_meta(maplist(G,_), [G+1]).xref_meta598,17799 -xref_meta(maplist(G,_), [G+1]).xref_meta598,17799 -xref_meta(maplist(G,_,_), [G+2]).xref_meta599,17832 -xref_meta(maplist(G,_,_), [G+2]).xref_meta599,17832 -xref_meta(maplist(G,_,_,_), [G+3]).xref_meta600,17866 -xref_meta(maplist(G,_,_,_), [G+3]).xref_meta600,17866 -xref_meta(maplist(G,_,_,_,_), [G+4]).xref_meta601,17902 -xref_meta(maplist(G,_,_,_,_), [G+4]).xref_meta601,17902 -xref_meta(map_list_to_pairs(G,_,_), [G+2]).xref_meta602,17940 -xref_meta(map_list_to_pairs(G,_,_), [G+2]).xref_meta602,17940 -xref_meta(map_assoc(G, _), [G+1]).xref_meta603,17984 -xref_meta(map_assoc(G, _), [G+1]).xref_meta603,17984 -xref_meta(map_assoc(G, _, _), [G+2]).xref_meta604,18019 -xref_meta(map_assoc(G, _, _), [G+2]).xref_meta604,18019 -xref_meta(checklist(G, _L), [G+1]).xref_meta605,18057 -xref_meta(checklist(G, _L), [G+1]).xref_meta605,18057 -xref_meta(sublist(G, _, _), [G+1]).xref_meta606,18093 -xref_meta(sublist(G, _, _), [G+1]).xref_meta606,18093 -xref_meta(include(G, _, _), [G+1]).xref_meta607,18129 -xref_meta(include(G, _, _), [G+1]).xref_meta607,18129 -xref_meta(exclude(G, _, _), [G+1]).xref_meta608,18165 -xref_meta(exclude(G, _, _), [G+1]).xref_meta608,18165 -xref_meta(partition(G, _, _, _, _), [G+2]).xref_meta609,18201 -xref_meta(partition(G, _, _, _, _), [G+2]).xref_meta609,18201 -xref_meta(partition(G, _, _, _),[G+1]).xref_meta610,18245 -xref_meta(partition(G, _, _, _),[G+1]).xref_meta610,18245 -xref_meta(call(G), [G]).xref_meta611,18285 -xref_meta(call(G), [G]).xref_meta611,18285 -xref_meta(call(G, _), [G+1]).xref_meta612,18311 -xref_meta(call(G, _), [G+1]).xref_meta612,18311 -xref_meta(call(G, _, _), [G+2]).xref_meta613,18342 -xref_meta(call(G, _, _), [G+2]).xref_meta613,18342 -xref_meta(call(G, _, _, _), [G+3]).xref_meta614,18375 -xref_meta(call(G, _, _, _), [G+3]).xref_meta614,18375 -xref_meta(call(G, _, _, _, _), [G+4]).xref_meta615,18411 -xref_meta(call(G, _, _, _, _), [G+4]).xref_meta615,18411 -xref_meta(not(G), [G]).xref_meta616,18450 -xref_meta(not(G), [G]).xref_meta616,18450 -xref_meta(notrace(G), [G]).xref_meta617,18475 -xref_meta(notrace(G), [G]).xref_meta617,18475 -xref_meta(\+(G), [G]).xref_meta618,18504 -xref_meta(\+(G), [G]).xref_meta618,18504 -xref_meta(ignore(G), [G]).xref_meta619,18528 -xref_meta(ignore(G), [G]).xref_meta619,18528 -xref_meta(once(G), [G]).xref_meta620,18556 -xref_meta(once(G), [G]).xref_meta620,18556 -xref_meta(initialization(G), [G]).xref_meta621,18582 -xref_meta(initialization(G), [G]).xref_meta621,18582 -xref_meta(initialization(G,_), [G]).xref_meta622,18617 -xref_meta(initialization(G,_), [G]).xref_meta622,18617 -xref_meta(retract(Rule), [G]) :- head_of(Rule, G).xref_meta623,18654 -xref_meta(retract(Rule), [G]) :- head_of(Rule, G).xref_meta623,18654 -xref_meta(retract(Rule), [G]) :- head_of(Rule, G).xref_meta623,18654 -xref_meta(retract(Rule), [G]) :- head_of(Rule, G).xref_meta623,18654 -xref_meta(retract(Rule), [G]) :- head_of(Rule, G).xref_meta623,18654 -xref_meta(clause(G, _), [G]).xref_meta624,18705 -xref_meta(clause(G, _), [G]).xref_meta624,18705 -xref_meta(clause(G, _, _), [G]).xref_meta625,18736 -xref_meta(clause(G, _, _), [G]).xref_meta625,18736 -xref_meta(phrase(G, _A), [G+2]).xref_meta626,18769 -xref_meta(phrase(G, _A), [G+2]).xref_meta626,18769 -xref_meta(phrase(G, _A, _R), [G+2]).xref_meta627,18802 -xref_meta(phrase(G, _A, _R), [G+2]).xref_meta627,18802 -xref_meta(phrase_from_file(G,_),[G+2]).xref_meta628,18839 -xref_meta(phrase_from_file(G,_),[G+2]).xref_meta628,18839 -xref_meta(catch(A, _, B), [A, B]).xref_meta629,18879 -xref_meta(catch(A, _, B), [A, B]).xref_meta629,18879 -xref_meta(thread_create(A,_,_), [A]).xref_meta630,18914 -xref_meta(thread_create(A,_,_), [A]).xref_meta630,18914 -xref_meta(thread_signal(_,A), [A]).xref_meta631,18952 -xref_meta(thread_signal(_,A), [A]).xref_meta631,18952 -xref_meta(thread_at_exit(A), [A]).xref_meta632,18990 -xref_meta(thread_at_exit(A), [A]).xref_meta632,18990 -xref_meta(thread_initialization(A), [A]).xref_meta633,19025 -xref_meta(thread_initialization(A), [A]).xref_meta633,19025 -xref_meta(predsort(A,_,_), [A+3]).xref_meta634,19067 -xref_meta(predsort(A,_,_), [A+3]).xref_meta634,19067 -xref_meta(call_cleanup(A, B), [A, B]).xref_meta635,19102 -xref_meta(call_cleanup(A, B), [A, B]).xref_meta635,19102 -xref_meta(call_cleanup(A, _, B),[A, B]).xref_meta636,19141 -xref_meta(call_cleanup(A, _, B),[A, B]).xref_meta636,19141 -xref_meta(setup_call_cleanup(A, B, C),[A, B, C]).xref_meta637,19182 -xref_meta(setup_call_cleanup(A, B, C),[A, B, C]).xref_meta637,19182 -xref_meta(setup_call_catcher_cleanup(A, B, _, C),[A, B, C]).xref_meta638,19232 -xref_meta(setup_call_catcher_cleanup(A, B, _, C),[A, B, C]).xref_meta638,19232 -xref_meta(with_mutex(_,A), [A]).xref_meta639,19293 -xref_meta(with_mutex(_,A), [A]).xref_meta639,19293 -xref_meta(assume(G), [G]). % library(debug)xref_meta640,19326 -xref_meta(assume(G), [G]). % library(debug)xref_meta640,19326 -xref_meta(assertion(G), [G]). % library(debug)xref_meta641,19371 -xref_meta(assertion(G), [G]). % library(debug)xref_meta641,19371 -xref_meta(freeze(_, G), [G]).xref_meta642,19419 -xref_meta(freeze(_, G), [G]).xref_meta642,19419 -xref_meta(when(C, A), [C, A]).xref_meta643,19450 -xref_meta(when(C, A), [C, A]).xref_meta643,19450 -xref_meta(clause(G, _), [G]).xref_meta644,19482 -xref_meta(clause(G, _), [G]).xref_meta644,19482 -xref_meta(clause(G, _, _), [G]).xref_meta645,19513 -xref_meta(clause(G, _, _), [G]).xref_meta645,19513 -xref_meta(time(G), [G]). % development systemxref_meta646,19546 -xref_meta(time(G), [G]). % development systemxref_meta646,19546 -xref_meta(profile(G), [G]).xref_meta647,19593 -xref_meta(profile(G), [G]).xref_meta647,19593 -xref_meta(at_halt(G), [G]).xref_meta648,19622 -xref_meta(at_halt(G), [G]).xref_meta648,19622 -xref_meta(call_with_time_limit(_, G), [G]).xref_meta649,19651 -xref_meta(call_with_time_limit(_, G), [G]).xref_meta649,19651 -xref_meta(call_with_depth_limit(G, _, _), [G]).xref_meta650,19695 -xref_meta(call_with_depth_limit(G, _, _), [G]).xref_meta650,19695 -xref_meta(alarm(_, G, _), [G]).xref_meta651,19743 -xref_meta(alarm(_, G, _), [G]).xref_meta651,19743 -xref_meta(alarm(_, G, _, _), [G]).xref_meta652,19775 -xref_meta(alarm(_, G, _, _), [G]).xref_meta652,19775 -xref_meta('$add_directive_wic'(G), [G]).xref_meta653,19810 -xref_meta('$add_directive_wic'(G), [G]).xref_meta653,19810 -xref_meta(with_output_to(_, G), [G]).xref_meta654,19851 -xref_meta(with_output_to(_, G), [G]).xref_meta654,19851 -xref_meta(if(G), [G]).xref_meta655,19889 -xref_meta(if(G), [G]).xref_meta655,19889 -xref_meta(elif(G), [G]).xref_meta656,19913 -xref_meta(elif(G), [G]).xref_meta656,19913 -xref_meta(meta_options(G,_,_), [G+1]).xref_meta657,19939 -xref_meta(meta_options(G,_,_), [G+1]).xref_meta657,19939 -xref_meta(pce_global(_, new(_)), _) :- !, fail.xref_meta660,20007 -xref_meta(pce_global(_, new(_)), _) :- !, fail.xref_meta660,20007 -xref_meta(pce_global(_, new(_)), _) :- !, fail.xref_meta660,20007 -xref_meta(pce_global(_, B), [B+1]).xref_meta661,20055 -xref_meta(pce_global(_, B), [B+1]).xref_meta661,20055 -xref_meta(ifmaintainer(G), [G]). % used in manualxref_meta662,20095 -xref_meta(ifmaintainer(G), [G]). % used in manualxref_meta662,20095 -xref_meta(listen(_, G), [G]). % library(broadcast)xref_meta663,20145 -xref_meta(listen(_, G), [G]). % library(broadcast)xref_meta663,20145 -xref_meta(listen(_, _, G), [G]).xref_meta664,20197 -xref_meta(listen(_, _, G), [G]).xref_meta664,20197 -xref_meta(in_pce_thread(G), [G]).xref_meta665,20230 -xref_meta(in_pce_thread(G), [G]).xref_meta665,20230 -xref_meta(G, Meta) :- % call user extensionsxref_meta667,20265 -xref_meta(G, Meta) :- % call user extensionsxref_meta667,20265 -xref_meta(G, Meta) :- % call user extensionsxref_meta667,20265 -xref_meta(G, Meta) :- % Generated from :- meta_predicatexref_meta669,20340 -xref_meta(G, Meta) :- % Generated from :- meta_predicatexref_meta669,20340 -xref_meta(G, Meta) :- % Generated from :- meta_predicatexref_meta669,20340 -head_of(Var, _) :-head_of677,20485 -head_of(Var, _) :-head_of677,20485 -head_of(Var, _) :-head_of677,20485 -head_of((Head :- _), Head).head_of679,20524 -head_of((Head :- _), Head).head_of679,20524 -head_of(Head, Head).head_of680,20552 -head_of(Head, Head).head_of680,20552 -xref_hook(Hook) :-xref_hook688,20767 -xref_hook(Hook) :-xref_hook688,20767 -xref_hook(Hook) :-xref_hook688,20767 -xref_hook(Hook) :-xref_hook690,20806 -xref_hook(Hook) :-xref_hook690,20806 -xref_hook(Hook) :-xref_hook690,20806 -hook(attr_portray_hook(_,_)).hook694,20840 -hook(attr_portray_hook(_,_)).hook694,20840 -hook(attr_unify_hook(_,_)).hook695,20870 -hook(attr_unify_hook(_,_)).hook695,20870 -hook(goal_expansion(_,_)).hook696,20898 -hook(goal_expansion(_,_)).hook696,20898 -hook(term_expansion(_,_)).hook697,20925 -hook(term_expansion(_,_)).hook697,20925 -hook(resource(_,_,_)).hook698,20952 -hook(resource(_,_,_)).hook698,20952 -hook(emacs_prolog_colours:goal_classification(_,_)).hook700,20976 -hook(emacs_prolog_colours:goal_classification(_,_)).hook700,20976 -hook(emacs_prolog_colours:term_colours(_,_)).hook701,21029 -hook(emacs_prolog_colours:term_colours(_,_)).hook701,21029 -hook(emacs_prolog_colours:goal_colours(_,_)).hook702,21075 -hook(emacs_prolog_colours:goal_colours(_,_)).hook702,21075 -hook(emacs_prolog_colours:style(_,_)).hook703,21121 -hook(emacs_prolog_colours:style(_,_)).hook703,21121 -hook(emacs_prolog_colours:identify(_,_)).hook704,21160 -hook(emacs_prolog_colours:identify(_,_)).hook704,21160 -hook(pce_principal:pce_class(_,_,_,_,_,_)).hook705,21202 -hook(pce_principal:pce_class(_,_,_,_,_,_)).hook705,21202 -hook(pce_principal:send_implementation(_,_,_)).hook706,21246 -hook(pce_principal:send_implementation(_,_,_)).hook706,21246 -hook(pce_principal:get_implementation(_,_,_,_)).hook707,21294 -hook(pce_principal:get_implementation(_,_,_,_)).hook707,21294 -hook(pce_principal:pce_lazy_get_method(_,_,_)).hook708,21343 -hook(pce_principal:pce_lazy_get_method(_,_,_)).hook708,21343 -hook(pce_principal:pce_lazy_send_method(_,_,_)).hook709,21391 -hook(pce_principal:pce_lazy_send_method(_,_,_)).hook709,21391 -hook(pce_principal:pce_uses_template(_,_)).hook710,21440 -hook(pce_principal:pce_uses_template(_,_)).hook710,21440 -hook(prolog:locate_clauses(_,_)).hook711,21484 -hook(prolog:locate_clauses(_,_)).hook711,21484 -hook(prolog:message(_,_,_)).hook712,21518 -hook(prolog:message(_,_,_)).hook712,21518 -hook(prolog:message_context(_,_,_)).hook713,21547 -hook(prolog:message_context(_,_,_)).hook713,21547 -hook(prolog:debug_control_hook(_)).hook714,21584 -hook(prolog:debug_control_hook(_)).hook714,21584 -hook(prolog:help_hook(_)).hook715,21620 -hook(prolog:help_hook(_)).hook715,21620 -hook(prolog:show_profile_hook(_,_)).hook716,21647 -hook(prolog:show_profile_hook(_,_)).hook716,21647 -hook(prolog:general_exception(_,_)).hook717,21684 -hook(prolog:general_exception(_,_)).hook717,21684 -hook(prolog_edit:load).hook718,21721 -hook(prolog_edit:load).hook718,21721 -hook(prolog_edit:locate(_,_,_)).hook719,21745 -hook(prolog_edit:locate(_,_,_)).hook719,21745 -hook(shlib:unload_all_foreign_libraries).hook720,21778 -hook(shlib:unload_all_foreign_libraries).hook720,21778 -hook(system:'$foreign_registered'(_, _)).hook721,21820 -hook(system:'$foreign_registered'(_, _)).hook721,21820 -hook(user:exception(_,_,_)).hook722,21862 -hook(user:exception(_,_,_)).hook722,21862 -hook(user:file_search_path(_,_)).hook723,21891 -hook(user:file_search_path(_,_)).hook723,21891 -hook(user:library_directory(_)).hook724,21925 -hook(user:library_directory(_)).hook724,21925 -hook(user:message_hook(_,_,_)).hook725,21958 -hook(user:message_hook(_,_,_)).hook725,21958 -hook(user:portray(_)).hook726,21990 -hook(user:portray(_)).hook726,21990 -hook(user:prolog_clause_name(_,_)).hook727,22013 -hook(user:prolog_clause_name(_,_)).hook727,22013 -hook(user:prolog_list_goal(_)).hook728,22049 -hook(user:prolog_list_goal(_)).hook728,22049 -hook(user:prolog_predicate_name(_,_)).hook729,22081 -hook(user:prolog_predicate_name(_,_)).hook729,22081 -hook(user:prolog_trace_interception(_,_,_,_)).hook730,22120 -hook(user:prolog_trace_interception(_,_,_,_)).hook730,22120 -hook(user:prolog_event_hook(_)).hook731,22167 -hook(user:prolog_event_hook(_)).hook731,22167 -hook(user:prolog_exception_hook(_,_,_,_)).hook732,22200 -hook(user:prolog_exception_hook(_,_,_,_)).hook732,22200 -arith_callable(Var, _) :-arith_callable739,22351 -arith_callable(Var, _) :-arith_callable739,22351 -arith_callable(Var, _) :-arith_callable739,22351 -arith_callable(Module:Spec, Module:Goal) :- !,arith_callable741,22397 -arith_callable(Module:Spec, Module:Goal) :- !,arith_callable741,22397 -arith_callable(Module:Spec, Module:Goal) :- !,arith_callable741,22397 -arith_callable(Name/Arity, Goal) :-arith_callable743,22473 -arith_callable(Name/Arity, Goal) :-arith_callable743,22473 -arith_callable(Name/Arity, Goal) :-arith_callable743,22473 -process_body(Var, _, _) :-process_body753,22712 -process_body(Var, _, _) :-process_body753,22712 -process_body(Var, _, _) :-process_body753,22712 -process_body(Goal, Origin, Src) :-process_body755,22753 -process_body(Goal, Origin, Src) :-process_body755,22753 -process_body(Goal, Origin, Src) :-process_body755,22753 -process_body(Goal, Origin, Src) :-process_body760,22919 -process_body(Goal, Origin, Src) :-process_body760,22919 -process_body(Goal, Origin, Src) :-process_body760,22919 -process_body(load_foreign_library(File), _Origin, Src) :-process_body762,22996 -process_body(load_foreign_library(File), _Origin, Src) :-process_body762,22996 -process_body(load_foreign_library(File), _Origin, Src) :-process_body762,22996 -process_body(load_foreign_library(File, _Init), _Origin, Src) :-process_body764,23083 -process_body(load_foreign_library(File, _Init), _Origin, Src) :-process_body764,23083 -process_body(load_foreign_library(File, _Init), _Origin, Src) :-process_body764,23083 -process_body(Goal, Origin, Src) :-process_body766,23177 -process_body(Goal, Origin, Src) :-process_body766,23177 -process_body(Goal, Origin, Src) :-process_body766,23177 -process_body(Goal, Origin, Src) :-process_body770,23317 -process_body(Goal, Origin, Src) :-process_body770,23317 -process_body(Goal, Origin, Src) :-process_body770,23317 -process_body(Goal, Origin, Src) :-process_body774,23455 -process_body(Goal, Origin, Src) :-process_body774,23455 -process_body(Goal, Origin, Src) :-process_body774,23455 -process_called_list([], _, _).process_called_list777,23526 -process_called_list([], _, _).process_called_list777,23526 -process_called_list([H|T], Origin, Src) :-process_called_list778,23557 -process_called_list([H|T], Origin, Src) :-process_called_list778,23557 -process_called_list([H|T], Origin, Src) :-process_called_list778,23557 -process_meta(A+N, Origin, Src) :- !,process_meta782,23670 -process_meta(A+N, Origin, Src) :- !,process_meta782,23670 -process_meta(A+N, Origin, Src) :- !,process_meta782,23670 -process_meta(G, Origin, Src) :-process_meta787,23778 -process_meta(G, Origin, Src) :-process_meta787,23778 -process_meta(G, Origin, Src) :-process_meta787,23778 -extend(Var, _, _) :-extend790,23842 -extend(Var, _, _) :-extend790,23842 -extend(Var, _, _) :-extend790,23842 -extend(M:G, N, M:GX) :- !,extend792,23883 -extend(M:G, N, M:GX) :- !,extend792,23883 -extend(M:G, N, M:GX) :- !,extend792,23883 -extend(G, N, GX) :-extend795,23943 -extend(G, N, GX) :-extend795,23943 -extend(G, N, GX) :-extend795,23943 -asserting_goal(assert(Rule), Rule).asserting_goal802,24052 -asserting_goal(assert(Rule), Rule).asserting_goal802,24052 -asserting_goal(asserta(Rule), Rule).asserting_goal803,24088 -asserting_goal(asserta(Rule), Rule).asserting_goal803,24088 -asserting_goal(assertz(Rule), Rule).asserting_goal804,24125 -asserting_goal(assertz(Rule), Rule).asserting_goal804,24125 -asserting_goal(assert(Rule,_), Rule).asserting_goal805,24162 -asserting_goal(assert(Rule,_), Rule).asserting_goal805,24162 -asserting_goal(asserta(Rule,_), Rule).asserting_goal806,24200 -asserting_goal(asserta(Rule,_), Rule).asserting_goal806,24200 -asserting_goal(assertz(Rule,_), Rule).asserting_goal807,24239 -asserting_goal(assertz(Rule,_), Rule).asserting_goal807,24239 -process_assert(0, _, _) :- !. % catch variablesprocess_assert809,24279 -process_assert(0, _, _) :- !. % catch variablesprocess_assert809,24279 -process_assert(0, _, _) :- !. % catch variablesprocess_assert809,24279 -process_assert((_:-Body), Origin, Src) :- !,process_assert810,24328 -process_assert((_:-Body), Origin, Src) :- !,process_assert810,24328 -process_assert((_:-Body), Origin, Src) :- !,process_assert810,24328 -process_assert(_, _, _).process_assert812,24407 -process_assert(_, _, _).process_assert812,24407 -pce_goal(new(_,_), new(-, new)).pce_goal819,24530 -pce_goal(new(_,_), new(-, new)).pce_goal819,24530 -pce_goal(send(_,_), send(arg, msg)).pce_goal820,24563 -pce_goal(send(_,_), send(arg, msg)).pce_goal820,24563 -pce_goal(send_class(_,_,_), send_class(arg, arg, msg)).pce_goal821,24600 -pce_goal(send_class(_,_,_), send_class(arg, arg, msg)).pce_goal821,24600 -pce_goal(get(_,_,_), get(arg, msg, -)).pce_goal822,24656 -pce_goal(get(_,_,_), get(arg, msg, -)).pce_goal822,24656 -pce_goal(get_class(_,_,_,_), get_class(arg, arg, msg, -)).pce_goal823,24696 -pce_goal(get_class(_,_,_,_), get_class(arg, arg, msg, -)).pce_goal823,24696 -pce_goal(get_chain(_,_,_), get_chain(arg, msg, -)).pce_goal824,24755 -pce_goal(get_chain(_,_,_), get_chain(arg, msg, -)).pce_goal824,24755 -pce_goal(get_object(_,_,_), get_object(arg, msg, -)).pce_goal825,24807 -pce_goal(get_object(_,_,_), get_object(arg, msg, -)).pce_goal825,24807 -process_xpce_goal(G, Origin, Src) :-process_xpce_goal827,24862 -process_xpce_goal(G, Origin, Src) :-process_xpce_goal827,24862 -process_xpce_goal(G, Origin, Src) :-process_xpce_goal827,24862 -process_xpce_arg(new, Term, Origin, Src) :-process_xpce_arg837,25078 -process_xpce_arg(new, Term, Origin, Src) :-process_xpce_arg837,25078 -process_xpce_arg(new, Term, Origin, Src) :-process_xpce_arg837,25078 -process_xpce_arg(arg, Term, Origin, Src) :-process_xpce_arg840,25172 -process_xpce_arg(arg, Term, Origin, Src) :-process_xpce_arg840,25172 -process_xpce_arg(arg, Term, Origin, Src) :-process_xpce_arg840,25172 -process_xpce_arg(msg, Term, Origin, Src) :-process_xpce_arg843,25266 -process_xpce_arg(msg, Term, Origin, Src) :-process_xpce_arg843,25266 -process_xpce_arg(msg, Term, Origin, Src) :-process_xpce_arg843,25266 -process_new(_M:_Term, _, _) :- !. % TBD: Calls on other modules!process_new851,25422 -process_new(_M:_Term, _, _) :- !. % TBD: Calls on other modules!process_new851,25422 -process_new(_M:_Term, _, _) :- !. % TBD: Calls on other modules!process_new851,25422 -process_new(Term, Origin, Src) :-process_new852,25487 -process_new(Term, Origin, Src) :-process_new852,25487 -process_new(Term, Origin, Src) :-process_new852,25487 -assert_new(_, _, Term) :-assert_new860,25648 -assert_new(_, _, Term) :-assert_new860,25648 -assert_new(_, _, Term) :-assert_new860,25648 -assert_new(Src, Origin, Control) :-assert_new862,25697 -assert_new(Src, Origin, Control) :-assert_new862,25697 -assert_new(Src, Origin, Control) :-assert_new862,25697 -assert_new(Src, Origin, Term) :-assert_new867,25861 -assert_new(Src, Origin, Term) :-assert_new867,25861 -assert_new(Src, Origin, Term) :-assert_new867,25861 -assert_new(_, _, @(_)) :- !.assert_new882,26250 -assert_new(_, _, @(_)) :- !.assert_new882,26250 -assert_new(_, _, @(_)) :- !.assert_new882,26250 -assert_new(Src, _, Term) :-assert_new883,26279 -assert_new(Src, _, Term) :-assert_new883,26279 -assert_new(Src, _, Term) :-assert_new883,26279 -pce_control_class(and).pce_control_class888,26365 -pce_control_class(and).pce_control_class888,26365 -pce_control_class(or).pce_control_class889,26389 -pce_control_class(or).pce_control_class889,26389 -pce_control_class(if).pce_control_class890,26412 -pce_control_class(if).pce_control_class890,26412 -pce_control_class(not).pce_control_class891,26435 -pce_control_class(not).pce_control_class891,26435 -process_use_module(_Module:_Files, _, _) :- !. % loaded in another moduleprocess_use_module900,26620 -process_use_module(_Module:_Files, _, _) :- !. % loaded in another moduleprocess_use_module900,26620 -process_use_module(_Module:_Files, _, _) :- !. % loaded in another moduleprocess_use_module900,26620 -process_use_module([], _, _) :- !.process_use_module901,26694 -process_use_module([], _, _) :- !.process_use_module901,26694 -process_use_module([], _, _) :- !.process_use_module901,26694 -process_use_module([H|T], Src, Reexport) :- !,process_use_module902,26729 -process_use_module([H|T], Src, Reexport) :- !,process_use_module902,26729 -process_use_module([H|T], Src, Reexport) :- !,process_use_module902,26729 -process_use_module(library(pce), Src, Reexport) :- !, % bit specialprocess_use_module905,26854 -process_use_module(library(pce), Src, Reexport) :- !, % bit specialprocess_use_module905,26854 -process_use_module(library(pce), Src, Reexport) :- !, % bit specialprocess_use_module905,26854 -process_use_module(File, Src, Reexport) :-process_use_module909,27064 -process_use_module(File, Src, Reexport) :-process_use_module909,27064 -process_use_module(File, Src, Reexport) :-process_use_module909,27064 -process_pce_import(Name/Arity, Src, Path, Reexport) :-process_pce_import919,27322 -process_pce_import(Name/Arity, Src, Path, Reexport) :-process_pce_import919,27322 -process_pce_import(Name/Arity, Src, Path, Reexport) :-process_pce_import919,27322 -process_pce_import(op(P,T,N), Src, _, _) :-process_pce_import928,27580 -process_pce_import(op(P,T,N), Src, _, _) :-process_pce_import928,27580 -process_pce_import(op(P,T,N), Src, _, _) :-process_pce_import928,27580 -xref_public_list(File, Path, Public, Src) :-xref_public_list938,27974 -xref_public_list(File, Path, Public, Src) :-xref_public_list938,27974 -xref_public_list(File, Path, Public, Src) :-xref_public_list938,27974 -xref_public_list(File, Path, Src, Public, Rest) :-xref_public_list941,28068 -xref_public_list(File, Path, Src, Public, Rest) :-xref_public_list941,28068 -xref_public_list(File, Path, Src, Public, Rest) :-xref_public_list941,28068 -read_public(In, File, Public, Rest) :-read_public947,28296 -read_public(In, File, Public, Rest) :-read_public947,28296 -read_public(In, File, Public, Rest) :-read_public947,28296 -read_reexport((:- reexport(Spec)), In, File, Reexport, Rest) :- !,read_reexport953,28487 -read_reexport((:- reexport(Spec)), In, File, Reexport, Rest) :- !,read_reexport953,28487 -read_reexport((:- reexport(Spec)), In, File, Reexport, Rest) :- !,read_reexport953,28487 -read_reexport((:- reexport(Spec, Import)), In, File, Reexport, Rest) :- !,read_reexport957,28678 -read_reexport((:- reexport(Spec, Import)), In, File, Reexport, Rest) :- !,read_reexport957,28678 -read_reexport((:- reexport(Spec, Import)), In, File, Reexport, Rest) :- !,read_reexport957,28678 -read_reexport(_, _, _, Rest, Rest).read_reexport961,28889 -read_reexport(_, _, _, Rest, Rest).read_reexport961,28889 -reexport_files([], _, Public, Public) :- !.reexport_files964,28927 -reexport_files([], _, Public, Public) :- !.reexport_files964,28927 -reexport_files([], _, Public, Public) :- !.reexport_files964,28927 -reexport_files([H|T], Src, Public, Rest) :- !,reexport_files965,28971 -reexport_files([H|T], Src, Public, Rest) :- !,reexport_files965,28971 -reexport_files([H|T], Src, Public, Rest) :- !,reexport_files965,28971 -reexport_files(Spec, Src, Public, Rest) :-reexport_files968,29101 -reexport_files(Spec, Src, Public, Rest) :-reexport_files968,29101 -reexport_files(Spec, Src, Public, Rest) :-reexport_files968,29101 -public_from_import(except(Map), File, Src, Export, Rest) :- !,public_from_import971,29189 -public_from_import(except(Map), File, Src, Export, Rest) :- !,public_from_import971,29189 -public_from_import(except(Map), File, Src, Export, Rest) :- !,public_from_import971,29189 -public_from_import(Import, _, _, Export, Rest) :-public_from_import974,29329 -public_from_import(Import, _, _, Export, Rest) :-public_from_import974,29329 -public_from_import(Import, _, _, Export, Rest) :-public_from_import974,29329 -except([], Public, Export, Rest) :-except978,29421 -except([], Public, Export, Rest) :-except978,29421 -except([], Public, Export, Rest) :-except978,29421 -except([PI0 as NewName|Map], Public, Export, Rest) :- !,except980,29488 -except([PI0 as NewName|Map], Public, Export, Rest) :- !,except980,29488 -except([PI0 as NewName|Map], Public, Export, Rest) :- !,except980,29488 -except([PI0|Map], Public, Export, Rest) :-except984,29645 -except([PI0|Map], Public, Export, Rest) :-except984,29645 -except([PI0|Map], Public, Export, Rest) :-except984,29645 -map_as([PI|T], Repl, As, [PI2|T]) :-map_as991,29804 -map_as([PI|T], Repl, As, [PI2|T]) :-map_as991,29804 -map_as([PI|T], Repl, As, [PI2|T]) :-map_as991,29804 -map_as([H|T0], Repl, As, [H|T]) :-map_as994,29886 -map_as([H|T0], Repl, As, [H|T]) :-map_as994,29886 -map_as([H|T0], Repl, As, [H|T]) :-map_as994,29886 -pi_as(_/Arity, Name, Name/Arity).pi_as997,29949 -pi_as(_/Arity, Name, Name/Arity).pi_as997,29949 -pi_as(_//Arity, Name, Name//Arity).pi_as998,29983 -pi_as(_//Arity, Name, Name//Arity).pi_as998,29983 -import_name_map([], L, L).import_name_map1000,30020 -import_name_map([], L, L).import_name_map1000,30020 -import_name_map([_/Arity as NewName|T0], [NewName/Arity|T], Tail) :- !,import_name_map1001,30047 -import_name_map([_/Arity as NewName|T0], [NewName/Arity|T], Tail) :- !,import_name_map1001,30047 -import_name_map([_/Arity as NewName|T0], [NewName/Arity|T], Tail) :- !,import_name_map1001,30047 -import_name_map([_//Arity as NewName|T0], [NewName//Arity|T], Tail) :- !,import_name_map1003,30150 -import_name_map([_//Arity as NewName|T0], [NewName//Arity|T], Tail) :- !,import_name_map1003,30150 -import_name_map([_//Arity as NewName|T0], [NewName//Arity|T], Tail) :- !,import_name_map1003,30150 -import_name_map([H|T0], [H|T], Tail) :-import_name_map1005,30255 -import_name_map([H|T0], [H|T], Tail) :-import_name_map1005,30255 -import_name_map([H|T0], [H|T], Tail) :-import_name_map1005,30255 -canonical_pi(Name//Arity0, PI) :-canonical_pi1008,30327 -canonical_pi(Name//Arity0, PI) :-canonical_pi1008,30327 -canonical_pi(Name//Arity0, PI) :-canonical_pi1008,30327 -canonical_pi(PI, PI).canonical_pi1012,30422 -canonical_pi(PI, PI).canonical_pi1012,30422 -same_pi(Canonical, PI2) :-same_pi1014,30445 -same_pi(Canonical, PI2) :-same_pi1014,30445 -same_pi(Canonical, PI2) :-same_pi1014,30445 -process_include([], _) :- !.process_include1022,30601 -process_include([], _) :- !.process_include1022,30601 -process_include([], _) :- !.process_include1022,30601 -process_include([H|T], Src) :- !,process_include1023,30630 -process_include([H|T], Src) :- !,process_include1023,30630 -process_include([H|T], Src) :- !,process_include1023,30630 -process_include(File, Src) :-process_include1026,30716 -process_include(File, Src) :-process_include1026,30716 -process_include(File, Src) :-process_include1026,30716 -process_include(_, _).process_include1029,30831 -process_include(_, _).process_include1029,30831 -process_terms([], _).process_terms1031,30855 -process_terms([], _).process_terms1031,30855 -process_terms([H|T], Src) :-process_terms1032,30877 -process_terms([H|T], Src) :-process_terms1032,30877 -process_terms([H|T], Src) :-process_terms1032,30877 -read_src_to_terms(File, Src, Terms) :-read_src_to_terms1036,30949 -read_src_to_terms(File, Src, Terms) :-read_src_to_terms1036,30949 -read_src_to_terms(File, Src, Terms) :-read_src_to_terms1036,30949 -read_clauses(In, Terms) :-read_clauses1042,31128 -read_clauses(In, Terms) :-read_clauses1042,31128 -read_clauses(In, Terms) :-read_clauses1042,31128 -read_clauses(end_of_file, _, []) :- !.read_clauses1046,31208 -read_clauses(end_of_file, _, []) :- !.read_clauses1046,31208 -read_clauses(end_of_file, _, []) :- !.read_clauses1046,31208 -read_clauses(Term, In, [Term|T]) :-read_clauses1047,31247 -read_clauses(Term, In, [Term|T]) :-read_clauses1047,31247 -read_clauses(Term, In, [Term|T]) :-read_clauses1047,31247 -process_foreign(Spec, Src) :-process_foreign1056,31407 -process_foreign(Spec, Src) :-process_foreign1056,31407 -process_foreign(Spec, Src) :-process_foreign1056,31407 -process_foreign_defined([], _, _).process_foreign_defined1064,31586 -process_foreign_defined([], _, _).process_foreign_defined1064,31586 -process_foreign_defined([H|T], M, Src) :-process_foreign_defined1065,31621 -process_foreign_defined([H|T], M, Src) :-process_foreign_defined1065,31621 -process_foreign_defined([H|T], M, Src) :-process_foreign_defined1065,31621 -chr_expandable((:- constraints(_))).chr_expandable1087,32521 -chr_expandable((:- constraints(_))).chr_expandable1087,32521 -chr_expandable((constraints(_))).chr_expandable1088,32558 -chr_expandable((constraints(_))).chr_expandable1088,32558 -chr_expandable((handler(_))) :-chr_expandable1089,32592 -chr_expandable((handler(_))) :-chr_expandable1089,32592 -chr_expandable((handler(_))) :-chr_expandable1089,32592 -chr_expandable((rules(_))) :-chr_expandable1091,32638 -chr_expandable((rules(_))) :-chr_expandable1091,32638 -chr_expandable((rules(_))) :-chr_expandable1091,32638 -chr_expandable(<=>(_, _)) :-chr_expandable1093,32682 -chr_expandable(<=>(_, _)) :-chr_expandable1093,32682 -chr_expandable(<=>(_, _)) :-chr_expandable1093,32682 -chr_expandable(@(_, _)) :-chr_expandable1095,32725 -chr_expandable(@(_, _)) :-chr_expandable1095,32725 -chr_expandable(@(_, _)) :-chr_expandable1095,32725 -chr_expandable(==>(_, _)) :-chr_expandable1097,32766 -chr_expandable(==>(_, _)) :-chr_expandable1097,32766 -chr_expandable(==>(_, _)) :-chr_expandable1097,32766 -chr_expandable(pragma(_, _)) :-chr_expandable1099,32809 -chr_expandable(pragma(_, _)) :-chr_expandable1099,32809 -chr_expandable(pragma(_, _)) :-chr_expandable1099,32809 -chr_expandable(option(_, _)) :-chr_expandable1101,32855 -chr_expandable(option(_, _)) :-chr_expandable1101,32855 -chr_expandable(option(_, _)) :-chr_expandable1101,32855 -is_chr_file :-is_chr_file1104,32902 -process_chr(@(_Name, Rule), Src) :-process_chr1108,32955 -process_chr(@(_Name, Rule), Src) :-process_chr1108,32955 -process_chr(@(_Name, Rule), Src) :-process_chr1108,32955 -process_chr(pragma(Rule, _Pragma), Src) :-process_chr1110,33016 -process_chr(pragma(Rule, _Pragma), Src) :-process_chr1110,33016 -process_chr(pragma(Rule, _Pragma), Src) :-process_chr1110,33016 -process_chr(<=>(Head, Body), Src) :-process_chr1112,33084 -process_chr(<=>(Head, Body), Src) :-process_chr1112,33084 -process_chr(<=>(Head, Body), Src) :-process_chr1112,33084 -process_chr(==>(Head, Body), Src) :-process_chr1115,33171 -process_chr(==>(Head, Body), Src) :-process_chr1115,33171 -process_chr(==>(Head, Body), Src) :-process_chr1115,33171 -process_chr((:- constraints(C)), Src) :-process_chr1118,33258 -process_chr((:- constraints(C)), Src) :-process_chr1118,33258 -process_chr((:- constraints(C)), Src) :-process_chr1118,33258 -process_chr(constraints(_), Src) :-process_chr1120,33334 -process_chr(constraints(_), Src) :-process_chr1120,33334 -process_chr(constraints(_), Src) :-process_chr1120,33334 -chr_head(X, _, _) :-chr_head1126,33433 -chr_head(X, _, _) :-chr_head1126,33433 -chr_head(X, _, _) :-chr_head1126,33433 -chr_head(\(A,B), Src, H) :-chr_head1128,33486 -chr_head(\(A,B), Src, H) :-chr_head1128,33486 -chr_head(\(A,B), Src, H) :-chr_head1128,33486 -chr_head((H0,B), Src, H) :-chr_head1131,33562 -chr_head((H0,B), Src, H) :-chr_head1131,33562 -chr_head((H0,B), Src, H) :-chr_head1131,33562 -chr_head(H0, Src, H) :-chr_head1134,33642 -chr_head(H0, Src, H) :-chr_head1134,33642 -chr_head(H0, Src, H) :-chr_head1134,33642 -chr_defined(X, _, _) :-chr_defined1137,33693 -chr_defined(X, _, _) :-chr_defined1137,33693 -chr_defined(X, _, _) :-chr_defined1137,33693 -chr_defined(#(C,_Id), Src, C) :- !,chr_defined1139,33729 -chr_defined(#(C,_Id), Src, C) :- !,chr_defined1139,33729 -chr_defined(#(C,_Id), Src, C) :- !,chr_defined1139,33729 -chr_defined(A, Src, A) :-chr_defined1141,33793 -chr_defined(A, Src, A) :-chr_defined1141,33793 -chr_defined(A, Src, A) :-chr_defined1141,33793 -chr_body(X, From, Src) :-chr_body1144,33848 -chr_body(X, From, Src) :-chr_body1144,33848 -chr_body(X, From, Src) :-chr_body1144,33848 -chr_body('|'(Guard, Goals), H, Src) :- !,chr_body1147,33915 -chr_body('|'(Guard, Goals), H, Src) :- !,chr_body1147,33915 -chr_body('|'(Guard, Goals), H, Src) :- !,chr_body1147,33915 -chr_body(G, From, Src) :-chr_body1150,34009 -chr_body(G, From, Src) :-chr_body1150,34009 -chr_body(G, From, Src) :-chr_body1150,34009 -assert_constraint(_, Head) :-assert_constraint1153,34065 -assert_constraint(_, Head) :-assert_constraint1153,34065 -assert_constraint(_, Head) :-assert_constraint1153,34065 -assert_constraint(Src, Head) :-assert_constraint1155,34110 -assert_constraint(Src, Head) :-assert_constraint1155,34110 -assert_constraint(Src, Head) :-assert_constraint1155,34110 -assert_constraint(Src, Head) :-assert_constraint1157,34172 -assert_constraint(Src, Head) :-assert_constraint1157,34172 -assert_constraint(Src, Head) :-assert_constraint1157,34172 -assert_called(_, _, Var) :-assert_called1173,34579 -assert_called(_, _, Var) :-assert_called1173,34579 -assert_called(_, _, Var) :-assert_called1173,34579 -assert_called(Src, From, Goal) :-assert_called1175,34621 -assert_called(Src, From, Goal) :-assert_called1175,34621 -assert_called(Src, From, Goal) :-assert_called1175,34621 -assert_called(_, _, Goal) :-assert_called1178,34710 -assert_called(_, _, Goal) :-assert_called1178,34710 -assert_called(_, _, Goal) :-assert_called1178,34710 -assert_called(Src, Origin, M:G) :- !,assert_called1180,34762 -assert_called(Src, Origin, M:G) :- !,assert_called1180,34762 -assert_called(Src, Origin, M:G) :- !,assert_called1180,34762 -assert_called(_, _, Goal) :-assert_called1193,35111 -assert_called(_, _, Goal) :-assert_called1193,35111 -assert_called(_, _, Goal) :-assert_called1193,35111 -assert_called(Src, Origin, Goal) :-assert_called1195,35168 -assert_called(Src, Origin, Goal) :-assert_called1195,35168 -assert_called(Src, Origin, Goal) :-assert_called1195,35168 -assert_called(Src, Origin, Goal) :-assert_called1197,35235 -assert_called(Src, Origin, Goal) :-assert_called1197,35235 -assert_called(Src, Origin, Goal) :-assert_called1197,35235 -hide_called(pce_principal:send_implementation(_, _, _)).hide_called1207,35504 -hide_called(pce_principal:send_implementation(_, _, _)).hide_called1207,35504 -hide_called(pce_principal:get_implementation(_, _, _, _)).hide_called1208,35561 -hide_called(pce_principal:get_implementation(_, _, _, _)).hide_called1208,35561 -hide_called(pce_principal:pce_lazy_get_method(_,_,_)).hide_called1209,35620 -hide_called(pce_principal:pce_lazy_get_method(_,_,_)).hide_called1209,35620 -hide_called(pce_principal:pce_lazy_send_method(_,_,_)).hide_called1210,35675 -hide_called(pce_principal:pce_lazy_send_method(_,_,_)).hide_called1210,35675 -assert_defined(Src, Goal) :-assert_defined1212,35732 -assert_defined(Src, Goal) :-assert_defined1212,35732 -assert_defined(Src, Goal) :-assert_defined1212,35732 -assert_defined(Src, Goal) :-assert_defined1214,35788 -assert_defined(Src, Goal) :-assert_defined1214,35788 -assert_defined(Src, Goal) :-assert_defined1214,35788 -assert_foreign(Src, Goal) :-assert_foreign1219,35912 -assert_foreign(Src, Goal) :-assert_foreign1219,35912 -assert_foreign(Src, Goal) :-assert_foreign1219,35912 -assert_foreign(Src, Goal) :-assert_foreign1221,35968 -assert_foreign(Src, Goal) :-assert_foreign1221,35968 -assert_foreign(Src, Goal) :-assert_foreign1221,35968 -assert_import(_, [], _, _, _) :- !.assert_import1236,36499 -assert_import(_, [], _, _, _) :- !.assert_import1236,36499 -assert_import(_, [], _, _, _) :- !.assert_import1236,36499 -assert_import(Src, [H|T], Public, From, Reexport) :- !,assert_import1237,36535 -assert_import(Src, [H|T], Public, From, Reexport) :- !,assert_import1237,36535 -assert_import(Src, [H|T], Public, From, Reexport) :- !,assert_import1237,36535 -assert_import(Src, except(Except), Public, From, Reexport) :- !,assert_import1240,36687 -assert_import(Src, except(Except), Public, From, Reexport) :- !,assert_import1240,36687 -assert_import(Src, except(Except), Public, From, Reexport) :- !,assert_import1240,36687 -assert_import(Src, Import as Name, Public, From, Reexport) :- !,assert_import1244,36861 -assert_import(Src, Import as Name, Public, From, Reexport) :- !,assert_import1244,36861 -assert_import(Src, Import as Name, Public, From, Reexport) :- !,assert_import1244,36861 -assert_import(Src, Import, Public, From, Reexport) :-assert_import1254,37228 -assert_import(Src, Import, Public, From, Reexport) :-assert_import1254,37228 -assert_import(Src, Import, Public, From, Reexport) :-assert_import1254,37228 -assert_import(Src, op(P,T,N), _, _, _) :-assert_import1262,37521 -assert_import(Src, op(P,T,N), _, _, _) :-assert_import1262,37521 -assert_import(Src, op(P,T,N), _, _, _) :-assert_import1262,37521 -in_public_list(_Head, Public) :-in_public_list1265,37591 -in_public_list(_Head, Public) :-in_public_list1265,37591 -in_public_list(_Head, Public) :-in_public_list1265,37591 -in_public_list(Head, Public) :-in_public_list1267,37641 -in_public_list(Head, Public) :-in_public_list1267,37641 -in_public_list(Head, Public) :-in_public_list1267,37641 -assert_reexport(false, _, _) :- !.assert_reexport1271,37726 -assert_reexport(false, _, _) :- !.assert_reexport1271,37726 -assert_reexport(false, _, _) :- !.assert_reexport1271,37726 -assert_reexport(true, Src, Term) :-assert_reexport1272,37761 -assert_reexport(true, Src, Term) :-assert_reexport1272,37761 -assert_reexport(true, Src, Term) :-assert_reexport1272,37761 -assert_op(Src, op(P,T,_:N)) :-assert_op1280,37914 -assert_op(Src, op(P,T,_:N)) :-assert_op1280,37914 -assert_op(Src, op(P,T,_:N)) :-assert_op1280,37914 -assert_module(Src, Module) :-assert_module1291,38165 -assert_module(Src, Module) :-assert_module1291,38165 -assert_module(Src, Module) :-assert_module1291,38165 -assert_module(Src, Module) :-assert_module1293,38221 -assert_module(Src, Module) :-assert_module1293,38221 -assert_module(Src, Module) :-assert_module1293,38221 -assert_export(_, []) :- !.assert_export1297,38317 -assert_export(_, []) :- !.assert_export1297,38317 -assert_export(_, []) :- !.assert_export1297,38317 -assert_export(Src, [H|T]) :- !,assert_export1298,38344 -assert_export(Src, [H|T]) :- !,assert_export1298,38344 -assert_export(Src, [H|T]) :- !,assert_export1298,38344 -assert_export(Src, PI) :-assert_export1301,38424 -assert_export(Src, PI) :-assert_export1301,38424 -assert_export(Src, PI) :-assert_export1301,38424 -assert_export(Src, op(P, A, N)) :-assert_export1304,38506 -assert_export(Src, op(P, A, N)) :-assert_export1304,38506 -assert_export(Src, op(P, A, N)) :-assert_export1304,38506 -assert_dynamic(Src, (A, B)) :- !,assert_dynamic1307,38571 -assert_dynamic(Src, (A, B)) :- !,assert_dynamic1307,38571 -assert_dynamic(Src, (A, B)) :- !,assert_dynamic1307,38571 -assert_dynamic(_, _M:_Name/_Arity) :- !. % not localassert_dynamic1310,38655 -assert_dynamic(_, _M:_Name/_Arity) :- !. % not localassert_dynamic1310,38655 -assert_dynamic(_, _M:_Name/_Arity) :- !. % not localassert_dynamic1310,38655 -assert_dynamic(Src, PI) :-assert_dynamic1311,38708 -assert_dynamic(Src, PI) :-assert_dynamic1311,38708 -assert_dynamic(Src, PI) :-assert_dynamic1311,38708 -assert_thread_local(Src, (A, B)) :- !,assert_thread_local1319,38928 -assert_thread_local(Src, (A, B)) :- !,assert_thread_local1319,38928 -assert_thread_local(Src, (A, B)) :- !,assert_thread_local1319,38928 -assert_thread_local(_, _M:_Name/_Arity) :- !. % not localassert_thread_local1322,39027 -assert_thread_local(_, _M:_Name/_Arity) :- !. % not localassert_thread_local1322,39027 -assert_thread_local(_, _M:_Name/_Arity) :- !. % not localassert_thread_local1322,39027 -assert_thread_local(Src, PI) :-assert_thread_local1323,39085 -assert_thread_local(Src, PI) :-assert_thread_local1323,39085 -assert_thread_local(Src, PI) :-assert_thread_local1323,39085 -assert_multifile(Src, (A, B)) :- !,assert_multifile1328,39215 -assert_multifile(Src, (A, B)) :- !,assert_multifile1328,39215 -assert_multifile(Src, (A, B)) :- !,assert_multifile1328,39215 -assert_multifile(_, _M:_Name/_Arity) :- !. % not localassert_multifile1331,39305 -assert_multifile(_, _M:_Name/_Arity) :- !. % not localassert_multifile1331,39305 -assert_multifile(_, _M:_Name/_Arity) :- !. % not localassert_multifile1331,39305 -assert_multifile(Src, PI) :-assert_multifile1332,39360 -assert_multifile(Src, PI) :-assert_multifile1332,39360 -assert_multifile(Src, PI) :-assert_multifile1332,39360 -pi_to_head(Var, _) :-pi_to_head1342,39627 -pi_to_head(Var, _) :-pi_to_head1342,39627 -pi_to_head(Var, _) :-pi_to_head1342,39627 -pi_to_head(Name/Arity, Term) :-pi_to_head1344,39669 -pi_to_head(Name/Arity, Term) :-pi_to_head1344,39669 -pi_to_head(Name/Arity, Term) :-pi_to_head1344,39669 -pi_to_head(Name//DCGArity, Term) :-pi_to_head1346,39730 -pi_to_head(Name//DCGArity, Term) :-pi_to_head1346,39730 -pi_to_head(Name//DCGArity, Term) :-pi_to_head1346,39730 -assert_used_class(Src, Name) :-assert_used_class1351,39819 -assert_used_class(Src, Name) :-assert_used_class1351,39819 -assert_used_class(Src, Name) :-assert_used_class1351,39819 -assert_used_class(Src, Name) :-assert_used_class1353,39878 -assert_used_class(Src, Name) :-assert_used_class1353,39878 -assert_used_class(Src, Name) :-assert_used_class1353,39878 -assert_defined_class(Src, Name, _Meta, _Super, _) :-assert_defined_class1356,39943 -assert_defined_class(Src, Name, _Meta, _Super, _) :-assert_defined_class1356,39943 -assert_defined_class(Src, Name, _Meta, _Super, _) :-assert_defined_class1356,39943 -assert_defined_class(_, _, _, -, _) :- !. % :- pce_extend_classassert_defined_class1358,40035 -assert_defined_class(_, _, _, -, _) :- !. % :- pce_extend_classassert_defined_class1358,40035 -assert_defined_class(_, _, _, -, _) :- !. % :- pce_extend_classassert_defined_class1358,40035 -assert_defined_class(Src, Name, Meta, Super, Summary) :-assert_defined_class1359,40101 -assert_defined_class(Src, Name, Meta, Super, Summary) :-assert_defined_class1359,40101 -assert_defined_class(Src, Name, Meta, Super, Summary) :-assert_defined_class1359,40101 -assert_defined_class(Src, Name, imported_from(_File)) :-assert_defined_class1375,40500 -assert_defined_class(Src, Name, imported_from(_File)) :-assert_defined_class1375,40500 -assert_defined_class(Src, Name, imported_from(_File)) :-assert_defined_class1375,40500 -assert_defined_class(Src, Name, imported_from(File)) :-assert_defined_class1377,40596 -assert_defined_class(Src, Name, imported_from(File)) :-assert_defined_class1377,40596 -assert_defined_class(Src, Name, imported_from(File)) :-assert_defined_class1377,40596 -generalise(Var, Var) :-generalise1389,40877 -generalise(Var, Var) :-generalise1389,40877 -generalise(Var, Var) :-generalise1389,40877 -generalise(''(Line), ''(Line)) :- !.generalise1397,41174 -generalise(''(Line), ''(Line)) :- !.generalise1397,41174 -generalise(''(Line), ''(Line)) :- !.generalise1397,41174 -generalise(Module:Goal0, Module:Goal) :-generalise1398,41233 -generalise(Module:Goal0, Module:Goal) :-generalise1398,41233 -generalise(Module:Goal0, Module:Goal) :-generalise1398,41233 -generalise(Term0, Term) :-generalise1401,41318 -generalise(Term0, Term) :-generalise1401,41318 -generalise(Term0, Term) :-generalise1401,41318 -xref_source_file(Plain, File, Source) :-xref_source_file1428,42248 -xref_source_file(Plain, File, Source) :-xref_source_file1428,42248 -xref_source_file(Plain, File, Source) :-xref_source_file1428,42248 -xref_source_file(Plain, File, Source, Options) :-xref_source_file1431,42334 -xref_source_file(Plain, File, Source, Options) :-xref_source_file1431,42334 -xref_source_file(Plain, File, Source, Options) :-xref_source_file1431,42334 -xref_source_file(Spec, File, _, Options) :-xref_source_file1441,42640 -xref_source_file(Spec, File, _, Options) :-xref_source_file1441,42640 -xref_source_file(Spec, File, _, Options) :-xref_source_file1441,42640 -xref_source_file(Spec, _, _, _) :-xref_source_file1443,42730 -xref_source_file(Spec, _, _, _) :-xref_source_file1443,42730 -xref_source_file(Spec, _, _, _) :-xref_source_file1443,42730 -do_xref_source_file(Spec, File, Options) :-do_xref_source_file1448,42847 -do_xref_source_file(Spec, File, Options) :-do_xref_source_file1448,42847 -do_xref_source_file(Spec, File, Options) :-do_xref_source_file1448,42847 - -swi/library/pure_input.pl,2496 -phrase_from_file(Grammar, File) :-phrase_from_file101,3600 -phrase_from_file(Grammar, File) :-phrase_from_file101,3600 -phrase_from_file(Grammar, File) :-phrase_from_file101,3600 -phrase_from_file(Grammar, File, Options) :-phrase_from_file112,4021 -phrase_from_file(Grammar, File, Options) :-phrase_from_file112,4021 -phrase_from_file(Grammar, File, Options) :-phrase_from_file112,4021 -phrase_stream(Grammar, In, BuffserSize) :-phrase_stream123,4293 -phrase_stream(Grammar, In, BuffserSize) :-phrase_stream123,4293 -phrase_stream(Grammar, In, BuffserSize) :-phrase_stream123,4293 -phrase_from_stream(Grammar, In) :-phrase_from_stream133,4595 -phrase_from_stream(Grammar, In) :-phrase_from_stream133,4595 -phrase_from_stream(Grammar, In) :-phrase_from_stream133,4595 -syntax_error(Error) -->syntax_error145,4926 -syntax_error(Error) -->syntax_error145,4926 -syntax_error(Error) -->syntax_error145,4926 -lazy_list_location(Location, Here, Here) :-lazy_list_location163,5545 -lazy_list_location(Location, Here, Here) :-lazy_list_location163,5545 -lazy_list_location(Location, Here, Here) :-lazy_list_location163,5545 -lazy_list_location(Here, Location) :-lazy_list_location166,5627 -lazy_list_location(Here, Location) :-lazy_list_location166,5627 -lazy_list_location(Here, Location) :-lazy_list_location166,5627 -lazy_list_character_count(Location, Here, Here) :-lazy_list_character_count204,6960 -lazy_list_character_count(Location, Here, Here) :-lazy_list_character_count204,6960 -lazy_list_character_count(Location, Here, Here) :-lazy_list_character_count204,6960 -lazy_list_character_count(Here, CharNo) :-lazy_list_character_count207,7056 -lazy_list_character_count(Here, CharNo) :-lazy_list_character_count207,7056 -lazy_list_character_count(Here, CharNo) :-lazy_list_character_count207,7056 -stream_to_lazy_list(Stream, List) :-stream_to_lazy_list234,8038 -stream_to_lazy_list(Stream, List) :-stream_to_lazy_list234,8038 -stream_to_lazy_list(Stream, List) :-stream_to_lazy_list234,8038 -stream_to_lazy_list(Stream, PrevPos, List) :-stream_to_lazy_list237,8115 -stream_to_lazy_list(Stream, PrevPos, List) :-stream_to_lazy_list237,8115 -stream_to_lazy_list(Stream, PrevPos, List) :-stream_to_lazy_list237,8115 -read_to_input_stream(Stream, _PrevPos, Pos, List) :-read_to_input_stream241,8268 -read_to_input_stream(Stream, _PrevPos, Pos, List) :-read_to_input_stream241,8268 -read_to_input_stream(Stream, _PrevPos, Pos, List) :-read_to_input_stream241,8268 - -swi/library/quasi_quotations.pl,4438 -with_quasi_quotation_input(Content, Stream, Goal) :-with_quasi_quotation_input144,5987 -with_quasi_quotation_input(Content, Stream, Goal) :-with_quasi_quotation_input144,5987 -with_quasi_quotation_input(Content, Stream, Goal) :-with_quasi_quotation_input144,5987 -phrase_from_quasi_quotation(Grammar, Content) :-phrase_from_quasi_quotation164,6546 -phrase_from_quasi_quotation(Grammar, Content) :-phrase_from_quasi_quotation164,6546 -phrase_from_quasi_quotation(Grammar, Content) :-phrase_from_quasi_quotation164,6546 -phrase_quasi_quotation(Grammar, Stream) :-phrase_quasi_quotation171,6763 -phrase_quasi_quotation(Grammar, Stream) :-phrase_quasi_quotation171,6763 -phrase_quasi_quotation(Grammar, Stream) :-phrase_quasi_quotation171,6763 -phrase_quasi_quotation(_, Stream) :-phrase_quasi_quotation175,6908 -phrase_quasi_quotation(_, Stream) :-phrase_quasi_quotation175,6908 -phrase_quasi_quotation(_, Stream) :-phrase_quasi_quotation175,6908 -quasi_quotation_syntax(M:Syntax) :-quasi_quotation_syntax185,7204 -quasi_quotation_syntax(M:Syntax) :-quasi_quotation_syntax185,7204 -quasi_quotation_syntax(M:Syntax) :-quasi_quotation_syntax185,7204 -quasi_quotation_syntax_error(Error) :-quasi_quotation_syntax_error196,7521 -quasi_quotation_syntax_error(Error) :-quasi_quotation_syntax_error196,7521 -quasi_quotation_syntax_error(Error) :-quasi_quotation_syntax_error196,7521 -quasi_quotation_syntax_error(Error, Stream) :-quasi_quotation_syntax_error200,7639 -quasi_quotation_syntax_error(Error, Stream) :-quasi_quotation_syntax_error200,7639 -quasi_quotation_syntax_error(Error, Stream) :-quasi_quotation_syntax_error200,7639 -quasi_quotation_input(Stream) :-quasi_quotation_input204,7779 -quasi_quotation_input(Stream) :-quasi_quotation_input204,7779 -quasi_quotation_input(Stream) :-quasi_quotation_input204,7779 -stream_syntax_error_context(Stream, file(File, LineNo, LinePos, CharNo)) :-stream_syntax_error_context215,8065 -stream_syntax_error_context(Stream, file(File, LineNo, LinePos, CharNo)) :-stream_syntax_error_context215,8065 -stream_syntax_error_context(Stream, file(File, LineNo, LinePos, CharNo)) :-stream_syntax_error_context215,8065 -stream_syntax_error_context(Stream, stream(Stream, LineNo, LinePos, CharNo)) :-stream_syntax_error_context218,8239 -stream_syntax_error_context(Stream, stream(Stream, LineNo, LinePos, CharNo)) :-stream_syntax_error_context218,8239 -stream_syntax_error_context(Stream, stream(Stream, LineNo, LinePos, CharNo)) :-stream_syntax_error_context218,8239 -stream_syntax_error_context(_, _).stream_syntax_error_context220,8374 -stream_syntax_error_context(_, _).stream_syntax_error_context220,8374 -position_context(Stream, LineNo, LinePos, CharNo) :-position_context222,8410 -position_context(Stream, LineNo, LinePos, CharNo) :-position_context222,8410 -position_context(Stream, LineNo, LinePos, CharNo) :-position_context222,8410 -system:'$parse_quasi_quotations'([], _).$parse_quasi_quotations243,8977 -system:'$parse_quasi_quotations'([], _).$parse_quasi_quotations243,8977 -system:'$parse_quasi_quotations'([H|T], M) :-$parse_quasi_quotations244,9018 -system:'$parse_quasi_quotations'([H|T], M) :-$parse_quasi_quotations244,9018 -qq_call(quasi_quotation(Syntax, Content, VariableNames, Result), M) :-qq_call248,9122 -qq_call(quasi_quotation(Syntax, Content, VariableNames, Result), M) :-qq_call248,9122 -qq_call(quasi_quotation(Syntax, Content, VariableNames, Result), M) :-qq_call248,9122 -qq_call(quasi_quotation(Syntax, Content, VariableNames, Result), M) :-qq_call255,9438 -qq_call(quasi_quotation(Syntax, Content, VariableNames, Result), M) :-qq_call255,9438 -qq_call(quasi_quotation(Syntax, Content, VariableNames, Result), M) :-qq_call255,9438 -qq_call(quasi_quotation(_Syntax, Content, _VariableNames, _Result), _M) :-qq_call265,9834 -qq_call(quasi_quotation(_Syntax, Content, _VariableNames, _Result), _M) :-qq_call265,9834 -qq_call(quasi_quotation(_Syntax, Content, _VariableNames, _Result), _M) :-qq_call265,9834 -prolog:error_message(syntax_error(unknown_quasi_quotation_syntax(Syntax, M))) -->error_message281,10262 -prolog:error_message(syntax_error(unknown_quasi_quotation_syntax(Syntax, M))) -->error_message281,10262 -prolog:error_message(syntax_error(invalid_quasi_quotation_syntax(Syntax))) -->error_message284,10437 -prolog:error_message(syntax_error(invalid_quasi_quotation_syntax(Syntax))) -->error_message284,10437 - -swi/library/quintus.pl,5109 -abs(Number, Absolute) :-abs149,3785 -abs(Number, Absolute) :-abs149,3785 -abs(Number, Absolute) :-abs149,3785 -sin(A, V) :- V is sin(A).sin161,4086 -sin(A, V) :- V is sin(A).sin161,4086 -sin(A, V) :- V is sin(A).sin161,4086 -sin(A, V) :- V is sin(A).sin161,4086 -sin(A, V) :- V is sin(A).sin161,4086 -cos(A, V) :- V is cos(A).cos162,4114 -cos(A, V) :- V is cos(A).cos162,4114 -cos(A, V) :- V is cos(A).cos162,4114 -cos(A, V) :- V is cos(A).cos162,4114 -cos(A, V) :- V is cos(A).cos162,4114 -tan(A, V) :- V is tan(A).tan163,4142 -tan(A, V) :- V is tan(A).tan163,4142 -tan(A, V) :- V is tan(A).tan163,4142 -tan(A, V) :- V is tan(A).tan163,4142 -tan(A, V) :- V is tan(A).tan163,4142 -log(A, V) :- V is log(A).log164,4170 -log(A, V) :- V is log(A).log164,4170 -log(A, V) :- V is log(A).log164,4170 -log(A, V) :- V is log(A).log164,4170 -log(A, V) :- V is log(A).log164,4170 -log10(X, V) :- V is log10(X).log10165,4198 -log10(X, V) :- V is log10(X).log10165,4198 -log10(X, V) :- V is log10(X).log10165,4198 -log10(X, V) :- V is log10(X).log10165,4198 -log10(X, V) :- V is log10(X).log10165,4198 -pow(X,Y,V) :- V is X**Y.pow166,4230 -pow(X,Y,V) :- V is X**Y.pow166,4230 -pow(X,Y,V) :- V is X**Y.pow166,4230 -ceiling(X, V) :- V is ceil(X).ceiling167,4257 -ceiling(X, V) :- V is ceil(X).ceiling167,4257 -ceiling(X, V) :- V is ceil(X).ceiling167,4257 -ceiling(X, V) :- V is ceil(X).ceiling167,4257 -ceiling(X, V) :- V is ceil(X).ceiling167,4257 -floor(X, V) :- V is floor(X).floor168,4289 -floor(X, V) :- V is floor(X).floor168,4289 -floor(X, V) :- V is floor(X).floor168,4289 -floor(X, V) :- V is floor(X).floor168,4289 -floor(X, V) :- V is floor(X).floor168,4289 -round(X, V) :- V is round(X).round169,4321 -round(X, V) :- V is round(X).round169,4321 -round(X, V) :- V is round(X).round169,4321 -round(X, V) :- V is round(X).round169,4321 -round(X, V) :- V is round(X).round169,4321 -sqrt(X, V) :- V is sqrt(X).sqrt170,4353 -sqrt(X, V) :- V is sqrt(X).sqrt170,4353 -sqrt(X, V) :- V is sqrt(X).sqrt170,4353 -sqrt(X, V) :- V is sqrt(X).sqrt170,4353 -sqrt(X, V) :- V is sqrt(X).sqrt170,4353 -acos(X, V) :- V is acos(X).acos171,4383 -acos(X, V) :- V is acos(X).acos171,4383 -acos(X, V) :- V is acos(X).acos171,4383 -acos(X, V) :- V is acos(X).acos171,4383 -acos(X, V) :- V is acos(X).acos171,4383 -asin(X, V) :- V is asin(X).asin172,4413 -asin(X, V) :- V is asin(X).asin172,4413 -asin(X, V) :- V is asin(X).asin172,4413 -asin(X, V) :- V is asin(X).asin172,4413 -asin(X, V) :- V is asin(X).asin172,4413 -atan(X, V) :- V is atan(X).atan173,4443 -atan(X, V) :- V is atan(X).atan173,4443 -atan(X, V) :- V is atan(X).atan173,4443 -atan(X, V) :- V is atan(X).atan173,4443 -atan(X, V) :- V is atan(X).atan173,4443 -atan2(Y, X, V) :- V is atan(Y, X).atan2174,4473 -atan2(Y, X, V) :- V is atan(Y, X).atan2174,4473 -atan2(Y, X, V) :- V is atan(Y, X).atan2174,4473 -atan2(Y, X, V) :- V is atan(Y, X).atan2174,4473 -atan2(Y, X, V) :- V is atan(Y, X).atan2174,4473 -sign(X, V) :- V is sign(X).sign175,4508 -sign(X, V) :- V is sign(X).sign175,4508 -sign(X, V) :- V is sign(X).sign175,4508 -sign(X, V) :- V is sign(X).sign175,4508 -sign(X, V) :- V is sign(X).sign175,4508 -genarg(N, T, A) :- % SWI-Prolog arg/3 is genericgenarg187,4762 -genarg(N, T, A) :- % SWI-Prolog arg/3 is genericgenarg187,4762 -genarg(N, T, A) :- % SWI-Prolog arg/3 is genericgenarg187,4762 -date(Date) :-date229,5871 -date(Date) :-date229,5871 -date(Date) :-date229,5871 -q_style_option(single_var, singleton) :- !.q_style_option246,6253 -q_style_option(single_var, singleton) :- !.q_style_option246,6253 -q_style_option(single_var, singleton) :- !.q_style_option246,6253 -q_style_option(Option, Option).q_style_option247,6297 -q_style_option(Option, Option).q_style_option247,6297 -skip_line :-skip_line317,7799 -skip_line(Stream) :-skip_line319,7823 -skip_line(Stream) :-skip_line319,7823 -skip_line(Stream) :-skip_line319,7823 -atom_char(Char, Code) :-atom_char349,8381 -atom_char(Char, Code) :-atom_char349,8381 -atom_char(Char, Code) :-atom_char349,8381 -midstring(ABC, B, AC) :-midstring360,8757 -midstring(ABC, B, AC) :-midstring360,8757 -midstring(ABC, B, AC) :-midstring360,8757 -midstring(ABC, B, AC, LenA) :-midstring362,8815 -midstring(ABC, B, AC, LenA) :-midstring362,8815 -midstring(ABC, B, AC, LenA) :-midstring362,8815 -midstring(ABC, B, AC, LenA, LenB) :-midstring364,8882 -midstring(ABC, B, AC, LenA, LenB) :-midstring364,8882 -midstring(ABC, B, AC, LenA, LenB) :-midstring364,8882 -midstring(ABC, B, AC, LenA, LenB, LenC) :- % -ABC, +B, +ACmidstring366,8958 -midstring(ABC, B, AC, LenA, LenB, LenC) :- % -ABC, +B, +ACmidstring366,8958 -midstring(ABC, B, AC, LenA, LenB, LenC) :- % -ABC, +B, +ACmidstring366,8958 -midstring(ABC, B, AC, LenA, LenB, LenC) :-midstring378,9273 -midstring(ABC, B, AC, LenA, LenB, LenC) :-midstring378,9273 -midstring(ABC, B, AC, LenA, LenB, LenC) :-midstring378,9273 - -swi/library/record.pl,9985 -error:has_type(record(M:Name), X) :-has_type68,2191 -error:has_type(record(M:Name), X) :-has_type68,2191 -record(Record) :-record97,3249 -record(Record) :-record97,3249 -record(Record) :-record97,3249 -compile_records(Spec, Clauses) :-compile_records105,3442 -compile_records(Spec, Clauses) :-compile_records105,3442 -compile_records(Spec, Clauses) :-compile_records105,3442 -compile_records(Var) -->compile_records109,3554 -compile_records(Var) -->compile_records109,3554 -compile_records(Var) -->compile_records109,3554 -compile_records((A,B)) -->compile_records113,3627 -compile_records((A,B)) -->compile_records113,3627 -compile_records((A,B)) -->compile_records113,3627 -compile_records(A) -->compile_records116,3695 -compile_records(A) -->compile_records116,3695 -compile_records(A) -->compile_records116,3695 -compile_record(RecordDef) -->compile_record123,3808 -compile_record(RecordDef) -->compile_record123,3808 -compile_record(RecordDef) -->compile_record123,3808 -current_record(Name, M:Term) :-current_record154,4797 -current_record(Name, M:Term) :-current_record154,4797 -current_record(Name, M:Term) :-current_record154,4797 -current_clause(RecordDef) -->current_clause157,4868 -current_clause(RecordDef) -->current_clause157,4868 -current_clause(RecordDef) -->current_clause157,4868 -current_record_predicate(Record, M:PI) :-current_record_predicate173,5287 -current_record_predicate(Record, M:PI) :-current_record_predicate173,5287 -current_record_predicate(Record, M:PI) :-current_record_predicate173,5287 -general_record_pred(Record, _:Name/1) :-general_record_pred191,5672 -general_record_pred(Record, _:Name/1) :-general_record_pred191,5672 -general_record_pred(Record, _:Name/1) :-general_record_pred191,5672 -general_record_pred(Record, _:Name/1) :-general_record_pred193,5746 -general_record_pred(Record, _:Name/1) :-general_record_pred193,5746 -general_record_pred(Record, _:Name/1) :-general_record_pred193,5746 -general_record_pred(Record, _:Name/A) :-general_record_pred195,5825 -general_record_pred(Record, _:Name/A) :-general_record_pred195,5825 -general_record_pred(Record, _:Name/A) :-general_record_pred195,5825 -general_record_pred(Record, _:Name/3) :-general_record_pred198,5920 -general_record_pred(Record, _:Name/3) :-general_record_pred198,5920 -general_record_pred(Record, _:Name/3) :-general_record_pred198,5920 -general_record_pred(Record, _:Name/A) :-general_record_pred200,5998 -general_record_pred(Record, _:Name/A) :-general_record_pred200,5998 -general_record_pred(Record, _:Name/A) :-general_record_pred200,5998 -general_record_pred(Record, _:Name/3) :-general_record_pred203,6112 -general_record_pred(Record, _:Name/3) :-general_record_pred203,6112 -general_record_pred(Record, _:Name/3) :-general_record_pred203,6112 -field_record_pred(Record, Field, _:Name/2) :-field_record_pred206,6207 -field_record_pred(Record, Field, _:Name/2) :-field_record_pred206,6207 -field_record_pred(Record, Field, _:Name/2) :-field_record_pred206,6207 -field_record_pred(Record, Field, _:Name/A) :-field_record_pred208,6302 -field_record_pred(Record, Field, _:Name/A) :-field_record_pred208,6302 -field_record_pred(Record, Field, _:Name/A) :-field_record_pred208,6302 -field_record_pred(Record, Field, _:Name/2) :-field_record_pred211,6425 -field_record_pred(Record, Field, _:Name/2) :-field_record_pred211,6425 -field_record_pred(Record, Field, _:Name/2) :-field_record_pred211,6425 -prolog:generated_predicate(P) :-generated_predicate214,6533 -prolog:generated_predicate(P) :-generated_predicate214,6533 -make_predicate(Constructor) -->make_predicate245,7489 -make_predicate(Constructor) -->make_predicate245,7489 -make_predicate(Constructor) -->make_predicate245,7489 -is_predicate(Constructor, Types) -->is_predicate273,8779 -is_predicate(Constructor, Types) -->is_predicate273,8779 -is_predicate(Constructor, Types) -->is_predicate273,8779 -type_checks([], [], true).type_checks287,9110 -type_checks([], [], true).type_checks287,9110 -type_checks([any|T], [_|Vars], Body) :-type_checks288,9137 -type_checks([any|T], [_|Vars], Body) :-type_checks288,9137 -type_checks([any|T], [_|Vars], Body) :-type_checks288,9137 -type_checks([Type|T], [V|Vars], (Goal, Body)) :-type_checks290,9206 -type_checks([Type|T], [V|Vars], (Goal, Body)) :-type_checks290,9206 -type_checks([Type|T], [V|Vars], (Goal, Body)) :-type_checks290,9206 -type_goal(Type, Var, Body) :-type_goal298,9390 -type_goal(Type, Var, Body) :-type_goal298,9390 -type_goal(Type, Var, Body) :-type_goal298,9390 -type_goal(record(Record), Var, Body) :- !,type_goal300,9455 -type_goal(record(Record), Var, Body) :- !,type_goal300,9455 -type_goal(record(Record), Var, Body) :- !,type_goal300,9455 -type_goal(Record, Var, Body) :-type_goal303,9553 -type_goal(Record, Var, Body) :-type_goal303,9553 -type_goal(Record, Var, Body) :-type_goal303,9553 -type_goal(Type, _, _) :-type_goal307,9658 -type_goal(Type, _, _) :-type_goal307,9658 -type_goal(Type, _, _) :-type_goal307,9658 -defined_type(Type, Var, error:Body) :-defined_type310,9711 -defined_type(Type, Var, error:Body) :-defined_type310,9711 -defined_type(Type, Var, error:Body) :-defined_type310,9711 -clean_body(M:(A0,B0), G) :- !,clean_body314,9794 -clean_body(M:(A0,B0), G) :- !,clean_body314,9794 -clean_body(M:(A0,B0), G) :- !,clean_body314,9794 -clean_body((A0,true), A) :- !,clean_body318,9892 -clean_body((A0,true), A) :- !,clean_body318,9892 -clean_body((A0,true), A) :- !,clean_body318,9892 -clean_body((true,A0), A) :- !,clean_body320,9943 -clean_body((true,A0), A) :- !,clean_body320,9943 -clean_body((true,A0), A) :- !,clean_body320,9943 -clean_body((A0,B0), (A,B)) :-clean_body322,9994 -clean_body((A0,B0), (A,B)) :-clean_body322,9994 -clean_body((A0,B0), (A,B)) :-clean_body322,9994 -clean_body(_:A, A) :-clean_body325,10064 -clean_body(_:A, A) :-clean_body325,10064 -clean_body(_:A, A) :-clean_body325,10064 -clean_body(A, A).clean_body327,10123 -clean_body(A, A).clean_body327,10123 -access_predicates([], _, _, _) -->access_predicates334,10275 -access_predicates([], _, _, _) -->access_predicates334,10275 -access_predicates([], _, _, _) -->access_predicates334,10275 -access_predicates([Name|NT], I, Arity, Constructor) -->access_predicates336,10315 -access_predicates([Name|NT], I, Arity, Constructor) -->access_predicates336,10315 -access_predicates([Name|NT], I, Arity, Constructor) -->access_predicates336,10315 -data_predicate([], _, _, _, _) -->data_predicate351,10760 -data_predicate([], _, _, _, _) -->data_predicate351,10760 -data_predicate([], _, _, _, _) -->data_predicate351,10760 -data_predicate([Name|NT], I, Arity, Constructor, DataName) -->data_predicate353,10800 -data_predicate([Name|NT], I, Arity, Constructor, DataName) -->data_predicate353,10800 -data_predicate([Name|NT], I, Arity, Constructor, DataName) -->data_predicate353,10800 -set_predicates([], _, _, _, _) -->set_predicates370,11260 -set_predicates([], _, _, _, _) -->set_predicates370,11260 -set_predicates([], _, _, _, _) -->set_predicates370,11260 -set_predicates([Name|NT], I, Arity, [Type|TT], Constructor) -->set_predicates372,11300 -set_predicates([Name|NT], I, Arity, [Type|TT], Constructor) -->set_predicates372,11300 -set_predicates([Name|NT], I, Arity, [Type|TT], Constructor) -->set_predicates372,11300 -type_check(Type, Value, must_be(Type, Value)) :-type_check398,12267 -type_check(Type, Value, must_be(Type, Value)) :-type_check398,12267 -type_check(Type, Value, must_be(Type, Value)) :-type_check398,12267 -type_check(record(Spec), Value, must_be(record(M:Name), Value)) :- !,type_check400,12350 -type_check(record(Spec), Value, must_be(record(M:Name), Value)) :- !,type_check400,12350 -type_check(record(Spec), Value, must_be(record(M:Name), Value)) :- !,type_check400,12350 -type_check(Atom, Value, Check) :-type_check403,12485 -type_check(Atom, Value, Check) :-type_check403,12485 -type_check(Atom, Value, Check) :-type_check403,12485 -set_field_predicates([], _, _, _, _) -->set_field_predicates414,12737 -set_field_predicates([], _, _, _, _) -->set_field_predicates414,12737 -set_field_predicates([], _, _, _, _) -->set_field_predicates414,12737 -set_field_predicates([Name|NT], I, Arity, [Type|TT], Constructor) -->set_field_predicates416,12783 -set_field_predicates([Name|NT], I, Arity, [Type|TT], Constructor) -->set_field_predicates416,12783 -set_field_predicates([Name|NT], I, Arity, [Type|TT], Constructor) -->set_field_predicates416,12783 -replace_nth(1, [_|T], V, [V|T]) :- !.replace_nth439,13480 -replace_nth(1, [_|T], V, [V|T]) :- !.replace_nth439,13480 -replace_nth(1, [_|T], V, [V|T]) :- !.replace_nth439,13480 -replace_nth(I, [H|T0], V, [H|T]) :-replace_nth440,13518 -replace_nth(I, [H|T0], V, [H|T]) :-replace_nth440,13518 -replace_nth(I, [H|T0], V, [H|T]) :-replace_nth440,13518 -defaults([], [], []).defaults449,13710 -defaults([], [], []).defaults449,13710 -defaults([Arg=Default|T0], [Default|TD], [Arg|TA]) :- !,defaults450,13732 -defaults([Arg=Default|T0], [Default|TD], [Arg|TA]) :- !,defaults450,13732 -defaults([Arg=Default|T0], [Default|TD], [Arg|TA]) :- !,defaults450,13732 -defaults([Arg|T0], [_|TD], [Arg|TA]) :-defaults452,13812 -defaults([Arg|T0], [_|TD], [Arg|TA]) :-defaults452,13812 -defaults([Arg|T0], [_|TD], [Arg|TA]) :-defaults452,13812 -types([], [], []).types460,13986 -types([], [], []).types460,13986 -types([Name:Type|T0], [Name|TN], [Type|TT]) :- !,types461,14005 -types([Name:Type|T0], [Name|TN], [Type|TT]) :- !,types461,14005 -types([Name:Type|T0], [Name|TN], [Type|TT]) :- !,types461,14005 -types([Name|T0], [Name|TN], [any|TT]) :-types464,14097 -types([Name|T0], [Name|TN], [any|TT]) :-types464,14097 -types([Name|T0], [Name|TN], [any|TT]) :-types464,14097 -system:term_expansion((:- record(Record)), Clauses) :-term_expansion478,14356 -system:term_expansion((:- record(Record)), Clauses) :-term_expansion478,14356 - -swi/library/settings.pl,11135 -curr_setting(Name, Module, Type, Default, Comment) :-curr_setting98,3397 -curr_setting(Name, Module, Type, Default, Comment) :-curr_setting98,3397 -curr_setting(Name, Module, Type, Default, Comment) :-curr_setting98,3397 -setting(Name, Type, Default, Comment) :-setting119,4128 -setting(Name, Type, Default, Comment) :-setting119,4128 -setting(Name, Type, Default, Comment) :-setting119,4128 -to_atom(Atom, Atom) :-to_atom145,4944 -to_atom(Atom, Atom) :-to_atom145,4944 -to_atom(Atom, Atom) :-to_atom145,4944 -to_atom(String, Atom) :-to_atom147,4983 -to_atom(String, Atom) :-to_atom147,4983 -to_atom(String, Atom) :-to_atom147,4983 -setting(QName, Value) :-setting156,5184 -setting(QName, Value) :-setting156,5184 -setting(QName, Value) :-setting156,5184 -clear_setting_cache :-clear_setting_cache179,5717 -eval_default(Default, _, Type, Value) :-eval_default209,6650 -eval_default(Default, _, Type, Value) :-eval_default209,6650 -eval_default(Default, _, Type, Value) :-eval_default209,6650 -eval_default(Default, _, _, Value) :-eval_default212,6743 -eval_default(Default, _, _, Value) :-eval_default212,6743 -eval_default(Default, _, _, Value) :-eval_default212,6743 -eval_default(Default, _, Type, Value) :-eval_default215,6820 -eval_default(Default, _, Type, Value) :-eval_default215,6820 -eval_default(Default, _, Type, Value) :-eval_default215,6820 -eval_default(env(Name), _, Type, Value) :- !,eval_default218,6914 -eval_default(env(Name), _, Type, Value) :- !,eval_default218,6914 -eval_default(env(Name), _, Type, Value) :- !,eval_default218,6914 -eval_default(env(Name, Default), _, Type, Value) :- !,eval_default225,7158 -eval_default(env(Name, Default), _, Type, Value) :- !,eval_default225,7158 -eval_default(env(Name, Default), _, Type, Value) :- !,eval_default225,7158 -eval_default(setting(Name), Module, Type, Value) :- !,eval_default232,7375 -eval_default(setting(Name), Module, Type, Value) :- !,eval_default232,7375 -eval_default(setting(Name), Module, Type, Value) :- !,eval_default232,7375 -eval_default(Expr, _, Type, Value) :-eval_default236,7509 -eval_default(Expr, _, Type, Value) :-eval_default236,7509 -eval_default(Expr, _, Type, Value) :-eval_default236,7509 -eval_default(A+B, Module, atom, Value) :- !,eval_default247,7757 -eval_default(A+B, Module, atom, Value) :- !,eval_default247,7757 -eval_default(A+B, Module, atom, Value) :- !,eval_default247,7757 -eval_default(List, Module, list(Type), Value) :- !,eval_default252,7924 -eval_default(List, Module, list(Type), Value) :- !,eval_default252,7924 -eval_default(List, Module, list(Type), Value) :- !,eval_default252,7924 -eval_default(Default, _, _, Default).eval_default256,8082 -eval_default(Default, _, _, Default).eval_default256,8082 -eval_list_default([], _, _, []).eval_list_default263,8235 -eval_list_default([], _, _, []).eval_list_default263,8235 -eval_list_default([H0|T0], Module, Type, [H|T]) :-eval_list_default264,8268 -eval_list_default([H0|T0], Module, Type, [H|T]) :-eval_list_default264,8268 -eval_list_default([H0|T0], Module, Type, [H|T]) :-eval_list_default264,8268 -expr_to_list(A+B, Module) --> !,expr_to_list273,8582 -expr_to_list(A+B, Module) --> !,expr_to_list273,8582 -expr_to_list(A+B, Module) --> !,expr_to_list273,8582 -expr_to_list(env(Name), _) --> !,expr_to_list276,8667 -expr_to_list(env(Name), _) --> !,expr_to_list276,8667 -expr_to_list(env(Name), _) --> !,expr_to_list276,8667 -expr_to_list(env(Name, Default), _) --> !,expr_to_list281,8798 -expr_to_list(env(Name, Default), _) --> !,expr_to_list281,8798 -expr_to_list(env(Name, Default), _) --> !,expr_to_list281,8798 -expr_to_list(setting(Name), Module) --> !,expr_to_list286,8900 -expr_to_list(setting(Name), Module) --> !,expr_to_list286,8900 -expr_to_list(setting(Name), Module) --> !,expr_to_list286,8900 -expr_to_list(A, _) -->expr_to_list291,9018 -expr_to_list(A, _) -->expr_to_list291,9018 -expr_to_list(A, _) -->expr_to_list291,9018 -env(Name, Value) :-env305,9357 -env(Name, Value) :-env305,9357 -env(Name, Value) :-env305,9357 -env(Name, Default, Value) :-env310,9501 -env(Name, Default, Value) :-env310,9501 -env(Name, Default, Value) :-env310,9501 -numeric_type(integer, integer).numeric_type324,9821 -numeric_type(integer, integer).numeric_type324,9821 -numeric_type(nonneg, integer).numeric_type325,9853 -numeric_type(nonneg, integer).numeric_type325,9853 -numeric_type(float, float).numeric_type326,9884 -numeric_type(float, float).numeric_type326,9884 -numeric_type(between(L,_), Type) :-numeric_type327,9912 -numeric_type(between(L,_), Type) :-numeric_type327,9912 -numeric_type(between(L,_), Type) :-numeric_type327,9912 -set_setting(QName, Value) :-set_setting342,10327 -set_setting(QName, Value) :-set_setting342,10327 -set_setting(QName, Value) :-set_setting342,10327 -retract_setting(Module:Name) :-retract_setting361,10952 -retract_setting(Module:Name) :-retract_setting361,10952 -retract_setting(Module:Name) :-retract_setting361,10952 -assert_setting(Module:Name, Value) :-assert_setting364,11025 -assert_setting(Module:Name, Value) :-assert_setting364,11025 -assert_setting(Module:Name, Value) :-assert_setting364,11025 -restore_setting(QName) :-restore_setting373,11286 -restore_setting(QName) :-restore_setting373,11286 -restore_setting(QName) :-restore_setting373,11286 -set_setting_default(QName, Default) :-set_setting_default393,11889 -set_setting_default(QName, Default) :-set_setting_default393,11889 -set_setting_default(QName, Default) :-set_setting_default393,11889 -check_type(Type, Term) :-check_type418,12591 -check_type(Type, Term) :-check_type418,12591 -check_type(Type, Term) :-check_type418,12591 -load_settings(File) :-load_settings438,13158 -load_settings(File) :-load_settings438,13158 -load_settings(File) :-load_settings438,13158 -load_settings(File, Options) :-load_settings441,13208 -load_settings(File, Options) :-load_settings441,13208 -load_settings(File, Options) :-load_settings441,13208 -load_settings(File, _) :-load_settings451,13504 -load_settings(File, _) :-load_settings451,13504 -load_settings(File, _) :-load_settings451,13504 -load_settings(_, _).load_settings457,13651 -load_settings(_, _).load_settings457,13651 -load_settings(end_of_file, _, _) :- !.load_settings459,13673 -load_settings(end_of_file, _, _) :- !.load_settings459,13673 -load_settings(end_of_file, _, _) :- !.load_settings459,13673 -load_settings(Setting, In, Options) :-load_settings460,13712 -load_settings(Setting, In, Options) :-load_settings460,13712 -load_settings(Setting, In, Options) :-load_settings460,13712 -read_setting(In, Term) :-read_setting466,13890 -read_setting(In, Term) :-read_setting466,13890 -read_setting(In, Term) :-read_setting466,13890 -store_setting(setting(Module:Name, Value), _) :-store_setting475,14059 -store_setting(setting(Module:Name, Value), _) :-store_setting475,14059 -store_setting(setting(Module:Name, Value), _) :-store_setting475,14059 -store_setting(setting(Module:Name, Value), Options) :- !,store_setting485,14431 -store_setting(setting(Module:Name, Value), Options) :- !,store_setting485,14431 -store_setting(setting(Module:Name, Value), Options) :- !,store_setting485,14431 -store_setting(Term, _) :-store_setting491,14667 -store_setting(Term, _) :-store_setting491,14667 -store_setting(Term, _) :-store_setting491,14667 -save_settings :-save_settings499,14816 -save_settings(File) :-save_settings503,14878 -save_settings(File) :-save_settings503,14878 -save_settings(File) :-save_settings503,14878 -write_setting_header(Out) :-write_setting_header517,15179 -write_setting_header(Out) :-write_setting_header517,15179 -write_setting_header(Out) :-write_setting_header517,15179 -save_setting(Out, Module:Name) :-save_setting524,15374 -save_setting(Out, Module:Name) :-save_setting524,15374 -save_setting(Out, Module:Name) :-save_setting524,15374 -current_setting(Setting) :-current_setting540,15859 -current_setting(Setting) :-current_setting540,15859 -current_setting(Setting) :-current_setting540,15859 -current_setting(Module:Name) :-current_setting544,15990 -current_setting(Module:Name) :-current_setting544,15990 -current_setting(Module:Name) :-current_setting544,15990 -setting_property(Setting, Property) :-setting_property559,16378 -setting_property(Setting, Property) :-setting_property559,16378 -setting_property(Setting, Property) :-setting_property559,16378 -setting_property(Setting, Property) :-setting_property564,16579 -setting_property(Setting, Property) :-setting_property564,16579 -setting_property(Setting, Property) :-setting_property564,16579 -setting_property(type(Type), _, Type, _, _).setting_property569,16757 -setting_property(type(Type), _, Type, _, _).setting_property569,16757 -setting_property(default(Default), M, Type, Default0, _) :-setting_property570,16815 -setting_property(default(Default), M, Type, Default0, _) :-setting_property570,16815 -setting_property(default(Default), M, Type, Default0, _) :-setting_property570,16815 -setting_property(comment(Comment), _, _, _, Comment).setting_property572,16918 -setting_property(comment(Comment), _, _, _, Comment).setting_property572,16918 -list_settings :-list_settings578,17040 -list_setting(Module:Name) :-list_setting585,17268 -list_setting(Module:Name) :-list_setting585,17268 -list_setting(Module:Name) :-list_setting585,17268 -convert_setting_text(Type, Text, Value) :-convert_setting_text611,17987 -convert_setting_text(Type, Text, Value) :-convert_setting_text611,17987 -convert_setting_text(Type, Text, Value) :-convert_setting_text611,17987 -convert_setting_text(atom, Value, Value) :- !,convert_setting_text613,18067 -convert_setting_text(atom, Value, Value) :- !,convert_setting_text613,18067 -convert_setting_text(atom, Value, Value) :- !,convert_setting_text613,18067 -convert_setting_text(boolean, Value, Value) :- !,convert_setting_text615,18137 -convert_setting_text(boolean, Value, Value) :- !,convert_setting_text615,18137 -convert_setting_text(boolean, Value, Value) :- !,convert_setting_text615,18137 -convert_setting_text(integer, Atom, Number) :- !,convert_setting_text617,18213 -convert_setting_text(integer, Atom, Number) :- !,convert_setting_text617,18213 -convert_setting_text(integer, Atom, Number) :- !,convert_setting_text617,18213 -convert_setting_text(float, Atom, Number) :- !,convert_setting_text620,18314 -convert_setting_text(float, Atom, Number) :- !,convert_setting_text620,18314 -convert_setting_text(float, Atom, Number) :- !,convert_setting_text620,18314 -convert_setting_text(between(L,U), Atom, Number) :- !,convert_setting_text623,18413 -convert_setting_text(between(L,U), Atom, Number) :- !,convert_setting_text623,18413 -convert_setting_text(between(L,U), Atom, Number) :- !,convert_setting_text623,18413 -convert_setting_text(Type, Atom, Term) :-convert_setting_text629,18616 -convert_setting_text(Type, Atom, Term) :-convert_setting_text629,18616 -convert_setting_text(Type, Atom, Term) :-convert_setting_text629,18616 - -swi/library/shlib.pl,5866 -find_library(Spec, Lib) :-find_library139,4275 -find_library(Spec, Lib) :-find_library139,4275 -find_library(Spec, Lib) :-find_library139,4275 -find_library(Spec, Lib) :-find_library144,4458 -find_library(Spec, Lib) :-find_library144,4458 -find_library(Spec, Lib) :-find_library144,4458 -find_library2(Spec, Lib) :-find_library2147,4513 -find_library2(Spec, Lib) :-find_library2147,4513 -find_library2(Spec, Lib) :-find_library2147,4513 -find_library2(Spec, Spec) :-find_library2153,4664 -find_library2(Spec, Spec) :-find_library2153,4664 -find_library2(Spec, Spec) :-find_library2153,4664 -find_library2(foreign(Spec), Spec) :-find_library2155,4741 -find_library2(foreign(Spec), Spec) :-find_library2155,4741 -find_library2(foreign(Spec), Spec) :-find_library2155,4741 -find_library2(Spec, _) :-find_library2157,4827 -find_library2(Spec, _) :-find_library2157,4827 -find_library2(Spec, _) :-find_library2157,4827 -libd_spec(Name, NameD) :-libd_spec160,4908 -libd_spec(Name, NameD) :-libd_spec160,4908 -libd_spec(Name, NameD) :-libd_spec160,4908 -libd_spec(Spec, SpecD) :-libd_spec165,5061 -libd_spec(Spec, SpecD) :-libd_spec165,5061 -libd_spec(Spec, SpecD) :-libd_spec165,5061 -libd_spec(Spec, Spec). % delay errorslibd_spec170,5179 -libd_spec(Spec, Spec). % delay errorslibd_spec170,5179 -base(Path, Base) :-base172,5220 -base(Path, Base) :-base172,5220 -base(Path, Base) :-base172,5220 -base(Path, Base) :-base176,5328 -base(Path, Base) :-base176,5328 -base(Path, Base) :-base176,5328 -entry(_, Function, Function) :-entry180,5386 -entry(_, Function, Function) :-entry180,5386 -entry(_, Function, Function) :-entry180,5386 -entry(Spec, default(FuncBase), Function) :-entry182,5446 -entry(Spec, default(FuncBase), Function) :-entry182,5446 -entry(Spec, default(FuncBase), Function) :-entry182,5446 -entry(_, default(Function), Function).entry185,5563 -entry(_, default(Function), Function).entry185,5563 -load_foreign_library(Library) :-load_foreign_library215,6662 -load_foreign_library(Library) :-load_foreign_library215,6662 -load_foreign_library(Library) :-load_foreign_library215,6662 -load_foreign_library(Module:LibFile, Entry) :-load_foreign_library218,6746 -load_foreign_library(Module:LibFile, Entry) :-load_foreign_library218,6746 -load_foreign_library(Module:LibFile, Entry) :-load_foreign_library218,6746 -load_foreign_library(LibFile, _Module, _) :-load_foreign_library222,6870 -load_foreign_library(LibFile, _Module, _) :-load_foreign_library222,6870 -load_foreign_library(LibFile, _Module, _) :-load_foreign_library222,6870 -load_foreign_library(LibFile, Module, DefEntry) :-load_foreign_library224,6957 -load_foreign_library(LibFile, Module, DefEntry) :-load_foreign_library224,6957 -load_foreign_library(LibFile, Module, DefEntry) :-load_foreign_library224,6957 -load_foreign_library(LibFile, _, _) :-load_foreign_library246,7608 -load_foreign_library(LibFile, _, _) :-load_foreign_library246,7608 -load_foreign_library(LibFile, _, _) :-load_foreign_library246,7608 -use_foreign_library(FileSpec) :-use_foreign_library271,8496 -use_foreign_library(FileSpec) :-use_foreign_library271,8496 -use_foreign_library(FileSpec) :-use_foreign_library271,8496 -use_foreign_library(FileSpec, Entry) :-use_foreign_library274,8584 -use_foreign_library(FileSpec, Entry) :-use_foreign_library274,8584 -use_foreign_library(FileSpec, Entry) :-use_foreign_library274,8584 -unload_foreign_library(LibFile) :-unload_foreign_library285,9014 -unload_foreign_library(LibFile) :-unload_foreign_library285,9014 -unload_foreign_library(LibFile) :-unload_foreign_library285,9014 -unload_foreign_library(LibFile, DefUninstall) :-unload_foreign_library288,9104 -unload_foreign_library(LibFile, DefUninstall) :-unload_foreign_library288,9104 -unload_foreign_library(LibFile, DefUninstall) :-unload_foreign_library288,9104 -do_unload(LibFile, DefUninstall) :-do_unload291,9213 -do_unload(LibFile, DefUninstall) :-do_unload291,9213 -do_unload(LibFile, DefUninstall) :-do_unload291,9213 -abolish_foreign(LibFile) :-abolish_foreign302,9536 -abolish_foreign(LibFile) :-abolish_foreign302,9536 -abolish_foreign(LibFile) :-abolish_foreign302,9536 -system:'$foreign_registered'(M, H) :-$foreign_registered310,9711 -system:'$foreign_registered'(M, H) :-$foreign_registered310,9711 -assert_shlib(File, Entry, Path, Module, Handle) :-assert_shlib317,9847 -assert_shlib(File, Entry, Path, Module, Handle) :-assert_shlib317,9847 -assert_shlib(File, Entry, Path, Module, Handle) :-assert_shlib317,9847 -current_foreign_library(File, Public) :-current_foreign_library330,10196 -current_foreign_library(File, Public) :-current_foreign_library330,10196 -current_foreign_library(File, Public) :-current_foreign_library330,10196 -reload_foreign_libraries :-reload_foreign_libraries344,10573 -reload_libraries([]).reload_libraries353,10782 -reload_libraries([]).reload_libraries353,10782 -reload_libraries([lib(File, Entry, Module)|T]) :-reload_libraries354,10804 -reload_libraries([lib(File, Entry, Module)|T]) :-reload_libraries354,10804 -reload_libraries([lib(File, Entry, Module)|T]) :-reload_libraries354,10804 -unload_all_foreign_libraries :-unload_all_foreign_libraries374,11488 -unload_all_foreign_libraries :-unload_all_foreign_libraries376,11557 -unload_foreign(File) :-unload_foreign387,11913 -unload_foreign(File) :-unload_foreign387,11913 -unload_foreign(File) :-unload_foreign387,11913 -prolog:message(shlib(LibFile, call_entry(DefEntry))) -->message408,12301 -prolog:message(shlib(LibFile, call_entry(DefEntry))) -->message408,12301 -prolog:message(shlib(LibFile, load_failed)) -->message410,12420 -prolog:message(shlib(LibFile, load_failed)) -->message410,12420 -prolog:message(shlib(not_supported)) -->message412,12510 -prolog:message(shlib(not_supported)) -->message412,12510 - -swi/library/thread_pool.pl,4390 -thread_pool_create(Name, Size, Options) :-thread_pool_create108,4565 -thread_pool_create(Name, Size, Options) :-thread_pool_create108,4565 -thread_pool_create(Name, Size, Options) :-thread_pool_create108,4565 -thread_pool_destroy(Name) :-thread_pool_destroy120,4859 -thread_pool_destroy(Name) :-thread_pool_destroy120,4859 -thread_pool_destroy(Name) :-thread_pool_destroy120,4859 -current_thread_pool(Name) :-current_thread_pool131,5092 -current_thread_pool(Name) :-current_thread_pool131,5092 -current_thread_pool(Name) :-current_thread_pool131,5092 -thread_pool_property(Name, Property) :-thread_pool_property159,5866 -thread_pool_property(Name, Property) :-thread_pool_property159,5866 -thread_pool_property(Name, Property) :-thread_pool_property159,5866 -thread_create_in_pool(Pool, Goal, Id, Options) :-thread_create_in_pool187,6739 -thread_create_in_pool(Pool, Goal, Id, Options) :-thread_create_in_pool187,6739 -thread_create_in_pool(Pool, Goal, Id, Options) :-thread_create_in_pool187,6739 -pool_manager(TID) :-pool_manager205,7229 -pool_manager(TID) :-pool_manager205,7229 -pool_manager(TID) :-pool_manager205,7229 -thread_running(Thread) :-thread_running212,7381 -thread_running(Thread) :-thread_running212,7381 -thread_running(Thread) :-thread_running212,7381 -create_pool_manager(Thread) :-create_pool_manager227,7711 -create_pool_manager(Thread) :-create_pool_manager227,7711 -create_pool_manager(Thread) :-create_pool_manager227,7711 -create_pool_manager(Thread) :-create_pool_manager229,7770 -create_pool_manager(Thread) :-create_pool_manager229,7770 -create_pool_manager(Thread) :-create_pool_manager229,7770 -manage_thread_pool(State0) :-manage_thread_pool242,8030 -manage_thread_pool(State0) :-manage_thread_pool242,8030 -manage_thread_pool(State0) :-manage_thread_pool242,8030 -update_thread_pool(create_pool(Name, Size, Options, For), State0, State) :- !,update_thread_pool251,8304 -update_thread_pool(create_pool(Name, Size, Options, For), State0, State) :- !,update_thread_pool251,8304 -update_thread_pool(create_pool(Name, Size, Options, For), State0, State) :- !,update_thread_pool251,8304 -update_thread_pool(destroy_pool(Name, For), State0, State) :- !,update_thread_pool259,8614 -update_thread_pool(destroy_pool(Name, For), State0, State) :- !,update_thread_pool259,8614 -update_thread_pool(destroy_pool(Name, For), State0, State) :- !,update_thread_pool259,8614 -update_thread_pool(current_pools(For), State, State) :- !,update_thread_pool265,8847 -update_thread_pool(current_pools(For), State, State) :- !,update_thread_pool265,8847 -update_thread_pool(current_pools(For), State, State) :- !,update_thread_pool265,8847 -update_thread_pool(pool_properties(For, Name, P), State, State) :- !,update_thread_pool269,9010 -update_thread_pool(pool_properties(For, Name, P), State, State) :- !,update_thread_pool269,9010 -update_thread_pool(pool_properties(For, Name, P), State, State) :- !,update_thread_pool269,9010 -update_thread_pool(Message, State0, State) :-update_thread_pool275,9245 -update_thread_pool(Message, State0, State) :-update_thread_pool275,9245 -update_thread_pool(Message, State0, State) :-update_thread_pool275,9245 -diff_list_length(List, Tail, Size) :-diff_list_length302,10089 -diff_list_length(List, Tail, Size) :-diff_list_length302,10089 -diff_list_length(List, Tail, Size) :-diff_list_length302,10089 -can_delay(true, infinite, _, _) :- !.can_delay372,12208 -can_delay(true, infinite, _, _) :- !.can_delay372,12208 -can_delay(true, infinite, _, _) :- !.can_delay372,12208 -can_delay(true, BackLog, WP, WPT) :-can_delay373,12246 -can_delay(true, BackLog, WP, WPT) :-can_delay373,12246 -can_delay(true, BackLog, WP, WPT) :-can_delay373,12246 -reply(To, Term) :-reply382,12429 -reply(To, Term) :-reply382,12429 -reply(To, Term) :-reply382,12429 -reply_error(To, Error) :-reply_error385,12500 -reply_error(To, Error) :-reply_error385,12500 -reply_error(To, Error) :-reply_error385,12500 -wait_reply :-wait_reply388,12583 -wait_reply(Value) :-wait_reply397,12723 -wait_reply(Value) :-wait_reply397,12723 -wait_reply(Value) :-wait_reply397,12723 -prolog:message(thread_pool(Message)) -->message415,13030 -prolog:message(thread_pool(Message)) -->message415,13030 -prolog:message(manager_died(Status)) -->message418,13091 -prolog:message(manager_died(Status)) -->message418,13091 - -swi/library/unix.pl,280 -pipe(Inp, Out) :- open_pipe_stream(Inp, Out).pipe3,30 -pipe(Inp, Out) :- open_pipe_stream(Inp, Out).pipe3,30 -pipe(Inp, Out) :- open_pipe_stream(Inp, Out).pipe3,30 -pipe(Inp, Out) :- open_pipe_stream(Inp, Out).pipe3,30 -pipe(Inp, Out) :- open_pipe_stream(Inp, Out).pipe3,30 - -swi/library/url.pl,25401 -global_url(URL, BaseURL, Global) :-global_url82,2970 -global_url(URL, BaseURL, Global) :-global_url82,2970 -global_url(URL, BaseURL, Global) :-global_url82,2970 -is_absolute_url(URL) :-is_absolute_url107,3769 -is_absolute_url(URL) :-is_absolute_url107,3769 -is_absolute_url(URL) :-is_absolute_url107,3769 -is_absolute_url(URL) :-is_absolute_url109,3832 -is_absolute_url(URL) :-is_absolute_url109,3832 -is_absolute_url(URL) :-is_absolute_url109,3832 -is_absolute_url(URL) :-is_absolute_url111,3896 -is_absolute_url(URL) :-is_absolute_url111,3896 -is_absolute_url(URL) :-is_absolute_url111,3896 -is_absolute_url(URL) :-is_absolute_url113,3958 -is_absolute_url(URL) :-is_absolute_url113,3958 -is_absolute_url(URL) :-is_absolute_url113,3958 -is_absolute_url(URL) :-is_absolute_url115,4021 -is_absolute_url(URL) :-is_absolute_url115,4021 -is_absolute_url(URL) :-is_absolute_url115,4021 -http_location(Parts, Location) :- % Parts --> Locationhttp_location137,4607 -http_location(Parts, Location) :- % Parts --> Locationhttp_location137,4607 -http_location(Parts, Location) :- % Parts --> Locationhttp_location137,4607 -http_location(Parts, Location) :- % Location --> Partshttp_location141,4745 -http_location(Parts, Location) :- % Location --> Partshttp_location141,4745 -http_location(Parts, Location) :- % Location --> Partshttp_location141,4745 -http_location(Parts, Codes) :- % LocationCodes --> Partshttp_location145,4888 -http_location(Parts, Codes) :- % LocationCodes --> Partshttp_location145,4888 -http_location(Parts, Codes) :- % LocationCodes --> Partshttp_location145,4888 -curl(A) -->curl150,5003 -curl(A) -->curl150,5003 -curl(A) -->curl150,5003 -curl(A) -->curl156,5104 -curl(A) -->curl156,5104 -curl(A) -->curl156,5104 -curl(file, A) --> !,curl159,5133 -curl(file, A) --> !,curl159,5133 -curl(file, A) --> !,curl159,5133 -curl(_, A) -->curl164,5196 -curl(_, A) -->curl164,5196 -curl(_, A) -->curl164,5196 -curi(A) -->curi173,5291 -curi(A) -->curi173,5291 -curi(A) -->curi173,5291 -cpath(A) -->cpath177,5328 -cpath(A) -->cpath177,5328 -cpath(A) -->cpath177,5328 -cuser(A) -->cuser184,5453 -cuser(A) -->cuser184,5453 -cuser(A) -->cuser184,5453 -chost(A) -->chost192,5585 -chost(A) -->chost192,5585 -chost(A) -->chost192,5585 -cport(A) -->cport199,5706 -cport(A) -->cport199,5706 -cport(A) -->cport199,5706 -catomic(A, In, Out) :-catomic208,5853 -catomic(A, In, Out) :-catomic208,5853 -catomic(A, In, Out) :-catomic208,5853 -csearch(A)-->csearch214,5952 -csearch(A)-->csearch214,5952 -csearch(A)-->csearch214,5952 -csearch([], _) -->csearch220,6051 -csearch([], _) -->csearch220,6051 -csearch([], _) -->csearch220,6051 -csearch([Parameter|Parameters], Sep) --> !,csearch222,6075 -csearch([Parameter|Parameters], Sep) --> !,csearch222,6075 -csearch([Parameter|Parameters], Sep) --> !,csearch222,6075 -cparam(Name=Value) --> !,cparam227,6180 -cparam(Name=Value) --> !,cparam227,6180 -cparam(Name=Value) --> !,cparam227,6180 -cparam(NameValue) --> % allow to feed Name(Value)cparam231,6242 -cparam(NameValue) --> % allow to feed Name(Value)cparam231,6242 -cparam(NameValue) --> % allow to feed Name(Value)cparam231,6242 -cparam(Name)-->cparam238,6391 -cparam(Name)-->cparam238,6391 -cparam(Name)-->cparam238,6391 -codes([]) --> [].codes241,6422 -codes([]) --> [].codes241,6422 -codes([]) --> [].codes241,6422 -codes([H|T]) --> [H], codes(T).codes242,6440 -codes([H|T]) --> [H], codes(T).codes242,6440 -codes([H|T]) --> [H], codes(T).codes242,6440 -codes([H|T]) --> [H], codes(T).codes242,6440 -codes([H|T]) --> [H], codes(T).codes242,6440 -cname(Atom) -->cname244,6473 -cname(Atom) -->cname244,6473 -cname(Atom) -->cname244,6473 -cvalue(Value) -->cvalue253,6655 -cvalue(Value) -->cvalue253,6655 -cvalue(Value) -->cvalue253,6655 -cvalue(Codes) -->cvalue258,6750 -cvalue(Codes) -->cvalue258,6750 -cvalue(Codes) -->cvalue258,6750 -cfragment(A) -->cfragment266,6852 -cfragment(A) -->cfragment266,6852 -cfragment(A) -->cfragment266,6852 -cfragment(_) -->cfragment272,6966 -cfragment(_) -->cfragment272,6966 -cfragment(_) -->cfragment272,6966 -parse_url(URL, Attributes) :-parse_url338,9212 -parse_url(URL, Attributes) :-parse_url338,9212 -parse_url(URL, Attributes) :-parse_url338,9212 -parse_url(URL, Attributes) :-parse_url342,9317 -parse_url(URL, Attributes) :-parse_url342,9317 -parse_url(URL, Attributes) :-parse_url342,9317 -parse_url(URL, BaseURL, Attributes) :-parse_url351,9577 -parse_url(URL, BaseURL, Attributes) :-parse_url351,9577 -parse_url(URL, BaseURL, Attributes) :-parse_url351,9577 -parse_url(URL, BaseURL, Attributes) :-parse_url368,10142 -parse_url(URL, BaseURL, Attributes) :-parse_url368,10142 -parse_url(URL, BaseURL, Attributes) :-parse_url368,10142 -globalise_path(LocalPath, _, LocalPath) :-globalise_path387,10824 -globalise_path(LocalPath, _, LocalPath) :-globalise_path387,10824 -globalise_path(LocalPath, _, LocalPath) :-globalise_path387,10824 -globalise_path(LocalPath, _, LocalPath) :-globalise_path389,10904 -globalise_path(LocalPath, _, LocalPath) :-globalise_path389,10904 -globalise_path(LocalPath, _, LocalPath) :-globalise_path389,10904 -globalise_path(Local, Base, Path) :-globalise_path391,10985 -globalise_path(Local, Base, Path) :-globalise_path391,10985 -globalise_path(Local, Base, Path) :-globalise_path391,10985 -base_dir(BasePath, BaseDir) :-base_dir395,11083 -base_dir(BasePath, BaseDir) :-base_dir395,11083 -base_dir(BasePath, BaseDir) :-base_dir395,11083 -make_path(Dir, Local, Path) :-make_path401,11212 -make_path(Dir, Local, Path) :-make_path401,11212 -make_path(Dir, Local, Path) :-make_path401,11212 -make_path(/, Local, Path) :- !,make_path406,11360 -make_path(/, Local, Path) :- !,make_path406,11360 -make_path(/, Local, Path) :- !,make_path406,11360 -make_path(Dir, Local, Path) :-make_path408,11422 -make_path(Dir, Local, Path) :-make_path408,11422 -make_path(Dir, Local, Path) :-make_path408,11422 -absolute_url -->absolute_url418,11700 -digits(L) -->digits429,11881 -digits(L) -->digits429,11881 -digits(L) -->digits429,11881 -digits([C|T0], T) -->digits432,11912 -digits([C|T0], T) -->digits432,11912 -digits([C|T0], T) -->digits432,11912 -digits(T, T) -->digits435,11964 -digits(T, T) -->digits435,11964 -digits(T, T) -->digits435,11964 -digit(C, [C|T], T) :- code_type(C, digit).digit439,11988 -digit(C, [C|T], T) :- code_type(C, digit).digit439,11988 -digit(C, [C|T], T) :- code_type(C, digit).digit439,11988 -digit(C, [C|T], T) :- code_type(C, digit).digit439,11988 -digit(C, [C|T], T) :- code_type(C, digit).digit439,11988 -url([protocol(Schema)|Parts]) -->url447,12146 -url([protocol(Schema)|Parts]) -->url447,12146 -url([protocol(Schema)|Parts]) -->url447,12146 -url([protocol(http)|Parts]) --> % implicit HTTPurl453,12272 -url([protocol(http)|Parts]) --> % implicit HTTPurl453,12272 -url([protocol(http)|Parts]) --> % implicit HTTPurl453,12272 -relative_uri(Parts) -->relative_uri457,12376 -relative_uri(Parts) -->relative_uri457,12376 -relative_uri(Parts) -->relative_uri457,12376 -relative_part(Parts, Tail) -->relative_part462,12463 -relative_part(Parts, Tail) -->relative_part462,12463 -relative_part(Parts, Tail) -->relative_part462,12463 -relative_part([path(Path)|T], T) -->relative_part466,12563 -relative_part([path(Path)|T], T) -->relative_part466,12563 -relative_part([path(Path)|T], T) -->relative_part466,12563 -http_location([path(Path)|P2]) -->http_location472,12680 -http_location([path(Path)|P2]) -->http_location472,12680 -http_location([path(Path)|P2]) -->http_location472,12680 -schema(Schema) -->schema486,12932 -schema(Schema) -->schema486,12932 -schema(Schema) -->schema486,12932 -schema_chars([H|T]) -->schema_chars491,13025 -schema_chars([H|T]) -->schema_chars491,13025 -schema_chars([H|T]) -->schema_chars491,13025 -schema_chars([]) -->schema_chars494,13087 -schema_chars([]) -->schema_chars494,13087 -schema_chars([]) -->schema_chars494,13087 -schema_char(H) -->schema_char497,13114 -schema_char(H) -->schema_char497,13114 -schema_char(H) -->schema_char497,13114 -schema_extra(0'+).schema_extra509,13297 -schema_extra(0'+).schema_extra509,13297 -schema_extra(0'-).schema_extra510,13316 -schema_extra(0'-).schema_extra510,13316 -schema_extra(0'.). % 0'schema_extra511,13335 -schema_extra(0'.). % 0'schema_extra511,13335 -hier_part(file, [path(Path)|Tail], Tail) --> !,hier_part516,13401 -hier_part(file, [path(Path)|Tail], Tail) --> !,hier_part516,13401 -hier_part(file, [path(Path)|Tail], Tail) --> !,hier_part516,13401 -hier_part(_, Parts, Tail) -->hier_part523,13561 -hier_part(_, Parts, Tail) -->hier_part523,13561 -hier_part(_, Parts, Tail) -->hier_part523,13561 -hier_part(_, [path(Path)|T], T) -->hier_part527,13660 -hier_part(_, [path(Path)|T], T) -->hier_part527,13660 -hier_part(_, [path(Path)|T], T) -->hier_part527,13660 -authority(Parts, Tail) -->authority533,13776 -authority(Parts, Tail) -->authority533,13776 -authority(Parts, Tail) -->authority533,13776 -authority([host(Host)|T0], Tail) -->authority541,13944 -authority([host(Host)|T0], Tail) -->authority541,13944 -authority([host(Host)|T0], Tail) -->authority541,13944 -user_info_chars([H|T]) -->user_info_chars545,14012 -user_info_chars([H|T]) -->user_info_chars545,14012 -user_info_chars([H|T]) -->user_info_chars545,14012 -user_info_chars([]) -->user_info_chars548,14083 -user_info_chars([]) -->user_info_chars548,14083 -user_info_chars([]) -->user_info_chars548,14083 -user_info_char(_) --> "@", !, {fail}.user_info_char551,14113 -user_info_char(_) --> "@", !, {fail}.user_info_char551,14113 -user_info_char(_) --> "@", !, {fail}.user_info_char551,14113 -user_info_char(C) --> pchar(C).user_info_char552,14151 -user_info_char(C) --> pchar(C).user_info_char552,14151 -user_info_char(C) --> pchar(C).user_info_char552,14151 -user_info_char(C) --> pchar(C).user_info_char552,14151 -user_info_char(C) --> pchar(C).user_info_char552,14151 -host(Host) --> ip4_address(Host), !.host555,14243 -host(Host) --> ip4_address(Host), !.host555,14243 -host(Host) --> ip4_address(Host), !.host555,14243 -host(Host) --> reg_name(Host).host556,14280 -host(Host) --> reg_name(Host).host556,14280 -host(Host) --> reg_name(Host).host556,14280 -host(Host) --> reg_name(Host).host556,14280 -host(Host) --> reg_name(Host).host556,14280 -ip4_address(Atom) -->ip4_address558,14312 -ip4_address(Atom) -->ip4_address558,14312 -ip4_address(Atom) -->ip4_address558,14312 -i256_chars(Chars, T) -->i256_chars565,14470 -i256_chars(Chars, T) -->i256_chars565,14470 -i256_chars(Chars, T) -->i256_chars565,14470 -reg_name(Host) -->reg_name573,14594 -reg_name(Host) -->reg_name573,14594 -reg_name(Host) -->reg_name573,14594 -reg_name_chars([H|T]) -->reg_name_chars577,14668 -reg_name_chars([H|T]) -->reg_name_chars577,14668 -reg_name_chars([H|T]) -->reg_name_chars577,14668 -reg_name_chars([]) -->reg_name_chars580,14736 -reg_name_chars([]) -->reg_name_chars580,14736 -reg_name_chars([]) -->reg_name_chars580,14736 -reg_name_char(C) -->reg_name_char583,14765 -reg_name_char(C) -->reg_name_char583,14765 -reg_name_char(C) -->reg_name_char583,14765 -port([port(Port)|T], T) -->port589,14829 -port([port(Port)|T], T) -->port589,14829 -port([port(Port)|T], T) -->port589,14829 -port(T, T) -->port594,14925 -port(T, T) -->port594,14925 -port(T, T) -->port594,14925 -path_abempty(Path) -->path_abempty597,14946 -path_abempty(Path) -->path_abempty597,14946 -path_abempty(Path) -->path_abempty597,14946 -win_drive_path(Path) -->win_drive_path605,15065 -win_drive_path(Path) -->win_drive_path605,15065 -win_drive_path(Path) -->win_drive_path605,15065 -path_absolute(Path) -->path_absolute617,15282 -path_absolute(Path) -->path_absolute617,15282 -path_absolute(Path) -->path_absolute617,15282 -path_noschema(Path) -->path_noschema623,15405 -path_noschema(Path) -->path_noschema623,15405 -path_noschema(Path) -->path_noschema623,15405 -path_rootless(Path) -->path_rootless628,15518 -path_rootless(Path) -->path_rootless628,15518 -path_rootless(Path) -->path_rootless628,15518 -path_empty('/') -->path_empty633,15628 -path_empty('/') -->path_empty633,15628 -path_empty('/') -->path_empty633,15628 -segments_chars([0'/|Chars], T) --> % 0'segments_chars636,15654 -segments_chars([0'/|Chars], T) --> % 0'segments_chars636,15654 -segments_chars([0'/|Chars], T) --> % 0'segments_chars636,15654 -segments_chars(T, T) -->segments_chars640,15754 -segments_chars(T, T) -->segments_chars640,15754 -segments_chars(T, T) -->segments_chars640,15754 -segment_chars([H|T0], T) -->segment_chars643,15785 -segment_chars([H|T0], T) -->segment_chars643,15785 -segment_chars([H|T0], T) -->segment_chars643,15785 -segment_chars(T, T) -->segment_chars646,15851 -segment_chars(T, T) -->segment_chars646,15851 -segment_chars(T, T) -->segment_chars646,15851 -segment_nz_chars([H|T0], T) -->segment_nz_chars649,15881 -segment_nz_chars([H|T0], T) -->segment_nz_chars649,15881 -segment_nz_chars([H|T0], T) -->segment_nz_chars649,15881 -segment_nz_nc_chars([H|T0], T) -->segment_nz_nc_chars653,15948 -segment_nz_nc_chars([H|T0], T) -->segment_nz_nc_chars653,15948 -segment_nz_nc_chars([H|T0], T) -->segment_nz_nc_chars653,15948 -segment_nz_nc_chars(T, T) -->segment_nz_nc_chars656,16039 -segment_nz_nc_chars(T, T) -->segment_nz_nc_chars656,16039 -segment_nz_nc_chars(T, T) -->segment_nz_nc_chars656,16039 -segment_nz_nc_char(_) --> ":", !, {fail}.segment_nz_nc_char659,16075 -segment_nz_nc_char(_) --> ":", !, {fail}.segment_nz_nc_char659,16075 -segment_nz_nc_char(_) --> ":", !, {fail}.segment_nz_nc_char659,16075 -segment_nz_nc_char(C) --> pchar(C).segment_nz_nc_char660,16117 -segment_nz_nc_char(C) --> pchar(C).segment_nz_nc_char660,16117 -segment_nz_nc_char(C) --> pchar(C).segment_nz_nc_char660,16117 -segment_nz_nc_char(C) --> pchar(C).segment_nz_nc_char660,16117 -segment_nz_nc_char(C) --> pchar(C).segment_nz_nc_char660,16117 -query([search(Params)|T], T) -->query667,16219 -query([search(Params)|T], T) -->query667,16219 -query([search(Params)|T], T) -->query667,16219 -query(T,T) -->query670,16278 -query(T,T) -->query670,16278 -query(T,T) -->query670,16278 -search([Parameter|Parameters])-->search673,16299 -search([Parameter|Parameters])-->search673,16299 -search([Parameter|Parameters])-->search673,16299 -search([]) -->search679,16449 -search([]) -->search679,16449 -search([]) -->search679,16449 -parameter(Param)--> !,parameter682,16470 -parameter(Param)--> !,parameter682,16470 -parameter(Param)--> !,parameter682,16470 -search_chars([C|T]) -->search_chars695,16712 -search_chars([C|T]) -->search_chars695,16712 -search_chars([C|T]) -->search_chars695,16712 -search_chars([]) -->search_chars698,16774 -search_chars([]) -->search_chars698,16774 -search_chars([]) -->search_chars698,16774 -search_char(_) --> search_sep, !, { fail }.search_char701,16801 -search_char(_) --> search_sep, !, { fail }.search_char701,16801 -search_char(_) --> search_sep, !, { fail }.search_char701,16801 -search_char(_) --> "=", !, { fail }.search_char702,16845 -search_char(_) --> "=", !, { fail }.search_char702,16845 -search_char(_) --> "=", !, { fail }.search_char702,16845 -search_char(C) --> fragment_char(C).search_char703,16882 -search_char(C) --> fragment_char(C).search_char703,16882 -search_char(C) --> fragment_char(C).search_char703,16882 -search_char(C) --> fragment_char(C).search_char703,16882 -search_char(C) --> fragment_char(C).search_char703,16882 -search_value_chars([C|T]) -->search_value_chars705,16920 -search_value_chars([C|T]) -->search_value_chars705,16920 -search_value_chars([C|T]) -->search_value_chars705,16920 -search_value_chars([]) -->search_value_chars708,17000 -search_value_chars([]) -->search_value_chars708,17000 -search_value_chars([]) -->search_value_chars708,17000 -search_value_char(_) --> search_sep, !, { fail }.search_value_char711,17033 -search_value_char(_) --> search_sep, !, { fail }.search_value_char711,17033 -search_value_char(_) --> search_sep, !, { fail }.search_value_char711,17033 -search_value_char(C) --> fragment_char(C).search_value_char712,17083 -search_value_char(C) --> fragment_char(C).search_value_char712,17083 -search_value_char(C) --> fragment_char(C).search_value_char712,17083 -search_value_char(C) --> fragment_char(C).search_value_char712,17083 -search_value_char(C) --> fragment_char(C).search_value_char712,17083 -search_sep --> "&", !.search_sep722,17367 -search_sep --> ";".search_sep723,17390 -fragment([fragment(Fragment)|T], T) -->fragment730,17486 -fragment([fragment(Fragment)|T], T) -->fragment730,17486 -fragment([fragment(Fragment)|T], T) -->fragment730,17486 -fragment(T, T) -->fragment734,17593 -fragment(T, T) -->fragment734,17593 -fragment(T, T) -->fragment734,17593 -fragment_chars([H|T]) -->fragment_chars737,17618 -fragment_chars([H|T]) -->fragment_chars737,17618 -fragment_chars([H|T]) -->fragment_chars737,17618 -fragment_chars([]) -->fragment_chars740,17686 -fragment_chars([]) -->fragment_chars740,17686 -fragment_chars([]) -->fragment_chars740,17686 -fragment_char(C) --> pchar(C), !.fragment_char748,17772 -fragment_char(C) --> pchar(C), !.fragment_char748,17772 -fragment_char(C) --> pchar(C), !.fragment_char748,17772 -fragment_char(0'/) --> "/", !.fragment_char749,17808 -fragment_char(0'/) --> "/", !.fragment_char749,17808 -fragment_char(0'/) --> "/", !.fragment_char749,17808 -fragment_char(0'?) --> "?", !.fragment_char750,17839 -fragment_char(0'?) --> "?", !.fragment_char750,17839 -fragment_char(0'?) --> "?", !.fragment_char750,17839 -fragment_char(0'[) --> "[", !. % Not according RDF3986!fragment_char751,17870 -fragment_char(0'[) --> "[", !. % Not according RDF3986!fragment_char751,17870 -fragment_char(0'[) --> "[", !. % Not according RDF3986!fragment_char751,17870 -fragment_char(0']) --> "]", !.fragment_char752,17927 -fragment_char(0']) --> "]", !.fragment_char752,17927 -fragment_char(0']) --> "]", !.fragment_char752,17927 -pchar(0' ) --> "+", !. %' ?pchar765,18178 -pchar(0' ) --> "+", !. %' ?pchar765,18178 -pchar(0' ) --> "+", !. %' ?pchar765,18178 -pchar(C) -->pchar766,18208 -pchar(C) -->pchar766,18208 -pchar(C) -->pchar766,18208 -pchar(C) -->pchar773,18306 -pchar(C) -->pchar773,18306 -pchar(C) -->pchar773,18306 -lwalpha(H) -->lwalpha780,18395 -lwalpha(H) -->lwalpha780,18395 -lwalpha(H) -->lwalpha780,18395 -drive_letter(C) -->drive_letter787,18486 -drive_letter(C) -->drive_letter787,18486 -drive_letter(C) -->drive_letter787,18486 -sub_delim(0'!).sub_delim802,18693 -sub_delim(0'!).sub_delim802,18693 -sub_delim(0'$).sub_delim803,18709 -sub_delim(0'$).sub_delim803,18709 -sub_delim(0'&).sub_delim804,18725 -sub_delim(0'&).sub_delim804,18725 -sub_delim(0'').sub_delim805,18741 -sub_delim(0'').sub_delim805,18741 -sub_delim(0'().sub_delim806,18757 -sub_delim(0'().sub_delim806,18757 -sub_delim(0')).sub_delim807,18773 -sub_delim(0')).sub_delim807,18773 -sub_delim(0'*).sub_delim808,18789 -sub_delim(0'*).sub_delim808,18789 -sub_delim(0'+).sub_delim809,18805 -sub_delim(0'+).sub_delim809,18805 -sub_delim(0',).sub_delim810,18821 -sub_delim(0',).sub_delim810,18821 -sub_delim(0';).sub_delim811,18837 -sub_delim(0';).sub_delim811,18837 -sub_delim(0'=).sub_delim812,18853 -sub_delim(0'=).sub_delim812,18853 -term_expansion(unreserved(map), Clauses) :-term_expansion820,18978 -term_expansion(unreserved(map), Clauses) :-term_expansion820,18978 -term_expansion(unreserved(map), Clauses) :-term_expansion820,18978 -unreserved_(C) :-unreserved_823,19073 -unreserved_(C) :-unreserved_823,19073 -unreserved_(C) :-unreserved_823,19073 -unreserved_(0'-).unreserved_826,19134 -unreserved_(0'-).unreserved_826,19134 -unreserved_(0'.).unreserved_827,19152 -unreserved_(0'.).unreserved_827,19152 -unreserved_(0'_).unreserved_828,19170 -unreserved_(0'_).unreserved_828,19170 -unreserved_(0'~). % 0'unreserved_829,19188 -unreserved_(0'~). % 0'unreserved_829,19188 -unreserved(map). % Expandedunreserved831,19214 -unreserved(map). % Expandedunreserved831,19214 -www_form_encode(Value, Encoded) :-www_form_encode851,19976 -www_form_encode(Value, Encoded) :-www_form_encode851,19976 -www_form_encode(Value, Encoded) :-www_form_encode851,19976 -www_form_encode(Value, Encoded) :-www_form_encode856,20131 -www_form_encode(Value, Encoded) :-www_form_encode856,20131 -www_form_encode(Value, Encoded) :-www_form_encode856,20131 -www_encode([0'\r, 0'\n|T], Extra) --> !,www_encode863,20306 -www_encode([0'\r, 0'\n|T], Extra) --> !,www_encode863,20306 -www_encode([0'\r, 0'\n|T], Extra) --> !,www_encode863,20306 -www_encode([0'\n|T], Extra) --> !,www_encode866,20381 -www_encode([0'\n|T], Extra) --> !,www_encode866,20381 -www_encode([0'\n|T], Extra) --> !,www_encode866,20381 -www_encode([H|T], Extra) -->www_encode869,20450 -www_encode([H|T], Extra) -->www_encode869,20450 -www_encode([H|T], Extra) -->www_encode869,20450 -www_encode([], _) -->www_encode872,20529 -www_encode([], _) -->www_encode872,20529 -www_encode([], _) -->www_encode872,20529 -percent_encode(C, _Extra) -->percent_encode875,20557 -percent_encode(C, _Extra) -->percent_encode875,20557 -percent_encode(C, _Extra) -->percent_encode875,20557 -percent_encode(C, Extra) -->percent_encode878,20616 -percent_encode(C, Extra) -->percent_encode878,20616 -percent_encode(C, Extra) -->percent_encode878,20616 -percent_encode(C, _) -->percent_encode882,20738 -percent_encode(C, _) -->percent_encode882,20738 -percent_encode(C, _) -->percent_encode882,20738 -percent_encode(C, _) --> % Unicode characterspercent_encode885,20799 -percent_encode(C, _) --> % Unicode characterspercent_encode885,20799 -percent_encode(C, _) --> % Unicode characterspercent_encode885,20799 -percent_encode(C, _) -->percent_encode890,20954 -percent_encode(C, _) -->percent_encode890,20954 -percent_encode(C, _) -->percent_encode890,20954 -percent_encode(_C, _) -->percent_encode893,21015 -percent_encode(_C, _) -->percent_encode893,21015 -percent_encode(_C, _) -->percent_encode893,21015 -percent_bytes([]) -->percent_bytes897,21085 -percent_bytes([]) -->percent_bytes897,21085 -percent_bytes([]) -->percent_bytes897,21085 -percent_bytes([H|T]) -->percent_bytes899,21112 -percent_bytes([H|T]) -->percent_bytes899,21112 -percent_bytes([H|T]) -->percent_bytes899,21112 -percent_byte(C) -->percent_byte903,21175 -percent_byte(C) -->percent_byte903,21175 -percent_byte(C) -->percent_byte903,21175 -percent_coded(C) -->percent_coded915,21440 -percent_coded(C) -->percent_coded915,21440 -percent_coded(C) -->percent_coded915,21440 -www_decode([0' |T]) -->www_decode933,21735 -www_decode([0' |T]) -->www_decode933,21735 -www_decode([0' |T]) -->www_decode933,21735 -www_decode([C|T]) -->www_decode936,21791 -www_decode([C|T]) -->www_decode936,21791 -www_decode([C|T]) -->www_decode936,21791 -www_decode([C|T]) -->www_decode939,21851 -www_decode([C|T]) -->www_decode939,21851 -www_decode([C|T]) -->www_decode939,21851 -www_decode([]) -->www_decode942,21898 -www_decode([]) -->www_decode942,21898 -www_decode([]) -->www_decode942,21898 -utf8_cont([H|T]) -->utf8_cont945,21923 -utf8_cont([H|T]) -->utf8_cont945,21923 -utf8_cont([H|T]) -->utf8_cont945,21923 -utf8_cont([]) -->utf8_cont949,22009 -utf8_cont([]) -->utf8_cont949,22009 -utf8_cont([]) -->utf8_cont949,22009 -set_url_encoding(Old, New) :-set_url_encoding963,22368 -set_url_encoding(Old, New) :-set_url_encoding963,22368 -set_url_encoding(Old, New) :-set_url_encoding963,22368 -url_iri(Encoded, Decoded) :-url_iri983,22928 -url_iri(Encoded, Decoded) :-url_iri983,22928 -url_iri(Encoded, Decoded) :-url_iri983,22928 -url_iri(URL, IRI) :-url_iri992,23187 -url_iri(URL, IRI) :-url_iri992,23187 -url_iri(URL, IRI) :-url_iri992,23187 -unescape_precent([], []).unescape_precent998,23321 -unescape_precent([], []).unescape_precent998,23321 -unescape_precent([0'%,C1,C2|T0], [H|T]) :- !, %'unescape_precent999,23347 -unescape_precent([0'%,C1,C2|T0], [H|T]) :- !, %'unescape_precent999,23347 -unescape_precent([0'%,C1,C2|T0], [H|T]) :- !, %'unescape_precent999,23347 -unescape_precent([H|T0], [H|T]) :-unescape_precent1004,23496 -unescape_precent([H|T0], [H|T]) :-unescape_precent1004,23496 -unescape_precent([H|T0], [H|T]) :-unescape_precent1004,23496 -parse_url_search(Spec, Fields) :-parse_url_search1019,23932 -parse_url_search(Spec, Fields) :-parse_url_search1019,23932 -parse_url_search(Spec, Fields) :-parse_url_search1019,23932 -parse_url_search(Codes, Fields) :-parse_url_search1023,24042 -parse_url_search(Codes, Fields) :-parse_url_search1023,24042 -parse_url_search(Codes, Fields) :-parse_url_search1023,24042 -parse_url_search(Codes, Fields) :-parse_url_search1026,24129 -parse_url_search(Codes, Fields) :-parse_url_search1026,24129 -parse_url_search(Codes, Fields) :-parse_url_search1026,24129 -file_name_to_url(File, FileURL) :-file_name_to_url1043,24549 -file_name_to_url(File, FileURL) :-file_name_to_url1043,24549 -file_name_to_url(File, FileURL) :-file_name_to_url1043,24549 -file_name_to_url(File, FileURL) :-file_name_to_url1047,24678 -file_name_to_url(File, FileURL) :-file_name_to_url1047,24678 -file_name_to_url(File, FileURL) :-file_name_to_url1047,24678 - -swi/library/utf8.pl,582 -utf8_codes([H|T]) -->utf8_codes52,2022 -utf8_codes([H|T]) -->utf8_codes52,2022 -utf8_codes([H|T]) -->utf8_codes52,2022 -utf8_codes([]) -->utf8_codes55,2078 -utf8_codes([]) -->utf8_codes55,2078 -utf8_codes([]) -->utf8_codes55,2078 -utf8_code(C) -->utf8_code58,2103 -utf8_code(C) -->utf8_code58,2103 -utf8_code(C) -->utf8_code58,2103 -utf8_code(C) -->utf8_code89,2876 -utf8_code(C) -->utf8_code89,2876 -utf8_code(C) -->utf8_code89,2876 -utf8_cont(Val, Shift) -->utf8_cont130,3888 -utf8_cont(Val, Shift) -->utf8_cont130,3888 -utf8_cont(Val, Shift) -->utf8_cont130,3888 - -swi/library/win_menu.pl,4854 -associated_file(File) :-associated_file186,5774 -associated_file(File) :-associated_file186,5774 -associated_file(File) :-associated_file186,5774 -associated_file(File) :-associated_file188,5847 -associated_file(File) :-associated_file188,5847 -associated_file(File) :-associated_file188,5847 -insert_associated_file :-insert_associated_file193,5984 -edit_new(File) :-edit_new213,6438 -edit_new(File) :-edit_new213,6438 -edit_new(File) :-edit_new213,6438 -www_open(Id) :-www_open216,6503 -www_open(Id) :-www_open216,6503 -www_open(Id) :-www_open216,6503 -html_open(Spec) :-html_open223,6719 -html_open(Spec) :-html_open223,6719 -html_open(Spec) :-html_open223,6719 -about :-about229,6864 -about :-about247,7318 -load(Path) :-load252,7377 -load(Path) :-load252,7377 -load(Path) :-load252,7377 -action(Action) :-action266,7689 -action(Action) :-action266,7689 -action(Action) :-action266,7689 -gather_args([], []).gather_args273,7843 -gather_args([], []).gather_args273,7843 -gather_args([+H0|T0], [H|T]) :- !,gather_args274,7864 -gather_args([+H0|T0], [H|T]) :- !,gather_args274,7864 -gather_args([+H0|T0], [H|T]) :- !,gather_args274,7864 -gather_args([H|T0], [H|T]) :-gather_args277,7940 -gather_args([H|T0], [H|T]) :-gather_args277,7940 -gather_args([H|T0], [H|T]) :-gather_args277,7940 -gather_arg(file(open, Title), File) :- !,gather_arg282,8047 -gather_arg(file(open, Title), File) :- !,gather_arg282,8047 -gather_arg(file(open, Title), File) :- !,gather_arg282,8047 -gather_arg(file(save, Title), File) :-gather_arg287,8205 -gather_arg(file(save, Title), File) :-gather_arg287,8205 -gather_arg(file(save, Title), File) :-gather_arg287,8205 -source_types_desc(Desc) :-source_types_desc292,8360 -source_types_desc(Desc) :-source_types_desc292,8360 -source_types_desc(Desc) :-source_types_desc292,8360 -gather_arg(file(Mode, Title), File) :-gather_arg299,8550 -gather_arg(file(Mode, Title), File) :-gather_arg299,8550 -gather_arg(file(Mode, Title), File) :-gather_arg299,8550 -prolog_file_pattern(Pattern) :-prolog_file_pattern329,9199 -prolog_file_pattern(Pattern) :-prolog_file_pattern329,9199 -prolog_file_pattern(Pattern) :-prolog_file_pattern329,9199 -init_win_app :-init_win_app345,9556 -init_win_app :-init_win_app347,9617 -my_prolog :-my_prolog352,9741 -ensure_dir(Dir) :-ensure_dir361,9933 -ensure_dir(Dir) :-ensure_dir361,9933 -ensure_dir(Dir) :-ensure_dir361,9933 -ensure_dir(Dir) :-ensure_dir363,9979 -ensure_dir(Dir) :-ensure_dir363,9979 -ensure_dir(Dir) :-ensure_dir363,9979 -prolog:file_open_event(Path) :-file_open_event405,11062 -prolog:file_open_event(Path) :-file_open_event405,11062 -file_open_event(edit, Path) :-file_open_event417,11462 -file_open_event(edit, Path) :-file_open_event417,11462 -file_open_event(edit, Path) :-file_open_event417,11462 -file_open_event(load, Path) :-file_open_event419,11506 -file_open_event(load, Path) :-file_open_event419,11506 -file_open_event(load, Path) :-file_open_event419,11506 -file_open_event(new_instance, Path) :-file_open_event423,11627 -file_open_event(new_instance, Path) :-file_open_event423,11627 -file_open_event(new_instance, Path) :-file_open_event423,11627 -file_open_event(new_instance, Path) :-file_open_event428,11803 -file_open_event(new_instance, Path) :-file_open_event428,11803 -file_open_event(new_instance, Path) :-file_open_event428,11803 -current_app(App) :-current_app435,11981 -current_app(App) :-current_app435,11981 -current_app(App) :-current_app435,11981 -go_home_on_plain_app_start :-go_home_on_plain_app_start445,12273 -mru_info('&File', 'Edit &Recent', 'MRU2', path, edit).mru_info463,12662 -mru_info('&File', 'Edit &Recent', 'MRU2', path, edit).mru_info463,12662 -mru_info('&File', 'Load &Recent', 'MRULoad', path, load).mru_info464,12720 -mru_info('&File', 'Load &Recent', 'MRULoad', path, load).mru_info464,12720 -add_to_mru(Action, File) :-add_to_mru466,12779 -add_to_mru(Action, File) :-add_to_mru466,12779 -add_to_mru(Action, File) :-add_to_mru466,12779 -refresh_mru :-refresh_mru482,13209 -action_path_menu(ActionItem, Path, Label, win_menu:Action) :-action_path_menu491,13486 -action_path_menu(ActionItem, Path, Label, win_menu:Action) :-action_path_menu491,13486 -action_path_menu(ActionItem, Path, Label, win_menu:Action) :-action_path_menu491,13486 -add_to_mru(_, _).add_to_mru497,13621 -add_to_mru(_, _).add_to_mru497,13621 -prolog:message(opening_url(Url)) -->message510,13794 -prolog:message(opening_url(Url)) -->message510,13794 -prolog:message(opened_url(_Url)) -->message512,13868 -prolog:message(opened_url(_Url)) -->message512,13868 -prolog:message(new_instance(Path)) -->message514,13930 -prolog:message(new_instance(Path)) -->message514,13930 -prolog:message(about_qt) -->message517,14073 -prolog:message(about_qt) -->message517,14073 - -swi/library/www_browser.pl,4012 -www_open_url(Spec) :- % user configuredwww_open_url62,2194 -www_open_url(Spec) :- % user configuredwww_open_url62,2194 -www_open_url(Spec) :- % user configuredwww_open_url62,2194 -www_open_url(Spec) :- % Windows shellwww_open_url70,2438 -www_open_url(Spec) :- % Windows shellwww_open_url70,2438 -www_open_url(Spec) :- % Windows shellwww_open_url70,2438 -www_open_url(Spec) :- % Unix `open document'www_open_url74,2540 -www_open_url(Spec) :- % Unix `open document'www_open_url74,2540 -www_open_url(Spec) :- % Unix `open document'www_open_url74,2540 -www_open_url(Spec) :- % KDE clientwww_open_url80,2719 -www_open_url(Spec) :- % KDE clientwww_open_url80,2719 -www_open_url(Spec) :- % KDE clientwww_open_url80,2719 -www_open_url(Spec) :- % something we knowwww_open_url85,2881 -www_open_url(Spec) :- % something we knowwww_open_url85,2881 -www_open_url(Spec) :- % something we knowwww_open_url85,2881 -open_command('gnome-open').open_command91,3038 -open_command('gnome-open').open_command91,3038 -open_command(open).open_command92,3066 -open_command(open).open_command92,3066 -www_open_url(Browser, URL) :-www_open_url102,3353 -www_open_url(Browser, URL) :-www_open_url102,3353 -www_open_url(Browser, URL) :-www_open_url102,3353 -www_open_url(Browser, URL) :-www_open_url106,3519 -www_open_url(Browser, URL) :-www_open_url106,3519 -www_open_url(Browser, URL) :-www_open_url106,3519 -netscape_remote(Browser, Fmt, Args) :-netscape_remote118,3904 -netscape_remote(Browser, Fmt, Args) :-netscape_remote118,3904 -netscape_remote(Browser, Fmt, Args) :-netscape_remote118,3904 -compatible(Browser, With) :-compatible130,4197 -compatible(Browser, With) :-compatible130,4197 -compatible(Browser, With) :-compatible130,4197 -known_browser(firefox, netscape).known_browser139,4416 -known_browser(firefox, netscape).known_browser139,4416 -known_browser(mozilla, netscape).known_browser140,4452 -known_browser(mozilla, netscape).known_browser140,4452 -known_browser(netscape, netscape).known_browser141,4488 -known_browser(netscape, netscape).known_browser141,4488 -known_browser(konqueror, -).known_browser142,4524 -known_browser(konqueror, -).known_browser142,4524 -known_browser(opera, -).known_browser143,4553 -known_browser(opera, -).known_browser143,4553 -has_command(Command) :-has_command156,4792 -has_command(Command) :-has_command156,4792 -has_command(Command) :-has_command156,4792 -has_command(Command) :-has_command159,4865 -has_command(Command) :-has_command159,4865 -has_command(Command) :-has_command159,4865 -user:url_path(swipl, 'http://www.swi-prolog.org').url_path188,5603 -user:url_path(swipl_faq, swipl('FAQ')).url_path190,5661 -user:url_path(swipl_man, swipl('pldoc/index.html')).url_path191,5706 -user:url_path(swipl_mail, swipl('Mailinglist.html')).url_path192,5764 -user:url_path(swipl_download, swipl('Download.html')).url_path193,5822 -user:url_path(swipl_bugs, swipl('bugzilla')).url_path194,5877 -user:url_path(swipl_quick, swipl('man/quickstart.html')).url_path195,5927 -user:url_path(yap, 'http://www.dcc.fc.up.pt/~vsc/Yap').url_path197,5989 -user:url_path(yap_download, 'http://www.dcc.fc.up.pt/~vsc/Yap/downloads.html').url_path199,6052 -user:url_path(yap_man, yap('documentation.html')).url_path200,6134 -user:url_path(yap_mail, 'https://lists.sourceforge.net/lists/listinfo/yap-users').url_path201,6192 -user:url_path(yap_bugs, 'http://sourceforge.net/tracker/?group_id=24437&atid=381483').url_path202,6279 -user:url_path(yap_git, 'http://sourceforge.net/p/yap/yap-6.3/ref/master/').url_path203,6370 -expand_url_path(URL, URL) :-expand_url_path212,6615 -expand_url_path(URL, URL) :-expand_url_path212,6615 -expand_url_path(URL, URL) :-expand_url_path212,6615 -expand_url_path(Spec, URL) :-expand_url_path214,6687 -expand_url_path(Spec, URL) :-expand_url_path214,6687 -expand_url_path(Spec, URL) :-expand_url_path214,6687 - -TAGS,1009578 -!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/format1,0format5,46 -AliasManager ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.core.alias import Alias, AliasManager$/;" kind:namespace line:45AliasManager$22,2089AliasManager$6,135 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Unicode24,2385Unicode7,311 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Unicode24,2385Dict7,311 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Unicode24,2385Any7,311 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Unicode24,2385default$7,311 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Dict24,2385Dict8,459 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Any24,2385Unicode9,604 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Any24,2385Dict9,604 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Any24,2385Any9,604 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Any24,2385default$9,604 -Any ../ipykernel/ipykernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13default$24,2385default$10,748 -Any ../ipykernel/ipykernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Dict26,2634Dict11,897 -Any ../ipykernel/ipykernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Dict26,2634Any$11,897 -Any ../ipykernel/ipykernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Any$26,2634Any$12,1023 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Type28,2888Type13,1149 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Type28,2888Any13,1149 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Type28,2888List$13,1149 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Any28,2888Any14,1278 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10List$28,2888Type15,1406 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10List$28,2888Any15,1406 -Any ../ipykernel/ipykernel/ipkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10List$28,2888List$15,1406 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Unicode30,3164Unicode16,1536 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Dict30,3164Unicode17,1702 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Dict30,3164Dict17,1702 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Dict30,3164Any17,1702 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Dict30,3164default$17,1702 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13Any30,3164Any18,1865 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13default$30,3164Unicode19,2027 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13default$30,3164Dict19,2027 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13default$30,3164Any19,2027 -Any ../packages/python/yap_kernel/yap_kernel/comm/manager.py /^from traitlets import Instance, Unicode, Dict, Any, default$/;" kind:namespace line:13default$30,3164default$19,2027 -Any ../packages/python/yap_kernel/yap_kernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Dict32,3449Dict20,2194 -Any ../packages/python/yap_kernel/yap_kernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Any$32,3449Dict21,2338 -Any ../packages/python/yap_kernel/yap_kernel/displayhook.py /^from traitlets import Instance, Dict, Any$/;" kind:namespace line:11Any$32,3449Any$21,2338 -Any ../packages/python/yap_kernel/yap_kernel/yapkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Type34,3739Type22,2482 -Any ../packages/python/yap_kernel/yap_kernel/yapkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Any34,3739Type23,2630 -Any ../packages/python/yap_kernel/yap_kernel/yapkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Any34,3739Any23,2630 -Any ../packages/python/yap_kernel/yap_kernel/yapkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10Any34,3739List$23,2630 -Any ../packages/python/yap_kernel/yap_kernel/yapkernel.py /^from traitlets import Instance, Type, Any, List$/;" kind:namespace line:10List$34,3739List$24,2777 -BackgroundSocket ../ipykernel/ipykernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18BackgroundSocket50,5572BackgroundSocket25,2926 -BackgroundSocket ../ipykernel/ipykernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18BackgroundSocket50,5572IOPubThread$25,2926 -BackgroundSocket ../ipykernel/ipykernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18IOPubThread$50,5572IOPubThread$26,3106 -BackgroundSocket ../packages/python/yap_kernel/yap_kernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18BackgroundSocket52,5837BackgroundSocket27,3282 -BackgroundSocket ../packages/python/yap_kernel/yap_kernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18BackgroundSocket52,5837IOPubThread$27,3282 -BackgroundSocket ../packages/python/yap_kernel/yap_kernel/inprocess/ipkernel.py /^from ..iostream import OutStream, BackgroundSocket, IOPubThread$/;" kind:namespace line:18IOPubThread$52,5837IOPubThread$28,3480 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode72,9238Unicode29,3674 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode72,9238Bytes29,3674 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode72,9238Bool29,3674 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode72,9238Dict29,3674 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode72,9238Any29,3674 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode72,9238default$29,3674 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes72,9238Bytes30,3833 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool72,9238Unicode31,3990 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool72,9238Bytes31,3990 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool72,9238Bool31,3990 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool72,9238Dict31,3990 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool72,9238Any31,3990 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool72,9238default$31,3990 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict72,9238Dict32,4146 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any72,9238Unicode33,4302 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any72,9238Bytes33,4302 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any72,9238Bool33,4302 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any72,9238Dict33,4302 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any72,9238Any33,4302 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any72,9238default$33,4302 -Bool ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$72,9238default$34,4457 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode86,10908Unicode35,4617 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode86,10908Bytes35,4617 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode86,10908Bool35,4617 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode86,10908Dict35,4617 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode86,10908Any35,4617 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode86,10908default$35,4617 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes86,10908Bytes36,4796 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool86,10908Unicode37,4973 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool86,10908Bytes37,4973 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool86,10908Bool37,4973 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool86,10908Dict37,4973 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool86,10908Any37,4973 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool86,10908default$37,4973 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict86,10908Dict38,5149 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any86,10908Unicode39,5325 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any86,10908Bytes39,5325 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any86,10908Bool39,5325 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any86,10908Dict39,5325 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any86,10908Any39,5325 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any86,10908default$39,5325 -Bytes ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$86,10908default$40,5500 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict98,12246Dict41,5680 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict98,12246CBytes41,5680 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict98,12246Any$41,5680 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11CBytes98,12246CBytes42,5832 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$98,12246Dict43,5986 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$98,12246CBytes43,5986 -CBytes ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$98,12246Any$43,5986 -CachingCompiler ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.core.compilerop import CachingCompiler, check_linecache_ipython$/;" kind:namespace line:49check_linecache_ipython$114,13899check_linecache_ipython$44,6138 -CannedArray ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass116,14190CannedClass45,6356 -CannedArray ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass116,14190interactive$45,6356 -CannedArray ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13interactive$116,14190interactive$46,6537 -CannedArray ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass118,14475CannedClass47,6719 -CannedArray ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass118,14475interactive$47,6719 -CannedArray ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13interactive$118,14475interactive$48,6919 -CannedClass ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass126,15461CannedClass49,7120 -CannedClass ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass126,15461interactive$49,7120 -CannedClass ../ipykernel/ipykernel/tests/test_serialize.py /^from ipykernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13interactive$126,15461interactive$50,7301 -CannedClass ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass128,15746CannedClass51,7483 -CannedClass ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13CannedClass128,15746interactive$51,7483 -CannedClass ../packages/python/yap_kernel/yap_kernel/tests/test_serialize.py /^from yap_kernel.pickleutil import CannedArray, CannedClass, interactive$/;" kind:namespace line:13interactive$128,15746interactive$52,7683 -CodeMagics ../ipykernel/ipykernel/zmqshell.py /^from IPython.core.magics import MacroToEdit, CodeMagics$/;" kind:namespace line:35CodeMagics$138,16980CodeMagics$53,7884 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1DEBUG168,20591DEBUG54,8037 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1WARN168,20591DEBUG55,8187 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1WARN168,20591WARN55,8187 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1WARN168,20591ERROR55,8187 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1WARN168,20591FATAL$55,8187 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1ERROR168,20591ERROR56,8336 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1FATAL$168,20591DEBUG57,8486 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1FATAL$168,20591WARN57,8486 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1FATAL$168,20591ERROR57,8486 -DEBUG ../packages/python/yap_kernel/yap_kernel/log.py /^from logging import INFO, DEBUG, WARN, ERROR, FATAL$/;" kind:namespace line:1FATAL$168,20591FATAL$57,8486 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode176,21662Unicode58,8637 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes176,21662Unicode59,8798 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes176,21662Bytes59,8798 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes176,21662Bool59,8798 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes176,21662Dict59,8798 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes176,21662Any59,8798 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes176,21662default$59,8798 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool176,21662Bool60,8957 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict176,21662Unicode61,9115 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict176,21662Bytes61,9115 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict176,21662Bool61,9115 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict176,21662Dict61,9115 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict176,21662Any61,9115 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict176,21662default$61,9115 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any176,21662Any62,9273 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$176,21662Unicode63,9430 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$176,21662Bytes63,9430 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$176,21662Bool63,9430 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$176,21662Dict63,9430 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$176,21662Any63,9430 -Dict ../ipykernel/ipykernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$176,21662default$63,9430 -Dict ../ipykernel/ipykernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict178,21938Dict64,9592 -Dict ../ipykernel/ipykernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11CBytes178,21938Dict65,9725 -Dict ../ipykernel/ipykernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11CBytes178,21938CBytes65,9725 -Dict ../ipykernel/ipykernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11CBytes178,21938Any$65,9725 -Dict ../ipykernel/ipykernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$178,21938Any$66,9860 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode180,22170Unicode67,9993 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode180,22170Bytes67,9993 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode180,22170Bool67,9993 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode180,22170Dict67,9993 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode180,22170Any67,9993 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Unicode180,22170default$67,9993 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bytes180,22170Bytes68,10172 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool180,22170Unicode69,10349 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool180,22170Bytes69,10349 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool180,22170Bool69,10349 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool180,22170Dict69,10349 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool180,22170Any69,10349 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Bool180,22170default$69,10349 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Dict180,22170Dict70,10525 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any180,22170Unicode71,10701 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any180,22170Bytes71,10701 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any180,22170Bool71,10701 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any180,22170Dict71,10701 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any180,22170Any71,10701 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12Any180,22170default$71,10701 -Dict ../packages/python/yap_kernel/yap_kernel/comm/comm.py /^from traitlets import Instance, Unicode, Bytes, Bool, Dict, Any, default$/;" kind:namespace line:12default$180,22170default$72,10876 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict182,22482Dict73,11056 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict182,22482CBytes73,11056 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Dict182,22482Any$73,11056 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11CBytes182,22482CBytes74,11207 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$182,22482Dict75,11360 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$182,22482CBytes75,11360 -Dict ../packages/python/yap_kernel/yap_kernel/datapub.py /^from traitlets import Instance, Dict, CBytes, Any$/;" kind:namespace line:11Any$182,22482Any$75,11360 -DollarFormatter ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.utils.text import format_screen, LSString, SList, DollarFormatter$/;" kind:namespace line:81LSString194,24187LSString76,11511 -DollarFormatter ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.utils.text import format_screen, LSString, SList, DollarFormatter$/;" kind:namespace line:81SList194,24187LSString77,11715 -DollarFormatter ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.utils.text import format_screen, LSString, SList, DollarFormatter$/;" kind:namespace line:81SList194,24187SList77,11715 -DollarFormatter ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.utils.text import format_screen, LSString, SList, DollarFormatter$/;" kind:namespace line:81SList194,24187DollarFormatter$77,11715 -DollarFormatter ../packages/python/yap_kernel/yap_kernel/interactiveshell.py /^from IPython.utils.text import format_screen, LSString, SList, DollarFormatter$/;" kind:namespace line:81DollarFormatter$194,24187DollarFormatter$78,11916 -DottedObjectName ../packages/python/yap_kernel/yap_kernel/inprocess/manager.py /^from traitlets import Instance, DottedObjectName, default$/;" kind:namespace line:6DottedObjectName196,24519DottedObjectName79,12128 -DottedObjectName ../packages/python/yap_kernel/yap_kernel/inprocess/manager.py /^from traitlets import Instance, DottedObjectName, default$/;" kind:namespace line:6DottedObjectName196,24519default$79,12128 -DottedObjectName ../packages/python/yap_kernel/yap_kernel/inprocess/manager.py /^from traitlets import Instance, DottedObjectName, default$/;" kind:namespace line:6default$196,24519default$80,12320 -Artistic,0Artistic82,12506 -autoconf/configure,5873configure90,12618 -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :null19,528null91,12642 -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :null19,528null91,12642 - NULLCMD=:NULLCMD21,613NULLCMD92,12726 -as_nl='as_nl36,899as_nl93,12753 - as_echo='printf %s\n'as_echo50,1552as_echo95,12814 - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'as_echo_body54,1686as_echo_body96,12854 - PATH_SEPARATOR=:PATH_SEPARATOR76,2268PATH_SEPARATOR97,12927 -if test "x$as_myself" = x; thenest108,3185est98,12969 -if test "x$as_myself" = x; thenest108,3185est98,12969 - as_myself=$0as_myself109,3217as_myself99,13014 - _as_can_reexec=no; export _as_can_reexec;_as_can_reexec140,4127_as_can_reexec100,13048 - _as_can_reexec=no; export _as_can_reexec;_as_can_reexec140,4127_as_can_reexec100,13048 - _as_can_reexec=no; export _as_can_reexec;_as_can_reexec140,4127_as_can_reexec101,13118 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H11010,666182 -#define RCONFIG_HRCONFIG_H11013,666282 -#define HAVE_R_INTERFACE_H HAVE_R_INTERFACE_H11014,666316 -#define SWIGPYTHONSWIGPYTHON11217,679832 -#define SWIG_DIRECTORSSWIG_DIRECTORS11218,679869 -#define SWIG_PYTHON_NO_BUILD_NONESWIG_PYTHON_NO_BUILD_NONE11219,679914 -#define SWIG_PYTHON_DIRECTOR_NO_VTABLESWIG_PYTHON_DIRECTOR_NO_VTABLE11220,679981 -# define SWIGTEMPLATEDISAMBIGUATOR SWIGTEMPLATEDISAMBIGUATOR11243,681840 -# define SWIGTEMPLATEDISAMBIGUATOR SWIGTEMPLATEDISAMBIGUATOR11244,681911 -# define SWIGTEMPLATEDISAMBIGUATORSWIGTEMPLATEDISAMBIGUATOR11245,681982 -# define SWIGINLINE SWIGINLINE11246,682052 -# define SWIGINLINESWIGINLINE11247,682094 -# define SWIGUNUSED SWIGUNUSED11248,682135 -# define SWIGUNUSEDSWIGUNUSED11249,682179 -# define SWIGUNUSED SWIGUNUSED11250,682222 -# define SWIGUNUSEDSWIGUNUSED11251,682264 -# define SWIGUNUSEDPARM(SWIGUNUSEDPARM11252,682305 -# define SWIGUNUSEDPARM(SWIGUNUSEDPARM11253,682355 -# define SWIGINTERN SWIGINTERN11254,682405 -# define SWIGINTERNINLINE SWIGINTERNINLINE11255,682446 -# define GCC_HASCLASSVISIBILITYGCC_HASCLASSVISIBILITY11256,682499 -# define SWIGEXPORTSWIGEXPORT11257,682568 -# define SWIGEXPORT SWIGEXPORT11258,682612 -# define SWIGEXPORT SWIGEXPORT11259,682657 -# define SWIGEXPORTSWIGEXPORT11260,682702 -# define SWIGSTDCALL SWIGSTDCALL11261,682746 -# define SWIGSTDCALLSWIGSTDCALL11262,682791 -# define _CRT_SECURE_NO_DEPRECATE_CRT_SECURE_NO_DEPRECATE11263,682835 -# define _SCL_SECURE_NO_DEPRECATE_SCL_SECURE_NO_DEPRECATE11264,682903 -# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES11265,682971 -# undef _DEBUG_DEBUG11266,683094 -# define _DEBUG_DEBUG11267,683125 -#define SWIG_RUNTIME_VERSION SWIG_RUNTIME_VERSION11268,683157 -# define SWIG_QUOTE_STRING(SWIG_QUOTE_STRING11269,683217 -# define SWIG_EXPAND_AND_QUOTE_STRING(SWIG_EXPAND_AND_QUOTE_STRING11270,683272 -# define SWIG_TYPE_TABLE_NAME SWIG_TYPE_TABLE_NAME11271,683349 -# define SWIG_TYPE_TABLE_NAMESWIG_TYPE_TABLE_NAME11272,683410 -# define SWIGRUNTIME SWIGRUNTIME11273,683470 -# define SWIGRUNTIMEINLINE SWIGRUNTIMEINLINE11274,683513 -# define SWIG_BUFFER_SIZE SWIG_BUFFER_SIZE11275,683568 -#define SWIG_POINTER_DISOWN SWIG_POINTER_DISOWN11276,683621 -#define SWIG_CAST_NEW_MEMORY SWIG_CAST_NEW_MEMORY11277,683679 -#define SWIG_POINTER_OWN SWIG_POINTER_OWN11278,683739 -#define SWIG_OK SWIG_OK11279,683791 -#define SWIG_ERROR SWIG_ERROR11280,683825 -#define SWIG_IsOK(SWIG_IsOK11281,683865 -#define SWIG_ArgError(SWIG_ArgError11282,683903 -#define SWIG_CASTRANKLIMIT SWIG_CASTRANKLIMIT11283,683949 -#define SWIG_NEWOBJMASK SWIG_NEWOBJMASK11284,684005 -#define SWIG_TMPOBJMASK SWIG_TMPOBJMASK11285,684055 -#define SWIG_BADOBJ SWIG_BADOBJ11286,684105 -#define SWIG_OLDOBJ SWIG_OLDOBJ11287,684147 -#define SWIG_NEWOBJ SWIG_NEWOBJ11288,684189 -#define SWIG_TMPOBJ SWIG_TMPOBJ11289,684231 -#define SWIG_AddNewMask(SWIG_AddNewMask11290,684273 -#define SWIG_DelNewMask(SWIG_DelNewMask11291,684323 -#define SWIG_IsNewObj(SWIG_IsNewObj11292,684373 -#define SWIG_AddTmpMask(SWIG_AddTmpMask11293,684420 -#define SWIG_DelTmpMask(SWIG_DelTmpMask11294,684471 -#define SWIG_IsTmpObj(SWIG_IsTmpObj11295,684522 -# define SWIG_TypeRank SWIG_TypeRank11296,684569 -# define SWIG_MAXCASTRANK SWIG_MAXCASTRANK11297,684620 -# define SWIG_CASTRANKMASK SWIG_CASTRANKMASK11298,684677 -# define SWIG_CastRank(SWIG_CastRank11299,684734 -# define SWIG_AddCast(SWIG_AddCast11302,684921 -# define SWIG_CheckState(SWIG_CheckState11303,684968 -#define SWIG_UnknownError SWIG_UnknownError11363,690589 -#define SWIG_IOError SWIG_IOError11364,690645 -#define SWIG_RuntimeError SWIG_RuntimeError11365,690691 -#define SWIG_IndexError SWIG_IndexError11366,690747 -#define SWIG_TypeError SWIG_TypeError11367,690799 -#define SWIG_DivisionByZero SWIG_DivisionByZero11368,690849 -#define SWIG_OverflowError SWIG_OverflowError11369,690909 -#define SWIG_SyntaxError SWIG_SyntaxError11370,690967 -#define SWIG_ValueError SWIG_ValueError11371,691021 -#define SWIG_SystemError SWIG_SystemError11372,691073 -#define SWIG_AttributeError SWIG_AttributeError11373,691127 -#define SWIG_MemoryError SWIG_MemoryError11374,691187 -#define SWIG_NullReferenceError SWIG_NullReferenceError11375,691241 -#define PyClass_Check(PyClass_Check11376,691309 -#define PyInt_Check(PyInt_Check11377,691356 -#define PyInt_AsLong(PyInt_AsLong11378,691399 -#define PyInt_FromLong(PyInt_FromLong11379,691444 -#define PyInt_FromSize_t(PyInt_FromSize_t11380,691493 -#define PyString_Check(PyString_Check11381,691546 -#define PyString_FromString(PyString_FromString11382,691595 -#define PyString_Format(PyString_Format11383,691654 -#define PyString_AsString(PyString_AsString11384,691705 -#define PyString_Size(PyString_Size11385,691760 -#define PyString_InternFromString(PyString_InternFromString11386,691807 -#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_HAVE_CLASS11387,691878 -#define PyString_AS_STRING(PyString_AS_STRING11388,691941 -#define _PyLong_FromSsize_t(_PyLong_FromSsize_t11389,691998 -# define Py_TYPE(Py_TYPE11390,692057 -# define SWIG_Python_str_FromFormat SWIG_Python_str_FromFormat11391,692094 -# define SWIG_Python_str_FromFormat SWIG_Python_str_FromFormat11392,692169 -# define SWIG_Python_str_DelForPy3(SWIG_Python_str_DelForPy311394,692315 -# define SWIG_Python_str_DelForPy3(SWIG_Python_str_DelForPy311395,692388 -# define PyOS_snprintf PyOS_snprintf11397,692536 -# define PyOS_snprintf PyOS_snprintf11398,692585 -# define SWIG_PYBUFFER_SIZE SWIG_PYBUFFER_SIZE11399,692634 -# define PyObject_DEL PyObject_DEL11401,692766 -# define PyExc_StopIteration PyExc_StopIteration11402,692812 -# define PyObject_GenericGetAttr PyObject_GenericGetAttr11403,692873 -# define Py_NotImplemented Py_NotImplemented11404,692942 -# define PyString_AsStringAndSize(PyString_AsStringAndSize11405,692999 -# define PySequence_Size PySequence_Size11406,693070 -# define PY_SSIZE_T_MAX PY_SSIZE_T_MAX11409,693229 -# define PY_SSIZE_T_MIN PY_SSIZE_T_MIN11410,693279 -#define PyInt_FromSize_t(PyInt_FromSize_t11421,694006 -#define Py_VISIT(Py_VISIT11422,694059 -# define SWIGPY_USE_CAPSULESWIGPY_USE_CAPSULE11439,694905 -# define SWIGPY_CAPSULE_NAME SWIGPY_CAPSULE_NAME11440,694962 -#define PyDescr_TYPE(PyDescr_TYPE11441,695022 -#define PyDescr_NAME(PyDescr_NAME11442,695067 -#define Py_hash_t Py_hash_t11443,695112 -# undef SWIG_PYTHON_THREADSSWIG_PYTHON_THREADS11446,695294 -# define SWIG_PYTHON_USE_GILSWIG_PYTHON_USE_GIL11447,695356 -# define SWIG_PYTHON_INITIALIZE_THREADS SWIG_PYTHON_INITIALIZE_THREADS11448,695421 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_PYTHON_THREAD_BEGIN_BLOCK11471,697472 -# define SWIG_PYTHON_THREAD_END_BLOCK SWIG_PYTHON_THREAD_END_BLOCK11472,697560 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_PYTHON_THREAD_BEGIN_ALLOW11473,697644 -# define SWIG_PYTHON_THREAD_END_ALLOW SWIG_PYTHON_THREAD_END_ALLOW11474,697732 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_PYTHON_THREAD_BEGIN_BLOCK11475,697816 -# define SWIG_PYTHON_THREAD_END_BLOCK SWIG_PYTHON_THREAD_END_BLOCK11476,697904 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_PYTHON_THREAD_BEGIN_ALLOW11477,697988 -# define SWIG_PYTHON_THREAD_END_ALLOW SWIG_PYTHON_THREAD_END_ALLOW11478,698076 -# define SWIG_PYTHON_INITIALIZE_THREADSSWIG_PYTHON_INITIALIZE_THREADS11479,698160 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCKSWIG_PYTHON_THREAD_BEGIN_BLOCK11480,698247 -# define SWIG_PYTHON_THREAD_END_BLOCKSWIG_PYTHON_THREAD_END_BLOCK11481,698334 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOWSWIG_PYTHON_THREAD_BEGIN_ALLOW11482,698417 -# define SWIG_PYTHON_THREAD_END_ALLOWSWIG_PYTHON_THREAD_END_ALLOW11483,698504 -# define SWIG_PYTHON_INITIALIZE_THREADSSWIG_PYTHON_INITIALIZE_THREADS11484,698587 -# define SWIG_PYTHON_THREAD_BEGIN_BLOCKSWIG_PYTHON_THREAD_BEGIN_BLOCK11485,698670 -# define SWIG_PYTHON_THREAD_END_BLOCKSWIG_PYTHON_THREAD_END_BLOCK11486,698753 -# define SWIG_PYTHON_THREAD_BEGIN_ALLOWSWIG_PYTHON_THREAD_BEGIN_ALLOW11487,698832 -# define SWIG_PYTHON_THREAD_END_ALLOWSWIG_PYTHON_THREAD_END_ALLOW11488,698915 -#define SWIG_PY_POINTER SWIG_PY_POINTER11489,698994 -#define SWIG_PY_BINARY SWIG_PY_BINARY11490,699046 -#define SWIG_Python_ConvertPtr(SWIG_Python_ConvertPtr11506,699852 -#define SWIG_ConvertPtr(SWIG_ConvertPtr11507,699918 -#define SWIG_ConvertPtrAndOwn(SWIG_ConvertPtrAndOwn11508,699970 -#define SWIG_NewPointerObj(SWIG_NewPointerObj11509,700034 -#define SWIG_NewPointerObj(SWIG_NewPointerObj11510,700092 -#define SWIG_InternalNewPointerObj(SWIG_InternalNewPointerObj11511,700150 -#define SWIG_CheckImplicit(SWIG_CheckImplicit11512,700224 -#define SWIG_AcquirePtr(SWIG_AcquirePtr11513,700282 -#define swig_owntype swig_owntype11514,700334 -#define SWIG_ConvertPacked(SWIG_ConvertPacked11515,700380 -#define SWIG_NewPackedObj(SWIG_NewPackedObj11516,700438 -#define SWIG_ConvertInstance(SWIG_ConvertInstance11517,700494 -#define SWIG_NewInstanceObj(SWIG_NewInstanceObj11518,700556 -#define SWIG_ConvertFunctionPtr(SWIG_ConvertFunctionPtr11519,700616 -#define SWIG_NewFunctionPtrObj(SWIG_NewFunctionPtrObj11520,700684 -#define SWIG_ConvertMember(SWIG_ConvertMember11521,700750 -#define SWIG_NewMemberObj(SWIG_NewMemberObj11522,700808 -#define SWIG_GetModule(SWIG_GetModule11523,700864 -#define SWIG_SetModule(SWIG_SetModule11524,700914 -#define SWIG_NewClientData(SWIG_NewClientData11525,700964 -#define SWIG_SetErrorObj SWIG_SetErrorObj11526,701022 -#define SWIG_SetErrorMsg SWIG_SetErrorMsg11527,701076 -#define SWIG_ErrorType(SWIG_ErrorType11528,701130 -#define SWIG_Error(SWIG_Error11529,701180 -#define SWIG_fail SWIG_fail11530,701222 -#define SWIG_Python_Raise(SWIG_Python_Raise11533,701454 -#define SWIG_Python_CallFunctor(SWIG_Python_CallFunctor11539,702101 -#define SWIG_Python_CallFunctor(SWIG_Python_CallFunctor11540,702169 -#define SWIG_STATIC_POINTER(SWIG_STATIC_POINTER11541,702237 -#define SWIG_STATIC_POINTER(SWIG_STATIC_POINTER11542,702297 -#define SWIG_POINTER_NOSHADOW SWIG_POINTER_NOSHADOW11543,702357 -#define SWIG_POINTER_NEW SWIG_POINTER_NEW11544,702421 -#define SWIG_POINTER_IMPLICIT_CONV SWIG_POINTER_IMPLICIT_CONV11545,702475 -#define SWIG_BUILTIN_TP_INIT SWIG_BUILTIN_TP_INIT11546,702549 -#define SWIG_BUILTIN_INIT SWIG_BUILTIN_INIT11547,702611 -# define SWIG_PYTHON_BUILD_NONESWIG_PYTHON_BUILD_NONE11548,702667 -# undef Py_NonePy_None11549,702738 -# define Py_None Py_None11550,702775 -#define SWIG_PYTHON_SLOW_GETSET_THIS SWIG_PYTHON_SLOW_GETSET_THIS11627,707121 -#define SWIG_POINTER_EXCEPTION SWIG_POINTER_EXCEPTION11644,708757 -#define SWIG_arg_fail(SWIG_arg_fail11645,708823 -#define SWIG_MustGetPtr(SWIG_MustGetPtr11646,708871 -#define SWIG_exception_fail(SWIG_exception_fail11653,709485 -#define SWIG_contract_assert(SWIG_contract_assert11654,709545 - #define SWIG_exception(SWIG_exception11655,709607 -#define SwigSwig11656,709659 -#define SWIG_DIRECTOR_PYTHON_HEADER_SWIG_DIRECTOR_PYTHON_HEADER_11657,709688 -#define SWIG_PYTHON_DIRECTOR_VTABLESWIG_PYTHON_DIRECTOR_VTABLE11658,709765 -#define SWIG_DIRECTOR_UEHSWIG_DIRECTOR_UEH11659,709840 -# define SWIG_DIRECTOR_RTDIRSWIG_DIRECTOR_RTDIR11660,709895 -# define SWIG_DIRECTOR_CAST(SWIG_DIRECTOR_CAST11668,710498 -# define SWIG_DIRECTOR_RGTR(SWIG_DIRECTOR_RGTR11669,710557 -# define __THREAD__ __THREAD__11763,717471 -# define SWIG_GUARD(SWIG_GUARD11772,717939 -# define SWIG_GUARD(SWIG_GUARD11773,717982 -#define SWIGTYPE_p_CELL SWIGTYPE_p_CELL11814,721495 -#define SWIGTYPE_p_CPredicate SWIGTYPE_p_CPredicate11815,721547 -#define SWIGTYPE_p_Int SWIGTYPE_p_Int11816,721611 -#define SWIGTYPE_p_Prop SWIGTYPE_p_Prop11817,721661 -#define SWIGTYPE_p_Term SWIGTYPE_p_Term11818,721713 -#define SWIGTYPE_p_YAPApplTerm SWIGTYPE_p_YAPApplTerm11819,721765 -#define SWIGTYPE_p_YAPAtom SWIGTYPE_p_YAPAtom11820,721831 -#define SWIGTYPE_p_YAPAtomTerm SWIGTYPE_p_YAPAtomTerm11821,721889 -#define SWIGTYPE_p_YAPCallback SWIGTYPE_p_YAPCallback11822,721955 -#define SWIGTYPE_p_YAPEngine SWIGTYPE_p_YAPEngine11823,722021 -#define SWIGTYPE_p_YAPError SWIGTYPE_p_YAPError11824,722083 -#define SWIGTYPE_p_YAPFLIP SWIGTYPE_p_YAPFLIP11825,722143 -#define SWIGTYPE_p_YAPFloatTerm SWIGTYPE_p_YAPFloatTerm11826,722201 -#define SWIGTYPE_p_YAPFunctor SWIGTYPE_p_YAPFunctor11827,722269 -#define SWIGTYPE_p_YAPIntegerTerm SWIGTYPE_p_YAPIntegerTerm11828,722333 -#define SWIGTYPE_p_YAPListTerm SWIGTYPE_p_YAPListTerm11829,722405 -#define SWIGTYPE_p_YAPModule SWIGTYPE_p_YAPModule11830,722471 -#define SWIGTYPE_p_YAPModuleProp SWIGTYPE_p_YAPModuleProp11831,722533 -#define SWIGTYPE_p_YAPNumberTerm SWIGTYPE_p_YAPNumberTerm11832,722603 -#define SWIGTYPE_p_YAPPairTerm SWIGTYPE_p_YAPPairTerm11833,722673 -#define SWIGTYPE_p_YAPPredicate SWIGTYPE_p_YAPPredicate11834,722739 -#define SWIGTYPE_p_YAPPrologPredicate SWIGTYPE_p_YAPPrologPredicate11835,722807 -#define SWIGTYPE_p_YAPProp SWIGTYPE_p_YAPProp11836,722887 -#define SWIGTYPE_p_YAPQuery SWIGTYPE_p_YAPQuery11837,722945 -#define SWIGTYPE_p_YAPStringTerm SWIGTYPE_p_YAPStringTerm11838,723005 -#define SWIGTYPE_p_YAPTerm SWIGTYPE_p_YAPTerm11839,723075 -#define SWIGTYPE_p_YAPVarTerm SWIGTYPE_p_YAPVarTerm11840,723133 -#define SWIGTYPE_p_YAP_Term SWIGTYPE_p_YAP_Term11841,723197 -#define SWIGTYPE_p_YAP_tag_t SWIGTYPE_p_YAP_tag_t11842,723257 -#define SWIGTYPE_p_char SWIGTYPE_p_char11843,723320 -#define SWIGTYPE_p_int SWIGTYPE_p_int11844,723373 -#define SWIGTYPE_p_long_long SWIGTYPE_p_long_long11845,723424 -#define SWIGTYPE_p_p_char SWIGTYPE_p_p_char11846,723487 -#define SWIGTYPE_p_short SWIGTYPE_p_short11847,723544 -#define SWIGTYPE_p_signed_char SWIGTYPE_p_signed_char11848,723599 -#define SWIGTYPE_p_unsigned_char SWIGTYPE_p_unsigned_char11849,723666 -#define SWIGTYPE_p_unsigned_int SWIGTYPE_p_unsigned_int11850,723737 -#define SWIGTYPE_p_unsigned_long_long SWIGTYPE_p_unsigned_long_long11851,723806 -#define SWIGTYPE_p_unsigned_short SWIGTYPE_p_unsigned_short11852,723887 -#define SWIGTYPE_p_void SWIGTYPE_p_void11853,723960 -#define SWIGTYPE_p_wchar_t SWIGTYPE_p_wchar_t11854,724013 -#define SWIGTYPE_p_yap_error_class_number SWIGTYPE_p_yap_error_class_number11855,724072 -#define SWIGTYPE_p_yap_error_number SWIGTYPE_p_yap_error_number11856,724161 -#define SWIGTYPE_p_yhandle_t SWIGTYPE_p_yhandle_t11857,724238 -#define SWIG_TypeQuery(SWIG_TypeQuery11860,724455 -#define SWIG_MangledTypeQuery(SWIG_MangledTypeQuery11861,724506 -# undef SWIG_TypeQuerySWIG_TypeQuery11862,724571 -#define SWIG_TypeQuery SWIG_TypeQuery11863,724621 -# define SWIG_init SWIG_init11864,724672 -# define SWIG_init SWIG_init11865,724715 -#define SWIG_name SWIG_name11866,724758 -#define SWIGVERSION SWIGVERSION11867,724799 -#define SWIG_VERSION SWIG_VERSION11868,724844 -#define SWIG_as_voidptr(SWIG_as_voidptr11869,724891 -#define SWIG_as_voidptrptr(SWIG_as_voidptrptr11870,724944 -#define Yap_regp Yap_regp11898,727136 -# define LLONG_MAX LLONG_MAX11905,727678 -# define LLONG_MIN LLONG_MIN11906,727722 -# define ULLONG_MAX ULLONG_MAX11907,727766 -# define SWIG_LONG_LONG_AVAILABLESWIG_LONG_LONG_AVAILABLE11908,727812 - #define SWIG_From_double SWIG_From_double11919,728703 - #define SWIG_From_long SWIG_From_long11920,728760 -#define SWIG_newvarlink(SWIG_newvarlink12159,761601 -#define SWIG_addvarlink(SWIG_addvarlink12160,761655 -#define SWIG_InstallConstants(SWIG_InstallConstants12161,761709 -#define SWIG_yap_WRAP_H_SWIG_yap_WRAP_H_12191,763981 - #define CONFIG_HCONFIG_H12207,765207 - #define SYSTEM_OPTIONS SYSTEM_OPTIONS12208,765240 -#define DEPTH_LIMIT DEPTH_LIMIT12209,765287 -#define USE_THREADED_CODE USE_THREADED_CODE12210,765327 -#define TABLING TABLING12211,765379 -#define LOW_LEVEL_TRACER LOW_LEVEL_TRACER12212,765411 -#define ALIGN_LONGS ALIGN_LONGS12213,765462 -#define BITNESS BITNESS12214,765503 -#define CELLSIZE CELLSIZE12215,765536 -#define C_CC C_CC12216,765571 -#define C_CFLAGS C_CFLAGS12217,765598 -#define C_LDFLAGS C_LDFLAGS12218,765633 -#define C_LIBPLSO C_LIBPLSO12219,765670 -#define C_LIBS C_LIBS12220,765707 -#define FFIEEE FFIEEE12221,765738 -#define GC_NO_TAGS GC_NO_TAGS12222,765769 -#define HAVE_ACCESS HAVE_ACCESS12223,765809 -#define HAVE_ADD_HISTORY HAVE_ADD_HISTORY12224,765851 -#define HAVE_ALLOCA_H HAVE_ALLOCA_H12225,765903 -#define HAVE_ARPA_INET_H HAVE_ARPA_INET_H12226,765949 -#define HAVE_BASENAME HAVE_BASENAME12227,766001 -#define HAVE_BACKTRACE HAVE_BACKTRACE12228,766047 -#define HAVE_CHDIR HAVE_CHDIR12229,766095 -#define HAVE_CLOCK HAVE_CLOCK12230,766135 -#define HAVE_CLOCK_GETTIME HAVE_CLOCK_GETTIME12231,766175 -#define HAVE_CTIME HAVE_CTIME12232,766231 -#define HAVE_CTYPE_H HAVE_CTYPE_H12233,766271 -#define HAVE_DIRENT_H HAVE_DIRENT_H12234,766315 -#define HAVE_DLFCN_H HAVE_DLFCN_H12235,766361 -#define HAVE_DLOPEN HAVE_DLOPEN12236,766405 -#define HAVE_DUP2 HAVE_DUP212237,766447 -#define HAVE_ENVIRON HAVE_ENVIRON12238,766485 -#define HAVE_ERRNO_H HAVE_ERRNO_H12239,766529 -#define HAVE_EXECINFO_H HAVE_EXECINFO_H12240,766573 -#define HAVE_FCNTL_H HAVE_FCNTL_H12241,766623 -#define HAVE_FENV_H HAVE_FENV_H12242,766667 -#define HAVE_FGETPOS HAVE_FGETPOS12243,766709 -#define HAVE_FINITE HAVE_FINITE12244,766753 -#define HAVE_FMEMOPEN HAVE_FMEMOPEN12245,766795 -#define HAVE_FPU_CONTROL_H HAVE_FPU_CONTROL_H12246,766842 -#define HAVE_FTIME HAVE_FTIME12247,766899 -#define HAVE_FTRUNCATE HAVE_FTRUNCATE12248,766940 -#define HAVE_GCC HAVE_GCC12249,766989 -#define HAVE_GETCWD HAVE_GETCWD12250,767026 -#define HAVE_GETENV HAVE_GETENV12251,767069 -#define HAVE_GETHOSTBYNAME HAVE_GETHOSTBYNAME12252,767112 -#define HAVE_GETHOSTENT HAVE_GETHOSTENT12253,767169 -#define HAVE_GETHOSTID HAVE_GETHOSTID12254,767220 -#define HAVE_GETHOSTNAME HAVE_GETHOSTNAME12255,767269 -#define HAVE_GETPAGESIZE HAVE_GETPAGESIZE12256,767322 -#define HAVE_GETPID HAVE_GETPID12257,767375 -#define HAVE_GETPWNAM HAVE_GETPWNAM12258,767418 -#define HAVE_GETRLIMIT HAVE_GETRLIMIT12259,767465 -#define HAVE_GETRUSAGE HAVE_GETRUSAGE12260,767514 -#define HAVE_GETTIMEOFDAY HAVE_GETTIMEOFDAY12261,767563 -#define HAVE_GETWD HAVE_GETWD12262,767618 -#define HAVE_GLOB_H HAVE_GLOB_H12263,767659 -#define HAVE_GLOB HAVE_GLOB12264,767702 -#define HAVE_GMTIME HAVE_GMTIME12265,767741 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H12266,767784 -#define HAVE_ISATTY HAVE_ISATTY12267,767835 -#define HAVE_ISINF HAVE_ISINF12268,767878 -#define HAVE_ISNAN HAVE_ISNAN12269,767919 -#define HAVE_ISWBLANK HAVE_ISWBLANK12270,767960 -#define HAVE_ISWSPACE HAVE_ISWSPACE12271,768007 -#define HAVE_KILL HAVE_KILL12272,768054 -#define HAVE_LABS HAVE_LABS12273,768093 -#define HAVE_LIBANDROID HAVE_LIBANDROID12274,768132 -#define HAVE_LIBCOMDLG32 HAVE_LIBCOMDLG3212275,768183 -#define HAVE_LIBCRYPT HAVE_LIBCRYPT12276,768236 -#define HAVE_LIBGEN_H HAVE_LIBGEN_H12277,768283 -#define HAVE_LIBGMP HAVE_LIBGMP12278,768330 -#define HAVE_LIBJUDY HAVE_LIBJUDY12279,768373 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H12280,768418 -#define HAVE_LIBLOG HAVE_LIBLOG12281,768477 -#define HAVE_LIBM HAVE_LIBM12282,768520 -#define HAVE_LIBMPE HAVE_LIBMPE12283,768559 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT12284,768602 -#define HAVE_LIBNSL HAVE_LIBNSL12285,768649 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS12286,768692 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES12287,768743 -#define HAVE_LIBPSAPI HAVE_LIBPSAPI12288,768798 -#define HAVE_LIBGMP HAVE_LIBGMP12289,768845 -#define HAVE_LIBJUDY HAVE_LIBJUDY12290,768888 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H12291,768933 -#define HAVE_LIBLOG HAVE_LIBLOG12292,768992 -#define HAVE_LIBM HAVE_LIBM12293,769035 -#define HAVE_LIBMPE HAVE_LIBMPE12294,769074 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT12295,769117 -#define HAVE_LIBNSL HAVE_LIBNSL12296,769164 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS12297,769207 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES12298,769258 -#define HAVE_LIBSHLWAPI HAVE_LIBSHLWAPI12299,769313 -#define HAVE_LIBPTHREAD HAVE_LIBPTHREAD12300,769364 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR12301,769415 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR212302,769464 -#define HAVE_LIBRESOLV HAVE_LIBRESOLV12303,769515 -#define HAVE_LIBSHELL32 HAVE_LIBSHELL3212304,769564 -#define HAVE_LIBSOCKET HAVE_LIBSOCKET12305,769615 -#define HAVE_LIBSTDC__ HAVE_LIBSTDC__12306,769664 -#define HAVE_LIBUNICODE HAVE_LIBUNICODE12307,769713 -#define HAVE_LIBWS2_32 HAVE_LIBWS2_3212308,769764 -#define HAVE_LIBWSOCK32 HAVE_LIBWSOCK3212309,769813 -#define HAVE_LIBXNET HAVE_LIBXNET12310,769864 -#define HAVE_LIMITS_H HAVE_LIMITS_H12311,769909 -#define HAVE_LINK HAVE_LINK12312,769956 -#define HAVE_LOCALE_H HAVE_LOCALE_H12313,769995 -#define HAVE_LOCALTIME HAVE_LOCALTIME12314,770042 -#define HAVE_LSTAT HAVE_LSTAT12315,770091 -#define HAVE_MALLOC_H HAVE_MALLOC_H12316,770132 -#define HAVE_MATH_H HAVE_MATH_H12317,770179 -#define HAVE_MBSNRTOWCS HAVE_MBSNRTOWCS12318,770222 -#define HAVE_MEMCPY HAVE_MEMCPY12319,770273 -#define HAVE_MEMMOVE HAVE_MEMMOVE12320,770316 -#define HAVE_MEMORY_H HAVE_MEMORY_H12321,770361 -#define HAVE_MKSTEMP HAVE_MKSTEMP12322,770408 -#define HAVE_MKTEMP HAVE_MKTEMP12323,770453 -#define HAVE_MKTIME HAVE_MKTIME12324,770496 -#define HAVE_MYSQL_MYSQL_H HAVE_MYSQL_MYSQL_H12325,770539 -#define HAVE_NANOSLEEP HAVE_NANOSLEEP12326,770596 -#define HAVE_NETDB_H HAVE_NETDB_H12327,770645 -#define HAVE_NETINET_IN_H HAVE_NETINET_IN_H12328,770690 -#define HAVE_NETINET_TCP_H HAVE_NETINET_TCP_H12329,770745 -#define HAVE_OPEN_MEMSTREAM HAVE_OPEN_MEMSTREAM12330,770802 -#define HAVE_OPENDIR HAVE_OPENDIR12331,770861 -#define HAVE_PTHREAD_H HAVE_PTHREAD_H12332,770906 -#define HAVE_PUTENV HAVE_PUTENV12333,770955 -#define HAVE_PWD_H HAVE_PWD_H12334,770999 -#define HAVE_PYTHON_H HAVE_PYTHON_H12335,771041 -#define HAVE_RAND HAVE_RAND12336,771089 -#define HAVE_RANDOM HAVE_RANDOM12337,771129 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H12338,771173 -#define HAVE_READLINK HAVE_READLINK12339,771239 -#define HAVE_REALPATH HAVE_REALPATH12340,771287 -#define HAVE_REGEXEC HAVE_REGEXEC12341,771335 -#define HAVE_REGEX_H HAVE_REGEX_H12342,771381 -#define HAVE_RENAME HAVE_RENAME12343,771427 -#define HAVE_SBRK HAVE_SBRK12344,771471 -#define HAVE_SELECT HAVE_SELECT12345,771511 -#define HAVE_SETBUF HAVE_SETBUF12346,771555 -#define HAVE_SETITIMER HAVE_SETITIMER12347,771599 -#define HAVE_SETLINEBUF HAVE_SETLINEBUF12348,771649 -#define HAVE_SETLOCALE HAVE_SETLOCALE12349,771701 -#define HAVE_SETSID HAVE_SETSID12350,771751 -#define HAVE_SHMAT HAVE_SHMAT12351,771795 -#define HAVE_SIGACTION HAVE_SIGACTION12352,771837 -#define HAVE_SIGFPE HAVE_SIGFPE12353,771887 -#define HAVE_SIGGETMASK HAVE_SIGGETMASK12354,771931 -#define HAVE_SIGINTERRUPT HAVE_SIGINTERRUPT12355,771983 -#define HAVE_SIGNAL HAVE_SIGNAL12356,772039 -#define HAVE_SIGNAL_H HAVE_SIGNAL_H12357,772083 -#define HAVE_SIGPROCMASK HAVE_SIGPROCMASK12358,772131 -#define HAVE_SIGPROF HAVE_SIGPROF12359,772185 -#define HAVE_SIGSEGV HAVE_SIGSEGV12360,772231 -#define HAVE_SIGSETJMP HAVE_SIGSETJMP12361,772277 -#define HAVE_SLEEP HAVE_SLEEP12362,772327 -#define HAVE_SNPRINTF HAVE_SNPRINTF12363,772369 -#define HAVE_SOCKET HAVE_SOCKET12364,772417 -#define HAVE_SQLITE3_H HAVE_SQLITE3_H12365,772461 -#define HAVE_SRAND HAVE_SRAND12366,772511 -#define HAVE_SRANDOM HAVE_SRANDOM12367,772553 -#define HAVE_STAT HAVE_STAT12368,772599 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H12369,772639 -#define STDC_HEADERS STDC_HEADERS12370,772689 -#define HAVE_FLOAT_H HAVE_FLOAT_H12371,772735 -#define HAVE_STRING_H HAVE_STRING_H12372,772781 -#define HAVE_STDARG_H HAVE_STDARG_H12373,772829 -#define HAVE_STDLIB_H HAVE_STDLIB_H12374,772877 -#define HAVE_STDINT_H HAVE_STDINT_H12375,772925 -#define HAVE_STRCASECMP HAVE_STRCASECMP12376,772973 -#define HAVE_STRCASESTR HAVE_STRCASESTR12377,773025 -#define HAVE_STRCHR HAVE_STRCHR12378,773077 -#define HAVE_STRERROR HAVE_STRERROR12379,773121 -#define HAVE_STRINGS_H HAVE_STRINGS_H12380,773169 -#define HAVE_STRNCASECMP HAVE_STRNCASECMP12381,773219 -#define HAVE_STRNCAT HAVE_STRNCAT12382,773273 -#define HAVE_STRNCPY HAVE_STRNCPY12383,773319 -#define HAVE_STRNLEN HAVE_STRNLEN12384,773365 -#define HAVE_STRTOD HAVE_STRTOD12385,773411 -#define HAVE_SYSLOG_H HAVE_SYSLOG_H12386,773455 -#define HAVE_SYSTEM HAVE_SYSTEM12387,773503 -#define HAVE_SYS_DIR_H HAVE_SYS_DIR_H12388,773547 -#define HAVE_SYS_FILE_H HAVE_SYS_FILE_H12389,773597 -#define HAVE_SYS_MMAN_H HAVE_SYS_MMAN_H12390,773649 -#define HAVE_SYS_PARAM_H HAVE_SYS_PARAM_H12391,773701 -#define HAVE_SYS_RESOURCE_H HAVE_SYS_RESOURCE_H12392,773755 -#define HAVE_SYS_SELECT_H HAVE_SYS_SELECT_H12393,773815 -#define HAVE_SYS_SHM_H HAVE_SYS_SHM_H12394,773871 -#define HAVE_SYS_SOCKET_H HAVE_SYS_SOCKET_H12395,773921 -#define HAVE_SYS_STAT_H HAVE_SYS_STAT_H12396,773977 -#define HAVE_SYS_SYSCALL_H HAVE_SYS_SYSCALL_H12397,774029 -#define HAVE_SYS_TIMES_H HAVE_SYS_TIMES_H12398,774087 -#define HAVE_SYS_TIME_H HAVE_SYS_TIME_H12399,774141 -#define HAVE_SYS_TYPES_H HAVE_SYS_TYPES_H12400,774193 -#define HAVE_SYS_UCONTEXT_H HAVE_SYS_UCONTEXT_H12401,774247 -#define HAVE_SYS_UN_H HAVE_SYS_UN_H12402,774307 -#define HAVE_SYS_WAIT_H HAVE_SYS_WAIT_H12403,774355 -#define HAVE_TIME HAVE_TIME12404,774407 -#define HAVE_TIMEGM HAVE_TIMEGM12405,774447 -#define HAVE_TIMES HAVE_TIMES12406,774491 -#define HAVE_TIME_H HAVE_TIME_H12407,774533 -#define TIME_WITH_SYS_TIME_H TIME_WITH_SYS_TIME_H12408,774577 -#define HAVE_TMPNAM HAVE_TMPNAM12409,774639 -#define HAVE_TTYNAME HAVE_TTYNAME12410,774683 -#define HAVE_UCONTEXT_H HAVE_UCONTEXT_H12411,774729 -#define HAVE_UNISTD_H HAVE_UNISTD_H12412,774781 -#define HAVE_USLEEP HAVE_USLEEP12413,774829 -#define HAVE_UTIME HAVE_UTIME12414,774873 -#define HAVE_UTIME_H HAVE_UTIME_H12415,774915 -#define HAVE_VAR_TIMEZONE HAVE_VAR_TIMEZONE12416,774961 -#define HAVE_VFORK HAVE_VFORK12417,775017 -#define HAVE_VSNPRINTF HAVE_VSNPRINTF12418,775059 -#define HAVE_WAITPID HAVE_WAITPID12419,775109 -#define HAVE_WCHAR_H HAVE_WCHAR_H12420,775155 -#define HAVE_WCSDUP HAVE_WCSDUP12421,775201 -#define HAVE_WCSNLEN HAVE_WCSNLEN12422,775245 -#define HAVE_WCTYPE_H HAVE_WCTYPE_H12423,775291 -#define HAVE_WORDEXP HAVE_WORDEXP12424,775339 -#define HAVE_WORDEXP_H HAVE_WORDEXP_H12425,775385 -#define HOST_ALIAS HOST_ALIAS12426,775435 -#define MALLOC_T MALLOC_T12427,775477 -#define MAX_THREADS MAX_THREADS12428,775515 -#define MAX_WORKERS MAX_WORKERS12429,775559 -#define MSHIFTOFFS MSHIFTOFFS12430,775603 -#define MYDDAS_VERSION MYDDAS_VERSION12431,775645 -#define MinHeapSpace MinHeapSpace12432,775695 -#define MinStackSpace MinStackSpace12433,775741 -#define MinTrailSpace MinTrailSpace12434,775789 -#define DefHeapSpace DefHeapSpace12435,775837 -#define DefStackSpace DefStackSpace12436,775883 -#define DefTrailSpace DefTrailSpace12437,775931 -#define YAP_FULL_VERSION YAP_FULL_VERSION12438,775979 -#define YAP_GIT_HEAD YAP_GIT_HEAD12439,776033 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION12440,776079 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE12441,776139 -#define SIZEOF_FLOAT SIZEOF_FLOAT12442,776187 -#define SIZEOF_INT SIZEOF_INT12443,776233 -#define SIZEOF_INT_P SIZEOF_INT_P12444,776275 -#define SIZEOF_LONG SIZEOF_LONG12445,776321 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT12446,776365 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG12447,776417 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT12448,776471 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT12449,776533 -#define SIZEOF_SQLWCHAR SIZEOF_SQLWCHAR12450,776587 -#define SIZEOF_VOIDP SIZEOF_VOIDP12451,776639 -#define SIZEOF_VOID_P SIZEOF_VOID_P12452,776685 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T12453,776733 -#define SO_EXT SO_EXT12454,776783 -#define SO_PATH SO_PATH12455,776817 -#define SO_PATH SO_PATH12456,776853 -#define SO_PATH SO_PATH12457,776889 -#define SO_PATH SO_PATH12458,776925 -#define USE_GMP USE_GMP12459,776961 -#define USE_JUDY USE_JUDY12460,776997 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN12461,777035 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN12462,777089 -#define YAP_ARCH YAP_ARCH12463,777142 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR12464,777180 -#define YAP_SHAREDIR YAP_SHAREDIR12465,777228 -#define YAP_STARTUP YAP_STARTUP12466,777274 -#define YAP_TIMESTAMP YAP_TIMESTAMP12467,777318 -#define YAP_TVERSION YAP_TVERSION12468,777366 -#define YAP_VAR_TIMEZONE YAP_VAR_TIMEZONE12469,777412 -#define YAP_COMPILED_AT YAP_COMPILED_AT12470,777466 -#define YAP_YAPLIB YAP_YAPLIB12471,777518 -#define YAP_BINDIR YAP_BINDIR12472,777560 -#define YAP_ROOTDIR YAP_ROOTDIR12473,777602 -#define YAP_LIBDIR YAP_LIBDIR12474,777646 -#define YAP_YAPJITLIB YAP_YAPJITLIB12475,777688 -#define MAXPATHLEN MAXPATHLEN12476,777736 -#define MAXPATHLEN MAXPATHLEN12477,777778 -#define USE_DL_MALLOC USE_DL_MALLOC12478,777820 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC12479,777868 -#define strlcpy(strlcpy12480,777924 -#define malloc(malloc12481,777960 -#define realloc(realloc12482,777994 -#define free(free12483,778030 -#define __WINDOWS__ __WINDOWS__12484,778060 -#define X_API X_API12485,778104 -#define X_APIX_API12486,778136 -#define O_APIO_API12487,778167 -#define YAP_TERM_CONFIG YAP_TERM_CONFIG12490,778231 -#define SIZEOF_INT_P SIZEOF_INT_P12491,778277 -#define SIZEOF_INT SIZEOF_INT12492,778318 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT12493,778356 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT12494,778406 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG12495,778454 -#define SIZEOF_FLOAT SIZEOF_FLOAT12496,778504 -#define SIZEOF_FLOAT SIZEOF_FLOAT12497,778546 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H12498,778588 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H12499,778636 -#define HAVE_STDINT_H HAVE_STDINT_H12500,778682 -#define O_CTRLC O_CTRLC12513,779125 -#define O_ANSI_COLORS O_ANSI_COLORS12514,779158 -#define _UNICODE _UNICODE12520,779401 -#define UNICODE UNICODE12521,779436 -#define WINDOWS_LEAN_AND_MEAN WINDOWS_LEAN_AND_MEAN12522,779469 -#define ANSI_MAGIC ANSI_MAGIC12523,779530 -#define ANSI_BUFFER_SIZE ANSI_BUFFER_SIZE12524,779569 -#define ANSI_MAX_ARGC ANSI_MAX_ARGC12525,779620 -#define FG_MASK FG_MASK12563,781385 -#define BG_MASK BG_MASK12564,781419 -#define _UNICODE _UNICODE12577,782174 -#define UNICODE UNICODE12578,782208 -#define MAX_FILE_NAME MAX_FILE_NAME12579,782241 -#define O_PLMT O_PLMT12580,782286 -#define streq(streq12581,782317 -#define RLC_PROLOG_WINDOW RLC_PROLOG_WINDOW12584,782462 -#define RLC_PROLOG_INPUT RLC_PROLOG_INPUT12585,782515 -#define RLC_PROLOG_OUTPUT RLC_PROLOG_OUTPUT12586,782566 -#define RLC_PROLOG_ERROR RLC_PROLOG_ERROR12587,782619 -#define RLC_REGISTER RLC_REGISTER12588,782670 -#define LOCK(LOCK12592,782955 -#define UNLOCK(UNLOCK12593,782983 -#define STREAM_COMMON STREAM_COMMON12607,783921 -#define WM_SIGNALLED WM_SIGNALLED12629,785269 -#define WM_MENU WM_MENU12630,785314 -#define MAX_ARGC MAX_ARGC12645,786224 -#define OEM_RESOURCEOEM_RESOURCE12651,786502 -#define IDI_APPICON IDI_APPICON12652,786540 -#define IDR_MAINMENU IDR_MAINMENU12653,786578 -#define IDR_ACCELERATOR IDR_ACCELERATOR12654,786618 -#define IDD_ABOUTDIALOG IDD_ABOUTDIALOG12655,786665 -#define ID_FILE_EXIT ID_FILE_EXIT12656,786712 -#define ID_HELP_ABOUT ID_HELP_ABOUT12657,786753 - #define IDC_STATIC IDC_STATIC12658,786796 -#define QT_MOC_LITERAL(QT_MOC_LITERAL12666,787235 -#undef QT_MOC_LITERALQT_MOC_LITERAL12668,787398 -#define UI_MAINWINDOW_HUI_MAINWINDOW_H12682,788514 -#define MAINWINDOW_HMAINWINDOW_H12727,790569 -#define CONSOLE_HCONSOLE_H12752,791882 -#define MAINWINDOW_HMAINWINDOW_H12781,793369 -#define QT_MOC_LITERAL(QT_MOC_LITERAL12799,794204 -#undef QT_MOC_LITERALQT_MOC_LITERAL12801,794358 -#define QT_MOC_LITERAL(QT_MOC_LITERAL12822,795836 -#undef QT_MOC_LITERALQT_MOC_LITERAL12824,795999 -#define QT_MOC_LITERAL(QT_MOC_LITERAL12843,797413 -#undef QT_MOC_LITERALQT_MOC_LITERAL12845,797588 -# define QT_RCC_PREPEND_NAMESPACE(QT_RCC_PREPEND_NAMESPACE12862,798969 -# define QT_RCC_MANGLE_NAMESPACE0(QT_RCC_MANGLE_NAMESPACE012863,799042 -# define QT_RCC_MANGLE_NAMESPACE1(QT_RCC_MANGLE_NAMESPACE112864,799115 -# define QT_RCC_MANGLE_NAMESPACE2(QT_RCC_MANGLE_NAMESPACE212865,799188 -# define QT_RCC_MANGLE_NAMESPACE(QT_RCC_MANGLE_NAMESPACE12866,799261 -# define QT_RCC_PREPEND_NAMESPACE(QT_RCC_PREPEND_NAMESPACE12867,799332 -# define QT_RCC_MANGLE_NAMESPACE(QT_RCC_MANGLE_NAMESPACE12868,799406 -#define SETTINGSDIALOG_HSETTINGSDIALOG_H12905,802080 -#define UI_MAINWINDOW_HUI_MAINWINDOW_H12944,804321 -#define UI_SETTINGSDIALOG_HUI_SETTINGSDIALOG_H12985,806521 -#undef HAVE_UNISTD_HHAVE_UNISTD_H13052,810584 -#define HAVE_CUDD_CUDD_H HAVE_CUDD_CUDD_H13062,811025 -#define HAVE_CUDD_CUDDINT_H HAVE_CUDD_CUDDINT_H13063,811075 -#define YAPA_HH YAPA_HH13095,811784 -#define _YAPDB_H_YAPDB_H13135,814370 -#define YAP_CPP_DB_INTERFACE YAP_CPP_DB_INTERFACE13136,814401 -#define YAP_CPP_INTERFACE YAP_CPP_INTERFACE13237,821803 -#define YAP_CPP_INTERFACE YAP_CPP_INTERFACE13352,829926 -#define YAPIE_HHYAPIE_HH13355,829996 -#define YAPQ_HH YAPQ_HH13377,831117 -#define YAPT_HH YAPT_HH13538,840731 -#define Project_absmi_interpretrer_hProject_absmi_interpretrer_h13742,854773 -#define ABSMI_THREADED_HABSMI_THREADED_H13745,854870 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13746,854920 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13747,854981 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13748,855046 -#define START_PREFETCH(START_PREFETCH13749,855097 -#define START_PREFETCH_W(START_PREFETCH_W13750,855144 -#define INIT_PREFETCH(INIT_PREFETCH13751,855195 -#define PREFETCH_OP(PREFETCH_OP13752,855240 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13753,855281 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13754,855342 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13755,855407 -#define START_PREFETCH(START_PREFETCH13756,855458 -#define START_PREFETCH_W(START_PREFETCH_W13757,855505 -#define INIT_PREFETCH(INIT_PREFETCH13758,855556 -#define PREFETCH_OP(PREFETCH_OP13759,855601 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH13760,855642 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W13761,855699 -#define END_PREFETCH(END_PREFETCH13762,855760 -#define END_PREFETCH_W(END_PREFETCH_W13763,855803 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH13764,855850 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W13765,855907 -#define END_PREFETCH(END_PREFETCH13766,855968 -#define END_PREFETCH_W(END_PREFETCH_W13767,856011 -#define DO_PREFETCH(DO_PREFETCH13768,856058 -#define DO_PREFETCH_W(DO_PREFETCH_W13769,856099 - #define JMPNext(JMPNext13770,856144 - #define JMPNextW(JMPNextW13771,856178 - #define baGONext(baGONext13772,856215 -#define GONextW(GONextW13773,856252 -#define ALWAYS_GONext(ALWAYS_GONext13774,856286 -#define ALWAYS_GONextW(ALWAYS_GONextW13775,856332 -#define Op(Op13776,856380 -#define OpW(OpW13777,856404 -#define BOp(BOp13778,856430 -#define PBOp(PBOp13779,856456 -#define OpRW(OpRW13780,856484 -#define ABSMI_THREADED_HABSMI_THREADED_H13783,856538 -#define DO_PREFETCH(DO_PREFETCH13784,856588 -#define DO_PREFETCH_W(DO_PREFETCH_W13785,856629 -#define DO_PREFETCH(DO_PREFETCH13786,856674 -#define DO_PREFETCH_W(DO_PREFETCH_W13787,856715 -#define DO_PREFETCH(DO_PREFETCH13788,856760 -#define DO_PREFETCH_W(DO_PREFETCH_W13789,856801 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13790,856846 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13791,856907 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13792,856958 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13793,857009 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13794,857075 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13795,857137 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13796,857203 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13797,857255 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13798,857317 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13799,857369 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13800,857435 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13801,857497 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13802,857563 -#define START_PREFETCH(START_PREFETCH13803,857615 -#define START_PREFETCH_W(START_PREFETCH_W13804,857663 -#define INIT_PREFETCH(INIT_PREFETCH13805,857715 -#define PREFETCH_OP(PREFETCH_OP13806,857761 -#define START_PREFETCH(START_PREFETCH13807,857803 -#define START_PREFETCH_W(START_PREFETCH_W13808,857851 -#define INIT_PREFETCH(INIT_PREFETCH13809,857903 -#define PREFETCH_OP(PREFETCH_OP13810,857949 -#define START_PREFETCH(START_PREFETCH13811,857991 -#define START_PREFETCH_W(START_PREFETCH_W13812,858039 -#define INIT_PREFETCH(INIT_PREFETCH13813,858091 -#define PREFETCH_OP(PREFETCH_OP13814,858137 -#define START_PREFETCH(START_PREFETCH13815,858179 -#define START_PREFETCH_W(START_PREFETCH_W13816,858227 -#define INIT_PREFETCH(INIT_PREFETCH13817,858279 -#define PREFETCH_OP(PREFETCH_OP13818,858325 -#define ABSMI_THREADED_HABSMI_THREADED_H13821,858391 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13822,858441 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13823,858502 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13824,858567 -#define START_PREFETCH(START_PREFETCH13825,858618 -#define START_PREFETCH_W(START_PREFETCH_W13826,858665 -#define INIT_PREFETCH(INIT_PREFETCH13827,858716 -#define PREFETCH_OP(PREFETCH_OP13828,858761 -#define DO_PREFETCH(DO_PREFETCH13829,858802 -#define DO_PREFETCH_W(DO_PREFETCH_W13830,858843 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH13831,858888 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W13832,858945 -#define END_PREFETCH(END_PREFETCH13833,859006 -#define END_PREFETCH_W(END_PREFETCH_W13834,859049 - #define Op(Op13835,859096 - #define OpW(OpW13836,859122 - #define BOp(BOp13837,859150 - #define PBOp(PBOp13838,859178 - #define OpRW(OpRW13839,859208 -#define JMPNext(JMPNext13840,859238 -#define JMPNextW(JMPNextW13841,859272 -#define GONext(GONext13842,859308 -#define GONextW(GONextW13843,859340 -#define ALWAYS_GONext(ALWAYS_GONext13844,859374 -#define ALWAYS_GONextW(ALWAYS_GONextW13845,859420 - #define Op(Op13846,859468 - #define OpW(OpW13847,859494 - #define BOp(BOp13848,859522 - #define PBOp(PBOp13849,859550 - #define OpRW(OpRW13850,859580 -#define ABSMI_H ABSMI_H13853,859628 -#define EXEC_NATIVE(EXEC_NATIVE13854,859660 -#define MAX_INVOCATION MAX_INVOCATION13855,859700 -#define Yapc_Compile(Yapc_Compile13856,859746 -#define registerregister13857,859788 -#define SHADOW_P SHADOW_P13858,859821 -#define SHADOW_Y SHADOW_Y13859,859856 -#define SHADOW_REGS SHADOW_REGS13860,859891 -#define USE_PREFETCH USE_PREFETCH13861,859932 -#define SHADOW_P SHADOW_P13862,859975 -#define SHADOW_Y SHADOW_Y13863,860010 -#define SHADOW_REGS SHADOW_REGS13864,860045 -#define USE_PREFETCH USE_PREFETCH13865,860086 -#define SHADOW_P SHADOW_P13866,860129 -#define SHADOW_REGS SHADOW_REGS13867,860164 -#define USE_PREFETCH USE_PREFETCH13868,860205 -#define Y_IN_MEM Y_IN_MEM13869,860248 -#define S_IN_MEM S_IN_MEM13870,860283 -#define TR_IN_MEM TR_IN_MEM13871,860318 -#define HAVE_FEW_REGS HAVE_FEW_REGS13872,860355 -#define LIMITED_PREFETCH LIMITED_PREFETCH13873,860400 -#define PREG PREG13874,860451 -#define NEEDS_TO_SET_PC NEEDS_TO_SET_PC13875,860478 -#define SHADOW_P SHADOW_P13876,860527 -#undef BP_FREEBP_FREE13877,860562 -#define S_IN_MEM S_IN_MEM13878,860593 -#define Y_IN_MEM Y_IN_MEM13879,860628 -#define TR_IN_MEM TR_IN_MEM13880,860663 -#define SHADOW_P SHADOW_P13881,860700 -#undef BP_FREEBP_FREE13882,860735 -#define SHADOW_S SHADOW_S13883,860766 -#define S_IN_MEM S_IN_MEM13884,860801 -#define Y_IN_MEM Y_IN_MEM13885,860836 -#define TR_IN_MEM TR_IN_MEM13886,860871 -#define LIMITED_PREFETCH LIMITED_PREFETCH13887,860908 -#define Y_IN_MEM Y_IN_MEM13888,860959 -#define S_IN_MEM S_IN_MEM13889,860995 -#define TR_IN_MEM TR_IN_MEM13890,861031 -#define HAVE_FEW_REGS HAVE_FEW_REGS13891,861069 -#define S_IN_MEM S_IN_MEM13892,861115 -#define SHADOW_P SHADOW_P13893,861151 -#define SHADOW_REGS SHADOW_REGS13894,861187 -#define SHADOW_S SHADOW_S13895,861229 -#define Y_IN_MEM Y_IN_MEM13896,861265 -#define S_IN_MEM S_IN_MEM13897,861301 -#define TR_IN_MEM TR_IN_MEM13898,861337 -#define HAVE_FEW_REGS HAVE_FEW_REGS13899,861375 -#define SHADOW_P SHADOW_P13900,861421 -#define SHADOW_Y SHADOW_Y13901,861457 -#define SHADOW_S SHADOW_S13902,861493 -#define SHADOW_CP SHADOW_CP13903,861529 -#define SHADOW_HB SHADOW_HB13904,861567 -#define USE_PREFETCH USE_PREFETCH13905,861605 -#define BEGP(BEGP13908,861845 -#define ENDP(ENDP13909,861873 -#define BEGD(BEGD13910,861901 -#define ENDD(ENDD13911,861929 -#define BEGP(BEGP13912,861957 -#define ENDP(ENDP13913,861985 -#define BEGD(BEGD13914,862013 -#define ENDD(ENDD13915,862041 -#define BEGCHO(BEGCHO13916,862069 -#define ENDCHO(ENDCHO13917,862101 -#define CACHE_Y(CACHE_Y13918,862133 -#define ENDCACHE_Y(ENDCACHE_Y13919,862167 -#define B_YREG B_YREG13920,862207 -#define S_YREG S_YREG13921,862239 -#define B_YREG B_YREG13922,862271 -#define CACHE_Y(CACHE_Y13923,862303 -#define ENDCACHE_Y(ENDCACHE_Y13924,862337 -#define CACHE_Y_AS_ENV(CACHE_Y_AS_ENV13925,862377 -#define FETCH_Y_FROM_ENV(FETCH_Y_FROM_ENV13926,862425 -#define WRITEBACK_Y_AS_ENV(WRITEBACK_Y_AS_ENV13927,862477 -#define ENDCACHE_Y_AS_ENV(ENDCACHE_Y_AS_ENV13928,862533 -#define saveregs_and_ycache(saveregs_and_ycache13929,862587 -#define setregs_and_ycache(setregs_and_ycache13930,862645 -#define ENV_YREG ENV_YREG13931,862701 -#define WRITEBACK_Y_AS_ENV(WRITEBACK_Y_AS_ENV13932,862737 -#define CACHE_Y_AS_ENV(CACHE_Y_AS_ENV13933,862793 -#define FETCH_Y_FROM_ENV(FETCH_Y_FROM_ENV13934,862841 -#define ENDCACHE_Y_AS_ENV(ENDCACHE_Y_AS_ENV13935,862893 -#define saveregs_and_ycache(saveregs_and_ycache13936,862947 -#define setregs_and_ycache(setregs_and_ycache13937,863005 -#define CACHE_A1(CACHE_A113938,863061 -#define CACHED_A1(CACHED_A113939,863097 -#define CACHE_A1(CACHE_A113940,863135 -#define CACHED_A1(CACHED_A113941,863171 -#define CACHE_A1(CACHE_A113942,863209 -#define CACHED_A1(CACHED_A113943,863245 -#define CACHE_TR(CACHE_TR13944,863283 -#define RESTORE_TR(RESTORE_TR13945,863319 -#define ENDCACHE_TR(ENDCACHE_TR13946,863359 -#define CACHE_TR(CACHE_TR13947,863401 -#define RESTORE_TR(RESTORE_TR13948,863437 -#define ENDCACHE_TR(ENDCACHE_TR13949,863477 -#define CACHE_S(CACHE_S13950,863519 -#define ENDCACHE_S(ENDCACHE_S13951,863553 -#define READ_IN_S(READ_IN_S13952,863593 -#define READ_IN_S(READ_IN_S13953,863631 -#define CACHE_S(CACHE_S13954,863669 -#define ENDCACHE_S(ENDCACHE_S13955,863703 -#define READ_IN_S(READ_IN_S13956,863743 -#define S_SREG S_SREG13957,863781 -#define WRITEBACK_S(WRITEBACK_S13958,863813 -#define WRITEBACK_S(WRITEBACK_S13959,863855 -#define DO_PREFETCH(DO_PREFETCH13960,863897 -#define DO_PREFETCH_W(DO_PREFETCH_W13961,863940 -#define DO_PREFETCH(DO_PREFETCH13962,863987 -#define DO_PREFETCH_W(DO_PREFETCH_W13963,864030 -#define DO_PREFETCH(DO_PREFETCH13964,864077 -#define DO_PREFETCH_W(DO_PREFETCH_W13965,864120 -#define DO_PREFETCH(DO_PREFETCH13966,864167 -#define DO_PREFETCH_W(DO_PREFETCH_W13967,864210 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13968,864257 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13969,864320 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13970,864373 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13971,864426 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13972,864493 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13973,864556 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13974,864623 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13975,864676 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13976,864739 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13977,864792 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13978,864859 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13979,864922 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13980,864989 -#define START_PREFETCH(START_PREFETCH13981,865042 -#define START_PREFETCH_W(START_PREFETCH_W13982,865091 -#define INIT_PREFETCH(INIT_PREFETCH13983,865144 -#define PREFETCH_OP(PREFETCH_OP13984,865191 -#define START_PREFETCH(START_PREFETCH13985,865234 -#define START_PREFETCH_W(START_PREFETCH_W13986,865283 -#define INIT_PREFETCH(INIT_PREFETCH13987,865336 -#define PREFETCH_OP(PREFETCH_OP13988,865383 -#define START_PREFETCH(START_PREFETCH13989,865426 -#define START_PREFETCH_W(START_PREFETCH_W13990,865475 -#define INIT_PREFETCH(INIT_PREFETCH13991,865528 -#define PREFETCH_OP(PREFETCH_OP13992,865575 -#define START_PREFETCH(START_PREFETCH13993,865618 -#define START_PREFETCH_W(START_PREFETCH_W13994,865667 -#define INIT_PREFETCH(INIT_PREFETCH13995,865720 -#define PREFETCH_OP(PREFETCH_OP13996,865767 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH13997,865810 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W13998,865873 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD13999,865940 -#define START_PREFETCH(START_PREFETCH14000,865993 -#define START_PREFETCH_W(START_PREFETCH_W14001,866042 -#define INIT_PREFETCH(INIT_PREFETCH14002,866095 -#define PREFETCH_OP(PREFETCH_OP14003,866142 -#define ALWAYS_START_PREFETCH(ALWAYS_START_PREFETCH14004,866185 -#define ALWAYS_START_PREFETCH_W(ALWAYS_START_PREFETCH_W14005,866248 -#define ALWAYS_LOOKAHEAD(ALWAYS_LOOKAHEAD14006,866315 -#define START_PREFETCH(START_PREFETCH14007,866368 -#define START_PREFETCH_W(START_PREFETCH_W14008,866417 -#define INIT_PREFETCH(INIT_PREFETCH14009,866470 -#define PREFETCH_OP(PREFETCH_OP14010,866517 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH14011,866560 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W14012,866619 -#define END_PREFETCH(END_PREFETCH14013,866682 -#define END_PREFETCH_W(END_PREFETCH_W14014,866727 -#define ALWAYS_END_PREFETCH(ALWAYS_END_PREFETCH14015,866776 -#define ALWAYS_END_PREFETCH_W(ALWAYS_END_PREFETCH_W14016,866835 -#define END_PREFETCH(END_PREFETCH14017,866898 -#define END_PREFETCH_W(END_PREFETCH_W14018,866943 -#define JMP(JMP14019,866992 -#define JMPNext(JMPNext14020,867019 -#define JMPNextW(JMPNextW14021,867054 -#define JMP(JMP14022,867091 -#define JMPNext(JMPNext14023,867118 -#define JMPNextW(JMPNextW14024,867153 -#define JMPNext(JMPNext14025,867190 -#define JMPNextW(JMPNextW14026,867225 -#define SUCCESSBACK(SUCCESSBACK14027,867262 -#define BACK(BACK14028,867305 -#define SUCCESSBACK(SUCCESSBACK14029,867334 -#define BACK(BACK14030,867377 -#define SUCCESSBACK(SUCCESSBACK14031,867406 -#define BACK(BACK14032,867449 -#define SUCCESSBACK(SUCCESSBACK14033,867478 -#define BACK(BACK14034,867521 -#define JMP(JMP14035,867550 -#define JMPNext(JMPNext14036,867577 -#define JMPNextW(JMPNextW14037,867612 -#define ALWAYS_GONext(ALWAYS_GONext14038,867649 -#define ALWAYS_GONextW(ALWAYS_GONextW14039,867696 -#define ALWAYS_GONext(ALWAYS_GONext14040,867745 -#define ALWAYS_GONextW(ALWAYS_GONextW14041,867792 -#define GONext(GONext14042,867841 -#define GONextW(GONextW14043,867874 -#define GONext(GONext14044,867909 -#define GONextW(GONextW14045,867942 -#define Op(Op14046,867977 -#define OpW(OpW14047,868002 -#define BOp(BOp14048,868029 -#define PBOp(PBOp14049,868056 -#define OpRW(OpRW14050,868085 -#define Op(Op14051,868114 -#define OpW(OpW14052,868139 -#define BOp(BOp14053,868166 -#define PBOp(PBOp14054,868193 -#define OpRW(OpRW14055,868222 -#define Op(Op14056,868251 -#define OpW(OpW14057,868276 -#define BOp(BOp14058,868303 -#define PBOp(PBOp14059,868330 -#define OpRW(OpRW14060,868359 -#define JMPNext(JMPNext14061,868388 -#define JMPNextW(JMPNextW14062,868423 -#define GONext(GONext14063,868460 -#define GONextW(GONextW14064,868493 -#define ALWAYS_GONext(ALWAYS_GONext14065,868528 -#define ALWAYS_GONextW(ALWAYS_GONextW14066,868575 -#define Op(Op14067,868625 -#define OpW(OpW14068,868651 -#define BOp(BOp14069,868679 -#define PBOp(PBOp14070,868707 -#define OpRW(OpRW14071,868737 -#define ENDOp(ENDOp14072,868767 -#define ENDOpW(ENDOpW14073,868799 -#define ENDOpRW(ENDOpRW14074,868833 -#define ENDBOp(ENDBOp14075,868869 -#define ENDPBOp(ENDPBOp14076,868903 -#define ADJ(ADJ14078,868976 -#define pred_entry(pred_entry14079,869004 -#define pred_entry_from_code(pred_entry_from_code14080,869046 -#define PredFromDefCode(PredFromDefCode14081,869108 -#define PredFromExpandCode(PredFromExpandCode14082,869160 -#define PredCode(PredCode14083,869218 -#define PredOpCode(PredOpCode14084,869256 -#define TruePredCode(TruePredCode14085,869298 -#define PredFunctor(PredFunctor14086,869344 -#define PredArity(PredArity14087,869388 -#define FlagOff(FlagOff14088,869428 -#define FlagOn(FlagOn14089,869464 -#define ResetFlag(ResetFlag14090,869498 -#define SetFlag(SetFlag14091,869538 -#define XREG(XREG14092,869574 -#define XREG(XREG14093,869604 -#define SP0 SP014094,869634 -#define SP SP14095,869662 -#define READ_MODE READ_MODE14096,869688 -#define WRITE_MODE WRITE_MODE14097,869728 -#define NEEDS_TO_SET_PC NEEDS_TO_SET_PC14098,869770 -#define set_pc(set_pc14099,869822 -#define save_pc(save_pc14100,869856 -#define set_pc(set_pc14101,869892 -#define save_pc(save_pc14102,869926 -#define set_pc(set_pc14103,869962 -#define save_pc(save_pc14104,869996 -#define PREG PREG14105,870032 -#define set_y(set_y14106,870062 -#define save_y(save_y14107,870094 -#define set_y(set_y14108,870128 -#define save_y(save_y14109,870160 -#define YREG YREG14110,870194 -#define set_cp(set_cp14111,870224 -#define save_cp(save_cp14112,870258 -#define set_cp(set_cp14113,870294 -#define save_cp(save_cp14114,870328 -#define set_cp(set_cp14115,870364 -#define save_cp(save_cp14116,870398 -#define CPREG CPREG14117,870434 -#define setregs(setregs14118,870466 -#define saveregs(saveregs14119,870502 -#define always_save_pc(always_save_pc14120,870540 -#define always_set_pc(always_set_pc14121,870590 -#define always_save_pc(always_save_pc14122,870638 -#define always_set_pc(always_set_pc14123,870688 -#define OS_HANDLES_TR_OVERFLOW OS_HANDLES_TR_OVERFLOW14124,870736 -#define check_trail(check_trail14125,870802 -#define check_trail_in_indexing(check_trail_in_indexing14126,870846 -#define check_trail(check_trail14127,870914 -#define check_trail(check_trail14128,870958 -#define check_trail_in_indexing(check_trail_in_indexing14129,871002 -#define check_trail(check_trail14130,871070 -#define check_trail(check_trail14131,871114 -#define check_trail_in_indexing(check_trail_in_indexing14132,871158 -#define check_stack(check_stack14133,871226 -#define check_stack(check_stack14134,871270 -#define check_stack(check_stack14135,871314 -#define check_stack(check_stack14136,871358 -#define store_args(store_args14137,871402 -#define store_at_least_one_arg(store_at_least_one_arg14138,871444 -#define COUNT_CPS(COUNT_CPS14139,871510 -#define COUNT_CPS(COUNT_CPS14140,871550 -#define store_yaam_reg_cpdepth(store_yaam_reg_cpdepth14141,871590 -#define store_yaam_reg_cpdepth(store_yaam_reg_cpdepth14142,871656 -#define store_yaam_regs(store_yaam_regs14143,871722 -#define store_yaam_regs(store_yaam_regs14144,871774 -#define store_yaam_regs_for_either(store_yaam_regs_for_either14145,871826 -#define set_cut(set_cut14146,871900 -#define restore_yaam_reg_cpdepth(restore_yaam_reg_cpdepth14147,871936 -#define restore_yaam_reg_cpdepth(restore_yaam_reg_cpdepth14148,872006 -#define YAPOR_update_alternative(YAPOR_update_alternative14149,872076 -#define YAPOR_update_alternative(YAPOR_update_alternative14150,872146 -#define SET_BB(SET_BB14151,872216 -#define SET_BB(SET_BB14152,872250 -#define PROTECT_FROZEN_H(PROTECT_FROZEN_H14153,872284 -#define PROTECT_FROZEN_B(PROTECT_FROZEN_B14154,872338 -#define PROTECT_FROZEN_B(PROTECT_FROZEN_B14155,872392 -#define PROTECT_FROZEN_H(PROTECT_FROZEN_H14156,872446 -#define PROTECT_FROZEN_B(PROTECT_FROZEN_B14157,872500 -#define PROTECT_FROZEN_H(PROTECT_FROZEN_H14158,872554 -#define restore_yaam_regs(restore_yaam_regs14159,872608 -#define restore_yaam_regs(restore_yaam_regs14160,872664 -#define restore_args(restore_args14161,872720 -#define restore_at_least_one_arg(restore_at_least_one_arg14162,872766 -#define pop_yaam_reg_cpdepth(pop_yaam_reg_cpdepth14163,872836 -#define pop_yaam_reg_cpdepth(pop_yaam_reg_cpdepth14164,872898 -#define TABLING_close_alt(TABLING_close_alt14165,872960 -#define TABLING_close_alt(TABLING_close_alt14166,873016 -#define pop_yaam_regs(pop_yaam_regs14167,873072 -#define pop_yaam_regs(pop_yaam_regs14168,873120 -#define pop_args(pop_args14169,873168 -#define pop_at_least_one_arg(pop_at_least_one_arg14170,873206 -#define FAIL(FAIL14171,873268 -#define TRACED_FAIL(TRACED_FAIL14172,873298 -#define FAIL(FAIL14173,873342 -#define TRACED_FAIL(TRACED_FAIL14174,873372 -#define FAIL(FAIL14175,873416 -#define UnifyGlobalCells(UnifyGlobalCells14176,873446 -#define UnifyGlobalCellToCell(UnifyGlobalCellToCell14177,873500 -#define UnifyCells(UnifyCells14178,873564 -#define UNWIND_CUNIF(UNWIND_CUNIF14179,873606 -#define UNWIND_CUNIF(UNWIND_CUNIF14180,873652 -#define UnifyBound_TEST_ATTACHED(UnifyBound_TEST_ATTACHED14181,873698 -#define UnifyBound(UnifyBound14182,873768 -#define traced_UnifyBound_TEST_ATTACHED(traced_UnifyBound_TEST_ATTACHED14183,873810 -#define traced_UnifyBound(traced_UnifyBound14184,873894 -#undef HBREGHBREG14185,873950 -#define set_hb(set_hb14186,873980 -#define save_hb(save_hb14187,874014 -#define set_hb(set_hb14188,874050 -#define save_hb(save_hb14189,874084 -#undef Yap_REGSYap_REGS14207,874805 -#define Yap_REGS Yap_REGS14208,874841 -#define unif_base unif_base14209,874879 -#define to_visit_base to_visit_base14210,874919 -#undef Yap_REGSYap_REGS14211,874967 -#define Yap_REGS Yap_REGS14212,875003 -#undef to_visit_baseto_visit_base14213,875041 -#undef unif_baseunif_base14214,875087 -#undef Yap_REGSYap_REGS14216,875217 -#define Yap_REGS Yap_REGS14217,875253 -#define unif_base unif_base14218,875291 -#define to_visit_base to_visit_base14219,875331 -#undef Yap_REGSYap_REGS14220,875379 -#define Yap_REGS Yap_REGS14221,875415 -#define check_depth(check_depth14224,875604 -#define check_depth(check_depth14225,875648 -#define copy_jmp_address(copy_jmp_address14226,875692 -#define copy_jmp_addressa(copy_jmp_addressa14227,875746 -#define copy_jmp_address(copy_jmp_address14228,875802 -#define copy_jmp_addressa(copy_jmp_addressa14229,875856 -#define INITIALIZE_PERMVAR(INITIALIZE_PERMVAR14231,875980 -#define INITIALIZE_PERMVAR(INITIALIZE_PERMVAR14232,876038 -#define UnifyAndTrailCells(UnifyAndTrailCells14233,876096 -#define CHECK_ALARM(CHECK_ALARM14234,876154 -#define PROCESS_INT(PROCESS_INT14238,876390 -#define PROCESS_INT(PROCESS_INT14239,876434 -#define Yap_AsmError(Yap_AsmError14240,876478 -#define K K14252,876939 -#define MinBlockSize MinBlockSize14253,876960 -#define MaxBlockSize MaxBlockSize14254,877003 -#define InUseFlag InUseFlag14255,877046 -#define YAP_ALIGN YAP_ALIGN14256,877083 -#define YAP_ALIGNMASK YAP_ALIGNMASK14257,877120 -#define YAP_ALIGN YAP_ALIGN14258,877165 -#define YAP_ALIGNMASK YAP_ALIGNMASK14259,877202 -#define AdjustSize(AdjustSize14260,877247 -#define ALIGN_SIZE(ALIGN_SIZE14261,877286 -#define YAP_ALLOC_SIZE YAP_ALLOC_SIZE14262,877325 -#define LGPAGE_SIZE LGPAGE_SIZE14263,877372 -#define YAP_ALLOC_SIZE YAP_ALLOC_SIZE14264,877413 -#define LGPAGE_SIZE LGPAGE_SIZE14265,877460 -#define AdjustPageSize(AdjustPageSize14266,877501 -#define AdjustLargePageSize(AdjustLargePageSize14267,877548 -#define BlockTrailer(BlockTrailer14268,877605 -#define SCRATCH_START_SIZE SCRATCH_START_SIZE14270,877689 -#define SCRATCH_INC_SIZE SCRATCH_INC_SIZE14271,877745 -#define CACHE_TYPE1 CACHE_TYPE114283,878257 -#define CACHE_TYPE CACHE_TYPE14284,878298 -#define CACHE_TYPECACHE_TYPE14285,878337 -#define CACHE_TYPE1 CACHE_TYPE114286,878375 -#define OpRegSize OpRegSize14289,878537 -#define OPCODE(OPCODE14293,878688 -#undef OPCODEOPCODE14294,878720 -#define _std_top _std_top14296,878785 -#define OpCodeSize OpCodeSize14376,881242 -#define OPCR OPCR15302,927178 -#define OPCW OPCW15303,927207 -#define NEXTOP(NEXTOP15304,927236 -#define PREVOP(PREVOP15305,927269 -#define TrailTerm(TrailTerm15312,927529 -#define TrailVal(TrailVal15313,927568 -#define TrailTerm(TrailTerm15315,927650 -#define TrailVal(TrailVal15316,927689 -#define cp_env cp_env15377,930946 -#define cp_args cp_args15378,930979 -#define cp_a1 cp_a115379,931014 -#define cp_a2 cp_a215380,931045 -#define cp_a3 cp_a315381,931076 -#define cp_a4 cp_a415382,931107 -#define cp_a5 cp_a515383,931138 -#define cp_a6 cp_a615384,931169 -#define cp_a7 cp_a715385,931200 -#define cp_a8 cp_a815386,931231 -#define cp_a9 cp_a915387,931262 -#define cp_a10 cp_a1015388,931293 -#define EXTRA_CBACK_ARG(EXTRA_CBACK_ARG15389,931326 -#define SHOULD_CUT_UP_TO(SHOULD_CUT_UP_TO15392,931455 -#define SHARED_CP(SHARED_CP15393,931508 -#define YOUNGER_CP(YOUNGER_CP15394,931547 -#define EQUAL_OR_YOUNGER_CP(EQUAL_OR_YOUNGER_CP15395,931588 -#define YOUNGER_H(YOUNGER_H15396,931647 -#define YOUNGER_CP(YOUNGER_CP15397,931686 -#define EQUAL_OR_YOUNGER_CP(EQUAL_OR_YOUNGER_CP15398,931727 -#define YOUNGER_H(YOUNGER_H15399,931786 -#define YOUNGEST_CP(YOUNGEST_CP15400,931825 -#define YOUNGEST_H(YOUNGEST_H15401,931868 -#define E_CP E_CP15402,931909 -#define E_E E_E15403,931939 -#define E_CB E_CB15404,931967 -#define E_B E_B15405,931997 -#define E_DEPTH E_DEPTH15406,932025 -#define EnvSizeInCells EnvSizeInCells15407,932061 -#define EnvSizeInCells EnvSizeInCells15408,932111 -#define E_DEPTH E_DEPTH15409,932161 -#define EnvSizeInCells EnvSizeInCells15410,932197 -#define EnvSizeInCells EnvSizeInCells15411,932247 -#define FixedEnvSize FixedEnvSize15412,932297 -#define FixedEnvSize FixedEnvSize15413,932343 -#define RealEnvSize RealEnvSize15414,932389 -#define absmadr(absmadr15429,933189 -#define absmadr(absmadr15430,933225 -#define RESET_DEPTH(RESET_DEPTH15431,933261 -#define AMIJIT_H_AMIJIT_H_15434,933324 - #define OPCODE(OPCODE15707,964757 - #undef OPCODEOPCODE15708,964794 - #define BBLOCK(BBLOCK15709,964829 - #undef BBLOCKBBLOCK15710,964866 -#define ExpEnv ExpEnv15949,987290 -#define IsArrayReference(IsArrayReference15953,987393 -#define profiled_deref_head_TEST(profiled_deref_head_TEST15954,987444 -#define deref_head(deref_head15955,987511 -#define profiled_deref_body(profiled_deref_body15956,987550 -#define deref_body(deref_body15957,987607 -#define do_derefa(do_derefa15958,987646 -#define profiled_derefa_body(profiled_derefa_body15959,987683 -#define derefa_body(derefa_body15960,987742 -#define deref_list_head(deref_list_head15961,987783 -#define deref_list_body(deref_list_body15962,987833 -#define RESET_VARIABLE(RESET_VARIABLE15963,987883 -#define DO_TRAIL(DO_TRAIL15964,987931 -#define TRAIL(TRAIL15965,987967 -#define TRAIL_LOCAL(TRAIL_LOCAL15966,987997 -#define TRAIL(TRAIL15967,988039 -#define TRAIL_LOCAL(TRAIL_LOCAL15968,988069 -#define TRAIL_GLOBAL(TRAIL_GLOBAL15969,988111 -#define DO_MATRAIL(DO_MATRAIL15970,988155 -#define MATRAIL(MATRAIL15971,988195 -#define DO_TRAIL(DO_TRAIL15972,988229 -#define TRAIL(TRAIL15973,988265 -#define TRAIL_GLOBAL(TRAIL_GLOBAL15974,988295 -#define TRAIL_LOCAL(TRAIL_LOCAL15975,988339 -#define TRAIL(TRAIL15976,988381 -#define TRAIL(TRAIL15977,988411 -#define TRAIL_GLOBAL(TRAIL_GLOBAL15978,988441 -#define TRAIL_LOCAL(TRAIL_LOCAL15979,988485 -#define DO_TRAIL(DO_TRAIL15980,988527 -#define TRAIL(TRAIL15981,988563 -#define TRAIL_AND_JUMP(TRAIL_AND_JUMP15982,988593 -#define TRAIL_GLOBAL(TRAIL_GLOBAL15983,988641 -#define TRAIL_LOCAL(TRAIL_LOCAL15984,988685 -#define DO_TRAIL(DO_TRAIL15985,988727 -#define TRAIL(TRAIL15986,988763 -#define TrailAndJump(TrailAndJump15987,988793 -#define TRAIL_GLOBAL(TRAIL_GLOBAL15988,988837 -#define TRAIL_LOCAL(TRAIL_LOCAL15989,988881 -#define DO_MATRAIL(DO_MATRAIL15990,988923 -#define MATRAIL(MATRAIL15991,988963 -#define REF_TO_TRENTRY(REF_TO_TRENTRY15992,988998 -#define CLREF_TO_TRENTRY(CLREF_TO_TRENTRY15993,989047 -#define TRAIL_REF(TRAIL_REF15994,989100 -#define TRAIL_CLREF(TRAIL_CLREF15995,989139 -#define TRAIL_LINK(TRAIL_LINK15996,989182 -#define TRAIL_REF(TRAIL_REF15997,989223 -#define TRAIL_CLREF(TRAIL_CLREF15998,989262 -#define TRAIL_LINK(TRAIL_LINK15999,989305 -#define TRAIL_FRAME(TRAIL_FRAME16000,989346 -#define Bind_Local(Bind_Local16001,989389 -#define Bind_Global(Bind_Global16002,989430 -#define YapBind(YapBind16003,989473 -#define Bind_NonAtt(Bind_NonAtt16004,989508 -#define Bind_Global_NonAtt(Bind_Global_NonAtt16005,989551 -#define Bind_and_Trail(Bind_and_Trail16006,989608 -#define MaBind(MaBind16007,989657 -#define EQ_OK_IN_CMP EQ_OK_IN_CMP16013,990014 -#define LT_OK_IN_CMP LT_OK_IN_CMP16014,990059 -#define GT_OK_IN_CMP GT_OK_IN_CMP16015,990104 -#define cut_succeed(cut_succeed16017,990182 -#define cut_fail(cut_fail16018,990225 -#define DO_MULTI(DO_MULTI16025,990553 -#define OPTIMIZE_MULTIPLI OPTIMIZE_MULTIPLI16026,990588 -#define DO_MULTI(DO_MULTI16027,990641 -#define DO_MULTI(DO_MULTI16028,990676 -#define DO_MULTI(DO_MULTI16029,990711 -#define DO_MULTI(DO_MULTI16030,990746 -#define UStrOfAE UStrOfAE16109,995369 -#define StrOfAE StrOfAE16110,995404 -#define EndOfPAEntr(EndOfPAEntr16111,995437 -#define EndOfPAEntr(EndOfPAEntr16112,995478 -#define USE_OFFSETS_IN_PROPS USE_OFFSETS_IN_PROPS16113,995519 -#define USE_OFFSETS_IN_PROPS USE_OFFSETS_IN_PROPS16114,995578 -#define MaxArity MaxArity16122,996169 -#define FunctorProperty FunctorProperty16124,996246 -#define ATT_RECORD_ARITY ATT_RECORD_ARITY16153,998175 -#define BLOBS_HBLOBS_H16158,998345 -#define X_API X_API16159,998376 -#define X_APIX_API16160,998404 -#define YAP_BLOB_MAGIC_B YAP_BLOB_MAGIC_B16161,998431 -#define PL_BLOB_VERSION PL_BLOB_VERSION16162,998481 -#define PL_BLOB_UNIQUE PL_BLOB_UNIQUE16163,998529 -#define PL_BLOB_TEXT PL_BLOB_TEXT16164,998575 -#define PL_BLOB_NOCOPY PL_BLOB_NOCOPY16165,998617 -#define PL_BLOB_WCHAR PL_BLOB_WCHAR16166,998663 -#define CLAUSE_H CLAUSE_H16205,1000907 -#define ASSEMBLING_CLAUSE ASSEMBLING_CLAUSE16218,1001347 -#define ASSEMBLING_INDEX ASSEMBLING_INDEX16219,1001399 -#define ASSEMBLING_EINDEX ASSEMBLING_EINDEX16220,1001449 -#define NextDynamicClause(NextDynamicClause16221,1001501 -#define PredFirstClause PredFirstClause16222,1001553 -#define PredMiddleClause PredMiddleClause16223,1001601 -#define PredLastClause PredLastClause16224,1001652 -#define ClauseCodeToDynamicClause(ClauseCodeToDynamicClause16433,1011767 -#define ClauseCodeToStaticClause(ClauseCodeToStaticClause16434,1011837 -#define ClauseCodeToLogUpdClause(ClauseCodeToLogUpdClause16435,1011905 -#define ClauseCodeToMegaClause(ClauseCodeToMegaClause16436,1011973 -#define ClauseCodeToLogUpdIndex(ClauseCodeToLogUpdIndex16437,1012037 -#define ClauseCodeToStaticIndex(ClauseCodeToStaticIndex16438,1012103 -#define ClauseFlagsToDynamicClause(ClauseFlagsToDynamicClause16439,1012169 -#define ClauseFlagsToLogUpdClause(ClauseFlagsToLogUpdClause16440,1012241 -#define ClauseFlagsToLogUpdIndex(ClauseFlagsToLogUpdIndex16441,1012311 -#define ClauseFlagsToStaticClause(ClauseFlagsToStaticClause16442,1012379 -#define DynamicFlags(DynamicFlags16443,1012449 -#define DynamicLock(DynamicLock16444,1012493 -#define INIT_CLREF_COUNT(INIT_CLREF_COUNT16445,1012535 -#define INC_CLREF_COUNT(INC_CLREF_COUNT16446,1012587 -#define DEC_CLREF_COUNT(DEC_CLREF_COUNT16447,1012637 -#define CL_IN_USE(CL_IN_USE16448,1012687 -#define INIT_CLREF_COUNT(INIT_CLREF_COUNT16449,1012725 -#define INC_CLREF_COUNT(INC_CLREF_COUNT16450,1012777 -#define DEC_CLREF_COUNT(DEC_CLREF_COUNT16451,1012827 -#define CL_IN_USE(CL_IN_USE16452,1012877 -#define OP_HASH_SIZE OP_HASH_SIZE16453,1012915 -#define Yap_MkStaticRefTerm(Yap_MkStaticRefTerm16458,1013328 -#define Yap_MkMegaRefTerm(Yap_MkMegaRefTerm16461,1013564 -#define Yap_MkExoRefTerm(Yap_MkExoRefTerm16465,1013923 -#define DEAD_REF(DEAD_REF16470,1014370 -#define Yap_InformOfRemoval(Yap_InformOfRemoval16475,1014610 -#define AbsSuspendedVar(AbsSuspendedVar16499,1015896 -#define RepSuspendedVar(RepSuspendedVar16500,1015945 -#define __CUT_C_H____CUT_C_H__16503,1016010 -#define Choice_Point_Type Choice_Point_Type16504,1016047 -#define NULL NULL16505,1016097 -#define CUT_C_STR_SIZE CUT_C_STR_SIZE16512,1016430 -#define EXTRA_CBACK_CUT_ARG(EXTRA_CBACK_CUT_ARG16513,1016476 -#define CBACK_CUT_ARG(CBACK_CUT_ARG16514,1016532 -#define CUT_C_PUSH(CUT_C_PUSH16515,1016576 -#define POP_CHOICE_POINT(POP_CHOICE_POINT16516,1016614 -#define POP_EXECUTE(POP_EXECUTE16517,1016665 -#define POP_FAIL(POP_FAIL16518,1016706 -#define POP_FAIL_EXECUTE(POP_FAIL_EXECUTE16519,1016741 -#define MORECORE MORECORE16522,1016812 -#define MORECORE_CONTIGUOUS MORECORE_CONTIGUOUS16523,1016847 -#define USE_DL_PREFIX USE_DL_PREFIX16524,1016904 -#define __STD_C __STD_C16525,1016949 -#define __STD_C __STD_C16526,1016983 -#define Void_t Void_t16527,1017017 -#define Void_t Void_t16528,1017049 -#define DEBUG_DLMALLOC DEBUG_DLMALLOC16529,1017081 -#define assert(assert16530,1017129 -#define CHUNK_SIZE_T CHUNK_SIZE_T16531,1017161 -#define PTR_UINT PTR_UINT16532,1017205 -#define INTERNAL_SIZE_T INTERNAL_SIZE_T16533,1017241 -#define SIZE_SZ SIZE_SZ16534,1017291 -#define MALLOC_ALIGNMENT MALLOC_ALIGNMENT16535,1017325 -#define MALLOC_ALIGN_MASK MALLOC_ALIGN_MASK16536,1017377 -#define TRIM_FASTBINS TRIM_FASTBINS16537,1017431 -#define cALLOc cALLOc16538,1017477 -#define fREe fREe16539,1017509 -#define cFREe cFREe16540,1017537 -#define mALLOc mALLOc16541,1017567 -#define mEMALIGn mEMALIGn16542,1017599 -#define rEALLOc rEALLOc16543,1017635 -#define vALLOc vALLOc16544,1017669 -#define pVALLOc pVALLOc16545,1017701 -#define mALLINFo mALLINFo16546,1017735 -#define mALLOPt mALLOPt16547,1017771 -#define mTRIm mTRIm16548,1017805 -#define mSTATs mSTATs16549,1017835 -#define mUSABLe mUSABLe16550,1017868 -#define iCALLOc iCALLOc16551,1017903 -#define iCOMALLOc iCOMALLOc16552,1017938 -#define MALLOC_FAILURE_ACTION MALLOC_FAILURE_ACTION16553,1017977 -#define MALLOC_FAILURE_ACTIONMALLOC_FAILURE_ACTION16554,1018040 -#define MORECORE MORECORE16555,1018102 -#define MORECORE_FAILURE MORECORE_FAILURE16556,1018139 -#define MORECORE_CONTIGUOUS MORECORE_CONTIGUOUS16557,1018192 -#define malloc_getpagesize malloc_getpagesize16558,1018251 -# define _SC_PAGE_SIZE _SC_PAGE_SIZE16559,1018308 -# define malloc_getpagesize malloc_getpagesize16560,1018361 -# define malloc_getpagesize malloc_getpagesize16561,1018422 -# define malloc_getpagesize malloc_getpagesize16562,1018485 -# define malloc_getpagesize malloc_getpagesize16563,1018550 -# define malloc_getpagesize malloc_getpagesize16564,1018617 -# define malloc_getpagesize malloc_getpagesize16565,1018688 -# define malloc_getpagesize malloc_getpagesize16566,1018759 -# define malloc_getpagesize malloc_getpagesize16567,1018830 -# define malloc_getpagesize malloc_getpagesize16568,1018903 -#define HAVE_USR_INCLUDE_MALLOC_H HAVE_USR_INCLUDE_MALLOC_H16569,1018976 -#define M_MXFAST M_MXFAST16591,1020562 -#define DEFAULT_MXFAST DEFAULT_MXFAST16592,1020599 -#define M_TRIM_THRESHOLD M_TRIM_THRESHOLD16593,1020648 -#define DEFAULT_TRIM_THRESHOLD DEFAULT_TRIM_THRESHOLD16594,1020702 -#define M_TOP_PAD M_TOP_PAD16595,1020768 -#define DEFAULT_TOP_PAD DEFAULT_TOP_PAD16596,1020808 -#define chunk2mem(chunk2mem16607,1021663 -#define mem2chunk(mem2chunk16608,1021703 -#define MIN_CHUNK_SIZE MIN_CHUNK_SIZE16609,1021743 -#define MINSIZE MINSIZE16610,1021793 -#define aligned_OK(aligned_OK16611,1021829 -#define REQUEST_OUT_OF_RANGE(REQUEST_OUT_OF_RANGE16612,1021871 -#define request2size(request2size16613,1021933 -#define checked_request2size(checked_request2size16614,1021979 -#define PREV_INUSE PREV_INUSE16615,1022041 -#define prev_inuse(prev_inuse16616,1022083 -#define IS_MMAPPED IS_MMAPPED16617,1022125 -#define chunk_is_mmapped(chunk_is_mmapped16618,1022167 -#define SIZE_BITS SIZE_BITS16619,1022221 -#define chunksize(chunksize16620,1022261 -#define next_chunk(next_chunk16621,1022301 -#define prev_chunk(prev_chunk16622,1022343 -#define chunk_at_offset(chunk_at_offset16623,1022385 -#define inuse(inuse16624,1022437 -#define set_inuse(set_inuse16625,1022469 -#define clear_inuse(clear_inuse16626,1022509 -#define inuse_bit_at_offset(inuse_bit_at_offset16627,1022553 -#define set_inuse_bit_at_offset(set_inuse_bit_at_offset16628,1022613 -#define clear_inuse_bit_at_offset(clear_inuse_bit_at_offset16629,1022681 -#define set_head_size(set_head_size16630,1022753 -#define set_head(set_head16631,1022801 -#define set_foot(set_foot16632,1022839 -#define bin_at(bin_at16634,1022934 -#define next_bin(next_bin16635,1022968 -#define first(first16636,1023006 -#define last(last16637,1023038 -#define dl_unlink(dl_unlink16638,1023068 -#define NBINS NBINS16639,1023108 -#define NSMALLBINS NSMALLBINS16640,1023140 -#define SMALLBIN_WIDTH SMALLBIN_WIDTH16641,1023182 -#define MIN_LARGE_SIZE MIN_LARGE_SIZE16642,1023232 -#define in_smallbin_range(in_smallbin_range16643,1023282 -#define smallbin_index(smallbin_index16644,1023338 -#define BINMAPSHIFT BINMAPSHIFT16645,1023388 -#define BITSPERMAP BITSPERMAP16646,1023432 -#define BINMAPSIZE BINMAPSIZE16647,1023474 -#define MAX_FAST_SIZE MAX_FAST_SIZE16649,1023581 -#define fastbin_index(fastbin_index16650,1023629 -#define NFASTBINS NFASTBINS16651,1023677 -#define _FIELDS_H_ _FIELDS_H_16688,1025934 -#undef HMHM16689,1025970 -#undef HSPACEHSPACE16690,1025988 -#undef HSPACENHSPACEN16691,1026014 -#undef HIHI16692,1026042 -#undef H_RH_R16693,1026060 -#undef HLOCKHLOCK16694,1026080 -#undef HRWLOCKHRWLOCK16695,1026106 -#undef HMOPCODEHMOPCODE16696,1026136 -#undef HPROCHPROC16697,1026168 -#undef HATOMTHATOMT16698,1026194 -#undef HAROPHAROP16699,1026222 -#undef HFOPHFOP16700,1026248 -#undef HYOPHYOP16701,1026272 -#undef HENVYOPHENVYOP16702,1026296 -#undef HCPYOPHCPYOP16703,1026326 -#define HM(HM16704,1026354 -#define HSPACE(HSPACE16705,1026376 -#define HSPACEN(HSPACEN16706,1026406 -#define HI(HI16707,1026438 -#define H_R(H_R16708,1026460 -#define HLOCK(HLOCK16709,1026484 -#define HRWLOCK(HRWLOCK16710,1026512 -#define HMOPCODE(HMOPCODE16711,1026544 -#define HPROC(HPROC16712,1026578 -#define HPROCN(HPROCN16713,1026606 -#define HATOMT(HATOMT16714,1026636 -#define HAROP(HAROP16715,1026666 -#define HFOP(HFOP16716,1026694 -#define HYOP(HYOP16717,1026721 -#define HENVYOP(HENVYOP16718,1026748 -#define HCPYOP(HCPYOP16719,1026781 -#undef HMHM16720,1026812 -#undef HSPACEHSPACE16721,1026833 -#undef HSPACENHSPACEN16722,1026862 -#undef HIHI16723,1026893 -#undef H_RH_R16724,1026914 -#undef HLOCKHLOCK16725,1026937 -#undef HRWLOCKHRWLOCK16726,1026964 -#undef HMOPCODEHMOPCODE16727,1026995 -#undef HPROCHPROC16728,1027028 -#undef HATOMTHATOMT16729,1027055 -#undef HAROPHAROP16730,1027084 -#undef HFOPHFOP16731,1027111 -#undef HYOPHYOP16732,1027136 -#undef HENVYOPHENVYOP16733,1027161 -#undef HCPYOPHCPYOP16734,1027192 -#define HM(HM16735,1027221 -#define HSPACE(HSPACE16736,1027244 -#define HSPACEN(HSPACEN16737,1027275 -#define HI(HI16738,1027308 -#define H_R(H_R16739,1027331 -#define HLOCK(HLOCK16740,1027356 -#define HRWLOCK(HRWLOCK16741,1027385 -#define HMOPCODE(HMOPCODE16742,1027418 -#define HPROC(HPROC16743,1027453 -#define HPROCN(HPROCN16744,1027482 -#define HATOMT(HATOMT16745,1027513 -#define HAROP(HAROP16746,1027544 -#define HFOP(HFOP16747,1027573 -#define HYOP(HYOP16748,1027600 -#define HENVYOP(HENVYOP16749,1027627 -#define HCPYOP(HCPYOP16750,1027660 -#undef LOCLOC16751,1027691 -#undef LOCLLOCL16752,1027714 -#undef LOCNLOCN16753,1027739 -#undef LOCLRLOCLR16754,1027764 -#define LOC(LOC16755,1027791 -#define LOCL(LOCL16756,1027816 -#define LOCN(LOCN16757,1027843 -#define LOCLR(LOCLR16758,1027870 -#undef LOCLOC16759,1027899 -#undef LOCLLOCL16760,1027922 -#undef LOCLRLOCLR16761,1027947 -#undef LOCNLOCN16762,1027974 -#define LOC(LOC16763,1027999 -#define LOCL(LOCL16764,1028024 -#define LOCN(LOCN16765,1028051 -#define LOCLR(LOCLR16766,1028078 -#define NO_DYN NO_DYN16771,1028145 -#define FOREIGN_HFOREIGN_H16772,1028175 -#undef NO_DYNNO_DYN16773,1028210 -#define LOAD_DL LOAD_DL16774,1028239 -#undef NO_DYNNO_DYN16775,1028272 -#undef NO_DYNNO_DYN16776,1028301 -#define A_OUT A_OUT16777,1028330 -#define NO_DYN NO_DYN16778,1028359 -#define LOAD_DL LOAD_DL16779,1028390 -#undef NO_DYNNO_DYN16780,1028423 -#define LOAD_DLL LOAD_DLL16781,1028452 -#undef LOAD_DLLOAD_DL16782,1028487 -#undef NO_DYNNO_DYN16783,1028518 -#define LOAD_SHL LOAD_SHL16784,1028547 -#undef NO_DYNNO_DYN16785,1028582 -#define LOAD_DYLD LOAD_DYLD16786,1028611 -#define LOAD_SUCCEEDED LOAD_SUCCEEDED16787,1028648 -#define LOAD_FAILLED LOAD_FAILLED16788,1028695 -#define EAGER_LOADING EAGER_LOADING16811,1029718 -#define GLOBAL_LOADING GLOBAL_LOADING16812,1029764 -#define GLOBAL_Initialised GLOBAL_Initialised16815,1029842 -#define GLOBAL_InitialisedFromPL GLOBAL_InitialisedFromPL16816,1029896 -#define GLOBAL_PL_Argc GLOBAL_PL_Argc16817,1029962 -#define GLOBAL_PL_Argv GLOBAL_PL_Argv16818,1030008 -#define GLOBAL_FAST_BOOT_FLAG GLOBAL_FAST_BOOT_FLAG16819,1030054 -#define GLOBAL_HaltHooks GLOBAL_HaltHooks16820,1030114 -#define GLOBAL_JIT_finalizer GLOBAL_JIT_finalizer16821,1030164 -#define GLOBAL_AllowLocalExpansion GLOBAL_AllowLocalExpansion16822,1030222 -#define GLOBAL_AllowGlobalExpansion GLOBAL_AllowGlobalExpansion16823,1030292 -#define GLOBAL_AllowTrailExpansion GLOBAL_AllowTrailExpansion16824,1030364 -#define GLOBAL_SizeOfOverflow GLOBAL_SizeOfOverflow16825,1030434 -#define GLOBAL_AGcThreshold GLOBAL_AGcThreshold16826,1030494 -#define GLOBAL_AGCHook GLOBAL_AGCHook16827,1030550 -#define GLOBAL_NOfThreads GLOBAL_NOfThreads16828,1030596 -#define GLOBAL_NOfThreadsCreated GLOBAL_NOfThreadsCreated16829,1030648 -#define GLOBAL_ThreadsTotalTime GLOBAL_ThreadsTotalTime16830,1030714 -#define GLOBAL_ThreadHandlesLock GLOBAL_ThreadHandlesLock16831,1030779 -#define GLOBAL_BGL GLOBAL_BGL16832,1030846 -#define GLOBAL_optyap_data GLOBAL_optyap_data16833,1030885 -#define GLOBAL_PrologShouldHandleInterrupts GLOBAL_PrologShouldHandleInterrupts16834,1030940 -#define GLOBAL_master_thread GLOBAL_master_thread16835,1031029 -#define GLOBAL_named_mboxes GLOBAL_named_mboxes16836,1031088 -#define GLOBAL_mboxq_lock GLOBAL_mboxq_lock16837,1031145 -#define GLOBAL_mbox_count GLOBAL_mbox_count16838,1031198 -#define GLOBAL_WithMutex GLOBAL_WithMutex16839,1031251 -#define GLOBAL_Stream GLOBAL_Stream16840,1031302 -#define GLOBAL_StreamDescLock GLOBAL_StreamDescLock16841,1031347 -#define GLOBAL_argv GLOBAL_argv16842,1031408 -#define GLOBAL_argc GLOBAL_argc16843,1031449 -#define GLOBAL_attas GLOBAL_attas16844,1031490 -#define GLOBAL_agc_calls GLOBAL_agc_calls16845,1031533 -#define GLOBAL_agc_collected GLOBAL_agc_collected16846,1031584 -#define GLOBAL_tot_agc_time GLOBAL_tot_agc_time16847,1031643 -#define GLOBAL_tot_agc_recovered GLOBAL_tot_agc_recovered16848,1031700 -#define GLOBAL_mmap_arrays GLOBAL_mmap_arrays16849,1031767 -#define GLOBAL_Option GLOBAL_Option16850,1031822 -#define GLOBAL_logfile GLOBAL_logfile16851,1031867 -#define GLOBAL_Executable GLOBAL_Executable16852,1031914 -#define GLOBAL_OpaqueHandlersCount GLOBAL_OpaqueHandlersCount16853,1031968 -#define GLOBAL_OpaqueHandlers GLOBAL_OpaqueHandlers16854,1032040 -#define GLOBAL_pwd GLOBAL_pwd16855,1032102 -#define GLOBAL_RestoreFile GLOBAL_RestoreFile16856,1032142 -#define GLOBAL_ProfCalls GLOBAL_ProfCalls16857,1032198 -#define GLOBAL_ProfGCs GLOBAL_ProfGCs16858,1032250 -#define GLOBAL_ProfHGrows GLOBAL_ProfHGrows16859,1032298 -#define GLOBAL_ProfSGrows GLOBAL_ProfSGrows16860,1032352 -#define GLOBAL_ProfMallocs GLOBAL_ProfMallocs16861,1032406 -#define GLOBAL_ProfIndexing GLOBAL_ProfIndexing16862,1032462 -#define GLOBAL_ProfOn GLOBAL_ProfOn16863,1032520 -#define GLOBAL_ProfOns GLOBAL_ProfOns16864,1032566 -#define GLOBAL_ProfilerRoot GLOBAL_ProfilerRoot16865,1032614 -#define GLOBAL_ProfilerNil GLOBAL_ProfilerNil16866,1032672 -#define GLOBAL_DIRNAME GLOBAL_DIRNAME16867,1032728 -#define GLOBAL_ProfilerOn GLOBAL_ProfilerOn16868,1032776 -#define GLOBAL_FProf GLOBAL_FProf16869,1032830 -#define GLOBAL_FPreds GLOBAL_FPreds16870,1032874 -#define GLOBAL_FreeMutexes GLOBAL_FreeMutexes16871,1032920 -#define GLOBAL_mutex_backbone GLOBAL_mutex_backbone16872,1032976 -#define GLOBAL_MUT_ACCESS GLOBAL_MUT_ACCESS16873,1033038 -#define GLOBAL_Home GLOBAL_Home16874,1033092 -#define GLOBAL_CharConversionTable GLOBAL_CharConversionTable16875,1033134 -#define GLOBAL_CharConversionTable2 GLOBAL_CharConversionTable216876,1033206 -#define GLOBAL_MaxPriority GLOBAL_MaxPriority16877,1033280 -#define GLOBAL_FileAliases GLOBAL_FileAliases16878,1033336 -#define GLOBAL_NOfFileAliases GLOBAL_NOfFileAliases16879,1033392 -#define GLOBAL_SzOfFileAliases GLOBAL_SzOfFileAliases16880,1033454 -#define GLOBAL_VFS GLOBAL_VFS16881,1033518 -#define DLMallocLock DLMallocLock16884,1033588 -#define HeapUsed HeapUsed16885,1033630 -#define NotHeapUsed NotHeapUsed16886,1033665 -#define HeapUsed HeapUsed16887,1033705 -#define HeapMax HeapMax16888,1033739 -#define HeapTop HeapTop16889,1033771 -#define HeapLim HeapLim16890,1033803 -#define FreeBlocks FreeBlocks16891,1033835 -#define FreeBlocksLock FreeBlocksLock16892,1033873 -#define HeapUsedLock HeapUsedLock16893,1033919 -#define HeapTopLock HeapTopLock16894,1033961 -#define HeapTopOwner HeapTopOwner16895,1034001 -#define MaxStack MaxStack16896,1034043 -#define MaxTrail MaxTrail16897,1034077 -#define OP_RTABLE OP_RTABLE16898,1034111 -#define EXECUTE_CPRED_OP_CODE EXECUTE_CPRED_OP_CODE16899,1034148 -#define EXPAND_OP_CODE EXPAND_OP_CODE16900,1034209 -#define FAIL_OPCODE FAIL_OPCODE16901,1034256 -#define INDEX_OPCODE INDEX_OPCODE16902,1034297 -#define LOCKPRED_OPCODE LOCKPRED_OPCODE16903,1034340 -#define ORLAST_OPCODE ORLAST_OPCODE16904,1034389 -#define UNDEF_OPCODE UNDEF_OPCODE16905,1034434 -#define RETRY_USERC_OPCODE RETRY_USERC_OPCODE16906,1034477 -#define EXECUTE_CPRED_OPCODE EXECUTE_CPRED_OPCODE16907,1034532 -#define NOfAtoms NOfAtoms16908,1034591 -#define AtomHashTableSize AtomHashTableSize16909,1034626 -#define WideAtomHashTableSize WideAtomHashTableSize16910,1034679 -#define NOfWideAtoms NOfWideAtoms16911,1034740 -#define INVISIBLECHAIN INVISIBLECHAIN16912,1034783 -#define WideHashChain WideHashChain16913,1034830 -#define HashChain HashChain16914,1034875 -#define TermDollarU TermDollarU16915,1034912 -#define TermAnswer TermAnswer16916,1034953 -#define USER_MODULE USER_MODULE16917,1034992 -#define IDB_MODULE IDB_MODULE16918,1035033 -#define ATTRIBUTES_MODULE ATTRIBUTES_MODULE16919,1035072 -#define CHARSIO_MODULE CHARSIO_MODULE16920,1035125 -#define CHTYPE_MODULE CHTYPE_MODULE16921,1035172 -#define TERMS_MODULE TERMS_MODULE16922,1035217 -#define SYSTEM_MODULE SYSTEM_MODULE16923,1035260 -#define READUTIL_MODULE READUTIL_MODULE16924,1035305 -#define HACKS_MODULE HACKS_MODULE16925,1035354 -#define ARG_MODULE ARG_MODULE16926,1035397 -#define GLOBALS_MODULE GLOBALS_MODULE16927,1035436 -#define SWI_MODULE SWI_MODULE16928,1035483 -#define DBLOAD_MODULE DBLOAD_MODULE16929,1035522 -#define RANGE_MODULE RANGE_MODULE16930,1035568 -#define ERROR_MODULE ERROR_MODULE16931,1035612 -#define CurrentModules CurrentModules16932,1035656 -#define HIDDEN_PREDICATES HIDDEN_PREDICATES16933,1035704 -#define GLOBAL_Flags GLOBAL_Flags16934,1035758 -#define GLOBAL_flagCount GLOBAL_flagCount16935,1035802 -#define Yap_ExecutionMode Yap_ExecutionMode16936,1035854 -#define PredsInHashTable PredsInHashTable16937,1035908 -#define PredHashTableSize PredHashTableSize16938,1035960 -#define PredHash PredHash16939,1036014 -#define PredHashRWLock PredHashRWLock16940,1036050 -#define CreepCode CreepCode16941,1036098 -#define UndefCode UndefCode16942,1036136 -#define SpyCode SpyCode16943,1036174 -#define PredFail PredFail16944,1036208 -#define PredTrue PredTrue16945,1036244 -#define WakeUpCode WakeUpCode16946,1036280 -#define PredDollarCatch PredDollarCatch16947,1036320 -#define PredGetwork PredGetwork16948,1036370 -#define PredGoalExpansion PredGoalExpansion16949,1036412 -#define PredHandleThrow PredHandleThrow16950,1036466 -#define PredIs PredIs16951,1036516 -#define PredLogUpdClause PredLogUpdClause16952,1036548 -#define PredLogUpdClauseErase PredLogUpdClauseErase16953,1036600 -#define PredLogUpdClause0 PredLogUpdClause016954,1036662 -#define PredMetaCall PredMetaCall16955,1036716 -#define PredProtectStack PredProtectStack16956,1036760 -#define PredRecordedWithKey PredRecordedWithKey16957,1036812 -#define PredRestoreRegs PredRestoreRegs16958,1036870 -#define PredSafeCallCleanup PredSafeCallCleanup16959,1036920 -#define PredStaticClause PredStaticClause16960,1036978 -#define PredThrow PredThrow16961,1037030 -#define PredTraceMetaCall PredTraceMetaCall16962,1037068 -#define PredCommentHook PredCommentHook16963,1037122 -#define PredProcedure PredProcedure16964,1037172 -#define Yap_do_low_level_trace Yap_do_low_level_trace16965,1037218 -#define Yap_low_level_trace_lock Yap_low_level_trace_lock16966,1037282 -#define Yap_ClauseSpace Yap_ClauseSpace16967,1037350 -#define Yap_IndexSpace_Tree Yap_IndexSpace_Tree16968,1037400 -#define Yap_IndexSpace_EXT Yap_IndexSpace_EXT16969,1037458 -#define Yap_IndexSpace_SW Yap_IndexSpace_SW16970,1037514 -#define Yap_LUClauseSpace Yap_LUClauseSpace16971,1037568 -#define Yap_LUIndexSpace_Tree Yap_LUIndexSpace_Tree16972,1037622 -#define Yap_LUIndexSpace_CP Yap_LUIndexSpace_CP16973,1037684 -#define Yap_LUIndexSpace_EXT Yap_LUIndexSpace_EXT16974,1037742 -#define Yap_LUIndexSpace_SW Yap_LUIndexSpace_SW16975,1037802 -#define COMMA_CODE COMMA_CODE16976,1037860 -#define DUMMYCODE DUMMYCODE16977,1037900 -#define FAILCODE FAILCODE16978,1037938 -#define NOCODE NOCODE16979,1037974 -#define ENV_FOR_TRUSTFAIL ENV_FOR_TRUSTFAIL16980,1038006 -#define TRUSTFAILCODE TRUSTFAILCODE16981,1038060 -#define ENV_FOR_YESCODE ENV_FOR_YESCODE16982,1038106 -#define YESCODE YESCODE16983,1038156 -#define RTRYCODE RTRYCODE16984,1038190 -#define BEAM_RETRY_CODE BEAM_RETRY_CODE16985,1038226 -#define GETWORK GETWORK16986,1038276 -#define GETWORK_SEQ GETWORK_SEQ16987,1038310 -#define GETWORK_FIRST_TIME GETWORK_FIRST_TIME16988,1038352 -#define LOAD_ANSWER LOAD_ANSWER16989,1038408 -#define TRY_ANSWER TRY_ANSWER16990,1038450 -#define ANSWER_RESOLUTION ANSWER_RESOLUTION16991,1038490 -#define COMPLETION COMPLETION16992,1038544 -#define ANSWER_RESOLUTION_COMPLETION ANSWER_RESOLUTION_COMPLETION16993,1038584 -#define P_before_spy P_before_spy16994,1038660 -#define RETRY_C_RECORDEDP_CODE RETRY_C_RECORDEDP_CODE16995,1038704 -#define RETRY_C_RECORDED_K_CODE RETRY_C_RECORDED_K_CODE16996,1038768 -#define PROFILING PROFILING16997,1038834 -#define CALL_COUNTING CALL_COUNTING16998,1038872 -#define optimizer_on optimizer_on16999,1038918 -#define compile_mode compile_mode17000,1038962 -#define profiling profiling17001,1039006 -#define call_counting call_counting17002,1039044 -#define compile_arrays compile_arrays17003,1039090 -#define DBTermsListLock DBTermsListLock17004,1039138 -#define DBTermsList DBTermsList17005,1039188 -#define ExpandClausesFirst ExpandClausesFirst17006,1039230 -#define ExpandClausesLast ExpandClausesLast17007,1039286 -#define Yap_ExpandClauses Yap_ExpandClauses17008,1039340 -#define ExpandClausesListLock ExpandClausesListLock17009,1039394 -#define OpListLock OpListLock17010,1039456 -#define Yap_NewCps Yap_NewCps17011,1039496 -#define Yap_LiveCps Yap_LiveCps17012,1039536 -#define Yap_DirtyCps Yap_DirtyCps17013,1039578 -#define Yap_FreedCps Yap_FreedCps17014,1039622 -#define Yap_expand_clauses_sz Yap_expand_clauses_sz17015,1039666 -#define UdiControlBlocks UdiControlBlocks17016,1039728 -#define STATIC_PREDICATES_MARKED STATIC_PREDICATES_MARKED17017,1039780 -#define INT_KEYS INT_KEYS17018,1039848 -#define INT_LU_KEYS INT_LU_KEYS17019,1039884 -#define INT_BB_KEYS INT_BB_KEYS17020,1039926 -#define INT_KEYS_SIZE INT_KEYS_SIZE17021,1039968 -#define INT_KEYS_TIMESTAMP INT_KEYS_TIMESTAMP17022,1040014 -#define INT_BB_KEYS_SIZE INT_BB_KEYS_SIZE17023,1040070 -#define UPDATE_MODE UPDATE_MODE17024,1040122 -#define DBErasedMarker DBErasedMarker17025,1040164 -#define LogDBErasedMarker LogDBErasedMarker17026,1040212 -#define DeadStaticClauses DeadStaticClauses17027,1040266 -#define DeadMegaClauses DeadMegaClauses17028,1040320 -#define DeadStaticIndices DeadStaticIndices17029,1040370 -#define DBErasedList DBErasedList17030,1040424 -#define DBErasedIList DBErasedIList17031,1040468 -#define DeadStaticClausesLock DeadStaticClausesLock17032,1040514 -#define DeadMegaClausesLock DeadMegaClausesLock17033,1040576 -#define DeadStaticIndicesLock DeadStaticIndicesLock17034,1040634 -#define NUM_OF_ATTS NUM_OF_ATTS17035,1040696 -#define Yap_AttsSize Yap_AttsSize17036,1040738 -#define OpList OpList17037,1040782 -#define ForeignCodeLoaded ForeignCodeLoaded17038,1040814 -#define ForeignCodeBase ForeignCodeBase17039,1040868 -#define ForeignCodeTop ForeignCodeTop17040,1040918 -#define ForeignCodeMax ForeignCodeMax17041,1040966 -#define Yap_Records Yap_Records17042,1041014 -#define EmptyWakeups EmptyWakeups17043,1041056 -#define MaxEmptyWakeups MaxEmptyWakeups17044,1041100 -#define BlobTypes BlobTypes17045,1041150 -#define Blobs Blobs17046,1041188 -#define NOfBlobs NOfBlobs17047,1041218 -#define NOfBlobsMax NOfBlobsMax17048,1041254 -#define Blobs_Lock Blobs_Lock17049,1041296 -#define LOCAL_c_input_stream LOCAL_c_input_stream17052,1041366 -#define REMOTE_c_input_stream(REMOTE_c_input_stream17053,1041423 -#define LOCAL_c_output_stream LOCAL_c_output_stream17054,1041482 -#define REMOTE_c_output_stream(REMOTE_c_output_stream17055,1041542 -#define LOCAL_c_error_stream LOCAL_c_error_stream17056,1041604 -#define REMOTE_c_error_stream(REMOTE_c_error_stream17057,1041662 -#define LOCAL_sockets_io LOCAL_sockets_io17058,1041722 -#define REMOTE_sockets_io(REMOTE_sockets_io17059,1041772 -#define LOCAL_within_print_message LOCAL_within_print_message17060,1041824 -#define REMOTE_within_print_message(REMOTE_within_print_message17061,1041894 -#define LOCAL_newline LOCAL_newline17062,1041966 -#define REMOTE_newline(REMOTE_newline17063,1042010 -#define LOCAL_AtPrompt LOCAL_AtPrompt17064,1042056 -#define REMOTE_AtPrompt(REMOTE_AtPrompt17065,1042102 -#define LOCAL_Prompt LOCAL_Prompt17066,1042150 -#define REMOTE_Prompt(REMOTE_Prompt17067,1042192 -#define LOCAL_encoding LOCAL_encoding17068,1042236 -#define REMOTE_encoding(REMOTE_encoding17069,1042283 -#define LOCAL_quasi_quotations LOCAL_quasi_quotations17070,1042332 -#define REMOTE_quasi_quotations(REMOTE_quasi_quotations17071,1042395 -#define LOCAL_default_priority LOCAL_default_priority17072,1042460 -#define REMOTE_default_priority(REMOTE_default_priority17073,1042523 -#define LOCAL_eot_before_eof LOCAL_eot_before_eof17074,1042588 -#define REMOTE_eot_before_eof(REMOTE_eot_before_eof17075,1042647 -#define LOCAL_max_depth LOCAL_max_depth17076,1042708 -#define REMOTE_max_depth(REMOTE_max_depth17077,1042757 -#define LOCAL_max_list LOCAL_max_list17078,1042808 -#define REMOTE_max_list(REMOTE_max_list17079,1042855 -#define LOCAL_max_write_args LOCAL_max_write_args17080,1042904 -#define REMOTE_max_write_args(REMOTE_max_write_args17081,1042963 -#define LOCAL_OldASP LOCAL_OldASP17082,1043024 -#define REMOTE_OldASP(REMOTE_OldASP17083,1043067 -#define LOCAL_OldLCL0 LOCAL_OldLCL017084,1043112 -#define REMOTE_OldLCL0(REMOTE_OldLCL017085,1043157 -#define LOCAL_OldTR LOCAL_OldTR17086,1043204 -#define REMOTE_OldTR(REMOTE_OldTR17087,1043245 -#define LOCAL_OldGlobalBase LOCAL_OldGlobalBase17088,1043288 -#define REMOTE_OldGlobalBase(REMOTE_OldGlobalBase17089,1043345 -#define LOCAL_OldH LOCAL_OldH17090,1043404 -#define REMOTE_OldH(REMOTE_OldH17091,1043443 -#define LOCAL_OldH0 LOCAL_OldH017092,1043484 -#define REMOTE_OldH0(REMOTE_OldH017093,1043525 -#define LOCAL_OldTrailBase LOCAL_OldTrailBase17094,1043568 -#define REMOTE_OldTrailBase(REMOTE_OldTrailBase17095,1043623 -#define LOCAL_OldTrailTop LOCAL_OldTrailTop17096,1043680 -#define REMOTE_OldTrailTop(REMOTE_OldTrailTop17097,1043733 -#define LOCAL_OldHeapBase LOCAL_OldHeapBase17098,1043788 -#define REMOTE_OldHeapBase(REMOTE_OldHeapBase17099,1043841 -#define LOCAL_OldHeapTop LOCAL_OldHeapTop17100,1043896 -#define REMOTE_OldHeapTop(REMOTE_OldHeapTop17101,1043947 -#define LOCAL_ClDiff LOCAL_ClDiff17102,1044000 -#define REMOTE_ClDiff(REMOTE_ClDiff17103,1044043 -#define LOCAL_GDiff LOCAL_GDiff17104,1044088 -#define REMOTE_GDiff(REMOTE_GDiff17105,1044129 -#define LOCAL_HDiff LOCAL_HDiff17106,1044172 -#define REMOTE_HDiff(REMOTE_HDiff17107,1044213 -#define LOCAL_GDiff0 LOCAL_GDiff017108,1044256 -#define REMOTE_GDiff0(REMOTE_GDiff017109,1044299 -#define LOCAL_GSplit LOCAL_GSplit17110,1044344 -#define REMOTE_GSplit(REMOTE_GSplit17111,1044387 -#define LOCAL_LDiff LOCAL_LDiff17112,1044432 -#define REMOTE_LDiff(REMOTE_LDiff17113,1044473 -#define LOCAL_TrDiff LOCAL_TrDiff17114,1044516 -#define REMOTE_TrDiff(REMOTE_TrDiff17115,1044559 -#define LOCAL_XDiff LOCAL_XDiff17116,1044604 -#define REMOTE_XDiff(REMOTE_XDiff17117,1044645 -#define LOCAL_DelayDiff LOCAL_DelayDiff17118,1044688 -#define REMOTE_DelayDiff(REMOTE_DelayDiff17119,1044737 -#define LOCAL_BaseDiff LOCAL_BaseDiff17120,1044788 -#define REMOTE_BaseDiff(REMOTE_BaseDiff17121,1044835 -#define LOCAL_ReductionsCounter LOCAL_ReductionsCounter17122,1044884 -#define REMOTE_ReductionsCounter(REMOTE_ReductionsCounter17123,1044949 -#define LOCAL_PredEntriesCounter LOCAL_PredEntriesCounter17124,1045016 -#define REMOTE_PredEntriesCounter(REMOTE_PredEntriesCounter17125,1045083 -#define LOCAL_RetriesCounter LOCAL_RetriesCounter17126,1045152 -#define REMOTE_RetriesCounter(REMOTE_RetriesCounter17127,1045211 -#define LOCAL_ReductionsCounterOn LOCAL_ReductionsCounterOn17128,1045272 -#define REMOTE_ReductionsCounterOn(REMOTE_ReductionsCounterOn17129,1045341 -#define LOCAL_PredEntriesCounterOn LOCAL_PredEntriesCounterOn17130,1045412 -#define REMOTE_PredEntriesCounterOn(REMOTE_PredEntriesCounterOn17131,1045483 -#define LOCAL_RetriesCounterOn LOCAL_RetriesCounterOn17132,1045556 -#define REMOTE_RetriesCounterOn(REMOTE_RetriesCounterOn17133,1045619 -#define LOCAL_ConsultSp LOCAL_ConsultSp17134,1045684 -#define REMOTE_ConsultSp(REMOTE_ConsultSp17135,1045733 -#define LOCAL_ConsultCapacity LOCAL_ConsultCapacity17136,1045784 -#define REMOTE_ConsultCapacity(REMOTE_ConsultCapacity17137,1045846 -#define LOCAL_ConsultBase LOCAL_ConsultBase17138,1045910 -#define REMOTE_ConsultBase(REMOTE_ConsultBase17139,1045964 -#define LOCAL_ConsultLow LOCAL_ConsultLow17140,1046020 -#define REMOTE_ConsultLow(REMOTE_ConsultLow17141,1046072 -#define LOCAL_VarNames LOCAL_VarNames17142,1046126 -#define REMOTE_VarNames(REMOTE_VarNames17143,1046174 -#define LOCAL_SourceFileName LOCAL_SourceFileName17144,1046224 -#define REMOTE_SourceFileName(REMOTE_SourceFileName17145,1046284 -#define LOCAL_SourceFileLineno LOCAL_SourceFileLineno17146,1046346 -#define REMOTE_SourceFileLineno(REMOTE_SourceFileLineno17147,1046410 -#define LOCAL_GlobalArena LOCAL_GlobalArena17148,1046476 -#define REMOTE_GlobalArena(REMOTE_GlobalArena17149,1046530 -#define LOCAL_GlobalArenaOverflows LOCAL_GlobalArenaOverflows17150,1046586 -#define REMOTE_GlobalArenaOverflows(REMOTE_GlobalArenaOverflows17151,1046658 -#define LOCAL_ArenaOverflows LOCAL_ArenaOverflows17152,1046732 -#define REMOTE_ArenaOverflows(REMOTE_ArenaOverflows17153,1046792 -#define LOCAL_DepthArenas LOCAL_DepthArenas17154,1046854 -#define REMOTE_DepthArenas(REMOTE_DepthArenas17155,1046908 -#define LOCAL_LastAssertedPred LOCAL_LastAssertedPred17156,1046964 -#define REMOTE_LastAssertedPred(REMOTE_LastAssertedPred17157,1047028 -#define LOCAL_TmpPred LOCAL_TmpPred17158,1047094 -#define REMOTE_TmpPred(REMOTE_TmpPred17159,1047140 -#define LOCAL_ScannerStack LOCAL_ScannerStack17160,1047188 -#define REMOTE_ScannerStack(REMOTE_ScannerStack17161,1047244 -#define LOCAL_ScannerExtraBlocks LOCAL_ScannerExtraBlocks17162,1047302 -#define REMOTE_ScannerExtraBlocks(REMOTE_ScannerExtraBlocks17163,1047370 -#define LOCAL_CBorder LOCAL_CBorder17164,1047440 -#define REMOTE_CBorder(REMOTE_CBorder17165,1047486 -#define LOCAL_MaxActiveSignals LOCAL_MaxActiveSignals17166,1047534 -#define REMOTE_MaxActiveSignals(REMOTE_MaxActiveSignals17167,1047598 -#define LOCAL_Signals LOCAL_Signals17168,1047664 -#define REMOTE_Signals(REMOTE_Signals17169,1047710 -#define LOCAL_IPredArity LOCAL_IPredArity17170,1047758 -#define REMOTE_IPredArity(REMOTE_IPredArity17171,1047810 -#define LOCAL_ProfEnd LOCAL_ProfEnd17172,1047864 -#define REMOTE_ProfEnd(REMOTE_ProfEnd17173,1047910 -#define LOCAL_DoingUndefp LOCAL_DoingUndefp17174,1047958 -#define REMOTE_DoingUndefp(REMOTE_DoingUndefp17175,1048012 -#define LOCAL_StartCharCount LOCAL_StartCharCount17176,1048068 -#define REMOTE_StartCharCount(REMOTE_StartCharCount17177,1048128 -#define LOCAL_StartLineCount LOCAL_StartLineCount17178,1048190 -#define REMOTE_StartLineCount(REMOTE_StartLineCount17179,1048250 -#define LOCAL_StartLinePos LOCAL_StartLinePos17180,1048312 -#define REMOTE_StartLinePos(REMOTE_StartLinePos17181,1048368 -#define LOCAL_ScratchPad LOCAL_ScratchPad17182,1048426 -#define REMOTE_ScratchPad(REMOTE_ScratchPad17183,1048478 -#define LOCAL_WokenGoals LOCAL_WokenGoals17184,1048532 -#define REMOTE_WokenGoals(REMOTE_WokenGoals17185,1048584 -#define LOCAL_AttsMutableList LOCAL_AttsMutableList17186,1048638 -#define REMOTE_AttsMutableList(REMOTE_AttsMutableList17187,1048700 -#define LOCAL_GcGeneration LOCAL_GcGeneration17188,1048764 -#define REMOTE_GcGeneration(REMOTE_GcGeneration17189,1048820 -#define LOCAL_GcPhase LOCAL_GcPhase17190,1048878 -#define REMOTE_GcPhase(REMOTE_GcPhase17191,1048924 -#define LOCAL_GcCurrentPhase LOCAL_GcCurrentPhase17192,1048972 -#define REMOTE_GcCurrentPhase(REMOTE_GcCurrentPhase17193,1049032 -#define LOCAL_GcCalls LOCAL_GcCalls17194,1049094 -#define REMOTE_GcCalls(REMOTE_GcCalls17195,1049140 -#define LOCAL_TotGcTime LOCAL_TotGcTime17196,1049188 -#define REMOTE_TotGcTime(REMOTE_TotGcTime17197,1049238 -#define LOCAL_TotGcRecovered LOCAL_TotGcRecovered17198,1049290 -#define REMOTE_TotGcRecovered(REMOTE_TotGcRecovered17199,1049350 -#define LOCAL_LastGcTime LOCAL_LastGcTime17200,1049412 -#define REMOTE_LastGcTime(REMOTE_LastGcTime17201,1049464 -#define LOCAL_LastSSTime LOCAL_LastSSTime17202,1049518 -#define REMOTE_LastSSTime(REMOTE_LastSSTime17203,1049570 -#define LOCAL_OpenArray LOCAL_OpenArray17204,1049624 -#define REMOTE_OpenArray(REMOTE_OpenArray17205,1049674 -#define LOCAL_total_marked LOCAL_total_marked17206,1049726 -#define REMOTE_total_marked(REMOTE_total_marked17207,1049782 -#define LOCAL_total_oldies LOCAL_total_oldies17208,1049840 -#define REMOTE_total_oldies(REMOTE_total_oldies17209,1049896 -#define LOCAL_current_B LOCAL_current_B17210,1049954 -#define REMOTE_current_B(REMOTE_current_B17211,1050004 -#define LOCAL_prev_HB LOCAL_prev_HB17212,1050056 -#define REMOTE_prev_HB(REMOTE_prev_HB17213,1050102 -#define LOCAL_HGEN LOCAL_HGEN17214,1050150 -#define REMOTE_HGEN(REMOTE_HGEN17215,1050190 -#define LOCAL_iptop LOCAL_iptop17216,1050232 -#define REMOTE_iptop(REMOTE_iptop17217,1050274 -#define LOCAL_bp LOCAL_bp17218,1050318 -#define REMOTE_bp(REMOTE_bp17219,1050354 -#define LOCAL_sTR LOCAL_sTR17220,1050392 -#define REMOTE_sTR(REMOTE_sTR17221,1050430 -#define LOCAL_sTR0 LOCAL_sTR017222,1050470 -#define REMOTE_sTR0(REMOTE_sTR017223,1050510 -#define LOCAL_new_TR LOCAL_new_TR17224,1050552 -#define REMOTE_new_TR(REMOTE_new_TR17225,1050596 -#define LOCAL_cont_top0 LOCAL_cont_top017226,1050642 -#define REMOTE_cont_top0(REMOTE_cont_top017227,1050692 -#define LOCAL_cont_top LOCAL_cont_top17228,1050744 -#define REMOTE_cont_top(REMOTE_cont_top17229,1050792 -#define LOCAL_discard_trail_entries LOCAL_discard_trail_entries17230,1050842 -#define REMOTE_discard_trail_entries(REMOTE_discard_trail_entries17231,1050916 -#define LOCAL_gc_ma_hash_table LOCAL_gc_ma_hash_table17232,1050992 -#define REMOTE_gc_ma_hash_table(REMOTE_gc_ma_hash_table17233,1051056 -#define LOCAL_gc_ma_h_top LOCAL_gc_ma_h_top17234,1051122 -#define REMOTE_gc_ma_h_top(REMOTE_gc_ma_h_top17235,1051176 -#define LOCAL_gc_ma_h_list LOCAL_gc_ma_h_list17236,1051232 -#define REMOTE_gc_ma_h_list(REMOTE_gc_ma_h_list17237,1051288 -#define LOCAL_gc_timestamp LOCAL_gc_timestamp17238,1051346 -#define REMOTE_gc_timestamp(REMOTE_gc_timestamp17239,1051402 -#define LOCAL_db_vec LOCAL_db_vec17240,1051460 -#define REMOTE_db_vec(REMOTE_db_vec17241,1051504 -#define LOCAL_db_vec0 LOCAL_db_vec017242,1051550 -#define REMOTE_db_vec0(REMOTE_db_vec017243,1051596 -#define LOCAL_db_root LOCAL_db_root17244,1051644 -#define REMOTE_db_root(REMOTE_db_root17245,1051691 -#define LOCAL_db_nil LOCAL_db_nil17246,1051740 -#define REMOTE_db_nil(REMOTE_db_nil17247,1051785 -#define LOCAL_gc_restore LOCAL_gc_restore17248,1051832 -#define REMOTE_gc_restore(REMOTE_gc_restore17249,1051885 -#define LOCAL_extra_gc_cells LOCAL_extra_gc_cells17250,1051940 -#define REMOTE_extra_gc_cells(REMOTE_extra_gc_cells17251,1052001 -#define LOCAL_extra_gc_cells_base LOCAL_extra_gc_cells_base17252,1052064 -#define REMOTE_extra_gc_cells_base(REMOTE_extra_gc_cells_base17253,1052135 -#define LOCAL_extra_gc_cells_top LOCAL_extra_gc_cells_top17254,1052208 -#define REMOTE_extra_gc_cells_top(REMOTE_extra_gc_cells_top17255,1052277 -#define LOCAL_extra_gc_cells_size LOCAL_extra_gc_cells_size17256,1052348 -#define REMOTE_extra_gc_cells_size(REMOTE_extra_gc_cells_size17257,1052419 -#define LOCAL_DynamicArrays LOCAL_DynamicArrays17258,1052492 -#define REMOTE_DynamicArrays(REMOTE_DynamicArrays17259,1052551 -#define LOCAL_StaticArrays LOCAL_StaticArrays17260,1052612 -#define REMOTE_StaticArrays(REMOTE_StaticArrays17261,1052669 -#define LOCAL_GlobalVariables LOCAL_GlobalVariables17262,1052728 -#define REMOTE_GlobalVariables(REMOTE_GlobalVariables17263,1052791 -#define LOCAL_AllowRestart LOCAL_AllowRestart17264,1052856 -#define REMOTE_AllowRestart(REMOTE_AllowRestart17265,1052913 -#define LOCAL_CMemFirstBlock LOCAL_CMemFirstBlock17266,1052972 -#define REMOTE_CMemFirstBlock(REMOTE_CMemFirstBlock17267,1053033 -#define LOCAL_CMemFirstBlockSz LOCAL_CMemFirstBlockSz17268,1053096 -#define REMOTE_CMemFirstBlockSz(REMOTE_CMemFirstBlockSz17269,1053161 -#define LOCAL_nperm LOCAL_nperm17270,1053228 -#define REMOTE_nperm(REMOTE_nperm17271,1053271 -#define LOCAL_jMP LOCAL_jMP17272,1053316 -#define REMOTE_jMP(REMOTE_jMP17273,1053355 -#define LOCAL_LabelFirstArray LOCAL_LabelFirstArray17274,1053396 -#define REMOTE_LabelFirstArray(REMOTE_LabelFirstArray17275,1053459 -#define LOCAL_LabelFirstArraySz LOCAL_LabelFirstArraySz17276,1053524 -#define REMOTE_LabelFirstArraySz(REMOTE_LabelFirstArraySz17277,1053591 -#define LOCAL_ThreadHandle LOCAL_ThreadHandle17278,1053660 -#define REMOTE_ThreadHandle(REMOTE_ThreadHandle17279,1053717 -#define LOCAL_optyap_data LOCAL_optyap_data17280,1053776 -#define REMOTE_optyap_data(REMOTE_optyap_data17281,1053831 -#define LOCAL_TabMode LOCAL_TabMode17282,1053888 -#define REMOTE_TabMode(REMOTE_TabMode17283,1053935 -#define LOCAL_InterruptsDisabled LOCAL_InterruptsDisabled17284,1053984 -#define REMOTE_InterruptsDisabled(REMOTE_InterruptsDisabled17285,1054053 -#define LOCAL_execution LOCAL_execution17286,1054124 -#define REMOTE_execution(REMOTE_execution17287,1054175 -#define LOCAL_total_choicepoints LOCAL_total_choicepoints17288,1054228 -#define REMOTE_total_choicepoints(REMOTE_total_choicepoints17289,1054297 -#define LOCAL_consult_level LOCAL_consult_level17290,1054368 -#define REMOTE_consult_level(REMOTE_consult_level17291,1054427 -#define LOCAL_LocalBase LOCAL_LocalBase17292,1054488 -#define REMOTE_LocalBase(REMOTE_LocalBase17293,1054539 -#define LOCAL_GlobalBase LOCAL_GlobalBase17294,1054592 -#define REMOTE_GlobalBase(REMOTE_GlobalBase17295,1054645 -#define LOCAL_TrailBase LOCAL_TrailBase17296,1054700 -#define REMOTE_TrailBase(REMOTE_TrailBase17297,1054751 -#define LOCAL_TrailTop LOCAL_TrailTop17298,1054804 -#define REMOTE_TrailTop(REMOTE_TrailTop17299,1054853 -#define LOCAL_ActiveError LOCAL_ActiveError17300,1054904 -#define REMOTE_ActiveError(REMOTE_ActiveError17301,1054959 -#define LOCAL_IOBotch LOCAL_IOBotch17302,1055016 -#define REMOTE_IOBotch(REMOTE_IOBotch17303,1055063 -#define LOCAL_tokptr LOCAL_tokptr17304,1055112 -#define REMOTE_tokptr(REMOTE_tokptr17305,1055157 -#define LOCAL_toktide LOCAL_toktide17306,1055204 -#define REMOTE_toktide(REMOTE_toktide17307,1055251 -#define LOCAL_VarTable LOCAL_VarTable17308,1055300 -#define REMOTE_VarTable(REMOTE_VarTable17309,1055349 -#define LOCAL_AnonVarTable LOCAL_AnonVarTable17310,1055400 -#define REMOTE_AnonVarTable(REMOTE_AnonVarTable17311,1055457 -#define LOCAL_Comments LOCAL_Comments17312,1055516 -#define REMOTE_Comments(REMOTE_Comments17313,1055565 -#define LOCAL_CommentsTail LOCAL_CommentsTail17314,1055616 -#define REMOTE_CommentsTail(REMOTE_CommentsTail17315,1055673 -#define LOCAL_CommentsNextChar LOCAL_CommentsNextChar17316,1055732 -#define REMOTE_CommentsNextChar(REMOTE_CommentsNextChar17317,1055797 -#define LOCAL_CommentsBuff LOCAL_CommentsBuff17318,1055864 -#define REMOTE_CommentsBuff(REMOTE_CommentsBuff17319,1055921 -#define LOCAL_CommentsBuffPos LOCAL_CommentsBuffPos17320,1055980 -#define REMOTE_CommentsBuffPos(REMOTE_CommentsBuffPos17321,1056043 -#define LOCAL_CommentsBuffLim LOCAL_CommentsBuffLim17322,1056108 -#define REMOTE_CommentsBuffLim(REMOTE_CommentsBuffLim17323,1056171 -#define LOCAL_RestartEnv LOCAL_RestartEnv17324,1056236 -#define REMOTE_RestartEnv(REMOTE_RestartEnv17325,1056289 -#define LOCAL_FileNameBuf LOCAL_FileNameBuf17326,1056344 -#define REMOTE_FileNameBuf(REMOTE_FileNameBuf17327,1056399 -#define LOCAL_FileNameBuf2 LOCAL_FileNameBuf217328,1056456 -#define REMOTE_FileNameBuf2(REMOTE_FileNameBuf217329,1056513 -#define LOCAL_TextBuffer LOCAL_TextBuffer17330,1056572 -#define REMOTE_TextBuffer(REMOTE_TextBuffer17331,1056625 -#define LOCAL_BreakLevel LOCAL_BreakLevel17332,1056680 -#define REMOTE_BreakLevel(REMOTE_BreakLevel17333,1056733 -#define LOCAL_PrologMode LOCAL_PrologMode17334,1056788 -#define REMOTE_PrologMode(REMOTE_PrologMode17335,1056841 -#define LOCAL_CritLocks LOCAL_CritLocks17336,1056896 -#define REMOTE_CritLocks(REMOTE_CritLocks17337,1056947 -#define LOCAL_Flags LOCAL_Flags17338,1057000 -#define REMOTE_Flags(REMOTE_Flags17339,1057043 -#define LOCAL_flagCount LOCAL_flagCount17340,1057088 -#define REMOTE_flagCount(REMOTE_flagCount17341,1057139 -#define LOCAL_opcount LOCAL_opcount17342,1057192 -#define REMOTE_opcount(REMOTE_opcount17343,1057239 -#define LOCAL_2opcount LOCAL_2opcount17344,1057288 -#define REMOTE_2opcount(REMOTE_2opcount17345,1057337 -#define LOCAL_s_dbg LOCAL_s_dbg17346,1057388 -#define REMOTE_s_dbg(REMOTE_s_dbg17347,1057431 -#define LOCAL_mathtt LOCAL_mathtt17348,1057476 -#define REMOTE_mathtt(REMOTE_mathtt17349,1057521 -#define LOCAL_mathstring LOCAL_mathstring17350,1057568 -#define REMOTE_mathstring(REMOTE_mathstring17351,1057621 -#define LOCAL_heap_overflows LOCAL_heap_overflows17352,1057676 -#define REMOTE_heap_overflows(REMOTE_heap_overflows17353,1057737 -#define LOCAL_total_heap_overflow_time LOCAL_total_heap_overflow_time17354,1057800 -#define REMOTE_total_heap_overflow_time(REMOTE_total_heap_overflow_time17355,1057881 -#define LOCAL_stack_overflows LOCAL_stack_overflows17356,1057964 -#define REMOTE_stack_overflows(REMOTE_stack_overflows17357,1058027 -#define LOCAL_total_stack_overflow_time LOCAL_total_stack_overflow_time17358,1058092 -#define REMOTE_total_stack_overflow_time(REMOTE_total_stack_overflow_time17359,1058175 -#define LOCAL_delay_overflows LOCAL_delay_overflows17360,1058260 -#define REMOTE_delay_overflows(REMOTE_delay_overflows17361,1058323 -#define LOCAL_total_delay_overflow_time LOCAL_total_delay_overflow_time17362,1058388 -#define REMOTE_total_delay_overflow_time(REMOTE_total_delay_overflow_time17363,1058471 -#define LOCAL_trail_overflows LOCAL_trail_overflows17364,1058556 -#define REMOTE_trail_overflows(REMOTE_trail_overflows17365,1058619 -#define LOCAL_total_trail_overflow_time LOCAL_total_trail_overflow_time17366,1058684 -#define REMOTE_total_trail_overflow_time(REMOTE_total_trail_overflow_time17367,1058767 -#define LOCAL_atom_table_overflows LOCAL_atom_table_overflows17368,1058852 -#define REMOTE_atom_table_overflows(REMOTE_atom_table_overflows17369,1058925 -#define LOCAL_total_atom_table_overflow_time LOCAL_total_atom_table_overflow_time17370,1059000 -#define REMOTE_total_atom_table_overflow_time(REMOTE_total_atom_table_overflow_time17371,1059093 -#define LOCAL_dl_errno LOCAL_dl_errno17372,1059188 -#define REMOTE_dl_errno(REMOTE_dl_errno17373,1059237 -#define LOCAL_do_trace_primitives LOCAL_do_trace_primitives17374,1059288 -#define REMOTE_do_trace_primitives(REMOTE_do_trace_primitives17375,1059359 -#define LOCAL_ExportAtomHashChain LOCAL_ExportAtomHashChain17376,1059432 -#define REMOTE_ExportAtomHashChain(REMOTE_ExportAtomHashChain17377,1059503 -#define LOCAL_ExportAtomHashTableSize LOCAL_ExportAtomHashTableSize17378,1059576 -#define REMOTE_ExportAtomHashTableSize(REMOTE_ExportAtomHashTableSize17379,1059655 -#define LOCAL_ExportAtomHashTableNum LOCAL_ExportAtomHashTableNum17380,1059736 -#define REMOTE_ExportAtomHashTableNum(REMOTE_ExportAtomHashTableNum17381,1059813 -#define LOCAL_ExportFunctorHashChain LOCAL_ExportFunctorHashChain17382,1059892 -#define REMOTE_ExportFunctorHashChain(REMOTE_ExportFunctorHashChain17383,1059969 -#define LOCAL_ExportFunctorHashTableSize LOCAL_ExportFunctorHashTableSize17384,1060048 -#define REMOTE_ExportFunctorHashTableSize(REMOTE_ExportFunctorHashTableSize17385,1060133 -#define LOCAL_ExportFunctorHashTableNum LOCAL_ExportFunctorHashTableNum17386,1060220 -#define REMOTE_ExportFunctorHashTableNum(REMOTE_ExportFunctorHashTableNum17387,1060303 -#define LOCAL_ExportPredEntryHashChain LOCAL_ExportPredEntryHashChain17388,1060388 -#define REMOTE_ExportPredEntryHashChain(REMOTE_ExportPredEntryHashChain17389,1060469 -#define LOCAL_ExportPredEntryHashTableSize LOCAL_ExportPredEntryHashTableSize17390,1060552 -#define REMOTE_ExportPredEntryHashTableSize(REMOTE_ExportPredEntryHashTableSize17391,1060641 -#define LOCAL_ExportPredEntryHashTableNum LOCAL_ExportPredEntryHashTableNum17392,1060732 -#define REMOTE_ExportPredEntryHashTableNum(REMOTE_ExportPredEntryHashTableNum17393,1060819 -#define LOCAL_ExportDBRefHashChain LOCAL_ExportDBRefHashChain17394,1060908 -#define REMOTE_ExportDBRefHashChain(REMOTE_ExportDBRefHashChain17395,1060981 -#define LOCAL_ExportDBRefHashTableSize LOCAL_ExportDBRefHashTableSize17396,1061056 -#define REMOTE_ExportDBRefHashTableSize(REMOTE_ExportDBRefHashTableSize17397,1061137 -#define LOCAL_ExportDBRefHashTableNum LOCAL_ExportDBRefHashTableNum17398,1061220 -#define REMOTE_ExportDBRefHashTableNum(REMOTE_ExportDBRefHashTableNum17399,1061299 -#define LOCAL_ImportAtomHashChain LOCAL_ImportAtomHashChain17400,1061380 -#define REMOTE_ImportAtomHashChain(REMOTE_ImportAtomHashChain17401,1061451 -#define LOCAL_ImportAtomHashTableSize LOCAL_ImportAtomHashTableSize17402,1061524 -#define REMOTE_ImportAtomHashTableSize(REMOTE_ImportAtomHashTableSize17403,1061603 -#define LOCAL_ImportAtomHashTableNum LOCAL_ImportAtomHashTableNum17404,1061684 -#define REMOTE_ImportAtomHashTableNum(REMOTE_ImportAtomHashTableNum17405,1061761 -#define LOCAL_ImportFunctorHashChain LOCAL_ImportFunctorHashChain17406,1061840 -#define REMOTE_ImportFunctorHashChain(REMOTE_ImportFunctorHashChain17407,1061917 -#define LOCAL_ImportFunctorHashTableSize LOCAL_ImportFunctorHashTableSize17408,1061996 -#define REMOTE_ImportFunctorHashTableSize(REMOTE_ImportFunctorHashTableSize17409,1062081 -#define LOCAL_ImportFunctorHashTableNum LOCAL_ImportFunctorHashTableNum17410,1062168 -#define REMOTE_ImportFunctorHashTableNum(REMOTE_ImportFunctorHashTableNum17411,1062251 -#define LOCAL_ImportOPCODEHashChain LOCAL_ImportOPCODEHashChain17412,1062336 -#define REMOTE_ImportOPCODEHashChain(REMOTE_ImportOPCODEHashChain17413,1062411 -#define LOCAL_ImportOPCODEHashTableSize LOCAL_ImportOPCODEHashTableSize17414,1062488 -#define REMOTE_ImportOPCODEHashTableSize(REMOTE_ImportOPCODEHashTableSize17415,1062571 -#define LOCAL_ImportPredEntryHashChain LOCAL_ImportPredEntryHashChain17416,1062656 -#define REMOTE_ImportPredEntryHashChain(REMOTE_ImportPredEntryHashChain17417,1062737 -#define LOCAL_ImportPredEntryHashTableSize LOCAL_ImportPredEntryHashTableSize17418,1062820 -#define REMOTE_ImportPredEntryHashTableSize(REMOTE_ImportPredEntryHashTableSize17419,1062909 -#define LOCAL_ImportPredEntryHashTableNum LOCAL_ImportPredEntryHashTableNum17420,1063000 -#define REMOTE_ImportPredEntryHashTableNum(REMOTE_ImportPredEntryHashTableNum17421,1063087 -#define LOCAL_ImportDBRefHashChain LOCAL_ImportDBRefHashChain17422,1063176 -#define REMOTE_ImportDBRefHashChain(REMOTE_ImportDBRefHashChain17423,1063249 -#define LOCAL_ImportDBRefHashTableSize LOCAL_ImportDBRefHashTableSize17424,1063324 -#define REMOTE_ImportDBRefHashTableSize(REMOTE_ImportDBRefHashTableSize17425,1063405 -#define LOCAL_ImportDBRefHashTableNum LOCAL_ImportDBRefHashTableNum17426,1063488 -#define REMOTE_ImportDBRefHashTableNum(REMOTE_ImportDBRefHashTableNum17427,1063567 -#define LOCAL_ImportFAILCODE LOCAL_ImportFAILCODE17428,1063648 -#define REMOTE_ImportFAILCODE(REMOTE_ImportFAILCODE17429,1063709 -#define LOCAL_ibnds LOCAL_ibnds17430,1063772 -#define REMOTE_ibnds(REMOTE_ibnds17431,1063815 -#define LOCAL_exo_it LOCAL_exo_it17432,1063860 -#define REMOTE_exo_it(REMOTE_exo_it17433,1063905 -#define LOCAL_exo_base LOCAL_exo_base17434,1063952 -#define REMOTE_exo_base(REMOTE_exo_base17435,1064001 -#define LOCAL_exo_arity LOCAL_exo_arity17436,1064052 -#define REMOTE_exo_arity(REMOTE_exo_arity17437,1064103 -#define LOCAL_exo_arg LOCAL_exo_arg17438,1064156 -#define REMOTE_exo_arg(REMOTE_exo_arg17439,1064203 -#define LOCAL_search_atoms LOCAL_search_atoms17440,1064252 -#define REMOTE_search_atoms(REMOTE_search_atoms17441,1064309 -#define LOCAL_SearchPreds LOCAL_SearchPreds17442,1064368 -#define REMOTE_SearchPreds(REMOTE_SearchPreds17443,1064423 -#define LOCAL_CurSlot LOCAL_CurSlot17444,1064480 -#define REMOTE_CurSlot(REMOTE_CurSlot17445,1064527 -#define LOCAL_FrozenHandles LOCAL_FrozenHandles17446,1064576 -#define REMOTE_FrozenHandles(REMOTE_FrozenHandles17447,1064635 -#define LOCAL_NSlots LOCAL_NSlots17448,1064696 -#define REMOTE_NSlots(REMOTE_NSlots17449,1064741 -#define LOCAL_SlotBase LOCAL_SlotBase17450,1064788 -#define REMOTE_SlotBase(REMOTE_SlotBase17451,1064837 -#define LOCAL_Mutexes LOCAL_Mutexes17452,1064888 -#define REMOTE_Mutexes(REMOTE_Mutexes17453,1064935 -#define LOCAL_SourceModule LOCAL_SourceModule17454,1064984 -#define REMOTE_SourceModule(REMOTE_SourceModule17455,1065041 -#define LOCAL_Including LOCAL_Including17456,1065100 -#define REMOTE_Including(REMOTE_Including17457,1065151 -#define LOCAL_MAX_SIZE LOCAL_MAX_SIZE17458,1065204 -#define REMOTE_MAX_SIZE(REMOTE_MAX_SIZE17459,1065253 -#define LOCAL_LastWTime LOCAL_LastWTime17460,1065304 -#define REMOTE_LastWTime(REMOTE_LastWTime17461,1065355 -#define LOCAL_shared LOCAL_shared17462,1065408 -#define REMOTE_shared(REMOTE_shared17463,1065453 -#define HeapUsed HeapUsed17540,1070463 -#define HeapUsed HeapUsed18266,1112438 -#define HeapUsed HeapUsed18441,1121504 -#define HeapUsed HeapUsed18465,1122465 -#define HeapUsed HeapUsed19503,1182623 -#define HeapUsed HeapUsed19506,1182676 -#define MaskAdr MaskAdr19509,1182730 -#define GET_NEXT(GET_NEXT19510,1182762 -#define GET_NEXT(GET_NEXT19511,1182796 -#define GET_NEXT(GET_NEXT19512,1182831 -#define ONHEAP(ONHEAP19513,1182866 -#define ONCODE(ONCODE19514,1182897 -#define ONCODE(ONCODE19515,1182928 -#define GCIsPrimitiveTerm(GCIsPrimitiveTerm19516,1182959 -#define HEAP_PTR(HEAP_PTR19517,1183012 -#define HEAP_TRAIL_ENTRY(HEAP_TRAIL_ENTRY19518,1183047 -#define MARK_BIT MARK_BIT19519,1183098 -#define RMARK_BIT RMARK_BIT19520,1183134 -#define MARKED_PTR(MARKED_PTR19521,1183171 -#define UNMARKED_CELL(UNMARKED_CELL19522,1183210 -#define UNMARKED_MARK(UNMARKED_MARK19523,1183255 -#define MARK(MARK19524,1183300 -#define UNMARK(UNMARK19525,1183327 -#define RMARK(RMARK19526,1183358 -#define RMARKED(RMARKED19527,1183387 -#define UNRMARK(UNRMARK19528,1183420 -#define MAY_UNMARK(MAY_UNMARK19533,1183672 -#define UNMARK_CELL(UNMARK_CELL19534,1183712 -#define MARK_BIT MARK_BIT19538,1183900 -#define RMARK_BIT RMARK_BIT19539,1183937 -#define mcell(mcell19540,1183975 -#define MARKED_PTR(MARKED_PTR19541,1184005 -#define UNMARKED_MARK(UNMARKED_MARK19542,1184045 -#define MARK(MARK19543,1184091 -#define UNMARK(UNMARK19544,1184119 -#define RMARK(RMARK19545,1184151 -#define RMARKED(RMARKED19546,1184181 -#define UNRMARK(UNRMARK19547,1184215 -#define MAY_UNMARK(MAY_UNMARK19552,1184469 -#define UNMARK_CELL(UNMARK_CELL19553,1184509 -#define TAG(TAG19557,1184697 -#define TAG(TAG19558,1184723 -#define TAG(TAG19559,1184749 -#define TAG(TAG19560,1184775 -#define ENVSIZE(ENVSIZE19562,1184845 -#define MaxOptions MaxOptions19574,1185276 -#define MIN_HASH_ENTRIES MIN_HASH_ENTRIES19575,1185314 -#define HASH_SHIFT HASH_SHIFT19576,1185364 -#define MAX_REG_COPIES MAX_REG_COPIES19635,1188059 -#define MAX_ISTACK_DEPTH MAX_ISTACK_DEPTH19669,1189800 -#define _YAP_INLINE_ONLY_H__YAP_INLINE_ONLY_H_19676,1190180 -#define INLINE_ONLY INLINE_ONLY19677,1190233 -#define INLINE_ONLY INLINE_ONLY19678,1190271 -#define INIT_LOCK(INIT_LOCK19687,1190374 -#define LOCK(LOCK19688,1190409 -#define UNLOCK(UNLOCK19689,1190434 -#define IS_LOCKED(IS_LOCKED19690,1190463 -#define IS_UNLOCKED(IS_UNLOCKED19691,1190498 -#define READ_LOCK(READ_LOCK19692,1190537 -#define READ_UNLOCK(READ_UNLOCK19693,1190573 -#define WRITE_LOCK(WRITE_LOCK19694,1190613 -#define WRITE_UNLOCK(WRITE_UNLOCK19695,1190651 -#define INIT_RWLOCK(INIT_RWLOCK19696,1190693 -#define MUTEX_LOCK(MUTEX_LOCK19697,1190733 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK19698,1190771 -#define MUTEX_UNLOCK(MUTEX_UNLOCK19699,1190815 -#define EXPORT_ATOM_TABLE_SIZE EXPORT_ATOM_TABLE_SIZE19702,1190872 -#define EXPORT_FUNCTOR_TABLE_SIZE EXPORT_FUNCTOR_TABLE_SIZE19703,1190934 -#define EXPORT_OPCODE_TABLE_SIZE EXPORT_OPCODE_TABLE_SIZE19704,1191002 -#define EXPORT_PRED_ENTRY_TABLE_SIZE EXPORT_PRED_ENTRY_TABLE_SIZE19705,1191068 -#define EXPORT_DBREF_TABLE_SIZE EXPORT_DBREF_TABLE_SIZE19706,1191142 -#define STATIC_PRED_FLAGS STATIC_PRED_FLAGS19803,1196432 -#define EXTRA_PRED_FLAGS EXTRA_PRED_FLAGS19804,1196486 -#define SYSTEM_PRED_FLAGS SYSTEM_PRED_FLAGS19805,1196538 -#define CHECK(CHECK19806,1196592 -#define RCHECK(RCHECK19807,1196622 -#define AllocTempSpace(AllocTempSpace19808,1196654 -#define EnoughTempSpace(EnoughTempSpace19809,1196702 -#define REGS_H REGS_H19815,1196856 -#define MaxTemps MaxTemps19816,1196886 -#define MaxArithms MaxArithms19817,1196920 -#define PUSH_REGS PUSH_REGS19818,1196958 -#undef PUSH_XPUSH_X19819,1196994 -#define PUSH_REGS PUSH_REGS19820,1197023 -#undef PUSH_XPUSH_X19821,1197059 -#define PUSH_REGS PUSH_REGS19822,1197088 -#undef PUSH_XPUSH_X19823,1197125 -#undef PUSH_REGSPUSH_REGS19824,1197154 -#undef PUSH_XPUSH_X19825,1197189 -#undef PUSH_REGSPUSH_REGS19826,1197219 -#undef PUSH_XPUSH_X19827,1197255 -#undef PUSH_REGSPUSH_REGS19828,1197285 -#undef PUSH_XPUSH_X19829,1197321 -#define PUSH_REGS PUSH_REGS19830,1197351 -#define PUSH_X PUSH_X19831,1197388 -#define __builtin_expect(__builtin_expect19832,1197419 -#define CACHE_REGSCACHE_REGS19833,1197470 -#define REFRESH_CACHE_REGSREFRESH_CACHE_REGS19834,1197508 -#define INIT_REGSINIT_REGS19835,1197562 -#define PASS_REGS1PASS_REGS119836,1197598 -#define PASS_REGSPASS_REGS19837,1197636 -#define USES_REGS1 USES_REGS119838,1197672 -#define USES_REGSUSES_REGS19839,1197711 -#define WORKER_REGS(WORKER_REGS19840,1197747 -#define XREGS XREGS19921,1203623 -#define XREGS XREGS19922,1203653 -#undef CACHE_REGSCACHE_REGS19923,1203683 -#undef REFRESH_CACHE_REGSREFRESH_CACHE_REGS19924,1203721 -#undef INIT_REGSINIT_REGS19925,1203775 -#undef CACHE_REGSCACHE_REGS19926,1203811 -#undef PASS_REGSPASS_REGS19927,1203849 -#undef PASS_REGS1PASS_REGS119928,1203885 -#undef USES_REGSUSES_REGS19929,1203923 -#undef USES_REGS1USES_REGS119930,1203959 -#undef WORKER_REGSWORKER_REGS19931,1203997 -#define CACHE_REGS CACHE_REGS19932,1204037 -#define REFRESH_CACHE_REGS REFRESH_CACHE_REGS19933,1204077 -#define INIT_REGS INIT_REGS19934,1204133 -#define WORKER_REGS(WORKER_REGS19935,1204171 -#define PASS_REGS1 PASS_REGS119936,1204213 -#define PASS_REGS PASS_REGS19937,1204253 -#define USES_REGS1 USES_REGS119938,1204291 -#define USES_REGS USES_REGS19939,1204331 -#define Yap_regp Yap_regp19940,1204369 -#define Yap_REGS Yap_REGS19941,1204405 -#define XREGS XREGS19943,1204520 -#define Atomics Atomics19947,1204633 -#define Funcs Funcs19948,1204667 -#define ConstantTermAdjust(ConstantTermAdjust19949,1204697 -#define DBGroundTermAdjust(DBGroundTermAdjust19950,1204753 -#define AdjustDBTerm(AdjustDBTerm19951,1204809 -#define AdjustSwitchTable(AdjustSwitchTable19952,1204853 -#define RestoreOtaplInst(RestoreOtaplInst19953,1204907 -#define RestoreDBErasedMarker(RestoreDBErasedMarker19954,1204959 -#define RestoreLogDBErasedMarker(RestoreLogDBErasedMarker19955,1205021 -#define RestoreForeignCode(RestoreForeignCode19956,1205089 -#define RestoreEmptyWakeups(RestoreEmptyWakeups19957,1205145 -#define RestoreAtoms(RestoreAtoms19958,1205203 -#define RestoreWideAtoms(RestoreWideAtoms19959,1205247 -#define RestoreSWIBlobs(RestoreSWIBlobs19960,1205299 -#define RestoreSWIBlobTypes(RestoreSWIBlobTypes19961,1205349 -#define RestoreInvisibleAtoms(RestoreInvisibleAtoms19962,1205407 -#define RestorePredHash(RestorePredHash19963,1205469 -#define RestoreHiddenPredicates(RestoreHiddenPredicates19964,1205519 -#define RestoreDBTermsList(RestoreDBTermsList19965,1205585 -#define RestoreExpandList(RestoreExpandList19966,1205641 -#define RestoreIntKeys(RestoreIntKeys19967,1205695 -#define RestoreIntLUKeys(RestoreIntLUKeys19968,1205743 -#define RestoreIntBBKeys(RestoreIntBBKeys19969,1205795 -#define RestoreDeadStaticClauses(RestoreDeadStaticClauses19970,1205847 -#define RestoreDeadMegaClauses(RestoreDeadMegaClauses19971,1205915 -#define RestoreDeadStaticIndices(RestoreDeadStaticIndices19972,1205979 -#define RestoreDBErasedList(RestoreDBErasedList19973,1206047 -#define RestoreDBErasedIList(RestoreDBErasedIList19974,1206105 -#define RestoreYapRecords(RestoreYapRecords19975,1206165 -#define RestoreBlobTypes(RestoreBlobTypes19993,1207715 -#define RestoreBlobs(RestoreBlobs19994,1207768 -#define Ord(Ord20051,1211047 -#define NextToken NextToken20052,1211071 -#define REINIT_LOCK(REINIT_LOCK20071,1211706 -#define REINIT_RWLOCK(REINIT_RWLOCK20072,1211746 -#define CharP(CharP20073,1211790 -#define CodeAdjust(CodeAdjust20074,1211818 -#define PtoTRAdjust(PtoTRAdjust20075,1211856 -#define BaseAddrAdjust(BaseAddrAdjust20076,1211896 -#define CutCAdjust(CutCAdjust20077,1211942 -#define ChoicePtrAdjust(ChoicePtrAdjust20078,1211980 -#define FuncAdjust(FuncAdjust20079,1212028 -#define AtomTermAdjust(AtomTermAdjust20080,1212066 -#define TermToGlobalOrAtomAdjust(TermToGlobalOrAtomAdjust20081,1212113 -#define AtomAdjust(AtomAdjust20082,1212180 -#define IsOldCode(IsOldCode20083,1212219 -#define IsOldLocal(IsOldLocal20084,1212256 -#define IsOldLocalPtr(IsOldLocalPtr20085,1212295 -#define IsOldCodeCellPtr(IsOldCodeCellPtr20086,1212340 -#define IsOldDelay(IsOldDelay20087,1212391 -#define IsOldDelayPtr(IsOldDelayPtr20088,1212430 -#define IsOldLocalInTR(IsOldLocalInTR20089,1212475 -#define IsOldLocalInTRPtr(IsOldLocalInTRPtr20090,1212522 -#define IsOldGlobal(IsOldGlobal20091,1212575 -#define IsOldGlobalPtr(IsOldGlobalPtr20092,1212616 -#define IsOldTrail(IsOldTrail20093,1212663 -#define IsOldTrailPtr(IsOldTrailPtr20094,1212702 -#define NoAGCAtomAdjust(NoAGCAtomAdjust20095,1212747 -#define AddrAdjust(AddrAdjust20096,1212796 -#define BlockAdjust(BlockAdjust20097,1212835 -#define CodeVarAdjust(CodeVarAdjust20098,1212876 -#define ConstantAdjust(ConstantAdjust20099,1212921 -#define ArityAdjust(ArityAdjust20100,1212968 -#define OpcodeAdjust(OpcodeAdjust20101,1213009 -#define ModuleAdjust(ModuleAdjust20102,1213052 -#define DBRecordAdjust(DBRecordAdjust20103,1213095 -#define PredEntryAdjust(PredEntryAdjust20104,1213142 -#define ModEntryPtrAdjust(ModEntryPtrAdjust20105,1213191 -#define AtomEntryAdjust(AtomEntryAdjust20106,1213244 -#define GlobalEntryAdjust(GlobalEntryAdjust20107,1213293 -#define BlobTermInCodeAdjust(BlobTermInCodeAdjust20108,1213346 -#define CellPtoHeapAdjust(CellPtoHeapAdjust20109,1213405 -#define PtoAtomHashEntryAdjust(PtoAtomHashEntryAdjust20110,1213458 -#define CellPtoHeapCellAdjust(CellPtoHeapCellAdjust20111,1213521 -#define CellPtoTRAdjust(CellPtoTRAdjust20112,1213582 -#define CodeAddrAdjust(CodeAddrAdjust20113,1213631 -#define ConsultObjAdjust(ConsultObjAdjust20114,1213678 -#define DelayAddrAdjust(DelayAddrAdjust20115,1213729 -#define DelayAdjust(DelayAdjust20116,1213778 -#define GlobalAdjust(GlobalAdjust20117,1213819 -#define DBRefAdjust(DBRefAdjust20118,1213862 -#define DBRefPAdjust(DBRefPAdjust20119,1213903 -#define DBTermAdjust(DBTermAdjust20120,1213946 -#define LUIndexAdjust(LUIndexAdjust20121,1213989 -#define SIndexAdjust(SIndexAdjust20122,1214034 -#define LocalAddrAdjust(LocalAddrAdjust20123,1214077 -#define GlobalAddrAdjust(GlobalAddrAdjust20124,1214126 -#define OpListAdjust(OpListAdjust20125,1214177 -#define PtoLUCAdjust(PtoLUCAdjust20126,1214220 -#define PtoStCAdjust(PtoStCAdjust20127,1214263 -#define PtoArrayEAdjust(PtoArrayEAdjust20128,1214306 -#define PtoArraySAdjust(PtoArraySAdjust20129,1214355 -#define PtoGlobalEAdjust(PtoGlobalEAdjust20130,1214404 -#define PtoDelayAdjust(PtoDelayAdjust20131,1214455 -#define PtoGloAdjust(PtoGloAdjust20132,1214502 -#define PtoLocAdjust(PtoLocAdjust20133,1214545 -#define PtoHeapCellAdjust(PtoHeapCellAdjust20134,1214588 -#define TermToGlobalAdjust(TermToGlobalAdjust20135,1214641 -#define PtoOpAdjust(PtoOpAdjust20136,1214696 -#define PtoLUClauseAdjust(PtoLUClauseAdjust20137,1214737 -#define PtoLUIndexAdjust(PtoLUIndexAdjust20138,1214790 -#define PtoDBTLAdjust(PtoDBTLAdjust20139,1214841 -#define PtoPredAdjust(PtoPredAdjust20140,1214886 -#define PtoPtoPredAdjust(PtoPtoPredAdjust20141,1214931 -#define OpRTableAdjust(OpRTableAdjust20142,1214982 -#define OpEntryAdjust(OpEntryAdjust20143,1215029 -#define PropAdjust(PropAdjust20144,1215075 -#define BlobTypeAdjust(BlobTypeAdjust20145,1215115 -#define TrailAddrAdjust(TrailAddrAdjust20146,1215163 -#define XAdjust(XAdjust20147,1215213 -#define YAdjust(YAdjust20148,1215247 -#define LocalAdjust(LocalAdjust20149,1215281 -#define TrailAdjust(TrailAdjust20150,1215323 -#define HoldEntryAdjust(HoldEntryAdjust20151,1215365 -#define CodeCharPAdjust(CodeCharPAdjust20152,1215415 -#define CodeConstCharPAdjust(CodeConstCharPAdjust20153,1215465 -#define CodeVoidPAdjust(CodeVoidPAdjust20154,1215525 -#define HaltHookAdjust(HaltHookAdjust20155,1215575 -#define TokEntryAdjust(TokEntryAdjust20156,1215623 -#define VarEntryAdjust(VarEntryAdjust20157,1215671 -#define ConsumerChoicePtrAdjust(ConsumerChoicePtrAdjust20158,1215719 -#define GeneratorChoicePtrAdjust(GeneratorChoicePtrAdjust20159,1215785 -#define IsHeapP(IsHeapP20160,1215853 -#define IsOldVarTableTrailPtr(IsOldVarTableTrailPtr20161,1215887 -#define IsOldTokenTrailPtr(IsOldTokenTrailPtr20162,1215949 -#define OrArgAdjust(OrArgAdjust20164,1216057 -#define TabEntryAdjust(TabEntryAdjust20165,1216099 -#define DoubleInCodeAdjust(DoubleInCodeAdjust20203,1218621 -#define IntegerInCodeAdjust(IntegerInCodeAdjust20204,1218678 -#define IntegerAdjust(IntegerAdjust20205,1218737 -#define ExternalFunctionAdjust(ExternalFunctionAdjust20206,1218784 -#define AllTagBits AllTagBits20268,1223047 -#define TagBits TagBits20269,1223086 -#define MaskAdr MaskAdr20270,1223119 -#define AdrHiBit AdrHiBit20271,1223152 -#define NumberTag NumberTag20272,1223187 -#define FloatTag FloatTag20273,1223224 -#define AtomTag AtomTag20274,1223259 -#define PairTag PairTag20275,1223292 -#define ApplTag ApplTag20276,1223325 -#define RefTag RefTag20277,1223358 -#define MaskBits MaskBits20278,1223389 -#define PairBit PairBit20279,1223424 -#define ApplBit ApplBit20280,1223457 -#define CompBits CompBits20281,1223490 -#define NumberMask NumberMask20282,1223525 -#define MAX_ABS_INT MAX_ABS_INT20283,1223564 -#define TagOf(TagOf20284,1223605 -#define LowTagOf(LowTagOf20285,1223634 -#define NonTagPart(NonTagPart20286,1223669 -#define TAGGEDA(TAGGEDA20287,1223708 -#define TAGGED(TAGGED20288,1223741 -#define NONTAGGED(NONTAGGED20289,1223772 -#define BitOn(BitOn20290,1223809 -#define CHKTAG(CHKTAG20291,1223838 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK20292,1223869 -#define SHIFT_HIGH_TAG SHIFT_HIGH_TAG20307,1224436 -#define MKTAG(MKTAG20308,1224483 -#define TagBits TagBits20309,1224512 -#define LowTagBits LowTagBits20310,1224545 -#define HighTagBits HighTagBits20311,1224584 -#define AdrHiBit AdrHiBit20312,1224625 -#define MaskAdr MaskAdr20313,1224660 -#define MaskPrim MaskPrim20314,1224693 -#define NumberTag NumberTag20315,1224728 -#define AtomTag AtomTag20316,1224765 -#define PairTag PairTag20317,1224798 -#define ApplTag ApplTag20318,1224831 -#define MAX_ABS_INT MAX_ABS_INT20319,1224864 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK20320,1224905 -#define MaskBits MaskBits20321,1224960 -#define PairBit PairBit20322,1224995 -#define ApplBit ApplBit20323,1225028 -#define NonTagPart(NonTagPart20324,1225061 -#define TAGGEDA(TAGGEDA20325,1225100 -#define TAGGED(TAGGED20326,1225133 -#define NONTAGGED(NONTAGGED20327,1225164 -#define BitOn(BitOn20328,1225201 -#define CHKTAG(CHKTAG20329,1225230 -#define TAG_LOW_BITS_32 TAG_LOW_BITS_3220344,1225775 -#define SHIFT_LOW_TAG SHIFT_LOW_TAG20345,1225823 -#define SHIFT_HIGH_TAG SHIFT_HIGH_TAG20346,1225868 -#define MKTAG(MKTAG20347,1225915 -#define TagBits TagBits20348,1225944 -#define LowTagBits LowTagBits20349,1225977 -#define LowBit LowBit20350,1226016 -#define HighTagBits HighTagBits20351,1226047 -#define NumberTag NumberTag20352,1226088 -#define AtomTag AtomTag20353,1226125 -#define MAX_ABS_INT MAX_ABS_INT20354,1226158 -#define UNIQUE_TAG_FOR_PAIRS UNIQUE_TAG_FOR_PAIRS20355,1226199 -#define PairBits PairBits20356,1226258 -#define ApplBit ApplBit20357,1226293 -#define PrimiBits PrimiBits20358,1226326 -#define NumberBits NumberBits20359,1226363 -#define NumberMask NumberMask20360,1226402 -#define TagOf(TagOf20361,1226441 -#define LowTagOf(LowTagOf20362,1226470 -#define NonTagPart(NonTagPart20363,1226505 -#define TAGGED(TAGGED20364,1226544 -#define NONTAGGED(NONTAGGED20365,1226575 -#define TAGGEDA(TAGGEDA20366,1226612 -#define CHKTAG(CHKTAG20367,1226645 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK20368,1226676 -#define TAGS_FAST_OPS TAGS_FAST_OPS20383,1227243 -#define SHIFT_HIGH_TAG SHIFT_HIGH_TAG20384,1227288 -#define MKTAG(MKTAG20385,1227335 -#define TagBits TagBits20386,1227364 -#define LowTagBits LowTagBits20387,1227397 -#define LowBit LowBit20388,1227436 -#define HighTagBits HighTagBits20389,1227467 -#define AdrHiBit AdrHiBit20390,1227508 -#define MaskAdr MaskAdr20391,1227543 -#define MaskPrim MaskPrim20392,1227576 -#define NumberTag NumberTag20393,1227611 -#define AtomTag AtomTag20394,1227648 -#define MAX_ABS_INT MAX_ABS_INT20395,1227681 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK20396,1227722 -#define MaskBits MaskBits20397,1227777 -#define UNIQUE_TAG_FOR_PAIRS UNIQUE_TAG_FOR_PAIRS20398,1227812 -#define PairBit PairBit20399,1227871 -#define ApplBit ApplBit20400,1227904 -#define PairBit PairBit20401,1227937 -#define ApplBit ApplBit20402,1227970 -#define TagOf(TagOf20403,1228003 -#define LowTagOf(LowTagOf20404,1228032 -#define NonTagPart(NonTagPart20405,1228067 -#define TAGGEDA(TAGGEDA20406,1228106 -#define TAGGED(TAGGED20407,1228139 -#define NONTAGGED(NONTAGGED20408,1228170 -#define BitOn(BitOn20409,1228208 -#define CHKTAG(CHKTAG20410,1228238 -#define TAG_64BITS TAG_64BITS20433,1229107 -#define SHIFT_HIGH_TAG SHIFT_HIGH_TAG20434,1229145 -#define MKTAG(MKTAG20435,1229192 -#define TagBits TagBits20436,1229221 -#define LowTagBits LowTagBits20437,1229254 -#define HighTagBits HighTagBits20438,1229293 -#define AdrHiBit AdrHiBit20439,1229334 -#define MaskPrim MaskPrim20440,1229369 -#define NumberTag NumberTag20441,1229404 -#define AtomTag AtomTag20442,1229441 -#define MAX_ABS_INT MAX_ABS_INT20443,1229474 -#define YAP_PROTECTED_MASK YAP_PROTECTED_MASK20444,1229515 -#define UNIQUE_TAG_FOR_PAIRS UNIQUE_TAG_FOR_PAIRS20445,1229570 -#define PrimiBit PrimiBit20446,1229629 -#define PairBits PairBits20447,1229664 -#define ApplBits ApplBits20448,1229699 -#define PrimiBits PrimiBits20449,1229734 -#define NumberMask NumberMask20450,1229771 -#define TagOf(TagOf20451,1229810 -#define LowTagOf(LowTagOf20452,1229839 -#define NonTagPart(NonTagPart20453,1229874 -#define TAGGEDA(TAGGEDA20454,1229913 -#define TAGGED(TAGGED20455,1229946 -#define NONTAGGED(NONTAGGED20456,1229977 -#define CHKTAG(CHKTAG20457,1230014 -#define SF_STORE SF_STORE20472,1230553 -#define SF_STORE SF_STORE20473,1230587 -#define AtomFoundVar AtomFoundVar20474,1230621 -#define AtomFreeTerm AtomFreeTerm20475,1230663 -#define AtomNil AtomNil20476,1230705 -#define AtomDot AtomDot20477,1230738 -#define AtomFoundVar AtomFoundVar20478,1230771 -#define AtomFreeTerm AtomFreeTerm20479,1230814 -#define AtomNil AtomNil20480,1230857 -#define AtomDot AtomDot20481,1230890 -#define AtomFoundVar AtomFoundVar20482,1230923 -#define AtomFreeTerm AtomFreeTerm20483,1230966 -#define AtomNil AtomNil20484,1231009 -#define AtomDot AtomDot20485,1231042 -#define TermFoundVar TermFoundVar20486,1231075 -#define TermFreeTerm TermFreeTerm20487,1231118 -#define TermNil TermNil20488,1231161 -#define TermDot TermDot20489,1231194 -#define FunctorDBRef FunctorDBRef20497,1231577 -#define FunctorAttVar FunctorAttVar20498,1231620 -#define FunctorDouble FunctorDouble20499,1231665 -#define FunctorLongInt FunctorLongInt20500,1231710 -#define FunctorBigInt FunctorBigInt20501,1231757 -#define FunctorString FunctorString20502,1231802 -#define EndSpecials EndSpecials20503,1231847 -#define IsAttVar(IsAttVar20504,1231888 -#define MkFloatTerm(MkFloatTerm20555,1234706 -#define InitUnalignedFloat(InitUnalignedFloat20558,1234914 -#define DOUBLE_ALIGNED(DOUBLE_ALIGNED20560,1235058 -#define MkLongIntTerm(MkLongIntTerm20567,1235618 -#define MkStringTerm(MkStringTerm20571,1235910 -#define MkUStringTerm(MkUStringTerm20573,1236051 -#define IsAttachedTerm(IsAttachedTerm20605,1238157 -#define SafeIsAttachedTerm(SafeIsAttachedTerm20608,1238394 -#define THREADS_H THREADS_H20624,1239584 -#define low_level_trace(low_level_trace20635,1239952 -#define low_level_trace(low_level_trace20636,1240000 -#define HASH_FIND_UdiInfo(HASH_FIND_UdiInfo20661,1241358 -#define HASH_ADD_UdiInfo(HASH_ADD_UdiInfo20662,1241410 -#define UTARRAY_HUTARRAY_H20674,1241927 -#define UTARRAY_VERSION UTARRAY_VERSION20675,1241963 -#define _UNUSED_ _UNUSED_20676,1242012 -#define _UNUSED_ _UNUSED_20677,1242047 -#define oom(oom20678,1242082 -#define utarray_init(utarray_init20700,1243235 -#define utarray_done(utarray_done20701,1243278 -#define utarray_new(utarray_new20702,1243321 -#define utarray_free(utarray_free20703,1243362 -#define utarray_reserve(utarray_reserve20704,1243405 -#define utarray_push_back(utarray_push_back20705,1243454 -#define utarray_pop_back(utarray_pop_back20706,1243507 -#define utarray_extend_back(utarray_extend_back20707,1243559 -#define utarray_len(utarray_len20708,1243617 -#define utarray_eltptr(utarray_eltptr20709,1243659 -#define _utarray_eltptr(_utarray_eltptr20710,1243707 -#define utarray_insert(utarray_insert20711,1243757 -#define utarray_inserta(utarray_inserta20712,1243805 -#define utarray_resize(utarray_resize20713,1243855 -#define utarray_concat(utarray_concat20714,1243903 -#define utarray_erase(utarray_erase20715,1243951 -#define utarray_renew(utarray_renew20716,1243997 -#define utarray_clear(utarray_clear20717,1244044 -#define utarray_sort(utarray_sort20718,1244091 -#define utarray_find(utarray_find20719,1244136 -#define utarray_front(utarray_front20720,1244181 -#define utarray_next(utarray_next20721,1244228 -#define utarray_prev(utarray_prev20722,1244273 -#define utarray_back(utarray_back20723,1244318 -#define utarray_eltidx(utarray_eltidx20724,1244363 -#define UTHASH_H UTHASH_H20732,1244883 -#define DECLTYPE(DECLTYPE20733,1244918 -#define NO_DECLTYPENO_DECLTYPE20734,1244953 -#define DECLTYPE(DECLTYPE20735,1244993 -#define DECLTYPE(DECLTYPE20736,1245028 -#define DECLTYPE_ASSIGN(DECLTYPE_ASSIGN20737,1245063 -#define DECLTYPE_ASSIGN(DECLTYPE_ASSIGN20738,1245112 -#define UTHASH_VERSION UTHASH_VERSION20741,1245256 -#define uthash_fatal(uthash_fatal20742,1245303 -#define uthash_malloc(uthash_malloc20743,1245346 -#define uthash_free(uthash_free20744,1245391 -#define uthash_noexpand_fyi(uthash_noexpand_fyi20745,1245432 -#define uthash_expand_fyi(uthash_expand_fyi20746,1245489 -#define HASH_INITIAL_NUM_BUCKETS HASH_INITIAL_NUM_BUCKETS20747,1245542 -#define HASH_INITIAL_NUM_BUCKETS_LOG2 HASH_INITIAL_NUM_BUCKETS_LOG220748,1245609 -#define HASH_BKT_CAPACITY_THRESH HASH_BKT_CAPACITY_THRESH20749,1245686 -#define ELMT_FROM_HH(ELMT_FROM_HH20750,1245753 -#define HASH_FIND(HASH_FIND20751,1245796 -#define HASH_BLOOM_BITLEN HASH_BLOOM_BITLEN20752,1245833 -#define HASH_BLOOM_BYTELEN HASH_BLOOM_BYTELEN20753,1245887 -#define HASH_BLOOM_MAKE(HASH_BLOOM_MAKE20754,1245943 -#define HASH_BLOOM_FREE(HASH_BLOOM_FREE20755,1245993 -#define HASH_BLOOM_BITSET(HASH_BLOOM_BITSET20756,1246043 -#define HASH_BLOOM_BITTEST(HASH_BLOOM_BITTEST20757,1246097 -#define HASH_BLOOM_ADD(HASH_BLOOM_ADD20758,1246153 -#define HASH_BLOOM_TEST(HASH_BLOOM_TEST20759,1246201 -#define HASH_BLOOM_MAKE(HASH_BLOOM_MAKE20760,1246251 -#define HASH_BLOOM_FREE(HASH_BLOOM_FREE20761,1246301 -#define HASH_BLOOM_ADD(HASH_BLOOM_ADD20762,1246351 -#define HASH_BLOOM_TEST(HASH_BLOOM_TEST20763,1246399 -#define HASH_MAKE_TABLE(HASH_MAKE_TABLE20764,1246449 -#define HASH_ADD(HASH_ADD20765,1246499 -#define HASH_ADD_KEYPTR(HASH_ADD_KEYPTR20766,1246535 -#define HASH_TO_BKT(HASH_TO_BKT20767,1246585 -#define HASH_DELETE(HASH_DELETE20768,1246627 -#define HASH_FIND_STR(HASH_FIND_STR20769,1246670 -#define HASH_ADD_STR(HASH_ADD_STR20770,1246717 -#define HASH_FIND_INT(HASH_FIND_INT20771,1246762 -#define HASH_ADD_INT(HASH_ADD_INT20772,1246809 -#define HASH_FIND_PTR(HASH_FIND_PTR20773,1246854 -#define HASH_ADD_PTR(HASH_ADD_PTR20774,1246901 -#define HASH_DEL(HASH_DEL20775,1246946 -#define HASH_OOPS(HASH_OOPS20776,1246983 -#define HASH_FSCK(HASH_FSCK20777,1247022 -#define HASH_FSCK(HASH_FSCK20778,1247061 -#define HASH_EMIT_KEY(HASH_EMIT_KEY20779,1247100 -#define HASH_EMIT_KEY(HASH_EMIT_KEY20780,1247147 -#define HASH_FCN HASH_FCN20781,1247194 -#define HASH_FCN HASH_FCN20782,1247231 -#define HASH_BER(HASH_BER20783,1247268 -#define HASH_SAX(HASH_SAX20784,1247305 -#define HASH_FNV(HASH_FNV20785,1247342 -#define HASH_OAT(HASH_OAT20786,1247379 -#define HASH_JEN_MIX(HASH_JEN_MIX20787,1247416 -#define HASH_JEN(HASH_JEN20788,1247461 -#undef get16bitsget16bits20789,1247498 -#define get16bits(get16bits20790,1247535 -#define get16bits(get16bits20791,1247574 -#define HASH_SFH(HASH_SFH20792,1247613 -#define MUR_GETBLOCK(MUR_GETBLOCK20793,1247650 -#define MUR_PLUS0_ALIGNED(MUR_PLUS0_ALIGNED20794,1247695 -#define MUR_PLUS1_ALIGNED(MUR_PLUS1_ALIGNED20795,1247750 -#define MUR_PLUS2_ALIGNED(MUR_PLUS2_ALIGNED20796,1247805 -#define MUR_PLUS3_ALIGNED(MUR_PLUS3_ALIGNED20797,1247860 -#define WP(WP20798,1247915 -#define MUR_THREE_ONE(MUR_THREE_ONE20799,1247940 -#define MUR_TWO_TWO(MUR_TWO_TWO20800,1247987 -#define MUR_ONE_THREE(MUR_ONE_THREE20801,1248030 -#define MUR_THREE_ONE(MUR_THREE_ONE20802,1248077 -#define MUR_TWO_TWO(MUR_TWO_TWO20803,1248124 -#define MUR_ONE_THREE(MUR_ONE_THREE20804,1248167 -#define MUR_GETBLOCK(MUR_GETBLOCK20805,1248214 -#define MUR_ROTL32(MUR_ROTL3220806,1248259 -#define MUR_FMIX(MUR_FMIX20807,1248300 -#define HASH_MUR(HASH_MUR20808,1248337 -#define HASH_KEYCMP(HASH_KEYCMP20809,1248374 -#define HASH_FIND_IN_BKT(HASH_FIND_IN_BKT20810,1248417 -#define HASH_ADD_TO_BKT(HASH_ADD_TO_BKT20811,1248470 -#define HASH_DEL_IN_BKT(HASH_DEL_IN_BKT20812,1248521 -#define HASH_EXPAND_BUCKETS(HASH_EXPAND_BUCKETS20813,1248572 -#define HASH_SORT(HASH_SORT20814,1248631 -#define HASH_SRT(HASH_SRT20815,1248670 -#define HASH_SELECT(HASH_SELECT20816,1248707 -#define HASH_CLEAR(HASH_CLEAR20817,1248750 -#define HASH_ITER(HASH_ITER20818,1248791 -#define HASH_ITER(HASH_ITER20819,1248830 -#define HASH_COUNT(HASH_COUNT20820,1248869 -#define HASH_CNT(HASH_CNT20821,1248910 -#define HASH_SIGNATURE HASH_SIGNATURE20830,1249365 -#define HASH_BLOOM_SIGNATURE HASH_BLOOM_SIGNATURE20831,1249414 -#define YAP_H YAP_H20884,1253248 -#define USE_MYDDAS USE_MYDDAS20885,1253276 -#define USE_MYDDAS_SQLITE3 USE_MYDDAS_SQLITE320886,1253314 -#define YAPOR YAPOR20887,1253368 -#define FIXED_STACKS FIXED_STACKS20888,1253397 -#define COROUTINING COROUTINING20889,1253440 -#define RATIONAL_TREES RATIONAL_TREES20890,1253481 -#define CUT_C CUT_C20891,1253528 -#define FunAdr(FunAdr20892,1253557 -#define MULTI_ASSIGNMENT_VARIABLES MULTI_ASSIGNMENT_VARIABLES20893,1253588 -#define MULTIPLE_STACKS MULTIPLE_STACKS20894,1253659 -#define PARALLEL_YAP PARALLEL_YAP20895,1253708 -#undef TRAILING_REQUIRES_BRANCHTRAILING_REQUIRES_BRANCH20896,1253751 -#define FROZEN_STACKS FROZEN_STACKS20897,1253816 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC20898,1253861 -#undef USE_THREADED_CODEUSE_THREADED_CODE20899,1253915 -#define TERM_EXTENSIONS TERM_EXTENSIONS20900,1253967 -#define nullptr nullptr20901,1254017 -#define nullptr nullptr20902,1254051 -#define nullptr nullptr20903,1254085 -#define nullptr nullptr20904,1254119 -#define _WIN32 _WIN3220905,1254153 -#define MIN_ARRAY MIN_ARRAY20906,1254185 -#define DUMMY_FILLER_FOR_ABS_TYPEDUMMY_FILLER_FOR_ABS_TYPE20907,1254223 -#define MIN_ARRAY MIN_ARRAY20908,1254292 -#define DUMMY_FILLER_FOR_ABS_TYPE DUMMY_FILLER_FOR_ABS_TYPE20909,1254330 -#define likely(likely20911,1254447 -#define unlikely(unlikely20912,1254479 -#define likely(likely20913,1254515 -#define unlikely(unlikely20914,1254547 -#define _XOPEN_SOURCE _XOPEN_SOURCE20915,1254583 -#define NIL NIL20916,1254629 -#define LOW_PROF LOW_PROF20917,1254655 -#define IN_SECOND_QUADRANT IN_SECOND_QUADRANT20919,1254781 -#define MMAP_ADDR MMAP_ADDR20920,1254837 -#define MMAP_ADDR MMAP_ADDR20921,1254875 -#define MMAP_ADDR MMAP_ADDR20922,1254913 -#define MMAP_ADDR MMAP_ADDR20923,1254951 -#define MMAP_ADDR MMAP_ADDR20924,1254989 -#define MMAP_ADDR MMAP_ADDR20925,1255027 -#define MMAP_ADDR MMAP_ADDR20926,1255065 -#define MMAP_ADDR MMAP_ADDR20927,1255103 -#define HEAP_INIT_BASE HEAP_INIT_BASE20928,1255141 -#define AtomBase AtomBase20929,1255189 -#define HEAP_INIT_BASE HEAP_INIT_BASE20930,1255225 -#define AtomBase AtomBase20931,1255273 -#define HEAP_INIT_BASE HEAP_INIT_BASE20932,1255309 -#define AtomBase AtomBase20933,1255357 -#define ALIGN_LONGS ALIGN_LONGS20934,1255393 -#define K1 K120935,1255435 -#define K16 K1620936,1255459 -#define K64 K6420937,1255485 -#define M1 M120938,1255511 -#define M2 M220939,1255535 -#define TermPtr(TermPtr20945,1255757 -#define Addr(Addr20946,1255791 -#define CodePtr(CodePtr20947,1255819 -#define CellPtr(CellPtr20948,1255853 -#define OpCodePtr(OpCodePtr20949,1255887 -#define OpRegPtr(OpRegPtr20950,1255925 -#define SmallPtr(SmallPtr20951,1255961 -#define WordPtr(WordPtr20952,1255997 -#define DisplPtr(DisplPtr20953,1256031 -#define _XOPEN_SOURCE _XOPEN_SOURCE20954,1256067 -#define FUNC_READ_LOCK(FUNC_READ_LOCK20957,1256216 -#define FUNC_READ_UNLOCK(FUNC_READ_UNLOCK20958,1256264 -#define FUNC_WRITE_LOCK(FUNC_WRITE_LOCK20959,1256316 -#define FUNC_WRITE_UNLOCK(FUNC_WRITE_UNLOCK20960,1256366 -#define IN_BETWEEN(IN_BETWEEN20961,1256420 -#define OUTSIDE(OUTSIDE20962,1256460 -#define IN_BETWEEN(IN_BETWEEN20963,1256494 -#define OUTSIDE(OUTSIDE20964,1256534 -#define sigjmp_buf sigjmp_buf20965,1256568 -#define sigsetjmp(sigsetjmp20966,1256609 -#define siglongjmp(siglongjmp20967,1256648 -#define MAX_EMPTY_WAKEUPS MAX_EMPTY_WAKEUPS20991,1257853 -#define TermSize TermSize20992,1257908 -#define YAP_FILENAME_MAX YAP_FILENAME_MAX20993,1257945 -#define __android_log_print(__android_log_print20994,1257998 -#define MaxHash MaxHash20995,1258057 -#define MaxWideHash MaxWideHash20996,1258092 -#define MAX_PROMPT MAX_PROMPT21003,1258406 -#define DefaultMaxModules DefaultMaxModules21031,1260305 -#define YAPEnterCriticalSection(YAPEnterCriticalSection21032,1260360 -#define YAPLeaveCriticalSection(YAPLeaveCriticalSection21033,1260427 -#define YAPEnterCriticalSection(YAPEnterCriticalSection21034,1260494 -#define YAPLeaveCriticalSection(YAPLeaveCriticalSection21035,1260561 -#define YAPEnterCriticalSection(YAPEnterCriticalSection21036,1260628 -#define YAPLeaveCriticalSection(YAPLeaveCriticalSection21037,1260695 -#define AT_BOOT AT_BOOT21038,1260762 -#define AT_RESTORE AT_RESTORE21039,1260797 -#define MIXED_MODE MIXED_MODE21052,1261510 -#define COMPILED COMPILED21053,1261551 -#define GC_MAVARS_HASH_SIZE GC_MAVARS_HASH_SIZE21162,1267286 -#define Yap_global Yap_global21184,1268402 -#define REMOTE(REMOTE21185,1268443 -#define REMOTE(REMOTE21186,1268476 -#define REMOTE(REMOTE21187,1268509 -#define YP_FILE YP_FILE21188,1268542 -#define LOG(LOG21190,1268662 -#define REGS_LOG(REGS_LOG21191,1268689 -#define LOG(LOG21192,1268726 -#define REGS_LOG(REGS_LOG21193,1268753 -#define mklist0(mklist021198,1268838 -#define mklist1(mklist121199,1268870 -#define mklist1(mklist121200,1268906 -#define mklist2(mklist221201,1268942 -#define mklist2(mklist221202,1268978 -#define mklist3(mklist321203,1269014 -#define mklist3(mklist321204,1269050 -#define mklist4(mklist421205,1269086 -#define mklist4(mklist421206,1269122 -#define mklist(mklist21207,1269158 -#define mklist(mklist21208,1269192 -#define f_enum(f_enum21209,1269226 -#define f_arr(f_arr21210,1269260 -#define arnds arnds21230,1270143 -#define rnd2 rnd221231,1270175 -#define rnd3 rnd321232,1270205 -#define rnd4 rnd421233,1270235 -#define rnd5 rnd521234,1270265 -#define rnd6 rnd621235,1270295 -#define rnd7 rnd721236,1270325 -#define rnd8 rnd821237,1270355 -#define COMPILER_ERR_BOTCH COMPILER_ERR_BOTCH21276,1272073 -#define OUT_OF_HEAP_BOTCH OUT_OF_HEAP_BOTCH21277,1272131 -#define OUT_OF_STACK_BOTCH OUT_OF_STACK_BOTCH21278,1272187 -#define OUT_OF_TEMPS_BOTCH OUT_OF_TEMPS_BOTCH21279,1272245 -#define OUT_OF_AUX_BOTCH OUT_OF_AUX_BOTCH21280,1272303 -#define OUT_OF_TRAIL_BOTCH OUT_OF_TRAIL_BOTCH21281,1272357 -#define SafeVar SafeVar21360,1277124 -#define PermFlag PermFlag21361,1277160 -#define GlobalVal GlobalVal21362,1277198 -#define OnHeadFlag OnHeadFlag21363,1277238 -#define NonVoid NonVoid21364,1277280 -#define BranchVar BranchVar21365,1277316 -#define OnLastGoal OnLastGoal21366,1277356 -#define MaskVarClass MaskVarClass21367,1277398 -#define MaskVarAdrs MaskVarAdrs21368,1277444 -#define Unassigned Unassigned21369,1277488 -#define VoidVar VoidVar21370,1277530 -#define TempVar TempVar21371,1277566 -#define PermVar PermVar21372,1277602 -#define save_b_flag save_b_flag21373,1277638 -#define commit_b_flag commit_b_flag21374,1277682 -#define save_appl_flag save_appl_flag21375,1277730 -#define save_pair_flag save_pair_flag21376,1277780 -#define f_flag f_flag21377,1277830 -#define bt_flag bt_flag21378,1277864 -#define bt2_flag bt2_flag21379,1277900 -#define patch_b_flag patch_b_flag21380,1277938 -#define init_v_flag init_v_flag21381,1277984 -#define Zero Zero21382,1278028 -#define One One21383,1278058 -#define Two Two21384,1278086 -#define YAPCOMPOUNDTERM_H YAPCOMPOUNDTERM_H21387,1278140 -#define EVAL_H EVAL_H21398,1278794 -#define Int_MAX Int_MAX21399,1278826 -#define Int_MAX Int_MAX21400,1278860 -#define Int_MIN Int_MIN21401,1278894 -#define Int_MIN Int_MIN21402,1278928 -#define PLMAXTAGGEDINT PLMAXTAGGEDINT21403,1278962 -#define PLMINTAGGEDINT PLMINTAGGEDINT21404,1279010 -#define PLMAXINT PLMAXINT21405,1279058 -#define PLMININT PLMININT21406,1279094 -#define INFINITY INFINITY21407,1279130 -#define NAN NAN21408,1279166 -#define FlIsInt(FlIsInt21484,1281379 -#define FlIsInt(FlIsInt21485,1281413 -#define MkEvalFl(MkEvalFl21486,1281447 -#define MkEvalFl(MkEvalFl21487,1281483 -#define REvalInt(REvalInt21488,1281519 -#define REvalFl(REvalFl21489,1281555 -#define REvalError(REvalError21490,1281589 -#define FL(FL21491,1281629 -#define FL(FL21492,1281653 -#define Yap_EvalError(Yap_EvalError21493,1281677 -#define Yap_ArithError(Yap_ArithError21494,1281724 -#define Yap_BinError(Yap_BinError21495,1281773 -#define Yap_AbsmiError(Yap_AbsmiError21496,1281818 -#define Yap_MathException(Yap_MathException21497,1281867 -#define Yap_InnerEval(Yap_InnerEval21498,1281922 -#define Yap_Eval(Yap_Eval21499,1281969 -#define Yap_FoundArithError(Yap_FoundArithError21500,1282006 -#define RINT(RINT21506,1282473 -#define RFLOAT(RFLOAT21507,1282502 -#define RBIG(RBIG21508,1282535 -#define RERROR(RERROR21509,1282564 -#define Yap_gmp_cmp_float_big(Yap_gmp_cmp_float_big21511,1282665 -#define Yap_gmp_tcmp_float_big(Yap_gmp_tcmp_float_big21512,1282728 -#define Yap_Mk64IntegerTerm(Yap_Mk64IntegerTerm21513,1282793 -#define DO_ADD(DO_ADD21515,1282935 -#define PI PI21518,1283112 -#define PI PI21519,1283137 -#define M_E M_E21520,1283162 -#define INFINITY INFINITY21521,1283189 -#define NAN NAN21522,1283226 -#define DBL_EPSILON DBL_EPSILON21523,1283253 -#define YAP_FLAGS_H YAP_FLAGS_H21526,1283316 -#define SYSTEM_OPTION_0 SYSTEM_OPTION_021527,1283356 -#define SYSTEM_OPTION_1 SYSTEM_OPTION_121528,1283404 -#define SYSTEM_OPTION_3 SYSTEM_OPTION_321529,1283452 -#define SYSTEM_OPTION_4 SYSTEM_OPTION_421530,1283500 -#define SYSTEM_OPTION_5 SYSTEM_OPTION_521531,1283548 -#define SYSTEM_OPTION_6 SYSTEM_OPTION_621532,1283596 -#define SYSTEM_OPTION_7 SYSTEM_OPTION_721533,1283645 -#define SYSTEM_OPTION_8 SYSTEM_OPTION_821534,1283694 -#define YAP_FLAG(YAP_FLAG21596,1286204 -#undef YAP_FLAGYAP_FLAG21599,1286318 -#define YAP_HANDLES_H YAP_HANDLES_H21626,1288166 -#define LOCAL_CurHandle LOCAL_CurHandle21627,1288210 -#define REMOTE_CurHandle REMOTE_CurHandle21628,1288258 -#define LOCAL_NHandles LOCAL_NHandles21629,1288308 -#define REMOTE_NHandles REMOTE_NHandles21630,1288354 -#define LOCAL_HandleBase LOCAL_HandleBase21631,1288402 -#define REMOTE_HanvdleBase REMOTE_HanvdleBase21632,1288452 -#define Yap_RebootHandles(Yap_RebootHandles21633,1288506 -#define Yap_RebootSlots(Yap_RebootSlots21634,1288559 -#define Yap_StartHandles(Yap_StartHandles21636,1288696 -#define Yap_StartSlots(Yap_StartSlots21637,1288747 -#define Yap_CloseHandles(Yap_CloseHandles21639,1288890 -#define Yap_CloseSlots(Yap_CloseSlots21640,1288942 -#define Yap_CurrentHandle(Yap_CurrentHandle21642,1289096 -#define Yap_CurrentSlot(Yap_CurrentSlot21643,1289150 -#define Yap_GetFromHandle(Yap_GetFromHandle21645,1289299 -#define Yap_GetFromSlot(Yap_GetFromSlot21646,1289353 -#define Yap_GetDerefedFromHandle(Yap_GetDerefedFromHandle21648,1289511 -#define Yap_GetDerefedFromSlot(Yap_GetDerefedFromSlot21649,1289579 -#define Yap_GetPtrFromHandle(Yap_GetPtrFromHandle21651,1289734 -#define Yap_GetPtrFromSlot(Yap_GetPtrFromSlot21652,1289794 -#define Yap_AddressFromHandle(Yap_AddressFromHandle21654,1289933 -#define Yap_AddressFromSlot(Yap_AddressFromSlot21655,1289995 -#define Yap_PutInSlot(Yap_PutInSlot21657,1290138 -#define Yap_PutInHandle(Yap_PutInHandle21658,1290184 -#define max(max21660,1290326 -#define ensure_handles ensure_handles21661,1290352 -#define Yap_InitHandle(Yap_InitHandle21663,1290485 -#define Yap_PushHandle(Yap_PushHandle21664,1290533 -#define Yap_InitSlot(Yap_InitSlot21665,1290581 -#define Yap_NewHandles(Yap_NewHandles21667,1290724 -#define Yap_NewSlots(Yap_NewSlots21668,1290772 -#define Yap_InitHandles(Yap_InitHandles21670,1290914 -#define Yap_InitSlots(Yap_InitSlots21671,1290964 -#define Yap_RecoverHandles(Yap_RecoverHandles21673,1291098 -#define Yap_RecoverSlots(Yap_RecoverSlots21674,1291155 -#define Yap_PopSlot(Yap_PopSlot21676,1291319 -#define Yap_PopHandle(Yap_PopHandle21677,1291362 -#define HEAP_H HEAP_H21681,1291522 -#define INT_KEYS_DEFAULT_SIZE INT_KEYS_DEFAULT_SIZE21704,1293191 -#define MAX_DLMALLOC_HOLES MAX_DLMALLOC_HOLES21705,1293252 -#define SWI_BUF_SIZE SWI_BUF_SIZE21741,1294895 -#define SWI_TMP_BUF_SIZE SWI_TMP_BUF_SIZE21742,1294939 -#define SWI_BUF_RINGS SWI_BUF_RINGS21743,1294991 -#define EXTERNALEXTERNAL21744,1295037 -#define EXTERNAL EXTERNAL21745,1295072 -#define Yap_heap_regs Yap_heap_regs21754,1295494 -#define Yap_CurrentModule(Yap_CurrentModule21756,1295603 -#define UPDATE_MODE_IMMEDIATE UPDATE_MODE_IMMEDIATE21758,1295751 -#define UPDATE_MODE_LOGICAL UPDATE_MODE_LOGICAL21759,1295813 -#define UPDATE_MODE_LOGICAL_ASSERT UPDATE_MODE_LOGICAL_ASSERT21760,1295871 -#define InitialConsultCapacity InitialConsultCapacity21761,1295943 -#define Yap_ReleasePreAllocCodeSpace(Yap_ReleasePreAllocCodeSpace21762,1296007 -#define Yap_HandleError(Yap_HandleError21770,1296234 -#define Yap_inform_profiler_of_clause(Yap_inform_profiler_of_clause21771,1296284 -#define Yap_inform_profiler_of_clause(Yap_inform_profiler_of_clause21772,1296362 -#define strncat(strncat21773,1296440 -#define strncpy(strncpy21774,1296475 -#define PROLOG_SIG PROLOG_SIG21786,1297239 -#define Yap_get_signal(Yap_get_signal21804,1298787 -#define Yap_has_a_signal(Yap_has_a_signal21805,1298834 -#define Yap_has_signals(Yap_has_signals21806,1298885 -#define Yap_only_has_signals(Yap_only_has_signals21807,1298934 -#define Yap_has_signal(Yap_has_signal21808,1298993 -#define Yap_only_has_signal(Yap_only_has_signal21809,1299040 -#define YAPTAGS_H YAPTAGS_H21816,1299379 -#define EXTERN EXTERN21817,1299415 -#define LONG_ADDRESSES LONG_ADDRESSES21818,1299445 -#define LONG_ADDRESSES LONG_ADDRESSES21819,1299491 -#undef USE_DL_MALLOCUSE_DL_MALLOC21820,1299537 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC21821,1299580 -#define USE_LOW32_TAGS USE_LOW32_TAGS21822,1299633 -#define MBIT MBIT21823,1299681 -#define RBIT RBIT21824,1299709 -#define INVERT_RBIT INVERT_RBIT21825,1299737 -#define MBIT MBIT21826,1299779 -#define RBIT RBIT21827,1299807 -#define MBIT MBIT21828,1299835 -#define MkVarTerm(MkVarTerm21829,1299863 -#define MkPairTerm(MkPairTerm21830,1299901 -#define RESET_VARIABLE(RESET_VARIABLE21832,1300034 -#define RESET_VARIABLE(RESET_VARIABLE21835,1300234 -#define IntInBnd(IntInBnd21849,1301122 -#define IntInBnd(IntInBnd21850,1301158 -#define IntInBnd(IntInBnd21851,1301194 -#define IsAccessFunc(IsAccessFunc21852,1301230 -#define MkIntegerTerm(MkIntegerTerm21853,1301274 -#define MkAddressTerm(MkAddressTerm21857,1301533 -#define ALIGN_BY_TYPE(ALIGN_BY_TYPE21866,1301935 -#define EXTERNEXTERN21867,1301979 -#define EXTERN EXTERN21868,1302008 -#define WordSize WordSize21885,1302654 -#define CellSize CellSize21886,1302689 -#define SmallSize SmallSize21887,1302724 -#define SHORT_INTS SHORT_INTS21891,1302870 -#define SHORT_INTS SHORT_INTS21892,1302910 -#define Unsigned(Unsigned21897,1303202 -#define Signed(Signed21898,1303238 -#define YAP_TEXT_HYAP_TEXT_H21901,1303290 -#define CHARCODE_MAX CHARCODE_MAX21902,1303327 -#define CHARCODE_MAX CHARCODE_MAX21903,1303369 -#define ReleaseAndReturn(ReleaseAndReturn21904,1303411 -#define release_cut_fail(release_cut_fail21905,1303461 -#define release_cut_succeed(release_cut_succeed21906,1303512 -#define min(min21907,1303569 -#define MBYTE MBYTE21908,1303594 -#define NUMBER_OF_CHARS NUMBER_OF_CHARS21909,1303623 -#define Yap_strlen(Yap_strlen21910,1303672 -#define Yap_chtype Yap_chtype21925,1304279 -#define __android_log_print(__android_log_print21928,1304477 -#define LEAD_OFFSET LEAD_OFFSET21939,1305470 -#define SURROGATE_OFFSET SURROGATE_OFFSET21940,1305512 -#define YAP_TYPE_MASK YAP_TYPE_MASK21968,1307896 -#define YATOM_H YATOM_H22107,1318499 -#define GlobalProperty GlobalProperty22145,1321666 -#define ModToTerm(ModToTerm22171,1323965 -#define ModProperty ModProperty22172,1324003 -#define M_SYSTEM M_SYSTEM22174,1324126 -#define M_CHARESCAPE M_CHARESCAPE22175,1324162 -#define DBLQ_CHARS DBLQ_CHARS22176,1324206 -#define DBLQ_ATOM DBLQ_ATOM22177,1324246 -#define DBLQ_STRING DBLQ_STRING22178,1324284 -#define DBLQ_CODES DBLQ_CODES22179,1324326 -#define DBLQ_MASK DBLQ_MASK22180,1324366 -#define BCKQ_CHARS BCKQ_CHARS22181,1324404 -#define BCKQ_ATOM BCKQ_ATOM22182,1324444 -#define BCKQ_STRING BCKQ_STRING22183,1324482 -#define BCKQ_CODES BCKQ_CODES22184,1324524 -#define BCKQ_MASK BCKQ_MASK22185,1324564 -#define UNKNOWN_FAIL UNKNOWN_FAIL22186,1324602 -#define UNKNOWN_WARNING UNKNOWN_WARNING22187,1324646 -#define UNKNOWN_ERROR UNKNOWN_ERROR22188,1324696 -#define UNKNOWN_FAST_FAIL UNKNOWN_FAST_FAIL22189,1324742 -#define UNKNOWN_ABORT UNKNOWN_ABORT22190,1324796 -#define UNKNOWN_HALT UNKNOWN_HALT22191,1324842 -#define UNKNOWN_MASK UNKNOWN_MASK22192,1324886 -#define OpProperty OpProperty22219,1327207 -#define MaskPrio MaskPrio22225,1327681 -#define DcrlpFlag DcrlpFlag22226,1327718 -#define DcrrpFlag DcrrpFlag22227,1327757 -#define ExpProperty ExpProperty22246,1328917 -#define ValProperty ValProperty22261,1330124 -#define ProfiledPredFlag ProfiledPredFlag22263,1330221 -#define DiscontiguousPredFlag DiscontiguousPredFlag22264,1330274 -#define SysExportPredFlag SysExportPredFlag22265,1330337 -#define NoTracePredFlag NoTracePredFlag22266,1330392 -#define NoSpyPredFlag NoSpyPredFlag22267,1330443 -#define QuasiQuotationPredFlag QuasiQuotationPredFlag22268,1330490 -#define MegaClausePredFlag MegaClausePredFlag22269,1330555 -#define ThreadLocalPredFlag ThreadLocalPredFlag22270,1330612 -#define MultiFileFlag MultiFileFlag22271,1330671 -#define UserCPredFlag UserCPredFlag22272,1330718 -#define LogUpdatePredFlag LogUpdatePredFlag22273,1330765 -#define InUsePredFlag InUsePredFlag22274,1330820 -#define CountPredFlag CountPredFlag22275,1330867 -#define HiddenPredFlag HiddenPredFlag22276,1330914 -#define CArgsPredFlag CArgsPredFlag22277,1330963 -#define SourcePredFlag SourcePredFlag22278,1331010 -#define MetaPredFlag MetaPredFlag22279,1331059 -#define SyncPredFlag SyncPredFlag22280,1331104 -#define NumberDBPredFlag NumberDBPredFlag22281,1331149 -#define AtomDBPredFlag AtomDBPredFlag22282,1331202 -#define TestPredFlag TestPredFlag22283,1331251 -#define AsmPredFlag AsmPredFlag22284,1331296 -#define StandardPredFlag StandardPredFlag22285,1331339 -#define DynamicPredFlag DynamicPredFlag22286,1331392 -#define CPredFlag CPredFlag22287,1331443 -#define SafePredFlag SafePredFlag22288,1331482 -#define CompiledPredFlag CompiledPredFlag22289,1331527 -#define IndexedPredFlag IndexedPredFlag22290,1331580 -#define SpiedPredFlag SpiedPredFlag22291,1331631 -#define BinaryPredFlag BinaryPredFlag22292,1331678 -#define TabledPredFlag TabledPredFlag22293,1331727 -#define SequentialPredFlag SequentialPredFlag22294,1331776 -#define BackCPredFlag BackCPredFlag22295,1331833 -#define ModuleTransparentPredFlag ModuleTransparentPredFlag22296,1331880 -#define SWIEnvPredFlag SWIEnvPredFlag22297,1331951 -#define UDIPredFlag UDIPredFlag22298,1332000 -#define SystemPredFlags SystemPredFlags22299,1332043 -#define ForeignPredFlags ForeignPredFlags22300,1332094 -#define StatePredFlags StatePredFlags22301,1332147 -#define is_system(is_system22302,1332196 -#define is_dynamic(is_dynamic22303,1332235 -#define is_foreign(is_foreign22304,1332276 -#define is_static(is_static22305,1332317 -#define is_logupd(is_logupd22306,1332356 -#define is_tabled(is_tabled22307,1332395 -#define TIMESTAMP_EOT TIMESTAMP_EOT22321,1333611 -#define TIMESTAMP_RESET TIMESTAMP_RESET22322,1333658 -#define PEProp PEProp22383,1338256 -#define DBProperty DBProperty22498,1347026 -#define CodeDBBit CodeDBBit22521,1348952 -#define CodeDBProperty CodeDBProperty22522,1348991 -#define BBProperty BBProperty22554,1351282 -#define HoldProperty HoldProperty22568,1352374 -#define TranslationProperty TranslationProperty22583,1353685 -#define MutexProperty MutexProperty22598,1354954 -#define ArrayProperty ArrayProperty22674,1359965 -#define BlobProperty BlobProperty22689,1361262 -#define FlagProperty FlagProperty22718,1363248 -#define PROLOG_MODULE PROLOG_MODULE22720,1363385 -#define PredHashInitialSize PredHashInitialSize22721,1363433 -#define PredHashIncrement PredHashIncrement22722,1363493 -#define PELOCK(PELOCK22731,1364364 -#define UNLOCKPE(UNLOCKPE22732,1364398 -#define PELOCK(PELOCK22733,1364436 -#define UNLOCKPE(UNLOCKPE22734,1364470 -#define PELOCK(PELOCK22735,1364508 -#define UNLOCKPE(UNLOCKPE22736,1364542 -#define CONTINUE_AFTER_ERROR CONTINUE_AFTER_ERROR22745,1365129 -#define ABORT_AFTER_ERROR ABORT_AFTER_ERROR22746,1365187 -#define EXIT_AFTER_ERROR EXIT_AFTER_ERROR22747,1365239 -#define _c_interface_h _c_interface_h22750,1365318 -#define CELL CELL22751,1365364 -#define Bool Bool22752,1365390 -#define Int Int22753,1365416 -#define flt flt22754,1365440 -#define Term Term22755,1365464 -#define Functor Functor22756,1365490 -#define Atom Atom22757,1365522 -#define yap_init_args yap_init_args22758,1365548 -#define A(A22759,1365592 -#define ARG1 ARG122760,1365612 -#define ARG2 ARG222761,1365639 -#define ARG3 ARG322762,1365666 -#define ARG4 ARG422763,1365693 -#define ARG5 ARG522764,1365720 -#define ARG6 ARG622765,1365747 -#define ARG7 ARG722766,1365774 -#define ARG8 ARG822767,1365801 -#define ARG9 ARG922768,1365828 -#define ARG10 ARG1022769,1365855 -#define ARG11 ARG1122770,1365884 -#define ARG12 ARG1222771,1365913 -#define ARG13 ARG1322772,1365942 -#define ARG14 ARG1422773,1365971 -#define ARG15 ARG1522774,1366000 -#define ARG16 ARG1622775,1366029 -#define Deref(Deref22776,1366058 -#define YapDeref(YapDeref22777,1366087 -#define IsVarTerm(IsVarTerm22778,1366122 -#define YapIsVarTerm(YapIsVarTerm22779,1366159 -#define IsNonVarTerm(IsNonVarTerm22780,1366202 -#define YapIsNonVarTerm(YapIsNonVarTerm22781,1366245 -#define MkVarTerm(MkVarTerm22782,1366294 -#define YapMkVarTerm(YapMkVarTerm22783,1366331 -#define IsIntTerm(IsIntTerm22784,1366374 -#define YapIsIntTerm(YapIsIntTerm22785,1366411 -#define IsFloatTerm(IsFloatTerm22786,1366454 -#define YapIsFloatTerm(YapIsFloatTerm22787,1366495 -#define IsDbRefTerm(IsDbRefTerm22788,1366542 -#define YapIsDbRefTerm(YapIsDbRefTerm22789,1366583 -#define IsAtomTerm(IsAtomTerm22790,1366630 -#define YapIsAtomTerm(YapIsAtomTerm22791,1366669 -#define IsPairTerm(IsPairTerm22792,1366714 -#define YapIsPairTerm(YapIsPairTerm22793,1366753 -#define IsApplTerm(IsApplTerm22794,1366798 -#define YapIsApplTerm(YapIsApplTerm22795,1366838 -#define MkIntTerm(MkIntTerm22796,1366884 -#define YapMkIntTerm(YapMkIntTerm22797,1366922 -#define IntOfTerm(IntOfTerm22798,1366966 -#define YapIntOfTerm(YapIntOfTerm22799,1367004 -#define MkFloatTerm(MkFloatTerm22800,1367048 -#define YapMkFloatTerm(YapMkFloatTerm22801,1367090 -#define FloatOfTerm(FloatOfTerm22802,1367138 -#define YapFloatOfTerm(YapFloatOfTerm22803,1367180 -#define MkAtomTerm(MkAtomTerm22804,1367228 -#define YapMkAtomTerm(YapMkAtomTerm22805,1367268 -#define AtomOfTerm(AtomOfTerm22806,1367314 -#define YapAtomOfTerm(YapAtomOfTerm22807,1367354 -#define LookupAtom(LookupAtom22808,1367400 -#define YapLookupAtom(YapLookupAtom22809,1367440 -#define FullLookupAtom(FullLookupAtom22810,1367486 -#define YapFullLookupAtom(YapFullLookupAtom22811,1367534 -#define AtomName(AtomName22812,1367588 -#define YapAtomName(YapAtomName22813,1367624 -#define MkPairTerm(MkPairTerm22814,1367666 -#define YapMkPairTerm(YapMkPairTerm22815,1367706 -#define MkNewPairTerm(MkNewPairTerm22816,1367752 -#define YapMkNewPairTerm(YapMkNewPairTerm22817,1367798 -#define HeadOfTerm(HeadOfTerm22818,1367850 -#define YapHeadOfTerm(YapHeadOfTerm22819,1367890 -#define TailOfTerm(TailOfTerm22820,1367936 -#define YapTailOfTerm(YapTailOfTerm22821,1367976 -#define MkApplTerm(MkApplTerm22822,1368022 -#define YapMkApplTerm(YapMkApplTerm22823,1368062 -#define MkNewApplTerm(MkNewApplTerm22824,1368108 -#define YapMkNewApplTerm(YapMkNewApplTerm22825,1368154 -#define FunctorOfTerm(FunctorOfTerm22826,1368206 -#define YapFunctorOfTerm(YapFunctorOfTerm22827,1368252 -#define ArgOfTerm(ArgOfTerm22828,1368304 -#define YapArgOfTerm(YapArgOfTerm22829,1368342 -#define MkFunctor(MkFunctor22830,1368386 -#define YapMkFunctor(YapMkFunctor22831,1368424 -#define NameOfFunctor(NameOfFunctor22832,1368468 -#define YapNameOfFunctor(YapNameOfFunctor22833,1368514 -#define ArityOfFunctor(ArityOfFunctor22834,1368566 -#define YapArityOfFunctor(YapArityOfFunctor22835,1368614 -#define PRESERVE_DATA(PRESERVE_DATA22836,1368668 -#define PRESERVED_DATA(PRESERVED_DATA22837,1368714 -#define PRESERVED_DATA_CUT(PRESERVED_DATA_CUT22838,1368762 -#define unify(unify22839,1368818 -#define YapUnify(YapUnify22840,1368848 -#define UserCPredicate(UserCPredicate22841,1368884 -#define UserBackCPredicate(UserBackCPredicate22842,1368932 -#define UserCPredicateWithArgs(UserCPredicateWithArgs22843,1368988 -#define CallProlog(CallProlog22844,1369052 -#define YapCallProlog(YapCallProlog22845,1369092 -#define cut_fail(cut_fail22846,1369138 -#define cut_succeed(cut_succeed22847,1369174 -#define AllocSpaceFromYap(AllocSpaceFromYap22848,1369216 -#define FreeSpaceFromYap(FreeSpaceFromYap22849,1369270 -#define RunGoal(RunGoal22850,1369322 -#define YapRunGoal(YapRunGoal22851,1369356 -#define RestartGoal(RestartGoal22852,1369396 -#define YapRestartGoal(YapRestartGoal22853,1369438 -#define ContinueGoal(ContinueGoal22854,1369486 -#define YapContinueGoal(YapContinueGoal22855,1369530 -#define PruneGoal(PruneGoal22856,1369580 -#define YapPruneGoal(YapPruneGoal22857,1369618 -#define GoalHasException(GoalHasException22858,1369662 -#define YapGoalHasException(YapGoalHasException22859,1369714 -#define YapReset(YapReset22860,1369772 -#define YapError(YapError22861,1369808 -#define YapRead(YapRead22862,1369844 -#define YapWrite(YapWrite22863,1369878 -#define CompileClause(CompileClause22864,1369914 -#define YapCompileClause(YapCompileClause22865,1369960 -#define YapInit(YapInit22866,1370012 -#define YapFastInit(YapFastInit22867,1370046 -#define YapInitConsult(YapInitConsult22868,1370088 -#define YapEndConsult(YapEndConsult22869,1370136 -#define YapExit(YapExit22870,1370182 -#define PutValue(PutValue22871,1370216 -#define YapPutValue(YapPutValue22872,1370252 -#define GetValue(GetValue22873,1370294 -#define YapGetValue(YapGetValue22874,1370330 -#define StringToBuffer(StringToBuffer22875,1370372 -#define YapStringToBuffer(YapStringToBuffer22876,1370420 -#define BufferToString(BufferToString22877,1370474 -#define YapBufferToString(YapBufferToString22878,1370522 -#define BufferToAtomList(BufferToAtomList22879,1370576 -#define YapBufferToAtomList(YapBufferToAtomList22880,1370628 -#define InitSocks(InitSocks22881,1370686 -#define YapInitSocks(YapInitSocks22882,1370724 -#define SFArity SFArity22883,1370768 -#define ArgsOfSFTerm(ArgsOfSFTerm22884,1370802 -#define YapSetOutputMessage(YapSetOutputMessage22885,1370846 -#define YapStreamToFileNo(YapStreamToFileNo22886,1370904 -#define YapCloseAllOpenStreams(YapCloseAllOpenStreams22887,1370958 -#define YapOpenStream(YapOpenStream22888,1371022 -#define Yap_ClauseListCount(Yap_ClauseListCount22899,1371372 -#define PL_TYPES_HPL_TYPES_H22904,1371476 -#define INT64_T_DEFINED INT64_T_DEFINED22905,1371511 -#define PL_HAVE_TERM_TPL_HAVE_TERM_T22910,1371739 -#define fid_t fid_t22924,1372574 -#define _FLI_H_INCLUDED_FLI_H_INCLUDED22927,1372632 -#define bool bool22929,1372711 -#define true true22930,1372738 -#define false false22931,1372765 -#define __WINDOWS__ __WINDOWS__22932,1372794 -#define PL_EXPORT(PL_EXPORT22933,1372835 -#define PL_EXPORT_DATA(PL_EXPORT_DATA22934,1372872 -#define install_t install_t22935,1372919 -#define WUNUSED WUNUSED22936,1372956 -#define WUNUSEDWUNUSED22937,1372990 -#define PL_THREAD_NO_DEBUG PL_THREAD_NO_DEBUG22948,1373723 -#define PL_FA_NOTRACE PL_FA_NOTRACE22967,1374937 -#define PL_FA_TRANSPARENT PL_FA_TRANSPARENT22968,1374983 -#define PL_FA_NONDETERMINISTIC PL_FA_NONDETERMINISTIC22969,1375037 -#define PL_FA_VARARGS PL_FA_VARARGS22970,1375101 -#define PL_FA_CREF PL_FA_CREF22971,1375147 -#define PL_FA_ISO PL_FA_ISO22972,1375187 -#define PL_VARIABLE PL_VARIABLE22973,1375225 -#define PL_ATOM PL_ATOM22974,1375267 -#define PL_INTEGER PL_INTEGER22975,1375301 -#define PL_FLOAT PL_FLOAT22976,1375341 -#define PL_STRING PL_STRING22977,1375377 -#define PL_TERM PL_TERM22978,1375415 -#define PL_FUNCTOR PL_FUNCTOR22979,1375449 -#define PL_LIST PL_LIST22980,1375489 -#define PL_CHARS PL_CHARS22981,1375523 -#define PL_POINTER PL_POINTER22982,1375559 -#define PL_CODE_LIST PL_CODE_LIST22983,1375599 -#define PL_CHAR_LIST PL_CHAR_LIST22984,1375643 -#define PL_BOOL PL_BOOL22985,1375687 -#define PL_FUNCTOR_CHARS PL_FUNCTOR_CHARS22986,1375721 -#define PL_PREDICATE_INDICATOR PL_PREDICATE_INDICATOR22987,1375773 -#define PL_SHORT PL_SHORT22988,1375837 -#define PL_INT PL_INT22989,1375873 -#define PL_LONG PL_LONG22990,1375905 -#define PL_DOUBLE PL_DOUBLE22991,1375939 -#define PL_NCHARS PL_NCHARS22992,1375977 -#define PL_UTF8_CHARS PL_UTF8_CHARS22993,1376015 -#define PL_UTF8_STRING PL_UTF8_STRING22994,1376061 -#define PL_INT64 PL_INT6422995,1376109 -#define PL_NUTF8_CHARS PL_NUTF8_CHARS22996,1376145 -#define PL_NUTF8_CODES PL_NUTF8_CODES22997,1376193 -#define PL_NUTF8_STRING PL_NUTF8_STRING22998,1376241 -#define PL_NWCHARS PL_NWCHARS22999,1376291 -#define PL_NWCODES PL_NWCODES23000,1376331 -#define PL_NWSTRING PL_NWSTRING23001,1376371 -#define PL_MBCHARS PL_MBCHARS23002,1376413 -#define PL_MBCODES PL_MBCODES23003,1376453 -#define PL_MBSTRING PL_MBSTRING23004,1376493 -#define PL_INTPTR PL_INTPTR23005,1376535 -#define PL_CHAR PL_CHAR23006,1376573 -#define PL_CODE PL_CODE23007,1376607 -#define PL_BYTE PL_BYTE23008,1376641 -#define PL_PARTIAL_LIST PL_PARTIAL_LIST23009,1376675 -#define PL_CYCLIC_TERM PL_CYCLIC_TERM23010,1376725 -#define PL_NOT_A_LIST PL_NOT_A_LIST23011,1376773 -#define FF_READONLY FF_READONLY23012,1376819 -#define FF_KEEP FF_KEEP23013,1376861 -#define FF_NOCREATE FF_NOCREATE23014,1376895 -#define FF_MASK FF_MASK23015,1376937 -#define CVT_ATOM CVT_ATOM23016,1376971 -#define CVT_STRING CVT_STRING23017,1377007 -#define CVT_LIST CVT_LIST23018,1377047 -#define CVT_INTEGER CVT_INTEGER23019,1377083 -#define CVT_FLOAT CVT_FLOAT23020,1377125 -#define CVT_VARIABLE CVT_VARIABLE23021,1377163 -#define CVT_NUMBER CVT_NUMBER23022,1377207 -#define CVT_ATOMIC CVT_ATOMIC23023,1377247 -#define CVT_WRITE CVT_WRITE23024,1377287 -#define CVT_WRITE_CANONICAL CVT_WRITE_CANONICAL23025,1377325 -#define CVT_WRITEQ CVT_WRITEQ23026,1377383 -#define CVT_ALL CVT_ALL23027,1377423 -#define CVT_MASK CVT_MASK23028,1377457 -#define CVT_EXCEPTION CVT_EXCEPTION23029,1377493 -#define CVT_VARNOFAIL CVT_VARNOFAIL23030,1377539 -#define BUF_DISCARDABLE BUF_DISCARDABLE23031,1377585 -#define BUF_RING BUF_RING23032,1377635 -#define BUF_MALLOC BUF_MALLOC23033,1377671 -#define PL_ENGINE_MAIN PL_ENGINE_MAIN23034,1377711 -#define PL_ENGINE_CURRENT PL_ENGINE_CURRENT23035,1377759 -#define PL_ENGINE_SET PL_ENGINE_SET23036,1377813 -#define PL_ENGINE_INVAL PL_ENGINE_INVAL23037,1377859 -#define PL_ENGINE_INUSE PL_ENGINE_INUSE23038,1377909 -#define PL_ACTION_TRACE PL_ACTION_TRACE23039,1377959 -#define PL_ACTION_DEBUG PL_ACTION_DEBUG23040,1378009 -#define PL_ACTION_BACKTRACE PL_ACTION_BACKTRACE23041,1378059 -#define PL_ACTION_BREAK PL_ACTION_BREAK23042,1378117 -#define PL_ACTION_HALT PL_ACTION_HALT23043,1378167 -#define PL_ACTION_ABORT PL_ACTION_ABORT23044,1378215 -#define PL_ACTION_WRITE PL_ACTION_WRITE23045,1378265 -#define PL_ACTION_FLUSH PL_ACTION_FLUSH23046,1378315 -#define PL_ACTION_GUIAPP PL_ACTION_GUIAPP23047,1378365 -#define PL_ACTION_ATTACH_CONSOLE PL_ACTION_ATTACH_CONSOLE23048,1378417 -#define PRED_IMPL(PRED_IMPL23061,1379237 -#define CTX_CNTRL CTX_CNTRL23062,1379275 -#define CTX_PTR CTX_PTR23063,1379313 -#define CTX_INT CTX_INT23064,1379347 -#define CTX_ARITY CTX_ARITY23065,1379381 -#define BeginPredDefs(BeginPredDefs23066,1379419 -#define PRED_DEF(PRED_DEF23067,1379465 -#define EndPredDefs EndPredDefs23068,1379501 -#define FRG_REDO_MASK FRG_REDO_MASK23069,1379543 -#define FRG_REDO_BITS FRG_REDO_BITS23070,1379589 -#define REDO_INT REDO_INT23071,1379635 -#define REDO_PTR REDO_PTR23072,1379671 -#define ForeignRedoIntVal(ForeignRedoIntVal23073,1379707 -#define ForeignRedoPtrVal(ForeignRedoPtrVal23074,1379761 -#define ForeignRedoInt(ForeignRedoInt23075,1379815 -#define ForeignRedoPtr(ForeignRedoPtr23076,1379863 -#define ForeignControl(ForeignControl23077,1379911 -#define ForeignContextInt(ForeignContextInt23078,1379959 -#define ForeignContextPtr(ForeignContextPtr23079,1380013 -#define ForeignEngine(ForeignEngine23080,1380067 -#define FRG(FRG23081,1380113 -#define LFRG(LFRG23082,1380139 -#define REP_ISO_LATIN_1 REP_ISO_LATIN_123083,1380167 -#define REP_UTF8 REP_UTF823084,1380217 -#define REP_MB REP_MB23085,1380253 -#define REP_FN REP_FN23086,1380285 -#define REP_FN REP_FN23087,1380317 -#define PL_DIFF_LIST PL_DIFF_LIST23088,1380349 -#define PL_open_stream PL_open_stream23089,1380393 -#define Suser_input Suser_input23091,1380501 -#define Suser_output Suser_output23092,1380544 -#define Suser_error Suser_error23093,1380589 -#define PL_WRT_QUOTED PL_WRT_QUOTED23094,1380632 -#define PL_WRT_IGNOREOPS PL_WRT_IGNOREOPS23095,1380679 -#define PL_WRT_NUMBERVARS PL_WRT_NUMBERVARS23096,1380732 -#define PL_WRT_PORTRAY PL_WRT_PORTRAY23097,1380787 -#define PL_WRT_CHARESCAPES PL_WRT_CHARESCAPES23098,1380836 -#define PL_WRT_BACKQUOTED_STRING PL_WRT_BACKQUOTED_STRING23099,1380893 -#define PL_WRT_ATTVAR_IGNORE PL_WRT_ATTVAR_IGNORE23100,1380962 -#define PL_WRT_ATTVAR_DOTS PL_WRT_ATTVAR_DOTS23101,1381023 -#define PL_WRT_ATTVAR_WRITE PL_WRT_ATTVAR_WRITE23102,1381080 -#define PL_WRT_ATTVAR_PORTRAY PL_WRT_ATTVAR_PORTRAY23103,1381139 -#define PL_WRT_ATTVAR_MASK PL_WRT_ATTVAR_MASK23104,1381202 -#define PL_WRT_BLOB_PORTRAY PL_WRT_BLOB_PORTRAY23105,1381259 -#define PL_WRT_NO_CYCLES PL_WRT_NO_CYCLES23106,1381318 -#define PL_WRT_LIST PL_WRT_LIST23107,1381371 -#define PL_WRT_NEWLINE PL_WRT_NEWLINE23108,1381414 -#define PL_WRT_VARNAMES PL_WRT_VARNAMES23109,1381463 -#define PL_NOTTY PL_NOTTY23110,1381514 -#define PL_RAWTTY PL_RAWTTY23111,1381551 -#define PL_COOKEDTTY PL_COOKEDTTY23112,1381590 -#define PL_Q_DEBUG PL_Q_DEBUG23114,1381688 -#define PL_Q_NORMAL PL_Q_NORMAL23115,1381729 -#define PL_Q_NODEBUG PL_Q_NODEBUG23116,1381772 -#define PL_Q_CATCH_EXCEPTION PL_Q_CATCH_EXCEPTION23117,1381817 -#define PL_Q_PASS_EXCEPTION PL_Q_PASS_EXCEPTION23118,1381878 -#define PL_Q_DETERMINISTIC PL_Q_DETERMINISTIC23119,1381937 -#define PL_fail PL_fail23120,1381994 -#define PL_succeed PL_succeed23121,1382029 -#define GP_NAMEARITY GP_NAMEARITY23158,1384288 -#define PL_SIGSYNC PL_SIGSYNC23170,1385018 -#define PL_SIGNOFRAME PL_SIGNOFRAME23171,1385059 -#define PL_FILE_ABSOLUTE PL_FILE_ABSOLUTE23172,1385106 -#define PL_FILE_OSPATH PL_FILE_OSPATH23173,1385159 -#define PL_FILE_SEARCH PL_FILE_SEARCH23174,1385208 -#define PL_FILE_EXIST PL_FILE_EXIST23175,1385257 -#define PL_FILE_READ PL_FILE_READ23176,1385304 -#define PL_FILE_WRITE PL_FILE_WRITE23177,1385349 -#define PL_FILE_EXECUTE PL_FILE_EXECUTE23178,1385396 -#define PL_FILE_NOERRORS PL_FILE_NOERRORS23179,1385447 -#define PL_DISPATCH_NOWAIT PL_DISPATCH_NOWAIT23180,1385500 -#define PL_DISPATCH_WAIT PL_DISPATCH_WAIT23181,1385557 -#define PL_DISPATCH_INSTALLED PL_DISPATCH_INSTALLED23182,1385610 -#define PL_MSG_EXCEPTION_RAISED PL_MSG_EXCEPTION_RAISED23184,1385771 -#define PL_MSG_IGNORED PL_MSG_IGNORED23185,1385838 -#define PL_MSG_HANDLED PL_MSG_HANDLED23186,1385887 -#undef BindBind23187,1385936 -#define PL_QUERY_ARGC PL_QUERY_ARGC23188,1385963 -#define PL_QUERY_ARGV PL_QUERY_ARGV23189,1386010 -#define PL_QUERY_GETC PL_QUERY_GETC23190,1386057 -#define PL_QUERY_MAX_INTEGER PL_QUERY_MAX_INTEGER23191,1386104 -#define PL_QUERY_MIN_INTEGER PL_QUERY_MIN_INTEGER23192,1386165 -#define PL_QUERY_MAX_TAGGED_INT PL_QUERY_MAX_TAGGED_INT23193,1386226 -#define PL_QUERY_MIN_TAGGED_INT PL_QUERY_MIN_TAGGED_INT23194,1386293 -#define PL_QUERY_VERSION PL_QUERY_VERSION23195,1386360 -#define PL_QUE_MAX_THREADS PL_QUE_MAX_THREADS23196,1386413 -#define PL_QUERY_ENCODING PL_QUERY_ENCODING23197,1386470 -#define PL_QUERY_USER_CPU PL_QUERY_USER_CPU23198,1386525 -#define PL_QUERY_HALTING PL_QUERY_HALTING23199,1386580 -#define PL_set_feature PL_set_feature23204,1386893 -#define PL_BLOB_MAGIC_B PL_BLOB_MAGIC_B23205,1386942 -#define PL_BLOB_VERSION PL_BLOB_VERSION23206,1386993 -#define PL_BLOB_MAGIC PL_BLOB_MAGIC23207,1387044 -#define PL_BLOB_UNIQUE PL_BLOB_UNIQUE23208,1387091 -#define PL_BLOB_TEXT PL_BLOB_TEXT23209,1387140 -#define PL_BLOB_NOCOPY PL_BLOB_NOCOPY23210,1387185 -#define PL_BLOB_WCHAR PL_BLOB_WCHAR23211,1387234 -#define PL_FIRST_CALL PL_FIRST_CALL23251,1389730 -#define PL_CUTTED PL_CUTTED23252,1389777 -#define PL_PRUNED PL_PRUNED23253,1389816 -#define PL_REDO PL_REDO23254,1389855 -#define PL_retry(PL_retry23255,1389890 -#define PL_retry_address(PL_retry_address23256,1389927 -#define VFS_H VFS_H23302,1392071 -#define uid_t uid_t23303,1392099 -#define gid_t gid_t23304,1392127 -#define _YAPDEFS_H _YAPDEFS_H23400,1398134 -#define TermZERO TermZERO23401,1398172 -#define bool bool23403,1398239 -#define false false23404,1398266 -#define true true23405,1398295 -#define TRUE TRUE23406,1398322 -#define FALSE FALSE23407,1398349 -#define YAP_CELL YAP_CELL23409,1398418 -#define YAP_Term YAP_Term23410,1398453 -#define YAP_Arity YAP_Arity23411,1398488 -#define YAP_Module YAP_Module23412,1398525 -#define YAP_Functor YAP_Functor23413,1398564 -#define YAP_Atom YAP_Atom23414,1398605 -#define YAP_Int YAP_Int23415,1398640 -#define YAP_UInt YAP_UInt23416,1398673 -#define YAP_Float YAP_Float23417,1398708 -#define YAP_handle_t YAP_handle_t23418,1398745 -#define YAP_PredEntryPtr YAP_PredEntryPtr23419,1398789 -#define YAP_UserCPred YAP_UserCPred23420,1398841 -#define YAP_agc_hook YAP_agc_hook23421,1398887 -#define YAP_encoding_t YAP_encoding_t23422,1398931 -#define TRUE TRUE23438,1399685 -#define FALSE FALSE23439,1399713 -#define YAP_ANY_FILE YAP_ANY_FILE23469,1401183 -#define YAP_BOOT_FROM_SAVED_CODE YAP_BOOT_FROM_SAVED_CODE23486,1401975 -#define YAP_BOOT_FROM_SAVED_STACKS YAP_BOOT_FROM_SAVED_STACKS23487,1402043 -#define YAP_BOOT_ERROR YAP_BOOT_ERROR23488,1402115 -#define YAP_WRITE_QUOTED YAP_WRITE_QUOTED23489,1402163 -#define YAP_WRITE_IGNORE_OPS YAP_WRITE_IGNORE_OPS23490,1402215 -#define YAP_WRITE_HANDLE_VARS YAP_WRITE_HANDLE_VARS23491,1402275 -#define YAP_WRITE_USE_PORTRAY YAP_WRITE_USE_PORTRAY23492,1402337 -#define YAP_WRITE_HANDLE_CYCLES YAP_WRITE_HANDLE_CYCLES23493,1402399 -#define YAP_WRITE_BACKQUOTE_STRING YAP_WRITE_BACKQUOTE_STRING23494,1402465 -#define YAP_WRITE_ATTVAR_NONE YAP_WRITE_ATTVAR_NONE23495,1402537 -#define YAP_WRITE_ATTVAR_DOTS YAP_WRITE_ATTVAR_DOTS23496,1402599 -#define YAP_WRITE_ATTVAR_PORTRAY YAP_WRITE_ATTVAR_PORTRAY23497,1402661 -#define YAP_WRITE_BLOB_PORTRAY YAP_WRITE_BLOB_PORTRAY23498,1402729 -#define YAP_CONSULT_MODE YAP_CONSULT_MODE23499,1402793 -#define YAP_RECONSULT_MODE YAP_RECONSULT_MODE23500,1402845 -#define YAP_BOOT_MODE YAP_BOOT_MODE23501,1402901 -#define YAP_MAX_YPP_DEFS YAP_MAX_YPP_DEFS23565,1406530 -#define YAP_ERROR_H YAP_ERROR_H23688,1414242 -#define ECLASS(ECLASS23689,1414282 -#define E0(E023690,1414312 -#define E(E23691,1414334 -#define E2(E223692,1414354 -#define BEGIN_ERRORS(BEGIN_ERRORS23693,1414376 -#define END_ERRORS(END_ERRORS23694,1414418 -#define BEGIN_ERROR_CLASSES(BEGIN_ERROR_CLASSES23695,1414456 -#define END_ERROR_CLASSES(END_ERROR_CLASSES23696,1414512 -#define MAX_ERROR_MSG_SIZE MAX_ERROR_MSG_SIZE23697,1414565 -#define Yap_NilError(Yap_NilError23698,1414620 -#define Yap_Error(Yap_Error23699,1414663 -#define Yap_ThrowError(Yap_ThrowError23700,1414700 -#define Yap_ensure_atom(Yap_ensure_atom23701,1414747 -#define JMP_LOCAL_ERROR(JMP_LOCAL_ERROR23703,1414903 -#define LOCAL_ERROR(LOCAL_ERROR23704,1414952 -#define LOCAL_TERM_ERROR(LOCAL_TERM_ERROR23705,1414993 -#define AUX_ERROR(AUX_ERROR23706,1415045 -#define AUX_TERM_ERROR(AUX_TERM_ERROR23707,1415083 -#define JMP_AUX_ERROR(JMP_AUX_ERROR23708,1415131 -#define HEAP_ERROR(HEAP_ERROR23709,1415177 -#define HEAP_TERM_ERROR(HEAP_TERM_ERROR23710,1415217 -#define JMP_HEAP_ERROR(JMP_HEAP_ERROR23711,1415267 -#define LOCAL_Error_TYPE LOCAL_Error_TYPE23712,1415315 -#define LOCAL_Error_File LOCAL_Error_File23713,1415367 -#define LOCAL_Error_Function LOCAL_Error_Function23714,1415419 -#define LOCAL_Error_Lineno LOCAL_Error_Lineno23715,1415479 -#define LOCAL_Error_Size LOCAL_Error_Size23716,1415535 -#define LOCAL_BallTerm LOCAL_BallTerm23717,1415587 -#define LOCAL_ErrorMessage LOCAL_ErrorMessage23718,1415635 -#define Int_FORMAT Int_FORMAT23725,1415805 -#define UInt_FORMAT UInt_FORMAT23726,1415841 -#define Int_F Int_F23727,1415880 -#define UInt_F UInt_F23728,1415908 -#define UXInt_F UXInt_F23729,1415938 -#define Sizet_F Sizet_F23730,1415970 -#define Int_FORMAT Int_FORMAT23733,1416069 -#define UInt_FORMAT UInt_FORMAT23734,1416107 -#define Int_F Int_F23735,1416147 -#define UInt_F UInt_F23736,1416175 -#define UInt_FORMAT UInt_FORMAT23737,1416205 -#define UXInt_FORMAT UXInt_FORMAT23738,1416245 -#define Sizet_F Sizet_F23739,1416287 -#define Int_FORMAT Int_FORMAT23740,1416319 -#define Int_ANYFORMAT Int_ANYFORMAT23741,1416357 -#define UInt_FORMAT UInt_FORMAT23742,1416401 -#define Int_F Int_F23743,1416441 -#define Int_ANYF Int_ANYF23744,1416469 -#define UInt_F UInt_F23745,1416503 -#define UXInt_F UXInt_F23746,1416533 -#define Sizet_F Sizet_F23747,1416565 -#define Int_FORMAT Int_FORMAT23750,1416674 -#define UInt_FORMAT UInt_FORMAT23751,1416712 -#define Int_F Int_F23752,1416752 -#define UInt_F UInt_F23753,1416780 -#define UXInt_F UXInt_F23754,1416810 -#define Sizet_F Sizet_F23755,1416842 -#define Int_FORMAT Int_FORMAT23758,1416943 -#define UInt_FORMAT UInt_FORMAT23759,1416982 -#define Int_F Int_F23760,1417023 -#define UInt_F UInt_F23761,1417052 -#define UXInt_F UXInt_F23762,1417083 -#define Sizet_F Sizet_F23763,1417116 -#define _yap_c_interface_h _yap_c_interface_h23766,1417179 -#define __YAP_PROLOG__ __YAP_PROLOG__23767,1417233 -#define YAPVERSION YAPVERSION23768,1417279 -#undef __BEGIN_DECLS__BEGIN_DECLS23769,1417317 -#undef __END_DECLS__END_DECLS23770,1417360 -#define __BEGIN_DECLS __BEGIN_DECLS23771,1417399 -#define __END_DECLS __END_DECLS23772,1417444 -#define __BEGIN_DECLS __BEGIN_DECLS23773,1417485 -#define __END_DECLS __END_DECLS23774,1417530 -#define YAP_Deref(YAP_Deref23775,1417571 -#define YAP_ARG1 YAP_ARG123776,1417608 -#define YAP_ARG2 YAP_ARG223777,1417643 -#define YAP_ARG3 YAP_ARG323778,1417678 -#define YAP_ARG4 YAP_ARG423779,1417713 -#define YAP_ARG5 YAP_ARG523780,1417748 -#define YAP_ARG6 YAP_ARG623781,1417783 -#define YAP_ARG7 YAP_ARG723782,1417818 -#define YAP_ARG8 YAP_ARG823783,1417853 -#define YAP_ARG9 YAP_ARG923784,1417888 -#define YAP_ARG10 YAP_ARG1023785,1417923 -#define YAP_ARG11 YAP_ARG1123786,1417960 -#define YAP_ARG12 YAP_ARG1223787,1417997 -#define YAP_ARG13 YAP_ARG1323788,1418035 -#define YAP_ARG14 YAP_ARG1423789,1418073 -#define YAP_ARG15 YAP_ARG1523790,1418111 -#define YAP_ARG16 YAP_ARG1623791,1418149 -#define YAP_PRESERVE_DATA(YAP_PRESERVE_DATA23792,1418187 -#define YAP_PRESERVED_DATA(YAP_PRESERVED_DATA23793,1418241 -#define YAP_PRESERVED_DATA_CUT(YAP_PRESERVED_DATA_CUT23794,1418297 -#define YAP_cut_succeed(YAP_cut_succeed23795,1418361 -#define YAP_cut_fail(YAP_cut_fail23796,1418411 -#define IOSTREAM IOSTREAM23797,1418455 -#define SFArity SFArity23798,1418492 -#define YAP_LookupModule(YAP_LookupModule23799,1418527 -#define YAP_ModuleName(YAP_ModuleName23800,1418580 -#define YAP_InitCPred(YAP_InitCPred23801,1418629 -#define YAP_REGS_H YAP_REGS_H23804,1418700 -#define _XOPEN_SOURCE _XOPEN_SOURCE23805,1418736 -#define TrailTerm(TrailTerm23812,1418988 -#define TrailTerm(TrailTerm23814,1419066 -#define YAPSTREAMS_H YAPSTREAMS_H23821,1419287 -#define YAP_ERROR YAP_ERROR23822,1419329 -#define MaxStreams MaxStreams23823,1419365 -#define EXPAND_FILENAME EXPAND_FILENAME23824,1419403 -#define StdInStream StdInStream23825,1419451 -#define StdOutStream StdOutStream23826,1419491 -#define StdErrStream StdErrStream23827,1419533 -#define ALIASES_BLOCK_SIZE ALIASES_BLOCK_SIZE23828,1419575 -#define USE_SOCKET USE_SOCKET23829,1419629 -#define HAVE_SOCKET HAVE_SOCKET23830,1419667 -#define RD_MAGIC RD_MAGIC23848,1420877 -#define HAVE_FMEMOPEN HAVE_FMEMOPEN23930,1426403 -#define HAVE_OPEN_MEMSTREAM HAVE_OPEN_MEMSTREAM23931,1426449 -#undef HAVE_FMEMOPENHAVE_FMEMOPEN23932,1426507 -#undef HAVE_OPEN_MEMSTREAMHAVE_OPEN_MEMSTREAM23933,1426551 -#define MAY_READ MAY_READ23934,1426607 -#define MAY_READ MAY_READ23935,1426643 -#define MAY_WRITE MAY_WRITE23936,1426679 -#undef MAY_WRITEMAY_WRITE23937,1426717 -#undef MAY_READMAY_READ23938,1426753 -#define Quote_illegal_f Quote_illegal_f23960,1428040 -#define Ignore_ops_f Ignore_ops_f23961,1428090 -#define Handle_vars_f Handle_vars_f23962,1428134 -#define Use_portray_f Use_portray_f23963,1428180 -#define To_heap_f To_heap_f23964,1428226 -#define Unfold_cyclics_f Unfold_cyclics_f23965,1428264 -#define Use_SWI_Stream_f Use_SWI_Stream_f23966,1428316 -#define BackQuote_String_f BackQuote_String_f23967,1428368 -#define AttVar_None_f AttVar_None_f23968,1428424 -#define AttVar_Dots_f AttVar_Dots_f23969,1428470 -#define AttVar_Portray_f AttVar_Portray_f23970,1428516 -#define Blob_Portray_f Blob_Portray_f23971,1428568 -#define No_Escapes_f No_Escapes_f23972,1428616 -#define No_Brace_Terms_f No_Brace_Terms_f23973,1428660 -#define Fullstop_f Fullstop_f23974,1428712 -#define New_Line_f New_Line_f23975,1428752 -#define PLGETC_BUF_SIZE PLGETC_BUF_SIZE23987,1429225 - #define OPCODE(OPCODE26435,1558646 - #undef OPCODEOPCODE26436,1558678 - #define BBLOCK(BBLOCK26438,1558773 - #undef BBLOCKBBLOCK26439,1558806 -#define X_API X_API26442,1558869 -#define X_APIX_API26443,1558896 - #define OPCODE(OPCODE26451,1559250 - #undef OPCODEOPCODE26452,1559284 - #define BBLOCK(BBLOCK26453,1559316 - #undef BBLOCKBBLOCK26454,1559350 -#define USER_SWITCH_END USER_SWITCH_END26462,1559609 -#define SWITCH_ON_TYPE_INSTINIT SWITCH_ON_TYPE_INSTINIT26463,1559657 -#define SWITCH_ON_TYPE_END SWITCH_ON_TYPE_END26464,1559721 -#define SWITCH_LIST_NL_INSTINIT SWITCH_LIST_NL_INSTINIT26465,1559776 -#define SWITCH_LIST_NL_INSTINIT SWITCH_LIST_NL_INSTINIT26466,1559841 -#define SWITCH_LIST_NL_END SWITCH_LIST_NL_END26467,1559907 -#define SWITCH_ON_ARG_TYPE_INSTINIT SWITCH_ON_ARG_TYPE_INSTINIT26468,1559964 -#define SWITCH_ON_ARG_TYPE_END SWITCH_ON_ARG_TYPE_END26469,1560039 -#define SWITCH_ON_SUB_ARG_TYPE_INSTINIT SWITCH_ON_SUB_ARG_TYPE_INSTINIT26470,1560104 -#define SWITCH_ON_SUB_ARG_TYPE_END SWITCH_ON_SUB_ARG_TYPE_END26471,1560187 -#define JUMP_IF_VAR_INSTINIT JUMP_IF_VAR_INSTINIT26472,1560260 -#define JUMP_IF_VAR_END JUMP_IF_VAR_END26473,1560321 -#define JUMP_IF_NONVAR_INSTINIT JUMP_IF_NONVAR_INSTINIT26474,1560372 -#define JUMP_IF_NONVAR_END JUMP_IF_NONVAR_END26475,1560439 -#define IF_NOT_THEN_INSTINIT IF_NOT_THEN_INSTINIT26476,1560496 -#define IF_NOT_THEN_END IF_NOT_THEN_END26477,1560557 -#define HRASH_SHIFT HRASH_SHIFT26478,1560608 -#define SWITCH_ON_FUNC_INSTINIT SWITCH_ON_FUNC_INSTINIT26479,1560651 -#define SWITCH_ON_FUNC_END SWITCH_ON_FUNC_END26480,1560718 -#define SWITCH_ON_CONS_INSTINIT SWITCH_ON_CONS_INSTINIT26481,1560775 -#define SWITCH_ON_CONS_END SWITCH_ON_CONS_END26482,1560842 -#define GO_ON_FUNC_INSTINIT GO_ON_FUNC_INSTINIT26483,1560899 -#define GO_ON_FUNC_END GO_ON_FUNC_END26484,1560958 -#define GO_ON_CONS_INSTINIT GO_ON_CONS_INSTINIT26485,1561007 -#define GO_ON_CONS_END GO_ON_CONS_END26486,1561066 -#define IF_FUNC_INSTINIT IF_FUNC_INSTINIT26487,1561115 -#define IF_FUNC_END IF_FUNC_END26488,1561168 -#define IF_CONS_INSTINIT IF_CONS_INSTINIT26489,1561211 -#define IF_CONS_END IF_CONS_END26490,1561264 -#define INDEX_DBREF_INSTINIT INDEX_DBREF_INSTINIT26491,1561307 -#define INDEX_DBREF_END INDEX_DBREF_END26492,1561368 -#define INDEX_BLOB_INSTINIT INDEX_BLOB_INSTINIT26493,1561419 -#define INDEX_BLOB_END INDEX_BLOB_END26494,1561478 -#define INDEX_LONG_INSTINIT INDEX_LONG_INSTINIT26495,1561527 -#define INDEX_LONG_END INDEX_LONG_END26496,1561586 -#define USER_SWITCH_INSTINIT USER_SWITCH_INSTINIT26499,1561667 -#define USER_SWITCH_END USER_SWITCH_END26500,1561722 -#define SWITCH_ON_TYPE_INSTINIT SWITCH_ON_TYPE_INSTINIT26501,1561770 -#define SWITCH_ON_TYPE_END SWITCH_ON_TYPE_END26502,1561834 -#define SWITCH_LIST_NL_INSTINIT SWITCH_LIST_NL_INSTINIT26503,1561889 -#define SWITCH_LIST_NL_INSTINIT SWITCH_LIST_NL_INSTINIT26504,1561954 -#define SWITCH_LIST_NL_END SWITCH_LIST_NL_END26505,1562020 -#define SWITCH_ON_ARG_TYPE_INSTINIT SWITCH_ON_ARG_TYPE_INSTINIT26506,1562076 -#define SWITCH_ON_ARG_TYPE_END SWITCH_ON_ARG_TYPE_END26507,1562150 -#define SWITCH_ON_SUB_ARG_TYPE_INSTINIT SWITCH_ON_SUB_ARG_TYPE_INSTINIT26508,1562214 -#define SWITCH_ON_SUB_ARG_TYPE_END SWITCH_ON_SUB_ARG_TYPE_END26509,1562296 -#define JUMP_IF_VAR_INSTINIT JUMP_IF_VAR_INSTINIT26510,1562368 -#define JUMP_IF_VAR_END JUMP_IF_VAR_END26511,1562428 -#define JUMP_IF_NONVAR_INSTINIT JUMP_IF_NONVAR_INSTINIT26512,1562478 -#define JUMP_IF_NONVAR_END JUMP_IF_NONVAR_END26513,1562544 -#define IF_NOT_THEN_INSTINIT IF_NOT_THEN_INSTINIT26514,1562600 -#define IF_NOT_THEN_END IF_NOT_THEN_END26515,1562660 -#define HRASH_SHIFT HRASH_SHIFT26516,1562711 -#define SWITCH_ON_FUNC_INSTINIT SWITCH_ON_FUNC_INSTINIT26517,1562754 -#define SWITCH_ON_FUNC_END SWITCH_ON_FUNC_END26518,1562821 -#define SWITCH_ON_CONS_INSTINIT SWITCH_ON_CONS_INSTINIT26519,1562878 -#define SWITCH_ON_CONS_END SWITCH_ON_CONS_END26520,1562945 -#define GO_ON_FUNC_INSTINIT GO_ON_FUNC_INSTINIT26521,1563002 -#define GO_ON_FUNC_END GO_ON_FUNC_END26522,1563061 -#define GO_ON_CONS_INSTINIT GO_ON_CONS_INSTINIT26523,1563110 -#define GO_ON_CONS_END GO_ON_CONS_END26524,1563169 -#define IF_FUNC_INSTINIT IF_FUNC_INSTINIT26525,1563218 -#define IF_FUNC_END IF_FUNC_END26526,1563271 -#define IF_CONS_INSTINIT IF_CONS_INSTINIT26527,1563314 -#define IF_CONS_END IF_CONS_END26528,1563367 -#define INDEX_DBREF_INSTINIT INDEX_DBREF_INSTINIT26529,1563410 -#define INDEX_DBREF_END INDEX_DBREF_END26530,1563471 -#define INDEX_BLOB_INSTINIT INDEX_BLOB_INSTINIT26531,1563522 -#define INDEX_BLOB_END INDEX_BLOB_END26532,1563581 -#define INDEX_LONG_INSTINIT INDEX_LONG_INSTINIT26533,1563630 -#define INDEX_LONG_END INDEX_LONG_END26534,1563689 -#define TRY_ME_INSTINIT TRY_ME_INSTINIT26537,1563768 -#define TRY_ME_YAPOR TRY_ME_YAPOR26538,1563813 -#define TRY_ME_END TRY_ME_END26539,1563855 -#define RETRY_ME_INSTINIT RETRY_ME_INSTINIT26540,1563893 -#define RETRY_ME_FROZEN RETRY_ME_FROZEN26541,1563945 -#define RETRY_ME_NOFROZEN RETRY_ME_NOFROZEN26542,1563993 -#define RETRY_ME_END RETRY_ME_END26543,1564045 -#define TRUST_ME_INSTINIT TRUST_ME_INSTINIT26544,1564087 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF26545,1564140 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF26546,1564193 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF26547,1564246 -#define TRUST_ME_IF TRUST_ME_IF26548,1564299 -#define TRUST_ME_END TRUST_ME_END26549,1564340 -#define ENTER_PROFILING_INSTINIT ENTER_PROFILING_INSTINIT26550,1564383 -#define RETRY_PROFILED_INSTINIT RETRY_PROFILED_INSTINIT26551,1564451 -#define PROFILED_RETRY_ME_INSTINIT PROFILED_RETRY_ME_INSTINIT26552,1564517 -#define PROFILED_RETRY_ME_FROZEN PROFILED_RETRY_ME_FROZEN26553,1564589 -#define PROFILED_RETRY_ME_NOFROZEN PROFILED_RETRY_ME_NOFROZEN26554,1564657 -#define PROFILED_RETRY_ME_END PROFILED_RETRY_ME_END26555,1564729 -#define PROFILED_TRUST_ME_INSTINIT PROFILED_TRUST_ME_INSTINIT26556,1564791 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF26557,1564863 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF26558,1564923 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF26559,1564983 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF26560,1565043 -#define PROFILED_TRUST_ME_END PROFILED_TRUST_ME_END26561,1565103 -#define PROFILED_RETRY_LOGICAL_INSTINIT PROFILED_RETRY_LOGICAL_INSTINIT26562,1565165 -#define PROFILED_RETRY_LOGICAL_THREADS PROFILED_RETRY_LOGICAL_THREADS26563,1565247 -#define PROFILED_RETRY_LOGICAL_POST_THREADS PROFILED_RETRY_LOGICAL_POST_THREADS26564,1565327 -#define PROFILED_RETRY_LOGICAL_FROZEN PROFILED_RETRY_LOGICAL_FROZEN26565,1565417 -#define PROFILED_RETRY_LOGICAL_NOFROZEN PROFILED_RETRY_LOGICAL_NOFROZEN26566,1565495 -#define PROFILED_RETRY_LOGICAL_END PROFILED_RETRY_LOGICAL_END26567,1565577 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26568,1565649 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26569,1565731 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26570,1565813 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26571,1565895 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26572,1565978 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26573,1566061 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26574,1566144 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26575,1566227 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26576,1566310 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26577,1566393 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26578,1566476 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26579,1566559 -#define PROFILED_TRUST_LOGICAL_END PROFILED_TRUST_LOGICAL_END26580,1566642 -#define TRY_CLAUSE_INSTINIT TRY_CLAUSE_INSTINIT26581,1566715 -#define TRY_CLAUSE_YAPOR TRY_CLAUSE_YAPOR26582,1566774 -#define TRY_CLAUSE_END TRY_CLAUSE_END26583,1566827 -#define TRY_CLAUSE2_INSTINIT TRY_CLAUSE2_INSTINIT26584,1566876 -#define TRY_CLAUSE2_YAPOR TRY_CLAUSE2_YAPOR26585,1566937 -#define TRY_CLAUSE2_END TRY_CLAUSE2_END26586,1566992 -#define TRY_CLAUSE3_INSTINIT TRY_CLAUSE3_INSTINIT26587,1567043 -#define TRY_CLAUSE3_YAPOR TRY_CLAUSE3_YAPOR26588,1567104 -#define TRY_CLAUSE3_END TRY_CLAUSE3_END26589,1567160 -#define TRY_CLAUSE4_INSTINIT TRY_CLAUSE4_INSTINIT26590,1567212 -#define TRY_CLAUSE4_YAPOR TRY_CLAUSE4_YAPOR26591,1567274 -#define TRY_CLAUSE4_END TRY_CLAUSE4_END26592,1567330 -#define RETRY_INSTINIT RETRY_INSTINIT26593,1567382 -#define RETRY_FROZEN RETRY_FROZEN26594,1567432 -#define RETRY_NOFROZEN RETRY_NOFROZEN26595,1567478 -#define RETRY_END RETRY_END26596,1567528 -#define RETRY2_INSTINIT RETRY2_INSTINIT26597,1567568 -#define RETRY2_FROZEN RETRY2_FROZEN26598,1567620 -#define RETRY2_NOFROZEN RETRY2_NOFROZEN26599,1567668 -#define RETRY2_END RETRY2_END26600,1567720 -#define RETRY3_INSTINIT RETRY3_INSTINIT26601,1567762 -#define RETRY3_FROZEN RETRY3_FROZEN26602,1567814 -#define RETRY3_NOFROZEN RETRY3_NOFROZEN26603,1567862 -#define RETRY3_END RETRY3_END26604,1567914 -#define RETRY4_INSTINIT RETRY4_INSTINIT26605,1567956 -#define RETRY4_FROZEN RETRY4_FROZEN26606,1568008 -#define RETRY4_NOFROZEN RETRY4_NOFROZEN26607,1568056 -#define RETRY4_END RETRY4_END26608,1568108 -#define TRUST_INSTINIT TRUST_INSTINIT26609,1568150 -#define TRUST_IFOK_INIT TRUST_IFOK_INIT26610,1568200 -#define TRUST_IFOK_FROZEN TRUST_IFOK_FROZEN26611,1568252 -#define TRUST_IFOK_END TRUST_IFOK_END26612,1568308 -#define TRUST_NOIF_INIT TRUST_NOIF_INIT26613,1568358 -#define TRUST_NOIF_FROZEN TRUST_NOIF_FROZEN26614,1568410 -#define TRUST_END TRUST_END26615,1568466 -#define TRY_IN_INSTINIT TRY_IN_INSTINIT26616,1568506 -#define TRY_IN_END TRY_IN_END26617,1568558 -#define SPY_OR_TRYMARK_INSTINIT SPY_OR_TRYMARK_INSTINIT26618,1568600 -#define TRY_AND_MARK_INSTINIT TRY_AND_MARK_INSTINIT26619,1568668 -#define TRY_AND_MARK_YAPOR_THREADS_YAPOR TRY_AND_MARK_YAPOR_THREADS_YAPOR26620,1568732 -#define TRY_AND_MARK_YAPOR_THREADS_NOYAPOR_IF TRY_AND_MARK_YAPOR_THREADS_NOYAPOR_IF26621,1568818 -#define TRY_AND_MARK_NOYAPOR_NOTHREADS TRY_AND_MARK_NOYAPOR_NOTHREADS26622,1568914 -#define TRY_AND_MARK_SET_LOAD TRY_AND_MARK_SET_LOAD26623,1568996 -#define TRY_AND_MARK_POST_SET_LOAD TRY_AND_MARK_POST_SET_LOAD26624,1569060 -#define TRY_AND_MARK_MULTIPLE_STACKS TRY_AND_MARK_MULTIPLE_STACKS26625,1569134 -#define TRY_AND_MARK_NOMULTIPLE_STACKS_IF TRY_AND_MARK_NOMULTIPLE_STACKS_IF26626,1569212 -#define TRY_AND_MARK_END TRY_AND_MARK_END26627,1569300 -#define COUNT_RETRY_AND_MARK_INSTINIT COUNT_RETRY_AND_MARK_INSTINIT26628,1569354 -#define PROFILED_RETRY_AND_MARK_INSTINIT PROFILED_RETRY_AND_MARK_INSTINIT26629,1569434 -#define RETRY_AND_MARK_INSTINITRETRY_AND_MARK_INSTINIT26630,1569520 -#define RETRY_AND_MARK_YAPOR RETRY_AND_MARK_YAPOR26631,1569587 -#define RETRY_AND_MARK_POST_YAPOR RETRY_AND_MARK_POST_YAPOR26632,1569649 -#define RETRY_AND_MARK_FROZEN RETRY_AND_MARK_FROZEN26633,1569721 -#define RETRY_AND_MARK_NOFROZEN RETRY_AND_MARK_NOFROZEN26634,1569785 -#define RETRY_AND_MARK_POST_FROZEN RETRY_AND_MARK_POST_FROZEN26635,1569853 -#define RETRY_AND_MARK_MULTIPLE_STACKS RETRY_AND_MARK_MULTIPLE_STACKS26636,1569927 -#define RETRY_AND_MARK_NOMULTIPLE_STACKS_IF RETRY_AND_MARK_NOMULTIPLE_STACKS_IF26637,1570009 -#define RETRY_AND_MARK_END RETRY_AND_MARK_END26638,1570101 -#define TRY_ME_INSTINIT TRY_ME_INSTINIT26641,1570191 -#define TRY_ME_YAPOR TRY_ME_YAPOR26642,1570236 -#define TRY_ME_END TRY_ME_END26643,1570278 -#define RETRY_ME_INSTINIT RETRY_ME_INSTINIT26644,1570316 -#define RETRY_ME_FROZEN RETRY_ME_FROZEN26645,1570368 -#define RETRY_ME_NOFROZEN RETRY_ME_NOFROZEN26646,1570416 -#define RETRY_ME_END RETRY_ME_END26647,1570468 -#define TRUST_ME_INSTINIT TRUST_ME_INSTINIT26648,1570510 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF26649,1570563 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF26650,1570616 -#define TRUST_ME_YAPOR_IF TRUST_ME_YAPOR_IF26651,1570669 -#define TRUST_ME_IF TRUST_ME_IF26652,1570722 -#define TRUST_ME_END TRUST_ME_END26653,1570763 -#define ENTER_PROFILING_INSTINIT ENTER_PROFILING_INSTINIT26654,1570806 -#define RETRY_PROFILED_INSTINIT RETRY_PROFILED_INSTINIT26655,1570874 -#define PROFILED_RETRY_ME_INSTINIT PROFILED_RETRY_ME_INSTINIT26656,1570940 -#define PROFILED_RETRY_ME_FROZEN PROFILED_RETRY_ME_FROZEN26657,1571012 -#define PROFILED_RETRY_ME_NOFROZEN PROFILED_RETRY_ME_NOFROZEN26658,1571080 -#define PROFILED_RETRY_ME_END PROFILED_RETRY_ME_END26659,1571152 -#define PROFILED_TRUST_ME_INSTINIT PROFILED_TRUST_ME_INSTINIT26660,1571214 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF26661,1571286 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF26662,1571346 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF26663,1571406 -#define PROFILED_TRUST_ME_IF PROFILED_TRUST_ME_IF26664,1571466 -#define PROFILED_TRUST_ME_END PROFILED_TRUST_ME_END26665,1571526 -#define PROFILED_RETRY_LOGICAL_INSTINIT PROFILED_RETRY_LOGICAL_INSTINIT26666,1571588 -#define PROFILED_RETRY_LOGICAL_THREADS PROFILED_RETRY_LOGICAL_THREADS26667,1571670 -#define PROFILED_RETRY_LOGICAL_POST_THREADS PROFILED_RETRY_LOGICAL_POST_THREADS26668,1571750 -#define PROFILED_RETRY_LOGICAL_FROZEN PROFILED_RETRY_LOGICAL_FROZEN26669,1571840 -#define PROFILED_RETRY_LOGICAL_NOFROZEN PROFILED_RETRY_LOGICAL_NOFROZEN26670,1571918 -#define PROFILED_RETRY_LOGICAL_END PROFILED_RETRY_LOGICAL_END26671,1572000 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26672,1572072 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26673,1572154 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26674,1572236 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26675,1572319 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26676,1572402 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26677,1572485 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26678,1572568 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26679,1572651 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26680,1572734 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26681,1572817 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26682,1572900 -#define PROFILED_TRUST_LOGICAL_INSTINIT PROFILED_TRUST_LOGICAL_INSTINIT26683,1572983 -#define PROFILED_TRUST_LOGICAL_END PROFILED_TRUST_LOGICAL_END26684,1573066 -#define TRY_CLAUSE_INSTINIT TRY_CLAUSE_INSTINIT26685,1573139 -#define TRY_CLAUSE_YAPOR TRY_CLAUSE_YAPOR26686,1573198 -#define TRY_CLAUSE_END TRY_CLAUSE_END26687,1573251 -#define TRY_CLAUSE2_INSTINIT TRY_CLAUSE2_INSTINIT26688,1573300 -#define TRY_CLAUSE2_YAPOR TRY_CLAUSE2_YAPOR26689,1573361 -#define TRY_CLAUSE2_END TRY_CLAUSE2_END26690,1573416 -#define TRY_CLAUSE3_INSTINIT TRY_CLAUSE3_INSTINIT26691,1573468 -#define TRY_CLAUSE3_YAPOR TRY_CLAUSE3_YAPOR26692,1573530 -#define TRY_CLAUSE3_END TRY_CLAUSE3_END26693,1573586 -#define TRY_CLAUSE4_INSTINIT TRY_CLAUSE4_INSTINIT26694,1573638 -#define TRY_CLAUSE4_YAPOR TRY_CLAUSE4_YAPOR26695,1573700 -#define TRY_CLAUSE4_END TRY_CLAUSE4_END26696,1573756 -#define RETRY_INSTINIT RETRY_INSTINIT26697,1573808 -#define RETRY_FROZEN RETRY_FROZEN26698,1573858 -#define RETRY_NOFROZEN RETRY_NOFROZEN26699,1573904 -#define RETRY_END RETRY_END26700,1573954 -#define RETRY2_INSTINIT RETRY2_INSTINIT26701,1573994 -#define RETRY2_FROZEN RETRY2_FROZEN26702,1574046 -#define RETRY2_NOFROZEN RETRY2_NOFROZEN26703,1574094 -#define RETRY2_END RETRY2_END26704,1574146 -#define RETRY3_INSTINIT RETRY3_INSTINIT26705,1574188 -#define RETRY3_FROZEN RETRY3_FROZEN26706,1574240 -#define RETRY3_NOFROZEN RETRY3_NOFROZEN26707,1574288 -#define RETRY3_END RETRY3_END26708,1574340 -#define RETRY4_INSTINIT RETRY4_INSTINIT26709,1574382 -#define RETRY4_FROZEN RETRY4_FROZEN26710,1574434 -#define RETRY4_NOFROZEN RETRY4_NOFROZEN26711,1574482 -#define RETRY4_END RETRY4_END26712,1574534 -#define TRUST_INSTINIT TRUST_INSTINIT26713,1574576 -#define TRUST_IFOK_INIT TRUST_IFOK_INIT26714,1574626 -#define TRUST_IFOK_FROZEN TRUST_IFOK_FROZEN26715,1574678 -#define TRUST_IFOK_END TRUST_IFOK_END26716,1574734 -#define TRUST_NOIF_INIT TRUST_NOIF_INIT26717,1574784 -#define TRUST_NOIF_FROZEN TRUST_NOIF_FROZEN26718,1574836 -#define TRUST_END TRUST_END26719,1574892 -#define TRY_IN_INSTINIT TRY_IN_INSTINIT26720,1574932 -#define TRY_IN_END TRY_IN_END26721,1574984 -#define SPY_OR_TRYMARK_INSTINIT SPY_OR_TRYMARK_INSTINIT26722,1575026 -#define TRY_AND_MARK_INSTINIT TRY_AND_MARK_INSTINIT26723,1575094 -#define TRY_AND_MARK_YAPOR_THREADS_YAPOR TRY_AND_MARK_YAPOR_THREADS_YAPOR26724,1575158 -#define TRY_AND_MARK_YAPOR_THREADS_NOYAPOR_IF TRY_AND_MARK_YAPOR_THREADS_NOYAPOR_IF26725,1575244 -#define TRY_AND_MARK_NOYAPOR_NOTHREADS TRY_AND_MARK_NOYAPOR_NOTHREADS26726,1575340 -#define TRY_AND_MARK_SET_LOAD TRY_AND_MARK_SET_LOAD26727,1575422 -#define TRY_AND_MARK_POST_SET_LOAD TRY_AND_MARK_POST_SET_LOAD26728,1575486 -#define TRY_AND_MARK_MULTIPLE_STACKS TRY_AND_MARK_MULTIPLE_STACKS26729,1575560 -#define TRY_AND_MARK_NOMULTIPLE_STACKS_IF TRY_AND_MARK_NOMULTIPLE_STACKS_IF26730,1575638 -#define TRY_AND_MARK_END TRY_AND_MARK_END26731,1575726 -#define COUNT_RETRY_AND_MARK_INSTINIT COUNT_RETRY_AND_MARK_INSTINIT26732,1575780 -#define PROFILED_RETRY_AND_MARK_INSTINIT PROFILED_RETRY_AND_MARK_INSTINIT26733,1575860 -#define RETRY_AND_MARK_INSTINITRETRY_AND_MARK_INSTINIT26734,1575946 -#define RETRY_AND_MARK_YAPOR RETRY_AND_MARK_YAPOR26735,1576013 -#define RETRY_AND_MARK_POST_YAPOR RETRY_AND_MARK_POST_YAPOR26736,1576075 -#define RETRY_AND_MARK_FROZEN RETRY_AND_MARK_FROZEN26737,1576147 -#define RETRY_AND_MARK_NOFROZEN RETRY_AND_MARK_NOFROZEN26738,1576211 -#define RETRY_AND_MARK_POST_FROZEN RETRY_AND_MARK_POST_FROZEN26739,1576279 -#define RETRY_AND_MARK_MULTIPLE_STACKS RETRY_AND_MARK_MULTIPLE_STACKS26740,1576353 -#define RETRY_AND_MARK_NOMULTIPLE_STACKS_IF RETRY_AND_MARK_NOMULTIPLE_STACKS_IF26741,1576435 -#define RETRY_AND_MARK_END RETRY_AND_MARK_END26742,1576527 -#define JIT_HPPJIT_HPP26748,1576666 -#define JIT_COMPILER_HPPJIT_COMPILER_HPP26751,1576726 -#define UPPER_ENTRY(UPPER_ENTRY26760,1577265 -#define LLVM_TOOLS_OPT_PASSPRINTERS_HLLVM_TOOLS_OPT_PASSPRINTERS_H26777,1577599 -#define NFILES NFILES26969,1590423 -#define check_stack_on_fail check_stack_on_fail26973,1590530 -#define check_stack_on_fail check_stack_on_fail26974,1590584 -#define GONEXT(GONEXT26975,1590639 -#define GONEXTW(GONEXTW26976,1590668 -#define YAAM_UnifyBound_TEST_ATTACHED(YAAM_UnifyBound_TEST_ATTACHED26977,1590700 -#define YAAM_UnifyBound(YAAM_UnifyBound26978,1590776 -#define _native_me_instinit _native_me_instinit26979,1590825 -#define _op_fail_instinit _op_fail_instinit26980,1590882 -#define _op_fail_instinit _op_fail_instinit26981,1590935 -#define I_R I_R26982,1590988 -#define check_stack_on_call check_stack_on_call26985,1591046 -#define check_stack_on_call check_stack_on_call26986,1591100 -#define check_stack_on_execute check_stack_on_execute26987,1591155 -#define check_stack_on_execute check_stack_on_execute26988,1591217 -#define check_stack_on_dexecute check_stack_on_dexecute26989,1591279 -#define check_stack_on_dexecute check_stack_on_dexecute26990,1591343 -#define check_stack_on_deallocate check_stack_on_deallocate26991,1591408 -#define check_stack_on_deallocate check_stack_on_deallocate26992,1591477 -#define _procceed_instinit _procceed_instinit26993,1591546 -#define _procceed_instinit _procceed_instinit26994,1591601 -#define _fcall_instinit _fcall_instinit26995,1591656 -#define _fcall_instinit _fcall_instinit26996,1591705 -#define _call_instinit _call_instinit26997,1591754 -#define _call_instinit _call_instinit26998,1591801 -#define _call_instinit _call_instinit26999,1591849 -#define _call_instinit _call_instinit27000,1591897 -#define _call_instinit _call_instinit27001,1591945 -#define _call_instinit _call_instinit27002,1591993 -#define _call_instinit _call_instinit27003,1592041 -#define _call_instinit _call_instinit27004,1592089 -#define _call_instinit _call_instinit27005,1592137 -#define _call_instinit _call_instinit27006,1592186 -#define _call_instinit _call_instinit27007,1592235 -#define _call_instinit _call_instinit27008,1592284 -#define _call_instinit _call_instinit27009,1592333 -#define _call_instinit _call_instinit27010,1592382 -#define _call_instinit _call_instinit27011,1592431 -#define _call_instinit _call_instinit27012,1592480 -#define _call_instinit _call_instinit27013,1592529 -#define _call_instinit _call_instinit27014,1592578 -#define _call_instinit _call_instinit27015,1592627 -#define _call_instinit _call_instinit27016,1592676 -#define _call_instinit _call_instinit27017,1592725 -#define _call_instinit _call_instinit27018,1592774 -#define _call_instinit _call_instinit27019,1592823 -#define _call_instinit _call_instinit27020,1592872 -#define _call_instinit _call_instinit27021,1592921 -#define _call_instinit _call_instinit27022,1592970 -#define _call_instinit _call_instinit27023,1593019 -#define _call_instinit _call_instinit27024,1593068 -#define _call_instinit _call_instinit27025,1593117 -#define _call_instinit _call_instinit27026,1593167 -#define _call_instinit _call_instinit27027,1593217 -#define _call_instinit _call_instinit27028,1593267 -#define _call_instinit _call_instinit27029,1593317 -#define _call_instinit _call_instinit27030,1593367 -#define _call_instinit _call_instinit27031,1593417 -#define _call_instinit _call_instinit27032,1593467 -#define _call_instinit _call_instinit27033,1593517 -#define _call_instinit _call_instinit27034,1593567 -#define _call_instinit _call_instinit27035,1593617 -#define _call_instinit _call_instinit27036,1593667 -#define _call_instinit _call_instinit27037,1593717 -#define _call_instinit _call_instinit27038,1593767 -#define _call_instinit _call_instinit27039,1593817 -#define _call_instinit _call_instinit27040,1593867 -#define _call_instinit _call_instinit27041,1593917 -#define _call_instinit _call_instinit27042,1593967 -#define _call_instinit _call_instinit27043,1594017 -#define _call_instinit _call_instinit27044,1594067 -#define _execute_instinit _execute_instinit27045,1594117 -#define _execute_instinit _execute_instinit27046,1594173 -#define _execute_instinit _execute_instinit27047,1594229 -#define _execute_instinit _execute_instinit27048,1594285 -#define _execute_instinit _execute_instinit27049,1594341 -#define _execute_instinit _execute_instinit27050,1594397 -#define _execute_instinit _execute_instinit27051,1594453 -#define _execute_instinit _execute_instinit27052,1594509 -#define _dexecute_instinit _dexecute_instinit27053,1594565 -#define _dexecute_instinit _dexecute_instinit27054,1594623 -#define _dexecute_instinit _dexecute_instinit27055,1594681 -#define _dexecute_instinit _dexecute_instinit27056,1594739 -#define _dexecute_instinit _dexecute_instinit27057,1594797 -#define _dexecute_instinit _dexecute_instinit27058,1594855 -#define _dexecute_instinit _dexecute_instinit27059,1594913 -#define _dexecute_instinit _dexecute_instinit27060,1594971 -#define _dexecute_instinit _dexecute_instinit27061,1595029 -#define _dexecute_instinit _dexecute_instinit27062,1595087 -#define _dexecute_instinit _dexecute_instinit27063,1595145 -#define _dexecute_instinit _dexecute_instinit27064,1595203 -#define _dexecute_instinit _dexecute_instinit27065,1595261 -#define _dexecute_instinit _dexecute_instinit27066,1595319 -#define _dexecute_instinit _dexecute_instinit27067,1595377 -#define _dexecute_instinit _dexecute_instinit27068,1595435 -#define _dexecute_instinit _dexecute_instinit27069,1595493 -#define _dexecute_instinit _dexecute_instinit27070,1595551 -#define _dexecute_instinit _dexecute_instinit27071,1595609 -#define _dexecute_instinit _dexecute_instinit27072,1595667 -#define _dexecute_instinit _dexecute_instinit27073,1595725 -#define _dexecute_instinit _dexecute_instinit27074,1595783 -#define _dexecute_instinit _dexecute_instinit27075,1595841 -#define _dexecute_instinit _dexecute_instinit27076,1595899 -#define _allocate_instinit _allocate_instinit27077,1595957 -#define _allocate_instinit _allocate_instinit27078,1596015 -#define _deallocate_instinit _deallocate_instinit27079,1596073 -#define _deallocate_instinit _deallocate_instinit27080,1596135 -#define _deallocate_instinit _deallocate_instinit27081,1596197 -#define _deallocate_instinit _deallocate_instinit27082,1596259 -#define _deallocate_instinit _deallocate_instinit27083,1596321 -#define _deallocate_instinit _deallocate_instinit27084,1596383 -#define _deallocate_instinit _deallocate_instinit27085,1596445 -#define _deallocate_instinit _deallocate_instinit27086,1596507 -#define _deallocate_instinit _deallocate_instinit27087,1596569 -#define _deallocate_instinit _deallocate_instinit27088,1596631 -#define _deallocate_instinit _deallocate_instinit27089,1596693 -#define _deallocate_instinit _deallocate_instinit27090,1596755 -#define _call_cpred_instinit _call_cpred_instinit27093,1596851 -#define _call_cpred_instinit _call_cpred_instinit27094,1596907 -#define _call_cpred_instinit _call_cpred_instinit27095,1596965 -#define _call_cpred_instinit _call_cpred_instinit27096,1597024 -#define _call_cpred_instinit _call_cpred_instinit27097,1597083 -#define _call_cpred_instinit _call_cpred_instinit27098,1597143 -#define _call_cpred_instinit _call_cpred_instinit27099,1597203 -#define _call_cpred_instinit _call_cpred_instinit27100,1597263 -#define _call_cpred_instinit _call_cpred_instinit27101,1597323 -#define _call_cpred_instinit _call_cpred_instinit27102,1597383 -#define _call_cpred_instinit _call_cpred_instinit27103,1597443 -#define _call_cpred_instinit _call_cpred_instinit27104,1597503 -#define _execute_cpred_instinit _execute_cpred_instinit27105,1597563 -#define _execute_cpred_instinit _execute_cpred_instinit27106,1597629 -#define _execute_cpred_instinit _execute_cpred_instinit27107,1597696 -#define _execute_cpred_instinit _execute_cpred_instinit27108,1597763 -#define _execute_cpred_instinit _execute_cpred_instinit27109,1597830 -#define _execute_cpred_instinit _execute_cpred_instinit27110,1597897 -#define _execute_cpred_instinit _execute_cpred_instinit27111,1597964 -#define _execute_cpred_instinit _execute_cpred_instinit27112,1598031 -#define _execute_cpred_instinit _execute_cpred_instinit27113,1598098 -#define _execute_cpred_instinit _execute_cpred_instinit27114,1598165 -#define _execute_cpred_instinit _execute_cpred_instinit27115,1598232 -#define _execute_cpred_instinit _execute_cpred_instinit27116,1598299 -#define _execute_cpred_instinit _execute_cpred_instinit27117,1598366 -#define _execute_cpred_instinit _execute_cpred_instinit27118,1598434 -#define _execute_cpred_instinit _execute_cpred_instinit27119,1598502 -#define _execute_cpred_instinit _execute_cpred_instinit27120,1598570 -#define _execute_cpred_instinit _execute_cpred_instinit27121,1598638 -#define _execute_cpred_instinit _execute_cpred_instinit27122,1598706 -#define _execute_cpred_instinit _execute_cpred_instinit27123,1598774 -#define _execute_cpred_instinit _execute_cpred_instinit27124,1598842 -#define _execute_cpred_instinit _execute_cpred_instinit27125,1598910 -#define _execute_cpred_instinit _execute_cpred_instinit27126,1598978 -#define _execute_cpred_instinit _execute_cpred_instinit27127,1599046 -#define _execute_cpred_instinit _execute_cpred_instinit27128,1599114 -#define _execute_cpred_instinit _execute_cpred_instinit27129,1599182 -#define _execute_cpred_instinit _execute_cpred_instinit27130,1599250 -#define _execute_cpred_instinit _execute_cpred_instinit27131,1599318 -#define _execute_cpred_instinit _execute_cpred_instinit27132,1599386 -#define _execute_cpred_instinit _execute_cpred_instinit27133,1599454 -#define _execute_cpred_instinit _execute_cpred_instinit27134,1599522 -#define _execute_cpred_instinit _execute_cpred_instinit27135,1599590 -#define _execute_cpred_instinit _execute_cpred_instinit27136,1599658 -#define _execute_cpred_instinit _execute_cpred_instinit27137,1599726 -#define _execute_cpred_instinit _execute_cpred_instinit27138,1599794 -#define _execute_cpred_instinit _execute_cpred_instinit27139,1599862 -#define _execute_cpred_instinit _execute_cpred_instinit27140,1599930 -#define _execute_cpred_instinit _execute_cpred_instinit27141,1599998 -#define _execute_cpred_instinit _execute_cpred_instinit27142,1600066 -#define _execute_cpred_instinit _execute_cpred_instinit27143,1600134 -#define _execute_cpred_instinit _execute_cpred_instinit27144,1600202 -#define _execute_cpred_instinit _execute_cpred_instinit27145,1600270 -#define _execute_cpred_instinit _execute_cpred_instinit27146,1600338 -#define _execute_cpred_instinit _execute_cpred_instinit27147,1600406 -#define _execute_cpred_instinit _execute_cpred_instinit27148,1600474 -#define _execute_cpred_instinit _execute_cpred_instinit27149,1600542 -#define _execute_cpred_instinit _execute_cpred_instinit27150,1600610 -#define _execute_cpred_instinit _execute_cpred_instinit27151,1600678 -#define _execute_cpred_instinit _execute_cpred_instinit27152,1600746 -#define _call_usercpred_instinit _call_usercpred_instinit27153,1600814 -#define _call_usercpred_instinit _call_usercpred_instinit27154,1600884 -#define _call_usercpred_instinit _call_usercpred_instinit27155,1600954 -#define _call_usercpred_instinit _call_usercpred_instinit27156,1601024 -#define _call_usercpred_instinit _call_usercpred_instinit27157,1601094 -#define _call_usercpred_instinit _call_usercpred_instinit27158,1601164 -#define check_stack_on_cut check_stack_on_cut27161,1601266 -#define check_stack_on_cut check_stack_on_cut27162,1601318 -#define check_stack_on_cutt check_stack_on_cutt27163,1601371 -#define check_stack_on_cutt check_stack_on_cutt27164,1601427 -#define check_stack_on_commitx check_stack_on_commitx27165,1601483 -#define check_stack_on_commitx check_stack_on_commitx27166,1601545 -#define _cut_instinit _cut_instinit27167,1601608 -#define _cut_instinit _cut_instinit27168,1601653 -#define _cut_t_instinit _cut_t_instinit27169,1601698 -#define _cut_t_instinit _cut_t_instinit27170,1601747 -#define CUT_E_INSTINITCUT_E_INSTINIT27171,1601796 -#define CUT_E_COROUTINING CUT_E_COROUTINING27172,1601842 -#define CUT_E_NOCOROUTINING CUT_E_NOCOROUTINING27173,1601895 -#define _save_b_x_instinit _save_b_x_instinit27174,1601952 -#define _save_b_x_instinit _save_b_x_instinit27175,1602007 -#define _save_b_y_instinit _save_b_y_instinit27176,1602062 -#define _save_b_y_instinit _save_b_y_instinit27177,1602118 -#define _commit_b_x_instinit _commit_b_x_instinit27178,1602174 -#define _commit_b_x_instinit _commit_b_x_instinit27179,1602234 -#define _commit_b_x_instinit _commit_b_x_instinit27180,1602294 -#define _commit_b_x_instinit _commit_b_x_instinit27181,1602354 -#define COMMIT_B_Y_INSTINIT COMMIT_B_Y_INSTINIT27182,1602414 -#define COMMIT_B_Y_DO_COMMIT_B_Y COMMIT_B_Y_DO_COMMIT_B_Y27183,1602472 -#define COMMIT_B_Y_COMMIT_B_Y_NVAR COMMIT_B_Y_COMMIT_B_Y_NVAR27184,1602540 -#define COMMIT_B_Y_YSBA_FROZEN COMMIT_B_Y_YSBA_FROZEN27185,1602612 -#define COMMIT_B_Y_NOYSBA_NOFROZEN COMMIT_B_Y_NOYSBA_NOFROZEN27186,1602676 -#define COMMIT_B_Y_POST_YSBA_FROZEN COMMIT_B_Y_POST_YSBA_FROZEN27187,1602748 -#define _get_x_var_instinit _get_x_var_instinit27190,1602854 -#define _get_y_var_instinit _get_y_var_instinit27191,1602907 -#define _get_yy_var_instinit _get_yy_var_instinit27192,1602962 -#define _get_x_val_instinit _get_x_val_instinit27193,1603020 -#define _get_y_val_instinit _get_y_val_instinit27194,1603076 -#define _get_atom_instinit _get_atom_instinit27195,1603133 -#define _get_2atoms_instinit _get_2atoms_instinit27196,1603189 -#define _get_3atoms_instinit _get_3atoms_instinit27197,1603249 -#define GET_4ATOMS_INSTINIT GET_4ATOMS_INSTINIT27198,1603309 -#define GET_4ATOMS_GATOM_4UNK GET_4ATOMS_GATOM_4UNK27199,1603367 -#define GET_4ATOMS_GATOM_4B GET_4ATOMS_GATOM_4B27200,1603429 -#define GET_4ATOMS_GATOM_4BUNK GET_4ATOMS_GATOM_4BUNK27201,1603487 -#define GET_4ATOMS_GATOM_4C GET_4ATOMS_GATOM_4C27202,1603551 -#define GET_4ATOMS_GATOM_4CUNK GET_4ATOMS_GATOM_4CUNK27203,1603609 -#define GET_4ATOMS_GATOM_4D GET_4ATOMS_GATOM_4D27204,1603673 -#define GET_4ATOMS_EQUALS GET_4ATOMS_EQUALS27205,1603731 -#define GET_4ATOMS_GATOM_4DUNK GET_4ATOMS_GATOM_4DUNK27206,1603785 -#define GET_5ATOMS_INSTINIT GET_5ATOMS_INSTINIT27207,1603849 -#define GET_5ATOMS_GATOM_5UNK GET_5ATOMS_GATOM_5UNK27208,1603907 -#define GET_5ATOMS_GATOM_5B GET_5ATOMS_GATOM_5B27209,1603969 -#define GET_5ATOMS_GATOM_5BUNK GET_5ATOMS_GATOM_5BUNK27210,1604027 -#define GET_5ATOMS_GATOM_5C GET_5ATOMS_GATOM_5C27211,1604091 -#define GET_5ATOMS_GATOM_5CUNK GET_5ATOMS_GATOM_5CUNK27212,1604149 -#define GET_5ATOMS_GATOM_5D GET_5ATOMS_GATOM_5D27213,1604213 -#define GET_5ATOMS_GATOM_5DUNK GET_5ATOMS_GATOM_5DUNK27214,1604271 -#define GET_5ATOMS_GATOM_5E GET_5ATOMS_GATOM_5E27215,1604335 -#define GET_5ATOMS_EQUALS GET_5ATOMS_EQUALS27216,1604393 -#define GET_5ATOMS_GATOM_5EUNK GET_5ATOMS_GATOM_5EUNK27217,1604447 -#define GET_6ATOMS_INSTINIT GET_6ATOMS_INSTINIT27218,1604511 -#define GET_6ATOMS_GATOM_6UNK GET_6ATOMS_GATOM_6UNK27219,1604569 -#define GET_6ATOMS_GATOM_6B GET_6ATOMS_GATOM_6B27220,1604631 -#define GET_6ATOMS_GATOM_6BUNK GET_6ATOMS_GATOM_6BUNK27221,1604689 -#define GET_6ATOMS_GATOM_6C GET_6ATOMS_GATOM_6C27222,1604753 -#define GET_6ATOMS_GATOM_6CUNK GET_6ATOMS_GATOM_6CUNK27223,1604811 -#define GET_6ATOMS_GATOM_6D GET_6ATOMS_GATOM_6D27224,1604875 -#define GET_6ATOMS_GATOM_6DUNK GET_6ATOMS_GATOM_6DUNK27225,1604933 -#define GET_6ATOMS_GATOM_6E GET_6ATOMS_GATOM_6E27226,1604997 -#define GET_6ATOMS_GATOM_6EUNK GET_6ATOMS_GATOM_6EUNK27227,1605055 -#define GET_6ATOMS_GATOM_6F GET_6ATOMS_GATOM_6F27228,1605119 -#define GET_6ATOMS_EQUALS GET_6ATOMS_EQUALS27229,1605177 -#define GET_6ATOMS_GATOM_6FUNK GET_6ATOMS_GATOM_6FUNK27230,1605231 -#define _get_list_instinit _get_list_instinit27231,1605295 -#define _get_struct_instinit _get_struct_instinit27232,1605351 -#define _get_float_instinit _get_float_instinit27233,1605411 -#define _get_float_instinit _get_float_instinit27234,1605470 -#define GET_LONGINT_INSTINIT GET_LONGINT_INSTINIT27235,1605529 -#define GET_LONGINT_GLONGINT_NONVAR_INIT GET_LONGINT_GLONGINT_NONVAR_INIT27236,1605590 -#define GET_LONGINT_GLONGINT_NONVAR_END GET_LONGINT_GLONGINT_NONVAR_END27237,1605675 -#define GET_LONGINT_GLONGINT_UNK GET_LONGINT_GLONGINT_UNK27238,1605758 -#define GET_BIGINT_INSTINIT GET_BIGINT_INSTINIT27239,1605827 -#define GET_BIGINT_GBIGINT_NONVAR_INIT GET_BIGINT_GBIGINT_NONVAR_INIT27240,1605886 -#define GET_BIGINT_GBIGINT_NONVAR_END GET_BIGINT_GBIGINT_NONVAR_END27241,1605967 -#define GET_BIGINT_GBIGINT_UNK GET_BIGINT_GBIGINT_UNK27242,1606046 -#define GET_DBTERM_INSTINIT GET_DBTERM_INSTINIT27243,1606111 -#define GET_DBTERM_GDBTERM_NONVAR GET_DBTERM_GDBTERM_NONVAR27244,1606170 -#define GET_DBTERM_GDBTERM_UNK GET_DBTERM_GDBTERM_UNK27245,1606241 -#define _glist_valx_instinit _glist_valx_instinit27246,1606306 -#define GLIST_VALY_INSTINIT GLIST_VALY_INSTINIT27247,1606367 -#define GLIST_VALY_GLIST_VALY_READ GLIST_VALY_GLIST_VALY_READ27248,1606426 -#define GLIST_VALY_GLIST_VALY_NONVAR GLIST_VALY_GLIST_VALY_NONVAR27249,1606499 -#define GLIST_VALY_GLIST_VALY_NONVAR_NONVAR GLIST_VALY_GLIST_VALY_NONVAR_NONVAR27250,1606576 -#define GLIST_VALY_GLIST_VALY_NONVAR_UNK GLIST_VALY_GLIST_VALY_NONVAR_UNK27251,1606667 -#define GLIST_VALY_GLIST_VALY_UNK GLIST_VALY_GLIST_VALY_UNK27252,1606752 -#define GLIST_VALY_GLIST_VALY_VAR_NONVAR GLIST_VALY_GLIST_VALY_VAR_NONVAR27253,1606823 -#define GLIST_VALY_GLIST_VALY_VAR_UNK GLIST_VALY_GLIST_VALY_VAR_UNK27254,1606908 -#define GLIST_VALY_GLIST_VALY_WRITE GLIST_VALY_GLIST_VALY_WRITE27255,1606987 -#define _gl_void_varx_instinit _gl_void_varx_instinit27256,1607062 -#define GL_VOID_VARY_INSTINIT GL_VOID_VARY_INSTINIT27257,1607127 -#define GL_VOID_VARY_GLIST_VOID_VARY_READ GL_VOID_VARY_GLIST_VOID_VARY_READ27258,1607190 -#define GL_VOID_VARY_GLIST_VOID_VARY_WRITE GL_VOID_VARY_GLIST_VOID_VARY_WRITE27259,1607277 -#define GL_VOID_VALX_INSTINIT GL_VOID_VALX_INSTINIT27260,1607366 -#define GL_VOID_VALX_GLIST_VOID_VALX_READ GL_VOID_VALX_GLIST_VOID_VALX_READ27261,1607429 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR27262,1607516 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR27263,1607607 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK27264,1607712 -#define GL_VOID_VALX_GLIST_VOID_VALX_UNK GL_VOID_VALX_GLIST_VOID_VALX_UNK27265,1607811 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR27266,1607896 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK27267,1607995 -#define GL_VOID_VALX_GLIST_VOID_VALX_WRITE GL_VOID_VALX_GLIST_VOID_VALX_WRITE27268,1608088 -#define GL_VOID_VALY_INSTINIT GL_VOID_VALY_INSTINIT27269,1608177 -#define GL_VOID_VALY_GLIST_VOID_VALY_READ GL_VOID_VALY_GLIST_VOID_VALY_READ27270,1608240 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR27271,1608327 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR27272,1608418 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK27273,1608523 -#define GL_VOID_VALY_GLIST_VOID_VALY_UNK GL_VOID_VALY_GLIST_VOID_VALY_UNK27274,1608622 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR27275,1608707 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK27276,1608806 -#define GL_VOID_VALY_GLIST_VOID_VALY_WRITE GL_VOID_VALY_GLIST_VOID_VALY_WRITE27277,1608899 -#define check_stack_on_either check_stack_on_either27280,1609021 -#define check_stack_on_either check_stack_on_either27281,1609079 -#define LUCK_LU_INSTINITLUCK_LU_INSTINIT27282,1609138 -#define LOCK_LU_PARALLEL_PP LOCK_LU_PARALLEL_PP27283,1609186 -#define LOCK_LU_PARALLEL LOCK_LU_PARALLEL27284,1609242 -#define LOCK_LU_END LOCK_LU_END27285,1609292 -#define UNLOCK_LU_INSTINITUNLOCK_LU_INSTINIT27286,1609332 -#define UNLOCK_LU_YAPOR_THREADS UNLOCK_LU_YAPOR_THREADS27287,1609385 -#define UNLOCK_LU_END UNLOCK_LU_END27288,1609449 -#define ALLOC_FOR_LOGICAL_PRED_INSTINITALLOC_FOR_LOGICAL_PRED_INSTINIT27289,1609493 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS27290,1609572 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL27291,1609667 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END27292,1609780 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT27293,1609883 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IFOK ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IFOK27294,1609992 -#define ALLOC_FOR_LOGICAL_PRED_END ALLOC_FOR_LOGICAL_PRED_END27295,1610101 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT27296,1610172 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT27297,1610235 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT27298,1610299 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT27299,1610363 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT27300,1610427 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT27301,1610491 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT27302,1610555 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT27303,1610620 -#define COPY_IDB_TERM_END COPY_IDB_TERM_END27304,1610685 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT27305,1610740 -#define UNIFY_IDB_TERM_NOUNIFYARG2_INIT UNIFY_IDB_TERM_NOUNIFYARG2_INIT27306,1610807 -#define UNIFY_IDB_TERM_NOUNIFYARG2_YAPOR_THREADS UNIFY_IDB_TERM_NOUNIFYARG2_YAPOR_THREADS27307,1610890 -#define UNIFY_IDB_TERM_NOUNIFYARG3_INIT UNIFY_IDB_TERM_NOUNIFYARG3_INIT27308,1610991 -#define UNIFY_IDB_TERM_NOUNIFYARG3_YAPOR_THREADS UNIFY_IDB_TERM_NOUNIFYARG3_YAPOR_THREADS27309,1611074 -#define UNIFY_IDB_TERM_SETREGS UNIFY_IDB_TERM_SETREGS27310,1611175 -#define UNIFY_IDB_TERM_MULTIPLE_STACKS UNIFY_IDB_TERM_MULTIPLE_STACKS27311,1611240 -#define UNIFY_IDB_TERM_NOMULTIPLE_STACKS_IFOK UNIFY_IDB_TERM_NOMULTIPLE_STACKS_IFOK27312,1611321 -#define UNIFY_IDB_TERM_POST_MULTIPLE UNIFY_IDB_TERM_POST_MULTIPLE27313,1611416 -#define UNIFY_IDB_TERM_DEPTH UNIFY_IDB_TERM_DEPTH27314,1611493 -#define UNIFY_IDB_TERM_END UNIFY_IDB_TERM_END27315,1611554 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT27316,1611611 -#define ENSURE_SPACE_FIRSTIFOK_INIT ENSURE_SPACE_FIRSTIFOK_INIT27317,1611674 -#define ENSURE_SPACE_FIRSTIFOK_DEPTH ENSURE_SPACE_FIRSTIFOK_DEPTH27318,1611749 -#define ENSURE_SPACE_FIRSTIFOK_END ENSURE_SPACE_FIRSTIFOK_END27319,1611826 -#define ENSURE_SPACE_SECONDIFOK ENSURE_SPACE_SECONDIFOK27320,1611899 -#define ENSURE_SPACE_NOSECONDIF ENSURE_SPACE_NOSECONDIF27321,1611966 -#define ENSURE_SPACE_NOFIRSTIF ENSURE_SPACE_NOFIRSTIF27322,1612033 -#define ENSURE_SPACE_END ENSURE_SPACE_END27323,1612098 -#define _jump_instinit _jump_instinit27324,1612151 -#define MOVE_BACK_INSTINIT MOVE_BACK_INSTINIT27325,1612200 -#define SKIP_INSTINIT SKIP_INSTINIT27326,1612257 -#define _either_instinit _either_instinit27327,1612304 -#define _either_instinit _either_instinit27328,1612357 -#define _either_instinit _either_instinit27329,1612410 -#define _either_instinit _either_instinit27330,1612463 -#define _either_instinit _either_instinit27331,1612516 -#define _either_instinit _either_instinit27332,1612569 -#define _either_instinit _either_instinit27333,1612622 -#define _either_instinit _either_instinit27334,1612675 -#define _either_instinit _either_instinit27335,1612728 -#define _either_instinit _either_instinit27336,1612781 -#define _either_instinit _either_instinit27337,1612834 -#define _either_instinit _either_instinit27338,1612887 -#define _either_instinit _either_instinit27339,1612940 -#define _either_instinit _either_instinit27340,1612993 -#define _either_instinit _either_instinit27341,1613046 -#define _either_instinit _either_instinit27342,1613099 -#define _either_instinit _either_instinit27343,1613152 -#define _either_instinit _either_instinit27344,1613205 -#define _either_instinit _either_instinit27345,1613259 -#define _either_instinit _either_instinit27346,1613313 -#define _either_instinit _either_instinit27347,1613367 -#define _either_instinit _either_instinit27348,1613421 -#define _either_instinit _either_instinit27349,1613475 -#define _either_instinit _either_instinit27350,1613529 -#define OR_ELSE_INSTINIT OR_ELSE_INSTINIT27351,1613583 -#define OR_ELSE_DEPTH OR_ELSE_DEPTH27352,1613637 -#define OR_ELSE_POST_DEPTH OR_ELSE_POST_DEPTH27353,1613685 -#define OR_ELSE_YAPOR OR_ELSE_YAPOR27354,1613743 -#define OR_ELSE_END OR_ELSE_END27355,1613791 -#define OR_LAST_INSTINIT OR_LAST_INSTINIT27356,1613835 -#define OR_LAST_IFOK_INIT OR_LAST_IFOK_INIT27357,1613889 -#define OR_LAST_IFOK_DEPTH OR_LAST_IFOK_DEPTH27358,1613945 -#define OR_LAST_IFOK_END OR_LAST_IFOK_END27359,1614003 -#define OR_LAST_NOIF_INIT OR_LAST_NOIF_INIT27360,1614057 -#define OR_LAST_NOIF_DEPTH OR_LAST_NOIF_DEPTH27361,1614113 -#define OR_LAST_NOIF_END OR_LAST_NOIF_END27362,1614171 -#define OR_LAST_YAPOR OR_LAST_YAPOR27363,1614225 -#define OR_LAST_NOYAPOR OR_LAST_NOYAPOR27364,1614273 -#define OR_LAST_END OR_LAST_END27365,1614325 -#define LOCK_PRED_INSTINIT LOCK_PRED_INSTINIT27366,1614369 -#define LOCK_PRED_FIRSTIFOK LOCK_PRED_FIRSTIFOK27367,1614427 -#define LOCK_PRED_SECONDTIFOK LOCK_PRED_SECONDTIFOK27368,1614487 -#define LOCK_PRED_END LOCK_PRED_END27369,1614551 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT27370,1614599 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT27371,1614659 -#define INDEX_PRED_END INDEX_PRED_END27372,1614719 -#define THREAD_LOCAL_INSTINIT THREAD_LOCAL_INSTINIT27373,1614769 -#define EXPAND_INDEX_INSTINIT EXPAND_INDEX_INSTINIT27374,1614833 -#define EXPAND_INDEX_YAPOR_THREADS_NOPP EXPAND_INDEX_YAPOR_THREADS_NOPP27375,1614897 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT27376,1614981 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK27377,1615075 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_END EXPAND_INDEX_YAPOR_THREADS_IFOK_END27378,1615169 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS27379,1615261 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS27380,1615353 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG27381,1615455 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG27382,1615553 -#define EXPAND_INDEX_UNLOCK EXPAND_INDEX_UNLOCK27383,1615661 -#define EXPAND_INDEX_END EXPAND_INDEX_END27384,1615721 -#define EXPAND_CLAUSES_INSTINIT EXPAND_CLAUSES_INSTINIT27385,1615775 -#define EXPAND_CLAUSES_YAPOR_THREADS_NOPP EXPAND_CLAUSES_YAPOR_THREADS_NOPP27386,1615843 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT27387,1615931 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK27388,1616029 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END27389,1616127 -#define EXPAND_CLAUSES_NOYAPOR_NOTHREADS EXPAND_CLAUSES_NOYAPOR_NOTHREADS27390,1616223 -#define EXPAND_CLAUSES_UNLOCK EXPAND_CLAUSES_UNLOCK27391,1616309 -#define EXPAND_CLAUSES_END EXPAND_CLAUSES_END27392,1616373 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT27393,1616431 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT27394,1616485 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT27395,1616539 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT27396,1616593 -#define UNDEF_P_END UNDEF_P_END27397,1616647 -#define SPY_PRED_INSTINIT SPY_PRED_INSTINIT27398,1616691 -#define SPY_PRED_FIRSTIFOK SPY_PRED_FIRSTIFOK27399,1616747 -#define SPY_PRED_SECONDIFOK_INIT SPY_PRED_SECONDIFOK_INIT27400,1616805 -#define SPY_PRED_SECONDIFOK_FIRSTIFOK SPY_PRED_SECONDIFOK_FIRSTIFOK27401,1616875 -#define SPY_PRED_SECONDIFOK_POST_FIRSTIF SPY_PRED_SECONDIFOK_POST_FIRSTIF27402,1616955 -#define SPY_PRED_SECONDIFOK_SECONDIFOK SPY_PRED_SECONDIFOK_SECONDIFOK27403,1617041 -#define SPY_PRED_SECONDIFOK_THIRDIFOK SPY_PRED_SECONDIFOK_THIRDIFOK27404,1617123 -#define SPY_PRED_THIRDIFOK_INIT SPY_PRED_THIRDIFOK_INIT27405,1617203 -#define SPY_PRED_THIRDIFOK_FIRSTIFOK SPY_PRED_THIRDIFOK_FIRSTIFOK27406,1617271 -#define SPY_PRED_FOURTHIFOK SPY_PRED_FOURTHIFOK27407,1617349 -#define SPY_PRED_POST_FOURTHIF SPY_PRED_POST_FOURTHIF27408,1617409 -#define SPY_PRED_D0ISZERO SPY_PRED_D0ISZERO27409,1617475 -#define SPY_PRED_D0ISNOZERO_INIT SPY_PRED_D0ISNOZERO_INIT27410,1617531 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT27411,1617601 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR27412,1617691 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR27413,1617797 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR27414,1617893 -#define SPY_PRED_POST_IFS SPY_PRED_POST_IFS27415,1617993 -#define SPY_PRED_THREADS_LOCK SPY_PRED_THREADS_LOCK27416,1618049 -#define SPY_PRED_POST_LOCK SPY_PRED_POST_LOCK27417,1618113 -#define SPY_PRED_THREADS_UNLOCK SPY_PRED_THREADS_UNLOCK27418,1618171 -#define SPY_PRED_POST_UNLOCK SPY_PRED_POST_UNLOCK27419,1618239 -#define SPY_PRED_LOW_LEVEL_TRACER SPY_PRED_LOW_LEVEL_TRACER27420,1618301 -#define SPY_PRED_END SPY_PRED_END27421,1618373 -#define POP_N_INIT POP_N_INIT27424,1618450 -#define POP_N_END POP_N_END27425,1618485 -#define _pop_instinit _pop_instinit27426,1618521 -#define _p_integer_x_instinit _p_integer_x_instinit27429,1618614 -#define _p_plus_vv_instinit _p_plus_vv_instinit27430,1618671 -#define _p_plus_vc_instinit _p_plus_vc_instinit27431,1618727 -#define _p_plus_y_vv_instinit _p_plus_y_vv_instinit27432,1618784 -#define _p_plus_y_vc_instinit _p_plus_y_vc_instinit27433,1618846 -#define _p_minus_vv_instinit _p_minus_vv_instinit27434,1618908 -#define _p_times_vv_instinit _p_times_vv_instinit27435,1618968 -#define _p_times_vc_instinit _p_times_vc_instinit27436,1619028 -#define _p_div_vv_instinit _p_div_vv_instinit27437,1619088 -#define _p_and_vv_instinit _p_and_vv_instinit27438,1619144 -#define _p_and_vc_instinit _p_and_vc_instinit27439,1619201 -#define _p_sll_cv_instinit _p_sll_cv_instinit27440,1619258 -#define _p_slr_vc_instinit _p_slr_vc_instinit27441,1619315 -#define _call_bfunc_xx_instinit _call_bfunc_xx_instinit27442,1619372 -#define _call_bfunc_yx_instinit _call_bfunc_yx_instinit27443,1619439 -#define _call_bfunc_xy_instinit _call_bfunc_xy_instinit27444,1619506 -#define _call_bfunc_yy_instinit _call_bfunc_yy_instinit27445,1619573 -#define _p_dif_instinit _p_dif_instinit27446,1619640 -#define _p_dif_instinit _p_dif_instinit27447,1619691 -#define _p_dif_instinit _p_dif_instinit27448,1619742 -#define _p_dif_instinit _p_dif_instinit27449,1619793 -#define _p_dif_instinit _p_dif_instinit27450,1619845 -#define _p_dif_instinit _p_dif_instinit27451,1619897 -#define _p_dif_instinit _p_dif_instinit27452,1619949 -#define _p_dif_instinit _p_dif_instinit27453,1620001 -#define _p_dif_instinit _p_dif_instinit27454,1620053 -#define _p_dif_instinit _p_dif_instinit27455,1620105 -#define _p_dif_instinit _p_dif_instinit27456,1620157 -#define _p_dif_instinit _p_dif_instinit27457,1620209 -#define _p_dif_instinit _p_dif_instinit27458,1620261 -#define _p_dif_instinit _p_dif_instinit27459,1620313 -#define _p_dif_instinit _p_dif_instinit27460,1620365 -#define _p_dif_instinit _p_dif_instinit27461,1620417 -#define _p_dif_instinit _p_dif_instinit27462,1620469 -#define _p_dif_instinit _p_dif_instinit27463,1620521 -#define _p_dif_instinit _p_dif_instinit27464,1620573 -#define _p_dif_instinit _p_dif_instinit27465,1620625 -#define _p_dif_instinit _p_dif_instinit27466,1620677 -#define _p_dif_instinit _p_dif_instinit27467,1620729 -#define _p_dif_instinit _p_dif_instinit27468,1620781 -#define _p_dif_instinit _p_dif_instinit27469,1620833 -#define _p_eq_instinit _p_eq_instinit27470,1620885 -#define _p_eq_instinit _p_eq_instinit27471,1620935 -#define _p_eq_instinit _p_eq_instinit27472,1620985 -#define _p_eq_instinit _p_eq_instinit27473,1621035 -#define _p_arg_vv_instinit _p_arg_vv_instinit27474,1621085 -#define _p_arg_vv_instinit _p_arg_vv_instinit27475,1621143 -#define _p_arg_cv_instinit _p_arg_cv_instinit27476,1621201 -#define _p_arg_cv_instinit _p_arg_cv_instinit27477,1621259 -#define _p_arg_y_vv_instinit _p_arg_y_vv_instinit27478,1621317 -#define _p_arg_y_vv_instinit _p_arg_y_vv_instinit27479,1621379 -#define _p_functor_instinit _p_functor_instinit27480,1621441 -#define _p_functor_instinit _p_functor_instinit27481,1621501 -#define _put_x_var_instinit _put_x_var_instinit27484,1621592 -#define _put_y_var_instinit _put_y_var_instinit27485,1621645 -#define _put_y_var_instinit _put_y_var_instinit27486,1621701 -#define _put_x_val_instinit _put_x_val_instinit27487,1621757 -#define _put_xx_val_instinit _put_xx_val_instinit27488,1621814 -#define _put_y_val_instinit _put_y_val_instinit27489,1621873 -#define _put_y_val_instinit _put_y_val_instinit27490,1621930 -#define _put_y_vals_instinit _put_y_vals_instinit27491,1621987 -#define _put_y_vals_instinit _put_y_vals_instinit27492,1622046 -#define _put_unsafe_instinit _put_unsafe_instinit27493,1622105 -#define _put_atom_instinit _put_atom_instinit27494,1622164 -#define PUT_DBTERM_INSTINIT PUT_DBTERM_INSTINIT27495,1622220 -#define PUT_BIGINT_INSTINIT PUT_BIGINT_INSTINIT27496,1622278 -#define _put_float_instinit _put_float_instinit27497,1622336 -#define PUT_LONGINT_INSTINIT PUT_LONGINT_INSTINIT27498,1622394 -#define _put_list_instinit _put_list_instinit27499,1622454 -#define _put_struct_instinit _put_struct_instinit27500,1622510 -#define _unify_x_var_instinit _unify_x_var_instinit27503,1622604 -#define _unify_x_var_instinit _unify_x_var_instinit27504,1622662 -#define _unify_x_var_write_instinit _unify_x_var_write_instinit27505,1622722 -#define _unify_l_x_var_instinit _unify_l_x_var_instinit27506,1622794 -#define _unify_l_x_var_instinit _unify_l_x_var_instinit27507,1622859 -#define _unify_l_x_var_write_instinit _unify_l_x_var_write_instinit27508,1622924 -#define _unify_x_var2_instinit _unify_x_var2_instinit27509,1623001 -#define _unify_x_var2_instinit _unify_x_var2_instinit27510,1623064 -#define _unify_x_var2_write_instinit _unify_x_var2_write_instinit27511,1623128 -#define _unify_l_x_var2_instinit _unify_l_x_var2_instinit27512,1623204 -#define _unify_l_x_var2_instinit _unify_l_x_var2_instinit27513,1623272 -#define _unify_l_x_var2_write_instinit _unify_l_x_var2_write_instinit27514,1623340 -#define _unify_y_var_instinit _unify_y_var_instinit27515,1623420 -#define _unify_y_var_instinit _unify_y_var_instinit27516,1623482 -#define _unify_y_var_write_instinit _unify_y_var_write_instinit27517,1623544 -#define _unify_l_y_var_instinit _unify_l_y_var_instinit27518,1623618 -#define _unify_l_y_var_instinit _unify_l_y_var_instinit27519,1623684 -#define _unify_l_y_var_write_instinit _unify_l_y_var_write_instinit27520,1623750 -#define _unify_x_val_instinit _unify_x_val_instinit27521,1623828 -#define _unify_x_val_write_instinit _unify_x_val_write_instinit27522,1623890 -#define _unify_l_x_val_instinit _unify_l_x_val_instinit27523,1623964 -#define _unify_l_x_val_write_instinit _unify_l_x_val_write_instinit27524,1624030 -#define UNIFY_Y_VAL_INSTINIT UNIFY_Y_VAL_INSTINIT27525,1624108 -#define UNIFY_Y_VAL_UVALY_NONVAR UNIFY_Y_VAL_UVALY_NONVAR27526,1624168 -#define UNIFY_Y_VAL_UVALY_NONVAR_NONVAR UNIFY_Y_VAL_UVALY_NONVAR_NONVAR27527,1624236 -#define UNIFY_Y_VAL_UVALY_NONVAR_UNK UNIFY_Y_VAL_UVALY_NONVAR_UNK27528,1624318 -#define UNIFY_Y_VAL_UVALY_UNK UNIFY_Y_VAL_UVALY_UNK27529,1624394 -#define UNIFY_Y_VAL_UVALY_VAR_NONVAR UNIFY_Y_VAL_UVALY_VAR_NONVAR27530,1624456 -#define UNIFY_Y_VAL_UVALY_VAR_UNK UNIFY_Y_VAL_UVALY_VAR_UNK27531,1624532 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT27532,1624602 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT27533,1624675 -#define UNIFY_L_Y_VAL_INSTINIT UNIFY_L_Y_VAL_INSTINIT27534,1624748 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR27535,1624813 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR27536,1624888 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK27537,1624977 -#define UNIFY_L_Y_VAL_ULVALY_UNK UNIFY_L_Y_VAL_ULVALY_UNK27538,1625060 -#define UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR27539,1625129 -#define UNIFY_L_Y_VAL_ULVALY_VAR_UNK UNIFY_L_Y_VAL_ULVALY_VAR_UNK27540,1625212 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT27541,1625289 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT27542,1625366 -#define _unify_x_loc_instinit _unify_x_loc_instinit27543,1625443 -#define _unify_x_loc_write_instinit _unify_x_loc_write_instinit27544,1625506 -#define _unify_l_x_loc_instinit _unify_l_x_loc_instinit27545,1625581 -#define _unify_l_x_loc_write_instinit _unify_l_x_loc_write_instinit27546,1625648 -#define UNIFY_Y_LOC_INSTINIT UNIFY_Y_LOC_INSTINIT27547,1625727 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR27548,1625788 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR27549,1625865 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK27550,1625956 -#define UNIFY_Y_LOC_UVALY_LOC_UNK UNIFY_Y_LOC_UVALY_LOC_UNK27551,1626041 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR27552,1626112 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_UNK UNIFY_Y_LOC_UVALY_LOC_VAR_UNK27553,1626197 -#define UNIFY_Y_LOC_WRITE_INSTINIT UNIFY_Y_LOC_WRITE_INSTINIT27554,1626276 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR27555,1626349 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK27556,1626442 -#define UNIFY_L_Y_LOC_INSTINIT UNIFY_L_Y_LOC_INSTINIT27557,1626529 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR27558,1626594 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR27559,1626677 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK27560,1626774 -#define UNIFY_L_Y_LOC_ULVALY_LOC_UNK UNIFY_L_Y_LOC_ULVALY_LOC_UNK27561,1626865 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR27562,1626942 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK27563,1627033 -#define UNIFY_L_Y_LOC_WRITE_INSTINIT UNIFY_L_Y_LOC_WRITE_INSTINIT27564,1627118 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR27565,1627195 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK27566,1627296 -#define _unify_void_instinit _unify_void_instinit27567,1627391 -#define _unify_void_write_instinit _unify_void_write_instinit27568,1627452 -#define UNIFY_L_VOID_INSTINIT UNIFY_L_VOID_INSTINIT27569,1627525 -#define UNIFY_L_VOID_WRITE_INSTINIT UNIFY_L_VOID_WRITE_INSTINIT27570,1627588 -#define _unify_n_voids_instinit _unify_n_voids_instinit27571,1627663 -#define _unify_n_voids_write_instinit _unify_n_voids_write_instinit27572,1627730 -#define _unify_l_n_voids_instinit _unify_l_n_voids_instinit27573,1627809 -#define _unify_l_n_voids_write_instinit _unify_l_n_voids_write_instinit27574,1627880 -#define _unify_atom_instinit _unify_atom_instinit27575,1627963 -#define _unify_atom_write_instinit _unify_atom_write_instinit27576,1628024 -#define _unify_l_atom_instinit _unify_l_atom_instinit27577,1628097 -#define _unify_l_atom_write_instinit _unify_l_atom_write_instinit27578,1628162 -#define UNIFY_N_ATOMS_INSTINIT UNIFY_N_ATOMS_INSTINIT27579,1628239 -#define UNIFY_N_ATOMS_WRITE_INSTINIT UNIFY_N_ATOMS_WRITE_INSTINIT27580,1628304 -#define UNIFY_FLOAT_INSTINIT UNIFY_FLOAT_INSTINIT27581,1628381 -#define UNIFY_FLOAT_UFLOAT_NONVAR_INIT UNIFY_FLOAT_UFLOAT_NONVAR_INIT27582,1628442 -#define UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR27583,1628523 -#define UNIFY_FLOAT_UFLOAT_NONVAR_END UNIFY_FLOAT_UFLOAT_NONVAR_END27584,1628618 -#define UNIFY_FLOAT_UFLOAT_UNK UNIFY_FLOAT_UFLOAT_UNK27585,1628697 -#define UNIFY_FLOAT_WRITE_INSTINIT UNIFY_FLOAT_WRITE_INSTINIT27586,1628762 -#define _unify_l_float_instinit _unify_l_float_instinit27587,1628835 -#define _unify_l_float_instinit _unify_l_float_instinit27588,1628902 -#define _unify_l_float_write_instinit _unify_l_float_write_instinit27589,1628969 -#define UNIFY_LONGINT_INSTINIT UNIFY_LONGINT_INSTINIT27590,1629048 -#define UNIFY_LONGINT_D0ISAPPL UNIFY_LONGINT_D0ISAPPL27591,1629113 -#define UNIFY_LONGINT_D0ISFUNC UNIFY_LONGINT_D0ISFUNC27592,1629179 -#define UNIFY_LONGINT_EQUALS UNIFY_LONGINT_EQUALS27593,1629245 -#define UNIFY_LONGINT_ULONGINT_UNK UNIFY_LONGINT_ULONGINT_UNK27594,1629307 -#define UNIFY_LONGINT_WRITE_INSTINIT UNIFY_LONGINT_WRITE_INSTINIT27595,1629381 -#define UNIFY_L_LONGINT_INSTINIT UNIFY_L_LONGINT_INSTINIT27596,1629459 -#define UNIFY_L_LONGINT_D0ISAPPL UNIFY_L_LONGINT_D0ISAPPL27597,1629529 -#define UNIFY_L_LONGINT_D0ISFUNC UNIFY_L_LONGINT_D0ISFUNC27598,1629599 -#define UNIFY_L_LONGINT_EQUALS UNIFY_L_LONGINT_EQUALS27599,1629669 -#define UNIFY_L_LONGINT_ULLONGINT_UNK UNIFY_L_LONGINT_ULLONGINT_UNK27600,1629735 -#define UNIFY_L_LONGINT_WRITE_INSTINIT UNIFY_L_LONGINT_WRITE_INSTINIT27601,1629815 -#define UNIFY_BIGINT_INSTINIT UNIFY_BIGINT_INSTINIT27602,1629897 -#define UNIFY_BIGINT_D0ISAPPL UNIFY_BIGINT_D0ISAPPL27603,1629961 -#define UNIFY_BIGINT_D1ISFUNC_GMP UNIFY_BIGINT_D1ISFUNC_GMP27604,1630025 -#define UNIFY_BIGINT_UBIGINT_UNK UNIFY_BIGINT_UBIGINT_UNK27605,1630097 -#define UNIFY_L_BIGINT_INSTINIT UNIFY_L_BIGINT_INSTINIT27606,1630167 -#define UNIFY_L_BIGINT_D0ISAPPL UNIFY_L_BIGINT_D0ISAPPL27607,1630235 -#define UNIFY_L_BIGINT_D0ISFUNC_GMP UNIFY_L_BIGINT_D0ISFUNC_GMP27608,1630303 -#define UNIFY_L_BIGINT_ULBIGINT_UNK UNIFY_L_BIGINT_ULBIGINT_UNK27609,1630379 -#define UNIFY_DBTERM_INSTINIT UNIFY_DBTERM_INSTINIT27610,1630455 -#define UNIFY_DBTERM_UDBTERM_NONVAR UNIFY_DBTERM_UDBTERM_NONVAR27611,1630519 -#define UNIFY_DBTERM_UDBTERM_UNK UNIFY_DBTERM_UDBTERM_UNK27612,1630595 -#define UNIFY_L_DBTERM_INSTINIT UNIFY_L_DBTERM_INSTINIT27613,1630665 -#define UNIFY_L_DBTERM_ULDBTERM_NONVAR UNIFY_L_DBTERM_ULDBTERM_NONVAR27614,1630733 -#define UNIFY_L_DBTERM_ULDBTERM_UNK UNIFY_L_DBTERM_ULDBTERM_UNK27615,1630815 -#define UNIFY_LIST_INSTINIT UNIFY_LIST_INSTINIT27616,1630891 -#define UNIFY_LIST_READMODE UNIFY_LIST_READMODE27617,1630951 -#define UNIFY_LIST_WRITEMODE UNIFY_LIST_WRITEMODE27618,1631011 -#define UNIFY_LIST_WRITE_INSTINIT UNIFY_LIST_WRITE_INSTINIT27619,1631073 -#define _unify_l_list_instinit _unify_l_list_instinit27620,1631145 -#define _unify_l_list_write_instinit _unify_l_list_write_instinit27621,1631211 -#define _unify_struct_instinit _unify_struct_instinit27622,1631289 -#define _unify_struct_write_instinit _unify_struct_write_instinit27623,1631355 -#define _unify_l_struc_instinit _unify_l_struc_instinit27624,1631433 -#define _unify_l_struc_write_instinit _unify_l_struc_write_instinit27625,1631501 -#define _save_pair_x_instinit _save_pair_x_instinit27626,1631581 -#define _save_pair_x_write_instinit _save_pair_x_write_instinit27627,1631645 -#define SAVE_PAIR_Y_INSTINIT SAVE_PAIR_Y_INSTINIT27628,1631721 -#define SAVE_PAIR_Y_WRITE_INSTINIT SAVE_PAIR_Y_WRITE_INSTINIT27629,1631783 -#define _save_appl_x_instinit _save_appl_x_instinit27630,1631857 -#define _save_appl_x_write_instinit _save_appl_x_write_instinit27631,1631921 -#define SAVE_APPL_Y_INSTINIT SAVE_APPL_Y_INSTINIT27632,1631997 -#define SAVE_APPL_Y_WRITE_INSTINIT SAVE_APPL_Y_WRITE_INSTINIT27633,1632059 -#define WRITE_X_VAR_INSTINIT WRITE_X_VAR_INSTINIT27636,1632167 -#define WRITE_VOID_INSTINIT WRITE_VOID_INSTINIT27637,1632222 -#define WRITE_N_VOIDS_INSTINIT WRITE_N_VOIDS_INSTINIT27638,1632277 -#define _write_y_var_instinit _write_y_var_instinit27639,1632339 -#define _write_x_val_instinit _write_x_val_instinit27640,1632399 -#define _write_x_loc_instinit _write_x_loc_instinit27641,1632459 -#define _write_x_loc_instinit _write_x_loc_instinit27642,1632520 -#define _write_x_loc_instinit _write_x_loc_instinit27643,1632581 -#define _write_x_loc_instinit _write_x_loc_instinit27644,1632642 -#define _write_y_val_instinit _write_y_val_instinit27645,1632704 -#define _write_y_val_instinit _write_y_val_instinit27646,1632766 -#define _write_y_loc_instinit _write_y_loc_instinit27647,1632828 -#define _write_y_loc_instinit _write_y_loc_instinit27648,1632890 -#define _write_y_loc_instinit _write_y_loc_instinit27649,1632952 -#define _write_y_loc_instinit _write_y_loc_instinit27650,1633014 -#define _write_atom_instinit _write_atom_instinit27651,1633076 -#define WRITE_BIGINT_INSTINIT WRITE_BIGINT_INSTINIT27652,1633136 -#define _write_dbterm_instinit _write_dbterm_instinit27653,1633198 -#define _write_float_instinit _write_float_instinit27654,1633262 -#define WRITE_LONGIT_INSTINIT WRITE_LONGIT_INSTINIT27655,1633324 -#define WRITE_N_ATOMS_INSTINIT WRITE_N_ATOMS_INSTINIT27656,1633386 -#define WRITE_LIST_INSTINIT WRITE_LIST_INSTINIT27657,1633450 -#define _write_l_list_instinit _write_l_list_instinit27658,1633508 -#define _write_struct_instinit _write_struct_instinit27659,1633572 -#define _write_l_struc_instinit _write_l_struc_instinit27660,1633636 -#define JIT_HANDLER_INSTINIT JIT_HANDLER_INSTINIT27673,1634137 -#define I_R I_R27674,1634192 -#define YAAM_CHECK_TRAIL_TR YAAM_CHECK_TRAIL_TR27675,1634214 -#define YAAM_DEREF_BODY_D0PT0 YAAM_DEREF_BODY_D0PT027676,1634268 -#define YAAM_DEREF_BODY_D0PT1 YAAM_DEREF_BODY_D0PT127677,1634327 -#define YAAM_DEREF_BODY_D1PT0 YAAM_DEREF_BODY_D1PT027678,1634387 -#define YAAM_DEREF_BODY_D1PT1 YAAM_DEREF_BODY_D1PT127679,1634447 -#define YAAM_UNIFYBOUND YAAM_UNIFYBOUND27680,1634507 -#define NoStackDeallocate_Exception NoStackDeallocate_Exception27681,1634555 -#define NoStackCall_Exception NoStackCall_Exception27682,1634628 -#define NoStackDExecute_Exception NoStackDExecute_Exception27683,1634689 -#define NoStackExecute_Exception NoStackExecute_Exception27684,1634759 -#define NoStackFail_Exception NoStackFail_Exception27685,1634827 -#define NoStackEither_Exception NoStackEither_Exception27686,1634889 -#define NoStackCommitY_Exception NoStackCommitY_Exception27687,1634955 -#define NoStackCommitX_Exception NoStackCommitX_Exception27688,1635023 -#define NoStackDeallocate_Exception NoStackDeallocate_Exception27689,1635091 -#define NoStackCall_Exception NoStackCall_Exception27690,1635165 -#define NoStackDExecute_Exception NoStackDExecute_Exception27691,1635227 -#define NoStackExecute_Exception NoStackExecute_Exception27692,1635297 -#define NoStackFail_Exception NoStackFail_Exception27693,1635365 -#define NoStackEither_Exception NoStackEither_Exception27694,1635427 -#define NoStackCommitY_Exception NoStackCommitY_Exception27695,1635493 -#define NoStackCommitX_Exception NoStackCommitX_Exception27696,1635561 -#define YAAM_FAIL YAAM_FAIL27697,1635629 -#define JIT_HANDLER_INSTINIT JIT_HANDLER_INSTINIT27700,1635698 -#define I_R I_R27701,1635753 -#define YAAM_CHECK_TRAIL_TR YAAM_CHECK_TRAIL_TR27702,1635776 -#define YAAM_DEREF_BODY_D0PT0 YAAM_DEREF_BODY_D0PT027703,1635831 -#define YAAM_DEREF_BODY_D0PT1 YAAM_DEREF_BODY_D0PT127704,1635891 -#define YAAM_DEREF_BODY_D1PT0 YAAM_DEREF_BODY_D1PT027705,1635951 -#define YAAM_DEREF_BODY_D1PT1 YAAM_DEREF_BODY_D1PT127706,1636011 -#define YAAM_UNIFYBOUND YAAM_UNIFYBOUND27707,1636071 -#define NoStackDeallocate_Exception NoStackDeallocate_Exception27708,1636119 -#define NoStackCall_Exception NoStackCall_Exception27709,1636192 -#define NoStackDExecute_Exception NoStackDExecute_Exception27710,1636254 -#define NoStackExecute_Exception NoStackExecute_Exception27711,1636324 -#define NoStackFail_Exception NoStackFail_Exception27712,1636392 -#define NoStackEither_Exception NoStackEither_Exception27713,1636454 -#define NoStackCommitY_Exception NoStackCommitY_Exception27714,1636520 -#define NoStackCommitX_Exception NoStackCommitX_Exception27715,1636588 -#define NoStackDeallocate_Exception NoStackDeallocate_Exception27716,1636656 -#define NoStackCall_Exception NoStackCall_Exception27717,1636730 -#define NoStackDExecute_Exception NoStackDExecute_Exception27718,1636792 -#define NoStackExecute_Exception NoStackExecute_Exception27719,1636862 -#define NoStackFail_Exception NoStackFail_Exception27720,1636930 -#define NoStackEither_Exception NoStackEither_Exception27721,1636992 -#define NoStackCommitY_Exception NoStackCommitY_Exception27722,1637058 -#define NoStackCommitX_Exception NoStackCommitX_Exception27723,1637126 -#define YAAM_FAIL YAAM_FAIL27724,1637195 -#define EXECUTE_INSTINIT EXECUTE_INSTINIT27727,1637261 -#define EXECUTE_LOW_LEVEL_TRACER EXECUTE_LOW_LEVEL_TRACER27728,1637308 -#define EXECUTE_POST_LOW_LEVEL_TRACER EXECUTE_POST_LOW_LEVEL_TRACER27729,1637373 -#define EXECUTE_POST_NOCHECKING EXECUTE_POST_NOCHECKING27730,1637449 -#define EXECUTE_DEPTH_MINOR EXECUTE_DEPTH_MINOR27731,1637513 -#define EXECUTE_DEPTH_MOFPRED EXECUTE_DEPTH_MOFPRED27732,1637569 -#define EXECUTE_DEPTH_END EXECUTE_DEPTH_END27733,1637629 -#define EXECUTE_END_END EXECUTE_END_END27734,1637681 -#define DEXECUTE_INSTINIT DEXECUTE_INSTINIT27735,1637729 -#define DEXECUTE_LOW_LEVEL_TRACER DEXECUTE_LOW_LEVEL_TRACER27736,1637782 -#define DEXECUTE_POST_LOW_LEVEL_TRACER DEXECUTE_POST_LOW_LEVEL_TRACER27737,1637851 -#define DEXECUTE_DEPTH_MINOR DEXECUTE_DEPTH_MINOR27738,1637930 -#define DEXECUTE_DEPTH_MOFPRED DEXECUTE_DEPTH_MOFPRED27739,1637989 -#define DEXECUTE_DEPTH_END DEXECUTE_DEPTH_END27740,1638052 -#define DEXECUTE_END_END DEXECUTE_END_END27741,1638107 -#define DEXECUTE_END_END DEXECUTE_END_END27742,1638158 -#define DEXECUTE_END_END DEXECUTE_END_END27743,1638210 -#define FCALL_INST FCALL_INST27744,1638262 -#define FCALL_INST FCALL_INST27745,1638302 -#define CALL_INSTINIT CALL_INSTINIT27746,1638342 -#define CALL_LOW_LEVEL_TRACER CALL_LOW_LEVEL_TRACER27747,1638388 -#define CALL_POST_LOW_LEVEL_TRACER CALL_POST_LOW_LEVEL_TRACER27748,1638450 -#define CALL_POST_NO_CHECKING CALL_POST_NO_CHECKING27749,1638522 -#define CALL_DEPTH_MINOR CALL_DEPTH_MINOR27750,1638584 -#define CALL_DEPTH_MOFPRED CALL_DEPTH_MOFPRED27751,1638636 -#define CALL_DEPTH_END CALL_DEPTH_END27752,1638692 -#define CALL_END_END CALL_END_END27753,1638740 -#define CALL_END_END CALL_END_END27754,1638784 -#define CALL_END_END CALL_END_END27755,1638828 -#define CALL_END_END CALL_END_END27756,1638872 -#define CALL_END_END CALL_END_END27757,1638916 -#define CALL_END_END CALL_END_END27758,1638960 -#define PROCCEED_INSTINIT PROCCEED_INSTINIT27759,1639004 -#define PROCCEED_DEPTH PROCCEED_DEPTH27760,1639058 -#define PROCCEED_END PROCCEED_END27761,1639106 -#define ALLOCATE_INSTINIT ALLOCATE_INSTINIT27762,1639150 -#define ALLOCATE_DEPTH ALLOCATE_DEPTH27763,1639204 -#define ALLOCATE_END ALLOCATE_END27764,1639252 -#define DEALLOCATE_INSTINITDEALLOCATE_INSTINIT27765,1639296 -#define DEALLOCATE_POST_CHECK DEALLOCATE_POST_CHECK27766,1639353 -#define DEALLOCATE_DEPTH DEALLOCATE_DEPTH27767,1639415 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN27768,1639467 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN27769,1639521 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN27770,1639575 -#define DEALLOCATE_POST_FROZEN DEALLOCATE_POST_FROZEN27771,1639629 -#define DEALLOCATE_END DEALLOCATE_END27772,1639693 -#define COUNT_CALL_INSTINIT COUNT_CALL_INSTINIT27775,1639774 -#define COUNT_CALL_MIDDLE COUNT_CALL_MIDDLE27776,1639827 -#define COUNT_CALL_END COUNT_CALL_END27777,1639878 -#define COUNT_RETRY_INSTINIT COUNT_RETRY_INSTINIT27778,1639924 -#define COUNT_RETRY_MIDDLE COUNT_RETRY_MIDDLE27779,1639982 -#define COUNT_RETRY_END COUNT_RETRY_END27780,1640037 -#define COUNT_RETRY_ME_INSTINIT COUNT_RETRY_ME_INSTINIT27781,1640086 -#define COUNT_RETRY_ME_MIDDLE COUNT_RETRY_ME_MIDDLE27782,1640151 -#define COUNT_RETRY_ME_MIDDLE COUNT_RETRY_ME_MIDDLE27783,1640212 -#define COUNT_RETRY_ME_END COUNT_RETRY_ME_END27784,1640273 -#define COUNT_TRUST_ME_INSTINIT COUNT_TRUST_ME_INSTINIT27785,1640329 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE27786,1640395 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE27787,1640457 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE27788,1640519 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE27789,1640581 -#define COUNT_TRUST_ME_END COUNT_TRUST_ME_END27790,1640643 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT27791,1640699 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT27792,1640775 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT27793,1640851 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT27794,1640927 -#define COUNT_RETRY_LOGICAL_END COUNT_RETRY_LOGICAL_END27795,1641004 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27796,1641071 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27797,1641148 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27798,1641225 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27799,1641302 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27800,1641379 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27801,1641456 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27802,1641533 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27803,1641610 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27804,1641687 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27805,1641764 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27806,1641842 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27807,1641920 -#define COUNT_TRUST_LOGICAL_END COUNT_TRUST_LOGICAL_END27808,1641998 -#define COUNT_CALL_INSTINIT COUNT_CALL_INSTINIT27811,1642101 -#define COUNT_CALL_MIDDLE COUNT_CALL_MIDDLE27812,1642154 -#define COUNT_CALL_END COUNT_CALL_END27813,1642205 -#define COUNT_RETRY_INSTINIT COUNT_RETRY_INSTINIT27814,1642251 -#define COUNT_RETRY_MIDDLE COUNT_RETRY_MIDDLE27815,1642309 -#define COUNT_RETRY_END COUNT_RETRY_END27816,1642364 -#define COUNT_RETRY_ME_INSTINIT COUNT_RETRY_ME_INSTINIT27817,1642413 -#define COUNT_RETRY_ME_MIDDLE COUNT_RETRY_ME_MIDDLE27818,1642478 -#define COUNT_RETRY_ME_MIDDLE COUNT_RETRY_ME_MIDDLE27819,1642539 -#define COUNT_RETRY_ME_END COUNT_RETRY_ME_END27820,1642600 -#define COUNT_TRUST_ME_INSTINIT COUNT_TRUST_ME_INSTINIT27821,1642656 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE27822,1642722 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE27823,1642784 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE27824,1642846 -#define COUNT_TRUST_ME_MIDDLE COUNT_TRUST_ME_MIDDLE27825,1642908 -#define COUNT_TRUST_ME_END COUNT_TRUST_ME_END27826,1642970 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT27827,1643026 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT27828,1643102 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT27829,1643178 -#define COUNT_RETRY_LOGICAL_INSTINIT COUNT_RETRY_LOGICAL_INSTINIT27830,1643254 -#define COUNT_RETRY_LOGICAL_END COUNT_RETRY_LOGICAL_END27831,1643331 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27832,1643398 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27833,1643475 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27834,1643552 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27835,1643629 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27836,1643706 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27837,1643783 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27838,1643860 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27839,1643937 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27840,1644014 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27841,1644091 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27842,1644169 -#define COUNT_TRUST_LOGICAL_INSTINIT COUNT_TRUST_LOGICAL_INSTINIT27843,1644247 -#define COUNT_TRUST_LOGICAL_END COUNT_TRUST_LOGICAL_END27844,1644325 -#define EXECUTE_INSTINIT EXECUTE_INSTINIT27847,1644422 -#define EXECUTE_LOW_LEVEL_TRACER EXECUTE_LOW_LEVEL_TRACER27848,1644469 -#define EXECUTE_POST_LOW_LEVEL_TRACER EXECUTE_POST_LOW_LEVEL_TRACER27849,1644535 -#define EXECUTE_POST_NOCHECKING EXECUTE_POST_NOCHECKING27850,1644611 -#define EXECUTE_DEPTH_MINOR EXECUTE_DEPTH_MINOR27851,1644675 -#define EXECUTE_DEPTH_MOFPRED EXECUTE_DEPTH_MOFPRED27852,1644731 -#define EXECUTE_DEPTH_END EXECUTE_DEPTH_END27853,1644791 -#define EXECUTE_END_END EXECUTE_END_END27854,1644843 -#define DEXECUTE_INSTINIT DEXECUTE_INSTINIT27855,1644891 -#define DEXECUTE_LOW_LEVEL_TRACER DEXECUTE_LOW_LEVEL_TRACER27856,1644944 -#define DEXECUTE_POST_LOW_LEVEL_TRACER DEXECUTE_POST_LOW_LEVEL_TRACER27857,1645013 -#define DEXECUTE_DEPTH_MINOR DEXECUTE_DEPTH_MINOR27858,1645092 -#define DEXECUTE_DEPTH_MOFPRED DEXECUTE_DEPTH_MOFPRED27859,1645151 -#define DEXECUTE_DEPTH_END DEXECUTE_DEPTH_END27860,1645214 -#define DEXECUTE_END_END DEXECUTE_END_END27861,1645269 -#define DEXECUTE_END_END DEXECUTE_END_END27862,1645320 -#define DEXECUTE_END_END DEXECUTE_END_END27863,1645372 -#define FCALL_INST FCALL_INST27864,1645424 -#define FCALL_INST FCALL_INST27865,1645464 -#define CALL_INSTINIT CALL_INSTINIT27866,1645504 -#define CALL_LOW_LEVEL_TRACER CALL_LOW_LEVEL_TRACER27867,1645550 -#define CALL_POST_LOW_LEVEL_TRACER CALL_POST_LOW_LEVEL_TRACER27868,1645612 -#define CALL_POST_NO_CHECKING CALL_POST_NO_CHECKING27869,1645684 -#define CALL_DEPTH_MINOR CALL_DEPTH_MINOR27870,1645746 -#define CALL_DEPTH_MOFPRED CALL_DEPTH_MOFPRED27871,1645798 -#define CALL_DEPTH_END CALL_DEPTH_END27872,1645854 -#define CALL_END_END CALL_END_END27873,1645902 -#define CALL_END_END CALL_END_END27874,1645946 -#define CALL_END_END CALL_END_END27875,1645990 -#define CALL_END_END CALL_END_END27876,1646034 -#define CALL_END_END CALL_END_END27877,1646078 -#define CALL_END_END CALL_END_END27878,1646122 -#define PROCCEED_INSTINIT PROCCEED_INSTINIT27879,1646166 -#define PROCCEED_DEPTH PROCCEED_DEPTH27880,1646220 -#define PROCCEED_END PROCCEED_END27881,1646268 -#define ALLOCATE_INSTINIT ALLOCATE_INSTINIT27882,1646312 -#define ALLOCATE_DEPTH ALLOCATE_DEPTH27883,1646366 -#define ALLOCATE_END ALLOCATE_END27884,1646414 -#define DEALLOCATE_INSTINIT DEALLOCATE_INSTINIT27885,1646458 -#define DEALLOCATE_POST_CHECK DEALLOCATE_POST_CHECK27886,1646516 -#define DEALLOCATE_DEPTH DEALLOCATE_DEPTH27887,1646578 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN27888,1646630 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN27889,1646684 -#define DEALLOCATE_FROZEN DEALLOCATE_FROZEN27890,1646738 -#define DEALLOCATE_POST_FROZEN DEALLOCATE_POST_FROZEN27891,1646792 -#define DEALLOCATE_END DEALLOCATE_END27892,1646856 -#define CALL_CPRED_INSTINIT CALL_CPRED_INSTINIT27895,1646932 -#define CALL_CPRED_TEST_STACK CALL_CPRED_TEST_STACK27896,1646985 -#define CALL_CPRED_TEST_STACK CALL_CPRED_TEST_STACK27897,1647044 -#define CALL_CPRED_FROZEN_INIT CALL_CPRED_FROZEN_INIT27898,1647104 -#define CALL_CPRED_TOPB CALL_CPRED_TOPB27899,1647166 -#define CALL_CPRED_TOPB CALL_CPRED_TOPB27900,1647214 -#define CALL_CPRED_NOFROZEN CALL_CPRED_NOFROZEN27901,1647263 -#define CALL_CPRED_LOW_LEVEL_TRACER CALL_CPRED_LOW_LEVEL_TRACER27902,1647320 -#define CALL_CPRED_POST_LOW_LEVEL_TRACER CALL_CPRED_POST_LOW_LEVEL_TRACER27903,1647393 -#define CALL_CPRED_SETSREG CALL_CPRED_SETSREG27904,1647476 -#define CALL_CPRED_END CALL_CPRED_END27905,1647531 -#define EXECUTE_CPRED_INSTINIT EXECUTE_CPRED_INSTINIT27906,1647578 -#define EXECUTE_CPRED_POST_CHECK_TRAIL EXECUTE_CPRED_POST_CHECK_TRAIL27907,1647641 -#define EXECUTE_CPRED_FROZEN EXECUTE_CPRED_FROZEN27908,1647720 -#define EXECUTE_CPRED_TOPB EXECUTE_CPRED_TOPB27909,1647779 -#define EXECUTE_CPRED_TOPB EXECUTE_CPRED_TOPB27910,1647834 -#define EXECUTE_CPRED_NOFROZEN EXECUTE_CPRED_NOFROZEN27911,1647889 -#define EXECUTE_CPRED_POST_FROZEN EXECUTE_CPRED_POST_FROZEN27912,1647953 -#define EXECUTE_CPRED_LOW_LEVEL_TRACER EXECUTE_CPRED_LOW_LEVEL_TRACER27913,1648023 -#define EXECUTE_CPRED_POST_LOW_LEVEL_TRACER EXECUTE_CPRED_POST_LOW_LEVEL_TRACER27914,1648103 -#define EXECUTE_CPRED_SAVE_PC EXECUTE_CPRED_SAVE_PC27915,1648193 -#define EXECUTE_CPRED_DEPTH_MINOR EXECUTE_CPRED_DEPTH_MINOR27916,1648255 -#define EXECUTE_CPRED_DEPTH_MOFPRED EXECUTE_CPRED_DEPTH_MOFPRED27917,1648325 -#define EXECUTE_CPRED_DEPTH_END EXECUTE_CPRED_DEPTH_END27918,1648399 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END27919,1648465 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END27920,1648519 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END27921,1648573 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END27922,1648627 -#define CALL_USERCPRED_INSTINIT CALL_USERCPRED_INSTINIT27923,1648681 -#define CALL_USERCPRED_INSTINIT CALL_USERCPRED_INSTINIT27924,1648747 -#define CALL_USERCPRED_LOW_LEVEL_TRACER CALL_USERCPRED_LOW_LEVEL_TRACER27925,1648813 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN27926,1648895 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN27927,1648957 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN27928,1649019 -#define CALL_USERCPRED_POST_FROZEN CALL_USERCPRED_POST_FROZEN27929,1649081 -#define CALL_USERCPRED_END CALL_USERCPRED_END27930,1649153 -#define CALL_CPRED_INSTINIT CALL_CPRED_INSTINIT27933,1649239 -#define CALL_CPRED_TEST_STACK CALL_CPRED_TEST_STACK27934,1649292 -#define CALL_CPRED_TEST_STACK CALL_CPRED_TEST_STACK27935,1649351 -#define CALL_CPRED_FROZEN_INIT CALL_CPRED_FROZEN_INIT27936,1649411 -#define CALL_CPRED_TOPB CALL_CPRED_TOPB27937,1649473 -#define CALL_CPRED_TOPB CALL_CPRED_TOPB27938,1649521 -#define CALL_CPRED_NOFROZEN CALL_CPRED_NOFROZEN27939,1649570 -#define CALL_CPRED_LOW_LEVEL_TRACER CALL_CPRED_LOW_LEVEL_TRACER27940,1649627 -#define CALL_CPRED_POST_LOW_LEVEL_TRACER CALL_CPRED_POST_LOW_LEVEL_TRACER27941,1649700 -#define CALL_CPRED_SETSREG CALL_CPRED_SETSREG27942,1649783 -#define CALL_CPRED_END CALL_CPRED_END27943,1649838 -#define EXECUTE_CPRED_INSTINIT EXECUTE_CPRED_INSTINIT27944,1649885 -#define EXECUTE_CPRED_POST_CHECK_TRAIL EXECUTE_CPRED_POST_CHECK_TRAIL27945,1649948 -#define EXECUTE_CPRED_FROZEN EXECUTE_CPRED_FROZEN27946,1650027 -#define EXECUTE_CPRED_TOPB EXECUTE_CPRED_TOPB27947,1650086 -#define EXECUTE_CPRED_TOPB EXECUTE_CPRED_TOPB27948,1650141 -#define EXECUTE_CPRED_NOFROZEN EXECUTE_CPRED_NOFROZEN27949,1650196 -#define EXECUTE_CPRED_POST_FROZEN EXECUTE_CPRED_POST_FROZEN27950,1650260 -#define EXECUTE_CPRED_LOW_LEVEL_TRACER EXECUTE_CPRED_LOW_LEVEL_TRACER27951,1650330 -#define EXECUTE_CPRED_POST_LOW_LEVEL_TRACER EXECUTE_CPRED_POST_LOW_LEVEL_TRACER27952,1650410 -#define EXECUTE_CPRED_SAVE_PC EXECUTE_CPRED_SAVE_PC27953,1650500 -#define EXECUTE_CPRED_DEPTH_MINOR EXECUTE_CPRED_DEPTH_MINOR27954,1650562 -#define EXECUTE_CPRED_DEPTH_MOFPRED EXECUTE_CPRED_DEPTH_MOFPRED27955,1650632 -#define EXECUTE_CPRED_DEPTH_END EXECUTE_CPRED_DEPTH_END27956,1650706 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END27957,1650772 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END27958,1650826 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END27959,1650880 -#define EXECUTE_CPRED_END EXECUTE_CPRED_END27960,1650934 -#define CALL_USERCPRED_INSTINIT CALL_USERCPRED_INSTINIT27961,1650988 -#define CALL_USERCPRED_INSTINIT CALL_USERCPRED_INSTINIT27962,1651054 -#define CALL_USERCPRED_LOW_LEVEL_TRACER CALL_USERCPRED_LOW_LEVEL_TRACER27963,1651120 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN27964,1651202 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN27965,1651264 -#define CALL_USERCPRED_FROZEN CALL_USERCPRED_FROZEN27966,1651326 -#define CALL_USERCPRED_POST_FROZEN CALL_USERCPRED_POST_FROZEN27967,1651388 -#define CALL_USERCPRED_END CALL_USERCPRED_END27968,1651460 -#define CUT_INSTINITCUT_INSTINIT27971,1651542 -#define CUT_COROUTINING CUT_COROUTINING27972,1651580 -#define CUT_NOCOROUTINING CUT_NOCOROUTINING27973,1651626 -#define CUT_T_INSTINITCUT_T_INSTINIT27974,1651678 -#define CUT_T_COROUTINING CUT_T_COROUTINING27975,1651723 -#define CUT_T_NOCOROUTINING CUT_T_NOCOROUTINING27976,1651775 -#define CUT_E_INSTINITCUT_E_INSTINIT27977,1651831 -#define CUT_E_COROUTINING CUT_E_COROUTINING27978,1651876 -#define CUT_E_NOCOROUTINING CUT_E_NOCOROUTINING27979,1651928 -#define SAVE_B_X_INSTINIT SAVE_B_X_INSTINIT27980,1651984 -#define SAVE_B_X_YSBA_FROZEN SAVE_B_X_YSBA_FROZEN27981,1652037 -#define SAVE_B_X_NOYSBA_NOFROZEN SAVE_B_X_NOYSBA_NOFROZEN27982,1652096 -#define SAVE_B_X_END SAVE_B_X_END27983,1652163 -#define SAVE_B_Y_INSTINITSAVE_B_Y_INSTINIT27984,1652206 -#define SAVE_B_Y_YSBA SAVE_B_Y_YSBA27985,1652258 -#define SAVE_B_Y_NOYSBA SAVE_B_Y_NOYSBA27986,1652303 -#define SAVE_B_Y_END SAVE_B_Y_END27987,1652352 -#define COMMIT_B_X_INSTINIT COMMIT_B_X_INSTINIT27988,1652395 -#define COMMIT_B_X_DO_COMMIT_B_X COMMIT_B_X_DO_COMMIT_B_X27989,1652452 -#define COMMIT_B_X_COMMIT_B_X_NVAR COMMIT_B_X_COMMIT_B_X_NVAR27990,1652519 -#define COMMIT_B_X_YSBA_FROZEN COMMIT_B_X_YSBA_FROZEN27991,1652590 -#define COMMIT_B_X_NOYSBA_NOFROZEN COMMIT_B_X_NOYSBA_NOFROZEN27992,1652653 -#define COMMIT_B_X_POST_YSBA_FROZEN COMMIT_B_X_POST_YSBA_FROZEN27993,1652724 -#define COMMIT_B_X_ENDCOMMIT_B_X_END27994,1652798 -#define COMMIT_B_Y_INSTINIT COMMIT_B_Y_INSTINIT27995,1652845 -#define COMMIT_B_Y_DO_COMMIT_B_Y COMMIT_B_Y_DO_COMMIT_B_Y27996,1652903 -#define COMMIT_B_Y_COMMIT_B_Y_NVAR COMMIT_B_Y_COMMIT_B_Y_NVAR27997,1652971 -#define COMMIT_B_Y_YSBA_FROZEN COMMIT_B_Y_YSBA_FROZEN27998,1653043 -#define COMMIT_B_Y_NOYSBA_NOFROZEN COMMIT_B_Y_NOYSBA_NOFROZEN27999,1653107 -#define COMMIT_B_Y_POST_YSBA_FROZEN COMMIT_B_Y_POST_YSBA_FROZEN28000,1653179 -#define CUT_INSTINIT CUT_INSTINIT28003,1653281 -#define CUT_COROUTINING CUT_COROUTINING28004,1653320 -#define CUT_NOCOROUTINING CUT_NOCOROUTINING28005,1653366 -#define CUT_T_INSTINIT CUT_T_INSTINIT28006,1653418 -#define CUT_T_COROUTINING CUT_T_COROUTINING28007,1653464 -#define CUT_T_NOCOROUTINING CUT_T_NOCOROUTINING28008,1653516 -#define CUT_E_INSTINIT CUT_E_INSTINIT28009,1653572 -#define CUT_E_COROUTINING CUT_E_COROUTINING28010,1653618 -#define CUT_E_NOCOROUTINING CUT_E_NOCOROUTINING28011,1653670 -#define SAVE_B_X_INSTINIT SAVE_B_X_INSTINIT28012,1653727 -#define SAVE_B_X_YSBA_FROZEN SAVE_B_X_YSBA_FROZEN28013,1653780 -#define SAVE_B_X_NOYSBA_NOFROZEN SAVE_B_X_NOYSBA_NOFROZEN28014,1653839 -#define SAVE_B_X_END SAVE_B_X_END28015,1653906 -#define SAVE_B_Y_INSTINITSAVE_B_Y_INSTINIT28016,1653949 -#define SAVE_B_Y_YSBA SAVE_B_Y_YSBA28017,1654001 -#define SAVE_B_Y_NOYSBA SAVE_B_Y_NOYSBA28018,1654046 -#define SAVE_B_Y_END SAVE_B_Y_END28019,1654095 -#define COMMIT_B_X_INSTINIT COMMIT_B_X_INSTINIT28020,1654138 -#define COMMIT_B_X_DO_COMMIT_B_X COMMIT_B_X_DO_COMMIT_B_X28021,1654195 -#define COMMIT_B_X_COMMIT_B_X_NVAR COMMIT_B_X_COMMIT_B_X_NVAR28022,1654262 -#define COMMIT_B_X_YSBA_FROZEN COMMIT_B_X_YSBA_FROZEN28023,1654333 -#define COMMIT_B_X_NOYSBA_NOFROZEN COMMIT_B_X_NOYSBA_NOFROZEN28024,1654397 -#define COMMIT_B_X_POST_YSBA_FROZEN COMMIT_B_X_POST_YSBA_FROZEN28025,1654469 -#define COMMIT_B_X_ENDCOMMIT_B_X_END28026,1654543 -#define COMMIT_B_Y_INSTINIT COMMIT_B_Y_INSTINIT28027,1654590 -#define COMMIT_B_Y_DO_COMMIT_B_Y COMMIT_B_Y_DO_COMMIT_B_Y28028,1654648 -#define COMMIT_B_Y_COMMIT_B_Y_NVAR COMMIT_B_Y_COMMIT_B_Y_NVAR28029,1654716 -#define COMMIT_B_Y_YSBA_FROZEN COMMIT_B_Y_YSBA_FROZEN28030,1654788 -#define COMMIT_B_Y_NOYSBA_NOFROZEN COMMIT_B_Y_NOYSBA_NOFROZEN28031,1654852 -#define COMMIT_B_Y_POST_YSBA_FROZEN COMMIT_B_Y_POST_YSBA_FROZEN28032,1654924 -#define TRUST_FAIL_INSTINITTRUST_FAIL_INSTINIT28035,1655028 -#define TRUST_FAIL_CUT_C TRUST_FAIL_CUT_C28036,1655080 -#define TRUST_FAIL_YAPOR TRUST_FAIL_YAPOR28037,1655128 -#define TRUST_FAIL_NOYAPOR TRUST_FAIL_NOYAPOR28038,1655178 -#define LBL_SHARED_FAIL LBL_SHARED_FAIL28039,1655232 -#define OP_FAIL_INSTINIT OP_FAIL_INSTINIT28040,1655280 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT28041,1655330 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT28042,1655382 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT28043,1655435 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT28044,1655488 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28045,1655541 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28046,1655611 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28047,1655681 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28048,1655751 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28049,1655821 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER28050,1655892 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER28051,1655973 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER28052,1656054 -#define LBL_FAIL_VARTERM LBL_FAIL_VARTERM28053,1656135 -#define LBL_FAIL_VARTERM LBL_FAIL_VARTERM28054,1656188 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28055,1656241 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28056,1656306 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28057,1656371 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28058,1656436 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28059,1656501 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28060,1656566 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28061,1656631 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28062,1656696 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28063,1656761 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28064,1656826 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28065,1656891 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28066,1656956 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28067,1657021 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28068,1657094 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28069,1657167 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28070,1657240 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28071,1657314 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28072,1657388 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28073,1657462 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28074,1657536 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28075,1657610 -#define LBL_FAIL_END LBL_FAIL_END28076,1657684 -#define TRUST_FAIL_INSTINITTRUST_FAIL_INSTINIT28079,1657762 -#define TRUST_FAIL_CUT_C TRUST_FAIL_CUT_C28080,1657814 -#define TRUST_FAIL_YAPOR TRUST_FAIL_YAPOR28081,1657862 -#define TRUST_FAIL_NOYAPOR TRUST_FAIL_NOYAPOR28082,1657912 -#define LBL_SHARED_FAIL LBL_SHARED_FAIL28083,1657966 -#define OP_FAIL_INSTINIT OP_FAIL_INSTINIT28084,1658014 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT28085,1658064 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT28086,1658116 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT28087,1658169 -#define LBL_FAIL_INSTINIT LBL_FAIL_INSTINIT28088,1658222 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28089,1658276 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28090,1658346 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28091,1658416 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28092,1658486 -#define LBL_FAIL_LOW_LEVEL_TRACER LBL_FAIL_LOW_LEVEL_TRACER28093,1658557 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER28094,1658628 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER28095,1658709 -#define LBL_FAIL_POST_LOW_LEVEL_TRACER LBL_FAIL_POST_LOW_LEVEL_TRACER28096,1658790 -#define LBL_FAIL_VARTERM LBL_FAIL_VARTERM28097,1658871 -#define LBL_FAIL_VARTERM LBL_FAIL_VARTERM28098,1658924 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28099,1658977 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28100,1659042 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28101,1659107 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28102,1659172 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28103,1659237 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28104,1659302 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28105,1659367 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28106,1659432 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28107,1659497 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28108,1659562 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28109,1659627 -#define LBL_FAIL_PAIRTERM_INIT LBL_FAIL_PAIRTERM_INIT28110,1659692 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28111,1659757 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28112,1659830 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28113,1659903 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28114,1659977 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28115,1660051 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28116,1660125 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28117,1660199 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28118,1660273 -#define LBL_FAIL_PAIRTERM_END_APPL LBL_FAIL_PAIRTERM_END_APPL28119,1660347 -#define LBL_FAIL_END LBL_FAIL_END28120,1660421 -#define GET_X_VAR_INSTINIT GET_X_VAR_INSTINIT28123,1660493 -#define GET_Y_VAR_INSTINIT GET_Y_VAR_INSTINIT28124,1660544 -#define GET_YY_VAR_INSTINIT GET_YY_VAR_INSTINIT28125,1660597 -#define GET_X_VAL_INSTINIT GET_X_VAL_INSTINIT28126,1660653 -#define GET_X_VAL_GVALX_NONVAR GET_X_VAL_GVALX_NONVAR28127,1660707 -#define GET_X_VAL_GVALX_NONVAR_NONVAR GET_X_VAL_GVALX_NONVAR_NONVAR28128,1660770 -#define GET_X_VAL_GVALX_NONVAR_UNK GET_X_VAL_GVALX_NONVAR_UNK28129,1660847 -#define GET_X_VAL_GVALX_UNK GET_X_VAL_GVALX_UNK28130,1660918 -#define GET_X_VAL_GVALX_VAR_NONVAR GET_X_VAL_GVALX_VAR_NONVAR28131,1660975 -#define GET_X_VAL_GVALX_VAR_UNK GET_X_VAL_GVALX_VAR_UNK28132,1661046 -#define GET_Y_VAL_INSTINIT GET_Y_VAL_INSTINIT28133,1661111 -#define GET_Y_VAL_GVALY_NONVAR GET_Y_VAL_GVALY_NONVAR28134,1661166 -#define GET_Y_VAL_GVALY_NONVAR_NONVAR GET_Y_VAL_GVALY_NONVAR_NONVAR28135,1661229 -#define GET_Y_VAL_GVALY_NONVAR_UNK GET_Y_VAL_GVALY_NONVAR_UNK28136,1661306 -#define GET_Y_VAL_GVALY_UNK GET_Y_VAL_GVALY_UNK28137,1661377 -#define GET_Y_VAL_GVALY_VAR_NONVAR GET_Y_VAL_GVALY_VAR_NONVAR28138,1661434 -#define GET_Y_VAL_GVALY_VAR_UNK GET_Y_VAL_GVALY_VAR_UNK28139,1661505 -#define GET_ATOM_INSTINIT GET_ATOM_INSTINIT28140,1661570 -#define GET_ATOM_GATOM_NONVAR GET_ATOM_GATOM_NONVAR28141,1661623 -#define GET_ATOM_GATOM_UNK GET_ATOM_GATOM_UNK28142,1661685 -#define GET_2ATOMS_INSTINIT GET_2ATOMS_INSTINIT28143,1661741 -#define GET_2ATOMS_GATOM_2UNK GET_2ATOMS_GATOM_2UNK28144,1661799 -#define GET_2ATOMS_GATOM_2B GET_2ATOMS_GATOM_2B28145,1661861 -#define GET_2ATOMS_GATOM_2BNONVAR GET_2ATOMS_GATOM_2BNONVAR28146,1661919 -#define GET_2ATOMS_GATOM_2BUNK GET_2ATOMS_GATOM_2BUNK28147,1661989 -#define GET_3ATOMS_INSTINIT GET_3ATOMS_INSTINIT28148,1662053 -#define GET_3ATOMS_GATOM_3UNK GET_3ATOMS_GATOM_3UNK28149,1662111 -#define GET_3ATOMS_GATOM_3B GET_3ATOMS_GATOM_3B28150,1662173 -#define GET_3ATOMS_GATOM_3BUNK GET_3ATOMS_GATOM_3BUNK28151,1662231 -#define GET_3ATOMS_GATOM_3C GET_3ATOMS_GATOM_3C28152,1662295 -#define GET_3ATOMS_GATOM_3CNONVAR GET_3ATOMS_GATOM_3CNONVAR28153,1662353 -#define GET_3ATOMS_GATOM_3CUNK GET_3ATOMS_GATOM_3CUNK28154,1662423 -#define GET_4ATOMS_INSTINIT GET_4ATOMS_INSTINIT28155,1662487 -#define GET_4ATOMS_GATOM_4UNK GET_4ATOMS_GATOM_4UNK28156,1662545 -#define GET_4ATOMS_GATOM_4B GET_4ATOMS_GATOM_4B28157,1662607 -#define GET_4ATOMS_GATOM_4BUNK GET_4ATOMS_GATOM_4BUNK28158,1662665 -#define GET_4ATOMS_GATOM_4C GET_4ATOMS_GATOM_4C28159,1662729 -#define GET_4ATOMS_GATOM_4CUNK GET_4ATOMS_GATOM_4CUNK28160,1662787 -#define GET_4ATOMS_GATOM_4D GET_4ATOMS_GATOM_4D28161,1662851 -#define GET_4ATOMS_GATOM_4DNONVAR GET_4ATOMS_GATOM_4DNONVAR28162,1662909 -#define GET_4ATOMS_GATOM_4DUNK GET_4ATOMS_GATOM_4DUNK28163,1662979 -#define GET_5ATOMS_INSTINIT GET_5ATOMS_INSTINIT28164,1663043 -#define GET_5ATOMS_GATOM_5UNK GET_5ATOMS_GATOM_5UNK28165,1663101 -#define GET_5ATOMS_GATOM_5B GET_5ATOMS_GATOM_5B28166,1663163 -#define GET_5ATOMS_GATOM_5BUNK GET_5ATOMS_GATOM_5BUNK28167,1663221 -#define GET_5ATOMS_GATOM_5C GET_5ATOMS_GATOM_5C28168,1663285 -#define GET_5ATOMS_GATOM_5CUNK GET_5ATOMS_GATOM_5CUNK28169,1663343 -#define GET_5ATOMS_GATOM_5D GET_5ATOMS_GATOM_5D28170,1663407 -#define GET_5ATOMS_GATOM_5DUNK GET_5ATOMS_GATOM_5DUNK28171,1663465 -#define GET_5ATOMS_GATOM_5E GET_5ATOMS_GATOM_5E28172,1663529 -#define GET_5ATOMS_GATOM_5ENONVAR GET_5ATOMS_GATOM_5ENONVAR28173,1663587 -#define GET_5ATOMS_GATOM_5EUNK GET_5ATOMS_GATOM_5EUNK28174,1663657 -#define GET_6ATOMS_INSTINIT GET_6ATOMS_INSTINIT28175,1663721 -#define GET_6ATOMS_GATOM_6UNK GET_6ATOMS_GATOM_6UNK28176,1663779 -#define GET_6ATOMS_GATOM_6B GET_6ATOMS_GATOM_6B28177,1663841 -#define GET_6ATOMS_GATOM_6BUNK GET_6ATOMS_GATOM_6BUNK28178,1663899 -#define GET_6ATOMS_GATOM_6C GET_6ATOMS_GATOM_6C28179,1663963 -#define GET_6ATOMS_GATOM_6CUNK GET_6ATOMS_GATOM_6CUNK28180,1664021 -#define GET_6ATOMS_GATOM_6D GET_6ATOMS_GATOM_6D28181,1664085 -#define GET_6ATOMS_GATOM_6DUNK GET_6ATOMS_GATOM_6DUNK28182,1664143 -#define GET_6ATOMS_GATOM_6E GET_6ATOMS_GATOM_6E28183,1664207 -#define GET_6ATOMS_GATOM_6EUNK GET_6ATOMS_GATOM_6EUNK28184,1664265 -#define GET_6ATOMS_GATOM_6F GET_6ATOMS_GATOM_6F28185,1664329 -#define GET_6ATOMS_GATOM_6FNONVAR GET_6ATOMS_GATOM_6FNONVAR28186,1664387 -#define GET_6ATOMS_GATOM_6FUNK GET_6ATOMS_GATOM_6FUNK28187,1664457 -#define GET_LIST_INSTINIT GET_LIST_INSTINIT28188,1664521 -#define GET_LIST_GLIST_NONVAR GET_LIST_GLIST_NONVAR28189,1664575 -#define GET_LIST_GLIST_UNK GET_LIST_GLIST_UNK28190,1664637 -#define GET_STRUCT_INSTINIT GET_STRUCT_INSTINIT28191,1664693 -#define GET_STRUCT_GSTRUCT_NONVAR GET_STRUCT_GSTRUCT_NONVAR28192,1664751 -#define GET_STRUCT_GSTRUCT_UNK GET_STRUCT_GSTRUCT_UNK28193,1664821 -#define GET_FLOAT_INSTINIT GET_FLOAT_INSTINIT28194,1664885 -#define GET_FLOAT_GFLOAT_NONVAR GET_FLOAT_GFLOAT_NONVAR28195,1664941 -#define GET_FLOAT_GFLOAT_NONVAR GET_FLOAT_GFLOAT_NONVAR28196,1665007 -#define GET_FLOAT_GFLOAT_UNK GET_FLOAT_GFLOAT_UNK28197,1665074 -#define GET_LONGINT_INSTINIT GET_LONGINT_INSTINIT28198,1665135 -#define GET_LONGINT_GLONGINT_NONVAR GET_LONGINT_GLONGINT_NONVAR28199,1665196 -#define GET_LONGINT_GLONGINT_UNK GET_LONGINT_GLONGINT_UNK28200,1665271 -#define GET_BIGINT_INSTINIT GET_BIGINT_INSTINIT28201,1665340 -#define GET_BIGINT_GBIGINT_NONVAR GET_BIGINT_GBIGINT_NONVAR28202,1665399 -#define GET_BIGINT_GBIGINT_UNK GET_BIGINT_GBIGINT_UNK28203,1665470 -#define GET_DBTERM_INSTINIT GET_DBTERM_INSTINIT28204,1665535 -#define GET_DBTERM_GDBTERM_NONVAR GET_DBTERM_GDBTERM_NONVAR28205,1665594 -#define GET_DBTERM_GDBTERM_UNK GET_DBTERM_GDBTERM_UNK28206,1665665 -#define GLIST_VALX_INSTINIT GLIST_VALX_INSTINIT28207,1665730 -#define GLIST_VALX_GLIST_VALX_READ GLIST_VALX_GLIST_VALX_READ28208,1665789 -#define GLIST_VALX_GLIST_VALX_NONVAR GLIST_VALX_GLIST_VALX_NONVAR28209,1665862 -#define GLIST_VALX_GLIST_VALX_NONVAR_NONVAR GLIST_VALX_GLIST_VALX_NONVAR_NONVAR28210,1665939 -#define GLIST_VALX_GLIST_VALX_NONVAR_UNK GLIST_VALX_GLIST_VALX_NONVAR_UNK28211,1666030 -#define GLIST_VALX_GLIST_VALX_UNK GLIST_VALX_GLIST_VALX_UNK28212,1666115 -#define GLIST_VALX_GLIST_VALX_VAR_NONVAR GLIST_VALX_GLIST_VALX_VAR_NONVAR28213,1666186 -#define GLIST_VALX_GLIST_VALX_VAR_UNK GLIST_VALX_GLIST_VALX_VAR_UNK28214,1666271 -#define GLIST_VALX_GLIST_VALX_WRITE GLIST_VALX_GLIST_VALX_WRITE28215,1666350 -#define GLIST_VALY_INSTINIT GLIST_VALY_INSTINIT28216,1666425 -#define GLIST_VALY_GLIST_VALY_READ GLIST_VALY_GLIST_VALY_READ28217,1666484 -#define GLIST_VALY_GLIST_VALY_NONVAR GLIST_VALY_GLIST_VALY_NONVAR28218,1666557 -#define GLIST_VALY_GLIST_VALY_NONVAR_NONVAR GLIST_VALY_GLIST_VALY_NONVAR_NONVAR28219,1666634 -#define GLIST_VALY_GLIST_VALY_NONVAR_UNK GLIST_VALY_GLIST_VALY_NONVAR_UNK28220,1666725 -#define GLIST_VALY_GLIST_VALY_UNK GLIST_VALY_GLIST_VALY_UNK28221,1666810 -#define GLIST_VALY_GLIST_VALY_VAR_NONVAR GLIST_VALY_GLIST_VALY_VAR_NONVAR28222,1666881 -#define GLIST_VALY_GLIST_VALY_VAR_UNK GLIST_VALY_GLIST_VALY_VAR_UNK28223,1666966 -#define GLIST_VALY_GLIST_VALY_WRITE GLIST_VALY_GLIST_VALY_WRITE28224,1667045 -#define GL_VOID_VARX_INSTINIT GL_VOID_VARX_INSTINIT28225,1667120 -#define GL_VOID_VARX_GLIST_VOID_VARX_READ GL_VOID_VARX_GLIST_VOID_VARX_READ28226,1667183 -#define GL_VOID_VARX_GLIST_VOID_VAR_WRITE GL_VOID_VARX_GLIST_VOID_VAR_WRITE28227,1667270 -#define GL_VOID_VARY_INSTINIT GL_VOID_VARY_INSTINIT28228,1667357 -#define GL_VOID_VARY_GLIST_VOID_VARY_READ GL_VOID_VARY_GLIST_VOID_VARY_READ28229,1667420 -#define GL_VOID_VARY_GLIST_VOID_VARY_WRITE GL_VOID_VARY_GLIST_VOID_VARY_WRITE28230,1667507 -#define GL_VOID_VALX_INSTINIT GL_VOID_VALX_INSTINIT28231,1667596 -#define GL_VOID_VALX_GLIST_VOID_VALX_READ GL_VOID_VALX_GLIST_VOID_VALX_READ28232,1667659 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR28233,1667746 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR28234,1667837 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK28235,1667942 -#define GL_VOID_VALX_GLIST_VOID_VALX_UNK GL_VOID_VALX_GLIST_VOID_VALX_UNK28236,1668041 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR28237,1668126 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK28238,1668225 -#define GL_VOID_VALX_GLIST_VOID_VALX_WRITE GL_VOID_VALX_GLIST_VOID_VALX_WRITE28239,1668318 -#define GL_VOID_VALY_INSTINIT GL_VOID_VALY_INSTINIT28240,1668407 -#define GL_VOID_VALY_GLIST_VOID_VALY_READ GL_VOID_VALY_GLIST_VOID_VALY_READ28241,1668470 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR28242,1668557 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR28243,1668648 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK28244,1668753 -#define GL_VOID_VALY_GLIST_VOID_VALY_UNK GL_VOID_VALY_GLIST_VOID_VALY_UNK28245,1668852 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR28246,1668937 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK28247,1669036 -#define GL_VOID_VALY_GLIST_VOID_VALY_WRITE GL_VOID_VALY_GLIST_VOID_VALY_WRITE28248,1669129 -#define GET_X_VAR_INSTINIT GET_X_VAR_INSTINIT28251,1669246 -#define GET_Y_VAR_INSTINIT GET_Y_VAR_INSTINIT28252,1669297 -#define GET_YY_VAR_INSTINIT GET_YY_VAR_INSTINIT28253,1669350 -#define GET_X_VAL_INSTINIT GET_X_VAL_INSTINIT28254,1669406 -#define GET_X_VAL_GVALX_NONVAR GET_X_VAL_GVALX_NONVAR28255,1669461 -#define GET_X_VAL_GVALX_NONVAR_NONVAR GET_X_VAL_GVALX_NONVAR_NONVAR28256,1669524 -#define GET_X_VAL_GVALX_NONVAR_UNK GET_X_VAL_GVALX_NONVAR_UNK28257,1669601 -#define GET_X_VAL_GVALX_UNK GET_X_VAL_GVALX_UNK28258,1669672 -#define GET_X_VAL_GVALX_VAR_NONVAR GET_X_VAL_GVALX_VAR_NONVAR28259,1669729 -#define GET_X_VAL_GVALX_VAR_UNK GET_X_VAL_GVALX_VAR_UNK28260,1669800 -#define GET_Y_VAL_INSTINIT GET_Y_VAL_INSTINIT28261,1669865 -#define GET_Y_VAL_GVALY_NONVAR GET_Y_VAL_GVALY_NONVAR28262,1669920 -#define GET_Y_VAL_GVALY_NONVAR_NONVAR GET_Y_VAL_GVALY_NONVAR_NONVAR28263,1669983 -#define GET_Y_VAL_GVALY_NONVAR_UNK GET_Y_VAL_GVALY_NONVAR_UNK28264,1670060 -#define GET_Y_VAL_GVALY_UNK GET_Y_VAL_GVALY_UNK28265,1670131 -#define GET_Y_VAL_GVALY_VAR_NONVAR GET_Y_VAL_GVALY_VAR_NONVAR28266,1670188 -#define GET_Y_VAL_GVALY_VAR_UNK GET_Y_VAL_GVALY_VAR_UNK28267,1670259 -#define GET_ATOM_INSTINIT GET_ATOM_INSTINIT28268,1670324 -#define GET_ATOM_GATOM_NONVAR GET_ATOM_GATOM_NONVAR28269,1670378 -#define GET_ATOM_GATOM_UNK GET_ATOM_GATOM_UNK28270,1670440 -#define GET_2ATOMS_INSTINIT GET_2ATOMS_INSTINIT28271,1670496 -#define GET_2ATOMS_GATOM_2UNK GET_2ATOMS_GATOM_2UNK28272,1670554 -#define GET_2ATOMS_GATOM_2B GET_2ATOMS_GATOM_2B28273,1670616 -#define GET_2ATOMS_GATOM_2BNONVAR GET_2ATOMS_GATOM_2BNONVAR28274,1670674 -#define GET_2ATOMS_GATOM_2BUNK GET_2ATOMS_GATOM_2BUNK28275,1670744 -#define GET_3ATOMS_INSTINIT GET_3ATOMS_INSTINIT28276,1670808 -#define GET_3ATOMS_GATOM_3UNK GET_3ATOMS_GATOM_3UNK28277,1670866 -#define GET_3ATOMS_GATOM_3B GET_3ATOMS_GATOM_3B28278,1670928 -#define GET_3ATOMS_GATOM_3BUNK GET_3ATOMS_GATOM_3BUNK28279,1670986 -#define GET_3ATOMS_GATOM_3C GET_3ATOMS_GATOM_3C28280,1671050 -#define GET_3ATOMS_GATOM_3CNONVAR GET_3ATOMS_GATOM_3CNONVAR28281,1671108 -#define GET_3ATOMS_GATOM_3CUNK GET_3ATOMS_GATOM_3CUNK28282,1671178 -#define GET_4ATOMS_INSTINIT GET_4ATOMS_INSTINIT28283,1671242 -#define GET_4ATOMS_GATOM_4UNK GET_4ATOMS_GATOM_4UNK28284,1671300 -#define GET_4ATOMS_GATOM_4B GET_4ATOMS_GATOM_4B28285,1671362 -#define GET_4ATOMS_GATOM_4BUNK GET_4ATOMS_GATOM_4BUNK28286,1671420 -#define GET_4ATOMS_GATOM_4C GET_4ATOMS_GATOM_4C28287,1671484 -#define GET_4ATOMS_GATOM_4CUNK GET_4ATOMS_GATOM_4CUNK28288,1671542 -#define GET_4ATOMS_GATOM_4D GET_4ATOMS_GATOM_4D28289,1671606 -#define GET_4ATOMS_GATOM_4DNONVAR GET_4ATOMS_GATOM_4DNONVAR28290,1671664 -#define GET_4ATOMS_GATOM_4DUNK GET_4ATOMS_GATOM_4DUNK28291,1671734 -#define GET_5ATOMS_INSTINIT GET_5ATOMS_INSTINIT28292,1671798 -#define GET_5ATOMS_GATOM_5UNK GET_5ATOMS_GATOM_5UNK28293,1671856 -#define GET_5ATOMS_GATOM_5B GET_5ATOMS_GATOM_5B28294,1671918 -#define GET_5ATOMS_GATOM_5BUNK GET_5ATOMS_GATOM_5BUNK28295,1671976 -#define GET_5ATOMS_GATOM_5C GET_5ATOMS_GATOM_5C28296,1672040 -#define GET_5ATOMS_GATOM_5CUNK GET_5ATOMS_GATOM_5CUNK28297,1672098 -#define GET_5ATOMS_GATOM_5D GET_5ATOMS_GATOM_5D28298,1672162 -#define GET_5ATOMS_GATOM_5DUNK GET_5ATOMS_GATOM_5DUNK28299,1672220 -#define GET_5ATOMS_GATOM_5E GET_5ATOMS_GATOM_5E28300,1672284 -#define GET_5ATOMS_GATOM_5ENONVAR GET_5ATOMS_GATOM_5ENONVAR28301,1672342 -#define GET_5ATOMS_GATOM_5EUNK GET_5ATOMS_GATOM_5EUNK28302,1672412 -#define GET_6ATOMS_INSTINIT GET_6ATOMS_INSTINIT28303,1672476 -#define GET_6ATOMS_GATOM_6UNK GET_6ATOMS_GATOM_6UNK28304,1672534 -#define GET_6ATOMS_GATOM_6B GET_6ATOMS_GATOM_6B28305,1672596 -#define GET_6ATOMS_GATOM_6BUNK GET_6ATOMS_GATOM_6BUNK28306,1672654 -#define GET_6ATOMS_GATOM_6C GET_6ATOMS_GATOM_6C28307,1672718 -#define GET_6ATOMS_GATOM_6CUNK GET_6ATOMS_GATOM_6CUNK28308,1672776 -#define GET_6ATOMS_GATOM_6D GET_6ATOMS_GATOM_6D28309,1672840 -#define GET_6ATOMS_GATOM_6DUNK GET_6ATOMS_GATOM_6DUNK28310,1672898 -#define GET_6ATOMS_GATOM_6E GET_6ATOMS_GATOM_6E28311,1672962 -#define GET_6ATOMS_GATOM_6EUNK GET_6ATOMS_GATOM_6EUNK28312,1673020 -#define GET_6ATOMS_GATOM_6F GET_6ATOMS_GATOM_6F28313,1673084 -#define GET_6ATOMS_GATOM_6FNONVAR GET_6ATOMS_GATOM_6FNONVAR28314,1673142 -#define GET_6ATOMS_GATOM_6FUNK GET_6ATOMS_GATOM_6FUNK28315,1673212 -#define GET_LIST_INSTINIT GET_LIST_INSTINIT28316,1673276 -#define GET_LIST_GLIST_NONVAR GET_LIST_GLIST_NONVAR28317,1673330 -#define GET_LIST_GLIST_UNK GET_LIST_GLIST_UNK28318,1673392 -#define GET_STRUCT_INSTINIT GET_STRUCT_INSTINIT28319,1673448 -#define GET_STRUCT_GSTRUCT_NONVAR GET_STRUCT_GSTRUCT_NONVAR28320,1673506 -#define GET_STRUCT_GSTRUCT_UNK GET_STRUCT_GSTRUCT_UNK28321,1673576 -#define GET_FLOAT_INSTINIT GET_FLOAT_INSTINIT28322,1673640 -#define GET_FLOAT_GFLOAT_NONVAR GET_FLOAT_GFLOAT_NONVAR28323,1673696 -#define GET_FLOAT_GFLOAT_NONVAR GET_FLOAT_GFLOAT_NONVAR28324,1673763 -#define GET_FLOAT_GFLOAT_UNK GET_FLOAT_GFLOAT_UNK28325,1673830 -#define GET_LONGINT_INSTINIT GET_LONGINT_INSTINIT28326,1673891 -#define GET_LONGINT_GLONGINT_NONVAR GET_LONGINT_GLONGINT_NONVAR28327,1673952 -#define GET_LONGINT_GLONGINT_UNK GET_LONGINT_GLONGINT_UNK28328,1674027 -#define GET_BIGINT_INSTINIT GET_BIGINT_INSTINIT28329,1674096 -#define GET_BIGINT_GBIGINT_NONVAR GET_BIGINT_GBIGINT_NONVAR28330,1674155 -#define GET_BIGINT_GBIGINT_UNK GET_BIGINT_GBIGINT_UNK28331,1674226 -#define GET_DBTERM_INSTINIT GET_DBTERM_INSTINIT28332,1674291 -#define GET_DBTERM_GDBTERM_NONVAR GET_DBTERM_GDBTERM_NONVAR28333,1674350 -#define GET_DBTERM_GDBTERM_UNK GET_DBTERM_GDBTERM_UNK28334,1674421 -#define GLIST_VALX_INSTINIT GLIST_VALX_INSTINIT28335,1674486 -#define GLIST_VALX_GLIST_VALX_READ GLIST_VALX_GLIST_VALX_READ28336,1674545 -#define GLIST_VALX_GLIST_VALX_NONVAR GLIST_VALX_GLIST_VALX_NONVAR28337,1674618 -#define GLIST_VALX_GLIST_VALX_NONVAR_NONVAR GLIST_VALX_GLIST_VALX_NONVAR_NONVAR28338,1674695 -#define GLIST_VALX_GLIST_VALX_NONVAR_UNK GLIST_VALX_GLIST_VALX_NONVAR_UNK28339,1674786 -#define GLIST_VALX_GLIST_VALX_UNK GLIST_VALX_GLIST_VALX_UNK28340,1674871 -#define GLIST_VALX_GLIST_VALX_VAR_NONVAR GLIST_VALX_GLIST_VALX_VAR_NONVAR28341,1674942 -#define GLIST_VALX_GLIST_VALX_VAR_UNK GLIST_VALX_GLIST_VALX_VAR_UNK28342,1675027 -#define GLIST_VALX_GLIST_VALX_WRITE GLIST_VALX_GLIST_VALX_WRITE28343,1675106 -#define GLIST_VALY_INSTINIT GLIST_VALY_INSTINIT28344,1675181 -#define GLIST_VALY_GLIST_VALY_READ GLIST_VALY_GLIST_VALY_READ28345,1675240 -#define GLIST_VALY_GLIST_VALY_NONVAR GLIST_VALY_GLIST_VALY_NONVAR28346,1675313 -#define GLIST_VALY_GLIST_VALY_NONVAR_NONVAR GLIST_VALY_GLIST_VALY_NONVAR_NONVAR28347,1675390 -#define GLIST_VALY_GLIST_VALY_NONVAR_UNK GLIST_VALY_GLIST_VALY_NONVAR_UNK28348,1675481 -#define GLIST_VALY_GLIST_VALY_UNK GLIST_VALY_GLIST_VALY_UNK28349,1675566 -#define GLIST_VALY_GLIST_VALY_VAR_NONVAR GLIST_VALY_GLIST_VALY_VAR_NONVAR28350,1675637 -#define GLIST_VALY_GLIST_VALY_VAR_UNK GLIST_VALY_GLIST_VALY_VAR_UNK28351,1675722 -#define GLIST_VALY_GLIST_VALY_WRITE GLIST_VALY_GLIST_VALY_WRITE28352,1675801 -#define GL_VOID_VARX_INSTINIT GL_VOID_VARX_INSTINIT28353,1675876 -#define GL_VOID_VARX_GLIST_VOID_VARX_READ GL_VOID_VARX_GLIST_VOID_VARX_READ28354,1675939 -#define GL_VOID_VARX_GLIST_VOID_VAR_WRITE GL_VOID_VARX_GLIST_VOID_VAR_WRITE28355,1676026 -#define GL_VOID_VARY_INSTINIT GL_VOID_VARY_INSTINIT28356,1676113 -#define GL_VOID_VARY_GLIST_VOID_VARY_READ GL_VOID_VARY_GLIST_VOID_VARY_READ28357,1676176 -#define GL_VOID_VARY_GLIST_VOID_VARY_WRITE GL_VOID_VARY_GLIST_VOID_VARY_WRITE28358,1676263 -#define GL_VOID_VALX_INSTINIT GL_VOID_VALX_INSTINIT28359,1676352 -#define GL_VOID_VALX_GLIST_VOID_VALX_READ GL_VOID_VALX_GLIST_VOID_VALX_READ28360,1676415 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR28361,1676502 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_NONVAR28362,1676593 -#define GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_NONVAR_UNK28363,1676698 -#define GL_VOID_VALX_GLIST_VOID_VALX_UNK GL_VOID_VALX_GLIST_VOID_VALX_UNK28364,1676797 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR GL_VOID_VALX_GLIST_VOID_VALX_VAR_NONVAR28365,1676882 -#define GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK GL_VOID_VALX_GLIST_VOID_VALX_VAR_UNK28366,1676981 -#define GL_VOID_VALX_GLIST_VOID_VALX_WRITE GL_VOID_VALX_GLIST_VOID_VALX_WRITE28367,1677074 -#define GL_VOID_VALY_INSTINIT GL_VOID_VALY_INSTINIT28368,1677163 -#define GL_VOID_VALY_GLIST_VOID_VALY_READ GL_VOID_VALY_GLIST_VOID_VALY_READ28369,1677226 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR28370,1677313 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_NONVAR28371,1677404 -#define GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_NONVAR_UNK28372,1677509 -#define GL_VOID_VALY_GLIST_VOID_VALY_UNK GL_VOID_VALY_GLIST_VOID_VALY_UNK28373,1677608 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR GL_VOID_VALY_GLIST_VOID_VALY_VAR_NONVAR28374,1677693 -#define GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK GL_VOID_VALY_GLIST_VOID_VALY_VAR_UNK28375,1677792 -#define GL_VOID_VALY_GLIST_VOID_VALY_WRITE GL_VOID_VALY_GLIST_VOID_VALY_WRITE28376,1677885 -#define FUNCTOR_LARGE_INT FUNCTOR_LARGE_INT28381,1678109 -#define FUNCTOR_LARGE_INT FUNCTOR_LARGE_INT28382,1678161 -#define SET_DEPTH(SET_DEPTH28383,1678213 -#define BACK_TO_HEADER(BACK_TO_HEADER28384,1678249 -#define FREE(FREE28385,1678296 -#define YAAM_BLOCK_IS_DEEPB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_DEEPB_MULTIPLE_DESTINY28386,1678323 -#define EMIT_CONDITIONAL2_BLOCK(EMIT_CONDITIONAL2_BLOCK28387,1678414 -#define EMIT_CONDITIONAL1_BLOCK(EMIT_CONDITIONAL1_BLOCK28388,1678479 -#define YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY28389,1678544 -#define YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY28390,1678639 -#define PRINT_BLOCK_MAC(PRINT_BLOCK_MAC28391,1678735 -#define PRINT_BLOCK_MAC(PRINT_BLOCK_MAC28392,1678785 -#define INIT_SPENT_PROF_TIME_FOR_HEAD(INIT_SPENT_PROF_TIME_FOR_HEAD28393,1678835 -#define COMPLETE_SPENT_PROF_TIME_FOR_HEAD(COMPLETE_SPENT_PROF_TIME_FOR_HEAD28394,1678913 -#define INIT_SPENT_PROF_TIME(INIT_SPENT_PROF_TIME28395,1678999 -#define COMPLETE_SPENT_PROF_TIME(COMPLETE_SPENT_PROF_TIME28396,1679059 -#define INIT_SPENT_PROF_TIME_FOR_HEAD(INIT_SPENT_PROF_TIME_FOR_HEAD28397,1679127 -#define COMPLETE_SPENT_PROF_TIME_FOR_HEAD(COMPLETE_SPENT_PROF_TIME_FOR_HEAD28398,1679205 -#define INIT_SPENT_PROF_TIME(INIT_SPENT_PROF_TIME28399,1679291 -#define COMPLETE_SPENT_PROF_TIME(COMPLETE_SPENT_PROF_TIME28400,1679351 -#define EMIT_3DEEP_BLOCK(EMIT_3DEEP_BLOCK28403,1679593 -#define EMIT_2DEEP_BLOCK(EMIT_2DEEP_BLOCK28404,1679645 -#define EMIT_1DEEP_BLOCK(EMIT_1DEEP_BLOCK28405,1679697 -#define EMIT_SIMPLE_BLOCK(EMIT_SIMPLE_BLOCK28406,1679749 -#define REDEFINE_DESTINY(REDEFINE_DESTINY28407,1679803 -#define SET_FAILDESTINY_AS_MULTIPLE(SET_FAILDESTINY_AS_MULTIPLE28408,1679856 -#define SET_DESTINY_AS_MULTIPLE(SET_DESTINY_AS_MULTIPLE28409,1679931 -#define SET_DESTINY(SET_DESTINY28410,1679998 -#define EMIT_CONDITIONAL_FAIL(EMIT_CONDITIONAL_FAIL28413,1680175 -#define EMIT_CONDITIONAL_SUCCESS(EMIT_CONDITIONAL_SUCCESS28414,1680238 -#define EMIT_CONDITIONAL(EMIT_CONDITIONAL28415,1680307 -#define IF(IF28416,1680360 -#define ELSEIF(ELSEIF28417,1680385 -#define ELSE(ELSE28418,1680418 -#define ENDBLOCK(ENDBLOCK28419,1680447 -#define SIMPLE_VBLOCK_ND0(SIMPLE_VBLOCK_ND028420,1680484 -#define MULTIPLE_DESTINY_VBLOCK_ND0(MULTIPLE_DESTINY_VBLOCK_ND028421,1680539 -#define MULTIPLE_DESTINY_VBLOCK_ND1(MULTIPLE_DESTINY_VBLOCK_ND128422,1680614 -#define MULTIPLE_DESTINY_VBLOCK_ND0_ND1(MULTIPLE_DESTINY_VBLOCK_ND0_ND128423,1680689 -#define MULTIPLE_DESTINY_VBLOCK_D0_ND1(MULTIPLE_DESTINY_VBLOCK_D0_ND128424,1680772 -#define ENTRY_HAS_WRITED_CPART(ENTRY_HAS_WRITED_CPART28437,1685779 -#define SET_ADDRESS_R(SET_ADDRESS_R28438,1685845 -#define SET_ADDRESS_W(SET_ADDRESS_W28439,1685893 -#define FUNCTOR_LARGE_INT FUNCTOR_LARGE_INT28448,1686306 -#define FUNCTOR_LARGE_INT FUNCTOR_LARGE_INT28449,1686358 -#define SET_DEPTH(SET_DEPTH28450,1686410 -#define BACK_TO_HEADER(BACK_TO_HEADER28451,1686446 -#define FREE(FREE28452,1686493 -#define YAAM_BLOCK_IS_DEEPB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_DEEPB_MULTIPLE_DESTINY28453,1686520 -#define EMIT_CONDITIONAL2_BLOCK(EMIT_CONDITIONAL2_BLOCK28454,1686611 -#define EMIT_CONDITIONAL1_BLOCK(EMIT_CONDITIONAL1_BLOCK28455,1686676 -#define YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY28456,1686741 -#define YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY(YAAM_BLOCK_IS_SIMPLEB_MULTIPLE_DESTINY28457,1686836 -#define PRINT_BLOCK_MAC(PRINT_BLOCK_MAC28458,1686932 -#define PRINT_BLOCK_MAC(PRINT_BLOCK_MAC28459,1686982 -#define INIT_SPENT_PROF_TIME_FOR_HEAD(INIT_SPENT_PROF_TIME_FOR_HEAD28460,1687032 -#define COMPLETE_SPENT_PROF_TIME_FOR_HEAD(COMPLETE_SPENT_PROF_TIME_FOR_HEAD28461,1687110 -#define INIT_SPENT_PROF_TIME(INIT_SPENT_PROF_TIME28462,1687196 -#define COMPLETE_SPENT_PROF_TIME(COMPLETE_SPENT_PROF_TIME28463,1687256 -#define INIT_SPENT_PROF_TIME_FOR_HEAD(INIT_SPENT_PROF_TIME_FOR_HEAD28464,1687324 -#define COMPLETE_SPENT_PROF_TIME_FOR_HEAD(COMPLETE_SPENT_PROF_TIME_FOR_HEAD28465,1687402 -#define INIT_SPENT_PROF_TIME(INIT_SPENT_PROF_TIME28466,1687488 -#define COMPLETE_SPENT_PROF_TIME(COMPLETE_SPENT_PROF_TIME28467,1687548 -#define EMIT_3DEEP_BLOCK(EMIT_3DEEP_BLOCK28470,1687790 -#define EMIT_2DEEP_BLOCK(EMIT_2DEEP_BLOCK28471,1687842 -#define EMIT_1DEEP_BLOCK(EMIT_1DEEP_BLOCK28472,1687894 -#define EMIT_SIMPLE_BLOCK(EMIT_SIMPLE_BLOCK28473,1687946 -#define REDEFINE_DESTINY(REDEFINE_DESTINY28474,1688000 -#define SET_FAILDESTINY_AS_MULTIPLE(SET_FAILDESTINY_AS_MULTIPLE28475,1688053 -#define SET_DESTINY_AS_MULTIPLE(SET_DESTINY_AS_MULTIPLE28476,1688128 -#define SET_DESTINY(SET_DESTINY28477,1688195 -#define EMIT_CONDITIONAL_FAIL(EMIT_CONDITIONAL_FAIL28480,1688372 -#define EMIT_CONDITIONAL_SUCCESS(EMIT_CONDITIONAL_SUCCESS28481,1688435 -#define EMIT_CONDITIONAL(EMIT_CONDITIONAL28482,1688504 -#define IF(IF28483,1688557 -#define ELSEIF(ELSEIF28484,1688582 -#define ELSE(ELSE28485,1688615 -#define ENDBLOCK(ENDBLOCK28486,1688644 -#define SIMPLE_VBLOCK_ND0(SIMPLE_VBLOCK_ND028487,1688681 -#define MULTIPLE_DESTINY_VBLOCK_ND0(MULTIPLE_DESTINY_VBLOCK_ND028488,1688736 -#define MULTIPLE_DESTINY_VBLOCK_ND1(MULTIPLE_DESTINY_VBLOCK_ND128489,1688811 -#define MULTIPLE_DESTINY_VBLOCK_ND0_ND1(MULTIPLE_DESTINY_VBLOCK_ND0_ND128490,1688886 -#define MULTIPLE_DESTINY_VBLOCK_D0_ND1(MULTIPLE_DESTINY_VBLOCK_D0_ND128491,1688969 -#define ENTRY_HAS_WRITED_CPART(ENTRY_HAS_WRITED_CPART28504,1693971 -#define SET_ADDRESS_R(SET_ADDRESS_R28505,1694037 -#define SET_ADDRESS_W(SET_ADDRESS_W28506,1694085 -#define LUCK_LU_INSTINIT LUCK_LU_INSTINIT28513,1694389 -#define LUCK_LU_INSTINIT LUCK_LU_INSTINIT28514,1694437 -#define LOCK_LU_END LOCK_LU_END28515,1694487 -#define UNLOCK_LU_INSTINITUNLOCK_LU_INSTINIT28516,1694527 -#define UNLOCK_LU_YAPOR_THREADS UNLOCK_LU_YAPOR_THREADS28517,1694580 -#define UNLOCK_LU_END UNLOCK_LU_END28518,1694644 -#define ALLOC_FOR_LOGICAL_PRED_INSTINITALLOC_FOR_LOGICAL_PRED_INSTINIT28519,1694688 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS28520,1694767 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL28521,1694861 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END28522,1694973 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT28523,1695075 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IF ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IF28524,1695184 -#define ALLOC_FOR_LOGICAL_PRED_END ALLOC_FOR_LOGICAL_PRED_END28525,1695289 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28526,1695360 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28527,1695423 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28528,1695487 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28529,1695551 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28530,1695615 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28531,1695679 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28532,1695743 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28533,1695807 -#define COPY_IDB_TERM_END COPY_IDB_TERM_END28534,1695871 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28535,1695925 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28536,1695991 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28537,1696057 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28538,1696124 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28539,1696191 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28540,1696258 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28541,1696325 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28542,1696392 -#define UNIFY_IDB_TERM_END UNIFY_IDB_TERM_END28543,1696459 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT28544,1696516 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT28545,1696579 -#define ENSURE_SPACE_ENDENSURE_SPACE_END28546,1696642 -#define JUMP_INSTINIT JUMP_INSTINIT28547,1696694 -#define MOVE_BACK_INSTINIT MOVE_BACK_INSTINIT28548,1696741 -#define SKIP_INSTINIT SKIP_INSTINIT28549,1696798 -#define EITHER_INSTINITEITHER_INSTINIT28550,1696845 -#define EITHER_LOW_LEVEL_TRACER EITHER_LOW_LEVEL_TRACER28551,1696895 -#define EITHER_POST_COROUTINING EITHER_POST_COROUTINING28552,1696962 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA28553,1697029 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA28554,1697086 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA28555,1697143 -#define EITHER_POST_FROZEN_YSBA EITHER_POST_FROZEN_YSBA28556,1697200 -#define EITHER_YAPOR EITHER_YAPOR28557,1697267 -#define EITHER_END EITHER_END28558,1697312 -#define OR_ELSE_INSTINIT OR_ELSE_INSTINIT28559,1697353 -#define OR_ELSE_DEPTH OR_ELSE_DEPTH28560,1697406 -#define OR_ELSE_POST_DEPTH OR_ELSE_POST_DEPTH28561,1697453 -#define OR_ELSE_YAPOR OR_ELSE_YAPOR28562,1697510 -#define OR_ELSE_END OR_ELSE_END28563,1697557 -#define OR_LAST_INSTINIT OR_LAST_INSTINIT28564,1697600 -#define OR_LAST_IFOK_INIT OR_LAST_IFOK_INIT28565,1697653 -#define OR_LAST_IFOK_DEPTH OR_LAST_IFOK_DEPTH28566,1697708 -#define OR_LAST_IFOK_END OR_LAST_IFOK_END28567,1697765 -#define OR_LAST_NOIF_INIT OR_LAST_NOIF_INIT28568,1697818 -#define OR_LAST_NOIF_DEPTH OR_LAST_NOIF_DEPTH28569,1697873 -#define OR_LAST_NOIF_END OR_LAST_NOIF_END28570,1697930 -#define OR_LAST_YAPOR OR_LAST_YAPOR28571,1697983 -#define OR_LAST_NOYAPOR OR_LAST_NOYAPOR28572,1698030 -#define OR_LAST_END OR_LAST_END28573,1698081 -#define LOCK_PRED_INSTINIT LOCK_PRED_INSTINIT28574,1698124 -#define LOCK_PRED_FIRSTIFOK LOCK_PRED_FIRSTIFOK28575,1698181 -#define LOCK_PRED_SECONDTIFOK LOCK_PRED_SECONDTIFOK28576,1698240 -#define LOCK_PRED_END LOCK_PRED_END28577,1698303 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT28578,1698350 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT28579,1698409 -#define INDEX_PRED_END INDEX_PRED_END28580,1698468 -#define THREAD_LOCAL_INSTINIT THREAD_LOCAL_INSTINIT28581,1698517 -#define EXPAND_INDEX_INSTINIT EXPAND_INDEX_INSTINIT28582,1698580 -#define EXPAND_INDEX_YAPOR_THREADS_NOPP EXPAND_INDEX_YAPOR_THREADS_NOPP28583,1698643 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT28584,1698726 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK28585,1698819 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_END EXPAND_INDEX_YAPOR_THREADS_IFOK_END28586,1698912 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS28587,1699003 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS28588,1699094 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG28589,1699195 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG28590,1699292 -#define EXPAND_INDEX_UNLOCK EXPAND_INDEX_UNLOCK28591,1699399 -#define EXPAND_INDEX_END EXPAND_INDEX_END28592,1699458 -#define EXPAND_CLAUSES_INSTINIT EXPAND_CLAUSES_INSTINIT28593,1699511 -#define EXPAND_CLAUSES_YAPOR_THREADS_NOPP EXPAND_CLAUSES_YAPOR_THREADS_NOPP28594,1699578 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT28595,1699665 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK28596,1699762 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END28597,1699859 -#define EXPAND_CLAUSES_NOYAPOR_NOTHREADS EXPAND_CLAUSES_NOYAPOR_NOTHREADS28598,1699954 -#define EXPAND_CLAUSES_UNLOCK EXPAND_CLAUSES_UNLOCK28599,1700039 -#define EXPAND_CLAUSES_END EXPAND_CLAUSES_END28600,1700102 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT28601,1700159 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT28602,1700212 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT28603,1700265 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT28604,1700319 -#define UNDEF_P_END UNDEF_P_END28605,1700373 -#define SPY_PRED_INSTINIT SPY_PRED_INSTINIT28606,1700417 -#define SPY_PRED_FIRSTIFOK SPY_PRED_FIRSTIFOK28607,1700473 -#define SPY_PRED_SECONDIFOK_INIT SPY_PRED_SECONDIFOK_INIT28608,1700531 -#define SPY_PRED_SECONDIFOK_FIRSTIFOK SPY_PRED_SECONDIFOK_FIRSTIFOK28609,1700601 -#define SPY_PRED_SECONDIFOK_POST_FIRSTIF SPY_PRED_SECONDIFOK_POST_FIRSTIF28610,1700681 -#define SPY_PRED_SECONDIFOK_SECONDIFOK SPY_PRED_SECONDIFOK_SECONDIFOK28611,1700767 -#define SPY_PRED_SECONDIFOK_THIRDIFOK SPY_PRED_SECONDIFOK_THIRDIFOK28612,1700849 -#define SPY_PRED_THIRDIFOK_INIT SPY_PRED_THIRDIFOK_INIT28613,1700929 -#define SPY_PRED_THIRDIFOK_FIRSTIFOK SPY_PRED_THIRDIFOK_FIRSTIFOK28614,1700997 -#define SPY_PRED_FOURTHIFOK SPY_PRED_FOURTHIFOK28615,1701075 -#define SPY_PRED_POST_FOURTHIF SPY_PRED_POST_FOURTHIF28616,1701135 -#define SPY_PRED_D0ISZERO SPY_PRED_D0ISZERO28617,1701201 -#define SPY_PRED_D0ISNOZERO_INIT SPY_PRED_D0ISNOZERO_INIT28618,1701257 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT28619,1701327 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR28620,1701417 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR28621,1701523 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR28622,1701619 -#define SPY_PRED_POST_IFS SPY_PRED_POST_IFS28623,1701719 -#define SPY_PRED_THREADS_LOCK SPY_PRED_THREADS_LOCK28624,1701775 -#define SPY_PRED_POST_LOCK SPY_PRED_POST_LOCK28625,1701839 -#define SPY_PRED_THREADS_UNLOCK SPY_PRED_THREADS_UNLOCK28626,1701897 -#define SPY_PRED_POST_UNLOCK SPY_PRED_POST_UNLOCK28627,1701965 -#define SPY_PRED_LOW_LEVEL_TRACER SPY_PRED_LOW_LEVEL_TRACER28628,1702027 -#define SPY_PRED_END SPY_PRED_END28629,1702099 -#define LUCK_LU_INSTINIT LUCK_LU_INSTINIT28632,1702174 -#define LUCK_LU_INSTINIT LUCK_LU_INSTINIT28633,1702222 -#define LOCK_LU_END LOCK_LU_END28634,1702272 -#define UNLOCK_LU_INSTINIT UNLOCK_LU_INSTINIT28635,1702312 -#define UNLOCK_LU_YAPOR_THREADS UNLOCK_LU_YAPOR_THREADS28636,1702366 -#define UNLOCK_LU_END UNLOCK_LU_END28637,1702430 -#define ALLOC_FOR_LOGICAL_PRED_INSTINIT ALLOC_FOR_LOGICAL_PRED_INSTINIT28638,1702474 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS28639,1702554 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_PARALLEL28640,1702648 -#define ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END ALLOC_FOR_LOGICAL_PRED_MULTIPLE_STACKS_END28641,1702761 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_INIT28642,1702864 -#define ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IF ALLOC_FOR_LOGICAL_PRED_NOMULTIPLE_STACKS_IF28643,1702973 -#define ALLOC_FOR_LOGICAL_PRED_END ALLOC_FOR_LOGICAL_PRED_END28644,1703078 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28645,1703149 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28646,1703212 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28647,1703276 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28648,1703340 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28649,1703404 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28650,1703468 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28651,1703532 -#define COPY_IDB_TERM_INSTINIT COPY_IDB_TERM_INSTINIT28652,1703596 -#define COPY_IDB_TERM_END COPY_IDB_TERM_END28653,1703660 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28654,1703714 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28655,1703780 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28656,1703846 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28657,1703913 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28658,1703980 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28659,1704047 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28660,1704114 -#define UNIFY_IDB_TERM_INSTINIT UNIFY_IDB_TERM_INSTINIT28661,1704181 -#define UNIFY_IDB_TERM_END UNIFY_IDB_TERM_END28662,1704248 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT28663,1704305 -#define ENSURE_SPACE_INSTINIT ENSURE_SPACE_INSTINIT28664,1704368 -#define ENSURE_SPACE_ENDENSURE_SPACE_END28665,1704431 -#define JUMP_INSTINIT JUMP_INSTINIT28666,1704483 -#define MOVE_BACK_INSTINIT MOVE_BACK_INSTINIT28667,1704530 -#define SKIP_INSTINIT SKIP_INSTINIT28668,1704587 -#define EITHER_INSTINIT EITHER_INSTINIT28669,1704634 -#define EITHER_LOW_LEVEL_TRACER EITHER_LOW_LEVEL_TRACER28670,1704685 -#define EITHER_POST_COROUTINING EITHER_POST_COROUTINING28671,1704752 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA28672,1704819 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA28673,1704876 -#define EITHER_FROZEN_YSBA EITHER_FROZEN_YSBA28674,1704933 -#define EITHER_POST_FROZEN_YSBA EITHER_POST_FROZEN_YSBA28675,1704990 -#define EITHER_YAPOR EITHER_YAPOR28676,1705057 -#define EITHER_END EITHER_END28677,1705102 -#define OR_ELSE_INSTINIT OR_ELSE_INSTINIT28678,1705143 -#define OR_ELSE_DEPTH OR_ELSE_DEPTH28679,1705196 -#define OR_ELSE_POST_DEPTH OR_ELSE_POST_DEPTH28680,1705243 -#define OR_ELSE_YAPOR OR_ELSE_YAPOR28681,1705300 -#define OR_ELSE_END OR_ELSE_END28682,1705347 -#define OR_LAST_INSTINIT OR_LAST_INSTINIT28683,1705390 -#define OR_LAST_IFOK_INIT OR_LAST_IFOK_INIT28684,1705443 -#define OR_LAST_IFOK_DEPTH OR_LAST_IFOK_DEPTH28685,1705498 -#define OR_LAST_IFOK_END OR_LAST_IFOK_END28686,1705555 -#define OR_LAST_NOIF_INIT OR_LAST_NOIF_INIT28687,1705608 -#define OR_LAST_NOIF_DEPTH OR_LAST_NOIF_DEPTH28688,1705663 -#define OR_LAST_NOIF_END OR_LAST_NOIF_END28689,1705720 -#define OR_LAST_YAPOR OR_LAST_YAPOR28690,1705773 -#define OR_LAST_NOYAPOR OR_LAST_NOYAPOR28691,1705820 -#define OR_LAST_END OR_LAST_END28692,1705871 -#define LOCK_PRED_INSTINIT LOCK_PRED_INSTINIT28693,1705914 -#define LOCK_PRED_FIRSTIFOK LOCK_PRED_FIRSTIFOK28694,1705971 -#define LOCK_PRED_SECONDTIFOK LOCK_PRED_SECONDTIFOK28695,1706030 -#define LOCK_PRED_END LOCK_PRED_END28696,1706093 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT28697,1706140 -#define INDEX_PRED_INSTINIT INDEX_PRED_INSTINIT28698,1706199 -#define INDEX_PRED_END INDEX_PRED_END28699,1706258 -#define THREAD_LOCAL_INSTINIT THREAD_LOCAL_INSTINIT28700,1706307 -#define EXPAND_INDEX_INSTINIT EXPAND_INDEX_INSTINIT28701,1706370 -#define EXPAND_INDEX_YAPOR_THREADS_NOPP EXPAND_INDEX_YAPOR_THREADS_NOPP28702,1706433 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT EXPAND_INDEX_YAPOR_THREADS_IFOK_INIT28703,1706516 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK EXPAND_INDEX_YAPOR_THREADS_IFOK_IFOK28704,1706609 -#define EXPAND_INDEX_YAPOR_THREADS_IFOK_END EXPAND_INDEX_YAPOR_THREADS_IFOK_END28705,1706702 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_SETS28706,1706793 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETS28707,1706884 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_SETSREG28708,1706985 -#define EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG EXPAND_INDEX_NOYAPOR_NOTHREADS_POST_SETSREG28709,1707082 -#define EXPAND_INDEX_UNLOCK EXPAND_INDEX_UNLOCK28710,1707189 -#define EXPAND_INDEX_END EXPAND_INDEX_END28711,1707248 -#define EXPAND_CLAUSES_INSTINIT EXPAND_CLAUSES_INSTINIT28712,1707301 -#define EXPAND_CLAUSES_YAPOR_THREADS_NOPP EXPAND_CLAUSES_YAPOR_THREADS_NOPP28713,1707368 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT EXPAND_CLAUSES_YAPOR_THREADS_IFOK_INIT28714,1707455 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK EXPAND_CLAUSES_YAPOR_THREADS_IFOK_IFOK28715,1707552 -#define EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END EXPAND_CLAUSES_YAPOR_THREADS_IFOK_END28716,1707649 -#define EXPAND_CLAUSES_NOYAPOR_NOTHREADS EXPAND_CLAUSES_NOYAPOR_NOTHREADS28717,1707744 -#define EXPAND_CLAUSES_UNLOCK EXPAND_CLAUSES_UNLOCK28718,1707829 -#define EXPAND_CLAUSES_END EXPAND_CLAUSES_END28719,1707892 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT28720,1707949 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT28721,1708002 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT28722,1708055 -#define UNDEF_P_INSTINIT UNDEF_P_INSTINIT28723,1708109 -#define UNDEF_P_END UNDEF_P_END28724,1708163 -#define SPY_PRED_INSTINIT SPY_PRED_INSTINIT28725,1708207 -#define SPY_PRED_FIRSTIFOK SPY_PRED_FIRSTIFOK28726,1708263 -#define SPY_PRED_SECONDIFOK_INIT SPY_PRED_SECONDIFOK_INIT28727,1708321 -#define SPY_PRED_SECONDIFOK_FIRSTIFOK SPY_PRED_SECONDIFOK_FIRSTIFOK28728,1708391 -#define SPY_PRED_SECONDIFOK_POST_FIRSTIF SPY_PRED_SECONDIFOK_POST_FIRSTIF28729,1708471 -#define SPY_PRED_SECONDIFOK_SECONDIFOK SPY_PRED_SECONDIFOK_SECONDIFOK28730,1708557 -#define SPY_PRED_SECONDIFOK_THIRDIFOK SPY_PRED_SECONDIFOK_THIRDIFOK28731,1708639 -#define SPY_PRED_THIRDIFOK_INIT SPY_PRED_THIRDIFOK_INIT28732,1708719 -#define SPY_PRED_THIRDIFOK_FIRSTIFOK SPY_PRED_THIRDIFOK_FIRSTIFOK28733,1708787 -#define SPY_PRED_FOURTHIFOK SPY_PRED_FOURTHIFOK28734,1708865 -#define SPY_PRED_POST_FOURTHIF SPY_PRED_POST_FOURTHIF28735,1708925 -#define SPY_PRED_D0ISZERO SPY_PRED_D0ISZERO28736,1708991 -#define SPY_PRED_D0ISNOZERO_INIT SPY_PRED_D0ISNOZERO_INIT28737,1709047 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT SPY_PRED_D0ISNOZERO_INSIDEFOR_INIT28738,1709117 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_DOSPY_NONVAR28739,1709207 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_SAFEVAR28740,1709313 -#define SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR SPY_PRED_D0ISNOZERO_INSIDEFOR_UNSAFEVAR28741,1709409 -#define SPY_PRED_POST_IFS SPY_PRED_POST_IFS28742,1709509 -#define SPY_PRED_THREADS_LOCK SPY_PRED_THREADS_LOCK28743,1709565 -#define SPY_PRED_POST_LOCK SPY_PRED_POST_LOCK28744,1709629 -#define SPY_PRED_THREADS_UNLOCK SPY_PRED_THREADS_UNLOCK28745,1709687 -#define SPY_PRED_POST_UNLOCK SPY_PRED_POST_UNLOCK28746,1709755 -#define SPY_PRED_LOW_LEVEL_TRACER SPY_PRED_LOW_LEVEL_TRACER28747,1709817 -#define SPY_PRED_END SPY_PRED_END28748,1709889 -#define POP_N_INSTINIT POP_N_INSTINIT28751,1709960 -#define POP_N_END POP_N_END28752,1710003 -#define POP_INSTINIT POP_INSTINIT28753,1710039 -#define POP_END POP_END28754,1710081 -#define POP_N_INSTINIT POP_N_INSTINIT28757,1710140 -#define POP_N_END POP_N_END28758,1710183 -#define POP_INSTINIT POP_INSTINIT28759,1710219 -#define POP_END POP_END28760,1710261 -#define P_ATOM_X_INSTINIT P_ATOM_X_INSTINIT28763,1710337 -#define P_ATOM_X_ATOM P_ATOM_X_ATOM28764,1710386 -#define P_ATOM_X_NOATOM P_ATOM_X_NOATOM28765,1710429 -#define P_ATOM_Y_INSTINIT P_ATOM_Y_INSTINIT28766,1710477 -#define P_ATOM_Y_IFOK P_ATOM_Y_IFOK28767,1710529 -#define P_ATOM_Y_NOIF P_ATOM_Y_NOIF28768,1710573 -#define P_ATOM_Y_END P_ATOM_Y_END28769,1710617 -#define P_ATOMIC_X_INSTINIT P_ATOMIC_X_INSTINIT28770,1710659 -#define P_ATOMIC_X_NONVAR P_ATOMIC_X_NONVAR28771,1710715 -#define P_ATOMIC_X_VAR P_ATOMIC_X_VAR28772,1710767 -#define P_ATOMIC_X_END P_ATOMIC_X_END28773,1710813 -#define P_ATOMIC_Y_INSTINIT P_ATOMIC_Y_INSTINIT28774,1710859 -#define P_ATOMIC_Y_NONVAR P_ATOMIC_Y_NONVAR28775,1710916 -#define P_ATOMIC_Y_VAR P_ATOMIC_Y_VAR28776,1710969 -#define P_ATOMIC_Y_END P_ATOMIC_Y_END28777,1711016 -#define P_INTEGER_X_INSTINIT P_INTEGER_X_INSTINIT28778,1711063 -#define P_INTEGER_X_INTEGER_X_NVAR_OK P_INTEGER_X_INTEGER_X_NVAR_OK28779,1711122 -#define P_INTEGER_X_INTEGER_X_NVAR_NOOK P_INTEGER_X_INTEGER_X_NVAR_NOOK28780,1711199 -#define P_INTEGER_X_INTEGER_X_UNK P_INTEGER_X_INTEGER_X_UNK28781,1711280 -#define P_INTEGER_Y_INSTINIT P_INTEGER_Y_INSTINIT28782,1711349 -#define P_INTEGER_Y_INTEGER_Y_NVAR_OK P_INTEGER_Y_INTEGER_Y_NVAR_OK28783,1711408 -#define P_INTEGER_Y_INTEGER_Y_NVAR_NOOK P_INTEGER_Y_INTEGER_Y_NVAR_NOOK28784,1711485 -#define P_INTEGER_Y_INTEGER_Y_UNK P_INTEGER_Y_INTEGER_Y_UNK28785,1711566 -#define P_NONVAR_X_INSTINIT P_NONVAR_X_INSTINIT28786,1711635 -#define P_NONVAR_X_NONVAR P_NONVAR_X_NONVAR28787,1711693 -#define P_NONVAR_X_NONONVAR P_NONVAR_X_NONONVAR28788,1711747 -#define P_NONVAR_Y_INSTINIT P_NONVAR_Y_INSTINIT28789,1711805 -#define P_NONVAR_Y_NONVAR P_NONVAR_Y_NONVAR28790,1711863 -#define P_NONVAR_Y_NONONVAR P_NONVAR_Y_NONONVAR28791,1711917 -#define P_NUMBER_X_INSTINIT P_NUMBER_X_INSTINIT28792,1711975 -#define P_NUMBER_X_INT P_NUMBER_X_INT28793,1712033 -#define P_NUMBER_X_FUNCTORINT P_NUMBER_X_FUNCTORINT28794,1712081 -#define P_NUMBER_X_FUNCTORDEFAULT P_NUMBER_X_FUNCTORDEFAULT28795,1712143 -#define P_NUMBER_X_POST_IF P_NUMBER_X_POST_IF28796,1712213 -#define P_NUMBER_X_NUMBER_X_UNK P_NUMBER_X_NUMBER_X_UNK28797,1712269 -#define P_NUMBER_Y_INSTINIT P_NUMBER_Y_INSTINIT28798,1712335 -#define P_NUMBER_Y_INT P_NUMBER_Y_INT28799,1712393 -#define P_NUMBER_Y_FUNCTORINT P_NUMBER_Y_FUNCTORINT28800,1712441 -#define P_NUMBER_Y_FUNCTORDEFAULT P_NUMBER_Y_FUNCTORDEFAULT28801,1712503 -#define P_NUMBER_Y_POST_IF P_NUMBER_Y_POST_IF28802,1712573 -#define P_NUMBER_Y_NUMBER_Y_UNK P_NUMBER_Y_NUMBER_Y_UNK28803,1712629 -#define P_VAR_X_INSTINIT P_VAR_X_INSTINIT28804,1712695 -#define P_VAR_X_NONVAR P_VAR_X_NONVAR28805,1712747 -#define P_VAR_X_VAR P_VAR_X_VAR28806,1712795 -#define P_VAR_Y_INSTINIT P_VAR_Y_INSTINIT28807,1712837 -#define P_VAR_Y_NONVAR P_VAR_Y_NONVAR28808,1712889 -#define P_VAR_Y_VAR P_VAR_Y_VAR28809,1712937 -#define P_DB_REF_X_INSTINIT P_DB_REF_X_INSTINIT28810,1712979 -#define P_DB_REF_X_DBREF P_DB_REF_X_DBREF28811,1713037 -#define P_DB_REF_X_NODBREF P_DB_REF_X_NODBREF28812,1713089 -#define P_DB_REF_X_DBREF_X_UNK P_DB_REF_X_DBREF_X_UNK28813,1713145 -#define P_DB_REF_Y_INSTINIT P_DB_REF_Y_INSTINIT28814,1713209 -#define P_DB_REF_Y_DBREF P_DB_REF_Y_DBREF28815,1713267 -#define P_DB_REF_Y_NODBREF P_DB_REF_Y_NODBREF28816,1713319 -#define P_DB_REF_Y_DBREF_Y_UNK P_DB_REF_Y_DBREF_Y_UNK28817,1713375 -#define P_PRIMITIVE_X_INSTINIT P_PRIMITIVE_X_INSTINIT28818,1713439 -#define P_PRIMITIVE_X_PRIMITIVE P_PRIMITIVE_X_PRIMITIVE28819,1713503 -#define P_PRIMITIVE_X_NOPRIMITIVE P_PRIMITIVE_X_NOPRIMITIVE28820,1713569 -#define P_PRIMITIVE_X_PRIMI_X_UNK P_PRIMITIVE_X_PRIMI_X_UNK28821,1713639 -#define P_PRIMITIVE_Y_INSTINIT P_PRIMITIVE_Y_INSTINIT28822,1713709 -#define P_PRIMITIVE_Y_PRIMITIVE P_PRIMITIVE_Y_PRIMITIVE28823,1713773 -#define P_PRIMITIVE_Y_NOPRIMITIVE P_PRIMITIVE_Y_NOPRIMITIVE28824,1713839 -#define P_PRIMITIVE_Y_PRIMI_Y_UNK P_PRIMITIVE_Y_PRIMI_Y_UNK28825,1713909 -#define P_COMPOUND_X_INSTINIT P_COMPOUND_X_INSTINIT28826,1713979 -#define P_COMPOUND_X_PAIR P_COMPOUND_X_PAIR28827,1714041 -#define P_COMPOUND_X_APPL_IFOK P_COMPOUND_X_APPL_IFOK28828,1714095 -#define P_COMPOUND_X_APPL P_COMPOUND_X_APPL28829,1714159 -#define P_COMPOUND_X_NOAPPL P_COMPOUND_X_NOAPPL28830,1714213 -#define P_COMPOUND_X_COMPOUND_X_UNK P_COMPOUND_X_COMPOUND_X_UNK28831,1714271 -#define P_COMPOUND_Y_INSTINIT P_COMPOUND_Y_INSTINIT28832,1714345 -#define P_COMPOUND_Y_PAIR P_COMPOUND_Y_PAIR28833,1714407 -#define P_COMPOUND_Y_APPL_IFOK P_COMPOUND_Y_APPL_IFOK28834,1714461 -#define P_COMPOUND_Y_APPL P_COMPOUND_Y_APPL28835,1714525 -#define P_COMPOUND_Y_NOAPPL P_COMPOUND_Y_NOAPPL28836,1714579 -#define P_COMPOUND_Y_COMPOUND_Y_UNK P_COMPOUND_Y_COMPOUND_Y_UNK28837,1714637 -#define P_FLOAT_X_INSTINIT P_FLOAT_X_INSTINIT28838,1714711 -#define P_FLOAT_X_FLOAT P_FLOAT_X_FLOAT28839,1714767 -#define P_FLOAT_X_POST_IF P_FLOAT_X_POST_IF28840,1714817 -#define P_FLOAT_X_FLOAT_X_UNK P_FLOAT_X_FLOAT_X_UNK28841,1714871 -#define P_FLOAT_Y_INSTINIT P_FLOAT_Y_INSTINIT28842,1714933 -#define P_FLOAT_Y_FLOAT P_FLOAT_Y_FLOAT28843,1714989 -#define P_FLOAT_Y_POST_IF P_FLOAT_Y_POST_IF28844,1715039 -#define P_FLOAT_Y_FLOAT_Y_UNK P_FLOAT_Y_FLOAT_Y_UNK28845,1715093 -#define P_PLUS_VV_INSTINIT P_PLUS_VV_INSTINIT28846,1715155 -#define P_PLUS_VV_PLUS_VV_NVAR P_PLUS_VV_PLUS_VV_NVAR28847,1715211 -#define P_PLUS_VV_PLUS_VV_NVAR_NVAR_INT P_PLUS_VV_PLUS_VV_NVAR_NVAR_INT28848,1715275 -#define P_PLUS_VV_PLUS_VV_NVAR_NVAR_NOINT P_PLUS_VV_PLUS_VV_NVAR_NVAR_NOINT28849,1715357 -#define P_PLUS_VV_PLUS_VV_UNK P_PLUS_VV_PLUS_VV_UNK28850,1715443 -#define P_PLUS_VV_PLUS_VV_NVAR_UNK P_PLUS_VV_PLUS_VV_NVAR_UNK28851,1715505 -#define P_PLUS_VC_INSTINIT P_PLUS_VC_INSTINIT28852,1715577 -#define P_PLUS_VC_PLUS_VC_NVAR_INT P_PLUS_VC_PLUS_VC_NVAR_INT28853,1715633 -#define P_PLUS_VC_PLUS_VC_NVAR_NOINT P_PLUS_VC_PLUS_VC_NVAR_NOINT28854,1715705 -#define P_PLUS_VC_PLUS_VC_UNK P_PLUS_VC_PLUS_VC_UNK28855,1715781 -#define P_PLUS_Y_VV_INSTINIT P_PLUS_Y_VV_INSTINIT28856,1715843 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR P_PLUS_Y_VV_PLUS_Y_VV_NVAR28857,1715903 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_INT P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_INT28858,1715976 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_NOINT P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_NOINT28859,1716067 -#define P_PLUS_Y_VV_PLUS_Y_VV_UNK P_PLUS_Y_VV_PLUS_Y_VV_UNK28860,1716162 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_UNK P_PLUS_Y_VV_PLUS_Y_VV_NVAR_UNK28861,1716233 -#define P_PLUS_Y_VC_INSTINIT P_PLUS_Y_VC_INSTINIT28862,1716314 -#define P_PLUS_Y_VC_PLUS_Y_VC_NVAR_INT P_PLUS_Y_VC_PLUS_Y_VC_NVAR_INT28863,1716375 -#define P_PLUS_Y_VC_PLUS_Y_VC_NVAR_NOINT P_PLUS_Y_VC_PLUS_Y_VC_NVAR_NOINT28864,1716456 -#define P_PLUS_Y_VC_PLUS_Y_VC_UNK P_PLUS_Y_VC_PLUS_Y_VC_UNK28865,1716541 -#define P_MINUS_VV_INSTINIT P_MINUS_VV_INSTINIT28866,1716612 -#define P_MINUS_VV_MINUS_VV_NVAR P_MINUS_VV_MINUS_VV_NVAR28867,1716671 -#define P_MINUS_VV_MINUS_VV_NVAR_NVAR_INT P_MINUS_VV_MINUS_VV_NVAR_NVAR_INT28868,1716740 -#define P_MINUS_VV_MINUS_VV_NVAR_NVAR_NOINT P_MINUS_VV_MINUS_VV_NVAR_NVAR_NOINT28869,1716827 -#define P_MINUS_VV_MINUS_VV_UNK P_MINUS_VV_MINUS_VV_UNK28870,1716918 -#define P_MINUS_VV_MINUS_VV_NVAR_UNK P_MINUS_VV_MINUS_VV_NVAR_UNK28871,1716985 -#define P_MINUS_CV_INSTINIT P_MINUS_CV_INSTINIT28872,1717062 -#define P_MINUS_CV_MINUS_CV_NVAR_INT P_MINUS_CV_MINUS_CV_NVAR_INT28873,1717121 -#define P_MINUS_CV_MINUS_CV_NVAR_NOINT P_MINUS_CV_MINUS_CV_NVAR_NOINT28874,1717198 -#define P_MINUS_CV_MINUS_CV_UNK P_MINUS_CV_MINUS_CV_UNK28875,1717279 -#define P_MINUS_Y_VV_INSTINIT P_MINUS_Y_VV_INSTINIT28876,1717346 -#define P_MINUS_Y_VV_MINUS_Y_VV_NVAR P_MINUS_Y_VV_MINUS_Y_VV_NVAR28877,1717409 -#define P_MINUS_Y_VV_INTTERM P_MINUS_Y_VV_INTTERM28878,1717486 -#define P_MINUS_Y_VV_NOINTTERM P_MINUS_Y_VV_NOINTTERM28879,1717547 -#define P_MINUS_Y_VV_D0EQUALS0L P_MINUS_Y_VV_D0EQUALS0L28880,1717612 -#define P_MINUS_Y_VV_NVAR_END P_MINUS_Y_VV_NVAR_END28881,1717679 -#define P_MINUS_Y_VV_MINUS_Y_VV_UNK P_MINUS_Y_VV_MINUS_Y_VV_UNK28882,1717742 -#define P_MINUS_Y_VV_MINUS_Y_VV_NVAR_UNK P_MINUS_Y_VV_MINUS_Y_VV_NVAR_UNK28883,1717817 -#define P_MINUS_Y_CV_INSTINIT P_MINUS_Y_CV_INSTINIT28884,1717902 -#define P_MINUS_Y_CV_MINUS_Y_CV_NVAR P_MINUS_Y_CV_MINUS_Y_CV_NVAR28885,1717965 -#define P_MINUS_Y_CV_INTTERM P_MINUS_Y_CV_INTTERM28886,1718042 -#define P_MINUS_Y_CV_NOINTTERM P_MINUS_Y_CV_NOINTTERM28887,1718103 -#define P_MINUS_Y_CV_D0EQUALS0L P_MINUS_Y_CV_D0EQUALS0L28888,1718168 -#define P_MINUS_Y_CV_NVAR_END P_MINUS_Y_CV_NVAR_END28889,1718235 -#define P_MINUS_Y_CV_MINUS_Y_CV_UNK P_MINUS_Y_CV_MINUS_Y_CV_UNK28890,1718298 -#define P_TIMES_VV_INSTINIT P_TIMES_VV_INSTINIT28891,1718373 -#define P_TIMES_VV_TIMES_VV_NVAR P_TIMES_VV_TIMES_VV_NVAR28892,1718432 -#define P_TIMES_VV_TIMES_VV_NVAR_NVAR_INT P_TIMES_VV_TIMES_VV_NVAR_NVAR_INT28893,1718501 -#define P_TIMES_VV_TIMES_VV_NVAR_NVAR_NOINT P_TIMES_VV_TIMES_VV_NVAR_NVAR_NOINT28894,1718588 -#define P_TIMES_VV_TIMES_VV_UNK P_TIMES_VV_TIMES_VV_UNK28895,1718679 -#define P_TIMES_VV_TIMES_VV_NVAR_UNK P_TIMES_VV_TIMES_VV_NVAR_UNK28896,1718746 -#define P_TIMES_VC_INSTINIT P_TIMES_VC_INSTINIT28897,1718823 -#define P_TIMES_VC_TIMES_VC_NVAR_INT P_TIMES_VC_TIMES_VC_NVAR_INT28898,1718882 -#define P_TIMES_VC_TIMES_VC_NVAR_NOINT P_TIMES_VC_TIMES_VC_NVAR_NOINT28899,1718959 -#define P_TIMES_VC_TIMES_VC_UNK P_TIMES_VC_TIMES_VC_UNK28900,1719040 -#define P_TIMES_Y_VV_INSTINIT P_TIMES_Y_VV_INSTINIT28901,1719107 -#define P_TIMES_Y_VV_TIMES_Y_VV_NVAR P_TIMES_Y_VV_TIMES_Y_VV_NVAR28902,1719170 -#define P_TIMES_Y_VV_INTTERM P_TIMES_Y_VV_INTTERM28903,1719247 -#define P_TIMES_Y_VV_NOINTTERM P_TIMES_Y_VV_NOINTTERM28904,1719308 -#define P_TIMES_Y_VV_D0EQUALS0L P_TIMES_Y_VV_D0EQUALS0L28905,1719373 -#define P_TIMES_Y_VV_NVAR_END P_TIMES_Y_VV_NVAR_END28906,1719440 -#define P_TIMES_Y_VV_TIMES_Y_VV_UNK P_TIMES_Y_VV_TIMES_Y_VV_UNK28907,1719503 -#define P_TIMES_Y_VV_TIMES_Y_VV_NVAR_UNK P_TIMES_Y_VV_TIMES_Y_VV_NVAR_UNK28908,1719578 -#define P_TIMES_Y_VC_INSTINIT P_TIMES_Y_VC_INSTINIT28909,1719663 -#define P_TIMES_Y_VC_TIMES_Y_VC_NVAR_INT P_TIMES_Y_VC_TIMES_Y_VC_NVAR_INT28910,1719726 -#define P_TIMES_Y_VC_TIMES_Y_VC_NVAR_NOINT P_TIMES_Y_VC_TIMES_Y_VC_NVAR_NOINT28911,1719811 -#define P_TIMES_Y_VC_NVAR_END P_TIMES_Y_VC_NVAR_END28912,1719900 -#define P_TIMES_Y_VC_TIMES_Y_VC_UNK P_TIMES_Y_VC_TIMES_Y_VC_UNK28913,1719963 -#define P_DIV_VV_INSTINIT P_DIV_VV_INSTINIT28914,1720038 -#define P_DIV_VV_DIV_VV_NVAR P_DIV_VV_DIV_VV_NVAR28915,1720093 -#define P_DIV_VV_DIV_VV_NVAR_NVAR_INT P_DIV_VV_DIV_VV_NVAR_NVAR_INT28916,1720154 -#define P_DIV_VV_DIV_VV_NVAR_NVAR_NOINT P_DIV_VV_DIV_VV_NVAR_NVAR_NOINT28917,1720233 -#define P_DIV_VV_DIV_VV_UNK P_DIV_VV_DIV_VV_UNK28918,1720316 -#define P_DIV_VV_DIV_VV_NVAR_UNK P_DIV_VV_DIV_VV_NVAR_UNK28919,1720375 -#define P_DIV_VC_INSTINIT P_DIV_VC_INSTINIT28920,1720444 -#define P_DIV_VC_DIV_VC_NVAR P_DIV_VC_DIV_VC_NVAR28921,1720499 -#define P_DIV_VC_INTTERM P_DIV_VC_INTTERM28922,1720560 -#define P_DIV_VC_NOINTTERM P_DIV_VC_NOINTTERM28923,1720613 -#define P_DIV_VC_D0EQUALS0L P_DIV_VC_D0EQUALS0L28924,1720670 -#define P_DIV_VC_NVAR_END P_DIV_VC_NVAR_END28925,1720729 -#define P_DIV_VC_DIV_VC_UNK P_DIV_VC_DIV_VC_UNK28926,1720784 -#define P_DIV_CV_INSTINIT P_DIV_CV_INSTINIT28927,1720843 -#define P_DIV_CV_DIV_CV_NVAR P_DIV_CV_DIV_CV_NVAR28928,1720898 -#define P_DIV_CV_INTTERM_INIT P_DIV_CV_INTTERM_INIT28929,1720959 -#define P_DIV_CV_INTTERM_DIVEQUALS0 P_DIV_CV_INTTERM_DIVEQUALS028930,1721022 -#define P_DIV_CV_INTTERM_END P_DIV_CV_INTTERM_END28931,1721097 -#define P_DIV_CV_NOINTTERM P_DIV_CV_NOINTTERM28932,1721158 -#define P_DIV_CV_D0EQUALS0L P_DIV_CV_D0EQUALS0L28933,1721215 -#define P_DIV_CV_NVAR_END P_DIV_CV_NVAR_END28934,1721274 -#define P_DIV_CV_DIV_CV_UNK P_DIV_CV_DIV_CV_UNK28935,1721329 -#define P_DIV_Y_VV_INSTINIT P_DIV_Y_VV_INSTINIT28936,1721388 -#define P_DIV_Y_VV_DIV_Y_VV_NVAR P_DIV_Y_VV_DIV_Y_VV_NVAR28937,1721447 -#define P_DIV_Y_VV_INTTERM_INIT P_DIV_Y_VV_INTTERM_INIT28938,1721516 -#define P_DIV_Y_VV_INTTERM_DIVEQUALS0 P_DIV_Y_VV_INTTERM_DIVEQUALS028939,1721583 -#define P_DIV_Y_VV_INTTERM_END P_DIV_Y_VV_INTTERM_END28940,1721662 -#define P_DIV_Y_VV_NOINTTERM P_DIV_Y_VV_NOINTTERM28941,1721727 -#define P_DIV_Y_VV_D0EQUALS0L P_DIV_Y_VV_D0EQUALS0L28942,1721788 -#define P_DIV_Y_VV_NVAR_END P_DIV_Y_VV_NVAR_END28943,1721851 -#define P_DIV_Y_VV_DIV_Y_VV_UNK P_DIV_Y_VV_DIV_Y_VV_UNK28944,1721910 -#define P_DIV_Y_VV_DIV_Y_VV_NVAR_UNK P_DIV_Y_VV_DIV_Y_VV_NVAR_UNK28945,1721977 -#define P_DIV_Y_VC_INSTINIT P_DIV_Y_VC_INSTINIT28946,1722054 -#define P_DIV_Y_VC_DIV_Y_VC_NVAR P_DIV_Y_VC_DIV_Y_VC_NVAR28947,1722113 -#define P_DIV_Y_VC_INTTERM P_DIV_Y_VC_INTTERM28948,1722182 -#define P_DIV_Y_VC_NOINTTERM P_DIV_Y_VC_NOINTTERM28949,1722239 -#define P_DIV_Y_VC_D0EQUALS0L P_DIV_Y_VC_D0EQUALS0L28950,1722300 -#define P_DIV_Y_VC_NVAR_END P_DIV_Y_VC_NVAR_END28951,1722363 -#define P_DIV_Y_VC_DIV_Y_VC_UNK P_DIV_Y_VC_DIV_Y_VC_UNK28952,1722422 -#define P_DIV_Y_CV_INSTINIT P_DIV_Y_CV_INSTINIT28953,1722489 -#define P_DIV_Y_CV_DIV_Y_CV_NVAR P_DIV_Y_CV_DIV_Y_CV_NVAR28954,1722548 -#define P_DIV_Y_CV_INTTERM_INIT P_DIV_Y_CV_INTTERM_INIT28955,1722617 -#define P_DIV_Y_CV_INTTERM_DIVEQUALS0 P_DIV_Y_CV_INTTERM_DIVEQUALS028956,1722684 -#define P_DIV_Y_CV_INTTERM_END P_DIV_Y_CV_INTTERM_END28957,1722763 -#define P_DIV_Y_CV_NOINTTERM P_DIV_Y_CV_NOINTTERM28958,1722828 -#define P_DIV_Y_CV_D0EQUALS0L P_DIV_Y_CV_D0EQUALS0L28959,1722889 -#define P_DIV_Y_CV_NVAR_END P_DIV_Y_CV_NVAR_END28960,1722952 -#define P_DIV_Y_CV_DIV_Y_CV_UNK P_DIV_Y_CV_DIV_Y_CV_UNK28961,1723012 -#define P_AND_VV_INSTINIT P_AND_VV_INSTINIT28962,1723080 -#define P_AND_VV_AND_VV_NVAR P_AND_VV_AND_VV_NVAR28963,1723136 -#define P_AND_VV_AND_VV_NVAR_NVAR_INT P_AND_VV_AND_VV_NVAR_NVAR_INT28964,1723198 -#define P_AND_VV_AND_VV_NVAR_NVAR_NOINT P_AND_VV_AND_VV_NVAR_NVAR_NOINT28965,1723278 -#define P_AND_VV_AND_VV_UNK P_AND_VV_AND_VV_UNK28966,1723362 -#define P_AND_VV_AND_VV_NVAR_UNK P_AND_VV_AND_VV_NVAR_UNK28967,1723422 -#define P_AND_VC_INSTINIT P_AND_VC_INSTINIT28968,1723492 -#define P_AND_VC_AND_VC_NVAR_INT P_AND_VC_AND_VC_NVAR_INT28969,1723548 -#define P_AND_VC_AND_VC_NVAR_NOINT P_AND_VC_AND_VC_NVAR_NOINT28970,1723618 -#define P_AND_VC_AND_VC_UNK P_AND_VC_AND_VC_UNK28971,1723692 -#define P_AND_Y_VV_INSTINIT P_AND_Y_VV_INSTINIT28972,1723752 -#define P_AND_Y_VV_AND_Y_VV_NVAR P_AND_Y_VV_AND_Y_VV_NVAR28973,1723812 -#define P_AND_Y_VV_INTTERM P_AND_Y_VV_INTTERM28974,1723882 -#define P_AND_Y_VV_NOINTTERM P_AND_Y_VV_NOINTTERM28975,1723940 -#define P_AND_Y_VV_D0EQUALS0L P_AND_Y_VV_D0EQUALS0L28976,1724002 -#define P_AND_Y_VV_NVAR_END P_AND_Y_VV_NVAR_END28977,1724066 -#define P_AND_Y_VV_AND_Y_VV_UNK P_AND_Y_VV_AND_Y_VV_UNK28978,1724126 -#define P_AND_Y_VV_AND_Y_VV_NVAR_UNK P_AND_Y_VV_AND_Y_VV_NVAR_UNK28979,1724194 -#define P_AND_Y_VC_INSTINIT P_AND_Y_VC_INSTINIT28980,1724272 -#define P_AND_Y_VC_AND_Y_VC_NVAR P_AND_Y_VC_AND_Y_VC_NVAR28981,1724332 -#define P_AND_Y_VC_INTTERM P_AND_Y_VC_INTTERM28982,1724402 -#define P_AND_Y_VC_NOINTTERM P_AND_Y_VC_NOINTTERM28983,1724460 -#define P_AND_Y_VC_D0EQUALS0L P_AND_Y_VC_D0EQUALS0L28984,1724522 -#define P_AND_Y_VC_NVAR_END P_AND_Y_VC_NVAR_END28985,1724586 -#define P_AND_Y_VC_AND_Y_VC_UNK P_AND_Y_VC_AND_Y_VC_UNK28986,1724646 -#define P_OR_VV_INSTINIT P_OR_VV_INSTINIT28987,1724714 -#define P_OR_VV_OR_VV_NVAR P_OR_VV_OR_VV_NVAR28988,1724768 -#define P_OR_VV_INTTERM P_OR_VV_INTTERM28989,1724826 -#define P_OR_VV_NOINTTERM P_OR_VV_NOINTTERM28990,1724878 -#define P_OR_VV_D0EQUALS0L P_OR_VV_D0EQUALS0L28991,1724934 -#define P_OR_VV_NVAR_END P_OR_VV_NVAR_END28992,1724992 -#define P_OR_VV_OR_VV_UNK P_OR_VV_OR_VV_UNK28993,1725046 -#define P_OR_VV_OR_VV_NVAR_UNK P_OR_VV_OR_VV_NVAR_UNK28994,1725102 -#define P_OR_VC_INSTINIT P_OR_VC_INSTINIT28995,1725168 -#define P_OR_VC_OR_VC_NVAR P_OR_VC_OR_VC_NVAR28996,1725222 -#define P_OR_VC_INTTERM P_OR_VC_INTTERM28997,1725280 -#define P_OR_VC_NOINTTERM P_OR_VC_NOINTTERM28998,1725332 -#define P_OR_VC_D0EQUALS0L P_OR_VC_D0EQUALS0L28999,1725388 -#define P_OR_VC_NVAR_END P_OR_VC_NVAR_END29000,1725446 -#define P_OR_VC_OR_VC_UNK P_OR_VC_OR_VC_UNK29001,1725500 -#define P_OR_Y_VV_INSTINIT P_OR_Y_VV_INSTINIT29002,1725556 -#define P_OR_Y_VV_OR_Y_VV_NVAR P_OR_Y_VV_OR_Y_VV_NVAR29003,1725614 -#define P_OR_Y_VV_INTTERM P_OR_Y_VV_INTTERM29004,1725680 -#define P_OR_Y_VV_NOINTTERM P_OR_Y_VV_NOINTTERM29005,1725736 -#define P_OR_Y_VV_D0EQUALS0L P_OR_Y_VV_D0EQUALS0L29006,1725796 -#define P_OR_Y_VV_NVAR_END P_OR_Y_VV_NVAR_END29007,1725858 -#define P_OR_Y_VV_OR_Y_VV_UNK P_OR_Y_VV_OR_Y_VV_UNK29008,1725916 -#define P_OR_Y_VV_OR_Y_VV_NVAR_UNK P_OR_Y_VV_OR_Y_VV_NVAR_UNK29009,1725980 -#define P_OR_Y_VC_INSTINIT P_OR_Y_VC_INSTINIT29010,1726054 -#define P_OR_Y_VC_OR_Y_VC_NVAR P_OR_Y_VC_OR_Y_VC_NVAR29011,1726112 -#define P_OR_Y_VC_INTTERM P_OR_Y_VC_INTTERM29012,1726178 -#define P_OR_Y_VC_NOINTTERM P_OR_Y_VC_NOINTTERM29013,1726234 -#define P_OR_Y_VC_D0EQUALS0L P_OR_Y_VC_D0EQUALS0L29014,1726294 -#define P_OR_Y_VC_NVAR_END P_OR_Y_VC_NVAR_END29015,1726356 -#define P_OR_Y_VC_OR_Y_VC_UNK P_OR_Y_VC_OR_Y_VC_UNK29016,1726414 -#define P_SLL_VV_INSTINIT P_SLL_VV_INSTINIT29017,1726478 -#define P_SLL_VV_SLL_VV_NVAR P_SLL_VV_SLL_VV_NVAR29018,1726534 -#define P_SLL_VV_INTTERM_INIT P_SLL_VV_INTTERM_INIT29019,1726596 -#define P_SLL_VV_INTTERM_LESS P_SLL_VV_INTTERM_LESS29020,1726660 -#define P_SLL_VV_INTTERM_GREATER P_SLL_VV_INTTERM_GREATER29021,1726724 -#define P_SLL_VV_NOINTTERM P_SLL_VV_NOINTTERM29022,1726794 -#define P_SLL_VV_D0EQUALS0L P_SLL_VV_D0EQUALS0L29023,1726852 -#define P_SLL_VV_NVAR_END P_SLL_VV_NVAR_END29024,1726912 -#define P_SLL_VV_SLL_VV_UNK P_SLL_VV_SLL_VV_UNK29025,1726968 -#define P_SLL_VV_SLL_VV_NVAR_UNK P_SLL_VV_SLL_VV_NVAR_UNK29026,1727028 -#define P_SLL_VC_INSTINIT P_SLL_VC_INSTINIT29027,1727098 -#define P_SLL_VC_SLL_VC_NVAR P_SLL_VC_SLL_VC_NVAR29028,1727154 -#define P_SLL_VC_INTTERM P_SLL_VC_INTTERM29029,1727216 -#define P_SLL_VC_NOINTTERM P_SLL_VC_NOINTTERM29030,1727270 -#define P_SLL_VC_D0EQUALS0L P_SLL_VC_D0EQUALS0L29031,1727328 -#define P_SLL_VC_NVAR_END P_SLL_VC_NVAR_END29032,1727388 -#define P_SLL_VC_SLL_VC_UNK P_SLL_VC_SLL_VC_UNK29033,1727444 -#define P_SLL_CV_INSTINIT P_SLL_CV_INSTINIT29034,1727504 -#define P_SLL_CV_SLL_CV_NVAR_INT P_SLL_CV_SLL_CV_NVAR_INT29035,1727560 -#define P_SLL_CV_SLL_CV_NVAR_NOINT P_SLL_CV_SLL_CV_NVAR_NOINT29036,1727630 -#define P_SLL_CV_SLL_CV_UNK P_SLL_CV_SLL_CV_UNK29037,1727704 -#define P_SLL_Y_VV_INSTINIT P_SLL_Y_VV_INSTINIT29038,1727764 -#define P_SLL_Y_VV_SLL_Y_VV_NVAR P_SLL_Y_VV_SLL_Y_VV_NVAR29039,1727824 -#define P_SLL_Y_VV_INTTERM_INIT P_SLL_Y_VV_INTTERM_INIT29040,1727894 -#define P_SLL_Y_VV_INTERM_LESS P_SLL_Y_VV_INTERM_LESS29041,1727962 -#define P_SLL_Y_VV_INTTERM_GREATER P_SLL_Y_VV_INTTERM_GREATER29042,1728028 -#define P_SLL_Y_VV_NOINTTERM P_SLL_Y_VV_NOINTTERM29043,1728102 -#define P_SLL_Y_VV_D0EQUALS0L P_SLL_Y_VV_D0EQUALS0L29044,1728164 -#define P_SLL_Y_VV_NVAR_END P_SLL_Y_VV_NVAR_END29045,1728228 -#define P_SLL_Y_VV_SLL_Y_VV_UNK P_SLL_Y_VV_SLL_Y_VV_UNK29046,1728288 -#define P_SLL_Y_VV_SLL_Y_VV_NVAR_UNK P_SLL_Y_VV_SLL_Y_VV_NVAR_UNK29047,1728356 -#define P_SLL_Y_VC_INSTINIT P_SLL_Y_VC_INSTINIT29048,1728434 -#define P_SLL_Y_VC_SLL_Y_VC_NVAR P_SLL_Y_VC_SLL_Y_VC_NVAR29049,1728494 -#define P_SLL_Y_VC_INTTERM P_SLL_Y_VC_INTTERM29050,1728564 -#define P_SLL_Y_VC_NOINTTERM P_SLL_Y_VC_NOINTTERM29051,1728622 -#define P_SLL_Y_VC_D0EQUALS0L P_SLL_Y_VC_D0EQUALS0L29052,1728684 -#define P_SLL_Y_VC_NVAR_END P_SLL_Y_VC_NVAR_END29053,1728748 -#define P_SLL_Y_VC_SLL_Y_VC_UNK P_SLL_Y_VC_SLL_Y_VC_UNK29054,1728808 -#define P_SLL_Y_CV_INSTINIT P_SLL_Y_CV_INSTINIT29055,1728876 -#define P_SLL_Y_CV_SLL_Y_CV_NVAR P_SLL_Y_CV_SLL_Y_CV_NVAR29056,1728936 -#define P_SLL_Y_CV_INTTERM_INIT P_SLL_Y_CV_INTTERM_INIT29057,1729006 -#define P_SLL_Y_CV_INTTERM_LESS P_SLL_Y_CV_INTTERM_LESS29058,1729074 -#define P_SLL_Y_CV_INTTERM_GREATER P_SLL_Y_CV_INTTERM_GREATER29059,1729142 -#define P_SLL_Y_CV_NOINTTERM P_SLL_Y_CV_NOINTTERM29060,1729216 -#define P_SLL_Y_CV_D0EQUALS0L P_SLL_Y_CV_D0EQUALS0L29061,1729278 -#define P_SLL_Y_CV_NVAR_END P_SLL_Y_CV_NVAR_END29062,1729342 -#define P_SLL_Y_CV_SLL_Y_CV_UNK P_SLL_Y_CV_SLL_Y_CV_UNK29063,1729402 -#define P_SLR_VV_INSTINIT P_SLR_VV_INSTINIT29064,1729470 -#define P_SLR_VV_SLR_VV_NVAR P_SLR_VV_SLR_VV_NVAR29065,1729526 -#define P_SLR_VV_INTTERM_INIT P_SLR_VV_INTTERM_INIT29066,1729588 -#define P_SLR_VV_INTTERM_LESS P_SLR_VV_INTTERM_LESS29067,1729652 -#define P_SLR_VV_INTTERM_GREATER P_SLR_VV_INTTERM_GREATER29068,1729716 -#define P_SLR_VV_NOINTTERM P_SLR_VV_NOINTTERM29069,1729786 -#define P_SLR_VV_D0EQUALS0L P_SLR_VV_D0EQUALS0L29070,1729844 -#define P_SLR_VV_NVAR_END P_SLR_VV_NVAR_END29071,1729904 -#define P_SLR_VV_SRL_VV_UNK P_SLR_VV_SRL_VV_UNK29072,1729960 -#define P_SLR_VV_SRL_VV_NVAR_UNK P_SLR_VV_SRL_VV_NVAR_UNK29073,1730020 -#define P_SLR_VC_INSTINIT P_SLR_VC_INSTINIT29074,1730090 -#define P_SLR_VC_SLR_VC_NVAR_INT P_SLR_VC_SLR_VC_NVAR_INT29075,1730146 -#define P_SLR_VC_SLR_VC_NVAR_NOINT P_SLR_VC_SLR_VC_NVAR_NOINT29076,1730216 -#define P_SLR_VC_SRL_VC_UNK P_SLR_VC_SRL_VC_UNK29077,1730290 -#define P_SLR_CV_INSTINIT P_SLR_CV_INSTINIT29078,1730350 -#define P_SLR_CV_SLR_CV_NVAR P_SLR_CV_SLR_CV_NVAR29079,1730406 -#define P_SLR_CV_INTTERM_INIT P_SLR_CV_INTTERM_INIT29080,1730468 -#define P_SLR_CV_INTTERM_LESS P_SLR_CV_INTTERM_LESS29081,1730532 -#define P_SLR_CV_INTTERM_GREATER P_SLR_CV_INTTERM_GREATER29082,1730596 -#define P_SLR_CV_NOINTTERM P_SLR_CV_NOINTTERM29083,1730666 -#define P_SLR_CV_D0EQUALS0L P_SLR_CV_D0EQUALS0L29084,1730724 -#define P_SLR_CV_NVAR_END P_SLR_CV_NVAR_END29085,1730784 -#define P_SLR_CV_SLR_CV_UNK P_SLR_CV_SLR_CV_UNK29086,1730840 -#define P_SLR_Y_VV_INSTINIT P_SLR_Y_VV_INSTINIT29087,1730900 -#define P_SLR_Y_VV_SLR_Y_VV_NVAR P_SLR_Y_VV_SLR_Y_VV_NVAR29088,1730960 -#define P_SLR_Y_VV_INTTERM_INIT P_SLR_Y_VV_INTTERM_INIT29089,1731030 -#define P_SLR_Y_VV_INTTERM_LESS P_SLR_Y_VV_INTTERM_LESS29090,1731098 -#define P_SLR_Y_VV_INTTERM_GREATER P_SLR_Y_VV_INTTERM_GREATER29091,1731166 -#define P_SLR_Y_VV_NOINTTERM P_SLR_Y_VV_NOINTTERM29092,1731240 -#define P_SLR_Y_VV_D0EQUALS0L P_SLR_Y_VV_D0EQUALS0L29093,1731302 -#define P_SLR_Y_VV_NVAR_END P_SLR_Y_VV_NVAR_END29094,1731366 -#define P_SLR_Y_VV_SLR_Y_VV_UNK P_SLR_Y_VV_SLR_Y_VV_UNK29095,1731426 -#define P_SLR_Y_VV_SLR_Y_VV_NVAR_UNK P_SLR_Y_VV_SLR_Y_VV_NVAR_UNK29096,1731494 -#define P_SLR_Y_VC_INSTINIT P_SLR_Y_VC_INSTINIT29097,1731572 -#define P_SLR_Y_VC_SLR_Y_VC_NVAR P_SLR_Y_VC_SLR_Y_VC_NVAR29098,1731632 -#define P_SLR_Y_VC_INTTERM P_SLR_Y_VC_INTTERM29099,1731702 -#define P_SLR_Y_VC_NOINTTERM P_SLR_Y_VC_NOINTTERM29100,1731760 -#define P_SLR_Y_VC_D0EQUALS0L P_SLR_Y_VC_D0EQUALS0L29101,1731822 -#define P_SLR_Y_VC_NVAR_END P_SLR_Y_VC_NVAR_END29102,1731886 -#define P_SLR_Y_VC_SLR_Y_VC_UNK P_SLR_Y_VC_SLR_Y_VC_UNK29103,1731946 -#define P_SLR_Y_CV_INSTINIT P_SLR_Y_CV_INSTINIT29104,1732014 -#define P_SLR_Y_CV_SLR_Y_CV_NVAR P_SLR_Y_CV_SLR_Y_CV_NVAR29105,1732074 -#define P_SLR_Y_CV_INTTERM_INIT P_SLR_Y_CV_INTTERM_INIT29106,1732144 -#define P_SLR_Y_CV_INTTERM_LESS P_SLR_Y_CV_INTTERM_LESS29107,1732212 -#define P_SLR_Y_CV_INTTERM_GREATER P_SLR_Y_CV_INTTERM_GREATER29108,1732280 -#define P_SLR_Y_CV_NOINTTERM P_SLR_Y_CV_NOINTTERM29109,1732354 -#define P_SLR_Y_CV_D0EQUALS0L P_SLR_Y_CV_D0EQUALS0L29110,1732416 -#define P_SLR_Y_CV_NVAR_END P_SLR_Y_CV_NVAR_END29111,1732480 -#define P_SLR_Y_CV_SLR_Y_CV_UNK P_SLR_Y_CV_SLR_Y_CV_UNK29112,1732540 -#define CALL_BFUNC_XX_INSTINIT CALL_BFUNC_XX_INSTINIT29113,1732608 -#define CALL_BFUNC_XX_CALL_BFUNC_XX_NVAR CALL_BFUNC_XX_CALL_BFUNC_XX_NVAR29114,1732674 -#define CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_INT CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_INT29115,1732760 -#define CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_NOINT CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_NOINT29116,1732856 -#define CALL_BFUNC_XX_CALL_BFUNC_XX_UNK CALL_BFUNC_XX_CALL_BFUNC_XX_UNK29117,1732956 -#define CALL_BFUNC_YX_INSTINIT CALL_BFUNC_YX_INSTINIT29118,1733040 -#define CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_INT CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_INT29119,1733106 -#define CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_NOINT CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_NOINT29120,1733202 -#define CALL_BFUNC_YX_CALL_BFUNC_YX_UNK CALL_BFUNC_YX_CALL_BFUNC_YX_UNK29121,1733302 -#define CALL_BFUNC_XY_INSTINIT CALL_BFUNC_XY_INSTINIT29122,1733386 -#define CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_INT CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_INT29123,1733452 -#define CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_NOINT CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_NOINT29124,1733548 -#define CALL_BFUNC_XY_CALL_BFUNC_XY_UNK CALL_BFUNC_XY_CALL_BFUNC_XY_UNK29125,1733648 -#define CALL_BFUNC_YY_INSTINIT CALL_BFUNC_YY_INSTINIT29126,1733732 -#define CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_INT CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_INT29127,1733798 -#define CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_NOINT CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_NOINT29128,1733894 -#define CALL_BFUNC_YY_NOINTTERM_NOFAILCODE CALL_BFUNC_YY_NOINTTERM_NOFAILCODE29129,1733994 -#define CALL_BFUNC_YY_NOINTTERM_NOD0 CALL_BFUNC_YY_NOINTTERM_NOD029130,1734084 -#define CALL_BFUNC_YY_NOINTTERM_END CALL_BFUNC_YY_NOINTTERM_END29131,1734162 -#define CALL_BFUNC_YY_CALL_BFUNC_YY_UNK CALL_BFUNC_YY_CALL_BFUNC_YY_UNK29132,1734238 -#define P_EQUAL_INSTINIT P_EQUAL_INSTINIT29133,1734322 -#define P_EQUAL_END P_EQUAL_END29134,1734376 -#define P_ARG_VV_INSTINIT P_ARG_VV_INSTINIT29135,1734420 -#define P_ARG_VV_LOW_LEVEL_TRACER P_ARG_VV_LOW_LEVEL_TRACER29136,1734476 -#define P_ARG_VV_TEST_D0 P_ARG_VV_TEST_D029137,1734548 -#define P_ARG_VV_ARG_ARG1_NVAR P_ARG_VV_ARG_ARG1_NVAR29138,1734602 -#define P_ARG_VV_TEST_D1 P_ARG_VV_TEST_D129139,1734668 -#define P_ARG_VV_ARG_ARG2_NVAR P_ARG_VV_ARG_ARG2_NVAR29140,1734722 -#define P_ARG_VV_ARG_ARG2_UNK P_ARG_VV_ARG_ARG2_UNK29141,1734788 -#define P_ARG_VV_ARG_ARG1_UNK P_ARG_VV_ARG_ARG1_UNK29142,1734852 -#define P_ARG_CV_INSTINIT P_ARG_CV_INSTINIT29143,1734916 -#define P_ARG_CV_LOW_LEVEL_TRACER P_ARG_CV_LOW_LEVEL_TRACER29144,1734972 -#define P_ARG_CV_TEST_D1 P_ARG_CV_TEST_D129145,1735044 -#define P_ARG_CV_ARG_ARG2_VC_NVAR P_ARG_CV_ARG_ARG2_VC_NVAR29146,1735098 -#define P_ARG_CV_ARG_ARG2_VC_UNK P_ARG_CV_ARG_ARG2_VC_UNK29147,1735170 -#define P_ARG_Y_VV_INSTINIT P_ARG_Y_VV_INSTINIT29148,1735240 -#define P_ARG_Y_VV_LOW_LEVEL_TRACER P_ARG_Y_VV_LOW_LEVEL_TRACER29149,1735300 -#define P_ARG_Y_VV_TEST_D0 P_ARG_Y_VV_TEST_D029150,1735376 -#define P_ARG_Y_VV_ARG_Y_ARG1_NVAR P_ARG_Y_VV_ARG_Y_ARG1_NVAR29151,1735434 -#define P_ARG_Y_VV_TEST_D1 P_ARG_Y_VV_TEST_D129152,1735508 -#define P_ARG_Y_VV_ARG_Y_ARG2_NVAR P_ARG_Y_VV_ARG_Y_ARG2_NVAR29153,1735566 -#define P_ARG_Y_VV_ARG_Y_ARG2_UNK P_ARG_Y_VV_ARG_Y_ARG2_UNK29154,1735640 -#define P_ARG_Y_VV_ARG_Y_ARG1_UNK P_ARG_Y_VV_ARG_Y_ARG1_UNK29155,1735712 -#define P_ARG_Y_CV_INSTINITP_ARG_Y_CV_INSTINIT29156,1735784 -#define P_ARG_Y_CV_LOW_LEVEL_TRACER P_ARG_Y_CV_LOW_LEVEL_TRACER29157,1735843 -#define P_ARG_Y_CV_TEST_D1 P_ARG_Y_CV_TEST_D129158,1735919 -#define P_ARG_Y_CV_D1APPL_INIT P_ARG_Y_CV_D1APPL_INIT29159,1735977 -#define P_ARG_Y_CV_D1APPL_END P_ARG_Y_CV_D1APPL_END29160,1736043 -#define P_ARG_Y_CV_D1PAIR_INIT P_ARG_Y_CV_D1PAIR_INIT29161,1736107 -#define P_ARG_Y_CV_D1PAIR_LESS0 P_ARG_Y_CV_D1PAIR_LESS029162,1736173 -#define P_ARG_Y_CV_D1PAIR_END P_ARG_Y_CV_D1PAIR_END29163,1736241 -#define P_ARG_Y_CV_ARG_Y_ARG2_VC_UNK P_ARG_Y_CV_ARG_Y_ARG2_VC_UNK29164,1736305 -#define P_FUNC2S_VV_INSTINITP_FUNC2S_VV_INSTINIT29165,1736383 -#define P_FUNC2S_VV_LOW_LEVEL_TRACER P_FUNC2S_VV_LOW_LEVEL_TRACER29166,1736444 -#define P_FUNC2S_TEST_D0 P_FUNC2S_TEST_D029167,1736522 -#define P_FUNC2S_VV_TEST_D1 P_FUNC2S_VV_TEST_D129168,1736576 -#define P_FUNC2S_VV_D1INT P_FUNC2S_VV_D1INT29169,1736636 -#define P_FUNC2S_VV_D1NOTINT P_FUNC2S_VV_D1NOTINT29170,1736692 -#define P_FUNC2S_VV_D1BIGINT P_FUNC2S_VV_D1BIGINT29171,1736754 -#define P_FUNC2S_VV_D1NOTBIGINT P_FUNC2S_VV_D1NOTBIGINT29172,1736816 -#define P_FUNC2S_VV_D1NOTINT_END P_FUNC2S_VV_D1NOTINT_END29173,1736884 -#define P_FUNC2S_VV_D0NOTATOMIC P_FUNC2S_VV_D0NOTATOMIC29174,1736954 -#define P_FUNC2S_VV_FIRSTIFOK P_FUNC2S_VV_FIRSTIFOK29175,1737022 -#define P_FUNC2S_VV_SECONDIFOK_D0NOTATOM P_FUNC2S_VV_SECONDIFOK_D0NOTATOM29176,1737086 -#define P_FUNC2S_VV_SECONDIFOK_D0ATOM P_FUNC2S_VV_SECONDIFOK_D0ATOM29177,1737172 -#define P_FUNC2S_VV_SECONDIFOK_POST_D0ATOM P_FUNC2S_VV_SECONDIFOK_POST_D0ATOM29178,1737252 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_INIT P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_INIT29179,1737342 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_IFOK P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_IFOK29180,1737438 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_NOIF P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_NOIF29181,1737534 -#define P_FUNC2S_VV_SECONDIFOK_INSIDEWHILE P_FUNC2S_VV_SECONDIFOK_INSIDEWHILE29182,1737630 -#define P_FUNC2S_VV_SECONDIFOK_END P_FUNC2S_VV_SECONDIFOK_END29183,1737720 -#define P_FUNC2S_VV_THIRDIFOK P_FUNC2S_VV_THIRDIFOK29184,1737794 -#define P_FUNC2S_VV_ELSE P_FUNC2S_VV_ELSE29185,1737858 -#define P_FUNC2S_VV_FUNC2S_UNK2 P_FUNC2S_VV_FUNC2S_UNK229186,1737912 -#define P_FUNC2S_VV_FUNC2S_UNK P_FUNC2S_VV_FUNC2S_UNK29187,1737980 -#define P_FUNC2S_CV_INSTINITP_FUNC2S_CV_INSTINIT29188,1738046 -#define P_FUNC2S_CV_LOW_LEVEL_TRACER P_FUNC2S_CV_LOW_LEVEL_TRACER29189,1738107 -#define P_FUNC2S_CV_TEST_D1 P_FUNC2S_CV_TEST_D129190,1738185 -#define P_FUNC2S_CV_D1INT P_FUNC2S_CV_D1INT29191,1738245 -#define P_FUNC2S_CV_D1NOTINT P_FUNC2S_CV_D1NOTINT29192,1738301 -#define P_FUNC2S_CV_D1NOINT_D1BIGINT P_FUNC2S_CV_D1NOINT_D1BIGINT29193,1738363 -#define P_FUNC2S_CV_D1NOTBIGINT P_FUNC2S_CV_D1NOTBIGINT29194,1738441 -#define P_FUNC2S_CV_POST_IF P_FUNC2S_CV_POST_IF29195,1738509 -#define P_FUNC2S_CV_FIRSTIFOK P_FUNC2S_CV_FIRSTIFOK29196,1738569 -#define P_FUNC2S_CV_D1GREATER_D0NOTATOM P_FUNC2S_CV_D1GREATER_D0NOTATOM29197,1738633 -#define P_FUNC2S_CV_D1GREATER_D0ATOM P_FUNC2S_CV_D1GREATER_D0ATOM29198,1738717 -#define P_FUNC2S_CV_D1GREATER_POST_IF P_FUNC2S_CV_D1GREATER_POST_IF29199,1738795 -#define P_FUNC2S_CV_D1GREATER_IFOK_INIT P_FUNC2S_CV_D1GREATER_IFOK_INIT29200,1738875 -#define P_FUNC2S_CV_D1GREATER_IFOK_IFOK P_FUNC2S_CV_D1GREATER_IFOK_IFOK29201,1738959 -#define P_FUNC2S_CV_D1GREATER_IFOK_NOIF P_FUNC2S_CV_D1GREATER_IFOK_NOIF29202,1739043 -#define P_FUNC2S_CV_D1GREATER_INSIDEWHILE P_FUNC2S_CV_D1GREATER_INSIDEWHILE29203,1739127 -#define P_FUNC2S_CV_D1GREATER_END P_FUNC2S_CV_D1GREATER_END29204,1739215 -#define P_FUNC2S_CV_D1ISZERO P_FUNC2S_CV_D1ISZERO29205,1739287 -#define P_FUNC2S_CV_ELSE P_FUNC2S_CV_ELSE29206,1739349 -#define P_FUNC2S_CV_END P_FUNC2S_CV_END29207,1739403 -#define P_FUNC2S_VC_INSTINITP_FUNC2S_VC_INSTINIT29208,1739455 -#define P_FUNC2S_VC_LOW_LEVEL_TRACER P_FUNC2S_VC_LOW_LEVEL_TRACER29209,1739516 -#define P_FUNC2S_VC_TEST_D0 P_FUNC2S_VC_TEST_D029210,1739594 -#define P_FUNC2S_VC_FUNC2S_NVAR_VC P_FUNC2S_VC_FUNC2S_NVAR_VC29211,1739654 -#define P_FUNC2S_VC_D0NOATOMIC P_FUNC2S_VC_D0NOATOMIC29212,1739728 -#define P_FUNC2S_VC_EQUALS P_FUNC2S_VC_EQUALS29213,1739794 -#define P_FUNC2S_VC_D1ISZERO P_FUNC2S_VC_D1ISZERO29214,1739852 -#define P_FUNC2S_VC_D0NOATOM P_FUNC2S_VC_D0NOATOM29215,1739914 -#define P_FUNC2S_VC_D0ATOM P_FUNC2S_VC_D0ATOM29216,1739976 -#define P_FUNC2S_VC_POST_ELSE P_FUNC2S_VC_POST_ELSE29217,1740034 -#define P_FUNC2S_VC_IFOK_INIT P_FUNC2S_VC_IFOK_INIT29218,1740098 -#define P_FUNC2S_VC_IFOK_IFOK P_FUNC2S_VC_IFOK_IFOK29219,1740162 -#define P_FUNC2S_VC_IFOK_NOIF P_FUNC2S_VC_IFOK_NOIF29220,1740226 -#define P_FUNC2S_VC_INSIDEWHILE P_FUNC2S_VC_INSIDEWHILE29221,1740290 -#define P_FUNC2S_VC_END1 P_FUNC2S_VC_END129222,1740358 -#define P_FUNC2S_VC_END2 P_FUNC2S_VC_END229223,1740412 -#define P_FUNC2S_Y_VV_INSTINITP_FUNC2S_Y_VV_INSTINIT29224,1740466 -#define P_FUNC2S_Y_VV_LOW_LEVEL_TRACER P_FUNC2S_Y_VV_LOW_LEVEL_TRACER29225,1740531 -#define P_FUNC2S_Y_VV_TEST_D0 P_FUNC2S_Y_VV_TEST_D029226,1740613 -#define P_FUNC2S_Y_VV_TEST_D1 P_FUNC2S_Y_VV_TEST_D129227,1740677 -#define P_FUNC2S_Y_VV_D1INT P_FUNC2S_Y_VV_D1INT29228,1740741 -#define P_FUNC2S_Y_VV_D1NOTINT P_FUNC2S_Y_VV_D1NOTINT29229,1740801 -#define P_FUNC2S_Y_VV_D1BIGINT P_FUNC2S_Y_VV_D1BIGINT29230,1740867 -#define P_FUNC2S_Y_VV_D1NOTBIGINT P_FUNC2S_Y_VV_D1NOTBIGINT29231,1740933 -#define P_FUNC2S_Y_VV_POST_IF P_FUNC2S_Y_VV_POST_IF29232,1741005 -#define P_FUNC2S_Y_VV_D0NOATOMIC P_FUNC2S_Y_VV_D0NOATOMIC29233,1741069 -#define P_FUNC2S_Y_VV_EQUALS P_FUNC2S_Y_VV_EQUALS29234,1741139 -#define P_FUNC2S_Y_VV_D1GREATER_D0NOATOM P_FUNC2S_Y_VV_D1GREATER_D0NOATOM29235,1741201 -#define P_FUNC2S_Y_VV_D1GREATER_D0ATOM P_FUNC2S_Y_VV_D1GREATER_D0ATOM29236,1741287 -#define P_FUNC2S_Y_VV_D1GREATER_POST_ELSE P_FUNC2S_Y_VV_D1GREATER_POST_ELSE29237,1741369 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_INIT P_FUNC2S_Y_VV_D1GREATER_IFOK_INIT29238,1741457 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_IFOK P_FUNC2S_Y_VV_D1GREATER_IFOK_IFOK29239,1741545 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_NOIF P_FUNC2S_Y_VV_D1GREATER_IFOK_NOIF29240,1741633 -#define P_FUNC2S_Y_VV_D1GREATER_INSIDEWHILE P_FUNC2S_Y_VV_D1GREATER_INSIDEWHILE29241,1741721 -#define P_FUNC2S_Y_VV_D1GREATER_END P_FUNC2S_Y_VV_D1GREATER_END29242,1741813 -#define P_FUNC2S_Y_VV_D1ISZERO P_FUNC2S_Y_VV_D1ISZERO29243,1741889 -#define P_FUNC2S_Y_VV_ELSE P_FUNC2S_Y_VV_ELSE29244,1741955 -#define P_FUNC2S_Y_VV_END1 P_FUNC2S_Y_VV_END129245,1742013 -#define P_FUNC2S_Y_VV_END2 P_FUNC2S_Y_VV_END229246,1742071 -#define P_FUNC2S_Y_CV_INSTINITP_FUNC2S_Y_CV_INSTINIT29247,1742129 -#define P_FUNC2S_Y_CV_LOW_LEVEL_TRACER P_FUNC2S_Y_CV_LOW_LEVEL_TRACER29248,1742194 -#define P_FUNC2S_Y_CV_TEST_D1 P_FUNC2S_Y_CV_TEST_D129249,1742276 -#define P_FUNC2S_Y_CV_D1INT P_FUNC2S_Y_CV_D1INT29250,1742340 -#define P_FUNC2S_Y_CV_D1NOTINT P_FUNC2S_Y_CV_D1NOTINT29251,1742400 -#define P_FUNC2S_Y_CV_D1BIGINT P_FUNC2S_Y_CV_D1BIGINT29252,1742466 -#define P_FUNC2S_Y_CV_D1NOTBIGINT P_FUNC2S_Y_CV_D1NOTBIGINT29253,1742532 -#define P_FUNC2S_Y_CV_POST_IF P_FUNC2S_Y_CV_POST_IF29254,1742604 -#define P_FUNC2S_Y_CV_EQUALS P_FUNC2S_Y_CV_EQUALS29255,1742668 -#define P_FUNC2S_Y_CV_D1GREATER_D0NOATOM P_FUNC2S_Y_CV_D1GREATER_D0NOATOM29256,1742730 -#define P_FUNC2S_Y_CV_D1GREATER_D0ATOM P_FUNC2S_Y_CV_D1GREATER_D0ATOM29257,1742816 -#define P_FUNC2S_Y_CV_D1GREATER_POST_ELSE P_FUNC2S_Y_CV_D1GREATER_POST_ELSE29258,1742898 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_INIT P_FUNC2S_Y_CV_D1GREATER_IFOK_INIT29259,1742986 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_IFOK P_FUNC2S_Y_CV_D1GREATER_IFOK_IFOK29260,1743074 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_NOIF P_FUNC2S_Y_CV_D1GREATER_IFOK_NOIF29261,1743162 -#define P_FUNC2S_Y_CV_D1GREATER_INSIDEWHILE P_FUNC2S_Y_CV_D1GREATER_INSIDEWHILE29262,1743250 -#define P_FUNC2S_Y_CV_D1GREATER_END P_FUNC2S_Y_CV_D1GREATER_END29263,1743342 -#define P_FUNC2S_Y_CV_D1ISZERO P_FUNC2S_Y_CV_D1ISZERO29264,1743418 -#define P_FUNC2S_Y_CV_ELSE P_FUNC2S_Y_CV_ELSE29265,1743484 -#define P_FUNC2S_Y_CV_END P_FUNC2S_Y_CV_END29266,1743542 -#define P_FUNC2S_Y_VC_INSTINITP_FUNC2S_Y_VC_INSTINIT29267,1743598 -#define P_FUNC2S_Y_VC_LOW_LEVEL_TRACER P_FUNC2S_Y_VC_LOW_LEVEL_TRACER29268,1743663 -#define P_FUNC2S_Y_VC_TEST_D0 P_FUNC2S_Y_VC_TEST_D029269,1743745 -#define P_FUNC2S_Y_VC_FUNC2S_Y_NVAR_VC P_FUNC2S_Y_VC_FUNC2S_Y_NVAR_VC29270,1743809 -#define P_FUNC2S_Y_VC_D0NOATOMIC P_FUNC2S_Y_VC_D0NOATOMIC29271,1743891 -#define P_FUNC2S_Y_VC_EQUALS P_FUNC2S_Y_VC_EQUALS29272,1743961 -#define P_FUNC2S_Y_VC_D1ISZERO P_FUNC2S_Y_VC_D1ISZERO29273,1744023 -#define P_FUNC2S_Y_VC_D0NOATOM1 P_FUNC2S_Y_VC_D0NOATOM129274,1744089 -#define P_FUNC2S_Y_VC_D0NOATOM2 P_FUNC2S_Y_VC_D0NOATOM229275,1744157 -#define P_FUNC2S_Y_VC_D0ATOM P_FUNC2S_Y_VC_D0ATOM29276,1744225 -#define P_FUNC2S_Y_VC_POST_ELSE P_FUNC2S_Y_VC_POST_ELSE29277,1744287 -#define P_FUNC2S_Y_VC_IFOK_INIT P_FUNC2S_Y_VC_IFOK_INIT29278,1744355 -#define P_FUNC2S_Y_VC_IFOK_IFOK P_FUNC2S_Y_VC_IFOK_IFOK29279,1744423 -#define P_FUNC2S_Y_VC_IFOK_NOIF P_FUNC2S_Y_VC_IFOK_NOIF29280,1744491 -#define P_FUNC2S_Y_VC_INSIDEWHILE P_FUNC2S_Y_VC_INSIDEWHILE29281,1744559 -#define P_FUNC2S_Y_VC_END1 P_FUNC2S_Y_VC_END129282,1744631 -#define P_FUNC2S_Y_VC_END2 P_FUNC2S_Y_VC_END229283,1744689 -#define P_FUNC2F_XX_INSTINITP_FUNC2F_XX_INSTINIT29284,1744747 -#define P_FUNC2F_XX_LOW_LEVEL_TRACER P_FUNC2F_XX_LOW_LEVEL_TRACER29285,1744808 -#define P_FUNC2F_XX_TEST_D0 P_FUNC2F_XX_TEST_D029286,1744886 -#define P_FUNC2F_XX_D0APPL P_FUNC2F_XX_D0APPL29287,1744946 -#define P_FUNC2F_XX_D0APPL_D1EXTFUNC P_FUNC2F_XX_D0APPL_D1EXTFUNC29288,1745004 -#define P_FUNC2F_XX_D0APPL_END P_FUNC2F_XX_D0APPL_END29289,1745082 -#define P_FUNC2F_XX_D0PAIR P_FUNC2F_XX_D0PAIR29290,1745148 -#define P_FUNC2F_XX_D0NOCOMPOUND P_FUNC2F_XX_D0NOCOMPOUND29291,1745206 -#define P_FUNC2F_XX_END P_FUNC2F_XX_END29292,1745276 -#define P_FUNC2F_XY_INSTINITP_FUNC2F_XY_INSTINIT29293,1745328 -#define P_FUNC2F_XY_LOW_LEVEL_TRACER P_FUNC2F_XY_LOW_LEVEL_TRACER29294,1745389 -#define P_FUNC2F_XY_TEST_D0 P_FUNC2F_XY_TEST_D029295,1745467 -#define P_FUNC2F_XY_D0APPL P_FUNC2F_XY_D0APPL29296,1745527 -#define P_FUNC2F_XY_D0APPL_D1EXTFUNC P_FUNC2F_XY_D0APPL_D1EXTFUNC29297,1745585 -#define P_FUNC2F_XY_D0APPL_END P_FUNC2F_XY_D0APPL_END29298,1745663 -#define P_FUNC2F_XY_D0PAIR P_FUNC2F_XY_D0PAIR29299,1745729 -#define P_FUNC2F_XY_D0NOCOMPOUND P_FUNC2F_XY_D0NOCOMPOUND29300,1745787 -#define P_FUNC2F_XY_END P_FUNC2F_XY_END29301,1745857 -#define P_FUNC2F_YX_INSTINITP_FUNC2F_YX_INSTINIT29302,1745909 -#define P_FUNC2F_YX_LOW_LEVEL_TRACER P_FUNC2F_YX_LOW_LEVEL_TRACER29303,1745970 -#define P_FUNC2F_YX_TEST_D0 P_FUNC2F_YX_TEST_D029304,1746048 -#define P_FUNC2F_YX_D0APPL P_FUNC2F_YX_D0APPL29305,1746108 -#define P_FUNC2F_YX_D0APPL_D1EXTFUNC P_FUNC2F_YX_D0APPL_D1EXTFUNC29306,1746166 -#define P_FUNC2F_YX_D0APPL_END P_FUNC2F_YX_D0APPL_END29307,1746244 -#define P_FUNC2F_YX_D0PAIR P_FUNC2F_YX_D0PAIR29308,1746310 -#define P_FUNC2F_YX_D0NOCOMPOUND P_FUNC2F_YX_D0NOCOMPOUND29309,1746368 -#define P_FUNC2F_YX_END P_FUNC2F_YX_END29310,1746438 -#define P_FUNC2F_YY_INSTINITP_FUNC2F_YY_INSTINIT29311,1746490 -#define P_FUNC2F_YY_LOW_LEVEL_TRACER P_FUNC2F_YY_LOW_LEVEL_TRACER29312,1746551 -#define P_FUNC2F_YY_TEST_D0 P_FUNC2F_YY_TEST_D029313,1746629 -#define P_FUNC2F_YY_D0APPL P_FUNC2F_YY_D0APPL29314,1746689 -#define P_FUNC2F_YY_D0APPL_D1EXTFUNC P_FUNC2F_YY_D0APPL_D1EXTFUNC29315,1746747 -#define P_FUNC2F_YY_D0APPL_END P_FUNC2F_YY_D0APPL_END29316,1746825 -#define P_FUNC2F_YY_D0PAIR P_FUNC2F_YY_D0PAIR29317,1746891 -#define P_FUNC2F_YY_D0NOCOMPOUND P_FUNC2F_YY_D0NOCOMPOUND29318,1746949 -#define P_FUNC2F_YY_END P_FUNC2F_YY_END29319,1747019 -#define P_ATOM_X_INSTINIT P_ATOM_X_INSTINIT29322,1747117 -#define P_ATOM_X_ATOM P_ATOM_X_ATOM29323,1747166 -#define P_ATOM_X_NOATOM P_ATOM_X_NOATOM29324,1747209 -#define P_ATOM_Y_INSTINIT P_ATOM_Y_INSTINIT29325,1747257 -#define P_ATOM_Y_IFOK P_ATOM_Y_IFOK29326,1747309 -#define P_ATOM_Y_NOIF P_ATOM_Y_NOIF29327,1747353 -#define P_ATOM_Y_END P_ATOM_Y_END29328,1747397 -#define P_ATOMIC_X_INSTINIT P_ATOMIC_X_INSTINIT29329,1747439 -#define P_ATOMIC_X_NONVAR P_ATOMIC_X_NONVAR29330,1747495 -#define P_ATOMIC_X_VAR P_ATOMIC_X_VAR29331,1747547 -#define P_ATOMIC_X_END P_ATOMIC_X_END29332,1747594 -#define P_ATOMIC_Y_INSTINIT P_ATOMIC_Y_INSTINIT29333,1747641 -#define P_ATOMIC_Y_NONVAR P_ATOMIC_Y_NONVAR29334,1747698 -#define P_ATOMIC_Y_VAR P_ATOMIC_Y_VAR29335,1747751 -#define P_ATOMIC_Y_END P_ATOMIC_Y_END29336,1747798 -#define P_INTEGER_X_INSTINIT P_INTEGER_X_INSTINIT29337,1747845 -#define P_INTEGER_X_INTEGER_X_NVAR_OK P_INTEGER_X_INTEGER_X_NVAR_OK29338,1747904 -#define P_INTEGER_X_INTEGER_X_NVAR_NOOK P_INTEGER_X_INTEGER_X_NVAR_NOOK29339,1747981 -#define P_INTEGER_X_INTEGER_X_UNK P_INTEGER_X_INTEGER_X_UNK29340,1748062 -#define P_INTEGER_Y_INSTINIT P_INTEGER_Y_INSTINIT29341,1748131 -#define P_INTEGER_Y_INTEGER_Y_NVAR_OK P_INTEGER_Y_INTEGER_Y_NVAR_OK29342,1748190 -#define P_INTEGER_Y_INTEGER_Y_NVAR_NOOK P_INTEGER_Y_INTEGER_Y_NVAR_NOOK29343,1748267 -#define P_INTEGER_Y_INTEGER_Y_UNK P_INTEGER_Y_INTEGER_Y_UNK29344,1748349 -#define P_NONVAR_X_INSTINIT P_NONVAR_X_INSTINIT29345,1748419 -#define P_NONVAR_X_NONVAR P_NONVAR_X_NONVAR29346,1748477 -#define P_NONVAR_X_NONONVAR P_NONVAR_X_NONONVAR29347,1748531 -#define P_NONVAR_Y_INSTINIT P_NONVAR_Y_INSTINIT29348,1748589 -#define P_NONVAR_Y_NONVAR P_NONVAR_Y_NONVAR29349,1748647 -#define P_NONVAR_Y_NONONVAR P_NONVAR_Y_NONONVAR29350,1748701 -#define P_NUMBER_X_INSTINIT P_NUMBER_X_INSTINIT29351,1748759 -#define P_NUMBER_X_INT P_NUMBER_X_INT29352,1748817 -#define P_NUMBER_X_FUNCTORINT P_NUMBER_X_FUNCTORINT29353,1748865 -#define P_NUMBER_X_FUNCTORDEFAULT P_NUMBER_X_FUNCTORDEFAULT29354,1748927 -#define P_NUMBER_X_POST_IF P_NUMBER_X_POST_IF29355,1748997 -#define P_NUMBER_X_NUMBER_X_UNK P_NUMBER_X_NUMBER_X_UNK29356,1749053 -#define P_NUMBER_Y_INSTINIT P_NUMBER_Y_INSTINIT29357,1749119 -#define P_NUMBER_Y_INT P_NUMBER_Y_INT29358,1749177 -#define P_NUMBER_Y_FUNCTORINT P_NUMBER_Y_FUNCTORINT29359,1749225 -#define P_NUMBER_Y_FUNCTORDEFAULT P_NUMBER_Y_FUNCTORDEFAULT29360,1749287 -#define P_NUMBER_Y_POST_IF P_NUMBER_Y_POST_IF29361,1749357 -#define P_NUMBER_Y_NUMBER_Y_UNK P_NUMBER_Y_NUMBER_Y_UNK29362,1749413 -#define P_VAR_X_INSTINIT P_VAR_X_INSTINIT29363,1749479 -#define P_VAR_X_NONVAR P_VAR_X_NONVAR29364,1749531 -#define P_VAR_X_VAR P_VAR_X_VAR29365,1749579 -#define P_VAR_Y_INSTINIT P_VAR_Y_INSTINIT29366,1749621 -#define P_VAR_Y_NONVAR P_VAR_Y_NONVAR29367,1749673 -#define P_VAR_Y_VAR P_VAR_Y_VAR29368,1749721 -#define P_DB_REF_X_INSTINIT P_DB_REF_X_INSTINIT29369,1749763 -#define P_DB_REF_X_DBREF P_DB_REF_X_DBREF29370,1749821 -#define P_DB_REF_X_NODBREF P_DB_REF_X_NODBREF29371,1749873 -#define P_DB_REF_X_DBREF_X_UNK P_DB_REF_X_DBREF_X_UNK29372,1749929 -#define P_DB_REF_Y_INSTINIT P_DB_REF_Y_INSTINIT29373,1749993 -#define P_DB_REF_Y_DBREF P_DB_REF_Y_DBREF29374,1750051 -#define P_DB_REF_Y_NODBREF P_DB_REF_Y_NODBREF29375,1750103 -#define P_DB_REF_Y_DBREF_Y_UNK P_DB_REF_Y_DBREF_Y_UNK29376,1750159 -#define P_PRIMITIVE_X_INSTINIT P_PRIMITIVE_X_INSTINIT29377,1750223 -#define P_PRIMITIVE_X_PRIMITIVE P_PRIMITIVE_X_PRIMITIVE29378,1750287 -#define P_PRIMITIVE_X_NOPRIMITIVE P_PRIMITIVE_X_NOPRIMITIVE29379,1750353 -#define P_PRIMITIVE_X_PRIMI_X_UNK P_PRIMITIVE_X_PRIMI_X_UNK29380,1750423 -#define P_PRIMITIVE_Y_INSTINIT P_PRIMITIVE_Y_INSTINIT29381,1750493 -#define P_PRIMITIVE_Y_PRIMITIVE P_PRIMITIVE_Y_PRIMITIVE29382,1750557 -#define P_PRIMITIVE_Y_NOPRIMITIVE P_PRIMITIVE_Y_NOPRIMITIVE29383,1750623 -#define P_PRIMITIVE_Y_PRIMI_Y_UNK P_PRIMITIVE_Y_PRIMI_Y_UNK29384,1750693 -#define P_COMPOUND_X_INSTINIT P_COMPOUND_X_INSTINIT29385,1750763 -#define P_COMPOUND_X_PAIR P_COMPOUND_X_PAIR29386,1750825 -#define P_COMPOUND_X_APPL_IFOK P_COMPOUND_X_APPL_IFOK29387,1750879 -#define P_COMPOUND_X_APPL P_COMPOUND_X_APPL29388,1750943 -#define P_COMPOUND_X_NOAPPL P_COMPOUND_X_NOAPPL29389,1750997 -#define P_COMPOUND_X_COMPOUND_X_UNK P_COMPOUND_X_COMPOUND_X_UNK29390,1751055 -#define P_COMPOUND_Y_INSTINIT P_COMPOUND_Y_INSTINIT29391,1751129 -#define P_COMPOUND_Y_PAIR P_COMPOUND_Y_PAIR29392,1751191 -#define P_COMPOUND_Y_APPL_IFOK P_COMPOUND_Y_APPL_IFOK29393,1751245 -#define P_COMPOUND_Y_APPL P_COMPOUND_Y_APPL29394,1751309 -#define P_COMPOUND_Y_NOAPPL P_COMPOUND_Y_NOAPPL29395,1751363 -#define P_COMPOUND_Y_COMPOUND_Y_UNK P_COMPOUND_Y_COMPOUND_Y_UNK29396,1751421 -#define P_FLOAT_X_INSTINIT P_FLOAT_X_INSTINIT29397,1751495 -#define P_FLOAT_X_FLOAT P_FLOAT_X_FLOAT29398,1751551 -#define P_FLOAT_X_POST_IF P_FLOAT_X_POST_IF29399,1751601 -#define P_FLOAT_X_FLOAT_X_UNK P_FLOAT_X_FLOAT_X_UNK29400,1751655 -#define P_FLOAT_Y_INSTINIT P_FLOAT_Y_INSTINIT29401,1751717 -#define P_FLOAT_Y_FLOAT P_FLOAT_Y_FLOAT29402,1751773 -#define P_FLOAT_Y_POST_IF P_FLOAT_Y_POST_IF29403,1751823 -#define P_FLOAT_Y_FLOAT_Y_UNK P_FLOAT_Y_FLOAT_Y_UNK29404,1751877 -#define P_PLUS_VV_INSTINIT P_PLUS_VV_INSTINIT29405,1751939 -#define P_PLUS_VV_PLUS_VV_NVAR P_PLUS_VV_PLUS_VV_NVAR29406,1751995 -#define P_PLUS_VV_PLUS_VV_NVAR_NVAR_INT P_PLUS_VV_PLUS_VV_NVAR_NVAR_INT29407,1752059 -#define P_PLUS_VV_PLUS_VV_NVAR_NVAR_NOINT P_PLUS_VV_PLUS_VV_NVAR_NVAR_NOINT29408,1752141 -#define P_PLUS_VV_PLUS_VV_UNK P_PLUS_VV_PLUS_VV_UNK29409,1752227 -#define P_PLUS_VV_PLUS_VV_NVAR_UNK P_PLUS_VV_PLUS_VV_NVAR_UNK29410,1752289 -#define P_PLUS_VC_INSTINIT P_PLUS_VC_INSTINIT29411,1752361 -#define P_PLUS_VC_PLUS_VC_NVAR_INT P_PLUS_VC_PLUS_VC_NVAR_INT29412,1752418 -#define P_PLUS_VC_PLUS_VC_NVAR_NOINT P_PLUS_VC_PLUS_VC_NVAR_NOINT29413,1752491 -#define P_PLUS_VC_PLUS_VC_UNK P_PLUS_VC_PLUS_VC_UNK29414,1752568 -#define P_PLUS_Y_VV_INSTINIT P_PLUS_Y_VV_INSTINIT29415,1752631 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR P_PLUS_Y_VV_PLUS_Y_VV_NVAR29416,1752692 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_INT P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_INT29417,1752765 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_NOINT P_PLUS_Y_VV_PLUS_Y_VV_NVAR_NVAR_NOINT29418,1752856 -#define P_PLUS_Y_VV_PLUS_Y_VV_UNK P_PLUS_Y_VV_PLUS_Y_VV_UNK29419,1752951 -#define P_PLUS_Y_VV_PLUS_Y_VV_NVAR_UNK P_PLUS_Y_VV_PLUS_Y_VV_NVAR_UNK29420,1753022 -#define P_PLUS_Y_VC_INSTINIT P_PLUS_Y_VC_INSTINIT29421,1753103 -#define P_PLUS_Y_VC_PLUS_Y_VC_NVAR_INT P_PLUS_Y_VC_PLUS_Y_VC_NVAR_INT29422,1753164 -#define P_PLUS_Y_VC_PLUS_Y_VC_NVAR_NOINT P_PLUS_Y_VC_PLUS_Y_VC_NVAR_NOINT29423,1753245 -#define P_PLUS_Y_VC_PLUS_Y_VC_UNK P_PLUS_Y_VC_PLUS_Y_VC_UNK29424,1753330 -#define P_MINUS_VV_INSTINIT P_MINUS_VV_INSTINIT29425,1753401 -#define P_MINUS_VV_MINUS_VV_NVAR P_MINUS_VV_MINUS_VV_NVAR29426,1753460 -#define P_MINUS_VV_MINUS_VV_NVAR_NVAR_INT P_MINUS_VV_MINUS_VV_NVAR_NVAR_INT29427,1753529 -#define P_MINUS_VV_MINUS_VV_NVAR_NVAR_NOINT P_MINUS_VV_MINUS_VV_NVAR_NVAR_NOINT29428,1753616 -#define P_MINUS_VV_MINUS_VV_UNK P_MINUS_VV_MINUS_VV_UNK29429,1753707 -#define P_MINUS_VV_MINUS_VV_NVAR_UNK P_MINUS_VV_MINUS_VV_NVAR_UNK29430,1753774 -#define P_MINUS_CV_INSTINIT P_MINUS_CV_INSTINIT29431,1753851 -#define P_MINUS_CV_MINUS_CV_NVAR_INT P_MINUS_CV_MINUS_CV_NVAR_INT29432,1753910 -#define P_MINUS_CV_MINUS_CV_NVAR_NOINT P_MINUS_CV_MINUS_CV_NVAR_NOINT29433,1753987 -#define P_MINUS_CV_MINUS_CV_UNK P_MINUS_CV_MINUS_CV_UNK29434,1754068 -#define P_MINUS_Y_VV_INSTINIT P_MINUS_Y_VV_INSTINIT29435,1754135 -#define P_MINUS_Y_VV_MINUS_Y_VV_NVAR P_MINUS_Y_VV_MINUS_Y_VV_NVAR29436,1754198 -#define P_MINUS_Y_VV_INTTERM P_MINUS_Y_VV_INTTERM29437,1754275 -#define P_MINUS_Y_VV_NOINTTERM P_MINUS_Y_VV_NOINTTERM29438,1754336 -#define P_MINUS_Y_VV_D0EQUALS0L P_MINUS_Y_VV_D0EQUALS0L29439,1754401 -#define P_MINUS_Y_VV_NVAR_END P_MINUS_Y_VV_NVAR_END29440,1754468 -#define P_MINUS_Y_VV_MINUS_Y_VV_UNK P_MINUS_Y_VV_MINUS_Y_VV_UNK29441,1754531 -#define P_MINUS_Y_VV_MINUS_Y_VV_NVAR_UNK P_MINUS_Y_VV_MINUS_Y_VV_NVAR_UNK29442,1754606 -#define P_MINUS_Y_CV_INSTINIT P_MINUS_Y_CV_INSTINIT29443,1754691 -#define P_MINUS_Y_CV_MINUS_Y_CV_NVAR P_MINUS_Y_CV_MINUS_Y_CV_NVAR29444,1754754 -#define P_MINUS_Y_CV_INTTERM P_MINUS_Y_CV_INTTERM29445,1754831 -#define P_MINUS_Y_CV_NOINTTERM P_MINUS_Y_CV_NOINTTERM29446,1754892 -#define P_MINUS_Y_CV_D0EQUALS0L P_MINUS_Y_CV_D0EQUALS0L29447,1754957 -#define P_MINUS_Y_CV_NVAR_END P_MINUS_Y_CV_NVAR_END29448,1755024 -#define P_MINUS_Y_CV_MINUS_Y_CV_UNK P_MINUS_Y_CV_MINUS_Y_CV_UNK29449,1755087 -#define P_TIMES_VV_INSTINIT P_TIMES_VV_INSTINIT29450,1755162 -#define P_TIMES_VV_TIMES_VV_NVAR P_TIMES_VV_TIMES_VV_NVAR29451,1755221 -#define P_TIMES_VV_TIMES_VV_NVAR_NVAR_INT P_TIMES_VV_TIMES_VV_NVAR_NVAR_INT29452,1755290 -#define P_TIMES_VV_TIMES_VV_NVAR_NVAR_NOINT P_TIMES_VV_TIMES_VV_NVAR_NVAR_NOINT29453,1755377 -#define P_TIMES_VV_TIMES_VV_UNK P_TIMES_VV_TIMES_VV_UNK29454,1755468 -#define P_TIMES_VV_TIMES_VV_NVAR_UNK P_TIMES_VV_TIMES_VV_NVAR_UNK29455,1755535 -#define P_TIMES_VC_INSTINIT P_TIMES_VC_INSTINIT29456,1755612 -#define P_TIMES_VC_TIMES_VC_NVAR_INT P_TIMES_VC_TIMES_VC_NVAR_INT29457,1755671 -#define P_TIMES_VC_TIMES_VC_NVAR_NOINT P_TIMES_VC_TIMES_VC_NVAR_NOINT29458,1755748 -#define P_TIMES_VC_TIMES_VC_UNK P_TIMES_VC_TIMES_VC_UNK29459,1755829 -#define P_TIMES_Y_VV_INSTINIT P_TIMES_Y_VV_INSTINIT29460,1755896 -#define P_TIMES_Y_VV_TIMES_Y_VV_NVAR P_TIMES_Y_VV_TIMES_Y_VV_NVAR29461,1755959 -#define P_TIMES_Y_VV_INTTERM P_TIMES_Y_VV_INTTERM29462,1756036 -#define P_TIMES_Y_VV_NOINTTERM P_TIMES_Y_VV_NOINTTERM29463,1756097 -#define P_TIMES_Y_VV_D0EQUALS0L P_TIMES_Y_VV_D0EQUALS0L29464,1756162 -#define P_TIMES_Y_VV_NVAR_END P_TIMES_Y_VV_NVAR_END29465,1756229 -#define P_TIMES_Y_VV_TIMES_Y_VV_UNK P_TIMES_Y_VV_TIMES_Y_VV_UNK29466,1756292 -#define P_TIMES_Y_VV_TIMES_Y_VV_NVAR_UNK P_TIMES_Y_VV_TIMES_Y_VV_NVAR_UNK29467,1756367 -#define P_TIMES_Y_VC_INSTINIT P_TIMES_Y_VC_INSTINIT29468,1756452 -#define P_TIMES_Y_VC_TIMES_Y_VC_NVAR_INT P_TIMES_Y_VC_TIMES_Y_VC_NVAR_INT29469,1756515 -#define P_TIMES_Y_VC_TIMES_Y_VC_NVAR_NOINT P_TIMES_Y_VC_TIMES_Y_VC_NVAR_NOINT29470,1756600 -#define P_TIMES_Y_VC_NVAR_END P_TIMES_Y_VC_NVAR_END29471,1756689 -#define P_TIMES_Y_VC_TIMES_Y_VC_UNK P_TIMES_Y_VC_TIMES_Y_VC_UNK29472,1756752 -#define P_DIV_VV_INSTINIT P_DIV_VV_INSTINIT29473,1756827 -#define P_DIV_VV_DIV_VV_NVAR P_DIV_VV_DIV_VV_NVAR29474,1756882 -#define P_DIV_VV_DIV_VV_NVAR_NVAR_INT P_DIV_VV_DIV_VV_NVAR_NVAR_INT29475,1756943 -#define P_DIV_VV_DIV_VV_NVAR_NVAR_NOINT P_DIV_VV_DIV_VV_NVAR_NVAR_NOINT29476,1757022 -#define P_DIV_VV_DIV_VV_UNK P_DIV_VV_DIV_VV_UNK29477,1757105 -#define P_DIV_VV_DIV_VV_NVAR_UNK P_DIV_VV_DIV_VV_NVAR_UNK29478,1757164 -#define P_DIV_VC_INSTINIT P_DIV_VC_INSTINIT29479,1757233 -#define P_DIV_VC_DIV_VC_NVAR P_DIV_VC_DIV_VC_NVAR29480,1757288 -#define P_DIV_VC_INTTERM P_DIV_VC_INTTERM29481,1757349 -#define P_DIV_VC_NOINTTERM P_DIV_VC_NOINTTERM29482,1757402 -#define P_DIV_VC_D0EQUALS0L P_DIV_VC_D0EQUALS0L29483,1757459 -#define P_DIV_VC_NVAR_END P_DIV_VC_NVAR_END29484,1757518 -#define P_DIV_VC_DIV_VC_UNK P_DIV_VC_DIV_VC_UNK29485,1757573 -#define P_DIV_CV_INSTINIT P_DIV_CV_INSTINIT29486,1757632 -#define P_DIV_CV_DIV_CV_NVAR P_DIV_CV_DIV_CV_NVAR29487,1757687 -#define P_DIV_CV_INTTERM_INIT P_DIV_CV_INTTERM_INIT29488,1757748 -#define P_DIV_CV_INTTERM_DIVEQUALS0 P_DIV_CV_INTTERM_DIVEQUALS029489,1757811 -#define P_DIV_CV_INTTERM_END P_DIV_CV_INTTERM_END29490,1757886 -#define P_DIV_CV_NOINTTERM P_DIV_CV_NOINTTERM29491,1757947 -#define P_DIV_CV_D0EQUALS0L P_DIV_CV_D0EQUALS0L29492,1758004 -#define P_DIV_CV_NVAR_END P_DIV_CV_NVAR_END29493,1758063 -#define P_DIV_CV_DIV_CV_UNK P_DIV_CV_DIV_CV_UNK29494,1758118 -#define P_DIV_Y_VV_INSTINIT P_DIV_Y_VV_INSTINIT29495,1758177 -#define P_DIV_Y_VV_DIV_Y_VV_NVAR P_DIV_Y_VV_DIV_Y_VV_NVAR29496,1758236 -#define P_DIV_Y_VV_INTTERM_INIT P_DIV_Y_VV_INTTERM_INIT29497,1758305 -#define P_DIV_Y_VV_INTTERM_DIVEQUALS0 P_DIV_Y_VV_INTTERM_DIVEQUALS029498,1758372 -#define P_DIV_Y_VV_INTTERM_END P_DIV_Y_VV_INTTERM_END29499,1758451 -#define P_DIV_Y_VV_NOINTTERM P_DIV_Y_VV_NOINTTERM29500,1758516 -#define P_DIV_Y_VV_D0EQUALS0L P_DIV_Y_VV_D0EQUALS0L29501,1758577 -#define P_DIV_Y_VV_NVAR_END P_DIV_Y_VV_NVAR_END29502,1758640 -#define P_DIV_Y_VV_DIV_Y_VV_UNK P_DIV_Y_VV_DIV_Y_VV_UNK29503,1758699 -#define P_DIV_Y_VV_DIV_Y_VV_NVAR_UNK P_DIV_Y_VV_DIV_Y_VV_NVAR_UNK29504,1758766 -#define P_DIV_Y_VC_INSTINIT P_DIV_Y_VC_INSTINIT29505,1758843 -#define P_DIV_Y_VC_DIV_Y_VC_NVAR P_DIV_Y_VC_DIV_Y_VC_NVAR29506,1758902 -#define P_DIV_Y_VC_INTTERM P_DIV_Y_VC_INTTERM29507,1758971 -#define P_DIV_Y_VC_NOINTTERM P_DIV_Y_VC_NOINTTERM29508,1759028 -#define P_DIV_Y_VC_D0EQUALS0L P_DIV_Y_VC_D0EQUALS0L29509,1759089 -#define P_DIV_Y_VC_NVAR_END P_DIV_Y_VC_NVAR_END29510,1759152 -#define P_DIV_Y_VC_DIV_Y_VC_UNK P_DIV_Y_VC_DIV_Y_VC_UNK29511,1759211 -#define P_DIV_Y_CV_INSTINIT P_DIV_Y_CV_INSTINIT29512,1759279 -#define P_DIV_Y_CV_DIV_Y_CV_NVAR P_DIV_Y_CV_DIV_Y_CV_NVAR29513,1759339 -#define P_DIV_Y_CV_INTTERM_INIT P_DIV_Y_CV_INTTERM_INIT29514,1759409 -#define P_DIV_Y_CV_INTTERM_DIVEQUALS0 P_DIV_Y_CV_INTTERM_DIVEQUALS029515,1759477 -#define P_DIV_Y_CV_INTTERM_END P_DIV_Y_CV_INTTERM_END29516,1759557 -#define P_DIV_Y_CV_NOINTTERM P_DIV_Y_CV_NOINTTERM29517,1759623 -#define P_DIV_Y_CV_D0EQUALS0L P_DIV_Y_CV_D0EQUALS0L29518,1759685 -#define P_DIV_Y_CV_NVAR_END P_DIV_Y_CV_NVAR_END29519,1759749 -#define P_DIV_Y_CV_DIV_Y_CV_UNK P_DIV_Y_CV_DIV_Y_CV_UNK29520,1759809 -#define P_AND_VV_INSTINIT P_AND_VV_INSTINIT29521,1759877 -#define P_AND_VV_AND_VV_NVAR P_AND_VV_AND_VV_NVAR29522,1759933 -#define P_AND_VV_AND_VV_NVAR_NVAR_INT P_AND_VV_AND_VV_NVAR_NVAR_INT29523,1759995 -#define P_AND_VV_AND_VV_NVAR_NVAR_NOINT P_AND_VV_AND_VV_NVAR_NVAR_NOINT29524,1760075 -#define P_AND_VV_AND_VV_UNK P_AND_VV_AND_VV_UNK29525,1760159 -#define P_AND_VV_AND_VV_NVAR_UNK P_AND_VV_AND_VV_NVAR_UNK29526,1760219 -#define P_AND_VC_INSTINIT P_AND_VC_INSTINIT29527,1760289 -#define P_AND_VC_AND_VC_NVAR_INT P_AND_VC_AND_VC_NVAR_INT29528,1760345 -#define P_AND_VC_AND_VC_NVAR_NOINT P_AND_VC_AND_VC_NVAR_NOINT29529,1760415 -#define P_AND_VC_AND_VC_UNK P_AND_VC_AND_VC_UNK29530,1760489 -#define P_AND_Y_VV_INSTINIT P_AND_Y_VV_INSTINIT29531,1760549 -#define P_AND_Y_VV_AND_Y_VV_NVAR P_AND_Y_VV_AND_Y_VV_NVAR29532,1760609 -#define P_AND_Y_VV_INTTERM P_AND_Y_VV_INTTERM29533,1760679 -#define P_AND_Y_VV_NOINTTERM P_AND_Y_VV_NOINTTERM29534,1760737 -#define P_AND_Y_VV_D0EQUALS0L P_AND_Y_VV_D0EQUALS0L29535,1760799 -#define P_AND_Y_VV_NVAR_END P_AND_Y_VV_NVAR_END29536,1760863 -#define P_AND_Y_VV_AND_Y_VV_UNK P_AND_Y_VV_AND_Y_VV_UNK29537,1760923 -#define P_AND_Y_VV_AND_Y_VV_NVAR_UNK P_AND_Y_VV_AND_Y_VV_NVAR_UNK29538,1760991 -#define P_AND_Y_VC_INSTINIT P_AND_Y_VC_INSTINIT29539,1761069 -#define P_AND_Y_VC_AND_Y_VC_NVAR P_AND_Y_VC_AND_Y_VC_NVAR29540,1761129 -#define P_AND_Y_VC_INTTERM P_AND_Y_VC_INTTERM29541,1761199 -#define P_AND_Y_VC_NOINTTERM P_AND_Y_VC_NOINTTERM29542,1761257 -#define P_AND_Y_VC_D0EQUALS0L P_AND_Y_VC_D0EQUALS0L29543,1761319 -#define P_AND_Y_VC_NVAR_END P_AND_Y_VC_NVAR_END29544,1761383 -#define P_AND_Y_VC_AND_Y_VC_UNK P_AND_Y_VC_AND_Y_VC_UNK29545,1761443 -#define P_OR_VV_INSTINIT P_OR_VV_INSTINIT29546,1761511 -#define P_OR_VV_OR_VV_NVAR P_OR_VV_OR_VV_NVAR29547,1761565 -#define P_OR_VV_INTTERM P_OR_VV_INTTERM29548,1761623 -#define P_OR_VV_NOINTTERM P_OR_VV_NOINTTERM29549,1761675 -#define P_OR_VV_D0EQUALS0L P_OR_VV_D0EQUALS0L29550,1761731 -#define P_OR_VV_NVAR_END P_OR_VV_NVAR_END29551,1761789 -#define P_OR_VV_OR_VV_UNK P_OR_VV_OR_VV_UNK29552,1761843 -#define P_OR_VV_OR_VV_NVAR_UNK P_OR_VV_OR_VV_NVAR_UNK29553,1761899 -#define P_OR_VC_INSTINIT P_OR_VC_INSTINIT29554,1761965 -#define P_OR_VC_OR_VC_NVAR P_OR_VC_OR_VC_NVAR29555,1762019 -#define P_OR_VC_INTTERM P_OR_VC_INTTERM29556,1762077 -#define P_OR_VC_NOINTTERM P_OR_VC_NOINTTERM29557,1762129 -#define P_OR_VC_D0EQUALS0L P_OR_VC_D0EQUALS0L29558,1762185 -#define P_OR_VC_NVAR_END P_OR_VC_NVAR_END29559,1762243 -#define P_OR_VC_OR_VC_UNK P_OR_VC_OR_VC_UNK29560,1762297 -#define P_OR_Y_VV_INSTINIT P_OR_Y_VV_INSTINIT29561,1762353 -#define P_OR_Y_VV_OR_Y_VV_NVAR P_OR_Y_VV_OR_Y_VV_NVAR29562,1762411 -#define P_OR_Y_VV_INTTERM P_OR_Y_VV_INTTERM29563,1762477 -#define P_OR_Y_VV_NOINTTERM P_OR_Y_VV_NOINTTERM29564,1762533 -#define P_OR_Y_VV_D0EQUALS0L P_OR_Y_VV_D0EQUALS0L29565,1762593 -#define P_OR_Y_VV_NVAR_END P_OR_Y_VV_NVAR_END29566,1762655 -#define P_OR_Y_VV_OR_Y_VV_UNK P_OR_Y_VV_OR_Y_VV_UNK29567,1762713 -#define P_OR_Y_VV_OR_Y_VV_NVAR_UNK P_OR_Y_VV_OR_Y_VV_NVAR_UNK29568,1762777 -#define P_OR_Y_VC_INSTINIT P_OR_Y_VC_INSTINIT29569,1762851 -#define P_OR_Y_VC_OR_Y_VC_NVAR P_OR_Y_VC_OR_Y_VC_NVAR29570,1762909 -#define P_OR_Y_VC_INTTERM P_OR_Y_VC_INTTERM29571,1762975 -#define P_OR_Y_VC_NOINTTERM P_OR_Y_VC_NOINTTERM29572,1763031 -#define P_OR_Y_VC_D0EQUALS0L P_OR_Y_VC_D0EQUALS0L29573,1763091 -#define P_OR_Y_VC_NVAR_END P_OR_Y_VC_NVAR_END29574,1763153 -#define P_OR_Y_VC_OR_Y_VC_UNK P_OR_Y_VC_OR_Y_VC_UNK29575,1763211 -#define P_SLL_VV_INSTINIT P_SLL_VV_INSTINIT29576,1763275 -#define P_SLL_VV_SLL_VV_NVAR P_SLL_VV_SLL_VV_NVAR29577,1763331 -#define P_SLL_VV_INTTERM_INIT P_SLL_VV_INTTERM_INIT29578,1763393 -#define P_SLL_VV_INTTERM_LESS P_SLL_VV_INTTERM_LESS29579,1763457 -#define P_SLL_VV_INTTERM_GREATER P_SLL_VV_INTTERM_GREATER29580,1763521 -#define P_SLL_VV_NOINTTERM P_SLL_VV_NOINTTERM29581,1763591 -#define P_SLL_VV_D0EQUALS0L P_SLL_VV_D0EQUALS0L29582,1763649 -#define P_SLL_VV_NVAR_END P_SLL_VV_NVAR_END29583,1763709 -#define P_SLL_VV_SLL_VV_UNK P_SLL_VV_SLL_VV_UNK29584,1763765 -#define P_SLL_VV_SLL_VV_NVAR_UNK P_SLL_VV_SLL_VV_NVAR_UNK29585,1763825 -#define P_SLL_VC_INSTINIT P_SLL_VC_INSTINIT29586,1763895 -#define P_SLL_VC_SLL_VC_NVAR P_SLL_VC_SLL_VC_NVAR29587,1763951 -#define P_SLL_VC_INTTERM P_SLL_VC_INTTERM29588,1764013 -#define P_SLL_VC_NOINTTERM P_SLL_VC_NOINTTERM29589,1764067 -#define P_SLL_VC_D0EQUALS0L P_SLL_VC_D0EQUALS0L29590,1764125 -#define P_SLL_VC_NVAR_END P_SLL_VC_NVAR_END29591,1764185 -#define P_SLL_VC_SLL_VC_UNK P_SLL_VC_SLL_VC_UNK29592,1764241 -#define P_SLL_CV_INSTINIT P_SLL_CV_INSTINIT29593,1764301 -#define P_SLL_CV_SLL_CV_NVAR_INT P_SLL_CV_SLL_CV_NVAR_INT29594,1764357 -#define P_SLL_CV_SLL_CV_NVAR_NOINT P_SLL_CV_SLL_CV_NVAR_NOINT29595,1764427 -#define P_SLL_CV_SLL_CV_UNK P_SLL_CV_SLL_CV_UNK29596,1764501 -#define P_SLL_Y_VV_INSTINIT P_SLL_Y_VV_INSTINIT29597,1764561 -#define P_SLL_Y_VV_SLL_Y_VV_NVAR P_SLL_Y_VV_SLL_Y_VV_NVAR29598,1764621 -#define P_SLL_Y_VV_INTTERM_INIT P_SLL_Y_VV_INTTERM_INIT29599,1764691 -#define P_SLL_Y_VV_INTERM_LESS P_SLL_Y_VV_INTERM_LESS29600,1764759 -#define P_SLL_Y_VV_INTTERM_GREATER P_SLL_Y_VV_INTTERM_GREATER29601,1764825 -#define P_SLL_Y_VV_NOINTTERM P_SLL_Y_VV_NOINTTERM29602,1764899 -#define P_SLL_Y_VV_D0EQUALS0L P_SLL_Y_VV_D0EQUALS0L29603,1764961 -#define P_SLL_Y_VV_NVAR_END P_SLL_Y_VV_NVAR_END29604,1765025 -#define P_SLL_Y_VV_SLL_Y_VV_UNK P_SLL_Y_VV_SLL_Y_VV_UNK29605,1765085 -#define P_SLL_Y_VV_SLL_Y_VV_NVAR_UNK P_SLL_Y_VV_SLL_Y_VV_NVAR_UNK29606,1765153 -#define P_SLL_Y_VC_INSTINIT P_SLL_Y_VC_INSTINIT29607,1765231 -#define P_SLL_Y_VC_SLL_Y_VC_NVAR P_SLL_Y_VC_SLL_Y_VC_NVAR29608,1765291 -#define P_SLL_Y_VC_INTTERM P_SLL_Y_VC_INTTERM29609,1765361 -#define P_SLL_Y_VC_NOINTTERM P_SLL_Y_VC_NOINTTERM29610,1765419 -#define P_SLL_Y_VC_D0EQUALS0L P_SLL_Y_VC_D0EQUALS0L29611,1765481 -#define P_SLL_Y_VC_NVAR_END P_SLL_Y_VC_NVAR_END29612,1765545 -#define P_SLL_Y_VC_SLL_Y_VC_UNK P_SLL_Y_VC_SLL_Y_VC_UNK29613,1765605 -#define P_SLL_Y_CV_INSTINIT P_SLL_Y_CV_INSTINIT29614,1765673 -#define P_SLL_Y_CV_SLL_Y_CV_NVAR P_SLL_Y_CV_SLL_Y_CV_NVAR29615,1765733 -#define P_SLL_Y_CV_INTTERM_INIT P_SLL_Y_CV_INTTERM_INIT29616,1765803 -#define P_SLL_Y_CV_INTTERM_LESS P_SLL_Y_CV_INTTERM_LESS29617,1765871 -#define P_SLL_Y_CV_INTTERM_GREATER P_SLL_Y_CV_INTTERM_GREATER29618,1765939 -#define P_SLL_Y_CV_NOINTTERM P_SLL_Y_CV_NOINTTERM29619,1766013 -#define P_SLL_Y_CV_D0EQUALS0L P_SLL_Y_CV_D0EQUALS0L29620,1766075 -#define P_SLL_Y_CV_NVAR_END P_SLL_Y_CV_NVAR_END29621,1766139 -#define P_SLL_Y_CV_SLL_Y_CV_UNK P_SLL_Y_CV_SLL_Y_CV_UNK29622,1766199 -#define P_SLR_VV_INSTINIT P_SLR_VV_INSTINIT29623,1766267 -#define P_SLR_VV_SLR_VV_NVAR P_SLR_VV_SLR_VV_NVAR29624,1766323 -#define P_SLR_VV_INTTERM_INIT P_SLR_VV_INTTERM_INIT29625,1766385 -#define P_SLR_VV_INTTERM_LESS P_SLR_VV_INTTERM_LESS29626,1766449 -#define P_SLR_VV_INTTERM_GREATER P_SLR_VV_INTTERM_GREATER29627,1766513 -#define P_SLR_VV_NOINTTERM P_SLR_VV_NOINTTERM29628,1766583 -#define P_SLR_VV_D0EQUALS0L P_SLR_VV_D0EQUALS0L29629,1766641 -#define P_SLR_VV_NVAR_END P_SLR_VV_NVAR_END29630,1766701 -#define P_SLR_VV_SRL_VV_UNK P_SLR_VV_SRL_VV_UNK29631,1766757 -#define P_SLR_VV_SRL_VV_NVAR_UNK P_SLR_VV_SRL_VV_NVAR_UNK29632,1766817 -#define P_SLR_VC_INSTINIT P_SLR_VC_INSTINIT29633,1766887 -#define P_SLR_VC_SLR_VC_NVAR_INT P_SLR_VC_SLR_VC_NVAR_INT29634,1766943 -#define P_SLR_VC_SLR_VC_NVAR_NOINT P_SLR_VC_SLR_VC_NVAR_NOINT29635,1767013 -#define P_SLR_VC_SRL_VC_UNK P_SLR_VC_SRL_VC_UNK29636,1767087 -#define P_SLR_CV_INSTINIT P_SLR_CV_INSTINIT29637,1767147 -#define P_SLR_CV_SLR_CV_NVAR P_SLR_CV_SLR_CV_NVAR29638,1767203 -#define P_SLR_CV_INTTERM_INIT P_SLR_CV_INTTERM_INIT29639,1767265 -#define P_SLR_CV_INTTERM_LESS P_SLR_CV_INTTERM_LESS29640,1767329 -#define P_SLR_CV_INTTERM_GREATER P_SLR_CV_INTTERM_GREATER29641,1767393 -#define P_SLR_CV_NOINTTERM P_SLR_CV_NOINTTERM29642,1767463 -#define P_SLR_CV_D0EQUALS0L P_SLR_CV_D0EQUALS0L29643,1767521 -#define P_SLR_CV_NVAR_END P_SLR_CV_NVAR_END29644,1767581 -#define P_SLR_CV_SLR_CV_UNK P_SLR_CV_SLR_CV_UNK29645,1767637 -#define P_SLR_Y_VV_INSTINIT P_SLR_Y_VV_INSTINIT29646,1767697 -#define P_SLR_Y_VV_SLR_Y_VV_NVAR P_SLR_Y_VV_SLR_Y_VV_NVAR29647,1767757 -#define P_SLR_Y_VV_INTTERM_INIT P_SLR_Y_VV_INTTERM_INIT29648,1767827 -#define P_SLR_Y_VV_INTTERM_LESS P_SLR_Y_VV_INTTERM_LESS29649,1767895 -#define P_SLR_Y_VV_INTTERM_GREATER P_SLR_Y_VV_INTTERM_GREATER29650,1767963 -#define P_SLR_Y_VV_NOINTTERM P_SLR_Y_VV_NOINTTERM29651,1768037 -#define P_SLR_Y_VV_D0EQUALS0L P_SLR_Y_VV_D0EQUALS0L29652,1768099 -#define P_SLR_Y_VV_NVAR_END P_SLR_Y_VV_NVAR_END29653,1768163 -#define P_SLR_Y_VV_SLR_Y_VV_UNK P_SLR_Y_VV_SLR_Y_VV_UNK29654,1768223 -#define P_SLR_Y_VV_SLR_Y_VV_NVAR_UNK P_SLR_Y_VV_SLR_Y_VV_NVAR_UNK29655,1768291 -#define P_SLR_Y_VC_INSTINIT P_SLR_Y_VC_INSTINIT29656,1768369 -#define P_SLR_Y_VC_SLR_Y_VC_NVAR P_SLR_Y_VC_SLR_Y_VC_NVAR29657,1768429 -#define P_SLR_Y_VC_INTTERM P_SLR_Y_VC_INTTERM29658,1768499 -#define P_SLR_Y_VC_NOINTTERM P_SLR_Y_VC_NOINTTERM29659,1768557 -#define P_SLR_Y_VC_D0EQUALS0L P_SLR_Y_VC_D0EQUALS0L29660,1768619 -#define P_SLR_Y_VC_NVAR_END P_SLR_Y_VC_NVAR_END29661,1768683 -#define P_SLR_Y_VC_SLR_Y_VC_UNK P_SLR_Y_VC_SLR_Y_VC_UNK29662,1768743 -#define P_SLR_Y_CV_INSTINIT P_SLR_Y_CV_INSTINIT29663,1768811 -#define P_SLR_Y_CV_SLR_Y_CV_NVAR P_SLR_Y_CV_SLR_Y_CV_NVAR29664,1768871 -#define P_SLR_Y_CV_INTTERM_INIT P_SLR_Y_CV_INTTERM_INIT29665,1768941 -#define P_SLR_Y_CV_INTTERM_LESS P_SLR_Y_CV_INTTERM_LESS29666,1769009 -#define P_SLR_Y_CV_INTTERM_GREATER P_SLR_Y_CV_INTTERM_GREATER29667,1769077 -#define P_SLR_Y_CV_NOINTTERM P_SLR_Y_CV_NOINTTERM29668,1769151 -#define P_SLR_Y_CV_D0EQUALS0L P_SLR_Y_CV_D0EQUALS0L29669,1769213 -#define P_SLR_Y_CV_NVAR_END P_SLR_Y_CV_NVAR_END29670,1769277 -#define P_SLR_Y_CV_SLR_Y_CV_UNK P_SLR_Y_CV_SLR_Y_CV_UNK29671,1769337 -#define CALL_BFUNC_XX_INSTINIT CALL_BFUNC_XX_INSTINIT29672,1769405 -#define CALL_BFUNC_XX_CALL_BFUNC_XX_NVAR CALL_BFUNC_XX_CALL_BFUNC_XX_NVAR29673,1769471 -#define CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_INT CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_INT29674,1769557 -#define CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_NOINT CALL_BFUNC_XX_CALL_BFUNC_XX2_NVAR_NOINT29675,1769653 -#define CALL_BFUNC_XX_CALL_BFUNC_XX_UNK CALL_BFUNC_XX_CALL_BFUNC_XX_UNK29676,1769753 -#define CALL_BFUNC_YX_INSTINIT CALL_BFUNC_YX_INSTINIT29677,1769837 -#define CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_INT CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_INT29678,1769903 -#define CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_NOINT CALL_BFUNC_YX_CALL_BFUNC_YX2_NVAR_NOINT29679,1769999 -#define CALL_BFUNC_YX_CALL_BFUNC_YX_UNK CALL_BFUNC_YX_CALL_BFUNC_YX_UNK29680,1770099 -#define CALL_BFUNC_XY_INSTINIT CALL_BFUNC_XY_INSTINIT29681,1770183 -#define CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_INT CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_INT29682,1770249 -#define CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_NOINT CALL_BFUNC_XY_CALL_BFUNC_XY2_NVAR_NOINT29683,1770345 -#define CALL_BFUNC_XY_CALL_BFUNC_XY_UNK CALL_BFUNC_XY_CALL_BFUNC_XY_UNK29684,1770445 -#define CALL_BFUNC_YY_INSTINIT CALL_BFUNC_YY_INSTINIT29685,1770529 -#define CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_INT CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_INT29686,1770595 -#define CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_NOINT CALL_BFUNC_YY_CALL_BFUNC_YY2_NVAR_NOINT29687,1770691 -#define CALL_BFUNC_YY_NOINTTERM_NOFAILCODE CALL_BFUNC_YY_NOINTTERM_NOFAILCODE29688,1770791 -#define CALL_BFUNC_YY_NOINTTERM_NOD0 CALL_BFUNC_YY_NOINTTERM_NOD029689,1770881 -#define CALL_BFUNC_YY_NOINTTERM_END CALL_BFUNC_YY_NOINTTERM_END29690,1770959 -#define CALL_BFUNC_YY_CALL_BFUNC_YY_UNK CALL_BFUNC_YY_CALL_BFUNC_YY_UNK29691,1771035 -#define P_EQUAL_INSTINIT P_EQUAL_INSTINIT29692,1771119 -#define P_EQUAL_END P_EQUAL_END29693,1771173 -#define P_ARG_VV_INSTINIT P_ARG_VV_INSTINIT29694,1771217 -#define P_ARG_VV_LOW_LEVEL_TRACER P_ARG_VV_LOW_LEVEL_TRACER29695,1771273 -#define P_ARG_VV_TEST_D0 P_ARG_VV_TEST_D029696,1771345 -#define P_ARG_VV_ARG_ARG1_NVAR P_ARG_VV_ARG_ARG1_NVAR29697,1771399 -#define P_ARG_VV_TEST_D1 P_ARG_VV_TEST_D129698,1771465 -#define P_ARG_VV_ARG_ARG2_NVAR P_ARG_VV_ARG_ARG2_NVAR29699,1771519 -#define P_ARG_VV_ARG_ARG2_UNK P_ARG_VV_ARG_ARG2_UNK29700,1771585 -#define P_ARG_VV_ARG_ARG1_UNK P_ARG_VV_ARG_ARG1_UNK29701,1771649 -#define P_ARG_CV_INSTINIT P_ARG_CV_INSTINIT29702,1771713 -#define P_ARG_CV_LOW_LEVEL_TRACER P_ARG_CV_LOW_LEVEL_TRACER29703,1771769 -#define P_ARG_CV_TEST_D1 P_ARG_CV_TEST_D129704,1771841 -#define P_ARG_CV_ARG_ARG2_VC_NVAR P_ARG_CV_ARG_ARG2_VC_NVAR29705,1771895 -#define P_ARG_CV_ARG_ARG2_VC_UNK P_ARG_CV_ARG_ARG2_VC_UNK29706,1771967 -#define P_ARG_Y_VV_INSTINIT P_ARG_Y_VV_INSTINIT29707,1772037 -#define P_ARG_Y_VV_LOW_LEVEL_TRACER P_ARG_Y_VV_LOW_LEVEL_TRACER29708,1772097 -#define P_ARG_Y_VV_TEST_D0 P_ARG_Y_VV_TEST_D029709,1772173 -#define P_ARG_Y_VV_ARG_Y_ARG1_NVAR P_ARG_Y_VV_ARG_Y_ARG1_NVAR29710,1772231 -#define P_ARG_Y_VV_TEST_D1 P_ARG_Y_VV_TEST_D129711,1772305 -#define P_ARG_Y_VV_ARG_Y_ARG2_NVAR P_ARG_Y_VV_ARG_Y_ARG2_NVAR29712,1772363 -#define P_ARG_Y_VV_ARG_Y_ARG2_UNK P_ARG_Y_VV_ARG_Y_ARG2_UNK29713,1772437 -#define P_ARG_Y_VV_ARG_Y_ARG1_UNK P_ARG_Y_VV_ARG_Y_ARG1_UNK29714,1772509 -#define P_ARG_Y_CV_INSTINIT P_ARG_Y_CV_INSTINIT29715,1772581 -#define P_ARG_Y_CV_LOW_LEVEL_TRACER P_ARG_Y_CV_LOW_LEVEL_TRACER29716,1772641 -#define P_ARG_Y_CV_TEST_D1 P_ARG_Y_CV_TEST_D129717,1772717 -#define P_ARG_Y_CV_D1APPL_INIT P_ARG_Y_CV_D1APPL_INIT29718,1772775 -#define P_ARG_Y_CV_D1APPL_END P_ARG_Y_CV_D1APPL_END29719,1772841 -#define P_ARG_Y_CV_D1PAIR_INIT P_ARG_Y_CV_D1PAIR_INIT29720,1772905 -#define P_ARG_Y_CV_D1PAIR_LESS0 P_ARG_Y_CV_D1PAIR_LESS029721,1772971 -#define P_ARG_Y_CV_D1PAIR_END P_ARG_Y_CV_D1PAIR_END29722,1773039 -#define P_ARG_Y_CV_ARG_Y_ARG2_VC_UNK P_ARG_Y_CV_ARG_Y_ARG2_VC_UNK29723,1773103 -#define P_FUNC2S_VV_INSTINITP_FUNC2S_VV_INSTINIT29724,1773181 -#define P_FUNC2S_VV_LOW_LEVEL_TRACER P_FUNC2S_VV_LOW_LEVEL_TRACER29725,1773242 -#define P_FUNC2S_TEST_D0 P_FUNC2S_TEST_D029726,1773320 -#define P_FUNC2S_VV_TEST_D1 P_FUNC2S_VV_TEST_D129727,1773374 -#define P_FUNC2S_VV_D1INT P_FUNC2S_VV_D1INT29728,1773434 -#define P_FUNC2S_VV_D1NOTINT P_FUNC2S_VV_D1NOTINT29729,1773490 -#define P_FUNC2S_VV_D1BIGINT P_FUNC2S_VV_D1BIGINT29730,1773552 -#define P_FUNC2S_VV_D1NOTBIGINT P_FUNC2S_VV_D1NOTBIGINT29731,1773614 -#define P_FUNC2S_VV_D1NOTINT_END P_FUNC2S_VV_D1NOTINT_END29732,1773682 -#define P_FUNC2S_VV_D0NOTATOMIC P_FUNC2S_VV_D0NOTATOMIC29733,1773752 -#define P_FUNC2S_VV_FIRSTIFOK P_FUNC2S_VV_FIRSTIFOK29734,1773820 -#define P_FUNC2S_VV_SECONDIFOK_D0NOTATOM P_FUNC2S_VV_SECONDIFOK_D0NOTATOM29735,1773884 -#define P_FUNC2S_VV_SECONDIFOK_D0ATOM P_FUNC2S_VV_SECONDIFOK_D0ATOM29736,1773970 -#define P_FUNC2S_VV_SECONDIFOK_POST_D0ATOM P_FUNC2S_VV_SECONDIFOK_POST_D0ATOM29737,1774050 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_INIT P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_INIT29738,1774140 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_IFOK P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_IFOK29739,1774236 -#define P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_NOIF P_FUNC2S_VV_SECONDIFOK_FIRSTIFOK_NOIF29740,1774332 -#define P_FUNC2S_VV_SECONDIFOK_INSIDEWHILE P_FUNC2S_VV_SECONDIFOK_INSIDEWHILE29741,1774428 -#define P_FUNC2S_VV_SECONDIFOK_END P_FUNC2S_VV_SECONDIFOK_END29742,1774518 -#define P_FUNC2S_VV_THIRDIFOK P_FUNC2S_VV_THIRDIFOK29743,1774592 -#define P_FUNC2S_VV_ELSE P_FUNC2S_VV_ELSE29744,1774656 -#define P_FUNC2S_VV_FUNC2S_UNK2 P_FUNC2S_VV_FUNC2S_UNK229745,1774710 -#define P_FUNC2S_VV_FUNC2S_UNK P_FUNC2S_VV_FUNC2S_UNK29746,1774778 -#define P_FUNC2S_CV_INSTINIT P_FUNC2S_CV_INSTINIT29747,1774844 -#define P_FUNC2S_CV_LOW_LEVEL_TRACER P_FUNC2S_CV_LOW_LEVEL_TRACER29748,1774906 -#define P_FUNC2S_CV_TEST_D1 P_FUNC2S_CV_TEST_D129749,1774984 -#define P_FUNC2S_CV_D1INT P_FUNC2S_CV_D1INT29750,1775044 -#define P_FUNC2S_CV_D1NOTINT P_FUNC2S_CV_D1NOTINT29751,1775100 -#define P_FUNC2S_CV_D1NOINT_D1BIGINT P_FUNC2S_CV_D1NOINT_D1BIGINT29752,1775162 -#define P_FUNC2S_CV_D1NOTBIGINT P_FUNC2S_CV_D1NOTBIGINT29753,1775240 -#define P_FUNC2S_CV_POST_IF P_FUNC2S_CV_POST_IF29754,1775308 -#define P_FUNC2S_CV_FIRSTIFOK P_FUNC2S_CV_FIRSTIFOK29755,1775368 -#define P_FUNC2S_CV_D1GREATER_D0NOTATOM P_FUNC2S_CV_D1GREATER_D0NOTATOM29756,1775432 -#define P_FUNC2S_CV_D1GREATER_D0ATOM P_FUNC2S_CV_D1GREATER_D0ATOM29757,1775516 -#define P_FUNC2S_CV_D1GREATER_POST_IF P_FUNC2S_CV_D1GREATER_POST_IF29758,1775594 -#define P_FUNC2S_CV_D1GREATER_IFOK_INIT P_FUNC2S_CV_D1GREATER_IFOK_INIT29759,1775674 -#define P_FUNC2S_CV_D1GREATER_IFOK_IFOK P_FUNC2S_CV_D1GREATER_IFOK_IFOK29760,1775758 -#define P_FUNC2S_CV_D1GREATER_IFOK_NOIF P_FUNC2S_CV_D1GREATER_IFOK_NOIF29761,1775842 -#define P_FUNC2S_CV_D1GREATER_INSIDEWHILE P_FUNC2S_CV_D1GREATER_INSIDEWHILE29762,1775926 -#define P_FUNC2S_CV_D1GREATER_END P_FUNC2S_CV_D1GREATER_END29763,1776014 -#define P_FUNC2S_CV_D1ISZERO P_FUNC2S_CV_D1ISZERO29764,1776086 -#define P_FUNC2S_CV_ELSE P_FUNC2S_CV_ELSE29765,1776148 -#define P_FUNC2S_CV_END P_FUNC2S_CV_END29766,1776202 -#define P_FUNC2S_VC_INSTINIT P_FUNC2S_VC_INSTINIT29767,1776254 -#define P_FUNC2S_VC_LOW_LEVEL_TRACER P_FUNC2S_VC_LOW_LEVEL_TRACER29768,1776316 -#define P_FUNC2S_VC_TEST_D0 P_FUNC2S_VC_TEST_D029769,1776394 -#define P_FUNC2S_VC_FUNC2S_NVAR_VC P_FUNC2S_VC_FUNC2S_NVAR_VC29770,1776454 -#define P_FUNC2S_VC_D0NOATOMIC P_FUNC2S_VC_D0NOATOMIC29771,1776528 -#define P_FUNC2S_VC_EQUALS P_FUNC2S_VC_EQUALS29772,1776594 -#define P_FUNC2S_VC_D1ISZERO P_FUNC2S_VC_D1ISZERO29773,1776652 -#define P_FUNC2S_VC_D0NOATOM P_FUNC2S_VC_D0NOATOM29774,1776714 -#define P_FUNC2S_VC_D0ATOM P_FUNC2S_VC_D0ATOM29775,1776776 -#define P_FUNC2S_VC_POST_ELSE P_FUNC2S_VC_POST_ELSE29776,1776834 -#define P_FUNC2S_VC_IFOK_INIT P_FUNC2S_VC_IFOK_INIT29777,1776898 -#define P_FUNC2S_VC_IFOK_IFOK P_FUNC2S_VC_IFOK_IFOK29778,1776962 -#define P_FUNC2S_VC_IFOK_NOIF P_FUNC2S_VC_IFOK_NOIF29779,1777026 -#define P_FUNC2S_VC_INSIDEWHILE P_FUNC2S_VC_INSIDEWHILE29780,1777090 -#define P_FUNC2S_VC_END1 P_FUNC2S_VC_END129781,1777158 -#define P_FUNC2S_VC_END2 P_FUNC2S_VC_END229782,1777212 -#define P_FUNC2S_Y_VV_INSTINIT P_FUNC2S_Y_VV_INSTINIT29783,1777266 -#define P_FUNC2S_Y_VV_LOW_LEVEL_TRACER P_FUNC2S_Y_VV_LOW_LEVEL_TRACER29784,1777332 -#define P_FUNC2S_Y_VV_TEST_D0 P_FUNC2S_Y_VV_TEST_D029785,1777414 -#define P_FUNC2S_Y_VV_TEST_D1 P_FUNC2S_Y_VV_TEST_D129786,1777478 -#define P_FUNC2S_Y_VV_D1INT P_FUNC2S_Y_VV_D1INT29787,1777542 -#define P_FUNC2S_Y_VV_D1NOTINT P_FUNC2S_Y_VV_D1NOTINT29788,1777602 -#define P_FUNC2S_Y_VV_D1BIGINT P_FUNC2S_Y_VV_D1BIGINT29789,1777668 -#define P_FUNC2S_Y_VV_D1NOTBIGINT P_FUNC2S_Y_VV_D1NOTBIGINT29790,1777734 -#define P_FUNC2S_Y_VV_POST_IF P_FUNC2S_Y_VV_POST_IF29791,1777806 -#define P_FUNC2S_Y_VV_D0NOATOMIC P_FUNC2S_Y_VV_D0NOATOMIC29792,1777870 -#define P_FUNC2S_Y_VV_EQUALS P_FUNC2S_Y_VV_EQUALS29793,1777940 -#define P_FUNC2S_Y_VV_D1GREATER_D0NOATOM P_FUNC2S_Y_VV_D1GREATER_D0NOATOM29794,1778002 -#define P_FUNC2S_Y_VV_D1GREATER_D0ATOM P_FUNC2S_Y_VV_D1GREATER_D0ATOM29795,1778088 -#define P_FUNC2S_Y_VV_D1GREATER_POST_ELSE P_FUNC2S_Y_VV_D1GREATER_POST_ELSE29796,1778170 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_INIT P_FUNC2S_Y_VV_D1GREATER_IFOK_INIT29797,1778258 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_IFOK P_FUNC2S_Y_VV_D1GREATER_IFOK_IFOK29798,1778346 -#define P_FUNC2S_Y_VV_D1GREATER_IFOK_NOIF P_FUNC2S_Y_VV_D1GREATER_IFOK_NOIF29799,1778434 -#define P_FUNC2S_Y_VV_D1GREATER_INSIDEWHILE P_FUNC2S_Y_VV_D1GREATER_INSIDEWHILE29800,1778522 -#define P_FUNC2S_Y_VV_D1GREATER_END P_FUNC2S_Y_VV_D1GREATER_END29801,1778614 -#define P_FUNC2S_Y_VV_D1ISZERO P_FUNC2S_Y_VV_D1ISZERO29802,1778690 -#define P_FUNC2S_Y_VV_ELSE P_FUNC2S_Y_VV_ELSE29803,1778756 -#define P_FUNC2S_Y_VV_END1 P_FUNC2S_Y_VV_END129804,1778814 -#define P_FUNC2S_Y_VV_END2 P_FUNC2S_Y_VV_END229805,1778872 -#define P_FUNC2S_Y_CV_INSTINIT P_FUNC2S_Y_CV_INSTINIT29806,1778930 -#define P_FUNC2S_Y_CV_LOW_LEVEL_TRACER P_FUNC2S_Y_CV_LOW_LEVEL_TRACER29807,1778996 -#define P_FUNC2S_Y_CV_TEST_D1 P_FUNC2S_Y_CV_TEST_D129808,1779078 -#define P_FUNC2S_Y_CV_D1INT P_FUNC2S_Y_CV_D1INT29809,1779142 -#define P_FUNC2S_Y_CV_D1NOTINT P_FUNC2S_Y_CV_D1NOTINT29810,1779202 -#define P_FUNC2S_Y_CV_D1BIGINT P_FUNC2S_Y_CV_D1BIGINT29811,1779268 -#define P_FUNC2S_Y_CV_D1NOTBIGINT P_FUNC2S_Y_CV_D1NOTBIGINT29812,1779334 -#define P_FUNC2S_Y_CV_POST_IF P_FUNC2S_Y_CV_POST_IF29813,1779406 -#define P_FUNC2S_Y_CV_EQUALS P_FUNC2S_Y_CV_EQUALS29814,1779470 -#define P_FUNC2S_Y_CV_D1GREATER_D0NOATOM P_FUNC2S_Y_CV_D1GREATER_D0NOATOM29815,1779532 -#define P_FUNC2S_Y_CV_D1GREATER_D0ATOM P_FUNC2S_Y_CV_D1GREATER_D0ATOM29816,1779618 -#define P_FUNC2S_Y_CV_D1GREATER_POST_ELSE P_FUNC2S_Y_CV_D1GREATER_POST_ELSE29817,1779700 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_INIT P_FUNC2S_Y_CV_D1GREATER_IFOK_INIT29818,1779788 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_IFOK P_FUNC2S_Y_CV_D1GREATER_IFOK_IFOK29819,1779876 -#define P_FUNC2S_Y_CV_D1GREATER_IFOK_NOIF P_FUNC2S_Y_CV_D1GREATER_IFOK_NOIF29820,1779964 -#define P_FUNC2S_Y_CV_D1GREATER_INSIDEWHILE P_FUNC2S_Y_CV_D1GREATER_INSIDEWHILE29821,1780052 -#define P_FUNC2S_Y_CV_D1GREATER_END P_FUNC2S_Y_CV_D1GREATER_END29822,1780144 -#define P_FUNC2S_Y_CV_D1ISZERO P_FUNC2S_Y_CV_D1ISZERO29823,1780220 -#define P_FUNC2S_Y_CV_ELSE P_FUNC2S_Y_CV_ELSE29824,1780286 -#define P_FUNC2S_Y_CV_END P_FUNC2S_Y_CV_END29825,1780344 -#define P_FUNC2S_Y_VC_INSTINIT P_FUNC2S_Y_VC_INSTINIT29826,1780400 -#define P_FUNC2S_Y_VC_LOW_LEVEL_TRACER P_FUNC2S_Y_VC_LOW_LEVEL_TRACER29827,1780466 -#define P_FUNC2S_Y_VC_TEST_D0 P_FUNC2S_Y_VC_TEST_D029828,1780548 -#define P_FUNC2S_Y_VC_FUNC2S_Y_NVAR_VC P_FUNC2S_Y_VC_FUNC2S_Y_NVAR_VC29829,1780612 -#define P_FUNC2S_Y_VC_D0NOATOMIC P_FUNC2S_Y_VC_D0NOATOMIC29830,1780694 -#define P_FUNC2S_Y_VC_EQUALS P_FUNC2S_Y_VC_EQUALS29831,1780764 -#define P_FUNC2S_Y_VC_D1ISZERO P_FUNC2S_Y_VC_D1ISZERO29832,1780826 -#define P_FUNC2S_Y_VC_D0NOATOM1 P_FUNC2S_Y_VC_D0NOATOM129833,1780892 -#define P_FUNC2S_Y_VC_D0NOATOM2 P_FUNC2S_Y_VC_D0NOATOM229834,1780960 -#define P_FUNC2S_Y_VC_D0ATOM P_FUNC2S_Y_VC_D0ATOM29835,1781028 -#define P_FUNC2S_Y_VC_POST_ELSE P_FUNC2S_Y_VC_POST_ELSE29836,1781090 -#define P_FUNC2S_Y_VC_IFOK_INIT P_FUNC2S_Y_VC_IFOK_INIT29837,1781158 -#define P_FUNC2S_Y_VC_IFOK_IFOK P_FUNC2S_Y_VC_IFOK_IFOK29838,1781226 -#define P_FUNC2S_Y_VC_IFOK_NOIF P_FUNC2S_Y_VC_IFOK_NOIF29839,1781294 -#define P_FUNC2S_Y_VC_INSIDEWHILE P_FUNC2S_Y_VC_INSIDEWHILE29840,1781362 -#define P_FUNC2S_Y_VC_END1 P_FUNC2S_Y_VC_END129841,1781434 -#define P_FUNC2S_Y_VC_END2 P_FUNC2S_Y_VC_END229842,1781492 -#define P_FUNC2F_XX_INSTINIT P_FUNC2F_XX_INSTINIT29843,1781550 -#define P_FUNC2F_XX_LOW_LEVEL_TRACER P_FUNC2F_XX_LOW_LEVEL_TRACER29844,1781612 -#define P_FUNC2F_XX_TEST_D0 P_FUNC2F_XX_TEST_D029845,1781690 -#define P_FUNC2F_XX_D0APPL P_FUNC2F_XX_D0APPL29846,1781750 -#define P_FUNC2F_XX_D0APPL_D1EXTFUNC P_FUNC2F_XX_D0APPL_D1EXTFUNC29847,1781808 -#define P_FUNC2F_XX_D0APPL_END P_FUNC2F_XX_D0APPL_END29848,1781886 -#define P_FUNC2F_XX_D0PAIR P_FUNC2F_XX_D0PAIR29849,1781952 -#define P_FUNC2F_XX_D0NOCOMPOUND P_FUNC2F_XX_D0NOCOMPOUND29850,1782010 -#define P_FUNC2F_XX_END P_FUNC2F_XX_END29851,1782080 -#define P_FUNC2F_XY_INSTINIT P_FUNC2F_XY_INSTINIT29852,1782132 -#define P_FUNC2F_XY_LOW_LEVEL_TRACER P_FUNC2F_XY_LOW_LEVEL_TRACER29853,1782194 -#define P_FUNC2F_XY_TEST_D0 P_FUNC2F_XY_TEST_D029854,1782272 -#define P_FUNC2F_XY_D0APPL P_FUNC2F_XY_D0APPL29855,1782332 -#define P_FUNC2F_XY_D0APPL_D1EXTFUNC P_FUNC2F_XY_D0APPL_D1EXTFUNC29856,1782390 -#define P_FUNC2F_XY_D0APPL_END P_FUNC2F_XY_D0APPL_END29857,1782468 -#define P_FUNC2F_XY_D0PAIR P_FUNC2F_XY_D0PAIR29858,1782534 -#define P_FUNC2F_XY_D0NOCOMPOUND P_FUNC2F_XY_D0NOCOMPOUND29859,1782592 -#define P_FUNC2F_XY_END P_FUNC2F_XY_END29860,1782662 -#define P_FUNC2F_YX_INSTINIT P_FUNC2F_YX_INSTINIT29861,1782714 -#define P_FUNC2F_YX_LOW_LEVEL_TRACER P_FUNC2F_YX_LOW_LEVEL_TRACER29862,1782776 -#define P_FUNC2F_YX_TEST_D0 P_FUNC2F_YX_TEST_D029863,1782854 -#define P_FUNC2F_YX_D0APPL P_FUNC2F_YX_D0APPL29864,1782914 -#define P_FUNC2F_YX_D0APPL_D1EXTFUNC P_FUNC2F_YX_D0APPL_D1EXTFUNC29865,1782972 -#define P_FUNC2F_YX_D0APPL_END P_FUNC2F_YX_D0APPL_END29866,1783050 -#define P_FUNC2F_YX_D0PAIR P_FUNC2F_YX_D0PAIR29867,1783116 -#define P_FUNC2F_YX_D0NOCOMPOUND P_FUNC2F_YX_D0NOCOMPOUND29868,1783174 -#define P_FUNC2F_YX_END P_FUNC2F_YX_END29869,1783244 -#define P_FUNC2F_YY_INSTINIT P_FUNC2F_YY_INSTINIT29870,1783296 -#define P_FUNC2F_YY_LOW_LEVEL_TRACER P_FUNC2F_YY_LOW_LEVEL_TRACER29871,1783358 -#define P_FUNC2F_YY_TEST_D0 P_FUNC2F_YY_TEST_D029872,1783436 -#define P_FUNC2F_YY_D0APPL P_FUNC2F_YY_D0APPL29873,1783496 -#define P_FUNC2F_YY_D0APPL_D1EXTFUNC P_FUNC2F_YY_D0APPL_D1EXTFUNC29874,1783554 -#define P_FUNC2F_YY_D0APPL_END P_FUNC2F_YY_D0APPL_END29875,1783632 -#define P_FUNC2F_YY_D0PAIR P_FUNC2F_YY_D0PAIR29876,1783698 -#define P_FUNC2F_YY_D0NOCOMPOUND P_FUNC2F_YY_D0NOCOMPOUND29877,1783756 -#define P_FUNC2F_YY_END P_FUNC2F_YY_END29878,1783826 -#define PUT_X_VAR_INSTINIT PUT_X_VAR_INSTINIT29881,1783904 -#define PUT_Y_VAR_INSTINIT PUT_Y_VAR_INSTINIT29882,1783955 -#define PUT_Y_VAR_INSTINIT PUT_Y_VAR_INSTINIT29883,1784009 -#define PUT_X_VAL_INSTINIT PUT_X_VAL_INSTINIT29884,1784063 -#define PUT_XX_VAL_INSTINIT PUT_XX_VAL_INSTINIT29885,1784118 -#define PUT_Y_VAL_INSTINIT PUT_Y_VAL_INSTINIT29886,1784175 -#define PUT_Y_VAL_INSTINIT PUT_Y_VAL_INSTINIT29887,1784230 -#define PUT_Y_VALS_INSTINIT PUT_Y_VALS_INSTINIT29888,1784285 -#define PUT_Y_VALS_INSTINIT PUT_Y_VALS_INSTINIT29889,1784342 -#define PUT_UNSAFE_INSTINIT PUT_UNSAFE_INSTINIT29890,1784399 -#define PUT_UNSAFE_PUNSAFE_NONVAR PUT_UNSAFE_PUNSAFE_NONVAR29891,1784456 -#define PUT_UNSAFE_PUNSAFE_UNK PUT_UNSAFE_PUNSAFE_UNK29892,1784526 -#define PUT_ATOM_INSTINIT PUT_ATOM_INSTINIT29893,1784590 -#define PUT_DBTERM_INSTINIT PUT_DBTERM_INSTINIT29894,1784644 -#define PUT_BIGINT_INSTINIT PUT_BIGINT_INSTINIT29895,1784702 -#define PUT_FLOAT_INSTINIT PUT_FLOAT_INSTINIT29896,1784760 -#define PUT_LONGINT_INSTINIT PUT_LONGINT_INSTINIT29897,1784816 -#define PUT_LIST_INSTINIT PUT_LIST_INSTINIT29898,1784876 -#define PUT_STRUCT_INSTINIT PUT_STRUCT_INSTINIT29899,1784930 -#define PUT_X_VAR_INSTINIT PUT_X_VAR_INSTINIT29902,1785016 -#define PUT_Y_VAR_INSTINIT PUT_Y_VAR_INSTINIT29903,1785067 -#define PUT_Y_VAR_INSTINIT PUT_Y_VAR_INSTINIT29904,1785121 -#define PUT_X_VAL_INSTINIT PUT_X_VAL_INSTINIT29905,1785175 -#define PUT_XX_VAL_INSTINIT PUT_XX_VAL_INSTINIT29906,1785230 -#define PUT_Y_VAL_INSTINIT PUT_Y_VAL_INSTINIT29907,1785287 -#define PUT_Y_VAL_INSTINIT PUT_Y_VAL_INSTINIT29908,1785342 -#define PUT_Y_VALS_INSTINIT PUT_Y_VALS_INSTINIT29909,1785397 -#define PUT_Y_VALS_INSTINIT PUT_Y_VALS_INSTINIT29910,1785454 -#define PUT_UNSAFE_INSTINIT PUT_UNSAFE_INSTINIT29911,1785511 -#define PUT_UNSAFE_PUNSAFE_NONVAR PUT_UNSAFE_PUNSAFE_NONVAR29912,1785569 -#define PUT_UNSAFE_PUNSAFE_UNK PUT_UNSAFE_PUNSAFE_UNK29913,1785639 -#define PUT_ATOM_INSTINIT PUT_ATOM_INSTINIT29914,1785703 -#define PUT_DBTERM_INSTINIT PUT_DBTERM_INSTINIT29915,1785757 -#define PUT_BIGINT_INSTINIT PUT_BIGINT_INSTINIT29916,1785815 -#define PUT_FLOAT_INSTINIT PUT_FLOAT_INSTINIT29917,1785873 -#define PUT_LONGINT_INSTINIT PUT_LONGINT_INSTINIT29918,1785929 -#define PUT_LIST_INSTINIT PUT_LIST_INSTINIT29919,1785989 -#define PUT_STRUCT_INSTINIT PUT_STRUCT_INSTINIT29920,1786043 -#define UNIFY_X_VAR_INSTINIT UNIFY_X_VAR_INSTINIT29923,1786130 -#define UNIFY_X_VAR_YAPOR_SBA UNIFY_X_VAR_YAPOR_SBA29924,1786185 -#define UNIFY_X_VAR_END UNIFY_X_VAR_END29925,1786244 -#define UNIFY_X_VAR_WRITE_INSTINIT UNIFY_X_VAR_WRITE_INSTINIT29926,1786292 -#define UNIFY_L_X_VAR_INSTINIT UNIFY_L_X_VAR_INSTINIT29927,1786362 -#define UNIFY_L_X_VAR_YAPOR_SBA UNIFY_L_X_VAR_YAPOR_SBA29928,1786424 -#define UNIFY_L_X_VAR_END UNIFY_L_X_VAR_END29929,1786489 -#define UNIFY_L_X_VAR_WRITE_INSTINIT UNIFY_L_X_VAR_WRITE_INSTINIT29930,1786542 -#define UNIFY_X_VAR2_INSTINIT UNIFY_X_VAR2_INSTINIT29931,1786617 -#define UNIFY_X_VAR2_YAPOR_SBA UNIFY_X_VAR2_YAPOR_SBA29932,1786678 -#define UNIFY_X_VAR2_END UNIFY_X_VAR2_END29933,1786741 -#define UNIFY_X_VAR2_WRITE_INSTINIT UNIFY_X_VAR2_WRITE_INSTINIT29934,1786792 -#define UNIFY_L_X_VAR2_INSTINIT UNIFY_L_X_VAR2_INSTINIT29935,1786865 -#define UNIFY_L_X_VAR2_INSTINIT UNIFY_L_X_VAR2_INSTINIT29936,1786931 -#define UNIFY_L_X_VAR2_WRITE_INSTINIT UNIFY_L_X_VAR2_WRITE_INSTINIT29937,1786997 -#define UNIFY_Y_VAR_INSTINIT UNIFY_Y_VAR_INSTINIT29938,1787075 -#define UNIFY_Y_VAR_INSTINIT UNIFY_Y_VAR_INSTINIT29939,1787135 -#define UNIFY_Y_VAR_WRITE_INSTINIT UNIFY_Y_VAR_WRITE_INSTINIT29940,1787195 -#define UNIFY_L_Y_VAR_INSTINIT UNIFY_L_Y_VAR_INSTINIT29941,1787267 -#define UNIFY_L_Y_VAR_INSTINIT UNIFY_L_Y_VAR_INSTINIT29942,1787331 -#define UNIFY_L_Y_VAR_WRITE_INSTINIT UNIFY_L_Y_VAR_WRITE_INSTINIT29943,1787395 -#define UNIFY_X_VAL_INSTINIT UNIFY_X_VAL_INSTINIT29944,1787471 -#define UNIFY_X_VAL_UVALX_NONVAR UNIFY_X_VAL_UVALX_NONVAR29945,1787531 -#define UNIFY_X_VAL_UVALX_NONVAR_NONVAR UNIFY_X_VAL_UVALX_NONVAR_NONVAR29946,1787599 -#define UNIFY_X_VAL_UVALX_NONVAR_UNK UNIFY_X_VAL_UVALX_NONVAR_UNK29947,1787681 -#define UNIFY_X_VAL_UVALX_UNK UNIFY_X_VAL_UVALX_UNK29948,1787757 -#define UNIFY_X_VAL_UVALX_VAR_NONVAR UNIFY_X_VAL_UVALX_VAR_NONVAR29949,1787819 -#define UNIFY_X_VAL_UVALX_VAR_UNK UNIFY_X_VAL_UVALX_VAR_UNK29950,1787895 -#define UNIFY_X_VAL_WRITE_INSTINIT UNIFY_X_VAL_WRITE_INSTINIT29951,1787965 -#define UNIFY_L_X_VAL_INSTINIT UNIFY_L_X_VAL_INSTINIT29952,1788037 -#define UNIFY_L_X_VAL_ULVALX_NONVAR UNIFY_L_X_VAL_ULVALX_NONVAR29953,1788101 -#define UNIFY_L_X_VAL_ULVALX_NONVAR_NONVAR UNIFY_L_X_VAL_ULVALX_NONVAR_NONVAR29954,1788175 -#define UNIFY_L_X_VAL_ULVALX_NONVAR_UNK UNIFY_L_X_VAL_ULVALX_NONVAR_UNK29955,1788263 -#define UNIFY_L_X_VAL_ULVALX_UNK UNIFY_L_X_VAL_ULVALX_UNK29956,1788345 -#define UNIFY_L_X_VAL_ULVALX_VAR_NONVAR UNIFY_L_X_VAL_ULVALX_VAR_NONVAR29957,1788413 -#define UNIFY_L_X_VAL_ULVALX_VAR_UNK UNIFY_L_X_VAL_ULVALX_VAR_UNK29958,1788495 -#define UNIFY_L_X_VAL_WRITE_INSTINIT UNIFY_L_X_VAL_WRITE_INSTINIT29959,1788571 -#define UNIFY_Y_VAL_INSTINIT UNIFY_Y_VAL_INSTINIT29960,1788647 -#define UNIFY_Y_VAL_UVALY_NONVAR UNIFY_Y_VAL_UVALY_NONVAR29961,1788707 -#define UNIFY_Y_VAL_UVALY_NONVAR_NONVAR UNIFY_Y_VAL_UVALY_NONVAR_NONVAR29962,1788775 -#define UNIFY_Y_VAL_UVALY_NONVAR_UNK UNIFY_Y_VAL_UVALY_NONVAR_UNK29963,1788857 -#define UNIFY_Y_VAL_UVALY_UNK UNIFY_Y_VAL_UVALY_UNK29964,1788933 -#define UNIFY_Y_VAL_UVALY_VAR_NONVAR UNIFY_Y_VAL_UVALY_VAR_NONVAR29965,1788995 -#define UNIFY_Y_VAL_UVALY_VAR_UNK UNIFY_Y_VAL_UVALY_VAR_UNK29966,1789071 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT29967,1789141 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT29968,1789213 -#define UNIFY_L_Y_VAL_INSTINIT UNIFY_L_Y_VAL_INSTINIT29969,1789285 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR29970,1789349 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR29971,1789423 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK29972,1789511 -#define UNIFY_L_Y_VAL_ULVALY_UNK UNIFY_L_Y_VAL_ULVALY_UNK29973,1789593 -#define UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR29974,1789661 -#define UNIFY_L_Y_VAL_ULVALY_VAR_UNK UNIFY_L_Y_VAL_ULVALY_VAR_UNK29975,1789743 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT29976,1789820 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT29977,1789897 -#define UNIFY_X_LOC_INSTINIT UNIFY_X_LOC_INSTINIT29978,1789974 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR UNIFY_X_LOC_UVALX_LOC_NONVAR29979,1790035 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR_NONVAR UNIFY_X_LOC_UVALX_LOC_NONVAR_NONVAR29980,1790112 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR_UNK UNIFY_X_LOC_UVALX_LOC_NONVAR_UNK29981,1790203 -#define UNIFY_X_LOC_UVALX_LOC_UNK UNIFY_X_LOC_UVALX_LOC_UNK29982,1790288 -#define UNIFY_X_LOC_UVALX_LOC_VAR_NONVAR UNIFY_X_LOC_UVALX_LOC_VAR_NONVAR29983,1790359 -#define UNIFY_X_LOC_UVALX_LOC_VAR_UNK UNIFY_X_LOC_UVALX_LOC_VAR_UNK29984,1790444 -#define UNIFY_X_LOC_WRITE_INSTINIT UNIFY_X_LOC_WRITE_INSTINIT29985,1790523 -#define UNIFY_X_LOC_WRITE_UNIFY_X_LOC_NONVAR UNIFY_X_LOC_WRITE_UNIFY_X_LOC_NONVAR29986,1790596 -#define UNIFY_X_LOC_WRITE_UNIFY_X_LOC_UNK UNIFY_X_LOC_WRITE_UNIFY_X_LOC_UNK29987,1790689 -#define UNIFY_L_X_LOC_INSTINIT UNIFY_L_X_LOC_INSTINIT29988,1790776 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_NONVAR29989,1790841 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_NONVAR29990,1790924 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_UNK UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_UNK29991,1791021 -#define UNIFY_L_X_LOC_ULVALX_LOC_UNK UNIFY_L_X_LOC_ULVALX_LOC_UNK29992,1791112 -#define UNIFY_L_X_LOC_ULVALX_LOC_VAR_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_VAR_NONVAR29993,1791189 -#define UNIFY_L_X_LOC_ULVALX_LOC_VAR_UNK UNIFY_L_X_LOC_ULVALX_LOC_VAR_UNK29994,1791280 -#define UNIFY_L_X_LOC_WRITE_INSTINIT UNIFY_L_X_LOC_WRITE_INSTINIT29995,1791365 -#define UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_NONVAR UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_NONVAR29996,1791442 -#define UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_UNK UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_UNK29997,1791541 -#define UNIFY_Y_LOC_INSTINIT UNIFY_Y_LOC_INSTINIT29998,1791634 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR29999,1791695 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR30000,1791772 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK30001,1791863 -#define UNIFY_Y_LOC_UVALY_LOC_UNK UNIFY_Y_LOC_UVALY_LOC_UNK30002,1791948 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR30003,1792019 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_UNK UNIFY_Y_LOC_UVALY_LOC_VAR_UNK30004,1792104 -#define UNIFY_Y_LOC_WRITE_INSTINIT UNIFY_Y_LOC_WRITE_INSTINIT30005,1792183 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR30006,1792256 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK30007,1792349 -#define UNIFY_L_Y_LOC_INSTINIT UNIFY_L_Y_LOC_INSTINIT30008,1792436 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR30009,1792501 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR30010,1792584 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK30011,1792681 -#define UNIFY_L_Y_LOC_ULVALY_LOC_UNK UNIFY_L_Y_LOC_ULVALY_LOC_UNK30012,1792772 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR30013,1792849 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK30014,1792940 -#define UNIFY_L_Y_LOC_WRITE_INSTINIT UNIFY_L_Y_LOC_WRITE_INSTINIT30015,1793025 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR30016,1793102 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK30017,1793203 -#define UNIFY_VOID_INSTINIT UNIFY_VOID_INSTINIT30018,1793298 -#define UNIFY_VOID_WRITE_INSTINIT UNIFY_VOID_WRITE_INSTINIT30019,1793357 -#define UNIFY_L_VOID_INSTINIT UNIFY_L_VOID_INSTINIT30020,1793428 -#define UNIFY_L_VOID_WRITE_INSTINIT UNIFY_L_VOID_WRITE_INSTINIT30021,1793491 -#define UNIFY_N_VOIDS_INSTINIT UNIFY_N_VOIDS_INSTINIT30022,1793566 -#define UNIFY_N_VOIDS_WRITE_INSTINIT UNIFY_N_VOIDS_WRITE_INSTINIT30023,1793631 -#define UNIFY_L_N_VOIDS_INSTINIT UNIFY_L_N_VOIDS_INSTINIT30024,1793708 -#define UNIFY_L_N_VOIDS_WRITE_INSTINIT UNIFY_L_N_VOIDS_WRITE_INSTINIT30025,1793777 -#define UNIFY_ATOM_INSTINIT UNIFY_ATOM_INSTINIT30026,1793858 -#define UNIFY_ATOM_UATOM_NONVAR UNIFY_ATOM_UATOM_NONVAR30027,1793917 -#define UNIFY_ATOM_UATOM_UNK UNIFY_ATOM_UATOM_UNK30028,1793984 -#define UNIFY_ATOM_WRITE_INSTINIT UNIFY_ATOM_WRITE_INSTINIT30029,1794045 -#define UNIFY_L_ATOM_INSTINIT UNIFY_L_ATOM_INSTINIT30030,1794116 -#define UNIFY_L_ATOM_ULATOM_NONVAR UNIFY_L_ATOM_ULATOM_NONVAR30031,1794179 -#define UNIFY_L_ATOM_ULATOM_UNK UNIFY_L_ATOM_ULATOM_UNK30032,1794252 -#define UNIFY_L_ATOM_WRITE_INSTINIT UNIFY_L_ATOM_WRITE_INSTINIT30033,1794319 -#define UNIFY_N_ATOMS_INSTINIT UNIFY_N_ATOMS_INSTINIT30034,1794394 -#define UNIFY_N_ATOMS_WRITE_INSTINIT UNIFY_N_ATOMS_WRITE_INSTINIT30035,1794459 -#define UNIFY_FLOAT_INSTINIT UNIFY_FLOAT_INSTINIT30036,1794536 -#define UNIFY_FLOAT_UFLOAT_NONVAR_INIT UNIFY_FLOAT_UFLOAT_NONVAR_INIT30037,1794597 -#define UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR30038,1794678 -#define UNIFY_FLOAT_UFLOAT_NONVAR_END UNIFY_FLOAT_UFLOAT_NONVAR_END30039,1794773 -#define UNIFY_FLOAT_UFLOAT_UNK UNIFY_FLOAT_UFLOAT_UNK30040,1794852 -#define UNIFY_FLOAT_WRITE_INSTINIT UNIFY_FLOAT_WRITE_INSTINIT30041,1794917 -#define UNIFY_L_FLOAT_INSTINIT UNIFY_L_FLOAT_INSTINIT30042,1794990 -#define UNIFY_L_FLOAT_D0ISAPPL UNIFY_L_FLOAT_D0ISAPPL30043,1795055 -#define UNIFY_L_FLOAT_D0ISFUNC UNIFY_L_FLOAT_D0ISFUNC30044,1795120 -#define UNIFY_L_FLOAT_EQUALS UNIFY_L_FLOAT_EQUALS30045,1795185 -#define UNIFY_L_FLOAT_ULFLOAT_UNK UNIFY_L_FLOAT_ULFLOAT_UNK30046,1795246 -#define UNIFY_L_FLOAT_WRITE_INSTINIT UNIFY_L_FLOAT_WRITE_INSTINIT30047,1795317 -#define UNIFY_LONGINT_INSTINIT UNIFY_LONGINT_INSTINIT30048,1795394 -#define UNIFY_LONGINT_D0ISAPPL UNIFY_LONGINT_D0ISAPPL30049,1795459 -#define UNIFY_LONGINT_D0ISFUNC UNIFY_LONGINT_D0ISFUNC30050,1795524 -#define UNIFY_LONGINT_EQUALS UNIFY_LONGINT_EQUALS30051,1795589 -#define UNIFY_LONGINT_ULONGINT_UNK UNIFY_LONGINT_ULONGINT_UNK30052,1795650 -#define UNIFY_LONGINT_WRITE_INSTINIT UNIFY_LONGINT_WRITE_INSTINIT30053,1795723 -#define UNIFY_L_LONGINT_INSTINIT UNIFY_L_LONGINT_INSTINIT30054,1795800 -#define UNIFY_L_LONGINT_D0ISAPPL UNIFY_L_LONGINT_D0ISAPPL30055,1795869 -#define UNIFY_L_LONGINT_D0ISFUNC UNIFY_L_LONGINT_D0ISFUNC30056,1795938 -#define UNIFY_L_LONGINT_EQUALS UNIFY_L_LONGINT_EQUALS30057,1796007 -#define UNIFY_L_LONGINT_ULLONGINT_UNK UNIFY_L_LONGINT_ULLONGINT_UNK30058,1796072 -#define UNIFY_L_LONGINT_WRITE_INSTINIT UNIFY_L_LONGINT_WRITE_INSTINIT30059,1796151 -#define UNIFY_BIGINT_INSTINIT UNIFY_BIGINT_INSTINIT30060,1796232 -#define UNIFY_BIGINT_D0ISAPPL UNIFY_BIGINT_D0ISAPPL30061,1796295 -#define UNIFY_BIGINT_D1ISFUNC_GMP UNIFY_BIGINT_D1ISFUNC_GMP30062,1796358 -#define UNIFY_BIGINT_UBIGINT_UNK UNIFY_BIGINT_UBIGINT_UNK30063,1796429 -#define UNIFY_L_BIGINT_INSTINIT UNIFY_L_BIGINT_INSTINIT30064,1796498 -#define UNIFY_L_BIGINT_D0ISAPPL UNIFY_L_BIGINT_D0ISAPPL30065,1796565 -#define UNIFY_L_BIGINT_D0ISFUNC_GMP UNIFY_L_BIGINT_D0ISFUNC_GMP30066,1796632 -#define UNIFY_L_BIGINT_ULBIGINT_UNK UNIFY_L_BIGINT_ULBIGINT_UNK30067,1796707 -#define UNIFY_DBTERM_INSTINIT UNIFY_DBTERM_INSTINIT30068,1796782 -#define UNIFY_DBTERM_UDBTERM_NONVAR UNIFY_DBTERM_UDBTERM_NONVAR30069,1796845 -#define UNIFY_DBTERM_UDBTERM_UNK UNIFY_DBTERM_UDBTERM_UNK30070,1796920 -#define UNIFY_L_DBTERM_INSTINIT UNIFY_L_DBTERM_INSTINIT30071,1796989 -#define UNIFY_L_DBTERM_ULDBTERM_NONVAR UNIFY_L_DBTERM_ULDBTERM_NONVAR30072,1797056 -#define UNIFY_L_DBTERM_ULDBTERM_UNK UNIFY_L_DBTERM_ULDBTERM_UNK30073,1797138 -#define UNIFY_LIST_INSTINIT UNIFY_LIST_INSTINIT30074,1797214 -#define UNIFY_LIST_READMODE UNIFY_LIST_READMODE30075,1797274 -#define UNIFY_LIST_WRITEMODE UNIFY_LIST_WRITEMODE30076,1797334 -#define UNIFY_LIST_WRITE_INSTINIT UNIFY_LIST_WRITE_INSTINIT30077,1797396 -#define UNIFY_L_LIST_INSTINIT UNIFY_L_LIST_INSTINIT30078,1797468 -#define UNIFY_L_LIST_READMODE UNIFY_L_LIST_READMODE30079,1797532 -#define UNIFY_L_LIST_WRITEMODE UNIFY_L_LIST_WRITEMODE30080,1797596 -#define UNIFY_L_LIST_WRITE_INSTINIT UNIFY_L_LIST_WRITE_INSTINIT30081,1797662 -#define UNIFY_STRUCT_INSTINIT UNIFY_STRUCT_INSTINIT30082,1797738 -#define UNIFY_STRUCT_READMODE UNIFY_STRUCT_READMODE30083,1797802 -#define UNIFY_STRUCT_WRITEMODE UNIFY_STRUCT_WRITEMODE30084,1797866 -#define UNIFY_STRUCT_WRITE_INSTINIT UNIFY_STRUCT_WRITE_INSTINIT30085,1797932 -#define UNIFY_L_STRUC_INSTINIT UNIFY_L_STRUC_INSTINIT30086,1798008 -#define UNIFY_L_STRUC_READMODE UNIFY_L_STRUC_READMODE30087,1798074 -#define UNIFY_L_STRUC_WRITEMODE UNIFY_L_STRUC_WRITEMODE30088,1798140 -#define UNIFY_L_STRUC_WRITE_INSTINIT UNIFY_L_STRUC_WRITE_INSTINIT30089,1798208 -#define SAVE_PAIR_X_INSTINIT SAVE_PAIR_X_INSTINIT30090,1798286 -#define SAVE_PAIR_X_WRITE_INSTINIT SAVE_PAIR_X_WRITE_INSTINIT30091,1798348 -#define SAVE_PAIR_Y_INSTINIT SAVE_PAIR_Y_INSTINIT30092,1798422 -#define SAVE_PAIR_Y_WRITE_INSTINIT SAVE_PAIR_Y_WRITE_INSTINIT30093,1798484 -#define SAVE_APPL_X_INSTINIT SAVE_APPL_X_INSTINIT30094,1798558 -#define SAVE_APPL_X_WRITE_INSTINIT SAVE_APPL_X_WRITE_INSTINIT30095,1798620 -#define SAVE_APPL_Y_INSTINIT SAVE_APPL_Y_INSTINIT30096,1798694 -#define SAVE_APPL_Y_WRITE_INSTINIT SAVE_APPL_Y_WRITE_INSTINIT30097,1798756 -#define UNIFY_X_VAR_INSTINIT UNIFY_X_VAR_INSTINIT30100,1798861 -#define UNIFY_X_VAR_YAPOR_SBA UNIFY_X_VAR_YAPOR_SBA30101,1798916 -#define UNIFY_X_VAR_END UNIFY_X_VAR_END30102,1798975 -#define UNIFY_X_VAR_WRITE_INSTINIT UNIFY_X_VAR_WRITE_INSTINIT30103,1799023 -#define UNIFY_L_X_VAR_INSTINIT UNIFY_L_X_VAR_INSTINIT30104,1799093 -#define UNIFY_L_X_VAR_YAPOR_SBA UNIFY_L_X_VAR_YAPOR_SBA30105,1799155 -#define UNIFY_L_X_VAR_END UNIFY_L_X_VAR_END30106,1799220 -#define UNIFY_L_X_VAR_WRITE_INSTINIT UNIFY_L_X_VAR_WRITE_INSTINIT30107,1799273 -#define UNIFY_X_VAR2_INSTINIT UNIFY_X_VAR2_INSTINIT30108,1799348 -#define UNIFY_X_VAR2_YAPOR_SBA UNIFY_X_VAR2_YAPOR_SBA30109,1799409 -#define UNIFY_X_VAR2_END UNIFY_X_VAR2_END30110,1799472 -#define UNIFY_X_VAR2_WRITE_INSTINIT UNIFY_X_VAR2_WRITE_INSTINIT30111,1799523 -#define UNIFY_L_X_VAR2_INSTINIT UNIFY_L_X_VAR2_INSTINIT30112,1799597 -#define UNIFY_L_X_VAR2_INSTINIT UNIFY_L_X_VAR2_INSTINIT30113,1799663 -#define UNIFY_L_X_VAR2_WRITE_INSTINIT UNIFY_L_X_VAR2_WRITE_INSTINIT30114,1799729 -#define UNIFY_Y_VAR_INSTINIT UNIFY_Y_VAR_INSTINIT30115,1799807 -#define UNIFY_Y_VAR_INSTINIT UNIFY_Y_VAR_INSTINIT30116,1799867 -#define UNIFY_Y_VAR_WRITE_INSTINIT UNIFY_Y_VAR_WRITE_INSTINIT30117,1799927 -#define UNIFY_L_Y_VAR_INSTINIT UNIFY_L_Y_VAR_INSTINIT30118,1799999 -#define UNIFY_L_Y_VAR_INSTINIT UNIFY_L_Y_VAR_INSTINIT30119,1800063 -#define UNIFY_L_Y_VAR_WRITE_INSTINIT UNIFY_L_Y_VAR_WRITE_INSTINIT30120,1800127 -#define UNIFY_X_VAL_INSTINIT UNIFY_X_VAL_INSTINIT30121,1800203 -#define UNIFY_X_VAL_UVALX_NONVAR UNIFY_X_VAL_UVALX_NONVAR30122,1800263 -#define UNIFY_X_VAL_UVALX_NONVAR_NONVAR UNIFY_X_VAL_UVALX_NONVAR_NONVAR30123,1800331 -#define UNIFY_X_VAL_UVALX_NONVAR_UNK UNIFY_X_VAL_UVALX_NONVAR_UNK30124,1800413 -#define UNIFY_X_VAL_UVALX_UNK UNIFY_X_VAL_UVALX_UNK30125,1800489 -#define UNIFY_X_VAL_UVALX_VAR_NONVAR UNIFY_X_VAL_UVALX_VAR_NONVAR30126,1800551 -#define UNIFY_X_VAL_UVALX_VAR_UNK UNIFY_X_VAL_UVALX_VAR_UNK30127,1800627 -#define UNIFY_X_VAL_WRITE_INSTINIT UNIFY_X_VAL_WRITE_INSTINIT30128,1800697 -#define UNIFY_L_X_VAL_INSTINIT UNIFY_L_X_VAL_INSTINIT30129,1800769 -#define UNIFY_L_X_VAL_ULVALX_NONVAR UNIFY_L_X_VAL_ULVALX_NONVAR30130,1800833 -#define UNIFY_L_X_VAL_ULVALX_NONVAR_NONVAR UNIFY_L_X_VAL_ULVALX_NONVAR_NONVAR30131,1800907 -#define UNIFY_L_X_VAL_ULVALX_NONVAR_UNK UNIFY_L_X_VAL_ULVALX_NONVAR_UNK30132,1800995 -#define UNIFY_L_X_VAL_ULVALX_UNK UNIFY_L_X_VAL_ULVALX_UNK30133,1801077 -#define UNIFY_L_X_VAL_ULVALX_VAR_NONVAR UNIFY_L_X_VAL_ULVALX_VAR_NONVAR30134,1801145 -#define UNIFY_L_X_VAL_ULVALX_VAR_UNK UNIFY_L_X_VAL_ULVALX_VAR_UNK30135,1801227 -#define UNIFY_L_X_VAL_WRITE_INSTINIT UNIFY_L_X_VAL_WRITE_INSTINIT30136,1801303 -#define UNIFY_Y_VAL_INSTINIT UNIFY_Y_VAL_INSTINIT30137,1801379 -#define UNIFY_Y_VAL_UVALY_NONVAR UNIFY_Y_VAL_UVALY_NONVAR30138,1801439 -#define UNIFY_Y_VAL_UVALY_NONVAR_NONVAR UNIFY_Y_VAL_UVALY_NONVAR_NONVAR30139,1801507 -#define UNIFY_Y_VAL_UVALY_NONVAR_UNK UNIFY_Y_VAL_UVALY_NONVAR_UNK30140,1801589 -#define UNIFY_Y_VAL_UVALY_UNK UNIFY_Y_VAL_UVALY_UNK30141,1801665 -#define UNIFY_Y_VAL_UVALY_VAR_NONVAR UNIFY_Y_VAL_UVALY_VAR_NONVAR30142,1801727 -#define UNIFY_Y_VAL_UVALY_VAR_UNK UNIFY_Y_VAL_UVALY_VAR_UNK30143,1801803 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT30144,1801873 -#define UNIFY_Y_VAL_WRITE_INSTINIT UNIFY_Y_VAL_WRITE_INSTINIT30145,1801945 -#define UNIFY_L_Y_VAL_INSTINIT UNIFY_L_Y_VAL_INSTINIT30146,1802018 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR30147,1802083 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR UNIFY_L_Y_VAL_ULVALY_NONVAR_NONVAR30148,1802158 -#define UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK UNIFY_L_Y_VAL_ULVALY_NONVAR_UNK30149,1802247 -#define UNIFY_L_Y_VAL_ULVALY_UNK UNIFY_L_Y_VAL_ULVALY_UNK30150,1802330 -#define UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR UNIFY_L_Y_VAL_ULVALY_VAR_NONVAR30151,1802399 -#define UNIFY_L_Y_VAL_ULVALY_VAR_UNK UNIFY_L_Y_VAL_ULVALY_VAR_UNK30152,1802482 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT30153,1802559 -#define UNIFY_L_Y_VAL_WRITE_INSTINIT UNIFY_L_Y_VAL_WRITE_INSTINIT30154,1802636 -#define UNIFY_X_LOC_INSTINIT UNIFY_X_LOC_INSTINIT30155,1802713 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR UNIFY_X_LOC_UVALX_LOC_NONVAR30156,1802774 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR_NONVAR UNIFY_X_LOC_UVALX_LOC_NONVAR_NONVAR30157,1802851 -#define UNIFY_X_LOC_UVALX_LOC_NONVAR_UNK UNIFY_X_LOC_UVALX_LOC_NONVAR_UNK30158,1802942 -#define UNIFY_X_LOC_UVALX_LOC_UNK UNIFY_X_LOC_UVALX_LOC_UNK30159,1803027 -#define UNIFY_X_LOC_UVALX_LOC_VAR_NONVAR UNIFY_X_LOC_UVALX_LOC_VAR_NONVAR30160,1803098 -#define UNIFY_X_LOC_UVALX_LOC_VAR_UNK UNIFY_X_LOC_UVALX_LOC_VAR_UNK30161,1803183 -#define UNIFY_X_LOC_WRITE_INSTINIT UNIFY_X_LOC_WRITE_INSTINIT30162,1803262 -#define UNIFY_X_LOC_WRITE_UNIFY_X_LOC_NONVAR UNIFY_X_LOC_WRITE_UNIFY_X_LOC_NONVAR30163,1803335 -#define UNIFY_X_LOC_WRITE_UNIFY_X_LOC_UNK UNIFY_X_LOC_WRITE_UNIFY_X_LOC_UNK30164,1803428 -#define UNIFY_L_X_LOC_INSTINIT UNIFY_L_X_LOC_INSTINIT30165,1803515 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_NONVAR30166,1803580 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_NONVAR30167,1803663 -#define UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_UNK UNIFY_L_X_LOC_ULVALX_LOC_NONVAR_UNK30168,1803760 -#define UNIFY_L_X_LOC_ULVALX_LOC_UNK UNIFY_L_X_LOC_ULVALX_LOC_UNK30169,1803851 -#define UNIFY_L_X_LOC_ULVALX_LOC_VAR_NONVAR UNIFY_L_X_LOC_ULVALX_LOC_VAR_NONVAR30170,1803928 -#define UNIFY_L_X_LOC_ULVALX_LOC_VAR_UNK UNIFY_L_X_LOC_ULVALX_LOC_VAR_UNK30171,1804019 -#define UNIFY_L_X_LOC_WRITE_INSTINIT UNIFY_L_X_LOC_WRITE_INSTINIT30172,1804104 -#define UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_NONVAR UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_NONVAR30173,1804181 -#define UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_UNK UNIFY_L_X_LOC_WRITE_ULNIFY_X_LOC_UNK30174,1804280 -#define UNIFY_Y_LOC_INSTINIT UNIFY_Y_LOC_INSTINIT30175,1804373 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR30176,1804434 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_NONVAR_NONVAR30177,1804511 -#define UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK UNIFY_Y_LOC_UVALY_LOC_NONVAR_UNK30178,1804602 -#define UNIFY_Y_LOC_UVALY_LOC_UNK UNIFY_Y_LOC_UVALY_LOC_UNK30179,1804687 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR UNIFY_Y_LOC_UVALY_LOC_VAR_NONVAR30180,1804758 -#define UNIFY_Y_LOC_UVALY_LOC_VAR_UNK UNIFY_Y_LOC_UVALY_LOC_VAR_UNK30181,1804843 -#define UNIFY_Y_LOC_WRITE_INSTINIT UNIFY_Y_LOC_WRITE_INSTINIT30182,1804922 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_NONVAR30183,1804995 -#define UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK UNIFY_Y_LOC_WRITE_UNIFY_Y_LOC_UNK30184,1805088 -#define UNIFY_L_Y_LOC_INSTINIT UNIFY_L_Y_LOC_INSTINIT30185,1805175 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR30186,1805240 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_NONVAR30187,1805323 -#define UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_NONVAR_UNK30188,1805420 -#define UNIFY_L_Y_LOC_ULVALY_LOC_UNK UNIFY_L_Y_LOC_ULVALY_LOC_UNK30189,1805511 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR UNIFY_L_Y_LOC_ULVALY_LOC_VAR_NONVAR30190,1805588 -#define UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK UNIFY_L_Y_LOC_ULVALY_LOC_VAR_UNK30191,1805679 -#define UNIFY_L_Y_LOC_WRITE_INSTINIT UNIFY_L_Y_LOC_WRITE_INSTINIT30192,1805764 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_NONVAR30193,1805841 -#define UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK UNIFY_L_Y_LOC_WRITE_ULUNIFY_Y_LOC_UNK30194,1805942 -#define UNIFY_VOID_INSTINIT UNIFY_VOID_INSTINIT30195,1806037 -#define UNIFY_VOID_WRITE_INSTINIT UNIFY_VOID_WRITE_INSTINIT30196,1806096 -#define UNIFY_L_VOID_INSTINIT UNIFY_L_VOID_INSTINIT30197,1806167 -#define UNIFY_L_VOID_WRITE_INSTINIT UNIFY_L_VOID_WRITE_INSTINIT30198,1806230 -#define UNIFY_N_VOIDS_INSTINIT UNIFY_N_VOIDS_INSTINIT30199,1806305 -#define UNIFY_N_VOIDS_WRITE_INSTINIT UNIFY_N_VOIDS_WRITE_INSTINIT30200,1806370 -#define UNIFY_L_N_VOIDS_INSTINIT UNIFY_L_N_VOIDS_INSTINIT30201,1806447 -#define UNIFY_L_N_VOIDS_WRITE_INSTINIT UNIFY_L_N_VOIDS_WRITE_INSTINIT30202,1806516 -#define UNIFY_ATOM_INSTINIT UNIFY_ATOM_INSTINIT30203,1806597 -#define UNIFY_ATOM_UATOM_NONVAR UNIFY_ATOM_UATOM_NONVAR30204,1806656 -#define UNIFY_ATOM_UATOM_UNK UNIFY_ATOM_UATOM_UNK30205,1806723 -#define UNIFY_ATOM_WRITE_INSTINIT UNIFY_ATOM_WRITE_INSTINIT30206,1806784 -#define UNIFY_L_ATOM_INSTINIT UNIFY_L_ATOM_INSTINIT30207,1806855 -#define UNIFY_L_ATOM_ULATOM_NONVAR UNIFY_L_ATOM_ULATOM_NONVAR30208,1806918 -#define UNIFY_L_ATOM_ULATOM_UNK UNIFY_L_ATOM_ULATOM_UNK30209,1806991 -#define UNIFY_L_ATOM_WRITE_INSTINIT UNIFY_L_ATOM_WRITE_INSTINIT30210,1807058 -#define UNIFY_N_ATOMS_INSTINIT UNIFY_N_ATOMS_INSTINIT30211,1807133 -#define UNIFY_N_ATOMS_WRITE_INSTINIT UNIFY_N_ATOMS_WRITE_INSTINIT30212,1807198 -#define UNIFY_FLOAT_INSTINIT UNIFY_FLOAT_INSTINIT30213,1807275 -#define UNIFY_FLOAT_UFLOAT_NONVAR_INIT UNIFY_FLOAT_UFLOAT_NONVAR_INIT30214,1807336 -#define UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR UNIFY_FLOAT_UFLOAT_NONVAR_D0ISFUNCTOR30215,1807417 -#define UNIFY_FLOAT_UFLOAT_NONVAR_END UNIFY_FLOAT_UFLOAT_NONVAR_END30216,1807512 -#define UNIFY_FLOAT_UFLOAT_UNK UNIFY_FLOAT_UFLOAT_UNK30217,1807591 -#define UNIFY_FLOAT_WRITE_INSTINIT UNIFY_FLOAT_WRITE_INSTINIT30218,1807656 -#define UNIFY_L_FLOAT_INSTINIT UNIFY_L_FLOAT_INSTINIT30219,1807729 -#define UNIFY_L_FLOAT_D0ISAPPL UNIFY_L_FLOAT_D0ISAPPL30220,1807794 -#define UNIFY_L_FLOAT_D0ISFUNC UNIFY_L_FLOAT_D0ISFUNC30221,1807859 -#define UNIFY_L_FLOAT_EQUALS UNIFY_L_FLOAT_EQUALS30222,1807924 -#define UNIFY_L_FLOAT_ULFLOAT_UNK UNIFY_L_FLOAT_ULFLOAT_UNK30223,1807985 -#define UNIFY_L_FLOAT_WRITE_INSTINIT UNIFY_L_FLOAT_WRITE_INSTINIT30224,1808056 -#define UNIFY_LONGINT_INSTINIT UNIFY_LONGINT_INSTINIT30225,1808133 -#define UNIFY_LONGINT_D0ISAPPL UNIFY_LONGINT_D0ISAPPL30226,1808198 -#define UNIFY_LONGINT_D0ISFUNC UNIFY_LONGINT_D0ISFUNC30227,1808263 -#define UNIFY_LONGINT_EQUALS UNIFY_LONGINT_EQUALS30228,1808328 -#define UNIFY_LONGINT_ULONGINT_UNK UNIFY_LONGINT_ULONGINT_UNK30229,1808389 -#define UNIFY_LONGINT_WRITE_INSTINIT UNIFY_LONGINT_WRITE_INSTINIT30230,1808462 -#define UNIFY_L_LONGINT_INSTINIT UNIFY_L_LONGINT_INSTINIT30231,1808539 -#define UNIFY_L_LONGINT_D0ISAPPL UNIFY_L_LONGINT_D0ISAPPL30232,1808608 -#define UNIFY_L_LONGINT_D0ISFUNC UNIFY_L_LONGINT_D0ISFUNC30233,1808677 -#define UNIFY_L_LONGINT_EQUALS UNIFY_L_LONGINT_EQUALS30234,1808746 -#define UNIFY_L_LONGINT_ULLONGINT_UNK UNIFY_L_LONGINT_ULLONGINT_UNK30235,1808811 -#define UNIFY_L_LONGINT_WRITE_INSTINIT UNIFY_L_LONGINT_WRITE_INSTINIT30236,1808890 -#define UNIFY_BIGINT_INSTINIT UNIFY_BIGINT_INSTINIT30237,1808971 -#define UNIFY_BIGINT_D0ISAPPL UNIFY_BIGINT_D0ISAPPL30238,1809034 -#define UNIFY_BIGINT_D1ISFUNC_GMP UNIFY_BIGINT_D1ISFUNC_GMP30239,1809097 -#define UNIFY_BIGINT_UBIGINT_UNK UNIFY_BIGINT_UBIGINT_UNK30240,1809168 -#define UNIFY_L_BIGINT_INSTINIT UNIFY_L_BIGINT_INSTINIT30241,1809238 -#define UNIFY_L_BIGINT_D0ISAPPL UNIFY_L_BIGINT_D0ISAPPL30242,1809306 -#define UNIFY_L_BIGINT_D0ISFUNC_GMP UNIFY_L_BIGINT_D0ISFUNC_GMP30243,1809374 -#define UNIFY_L_BIGINT_ULBIGINT_UNK UNIFY_L_BIGINT_ULBIGINT_UNK30244,1809450 -#define UNIFY_DBTERM_INSTINIT UNIFY_DBTERM_INSTINIT30245,1809526 -#define UNIFY_DBTERM_UDBTERM_NONVAR UNIFY_DBTERM_UDBTERM_NONVAR30246,1809590 -#define UNIFY_DBTERM_UDBTERM_UNK UNIFY_DBTERM_UDBTERM_UNK30247,1809666 -#define UNIFY_L_DBTERM_INSTINIT UNIFY_L_DBTERM_INSTINIT30248,1809736 -#define UNIFY_L_DBTERM_ULDBTERM_NONVAR UNIFY_L_DBTERM_ULDBTERM_NONVAR30249,1809804 -#define UNIFY_L_DBTERM_ULDBTERM_UNK UNIFY_L_DBTERM_ULDBTERM_UNK30250,1809886 -#define UNIFY_LIST_INSTINIT UNIFY_LIST_INSTINIT30251,1809962 -#define UNIFY_LIST_READMODE UNIFY_LIST_READMODE30252,1810022 -#define UNIFY_LIST_WRITEMODE UNIFY_LIST_WRITEMODE30253,1810082 -#define UNIFY_LIST_WRITE_INSTINIT UNIFY_LIST_WRITE_INSTINIT30254,1810144 -#define UNIFY_L_LIST_INSTINIT UNIFY_L_LIST_INSTINIT30255,1810216 -#define UNIFY_L_LIST_READMODE UNIFY_L_LIST_READMODE30256,1810280 -#define UNIFY_L_LIST_WRITEMODE UNIFY_L_LIST_WRITEMODE30257,1810344 -#define UNIFY_L_LIST_WRITE_INSTINIT UNIFY_L_LIST_WRITE_INSTINIT30258,1810410 -#define UNIFY_STRUCT_INSTINIT UNIFY_STRUCT_INSTINIT30259,1810486 -#define UNIFY_STRUCT_READMODE UNIFY_STRUCT_READMODE30260,1810550 -#define UNIFY_STRUCT_WRITEMODE UNIFY_STRUCT_WRITEMODE30261,1810614 -#define UNIFY_STRUCT_WRITE_INSTINIT UNIFY_STRUCT_WRITE_INSTINIT30262,1810680 -#define UNIFY_L_STRUC_INSTINIT UNIFY_L_STRUC_INSTINIT30263,1810756 -#define UNIFY_L_STRUC_READMODE UNIFY_L_STRUC_READMODE30264,1810822 -#define UNIFY_L_STRUC_WRITEMODE UNIFY_L_STRUC_WRITEMODE30265,1810888 -#define UNIFY_L_STRUC_WRITE_INSTINIT UNIFY_L_STRUC_WRITE_INSTINIT30266,1810956 -#define SAVE_PAIR_X_INSTINIT SAVE_PAIR_X_INSTINIT30267,1811034 -#define SAVE_PAIR_X_WRITE_INSTINIT SAVE_PAIR_X_WRITE_INSTINIT30268,1811096 -#define SAVE_PAIR_Y_INSTINIT SAVE_PAIR_Y_INSTINIT30269,1811170 -#define SAVE_PAIR_Y_WRITE_INSTINIT SAVE_PAIR_Y_WRITE_INSTINIT30270,1811232 -#define SAVE_APPL_X_INSTINIT SAVE_APPL_X_INSTINIT30271,1811306 -#define SAVE_APPL_X_WRITE_INSTINIT SAVE_APPL_X_WRITE_INSTINIT30272,1811368 -#define SAVE_APPL_Y_INSTINIT SAVE_APPL_Y_INSTINIT30273,1811442 -#define SAVE_APPL_Y_WRITE_INSTINIT SAVE_APPL_Y_WRITE_INSTINIT30274,1811504 -#define WRITE_X_VAR_INSTINIT WRITE_X_VAR_INSTINIT30277,1811606 -#define WRITE_VOID_INSTINIT WRITE_VOID_INSTINIT30278,1811661 -#define WRITE_N_VOIDS_INSTINIT WRITE_N_VOIDS_INSTINIT30279,1811716 -#define WRITE_Y_VAR_INSTINIT WRITE_Y_VAR_INSTINIT30280,1811778 -#define WRITE_X_VAL_INSTINIT WRITE_X_VAL_INSTINIT30281,1811836 -#define WRITE_X_LOC_INSTINIT WRITE_X_LOC_INSTINIT30282,1811894 -#define WRITE_X_LOC_W_X_BOUND WRITE_X_LOC_W_X_BOUND30283,1811952 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK30284,1812013 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK30285,1812070 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK30286,1812127 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK30287,1812184 -#define WRITE_Y_VAL_INSTINIT WRITE_Y_VAL_INSTINIT30288,1812241 -#define WRITE_Y_VAL_INSTINIT WRITE_Y_VAL_INSTINIT30289,1812301 -#define WRITE_Y_LOC_INSTINIT WRITE_Y_LOC_INSTINIT30290,1812361 -#define WRITE_Y_LOC_W_Y_BOUND WRITE_Y_LOC_W_Y_BOUND30291,1812421 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK30292,1812483 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK30293,1812541 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK30294,1812599 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK30295,1812657 -#define WRITE_ATOM_INSTINIT WRITE_ATOM_INSTINIT30296,1812715 -#define WRITE_BIGINT_INSTINIT WRITE_BIGINT_INSTINIT30297,1812773 -#define WRITE_DBTERM_INSTINIT WRITE_DBTERM_INSTINIT30298,1812835 -#define WRITE_FLOAT_INSTINIT WRITE_FLOAT_INSTINIT30299,1812897 -#define WRITE_LONGIT_INSTINIT WRITE_LONGIT_INSTINIT30300,1812957 -#define WRITE_N_ATOMS_INSTINIT WRITE_N_ATOMS_INSTINIT30301,1813019 -#define WRITE_LIST_INSTINIT WRITE_LIST_INSTINIT30302,1813083 -#define WRITE_L_LIST_INSTINIT WRITE_L_LIST_INSTINIT30303,1813141 -#define WRITE_STRUCT_INSTINIT WRITE_STRUCT_INSTINIT30304,1813203 -#define WRITE_L_STRUC_INSTINIT WRITE_L_STRUC_INSTINIT30305,1813265 -#define WRITE_X_VAR_INSTINIT WRITE_X_VAR_INSTINIT30308,1813359 -#define WRITE_VOID_INSTINIT WRITE_VOID_INSTINIT30309,1813414 -#define WRITE_N_VOIDS_INSTINIT WRITE_N_VOIDS_INSTINIT30310,1813469 -#define WRITE_Y_VAR_INSTINIT WRITE_Y_VAR_INSTINIT30311,1813531 -#define WRITE_X_VAL_INSTINIT WRITE_X_VAL_INSTINIT30312,1813589 -#define WRITE_X_LOC_INSTINIT WRITE_X_LOC_INSTINIT30313,1813648 -#define WRITE_X_LOC_W_X_BOUND WRITE_X_LOC_W_X_BOUND30314,1813707 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK30315,1813768 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK30316,1813825 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK30317,1813882 -#define WRITE_X_LOC_W_X_UNK WRITE_X_LOC_W_X_UNK30318,1813939 -#define WRITE_Y_VAL_INSTINIT WRITE_Y_VAL_INSTINIT30319,1813996 -#define WRITE_Y_VAL_INSTINIT WRITE_Y_VAL_INSTINIT30320,1814056 -#define WRITE_Y_LOC_INSTINIT WRITE_Y_LOC_INSTINIT30321,1814116 -#define WRITE_Y_LOC_W_Y_BOUND WRITE_Y_LOC_W_Y_BOUND30322,1814176 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK30323,1814238 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK30324,1814296 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK30325,1814354 -#define WRITE_Y_LOC_W_Y_UNK WRITE_Y_LOC_W_Y_UNK30326,1814412 -#define WRITE_ATOM_INSTINIT WRITE_ATOM_INSTINIT30327,1814470 -#define WRITE_BIGINT_INSTINIT WRITE_BIGINT_INSTINIT30328,1814528 -#define WRITE_DBTERM_INSTINIT WRITE_DBTERM_INSTINIT30329,1814590 -#define WRITE_FLOAT_INSTINIT WRITE_FLOAT_INSTINIT30330,1814652 -#define WRITE_LONGIT_INSTINIT WRITE_LONGIT_INSTINIT30331,1814712 -#define WRITE_N_ATOMS_INSTINIT WRITE_N_ATOMS_INSTINIT30332,1814774 -#define WRITE_LIST_INSTINIT WRITE_LIST_INSTINIT30333,1814838 -#define WRITE_L_LIST_INSTINIT WRITE_L_LIST_INSTINIT30334,1814896 -#define WRITE_STRUCT_INSTINIT WRITE_STRUCT_INSTINIT30335,1814958 -#define WRITE_L_STRUC_INSTINIT WRITE_L_STRUC_INSTINIT30336,1815020 -#define N_ANALYSIS_PASSES N_ANALYSIS_PASSES30343,1815182 -#define JIT_CODE JIT_CODE30344,1815234 -#define FREE_ALLOCATED(FREE_ALLOCATED30405,1819268 -#define ADD_PASS_ACCORDING_TO_KIND(ADD_PASS_ACCORDING_TO_KIND30406,1819314 -#define TREAT_CASE_FOR(TREAT_CASE_FOR30407,1819384 -#define JIT_CODE JIT_CODE30420,1820294 -#define JIT_CODE JIT_CODE30439,1821410 - #define OPCODE(OPCODE30441,1821513 - #undef OPCODEOPCODE30442,1821550 - #define OPCODE(OPCODE30447,1821896 - #undef OPCODEOPCODE30448,1821933 - #define OPCODE(OPCODE30453,1822286 - #undef OPCODEOPCODE30454,1822324 - #define OPCODE(OPCODE30459,1822743 - #undef OPCODEOPCODE30460,1822781 - #define OPCODE(OPCODE30465,1823176 - #undef OPCODEOPCODE30466,1823214 - #define OPCODE(OPCODE30471,1823571 - #undef OPCODEOPCODE30472,1823609 - #define OPCODE(OPCODE30476,1823902 - #undef OPCODEOPCODE30477,1823940 - #define OPCODE(OPCODE30481,1824275 - #undef OPCODEOPCODE30482,1824313 - #define OPCODE(OPCODE30486,1824626 - #undef OPCODEOPCODE30487,1824664 - #define OPCODE(OPCODE30491,1824935 - #undef OPCODEOPCODE30492,1824973 - #define OPCODE(OPCODE30495,1825184 - #undef OPCODEOPCODE30496,1825222 - #define OPCODE(OPCODE30499,1825453 - #undef OPCODEOPCODE30500,1825491 - #define OPCODE(OPCODE30503,1825705 - #undef OPCODEOPCODE30504,1825744 - #define BBLOCK(BBLOCK30507,1825930 - #undef BBLOCKBBLOCK30508,1825969 - #define BBLOCK(BBLOCK30512,1826196 - #undef BBLOCKBBLOCK30513,1826235 - #define BBLOCK(BBLOCK30517,1826472 - #undef BBLOCKBBLOCK30518,1826511 - #define BBLOCK(BBLOCK30522,1826790 - #undef BBLOCKBBLOCK30523,1826829 - #define BBLOCK(BBLOCK30527,1827086 - #undef BBLOCKBBLOCK30528,1827125 - #define BBLOCK(BBLOCK30532,1827358 - #undef BBLOCKBBLOCK30533,1827395 - #define BBLOCK(BBLOCK30534,1827433 - #undef BBLOCKBBLOCK30535,1827472 - #define BBLOCK(BBLOCK30539,1827751 - #undef BBLOCKBBLOCK30540,1827790 - #define BBLOCK(BBLOCK30544,1828111 - #undef BBLOCKBBLOCK30545,1828150 - #define BBLOCK(BBLOCK30549,1828449 - #undef BBLOCKBBLOCK30550,1828488 - #define OPCODE(OPCODE30567,1829600 - #undef OPCODEOPCODE30568,1829636 - #define BBLOCK(BBLOCK30569,1829670 - #undef BBLOCKBBLOCK30570,1829706 -#define JIT_CODE JIT_CODE30596,1831538 -#define AMIJIT_H_AMIJIT_H_30601,1831661 - #define OPCODE(OPCODE30874,1863094 - #undef OPCODEOPCODE30875,1863131 - #define BBLOCK(BBLOCK30876,1863166 - #undef BBLOCKBBLOCK30877,1863203 -#define JIT_CODE JIT_CODE31122,1885854 -#define IN_TRACED_ABSMI_C IN_TRACED_ABSMI_C31128,1886105 -#define HAS_CACHE_REGS HAS_CACHE_REGS31129,1886158 -#undef SHADOW_PSHADOW_P31139,1886582 -#undef SHADOW_CPSHADOW_CP31140,1886616 -#undef SHADOW_HBSHADOW_HB31141,1886652 -#undef SHADOW_YSHADOW_Y31142,1886688 -#undef SHADOW_SSHADOW_S31143,1886722 -#undef PREGPREG31144,1886756 -#define PREG PREG31145,1886783 -#undef CPREGCPREG31146,1886811 -#define CPREG CPREG31147,1886840 -#undef SREGSREG31148,1886870 -#define SREG SREG31149,1886897 -#undef YREGYREG31150,1886925 -#define YREG YREG31151,1886952 -#undef setregssetregs31152,1886980 -#define setregs(setregs31153,1887012 -#undef saveregssaveregs31154,1887046 -#define saveregs(saveregs31155,1887080 -#define OPCODE(OPCODE31157,1887157 -#undef OPCODEOPCODE31158,1887189 -#define I_R I_R31159,1887220 -#define JIT_CODE JIT_CODE31162,1887278 -#define N_TRANSFORM_PASSES N_TRANSFORM_PASSES31163,1887312 -#define BPROLOG_H BPROLOG_H38231,2327352 -#define BP_TRUE BP_TRUE38236,2327546 -#define BP_FALSE BP_FALSE38237,2327578 -#define bp_get_call_arg(bp_get_call_arg38238,2327612 -#define bp_is_atom(bp_is_atom38239,2327660 -#define bp_is_integer(bp_is_integer38240,2327698 -#define bp_is_float(bp_is_float38241,2327742 -#define bp_is_nil(bp_is_nil38242,2327782 -#define bp_is_list(bp_is_list38243,2327818 -#define bp_is_structure(bp_is_structure38244,2327856 -#define bp_is_compound(bp_is_compound38245,2327904 -#define bp_is_unifiable(bp_is_unifiable38246,2327950 -#define bp_is_identical(bp_is_identical38247,2327998 -#define bp_get_integer(bp_get_integer38248,2328047 -#define bp_get_float(bp_get_float38249,2328094 -#define bp_unify(bp_unify38252,2328219 -#define bp_get_arg(bp_get_arg38253,2328254 -#define bp_get_car(bp_get_car38254,2328293 -#define bp_get_cdr(bp_get_cdr38255,2328332 -#define bp_write(bp_write38256,2328371 -#define bp_build_var(bp_build_var38257,2328406 -#define bp_build_integer(bp_build_integer38258,2328449 -#define bp_build_float(bp_build_float38259,2328501 -#define bp_build_atom(bp_build_atom38260,2328549 -#define bp_build_nil(bp_build_nil38261,2328595 -#define bp_build_list(bp_build_list38262,2328639 -#define bp_build_structure(bp_build_structure38263,2328685 -#define bp_insert_pred(bp_insert_pred38264,2328741 -#define TOAM_NOTSET TOAM_NOTSET38267,2328893 -#define curr_out curr_out38268,2328935 -#define BP_ERROR BP_ERROR38269,2328971 -#define INTERRUPT INTERRUPT38270,2329007 -#define exception exception38271,2329045 -#define curr_toam_status curr_toam_status38272,2329083 -#define bp_mount_query_string(bp_mount_query_string38274,2329215 -#define _WITH_DPRINTF_WITH_DPRINTF38878,2367936 -#define PL_KERNEL PL_KERNEL38890,2368716 -#define snprintf(snprintf38891,2368752 -#define PL_KERNEL PL_KERNEL38892,2368786 -#define MAX_DEPTH MAX_DEPTH39030,2378156 -#undef S_YREGS_YREG39077,2381250 -#define is_signalled(is_signalled39134,2385107 -#define SWI_H SWI_H39157,2386393 -#define isDefinedProcedure(isDefinedProcedure39163,2386690 -#define Long Long39294,2394500 -#define Bug(Bug39296,2394572 -#define MALLOC MALLOC39297,2394599 -#define PRIVATE_MEM PRIVATE_MEM39298,2394632 -#define PRIVATE_mem PRIVATE_mem39299,2394675 -#undef IEEE_ArithIEEE_Arith39302,2394892 -#undef Avoid_UnderflowAvoid_Underflow39303,2394931 -#define IEEE_ArithIEEE_Arith39304,2394980 -#define IEEE_ArithIEEE_Arith39305,2395020 -#undef INFNAN_CHECKINFNAN_CHECK39306,2395060 -#define INFNAN_CHECKINFNAN_CHECK39307,2395103 -#undef INFNAN_CHECKINFNAN_CHECK39308,2395147 -#define NO_STRTOD_BIGCOMPNO_STRTOD_BIGCOMP39309,2395190 -#define DBL_DIG DBL_DIG39310,2395244 -#define DBL_MAX_10_EXP DBL_MAX_10_EXP39311,2395279 -#define DBL_MAX_EXP DBL_MAX_EXP39312,2395328 -#define FLT_RADIX FLT_RADIX39313,2395371 -#define DBL_DIG DBL_DIG39314,2395410 -#define DBL_MAX_10_EXP DBL_MAX_10_EXP39315,2395445 -#define DBL_MAX_EXP DBL_MAX_EXP39316,2395494 -#define FLT_RADIX FLT_RADIX39317,2395537 -#define DBL_MAX DBL_MAX39318,2395576 -#define DBL_DIG DBL_DIG39319,2395611 -#define DBL_MAX_10_EXP DBL_MAX_10_EXP39320,2395646 -#define DBL_MAX_EXP DBL_MAX_EXP39321,2395695 -#define FLT_RADIX FLT_RADIX39322,2395738 -#define DBL_MAX DBL_MAX39323,2395777 -#define LONG_MAX LONG_MAX39324,2395812 -#define CONST CONST39325,2395849 -#define CONST CONST39326,2395880 -#define word0(word039335,2396470 -#define word1(word139336,2396501 -#define word0(word039337,2396532 -#define word1(word139338,2396563 -#define dval(dval39339,2396594 -#define STRTOD_DIGLIM STRTOD_DIGLIM39340,2396623 -#define strtod_diglim strtod_diglim39341,2396670 -#define Storeinc(Storeinc39342,2396717 -#define Storeinc(Storeinc39343,2396754 -#define Exp_shift Exp_shift39344,2396791 -#define Exp_shift1 Exp_shift139345,2396830 -#define Exp_msk1 Exp_msk139346,2396871 -#define Exp_msk11 Exp_msk1139347,2396908 -#define Exp_mask Exp_mask39348,2396947 -#define P P39349,2396984 -#define Nbits Nbits39350,2397007 -#define Bias Bias39351,2397038 -#define Emax Emax39352,2397067 -#define Emin Emin39353,2397096 -#define Exp_1 Exp_139354,2397125 -#define Exp_11 Exp_1139355,2397156 -#define Ebits Ebits39356,2397189 -#define Frac_mask Frac_mask39357,2397220 -#define Frac_mask1 Frac_mask139358,2397259 -#define Ten_pmax Ten_pmax39359,2397300 -#define Bletch Bletch39360,2397337 -#define Bndry_mask Bndry_mask39361,2397370 -#define Bndry_mask1 Bndry_mask139362,2397411 -#define LSB LSB39363,2397454 -#define Sign_bit Sign_bit39364,2397481 -#define Log2P Log2P39365,2397518 -#define Tiny0 Tiny039366,2397549 -#define Tiny1 Tiny139367,2397580 -#define Quick_max Quick_max39368,2397611 -#define Int_max Int_max39369,2397650 -#define Avoid_UnderflowAvoid_Underflow39370,2397685 -#undef Sudden_UnderflowSudden_Underflow39371,2397735 -#define Flt_Rounds Flt_Rounds39372,2397786 -#define Flt_Rounds Flt_Rounds39373,2397827 -#undef Check_FLT_ROUNDSCheck_FLT_ROUNDS39374,2397868 -#define Check_FLT_ROUNDSCheck_FLT_ROUNDS39375,2397919 -#define Rounding Rounding39376,2397971 -#undef Check_FLT_ROUNDSCheck_FLT_ROUNDS39377,2398008 -#undef Honor_FLT_ROUNDSHonor_FLT_ROUNDS39378,2398059 -#undef SET_INEXACTSET_INEXACT39379,2398110 -#undef Sudden_UnderflowSudden_Underflow39380,2398151 -#define Sudden_UnderflowSudden_Underflow39381,2398203 -#undef Flt_RoundsFlt_Rounds39382,2398255 -#define Flt_Rounds Flt_Rounds39383,2398294 -#define Exp_shift Exp_shift39384,2398335 -#define Exp_shift1 Exp_shift139385,2398374 -#define Exp_msk1 Exp_msk139386,2398415 -#define Exp_msk11 Exp_msk1139387,2398452 -#define Exp_mask Exp_mask39388,2398491 -#define P P39389,2398528 -#define Nbits Nbits39390,2398551 -#define Bias Bias39391,2398582 -#define Emax Emax39392,2398611 -#define Emin Emin39393,2398640 -#define Exp_1 Exp_139394,2398669 -#define Exp_11 Exp_1139395,2398700 -#define Ebits Ebits39396,2398733 -#define Frac_mask Frac_mask39397,2398764 -#define Frac_mask1 Frac_mask139398,2398803 -#define Bletch Bletch39399,2398844 -#define Ten_pmax Ten_pmax39400,2398877 -#define Bndry_mask Bndry_mask39401,2398914 -#define Bndry_mask1 Bndry_mask139402,2398955 -#define LSB LSB39403,2398998 -#define Sign_bit Sign_bit39404,2399025 -#define Log2P Log2P39405,2399062 -#define Tiny0 Tiny039406,2399093 -#define Tiny1 Tiny139407,2399124 -#define Quick_max Quick_max39408,2399155 -#define Int_max Int_max39409,2399194 -#undef Flt_RoundsFlt_Rounds39410,2399229 -#define Flt_Rounds Flt_Rounds39411,2399268 -#define Exp_shift Exp_shift39412,2399309 -#define Exp_shift1 Exp_shift139413,2399348 -#define Exp_msk1 Exp_msk139414,2399389 -#define Exp_msk11 Exp_msk1139415,2399426 -#define Exp_mask Exp_mask39416,2399465 -#define P P39417,2399502 -#define Nbits Nbits39418,2399525 -#define Bias Bias39419,2399556 -#define Emax Emax39420,2399585 -#define Emin Emin39421,2399614 -#define Exp_1 Exp_139422,2399643 -#define Exp_11 Exp_1139423,2399674 -#define Ebits Ebits39424,2399707 -#define Frac_mask Frac_mask39425,2399738 -#define Frac_mask1 Frac_mask139426,2399777 -#define Ten_pmax Ten_pmax39427,2399818 -#define Bletch Bletch39428,2399855 -#define Bndry_mask Bndry_mask39429,2399888 -#define Bndry_mask1 Bndry_mask139430,2399929 -#define LSB LSB39431,2399972 -#define Sign_bit Sign_bit39432,2399999 -#define Log2P Log2P39433,2400036 -#define Tiny0 Tiny039434,2400067 -#define Tiny1 Tiny139435,2400098 -#define Quick_max Quick_max39436,2400129 -#define Int_max Int_max39437,2400168 -#define ROUND_BIASEDROUND_BIASED39438,2400203 -#define rounded_product(rounded_product39439,2400247 -#define rounded_quotient(rounded_quotient39440,2400298 -#define rounded_product(rounded_product39441,2400351 -#define rounded_quotient(rounded_quotient39442,2400402 -#define Big0 Big039443,2400455 -#define Big1 Big139444,2400484 -#define Pack_32Pack_3239445,2400513 -#define FFFFFFFF FFFFFFFF39470,2403040 -#define FFFFFFFF FFFFFFFF39471,2403077 -#undef ULLongULLong39472,2403114 -#undef Pack_32Pack_3239473,2403145 -#define Llong Llong39474,2403178 -#define ULLong ULLong39475,2403209 -#define ACQUIRE_DTOA_LOCK(ACQUIRE_DTOA_LOCK39476,2403242 -#define FREE_DTOA_LOCK(FREE_DTOA_LOCK39477,2403297 -#define Kmax Kmax39478,2403346 -#define Bcopy(Bcopy39496,2404052 -#undef d0d039503,2404217 -#undef d1d139504,2404241 -#define Scale_Bit Scale_Bit39505,2404265 -#define n_bigtens n_bigtens39506,2404305 -#undef Need_HexdigNeed_Hexdig39507,2404345 -#define Need_HexdigNeed_Hexdig39508,2404387 -#define Need_HexdigNeed_Hexdig39509,2404430 -#define USC USC39510,2404473 -#define NAN_WORD0 NAN_WORD039511,2404501 -#define NAN_WORD1 NAN_WORD139512,2404541 -#define ULbits ULbits39513,2404581 -#define kshift kshift39514,2404615 -#define kmask kmask39515,2404649 -#define CALDATE_HCALDATE_H39522,2404945 -#define CALTIME_HCALTIME_H39553,2406148 -#define LEAPSECS_HLEAPSECS_H39604,2407983 -#define GLOBAL GLOBAL39605,2408018 -#define GLOBALGLOBAL39617,2408433 -#define O_BINARY O_BINARY39618,2408462 -#define O_NDELAY O_NDELAY39619,2408496 -#define TAI_HTAI_H39638,2409090 -#define LL(LL39641,2409202 -#define ULL(ULL39642,2409224 -#define LL(LL39643,2409248 -#define ULL(ULL39644,2409270 -#define tai_approx(tai_approx39648,2409369 -#define tai_less(tai_less39649,2409407 -#define TAI_PACK TAI_PACK39650,2409441 -#define TAIA_HTAIA_H39668,2410038 -#define TAIA_PACK TAIA_PACK39676,2410371 -#define TAIA_FMTFRAC TAIA_FMTFRAC39677,2410407 -#define WINDOWS_LEAN_AND_MEAN WINDOWS_LEAN_AND_MEAN39698,2411150 -#define discardable_buffer discardable_buffer39726,2412060 -#define buffer_ring buffer_ring39727,2412115 -#define current_buffer_id current_buffer_id39728,2412156 -#define BUFFER_H_INCLUDEDBUFFER_H_INCLUDED39734,2412399 -#define STATIC_BUFFER_SIZE STATIC_BUFFER_SIZE39735,2412450 -#define addBuffer(addBuffer39756,2413626 -#define addMultipleBuffer(addMultipleBuffer39757,2413663 -#define allocFromBuffer(allocFromBuffer39758,2413716 -#define baseBuffer(baseBuffer39760,2413835 -#define topBuffer(topBuffer39761,2413874 -#define inBuffer(inBuffer39762,2413911 -#define fetchBuffer(fetchBuffer39763,2413946 -#define seekBuffer(seekBuffer39764,2413987 -#define sizeOfBuffer(sizeOfBuffer39765,2414026 -#define freeSpaceBuffer(freeSpaceBuffer39766,2414069 -#define entriesBuffer(entriesBuffer39767,2414118 -#define initBuffer(initBuffer39768,2414163 -#define emptyBuffer(emptyBuffer39769,2414202 -#define isEmptyBuffer(isEmptyBuffer39770,2414244 -#define popBuffer(popBuffer39771,2414290 -#define discardBuffer(discardBuffer39772,2414328 -#define PL_CODELIST_HPL_CODELIST_H39778,2414578 -#define _WIN32_WINNT _WIN32_WINNT39785,2414924 -#define SAVE_TRACES SAVE_TRACES39786,2414966 -#define BTRACE_DONE BTRACE_DONE39787,2415007 -#define UNW_LOCAL_ONLYUNW_LOCAL_ONLY39788,2415048 -#define MAX_DEPTH MAX_DEPTH39789,2415094 -#define BTRACE_DONE BTRACE_DONE39815,2416608 -#define MAX_SYMBOL_LEN MAX_SYMBOL_LEN39835,2417597 -#define MAX_DEPTH MAX_DEPTH39836,2417645 -#define BTRACE_DONE BTRACE_DONE39837,2417683 -#define MAX_FUNCTION_NAME_LENGTH MAX_FUNCTION_NAME_LENGTH39838,2417725 -#define MAX_MODULE_NAME_LENGTH MAX_MODULE_NAME_LENGTH39839,2417793 -#define LOCK(LOCK39840,2417857 -#define UNLOCK(UNLOCK39841,2417885 -#define PL_CSTACK_H_INCLUDEDPL_CSTACK_H_INCLUDED39882,2420476 -#define CTX_CHAR CTX_CHAR39885,2420574 -#define CTX_CODE CTX_CODE39886,2420609 -#define ENUM_NONE ENUM_NONE39898,2421326 -#define ENUM_CHAR ENUM_CHAR39899,2421363 -#define ENUM_CLASS ENUM_CLASS39900,2421400 -#define ENUM_BOTH ENUM_BOTH39901,2421439 -#define mkfunction(mkfunction39927,2422532 -#define init_locale(init_locale39944,2423489 -#define CT CT39955,2423899 -#define SP SP39956,2423922 -#define SO SO39957,2423945 -#define SY SY39958,2423968 -#define PU PU39959,2423991 -#define DQ DQ39960,2424014 -#define SQ SQ39961,2424037 -#define BQ BQ39962,2424060 -#define UC UC39963,2424083 -#define LC LC39964,2424106 -#define DI DI39965,2424129 -#define isControl(isControl39966,2424152 -#define isBlank(isBlank39967,2424189 -#define isGraph(isGraph39968,2424222 -#define isDigit(isDigit39969,2424255 -#define isLower(isLower39970,2424288 -#define isUpper(isUpper39971,2424321 -#define isSymbol(isSymbol39972,2424354 -#define isPunct(isPunct39973,2424389 -#define isSolo(isSolo39974,2424422 -#define isAlpha(isAlpha39975,2424453 -#define isLetter(isLetter39976,2424486 -#define isSign(isSign39977,2424521 -#define toLower(toLower39978,2424552 -#define makeLower(makeLower39979,2424585 -#define matchingBracket(matchingBracket39980,2424622 -#define Control(Control39981,2424671 -#define PlCharType(PlCharType39982,2424704 -#define isControlW(isControlW39983,2424743 -#define isBlankW(isBlankW39984,2424782 -#define isDigitW(isDigitW39985,2424817 -#define isLowerW(isLowerW39986,2424852 -#define isUpperW(isUpperW39987,2424887 -#define isSymbolW(isSymbolW39988,2424922 -#define isPunctW(isPunctW39989,2424959 -#define isSoloW(isSoloW39990,2424994 -#define isAlphaW(isAlphaW39991,2425027 -#define isLetterW(isLetterW39992,2425062 -#define toLowerW(toLowerW39993,2425099 -#define makeLowerW(makeLowerW39994,2425134 -#define IEEE_MC68k IEEE_MC68k39997,2425212 -#define IEEE_8087 IEEE_808739998,2425251 -#define MALLOC MALLOC39999,2425288 -#define FREE FREE40000,2425319 -#define Long Long40001,2425346 -#define MULTIPLE_THREADSMULTIPLE_THREADS40002,2425373 -#define PL_DTOA_H_INCLUDEDPL_DTOA_H_INCLUDED40009,2425710 -#undef dtoadtoa40010,2425763 -#define dtoa dtoa40011,2425788 -#undef strtodstrtod40012,2425815 -#define strtod strtod40013,2425844 -#undef PL_get_atom_exPL_get_atom_ex40019,2426156 -#define OK_RECURSIVE OK_RECURSIVE40047,2427977 -#define PL_ERROR_H PL_ERROR_H40052,2428219 -#define COMMON(COMMON40053,2428257 -#define MSG_ERRNO MSG_ERRNO40098,2431133 -#define NEEDS_SWINSOCKNEEDS_SWINSOCK40101,2431211 -#define LOCK(LOCK40102,2431257 -#define UNLOCK(UNLOCK40103,2431284 -#undef LD LD40104,2431315 -#define LD LD40105,2431337 -#define IO_TELL IO_TELL40120,2432139 -#define IO_SEE IO_SEE40121,2432173 -#define getStream(getStream40143,2433326 -#define tryGetStream(tryGetStream40144,2433364 -#define releaseStream(releaseStream40145,2433408 -#define SH_ERRORS SH_ERRORS40163,2434358 -#define SH_ALIAS SH_ALIAS40164,2434397 -#define SH_UNLOCKED SH_UNLOCKED40165,2434434 -#define SH_OUTPUT SH_OUTPUT40166,2434477 -#define SH_INPUT SH_INPUT40167,2434516 -#define get_stream_handle(get_stream_handle40169,2434650 -#define isConsoleStream(isConsoleStream40188,2436007 -#define input_context_stack input_context_stack40211,2437747 -#define output_context_stack output_context_stack40212,2437807 -#define DEL DEL40227,2438689 -#define SIO_ABUF SIO_ABUF40235,2439137 -#define SS_READ SS_READ40242,2439441 -#define SS_WRITE SS_WRITE40243,2439477 -#define SS_BOTH SS_BOTH40244,2439515 -#define SS_NOPAIR SS_NOPAIR40245,2439551 -#define SS_INFO(SS_INFO40246,2439591 -#define HAVE_FTRUNCATEHAVE_FTRUNCATE40248,2439687 -#define INVALID_SOCKET INVALID_SOCKET40252,2439881 -#define Swinsock(Swinsock40253,2439931 -#define NFDS(NFDS40254,2439969 -#define NFDS(NFDS40255,2439999 -#define MAX_PENDING MAX_PENDING40264,2440332 -#define S_ISREG(S_ISREG40310,2443093 -#define COUNT_MUTEX_INITIALIZER(COUNT_MUTEX_INITIALIZER40364,2446997 -#define PL_FILE_H_INCLUDEDPL_FILE_H_INCLUDED40370,2447240 -#define statstruct statstruct40389,2448251 -#define statstruct statstruct40390,2448290 -#define statfunc statfunc40391,2448329 -#undef LDLD40392,2448364 -#define LD LD40393,2448385 -#define nano nano40396,2448535 -#define ntick ntick40397,2448562 -#define SEC_TO_UNIX_EPOCH SEC_TO_UNIX_EPOCH40398,2448591 -#define nano nano40400,2448722 -#define ntick ntick40401,2448750 -#define SEC_TO_UNIX_EPOCH SEC_TO_UNIX_EPOCH40402,2448780 -#define F_OK F_OK40404,2448879 -#define CVT_FILENAME CVT_FILENAME40417,2449599 -#define PL_FILES_H_INCLUDEDPL_FILES_H_INCLUDED40426,2450087 -#define ACCESS_EXIST ACCESS_EXIST40427,2450142 -#define ACCESS_EXECUTE ACCESS_EXECUTE40428,2450185 -#define ACCESS_READ ACCESS_READ40429,2450232 -#define ACCESS_WRITE ACCESS_WRITE40430,2450273 -#define MAXRUBBER MAXRUBBER40433,2450355 -#define BUFSIZE BUFSIZE40454,2451644 -#define DEFAULT DEFAULT40455,2451677 -#define SHIFT SHIFT40456,2451710 -#define NEED_ARG NEED_ARG40457,2451739 -#define FMT_ERROR(FMT_ERROR40458,2451774 -#define FMT_ARG(FMT_ARG40459,2451811 -#define FMT_EXEPTION(FMT_EXEPTION40460,2451844 -#define format_predicates format_predicates40468,2452323 -# define dirent dirent40490,2453865 -#define O_EXPANDS_TESTS_EXISTS O_EXPANDS_TESTS_EXISTS40491,2453897 -#define IS_DIR_SEPARATOR(IS_DIR_SEPARATOR40492,2453960 -#define char_to_int(char_to_int40493,2454011 -#define MAXCODE MAXCODE40494,2454052 -#define ANY ANY40495,2454085 -#define STAR STAR40496,2454110 -#define ALT ALT40497,2454137 -#define JMP JMP40498,2454162 -#define ANYOF ANYOF40499,2454187 -#define EXIT EXIT40500,2454216 -#define NOCURL NOCURL40501,2454243 -#define CURL CURL40502,2454274 -#define Output(Output40509,2454557 -#undef isspecial isspecial40525,2455515 -#define isspecial(isspecial40526,2455552 -#define PL_GLOBAL_HPL_GLOBAL_H40537,2456124 -#define GD GD40804,2476353 -#define PL_INCL_H PL_INCL_H40945,2487110 -#define __WINDOWS__ __WINDOWS__40946,2487144 -#define _PL_EMULATION_LAYER _PL_EMULATION_LAYER40947,2487183 -#define PLVERSION PLVERSION40948,2487239 -#define PLNAME PLNAME40949,2487275 -#define SWIP SWIP40950,2487305 -#undef PP40953,2487448 -#undef BB40954,2487466 -#undef SS40955,2487484 -#undef HH40956,2487502 -#undef DEBUGDEBUG40957,2487520 -#define DEBUG(DEBUG40958,2487547 -#define startCritical startCritical40961,2487672 -#define endCritical endCritical40962,2487717 -#undef LOCKLOCK40963,2487758 -#undef UNLOCKUNLOCK40964,2487783 -#define usedStack(usedStack40966,2487876 -#define exception_term exception_term40967,2487914 -#undef Suser_inputSuser_input40968,2487962 -#undef Suser_outputSuser_output40969,2488002 -#undef Suser_errorSuser_error40970,2488044 -#define Suser_input Suser_input40971,2488084 -#define Suser_output Suser_output40972,2488126 -#define Suser_error Suser_error40973,2488170 -#define Scurin Scurin40974,2488212 -#define Scurout Scurout40975,2488244 -#define Sprotocol Sprotocol40976,2488278 -#define Sdin Sdin40977,2488316 -#define Sdout Sdout40978,2488344 -#define source_file_name source_file_name40979,2488374 -#define source_line_no source_line_no40980,2488426 -#define source_line_pos source_line_pos40981,2488474 -#define source_char_no source_char_no40982,2488524 -#define source_byte_no source_byte_no40983,2488572 -#define WORDS_PER_DOUBLE WORDS_PER_DOUBLE40984,2488620 -#define WORDS_PER_DOUBLE WORDS_PER_DOUBLE40985,2488672 -#define allocForeignState(allocForeignState40986,2488724 -#define freeForeignState(freeForeignState40987,2488778 -#define TOINT_CONVERT_FLOAT TOINT_CONVERT_FLOAT41009,2489983 -#define TOINT_TRUNCATE TOINT_TRUNCATE41010,2490041 -#define intNumber(intNumber41011,2490089 -#define intNumber(intNumber41012,2490127 -#define floatNumber(floatNumber41013,2490165 -#define Arg(Arg41020,2490640 -#define A1 A141021,2490666 -#define A2 A241022,2490690 -#define A3 A341023,2490714 -#define A3 A341024,2490738 -#define A4 A441025,2490762 -#define A5 A541026,2490786 -#define A6 A641027,2490810 -#define A7 A741028,2490834 -#define A8 A841029,2490858 -#define A9 A941030,2490882 -#define A10 A1041031,2490906 -#define NULL_ATOM NULL_ATOM41032,2490932 -#define __WINDOWS__ __WINDOWS__41033,2490970 -#define MAXSIGNAL MAXSIGNAL41036,2491136 -#define LOCAL_OVERFLOW LOCAL_OVERFLOW41037,2491174 -#define GLOBAL_OVERFLOW GLOBAL_OVERFLOW41038,2491222 -#define TRAIL_OVERFLOW TRAIL_OVERFLOW41039,2491272 -#define ARGUMENT_OVERFLOW ARGUMENT_OVERFLOW41040,2491320 -#define NOTRACE NOTRACE41041,2491374 -#define METAP METAP41042,2491408 -#define NDET NDET41043,2491438 -#define VA VA41044,2491466 -#define CREF CREF41045,2491490 -#define ISO ISO41046,2491518 -#define WM_SIGNALLED WM_SIGNALLED41047,2491544 -#define ROUND(ROUND41048,2491588 -#define isDefinedProcedure(isDefinedProcedure41049,2491618 -#define OP_MAXPRIORITY OP_MAXPRIORITY41062,2492369 -#define OP_PREFIX OP_PREFIX41063,2492417 -#define OP_INFIX OP_INFIX41064,2492455 -#define OP_POSTFIX OP_POSTFIX41065,2492491 -#define OP_MASK OP_MASK41066,2492531 -#define OP_FX OP_FX41067,2492565 -#define OP_FY OP_FY41068,2492595 -#define OP_XF OP_XF41069,2492625 -#define OP_YF OP_YF41070,2492655 -#define OP_XFX OP_XFX41071,2492685 -#define OP_XFY OP_XFY41072,2492717 -#define OP_YFX OP_YFX41073,2492749 -#define CMP_ERROR CMP_ERROR41074,2492781 -#define CMP_LESS CMP_LESS41075,2492819 -#define CMP_EQUAL CMP_EQUAL41076,2492855 -#define CMP_GREATER CMP_GREATER41077,2492893 -#define CMP_NOTEQ CMP_NOTEQ41078,2492935 -#define GP_FIND GP_FIND41092,2493806 -#define GP_FINDHERE GP_FINDHERE41093,2493840 -#define GP_CREATE GP_CREATE41094,2493882 -#define GP_DEFINE GP_DEFINE41095,2493920 -#define GP_RESOLVE GP_RESOLVE41096,2493958 -#define GP_HOW_MASK GP_HOW_MASK41097,2493998 -#define GP_NAMEARITY GP_NAMEARITY41098,2494040 -#define GP_HIDESYSTEM GP_HIDESYSTEM41099,2494084 -#define GP_TYPE_QUIET GP_TYPE_QUIET41100,2494130 -#define GP_EXISTENCE_ERROR GP_EXISTENCE_ERROR41101,2494176 -#define GP_QUALIFY GP_QUALIFY41102,2494232 -#define GF_EXISTING GF_EXISTING41103,2494272 -#define GF_PROCEDURE GF_PROCEDURE41104,2494314 -#define FT_ATOM FT_ATOM41105,2494358 -#define FT_BOOL FT_BOOL41106,2494392 -#define FT_INTEGER FT_INTEGER41107,2494426 -#define FT_FLOAT FT_FLOAT41108,2494466 -#define FT_TERM FT_TERM41109,2494502 -#define FT_INT64 FT_INT6441110,2494536 -#define FT_FROM_VALUE FT_FROM_VALUE41111,2494572 -#define FT_MASK FT_MASK41112,2494618 -#define SYSTEM_MODE SYSTEM_MODE41113,2494652 -#define PL_malloc_atomic PL_malloc_atomic41114,2494694 -#define EXCEPTION_GUARDED(EXCEPTION_GUARDED41115,2494746 -#define TRUE TRUE41116,2494800 -#define FALSE FALSE41117,2494829 -#define succeed succeed41118,2494860 -#define fail fail41119,2494895 -#define TRY(TRY41120,2494924 -#define M_SYSTEM M_SYSTEM41121,2494951 -#define M_CHARESCAPE M_CHARESCAPE41122,2494988 -#define DBLQ_CHARS DBLQ_CHARS41123,2495033 -#define DBLQ_ATOM DBLQ_ATOM41124,2495074 -#define DBLQ_STRING DBLQ_STRING41125,2495113 -#undef DBLQ_MASKDBLQ_MASK41126,2495156 -#define DBLQ_MASK DBLQ_MASK41127,2495193 -#define UNKNOWN_FAIL UNKNOWN_FAIL41128,2495232 -#define UNKNOWN_WARNING UNKNOWN_WARNING41129,2495277 -#define UNKNOWN_ERROR UNKNOWN_ERROR41130,2495328 -#define UNKNOWN_MASK UNKNOWN_MASK41131,2495375 -#define CHARESCAPE_FEATURE CHARESCAPE_FEATURE41132,2495420 -#define GC_FEATURE GC_FEATURE41133,2495477 -#define TRACE_GC_FEATURE TRACE_GC_FEATURE41134,2495518 -#define TTY_CONTROL_FEATURE TTY_CONTROL_FEATURE41135,2495571 -#define READLINE_FEATURE READLINE_FEATURE41136,2495630 -#define DEBUG_ON_ERROR_FEATURE DEBUG_ON_ERROR_FEATURE41137,2495683 -#define REPORT_ERROR_FEATURE REPORT_ERROR_FEATURE41138,2495748 -#define FILE_CASE_FEATURE FILE_CASE_FEATURE41139,2495809 -#define FILE_CASE_PRESERVING_FEATURE FILE_CASE_PRESERVING_FEATURE41140,2495864 -#define DOS_FILE_NAMES_FEATURE DOS_FILE_NAMES_FEATURE41141,2495941 -#define ISO_FEATURE ISO_FEATURE41142,2496006 -#define OPTIMISE_FEATURE OPTIMISE_FEATURE41143,2496049 -#define FILEVARS_FEATURE FILEVARS_FEATURE41144,2496102 -#define AUTOLOAD_FEATURE AUTOLOAD_FEATURE41145,2496155 -#define CHARCONVERSION_FEATURE CHARCONVERSION_FEATURE41146,2496208 -#define LASTCALL_FEATURE LASTCALL_FEATURE41147,2496273 -#define EX_ABORT_FEATURE EX_ABORT_FEATURE41148,2496326 -#define BACKQUOTED_STRING_FEATURE BACKQUOTED_STRING_FEATURE41149,2496379 -#define SIGNALS_FEATURE SIGNALS_FEATURE41150,2496450 -#define DEBUGINFO_FEATURE DEBUGINFO_FEATURE41151,2496501 -#define WAKEUP_STATE_WAKEUP WAKEUP_STATE_WAKEUP41152,2496556 -#define WAKEUP_STATE_EXCEPTION WAKEUP_STATE_EXCEPTION41153,2496615 -#define WAKEUP_STATE_SKIP_EXCEPTION WAKEUP_STATE_SKIP_EXCEPTION41154,2496680 -#define ESC ESC41161,2497053 -#define streq(streq41162,2497080 -#define CHAR_MODE CHAR_MODE41163,2497111 -#define CODE_MODE CODE_MODE41164,2497150 -#define BYTE_MODE BYTE_MODE41165,2497189 -#define PL_FILE_ABSOLUTE PL_FILE_ABSOLUTE41166,2497228 -#define PL_FILE_OSPATH PL_FILE_OSPATH41167,2497281 -#define PL_FILE_SEARCH PL_FILE_SEARCH41168,2497330 -#define PL_FILE_EXIST PL_FILE_EXIST41169,2497379 -#define PL_FILE_READ PL_FILE_READ41170,2497426 -#define PL_FILE_WRITE PL_FILE_WRITE41171,2497471 -#define PL_FILE_EXECUTE PL_FILE_EXECUTE41172,2497518 -#define PL_FILE_NOERRORS PL_FILE_NOERRORS41173,2497569 -#define PL_FA_ISO PL_FA_ISO41174,2497622 -#define ReadingSource ReadingSource41175,2497661 -#define forwards forwards41177,2497746 -#define __WINDOWS__ __WINDOWS__41178,2497783 -#define getOutputStream(getOutputStream41184,2498114 -#define getTextOutputStream(getTextOutputStream41185,2498165 -#define getBinaryOutputStream(getBinaryOutputStream41186,2498224 -#define getInputStream(getInputStream41187,2498287 -#define getTextInputStream(getTextInputStream41188,2498336 -#define getBinaryInputStream(getBinaryInputStream41189,2498393 -#define BaseName BaseName41196,2498812 -#define DirName DirName41197,2498849 -#define DeleteTemporaryFile(DeleteTemporaryFile41198,2498884 -#define BEGIN_NUMBERVARS(BEGIN_NUMBERVARS41207,2499438 -#define END_NUMBERVARS(END_NUMBERVARS41208,2499491 -#define PL_unify(PL_unify41216,2500021 -#define PL_unify_int64(PL_unify_int6441217,2500058 -#define PL_unify_int64_ex(PL_unify_int64_ex41218,2500107 -#define enableThreads(enableThreads41225,2500555 -#undef HAVE_WCSDUP HAVE_WCSDUP41228,2500644 -#define LOCK(LOCK41229,2500684 -#define UNLOCK(UNLOCK41230,2500711 -#undef LD LD41231,2500742 -#define LD LD41232,2500764 -#define LSTR_MAX LSTR_MAX41233,2500787 -#define wcsdup(wcsdup41244,2501251 -#define MAX_GROUPING MAX_GROUPING41289,2504117 -#define PL_LOCALE_H_INCLUDEDPL_LOCALE_H_INCLUDED41300,2504672 -#define LOCALE_MAGIC LOCALE_MAGIC41301,2504729 -#define PL_HAVE_PL_LOCALE PL_HAVE_PL_LOCALE41318,2505841 -#define __WINDOWS__ __WINDOWS__41324,2506098 -#define WINVER WINVER41325,2506138 -#define _WIN32_IE _WIN32_IE41326,2506169 -#define PL_MSG_EXCEPTION_RAISED PL_MSG_EXCEPTION_RAISED41327,2506206 -#define PL_MSG_IGNORED PL_MSG_IGNORED41328,2506271 -#define PL_MSG_HANDLED PL_MSG_HANDLED41329,2506318 -#define nano nano41336,2506647 -#define ntick ntick41337,2506675 -#define LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR41361,2507898 -#define LOAD_LIBRARY_SEARCH_DEFAULT_DIRS LOAD_LIBRARY_SEARCH_DEFAULT_DIRS41362,2507983 -#define wstreq(wstreq41393,2509644 -#define MAXREGSTRLEN MAXREGSTRLEN41395,2509749 -#define MAXOPTIONS MAXOPTIONS41406,2510207 -#define OPTION_H_INCLUDEDOPTION_H_INCLUDED41429,2511303 -#define OPT_BOOL OPT_BOOL41430,2511354 -#define OPT_INT OPT_INT41431,2511389 -#define OPT_STRING OPT_STRING41432,2511422 -#define OPT_ATOM OPT_ATOM41433,2511461 -#define OPT_TERM OPT_TERM41434,2511496 -#define OPT_LONG OPT_LONG41435,2511531 -#define OPT_NATLONG OPT_NATLONG41436,2511566 -#define OPT_SIZE OPT_SIZE41437,2511607 -#define OPT_DOUBLE OPT_DOUBLE41438,2511642 -#define OPT_LOCALE OPT_LOCALE41439,2511681 -#define OPT_TYPE_MASK OPT_TYPE_MASK41440,2511720 -#define OPT_INF OPT_INF41441,2511765 -#define OPT_ALL OPT_ALL41442,2511798 -#define _POSIX_PTHREAD_SEMANTICS _POSIX_PTHREAD_SEMANTICS41451,2512168 -#define __MINGW_USE_VC2005_COMPAT __MINGW_USE_VC2005_COMPAT41452,2512235 -#define statstruct statstruct41453,2512304 -#define statstruct statstruct41454,2512343 -#define statfunc statfunc41455,2512382 -#define LOCK(LOCK41457,2512467 -#define UNLOCK(UNLOCK41458,2512495 -#define DEFAULT_PATH DEFAULT_PATH41459,2512527 -#define timespec_to_double(timespec_to_double41463,2512666 -#define Hz Hz41464,2512722 -# define Hz Hz41465,2512746 -# define Hz Hz41466,2512772 -#define CPU_TIME_DONECPU_TIME_DONE41468,2512843 -#define CPU_TIME_DONECPU_TIME_DONE41469,2512888 -#define CpuCount(CpuCount41474,2513057 -#define O_HAVE_TERMIO O_HAVE_TERMIO41482,2513443 -#define termios termios41483,2513490 -#define O_HAVE_TERMIO O_HAVE_TERMIO41484,2513525 -#define O_HAVE_TERMIO O_HAVE_TERMIO41485,2513572 -#define TTY_STATE(TTY_STATE41490,2513780 -#define TIOCGETA TIOCGETA41494,2513969 -#define SPECIFIC_SYSTEM SPECIFIC_SYSTEM41512,2514957 -#undef UNION_WAITUNION_WAIT41513,2515009 -#define wait_t wait_t41514,2515049 -# define WEXITSTATUS(WEXITSTATUS41515,2515083 -# define WIFEXITED(WIFEXITED41516,2515128 -#define wait_t wait_t41517,2515169 -#define WEXITSTATUS(WEXITSTATUS41518,2515203 -#define WTERMSIG(WTERMSIG41519,2515247 -#define SPECIFIC_SYSTEM SPECIFIC_SYSTEM41522,2515372 -#define SPECIFIC_SYSTEM SPECIFIC_SYSTEM41524,2515464 -#define PATHSEP PATHSEP41528,2515666 -#define EXEC_EXTENSIONS EXEC_EXTENSIONS41529,2515702 -#define PATHSEP PATHSEP41530,2515754 -#define isRelativePath(isRelativePath41532,2515834 -#define PAUSE_DONE PAUSE_DONE41534,2515944 -#define PAUSE_DONE PAUSE_DONE41535,2515986 -#define PAUSE_DONE PAUSE_DONE41537,2516061 -#define PAUSE_DONE PAUSE_DONE41539,2516136 -#define PAUSE_DONE PAUSE_DONE41541,2516214 -#define PAUSE_DONE PAUSE_DONE41543,2516336 -#define PAUSE_DONE PAUSE_DONE41545,2516411 -#define STREAM_OPEN_BIN_READ STREAM_OPEN_BIN_READ41550,2516556 -#define STREAM_OPEN_BIN_WRITE STREAM_OPEN_BIN_WRITE41551,2516615 -#define PIPE PIPE41552,2516676 -#define Popen(Popen41553,2516703 -#define Pclose(Pclose41554,2516732 -#define MAXPATHLEN MAXPATHLEN41555,2516763 -#define MAXPATHLEN MAXPATHLEN41556,2516802 -#define FD_ZERO(FD_ZERO41560,2516939 -#define FD_SET(FD_SET41561,2516972 -#define FD_ISSET(FD_ISSET41562,2517004 -#define TTY_COOKED TTY_COOKED41563,2517040 -#define TTY_RAW TTY_RAW41564,2517080 -#define TTY_OUTPUT TTY_OUTPUT41565,2517114 -#define TTY_SAVE TTY_SAVE41566,2517154 -#define IsaTty(IsaTty41572,2517460 -#undef LDLD41575,2517534 -#define LD LD41576,2517554 -#define setHandle(setHandle41577,2517576 -#define valHandleP(valHandleP41578,2517613 -#define valHandle(valHandle41579,2517652 -#define PL_PRIVITF_H_INCLUDEDPL_PRIVITF_H_INCLUDED41591,2518300 -#define LOCK(LOCK41608,2518937 -#define UNLOCK(UNLOCK41609,2518964 -#define SO_EXT SO_EXT41657,2521838 -#define SO_PATH SO_PATH41658,2521872 -#define CharTypeW(CharTypeW41672,2522654 -#define PlBlankW(PlBlankW41673,2522691 -#define PlUpperW(PlUpperW41674,2522726 -#define PlIdStartW(PlIdStartW41675,2522761 -#define PlIdContW(PlIdContW41676,2522800 -#define PlSymbolW(PlSymbolW41677,2522837 -#define PlPunctW(PlPunctW41678,2522874 -#define PlSoloW(PlSoloW41679,2522909 -#define PlInvalidW(PlInvalidW41680,2522942 -#define syntaxError(syntaxError41687,2523478 -#define getchr(getchr41696,2524151 -#define getchrq(getchrq41697,2524183 -#define ensure_space(ensure_space41698,2524217 -#define set_start_line set_start_line41699,2524261 -#define rawSyntaxError(rawSyntaxError41701,2524402 -#define utf8_get_uchar(utf8_get_uchar41745,2527060 -#define FASTBUFFERSIZE FASTBUFFERSIZE41746,2527106 -#define RD_MAGIC RD_MAGIC41760,2528080 -#define rdhere rdhere41820,2532537 -#define rdbase rdbase41821,2532568 -#define rdend rdend41822,2532599 -#define last_token_start last_token_start41823,2532628 -#define rb rb41824,2532679 -#define DO_CHARESCAPE DO_CHARESCAPE41825,2532702 -#define NULL_ATOM NULL_ATOM41826,2532747 -#define PAREN_MATCHING PAREN_MATCHING41830,2532904 -#undef ESC ESC41831,2532951 -#undef META META41832,2532975 -#define savestring(savestring41833,2533001 -#define RL_STATE_INITIALIZED RL_STATE_INITIALIZED41835,2533094 -#define rl_set_prompt(rl_set_prompt41836,2533154 -#define rl_clear_pending_input(rl_clear_pending_input41837,2533200 -#define rl_cleanup_after_signal(rl_cleanup_after_signal41838,2533264 -#undef read read41864,2534743 -#define PRED(PRED41866,2534827 -#define PL_SHARED_HPL_SHARED_H41870,2534954 -#define __WINDOWS__ __WINDOWS__41871,2534991 -#define LOCAL_LD LOCAL_LD41872,2535031 -#define LD LD41873,2535065 -#define ARG1_LD ARG1_LD41874,2535087 -#define ARG_LDARG_LD41875,2535119 -#define GET_LDGET_LD41876,2535148 -#define PRED_LDPRED_LD41877,2535177 -#define PASS_LDPASS_LD41878,2535208 -#define PASS_LD1 PASS_LD141879,2535239 -#define IGNORE_LDIGNORE_LD41880,2535273 -#define REGS_FROM_LDREGS_FROM_LD41881,2535308 -#define LD_FROM_REGSLD_FROM_REGS41882,2535349 -#define LOCAL_LD LOCAL_LD41883,2535390 -#define LD LD41884,2535424 -#define GET_LD GET_LD41885,2535446 -#define ARG1_LD ARG1_LD41886,2535476 -#define ARG_LD ARG_LD41887,2535508 -#define PASS_LD1 PASS_LD141888,2535538 -#define PASS_LD PASS_LD41889,2535572 -#define PRED_LD PRED_LD41890,2535604 -#define IGNORE_LD IGNORE_LD41891,2535636 -#define REGS_FROM_LD REGS_FROM_LD41892,2535672 -#define LD_FROM_REGS LD_FROM_REGS41893,2535714 -#define __unix__ __unix__41897,2535896 -#define PL_KERNEL PL_KERNEL41898,2535932 -#define O_STRING O_STRING41899,2535970 -#define O_QUASIQUOTATIONS O_QUASIQUOTATIONS41900,2536006 -#define O_GMP O_GMP41901,2536060 -#define NOTTYCONTROL NOTTYCONTROL41902,2536090 -#define O_DDE O_DDE41903,2536134 -#define O_DLL O_DLL41904,2536164 -#define O_HASDRIVES O_HASDRIVES41905,2536194 -#define O_HASSHARES O_HASSHARES41906,2536236 -#define O_XOS O_XOS41907,2536278 -#define O_RLC O_RLC41908,2536308 -#define EMULATE_DLOPEN EMULATE_DLOPEN41909,2536338 -#define O_PLMT O_PLMT41910,2536386 -#undef _REENTRANT_REENTRANT41911,2536418 -#define COMMON(COMMON41912,2536456 -#define MAY_ALIAS MAY_ALIAS41913,2536488 -#define MAY_ALIASMAY_ALIAS41914,2536526 -#define PL_HAVE_TERM_TPL_HAVE_TERM_T41915,2536563 -#define GLOBAL_LD GLOBAL_LD41919,2536767 -#define REDIR_MAGIC REDIR_MAGIC41920,2536805 -#define EOS EOS41943,2538323 -#define BUFFER_RING_SIZE BUFFER_RING_SIZE41944,2538349 -#define True(True41971,2540190 -#define False(False41972,2540218 -#define set(set41973,2540248 -#define clear(clear41974,2540274 -#define P_QUASI_QUOTATION_SYNTAX P_QUASI_QUOTATION_SYNTAX41975,2540304 -#define PLFLAG_CHARESCAPE PLFLAG_CHARESCAPE41976,2540372 -#define PLFLAG_GC PLFLAG_GC41977,2540426 -#define PLFLAG_TRACE_GC PLFLAG_TRACE_GC41978,2540464 -#define PLFLAG_TTY_CONTROL PLFLAG_TTY_CONTROL41979,2540514 -#define PLFLAG_READLINE PLFLAG_READLINE41980,2540570 -#define PLFLAG_DEBUG_ON_ERROR PLFLAG_DEBUG_ON_ERROR41981,2540620 -#define PLFLAG_REPORT_ERROR PLFLAG_REPORT_ERROR41982,2540682 -#define PLFLAG_FILE_CASE PLFLAG_FILE_CASE41983,2540740 -#define PLFLAG_FILE_CASE_PRESERVING PLFLAG_FILE_CASE_PRESERVING41984,2540792 -#define PLFLAG_DOS_FILE_NAMES PLFLAG_DOS_FILE_NAMES41985,2540866 -#define ALLOW_VARNAME_FUNCTOR ALLOW_VARNAME_FUNCTOR41986,2540928 -#define PLFLAG_ISO PLFLAG_ISO41987,2540990 -#define PLFLAG_OPTIMISE PLFLAG_OPTIMISE41988,2541030 -#define PLFLAG_FILEVARS PLFLAG_FILEVARS41989,2541080 -#define PLFLAG_AUTOLOAD PLFLAG_AUTOLOAD41990,2541130 -#define PLFLAG_CHARCONVERSION PLFLAG_CHARCONVERSION41991,2541180 -#define PLFLAG_LASTCALL PLFLAG_LASTCALL41992,2541242 -#define PLFLAG_EX_ABORT PLFLAG_EX_ABORT41993,2541292 -#define PLFLAG_BACKQUOTED_STRING PLFLAG_BACKQUOTED_STRING41994,2541342 -#define PLFLAG_SIGNALS PLFLAG_SIGNALS41995,2541410 -#define PLFLAG_DEBUGINFO PLFLAG_DEBUGINFO41996,2541458 -#define PLFLAG_FILEERRORS PLFLAG_FILEERRORS41997,2541510 -#define PLFLAG_WARN_OVERRIDE_IMPLICIT_IMPORT PLFLAG_WARN_OVERRIDE_IMPLICIT_IMPORT41998,2541564 -#define PLFLAG_QUASI_QUOTES PLFLAG_QUASI_QUOTES41999,2541656 -#define M_SYSTEM M_SYSTEM42000,2541714 -#define M_CHARESCAPE M_CHARESCAPE42001,2541750 -#define DBLQ_CHARS DBLQ_CHARS42002,2541794 -#define DBLQ_ATOM DBLQ_ATOM42003,2541834 -#define DBLQ_STRING DBLQ_STRING42004,2541872 -#define DBLQ_MASK DBLQ_MASK42005,2541914 -#define UNKNOWN_FAIL UNKNOWN_FAIL42006,2541952 -#define UNKNOWN_WARNING UNKNOWN_WARNING42007,2541996 -#define UNKNOWN_ERROR UNKNOWN_ERROR42008,2542046 -#define UNKNOWN_MASK UNKNOWN_MASK42009,2542092 -#define LONGATOM_CHECK LONGATOM_CHECK42010,2542136 -#define SINGLETON_CHECK SINGLETON_CHECK42011,2542184 -#define MULTITON_CHECK MULTITON_CHECK42012,2542234 -#define DISCONTIGUOUS_STYLE DISCONTIGUOUS_STYLE42013,2542282 -#define DYNAMIC_STYLE DYNAMIC_STYLE42014,2542340 -#define CHARSET_CHECK CHARSET_CHECK42015,2542386 -#define SEMSINGLETON_CHECK SEMSINGLETON_CHECK42016,2542432 -#define NOEFFECT_CHECK NOEFFECT_CHECK42017,2542488 -#define VARBRANCH_CHECK VARBRANCH_CHECK42018,2542536 -#define MULTIPLE_CHECK MULTIPLE_CHECK42019,2542586 -#define MAXNEWLINES MAXNEWLINES42020,2542634 -#define debugstatus debugstatus42021,2542676 -#define truePrologFlag(truePrologFlag42022,2542718 -#define setPrologFlagMask(setPrologFlagMask42023,2542766 -#define clearPrologFlagMask(clearPrologFlagMask42024,2542820 -#define SIG_PROLOG_OFFSET SIG_PROLOG_OFFSET42025,2542878 -#define SIG_EXCEPTION SIG_EXCEPTION42026,2542932 -#define SIG_ATOM_GC SIG_ATOM_GC42027,2542978 -#define SIG_GC SIG_GC42028,2543020 -#define SIG_THREAD_SIGNAL SIG_THREAD_SIGNAL42029,2543052 -#define SIG_FREECLAUSES SIG_FREECLAUSES42030,2543106 -#define SIG_PLABORT SIG_PLABORT42031,2543156 -#define CRLF_MAPPING CRLF_MAPPING42034,2543241 -#define LOG(LOG42035,2543284 -#define __android_log_print(__android_log_print42036,2543309 -#define ANDROID_LOG_INFO ANDROID_LOG_INFO42037,2543366 -#define ANDROID_LOG_ERROR ANDROID_LOG_ERROR42038,2543417 -#define ANDROID_LOG_DEBUG ANDROID_LOG_DEBUG42039,2543470 -#define LOG(LOG42040,2543523 -#define O_LARGEFILES O_LARGEFILES42041,2543548 -#undef O_LARGEFILESO_LARGEFILES42042,2543591 -#define PL_KERNEL PL_KERNEL42043,2543632 -#define NEEDS_SWINSOCKNEEDS_SWINSOCK42044,2543669 -#define O_PLMT O_PLMT42045,2543715 -#define ROUND(ROUND42046,2543747 -#define UNDO_SIZE UNDO_SIZE42047,2543777 -#define FALSE FALSE42048,2543815 -#define TRUE TRUE42049,2543845 -#define char_to_int(char_to_int42050,2543873 -#define TMPBUFSIZE TMPBUFSIZE42051,2543915 -#define SLOCK(SLOCK42053,2544031 -#define SUNLOCK(SUNLOCK42054,2544061 -#define SLOCK(SLOCK42056,2544135 -#define SUNLOCK(SUNLOCK42057,2544165 -#define STRYLOCK(STRYLOCK42058,2544199 -#define DEBUG_IO_LOCKS DEBUG_IO_LOCKS42062,2544423 -#define INVALID_SOCKET INVALID_SOCKET42069,2544692 -#define Swinsock(Swinsock42070,2544740 -#define NFDS(NFDS42071,2544776 -#define NFDS(NFDS42072,2544804 -#define NEXTCHR(NEXTCHR42135,2547968 -#define OUTCHR(OUTCHR42136,2548004 -#define valdigit(valdigit42137,2548038 -#define A_LEFT A_LEFT42138,2548076 -#define A_RIGHT A_RIGHT42139,2548110 -#define SNPRINTF3(SNPRINTF342140,2548146 -#define SNPRINTF4(SNPRINTF442141,2548186 -#define FD_CLOEXEC FD_CLOEXEC42156,2549137 -#define O_BINARY O_BINARY42158,2549249 -#undef popenpopen42163,2549490 -#undef pclosepclose42164,2549520 -#define popen(popen42165,2549552 -#define pclose(pclose42166,2549584 -#define STDIO(STDIO42208,2552392 -#define SIO_STDIO SIO_STDIO42209,2552424 -#define STDIO_STREAMS STDIO_STREAMS42210,2552464 -#define PL_STRING_H_INCLUDEDPL_STRING_H_INCLUDED42251,2554326 -#define LOCK_TABLE(LOCK_TABLE42254,2554424 -#define UNLOCK_TABLE(UNLOCK_TABLE42255,2554463 -#define LOCK_TABLE(LOCK_TABLE42256,2554506 -#define UNLOCK_TABLE(UNLOCK_TABLE42257,2554545 -#define TABLE_H_INCLUDEDTABLE_H_INCLUDED42278,2555520 -#define TABLE_UNLOCKED TABLE_UNLOCKED42319,2557991 -#define TABLE_MASK TABLE_MASK42320,2558038 -#define pointerHashValue(pointerHashValue42321,2558077 -#define for_table(for_table42322,2558128 -#define for_unlocked_table(for_unlocked_table42323,2558165 -#define __MINGW_USE_VC2005_COMPAT __MINGW_USE_VC2005_COMPAT42326,2558259 -#define timezone timezone42327,2558327 -#define HAVE_VAR_TIMEZONEHAVE_VAR_TIMEZONE42328,2558362 -#define TAI_UTC_OFFSET TAI_UTC_OFFSET42329,2558414 -#define HAS_STAMP HAS_STAMP42330,2558461 -#define HAS_WYDAY HAS_WYDAY42331,2558499 -#define NO_UTC_OFFSET NO_UTC_OFFSET42332,2558537 -# define __isleap(__isleap42361,2560173 -#define ISO_WEEK_START_WDAY ISO_WEEK_START_WDAY42362,2560211 -#define ISO_WEEK1_WDAY ISO_WEEK1_WDAY42363,2560270 -#define YDAY_MINIMUM YDAY_MINIMUM42364,2560319 -#define OUT1DIGIT(OUT1DIGIT42368,2560551 -#define OUT2DIGITS(OUT2DIGITS42369,2560590 -#define OUT3DIGITS(OUT3DIGITS42370,2560631 -#define OUT2DIGITS_SPC(OUT2DIGITS_SPC42371,2560672 -#define OUTNUMBER(OUTNUMBER42372,2560721 -#define SUBFORMAT(SUBFORMAT42373,2560760 -#define OUTCHR(OUTCHR42374,2560799 -#define OUTSTR(OUTSTR42375,2560832 -#define OUTSTRA(OUTSTRA42376,2560865 -#define OUTATOM(OUTATOM42377,2560900 -#define NOARG NOARG42383,2561210 -#undef LDLD42388,2561464 -#define LD LD42389,2561485 -#define INT64_DIGITS INT64_DIGITS42393,2561700 -#define PL_TEXT_H_INCLUDEDPL_TEXT_H_INCLUDED42415,2563037 -#define PL_init_text(PL_init_text42439,2564522 -#define PL_THREAD_H_DEFINEDPL_THREAD_H_DEFINED42444,2564731 -#define simpleMutexInit(simpleMutexInit42446,2564844 -#define simpleMutexDelete(simpleMutexDelete42447,2564893 -#define simpleMutexLock(simpleMutexLock42448,2564946 -#define simpleMutexUnlock(simpleMutexUnlock42449,2564995 -#define NEED_RECURSIVE_MUTEX_INIT NEED_RECURSIVE_MUTEX_INIT42451,2565111 -#define recursiveMutexDelete(recursiveMutexDelete42452,2565180 -#define recursiveMutexLock(recursiveMutexLock42453,2565239 -#define recursiveMutexTryLock(recursiveMutexTryLock42454,2565294 -#define recursiveMutexUnlock(recursiveMutexUnlock42455,2565355 -#define L_MISC L_MISC42470,2566538 -#define L_ALLOC L_ALLOC42471,2566569 -#define L_ATOM L_ATOM42472,2566602 -#define L_FLAG L_FLAG42473,2566633 -#define L_FUNCTOR L_FUNCTOR42474,2566664 -#define L_RECORD L_RECORD42475,2566701 -#define L_THREAD L_THREAD42476,2566736 -#define L_PREDICATE L_PREDICATE42477,2566771 -#define L_MODULE L_MODULE42478,2566812 -#define L_TABLE L_TABLE42479,2566847 -#define L_BREAK L_BREAK42480,2566880 -#define L_FILE L_FILE42481,2566913 -#define L_SEETELL L_SEETELL42482,2566944 -#define L_PLFLAG L_PLFLAG42483,2566981 -#define L_OP L_OP42484,2567016 -#define L_INIT L_INIT42485,2567043 -#define L_TERM L_TERM42486,2567074 -#define L_GC L_GC42487,2567105 -#define L_AGC L_AGC42488,2567132 -#define L_STOPTHEWORLD L_STOPTHEWORLD42489,2567161 -#define L_FOREIGN L_FOREIGN42490,2567208 -#define L_OS L_OS42491,2567245 -#define L_LOCALE L_LOCALE42492,2567272 -#define L_DDE L_DDE42493,2567307 -#define L_CSTACK L_CSTACK42494,2567336 -#define IF_MT(IF_MT42495,2567371 -#define countingMutexLock(countingMutexLock42496,2567400 -#define countingMutexLock(countingMutexLock42497,2567454 -#define countingMutexUnlock(countingMutexUnlock42498,2567508 -#define PL_LOCK(PL_LOCK42499,2567566 -#define PL_UNLOCK(PL_UNLOCK42500,2567600 -#define PL_LOCK(PL_LOCK42501,2567638 -#define PL_UNLOCK(PL_UNLOCK42502,2567672 -#undef O_DEBUG_MTO_DEBUG_MT42503,2567710 -#define IOLOCK IOLOCK42504,2567748 -#define PL_LOCK(PL_LOCK42505,2567780 -#define PL_UNLOCK(PL_UNLOCK42506,2567814 -#define UNICODE_MAP_SIZE UNICODE_MAP_SIZE42510,2567932 -#define F(F42511,2567980 -#define U_ID_START U_ID_START42512,2567999 -#define U_ID_CONTINUE U_ID_CONTINUE42513,2568036 -#define U_UPPERCASE U_UPPERCASE42514,2568079 -#define U_SEPARATOR U_SEPARATOR42515,2568119 -#define U_SYMBOL U_SYMBOL42516,2568159 -#define U_OTHER U_OTHER42517,2568193 -#define U_CONTROL U_CONTROL42518,2568225 -#define CONT(CONT42630,2574067 -#define VAL(VAL42631,2574094 -#define UTF8_H_INCLUDEDUTF8_H_INCLUDED42644,2574800 -#define PL_MB_LEN_MAX PL_MB_LEN_MAX42645,2574848 -#define UTF8_MALFORMED_REPLACEMENT UTF8_MALFORMED_REPLACEMENT42646,2574893 -#define ISUTF8_MB(ISUTF8_MB42647,2574964 -#define ISUTF8_CB(ISUTF8_CB42648,2575001 -#define ISUTF8_FB2(ISUTF8_FB242649,2575038 -#define ISUTF8_FB3(ISUTF8_FB342650,2575077 -#define ISUTF8_FB4(ISUTF8_FB442651,2575116 -#define ISUTF8_FB5(ISUTF8_FB542652,2575155 -#define ISUTF8_FB6(ISUTF8_FB642653,2575194 -#define UTF8_FBN(UTF8_FBN42654,2575233 -#define UTF8_FBV(UTF8_FBV42655,2575268 -#define utf8_get_char(utf8_get_char42656,2575303 -#define utf8_skip_char(utf8_skip_char42657,2575348 -#define utf8_put_char(utf8_put_char42658,2575395 -#define HAVE_FPCLASSIFY HAVE_FPCLASSIFY42673,2575900 -#define _PL_WRITE_ _PL_WRITE_42674,2575949 -#define TRUE_WITH_SPACE TRUE_WITH_SPACE42708,2578063 -#define LAST_C_RESERVED LAST_C_RESERVED42710,2578152 -#define PREFIX_SIGN PREFIX_SIGN42711,2578202 -#define isquote(isquote42712,2578244 -#define PL_YAP_HPL_YAP_H42733,2579429 -#define LMASK_BITS LMASK_BITS42734,2579460 -#define SIZE_VOIDP SIZE_VOIDP42735,2579498 -#define INT64_FORMAT INT64_FORMAT42736,2579536 -#define INT64_FORMAT INT64_FORMAT42737,2579578 -#define INTBITSIZE INTBITSIZE42738,2579620 -#define valTermRef(valTermRef42741,2579763 -#define GP_CREATE GP_CREATE42742,2579801 -#define stopItimer(stopItimer42743,2579837 -#define allocHeap(allocHeap42749,2580181 -#define valHandle(valHandle42750,2580218 -#define arityFunctor(arityFunctor42751,2580255 -#define stringAtom(stringAtom42752,2580299 -#define isInteger(isInteger42753,2580339 -#define isString(isString42754,2580377 -#define isAtom(isAtom42755,2580413 -#define isList(isList42756,2580445 -#define isNil(isNil42757,2580477 -#define isReal(isReal42758,2580507 -#define isFloat(isFloat42759,2580539 -#define isVar(isVar42760,2580573 -#define valReal(valReal42761,2580603 -#define valFloat(valFloat42762,2580637 -#define atomValue(atomValue42763,2580673 -#define atomFromTerm(atomFromTerm42764,2580711 -#define nameOfAtom(nameOfAtom42766,2580815 -#define atomBlobType(atomBlobType42767,2580855 -#define argTermP(argTermP42768,2580899 -#define deRef(deRef42769,2580935 -#define canBind(canBind42770,2580965 -#define _PL_predicate(_PL_predicate42771,2580999 -#define predicateHasClauses(predicateHasClauses42772,2581045 -#define lookupModule(lookupModule42773,2581103 -#define charEscapeWriteOption(charEscapeWriteOption42774,2581147 -#define wordToTermRef(wordToTermRef42775,2581209 -#define isTaggedInt(isTaggedInt42776,2581255 -#define valInt(valInt42777,2581297 -#define MODULE_user MODULE_user42778,2581329 -#define MODULE_system MODULE_system42779,2581371 -#define MODULE_parse MODULE_parse42780,2581417 -#define clearNumber(clearNumber42781,2581461 -#define PL_get_atom(PL_get_atom42783,2581558 -#define PL_get_atom_ex(PL_get_atom_ex42784,2581600 -#define PL_get_text(PL_get_text42785,2581648 -#define PL_is_atom(PL_is_atom42786,2581690 -#define PL_is_variable(PL_is_variable42787,2581730 -#define PL_new_term_ref(PL_new_term_ref42788,2581778 -#define PL_put_atom(PL_put_atom42789,2581828 -#define PL_put_term(PL_put_term42790,2581870 -#define PL_unify_atom(PL_unify_atom42791,2581912 -#define PL_unify_integer(PL_unify_integer42792,2581958 -#define _PL_get_arg(_PL_get_arg42793,2582010 -#define suspendTrace(suspendTrace42797,2582263 -#define _PL_STREAM_H_PL_STREAM_H42801,2582380 -#define _PL_EXPORT_DONE_PL_EXPORT_DONE42802,2582419 -#define HAVE_DECLSPECHAVE_DECLSPEC42803,2582464 -#define PL_EXPORT(PL_EXPORT42804,2582506 -#define PL_EXPORT_DATA(PL_EXPORT_DATA42805,2582542 -#define install_t install_t42806,2582588 -#define PL_EXPORT(PL_EXPORT42807,2582624 -#define PL_EXPORT_DATA(PL_EXPORT_DATA42808,2582660 -#define PL_EXPORT(PL_EXPORT42809,2582706 -#define PL_EXPORT_DATA(PL_EXPORT_DATA42810,2582742 -#define install_t install_t42811,2582788 -#define PL_EXPORT(PL_EXPORT42812,2582824 -#define PL_EXPORT_DATA(PL_EXPORT_DATA42813,2582860 -#define install_t install_t42814,2582906 -#define __WINDOWS__ __WINDOWS__42815,2582942 -#define INT64_T_DEFINED INT64_T_DEFINED42816,2582983 -#define PL_HAVE_TERM_TPL_HAVE_TERM_T42819,2583125 -#define EOF EOF42821,2583214 -#define NULL NULL42822,2583239 -#define EWOULDBLOCK EWOULDBLOCK42823,2583266 -#define EPLEXCEPTION EPLEXCEPTION42824,2583307 -#define SIO_BUFSIZE SIO_BUFSIZE42825,2583350 -#define SIO_LINESIZE SIO_LINESIZE42826,2583391 -#define SIO_MAGIC SIO_MAGIC42827,2583434 -#define SIO_CMAGIC SIO_CMAGIC42828,2583471 -#define SIO_NL_POSIX SIO_NL_POSIX42872,2586441 -#define SIO_NL_DOS SIO_NL_DOS42873,2586485 -#define SIO_NL_DETECT SIO_NL_DETECT42874,2586525 -#define SmakeFlag(SmakeFlag42939,2590988 -#define SIO_FBUF SIO_FBUF42940,2591026 -#define SIO_LBUF SIO_LBUF42941,2591062 -#define SIO_NBUF SIO_NBUF42942,2591098 -#define SIO_FEOF SIO_FEOF42943,2591134 -#define SIO_FERR SIO_FERR42944,2591170 -#define SIO_USERBUF SIO_USERBUF42945,2591206 -#define SIO_INPUT SIO_INPUT42946,2591248 -#define SIO_OUTPUT SIO_OUTPUT42947,2591286 -#define SIO_NOLINENO SIO_NOLINENO42948,2591326 -#define SIO_NOLINEPOS SIO_NOLINEPOS42949,2591370 -#define SIO_STATIC SIO_STATIC42950,2591416 -#define SIO_RECORDPOS SIO_RECORDPOS42951,2591456 -#define SIO_FILE SIO_FILE42952,2591502 -#define SIO_PIPE SIO_PIPE42953,2591538 -#define SIO_NOFEOF SIO_NOFEOF42954,2591574 -#define SIO_TEXT SIO_TEXT42955,2591614 -#define SIO_FEOF2 SIO_FEOF242956,2591650 -#define SIO_FEOF2ERR SIO_FEOF2ERR42957,2591688 -#define SIO_NOCLOSE SIO_NOCLOSE42958,2591732 -#define SIO_APPEND SIO_APPEND42959,2591774 -#define SIO_UPDATE SIO_UPDATE42960,2591814 -#define SIO_ISATTY SIO_ISATTY42961,2591854 -#define SIO_CLOSING SIO_CLOSING42962,2591894 -#define SIO_TIMEOUT SIO_TIMEOUT42963,2591936 -#define SIO_NOMUTEX SIO_NOMUTEX42964,2591978 -#define SIO_ADVLOCK SIO_ADVLOCK42965,2592020 -#define SIO_WARN SIO_WARN42966,2592062 -#define SIO_CLEARERR SIO_CLEARERR42967,2592098 -#define SIO_REPXML SIO_REPXML42968,2592142 -#define SIO_REPPL SIO_REPPL42969,2592182 -#define SIO_BOM SIO_BOM42970,2592220 -#define SIO_SEEK_SET SIO_SEEK_SET42971,2592254 -#define SIO_SEEK_CUR SIO_SEEK_CUR42972,2592298 -#define SIO_SEEK_END SIO_SEEK_END42973,2592342 -#define S__iob S__iob42974,2592386 -#define Sinput Sinput42975,2592418 -#define Soutput Soutput42976,2592450 -#define Serror Serror42977,2592484 -#define Sgetchar(Sgetchar42978,2592516 -#define Sputchar(Sputchar42979,2592552 -#define S__updatefilepos_getc(S__updatefilepos_getc42981,2592651 -#define Snpgetc(Snpgetc42982,2592713 -#define Sgetc(Sgetc42983,2592747 -#define SIO_GETSIZE SIO_GETSIZE42985,2592828 -#define SIO_GETFILENO SIO_GETFILENO42986,2592870 -#define SIO_SETENCODING SIO_SETENCODING42987,2592916 -#define SIO_FLUSHOUTPUT SIO_FLUSHOUTPUT42988,2592966 -#define SIO_LASTERROR SIO_LASTERROR42989,2593016 -#define SIO_GETWINSOCK SIO_GETWINSOCK42990,2593062 -#define SIO_RP_BLOCK SIO_RP_BLOCK42991,2593110 -#undef FILEFILE42992,2593154 -#undef stdinstdin42993,2593180 -#undef stdoutstdout42994,2593208 -#undef stderrstderr42995,2593238 -#undef putcputc42996,2593268 -#undef getcgetc42997,2593294 -#undef putcharputchar42998,2593320 -#undef getchargetchar42999,2593352 -#undef feoffeof43000,2593384 -#undef ferrorferror43001,2593410 -#undef filenofileno43002,2593440 -#undef clearerrclearerr43003,2593470 -#define FILE FILE43004,2593504 -#define stdin stdin43005,2593532 -#define stdout stdout43006,2593562 -#define stderr stderr43007,2593594 -#define putc putc43008,2593626 -#define getc getc43009,2593654 -#define fputc fputc43010,2593682 -#define fgetc fgetc43011,2593712 -#define getw getw43012,2593742 -#define putw putw43013,2593770 -#define fread fread43014,2593798 -#define fwrite fwrite43015,2593828 -#define ungetc ungetc43016,2593860 -#define putchar putchar43017,2593892 -#define getchar getchar43018,2593926 -#define feof feof43019,2593960 -#define ferror ferror43020,2593988 -#define clearerr clearerr43021,2594020 -#define fflush fflush43022,2594056 -#define fseek fseek43023,2594088 -#define ftell ftell43024,2594118 -#define fclose fclose43025,2594148 -#define fgets fgets43026,2594180 -#define gets gets43027,2594210 -#define fputs fputs43028,2594238 -#define puts puts43029,2594268 -#define fprintf fprintf43030,2594296 -#define printf printf43031,2594330 -#define vprintf vprintf43032,2594362 -#define vfprintf vfprintf43033,2594396 -#define sprintf sprintf43034,2594433 -#define vsprintf vsprintf43035,2594468 -#define fopen fopen43036,2594505 -#define fdopen fdopen43037,2594536 -#define fileno fileno43038,2594569 -#define _DIRENT_H_INCLUDED_DIRENT_H_INCLUDED43049,2595060 -#undef _export_export43050,2595113 -#define _export _export43051,2595144 -#define _export _export43052,2595177 -#define DIRENT_MAX DIRENT_MAX43053,2595210 -#define LOCK(LOCK43068,2595866 -#define UNLOCK(UNLOCK43069,2595894 -#define CONT(CONT43097,2597057 -#define VAL(VAL43098,2597084 -#define UTF8_H_INCLUDEDUTF8_H_INCLUDED43103,2597291 -#define UTF8_MALFORMED_REPLACEMENT UTF8_MALFORMED_REPLACEMENT43104,2597339 -#define ISUTF8_MB(ISUTF8_MB43105,2597410 -#define ISUTF8_CB(ISUTF8_CB43106,2597447 -#define ISUTF8_FB2(ISUTF8_FB243107,2597484 -#define ISUTF8_FB3(ISUTF8_FB343108,2597523 -#define ISUTF8_FB4(ISUTF8_FB443109,2597562 -#define ISUTF8_FB5(ISUTF8_FB543110,2597601 -#define ISUTF8_FB6(ISUTF8_FB643111,2597640 -#define UTF8_FBN(UTF8_FBN43112,2597679 -#define UTF8_FBV(UTF8_FBV43113,2597714 -#define utf8_get_char(utf8_get_char43114,2597749 -#define utf8_put_char(utf8_put_char43115,2597794 -#define UNICODE UNICODE43118,2597884 -#define _UNICODE _UNICODE43119,2597917 -#define _UXNT_KERNEL _UXNT_KERNEL43120,2597952 -#undef mkdir mkdir43121,2597995 -#define mkdir mkdir43122,2598023 -#define TRUE TRUE43123,2598052 -#define FALSE FALSE43124,2598079 -#define _close _close43125,2598108 -#define _read _read43126,2598139 -#define _write _write43127,2598168 -#define _lseek _lseek43128,2598199 -#define _tell _tell43129,2598230 -#define _chdir _chdir43130,2598259 -#define _mkdir _mkdir43131,2598290 -#define _rmdir _rmdir43132,2598321 -#define _getcwd _getcwd43133,2598352 -#define XENOMAP XENOMAP43134,2598385 -#define XENOMEM XENOMEM43135,2598418 -#define PATH_MAX PATH_MAX43136,2598451 -#define _XNT_H_INCLUDED_XNT_H_INCLUDED43181,2601373 -#undef _export_export43182,2601420 -#define _export _export43183,2601451 -#define _export _export43184,2601484 -#undef removeremove43188,2601682 -#undef renamerename43189,2601711 -#undef openopen43190,2601740 -#undef closeclose43191,2601765 -#undef readread43192,2601792 -#undef writewrite43193,2601817 -#undef lseeklseek43194,2601844 -#undef telltell43195,2601871 -#undef accessaccess43196,2601896 -#undef chmodchmod43197,2601925 -#undef removeremove43198,2601952 -#undef renamerename43199,2601981 -#undef statstat43200,2602010 -#undef chdirchdir43201,2602035 -#undef mkdirmkdir43202,2602062 -#undef rmdirrmdir43203,2602089 -#undef getcwdgetcwd43204,2602116 -#define remove remove43205,2602145 -#define rename rename43206,2602176 -#define open open43207,2602207 -#define close close43208,2602234 -#define read read43209,2602263 -#define write write43210,2602290 -#define lseek lseek43211,2602319 -#define tell tell43212,2602348 -#define access access43213,2602375 -#define chmod chmod43214,2602406 -#define remove remove43215,2602435 -#define rename rename43216,2602466 -#define statfunc statfunc43217,2602497 -#define chdir chdir43218,2602532 -#define mkdir mkdir43219,2602561 -#define rmdir rmdir43220,2602590 -#define getcwd getcwd43221,2602619 -#define setenv setenv43222,2602650 -#define fopen(fopen43223,2602681 -#define F_OK F_OK43224,2602710 -#define R_OK R_OK43225,2602737 -#define W_OK W_OK43226,2602764 -#define PATH_MAX PATH_MAX43227,2602791 -#define _stati64 _stati6443228,2602827 -#undef _xos_stat_xos_stat43229,2602863 -#define _XOS_ISFILE _XOS_ISFILE43230,2602899 -#define _XOS_ISDIR _XOS_ISDIR43231,2602941 -#define _XOS_FILE _XOS_FILE43232,2602981 -#define _XOS_DIR _XOS_DIR43233,2603019 -#define XOS_DOWNCASE XOS_DOWNCASE43234,2603055 -#define BUCKET(BUCKET44879,2699322 -#define HASHSIZE(HASHSIZE44880,2699352 -#define HASHHASH44895,2700234 -#define __ptr_t __ptr_t44896,2700259 -#define __ptr_t __ptr_t44897,2700291 -#define ulong ulong44898,2700323 -#define NULL NULL44899,2700352 -#define Quote_illegal_f Quote_illegal_f44922,2701598 -#define Ignore_ops_f Ignore_ops_f44923,2701647 -#define Handle_vars_f Handle_vars_f44924,2701690 -#define Use_portray_f Use_portray_f44925,2701735 -#define To_heap_f To_heap_f44926,2701780 -#define PROLOGTERMS2C PROLOGTERMS2C44938,2702468 -#define buffer buffer44939,2702512 -#define DEL_BUFFER(DEL_BUFFER44940,2702543 -#define USED_BUFFER(USED_BUFFER44941,2702582 -#define RESET_BUFFER(RESET_BUFFER44942,2702623 -#define BUFFER_PTR BUFFER_PTR44943,2702666 -#define BUFFER_SIZE BUFFER_SIZE44944,2702705 -#define BUFFER_LEN BUFFER_LEN44945,2702746 -#define BUFFER_POS BUFFER_POS44946,2702785 -#define COPY_BUFFER_DS(COPY_BUFFER_DS44947,2702824 -#define IDTYPE IDTYPE44965,2703903 -#define HANDLE2INT(HANDLE2INT44966,2703935 -#define INT2HANDLE(INT2HANDLE44967,2703975 -#define BREQ2INT(BREQ2INT44968,2704015 -#define INT2BREQ(INT2BREQ44969,2704050 -#define MPI_CALL(MPI_CALL44970,2704085 -#define mpi_status mpi_status44972,2704175 -#define HASHSIZE HASHSIZE44973,2704214 -#define RESET_STATS(RESET_STATS44983,2704991 -#define MSG_SENT(MSG_SENT44984,2705033 -#define MSG_RECV(MSG_RECV44985,2705069 -#define MPITIME MPITIME44986,2705105 -#define CONT_TIMER(CONT_TIMER44987,2705139 -#define PAUSE_TIMER(PAUSE_TIMER44988,2705179 -#define return(return44989,2705221 -#define _tsart _tsart44992,2705391 -#define _tend _tend44993,2705423 -#define PAUSE_TIMER(PAUSE_TIMER44999,2705700 -#define CONT_TIMER(CONT_TIMER45000,2705742 -#define RESET_STATS(RESET_STATS45001,2705782 -#define MSG_SENT(MSG_SENT45002,2705824 -#define MSG_RECV(MSG_RECV45003,2705860 -#define return(return45004,2705896 -#define MAT_ACCESS(MAT_ACCESS46036,2767107 -#define BUFSIZE BUFSIZE46037,2767145 -#define OBUFSIZE OBUFSIZE46038,2767177 -#define MAX_DIMS MAX_DIMS46163,2773693 - #define HAVE_MPI HAVE_MPI46881,2813684 - #define HAVE_MPI HAVE_MPI46882,2813719 - #define HAVE_MPE HAVE_MPE46883,2813754 - #define HAVE_MPE HAVE_MPE46884,2813790 - #define HAVE_MPI HAVE_MPI46896,2814222 - #define HAVE_MPI HAVE_MPI46897,2814257 -#define RECV_BUF_SIZE RECV_BUF_SIZE46904,2814600 -#define COLLATE_H_INCLUDEDCOLLATE_H_INCLUDED48301,2896379 -#define STR_LEN STR_LEN48302,2896433 -#define TABLE_SIZE TABLE_SIZE48303,2896466 -#define COLLATE_VERSION COLLATE_VERSION48304,2896505 -#define matcher matcher48323,2897307 -#define fast fast48324,2897340 -#define slow slow48325,2897367 -#define dissect dissect48326,2897394 -#define backref backref48327,2897427 -#define step step48328,2897460 -#define print print48329,2897487 -#define at at48330,2897516 -#define match match48331,2897539 -#define matcher matcher48332,2897568 -#define fast fast48333,2897601 -#define slow slow48334,2897628 -#define dissect dissect48335,2897655 -#define backref backref48336,2897688 -#define step step48337,2897721 -#define print print48338,2897748 -#define at at48339,2897777 -#define match match48340,2897800 -#define BOL BOL48368,2899317 -#define EOL EOL48369,2899343 -#define BOLEOL BOLEOL48370,2899369 -#define NOTHING NOTHING48371,2899401 -#define BOW BOW48372,2899435 -#define EOW EOW48373,2899461 -#define CODEMAX CODEMAX48374,2899487 -#define NONCHAR(NONCHAR48375,2899521 -#define NNONCHAR NNONCHAR48376,2899555 -#define SP(SP48377,2899591 -#define AT(AT48378,2899615 -#define NOTE(NOTE48379,2899639 -#define SP(SP48380,2899667 -#define AT(AT48381,2899691 -#define NOTE(NOTE48382,2899715 -#define PCHARDONE PCHARDONE48391,2900184 -#undef matchermatcher48393,2900251 -#undef fastfast48394,2900285 -#undef slowslow48395,2900313 -#undef dissectdissect48396,2900341 -#undef backrefbackref48397,2900375 -#undef stepstep48398,2900409 -#undef printprint48399,2900437 -#undef atat48400,2900467 -#undef matchmatch48401,2900491 -#define isblank(isblank48411,2901100 -#define isascii(isascii48412,2901133 -# define NPAREN NPAREN48431,2902234 -#define PEEK(PEEK48437,2902609 -#define PEEK2(PEEK248438,2902637 -#define MORE(MORE48439,2902667 -#define MORE2(MORE248440,2902695 -#define SEE(SEE48441,2902725 -#define SEETWO(SEETWO48442,2902751 -#define EAT(EAT48443,2902783 -#define EATTWO(EATTWO48444,2902809 -#define NEXT(NEXT48445,2902841 -#define NEXT2(NEXT248446,2902869 -#define NEXTn(NEXTn48447,2902899 -#define GETNEXT(GETNEXT48448,2902929 -#define SETERROR(SETERROR48449,2902963 -#define REQUIRE(REQUIRE48450,2902999 -#define MUSTSEE(MUSTSEE48451,2903033 -#define MUSTEAT(MUSTEAT48452,2903067 -#define MUSTNOTSEE(MUSTNOTSEE48453,2903101 -#define EMIT(EMIT48454,2903141 -#define INSERT(INSERT48455,2903169 -#define AHEAD(AHEAD48456,2903201 -#define ASTERN(ASTERN48457,2903231 -#define HERE(HERE48458,2903263 -#define THERE(THERE48459,2903291 -#define THERETHERE(THERETHERE48460,2903321 -#define DROP(DROP48461,2903361 -#define never never48463,2903467 -# define GOODFLAGS(GOODFLAGS48465,2903553 -# define BACKSL BACKSL48471,2903765 -# define N N48484,2904249 -# define INF INF48485,2904274 -# define REP(REP48486,2904303 -# define MAP(MAP48487,2904332 -#define MAGIC1 MAGIC148525,2905663 -#define OPRMASK OPRMASK48528,2905788 -#define OPDMASK OPDMASK48529,2905821 -#define OPSHIFT OPSHIFT48530,2905854 -#define OP(OP48531,2905887 -#define OPND(OPND48532,2905910 -#define SOP(SOP48533,2905937 -#define OEND OEND48534,2905962 -#define OCHAR OCHAR48535,2905989 -#define OBOL OBOL48536,2906018 -#define OEOL OEOL48537,2906045 -#define OANY OANY48538,2906072 -#define OANYOF OANYOF48539,2906099 -#define OBACK_ OBACK_48540,2906130 -#define O_BACK O_BACK48541,2906161 -#define OPLUS_ OPLUS_48542,2906192 -#define O_PLUS O_PLUS48543,2906223 -#define OQUEST_ OQUEST_48544,2906254 -#define O_QUEST O_QUEST48545,2906287 -#define OLPAREN OLPAREN48546,2906320 -#define ORPAREN ORPAREN48547,2906354 -#define OCH_ OCH_48548,2906388 -#define OOR1 OOR148549,2906416 -#define OOR2 OOR248550,2906444 -#define O_CH O_CH48551,2906472 -#define OBOW OBOW48552,2906500 -#define OEOW OEOW48553,2906528 -#define CHadd(CHadd48565,2907147 -#define CHsub(CHsub48566,2907177 -#define CHIN(CHIN48567,2907207 -#define MCadd(MCadd48568,2907235 -#define MCsub(MCsub48569,2907265 -#define MCin(MCin48570,2907295 -# define MAGIC2 MAGIC248575,2907464 -# define USEBOL USEBOL48596,2908838 -# define USEEOL USEEOL48597,2908872 -# define BAD BAD48598,2908906 -#define OUT OUT48619,2910210 -#define ISWORD(ISWORD48620,2910236 -#define states states48625,2910451 -#define states1 states148626,2910482 -#define CLEAR(CLEAR48627,2910515 -#define SET0(SET048628,2910544 -#define SET1(SET148629,2910571 -#define ISSET(ISSET48630,2910598 -#define ASSIGN(ASSIGN48631,2910627 -#define EQ(EQ48632,2910658 -#define STATEVARS STATEVARS48633,2910681 -#define STATESETUP(STATESETUP48634,2910718 -#define STATETEARDOWN(STATETEARDOWN48635,2910757 -#define SETUP(SETUP48636,2910802 -#define onestate onestate48637,2910831 -#define INIT(INIT48638,2910866 -#define INC(INC48639,2910893 -#define ISSTATEIN(ISSTATEIN48640,2910918 -#define FWD(FWD48641,2910955 -#define BACK(BACK48642,2910980 -#define ISSETBACK(ISSETBACK48643,2911007 -#define SNAMES SNAMES48644,2911045 -#undef statesstates48645,2911077 -#undef CLEARCLEAR48646,2911107 -#undef SET0SET048647,2911135 -#undef SET1SET148648,2911161 -#undef ISSETISSET48649,2911187 -#undef ASSIGNASSIGN48650,2911215 -#undef EQEQ48651,2911245 -#undef STATEVARSSTATEVARS48652,2911267 -#undef STATESETUPSTATESETUP48653,2911303 -#undef STATETEARDOWNSTATETEARDOWN48654,2911341 -#undef SETUPSETUP48655,2911385 -#undef onestateonestate48656,2911413 -#undef INITINIT48657,2911447 -#undef INCINC48658,2911473 -#undef ISSTATEINISSTATEIN48659,2911497 -#undef FWDFWD48660,2911533 -#undef BACKBACK48661,2911557 -#undef ISSETBACKISSETBACK48662,2911583 -#undef SNAMESSNAMES48663,2911619 -#define states states48664,2911649 -#define CLEAR(CLEAR48665,2911681 -#define SET0(SET048666,2911711 -#define SET1(SET148667,2911739 -#define ISSET(ISSET48668,2911767 -#define ASSIGN(ASSIGN48669,2911797 -#define EQ(EQ48670,2911829 -#define STATEVARS STATEVARS48671,2911853 -#define STATESETUP(STATESETUP48672,2911891 -#define STATETEARDOWN(STATETEARDOWN48673,2911931 -#define SETUP(SETUP48674,2911977 -#define onestate onestate48675,2912007 -#define INIT(INIT48676,2912043 -#define INC(INC48677,2912071 -#define ISSTATEIN(ISSTATEIN48678,2912097 -#define FWD(FWD48679,2912135 -#define BACK(BACK48680,2912161 -#define ISSETBACK(ISSETBACK48681,2912189 -#define LNAMES LNAMES48682,2912227 -#define GOODFLAGS(GOODFLAGS48684,2912355 -#define yap_regcomp(yap_regcomp48687,2912422 -#define yap_regexec(yap_regexec48688,2912462 -#define yap_regfree(yap_regfree48689,2912502 -#define yap_regerror(yap_regerror48690,2912542 -#define DUPMAX DUPMAX48701,2912986 -#define DUPMAX DUPMAX48702,2913017 -#define INFINITY INFINITY48703,2913048 -#define NC NC48704,2913083 -#define NDEBUG NDEBUG48706,2913145 -#define memmove(memmove48707,2913176 -#define _REGEX_H__REGEX_H_48719,2913865 -#define REG_BASIC REG_BASIC48735,2914764 -#define REG_EXTENDED REG_EXTENDED48736,2914801 -#define REG_ICASE REG_ICASE48737,2914844 -#define REG_NOSUB REG_NOSUB48738,2914881 -#define REG_NEWLINE REG_NEWLINE48739,2914918 -#define REG_NOSPEC REG_NOSPEC48740,2914959 -#define REG_PEND REG_PEND48741,2914998 -#define REG_DUMP REG_DUMP48742,2915033 -#define REG_NOMATCH REG_NOMATCH48743,2915068 -#define REG_BADPAT REG_BADPAT48744,2915109 -#define REG_ECOLLATE REG_ECOLLATE48745,2915148 -#define REG_ECTYPE REG_ECTYPE48746,2915191 -#define REG_EESCAPE REG_EESCAPE48747,2915230 -#define REG_ESUBREG REG_ESUBREG48748,2915271 -#define REG_EBRACK REG_EBRACK48749,2915312 -#define REG_EPAREN REG_EPAREN48750,2915351 -#define REG_EBRACE REG_EBRACE48751,2915390 -#define REG_BADBR REG_BADBR48752,2915429 -#define REG_ERANGE REG_ERANGE48753,2915466 -#define REG_ESPACE REG_ESPACE48754,2915505 -#define REG_BADRPT REG_BADRPT48755,2915544 -#define REG_EMPTY REG_EMPTY48756,2915583 -#define REG_ASSERT REG_ASSERT48757,2915620 -#define REG_INVARG REG_INVARG48758,2915659 -#define REG_ATOI REG_ATOI48759,2915698 -#define REG_ITOA REG_ITOA48760,2915733 -#define REG_NOTBOL REG_NOTBOL48761,2915768 -#define REG_NOTEOL REG_NOTEOL48762,2915807 -#define REG_STARTEND REG_STARTEND48763,2915846 -#define REG_TRACE REG_TRACE48764,2915889 -#define REG_LARGE REG_LARGE48765,2915926 -#define REG_BACKR REG_BACKR48766,2915963 -#define NUM NUM48850,2920979 -#define BRANCH_FACTOR BRANCH_FACTOR48867,2922345 -#define LEAF_SIZE LEAF_SIZE48868,2922390 -#define NODE_SIZE NODE_SIZE48869,2922427 -#define NODE(NODE48870,2922464 -#define ROOT(ROOT48871,2922491 -#define IS_ROOT(IS_ROOT48872,2922518 -#define ROOT_INTERVAL(ROOT_INTERVAL48873,2922551 -#define MIN(MIN48874,2922596 -#define ON_BITS(ON_BITS48875,2922621 -#define SET_LEAF_IN(SET_LEAF_IN48876,2922654 -#define LEAF_ALL_IN(LEAF_ALL_IN48877,2922695 -#define LEAF_ALL_OUT(LEAF_ALL_OUT48878,2922736 -#define ALL_OUT(ALL_OUT48879,2922779 -#define ALL_IN(ALL_IN48880,2922812 -#define INODE_CAPACITY INODE_CAPACITY48881,2922843 -#define QUADRANT_MAX_VALUE(QUADRANT_MAX_VALUE48882,2922890 -#define NEXT_INTERVAL(NEXT_INTERVAL48883,2922945 -#define IS_LEAF(IS_LEAF48884,2922990 -#define LAST_LEVEL_INODE(LAST_LEVEL_INODE48885,2923023 -#define REALLOC_MEM(REALLOC_MEM48886,2923074 -#define MEM_SIZE(MEM_SIZE48887,2923115 -#define TREE_SIZE(TREE_SIZE48888,2923150 -#define BITMAP_empty(BITMAP_empty48912,2924527 -#define BITMAP_member(BITMAP_member48913,2924571 -#define BITMAP_alone(BITMAP_alone48914,2924617 -#define BITMAP_subset(BITMAP_subset48915,2924661 -#define BITMAP_same(BITMAP_same48916,2924707 -#define BITMAP_on_all(BITMAP_on_all48917,2924749 -#define BITMAP_clear(BITMAP_clear48918,2924795 -#define BITMAP_and(BITMAP_and48919,2924839 -#define BITMAP_minus(BITMAP_minus48920,2924879 -#define BITMAP_insert(BITMAP_insert48921,2924923 -#define BITMAP_delete(BITMAP_delete48922,2924969 -#define BITMAP_copy(BITMAP_copy48923,2925015 -#define BITMAP_intersection(BITMAP_intersection48924,2925057 -#define BITMAP_difference(BITMAP_difference48925,2925115 -#define BUFFER_SIZE BUFFER_SIZE48932,2925493 -#define IS_FREEZED(IS_FREEZED48933,2925535 -#define IDTYPE IDTYPE48936,2925606 -#define PTR2ID(PTR2ID48937,2925638 -#define ID2PTR(ID2PTR48938,2925670 -#define STORE_TREE_SIZE(STORE_TREE_SIZE48941,2925804 -#define UPDATE_MEM_USAGE(UPDATE_MEM_USAGE48942,2925853 -#define FREE_MEM_USAGE(FREE_MEM_USAGE48943,2925904 -#define ADD_MEM_USAGE(ADD_MEM_USAGE48944,2925951 -#undef BYTE_ORDER BYTE_ORDER49105,2936252 -# define BYTE_ORDER BYTE_ORDER49106,2936290 -# define BYTE_ORDER BYTE_ORDER49107,2936331 -#define T_MASK T_MASK49108,2936372 -#define T1 T149109,2936403 -#define T2 T249110,2936426 -#define T3 T349111,2936449 -#define T4 T449112,2936472 -#define T5 T549113,2936495 -#define T6 T649114,2936518 -#define T7 T749115,2936541 -#define T8 T849116,2936564 -#define T9 T949117,2936587 -#define T10 T1049118,2936610 -#define T11 T1149119,2936635 -#define T12 T1249120,2936660 -#define T13 T1349121,2936685 -#define T14 T1449122,2936710 -#define T15 T1549123,2936735 -#define T16 T1649124,2936760 -#define T17 T1749125,2936785 -#define T18 T1849126,2936810 -#define T19 T1949127,2936835 -#define T20 T2049128,2936860 -#define T21 T2149129,2936885 -#define T22 T2249130,2936910 -#define T23 T2349131,2936935 -#define T24 T2449132,2936960 -#define T25 T2549133,2936985 -#define T26 T2649134,2937010 -#define T27 T2749135,2937035 -#define T28 T2849136,2937060 -#define T29 T2949137,2937085 -#define T30 T3049138,2937110 -#define T31 T3149139,2937135 -#define T32 T3249140,2937160 -#define T33 T3349141,2937185 -#define T34 T3449142,2937210 -#define T35 T3549143,2937235 -#define T36 T3649144,2937261 -#define T37 T3749145,2937287 -#define T38 T3849146,2937313 -#define T39 T3949147,2937339 -#define T40 T4049148,2937365 -#define T41 T4149149,2937391 -#define T42 T4249150,2937417 -#define T43 T4349151,2937443 -#define T44 T4449152,2937469 -#define T45 T4549153,2937495 -#define T46 T4649154,2937521 -#define T47 T4749155,2937547 -#define T48 T4849156,2937573 -#define T49 T4949157,2937599 -#define T50 T5049158,2937625 -#define T51 T5149159,2937651 -#define T52 T5249160,2937677 -#define T53 T5349161,2937703 -#define T54 T5449162,2937729 -#define T55 T5549163,2937755 -#define T56 T5649164,2937781 -#define T57 T5749165,2937807 -#define T58 T5849166,2937833 -#define T59 T5949167,2937859 -#define T60 T6049168,2937885 -#define T61 T6149169,2937911 -#define T62 T6249170,2937937 -#define T63 T6349171,2937963 -#define T64 T6449172,2937989 -#define ROTATE_LEFT(ROTATE_LEFT49174,2938099 -#define F(F49175,2938141 -#define SET(SET49176,2938163 -#undef SETSET49177,2938189 -#define G(G49178,2938213 -#define SET(SET49179,2938235 -#undef SETSET49180,2938261 -#define H(H49181,2938285 -#define SET(SET49182,2938307 -#undef SETSET49183,2938333 -#define I(I49184,2938357 -#define SET(SET49185,2938380 -#undef SETSET49186,2938407 -# define md5_INCLUDEDmd5_INCLUDED49192,2938680 -#undef HAVE_ENVIRONHAVE_ENVIRON49205,2939409 -#define BUF_SIZE BUF_SIZE49209,2939600 -#define ITRIES_MODE_NONE ITRIES_MODE_NONE49702,2970905 -#define ITRIES_MODE_INC_POS ITRIES_MODE_INC_POS49703,2970955 -#define ITRIES_MODE_DEC_POS ITRIES_MODE_DEC_POS49704,2971011 -#define ITRIES_MODE_INC_NEG ITRIES_MODE_INC_NEG49705,2971067 -#define ITRIES_MODE_DEC_NEG ITRIES_MODE_DEC_NEG49706,2971123 -#define BASE_TR_DATA_BUCKETS BASE_TR_DATA_BUCKETS49707,2971179 -#define TrEntry_trie(TrEntry_trie49728,2972323 -#define TrEntry_buckets(TrEntry_buckets49729,2972365 -#define TrEntry_bucket(TrEntry_bucket49730,2972413 -#define TrEntry_traverse_data(TrEntry_traverse_data49731,2972460 -#define TrEntry_next(TrEntry_next49732,2972521 -#define TrEntry_previous(TrEntry_previous49733,2972564 -#define TrEntry_mode(TrEntry_mode49734,2972615 -#define TrEntry_timestamp(TrEntry_timestamp49735,2972658 -#define TrEntry_num_buckets(TrEntry_num_buckets49736,2972711 -#define TrEntry_traverse_bucket(TrEntry_traverse_bucket49737,2972768 -#define TrData_itrie(TrData_itrie49756,2973630 -#define TrData_leaf(TrData_leaf49757,2973673 -#define TrData_next(TrData_next49758,2973714 -#define TrData_previous(TrData_previous49759,2973755 -#define TrData_pos(TrData_pos49760,2973804 -#define TrData_neg(TrData_neg49761,2973843 -#define TrData_timestamp(TrData_timestamp49762,2973882 -#define TrData_depth(TrData_depth49763,2973933 -#define TYPE_TR_ENTRY TYPE_TR_ENTRY49764,2973976 -#define TYPE_TR_DATA TYPE_TR_DATA49765,2974021 -#define SIZEOF_TR_ENTRY SIZEOF_TR_ENTRY49766,2974064 -#define SIZEOF_TR_DATA SIZEOF_TR_DATA49767,2974113 -#define SIZEOF_TR_DATA_BUCKET SIZEOF_TR_DATA_BUCKET49768,2974160 -#define AS_TR_ENTRY_NEXT(AS_TR_ENTRY_NEXT49769,2974221 -#define AS_TR_DATA_NEXT(AS_TR_DATA_NEXT49770,2974272 -#define new_itrie_entry(new_itrie_entry49771,2974321 -#define new_itrie_buckets(new_itrie_buckets49772,2974370 -#define new_itrie_data(new_itrie_data49773,2974423 -#define update_itrie_data(update_itrie_data49774,2974471 -#define free_itrie_entry(free_itrie_entry49775,2974525 -#define free_itrie_buckets(free_itrie_buckets49776,2974577 -#define free_itrie_data(free_itrie_data49777,2974633 -#define TRAVERSE_MODE_FORWARD TRAVERSE_MODE_FORWARD49823,2977655 -#define TRAVERSE_MODE_BACKWARD TRAVERSE_MODE_BACKWARD49824,2977715 -#define TrEntry_trie(TrEntry_trie49839,2978582 -#define TrEntry_first_data(TrEntry_first_data49840,2978624 -#define TrEntry_last_data(TrEntry_last_data49841,2978678 -#define TrEntry_traverse_data(TrEntry_traverse_data49842,2978730 -#define TrEntry_next(TrEntry_next49843,2978790 -#define TrEntry_previous(TrEntry_previous49844,2978832 -#define TrData_trie(TrData_trie49855,2979368 -#define TrData_leaf(TrData_leaf49856,2979409 -#define TrData_next(TrData_next49857,2979450 -#define TrData_previous(TrData_previous49858,2979491 -#define TYPE_TR_ENTRY TYPE_TR_ENTRY49859,2979540 -#define TYPE_TR_DATA TYPE_TR_DATA49860,2979585 -#define SIZEOF_TR_ENTRY SIZEOF_TR_ENTRY49861,2979628 -#define SIZEOF_TR_DATA SIZEOF_TR_DATA49862,2979677 -#define AS_TR_ENTRY_NEXT(AS_TR_ENTRY_NEXT49863,2979724 -#define AS_TR_DATA_NEXT(AS_TR_DATA_NEXT49864,2979775 -#define new_trie_entry(new_trie_entry49865,2979824 -#define new_trie_data(new_trie_data49866,2979871 -#define free_trie_entry(free_trie_entry49867,2979916 -#define free_trie_data(free_trie_data49868,2979965 -#define NESTED_TRIE_TERM NESTED_TRIE_TERM49906,2983886 -#define PairEndTag PairEndTag49907,2983938 -#define CONSUME_NODE_LIST CONSUME_NODE_LIST49979,2990778 -#undef CONSUME_NODE_LISTCONSUME_NODE_LIST49980,2990834 -#define PUSH_NEW_FLOAT_TERM(PUSH_NEW_FLOAT_TERM49982,2990959 -#undef PUSH_NEW_FLOAT_TERMPUSH_NEW_FLOAT_TERM49985,2991250 -#define TAG_LOW_BITS_32 TAG_LOW_BITS_3249988,2991342 -#define SIZE_FLOAT_AS_TERM SIZE_FLOAT_AS_TERM49989,2991390 -#define TAG_64BITS TAG_64BITS49990,2991444 -#define SIZE_FLOAT_AS_TERM SIZE_FLOAT_AS_TERM49991,2991482 -#define ApplTag ApplTag49992,2991536 -#define ApplTag ApplTag49993,2991568 -#define PairInitTag PairInitTag49994,2991600 -#define PairEndEmptyTag PairEndEmptyTag49995,2991640 -#define PairEndTermTag PairEndTermTag49996,2991688 -#define CommaInitTag CommaInitTag49997,2991734 -#define CommaEndTag CommaEndTag49998,2991777 -#define FloatInitTag FloatInitTag49999,2991818 -#define FloatEndTag FloatEndTag50000,2991861 -#define TRIE_MODE_STANDARD TRIE_MODE_STANDARD50001,2991902 -#define TRIE_MODE_REVERSE TRIE_MODE_REVERSE50002,2991957 -#define TRIE_MODE_MINIMAL TRIE_MODE_MINIMAL50003,2992010 -#define TRIE_MODE_REVMIN TRIE_MODE_REVMIN50004,2992063 -#define TRIE_PRINT_NORMAL TRIE_PRINT_NORMAL50005,2992114 -#define TRIE_PRINT_FLOAT TRIE_PRINT_FLOAT50006,2992167 -#define TRIE_PRINT_FLOAT2 TRIE_PRINT_FLOAT250007,2992218 -#define TRIE_PRINT_FLOAT_END TRIE_PRINT_FLOAT_END50008,2992271 -#define BASE_AUXILIARY_TERM_STACK_SIZE BASE_AUXILIARY_TERM_STACK_SIZE50009,2992330 -#define TrEngine_trie(TrEngine_trie50030,2993484 -#define TrEngine_memory(TrEngine_memory50031,2993529 -#define TrEngine_tries(TrEngine_tries50032,2993578 -#define TrEngine_entries(TrEngine_entries50033,2993625 -#define TrEngine_nodes(TrEngine_nodes50034,2993676 -#define TrEngine_memory_max(TrEngine_memory_max50035,2993723 -#define TrEngine_tries_max(TrEngine_tries_max50036,2993780 -#define TrEngine_entries_max(TrEngine_entries_max50037,2993835 -#define TrEngine_nodes_max(TrEngine_nodes_max50038,2993894 -#define TrNode_parent(TrNode_parent50051,2994479 -#define TrNode_child(TrNode_child50052,2994524 -#define TrNode_next(TrNode_next50053,2994567 -#define TrNode_previous(TrNode_previous50054,2994608 -#define TrNode_entry(TrNode_entry50055,2994657 -#define TrHash_mark(TrHash_mark50066,2995317 -#define TrHash_buckets(TrHash_buckets50067,2995359 -#define TrHash_bucket(TrHash_bucket50068,2995407 -#define TrHash_num_buckets(TrHash_num_buckets50069,2995453 -#define TrHash_seed(TrHash_seed50070,2995509 -#define TrHash_num_nodes(TrHash_num_nodes50071,2995551 -#define TYPE_TR_ENGINE TYPE_TR_ENGINE50072,2995603 -#define TYPE_TR_NODE TYPE_TR_NODE50073,2995651 -#define TYPE_TR_HASH TYPE_TR_HASH50074,2995695 -#define SIZEOF_TR_ENGINE SIZEOF_TR_ENGINE50075,2995739 -#define SIZEOF_TR_NODE SIZEOF_TR_NODE50076,2995791 -#define SIZEOF_TR_HASH SIZEOF_TR_HASH50077,2995839 -#define SIZEOF_TR_BUCKET SIZEOF_TR_BUCKET50078,2995887 -#define AS_TR_NODE_NEXT(AS_TR_NODE_NEXT50079,2995939 -#define TAG_ADDR(TAG_ADDR50080,2995989 -#define UNTAG_ADDR(UNTAG_ADDR50081,2996025 -#define PUT_DATA_IN_LEAF_TRIE_NODE(PUT_DATA_IN_LEAF_TRIE_NODE50082,2996065 -#define GET_DATA_FROM_LEAF_TRIE_NODE(GET_DATA_FROM_LEAF_TRIE_NODE50083,2996137 -#define MARK_AS_LEAF_TRIE_NODE(MARK_AS_LEAF_TRIE_NODE50084,2996213 -#define IS_LEAF_TRIE_NODE(IS_LEAF_TRIE_NODE50085,2996277 -#define IsTrieVar(IsTrieVar50086,2996331 -#define MkTrieVar(MkTrieVar50087,2996369 -#define TrieVarIndex(TrieVarIndex50088,2996407 -#define BASE_HASH_BUCKETS BASE_HASH_BUCKETS50089,2996451 -#define MAX_NODES_PER_TRIE_LEVEL MAX_NODES_PER_TRIE_LEVEL50090,2996505 -#define MAX_NODES_PER_BUCKET MAX_NODES_PER_BUCKET50091,2996573 -#define HASH_TERM(HASH_TERM50092,2996633 -#define IS_HASH_NODE(IS_HASH_NODE50093,2996671 -#define BASE_SAVE_MARK BASE_SAVE_MARK50094,2996715 -#define HASH_SAVE_MARK HASH_SAVE_MARK50095,2996763 -#define ATOM_SAVE_MARK ATOM_SAVE_MARK50096,2996811 -#define FUNCTOR_SAVE_MARK FUNCTOR_SAVE_MARK50097,2996859 -#define FLOAT_SAVE_MARK FLOAT_SAVE_MARK50098,2996913 -#define STACK_NOT_EMPTY(STACK_NOT_EMPTY50099,2996963 -#define POP_UP(POP_UP50100,2997013 -#define POP_DOWN(POP_DOWN50101,2997045 -#define PUSH_UP(PUSH_UP50102,2997081 -#define PUSH_DOWN(PUSH_DOWN50103,2997115 -#define new_struct(new_struct50104,2997153 -#define new_trie_engine(new_trie_engine50105,2997193 -#define new_trie_node(new_trie_node50106,2997243 -#define new_trie_hash(new_trie_hash50107,2997289 -#define new_hash_buckets(new_hash_buckets50108,2997335 -#define expand_auxiliary_term_stack(expand_auxiliary_term_stack50109,2997387 -#define free_struct(free_struct50110,2997461 -#define free_trie_node(free_trie_node50111,2997504 -#define free_trie_hash(free_trie_hash50112,2997553 -#define free_hash_buckets(free_hash_buckets50113,2997602 -#define INCREMENT_MEMORY(INCREMENT_MEMORY50114,2997657 -#define INCREMENT_TRIES(INCREMENT_TRIES50115,2997710 -#define INCREMENT_ENTRIES(INCREMENT_ENTRIES50116,2997761 -#define INCREMENT_NODES(INCREMENT_NODES50117,2997816 -#define DECREMENT_MEMORY(DECREMENT_MEMORY50118,2997867 -#define DECREMENT_TRIES(DECREMENT_TRIES50119,2997920 -#define DECREMENT_ENTRIES(DECREMENT_ENTRIES50120,2997971 -#define DECREMENT_NODES(DECREMENT_NODES50121,2998026 -#define IS_FUNCTOR_NODE(IS_FUNCTOR_NODE50122,2998077 -#define arg_itrie arg_itrie50126,2998203 -#undef arg_itriearg_itrie50128,2998300 -#define arg_itrie arg_itrie50129,2998336 -#undef arg_itriearg_itrie50131,2998435 -#define arg_itrie arg_itrie50133,2998540 -#define arg_mode arg_mode50134,2998578 -#undef arg_itriearg_itrie50136,2998673 -#undef arg_modearg_mode50137,2998709 -#define arg_itrie arg_itrie50138,2998743 -#define arg_time arg_time50139,2998781 -#undef arg_itriearg_itrie50141,2998886 -#undef arg_timearg_time50142,2998922 -#define arg_itrie arg_itrie50143,2998956 -#define arg_entry arg_entry50144,2998994 -#undef arg_itriearg_itrie50146,2999101 -#undef arg_entryarg_entry50147,2999137 -#define arg_itrie arg_itrie50148,2999173 -#define arg_entry arg_entry50149,2999211 -#undef arg_itriearg_itrie50151,2999324 -#undef arg_entryarg_entry50152,2999360 -#define arg_itrie arg_itrie50153,2999396 -#define arg_entry arg_entry50154,2999434 -#define arg_ref arg_ref50155,2999472 -#undef arg_itriearg_itrie50157,2999579 -#undef arg_entryarg_entry50158,2999615 -#undef arg_refarg_ref50159,2999651 -#define arg_ref arg_ref50160,2999683 -#define arg_entry arg_entry50161,2999717 -#undef arg_refarg_ref50163,2999824 -#undef arg_entryarg_entry50164,2999856 -#define arg_ref arg_ref50165,2999892 -#define arg_data arg_data50166,2999926 -#undef arg_refarg_ref50168,3000029 -#undef arg_dataarg_data50169,3000061 -#define arg_itrie arg_itrie50170,3000095 -#define arg_ref arg_ref50171,3000133 -#undef arg_itriearg_itrie50173,3000244 -#undef arg_refarg_ref50174,3000280 -#define arg_itrie arg_itrie50175,3000312 -#define arg_ref arg_ref50176,3000350 -#undef arg_itriearg_itrie50178,3000461 -#undef arg_refarg_ref50179,3000497 -#define arg_ref arg_ref50180,3000529 -#undef arg_refarg_ref50182,3000638 -#define arg_ref arg_ref50183,3000671 -#undef arg_refarg_ref50185,3000786 -#define arg_itrie_dest arg_itrie_dest50186,3000819 -#define arg_itrie_source arg_itrie_source50187,3000868 -#undef arg_itrie_destarg_itrie_dest50189,3000979 -#undef arg_itrie_sourcearg_itrie_source50190,3001026 -#define arg_itrie_dest arg_itrie_dest50191,3001077 -#define arg_itrie_source arg_itrie_source50192,3001126 -#undef arg_itrie_destarg_itrie_dest50194,3001247 -#undef arg_itrie_sourcearg_itrie_source50195,3001294 -#define arg_itrie_dest arg_itrie_dest50196,3001345 -#define arg_itrie_source arg_itrie_source50197,3001394 -#undef arg_itrie_destarg_itrie_dest50199,3001507 -#undef arg_itrie_sourcearg_itrie_source50200,3001554 -#define arg_itrie_dest arg_itrie_dest50201,3001605 -#define arg_itrie_source arg_itrie_source50202,3001654 -#undef arg_itrie_destarg_itrie_dest50204,3001777 -#undef arg_itrie_sourcearg_itrie_source50205,3001824 -#define arg_itrie1 arg_itrie150206,3001875 -#define arg_itrie2 arg_itrie250207,3001916 -#define arg_entries arg_entries50208,3001957 -#undef arg_itrie1arg_itrie150210,3002072 -#undef arg_itrie2arg_itrie250211,3002111 -#undef arg_entriesarg_entries50212,3002150 -#define arg_itrie1 arg_itrie150213,3002191 -#define arg_itrie2 arg_itrie250214,3002232 -#define arg_entries arg_entries50215,3002273 -#undef arg_itrie1arg_itrie150217,3002398 -#undef arg_itrie2arg_itrie250218,3002437 -#undef arg_entriesarg_entries50219,3002476 -#define arg_itrie arg_itrie50220,3002517 -#define arg_file arg_file50221,3002556 -#undef arg_itriearg_itrie50223,3002653 -#undef arg_filearg_file50224,3002690 -#define arg_itrie arg_itrie50225,3002725 -#define arg_file arg_file50226,3002764 -#undef arg_itriearg_itrie50228,3002877 -#undef arg_filearg_file50229,3002914 -#define arg_itrie arg_itrie50230,3002949 -#define arg_file arg_file50231,3002988 -#undef arg_itriearg_itrie50233,3003085 -#undef arg_filearg_file50234,3003122 -#define arg_itrie arg_itrie50235,3003157 -#define arg_stream arg_stream50236,3003196 -#undef arg_itriearg_itrie50238,3003311 -#undef arg_streamarg_stream50239,3003348 -#define arg_itrie arg_itrie50240,3003387 -#define arg_stream arg_stream50241,3003426 -#undef arg_itriearg_itrie50243,3003547 -#undef arg_streamarg_stream50244,3003584 -#define arg_memory arg_memory50245,3003623 -#define arg_tries arg_tries50246,3003664 -#define arg_entries arg_entries50247,3003703 -#define arg_nodes arg_nodes50248,3003746 -#undef arg_memoryarg_memory50250,3003847 -#undef arg_triesarg_tries50251,3003886 -#undef arg_entriesarg_entries50252,3003923 -#undef arg_nodesarg_nodes50253,3003964 -#define arg_memory arg_memory50254,3004001 -#define arg_tries arg_tries50255,3004042 -#define arg_entries arg_entries50256,3004081 -#define arg_nodes arg_nodes50257,3004124 -#undef arg_memoryarg_memory50259,3004233 -#undef arg_triesarg_tries50260,3004272 -#undef arg_entriesarg_entries50261,3004309 -#undef arg_nodesarg_nodes50262,3004350 -#define arg_itrie arg_itrie50263,3004387 -#define arg_entries arg_entries50264,3004426 -#define arg_nodes arg_nodes50265,3004469 -#define arg_virtualnodes arg_virtualnodes50266,3004508 -#undef arg_itriearg_itrie50268,3004623 -#undef arg_entriesarg_entries50269,3004660 -#undef arg_nodesarg_nodes50270,3004701 -#undef arg_virtualnodesarg_virtualnodes50271,3004738 -#define arg_itrie arg_itrie50272,3004789 -#undef arg_itriearg_itrie50274,3004890 -#define arg_mode arg_mode50284,3005309 -#define arg_trie arg_trie50285,3005345 -#define arg_entry arg_entry50286,3005381 -#define arg_ref arg_ref50287,3005419 -#undef arg_modearg_mode50289,3005520 -#undef arg_triearg_trie50290,3005554 -#undef arg_entryarg_entry50291,3005588 -#undef arg_refarg_ref50292,3005624 -#define arg_mode arg_mode50293,3005656 -#define arg_ref arg_ref50294,3005692 -#define arg_entry arg_entry50295,3005726 -#undef arg_modearg_mode50297,3005831 -#undef arg_refarg_ref50298,3005865 -#undef arg_entryarg_entry50299,3005897 -#define arg_trie arg_trie50302,3006065 -#undef arg_triearg_trie50304,3006158 -#define arg_trie arg_trie50305,3006192 -#undef arg_triearg_trie50307,3006287 -#define arg_mode arg_mode50309,3006388 -#undef arg_modearg_mode50311,3006481 -#define arg_trie arg_trie50312,3006515 -#define arg_entry arg_entry50313,3006551 -#define arg_ref arg_ref50314,3006589 -#undef arg_triearg_trie50316,3006690 -#undef arg_entryarg_entry50317,3006724 -#undef arg_refarg_ref50318,3006760 -#define arg_trie arg_trie50319,3006792 -#define arg_entry arg_entry50320,3006828 -#define arg_ref arg_ref50321,3006866 -#undef arg_triearg_trie50323,3006971 -#undef arg_entryarg_entry50324,3007006 -#undef arg_refarg_ref50325,3007043 -#define arg_ref arg_ref50326,3007076 -#define arg_entry arg_entry50327,3007111 -#undef arg_refarg_ref50329,3007218 -#undef arg_entryarg_entry50330,3007251 -#define arg_trie arg_trie50331,3007288 -#define arg_ref arg_ref50332,3007325 -#undef arg_triearg_trie50334,3007440 -#undef arg_refarg_ref50335,3007475 -#define arg_trie arg_trie50336,3007508 -#define arg_ref arg_ref50337,3007545 -#undef arg_triearg_trie50339,3007658 -#undef arg_refarg_ref50340,3007693 -#define arg_trie arg_trie50341,3007726 -#define arg_init_ref arg_init_ref50342,3007763 -#define arg_ref arg_ref50343,3007808 -#undef arg_triearg_trie50345,3007919 -#undef arg_init_refarg_init_ref50346,3007954 -#undef arg_refarg_ref50347,3007997 -#define arg_trie arg_trie50348,3008030 -#define arg_init_ref arg_init_ref50349,3008067 -#define arg_ref arg_ref50350,3008112 -#undef arg_triearg_trie50352,3008223 -#undef arg_init_refarg_init_ref50353,3008258 -#undef arg_refarg_ref50354,3008301 -#define arg_ref arg_ref50355,3008334 -#undef arg_refarg_ref50357,3008443 -#define arg_ref arg_ref50358,3008476 -#undef arg_refarg_ref50360,3008589 -#define arg_trie_dest arg_trie_dest50361,3008622 -#define arg_trie_source arg_trie_source50362,3008669 -#undef arg_trie_destarg_trie_dest50364,3008778 -#undef arg_trie_sourcearg_trie_source50365,3008823 -#define arg_trie_dest arg_trie_dest50366,3008872 -#define arg_trie_source arg_trie_source50367,3008919 -#undef arg_trie_destarg_trie_dest50369,3009038 -#undef arg_trie_sourcearg_trie_source50370,3009083 -#define arg_trie1 arg_trie150371,3009132 -#define arg_trie2 arg_trie250372,3009171 -#define arg_entries arg_entries50373,3009210 -#undef arg_trie1arg_trie150375,3009323 -#undef arg_trie2arg_trie250376,3009360 -#undef arg_entriesarg_entries50377,3009397 -#define arg_trie1 arg_trie150378,3009438 -#define arg_trie2 arg_trie250379,3009477 -#define arg_entries arg_entries50380,3009516 -#undef arg_trie1arg_trie150382,3009639 -#undef arg_trie2arg_trie250383,3009676 -#undef arg_entriesarg_entries50384,3009713 -#define arg_trie arg_trie50385,3009754 -#define arg_file arg_file50386,3009791 -#undef arg_triearg_trie50388,3009886 -#undef arg_filearg_file50389,3009921 -#define arg_trie arg_trie50390,3009956 -#define arg_file arg_file50391,3009993 -#undef arg_triearg_trie50393,3010088 -#undef arg_filearg_file50394,3010123 -#define arg_memory arg_memory50395,3010158 -#define arg_tries arg_tries50396,3010199 -#define arg_entries arg_entries50397,3010238 -#define arg_nodes arg_nodes50398,3010281 -#undef arg_memoryarg_memory50400,3010380 -#undef arg_triesarg_tries50401,3010419 -#undef arg_entriesarg_entries50402,3010456 -#undef arg_nodesarg_nodes50403,3010497 -#define arg_memory arg_memory50404,3010534 -#define arg_tries arg_tries50405,3010575 -#define arg_entries arg_entries50406,3010614 -#define arg_nodes arg_nodes50407,3010657 -#undef arg_memoryarg_memory50409,3010764 -#undef arg_triesarg_tries50410,3010803 -#undef arg_entriesarg_entries50411,3010840 -#undef arg_nodesarg_nodes50412,3010881 -#define arg_trie arg_trie50413,3010918 -#define arg_entries arg_entries50414,3010955 -#define arg_nodes arg_nodes50415,3010998 -#define arg_virtualnodes arg_virtualnodes50416,3011037 -#undef arg_triearg_trie50418,3011150 -#undef arg_entriesarg_entries50419,3011185 -#undef arg_nodesarg_nodes50420,3011226 -#undef arg_virtualnodesarg_virtualnodes50421,3011263 -#define arg_trie arg_trie50422,3011314 -#undef arg_triearg_trie50424,3011411 -#define arg_mode arg_mode50425,3011446 -#undef arg_modearg_mode50427,3011559 -#define arg_trie arg_trie50428,3011594 -#define arg_ref arg_ref50429,3011631 -#undef arg_triearg_trie50431,3011744 -#undef arg_refarg_ref50432,3011779 -#define arg_cur arg_cur50433,3011812 -#define arg_next arg_next50434,3011847 -#undef arg_curarg_cur50436,3011960 -#undef arg_nextarg_next50437,3011993 -#define arg_trie arg_trie50440,3012174 -#define arg_list arg_list50441,3012211 -#undef arg_triearg_trie50443,3012312 -#undef arg_listarg_list50444,3012347 -#define arg_trie arg_trie50445,3012382 -#define arg_db_trie arg_db_trie50446,3012419 -#define arg_final_label arg_final_label50447,3012462 -#define arg_opt_level arg_opt_level50448,3012513 -#define arg_start_counter arg_start_counter50449,3012560 -#define arg_end_counter arg_end_counter50450,3012615 -#undef arg_triearg_trie50452,3012742 -#undef arg_db_triearg_db_trie50453,3012777 -#undef arg_final_labelarg_final_label50454,3012818 -#undef arg_opt_levelarg_opt_level50455,3012867 -#undef arg_start_counterarg_start_counter50456,3012912 -#undef arg_end_counterarg_end_counter50457,3012965 -#define arg_entry arg_entry50458,3013014 -#undef arg_entryarg_entry50460,3013183 -#define arg_opt_level arg_opt_level50462,3013270 -#define arg_count arg_count50463,3013317 -#undef arg_opt_levelarg_opt_level50465,3013460 -#undef arg_countarg_count50466,3013505 -#define arg_opt_level arg_opt_level50467,3013542 -#define arg_count arg_count50468,3013589 -#undef arg_opt_levelarg_opt_level50470,3013732 -#undef arg_countarg_count50471,3013777 -#define arg_trie arg_trie50472,3013814 -#define arg_nested_id arg_nested_id50473,3013851 -#define arg_term arg_term50474,3013898 -#undef arg_triearg_trie50476,3014023 -#undef arg_nested_idarg_nested_id50477,3014058 -#undef arg_termarg_term50478,3014103 -#define arg_min_prefix arg_min_prefix50479,3014138 -#undef min_prefixmin_prefix50481,3014271 -# define ID_VOID_MAINID_VOID_MAIN52646,3151477 -# define COMPILER_ID COMPILER_ID52647,3151517 -# define SIMULATE_ID SIMULATE_ID52648,3151558 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52649,3151600 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52650,3151663 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52651,3151726 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52652,3151790 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK52653,3151854 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR52654,3151918 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR52655,3151982 -# define COMPILER_ID COMPILER_ID52656,3152046 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52657,3152088 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52658,3152152 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52659,3152216 -# define COMPILER_ID COMPILER_ID52660,3152281 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52661,3152323 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52662,3152387 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52663,3152451 -# define COMPILER_ID COMPILER_ID52664,3152515 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52665,3152557 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52666,3152621 -# define COMPILER_ID COMPILER_ID52667,3152685 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52668,3152727 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52669,3152791 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52670,3152855 -# define COMPILER_ID COMPILER_ID52671,3152920 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52672,3152962 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52673,3153026 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52674,3153090 -# define COMPILER_ID COMPILER_ID52675,3153155 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52676,3153197 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52677,3153262 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52678,3153327 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52679,3153392 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52680,3153457 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52681,3153522 -# define COMPILER_ID COMPILER_ID52682,3153587 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52683,3153629 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52684,3153693 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52685,3153757 -# define COMPILER_ID COMPILER_ID52686,3153821 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52687,3153863 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52688,3153927 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52689,3153991 -# define COMPILER_ID COMPILER_ID52690,3154056 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52691,3154099 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52692,3154164 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52693,3154229 -# define COMPILER_ID COMPILER_ID52694,3154294 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52695,3154337 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52696,3154402 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52697,3154467 -# define COMPILER_ID COMPILER_ID52698,3154532 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52699,3154575 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52700,3154640 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52701,3154705 -# define COMPILER_ID COMPILER_ID52702,3154770 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52703,3154813 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52704,3154878 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52705,3154943 -# define COMPILER_ID COMPILER_ID52706,3155009 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52707,3155052 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52708,3155117 -# define COMPILER_ID COMPILER_ID52709,3155182 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52710,3155225 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52711,3155290 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52712,3155355 -# define COMPILER_ID COMPILER_ID52713,3155420 -# define COMPILER_ID COMPILER_ID52714,3155463 -# define COMPILER_ID COMPILER_ID52715,3155506 -# define COMPILER_ID COMPILER_ID52716,3155549 -# define SIMULATE_ID SIMULATE_ID52717,3155592 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52718,3155636 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52719,3155701 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52720,3155766 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR52721,3155831 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR52722,3155897 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK52723,3155963 -# define COMPILER_ID COMPILER_ID52724,3156028 -# define SIMULATE_ID SIMULATE_ID52725,3156071 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52726,3156115 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52727,3156180 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52728,3156245 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR52729,3156310 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR52730,3156376 -# define COMPILER_ID COMPILER_ID52731,3156442 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52732,3156485 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52733,3156550 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52734,3156616 -# define COMPILER_ID COMPILER_ID52735,3156682 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52736,3156725 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52737,3156790 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52738,3156855 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52739,3156922 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK52740,3156989 -# define COMPILER_ID COMPILER_ID52741,3157055 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52742,3157098 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52743,3157163 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52744,3157228 -# define COMPILER_ID COMPILER_ID52745,3157293 -# define COMPILER_ID COMPILER_ID52746,3157336 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52747,3157379 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52748,3157446 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52749,3157513 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52750,3157580 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52751,3157647 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52752,3157714 -# define COMPILER_ID COMPILER_ID52753,3157781 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52754,3157824 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52755,3157890 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52756,3157956 -# define COMPILER_ID COMPILER_ID52757,3158022 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52758,3158065 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52759,3158131 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52760,3158197 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52761,3158263 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52762,3158329 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52763,3158395 -# define COMPILER_ID COMPILER_ID52764,3158461 -# define COMPILER_ID COMPILER_ID52765,3158504 -# define COMPILER_ID COMPILER_ID52766,3158547 -#define STRINGIFY_HELPER(STRINGIFY_HELPER52771,3158918 -#define STRINGIFY(STRINGIFY52772,3158970 -# define PLATFORM_ID PLATFORM_ID52773,3159008 -# define PLATFORM_ID PLATFORM_ID52774,3159052 -# define PLATFORM_ID PLATFORM_ID52775,3159096 -# define PLATFORM_ID PLATFORM_ID52776,3159140 -# define PLATFORM_ID PLATFORM_ID52777,3159184 -# define PLATFORM_ID PLATFORM_ID52778,3159228 -# define PLATFORM_ID PLATFORM_ID52779,3159272 -# define PLATFORM_ID PLATFORM_ID52780,3159316 -# define PLATFORM_ID PLATFORM_ID52781,3159360 -# define PLATFORM_ID PLATFORM_ID52782,3159404 -# define PLATFORM_ID PLATFORM_ID52783,3159448 -# define PLATFORM_ID PLATFORM_ID52784,3159492 -# define PLATFORM_ID PLATFORM_ID52785,3159536 -# define PLATFORM_ID PLATFORM_ID52786,3159580 -# define PLATFORM_ID PLATFORM_ID52787,3159624 -# define PLATFORM_ID PLATFORM_ID52788,3159668 -# define PLATFORM_ID PLATFORM_ID52789,3159712 -# define PLATFORM_ID PLATFORM_ID52790,3159756 -# define PLATFORM_ID PLATFORM_ID52791,3159800 -# define PLATFORM_ID PLATFORM_ID52792,3159844 -# define PLATFORM_ID PLATFORM_ID52793,3159888 -# define PLATFORM_ID PLATFORM_ID52794,3159932 -# define PLATFORM_ID PLATFORM_ID52795,3159976 -# define PLATFORM_ID PLATFORM_ID52796,3160020 -# define PLATFORM_ID PLATFORM_ID52797,3160064 -# define PLATFORM_ID PLATFORM_ID52798,3160108 -# define PLATFORM_ID PLATFORM_ID52799,3160153 -# define PLATFORM_ID PLATFORM_ID52800,3160198 -# define PLATFORM_ID PLATFORM_ID52801,3160243 -# define PLATFORM_ID PLATFORM_ID52802,3160288 -# define PLATFORM_ID PLATFORM_ID52803,3160333 -# define ARCHITECTURE_ID ARCHITECTURE_ID52804,3160377 -# define ARCHITECTURE_ID ARCHITECTURE_ID52805,3160430 -# define ARCHITECTURE_ID ARCHITECTURE_ID52806,3160483 -# define ARCHITECTURE_ID ARCHITECTURE_ID52807,3160536 -# define ARCHITECTURE_ID ARCHITECTURE_ID52808,3160590 -# define ARCHITECTURE_ID ARCHITECTURE_ID52809,3160644 -# define ARCHITECTURE_ID ARCHITECTURE_ID52810,3160698 -# define ARCHITECTURE_ID ARCHITECTURE_ID52811,3160751 -# define ARCHITECTURE_ID ARCHITECTURE_ID52812,3160804 -# define ARCHITECTURE_ID ARCHITECTURE_ID52813,3160857 -# define ARCHITECTURE_ID ARCHITECTURE_ID52814,3160910 -# define ARCHITECTURE_ID ARCHITECTURE_ID52815,3160963 -# define ARCHITECTURE_ID ARCHITECTURE_ID52816,3161016 -#define DEC(DEC52817,3161069 -#define HEX(HEX52818,3161096 -# define COMPILER_ID COMPILER_ID52828,3161680 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52829,3161721 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52830,3161784 -# define COMPILER_ID COMPILER_ID52831,3161847 -# define SIMULATE_ID SIMULATE_ID52832,3161888 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52833,3161930 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52834,3161993 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52835,3162056 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52836,3162120 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK52837,3162184 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR52838,3162249 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR52839,3162314 -# define COMPILER_ID COMPILER_ID52840,3162379 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52841,3162421 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52842,3162485 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52843,3162549 -# define COMPILER_ID COMPILER_ID52844,3162614 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52845,3162656 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52846,3162720 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52847,3162784 -# define COMPILER_ID COMPILER_ID52848,3162848 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52849,3162890 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52850,3162954 -# define COMPILER_ID COMPILER_ID52851,3163018 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52852,3163060 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52853,3163124 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52854,3163188 -# define COMPILER_ID COMPILER_ID52855,3163253 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52856,3163295 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52857,3163359 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52858,3163423 -# define COMPILER_ID COMPILER_ID52859,3163488 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52860,3163530 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52861,3163595 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52862,3163660 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52863,3163725 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52864,3163790 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52865,3163855 -# define COMPILER_ID COMPILER_ID52866,3163920 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52867,3163962 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52868,3164026 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52869,3164090 -# define COMPILER_ID COMPILER_ID52870,3164154 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52871,3164197 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52872,3164262 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52873,3164327 -# define COMPILER_ID COMPILER_ID52874,3164392 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52875,3164435 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52876,3164500 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52877,3164565 -# define COMPILER_ID COMPILER_ID52878,3164630 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52879,3164673 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52880,3164738 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52881,3164803 -# define COMPILER_ID COMPILER_ID52882,3164868 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52883,3164911 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52884,3164976 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52885,3165041 -# define COMPILER_ID COMPILER_ID52886,3165106 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52887,3165149 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52888,3165214 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52889,3165279 -# define COMPILER_ID COMPILER_ID52890,3165345 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52891,3165388 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52892,3165453 -# define COMPILER_ID COMPILER_ID52893,3165518 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52894,3165561 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52895,3165626 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52896,3165691 -# define COMPILER_ID COMPILER_ID52897,3165756 -# define COMPILER_ID COMPILER_ID52898,3165799 -# define COMPILER_ID COMPILER_ID52899,3165842 -# define SIMULATE_ID SIMULATE_ID52900,3165885 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52901,3165929 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52902,3165994 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52903,3166059 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR52904,3166124 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR52905,3166190 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK52906,3166256 -# define COMPILER_ID COMPILER_ID52907,3166321 -# define SIMULATE_ID SIMULATE_ID52908,3166364 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52909,3166408 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52910,3166473 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52911,3166538 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR52912,3166603 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR52913,3166669 -# define COMPILER_ID COMPILER_ID52914,3166735 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52915,3166778 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52916,3166843 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52917,3166909 -# define COMPILER_ID COMPILER_ID52918,3166975 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52919,3167018 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52920,3167083 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52921,3167148 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52922,3167215 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK52923,3167282 -# define COMPILER_ID COMPILER_ID52924,3167348 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52925,3167391 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52926,3167456 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52927,3167521 -# define COMPILER_ID COMPILER_ID52928,3167586 -# define COMPILER_ID COMPILER_ID52929,3167629 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52930,3167672 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52931,3167739 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52932,3167806 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52933,3167873 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52934,3167940 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52935,3168007 -# define COMPILER_ID COMPILER_ID52936,3168074 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52937,3168117 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52938,3168183 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52939,3168249 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR52940,3168315 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR52941,3168381 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH52942,3168447 -# define COMPILER_ID COMPILER_ID52943,3168513 -# define COMPILER_ID COMPILER_ID52944,3168556 -# define COMPILER_ID COMPILER_ID52945,3168599 -#define STRINGIFY_HELPER(STRINGIFY_HELPER52950,3168970 -#define STRINGIFY(STRINGIFY52951,3169023 -# define PLATFORM_ID PLATFORM_ID52952,3169062 -# define PLATFORM_ID PLATFORM_ID52953,3169106 -# define PLATFORM_ID PLATFORM_ID52954,3169150 -# define PLATFORM_ID PLATFORM_ID52955,3169194 -# define PLATFORM_ID PLATFORM_ID52956,3169238 -# define PLATFORM_ID PLATFORM_ID52957,3169282 -# define PLATFORM_ID PLATFORM_ID52958,3169326 -# define PLATFORM_ID PLATFORM_ID52959,3169370 -# define PLATFORM_ID PLATFORM_ID52960,3169414 -# define PLATFORM_ID PLATFORM_ID52961,3169458 -# define PLATFORM_ID PLATFORM_ID52962,3169502 -# define PLATFORM_ID PLATFORM_ID52963,3169546 -# define PLATFORM_ID PLATFORM_ID52964,3169590 -# define PLATFORM_ID PLATFORM_ID52965,3169634 -# define PLATFORM_ID PLATFORM_ID52966,3169678 -# define PLATFORM_ID PLATFORM_ID52967,3169722 -# define PLATFORM_ID PLATFORM_ID52968,3169766 -# define PLATFORM_ID PLATFORM_ID52969,3169810 -# define PLATFORM_ID PLATFORM_ID52970,3169854 -# define PLATFORM_ID PLATFORM_ID52971,3169898 -# define PLATFORM_ID PLATFORM_ID52972,3169942 -# define PLATFORM_ID PLATFORM_ID52973,3169986 -# define PLATFORM_ID PLATFORM_ID52974,3170030 -# define PLATFORM_ID PLATFORM_ID52975,3170074 -# define PLATFORM_ID PLATFORM_ID52976,3170118 -# define PLATFORM_ID PLATFORM_ID52977,3170162 -# define PLATFORM_ID PLATFORM_ID52978,3170207 -# define PLATFORM_ID PLATFORM_ID52979,3170252 -# define PLATFORM_ID PLATFORM_ID52980,3170297 -# define PLATFORM_ID PLATFORM_ID52981,3170342 -# define PLATFORM_ID PLATFORM_ID52982,3170387 -# define ARCHITECTURE_ID ARCHITECTURE_ID52983,3170431 -# define ARCHITECTURE_ID ARCHITECTURE_ID52984,3170484 -# define ARCHITECTURE_ID ARCHITECTURE_ID52985,3170537 -# define ARCHITECTURE_ID ARCHITECTURE_ID52986,3170590 -# define ARCHITECTURE_ID ARCHITECTURE_ID52987,3170644 -# define ARCHITECTURE_ID ARCHITECTURE_ID52988,3170698 -# define ARCHITECTURE_ID ARCHITECTURE_ID52989,3170752 -# define ARCHITECTURE_ID ARCHITECTURE_ID52990,3170805 -# define ARCHITECTURE_ID ARCHITECTURE_ID52991,3170858 -# define ARCHITECTURE_ID ARCHITECTURE_ID52992,3170911 -# define ARCHITECTURE_ID ARCHITECTURE_ID52993,3170964 -# define ARCHITECTURE_ID ARCHITECTURE_ID52994,3171017 -# define ARCHITECTURE_ID ARCHITECTURE_ID52995,3171070 -#define DEC(DEC52996,3171123 -#define HEX(HEX52997,3171150 -# define ID_VOID_MAINID_VOID_MAIN53006,3171699 -# define constconst53007,3171739 -# define volatilevolatile53008,3171767 -# define COMPILER_ID COMPILER_ID53009,3171801 -# define SIMULATE_ID SIMULATE_ID53010,3171842 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53011,3171884 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53012,3171947 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53013,3172010 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53014,3172074 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK53015,3172138 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR53016,3172202 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR53017,3172267 -# define COMPILER_ID COMPILER_ID53018,3172332 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53019,3172374 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53020,3172438 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53021,3172502 -# define COMPILER_ID COMPILER_ID53022,3172567 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53023,3172609 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53024,3172673 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53025,3172737 -# define COMPILER_ID COMPILER_ID53026,3172801 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53027,3172843 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53028,3172907 -# define COMPILER_ID COMPILER_ID53029,3172971 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53030,3173013 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53031,3173077 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53032,3173141 -# define COMPILER_ID COMPILER_ID53033,3173206 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53034,3173248 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53035,3173312 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53036,3173376 -# define COMPILER_ID COMPILER_ID53037,3173441 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53038,3173483 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53039,3173548 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53040,3173613 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53041,3173678 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53042,3173743 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53043,3173808 -# define COMPILER_ID COMPILER_ID53044,3173873 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53045,3173915 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53046,3173979 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53047,3174043 -# define COMPILER_ID COMPILER_ID53048,3174107 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53049,3174150 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53050,3174215 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53051,3174280 -# define COMPILER_ID COMPILER_ID53052,3174345 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53053,3174388 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53054,3174453 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53055,3174518 -# define COMPILER_ID COMPILER_ID53056,3174583 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53057,3174626 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53058,3174691 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53059,3174756 -# define COMPILER_ID COMPILER_ID53060,3174821 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53061,3174864 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53062,3174929 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53063,3174994 -# define COMPILER_ID COMPILER_ID53064,3175059 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53065,3175102 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53066,3175167 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53067,3175232 -# define COMPILER_ID COMPILER_ID53068,3175298 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53069,3175341 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53070,3175406 -# define COMPILER_ID COMPILER_ID53071,3175471 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53072,3175514 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53073,3175579 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53074,3175644 -# define COMPILER_ID COMPILER_ID53075,3175709 -# define COMPILER_ID COMPILER_ID53076,3175752 -# define COMPILER_ID COMPILER_ID53077,3175795 -# define COMPILER_ID COMPILER_ID53078,3175838 -# define COMPILER_ID COMPILER_ID53079,3175881 -# define SIMULATE_ID SIMULATE_ID53080,3175924 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53081,3175968 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53082,3176033 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53083,3176098 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR53084,3176163 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR53085,3176229 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK53086,3176295 -# define COMPILER_ID COMPILER_ID53087,3176360 -# define SIMULATE_ID SIMULATE_ID53088,3176403 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53089,3176447 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53090,3176512 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53091,3176577 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR53092,3176642 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR53093,3176708 -# define COMPILER_ID COMPILER_ID53094,3176774 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53095,3176817 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53096,3176882 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53097,3176948 -# define COMPILER_ID COMPILER_ID53098,3177014 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53099,3177057 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53100,3177122 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53101,3177187 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53102,3177254 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK53103,3177321 -# define COMPILER_ID COMPILER_ID53104,3177387 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53105,3177430 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53106,3177495 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53107,3177560 -# define COMPILER_ID COMPILER_ID53108,3177625 -# define COMPILER_ID COMPILER_ID53109,3177668 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53110,3177711 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53111,3177778 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53112,3177845 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53113,3177912 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53114,3177979 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53115,3178046 -# define COMPILER_ID COMPILER_ID53116,3178113 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53117,3178156 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53118,3178222 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53119,3178288 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53120,3178354 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53121,3178420 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53122,3178486 -# define COMPILER_ID COMPILER_ID53123,3178552 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53124,3178595 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53125,3178661 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53126,3178727 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53127,3178793 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53128,3178859 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53129,3178925 -# define COMPILER_ID COMPILER_ID53130,3178991 -# define COMPILER_ID COMPILER_ID53131,3179034 -# define COMPILER_ID COMPILER_ID53132,3179077 -#define STRINGIFY_HELPER(STRINGIFY_HELPER53137,3179451 -#define STRINGIFY(STRINGIFY53138,3179504 -# define PLATFORM_ID PLATFORM_ID53139,3179543 -# define PLATFORM_ID PLATFORM_ID53140,3179587 -# define PLATFORM_ID PLATFORM_ID53141,3179631 -# define PLATFORM_ID PLATFORM_ID53142,3179675 -# define PLATFORM_ID PLATFORM_ID53143,3179719 -# define PLATFORM_ID PLATFORM_ID53144,3179763 -# define PLATFORM_ID PLATFORM_ID53145,3179807 -# define PLATFORM_ID PLATFORM_ID53146,3179851 -# define PLATFORM_ID PLATFORM_ID53147,3179895 -# define PLATFORM_ID PLATFORM_ID53148,3179939 -# define PLATFORM_ID PLATFORM_ID53149,3179983 -# define PLATFORM_ID PLATFORM_ID53150,3180027 -# define PLATFORM_ID PLATFORM_ID53151,3180071 -# define PLATFORM_ID PLATFORM_ID53152,3180115 -# define PLATFORM_ID PLATFORM_ID53153,3180159 -# define PLATFORM_ID PLATFORM_ID53154,3180203 -# define PLATFORM_ID PLATFORM_ID53155,3180247 -# define PLATFORM_ID PLATFORM_ID53156,3180291 -# define PLATFORM_ID PLATFORM_ID53157,3180335 -# define PLATFORM_ID PLATFORM_ID53158,3180379 -# define PLATFORM_ID PLATFORM_ID53159,3180423 -# define PLATFORM_ID PLATFORM_ID53160,3180467 -# define PLATFORM_ID PLATFORM_ID53161,3180511 -# define PLATFORM_ID PLATFORM_ID53162,3180555 -# define PLATFORM_ID PLATFORM_ID53163,3180599 -# define PLATFORM_ID PLATFORM_ID53164,3180643 -# define PLATFORM_ID PLATFORM_ID53165,3180688 -# define PLATFORM_ID PLATFORM_ID53166,3180733 -# define PLATFORM_ID PLATFORM_ID53167,3180778 -# define PLATFORM_IDPLATFORM_ID53168,3180823 -# define PLATFORM_IDPLATFORM_ID53169,3180867 -# define ARCHITECTURE_ID ARCHITECTURE_ID53170,3180910 -# define ARCHITECTURE_ID ARCHITECTURE_ID53171,3180963 -# define ARCHITECTURE_ID ARCHITECTURE_ID53172,3181016 -# define ARCHITECTURE_ID ARCHITECTURE_ID53173,3181069 -# define ARCHITECTURE_ID ARCHITECTURE_ID53174,3181123 -# define ARCHITECTURE_ID ARCHITECTURE_ID53175,3181177 -# define ARCHITECTURE_ID ARCHITECTURE_ID53176,3181231 -# define ARCHITECTURE_ID ARCHITECTURE_ID53177,3181284 -# define ARCHITECTURE_ID ARCHITECTURE_ID53178,3181337 -# define ARCHITECTURE_ID ARCHITECTURE_ID53179,3181390 -# define ARCHITECTURE_ID ARCHITECTURE_ID53180,3181443 -# define ARCHITECTURE_ID ARCHITECTURE_ID53181,3181496 -# define ARCHITECTURE_IDARCHITECTURE_ID53182,3181549 -#define DEC(DEC53183,3181601 -#define HEX(HEX53184,3181628 -# define C_DIALECT C_DIALECT53189,3181955 -# define C_DIALECTC_DIALECT53190,3181996 -# define C_DIALECT C_DIALECT53191,3182036 -# define C_DIALECT C_DIALECT53192,3182076 -# define C_DIALECT C_DIALECT53193,3182116 -# define COMPILER_ID COMPILER_ID53199,3182396 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53200,3182437 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53201,3182500 -# define COMPILER_ID COMPILER_ID53202,3182563 -# define SIMULATE_ID SIMULATE_ID53203,3182604 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53204,3182646 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53205,3182709 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53206,3182772 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53207,3182836 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK53208,3182900 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR53209,3182965 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR53210,3183030 -# define COMPILER_ID COMPILER_ID53211,3183095 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53212,3183137 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53213,3183201 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53214,3183265 -# define COMPILER_ID COMPILER_ID53215,3183330 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53216,3183372 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53217,3183436 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53218,3183500 -# define COMPILER_ID COMPILER_ID53219,3183564 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53220,3183606 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53221,3183670 -# define COMPILER_ID COMPILER_ID53222,3183734 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53223,3183776 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53224,3183840 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53225,3183904 -# define COMPILER_ID COMPILER_ID53226,3183969 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53227,3184011 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53228,3184075 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53229,3184139 -# define COMPILER_ID COMPILER_ID53230,3184204 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53231,3184246 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53232,3184311 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53233,3184376 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53234,3184441 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53235,3184506 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53236,3184571 -# define COMPILER_ID COMPILER_ID53237,3184636 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53238,3184678 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53239,3184742 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53240,3184806 -# define COMPILER_ID COMPILER_ID53241,3184870 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53242,3184913 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53243,3184978 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53244,3185043 -# define COMPILER_ID COMPILER_ID53245,3185108 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53246,3185151 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53247,3185216 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53248,3185281 -# define COMPILER_ID COMPILER_ID53249,3185346 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53250,3185389 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53251,3185454 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53252,3185519 -# define COMPILER_ID COMPILER_ID53253,3185584 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53254,3185627 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53255,3185692 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53256,3185757 -# define COMPILER_ID COMPILER_ID53257,3185822 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53258,3185865 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53259,3185930 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53260,3185995 -# define COMPILER_ID COMPILER_ID53261,3186061 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53262,3186104 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53263,3186169 -# define COMPILER_ID COMPILER_ID53264,3186234 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53265,3186277 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53266,3186342 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53267,3186407 -# define COMPILER_ID COMPILER_ID53268,3186472 -# define COMPILER_ID COMPILER_ID53269,3186515 -# define COMPILER_ID COMPILER_ID53270,3186558 -# define SIMULATE_ID SIMULATE_ID53271,3186601 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53272,3186645 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53273,3186710 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53274,3186775 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR53275,3186840 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR53276,3186906 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK53277,3186972 -# define COMPILER_ID COMPILER_ID53278,3187037 -# define SIMULATE_ID SIMULATE_ID53279,3187080 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53280,3187124 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53281,3187189 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53282,3187254 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR53283,3187319 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR53284,3187385 -# define COMPILER_ID COMPILER_ID53285,3187451 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53286,3187494 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53287,3187560 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53288,3187626 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53289,3187692 -# define COMPILER_ID COMPILER_ID53290,3187758 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53291,3187801 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53292,3187866 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53293,3187931 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53294,3187998 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK53295,3188065 -# define COMPILER_ID COMPILER_ID53296,3188131 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53297,3188174 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53298,3188239 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53299,3188304 -# define COMPILER_ID COMPILER_ID53300,3188369 -# define COMPILER_ID COMPILER_ID53301,3188412 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53302,3188455 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53303,3188522 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53304,3188589 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53305,3188656 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53306,3188723 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53307,3188790 -# define COMPILER_ID COMPILER_ID53308,3188857 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53309,3188900 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53310,3188966 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53311,3189032 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR53312,3189098 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR53313,3189164 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH53314,3189230 -# define COMPILER_ID COMPILER_ID53315,3189296 -# define COMPILER_ID COMPILER_ID53316,3189339 -# define COMPILER_ID COMPILER_ID53317,3189382 -#define STRINGIFY_HELPER(STRINGIFY_HELPER53322,3189754 -#define STRINGIFY(STRINGIFY53323,3189807 -# define PLATFORM_ID PLATFORM_ID53324,3189846 -# define PLATFORM_ID PLATFORM_ID53325,3189890 -# define PLATFORM_ID PLATFORM_ID53326,3189934 -# define PLATFORM_ID PLATFORM_ID53327,3189978 -# define PLATFORM_ID PLATFORM_ID53328,3190022 -# define PLATFORM_ID PLATFORM_ID53329,3190066 -# define PLATFORM_ID PLATFORM_ID53330,3190110 -# define PLATFORM_ID PLATFORM_ID53331,3190154 -# define PLATFORM_ID PLATFORM_ID53332,3190198 -# define PLATFORM_ID PLATFORM_ID53333,3190242 -# define PLATFORM_ID PLATFORM_ID53334,3190286 -# define PLATFORM_ID PLATFORM_ID53335,3190330 -# define PLATFORM_ID PLATFORM_ID53336,3190374 -# define PLATFORM_ID PLATFORM_ID53337,3190418 -# define PLATFORM_ID PLATFORM_ID53338,3190462 -# define PLATFORM_ID PLATFORM_ID53339,3190506 -# define PLATFORM_ID PLATFORM_ID53340,3190550 -# define PLATFORM_ID PLATFORM_ID53341,3190594 -# define PLATFORM_ID PLATFORM_ID53342,3190638 -# define PLATFORM_ID PLATFORM_ID53343,3190682 -# define PLATFORM_ID PLATFORM_ID53344,3190726 -# define PLATFORM_ID PLATFORM_ID53345,3190770 -# define PLATFORM_ID PLATFORM_ID53346,3190814 -# define PLATFORM_ID PLATFORM_ID53347,3190858 -# define PLATFORM_ID PLATFORM_ID53348,3190902 -# define PLATFORM_ID PLATFORM_ID53349,3190946 -# define PLATFORM_ID PLATFORM_ID53350,3190991 -# define PLATFORM_ID PLATFORM_ID53351,3191036 -# define PLATFORM_ID PLATFORM_ID53352,3191081 -# define PLATFORM_IDPLATFORM_ID53353,3191126 -# define PLATFORM_IDPLATFORM_ID53354,3191170 -# define ARCHITECTURE_ID ARCHITECTURE_ID53355,3191213 -# define ARCHITECTURE_ID ARCHITECTURE_ID53356,3191266 -# define ARCHITECTURE_ID ARCHITECTURE_ID53357,3191319 -# define ARCHITECTURE_ID ARCHITECTURE_ID53358,3191372 -# define ARCHITECTURE_ID ARCHITECTURE_ID53359,3191426 -# define ARCHITECTURE_ID ARCHITECTURE_ID53360,3191480 -# define ARCHITECTURE_ID ARCHITECTURE_ID53361,3191534 -# define ARCHITECTURE_ID ARCHITECTURE_ID53362,3191587 -# define ARCHITECTURE_ID ARCHITECTURE_ID53363,3191640 -# define ARCHITECTURE_ID ARCHITECTURE_ID53364,3191693 -# define ARCHITECTURE_ID ARCHITECTURE_ID53365,3191746 -# define ARCHITECTURE_ID ARCHITECTURE_ID53366,3191799 -# define ARCHITECTURE_IDARCHITECTURE_ID53367,3191852 -#define DEC(DEC53368,3191904 -#define HEX(HEX53369,3191931 -#undef KEYKEY53378,3192466 -# define KEY KEY53379,3192486 -# define KEY KEY53380,3192509 -# define KEY KEY53381,3192534 -# define KEY KEY53382,3192559 -#define SIZE SIZE53383,3192584 -#undef KEYKEY53388,3192809 -# define KEY KEY53389,3192829 -# define KEY KEY53390,3192852 -# define KEY KEY53391,3192877 -# define KEY KEY53392,3192902 -#define SIZE SIZE53393,3192927 -#undef KEYKEY53398,3193146 -# define KEY KEY53399,3193166 -# define KEY KEY53400,3193189 -# define KEY KEY53401,3193214 -# define KEY KEY53402,3193239 -#define SIZE SIZE53403,3193264 -#undef KEYKEY53408,3193482 -# define KEY KEY53409,3193502 -# define KEY KEY53410,3193525 -# define KEY KEY53411,3193550 -# define KEY KEY53412,3193575 -#define SIZE SIZE53413,3193600 -#undef KEYKEY53418,3193817 -# define KEY KEY53419,3193837 -# define KEY KEY53420,3193860 -# define KEY KEY53421,3193885 -# define KEY KEY53422,3193910 -#define SIZE SIZE53423,3193935 -#undef KEYKEY53428,3194150 -# define KEY KEY53429,3194170 -# define KEY KEY53430,3194193 -# define KEY KEY53431,3194218 -# define KEY KEY53432,3194243 -#define SIZE SIZE53433,3194268 -#undef KEYKEY53438,3194485 -# define KEY KEY53439,3194505 -# define KEY KEY53440,3194528 -# define KEY KEY53441,3194553 -# define KEY KEY53442,3194578 -#define SIZE SIZE53443,3194603 -#undef KEYKEY53448,3194819 -# define KEY KEY53449,3194839 -# define KEY KEY53450,3194862 -# define KEY KEY53451,3194887 -# define KEY KEY53452,3194912 -#define SIZE SIZE53453,3194937 -#undef KEYKEY53458,3195157 -# define KEY KEY53459,3195177 -# define KEY KEY53460,3195200 -# define KEY KEY53461,3195225 -# define KEY KEY53462,3195250 -#define SIZE SIZE53463,3195275 -#undef KEYKEY53468,3195496 -# define KEY KEY53469,3195516 -# define KEY KEY53470,3195539 -# define KEY KEY53471,3195564 -# define KEY KEY53472,3195589 -#define SIZE SIZE53473,3195614 -#undef KEYKEY53478,3195839 -# define KEY KEY53479,3195859 -# define KEY KEY53480,3195882 -# define KEY KEY53481,3195907 -# define KEY KEY53482,3195932 -#define SIZE SIZE53483,3195957 -#undef KEYKEY53488,3196178 -# define KEY KEY53489,3196198 -# define KEY KEY53490,3196221 -# define KEY KEY53491,3196246 -# define KEY KEY53492,3196271 -#define SIZE SIZE53493,3196296 -#undef KEYKEY53498,3196514 -# define KEY KEY53499,3196534 -# define KEY KEY53500,3196557 -# define KEY KEY53501,3196582 -# define KEY KEY53502,3196607 -#define SIZE SIZE53503,3196632 -#undef KEYKEY53508,3196849 -# define KEY KEY53509,3196869 -# define KEY KEY53510,3196892 -# define KEY KEY53511,3196917 -# define KEY KEY53512,3196942 -#define SIZE SIZE53513,3196967 -#undef KEYKEY53518,3197186 -# define KEY KEY53519,3197206 -# define KEY KEY53520,3197229 -# define KEY KEY53521,3197254 -# define KEY KEY53522,3197279 -#define SIZE SIZE53523,3197304 - #define CONFIG_HCONFIG_H53542,3197925 - #define SYSTEM_OPTIONS SYSTEM_OPTIONS53543,3197958 -#define DEPTH_LIMIT DEPTH_LIMIT53544,3198005 -#define USE_THREADED_CODE USE_THREADED_CODE53545,3198045 -#define TABLING TABLING53546,3198097 -#define LOW_LEVEL_TRACER LOW_LEVEL_TRACER53547,3198129 -#define ALIGN_LONGS ALIGN_LONGS53548,3198180 -#define BITNESS BITNESS53549,3198221 -#define CELLSIZE CELLSIZE53550,3198254 -#define C_CC C_CC53551,3198289 -#define C_CFLAGS C_CFLAGS53552,3198316 -#define C_LDFLAGS C_LDFLAGS53553,3198351 -#define C_LIBPLSO C_LIBPLSO53554,3198388 -#define C_LIBS C_LIBS53555,3198425 -#define FFIEEE FFIEEE53556,3198456 -#define GC_NO_TAGS GC_NO_TAGS53557,3198487 -#define HAVE_ACCESS HAVE_ACCESS53558,3198527 -#define HAVE_ACOSH HAVE_ACOSH53559,3198569 -#define HAVE_ADD_HISTORY HAVE_ADD_HISTORY53560,3198609 -#define HAVE_ASINH HAVE_ASINH53561,3198661 -#define HAVE_ATANH HAVE_ATANH53562,3198701 -#define HAVE_BASENAME HAVE_BASENAME53563,3198741 -#define HAVE_CHDIR HAVE_CHDIR53564,3198787 -#define HAVE_CLOCK HAVE_CLOCK53565,3198827 -#define HAVE_CTIME HAVE_CTIME53566,3198867 -#define HAVE_CTYPE_H HAVE_CTYPE_H53567,3198907 -#define HAVE_DIRECT_H HAVE_DIRECT_H53568,3198951 -#define HAVE_DIRENT_H HAVE_DIRENT_H53569,3198997 -#define HAVE_DLFCN_H HAVE_DLFCN_H53570,3199043 -#define HAVE_DLOPEN HAVE_DLOPEN53571,3199087 -#define HAVE_DUP2 HAVE_DUP253572,3199129 -#define HAVE_ERF HAVE_ERF53573,3199167 -#define HAVE_ERRNO_H HAVE_ERRNO_H53574,3199203 -#define HAVE_FCNTL_H HAVE_FCNTL_H53575,3199247 -#define HAVE_FECLEAREXCEPT HAVE_FECLEAREXCEPT53576,3199291 -#define HAVE_FENV_H HAVE_FENV_H53577,3199347 -#define HAVE_FESETEXCEPTFLAG HAVE_FESETEXCEPTFLAG53578,3199389 -#define HAVE_FESETROUND HAVE_FESETROUND53579,3199449 -#define HAVE_FETESTEXCEPT HAVE_FETESTEXCEPT53580,3199499 -#define HAVE_FGETPOS HAVE_FGETPOS53581,3199553 -#define HAVE_FINITE HAVE_FINITE53582,3199597 -#define HAVE_FPCLASS HAVE_FPCLASS53583,3199639 -#define HAVE_FTIME HAVE_FTIME53584,3199684 -#define HAVE_FTRUNCATE HAVE_FTRUNCATE53585,3199725 -#define HAVE_GCC HAVE_GCC53586,3199774 -#define HAVE_GETCWD HAVE_GETCWD53587,3199811 -#define HAVE_GETENV HAVE_GETENV53588,3199854 -#define HAVE_GETPAGESIZE HAVE_GETPAGESIZE53589,3199897 -#define HAVE_GETPID HAVE_GETPID53590,3199950 -#define HAVE_GETTIMEOFDAY HAVE_GETTIMEOFDAY53591,3199993 -#define HAVE_GMTIME HAVE_GMTIME53592,3200048 -#define HAVE_IEEEFP_H HAVE_IEEEFP_H53593,3200091 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H53594,3200138 -#define HAVE_IO_H HAVE_IO_H53595,3200189 -#define HAVE_ISATTY HAVE_ISATTY53596,3200228 -#define HAVE_ISNAN HAVE_ISNAN53597,3200271 -#define HAVE_ISWBLANK HAVE_ISWBLANK53598,3200312 -#define HAVE_ISWSPACE HAVE_ISWSPACE53599,3200359 -#define HAVE_LABS HAVE_LABS53600,3200406 -#define HAVE_LIBANDROID HAVE_LIBANDROID53601,3200445 -#define HAVE_LIBCOMDLG32 HAVE_LIBCOMDLG3253602,3200496 -#define HAVE_LIBCRYPT HAVE_LIBCRYPT53603,3200549 -#define HAVE_LIBGEN_H HAVE_LIBGEN_H53604,3200596 -#define HAVE_LIBGMP HAVE_LIBGMP53605,3200643 -#define HAVE_LIBJUDY HAVE_LIBJUDY53606,3200686 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H53607,3200731 -#define HAVE_LIBLOG HAVE_LIBLOG53608,3200790 -#define HAVE_LIBM HAVE_LIBM53609,3200833 -#define HAVE_LIBMPE HAVE_LIBMPE53610,3200872 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT53611,3200915 -#define HAVE_LIBNSL HAVE_LIBNSL53612,3200962 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS53613,3201005 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES53614,3201056 -#define HAVE_LIBPSAPI HAVE_LIBPSAPI53615,3201111 -#define HAVE_LIBGMP HAVE_LIBGMP53616,3201158 -#define HAVE_LIBJUDY HAVE_LIBJUDY53617,3201201 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H53618,3201246 -#define HAVE_LIBLOG HAVE_LIBLOG53619,3201305 -#define HAVE_LIBM HAVE_LIBM53620,3201348 -#define HAVE_LIBMPE HAVE_LIBMPE53621,3201387 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT53622,3201430 -#define HAVE_LIBNSL HAVE_LIBNSL53623,3201477 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS53624,3201520 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES53625,3201571 -#define HAVE_LIBSHLWAPI HAVE_LIBSHLWAPI53626,3201626 -#define HAVE_LIBPTHREAD HAVE_LIBPTHREAD53627,3201677 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR53628,3201728 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR253629,3201777 -#define HAVE_LIBRESOLV HAVE_LIBRESOLV53630,3201828 -#define HAVE_LIBSHELL32 HAVE_LIBSHELL3253631,3201877 -#define HAVE_LIBSOCKET HAVE_LIBSOCKET53632,3201928 -#define HAVE_LIBSTDC__ HAVE_LIBSTDC__53633,3201977 -#define HAVE_LIBUNICODE HAVE_LIBUNICODE53634,3202026 -#define HAVE_LIBWS2_32 HAVE_LIBWS2_3253635,3202077 -#define HAVE_LIBWSOCK32 HAVE_LIBWSOCK3253636,3202126 -#define HAVE_LIBXNET HAVE_LIBXNET53637,3202177 -#define HAVE_LIMITS_H HAVE_LIMITS_H53638,3202222 -#define HAVE_LOCALE_H HAVE_LOCALE_H53639,3202269 -#define HAVE_LOCALTIME HAVE_LOCALTIME53640,3202316 -#define HAVE_MALLOC_H HAVE_MALLOC_H53641,3202365 -#define HAVE_MATH_H HAVE_MATH_H53642,3202412 -#define HAVE_MEMCPY HAVE_MEMCPY53643,3202455 -#define HAVE_MEMMOVE HAVE_MEMMOVE53644,3202498 -#define HAVE_MEMORY_H HAVE_MEMORY_H53645,3202543 -#define HAVE_MKSTEMP HAVE_MKSTEMP53646,3202590 -#define HAVE_MKTEMP HAVE_MKTEMP53647,3202635 -#define HAVE_MKTIME HAVE_MKTIME53648,3202678 -#define HAVE_OPENDIR HAVE_OPENDIR53649,3202721 -#define HAVE_PTHREAD_H HAVE_PTHREAD_H53650,3202766 -#define HAVE_PUTENV HAVE_PUTENV53651,3202815 -#define HAVE_RAND HAVE_RAND53652,3202859 -#define HAVE_RENAME HAVE_RENAME53653,3202899 -#define HAVE_RINT HAVE_RINT53654,3202943 -#define HAVE_SETBUF HAVE_SETBUF53655,3202983 -#define HAVE_SETLOCALE HAVE_SETLOCALE53656,3203027 -#define HAVE_SHLOBJ_H HAVE_SHLOBJ_H53657,3203077 -#define HAVE_SIGFPE HAVE_SIGFPE53658,3203125 -#define HAVE_SIGNAL HAVE_SIGNAL53659,3203169 -#define HAVE_SIGNAL_H HAVE_SIGNAL_H53660,3203213 -#define HAVE_SIGSEGV HAVE_SIGSEGV53661,3203261 -#define HAVE_SLEEP HAVE_SLEEP53662,3203307 -#define HAVE_SNPRINTF HAVE_SNPRINTF53663,3203349 -#define HAVE_SRAND HAVE_SRAND53664,3203397 -#define HAVE_STAT HAVE_STAT53665,3203439 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H53666,3203479 -#define STDC_HEADERS STDC_HEADERS53667,3203529 -#define HAVE_FLOAT_H HAVE_FLOAT_H53668,3203575 -#define HAVE_STRING_H HAVE_STRING_H53669,3203621 -#define HAVE_STDARG_H HAVE_STDARG_H53670,3203669 -#define HAVE_STDLIB_H HAVE_STDLIB_H53671,3203717 -#define HAVE_STDINT_H HAVE_STDINT_H53672,3203765 -#define HAVE_STRCASECMP HAVE_STRCASECMP53673,3203813 -#define HAVE_STRCHR HAVE_STRCHR53674,3203865 -#define HAVE_STRERROR HAVE_STRERROR53675,3203909 -#define HAVE_STRICMP HAVE_STRICMP53676,3203957 -#define HAVE_STRINGS_H HAVE_STRINGS_H53677,3204003 -#define HAVE_STRLWR HAVE_STRLWR53678,3204053 -#define HAVE_STRNCASECMP HAVE_STRNCASECMP53679,3204097 -#define HAVE_STRNCAT HAVE_STRNCAT53680,3204151 -#define HAVE_STRNCPY HAVE_STRNCPY53681,3204197 -#define HAVE_STRNLEN HAVE_STRNLEN53682,3204243 -#define HAVE_STRTOD HAVE_STRTOD53683,3204289 -#define HAVE_SYSTEM HAVE_SYSTEM53684,3204333 -#define HAVE_SYS_FILE_H HAVE_SYS_FILE_H53685,3204377 -#define HAVE_SYS_PARAM_H HAVE_SYS_PARAM_H53686,3204429 -#define HAVE_SYS_STAT_H HAVE_SYS_STAT_H53687,3204483 -#define HAVE_SYS_TIME_H HAVE_SYS_TIME_H53688,3204535 -#define HAVE_SYS_TYPES_H HAVE_SYS_TYPES_H53689,3204587 -#define HAVE_TIME HAVE_TIME53690,3204641 -#define HAVE_TIME_H HAVE_TIME_H53691,3204681 -#define TIME_WITH_SYS_TIME_H TIME_WITH_SYS_TIME_H53692,3204725 -#define HAVE_TMPNAM HAVE_TMPNAM53693,3204787 -#define HAVE_UNISTD_H HAVE_UNISTD_H53694,3204831 -#define HAVE_USLEEP HAVE_USLEEP53695,3204879 -#define HAVE_UTIME HAVE_UTIME53696,3204923 -#define HAVE_UTIME_H HAVE_UTIME_H53697,3204965 -#define HAVE_VAR_TIMEZONE HAVE_VAR_TIMEZONE53698,3205011 -#define HAVE_VSNPRINTF HAVE_VSNPRINTF53699,3205067 -#define HAVE_WCHAR_H HAVE_WCHAR_H53700,3205117 -#define HAVE_WCSDUP HAVE_WCSDUP53701,3205163 -#define HAVE_WCSNLEN HAVE_WCSNLEN53702,3205207 -#define HAVE_WCTYPE_H HAVE_WCTYPE_H53703,3205253 -#define HAVE_WINDEF_H HAVE_WINDEF_H53704,3205301 -#define HAVE_WINDOWS_H HAVE_WINDOWS_H53705,3205349 -#define HAVE_WINSOCK2_H HAVE_WINSOCK2_H53706,3205399 -#define HAVE__CHSIZE_S HAVE__CHSIZE_S53707,3205451 -#define HOST_ALIAS HOST_ALIAS53708,3205501 -#define MALLOC_T MALLOC_T53709,3205543 -#define MAX_THREADS MAX_THREADS53710,3205581 -#define MAX_WORKERS MAX_WORKERS53711,3205625 -#define MSHIFTOFFS MSHIFTOFFS53712,3205669 -#define MYDDAS_VERSION MYDDAS_VERSION53713,3205711 -#define MinHeapSpace MinHeapSpace53714,3205761 -#define MinStackSpace MinStackSpace53715,3205807 -#define MinTrailSpace MinTrailSpace53716,3205855 -#define DefHeapSpace DefHeapSpace53717,3205903 -#define DefStackSpace DefStackSpace53718,3205949 -#define DefTrailSpace DefTrailSpace53719,3205997 -#define YAP_FULL_VERSION YAP_FULL_VERSION53720,3206045 -#define YAP_GIT_HEAD YAP_GIT_HEAD53721,3206099 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION53722,3206145 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE53723,3206205 -#define SIZEOF_FLOAT SIZEOF_FLOAT53724,3206253 -#define SIZEOF_INT SIZEOF_INT53725,3206299 -#define SIZEOF_INT_P SIZEOF_INT_P53726,3206341 -#define SIZEOF_LONG SIZEOF_LONG53727,3206387 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT53728,3206431 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG53729,3206483 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT53730,3206537 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT53731,3206599 -#define SIZEOF_SQLWCHAR SIZEOF_SQLWCHAR53732,3206653 -#define SIZEOF_VOIDP SIZEOF_VOIDP53733,3206705 -#define SIZEOF_VOID_P SIZEOF_VOID_P53734,3206751 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T53735,3206799 -#define SO_EXT SO_EXT53736,3206849 -#define SO_PATH SO_PATH53737,3206883 -#define SO_PATH SO_PATH53738,3206919 -#define SO_PATH SO_PATH53739,3206955 -#define SO_PATH SO_PATH53740,3206991 -#define USE_GMP USE_GMP53741,3207027 -#define USE_JUDY USE_JUDY53742,3207063 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN53743,3207101 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN53744,3207155 -#define YAP_ARCH YAP_ARCH53745,3207208 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR53746,3207246 -#define YAP_SHAREDIR YAP_SHAREDIR53747,3207294 -#define YAP_STARTUP YAP_STARTUP53748,3207340 -#define YAP_TIMESTAMP YAP_TIMESTAMP53749,3207384 -#define YAP_TVERSION YAP_TVERSION53750,3207432 -#define YAP_VAR_TIMEZONE YAP_VAR_TIMEZONE53751,3207478 -#define YAP_COMPILED_AT YAP_COMPILED_AT53752,3207532 -#define YAP_YAPLIB YAP_YAPLIB53753,3207584 -#define YAP_BINDIR YAP_BINDIR53754,3207626 -#define YAP_ROOTDIR YAP_ROOTDIR53755,3207668 -#define YAP_LIBDIR YAP_LIBDIR53756,3207712 -#define YAP_YAPJITLIB YAP_YAPJITLIB53757,3207754 -#define MAXPATHLEN MAXPATHLEN53758,3207802 -#define MAXPATHLEN MAXPATHLEN53759,3207844 -#define USE_DL_MALLOC USE_DL_MALLOC53760,3207886 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC53761,3207934 -#define strlcpy(strlcpy53762,3207990 -#define malloc(malloc53763,3208026 -#define realloc(realloc53764,3208060 -#define free(free53765,3208096 -#define __WINDOWS__ __WINDOWS__53766,3208126 -#define X_API X_API53767,3208170 -#define X_APIX_API53768,3208202 -#define O_APIO_API53769,3208233 -#define HAVE_CUDD_CUDD_H HAVE_CUDD_CUDD_H53772,3208288 -#define HAVE_CUDD_CUDDINT_H HAVE_CUDD_CUDDINT_H53773,3208338 -#define GIT_SHA1 GIT_SHA153778,3208434 -#define USE_READLINE USE_READLINE53822,3209248 -#define HAVE_RL_DONE HAVE_RL_DONE53823,3209290 -#define HAVE_RL_FILENAME_COMPLETION_FUNCTION HAVE_RL_FILENAME_COMPLETION_FUNCTION53824,3209333 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H55155,3306576 -#define RCONFIG_HRCONFIG_H55160,3306701 -#define HAVE_R_H HAVE_R_H55161,3306735 -#define HAVE_R_EMBEDDED_H HAVE_R_EMBEDDED_H55162,3306769 -#define HAVE_R_INTERFACE_H HAVE_R_INTERFACE_H55163,3306821 - #define CONFIG_HCONFIG_H55231,3309962 - #define SYSTEM_OPTIONS SYSTEM_OPTIONS55232,3309995 -#define DEPTH_LIMIT DEPTH_LIMIT55233,3310042 -#define USE_THREADED_CODE USE_THREADED_CODE55234,3310082 -#define TABLING TABLING55235,3310134 -#define LOW_LEVEL_TRACER LOW_LEVEL_TRACER55236,3310166 -#define ALIGN_LONGS ALIGN_LONGS55237,3310217 -#define BITNESS BITNESS55238,3310258 -#define CELLSIZE CELLSIZE55239,3310291 -#define C_CC C_CC55240,3310326 -#define C_CFLAGS C_CFLAGS55241,3310353 -#define C_LDFLAGS C_LDFLAGS55242,3310388 -#define C_LIBPLSO C_LIBPLSO55243,3310425 -#define C_LIBS C_LIBS55244,3310462 -#define FFIEEE FFIEEE55245,3310493 -#define GC_NO_TAGS GC_NO_TAGS55246,3310524 -#define HAVE_ACCESS HAVE_ACCESS55247,3310564 -#define HAVE_ACOSH HAVE_ACOSH55248,3310606 -#define HAVE_ADD_HISTORY HAVE_ADD_HISTORY55249,3310646 -#define HAVE_ASINH HAVE_ASINH55250,3310698 -#define HAVE_ATANH HAVE_ATANH55251,3310738 -#define HAVE_BASENAME HAVE_BASENAME55252,3310778 -#define HAVE_CHDIR HAVE_CHDIR55253,3310824 -#define HAVE_CLOCK HAVE_CLOCK55254,3310864 -#define HAVE_CTIME HAVE_CTIME55255,3310904 -#define HAVE_CTYPE_H HAVE_CTYPE_H55256,3310944 -#define HAVE_DIRECT_H HAVE_DIRECT_H55257,3310988 -#define HAVE_DIRENT_H HAVE_DIRENT_H55258,3311034 -#define HAVE_DLFCN_H HAVE_DLFCN_H55259,3311080 -#define HAVE_DLOPEN HAVE_DLOPEN55260,3311124 -#define HAVE_DUP2 HAVE_DUP255261,3311166 -#define HAVE_ERF HAVE_ERF55262,3311204 -#define HAVE_ERRNO_H HAVE_ERRNO_H55263,3311240 -#define HAVE_FCNTL_H HAVE_FCNTL_H55264,3311284 -#define HAVE_FECLEAREXCEPT HAVE_FECLEAREXCEPT55265,3311328 -#define HAVE_FENV_H HAVE_FENV_H55266,3311384 -#define HAVE_FESETEXCEPTFLAG HAVE_FESETEXCEPTFLAG55267,3311426 -#define HAVE_FESETROUND HAVE_FESETROUND55268,3311486 -#define HAVE_FETESTEXCEPT HAVE_FETESTEXCEPT55269,3311536 -#define HAVE_FGETPOS HAVE_FGETPOS55270,3311590 -#define HAVE_FINITE HAVE_FINITE55271,3311634 -#define HAVE_FPCLASS HAVE_FPCLASS55272,3311676 -#define HAVE_FTIME HAVE_FTIME55273,3311721 -#define HAVE_FTRUNCATE HAVE_FTRUNCATE55274,3311762 -#define HAVE_GCC HAVE_GCC55275,3311811 -#define HAVE_GETCWD HAVE_GETCWD55276,3311848 -#define HAVE_GETENV HAVE_GETENV55277,3311891 -#define HAVE_GETPAGESIZE HAVE_GETPAGESIZE55278,3311934 -#define HAVE_GETPID HAVE_GETPID55279,3311987 -#define HAVE_GETTIMEOFDAY HAVE_GETTIMEOFDAY55280,3312030 -#define HAVE_GMTIME HAVE_GMTIME55281,3312085 -#define HAVE_IEEEFP_H HAVE_IEEEFP_H55282,3312128 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H55283,3312175 -#define HAVE_IO_H HAVE_IO_H55284,3312226 -#define HAVE_ISATTY HAVE_ISATTY55285,3312265 -#define HAVE_ISNAN HAVE_ISNAN55286,3312308 -#define HAVE_ISWBLANK HAVE_ISWBLANK55287,3312349 -#define HAVE_ISWSPACE HAVE_ISWSPACE55288,3312396 -#define HAVE_LABS HAVE_LABS55289,3312443 -#define HAVE_LIBANDROID HAVE_LIBANDROID55290,3312482 -#define HAVE_LIBCOMDLG32 HAVE_LIBCOMDLG3255291,3312533 -#define HAVE_LIBCRYPT HAVE_LIBCRYPT55292,3312586 -#define HAVE_LIBGEN_H HAVE_LIBGEN_H55293,3312633 -#define HAVE_LIBGMP HAVE_LIBGMP55294,3312680 -#define HAVE_LIBJUDY HAVE_LIBJUDY55295,3312723 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H55296,3312768 -#define HAVE_LIBLOG HAVE_LIBLOG55297,3312827 -#define HAVE_LIBM HAVE_LIBM55298,3312870 -#define HAVE_LIBMPE HAVE_LIBMPE55299,3312909 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT55300,3312952 -#define HAVE_LIBNSL HAVE_LIBNSL55301,3312999 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS55302,3313042 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES55303,3313093 -#define HAVE_LIBPSAPI HAVE_LIBPSAPI55304,3313148 -#define HAVE_LIBGMP HAVE_LIBGMP55305,3313195 -#define HAVE_LIBJUDY HAVE_LIBJUDY55306,3313238 -#define HAVE_LIBLOADERAPI_H HAVE_LIBLOADERAPI_H55307,3313283 -#define HAVE_LIBLOG HAVE_LIBLOG55308,3313342 -#define HAVE_LIBM HAVE_LIBM55309,3313385 -#define HAVE_LIBMPE HAVE_LIBMPE55310,3313424 -#define HAVE_LIBMSCRT HAVE_LIBMSCRT55311,3313467 -#define HAVE_LIBNSL HAVE_LIBNSL55312,3313514 -#define HAVE_LIBNSS_DNS HAVE_LIBNSS_DNS55313,3313557 -#define HAVE_LIBNSS_FILES HAVE_LIBNSS_FILES55314,3313608 -#define HAVE_LIBSHLWAPI HAVE_LIBSHLWAPI55315,3313663 -#define HAVE_LIBPTHREAD HAVE_LIBPTHREAD55316,3313714 -#define HAVE_LIBRAPTOR HAVE_LIBRAPTOR55317,3313765 -#define HAVE_LIBRAPTOR2 HAVE_LIBRAPTOR255318,3313814 -#define HAVE_LIBRESOLV HAVE_LIBRESOLV55319,3313865 -#define HAVE_LIBSHELL32 HAVE_LIBSHELL3255320,3313914 -#define HAVE_LIBSOCKET HAVE_LIBSOCKET55321,3313965 -#define HAVE_LIBSTDC__ HAVE_LIBSTDC__55322,3314014 -#define HAVE_LIBUNICODE HAVE_LIBUNICODE55323,3314063 -#define HAVE_LIBWS2_32 HAVE_LIBWS2_3255324,3314114 -#define HAVE_LIBWSOCK32 HAVE_LIBWSOCK3255325,3314163 -#define HAVE_LIBXNET HAVE_LIBXNET55326,3314214 -#define HAVE_LIMITS_H HAVE_LIMITS_H55327,3314259 -#define HAVE_LOCALE_H HAVE_LOCALE_H55328,3314306 -#define HAVE_LOCALTIME HAVE_LOCALTIME55329,3314353 -#define HAVE_MALLOC_H HAVE_MALLOC_H55330,3314402 -#define HAVE_MATH_H HAVE_MATH_H55331,3314449 -#define HAVE_MEMCPY HAVE_MEMCPY55332,3314492 -#define HAVE_MEMMOVE HAVE_MEMMOVE55333,3314535 -#define HAVE_MEMORY_H HAVE_MEMORY_H55334,3314580 -#define HAVE_MKSTEMP HAVE_MKSTEMP55335,3314627 -#define HAVE_MKTEMP HAVE_MKTEMP55336,3314672 -#define HAVE_MKTIME HAVE_MKTIME55337,3314715 -#define HAVE_OPENDIR HAVE_OPENDIR55338,3314758 -#define HAVE_PTHREAD_H HAVE_PTHREAD_H55339,3314803 -#define HAVE_PUTENV HAVE_PUTENV55340,3314852 -#define HAVE_RAND HAVE_RAND55341,3314896 -#define HAVE_RENAME HAVE_RENAME55342,3314936 -#define HAVE_RINT HAVE_RINT55343,3314980 -#define HAVE_SETBUF HAVE_SETBUF55344,3315020 -#define HAVE_SETLOCALE HAVE_SETLOCALE55345,3315064 -#define HAVE_SHLOBJ_H HAVE_SHLOBJ_H55346,3315114 -#define HAVE_SIGFPE HAVE_SIGFPE55347,3315162 -#define HAVE_SIGNAL HAVE_SIGNAL55348,3315206 -#define HAVE_SIGNAL_H HAVE_SIGNAL_H55349,3315250 -#define HAVE_SIGSEGV HAVE_SIGSEGV55350,3315298 -#define HAVE_SLEEP HAVE_SLEEP55351,3315344 -#define HAVE_SNPRINTF HAVE_SNPRINTF55352,3315386 -#define HAVE_SRAND HAVE_SRAND55353,3315434 -#define HAVE_STAT HAVE_STAT55354,3315476 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H55355,3315516 -#define STDC_HEADERS STDC_HEADERS55356,3315566 -#define HAVE_FLOAT_H HAVE_FLOAT_H55357,3315612 -#define HAVE_STRING_H HAVE_STRING_H55358,3315658 -#define HAVE_STDARG_H HAVE_STDARG_H55359,3315706 -#define HAVE_STDLIB_H HAVE_STDLIB_H55360,3315754 -#define HAVE_STDINT_H HAVE_STDINT_H55361,3315802 -#define HAVE_STRCASECMP HAVE_STRCASECMP55362,3315850 -#define HAVE_STRCHR HAVE_STRCHR55363,3315902 -#define HAVE_STRERROR HAVE_STRERROR55364,3315946 -#define HAVE_STRICMP HAVE_STRICMP55365,3315994 -#define HAVE_STRINGS_H HAVE_STRINGS_H55366,3316040 -#define HAVE_STRLWR HAVE_STRLWR55367,3316090 -#define HAVE_STRNCASECMP HAVE_STRNCASECMP55368,3316134 -#define HAVE_STRNCAT HAVE_STRNCAT55369,3316188 -#define HAVE_STRNCPY HAVE_STRNCPY55370,3316234 -#define HAVE_STRNLEN HAVE_STRNLEN55371,3316280 -#define HAVE_STRTOD HAVE_STRTOD55372,3316326 -#define HAVE_SYSTEM HAVE_SYSTEM55373,3316370 -#define HAVE_SYS_FILE_H HAVE_SYS_FILE_H55374,3316414 -#define HAVE_SYS_PARAM_H HAVE_SYS_PARAM_H55375,3316466 -#define HAVE_SYS_STAT_H HAVE_SYS_STAT_H55376,3316520 -#define HAVE_SYS_TIME_H HAVE_SYS_TIME_H55377,3316572 -#define HAVE_SYS_TYPES_H HAVE_SYS_TYPES_H55378,3316624 -#define HAVE_TIME HAVE_TIME55379,3316678 -#define HAVE_TIME_H HAVE_TIME_H55380,3316718 -#define TIME_WITH_SYS_TIME_H TIME_WITH_SYS_TIME_H55381,3316762 -#define HAVE_TMPNAM HAVE_TMPNAM55382,3316824 -#define HAVE_UNISTD_H HAVE_UNISTD_H55383,3316868 -#define HAVE_USLEEP HAVE_USLEEP55384,3316916 -#define HAVE_UTIME HAVE_UTIME55385,3316960 -#define HAVE_UTIME_H HAVE_UTIME_H55386,3317002 -#define HAVE_VAR_TIMEZONE HAVE_VAR_TIMEZONE55387,3317048 -#define HAVE_VSNPRINTF HAVE_VSNPRINTF55388,3317104 -#define HAVE_WCHAR_H HAVE_WCHAR_H55389,3317154 -#define HAVE_WCSDUP HAVE_WCSDUP55390,3317200 -#define HAVE_WCSNLEN HAVE_WCSNLEN55391,3317244 -#define HAVE_WCTYPE_H HAVE_WCTYPE_H55392,3317290 -#define HAVE_WINDEF_H HAVE_WINDEF_H55393,3317338 -#define HAVE_WINDOWS_H HAVE_WINDOWS_H55394,3317386 -#define HAVE_WINSOCK2_H HAVE_WINSOCK2_H55395,3317436 -#define HAVE__CHSIZE_S HAVE__CHSIZE_S55396,3317488 -#define HOST_ALIAS HOST_ALIAS55397,3317538 -#define MALLOC_T MALLOC_T55398,3317580 -#define MAX_THREADS MAX_THREADS55399,3317618 -#define MAX_WORKERS MAX_WORKERS55400,3317662 -#define MSHIFTOFFS MSHIFTOFFS55401,3317706 -#define MYDDAS_VERSION MYDDAS_VERSION55402,3317748 -#define MinHeapSpace MinHeapSpace55403,3317798 -#define MinStackSpace MinStackSpace55404,3317844 -#define MinTrailSpace MinTrailSpace55405,3317892 -#define DefHeapSpace DefHeapSpace55406,3317940 -#define DefStackSpace DefStackSpace55407,3317986 -#define DefTrailSpace DefTrailSpace55408,3318034 -#define YAP_FULL_VERSION YAP_FULL_VERSION55409,3318082 -#define YAP_GIT_HEAD YAP_GIT_HEAD55410,3318136 -#define YAP_NUMERIC_VERSION YAP_NUMERIC_VERSION55411,3318182 -#define SIZEOF_DOUBLE SIZEOF_DOUBLE55412,3318242 -#define SIZEOF_FLOAT SIZEOF_FLOAT55413,3318290 -#define SIZEOF_INT SIZEOF_INT55414,3318336 -#define SIZEOF_INT_P SIZEOF_INT_P55415,3318378 -#define SIZEOF_LONG SIZEOF_LONG55416,3318424 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT55417,3318468 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG55418,3318520 -#define SIZEOF_LONG_LONG_INT SIZEOF_LONG_LONG_INT55419,3318574 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT55420,3318636 -#define SIZEOF_SQLWCHAR SIZEOF_SQLWCHAR55421,3318690 -#define SIZEOF_VOIDP SIZEOF_VOIDP55422,3318742 -#define SIZEOF_VOID_P SIZEOF_VOID_P55423,3318788 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T55424,3318836 -#define SO_EXT SO_EXT55425,3318886 -#define SO_PATH SO_PATH55426,3318920 -#define SO_PATH SO_PATH55427,3318956 -#define SO_PATH SO_PATH55428,3318992 -#define SO_PATH SO_PATH55429,3319028 -#define USE_GMP USE_GMP55430,3319064 -#define USE_JUDY USE_JUDY55431,3319100 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN55432,3319138 -# define WORDS_BIGENDIAN WORDS_BIGENDIAN55433,3319192 -#define YAP_ARCH YAP_ARCH55434,3319245 -#define YAP_PL_SRCDIR YAP_PL_SRCDIR55435,3319283 -#define YAP_SHAREDIR YAP_SHAREDIR55436,3319331 -#define YAP_STARTUP YAP_STARTUP55437,3319377 -#define YAP_TIMESTAMP YAP_TIMESTAMP55438,3319421 -#define YAP_TVERSION YAP_TVERSION55439,3319469 -#define YAP_VAR_TIMEZONE YAP_VAR_TIMEZONE55440,3319515 -#define YAP_COMPILED_AT YAP_COMPILED_AT55441,3319569 -#define YAP_YAPLIB YAP_YAPLIB55442,3319621 -#define YAP_BINDIR YAP_BINDIR55443,3319663 -#define YAP_ROOTDIR YAP_ROOTDIR55444,3319705 -#define YAP_LIBDIR YAP_LIBDIR55445,3319749 -#define YAP_YAPJITLIB YAP_YAPJITLIB55446,3319791 -#define MAXPATHLEN MAXPATHLEN55447,3319839 -#define MAXPATHLEN MAXPATHLEN55448,3319881 -#define USE_DL_MALLOC USE_DL_MALLOC55449,3319923 -#define USE_SYSTEM_MALLOC USE_SYSTEM_MALLOC55450,3319971 -#define strlcpy(strlcpy55451,3320027 -#define malloc(malloc55452,3320063 -#define realloc(realloc55453,3320097 -#define free(free55454,3320133 -#define __WINDOWS__ __WINDOWS__55455,3320163 -#define X_API X_API55456,3320207 -#define X_APIX_API55457,3320239 -#define O_APIO_API55458,3320270 -#define YAP_TERM_CONFIG YAP_TERM_CONFIG55461,3320327 -#define SIZEOF_INT_P SIZEOF_INT_P55462,3320373 -#define SIZEOF_INT SIZEOF_INT55463,3320414 -#define SIZEOF_SHORT_INT SIZEOF_SHORT_INT55464,3320452 -#define SIZEOF_LONG_INT SIZEOF_LONG_INT55465,3320502 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG55466,3320550 -#define SIZEOF_FLOAT SIZEOF_FLOAT55467,3320600 -#define SIZEOF_FLOAT SIZEOF_FLOAT55468,3320642 -#define HAVE_INTTYPES_H HAVE_INTTYPES_H55469,3320684 -#define HAVE_STDBOOL_H HAVE_STDBOOL_H55470,3320732 -#define HAVE_STDINT_H HAVE_STDINT_H55471,3320778 -#define __dummy_lock(__dummy_lock55479,3321085 -#define mb(mb55480,3321128 -#define INIT_LOCK(INIT_LOCK55481,3321151 -#define TRY_LOCK(TRY_LOCK55482,3321188 -#define LOCK(LOCK55483,3321223 -#define IS_LOCKED(IS_LOCKED55484,3321250 -#define IS_UNLOCKED(IS_UNLOCKED55485,3321287 -#define UNLOCK(UNLOCK55486,3321328 -#define RW_LOCK_UNLOCKED RW_LOCK_UNLOCKED55492,3321703 -#define READ_LOCK(READ_LOCK55493,3321754 -#define READ_UNLOCK(READ_UNLOCK55494,3321791 -#define WRITE_LOCK(WRITE_LOCK55495,3321832 -#define WRITE_UNLOCK(WRITE_UNLOCK55496,3321871 -#define INIT_RWLOCK(INIT_RWLOCK55497,3321914 -#define __dummy_lock(__dummy_lock55511,3322675 -#define load_linked(load_linked55512,3322718 -#define store_conditional(store_conditional55513,3322759 -#define INIT_LOCK(INIT_LOCK55514,3322812 -#define TRY_LOCK(TRY_LOCK55515,3322849 -#define LOCK(LOCK55516,3322884 -#define IS_LOCKED(IS_LOCKED55517,3322911 -#define IS_UNLOCKED(IS_UNLOCKED55518,3322948 -#define UNLOCK(UNLOCK55519,3322989 -#define RW_LOCK_UNLOCKED RW_LOCK_UNLOCKED55523,3323144 -#define READ_LOCK(READ_LOCK55524,3323195 -#define READ_UNLOCK(READ_UNLOCK55525,3323232 -#define WRITE_LOCK(WRITE_LOCK55526,3323273 -#define WRITE_UNLOCK(WRITE_UNLOCK55527,3323312 -#define INIT_RWLOCK(INIT_RWLOCK55528,3323355 -#define LOCK_PTHREAD_H LOCK_PTHREAD_H55540,3323960 -#define debugf debugf55541,3324007 -#define INIT_LOCK(INIT_LOCK55542,3324038 -#define DESTROY_LOCK(DESTROY_LOCK55543,3324075 -#define TRY_LOCK(TRY_LOCK55544,3324118 -#define LOCK(LOCK55545,3324153 -#define UNLOCK(UNLOCK55546,3324180 -#define LOCK(LOCK55547,3324211 -#define UNLOCK(UNLOCK55548,3324238 -#define IS_LOCKED(IS_LOCKED55551,3324391 -#define IS_UNLOCKED(IS_UNLOCKED55552,3324428 -#define INIT_RWLOCK(INIT_RWLOCK55553,3324469 -#define DESTROY_RWLOCK(DESTROY_RWLOCK55554,3324510 -#define READ_LOCK(READ_LOCK55555,3324557 -#define READ_UNLOCK(READ_UNLOCK55556,3324594 -#define WRITE_LOCK(WRITE_LOCK55557,3324635 -#define WRITE_UNLOCK(WRITE_UNLOCK55558,3324674 -#define READ_LOCK(READ_LOCK55559,3324717 -#define READ_UNLOCK(READ_UNLOCK55560,3324754 -#define WRITE_LOCK(WRITE_LOCK55561,3324795 -#define WRITE_UNLOCK(WRITE_UNLOCK55562,3324834 -#define TRUE_FUNC_WRITE_LOCK(TRUE_FUNC_WRITE_LOCK55563,3324877 -#define TRUE_FUNC_WRITE_UNLOCK(TRUE_FUNC_WRITE_UNLOCK55564,3324936 -#define MUTEX_LOCK(MUTEX_LOCK55565,3324999 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK55566,3325039 -#define MUTEX_UNLOCK(MUTEX_UNLOCK55567,3325085 -#define MUTEX_LOCK(MUTEX_LOCK55568,3325129 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK55569,3325169 -#define MUTEX_UNLOCK(MUTEX_UNLOCK55570,3325215 -#define MUTEX_LOCK(MUTEX_LOCK55571,3325259 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK55572,3325299 -#define MUTEX_UNLOCK(MUTEX_UNLOCK55573,3325345 -#define swap_il(swap_il55576,3325416 -#define TRY_LOCK(TRY_LOCK55577,3325449 -#define INIT_LOCK(INIT_LOCK55578,3325484 -#define LOCK(LOCK55579,3325521 -#define IS_LOCKED(IS_LOCKED55580,3325548 -#define IS_UNLOCKED(IS_UNLOCKED55581,3325585 -#define UNLOCK(UNLOCK55582,3325626 -#define READ_LOCK(READ_LOCK55587,3325949 -#define READ_UNLOCK(READ_UNLOCK55589,3326057 -#define WRITE_LOCK(WRITE_LOCK55591,3326165 -#define WRITE_UNLOCK(WRITE_UNLOCK55592,3326205 -#define INIT_RWLOCK(INIT_RWLOCK55593,3326249 -#define INIT_LOCK(INIT_LOCK55601,3326553 -#define TRY_LOCK(TRY_LOCK55602,3326590 -#define LOCK(LOCK55603,3326625 -#define IS_LOCKED(IS_LOCKED55604,3326652 -#define IS_UNLOCKED(IS_UNLOCKED55605,3326689 -#define UNLOCK(UNLOCK55606,3326730 -#define LOCK(LOCK55607,3326761 -#define IS_LOCKED(IS_LOCKED55608,3326788 -#define IS_UNLOCKED(IS_UNLOCKED55609,3326825 -#define UNLOCK(UNLOCK55610,3326866 -#define RWLOCK_OFFSET RWLOCK_OFFSET55614,3327009 -#define INIT_RWLOCK(INIT_RWLOCK55624,3327509 -#define READ_LOCK(READ_LOCK55625,3327551 -#define READ_UNLOCK(READ_UNLOCK55626,3327589 -#define WRITE_LOCK(WRITE_LOCK55627,3327631 -#define WRITE_UNLOCK(WRITE_UNLOCK55628,3327671 -#define MUTEX_LOCK(MUTEX_LOCK55629,3327715 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK55630,3327755 -#define MUTEX_UNLOCK(MUTEX_UNLOCK55631,3327801 -#define MUTEX_LOCK(MUTEX_LOCK55632,3327845 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK55633,3327885 -#define MUTEX_UNLOCK(MUTEX_UNLOCK55634,3327931 -#define MUTEX_LOCK(MUTEX_LOCK55635,3327975 -#define MUTEX_TRYLOCK(MUTEX_TRYLOCK55636,3328015 -#define MUTEX_UNLOCK(MUTEX_UNLOCK55637,3328061 -#define MAX_TABLE_VARS MAX_TABLE_VARS55640,3328132 -#define TRIE_LOCK_BUCKETS TRIE_LOCK_BUCKETS55641,3328179 -#define THREADS_DIRECT_BUCKETS THREADS_DIRECT_BUCKETS55642,3328232 -#define THREADS_INDIRECT_BUCKETS THREADS_INDIRECT_BUCKETS55643,3328295 -#define THREADS_NUM_BUCKETS THREADS_NUM_BUCKETS55644,3328362 -#define TG_ANSWER_SLOTS TG_ANSWER_SLOTS55645,3328419 -#define MAX_BRANCH_DEPTH MAX_BRANCH_DEPTH55646,3328468 -#define MMAP_MEMORY_MAPPING_SCHEME MMAP_MEMORY_MAPPING_SCHEME55647,3328519 -#define BFZ_TRAIL_SCHEME BFZ_TRAIL_SCHEME55648,3328590 -#define THREADS_NO_SHARING THREADS_NO_SHARING55649,3328641 -#define SUBGOAL_TRIE_LOCK_AT_NODE_LEVEL SUBGOAL_TRIE_LOCK_AT_NODE_LEVEL55650,3328696 -#define ANSWER_TRIE_LOCK_AT_NODE_LEVEL ANSWER_TRIE_LOCK_AT_NODE_LEVEL55651,3328777 -#define GLOBAL_TRIE_LOCK_AT_NODE_LEVEL GLOBAL_TRIE_LOCK_AT_NODE_LEVEL55652,3328856 -#define TRIE_LOCK_USING_NODE_FIELD TRIE_LOCK_USING_NODE_FIELD55653,3328935 -#define MODE_DIRECTED_TABLING MODE_DIRECTED_TABLING55654,3329006 -#define TABLING_EARLY_COMPLETION TABLING_EARLY_COMPLETION55655,3329067 -#define TRIE_COMPACT_PAIRS TRIE_COMPACT_PAIRS55656,3329135 -#define TABLING_INNER_CUTS TABLING_INNER_CUTS55657,3329191 -#define TIMESTAMP_CHECK TIMESTAMP_CHECK55658,3329247 -#define TRIE_RATIONAL_TERMS TRIE_RATIONAL_TERMS55659,3329297 -#undef MMAP_MEMORY_MAPPING_SCHEMEMMAP_MEMORY_MAPPING_SCHEME55660,3329355 -#define SHM_MEMORY_MAPPING_SCHEMESHM_MEMORY_MAPPING_SCHEME55661,3329425 -#undef MMAP_MEMORY_MAPPING_SCHEMEMMAP_MEMORY_MAPPING_SCHEME55662,3329494 -#undef SHM_MEMORY_MAPPING_SCHEMESHM_MEMORY_MAPPING_SCHEME55663,3329564 -#undef DEBUG_YAPORDEBUG_YAPOR55664,3329632 -#undef BFZ_TRAIL_SCHEMEBFZ_TRAIL_SCHEME55665,3329672 -#undef BBREG_TRAIL_SCHEMEBBREG_TRAIL_SCHEME55666,3329722 -#undef MODE_DIRECTED_TABLINGMODE_DIRECTED_TABLING55667,3329776 -#undef TABLING_EARLY_COMPLETIONTABLING_EARLY_COMPLETION55668,3329836 -#undef TRIE_COMPACT_PAIRSTRIE_COMPACT_PAIRS55669,3329902 -#undef GLOBAL_TRIE_FOR_SUBTERMSGLOBAL_TRIE_FOR_SUBTERMS55670,3329956 -#undef INCOMPLETE_TABLINGINCOMPLETE_TABLING55671,3330022 -#undef LIMIT_TABLINGLIMIT_TABLING55672,3330076 -#undef DETERMINISTIC_TABLINGDETERMINISTIC_TABLING55673,3330120 -#undef DEBUG_TABLINGDEBUG_TABLING55674,3330180 -#undef SUBGOAL_TRIE_ALLOC_BEFORE_CHECKSUBGOAL_TRIE_ALLOC_BEFORE_CHECK55675,3330224 -#undef ANSWER_TRIE_ALLOC_BEFORE_CHECKANSWER_TRIE_ALLOC_BEFORE_CHECK55676,3330304 -#undef GLOBAL_TRIE_ALLOC_BEFORE_CHECKGLOBAL_TRIE_ALLOC_BEFORE_CHECK55677,3330383 -#undef SUBGOAL_TRIE_LOCK_AT_ENTRY_LEVELSUBGOAL_TRIE_LOCK_AT_ENTRY_LEVEL55678,3330462 -#undef SUBGOAL_TRIE_LOCK_AT_NODE_LEVELSUBGOAL_TRIE_LOCK_AT_NODE_LEVEL55679,3330545 -#undef SUBGOAL_TRIE_LOCK_AT_WRITE_LEVELSUBGOAL_TRIE_LOCK_AT_WRITE_LEVEL55680,3330626 -#undef SUBGOAL_TRIE_ALLOC_BEFORE_CHECKSUBGOAL_TRIE_ALLOC_BEFORE_CHECK55681,3330709 -#undef ANSWER_TRIE_LOCK_AT_ENTRY_LEVELANSWER_TRIE_LOCK_AT_ENTRY_LEVEL55682,3330790 -#undef ANSWER_TRIE_LOCK_AT_NODE_LEVELANSWER_TRIE_LOCK_AT_NODE_LEVEL55683,3330871 -#undef ANSWER_TRIE_LOCK_AT_WRITE_LEVELANSWER_TRIE_LOCK_AT_WRITE_LEVEL55684,3330950 -#undef ANSWER_TRIE_ALLOC_BEFORE_CHECKANSWER_TRIE_ALLOC_BEFORE_CHECK55685,3331031 -#undef GLOBAL_TRIE_LOCK_AT_NODE_LEVELGLOBAL_TRIE_LOCK_AT_NODE_LEVEL55686,3331110 -#undef GLOBAL_TRIE_LOCK_AT_WRITE_LEVELGLOBAL_TRIE_LOCK_AT_WRITE_LEVEL55687,3331189 -#undef GLOBAL_TRIE_ALLOC_BEFORE_CHECKGLOBAL_TRIE_ALLOC_BEFORE_CHECK55688,3331270 -#undef TRIE_LOCK_USING_NODE_FIELDTRIE_LOCK_USING_NODE_FIELD55689,3331349 -#undef TRIE_LOCK_USING_GLOBAL_ARRAYTRIE_LOCK_USING_GLOBAL_ARRAY55690,3331420 -#undef SUBGOAL_TRIE_LOCK_AT_ENTRY_LEVELSUBGOAL_TRIE_LOCK_AT_ENTRY_LEVEL55691,3331495 -#undef SUBGOAL_TRIE_LOCK_AT_NODE_LEVELSUBGOAL_TRIE_LOCK_AT_NODE_LEVEL55692,3331578 -#undef SUBGOAL_TRIE_LOCK_AT_WRITE_LEVELSUBGOAL_TRIE_LOCK_AT_WRITE_LEVEL55693,3331659 -#undef SUBGOAL_TRIE_ALLOC_BEFORE_CHECKSUBGOAL_TRIE_ALLOC_BEFORE_CHECK55694,3331742 -#undef ANSWER_TRIE_LOCK_AT_ENTRY_LEVELANSWER_TRIE_LOCK_AT_ENTRY_LEVEL55695,3331823 -#undef ANSWER_TRIE_LOCK_AT_NODE_LEVELANSWER_TRIE_LOCK_AT_NODE_LEVEL55696,3331904 -#undef ANSWER_TRIE_LOCK_AT_WRITE_LEVELANSWER_TRIE_LOCK_AT_WRITE_LEVEL55697,3331983 -#undef ANSWER_TRIE_ALLOC_BEFORE_CHECKANSWER_TRIE_ALLOC_BEFORE_CHECK55698,3332064 -#undef THREADS_NO_SHARINGTHREADS_NO_SHARING55699,3332143 -#undef THREADS_SUBGOAL_SHARINGTHREADS_SUBGOAL_SHARING55700,3332198 -#undef THREADS_FULL_SHARINGTHREADS_FULL_SHARING55701,3332263 -#undef THREADS_CONSUMER_SHARINGTHREADS_CONSUMER_SHARING55702,3332322 -#define SUBGOAL_TRIE_LOCK_USING_NODE_FIELD SUBGOAL_TRIE_LOCK_USING_NODE_FIELD55703,3332389 -#define ANSWER_TRIE_LOCK_USING_NODE_FIELD ANSWER_TRIE_LOCK_USING_NODE_FIELD55704,3332478 -#define GLOBAL_TRIE_LOCK_USING_NODE_FIELD GLOBAL_TRIE_LOCK_USING_NODE_FIELD55705,3332565 -#define SUBGOAL_TRIE_LOCK_USING_GLOBAL_ARRAY SUBGOAL_TRIE_LOCK_USING_GLOBAL_ARRAY55706,3332652 -#define ANSWER_TRIE_LOCK_USING_GLOBAL_ARRAY ANSWER_TRIE_LOCK_USING_GLOBAL_ARRAY55707,3332745 -#define GLOBAL_TRIE_LOCK_USING_GLOBAL_ARRAY GLOBAL_TRIE_LOCK_USING_GLOBAL_ARRAY55708,3332836 -#undef TABLING_INNER_CUTSTABLING_INNER_CUTS55709,3332927 -#undef TIMESTAMP_CHECKTIMESTAMP_CHECK55710,3332982 -#undef OUTPUT_THREADS_TABLINGOUTPUT_THREADS_TABLING55711,3333031 -#define DEBUG_OPTYAPDEBUG_OPTYAP55712,3333094 -#undef TABLING_EARLY_COMPLETIONTABLING_EARLY_COMPLETION55713,3333138 -#undef INCOMPLETE_TABLINGINCOMPLETE_TABLING55714,3333205 -#undef LIMIT_TABLINGLIMIT_TABLING55715,3333260 -#undef DETERMINISTIC_TABLINGDETERMINISTIC_TABLING55716,3333305 -#undef MODE_DIRECTED_TABLINGMODE_DIRECTED_TABLING55717,3333366 -#define OPT_MAVAR_STATICOPT_MAVAR_STATIC55720,3333451 -#define STRUCTS_PER_PAGE(STRUCTS_PER_PAGE55721,3333501 -#define INIT_GLOBAL_PAGE_ENTRY(INIT_GLOBAL_PAGE_ENTRY55722,3333552 -#define INIT_LOCAL_PAGE_ENTRY(INIT_LOCAL_PAGE_ENTRY55723,3333615 -#define INIT_GLOBAL_PAGE_ENTRY(INIT_GLOBAL_PAGE_ENTRY55724,3333676 -#define INIT_LOCAL_PAGE_ENTRY(INIT_LOCAL_PAGE_ENTRY55725,3333739 -#define SHMMAX SHMMAX55732,3334117 -#define OPTYAP_ALIGN OPTYAP_ALIGN55733,3334148 -#define ALIGNMASK ALIGNMASK55734,3334191 -#define OPTYAP_ALIGN OPTYAP_ALIGN55735,3334228 -#define ALIGNMASK ALIGNMASK55736,3334271 -#define ALIGN ALIGN55737,3334308 -#define ALIGNMASK ALIGNMASK55738,3334337 -#define ADJUST_SIZE(ADJUST_SIZE55739,3334374 -#define ADJUST_SIZE_TO_PAGE(ADJUST_SIZE_TO_PAGE55740,3334415 -#define PAGE_HEADER(PAGE_HEADER55741,3334472 -#define STRUCT_NEXT(STRUCT_NEXT55742,3334513 -#define UPDATE_STATS(UPDATE_STATS55743,3334554 -#define LOCK_PAGE_ENTRY(LOCK_PAGE_ENTRY55744,3334597 -#define UNLOCK_PAGE_ENTRY(UNLOCK_PAGE_ENTRY55745,3334646 -#define LOCK_PAGE_ENTRY(LOCK_PAGE_ENTRY55746,3334699 -#define UNLOCK_PAGE_ENTRY(UNLOCK_PAGE_ENTRY55747,3334748 -#define ALLOC_BLOCK(ALLOC_BLOCK55748,3334801 -#define FREE_BLOCK(FREE_BLOCK55749,3334842 -#define ALLOC_BLOCK(ALLOC_BLOCK55750,3334881 -#define FREE_BLOCK(FREE_BLOCK55751,3334922 -#define INIT_BUCKETS(INIT_BUCKETS55752,3334961 -#define ALLOC_BUCKETS(ALLOC_BUCKETS55753,3335004 -#define FREE_BUCKETS(FREE_BUCKETS55754,3335049 -#define MOVE_PAGES(MOVE_PAGES55755,3335092 -#define DETACH_PAGES(DETACH_PAGES55756,3335132 -#define ATTACH_PAGES(ATTACH_PAGES55757,3335176 -#define GET_FREE_STRUCT(GET_FREE_STRUCT55758,3335220 -#define GET_NEXT_FREE_STRUCT(GET_NEXT_FREE_STRUCT55759,3335270 -#define PUT_FREE_STRUCT(PUT_FREE_STRUCT55760,3335330 -#define MOVE_PAGES(MOVE_PAGES55761,3335380 -#define DETACH_PAGES(DETACH_PAGES55762,3335420 -#define ATTACH_PAGES(ATTACH_PAGES55763,3335464 -#define GET_PAGE_FIRST_LEVEL(GET_PAGE_FIRST_LEVEL55764,3335508 -#define GET_ALLOC_PAGE_NEXT_LEVEL(GET_ALLOC_PAGE_NEXT_LEVEL55765,3335569 -#define GET_VOID_PAGE_NEXT_LEVEL(GET_VOID_PAGE_NEXT_LEVEL55766,3335640 -#define GET_ALLOC_PAGE(GET_ALLOC_PAGE55767,3335709 -#define GET_VOID_PAGE(GET_VOID_PAGE55768,3335758 -#define PUT_PAGE(PUT_PAGE55769,3335805 -#define PUT_VOID_PAGE(PUT_VOID_PAGE55770,3335842 -#define GET_FREE_PAGE(GET_FREE_PAGE55771,3335889 -#define PUT_FREE_PAGE(PUT_FREE_PAGE55772,3335936 -#define GET_FREE_PAGE(GET_FREE_PAGE55773,3335983 -#define PUT_FREE_PAGE(PUT_FREE_PAGE55774,3336030 -#define INIT_PAGE(INIT_PAGE55775,3336077 -#define ALLOC_SPACE(ALLOC_SPACE55776,3336116 -#define RECOVER_ALLOC_SPACE(RECOVER_ALLOC_SPACE55777,3336159 -#define RECOVER_ALLOC_SPACE(RECOVER_ALLOC_SPACE55778,3336218 -#define RECOVER_ALLOC_SPACE(RECOVER_ALLOC_SPACE55779,3336277 -#define TEST_GET_FREE_PAGE(TEST_GET_FREE_PAGE55780,3336336 -#define GET_FREE_STRUCT(GET_FREE_STRUCT55781,3336393 -#define GET_NEXT_FREE_STRUCT(GET_NEXT_FREE_STRUCT55782,3336444 -#define PUT_FREE_STRUCT(PUT_FREE_STRUCT55783,3336505 -#define ALLOC_STRUCT(ALLOC_STRUCT55784,3336556 -#define FREE_STRUCT(FREE_STRUCT55785,3336601 -#define ALLOC_STRUCT(ALLOC_STRUCT55786,3336644 -#define FREE_STRUCT(FREE_STRUCT55787,3336689 -#define ALLOC_NEXT_STRUCT(ALLOC_NEXT_STRUCT55788,3336732 -#define ALLOC_TABLE_ENTRY(ALLOC_TABLE_ENTRY55789,3336787 -#define FREE_TABLE_ENTRY(FREE_TABLE_ENTRY55790,3336842 -#define ALLOC_SUBGOAL_ENTRY(ALLOC_SUBGOAL_ENTRY55791,3336895 -#define FREE_SUBGOAL_ENTRY(FREE_SUBGOAL_ENTRY55792,3336954 -#define ALLOC_SUBGOAL_FRAME(ALLOC_SUBGOAL_FRAME55793,3337011 -#define FREE_SUBGOAL_FRAME(FREE_SUBGOAL_FRAME55794,3337070 -#define ALLOC_DEPENDENCY_FRAME(ALLOC_DEPENDENCY_FRAME55795,3337127 -#define FREE_DEPENDENCY_FRAME(FREE_DEPENDENCY_FRAME55796,3337192 -#define ALLOC_SUBGOAL_TRIE_NODE(ALLOC_SUBGOAL_TRIE_NODE55797,3337255 -#define FREE_SUBGOAL_TRIE_NODE(FREE_SUBGOAL_TRIE_NODE55798,3337322 -#define ALLOC_SUBGOAL_TRIE_HASH(ALLOC_SUBGOAL_TRIE_HASH55799,3337387 -#define FREE_SUBGOAL_TRIE_HASH(FREE_SUBGOAL_TRIE_HASH55800,3337454 -#define ALLOC_ANSWER_TRIE_NODE(ALLOC_ANSWER_TRIE_NODE55801,3337519 -#define ALLOC_ANSWER_TRIE_NODE(ALLOC_ANSWER_TRIE_NODE55802,3337584 -#define FREE_ANSWER_TRIE_NODE(FREE_ANSWER_TRIE_NODE55803,3337649 -#define ALLOC_ANSWER_TRIE_HASH(ALLOC_ANSWER_TRIE_HASH55804,3337712 -#define FREE_ANSWER_TRIE_HASH(FREE_ANSWER_TRIE_HASH55805,3337777 -#define ALLOC_ANSWER_REF_NODE(ALLOC_ANSWER_REF_NODE55806,3337840 -#define FREE_ANSWER_REF_NODE(FREE_ANSWER_REF_NODE55807,3337903 -#define ALLOC_GLOBAL_TRIE_NODE(ALLOC_GLOBAL_TRIE_NODE55808,3337964 -#define FREE_GLOBAL_TRIE_NODE(FREE_GLOBAL_TRIE_NODE55809,3338029 -#define ALLOC_GLOBAL_TRIE_HASH(ALLOC_GLOBAL_TRIE_HASH55810,3338092 -#define FREE_GLOBAL_TRIE_HASH(FREE_GLOBAL_TRIE_HASH55811,3338157 -#define ALLOC_OR_FRAME(ALLOC_OR_FRAME55812,3338220 -#define FREE_OR_FRAME(FREE_OR_FRAME55813,3338269 -#define ALLOC_QG_SOLUTION_FRAME(ALLOC_QG_SOLUTION_FRAME55814,3338316 -#define FREE_QG_SOLUTION_FRAME(FREE_QG_SOLUTION_FRAME55815,3338383 -#define ALLOC_QG_ANSWER_FRAME(ALLOC_QG_ANSWER_FRAME55816,3338448 -#define FREE_QG_ANSWER_FRAME(FREE_QG_ANSWER_FRAME55817,3338511 -#define ALLOC_SUSPENSION_FRAME(ALLOC_SUSPENSION_FRAME55818,3338572 -#define FREE_SUSPENSION_FRAME(FREE_SUSPENSION_FRAME55819,3338637 -#define ALLOC_TG_SOLUTION_FRAME(ALLOC_TG_SOLUTION_FRAME55820,3338700 -#define FREE_TG_SOLUTION_FRAME(FREE_TG_SOLUTION_FRAME55821,3338767 -#define ALLOC_TG_ANSWER_FRAME(ALLOC_TG_ANSWER_FRAME55822,3338832 -#define FREE_TG_ANSWER_FRAME(FREE_TG_ANSWER_FRAME55823,3338895 -#define BITMAP_empty(BITMAP_empty55824,3338956 -#define BITMAP_member(BITMAP_member55825,3339001 -#define BITMAP_alone(BITMAP_alone55826,3339048 -#define BITMAP_subset(BITMAP_subset55827,3339093 -#define BITMAP_same(BITMAP_same55828,3339140 -#define BITMAP_clear(BITMAP_clear55829,3339183 -#define BITMAP_and(BITMAP_and55830,3339228 -#define BITMAP_minus(BITMAP_minus55831,3339269 -#define BITMAP_insert(BITMAP_insert55832,3339314 -#define BITMAP_delete(BITMAP_delete55833,3339361 -#define BITMAP_copy(BITMAP_copy55834,3339408 -#define BITMAP_intersection(BITMAP_intersection55835,3339451 -#define BITMAP_difference(BITMAP_difference55836,3339510 -#define INFORMATION_MESSAGE(INFORMATION_MESSAGE55837,3339565 -#define ERROR_MESSAGE(ERROR_MESSAGE55838,3339624 -#define ERROR_MESSAGE(ERROR_MESSAGE55839,3339671 -#define TABLING_ERROR_CHECKING(TABLING_ERROR_CHECKING55840,3339718 -#define TABLING_ERROR_CHECKING(TABLING_ERROR_CHECKING55841,3339783 -#define YAPOR_ERROR_CHECKING(YAPOR_ERROR_CHECKING55842,3339848 -#define YAPOR_ERROR_CHECKING(YAPOR_ERROR_CHECKING55843,3339909 -#define OPTYAP_ERROR_CHECKING(OPTYAP_ERROR_CHECKING55844,3339970 -#define OPTYAP_ERROR_CHECKING(OPTYAP_ERROR_CHECKING55845,3340033 -#define INFO_THREADS(INFO_THREADS55846,3340096 -#define INFO_THREADS_MAIN_THREAD(INFO_THREADS_MAIN_THREAD55847,3340141 -#define INFO_THREADS(INFO_THREADS55848,3340210 -#define INFO_THREADS_MAIN_THREAD(INFO_THREADS_MAIN_THREAD55849,3340255 -#define OPT_MAVAR_STATIC OPT_MAVAR_STATIC55852,3340349 -#define Yap_MAVAR_HASH(Yap_MAVAR_HASH55857,3340668 -#define Yap_ALLOC_NEW_MASPACE(Yap_ALLOC_NEW_MASPACE55858,3340715 -#define Yap_lookup_ma_var(Yap_lookup_ma_var55859,3340776 -#define Yap_NEW_MAHASH(Yap_NEW_MAHASH55860,3340829 -#define PgEnt_bytes_in_use(PgEnt_bytes_in_use55870,3341449 -#define CHECK_PAGE_FREE_STRUCTS(CHECK_PAGE_FREE_STRUCTS55871,3341505 -#define CHECK_PAGE_FREE_STRUCTS(CHECK_PAGE_FREE_STRUCTS55872,3341571 -#define INIT_PAGE_STATS(INIT_PAGE_STATS55873,3341637 -#define INCREMENT_PAGE_STATS(INCREMENT_PAGE_STATS55874,3341687 -#define INCREMENT_AUX_STATS(INCREMENT_AUX_STATS55875,3341747 -#define SHOW_PAGE_STATS_MSG(SHOW_PAGE_STATS_MSG55876,3341805 -#define SHOW_PAGE_STATS_ARGS(SHOW_PAGE_STATS_ARGS55877,3341863 -#define CHECK_PAGE_FREE_STRUCTS(CHECK_PAGE_FREE_STRUCTS55878,3341923 -#define INIT_PAGE_STATS(INIT_PAGE_STATS55879,3341989 -#define INCREMENT_PAGE_STATS(INCREMENT_PAGE_STATS55880,3342039 -#define INCREMENT_AUX_STATS(INCREMENT_AUX_STATS55881,3342099 -#define SHOW_PAGE_STATS_MSG(SHOW_PAGE_STATS_MSG55882,3342157 -#define SHOW_PAGE_STATS_ARGS(SHOW_PAGE_STATS_ARGS55883,3342215 -#define GET_ALL_PAGE_STATS(GET_ALL_PAGE_STATS55884,3342275 -#define GET_ALL_PAGE_STATS(GET_ALL_PAGE_STATS55885,3342331 -#define GET_PAGE_STATS(GET_PAGE_STATS55886,3342387 -#define SHOW_PAGE_STATS(SHOW_PAGE_STATS55887,3342435 -#define TIME_RESOLUTION TIME_RESOLUTION55916,3344584 -#define MAVARS_HASH_SIZE MAVARS_HASH_SIZE55944,3346834 -#define ThDepFr_lock(ThDepFr_lock55971,3347993 -#define ThDepFr_state(ThDepFr_state55972,3348036 -#define ThDepFr_terminator(ThDepFr_terminator55973,3348081 -#define ThDepFr_next(ThDepFr_next55974,3348136 -#define PgHd_strs_in_use(PgHd_strs_in_use55987,3348826 -#define PgHd_alloc_area(PgHd_alloc_area55988,3348878 -#define PgHd_first_str(PgHd_first_str55989,3348928 -#define PgHd_previous(PgHd_previous55990,3348976 -#define PgHd_next(PgHd_next55991,3349022 -#define PgEnt_lock(PgEnt_lock56016,3350462 -#define PgEnt_first(PgEnt_first56017,3350502 -#define PgEnt_last(PgEnt_last56018,3350544 -#define PgEnt_strs_per_page(PgEnt_strs_per_page56019,3350584 -#define PgEnt_pages_in_use(PgEnt_pages_in_use56020,3350642 -#define PgEnt_strs_in_use(PgEnt_strs_in_use56021,3350698 -#define PgEnt_strs_free(PgEnt_strs_free56022,3350752 -#define GLOBAL_pages_alloc GLOBAL_pages_alloc56176,3361774 -#define GLOBAL_pages_void GLOBAL_pages_void56177,3361830 -#define GLOBAL_pages_tab_ent GLOBAL_pages_tab_ent56178,3361884 -#define GLOBAL_pages_sg_ent GLOBAL_pages_sg_ent56179,3361944 -#define GLOBAL_pages_sg_fr GLOBAL_pages_sg_fr56180,3362003 -#define GLOBAL_pages_dep_fr GLOBAL_pages_dep_fr56181,3362060 -#define GLOBAL_pages_sg_node GLOBAL_pages_sg_node56182,3362119 -#define GLOBAL_pages_sg_hash GLOBAL_pages_sg_hash56183,3362180 -#define GLOBAL_pages_ans_node GLOBAL_pages_ans_node56184,3362241 -#define GLOBAL_pages_ans_hash GLOBAL_pages_ans_hash56185,3362304 -#define GLOBAL_pages_ans_ref_node GLOBAL_pages_ans_ref_node56186,3362367 -#define GLOBAL_pages_gt_node GLOBAL_pages_gt_node56187,3362438 -#define GLOBAL_pages_gt_hash GLOBAL_pages_gt_hash56188,3362499 -#define GLOBAL_pages_or_fr GLOBAL_pages_or_fr56189,3362560 -#define GLOBAL_pages_qg_sol_fr GLOBAL_pages_qg_sol_fr56190,3362617 -#define GLOBAL_pages_qg_ans_fr GLOBAL_pages_qg_ans_fr56191,3362682 -#define GLOBAL_pages_susp_fr GLOBAL_pages_susp_fr56192,3362747 -#define GLOBAL_pages_tg_sol_fr GLOBAL_pages_tg_sol_fr56193,3362808 -#define GLOBAL_pages_tg_ans_fr GLOBAL_pages_tg_ans_fr56194,3362873 -#define GLOBAL_scheduler_loop GLOBAL_scheduler_loop56195,3362938 -#define GLOBAL_delayed_release_load GLOBAL_delayed_release_load56196,3363001 -#define GLOBAL_number_workers GLOBAL_number_workers56197,3363076 -#define GLOBAL_worker_pid(GLOBAL_worker_pid56198,3363139 -#define GLOBAL_master_worker GLOBAL_master_worker56199,3363194 -#define GLOBAL_execution_time GLOBAL_execution_time56200,3363255 -#define Get_GLOBAL_root_cp(Get_GLOBAL_root_cp56201,3363318 -#define Set_GLOBAL_root_cp(Set_GLOBAL_root_cp56202,3363375 -#define GLOBAL_root_cp GLOBAL_root_cp56203,3363432 -#define Get_GLOBAL_root_cp(Get_GLOBAL_root_cp56204,3363481 -#define Set_GLOBAL_root_cp(Set_GLOBAL_root_cp56205,3363538 -#define GLOBAL_root_or_fr GLOBAL_root_or_fr56206,3363595 -#define GLOBAL_bm_present_workers GLOBAL_bm_present_workers56207,3363650 -#define GLOBAL_bm_idle_workers GLOBAL_bm_idle_workers56208,3363721 -#define GLOBAL_bm_root_cp_workers GLOBAL_bm_root_cp_workers56209,3363786 -#define GLOBAL_bm_invisible_workers GLOBAL_bm_invisible_workers56210,3363857 -#define GLOBAL_bm_requestable_workers GLOBAL_bm_requestable_workers56211,3363932 -#define GLOBAL_bm_finished_workers GLOBAL_bm_finished_workers56212,3364011 -#define GLOBAL_bm_pruning_workers GLOBAL_bm_pruning_workers56213,3364084 -#define GLOBAL_locks_bm_idle_workers GLOBAL_locks_bm_idle_workers56214,3364155 -#define GLOBAL_locks_bm_root_cp_workers GLOBAL_locks_bm_root_cp_workers56215,3364232 -#define GLOBAL_locks_bm_invisible_workers GLOBAL_locks_bm_invisible_workers56216,3364315 -#define GLOBAL_locks_bm_requestable_workers GLOBAL_locks_bm_requestable_workers56217,3364402 -#define GLOBAL_locks_bm_finished_workers GLOBAL_locks_bm_finished_workers56218,3364493 -#define GLOBAL_locks_bm_pruning_workers GLOBAL_locks_bm_pruning_workers56219,3364578 -#define GLOBAL_locks_who_locked_heap GLOBAL_locks_who_locked_heap56220,3364661 -#define GLOBAL_locks_heap_access GLOBAL_locks_heap_access56221,3364738 -#define GLOBAL_locks_alloc_block GLOBAL_locks_alloc_block56222,3364807 -#define GLOBAL_branch(GLOBAL_branch56223,3364876 -#define GLOBAL_parallel_mode GLOBAL_parallel_mode56224,3364923 -#define GLOBAL_root_gt GLOBAL_root_gt56225,3364984 -#define GLOBAL_root_tab_ent GLOBAL_root_tab_ent56226,3365033 -#define GLOBAL_max_pages GLOBAL_max_pages56227,3365092 -#define GLOBAL_first_sg_fr GLOBAL_first_sg_fr56228,3365145 -#define GLOBAL_last_sg_fr GLOBAL_last_sg_fr56229,3365202 -#define GLOBAL_check_sg_fr GLOBAL_check_sg_fr56230,3365257 -#define GLOBAL_root_dep_fr GLOBAL_root_dep_fr56231,3365314 -#define GLOBAL_th_dep_fr(GLOBAL_th_dep_fr56232,3365371 -#define GLOBAL_table_var_enumerator(GLOBAL_table_var_enumerator56233,3365424 -#define GLOBAL_table_var_enumerator_addr(GLOBAL_table_var_enumerator_addr56234,3365499 -#define GLOBAL_trie_locks(GLOBAL_trie_locks56235,3365584 -#define GLOBAL_timestamp GLOBAL_timestamp56236,3365639 -#define LOCAL_pages_void LOCAL_pages_void56288,3369138 -#define LOCAL_pages_tab_ent LOCAL_pages_tab_ent56289,3369191 -#define LOCAL_pages_sg_ent LOCAL_pages_sg_ent56290,3369250 -#define LOCAL_pages_sg_fr LOCAL_pages_sg_fr56291,3369307 -#define LOCAL_pages_dep_fr LOCAL_pages_dep_fr56292,3369362 -#define LOCAL_pages_sg_node LOCAL_pages_sg_node56293,3369419 -#define LOCAL_pages_sg_hash LOCAL_pages_sg_hash56294,3369478 -#define LOCAL_pages_ans_node LOCAL_pages_ans_node56295,3369537 -#define LOCAL_pages_ans_hash LOCAL_pages_ans_hash56296,3369598 -#define LOCAL_pages_ans_ref_node LOCAL_pages_ans_ref_node56297,3369659 -#define LOCAL_pages_gt_node LOCAL_pages_gt_node56298,3369728 -#define LOCAL_pages_gt_hash LOCAL_pages_gt_hash56299,3369787 -#define LOCAL_next_free_ans_node LOCAL_next_free_ans_node56300,3369846 -#define LOCAL_lock LOCAL_lock56301,3369915 -#define LOCAL_load LOCAL_load56302,3369956 -#define Get_LOCAL_top_cp(Get_LOCAL_top_cp56303,3369997 -#define Set_LOCAL_top_cp(Set_LOCAL_top_cp56304,3370050 -#define LOCAL_top_cp LOCAL_top_cp56305,3370103 -#define Get_LOCAL_top_cp(Get_LOCAL_top_cp56306,3370148 -#define Set_LOCAL_top_cp(Set_LOCAL_top_cp56307,3370201 -#define LOCAL_top_or_fr LOCAL_top_or_fr56308,3370254 -#define Get_LOCAL_prune_request(Get_LOCAL_prune_request56309,3370305 -#define Set_LOCAL_prune_request(Set_LOCAL_prune_request56310,3370372 -#define LOCAL_prune_request LOCAL_prune_request56311,3370439 -#define Get_LOCAL_prune_request(Get_LOCAL_prune_request56312,3370498 -#define Set_LOCAL_prune_request(Set_LOCAL_prune_request56313,3370565 -#define LOCAL_share_request LOCAL_share_request56314,3370632 -#define LOCAL_reply_signal LOCAL_reply_signal56315,3370691 -#define LOCAL_p_fase_signal LOCAL_p_fase_signal56316,3370748 -#define LOCAL_q_fase_signal LOCAL_q_fase_signal56317,3370807 -#define LOCAL_lock_signals LOCAL_lock_signals56318,3370866 -#define LOCAL_start_global_copy LOCAL_start_global_copy56319,3370923 -#define LOCAL_end_global_copy LOCAL_end_global_copy56320,3370990 -#define LOCAL_start_local_copy LOCAL_start_local_copy56321,3371053 -#define LOCAL_end_local_copy LOCAL_end_local_copy56322,3371118 -#define LOCAL_start_trail_copy LOCAL_start_trail_copy56323,3371179 -#define LOCAL_end_trail_copy LOCAL_end_trail_copy56324,3371244 -#define LOCAL_top_sg_fr LOCAL_top_sg_fr56325,3371305 -#define LOCAL_top_dep_fr LOCAL_top_dep_fr56326,3371356 -#define LOCAL_pruning_scope LOCAL_pruning_scope56327,3371409 -#define Get_LOCAL_top_cp_on_stack(Get_LOCAL_top_cp_on_stack56328,3371468 -#define Set_LOCAL_top_cp_on_stack(Set_LOCAL_top_cp_on_stack56329,3371539 -#define LOCAL_top_cp_on_stack LOCAL_top_cp_on_stack56330,3371610 -#define Get_LOCAL_top_cp_on_stack(Get_LOCAL_top_cp_on_stack56331,3371673 -#define Set_LOCAL_top_cp_on_stack(Set_LOCAL_top_cp_on_stack56332,3371744 -#define LOCAL_top_susp_or_fr LOCAL_top_susp_or_fr56333,3371815 -#define LOCAL_thread_output LOCAL_thread_output56334,3371876 -#define LOCAL_ma_timestamp LOCAL_ma_timestamp56335,3371935 -#define LOCAL_ma_h_top LOCAL_ma_h_top56336,3371992 -#define LOCAL_ma_hash_table LOCAL_ma_hash_table56337,3372041 -#define REMOTE_pages_void(REMOTE_pages_void56338,3372100 -#define REMOTE_pages_tab_ent(REMOTE_pages_tab_ent56339,3372155 -#define REMOTE_pages_sg_ent(REMOTE_pages_sg_ent56340,3372216 -#define REMOTE_pages_sg_fr(REMOTE_pages_sg_fr56341,3372275 -#define REMOTE_pages_dep_fr(REMOTE_pages_dep_fr56342,3372332 -#define REMOTE_pages_sg_node(REMOTE_pages_sg_node56343,3372391 -#define REMOTE_pages_sg_hash(REMOTE_pages_sg_hash56344,3372452 -#define REMOTE_pages_ans_node(REMOTE_pages_ans_node56345,3372513 -#define REMOTE_pages_ans_hash(REMOTE_pages_ans_hash56346,3372576 -#define REMOTE_pages_ans_ref_node(REMOTE_pages_ans_ref_node56347,3372639 -#define REMOTE_pages_gt_node(REMOTE_pages_gt_node56348,3372710 -#define REMOTE_pages_gt_hash(REMOTE_pages_gt_hash56349,3372771 -#define REMOTE_next_free_ans_node(REMOTE_next_free_ans_node56350,3372832 -#define REMOTE_lock(REMOTE_lock56351,3372903 -#define REMOTE_load(REMOTE_load56352,3372946 -#define REMOTE_top_cp(REMOTE_top_cp56353,3372989 -#define Set_REMOTE_top_cp(Set_REMOTE_top_cp56354,3373036 -#define REMOTE_top_cp(REMOTE_top_cp56355,3373091 -#define Set_REMOTE_top_cp(Set_REMOTE_top_cp56356,3373138 -#define REMOTE_top_or_fr(REMOTE_top_or_fr56357,3373193 -#define Get_REMOTE_prune_request(Get_REMOTE_prune_request56358,3373246 -#define Set_REMOTE_prune_request(Set_REMOTE_prune_request56359,3373315 -#define REMOTE_prune_request(REMOTE_prune_request56360,3373384 -#define Get_REMOTE_prune_request(Get_REMOTE_prune_request56361,3373445 -#define Set_REMOTE_prune_request(Set_REMOTE_prune_request56362,3373514 -#define REMOTE_share_request(REMOTE_share_request56363,3373583 -#define REMOTE_reply_signal(REMOTE_reply_signal56364,3373644 -#define REMOTE_p_fase_signal(REMOTE_p_fase_signal56365,3373703 -#define REMOTE_q_fase_signal(REMOTE_q_fase_signal56366,3373764 -#define REMOTE_lock_signals(REMOTE_lock_signals56367,3373825 -#define REMOTE_start_global_copy(REMOTE_start_global_copy56368,3373884 -#define REMOTE_end_global_copy(REMOTE_end_global_copy56369,3373953 -#define REMOTE_start_local_copy(REMOTE_start_local_copy56370,3374018 -#define REMOTE_end_local_copy(REMOTE_end_local_copy56371,3374085 -#define REMOTE_start_trail_copy(REMOTE_start_trail_copy56372,3374148 -#define REMOTE_end_trail_copy(REMOTE_end_trail_copy56373,3374215 -#define REMOTE_top_sg_fr(REMOTE_top_sg_fr56374,3374278 -#define REMOTE_top_dep_fr(REMOTE_top_dep_fr56375,3374331 -#define REMOTE_pruning_scope(REMOTE_pruning_scope56376,3374386 -#define REMOTE_top_cp_on_stack(REMOTE_top_cp_on_stack56377,3374447 -#define Set_REMOTE_top_cp_on_stack(Set_REMOTE_top_cp_on_stack56378,3374512 -#define REMOTE_top_cp_on_stack(REMOTE_top_cp_on_stack56379,3374585 -#define Set_REMOTE_top_cp_on_stack(Set_REMOTE_top_cp_on_stack56380,3374650 -#define REMOTE_top_susp_or_fr(REMOTE_top_susp_or_fr56381,3374723 -#define REMOTE_thread_output(REMOTE_thread_output56382,3374786 -#define REMOTE_ma_timestamp(REMOTE_ma_timestamp56383,3374847 -#define REMOTE_ma_h_top(REMOTE_ma_h_top56384,3374906 -#define REMOTE_ma_hash_table(REMOTE_ma_hash_table56385,3374957 -#define INCREMENTAL_COPY INCREMENTAL_COPY56388,3375048 -#define COMPUTE_SEGMENTS_TO_COPY_TO(COMPUTE_SEGMENTS_TO_COPY_TO56389,3375099 -#define COMPUTE_SEGMENTS_TO_COPY_TO(COMPUTE_SEGMENTS_TO_COPY_TO56390,3375172 -#define P_COPY_GLOBAL_TO(P_COPY_GLOBAL_TO56391,3375245 -#define Q_COPY_GLOBAL_FROM(Q_COPY_GLOBAL_FROM56392,3375296 -#define P_COPY_LOCAL_TO(P_COPY_LOCAL_TO56393,3375351 -#define Q_COPY_LOCAL_FROM(Q_COPY_LOCAL_FROM56394,3375400 -#define P_COPY_TRAIL_TO(P_COPY_TRAIL_TO56395,3375453 -#define Q_COPY_TRAIL_FROM(Q_COPY_TRAIL_FROM56396,3375502 -#define OR_MACROS_HOR_MACROS_H56421,3376617 -#define YAMOP_CUT_FLAG YAMOP_CUT_FLAG56422,3376656 -#define YAMOP_SEQ_FLAG YAMOP_SEQ_FLAG56423,3376703 -#define YAMOP_FLAGS_BITS YAMOP_FLAGS_BITS56424,3376750 -#define YAMOP_LTT_BITS YAMOP_LTT_BITS56425,3376801 -#define YAMOP_CUT_FLAG YAMOP_CUT_FLAG56426,3376848 -#define YAMOP_SEQ_FLAG YAMOP_SEQ_FLAG56427,3376895 -#define YAMOP_FLAGS_BITS YAMOP_FLAGS_BITS56428,3376942 -#define YAMOP_LTT_BITS YAMOP_LTT_BITS56429,3376993 -#define YAMOP_CUT_FLAG YAMOP_CUT_FLAG56430,3377040 -#define YAMOP_SEQ_FLAG YAMOP_SEQ_FLAG56431,3377087 -#define YAMOP_FLAGS_BITS YAMOP_FLAGS_BITS56432,3377134 -#define YAMOP_LTT_BITS YAMOP_LTT_BITS56433,3377185 -#define YAMOP_CUT_FLAG YAMOP_CUT_FLAG56434,3377232 -#define YAMOP_SEQ_FLAG YAMOP_SEQ_FLAG56435,3377279 -#define YAMOP_FLAGS_BITS YAMOP_FLAGS_BITS56436,3377326 -#define YAMOP_LTT_BITS YAMOP_LTT_BITS56437,3377377 -#define YAMOP_OR_ARG(YAMOP_OR_ARG56438,3377424 -#define YAMOP_LTT(YAMOP_LTT56439,3377467 -#define YAMOP_SEQ(YAMOP_SEQ56440,3377504 -#define YAMOP_CUT(YAMOP_CUT56441,3377541 -#define YAMOP_FLAGS(YAMOP_FLAGS56442,3377578 -#define INIT_YAMOP_LTT(INIT_YAMOP_LTT56443,3377619 -#define PUT_YAMOP_LTT(PUT_YAMOP_LTT56444,3377666 -#define PUT_YAMOP_SEQ(PUT_YAMOP_SEQ56445,3377711 -#define PUT_YAMOP_CUT(PUT_YAMOP_CUT56446,3377756 -#define BRANCH(BRANCH56447,3377801 -#define BRANCH_LTT(BRANCH_LTT56448,3377832 -#define BRANCH_CUT(BRANCH_CUT56449,3377871 -#define PARALLEL_MODE_OFF PARALLEL_MODE_OFF56450,3377910 -#define PARALLEL_MODE_ON PARALLEL_MODE_ON56451,3377964 -#define PARALLEL_MODE_RUNNING PARALLEL_MODE_RUNNING56452,3378016 -#define worker_offset(worker_offset56453,3378078 -#define LOCK_OR_FRAME(LOCK_OR_FRAME56454,3378124 -#define UNLOCK_OR_FRAME(UNLOCK_OR_FRAME56455,3378170 -#define LOCK_WORKER(LOCK_WORKER56456,3378220 -#define UNLOCK_WORKER(UNLOCK_WORKER56457,3378262 -#define SCH_top_shared_cp(SCH_top_shared_cp56458,3378308 -#define SCH_any_share_request SCH_any_share_request56459,3378362 -#define SCHEDULER_GET_WORK(SCHEDULER_GET_WORK56460,3378424 -#define SCH_check_prune_request(SCH_check_prune_request56461,3378480 -#define SCH_check_share_request(SCH_check_share_request56462,3378546 -#define SCH_check_share_request(SCH_check_share_request56463,3378612 -#define SCH_check_requests(SCH_check_requests56464,3378678 -#define SCH_last_alternative(SCH_last_alternative56465,3378734 -#define CUT_prune_to(CUT_prune_to56466,3378794 -#define CUT_wait_leftmost(CUT_wait_leftmost56467,3378838 -#define INIT_CP_LUB(INIT_CP_LUB56478,3379541 -#define CP_LUB(CP_LUB56479,3379584 -#define GLOBAL_LOCAL_STRUCTS_AREA GLOBAL_LOCAL_STRUCTS_AREA56494,3380785 -#define PATH_MAX PATH_MAX56495,3380854 -#define IsArrayReference(IsArrayReference56507,3381594 -#define deref_head(deref_head56508,3381646 -#define deref_body(deref_body56509,3381685 -#define derefa_body(derefa_body56510,3381724 -#define deref_list_head(deref_list_head56511,3381765 -#define deref_list_body(deref_list_body56512,3381814 -#define RESET_VARIABLE(RESET_VARIABLE56515,3381960 -#define DO_TRAIL(DO_TRAIL56517,3382065 -#define DO_MATRAIL(DO_MATRAIL56518,3382101 -#define TRAIL_REF(TRAIL_REF56519,3382141 -#define STACK_TO_SBA(STACK_TO_SBA56520,3382179 -#define IN_SBA(IN_SBA56521,3382223 -#define SBA_TO_STACK(SBA_TO_STACK56522,3382255 -#define BIND_SHARED_VARIABLE(BIND_SHARED_VARIABLE56523,3382299 -#define MABIND_SHARED_VARIABLE(MABIND_SHARED_VARIABLE56524,3382359 -#define BIND_CONDITIONALLY(BIND_CONDITIONALLY56525,3382423 -#define MABIND_CONDITIONALLY(MABIND_CONDITIONALLY56526,3382479 -#define DO_CONDITIONAL_BINDING(DO_CONDITIONAL_BINDING56527,3382539 -#define DO_CONDITIONAL_MABINDING(DO_CONDITIONAL_MABINDING56528,3382603 -#define YapBind(YapBind56529,3382671 -#define BIND(BIND56530,3382705 -#define MaBind(MaBind56531,3382733 -#define Bind_Global(Bind_Global56532,3382765 -#define Bind_Local(Bind_Local56533,3382807 -#define BIND_GLOBAL(BIND_GLOBAL56534,3382847 -#define BIND_GLOBAL2(BIND_GLOBAL256535,3382889 -#define BIND_GLOBALCELL(BIND_GLOBALCELL56536,3382933 -#define DO_TRAIL(DO_TRAIL56537,3382983 -#define DO_MATRAIL(DO_MATRAIL56538,3383019 -#define TRAIL(TRAIL56539,3383059 -#define MATRAIL(MATRAIL56540,3383089 -#define TRAIL_GLOBAL(TRAIL_GLOBAL56541,3383123 -#define TRAIL_LOCAL(TRAIL_LOCAL56542,3383167 -#define TRAIL_REF(TRAIL_REF56543,3383209 -#define YapBind(YapBind56544,3383247 -#define MaBind(MaBind56545,3383281 -#define Bind_Global(Bind_Global56546,3383313 -#define Bind_Local(Bind_Local56547,3383355 -#define DO_TRAIL(DO_TRAIL56548,3383395 -#define TRAIL(TRAIL56549,3383431 -#define TRAIL_GLOBAL(TRAIL_GLOBAL56550,3383461 -#define TRAIL_LOCAL(TRAIL_LOCAL56551,3383505 -#define TRAIL(TRAIL56552,3383548 -#define TRAIL_GLOBAL(TRAIL_GLOBAL56553,3383579 -#define TRAIL_LOCAL(TRAIL_LOCAL56554,3383624 -#define DO_TRAIL(DO_TRAIL56555,3383667 -#define TRAIL(TRAIL56556,3383704 -#define TRAIL_GLOBAL(TRAIL_GLOBAL56557,3383735 -#define TRAIL_LOCAL(TRAIL_LOCAL56558,3383780 -#define TRAIL_REF(TRAIL_REF56559,3383823 -#define YapBind(YapBind56560,3383862 -#define Bind_Global(Bind_Global56561,3383897 -#define Bind_Local(Bind_Local56562,3383940 -#define MA_TRAIL(MA_TRAIL56563,3383981 -#define MaBind(MaBind56564,3384018 -#define CP_FREE(CP_FREE56565,3384051 -#define CP_NEXT(CP_NEXT56566,3384086 -#define DBIND(DBIND56567,3384121 -#define EQ_OK_IN_CMP EQ_OK_IN_CMP56568,3384152 -#define LT_OK_IN_CMP LT_OK_IN_CMP56569,3384197 -#define GT_OK_IN_CMP GT_OK_IN_CMP56570,3384242 -#define COMPUTE_SEGMENTS_TO_COPY_TO(COMPUTE_SEGMENTS_TO_COPY_TO56574,3384381 -#define OrFr_lock(OrFr_lock56638,3387873 -#define OrFr_alternative(OrFr_alternative56639,3387910 -#define OrFr_members(OrFr_members56640,3387961 -#define GetOrFr_node(GetOrFr_node56641,3388004 -#define SetOrFr_node(SetOrFr_node56642,3388047 -#define OrFr_node(OrFr_node56643,3388090 -#define GetOrFr_node(GetOrFr_node56644,3388128 -#define SetOrFr_node(SetOrFr_node56645,3388172 -#define OrFr_nearest_livenode(OrFr_nearest_livenode56646,3388216 -#define OrFr_depth(OrFr_depth56647,3388278 -#define Get_OrFr_pend_prune_cp(Get_OrFr_pend_prune_cp56648,3388318 -#define Set_OrFr_pend_prune_cp(Set_OrFr_pend_prune_cp56649,3388382 -#define OrFr_pend_prune_cp(OrFr_pend_prune_cp56650,3388446 -#define Get_OrFr_pend_prune_cp(Get_OrFr_pend_prune_cp56651,3388502 -#define Set_OrFr_pend_prune_cp(Set_OrFr_pend_prune_cp56652,3388566 -#define OrFr_pend_prune_ltt(OrFr_pend_prune_ltt56653,3388630 -#define OrFr_nearest_leftnode(OrFr_nearest_leftnode56654,3388688 -#define OrFr_qg_solutions(OrFr_qg_solutions56655,3388750 -#define OrFr_tg_solutions(OrFr_tg_solutions56656,3388804 -#define OrFr_owners(OrFr_owners56657,3388858 -#define OrFr_next_on_stack(OrFr_next_on_stack56658,3388900 -#define OrFr_next_on_stack(OrFr_next_on_stack56659,3388956 -#define OrFr_suspensions(OrFr_suspensions56660,3389012 -#define OrFr_nearest_suspnode(OrFr_nearest_suspnode56661,3389064 -#define OrFr_next(OrFr_next56662,3389126 -#define SolFr_ltt(SolFr_ltt56673,3389788 -#define SolFr_first(SolFr_first56674,3389826 -#define SolFr_last(SolFr_last56675,3389868 -#define SolFr_next(SolFr_next56676,3389908 -#define AnsFr_answer(AnsFr_answer56683,3390282 -#define AnsFr_next(AnsFr_next56684,3390326 -#define TgSolFr_gen_cp(TgSolFr_gen_cp56699,3391460 -#define TgSolFr_ltt(TgSolFr_ltt56700,3391508 -#define TgSolFr_first(TgSolFr_first56701,3391550 -#define TgSolFr_last(TgSolFr_last56702,3391596 -#define TgSolFr_ltt_next(TgSolFr_ltt_next56703,3391640 -#define TgSolFr_next(TgSolFr_next56704,3391692 -#define TgAnsFr_free_slot(TgAnsFr_free_slot56713,3392300 -#define TgAnsFr_answer(TgAnsFr_answer56714,3392354 -#define TgAnsFr_next(TgAnsFr_next56715,3392402 -#define INCREMENTAL_COPYING INCREMENTAL_COPYING56718,3392478 -#define COMPUTE_SEGMENTS_TO_COPY_TO(COMPUTE_SEGMENTS_TO_COPY_TO56719,3392535 -#define store_low_level_trace_info(store_low_level_trace_info56735,3393509 -#define store_low_level_trace_info(store_low_level_trace_info56736,3393580 -#define TABLING_ERROR_CHECKING_STACK TABLING_ERROR_CHECKING_STACK56737,3393651 -#define store_generator_node(store_generator_node56738,3393726 -#define store_deterministic_generator_node(store_deterministic_generator_node56739,3393785 -#define store_generator_consumer_node(store_generator_consumer_node56740,3393872 -#define restore_generator_node(restore_generator_node56741,3393950 -#define pop_generator_node(pop_generator_node56742,3394014 -#define store_consumer_node(store_consumer_node56743,3394071 -#define consume_answer_and_procceed(consume_answer_and_procceed56744,3394130 -#define consume_answer_and_procceed(consume_answer_and_procceed56745,3394205 -#define store_loader_node(store_loader_node56746,3394280 -#define restore_loader_node(restore_loader_node56747,3394335 -#define pop_loader_node(pop_loader_node56748,3394394 -#define allocate_environment(allocate_environment56749,3394445 -#define allocate_environment(allocate_environment56750,3394506 -#define Flag_Batched Flag_Batched56784,3395876 -#define Flag_Local Flag_Local56785,3395919 -#define Flags_SchedulingMode Flags_SchedulingMode56786,3395958 -#define Flag_ExecAnswers Flag_ExecAnswers56787,3396017 -#define Flag_LoadAnswers Flag_LoadAnswers56788,3396068 -#define Flags_AnswersMode Flags_AnswersMode56789,3396119 -#define Flag_LocalTrie Flag_LocalTrie56790,3396172 -#define Flag_GlobalTrie Flag_GlobalTrie56791,3396219 -#define Flags_TrieMode Flags_TrieMode56792,3396268 -#define Flag_CoInductive Flag_CoInductive56793,3396315 -#define SetMode_Batched(SetMode_Batched56794,3396366 -#define SetMode_Local(SetMode_Local56795,3396415 -#define SetMode_ExecAnswers(SetMode_ExecAnswers56796,3396460 -#define SetMode_LoadAnswers(SetMode_LoadAnswers56797,3396517 -#define SetMode_LocalTrie(SetMode_LocalTrie56798,3396574 -#define SetMode_GlobalTrie(SetMode_GlobalTrie56799,3396628 -#define SetMode_CoInductive(SetMode_CoInductive56800,3396684 -#define IsMode_Batched(IsMode_Batched56801,3396742 -#define IsMode_Local(IsMode_Local56802,3396790 -#define IsMode_ExecAnswers(IsMode_ExecAnswers56803,3396834 -#define IsMode_LoadAnswers(IsMode_LoadAnswers56804,3396890 -#define IsMode_LocalTrie(IsMode_LocalTrie56805,3396946 -#define IsMode_GlobalTrie(IsMode_GlobalTrie56806,3396998 -#define IsMode_CoInductive(IsMode_CoInductive56807,3397052 -#define SHOW_MODE_STRUCTURE SHOW_MODE_STRUCTURE56808,3397108 -#define SHOW_MODE_STATISTICS SHOW_MODE_STATISTICS56809,3397166 -#define TRAVERSE_TYPE_SUBGOAL TRAVERSE_TYPE_SUBGOAL56819,3397834 -#define TRAVERSE_TYPE_ANSWER TRAVERSE_TYPE_ANSWER56820,3397896 -#define TRAVERSE_TYPE_GT_SUBGOAL TRAVERSE_TYPE_GT_SUBGOAL56821,3397956 -#define TRAVERSE_TYPE_GT_ANSWER TRAVERSE_TYPE_GT_ANSWER56822,3398024 -#define TRAVERSE_POSITION_NEXT TRAVERSE_POSITION_NEXT56823,3398090 -#define TRAVERSE_POSITION_FIRST TRAVERSE_POSITION_FIRST56824,3398154 -#define TRAVERSE_POSITION_LAST TRAVERSE_POSITION_LAST56825,3398220 -#define MODE_DIRECTED_TAGBITS MODE_DIRECTED_TAGBITS56826,3398284 -#define MODE_DIRECTED_NUMBER_TAGBITS MODE_DIRECTED_NUMBER_TAGBITS56827,3398346 -#define MODE_DIRECTED_INDEX MODE_DIRECTED_INDEX56828,3398422 -#define MODE_DIRECTED_MIN MODE_DIRECTED_MIN56829,3398480 -#define MODE_DIRECTED_MAX MODE_DIRECTED_MAX56830,3398534 -#define MODE_DIRECTED_ALL MODE_DIRECTED_ALL56831,3398588 -#define MODE_DIRECTED_SUM MODE_DIRECTED_SUM56832,3398642 -#define MODE_DIRECTED_LAST MODE_DIRECTED_LAST56833,3398696 -#define MODE_DIRECTED_FIRST MODE_DIRECTED_FIRST56834,3398752 -#define MODE_DIRECTED_SET(MODE_DIRECTED_SET56835,3398810 -#define MODE_DIRECTED_GET_ARG(MODE_DIRECTED_GET_ARG56836,3398864 -#define MODE_DIRECTED_GET_MODE(MODE_DIRECTED_GET_MODE56837,3398926 -#define NumberOfLowTagBits NumberOfLowTagBits56838,3398990 -#define MakeTableVarTerm(MakeTableVarTerm56839,3399046 -#define VarIndexOfTableTerm(VarIndexOfTableTerm56840,3399098 -#define VarIndexOfTerm(VarIndexOfTerm56841,3399156 -#define IsTableVarTerm(IsTableVarTerm56842,3399204 -#define PairTermMark PairTermMark56843,3399252 -#define CompactPairInit CompactPairInit56844,3399296 -#define CompactPairEndTerm CompactPairEndTerm56845,3399346 -#define CompactPairEndList CompactPairEndList56846,3399402 -#define ANSWER_LEAF_NODE_INSTR_BITS ANSWER_LEAF_NODE_INSTR_BITS56847,3399458 -#define ANSWER_LEAF_NODE_INSTR_MASK ANSWER_LEAF_NODE_INSTR_MASK56848,3399532 -#define ANSWER_LEAF_NODE_MAX_THREADS ANSWER_LEAF_NODE_MAX_THREADS56849,3399606 -#define ANSWER_LEAF_NODE_MAX_THREADS ANSWER_LEAF_NODE_MAX_THREADS56850,3399682 -#define ANSWER_LEAF_NODE_MAX_THREADS ANSWER_LEAF_NODE_MAX_THREADS56851,3399758 -#define ANSWER_LEAF_NODE_INSTR_RELATIVE(ANSWER_LEAF_NODE_INSTR_RELATIVE56852,3399834 -#define ANSWER_LEAF_NODE_INSTR_ABSOLUTE(ANSWER_LEAF_NODE_INSTR_ABSOLUTE56853,3399916 -#define ANSWER_LEAF_NODE_SET_WID(ANSWER_LEAF_NODE_SET_WID56854,3399998 -#define ANSWER_LEAF_NODE_DEL_WID(ANSWER_LEAF_NODE_DEL_WID56855,3400066 -#define ANSWER_LEAF_NODE_CHECK_WID(ANSWER_LEAF_NODE_CHECK_WID56856,3400134 -#define NORM_CP(NORM_CP56857,3400206 -#define GEN_CP(GEN_CP56858,3400240 -#define CONS_CP(CONS_CP56859,3400272 -#define LOAD_CP(LOAD_CP56860,3400306 -#define DET_GEN_CP(DET_GEN_CP56861,3400340 -#define IS_DET_GEN_CP(IS_DET_GEN_CP56862,3400380 -#define IS_BATCHED_NORM_GEN_CP(IS_BATCHED_NORM_GEN_CP56863,3400426 -#define IS_BATCHED_GEN_CP(IS_BATCHED_GEN_CP56864,3400490 -#define IS_BATCHED_GEN_CP(IS_BATCHED_GEN_CP56865,3400544 -#define IS_BATCHED_GEN_CP(IS_BATCHED_GEN_CP56866,3400598 -#define TAG_AS_SUBGOAL_LEAF_NODE(TAG_AS_SUBGOAL_LEAF_NODE56867,3400652 -#define IS_SUBGOAL_LEAF_NODE(IS_SUBGOAL_LEAF_NODE56868,3400721 -#define TAG_AS_ANSWER_LEAF_NODE(TAG_AS_ANSWER_LEAF_NODE56869,3400782 -#define IS_ANSWER_LEAF_NODE(IS_ANSWER_LEAF_NODE56870,3400849 -#define TAG_AS_ANSWER_INVALID_NODE(TAG_AS_ANSWER_INVALID_NODE56871,3400908 -#define IS_ANSWER_INVALID_NODE(IS_ANSWER_INVALID_NODE56872,3400981 -#define UNTAG_SUBGOAL_NODE(UNTAG_SUBGOAL_NODE56873,3401046 -#define UNTAG_ANSWER_NODE(UNTAG_ANSWER_NODE56874,3401103 -#define MAX_NODES_PER_TRIE_LEVEL MAX_NODES_PER_TRIE_LEVEL56875,3401158 -#define MAX_NODES_PER_BUCKET MAX_NODES_PER_BUCKET56876,3401227 -#define BASE_HASH_BUCKETS BASE_HASH_BUCKETS56877,3401288 -#define HASH_ENTRY(HASH_ENTRY56878,3401343 -#define SUBGOAL_TRIE_HASH_MARK SUBGOAL_TRIE_HASH_MARK56879,3401384 -#define IS_SUBGOAL_TRIE_HASH(IS_SUBGOAL_TRIE_HASH56880,3401449 -#define ANSWER_TRIE_HASH_MARK ANSWER_TRIE_HASH_MARK56881,3401510 -#define IS_ANSWER_TRIE_HASH(IS_ANSWER_TRIE_HASH56882,3401573 -#define GLOBAL_TRIE_HASH_MARK GLOBAL_TRIE_HASH_MARK56883,3401632 -#define IS_GLOBAL_TRIE_HASH(IS_GLOBAL_TRIE_HASH56884,3401695 -#define HASH_TRIE_LOCK(HASH_TRIE_LOCK56885,3401754 -#define STACK_PUSH_UP(STACK_PUSH_UP56886,3401803 -#define STACK_POP_UP(STACK_POP_UP56887,3401850 -#define STACK_PUSH_DOWN(STACK_PUSH_DOWN56888,3401895 -#define STACK_POP_DOWN(STACK_POP_DOWN56889,3401946 -#define STACK_NOT_EMPTY(STACK_NOT_EMPTY56890,3401995 -#define AUX_STACK_CHECK_EXPAND(AUX_STACK_CHECK_EXPAND56891,3402046 -#define AUX_STACK_CHECK_EXPAND(AUX_STACK_CHECK_EXPAND56892,3402111 -#define STACK_CHECK_EXPAND(STACK_CHECK_EXPAND56893,3402176 -#define frame_with_suspensions_not_collected(frame_with_suspensions_not_collected56894,3402233 -#define find_dependency_node(find_dependency_node56895,3402326 -#define find_leader_node(find_leader_node56896,3402387 -#define DepFr_init_timestamp_field(DepFr_init_timestamp_field56897,3402440 -#define DepFr_init_timestamp_field(DepFr_init_timestamp_field56898,3402513 -#define YAPOR_SET_LOAD(YAPOR_SET_LOAD56899,3402586 -#define SgFr_init_yapor_fields(SgFr_init_yapor_fields56900,3402635 -#define DepFr_init_yapor_fields(DepFr_init_yapor_fields56901,3402700 -#define find_dependency_node(find_dependency_node56902,3402767 -#define find_leader_node(find_leader_node56903,3402828 -#define YAPOR_SET_LOAD(YAPOR_SET_LOAD56904,3402881 -#define SgFr_init_yapor_fields(SgFr_init_yapor_fields56905,3402930 -#define DepFr_init_yapor_fields(DepFr_init_yapor_fields56906,3402995 -#define TabEnt_init_mode_directed_field(TabEnt_init_mode_directed_field56907,3403062 -#define SgEnt_init_mode_directed_fields(SgEnt_init_mode_directed_fields56908,3403145 -#define SgFr_init_mode_directed_fields(SgFr_init_mode_directed_fields56909,3403228 -#define AnsHash_init_previous_field(AnsHash_init_previous_field56910,3403309 -#define TabEnt_init_mode_directed_field(TabEnt_init_mode_directed_field56911,3403384 -#define SgEnt_init_mode_directed_fields(SgEnt_init_mode_directed_fields56912,3403467 -#define SgFr_init_mode_directed_fields(SgFr_init_mode_directed_fields56913,3403550 -#define AnsHash_init_previous_field(AnsHash_init_previous_field56914,3403631 -#define INIT_LOCK_SG_FR(INIT_LOCK_SG_FR56915,3403706 -#define LOCK_SG_FR(LOCK_SG_FR56916,3403757 -#define UNLOCK_SG_FR(UNLOCK_SG_FR56917,3403798 -#define INIT_LOCK_SG_FR(INIT_LOCK_SG_FR56918,3403843 -#define LOCK_SG_FR(LOCK_SG_FR56919,3403894 -#define UNLOCK_SG_FR(UNLOCK_SG_FR56920,3403935 -#define INIT_LOCK_DEP_FR(INIT_LOCK_DEP_FR56921,3403980 -#define LOCK_DEP_FR(LOCK_DEP_FR56922,3404033 -#define UNLOCK_DEP_FR(UNLOCK_DEP_FR56923,3404076 -#define IS_UNLOCKED_DEP_FR(IS_UNLOCKED_DEP_FR56924,3404123 -#define INIT_LOCK_DEP_FR(INIT_LOCK_DEP_FR56925,3404180 -#define LOCK_DEP_FR(LOCK_DEP_FR56926,3404233 -#define UNLOCK_DEP_FR(UNLOCK_DEP_FR56927,3404276 -#define IS_UNLOCKED_DEP_FR(IS_UNLOCKED_DEP_FR56928,3404323 -#define INIT_LOCK_TAB_ENT(INIT_LOCK_TAB_ENT56929,3404380 -#define INIT_LOCK_TAB_ENT(INIT_LOCK_TAB_ENT56930,3404435 -#define LOCK_SUBGOAL_TRIE(LOCK_SUBGOAL_TRIE56931,3404490 -#define UNLOCK_SUBGOAL_TRIE(UNLOCK_SUBGOAL_TRIE56932,3404545 -#define LOCK_SUBGOAL_TRIE(LOCK_SUBGOAL_TRIE56933,3404604 -#define UNLOCK_SUBGOAL_TRIE(UNLOCK_SUBGOAL_TRIE56934,3404659 -#define LOCK_ANSWER_TRIE(LOCK_ANSWER_TRIE56935,3404718 -#define UNLOCK_ANSWER_TRIE(UNLOCK_ANSWER_TRIE56936,3404771 -#define AnsHash_init_chain_fields(AnsHash_init_chain_fields56937,3404828 -#define LOCK_ANSWER_TRIE(LOCK_ANSWER_TRIE56938,3404899 -#define UNLOCK_ANSWER_TRIE(UNLOCK_ANSWER_TRIE56939,3404952 -#define AnsHash_init_chain_fields(AnsHash_init_chain_fields56940,3405009 -#define LOCK_SUBGOAL_NODE(LOCK_SUBGOAL_NODE56941,3405080 -#define UNLOCK_SUBGOAL_NODE(UNLOCK_SUBGOAL_NODE56942,3405135 -#define SgNode_init_lock_field(SgNode_init_lock_field56943,3405194 -#define LOCK_SUBGOAL_NODE(LOCK_SUBGOAL_NODE56944,3405259 -#define UNLOCK_SUBGOAL_NODE(UNLOCK_SUBGOAL_NODE56945,3405314 -#define SgNode_init_lock_field(SgNode_init_lock_field56946,3405373 -#define LOCK_SUBGOAL_NODE(LOCK_SUBGOAL_NODE56947,3405438 -#define UNLOCK_SUBGOAL_NODE(UNLOCK_SUBGOAL_NODE56948,3405493 -#define SgNode_init_lock_field(SgNode_init_lock_field56949,3405552 -#define LOCK_ANSWER_NODE(LOCK_ANSWER_NODE56950,3405617 -#define UNLOCK_ANSWER_NODE(UNLOCK_ANSWER_NODE56951,3405670 -#define AnsNode_init_lock_field(AnsNode_init_lock_field56952,3405727 -#define LOCK_ANSWER_NODE(LOCK_ANSWER_NODE56953,3405794 -#define UNLOCK_ANSWER_NODE(UNLOCK_ANSWER_NODE56954,3405847 -#define AnsNode_init_lock_field(AnsNode_init_lock_field56955,3405904 -#define LOCK_ANSWER_NODE(LOCK_ANSWER_NODE56956,3405971 -#define UNLOCK_ANSWER_NODE(UNLOCK_ANSWER_NODE56957,3406024 -#define AnsNode_init_lock_field(AnsNode_init_lock_field56958,3406081 -#define LOCK_GLOBAL_NODE(LOCK_GLOBAL_NODE56959,3406148 -#define UNLOCK_GLOBAL_NODE(UNLOCK_GLOBAL_NODE56960,3406201 -#define GtNode_init_lock_field(GtNode_init_lock_field56961,3406258 -#define LOCK_GLOBAL_NODE(LOCK_GLOBAL_NODE56962,3406323 -#define UNLOCK_GLOBAL_NODE(UNLOCK_GLOBAL_NODE56963,3406376 -#define GtNode_init_lock_field(GtNode_init_lock_field56964,3406433 -#define LOCK_GLOBAL_NODE(LOCK_GLOBAL_NODE56965,3406498 -#define UNLOCK_GLOBAL_NODE(UNLOCK_GLOBAL_NODE56966,3406551 -#define GtNode_init_lock_field(GtNode_init_lock_field56967,3406608 -#define TabEnt_init_subgoal_trie_field(TabEnt_init_subgoal_trie_field56968,3406673 -#define TabEnt_init_subgoal_trie_field(TabEnt_init_subgoal_trie_field56969,3406754 -#define SgFr_init_batched_fields(SgFr_init_batched_fields56970,3406835 -#define SgFr_init_batched_fields(SgFr_init_batched_fields56971,3406904 -#define DepFr_init_external_field(DepFr_init_external_field56972,3406973 -#define DepFr_init_external_field(DepFr_init_external_field56973,3407044 -#define DepFr_init_last_answer_field(DepFr_init_last_answer_field56974,3407115 -#define DepFr_init_last_answer_field(DepFr_init_last_answer_field56975,3407192 -#define new_table_entry(new_table_entry56976,3407269 -#define new_subgoal_entry(new_subgoal_entry56977,3407320 -#define new_subgoal_frame(new_subgoal_frame56978,3407375 -#define init_subgoal_frame(init_subgoal_frame56979,3407430 -#define new_subgoal_frame(new_subgoal_frame56980,3407487 -#define init_subgoal_frame(init_subgoal_frame56981,3407542 -#define new_dependency_frame(new_dependency_frame56982,3407599 -#define new_suspension_frame(new_suspension_frame56983,3407660 -#define new_subgoal_trie_node(new_subgoal_trie_node56984,3407721 -#define new_answer_trie_node(new_answer_trie_node56985,3407784 -#define new_global_trie_node(new_global_trie_node56986,3407845 -#define new_answer_ref_node(new_answer_ref_node56987,3407906 -#define new_subgoal_trie_hash(new_subgoal_trie_hash56988,3407965 -#define new_answer_trie_hash(new_answer_trie_hash56989,3408028 -#define new_global_trie_hash(new_global_trie_hash56990,3408089 -#define insert_into_global_sg_fr_list(insert_into_global_sg_fr_list56991,3408150 -#define remove_from_global_sg_fr_list(remove_from_global_sg_fr_list56992,3408229 -#define insert_into_global_sg_fr_list(insert_into_global_sg_fr_list56993,3408308 -#define remove_from_global_sg_fr_list(remove_from_global_sg_fr_list56994,3408387 -#define get_insert_thread_bucket(get_insert_thread_bucket56995,3408466 -#define get_thread_bucket(get_thread_bucket56997,3408671 -#define get_subgoal_trie(get_subgoal_trie57001,3409035 -#define SgFr_batched_cached_answers_check_insert(SgFr_batched_cached_answers_check_insert57007,3409670 -#define SgFr_batched_cached_answers_check_remove(SgFr_batched_cached_answers_check_remove57009,3409934 -#define add_to_tdv(add_to_tdv57011,3410201 -#define check_for_deadlock(check_for_deadlock57013,3410331 -#define deadlock_detection(deadlock_detection57015,3410488 -#define freeze_current_cp(freeze_current_cp57017,3410650 -#define wake_frozen_cp(wake_frozen_cp57019,3410787 -#define restore_bindings(restore_bindings57020,3410837 -#define abolish_frozen_cps_until(abolish_frozen_cps_until57022,3410986 -#define abolish_frozen_cps_all(abolish_frozen_cps_all57024,3411171 -#define adjust_freeze_registers(adjust_freeze_registers57026,3411333 -#define mark_as_completed(mark_as_completed57028,3411499 -#define unbind_variables(unbind_variables57030,3411654 -#define rebind_variables(rebind_variables57032,3411827 -#define expand_auxiliary_stack(expand_auxiliary_stack57035,3412122 -#define abolish_incomplete_subgoals(abolish_incomplete_subgoals57037,3412294 -#define collect_suspension_frames(collect_suspension_frames57040,3412604 -#define RationalMark RationalMark57054,3414095 -#define IsRationalTerm(IsRationalTerm57055,3414137 -#define TabEnt_lock(TabEnt_lock57096,3416302 -#define TabEnt_pe(TabEnt_pe57097,3416343 -#define TabEnt_atom(TabEnt_atom57098,3416380 -#define TabEnt_arity(TabEnt_arity57099,3416421 -#define TabEnt_flags(TabEnt_flags57100,3416464 -#define TabEnt_mode(TabEnt_mode57101,3416507 -#define TabEnt_mode_directed(TabEnt_mode_directed57102,3416548 -#define TabEnt_subgoal_trie(TabEnt_subgoal_trie57103,3416607 -#define TabEnt_hash_chain(TabEnt_hash_chain57104,3416664 -#define TabEnt_next(TabEnt_next57105,3416717 -#define TrNode_instr(TrNode_instr57146,3418828 -#define TrNode_or_arg(TrNode_or_arg57147,3418871 -#define TrNode_entry(TrNode_entry57148,3418916 -#define TrNode_parent(TrNode_parent57149,3418959 -#define TrNode_child(TrNode_child57150,3419004 -#define TrNode_sg_fr(TrNode_sg_fr57151,3419047 -#define TrNode_sg_ent(TrNode_sg_ent57152,3419090 -#define TrNode_next(TrNode_next57153,3419136 -#define TrNode_lock(TrNode_lock57154,3419178 -#define RefNode_answer(RefNode_answer57163,3419676 -#define RefNode_next(RefNode_next57164,3419724 -#define RefNode_previous(RefNode_previous57165,3419768 -#define Hash_mark(Hash_mark57204,3421904 -#define Hash_num_buckets(Hash_num_buckets57205,3421942 -#define Hash_buckets(Hash_buckets57206,3421994 -#define Hash_num_nodes(Hash_num_nodes57207,3422038 -#define Hash_previous(Hash_previous57208,3422086 -#define Hash_next(Hash_next57209,3422132 -#define SgEnt_lock(SgEnt_lock57281,3426711 -#define SgEnt_code(SgEnt_code57282,3426751 -#define SgEnt_tab_ent(SgEnt_tab_ent57283,3426791 -#define SgEnt_arity(SgEnt_arity57284,3426837 -#define SgEnt_hash_chain(SgEnt_hash_chain57285,3426879 -#define SgEnt_answer_trie(SgEnt_answer_trie57286,3426931 -#define SgEnt_first_answer(SgEnt_first_answer57287,3426985 -#define SgEnt_last_answer(SgEnt_last_answer57288,3427041 -#define SgEnt_mode_directed(SgEnt_mode_directed57289,3427095 -#define SgEnt_invalid_chain(SgEnt_invalid_chain57290,3427153 -#define SgEnt_try_answer(SgEnt_try_answer57291,3427211 -#define SgEnt_previous(SgEnt_previous57292,3427263 -#define SgEnt_gen_top_or_fr(SgEnt_gen_top_or_fr57293,3427311 -#define SgEnt_gen_worker(SgEnt_gen_worker57294,3427369 -#define SgEnt_sg_ent_state(SgEnt_sg_ent_state57295,3427421 -#define SgEnt_active_workers(SgEnt_active_workers57296,3427477 -#define SgEnt_sg_fr(SgEnt_sg_fr57297,3427537 -#define SUBGOAL_ENTRY(SUBGOAL_ENTRY57312,3428541 -#define SUBGOAL_ENTRY(SUBGOAL_ENTRY57313,3428588 -#define SgFr_lock(SgFr_lock57314,3428635 -#define SgFr_code(SgFr_code57315,3428674 -#define SgFr_tab_ent(SgFr_tab_ent57316,3428713 -#define SgFr_arity(SgFr_arity57317,3428758 -#define SgFr_hash_chain(SgFr_hash_chain57318,3428799 -#define SgFr_answer_trie(SgFr_answer_trie57319,3428850 -#define SgFr_first_answer(SgFr_first_answer57320,3428903 -#define SgFr_last_answer(SgFr_last_answer57321,3428958 -#define SgFr_mode_directed(SgFr_mode_directed57322,3429011 -#define SgFr_invalid_chain(SgFr_invalid_chain57323,3429068 -#define SgFr_try_answer(SgFr_try_answer57324,3429125 -#define SgFr_previous(SgFr_previous57325,3429176 -#define SgFr_gen_top_or_fr(SgFr_gen_top_or_fr57326,3429223 -#define SgFr_gen_worker(SgFr_gen_worker57327,3429280 -#define SgFr_sg_ent_state(SgFr_sg_ent_state57328,3429331 -#define SgFr_active_workers(SgFr_active_workers57329,3429386 -#define SgFr_sg_ent(SgFr_sg_ent57330,3429445 -#define SgFr_batched_last_answer(SgFr_batched_last_answer57331,3429488 -#define SgFr_batched_cached_answers(SgFr_batched_cached_answers57332,3429557 -#define SgFr_state(SgFr_state57333,3429632 -#define SgFr_gen_cp(SgFr_gen_cp57334,3429673 -#define SgFr_next(SgFr_next57335,3429716 -#define DepFr_lock(DepFr_lock57358,3431212 -#define DepFr_leader_dep_is_on_stack(DepFr_leader_dep_is_on_stack57359,3431253 -#define DepFr_top_or_fr(DepFr_top_or_fr57360,3431330 -#define DepFr_timestamp(DepFr_timestamp57361,3431381 -#define DepFr_external(DepFr_external57362,3431432 -#define DepFr_backchain_cp(DepFr_backchain_cp57363,3431481 -#define DepFr_leader_cp(DepFr_leader_cp57364,3431538 -#define DepFr_cons_cp(DepFr_cons_cp57365,3431589 -#define DepFr_last_answer(DepFr_last_answer57366,3431636 -#define DepFr_next(DepFr_next57367,3431691 -#define SuspFr_top_or_fr_on_stack(SuspFr_top_or_fr_on_stack57392,3433410 -#define SuspFr_top_dep_fr(SuspFr_top_dep_fr57393,3433481 -#define SuspFr_top_sg_fr(SuspFr_top_sg_fr57394,3433536 -#define SuspFr_global_reg(SuspFr_global_reg57395,3433589 -#define SuspFr_global_start(SuspFr_global_start57396,3433644 -#define SuspFr_global_size(SuspFr_global_size57397,3433703 -#define SuspFr_local_reg(SuspFr_local_reg57398,3433760 -#define SuspFr_local_start(SuspFr_local_start57399,3433813 -#define SuspFr_local_size(SuspFr_local_size57400,3433870 -#define SuspFr_trail_reg(SuspFr_trail_reg57401,3433925 -#define SuspFr_trail_start(SuspFr_trail_start57402,3433978 -#define SuspFr_trail_size(SuspFr_trail_size57403,3434035 -#define SuspFr_next(SuspFr_next57404,3434090 -#define TrStat_out TrStat_out57435,3435648 -#define TrStat_show TrStat_show57436,3435688 -#define TrStat_subgoals TrStat_subgoals57437,3435730 -#define TrStat_sg_incomplete TrStat_sg_incomplete57438,3435780 -#define TrStat_sg_nodes TrStat_sg_nodes57439,3435840 -#define TrStat_answers TrStat_answers57440,3435890 -#define TrStat_answers_true TrStat_answers_true57441,3435938 -#define TrStat_answers_no TrStat_answers_no57442,3435996 -#define TrStat_answers_pruned TrStat_answers_pruned57443,3436050 -#define TrStat_ans_nodes TrStat_ans_nodes57444,3436112 -#define TrStat_gt_terms TrStat_gt_terms57445,3436164 -#define TrStat_gt_nodes TrStat_gt_nodes57446,3436214 -#define TrStat_gt_refs TrStat_gt_refs57447,3436264 -#define IF_ABOLISH_SUBGOAL_TRIE_SHARED_DATA_STRUCTURES IF_ABOLISH_SUBGOAL_TRIE_SHARED_DATA_STRUCTURES57448,3436312 -#define IF_ABOLISH_SUBGOAL_TRIE_SHARED_DATA_STRUCTURESIF_ABOLISH_SUBGOAL_TRIE_SHARED_DATA_STRUCTURES57449,3436424 -#define IF_ABOLISH_ANSWER_TRIE_SHARED_DATA_STRUCTURES IF_ABOLISH_ANSWER_TRIE_SHARED_DATA_STRUCTURES57450,3436535 -#define IF_ABOLISH_ANSWER_TRIE_SHARED_DATA_STRUCTURESIF_ABOLISH_ANSWER_TRIE_SHARED_DATA_STRUCTURES57451,3436645 -#define SHOW_TABLE_STR_ARRAY_SIZE SHOW_TABLE_STR_ARRAY_SIZE57452,3436754 -#define SHOW_TABLE_ARITY_ARRAY_SIZE SHOW_TABLE_ARITY_ARRAY_SIZE57453,3436824 -#define SHOW_TABLE_STRUCTURE(SHOW_TABLE_STRUCTURE57454,3436898 -#define CHECK_DECREMENT_GLOBAL_TRIE_REFERENCE(CHECK_DECREMENT_GLOBAL_TRIE_REFERENCE57455,3436958 -#define CHECK_DECREMENT_GLOBAL_TRIE_FOR_SUBTERMS_REFERENCE(CHECK_DECREMENT_GLOBAL_TRIE_FOR_SUBTERMS_REFERENCE57456,3437052 -#define FREE_GLOBAL_TRIE_BRANCH(FREE_GLOBAL_TRIE_BRANCH57457,3437172 -#define CHECK_DECREMENT_GLOBAL_TRIE_FOR_SUBTERMS_REFERENCE(CHECK_DECREMENT_GLOBAL_TRIE_FOR_SUBTERMS_REFERENCE57458,3437238 -#define FREE_GLOBAL_TRIE_BRANCH(FREE_GLOBAL_TRIE_BRANCH57459,3437358 -#define INCLUDE_SUBGOAL_TRIE_CHECK_INSERT INCLUDE_SUBGOAL_TRIE_CHECK_INSERT57460,3437424 -#define INCLUDE_ANSWER_TRIE_CHECK_INSERT INCLUDE_ANSWER_TRIE_CHECK_INSERT57461,3437510 -#define INCLUDE_GLOBAL_TRIE_CHECK_INSERT INCLUDE_GLOBAL_TRIE_CHECK_INSERT57462,3437594 -#undef INCLUDE_GLOBAL_TRIE_CHECK_INSERTINCLUDE_GLOBAL_TRIE_CHECK_INSERT57463,3437678 -#undef INCLUDE_ANSWER_TRIE_CHECK_INSERTINCLUDE_ANSWER_TRIE_CHECK_INSERT57464,3437760 -#undef INCLUDE_SUBGOAL_TRIE_CHECK_INSERTINCLUDE_SUBGOAL_TRIE_CHECK_INSERT57465,3437842 -#define MODE_GLOBAL_TRIE_ENTRYMODE_GLOBAL_TRIE_ENTRY57466,3437926 -#define INCLUDE_SUBGOAL_TRIE_CHECK_INSERT INCLUDE_SUBGOAL_TRIE_CHECK_INSERT57467,3437989 -#define INCLUDE_ANSWER_TRIE_CHECK_INSERT INCLUDE_ANSWER_TRIE_CHECK_INSERT57468,3438075 -#define INCLUDE_GLOBAL_TRIE_CHECK_INSERT INCLUDE_GLOBAL_TRIE_CHECK_INSERT57469,3438160 -#undef INCLUDE_GLOBAL_TRIE_CHECK_INSERTINCLUDE_GLOBAL_TRIE_CHECK_INSERT57470,3438245 -#undef INCLUDE_ANSWER_TRIE_CHECK_INSERTINCLUDE_ANSWER_TRIE_CHECK_INSERT57471,3438328 -#undef INCLUDE_SUBGOAL_TRIE_CHECK_INSERTINCLUDE_SUBGOAL_TRIE_CHECK_INSERT57472,3438411 -#undef MODE_GLOBAL_TRIE_ENTRYMODE_GLOBAL_TRIE_ENTRY57473,3438496 -#define INCLUDE_SUBGOAL_SEARCH_LOOP INCLUDE_SUBGOAL_SEARCH_LOOP57474,3438559 -#define INCLUDE_ANSWER_SEARCH_LOOP INCLUDE_ANSWER_SEARCH_LOOP57475,3438634 -#define INCLUDE_LOAD_ANSWER_LOOP INCLUDE_LOAD_ANSWER_LOOP57476,3438707 -#undef INCLUDE_LOAD_ANSWER_LOOPINCLUDE_LOAD_ANSWER_LOOP57477,3438776 -#undef INCLUDE_ANSWER_SEARCH_LOOPINCLUDE_ANSWER_SEARCH_LOOP57478,3438843 -#undef INCLUDE_SUBGOAL_SEARCH_LOOPINCLUDE_SUBGOAL_SEARCH_LOOP57479,3438914 -#define MODE_TERMS_LOOPMODE_TERMS_LOOP57480,3438987 -#define INCLUDE_SUBGOAL_SEARCH_LOOP INCLUDE_SUBGOAL_SEARCH_LOOP57481,3439037 -#define INCLUDE_ANSWER_SEARCH_LOOP INCLUDE_ANSWER_SEARCH_LOOP57482,3439112 -#undef TRIE_RATIONAL_TERMSTRIE_RATIONAL_TERMS57483,3439185 -#define TRIE_RATIONAL_TERMSTRIE_RATIONAL_TERMS57484,3439242 -#undef INCLUDE_ANSWER_SEARCH_LOOPINCLUDE_ANSWER_SEARCH_LOOP57485,3439300 -#undef INCLUDE_SUBGOAL_SEARCH_LOOPINCLUDE_SUBGOAL_SEARCH_LOOP57486,3439371 -#undef MODE_TERMS_LOOPMODE_TERMS_LOOP57487,3439444 -#define MODE_GLOBAL_TRIE_LOOPMODE_GLOBAL_TRIE_LOOP57488,3439493 -#define INCLUDE_SUBGOAL_SEARCH_LOOP INCLUDE_SUBGOAL_SEARCH_LOOP57489,3439555 -#define INCLUDE_ANSWER_SEARCH_LOOP INCLUDE_ANSWER_SEARCH_LOOP57490,3439630 -#define INCLUDE_LOAD_ANSWER_LOOP INCLUDE_LOAD_ANSWER_LOOP57491,3439703 -#undef TRIE_RATIONAL_TERMSTRIE_RATIONAL_TERMS57492,3439772 -#define TRIE_RATIONAL_TERMSTRIE_RATIONAL_TERMS57493,3439829 -#undef INCLUDE_LOAD_ANSWER_LOOPINCLUDE_LOAD_ANSWER_LOOP57494,3439887 -#undef INCLUDE_ANSWER_SEARCH_LOOPINCLUDE_ANSWER_SEARCH_LOOP57495,3439954 -#undef INCLUDE_SUBGOAL_SEARCH_LOOPINCLUDE_SUBGOAL_SEARCH_LOOP57496,3440025 -#undef MODE_GLOBAL_TRIE_LOOPMODE_GLOBAL_TRIE_LOOP57497,3440098 -#define INCLUDE_ANSWER_SEARCH_MODE_DIRECTEDINCLUDE_ANSWER_SEARCH_MODE_DIRECTED57498,3440159 -#undef INCLUDE_ANSWER_SEARCH_MODE_DIRECTEDINCLUDE_ANSWER_SEARCH_MODE_DIRECTED57499,3440249 -#define stack_terms_base stack_terms_base57501,3440440 -#undef stack_terms_basestack_terms_base57502,3440493 -#define INCREMENT_GLOBAL_TRIE_REFERENCE(INCREMENT_GLOBAL_TRIE_REFERENCE57509,3440986 -#define NEW_SUBGOAL_TRIE_NODE(NEW_SUBGOAL_TRIE_NODE57510,3441066 -#define NEW_ANSWER_TRIE_NODE(NEW_ANSWER_TRIE_NODE57511,3441127 -#define NEW_GLOBAL_TRIE_NODE(NEW_GLOBAL_TRIE_NODE57512,3441186 -#define NEW_SUBGOAL_TRIE_NODE(NEW_SUBGOAL_TRIE_NODE57513,3441245 -#define NEW_ANSWER_TRIE_NODE(NEW_ANSWER_TRIE_NODE57514,3441306 -#define NEW_GLOBAL_TRIE_NODE(NEW_GLOBAL_TRIE_NODE57515,3441365 -#define SUBGOAL_CHECK_INSERT_ENTRY(SUBGOAL_CHECK_INSERT_ENTRY57516,3441424 -#define ANSWER_CHECK_INSERT_ENTRY(ANSWER_CHECK_INSERT_ENTRY57517,3441495 -#define SUBGOAL_CHECK_INSERT_ENTRY(SUBGOAL_CHECK_INSERT_ENTRY57518,3441564 -#define ANSWER_CHECK_INSERT_ENTRY(ANSWER_CHECK_INSERT_ENTRY57519,3441635 -#define ANSWER_SAFE_INSERT_ENTRY(ANSWER_SAFE_INSERT_ENTRY57520,3441704 -#define INVALIDATE_ANSWER_TRIE_NODE(INVALIDATE_ANSWER_TRIE_NODE57521,3441771 -#define INVALIDATE_ANSWER_TRIE_NODE(INVALIDATE_ANSWER_TRIE_NODE57522,3441844 -#define INVALIDATE_ANSWER_TRIE_LEAF_NODE(INVALIDATE_ANSWER_TRIE_LEAF_NODE57523,3441917 -#define stack_terms_limit stack_terms_limit57532,3442967 -#undef stack_terms_limitstack_terms_limit57533,3443023 -#undef in_pairin_pair57534,3443077 -#define stack_terms_limit stack_terms_limit57539,3443517 -#define stack_terms_base stack_terms_base57540,3443573 -#undef stack_terms_limitstack_terms_limit57541,3443627 -#undef stack_terms_basestack_terms_base57542,3443681 -#undef INCREMENT_GLOBAL_TRIE_REFERENCEINCREMENT_GLOBAL_TRIE_REFERENCE57543,3443733 -#undef NEW_SUBGOAL_TRIE_NODENEW_SUBGOAL_TRIE_NODE57544,3443815 -#undef NEW_ANSWER_TRIE_NODENEW_ANSWER_TRIE_NODE57545,3443877 -#undef NEW_GLOBAL_TRIE_NODENEW_GLOBAL_TRIE_NODE57546,3443937 -#undef SUBGOAL_CHECK_INSERT_ENTRYSUBGOAL_CHECK_INSERT_ENTRY57547,3443997 -#undef ANSWER_CHECK_INSERT_ENTRYANSWER_CHECK_INSERT_ENTRY57548,3444069 -#define TOP_STACK TOP_STACK57551,3444172 -#define HEAP_ARITY_ENTRY HEAP_ARITY_ENTRY57552,3444209 -#define VARS_ARITY_ENTRY VARS_ARITY_ENTRY57553,3444260 -#define SUBS_ARITY_ENTRY SUBS_ARITY_ENTRY57554,3444311 -#define HEAP_ENTRY(HEAP_ENTRY57555,3444362 -#define VARS_ENTRY(VARS_ENTRY57556,3444401 -#define SUBS_ENTRY(SUBS_ENTRY57557,3444440 -#define next_trie_instruction(next_trie_instruction57558,3444479 -#define next_instruction(next_instruction57559,3444540 -#define copy_aux_stack(copy_aux_stack57560,3444591 -#define store_trie_node(store_trie_node57561,3444638 -#define restore_trie_node(restore_trie_node57562,3444687 -#define really_pop_trie_node(really_pop_trie_node57563,3444741 -#define pop_trie_node(pop_trie_node57564,3444801 -#define pop_trie_node(pop_trie_node57565,3444847 -#define aux_stack_null_instr(aux_stack_null_instr57566,3444893 -#define aux_stack_extension_instr(aux_stack_extension_instr57567,3444953 -#define aux_stack_term_instr(aux_stack_term_instr57568,3445023 -#define aux_stack_term_in_pair_instr(aux_stack_term_in_pair_instr57569,3445083 -#define aux_stack_new_pair_instr(aux_stack_new_pair_instr57570,3445159 -#define aux_stack_pair_instr(aux_stack_pair_instr57571,3445228 -#define aux_stack_pair_instr(aux_stack_pair_instr57572,3445289 -#define aux_stack_appl_instr(aux_stack_appl_instr57573,3445350 -#define aux_stack_appl_in_pair_instr(aux_stack_appl_in_pair_instr57574,3445411 -#define aux_stack_var_instr(aux_stack_var_instr57575,3445488 -#define aux_stack_var_in_pair_instr(aux_stack_var_in_pair_instr57576,3445547 -#define aux_stack_val_instr(aux_stack_val_instr57577,3445622 -#define aux_stack_val_in_pair_instr(aux_stack_val_in_pair_instr57578,3445681 -#define TOP_STACK TOP_STACK57892,3467777 -#define HEAP_ARITY_ENTRY HEAP_ARITY_ENTRY57893,3467813 -#define VARS_ARITY_ENTRY VARS_ARITY_ENTRY57894,3467863 -#define SUBS_ARITY_ENTRY SUBS_ARITY_ENTRY57895,3467913 -#define HEAP_ENTRY(HEAP_ENTRY57896,3467963 -#define VARS_ENTRY(VARS_ENTRY57897,3468002 -#define SUBS_ENTRY(SUBS_ENTRY57898,3468041 -#define TOP_STACK TOP_STACK57913,3468640 -#define HEAP_ARITY_ENTRY HEAP_ARITY_ENTRY57914,3468677 -#define VARS_ARITY_ENTRY VARS_ARITY_ENTRY57915,3468728 -#define SUBS_ARITY_ENTRY SUBS_ARITY_ENTRY57916,3468779 -#define HEAP_ENTRY(HEAP_ENTRY57917,3468830 -#define VARS_ENTRY(VARS_ENTRY57918,3468869 -#define SUBS_ENTRY(SUBS_ENTRY57919,3468908 -#define next_trie_instruction(next_trie_instruction57920,3468947 -#define next_instruction(next_instruction57921,3469008 -#define copy_aux_stack(copy_aux_stack57922,3469059 -#define store_trie_node(store_trie_node57923,3469106 -#define restore_trie_node(restore_trie_node57924,3469155 -#define really_pop_trie_node(really_pop_trie_node57925,3469209 -#define pop_trie_node(pop_trie_node57926,3469269 -#define pop_trie_node(pop_trie_node57927,3469315 -#define aux_stack_null_instr(aux_stack_null_instr57928,3469361 -#define aux_stack_extension_instr(aux_stack_extension_instr57929,3469421 -#define aux_stack_term_instr(aux_stack_term_instr57930,3469491 -#define aux_stack_term_in_pair_instr(aux_stack_term_in_pair_instr57931,3469551 -#define aux_stack_new_pair_instr(aux_stack_new_pair_instr57932,3469627 -#define aux_stack_pair_instr(aux_stack_pair_instr57933,3469695 -#define aux_stack_pair_instr(aux_stack_pair_instr57934,3469755 -#define aux_stack_appl_instr(aux_stack_appl_instr57935,3469815 -#define aux_stack_appl_in_pair_instr(aux_stack_appl_in_pair_instr57936,3469875 -#define aux_stack_var_instr(aux_stack_var_instr57937,3469951 -#define aux_stack_var_in_pair_instr(aux_stack_var_in_pair_instr57938,3470010 -#define aux_stack_val_instr(aux_stack_val_instr57939,3470085 -#define aux_stack_val_in_pair_instr(aux_stack_val_in_pair_instr57940,3470144 -#define SYSTEM_STAT SYSTEM_STAT58014,3473596 -#define SYSTEM_STAT SYSTEM_STAT58015,3473638 -#define S_ISDIR(S_ISDIR58050,3475693 -#define S_ISDIR(S_ISDIR58094,3479144 -#define ENCODING_H ENCODING_H61610,3660830 -#define ENC_WCHAR ENC_WCHAR61623,3661627 -#define ENC_WCHAR ENC_WCHAR61624,3661664 -#define SYSTEM_STAT SYSTEM_STAT61641,3662676 -#define SYSTEM_STAT SYSTEM_STAT61642,3662716 -#define getw getw61651,3663266 -#define FMEMOPEN_H_FMEMOPEN_H_61717,3667075 -#define S_ISDIR(S_ISDIR61721,3667181 -#define TMP_STRING_SIZE TMP_STRING_SIZE61727,3667643 -#define FORMAT_MAX_SIZE FORMAT_MAX_SIZE61737,3668234 -#define FORMAT_COPY_ARGS_ERROR FORMAT_COPY_ARGS_ERROR61755,3668904 -#define FORMAT_COPY_ARGS_OVERFLOW FORMAT_COPY_ARGS_OVERFLOW61756,3668966 -#define utf_cont(utf_cont61759,3669050 -#define encoding_error(encoding_error61760,3669081 -#define strncat(strncat61767,3669376 -#define strncpy(strncpy61768,3669409 -#define S_ISDIR(S_ISDIR61769,3669442 -#define MB_LEN_MAX MB_LEN_MAX61814,3672133 -#define OPEN_DEFS(OPEN_DEFS61828,3673048 -#define PAR(PAR61829,3673088 -#undef PARPAR61833,3673381 -#define PAR(PAR61834,3673407 -#undef PARPAR61836,3673506 -#define CheckStream(CheckStream61843,3674051 -#define ABSOLUTE_FILE_NAME_DEFS(ABSOLUTE_FILE_NAME_DEFS61862,3675381 -#define PAR(PAR61863,3675449 -#undef PARPAR61867,3675688 -#define PAR(PAR61868,3675714 -#undef PARPAR61870,3675842 -#define IOPREDS_H IOPREDS_H61877,3676152 -#define Yap_CheckStream(Yap_CheckStream61879,3676262 -#define Yap_CheckTextStream(Yap_CheckTextStream61880,3676310 -#define Yap_CheckBinaryStream(Yap_CheckBinaryStream61881,3676367 -#define PlIOError(PlIOError61885,3676651 -# define INITIAL_ALLOC INITIAL_ALLOC61914,3678634 -#define S_ISDIR(S_ISDIR61936,3679876 -#define S_ISDIR(S_ISDIR61947,3680332 -#define S_ISDIR(S_ISDIR61959,3680851 -#define READLINE_OUT_BUF_MAX READLINE_OUT_BUF_MAX61961,3680938 -#define strncat(strncat61996,3682859 -#define strncpy(strncpy61997,3682892 -#define S_ISDIR(S_ISDIR61998,3682925 -#define SYSTEM_STAT SYSTEM_STAT61999,3682958 -#define SYSTEM_STAT SYSTEM_STAT62000,3682999 -#undef PARPAR62002,3683098 -#define READ_DEFS(READ_DEFS62005,3683264 -#define PAR(PAR62006,3683302 -#undef PARPAR62010,3683587 -#define PAR(PAR62011,3683611 -#undef PARPAR62013,3683706 -#define PUSHFET(PUSHFET62090,3687818 -#define POPFET(POPFET62091,3687853 -#define READ_CLAUSE_DEFS(READ_CLAUSE_DEFS62109,3689339 -#define PAR(PAR62110,3689392 -#undef PARPAR62114,3689600 -#define PAR(PAR62115,3689626 -#undef PARPAR62117,3689746 -#define SIG_PROLOG_OFFSET SIG_PROLOG_OFFSET62148,3691607 -#define SIG_EXCEPTION SIG_EXCEPTION62149,3691659 -#define SIG_ATOM_GC SIG_ATOM_GC62150,3691703 -#define SIG_GC SIG_GC62151,3691743 -#define SIG_THREAD_SIGNAL SIG_THREAD_SIGNAL62152,3691773 -#define SIG_FREECLAUSES SIG_FREECLAUSES62153,3691825 -#define SIG_PLABORT SIG_PLABORT62154,3691873 -#define S_ISDIR(S_ISDIR62217,3694847 -#undef HAVE_FMEMOPENHAVE_FMEMOPEN62235,3695865 -#undef HAVE_OPEN_MEMSTREAMHAVE_OPEN_MEMSTREAM62236,3695907 -#undef MAY_WRITEMAY_WRITE62237,3695961 -#undef MAY_READMAY_READ62238,3695995 -#define PLGETC_BUF_SIZE PLGETC_BUF_SIZE62262,3697228 -#define strncat(strncat62323,3700594 -#define strncpy(strncpy62324,3700627 -#define S_ISDIR(S_ISDIR62325,3700660 -#define SYSTEM_STAT SYSTEM_STAT62326,3700693 -#define SYSTEM_STAT SYSTEM_STAT62327,3700735 -#define STREAM_PROPERTY_DEFS(STREAM_PROPERTY_DEFS62359,3702900 -#define PAR(PAR62360,3702961 -#undef PARPAR62364,3703192 -#define PAR(PAR62365,3703217 -#undef PARPAR62367,3703347 -#define SET_STREAM_DEFS(SET_STREAM_DEFS62372,3703709 -#define PAR(PAR62373,3703760 -#undef PARPAR62377,3703971 -#define PAR(PAR62378,3703996 -#undef PARPAR62380,3704111 -#define is_valid_env_char(is_valid_env_char62413,3706492 -#define isValidEnvChar(isValidEnvChar62420,3706920 -#define HAVE_BASENAME HAVE_BASENAME62425,3707319 -#define HAVE_REALPATH HAVE_REALPATH62426,3707365 -#define EXPAND_FILENAME_DEFS(EXPAND_FILENAME_DEFS62433,3707848 -#define PAR(PAR62434,3707909 -#undef PARPAR62438,3708150 -#define PAR(PAR62439,3708175 -#undef PARPAR62441,3708305 -#define wstreq(wstreq62481,3711023 -#define MAXREGSTRLEN MAXREGSTRLEN62483,3711142 -#define MINGW_HAS_SECURE_API MINGW_HAS_SECURE_API62490,3711515 -#define S_ISDIR(S_ISDIR62491,3711573 -#define strncat(strncat62492,3711605 -#define strncpy(strncpy62493,3711638 -#define signal signal62494,3711671 -#undef HAVE_GETRUSAGEHAVE_GETRUSAGE62497,3711720 -#undef HAVE_TIMESHAVE_TIMES62498,3711762 -#undef HAVE_GETRUSAGEHAVE_GETRUSAGE62499,3711797 -#define StartOfTimes StartOfTimes62500,3711841 -#define last_time last_time62501,3711883 -#define StartOfTimes_sys StartOfTimes_sys62502,3711919 -#define last_time_sys last_time_sys62503,3711969 -#define do_div(do_div62512,3712500 -#define TicksPerSec TicksPerSec62528,3713394 -#define TicksPerSec TicksPerSec62529,3713436 -#define TicksPerSec TicksPerSec62530,3713478 -#define TicksPerSec TicksPerSec62545,3714426 -#undef FALSEFALSE62553,3714881 -#undef TRUETRUE62554,3714910 -#define TicksPerSec TicksPerSec62555,3714937 -#define strncat(strncat62572,3715857 -#define strncpy(strncpy62573,3715890 -#define S_ISDIR(S_ISDIR62574,3715923 -#define SYSTEM_STAT SYSTEM_STAT62575,3715956 -#define SYSTEM_STAT SYSTEM_STAT62576,3715997 -#define strncat(strncat62585,3716342 -#define strncpy(strncpy62586,3716375 -#define S_ISDIR(S_ISDIR62587,3716408 -#define SYSTEM_STAT SYSTEM_STAT62589,3716519 -#define SYSTEM_STAT SYSTEM_STAT62590,3716561 -#undef PARPAR62591,3716603 -#define WRITE_DEFS(WRITE_DEFS62592,3716627 -#define PAR(PAR62593,3716667 -#undef PARPAR62597,3716956 -#define PAR(PAR62598,3716980 -#undef PARPAR62600,3717078 -#define YAPIO_H YAPIO_H62625,3718513 -#undef HAVE_LIBREADLINEHAVE_LIBREADLINE62626,3718545 -#define EOFCHAR EOFCHAR62627,3718593 -#define MAX_ISO_LATIN1 MAX_ISO_LATIN162634,3718857 -#define ParserAuxSp ParserAuxSp62635,3718903 -#define Yap_LockStream(Yap_LockStream62636,3718944 -#define Yap_UnLockStream(Yap_UnLockStream62637,3718991 -#define AF_UNSPEC AF_UNSPEC62646,3719353 -#define AF_LOCAL AF_LOCAL62647,3719390 -#define AF_AAL5 AF_AAL562648,3719425 -#define AF_APPLETALK AF_APPLETALK62649,3719458 -#define AF_AX25 AF_AX2562650,3719501 -#define AF_BRIDGE AF_BRIDGE62651,3719534 -#define AF_DECnet AF_DECnet62652,3719571 -#define AF_FILE AF_FILE62653,3719608 -#define AF_INET AF_INET62654,3719641 -#define AF_INET6 AF_INET662655,3719675 -#define AF_IPX AF_IPX62656,3719711 -#define AF_LOCAL AF_LOCAL62657,3719743 -#define AF_NETBEUI AF_NETBEUI62658,3719779 -#define AF_NETLINK AF_NETLINK62659,3719819 -#define AF_NETROM AF_NETROM62660,3719859 -#define AF_OSINET AF_OSINET62661,3719897 -#define AF_PACKET AF_PACKET62662,3719935 -#define AF_ROSE AF_ROSE62663,3719973 -#define AF_ROUTE AF_ROUTE62664,3720007 -#define AF_SECURITY AF_SECURITY62665,3720043 -#define AF_SNA AF_SNA62666,3720085 -#define AF_UNIX AF_UNIX62667,3720117 -#define AF_X25 AF_X2562668,3720151 -#define SOCK_STREAM SOCK_STREAM62669,3720183 -#define SOCK_DGRAM SOCK_DGRAM62670,3720225 -#define SOCK_RAW SOCK_RAW62671,3720265 -#define SOCK_RDM SOCK_RDM62672,3720301 -#define SOCK_SEQPACKET SOCK_SEQPACKET62673,3720337 -#define SOCK_PACKET SOCK_PACKET62674,3720385 -#define MAXHOSTNAMELEN MAXHOSTNAMELEN62675,3720427 -#define BUFSIZ BUFSIZ62676,3720475 -#define socket_errno socket_errno62677,3720507 -#define invalid_socket_fd(invalid_socket_fd62678,3720551 -#define socket_errno socket_errno62679,3720605 -#define invalid_socket_fd(invalid_socket_fd62680,3720649 -#define O_BINARY O_BINARY62697,3721724 -#define MAXBSIZE MAXBSIZE62710,3722275 -#define IsNumberDigit(IsNumberDigit63229,3751331 -#define IsSignDigit(IsSignDigit63230,3751378 -#define isOperator(isOperator63231,3751421 -#define freadline(freadline63232,3751462 -#define VERSION VERSION63237,3751581 - #define max(max63238,3751617 -#define IsHigh(IsHigh63439,3764420 -#define IsLow(IsLow63440,3764453 -#define HIGH(HIGH63441,3764484 -#define LOW(LOW63442,3764513 -#define NOT(NOT63443,3764540 -#define GetIndex(GetIndex63444,3764567 -#define GetOrder(GetOrder63445,3764604 -#define GetVar(GetVar63446,3764641 -#define NewVar(NewVar63447,3764674 -#define KillBDD(KillBDD63448,3764707 -#define GetVarCount(GetVarCount63449,3764742 -#define DEBUGON DEBUGON63450,3764785 -#define DEBUGOFF DEBUGOFF63451,3764820 -#define RAPIDLOADON RAPIDLOADON63452,3764857 -#define RAPIDLOADOFF RAPIDLOADOFF63453,3764900 -#define SETMAXBUFSIZE(SETMAXBUFSIZE63454,3764945 -#define BDDFILE_ERROR BDDFILE_ERROR63455,3764992 -#define BDDFILE_OTHER BDDFILE_OTHER63456,3765039 -#define BDDFILE_SCRIPT BDDFILE_SCRIPT63457,3765086 -#define BDDFILE_NODEDUMP BDDFILE_NODEDUMP63458,3765135 -#define ADTERROR_HADTERROR_H63525,3767849 -#define ADT_AStack ADT_AStack63526,3767886 -#define ADT_AStackIter ADT_AStackIter63527,3767924 -#define ADT_Buffer ADT_Buffer63528,3767970 -#define ADT_BufferIO ADT_BufferIO63529,3768008 -#define ADT_Deque ADT_Deque63530,3768050 -#define ADT_DequeIter ADT_DequeIter63531,3768086 -#define ADT_HashTable ADT_HashTable63532,3768130 -#define ADT_HashTableIter ADT_HashTableIter63533,3768174 -#define ADT_Queue ADT_Queue63534,3768226 -#define ADT_QueueIter ADT_QueueIter63535,3768262 -#define ADT_Stack ADT_Stack63536,3768306 -#define ADT_StackIter ADT_StackIter63537,3768342 -#define ADT_Table ADT_Table63538,3768386 -#define ADT_TableIter ADT_TableIter63539,3768423 -#define ADT_Tree ADT_Tree63540,3768468 -#define ADT_TreeIter ADT_TreeIter63541,3768503 -#define ALLOCATE_HALLOCATE_H63565,3769435 -#define APT_HAPT_H63568,3769512 -#define ERROR ERROR63569,3769539 -#define EXTERN EXTERN63570,3769567 -#define FAILURE FAILURE63571,3769597 -#define FALSE FALSE63572,3769629 -#define INFINITY INFINITY63573,3769657 -#define PRIVATE PRIVATE63574,3769691 -#define PUBLICPUBLIC63575,3769723 -#define SUCCESS SUCCESS63576,3769752 -#define TRUE TRUE63577,3769784 -#define __ANSI_C____ANSI_C__63578,3769810 -#define APT_CHEADERS_HAPT_CHEADERS_H63588,3770405 -# define VA_START(VA_START63589,3770449 -# define VA_START(VA_START63590,3770485 -#define IsNumberDigit(IsNumberDigit63619,3771840 -#define IsSignDigit(IsSignDigit63620,3771887 -#define isOperator(isOperator63621,3771930 -#define freadline(freadline63622,3771971 -#define IQUEUE_HIQUEUE_H63639,3773059 -#define QUEUE_HQUEUE_H63685,3775685 -#define VERSION VERSION63706,3776456 -#define NODE_VALUE NODE_VALUE63768,3779256 -#define LOG_EXPECTED LOG_EXPECTED63769,3779297 -#define INT_VALUE INT_VALUE63803,3781427 -#define IsHigh(IsHigh63864,3786252 -#define IsLow(IsLow63865,3786285 -#define HIGH(HIGH63866,3786316 -#define LOW(LOW63867,3786345 -#define NOT(NOT63868,3786372 -#define GetIndex(GetIndex63869,3786399 -#define GetOrder(GetOrder63870,3786436 -#define GetVar(GetVar63871,3786473 -#define NewVar(NewVar63872,3786506 -#define KillBDD(KillBDD63873,3786539 -#define GetVarCount(GetVarCount63874,3786574 -#define DEBUGON DEBUGON63875,3786617 -#define DEBUGOFF DEBUGOFF63876,3786652 -#define RAPIDLOADON RAPIDLOADON63877,3786689 -#define RAPIDLOADOFF RAPIDLOADOFF63878,3786732 -#define SETMAXBUFSIZE(SETMAXBUFSIZE63879,3786777 -#define BDDFILE_ERROR BDDFILE_ERROR63880,3786824 -#define BDDFILE_OTHER BDDFILE_OTHER63881,3786871 -#define BDDFILE_SCRIPT BDDFILE_SCRIPT63882,3786918 -#define BDDFILE_NODEDUMP BDDFILE_NODEDUMP63883,3786967 -#define assert(assert133516,7665662 -#define YAP_PACKAGES_CLPBN_HORUS_BAYESBALL_H_YAP_PACKAGES_CLPBN_HORUS_BAYESBALL_H_133528,7666450 -#define assert(assert133554,7668162 -#define YAP_PACKAGES_CLPBN_HORUS_BAYESBALLGRAPH_H_YAP_PACKAGES_CLPBN_HORUS_BAYESBALLGRAPH_H_133572,7669207 -#define YAP_PACKAGES_CLPBN_HORUS_BELIEFPROP_H_YAP_PACKAGES_CLPBN_HORUS_BELIEFPROP_H_133683,7677062 -#define YAP_PACKAGES_CLPBN_HORUS_CONSTRAINTTREE_H_YAP_PACKAGES_CLPBN_HORUS_CONSTRAINTTREE_H_133924,7694564 -#define YAP_PACKAGES_CLPBN_HORUS_COUNTINGBP_H_YAP_PACKAGES_CLPBN_HORUS_COUNTINGBP_H_134027,7701293 -#define YAP_PACKAGES_CLPBN_HORUS_ELIMGRAPH_H_YAP_PACKAGES_CLPBN_HORUS_ELIMGRAPH_H_134122,7708301 -#define YAP_PACKAGES_CLPBN_HORUS_FACTOR_H_YAP_PACKAGES_CLPBN_HORUS_FACTOR_H_134205,7713904 -#define YAP_PACKAGES_CLPBN_HORUS_FACTORGRAPH_H_YAP_PACKAGES_CLPBN_HORUS_FACTORGRAPH_H_134264,7717773 -#define YAP_PACKAGES_CLPBN_HORUS_GENERICFACTOR_H_YAP_PACKAGES_CLPBN_HORUS_GENERICFACTOR_H_134401,7727970 -#define YAP_PACKAGES_CLPBN_HORUS_GROUNDSOLVER_H_YAP_PACKAGES_CLPBN_HORUS_GROUNDSOLVER_H_134446,7730982 -#define YAP_PACKAGES_CLPBN_HORUS_HISTOGRAM_H_YAP_PACKAGES_CLPBN_HORUS_HISTOGRAM_H_134485,7733549 -#define YAP_PACKAGES_CLPBN_HORUS_HORUS_H_YAP_PACKAGES_CLPBN_HORUS_HORUS_H_134496,7734033 -#define DISALLOW_COPY_AND_ASSIGN(DISALLOW_COPY_AND_ASSIGN134497,7734114 -#define DISALLOW_COPY(DISALLOW_COPY134498,7734178 -#define DISALLOW_ASSIGN(DISALLOW_ASSIGN134499,7734221 -#define YAP_PACKAGES_CLPBN_HORUS_INDEXER_H_YAP_PACKAGES_CLPBN_HORUS_INDEXER_H_134602,7740669 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDBP_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDBP_H_134695,7746133 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDKC_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDKC_H_134946,7762802 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDOPERATIONS_H_134971,7764559 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDSOLVER_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDSOLVER_H_134977,7764845 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDUTILS_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDUTILS_H_135012,7767094 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDVE_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDVE_H_135205,7779103 -#define YAP_PACKAGES_CLPBN_HORUS_LIFTEDWCNF_H_YAP_PACKAGES_CLPBN_HORUS_LIFTEDWCNF_H_135300,7785808 -#define YAP_PACKAGES_CLPBN_HORUS_PARFACTOR_H_YAP_PACKAGES_CLPBN_HORUS_PARFACTOR_H_135511,7801374 -#define YAP_PACKAGES_CLPBN_HORUS_PARFACTORLIST_H_YAP_PACKAGES_CLPBN_HORUS_PARFACTORLIST_H_135586,7806721 -#define YAP_PACKAGES_CLPBN_HORUS_PROBFORMULA_H_YAP_PACKAGES_CLPBN_HORUS_PROBFORMULA_H_135649,7811113 -#define YAP_PACKAGES_CLPBN_HORUS_TINYSET_H_YAP_PACKAGES_CLPBN_HORUS_TINYSET_H_135719,7815837 -#define YAP_PACKAGES_CLPBN_HORUS_UTIL_H_YAP_PACKAGES_CLPBN_HORUS_UTIL_H_135945,7829646 -#define YAP_PACKAGES_CLPBN_HORUS_VAR_H_YAP_PACKAGES_CLPBN_HORUS_VAR_H_136058,7837508 -#define YAP_PACKAGES_CLPBN_HORUS_VARELIM_H_YAP_PACKAGES_CLPBN_HORUS_VARELIM_H_136113,7840619 -#define YAP_PACKAGES_CLPBN_HORUS_WEIGHTEDBP_H_YAP_PACKAGES_CLPBN_HORUS_WEIGHTEDBP_H_136152,7843028 -# define ID_VOID_MAINID_VOID_MAIN142315,8179538 -# define COMPILER_ID COMPILER_ID142316,8179578 -# define SIMULATE_ID SIMULATE_ID142317,8179619 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142318,8179661 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142319,8179724 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142320,8179787 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142321,8179851 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK142322,8179915 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR142323,8179979 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR142324,8180043 -# define COMPILER_ID COMPILER_ID142325,8180107 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142326,8180149 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142327,8180213 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142328,8180277 -# define COMPILER_ID COMPILER_ID142329,8180342 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142330,8180384 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142331,8180448 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142332,8180512 -# define COMPILER_ID COMPILER_ID142333,8180576 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142334,8180618 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142335,8180682 -# define COMPILER_ID COMPILER_ID142336,8180746 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142337,8180788 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142338,8180852 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142339,8180916 -# define COMPILER_ID COMPILER_ID142340,8180981 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142341,8181023 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142342,8181087 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142343,8181151 -# define COMPILER_ID COMPILER_ID142344,8181216 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142345,8181258 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142346,8181323 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142347,8181388 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142348,8181453 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142349,8181518 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142350,8181583 -# define COMPILER_ID COMPILER_ID142351,8181648 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142352,8181690 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142353,8181754 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142354,8181818 -# define COMPILER_ID COMPILER_ID142355,8181882 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142356,8181924 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142357,8181988 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142358,8182052 -# define COMPILER_ID COMPILER_ID142359,8182117 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142360,8182160 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142361,8182225 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142362,8182290 -# define COMPILER_ID COMPILER_ID142363,8182355 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142364,8182398 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142365,8182463 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142366,8182528 -# define COMPILER_ID COMPILER_ID142367,8182593 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142368,8182636 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142369,8182701 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142370,8182766 -# define COMPILER_ID COMPILER_ID142371,8182831 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142372,8182874 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142373,8182939 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142374,8183004 -# define COMPILER_ID COMPILER_ID142375,8183070 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142376,8183113 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142377,8183178 -# define COMPILER_ID COMPILER_ID142378,8183243 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142379,8183286 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142380,8183351 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142381,8183416 -# define COMPILER_ID COMPILER_ID142382,8183481 -# define COMPILER_ID COMPILER_ID142383,8183524 -# define COMPILER_ID COMPILER_ID142384,8183567 -# define COMPILER_ID COMPILER_ID142385,8183610 -# define SIMULATE_ID SIMULATE_ID142386,8183653 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142387,8183697 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142388,8183762 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142389,8183827 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR142390,8183892 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR142391,8183958 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK142392,8184024 -# define COMPILER_ID COMPILER_ID142393,8184089 -# define SIMULATE_ID SIMULATE_ID142394,8184132 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142395,8184176 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142396,8184241 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142397,8184306 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR142398,8184371 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR142399,8184437 -# define COMPILER_ID COMPILER_ID142400,8184503 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142401,8184546 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142402,8184611 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142403,8184677 -# define COMPILER_ID COMPILER_ID142404,8184743 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142405,8184786 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142406,8184851 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142407,8184916 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142408,8184983 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK142409,8185050 -# define COMPILER_ID COMPILER_ID142410,8185116 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142411,8185159 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142412,8185224 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142413,8185289 -# define COMPILER_ID COMPILER_ID142414,8185354 -# define COMPILER_ID COMPILER_ID142415,8185397 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142416,8185440 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142417,8185507 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142418,8185574 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142419,8185641 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142420,8185708 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142421,8185775 -# define COMPILER_ID COMPILER_ID142422,8185842 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142423,8185885 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142424,8185951 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142425,8186017 -# define COMPILER_ID COMPILER_ID142426,8186083 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142427,8186126 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142428,8186192 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142429,8186258 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142430,8186324 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142431,8186390 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142432,8186456 -# define COMPILER_ID COMPILER_ID142433,8186522 -# define COMPILER_ID COMPILER_ID142434,8186565 -# define COMPILER_ID COMPILER_ID142435,8186608 -#define STRINGIFY_HELPER(STRINGIFY_HELPER142440,8186979 -#define STRINGIFY(STRINGIFY142441,8187031 -# define PLATFORM_ID PLATFORM_ID142442,8187069 -# define PLATFORM_ID PLATFORM_ID142443,8187113 -# define PLATFORM_ID PLATFORM_ID142444,8187157 -# define PLATFORM_ID PLATFORM_ID142445,8187201 -# define PLATFORM_ID PLATFORM_ID142446,8187245 -# define PLATFORM_ID PLATFORM_ID142447,8187289 -# define PLATFORM_ID PLATFORM_ID142448,8187333 -# define PLATFORM_ID PLATFORM_ID142449,8187377 -# define PLATFORM_ID PLATFORM_ID142450,8187421 -# define PLATFORM_ID PLATFORM_ID142451,8187465 -# define PLATFORM_ID PLATFORM_ID142452,8187509 -# define PLATFORM_ID PLATFORM_ID142453,8187553 -# define PLATFORM_ID PLATFORM_ID142454,8187597 -# define PLATFORM_ID PLATFORM_ID142455,8187641 -# define PLATFORM_ID PLATFORM_ID142456,8187685 -# define PLATFORM_ID PLATFORM_ID142457,8187729 -# define PLATFORM_ID PLATFORM_ID142458,8187773 -# define PLATFORM_ID PLATFORM_ID142459,8187817 -# define PLATFORM_ID PLATFORM_ID142460,8187861 -# define PLATFORM_ID PLATFORM_ID142461,8187905 -# define PLATFORM_ID PLATFORM_ID142462,8187949 -# define PLATFORM_ID PLATFORM_ID142463,8187993 -# define PLATFORM_ID PLATFORM_ID142464,8188037 -# define PLATFORM_ID PLATFORM_ID142465,8188081 -# define PLATFORM_ID PLATFORM_ID142466,8188125 -# define PLATFORM_ID PLATFORM_ID142467,8188169 -# define PLATFORM_ID PLATFORM_ID142468,8188214 -# define PLATFORM_ID PLATFORM_ID142469,8188259 -# define PLATFORM_ID PLATFORM_ID142470,8188304 -# define PLATFORM_ID PLATFORM_ID142471,8188349 -# define PLATFORM_ID PLATFORM_ID142472,8188394 -# define ARCHITECTURE_ID ARCHITECTURE_ID142473,8188438 -# define ARCHITECTURE_ID ARCHITECTURE_ID142474,8188491 -# define ARCHITECTURE_ID ARCHITECTURE_ID142475,8188544 -# define ARCHITECTURE_ID ARCHITECTURE_ID142476,8188597 -# define ARCHITECTURE_ID ARCHITECTURE_ID142477,8188651 -# define ARCHITECTURE_ID ARCHITECTURE_ID142478,8188705 -# define ARCHITECTURE_ID ARCHITECTURE_ID142479,8188759 -# define ARCHITECTURE_ID ARCHITECTURE_ID142480,8188812 -# define ARCHITECTURE_ID ARCHITECTURE_ID142481,8188865 -# define ARCHITECTURE_ID ARCHITECTURE_ID142482,8188918 -# define ARCHITECTURE_ID ARCHITECTURE_ID142483,8188971 -# define ARCHITECTURE_ID ARCHITECTURE_ID142484,8189024 -# define ARCHITECTURE_ID ARCHITECTURE_ID142485,8189077 -#define DEC(DEC142486,8189130 -#define HEX(HEX142487,8189157 -# define COMPILER_ID COMPILER_ID142497,8189746 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142498,8189787 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142499,8189850 -# define COMPILER_ID COMPILER_ID142500,8189913 -# define SIMULATE_ID SIMULATE_ID142501,8189954 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142502,8189996 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142503,8190059 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142504,8190122 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142505,8190186 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK142506,8190250 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR142507,8190315 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR142508,8190380 -# define COMPILER_ID COMPILER_ID142509,8190445 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142510,8190487 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142511,8190551 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142512,8190615 -# define COMPILER_ID COMPILER_ID142513,8190680 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142514,8190722 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142515,8190786 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142516,8190850 -# define COMPILER_ID COMPILER_ID142517,8190914 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142518,8190956 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142519,8191020 -# define COMPILER_ID COMPILER_ID142520,8191084 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142521,8191126 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142522,8191190 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142523,8191254 -# define COMPILER_ID COMPILER_ID142524,8191319 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142525,8191361 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142526,8191425 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142527,8191489 -# define COMPILER_ID COMPILER_ID142528,8191554 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142529,8191596 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142530,8191661 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142531,8191726 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142532,8191791 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142533,8191856 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142534,8191921 -# define COMPILER_ID COMPILER_ID142535,8191986 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142536,8192028 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142537,8192092 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142538,8192156 -# define COMPILER_ID COMPILER_ID142539,8192220 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142540,8192263 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142541,8192328 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142542,8192393 -# define COMPILER_ID COMPILER_ID142543,8192458 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142544,8192501 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142545,8192566 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142546,8192631 -# define COMPILER_ID COMPILER_ID142547,8192696 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142548,8192739 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142549,8192804 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142550,8192869 -# define COMPILER_ID COMPILER_ID142551,8192934 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142552,8192977 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142553,8193042 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142554,8193107 -# define COMPILER_ID COMPILER_ID142555,8193172 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142556,8193215 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142557,8193280 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142558,8193345 -# define COMPILER_ID COMPILER_ID142559,8193411 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142560,8193454 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142561,8193519 -# define COMPILER_ID COMPILER_ID142562,8193584 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142563,8193627 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142564,8193692 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142565,8193757 -# define COMPILER_ID COMPILER_ID142566,8193822 -# define COMPILER_ID COMPILER_ID142567,8193865 -# define COMPILER_ID COMPILER_ID142568,8193908 -# define SIMULATE_ID SIMULATE_ID142569,8193951 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142570,8193995 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142571,8194060 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142572,8194125 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR142573,8194190 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR142574,8194256 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK142575,8194322 -# define COMPILER_ID COMPILER_ID142576,8194387 -# define SIMULATE_ID SIMULATE_ID142577,8194430 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142578,8194474 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142579,8194539 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142580,8194604 -# define SIMULATE_VERSION_MAJOR SIMULATE_VERSION_MAJOR142581,8194669 -# define SIMULATE_VERSION_MINOR SIMULATE_VERSION_MINOR142582,8194735 -# define COMPILER_ID COMPILER_ID142583,8194801 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142584,8194844 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142585,8194909 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142586,8194975 -# define COMPILER_ID COMPILER_ID142587,8195041 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142588,8195084 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142589,8195149 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142590,8195214 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142591,8195281 -# define COMPILER_VERSION_TWEAK COMPILER_VERSION_TWEAK142592,8195348 -# define COMPILER_ID COMPILER_ID142593,8195414 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142594,8195457 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142595,8195522 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142596,8195587 -# define COMPILER_ID COMPILER_ID142597,8195652 -# define COMPILER_ID COMPILER_ID142598,8195695 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142599,8195738 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142600,8195805 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142601,8195872 - # define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142602,8195939 - # define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142603,8196006 - # define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142604,8196073 -# define COMPILER_ID COMPILER_ID142605,8196140 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142606,8196183 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142607,8196249 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142608,8196315 -# define COMPILER_VERSION_MAJOR COMPILER_VERSION_MAJOR142609,8196381 -# define COMPILER_VERSION_MINOR COMPILER_VERSION_MINOR142610,8196447 -# define COMPILER_VERSION_PATCH COMPILER_VERSION_PATCH142611,8196513 -# define COMPILER_ID COMPILER_ID142612,8196579 -# define COMPILER_ID COMPILER_ID142613,8196622 -# define COMPILER_ID COMPILER_ID142614,8196665 -#define STRINGIFY_HELPER(STRINGIFY_HELPER142619,8197036 -#define STRINGIFY(STRINGIFY142620,8197089 -# define PLATFORM_ID PLATFORM_ID142621,8197128 -# define PLATFORM_ID PLATFORM_ID142622,8197172 -# define PLATFORM_ID PLATFORM_ID142623,8197216 -# define PLATFORM_ID PLATFORM_ID142624,8197260 -# define PLATFORM_ID PLATFORM_ID142625,8197304 -# define PLATFORM_ID PLATFORM_ID142626,8197348 -# define PLATFORM_ID PLATFORM_ID142627,8197392 -# define PLATFORM_ID PLATFORM_ID142628,8197436 -# define PLATFORM_ID PLATFORM_ID142629,8197480 -# define PLATFORM_ID PLATFORM_ID142630,8197524 -# define PLATFORM_ID PLATFORM_ID142631,8197568 -# define PLATFORM_ID PLATFORM_ID142632,8197612 -# define PLATFORM_ID PLATFORM_ID142633,8197656 -# define PLATFORM_ID PLATFORM_ID142634,8197700 -# define PLATFORM_ID PLATFORM_ID142635,8197744 -# define PLATFORM_ID PLATFORM_ID142636,8197788 -# define PLATFORM_ID PLATFORM_ID142637,8197832 -# define PLATFORM_ID PLATFORM_ID142638,8197876 -# define PLATFORM_ID PLATFORM_ID142639,8197920 -# define PLATFORM_ID PLATFORM_ID142640,8197964 -# define PLATFORM_ID PLATFORM_ID142641,8198008 -# define PLATFORM_ID PLATFORM_ID142642,8198052 -# define PLATFORM_ID PLATFORM_ID142643,8198096 -# define PLATFORM_ID PLATFORM_ID142644,8198140 -# define PLATFORM_ID PLATFORM_ID142645,8198184 -# define PLATFORM_ID PLATFORM_ID142646,8198228 -# define PLATFORM_ID PLATFORM_ID142647,8198273 -# define PLATFORM_ID PLATFORM_ID142648,8198318 -# define PLATFORM_ID PLATFORM_ID142649,8198363 -# define PLATFORM_ID PLATFORM_ID142650,8198408 -# define PLATFORM_ID PLATFORM_ID142651,8198453 -# define ARCHITECTURE_ID ARCHITECTURE_ID142652,8198497 -# define ARCHITECTURE_ID ARCHITECTURE_ID142653,8198550 -# define ARCHITECTURE_ID ARCHITECTURE_ID142654,8198603 -# define ARCHITECTURE_ID ARCHITECTURE_ID142655,8198656 -# define ARCHITECTURE_ID ARCHITECTURE_ID142656,8198710 -# define ARCHITECTURE_ID ARCHITECTURE_ID142657,8198764 -# define ARCHITECTURE_ID ARCHITECTURE_ID142658,8198818 -# define ARCHITECTURE_ID ARCHITECTURE_ID142659,8198871 -# define ARCHITECTURE_ID ARCHITECTURE_ID142660,8198924 -# define ARCHITECTURE_ID ARCHITECTURE_ID142661,8198977 -# define ARCHITECTURE_ID ARCHITECTURE_ID142662,8199030 -# define ARCHITECTURE_ID ARCHITECTURE_ID142663,8199083 -# define ARCHITECTURE_ID ARCHITECTURE_ID142664,8199136 -#define DEC(DEC142665,8199189 -#define HEX(HEX142666,8199216 -#undef KEYKEY142675,8199756 -# define KEY KEY142676,8199776 -# define KEY KEY142677,8199799 -# define KEY KEY142678,8199824 -# define KEY KEY142679,8199849 -#define SIZE SIZE142680,8199874 -#undef KEYKEY142685,8200104 -# define KEY KEY142686,8200124 -# define KEY KEY142687,8200147 -# define KEY KEY142688,8200172 -# define KEY KEY142689,8200197 -#define SIZE SIZE142690,8200222 -#undef KEYKEY142695,8200446 -# define KEY KEY142696,8200466 -# define KEY KEY142697,8200489 -# define KEY KEY142698,8200514 -# define KEY KEY142699,8200539 -#define SIZE SIZE142700,8200564 -#undef KEYKEY142705,8200787 -# define KEY KEY142706,8200807 -# define KEY KEY142707,8200830 -# define KEY KEY142708,8200855 -# define KEY KEY142709,8200880 -#define SIZE SIZE142710,8200905 -#undef KEYKEY142715,8201127 -# define KEY KEY142716,8201147 -# define KEY KEY142717,8201170 -# define KEY KEY142718,8201195 -# define KEY KEY142719,8201220 -#define SIZE SIZE142720,8201245 -#undef KEYKEY142725,8201465 -# define KEY KEY142726,8201485 -# define KEY KEY142727,8201508 -# define KEY KEY142728,8201533 -# define KEY KEY142729,8201558 -#define SIZE SIZE142730,8201583 -#undef KEYKEY142735,8201805 -# define KEY KEY142736,8201825 -# define KEY KEY142737,8201848 -# define KEY KEY142738,8201873 -# define KEY KEY142739,8201898 -#define SIZE SIZE142740,8201923 -#undef KEYKEY142745,8202144 -# define KEY KEY142746,8202164 -# define KEY KEY142747,8202187 -# define KEY KEY142748,8202212 -# define KEY KEY142749,8202237 -#define SIZE SIZE142750,8202262 -#undef KEYKEY142755,8202487 -# define KEY KEY142756,8202507 -# define KEY KEY142757,8202530 -# define KEY KEY142758,8202555 -# define KEY KEY142759,8202580 -#define SIZE SIZE142760,8202605 -#undef KEYKEY142765,8202831 -# define KEY KEY142766,8202851 -# define KEY KEY142767,8202874 -# define KEY KEY142768,8202899 -# define KEY KEY142769,8202924 -#define SIZE SIZE142770,8202949 -#undef KEYKEY142775,8203179 -# define KEY KEY142776,8203199 -# define KEY KEY142777,8203222 -# define KEY KEY142778,8203247 -# define KEY KEY142779,8203272 -#define SIZE SIZE142780,8203297 -#undef KEYKEY142785,8203523 -# define KEY KEY142786,8203543 -# define KEY KEY142787,8203566 -# define KEY KEY142788,8203591 -# define KEY KEY142789,8203616 -#define SIZE SIZE142790,8203641 -#undef KEYKEY142795,8203864 -# define KEY KEY142796,8203884 -# define KEY KEY142797,8203907 -# define KEY KEY142798,8203932 -# define KEY KEY142799,8203957 -#define SIZE SIZE142800,8203982 -#undef KEYKEY142805,8204204 -# define KEY KEY142806,8204224 -# define KEY KEY142807,8204247 -# define KEY KEY142808,8204272 -# define KEY KEY142809,8204297 -#define SIZE SIZE142810,8204322 -#undef KEYKEY142815,8204546 -# define KEY KEY142816,8204566 -# define KEY KEY142817,8204589 -# define KEY KEY142818,8204614 -# define KEY KEY142819,8204639 -#define SIZE SIZE142820,8204664 -#define IsNumberDigit(IsNumberDigit143520,8256653 -#define IsSignDigit(IsSignDigit143521,8256700 -#define isOperator(isOperator143522,8256743 -#define freadline(freadline143523,8256784 -#define IsHigh(IsHigh143651,8264891 -#define IsLow(IsLow143652,8264924 -#define HIGH(HIGH143653,8264955 -#define LOW(LOW143654,8264984 -#define NOT(NOT143655,8265011 -#define GetIndex(GetIndex143656,8265038 -#define GetMVar(GetMVar143657,8265075 -#define GetVar(GetVar143658,8265110 -#define NewVar(NewVar143659,8265143 -#define KillBDD(KillBDD143660,8265176 -#define GetVarCount(GetVarCount143661,8265211 -#define DEBUGON DEBUGON143662,8265254 -#define DEBUGOFF DEBUGOFF143663,8265289 -#define RAPIDLOADON RAPIDLOADON143664,8265326 -#define RAPIDLOADOFF RAPIDLOADOFF143665,8265369 -#define SETMAXBUFSIZE(SETMAXBUFSIZE143666,8265414 -#define BDDFILE_ERROR BDDFILE_ERROR143667,8265461 -#define BDDFILE_OTHER BDDFILE_OTHER143668,8265508 -#define BDDFILE_SCRIPT BDDFILE_SCRIPT143669,8265555 -#define BDDFILE_NODEDUMP BDDFILE_NODEDUMP143670,8265604 -#define LOGZERO LOGZERO153749,8868163 -#define CACHE_SLOTS CACHE_SLOTS153750,8868195 -#define UNIQUE_SLOTS UNIQUE_SLOTS153751,8868235 -#define _BPREDS_H__BPREDS_H_157877,9154070 -#define CSSTREE_HCSSTREE_H157883,9154258 -#define divRoundUp(divRoundUp157884,9154291 -#define CSS_TREE_FANOUT CSS_TREE_FANOUT157885,9154328 -#define MAXARG MAXARG157932,9156247 -#define _DBIO_H__DBIO_H_158002,9159436 -#define _LISTA_H__LISTA_H_158015,9160791 -#define _MEMORY_H__MEMORY_H_158086,9163236 -#define _BPREDS_H__BPREDS_H_158089,9163303 -#define CSSTREE_HCSSTREE_H158092,9163376 -#define divRoundUp(divRoundUp158093,9163409 -#define CSS_TREE_FANOUT CSS_TREE_FANOUT158094,9163446 -#define MAXARG MAXARG158137,9165282 -#define _DBIO_H__DBIO_H_158175,9166903 -#define _LISTA_H__LISTA_H_158178,9166967 -#define _MEMORY_H__MEMORY_H_158249,9169416 -#define _PRED_H__PRED_H_158252,9169483 -#define DATALOG DATALOG158272,9170206 -#define NUM_T NUM_T158273,9170238 -#define INISIZE INISIZE158274,9170266 -#define BPOFFSET BPOFFSET158305,9172420 -#define SBG_EQ SBG_EQ158306,9172454 -#define SBG_GT SBG_GT158307,9172484 -#define SBG_LT SBG_LT158308,9172514 -#define SBG_GE SBG_GE158309,9172544 -#define SBG_LE SBG_LE158310,9172574 -#define SBG_DF SBG_DF158311,9172604 -#define _UNION2_H__UNION2_H_158314,9172669 -#define _PRED_H__PRED_H_158567,9183889 -#define DATALOG DATALOG158587,9184612 -#define NUM_T NUM_T158588,9184644 -#define INISIZE INISIZE158589,9184672 -#define BPOFFSET BPOFFSET158620,9186826 -#define SBG_EQ SBG_EQ158621,9186860 -#define SBG_GT SBG_GT158622,9186890 -#define SBG_LT SBG_LT158623,9186920 -#define SBG_GE SBG_GE158624,9186950 -#define SBG_LE SBG_LE158625,9186980 -#define SBG_DF SBG_DF158626,9187010 -#define _UNION2_H__UNION2_H_158674,9188403 -#define __GECODE_DISJUNCTOR_HH____GECODE_DISJUNCTOR_HH__169234,9773165 -#define DYNARRAY(DYNARRAY169324,9777437 -#define SPECARRAY(SPECARRAY169335,9778168 -#define SPECARRAYELEM(SPECARRAYELEM169336,9778205 -#define SPECARRAYDEREF(SPECARRAYDEREF169337,9778250 -#define SPECARRAY(SPECARRAY169338,9778297 -#define SPECARRAYELEM(SPECARRAYELEM169339,9778334 -#define SPECARRAYDEREF(SPECARRAYDEREF169340,9778379 -#define gecode_int_from_term gecode_int_from_term169451,9786548 -#define DYNARRAY(DYNARRAY171823,9936040 -#define SPECARRAY(SPECARRAY171834,9936771 -#define SPECARRAYELEM(SPECARRAYELEM171835,9936808 -#define SPECARRAYDEREF(SPECARRAYDEREF171836,9936853 -#define SPECARRAY(SPECARRAY171837,9936900 -#define SPECARRAYELEM(SPECARRAYELEM171838,9936937 -#define SPECARRAYDEREF(SPECARRAYDEREF171839,9936982 -#define gecode_int_from_term gecode_int_from_term172036,9952477 -#define DYNARRAY(DYNARRAY173131,10026715 -#define SPECARRAY(SPECARRAY173142,10027446 -#define SPECARRAYELEM(SPECARRAYELEM173143,10027483 -#define SPECARRAYDEREF(SPECARRAYDEREF173144,10027528 -#define SPECARRAY(SPECARRAY173145,10027575 -#define SPECARRAYELEM(SPECARRAYELEM173146,10027612 -#define SPECARRAYDEREF(SPECARRAYDEREF173147,10027657 - #define gecode_int_from_term gecode_int_from_term173361,10044450 - #define gecode_double_from_term gecode_double_from_term173362,10044514 -#define GIT_SHA1 GIT_SHA1174446,10118038 -#define JPL_C_LIB_VERSION JPL_C_LIB_VERSION175963,10229966 -#define JPL_C_LIB_VERSION_MAJOR JPL_C_LIB_VERSION_MAJOR175964,10230019 -#define JPL_C_LIB_VERSION_MINOR JPL_C_LIB_VERSION_MINOR175965,10230084 -#define JPL_C_LIB_VERSION_PATCH JPL_C_LIB_VERSION_PATCH175966,10230149 -#define JPL_C_LIB_VERSION_STATUS JPL_C_LIB_VERSION_STATUS175967,10230214 -#define DEBUG_LEVEL DEBUG_LEVEL175968,10230281 -#define JPL_DEBUG(JPL_DEBUG175969,10230322 -#define JPL_CACHE_TYPE_OF_REF JPL_CACHE_TYPE_OF_REF175970,10230359 -#define SIZEOF_WCHAR_T SIZEOF_WCHAR_T175971,10230421 -#define SIZEOF_LONG SIZEOF_LONG175972,10230472 -#define SIZEOF_LONG_LONG SIZEOF_LONG_LONG175973,10230517 -#define SIZEOF_VOIDP SIZEOF_VOIDP175974,10230572 -#define SIZEOF_VOIDP SIZEOF_VOIDP175975,10230619 -#define Sdprintf(Sdprintf175976,10230666 -#define pthread_mutex_lock(pthread_mutex_lock175977,10230701 -#define pthread_mutex_unlock(pthread_mutex_unlock175978,10230756 -#define pthread_cond_signal(pthread_cond_signal175979,10230815 -#define pthread_cond_wait(pthread_cond_wait175980,10230873 -#define TRUE TRUE175981,10230927 -#define FALSE FALSE175982,10230955 -#define JNI_MIN_JCHAR JNI_MIN_JCHAR175983,10230985 -#define JNI_MAX_JCHAR JNI_MAX_JCHAR175984,10231035 -#define JNI_MIN_JBYTE JNI_MIN_JBYTE175985,10231085 -#define JNI_MAX_JBYTE JNI_MAX_JBYTE175986,10231135 -#define JNI_MIN_JSHORT JNI_MIN_JSHORT175987,10231185 -#define JNI_MAX_JSHORT JNI_MAX_JSHORT175988,10231237 -#define JNI_XPUT_VOID JNI_XPUT_VOID175989,10231289 -#define JNI_XPUT_BOOLEAN JNI_XPUT_BOOLEAN175990,10231339 -#define JNI_XPUT_BYTE JNI_XPUT_BYTE175991,10231395 -#define JNI_XPUT_CHAR JNI_XPUT_CHAR175992,10231445 -#define JNI_XPUT_SHORT JNI_XPUT_SHORT175993,10231495 -#define JNI_XPUT_INT JNI_XPUT_INT175994,10231547 -#define JNI_XPUT_LONG JNI_XPUT_LONG175995,10231595 -#define JNI_XPUT_FLOAT JNI_XPUT_FLOAT175996,10231645 -#define JNI_XPUT_DOUBLE JNI_XPUT_DOUBLE175997,10231697 -#define JNI_XPUT_FLOAT_TO_DOUBLE JNI_XPUT_FLOAT_TO_DOUBLE175998,10231751 -#define JNI_XPUT_LONG_TO_FLOAT JNI_XPUT_LONG_TO_FLOAT175999,10231823 -#define JNI_XPUT_LONG_TO_DOUBLE JNI_XPUT_LONG_TO_DOUBLE176000,10231891 -#define JNI_XPUT_REF JNI_XPUT_REF176001,10231961 -#define JNI_XPUT_ATOM JNI_XPUT_ATOM176002,10232009 -#define JNI_XPUT_JVALUEP JNI_XPUT_JVALUEP176003,10232059 -#define JNI_XPUT_JVALUE JNI_XPUT_JVALUE176004,10232115 -#define JNI_HR_LOAD_FACTOR JNI_HR_LOAD_FACTOR176005,10232169 -#define JNI_HR_ADD_FAIL JNI_HR_ADD_FAIL176006,10232229 -#define JNI_HR_ADD_NEW JNI_HR_ADD_NEW176007,10232283 -#define JNI_HR_ADD_OLD JNI_HR_ADD_OLD176008,10232335 -#define JPL_INIT_RAW JPL_INIT_RAW176009,10232387 -#define JPL_INIT_PVM_MAYBE JPL_INIT_PVM_MAYBE176010,10232435 -#define JPL_INIT_OK JPL_INIT_OK176011,10232495 -#define JPL_INIT_JPL_FAILED JPL_INIT_JPL_FAILED176012,10232541 -#define JPL_INIT_PVM_FAILED JPL_INIT_PVM_FAILED176013,10232603 -#define JPL_MAX_POOL_ENGINES JPL_MAX_POOL_ENGINES176014,10232665 -#define JPL_INITIAL_POOL_ENGINES JPL_INITIAL_POOL_ENGINES176015,10232729 -#define JNI_term_to_jboolean(JNI_term_to_jboolean176016,10232801 -#define JNI_term_to_jchar(JNI_term_to_jchar176017,10232861 -#define JNI_term_to_jbyte(JNI_term_to_jbyte176018,10232915 -#define JNI_term_to_jshort(JNI_term_to_jshort176019,10232969 -#define JNI_term_to_jint(JNI_term_to_jint176020,10233025 -#define JNI_term_to_non_neg_jint(JNI_term_to_non_neg_jint176021,10233077 -#define JNI_term_to_jlong(JNI_term_to_jlong176022,10233145 -#define JNI_term_to_jfloat(JNI_term_to_jfloat176023,10233199 -#define JNI_term_to_jdouble(JNI_term_to_jdouble176024,10233255 -#define JNI_term_to_jfieldID(JNI_term_to_jfieldID176025,10233313 -#define JNI_term_to_jmethodID(JNI_term_to_jmethodID176026,10233373 -#define JNI_term_to_ref(JNI_term_to_ref176027,10233435 -#define JNI_term_to_jobject(JNI_term_to_jobject176028,10233485 -#define JNI_term_to_jclass(JNI_term_to_jclass176029,10233543 -#define JNI_term_to_throwable_jclass(JNI_term_to_throwable_jclass176030,10233599 -#define JNI_term_to_non_array_jclass(JNI_term_to_non_array_jclass176031,10233675 -#define JNI_term_to_throwable_jobject(JNI_term_to_throwable_jobject176032,10233751 -#define JNI_term_to_jstring(JNI_term_to_jstring176033,10233829 -#define JNI_term_to_jarray(JNI_term_to_jarray176034,10233887 -#define JNI_term_to_object_jarray(JNI_term_to_object_jarray176035,10233943 -#define JNI_term_to_boolean_jarray(JNI_term_to_boolean_jarray176036,10234013 -#define JNI_term_to_byte_jarray(JNI_term_to_byte_jarray176037,10234085 -#define JNI_term_to_char_jarray(JNI_term_to_char_jarray176038,10234151 -#define JNI_term_to_short_jarray(JNI_term_to_short_jarray176039,10234217 -#define JNI_term_to_int_jarray(JNI_term_to_int_jarray176040,10234285 -#define JNI_term_to_long_jarray(JNI_term_to_long_jarray176041,10234349 -#define JNI_term_to_float_jarray(JNI_term_to_float_jarray176042,10234415 -#define JNI_term_to_double_jarray(JNI_term_to_double_jarray176043,10234483 -#define JNI_term_to_jbuf(JNI_term_to_jbuf176044,10234553 -#define JNI_term_to_charP(JNI_term_to_charP176045,10234605 -#define JNI_term_to_pointer(JNI_term_to_pointer176046,10234659 -#define JNI_unify_void(JNI_unify_void176047,10234717 -#define JNI_unify_false(JNI_unify_false176048,10234765 -#define JNI_unify_true(JNI_unify_true176049,10234816 -#define JNI_jboolean_to_term(JNI_jboolean_to_term176050,10234865 -#define JNI_jchar_to_term(JNI_jchar_to_term176051,10234926 -#define JNI_jbyte_to_term(JNI_jbyte_to_term176052,10234981 -#define JNI_jshort_to_term(JNI_jshort_to_term176053,10235036 -#define JNI_jint_to_term(JNI_jint_to_term176054,10235093 -#define JNI_jlong_to_term(JNI_jlong_to_term176055,10235146 -#define JNI_jfloat_to_term(JNI_jfloat_to_term176056,10235201 -#define JNI_jdouble_to_term(JNI_jdouble_to_term176057,10235258 -#define JNI_jobject_to_term(JNI_jobject_to_term176058,10235317 -#define JNI_jfieldID_to_term(JNI_jfieldID_to_term176059,10235376 -#define JNI_jmethodID_to_term(JNI_jmethodID_to_term176060,10235437 -#define JNI_jbuf_to_term(JNI_jbuf_to_term176061,10235500 -#define JNI_pointer_to_term(JNI_pointer_to_term176062,10235553 -#define JNI_charP_to_term(JNI_charP_to_term176063,10235612 -#define jni_ensure_jvm(jni_ensure_jvm176064,10235667 -#define jpl_ensure_jpl_init(jpl_ensure_jpl_init176065,10235716 -#define jpl_ensure_pvm_init(jpl_ensure_pvm_init176066,10235776 -#define IREF_FMT IREF_FMT176168,10243729 -#define IREF_INTTYPE IREF_INTTYPE176169,10243766 -#define MAX_JVM_OPTIONS MAX_JVM_OPTIONS176202,10245770 -#define __MYDDAS_H____MYDDAS_H__178932,10416393 -#define MYDDAS_MEMORY_MALLOC_NR(MYDDAS_MEMORY_MALLOC_NR178938,10416809 -#define MYDDAS_MEMORY_MALLOC_SIZE(MYDDAS_MEMORY_MALLOC_SIZE178939,10416873 -#define MYDDAS_MEMORY_FREE_NR(MYDDAS_MEMORY_FREE_NR178940,10416941 -#define MYDDAS_MEMORY_FREE_SIZE(MYDDAS_MEMORY_FREE_SIZE178941,10417001 -#define stringify(stringify178969,10418946 -#define _stringify(_stringify178970,10418985 -#undef stringifystringify178971,10419026 -#undef _stringify_stringify178972,10419063 -#define CALL_SQLITE(CALL_SQLITE178976,10419233 -#define CALL_SQLITE_EXPECT(CALL_SQLITE_EXPECT178977,10419273 -#define IS_SQL_INT(IS_SQL_INT178978,10419328 -#define IS_SQL_FLOAT(IS_SQL_FLOAT178979,10419367 -#define IS_SQL_GEOMETRY(IS_SQL_GEOMETRY178980,10419410 -#define __MYDDAS_STATISTICS_H____MYDDAS_STATISTICS_H__179016,10422180 -#define MYDDAS_STATS_TIME_HOURS(MYDDAS_STATS_TIME_HOURS179017,10422241 -#define MYDDAS_STATS_TIME_MINUTES(MYDDAS_STATS_TIME_MINUTES179018,10422303 -#define MYDDAS_STATS_TIME_SECONDS(MYDDAS_STATS_TIME_SECONDS179019,10422370 -#define MYDDAS_STATS_TIME_MILISECONDS(MYDDAS_STATS_TIME_MILISECONDS179020,10422437 -#define MYDDAS_STATS_TIME_MICROSECONDS(MYDDAS_STATS_TIME_MICROSECONDS179021,10422512 -#define MYDDAS_STATS_PRINT_TIME_STRUCT(MYDDAS_STATS_PRINT_TIME_STRUCT179022,10422590 -#define MYDDAS_STATS_INITIALIZE_TIME_STRUCT(MYDDAS_STATS_INITIALIZE_TIME_STRUCT179023,10422668 -#define MYDDAS_STATS_CON_GET_TOTAL_TIME_DBSERVER(MYDDAS_STATS_CON_GET_TOTAL_TIME_DBSERVER179024,10422756 -#define MYDDAS_STATS_CON_GET_TOTAL_TIME_DBSERVER_COUNT(MYDDAS_STATS_CON_GET_TOTAL_TIME_DBSERVER_COUNT179025,10422855 -#define MYDDAS_STATS_CON_SET_TOTAL_TIME_DBSERVER_COUNT(MYDDAS_STATS_CON_SET_TOTAL_TIME_DBSERVER_COUNT179026,10422966 -#define MYDDAS_STATS_CON_GET_LAST_TIME_DBSERVER(MYDDAS_STATS_CON_GET_LAST_TIME_DBSERVER179027,10423077 -#define MYDDAS_STATS_CON_GET_LAST_TIME_DBSERVER_COUNT(MYDDAS_STATS_CON_GET_LAST_TIME_DBSERVER_COUNT179028,10423174 -#define MYDDAS_STATS_CON_SET_LAST_TIME_DBSERVER_COUNT(MYDDAS_STATS_CON_SET_LAST_TIME_DBSERVER_COUNT179029,10423283 -#define MYDDAS_STATS_CON_GET_TOTAL_TIME_TRANSFERING(MYDDAS_STATS_CON_GET_TOTAL_TIME_TRANSFERING179030,10423392 -#define MYDDAS_STATS_CON_GET_TOTAL_TIME_TRANSFERING_COUNT(MYDDAS_STATS_CON_GET_TOTAL_TIME_TRANSFERING_COUNT179031,10423497 -#define MYDDAS_STATS_CON_SET_TOTAL_TIME_TRANSFERING_COUNT(MYDDAS_STATS_CON_SET_TOTAL_TIME_TRANSFERING_COUNT179032,10423614 -#define MYDDAS_STATS_CON_GET_LAST_TIME_TRANSFERING(MYDDAS_STATS_CON_GET_LAST_TIME_TRANSFERING179033,10423731 -#define MYDDAS_STATS_CON_GET_LAST_TIME_TRANSFERING_COUNT(MYDDAS_STATS_CON_GET_LAST_TIME_TRANSFERING_COUNT179034,10423834 -#define MYDDAS_STATS_CON_SET_LAST_TIME_TRANSFERING_COUNT(MYDDAS_STATS_CON_SET_LAST_TIME_TRANSFERING_COUNT179035,10423949 -#define MYDDAS_STATS_CON_GET_TOTAL_ROWS(MYDDAS_STATS_CON_GET_TOTAL_ROWS179036,10424064 -#define MYDDAS_STATS_CON_SET_TOTAL_ROWS(MYDDAS_STATS_CON_SET_TOTAL_ROWS179037,10424145 -#define MYDDAS_STATS_CON_GET_TOTAL_ROWS_COUNT(MYDDAS_STATS_CON_GET_TOTAL_ROWS_COUNT179038,10424226 -#define MYDDAS_STATS_CON_SET_TOTAL_ROWS_COUNT(MYDDAS_STATS_CON_SET_TOTAL_ROWS_COUNT179039,10424319 -#define MYDDAS_STATS_CON_GET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER(MYDDAS_STATS_CON_GET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER179040,10424412 -#define MYDDAS_STATS_CON_SET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER(MYDDAS_STATS_CON_SET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER179041,10424547 -#define MYDDAS_STATS_CON_GET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER_COUNT(MYDDAS_STATS_CON_GET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER_COUNT179042,10424682 -#define MYDDAS_STATS_CON_SET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER_COUNT(MYDDAS_STATS_CON_SET_TOTAL_BYTES_TRANSFERING_FROM_DBSERVER_COUNT179043,10424829 -#define MYDDAS_STATS_CON_GET_LAST_BYTES_TRANSFERING_FROM_DBSERVER(MYDDAS_STATS_CON_GET_LAST_BYTES_TRANSFERING_FROM_DBSERVER179044,10424976 -#define MYDDAS_STATS_CON_SET_LAST_BYTES_TRANSFERING_FROM_DBSERVER(MYDDAS_STATS_CON_SET_LAST_BYTES_TRANSFERING_FROM_DBSERVER179045,10425109 -#define MYDDAS_STATS_CON_GET_LAST_BYTES_TRANSFERING_FROM_DBSERVER_COUNT(MYDDAS_STATS_CON_GET_LAST_BYTES_TRANSFERING_FROM_DBSERVER_COUNT179046,10425242 -#define MYDDAS_STATS_CON_SET_LAST_BYTES_TRANSFERING_FROM_DBSERVER_COUNT(MYDDAS_STATS_CON_SET_LAST_BYTES_TRANSFERING_FROM_DBSERVER_COUNT179047,10425387 -#define MYDDAS_STATS_CON_GET_NUMBER_QUERIES_MADE(MYDDAS_STATS_CON_GET_NUMBER_QUERIES_MADE179048,10425532 -#define MYDDAS_STATS_CON_SET_NUMBER_QUERIES_MADE(MYDDAS_STATS_CON_SET_NUMBER_QUERIES_MADE179049,10425632 -#define MYDDAS_STATS_CON_GET_NUMBER_QUERIES_MADE_COUNT(MYDDAS_STATS_CON_GET_NUMBER_QUERIES_MADE_COUNT179050,10425732 -#define MYDDAS_STATS_CON_SET_NUMBER_QUERIES_MADE_COUNT(MYDDAS_STATS_CON_SET_NUMBER_QUERIES_MADE_COUNT179051,10425844 -#define MYDDAS_STATS_GET_DB_ROW_FUNCTION(MYDDAS_STATS_GET_DB_ROW_FUNCTION179052,10425956 -#define MYDDAS_STATS_GET_DB_ROW_FUNCTION_COUNT(MYDDAS_STATS_GET_DB_ROW_FUNCTION_COUNT179053,10426040 -#define MYDDAS_STATS_SET_DB_ROW_FUNCTION_COUNT(MYDDAS_STATS_SET_DB_ROW_FUNCTION_COUNT179054,10426136 -#define MYDDAS_STATS_GET_TRANSLATE(MYDDAS_STATS_GET_TRANSLATE179055,10426232 -#define MYDDAS_STATS_GET_TRANSLATE_COUNT(MYDDAS_STATS_GET_TRANSLATE_COUNT179056,10426304 -#define MYDDAS_STATS_SET_TRANSLATE_COUNT(MYDDAS_STATS_SET_TRANSLATE_COUNT179057,10426388 -#define __MYDDAS_STATISTICS_STRUCTS_H____MYDDAS_STATISTICS_STRUCTS_H__179060,10426523 -#define __MYDDAS_STRUCTS_H____MYDDAS_STRUCTS_H__179114,10429464 -#define MYDDAS_TYPES_H MYDDAS_TYPES_H179194,10434149 -#define MYDDAS_MALLOC(MYDDAS_MALLOC179234,10436564 -#define MYDDAS_MALLOC(MYDDAS_MALLOC179235,10436609 -#define MYDDAS_FREE(MYDDAS_FREE179236,10436654 -#define MYDDAS_FREE(MYDDAS_FREE179237,10436696 -#define IS_SQL_INT(IS_SQL_INT179268,10438795 -#define IS_SQL_FLOAT(IS_SQL_FLOAT179269,10438833 -#define IS_SQL_GEOMETRY(IS_SQL_GEOMETRY179270,10438876 -#define MYDDAS_WKB_H_MYDDAS_WKB_H_179296,10440437 -#define WKBXDR WKBXDR179299,10440548 -#define WKBNDR WKBNDR179300,10440576 -#define WKBMINTYPE WKBMINTYPE179301,10440605 -#define WKBPOINT WKBPOINT179302,10440643 -#define WKBLINESTRING WKBLINESTRING179303,10440677 -#define WKBPOLYGON WKBPOLYGON179304,10440721 -#define WKBMULTIPOINT WKBMULTIPOINT179305,10440759 -#define WKBMULTILINESTRING WKBMULTILINESTRING179306,10440803 -#define WKBMULTIPOLYGON WKBMULTIPOLYGON179307,10440857 -#define WKBGEOMETRYCOLLECTION WKBGEOMETRYCOLLECTION179308,10440905 -#define WKBMAXTYPE WKBMAXTYPE179309,10440965 -#define WKBGEOMETRY WKBGEOMETRY179310,10441003 -# define MYDDAS_WKB2PROLOG_H_MYDDAS_WKB2PROLOG_H_179329,10441910 -#define SQLFETCH(SQLFETCH179344,10443017 -#define IS_SQL_INT(IS_SQL_INT179350,10443520 -#define IS_SQL_FLOAT(IS_SQL_FLOAT179351,10443560 -#define BOOLOID BOOLOID180637,10539958 -#define BYTEOID BYTEOID180638,10539998 -#define CHAROID CHAROID180639,10540038 -#define NAMEOID NAMEOID180640,10540078 -#define INT8OID INT8OID180641,10540118 -#define INT2OID INT2OID180642,10540158 -#define INT2VECTOROID INT2VECTOROID180643,10540198 -#define INT4OID INT4OID180644,10540250 -#define REGPROCOID REGPROCOID180645,10540290 -#define TEXTOID TEXTOID180646,10540336 -#define OIDOID OIDOID180647,10540376 -#define TIDOID TIDOID180648,10540414 -#define XIDOID XIDOID180649,10540452 -#define CIDOID CIDOID180650,10540491 -#define OIDVECTOROID OIDVECTOROID180651,10540530 -#define JSONOID JSONOID180652,10540581 -#define XMLOID XMLOID180653,10540622 -#define PGNODETREEOID PGNODETREEOID180654,10540661 -#define POINTOID POINTOID180655,10540714 -#define LSEGOID LSEGOID180656,10540757 -#define PATHOID PATHOID180657,10540798 -#define BOXOID BOXOID180658,10540839 -#define POLYGONOID POLYGONOID180659,10540878 -#define LINEOID LINEOID180660,10540925 -#define FLOAT4OID FLOAT4OID180661,10540966 -#define FLOAT8OID FLOAT8OID180662,10541011 -#define ABSTIMEOID ABSTIMEOID180663,10541056 -#define RELTIMEOID RELTIMEOID180664,10541103 -#define TINTERVALOID TINTERVALOID180665,10541150 -#define UNKNOWNOID UNKNOWNOID180666,10541201 -#define CIRCLEOID CIRCLEOID180667,10541248 -#define CASHOID CASHOID180668,10541293 -#define MACADDROID MACADDROID180669,10541334 -#define INETOID INETOID180670,10541381 -#define CIDROID CIDROID180671,10541422 -#define INT2ARRAYOID INT2ARRAYOID180672,10541463 -#define INT4ARRAYOID INT4ARRAYOID180673,10541514 -#define TEXTARRAYOID TEXTARRAYOID180674,10541565 -#define OIDARRAYOID OIDARRAYOID180675,10541616 -#define FLOAT4ARRAYOID FLOAT4ARRAYOID180676,10541665 -#define ACLITEMOID ACLITEMOID180677,10541720 -#define CSTRINGARRAYOID CSTRINGARRAYOID180678,10541767 -#define BPCHAROID BPCHAROID180679,10541824 -#define VARCHAROID VARCHAROID180680,10541869 -#define DATEOID DATEOID180681,10541916 -#define TIMEOID TIMEOID180682,10541957 -#define TIMESTAMPOID TIMESTAMPOID180683,10541998 -#define TIMESTAMPTZOID TIMESTAMPTZOID180684,10542049 -#define INTERVALOID INTERVALOID180685,10542104 -#define TIMETZOID TIMETZOID180686,10542153 -#define BITOID BITOID180687,10542198 -#define VARBITOID VARBITOID180688,10542237 -#define NUMERICOID NUMERICOID180689,10542282 -#define REFCURSOROID REFCURSOROID180690,10542329 -#define REGPROCEDUREOID REGPROCEDUREOID180691,10542380 -#define REGOPEROID REGOPEROID180692,10542437 -#define REGOPERATOROID REGOPERATOROID180693,10542484 -#define REGCLASSOID REGCLASSOID180694,10542539 -#define REGTYPEOID REGTYPEOID180695,10542588 -#define REGTYPEARRAYOID REGTYPEARRAYOID180696,10542635 -#define UUIDOID UUIDOID180697,10542692 -#define LSNOID LSNOID180698,10542733 -#define TSVECTOROID TSVECTOROID180699,10542772 -#define GTSVECTOROID GTSVECTOROID180700,10542821 -#define TSQUERYOID TSQUERYOID180701,10542872 -#define REGCONFIGOID REGCONFIGOID180702,10542919 -#define REGDICTIONARYOID REGDICTIONARYOID180703,10542970 -#define JSONBOID JSONBOID180704,10543029 -#define INT4RANGEOID INT4RANGEOID180705,10543072 -#define RECORDOID RECORDOID180706,10543123 -#define RECORDARRAYOID RECORDARRAYOID180707,10543168 -#define CSTRINGOID CSTRINGOID180708,10543223 -#define ANYOID ANYOID180709,10543270 -#define ANYARRAYOID ANYARRAYOID180710,10543309 -#define VOIDOID VOIDOID180711,10543358 -#define TRIGGEROID TRIGGEROID180712,10543399 -#define EVTTRIGGEROID EVTTRIGGEROID180713,10543446 -#define LANGUAGE_HANDLEROID LANGUAGE_HANDLEROID180714,10543499 -#define INTERNALOID INTERNALOID180715,10543564 -#define OPAQUEOID OPAQUEOID180716,10543614 -#define ANYELEMENTOID ANYELEMENTOID180717,10543660 -#define ANYNONARRAYOID ANYNONARRAYOID180718,10543714 -#define ANYENUMOID ANYENUMOID180719,10543770 -#define FDW_HANDLEROID FDW_HANDLEROID180720,10543818 -#define ANYRANGEOID ANYRANGEOID180721,10543874 -#define CALL_POSTGRES(CALL_POSTGRES180722,10543924 -#define GET_POSTGRES(GET_POSTGRES180723,10543970 -#define cvt(cvt180755,10545764 -# define MYDDAS_WKB2PROLOG_H_MYDDAS_WKB2PROLOG_H_180764,10546209 -#define CALL_SQLITE(CALL_SQLITE180769,10546347 -#define CALL_SQLITE_EXPECT(CALL_SQLITE_EXPECT180770,10546387 -#define NATIVEHELPER_ALOGPRIV_H_NATIVEHELPER_ALOGPRIV_H_180811,10548825 -#define LOG_NDEBUG LOG_NDEBUG180812,10548890 -#define LOG_NDEBUG LOG_NDEBUG180813,10548928 -#define ALOG(ALOG180814,10548966 -#define ALOGV(ALOGV180815,10548993 -#define ALOGV(ALOGV180816,10549022 -#define ALOGD(ALOGD180817,10549051 -#define ALOGI(ALOGI180818,10549080 -#define ALOGW(ALOGW180819,10549109 -#define ALOGE(ALOGE180820,10549138 -#define LOG_FATAL_IF(LOG_FATAL_IF180821,10549167 -#define _ANDROID_DATABASE_SQLITE_COMMON_H_ANDROID_DATABASE_SQLITE_COMMON_H180842,10550720 -#define SQLITE_LOG_TAG SQLITE_LOG_TAG180843,10550803 -#define SQLITE_TRACE_TAG SQLITE_TRACE_TAG180844,10550849 -#define SQLITE_PROFILE_TAG SQLITE_PROFILE_TAG180845,10550899 -#define LOG_TAG LOG_TAG180849,10551082 -#define UTF16_STORAGE UTF16_STORAGE180850,10551114 -#define FIND_CLASS(FIND_CLASS180998,10563292 -#define GET_METHOD_ID(GET_METHOD_ID180999,10563333 -#define GET_FIELD_ID(GET_FIELD_ID181000,10563380 -#define LOG_TAG LOG_TAG181006,10563848 -#define FIND_CLASS(FIND_CLASS181020,10564778 -#define GET_FIELD_ID(GET_FIELD_ID181021,10564817 -#define LOG_TAG LOG_TAG181026,10565159 -#define LOG_TAG LOG_TAG181042,10566313 -#define LOG_TAG LOG_TAG181150,10573704 -#define JNI_H_JNI_H_181182,10576175 -#define CALL_TYPE_METHOD(CALL_TYPE_METHOD181806,10634877 -#define CALL_TYPE_METHODV(CALL_TYPE_METHODV181807,10634930 -#define CALL_TYPE_METHODA(CALL_TYPE_METHODA181808,10634985 -#define CALL_TYPE(CALL_TYPE181809,10635040 -#define CALL_NONVIRT_TYPE_METHOD(CALL_NONVIRT_TYPE_METHOD181816,10635672 -#define CALL_NONVIRT_TYPE_METHODV(CALL_NONVIRT_TYPE_METHODV181817,10635741 -#define CALL_NONVIRT_TYPE_METHODA(CALL_NONVIRT_TYPE_METHODA181818,10635812 -#define CALL_NONVIRT_TYPE(CALL_NONVIRT_TYPE181819,10635883 -#define CALL_STATIC_TYPE_METHOD(CALL_STATIC_TYPE_METHOD181866,10640219 -#define CALL_STATIC_TYPE_METHODV(CALL_STATIC_TYPE_METHODV181867,10640286 -#define CALL_STATIC_TYPE_METHODA(CALL_STATIC_TYPE_METHODA181868,10640355 -#define CALL_STATIC_TYPE(CALL_STATIC_TYPE181869,10640424 -#define JNIIMPORTJNIIMPORT182108,10662389 -#define JNIEXPORT JNIEXPORT182109,10662428 -#define JNICALLJNICALL182110,10662468 -#define JNI_FALSE JNI_FALSE182111,10662503 -#define JNI_TRUE JNI_TRUE182112,10662543 -#define JNI_VERSION_1_1 JNI_VERSION_1_1182113,10662581 -#define JNI_VERSION_1_2 JNI_VERSION_1_2182114,10662633 -#define JNI_VERSION_1_4 JNI_VERSION_1_4182115,10662685 -#define JNI_VERSION_1_6 JNI_VERSION_1_6182116,10662737 -#define JNI_OK JNI_OK182117,10662789 -#define JNI_ERR JNI_ERR182118,10662823 -#define JNI_EDETACHED JNI_EDETACHED182119,10662859 -#define JNI_EVERSION JNI_EVERSION182120,10662907 -#define JNI_COMMIT JNI_COMMIT182121,10662953 -#define JNI_ABORT JNI_ABORT182122,10662995 -#define JNI_CONSTANTS_H_includedJNI_CONSTANTS_H_included182125,10663117 -#define NATIVE_METHOD(NATIVE_METHOD182229,10670033 -#define NATIVEHELPER_JNIHELP_H_NATIVEHELPER_JNIHELP_H_182232,10670155 -# define NELEM(NELEM182233,10670218 -#define TEMP_FAILURE_RETRY(TEMP_FAILURE_RETRY182245,10671475 -#define SCOPED_LOCAL_REF_H_includedSCOPED_LOCAL_REF_H_included182248,10671614 -#define SQLITE_CORE SQLITE_CORE183812,10805695 -#define SQLITE_AMALGAMATION SQLITE_AMALGAMATION183813,10805736 -# define SQLITE_PRIVATE SQLITE_PRIVATE183814,10805793 -#define _SQLITEINT_H__SQLITEINT_H_183815,10805841 -# define _CRT_RAND_S_CRT_RAND_S183816,10805885 -#define _MSVC_H__MSVC_H_183817,10805927 -#define OS_VXWORKS OS_VXWORKS183818,10805962 -#define SQLITE_OS_OTHER SQLITE_OS_OTHER183819,10806002 -#define SQLITE_HOMEGROWN_RECURSIVE_MUTEX SQLITE_HOMEGROWN_RECURSIVE_MUTEX183820,10806052 -#define SQLITE_OMIT_LOAD_EXTENSION SQLITE_OMIT_LOAD_EXTENSION183821,10806136 -#define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE183822,10806208 -#define HAVE_UTIME HAVE_UTIME183823,10806282 -#define OS_VXWORKS OS_VXWORKS183824,10806322 -#define HAVE_FCHOWN HAVE_FCHOWN183825,10806362 -#define HAVE_READLINK HAVE_READLINK183826,10806404 -#define HAVE_LSTAT HAVE_LSTAT183827,10806450 -# define _LARGE_FILE _LARGE_FILE183828,10806490 -# define _FILE_OFFSET_BITS _FILE_OFFSET_BITS183829,10806533 -# define _LARGEFILE_SOURCE _LARGEFILE_SOURCE183830,10806590 -# define GCC_VERSION GCC_VERSION183831,10806645 -# define GCC_VERSION GCC_VERSION183832,10806688 -# define _GNU_SOURCE_GNU_SOURCE183833,10806731 -# define _BSD_SOURCE_BSD_SOURCE183834,10806773 -# define _USE_32BIT_TIME_T_USE_32BIT_TIME_T183835,10806815 -#define _SQLITE3_H__SQLITE3_H_183836,10806869 -# define SQLITE_EXTERN SQLITE_EXTERN183837,10806911 -# define SQLITE_APISQLITE_API183838,10806959 -# define SQLITE_CDECLSQLITE_CDECL183839,10807000 -# define SQLITE_STDCALLSQLITE_STDCALL183840,10807045 -#define SQLITE_DEPRECATEDSQLITE_DEPRECATED183841,10807094 -#define SQLITE_EXPERIMENTALSQLITE_EXPERIMENTAL183842,10807148 -# undef SQLITE_VERSIONSQLITE_VERSION183843,10807206 -# undef SQLITE_VERSION_NUMBERSQLITE_VERSION_NUMBER183844,10807254 -#define SQLITE_VERSION SQLITE_VERSION183845,10807316 -#define SQLITE_VERSION_NUMBER SQLITE_VERSION_NUMBER183846,10807365 -#define SQLITE_SOURCE_ID SQLITE_SOURCE_ID183847,10807428 -# define double double183858,10808133 -#define SQLITE_OK SQLITE_OK183860,10808253 -#define SQLITE_ERROR SQLITE_ERROR183861,10808292 -#define SQLITE_INTERNAL SQLITE_INTERNAL183862,10808337 -#define SQLITE_PERM SQLITE_PERM183863,10808388 -#define SQLITE_ABORT SQLITE_ABORT183864,10808431 -#define SQLITE_BUSY SQLITE_BUSY183865,10808476 -#define SQLITE_LOCKED SQLITE_LOCKED183866,10808519 -#define SQLITE_NOMEM SQLITE_NOMEM183867,10808566 -#define SQLITE_READONLY SQLITE_READONLY183868,10808611 -#define SQLITE_INTERRUPT SQLITE_INTERRUPT183869,10808662 -#define SQLITE_IOERR SQLITE_IOERR183870,10808715 -#define SQLITE_CORRUPT SQLITE_CORRUPT183871,10808760 -#define SQLITE_NOTFOUND SQLITE_NOTFOUND183872,10808809 -#define SQLITE_FULL SQLITE_FULL183873,10808860 -#define SQLITE_CANTOPEN SQLITE_CANTOPEN183874,10808903 -#define SQLITE_PROTOCOL SQLITE_PROTOCOL183875,10808954 -#define SQLITE_EMPTY SQLITE_EMPTY183876,10809005 -#define SQLITE_SCHEMA SQLITE_SCHEMA183877,10809050 -#define SQLITE_TOOBIG SQLITE_TOOBIG183878,10809097 -#define SQLITE_CONSTRAINT SQLITE_CONSTRAINT183879,10809144 -#define SQLITE_MISMATCH SQLITE_MISMATCH183880,10809199 -#define SQLITE_MISUSE SQLITE_MISUSE183881,10809250 -#define SQLITE_NOLFS SQLITE_NOLFS183882,10809297 -#define SQLITE_AUTH SQLITE_AUTH183883,10809342 -#define SQLITE_FORMAT SQLITE_FORMAT183884,10809385 -#define SQLITE_RANGE SQLITE_RANGE183885,10809432 -#define SQLITE_NOTADB SQLITE_NOTADB183886,10809477 -#define SQLITE_NOTICE SQLITE_NOTICE183887,10809524 -#define SQLITE_WARNING SQLITE_WARNING183888,10809571 -#define SQLITE_ROW SQLITE_ROW183889,10809620 -#define SQLITE_DONE SQLITE_DONE183890,10809661 -#define SQLITE_IOERR_READ SQLITE_IOERR_READ183891,10809704 -#define SQLITE_IOERR_SHORT_READ SQLITE_IOERR_SHORT_READ183892,10809759 -#define SQLITE_IOERR_WRITE SQLITE_IOERR_WRITE183893,10809826 -#define SQLITE_IOERR_FSYNC SQLITE_IOERR_FSYNC183894,10809883 -#define SQLITE_IOERR_DIR_FSYNC SQLITE_IOERR_DIR_FSYNC183895,10809940 -#define SQLITE_IOERR_TRUNCATE SQLITE_IOERR_TRUNCATE183896,10810005 -#define SQLITE_IOERR_FSTAT SQLITE_IOERR_FSTAT183897,10810068 -#define SQLITE_IOERR_UNLOCK SQLITE_IOERR_UNLOCK183898,10810125 -#define SQLITE_IOERR_RDLOCK SQLITE_IOERR_RDLOCK183899,10810184 -#define SQLITE_IOERR_DELETE SQLITE_IOERR_DELETE183900,10810243 -#define SQLITE_IOERR_BLOCKED SQLITE_IOERR_BLOCKED183901,10810302 -#define SQLITE_IOERR_NOMEM SQLITE_IOERR_NOMEM183902,10810363 -#define SQLITE_IOERR_ACCESS SQLITE_IOERR_ACCESS183903,10810420 -#define SQLITE_IOERR_CHECKRESERVEDLOCK SQLITE_IOERR_CHECKRESERVEDLOCK183904,10810479 -#define SQLITE_IOERR_LOCK SQLITE_IOERR_LOCK183905,10810560 -#define SQLITE_IOERR_CLOSE SQLITE_IOERR_CLOSE183906,10810615 -#define SQLITE_IOERR_DIR_CLOSE SQLITE_IOERR_DIR_CLOSE183907,10810672 -#define SQLITE_IOERR_SHMOPEN SQLITE_IOERR_SHMOPEN183908,10810737 -#define SQLITE_IOERR_SHMSIZE SQLITE_IOERR_SHMSIZE183909,10810798 -#define SQLITE_IOERR_SHMLOCK SQLITE_IOERR_SHMLOCK183910,10810859 -#define SQLITE_IOERR_SHMMAP SQLITE_IOERR_SHMMAP183911,10810920 -#define SQLITE_IOERR_SEEK SQLITE_IOERR_SEEK183912,10810979 -#define SQLITE_IOERR_DELETE_NOENT SQLITE_IOERR_DELETE_NOENT183913,10811034 -#define SQLITE_IOERR_MMAP SQLITE_IOERR_MMAP183914,10811105 -#define SQLITE_IOERR_GETTEMPPATH SQLITE_IOERR_GETTEMPPATH183915,10811160 -#define SQLITE_IOERR_CONVPATH SQLITE_IOERR_CONVPATH183916,10811229 -#define SQLITE_IOERR_VNODE SQLITE_IOERR_VNODE183917,10811292 -#define SQLITE_IOERR_AUTH SQLITE_IOERR_AUTH183918,10811349 -#define SQLITE_LOCKED_SHAREDCACHE SQLITE_LOCKED_SHAREDCACHE183919,10811404 -#define SQLITE_BUSY_RECOVERY SQLITE_BUSY_RECOVERY183920,10811475 -#define SQLITE_BUSY_SNAPSHOT SQLITE_BUSY_SNAPSHOT183921,10811536 -#define SQLITE_CANTOPEN_NOTEMPDIR SQLITE_CANTOPEN_NOTEMPDIR183922,10811597 -#define SQLITE_CANTOPEN_ISDIR SQLITE_CANTOPEN_ISDIR183923,10811668 -#define SQLITE_CANTOPEN_FULLPATH SQLITE_CANTOPEN_FULLPATH183924,10811731 -#define SQLITE_CANTOPEN_CONVPATH SQLITE_CANTOPEN_CONVPATH183925,10811800 -#define SQLITE_CORRUPT_VTAB SQLITE_CORRUPT_VTAB183926,10811869 -#define SQLITE_READONLY_RECOVERY SQLITE_READONLY_RECOVERY183927,10811928 -#define SQLITE_READONLY_CANTLOCK SQLITE_READONLY_CANTLOCK183928,10811997 -#define SQLITE_READONLY_ROLLBACK SQLITE_READONLY_ROLLBACK183929,10812066 -#define SQLITE_READONLY_DBMOVED SQLITE_READONLY_DBMOVED183930,10812135 -#define SQLITE_ABORT_ROLLBACK SQLITE_ABORT_ROLLBACK183931,10812202 -#define SQLITE_CONSTRAINT_CHECK SQLITE_CONSTRAINT_CHECK183932,10812265 -#define SQLITE_CONSTRAINT_COMMITHOOK SQLITE_CONSTRAINT_COMMITHOOK183933,10812332 -#define SQLITE_CONSTRAINT_FOREIGNKEY SQLITE_CONSTRAINT_FOREIGNKEY183934,10812409 -#define SQLITE_CONSTRAINT_FUNCTION SQLITE_CONSTRAINT_FUNCTION183935,10812486 -#define SQLITE_CONSTRAINT_NOTNULL SQLITE_CONSTRAINT_NOTNULL183936,10812559 -#define SQLITE_CONSTRAINT_PRIMARYKEY SQLITE_CONSTRAINT_PRIMARYKEY183937,10812630 -#define SQLITE_CONSTRAINT_TRIGGER SQLITE_CONSTRAINT_TRIGGER183938,10812707 -#define SQLITE_CONSTRAINT_UNIQUE SQLITE_CONSTRAINT_UNIQUE183939,10812778 -#define SQLITE_CONSTRAINT_VTAB SQLITE_CONSTRAINT_VTAB183940,10812847 -#define SQLITE_CONSTRAINT_ROWID SQLITE_CONSTRAINT_ROWID183941,10812912 -#define SQLITE_NOTICE_RECOVER_WAL SQLITE_NOTICE_RECOVER_WAL183942,10812979 -#define SQLITE_NOTICE_RECOVER_ROLLBACK SQLITE_NOTICE_RECOVER_ROLLBACK183943,10813050 -#define SQLITE_WARNING_AUTOINDEX SQLITE_WARNING_AUTOINDEX183944,10813131 -#define SQLITE_AUTH_USER SQLITE_AUTH_USER183945,10813200 -#define SQLITE_OPEN_READONLY SQLITE_OPEN_READONLY183946,10813253 -#define SQLITE_OPEN_READWRITE SQLITE_OPEN_READWRITE183947,10813314 -#define SQLITE_OPEN_CREATE SQLITE_OPEN_CREATE183948,10813377 -#define SQLITE_OPEN_DELETEONCLOSE SQLITE_OPEN_DELETEONCLOSE183949,10813434 -#define SQLITE_OPEN_EXCLUSIVE SQLITE_OPEN_EXCLUSIVE183950,10813505 -#define SQLITE_OPEN_AUTOPROXY SQLITE_OPEN_AUTOPROXY183951,10813568 -#define SQLITE_OPEN_URI SQLITE_OPEN_URI183952,10813631 -#define SQLITE_OPEN_MEMORY SQLITE_OPEN_MEMORY183953,10813682 -#define SQLITE_OPEN_MAIN_DB SQLITE_OPEN_MAIN_DB183954,10813739 -#define SQLITE_OPEN_TEMP_DB SQLITE_OPEN_TEMP_DB183955,10813798 -#define SQLITE_OPEN_TRANSIENT_DB SQLITE_OPEN_TRANSIENT_DB183956,10813857 -#define SQLITE_OPEN_MAIN_JOURNAL SQLITE_OPEN_MAIN_JOURNAL183957,10813926 -#define SQLITE_OPEN_TEMP_JOURNAL SQLITE_OPEN_TEMP_JOURNAL183958,10813995 -#define SQLITE_OPEN_SUBJOURNAL SQLITE_OPEN_SUBJOURNAL183959,10814064 -#define SQLITE_OPEN_MASTER_JOURNAL SQLITE_OPEN_MASTER_JOURNAL183960,10814129 -#define SQLITE_OPEN_NOMUTEX SQLITE_OPEN_NOMUTEX183961,10814202 -#define SQLITE_OPEN_FULLMUTEX SQLITE_OPEN_FULLMUTEX183962,10814261 -#define SQLITE_OPEN_SHAREDCACHE SQLITE_OPEN_SHAREDCACHE183963,10814324 -#define SQLITE_OPEN_PRIVATECACHE SQLITE_OPEN_PRIVATECACHE183964,10814391 -#define SQLITE_OPEN_WAL SQLITE_OPEN_WAL183965,10814460 -#define SQLITE_IOCAP_ATOMIC SQLITE_IOCAP_ATOMIC183966,10814511 -#define SQLITE_IOCAP_ATOMIC512 SQLITE_IOCAP_ATOMIC512183967,10814570 -#define SQLITE_IOCAP_ATOMIC1K SQLITE_IOCAP_ATOMIC1K183968,10814635 -#define SQLITE_IOCAP_ATOMIC2K SQLITE_IOCAP_ATOMIC2K183969,10814698 -#define SQLITE_IOCAP_ATOMIC4K SQLITE_IOCAP_ATOMIC4K183970,10814761 -#define SQLITE_IOCAP_ATOMIC8K SQLITE_IOCAP_ATOMIC8K183971,10814824 -#define SQLITE_IOCAP_ATOMIC16K SQLITE_IOCAP_ATOMIC16K183972,10814887 -#define SQLITE_IOCAP_ATOMIC32K SQLITE_IOCAP_ATOMIC32K183973,10814952 -#define SQLITE_IOCAP_ATOMIC64K SQLITE_IOCAP_ATOMIC64K183974,10815017 -#define SQLITE_IOCAP_SAFE_APPEND SQLITE_IOCAP_SAFE_APPEND183975,10815082 -#define SQLITE_IOCAP_SEQUENTIAL SQLITE_IOCAP_SEQUENTIAL183976,10815151 -#define SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN183977,10815218 -#define SQLITE_IOCAP_POWERSAFE_OVERWRITE SQLITE_IOCAP_POWERSAFE_OVERWRITE183978,10815307 -#define SQLITE_IOCAP_IMMUTABLE SQLITE_IOCAP_IMMUTABLE183979,10815392 -#define SQLITE_LOCK_NONE SQLITE_LOCK_NONE183980,10815457 -#define SQLITE_LOCK_SHARED SQLITE_LOCK_SHARED183981,10815510 -#define SQLITE_LOCK_RESERVED SQLITE_LOCK_RESERVED183982,10815567 -#define SQLITE_LOCK_PENDING SQLITE_LOCK_PENDING183983,10815628 -#define SQLITE_LOCK_EXCLUSIVE SQLITE_LOCK_EXCLUSIVE183984,10815687 -#define SQLITE_SYNC_NORMAL SQLITE_SYNC_NORMAL183985,10815750 -#define SQLITE_SYNC_FULL SQLITE_SYNC_FULL183986,10815807 -#define SQLITE_SYNC_DATAONLY SQLITE_SYNC_DATAONLY183987,10815860 -#define SQLITE_FCNTL_LOCKSTATE SQLITE_FCNTL_LOCKSTATE184032,10819505 -#define SQLITE_FCNTL_GET_LOCKPROXYFILE SQLITE_FCNTL_GET_LOCKPROXYFILE184033,10819571 -#define SQLITE_FCNTL_SET_LOCKPROXYFILE SQLITE_FCNTL_SET_LOCKPROXYFILE184034,10819653 -#define SQLITE_FCNTL_LAST_ERRNO SQLITE_FCNTL_LAST_ERRNO184035,10819735 -#define SQLITE_FCNTL_SIZE_HINT SQLITE_FCNTL_SIZE_HINT184036,10819803 -#define SQLITE_FCNTL_CHUNK_SIZE SQLITE_FCNTL_CHUNK_SIZE184037,10819869 -#define SQLITE_FCNTL_FILE_POINTER SQLITE_FCNTL_FILE_POINTER184038,10819937 -#define SQLITE_FCNTL_SYNC_OMITTED SQLITE_FCNTL_SYNC_OMITTED184039,10820009 -#define SQLITE_FCNTL_WIN32_AV_RETRY SQLITE_FCNTL_WIN32_AV_RETRY184040,10820081 -#define SQLITE_FCNTL_PERSIST_WAL SQLITE_FCNTL_PERSIST_WAL184041,10820157 -#define SQLITE_FCNTL_OVERWRITE SQLITE_FCNTL_OVERWRITE184042,10820227 -#define SQLITE_FCNTL_VFSNAME SQLITE_FCNTL_VFSNAME184043,10820293 -#define SQLITE_FCNTL_POWERSAFE_OVERWRITE SQLITE_FCNTL_POWERSAFE_OVERWRITE184044,10820355 -#define SQLITE_FCNTL_PRAGMA SQLITE_FCNTL_PRAGMA184045,10820441 -#define SQLITE_FCNTL_BUSYHANDLER SQLITE_FCNTL_BUSYHANDLER184046,10820501 -#define SQLITE_FCNTL_TEMPFILENAME SQLITE_FCNTL_TEMPFILENAME184047,10820571 -#define SQLITE_FCNTL_MMAP_SIZE SQLITE_FCNTL_MMAP_SIZE184048,10820643 -#define SQLITE_FCNTL_TRACE SQLITE_FCNTL_TRACE184049,10820709 -#define SQLITE_FCNTL_HAS_MOVED SQLITE_FCNTL_HAS_MOVED184050,10820767 -#define SQLITE_FCNTL_SYNC SQLITE_FCNTL_SYNC184051,10820833 -#define SQLITE_FCNTL_COMMIT_PHASETWO SQLITE_FCNTL_COMMIT_PHASETWO184052,10820889 -#define SQLITE_FCNTL_WIN32_SET_HANDLE SQLITE_FCNTL_WIN32_SET_HANDLE184053,10820967 -#define SQLITE_FCNTL_WAL_BLOCK SQLITE_FCNTL_WAL_BLOCK184054,10821047 -#define SQLITE_FCNTL_ZIPVFS SQLITE_FCNTL_ZIPVFS184055,10821113 -#define SQLITE_FCNTL_RBU SQLITE_FCNTL_RBU184056,10821173 -#define SQLITE_FCNTL_VFS_POINTER SQLITE_FCNTL_VFS_POINTER184057,10821227 -#define SQLITE_FCNTL_JOURNAL_POINTER SQLITE_FCNTL_JOURNAL_POINTER184058,10821297 -#define SQLITE_GET_LOCKPROXYFILE SQLITE_GET_LOCKPROXYFILE184059,10821375 -#define SQLITE_SET_LOCKPROXYFILE SQLITE_SET_LOCKPROXYFILE184060,10821445 -#define SQLITE_LAST_ERRNO SQLITE_LAST_ERRNO184061,10821515 -#define SQLITE_ACCESS_EXISTS SQLITE_ACCESS_EXISTS184108,10825622 -#define SQLITE_ACCESS_READWRITE SQLITE_ACCESS_READWRITE184109,10825684 -#define SQLITE_ACCESS_READ SQLITE_ACCESS_READ184110,10825752 -#define SQLITE_SHM_UNLOCK SQLITE_SHM_UNLOCK184111,10825810 -#define SQLITE_SHM_LOCK SQLITE_SHM_LOCK184112,10825866 -#define SQLITE_SHM_SHARED SQLITE_SHM_SHARED184113,10825918 -#define SQLITE_SHM_EXCLUSIVE SQLITE_SHM_EXCLUSIVE184114,10825974 -#define SQLITE_SHM_NLOCK SQLITE_SHM_NLOCK184115,10826036 -#define SQLITE_CONFIG_SINGLETHREAD SQLITE_CONFIG_SINGLETHREAD184134,10827827 -#define SQLITE_CONFIG_MULTITHREAD SQLITE_CONFIG_MULTITHREAD184135,10827902 -#define SQLITE_CONFIG_SERIALIZED SQLITE_CONFIG_SERIALIZED184136,10827975 -#define SQLITE_CONFIG_MALLOC SQLITE_CONFIG_MALLOC184137,10828046 -#define SQLITE_CONFIG_GETMALLOC SQLITE_CONFIG_GETMALLOC184138,10828109 -#define SQLITE_CONFIG_SCRATCH SQLITE_CONFIG_SCRATCH184139,10828178 -#define SQLITE_CONFIG_PAGECACHE SQLITE_CONFIG_PAGECACHE184140,10828243 -#define SQLITE_CONFIG_HEAP SQLITE_CONFIG_HEAP184141,10828312 -#define SQLITE_CONFIG_MEMSTATUS SQLITE_CONFIG_MEMSTATUS184142,10828371 -#define SQLITE_CONFIG_MUTEX SQLITE_CONFIG_MUTEX184143,10828440 -#define SQLITE_CONFIG_GETMUTEX SQLITE_CONFIG_GETMUTEX184144,10828501 -#define SQLITE_CONFIG_LOOKASIDE SQLITE_CONFIG_LOOKASIDE184145,10828568 -#define SQLITE_CONFIG_PCACHE SQLITE_CONFIG_PCACHE184146,10828637 -#define SQLITE_CONFIG_GETPCACHE SQLITE_CONFIG_GETPCACHE184147,10828700 -#define SQLITE_CONFIG_LOG SQLITE_CONFIG_LOG184148,10828769 -#define SQLITE_CONFIG_URI SQLITE_CONFIG_URI184149,10828826 -#define SQLITE_CONFIG_PCACHE2 SQLITE_CONFIG_PCACHE2184150,10828883 -#define SQLITE_CONFIG_GETPCACHE2 SQLITE_CONFIG_GETPCACHE2184151,10828948 -#define SQLITE_CONFIG_COVERING_INDEX_SCAN SQLITE_CONFIG_COVERING_INDEX_SCAN184152,10829019 -#define SQLITE_CONFIG_SQLLOG SQLITE_CONFIG_SQLLOG184153,10829108 -#define SQLITE_CONFIG_MMAP_SIZE SQLITE_CONFIG_MMAP_SIZE184154,10829171 -#define SQLITE_CONFIG_WIN32_HEAPSIZE SQLITE_CONFIG_WIN32_HEAPSIZE184155,10829240 -#define SQLITE_CONFIG_PCACHE_HDRSZ SQLITE_CONFIG_PCACHE_HDRSZ184156,10829319 -#define SQLITE_CONFIG_PMASZ SQLITE_CONFIG_PMASZ184157,10829394 -#define SQLITE_CONFIG_STMTJRNL_SPILL SQLITE_CONFIG_STMTJRNL_SPILL184158,10829455 -#define SQLITE_DBCONFIG_LOOKASIDE SQLITE_DBCONFIG_LOOKASIDE184159,10829534 -#define SQLITE_DBCONFIG_ENABLE_FKEY SQLITE_DBCONFIG_ENABLE_FKEY184160,10829607 -#define SQLITE_DBCONFIG_ENABLE_TRIGGER SQLITE_DBCONFIG_ENABLE_TRIGGER184161,10829684 -#define SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER184162,10829767 -#define SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION184163,10829864 -#define SQLITE_DENY SQLITE_DENY184164,10829961 -#define SQLITE_IGNORE SQLITE_IGNORE184165,10830006 -#define SQLITE_CREATE_INDEX SQLITE_CREATE_INDEX184166,10830055 -#define SQLITE_CREATE_TABLE SQLITE_CREATE_TABLE184167,10830116 -#define SQLITE_CREATE_TEMP_INDEX SQLITE_CREATE_TEMP_INDEX184168,10830177 -#define SQLITE_CREATE_TEMP_TABLE SQLITE_CREATE_TEMP_TABLE184169,10830248 -#define SQLITE_CREATE_TEMP_TRIGGER SQLITE_CREATE_TEMP_TRIGGER184170,10830319 -#define SQLITE_CREATE_TEMP_VIEW SQLITE_CREATE_TEMP_VIEW184171,10830394 -#define SQLITE_CREATE_TRIGGER SQLITE_CREATE_TRIGGER184172,10830463 -#define SQLITE_CREATE_VIEW SQLITE_CREATE_VIEW184173,10830528 -#define SQLITE_DELETE SQLITE_DELETE184174,10830587 -#define SQLITE_DROP_INDEX SQLITE_DROP_INDEX184175,10830636 -#define SQLITE_DROP_TABLE SQLITE_DROP_TABLE184176,10830693 -#define SQLITE_DROP_TEMP_INDEX SQLITE_DROP_TEMP_INDEX184177,10830750 -#define SQLITE_DROP_TEMP_TABLE SQLITE_DROP_TEMP_TABLE184178,10830817 -#define SQLITE_DROP_TEMP_TRIGGER SQLITE_DROP_TEMP_TRIGGER184179,10830884 -#define SQLITE_DROP_TEMP_VIEW SQLITE_DROP_TEMP_VIEW184180,10830955 -#define SQLITE_DROP_TRIGGER SQLITE_DROP_TRIGGER184181,10831020 -#define SQLITE_DROP_VIEW SQLITE_DROP_VIEW184182,10831081 -#define SQLITE_INSERT SQLITE_INSERT184183,10831136 -#define SQLITE_PRAGMA SQLITE_PRAGMA184184,10831185 -#define SQLITE_READ SQLITE_READ184185,10831234 -#define SQLITE_SELECT SQLITE_SELECT184186,10831279 -#define SQLITE_TRANSACTION SQLITE_TRANSACTION184187,10831328 -#define SQLITE_UPDATE SQLITE_UPDATE184188,10831387 -#define SQLITE_ATTACH SQLITE_ATTACH184189,10831436 -#define SQLITE_DETACH SQLITE_DETACH184190,10831485 -#define SQLITE_ALTER_TABLE SQLITE_ALTER_TABLE184191,10831534 -#define SQLITE_REINDEX SQLITE_REINDEX184192,10831593 -#define SQLITE_ANALYZE SQLITE_ANALYZE184193,10831644 -#define SQLITE_CREATE_VTABLE SQLITE_CREATE_VTABLE184194,10831695 -#define SQLITE_DROP_VTABLE SQLITE_DROP_VTABLE184195,10831758 -#define SQLITE_FUNCTION SQLITE_FUNCTION184196,10831817 -#define SQLITE_SAVEPOINT SQLITE_SAVEPOINT184197,10831870 -#define SQLITE_COPY SQLITE_COPY184198,10831925 -#define SQLITE_RECURSIVE SQLITE_RECURSIVE184199,10831970 -#define SQLITE_LIMIT_LENGTH SQLITE_LIMIT_LENGTH184201,10832092 -#define SQLITE_LIMIT_SQL_LENGTH SQLITE_LIMIT_SQL_LENGTH184202,10832153 -#define SQLITE_LIMIT_COLUMN SQLITE_LIMIT_COLUMN184203,10832222 -#define SQLITE_LIMIT_EXPR_DEPTH SQLITE_LIMIT_EXPR_DEPTH184204,10832283 -#define SQLITE_LIMIT_COMPOUND_SELECT SQLITE_LIMIT_COMPOUND_SELECT184205,10832352 -#define SQLITE_LIMIT_VDBE_OP SQLITE_LIMIT_VDBE_OP184206,10832431 -#define SQLITE_LIMIT_FUNCTION_ARG SQLITE_LIMIT_FUNCTION_ARG184207,10832494 -#define SQLITE_LIMIT_ATTACHED SQLITE_LIMIT_ATTACHED184208,10832567 -#define SQLITE_LIMIT_LIKE_PATTERN_LENGTH SQLITE_LIMIT_LIKE_PATTERN_LENGTH184209,10832632 -#define SQLITE_LIMIT_VARIABLE_NUMBER SQLITE_LIMIT_VARIABLE_NUMBER184210,10832719 -#define SQLITE_LIMIT_TRIGGER_DEPTH SQLITE_LIMIT_TRIGGER_DEPTH184211,10832798 -#define SQLITE_LIMIT_WORKER_THREADS SQLITE_LIMIT_WORKER_THREADS184212,10832873 -#define SQLITE_INTEGER SQLITE_INTEGER184215,10833086 -#define SQLITE_FLOAT SQLITE_FLOAT184216,10833137 -#define SQLITE_BLOB SQLITE_BLOB184217,10833184 -#define SQLITE_NULL SQLITE_NULL184218,10833229 -# undef SQLITE_TEXTSQLITE_TEXT184219,10833274 -# define SQLITE_TEXT SQLITE_TEXT184220,10833318 -#define SQLITE3_TEXT SQLITE3_TEXT184221,10833364 -#define SQLITE_UTF8 SQLITE_UTF8184222,10833411 -#define SQLITE_UTF16LE SQLITE_UTF16LE184223,10833456 -#define SQLITE_UTF16BE SQLITE_UTF16BE184224,10833507 -#define SQLITE_UTF16 SQLITE_UTF16184225,10833558 -#define SQLITE_ANY SQLITE_ANY184226,10833605 -#define SQLITE_UTF16_ALIGNED SQLITE_UTF16_ALIGNED184227,10833648 -#define SQLITE_DETERMINISTIC SQLITE_DETERMINISTIC184228,10833711 -#define SQLITE_STATIC SQLITE_STATIC184230,10833858 -#define SQLITE_TRANSIENT SQLITE_TRANSIENT184231,10833907 -#define SQLITE_INDEX_SCAN_UNIQUE SQLITE_INDEX_SCAN_UNIQUE184334,10843017 -#define SQLITE_INDEX_CONSTRAINT_EQ SQLITE_INDEX_CONSTRAINT_EQ184335,10843088 -#define SQLITE_INDEX_CONSTRAINT_GT SQLITE_INDEX_CONSTRAINT_GT184336,10843163 -#define SQLITE_INDEX_CONSTRAINT_LE SQLITE_INDEX_CONSTRAINT_LE184337,10843238 -#define SQLITE_INDEX_CONSTRAINT_LT SQLITE_INDEX_CONSTRAINT_LT184338,10843313 -#define SQLITE_INDEX_CONSTRAINT_GE SQLITE_INDEX_CONSTRAINT_GE184339,10843388 -#define SQLITE_INDEX_CONSTRAINT_MATCH SQLITE_INDEX_CONSTRAINT_MATCH184340,10843463 -#define SQLITE_INDEX_CONSTRAINT_LIKE SQLITE_INDEX_CONSTRAINT_LIKE184341,10843544 -#define SQLITE_INDEX_CONSTRAINT_GLOB SQLITE_INDEX_CONSTRAINT_GLOB184342,10843623 -#define SQLITE_INDEX_CONSTRAINT_REGEXP SQLITE_INDEX_CONSTRAINT_REGEXP184343,10843702 -#define SQLITE_MUTEX_FAST SQLITE_MUTEX_FAST184375,10846167 -#define SQLITE_MUTEX_RECURSIVE SQLITE_MUTEX_RECURSIVE184376,10846224 -#define SQLITE_MUTEX_STATIC_MASTER SQLITE_MUTEX_STATIC_MASTER184377,10846291 -#define SQLITE_MUTEX_STATIC_MEM SQLITE_MUTEX_STATIC_MEM184378,10846366 -#define SQLITE_MUTEX_STATIC_MEM2 SQLITE_MUTEX_STATIC_MEM2184379,10846435 -#define SQLITE_MUTEX_STATIC_OPEN SQLITE_MUTEX_STATIC_OPEN184380,10846506 -#define SQLITE_MUTEX_STATIC_PRNG SQLITE_MUTEX_STATIC_PRNG184381,10846577 -#define SQLITE_MUTEX_STATIC_LRU SQLITE_MUTEX_STATIC_LRU184382,10846648 -#define SQLITE_MUTEX_STATIC_LRU2 SQLITE_MUTEX_STATIC_LRU2184383,10846717 -#define SQLITE_MUTEX_STATIC_PMEM SQLITE_MUTEX_STATIC_PMEM184384,10846788 -#define SQLITE_MUTEX_STATIC_APP1 SQLITE_MUTEX_STATIC_APP1184385,10846859 -#define SQLITE_MUTEX_STATIC_APP2 SQLITE_MUTEX_STATIC_APP2184386,10846930 -#define SQLITE_MUTEX_STATIC_APP3 SQLITE_MUTEX_STATIC_APP3184387,10847001 -#define SQLITE_MUTEX_STATIC_VFS1 SQLITE_MUTEX_STATIC_VFS1184388,10847072 -#define SQLITE_MUTEX_STATIC_VFS2 SQLITE_MUTEX_STATIC_VFS2184389,10847143 -#define SQLITE_MUTEX_STATIC_VFS3 SQLITE_MUTEX_STATIC_VFS3184390,10847214 -#define SQLITE_TESTCTRL_FIRST SQLITE_TESTCTRL_FIRST184391,10847285 -#define SQLITE_TESTCTRL_PRNG_SAVE SQLITE_TESTCTRL_PRNG_SAVE184392,10847350 -#define SQLITE_TESTCTRL_PRNG_RESTORE SQLITE_TESTCTRL_PRNG_RESTORE184393,10847423 -#define SQLITE_TESTCTRL_PRNG_RESET SQLITE_TESTCTRL_PRNG_RESET184394,10847502 -#define SQLITE_TESTCTRL_BITVEC_TEST SQLITE_TESTCTRL_BITVEC_TEST184395,10847577 -#define SQLITE_TESTCTRL_FAULT_INSTALL SQLITE_TESTCTRL_FAULT_INSTALL184396,10847654 -#define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS184397,10847735 -#define SQLITE_TESTCTRL_PENDING_BYTE SQLITE_TESTCTRL_PENDING_BYTE184398,10847828 -#define SQLITE_TESTCTRL_ASSERT SQLITE_TESTCTRL_ASSERT184399,10847907 -#define SQLITE_TESTCTRL_ALWAYS SQLITE_TESTCTRL_ALWAYS184400,10847974 -#define SQLITE_TESTCTRL_RESERVE SQLITE_TESTCTRL_RESERVE184401,10848041 -#define SQLITE_TESTCTRL_OPTIMIZATIONS SQLITE_TESTCTRL_OPTIMIZATIONS184402,10848110 -#define SQLITE_TESTCTRL_ISKEYWORD SQLITE_TESTCTRL_ISKEYWORD184403,10848191 -#define SQLITE_TESTCTRL_SCRATCHMALLOC SQLITE_TESTCTRL_SCRATCHMALLOC184404,10848264 -#define SQLITE_TESTCTRL_LOCALTIME_FAULT SQLITE_TESTCTRL_LOCALTIME_FAULT184405,10848345 -#define SQLITE_TESTCTRL_EXPLAIN_STMT SQLITE_TESTCTRL_EXPLAIN_STMT184406,10848430 -#define SQLITE_TESTCTRL_NEVER_CORRUPT SQLITE_TESTCTRL_NEVER_CORRUPT184407,10848509 -#define SQLITE_TESTCTRL_VDBE_COVERAGE SQLITE_TESTCTRL_VDBE_COVERAGE184408,10848590 -#define SQLITE_TESTCTRL_BYTEORDER SQLITE_TESTCTRL_BYTEORDER184409,10848671 -#define SQLITE_TESTCTRL_ISINIT SQLITE_TESTCTRL_ISINIT184410,10848744 -#define SQLITE_TESTCTRL_SORTER_MMAP SQLITE_TESTCTRL_SORTER_MMAP184411,10848811 -#define SQLITE_TESTCTRL_IMPOSTER SQLITE_TESTCTRL_IMPOSTER184412,10848888 -#define SQLITE_TESTCTRL_LAST SQLITE_TESTCTRL_LAST184413,10848959 -#define SQLITE_STATUS_MEMORY_USED SQLITE_STATUS_MEMORY_USED184414,10849022 -#define SQLITE_STATUS_PAGECACHE_USED SQLITE_STATUS_PAGECACHE_USED184415,10849095 -#define SQLITE_STATUS_PAGECACHE_OVERFLOW SQLITE_STATUS_PAGECACHE_OVERFLOW184416,10849174 -#define SQLITE_STATUS_SCRATCH_USED SQLITE_STATUS_SCRATCH_USED184417,10849261 -#define SQLITE_STATUS_SCRATCH_OVERFLOW SQLITE_STATUS_SCRATCH_OVERFLOW184418,10849336 -#define SQLITE_STATUS_MALLOC_SIZE SQLITE_STATUS_MALLOC_SIZE184419,10849419 -#define SQLITE_STATUS_PARSER_STACK SQLITE_STATUS_PARSER_STACK184420,10849492 -#define SQLITE_STATUS_PAGECACHE_SIZE SQLITE_STATUS_PAGECACHE_SIZE184421,10849567 -#define SQLITE_STATUS_SCRATCH_SIZE SQLITE_STATUS_SCRATCH_SIZE184422,10849646 -#define SQLITE_STATUS_MALLOC_COUNT SQLITE_STATUS_MALLOC_COUNT184423,10849721 -#define SQLITE_DBSTATUS_LOOKASIDE_USED SQLITE_DBSTATUS_LOOKASIDE_USED184424,10849796 -#define SQLITE_DBSTATUS_CACHE_USED SQLITE_DBSTATUS_CACHE_USED184425,10849879 -#define SQLITE_DBSTATUS_SCHEMA_USED SQLITE_DBSTATUS_SCHEMA_USED184426,10849954 -#define SQLITE_DBSTATUS_STMT_USED SQLITE_DBSTATUS_STMT_USED184427,10850031 -#define SQLITE_DBSTATUS_LOOKASIDE_HIT SQLITE_DBSTATUS_LOOKASIDE_HIT184428,10850104 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE184429,10850185 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL184430,10850278 -#define SQLITE_DBSTATUS_CACHE_HIT SQLITE_DBSTATUS_CACHE_HIT184431,10850371 -#define SQLITE_DBSTATUS_CACHE_MISS SQLITE_DBSTATUS_CACHE_MISS184432,10850444 -#define SQLITE_DBSTATUS_CACHE_WRITE SQLITE_DBSTATUS_CACHE_WRITE184433,10850519 -#define SQLITE_DBSTATUS_DEFERRED_FKS SQLITE_DBSTATUS_DEFERRED_FKS184434,10850596 -#define SQLITE_DBSTATUS_MAX SQLITE_DBSTATUS_MAX184435,10850675 -#define SQLITE_STMTSTATUS_FULLSCAN_STEP SQLITE_STMTSTATUS_FULLSCAN_STEP184436,10850736 -#define SQLITE_STMTSTATUS_SORT SQLITE_STMTSTATUS_SORT184437,10850821 -#define SQLITE_STMTSTATUS_AUTOINDEX SQLITE_STMTSTATUS_AUTOINDEX184438,10850888 -#define SQLITE_STMTSTATUS_VM_STEP SQLITE_STMTSTATUS_VM_STEP184439,10850965 -#define SQLITE_CHECKPOINT_PASSIVE SQLITE_CHECKPOINT_PASSIVE184500,10855757 -#define SQLITE_CHECKPOINT_FULL SQLITE_CHECKPOINT_FULL184501,10855830 -#define SQLITE_CHECKPOINT_RESTART SQLITE_CHECKPOINT_RESTART184502,10855897 -#define SQLITE_CHECKPOINT_TRUNCATE SQLITE_CHECKPOINT_TRUNCATE184503,10855970 -#define SQLITE_VTAB_CONSTRAINT_SUPPORT SQLITE_VTAB_CONSTRAINT_SUPPORT184504,10856045 -#define SQLITE_ROLLBACK SQLITE_ROLLBACK184505,10856128 -#define SQLITE_FAIL SQLITE_FAIL184506,10856181 -#define SQLITE_REPLACE SQLITE_REPLACE184507,10856226 -#define SQLITE_SCANSTAT_NLOOP SQLITE_SCANSTAT_NLOOP184508,10856277 -#define SQLITE_SCANSTAT_NVISIT SQLITE_SCANSTAT_NVISIT184509,10856342 -#define SQLITE_SCANSTAT_EST SQLITE_SCANSTAT_EST184510,10856409 -#define SQLITE_SCANSTAT_NAME SQLITE_SCANSTAT_NAME184511,10856470 -#define SQLITE_SCANSTAT_EXPLAIN SQLITE_SCANSTAT_EXPLAIN184512,10856533 -#define SQLITE_SCANSTAT_SELECTID SQLITE_SCANSTAT_SELECTID184513,10856602 -# undef doubledouble184515,10856752 -#define _SQLITE3RTREE_H__SQLITE3RTREE_H_184516,10856786 -#define NOT_WITHIN NOT_WITHIN184565,10861719 -#define PARTLY_WITHIN PARTLY_WITHIN184566,10861762 -#define FULLY_WITHIN FULLY_WITHIN184567,10861811 -#define __SQLITESESSION_H_ __SQLITESESSION_H_184568,10861858 -#define SQLITE_CHANGESET_DATA SQLITE_CHANGESET_DATA184572,10862178 -#define SQLITE_CHANGESET_NOTFOUND SQLITE_CHANGESET_NOTFOUND184573,10862243 -#define SQLITE_CHANGESET_CONFLICT SQLITE_CHANGESET_CONFLICT184574,10862316 -#define SQLITE_CHANGESET_CONSTRAINT SQLITE_CHANGESET_CONSTRAINT184575,10862389 -#define SQLITE_CHANGESET_FOREIGN_KEY SQLITE_CHANGESET_FOREIGN_KEY184576,10862466 -#define SQLITE_CHANGESET_OMIT SQLITE_CHANGESET_OMIT184577,10862545 -#define SQLITE_CHANGESET_REPLACE SQLITE_CHANGESET_REPLACE184578,10862610 -#define SQLITE_CHANGESET_ABORT SQLITE_CHANGESET_ABORT184579,10862681 -#define _FTS5_H_FTS5_H184580,10862748 -#define FTS5_TOKENIZE_QUERY FTS5_TOKENIZE_QUERY184640,10867781 -#define FTS5_TOKENIZE_PREFIX FTS5_TOKENIZE_PREFIX184641,10867843 -#define FTS5_TOKENIZE_DOCUMENT FTS5_TOKENIZE_DOCUMENT184642,10867907 -#define FTS5_TOKENIZE_AUX FTS5_TOKENIZE_AUX184643,10867975 -#define FTS5_TOKEN_COLOCATED FTS5_TOKEN_COLOCATED184644,10868033 -# define SQLITE_MAX_LENGTH SQLITE_MAX_LENGTH184655,10868739 -# define SQLITE_MAX_COLUMN SQLITE_MAX_COLUMN184656,10868798 -# define SQLITE_MAX_SQL_LENGTH SQLITE_MAX_SQL_LENGTH184657,10868857 -# define SQLITE_MAX_EXPR_DEPTH SQLITE_MAX_EXPR_DEPTH184658,10868924 -# define SQLITE_MAX_COMPOUND_SELECT SQLITE_MAX_COMPOUND_SELECT184659,10868991 -# define SQLITE_MAX_VDBE_OP SQLITE_MAX_VDBE_OP184660,10869068 -# define SQLITE_MAX_FUNCTION_ARG SQLITE_MAX_FUNCTION_ARG184661,10869129 -# define SQLITE_DEFAULT_CACHE_SIZE SQLITE_DEFAULT_CACHE_SIZE184662,10869200 -# define SQLITE_DEFAULT_WAL_AUTOCHECKPOINT SQLITE_DEFAULT_WAL_AUTOCHECKPOINT184663,10869275 -# define SQLITE_MAX_ATTACHED SQLITE_MAX_ATTACHED184664,10869366 -# define SQLITE_MAX_VARIABLE_NUMBER SQLITE_MAX_VARIABLE_NUMBER184665,10869429 -# undef SQLITE_MAX_PAGE_SIZESQLITE_MAX_PAGE_SIZE184666,10869506 -#define SQLITE_MAX_PAGE_SIZE SQLITE_MAX_PAGE_SIZE184667,10869569 -# define SQLITE_DEFAULT_PAGE_SIZE SQLITE_DEFAULT_PAGE_SIZE184668,10869633 -# undef SQLITE_DEFAULT_PAGE_SIZESQLITE_DEFAULT_PAGE_SIZE184669,10869706 -# define SQLITE_DEFAULT_PAGE_SIZE SQLITE_DEFAULT_PAGE_SIZE184670,10869777 -# define SQLITE_MAX_DEFAULT_PAGE_SIZE SQLITE_MAX_DEFAULT_PAGE_SIZE184671,10869850 -# undef SQLITE_MAX_DEFAULT_PAGE_SIZESQLITE_MAX_DEFAULT_PAGE_SIZE184672,10869931 -# define SQLITE_MAX_DEFAULT_PAGE_SIZE SQLITE_MAX_DEFAULT_PAGE_SIZE184673,10870010 -# define SQLITE_MAX_PAGE_COUNT SQLITE_MAX_PAGE_COUNT184674,10870091 -# define SQLITE_MAX_LIKE_PATTERN_LENGTH SQLITE_MAX_LIKE_PATTERN_LENGTH184675,10870158 -# define SQLITE_MAX_TRIGGER_DEPTH SQLITE_MAX_TRIGGER_DEPTH184676,10870243 -# define SQLITE_INT_TO_PTR(SQLITE_INT_TO_PTR184677,10870316 -# define SQLITE_PTR_TO_INT(SQLITE_PTR_TO_INT184678,10870375 -# define SQLITE_INT_TO_PTR(SQLITE_INT_TO_PTR184679,10870434 -# define SQLITE_PTR_TO_INT(SQLITE_PTR_TO_INT184680,10870493 -# define SQLITE_INT_TO_PTR(SQLITE_INT_TO_PTR184681,10870552 -# define SQLITE_PTR_TO_INT(SQLITE_PTR_TO_INT184682,10870611 -# define SQLITE_INT_TO_PTR(SQLITE_INT_TO_PTR184683,10870670 -# define SQLITE_PTR_TO_INT(SQLITE_PTR_TO_INT184684,10870729 -# define SQLITE_NOINLINE SQLITE_NOINLINE184685,10870788 -# define SQLITE_NOINLINE SQLITE_NOINLINE184686,10870844 -# define SQLITE_NOINLINESQLITE_NOINLINE184687,10870900 -# define SQLITE_THREADSAFE SQLITE_THREADSAFE184688,10870955 -# define SQLITE_THREADSAFE SQLITE_THREADSAFE184689,10871016 -# define SQLITE_POWERSAFE_OVERWRITE SQLITE_POWERSAFE_OVERWRITE184690,10871077 -# define SQLITE_DEFAULT_MEMSTATUS SQLITE_DEFAULT_MEMSTATUS184691,10871154 -# define SQLITE_SYSTEM_MALLOC SQLITE_SYSTEM_MALLOC184692,10871227 -# define SQLITE_MALLOC_SOFT_LIMIT SQLITE_MALLOC_SOFT_LIMIT184693,10871292 -# define _XOPEN_SOURCE _XOPEN_SOURCE184694,10871365 -# define NDEBUG NDEBUG184695,10871417 -# undef NDEBUGNDEBUG184696,10871454 -# define SQLITE_ENABLE_EXPLAIN_COMMENTS SQLITE_ENABLE_EXPLAIN_COMMENTS184697,10871489 -# define testcase(testcase184698,10871574 -# define testcase(testcase184699,10871615 -# define TESTONLY(TESTONLY184700,10871656 -# define TESTONLY(TESTONLY184701,10871697 -# define VVA_ONLY(VVA_ONLY184702,10871738 -# define VVA_ONLY(VVA_ONLY184703,10871779 -# define ALWAYS(ALWAYS184704,10871820 -# define NEVER(NEVER184705,10871857 -# define ALWAYS(ALWAYS184706,10871892 -# define NEVER(NEVER184707,10871929 -# define ALWAYS(ALWAYS184708,10871964 -# define NEVER(NEVER184709,10872001 -# define ONLY_IF_REALLOC_STRESS(ONLY_IF_REALLOC_STRESS184710,10872036 -# define ONLY_IF_REALLOC_STRESS(ONLY_IF_REALLOC_STRESS184711,10872105 -# define ONLY_IF_REALLOC_STRESS(ONLY_IF_REALLOC_STRESS184712,10872174 -# define OSTRACE(OSTRACE184713,10872243 -# define SQLITE_HAVE_OS_TRACESQLITE_HAVE_OS_TRACE184714,10872282 -# define OSTRACE(OSTRACE184715,10872346 -# undef SQLITE_HAVE_OS_TRACESQLITE_HAVE_OS_TRACE184716,10872385 -# define SQLITE_NEED_ERR_NAMESQLITE_NEED_ERR_NAME184717,10872449 -# undef SQLITE_NEED_ERR_NAMESQLITE_NEED_ERR_NAME184718,10872513 -# undef SQLITE_ENABLE_EXPLAIN_COMMENTSSQLITE_ENABLE_EXPLAIN_COMMENTS184719,10872577 -#define IS_BIG_INT(IS_BIG_INT184720,10872660 -#define likely(likely184721,10872704 -#define unlikely(unlikely184722,10872740 -#define _SQLITE_HASH_H__SQLITE_HASH_H_184723,10872780 -#define sqliteHashFirst(sqliteHashFirst184750,10874897 -#define sqliteHashNext(sqliteHashNext184751,10874951 -#define sqliteHashData(sqliteHashData184752,10875003 -#define TK_SEMI TK_SEMI184753,10875055 -#define TK_EXPLAIN TK_EXPLAIN184754,10875093 -#define TK_QUERY TK_QUERY184755,10875137 -#define TK_PLAN TK_PLAN184756,10875177 -#define TK_BEGIN TK_BEGIN184757,10875215 -#define TK_TRANSACTION TK_TRANSACTION184758,10875255 -#define TK_DEFERRED TK_DEFERRED184759,10875307 -#define TK_IMMEDIATE TK_IMMEDIATE184760,10875353 -#define TK_EXCLUSIVE TK_EXCLUSIVE184761,10875401 -#define TK_COMMIT TK_COMMIT184762,10875449 -#define TK_END TK_END184763,10875491 -#define TK_ROLLBACK TK_ROLLBACK184764,10875527 -#define TK_SAVEPOINT TK_SAVEPOINT184765,10875573 -#define TK_RELEASE TK_RELEASE184766,10875621 -#define TK_TO TK_TO184767,10875665 -#define TK_TABLE TK_TABLE184768,10875699 -#define TK_CREATE TK_CREATE184769,10875739 -#define TK_IF TK_IF184770,10875781 -#define TK_NOT TK_NOT184771,10875815 -#define TK_EXISTS TK_EXISTS184772,10875851 -#define TK_TEMP TK_TEMP184773,10875893 -#define TK_LP TK_LP184774,10875931 -#define TK_RP TK_RP184775,10875965 -#define TK_AS TK_AS184776,10875999 -#define TK_WITHOUT TK_WITHOUT184777,10876033 -#define TK_COMMA TK_COMMA184778,10876077 -#define TK_OR TK_OR184779,10876117 -#define TK_AND TK_AND184780,10876151 -#define TK_IS TK_IS184781,10876187 -#define TK_MATCH TK_MATCH184782,10876221 -#define TK_LIKE_KW TK_LIKE_KW184783,10876261 -#define TK_BETWEEN TK_BETWEEN184784,10876305 -#define TK_IN TK_IN184785,10876349 -#define TK_ISNULL TK_ISNULL184786,10876383 -#define TK_NOTNULL TK_NOTNULL184787,10876425 -#define TK_NE TK_NE184788,10876469 -#define TK_EQ TK_EQ184789,10876503 -#define TK_GT TK_GT184790,10876537 -#define TK_LE TK_LE184791,10876571 -#define TK_LT TK_LT184792,10876605 -#define TK_GE TK_GE184793,10876639 -#define TK_ESCAPE TK_ESCAPE184794,10876673 -#define TK_BITAND TK_BITAND184795,10876715 -#define TK_BITOR TK_BITOR184796,10876757 -#define TK_LSHIFT TK_LSHIFT184797,10876797 -#define TK_RSHIFT TK_RSHIFT184798,10876839 -#define TK_PLUS TK_PLUS184799,10876881 -#define TK_MINUS TK_MINUS184800,10876919 -#define TK_STAR TK_STAR184801,10876959 -#define TK_SLASH TK_SLASH184802,10876997 -#define TK_REM TK_REM184803,10877037 -#define TK_CONCAT TK_CONCAT184804,10877073 -#define TK_COLLATE TK_COLLATE184805,10877115 -#define TK_BITNOT TK_BITNOT184806,10877159 -#define TK_ID TK_ID184807,10877201 -#define TK_INDEXED TK_INDEXED184808,10877235 -#define TK_ABORT TK_ABORT184809,10877279 -#define TK_ACTION TK_ACTION184810,10877319 -#define TK_AFTER TK_AFTER184811,10877361 -#define TK_ANALYZE TK_ANALYZE184812,10877401 -#define TK_ASC TK_ASC184813,10877445 -#define TK_ATTACH TK_ATTACH184814,10877481 -#define TK_BEFORE TK_BEFORE184815,10877523 -#define TK_BY TK_BY184816,10877565 -#define TK_CASCADE TK_CASCADE184817,10877599 -#define TK_CAST TK_CAST184818,10877643 -#define TK_COLUMNKW TK_COLUMNKW184819,10877681 -#define TK_CONFLICT TK_CONFLICT184820,10877727 -#define TK_DATABASE TK_DATABASE184821,10877773 -#define TK_DESC TK_DESC184822,10877819 -#define TK_DETACH TK_DETACH184823,10877857 -#define TK_EACH TK_EACH184824,10877899 -#define TK_FAIL TK_FAIL184825,10877937 -#define TK_FOR TK_FOR184826,10877975 -#define TK_IGNORE TK_IGNORE184827,10878011 -#define TK_INITIALLY TK_INITIALLY184828,10878053 -#define TK_INSTEAD TK_INSTEAD184829,10878101 -#define TK_NO TK_NO184830,10878145 -#define TK_KEY TK_KEY184831,10878179 -#define TK_OF TK_OF184832,10878215 -#define TK_OFFSET TK_OFFSET184833,10878249 -#define TK_PRAGMA TK_PRAGMA184834,10878291 -#define TK_RAISE TK_RAISE184835,10878333 -#define TK_RECURSIVE TK_RECURSIVE184836,10878373 -#define TK_REPLACE TK_REPLACE184837,10878421 -#define TK_RESTRICT TK_RESTRICT184838,10878465 -#define TK_ROW TK_ROW184839,10878511 -#define TK_TRIGGER TK_TRIGGER184840,10878547 -#define TK_VACUUM TK_VACUUM184841,10878591 -#define TK_VIEW TK_VIEW184842,10878633 -#define TK_VIRTUAL TK_VIRTUAL184843,10878671 -#define TK_WITH TK_WITH184844,10878715 -#define TK_REINDEX TK_REINDEX184845,10878753 -#define TK_RENAME TK_RENAME184846,10878797 -#define TK_CTIME_KW TK_CTIME_KW184847,10878839 -#define TK_ANY TK_ANY184848,10878885 -#define TK_STRING TK_STRING184849,10878921 -#define TK_JOIN_KW TK_JOIN_KW184850,10878963 -#define TK_CONSTRAINT TK_CONSTRAINT184851,10879007 -#define TK_DEFAULT TK_DEFAULT184852,10879057 -#define TK_NULL TK_NULL184853,10879101 -#define TK_PRIMARY TK_PRIMARY184854,10879139 -#define TK_UNIQUE TK_UNIQUE184855,10879183 -#define TK_CHECK TK_CHECK184856,10879225 -#define TK_REFERENCES TK_REFERENCES184857,10879265 -#define TK_AUTOINCR TK_AUTOINCR184858,10879315 -#define TK_ON TK_ON184859,10879361 -#define TK_INSERT TK_INSERT184860,10879395 -#define TK_DELETE TK_DELETE184861,10879437 -#define TK_UPDATE TK_UPDATE184862,10879479 -#define TK_SET TK_SET184863,10879521 -#define TK_DEFERRABLE TK_DEFERRABLE184864,10879557 -#define TK_FOREIGN TK_FOREIGN184865,10879607 -#define TK_DROP TK_DROP184866,10879651 -#define TK_UNION TK_UNION184867,10879689 -#define TK_ALL TK_ALL184868,10879729 -#define TK_EXCEPT TK_EXCEPT184869,10879765 -#define TK_INTERSECT TK_INTERSECT184870,10879807 -#define TK_SELECT TK_SELECT184871,10879855 -#define TK_VALUES TK_VALUES184872,10879897 -#define TK_DISTINCT TK_DISTINCT184873,10879939 -#define TK_DOT TK_DOT184874,10879985 -#define TK_FROM TK_FROM184875,10880021 -#define TK_JOIN TK_JOIN184876,10880059 -#define TK_USING TK_USING184877,10880097 -#define TK_ORDER TK_ORDER184878,10880137 -#define TK_GROUP TK_GROUP184879,10880177 -#define TK_HAVING TK_HAVING184880,10880217 -#define TK_LIMIT TK_LIMIT184881,10880259 -#define TK_WHERE TK_WHERE184882,10880299 -#define TK_INTO TK_INTO184883,10880339 -#define TK_INTEGER TK_INTEGER184884,10880377 -#define TK_FLOAT TK_FLOAT184885,10880421 -#define TK_BLOB TK_BLOB184886,10880461 -#define TK_VARIABLE TK_VARIABLE184887,10880499 -#define TK_CASE TK_CASE184888,10880545 -#define TK_WHEN TK_WHEN184889,10880583 -#define TK_THEN TK_THEN184890,10880621 -#define TK_ELSE TK_ELSE184891,10880659 -#define TK_INDEX TK_INDEX184892,10880697 -#define TK_ALTER TK_ALTER184893,10880737 -#define TK_ADD TK_ADD184894,10880777 -#define TK_TO_TEXT TK_TO_TEXT184895,10880813 -#define TK_TO_BLOB TK_TO_BLOB184896,10880857 -#define TK_TO_NUMERIC TK_TO_NUMERIC184897,10880901 -#define TK_TO_INT TK_TO_INT184898,10880951 -#define TK_TO_REAL TK_TO_REAL184899,10880993 -#define TK_ISNOT TK_ISNOT184900,10881037 -#define TK_END_OF_FILE TK_END_OF_FILE184901,10881077 -#define TK_UNCLOSED_STRING TK_UNCLOSED_STRING184902,10881129 -#define TK_FUNCTION TK_FUNCTION184903,10881189 -#define TK_COLUMN TK_COLUMN184904,10881235 -#define TK_AGG_FUNCTION TK_AGG_FUNCTION184905,10881277 -#define TK_AGG_COLUMN TK_AGG_COLUMN184906,10881331 -#define TK_UMINUS TK_UMINUS184907,10881381 -#define TK_UPLUS TK_UPLUS184908,10881423 -#define TK_REGISTER TK_REGISTER184909,10881463 -#define TK_ASTERISK TK_ASTERISK184910,10881509 -#define TK_SPAN TK_SPAN184911,10881555 -#define TK_SPACE TK_SPACE184912,10881593 -#define TK_ILLEGAL TK_ILLEGAL184913,10881633 -#define TKFLG_MASK TKFLG_MASK184914,10881677 -#define TKFLG_DONTFOLD TKFLG_DONTFOLD184915,10881721 -# define double double184916,10881773 -# define float float184917,10881810 -# define LONGDOUBLE_TYPE LONGDOUBLE_TYPE184918,10881845 -# define SQLITE_BIG_DBL SQLITE_BIG_DBL184919,10881900 -# define SQLITE_OMIT_DATETIME_FUNCS SQLITE_OMIT_DATETIME_FUNCS184920,10881955 -# define SQLITE_OMIT_TRACE SQLITE_OMIT_TRACE184921,10882032 -# undef SQLITE_MIXED_ENDIAN_64BIT_FLOATSQLITE_MIXED_ENDIAN_64BIT_FLOAT184922,10882091 -# undef SQLITE_HAVE_ISNANSQLITE_HAVE_ISNAN184923,10882176 -# define SQLITE_BIG_DBL SQLITE_BIG_DBL184924,10882233 -#define OMIT_TEMPDB OMIT_TEMPDB184925,10882286 -#define OMIT_TEMPDB OMIT_TEMPDB184926,10882332 -#define SQLITE_MAX_FILE_FORMAT SQLITE_MAX_FILE_FORMAT184927,10882378 -# define SQLITE_DEFAULT_FILE_FORMAT SQLITE_DEFAULT_FILE_FORMAT184928,10882446 -# define SQLITE_DEFAULT_RECURSIVE_TRIGGERS SQLITE_DEFAULT_RECURSIVE_TRIGGERS184929,10882523 -# define SQLITE_TEMP_STORE SQLITE_TEMP_STORE184930,10882614 -# define SQLITE_TEMP_STORE_xc SQLITE_TEMP_STORE_xc184931,10882673 -# undef SQLITE_MAX_WORKER_THREADSSQLITE_MAX_WORKER_THREADS184932,10882738 -# define SQLITE_MAX_WORKER_THREADS SQLITE_MAX_WORKER_THREADS184933,10882811 -# define SQLITE_MAX_WORKER_THREADS SQLITE_MAX_WORKER_THREADS184934,10882886 -# define SQLITE_DEFAULT_WORKER_THREADS SQLITE_DEFAULT_WORKER_THREADS184935,10882961 -# undef SQLITE_MAX_WORKER_THREADSSQLITE_MAX_WORKER_THREADS184936,10883044 -# define SQLITE_MAX_WORKER_THREADS SQLITE_MAX_WORKER_THREADS184937,10883117 -# define SQLITE_DEFAULT_PCACHE_INITSZ SQLITE_DEFAULT_PCACHE_INITSZ184938,10883192 -#define offsetof(offsetof184939,10883273 -# define MIN(MIN184940,10883313 -# define MAX(MAX184941,10883344 -#define SWAP(SWAP184942,10883375 -# define SQLITE_EBCDIC SQLITE_EBCDIC184943,10883407 -# define SQLITE_ASCII SQLITE_ASCII184944,10883458 -# define UINT32_TYPE UINT32_TYPE184945,10883507 -# define UINT32_TYPE UINT32_TYPE184946,10883555 -# define UINT16_TYPE UINT16_TYPE184947,10883603 -# define UINT16_TYPE UINT16_TYPE184948,10883651 -# define INT16_TYPE INT16_TYPE184949,10883699 -# define INT16_TYPE INT16_TYPE184950,10883745 -# define UINT8_TYPE UINT8_TYPE184951,10883791 -# define UINT8_TYPE UINT8_TYPE184952,10883837 -# define INT8_TYPE INT8_TYPE184953,10883883 -# define INT8_TYPE INT8_TYPE184954,10883927 -# define LONGDOUBLE_TYPE LONGDOUBLE_TYPE184955,10883971 -#define SQLITE_MAX_U32 SQLITE_MAX_U32184963,10884592 -# define SQLITE_PTRSIZE SQLITE_PTRSIZE184967,10884858 -# define SQLITE_PTRSIZE SQLITE_PTRSIZE184968,10884913 -# define SQLITE_PTRSIZE SQLITE_PTRSIZE184969,10884968 -#define SQLITE_WITHIN(SQLITE_WITHIN184973,10885143 -# define SQLITE_BYTEORDER SQLITE_BYTEORDER184974,10885193 -# define SQLITE_BIGENDIAN SQLITE_BIGENDIAN184975,10885250 -# define SQLITE_LITTLEENDIAN SQLITE_LITTLEENDIAN184976,10885307 -# define SQLITE_UTF16NATIVE SQLITE_UTF16NATIVE184977,10885370 -# define SQLITE_BYTEORDER SQLITE_BYTEORDER184978,10885431 -# define SQLITE_BIGENDIAN SQLITE_BIGENDIAN184979,10885488 -# define SQLITE_LITTLEENDIAN SQLITE_LITTLEENDIAN184980,10885545 -# define SQLITE_UTF16NATIVE SQLITE_UTF16NATIVE184981,10885608 -# define SQLITE_BYTEORDER SQLITE_BYTEORDER184983,10885721 -# define SQLITE_BIGENDIAN SQLITE_BIGENDIAN184984,10885778 -# define SQLITE_LITTLEENDIAN SQLITE_LITTLEENDIAN184985,10885835 -# define SQLITE_UTF16NATIVE SQLITE_UTF16NATIVE184986,10885898 -#define LARGEST_INT64 LARGEST_INT64184987,10885959 -#define SMALLEST_INT64 SMALLEST_INT64184988,10886009 -#define ROUND8(ROUND8184989,10886061 -#define ROUNDDOWN8(ROUNDDOWN8184990,10886097 -# define EIGHT_BYTE_ALIGNMENT(EIGHT_BYTE_ALIGNMENT184991,10886141 -# define EIGHT_BYTE_ALIGNMENT(EIGHT_BYTE_ALIGNMENT184992,10886206 -# undef SQLITE_MAX_MMAP_SIZESQLITE_MAX_MMAP_SIZE184993,10886271 -# define SQLITE_MAX_MMAP_SIZE SQLITE_MAX_MMAP_SIZE184994,10886334 -# define SQLITE_MAX_MMAP_SIZE SQLITE_MAX_MMAP_SIZE184995,10886399 -# define SQLITE_MAX_MMAP_SIZE SQLITE_MAX_MMAP_SIZE184996,10886466 -# define SQLITE_MAX_MMAP_SIZE_xc SQLITE_MAX_MMAP_SIZE_xc184997,10886533 -# define SQLITE_DEFAULT_MMAP_SIZE SQLITE_DEFAULT_MMAP_SIZE184998,10886604 -# define SQLITE_DEFAULT_MMAP_SIZE_xc SQLITE_DEFAULT_MMAP_SIZE_xc184999,10886677 -# undef SQLITE_DEFAULT_MMAP_SIZESQLITE_DEFAULT_MMAP_SIZE185000,10886756 -# define SQLITE_DEFAULT_MMAP_SIZE SQLITE_DEFAULT_MMAP_SIZE185001,10886827 -# undef SQLITE_ENABLE_STAT3SQLITE_ENABLE_STAT3185002,10886900 -# define SQLITE_ENABLE_STAT3_OR_STAT4 SQLITE_ENABLE_STAT3_OR_STAT4185003,10886961 -# define SQLITE_ENABLE_STAT3_OR_STAT4 SQLITE_ENABLE_STAT3_OR_STAT4185004,10887042 -# undef SQLITE_ENABLE_STAT3_OR_STAT4SQLITE_ENABLE_STAT3_OR_STAT4185005,10887123 -# define SELECTTRACE_ENABLED SELECTTRACE_ENABLED185006,10887202 -# define SELECTTRACE_ENABLED SELECTTRACE_ENABLED185007,10887265 -#define MASTER_NAME MASTER_NAME185016,10887954 -#define TEMP_MASTER_NAME TEMP_MASTER_NAME185017,10888000 -#define MASTER_ROOT MASTER_ROOT185018,10888056 -#define SCHEMA_TABLE(SCHEMA_TABLE185019,10888102 -#define ArraySize(ArraySize185020,10888150 -#define IsPowerOfTwo(IsPowerOfTwo185021,10888192 -#define SQLITE_DYNAMIC SQLITE_DYNAMIC185022,10888240 - #define SQLITE_WSD SQLITE_WSD185023,10888292 - #define GLOBAL(GLOBAL185024,10888338 - #define sqlite3GlobalConfig sqlite3GlobalConfig185025,10888376 - #define SQLITE_WSDSQLITE_WSD185026,10888440 - #define GLOBAL(GLOBAL185027,10888485 - #define sqlite3GlobalConfig sqlite3GlobalConfig185028,10888523 -#define UNUSED_PARAMETER(UNUSED_PARAMETER185029,10888587 -#define UNUSED_PARAMETER2(UNUSED_PARAMETER2185030,10888643 -#define _BTREE_H__BTREE_H_185078,10891333 -#define SQLITE_N_BTREE_META SQLITE_N_BTREE_META185079,10891374 - #define SQLITE_DEFAULT_AUTOVACUUM SQLITE_DEFAULT_AUTOVACUUM185080,10891436 -#define BTREE_AUTOVACUUM_NONE BTREE_AUTOVACUUM_NONE185081,10891512 -#define BTREE_AUTOVACUUM_FULL BTREE_AUTOVACUUM_FULL185082,10891578 -#define BTREE_AUTOVACUUM_INCR BTREE_AUTOVACUUM_INCR185083,10891644 -#define BTREE_OMIT_JOURNAL BTREE_OMIT_JOURNAL185087,10891869 -#define BTREE_MEMORY BTREE_MEMORY185088,10891929 -#define BTREE_SINGLE BTREE_SINGLE185089,10891977 -#define BTREE_UNORDERED BTREE_UNORDERED185090,10892025 -#define BTREE_INTKEY BTREE_INTKEY185091,10892079 -#define BTREE_BLOBKEY BTREE_BLOBKEY185092,10892127 -#define BTREE_FREE_PAGE_COUNT BTREE_FREE_PAGE_COUNT185093,10892177 -#define BTREE_SCHEMA_VERSION BTREE_SCHEMA_VERSION185094,10892243 -#define BTREE_FILE_FORMAT BTREE_FILE_FORMAT185095,10892307 -#define BTREE_DEFAULT_CACHE_SIZE BTREE_DEFAULT_CACHE_SIZE185096,10892365 -#define BTREE_LARGEST_ROOT_PAGE BTREE_LARGEST_ROOT_PAGE185097,10892437 -#define BTREE_TEXT_ENCODING BTREE_TEXT_ENCODING185098,10892507 -#define BTREE_USER_VERSION BTREE_USER_VERSION185099,10892569 -#define BTREE_INCR_VACUUM BTREE_INCR_VACUUM185100,10892629 -#define BTREE_APPLICATION_ID BTREE_APPLICATION_ID185101,10892687 -#define BTREE_DATA_VERSION BTREE_DATA_VERSION185102,10892751 -#define BTREE_HINT_RANGE BTREE_HINT_RANGE185103,10892811 -#define BTREE_BULKLOAD BTREE_BULKLOAD185104,10892867 -#define BTREE_SEEK_EQ BTREE_SEEK_EQ185105,10892919 -#define BTREE_WRCSR BTREE_WRCSR185106,10892969 -#define BTREE_FORDELETE BTREE_FORDELETE185107,10893015 -#define BTREE_SAVEPOSITION BTREE_SAVEPOSITION185108,10893069 -#define BTREE_AUXDELETE BTREE_AUXDELETE185109,10893129 -# define sqlite3BtreeEnter(sqlite3BtreeEnter185110,10893183 -# define sqlite3BtreeEnterAll(sqlite3BtreeEnterAll185111,10893242 -# define sqlite3BtreeSharable(sqlite3BtreeSharable185112,10893307 -# define sqlite3BtreeEnterCursor(sqlite3BtreeEnterCursor185113,10893372 -# define sqlite3BtreeLeave(sqlite3BtreeLeave185114,10893443 -# define sqlite3BtreeLeaveCursor(sqlite3BtreeLeaveCursor185115,10893502 -# define sqlite3BtreeLeaveAll(sqlite3BtreeLeaveAll185116,10893573 -# define sqlite3BtreeHoldsMutex(sqlite3BtreeHoldsMutex185117,10893638 -# define sqlite3BtreeHoldsAllMutexes(sqlite3BtreeHoldsAllMutexes185118,10893707 -# define sqlite3SchemaMutexHeld(sqlite3SchemaMutexHeld185119,10893786 -#define _SQLITE_VDBE_H__SQLITE_VDBE_H_185120,10893855 -#define P4_NOTUSED P4_NOTUSED185209,10901067 -#define P4_DYNAMIC P4_DYNAMIC185210,10901111 -#define P4_STATIC P4_STATIC185211,10901155 -#define P4_COLLSEQ P4_COLLSEQ185212,10901197 -#define P4_FUNCDEF P4_FUNCDEF185213,10901241 -#define P4_KEYINFO P4_KEYINFO185214,10901285 -#define P4_EXPR P4_EXPR185215,10901329 -#define P4_MEM P4_MEM185216,10901367 -#define P4_TRANSIENT P4_TRANSIENT185217,10901403 -#define P4_VTAB P4_VTAB185218,10901451 -#define P4_MPRINTF P4_MPRINTF185219,10901489 -#define P4_REAL P4_REAL185220,10901533 -#define P4_INT64 P4_INT64185221,10901571 -#define P4_INT32 P4_INT32185222,10901611 -#define P4_INTARRAY P4_INTARRAY185223,10901651 -#define P4_SUBPROGRAM P4_SUBPROGRAM185224,10901697 -#define P4_ADVANCE P4_ADVANCE185225,10901747 -#define P4_TABLE P4_TABLE185226,10901791 -#define P4_FUNCCTX P4_FUNCCTX185227,10901831 -#define P5_ConstraintNotNull P5_ConstraintNotNull185228,10901875 -#define P5_ConstraintUnique P5_ConstraintUnique185229,10901939 -#define P5_ConstraintCheck P5_ConstraintCheck185230,10902001 -#define P5_ConstraintFK P5_ConstraintFK185231,10902061 -#define COLNAME_NAME COLNAME_NAME185232,10902115 -#define COLNAME_DECLTYPE COLNAME_DECLTYPE185233,10902163 -#define COLNAME_DATABASE COLNAME_DATABASE185234,10902219 -#define COLNAME_TABLE COLNAME_TABLE185235,10902275 -#define COLNAME_COLUMN COLNAME_COLUMN185236,10902325 -# define COLNAME_N COLNAME_N185237,10902377 -# define COLNAME_N COLNAME_N185238,10902420 -# define COLNAME_N COLNAME_N185239,10902465 -#define ADDR(ADDR185240,10902510 -#define OP_Savepoint OP_Savepoint185241,10902542 -#define OP_AutoCommit OP_AutoCommit185242,10902590 -#define OP_Transaction OP_Transaction185243,10902640 -#define OP_SorterNext OP_SorterNext185244,10902692 -#define OP_PrevIfOpen OP_PrevIfOpen185245,10902742 -#define OP_NextIfOpen OP_NextIfOpen185246,10902792 -#define OP_Prev OP_Prev185247,10902842 -#define OP_Next OP_Next185248,10902880 -#define OP_Checkpoint OP_Checkpoint185249,10902918 -#define OP_JournalMode OP_JournalMode185250,10902968 -#define OP_Vacuum OP_Vacuum185251,10903020 -#define OP_VFilter OP_VFilter185252,10903062 -#define OP_VUpdate OP_VUpdate185253,10903106 -#define OP_Goto OP_Goto185254,10903150 -#define OP_Gosub OP_Gosub185255,10903188 -#define OP_InitCoroutine OP_InitCoroutine185256,10903228 -#define OP_Yield OP_Yield185257,10903284 -#define OP_MustBeInt OP_MustBeInt185258,10903324 -#define OP_Jump OP_Jump185259,10903372 -#define OP_Not OP_Not185260,10903410 -#define OP_Once OP_Once185261,10903446 -#define OP_If OP_If185262,10903484 -#define OP_IfNot OP_IfNot185263,10903518 -#define OP_SeekLT OP_SeekLT185264,10903558 -#define OP_SeekLE OP_SeekLE185265,10903600 -#define OP_SeekGE OP_SeekGE185266,10903642 -#define OP_SeekGT OP_SeekGT185267,10903684 -#define OP_Or OP_Or185268,10903726 -#define OP_And OP_And185269,10903760 -#define OP_NoConflict OP_NoConflict185270,10903796 -#define OP_NotFound OP_NotFound185271,10903846 -#define OP_Found OP_Found185272,10903892 -#define OP_NotExists OP_NotExists185273,10903932 -#define OP_Last OP_Last185274,10903980 -#define OP_IsNull OP_IsNull185275,10904018 -#define OP_NotNull OP_NotNull185276,10904060 -#define OP_Ne OP_Ne185277,10904104 -#define OP_Eq OP_Eq185278,10904138 -#define OP_Gt OP_Gt185279,10904172 -#define OP_Le OP_Le185280,10904206 -#define OP_Lt OP_Lt185281,10904240 -#define OP_Ge OP_Ge185282,10904274 -#define OP_SorterSort OP_SorterSort185283,10904308 -#define OP_BitAnd OP_BitAnd185284,10904358 -#define OP_BitOr OP_BitOr185285,10904400 -#define OP_ShiftLeft OP_ShiftLeft185286,10904440 -#define OP_ShiftRight OP_ShiftRight185287,10904488 -#define OP_Add OP_Add185288,10904538 -#define OP_Subtract OP_Subtract185289,10904574 -#define OP_Multiply OP_Multiply185290,10904620 -#define OP_Divide OP_Divide185291,10904666 -#define OP_Remainder OP_Remainder185292,10904708 -#define OP_Concat OP_Concat185293,10904756 -#define OP_Sort OP_Sort185294,10904798 -#define OP_BitNot OP_BitNot185295,10904836 -#define OP_Rewind OP_Rewind185296,10904878 -#define OP_IdxLE OP_IdxLE185297,10904920 -#define OP_IdxGT OP_IdxGT185298,10904960 -#define OP_IdxLT OP_IdxLT185299,10905000 -#define OP_IdxGE OP_IdxGE185300,10905040 -#define OP_RowSetRead OP_RowSetRead185301,10905080 -#define OP_RowSetTest OP_RowSetTest185302,10905130 -#define OP_Program OP_Program185303,10905180 -#define OP_FkIfZero OP_FkIfZero185304,10905224 -#define OP_IfPos OP_IfPos185305,10905270 -#define OP_IfNotZero OP_IfNotZero185306,10905310 -#define OP_DecrJumpZero OP_DecrJumpZero185307,10905358 -#define OP_IncrVacuum OP_IncrVacuum185308,10905412 -#define OP_VNext OP_VNext185309,10905462 -#define OP_Init OP_Init185310,10905502 -#define OP_Return OP_Return185311,10905540 -#define OP_EndCoroutine OP_EndCoroutine185312,10905582 -#define OP_HaltIfNull OP_HaltIfNull185313,10905636 -#define OP_Halt OP_Halt185314,10905686 -#define OP_Integer OP_Integer185315,10905724 -#define OP_Int64 OP_Int64185316,10905768 -#define OP_String OP_String185317,10905808 -#define OP_Null OP_Null185318,10905850 -#define OP_SoftNull OP_SoftNull185319,10905888 -#define OP_Blob OP_Blob185320,10905934 -#define OP_Variable OP_Variable185321,10905972 -#define OP_Move OP_Move185322,10906018 -#define OP_Copy OP_Copy185323,10906056 -#define OP_SCopy OP_SCopy185324,10906094 -#define OP_IntCopy OP_IntCopy185325,10906134 -#define OP_ResultRow OP_ResultRow185326,10906178 -#define OP_CollSeq OP_CollSeq185327,10906226 -#define OP_Function0 OP_Function0185328,10906270 -#define OP_Function OP_Function185329,10906318 -#define OP_AddImm OP_AddImm185330,10906364 -#define OP_RealAffinity OP_RealAffinity185331,10906406 -#define OP_Cast OP_Cast185332,10906460 -#define OP_Permutation OP_Permutation185333,10906498 -#define OP_Compare OP_Compare185334,10906550 -#define OP_Column OP_Column185335,10906594 -#define OP_Affinity OP_Affinity185336,10906636 -#define OP_MakeRecord OP_MakeRecord185337,10906682 -#define OP_String8 OP_String8185338,10906732 -#define OP_Count OP_Count185339,10906776 -#define OP_ReadCookie OP_ReadCookie185340,10906816 -#define OP_SetCookie OP_SetCookie185341,10906866 -#define OP_ReopenIdx OP_ReopenIdx185342,10906914 -#define OP_OpenRead OP_OpenRead185343,10906962 -#define OP_OpenWrite OP_OpenWrite185344,10907008 -#define OP_OpenAutoindex OP_OpenAutoindex185345,10907056 -#define OP_OpenEphemeral OP_OpenEphemeral185346,10907112 -#define OP_SorterOpen OP_SorterOpen185347,10907168 -#define OP_SequenceTest OP_SequenceTest185348,10907218 -#define OP_OpenPseudo OP_OpenPseudo185349,10907272 -#define OP_Close OP_Close185350,10907322 -#define OP_ColumnsUsed OP_ColumnsUsed185351,10907362 -#define OP_Sequence OP_Sequence185352,10907414 -#define OP_NewRowid OP_NewRowid185353,10907460 -#define OP_Insert OP_Insert185354,10907506 -#define OP_InsertInt OP_InsertInt185355,10907548 -#define OP_Delete OP_Delete185356,10907596 -#define OP_ResetCount OP_ResetCount185357,10907638 -#define OP_SorterCompare OP_SorterCompare185358,10907688 -#define OP_SorterData OP_SorterData185359,10907744 -#define OP_RowKey OP_RowKey185360,10907794 -#define OP_RowData OP_RowData185361,10907836 -#define OP_Rowid OP_Rowid185362,10907880 -#define OP_NullRow OP_NullRow185363,10907920 -#define OP_SorterInsert OP_SorterInsert185364,10907964 -#define OP_IdxInsert OP_IdxInsert185365,10908018 -#define OP_IdxDelete OP_IdxDelete185366,10908066 -#define OP_Seek OP_Seek185367,10908114 -#define OP_IdxRowid OP_IdxRowid185368,10908152 -#define OP_Destroy OP_Destroy185369,10908198 -#define OP_Clear OP_Clear185370,10908242 -#define OP_ResetSorter OP_ResetSorter185371,10908282 -#define OP_CreateIndex OP_CreateIndex185372,10908334 -#define OP_CreateTable OP_CreateTable185373,10908386 -#define OP_Real OP_Real185374,10908438 -#define OP_ParseSchema OP_ParseSchema185375,10908476 -#define OP_LoadAnalysis OP_LoadAnalysis185376,10908528 -#define OP_DropTable OP_DropTable185377,10908582 -#define OP_DropIndex OP_DropIndex185378,10908630 -#define OP_DropTrigger OP_DropTrigger185379,10908678 -#define OP_IntegrityCk OP_IntegrityCk185380,10908730 -#define OP_RowSetAdd OP_RowSetAdd185381,10908782 -#define OP_Param OP_Param185382,10908830 -#define OP_FkCounter OP_FkCounter185383,10908870 -#define OP_MemMax OP_MemMax185384,10908918 -#define OP_OffsetLimit OP_OffsetLimit185385,10908960 -#define OP_AggStep0 OP_AggStep0185386,10909012 -#define OP_AggStep OP_AggStep185387,10909058 -#define OP_AggFinal OP_AggFinal185388,10909102 -#define OP_Expire OP_Expire185389,10909148 -#define OP_TableLock OP_TableLock185390,10909190 -#define OP_VBegin OP_VBegin185391,10909238 -#define OP_VCreate OP_VCreate185392,10909280 -#define OP_VDestroy OP_VDestroy185393,10909324 -#define OP_VOpen OP_VOpen185394,10909370 -#define OP_VColumn OP_VColumn185395,10909410 -#define OP_VRename OP_VRename185396,10909454 -#define OP_Pagecount OP_Pagecount185397,10909498 -#define OP_MaxPgcnt OP_MaxPgcnt185398,10909546 -#define OP_CursorHint OP_CursorHint185399,10909592 -#define OP_Noop OP_Noop185400,10909642 -#define OP_Explain OP_Explain185401,10909680 -#define OPFLG_JUMP OPFLG_JUMP185402,10909724 -#define OPFLG_IN1 OPFLG_IN1185403,10909768 -#define OPFLG_IN2 OPFLG_IN2185404,10909810 -#define OPFLG_IN3 OPFLG_IN3185405,10909852 -#define OPFLG_OUT2 OPFLG_OUT2185406,10909894 -#define OPFLG_OUT3 OPFLG_OUT3185407,10909938 -#define OPFLG_INITIALIZER OPFLG_INITIALIZER185408,10909982 -#define SQLITE_MX_JUMP_OPCODE SQLITE_MX_JUMP_OPCODE185409,10910040 -# define sqlite3VdbeVerifyNoMallocRequired(sqlite3VdbeVerifyNoMallocRequired185410,10910106 -# define VdbeComment(VdbeComment185412,10910287 -# define VdbeNoopComment(VdbeNoopComment185413,10910334 -# define VdbeModuleComment(VdbeModuleComment185414,10910389 -# define VdbeModuleComment(VdbeModuleComment185415,10910450 -# define VdbeComment(VdbeComment185416,10910511 -# define VdbeNoopComment(VdbeNoopComment185417,10910558 -# define VdbeModuleComment(VdbeModuleComment185418,10910613 -# define VdbeCoverage(VdbeCoverage185419,10910672 -# define VdbeCoverageIf(VdbeCoverageIf185420,10910721 -# define VdbeCoverageAlwaysTaken(VdbeCoverageAlwaysTaken185421,10910774 -# define VdbeCoverageNeverTaken(VdbeCoverageNeverTaken185422,10910845 -# define VDBE_OFFSET_LINENO(VDBE_OFFSET_LINENO185423,10910914 -# define VdbeCoverage(VdbeCoverage185424,10910975 -# define VdbeCoverageIf(VdbeCoverageIf185425,10911024 -# define VdbeCoverageAlwaysTaken(VdbeCoverageAlwaysTaken185426,10911077 -# define VdbeCoverageNeverTaken(VdbeCoverageNeverTaken185427,10911148 -# define VDBE_OFFSET_LINENO(VDBE_OFFSET_LINENO185428,10911217 -# define sqlite3VdbeScanStatus(sqlite3VdbeScanStatus185429,10911278 -#define _PAGER_H__PAGER_H_185430,10911345 - #define SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT185431,10911386 -#define PAGER_MJ_PGNO(PAGER_MJ_PGNO185435,10911610 -#define PAGER_OMIT_JOURNAL PAGER_OMIT_JOURNAL185436,10911660 -#define PAGER_MEMORY PAGER_MEMORY185437,10911720 -#define PAGER_LOCKINGMODE_QUERY PAGER_LOCKINGMODE_QUERY185438,10911768 -#define PAGER_LOCKINGMODE_NORMAL PAGER_LOCKINGMODE_NORMAL185439,10911838 -#define PAGER_LOCKINGMODE_EXCLUSIVE PAGER_LOCKINGMODE_EXCLUSIVE185440,10911910 -#define PAGER_JOURNALMODE_QUERY PAGER_JOURNALMODE_QUERY185441,10911988 -#define PAGER_JOURNALMODE_DELETE PAGER_JOURNALMODE_DELETE185442,10912058 -#define PAGER_JOURNALMODE_PERSIST PAGER_JOURNALMODE_PERSIST185443,10912130 -#define PAGER_JOURNALMODE_OFF PAGER_JOURNALMODE_OFF185444,10912204 -#define PAGER_JOURNALMODE_TRUNCATE PAGER_JOURNALMODE_TRUNCATE185445,10912270 -#define PAGER_JOURNALMODE_MEMORY PAGER_JOURNALMODE_MEMORY185446,10912346 -#define PAGER_JOURNALMODE_WAL PAGER_JOURNALMODE_WAL185447,10912418 -#define PAGER_GET_NOCONTENT PAGER_GET_NOCONTENT185448,10912484 -#define PAGER_GET_READONLY PAGER_GET_READONLY185449,10912546 -#define PAGER_SYNCHRONOUS_OFF PAGER_SYNCHRONOUS_OFF185450,10912606 -#define PAGER_SYNCHRONOUS_NORMAL PAGER_SYNCHRONOUS_NORMAL185451,10912672 -#define PAGER_SYNCHRONOUS_FULL PAGER_SYNCHRONOUS_FULL185452,10912744 -#define PAGER_SYNCHRONOUS_EXTRA PAGER_SYNCHRONOUS_EXTRA185453,10912812 -#define PAGER_SYNCHRONOUS_MASK PAGER_SYNCHRONOUS_MASK185454,10912882 -#define PAGER_FULLFSYNC PAGER_FULLFSYNC185455,10912950 -#define PAGER_CKPT_FULLFSYNC PAGER_CKPT_FULLFSYNC185456,10913004 -#define PAGER_CACHESPILL PAGER_CACHESPILL185457,10913068 -#define PAGER_FLAGS_MASK PAGER_FLAGS_MASK185458,10913124 -# define disable_simulated_io_errors(disable_simulated_io_errors185459,10913180 -# define enable_simulated_io_errors(enable_simulated_io_errors185460,10913259 -#define PGHDR_CLEAN PGHDR_CLEAN185488,10915621 -#define PGHDR_DIRTY PGHDR_DIRTY185489,10915667 -#define PGHDR_WRITEABLE PGHDR_WRITEABLE185490,10915713 -#define PGHDR_NEED_SYNC PGHDR_NEED_SYNC185491,10915767 -#define PGHDR_DONT_WRITE PGHDR_DONT_WRITE185492,10915821 -#define PGHDR_MMAP PGHDR_MMAP185493,10915877 -#define PGHDR_WAL_APPEND PGHDR_WAL_APPEND185494,10915921 -#define _SQLITE_OS_H__SQLITE_OS_H_185495,10915977 -#define _OS_SETUP_H__OS_SETUP_H_185496,10916026 -# undef SQLITE_OS_UNIXSQLITE_OS_UNIX185497,10916073 -# define SQLITE_OS_UNIX SQLITE_OS_UNIX185498,10916127 -# undef SQLITE_OS_WINSQLITE_OS_WIN185499,10916183 -# define SQLITE_OS_WIN SQLITE_OS_WIN185500,10916235 -# undef SQLITE_OS_OTHERSQLITE_OS_OTHER185501,10916289 -# define SQLITE_OS_OTHER SQLITE_OS_OTHER185502,10916345 -# define SQLITE_OS_WIN SQLITE_OS_WIN185503,10916401 -# define SQLITE_OS_UNIX SQLITE_OS_UNIX185504,10916457 -# define SQLITE_OS_WIN SQLITE_OS_WIN185505,10916515 -# define SQLITE_OS_UNIX SQLITE_OS_UNIX185506,10916571 -# define SQLITE_OS_UNIX SQLITE_OS_UNIX185507,10916629 -# define SQLITE_OS_WIN SQLITE_OS_WIN185508,10916685 -# define SET_FULLSYNC(SET_FULLSYNC185509,10916739 -# define SQLITE_DEFAULT_SECTOR_SIZE SQLITE_DEFAULT_SECTOR_SIZE185510,10916788 -# define SQLITE_TEMP_FILE_PREFIX SQLITE_TEMP_FILE_PREFIX185511,10916865 -#define NO_LOCK NO_LOCK185512,10916936 -#define SHARED_LOCK SHARED_LOCK185513,10916974 -#define RESERVED_LOCK RESERVED_LOCK185514,10917020 -#define PENDING_LOCK PENDING_LOCK185515,10917070 -#define EXCLUSIVE_LOCK EXCLUSIVE_LOCK185516,10917118 -# define PENDING_BYTE PENDING_BYTE185517,10917170 -# define PENDING_BYTE PENDING_BYTE185518,10917219 -#define RESERVED_BYTE RESERVED_BYTE185519,10917268 -#define SHARED_FIRST SHARED_FIRST185520,10917318 -#define SHARED_SIZE SHARED_SIZE185521,10917366 -#define SQLITE_FCNTL_DB_UNCHANGED SQLITE_FCNTL_DB_UNCHANGED185522,10917412 -# define SQLITE_MUTEX_OMITSQLITE_MUTEX_OMIT185523,10917486 -# define SQLITE_MUTEX_PTHREADSSQLITE_MUTEX_PTHREADS185524,10917544 -# define SQLITE_MUTEX_W32SQLITE_MUTEX_W32185525,10917613 -# define SQLITE_MUTEX_NOOPSQLITE_MUTEX_NOOP185526,10917672 -#define sqlite3_mutex_alloc(sqlite3_mutex_alloc185527,10917733 -#define sqlite3_mutex_free(sqlite3_mutex_free185528,10917795 -#define sqlite3_mutex_enter(sqlite3_mutex_enter185529,10917855 -#define sqlite3_mutex_try(sqlite3_mutex_try185530,10917917 -#define sqlite3_mutex_leave(sqlite3_mutex_leave185531,10917975 -#define sqlite3_mutex_held(sqlite3_mutex_held185532,10918037 -#define sqlite3_mutex_notheld(sqlite3_mutex_notheld185533,10918097 -#define sqlite3MutexAlloc(sqlite3MutexAlloc185534,10918163 -#define sqlite3MutexInit(sqlite3MutexInit185535,10918221 -#define sqlite3MutexEnd(sqlite3MutexEnd185536,10918277 -#define MUTEX_LOGIC(MUTEX_LOGIC185537,10918331 -#define MUTEX_LOGIC(MUTEX_LOGIC185538,10918377 -# define SQLITE_DEFAULT_SYNCHRONOUS SQLITE_DEFAULT_SYNCHRONOUS185539,10918423 -# define SQLITE_DEFAULT_SYNCHRONOUS SQLITE_DEFAULT_SYNCHRONOUS185540,10918500 -# define SQLITE_DEFAULT_WAL_SYNCHRONOUS SQLITE_DEFAULT_WAL_SYNCHRONOUS185541,10918577 -#define DbHasProperty(DbHasProperty185576,10921698 -#define DbHasAnyProperty(DbHasAnyProperty185577,10921748 -#define DbSetProperty(DbSetProperty185578,10921804 -#define DbClearProperty(DbClearProperty185579,10921854 -#define DB_SchemaLoaded DB_SchemaLoaded185580,10921908 -#define DB_UnresetViews DB_UnresetViews185581,10921962 -#define DB_Empty DB_Empty185582,10922016 -#define SQLITE_N_LIMIT SQLITE_N_LIMIT185583,10922056 -#define SQLITE_FUNC_HASH_SZ SQLITE_FUNC_HASH_SZ185606,10924064 -#define UAUTH_Unknown UAUTH_Unknown185620,10925285 -#define UAUTH_Fail UAUTH_Fail185621,10925335 -#define UAUTH_User UAUTH_User185622,10925379 -#define UAUTH_Admin UAUTH_Admin185623,10925423 -#define SCHEMA_ENC(SCHEMA_ENC185815,10943938 -#define ENC(ENC185816,10943982 -#define SQLITE_VdbeTrace SQLITE_VdbeTrace185817,10944012 -#define SQLITE_InternChanges SQLITE_InternChanges185818,10944068 -#define SQLITE_FullColNames SQLITE_FullColNames185819,10944132 -#define SQLITE_FullFSync SQLITE_FullFSync185820,10944194 -#define SQLITE_CkptFullFSync SQLITE_CkptFullFSync185821,10944250 -#define SQLITE_CacheSpill SQLITE_CacheSpill185822,10944314 -#define SQLITE_ShortColNames SQLITE_ShortColNames185823,10944372 -#define SQLITE_CountRows SQLITE_CountRows185824,10944436 -#define SQLITE_NullCallback SQLITE_NullCallback185825,10944492 -#define SQLITE_SqlTrace SQLITE_SqlTrace185826,10944554 -#define SQLITE_VdbeListing SQLITE_VdbeListing185827,10944608 -#define SQLITE_WriteSchema SQLITE_WriteSchema185828,10944668 -#define SQLITE_VdbeAddopTrace SQLITE_VdbeAddopTrace185829,10944728 -#define SQLITE_IgnoreChecks SQLITE_IgnoreChecks185830,10944794 -#define SQLITE_ReadUncommitted SQLITE_ReadUncommitted185831,10944856 -#define SQLITE_LegacyFileFmt SQLITE_LegacyFileFmt185832,10944924 -#define SQLITE_RecoveryMode SQLITE_RecoveryMode185833,10944988 -#define SQLITE_ReverseOrder SQLITE_ReverseOrder185834,10945050 -#define SQLITE_RecTriggers SQLITE_RecTriggers185835,10945112 -#define SQLITE_ForeignKeys SQLITE_ForeignKeys185836,10945172 -#define SQLITE_AutoIndex SQLITE_AutoIndex185837,10945232 -#define SQLITE_PreferBuiltin SQLITE_PreferBuiltin185838,10945288 -#define SQLITE_LoadExtension SQLITE_LoadExtension185839,10945352 -#define SQLITE_LoadExtFunc SQLITE_LoadExtFunc185840,10945416 -#define SQLITE_EnableTrigger SQLITE_EnableTrigger185841,10945476 -#define SQLITE_DeferFKs SQLITE_DeferFKs185842,10945540 -#define SQLITE_QueryOnly SQLITE_QueryOnly185843,10945594 -#define SQLITE_VdbeEQP SQLITE_VdbeEQP185844,10945650 -#define SQLITE_Vacuum SQLITE_Vacuum185845,10945702 -#define SQLITE_CellSizeCk SQLITE_CellSizeCk185846,10945752 -#define SQLITE_Fts3Tokenizer SQLITE_Fts3Tokenizer185847,10945810 -#define SQLITE_QueryFlattener SQLITE_QueryFlattener185848,10945874 -#define SQLITE_ColumnCache SQLITE_ColumnCache185849,10945940 -#define SQLITE_GroupByOrder SQLITE_GroupByOrder185850,10946000 -#define SQLITE_FactorOutConst SQLITE_FactorOutConst185851,10946062 -#define SQLITE_DistinctOpt SQLITE_DistinctOpt185852,10946128 -#define SQLITE_CoverIdxScan SQLITE_CoverIdxScan185853,10946188 -#define SQLITE_OrderByIdxJoin SQLITE_OrderByIdxJoin185854,10946250 -#define SQLITE_SubqCoroutine SQLITE_SubqCoroutine185855,10946316 -#define SQLITE_Transitive SQLITE_Transitive185856,10946380 -#define SQLITE_OmitNoopJoin SQLITE_OmitNoopJoin185857,10946438 -#define SQLITE_Stat34 SQLITE_Stat34185858,10946500 -#define SQLITE_CursorHints SQLITE_CursorHints185859,10946550 -#define SQLITE_AllOpts SQLITE_AllOpts185860,10946610 -#define OptimizationDisabled(OptimizationDisabled185861,10946662 -#define OptimizationEnabled(OptimizationEnabled185862,10946726 -#define OptimizationDisabled(OptimizationDisabled185863,10946788 -#define OptimizationEnabled(OptimizationEnabled185864,10946852 -#define ConstFactorOk(ConstFactorOk185865,10946914 -#define SQLITE_MAGIC_OPEN SQLITE_MAGIC_OPEN185866,10946964 -#define SQLITE_MAGIC_CLOSED SQLITE_MAGIC_CLOSED185867,10947022 -#define SQLITE_MAGIC_SICK SQLITE_MAGIC_SICK185868,10947084 -#define SQLITE_MAGIC_BUSY SQLITE_MAGIC_BUSY185869,10947142 -#define SQLITE_MAGIC_ERROR SQLITE_MAGIC_ERROR185870,10947200 -#define SQLITE_MAGIC_ZOMBIE SQLITE_MAGIC_ZOMBIE185871,10947260 -#define SQLITE_FUNC_ENCMASK SQLITE_FUNC_ENCMASK185900,10949448 -#define SQLITE_FUNC_LIKE SQLITE_FUNC_LIKE185901,10949510 -#define SQLITE_FUNC_CASE SQLITE_FUNC_CASE185902,10949566 -#define SQLITE_FUNC_EPHEM SQLITE_FUNC_EPHEM185903,10949622 -#define SQLITE_FUNC_NEEDCOLL SQLITE_FUNC_NEEDCOLL185904,10949680 -#define SQLITE_FUNC_LENGTH SQLITE_FUNC_LENGTH185905,10949744 -#define SQLITE_FUNC_TYPEOF SQLITE_FUNC_TYPEOF185906,10949804 -#define SQLITE_FUNC_COUNT SQLITE_FUNC_COUNT185907,10949864 -#define SQLITE_FUNC_COALESCE SQLITE_FUNC_COALESCE185908,10949922 -#define SQLITE_FUNC_UNLIKELY SQLITE_FUNC_UNLIKELY185909,10949986 -#define SQLITE_FUNC_CONSTANT SQLITE_FUNC_CONSTANT185910,10950050 -#define SQLITE_FUNC_MINMAX SQLITE_FUNC_MINMAX185911,10950114 -#define SQLITE_FUNC_SLOCHNG SQLITE_FUNC_SLOCHNG185912,10950174 -#define FUNCTION(FUNCTION185913,10950236 -#define VFUNCTION(VFUNCTION185914,10950276 -#define DFUNCTION(DFUNCTION185915,10950318 -#define FUNCTION2(FUNCTION2185916,10950360 -#define STR_FUNCTION(STR_FUNCTION185917,10950402 -#define LIKEFUNC(LIKEFUNC185918,10950450 -#define AGGREGATE(AGGREGATE185919,10950490 -#define AGGREGATE2(AGGREGATE2185920,10950532 -#define SAVEPOINT_BEGIN SAVEPOINT_BEGIN185930,10951440 -#define SAVEPOINT_RELEASE SAVEPOINT_RELEASE185931,10951494 -#define SAVEPOINT_ROLLBACK SAVEPOINT_ROLLBACK185932,10951552 -#define COLFLAG_PRIMKEY COLFLAG_PRIMKEY185959,10953940 -#define COLFLAG_HIDDEN COLFLAG_HIDDEN185960,10953994 -#define COLFLAG_HASTYPE COLFLAG_HASTYPE185961,10954046 -#define SQLITE_SO_ASC SQLITE_SO_ASC185973,10954967 -#define SQLITE_SO_DESC SQLITE_SO_DESC185974,10955017 -#define SQLITE_SO_UNDEFINED SQLITE_SO_UNDEFINED185975,10955069 -#define SQLITE_AFF_BLOB SQLITE_AFF_BLOB185976,10955131 -#define SQLITE_AFF_TEXT SQLITE_AFF_TEXT185977,10955185 -#define SQLITE_AFF_NUMERIC SQLITE_AFF_NUMERIC185978,10955239 -#define SQLITE_AFF_INTEGER SQLITE_AFF_INTEGER185979,10955299 -#define SQLITE_AFF_REAL SQLITE_AFF_REAL185980,10955359 -#define sqlite3IsNumericAffinity(sqlite3IsNumericAffinity185981,10955413 -#define SQLITE_AFF_MASK SQLITE_AFF_MASK185982,10955485 -#define SQLITE_JUMPIFNULL SQLITE_JUMPIFNULL185983,10955539 -#define SQLITE_STOREP2 SQLITE_STOREP2185984,10955597 -#define SQLITE_NULLEQ SQLITE_NULLEQ185985,10955649 -#define SQLITE_NOTNULL SQLITE_NOTNULL185986,10955699 -#define TF_Readonly TF_Readonly186049,10961264 -#define TF_Ephemeral TF_Ephemeral186050,10961310 -#define TF_HasPrimaryKey TF_HasPrimaryKey186051,10961358 -#define TF_Autoincrement TF_Autoincrement186052,10961414 -#define TF_Virtual TF_Virtual186053,10961470 -#define TF_WithoutRowid TF_WithoutRowid186054,10961514 -#define TF_NoVisibleRowid TF_NoVisibleRowid186055,10961568 -#define TF_OOOHidden TF_OOOHidden186056,10961626 -# define IsVirtual(IsVirtual186057,10961674 -# define IsVirtual(IsVirtual186058,10961718 -# define IsHiddenColumn(IsHiddenColumn186059,10961762 -# define IsOrdinaryHiddenColumn(IsOrdinaryHiddenColumn186060,10961816 -# define IsHiddenColumn(IsHiddenColumn186061,10961886 -# define IsOrdinaryHiddenColumn(IsOrdinaryHiddenColumn186062,10961940 -# define IsHiddenColumn(IsHiddenColumn186063,10962010 -# define IsOrdinaryHiddenColumn(IsOrdinaryHiddenColumn186064,10962064 -#define HasRowid(HasRowid186065,10962134 -#define VisibleRowid(VisibleRowid186066,10962174 -#define OE_None OE_None186094,10964696 -#define OE_Rollback OE_Rollback186095,10964734 -#define OE_Abort OE_Abort186096,10964780 -#define OE_Fail OE_Fail186097,10964820 -#define OE_Ignore OE_Ignore186098,10964858 -#define OE_Replace OE_Replace186099,10964900 -#define OE_Restrict OE_Restrict186100,10964944 -#define OE_SetNull OE_SetNull186101,10964990 -#define OE_SetDflt OE_SetDflt186102,10965034 -#define OE_Cascade OE_Cascade186103,10965078 -#define OE_Default OE_Default186104,10965122 -#define SQLITE_IDXTYPE_APPDEF SQLITE_IDXTYPE_APPDEF186194,10973349 -#define SQLITE_IDXTYPE_UNIQUE SQLITE_IDXTYPE_UNIQUE186195,10973415 -#define SQLITE_IDXTYPE_PRIMARYKEY SQLITE_IDXTYPE_PRIMARYKEY186196,10973481 -#define IsPrimaryKeyIndex(IsPrimaryKeyIndex186197,10973555 -#define IsUniqueIndex(IsUniqueIndex186198,10973613 -#define XN_ROWID XN_ROWID186199,10973663 -#define XN_EXPR XN_EXPR186200,10973703 -#define EP_FromJoin EP_FromJoin186309,10983159 -#define EP_Agg EP_Agg186310,10983205 -#define EP_Resolved EP_Resolved186311,10983241 -#define EP_Error EP_Error186312,10983287 -#define EP_Distinct EP_Distinct186313,10983327 -#define EP_VarSelect EP_VarSelect186314,10983373 -#define EP_DblQuoted EP_DblQuoted186315,10983421 -#define EP_InfixFunc EP_InfixFunc186316,10983469 -#define EP_Collate EP_Collate186317,10983517 -#define EP_Generic EP_Generic186318,10983561 -#define EP_IntValue EP_IntValue186319,10983605 -#define EP_xIsSelect EP_xIsSelect186320,10983651 -#define EP_Skip EP_Skip186321,10983699 -#define EP_Reduced EP_Reduced186322,10983737 -#define EP_TokenOnly EP_TokenOnly186323,10983781 -#define EP_Static EP_Static186324,10983829 -#define EP_MemToken EP_MemToken186325,10983871 -#define EP_NoReduce EP_NoReduce186326,10983917 -#define EP_Unlikely EP_Unlikely186327,10983963 -#define EP_ConstFunc EP_ConstFunc186328,10984009 -#define EP_CanBeNull EP_CanBeNull186329,10984057 -#define EP_Subquery EP_Subquery186330,10984105 -#define EP_Alias EP_Alias186331,10984151 -#define EP_Propagate EP_Propagate186332,10984191 -#define ExprHasProperty(ExprHasProperty186333,10984239 -#define ExprHasAllProperty(ExprHasAllProperty186334,10984293 -#define ExprSetProperty(ExprSetProperty186335,10984353 -#define ExprClearProperty(ExprClearProperty186336,10984407 -# define ExprSetVVAProperty(ExprSetVVAProperty186337,10984465 -# define ExprSetVVAProperty(ExprSetVVAProperty186338,10984526 -#define EXPR_FULLSIZE EXPR_FULLSIZE186339,10984587 -#define EXPR_REDUCEDSIZE EXPR_REDUCEDSIZE186340,10984637 -#define EXPR_TOKENONLYSIZE EXPR_TOKENONLYSIZE186341,10984693 -#define EXPRDUP_REDUCE EXPRDUP_REDUCE186342,10984753 -#define BMS BMS186394,10989073 -#define MASKBIT(MASKBIT186395,10989103 -#define MASKBIT32(MASKBIT32186396,10989141 -#define ALLBITS ALLBITS186397,10989183 -#define JT_INNER JT_INNER186459,10995168 -#define JT_CROSS JT_CROSS186460,10995208 -#define JT_NATURAL JT_NATURAL186461,10995248 -#define JT_LEFT JT_LEFT186462,10995292 -#define JT_RIGHT JT_RIGHT186463,10995330 -#define JT_OUTER JT_OUTER186464,10995370 -#define JT_ERROR JT_ERROR186465,10995410 -#define WHERE_ORDERBY_NORMAL WHERE_ORDERBY_NORMAL186466,10995450 -#define WHERE_ORDERBY_MIN WHERE_ORDERBY_MIN186467,10995514 -#define WHERE_ORDERBY_MAX WHERE_ORDERBY_MAX186468,10995572 -#define WHERE_ONEPASS_DESIRED WHERE_ONEPASS_DESIRED186469,10995630 -#define WHERE_DUPLICATES_OK WHERE_DUPLICATES_OK186470,10995696 -#define WHERE_OMIT_OPEN_CLOSE WHERE_OMIT_OPEN_CLOSE186471,10995758 -#define WHERE_FORCE_TABLE WHERE_FORCE_TABLE186472,10995824 -#define WHERE_ONETABLE_ONLY WHERE_ONETABLE_ONLY186473,10995882 -#define WHERE_NO_AUTOINDEX WHERE_NO_AUTOINDEX186474,10995944 -#define WHERE_GROUPBY WHERE_GROUPBY186475,10996004 -#define WHERE_DISTINCTBY WHERE_DISTINCTBY186476,10996054 -#define WHERE_WANT_DISTINCT WHERE_WANT_DISTINCT186477,10996110 -#define WHERE_SORTBYGROUP WHERE_SORTBYGROUP186478,10996172 -#define WHERE_REOPEN_IDX WHERE_REOPEN_IDX186479,10996230 -#define WHERE_ONEPASS_MULTIROW WHERE_ONEPASS_MULTIROW186480,10996286 -#define WHERE_USE_LIMIT WHERE_USE_LIMIT186481,10996354 -#define WHERE_SEEK_TABLE WHERE_SEEK_TABLE186482,10996408 -#define WHERE_DISTINCT_NOOP WHERE_DISTINCT_NOOP186483,10996464 -#define WHERE_DISTINCT_UNIQUE WHERE_DISTINCT_UNIQUE186484,10996526 -#define WHERE_DISTINCT_ORDERED WHERE_DISTINCT_ORDERED186485,10996592 -#define WHERE_DISTINCT_UNORDERED WHERE_DISTINCT_UNORDERED186486,10996660 -#define NC_AllowAgg NC_AllowAgg186504,10998278 -#define NC_PartIdx NC_PartIdx186505,10998324 -#define NC_IsCheck NC_IsCheck186506,10998368 -#define NC_InAggFunc NC_InAggFunc186507,10998412 -#define NC_HasAgg NC_HasAgg186508,10998460 -#define NC_IdxExpr NC_IdxExpr186509,10998502 -#define NC_VarSelect NC_VarSelect186510,10998546 -#define NC_MinMaxAgg NC_MinMaxAgg186511,10998594 -#define SF_Distinct SF_Distinct186549,11001906 -#define SF_All SF_All186550,11001952 -#define SF_Resolved SF_Resolved186551,11001988 -#define SF_Aggregate SF_Aggregate186552,11002034 -#define SF_HasAgg SF_HasAgg186553,11002082 -#define SF_UsesEphemeral SF_UsesEphemeral186554,11002124 -#define SF_Expanded SF_Expanded186555,11002180 -#define SF_HasTypeInfo SF_HasTypeInfo186556,11002226 -#define SF_Compound SF_Compound186557,11002278 -#define SF_Values SF_Values186558,11002324 -#define SF_MultiValue SF_MultiValue186559,11002366 -#define SF_NestedFrom SF_NestedFrom186560,11002416 -#define SF_MinMaxAgg SF_MinMaxAgg186561,11002466 -#define SF_Recursive SF_Recursive186562,11002514 -#define SF_FixedLimit SF_FixedLimit186563,11002562 -#define SF_MaybeConvert SF_MaybeConvert186564,11002612 -#define SF_Converted SF_Converted186565,11002666 -#define SF_IncludeHidden SF_IncludeHidden186566,11002714 -#define SRT_Union SRT_Union186567,11002770 -#define SRT_Except SRT_Except186568,11002812 -#define SRT_Exists SRT_Exists186569,11002856 -#define SRT_Discard SRT_Discard186570,11002900 -#define SRT_Fifo SRT_Fifo186571,11002946 -#define SRT_DistFifo SRT_DistFifo186572,11002986 -#define SRT_Queue SRT_Queue186573,11003034 -#define SRT_DistQueue SRT_DistQueue186574,11003076 -#define IgnorableOrderby(IgnorableOrderby186575,11003126 -#define SRT_Output SRT_Output186576,11003182 -#define SRT_Mem SRT_Mem186577,11003226 -#define SRT_Set SRT_Set186578,11003264 -#define SRT_EphemTab SRT_EphemTab186579,11003302 -#define SRT_Coroutine SRT_Coroutine186580,11003350 -#define SRT_Table SRT_Table186581,11003400 -# define SQLITE_N_COLCACHE SQLITE_N_COLCACHE186604,11005444 -# define DbMaskTest(DbMaskTest186617,11006570 -# define DbMaskZero(DbMaskZero186618,11006615 -# define DbMaskSet(DbMaskSet186619,11006660 -# define DbMaskAllZero(DbMaskAllZero186620,11006703 -# define DbMaskNonZero(DbMaskNonZero186621,11006754 -# define DbMaskTest(DbMaskTest186623,11006858 -# define DbMaskZero(DbMaskZero186624,11006903 -# define DbMaskSet(DbMaskSet186625,11006948 -# define DbMaskAllZero(DbMaskAllZero186626,11006991 -# define DbMaskNonZero(DbMaskNonZero186627,11007042 - #define IN_DECLARE_VTAB IN_DECLARE_VTAB186799,11023290 - #define IN_DECLARE_VTAB IN_DECLARE_VTAB186800,11023346 -#define OPFLAG_NCHANGE OPFLAG_NCHANGE186806,11023818 -#define OPFLAG_EPHEM OPFLAG_EPHEM186807,11023870 -#define OPFLAG_LASTROWID OPFLAG_LASTROWID186808,11023918 -#define OPFLAG_ISUPDATE OPFLAG_ISUPDATE186809,11023974 -#define OPFLAG_APPEND OPFLAG_APPEND186810,11024028 -#define OPFLAG_USESEEKRESULT OPFLAG_USESEEKRESULT186811,11024078 -#define OPFLAG_ISNOOP OPFLAG_ISNOOP186812,11024142 -#define OPFLAG_LENGTHARG OPFLAG_LENGTHARG186813,11024192 -#define OPFLAG_TYPEOFARG OPFLAG_TYPEOFARG186814,11024248 -#define OPFLAG_BULKCSR OPFLAG_BULKCSR186815,11024304 -#define OPFLAG_SEEKEQ OPFLAG_SEEKEQ186816,11024356 -#define OPFLAG_FORDELETE OPFLAG_FORDELETE186817,11024406 -#define OPFLAG_P2ISREG OPFLAG_P2ISREG186818,11024462 -#define OPFLAG_PERMUTE OPFLAG_PERMUTE186819,11024514 -#define OPFLAG_SAVEPOSITION OPFLAG_SAVEPOSITION186820,11024566 -#define OPFLAG_AUXDELETE OPFLAG_AUXDELETE186821,11024628 -#define TRIGGER_BEFORE TRIGGER_BEFORE186843,11026682 -#define TRIGGER_AFTER TRIGGER_AFTER186844,11026734 -#define STRACCUM_NOMEM STRACCUM_NOMEM186897,11031371 -#define STRACCUM_TOOBIG STRACCUM_TOOBIG186898,11031423 -#define SQLITE_PRINTF_INTERNAL SQLITE_PRINTF_INTERNAL186899,11031477 -#define SQLITE_PRINTF_SQLFUNC SQLITE_PRINTF_SQLFUNC186900,11031545 -#define SQLITE_PRINTF_MALLOCED SQLITE_PRINTF_MALLOCED186901,11031611 -#define isMalloced(isMalloced186902,11031679 -#define CORRUPT_DB CORRUPT_DB186999,11041090 -#define WRC_Continue WRC_Continue187029,11043849 -#define WRC_Prune WRC_Prune187030,11043897 -#define WRC_Abort WRC_Abort187031,11043939 -#define SQLITE_SKIP_UTF8(SQLITE_SKIP_UTF8187054,11045849 -#define SQLITE_CORRUPT_BKPT SQLITE_CORRUPT_BKPT187055,11045905 -#define SQLITE_MISUSE_BKPT SQLITE_MISUSE_BKPT187056,11045967 -#define SQLITE_CANTOPEN_BKPT SQLITE_CANTOPEN_BKPT187057,11046027 -# define SQLITE_NOMEM_BKPT SQLITE_NOMEM_BKPT187058,11046091 -# define SQLITE_IOERR_NOMEM_BKPT SQLITE_IOERR_NOMEM_BKPT187059,11046150 -# define SQLITE_NOMEM_BKPT SQLITE_NOMEM_BKPT187060,11046221 -# define SQLITE_IOERR_NOMEM_BKPT SQLITE_IOERR_NOMEM_BKPT187061,11046280 -# undef SQLITE_ENABLE_FTS3SQLITE_ENABLE_FTS3187062,11046351 -# undef SQLITE_ENABLE_FTS4SQLITE_ENABLE_FTS4187063,11046410 -# define SQLITE_ENABLE_FTS3 SQLITE_ENABLE_FTS3187064,11046469 -# define sqlite3Toupper(sqlite3Toupper187065,11046530 -# define sqlite3Isspace(sqlite3Isspace187066,11046583 -# define sqlite3Isalnum(sqlite3Isalnum187067,11046636 -# define sqlite3Isalpha(sqlite3Isalpha187068,11046689 -# define sqlite3Isdigit(sqlite3Isdigit187069,11046742 -# define sqlite3Isxdigit(sqlite3Isxdigit187070,11046795 -# define sqlite3Tolower(sqlite3Tolower187071,11046850 -# define sqlite3Isquote(sqlite3Isquote187072,11046903 -# define sqlite3Toupper(sqlite3Toupper187073,11046956 -# define sqlite3Isspace(sqlite3Isspace187074,11047009 -# define sqlite3Isalnum(sqlite3Isalnum187075,11047062 -# define sqlite3Isalpha(sqlite3Isalpha187076,11047115 -# define sqlite3Isdigit(sqlite3Isdigit187077,11047168 -# define sqlite3Isxdigit(sqlite3Isxdigit187078,11047221 -# define sqlite3Tolower(sqlite3Tolower187079,11047276 -# define sqlite3Isquote(sqlite3Isquote187080,11047329 -#define sqlite3StrNICmp sqlite3StrNICmp187081,11047382 -# define sqlite3StackAllocRaw(sqlite3StackAllocRaw187082,11047436 -# define sqlite3StackAllocZero(sqlite3StackAllocZero187083,11047501 -# define sqlite3StackFree(sqlite3StackFree187084,11047568 -# define sqlite3StackAllocRaw(sqlite3StackAllocRaw187085,11047625 -# define sqlite3StackAllocZero(sqlite3StackAllocZero187086,11047690 -# define sqlite3StackFree(sqlite3StackFree187087,11047757 -# define sqlite3MemoryBarrier(sqlite3MemoryBarrier187088,11047814 -# define sqlite3IsNaN(sqlite3IsNaN187089,11047879 -# define sqlite3ColumnPropertiesFromName(sqlite3ColumnPropertiesFromName187097,11048499 -# define sqlite3FaultSim(sqlite3FaultSim187098,11048586 -# define sqlite3ViewGetColumnNames(sqlite3ViewGetColumnNames187099,11048641 -# define sqlite3AutoincrementBegin(sqlite3AutoincrementBegin187100,11048716 -# define sqlite3AutoincrementEnd(sqlite3AutoincrementEnd187101,11048791 -#define ONEPASS_OFF ONEPASS_OFF187102,11048862 -#define ONEPASS_SINGLE ONEPASS_SINGLE187103,11048908 -#define ONEPASS_MULTI ONEPASS_MULTI187104,11048960 -#define SQLITE_ECEL_DUP SQLITE_ECEL_DUP187105,11049010 -#define SQLITE_ECEL_FACTOR SQLITE_ECEL_FACTOR187106,11049064 -#define SQLITE_ECEL_REF SQLITE_ECEL_REF187107,11049124 -# define sqlite3SelectSetName(sqlite3SelectSetName187108,11049178 -# define sqlite3ParseToplevel(sqlite3ParseToplevel187109,11049243 -# define sqlite3IsToplevel(sqlite3IsToplevel187110,11049308 -# define sqlite3TriggersExist(sqlite3TriggersExist187111,11049367 -# define sqlite3DeleteTrigger(sqlite3DeleteTrigger187112,11049432 -# define sqlite3DropTriggerPtr(sqlite3DropTriggerPtr187113,11049497 -# define sqlite3UnlinkAndDeleteTrigger(sqlite3UnlinkAndDeleteTrigger187114,11049564 -# define sqlite3CodeRowTrigger(sqlite3CodeRowTrigger187115,11049647 -# define sqlite3CodeRowTriggerDirect(sqlite3CodeRowTriggerDirect187116,11049714 -# define sqlite3TriggerList(sqlite3TriggerList187117,11049793 -# define sqlite3ParseToplevel(sqlite3ParseToplevel187118,11049854 -# define sqlite3IsToplevel(sqlite3IsToplevel187119,11049919 -# define sqlite3TriggerColmask(sqlite3TriggerColmask187120,11049978 -# define sqlite3AuthRead(sqlite3AuthRead187121,11050045 -# define sqlite3AuthCheck(sqlite3AuthCheck187122,11050100 -# define sqlite3AuthContextPush(sqlite3AuthContextPush187123,11050157 -# define sqlite3AuthContextPop(sqlite3AuthContextPop187124,11050226 -#define getVarint32(getVarint32187125,11050293 -#define putVarint32(putVarint32187126,11050339 -#define getVarint getVarint187127,11050385 -#define putVarint putVarint187128,11050427 -# define sqlite3FileSuffix3(sqlite3FileSuffix3187129,11050469 -# define sqlite3CloseExtensions(sqlite3CloseExtensions187138,11051201 - #define sqlite3TableLock(sqlite3TableLock187139,11051270 -# define sqlite3VtabClear(sqlite3VtabClear187140,11051328 -# define sqlite3VtabSync(sqlite3VtabSync187141,11051386 -# define sqlite3VtabRollback(sqlite3VtabRollback187142,11051442 -# define sqlite3VtabCommit(sqlite3VtabCommit187143,11051506 -# define sqlite3VtabInSync(sqlite3VtabInSync187144,11051566 -# define sqlite3VtabLock(sqlite3VtabLock187145,11051626 -# define sqlite3VtabUnlock(sqlite3VtabUnlock187146,11051682 -# define sqlite3VtabUnlockList(sqlite3VtabUnlockList187147,11051742 -# define sqlite3VtabSavepoint(sqlite3VtabSavepoint187148,11051810 -# define sqlite3GetVTable(sqlite3GetVTable187149,11051876 -# define sqlite3VtabInSync(sqlite3VtabInSync187150,11051934 -#define sqlite3WithPush(sqlite3WithPush187151,11051994 -#define sqlite3WithDelete(sqlite3WithDelete187152,11052048 - #define sqlite3FkActions(sqlite3FkActions187153,11052106 - #define sqlite3FkCheck(sqlite3FkCheck187154,11052164 - #define sqlite3FkDropTable(sqlite3FkDropTable187155,11052218 - #define sqlite3FkOldmask(sqlite3FkOldmask187156,11052280 - #define sqlite3FkRequired(sqlite3FkRequired187157,11052338 - #define sqlite3FkDelete(sqlite3FkDelete187158,11052398 - #define sqlite3FkLocateIndex(sqlite3FkLocateIndex187159,11052454 -#define SQLITE_FAULTINJECTOR_MALLOC SQLITE_FAULTINJECTOR_MALLOC187160,11052520 -#define SQLITE_FAULTINJECTOR_COUNT SQLITE_FAULTINJECTOR_COUNT187161,11052598 - #define sqlite3BeginBenignMalloc(sqlite3BeginBenignMalloc187162,11052674 - #define sqlite3EndBenignMalloc(sqlite3EndBenignMalloc187163,11052748 -#define IN_INDEX_ROWID IN_INDEX_ROWID187164,11052818 -#define IN_INDEX_EPH IN_INDEX_EPH187165,11052870 -#define IN_INDEX_INDEX_ASC IN_INDEX_INDEX_ASC187166,11052918 -#define IN_INDEX_INDEX_DESC IN_INDEX_INDEX_DESC187167,11052978 -#define IN_INDEX_NOOP IN_INDEX_NOOP187168,11053040 -#define IN_INDEX_NOOP_OK IN_INDEX_NOOP_OK187169,11053090 -#define IN_INDEX_MEMBERSHIP IN_INDEX_MEMBERSHIP187170,11053146 -#define IN_INDEX_LOOP IN_INDEX_LOOP187171,11053208 - #define sqlite3SelectExprHeight(sqlite3SelectExprHeight187172,11053258 - #define sqlite3ExprCheckHeight(sqlite3ExprCheckHeight187173,11053330 - #define sqlite3ConnectionBlocked(sqlite3ConnectionBlocked187174,11053400 - #define sqlite3ConnectionUnlocked(sqlite3ConnectionUnlocked187175,11053474 - #define sqlite3ConnectionClosed(sqlite3ConnectionClosed187176,11053550 -# define IOTRACE(IOTRACE187177,11053622 -# define IOTRACE(IOTRACE187179,11053768 -# define sqlite3VdbeIOTraceSql(sqlite3VdbeIOTraceSql187180,11053807 -# define sqlite3MemdebugSetType(sqlite3MemdebugSetType187181,11053874 -# define sqlite3MemdebugHasType(sqlite3MemdebugHasType187182,11053943 -# define sqlite3MemdebugNoType(sqlite3MemdebugNoType187183,11054012 -#define MEMTYPE_HEAP MEMTYPE_HEAP187184,11054079 -#define MEMTYPE_LOOKASIDE MEMTYPE_LOOKASIDE187185,11054127 -#define MEMTYPE_SCRATCH MEMTYPE_SCRATCH187186,11054185 -#define MEMTYPE_PCACHE MEMTYPE_PCACHE187187,11054239 -# define SQLITE_USE_URI SQLITE_USE_URI187190,11054474 -# define SQLITE_ALLOW_COVERING_INDEX_SCAN SQLITE_ALLOW_COVERING_INDEX_SCAN187191,11054528 -# define SQLITE_SORTER_PMASZ SQLITE_SORTER_PMASZ187192,11054617 -# define SQLITE_STMTJRNL_SPILL SQLITE_STMTJRNL_SPILL187193,11054680 -#define CTIMEOPT_VAL_(CTIMEOPT_VAL_187200,11055294 -#define CTIMEOPT_VAL(CTIMEOPT_VAL187201,11055344 -#define _VDBEINT_H__VDBEINT_H_187205,11055694 -# define SQLITE_MAX_SCHEMA_RETRY SQLITE_MAX_SCHEMA_RETRY187206,11055739 -# define VDBE_DISPLAY_P4 VDBE_DISPLAY_P4187207,11055810 -# define VDBE_DISPLAY_P4 VDBE_DISPLAY_P4187208,11055865 -#define CURTYPE_BTREE CURTYPE_BTREE187214,11056171 -#define CURTYPE_SORTER CURTYPE_SORTER187215,11056221 -#define CURTYPE_VTAB CURTYPE_VTAB187216,11056273 -#define CURTYPE_PSEUDO CURTYPE_PSEUDO187217,11056321 -#define VdbeFrameMem(VdbeFrameMem187326,11066327 -#define CACHE_STALE CACHE_STALE187327,11066375 -#define MEMCELLSIZE MEMCELLSIZE187369,11069857 -#define MEM_Null MEM_Null187370,11069903 -#define MEM_Str MEM_Str187371,11069943 -#define MEM_Int MEM_Int187372,11069981 -#define MEM_Real MEM_Real187373,11070019 -#define MEM_Blob MEM_Blob187374,11070059 -#define MEM_AffMask MEM_AffMask187375,11070099 -#define MEM_RowSet MEM_RowSet187376,11070145 -#define MEM_Frame MEM_Frame187377,11070189 -#define MEM_Undefined MEM_Undefined187378,11070231 -#define MEM_Cleared MEM_Cleared187379,11070281 -#define MEM_TypeMask MEM_TypeMask187380,11070327 -#define MEM_Term MEM_Term187381,11070375 -#define MEM_Dyn MEM_Dyn187382,11070415 -#define MEM_Static MEM_Static187383,11070453 -#define MEM_Ephem MEM_Ephem187384,11070497 -#define MEM_Agg MEM_Agg187385,11070539 -#define MEM_Zero MEM_Zero187386,11070577 -#define MEM_Subtype MEM_Subtype187387,11070617 - #undef MEM_ZeroMEM_Zero187388,11070663 - #define MEM_Zero MEM_Zero187389,11070703 -#define VdbeMemDynamic(VdbeMemDynamic187390,11070745 -#define MemSetTypeFlag(MemSetTypeFlag187391,11070797 -#define memIsValid(memIsValid187392,11070849 -#define VDBE_MAGIC_INIT VDBE_MAGIC_INIT187568,11086634 -#define VDBE_MAGIC_RUN VDBE_MAGIC_RUN187569,11086688 -#define VDBE_MAGIC_HALT VDBE_MAGIC_HALT187570,11086740 -#define VDBE_MAGIC_DEAD VDBE_MAGIC_DEAD187571,11086794 -# define sqlite3VdbeMemSetDouble sqlite3VdbeMemSetDouble187597,11088954 -# define sqlite3VdbeEnter(sqlite3VdbeEnter187598,11089025 -# define sqlite3VdbeLeave(sqlite3VdbeLeave187599,11089082 -# define sqlite3VdbeCheckFk(sqlite3VdbeCheckFk187600,11089139 - #define ExpandBlob(ExpandBlob187601,11089200 - #define sqlite3VdbeMemExpandBlob(sqlite3VdbeMemExpandBlob187602,11089246 - #define ExpandBlob(ExpandBlob187603,11089320 -# define wsdStatInit wsdStatInit187614,11090127 -# define wsdStat wsdStat187615,11090174 -# define wsdStatInitwsdStatInit187616,11090213 -# define wsdStat wsdStat187617,11090259 -#undef HAVE_LOCALTIME_SHAVE_LOCALTIME_S187664,11093748 -#define HAVE_LOCALTIME_S HAVE_LOCALTIME_S187665,11093803 -#define _SQLITE_OS_C_ _SQLITE_OS_C_187680,11094706 -#undef _SQLITE_OS_C__SQLITE_OS_C_187681,11094756 - #define DO_OS_MALLOC_TEST(DO_OS_MALLOC_TEST187691,11095741 - #define DO_OS_MALLOC_TEST(DO_OS_MALLOC_TEST187692,11095801 -#define vfsList vfsList187730,11099515 -# define wsdHooksInit wsdHooksInit187742,11100417 -# define wsdHooks wsdHooks187743,11100466 -# define wsdHooksInitwsdHooksInit187744,11100507 -# define wsdHooks wsdHooks187745,11100555 -#define SQLITE_MALLOC(SQLITE_MALLOC187758,11101604 -#define SQLITE_FREE(SQLITE_FREE187759,11101654 -#define SQLITE_REALLOC(SQLITE_REALLOC187760,11101700 -#define SQLITE_MALLOCSIZE(SQLITE_MALLOCSIZE187761,11101752 -#define SQLITE_MALLOC(SQLITE_MALLOC187762,11101810 -#define SQLITE_FREE(SQLITE_FREE187763,11101860 -#define SQLITE_REALLOC(SQLITE_REALLOC187764,11101906 -# define SQLITE_USE_MALLOC_H SQLITE_USE_MALLOC_H187765,11101958 -# define SQLITE_USE_MALLOC_USABLE_SIZE SQLITE_USE_MALLOC_USABLE_SIZE187766,11102022 -# define SQLITE_USE_MALLOC_HSQLITE_USE_MALLOC_H187767,11102106 -# define SQLITE_USE_MSIZESQLITE_USE_MSIZE187768,11102169 -# define SQLITE_MALLOCSIZE(SQLITE_MALLOCSIZE187769,11102226 -# define SQLITE_MALLOCSIZE SQLITE_MALLOCSIZE187770,11102290 -# define backtrace(backtrace187779,11102952 -# define backtrace_symbols_fd(backtrace_symbols_fd187780,11102995 -#define FOREGUARD FOREGUARD187798,11104712 -#define REARGUARD REARGUARD187799,11104754 -#define NCSIZE NCSIZE187800,11104796 -#define MX_SMALL MX_SMALL187844,11108182 -#define N_HASH N_HASH187845,11108222 -#define mem3 mem3187882,11110559 -#define LOGMAX LOGMAX187910,11112505 -#define CTRL_LOGSIZE CTRL_LOGSIZE187911,11112541 -#define CTRL_FREE CTRL_FREE187912,11112589 -#define mem5 mem5187943,11115079 -#define MEM5LINK(MEM5LINK187944,11115111 -# define SQLITE_MUTEX_NREF SQLITE_MUTEX_NREF187997,11119339 -# define SQLITE_MUTEX_NREF SQLITE_MUTEX_NREF187998,11119398 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER188010,11120340 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER188011,11120414 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER188012,11120488 -#define _OS_COMMON_H__OS_COMMON_H_188024,11121472 -#define _HWTIME_H__HWTIME_H_188025,11121521 -#define TIMER_START TIMER_START188033,11122099 -#define TIMER_END TIMER_END188034,11122145 -#define TIMER_ELAPSED TIMER_ELAPSED188035,11122187 -#define TIMER_STARTTIMER_START188036,11122237 -#define TIMER_ENDTIMER_END188037,11122282 -#define TIMER_ELAPSED TIMER_ELAPSED188038,11122323 -#define SimulateIOErrorBenign(SimulateIOErrorBenign188039,11122373 -#define SimulateIOError(SimulateIOError188040,11122439 -#define SimulateDiskfullError(SimulateDiskfullError188042,11122545 -#define SimulateIOErrorBenign(SimulateIOErrorBenign188043,11122611 -#define SimulateIOError(SimulateIOError188044,11122677 -#define SimulateDiskfullError(SimulateDiskfullError188045,11122731 -#define OpenCounter(OpenCounter188046,11122797 -#define OpenCounter(OpenCounter188047,11122843 -#define _OS_WIN_H__OS_WIN_H_188048,11122889 -# define SQLITE_OS_WINNT SQLITE_OS_WINNT188049,11122932 -# define SQLITE_OS_WINCE SQLITE_OS_WINCE188050,11122987 -# define SQLITE_OS_WINCE SQLITE_OS_WINCE188051,11123042 -# define SQLITE_OS_WINRT SQLITE_OS_WINRT188052,11123097 -# define SQLITE_WIN32_VOLATILESQLITE_WIN32_VOLATILE188053,11123152 -# define SQLITE_WIN32_VOLATILE SQLITE_WIN32_VOLATILE188054,11123218 -# define SQLITE_OS_WIN_THREADS SQLITE_OS_WIN_THREADS188055,11123285 -# define SQLITE_OS_WIN_THREADS SQLITE_OS_WIN_THREADS188056,11123352 -#define SQLITE_W32_MUTEX_INITIALIZER SQLITE_W32_MUTEX_INITIALIZER188068,11124290 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER188069,11124370 -#define SQLITE3_MUTEX_INITIALIZER SQLITE3_MUTEX_INITIALIZER188070,11124444 -#define mem0 mem0188106,11127025 -#define isLookaside(isLookaside188125,11128603 -#define etRADIX etRADIX188150,11130909 -#define etFLOAT etFLOAT188151,11130948 -#define etEXP etEXP188152,11130987 -#define etGENERIC etGENERIC188153,11131022 -#define etSIZE etSIZE188154,11131065 -#define etSTRING etSTRING188155,11131102 -#define etDYNSTRING etDYNSTRING188156,11131143 -#define etPERCENT etPERCENT188157,11131190 -#define etCHARX etCHARX188158,11131233 -#define etSQLESCAPE etSQLESCAPE188159,11131272 -#define etSQLESCAPE2 etSQLESCAPE2188160,11131319 -#define etTOKEN etTOKEN188161,11131368 -#define etSRCLIST etSRCLIST188162,11131407 -#define etPOINTER etPOINTER188163,11131450 -#define etSQLESCAPE3 etSQLESCAPE3188164,11131493 -#define etORDINAL etORDINAL188165,11131542 -#define etINVALID etINVALID188166,11131585 -#define FLAG_SIGNED FLAG_SIGNED188182,11132903 -#define FLAG_INTERN FLAG_INTERN188183,11132950 -#define FLAG_STRING FLAG_STRING188184,11132997 -# define SQLITE_PRINT_BUF_SIZE SQLITE_PRINT_BUF_SIZE188193,11133643 -#define etBUFSIZE etBUFSIZE188194,11133711 -# define wsdPrng wsdPrng188233,11137510 -#define SQLITE_THREADS_IMPLEMENTED SQLITE_THREADS_IMPLEMENTED188237,11137812 -#define SQLITE_THREADS_IMPLEMENTED SQLITE_THREADS_IMPLEMENTED188251,11138991 -#define WRITE_UTF8(WRITE_UTF8188277,11141032 -#define WRITE_UTF16LE(WRITE_UTF16LE188278,11141077 -#define WRITE_UTF16BE(WRITE_UTF16BE188279,11141128 -#define READ_UTF16LE(READ_UTF16LE188280,11141179 -#define READ_UTF16BE(READ_UTF16BE188281,11141228 -#define READ_UTF8(READ_UTF8188282,11141277 -#define UpperToLower UpperToLower188303,11143173 -#define SLOT_2_0 SLOT_2_0188315,11144325 -#define SLOT_4_2_0 SLOT_4_2_0188316,11144366 -#define TWOPOWER32 TWOPOWER32188329,11145472 -#define TWOPOWER31 TWOPOWER31188330,11145517 -# define OpHelp(OpHelp188347,11146878 -# define OpHelp(OpHelp188348,11146916 -# define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE188350,11147039 -# define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE188351,11147122 -# define HAVE_PREAD HAVE_PREAD188352,11147205 -# define HAVE_PWRITE HAVE_PWRITE188353,11147251 -# undef USE_PREADUSE_PREAD188354,11147299 -# define USE_PREAD64 USE_PREAD64188355,11147341 -# undef USE_PREAD64USE_PREAD64188356,11147389 -# define USE_PREAD USE_PREAD188357,11147435 -# define HAVE_GETHOSTUUID HAVE_GETHOSTUUID188358,11147479 -#define SQLITE_FSFLAGS_IS_MSDOS SQLITE_FSFLAGS_IS_MSDOS188359,11147540 -# define SQLITE_UNIX_THREADS SQLITE_UNIX_THREADS188360,11147611 -# define SQLITE_DEFAULT_FILE_PERMISSIONS SQLITE_DEFAULT_FILE_PERMISSIONS188361,11147675 -# define SQLITE_DEFAULT_PROXYDIR_PERMISSIONS SQLITE_DEFAULT_PROXYDIR_PERMISSIONS188362,11147763 -#define MAX_PATHNAME MAX_PATHNAME188363,11147859 -#define SQLITE_MAX_SYMLINKS SQLITE_MAX_SYMLINKS188364,11147908 -#define osGetpid(osGetpid188365,11147971 -#define IS_LOCK_ERROR(IS_LOCK_ERROR188366,11148012 -#define UNIXFILE_EXCL UNIXFILE_EXCL188433,11154463 -#define UNIXFILE_RDONLY UNIXFILE_RDONLY188434,11154514 -#define UNIXFILE_PERSIST_WAL UNIXFILE_PERSIST_WAL188435,11154569 -# define UNIXFILE_DIRSYNC UNIXFILE_DIRSYNC188436,11154634 -# define UNIXFILE_DIRSYNC UNIXFILE_DIRSYNC188437,11154692 -#define UNIXFILE_PSOW UNIXFILE_PSOW188438,11154750 -#define UNIXFILE_DELETE UNIXFILE_DELETE188439,11154801 -#define UNIXFILE_URI UNIXFILE_URI188440,11154856 -#define UNIXFILE_NOLOCK UNIXFILE_NOLOCK188441,11154905 -#define _OS_COMMON_H__OS_COMMON_H_188442,11154960 -#define _HWTIME_H__HWTIME_H_188443,11155010 -#define TIMER_START TIMER_START188451,11155596 -#define TIMER_END TIMER_END188452,11155643 -#define TIMER_ELAPSED TIMER_ELAPSED188453,11155686 -#define TIMER_STARTTIMER_START188454,11155737 -#define TIMER_ENDTIMER_END188455,11155783 -#define TIMER_ELAPSED TIMER_ELAPSED188456,11155825 -#define SimulateIOErrorBenign(SimulateIOErrorBenign188457,11155876 -#define SimulateIOError(SimulateIOError188458,11155943 -#define SimulateDiskfullError(SimulateDiskfullError188460,11156051 -#define SimulateIOErrorBenign(SimulateIOErrorBenign188461,11156118 -#define SimulateIOError(SimulateIOError188462,11156185 -#define SimulateDiskfullError(SimulateDiskfullError188463,11156240 -#define OpenCounter(OpenCounter188464,11156307 -#define OpenCounter(OpenCounter188465,11156354 -# define O_LARGEFILE O_LARGEFILE188466,11156401 -# undef O_LARGEFILEO_LARGEFILE188467,11156449 -# define O_LARGEFILE O_LARGEFILE188468,11156495 -# define O_NOFOLLOW O_NOFOLLOW188469,11156543 -# define O_BINARY O_BINARY188470,11156589 -#define threadid threadid188471,11156631 -#define threadid threadid188472,11156672 -# define HAVE_MREMAP HAVE_MREMAP188473,11156713 -# define HAVE_MREMAP HAVE_MREMAP188474,11156762 -# define lseek lseek188475,11156811 -#define osOpen osOpen188484,11157533 -#define osClose osClose188485,11157570 -#define osAccess osAccess188486,11157609 -#define osGetcwd osGetcwd188487,11157650 -#define osStat osStat188488,11157691 -#define osFstat(osFstat188489,11157728 -#define osFtruncate osFtruncate188490,11157767 -#define osFcntl osFcntl188491,11157814 -#define osRead osRead188492,11157853 -#define osPread osPread188493,11157890 -#define osPread64 osPread64188494,11157929 -#define osWrite osWrite188495,11157972 -#define osPwrite osPwrite188496,11158011 -#define osPwrite64 osPwrite64188497,11158052 -#define osFchmod osFchmod188498,11158097 -#define osFallocate osFallocate188499,11158138 -#define osUnlink osUnlink188500,11158185 -#define osOpenDirectory osOpenDirectory188501,11158226 -#define osMkdir osMkdir188502,11158281 -#define osRmdir osRmdir188503,11158320 -#define osFchown osFchown188504,11158359 -#define osGeteuid osGeteuid188505,11158400 -#define osMmap osMmap188506,11158443 -#define osMunmap osMunmap188507,11158480 -#define osMremap osMremap188508,11158521 -#define osGetpagesize osGetpagesize188509,11158562 -#define osReadlink osReadlink188510,11158613 -#define osLstat osLstat188511,11158658 -# define SQLITE_MINIMUM_FILE_DESCRIPTOR SQLITE_MINIMUM_FILE_DESCRIPTOR188517,11159066 -#undef osFcntlosFcntl188524,11159571 -#define osFcntl osFcntl188525,11159608 -#define unixLogError(unixLogError188576,11164248 -#define DOTLOCK_SUFFIX DOTLOCK_SUFFIX188597,11165896 -# define robust_flock(robust_flock188603,11166369 -#define afpfsByteRangeLock2FSCTL afpfsByteRangeLock2FSCTL188631,11168810 -# define fdatasync fdatasync188645,11169838 -# define HAVE_FULLFSYNC HAVE_FULLFSYNC188646,11169882 -# define HAVE_FULLFSYNC HAVE_FULLFSYNC188647,11169936 -#define UNIX_SHM_BASE UNIX_SHM_BASE188700,11174658 -#define UNIX_SHM_DMS UNIX_SHM_DMS188701,11174709 -# define unixShmMap unixShmMap188710,11175252 -# define unixShmLock unixShmLock188711,11175298 -# define unixShmBarrier unixShmBarrier188712,11175346 -# define unixShmUnmap unixShmUnmap188713,11175400 -#define IOMETHODS(IOMETHODS188719,11175832 - #define unixDlOpen unixDlOpen188739,11177372 - #define unixDlError unixDlError188740,11177419 - #define unixDlSym unixDlSym188741,11177468 - #define unixDlClose unixDlClose188742,11177513 -# define unixCurrentTime unixCurrentTime188748,11178078 -#define PROXY_HOSTIDLEN PROXY_HOSTIDLEN188774,11180580 -#define PROXY_CONCHVERSION PROXY_CONCHVERSION188776,11180728 -#define PROXY_HEADERLEN PROXY_HEADERLEN188777,11180789 -#define PROXY_PATHINDEX PROXY_PATHINDEX188778,11180844 -#define PROXY_MAXCONCHLEN PROXY_MAXCONCHLEN188779,11180899 - #define UNIXVFS(UNIXVFS188794,11182260 -#define _OS_COMMON_H__OS_COMMON_H_188796,11182383 -#define _HWTIME_H__HWTIME_H_188797,11182433 -#define TIMER_START TIMER_START188805,11183019 -#define TIMER_END TIMER_END188806,11183066 -#define TIMER_ELAPSED TIMER_ELAPSED188807,11183109 -#define TIMER_STARTTIMER_START188808,11183160 -#define TIMER_ENDTIMER_END188809,11183206 -#define TIMER_ELAPSED TIMER_ELAPSED188810,11183248 -#define SimulateIOErrorBenign(SimulateIOErrorBenign188811,11183299 -#define SimulateIOError(SimulateIOError188812,11183366 -#define SimulateDiskfullError(SimulateDiskfullError188814,11183474 -#define SimulateIOErrorBenign(SimulateIOErrorBenign188815,11183541 -#define SimulateIOError(SimulateIOError188816,11183608 -#define SimulateDiskfullError(SimulateDiskfullError188817,11183663 -#define OpenCounter(OpenCounter188818,11183730 -#define OpenCounter(OpenCounter188819,11183777 -# define SQLITE_WIN32_HAS_ANSISQLITE_WIN32_HAS_ANSI188820,11183824 -# define SQLITE_WIN32_HAS_WIDESQLITE_WIN32_HAS_WIDE188821,11183892 -# define NTDDI_WIN8 NTDDI_WIN8188822,11183960 -# define NTDDI_WINBLUE NTDDI_WINBLUE188823,11184007 -# define NTDDI_WINTHRESHOLD NTDDI_WINTHRESHOLD188824,11184060 -# define SQLITE_WIN32_GETVERSIONEX SQLITE_WIN32_GETVERSIONEX188825,11184123 -# define SQLITE_WIN32_GETVERSIONEX SQLITE_WIN32_GETVERSIONEX188826,11184202 -# define SQLITE_WIN32_CREATEFILEMAPPINGA SQLITE_WIN32_CREATEFILEMAPPINGA188827,11184281 -# define SQLITE_WIN32_CREATEFILEMAPPINGA SQLITE_WIN32_CREATEFILEMAPPINGA188828,11184372 -# define MAX_PATH MAX_PATH188829,11184463 -# define SQLITE_WIN32_MAX_PATH_CHARS SQLITE_WIN32_MAX_PATH_CHARS188830,11184506 -# define UNICODE_STRING_MAX_CHARS UNICODE_STRING_MAX_CHARS188831,11184587 -# define SQLITE_WINNT_MAX_PATH_CHARS SQLITE_WINNT_MAX_PATH_CHARS188832,11184662 -# define SQLITE_WIN32_MAX_PATH_BYTES SQLITE_WIN32_MAX_PATH_BYTES188833,11184743 -# define SQLITE_WINNT_MAX_PATH_BYTES SQLITE_WINNT_MAX_PATH_BYTES188834,11184824 -# define SQLITE_WIN32_MAX_ERRMSG_CHARS SQLITE_WIN32_MAX_ERRMSG_CHARS188835,11184905 -# define winIsDirSep(winIsDirSep188836,11184990 -# define UNUSED_VARIABLE_VALUE(UNUSED_VARIABLE_VALUE188837,11185039 -# define winGetDirSep(winGetDirSep188838,11185108 -# define INVALID_FILE_ATTRIBUTES INVALID_FILE_ATTRIBUTES188839,11185159 -# define FILE_FLAG_MASK FILE_FLAG_MASK188840,11185231 -# define FILE_ATTRIBUTE_MASK FILE_ATTRIBUTE_MASK188841,11185285 -#define WINFILE_RDONLY WINFILE_RDONLY188898,11190551 -#define WINFILE_PERSIST_WAL WINFILE_PERSIST_WAL188899,11190604 -#define WINFILE_PSOW WINFILE_PSOW188900,11190667 -# define SQLITE_WIN32_DBG_BUF_SIZE SQLITE_WIN32_DBG_BUF_SIZE188901,11190716 -# define SQLITE_WIN32_DATA_DIRECTORY_TYPE SQLITE_WIN32_DATA_DIRECTORY_TYPE188902,11190793 -# define SQLITE_WIN32_TEMP_DIRECTORY_TYPE SQLITE_WIN32_TEMP_DIRECTORY_TYPE188903,11190884 -# define SQLITE_WIN32_HEAP_CREATE SQLITE_WIN32_HEAP_CREATE188904,11190975 -# define SQLITE_WIN32_CACHE_SIZE SQLITE_WIN32_CACHE_SIZE188905,11191050 -# define SQLITE_WIN32_CACHE_SIZE SQLITE_WIN32_CACHE_SIZE188906,11191125 -# define SQLITE_WIN32_HEAP_INIT_SIZE SQLITE_WIN32_HEAP_INIT_SIZE188907,11191200 -# define SQLITE_WIN32_HEAP_MAX_SIZE SQLITE_WIN32_HEAP_MAX_SIZE188908,11191281 -# define SQLITE_WIN32_HEAP_FLAGS SQLITE_WIN32_HEAP_FLAGS188909,11191360 -#define WINMEM_MAGIC1 WINMEM_MAGIC1188920,11192259 -#define WINMEM_MAGIC2 WINMEM_MAGIC2188921,11192310 -#define winMemAssertMagic1(winMemAssertMagic1188923,11192430 -#define winMemAssertMagic2(winMemAssertMagic2188924,11192491 -#define winMemAssertMagic(winMemAssertMagic188925,11192552 -#define winMemAssertMagic(winMemAssertMagic188926,11192611 -#define winMemGetDataPtr(winMemGetDataPtr188927,11192670 -#define winMemGetHeap(winMemGetHeap188928,11192727 -#define winMemGetOwned(winMemGetOwned188929,11192778 -# define SYSCALL SYSCALL188932,11193005 -# define osAreFileApisANSI(osAreFileApisANSI188933,11193046 -#define osAreFileApisANSI osAreFileApisANSI188941,11193702 -#define osCharLowerW osCharLowerW188942,11193761 -#define osCharUpperW osCharUpperW188943,11193810 -#define osCloseHandle osCloseHandle188944,11193859 -#define osCreateFileA osCreateFileA188945,11193910 -#define osCreateFileW osCreateFileW188946,11193961 -#define osCreateFileMappingA osCreateFileMappingA188947,11194012 -#define osCreateFileMappingW osCreateFileMappingW188948,11194077 -#define osCreateMutexW osCreateMutexW188949,11194142 -#define osDeleteFileA osDeleteFileA188950,11194195 -#define osDeleteFileW osDeleteFileW188951,11194246 -#define osFileTimeToLocalFileTime osFileTimeToLocalFileTime188952,11194297 -#define osFileTimeToSystemTime osFileTimeToSystemTime188953,11194372 -#define osFlushFileBuffers osFlushFileBuffers188954,11194441 -#define osFormatMessageA osFormatMessageA188955,11194502 -#define osFormatMessageW osFormatMessageW188956,11194559 -#define osFreeLibrary osFreeLibrary188957,11194616 -#define osGetCurrentProcessId osGetCurrentProcessId188958,11194667 -#define osGetDiskFreeSpaceA osGetDiskFreeSpaceA188959,11194734 -#define osGetDiskFreeSpaceW osGetDiskFreeSpaceW188960,11194797 -#define osGetFileAttributesA osGetFileAttributesA188961,11194860 -#define osGetFileAttributesW osGetFileAttributesW188962,11194925 -#define osGetFileAttributesExW osGetFileAttributesExW188963,11194990 -#define osGetFileSize osGetFileSize188964,11195059 -#define osGetFullPathNameA osGetFullPathNameA188965,11195110 -#define osGetFullPathNameW osGetFullPathNameW188966,11195171 -#define osGetLastError osGetLastError188967,11195232 -#define osGetProcAddressA osGetProcAddressA188968,11195285 -#define osGetSystemInfo osGetSystemInfo188969,11195344 -#define osGetSystemTime osGetSystemTime188970,11195399 -#define osGetSystemTimeAsFileTime osGetSystemTimeAsFileTime188971,11195454 -#define osGetTempPathA osGetTempPathA188972,11195529 -#define osGetTempPathW osGetTempPathW188973,11195582 -#define osGetTickCount osGetTickCount188974,11195635 -#define osGetVersionExA osGetVersionExA188975,11195688 -#define osGetVersionExW osGetVersionExW188976,11195743 -#define osHeapAlloc osHeapAlloc188977,11195798 -#define osHeapCreate osHeapCreate188978,11195845 -#define osHeapDestroy osHeapDestroy188979,11195894 -#define osHeapFree osHeapFree188980,11195945 -#define osHeapReAlloc osHeapReAlloc188981,11195990 -#define osHeapSize osHeapSize188982,11196041 -#define osHeapValidate osHeapValidate188983,11196086 -#define osHeapCompact osHeapCompact188984,11196139 -#define osLoadLibraryA osLoadLibraryA188985,11196190 -#define osLoadLibraryW osLoadLibraryW188986,11196243 -#define osLocalFree osLocalFree188987,11196296 -#define osLockFile osLockFile188988,11196343 -#define osLockFileEx osLockFileEx188989,11196388 -#define osMapViewOfFile osMapViewOfFile188990,11196437 -#define osMultiByteToWideChar osMultiByteToWideChar188991,11196492 -#define osQueryPerformanceCounter osQueryPerformanceCounter188992,11196559 -#define osReadFile osReadFile188993,11196634 -#define osSetEndOfFile osSetEndOfFile188994,11196679 -#define osSetFilePointer osSetFilePointer188995,11196732 -#define osSleep osSleep188996,11196789 -#define osSystemTimeToFileTime osSystemTimeToFileTime188997,11196828 -#define osUnlockFile osUnlockFile188998,11196897 -#define osUnlockFileEx osUnlockFileEx188999,11196946 -#define osUnmapViewOfFile osUnmapViewOfFile189000,11196999 -#define osWideCharToMultiByte osWideCharToMultiByte189001,11197058 -#define osWriteFile osWriteFile189002,11197125 -#define osCreateEventExW osCreateEventExW189003,11197172 -#define osWaitForSingleObject osWaitForSingleObject189004,11197229 -#define osWaitForSingleObjectEx osWaitForSingleObjectEx189005,11197296 -#define osSetFilePointerEx osSetFilePointerEx189006,11197367 -#define osGetFileInformationByHandleEx osGetFileInformationByHandleEx189007,11197428 -#define osMapViewOfFileFromApp osMapViewOfFileFromApp189008,11197513 -#define osCreateFile2 osCreateFile2189009,11197582 -#define osLoadPackagedLibrary osLoadPackagedLibrary189010,11197633 -#define osGetTickCount64 osGetTickCount64189011,11197700 -#define osGetNativeSystemInfo osGetNativeSystemInfo189012,11197757 -#define osOutputDebugStringA osOutputDebugStringA189013,11197824 -#define osOutputDebugStringW osOutputDebugStringW189014,11197889 -#define osGetProcessHeap osGetProcessHeap189015,11197954 -#define osCreateFileMappingFromApp osCreateFileMappingFromApp189016,11198011 -#define osInterlockedCompareExchange osInterlockedCompareExchange189017,11198088 -#define osUuidCreate osUuidCreate189018,11198169 -#define osUuidCreateSequential osUuidCreateSequential189019,11198218 -#define osFlushViewOfFile osFlushViewOfFile189020,11198287 -# define osIsNT(osIsNT189031,11199213 -# define osIsNT(osIsNT189032,11199251 -# define osIsNT(osIsNT189033,11199289 -# define osIsNT(osIsNT189034,11199327 -#define winLogError(winLogError189059,11201637 -# define SQLITE_WIN32_IOERR_RETRY SQLITE_WIN32_IOERR_RETRY189061,11201746 -# define SQLITE_WIN32_IOERR_RETRY_DELAY SQLITE_WIN32_IOERR_RETRY_DELAY189062,11201820 -#define winIoerrCanRetry1(winIoerrCanRetry1189065,11202084 -#define HANDLE_TO_WINFILE(HANDLE_TO_WINFILE189069,11202371 -#define winceMutexRelease(winceMutexRelease189071,11202503 -# define INVALID_SET_FILE_POINTER INVALID_SET_FILE_POINTER189078,11202956 -#define MX_CLOSE_ATTEMPT MX_CLOSE_ATTEMPT189080,11203119 -#define WINCE_DELETION_ATTEMPTS WINCE_DELETION_ATTEMPTS189082,11203238 -# define LOCKFILE_FAIL_IMMEDIATELY LOCKFILE_FAIL_IMMEDIATELY189090,11203797 -# define LOCKFILE_EXCLUSIVE_LOCK LOCKFILE_EXCLUSIVE_LOCK189091,11203873 -# define SQLITE_LOCKFILE_FLAGS SQLITE_LOCKFILE_FLAGS189092,11203945 -# define SQLITE_LOCKFILEEX_FLAGS SQLITE_LOCKFILEEX_FLAGS189093,11204013 -#define WIN_SHM_BASE WIN_SHM_BASE189150,11208746 -#define WIN_SHM_DMS WIN_SHM_DMS189151,11208795 -#define _SHM_UNLCK _SHM_UNLCK189152,11208842 -#define _SHM_RDLCK _SHM_RDLCK189153,11208887 -#define _SHM_WRLCK _SHM_WRLCK189154,11208932 -# define winShmMap winShmMap189162,11209404 -# define winShmLock winShmLock189163,11209448 -# define winShmBarrier winShmBarrier189164,11209494 -# define winShmUnmap winShmUnmap189165,11209546 - #define winDlOpen winDlOpen189186,11211151 - #define winDlError winDlError189187,11211196 - #define winDlSym winDlSym189188,11211243 - #define winDlClose winDlClose189189,11211286 -#define BITVEC_SZ BITVEC_SZ189209,11212958 -#define BITVEC_USIZE BITVEC_USIZE189210,11213001 -#define BITVEC_TELEM BITVEC_TELEM189211,11213050 -#define BITVEC_SZELEM BITVEC_SZELEM189212,11213099 -#define BITVEC_NELEM BITVEC_NELEM189213,11213150 -#define BITVEC_NBIT BITVEC_NBIT189214,11213199 -#define BITVEC_NINT BITVEC_NINT189215,11213246 -#define BITVEC_MXHASH BITVEC_MXHASH189216,11213293 -#define BITVEC_HASH(BITVEC_HASH189217,11213344 -#define BITVEC_NPTR BITVEC_NPTR189218,11213391 -#define SETBIT(SETBIT189241,11215323 -#define CLEARBIT(CLEARBIT189242,11215360 -#define TESTBIT(TESTBIT189243,11215401 -# define pcacheTrace(pcacheTrace189274,11218407 -# define pcacheTrace(pcacheTrace189276,11218515 -# define pcacheDump(pcacheDump189277,11218563 -#define PCACHE_DIRTYLIST_REMOVE PCACHE_DIRTYLIST_REMOVE189279,11218703 -#define PCACHE_DIRTYLIST_ADD PCACHE_DIRTYLIST_ADD189280,11218774 -#define PCACHE_DIRTYLIST_FRONT PCACHE_DIRTYLIST_FRONT189281,11218839 -#define N_SORT_BUCKET N_SORT_BUCKET189307,11221180 -#define pcache1 pcache1189418,11231541 -# define pcache1EnterMutex(pcache1EnterMutex189419,11231580 -# define pcache1LeaveMutex(pcache1LeaveMutex189420,11231640 -# define PCACHE1_MIGHT_USE_GROUP_MUTEX PCACHE1_MIGHT_USE_GROUP_MUTEX189421,11231700 -# define pcache1EnterMutex(pcache1EnterMutex189422,11231784 -# define pcache1LeaveMutex(pcache1LeaveMutex189423,11231844 -# define PCACHE1_MIGHT_USE_GROUP_MUTEX PCACHE1_MIGHT_USE_GROUP_MUTEX189424,11231904 -#define ROWSET_ALLOCATION_SIZE ROWSET_ALLOCATION_SIZE189459,11234737 -#define ROWSET_ENTRY_PER_CHUNK ROWSET_ENTRY_PER_CHUNK189460,11234806 -#define ROWSET_SORTED ROWSET_SORTED189492,11237639 -#define ROWSET_NEXT ROWSET_NEXT189493,11237690 -#define _WAL_H__WAL_H_189505,11238750 -#define WAL_SYNC_TRANSACTIONS WAL_SYNC_TRANSACTIONS189506,11238788 -#define SQLITE_SYNC_MASK SQLITE_SYNC_MASK189507,11238855 -# define sqlite3WalOpen(sqlite3WalOpen189508,11238912 -# define sqlite3WalLimit(sqlite3WalLimit189509,11238966 -# define sqlite3WalClose(sqlite3WalClose189510,11239022 -# define sqlite3WalBeginReadTransaction(sqlite3WalBeginReadTransaction189511,11239078 -# define sqlite3WalEndReadTransaction(sqlite3WalEndReadTransaction189512,11239164 -# define sqlite3WalDbsize(sqlite3WalDbsize189513,11239246 -# define sqlite3WalBeginWriteTransaction(sqlite3WalBeginWriteTransaction189514,11239304 -# define sqlite3WalEndWriteTransaction(sqlite3WalEndWriteTransaction189515,11239392 -# define sqlite3WalUndo(sqlite3WalUndo189516,11239476 -# define sqlite3WalSavepoint(sqlite3WalSavepoint189517,11239530 -# define sqlite3WalSavepointUndo(sqlite3WalSavepointUndo189518,11239594 -# define sqlite3WalFrames(sqlite3WalFrames189519,11239666 -# define sqlite3WalCheckpoint(sqlite3WalCheckpoint189520,11239724 -# define sqlite3WalCallback(sqlite3WalCallback189521,11239790 -# define sqlite3WalExclusiveMode(sqlite3WalExclusiveMode189522,11239852 -# define sqlite3WalHeapMemory(sqlite3WalHeapMemory189523,11239924 -# define sqlite3WalFramesize(sqlite3WalFramesize189524,11239990 -# define sqlite3WalFindFrame(sqlite3WalFindFrame189525,11240054 -# define sqlite3WalFile(sqlite3WalFile189526,11240118 -#define WAL_SAVEPOINT_NDATA WAL_SAVEPOINT_NDATA189527,11240172 -#define PAGERTRACE(PAGERTRACE189529,11240277 -#define PAGERID(PAGERID189530,11240322 -#define FILEHANDLEID(FILEHANDLEID189531,11240361 -#define PAGER_OPEN PAGER_OPEN189532,11240410 -#define PAGER_READER PAGER_READER189533,11240455 -#define PAGER_WRITER_LOCKED PAGER_WRITER_LOCKED189534,11240504 -#define PAGER_WRITER_CACHEMOD PAGER_WRITER_CACHEMOD189535,11240567 -#define PAGER_WRITER_DBMOD PAGER_WRITER_DBMOD189536,11240634 -#define PAGER_WRITER_FINISHED PAGER_WRITER_FINISHED189537,11240695 -#define PAGER_ERROR PAGER_ERROR189538,11240762 -#define UNKNOWN_LOCK UNKNOWN_LOCK189539,11240809 -# define CODEC1(CODEC1189540,11240858 -# define CODEC2(CODEC2189541,11240896 -# define CODEC1(CODEC1189542,11240934 -# define CODEC2(CODEC2189543,11240972 -#define MAX_SECTOR_SIZE MAX_SECTOR_SIZE189544,11241010 -#define SPILLFLAG_OFF SPILLFLAG_OFF189559,11242367 -#define SPILLFLAG_ROLLBACK SPILLFLAG_ROLLBACK189560,11242418 -#define SPILLFLAG_NOSYNC SPILLFLAG_NOSYNC189561,11242479 -#define PAGER_STAT_HIT PAGER_STAT_HIT189695,11255657 -#define PAGER_STAT_MISS PAGER_STAT_MISS189696,11255710 -#define PAGER_STAT_WRITE PAGER_STAT_WRITE189697,11255765 -# define PAGER_INCR(PAGER_INCR189701,11256218 -# define PAGER_INCR(PAGER_INCR189702,11256264 -#define JOURNAL_PG_SZ(JOURNAL_PG_SZ189704,11256385 -#define JOURNAL_HDR_SZ(JOURNAL_HDR_SZ189705,11256436 -# define MEMDB MEMDB189706,11256489 -# define MEMDB MEMDB189707,11256525 -# define USEFETCH(USEFETCH189708,11256561 -# define USEFETCH(USEFETCH189709,11256603 -#define PAGER_MAX_PGNO PAGER_MAX_PGNO189710,11256645 -#define isOpen(isOpen189711,11256698 -# define pagerUseWal(pagerUseWal189713,11256800 -# define pagerRollbackWal(pagerRollbackWal189714,11256848 -# define pagerWalFrames(pagerWalFrames189715,11256906 -# define pagerOpenWalIfPresent(pagerOpenWalIfPresent189716,11256960 -# define pagerBeginReadTransaction(pagerBeginReadTransaction189717,11257028 -#define put32bits(put32bits189723,11257494 -# define jrnlBufferSize(jrnlBufferSize189728,11257853 -#define CHECK_PAGE(CHECK_PAGE189732,11258145 -#define pager_datahash(pager_datahash189734,11258249 -#define pager_pagehash(pager_pagehash189735,11258302 -#define pager_set_pagehash(pager_set_pagehash189736,11258355 -#define CHECK_PAGE(CHECK_PAGE189737,11258416 -# define pagerReportSize(pagerReportSize189755,11259896 -# define disable_simulated_io_errors(disable_simulated_io_errors189787,11262664 -# define enable_simulated_io_errors(enable_simulated_io_errors189788,11262744 -# define assertTruncateConstraint(assertTruncateConstraint189794,11263339 -# define DIRECT_MODE DIRECT_MODE189828,11266245 -# define WALTRACE(WALTRACE189875,11270886 -# define WALTRACE(WALTRACE189876,11270928 -#define WAL_MAX_VERSION WAL_MAX_VERSION189877,11270970 -#define WALINDEX_MAX_VERSION WALINDEX_MAX_VERSION189878,11271025 -#define WAL_WRITE_LOCK WAL_WRITE_LOCK189879,11271090 -#define WAL_ALL_BUT_WRITE WAL_ALL_BUT_WRITE189880,11271143 -#define WAL_CKPT_LOCK WAL_CKPT_LOCK189881,11271202 -#define WAL_RECOVER_LOCK WAL_RECOVER_LOCK189882,11271253 -#define WAL_READ_LOCK(WAL_READ_LOCK189883,11271310 -#define WAL_NREADER WAL_NREADER189884,11271361 -#define READMARK_NOT_USED READMARK_NOT_USED189922,11274900 -#define WALINDEX_LOCK_OFFSET WALINDEX_LOCK_OFFSET189923,11274959 -#define WALINDEX_HDR_SIZE WALINDEX_HDR_SIZE189924,11275024 -#define WAL_FRAME_HDRSIZE WAL_FRAME_HDRSIZE189925,11275083 -#define WAL_HDRSIZE WAL_HDRSIZE189926,11275142 -#define WAL_MAGIC WAL_MAGIC189927,11275189 -#define walFrameOffset(walFrameOffset189928,11275232 -#define WAL_NORMAL_MODE WAL_NORMAL_MODE189980,11280111 -#define WAL_EXCLUSIVE_MODE WAL_EXCLUSIVE_MODE189981,11280166 -#define WAL_HEAPMEMORY_MODE WAL_HEAPMEMORY_MODE189982,11280227 -#define WAL_RDWR WAL_RDWR189983,11280290 -#define WAL_RDONLY WAL_RDONLY189984,11280331 -#define WAL_SHM_RDONLY WAL_SHM_RDONLY189985,11280376 -#define HASHTABLE_NPAGE HASHTABLE_NPAGE190006,11282352 -#define HASHTABLE_HASH_1 HASHTABLE_HASH_1190007,11282407 -#define HASHTABLE_NSLOT HASHTABLE_NSLOT190008,11282464 -#define HASHTABLE_NPAGE_ONE HASHTABLE_NPAGE_ONE190009,11282519 -#define WALINDEX_PGSZ WALINDEX_PGSZ190010,11282582 -#define BYTESWAP32(BYTESWAP32190014,11282888 -#define WAL_RETRY WAL_RETRY190049,11285297 -#define MX_CELL_SIZE(MX_CELL_SIZE190087,11288628 -#define MX_CELL(MX_CELL190088,11288677 -# define SQLITE_FILE_HEADER SQLITE_FILE_HEADER190092,11288878 -#define PTF_INTKEY PTF_INTKEY190093,11288941 -#define PTF_ZERODATA PTF_ZERODATA190094,11288986 -#define PTF_LEAFDATA PTF_LEAFDATA190095,11289035 -#define PTF_LEAF PTF_LEAF190096,11289084 -#define EXTRA_SIZE EXTRA_SIZE190150,11293980 -#define READ_LOCK READ_LOCK190160,11294702 -#define WRITE_LOCK WRITE_LOCK190161,11294745 -#define TRANS_NONE TRANS_NONE190187,11297029 -#define TRANS_READ TRANS_READ190188,11297074 -#define TRANS_WRITE TRANS_WRITE190189,11297119 -#define BTS_READ_ONLY BTS_READ_ONLY190249,11302813 -#define BTS_PAGESIZE_FIXED BTS_PAGESIZE_FIXED190250,11302864 -#define BTS_SECURE_DELETE BTS_SECURE_DELETE190251,11302925 -#define BTS_INITIALLY_EMPTY BTS_INITIALLY_EMPTY190252,11302984 -#define BTS_NO_WAL BTS_NO_WAL190253,11303047 -#define BTS_EXCLUSIVE BTS_EXCLUSIVE190254,11303092 -#define BTS_PENDING BTS_PENDING190255,11303143 -#define BTCURSOR_MAX_DEPTH BTCURSOR_MAX_DEPTH190267,11304113 -#define BTCF_WriteFlag BTCF_WriteFlag190309,11308115 -#define BTCF_ValidNKey BTCF_ValidNKey190310,11308168 -#define BTCF_ValidOvfl BTCF_ValidOvfl190311,11308221 -#define BTCF_AtLast BTCF_AtLast190312,11308274 -#define BTCF_Incrblob BTCF_Incrblob190313,11308321 -#define BTCF_Multiple BTCF_Multiple190314,11308372 -#define CURSOR_INVALID CURSOR_INVALID190315,11308423 -#define CURSOR_VALID CURSOR_VALID190316,11308476 -#define CURSOR_SKIPNEXT CURSOR_SKIPNEXT190317,11308525 -#define CURSOR_REQUIRESEEK CURSOR_REQUIRESEEK190318,11308580 -#define CURSOR_FAULT CURSOR_FAULT190319,11308641 -# define PENDING_BYTE_PAGE(PENDING_BYTE_PAGE190320,11308690 -#define PTRMAP_PAGENO(PTRMAP_PAGENO190321,11308750 -#define PTRMAP_PTROFFSET(PTRMAP_PTROFFSET190322,11308801 -#define PTRMAP_ISPAGE(PTRMAP_ISPAGE190323,11308858 -#define PTRMAP_ROOTPAGE PTRMAP_ROOTPAGE190324,11308909 -#define PTRMAP_FREEPAGE PTRMAP_FREEPAGE190325,11308964 -#define PTRMAP_OVERFLOW1 PTRMAP_OVERFLOW1190326,11309019 -#define PTRMAP_OVERFLOW2 PTRMAP_OVERFLOW2190327,11309076 -#define PTRMAP_BTREE PTRMAP_BTREE190328,11309133 -#define btreeIntegrity(btreeIntegrity190329,11309182 -#define ISAUTOVACUUM ISAUTOVACUUM190330,11309235 -#define ISAUTOVACUUM ISAUTOVACUUM190331,11309284 -#define get2byte(get2byte190358,11311628 -#define put2byte(put2byte190359,11311669 -#define get4byte get4byte190360,11311710 -#define put4byte put4byte190361,11311751 -# define get2byteAligned(get2byteAligned190362,11311792 -# define get2byteAligned(get2byteAligned190363,11311848 -# define get2byteAligned(get2byteAligned190364,11311904 -# define get2byteAligned(get2byteAligned190365,11311960 -# define TRACE(TRACE190381,11313366 -#define get2byteNotZero(get2byteNotZero190382,11313402 -#define BTALLOC_ANY BTALLOC_ANY190383,11313457 -#define BTALLOC_EXACT BTALLOC_EXACT190384,11313504 -#define BTALLOC_LE BTALLOC_LE190385,11313555 -#define IfNotOmitAV(IfNotOmitAV190386,11313600 -#define IfNotOmitAV(IfNotOmitAV190387,11313647 - #define querySharedCacheTableLock(querySharedCacheTableLock190391,11314001 - #define setSharedCacheTableLock(setSharedCacheTableLock190392,11314078 - #define clearAllSharedCacheTableLocks(clearAllSharedCacheTableLocks190393,11314151 - #define downgradeAllSharedCacheTableLocks(downgradeAllSharedCacheTableLocks190394,11314236 - #define hasSharedCacheTableLock(hasSharedCacheTableLock190395,11314329 - #define hasReadConflicts(hasReadConflicts190396,11314402 -#define invalidateOverflowCache(invalidateOverflowCache190405,11315190 - #define invalidateIncrblobCursors(invalidateIncrblobCursors190408,11315436 -#define restoreCursorPosition(restoreCursorPosition190420,11316449 - #define ptrmapPut(ptrmapPut190428,11317258 - #define ptrmapGet(ptrmapGet190429,11317303 - #define ptrmapPutOvflPtr(ptrmapPutOvflPtr190430,11317348 -#define findCell(findCell190431,11317407 -#define findCellPastPtr(findCellPastPtr190432,11317448 -# define setChildPtrmaps(setChildPtrmaps190490,11322345 - #define assertCellInfo(assertCellInfo190505,11323728 -# define assertParentIndex(assertParentIndex190520,11325035 -#define NN NN190557,11327821 -#define NB NB190558,11327850 -# define valueFromFunction(valueFromFunction190696,11340454 -#define checkActiveVdbeCnt(checkActiveVdbeCnt190807,11350245 -# define vdbeInvokeSqllog(vdbeInvokeSqllog190814,11350841 -# define MAX_6BYTE MAX_6BYTE190825,11351892 -# define swapMixedEndianFloat(swapMixedEndianFloat190830,11352286 -# define swapMixedEndianFloat(swapMixedEndianFloat190831,11352352 -#define ONE_BYTE_INT(ONE_BYTE_INT190833,11352531 -#define TWO_BYTE_INT(TWO_BYTE_INT190834,11352580 -#define THREE_BYTE_INT(THREE_BYTE_INT190835,11352629 -#define FOUR_BYTE_UINT(FOUR_BYTE_UINT190836,11352682 -#define FOUR_BYTE_INT(FOUR_BYTE_INT190837,11352735 -# define vdbeAssertFieldCountWithinLimits(vdbeAssertFieldCountWithinLimits190844,11353280 -# define checkProfileCallback(checkProfileCallback190870,11355731 -# define checkProfileCallback(checkProfileCallback190871,11355797 -# define memAboutToChange(memAboutToChange190983,11368148 -# define memAboutToChange(memAboutToChange190984,11368206 -# define HAS_UPDATE_HOOK(HAS_UPDATE_HOOK190990,11368641 -# define HAS_UPDATE_HOOK(HAS_UPDATE_HOOK190991,11368697 -# define UPDATE_MAX_BLOBSIZE(UPDATE_MAX_BLOBSIZE190993,11368827 -# define UPDATE_MAX_BLOBSIZE(UPDATE_MAX_BLOBSIZE190994,11368891 -# define VdbeBranchTaken(VdbeBranchTaken190995,11368955 -# define VdbeBranchTaken(VdbeBranchTaken190996,11369011 -#define Stringify(Stringify190998,11369152 -#define Deephemeralize(Deephemeralize190999,11369195 -#define isSorter(isSorter191000,11369248 -# define REGISTER_TRACE(REGISTER_TRACE191011,11370109 -# define REGISTER_TRACE(REGISTER_TRACE191012,11370164 -#define _HWTIME_H__HWTIME_H_191013,11370219 -# define MAX_ROWID MAX_ROWID191023,11371023 -#define SQLITE_MAX_PMASZ SQLITE_MAX_PMASZ191052,11373529 -#define SORTER_TYPE_INTEGER SORTER_TYPE_INTEGER191139,11381570 -#define SORTER_TYPE_TEXT SORTER_TYPE_TEXT191140,11381633 -#define SRVAL(SRVAL191203,11387278 -#define SORTER_MAX_MERGE_COUNT SORTER_MAX_MERGE_COUNT191204,11387313 -# define nWorker nWorker191217,11388275 -#undef nWorker nWorker191218,11388315 -# define vdbeSorterWorkDebug(vdbeSorterWorkDebug191225,11388906 -# define vdbeSorterRewindDebug(vdbeSorterRewindDebug191226,11388970 -# define vdbeSorterPopulateDebug(vdbeSorterPopulateDebug191227,11389038 -# define vdbeSorterBlockDebug(vdbeSorterBlockDebug191228,11389110 -# define vdbeSorterJoinAll(vdbeSorterJoinAll191232,11389429 -# define vdbeSorterJoinThread(vdbeSorterJoinThread191233,11389489 -# define vdbeSorterExtendFile(vdbeSorterExtendFile191240,11390141 -#define INCRINIT_NORMAL INCRINIT_NORMAL191262,11391927 -#define INCRINIT_TASK INCRINIT_TASK191263,11391982 -#define INCRINIT_ROOT INCRINIT_ROOT191264,11392033 -#define MEMJOURNAL_DFLT_FILECHUNKSIZE MEMJOURNAL_DFLT_FILECHUNKSIZE191287,11393919 -#define fileChunkSize(fileChunkSize191288,11394002 -#define exprSetHeight(exprSetHeight191375,11401690 -# define withDup(withDup191394,11403288 -# define IsStat4 IsStat4191494,11413102 -# define IsStat3 IsStat3191495,11413142 -# define IsStat4 IsStat4191496,11413182 -# define IsStat3 IsStat3191497,11413222 -# define IsStat4 IsStat4191498,11413262 -# define IsStat3 IsStat3191499,11413302 -# undef SQLITE_STAT4_SAMPLESSQLITE_STAT4_SAMPLES191500,11413342 -# define SQLITE_STAT4_SAMPLES SQLITE_STAT4_SAMPLES191501,11413406 -#define IsStat34 IsStat34191502,11413472 -# define SQLITE_STAT4_SAMPLES SQLITE_STAT4_SAMPLES191504,11413568 -#define STAT_GET_STAT1 STAT_GET_STAT1191568,11419081 -#define STAT_GET_ROWID STAT_GET_ROWID191569,11419134 -#define STAT_GET_NEQ STAT_GET_NEQ191570,11419187 -#define STAT_GET_NLT STAT_GET_NLT191571,11419236 -#define STAT_GET_NDLT STAT_GET_NDLT191572,11419285 - #define codeTableLocks(codeTableLocks191625,11423274 -# define SAVE_SZ SAVE_SZ191629,11423620 -# define sqliteViewResetAll(sqliteViewResetAll191677,11428216 -#define FUNC_PERFECT_MATCH FUNC_PERFECT_MATCH191729,11433325 -# undef isViewisView191741,11434299 -# define isView isView191742,11434336 - #undef isViewisView191743,11434375 - #undef pTriggerpTrigger191744,11434412 -#define noopFunc noopFunc191762,11435857 -# define sqlite3Utf8Read(sqlite3Utf8Read191777,11436817 -# define Utf8Read(Utf8Read191778,11436874 -# define Utf8Read(Utf8Read191779,11436917 -#define COLUMN_MASK(COLUMN_MASK191847,11441992 -# define autoIncBegin(autoIncBegin191862,11443226 -# define autoIncStep(autoIncStep191863,11443277 -# undef isViewisView191865,11443390 -# define isView isView191866,11443427 - #undef isViewisView191867,11443466 - #undef pTriggerpTrigger191868,11443503 - #undef tmasktmask191869,11443544 -#define CKCNSTRNT_COLUMN CKCNSTRNT_COLUMN191870,11443579 -#define CKCNSTRNT_ROWID CKCNSTRNT_ROWID191871,11443637 - #define SQLITE_CORE SQLITE_CORE191881,11444493 -#define _SQLITE3EXT_H__SQLITE3EXT_H_191882,11444543 -#define sqlite3_aggregate_context sqlite3_aggregate_context192313,11482666 -#define sqlite3_aggregate_count sqlite3_aggregate_count192314,11482742 -#define sqlite3_bind_blob sqlite3_bind_blob192315,11482814 -#define sqlite3_bind_double sqlite3_bind_double192316,11482874 -#define sqlite3_bind_int sqlite3_bind_int192317,11482938 -#define sqlite3_bind_int64 sqlite3_bind_int64192318,11482996 -#define sqlite3_bind_null sqlite3_bind_null192319,11483058 -#define sqlite3_bind_parameter_count sqlite3_bind_parameter_count192320,11483118 -#define sqlite3_bind_parameter_index sqlite3_bind_parameter_index192321,11483200 -#define sqlite3_bind_parameter_name sqlite3_bind_parameter_name192322,11483282 -#define sqlite3_bind_text sqlite3_bind_text192323,11483362 -#define sqlite3_bind_text16 sqlite3_bind_text16192324,11483422 -#define sqlite3_bind_value sqlite3_bind_value192325,11483486 -#define sqlite3_busy_handler sqlite3_busy_handler192326,11483548 -#define sqlite3_busy_timeout sqlite3_busy_timeout192327,11483614 -#define sqlite3_changes sqlite3_changes192328,11483680 -#define sqlite3_close sqlite3_close192329,11483736 -#define sqlite3_collation_needed sqlite3_collation_needed192330,11483788 -#define sqlite3_collation_needed16 sqlite3_collation_needed16192331,11483862 -#define sqlite3_column_blob sqlite3_column_blob192332,11483940 -#define sqlite3_column_bytes sqlite3_column_bytes192333,11484004 -#define sqlite3_column_bytes16 sqlite3_column_bytes16192334,11484070 -#define sqlite3_column_count sqlite3_column_count192335,11484140 -#define sqlite3_column_database_name sqlite3_column_database_name192336,11484206 -#define sqlite3_column_database_name16 sqlite3_column_database_name16192337,11484288 -#define sqlite3_column_decltype sqlite3_column_decltype192338,11484374 -#define sqlite3_column_decltype16 sqlite3_column_decltype16192339,11484446 -#define sqlite3_column_double sqlite3_column_double192340,11484522 -#define sqlite3_column_int sqlite3_column_int192341,11484590 -#define sqlite3_column_int64 sqlite3_column_int64192342,11484652 -#define sqlite3_column_name sqlite3_column_name192343,11484718 -#define sqlite3_column_name16 sqlite3_column_name16192344,11484782 -#define sqlite3_column_origin_name sqlite3_column_origin_name192345,11484850 -#define sqlite3_column_origin_name16 sqlite3_column_origin_name16192346,11484928 -#define sqlite3_column_table_name sqlite3_column_table_name192347,11485010 -#define sqlite3_column_table_name16 sqlite3_column_table_name16192348,11485086 -#define sqlite3_column_text sqlite3_column_text192349,11485166 -#define sqlite3_column_text16 sqlite3_column_text16192350,11485230 -#define sqlite3_column_type sqlite3_column_type192351,11485298 -#define sqlite3_column_value sqlite3_column_value192352,11485362 -#define sqlite3_commit_hook sqlite3_commit_hook192353,11485428 -#define sqlite3_complete sqlite3_complete192354,11485492 -#define sqlite3_complete16 sqlite3_complete16192355,11485550 -#define sqlite3_create_collation sqlite3_create_collation192356,11485612 -#define sqlite3_create_collation16 sqlite3_create_collation16192357,11485686 -#define sqlite3_create_function sqlite3_create_function192358,11485764 -#define sqlite3_create_function16 sqlite3_create_function16192359,11485836 -#define sqlite3_create_module sqlite3_create_module192360,11485912 -#define sqlite3_create_module_v2 sqlite3_create_module_v2192361,11485980 -#define sqlite3_data_count sqlite3_data_count192362,11486054 -#define sqlite3_db_handle sqlite3_db_handle192363,11486116 -#define sqlite3_declare_vtab sqlite3_declare_vtab192364,11486176 -#define sqlite3_enable_shared_cache sqlite3_enable_shared_cache192365,11486242 -#define sqlite3_errcode sqlite3_errcode192366,11486322 -#define sqlite3_errmsg sqlite3_errmsg192367,11486378 -#define sqlite3_errmsg16 sqlite3_errmsg16192368,11486432 -#define sqlite3_exec sqlite3_exec192369,11486490 -#define sqlite3_expired sqlite3_expired192370,11486540 -#define sqlite3_finalize sqlite3_finalize192371,11486596 -#define sqlite3_free sqlite3_free192372,11486654 -#define sqlite3_free_table sqlite3_free_table192373,11486704 -#define sqlite3_get_autocommit sqlite3_get_autocommit192374,11486766 -#define sqlite3_get_auxdata sqlite3_get_auxdata192375,11486836 -#define sqlite3_get_table sqlite3_get_table192376,11486900 -#define sqlite3_global_recover sqlite3_global_recover192377,11486960 -#define sqlite3_interrupt sqlite3_interrupt192378,11487030 -#define sqlite3_last_insert_rowid sqlite3_last_insert_rowid192379,11487090 -#define sqlite3_libversion sqlite3_libversion192380,11487166 -#define sqlite3_libversion_number sqlite3_libversion_number192381,11487228 -#define sqlite3_malloc sqlite3_malloc192382,11487304 -#define sqlite3_mprintf sqlite3_mprintf192383,11487358 -#define sqlite3_open sqlite3_open192384,11487414 -#define sqlite3_open16 sqlite3_open16192385,11487464 -#define sqlite3_prepare sqlite3_prepare192386,11487518 -#define sqlite3_prepare16 sqlite3_prepare16192387,11487574 -#define sqlite3_prepare_v2 sqlite3_prepare_v2192388,11487634 -#define sqlite3_prepare16_v2 sqlite3_prepare16_v2192389,11487696 -#define sqlite3_profile sqlite3_profile192390,11487762 -#define sqlite3_progress_handler sqlite3_progress_handler192391,11487818 -#define sqlite3_realloc sqlite3_realloc192392,11487892 -#define sqlite3_reset sqlite3_reset192393,11487948 -#define sqlite3_result_blob sqlite3_result_blob192394,11488000 -#define sqlite3_result_double sqlite3_result_double192395,11488064 -#define sqlite3_result_error sqlite3_result_error192396,11488132 -#define sqlite3_result_error16 sqlite3_result_error16192397,11488198 -#define sqlite3_result_int sqlite3_result_int192398,11488268 -#define sqlite3_result_int64 sqlite3_result_int64192399,11488330 -#define sqlite3_result_null sqlite3_result_null192400,11488396 -#define sqlite3_result_text sqlite3_result_text192401,11488460 -#define sqlite3_result_text16 sqlite3_result_text16192402,11488524 -#define sqlite3_result_text16be sqlite3_result_text16be192403,11488592 -#define sqlite3_result_text16le sqlite3_result_text16le192404,11488664 -#define sqlite3_result_value sqlite3_result_value192405,11488736 -#define sqlite3_rollback_hook sqlite3_rollback_hook192406,11488802 -#define sqlite3_set_authorizer sqlite3_set_authorizer192407,11488870 -#define sqlite3_set_auxdata sqlite3_set_auxdata192408,11488940 -#define sqlite3_snprintf sqlite3_snprintf192409,11489004 -#define sqlite3_step sqlite3_step192410,11489062 -#define sqlite3_table_column_metadata sqlite3_table_column_metadata192411,11489112 -#define sqlite3_thread_cleanup sqlite3_thread_cleanup192412,11489196 -#define sqlite3_total_changes sqlite3_total_changes192413,11489266 -#define sqlite3_trace sqlite3_trace192414,11489334 -#define sqlite3_transfer_bindings sqlite3_transfer_bindings192415,11489386 -#define sqlite3_update_hook sqlite3_update_hook192416,11489462 -#define sqlite3_user_data sqlite3_user_data192417,11489526 -#define sqlite3_value_blob sqlite3_value_blob192418,11489586 -#define sqlite3_value_bytes sqlite3_value_bytes192419,11489648 -#define sqlite3_value_bytes16 sqlite3_value_bytes16192420,11489712 -#define sqlite3_value_double sqlite3_value_double192421,11489780 -#define sqlite3_value_int sqlite3_value_int192422,11489846 -#define sqlite3_value_int64 sqlite3_value_int64192423,11489906 -#define sqlite3_value_numeric_type sqlite3_value_numeric_type192424,11489970 -#define sqlite3_value_text sqlite3_value_text192425,11490048 -#define sqlite3_value_text16 sqlite3_value_text16192426,11490110 -#define sqlite3_value_text16be sqlite3_value_text16be192427,11490176 -#define sqlite3_value_text16le sqlite3_value_text16le192428,11490246 -#define sqlite3_value_type sqlite3_value_type192429,11490316 -#define sqlite3_vmprintf sqlite3_vmprintf192430,11490378 -#define sqlite3_vsnprintf sqlite3_vsnprintf192431,11490436 -#define sqlite3_overload_function sqlite3_overload_function192432,11490496 -#define sqlite3_prepare_v2 sqlite3_prepare_v2192433,11490572 -#define sqlite3_prepare16_v2 sqlite3_prepare16_v2192434,11490634 -#define sqlite3_clear_bindings sqlite3_clear_bindings192435,11490700 -#define sqlite3_bind_zeroblob sqlite3_bind_zeroblob192436,11490770 -#define sqlite3_blob_bytes sqlite3_blob_bytes192437,11490838 -#define sqlite3_blob_close sqlite3_blob_close192438,11490900 -#define sqlite3_blob_open sqlite3_blob_open192439,11490962 -#define sqlite3_blob_read sqlite3_blob_read192440,11491022 -#define sqlite3_blob_write sqlite3_blob_write192441,11491082 -#define sqlite3_create_collation_v2 sqlite3_create_collation_v2192442,11491144 -#define sqlite3_file_control sqlite3_file_control192443,11491224 -#define sqlite3_memory_highwater sqlite3_memory_highwater192444,11491290 -#define sqlite3_memory_used sqlite3_memory_used192445,11491364 -#define sqlite3_mutex_alloc sqlite3_mutex_alloc192446,11491428 -#define sqlite3_mutex_enter sqlite3_mutex_enter192447,11491492 -#define sqlite3_mutex_free sqlite3_mutex_free192448,11491556 -#define sqlite3_mutex_leave sqlite3_mutex_leave192449,11491618 -#define sqlite3_mutex_try sqlite3_mutex_try192450,11491682 -#define sqlite3_open_v2 sqlite3_open_v2192451,11491742 -#define sqlite3_release_memory sqlite3_release_memory192452,11491798 -#define sqlite3_result_error_nomem sqlite3_result_error_nomem192453,11491868 -#define sqlite3_result_error_toobig sqlite3_result_error_toobig192454,11491946 -#define sqlite3_sleep sqlite3_sleep192455,11492026 -#define sqlite3_soft_heap_limit sqlite3_soft_heap_limit192456,11492078 -#define sqlite3_vfs_find sqlite3_vfs_find192457,11492150 -#define sqlite3_vfs_register sqlite3_vfs_register192458,11492208 -#define sqlite3_vfs_unregister sqlite3_vfs_unregister192459,11492274 -#define sqlite3_threadsafe sqlite3_threadsafe192460,11492344 -#define sqlite3_result_zeroblob sqlite3_result_zeroblob192461,11492406 -#define sqlite3_result_error_code sqlite3_result_error_code192462,11492478 -#define sqlite3_test_control sqlite3_test_control192463,11492554 -#define sqlite3_randomness sqlite3_randomness192464,11492620 -#define sqlite3_context_db_handle sqlite3_context_db_handle192465,11492682 -#define sqlite3_extended_result_codes sqlite3_extended_result_codes192466,11492758 -#define sqlite3_limit sqlite3_limit192467,11492842 -#define sqlite3_next_stmt sqlite3_next_stmt192468,11492894 -#define sqlite3_sql sqlite3_sql192469,11492954 -#define sqlite3_status sqlite3_status192470,11493002 -#define sqlite3_backup_finish sqlite3_backup_finish192471,11493056 -#define sqlite3_backup_init sqlite3_backup_init192472,11493124 -#define sqlite3_backup_pagecount sqlite3_backup_pagecount192473,11493188 -#define sqlite3_backup_remaining sqlite3_backup_remaining192474,11493262 -#define sqlite3_backup_step sqlite3_backup_step192475,11493336 -#define sqlite3_compileoption_get sqlite3_compileoption_get192476,11493400 -#define sqlite3_compileoption_used sqlite3_compileoption_used192477,11493476 -#define sqlite3_create_function_v2 sqlite3_create_function_v2192478,11493554 -#define sqlite3_db_config sqlite3_db_config192479,11493632 -#define sqlite3_db_mutex sqlite3_db_mutex192480,11493692 -#define sqlite3_db_status sqlite3_db_status192481,11493750 -#define sqlite3_extended_errcode sqlite3_extended_errcode192482,11493810 -#define sqlite3_log sqlite3_log192483,11493884 -#define sqlite3_soft_heap_limit64 sqlite3_soft_heap_limit64192484,11493932 -#define sqlite3_sourceid sqlite3_sourceid192485,11494008 -#define sqlite3_stmt_status sqlite3_stmt_status192486,11494066 -#define sqlite3_strnicmp sqlite3_strnicmp192487,11494130 -#define sqlite3_unlock_notify sqlite3_unlock_notify192488,11494188 -#define sqlite3_wal_autocheckpoint sqlite3_wal_autocheckpoint192489,11494256 -#define sqlite3_wal_checkpoint sqlite3_wal_checkpoint192490,11494334 -#define sqlite3_wal_hook sqlite3_wal_hook192491,11494404 -#define sqlite3_blob_reopen sqlite3_blob_reopen192492,11494462 -#define sqlite3_vtab_config sqlite3_vtab_config192493,11494526 -#define sqlite3_vtab_on_conflict sqlite3_vtab_on_conflict192494,11494590 -#define sqlite3_close_v2 sqlite3_close_v2192495,11494664 -#define sqlite3_db_filename sqlite3_db_filename192496,11494722 -#define sqlite3_db_readonly sqlite3_db_readonly192497,11494786 -#define sqlite3_db_release_memory sqlite3_db_release_memory192498,11494850 -#define sqlite3_errstr sqlite3_errstr192499,11494926 -#define sqlite3_stmt_busy sqlite3_stmt_busy192500,11494980 -#define sqlite3_stmt_readonly sqlite3_stmt_readonly192501,11495040 -#define sqlite3_stricmp sqlite3_stricmp192502,11495108 -#define sqlite3_uri_boolean sqlite3_uri_boolean192503,11495164 -#define sqlite3_uri_int64 sqlite3_uri_int64192504,11495228 -#define sqlite3_uri_parameter sqlite3_uri_parameter192505,11495288 -#define sqlite3_uri_vsnprintf sqlite3_uri_vsnprintf192506,11495356 -#define sqlite3_wal_checkpoint_v2 sqlite3_wal_checkpoint_v2192507,11495424 -#define sqlite3_auto_extension sqlite3_auto_extension192508,11495500 -#define sqlite3_bind_blob64 sqlite3_bind_blob64192509,11495570 -#define sqlite3_bind_text64 sqlite3_bind_text64192510,11495634 -#define sqlite3_cancel_auto_extension sqlite3_cancel_auto_extension192511,11495698 -#define sqlite3_load_extension sqlite3_load_extension192512,11495782 -#define sqlite3_malloc64 sqlite3_malloc64192513,11495852 -#define sqlite3_msize sqlite3_msize192514,11495910 -#define sqlite3_realloc64 sqlite3_realloc64192515,11495962 -#define sqlite3_reset_auto_extension sqlite3_reset_auto_extension192516,11496022 -#define sqlite3_result_blob64 sqlite3_result_blob64192517,11496104 -#define sqlite3_result_text64 sqlite3_result_text64192518,11496172 -#define sqlite3_strglob sqlite3_strglob192519,11496240 -#define sqlite3_value_dup sqlite3_value_dup192520,11496296 -#define sqlite3_value_free sqlite3_value_free192521,11496356 -#define sqlite3_result_zeroblob64 sqlite3_result_zeroblob64192522,11496418 -#define sqlite3_bind_zeroblob64 sqlite3_bind_zeroblob64192523,11496494 -#define sqlite3_value_subtype sqlite3_value_subtype192524,11496566 -#define sqlite3_result_subtype sqlite3_result_subtype192525,11496634 -#define sqlite3_status64 sqlite3_status64192526,11496704 -#define sqlite3_strlike sqlite3_strlike192527,11496762 -#define sqlite3_db_cacheflush sqlite3_db_cacheflush192528,11496818 -#define sqlite3_system_errno sqlite3_system_errno192529,11496886 -# define SQLITE_EXTENSION_INIT1 SQLITE_EXTENSION_INIT1192530,11496952 -# define SQLITE_EXTENSION_INIT2(SQLITE_EXTENSION_INIT2192531,11497023 -# define SQLITE_EXTENSION_INIT3 SQLITE_EXTENSION_INIT3192532,11497094 -# define SQLITE_EXTENSION_INIT1 SQLITE_EXTENSION_INIT1192533,11497165 -# define SQLITE_EXTENSION_INIT2(SQLITE_EXTENSION_INIT2192534,11497236 -# define SQLITE_EXTENSION_INIT3 SQLITE_EXTENSION_INIT3192535,11497307 -# define sqlite3_column_database_name sqlite3_column_database_name192536,11497378 -# define sqlite3_column_database_name16 sqlite3_column_database_name16192537,11497461 -# define sqlite3_column_table_name sqlite3_column_table_name192538,11497548 -# define sqlite3_column_table_name16 sqlite3_column_table_name16192539,11497625 -# define sqlite3_column_origin_name sqlite3_column_origin_name192540,11497706 -# define sqlite3_column_origin_name16 sqlite3_column_origin_name16192541,11497785 -# define sqlite3_set_authorizer sqlite3_set_authorizer192542,11497868 -# define sqlite3_bind_text16 sqlite3_bind_text16192543,11497939 -# define sqlite3_collation_needed16 sqlite3_collation_needed16192544,11498004 -# define sqlite3_column_decltype16 sqlite3_column_decltype16192545,11498083 -# define sqlite3_column_name16 sqlite3_column_name16192546,11498160 -# define sqlite3_column_text16 sqlite3_column_text16192547,11498229 -# define sqlite3_complete16 sqlite3_complete16192548,11498298 -# define sqlite3_create_collation16 sqlite3_create_collation16192549,11498361 -# define sqlite3_create_function16 sqlite3_create_function16192550,11498440 -# define sqlite3_errmsg16 sqlite3_errmsg16192551,11498517 -# define sqlite3_open16 sqlite3_open16192552,11498576 -# define sqlite3_prepare16 sqlite3_prepare16192553,11498631 -# define sqlite3_prepare16_v2 sqlite3_prepare16_v2192554,11498692 -# define sqlite3_result_error16 sqlite3_result_error16192555,11498759 -# define sqlite3_result_text16 sqlite3_result_text16192556,11498830 -# define sqlite3_result_text16be sqlite3_result_text16be192557,11498899 -# define sqlite3_result_text16le sqlite3_result_text16le192558,11498972 -# define sqlite3_value_text16 sqlite3_value_text16192559,11499045 -# define sqlite3_value_text16be sqlite3_value_text16be192560,11499112 -# define sqlite3_value_text16le sqlite3_value_text16le192561,11499183 -# define sqlite3_column_database_name16 sqlite3_column_database_name16192562,11499254 -# define sqlite3_column_table_name16 sqlite3_column_table_name16192563,11499341 -# define sqlite3_column_origin_name16 sqlite3_column_origin_name16192564,11499422 -# define sqlite3_complete sqlite3_complete192565,11499505 -# define sqlite3_complete16 sqlite3_complete16192566,11499564 -# define sqlite3_column_decltype16 sqlite3_column_decltype16192567,11499627 -# define sqlite3_column_decltype sqlite3_column_decltype192568,11499704 -# define sqlite3_progress_handler sqlite3_progress_handler192569,11499777 -# define sqlite3_create_module sqlite3_create_module192570,11499852 -# define sqlite3_create_module_v2 sqlite3_create_module_v2192571,11499921 -# define sqlite3_declare_vtab sqlite3_declare_vtab192572,11499996 -# define sqlite3_vtab_config sqlite3_vtab_config192573,11500063 -# define sqlite3_vtab_on_conflict sqlite3_vtab_on_conflict192574,11500128 -# define sqlite3_enable_shared_cache sqlite3_enable_shared_cache192575,11500203 -# define sqlite3_profile sqlite3_profile192576,11500284 -# define sqlite3_trace sqlite3_trace192577,11500341 -# define sqlite3_free_table sqlite3_free_table192578,11500394 -# define sqlite3_get_table sqlite3_get_table192579,11500457 -#define sqlite3_bind_zeroblob sqlite3_bind_zeroblob192580,11500518 -#define sqlite3_blob_bytes sqlite3_blob_bytes192581,11500586 -#define sqlite3_blob_close sqlite3_blob_close192582,11500648 -#define sqlite3_blob_open sqlite3_blob_open192583,11500710 -#define sqlite3_blob_read sqlite3_blob_read192584,11500770 -#define sqlite3_blob_write sqlite3_blob_write192585,11500830 -#define sqlite3_blob_reopen sqlite3_blob_reopen192586,11500892 -# define wsdAutoextInit wsdAutoextInit192600,11502130 -# define wsdAutoext wsdAutoext192601,11502185 -# define wsdAutoextInitwsdAutoextInit192602,11502232 -# define wsdAutoext wsdAutoext192603,11502286 -# define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE192608,11502785 -# define SQLITE_ENABLE_LOCKING_STYLE SQLITE_ENABLE_LOCKING_STYLE192609,11502869 -#define PragTyp_HEADER_VALUE PragTyp_HEADER_VALUE192610,11502953 -#define PragTyp_AUTO_VACUUM PragTyp_AUTO_VACUUM192611,11503019 -#define PragTyp_FLAG PragTyp_FLAG192612,11503083 -#define PragTyp_BUSY_TIMEOUT PragTyp_BUSY_TIMEOUT192613,11503133 -#define PragTyp_CACHE_SIZE PragTyp_CACHE_SIZE192614,11503199 -#define PragTyp_CACHE_SPILL PragTyp_CACHE_SPILL192615,11503261 -#define PragTyp_CASE_SENSITIVE_LIKE PragTyp_CASE_SENSITIVE_LIKE192616,11503325 -#define PragTyp_COLLATION_LIST PragTyp_COLLATION_LIST192617,11503405 -#define PragTyp_COMPILE_OPTIONS PragTyp_COMPILE_OPTIONS192618,11503475 -#define PragTyp_DATA_STORE_DIRECTORY PragTyp_DATA_STORE_DIRECTORY192619,11503547 -#define PragTyp_DATABASE_LIST PragTyp_DATABASE_LIST192620,11503629 -#define PragTyp_DEFAULT_CACHE_SIZE PragTyp_DEFAULT_CACHE_SIZE192621,11503697 -#define PragTyp_ENCODING PragTyp_ENCODING192622,11503775 -#define PragTyp_FOREIGN_KEY_CHECK PragTyp_FOREIGN_KEY_CHECK192623,11503833 -#define PragTyp_FOREIGN_KEY_LIST PragTyp_FOREIGN_KEY_LIST192624,11503909 -#define PragTyp_INCREMENTAL_VACUUM PragTyp_INCREMENTAL_VACUUM192625,11503983 -#define PragTyp_INDEX_INFO PragTyp_INDEX_INFO192626,11504061 -#define PragTyp_INDEX_LIST PragTyp_INDEX_LIST192627,11504123 -#define PragTyp_INTEGRITY_CHECK PragTyp_INTEGRITY_CHECK192628,11504185 -#define PragTyp_JOURNAL_MODE PragTyp_JOURNAL_MODE192629,11504257 -#define PragTyp_JOURNAL_SIZE_LIMIT PragTyp_JOURNAL_SIZE_LIMIT192630,11504323 -#define PragTyp_LOCK_PROXY_FILE PragTyp_LOCK_PROXY_FILE192631,11504401 -#define PragTyp_LOCKING_MODE PragTyp_LOCKING_MODE192632,11504473 -#define PragTyp_PAGE_COUNT PragTyp_PAGE_COUNT192633,11504539 -#define PragTyp_MMAP_SIZE PragTyp_MMAP_SIZE192634,11504601 -#define PragTyp_PAGE_SIZE PragTyp_PAGE_SIZE192635,11504661 -#define PragTyp_SECURE_DELETE PragTyp_SECURE_DELETE192636,11504721 -#define PragTyp_SHRINK_MEMORY PragTyp_SHRINK_MEMORY192637,11504789 -#define PragTyp_SOFT_HEAP_LIMIT PragTyp_SOFT_HEAP_LIMIT192638,11504857 -#define PragTyp_STATS PragTyp_STATS192639,11504929 -#define PragTyp_SYNCHRONOUS PragTyp_SYNCHRONOUS192640,11504981 -#define PragTyp_TABLE_INFO PragTyp_TABLE_INFO192641,11505045 -#define PragTyp_TEMP_STORE PragTyp_TEMP_STORE192642,11505107 -#define PragTyp_TEMP_STORE_DIRECTORY PragTyp_TEMP_STORE_DIRECTORY192643,11505169 -#define PragTyp_THREADS PragTyp_THREADS192644,11505251 -#define PragTyp_WAL_AUTOCHECKPOINT PragTyp_WAL_AUTOCHECKPOINT192645,11505307 -#define PragTyp_WAL_CHECKPOINT PragTyp_WAL_CHECKPOINT192646,11505385 -#define PragTyp_ACTIVATE_EXTENSIONS PragTyp_ACTIVATE_EXTENSIONS192647,11505455 -#define PragTyp_HEXKEY PragTyp_HEXKEY192648,11505535 -#define PragTyp_KEY PragTyp_KEY192649,11505589 -#define PragTyp_REKEY PragTyp_REKEY192650,11505637 -#define PragTyp_LOCK_STATUS PragTyp_LOCK_STATUS192651,11505689 -#define PragTyp_PARSER_TRACE PragTyp_PARSER_TRACE192652,11505753 -#define PragFlag_NeedSchema PragFlag_NeedSchema192653,11505819 -#define PragFlag_ReadOnly PragFlag_ReadOnly192654,11505883 -# define setAllPagerFlags(setAllPagerFlags192677,11507700 -# define SQLITE_INTEGRITY_CHECK_ERROR_MAX SQLITE_INTEGRITY_CHECK_ERROR_MAX192681,11507991 -# define SELECTTRACE(SELECTTRACE192699,11509470 -# define SELECTTRACE(SELECTTRACE192700,11509519 -#define SORTFLAG_UseSorter SORTFLAG_UseSorter192729,11512132 -# define explainSetInteger(explainSetInteger192754,11514185 -# define explainTempTable(explainTempTable192755,11514246 -# define explainSetInteger(explainSetInteger192756,11514305 -# define explainComposite(explainComposite192758,11514428 -# define columnType(columnType192760,11514549 -# define columnType(columnType192761,11514596 -#define selectPopWith selectPopWith192793,11517233 -# define explainSimpleCount(explainSimpleCount192804,11518232 -# undef isViewisView192852,11522396 -# define isView isView192853,11522433 - #undef isViewisView192854,11522472 - #undef pTriggerpTrigger192855,11522509 -# define WHERETRACE(WHERETRACE192907,11527326 -# define WHERETRACE_ENABLED WHERETRACE_ENABLED192908,11527373 -# define WHERETRACE(WHERETRACE192909,11527436 -# define WHERE_LOOP_XFER_SZ WHERE_LOOP_XFER_SZ193024,11537767 -#define N_OR_COST N_OR_COST193040,11539095 -#define TERM_DYNAMIC TERM_DYNAMIC193092,11543958 -#define TERM_VIRTUAL TERM_VIRTUAL193093,11544008 -#define TERM_CODED TERM_CODED193094,11544058 -#define TERM_COPIED TERM_COPIED193095,11544104 -#define TERM_ORINFO TERM_ORINFO193096,11544152 -#define TERM_ANDINFO TERM_ANDINFO193097,11544200 -#define TERM_OR_OK TERM_OR_OK193098,11544250 -# define TERM_VNULL TERM_VNULL193099,11544296 -# define TERM_VNULL TERM_VNULL193100,11544344 -#define TERM_LIKEOPT TERM_LIKEOPT193101,11544392 -#define TERM_LIKECOND TERM_LIKECOND193102,11544442 -#define TERM_LIKE TERM_LIKE193103,11544494 -#define TERM_IS TERM_IS193104,11544538 -#define initMaskSet(initMaskSet193158,11549321 -# define sqlite3WhereExplainOneScan(sqlite3WhereExplainOneScan193221,11555348 -# define sqlite3WhereAddScanStatus(sqlite3WhereAddScanStatus193222,11555427 -#define WO_IN WO_IN193223,11555504 -#define WO_EQ WO_EQ193224,11555540 -#define WO_LT WO_LT193225,11555576 -#define WO_LE WO_LE193226,11555612 -#define WO_GT WO_GT193227,11555648 -#define WO_GE WO_GE193228,11555684 -#define WO_MATCH WO_MATCH193229,11555720 -#define WO_IS WO_IS193230,11555762 -#define WO_ISNULL WO_ISNULL193231,11555798 -#define WO_OR WO_OR193232,11555842 -#define WO_AND WO_AND193233,11555878 -#define WO_EQUIV WO_EQUIV193234,11555916 -#define WO_NOOP WO_NOOP193235,11555958 -#define WO_ALL WO_ALL193236,11555998 -#define WO_SINGLE WO_SINGLE193237,11556036 -#define WHERE_COLUMN_EQ WHERE_COLUMN_EQ193238,11556080 -#define WHERE_COLUMN_RANGE WHERE_COLUMN_RANGE193239,11556136 -#define WHERE_COLUMN_IN WHERE_COLUMN_IN193240,11556198 -#define WHERE_COLUMN_NULL WHERE_COLUMN_NULL193241,11556254 -#define WHERE_CONSTRAINT WHERE_CONSTRAINT193242,11556314 -#define WHERE_TOP_LIMIT WHERE_TOP_LIMIT193243,11556372 -#define WHERE_BTM_LIMIT WHERE_BTM_LIMIT193244,11556428 -#define WHERE_BOTH_LIMIT WHERE_BOTH_LIMIT193245,11556484 -#define WHERE_IDX_ONLY WHERE_IDX_ONLY193246,11556542 -#define WHERE_IPK WHERE_IPK193247,11556596 -#define WHERE_INDEXED WHERE_INDEXED193248,11556640 -#define WHERE_VIRTUALTABLE WHERE_VIRTUALTABLE193249,11556692 -#define WHERE_IN_ABLE WHERE_IN_ABLE193250,11556754 -#define WHERE_ONEROW WHERE_ONEROW193251,11556806 -#define WHERE_MULTI_OR WHERE_MULTI_OR193252,11556856 -#define WHERE_AUTO_INDEX WHERE_AUTO_INDEX193253,11556910 -#define WHERE_SKIPSCAN WHERE_SKIPSCAN193254,11556968 -#define WHERE_UNQ_WANTED WHERE_UNQ_WANTED193255,11557022 -#define WHERE_PARTIALIDX WHERE_PARTIALIDX193256,11557080 -# define whereLikeOptimizationStringFixup(whereLikeOptimizationStringFixup193267,11558000 -# define codeCursorHint(codeCursorHint193278,11558929 -#define TRACE_IDX_INPUTS(TRACE_IDX_INPUTS193326,11562959 -#define TRACE_IDX_OUTPUTS(TRACE_IDX_OUTPUTS193327,11563017 -# define ApplyCostMultiplier(ApplyCostMultiplier193353,11565171 -# define ApplyCostMultiplier(ApplyCostMultiplier193354,11565236 -#define YYNOERRORRECOVERY YYNOERRORRECOVERY193372,11566681 -#define yytestcase(yytestcase193373,11566741 -#define YYPARSEFREENEVERNULL YYPARSEFREENEVERNULL193374,11566787 -#define YYMALLOCARGTYPE YYMALLOCARGTYPE193375,11566853 -# define INTERFACE INTERFACE193406,11569228 -#define YYCODETYPE YYCODETYPE193407,11569273 -#define YYNOCODE YYNOCODE193408,11569319 -#define YYACTIONTYPE YYACTIONTYPE193409,11569361 -#define YYWILDCARD YYWILDCARD193410,11569411 -#define sqlite3ParserTOKENTYPE sqlite3ParserTOKENTYPE193411,11569457 -#define YYSTACKDEPTH YYSTACKDEPTH193447,11571262 -#define sqlite3ParserARG_SDECL sqlite3ParserARG_SDECL193448,11571312 -#define sqlite3ParserARG_PDECL sqlite3ParserARG_PDECL193449,11571382 -#define sqlite3ParserARG_FETCH sqlite3ParserARG_FETCH193450,11571452 -#define sqlite3ParserARG_STORE sqlite3ParserARG_STORE193451,11571522 -#define YYFALLBACK YYFALLBACK193452,11571592 -#define YYNSTATE YYNSTATE193453,11571638 -#define YYNRULE YYNRULE193454,11571680 -#define YY_MAX_SHIFT YY_MAX_SHIFT193455,11571720 -#define YY_MIN_SHIFTREDUCE YY_MIN_SHIFTREDUCE193456,11571770 -#define YY_MAX_SHIFTREDUCE YY_MAX_SHIFTREDUCE193457,11571832 -#define YY_MIN_REDUCE YY_MIN_REDUCE193458,11571894 -#define YY_MAX_REDUCE YY_MAX_REDUCE193459,11571946 -#define YY_ERROR_ACTION YY_ERROR_ACTION193460,11571998 -#define YY_ACCEPT_ACTION YY_ACCEPT_ACTION193461,11572054 -#define YY_NO_ACTION YY_NO_ACTION193462,11572112 -# define yytestcase(yytestcase193463,11572162 -#define YY_ACTTAB_COUNT YY_ACTTAB_COUNT193464,11572209 -#define YY_SHIFT_USE_DFLT YY_SHIFT_USE_DFLT193467,11572403 -#define YY_SHIFT_COUNT YY_SHIFT_COUNT193468,11572463 -#define YY_SHIFT_MIN YY_SHIFT_MIN193469,11572517 -#define YY_SHIFT_MAX YY_SHIFT_MAX193470,11572567 -#define YY_REDUCE_USE_DFLT YY_REDUCE_USE_DFLT193472,11572685 -#define YY_REDUCE_COUNT YY_REDUCE_COUNT193473,11572747 -#define YY_REDUCE_MIN YY_REDUCE_MIN193474,11572803 -#define YY_REDUCE_MAX YY_REDUCE_MAX193475,11572855 -# define YYMALLOCARGTYPE YYMALLOCARGTYPE193505,11575308 -# define yyTraceShift(yyTraceShift193515,11576104 -#define TOKEN TOKEN193525,11576816 -#define CC_X CC_X193528,11576964 -#define CC_KYWD CC_KYWD193529,11576998 -#define CC_ID CC_ID193530,11577038 -#define CC_DIGIT CC_DIGIT193531,11577074 -#define CC_DOLLAR CC_DOLLAR193532,11577116 -#define CC_VARALPHA CC_VARALPHA193533,11577160 -#define CC_VARNUM CC_VARNUM193534,11577208 -#define CC_SPACE CC_SPACE193535,11577252 -#define CC_QUOTE CC_QUOTE193536,11577294 -#define CC_QUOTE2 CC_QUOTE2193537,11577336 -#define CC_PIPE CC_PIPE193538,11577380 -#define CC_MINUS CC_MINUS193539,11577420 -#define CC_LT CC_LT193540,11577462 -#define CC_GT CC_GT193541,11577498 -#define CC_EQ CC_EQ193542,11577534 -#define CC_BANG CC_BANG193543,11577570 -#define CC_SLASH CC_SLASH193544,11577610 -#define CC_LP CC_LP193545,11577652 -#define CC_RP CC_RP193546,11577688 -#define CC_SEMI CC_SEMI193547,11577724 -#define CC_PLUS CC_PLUS193548,11577764 -#define CC_STAR CC_STAR193549,11577804 -#define CC_PERCENT CC_PERCENT193550,11577844 -#define CC_COMMA CC_COMMA193551,11577890 -#define CC_AND CC_AND193552,11577932 -#define CC_TILDA CC_TILDA193553,11577970 -#define CC_DOT CC_DOT193554,11578012 -#define CC_ILLEGAL CC_ILLEGAL193555,11578050 -# define charMap(charMap193557,11578160 -# define charMap(charMap193558,11578201 -#define SQLITE_N_KEYWORD SQLITE_N_KEYWORD193562,11578500 -#define IdChar(IdChar193563,11578558 -#define IdChar(IdChar193565,11578687 -#define IdChar(IdChar193569,11579044 -#define IdChar(IdChar193571,11579170 -#define tkSEMI tkSEMI193572,11579208 -#define tkWS tkWS193573,11579246 -#define tkOTHER tkOTHER193574,11579280 -#define tkEXPLAIN tkEXPLAIN193575,11579320 -#define tkCREATE tkCREATE193576,11579364 -#define tkTEMP tkTEMP193577,11579406 -#define tkTRIGGER tkTRIGGER193578,11579444 -#define tkEND tkEND193579,11579488 -# define SQLITE_DEBUG_OS_TRACE SQLITE_DEBUG_OS_TRACE193587,11580312 -# define NDELAY NDELAY193618,11583117 -#define assertMutexHeld(assertMutexHeld193684,11589502 -# define checkListProperties(checkListProperties193687,11589724 -#define _FTSINT_H_FTSINT_H193696,11590467 -# define NDEBUG NDEBUG193697,11590510 -# undef SQLITE_ENABLE_FTS3SQLITE_ENABLE_FTS3193698,11590549 -# undef SQLITE_ENABLE_FTS4SQLITE_ENABLE_FTS4193699,11590610 -# define SQLITE_ENABLE_FTS3SQLITE_ENABLE_FTS3193700,11590671 -#define _FTS3_TOKENIZER_H__FTS3_TOKENIZER_H_193701,11590733 -#define _FTS3_HASH_H__FTS3_HASH_H_193726,11592722 -#define FTS3_HASH_STRING FTS3_HASH_STRING193759,11595525 -#define FTS3_HASH_BINARY FTS3_HASH_BINARY193760,11595583 -#define fts3HashInit fts3HashInit193761,11595641 -#define fts3HashInsert fts3HashInsert193762,11595691 -#define fts3HashFind fts3HashFind193763,11595745 -#define fts3HashClear fts3HashClear193764,11595795 -#define fts3HashFindElem fts3HashFindElem193765,11595847 -#define fts3HashFirst(fts3HashFirst193766,11595905 -#define fts3HashNext(fts3HashNext193767,11595957 -#define fts3HashData(fts3HashData193768,11596007 -#define fts3HashKey(fts3HashKey193769,11596057 -#define fts3HashKeysize(fts3HashKeysize193770,11596105 -#define fts3HashCount(fts3HashCount193771,11596161 -# define SQLITE_FTS3_MAX_EXPR_DEPTH SQLITE_FTS3_MAX_EXPR_DEPTH193772,11596213 -#define FTS3_MERGE_COUNT FTS3_MERGE_COUNT193773,11596292 -#define FTS3_MAX_PENDING_DATA FTS3_MAX_PENDING_DATA193774,11596350 -#define SizeofArray(SizeofArray193775,11596418 -# define MIN(MIN193776,11596466 -# define MAX(MAX193777,11596499 -#define FTS3_VARINT_MAX FTS3_VARINT_MAX193778,11596532 -#define FTS3_SEGDIR_MAXLEVEL FTS3_SEGDIR_MAXLEVEL193779,11596588 -#define FTS3_SEGDIR_MAXLEVEL_STR FTS3_SEGDIR_MAXLEVEL_STR193780,11596654 -# define testcase(testcase193781,11596728 -#define POS_COLUMN POS_COLUMN193782,11596771 -#define POS_END POS_END193783,11596817 -# define ALWAYS(ALWAYS193784,11596857 -# define NEVER(NEVER193785,11596896 -# define ALWAYS(ALWAYS193786,11596933 -# define NEVER(NEVER193787,11596972 -# define ALWAYS(ALWAYS193788,11597009 -# define NEVER(NEVER193789,11597048 -#define UNUSED_PARAMETER(UNUSED_PARAMETER193795,11597519 -# define NDEBUG NDEBUG193796,11597577 -# define TESTONLY(TESTONLY193797,11597616 -# define TESTONLY(TESTONLY193798,11597659 -# define FTS_CORRUPT_VTAB FTS_CORRUPT_VTAB193799,11597702 -# define FTS_CORRUPT_VTAB FTS_CORRUPT_VTAB193800,11597761 -#define FTS3_EVAL_FILTER FTS3_EVAL_FILTER193930,11609926 -#define FTS3_EVAL_NEXT FTS3_EVAL_NEXT193931,11609984 -#define FTS3_EVAL_MATCHINFO FTS3_EVAL_MATCHINFO193932,11610038 -#define FTS3_FULLSCAN_SEARCH FTS3_FULLSCAN_SEARCH193933,11610102 -#define FTS3_DOCID_SEARCH FTS3_DOCID_SEARCH193934,11610168 -#define FTS3_FULLTEXT_SEARCH FTS3_FULLTEXT_SEARCH193935,11610228 -#define FTS3_HAVE_LANGID FTS3_HAVE_LANGID193936,11610294 -#define FTS3_HAVE_DOCID_GE FTS3_HAVE_DOCID_GE193937,11610352 -#define FTS3_HAVE_DOCID_LE FTS3_HAVE_DOCID_LE193938,11610414 -#define FTSQUERY_NEAR FTSQUERY_NEAR194009,11616673 -#define FTSQUERY_NOT FTSQUERY_NOT194010,11616725 -#define FTSQUERY_AND FTSQUERY_AND194011,11616775 -#define FTSQUERY_OR FTSQUERY_OR194012,11616825 -#define FTSQUERY_PHRASE FTSQUERY_PHRASE194013,11616873 -# define sqlite3Fts3FreeDeferredTokens(sqlite3Fts3FreeDeferredTokens194014,11616929 -# define sqlite3Fts3DeferToken(sqlite3Fts3DeferToken194015,11617014 -# define sqlite3Fts3CacheDeferredDoclists(sqlite3Fts3CacheDeferredDoclists194016,11617083 -# define sqlite3Fts3FreeDeferredDoclists(sqlite3Fts3FreeDeferredDoclists194017,11617174 -# define sqlite3Fts3DeferredTokenList(sqlite3Fts3DeferredTokenList194018,11617263 -#define FTS3_SEGCURSOR_PENDING FTS3_SEGCURSOR_PENDING194019,11617346 -#define FTS3_SEGCURSOR_ALL FTS3_SEGCURSOR_ALL194020,11617416 -#define FTS3_SEGMENT_REQUIRE_POS FTS3_SEGMENT_REQUIRE_POS194021,11617478 -#define FTS3_SEGMENT_IGNORE_EMPTY FTS3_SEGMENT_IGNORE_EMPTY194022,11617552 -#define FTS3_SEGMENT_COLUMN_FILTER FTS3_SEGMENT_COLUMN_FILTER194023,11617628 -#define FTS3_SEGMENT_PREFIX FTS3_SEGMENT_PREFIX194024,11617706 -#define FTS3_SEGMENT_SCAN FTS3_SEGMENT_SCAN194025,11617770 -#define FTS3_SEGMENT_FIRST FTS3_SEGMENT_FIRST194026,11617830 -#define fts3GetVarint32(fts3GetVarint32194065,11621092 -# define SQLITE_CORE SQLITE_CORE194066,11621148 -#define GETVARINT_STEP(GETVARINT_STEP194070,11621507 -#define GETVARINT_INIT(GETVARINT_INIT194071,11621561 -#define POSITION_LIST_END POSITION_LIST_END194109,11624776 -#define DOCID_CMP(DOCID_CMP194123,11625822 -# define LARGEST_INT64 LARGEST_INT64194138,11626999 -# define SMALLEST_INT64 SMALLEST_INT64194139,11627052 -#define MAX_INCR_PHRASE_TOKENS MAX_INCR_PHRASE_TOKENS194169,11629372 -#define FTS3_AUX_SCHEMA FTS3_AUX_SCHEMA194257,11636301 -#define FTS4AUX_EQ_CONSTRAINT FTS4AUX_EQ_CONSTRAINT194260,11636522 -#define FTS4AUX_GE_CONSTRAINT FTS4AUX_GE_CONSTRAINT194261,11636590 -#define FTS4AUX_LE_CONSTRAINT FTS4AUX_LE_CONSTRAINT194262,11636658 -# define sqlite3_fts3_enable_parentheses sqlite3_fts3_enable_parentheses194274,11637676 -# define sqlite3_fts3_enable_parentheses sqlite3_fts3_enable_parentheses194275,11637766 -#define SQLITE_FTS3_DEFAULT_NEAR_PARAM SQLITE_FTS3_DEFAULT_NEAR_PARAM194276,11637856 -#define isDelim(isDelim194371,11645767 -#define FTS3_TOK_SCHEMA FTS3_TOK_SCHEMA194446,11651819 -#define FTS_MAX_APPENDABLE_HEIGHT FTS_MAX_APPENDABLE_HEIGHT194459,11652894 -#define FTS3_NODE_PADDING FTS3_NODE_PADDING194460,11652970 -# define FTS3_NODE_CHUNKSIZE FTS3_NODE_CHUNKSIZE194463,11653206 -# define FTS3_NODE_CHUNK_THRESHOLD FTS3_NODE_CHUNK_THRESHOLD194464,11653271 -# define FTS3_NODE_CHUNKSIZE FTS3_NODE_CHUNKSIZE194465,11653348 -# define FTS3_NODE_CHUNK_THRESHOLD FTS3_NODE_CHUNK_THRESHOLD194466,11653413 -#define FTS_STAT_DOCTOTAL FTS_STAT_DOCTOTAL194467,11653490 -#define FTS_STAT_INCRMERGEHINT FTS_STAT_INCRMERGEHINT194468,11653550 -#define FTS_STAT_AUTOINCRMERGE FTS_STAT_AUTOINCRMERGE194469,11653620 -#define fts3LogMerge(fts3LogMerge194471,11653781 -#define fts3SegReaderIsPending(fts3SegReaderIsPending194538,11659510 -#define fts3SegReaderIsRootOnly(fts3SegReaderIsRootOnly194539,11659580 -#define SQL_DELETE_CONTENT SQL_DELETE_CONTENT194584,11663969 -#define SQL_IS_EMPTY SQL_IS_EMPTY194585,11664031 -#define SQL_DELETE_ALL_CONTENT SQL_DELETE_ALL_CONTENT194586,11664081 -#define SQL_DELETE_ALL_SEGMENTS SQL_DELETE_ALL_SEGMENTS194587,11664151 -#define SQL_DELETE_ALL_SEGDIR SQL_DELETE_ALL_SEGDIR194588,11664223 -#define SQL_DELETE_ALL_DOCSIZE SQL_DELETE_ALL_DOCSIZE194589,11664291 -#define SQL_DELETE_ALL_STAT SQL_DELETE_ALL_STAT194590,11664361 -#define SQL_SELECT_CONTENT_BY_ROWID SQL_SELECT_CONTENT_BY_ROWID194591,11664425 -#define SQL_NEXT_SEGMENT_INDEX SQL_NEXT_SEGMENT_INDEX194592,11664505 -#define SQL_INSERT_SEGMENTS SQL_INSERT_SEGMENTS194593,11664575 -#define SQL_NEXT_SEGMENTS_ID SQL_NEXT_SEGMENTS_ID194594,11664639 -#define SQL_INSERT_SEGDIR SQL_INSERT_SEGDIR194595,11664705 -#define SQL_SELECT_LEVEL SQL_SELECT_LEVEL194596,11664765 -#define SQL_SELECT_LEVEL_RANGE SQL_SELECT_LEVEL_RANGE194597,11664823 -#define SQL_SELECT_LEVEL_COUNT SQL_SELECT_LEVEL_COUNT194598,11664893 -#define SQL_SELECT_SEGDIR_MAX_LEVEL SQL_SELECT_SEGDIR_MAX_LEVEL194599,11664963 -#define SQL_DELETE_SEGDIR_LEVEL SQL_DELETE_SEGDIR_LEVEL194600,11665043 -#define SQL_DELETE_SEGMENTS_RANGE SQL_DELETE_SEGMENTS_RANGE194601,11665115 -#define SQL_CONTENT_INSERT SQL_CONTENT_INSERT194602,11665191 -#define SQL_DELETE_DOCSIZE SQL_DELETE_DOCSIZE194603,11665253 -#define SQL_REPLACE_DOCSIZE SQL_REPLACE_DOCSIZE194604,11665315 -#define SQL_SELECT_DOCSIZE SQL_SELECT_DOCSIZE194605,11665379 -#define SQL_SELECT_STAT SQL_SELECT_STAT194606,11665441 -#define SQL_REPLACE_STAT SQL_REPLACE_STAT194607,11665497 -#define SQL_SELECT_ALL_PREFIX_LEVEL SQL_SELECT_ALL_PREFIX_LEVEL194608,11665555 -#define SQL_DELETE_ALL_TERMS_SEGDIR SQL_DELETE_ALL_TERMS_SEGDIR194609,11665635 -#define SQL_DELETE_SEGDIR_RANGE SQL_DELETE_SEGDIR_RANGE194610,11665715 -#define SQL_SELECT_ALL_LANGID SQL_SELECT_ALL_LANGID194611,11665787 -#define SQL_FIND_MERGE_LEVEL SQL_FIND_MERGE_LEVEL194612,11665855 -#define SQL_MAX_LEAF_NODE_ESTIMATE SQL_MAX_LEAF_NODE_ESTIMATE194613,11665921 -#define SQL_DELETE_SEGDIR_ENTRY SQL_DELETE_SEGDIR_ENTRY194614,11665999 -#define SQL_SHIFT_SEGDIR_ENTRY SQL_SHIFT_SEGDIR_ENTRY194615,11666071 -#define SQL_SELECT_SEGDIR SQL_SELECT_SEGDIR194616,11666141 -#define SQL_CHOMP_SEGDIR SQL_CHOMP_SEGDIR194617,11666201 -#define SQL_SEGMENT_IS_APPENDABLE SQL_SEGMENT_IS_APPENDABLE194618,11666259 -#define SQL_SELECT_INDEXES SQL_SELECT_INDEXES194619,11666335 -#define SQL_SELECT_MXLEVEL SQL_SELECT_MXLEVEL194620,11666397 -#define SQL_SELECT_LEVEL_RANGE2 SQL_SELECT_LEVEL_RANGE2194621,11666459 -#define SQL_UPDATE_LEVEL_IDX SQL_UPDATE_LEVEL_IDX194622,11666531 -#define SQL_UPDATE_LEVEL SQL_UPDATE_LEVEL194623,11666597 -#define FTS3_MATCHINFO_NPHRASE FTS3_MATCHINFO_NPHRASE194791,11680252 -#define FTS3_MATCHINFO_NCOL FTS3_MATCHINFO_NCOL194792,11680322 -#define FTS3_MATCHINFO_NDOC FTS3_MATCHINFO_NDOC194793,11680386 -#define FTS3_MATCHINFO_AVGLENGTH FTS3_MATCHINFO_AVGLENGTH194794,11680450 -#define FTS3_MATCHINFO_LENGTH FTS3_MATCHINFO_LENGTH194795,11680524 -#define FTS3_MATCHINFO_LCS FTS3_MATCHINFO_LCS194796,11680592 -#define FTS3_MATCHINFO_HITS FTS3_MATCHINFO_HITS194797,11680654 -#define FTS3_MATCHINFO_LHITS FTS3_MATCHINFO_LHITS194798,11680718 -#define FTS3_MATCHINFO_LHITS_BM FTS3_MATCHINFO_LHITS_BM194799,11680784 -#define FTS3_MATCHINFO_DEFAULT FTS3_MATCHINFO_DEFAULT194800,11680856 -#define LCS_ITERATOR_FINISHED LCS_ITERATOR_FINISHED194918,11690902 -#define READ_UTF8(READ_UTF8194949,11693174 -#define WRITE_UTF8(WRITE_UTF8194950,11693218 -# define UNUSED_PARAMETER(UNUSED_PARAMETER194994,11696576 -#define RTREE_MAX_DIMENSIONS RTREE_MAX_DIMENSIONS195004,11697255 -#define HASHSIZE HASHSIZE195005,11697321 -#define RTREE_DEFAULT_ROWEST RTREE_DEFAULT_ROWEST195006,11697363 -#define RTREE_MIN_ROWEST RTREE_MIN_ROWEST195007,11697429 -#define RTREE_COORD_REAL32 RTREE_COORD_REAL32195055,11701190 -#define RTREE_COORD_INT32 RTREE_COORD_INT32195056,11701252 -# define RTREE_ZERO RTREE_ZERO195059,11701512 -# define RTREE_ZERO RTREE_ZERO195062,11701759 -#define RTREE_MINCELLS(RTREE_MINCELLS195074,11702780 -#define RTREE_REINSERT(RTREE_REINSERT195075,11702834 -#define RTREE_MAXCELLS RTREE_MAXCELLS195076,11702888 -#define RTREE_MAX_DEPTH RTREE_MAX_DEPTH195077,11702942 -#define RTREE_CACHE_SZ RTREE_CACHE_SZ195078,11702998 -#define RTREE_OF_CURSOR(RTREE_OF_CURSOR195106,11705719 -# define DCOORD(DCOORD195114,11706262 -# define DCOORD(DCOORD195115,11706301 -#define RTREE_EQ RTREE_EQ195131,11707620 -#define RTREE_LE RTREE_LE195132,11707662 -#define RTREE_LT RTREE_LT195133,11707704 -#define RTREE_GE RTREE_GE195134,11707746 -#define RTREE_GT RTREE_GT195135,11707788 -#define RTREE_MATCH RTREE_MATCH195136,11707830 -#define RTREE_QUERY RTREE_QUERY195137,11707878 -#define NCELL(NCELL195151,11709102 -#define RTREE_GEOMETRY_MAGIC RTREE_GEOMETRY_MAGIC195166,11710240 -# define MAX(MAX195178,11711361 -# define MIN(MIN195179,11711394 -#define RTREE_DECODE_COORD(RTREE_DECODE_COORD195212,11713704 -#define RTREE_DECODE_COORD(RTREE_DECODE_COORD195213,11713766 -#define RTREE_DECODE_COORD(RTREE_DECODE_COORD195214,11713828 -# define RTREE_QUEUE_TRACE(RTREE_QUEUE_TRACE195226,11714816 -#define RNDTOWARDS RNDTOWARDS195261,11717630 -#define RNDAWAY RNDAWAY195262,11717676 - #define N_STATEMENT N_STATEMENT195270,11718226 -# define SQLITE_MAX_LIKE_PATTERN_LENGTH SQLITE_MAX_LIKE_PATTERN_LENGTH195283,11719283 -#define SQLITE_ICU_READ_UTF8(SQLITE_ICU_READ_UTF8195286,11719495 -#define SQLITE_ICU_SKIP_UTF8(SQLITE_ICU_SKIP_UTF8195287,11719561 -#define _SQLITE3RBU_H_SQLITE3RBU_H195330,11722473 -#define SQLITE_RBU_UPDATE_CACHESIZE SQLITE_RBU_UPDATE_CACHESIZE195332,11722588 -# define SWAP(SWAP195333,11722668 -#define RBU_STATE_STAGE RBU_STATE_STAGE195334,11722703 -#define RBU_STATE_TBL RBU_STATE_TBL195335,11722759 -#define RBU_STATE_IDX RBU_STATE_IDX195336,11722811 -#define RBU_STATE_ROW RBU_STATE_ROW195337,11722863 -#define RBU_STATE_PROGRESS RBU_STATE_PROGRESS195338,11722915 -#define RBU_STATE_CKPT RBU_STATE_CKPT195339,11722977 -#define RBU_STATE_COOKIE RBU_STATE_COOKIE195340,11723031 -#define RBU_STATE_OALSZ RBU_STATE_OALSZ195341,11723089 -#define RBU_STATE_PHASEONESTEP RBU_STATE_PHASEONESTEP195342,11723145 -#define RBU_STAGE_OAL RBU_STAGE_OAL195343,11723215 -#define RBU_STAGE_MOVE RBU_STAGE_MOVE195344,11723267 -#define RBU_STAGE_CAPTURE RBU_STAGE_CAPTURE195345,11723321 -#define RBU_STAGE_CKPT RBU_STAGE_CKPT195346,11723381 -#define RBU_STAGE_DONE RBU_STAGE_DONE195347,11723435 -#define RBU_CREATE_STATE RBU_CREATE_STATE195348,11723489 -#define WAL_LOCK_WRITE WAL_LOCK_WRITE195359,11724095 -#define WAL_LOCK_CKPT WAL_LOCK_CKPT195360,11724149 -#define WAL_LOCK_READ0 WAL_LOCK_READ0195361,11724201 -#define SQLITE_FCNTL_RBUCNT SQLITE_FCNTL_RBUCNT195362,11724255 -#define RBU_PK_NOTABLE RBU_PK_NOTABLE195438,11730448 -#define RBU_PK_NONE RBU_PK_NONE195439,11730502 -#define RBU_PK_IPK RBU_PK_IPK195440,11730550 -#define RBU_PK_EXTERNAL RBU_PK_EXTERNAL195441,11730596 -#define RBU_PK_WITHOUT_ROWID RBU_PK_WITHOUT_ROWID195442,11730652 -#define RBU_PK_VTAB RBU_PK_VTAB195443,11730718 -#define RBU_INSERT RBU_INSERT195444,11730766 -#define RBU_DELETE RBU_DELETE195445,11730812 -#define RBU_REPLACE RBU_REPLACE195446,11730858 -#define RBU_IDX_DELETE RBU_IDX_DELETE195447,11730906 -#define RBU_IDX_INSERT RBU_IDX_INSERT195448,11730960 -#define RBU_UPDATE RBU_UPDATE195449,11731014 -#define rbuIsVacuum(rbuIsVacuum195546,11739218 -# define assertColumnName(assertColumnName195599,11743685 -#define VTAB_SCHEMA VTAB_SCHEMA195659,11748761 -# define get2byte(get2byte195738,11755169 -# define SESSIONS_STRM_CHUNK_SIZE SESSIONS_STRM_CHUNK_SIZE195760,11756820 -# define SESSIONS_STRM_CHUNK_SIZE SESSIONS_STRM_CHUNK_SIZE195761,11756897 -#define SESSION_UINT32(SESSION_UINT32195877,11767424 -#define HASH_APPEND(HASH_APPEND195881,11767707 -#define sessionChangesetNew(sessionChangesetNew195965,11774622 -#define sessionChangesetOld(sessionChangesetOld195966,11774686 -# define UNUSED_PARAM(UNUSED_PARAM196027,11780038 -# define LARGEST_INT64 LARGEST_INT64196028,11780089 -# define SMALLEST_INT64 SMALLEST_INT64196029,11780142 -# define safe_isdigit(safe_isdigit196030,11780197 -# define safe_isalnum(safe_isalnum196031,11780249 -#define safe_isspace(safe_isspace196033,11780364 -#define JSON_NULL JSON_NULL196055,11782075 -#define JSON_TRUE JSON_TRUE196056,11782119 -#define JSON_FALSE JSON_FALSE196057,11782163 -#define JSON_INT JSON_INT196058,11782209 -#define JSON_REAL JSON_REAL196059,11782251 -#define JSON_STRING JSON_STRING196060,11782295 -#define JSON_ARRAY JSON_ARRAY196061,11782343 -#define JSON_OBJECT JSON_OBJECT196062,11782389 -#define JSON_SUBTYPE JSON_SUBTYPE196063,11782437 -#define JNODE_RAW JNODE_RAW196065,11782552 -#define JNODE_ESCAPE JNODE_ESCAPE196066,11782596 -#define JNODE_REMOVE JNODE_REMOVE196067,11782646 -#define JNODE_REPLACE JNODE_REPLACE196068,11782696 -#define JNODE_APPEND JNODE_APPEND196069,11782748 -#define JNODE_LABEL JNODE_LABEL196070,11782798 -# define JSON_NOINLINE JSON_NOINLINE196120,11786664 -# define JSON_NOINLINE JSON_NOINLINE196121,11786718 -# define JSON_NOINLINEJSON_NOINLINE196122,11786772 -#define JEACH_KEY JEACH_KEY196173,11790689 -#define JEACH_VALUE JEACH_VALUE196174,11790733 -#define JEACH_TYPE JEACH_TYPE196175,11790781 -#define JEACH_ATOM JEACH_ATOM196176,11790827 -#define JEACH_ID JEACH_ID196177,11790873 -#define JEACH_PARENT JEACH_PARENT196178,11790915 -#define JEACH_FULLKEY JEACH_FULLKEY196179,11790965 -#define JEACH_PATH JEACH_PATH196180,11791017 -#define JEACH_JSON JEACH_JSON196181,11791063 -#define JEACH_ROOT JEACH_ROOT196182,11791109 -# define NDEBUG NDEBUG196199,11792405 -# undef NDEBUGNDEBUG196200,11792444 -#define _FTS5_H_FTS5_H196201,11792481 -#define FTS5_TOKENIZE_QUERY FTS5_TOKENIZE_QUERY196261,11797644 -#define FTS5_TOKENIZE_PREFIX FTS5_TOKENIZE_PREFIX196262,11797708 -#define FTS5_TOKENIZE_DOCUMENT FTS5_TOKENIZE_DOCUMENT196263,11797774 -#define FTS5_TOKENIZE_AUX FTS5_TOKENIZE_AUX196264,11797844 -#define FTS5_TOKEN_COLOCATED FTS5_TOKEN_COLOCATED196265,11797904 -#define _FTS5INT_H_FTS5INT_H196276,11798632 -#define ArraySize(ArraySize196283,11798947 -#define testcase(testcase196284,11798991 -#define ALWAYS(ALWAYS196285,11799033 -#define NEVER(NEVER196286,11799071 -#define MIN(MIN196287,11799107 -#define MAX(MAX196288,11799139 -# define LARGEST_INT64 LARGEST_INT64196289,11799171 -# define SMALLEST_INT64 SMALLEST_INT64196290,11799224 -#define FTS5_MAX_TOKEN_SIZE FTS5_MAX_TOKEN_SIZE196291,11799279 -#define FTS5_MAX_PREFIX_INDEXES FTS5_MAX_PREFIX_INDEXES196292,11799343 -#define FTS5_DEFAULT_NEARDIST FTS5_DEFAULT_NEARDIST196293,11799415 -#define FTS5_DEFAULT_RANK FTS5_DEFAULT_RANK196294,11799483 -#define FTS5_RANK_NAME FTS5_RANK_NAME196295,11799543 -#define FTS5_ROWID_NAME FTS5_ROWID_NAME196296,11799597 -# define FTS5_CORRUPT FTS5_CORRUPT196297,11799653 -# define FTS5_CORRUPT FTS5_CORRUPT196298,11799704 -# define assert_nc(assert_nc196299,11799755 -# define assert_nc(assert_nc196300,11799800 -# define UNUSED_PARAM(UNUSED_PARAM196301,11799845 -# define UNUSED_PARAM2(UNUSED_PARAM2196302,11799896 -#define FTS5_CURRENT_VERSION FTS5_CURRENT_VERSION196364,11805071 -#define FTS5_CONTENT_NORMAL FTS5_CONTENT_NORMAL196365,11805137 -#define FTS5_CONTENT_NONE FTS5_CONTENT_NONE196366,11805201 -#define FTS5_CONTENT_EXTERNAL FTS5_CONTENT_EXTERNAL196367,11805261 -#define FTS5_DETAIL_FULL FTS5_DETAIL_FULL196368,11805329 -#define FTS5_DETAIL_NONE FTS5_DETAIL_NONE196369,11805387 -#define FTS5_DETAIL_COLUMNS FTS5_DETAIL_COLUMNS196370,11805445 -#define fts5BufferZero(fts5BufferZero196379,11805831 -#define fts5BufferAppendVarint(fts5BufferAppendVarint196380,11805885 -#define fts5BufferFree(fts5BufferFree196381,11805955 -#define fts5BufferAppendBlob(fts5BufferAppendBlob196382,11806009 -#define fts5BufferSet(fts5BufferSet196383,11806075 -#define fts5BufferGrow(fts5BufferGrow196384,11806127 -#define FTS5_POS2COLUMN(FTS5_POS2COLUMN196385,11806181 -#define FTS5_POS2OFFSET(FTS5_POS2OFFSET196386,11806237 -#define sqlite3Fts5IterEof(sqlite3Fts5IterEof196417,11808401 -#define FTS5INDEX_QUERY_PREFIX FTS5INDEX_QUERY_PREFIX196418,11808463 -#define FTS5INDEX_QUERY_DESC FTS5INDEX_QUERY_DESC196419,11808533 -#define FTS5INDEX_QUERY_TEST_NOIDX FTS5INDEX_QUERY_TEST_NOIDX196420,11808599 -#define FTS5INDEX_QUERY_SCAN FTS5INDEX_QUERY_SCAN196421,11808677 -#define FTS5INDEX_QUERY_SKIPEMPTY FTS5INDEX_QUERY_SKIPEMPTY196422,11808743 -#define FTS5INDEX_QUERY_NOOUTPUT FTS5INDEX_QUERY_NOOUTPUT196423,11808819 -#define fts5GetVarint32(fts5GetVarint32196424,11808893 -#define fts5GetVarint fts5GetVarint196425,11808949 -#define fts5FastGetVarint32(fts5FastGetVarint32196426,11809001 -#define FTS5_STMT_SCAN_ASC FTS5_STMT_SCAN_ASC196428,11809123 -#define FTS5_STMT_SCAN_DESC FTS5_STMT_SCAN_DESC196429,11809185 -#define FTS5_STMT_LOOKUP FTS5_STMT_LOOKUP196430,11809249 -#define FTS5_OR FTS5_OR196444,11810285 -#define FTS5_AND FTS5_AND196445,11810325 -#define FTS5_NOT FTS5_NOT196446,11810367 -#define FTS5_TERM FTS5_TERM196447,11810409 -#define FTS5_COLON FTS5_COLON196448,11810453 -#define FTS5_LP FTS5_LP196449,11810499 -#define FTS5_RP FTS5_RP196450,11810539 -#define FTS5_LCP FTS5_LCP196451,11810579 -#define FTS5_RCP FTS5_RCP196452,11810621 -#define FTS5_STRING FTS5_STRING196453,11810663 -#define FTS5_COMMA FTS5_COMMA196454,11810711 -#define FTS5_PLUS FTS5_PLUS196455,11810757 -#define FTS5_STAR FTS5_STAR196456,11810801 -#define fts5YYNOERRORRECOVERY fts5YYNOERRORRECOVERY196457,11810845 -#define fts5yytestcase(fts5yytestcase196458,11810913 -#define fts5YYPARSEFREENOTNULL fts5YYPARSEFREENOTNULL196459,11810967 -#define fts5YYMALLOCARGTYPE fts5YYMALLOCARGTYPE196460,11811037 -# define INTERFACE INTERFACE196461,11811101 -#define fts5YYCODETYPE fts5YYCODETYPE196462,11811146 -#define fts5YYNOCODE fts5YYNOCODE196463,11811200 -#define fts5YYACTIONTYPE fts5YYACTIONTYPE196464,11811250 -#define sqlite3Fts5ParserFTS5TOKENTYPE sqlite3Fts5ParserFTS5TOKENTYPE196465,11811308 -#define fts5YYSTACKDEPTH fts5YYSTACKDEPTH196481,11812221 -#define sqlite3Fts5ParserARG_SDECL sqlite3Fts5ParserARG_SDECL196482,11812279 -#define sqlite3Fts5ParserARG_PDECL sqlite3Fts5ParserARG_PDECL196483,11812357 -#define sqlite3Fts5ParserARG_FETCH sqlite3Fts5ParserARG_FETCH196484,11812435 -#define sqlite3Fts5ParserARG_STORE sqlite3Fts5ParserARG_STORE196485,11812513 -#define fts5YYNSTATE fts5YYNSTATE196486,11812591 -#define fts5YYNRULE fts5YYNRULE196487,11812641 -#define fts5YY_MAX_SHIFT fts5YY_MAX_SHIFT196488,11812689 -#define fts5YY_MIN_SHIFTREDUCE fts5YY_MIN_SHIFTREDUCE196489,11812747 -#define fts5YY_MAX_SHIFTREDUCE fts5YY_MAX_SHIFTREDUCE196490,11812817 -#define fts5YY_MIN_REDUCE fts5YY_MIN_REDUCE196491,11812887 -#define fts5YY_MAX_REDUCE fts5YY_MAX_REDUCE196492,11812947 -#define fts5YY_ERROR_ACTION fts5YY_ERROR_ACTION196493,11813007 -#define fts5YY_ACCEPT_ACTION fts5YY_ACCEPT_ACTION196494,11813071 -#define fts5YY_NO_ACTION fts5YY_NO_ACTION196495,11813137 -# define fts5yytestcase(fts5yytestcase196496,11813195 -#define fts5YY_ACTTAB_COUNT fts5YY_ACTTAB_COUNT196497,11813250 -#define fts5YY_SHIFT_USE_DFLT fts5YY_SHIFT_USE_DFLT196500,11813476 -#define fts5YY_SHIFT_COUNT fts5YY_SHIFT_COUNT196501,11813544 -#define fts5YY_SHIFT_MIN fts5YY_SHIFT_MIN196502,11813606 -#define fts5YY_SHIFT_MAX fts5YY_SHIFT_MAX196503,11813664 -#define fts5YY_REDUCE_USE_DFLT fts5YY_REDUCE_USE_DFLT196505,11813804 -#define fts5YY_REDUCE_COUNT fts5YY_REDUCE_COUNT196506,11813874 -#define fts5YY_REDUCE_MIN fts5YY_REDUCE_MIN196507,11813938 -#define fts5YY_REDUCE_MAX fts5YY_REDUCE_MAX196508,11813998 -# define fts5YYMALLOCARGTYPE fts5YYMALLOCARGTYPE196538,11816733 -# define fts5yyTraceShift(fts5yyTraceShift196548,11817613 -#define FTS5TOKEN FTS5TOKEN196558,11818381 -#define FTS5_DEFAULT_PAGE_SIZE FTS5_DEFAULT_PAGE_SIZE196654,11826397 -#define FTS5_DEFAULT_AUTOMERGE FTS5_DEFAULT_AUTOMERGE196655,11826467 -#define FTS5_DEFAULT_USERMERGE FTS5_DEFAULT_USERMERGE196656,11826537 -#define FTS5_DEFAULT_CRISISMERGE FTS5_DEFAULT_CRISISMERGE196657,11826607 -#define FTS5_DEFAULT_HASHSIZE FTS5_DEFAULT_HASHSIZE196658,11826681 -#define FTS5_MAX_PAGE_SIZE FTS5_MAX_PAGE_SIZE196659,11826749 -#define FTS5_EOF FTS5_EOF196688,11828900 -#define FTS5_LARGEST_INT64 FTS5_LARGEST_INT64196689,11828942 -#define Fts5NodeIsString(Fts5NodeIsString196721,11831476 -#define fts5ExprNodeNext(fts5ExprNodeNext196722,11831534 -#define FTS5_LOOKAHEAD_EOF FTS5_LOOKAHEAD_EOF196786,11836981 -#define FTS5_HASHENTRYSIZE FTS5_HASHENTRYSIZE196923,11848283 -#define FTS5_OPT_WORK_UNIT FTS5_OPT_WORK_UNIT196939,11849612 -#define FTS5_WORK_UNIT FTS5_WORK_UNIT196940,11849674 -#define FTS5_MIN_DLIDX_SIZE FTS5_MIN_DLIDX_SIZE196941,11849728 -#define FTS5_MAIN_PREFIX FTS5_MAIN_PREFIX196942,11849792 -#define FTS5_AVERAGES_ROWID FTS5_AVERAGES_ROWID196943,11849850 -#define FTS5_STRUCTURE_ROWID FTS5_STRUCTURE_ROWID196944,11849914 -#define FTS5_DATA_ID_B FTS5_DATA_ID_B196945,11849980 -#define FTS5_DATA_DLI_B FTS5_DATA_DLI_B196946,11850034 -#define FTS5_DATA_HEIGHT_B FTS5_DATA_HEIGHT_B196947,11850090 -#define FTS5_DATA_PAGE_B FTS5_DATA_PAGE_B196948,11850152 -#define fts5_dri(fts5_dri196949,11850210 -#define FTS5_SEGMENT_ROWID(FTS5_SEGMENT_ROWID196950,11850252 -#define FTS5_DLIDX_ROWID(FTS5_DLIDX_ROWID196951,11850314 -#define FTS5_MAX_SEGMENT FTS5_MAX_SEGMENT196952,11850372 -#define FTS5_DATA_ZERO_PADDING FTS5_DATA_ZERO_PADDING196954,11850528 -#define FTS5_DATA_PADDING FTS5_DATA_PADDING196955,11850598 -#define ASSERT_SZLEAF_OK(ASSERT_SZLEAF_OK197138,11867186 -#define FTS5_SEGITER_ONETERM FTS5_SEGITER_ONETERM197139,11867244 -#define FTS5_SEGITER_REVERSE FTS5_SEGITER_REVERSE197140,11867310 -#define fts5LeafIsTermless(fts5LeafIsTermless197141,11867376 -#define fts5LeafTermOff(fts5LeafTermOff197142,11867438 -#define fts5LeafFirstRowidOff(fts5LeafFirstRowidOff197143,11867494 -#define fts5BufferSafeAppendBlob(fts5BufferSafeAppendBlob197212,11873443 -#define fts5BufferSafeAppendVarint(fts5BufferSafeAppendVarint197213,11873517 -# define fts5PrintStructure(fts5PrintStructure197215,11873699 -#define SWAPVAL(SWAPVAL197245,11876375 -#define fts5IndexSkipVarint(fts5IndexSkipVarint197246,11876415 -# define fts5AssertMultiIterSetup(fts5AssertMultiIterSetup197256,11877233 -#define fts5MergeAppendDocid(fts5MergeAppendDocid197346,11884330 -# define fts5TestDlidxReverse(fts5TestDlidxReverse197376,11886972 -# define fts5TestTerm(fts5TestTerm197377,11887039 -#define FTS5_BI_MATCH FTS5_BI_MATCH197527,11900769 -#define FTS5_BI_RANK FTS5_BI_RANK197528,11900821 -#define FTS5_BI_ROWID_EQ FTS5_BI_ROWID_EQ197529,11900871 -#define FTS5_BI_ROWID_LE FTS5_BI_ROWID_LE197530,11900929 -#define FTS5_BI_ROWID_GE FTS5_BI_ROWID_GE197531,11900987 -#define FTS5_BI_ORDER_RANK FTS5_BI_ORDER_RANK197532,11901045 -#define FTS5_BI_ORDER_ROWID FTS5_BI_ORDER_ROWID197533,11901107 -#define FTS5_BI_ORDER_DESC FTS5_BI_ORDER_DESC197534,11901171 -#define FTS5CSR_EOF FTS5CSR_EOF197535,11901233 -#define FTS5CSR_REQUIRE_CONTENT FTS5CSR_REQUIRE_CONTENT197536,11901281 -#define FTS5CSR_REQUIRE_DOCSIZE FTS5CSR_REQUIRE_DOCSIZE197537,11901353 -#define FTS5CSR_REQUIRE_INST FTS5CSR_REQUIRE_INST197538,11901425 -#define FTS5CSR_FREE_ZRANK FTS5CSR_FREE_ZRANK197539,11901491 -#define FTS5CSR_REQUIRE_RESEEK FTS5CSR_REQUIRE_RESEEK197540,11901553 -#define FTS5CSR_REQUIRE_POSLIST FTS5CSR_REQUIRE_POSLIST197541,11901623 -#define BitFlagAllTest(BitFlagAllTest197542,11901695 -#define BitFlagTest(BitFlagTest197543,11901749 -#define CsrFlagSet(CsrFlagSet197544,11901797 -#define CsrFlagClear(CsrFlagClear197545,11901843 -#define CsrFlagTest(CsrFlagTest197546,11901893 -#define FTS5_BEGIN FTS5_BEGIN197556,11902697 -#define FTS5_SYNC FTS5_SYNC197557,11902743 -#define FTS5_COMMIT FTS5_COMMIT197558,11902787 -#define FTS5_ROLLBACK FTS5_ROLLBACK197559,11902835 -#define FTS5_SAVEPOINT FTS5_SAVEPOINT197560,11902887 -#define FTS5_RELEASE FTS5_RELEASE197561,11902941 -#define FTS5_ROLLBACKTO FTS5_ROLLBACKTO197562,11902991 -# define fts5CheckTransactionState(fts5CheckTransactionState197564,11903165 -#define FTS5_PLAN_MATCH FTS5_PLAN_MATCH197572,11903744 -#define FTS5_PLAN_SOURCE FTS5_PLAN_SOURCE197573,11903800 -#define FTS5_PLAN_SPECIAL FTS5_PLAN_SPECIAL197574,11903858 -#define FTS5_PLAN_SORTED_MATCH FTS5_PLAN_SORTED_MATCH197575,11903918 -#define FTS5_PLAN_SCAN FTS5_PLAN_SCAN197576,11903988 -#define FTS5_PLAN_ROWID FTS5_PLAN_ROWID197577,11904042 -#define FTS5_STMT_INSERT_CONTENT FTS5_STMT_INSERT_CONTENT197671,11911397 -#define FTS5_STMT_REPLACE_CONTENT FTS5_STMT_REPLACE_CONTENT197672,11911471 -#define FTS5_STMT_DELETE_CONTENT FTS5_STMT_DELETE_CONTENT197673,11911547 -#define FTS5_STMT_REPLACE_DOCSIZE FTS5_STMT_REPLACE_DOCSIZE197674,11911621 -#define FTS5_STMT_DELETE_DOCSIZE FTS5_STMT_DELETE_DOCSIZE197675,11911697 -#define FTS5_STMT_LOOKUP_DOCSIZE FTS5_STMT_LOOKUP_DOCSIZE197676,11911771 -#define FTS5_STMT_REPLACE_CONFIG FTS5_STMT_REPLACE_CONFIG197677,11911845 -#define FTS5_STMT_SCAN FTS5_STMT_SCAN197678,11911919 -#define READ_UTF8(READ_UTF8197746,11917091 -#define WRITE_UTF8(WRITE_UTF8197747,11917135 -#define FTS5_PORTER_MAX_TOKEN FTS5_PORTER_MAX_TOKEN197768,11918879 -#define SLOT_2_0 SLOT_2_0197821,11922750 -#define SLOT_4_2_0 SLOT_4_2_0197822,11922792 -# define FTS5_NOINLINE FTS5_NOINLINE197824,11922938 -# define FTS5_NOINLINEFTS5_NOINLINE197825,11922991 -#define FTS5_VOCAB_COL FTS5_VOCAB_COL197871,11926768 -#define FTS5_VOCAB_ROW FTS5_VOCAB_ROW197872,11926822 -#define FTS5_VOCAB_COL_SCHEMA FTS5_VOCAB_COL_SCHEMA197873,11926876 -#define FTS5_VOCAB_ROW_SCHEMA FTS5_VOCAB_ROW_SCHEMA197874,11926944 -#define FTS5_VOCAB_TERM_EQ FTS5_VOCAB_TERM_EQ197875,11927012 -#define FTS5_VOCAB_TERM_GE FTS5_VOCAB_TERM_GE197876,11927074 -#define FTS5_VOCAB_TERM_LE FTS5_VOCAB_TERM_LE197877,11927136 -#define _SQLITE3_H__SQLITE3_H_197896,11928598 -# define SQLITE_EXTERN SQLITE_EXTERN197897,11928638 -# define SQLITE_APISQLITE_API197898,11928684 -# define SQLITE_CDECLSQLITE_CDECL197899,11928723 -# define SQLITE_STDCALLSQLITE_STDCALL197900,11928766 -#define SQLITE_DEPRECATEDSQLITE_DEPRECATED197901,11928813 -#define SQLITE_EXPERIMENTALSQLITE_EXPERIMENTAL197902,11928865 -# undef SQLITE_VERSIONSQLITE_VERSION197903,11928921 -# undef SQLITE_VERSION_NUMBERSQLITE_VERSION_NUMBER197904,11928967 -#define SQLITE_VERSION SQLITE_VERSION197905,11929027 -#define SQLITE_VERSION_NUMBER SQLITE_VERSION_NUMBER197906,11929075 -#define SQLITE_SOURCE_ID SQLITE_SOURCE_ID197907,11929137 -# define double double197918,11929836 -#define SQLITE_OK SQLITE_OK197920,11929956 -#define SQLITE_ERROR SQLITE_ERROR197921,11929995 -#define SQLITE_INTERNAL SQLITE_INTERNAL197922,11930040 -#define SQLITE_PERM SQLITE_PERM197923,11930091 -#define SQLITE_ABORT SQLITE_ABORT197924,11930134 -#define SQLITE_BUSY SQLITE_BUSY197925,11930179 -#define SQLITE_LOCKED SQLITE_LOCKED197926,11930222 -#define SQLITE_NOMEM SQLITE_NOMEM197927,11930269 -#define SQLITE_READONLY SQLITE_READONLY197928,11930314 -#define SQLITE_INTERRUPT SQLITE_INTERRUPT197929,11930365 -#define SQLITE_IOERR SQLITE_IOERR197930,11930418 -#define SQLITE_CORRUPT SQLITE_CORRUPT197931,11930463 -#define SQLITE_NOTFOUND SQLITE_NOTFOUND197932,11930512 -#define SQLITE_FULL SQLITE_FULL197933,11930563 -#define SQLITE_CANTOPEN SQLITE_CANTOPEN197934,11930606 -#define SQLITE_PROTOCOL SQLITE_PROTOCOL197935,11930657 -#define SQLITE_EMPTY SQLITE_EMPTY197936,11930708 -#define SQLITE_SCHEMA SQLITE_SCHEMA197937,11930753 -#define SQLITE_TOOBIG SQLITE_TOOBIG197938,11930800 -#define SQLITE_CONSTRAINT SQLITE_CONSTRAINT197939,11930847 -#define SQLITE_MISMATCH SQLITE_MISMATCH197940,11930902 -#define SQLITE_MISUSE SQLITE_MISUSE197941,11930953 -#define SQLITE_NOLFS SQLITE_NOLFS197942,11931000 -#define SQLITE_AUTH SQLITE_AUTH197943,11931045 -#define SQLITE_FORMAT SQLITE_FORMAT197944,11931088 -#define SQLITE_RANGE SQLITE_RANGE197945,11931135 -#define SQLITE_NOTADB SQLITE_NOTADB197946,11931180 -#define SQLITE_NOTICE SQLITE_NOTICE197947,11931227 -#define SQLITE_WARNING SQLITE_WARNING197948,11931274 -#define SQLITE_ROW SQLITE_ROW197949,11931323 -#define SQLITE_DONE SQLITE_DONE197950,11931364 -#define SQLITE_IOERR_READ SQLITE_IOERR_READ197951,11931407 -#define SQLITE_IOERR_SHORT_READ SQLITE_IOERR_SHORT_READ197952,11931462 -#define SQLITE_IOERR_WRITE SQLITE_IOERR_WRITE197953,11931529 -#define SQLITE_IOERR_FSYNC SQLITE_IOERR_FSYNC197954,11931586 -#define SQLITE_IOERR_DIR_FSYNC SQLITE_IOERR_DIR_FSYNC197955,11931643 -#define SQLITE_IOERR_TRUNCATE SQLITE_IOERR_TRUNCATE197956,11931708 -#define SQLITE_IOERR_FSTAT SQLITE_IOERR_FSTAT197957,11931771 -#define SQLITE_IOERR_UNLOCK SQLITE_IOERR_UNLOCK197958,11931828 -#define SQLITE_IOERR_RDLOCK SQLITE_IOERR_RDLOCK197959,11931887 -#define SQLITE_IOERR_DELETE SQLITE_IOERR_DELETE197960,11931946 -#define SQLITE_IOERR_BLOCKED SQLITE_IOERR_BLOCKED197961,11932005 -#define SQLITE_IOERR_NOMEM SQLITE_IOERR_NOMEM197962,11932066 -#define SQLITE_IOERR_ACCESS SQLITE_IOERR_ACCESS197963,11932123 -#define SQLITE_IOERR_CHECKRESERVEDLOCK SQLITE_IOERR_CHECKRESERVEDLOCK197964,11932182 -#define SQLITE_IOERR_LOCK SQLITE_IOERR_LOCK197965,11932263 -#define SQLITE_IOERR_CLOSE SQLITE_IOERR_CLOSE197966,11932318 -#define SQLITE_IOERR_DIR_CLOSE SQLITE_IOERR_DIR_CLOSE197967,11932375 -#define SQLITE_IOERR_SHMOPEN SQLITE_IOERR_SHMOPEN197968,11932440 -#define SQLITE_IOERR_SHMSIZE SQLITE_IOERR_SHMSIZE197969,11932501 -#define SQLITE_IOERR_SHMLOCK SQLITE_IOERR_SHMLOCK197970,11932562 -#define SQLITE_IOERR_SHMMAP SQLITE_IOERR_SHMMAP197971,11932623 -#define SQLITE_IOERR_SEEK SQLITE_IOERR_SEEK197972,11932682 -#define SQLITE_IOERR_DELETE_NOENT SQLITE_IOERR_DELETE_NOENT197973,11932737 -#define SQLITE_IOERR_MMAP SQLITE_IOERR_MMAP197974,11932808 -#define SQLITE_IOERR_GETTEMPPATH SQLITE_IOERR_GETTEMPPATH197975,11932863 -#define SQLITE_IOERR_CONVPATH SQLITE_IOERR_CONVPATH197976,11932932 -#define SQLITE_IOERR_VNODE SQLITE_IOERR_VNODE197977,11932995 -#define SQLITE_IOERR_AUTH SQLITE_IOERR_AUTH197978,11933052 -#define SQLITE_LOCKED_SHAREDCACHE SQLITE_LOCKED_SHAREDCACHE197979,11933107 -#define SQLITE_BUSY_RECOVERY SQLITE_BUSY_RECOVERY197980,11933178 -#define SQLITE_BUSY_SNAPSHOT SQLITE_BUSY_SNAPSHOT197981,11933239 -#define SQLITE_CANTOPEN_NOTEMPDIR SQLITE_CANTOPEN_NOTEMPDIR197982,11933300 -#define SQLITE_CANTOPEN_ISDIR SQLITE_CANTOPEN_ISDIR197983,11933371 -#define SQLITE_CANTOPEN_FULLPATH SQLITE_CANTOPEN_FULLPATH197984,11933434 -#define SQLITE_CANTOPEN_CONVPATH SQLITE_CANTOPEN_CONVPATH197985,11933503 -#define SQLITE_CORRUPT_VTAB SQLITE_CORRUPT_VTAB197986,11933572 -#define SQLITE_READONLY_RECOVERY SQLITE_READONLY_RECOVERY197987,11933631 -#define SQLITE_READONLY_CANTLOCK SQLITE_READONLY_CANTLOCK197988,11933700 -#define SQLITE_READONLY_ROLLBACK SQLITE_READONLY_ROLLBACK197989,11933769 -#define SQLITE_READONLY_DBMOVED SQLITE_READONLY_DBMOVED197990,11933838 -#define SQLITE_ABORT_ROLLBACK SQLITE_ABORT_ROLLBACK197991,11933905 -#define SQLITE_CONSTRAINT_CHECK SQLITE_CONSTRAINT_CHECK197992,11933968 -#define SQLITE_CONSTRAINT_COMMITHOOK SQLITE_CONSTRAINT_COMMITHOOK197993,11934035 -#define SQLITE_CONSTRAINT_FOREIGNKEY SQLITE_CONSTRAINT_FOREIGNKEY197994,11934112 -#define SQLITE_CONSTRAINT_FUNCTION SQLITE_CONSTRAINT_FUNCTION197995,11934189 -#define SQLITE_CONSTRAINT_NOTNULL SQLITE_CONSTRAINT_NOTNULL197996,11934262 -#define SQLITE_CONSTRAINT_PRIMARYKEY SQLITE_CONSTRAINT_PRIMARYKEY197997,11934333 -#define SQLITE_CONSTRAINT_TRIGGER SQLITE_CONSTRAINT_TRIGGER197998,11934410 -#define SQLITE_CONSTRAINT_UNIQUE SQLITE_CONSTRAINT_UNIQUE197999,11934481 -#define SQLITE_CONSTRAINT_VTAB SQLITE_CONSTRAINT_VTAB198000,11934550 -#define SQLITE_CONSTRAINT_ROWID SQLITE_CONSTRAINT_ROWID198001,11934615 -#define SQLITE_NOTICE_RECOVER_WAL SQLITE_NOTICE_RECOVER_WAL198002,11934682 -#define SQLITE_NOTICE_RECOVER_ROLLBACK SQLITE_NOTICE_RECOVER_ROLLBACK198003,11934753 -#define SQLITE_WARNING_AUTOINDEX SQLITE_WARNING_AUTOINDEX198004,11934834 -#define SQLITE_AUTH_USER SQLITE_AUTH_USER198005,11934903 -#define SQLITE_OPEN_READONLY SQLITE_OPEN_READONLY198006,11934956 -#define SQLITE_OPEN_READWRITE SQLITE_OPEN_READWRITE198007,11935017 -#define SQLITE_OPEN_CREATE SQLITE_OPEN_CREATE198008,11935080 -#define SQLITE_OPEN_DELETEONCLOSE SQLITE_OPEN_DELETEONCLOSE198009,11935137 -#define SQLITE_OPEN_EXCLUSIVE SQLITE_OPEN_EXCLUSIVE198010,11935208 -#define SQLITE_OPEN_AUTOPROXY SQLITE_OPEN_AUTOPROXY198011,11935271 -#define SQLITE_OPEN_URI SQLITE_OPEN_URI198012,11935334 -#define SQLITE_OPEN_MEMORY SQLITE_OPEN_MEMORY198013,11935385 -#define SQLITE_OPEN_MAIN_DB SQLITE_OPEN_MAIN_DB198014,11935442 -#define SQLITE_OPEN_TEMP_DB SQLITE_OPEN_TEMP_DB198015,11935501 -#define SQLITE_OPEN_TRANSIENT_DB SQLITE_OPEN_TRANSIENT_DB198016,11935560 -#define SQLITE_OPEN_MAIN_JOURNAL SQLITE_OPEN_MAIN_JOURNAL198017,11935629 -#define SQLITE_OPEN_TEMP_JOURNAL SQLITE_OPEN_TEMP_JOURNAL198018,11935698 -#define SQLITE_OPEN_SUBJOURNAL SQLITE_OPEN_SUBJOURNAL198019,11935767 -#define SQLITE_OPEN_MASTER_JOURNAL SQLITE_OPEN_MASTER_JOURNAL198020,11935832 -#define SQLITE_OPEN_NOMUTEX SQLITE_OPEN_NOMUTEX198021,11935905 -#define SQLITE_OPEN_FULLMUTEX SQLITE_OPEN_FULLMUTEX198022,11935964 -#define SQLITE_OPEN_SHAREDCACHE SQLITE_OPEN_SHAREDCACHE198023,11936027 -#define SQLITE_OPEN_PRIVATECACHE SQLITE_OPEN_PRIVATECACHE198024,11936094 -#define SQLITE_OPEN_WAL SQLITE_OPEN_WAL198025,11936163 -#define SQLITE_IOCAP_ATOMIC SQLITE_IOCAP_ATOMIC198026,11936214 -#define SQLITE_IOCAP_ATOMIC512 SQLITE_IOCAP_ATOMIC512198027,11936273 -#define SQLITE_IOCAP_ATOMIC1K SQLITE_IOCAP_ATOMIC1K198028,11936338 -#define SQLITE_IOCAP_ATOMIC2K SQLITE_IOCAP_ATOMIC2K198029,11936401 -#define SQLITE_IOCAP_ATOMIC4K SQLITE_IOCAP_ATOMIC4K198030,11936464 -#define SQLITE_IOCAP_ATOMIC8K SQLITE_IOCAP_ATOMIC8K198031,11936527 -#define SQLITE_IOCAP_ATOMIC16K SQLITE_IOCAP_ATOMIC16K198032,11936590 -#define SQLITE_IOCAP_ATOMIC32K SQLITE_IOCAP_ATOMIC32K198033,11936655 -#define SQLITE_IOCAP_ATOMIC64K SQLITE_IOCAP_ATOMIC64K198034,11936720 -#define SQLITE_IOCAP_SAFE_APPEND SQLITE_IOCAP_SAFE_APPEND198035,11936785 -#define SQLITE_IOCAP_SEQUENTIAL SQLITE_IOCAP_SEQUENTIAL198036,11936854 -#define SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN198037,11936921 -#define SQLITE_IOCAP_POWERSAFE_OVERWRITE SQLITE_IOCAP_POWERSAFE_OVERWRITE198038,11937010 -#define SQLITE_IOCAP_IMMUTABLE SQLITE_IOCAP_IMMUTABLE198039,11937095 -#define SQLITE_LOCK_NONE SQLITE_LOCK_NONE198040,11937160 -#define SQLITE_LOCK_SHARED SQLITE_LOCK_SHARED198041,11937213 -#define SQLITE_LOCK_RESERVED SQLITE_LOCK_RESERVED198042,11937270 -#define SQLITE_LOCK_PENDING SQLITE_LOCK_PENDING198043,11937331 -#define SQLITE_LOCK_EXCLUSIVE SQLITE_LOCK_EXCLUSIVE198044,11937390 -#define SQLITE_SYNC_NORMAL SQLITE_SYNC_NORMAL198045,11937453 -#define SQLITE_SYNC_FULL SQLITE_SYNC_FULL198046,11937510 -#define SQLITE_SYNC_DATAONLY SQLITE_SYNC_DATAONLY198047,11937563 -#define SQLITE_FCNTL_LOCKSTATE SQLITE_FCNTL_LOCKSTATE198092,11941196 -#define SQLITE_FCNTL_GET_LOCKPROXYFILE SQLITE_FCNTL_GET_LOCKPROXYFILE198093,11941261 -#define SQLITE_FCNTL_SET_LOCKPROXYFILE SQLITE_FCNTL_SET_LOCKPROXYFILE198094,11941342 -#define SQLITE_FCNTL_LAST_ERRNO SQLITE_FCNTL_LAST_ERRNO198095,11941423 -#define SQLITE_FCNTL_SIZE_HINT SQLITE_FCNTL_SIZE_HINT198096,11941490 -#define SQLITE_FCNTL_CHUNK_SIZE SQLITE_FCNTL_CHUNK_SIZE198097,11941555 -#define SQLITE_FCNTL_FILE_POINTER SQLITE_FCNTL_FILE_POINTER198098,11941622 -#define SQLITE_FCNTL_SYNC_OMITTED SQLITE_FCNTL_SYNC_OMITTED198099,11941693 -#define SQLITE_FCNTL_WIN32_AV_RETRY SQLITE_FCNTL_WIN32_AV_RETRY198100,11941764 -#define SQLITE_FCNTL_PERSIST_WAL SQLITE_FCNTL_PERSIST_WAL198101,11941840 -#define SQLITE_FCNTL_OVERWRITE SQLITE_FCNTL_OVERWRITE198102,11941910 -#define SQLITE_FCNTL_VFSNAME SQLITE_FCNTL_VFSNAME198103,11941976 -#define SQLITE_FCNTL_POWERSAFE_OVERWRITE SQLITE_FCNTL_POWERSAFE_OVERWRITE198104,11942038 -#define SQLITE_FCNTL_PRAGMA SQLITE_FCNTL_PRAGMA198105,11942124 -#define SQLITE_FCNTL_BUSYHANDLER SQLITE_FCNTL_BUSYHANDLER198106,11942184 -#define SQLITE_FCNTL_TEMPFILENAME SQLITE_FCNTL_TEMPFILENAME198107,11942254 -#define SQLITE_FCNTL_MMAP_SIZE SQLITE_FCNTL_MMAP_SIZE198108,11942326 -#define SQLITE_FCNTL_TRACE SQLITE_FCNTL_TRACE198109,11942392 -#define SQLITE_FCNTL_HAS_MOVED SQLITE_FCNTL_HAS_MOVED198110,11942450 -#define SQLITE_FCNTL_SYNC SQLITE_FCNTL_SYNC198111,11942516 -#define SQLITE_FCNTL_COMMIT_PHASETWO SQLITE_FCNTL_COMMIT_PHASETWO198112,11942572 -#define SQLITE_FCNTL_WIN32_SET_HANDLE SQLITE_FCNTL_WIN32_SET_HANDLE198113,11942650 -#define SQLITE_FCNTL_WAL_BLOCK SQLITE_FCNTL_WAL_BLOCK198114,11942730 -#define SQLITE_FCNTL_ZIPVFS SQLITE_FCNTL_ZIPVFS198115,11942796 -#define SQLITE_FCNTL_RBU SQLITE_FCNTL_RBU198116,11942856 -#define SQLITE_FCNTL_VFS_POINTER SQLITE_FCNTL_VFS_POINTER198117,11942910 -#define SQLITE_FCNTL_JOURNAL_POINTER SQLITE_FCNTL_JOURNAL_POINTER198118,11942980 -#define SQLITE_GET_LOCKPROXYFILE SQLITE_GET_LOCKPROXYFILE198119,11943058 -#define SQLITE_SET_LOCKPROXYFILE SQLITE_SET_LOCKPROXYFILE198120,11943128 -#define SQLITE_LAST_ERRNO SQLITE_LAST_ERRNO198121,11943198 -#define SQLITE_ACCESS_EXISTS SQLITE_ACCESS_EXISTS198168,11947305 -#define SQLITE_ACCESS_READWRITE SQLITE_ACCESS_READWRITE198169,11947367 -#define SQLITE_ACCESS_READ SQLITE_ACCESS_READ198170,11947435 -#define SQLITE_SHM_UNLOCK SQLITE_SHM_UNLOCK198171,11947493 -#define SQLITE_SHM_LOCK SQLITE_SHM_LOCK198172,11947549 -#define SQLITE_SHM_SHARED SQLITE_SHM_SHARED198173,11947601 -#define SQLITE_SHM_EXCLUSIVE SQLITE_SHM_EXCLUSIVE198174,11947657 -#define SQLITE_SHM_NLOCK SQLITE_SHM_NLOCK198175,11947719 -#define SQLITE_CONFIG_SINGLETHREAD SQLITE_CONFIG_SINGLETHREAD198194,11949510 -#define SQLITE_CONFIG_MULTITHREAD SQLITE_CONFIG_MULTITHREAD198195,11949584 -#define SQLITE_CONFIG_SERIALIZED SQLITE_CONFIG_SERIALIZED198196,11949656 -#define SQLITE_CONFIG_MALLOC SQLITE_CONFIG_MALLOC198197,11949726 -#define SQLITE_CONFIG_GETMALLOC SQLITE_CONFIG_GETMALLOC198198,11949788 -#define SQLITE_CONFIG_SCRATCH SQLITE_CONFIG_SCRATCH198199,11949856 -#define SQLITE_CONFIG_PAGECACHE SQLITE_CONFIG_PAGECACHE198200,11949920 -#define SQLITE_CONFIG_HEAP SQLITE_CONFIG_HEAP198201,11949988 -#define SQLITE_CONFIG_MEMSTATUS SQLITE_CONFIG_MEMSTATUS198202,11950046 -#define SQLITE_CONFIG_MUTEX SQLITE_CONFIG_MUTEX198203,11950114 -#define SQLITE_CONFIG_GETMUTEX SQLITE_CONFIG_GETMUTEX198204,11950174 -#define SQLITE_CONFIG_LOOKASIDE SQLITE_CONFIG_LOOKASIDE198205,11950240 -#define SQLITE_CONFIG_PCACHE SQLITE_CONFIG_PCACHE198206,11950308 -#define SQLITE_CONFIG_GETPCACHE SQLITE_CONFIG_GETPCACHE198207,11950370 -#define SQLITE_CONFIG_LOG SQLITE_CONFIG_LOG198208,11950438 -#define SQLITE_CONFIG_URI SQLITE_CONFIG_URI198209,11950494 -#define SQLITE_CONFIG_PCACHE2 SQLITE_CONFIG_PCACHE2198210,11950550 -#define SQLITE_CONFIG_GETPCACHE2 SQLITE_CONFIG_GETPCACHE2198211,11950614 -#define SQLITE_CONFIG_COVERING_INDEX_SCAN SQLITE_CONFIG_COVERING_INDEX_SCAN198212,11950684 -#define SQLITE_CONFIG_SQLLOG SQLITE_CONFIG_SQLLOG198213,11950772 -#define SQLITE_CONFIG_MMAP_SIZE SQLITE_CONFIG_MMAP_SIZE198214,11950834 -#define SQLITE_CONFIG_WIN32_HEAPSIZE SQLITE_CONFIG_WIN32_HEAPSIZE198215,11950902 -#define SQLITE_CONFIG_PCACHE_HDRSZ SQLITE_CONFIG_PCACHE_HDRSZ198216,11950980 -#define SQLITE_CONFIG_PMASZ SQLITE_CONFIG_PMASZ198217,11951054 -#define SQLITE_CONFIG_STMTJRNL_SPILL SQLITE_CONFIG_STMTJRNL_SPILL198218,11951114 -#define SQLITE_DBCONFIG_LOOKASIDE SQLITE_DBCONFIG_LOOKASIDE198219,11951192 -#define SQLITE_DBCONFIG_ENABLE_FKEY SQLITE_DBCONFIG_ENABLE_FKEY198220,11951264 -#define SQLITE_DBCONFIG_ENABLE_TRIGGER SQLITE_DBCONFIG_ENABLE_TRIGGER198221,11951340 -#define SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER198222,11951422 -#define SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION198223,11951518 -#define SQLITE_DENY SQLITE_DENY198224,11951614 -#define SQLITE_IGNORE SQLITE_IGNORE198225,11951659 -#define SQLITE_CREATE_INDEX SQLITE_CREATE_INDEX198226,11951708 -#define SQLITE_CREATE_TABLE SQLITE_CREATE_TABLE198227,11951769 -#define SQLITE_CREATE_TEMP_INDEX SQLITE_CREATE_TEMP_INDEX198228,11951830 -#define SQLITE_CREATE_TEMP_TABLE SQLITE_CREATE_TEMP_TABLE198229,11951901 -#define SQLITE_CREATE_TEMP_TRIGGER SQLITE_CREATE_TEMP_TRIGGER198230,11951972 -#define SQLITE_CREATE_TEMP_VIEW SQLITE_CREATE_TEMP_VIEW198231,11952047 -#define SQLITE_CREATE_TRIGGER SQLITE_CREATE_TRIGGER198232,11952116 -#define SQLITE_CREATE_VIEW SQLITE_CREATE_VIEW198233,11952181 -#define SQLITE_DELETE SQLITE_DELETE198234,11952240 -#define SQLITE_DROP_INDEX SQLITE_DROP_INDEX198235,11952289 -#define SQLITE_DROP_TABLE SQLITE_DROP_TABLE198236,11952346 -#define SQLITE_DROP_TEMP_INDEX SQLITE_DROP_TEMP_INDEX198237,11952403 -#define SQLITE_DROP_TEMP_TABLE SQLITE_DROP_TEMP_TABLE198238,11952470 -#define SQLITE_DROP_TEMP_TRIGGER SQLITE_DROP_TEMP_TRIGGER198239,11952537 -#define SQLITE_DROP_TEMP_VIEW SQLITE_DROP_TEMP_VIEW198240,11952608 -#define SQLITE_DROP_TRIGGER SQLITE_DROP_TRIGGER198241,11952673 -#define SQLITE_DROP_VIEW SQLITE_DROP_VIEW198242,11952734 -#define SQLITE_INSERT SQLITE_INSERT198243,11952789 -#define SQLITE_PRAGMA SQLITE_PRAGMA198244,11952838 -#define SQLITE_READ SQLITE_READ198245,11952887 -#define SQLITE_SELECT SQLITE_SELECT198246,11952932 -#define SQLITE_TRANSACTION SQLITE_TRANSACTION198247,11952981 -#define SQLITE_UPDATE SQLITE_UPDATE198248,11953040 -#define SQLITE_ATTACH SQLITE_ATTACH198249,11953089 -#define SQLITE_DETACH SQLITE_DETACH198250,11953138 -#define SQLITE_ALTER_TABLE SQLITE_ALTER_TABLE198251,11953187 -#define SQLITE_REINDEX SQLITE_REINDEX198252,11953246 -#define SQLITE_ANALYZE SQLITE_ANALYZE198253,11953297 -#define SQLITE_CREATE_VTABLE SQLITE_CREATE_VTABLE198254,11953348 -#define SQLITE_DROP_VTABLE SQLITE_DROP_VTABLE198255,11953411 -#define SQLITE_FUNCTION SQLITE_FUNCTION198256,11953470 -#define SQLITE_SAVEPOINT SQLITE_SAVEPOINT198257,11953523 -#define SQLITE_COPY SQLITE_COPY198258,11953578 -#define SQLITE_RECURSIVE SQLITE_RECURSIVE198259,11953623 -#define SQLITE_LIMIT_LENGTH SQLITE_LIMIT_LENGTH198261,11953745 -#define SQLITE_LIMIT_SQL_LENGTH SQLITE_LIMIT_SQL_LENGTH198262,11953806 -#define SQLITE_LIMIT_COLUMN SQLITE_LIMIT_COLUMN198263,11953875 -#define SQLITE_LIMIT_EXPR_DEPTH SQLITE_LIMIT_EXPR_DEPTH198264,11953936 -#define SQLITE_LIMIT_COMPOUND_SELECT SQLITE_LIMIT_COMPOUND_SELECT198265,11954005 -#define SQLITE_LIMIT_VDBE_OP SQLITE_LIMIT_VDBE_OP198266,11954084 -#define SQLITE_LIMIT_FUNCTION_ARG SQLITE_LIMIT_FUNCTION_ARG198267,11954147 -#define SQLITE_LIMIT_ATTACHED SQLITE_LIMIT_ATTACHED198268,11954220 -#define SQLITE_LIMIT_LIKE_PATTERN_LENGTH SQLITE_LIMIT_LIKE_PATTERN_LENGTH198269,11954285 -#define SQLITE_LIMIT_VARIABLE_NUMBER SQLITE_LIMIT_VARIABLE_NUMBER198270,11954372 -#define SQLITE_LIMIT_TRIGGER_DEPTH SQLITE_LIMIT_TRIGGER_DEPTH198271,11954451 -#define SQLITE_LIMIT_WORKER_THREADS SQLITE_LIMIT_WORKER_THREADS198272,11954526 -#define SQLITE_INTEGER SQLITE_INTEGER198275,11954739 -#define SQLITE_FLOAT SQLITE_FLOAT198276,11954790 -#define SQLITE_BLOB SQLITE_BLOB198277,11954837 -#define SQLITE_NULL SQLITE_NULL198278,11954882 -# undef SQLITE_TEXTSQLITE_TEXT198279,11954927 -# define SQLITE_TEXT SQLITE_TEXT198280,11954971 -#define SQLITE3_TEXT SQLITE3_TEXT198281,11955017 -#define SQLITE_UTF8 SQLITE_UTF8198282,11955064 -#define SQLITE_UTF16LE SQLITE_UTF16LE198283,11955109 -#define SQLITE_UTF16BE SQLITE_UTF16BE198284,11955160 -#define SQLITE_UTF16 SQLITE_UTF16198285,11955211 -#define SQLITE_ANY SQLITE_ANY198286,11955258 -#define SQLITE_UTF16_ALIGNED SQLITE_UTF16_ALIGNED198287,11955301 -#define SQLITE_DETERMINISTIC SQLITE_DETERMINISTIC198288,11955364 -#define SQLITE_STATIC SQLITE_STATIC198290,11955511 -#define SQLITE_TRANSIENT SQLITE_TRANSIENT198291,11955560 -#define SQLITE_INDEX_SCAN_UNIQUE SQLITE_INDEX_SCAN_UNIQUE198394,11964698 -#define SQLITE_INDEX_CONSTRAINT_EQ SQLITE_INDEX_CONSTRAINT_EQ198395,11964769 -#define SQLITE_INDEX_CONSTRAINT_GT SQLITE_INDEX_CONSTRAINT_GT198396,11964844 -#define SQLITE_INDEX_CONSTRAINT_LE SQLITE_INDEX_CONSTRAINT_LE198397,11964919 -#define SQLITE_INDEX_CONSTRAINT_LT SQLITE_INDEX_CONSTRAINT_LT198398,11964994 -#define SQLITE_INDEX_CONSTRAINT_GE SQLITE_INDEX_CONSTRAINT_GE198399,11965069 -#define SQLITE_INDEX_CONSTRAINT_MATCH SQLITE_INDEX_CONSTRAINT_MATCH198400,11965144 -#define SQLITE_INDEX_CONSTRAINT_LIKE SQLITE_INDEX_CONSTRAINT_LIKE198401,11965225 -#define SQLITE_INDEX_CONSTRAINT_GLOB SQLITE_INDEX_CONSTRAINT_GLOB198402,11965304 -#define SQLITE_INDEX_CONSTRAINT_REGEXP SQLITE_INDEX_CONSTRAINT_REGEXP198403,11965383 -#define SQLITE_MUTEX_FAST SQLITE_MUTEX_FAST198435,11967848 -#define SQLITE_MUTEX_RECURSIVE SQLITE_MUTEX_RECURSIVE198436,11967905 -#define SQLITE_MUTEX_STATIC_MASTER SQLITE_MUTEX_STATIC_MASTER198437,11967972 -#define SQLITE_MUTEX_STATIC_MEM SQLITE_MUTEX_STATIC_MEM198438,11968047 -#define SQLITE_MUTEX_STATIC_MEM2 SQLITE_MUTEX_STATIC_MEM2198439,11968116 -#define SQLITE_MUTEX_STATIC_OPEN SQLITE_MUTEX_STATIC_OPEN198440,11968187 -#define SQLITE_MUTEX_STATIC_PRNG SQLITE_MUTEX_STATIC_PRNG198441,11968258 -#define SQLITE_MUTEX_STATIC_LRU SQLITE_MUTEX_STATIC_LRU198442,11968329 -#define SQLITE_MUTEX_STATIC_LRU2 SQLITE_MUTEX_STATIC_LRU2198443,11968398 -#define SQLITE_MUTEX_STATIC_PMEM SQLITE_MUTEX_STATIC_PMEM198444,11968469 -#define SQLITE_MUTEX_STATIC_APP1 SQLITE_MUTEX_STATIC_APP1198445,11968540 -#define SQLITE_MUTEX_STATIC_APP2 SQLITE_MUTEX_STATIC_APP2198446,11968611 -#define SQLITE_MUTEX_STATIC_APP3 SQLITE_MUTEX_STATIC_APP3198447,11968682 -#define SQLITE_MUTEX_STATIC_VFS1 SQLITE_MUTEX_STATIC_VFS1198448,11968753 -#define SQLITE_MUTEX_STATIC_VFS2 SQLITE_MUTEX_STATIC_VFS2198449,11968824 -#define SQLITE_MUTEX_STATIC_VFS3 SQLITE_MUTEX_STATIC_VFS3198450,11968895 -#define SQLITE_TESTCTRL_FIRST SQLITE_TESTCTRL_FIRST198451,11968966 -#define SQLITE_TESTCTRL_PRNG_SAVE SQLITE_TESTCTRL_PRNG_SAVE198452,11969031 -#define SQLITE_TESTCTRL_PRNG_RESTORE SQLITE_TESTCTRL_PRNG_RESTORE198453,11969104 -#define SQLITE_TESTCTRL_PRNG_RESET SQLITE_TESTCTRL_PRNG_RESET198454,11969183 -#define SQLITE_TESTCTRL_BITVEC_TEST SQLITE_TESTCTRL_BITVEC_TEST198455,11969258 -#define SQLITE_TESTCTRL_FAULT_INSTALL SQLITE_TESTCTRL_FAULT_INSTALL198456,11969335 -#define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS198457,11969416 -#define SQLITE_TESTCTRL_PENDING_BYTE SQLITE_TESTCTRL_PENDING_BYTE198458,11969509 -#define SQLITE_TESTCTRL_ASSERT SQLITE_TESTCTRL_ASSERT198459,11969588 -#define SQLITE_TESTCTRL_ALWAYS SQLITE_TESTCTRL_ALWAYS198460,11969655 -#define SQLITE_TESTCTRL_RESERVE SQLITE_TESTCTRL_RESERVE198461,11969722 -#define SQLITE_TESTCTRL_OPTIMIZATIONS SQLITE_TESTCTRL_OPTIMIZATIONS198462,11969791 -#define SQLITE_TESTCTRL_ISKEYWORD SQLITE_TESTCTRL_ISKEYWORD198463,11969872 -#define SQLITE_TESTCTRL_SCRATCHMALLOC SQLITE_TESTCTRL_SCRATCHMALLOC198464,11969945 -#define SQLITE_TESTCTRL_LOCALTIME_FAULT SQLITE_TESTCTRL_LOCALTIME_FAULT198465,11970026 -#define SQLITE_TESTCTRL_EXPLAIN_STMT SQLITE_TESTCTRL_EXPLAIN_STMT198466,11970111 -#define SQLITE_TESTCTRL_NEVER_CORRUPT SQLITE_TESTCTRL_NEVER_CORRUPT198467,11970190 -#define SQLITE_TESTCTRL_VDBE_COVERAGE SQLITE_TESTCTRL_VDBE_COVERAGE198468,11970271 -#define SQLITE_TESTCTRL_BYTEORDER SQLITE_TESTCTRL_BYTEORDER198469,11970352 -#define SQLITE_TESTCTRL_ISINIT SQLITE_TESTCTRL_ISINIT198470,11970425 -#define SQLITE_TESTCTRL_SORTER_MMAP SQLITE_TESTCTRL_SORTER_MMAP198471,11970492 -#define SQLITE_TESTCTRL_IMPOSTER SQLITE_TESTCTRL_IMPOSTER198472,11970569 -#define SQLITE_TESTCTRL_LAST SQLITE_TESTCTRL_LAST198473,11970640 -#define SQLITE_STATUS_MEMORY_USED SQLITE_STATUS_MEMORY_USED198474,11970703 -#define SQLITE_STATUS_PAGECACHE_USED SQLITE_STATUS_PAGECACHE_USED198475,11970776 -#define SQLITE_STATUS_PAGECACHE_OVERFLOW SQLITE_STATUS_PAGECACHE_OVERFLOW198476,11970855 -#define SQLITE_STATUS_SCRATCH_USED SQLITE_STATUS_SCRATCH_USED198477,11970942 -#define SQLITE_STATUS_SCRATCH_OVERFLOW SQLITE_STATUS_SCRATCH_OVERFLOW198478,11971017 -#define SQLITE_STATUS_MALLOC_SIZE SQLITE_STATUS_MALLOC_SIZE198479,11971100 -#define SQLITE_STATUS_PARSER_STACK SQLITE_STATUS_PARSER_STACK198480,11971173 -#define SQLITE_STATUS_PAGECACHE_SIZE SQLITE_STATUS_PAGECACHE_SIZE198481,11971248 -#define SQLITE_STATUS_SCRATCH_SIZE SQLITE_STATUS_SCRATCH_SIZE198482,11971327 -#define SQLITE_STATUS_MALLOC_COUNT SQLITE_STATUS_MALLOC_COUNT198483,11971402 -#define SQLITE_DBSTATUS_LOOKASIDE_USED SQLITE_DBSTATUS_LOOKASIDE_USED198484,11971477 -#define SQLITE_DBSTATUS_CACHE_USED SQLITE_DBSTATUS_CACHE_USED198485,11971560 -#define SQLITE_DBSTATUS_SCHEMA_USED SQLITE_DBSTATUS_SCHEMA_USED198486,11971635 -#define SQLITE_DBSTATUS_STMT_USED SQLITE_DBSTATUS_STMT_USED198487,11971712 -#define SQLITE_DBSTATUS_LOOKASIDE_HIT SQLITE_DBSTATUS_LOOKASIDE_HIT198488,11971785 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE198489,11971866 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL198490,11971959 -#define SQLITE_DBSTATUS_CACHE_HIT SQLITE_DBSTATUS_CACHE_HIT198491,11972052 -#define SQLITE_DBSTATUS_CACHE_MISS SQLITE_DBSTATUS_CACHE_MISS198492,11972125 -#define SQLITE_DBSTATUS_CACHE_WRITE SQLITE_DBSTATUS_CACHE_WRITE198493,11972200 -#define SQLITE_DBSTATUS_DEFERRED_FKS SQLITE_DBSTATUS_DEFERRED_FKS198494,11972277 -#define SQLITE_DBSTATUS_MAX SQLITE_DBSTATUS_MAX198495,11972356 -#define SQLITE_STMTSTATUS_FULLSCAN_STEP SQLITE_STMTSTATUS_FULLSCAN_STEP198496,11972417 -#define SQLITE_STMTSTATUS_SORT SQLITE_STMTSTATUS_SORT198497,11972502 -#define SQLITE_STMTSTATUS_AUTOINDEX SQLITE_STMTSTATUS_AUTOINDEX198498,11972569 -#define SQLITE_STMTSTATUS_VM_STEP SQLITE_STMTSTATUS_VM_STEP198499,11972646 -#define SQLITE_CHECKPOINT_PASSIVE SQLITE_CHECKPOINT_PASSIVE198560,11977438 -#define SQLITE_CHECKPOINT_FULL SQLITE_CHECKPOINT_FULL198561,11977511 -#define SQLITE_CHECKPOINT_RESTART SQLITE_CHECKPOINT_RESTART198562,11977578 -#define SQLITE_CHECKPOINT_TRUNCATE SQLITE_CHECKPOINT_TRUNCATE198563,11977651 -#define SQLITE_VTAB_CONSTRAINT_SUPPORT SQLITE_VTAB_CONSTRAINT_SUPPORT198564,11977726 -#define SQLITE_ROLLBACK SQLITE_ROLLBACK198565,11977809 -#define SQLITE_FAIL SQLITE_FAIL198566,11977862 -#define SQLITE_REPLACE SQLITE_REPLACE198567,11977907 -#define SQLITE_SCANSTAT_NLOOP SQLITE_SCANSTAT_NLOOP198568,11977958 -#define SQLITE_SCANSTAT_NVISIT SQLITE_SCANSTAT_NVISIT198569,11978023 -#define SQLITE_SCANSTAT_EST SQLITE_SCANSTAT_EST198570,11978090 -#define SQLITE_SCANSTAT_NAME SQLITE_SCANSTAT_NAME198571,11978151 -#define SQLITE_SCANSTAT_EXPLAIN SQLITE_SCANSTAT_EXPLAIN198572,11978214 -#define SQLITE_SCANSTAT_SELECTID SQLITE_SCANSTAT_SELECTID198573,11978283 -# undef doubledouble198575,11978433 -#define _SQLITE3RTREE_H__SQLITE3RTREE_H_198576,11978467 -#define NOT_WITHIN NOT_WITHIN198625,11983400 -#define PARTLY_WITHIN PARTLY_WITHIN198626,11983443 -#define FULLY_WITHIN FULLY_WITHIN198627,11983492 -#define __SQLITESESSION_H_ __SQLITESESSION_H_198628,11983539 -#define SQLITE_CHANGESET_DATA SQLITE_CHANGESET_DATA198632,11983859 -#define SQLITE_CHANGESET_NOTFOUND SQLITE_CHANGESET_NOTFOUND198633,11983924 -#define SQLITE_CHANGESET_CONFLICT SQLITE_CHANGESET_CONFLICT198634,11983997 -#define SQLITE_CHANGESET_CONSTRAINT SQLITE_CHANGESET_CONSTRAINT198635,11984070 -#define SQLITE_CHANGESET_FOREIGN_KEY SQLITE_CHANGESET_FOREIGN_KEY198636,11984147 -#define SQLITE_CHANGESET_OMIT SQLITE_CHANGESET_OMIT198637,11984226 -#define SQLITE_CHANGESET_REPLACE SQLITE_CHANGESET_REPLACE198638,11984291 -#define SQLITE_CHANGESET_ABORT SQLITE_CHANGESET_ABORT198639,11984362 -#define _FTS5_H_FTS5_H198640,11984429 -#define FTS5_TOKENIZE_QUERY FTS5_TOKENIZE_QUERY198700,11989421 -#define FTS5_TOKENIZE_PREFIX FTS5_TOKENIZE_PREFIX198701,11989483 -#define FTS5_TOKENIZE_DOCUMENT FTS5_TOKENIZE_DOCUMENT198702,11989547 -#define FTS5_TOKENIZE_AUX FTS5_TOKENIZE_AUX198703,11989615 -#define FTS5_TOKEN_COLOCATED FTS5_TOKEN_COLOCATED198704,11989673 -#define _SQLITE3EXT_H__SQLITE3EXT_H_198717,11990428 -#define sqlite3_aggregate_context sqlite3_aggregate_context199148,12025974 -#define sqlite3_aggregate_count sqlite3_aggregate_count199149,12026045 -#define sqlite3_bind_blob sqlite3_bind_blob199150,12026112 -#define sqlite3_bind_double sqlite3_bind_double199151,12026167 -#define sqlite3_bind_int sqlite3_bind_int199152,12026226 -#define sqlite3_bind_int64 sqlite3_bind_int64199153,12026279 -#define sqlite3_bind_null sqlite3_bind_null199154,12026336 -#define sqlite3_bind_parameter_count sqlite3_bind_parameter_count199155,12026391 -#define sqlite3_bind_parameter_index sqlite3_bind_parameter_index199156,12026468 -#define sqlite3_bind_parameter_name sqlite3_bind_parameter_name199157,12026545 -#define sqlite3_bind_text sqlite3_bind_text199158,12026620 -#define sqlite3_bind_text16 sqlite3_bind_text16199159,12026675 -#define sqlite3_bind_value sqlite3_bind_value199160,12026734 -#define sqlite3_busy_handler sqlite3_busy_handler199161,12026791 -#define sqlite3_busy_timeout sqlite3_busy_timeout199162,12026852 -#define sqlite3_changes sqlite3_changes199163,12026913 -#define sqlite3_close sqlite3_close199164,12026964 -#define sqlite3_collation_needed sqlite3_collation_needed199165,12027011 -#define sqlite3_collation_needed16 sqlite3_collation_needed16199166,12027080 -#define sqlite3_column_blob sqlite3_column_blob199167,12027153 -#define sqlite3_column_bytes sqlite3_column_bytes199168,12027212 -#define sqlite3_column_bytes16 sqlite3_column_bytes16199169,12027273 -#define sqlite3_column_count sqlite3_column_count199170,12027338 -#define sqlite3_column_database_name sqlite3_column_database_name199171,12027399 -#define sqlite3_column_database_name16 sqlite3_column_database_name16199172,12027476 -#define sqlite3_column_decltype sqlite3_column_decltype199173,12027557 -#define sqlite3_column_decltype16 sqlite3_column_decltype16199174,12027624 -#define sqlite3_column_double sqlite3_column_double199175,12027695 -#define sqlite3_column_int sqlite3_column_int199176,12027758 -#define sqlite3_column_int64 sqlite3_column_int64199177,12027815 -#define sqlite3_column_name sqlite3_column_name199178,12027876 -#define sqlite3_column_name16 sqlite3_column_name16199179,12027935 -#define sqlite3_column_origin_name sqlite3_column_origin_name199180,12027998 -#define sqlite3_column_origin_name16 sqlite3_column_origin_name16199181,12028071 -#define sqlite3_column_table_name sqlite3_column_table_name199182,12028148 -#define sqlite3_column_table_name16 sqlite3_column_table_name16199183,12028219 -#define sqlite3_column_text sqlite3_column_text199184,12028294 -#define sqlite3_column_text16 sqlite3_column_text16199185,12028353 -#define sqlite3_column_type sqlite3_column_type199186,12028416 -#define sqlite3_column_value sqlite3_column_value199187,12028475 -#define sqlite3_commit_hook sqlite3_commit_hook199188,12028536 -#define sqlite3_complete sqlite3_complete199189,12028595 -#define sqlite3_complete16 sqlite3_complete16199190,12028648 -#define sqlite3_create_collation sqlite3_create_collation199191,12028705 -#define sqlite3_create_collation16 sqlite3_create_collation16199192,12028774 -#define sqlite3_create_function sqlite3_create_function199193,12028847 -#define sqlite3_create_function16 sqlite3_create_function16199194,12028914 -#define sqlite3_create_module sqlite3_create_module199195,12028985 -#define sqlite3_create_module_v2 sqlite3_create_module_v2199196,12029048 -#define sqlite3_data_count sqlite3_data_count199197,12029117 -#define sqlite3_db_handle sqlite3_db_handle199198,12029174 -#define sqlite3_declare_vtab sqlite3_declare_vtab199199,12029229 -#define sqlite3_enable_shared_cache sqlite3_enable_shared_cache199200,12029290 -#define sqlite3_errcode sqlite3_errcode199201,12029365 -#define sqlite3_errmsg sqlite3_errmsg199202,12029416 -#define sqlite3_errmsg16 sqlite3_errmsg16199203,12029465 -#define sqlite3_exec sqlite3_exec199204,12029518 -#define sqlite3_expired sqlite3_expired199205,12029563 -#define sqlite3_finalize sqlite3_finalize199206,12029614 -#define sqlite3_free sqlite3_free199207,12029667 -#define sqlite3_free_table sqlite3_free_table199208,12029712 -#define sqlite3_get_autocommit sqlite3_get_autocommit199209,12029769 -#define sqlite3_get_auxdata sqlite3_get_auxdata199210,12029834 -#define sqlite3_get_table sqlite3_get_table199211,12029893 -#define sqlite3_global_recover sqlite3_global_recover199212,12029948 -#define sqlite3_interrupt sqlite3_interrupt199213,12030013 -#define sqlite3_last_insert_rowid sqlite3_last_insert_rowid199214,12030068 -#define sqlite3_libversion sqlite3_libversion199215,12030139 -#define sqlite3_libversion_number sqlite3_libversion_number199216,12030196 -#define sqlite3_malloc sqlite3_malloc199217,12030267 -#define sqlite3_mprintf sqlite3_mprintf199218,12030316 -#define sqlite3_open sqlite3_open199219,12030367 -#define sqlite3_open16 sqlite3_open16199220,12030412 -#define sqlite3_prepare sqlite3_prepare199221,12030461 -#define sqlite3_prepare16 sqlite3_prepare16199222,12030512 -#define sqlite3_prepare_v2 sqlite3_prepare_v2199223,12030567 -#define sqlite3_prepare16_v2 sqlite3_prepare16_v2199224,12030624 -#define sqlite3_profile sqlite3_profile199225,12030685 -#define sqlite3_progress_handler sqlite3_progress_handler199226,12030736 -#define sqlite3_realloc sqlite3_realloc199227,12030805 -#define sqlite3_reset sqlite3_reset199228,12030856 -#define sqlite3_result_blob sqlite3_result_blob199229,12030903 -#define sqlite3_result_double sqlite3_result_double199230,12030962 -#define sqlite3_result_error sqlite3_result_error199231,12031025 -#define sqlite3_result_error16 sqlite3_result_error16199232,12031086 -#define sqlite3_result_int sqlite3_result_int199233,12031151 -#define sqlite3_result_int64 sqlite3_result_int64199234,12031208 -#define sqlite3_result_null sqlite3_result_null199235,12031269 -#define sqlite3_result_text sqlite3_result_text199236,12031328 -#define sqlite3_result_text16 sqlite3_result_text16199237,12031387 -#define sqlite3_result_text16be sqlite3_result_text16be199238,12031450 -#define sqlite3_result_text16le sqlite3_result_text16le199239,12031517 -#define sqlite3_result_value sqlite3_result_value199240,12031584 -#define sqlite3_rollback_hook sqlite3_rollback_hook199241,12031645 -#define sqlite3_set_authorizer sqlite3_set_authorizer199242,12031708 -#define sqlite3_set_auxdata sqlite3_set_auxdata199243,12031773 -#define sqlite3_snprintf sqlite3_snprintf199244,12031832 -#define sqlite3_step sqlite3_step199245,12031885 -#define sqlite3_table_column_metadata sqlite3_table_column_metadata199246,12031930 -#define sqlite3_thread_cleanup sqlite3_thread_cleanup199247,12032009 -#define sqlite3_total_changes sqlite3_total_changes199248,12032074 -#define sqlite3_trace sqlite3_trace199249,12032137 -#define sqlite3_transfer_bindings sqlite3_transfer_bindings199250,12032184 -#define sqlite3_update_hook sqlite3_update_hook199251,12032255 -#define sqlite3_user_data sqlite3_user_data199252,12032314 -#define sqlite3_value_blob sqlite3_value_blob199253,12032369 -#define sqlite3_value_bytes sqlite3_value_bytes199254,12032426 -#define sqlite3_value_bytes16 sqlite3_value_bytes16199255,12032485 -#define sqlite3_value_double sqlite3_value_double199256,12032548 -#define sqlite3_value_int sqlite3_value_int199257,12032609 -#define sqlite3_value_int64 sqlite3_value_int64199258,12032664 -#define sqlite3_value_numeric_type sqlite3_value_numeric_type199259,12032723 -#define sqlite3_value_text sqlite3_value_text199260,12032796 -#define sqlite3_value_text16 sqlite3_value_text16199261,12032853 -#define sqlite3_value_text16be sqlite3_value_text16be199262,12032914 -#define sqlite3_value_text16le sqlite3_value_text16le199263,12032979 -#define sqlite3_value_type sqlite3_value_type199264,12033044 -#define sqlite3_vmprintf sqlite3_vmprintf199265,12033101 -#define sqlite3_vsnprintf sqlite3_vsnprintf199266,12033154 -#define sqlite3_overload_function sqlite3_overload_function199267,12033209 -#define sqlite3_prepare_v2 sqlite3_prepare_v2199268,12033280 -#define sqlite3_prepare16_v2 sqlite3_prepare16_v2199269,12033337 -#define sqlite3_clear_bindings sqlite3_clear_bindings199270,12033398 -#define sqlite3_bind_zeroblob sqlite3_bind_zeroblob199271,12033463 -#define sqlite3_blob_bytes sqlite3_blob_bytes199272,12033526 -#define sqlite3_blob_close sqlite3_blob_close199273,12033583 -#define sqlite3_blob_open sqlite3_blob_open199274,12033640 -#define sqlite3_blob_read sqlite3_blob_read199275,12033695 -#define sqlite3_blob_write sqlite3_blob_write199276,12033750 -#define sqlite3_create_collation_v2 sqlite3_create_collation_v2199277,12033807 -#define sqlite3_file_control sqlite3_file_control199278,12033882 -#define sqlite3_memory_highwater sqlite3_memory_highwater199279,12033943 -#define sqlite3_memory_used sqlite3_memory_used199280,12034012 -#define sqlite3_mutex_alloc sqlite3_mutex_alloc199281,12034071 -#define sqlite3_mutex_enter sqlite3_mutex_enter199282,12034130 -#define sqlite3_mutex_free sqlite3_mutex_free199283,12034189 -#define sqlite3_mutex_leave sqlite3_mutex_leave199284,12034246 -#define sqlite3_mutex_try sqlite3_mutex_try199285,12034305 -#define sqlite3_open_v2 sqlite3_open_v2199286,12034360 -#define sqlite3_release_memory sqlite3_release_memory199287,12034411 -#define sqlite3_result_error_nomem sqlite3_result_error_nomem199288,12034476 -#define sqlite3_result_error_toobig sqlite3_result_error_toobig199289,12034549 -#define sqlite3_sleep sqlite3_sleep199290,12034624 -#define sqlite3_soft_heap_limit sqlite3_soft_heap_limit199291,12034671 -#define sqlite3_vfs_find sqlite3_vfs_find199292,12034738 -#define sqlite3_vfs_register sqlite3_vfs_register199293,12034791 -#define sqlite3_vfs_unregister sqlite3_vfs_unregister199294,12034852 -#define sqlite3_threadsafe sqlite3_threadsafe199295,12034917 -#define sqlite3_result_zeroblob sqlite3_result_zeroblob199296,12034974 -#define sqlite3_result_error_code sqlite3_result_error_code199297,12035041 -#define sqlite3_test_control sqlite3_test_control199298,12035112 -#define sqlite3_randomness sqlite3_randomness199299,12035173 -#define sqlite3_context_db_handle sqlite3_context_db_handle199300,12035230 -#define sqlite3_extended_result_codes sqlite3_extended_result_codes199301,12035301 -#define sqlite3_limit sqlite3_limit199302,12035380 -#define sqlite3_next_stmt sqlite3_next_stmt199303,12035427 -#define sqlite3_sql sqlite3_sql199304,12035482 -#define sqlite3_status sqlite3_status199305,12035525 -#define sqlite3_backup_finish sqlite3_backup_finish199306,12035574 -#define sqlite3_backup_init sqlite3_backup_init199307,12035637 -#define sqlite3_backup_pagecount sqlite3_backup_pagecount199308,12035696 -#define sqlite3_backup_remaining sqlite3_backup_remaining199309,12035765 -#define sqlite3_backup_step sqlite3_backup_step199310,12035834 -#define sqlite3_compileoption_get sqlite3_compileoption_get199311,12035893 -#define sqlite3_compileoption_used sqlite3_compileoption_used199312,12035964 -#define sqlite3_create_function_v2 sqlite3_create_function_v2199313,12036037 -#define sqlite3_db_config sqlite3_db_config199314,12036110 -#define sqlite3_db_mutex sqlite3_db_mutex199315,12036165 -#define sqlite3_db_status sqlite3_db_status199316,12036218 -#define sqlite3_extended_errcode sqlite3_extended_errcode199317,12036273 -#define sqlite3_log sqlite3_log199318,12036342 -#define sqlite3_soft_heap_limit64 sqlite3_soft_heap_limit64199319,12036385 -#define sqlite3_sourceid sqlite3_sourceid199320,12036456 -#define sqlite3_stmt_status sqlite3_stmt_status199321,12036509 -#define sqlite3_strnicmp sqlite3_strnicmp199322,12036568 -#define sqlite3_unlock_notify sqlite3_unlock_notify199323,12036621 -#define sqlite3_wal_autocheckpoint sqlite3_wal_autocheckpoint199324,12036684 -#define sqlite3_wal_checkpoint sqlite3_wal_checkpoint199325,12036757 -#define sqlite3_wal_hook sqlite3_wal_hook199326,12036822 -#define sqlite3_blob_reopen sqlite3_blob_reopen199327,12036875 -#define sqlite3_vtab_config sqlite3_vtab_config199328,12036934 -#define sqlite3_vtab_on_conflict sqlite3_vtab_on_conflict199329,12036993 -#define sqlite3_close_v2 sqlite3_close_v2199330,12037062 -#define sqlite3_db_filename sqlite3_db_filename199331,12037115 -#define sqlite3_db_readonly sqlite3_db_readonly199332,12037174 -#define sqlite3_db_release_memory sqlite3_db_release_memory199333,12037233 -#define sqlite3_errstr sqlite3_errstr199334,12037304 -#define sqlite3_stmt_busy sqlite3_stmt_busy199335,12037353 -#define sqlite3_stmt_readonly sqlite3_stmt_readonly199336,12037408 -#define sqlite3_stricmp sqlite3_stricmp199337,12037471 -#define sqlite3_uri_boolean sqlite3_uri_boolean199338,12037522 -#define sqlite3_uri_int64 sqlite3_uri_int64199339,12037581 -#define sqlite3_uri_parameter sqlite3_uri_parameter199340,12037636 -#define sqlite3_uri_vsnprintf sqlite3_uri_vsnprintf199341,12037699 -#define sqlite3_wal_checkpoint_v2 sqlite3_wal_checkpoint_v2199342,12037762 -#define sqlite3_auto_extension sqlite3_auto_extension199343,12037833 -#define sqlite3_bind_blob64 sqlite3_bind_blob64199344,12037898 -#define sqlite3_bind_text64 sqlite3_bind_text64199345,12037957 -#define sqlite3_cancel_auto_extension sqlite3_cancel_auto_extension199346,12038016 -#define sqlite3_load_extension sqlite3_load_extension199347,12038095 -#define sqlite3_malloc64 sqlite3_malloc64199348,12038160 -#define sqlite3_msize sqlite3_msize199349,12038213 -#define sqlite3_realloc64 sqlite3_realloc64199350,12038260 -#define sqlite3_reset_auto_extension sqlite3_reset_auto_extension199351,12038315 -#define sqlite3_result_blob64 sqlite3_result_blob64199352,12038392 -#define sqlite3_result_text64 sqlite3_result_text64199353,12038455 -#define sqlite3_strglob sqlite3_strglob199354,12038518 -#define sqlite3_value_dup sqlite3_value_dup199355,12038569 -#define sqlite3_value_free sqlite3_value_free199356,12038624 -#define sqlite3_result_zeroblob64 sqlite3_result_zeroblob64199357,12038681 -#define sqlite3_bind_zeroblob64 sqlite3_bind_zeroblob64199358,12038752 -#define sqlite3_value_subtype sqlite3_value_subtype199359,12038819 -#define sqlite3_result_subtype sqlite3_result_subtype199360,12038882 -#define sqlite3_status64 sqlite3_status64199361,12038947 -#define sqlite3_strlike sqlite3_strlike199362,12039000 -#define sqlite3_db_cacheflush sqlite3_db_cacheflush199363,12039051 -#define sqlite3_system_errno sqlite3_system_errno199364,12039114 -# define SQLITE_EXTENSION_INIT1 SQLITE_EXTENSION_INIT1199365,12039175 -# define SQLITE_EXTENSION_INIT2(SQLITE_EXTENSION_INIT2199366,12039241 -# define SQLITE_EXTENSION_INIT3 SQLITE_EXTENSION_INIT3199367,12039307 -# define SQLITE_EXTENSION_INIT1 SQLITE_EXTENSION_INIT1199368,12039373 -# define SQLITE_EXTENSION_INIT2(SQLITE_EXTENSION_INIT2199369,12039439 -# define SQLITE_EXTENSION_INIT3 SQLITE_EXTENSION_INIT3199370,12039505 -#define REQUIRE_HEAP(REQUIRE_HEAP199388,12039905 -#define BPX_HBPX_H199431,12042196 -#define heap_top heap_top199433,12042267 -#define local_top local_top199434,12042301 -#define trail_top trail_top199435,12042337 -#define trail_up_addr trail_up_addr199436,12042373 -#define UNDO_TRAILING UNDO_TRAILING199437,12042417 -#define NEW_HEAP_NODE(NEW_HEAP_NODE199438,12042461 -#define STACK_OVERFLOW STACK_OVERFLOW199439,12042505 -#define ARG(ARG199440,12042551 -#define XDEREF(XDEREF199441,12042581 -#define MAKEINT(MAKEINT199442,12042617 -#define INTVAL(INTVAL199443,12042655 -#define MAX_ARITY MAX_ARITY199444,12042691 -#define BP_MALLOC(BP_MALLOC199445,12042733 -#define NULL_TERM NULL_TERM199446,12042775 -#define REF0 REF0199447,12042817 -#define REF1 REF1199448,12042843 -#define SUSP SUSP199449,12042869 -#define LST LST199450,12042896 -#define ATM ATM199451,12042921 -#define INT INT199452,12042946 -#define STR STR199453,12042971 -#define NVAR NVAR199454,12042996 -#define GET_STR_SYM_REC(GET_STR_SYM_REC199455,12043023 -#define GET_ATM_SYM_REC(GET_ATM_SYM_REC199456,12043072 -#define GET_ARITY_STR(GET_ARITY_STR199457,12043121 -#define GET_ARITY_ATOM(GET_ARITY_ATOM199458,12043166 -#define GET_NAME_STR(GET_NAME_STR199459,12043213 -#define GET_NAME_ATOM(GET_NAME_ATOM199460,12043256 -#define ISREF(ISREF199463,12043410 -#define ISATOM(ISATOM199464,12043440 -#define ISINT(ISINT199465,12043472 -#define ISNUM(ISNUM199466,12043502 -#define ISNIL(ISNIL199467,12043532 -#define ISLIST(ISLIST199468,12043562 -#define ISSTRUCT(ISSTRUCT199469,12043594 -#define ISFLOAT(ISFLOAT199470,12043630 -#define ISCOMPOUND(ISCOMPOUND199471,12043664 -#define SWITCH_OP(SWITCH_OP199476,12043972 -#define XNDEREF(XNDEREF199477,12044010 -#define GET_ARG(GET_ARG199478,12044044 -#define GET_CAR(GET_CAR199479,12044078 -#define GET_CDR(GET_CDR199480,12044112 -#define MAKE_NVAR(MAKE_NVAR199481,12044146 -#define float_psc float_psc199482,12044184 -#define NEW_HEAP_FREE NEW_HEAP_FREE199483,12044222 -#define nil_sym nil_sym199484,12044268 -#define unify unify199485,12044302 -#define PRE_NUMBER_VAR(PRE_NUMBER_VAR199495,12044921 -#define IsNumberedVar IsNumberedVar199499,12045166 -#define GET_ARITY_ATOM GET_ARITY_ATOM199500,12045212 -#define GET_ARITY_STR GET_ARITY_STR199501,12045260 -#define GET_NAME_STR GET_NAME_STR199502,12045306 -#define GET_NAME_ATOM GET_NAME_ATOM199503,12045350 -#define NULL_TERM NULL_TERM199504,12045396 -#define XDEREF(XDEREF199505,12045434 -#define XNDEREF(XNDEREF199506,12045466 -#define XTAG(XTAG199507,12045500 -#define REF0 REF0199508,12045528 -#define REF1 REF1199509,12045556 -#define INT INT199510,12045584 -#define NVAR NVAR199511,12045610 -#define IS_NVAR(IS_NVAR199512,12045638 -#define MAKE_NVAR(MAKE_NVAR199513,12045672 -#undef UNTAGGED_ADDRUNTAGGED_ADDR199514,12045710 -#define UNTAGGED_ADDR(UNTAGGED_ADDR199515,12045755 -#define ERROR_HERROR_H199540,12047044 -#define RET_ERR(RET_ERR199541,12047073 -#define RET_RUNTIME_ERR RET_RUNTIME_ERR199542,12047104 -#define RET_INTERNAL_ERR RET_INTERNAL_ERR199543,12047152 -#define RET_ON_ERR(RET_ON_ERR199544,12047202 -#define RET_ERR_ON_ERR(RET_ERR_ON_ERR199545,12047240 -#define FPUTIL_HFPUTIL_H199552,12047451 -#define C99C99199553,12047482 -#define isfinite isfinite199554,12047505 -#define isnan isnan199555,12047539 -#define INFINITY INFINITY199556,12047567 -# define isfinite isfinite199557,12047601 -# define isnan isnan199558,12047639 -# define INFINITY INFINITY199559,12047671 -#define isfinite(isfinite199560,12047709 -#define isnan(isnan199561,12047743 -#define INFINITY INFINITY199562,12047771 -#define SNAN SNAN199563,12047805 -#define QNAN QNAN199564,12047831 -#define PI PI199567,12047897 -#define PI_2 PI_2199568,12047920 -#define PI_4 PI_4199569,12047947 -#define LN_SQRT2PI LN_SQRT2PI199570,12047974 -#define GAMMA_HGAMMA_H199575,12048135 -#define REGISTER_CPRED(REGISTER_CPRED199578,12048203 -#define GLUE_HGLUE_H199589,12048720 -#define IDTABLE_HIDTABLE_H199618,12050106 -#define ID_NONE ID_NONE199619,12050139 -#define IDTABLE_AUX_HIDTABLE_AUX_H199660,12052512 -#define N N199663,12052595 -#define M M199664,12052616 -#define MATRIX_A MATRIX_A199665,12052637 -#define UPPER_MASK UPPER_MASK199666,12052672 -#define LOWER_MASK LOWER_MASK199667,12052711 -#define M_PI M_PI199674,12053172 -#define RANDOM_HRANDOM_H199690,12053995 -#define STUFF_HSTUFF_H199693,12054066 -#define NORET NORET199697,12054234 -#define PRINTF_LIKE_FUNC(PRINTF_LIKE_FUNC199698,12054262 -#define NORET NORET199699,12054312 -#define PRINTF_LIKE_FUNC(PRINTF_LIKE_FUNC199700,12054340 -#define NORET NORET199701,12054390 -#define PRINTF_LIKE_FUNC(PRINTF_LIKE_FUNC199702,12054418 -#define prism_quit(prism_quit199705,12054512 -#define BLOCK_SIZE BLOCK_SIZE199706,12054549 -#define TERMPOOL_HTERMPOOL_H199744,12056539 -#define INITIAL_CAPA INITIAL_CAPA199748,12056667 -#undef VECTOR_SIZEVECTOR_SIZE199749,12056708 -#undef VECTOR_CAPAVECTOR_CAPA199750,12056745 -#define VECTOR_SIZE(VECTOR_SIZE199751,12056783 -#define VECTOR_CAPA(VECTOR_CAPA199752,12056823 -#define VECTOR_HVECTOR_H199762,12057400 -#define VECTOR_INIT(VECTOR_INIT199763,12057431 -#define VECTOR_INIT_SIZE(VECTOR_INIT_SIZE199764,12057470 -#define VECTOR_INIT_CAPA(VECTOR_INIT_CAPA199765,12057520 -#define VECTOR_FREE(VECTOR_FREE199766,12057570 -#define VECTOR_SIZE(VECTOR_SIZE199767,12057610 -#define VECTOR_CAPA(VECTOR_CAPA199768,12057650 -#define VECTOR_PUSH(VECTOR_PUSH199769,12057690 -#define VECTOR_POP(VECTOR_POP199770,12057730 -#define VECTOR_PUSH_NONE(VECTOR_PUSH_NONE199771,12057768 -#define VECTOR_RESIZE(VECTOR_RESIZE199772,12057818 -#define VECTOR_RESERVE(VECTOR_RESERVE199773,12057862 -#define VECTOR_STRIP(VECTOR_STRIP199774,12057908 -#define VECTOR_CLEAR(VECTOR_CLEAR199775,12057951 -#define VECTOR_EMPTY(VECTOR_EMPTY199776,12057994 -#define XMALLOC_HXMALLOC_H199783,12058181 -# define MALLOC(MALLOC199784,12058214 -# define REALLOC(REALLOC199785,12058246 -# define FREE(FREE199786,12058280 -# define MALLOC(MALLOC199787,12058308 -# define REALLOC(REALLOC199788,12058340 -# define FREE(FREE199789,12058374 -#define MP_HMP_H199794,12058479 -#define TAG_GOAL_REQ TAG_GOAL_REQ199795,12058502 -#define TAG_GOAL_LEN TAG_GOAL_LEN199796,12058544 -#define TAG_GOAL_STR TAG_GOAL_STR199797,12058586 -#define TAG_SWITCH_REQ TAG_SWITCH_REQ199798,12058628 -#define TAG_SWITCH_RES TAG_SWITCH_RES199799,12058674 -#define DEV_NULL DEV_NULL199802,12058760 -#define MP_CORE_HMP_CORE_H199813,12059169 -#define MP_EM_AUX_HMP_EM_AUX_H199835,12060228 -#define MP_EM_ML_HMP_EM_ML_H199844,12060590 -#define MP_EM_PREDS_HMP_EM_PREDS_H199857,12061214 -#define MP_EM_VB_HMP_EM_VB_H199866,12061585 -#define PUT(PUT199869,12061661 -#define GET(GET199870,12061685 -#define MP_FLAGS_HMP_FLAGS_H199875,12061892 -#define MP_PREDS_HMP_PREDS_H199894,12062780 -#define L(L199900,12062981 -#define N(N199901,12063001 -#define MP_SW_HMP_SW_H199911,12063526 -#define __EM_H____EM_H__199914,12063591 -#define DEFAULT_MAX_ITERATE DEFAULT_MAX_ITERATE199915,12063622 -#define SHOW_PROGRESS(SHOW_PROGRESS199964,12067321 -#define SHOW_PROGRESS_HEAD(SHOW_PROGRESS_HEAD199965,12067366 -#define SHOW_PROGRESS_TAIL(SHOW_PROGRESS_TAIL199966,12067421 -#define SHOW_PROGRESS_TEMP(SHOW_PROGRESS_TEMP199967,12067476 -#define SHOW_PROGRESS_INTR(SHOW_PROGRESS_INTR199968,12067531 -#define REACHED_MAX_ITERATE(REACHED_MAX_ITERATE199969,12067586 -#define EM_AUX_HEM_AUX_H199985,12068322 -#define EM_AUX_ML_HEM_AUX_ML_H200012,12070012 -#define EM_AUX_VB_HEM_AUX_VB_H200037,12071661 -#define EM_ML_HEM_ML_H200044,12071868 -#define EM_PREDS_HEM_PREDS_H200055,12072302 -#define EM_VB_HEM_VB_H200062,12072520 -#define FLAGS_HFLAGS_H200105,12074826 -#define GRAPH_HGRAPH_H200171,12079077 -#define INIT_MAX_SW_TABLE_SIZE INIT_MAX_SW_TABLE_SIZE200172,12079106 -#define INIT_MAX_SW_INS_TABLE_SIZE INIT_MAX_SW_INS_TABLE_SIZE200173,12079167 -#define INIT_MAX_EGRAPH_SIZE INIT_MAX_EGRAPH_SIZE200174,12079236 -#define MAX_EGRAPH_SIZE_EXPAND_LIMIT MAX_EGRAPH_SIZE_EXPAND_LIMIT200175,12079293 -#define UPDATE_MIN_MAX_NODE_NOS(UPDATE_MIN_MAX_NODE_NOS200176,12079366 -#define INIT_MIN_MAX_NODE_NOS INIT_MIN_MAX_NODE_NOS200177,12079430 -#define INIT_VISITED_FLAGS INIT_VISITED_FLAGS200178,12079490 -#define GRAPH_AUX_HGRAPH_AUX_H200191,12080099 -#define PRINT_NEUTRAL PRINT_NEUTRAL200192,12080136 -#define PRINT_EM PRINT_EM200193,12080179 -#define PRINT_VBEM PRINT_VBEM200194,12080212 -#define PRINT_VITERBI PRINT_VITERBI200195,12080250 -#define INIT_MAX_HINDSIGHT_GOAL_SIZE INIT_MAX_HINDSIGHT_GOAL_SIZE200198,12080336 -#define HINDSIGHT_HHINDSIGHT_H200212,12081327 -#define UP_HUP_H200215,12081400 -#define BINARY_VERSION BINARY_VERSION200216,12081423 -#define INIT_PROB_THRESHOLD INIT_PROB_THRESHOLD200217,12081469 -#define EPS EPS200218,12081525 -#define NULL_TERM NULL_TERM200219,12081549 -#define HUGE_PROB HUGE_PROB200220,12081585 -#define TINY_PROB TINY_PROB200221,12081621 -#define CTRLC_PRESSED CTRLC_PRESSED200326,12089102 -#define isfinite isfinite200327,12089148 -#define isnan isnan200328,12089184 -#define isfinite isfinite200329,12089214 -#define UTIL_HUTIL_H200344,12089837 -#define VITERBI_HVITERBI_H200388,12092502 -#define REPR_BUFFER_SIZE REPR_BUFFER_SIZE208248,12572133 -#define TYPE_MAXSIZE TYPE_MAXSIZE208249,12572186 -#define REPR_BUFFER_SIZE REPR_BUFFER_SIZE208251,12572306 -#define TYPE_MAXSIZE TYPE_MAXSIZE208252,12572359 -#undef _XOPEN_SOURCE _XOPEN_SOURCE208356,12580418 -#undef HAVE_STATaHAVE_STATa208357,12580461 -#define EXTRA_MESSSAGES EXTRA_MESSSAGES208358,12580497 -#define PYTHON_H PYTHON_H208359,12580545 -#define DebugPrintf(DebugPrintf208360,12580579 -#define DebugPrintf(DebugPrintf208361,12580619 -#define PY_MAX_MODLEN PY_MAX_MODLEN208362,12580659 -#define CHECK_CALL(CHECK_CALL208376,12581389 -#define CHECKNULL(CHECKNULL208377,12581429 -#define AOK(AOK208378,12581467 -#define pyErrorHandler(pyErrorHandler208379,12581493 -#define pyErrorAndReturn(pyErrorAndReturn208380,12581541 -#define HAVE_RAPTOR2_RAPTOR2_H HAVE_RAPTOR2_RAPTOR2_H230934,13938500 -#define RCONFIG_HRCONFIG_H231264,13950839 -#define HAVE_R_H HAVE_R_H231265,13950873 -#define HAVE_R_EMBEDDED_H HAVE_R_EMBEDDED_H231266,13950907 -#define HAVE_R_INTERFACE_H HAVE_R_INTERFACE_H231267,13950959 -#define CSTACK_DEFNSCSTACK_DEFNS231270,13951041 -#define R_SIGNAL_HANDLERS R_SIGNAL_HANDLERS231271,13951079 -#define PROTECT_AND_COUNT(PROTECT_AND_COUNT231272,13951131 -#define Ureturn Ureturn231273,13951183 -#define PROTECT_AND_COUNT(PROTECT_AND_COUNT231274,13951215 -#define Ureturn Ureturn231275,13951268 -#define PL_R_BOOL PL_R_BOOL231309,13953102 -#define PL_R_CHARS PL_R_CHARS231310,13953139 -#define PL_R_INTEGER PL_R_INTEGER231311,13953178 -#define PL_R_FLOAT PL_R_FLOAT231312,13953221 -#define PL_R_COMPLEX PL_R_COMPLEX231313,13953260 -#define PL_R_SYMBOL PL_R_SYMBOL231314,13953304 -#define PL_R_CALL PL_R_CALL231315,13953346 -#define PL_R_LISTEL PL_R_LISTEL231316,13953384 -#define PL_R_SLOT PL_R_SLOT231317,13953426 -#define PL_R_NAME PL_R_NAME231318,13953464 -#define PL_R_PLUS PL_R_PLUS231319,13953502 -#define PL_R_PSYMBOL PL_R_PSYMBOL231320,13953540 -#define PL_R_ATBOOL PL_R_ATBOOL231321,13953584 -#define PL_R_VARIABLE PL_R_VARIABLE231322,13953626 -#define PL_R_SUBSET PL_R_SUBSET231323,13953672 -#define PL_R_DOT PL_R_DOT231324,13953714 -#define PL_R_DEFUN PL_R_DEFUN231325,13953750 -#define PL_R_QUOTE PL_R_QUOTE231326,13953790 -#define PL_R_INNER PL_R_INNER231327,13953830 -#define PL_R_OUTER PL_R_OUTER231328,13953870 -#define PL_R_FORMULA PL_R_FORMULA231329,13953910 -#define PL_R_IF PL_R_IF231330,13953954 -#define PL_R_IF_ELSE PL_R_IF_ELSE231331,13953988 -#define PL_R_FOR PL_R_FOR231332,13954032 -#define PL_R_WHILE PL_R_WHILE231333,13954068 -#define PL_R_REPEAT PL_R_REPEAT231334,13954108 -#define PL_R_NEXT PL_R_NEXT231335,13954150 -#define PL_R_BREAK PL_R_BREAK231336,13954188 -#define PL_R_IN PL_R_IN231337,13954228 -#define PL_R_RFORMULA PL_R_RFORMULA231338,13954262 -#define PL_R_EQUAL PL_R_EQUAL231339,13954308 -#define PL_R_VECTOR PL_R_VECTOR231340,13954348 -#define REAL_Error(REAL_Error231341,13954390 -#define _PL_get_arg _PL_get_arg231343,13954524 -#define Sdprintf(Sdprintf231344,13954566 -#define ATOM_dot ATOM_dot231384,13957625 -#define BUFSIZE BUFSIZE231388,13957794 -#define PL_Nil PL_Nil231390,13957871 -#define PL_Var PL_Var231391,13957901 -#define PL_Atom PL_Atom231392,13957931 -#define PL_Appl PL_Appl231393,13957963 -#define PL_Pair PL_Pair231394,13957995 -#define PL_Int PL_Int231395,13958027 -#define PL_Float PL_Float231396,13958057 -#define PL_DbRef PL_DbRef231397,13958091 -#define PL_Unknown PL_Unknown231398,13958125 -#define real_Int real_Int231424,13959180 -#define real_Float real_Float231425,13959214 -#define real_Char real_Char231426,13959252 -#define real_Bool real_Bool231427,13959288 -#define real_ty_Vector real_ty_Vector231428,13959324 -#define real_ty_Matrix real_ty_Matrix231429,13959370 -#define real_ty_List real_ty_List231430,13959416 -#define real_ty_Array real_ty_Array231431,13959458 -#define __LBFGS_H____LBFGS_H__236620,14290805 -#define LBFGS_FLOAT LBFGS_FLOAT236621,14290845 -#define LBFGS_IEEE_FLOAT LBFGS_IEEE_FLOAT236622,14290886 -#define fsigndiff(fsigndiff236713,14296404 -#define fsigndiff(fsigndiff236714,14296441 -#define fsigndiff(fsigndiff236731,14297882 -#define vecset(vecset236732,14297919 -#define veccpy(veccpy236733,14297950 -#define vecncpy(vecncpy236734,14297981 -#define vecadd(vecadd236735,14298014 -#define vecdiff(vecdiff236736,14298046 -#define vecscale(vecscale236737,14298080 -#define vecmul(vecmul236738,14298116 -#define __horizontal_sum(__horizontal_sum236739,14298148 -#define __horizontal_sum(__horizontal_sum236740,14298200 -#define vecdot(vecdot236741,14298252 -#define vec2norm(vec2norm236742,14298284 -#define vec2norminv(vec2norminv236743,14298320 -#define fsigndiff(fsigndiff236746,14298428 -#define fsigndiff(fsigndiff236747,14298465 -#define vecset(vecset236750,14298620 -#define veccpy(veccpy236751,14298651 -#define vecncpy(vecncpy236752,14298682 -#define vecadd(vecadd236753,14298715 -#define vecdiff(vecdiff236754,14298747 -#define vecscale(vecscale236755,14298781 -#define vecmul(vecmul236756,14298817 -#define __horizontal_sum(__horizontal_sum236757,14298849 -#define __horizontal_sum(__horizontal_sum236758,14298901 -#define vecdot(vecdot236759,14298953 -#define vec2norm(vec2norm236760,14298985 -#define vec2norminv(vec2norminv236761,14299021 -#define inline inline236764,14299115 -#define min2(min2236765,14299146 -#define max2(max2236766,14299173 -#define max3(max3236767,14299200 -#define USES_MINIMIZER USES_MINIMIZER236798,14301034 -#define CUBIC_MINIMIZER(CUBIC_MINIMIZER236799,14301084 -#define CUBIC_MINIMIZER2(CUBIC_MINIMIZER2236800,14301136 -#define QUARD_MINIMIZER(QUARD_MINIMIZER236801,14301190 -#define QUARD_MINIMIZER2(QUARD_MINIMIZER2236802,14301242 -#define OPTIMIZER_STATUS_NONE OPTIMIZER_STATUS_NONE236811,14301626 -#define OPTIMIZER_STATUS_INITIALIZED OPTIMIZER_STATUS_INITIALIZED236812,14301686 -#define OPTIMIZER_STATUS_RUNNING OPTIMIZER_STATUS_RUNNING236813,14301760 -#define OPTIMIZER_STATUS_CB_EVAL OPTIMIZER_STATUS_CB_EVAL236814,14301826 -#define OPTIMIZER_STATUS_CB_PROGRESS OPTIMIZER_STATUS_CB_PROGRESS236815,14301892 -#define IMODE_SWITCH_CHAR IMODE_SWITCH_CHAR247494,14968204 -#define RL_CANCELED_CHARP RL_CANCELED_CHARP247495,14968256 -#define EOS EOS247498,14968337 -#define initHeapDebug(initHeapDebug247506,14968704 -#define WM_MOUSEWHEEL WM_MOUSEWHEEL247507,14968749 -#define WM_UNICHAR WM_UNICHAR247508,14968794 -#define UNICODE_NOCHAR UNICODE_NOCHAR247509,14968833 -#define _MAKE_DLL _MAKE_DLL247511,14968923 -#undef _export_export247512,14968960 -#define isletter(isletter247513,14968991 -#define MAXPATHLEN MAXPATHLEN247514,14969027 -#define CHAR_MAX CHAR_MAX247515,14969067 -#define MAXLINE MAXLINE247516,14969103 -#define CMD_INITIAL CMD_INITIAL247517,14969137 -#define CMD_ESC CMD_ESC247518,14969179 -#define CMD_ANSI CMD_ANSI247519,14969213 -#define GWL_DATA GWL_DATA247520,14969249 -#define CHG_RESET CHG_RESET247521,14969285 -#define CHG_CHANGED CHG_CHANGED247522,14969323 -#define CHG_CLEAR CHG_CLEAR247523,14969365 -#define CHG_CARET CHG_CARET247524,14969403 -#define SEL_CHAR SEL_CHAR247525,14969441 -#define SEL_WORD SEL_WORD247526,14969477 -#define SEL_LINE SEL_LINE247527,14969513 -#define EOS EOS247528,14969549 -#define ESC ESC247529,14969575 -#define WM_RLC_INPUT WM_RLC_INPUT247530,14969601 -#define WM_RLC_WRITE WM_RLC_WRITE247531,14969645 -#define WM_RLC_FLUSH WM_RLC_FLUSH247532,14969689 -#define WM_RLC_READY WM_RLC_READY247533,14969733 -#define WM_RLC_CLOSEWIN WM_RLC_CLOSEWIN247534,14969777 -#define IMODE_RAW IMODE_RAW247535,14969827 -#define IMODE_COOKED IMODE_COOKED247536,14969865 -#define NextLine(NextLine247537,14969909 -#define PrevLine(PrevLine247538,14969945 -#define Bounds(Bounds247539,14969981 -#define Control(Control247540,14970013 -#define streq(streq247541,14970047 -#define OPT_SIZE OPT_SIZE247542,14970077 -#define OPT_POSITION OPT_POSITION247543,14970113 -#define DEBUG(DEBUG247561,14971421 -#define DEBUG(DEBUG247564,14971562 -#define rlc_check_assertions(rlc_check_assertions247565,14971592 -#define MAXREGSTRLEN MAXREGSTRLEN247576,14972282 -#define SelLT(SelLT247600,14973787 -#define SelEQ(SelEQ247601,14973819 -#define CMD(CMD247653,14977148 -#define CMD(CMD247654,14977176 -#define QN(QN247672,14978173 -#define _CONSOLE_H_INCLUDED_CONSOLE_H_INCLUDED247712,14980449 -#define RLC_VENDOR RLC_VENDOR247713,14980504 -#define RLC_VENDOR RLC_VENDOR247714,14980543 -#define RLC_TITLE_MAX RLC_TITLE_MAX247715,14980582 -#define _export _export247716,14980627 -#define _export _export247717,14980660 -#define RLC_APPTIMER_ID RLC_APPTIMER_ID247720,14980784 -#define RLC_EOF RLC_EOF247733,14981433 -#define RLC_WINDOW RLC_WINDOW247775,14984070 -#define RLC_TEXT RLC_TEXT247776,14984110 -#define RLC_HIGHLIGHT RLC_HIGHLIGHT247777,14984146 -#define RLC_HIGHLIGHTTEXT RLC_HIGHLIGHTTEXT247778,14984192 -#define RLC_APPLICATION_THREAD RLC_APPLICATION_THREAD247780,14984329 -#define RLC_APPLICATION_THREAD_ID RLC_APPLICATION_THREAD_ID247781,14984393 -#define RLC_VALUE(RLC_VALUE247782,14984463 -#define COMPLETE_MAX_WORD_LEN COMPLETE_MAX_WORD_LEN247804,14985794 -#define COMPLETE_MAX_MATCHES COMPLETE_MAX_MATCHES247805,14985856 -#define COMPLETE_INIT COMPLETE_INIT247806,14985916 -#define COMPLETE_ENUMERATE COMPLETE_ENUMERATE247807,14985962 -#define COMPLETE_CLOSE COMPLETE_CLOSE247808,14986018 -#define ANSI_MAX_ARGC ANSI_MAX_ARGC247848,14988577 -#define MAXPROMPT MAXPROMPT247849,14988622 -#define OQSIZE OQSIZE247850,14988659 -#define MAX_USER_VALUES MAX_USER_VALUES247851,14988690 -#define ANSI_COLOR_DEFAULT ANSI_COLOR_DEFAULT247860,14989150 -#define TF_FG(TF_FG247861,14989205 -#define TF_BG(TF_BG247862,14989234 -#define TF_BOLD(TF_BOLD247863,14989263 -#define TF_UNDERLINE(TF_UNDERLINE247864,14989296 -#define TF_DEFAULT TF_DEFAULT247865,14989339 -#define TF_SET_FG(TF_SET_FG247866,14989378 -#define TF_SET_BG(TF_SET_BG247867,14989415 -#define TF_SET_BOLD(TF_SET_BOLD247868,14989452 -#define TF_SET_UNDERLINE(TF_SET_UNDERLINE247869,14989493 -#define RLC_MAGIC RLC_MAGIC247892,14990926 -#define assert(assert248031,15000771 -#define assert(assert248032,15000803 -#define _MAKE_DLL _MAKE_DLL248036,15000911 -#undef _export_export248037,15000947 -#define EOF EOF248038,15000978 -#define min(min248043,15001362 -#define max(max248044,15001387 -#define TRUE TRUE248045,15001412 -#define FALSE FALSE248046,15001439 -#define EOS EOS248047,15001468 -#define ESC ESC248048,15001493 -#define COMPLETE_NEWLINE COMPLETE_NEWLINE248049,15001518 -#define COMPLETE_EOF COMPLETE_EOF248050,15001569 -#define ctrl(ctrl248051,15001612 -#define META_OFFSET META_OFFSET248052,15001639 -#define meta(meta248053,15001680 -#define MAX_LIST_COMPLETIONS MAX_LIST_COMPLETIONS248086,15003492 -#define ACTION(ACTION248102,15004245 -#define _MAKE_DLL _MAKE_DLL248108,15004446 -#undef _export_export248109,15004482 -#define TRUE TRUE248110,15004513 -#define FALSE FALSE248111,15004540 -#define _MAKE_DLL _MAKE_DLL248124,15005054 -#undef _export_export248125,15005090 -#define EOS EOS248126,15005121 -#define streq(streq248127,15005146 -#define MEN_MAGIC MEN_MAGIC248143,15005871 -#define WM_RLC_MENU WM_RLC_MENU248161,15006857 -#define IDM_USER IDM_USER248162,15006897 -#define MAXLABELLEN MAXLABELLEN248163,15006932 -#define IDM_EXIT IDM_EXIT248164,15006973 -#define IDM_CUT IDM_CUT248165,15007008 -#define IDM_COPY IDM_COPY248166,15007041 -#define IDM_PASTE IDM_PASTE248167,15007076 -#define IDM_BREAK IDM_BREAK248168,15007113 -#define IDM_FONT IDM_FONT248169,15007150 -#define MAXKEYLEN MAXKEYLEN248174,15007237 -#define MAXKEYPATHLEN MAXKEYPATHLEN248175,15007274 - -test_answer.pl,2374 -test_answer :-test_answer28,761 -toplevel_answer(Goal, Answer) :-toplevel_answer37,951 -toplevel_answer(Goal, Answer) :-toplevel_answer37,951 -toplevel_answer(Goal, Answer) :-toplevel_answer37,951 -mkatom(X=T, NT) :-mkatom43,1100 -mkatom(X=T, NT) :-mkatom43,1100 -mkatom(X=T, NT) :-mkatom43,1100 -test_answer(QueryAtom, Replies) :-test_answer50,1256 -test_answer(QueryAtom, Replies) :-test_answer50,1256 -test_answer(QueryAtom, Replies) :-test_answer50,1256 -anon_binding(Name=_, GName=Var, Name=Var) :-anon_binding75,1974 -anon_binding(Name=_, GName=Var, Name=Var) :-anon_binding75,1974 -anon_binding(Name=_, GName=Var, Name=Var) :-anon_binding75,1974 -anon_binding(_, Binding, Binding).anon_binding77,2055 -anon_binding(_, Binding, Binding).anon_binding77,2055 -compare_comment(_-C, _-C).compare_comment79,2091 -compare_comment(_-C, _-C).compare_comment79,2091 -hidden :-hidden81,2119 -test(simple, true) :-test86,2191 -test(simple, true) :-test86,2191 -test(simple, true) :-test86,2191 -test(simple, true) :-test88,2243 -test(simple, true) :-test88,2243 -test(simple, true) :-test88,2243 -test(separated, true) :-test90,2305 -test(separated, true) :-test90,2305 -test(separated, true) :-test90,2305 -test(same, true) :-test92,2392 -test(same, true) :-test92,2392 -test(same, true) :-test92,2392 -test(same, true) :-test94,2452 -test(same, true) :-test94,2452 -test(same, true) :-test94,2452 -test(cycle, true) :-test96,2518 -test(cycle, true) :-test96,2518 -test(cycle, true) :-test96,2518 -test(cycle, true) :-test98,2575 -test(cycle, true) :-test98,2575 -test(cycle, true) :-test98,2575 -test(double_cycle, true) :-test100,2651 -test(double_cycle, true) :-test100,2651 -test(double_cycle, true) :-test100,2651 -test(freeze, true) :-test105,2808 -test(freeze, true) :-test105,2808 -test(freeze, true) :-test105,2808 -test(hidden, true) :-test107,2896 -test(hidden, true) :-test107,2896 -test(hidden, true) :-test107,2896 -test(hidden, true) :-test112,3022 -test(hidden, true) :-test112,3022 -test(hidden, true) :-test112,3022 -test(hidden, true) :-test118,3170 -test(hidden, true) :-test118,3170 -test(hidden, true) :-test118,3170 -test_answer :-test_answer131,3413 -test_answer(_QueryAtom, _Replies). % satisfy exportstest_answer134,3504 -test_answer(_QueryAtom, _Replies). % satisfy exportstest_answer134,3504 - -TO_DO,0 - -utf8proc/bench/bench.c,43 -int main(int argc, char **argv)main8,101 - -utf8proc/bench/icu.c,44 -int main(int argc, char **argv)main12,183 - -utf8proc/bench/unistring.c,44 -int main(int argc, char **argv)main13,189 - -utf8proc/bench/util.c,158 -uint8_t *readfile(const char *filename, size_t *len)readfile9,168 -mytime gettime(void) {gettime27,555 -double elapsed(mytime t1, mytime t0)elapsed34,664 - -utf8proc/bench/util.h,73 -#define UTIL_H UTIL_H2,15 -typedef struct timeval mytime;mytime14,191 - -utf8proc/data/data_generator.rb,259 -def str2c(string, prefix)str2c114,5436 -def ary2c(array)ary2c118,5541 -class UnicodeCharUnicodeChar128,5816 - def initialize(line)initialize133,6060 - def case_foldingcase_folding164,7339 - def c_entry(comb1_indicies, comb2_indicies)c_entry167,7388 - -utf8proc/Doxyfile,0 - -utf8proc/same,0 - -utf8proc/test/case.c,42 -int main(int argc, char **argv)main4,40 - -utf8proc/test/charwidth.c,84 -int my_isprint(int c) {my_isprint5,58 -int main(int argc, char **argv)main11,282 - -utf8proc/test/graphemetest.c,42 -int main(int argc, char **argv)main3,20 - -utf8proc/test/iterate.c,286 -static int tests;tests5,58 -static int error;error6,81 -#define CHECKVALID(CHECKVALID8,105 -#define CHECKINVALID(CHECKINVALID9,187 -void testbytes(unsigned char *buf, int len, utf8proc_ssize_t retval, int line)testbytes11,295 -int main(int argc, char **argv)main27,722 - -utf8proc/test/normtest.c,80 -#define CHECK_NORM(CHECK_NORM3,20 -int main(int argc, char **argv)main10,383 - -utf8proc/test/printproperty.c,43 -int main(int argc, char **argv)main5,100 - -utf8proc/test/tests.h,212 -size_t lineno = 0;lineno11,185 -void check(int cond, const char *format, ...)check13,205 -size_t skipspaces(const char *buf, size_t i)skipspaces26,506 -size_t encode(char *dest, const char *buf)encode37,959 - -utf8proc/test/valid.c,42 -int main(int argc, char **argv)main5,58 - -utf8proc/utf8proc.c,3932 -UTF8PROC_DLLEXPORT const utf8proc_int8_t utf8proc_utf8class[256] = {utf8proc_utf8class47,1658 -#define UTF8PROC_HANGUL_SBASE UTF8PROC_HANGUL_SBASE65,2530 -#define UTF8PROC_HANGUL_LBASE UTF8PROC_HANGUL_LBASE66,2567 -#define UTF8PROC_HANGUL_VBASE UTF8PROC_HANGUL_VBASE67,2604 -#define UTF8PROC_HANGUL_TBASE UTF8PROC_HANGUL_TBASE68,2641 -#define UTF8PROC_HANGUL_LCOUNT UTF8PROC_HANGUL_LCOUNT69,2678 -#define UTF8PROC_HANGUL_VCOUNT UTF8PROC_HANGUL_VCOUNT70,2712 -#define UTF8PROC_HANGUL_TCOUNT UTF8PROC_HANGUL_TCOUNT71,2746 -#define UTF8PROC_HANGUL_NCOUNT UTF8PROC_HANGUL_NCOUNT72,2780 -#define UTF8PROC_HANGUL_SCOUNT UTF8PROC_HANGUL_SCOUNT73,2815 -#define UTF8PROC_HANGUL_L_START UTF8PROC_HANGUL_L_START75,2875 -#define UTF8PROC_HANGUL_L_END UTF8PROC_HANGUL_L_END76,2915 -#define UTF8PROC_HANGUL_L_FILLER UTF8PROC_HANGUL_L_FILLER77,2955 -#define UTF8PROC_HANGUL_V_START UTF8PROC_HANGUL_V_START78,2995 -#define UTF8PROC_HANGUL_V_END UTF8PROC_HANGUL_V_END79,3035 -#define UTF8PROC_HANGUL_T_START UTF8PROC_HANGUL_T_START80,3075 -#define UTF8PROC_HANGUL_T_END UTF8PROC_HANGUL_T_END81,3115 -#define UTF8PROC_HANGUL_S_START UTF8PROC_HANGUL_S_START82,3155 -#define UTF8PROC_HANGUL_S_END UTF8PROC_HANGUL_S_END83,3195 -#define STRINGIZEx(STRINGIZEx88,3430 -#define STRINGIZE(STRINGIZE89,3455 -UTF8PROC_DLLEXPORT const char *utf8proc_version(void) {utf8proc_version90,3490 -UTF8PROC_DLLEXPORT const char *utf8proc_errmsg(utf8proc_ssize_t errcode) {utf8proc_errmsg94,3672 -#define utf_cont(utf_cont111,4321 -UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_iterate(utf8proc_iterate112,4367 -UTF8PROC_DLLEXPORT utf8proc_bool utf8proc_codepoint_valid(utf8proc_int32_t uc) {utf8proc_codepoint_valid160,5999 -UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_encode_char(utf8proc_int32_t uc, utf8proc_uint8_t *dst) {utf8proc_encode_char164,6175 -utf8proc_ssize_t unsafe_encode_char(utf8proc_int32_t uc, utf8proc_uint8_t *dst) {unsafe_encode_char195,7127 -static const utf8proc_property_t *unsafe_get_property(utf8proc_int32_t uc) {unsafe_get_property226,8013 -UTF8PROC_DLLEXPORT const utf8proc_property_t *utf8proc_get_property(utf8proc_int32_t uc) {utf8proc_get_property235,8254 -static utf8proc_bool grapheme_break(int lbc, int tbc) {grapheme_break240,8511 -UTF8PROC_DLLEXPORT utf8proc_bool utf8proc_grapheme_break(utf8proc_int32_t c1, utf8proc_int32_t c2) {utf8proc_grapheme_break266,9654 -UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_tolower(utf8proc_int32_t c)utf8proc_tolower271,9885 -UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_toupper(utf8proc_int32_t c)utf8proc_toupper277,10059 -UTF8PROC_DLLEXPORT int utf8proc_charwidth(utf8proc_int32_t c) {utf8proc_charwidth285,10367 -UTF8PROC_DLLEXPORT utf8proc_category_t utf8proc_category(utf8proc_int32_t c) {utf8proc_category289,10480 -UTF8PROC_DLLEXPORT const char *utf8proc_category_string(utf8proc_int32_t c) {utf8proc_category_string293,10607 -#define utf8proc_decompose_lump(utf8proc_decompose_lump298,10904 -UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_decompose_char(utf8proc_int32_t uc, utf8proc_int32_t *dst, utf8proc_ssize_t bufsize, utf8proc_option_t options, int *last_boundclass) {utf8proc_decompose_char302,11067 -UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_decompose(utf8proc_decompose406,15257 -UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_reencode(utf8proc_int32_t *buffer, utf8proc_ssize_t length, utf8proc_option_t options) {utf8proc_reencode468,17541 -UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_map(utf8proc_map590,22137 -UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFD(const utf8proc_uint8_t *str) {utf8proc_NFD619,23037 -UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFC(const utf8proc_uint8_t *str) {utf8proc_NFC626,23261 -UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKD(const utf8proc_uint8_t *str) {utf8proc_NFKD633,23483 -UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKC(const utf8proc_uint8_t *str) {utf8proc_NFKC640,23726 - -utf8proc/utf8proc.h,13311 -#define UTF8PROC_HUTF8PROC_H53,2687 -#define UTF8PROC_VERSION_MAJOR UTF8PROC_VERSION_MAJOR70,3305 -#define UTF8PROC_VERSION_MINOR UTF8PROC_VERSION_MINOR72,3448 -#define UTF8PROC_VERSION_PATCH UTF8PROC_VERSION_PATCH74,3556 -typedef signed char utf8proc_int8_t;utf8proc_int8_t80,3659 -typedef unsigned char utf8proc_uint8_t;utf8proc_uint8_t81,3696 -typedef short utf8proc_int16_t;utf8proc_int16_t82,3736 -typedef unsigned short utf8proc_uint16_t;utf8proc_uint16_t83,3768 -typedef int utf8proc_int32_t;utf8proc_int32_t84,3810 -typedef unsigned int utf8proc_uint32_t;utf8proc_uint32_t85,3840 -typedef __int64 utf8proc_ssize_t;utf8proc_ssize_t87,3897 -typedef unsigned __int64 utf8proc_size_t;utf8proc_size_t88,3931 -typedef int utf8proc_ssize_t;utf8proc_ssize_t90,3981 -typedef unsigned int utf8proc_size_t;utf8proc_size_t91,4011 -typedef unsigned char utf8proc_bool;utf8proc_bool94,4080 -#define false false95,4117 -#define true true96,4133 -typedef bool utf8proc_bool;utf8proc_bool98,4156 -typedef int8_t utf8proc_int8_t;utf8proc_int8_t103,4246 -typedef uint8_t utf8proc_uint8_t;utf8proc_uint8_t104,4278 -typedef int16_t utf8proc_int16_t;utf8proc_int16_t105,4312 -typedef uint16_t utf8proc_uint16_t;utf8proc_uint16_t106,4346 -typedef int32_t utf8proc_int32_t;utf8proc_int32_t107,4382 -typedef uint32_t utf8proc_uint32_t;utf8proc_uint32_t108,4416 -typedef size_t utf8proc_size_t;utf8proc_size_t109,4452 -typedef ssize_t utf8proc_ssize_t;utf8proc_ssize_t110,4484 -typedef bool utf8proc_bool;utf8proc_bool111,4518 -# define UTF8PROC_DLLEXPORT UTF8PROC_DLLEXPORT117,4627 -# define UTF8PROC_DLLEXPORT UTF8PROC_DLLEXPORT119,4688 -# define UTF8PROC_DLLEXPORT UTF8PROC_DLLEXPORT122,4775 -# define UTF8PROC_DLLEXPORTUTF8PROC_DLLEXPORT124,4850 -#define SSIZE_MAX SSIZE_MAX132,4945 - UTF8PROC_NULLTERM = (1<<0),UTF8PROC_NULLTERM140,5124 - UTF8PROC_STABLE = (1<<1),UTF8PROC_STABLE142,5214 - UTF8PROC_COMPAT = (1<<2),UTF8PROC_COMPAT144,5321 - UTF8PROC_COMPOSE = (1<<3),UTF8PROC_COMPOSE146,5405 - UTF8PROC_DECOMPOSE = (1<<4),UTF8PROC_DECOMPOSE148,5489 - UTF8PROC_IGNORE = (1<<5),UTF8PROC_IGNORE150,5607 - UTF8PROC_REJECTNA = (1<<6),UTF8PROC_REJECTNA152,5709 - UTF8PROC_NLF2LS = (1<<7),UTF8PROC_NLF2LS158,5915 - UTF8PROC_NLF2PS = (1<<8),UTF8PROC_NLF2PS164,6111 - UTF8PROC_NLF2LF = (UTF8PROC_NLF2LS | UTF8PROC_NLF2PS),UTF8PROC_NLF2LF166,6208 - UTF8PROC_STRIPCC = (1<<9),UTF8PROC_STRIPCC174,6572 - UTF8PROC_CASEFOLD = (1<<10),UTF8PROC_CASEFOLD179,6711 - UTF8PROC_CHARBOUND = (1<<11),UTF8PROC_CHARBOUND184,6880 - UTF8PROC_LUMP = (1<<12),UTF8PROC_LUMP192,7166 - UTF8PROC_STRIPMARK = (1<<13),UTF8PROC_STRIPMARK199,7415 -} utf8proc_option_t;utf8proc_option_t200,7447 -#define UTF8PROC_ERROR_NOMEM UTF8PROC_ERROR_NOMEM207,7598 -#define UTF8PROC_ERROR_OVERFLOW UTF8PROC_ERROR_OVERFLOW209,7683 -#define UTF8PROC_ERROR_INVALIDUTF8 UTF8PROC_ERROR_INVALIDUTF8211,7771 -#define UTF8PROC_ERROR_NOTASSIGNED UTF8PROC_ERROR_NOTASSIGNED213,7895 -#define UTF8PROC_ERROR_INVALIDOPTS UTF8PROC_ERROR_INVALIDOPTS215,7972 -typedef utf8proc_int16_t utf8proc_propval_t;utf8proc_propval_t221,8078 -typedef struct utf8proc_property_struct {utf8proc_property_struct224,8180 - utf8proc_propval_t category;category229,8288 - utf8proc_propval_t category;utf8proc_property_struct::category229,8288 - utf8proc_propval_t combining_class;combining_class230,8319 - utf8proc_propval_t combining_class;utf8proc_property_struct::combining_class230,8319 - utf8proc_propval_t bidi_class;bidi_class235,8428 - utf8proc_propval_t bidi_class;utf8proc_property_struct::bidi_class235,8428 - utf8proc_propval_t decomp_type;decomp_type240,8540 - utf8proc_propval_t decomp_type;utf8proc_property_struct::decomp_type240,8540 - const utf8proc_int32_t *decomp_mapping;decomp_mapping241,8574 - const utf8proc_int32_t *decomp_mapping;utf8proc_property_struct::decomp_mapping241,8574 - const utf8proc_int32_t *casefold_mapping;casefold_mapping242,8616 - const utf8proc_int32_t *casefold_mapping;utf8proc_property_struct::casefold_mapping242,8616 - utf8proc_int32_t uppercase_mapping;uppercase_mapping243,8660 - utf8proc_int32_t uppercase_mapping;utf8proc_property_struct::uppercase_mapping243,8660 - utf8proc_int32_t lowercase_mapping;lowercase_mapping244,8698 - utf8proc_int32_t lowercase_mapping;utf8proc_property_struct::lowercase_mapping244,8698 - utf8proc_int32_t titlecase_mapping;titlecase_mapping245,8736 - utf8proc_int32_t titlecase_mapping;utf8proc_property_struct::titlecase_mapping245,8736 - utf8proc_int32_t comb1st_index;comb1st_index246,8774 - utf8proc_int32_t comb1st_index;utf8proc_property_struct::comb1st_index246,8774 - utf8proc_int32_t comb2nd_index;comb2nd_index247,8808 - utf8proc_int32_t comb2nd_index;utf8proc_property_struct::comb2nd_index247,8808 - unsigned bidi_mirrored:1;bidi_mirrored248,8842 - unsigned bidi_mirrored:1;utf8proc_property_struct::bidi_mirrored248,8842 - unsigned comp_exclusion:1;comp_exclusion249,8870 - unsigned comp_exclusion:1;utf8proc_property_struct::comp_exclusion249,8870 - unsigned ignorable:1;ignorable256,9049 - unsigned ignorable:1;utf8proc_property_struct::ignorable256,9049 - unsigned control_boundary:1;control_boundary257,9073 - unsigned control_boundary:1;utf8proc_property_struct::control_boundary257,9073 - unsigned boundclass:4;boundclass262,9166 - unsigned boundclass:4;utf8proc_property_struct::boundclass262,9166 - unsigned charwidth:2;charwidth264,9228 - unsigned charwidth:2;utf8proc_property_struct::charwidth264,9228 -} utf8proc_property_t;utf8proc_property_t265,9252 - UTF8PROC_CATEGORY_CN = 0, /**< Other, not assigned */UTF8PROC_CATEGORY_CN269,9318 - UTF8PROC_CATEGORY_LU = 1, /**< Letter, uppercase */UTF8PROC_CATEGORY_LU270,9375 - UTF8PROC_CATEGORY_LL = 2, /**< Letter, lowercase */UTF8PROC_CATEGORY_LL271,9430 - UTF8PROC_CATEGORY_LT = 3, /**< Letter, titlecase */UTF8PROC_CATEGORY_LT272,9485 - UTF8PROC_CATEGORY_LM = 4, /**< Letter, modifier */UTF8PROC_CATEGORY_LM273,9540 - UTF8PROC_CATEGORY_LO = 5, /**< Letter, other */UTF8PROC_CATEGORY_LO274,9594 - UTF8PROC_CATEGORY_MN = 6, /**< Mark, nonspacing */UTF8PROC_CATEGORY_MN275,9645 - UTF8PROC_CATEGORY_MC = 7, /**< Mark, spacing combining */UTF8PROC_CATEGORY_MC276,9699 - UTF8PROC_CATEGORY_ME = 8, /**< Mark, enclosing */UTF8PROC_CATEGORY_ME277,9760 - UTF8PROC_CATEGORY_ND = 9, /**< Number, decimal digit */UTF8PROC_CATEGORY_ND278,9813 - UTF8PROC_CATEGORY_NL = 10, /**< Number, letter */UTF8PROC_CATEGORY_NL279,9872 - UTF8PROC_CATEGORY_NO = 11, /**< Number, other */UTF8PROC_CATEGORY_NO280,9924 - UTF8PROC_CATEGORY_PC = 12, /**< Punctuation, connector */UTF8PROC_CATEGORY_PC281,9975 - UTF8PROC_CATEGORY_PD = 13, /**< Punctuation, dash */UTF8PROC_CATEGORY_PD282,10035 - UTF8PROC_CATEGORY_PS = 14, /**< Punctuation, open */UTF8PROC_CATEGORY_PS283,10090 - UTF8PROC_CATEGORY_PE = 15, /**< Punctuation, close */UTF8PROC_CATEGORY_PE284,10145 - UTF8PROC_CATEGORY_PI = 16, /**< Punctuation, initial quote */UTF8PROC_CATEGORY_PI285,10201 - UTF8PROC_CATEGORY_PF = 17, /**< Punctuation, final quote */UTF8PROC_CATEGORY_PF286,10265 - UTF8PROC_CATEGORY_PO = 18, /**< Punctuation, other */UTF8PROC_CATEGORY_PO287,10327 - UTF8PROC_CATEGORY_SM = 19, /**< Symbol, math */UTF8PROC_CATEGORY_SM288,10383 - UTF8PROC_CATEGORY_SC = 20, /**< Symbol, currency */UTF8PROC_CATEGORY_SC289,10433 - UTF8PROC_CATEGORY_SK = 21, /**< Symbol, modifier */UTF8PROC_CATEGORY_SK290,10487 - UTF8PROC_CATEGORY_SO = 22, /**< Symbol, other */UTF8PROC_CATEGORY_SO291,10541 - UTF8PROC_CATEGORY_ZS = 23, /**< Separator, space */UTF8PROC_CATEGORY_ZS292,10592 - UTF8PROC_CATEGORY_ZL = 24, /**< Separator, line */UTF8PROC_CATEGORY_ZL293,10646 - UTF8PROC_CATEGORY_ZP = 25, /**< Separator, paragraph */UTF8PROC_CATEGORY_ZP294,10699 - UTF8PROC_CATEGORY_CC = 26, /**< Other, control */UTF8PROC_CATEGORY_CC295,10757 - UTF8PROC_CATEGORY_CF = 27, /**< Other, format */UTF8PROC_CATEGORY_CF296,10809 - UTF8PROC_CATEGORY_CS = 28, /**< Other, surrogate */UTF8PROC_CATEGORY_CS297,10860 - UTF8PROC_CATEGORY_CO = 29, /**< Other, private use */UTF8PROC_CATEGORY_CO298,10914 -} utf8proc_category_t;utf8proc_category_t299,10970 - UTF8PROC_BIDI_CLASS_L = 1, /**< Left-to-Right */UTF8PROC_BIDI_CLASS_L303,11049 - UTF8PROC_BIDI_CLASS_LRE = 2, /**< Left-to-Right Embedding */UTF8PROC_BIDI_CLASS_LRE304,11104 - UTF8PROC_BIDI_CLASS_LRO = 3, /**< Left-to-Right Override */UTF8PROC_BIDI_CLASS_LRO305,11169 - UTF8PROC_BIDI_CLASS_R = 4, /**< Right-to-Left */UTF8PROC_BIDI_CLASS_R306,11233 - UTF8PROC_BIDI_CLASS_AL = 5, /**< Right-to-Left Arabic */UTF8PROC_BIDI_CLASS_AL307,11288 - UTF8PROC_BIDI_CLASS_RLE = 6, /**< Right-to-Left Embedding */UTF8PROC_BIDI_CLASS_RLE308,11350 - UTF8PROC_BIDI_CLASS_RLO = 7, /**< Right-to-Left Override */UTF8PROC_BIDI_CLASS_RLO309,11415 - UTF8PROC_BIDI_CLASS_PDF = 8, /**< Pop Directional Format */UTF8PROC_BIDI_CLASS_PDF310,11479 - UTF8PROC_BIDI_CLASS_EN = 9, /**< European Number */UTF8PROC_BIDI_CLASS_EN311,11543 - UTF8PROC_BIDI_CLASS_ES = 10, /**< European Separator */UTF8PROC_BIDI_CLASS_ES312,11600 - UTF8PROC_BIDI_CLASS_ET = 11, /**< European Number Terminator */UTF8PROC_BIDI_CLASS_ET313,11660 - UTF8PROC_BIDI_CLASS_AN = 12, /**< Arabic Number */UTF8PROC_BIDI_CLASS_AN314,11728 - UTF8PROC_BIDI_CLASS_CS = 13, /**< Common Number Separator */UTF8PROC_BIDI_CLASS_CS315,11783 - UTF8PROC_BIDI_CLASS_NSM = 14, /**< Nonspacing Mark */UTF8PROC_BIDI_CLASS_NSM316,11848 - UTF8PROC_BIDI_CLASS_BN = 15, /**< Boundary Neutral */UTF8PROC_BIDI_CLASS_BN317,11905 - UTF8PROC_BIDI_CLASS_B = 16, /**< Paragraph Separator */UTF8PROC_BIDI_CLASS_B318,11963 - UTF8PROC_BIDI_CLASS_S = 17, /**< Segment Separator */UTF8PROC_BIDI_CLASS_S319,12024 - UTF8PROC_BIDI_CLASS_WS = 18, /**< Whitespace */UTF8PROC_BIDI_CLASS_WS320,12083 - UTF8PROC_BIDI_CLASS_ON = 19, /**< Other Neutrals */UTF8PROC_BIDI_CLASS_ON321,12135 - UTF8PROC_BIDI_CLASS_LRI = 20, /**< Left-to-Right Isolate */UTF8PROC_BIDI_CLASS_LRI322,12191 - UTF8PROC_BIDI_CLASS_RLI = 21, /**< Right-to-Left Isolate */UTF8PROC_BIDI_CLASS_RLI323,12254 - UTF8PROC_BIDI_CLASS_FSI = 22, /**< First Strong Isolate */UTF8PROC_BIDI_CLASS_FSI324,12317 - UTF8PROC_BIDI_CLASS_PDI = 23, /**< Pop Directional Isolate */UTF8PROC_BIDI_CLASS_PDI325,12379 -} utf8proc_bidi_class_t;utf8proc_bidi_class_t326,12444 - UTF8PROC_DECOMP_TYPE_FONT = 1, /**< Font */UTF8PROC_DECOMP_TYPE_FONT330,12512 - UTF8PROC_DECOMP_TYPE_NOBREAK = 2, /**< Nobreak */UTF8PROC_DECOMP_TYPE_NOBREAK331,12563 - UTF8PROC_DECOMP_TYPE_INITIAL = 3, /**< Initial */UTF8PROC_DECOMP_TYPE_INITIAL332,12617 - UTF8PROC_DECOMP_TYPE_MEDIAL = 4, /**< Medial */UTF8PROC_DECOMP_TYPE_MEDIAL333,12671 - UTF8PROC_DECOMP_TYPE_FINAL = 5, /**< Final */UTF8PROC_DECOMP_TYPE_FINAL334,12724 - UTF8PROC_DECOMP_TYPE_ISOLATED = 6, /**< Isolated */UTF8PROC_DECOMP_TYPE_ISOLATED335,12776 - UTF8PROC_DECOMP_TYPE_CIRCLE = 7, /**< Circle */UTF8PROC_DECOMP_TYPE_CIRCLE336,12831 - UTF8PROC_DECOMP_TYPE_SUPER = 8, /**< Super */UTF8PROC_DECOMP_TYPE_SUPER337,12884 - UTF8PROC_DECOMP_TYPE_SUB = 9, /**< Sub */UTF8PROC_DECOMP_TYPE_SUB338,12936 - UTF8PROC_DECOMP_TYPE_VERTICAL = 10, /**< Vertical */UTF8PROC_DECOMP_TYPE_VERTICAL339,12986 - UTF8PROC_DECOMP_TYPE_WIDE = 11, /**< Wide */UTF8PROC_DECOMP_TYPE_WIDE340,13041 - UTF8PROC_DECOMP_TYPE_NARROW = 12, /**< Narrow */UTF8PROC_DECOMP_TYPE_NARROW341,13092 - UTF8PROC_DECOMP_TYPE_SMALL = 13, /**< Small */UTF8PROC_DECOMP_TYPE_SMALL342,13145 - UTF8PROC_DECOMP_TYPE_SQUARE = 14, /**< Square */UTF8PROC_DECOMP_TYPE_SQUARE343,13197 - UTF8PROC_DECOMP_TYPE_FRACTION = 15, /**< Fraction */UTF8PROC_DECOMP_TYPE_FRACTION344,13250 - UTF8PROC_DECOMP_TYPE_COMPAT = 16, /**< Compat */UTF8PROC_DECOMP_TYPE_COMPAT345,13305 -} utf8proc_decomp_type_t;utf8proc_decomp_type_t346,13358 - UTF8PROC_BOUNDCLASS_START = 0, /**< Start */UTF8PROC_BOUNDCLASS_START350,13428 - UTF8PROC_BOUNDCLASS_OTHER = 1, /**< Other */UTF8PROC_BOUNDCLASS_OTHER351,13489 - UTF8PROC_BOUNDCLASS_CR = 2, /**< Cr */UTF8PROC_BOUNDCLASS_CR352,13550 - UTF8PROC_BOUNDCLASS_LF = 3, /**< Lf */UTF8PROC_BOUNDCLASS_LF353,13608 - UTF8PROC_BOUNDCLASS_CONTROL = 4, /**< Control */UTF8PROC_BOUNDCLASS_CONTROL354,13666 - UTF8PROC_BOUNDCLASS_EXTEND = 5, /**< Extend */UTF8PROC_BOUNDCLASS_EXTEND355,13729 - UTF8PROC_BOUNDCLASS_L = 6, /**< L */UTF8PROC_BOUNDCLASS_L356,13791 - UTF8PROC_BOUNDCLASS_V = 7, /**< V */UTF8PROC_BOUNDCLASS_V357,13848 - UTF8PROC_BOUNDCLASS_T = 8, /**< T */UTF8PROC_BOUNDCLASS_T358,13905 - UTF8PROC_BOUNDCLASS_LV = 9, /**< Lv */UTF8PROC_BOUNDCLASS_LV359,13962 - UTF8PROC_BOUNDCLASS_LVT = 10, /**< Lvt */UTF8PROC_BOUNDCLASS_LVT360,14020 - UTF8PROC_BOUNDCLASS_REGIONAL_INDICATOR = 11, /**< Regional indicator */UTF8PROC_BOUNDCLASS_REGIONAL_INDICATOR361,14079 - UTF8PROC_BOUNDCLASS_SPACINGMARK = 12, /**< Spacingmark */UTF8PROC_BOUNDCLASS_SPACINGMARK362,14153 -} utf8proc_boundclass_t;utf8proc_boundclass_t363,14220 - -utf8proc/utf8proc_data.c,408 -const utf8proc_int32_t utf8proc_sequences[] = {utf8proc_sequences1,0 -const utf8proc_uint16_t utf8proc_stage1table[] = {utf8proc_stage1table1561,67889 -const utf8proc_uint16_t utf8proc_stage2table[] = {utf8proc_stage2table2108,99996 -const utf8proc_property_t utf8proc_properties[] = {utf8proc_properties6815,306368 -const utf8proc_int32_t utf8proc_combinations[] = {utf8proc_combinations13492,1484071 - -utils/analysis/graphs.yap,6404 -pl_graphs(Dir - Mod) :-pl_graphs2,1 -pl_graphs(Dir - Mod) :-pl_graphs2,1 -pl_graphs(Dir - Mod) :-pl_graphs2,1 -pl_graphs(_).pl_graphs18,482 -pl_graphs(_).pl_graphs18,482 -build_graph(F, Mod) :-build_graph29,1051 -build_graph(F, Mod) :-build_graph29,1051 -build_graph(F, Mod) :-build_graph29,1051 -get_graph( V , _F, _Pos, _M ) :-get_graph53,1779 -get_graph( V , _F, _Pos, _M ) :-get_graph53,1779 -get_graph( V , _F, _Pos, _M ) :-get_graph53,1779 -get_graph( T, _F, _Pos, _M0 ) :-get_graph57,1858 -get_graph( T, _F, _Pos, _M0 ) :-get_graph57,1858 -get_graph( T, _F, _Pos, _M0 ) :-get_graph57,1858 -get_graph( M:T, F, Pos, _M0 ) :- !,get_graph60,1904 -get_graph( M:T, F, Pos, _M0 ) :- !,get_graph60,1904 -get_graph( M:T, F, Pos, _M0 ) :- !,get_graph60,1904 -get_graph( ( M:H :- B), F, Pos, M0 ) :-get_graph63,2008 -get_graph( ( M:H :- B), F, Pos, M0 ) :-get_graph63,2008 -get_graph( ( M:H :- B), F, Pos, M0 ) :-get_graph63,2008 -get_graph( ( M:H --> B), F, Pos, M0 ) :-get_graph66,2096 -get_graph( ( M:H --> B), F, Pos, M0 ) :-get_graph66,2096 -get_graph( ( M:H --> B), F, Pos, M0 ) :-get_graph66,2096 -get_graph( ( A, _ --> B), F, Pos, M ) :-get_graph69,2187 -get_graph( ( A, _ --> B), F, Pos, M ) :-get_graph69,2187 -get_graph( ( A, _ --> B), F, Pos, M ) :-get_graph69,2187 -get_graph( (H --> B), F, Pos, M ) :-get_graph72,2276 -get_graph( (H --> B), F, Pos, M ) :-get_graph72,2276 -get_graph( (H --> B), F, Pos, M ) :-get_graph72,2276 -get_graph( (H :- B), F, Pos, M ) :-get_graph77,2403 -get_graph( (H :- B), F, Pos, M ) :-get_graph77,2403 -get_graph( (H :- B), F, Pos, M ) :-get_graph77,2403 -get_graph( (:-include( Fs ) ), F, _Pos, M ) :-get_graph82,2537 -get_graph( (:-include( Fs ) ), F, _Pos, M ) :-get_graph82,2537 -get_graph( (:-include( Fs ) ), F, _Pos, M ) :-get_graph82,2537 -get_graph( (?- _ ), _F, _Pos, _M ) :- !.get_graph85,2622 -get_graph( (?- _ ), _F, _Pos, _M ) :- !.get_graph85,2622 -get_graph( (?- _ ), _F, _Pos, _M ) :- !.get_graph85,2622 -get_graph( (:- _ ), _F, _Pos, _M ) :- !.get_graph86,2663 -get_graph( (:- _ ), _F, _Pos, _M ) :- !.get_graph86,2663 -get_graph( (:- _ ), _F, _Pos, _M ) :- !.get_graph86,2663 -get_graph( _H, _F, _Pos, _M ).get_graph87,2704 -get_graph( _H, _F, _Pos, _M ).get_graph87,2704 -source_graphs( M, F, Fs ) :-source_graphs89,2736 -source_graphs( M, F, Fs ) :-source_graphs89,2736 -source_graphs( M, F, Fs ) :-source_graphs89,2736 -source_graphs( M, F, Fs ) :-source_graphs91,2806 -source_graphs( M, F, Fs ) :-source_graphs91,2806 -source_graphs( M, F, Fs ) :-source_graphs91,2806 -add_deps(V, _M, _P, _F, _Pos, _) :-add_deps95,2894 -add_deps(V, _M, _P, _F, _Pos, _) :-add_deps95,2894 -add_deps(V, _M, _P, _F, _Pos, _) :-add_deps95,2894 -add_deps(M1:G, _M, _P, _F, _Pos,L) :-add_deps97,2942 -add_deps(M1:G, _M, _P, _F, _Pos,L) :-add_deps97,2942 -add_deps(M1:G, _M, _P, _F, _Pos,L) :-add_deps97,2942 -add_deps((A,B), M, P, F, _Pos, L) :-add_deps101,3056 -add_deps((A,B), M, P, F, _Pos, L) :-add_deps101,3056 -add_deps((A,B), M, P, F, _Pos, L) :-add_deps101,3056 -add_deps((A;B), M, P, F, _Pos, L) :- !,add_deps105,3161 -add_deps((A;B), M, P, F, _Pos, L) :- !,add_deps105,3161 -add_deps((A;B), M, P, F, _Pos, L) :- !,add_deps105,3161 -add_deps((A|B), M, P, F, _Pos, L) :- !,add_deps108,3265 -add_deps((A|B), M, P, F, _Pos, L) :- !,add_deps108,3265 -add_deps((A|B), M, P, F, _Pos, L) :- !,add_deps108,3265 -add_deps((A->B), M, P, F, _Pos, L) :- !,add_deps111,3369 -add_deps((A->B), M, P, F, _Pos, L) :- !,add_deps111,3369 -add_deps((A->B), M, P, F, _Pos, L) :- !,add_deps111,3369 -add_deps((A*->B), M, P, F, _Pos, L) :- !,add_deps114,3474 -add_deps((A*->B), M, P, F, _Pos, L) :- !,add_deps114,3474 -add_deps((A*->B), M, P, F, _Pos, L) :- !,add_deps114,3474 -add_deps(once(A), M, P, F, _Pos, L) :- !,add_deps117,3580 -add_deps(once(A), M, P, F, _Pos, L) :- !,add_deps117,3580 -add_deps(once(A), M, P, F, _Pos, L) :- !,add_deps117,3580 -add_deps({A}, M, P, F, _Pos, 2) :- !,add_deps119,3654 -add_deps({A}, M, P, F, _Pos, 2) :- !,add_deps119,3654 -add_deps({A}, M, P, F, _Pos, 2) :- !,add_deps119,3654 -add_deps([_|_], M, P, F, Pos, 2) :-add_deps121,3724 -add_deps([_|_], M, P, F, Pos, 2) :-add_deps121,3724 -add_deps([_|_], M, P, F, Pos, 2) :-add_deps121,3724 -add_deps(String, _M, _P, _F, _Pos, _) :- string(String), !.add_deps124,3812 -add_deps(String, _M, _P, _F, _Pos, _) :- string(String), !.add_deps124,3812 -add_deps(String, _M, _P, _F, _Pos, _) :- string(String), !.add_deps124,3812 -add_deps([], _M, _P, _F, _Pos, 2) :- !.add_deps125,3873 -add_deps([], _M, _P, _F, _Pos, 2) :- !.add_deps125,3873 -add_deps([], _M, _P, _F, _Pos, 2) :- !.add_deps125,3873 -add_deps(!, _M, _P, _F, _Pos, _) :- !.add_deps126,3913 -add_deps(!, _M, _P, _F, _Pos, _) :- !.add_deps126,3913 -add_deps(!, _M, _P, _F, _Pos, _) :- !.add_deps126,3913 -add_deps(true, _M, _P, _F, _Pos, 0) :- !.add_deps127,3952 -add_deps(true, _M, _P, _F, _Pos, 0) :- !.add_deps127,3952 -add_deps(true, _M, _P, _F, _Pos, 0) :- !.add_deps127,3952 -add_deps(false, _M, _P, _F, _Pos, 0) :- !.add_deps128,3994 -add_deps(false, _M, _P, _F, _Pos, 0) :- !.add_deps128,3994 -add_deps(false, _M, _P, _F, _Pos, 0) :- !.add_deps128,3994 -add_deps(fail, _M, _P, _F, _Pos, 0) :- !.add_deps129,4037 -add_deps(fail, _M, _P, _F, _Pos, 0) :- !.add_deps129,4037 -add_deps(fail, _M, _P, _F, _Pos, 0) :- !.add_deps129,4037 -add_deps(repeat, _M, _P, _F, _Pos, 0) :- !.add_deps130,4079 -add_deps(repeat, _M, _P, _F, _Pos, 0) :- !.add_deps130,4079 -add_deps(repeat, _M, _P, _F, _Pos, 0) :- !.add_deps130,4079 -add_deps(A, M, P, F, Pos, L) :-add_deps131,4123 -add_deps(A, M, P, F, Pos, L) :-add_deps131,4123 -add_deps(A, M, P, F, Pos, L) :-add_deps131,4123 -put_dep( (Target :- F0-G0 ), _Pos ) :-put_dep137,4298 -put_dep( (Target :- F0-G0 ), _Pos ) :-put_dep137,4298 -put_dep( (Target :- F0-G0 ), _Pos ) :-put_dep137,4298 -put_dep(_,_).put_dep141,4407 -put_dep(_,_).put_dep141,4407 -m_exists(P, F) :- private( F, P ), !.m_exists144,4505 -m_exists(P, F) :- private( F, P ), !.m_exists144,4505 -m_exists(P, F) :- private( F, P ), !.m_exists144,4505 -m_exists(P, F) :- public( F, P ).m_exists145,4543 -m_exists(P, F) :- public( F, P ).m_exists145,4543 -m_exists(P, F) :- public( F, P ).m_exists145,4543 -m_exists(P, F) :- public( F, P ).m_exists145,4543 -m_exists(P, F) :- public( F, P ).m_exists145,4543 - -utils/analysis/load.yap,24234 -load( D, _OMAP ) :-load7,190 -load( D, _OMAP ) :-load7,190 -load( D, _OMAP ) :-load7,190 -load( _, _Map ) :-load10,257 -load( _, _Map ) :-load10,257 -load( _, _Map ) :-load10,257 -load( _ , Dirs ) :-load14,423 -load( _ , Dirs ) :-load14,423 -load( _ , Dirs ) :-load14,423 -scan_dir( Dir -user) :-scan_dir23,680 -scan_dir( Dir -user) :-scan_dir23,680 -scan_dir( Dir -user) :-scan_dir23,680 -scan_dir( Dir -prolog) :-scan_dir28,854 -scan_dir( Dir -prolog) :-scan_dir28,854 -scan_dir( Dir -prolog) :-scan_dir28,854 -dirs( Roots ) :-dirs33,984 -dirs( Roots ) :-dirs33,984 -dirs( Roots ) :-dirs33,984 -dirs( _Roots ).dirs38,1106 -dirs( _Roots ).dirs38,1106 -rdir( FRoot ) :-rdir40,1123 -rdir( FRoot ) :-rdir40,1123 -rdir( FRoot ) :-rdir40,1123 -rdir(_).rdir54,1568 -rdir(_).rdir54,1568 -c_preds(Dir - Mod) :-c_preds56,1578 -c_preds(Dir - Mod) :-c_preds56,1578 -c_preds(Dir - Mod) :-c_preds56,1578 -c_preds(_).c_preds80,2184 -c_preds(_).c_preds80,2184 -c_file(F, _Mod) :-c_file83,2198 -c_file(F, _Mod) :-c_file83,2198 -c_file(F, _Mod) :-c_file83,2198 -c_file(F, Mod) :-c_file86,2241 -c_file(F, Mod) :-c_file86,2241 -c_file(F, Mod) :-c_file86,2241 -c_line(["}"], Mod, _) :- !,c_line109,2738 -c_line(["}"], Mod, _) :- !,c_line109,2738 -c_line(["}"], Mod, _) :- !,c_line109,2738 -c_line(Line, _Mod, _) :-c_line111,2802 -c_line(Line, _Mod, _) :-c_line111,2802 -c_line(Line, _Mod, _) :-c_line111,2802 -c_line(Line, Mod, F: LineP) :-c_line115,2941 -c_line(Line, Mod, F: LineP) :-c_line115,2941 -c_line(Line, Mod, F: LineP) :-c_line115,2941 -c_ext( S, Mod, F ) :-c_ext120,3075 -c_ext( S, Mod, F ) :-c_ext120,3075 -c_ext( S, Mod, F ) :-c_ext120,3075 -break_line( Line, N/A, c(Fu)) :-break_line153,3903 -break_line( Line, N/A, c(Fu)) :-break_line153,3903 -break_line( Line, N/A, c(Fu)) :-break_line153,3903 -break_line( Line, N/A, swi(Fu)) :-break_line158,4071 -break_line( Line, N/A, swi(Fu)) :-break_line158,4071 -break_line( Line, N/A, swi(Fu)) :-break_line158,4071 -break_line( Line, N/A, bp(Fu)) :-break_line164,4283 -break_line( Line, N/A, bp(Fu)) :-break_line164,4283 -break_line( Line, N/A, bp(Fu)) :-break_line164,4283 -break_line( Line, N/A, c(FuE, FuB)) :-break_line170,4488 -break_line( Line, N/A, c(FuE, FuB)) :-break_line170,4488 -break_line( Line, N/A, c(FuE, FuB)) :-break_line170,4488 -take_line( Line, NS, AS, FS ) :-take_line177,4652 -take_line( Line, NS, AS, FS ) :-take_line177,4652 -take_line( Line, NS, AS, FS ) :-take_line177,4652 -take_line( Line, NS, AS, FS ) :-take_line179,4741 -take_line( Line, NS, AS, FS ) :-take_line179,4741 -take_line( Line, NS, AS, FS ) :-take_line179,4741 -take_line( Line, NS, AS, FS ) :-take_line181,4835 -take_line( Line, NS, AS, FS ) :-take_line181,4835 -take_line( Line, NS, AS, FS ) :-take_line181,4835 -take_line( Line, NS, AS, FS ) :-take_line183,4926 -take_line( Line, NS, AS, FS ) :-take_line183,4926 -take_line( Line, NS, AS, FS ) :-take_line183,4926 -take_line( Line, NS, AS, FS ) :-take_line185,5017 -take_line( Line, NS, AS, FS ) :-take_line185,5017 -take_line( Line, NS, AS, FS ) :-take_line185,5017 -take_line( Line, NS, AS, FS ) :-take_line187,5111 -take_line( Line, NS, AS, FS ) :-take_line187,5111 -take_line( Line, NS, AS, FS ) :-take_line187,5111 -take_line( Line, NS0, AS, FS ) :-take_line190,5232 -take_line( Line, NS0, AS, FS ) :-take_line190,5232 -take_line( Line, NS0, AS, FS ) :-take_line190,5232 -take_line( Line, NS, AS, FS ) :-take_line193,5359 -take_line( Line, NS, AS, FS ) :-take_line193,5359 -take_line( Line, NS, AS, FS ) :-take_line193,5359 -take_line( Line, NS, AS, FS ) :-take_line195,5454 -take_line( Line, NS, AS, FS ) :-take_line195,5454 -take_line( Line, NS, AS, FS ) :-take_line195,5454 -take_line( Line, NS, AS, FS ) :-take_line198,5577 -take_line( Line, NS, AS, FS ) :-take_line198,5577 -take_line( Line, NS, AS, FS ) :-take_line198,5577 -take_line( Line, NS, AS, FS ) :-take_line201,5700 -take_line( Line, NS, AS, FS ) :-take_line201,5700 -take_line( Line, NS, AS, FS ) :-take_line201,5700 -take_line( Line, NS, AS, FS ) :-take_line203,5780 -take_line( Line, NS, AS, FS ) :-take_line203,5780 -take_line( Line, NS, AS, FS ) :-take_line203,5780 -take_line( Line, AS, FS ) :-take_line207,5861 -take_line( Line, AS, FS ) :-take_line207,5861 -take_line( Line, AS, FS ) :-take_line207,5861 -take_line( Line, NS, AS, FSE, FSB ) :-take_line211,5944 -take_line( Line, NS, AS, FSE, FSB ) :-take_line211,5944 -take_line( Line, NS, AS, FSE, FSB ) :-take_line211,5944 -system_mod("ATTRIBUTES_MODULE", _, attributes, user ).system_mod214,6053 -system_mod("ATTRIBUTES_MODULE", _, attributes, user ).system_mod214,6053 -system_mod("HACKS_MODULE", _, '$hacks' , sys ).system_mod215,6108 -system_mod("HACKS_MODULE", _, '$hacks' , sys ).system_mod215,6108 -system_mod("USER_MODULE", _, user, user ).system_mod216,6156 -system_mod("USER_MODULE", _, user, user ).system_mod216,6156 -system_mod("DBLOAD_MODULE", _, '$db_load', sys ).system_mod217,6199 -system_mod("DBLOAD_MODULE", _, '$db_load', sys ).system_mod217,6199 -system_mod("GLOBALS_MODULE", _, globals, sys ).system_mod218,6249 -system_mod("GLOBALS_MODULE", _, globals, sys ).system_mod218,6249 -system_mod("ARG_MODULE", _, arg, sys ).system_mod219,6297 -system_mod("ARG_MODULE", _, arg, sys ).system_mod219,6297 -system_mod("PROLOG_MODULE", _ , prolog, sys ).system_mod220,6338 -system_mod("PROLOG_MODULE", _ , prolog, sys ).system_mod220,6338 -system_mod("RANGE_MODULE", _, range, user ).system_mod221,6385 -system_mod("RANGE_MODULE", _, range, user ).system_mod221,6385 -system_mod("SWI_MODULE", _, swi, sys ).system_mod222,6430 -system_mod("SWI_MODULE", _, swi, sys ).system_mod222,6430 -system_mod("OPERATING_SYSTEM_MODULE", _, system , sys ).system_mod223,6470 -system_mod("OPERATING_SYSTEM_MODULE", _, system , sys ).system_mod223,6470 -system_mod("TERMS_MODULE", _, terms , sys).system_mod224,6527 -system_mod("TERMS_MODULE", _, terms , sys).system_mod224,6527 -system_mod("SYSTEM_MODULE", _, system, sys ).system_mod225,6571 -system_mod("SYSTEM_MODULE", _, system, sys ).system_mod225,6571 -system_mod("IDB_MODULE", _, idb, user ).system_mod226,6617 -system_mod("IDB_MODULE", _, idb, user ).system_mod226,6617 -system_mod("CHARSIO_MODULE", _, charsio, sys ).system_mod227,6658 -system_mod("CHARSIO_MODULE", _, charsio, sys ).system_mod227,6658 -system_mod("cm", M, M, user ).system_mod228,6706 -system_mod("cm", M, M, user ).system_mod228,6706 -call_c_files( File, Mod, _Fun, [CFile] ) :-call_c_files230,6738 -call_c_files( File, Mod, _Fun, [CFile] ) :-call_c_files230,6738 -call_c_files( File, Mod, _Fun, [CFile] ) :-call_c_files230,6738 -call_c_files( File, Mod, _Fun, CFile ) :-call_c_files233,6835 -call_c_files( File, Mod, _Fun, CFile ) :-call_c_files233,6835 -call_c_files( File, Mod, _Fun, CFile ) :-call_c_files233,6835 -:- dynamic undo/3.dynamic240,6951 -:- dynamic undo/3.dynamic240,6951 -directive(G, F, M) :-directive242,6971 -directive(G, F, M) :-directive242,6971 -directive(G, F, M) :-directive242,6971 -directive(set_prolog_flag(Fl,V), F, M) :-directive245,7017 -directive(set_prolog_flag(Fl,V), F, M) :-directive245,7017 -directive(set_prolog_flag(Fl,V), F, M) :-directive245,7017 -directive(yap_flag(Fl,V), F, M) :-directive250,7185 -directive(yap_flag(Fl,V), F, M) :-directive250,7185 -directive(yap_flag(Fl,V), F, M) :-directive250,7185 -directive(yap_flag(Fl,O,V), F, M) :-directive255,7346 -directive(yap_flag(Fl,O,V), F, M) :-directive255,7346 -directive(yap_flag(Fl,O,V), F, M) :-directive255,7346 -directive(op(X,Y,O), _F, M) :-directive260,7509 -directive(op(X,Y,O), _F, M) :-directive260,7509 -directive(op(X,Y,O), _F, M) :-directive260,7509 -directive(G, F, M) :-directive263,7571 -directive(G, F, M) :-directive263,7571 -directive(G, F, M) :-directive263,7571 -clean_up(F, M) :-clean_up267,7654 -clean_up(F, M) :-clean_up267,7654 -clean_up(F, M) :-clean_up267,7654 -clean_up(_,_).clean_up271,7718 -clean_up(_,_).clean_up271,7718 -pl_interfs(Lev0, Dir - Mod) :-pl_interfs277,7742 -pl_interfs(Lev0, Dir - Mod) :-pl_interfs277,7742 -pl_interfs(Lev0, Dir - Mod) :-pl_interfs277,7742 -pl_interfs(_, _).pl_interfs299,8434 -pl_interfs(_, _).pl_interfs299,8434 -pl_interface(F, Mod, _Lev) :-pl_interface309,8788 -pl_interface(F, Mod, _Lev) :-pl_interface309,8788 -pl_interface(F, Mod, _Lev) :-pl_interface309,8788 -pl_interface(F, Mod, _) :-pl_interface313,8890 -pl_interface(F, Mod, _) :-pl_interface313,8890 -pl_interface(F, Mod, _) :-pl_interface313,8890 -pl_interface(F, Mod, Lev) :-pl_interface316,8942 -pl_interface(F, Mod, Lev) :-pl_interface316,8942 -pl_interface(F, Mod, Lev) :-pl_interface316,8942 -get_interface( T, _F, _M0, _ ) :-get_interface367,10428 -get_interface( T, _F, _M0, _ ) :-get_interface367,10428 -get_interface( T, _F, _M0, _ ) :-get_interface367,10428 -get_interface( (:- D ), F, M , Lev) :-get_interface372,10550 -get_interface( (:- D ), F, M , Lev) :-get_interface372,10550 -get_interface( (:- D ), F, M , Lev) :-get_interface372,10550 -get_interface( (?- _ ), _F, _M , _Lev) :-get_interface375,10632 -get_interface( (?- _ ), _F, _M , _Lev) :-get_interface375,10632 -get_interface( (?- _ ), _F, _M , _Lev) :-get_interface375,10632 -get_interface( T, F, M0 , _Lev) :-get_interface377,10681 -get_interface( T, F, M0 , _Lev) :-get_interface377,10681 -get_interface( T, F, M0 , _Lev) :-get_interface377,10681 -get_interface( ( M:H :- _B), F, _M , _Lev) :-get_interface386,10947 -get_interface( ( M:H :- _B), F, _M , _Lev) :-get_interface386,10947 -get_interface( ( M:H :- _B), F, _M , _Lev) :-get_interface386,10947 -get_interface( (H :- _B), F, M , _Lev) :-get_interface391,11065 -get_interface( (H :- _B), F, M , _Lev) :-get_interface391,11065 -get_interface( (H :- _B), F, M , _Lev) :-get_interface391,11065 -get_interface( G , F, M , _Lev) :-get_interface395,11162 -get_interface( G , F, M , _Lev) :-get_interface395,11162 -get_interface( G , F, M , _Lev) :-get_interface395,11162 -get_directive( V , _F, _M , _Lev) :-get_directive399,11246 -get_directive( V , _F, _M , _Lev) :-get_directive399,11246 -get_directive( V , _F, _M , _Lev) :-get_directive399,11246 -get_directive( module( NM0, Is ), F, _M , _Lev) :-get_directive402,11298 -get_directive( module( NM0, Is ), F, _M , _Lev) :-get_directive402,11298 -get_directive( module( NM0, Is ), F, _M , _Lev) :-get_directive402,11298 -get_directive( use_module( Loc, Is ), F, M , Lev) :-get_directive432,12134 -get_directive( use_module( Loc, Is ), F, M , Lev) :-get_directive432,12134 -get_directive( use_module( Loc, Is ), F, M , Lev) :-get_directive432,12134 -get_directive( use_module( Loc ), F, M , Lev) :-get_directive435,12237 -get_directive( use_module( Loc ), F, M , Lev) :-get_directive435,12237 -get_directive( use_module( Loc ), F, M , Lev) :-get_directive435,12237 -get_directive( use_module( Loc, Is, _ ), F, M , Lev) :-get_directive439,12388 -get_directive( use_module( Loc, Is, _ ), F, M , Lev) :-get_directive439,12388 -get_directive( use_module( Loc, Is, _ ), F, M , Lev) :-get_directive439,12388 -get_directive( consult( Files ), F, M , Lev) :-get_directive442,12492 -get_directive( consult( Files ), F, M , Lev) :-get_directive442,12492 -get_directive( consult( Files ), F, M , Lev) :-get_directive442,12492 -get_directive( reconsult( Files ), F, M , Lev) :-get_directive445,12589 -get_directive( reconsult( Files ), F, M , Lev) :-get_directive445,12589 -get_directive( reconsult( Files ), F, M , Lev) :-get_directive445,12589 -get_directive( ensure_loaded( Files ), F, M , Lev) :-get_directive448,12688 -get_directive( ensure_loaded( Files ), F, M , Lev) :-get_directive448,12688 -get_directive( ensure_loaded( Files ), F, M , Lev) :-get_directive448,12688 -get_directive( include( Files ), F, M , Lev) :-get_directive451,12791 -get_directive( include( Files ), F, M , Lev) :-get_directive451,12791 -get_directive( include( Files ), F, M , Lev) :-get_directive451,12791 -get_directive( load_files( Files , [_|_] ), F, M , Lev) :-get_directive454,12889 -get_directive( load_files( Files , [_|_] ), F, M , Lev) :-get_directive454,12889 -get_directive( load_files( Files , [_|_] ), F, M , Lev) :-get_directive454,12889 -get_directive( bootstrap( Files ), F, M , Lev) :-get_directive457,12998 -get_directive( bootstrap( Files ), F, M , Lev) :-get_directive457,12998 -get_directive( bootstrap( Files ), F, M , Lev) :-get_directive457,12998 -get_directive( ( G -> _ ; _ ) , F, M, Lev) :-get_directive460,13097 -get_directive( ( G -> _ ; _ ) , F, M, Lev) :-get_directive460,13097 -get_directive( ( G -> _ ; _ ) , F, M, Lev) :-get_directive460,13097 -get_directive( catch( G , _, _ ) , F, M, Lev) :-get_directive463,13189 -get_directive( catch( G , _, _ ) , F, M, Lev) :-get_directive463,13189 -get_directive( catch( G , _, _ ) , F, M, Lev) :-get_directive463,13189 -get_directive( initialization( G , now ) , F, M, Lev) :-get_directive466,13282 -get_directive( initialization( G , now ) , F, M, Lev) :-get_directive466,13282 -get_directive( initialization( G , now ) , F, M, Lev) :-get_directive466,13282 -get_directive( load_files( Files , [_|_] ), F, M , Lev) :-get_directive469,13382 -get_directive( load_files( Files , [_|_] ), F, M , Lev) :-get_directive469,13382 -get_directive( load_files( Files , [_|_] ), F, M , Lev) :-get_directive469,13382 -get_directive( [] , _F0, _M , _Lev) :- !.get_directive472,13489 -get_directive( [] , _F0, _M , _Lev) :- !.get_directive472,13489 -get_directive( [] , _F0, _M , _Lev) :- !.get_directive472,13489 -get_directive( [F1|Fs] , F, M , Lev) :-get_directive473,13531 -get_directive( [F1|Fs] , F, M , Lev) :-get_directive473,13531 -get_directive( [F1|Fs] , F, M , Lev) :-get_directive473,13531 -get_directive( load_foreign_files(Fs, _, Fun), F, M , _Lev) :-get_directive479,13720 -get_directive( load_foreign_files(Fs, _, Fun), F, M , _Lev) :-get_directive479,13720 -get_directive( load_foreign_files(Fs, _, Fun), F, M , _Lev) :-get_directive479,13720 -get_directive( load_foreign_library(F), F0, M , _Lev) :-get_directive482,13827 -get_directive( load_foreign_library(F), F0, M , _Lev) :-get_directive482,13827 -get_directive( load_foreign_library(F), F0, M , _Lev) :-get_directive482,13827 -get_directive( load_foreign_library(F,Fun), F0, M , _Lev) :-get_directive486,13967 -get_directive( load_foreign_library(F,Fun), F0, M , _Lev) :-get_directive486,13967 -get_directive( load_foreign_library(F,Fun), F0, M , _Lev) :-get_directive486,13967 -get_directive( use_foreign_library(F), F0, M , _Lev) :-get_directive490,14112 -get_directive( use_foreign_library(F), F0, M , _Lev) :-get_directive490,14112 -get_directive( use_foreign_library(F), F0, M , _Lev) :-get_directive490,14112 -get_directive( system_module( _NM, _Publics, _Hiddens), _F, _M , _Lev) :-get_directive494,14246 -get_directive( system_module( _NM, _Publics, _Hiddens), _F, _M , _Lev) :-get_directive494,14246 -get_directive( system_module( _NM, _Publics, _Hiddens), _F, _M , _Lev) :-get_directive494,14246 -get_directive( style_checker( _ ), _F, _M , _Lev) :-get_directive497,14368 -get_directive( style_checker( _ ), _F, _M , _Lev) :-get_directive497,14368 -get_directive( style_checker( _ ), _F, _M , _Lev) :-get_directive497,14368 -get_directive( dynamic( T ), F, M , _Lev) :-get_directive499,14428 -get_directive( dynamic( T ), F, M , _Lev) :-get_directive499,14428 -get_directive( dynamic( T ), F, M , _Lev) :-get_directive499,14428 -get_directive( multifile( T ), F, M , _Lev) :- % public?get_directive502,14513 -get_directive( multifile( T ), F, M , _Lev) :- % public?get_directive502,14513 -get_directive( multifile( T ), F, M , _Lev) :- % public?get_directive502,14513 -get_directive( meta_predicate( T ), F, M , _Lev) :-!,get_directive505,14610 -get_directive( meta_predicate( T ), F, M , _Lev) :-!,get_directive505,14610 -get_directive( meta_predicate( T ), F, M , _Lev) :-!,get_directive505,14610 -get_directive( '$install_meta_predicate'( H, M), F, __M , _Lev) :-get_directive508,14711 -get_directive( '$install_meta_predicate'( H, M), F, __M , _Lev) :-get_directive508,14711 -get_directive( '$install_meta_predicate'( H, M), F, __M , _Lev) :-get_directive508,14711 -get_directive( thread_local( T ), F, M , _Lev) :-get_directive511,14818 -get_directive( thread_local( T ), F, M , _Lev) :-get_directive511,14818 -get_directive( thread_local( T ), F, M , _Lev) :-get_directive511,14818 -get_directive( op( X, Y, Z), _F, M , _Lev) :-get_directive514,14908 -get_directive( op( X, Y, Z), _F, M , _Lev) :-get_directive514,14908 -get_directive( op( X, Y, Z), _F, M , _Lev) :-get_directive514,14908 -get_directive( record( Records ), F, M , _Lev) :-get_directive517,14984 -get_directive( record( Records ), F, M , _Lev) :-get_directive517,14984 -get_directive( record( Records ), F, M , _Lev) :-get_directive517,14984 -get_directive( set_prolog_flag(dollar_as_lower_case,On), F, M , _Lev) :-get_directive520,15076 -get_directive( set_prolog_flag(dollar_as_lower_case,On), F, M , _Lev) :-get_directive520,15076 -get_directive( set_prolog_flag(dollar_as_lower_case,On), F, M , _Lev) :-get_directive520,15076 -handle_record( (Records1, Records2), F, M ) :-handle_record525,15286 -handle_record( (Records1, Records2), F, M ) :-handle_record525,15286 -handle_record( (Records1, Records2), F, M ) :-handle_record525,15286 -handle_record( Record, F, M ) :-handle_record529,15405 -handle_record( Record, F, M ) :-handle_record529,15405 -handle_record( Record, F, M ) :-handle_record529,15405 -handle_record_field( Constructor, F, M, Name:_=_ ) :-handle_record_field547,16031 -handle_record_field( Constructor, F, M, Name:_=_ ) :-handle_record_field547,16031 -handle_record_field( Constructor, F, M, Name:_=_ ) :-handle_record_field547,16031 -handle_record_field( Constructor, F, M, Name:_ ) :-handle_record_field550,16142 -handle_record_field( Constructor, F, M, Name:_ ) :-handle_record_field550,16142 -handle_record_field( Constructor, F, M, Name:_ ) :-handle_record_field550,16142 -handle_record_field( Constructor, F, M, Name=_ ) :-handle_record_field553,16251 -handle_record_field( Constructor, F, M, Name=_ ) :-handle_record_field553,16251 -handle_record_field( Constructor, F, M, Name=_ ) :-handle_record_field553,16251 -handle_record_field( Constructor, F, M, Name ) :-handle_record_field556,16360 -handle_record_field( Constructor, F, M, Name ) :-handle_record_field556,16360 -handle_record_field( Constructor, F, M, Name ) :-handle_record_field556,16360 -handle_record_field_name( Constructor, F, M, Name) :-handle_record_field_name559,16464 -handle_record_field_name( Constructor, F, M, Name) :-handle_record_field_name559,16464 -handle_record_field_name( Constructor, F, M, Name) :-handle_record_field_name559,16464 -handle_pred( M, N, A, F ) :-handle_pred569,16824 -handle_pred( M, N, A, F ) :-handle_pred569,16824 -handle_pred( M, N, A, F ) :-handle_pred569,16824 -exported( _NF, _F, NM, M, op(X,Y,Z)) :-exported589,17083 -exported( _NF, _F, NM, M, op(X,Y,Z)) :-exported589,17083 -exported( _NF, _F, NM, M, op(X,Y,Z)) :-exported589,17083 -exported( NF, F, NM, M, N/A) :- !,exported592,17150 -exported( NF, F, NM, M, N/A) :- !,exported592,17150 -exported( NF, F, NM, M, N/A) :- !,exported592,17150 -exported( NF, F, NM, M, N/A as NN) :- !,exported595,17244 -exported( NF, F, NM, M, N/A as NN) :- !,exported595,17244 -exported( NF, F, NM, M, N/A as NN) :- !,exported595,17244 -exported( NF, F, NM, M, N//A) :- !,exported598,17344 -exported( NF, F, NM, M, N//A) :- !,exported598,17344 -exported( NF, F, NM, M, N//A) :- !,exported598,17344 -exported( NF, F, NM, M, N//A as NN) :- !,exported602,17452 -exported( NF, F, NM, M, N//A as NN) :- !,exported602,17452 -exported( NF, F, NM, M, N//A as NN) :- !,exported602,17452 -include_files0( F, M, Lev, Files ) :-include_files0609,17572 -include_files0( F, M, Lev, Files ) :-include_files0609,17572 -include_files0( F, M, Lev, Files ) :-include_files0609,17572 -include_files( F, M, Is, Lev, Files ) :-include_files612,17652 -include_files( F, M, Is, Lev, Files ) :-include_files612,17652 -include_files( F, M, Is, Lev, Files ) :-include_files612,17652 -include_files( F, M, Is, Lev, -Files ) :-include_files615,17748 -include_files( F, M, Is, Lev, -Files ) :-include_files615,17748 -include_files( F, M, Is, Lev, -Files ) :-include_files615,17748 -include_files( F, M, Is, Lev, Files ) :-include_files618,17834 -include_files( F, M, Is, Lev, Files ) :-include_files618,17834 -include_files( F, M, Is, Lev, Files ) :-include_files618,17834 -include_file( F, M, Is, Lev, Loc ) :-include_file623,17964 -include_file( F, M, Is, Lev, Loc ) :-include_file623,17964 -include_file( F, M, Is, Lev, Loc ) :-include_file623,17964 -include_file( F, M, Is0, Lev, Loc ) :-include_file626,18069 -include_file( F, M, Is0, Lev, Loc ) :-include_file626,18069 -include_file( F, M, Is0, Lev, Loc ) :-include_file626,18069 -source_files( F, M, Lev, Files ) :-source_files649,18605 -source_files( F, M, Lev, Files ) :-source_files649,18605 -source_files( F, M, Lev, Files ) :-source_files649,18605 -source_files( F, M, Lev, Loc ) :-source_files652,18691 -source_files( F, M, Lev, Loc ) :-source_files652,18691 -source_files( F, M, Lev, Loc ) :-source_files652,18691 -source_file( F, M, Loc, Lev ) :-source_file655,18758 -source_file( F, M, Loc, Lev ) :-source_file655,18758 -source_file( F, M, Loc, Lev ) :-source_file655,18758 -pl_source(F, F0, Mod, Lev) :-pl_source660,18904 -pl_source(F, F0, Mod, Lev) :-pl_source660,18904 -pl_source(F, F0, Mod, Lev) :-pl_source660,18904 -declare_functors( T, _F, _M1) :- var(T), !,declare_functors685,19639 -declare_functors( T, _F, _M1) :- var(T), !,declare_functors685,19639 -declare_functors( T, _F, _M1) :- var(T), !,declare_functors685,19639 -declare_functors( M:T, F, _M1) :- !,declare_functors687,19712 -declare_functors( M:T, F, _M1) :- !,declare_functors687,19712 -declare_functors( M:T, F, _M1) :- !,declare_functors687,19712 -declare_functors( (T1,T2), F, M1) :- !,declare_functors689,19779 -declare_functors( (T1,T2), F, M1) :- !,declare_functors689,19779 -declare_functors( (T1,T2), F, M1) :- !,declare_functors689,19779 -declare_functors( Ts, F, M1) :-declare_functors692,19882 -declare_functors( Ts, F, M1) :-declare_functors692,19882 -declare_functors( Ts, F, M1) :-declare_functors692,19882 -declare_functors( T, F, M1) :-declare_functors694,19958 -declare_functors( T, F, M1) :-declare_functors694,19958 -declare_functors( T, F, M1) :-declare_functors694,19958 -declare_functor(File, M, N/A) :-declare_functor697,20019 -declare_functor(File, M, N/A) :-declare_functor697,20019 -declare_functor(File, M, N/A) :-declare_functor697,20019 -declare_terms( T, _F, _M1) :- var(T), !,declare_terms700,20084 -declare_terms( T, _F, _M1) :- var(T), !,declare_terms700,20084 -declare_terms( T, _F, _M1) :- var(T), !,declare_terms700,20084 -declare_terms( M:T, F, _M1) :- !,declare_terms702,20154 -declare_terms( M:T, F, _M1) :- !,declare_terms702,20154 -declare_terms( M:T, F, _M1) :- !,declare_terms702,20154 -declare_terms( (N1,N2), F, M) :-declare_terms704,20218 -declare_terms( (N1,N2), F, M) :-declare_terms704,20218 -declare_terms( (N1,N2), F, M) :-declare_terms704,20218 -declare_terms( (T1,T2), F, M1) :- !,declare_terms709,20313 -declare_terms( (T1,T2), F, M1) :- !,declare_terms709,20313 -declare_terms( (T1,T2), F, M1) :- !,declare_terms709,20313 -declare_terms( Ts, F, M1) :-declare_terms712,20407 -declare_terms( Ts, F, M1) :-declare_terms712,20407 -declare_terms( Ts, F, M1) :-declare_terms712,20407 -declare_terms( T, F, M1) :-declare_terms714,20477 -declare_terms( T, F, M1) :-declare_terms714,20477 -declare_terms( T, F, M1) :-declare_terms714,20477 -declare_term(F, M, S) :-declare_term717,20532 -declare_term(F, M, S) :-declare_term717,20532 -declare_term(F, M, S) :-declare_term717,20532 -handle(Line, Error ) :-handle721,20605 -handle(Line, Error ) :-handle721,20605 -handle(Line, Error ) :-handle721,20605 - -utils/analysis/undefs.yap,379 -find_undefs :-find_undefs2,1 -pmodule(M) :-pmodule14,291 -pmodule(M) :-pmodule14,291 -pmodule(M) :-pmodule14,291 -called_in_module(M, P) :-called_in_module19,381 -called_in_module(M, P) :-called_in_module19,381 -called_in_module(M, P) :-called_in_module19,381 -undef_in_m(M,P) :-undef_in_m24,487 -undef_in_m(M,P) :-undef_in_m24,487 -undef_in_m(M,P) :-undef_in_m24,487 - -utils/sysgraph,134 - root(D),D76,1460 -% maplist(distribute(D), Dirs, Paths),Dirs77,1473 -% maplist(distribute(D), Dirs, Paths),Paths77,1473 - -utils/tmp/foreigns.c,0 - -utils/tmp/foreigns.yap,0 - -x.py,33 -import yap_kernelyap_kernel1,0 - -x.yap,0 +A pl/boot.yap 307 +A pl/boot.yap 307 +A pl/boot.yap 307 +A pl/boot.yap 1242 +B pl/boot.yap 713 +B pl/boot.yap 1458 +BreakLevel pl/boot.yap 1641 +C pl/boot.yap 611 +C pl/boot.yap 879 +C pl/boot.yap 884 +C pl/boot.yap 895 +C pl/boot.yap 900 +C pl/boot.yap 1518 +C pl/boot.yap 1580 +CP pl/boot.yap 1198 +CP0 pl/boot.yap 1568 +CP1 pl/boot.yap 1570 +Command pl/boot.yap 656 +Command pl/boot.yap 1369 +Command pl/boot.yap 1373 +Command pl/boot.yap 1378 +Con pl/boot.yap 611 +DBON pl/boot.yap 1659 +E pl/boot.yap 1585 +Expanded pl/boot.yap 1483 +ExpandedF pl/boot.yap 1526 +First pl/boot.yap 981 +First pl/boot.yap 1006 +First pl/boot.yap 1012 +G pl/boot.yap 992 +G pl/boot.yap 1197 +G0 pl/boot.yap 1205 +G1 pl/boot.yap 706 +GVL pl/boot.yap 1027 +Goal pl/boot.yap 1390 +IVs pl/boot.yap 815 +LD pl/boot.yap 1656 +LD pl/boot.yap 1665 +LD pl/boot.yap 1668 +LF pl/boot.yap 1645 +LGs pl/boot.yap 817 +LI pl/boot.yap 937 +LP pl/boot.yap 1675 +M pl/boot.yap 798 +M pl/boot.yap 799 +M pl/boot.yap 1018 +M pl/boot.yap 1157 +M pl/boot.yap 1163 +M pl/boot.yap 1174 +M pl/boot.yap 1175 +M pl/boot.yap 1178 +M pl/boot.yap 1182 +M pl/boot.yap 1186 +M pl/boot.yap 1214 +M pl/boot.yap 1223 +M pl/boot.yap 1229 +M pl/boot.yap 1244 +M pl/boot.yap 1252 +M pl/boot.yap 1267 +M pl/boot.yap 1630 +MG pl/boot.yap 1569 +Mod pl/boot.yap 727 +NG pl/boot.yap 1289 +NLAnsw pl/boot.yap 920 +NVs pl/boot.yap 816 +Names pl/boot.yap 936 +O pl/boot.yap 662 +OPT pl/boot.yap 771 +OldModule pl/boot.yap 1341 +OldModule pl/boot.yap 1350 +OldModule pl/boot.yap 1358 +OldModule pl/boot.yap 1367 +Options pl/boot.yap 1412 +Prolog pl/boot.yap 697 +RI pl/boot.yap 726 +Ref pl/boot.yap 758 +S pl/boot.yap 265 +Setup pl/boot.yap 1440 +Source pl/boot.yap 685 +Source pl/boot.yap 688 +Status pl/boot.yap 1361 +Task0 pl/boot.yap 1444 +V pl/boot.yap 1033 +VL pl/boot.yap 983 +VL0 pl/boot.yap 1026 +Value pl/boot.yap 943 +Varnames pl/boot.yap 523 +W pl/boot.yap 454 +Where pl/boot.yap 718 +Where pl/boot.yap 733 +Written pl/boot.yap 801 +X pl/boot.yap 750 +X pl/boot.yap 760 +Y pl/boot.yap 1225 +Y pl/boot.yap 1233 +_ pl/boot.yap 460 +_ pl/boot.yap 546 +_ pl/boot.yap 603 +_ pl/boot.yap 748 +_ pl/boot.yap 800 +_ pl/boot.yap 1629 +_R pl/boot.yap 1403 +_Ref pl/boot.yap 604 +ball pl/boot.yap 1534 +catch pl/boot.yap 1558 +consult pl/boot.yap 1321 +error pl/boot.yap 430 +fail pl/boot.yap 630 +fail pl/boot.yap 655 +fail pl/boot.yap 792 +flush_output pl/boot.yap 520 +flush_output pl/boot.yap 860 +flush_output pl/boot.yap 917 +goals pl/boot.yap 856 +off pl/boot.yap 435 +off pl/boot.yap 437 +off pl/boot.yap 438 +on pl/boot.yap 382 +place pl/boot.yap 698 +prolog pl/boot.yap 441 +prolog pl/boot.yap 1323 +repeat pl/boot.yap 1342 +repeat pl/boot.yap 1351 +repeat pl/boot.yap 1357 +repeat pl/boot.yap 1366 +start_low_level_trace pl/boot.yap 365 +streams pl/boot.yap 855 +support pl/boot.yap 821 +top pl/boot.yap 660 +top pl/boot.yap 673 +true pl/boot.yap 363 +true pl/boot.yap 374 +true pl/boot.yap 383 +true pl/boot.yap 383 +true pl/boot.yap 434 +true pl/boot.yap 720 +true pl/boot.yap 865 +true pl/boot.yap 1286 +true pl/boot.yap 1481 +user_error pl/boot.yap 908 +user_input pl/boot.yap 874 diff --git a/cmake/Sources.cmake b/cmake/Sources.cmake index 977803d63..6588c25c0 100644 --- a/cmake/Sources.cmake +++ b/cmake/Sources.cmake @@ -131,7 +131,6 @@ BEAM/beam.h ${CMAKE_SOURCE_DIR}/H/YapOpcodes.h ${CMAKE_SOURCE_DIR}/H/YapSignals.h ${CMAKE_SOURCE_DIR}/H/YapTags.h - ${CMAKE_SOURCE_DIR}/H/YapTerm.h ${CMAKE_SOURCE_DIR}/H/YapText.h ${CMAKE_SOURCE_DIR}/H/Yapproto.h ${CMAKE_SOURCE_DIR}/H/Yatom.h @@ -206,6 +205,7 @@ set (INCLUDE_HEADERS ${CMAKE_SOURCE_DIR}/include/YapInterface.h ${CMAKE_SOURCE_DIR}/include/YapRegs.h ${CMAKE_SOURCE_DIR}/include/YapStreams.h + ${CMAKE_SOURCE_DIR}/include/YapTerm.h ${CMAKE_SOURCE_DIR}/include/blobs.h ${CMAKE_SOURCE_DIR}/include/c_interface.h ${CMAKE_SOURCE_DIR}/include/clause_list.h diff --git a/config.h.cmake b/config.h.cmake index cfce8fbc6..0581f658a 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -1,4 +1,5 @@ + /*-------------------------------------------------------------------------- * This file is autogenerated from config.h.in * during the cmake configuration of your project. If you need to make changes @@ -1943,6 +1944,11 @@ significant byte first (like Motorola and SPARC, unlike Intel). */ #define YAP_STARTUP "${YAP_STARTUP}" #endif +/* saved state file */ +#ifndef YAP_BOOTFILE +#define YAP_BOOTFILE "${YAP_BOOTFILE}" +#endif + /* date of compilation */ #ifndef YAP_TIMESTAMP #define YAP_TIMESTAMP ${YAP_TIMESTAMP} @@ -1964,6 +1970,7 @@ significant byte first (like Motorola and SPARC, unlike Intel). */ #endif + #ifndef YAP_IS_MOVABLE /* name of YAP instaii */ #ifndef YAP_ROOTDIR @@ -1972,17 +1979,17 @@ significant byte first (like Motorola and SPARC, unlike Intel). */ /* name of YAP binaries */ #ifndef YAP_BINDIR -#define YAP_BINDIR "${YAP_ROOTDIR}/bin" +#define YAP_BINDIR "${YAP_BINDIR}" #endif /* name of YAP library */ #ifndef YAP_LIBDIR -#define YAP_LIBDIR "${YAP_ROOTDIR}/lib" +#define YAP_LIBDIR "${YAP_LIBDIR}" #endif /* name of YAP DLL library */ -#ifndef YAP_YAPLIB -#define YAP_YAPLIB "${YAP_LIBDIR}/Yap" +#ifndef YAP_DLLDIR +#define YAP_DLLDIR "${YAP_LIBDIR}/Yap" #endif /* name of YAP JIT library */ diff --git a/console/terminal/CMakeLists.txt b/console/terminal/CMakeLists.txt index b143182da..a7132e32d 100644 --- a/console/terminal/CMakeLists.txt +++ b/console/terminal/CMakeLists.txt @@ -58,7 +58,7 @@ include_directories(../../CXX) install(TARGETS qtyap - RUNTIME DESTINATION ${bindir} + RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BIINDIR} ) ENDIF(Qt5Widgets_FOUND) diff --git a/console/yap.c b/console/yap.c index a07ed8571..f73011f29 100755 --- a/console/yap.c +++ b/console/yap.c @@ -105,13 +105,15 @@ static void exec_top_level(int BootMode, YAP_init_args *iap) { YAP_Reset(YAP_FULL_RESET); do_top_goal(YAP_MkAtomTerm(livegoal)); livegoal = YAP_FullLookupAtom("$live"); + } + YAP_Exit(EXIT_SUCCESS); + } - YAP_Exit(EXIT_SUCCESS); -} // FILE *debugf; #ifdef LIGHT + int _main(int argc, char **argv) #else int main(int argc, char **argv) @@ -121,6 +123,7 @@ int main(int argc, char **argv) int i; YAP_init_args init_args; BootMode = init_standard_system(argc, argv, &init_args); + if (BootMode == YAP_BOOT_ERROR) { fprintf(stderr, "[ FATAL ERROR: could not find saved state ]\n"); exit(1); diff --git a/gtags.conf b/gtags.conf deleted file mode 100644 index 81c5b15e0..000000000 --- a/gtags.conf +++ /dev/null @@ -1,45 +0,0 @@ -# -# Copyright (c) 1998, 1999, 2000, 2001, 2002, 2003, 2010, 2011, 2013, -# 2015, 2016 -# Tama Communications Corporation -# -# This file is part of GNU GLOBAL. -# -# This file is free software; as a special exception the author gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the -# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# * -# Configuration file for GNU GLOBAL source code tag system. -# -# Basically, GLOBAL doesn't need this file ('gtags.conf'), because it has -# default values in itsself. If you have the file as '/etc/gtags.conf' or -# "$HOME/.globalrc" in your system then GLOBAL overwrite the default values -# with the values in the file. -# -# The format is similar to termcap(5). You can specify a target with -# GTAGSLABEL environment variable. Default target is 'default'. -# -# If you want to have a common record for yourself, it is recommended to -# use the following method: -# -default:\ - :tc=yap@~/github/yap-6.3/gtags.conf:\ - :tc=native: - -#tc=user:tc=user:tc=new-ctags:tc=ctags:tc=pygments: - -# -yap:\ - :skip=Debug/,Release/,Threads/,mxe/,xcode/,codeblocks/,Qt/,xcode/,android/,compile_commands.json,xml/,YAPDroid/app/build/,YAPDroid/lib/build/: \ - :tc=user-ctags-maps: -# -# A common map for both Exuberant Ctags and Universal Ctags. -# Don't include definitions of ctagscom and ctagslib in this entry. -# -user-ctags-maps:\ - :langmap=Prolog\:.pl.yap.ypp.P.prolog: diff --git a/include/YapDefs.h b/include/YapDefs.h index cdbee67cc..67944d129 100755 --- a/include/YapDefs.h +++ b/include/YapDefs.h @@ -129,10 +129,11 @@ typedef enum { YAP_SAVED_STATE = 0x0004, YAP_OBJ = 0x0008, YAP_PL = 0x0010, - YAP_BOOT_PL = 0x0030, + YAP_BOOT_PL = 0x0030, YAP_QLY = 0x0040, YAP_EXE = 0x0080, - YAP_FOUND_BOOT_ERROR = 0x0100 + YAP_FOUND_BOOT_ERROR = 0x0100, + YAP_DIR = 0x0200 } YAP_file_type_t; #define YAP_ANY_FILE (0x00ff) @@ -179,8 +180,10 @@ X_API YAP_file_type_t Yap_InitDefaults(void *init_args, char saved_state[], int Argc, char *Argv[]); typedef struct yap_boot_params { - //> boot type as suggested by the user - YAP_file_type_t boot_file_type; + //> boot type as suggested by the user + YAP_file_type_t boot_file_type; + //> bootstrapping mode: YAP is not properly installed + bool bootstrapping; //> if NON-NULL, path where we can find the saved state const char *SavedState; //> if NON-0, minimal size for Heap or Code Area @@ -201,10 +204,16 @@ typedef struct yap_boot_params { size_t AttsSize; //> if NON-0, maximal size for AttributeVarStack size_t MaxAttsSize; - //> if NON-NULL, value for YAPLIBDIR - const char *YapLibDir; - //> if NON-NULL, value for YAPSSHAREDIR, that is, default value for libraries - const char *YapShareDir; + //> if NON-NULL, value for YAPROOTDIR + const char *YapRootDir; + //> if NON-NULL, value for YAPLIBDIR + const char *YapLibDir; + //> if NON-NULL, value for YAPSHAREDIR, that is, default value for libraries + const char *YapShareDir; + //> if NON-NULL, value for YAPDLLDIR, that is, default value for libraries + const char *YapDLLDir; + //> if NON-NULL, value for YAPPLDIR, that is, default value for libraries + const char *YapPlDir; //> if NON-NULL, name for a Prolog file to use when booting const char *YapPrologBootFile; //> if NON-NULL, name for a Prolog file to use when initializing diff --git a/include/YapInterface.h b/include/YapInterface.h index 52853a40f..e67e595bd 100755 --- a/include/YapInterface.h +++ b/include/YapInterface.h @@ -475,6 +475,16 @@ extern X_API void YAP_SetOutputMessage(void); extern X_API int YAP_StreamToFileNo(YAP_Term); + +/** + * Utility routine to Obtain a pointer to the YAP representation of a stream. + * + * @param sno Stream Id + * @return data structure for stream + */ +extern X_API void *YAP_RepStreamFromId(int sno); + + extern X_API void YAP_CloseAllOpenStreams(void); extern X_API void YAP_FlushAllStreams(void); diff --git a/include/YapTerm.h b/include/YapTerm.h new file mode 100644 index 000000000..eea862360 --- /dev/null +++ b/include/YapTerm.h @@ -0,0 +1,169 @@ +/************************************************************************* +* * +* YAP Prolog %W% %G% * +* Yap Prolog was developed at NCCUP - Universidade do Porto * +* * +* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 * +* * +************************************************************************** +* * +* File: Yap.h * +* mods: * +* comments: abstract type definitions for YAP * +* version: $Id: Yap.h,v 1.38 2008-06-18 10:02:27 vsc Exp $ * +*************************************************************************/ + +#ifndef YAP_H +#include "YapTermConfig.h" +#include "config.h" + +#endif + +#if HAVE_STDINT_H +#include +#endif +#if HAVE_INTTYPES_H +#include +#endif + +/* truth-values */ +/* stdbool defines the booleam type, bool, + and the constants false and true */ +#if HAVE_STDBOOL_H +#include +#else +#ifndef true +typedef int _Bool; +#define bool _Bool; + +#define false 0 +#define true 1 +#endif +#endif /* HAVE_STDBOOL_H */ + + +#define ALIGN_BY_TYPE(X, TYPE) \ + (((CELL)(X) + (sizeof(TYPE) - 1)) & ~(sizeof(TYPE) - 1)) + +#ifndef EXTERN +#ifdef MSC_VER +#define EXTERN +#else +#define EXTERN extern +#endif +#endif + +/* defines integer types Int and UInt (unsigned) with the same size as a ptr +** and integer types Short and UShort with half the size of a ptr */ + +#if defined(PRIdPTR) + +typedef intptr_t YAP_Int; +typedef uintptr_t YAP_UInt; + +#elif defined(_WIN64) + + +typedef int64_t YAP_Int; +typedef uint64_t YAP_UInt; + +#elif defined(_WIN32) + +typedef int32_t YAP_Int; +typedef uint32_t YAP_UInt; + +#elif SIZEOF_LONG_INT == SIZEOF_INT_P + +typedef long int YAP_Int; +typedef unsigned long int YAP_UInt; + +#elif SIZEOF_INT == SIZEOF_INT_P + +typedef int YAP_Int; +typedef unsigned int YAP_UInt; + +#else +#error Yap require integer types of the same size as a pointer +#endif + +/* */ typedef short int YAP_Short; +/* */ typedef unsigned short int YAP_UShort; + +typedef YAP_UInt YAP_CELL; +typedef YAP_UInt YAP_Term; + +/* Type definitions */ + + +#ifndef TRUE +#define TRUE true +#endif +#ifndef FALSE +#endif + +typedef bool YAP_Bool; +#define FALSE false + +typedef YAP_Int YAP_handle_t; + + +typedef double YAP_Float; + +typedef void *YAP_Atom; + +typedef void *YAP_Functor; + +#ifdef YAP_H + +typedef YAP_Int Int; +typedef YAP_UInt UInt; +typedef YAP_Short Short; +typedef YAP_UShort UShort; + +typedef uint16_t BITS16; +typedef int16_t SBITS16; +typedef uint32_t BITS32; + +typedef YAP_CELL CELL; + +typedef YAP_Term Term; + +#define WordSize sizeof(BITS16) +#define CellSize sizeof(CELL) +#define SmallSize sizeof(SMALLUNSGN) + +typedef YAP_Int Int; +typedef YAP_Float Float; +typedef YAP_handle_t yhandle_t; + +#endif + +#include "YapError.h" + +#include "../os/encoding.h" + +typedef encoding_t YAP_encoding_t; + +#include "YapFormat.h" + +/************************************************************************************************* + type casting macros +*************************************************************************************************/ + +#if SIZEOF_INT < SIZEOF_INT_P +#define SHORT_INTS 1 +#else +#define SHORT_INTS 0 +#endif + +#ifdef __GNUC__ +typedef long long int YAP_LONG_LONG; +typedef unsigned long long int YAP_ULONG_LONG; +#else +typedef long int YAP_LONG_LONG; +typedef unsigned long int YAP_ULONG_LONG; +#endif + +#define Unsigned(V) ((CELL)(V)) +#define Signed(V) ((Int)(V)) + diff --git a/info/build.sh b/info/build.sh index 260f22909..8c5c1ddce 100644 --- a/info/build.sh +++ b/info/build.sh @@ -19,4 +19,4 @@ cd $PREFIX/conda # Remove the created lib64 directory -rm -rf $PREFIX/conda \ No newline at end of file +rm -rf $PREFIX/conda diff --git a/info/meta.yaml b/info/meta.yaml index ecdafcba6..46a8959fa 100644 --- a/info/meta.yaml +++ b/info/meta.yaml @@ -9,6 +9,7 @@ requirements: - cmake - swig - gmp + - ninja - readline - python - r @@ -16,8 +17,7 @@ requirements: - pkgconfig - make run: - - python - - pythonlab + - jupyterlab - readline - gmp - r diff --git a/library/dialect/swi/fli/swi.c b/library/dialect/swi/fli/swi.c index a1a788e21..661d75991 100755 --- a/library/dialect/swi/fli/swi.c +++ b/library/dialect/swi/fli/swi.c @@ -3142,7 +3142,7 @@ term_t Yap_CvtTerm(term_t ts) { } char *PL_cwd(char *cwd, size_t cwdlen) { - return (char *)Yap_getcwd((const char *)cwd, cwdlen); + return (char *)Yap_getcwd(cwd, cwdlen); } /** diff --git a/library/lammpi/CMakeLists.txt b/library/lammpi/CMakeLists.txt index 4e8b48e81..fcb67ba15 100644 --- a/library/lammpi/CMakeLists.txt +++ b/library/lammpi/CMakeLists.txt @@ -78,9 +78,9 @@ if (MPI_C_FOUND) add_definitions (-DHAVE_MPI_H=1) install(TARGETS yap_mpi - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) endif (MPI_C_FOUND) diff --git a/library/matlab/CMakeLists.txt b/library/matlab/CMakeLists.txt index 71bb38db0..dc124e6e0 100644 --- a/library/matlab/CMakeLists.txt +++ b/library/matlab/CMakeLists.txt @@ -15,8 +15,8 @@ if (MATLAB_FOUND) target_link_libraries(matlab libYap $(MATLAB_LIBRARIES) ) install(TARGETS matlab - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} ) + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) endif (MATLAB_FOUND) diff --git a/library/matrix/CMakeLists.txt b/library/matrix/CMakeLists.txt index 98ce8bad8..fae2b49e4 100644 --- a/library/matrix/CMakeLists.txt +++ b/library/matrix/CMakeLists.txt @@ -6,8 +6,8 @@ target_link_libraries(matrix libYap) set_target_properties (matrix PROPERTIES PREFIX "") install(TARGETS matrix - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} - LIBRARY DESTINATION ${dlls} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/library/random/CMakeLists.txt b/library/random/CMakeLists.txt index 5c633500c..26d97da2a 100644 --- a/library/random/CMakeLists.txt +++ b/library/random/CMakeLists.txt @@ -10,5 +10,5 @@ set_target_properties (yap_random PROPERTIES PREFIX "") endif() MY_install(TARGETS yap_random - LIBRARY DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} ) + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/library/regex/CMakeLists.txt b/library/regex/CMakeLists.txt index c71e44124..b7ec78b87 100644 --- a/library/regex/CMakeLists.txt +++ b/library/regex/CMakeLists.txt @@ -26,6 +26,6 @@ TARGET_INCLUDE_DIRECTORIES (regexp PUBLIC BEFORE ${CMAKE_TOP_SOURCE_DIR}/include;${CMAKE_CURRENT_BINARY_DIR};${CMAKE_CURRENT_SOURCE_DIR} ) install(TARGETS regexp - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} ) + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/library/rltree/CMakeLists.txt b/library/rltree/CMakeLists.txt index b8e58bb6f..ee2c6c3fe 100644 --- a/library/rltree/CMakeLists.txt +++ b/library/rltree/CMakeLists.txt @@ -11,6 +11,6 @@ target_link_libraries(yap_rl libYap) set_target_properties (yap_rl PROPERTIES PREFIX "") install(TARGETS yap_rl - LIBRARY DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} ) + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/library/system/CMakeLists.txt b/library/system/CMakeLists.txt index 5e8662b97..e3d405bda 100644 --- a/library/system/CMakeLists.txt +++ b/library/system/CMakeLists.txt @@ -39,8 +39,8 @@ set_target_properties (sys PROPERTIES PREFIX "") endif() MY_install(TARGETS sys - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} ) + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) configure_file ("sys_config.h.cmake" "sys_config.h" ) diff --git a/library/tries/CMakeLists.txt b/library/tries/CMakeLists.txt index b4371af99..277df36a1 100644 --- a/library/tries/CMakeLists.txt +++ b/library/tries/CMakeLists.txt @@ -13,9 +13,9 @@ target_link_libraries(tries libYap) set_target_properties (tries PROPERTIES PREFIX "") install(TARGETS tries - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls}) + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR}) set ( ITRIES_SOURCES @@ -34,7 +34,7 @@ target_link_libraries(itries libYap) set_target_properties (itries PROPERTIES PREFIX "") install(TARGETS itries - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} ) + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/os/iopreds.c b/os/iopreds.c index e8cae80cf..9bc26dc79 100644 --- a/os/iopreds.c +++ b/os/iopreds.c @@ -687,6 +687,8 @@ int post_process_weof(StreamDesc *s) { return EOFCHAR; } +void *Yap_RepStreamFromId(int sno) { return GLOBAL_Stream+(sno); } + /** * caled after EOF found a peek, it just calls console_post_process to *conclude @@ -705,7 +707,7 @@ int EOFWPeek(int sno) { return EOFCHAR; } post_process_read_char, something to think about */ int PlGetc(int sno) { StreamDesc *s = &GLOBAL_Stream[sno]; - return fgetc(s->file); + return fgetc(s->file); } // layered version @@ -928,7 +930,7 @@ static int binary_file(const char *file_name) { #endif { /* ignore errors while checking a file */ - return (FALSE); + return false; } return (S_ISDIR(ss.st_mode)); #else @@ -993,24 +995,26 @@ static int write_bom(int sno, StreamDesc *st) { static void check_bom(int sno, StreamDesc *st) { int ch1, ch2, ch3, ch4; - - ch1 = fgetc(st->file); +if (st-> file == NULL) { + PlIOError(SYSTEM_ERROR_INTERNAL, Yap_MkStream(sno), "YAP does not support BOM n %x type of files", st->status); return; +} + ch1 = st->stream_getc(sno); switch (ch1) { case 0x00: { - ch2 = fgetc(st->file); + ch2 = st->stream_getc(sno); if (ch2 != 0x00) { ungetc(ch1, st->file); ungetc(ch2, st->file); return; } else { - ch3 = fgetc(st->file); + ch3 = st->stream_getc(sno); if (ch3 == EOFCHAR || ch3 != 0xFE) { ungetc(ch1, st->file); ungetc(ch2, st->file); ungetc(ch3, st->file); return; } else { - ch4 = fgetc(st->file); + ch4 = st->stream_getc(sno); if (ch4 == EOFCHAR || ch3 != 0xFF) { ungetc(ch1, st->file); ungetc(ch2, st->file); @@ -1228,22 +1232,7 @@ do_open(Term file_name, Term t2, return false; } /* done */ - sno = GetFreeStreamD(); - if (sno < 0) { - free(args); - return PlIOError(RESOURCE_ERROR_MAX_STREAMS, TermNil, "open/3"); - } - st = &GLOBAL_Stream[sno]; - st->user_name = file_name; flags = 0; - // user requested encoding? - if (args[OPEN_ALIAS].used) { - Atom al = AtomOfTerm(args[OPEN_ALIAS].tvalue); - if (!Yap_AddAlias(al, sno)) { - free(args); - return false; - } - } if (args[OPEN_ENCODING].used) { tenc = args[OPEN_ENCODING].tvalue; s_encoding = RepAtom(AtomOfTerm(tenc))->StrOfAE; @@ -1259,9 +1248,8 @@ do_open(Term file_name, Term t2, trueGlobalPrologFlag(OPEN_EXPANDS_FILENAME_FLAG); // expand file name? fname = Yap_AbsoluteFile(fname, fbuf, ok); - if (fname) { - st->name = Yap_LookupAtom(fname); - } else { + + if (!fname) { PlIOError(EXISTENCE_ERROR_SOURCE_SINK, ARG1, NULL); } @@ -1305,29 +1293,39 @@ do_open(Term file_name, Term t2, needs_bom = false; } } - if (st - GLOBAL_Stream < 3) { - flags |= RepError_Prolog_f; - } if (open_mode == AtomRead) { - strncpy(io_mode, "rb", 8); + strncpy(io_mode, "r", 8); } else if (open_mode == AtomWrite) { strncpy(io_mode, "w", 8); } else if (open_mode == AtomAppend) { strncpy(io_mode, "a", 8); } else { Yap_Error(DOMAIN_ERROR_IO_MODE, MkAtomTerm(open_mode), "open/3"); - return -2; + return false; } - if (Yap_OpenStream(RepAtom(AtomOfTerm(file_name))->StrOfAE, io_mode) < 0) { + if ((sno = Yap_OpenStream(fname, io_mode, file_name)) < 0) { return false; } + st = &GLOBAL_Stream[sno]; + st->user_name = file_name; + // user requested encoding? + if (args[OPEN_ALIAS].used) { + Atom al = AtomOfTerm(args[OPEN_ALIAS].tvalue); + if (!Yap_AddAlias(al, sno)) { + free(args); + return false; + } + } + st->name = Yap_LookupAtom(fname); + if (st - GLOBAL_Stream < 3) { + flags |= RepError_Prolog_f; + } #if MAC if (open_mode == AtomWrite) { Yap_SetTextFile(RepAtom(AtomOfTerm(file_name))->StrOfAE); } #endif // __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "open %s", fname); - flags &= ~(Free_Stream_f); Yap_DefaultStreamOps(st); if (needs_bom && !write_bom(sno, st)) { return false; @@ -1372,7 +1370,8 @@ writable. */ -static Int open3(USES_REGS1) { /* '$open'(+File,+Mode,?Stream,-ReturnCode) */ +static Int open3(USES_REGS1) { +/* '$open'(+File,+Mode,?Stream,-ReturnCode) */ return do_open(Deref(ARG1), Deref(ARG2), TermNil PASS_REGS); } @@ -1506,7 +1505,7 @@ static Int p_open_null_stream(USES_REGS1) { return (Yap_unify(ARG1, t)); } -int Yap_OpenStream(const char *fname, const char *io_mode) { +int Yap_OpenStream(const char *fname, const char *io_mode, Term user_name) { CACHE_REGS int sno; StreamDesc *st; @@ -1532,19 +1531,23 @@ int Yap_OpenStream(const char *fname, const char *io_mode) { MkAtomTerm(Yap_LookupAtom(fname)), "%s", fname); return -1; } - } else if ((fd = fopen(fname, io_mode)) == NULL || - (!strchr(io_mode, 'b') && binary_file(fname))) { - UNLOCK(st->streamlock); - if (errno == ENOENT && !strchr(io_mode, 'r')) { - PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), "%s: %s", - fname, - strerror(errno)); - } else { - PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), - "%s: %s", - fname, strerror(errno)); + } else { + fd = st->file = fopen(fname, io_mode); + if (fd == NULL) { + if (!strchr(io_mode, 'b') && binary_file(fname)) { + UNLOCK(st->streamlock); + if (errno == ENOENT && !strchr(io_mode, 'r')) { + PlIOError(EXISTENCE_ERROR_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), "%s: %s", + fname, + strerror(errno)); + } else { + PlIOError(PERMISSION_ERROR_OPEN_SOURCE_SINK, MkAtomTerm(Yap_LookupAtom(fname)), + "%s: %s", + fname, strerror(errno)); + } + } + return -1; } - return -1; } flags = st->status; if (strchr(io_mode, 'w')) { @@ -1559,12 +1562,13 @@ int Yap_OpenStream(const char *fname, const char *io_mode) { at = AtomRead; flags |= Input_Stream_f; } - Atom name = Yap_LookupAtom(fname); - Yap_initStream(sno, st->file, name, MkAtomTerm( name ), LOCAL_encoding, st->status, at, NULL); + if (strchr(io_mode, 'b')) { + flags |= Binary_Stream_f; + } + Yap_initStream(sno, st->file, fname, user_name, LOCAL_encoding, flags, at, NULL); __android_log_print(ANDROID_LOG_INFO, "YAPDroid", "exists %s <%d>", fname, sno); - return sno - ; + return sno; } int Yap_FileStream(FILE *fd, char *name, Term file_name, int flags) { diff --git a/os/streams.c b/os/streams.c index 681c9b5df..70017ee4e 100644 --- a/os/streams.c +++ b/os/streams.c @@ -144,6 +144,7 @@ int GetFreeStreamD(void) { return -1; } LOCK(GLOBAL_Stream[sno].streamlock); + GLOBAL_Stream[sno].status &= ~Free_Stream_f; UNLOCK(GLOBAL_StreamDescLock); GLOBAL_Stream[sno].encoding = LOCAL_encoding; return sno; @@ -958,7 +959,7 @@ void Yap_CloseStreams(int loud) { static void CloseStream(int sno) { CACHE_REGS - fflush(NULL); + //fflush(NULL); if (GLOBAL_Stream[sno].file && !(GLOBAL_Stream[sno].status & (Null_Stream_f | Socket_Stream_f | InMemory_Stream_f | Pipe_Stream_f))) diff --git a/os/sysbits.c b/os/sysbits.c index 8250ad79c..fb3bb967e 100644 --- a/os/sysbits.c +++ b/os/sysbits.c @@ -957,10 +957,10 @@ static bool initSysPath(Term tlib, Term tcommons, bool dir_done, bool commons_done) { CACHE_REGS int len; + char *dir; #if __WINDOWS__ { - char *dir; if ((dir = Yap_RegistryGetString("library")) && is_directory(dir)) { dir_done = true; if (!Yap_unify(tlib, MkAtomTerm(Yap_LookupAtom(dir)))) @@ -975,17 +975,9 @@ static bool initSysPath(Term tlib, Term tcommons, bool dir_done, if (dir_done && commons_done) return true; #endif - strncpy(LOCAL_FileNameBuf, YAP_SHAREDIR, YAP_FILENAME_MAX); - strncat(LOCAL_FileNameBuf, "/", YAP_FILENAME_MAX); - len = strlen(LOCAL_FileNameBuf); - if (!dir_done) { - strncat(LOCAL_FileNameBuf, "Yap", YAP_FILENAME_MAX); - if (is_directory(LOCAL_FileNameBuf)) { - if (!Yap_unify(tlib, MkAtomTerm(Yap_LookupAtom(LOCAL_FileNameBuf)))) + + if (!Yap_unify(tlib, MkAtomTerm(Yap_LookupAtom(Yap_PLDIR)))) return false; - dir_done = true; - } - } if (!commons_done) { LOCAL_FileNameBuf[len] = '\0'; strncat(LOCAL_FileNameBuf, "PrologCommons", YAP_FILENAME_MAX); @@ -1202,6 +1194,7 @@ const char *Yap_findFile(const char *isource, const char *idef, int rc = FAIL_RESTORE; int try = 0; bool abspath = false; + int lvl = push_text_stack(); root = Malloc(YAP_FILENAME_MAX+1); source= Malloc(YAP_FILENAME_MAX+1); @@ -1247,32 +1240,6 @@ const char *Yap_findFile(const char *isource, const char *idef, done = true; } break; - case 2: // use environment variable YAPLIBDIR -#if HAVE_GETENV - if (in_lib) { - const char *eroot; - - if (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ) { - eroot = getenv("YAPLIBDIR"); - } else if (ftype == YAP_BOOT_PL) { - eroot = getenv("YAPSHAREDIR"); - if (eroot == NULL) { - continue; - } else { - strncpy(root, eroot, YAP_FILENAME_MAX); - strncat(root, "/pl", YAP_FILENAME_MAX); - } - } - if (isource && isource[0]) - strcpy(source, isource); - else if (idef && idef[0]) - strcpy(source, idef); - else - source[0] = 0; - } else -#endif - done = true; - break; case 3: // use compilation variable YAPLIBDIR if (in_lib) { if (isource && isource[0]) @@ -1804,39 +1771,19 @@ static Int p_host_type(USES_REGS1) { } static Int p_yap_home(USES_REGS1) { - Term out = MkAtomTerm(Yap_LookupAtom(YAP_ROOTDIR)); - return (Yap_unify(out, ARG1)); + Term out; + + out = MkAtomTerm(Yap_LookupAtom(Yap_ROOTDIR)); + return Yap_unify(out, ARG1); } static Int p_yap_paths(USES_REGS1) { Term out1, out2, out3; - const char *env_destdir = getenv("DESTDIR"); - char destdir[YAP_FILENAME_MAX + 1]; - if (env_destdir) { - strncat(destdir, env_destdir, YAP_FILENAME_MAX); - strncat(destdir, "/", YAP_FILENAME_MAX); - strncat(destdir, YAP_LIBDIR, YAP_FILENAME_MAX); - out1 = MkAtomTerm(Yap_LookupAtom(destdir)); - } else { - out1 = MkAtomTerm(Yap_LookupAtom(YAP_LIBDIR)); - } - if (env_destdir) { - strncat(destdir, env_destdir, YAP_FILENAME_MAX); - strncat(destdir, "/", YAP_FILENAME_MAX); - strncat(destdir, YAP_SHAREDIR, YAP_FILENAME_MAX); - out2 = MkAtomTerm(Yap_LookupAtom(destdir)); - } else { - out2 = MkAtomTerm(Yap_LookupAtom(YAP_SHAREDIR)); - } - if (env_destdir) { - strncat(destdir, env_destdir, YAP_FILENAME_MAX); - strncat(destdir, "/", YAP_FILENAME_MAX); - strncat(destdir, YAP_BINDIR, YAP_FILENAME_MAX); - out3 = MkAtomTerm(Yap_LookupAtom(destdir)); - } else { - out3 = MkAtomTerm(Yap_LookupAtom(YAP_BINDIR)); - } + out1 = MkAtomTerm(Yap_LookupAtom(Yap_LIBDIR)); + out2 = MkAtomTerm(Yap_LookupAtom(Yap_SHAREDIR)); + out3 = MkAtomTerm(Yap_LookupAtom(Yap_BINDIR)); + return (Yap_unify(out1, ARG1) && Yap_unify(out2, ARG2) && Yap_unify(out3, ARG3)); } @@ -1917,7 +1864,7 @@ static Int p_win32(USES_REGS1) { } static Int p_ld_path(USES_REGS1) { - return Yap_unify(ARG1, MkAtomTerm(Yap_LookupAtom(YAP_LIBDIR))); + return Yap_unify(ARG1, MkAtomTerm(Yap_LookupAtom(YAP_DLLDIR))); } static Int p_address_bits(USES_REGS1) { diff --git a/os/yapio.h b/os/yapio.h index 8b23eea13..5a0173876 100644 --- a/os/yapio.h +++ b/os/yapio.h @@ -86,7 +86,7 @@ extern int Yap_PlGetWchar(void); extern int Yap_PlFGetchar(void); extern int Yap_GetCharForSIGINT(void); extern Int Yap_StreamToFileNo(Term); -extern int Yap_OpenStream(const char*, const char*); +extern int Yap_OpenStream(const char*, const char*, Term); extern int Yap_FileStream(FILE*, char *, Term, int); extern char *Yap_TermToBuffer(Term t, encoding_t encoding, int flags); extern char *Yap_HandleToString(yhandle_t l, size_t sz, size_t *length, diff --git a/packages/CLPBN/horus/CMakeLists.txt b/packages/CLPBN/horus/CMakeLists.txt index e8dcf3c8f..d3234435e 100644 --- a/packages/CLPBN/horus/CMakeLists.txt +++ b/packages/CLPBN/horus/CMakeLists.txt @@ -68,8 +68,8 @@ if (CMAKE_MAJOR_VERSION GREATER 2) install(TARGETS horus HorusCli - RUNTIME DESTINATION ${bindir} - LIBRARY DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) endif() diff --git a/packages/CMakeLists.txt b/packages/CMakeLists.txt index 485c7c4c4..f1738ef01 100644 --- a/packages/CMakeLists.txt +++ b/packages/CMakeLists.txt @@ -42,9 +42,9 @@ if (GECODE_FOUND) include_directories (${GECODE_INCLUDE_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/${GECODE_VERSION}) install(TARGETS gecode_yap - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/gecode.yap diff --git a/packages/bdd/CMakeLists.txt b/packages/bdd/CMakeLists.txt index e2d1d9039..f8b608d77 100644 --- a/packages/bdd/CMakeLists.txt +++ b/packages/bdd/CMakeLists.txt @@ -51,9 +51,9 @@ IF (CUDD_FOUND) set(YAP_SYSTEM_OPTIONS "cudd " ${YAP_SYSTEM_OPTIONS} PARENT_SCOPE) install(TARGETS cudd - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/packages/bdd/cmake/FindYAP.cmake b/packages/bdd/cmake/FindYAP.cmake index 220206c94..8e361b986 100644 --- a/packages/bdd/cmake/FindYAP.cmake +++ b/packages/bdd/cmake/FindYAP.cmake @@ -7,7 +7,7 @@ if (YAP_ROOT) set( YAP_INCLUDE_DIR ../../include ) set( YAP_PL_LIBRARY_DIR ${libpl} ) set( YAP_LIBRARY libYap ) - set( YAP_DLLS ${dlls} ) + set( YAP_DLLS ${YAP_INSTALL_DLLDIR} ) else() diff --git a/packages/bdd/simplecudd/CMakeLists.txt b/packages/bdd/simplecudd/CMakeLists.txt index 39bdac6c7..459e0be8a 100644 --- a/packages/bdd/simplecudd/CMakeLists.txt +++ b/packages/bdd/simplecudd/CMakeLists.txt @@ -25,7 +25,7 @@ target_link_libraries(Problogbdd ) install(TARGETS Problogbdd - RUNTIME DESTINATION ${bindir} - LIBRARY DESTINATION ${dlls} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/packages/bdd/simplecudd_lfi/CMakeLists.txt b/packages/bdd/simplecudd_lfi/CMakeLists.txt index e032b1d07..b2ff0e0c3 100644 --- a/packages/bdd/simplecudd_lfi/CMakeLists.txt +++ b/packages/bdd/simplecudd_lfi/CMakeLists.txt @@ -29,7 +29,7 @@ target_link_libraries(Problogbdd-Lfi ) install(TARGETS Problogbdd-Lfi - RUNTIME DESTINATION ${bindir} - LIBRARY DESTINATION ${dlls} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/packages/cplint/CMakeLists.txt b/packages/cplint/CMakeLists.txt index 71172b117..bda489574 100644 --- a/packages/cplint/CMakeLists.txt +++ b/packages/cplint/CMakeLists.txt @@ -148,9 +148,9 @@ IF (CUDD_FOUND) ) install(TARGETS bddem - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) @@ -171,9 +171,9 @@ IF (CUDD_FOUND) add_subDIRECTORY ( approx/simplecuddLPADs ) install(TARGETS cplint - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) INSTALL(FILES ${CPLINT_PROGRAMS} DESTINATION ${libpl}) diff --git a/packages/cplint/approx/simplecuddLPADs/CMakeLists.txt b/packages/cplint/approx/simplecuddLPADs/CMakeLists.txt index ca82fc79d..30d33533c 100644 --- a/packages/cplint/approx/simplecuddLPADs/CMakeLists.txt +++ b/packages/cplint/approx/simplecuddLPADs/CMakeLists.txt @@ -26,7 +26,7 @@ target_link_libraries(LPADbdd ) install(TARGETS LPADbdd - RUNTIME DESTINATION ${bindir} - LIBRARY DESTINATION ${dlls} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/packages/cuda/CMakeLists.txt b/packages/cuda/CMakeLists.txt index 919bf03e5..d7b5c7353 100644 --- a/packages/cuda/CMakeLists.txt +++ b/packages/cuda/CMakeLists.txt @@ -103,8 +103,8 @@ endif( THRUST_INCLUDE_DIR ) ) install(TARGETS libcuda - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) install(FILES ${PL_SOURCES} diff --git a/packages/gecode/CMakeLists.txt b/packages/gecode/CMakeLists.txt index ebb3c5251..0e328a2f5 100644 --- a/packages/gecode/CMakeLists.txt +++ b/packages/gecode/CMakeLists.txt @@ -42,9 +42,9 @@ if (GECODE_FOUND) include_directories (${GECODE_INCLUDE_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/${GECODE_VERSION}) install(TARGETS gecode_yap - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/gecode.yap diff --git a/packages/jpl/src/c/CMakeLists.txt b/packages/jpl/src/c/CMakeLists.txt index 4de5645ef..7ae0900f1 100644 --- a/packages/jpl/src/c/CMakeLists.txt +++ b/packages/jpl/src/c/CMakeLists.txt @@ -11,7 +11,7 @@ include_directories (${JAVA_INCLUDE_DIRS} ${JNI_INCLUDE_DIRS} ) # set(YAP_SYSTEM_OPTIONS "jpl " ${YAP_SYSTEM_OPTIONS} PARENT_SCOPE) install(TARGETS jplYap - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/packages/myddas/myddas_util_connection.c b/packages/myddas/myddas_util_connection.c index 41c65af6f..5e707c965 100644 --- a/packages/myddas/myddas_util_connection.c +++ b/packages/myddas/myddas_util_connection.c @@ -1,21 +1,22 @@ -p#include +p #include #include #include "Yap.h" #include "cut_c.h" -MYDDAS_UTIL_CONNECTION -myddas_init_initialize_connection(void *conn, void *enviromment, MYDDAS_API api, - MYDDAS_UTIL_CONNECTION next); + extern MYDDAS_UTIL_CONNECTION + myddas_init_initialize_connection(void *conn, void *enviromment, + MYDDAS_API api, + MYDDAS_UTIL_CONNECTION next); -MYDDAS_UTIL_CONNECTION +extern MYDDAS_UTIL_CONNECTION myddas_util_add_connection(void *conn, void *enviromment, MYDDAS_API api); -MYDDAS_UTIL_PREDICATE +extern MYDDAS_UTIL_PREDICATE myddas_init_initialize_predicate(const char *pred_name, int pred_arity, const char *pred_module, MYDDAS_UTIL_PREDICATE next); -MYDDAS_UTIL_PREDICATE +extern MYDDAS_UTIL_PREDICATE myddas_util_find_predicate(const char *pred_name, Int pred_arity, const char *pred_module, MYDDAS_UTIL_PREDICATE list); diff --git a/packages/myddas/mysql/CMakeLists.txt b/packages/myddas/mysql/CMakeLists.txt index 293d35698..38397f8dc 100644 --- a/packages/myddas/mysql/CMakeLists.txt +++ b/packages/myddas/mysql/CMakeLists.txt @@ -25,9 +25,9 @@ add_lib(Yapmysql ${MYSQL_SOURCES}) target_link_libraries(Yapmysql ${MYSQL_LIBRARIES} libYap) install(TARGETS Yapmysql - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} - LIBRARY DESTINATION ${dlls} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} ) endif() include_directories(${MYSQL_INCLUDE_DIR} ..) diff --git a/packages/myddas/odbc/CMakeLists.txt b/packages/myddas/odbc/CMakeLists.txt index b55cd3262..6d9e7e835 100644 --- a/packages/myddas/odbc/CMakeLists.txt +++ b/packages/myddas/odbc/CMakeLists.txt @@ -29,9 +29,9 @@ set_target_properties (Yapodbc PROPERTIES install(TARGETS Yapodbc - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) else() diff --git a/packages/myddas/postgres/CMakeLists.txt b/packages/myddas/postgres/CMakeLists.txt index e907c7e06..a91252bbe 100644 --- a/packages/myddas/postgres/CMakeLists.txt +++ b/packages/myddas/postgres/CMakeLists.txt @@ -28,8 +28,8 @@ set_property(GLOBAL APPEND PROPERTY COMPILE_DEFINITIONS -DMYDDAS_POSTGRES=1) install(TARGETS Yappostgres - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) endif (PostgreSQL_FOUND) diff --git a/packages/myddas/sqlite3/CMakeLists.txt b/packages/myddas/sqlite3/CMakeLists.txt index c069ab12f..37a7fe26f 100644 --- a/packages/myddas/sqlite3/CMakeLists.txt +++ b/packages/myddas/sqlite3/CMakeLists.txt @@ -70,7 +70,7 @@ if (ANDROID) endif () install(TARGETS Yapsqlite3 - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} - LIBRARY DESTINATION ${dlls} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/packages/python/CMakeLists.txt b/packages/python/CMakeLists.txt index 177109efb..30dafe151 100644 --- a/packages/python/CMakeLists.txt +++ b/packages/python/CMakeLists.txt @@ -29,9 +29,9 @@ target_link_libraries(Py4YAP libYap ${PYTHON_LIBRARIES}) install(TARGETS Py4YAP - RUNTIME DESTINATION ${bindir} - LIBRARY DESTINATION ${libdir} - ARCHIVE DESTINATION ${libdir} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) @@ -54,6 +54,6 @@ add_to_group( PYTHON_PL pl_library ) set_target_properties (YAPPython PROPERTIES PREFIX "") install(TARGETS YAPPython - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} ) + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/packages/python/python.c b/packages/python/python.c index 842999199..ac741eef0 100644 --- a/packages/python/python.c +++ b/packages/python/python.c @@ -27,7 +27,7 @@ PyObject *py_ModDict; VFS_t pystream; -static void *py_open(const char *name, const char *io_mode) { +static void *py_open(VFS_t *me, int sno, const char *name, const char *io_mode) { #if HAVE_STRCASESTR if (strcasestr(name, "//python/") == name) name += strlen("//python/"); @@ -35,12 +35,16 @@ static void *py_open(const char *name, const char *io_mode) { if (strstr(name, "//python/") == name) name += strlen("//python/"); #endif +StreamDesc *st = YAP_RepStreamFromId(sno); // we assume object is already open, so there is no need to open it. PyObject *stream = string_to_python(name, true, NULL); if (stream == Py_None) return NULL; Py_INCREF(stream); - return stream; + st->vfs_handle = stream; + st->vfs = me; + st->status = Append_Stream_f | Output_Stream_f; + return stream; } static bool py_close(int sno) { diff --git a/packages/python/swig/CMakeLists.txt b/packages/python/swig/CMakeLists.txt index d2f85fe2f..89ed2c122 100644 --- a/packages/python/swig/CMakeLists.txt +++ b/packages/python/swig/CMakeLists.txt @@ -71,7 +71,7 @@ endif() install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install --ignore-installed . WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})" - DEPENDS Py4YAP ${CMAKE_BINARY_DIR}/${YAP_STARTUP} ${dlls} ) + DEPENDS Py4YAP ${CMAKE_BINARY_DIR}/${YAP_STARTUP} ${YAP_INSTALL_DLLDIR} ) install(FILES ${YAP4PY_PL} DESTINATION ${libpl} ) diff --git a/packages/python/swig/setup.py.cmake b/packages/python/swig/setup.py.cmake index 08807e0df..d2c257141 100644 --- a/packages/python/swig/setup.py.cmake +++ b/packages/python/swig/setup.py.cmake @@ -81,9 +81,9 @@ extensions=[Extension('_yap', native_sources, ('MINOR_VERSION', '0'), ('_YAP_NOT_INSTALLED_', '1'), ('YAP_PYTHON', '1')], - runtime_library_dirs=['yap4py','${RCMAKE_INSTALL_LIBDIR}','${CMAKE_INSTALL_BINDIR}'], + runtime_library_dirs=['yap4py','${RCMAKE_INSTALL_FULL_LIBDIR}','${CMAKE_INSTALL_FULL_BINDIR}'], swig_opts=['-modern', '-c++', '-py3','-I${RELATIVE_SOURCE}/CXX'], - library_dirs=['../../..','../../../CXX','../../packages/python',"${dlls}","${CMAKE_INSTALL_BINDIR}", '.'], + library_dirs=['../../..','../../../CXX','../../packages/python',"${YAP_INSTALL_FULL_DLLDIR}","${CMAKE_INSTALL_FULL_BINDIR}", '.'], extra_link_args=my_extra_link_args, extra_compile_args=['-g3','-O0'], libraries=['Yap','${GMP_LIBRARIES}'], diff --git a/packages/raptor/CMakeLists.txt b/packages/raptor/CMakeLists.txt index 2f626b7c6..37da50b7d 100644 --- a/packages/raptor/CMakeLists.txt +++ b/packages/raptor/CMakeLists.txt @@ -54,8 +54,8 @@ else (WIN32) endif() install(TARGETS libxml2 - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} ARCHIVE DESTINATION ${libdir} ) endif(WIN32) @@ -109,8 +109,8 @@ IF (RAPTOR_FOUND) set_target_properties (raptor PROPERTIES PREFIX "") install(TARGETS raptor - LIBRARY DESTINATION ${dlls} - RUNTIME DESTINATION ${dlls} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} ARCHIVE DESTINATION ${libdir} ) diff --git a/packages/raptor/cmake/FindYAP.cmake b/packages/raptor/cmake/FindYAP.cmake index 220206c94..8e361b986 100644 --- a/packages/raptor/cmake/FindYAP.cmake +++ b/packages/raptor/cmake/FindYAP.cmake @@ -7,7 +7,7 @@ if (YAP_ROOT) set( YAP_INCLUDE_DIR ../../include ) set( YAP_PL_LIBRARY_DIR ${libpl} ) set( YAP_LIBRARY libYap ) - set( YAP_DLLS ${dlls} ) + set( YAP_DLLS ${YAP_INSTALL_DLLDIR} ) else() diff --git a/packages/real/CMakeLists.txt b/packages/real/CMakeLists.txt index 2df403e5c..5d9015642 100644 --- a/packages/real/CMakeLists.txt +++ b/packages/real/CMakeLists.txt @@ -62,9 +62,9 @@ include_directories ( configure_file ("rconfig.h.cmake" "rconfig.h" ) install(TARGETS real - RUNTIME DESTINATION ${dlls} - ARCHIVE DESTINATION ${dlls} - LIBRARY DESTINATION ${dlls} + RUNTIME DESTINATION ${YAP_INSTALL_DLLDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} ) install(FILES real.pl diff --git a/packages/swi-minisat2/C/CMakeLists.txt b/packages/swi-minisat2/C/CMakeLists.txt index 91fec660e..ab7b9b57e 100644 --- a/packages/swi-minisat2/C/CMakeLists.txt +++ b/packages/swi-minisat2/C/CMakeLists.txt @@ -43,9 +43,9 @@ pl-minisat.C install ( TARGETS minisat2 - RUNTIME DESTINATION ${bindir} - ARCHIVE DESTINATION ${dlls} - LIBRARY DESTINATION ${dlls} + RUNTIME DESTINATION ${CMAKE_INSTALL_BIINDIR} + ARCHIVE DESTINATION ${YAP_INSTALL_DLLDIR} + LIBRARY DESTINATION ${YAP_INSTALL_DLLDIR} ) diff --git a/packages/swig/java/CMakeLists.txt b/packages/swig/java/CMakeLists.txt index c6fb05022..1bb2f248e 100644 --- a/packages/swig/java/CMakeLists.txt +++ b/packages/swig/java/CMakeLists.txt @@ -64,7 +64,7 @@ if (JNI_FOUND) INCLUDE_JARS NativeJar ) SET(CMAKE_JAVA_COMPILE_FLAGS "-source" "1.8" "-target" "1.8") install( TARGETS Native - RUNTIME DESTINATION ${bindir} + RUNTIME DESTINATION ${CMAKE_INSTALL_BIINDIR} ARCHIVE DESTINATION ${libdir} LIBRARY DESTINATION ${libdir} ) diff --git a/packages/swig/js/CMakeLists.txt b/packages/swig/js/CMakeLists.txt index b14be6428..4b9f6742b 100644 --- a/packages/swig/js/CMakeLists.txt +++ b/packages/swig/js/CMakeLists.txt @@ -75,7 +75,7 @@ if (Java_Development_FOUND) INCLUDE_JARS NativeJar ) SET(CMAKE_JAVA_COMPILE_FLAGS "-source" "1.8" "-target" "1.8") install( TARGETS Native - RUNTIME DESTINATION ${bindir} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ARCHIVE DESTINATION ${libdir} LIBRARY DESTINATION ${libdir} ) diff --git a/pl/CMakeLists.txt b/pl/CMakeLists.txt index 484fd912d..01d1ae27d 100644 --- a/pl/CMakeLists.txt +++ b/pl/CMakeLists.txt @@ -79,7 +79,7 @@ else () ) install(FILES ${CMAKE_TOP_BINARY_DIR}/${YAP_STARTUP} - DESTINATION ${dlls} + DESTINATION ${YAP_INSTALL_DLLDIR} ) endif() From 3061844c950349aa7f37e28ae01f8fcf7b872460 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Sun, 10 Dec 2017 01:22:45 +0000 Subject: [PATCH 11/14] Fixes, mostly to the biting o --- C/c_interface.c | 4390 ++++++++++++++++++++----------------------- C/load_dl.c | 25 +- C/qlyr.c | 4 +- C/save.c | 48 +- C/stdpreds.c | 8 +- C/text.c | 2 +- C/yap-args.c | 1624 ++++++++++------ CMakeLists.txt | 7 +- H/Yap.h | 3 +- H/YapGFlagInfo.h | 2 +- H/YapTerm.h | 169 -- H/Yapproto.h | 14 +- config.h.cmake | 16 +- os/iopreds.c | 8 +- os/iopreds.h | 1 - os/sysbits.c | 339 +--- pl/CMakeLists.txt | 6 +- pl/arith.yap | 3 +- pl/boot.yap | 8 +- pl/init.yap | 1 + pl/load_foreign.yap | 2 +- pl/meta.yap | 3 + 22 files changed, 3137 insertions(+), 3546 deletions(-) delete mode 100644 H/YapTerm.h diff --git a/C/c_interface.c b/C/c_interface.c index 0ea3a2309..805c3257d 100755 --- a/C/c_interface.c +++ b/C/c_interface.c @@ -20,7 +20,7 @@ * @file c_interface.c * * @addtogroup ChYInterface -*/ + */ #ifndef C_INTERFACE_C @@ -75,18 +75,17 @@ typedef void *atom_t; typedef void *functor_t; typedef enum { - FRG_FIRST_CALL = 0, /* Initial call */ - FRG_CUTTED = 1, /* Context was cutted */ - FRG_REDO = 2 /* Normal redo */ + FRG_FIRST_CALL = 0, /* Initial call */ + FRG_CUTTED = 1, /* Context was cutted */ + FRG_REDO = 2 /* Normal redo */ } frg_code; struct foreign_context { - uintptr_t context; /* context value */ - frg_code control; /* FRG_* action */ - struct PL_local_data *engine; /* invoking engine */ + uintptr_t context; /* context value */ + frg_code control; /* FRG_* action */ + struct PL_local_data *engine; /* invoking engine */ }; - X_API bool python_in_python; X_API int YAP_Reset(yap_reset_t mode); @@ -141,7 +140,8 @@ X_API yhandle_t YAP_CurrentSlot(void); /// @brief allocate n empty new slots /// -/// Return a handle to the system's default slo t. iX_API yhandle_t YAP_NewSlots(int NumberOfSlots); +/// Return a handle to the system's default slo t. +/// iX_API yhandle_t YAP_NewSlots(int NumberOfSlots); /// @brief allocate n empty new slots /// @@ -190,67 +190,67 @@ X_API void YAP_SlotsToArgs(int HowMany, YAP_handle_t slot); /// @} static arity_t current_arity(void) { - CACHE_REGS - if (P && PREVOP(P, Osbpp)->opc == Yap_opcode(_call_usercpred)) { - return PREVOP(P, Osbpp)->y_u.Osbpp.p->ArityOfPE; - } else { - return 0; - } + CACHE_REGS + if (P && PREVOP(P, Osbpp)->opc == Yap_opcode(_call_usercpred)) { + return PREVOP(P, Osbpp)->y_u.Osbpp.p->ArityOfPE; + } else { + return 0; + } } static int doexpand(UInt sz) { - CACHE_REGS - UInt arity; + CACHE_REGS + UInt arity; - if (P && PREVOP(P, Osbpp)->opc == Yap_opcode(_call_usercpred)) { - arity = PREVOP(P, Osbpp)->y_u.Osbpp.p->ArityOfPE; - } else { - arity = 0; - } - if (!Yap_gcl(sz, arity, ENV, gc_P(P, CP))) { - return FALSE; - } - return TRUE; + if (P && PREVOP(P, Osbpp)->opc == Yap_opcode(_call_usercpred)) { + arity = PREVOP(P, Osbpp)->y_u.Osbpp.p->ArityOfPE; + } else { + arity = 0; + } + if (!Yap_gcl(sz, arity, ENV, gc_P(P, CP))) { + return FALSE; + } + return TRUE; } X_API YAP_Term YAP_A(int i) { - CACHE_REGS - return (Deref(XREGS[i])); + CACHE_REGS + return (Deref(XREGS[i])); } X_API YAP_Bool YAP_IsIntTerm(YAP_Term t) { return IsIntegerTerm(t); } X_API YAP_Bool YAP_IsNumberTerm(YAP_Term t) { - return IsIntegerTerm(t) || IsIntTerm(t) || IsFloatTerm(t) || IsBigIntTerm(t); + return IsIntegerTerm(t) || IsIntTerm(t) || IsFloatTerm(t) || IsBigIntTerm(t); } X_API YAP_Bool YAP_IsLongIntTerm(YAP_Term t) { return IsLongIntTerm(t); } X_API YAP_Bool YAP_IsBigNumTerm(YAP_Term t) { #if USE_GMP - CELL *pt; - if (IsVarTerm(t)) - return FALSE; - if (!IsBigIntTerm(t)) - return FALSE; - pt = RepAppl(t); - return pt[1] == BIG_INT; -#else + CELL *pt; + if (IsVarTerm(t)) return FALSE; + if (!IsBigIntTerm(t)) + return FALSE; + pt = RepAppl(t); + return pt[1] == BIG_INT; +#else + return FALSE; #endif } X_API YAP_Bool YAP_IsRationalTerm(YAP_Term t) { #if USE_GMP - CELL *pt; - if (IsVarTerm(t)) - return FALSE; - if (!IsBigIntTerm(t)) - return FALSE; - pt = RepAppl(t); - return pt[1] == BIG_RATIONAL; -#else + CELL *pt; + if (IsVarTerm(t)) return FALSE; + if (!IsBigIntTerm(t)) + return FALSE; + pt = RepAppl(t); + return pt[1] == BIG_RATIONAL; +#else + return FALSE; #endif } @@ -269,348 +269,348 @@ X_API YAP_Bool YAP_IsAtomTerm(Term t) { return (IsAtomTerm(t)); } X_API YAP_Bool YAP_IsPairTerm(Term t) { return (IsPairTerm(t)); } X_API YAP_Bool YAP_IsApplTerm(Term t) { - return IsApplTerm(t) && !IsExtensionFunctor(FunctorOfTerm(t)); + return IsApplTerm(t) && !IsExtensionFunctor(FunctorOfTerm(t)); } X_API YAP_Bool YAP_IsCompoundTerm(Term t) { - return (IsApplTerm(t) && !IsExtensionFunctor(FunctorOfTerm(t))) || - IsPairTerm(t); + return (IsApplTerm(t) && !IsExtensionFunctor(FunctorOfTerm(t))) || + IsPairTerm(t); } X_API Term YAP_MkIntTerm(Int n) { - CACHE_REGS - Term I; - BACKUP_H(); + CACHE_REGS + Term I; + BACKUP_H(); - I = MkIntegerTerm(n); - RECOVER_H(); - return I; + I = MkIntegerTerm(n); + RECOVER_H(); + return I; } X_API Term YAP_MkStringTerm(const char *n) { - CACHE_REGS - Term I; - BACKUP_H(); + CACHE_REGS + Term I; + BACKUP_H(); - I = MkStringTerm(n); - RECOVER_H(); - return I; + I = MkStringTerm(n); + RECOVER_H(); + return I; } X_API Term YAP_MkUnsignedStringTerm(const unsigned char *n) { - CACHE_REGS - Term I; - BACKUP_H(); + CACHE_REGS + Term I; + BACKUP_H(); - I = MkUStringTerm(n); - RECOVER_H(); - return I; + I = MkUStringTerm(n); + RECOVER_H(); + return I; } X_API const char *YAP_StringOfTerm(Term t) { return StringOfTerm(t); } X_API const unsigned char *YAP_UnsignedStringOfTerm(Term t) { - return UStringOfTerm(t); + return UStringOfTerm(t); } X_API Int YAP_IntOfTerm(Term t) { - if (!IsApplTerm(t)) - return IntOfTerm(t); - else { - return LongIntOfTerm(t); - } + if (!IsApplTerm(t)) + return IntOfTerm(t); + else { + return LongIntOfTerm(t); + } } X_API Term YAP_MkBigNumTerm(void *big) { #if USE_GMP - Term I; - BACKUP_H(); - I = Yap_MkBigIntTerm(big); - RECOVER_H(); - return I; + Term I; + BACKUP_H(); + I = Yap_MkBigIntTerm(big); + RECOVER_H(); + return I; #else - return TermNil; + return TermNil; #endif /* USE_GMP */ } X_API YAP_Bool YAP_BigNumOfTerm(Term t, void *b) { #if USE_GMP - MP_INT *bz = (MP_INT *) b; - if (IsVarTerm(t)) - return FALSE; - if (!IsBigIntTerm(t)) - return FALSE; - mpz_set(bz, Yap_BigIntOfTerm(t)); - return TRUE; -#else + MP_INT *bz = (MP_INT *)b; + if (IsVarTerm(t)) return FALSE; + if (!IsBigIntTerm(t)) + return FALSE; + mpz_set(bz, Yap_BigIntOfTerm(t)); + return TRUE; +#else + return FALSE; #endif /* USE_GMP */ } X_API Term YAP_MkRationalTerm(void *big) { #if USE_GMP - Term I; - BACKUP_H(); - I = Yap_MkBigRatTerm((MP_RAT *) big); - RECOVER_H(); - return I; + Term I; + BACKUP_H(); + I = Yap_MkBigRatTerm((MP_RAT *)big); + RECOVER_H(); + return I; #else - return TermNil; + return TermNil; #endif /* USE_GMP */ } X_API YAP_Bool YAP_RationalOfTerm(Term t, void *b) { #if USE_GMP - MP_RAT *br = (MP_RAT *) b; - if (IsVarTerm(t)) - return FALSE; - if (!IsBigIntTerm(t)) - return FALSE; - mpq_set(br, Yap_BigRatOfTerm(t)); - return TRUE; -#else + MP_RAT *br = (MP_RAT *)b; + if (IsVarTerm(t)) return FALSE; + if (!IsBigIntTerm(t)) + return FALSE; + mpq_set(br, Yap_BigRatOfTerm(t)); + return TRUE; +#else + return FALSE; #endif /* USE_GMP */ } X_API Term YAP_MkBlobTerm(unsigned int sz) { - CACHE_REGS - Term I; - MP_INT *dst; - BACKUP_H(); + CACHE_REGS + Term I; + MP_INT *dst; + BACKUP_H(); - while (HR + (sz + sizeof(MP_INT) / sizeof(CELL) + 2) > ASP - 1024) { - if (!doexpand((sz + sizeof(MP_INT) / sizeof(CELL) + 2) * sizeof(CELL))) { - Yap_Error(RESOURCE_ERROR_STACK, TermNil, - "YAP failed to grow the stack while constructing a blob: %s", - LOCAL_ErrorMessage); - return TermNil; - } + while (HR + (sz + sizeof(MP_INT) / sizeof(CELL) + 2) > ASP - 1024) { + if (!doexpand((sz + sizeof(MP_INT) / sizeof(CELL) + 2) * sizeof(CELL))) { + Yap_Error(RESOURCE_ERROR_STACK, TermNil, + "YAP failed to grow the stack while constructing a blob: %s", + LOCAL_ErrorMessage); + return TermNil; } - I = AbsAppl(HR); - HR[0] = (CELL) FunctorBigInt; - HR[1] = ARRAY_INT; - dst = (MP_INT *) (HR + 2); - dst->_mp_size = 0L; - dst->_mp_alloc = sz; - HR += (2 + sizeof(MP_INT) / sizeof(CELL)); - HR[sz] = EndSpecials; - HR += sz + 1; - RECOVER_H(); + } + I = AbsAppl(HR); + HR[0] = (CELL)FunctorBigInt; + HR[1] = ARRAY_INT; + dst = (MP_INT *)(HR + 2); + dst->_mp_size = 0L; + dst->_mp_alloc = sz; + HR += (2 + sizeof(MP_INT) / sizeof(CELL)); + HR[sz] = EndSpecials; + HR += sz + 1; + RECOVER_H(); - return I; + return I; } X_API void *YAP_BlobOfTerm(Term t) { - MP_INT *src; + MP_INT *src; - if (IsVarTerm(t)) - return NULL; - if (!IsBigIntTerm(t)) - return NULL; - src = (MP_INT *) (RepAppl(t) + 2); - return (void *) (src + 1); + if (IsVarTerm(t)) + return NULL; + if (!IsBigIntTerm(t)) + return NULL; + src = (MP_INT *)(RepAppl(t) + 2); + return (void *)(src + 1); } X_API Term YAP_MkFloatTerm(double n) { - CACHE_REGS - Term t; - BACKUP_H(); + CACHE_REGS + Term t; + BACKUP_H(); - t = MkFloatTerm(n); + t = MkFloatTerm(n); - RECOVER_H(); - return t; + RECOVER_H(); + return t; } X_API YAP_Float YAP_FloatOfTerm(YAP_Term t) { return (FloatOfTerm(t)); } X_API Term YAP_MkAtomTerm(YAP_Atom n) { - Term t; + Term t; - t = MkAtomTerm(n); - return t; + t = MkAtomTerm(n); + return t; } X_API YAP_Atom YAP_AtomOfTerm(Term t) { return (AtomOfTerm(t)); } X_API bool YAP_IsWideAtom(YAP_Atom a) { - const unsigned char *s = RepAtom(a)->UStrOfAE; - int32_t v; - while (*s) { - size_t n = get_utf8(s, 1, &v); - if (n > 1) - return true; - } - return false; + const unsigned char *s = RepAtom(a)->UStrOfAE; + int32_t v; + while (*s) { + size_t n = get_utf8(s, 1, &v); + if (n > 1) + return true; + } + return false; } X_API const char *YAP_AtomName(YAP_Atom a) { - const char *o; + const char *o; - o = AtomName(a); - return (o); + o = AtomName(a); + return (o); } X_API const wchar_t *YAP_WideAtomName(YAP_Atom a) { - int32_t v; - const unsigned char *s = RepAtom(a)->UStrOfAE; - size_t n = strlen_utf8(s); - wchar_t *dest = Malloc((n + 1) * sizeof(wchar_t)), *o = dest; - while (*s) { - size_t n = get_utf8(s, 1, &v); - if (n == 0) - return NULL; - *o++ = v; - } - o[0] = '\0'; - return dest; + int32_t v; + const unsigned char *s = RepAtom(a)->UStrOfAE; + size_t n = strlen_utf8(s); + wchar_t *dest = Malloc((n + 1) * sizeof(wchar_t)), *o = dest; + while (*s) { + size_t n = get_utf8(s, 1, &v); + if (n == 0) + return NULL; + *o++ = v; + } + o[0] = '\0'; + return dest; } X_API YAP_Atom YAP_LookupAtom(const char *c) { - CACHE_REGS - Atom a; + CACHE_REGS + Atom a; - while (TRUE) { - a = Yap_LookupAtom(c); - if (a == NIL || Yap_get_signal(YAP_CDOVF_SIGNAL)) { - if (!Yap_locked_growheap(FALSE, 0, NULL)) { - Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", - LOCAL_ErrorMessage); - } - } else { - return a; - } + while (TRUE) { + a = Yap_LookupAtom(c); + if (a == NIL || Yap_get_signal(YAP_CDOVF_SIGNAL)) { + if (!Yap_locked_growheap(FALSE, 0, NULL)) { + Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", + LOCAL_ErrorMessage); + } + } else { + return a; } - return NULL; + } + return NULL; } X_API YAP_Atom YAP_LookupWideAtom(const wchar_t *c) { - CACHE_REGS - Atom a; + CACHE_REGS + Atom a; - while (TRUE) { - a = Yap_NWCharsToAtom(c, -1 USES_REGS); - if (a == NIL || Yap_get_signal(YAP_CDOVF_SIGNAL)) { - if (!Yap_locked_growheap(FALSE, 0, NULL)) { - Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", - LOCAL_ErrorMessage); - } - } else { - return a; - } + while (TRUE) { + a = Yap_NWCharsToAtom(c, -1 USES_REGS); + if (a == NIL || Yap_get_signal(YAP_CDOVF_SIGNAL)) { + if (!Yap_locked_growheap(FALSE, 0, NULL)) { + Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", + LOCAL_ErrorMessage); + } + } else { + return a; } - return NULL; + } + return NULL; } X_API YAP_Atom YAP_FullLookupAtom(const char *c) { - CACHE_REGS - Atom at; + CACHE_REGS + Atom at; - while (TRUE) { - at = Yap_FullLookupAtom(c); - if (at == NIL || Yap_get_signal(YAP_CDOVF_SIGNAL)) { - if (!Yap_locked_growheap(FALSE, 0, NULL)) { - Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", - LOCAL_ErrorMessage); - } - } else { - return at; - } + while (TRUE) { + at = Yap_FullLookupAtom(c); + if (at == NIL || Yap_get_signal(YAP_CDOVF_SIGNAL)) { + if (!Yap_locked_growheap(FALSE, 0, NULL)) { + Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", + LOCAL_ErrorMessage); + } + } else { + return at; } - return NULL; + } + return NULL; } X_API size_t YAP_AtomNameLength(YAP_Atom at) { - if (IsBlob(at)) { - return RepAtom(at)->rep.blob->length; - } - unsigned char *c = RepAtom(at)->UStrOfAE; + if (IsBlob(at)) { + return RepAtom(at)->rep.blob->length; + } + unsigned char *c = RepAtom(at)->UStrOfAE; - return strlen_utf8(c); + return strlen_utf8(c); } X_API Term YAP_MkVarTerm(void) { - CACHE_REGS - CELL t; - BACKUP_H(); + CACHE_REGS + CELL t; + BACKUP_H(); - t = MkVarTerm(); + t = MkVarTerm(); - RECOVER_H(); - return t; + RECOVER_H(); + return t; } X_API Term YAP_MkPairTerm(Term t1, Term t2) { - CACHE_REGS - Term t; - BACKUP_H(); + CACHE_REGS + Term t; + BACKUP_H(); - while (HR > ASP - 1024) { - Int sl1 = Yap_InitSlot(t1); - Int sl2 = Yap_InitSlot(t2); - RECOVER_H(); - if (!Yap_dogc(0, NULL PASS_REGS)) { - return TermNil; - } - BACKUP_H(); - t1 = Yap_GetFromSlot(sl1); - t2 = Yap_GetFromSlot(sl2); - Yap_RecoverSlots(2, sl2); - } - t = MkPairTerm(t1, t2); + while (HR > ASP - 1024) { + Int sl1 = Yap_InitSlot(t1); + Int sl2 = Yap_InitSlot(t2); RECOVER_H(); - return t; + if (!Yap_dogc(0, NULL PASS_REGS)) { + return TermNil; + } + BACKUP_H(); + t1 = Yap_GetFromSlot(sl1); + t2 = Yap_GetFromSlot(sl2); + Yap_RecoverSlots(2, sl2); + } + t = MkPairTerm(t1, t2); + RECOVER_H(); + return t; } X_API Term YAP_MkListFromTerms(Term *ta, Int sz) { - CACHE_REGS - Term t; - CELL *h; - if (sz == 0) - return TermNil; - BACKUP_H(); - while (HR + sz * 2 > ASP - 1024) { - Int sl1 = Yap_InitSlot((CELL) ta); - RECOVER_H(); - if (!Yap_dogc(0, NULL PASS_REGS)) { - return TermNil; - } - BACKUP_H(); - ta = (CELL *) Yap_GetFromSlot(sl1); - Yap_RecoverSlots(1, sl1); - } - h = HR; - t = AbsPair(h); - while (sz--) { - Term ti = *ta++; - if (IsVarTerm(ti)) { - RESET_VARIABLE(h); - Yap_unify(ti, h[0]); - } else { - h[0] = ti; - } - h[1] = AbsPair(h + 2); - h += 2; - } - h[-1] = TermNil; - HR = h; + CACHE_REGS + Term t; + CELL *h; + if (sz == 0) + return TermNil; + BACKUP_H(); + while (HR + sz * 2 > ASP - 1024) { + Int sl1 = Yap_InitSlot((CELL)ta); RECOVER_H(); - return t; + if (!Yap_dogc(0, NULL PASS_REGS)) { + return TermNil; + } + BACKUP_H(); + ta = (CELL *)Yap_GetFromSlot(sl1); + Yap_RecoverSlots(1, sl1); + } + h = HR; + t = AbsPair(h); + while (sz--) { + Term ti = *ta++; + if (IsVarTerm(ti)) { + RESET_VARIABLE(h); + Yap_unify(ti, h[0]); + } else { + h[0] = ti; + } + h[1] = AbsPair(h + 2); + h += 2; + } + h[-1] = TermNil; + HR = h; + RECOVER_H(); + return t; } X_API Term YAP_MkNewPairTerm() { - CACHE_REGS - Term t; - BACKUP_H(); + CACHE_REGS + Term t; + BACKUP_H(); - if (HR > ASP - 1024) - t = TermNil; - else - t = Yap_MkNewPairTerm(); + if (HR > ASP - 1024) + t = TermNil; + else + t = Yap_MkNewPairTerm(); - RECOVER_H(); - return t; + RECOVER_H(); + return t; } X_API Term YAP_HeadOfTerm(Term t) { return (HeadOfTerm(t)); } @@ -618,59 +618,59 @@ X_API Term YAP_HeadOfTerm(Term t) { return (HeadOfTerm(t)); } X_API Term YAP_TailOfTerm(Term t) { return (TailOfTerm(t)); } X_API Int YAP_SkipList(Term *l, Term **tailp) { - return Yap_SkipList(l, tailp); - Int length = 0; - Term *s; /* slow */ - Term v; /* temporary */ + return Yap_SkipList(l, tailp); + Int length = 0; + Term *s; /* slow */ + Term v; /* temporary */ - do_derefa(v, l, derefa_unk, derefa_nonvar); - s = l; + do_derefa(v, l, derefa_unk, derefa_nonvar); + s = l; - if (IsPairTerm(*l)) { - intptr_t power = 1, lam = 0; - do { - if (power == lam) { - s = l; - power *= 2; - lam = 0; - } - lam++; - length++; - l = RepPair(*l) + 1; - do_derefa(v, l, derefa2_unk, derefa2_nonvar); - } while (*l != *s && IsPairTerm(*l)); - } - *tailp = l; + if (IsPairTerm(*l)) { + intptr_t power = 1, lam = 0; + do { + if (power == lam) { + s = l; + power *= 2; + lam = 0; + } + lam++; + length++; + l = RepPair(*l) + 1; + do_derefa(v, l, derefa2_unk, derefa2_nonvar); + } while (*l != *s && IsPairTerm(*l)); + } + *tailp = l; - return length; + return length; } X_API Term YAP_MkApplTerm(YAP_Functor f, UInt arity, Term args[]) { - CACHE_REGS - Term t; - BACKUP_H(); + CACHE_REGS + Term t; + BACKUP_H(); - if (HR + arity > ASP - 1024) - t = TermNil; - else - t = Yap_MkApplTerm(f, arity, args); + if (HR + arity > ASP - 1024) + t = TermNil; + else + t = Yap_MkApplTerm(f, arity, args); - RECOVER_H(); - return t; + RECOVER_H(); + return t; } X_API Term YAP_MkNewApplTerm(YAP_Functor f, UInt arity) { - CACHE_REGS - Term t; - BACKUP_H(); + CACHE_REGS + Term t; + BACKUP_H(); - if (HR + arity > ASP - 1024) - t = TermNil; - else - t = Yap_MkNewApplTerm(f, arity); + if (HR + arity > ASP - 1024) + t = TermNil; + else + t = Yap_MkNewApplTerm(f, arity); - RECOVER_H(); - return t; + RECOVER_H(); + return t; } X_API YAP_Functor YAP_FunctorOfTerm(Term t) { return (FunctorOfTerm(t)); } @@ -678,188 +678,190 @@ X_API YAP_Functor YAP_FunctorOfTerm(Term t) { return (FunctorOfTerm(t)); } X_API Term YAP_ArgOfTerm(UInt n, Term t) { return (ArgOfTerm(n, t)); } X_API Term *YAP_ArgsOfTerm(Term t) { - if (IsApplTerm(t)) - return RepAppl(t) + 1; - else if (IsPairTerm(t)) - return RepPair(t); - return NULL; + if (IsApplTerm(t)) + return RepAppl(t) + 1; + else if (IsPairTerm(t)) + return RepPair(t); + return NULL; } -X_API YAP_Functor YAP_MkFunctor(YAP_Atom a, UInt n) { return (Yap_MkFunctor(a, n)); } +X_API YAP_Functor YAP_MkFunctor(YAP_Atom a, UInt n) { + return (Yap_MkFunctor(a, n)); +} X_API YAP_Atom YAP_NameOfFunctor(YAP_Functor f) { return (NameOfFunctor(f)); } X_API UInt YAP_ArityOfFunctor(YAP_Functor f) { return (ArityOfFunctor(f)); } X_API void *YAP_ExtraSpaceCut(void) { - CACHE_REGS - void *ptr; - BACKUP_B(); + CACHE_REGS + void *ptr; + BACKUP_B(); - ptr = (void *) (((CELL *) (Yap_REGS.CUT_C_TOP)) - - (((yamop *) Yap_REGS.CUT_C_TOP->try_userc_cut_yamop) - ->y_u.OtapFs.extra)); + ptr = (void *)(((CELL *)(Yap_REGS.CUT_C_TOP)) - + (((yamop *)Yap_REGS.CUT_C_TOP->try_userc_cut_yamop) + ->y_u.OtapFs.extra)); - RECOVER_B(); - return (ptr); + RECOVER_B(); + return (ptr); } X_API void *YAP_ExtraSpace(void) { - CACHE_REGS - void *ptr; - BACKUP_B(); - BACKUP_H(); + CACHE_REGS + void *ptr; + BACKUP_B(); + BACKUP_H(); - /* find a pointer to extra space allocable */ - ptr = (void *) ((CELL *) (B + 1) + P->y_u.OtapFs.s); - B->cp_h = HR; + /* find a pointer to extra space allocable */ + ptr = (void *)((CELL *)(B + 1) + P->y_u.OtapFs.s); + B->cp_h = HR; - RECOVER_H(); - RECOVER_B(); - return (ptr); + RECOVER_H(); + RECOVER_B(); + return (ptr); } X_API void YAP_cut_up(void) { - CACHE_REGS - BACKUP_B(); - { - while (POP_CHOICE_POINT(B->cp_b)) { - POP_EXECUTE(); - } - } - /* This is complicated: make sure we can restore the ASP - pointer back to where cut_up called it. Slots depend on it. */ - if (ENV > B->cp_env) { - ASP = B->cp_env; + CACHE_REGS + BACKUP_B(); + { + while (POP_CHOICE_POINT(B->cp_b)) { + POP_EXECUTE(); } + } + /* This is complicated: make sure we can restore the ASP + pointer back to where cut_up called it. Slots depend on it. */ + if (ENV > B->cp_env) { + ASP = B->cp_env; + } #ifdef YAPOR - { - choiceptr cut_pt; + { + choiceptr cut_pt; - cut_pt = B->cp_b; - /* make sure we prune C-choicepoints */ - if (POP_CHOICE_POINT(B->cp_b)) { - POP_EXECUTE(); - } - CUT_prune_to(cut_pt); - Yap_TrimTrail(); - B = cut_pt; - } -#else + cut_pt = B->cp_b; /* make sure we prune C-choicepoints */ if (POP_CHOICE_POINT(B->cp_b)) { - POP_EXECUTE(); + POP_EXECUTE(); } + CUT_prune_to(cut_pt); Yap_TrimTrail(); - B = B->cp_b; /* cut_fail */ + B = cut_pt; + } +#else + /* make sure we prune C-choicepoints */ + if (POP_CHOICE_POINT(B->cp_b)) { + POP_EXECUTE(); + } + Yap_TrimTrail(); + B = B->cp_b; /* cut_fail */ #endif - HB = B->cp_h; /* cut_fail */ - RECOVER_B(); + HB = B->cp_h; /* cut_fail */ + RECOVER_B(); } X_API bool YAP_Unify(Term t1, Term t2) { - Int out; - BACKUP_MACHINE_REGS(); + Int out; + BACKUP_MACHINE_REGS(); - out = Yap_unify(t1, t2); + out = Yap_unify(t1, t2); - RECOVER_MACHINE_REGS(); - return out; + RECOVER_MACHINE_REGS(); + return out; } X_API int YAP_Unifiable(Term t1, Term t2) { - int out; - BACKUP_MACHINE_REGS(); + int out; + BACKUP_MACHINE_REGS(); - out = Yap_Unifiable(t1, t2); + out = Yap_Unifiable(t1, t2); - RECOVER_MACHINE_REGS(); - return out; + RECOVER_MACHINE_REGS(); + return out; } /* == */ X_API int YAP_ExactlyEqual(Term t1, Term t2) { - int out; - BACKUP_MACHINE_REGS(); + int out; + BACKUP_MACHINE_REGS(); - out = Yap_eq(t1, t2); + out = Yap_eq(t1, t2); - RECOVER_MACHINE_REGS(); - return out; + RECOVER_MACHINE_REGS(); + return out; } /* =@= */ X_API int YAP_Variant(Term t1, Term t2) { - int out; - BACKUP_MACHINE_REGS(); + int out; + BACKUP_MACHINE_REGS(); - out = Yap_Variant(Deref(t1), Deref(t2)); + out = Yap_Variant(Deref(t1), Deref(t2)); - RECOVER_MACHINE_REGS(); - return out; + RECOVER_MACHINE_REGS(); + return out; } /* =@= */ X_API Int YAP_TermHash(Term t, Int sz, Int depth, int variant) { - Int out; + Int out; - BACKUP_MACHINE_REGS(); + BACKUP_MACHINE_REGS(); - out = Yap_TermHash(t, sz, depth, variant); + out = Yap_TermHash(t, sz, depth, variant); - RECOVER_MACHINE_REGS(); - return out; + RECOVER_MACHINE_REGS(); + return out; } X_API Int YAP_CurrentSlot(void) { - CACHE_REGS - return Yap_CurrentSlot(); + CACHE_REGS + return Yap_CurrentSlot(); } X_API Int YAP_NewSlots(int n) { - CACHE_REGS - return Yap_NewSlots(n); + CACHE_REGS + return Yap_NewSlots(n); } X_API Int YAP_InitSlot(Term t) { - CACHE_REGS - return Yap_InitSlot(t); + CACHE_REGS + return Yap_InitSlot(t); } X_API int YAP_RecoverSlots(int n, Int top_slot) { - CACHE_REGS - return Yap_RecoverSlots(n, top_slot); + CACHE_REGS + return Yap_RecoverSlots(n, top_slot); } X_API Term YAP_GetFromSlot(Int slot) { - CACHE_REGS - return Yap_GetFromSlot(slot); + CACHE_REGS + return Yap_GetFromSlot(slot); } X_API Term *YAP_AddressFromSlot(Int slot) { - CACHE_REGS - return Yap_AddressFromSlot(slot); + CACHE_REGS + return Yap_AddressFromSlot(slot); } X_API Term *YAP_AddressOfTermInSlot(Int slot) { - CACHE_REGS - Term *b = Yap_AddressFromSlot(slot); - Term a = *b; - restart: - if (!IsVarTerm(a)) { - return (b); - } else if (a == (CELL) b) { - return (b); - } else { - b = (CELL *) a; - a = *b; - goto restart; - } + CACHE_REGS + Term *b = Yap_AddressFromSlot(slot); + Term a = *b; +restart: + if (!IsVarTerm(a)) { + return (b); + } else if (a == (CELL)b) { + return (b); + } else { + b = (CELL *)a; + a = *b; + goto restart; + } } X_API void YAP_PutInSlot(Int slot, Term t) { - CACHE_REGS - Yap_PutInSlot(slot, t); + CACHE_REGS + Yap_PutInSlot(slot, t); } typedef Int (*CPredicate0)(void); @@ -895,83 +897,73 @@ typedef Int (*CPredicate10)(yhandle_t, yhandle_t, yhandle_t, yhandle_t, typedef Int (*CPredicateV)(yhandle_t, yhandle_t, struct foreign_context *); static Int execute_cargs(PredEntry *pe, CPredicate exec_code USES_REGS) { - Int rc; - yhandle_t a1; - switch (pe->ArityOfPE) { - case 0: { - CPredicate0 code0 = (CPredicate0) exec_code; - return code0(); - } - case 1: { - CPredicate1 code1 = (CPredicate1) exec_code; - a1 = Yap_InitSlots(1, &ARG1); - rc = code1(a1); - } - break; - case 2: { - CPredicate2 code2 = (CPredicate2) exec_code; - a1 = Yap_InitSlots(2, &ARG1); - rc = code2(a1, a1 + 1); - } - break; - case 3: { - CPredicate3 code3 = (CPredicate3) exec_code; - a1 = Yap_InitSlots(3, &ARG1); - rc = code3(a1, a1 + 1, a1 + 2); - } - break; - case 4: { - CPredicate4 code4 = (CPredicate4) exec_code; - a1 = Yap_InitSlots(4, &ARG1); - rc = code4(a1, a1 + 1, a1 + 2, a1 + 3); - } - break; - case 5: { - CPredicate5 code5 = (CPredicate5) exec_code; - a1 = Yap_InitSlots(5, &ARG1); - rc = code5(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4); - } - break; + Int rc; + yhandle_t a1; + switch (pe->ArityOfPE) { + case 0: { + CPredicate0 code0 = (CPredicate0)exec_code; + return code0(); + } + case 1: { + CPredicate1 code1 = (CPredicate1)exec_code; + a1 = Yap_InitSlots(1, &ARG1); + rc = code1(a1); + } break; + case 2: { + CPredicate2 code2 = (CPredicate2)exec_code; + a1 = Yap_InitSlots(2, &ARG1); + rc = code2(a1, a1 + 1); + } break; + case 3: { + CPredicate3 code3 = (CPredicate3)exec_code; + a1 = Yap_InitSlots(3, &ARG1); + rc = code3(a1, a1 + 1, a1 + 2); + } break; + case 4: { + CPredicate4 code4 = (CPredicate4)exec_code; + a1 = Yap_InitSlots(4, &ARG1); + rc = code4(a1, a1 + 1, a1 + 2, a1 + 3); + } break; + case 5: { + CPredicate5 code5 = (CPredicate5)exec_code; + a1 = Yap_InitSlots(5, &ARG1); + rc = code5(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4); + } break; - case 6: { - CPredicate6 code6 = (CPredicate6) exec_code; - a1 = Yap_InitSlots(6, &ARG1); - rc = code6(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5); - } - break; - case 7: { - CPredicate7 code7 = (CPredicate7) exec_code; - a1 = Yap_InitSlots(7, &ARG1); - rc = code7(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6); - } - break; - case 8: { - CPredicate8 code8 = (CPredicate8) exec_code; - a1 = Yap_InitSlots(8, &ARG1); - rc = code8(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7); - } - break; - case 9: { - CPredicate9 code9 = (CPredicate9) exec_code; - a1 = Yap_InitSlots(9, &ARG1); - rc = code9(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, - a1 + 8); - } - break; - case 10: { - CPredicate10 code10 = (CPredicate10) exec_code; - a1 = Yap_InitSlots(10, &ARG1); - rc = code10(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, - a1 + 8, a1 + 9); - } - break; - default: - YAP_Error(SYSTEM_ERROR_INTERNAL, TermNil, - "YAP only supports SWI C-call with arity =< 10"); - return false; - } - Yap_RecoverSlots(pe->ArityOfPE, a1); - return rc; + case 6: { + CPredicate6 code6 = (CPredicate6)exec_code; + a1 = Yap_InitSlots(6, &ARG1); + rc = code6(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5); + } break; + case 7: { + CPredicate7 code7 = (CPredicate7)exec_code; + a1 = Yap_InitSlots(7, &ARG1); + rc = code7(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6); + } break; + case 8: { + CPredicate8 code8 = (CPredicate8)exec_code; + a1 = Yap_InitSlots(8, &ARG1); + rc = code8(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7); + } break; + case 9: { + CPredicate9 code9 = (CPredicate9)exec_code; + a1 = Yap_InitSlots(9, &ARG1); + rc = code9(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, + a1 + 8); + } break; + case 10: { + CPredicate10 code10 = (CPredicate10)exec_code; + a1 = Yap_InitSlots(10, &ARG1); + rc = code10(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, + a1 + 8, a1 + 9); + } break; + default: + YAP_Error(SYSTEM_ERROR_INTERNAL, TermNil, + "YAP only supports SWI C-call with arity =< 10"); + return false; + } + Yap_RecoverSlots(pe->ArityOfPE, a1); + return rc; } typedef uintptr_t (*CBPredicate0)(struct foreign_context *); @@ -1013,154 +1005,154 @@ typedef uintptr_t (*CBPredicate10)(yhandle_t, yhandle_t, yhandle_t, yhandle_t, static uintptr_t execute_cargs_back(PredEntry *pe, CPredicate exec_code, struct foreign_context *ctx USES_REGS) { - switch (pe->ArityOfPE) { - case 0: { - CBPredicate0 code0 = (CBPredicate0) exec_code; - return code0(ctx); - } - case 1: { - CBPredicate1 code1 = (CBPredicate1) exec_code; - yhandle_t a1 = Yap_InitSlots(1, &B->cp_a1); - return code1(a1, ctx); - } - case 2: { - CBPredicate2 code2 = (CBPredicate2) exec_code; - yhandle_t a1 = Yap_InitSlots(2, &B->cp_a1); - return code2(a1, a1 + 1, ctx); - } - case 3: { - CBPredicate3 code3 = (CBPredicate3) exec_code; - yhandle_t a1 = Yap_InitSlots(3, &B->cp_a1); - return code3(a1, a1 + 1, a1 + 2, ctx); - } - case 4: { - CBPredicate4 code4 = (CBPredicate4) exec_code; - yhandle_t a1 = Yap_InitSlots(4, &B->cp_a1); - return code4(a1, a1 + 1, a1 + 2, a1 + 3, ctx); - } - case 5: { - CBPredicate5 code5 = (CBPredicate5) exec_code; - yhandle_t a1 = Yap_InitSlots(5, &B->cp_a1); - return code5(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, ctx); - } - case 6: { - CBPredicate6 code6 = (CBPredicate6) exec_code; - yhandle_t a1 = Yap_InitSlots(6, &B->cp_a1); - return code6(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, ctx); - } - case 7: { - CBPredicate7 code7 = (CBPredicate7) exec_code; - yhandle_t a1 = Yap_InitSlots(7, &B->cp_a1); - return code7(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, ctx); - } - case 8: { - CBPredicate8 code8 = (CBPredicate8) exec_code; - yhandle_t a1 = Yap_InitSlots(8, &B->cp_a1); - return code8(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, - ctx); - } - case 9: { - CBPredicate9 code9 = (CBPredicate9) exec_code; - yhandle_t a1 = Yap_InitSlots(9, &B->cp_a1); - return code9(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, - a1 + 8, ctx); - } - case 10: { - CBPredicate10 code10 = (CBPredicate10) exec_code; - yhandle_t a1 = Yap_InitSlots(10, &B->cp_a1); - return code10(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, - a1 + 8, a1 + 9, ctx); - } - default: - YAP_Error(SYSTEM_ERROR_INTERNAL, TermNil, - "YAP only supports SWI C-call with arity =< 10"); - return (FALSE); - } + switch (pe->ArityOfPE) { + case 0: { + CBPredicate0 code0 = (CBPredicate0)exec_code; + return code0(ctx); + } + case 1: { + CBPredicate1 code1 = (CBPredicate1)exec_code; + yhandle_t a1 = Yap_InitSlots(1, &B->cp_a1); + return code1(a1, ctx); + } + case 2: { + CBPredicate2 code2 = (CBPredicate2)exec_code; + yhandle_t a1 = Yap_InitSlots(2, &B->cp_a1); + return code2(a1, a1 + 1, ctx); + } + case 3: { + CBPredicate3 code3 = (CBPredicate3)exec_code; + yhandle_t a1 = Yap_InitSlots(3, &B->cp_a1); + return code3(a1, a1 + 1, a1 + 2, ctx); + } + case 4: { + CBPredicate4 code4 = (CBPredicate4)exec_code; + yhandle_t a1 = Yap_InitSlots(4, &B->cp_a1); + return code4(a1, a1 + 1, a1 + 2, a1 + 3, ctx); + } + case 5: { + CBPredicate5 code5 = (CBPredicate5)exec_code; + yhandle_t a1 = Yap_InitSlots(5, &B->cp_a1); + return code5(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, ctx); + } + case 6: { + CBPredicate6 code6 = (CBPredicate6)exec_code; + yhandle_t a1 = Yap_InitSlots(6, &B->cp_a1); + return code6(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, ctx); + } + case 7: { + CBPredicate7 code7 = (CBPredicate7)exec_code; + yhandle_t a1 = Yap_InitSlots(7, &B->cp_a1); + return code7(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, ctx); + } + case 8: { + CBPredicate8 code8 = (CBPredicate8)exec_code; + yhandle_t a1 = Yap_InitSlots(8, &B->cp_a1); + return code8(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, + ctx); + } + case 9: { + CBPredicate9 code9 = (CBPredicate9)exec_code; + yhandle_t a1 = Yap_InitSlots(9, &B->cp_a1); + return code9(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, + a1 + 8, ctx); + } + case 10: { + CBPredicate10 code10 = (CBPredicate10)exec_code; + yhandle_t a1 = Yap_InitSlots(10, &B->cp_a1); + return code10(a1, a1 + 1, a1 + 2, a1 + 3, a1 + 4, a1 + 5, a1 + 6, a1 + 7, + a1 + 8, a1 + 9, ctx); + } + default: + YAP_Error(SYSTEM_ERROR_INTERNAL, TermNil, + "YAP only supports SWI C-call with arity =< 10"); + return (FALSE); + } } static uintptr_t complete_fail(choiceptr ptr, int has_cp USES_REGS) { - // this case is easy, jut be sure to throw everything - // after the old B; - while (B && B->cp_b && B->cp_b <= ptr) { - B = B->cp_b; - } - if (has_cp) - return do_cut(FALSE); - return FALSE; + // this case is easy, jut be sure to throw everything + // after the old B; + while (B && B->cp_b && B->cp_b <= ptr) { + B = B->cp_b; + } + if (has_cp) + return do_cut(FALSE); + return FALSE; } static uintptr_t complete_exit(choiceptr ptr, int has_cp, int cut_all USES_REGS) { - // the user often leaves open frames, especially in forward execution - while (B && (!ptr || B < ptr)) { - if (cut_all || B->cp_ap == NOCODE) { /* separator */ - do_cut(TRUE); // pushes B up - continue; - } else if (B->cp_ap->opc == RETRY_USERC_OPCODE && B->cp_b == ptr) { - // started the current choicepoint, I hope - return do_cut(TRUE); - } else - break; // oops, there is something else + // the user often leaves open frames, especially in forward execution + while (B && (!ptr || B < ptr)) { + if (cut_all || B->cp_ap == NOCODE) { /* separator */ + do_cut(TRUE); // pushes B up + continue; + } else if (B->cp_ap->opc == RETRY_USERC_OPCODE && B->cp_b == ptr) { + // started the current choicepoint, I hope + return do_cut(TRUE); + } else + break; // oops, there is something else + } + if (!ptr || B < ptr) { + // we're still not there yet + choiceptr new = B; + while (new &&new < ptr) { + if (new->cp_ap == NOCODE) /* separator */ + new->cp_ap = FAILCODE; // there are choice-points above but at least, + // these won't harm innocent code + else if (new->cp_ap->opc == RETRY_USERC_OPCODE && new->cp_b == ptr) { + // I can't cut, but I can tag it as done + new->cp_ap = FAILCODE; // there are choice-points above but at least, + // these won't harm innocent code + } + new = new->cp_b; } - if (!ptr || B < ptr) { - // we're still not there yet - choiceptr new = B; - while (new && new < ptr) { - if (new->cp_ap == NOCODE) /* separator */ - new->cp_ap = FAILCODE; // there are choice-points above but at least, - // these won't harm innocent code - else if (new->cp_ap->opc == RETRY_USERC_OPCODE && new->cp_b == ptr) { - // I can't cut, but I can tag it as done - new->cp_ap = FAILCODE; // there are choice-points above but at least, - // these won't harm innocent code - } - new = new->cp_b; - } + } + if (has_cp) { + if (B == ptr) { + return do_cut(TRUE); + } else { + ptr->cp_ap = FAILCODE; } - if (has_cp) { - if (B == ptr) { - return do_cut(TRUE); - } else { - ptr->cp_ap = FAILCODE; - } - } - return TRUE; + } + return TRUE; } X_API Int YAP_Execute(PredEntry *pe, CPredicate exec_code) { - CACHE_REGS - Int ret; - Int OASP = LCL0 - (CELL *) B; - // Term omod = CurrentModule; - // if (pe->PredFlags & CArgsPredFlag) { - // CurrentModule = pe->ModuleOfPred; - //} - if (pe->PredFlags & SWIEnvPredFlag) { - CPredicateV codev = (CPredicateV) exec_code; - struct foreign_context ctx; + CACHE_REGS + Int ret; + Int OASP = LCL0 - (CELL *)B; + // Term omod = CurrentModule; + // if (pe->PredFlags & CArgsPredFlag) { + // CurrentModule = pe->ModuleOfPred; + //} + if (pe->PredFlags & SWIEnvPredFlag) { + CPredicateV codev = (CPredicateV)exec_code; + struct foreign_context ctx; - ctx.engine = NULL; - yhandle_t s0 = Yap_InitSlots(pe->ArityOfPE, &ARG1); - PP = pe; - ret = codev(s0, 0, &ctx); - } else if (pe->PredFlags & CArgsPredFlag) { - PP = pe; - ret = execute_cargs(pe, exec_code PASS_REGS); - } else { - PP = pe; - ret = (exec_code)(PASS_REGS1); - } - PP = NULL; - // check for junk: open frames, etc */ - if (ret) - complete_exit(((choiceptr) (LCL0 - OASP)), FALSE, FALSE PASS_REGS); - else - complete_fail(((choiceptr) (LCL0 - OASP)), FALSE PASS_REGS); - // CurrentModule = omod; - if (!ret) { - Yap_RaiseException(); - } - return ret; + ctx.engine = NULL; + yhandle_t s0 = Yap_InitSlots(pe->ArityOfPE, &ARG1); + PP = pe; + ret = codev(s0, 0, &ctx); + } else if (pe->PredFlags & CArgsPredFlag) { + PP = pe; + ret = execute_cargs(pe, exec_code PASS_REGS); + } else { + PP = pe; + ret = (exec_code)(PASS_REGS1); + } + PP = NULL; + // check for junk: open frames, etc */ + if (ret) + complete_exit(((choiceptr)(LCL0 - OASP)), FALSE, FALSE PASS_REGS); + else + complete_fail(((choiceptr)(LCL0 - OASP)), FALSE PASS_REGS); + // CurrentModule = omod; + if (!ret) { + Yap_RaiseException(); + } + return ret; } #define FRG_REDO_MASK 0x00000003L @@ -1169,174 +1161,174 @@ X_API Int YAP_Execute(PredEntry *pe, CPredicate exec_code) { #define REDO_PTR 0x03 /* returned a pointer */ X_API Int YAP_ExecuteFirst(PredEntry *pe, CPredicate exec_code) { - CACHE_REGS - CELL ocp = LCL0 - (CELL *) B; - /* for slots to work */ - Int CurSlot = Yap_StartSlots(); - if (pe->PredFlags & - (SWIEnvPredFlag | CArgsPredFlag | ModuleTransparentPredFlag)) { - uintptr_t val; - CPredicateV codev = (CPredicateV) exec_code; - struct foreign_context *ctx = - (struct foreign_context *) (&EXTRA_CBACK_ARG(pe->ArityOfPE, 1)); + CACHE_REGS + CELL ocp = LCL0 - (CELL *)B; + /* for slots to work */ + Int CurSlot = Yap_StartSlots(); + if (pe->PredFlags & + (SWIEnvPredFlag | CArgsPredFlag | ModuleTransparentPredFlag)) { + uintptr_t val; + CPredicateV codev = (CPredicateV)exec_code; + struct foreign_context *ctx = + (struct foreign_context *)(&EXTRA_CBACK_ARG(pe->ArityOfPE, 1)); - PP = pe; - ctx->control = FRG_FIRST_CALL; - ctx->engine = NULL; //(PL_local_data *)Yap_regp; - ctx->context = (uintptr_t) NULL; - if (pe->PredFlags & CArgsPredFlag) { - val = execute_cargs_back(pe, exec_code, ctx PASS_REGS); - } else { - val = codev(Yap_InitSlots(pe->ArityOfPE, &ARG1), 0, ctx); - } - Yap_CloseSlots(CurSlot); - PP = NULL; - if (val == 0) { - if (Yap_RaiseException()) { - return false; - } - return complete_fail(((choiceptr) (LCL0 - ocp)), TRUE PASS_REGS); - } else if (val == 1) { /* TRUE */ - return complete_exit(((choiceptr) (LCL0 - ocp)), TRUE, FALSE PASS_REGS); - } else { - if ((val & REDO_PTR) == REDO_PTR) - ctx->context = (uintptr_t) (val & ~REDO_PTR); - else - ctx->context = (uintptr_t) ((val & ~REDO_PTR) >> FRG_REDO_BITS); - /* fix dropped cps */ - return complete_exit(((choiceptr) (LCL0 - ocp)), FALSE, FALSE PASS_REGS); - } + PP = pe; + ctx->control = FRG_FIRST_CALL; + ctx->engine = NULL; //(PL_local_data *)Yap_regp; + ctx->context = (uintptr_t)NULL; + if (pe->PredFlags & CArgsPredFlag) { + val = execute_cargs_back(pe, exec_code, ctx PASS_REGS); } else { - Int ret = (exec_code)(PASS_REGS1); - Yap_CloseSlots(CurSlot); - if (!ret) { - Yap_RaiseException(); - } - return ret; + val = codev(Yap_InitSlots(pe->ArityOfPE, &ARG1), 0, ctx); } + Yap_CloseSlots(CurSlot); + PP = NULL; + if (val == 0) { + if (Yap_RaiseException()) { + return false; + } + return complete_fail(((choiceptr)(LCL0 - ocp)), TRUE PASS_REGS); + } else if (val == 1) { /* TRUE */ + return complete_exit(((choiceptr)(LCL0 - ocp)), TRUE, FALSE PASS_REGS); + } else { + if ((val & REDO_PTR) == REDO_PTR) + ctx->context = (uintptr_t)(val & ~REDO_PTR); + else + ctx->context = (uintptr_t)((val & ~REDO_PTR) >> FRG_REDO_BITS); + /* fix dropped cps */ + return complete_exit(((choiceptr)(LCL0 - ocp)), FALSE, FALSE PASS_REGS); + } + } else { + Int ret = (exec_code)(PASS_REGS1); + Yap_CloseSlots(CurSlot); + if (!ret) { + Yap_RaiseException(); + } + return ret; + } } X_API Int YAP_ExecuteOnCut(PredEntry *pe, CPredicate exec_code, struct cut_c_str *top) { - CACHE_REGS - Int oB = LCL0 - (CELL *) B; - Int val; - /* for slots to work */ - yhandle_t CurSlot = Yap_StartSlots(); - /* find out where we belong */ - while (B < (choiceptr) top) { - oB = LCL0 - (CELL *) B; - B = B->cp_b; - } - PP = pe; - if (pe->PredFlags & (SWIEnvPredFlag | CArgsPredFlag)) { - // SWI Emulation - CPredicateV codev = (CPredicateV) exec_code; - struct foreign_context *ctx = - (struct foreign_context *) (&EXTRA_CBACK_ARG(pe->ArityOfPE, 1)); - CELL *args = B->cp_args; + CACHE_REGS + Int oB = LCL0 - (CELL *)B; + Int val; + /* for slots to work */ + yhandle_t CurSlot = Yap_StartSlots(); + /* find out where we belong */ + while (B < (choiceptr)top) { + oB = LCL0 - (CELL *)B; + B = B->cp_b; + } + PP = pe; + if (pe->PredFlags & (SWIEnvPredFlag | CArgsPredFlag)) { + // SWI Emulation + CPredicateV codev = (CPredicateV)exec_code; + struct foreign_context *ctx = + (struct foreign_context *)(&EXTRA_CBACK_ARG(pe->ArityOfPE, 1)); + CELL *args = B->cp_args; - B = (choiceptr) (LCL0 - oB); - ctx->control = FRG_CUTTED; - ctx->engine = NULL; //(PL_local_data *)Yap_regp; - if (pe->PredFlags & CArgsPredFlag) { - val = execute_cargs_back(pe, exec_code, ctx PASS_REGS); - } else { - val = codev(Yap_InitSlots(pe->ArityOfPE, args), 0, ctx); - } + B = (choiceptr)(LCL0 - oB); + ctx->control = FRG_CUTTED; + ctx->engine = NULL; //(PL_local_data *)Yap_regp; + if (pe->PredFlags & CArgsPredFlag) { + val = execute_cargs_back(pe, exec_code, ctx PASS_REGS); } else { - Int oYENV = LCL0 - YENV; - yamop *oP = P, *oCP = CP; - // YAP Native - B = (choiceptr) (LCL0 - oB); - val = exec_code(PASS_REGS1); - YENV = LCL0 - oYENV; - P = oP; - CP = oCP; - } - Yap_CloseSlots(CurSlot); - PP = NULL; - // B = LCL0-(CELL*)oB; - if (!val && Yap_RaiseException()) { - return false; - } else { /* TRUE */ - return val; + val = codev(Yap_InitSlots(pe->ArityOfPE, args), 0, ctx); } + } else { + Int oYENV = LCL0 - YENV; + yamop *oP = P, *oCP = CP; + // YAP Native + B = (choiceptr)(LCL0 - oB); + val = exec_code(PASS_REGS1); + YENV = LCL0 - oYENV; + P = oP; + CP = oCP; + } + Yap_CloseSlots(CurSlot); + PP = NULL; + // B = LCL0-(CELL*)oB; + if (!val && Yap_RaiseException()) { + return false; + } else { /* TRUE */ + return val; + } } X_API Int YAP_ExecuteNext(PredEntry *pe, CPredicate exec_code) { - CACHE_REGS - /* for slots to work */ - Yap_StartSlots(); - UInt ocp = LCL0 - (CELL *) B; - if (pe->PredFlags & (SWIEnvPredFlag | CArgsPredFlag)) { - Int val; - CPredicateV codev = (CPredicateV) exec_code; - struct foreign_context *ctx = - (struct foreign_context *) (&EXTRA_CBACK_ARG(pe->ArityOfPE, 1)); + CACHE_REGS + /* for slots to work */ + Yap_StartSlots(); + UInt ocp = LCL0 - (CELL *)B; + if (pe->PredFlags & (SWIEnvPredFlag | CArgsPredFlag)) { + Int val; + CPredicateV codev = (CPredicateV)exec_code; + struct foreign_context *ctx = + (struct foreign_context *)(&EXTRA_CBACK_ARG(pe->ArityOfPE, 1)); - PP = pe; - ctx->control = FRG_REDO; - if (pe->PredFlags & CArgsPredFlag) { - val = execute_cargs_back(pe, exec_code, ctx PASS_REGS); - } else { - val = codev(Yap_InitSlots(pe->ArityOfPE, &ARG1), 0, ctx); - } - /* we are below the original choice point ?? */ - /* make sure we clean up the frames left by the user */ - PP = NULL; - if (val == 0) { - if (Yap_RaiseException()) { - return FALSE; - } else { - return complete_fail(((choiceptr) (LCL0 - ocp)), TRUE PASS_REGS); - } - } else if (val == 1) { /* TRUE */ - return complete_exit(((choiceptr) (LCL0 - ocp)), TRUE, FALSE PASS_REGS); - } else { - if ((val & REDO_PTR) == REDO_PTR) - ctx->context = (uintptr_t) (val & ~REDO_PTR); - else - ctx->context = (uintptr_t) ((val & ~REDO_PTR) >> FRG_REDO_BITS); - } - /* fix dropped cps */ - return complete_exit(((choiceptr) (LCL0 - ocp)), FALSE, FALSE PASS_REGS); + PP = pe; + ctx->control = FRG_REDO; + if (pe->PredFlags & CArgsPredFlag) { + val = execute_cargs_back(pe, exec_code, ctx PASS_REGS); } else { - Int ret = (exec_code)(PASS_REGS1); - if (!ret) { - Yap_RaiseException(); - } - return ret; + val = codev(Yap_InitSlots(pe->ArityOfPE, &ARG1), 0, ctx); } + /* we are below the original choice point ?? */ + /* make sure we clean up the frames left by the user */ + PP = NULL; + if (val == 0) { + if (Yap_RaiseException()) { + return FALSE; + } else { + return complete_fail(((choiceptr)(LCL0 - ocp)), TRUE PASS_REGS); + } + } else if (val == 1) { /* TRUE */ + return complete_exit(((choiceptr)(LCL0 - ocp)), TRUE, FALSE PASS_REGS); + } else { + if ((val & REDO_PTR) == REDO_PTR) + ctx->context = (uintptr_t)(val & ~REDO_PTR); + else + ctx->context = (uintptr_t)((val & ~REDO_PTR) >> FRG_REDO_BITS); + } + /* fix dropped cps */ + return complete_exit(((choiceptr)(LCL0 - ocp)), FALSE, FALSE PASS_REGS); + } else { + Int ret = (exec_code)(PASS_REGS1); + if (!ret) { + Yap_RaiseException(); + } + return ret; + } } X_API void *YAP_ReallocSpaceFromYap(void *ptr, size_t size) { - CACHE_REGS - void *new_ptr; - BACKUP_MACHINE_REGS(); - while ((new_ptr = Yap_ReallocCodeSpace(ptr, size)) == NULL) { - if (!Yap_growheap(FALSE, size, NULL)) { - Yap_Error(RESOURCE_ERROR_HEAP, TermNil, LOCAL_ErrorMessage); - return NULL; - } + CACHE_REGS + void *new_ptr; + BACKUP_MACHINE_REGS(); + while ((new_ptr = Yap_ReallocCodeSpace(ptr, size)) == NULL) { + if (!Yap_growheap(FALSE, size, NULL)) { + Yap_Error(RESOURCE_ERROR_HEAP, TermNil, LOCAL_ErrorMessage); + return NULL; } - RECOVER_MACHINE_REGS(); - return new_ptr; + } + RECOVER_MACHINE_REGS(); + return new_ptr; } X_API void *YAP_AllocSpaceFromYap(size_t size) { - CACHE_REGS - void *ptr; - BACKUP_MACHINE_REGS(); + CACHE_REGS + void *ptr; + BACKUP_MACHINE_REGS(); - while ((ptr = Yap_AllocCodeSpace(size)) == NULL) { - if (!Yap_growheap(FALSE, size, NULL)) { - Yap_Error(RESOURCE_ERROR_HEAP, TermNil, LOCAL_ErrorMessage); - return NULL; - } + while ((ptr = Yap_AllocCodeSpace(size)) == NULL) { + if (!Yap_growheap(FALSE, size, NULL)) { + Yap_Error(RESOURCE_ERROR_HEAP, TermNil, LOCAL_ErrorMessage); + return NULL; } - RECOVER_MACHINE_REGS(); - return ptr; + } + RECOVER_MACHINE_REGS(); + return ptr; } X_API void YAP_FreeSpaceFromYap(void *ptr) { Yap_FreeCodeSpace(ptr); } @@ -1352,1368 +1344,950 @@ X_API void YAP_FreeSpaceFromYap(void *ptr) { Yap_FreeCodeSpace(ptr); } * @return */ X_API char * YAP_StringToBuffer(Term t, char *buf, unsigned int bufsize) { - CACHE_REGS - BACKUP_MACHINE_REGS(); - seq_tv_t inp, out; - int l = push_text_stack(); - inp.val.t = t; - inp.type = YAP_STRING_ATOMS_CODES | YAP_STRING_STRING | YAP_STRING_ATOM | - YAP_STRING_TRUNC | YAP_STRING_MALLOC; - inp.max = bufsize; - out.type = YAP_STRING_CHARS; - out.val.c = buf; - out.enc = ENC_ISO_UTF8; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) { - pop_text_stack(l); - RECOVER_MACHINE_REGS(); - return NULL; + CACHE_REGS + BACKUP_MACHINE_REGS(); + seq_tv_t inp, out; + int l = push_text_stack(); + inp.val.t = t; + inp.type = YAP_STRING_ATOMS_CODES | YAP_STRING_STRING | YAP_STRING_ATOM | + YAP_STRING_TRUNC | YAP_STRING_MALLOC; + inp.max = bufsize; + out.type = YAP_STRING_CHARS; + out.val.c = buf; + out.enc = ENC_ISO_UTF8; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) { + pop_text_stack(l); + RECOVER_MACHINE_REGS(); + return NULL; + } else { + RECOVER_MACHINE_REGS(); + if (buf == out.val.c) { + return buf; } else { - RECOVER_MACHINE_REGS(); - if (buf == out.val.c) { - return buf; - } else { - return pop_output_text_stack(l, out.val.c); - } + return pop_output_text_stack(l, out.val.c); } + } } /* copy a string to a buffer */ X_API Term YAP_BufferToString(const char *s) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.c0 = s; - inp.type = YAP_STRING_CHARS; - out.type = YAP_STRING_CODES; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.c0 = s; + inp.type = YAP_STRING_CHARS; + out.type = YAP_STRING_CODES; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string to a buffer */ X_API Term YAP_NBufferToString(const char *s, size_t len) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.c0 = s; - inp.type = YAP_STRING_CHARS; - out.type = YAP_STRING_CODES | YAP_STRING_NCHARS | YAP_STRING_TRUNC; - out.max = len; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.c0 = s; + inp.type = YAP_STRING_CHARS; + out.type = YAP_STRING_CODES | YAP_STRING_NCHARS | YAP_STRING_TRUNC; + out.max = len; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string to a buffer */ X_API Term YAP_WideBufferToString(const wchar_t *s) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.w0 = s; - inp.type = YAP_STRING_WCHARS; - out.type = YAP_STRING_CODES; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.w0 = s; + inp.type = YAP_STRING_WCHARS; + out.type = YAP_STRING_CODES; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string to a buffer */ X_API Term YAP_NWideBufferToString(const wchar_t *s, size_t len) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.w0 = s; - inp.type = YAP_STRING_WCHARS; - out.type = YAP_STRING_CODES | YAP_STRING_NCHARS | YAP_STRING_TRUNC; - out.max = len; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.w0 = s; + inp.type = YAP_STRING_WCHARS; + out.type = YAP_STRING_CODES | YAP_STRING_NCHARS | YAP_STRING_TRUNC; + out.max = len; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string to a buffer */ X_API Term YAP_ReadBuffer(const char *s, Term *tp) { - CACHE_REGS - Term tv, t; - BACKUP_H(); + CACHE_REGS + Term tv, t; + BACKUP_H(); - if (*tp) - tv = *tp; - else - tv = 0; - LOCAL_ErrorMessage = NULL; - const unsigned char *us = (const unsigned char *) s; - while (!(t = Yap_BufferToTermWithPrioBindings(us, strlen(s) + 1, TermNil, - GLOBAL_MaxPriority, tv))) { - if (LOCAL_ErrorMessage) { - if (!strcmp(LOCAL_ErrorMessage, "Stack Overflow")) { - if (!Yap_dogc(0, NULL PASS_REGS)) { - *tp = MkAtomTerm(Yap_LookupAtom(LOCAL_ErrorMessage)); - LOCAL_ErrorMessage = NULL; - RECOVER_H(); - return 0L; - } - } else if (!strcmp(LOCAL_ErrorMessage, "Heap Overflow")) { - if (!Yap_growheap(FALSE, 0, NULL)) { - *tp = MkAtomTerm(Yap_LookupAtom(LOCAL_ErrorMessage)); - LOCAL_ErrorMessage = NULL; - RECOVER_H(); - return 0L; - } - } else if (!strcmp(LOCAL_ErrorMessage, "Trail Overflow")) { - if (!Yap_growtrail(0, FALSE)) { - *tp = MkAtomTerm(Yap_LookupAtom(LOCAL_ErrorMessage)); - LOCAL_ErrorMessage = NULL; - RECOVER_H(); - return 0L; - } - } else { - RECOVER_H(); - return 0L; - } - LOCAL_ErrorMessage = NULL; - return 0; - } else { - break; + if (*tp) + tv = *tp; + else + tv = 0; + LOCAL_ErrorMessage = NULL; + const unsigned char *us = (const unsigned char *)s; + while (!(t = Yap_BufferToTermWithPrioBindings(us, strlen(s) + 1, TermNil, + GLOBAL_MaxPriority, tv))) { + if (LOCAL_ErrorMessage) { + if (!strcmp(LOCAL_ErrorMessage, "Stack Overflow")) { + if (!Yap_dogc(0, NULL PASS_REGS)) { + *tp = MkAtomTerm(Yap_LookupAtom(LOCAL_ErrorMessage)); + LOCAL_ErrorMessage = NULL; + RECOVER_H(); + return 0L; } + } else if (!strcmp(LOCAL_ErrorMessage, "Heap Overflow")) { + if (!Yap_growheap(FALSE, 0, NULL)) { + *tp = MkAtomTerm(Yap_LookupAtom(LOCAL_ErrorMessage)); + LOCAL_ErrorMessage = NULL; + RECOVER_H(); + return 0L; + } + } else if (!strcmp(LOCAL_ErrorMessage, "Trail Overflow")) { + if (!Yap_growtrail(0, FALSE)) { + *tp = MkAtomTerm(Yap_LookupAtom(LOCAL_ErrorMessage)); + LOCAL_ErrorMessage = NULL; + RECOVER_H(); + return 0L; + } + } else { + RECOVER_H(); + return 0L; + } + LOCAL_ErrorMessage = NULL; + return 0; + } else { + break; } - RECOVER_H(); - return t; + } + RECOVER_H(); + return t; } /* copy a string to a buffer */ X_API YAP_Term YAP_BufferToAtomList(const char *s) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.c0 = s; - inp.type = YAP_STRING_CHARS; - out.type = YAP_STRING_ATOMS; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.c0 = s; + inp.type = YAP_STRING_CHARS; + out.type = YAP_STRING_ATOMS; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string of size len to a buffer */ X_API Term YAP_NBufferToAtomList(const char *s, size_t len) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.c0 = s; - inp.type = YAP_STRING_CHARS; - out.type = YAP_STRING_ATOMS | YAP_STRING_NCHARS | YAP_STRING_TRUNC; - out.max = len; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.c0 = s; + inp.type = YAP_STRING_CHARS; + out.type = YAP_STRING_ATOMS | YAP_STRING_NCHARS | YAP_STRING_TRUNC; + out.max = len; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string to a buffer */ X_API Term YAP_WideBufferToAtomList(const wchar_t *s) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.w0 = s; - inp.type = YAP_STRING_WCHARS; - out.type = YAP_STRING_ATOMS; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.w0 = s; + inp.type = YAP_STRING_WCHARS; + out.type = YAP_STRING_ATOMS; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string of size len to a buffer */ X_API Term YAP_NWideBufferToAtomList(const wchar_t *s, size_t len) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.w0 = s; - inp.type = YAP_STRING_WCHARS; - out.type = YAP_STRING_ATOMS | YAP_STRING_NCHARS | YAP_STRING_TRUNC; - out.max = len; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.w0 = s; + inp.type = YAP_STRING_WCHARS; + out.type = YAP_STRING_ATOMS | YAP_STRING_NCHARS | YAP_STRING_TRUNC; + out.max = len; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string of size len to a buffer */ X_API Term YAP_NWideBufferToAtomDiffList(const wchar_t *s, Term t0, size_t len) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.w0 = s; - inp.type = YAP_STRING_WCHARS; - out.type = - YAP_STRING_ATOMS | YAP_STRING_NCHARS | YAP_STRING_TRUNC | YAP_STRING_DIFF; - out.max = len; - out.dif = t0; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.w0 = s; + inp.type = YAP_STRING_WCHARS; + out.type = + YAP_STRING_ATOMS | YAP_STRING_NCHARS | YAP_STRING_TRUNC | YAP_STRING_DIFF; + out.max = len; + out.dif = t0; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string to a buffer */ X_API Term YAP_BufferToDiffList(const char *s, Term t0) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.c0 = s; - inp.type = YAP_STRING_CHARS; - out.type = YAP_STRING_CODES | YAP_STRING_DIFF; - out.dif = t0; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.c0 = s; + inp.type = YAP_STRING_CHARS; + out.type = YAP_STRING_CODES | YAP_STRING_DIFF; + out.dif = t0; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string of size len to a buffer */ X_API Term YAP_NBufferToDiffList(const char *s, Term t0, size_t len) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.c0 = s; - inp.type = YAP_STRING_CHARS; - out.type = - YAP_STRING_CODES | YAP_STRING_NCHARS | YAP_STRING_TRUNC | YAP_STRING_DIFF; - out.max = len; - out.dif = t0; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.c0 = s; + inp.type = YAP_STRING_CHARS; + out.type = + YAP_STRING_CODES | YAP_STRING_NCHARS | YAP_STRING_TRUNC | YAP_STRING_DIFF; + out.max = len; + out.dif = t0; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string to a buffer */ X_API Term YAP_WideBufferToDiffList(const wchar_t *s, Term t0) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.w0 = s; - inp.type = YAP_STRING_WCHARS; - out.type = YAP_STRING_CODES | YAP_STRING_DIFF; - out.dif = t0; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.w0 = s; + inp.type = YAP_STRING_WCHARS; + out.type = YAP_STRING_CODES | YAP_STRING_DIFF; + out.dif = t0; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } /* copy a string of size len to a buffer */ X_API Term YAP_NWideBufferToDiffList(const wchar_t *s, Term t0, size_t len) { - Term t; - BACKUP_H(); + Term t; + BACKUP_H(); - CACHE_REGS - seq_tv_t inp, out; - inp.val.w0 = s; - inp.type = YAP_STRING_WCHARS; - out.type = - YAP_STRING_CODES | YAP_STRING_NCHARS | YAP_STRING_TRUNC | YAP_STRING_DIFF; - out.max = len; - out.dif = t0; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) - return 0L; - t = out.val.t; + CACHE_REGS + seq_tv_t inp, out; + inp.val.w0 = s; + inp.type = YAP_STRING_WCHARS; + out.type = + YAP_STRING_CODES | YAP_STRING_NCHARS | YAP_STRING_TRUNC | YAP_STRING_DIFF; + out.max = len; + out.dif = t0; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) + return 0L; + t = out.val.t; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } X_API void YAP_Error(int myerrno, Term t, const char *buf, ...) { #define YAP_BUF_SIZE 512 - va_list ap; - char tmpbuf[YAP_BUF_SIZE]; + va_list ap; + char tmpbuf[YAP_BUF_SIZE]; - if (!myerrno) - myerrno = SYSTEM_ERROR_INTERNAL; - if (t == 0L) - t = TermNil; - if (buf != NULL) { - va_start(ap, buf); + if (!myerrno) + myerrno = SYSTEM_ERROR_INTERNAL; + if (t == 0L) + t = TermNil; + if (buf != NULL) { + va_start(ap, buf); #if HAVE_VSNPRINTF - (void) vsnprintf(tmpbuf, YAP_BUF_SIZE, buf, ap); + (void)vsnprintf(tmpbuf, YAP_BUF_SIZE, buf, ap); #else - (void)vsprintf(tmpbuf, buf, ap); + (void)vsprintf(tmpbuf, buf, ap); #endif - va_end(ap); - } else { - tmpbuf[0] = '\0'; - } - Yap_Error(myerrno, t, tmpbuf); + va_end(ap); + } else { + tmpbuf[0] = '\0'; + } + Yap_Error(myerrno, t, tmpbuf); } X_API YAP_PredEntryPtr YAP_FunctorToPred(YAP_Functor func) { - CACHE_REGS - return RepPredProp(PredPropByFunc(func, CurrentModule)); + CACHE_REGS + return RepPredProp(PredPropByFunc(func, CurrentModule)); } X_API YAP_PredEntryPtr YAP_AtomToPred(YAP_Atom at) { - CACHE_REGS - return RepPredProp(PredPropByAtom(at, CurrentModule)); + CACHE_REGS + return RepPredProp(PredPropByAtom(at, CurrentModule)); } X_API YAP_PredEntryPtr YAP_FunctorToPredInModule(YAP_Functor func, Term mod) { - return RepPredProp(PredPropByFunc(func, mod)); + return RepPredProp(PredPropByFunc(func, mod)); } X_API YAP_PredEntryPtr YAP_AtomToPredInModule(YAP_Atom at, Term mod) { - return RepPredProp(PredPropByAtom(at, mod)); + return RepPredProp(PredPropByAtom(at, mod)); } static int run_emulator(USES_REGS1) { - int out; + int out; - out = Yap_absmi(0); - LOCAL_PrologMode |= UserCCallMode; - return out; + out = Yap_absmi(0); + LOCAL_PrologMode |= UserCCallMode; + return out; } X_API bool YAP_EnterGoal(YAP_PredEntryPtr ape, CELL *ptr, YAP_dogoalinfo *dgi) { - CACHE_REGS - PredEntry *pe = ape; - bool out; + CACHE_REGS + PredEntry *pe = ape; + bool out; - BACKUP_MACHINE_REGS(); - LOCAL_PrologMode = UserMode; - dgi->p = P; - dgi->cp = CP; - dgi->CurSlot = LOCAL_CurSlot; - // ensure our current ENV receives current P. + BACKUP_MACHINE_REGS(); + LOCAL_PrologMode = UserMode; + dgi->p = P; + dgi->cp = CP; + dgi->CurSlot = LOCAL_CurSlot; + // ensure our current ENV receives current P. - Yap_PrepGoal(pe->ArityOfPE, nullptr, B PASS_REGS); - P = pe->CodeOfPred; - // __android_log_print(ANDROID_LOG_INFO, "YAP ", "ap=%p %d %x %x args=%x,%x - // slot=%d", pe, pe->CodeOfPred->opc, FAILCODE, Deref(ARG1), Deref(ARG2), - // LOCAL_CurSlot); - dgi->b = LCL0 - (CELL *) B; - out = Yap_exec_absmi(true, false); - if (out) { - dgi->EndSlot = LOCAL_CurSlot; - Yap_StartSlots(); - } else { - LOCAL_CurSlot = - dgi->CurSlot; // ignore any slots created within the called goal - } - RECOVER_MACHINE_REGS(); - return out; + Yap_PrepGoal(pe->ArityOfPE, nullptr, B PASS_REGS); + P = pe->CodeOfPred; + // __android_log_print(ANDROID_LOG_INFO, "YAP ", "ap=%p %d %x %x args=%x,%x + // slot=%d", pe, pe->CodeOfPred->opc, FAILCODE, Deref(ARG1), Deref(ARG2), + // LOCAL_CurSlot); + dgi->b = LCL0 - (CELL *)B; + out = Yap_exec_absmi(true, false); + if (out) { + dgi->EndSlot = LOCAL_CurSlot; + Yap_StartSlots(); + } else { + LOCAL_CurSlot = + dgi->CurSlot; // ignore any slots created within the called goal + } + RECOVER_MACHINE_REGS(); + return out; } X_API bool YAP_RetryGoal(YAP_dogoalinfo *dgi) { - CACHE_REGS - choiceptr myB; - bool out; + CACHE_REGS + choiceptr myB; + bool out; - BACKUP_MACHINE_REGS(); - myB = (choiceptr) (LCL0 - dgi->b); - CP = myB->cp_cp; - /* sanity check */ - if (B >= myB) { - return false; - } - P = FAILCODE; - /* make sure we didn't leave live slots when we backtrack */ - ASP = (CELL *) B; - LOCAL_CurSlot = dgi->EndSlot; - out = run_emulator(PASS_REGS1); - if (out) { - dgi->EndSlot = LOCAL_CurSlot; - } else { - LOCAL_CurSlot = - dgi->CurSlot; // ignore any slots created within the called goal - } - RECOVER_MACHINE_REGS(); - return out; + BACKUP_MACHINE_REGS(); + myB = (choiceptr)(LCL0 - dgi->b); + CP = myB->cp_cp; + /* sanity check */ + if (B >= myB) { + return false; + } + P = FAILCODE; + /* make sure we didn't leave live slots when we backtrack */ + ASP = (CELL *)B; + LOCAL_CurSlot = dgi->EndSlot; + out = run_emulator(PASS_REGS1); + if (out) { + dgi->EndSlot = LOCAL_CurSlot; + } else { + LOCAL_CurSlot = + dgi->CurSlot; // ignore any slots created within the called goal + } + RECOVER_MACHINE_REGS(); + return out; } X_API bool YAP_LeaveGoal(bool backtrack, YAP_dogoalinfo *dgi) { - CACHE_REGS - choiceptr myB; + CACHE_REGS + choiceptr myB; - BACKUP_MACHINE_REGS(); - myB = (choiceptr) (LCL0 - dgi->b); - if (B > myB) { - /* someone cut us */ - return FALSE; - } - /* prune away choicepoints */ - if (B != myB) { + BACKUP_MACHINE_REGS(); + myB = (choiceptr)(LCL0 - dgi->b); + if (B > myB) { + /* someone cut us */ + return FALSE; + } + /* prune away choicepoints */ + if (B != myB) { #ifdef YAPOR - CUT_prune_to(myB); + CUT_prune_to(myB); #endif - B = myB; - } - /* if backtracking asked for, recover space and bindings */ - if (backtrack) { - P = FAILCODE; - Yap_exec_absmi(true, YAP_EXEC_ABSMI); - /* recover stack space */ - HR = B->cp_h; - TR = B->cp_tr; + B = myB; + } + /* if backtracking asked for, recover space and bindings */ + if (backtrack) { + P = FAILCODE; + Yap_exec_absmi(true, YAP_EXEC_ABSMI); + /* recover stack space */ + HR = B->cp_h; + TR = B->cp_tr; #ifdef DEPTH_LIMIT - DEPTH = B->cp_depth; + DEPTH = B->cp_depth; #endif /* DEPTH_LIMIT */ - YENV = ENV = B->cp_env; - } else { - Yap_TrimTrail(); - } + YENV = ENV = B->cp_env; + } else { + Yap_TrimTrail(); + } /* recover local stack */ #ifdef DEPTH_LIMIT - DEPTH = ENV[E_DEPTH]; + DEPTH = ENV[E_DEPTH]; #endif - /* make sure we prune C-choicepoints */ - if (POP_CHOICE_POINT(B->cp_b)) { - POP_EXECUTE(); - } - ENV = (CELL *) (ENV[E_E]); - /* ASP should be set to the top of the local stack when we - did the call */ - ASP = B->cp_env; - /* YENV should be set to the current environment */ - YENV = ENV = (CELL *) ((B->cp_env)[E_E]); - B = B->cp_b; - // SET_BB(B); - HB = PROTECT_FROZEN_H(B); - CP = dgi->cp; - P = dgi->p; - LOCAL_CurSlot = dgi->CurSlot; - RECOVER_MACHINE_REGS(); - return TRUE; + /* make sure we prune C-choicepoints */ + if (POP_CHOICE_POINT(B->cp_b)) { + POP_EXECUTE(); + } + ENV = (CELL *)(ENV[E_E]); + /* ASP should be set to the top of the local stack when we + did the call */ + ASP = B->cp_env; + /* YENV should be set to the current environment */ + YENV = ENV = (CELL *)((B->cp_env)[E_E]); + B = B->cp_b; + // SET_BB(B); + HB = PROTECT_FROZEN_H(B); + CP = dgi->cp; + P = dgi->p; + LOCAL_CurSlot = dgi->CurSlot; + RECOVER_MACHINE_REGS(); + return TRUE; } X_API Int YAP_RunGoal(Term t) { - CACHE_REGS - Term out; - yamop *old_CP = CP; - yhandle_t cslot = LOCAL_CurSlot; - BACKUP_MACHINE_REGS(); + CACHE_REGS + Term out; + yamop *old_CP = CP; + yhandle_t cslot = LOCAL_CurSlot; + BACKUP_MACHINE_REGS(); + LOCAL_AllowRestart = FALSE; + LOCAL_PrologMode = UserMode; + out = Yap_RunTopGoal(t, true); + LOCAL_PrologMode = UserCCallMode; + // should we catch the exception or pass it through? + // We'll pass it through + Yap_RaiseException(); + if (out) { + P = (yamop *)ENV[E_CP]; + ENV = (CELL *)ENV[E_E]; + CP = old_CP; + LOCAL_AllowRestart = TRUE; + // we are back to user code again, need slots */ + } else { + ENV = B->cp_env; + ENV = (CELL *)ENV[E_E]; + CP = old_CP; + HR = B->cp_h; + TR = B->cp_tr; + B = B->cp_b; LOCAL_AllowRestart = FALSE; - LOCAL_PrologMode = UserMode; - out = Yap_RunTopGoal(t, true); - LOCAL_PrologMode = UserCCallMode; - // should we catch the exception or pass it through? - // We'll pass it through - Yap_RaiseException(); - if (out) { - P = (yamop *) ENV[E_CP]; - ENV = (CELL *) ENV[E_E]; - CP = old_CP; - LOCAL_AllowRestart = TRUE; - // we are back to user code again, need slots */ - } else { - ENV = B->cp_env; - ENV = (CELL *) ENV[E_E]; - CP = old_CP; - HR = B->cp_h; - TR = B->cp_tr; - B = B->cp_b; - LOCAL_AllowRestart = FALSE; - SET_ASP(ENV, E_CB * sizeof(CELL)); - // make sure the slots are ok. - } - RECOVER_MACHINE_REGS(); - LOCAL_CurSlot = cslot; - return out; + SET_ASP(ENV, E_CB * sizeof(CELL)); + // make sure the slots are ok. + } + RECOVER_MACHINE_REGS(); + LOCAL_CurSlot = cslot; + return out; } X_API Term YAP_AllocExternalDataInStack(size_t bytes) { - CELL *pt; - Term t = Yap_AllocExternalDataInStack(EXTERNAL_BLOB, bytes, &pt); - if (t == TermNil) - return 0L; - return t; + CELL *pt; + Term t = Yap_AllocExternalDataInStack(EXTERNAL_BLOB, bytes, &pt); + if (t == TermNil) + return 0L; + return t; } X_API YAP_Bool YAP_IsExternalDataInStackTerm(Term t) { - return IsExternalBlobTerm(t, EXTERNAL_BLOB); + return IsExternalBlobTerm(t, EXTERNAL_BLOB); } X_API void *YAP_ExternalDataInStackFromTerm(Term t) { - return ExternalBlobFromTerm(t); + return ExternalBlobFromTerm(t); } X_API YAP_opaque_tag_t YAP_NewOpaqueType(struct YAP_opaque_handler_struct *f) { - int i; - if (!GLOBAL_OpaqueHandlersCount) { - GLOBAL_OpaqueHandlers = - malloc(sizeof(YAP_opaque_handler_t) * USER_BLOB_END); - if (!GLOBAL_OpaqueHandlers) { - /* no room */ - return -1; - } - GLOBAL_OpaqueHandlersCount = USER_BLOB_START; - } else if (GLOBAL_OpaqueHandlersCount == USER_BLOB_END) { - /* all types used */ - return -1; + int i; + if (!GLOBAL_OpaqueHandlersCount) { + GLOBAL_OpaqueHandlers = + malloc(sizeof(YAP_opaque_handler_t) * USER_BLOB_END); + if (!GLOBAL_OpaqueHandlers) { + /* no room */ + return -1; } - i = GLOBAL_OpaqueHandlersCount++; - memcpy(GLOBAL_OpaqueHandlers + i, f, sizeof(YAP_opaque_handler_t)); - return i; + GLOBAL_OpaqueHandlersCount = USER_BLOB_START; + } else if (GLOBAL_OpaqueHandlersCount == USER_BLOB_END) { + /* all types used */ + return -1; + } + i = GLOBAL_OpaqueHandlersCount++; + memcpy(GLOBAL_OpaqueHandlers + i, f, sizeof(YAP_opaque_handler_t)); + return i; } X_API Term YAP_NewOpaqueObject(YAP_opaque_tag_t blob_tag, size_t bytes) { - CELL *pt; - Term t = Yap_AllocExternalDataInStack((CELL) blob_tag, bytes, &pt); - if (t == TermNil) - return 0L; - pt = RepAppl(t); - blob_tag = pt[1]; - if (blob_tag < USER_BLOB_START || - blob_tag >= USER_BLOB_END) { - Yap_Error(SYSTEM_ERROR_INTERNAL, AbsAppl(pt), "clean opaque: bad blob with tag " - UInt_FORMAT, blob_tag); - return FALSE; - } - YAP_opaque_tag_t blob_info = blob_tag; - if (GLOBAL_OpaqueHandlers[blob_info].cut_handler || - GLOBAL_OpaqueHandlers[blob_info].fail_handler) { - *HR++ = t; - *HR++ = TermNil; - TrailTerm(TR) = AbsPair(HR - 2); - } - return t; + CELL *pt; + Term t = Yap_AllocExternalDataInStack((CELL)blob_tag, bytes, &pt); + if (t == TermNil) + return 0L; + pt = RepAppl(t); + blob_tag = pt[1]; + if (blob_tag < USER_BLOB_START || blob_tag >= USER_BLOB_END) { + Yap_Error(SYSTEM_ERROR_INTERNAL, AbsAppl(pt), + "clean opaque: bad blob with tag " UInt_FORMAT, blob_tag); + return FALSE; + } + YAP_opaque_tag_t blob_info = blob_tag; + if (GLOBAL_OpaqueHandlers[blob_info].cut_handler || + GLOBAL_OpaqueHandlers[blob_info].fail_handler) { + *HR++ = t; + *HR++ = TermNil; + TrailTerm(TR) = AbsPair(HR - 2); + } + return t; } X_API YAP_Bool YAP_IsOpaqueObjectTerm(Term t, YAP_opaque_tag_t tag) { - return IsExternalBlobTerm(t, (CELL) tag); + return IsExternalBlobTerm(t, (CELL)tag); } X_API void *YAP_OpaqueObjectFromTerm(Term t) { return ExternalBlobFromTerm(t); } X_API CELL *YAP_HeapStoreOpaqueTerm(Term t) { - return Yap_HeapStoreOpaqueTerm(t); + return Yap_HeapStoreOpaqueTerm(t); } X_API Int YAP_RunGoalOnce(Term t) { - CACHE_REGS - Term out; - yamop *old_CP = CP; - Int oldPrologMode = LOCAL_PrologMode; - yhandle_t CSlot; + CACHE_REGS + Term out; + yamop *old_CP = CP; + Int oldPrologMode = LOCAL_PrologMode; + yhandle_t CSlot; - BACKUP_MACHINE_REGS(); - Yap_InitYaamRegs(0); - CSlot = Yap_StartSlots(); - LOCAL_PrologMode = UserMode; + BACKUP_MACHINE_REGS(); + Yap_InitYaamRegs(0); + CSlot = Yap_StartSlots(); + LOCAL_PrologMode = UserMode; - // Yap_heap_regs->yap_do_low_level_trace=true; - out = Yap_RunTopGoal(t, true); - LOCAL_PrologMode = oldPrologMode; - Yap_CloseSlots(CSlot); - if (!(oldPrologMode & UserCCallMode)) { - /* called from top-level */ - LOCAL_AllowRestart = FALSE; - RECOVER_MACHINE_REGS(); - return out; - } - // should we catch the exception or pass it through? - // We'll pass it through - Yap_RaiseException(); - if (out) { - choiceptr cut_pt, ob; - - ob = NULL; - cut_pt = B; - while (cut_pt->cp_ap != NOCODE) { - /* make sure we prune C-choicepoints */ - if (POP_CHOICE_POINT(cut_pt->cp_b)) { - POP_EXECUTE(); - } - ob = cut_pt; - cut_pt = cut_pt->cp_b; - } -#ifdef YAPOR - CUT_prune_to(cut_pt); -#endif - if (ob) { - B = ob; - Yap_TrimTrail(); - } - B = cut_pt; - } - ASP = B->cp_env; - ENV = (CELL *) ASP[E_E]; - B = (choiceptr) ASP[E_CB]; -#ifdef DEPTH_LIMITxs - DEPTH = ASP[E_DEPTH]; -#endif - P = (yamop *) ASP[E_CP]; - CP = old_CP; + // Yap_heap_regs->yap_do_low_level_trace=true; + out = Yap_RunTopGoal(t, true); + LOCAL_PrologMode = oldPrologMode; + Yap_CloseSlots(CSlot); + if (!(oldPrologMode & UserCCallMode)) { + /* called from top-level */ LOCAL_AllowRestart = FALSE; RECOVER_MACHINE_REGS(); return out; + } + // should we catch the exception or pass it through? + // We'll pass it through + Yap_RaiseException(); + if (out) { + choiceptr cut_pt, ob; + + ob = NULL; + cut_pt = B; + while (cut_pt->cp_ap != NOCODE) { + /* make sure we prune C-choicepoints */ + if (POP_CHOICE_POINT(cut_pt->cp_b)) { + POP_EXECUTE(); + } + ob = cut_pt; + cut_pt = cut_pt->cp_b; + } +#ifdef YAPOR + CUT_prune_to(cut_pt); +#endif + if (ob) { + B = ob; + Yap_TrimTrail(); + } + B = cut_pt; + } + ASP = B->cp_env; + ENV = (CELL *)ASP[E_E]; + B = (choiceptr)ASP[E_CB]; +#ifdef DEPTH_LIMITxs + DEPTH = ASP[E_DEPTH]; +#endif + P = (yamop *)ASP[E_CP]; + CP = old_CP; + LOCAL_AllowRestart = FALSE; + RECOVER_MACHINE_REGS(); + return out; } X_API bool YAP_RestartGoal(void) { - CACHE_REGS - BACKUP_MACHINE_REGS(); - bool out; - if (LOCAL_AllowRestart) { - P = (yamop *) FAILCODE; - LOCAL_PrologMode = UserMode; - out = Yap_exec_absmi(TRUE, YAP_EXEC_ABSMI); - LOCAL_PrologMode = UserCCallMode; - if (out == FALSE) { - /* cleanup */ - Yap_trust_last(); - LOCAL_AllowRestart = FALSE; - } - } else { - out = FALSE; - } - RECOVER_MACHINE_REGS(); - return (out); -} - -X_API bool YAP_ShutdownGoal(int backtrack) { - CACHE_REGS - BACKUP_MACHINE_REGS(); - - if (LOCAL_AllowRestart) { - choiceptr cut_pt; - - cut_pt = B; - while (cut_pt->cp_ap != NOCODE) { - /* make sure we prune C-choicepoints */ - if (POP_CHOICE_POINT(cut_pt->cp_b)) { - POP_EXECUTE(); - } - cut_pt = cut_pt->cp_b; - } -#ifdef YAPOR - CUT_prune_to(cut_pt); -#endif - /* just force backtrack */ - B = cut_pt; - if (backtrack) { - P = FAILCODE; - Yap_exec_absmi(TRUE, YAP_EXEC_ABSMI); - /* recover stack space */ - HR = cut_pt->cp_h; - TR = cut_pt->cp_tr; - } - /* we can always recover the stack */ - ASP = cut_pt->cp_env; - ENV = (CELL *) ASP[E_E]; - B = (choiceptr) ASP[E_CB]; - Yap_TrimTrail(); -#ifdef DEPTH_LIMIT - DEPTH = ASP[E_DEPTH]; -#endif - LOCAL_AllowRestart = FALSE; - } - RECOVER_MACHINE_REGS(); - return TRUE; -} - -X_API bool YAP_ContinueGoal(void) { - CACHE_REGS - bool out; - BACKUP_MACHINE_REGS(); - + CACHE_REGS + BACKUP_MACHINE_REGS(); + bool out; + if (LOCAL_AllowRestart) { + P = (yamop *)FAILCODE; LOCAL_PrologMode = UserMode; out = Yap_exec_absmi(TRUE, YAP_EXEC_ABSMI); LOCAL_PrologMode = UserCCallMode; + if (out == FALSE) { + /* cleanup */ + Yap_trust_last(); + LOCAL_AllowRestart = FALSE; + } + } else { + out = FALSE; + } + RECOVER_MACHINE_REGS(); + return (out); +} - RECOVER_MACHINE_REGS(); - return (out); +X_API bool YAP_ShutdownGoal(int backtrack) { + CACHE_REGS + BACKUP_MACHINE_REGS(); + + if (LOCAL_AllowRestart) { + choiceptr cut_pt; + + cut_pt = B; + while (cut_pt->cp_ap != NOCODE) { + /* make sure we prune C-choicepoints */ + if (POP_CHOICE_POINT(cut_pt->cp_b)) { + POP_EXECUTE(); + } + cut_pt = cut_pt->cp_b; + } +#ifdef YAPOR + CUT_prune_to(cut_pt); +#endif + /* just force backtrack */ + B = cut_pt; + if (backtrack) { + P = FAILCODE; + Yap_exec_absmi(TRUE, YAP_EXEC_ABSMI); + /* recover stack space */ + HR = cut_pt->cp_h; + TR = cut_pt->cp_tr; + } + /* we can always recover the stack */ + ASP = cut_pt->cp_env; + ENV = (CELL *)ASP[E_E]; + B = (choiceptr)ASP[E_CB]; + Yap_TrimTrail(); +#ifdef DEPTH_LIMIT + DEPTH = ASP[E_DEPTH]; +#endif + LOCAL_AllowRestart = FALSE; + } + RECOVER_MACHINE_REGS(); + return TRUE; +} + +X_API bool YAP_ContinueGoal(void) { + CACHE_REGS + bool out; + BACKUP_MACHINE_REGS(); + + LOCAL_PrologMode = UserMode; + out = Yap_exec_absmi(TRUE, YAP_EXEC_ABSMI); + LOCAL_PrologMode = UserCCallMode; + + RECOVER_MACHINE_REGS(); + return (out); } X_API void YAP_PruneGoal(YAP_dogoalinfo *gi) { - CACHE_REGS - BACKUP_B(); + CACHE_REGS + BACKUP_B(); - choiceptr myB = (choiceptr) (LCL0 - gi->b); - while (B != myB) { - /* make sure we prune C-choicepoints */ - if (POP_CHOICE_POINT(B->cp_b)) { - POP_EXECUTE(); - } - if (!B->cp_b) - break; - B = B->cp_b; + choiceptr myB = (choiceptr)(LCL0 - gi->b); + while (B != myB) { + /* make sure we prune C-choicepoints */ + if (POP_CHOICE_POINT(B->cp_b)) { + POP_EXECUTE(); } + if (!B->cp_b) + break; + B = B->cp_b; + } - Yap_TrimTrail(); + Yap_TrimTrail(); - RECOVER_B(); + RECOVER_B(); } X_API bool YAP_GoalHasException(Term *t) { - CACHE_REGS - BACKUP_MACHINE_REGS(); - if (t) - *t = Yap_PeekException(); - return Yap_PeekException(); + CACHE_REGS + BACKUP_MACHINE_REGS(); + if (t) + *t = Yap_PeekException(); + return Yap_PeekException(); } X_API void YAP_ClearExceptions(void) { - CACHE_REGS + CACHE_REGS - Yap_ResetException(worker_id); + Yap_ResetException(worker_id); } -X_API int YAP_InitConsult(int mode, const char *fname, char *full, - int *osnop) { - CACHE_REGS - int sno; - BACKUP_MACHINE_REGS(); - int lvl = push_text_stack(); - if (mode == YAP_BOOT_MODE) { - mode = YAP_CONSULT_MODE; - } - char *bfp = Malloc(YAP_FILENAME_MAX + 1); - bfp[0] = '\0'; - if (fname != NULL && fname[0] != '\0') - strcpy(bfp, fname); - bool consulted = (mode == YAP_CONSULT_MODE); - const char *fl = Yap_findFile(bfp, NULL, NULL, full, true, - YAP_BOOT_PL, true, true); +X_API int YAP_InitConsult(int mode, const char *fname, char *full, int *osnop) { + CACHE_REGS + int sno; + BACKUP_MACHINE_REGS(); + const char *fl = NULL; + int lvl = push_text_stack(); + if (mode == YAP_BOOT_MODE) { + mode = YAP_CONSULT_MODE; + } + char *bfp = Malloc(YAP_FILENAME_MAX + 1); + bfp[0] = '\0'; + if (fname == NULL || fname[0] == '\0') { + fname = Yap_BOOTFILE; + } + if (fname) { + fl = Yap_AbsoluteFile(fname, bfp, true); if (!fl || !fl[0]) { - pop_text_stack(lvl); - return -1; + pop_text_stack(lvl); + return -1; } - Yap_init_consult(consulted, bfp); - sno = Yap_OpenStream(fl,"r", MkAtomTerm(Yap_LookupAtom(fname))); - *osnop = Yap_CheckAlias(AtomLoopStream); - if (!Yap_AddAlias(AtomLoopStream, sno)) { - Yap_CloseStream(sno); - pop_text_stack(lvl); - sno = -1; - return sno; - } - GLOBAL_Stream[sno].name = Yap_LookupAtom(fl); - GLOBAL_Stream[sno].user_name = MkAtomTerm(Yap_LookupAtom(fname)); - GLOBAL_Stream[sno].encoding = LOCAL_encoding; - RECOVER_MACHINE_REGS(); - UNLOCK(GLOBAL_Stream[sno].streamlock); + } + bool consulted = (mode == YAP_CONSULT_MODE); + Yap_init_consult(consulted, bfp); + sno = Yap_OpenStream(fl, "r", MkAtomTerm(Yap_LookupAtom(bfp))); + *osnop = Yap_CheckAlias(AtomLoopStream); + if (!Yap_AddAlias(AtomLoopStream, sno)) { + Yap_CloseStream(sno); + pop_text_stack(lvl); + sno = -1; return sno; + } + GLOBAL_Stream[sno].name = Yap_LookupAtom(fl); + GLOBAL_Stream[sno].user_name = MkAtomTerm(Yap_LookupAtom(fname)); + GLOBAL_Stream[sno].encoding = LOCAL_encoding; + RECOVER_MACHINE_REGS(); + UNLOCK(GLOBAL_Stream[sno].streamlock); + return sno; } /// given a stream descriptor or stream alias (see open/3), /// return YAP's internal handle. -X_API void *YAP_GetStreamFromId(int no) { - return GLOBAL_Stream + no; -} +X_API void *YAP_GetStreamFromId(int no) { return GLOBAL_Stream + no; } X_API FILE *YAP_TermToStream(Term t) { - BACKUP_MACHINE_REGS(); - FILE *s; + BACKUP_MACHINE_REGS(); + FILE *s; - if (IsVarTerm(t) || !IsAtomTerm(t)) - return NULL; - if ((s = Yap_GetStreamHandle(t)->file)) { - RECOVER_MACHINE_REGS(); - return s; - } - RECOVER_MACHINE_REGS(); + if (IsVarTerm(t) || !IsAtomTerm(t)) return NULL; + if ((s = Yap_GetStreamHandle(t)->file)) { + RECOVER_MACHINE_REGS(); + return s; + } + RECOVER_MACHINE_REGS(); + return NULL; } X_API void YAP_EndConsult(int sno, int *osnop) { - BACKUP_MACHINE_REGS(); - Yap_CloseStream(sno); - if (osnop >= 0) - Yap_AddAlias(AtomLoopStream, *osnop); - Yap_end_consult(); + BACKUP_MACHINE_REGS(); + Yap_CloseStream(sno); + if (osnop >= 0) + Yap_AddAlias(AtomLoopStream, *osnop); + Yap_end_consult(); - RECOVER_MACHINE_REGS(); + RECOVER_MACHINE_REGS(); } X_API Term YAP_Read(FILE *f) { - Term o; - int sno = Yap_FileStream(f, NULL, TermNil, Input_Stream_f); + Term o; + int sno = Yap_FileStream(f, NULL, TermNil, Input_Stream_f); - BACKUP_MACHINE_REGS(); - o = Yap_read_term(sno, TermNil, 1); - Yap_ReleaseStream(sno); - RECOVER_MACHINE_REGS(); - return o; + BACKUP_MACHINE_REGS(); + o = Yap_read_term(sno, TermNil, 1); + Yap_ReleaseStream(sno); + RECOVER_MACHINE_REGS(); + return o; } X_API Term YAP_ReadFromStream(int sno) { - Term o; + Term o; - BACKUP_MACHINE_REGS(); - o = Yap_read_term(sno, TermNil, false); - RECOVER_MACHINE_REGS(); - return o; + BACKUP_MACHINE_REGS(); + o = Yap_read_term(sno, TermNil, false); + RECOVER_MACHINE_REGS(); + return o; } X_API Term YAP_ReadClauseFromStream(int sno) { - BACKUP_MACHINE_REGS(); - Term t = Yap_read_term(sno, TermNil, true); - RECOVER_MACHINE_REGS(); - return t; + BACKUP_MACHINE_REGS(); + Term t = Yap_read_term(sno, TermNil, true); + RECOVER_MACHINE_REGS(); + return t; } X_API void YAP_Write(Term t, FILE *f, int flags) { - BACKUP_MACHINE_REGS(); - int sno = Yap_FileStream(f, NULL, TermNil, Output_Stream_f); + BACKUP_MACHINE_REGS(); + int sno = Yap_FileStream(f, NULL, TermNil, Output_Stream_f); - Yap_plwrite(t, GLOBAL_Stream + sno, 0, flags, GLOBAL_MaxPriority); - Yap_ReleaseStream(sno); + Yap_plwrite(t, GLOBAL_Stream + sno, 0, flags, GLOBAL_MaxPriority); + Yap_ReleaseStream(sno); - RECOVER_MACHINE_REGS(); + RECOVER_MACHINE_REGS(); } X_API YAP_Term YAP_CopyTerm(Term t) { - Term tn; - BACKUP_MACHINE_REGS(); + Term tn; + BACKUP_MACHINE_REGS(); - tn = Yap_CopyTerm(t); + tn = Yap_CopyTerm(t); - RECOVER_MACHINE_REGS(); + RECOVER_MACHINE_REGS(); - return (tn); + return (tn); } X_API char *YAP_WriteBuffer(Term t, char *buf, size_t sze, int flags) { - CACHE_REGS - seq_tv_t inp, out; + CACHE_REGS + seq_tv_t inp, out; - BACKUP_MACHINE_REGS(); - int l = push_text_stack(); - inp.val.t = t; - inp.type = YAP_STRING_TERM | YAP_STRING_DATUM; - out.type = YAP_STRING_CHARS; - out.val.c = buf; - out.max = sze - 1; - out.enc = LOCAL_encoding; - if (!Yap_CVT_Text(&inp, &out PASS_REGS)) { - RECOVER_MACHINE_REGS(); - pop_text_stack(l); - return NULL; + BACKUP_MACHINE_REGS(); + int l = push_text_stack(); + inp.val.t = t; + inp.type = YAP_STRING_TERM | YAP_STRING_DATUM; + out.type = YAP_STRING_CHARS; + out.val.c = buf; + out.max = sze - 1; + out.enc = LOCAL_encoding; + if (!Yap_CVT_Text(&inp, &out PASS_REGS)) { + RECOVER_MACHINE_REGS(); + pop_text_stack(l); + return NULL; + } else { + RECOVER_MACHINE_REGS(); + if (buf == out.val.c) { + return buf; } else { - RECOVER_MACHINE_REGS(); - if (buf == out.val.c) { - return buf; - } else { - return pop_output_text_stack(l, out.val.c); - } + return pop_output_text_stack(l, out.val.c); } + } } - /// write a a term to n user-provided buffer: make sure not tp /// overflow the buffer even if the text is much larger. X_API int YAP_WriteDynamicBuffer(YAP_Term t, char *buf, size_t sze, size_t *lengthp, encoding_t enc, int flags) { - char *b; + char *b; - BACKUP_MACHINE_REGS(); - b = Yap_TermToBuffer(t, enc, flags); - strncpy(buf, b, sze); - buf[sze] = 0; - RECOVER_MACHINE_REGS(); - return true; + BACKUP_MACHINE_REGS(); + b = Yap_TermToBuffer(t, enc, flags); + strncpy(buf, b, sze); + buf[sze] = 0; + RECOVER_MACHINE_REGS(); + return true; } X_API char *YAP_CompileClause(Term t) { - CACHE_REGS - yamop *codeaddr; - Term mod = CurrentModule; - Term tn = TermNil; + CACHE_REGS + yamop *codeaddr; + Term mod = CurrentModule; + Term tn = TermNil; - BACKUP_MACHINE_REGS(); + BACKUP_MACHINE_REGS(); - /* allow expansion during stack initialization */ - LOCAL_ErrorMessage = NULL; - ARG1 = t; - YAPEnterCriticalSection(); - codeaddr = Yap_cclause(t, 0, mod, t); - if (codeaddr != NULL) { - t = Deref(ARG1); /* just in case there was an heap overflow */ - if (!Yap_addclause(t, codeaddr, TermAssertz, mod, &tn)) { - YAPLeaveCriticalSection(); - return LOCAL_ErrorMessage; - } + /* allow expansion during stack initialization */ + LOCAL_ErrorMessage = NULL; + ARG1 = t; + YAPEnterCriticalSection(); + codeaddr = Yap_cclause(t, 0, mod, t); + if (codeaddr != NULL) { + t = Deref(ARG1); /* just in case there was an heap overflow */ + if (!Yap_addclause(t, codeaddr, TermAssertz, mod, &tn)) { + YAPLeaveCriticalSection(); + return LOCAL_ErrorMessage; } - YAPLeaveCriticalSection(); + } + YAPLeaveCriticalSection(); - if (Yap_get_signal(YAP_CDOVF_SIGNAL)) { - if (!Yap_locked_growheap(FALSE, 0, NULL)) { - Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", - LOCAL_ErrorMessage); - } + if (Yap_get_signal(YAP_CDOVF_SIGNAL)) { + if (!Yap_locked_growheap(FALSE, 0, NULL)) { + Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "YAP failed to grow heap: %s", + LOCAL_ErrorMessage); } - RECOVER_MACHINE_REGS(); - return (LOCAL_ErrorMessage); -} - -static int yap_lineno = 0; - -/* do initial boot by consulting the file boot.yap */ -static void do_bootfile(const char *b_file USES_REGS) { - Term t; - int boot_stream, osno; - Functor functor_query = Yap_MkFunctor(Yap_LookupAtom("?-"), 1); - Functor functor_command1 = Yap_MkFunctor(Yap_LookupAtom(":-"), 1); - - /* consult boot.pl */ - char *full = malloc(YAP_FILENAME_MAX + 1); - full[0] = '\0'; - /* the consult mode does not matter here, really */ - boot_stream = YAP_InitConsult(YAP_BOOT_MODE, b_file, full, &osno); - if (boot_stream < 0) { - fprintf(stderr, "[ FATAL ERROR: could not open boot_stream %s ]\n", - b_file); - exit(1); - } - free(full); - setAtomicGlobalPrologFlag( - RESOURCE_DATABASE_FLAG, - MkAtomTerm(GLOBAL_Stream[boot_stream].name)); - do { - CACHE_REGS - YAP_Reset(YAP_FULL_RESET); - Yap_StartSlots(); - t = YAP_ReadClauseFromStream(boot_stream); - - // Yap_DebugPlWriteln(t); - if (t == 0) { - fprintf(stderr, - "[ SYNTAX ERROR: while parsing boot_stream %s at line %d ]\n", - b_file, yap_lineno); - } else if (YAP_IsVarTerm(t) || t == TermNil) { - fprintf(stderr, "[ line %d: term cannot be compiled ]", yap_lineno); - } else if (YAP_IsPairTerm(t)) { - fprintf(stderr, "[ SYSTEM ERROR: consult not allowed in boot file ]\n"); - fprintf(stderr, "error found at line %d and pos %d", yap_lineno, - fseek(GLOBAL_Stream[boot_stream].file, 0L, SEEK_CUR)); - } else if (IsApplTerm(t) && (FunctorOfTerm(t) == functor_query || - FunctorOfTerm(t) == functor_command1)) { - YAP_RunGoalOnce(ArgOfTerm(1, t)); - } else { - Term ts[2]; - char *ErrorMessage; - Functor fun = Yap_MkFunctor(Yap_LookupAtom("$prepare_clause"), 2); - PredEntry *pe = RepPredProp(PredPropByFunc(fun, PROLOG_MODULE)); - - if (pe->OpcodeOfPred != UNDEF_OPCODE && pe->OpcodeOfPred != FAIL_OPCODE) { - ts[0] = t; - RESET_VARIABLE(ts + 1); - if (YAP_RunGoal(Yap_MkApplTerm(fun, 2, ts))) - t = ts[1]; - } - ErrorMessage = YAP_CompileClause(t); - if (ErrorMessage) { - fprintf(stderr, "%s", ErrorMessage); - } - } - } while (t != TermEof); - - YAP_EndConsult(boot_stream, &osno); -#if DEBUG - if (Yap_output_msg) - fprintf(stderr, "Boot loaded\n"); -#endif -} - -/** - YAP_DelayInit() - - ensures initialization is done after engine creation. - It receives a pointer to function and a string describing - the module. -*/ - -X_API bool YAP_initialized = false; -static int n_mdelays = 0; -static YAP_delaymodule_t *m_delays; - -X_API bool YAP_DelayInit(YAP_ModInit_t f, const char s[]) { - if (m_delays) { - m_delays = realloc(m_delays, (n_mdelays + 1) * sizeof(YAP_delaymodule_t)); - } else { - m_delays = malloc(sizeof(YAP_delaymodule_t)); - } - m_delays[n_mdelays].f = f; - m_delays[n_mdelays].s = s; - n_mdelays++; - return true; -} - -bool Yap_LateInit(const char s[]) { - int i; - for (i = 0; i < n_mdelays; i++) { - if (!strcmp(m_delays[i].s, s)) { - m_delays[i].f(); - return true; - } - } - return false; -} - -static void start_modules(void) { - Term cm = CurrentModule; - size_t i; - for (i = 0; i < n_mdelays; i++) { - CurrentModule = MkAtomTerm(YAP_LookupAtom(m_delays[i].s)); - m_delays[i].f(); - } - CurrentModule = cm; -} - -/// whether Yap is under control of some other system -bool Yap_embedded = true; - -/* this routine is supposed to be called from an external program - that wants to control Yap */ - -X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { - YAP_file_type_t restore_result = yap_init->boot_file_type; - bool do_bootstrap = (restore_result & YAP_CONSULT_MODE); - CELL Trail = 0, Stack = 0, Heap = 0, Atts = 0; - char *boot_file, *restore_file; - Int rc; - char *yroot; - if (YAP_initialized) - return YAP_FOUND_BOOT_ERROR; - if (!LOCAL_TextBuffer) - LOCAL_TextBuffer = Yap_InitTextAllocator(); - - yroot = Malloc(YAP_FILENAME_MAX + 1); - boot_file = Malloc(YAP_FILENAME_MAX + 1); - restore_file = Malloc(YAP_FILENAME_MAX + 1); - /* ignore repeated calls to YAP_Init */ - Yap_embedded = yap_init->Embedded; - Yap_page_size = Yap_InitPageSize(); /* init memory page size, required by - later functions */ -#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) - Yap_init_yapor_global_local_memory(); -#endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA */ - if (!yap_init->Embedded) { - GLOBAL_PrologShouldHandleInterrupts = - !yap_init->PrologCannotHandleInterrupts; - Yap_InitSysbits(0); /* init signal handling and time, required by later - functions */ - GLOBAL_argv = yap_init->Argv; - GLOBAL_argc = yap_init->Argc; - } - - char *tmp = NULL, *root; - if (yap_init->bootstrapping) { - restore_result = YAP_BOOT_PL; - } else if (restore_result == YAP_QLY){ - if (yap_init->SavedState == NULL) { - tmp = Malloc(strlen(YAP_STARTUP) + 1); - strncpy(tmp, YAP_STARTUP, strlen(YAP_STARTUP) + 1); - root = Malloc(YAP_FILENAME_MAX+1); - if (yap_init->YapLibDir) - strncpy( root, yap_init->YapLibDir,YAP_FILENAME_MAX ); - else - strncpy( root, YAP_LIBDIR, YAP_FILENAME_MAX ); - } else { - root = Malloc(YAP_FILENAME_MAX); - Yap_getcwd(root, YAP_FILENAME_MAX); - tmp = yap_init->SavedState; - } - } - -#if __ANDROID__ - - //if (yap_init->assetManager) - Yap_InitAssetManager(); - -#endif -#if USE_DL_MALLOC - if (yap_init->SavedState == NULL) - yap_init->SavedState = YAP_STARTUP; -#else - yap_init->SavedState = Yap_findFile(tmp, YAP_STARTUP, root, - restore_file, true, YAP_QLY, true, true); -#endif - if (restore_result == YAP_BOOT_PL) { -#if USE_DL_MALLOC - if (yap_init->YapPrologBootFile == NULL || - yap_init->YapPrologBootFile[0] == 0) - { - yap_init->YapPrologBootFile = YAP_BOOTFILE; - strcpy(boot_file, YAP_BOOTFILE); - } -#else - if (yap_init->YapPrologBootFile == NULL) { - tmp = Malloc(strlen(YAP_BOOTFILE) + 1); - strncpy(tmp,YAP_BOOTFILE, strlen(YAP_BOOTFILE) + 1); - } else { - tmp = (char*)yap_init->YapPrologBootFile; - } - const char *bpath; - if (yap_init->bootstrapping) - bpath = YAP_PL_SRCDIR; - else - bpath = yap_init->YapShareDir; - yap_init->YapPrologBootFile = Yap_findFile(tmp, yap_init->YapPrologBootFile, - bpath, boot_file, - true, YAP_BOOT_PL, true, true); -#endif - } - - if (yap_init->TrailSize == 0) { - if (Trail == 0) - Trail = DefTrailSpace; - } else { - Trail = yap_init->TrailSize; - } -// Atts = yap_init->AttsSize; - if (yap_init->StackSize == 0) { - Stack = DefStackSpace; - } else { - Stack = yap_init->StackSize; - } -#ifndef USE_SYSTEM_MALLOC - if (yap_init->HeapSize == 0) { - if (Heap == 0) - Heap = DefHeapSpace; - } else { - Heap = yap_init->HeapSize; - } -#endif - - Yap_InitWorkspace(yap_init, Heap, Stack, Trail, Atts, yap_init - ->MaxTableSpaceSize, - yap_init->NumberWorkers, yap_init->SchedulerLoop, - yap_init->DelayedReleaseLoad); -// - - CACHE_REGS - if (Yap_embedded) - if (yap_init->QuietMode) { - setVerbosity(TermSilent); - } - { - if (yap_init->YapPrologRCFile != NULL) { -/* - This must be done before restore, otherwise - restore will print out messages .... -*/ - setBooleanGlobalPrologFlag(HALT_AFTER_CONSULT_FLAG, - yap_init - ->HaltAfterConsult); - } -/* tell the system who should cope with interrupts */ - Yap_ExecutionMode = yap_init->ExecutionMode; - if (do_bootstrap) { - restore_result |= - YAP_BOOT_PL; - } else { // try always to boot from the saved state. - if (restore_result == YAP_QLY) { - if (DO_ONLY_CODE != - Yap_SavedInfo(yap_init - ->SavedState, yap_init->YapLibDir, &Trail, - &Stack, &Heap)) { - restore_result = YAP_BOOT_PL; - } else { - restore_result = - Yap_Restore(yap_init->SavedState, yap_init->YapLibDir); - } - if (restore_result == YAP_FOUND_BOOT_ERROR) { - restore_result = YAP_BOOT_PL; - } - } - } - GLOBAL_FAST_BOOT_FLAG = yap_init->FastBoot; -#if defined(YAPOR) || defined(TABLING) - - Yap_init_root_frames(); - -#endif /* YAPOR || TABLING */ -#ifdef YAPOR - Yap_init_yapor_workers(); -#if YAPOR_THREADS - if (Yap_thread_self() != 0) { -#else - if (worker_id != 0) { -#endif -#if defined(YAPOR_COPY) || defined(YAPOR_SBA) - /* - In the SBA we cannot just happily inherit registers - from the other workers - */ - Yap_InitYaamRegs(worker_id); -#endif /* YAPOR_COPY || YAPOR_SBA */ -#ifndef YAPOR_THREADS - Yap_InitPreAllocCodeSpace(0); -#endif /* YAPOR_THREADS */ - /* slaves, waiting for work */ - CurrentModule = USER_MODULE; - P = GETWORK_FIRST_TIME; - Yap_exec_absmi(FALSE, YAP_EXEC_ABSMI); - Yap_Error(SYSTEM_ERROR_INTERNAL, TermNil, - "abstract machine unexpected exit (YAP_Init)"); - } -#endif /* YAPOR */ - RECOVER_MACHINE_REGS(); - } -/* make sure we do this after restore */ - if (yap_init->MaxStackSize) { - GLOBAL_AllowLocalExpansion = FALSE; - } else { - GLOBAL_AllowLocalExpansion = TRUE; - } - if (yap_init->MaxGlobalSize) { - GLOBAL_AllowGlobalExpansion = FALSE; - } else { - GLOBAL_AllowGlobalExpansion = TRUE; - } - if (yap_init->MaxTrailSize) { - GLOBAL_AllowTrailExpansion = FALSE; - } else { - GLOBAL_AllowTrailExpansion = TRUE; - } - if (yap_init->YapPrologRCFile) { - Yap_PutValue(AtomConsultOnBoot, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologRCFile)) - ); -/* - This must be done again after restore, as yap_flags - has been overwritten .... -*/ - setBooleanGlobalPrologFlag(HALT_AFTER_CONSULT_FLAG, - yap_init - ->HaltAfterConsult); - } - if (yap_init->YapPrologTopLevelGoal) { - Yap_PutValue(AtomTopLevelGoal, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologTopLevelGoal)) - ); - } - if (yap_init->YapPrologGoal) { - Yap_PutValue(AtomInitGoal, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologGoal)) - ); - } - if (yap_init->YapPrologAddPath) { - Yap_PutValue(AtomExtendFileSearchPath, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologAddPath)) - ); - } - if (yap_init->YapPlDir) { - setAtomicGlobalPrologFlag(PROLOG_LIBRARY_DIRECTORY_FLAG, - MkAtomTerm(Yap_LookupAtom(yap_init->YapPlDir)) - ); - } - if (yap_init->YapDLLDir) { - setAtomicGlobalPrologFlag(PROLOG_FOREIGN_DIRECTORY_FLAG, - MkAtomTerm(Yap_LookupAtom(yap_init->YapDLLDir)) - ); - } - if (yap_init->QuietMode) { - setVerbosity(TermSilent); - } - if (restore_result == YAP_QLY) { - LOCAL_PrologMode &= - ~BootMode; - CurrentModule = LOCAL_SourceModule = USER_MODULE; - setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, - true); - rc = YAP_QLY; - } else { - if (boot_file[0] == '\0') - strcpy(boot_file, YAP_BOOTFILE - ); - do_bootfile(boot_file PASS_REGS); - setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, - false); - rc = YAP_BOOT_PL; - } - - start_modules(); - - YAP_initialized = true; - return rc; -} - -#if (DefTrailSpace < MinTrailSpace) -#undef DefTrailSpace -#define DefTrailSpace MinTrailSpace -#endif - -#if (DefStackSpace < MinStackSpace) -#undef DefStackSpace -#define DefStackSpace MinStackSpace -#endif - -#if (DefHeapSpace < MinHeapSpace) -#undef DefHeapSpace -#define DefHeapSpace MinHeapSpace -#endif - -#define DEFAULT_NUMBERWORKERS 1 -#define DEFAULT_SCHEDULERLOOP 10 -#define DEFAULT_DELAYEDRELEASELOAD 3 - -X_API YAP_file_type_t YAP_FastInit(char *saved_state, int argc, char *argv[]) { - YAP_init_args init_args; - YAP_file_type_t out; - - if ((out = Yap_InitDefaults(&init_args, saved_state, argc, argv)) != - YAP_FOUND_BOOT_ERROR) - out = YAP_Init(&init_args); - if (out == YAP_FOUND_BOOT_ERROR) { - Yap_Error(init_args.ErrorNo, TermNil, init_args.ErrorCause); - } - return out; + } + RECOVER_MACHINE_REGS(); + return (LOCAL_ErrorMessage); } X_API void YAP_PutValue(YAP_Atom at, Term t) { Yap_PutValue(at, t); } @@ -2721,15 +2295,15 @@ X_API void YAP_PutValue(YAP_Atom at, Term t) { Yap_PutValue(at, t); } X_API Term YAP_GetValue(YAP_Atom at) { return (Yap_GetValue(at)); } X_API int YAP_CompareTerms(Term t1, Term t2) { - return Yap_compare_terms(t1, t2); + return Yap_compare_terms(t1, t2); } X_API int YAP_Reset(yap_reset_t mode) { - int res = TRUE; - BACKUP_MACHINE_REGS(); - res = Yap_Reset(mode); - RECOVER_MACHINE_REGS(); - return res; + int res = TRUE; + BACKUP_MACHINE_REGS(); + res = Yap_Reset(mode); + RECOVER_MACHINE_REGS(); + return res; } X_API void YAP_Exit(int retval) { Yap_exit(retval); } @@ -2738,7 +2312,7 @@ X_API int YAP_InitSocks(const char *host, long port) { return 0; } X_API void YAP_SetOutputMessage(void) { #if DEBUG - Yap_output_msg = TRUE; + Yap_output_msg = TRUE; #endif } @@ -2749,163 +2323,166 @@ X_API int YAP_StreamToFileNo(Term t) { return (Yap_StreamToFileNo(t)); } * @param sno Stream Id * @return data structure for stream */ -X_API void *YAP_RepStreamFromId(int sno) { return GLOBAL_Stream+sno; } +X_API void *YAP_RepStreamFromId(int sno) { return GLOBAL_Stream + sno; } X_API void YAP_CloseAllOpenStreams(void) { - BACKUP_H(); + BACKUP_H(); - Yap_CloseStreams(FALSE); + Yap_CloseStreams(FALSE); - RECOVER_H(); + RECOVER_H(); } X_API void YAP_FlushAllStreams(void) { - BACKUP_H(); + BACKUP_H(); - // VSC?? Yap_FlushStreams(); + // VSC?? Yap_FlushStreams(); - RECOVER_H(); + RECOVER_H(); } X_API void YAP_Throw(Term t) { - BACKUP_MACHINE_REGS(); - Yap_JumpToEnv(t); - RECOVER_MACHINE_REGS(); + BACKUP_MACHINE_REGS(); + Yap_JumpToEnv(t); + RECOVER_MACHINE_REGS(); } X_API void YAP_AsyncThrow(Term t) { - CACHE_REGS - BACKUP_MACHINE_REGS(); - LOCAL_PrologMode |= AsyncIntMode; - Yap_JumpToEnv(t); - LOCAL_PrologMode &= ~AsyncIntMode; - RECOVER_MACHINE_REGS(); + CACHE_REGS + BACKUP_MACHINE_REGS(); + LOCAL_PrologMode |= AsyncIntMode; + Yap_JumpToEnv(t); + LOCAL_PrologMode &= ~AsyncIntMode; + RECOVER_MACHINE_REGS(); } X_API void YAP_Halt(int i) { Yap_exit(i); } X_API CELL *YAP_TopOfLocalStack(void) { - CACHE_REGS - return (ASP); + CACHE_REGS + return (ASP); } X_API void *YAP_Predicate(YAP_Atom a, UInt arity, Term m) { - if (arity == 0) { - return ((void *) RepPredProp(PredPropByAtom(a, m))); - } else { - Functor f = Yap_MkFunctor(a, arity); - return ((void *) RepPredProp(PredPropByFunc(f, m))); - } + if (arity == 0) { + return ((void *)RepPredProp(PredPropByAtom(a, m))); + } else { + Functor f = Yap_MkFunctor(a, arity); + return ((void *)RepPredProp(PredPropByFunc(f, m))); + } } X_API void YAP_PredicateInfo(void *p, YAP_Atom *a, UInt *arity, Term *m) { - PredEntry *pd = (PredEntry *) p; - if (pd->ArityOfPE) { - *arity = pd->ArityOfPE; - *a = NameOfFunctor(pd->FunctorOfPred); - } else { - *arity = 0; - *a = (Atom) (pd->FunctorOfPred); - } - if (pd->ModuleOfPred) - *m = pd->ModuleOfPred; - else - *m = TermProlog; + PredEntry *pd = (PredEntry *)p; + if (pd->ArityOfPE) { + *arity = pd->ArityOfPE; + *a = NameOfFunctor(pd->FunctorOfPred); + } else { + *arity = 0; + *a = (Atom)(pd->FunctorOfPred); + } + if (pd->ModuleOfPred) + *m = pd->ModuleOfPred; + else + *m = TermProlog; } -X_API void YAP_UserCPredicate(const char *name, YAP_UserCPred def, YAP_Arity arity) { - Yap_InitCPred(name, arity, (CPredicate)def, UserCPredFlag); +X_API void YAP_UserCPredicate(const char *name, YAP_UserCPred def, + YAP_Arity arity) { + Yap_InitCPred(name, arity, (CPredicate)def, UserCPredFlag); } X_API void YAP_UserBackCPredicate_(const char *name, YAP_UserCPred init, YAP_UserCPred cont, YAP_Arity arity, YAP_Arity extra) { - Yap_InitCPredBackCut(name, arity, extra, (CPredicate)init, (CPredicate)cont, NULL, UserCPredFlag); + Yap_InitCPredBackCut(name, arity, extra, (CPredicate)init, (CPredicate)cont, + NULL, UserCPredFlag); } X_API void YAP_UserBackCutCPredicate(const char *name, YAP_UserCPred init, YAP_UserCPred cont, YAP_UserCPred cut, YAP_Arity arity, YAP_Arity extra) { - Yap_InitCPredBackCut(name, arity, extra, (CPredicate)init, - (CPredicate)cont, (CPredicate)cut, UserCPredFlag); + Yap_InitCPredBackCut(name, arity, extra, (CPredicate)init, (CPredicate)cont, + (CPredicate)cut, UserCPredFlag); } X_API void YAP_UserBackCPredicate(const char *name, YAP_UserCPred init, YAP_UserCPred cont, arity_t arity, arity_t extra) { - Yap_InitCPredBackCut(name, arity, extra, (CPredicate)init, (CPredicate)cont, NULL, UserCPredFlag); + Yap_InitCPredBackCut(name, arity, extra, (CPredicate)init, (CPredicate)cont, + NULL, UserCPredFlag); } X_API void YAP_UserCPredicateWithArgs(const char *a, YAP_UserCPred f, arity_t arity, Term mod) { - CACHE_REGS - Term cm = CurrentModule; - CurrentModule = mod; - Yap_InitCPred(a, arity, (CPredicate)f, UserCPredFlag|CArgsPredFlag ); - CurrentModule = cm; + CACHE_REGS + Term cm = CurrentModule; + CurrentModule = mod; + Yap_InitCPred(a, arity, (CPredicate)f, UserCPredFlag | CArgsPredFlag); + CurrentModule = cm; } X_API Term YAP_CurrentModule(void) { - CACHE_REGS - return (CurrentModule); + CACHE_REGS + return (CurrentModule); } X_API Term YAP_SetCurrentModule(Term new) { - CACHE_REGS - Term omod = CurrentModule; - LOCAL_SourceModule = CurrentModule = new; - return omod; + CACHE_REGS + Term omod = CurrentModule; + LOCAL_SourceModule = CurrentModule = new; + return omod; } X_API Term YAP_CreateModule(YAP_Atom at) { - Term t; - WRITE_LOCK(RepAtom(at)->ARWLock); - t = Yap_Module(MkAtomTerm(at)); - WRITE_UNLOCK(RepAtom(at)->ARWLock); - return t; + Term t; + WRITE_LOCK(RepAtom(at)->ARWLock); + t = Yap_Module(MkAtomTerm(at)); + WRITE_UNLOCK(RepAtom(at)->ARWLock); + return t; } X_API Term YAP_StripModule(Term t, Term *modp) { - return Yap_StripModule(t, modp); + return Yap_StripModule(t, modp); } X_API int YAP_ThreadSelf(void) { #if THREADS - return Yap_thread_self(); + return Yap_thread_self(); #else - return -2; + return -2; #endif } X_API int YAP_ThreadCreateEngine(struct YAP_thread_attr_struct *attr) { #if THREADS - return Yap_thread_create_engine(attr); + return Yap_thread_create_engine(attr); #else - return -1; + return -1; #endif } X_API int YAP_ThreadAttachEngine(int wid) { #if THREADS - return Yap_thread_attach_engine(wid); + return Yap_thread_attach_engine(wid); #else - return FALSE; + return FALSE; #endif } X_API int YAP_ThreadDetachEngine(int wid) { #if THREADS - return Yap_thread_detach_engine(wid); + return Yap_thread_detach_engine(wid); #else - return FALSE; + return FALSE; #endif } X_API int YAP_ThreadDestroyEngine(int wid) { #if THREADS - return Yap_thread_destroy_engine(wid); + return Yap_thread_destroy_engine(wid); #else - return FALSE; + return FALSE; #endif } @@ -2918,313 +2495,313 @@ X_API int YAP_AtomGetHold(YAP_Atom at) { return Yap_AtomIncreaseHold(at); } X_API int YAP_AtomReleaseHold(YAP_Atom at) { return Yap_AtomDecreaseHold(at); } X_API YAP_agc_hook YAP_AGCRegisterHook(YAP_agc_hook hook) { - YAP_agc_hook old = (YAP_agc_hook)GLOBAL_AGCHook; - GLOBAL_AGCHook = (Agc_hook)hook; - return old; + YAP_agc_hook old = (YAP_agc_hook)GLOBAL_AGCHook; + GLOBAL_AGCHook = (Agc_hook)hook; + return old; } X_API int YAP_HaltRegisterHook(HaltHookFunc hook, void *closure) { - return Yap_HaltRegisterHook(hook, closure); + return Yap_HaltRegisterHook(hook, closure); } X_API char *YAP_cwd(void) { - CACHE_REGS - char *buf = NULL; - int len; - if (!Yap_getcwd(LOCAL_FileNameBuf, YAP_FILENAME_MAX)) - return FALSE; - len = strlen(LOCAL_FileNameBuf); - buf = Yap_AllocCodeSpace(len + 1); - if (!buf) - return NULL; - strncpy(buf, LOCAL_FileNameBuf, len); - return buf; + CACHE_REGS + char *buf = NULL; + int len; + if (!Yap_getcwd(LOCAL_FileNameBuf, YAP_FILENAME_MAX)) + return FALSE; + len = strlen(LOCAL_FileNameBuf); + buf = Yap_AllocCodeSpace(len + 1); + if (!buf) + return NULL; + strncpy(buf, LOCAL_FileNameBuf, len); + return buf; } X_API Term YAP_FloatsToList(double *dblp, size_t sz) { - CACHE_REGS - Term t; - CELL *oldH; - BACKUP_H(); + CACHE_REGS + Term t; + CELL *oldH; + BACKUP_H(); - if (!sz) - return TermNil; - while (ASP - 1024 < HR + sz * (2 + 2 + SIZEOF_DOUBLE / SIZEOF_INT_P)) { - if ((CELL *) dblp > H0 && (CELL *) dblp < HR) { - /* we are in trouble */ - LOCAL_OpenArray = (CELL *) dblp; - } - if (!Yap_dogc(0, NULL PASS_REGS)) { - RECOVER_H(); - return 0L; - } - dblp = (double *) LOCAL_OpenArray; - LOCAL_OpenArray = NULL; + if (!sz) + return TermNil; + while (ASP - 1024 < HR + sz * (2 + 2 + SIZEOF_DOUBLE / SIZEOF_INT_P)) { + if ((CELL *)dblp > H0 && (CELL *)dblp < HR) { + /* we are in trouble */ + LOCAL_OpenArray = (CELL *)dblp; } - t = AbsPair(HR); - while (sz) { - oldH = HR; - HR += 2; - oldH[0] = MkFloatTerm(*dblp++); - oldH[1] = AbsPair(HR); - sz--; + if (!Yap_dogc(0, NULL PASS_REGS)) { + RECOVER_H(); + return 0L; } - oldH[1] = TermNil; - RECOVER_H(); - return t; + dblp = (double *)LOCAL_OpenArray; + LOCAL_OpenArray = NULL; + } + t = AbsPair(HR); + while (sz) { + oldH = HR; + HR += 2; + oldH[0] = MkFloatTerm(*dblp++); + oldH[1] = AbsPair(HR); + sz--; + } + oldH[1] = TermNil; + RECOVER_H(); + return t; } X_API Int YAP_ListToFloats(Term t, double *dblp, size_t sz) { - size_t i = 0; + size_t i = 0; - t = Deref(t); - do { - Term hd; - if (IsVarTerm(t)) - return -1; - if (t == TermNil) - return i; - if (!IsPairTerm(t)) - return -1; - hd = HeadOfTerm(t); - if (IsFloatTerm(hd)) { - dblp[i++] = FloatOfTerm(hd); - } else { - extern double Yap_gmp_to_float(Term hd); + t = Deref(t); + do { + Term hd; + if (IsVarTerm(t)) + return -1; + if (t == TermNil) + return i; + if (!IsPairTerm(t)) + return -1; + hd = HeadOfTerm(t); + if (IsFloatTerm(hd)) { + dblp[i++] = FloatOfTerm(hd); + } else { + extern double Yap_gmp_to_float(Term hd); - if (IsIntTerm(hd)) - dblp[i++] = IntOfTerm(hd); - else if (IsLongIntTerm(hd)) - dblp[i++] = LongIntOfTerm(hd); + if (IsIntTerm(hd)) + dblp[i++] = IntOfTerm(hd); + else if (IsLongIntTerm(hd)) + dblp[i++] = LongIntOfTerm(hd); #if USE_GMP - else if (IsBigIntTerm(hd)) - dblp[i++] = Yap_gmp_to_float(hd); + else if (IsBigIntTerm(hd)) + dblp[i++] = Yap_gmp_to_float(hd); #endif - else - return -1; - } - if (i == sz) - return sz; - t = TailOfTerm(t); - } while (TRUE); + else + return -1; + } + if (i == sz) + return sz; + t = TailOfTerm(t); + } while (TRUE); } X_API Term YAP_IntsToList(Int *dblp, size_t sz) { - CACHE_REGS - Term t; - CELL *oldH; - BACKUP_H(); + CACHE_REGS + Term t; + CELL *oldH; + BACKUP_H(); - if (!sz) - return TermNil; - while (ASP - 1024 < HR + sz * 3) { - if ((CELL *) dblp > H0 && (CELL *) dblp < HR) { - /* we are in trouble */ - LOCAL_OpenArray = (CELL *) dblp; - } - if (!Yap_dogc(0, NULL PASS_REGS)) { - RECOVER_H(); - return 0L; - } - dblp = (Int *) LOCAL_OpenArray; - LOCAL_OpenArray = NULL; + if (!sz) + return TermNil; + while (ASP - 1024 < HR + sz * 3) { + if ((CELL *)dblp > H0 && (CELL *)dblp < HR) { + /* we are in trouble */ + LOCAL_OpenArray = (CELL *)dblp; } - t = AbsPair(HR); - while (sz) { - oldH = HR; - HR += 2; - oldH[0] = MkIntegerTerm(*dblp++); - oldH[1] = AbsPair(HR); - sz--; + if (!Yap_dogc(0, NULL PASS_REGS)) { + RECOVER_H(); + return 0L; } - oldH[1] = TermNil; - RECOVER_H(); - return t; + dblp = (Int *)LOCAL_OpenArray; + LOCAL_OpenArray = NULL; + } + t = AbsPair(HR); + while (sz) { + oldH = HR; + HR += 2; + oldH[0] = MkIntegerTerm(*dblp++); + oldH[1] = AbsPair(HR); + sz--; + } + oldH[1] = TermNil; + RECOVER_H(); + return t; } X_API Int YAP_ListToInts(Term t, Int *dblp, size_t sz) { - size_t i = 0; + size_t i = 0; - t = Deref(t); - do { - Term hd; - if (IsVarTerm(t)) - return -1; - if (t == TermNil) - return i; - if (!IsPairTerm(t)) - return -1; - hd = HeadOfTerm(t); - if (!IsIntTerm(hd)) - return -1; - dblp[i++] = IntOfTerm(hd); - if (i == sz) - return sz; - t = TailOfTerm(t); - } while (TRUE); + t = Deref(t); + do { + Term hd; + if (IsVarTerm(t)) + return -1; + if (t == TermNil) + return i; + if (!IsPairTerm(t)) + return -1; + hd = HeadOfTerm(t); + if (!IsIntTerm(hd)) + return -1; + dblp[i++] = IntOfTerm(hd); + if (i == sz) + return sz; + t = TailOfTerm(t); + } while (TRUE); } X_API Term YAP_OpenList(int n) { - CACHE_REGS - Term t; - BACKUP_H(); + CACHE_REGS + Term t; + BACKUP_H(); - while (HR + 2 * n > ASP - 1024) { - if (!Yap_dogc(0, NULL PASS_REGS)) { - RECOVER_H(); - return FALSE; - } + while (HR + 2 * n > ASP - 1024) { + if (!Yap_dogc(0, NULL PASS_REGS)) { + RECOVER_H(); + return FALSE; } - t = AbsPair(HR); - HR += 2 * n; + } + t = AbsPair(HR); + HR += 2 * n; - RECOVER_H(); - return t; + RECOVER_H(); + return t; } X_API Term YAP_ExtendList(Term t0, Term inp) { - Term t; - CELL *ptr = RepPair(t0); - BACKUP_H(); + Term t; + CELL *ptr = RepPair(t0); + BACKUP_H(); - ptr[0] = inp; - ptr[1] = AbsPair(ptr + 2); - t = AbsPair(ptr + 2); + ptr[0] = inp; + ptr[1] = AbsPair(ptr + 2); + t = AbsPair(ptr + 2); - RECOVER_H(); - return t; + RECOVER_H(); + return t; } X_API int YAP_CloseList(Term t0, Term tail) { - CELL *ptr = RepPair(t0); + CELL *ptr = RepPair(t0); - RESET_VARIABLE(ptr - 1); - if (!Yap_unify((Term) (ptr - 1), tail)) - return FALSE; - return TRUE; + RESET_VARIABLE(ptr - 1); + if (!Yap_unify((Term)(ptr - 1), tail)) + return FALSE; + return TRUE; } X_API int YAP_IsAttVar(Term t) { - CACHE_REGS - t = Deref(t); - if (!IsVarTerm(t)) - return FALSE; - return IsAttVar(VarOfTerm(t)); + CACHE_REGS + t = Deref(t); + if (!IsVarTerm(t)) + return FALSE; + return IsAttVar(VarOfTerm(t)); } X_API Term YAP_AttsOfVar(Term t) { - CACHE_REGS - attvar_record *attv; + CACHE_REGS + attvar_record *attv; - t = Deref(t); - if (!IsVarTerm(t)) - return TermNil; - if (!IsAttVar(VarOfTerm(t))) - return TermNil; - attv = RepAttVar(VarOfTerm(t)); - return attv->Atts; + t = Deref(t); + if (!IsVarTerm(t)) + return TermNil; + if (!IsAttVar(VarOfTerm(t))) + return TermNil; + attv = RepAttVar(VarOfTerm(t)); + return attv->Atts; } X_API int YAP_FileNoFromStream(Term t) { - t = Deref(t); - if (IsVarTerm(t)) - return -1; - return Yap_StreamToFileNo(t); + t = Deref(t); + if (IsVarTerm(t)) + return -1; + return Yap_StreamToFileNo(t); } X_API void *YAP_FileDescriptorFromStream(Term t) { - t = Deref(t); - if (IsVarTerm(t)) - return NULL; - return Yap_FileDescriptorFromStream(t); + t = Deref(t); + if (IsVarTerm(t)) + return NULL; + return Yap_FileDescriptorFromStream(t); } X_API void *YAP_Record(Term t) { - DBTerm *dbterm; - DBRecordList *dbt; + DBTerm *dbterm; + DBRecordList *dbt; - dbterm = Yap_StoreTermInDB(Deref(t), 0); - if (dbterm == NULL) - return NULL; - dbt = (struct record_list *) Yap_AllocCodeSpace(sizeof(struct record_list)); - while (dbt == NULL) { - if (!Yap_growheap(FALSE, sizeof(struct record_list), NULL)) { - /* be a good neighbor */ - Yap_FreeCodeSpace((void *) dbterm); - Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "using YAP_Record"); - return NULL; - } + dbterm = Yap_StoreTermInDB(Deref(t), 0); + if (dbterm == NULL) + return NULL; + dbt = (struct record_list *)Yap_AllocCodeSpace(sizeof(struct record_list)); + while (dbt == NULL) { + if (!Yap_growheap(FALSE, sizeof(struct record_list), NULL)) { + /* be a good neighbor */ + Yap_FreeCodeSpace((void *)dbterm); + Yap_Error(RESOURCE_ERROR_HEAP, TermNil, "using YAP_Record"); + return NULL; } - if (Yap_Records) { - Yap_Records->prev_rec = dbt; - } - dbt->next_rec = Yap_Records; - dbt->prev_rec = NULL; - dbt->dbrecord = dbterm; - Yap_Records = dbt; - return dbt; + } + if (Yap_Records) { + Yap_Records->prev_rec = dbt; + } + dbt->next_rec = Yap_Records; + dbt->prev_rec = NULL; + dbt->dbrecord = dbterm; + Yap_Records = dbt; + return dbt; } X_API Term YAP_Recorded(void *handle) { - CACHE_REGS - Term t; - DBTerm *dbterm = ((DBRecordList *) handle)->dbrecord; + CACHE_REGS + Term t; + DBTerm *dbterm = ((DBRecordList *)handle)->dbrecord; - BACKUP_MACHINE_REGS(); - do { - LOCAL_Error_TYPE = YAP_NO_ERROR; - t = Yap_FetchTermFromDB(dbterm); - if (LOCAL_Error_TYPE == YAP_NO_ERROR) { - RECOVER_MACHINE_REGS(); - return t; - } else if (LOCAL_Error_TYPE == RESOURCE_ERROR_ATTRIBUTED_VARIABLES) { - LOCAL_Error_TYPE = YAP_NO_ERROR; - if (!Yap_growglobal(NULL)) { - Yap_Error(RESOURCE_ERROR_ATTRIBUTED_VARIABLES, TermNil, - LOCAL_ErrorMessage); - RECOVER_MACHINE_REGS(); - return FALSE; - } - } else { - LOCAL_Error_TYPE = YAP_NO_ERROR; - if (!Yap_growstack(dbterm->NOfCells * CellSize)) { - Yap_Error(RESOURCE_ERROR_STACK, TermNil, LOCAL_ErrorMessage); - RECOVER_MACHINE_REGS(); - return FALSE; - } - } - } while (t == (CELL) 0); - RECOVER_MACHINE_REGS(); - return t; + BACKUP_MACHINE_REGS(); + do { + LOCAL_Error_TYPE = YAP_NO_ERROR; + t = Yap_FetchTermFromDB(dbterm); + if (LOCAL_Error_TYPE == YAP_NO_ERROR) { + RECOVER_MACHINE_REGS(); + return t; + } else if (LOCAL_Error_TYPE == RESOURCE_ERROR_ATTRIBUTED_VARIABLES) { + LOCAL_Error_TYPE = YAP_NO_ERROR; + if (!Yap_growglobal(NULL)) { + Yap_Error(RESOURCE_ERROR_ATTRIBUTED_VARIABLES, TermNil, + LOCAL_ErrorMessage); + RECOVER_MACHINE_REGS(); + return FALSE; + } + } else { + LOCAL_Error_TYPE = YAP_NO_ERROR; + if (!Yap_growstack(dbterm->NOfCells * CellSize)) { + Yap_Error(RESOURCE_ERROR_STACK, TermNil, LOCAL_ErrorMessage); + RECOVER_MACHINE_REGS(); + return FALSE; + } + } + } while (t == (CELL)0); + RECOVER_MACHINE_REGS(); + return t; } X_API int YAP_Erase(void *handle) { - DBRecordList *dbr = (DBRecordList *) handle; - if (dbr->next_rec) - dbr->next_rec->prev_rec = dbr->prev_rec; - if (dbr->prev_rec) - dbr->prev_rec->next_rec = dbr->next_rec; - else if (Yap_Records == dbr) { - Yap_Records = dbr->next_rec; - } - Yap_ReleaseTermFromDB(dbr->dbrecord); - Yap_FreeCodeSpace(handle); - return 1; + DBRecordList *dbr = (DBRecordList *)handle; + if (dbr->next_rec) + dbr->next_rec->prev_rec = dbr->prev_rec; + if (dbr->prev_rec) + dbr->prev_rec->next_rec = dbr->next_rec; + else if (Yap_Records == dbr) { + Yap_Records = dbr->next_rec; + } + Yap_ReleaseTermFromDB(dbr->dbrecord); + Yap_FreeCodeSpace(handle); + return 1; } X_API yhandle_t YAP_ArgsToSlots(int n) { - CACHE_REGS - return Yap_NewSlots(n); + CACHE_REGS + return Yap_NewSlots(n); } X_API void YAP_SlotsToArgs(int n, yhandle_t slot) { - CACHE_REGS - CELL *ptr0 = Yap_AddressFromSlot(slot), *ptr1 = &ARG1; - while (n--) { - *ptr1++ = *ptr0++; - } + CACHE_REGS + CELL *ptr0 = Yap_AddressFromSlot(slot), *ptr1 = &ARG1; + while (n--) { + *ptr1++ = *ptr0++; + } } X_API void YAP_signal(int sig) { Yap_signal(sig); } @@ -3233,11 +2810,11 @@ X_API int YAP_SetYAPFlag(Term flag, Term val) { return setYapFlag(flag, val); } /* yhandle_t YAP_VarSlotToNumber(yhandle_t) */ X_API yhandle_t YAP_VarSlotToNumber(yhandle_t s) { - CACHE_REGS - Term *t = (CELL *) Deref(Yap_GetFromSlot(s)); - if (t < HR) - return t - H0; - return t - LCL0; + CACHE_REGS + Term *t = (CELL *)Deref(Yap_GetFromSlot(s)); + if (t < HR) + return t - H0; + return t - LCL0; } /* Term YAP_ModuleUser() */ @@ -3245,138 +2822,139 @@ X_API Term YAP_ModuleUser(void) { return MkAtomTerm(AtomUser); } /* int YAP_PredicateHasClauses() */ X_API YAP_handle_t YAP_NumberOfClausesForPredicate(YAP_PredEntryPtr ape) { - PredEntry *pe = ape; - return pe->cs.p_code.NOfClauses; + PredEntry *pe = ape; + return pe->cs.p_code.NOfClauses; } X_API int YAP_MaxOpPriority(YAP_Atom at, Term module) { - AtomEntry *ae = RepAtom(at); - OpEntry *info; - WRITE_LOCK(ae->ARWLock); - info = Yap_GetOpPropForAModuleHavingALock(ae, module); - if (!info) { - WRITE_UNLOCK(ae->ARWLock); - return 0; - } - int ret = info->Prefix; - if (info->Infix > ret) - ret = info->Infix; - if (info->Posfix > ret) - ret = info->Posfix; + AtomEntry *ae = RepAtom(at); + OpEntry *info; + WRITE_LOCK(ae->ARWLock); + info = Yap_GetOpPropForAModuleHavingALock(ae, module); + if (!info) { WRITE_UNLOCK(ae->ARWLock); - return ret; + return 0; + } + int ret = info->Prefix; + if (info->Infix > ret) + ret = info->Infix; + if (info->Posfix > ret) + ret = info->Posfix; + WRITE_UNLOCK(ae->ARWLock); + return ret; } -X_API int YAP_OpInfo(YAP_Atom at, Term module, int opkind, int *yap_type, int *prio) { - AtomEntry *ae = RepAtom(at); - OpEntry *info; - int n; +X_API int YAP_OpInfo(YAP_Atom at, Term module, int opkind, int *yap_type, + int *prio) { + AtomEntry *ae = RepAtom(at); + OpEntry *info; + int n; - WRITE_LOCK(ae->ARWLock); - info = Yap_GetOpPropForAModuleHavingALock(ae, module); + WRITE_LOCK(ae->ARWLock); + info = Yap_GetOpPropForAModuleHavingALock(ae, module); + if (!info) { + /* try system operators */ + info = Yap_GetOpPropForAModuleHavingALock(ae, PROLOG_MODULE); if (!info) { - /* try system operators */ - info = Yap_GetOpPropForAModuleHavingALock(ae, PROLOG_MODULE); - if (!info) { - WRITE_UNLOCK(ae->ARWLock); - return 0; - } + WRITE_UNLOCK(ae->ARWLock); + return 0; } - if (opkind == PREFIX_OP) { - SMALLUNSGN p = info->Prefix; - if (!p) { - WRITE_UNLOCK(ae->ARWLock); - return FALSE; - } - if (p & DcrrpFlag) { - n = 6; - *prio = (p ^ DcrrpFlag); - } else { - n = 7; - *prio = p; - } - } else if (opkind == INFIX_OP) { - SMALLUNSGN p = info->Infix; - if (!p) { - WRITE_UNLOCK(ae->ARWLock); - return FALSE; - } - if ((p & DcrrpFlag) && (p & DcrlpFlag)) { - n = 1; - *prio = (p ^ (DcrrpFlag | DcrlpFlag)); - } else if (p & DcrrpFlag) { - n = 3; - *prio = (p ^ DcrrpFlag); - } else if (p & DcrlpFlag) { - n = 2; - *prio = (p ^ DcrlpFlag); - } else { - n = 4; - *prio = p; - } + } + if (opkind == PREFIX_OP) { + SMALLUNSGN p = info->Prefix; + if (!p) { + WRITE_UNLOCK(ae->ARWLock); + return FALSE; + } + if (p & DcrrpFlag) { + n = 6; + *prio = (p ^ DcrrpFlag); } else { - SMALLUNSGN p = info->Posfix; - if (p & DcrlpFlag) { - n = 4; - *prio = (p ^ DcrlpFlag); - } else { - n = 5; - *prio = p; - } + n = 7; + *prio = p; } - *yap_type = n; - WRITE_UNLOCK(ae->ARWLock); - return 1; + } else if (opkind == INFIX_OP) { + SMALLUNSGN p = info->Infix; + if (!p) { + WRITE_UNLOCK(ae->ARWLock); + return FALSE; + } + if ((p & DcrrpFlag) && (p & DcrlpFlag)) { + n = 1; + *prio = (p ^ (DcrrpFlag | DcrlpFlag)); + } else if (p & DcrrpFlag) { + n = 3; + *prio = (p ^ DcrrpFlag); + } else if (p & DcrlpFlag) { + n = 2; + *prio = (p ^ DcrlpFlag); + } else { + n = 4; + *prio = p; + } + } else { + SMALLUNSGN p = info->Posfix; + if (p & DcrlpFlag) { + n = 4; + *prio = (p ^ DcrlpFlag); + } else { + n = 5; + *prio = p; + } + } + *yap_type = n; + WRITE_UNLOCK(ae->ARWLock); + return 1; } X_API int YAP_Argv(char ***argvp) { - if (argvp) { - *argvp = GLOBAL_argv; - } - return GLOBAL_argc; + if (argvp) { + *argvp = GLOBAL_argv; + } + return GLOBAL_argc; } X_API YAP_tag_t YAP_TagOfTerm(Term t) { - if (IsVarTerm(t)) { - CELL *pt = VarOfTerm(t); - if (IsUnboundVar(pt)) { - CACHE_REGS - if (IsAttVar(pt)) - return YAP_TAG_ATT; - return YAP_TAG_UNBOUND; - } - return YAP_TAG_REF; + if (IsVarTerm(t)) { + CELL *pt = VarOfTerm(t); + if (IsUnboundVar(pt)) { + CACHE_REGS + if (IsAttVar(pt)) + return YAP_TAG_ATT; + return YAP_TAG_UNBOUND; } - if (IsPairTerm(t)) - return YAP_TAG_PAIR; - if (IsAtomOrIntTerm(t)) { - if (IsAtomTerm(t)) - return YAP_TAG_ATOM; - return YAP_TAG_INT; - } else { - Functor f = FunctorOfTerm(t); + return YAP_TAG_REF; + } + if (IsPairTerm(t)) + return YAP_TAG_PAIR; + if (IsAtomOrIntTerm(t)) { + if (IsAtomTerm(t)) + return YAP_TAG_ATOM; + return YAP_TAG_INT; + } else { + Functor f = FunctorOfTerm(t); - if (IsExtensionFunctor(f)) { - if (f == FunctorDBRef) { - return YAP_TAG_DBREF; - } - if (f == FunctorLongInt) { - return YAP_TAG_LONG_INT; - } - if (f == FunctorBigInt) { - big_blob_type bt = RepAppl(t)[1]; - switch (bt) { - case BIG_INT: - return YAP_TAG_BIG_INT; - case BIG_RATIONAL: - return YAP_TAG_RATIONAL; - default: - return YAP_TAG_OPAQUE; - } - } + if (IsExtensionFunctor(f)) { + if (f == FunctorDBRef) { + return YAP_TAG_DBREF; + } + if (f == FunctorLongInt) { + return YAP_TAG_LONG_INT; + } + if (f == FunctorBigInt) { + big_blob_type bt = RepAppl(t)[1]; + switch (bt) { + case BIG_INT: + return YAP_TAG_BIG_INT; + case BIG_RATIONAL: + return YAP_TAG_RATIONAL; + default: + return YAP_TAG_OPAQUE; } - return YAP_TAG_APPL; + } } + return YAP_TAG_APPL; + } } int YAP_BPROLOG_exception; @@ -3392,95 +2970,97 @@ Term YAP_BPROLOG_curr_toam_status; * @return a positive number with the size, or 0. */ X_API size_t YAP_UTF8_TextLength(Term t) { - utf8proc_uint8_t dst[8]; - size_t sz = 0; + utf8proc_uint8_t dst[8]; + size_t sz = 0; - if (IsPairTerm(t)) { - while (t != TermNil) { - int c; + if (IsPairTerm(t)) { + while (t != TermNil) { + int c; - Term hd = HeadOfTerm(t); - if (IsAtomTerm(hd)) { - Atom at = AtomOfTerm(hd); - unsigned char *s = RepAtom(at)->UStrOfAE; - int32_t ch; - get_utf8(s, 1, &ch); - c = ch; - } else if (IsIntegerTerm(hd)) { - c = IntegerOfTerm(hd); - } else { - c = '\0'; - } + Term hd = HeadOfTerm(t); + if (IsAtomTerm(hd)) { + Atom at = AtomOfTerm(hd); + unsigned char *s = RepAtom(at)->UStrOfAE; + int32_t ch; + get_utf8(s, 1, &ch); + c = ch; + } else if (IsIntegerTerm(hd)) { + c = IntegerOfTerm(hd); + } else { + c = '\0'; + } - sz += utf8proc_encode_char(c, dst); - t = TailOfTerm(t); - } - } else if (IsAtomTerm(t)) { - Atom at = AtomOfTerm(t); - char *s = RepAtom(at)->StrOfAE; - sz = strlen(s); - } else if (IsStringTerm(t)) { - sz = strlen(StringOfTerm(t)); + sz += utf8proc_encode_char(c, dst); + t = TailOfTerm(t); } - return sz; + } else if (IsAtomTerm(t)) { + Atom at = AtomOfTerm(t); + char *s = RepAtom(at)->StrOfAE; + sz = strlen(s); + } else if (IsStringTerm(t)) { + sz = strlen(StringOfTerm(t)); + } + return sz; } X_API Int YAP_ListLength(Term t) { - Term *aux; + Term *aux; - Int n = Yap_SkipList(&t, &aux); - if (IsVarTerm(*aux)) - return -1; - if (*aux == TermNil) - return n; + Int n = Yap_SkipList(&t, &aux); + if (IsVarTerm(*aux)) return -1; + if (*aux == TermNil) + return n; + return -1; } -X_API Int YAP_NumberVars(Term t, Int nbv) { return Yap_NumberVars(t, nbv, FALSE); } +X_API Int YAP_NumberVars(Term t, Int nbv) { + return Yap_NumberVars(t, nbv, FALSE); +} X_API Term YAP_UnNumberVars(Term t) { - /* don't allow sharing of ground terms */ - return Yap_UnNumberTerm(t, FALSE); + /* don't allow sharing of ground terms */ + return Yap_UnNumberTerm(t, FALSE); } X_API int YAP_IsNumberedVariable(Term t) { - return IsApplTerm(t) && FunctorOfTerm(t) == FunctorDollarVar && - IsIntegerTerm(ArgOfTerm(1, t)); + return IsApplTerm(t) && FunctorOfTerm(t) == FunctorDollarVar && + IsIntegerTerm(ArgOfTerm(1, t)); } X_API size_t YAP_ExportTerm(Term inp, char *buf, size_t len) { - if (!len) - return 0; - return Yap_ExportTerm(inp, buf, len, current_arity()); + if (!len) + return 0; + return Yap_ExportTerm(inp, buf, len, current_arity()); } X_API size_t YAP_SizeOfExportedTerm(char *buf) { - if (!buf) - return 0; - return Yap_SizeOfExportedTerm(buf); + if (!buf) + return 0; + return Yap_SizeOfExportedTerm(buf); } X_API Term YAP_ImportTerm(char *buf) { return Yap_ImportTerm(buf); } X_API int YAP_RequiresExtraStack(size_t sz) { - CACHE_REGS + CACHE_REGS - if (sz < 16 * 1024) - sz = 16 * 1024; - if (HR <= ASP - sz) { - return FALSE; + if (sz < 16 * 1024) + sz = 16 * 1024; + if (HR <= ASP - sz) { + return FALSE; + } + BACKUP_H(); + while (HR > ASP - sz) { + CACHE_REGS + RECOVER_H(); + if (!Yap_dogc(0, NULL PASS_REGS)) { + return -1; } BACKUP_H(); - while (HR > ASP - sz) { - CACHE_REGS - RECOVER_H(); - if (!Yap_dogc(0, NULL PASS_REGS)) { - return -1; - } - BACKUP_H(); - } - RECOVER_H(); - return TRUE; + } + RECOVER_H(); + return TRUE; } atom_t *TR_Atoms; @@ -3489,67 +3069,69 @@ size_t AtomTranslations, MaxAtomTranslations; size_t FunctorTranslations, MaxFunctorTranslations; X_API Int YAP_AtomToInt(YAP_Atom At) { - TranslationEntry *te = Yap_GetTranslationProp(At, 0); - if (te != NIL) - return te->Translation; - TR_Atoms[AtomTranslations] = At; - Yap_PutAtomTranslation(At, 0, AtomTranslations); - AtomTranslations++; - if (AtomTranslations == MaxAtomTranslations) { - atom_t *ot = TR_Atoms; - atom_t *nt = (atom_t *) malloc(sizeof(atom_t) * 2 * MaxAtomTranslations); - if (nt == NULL) { - Yap_Error(SYSTEM_ERROR_INTERNAL, MkAtomTerm(At), - "No more room for translations"); - return -1; - } - memcpy(nt, ot, sizeof(atom_t) * MaxAtomTranslations); - TR_Atoms = nt; - free(ot); - MaxAtomTranslations *= 2; + TranslationEntry *te = Yap_GetTranslationProp(At, 0); + if (te != NIL) + return te->Translation; + TR_Atoms[AtomTranslations] = At; + Yap_PutAtomTranslation(At, 0, AtomTranslations); + AtomTranslations++; + if (AtomTranslations == MaxAtomTranslations) { + atom_t *ot = TR_Atoms; + atom_t *nt = (atom_t *)malloc(sizeof(atom_t) * 2 * MaxAtomTranslations); + if (nt == NULL) { + Yap_Error(SYSTEM_ERROR_INTERNAL, MkAtomTerm(At), + "No more room for translations"); + return -1; } - return AtomTranslations - 1; + memcpy(nt, ot, sizeof(atom_t) * MaxAtomTranslations); + TR_Atoms = nt; + free(ot); + MaxAtomTranslations *= 2; + } + return AtomTranslations - 1; } X_API YAP_Atom YAP_IntToAtom(Int i) { return TR_Atoms[i]; } X_API Int YAP_FunctorToInt(YAP_Functor f) { - YAP_Atom At = NameOfFunctor(f); - arity_t arity = ArityOfFunctor(f); - TranslationEntry *te = Yap_GetTranslationProp(At, arity); - if (te != NIL) - return te->Translation; - TR_Functors[FunctorTranslations] = f; - Yap_PutAtomTranslation(At, arity, FunctorTranslations); - FunctorTranslations++; - if (FunctorTranslations == MaxFunctorTranslations) { - functor_t *nt = (functor_t *) malloc(sizeof(functor_t) * 2 * - MaxFunctorTranslations), - *ot = TR_Functors; - if (nt == NULL) { - Yap_Error(SYSTEM_ERROR_INTERNAL, MkAtomTerm(At), - "No more room for translations"); - return -1; - } - memcpy(nt, ot, sizeof(functor_t) * MaxFunctorTranslations); - TR_Functors = nt; - free(ot); - MaxFunctorTranslations *= 2; + YAP_Atom At = NameOfFunctor(f); + arity_t arity = ArityOfFunctor(f); + TranslationEntry *te = Yap_GetTranslationProp(At, arity); + if (te != NIL) + return te->Translation; + TR_Functors[FunctorTranslations] = f; + Yap_PutAtomTranslation(At, arity, FunctorTranslations); + FunctorTranslations++; + if (FunctorTranslations == MaxFunctorTranslations) { + functor_t *nt = (functor_t *)malloc(sizeof(functor_t) * 2 * + MaxFunctorTranslations), + *ot = TR_Functors; + if (nt == NULL) { + Yap_Error(SYSTEM_ERROR_INTERNAL, MkAtomTerm(At), + "No more room for translations"); + return -1; } - return FunctorTranslations - 1; + memcpy(nt, ot, sizeof(functor_t) * MaxFunctorTranslations); + TR_Functors = nt; + free(ot); + MaxFunctorTranslations *= 2; + } + return FunctorTranslations - 1; } -X_API void *YAP_foreign_stream(int sno) { return GLOBAL_Stream[sno].u.private_data; } +X_API void *YAP_foreign_stream(int sno) { + return GLOBAL_Stream[sno].u.private_data; +} X_API YAP_Functor YAP_IntToFunctor(Int i) { return TR_Functors[i]; } X_API void *YAP_shared(void) { return LOCAL_shared; } X_API YAP_PredEntryPtr YAP_TopGoal(void) { - Functor f = Yap_MkFunctor(Yap_LookupAtom("yap_query"), 3); - Term tmod = MkAtomTerm(Yap_LookupAtom("yapi")); - PredEntry *p = RepPredProp(Yap_GetPredPropByFunc(f, tmod)); - return p; + Functor f = Yap_MkFunctor(Yap_LookupAtom("yap_query"), 3); + Term tmod = MkAtomTerm(Yap_LookupAtom("yapi")); + PredEntry *p = RepPredProp(Yap_GetPredPropByFunc(f, tmod)); + return p; } void yap_init(void) {} diff --git a/C/load_dl.c b/C/load_dl.c index 824a889cf..c0989fde4 100755 --- a/C/load_dl.c +++ b/C/load_dl.c @@ -167,18 +167,10 @@ static Int LoadForeign(StringList while (libs) { const char *file = AtomName(libs->name); - if (!Yap_findFile(file, NULL, NULL, LOCAL_FileNameBuf, true, YAP_OBJ, true, - true)) { - LOCAL_ErrorMessage = malloc(MAX_ERROR_MSG_SIZE); - /* use LD_LIBRARY_PATH */ - strncpy(LOCAL_ErrorMessage, (char *)AtomName(libs->name), - YAP_FILENAME_MAX); - } - #ifdef __osf__ if ((libs->handle = dlopen(LOCAL_FileNameBuf, RTLD_LAZY)) == NULL) #else - if ((libs->handle = dlopen(LOCAL_FileNameBuf, RTLD_LAZY | RTLD_GLOBAL)) == + if ((libs->handle = dlopen(file, RTLD_LAZY | RTLD_GLOBAL)) == NULL) #endif { @@ -195,20 +187,9 @@ static Int LoadForeign(StringList /* load libraries first so that their symbols are available to other routines */ const char *file = AtomName(ofiles->name); - if (!Yap_findFile(file, NULL, NULL, LOCAL_FileNameBuf, true, YAP_OBJ, true, - true)) { - if (LOCAL_ErrorMessage == NULL) { - LOCAL_ErrorMessage = malloc(MAX_ERROR_MSG_SIZE); - strcpy(LOCAL_ErrorMessage, - "%% Trying to open non-existing file in LoadForeign"); - } - } -#ifdef __osf__ - if ((ofiles->handle = dlopen(LOCAL_FileNameBuf, RTLD_LAZY)) == NULL) -#else - if ((ofiles->handle = dlopen(LOCAL_FileNameBuf, RTLD_LAZY | RTLD_GLOBAL)) == + + if ((ofiles->handle = dlopen(file, RTLD_LAZY | RTLD_GLOBAL)) == NULL) -#endif { if (LOCAL_ErrorMessage == NULL) { LOCAL_ErrorMessage = malloc(MAX_ERROR_MSG_SIZE); diff --git a/C/qlyr.c b/C/qlyr.c index 1649b3ea3..a67f3109f 100755 --- a/C/qlyr.c +++ b/C/qlyr.c @@ -1097,10 +1097,10 @@ static Int qload_program(USES_REGS1) { return true; } -YAP_file_type_t Yap_Restore(const char *s, const char *lib_dir) { +YAP_file_type_t Yap_Restore(const char *s) { CACHE_REGS - FILE *stream = Yap_OpenRestore(s, lib_dir); + FILE *stream = Yap_OpenRestore(s); if (!stream) return -1; GLOBAL_RestoreFile = s; diff --git a/C/save.c b/C/save.c index 3b84075e7..fe53275d9 100755 --- a/C/save.c +++ b/C/save.c @@ -87,7 +87,7 @@ void initIO(void); static int myread(FILE *, char *, Int); static Int mywrite(FILE *, char *, Int); -static FILE *open_file(char *, int); +static FILE *open_file(const char *, int); static int close_file(void); static Int putout(CELL); static Int putcellptr(CELL *); @@ -123,7 +123,7 @@ static void restore_heap(void); static void ShowAtoms(void); static void ShowEntries(PropEntry *); #endif -static int OpenRestore(const char *, const char *, CELL *, CELL *, CELL *, +static int OpenRestore(const char *, CELL *, CELL *, CELL *, CELL *, FILE **); static void CloseRestore(void); #ifndef _WIN32 @@ -233,7 +233,7 @@ static Int OldHeapUsed; static CELL which_save; /* Open a file to read or to write */ -static FILE *open_file(char *my_file, int flag) { +static FILE *open_file(const char *my_file, int flag) { FILE *splfild; char flags[6]; int i = 0; @@ -1307,10 +1307,11 @@ static void ShowAtoms() { #include -static int commit_to_saved_state(char *s, CELL *Astate, CELL *ATrail, +static int commit_to_saved_state(const char *s, CELL *Astate, CELL *ATrail, CELL *AStack, CELL *AHeap) { CACHE_REGS int mode; + char tmp[YAP_FILENAME_MAX+1]; if ((mode = check_header(Astate, ATrail, AStack, AHeap PASS_REGS)) == FAIL_RESTORE) @@ -1318,9 +1319,8 @@ static int commit_to_saved_state(char *s, CELL *Astate, CELL *ATrail, LOCAL_PrologMode = BootMode; if (Yap_HeapBase) { if (falseGlobalPrologFlag(HALT_AFTER_CONSULT_FLAG) && !silentMode()) { - Yap_findFile(s, NULL, NULL, LOCAL_FileNameBuf2, true, YAP_QLY, true, - true); - fprintf(stderr, "%% Restoring file %s\n", LOCAL_FileNameBuf2); + Yap_AbsoluteFile(s, tmp, true); + fprintf(stderr, "%% Restoring file %s\n", tmp); } Yap_CloseStreams(TRUE); } @@ -1333,7 +1333,7 @@ static int commit_to_saved_state(char *s, CELL *Astate, CELL *ATrail, return mode; } -static int try_open(char *inpf, CELL *Astate, CELL *ATrail, CELL *AStack, +static int try_open(const char *inpf, CELL *Astate, CELL *ATrail, CELL *AStack, CELL *AHeap, FILE **streamp) { int mode; @@ -1355,18 +1355,13 @@ static int try_open(char *inpf, CELL *Astate, CELL *ATrail, CELL *AStack, return mode; } -static int OpenRestore(const char *inpf, const char *YapLibDir, CELL *Astate, +static int OpenRestore(const char *fname, CELL *Astate, CELL *ATrail, CELL *AStack, CELL *AHeap, FILE **streamp) { CACHE_REGS int mode; - char fname[YAP_FILENAME_MAX + 1]; - - if (!Yap_findFile(inpf, YAP_STARTUP, YapLibDir, fname, true, YAP_QLY, - true, true)) - return FAIL_RESTORE; - if (fname[0] && (mode = try_open(fname, Astate, ATrail, AStack, AHeap, + if (fname && fname[0] && (mode = try_open(fname, Astate, ATrail, AStack, AHeap, streamp)) != FAIL_RESTORE) { setAtomicGlobalPrologFlag(RESOURCE_DATABASE_FLAG, MkAtomTerm(Yap_LookupAtom(fname))); @@ -1378,22 +1373,19 @@ static int OpenRestore(const char *inpf, const char *YapLibDir, CELL *Astate, do_SYSTEM_ERROR_INTERNAL(PERMISSION_ERROR_OPEN_SOURCE_SINK, "incorrect saved state "); } else { - strncpy(LOCAL_FileNameBuf, inpf, YAP_FILENAME_MAX - 1); + strncpy(LOCAL_FileNameBuf, fname, YAP_FILENAME_MAX - 1); do_SYSTEM_ERROR_INTERNAL(PERMISSION_ERROR_OPEN_SOURCE_SINK, "could not open saved state"); } return FAIL_RESTORE; } -FILE *Yap_OpenRestore(const char *inpf, const char *YapLibDir) { +FILE *Yap_OpenRestore(const char *inpf) { FILE *stream = NULL; if (!inpf) inpf = "startup.yss"; - if (!YapLibDir) { - YapLibDir = YAP_LIBDIR; - } - OpenRestore(inpf, YapLibDir, NULL, NULL, NULL, NULL, &stream); + OpenRestore(inpf, NULL, NULL, NULL, NULL, &stream); return stream; } @@ -1467,14 +1459,14 @@ static void RestoreHeap(OPCODE old_ops[] USES_REGS) { * This function is called to know about the parameters of the last saved * state */ -int Yap_SavedInfo(const char *FileName, const char *YapLibDir, CELL *ATrail, +int Yap_SavedInfo(const char *FileName, CELL *ATrail, CELL *AStack, CELL *AHeap) { return DO_ONLY_CODE; CELL MyTrail, MyStack, MyHeap, MyState; int mode; - mode = OpenRestore(FileName, YapLibDir, &MyState, &MyTrail, &MyStack, &MyHeap, + mode = OpenRestore(FileName, &MyState, &MyTrail, &MyStack, &MyHeap, NULL); if (mode == FAIL_RESTORE) { return -1; @@ -1554,13 +1546,13 @@ static void FreeRecords(void) { * This function is called when wanting only to restore the heap and * associated registers */ -static int Restore(char *s, char *lib_dir USES_REGS) { +static int Restore(char *s_dir USES_REGS) { int restore_mode; OPCODE old_ops[_std_top + 1]; CELL MyTrail, MyStack, MyHeap, MyState; - if ((restore_mode = OpenRestore(s, lib_dir, &MyState, &MyTrail, &MyStack, + if ((restore_mode = OpenRestore(s_dir, &MyState, &MyTrail, &MyStack, &MyHeap, NULL)) == FAIL_RESTORE) return (FALSE); Yap_ShutdownLoadForeign(); @@ -1612,9 +1604,9 @@ static int Restore(char *s, char *lib_dir USES_REGS) { return restore_mode; } -int Yap_SavedStateRestore(char *s, char *lib_dir) { +int Yap_SavedStateRestore(char *s) { CACHE_REGS - return Restore(s, lib_dir PASS_REGS); + return Restore(s PASS_REGS); } static Int p_restore(USES_REGS1) { @@ -1640,7 +1632,7 @@ static Int p_restore(USES_REGS1) { Yap_Error(TYPE_ERROR_LIST, t1, "restore/1"); return (FALSE); } - if ((mode = Restore(s, NULL PASS_REGS)) == DO_ONLY_CODE) { + if ((mode = Restore(s PASS_REGS)) == DO_ONLY_CODE) { Yap_RestartYap(3); } return (mode != FAIL_RESTORE); diff --git a/C/stdpreds.c b/C/stdpreds.c index 10679dd18..7d25fe1e3 100755 --- a/C/stdpreds.c +++ b/C/stdpreds.c @@ -1349,13 +1349,13 @@ static Int p_statistics_lu_db_size(USES_REGS1) { } static Int p_executable(USES_REGS1) { + char tmp[YAP_FILENAME_MAX+1]; if (GLOBAL_argv && GLOBAL_argv[0]) - Yap_findFile(GLOBAL_argv[0], NULL, NULL, LOCAL_FileNameBuf, true, YAP_EXE, - true, true); + Yap_AbsoluteFile(GLOBAL_argv[0], tmp, true); else - strncpy(LOCAL_FileNameBuf, Yap_FindExecutable(), YAP_FILENAME_MAX - 1); + strncpy(tmp, Yap_FindExecutable(), YAP_FILENAME_MAX); - return Yap_unify(MkAtomTerm(Yap_LookupAtom(LOCAL_FileNameBuf)), ARG1); + return Yap_unify(MkAtomTerm(Yap_LookupAtom(tmp)), ARG1); } static Int p_system_mode(USES_REGS1) { diff --git a/C/text.c b/C/text.c index 8259a5456..3044212a2 100644 --- a/C/text.c +++ b/C/text.c @@ -31,7 +31,7 @@ inline static size_t min_size(size_t i, size_t j) { return (i < j ? i : j); } #define wcsnlen(S, N) min_size(N, wcslen(S)) #endif -#ifndef HAVE_STPCPY +#if !defined(HAVE_STPCPY) && !defined(__APPLE__) inline static void* __stpcpy(void * i, const void * j) { return strcpy(i,j)+strlen(j);} #define stpcpy __stpcpy #endif diff --git a/C/yap-args.c b/C/yap-args.c index 0318baec5..dd894c189 100755 --- a/C/yap-args.c +++ b/C/yap-args.c @@ -9,7 +9,8 @@ ************************************************************************** * * * File: Yap.C * Last - *Rev: * Mods: + *Rev: + * Mods: ** Comments: Yap's Main File: parse arguments * * * *************************************************************************/ @@ -18,6 +19,7 @@ #include "Yap.h" #include "YapHeap.h" #include "YapInterface.h" +#include "YapStreams.h" #include "config.h" #if HAVE_UNISTD_H @@ -61,224 +63,441 @@ #endif -const char *Yap_BINDIR, *Yap_ROOTDIR, *Yap_SHAREDIR, *Yap_LIBDIR, *Yap_DLLDIR, *Yap_PLDIR; +const char *Yap_BINDIR, *Yap_ROOTDIR, *Yap_SHAREDIR, *Yap_LIBDIR, *Yap_DLLDIR, + *Yap_PLDIR, *Yap_BOOTPLDIR, *Yap_BOOTSTRAPPLDIR, *Yap_COMMONSDIR, + *Yap_STARTUP, *Yap_BOOTFILE; -const char *rootdirs[] = { - YAP_ROOTDIR, - "(EXECUTABLE)..", - "/usr/local", - "~", - NULL -}; + +static int yap_lineno = 0; + +/* do initial boot by consulting the file boot.yap */ +static void do_bootfile(const char *b_file USES_REGS) { + Term t; + int boot_stream, osno; + Functor functor_query = Yap_MkFunctor(Yap_LookupAtom("?-"), 1); + Functor functor_command1 = Yap_MkFunctor(Yap_LookupAtom(":-"), 1); + + /* consult boot.pl */ + char *full = malloc(YAP_FILENAME_MAX + 1); + full[0] = '\0'; + /* the consult mode does not matter here, really */ + boot_stream = YAP_InitConsult(YAP_BOOT_MODE, b_file, full, &osno); + if (boot_stream < 0) { + fprintf(stderr, "[ FATAL ERROR: could not open boot_stream %s ]\n", + b_file); + exit(1); + } + free(full); + setAtomicGlobalPrologFlag( + RESOURCE_DATABASE_FLAG, + MkAtomTerm(GLOBAL_Stream[boot_stream].name)); + do { + CACHE_REGS + YAP_Reset(YAP_FULL_RESET); + Yap_StartSlots(); + t = YAP_ReadClauseFromStream(boot_stream); + + // Yap_DebugPlWriteln(t); + if (t == 0) { + fprintf(stderr, + "[ SYNTAX ERROR: while parsing boot_stream %s at line %d ]\n", + b_file, yap_lineno); + } else if (YAP_IsVarTerm(t) || t == TermNil) { + fprintf(stderr, "[ line %d: term cannot be compiled ]", yap_lineno); + } else if (YAP_IsPairTerm(t)) { + fprintf(stderr, "[ SYSTEM ERROR: consult not allowed in boot file ]\n"); + fprintf(stderr, "error found at line %d and pos %d", yap_lineno, + fseek(GLOBAL_Stream[boot_stream].file, 0L, SEEK_CUR)); + } else if (IsApplTerm(t) && (FunctorOfTerm(t) == functor_query || + FunctorOfTerm(t) == functor_command1)) { + YAP_RunGoalOnce(ArgOfTerm(1, t)); + } else { + Term ts[2]; + char *ErrorMessage; + Functor fun = Yap_MkFunctor(Yap_LookupAtom("$prepare_clause"), 2); + PredEntry *pe = RepPredProp(PredPropByFunc(fun, PROLOG_MODULE)); + + if (pe->OpcodeOfPred != UNDEF_OPCODE && pe->OpcodeOfPred != FAIL_OPCODE) { + ts[0] = t; + RESET_VARIABLE(ts + 1); + if (YAP_RunGoal(Yap_MkApplTerm(fun, 2, ts))) + t = ts[1]; + } + ErrorMessage = YAP_CompileClause(t); + if (ErrorMessage) { + fprintf(stderr, "%s", ErrorMessage); + } + } + } while (t != TermEof); + BACKUP_MACHINE_REGS(); + + YAP_EndConsult(boot_stream, &osno); +#if DEBUG + if (Yap_output_msg) + fprintf(stderr, "Boot loaded\n"); +#endif +} + +/** @brief A simple language for detecting where YAP stuff cn be found + * + * @long The options are + * `[V]` use a configuration variable YAP_XXXDIR, prefixed by "DESTDIR" + * `(V)PATH` compute V and add /PATH, + * `$V` search the envurinment + * `?V` search the WINDOWS registry + * ~` search HOME + * `@` query user option. + * + */ +const char *rootdirs[] = {"[root]", "(execdir)..", "/usr/local", "~", NULL}; + +const char *bindirs[] = {"[bin]", "(root)bin", NULL}; const char *libdirs[] = { - "$YAPLIBDIR", - "[lib]", #if __ANDROID__ - "/assets/lib", + "/assets/lib", #endif - YAP_LIBDIR, - "(root)lib", - NULL -}; + "[lib]", "(root)lib", NULL}; const char *sharedirs[] = { - "$YAPSHAREDIR", - "[share]", #if __ANDROID__ - "/assets/share", + "/assets/share", #endif - YAP_SHAREDIR, - "(root)share", - NULL -}; + "[share]", "(root)share", NULL}; -const char *dlldirs[] = { - "(lib)Yap", - NULL -}; +const char *dlldirs[] = {"$YAPLIBDIR", "(lib)Yap", ".", NULL}; -const char *pldirs[] = { - "(share)Yap", - NULL -}; +const char *ssdirs[] = {".", "$YAPLIBDIR", "(lib)Yap", NULL}; + +const char *pldirs[] = {"$YAPSHAREDIR", "?library", "(share)Yap", ".", NULL}; + +const char *bootpldirs[] = {"(pl)pl", ".", NULL}; + +const char *bootstrappldirs[] = {YAP_PL_SRCDIR, NULL}; + +const char *commonsdirs[] = {"(share)PrologCommons", ".", NULL}; + +const char *ssnames[] = {"@SavedState", YAP_STARTUP, "startup.yss", NULL}; + +const char *plnames[] = {"@YapPrologBootFile", YAP_BOOTFILE, "boot.yap", NULL}; + +/** + * Search + */ +char *location(YAP_init_args *iap, const char *inp, char *out) { + if (inp == NULL || inp[0] == '\0') { + return NULL; + } else if (inp[0] == '(') { + if (strstr(inp + 1, "root") == inp + 1) { + if (!Yap_ROOTDIR || Yap_ROOTDIR[0] == '\0') { + return NULL; + } + strcpy(out, Yap_ROOTDIR); + strcat(out, "/"); + strcat(out, inp + strlen("(root)")); + } else if (strstr(inp + 1, "bin") == inp + 1) { + if (!Yap_BINDIR || Yap_BINDIR[0] == '\0') { + return NULL; + } + strcpy(out, Yap_BINDIR); + strcat(out, "/"); + strcat(out, inp + strlen("(bin)")); + } else if (strstr(inp + 1, "lib") == inp + 1) { + if (!Yap_LIBDIR || Yap_LIBDIR[0] == '\0') { + return NULL; + } + strcpy(out, Yap_LIBDIR); + strcat(out, "/"); + strcat(out, inp + strlen("(lib)")); + } else if (strstr(inp + 1, "share") == inp + 1) { + if (!Yap_SHAREDIR || Yap_SHAREDIR[0] == '\0') { + return NULL; + } + strcpy(out, Yap_SHAREDIR); + strcat(out, "/"); + strcat(out, inp + strlen("(share)")); + } else if (strstr(inp + 1, "pl") == inp + 1) { + if (!Yap_PLDIR || Yap_PLDIR[0] == '\0') { + return NULL; + } + strcpy(out, Yap_PLDIR); + strcat(out, "/"); + strcat(out, inp + strlen("(pl)")); + }else if (strstr(inp + 1, "execdir") == inp + 1) { + const char *ex = Yap_FindExecutable(); + if (ex == NULL) + return NULL; + strcpy(out, dirname(ex)); + strcat(out, "/"); + strcat(out, inp + strlen("(execdir)")); + } else + return NULL; + } else if (inp[0] == '@') { + + if (strstr(inp + 1, "YapPrologBootFile") == inp + 1) { + const char *tmp; + tmp = iap->YapPrologBootFile; + if (tmp && tmp[0]) + strcpy(out, tmp); + } else if (strstr(inp + 1, "SavedState") == inp + 1) { + const char *tmp = iap->SavedState; + if (tmp && tmp[0]) + strcpy(out, tmp); + } + return NULL; + } else if (inp[0] == '$') { + char *e; + if ((e = getenv(inp + 1)) != NULL) { + strcpy(out, e); + } + return NULL; + } else if (inp[0] == '?') { +#if _WINDOWS_ + char *e; + if ((e = Yap_RegistryGetString(inp + 1)) != NULL) { + strcpy(out, e); + } else +#endif + return NULL; + } else if (inp[0] == '~') { + char *e; + if ((e = getenv("HOME")) != NULL) { + strcpy(out, e); + } + if (inp[1] != '\0') + strcat(out, inp + 1); + } else if (inp[0] == '[') { + char *o = out; + const char *e; + if ((e = getenv("DESTDIR"))) { + strcpy(out, e); + o += strlen(e); + } + if (strstr(inp + 1, "root") == inp + 1) { +#ifdef YAP_ROOTDIR + strcpy(o, YAP_ROOTDIR); +#else + return NULL; +#endif + } else if (strstr(inp + 1, "lib") == inp + 1) { +#ifdef YAP_LIBDIR + strcpy(o, YAP_LIBDIR); +#else + return NULL; +#endif + } else if (strstr(inp + 1, "share") == inp + 1) { +#ifdef YAP_SHAREDIR + strcpy(o, YAP_SHAREDIR); +#else + return NULL; +#endif + } else if (strstr(inp + 1, "dll") == inp + 1) { +#ifdef YAP_DLLDIR + strcpy(o, YAP_DLLDIR); +#else + return NULL; +#endif + } else if (strstr(inp + 1, "pl") == inp + 1) { +#ifdef YAP_PLDIR + strcpy(o, YAP_PLDIR); +#else + return NULL; +#endif + } else if (strstr(inp + 1, "commons") == inp + 1) { +#ifdef YAP_COMMONSDIR + strcpy(o, YAP_COMMONSDIR); +#else + return NULL; +#endif + } + } else { + strcpy(out, inp); + } + return out; +} /** * @brief find default paths for main YAP variables * - * This function is called once at boot time to set the main paths; it searches a list of paths to instantiate a number of variables. - * Paths must be directories. + * This function is called once at boot time to set the main paths; it searches + * a list of paths to instantiate a number of variables. Paths must be + * directories. * * It treats the following variables as : * ROOTDIR, SHAREDIR, LIBDIR, EXECUTABLE * * @return */ -static const char *find_directory(const char *paths[]) { - int i = 0; - const char *inp; - char *out = malloc(YAP_FILENAME_MAX + 1); +static const char *find_directory(YAP_init_args *iap, const char *paths[], + const char *names[]) { + int lvl = push_text_stack(); + char *out = Malloc(YAP_FILENAME_MAX + 1); + const char *inp; + char *full; + if (names) { + full = Malloc(YAP_FILENAME_MAX + 1); + } + int i = 0; + while ((inp = paths[i++]) != NULL) { out[0] = '\0'; - while ((inp = paths[i++]) != NULL) { - if (inp[0] == '(') { - if (strstr(inp + 1, "root") == inp + 1) { - strcpy(out, Yap_ROOTDIR); - strcat(out, "/"); - strcat(out, inp+(strlen("(root)")+1)); - } else if (strstr(inp + 1, "lib") == inp + 1) { - strcpy(out, Yap_LIBDIR); - strcat(out, "/"); - strcat(out, inp+(strlen("(lib)")+1)); - } else if (strstr(inp + 1, "share") == inp + 1) { - strcpy(out, Yap_LIBDIR); - strcat(out, "/"); - strcat(out, inp+(strlen("(share)")+1)); - } else if (strstr(inp + 1, "executable") == inp + 1) { - strcpy(out, Yap_LIBDIR); - strcat(out, "/"); - strcat(out, inp+(strlen("(executable)")+1)); - } - } else if (inp[0] == '$') { - char *e; - if ((e = getenv(inp + 1)) != NULL) { - strcpy(out, e); - return out; - } - } else if (inp[0] == '[') { - if (Yap_ROOTDIR && Yap_ROOTDIR[0] && strstr(inp + 1, "root") == inp + 1) { - strcpy(out, Yap_ROOTDIR); - } else if (Yap_LIBDIR && Yap_LIBDIR[0] && strstr(inp + 1, "lib") == inp + 1) { - strcpy(out, Yap_LIBDIR); - } else if (Yap_SHAREDIR && Yap_SHAREDIR[0] && strstr(inp + 1, "share") == inp + 1) { - strcpy(out, Yap_SHAREDIR); - } - } else { - char *e; - if ((e = getenv(inp + 1)) != NULL) { - strcpy(out, e); - } else { - out[0] = '\0'; - } - strcat(out, inp); - } - if (out[0]) { - return out; + char *o = location(iap, inp, out), *no; + if (o && o[0] && Yap_isDirectory(o)) { + if (names) { + size_t s = strlen(o); + o[s++] = '/'; + const char *p; + int j = 0; + while ((p = names[j++])) { + char *io = o + s; + if ((no = location(iap, p, io)) && io[0] != '\0' && Yap_Exists(o)) + return pop_output_text_stack(lvl, realpath(o, full)); } + } else + return pop_output_text_stack(lvl, o); } - return NULL; + } + pop_text_stack(lvl); + return NULL; +} +static void Yap_set_locations(YAP_init_args *iap) { +#if CONDA_BUILD + if (!getenv("DESTDIR")) { + char buf[YAP_FILENAME_MAX + 1]; + const char *o = Yap_FindExecutable(); + if (!o) + return; + strcpy(buf, dirname(dirname(o))); + putenv("DESTDIR", buf)k + } +#endif + Yap_ROOTDIR = find_directory(iap, rootdirs, NULL); + Yap_LIBDIR = find_directory(iap, libdirs, NULL); + Yap_BINDIR = find_directory(iap, bindirs, NULL); + Yap_SHAREDIR = find_directory(iap, sharedirs, NULL); + Yap_DLLDIR = find_directory(iap, dlldirs, NULL); + Yap_PLDIR = find_directory(iap, pldirs, NULL); + Yap_COMMONSDIR = find_directory(iap, commonsdirs, NULL); + Yap_STARTUP = find_directory(iap, ssdirs, ssnames); + if (iap->bootstrapping) + Yap_BOOTFILE = find_directory(iap, bootstrappldirs, plnames); + else + Yap_BOOTFILE = find_directory(iap, bootpldirs, plnames); + setAtomicGlobalPrologFlag( HOME_FLAG, MkAtomTerm(Yap_LookupAtom(Yap_ROOTDIR))); + setAtomicGlobalPrologFlag( PROLOG_LIBRARY_DIRECTORY_FLAG,MkAtomTerm(Yap_LookupAtom(Yap_PLDIR))); + setAtomicGlobalPrologFlag( PROLOG_FOREIGN_DIRECTORY_FLAG, MkAtomTerm(Yap_LookupAtom(Yap_DLLDIR))); + } static void print_usage(void) { - fprintf(stderr, "\n[ Valid switches for command line arguments: ]\n"); - fprintf(stderr, " -? Shows this screen\n"); - fprintf(stderr, " -b Boot file \n"); - fprintf(stderr, " -dump-runtime-variables\n"); - fprintf(stderr, " -f initialization file or \"none\"\n"); - fprintf(stderr, " -g Run Goal Before Top-Level \n"); - fprintf(stderr, " -z Run Goal Before Top-Level \n"); - fprintf(stderr, " -q start with informational messages off\n"); - fprintf(stderr, " -l load Prolog file\n"); - fprintf(stderr, " -L run Prolog file and exit\n"); - fprintf(stderr, " -p extra path for file-search-path\n"); - fprintf(stderr, " -hSize Heap area in Kbytes (default: %d, minimum: %d)\n", - DefHeapSpace, MinHeapSpace); - fprintf(stderr, - " -sSize Stack area in Kbytes (default: %d, minimum: %d)\n", - DefStackSpace, MinStackSpace); - fprintf(stderr, - " -tSize Trail area in Kbytes (default: %d, minimum: %d)\n", - DefTrailSpace, MinTrailSpace); - fprintf(stderr, " -GSize Max Area for Global Stack\n"); - fprintf(stderr, - " -LSize Max Area for Local Stack (number must follow L)\n"); - fprintf(stderr, " -TSize Max Area for Trail (number must follow T)\n"); - fprintf(stderr, " -nosignals disable signal handling from Prolog\n"); - fprintf(stderr, "\n[Execution Modes]\n"); - fprintf(stderr, " -J0 Interpreted mode (default)\n"); - fprintf(stderr, " -J1 Mixed mode only for user predicates\n"); - fprintf(stderr, " -J2 Mixed mode for all predicates\n"); - fprintf(stderr, " -J3 Compile all user predicates\n"); - fprintf(stderr, " -J4 Compile all predicates\n"); + fprintf(stderr, "\n[ Valid switches for command line arguments: ]\n"); + fprintf(stderr, " -? Shows this screen\n"); + fprintf(stderr, " -b Boot file \n"); + fprintf(stderr, " -dump-runtime-variables\n"); + fprintf(stderr, " -f initialization file or \"none\"\n"); + fprintf(stderr, " -g Run Goal Before Top-Level \n"); + fprintf(stderr, " -z Run Goal Before Top-Level \n"); + fprintf(stderr, " -q start with informational messages off\n"); + fprintf(stderr, " -l load Prolog file\n"); + fprintf(stderr, " -L run Prolog file and exit\n"); + fprintf(stderr, " -p extra path for file-search-path\n"); + fprintf(stderr, " -hSize Heap area in Kbytes (default: %d, minimum: %d)\n", + DefHeapSpace, MinHeapSpace); + fprintf(stderr, + " -sSize Stack area in Kbytes (default: %d, minimum: %d)\n", + DefStackSpace, MinStackSpace); + fprintf(stderr, + " -tSize Trail area in Kbytes (default: %d, minimum: %d)\n", + DefTrailSpace, MinTrailSpace); + fprintf(stderr, " -GSize Max Area for Global Stack\n"); + fprintf(stderr, + " -LSize Max Area for Local Stack (number must follow L)\n"); + fprintf(stderr, " -TSize Max Area for Trail (number must follow T)\n"); + fprintf(stderr, " -nosignals disable signal handling from Prolog\n"); + fprintf(stderr, "\n[Execution Modes]\n"); + fprintf(stderr, " -J0 Interpreted mode (default)\n"); + fprintf(stderr, " -J1 Mixed mode only for user predicates\n"); + fprintf(stderr, " -J2 Mixed mode for all predicates\n"); + fprintf(stderr, " -J3 Compile all user predicates\n"); + fprintf(stderr, " -J4 Compile all predicates\n"); #ifdef TABLING - fprintf(stderr, - " -ts Maximum table space area in Mbytes (default: unlimited)\n"); + fprintf(stderr, + " -ts Maximum table space area in Mbytes (default: unlimited)\n"); #endif /* TABLING */ -#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ +#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ defined(YAPOR_THREADS) - fprintf(stderr, " -w Number of workers (default: %d)\n", - DEFAULT_NUMBERWORKERS); - fprintf(stderr, - " -sl Loop scheduler executions before look for hiden " - "shared work (default: %d)\n", - DEFAULT_SCHEDULERLOOP); - fprintf(stderr, " -d Value of delayed release of load (default: %d)\n", - DEFAULT_DELAYEDRELEASELOAD); + fprintf(stderr, " -w Number of workers (default: %d)\n", + DEFAULT_NUMBERWORKERS); + fprintf(stderr, + " -sl Loop scheduler executions before look for hiden " + "shared work (default: %d)\n", + DEFAULT_SCHEDULERLOOP); + fprintf(stderr, " -d Value of delayed release of load (default: %d)\n", + DEFAULT_DELAYEDRELEASELOAD); #endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA || YAPOR_THREADS */ - /* nf: Preprocessor */ - /* fprintf(stderr," -DVar=Name Persistent definition\n"); */ - fprintf(stderr, "\n"); + /* nf: Preprocessor */ + /* fprintf(stderr," -DVar=Name Persistent definition\n"); */ + fprintf(stderr, "\n"); } static int myisblank(int c) { - switch (c) { - case ' ': - case '\t': - case '\n': - case '\r': - return TRUE; - default: - return FALSE; - } + switch (c) { + case ' ': + case '\t': + case '\n': + case '\r': + return TRUE; + default: + return FALSE; + } } static char *add_end_dot(char arg[]) { - int sz = strlen(arg), i; - i = sz; - while (i && myisblank(arg[--i])); - if (i && arg[i] != ',') { - char *p = (char *) malloc(sz + 2); - if (!p) - return NULL; - strncpy(p, arg, sz); - p[sz] = '.'; - p[sz + 1] = '\0'; - return p; - } - return arg; + int sz = strlen(arg), i; + i = sz; + while (i && myisblank(arg[--i])) + ; + if (i && arg[i] != ',') { + char *p = (char *)malloc(sz + 2); + if (!p) + return NULL; + strncpy(p, arg, sz); + p[sz] = '.'; + p[sz + 1] = '\0'; + return p; + } + return arg; } static int dump_runtime_variables(void) { - fprintf(stdout, "CC=\"%s\"\n", C_CC); - fprintf(stdout, "YAP_ROOTDIR=\"%s\"\n", YAP_ROOTDIR); - fprintf(stdout, "YAP_LIBS=\"%s\"\n", C_LIBS); - fprintf(stdout, "YAP_SHLIB_SUFFIX=\"%s\"\n", SO_EXT); - fprintf(stdout, "YAP_VERSION=%s\n", YAP_NUMERIC_VERSION); - exit(0); - return 1; + fprintf(stdout, "CC=\"%s\"\n", C_CC); + fprintf(stdout, "YAP_ROOTDIR=\"%s\"\n", YAP_ROOTDIR); + fprintf(stdout, "YAP_LIBS=\"%s\"\n", C_LIBS); + fprintf(stdout, "YAP_SHLIB_SUFFIX=\"%s\"\n", SO_EXT); + fprintf(stdout, "YAP_VERSION=%s\n", YAP_NUMERIC_VERSION); + exit(0); + return 1; } X_API YAP_file_type_t Yap_InitDefaults(void *x, char *saved_state, int argc, char *argv[]) { - YAP_init_args *iap = x; - memset(iap, 0, sizeof(YAP_init_args)); + + if (!LOCAL_TextBuffer) + LOCAL_TextBuffer = Yap_InitTextAllocator(); + YAP_init_args *iap = x; + memset(iap, 0, sizeof(YAP_init_args)); #if __ANDROID__ - iap->boot_file_type = YAP_BOOT_PL; - iap->SavedState = NULL; - iap->assetManager = NULL; + iap->boot_file_type = YAP_BOOT_PL; + iap->SavedState = NULL; + iap->assetManager = NULL; #else - iap->boot_file_type = YAP_QLY; - iap->SavedState = saved_state; + iap->boot_file_type = YAP_QLY; + iap->SavedState = saved_state; #endif - iap->Argc = argc; - iap->Argv = argv; - Yap_ROOTDIR = find_directory(rootdirs); - Yap_LIBDIR = find_directory(libdirs); - Yap_SHAREDIR = find_directory(sharedirs); - Yap_DLLDIR = find_directory(dlldirs); - Yap_PLDIR = find_directory(pldirs); - return YAP_QLY; + iap->Argc = argc; + iap->Argv = argv; + return YAP_QLY; } /** @@ -288,417 +507,660 @@ X_API YAP_file_type_t Yap_InitDefaults(void *x, char *saved_state, int argc, * @param iap options, see YAP_init_args * @return boot from saved state or restore; error */ - X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[], - YAP_init_args *iap) { - char *p; - size_t *ssize; -#ifndef YAP_ROOTDIR - { - char *b0 = Yap_FindExecutable(), *b1, *b2; - char b[YAP_FILENAME_MAX + 1]; +X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[], + YAP_init_args *iap) { + char *p; + size_t *ssize; - strncpy(b, b0, YAP_FILENAME_MAX); - b1 = dirname(b); - YAP_BINDIR = malloc(strlen(b1) + 1); - strcpy(YAP_BINDIR, b1); - b2 = dirname(b1); - YAP_ROOTDIR = malloc(strlen(b2) + 1); - strcpy(YAP_ROOTDIR, b2); - strncpy(b, YAP_ROOTDIR, YAP_FILENAME_MAX); - strncat(b, "/share", YAP_FILENAME_MAX); - YAP_SHAREDIR = malloc(strlen(b) + 1); - strcpy(YAP_SHAREDIR, b); - strncpy(b, YAP_ROOTDIR, YAP_FILENAME_MAX); - strncat(b, "/lib", YAP_FILENAME_MAX); - YAP_LIBDIR = malloc(strlen(b) + 1); - strcpy(YAP_LIBDIR, b); - strncpy(b, YAP_ROOTDIR, YAP_FILENAME_MAX); - strncat(b, "/lib/Yap", YAP_FILENAME_MAX); - }; -#endif - - Yap_InitDefaults(iap, NULL, argc, argv); - while (--argc > 0) { - p = *++argv; - if (*p == '-') - switch (*++p) { - case 'b': - iap->boot_file_type = YAP_PL; - if (p[1]) - iap->YapPrologBootFile = p + 1; - else if (argv[1] && *argv[1] != '-') { - iap->YapPrologBootFile = *++argv; - argc--; - } else { - iap->YapPrologBootFile = "boot.yap"; - } - break; - case 'B': - iap->boot_file_type = YAP_BOOT_PL; - if (p[1]) - iap->YapPrologBootFile = p + 1; - else if (argv[1] && *argv[1] != '-') { - iap->YapPrologBootFile = *++argv; - argc--; - } else { - iap->YapPrologBootFile = NULL; - } - iap->bootstrapping = true; - break; - case '?': - print_usage(); - exit(EXIT_SUCCESS); - case 'q': - iap->QuietMode = TRUE; - break; -#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ - defined(YAPOR_THREADS) - case 'w': - ssize = &(iap->NumberWorkers); - goto GetSize; - case 'd': - if (!strcmp("dump-runtime-variables", p)) - return dump_runtime_variables(); - ssize = &(iap->DelayedReleaseLoad); - goto GetSize; -#else - case 'd': - if (!strcmp("dump-runtime-variables", p)) - return dump_runtime_variables(); -#endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA || YAPOR_THREADS */ - case 'F': - /* just ignore for now */ - argc--; - argv++; - break; - case 'f': - iap->FastBoot = TRUE; - if (argc > 1 && argv[1][0] != '-') { - argc--; - argv++; - if (strcmp(*argv, "none")) { - iap->YapPrologRCFile = *argv; - } - break; - } - break; - // execution mode - case 'J': - switch (p[1]) { - case '0': - iap->ExecutionMode = YAPC_INTERPRETED; - break; - case '1': - iap->ExecutionMode = YAPC_MIXED_MODE_USER; - break; - case '2': - iap->ExecutionMode = YAPC_MIXED_MODE_ALL; - break; - case '3': - iap->ExecutionMode = YAPC_COMPILE_USER; - break; - case '4': - iap->ExecutionMode = YAPC_COMPILE_ALL; - break; - default: - fprintf(stderr, "[ YAP unrecoverable error: unknown switch -%c%c ]\n", - *p, p[1]); - exit(EXIT_FAILURE); - } - p++; - break; - case 'G': - ssize = &(iap->MaxGlobalSize); - goto GetSize; - break; - case 's': - case 'S': - ssize = &(iap->StackSize); -#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ - defined(YAPOR_THREADS) - if (p[1] == 'l') { - p++; - ssize = &(iap->SchedulerLoop); - } -#endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA || YAPOR_THREADS */ - goto GetSize; - case 'a': - case 'A': - ssize = &(iap->AttsSize); - goto GetSize; - case 'T': - ssize = &(iap->MaxTrailSize); - goto get_trail_size; - case 't': - ssize = &(iap->TrailSize); -#ifdef TABLING - if (p[1] == 's') { - p++; - ssize = &(iap->MaxTableSpaceSize); - } -#endif /* TABLING */ - get_trail_size: - if (*++p == '\0') { - if (argc > 1) - --argc, p = *++argv; - else { - fprintf(stderr, - "[ YAP unrecoverable error: missing size in flag %s ]", - argv[0]); - print_usage(); - exit(EXIT_FAILURE); - } - } - { - unsigned long int i = 0, ch; - while ((ch = *p++) >= '0' && ch <= '9') - i = i * 10 + ch - '0'; - switch (ch) { - case 'M': - case 'm': - i *= 1024; - ch = *p++; - break; - case 'g': - i *= 1024 * 1024; - ch = *p++; - break; - case 'k': - case 'K': - ch = *p++; - break; - } - if (ch) { - iap->YapPrologTopLevelGoal = add_end_dot(*argv); - } else { - *ssize = i; - } - } - break; - case 'h': - case 'H': - ssize = &(iap->HeapSize); - GetSize: - if (*++p == '\0') { - if (argc > 1) - --argc, p = *++argv; - else { - fprintf(stderr, - "[ YAP unrecoverable error: missing size in flag %s ]", - argv[0]); - print_usage(); - exit(EXIT_FAILURE); - } - } - { - unsigned long int i = 0, ch; - while ((ch = *p++) >= '0' && ch <= '9') - i = i * 10 + ch - '0'; - switch (ch) { - case 'M': - case 'm': - i *= 1024; - ch = *p++; - break; - case 'g': - case 'G': - i *= 1024 * 1024; - ch = *p++; - break; - case 'k': - case 'K': - ch = *p++; - break; - } - if (ch) { - fprintf( - stderr, - "[ YAP unrecoverable error: illegal size specification %s ]", - argv[-1]); - Yap_exit(1); - } - *ssize = i; - } - break; -#ifdef DEBUG - case 'P': - if (p[1] != '\0') { - while (p[1] != '\0') { - int ch = p[1]; - if (ch >= 'A' && ch <= 'Z') - ch += ('a' - 'A'); - if (ch >= 'a' && ch <= 'z') - GLOBAL_Option[ch - 96] = 1; - p++; - } - } else { - YAP_SetOutputMessage(); - } - break; -#endif - case 'L': - if (p[1] && p[1] >= '0' && - p[1] <= '9') /* hack to emulate SWI's L local option */ - { - ssize = &(iap->MaxStackSize); - goto GetSize; - } - iap->QuietMode = TRUE; - iap->HaltAfterConsult = TRUE; - case 'l': - p++; - if (!*++argv) { - fprintf(stderr, - "%% YAP unrecoverable error: missing load file name\n"); - exit(1); - } else if (!strcmp("--", *argv)) { - /* shell script, the next entry should be the file itself */ - iap->YapPrologRCFile = argv[1]; - argc = 1; - break; - } else { - iap->YapPrologRCFile = *argv; - argc--; - } - if (*p) { - /* we have something, usually, of the form: - -L -- - FileName - ExtraArgs - */ - /* being called from a script */ - while (*p && (*p == ' ' || *p == '\t')) - p++; - if (p[0] == '-' && p[1] == '-') { - /* ignore what is next */ - argc = 1; - } - } - break; - /* run goal before top-level */ - case 'g': - if ((*argv)[0] == '\0') - iap->YapPrologGoal = *argv; - else { - argc--; - if (argc == 0) { - fprintf(stderr, " [ YAP unrecoverable error: missing " - "initialization goal for option 'g' ]\n"); - exit(EXIT_FAILURE); - } - argv++; - iap->YapPrologGoal = *argv; - } - break; - /* run goal as top-level */ - case 'z': - if ((*argv)[0] == '\0') - iap->YapPrologTopLevelGoal = *argv; - else { - argc--; - if (argc == 0) { - fprintf( - stderr, - " [ YAP unrecoverable error: missing goal for option 'z' ]\n"); - exit(EXIT_FAILURE); - } - argv++; - iap->YapPrologTopLevelGoal = add_end_dot(*argv); - } - break; - case 'n': - if (!strcmp("nosignals", p)) { - iap->PrologCannotHandleInterrupts = true; - break; - } - break; - case '-': - if (!strcmp("-nosignals", p)) { - iap->PrologCannotHandleInterrupts = true; - break; - } else if (!strncmp("-home=", p, strlen("-home="))) { - GLOBAL_Home = p + strlen("-home="); - } else if (!strncmp("-cwd=", p, strlen("-cwd="))) { - if (!Yap_ChDir(p + strlen("-cwd="))) { - fprintf(stderr, " [ YAP unrecoverable error in setting cwd: %s ]\n", - strerror(errno)); - } - } else if (!strncmp("-stack=", p, strlen("-stack="))) { - ssize = &(iap->StackSize); - p += strlen("-stack="); - goto GetSize; - } else if (!strncmp("-trail=", p, strlen("-trail="))) { - ssize = &(iap->TrailSize); - p += strlen("-trail="); - goto GetSize; - } else if (!strncmp("-heap=", p, strlen("-heap="))) { - ssize = &(iap->HeapSize); - p += strlen("-heap="); - goto GetSize; - } else if (!strncmp("-goal=", p, strlen("-goal="))) { - iap->YapPrologGoal = p + strlen("-goal="); - } else if (!strncmp("-top-level=", p, strlen("-top-level="))) { - iap->YapPrologTopLevelGoal = p + strlen("-top-level="); - } else if (!strncmp("-table=", p, strlen("-table="))) { - ssize = &(iap->MaxTableSpaceSize); - p += strlen("-table="); - goto GetSize; - } else if (!strncmp("-", p, strlen("-="))) { - ssize = &(iap->MaxTableSpaceSize); - p += strlen("-table="); - /* skip remaining arguments */ - argc = 1; - } - break; - case 'p': - if ((*argv)[0] == '\0') - iap->YapPrologAddPath = *argv; - else { - argc--; - if (argc == 0) { - fprintf( - stderr, - " [ YAP unrecoverable error: missing paths for option 'p' ]\n"); - exit(EXIT_FAILURE); - } - argv++; - iap->YapPrologAddPath = *argv; - } - break; - /* nf: Begin preprocessor code */ - case 'D': { - char *var, *value; - ++p; - var = p; - if (var == NULL || *var == '\0') - break; - while (*p != '=' && *p != '\0') - ++p; - if (*p == '\0') - break; - *p = '\0'; - ++p; - value = p; - if (*value == '\0') - break; - if (iap->def_c == YAP_MAX_YPP_DEFS) - break; - iap->def_var[iap->def_c] = var; - iap->def_value[iap->def_c] = value; - ++(iap->def_c); - break; - } - /* End preprocessor code */ - default: { - fprintf(stderr, "[ YAP unrecoverable error: unknown switch -%c ]\n", - *p); - print_usage(); - exit(EXIT_FAILURE); - } - } - else { - iap->SavedState = p; - } + Yap_InitDefaults(iap, NULL, argc, argv); + while (--argc > 0) { + p = *++argv; + if (*p == '-') + switch (*++p) { + case 'b': + iap->boot_file_type = YAP_PL; + if (p[1]) + iap->YapPrologBootFile = p + 1; + else if (argv[1] && *argv[1] != '-') { + iap->YapPrologBootFile = *++argv; + argc--; + } else { + iap->YapPrologBootFile = "boot.yap"; } - return iap->boot_file_type; + break; + case 'B': + iap->boot_file_type = YAP_BOOT_PL; + if (p[1]) + iap->YapPrologBootFile = p + 1; + else if (argv[1] && *argv[1] != '-') { + iap->YapPrologBootFile = *++argv; + argc--; + } else { + iap->YapPrologBootFile = NULL; + } + iap->bootstrapping = true; + break; + case '?': + print_usage(); + exit(EXIT_SUCCESS); + case 'q': + iap->QuietMode = TRUE; + break; +#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ + defined(YAPOR_THREADS) + case 'w': + ssize = &(iap->NumberWorkers); + goto GetSize; + case 'd': + if (!strcmp("dump-runtime-variables", p)) + return dump_runtime_variables(); + ssize = &(iap->DelayedReleaseLoad); + goto GetSize; +#else + case 'd': + if (!strcmp("dump-runtime-variables", p)) + return dump_runtime_variables(); +#endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA || YAPOR_THREADS */ + case 'F': + /* just ignore for now */ + argc--; + argv++; + break; + case 'f': + iap->FastBoot = TRUE; + if (argc > 1 && argv[1][0] != '-') { + argc--; + argv++; + if (strcmp(*argv, "none")) { + iap->YapPrologRCFile = *argv; + } + break; + } + break; + // execution mode + case 'J': + switch (p[1]) { + case '0': + iap->ExecutionMode = YAPC_INTERPRETED; + break; + case '1': + iap->ExecutionMode = YAPC_MIXED_MODE_USER; + break; + case '2': + iap->ExecutionMode = YAPC_MIXED_MODE_ALL; + break; + case '3': + iap->ExecutionMode = YAPC_COMPILE_USER; + break; + case '4': + iap->ExecutionMode = YAPC_COMPILE_ALL; + break; + default: + fprintf(stderr, "[ YAP unrecoverable error: unknown switch -%c%c ]\n", + *p, p[1]); + exit(EXIT_FAILURE); + } + p++; + break; + case 'G': + ssize = &(iap->MaxGlobalSize); + goto GetSize; + break; + case 's': + case 'S': + ssize = &(iap->StackSize); +#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) || \ + defined(YAPOR_THREADS) + if (p[1] == 'l') { + p++; + ssize = &(iap->SchedulerLoop); + } +#endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA || YAPOR_THREADS */ + goto GetSize; + case 'a': + case 'A': + ssize = &(iap->AttsSize); + goto GetSize; + case 'T': + ssize = &(iap->MaxTrailSize); + goto get_trail_size; + case 't': + ssize = &(iap->TrailSize); +#ifdef TABLING + if (p[1] == 's') { + p++; + ssize = &(iap->MaxTableSpaceSize); + } +#endif /* TABLING */ + get_trail_size: + if (*++p == '\0') { + if (argc > 1) + --argc, p = *++argv; + else { + fprintf(stderr, + "[ YAP unrecoverable error: missing size in flag %s ]", + argv[0]); + print_usage(); + exit(EXIT_FAILURE); + } + } + { + unsigned long int i = 0, ch; + while ((ch = *p++) >= '0' && ch <= '9') + i = i * 10 + ch - '0'; + switch (ch) { + case 'M': + case 'm': + i *= 1024; + ch = *p++; + break; + case 'g': + i *= 1024 * 1024; + ch = *p++; + break; + case 'k': + case 'K': + ch = *p++; + break; + } + if (ch) { + iap->YapPrologTopLevelGoal = add_end_dot(*argv); + } else { + *ssize = i; + } + } + break; + case 'h': + case 'H': + ssize = &(iap->HeapSize); + GetSize: + if (*++p == '\0') { + if (argc > 1) + --argc, p = *++argv; + else { + fprintf(stderr, + "[ YAP unrecoverable error: missing size in flag %s ]", + argv[0]); + print_usage(); + exit(EXIT_FAILURE); + } + } + { + unsigned long int i = 0, ch; + while ((ch = *p++) >= '0' && ch <= '9') + i = i * 10 + ch - '0'; + switch (ch) { + case 'M': + case 'm': + i *= 1024; + ch = *p++; + break; + case 'g': + case 'G': + i *= 1024 * 1024; + ch = *p++; + break; + case 'k': + case 'K': + ch = *p++; + break; + } + if (ch) { + fprintf( + stderr, + "[ YAP unrecoverable error: illegal size specification %s ]", + argv[-1]); + Yap_exit(1); + } + *ssize = i; + } + break; +#ifdef DEBUG + case 'P': + if (p[1] != '\0') { + while (p[1] != '\0') { + int ch = p[1]; + if (ch >= 'A' && ch <= 'Z') + ch += ('a' - 'A'); + if (ch >= 'a' && ch <= 'z') + GLOBAL_Option[ch - 96] = 1; + p++; + } + } else { + YAP_SetOutputMessage(); + } + break; +#endif + case 'L': + if (p[1] && p[1] >= '0' && + p[1] <= '9') /* hack to emulate SWI's L local option */ + { + ssize = &(iap->MaxStackSize); + goto GetSize; + } + iap->QuietMode = TRUE; + iap->HaltAfterConsult = TRUE; + case 'l': + p++; + if (!*++argv) { + fprintf(stderr, + "%% YAP unrecoverable error: missing load file name\n"); + exit(1); + } else if (!strcmp("--", *argv)) { + /* shell script, the next entry should be the file itself */ + iap->YapPrologRCFile = argv[1]; + argc = 1; + break; + } else { + iap->YapPrologRCFile = *argv; + argc--; + } + if (*p) { + /* we have something, usually, of the form: + -L -- + FileName + ExtraArgs + */ + /* being called from a script */ + while (*p && (*p == ' ' || *p == '\t')) + p++; + if (p[0] == '-' && p[1] == '-') { + /* ignore what is next */ + argc = 1; + } + } + break; + /* run goal before top-level */ + case 'g': + if ((*argv)[0] == '\0') + iap->YapPrologGoal = *argv; + else { + argc--; + if (argc == 0) { + fprintf(stderr, " [ YAP unrecoverable error: missing " + "initialization goal for option 'g' ]\n"); + exit(EXIT_FAILURE); + } + argv++; + iap->YapPrologGoal = *argv; + } + break; + /* run goal as top-level */ + case 'z': + if ((*argv)[0] == '\0') + iap->YapPrologTopLevelGoal = *argv; + else { + argc--; + if (argc == 0) { + fprintf( + stderr, + " [ YAP unrecoverable error: missing goal for option 'z' ]\n"); + exit(EXIT_FAILURE); + } + argv++; + iap->YapPrologTopLevelGoal = add_end_dot(*argv); + } + break; + case 'n': + if (!strcmp("nosignals", p)) { + iap->PrologCannotHandleInterrupts = true; + break; + } + break; + case '-': + if (!strcmp("-nosignals", p)) { + iap->PrologCannotHandleInterrupts = true; + break; + } else if (!strncmp("-home=", p, strlen("-home="))) { + GLOBAL_Home = p + strlen("-home="); + } else if (!strncmp("-cwd=", p, strlen("-cwd="))) { + if (!Yap_ChDir(p + strlen("-cwd="))) { + fprintf(stderr, " [ YAP unrecoverable error in setting cwd: %s ]\n", + strerror(errno)); + } + } else if (!strncmp("-stack=", p, strlen("-stack="))) { + ssize = &(iap->StackSize); + p += strlen("-stack="); + goto GetSize; + } else if (!strncmp("-trail=", p, strlen("-trail="))) { + ssize = &(iap->TrailSize); + p += strlen("-trail="); + goto GetSize; + } else if (!strncmp("-heap=", p, strlen("-heap="))) { + ssize = &(iap->HeapSize); + p += strlen("-heap="); + goto GetSize; + } else if (!strncmp("-goal=", p, strlen("-goal="))) { + iap->YapPrologGoal = p + strlen("-goal="); + } else if (!strncmp("-top-level=", p, strlen("-top-level="))) { + iap->YapPrologTopLevelGoal = p + strlen("-top-level="); + } else if (!strncmp("-table=", p, strlen("-table="))) { + ssize = &(iap->MaxTableSpaceSize); + p += strlen("-table="); + goto GetSize; + } else if (!strncmp("-", p, strlen("-="))) { + ssize = &(iap->MaxTableSpaceSize); + p += strlen("-table="); + /* skip remaining arguments */ + argc = 1; + } + break; + case 'p': + if ((*argv)[0] == '\0') + iap->YapPrologAddPath = *argv; + else { + argc--; + if (argc == 0) { + fprintf( + stderr, + " [ YAP unrecoverable error: missing paths for option 'p' ]\n"); + exit(EXIT_FAILURE); + } + argv++; + iap->YapPrologAddPath = *argv; + } + break; + /* nf: Begin preprocessor code */ + case 'D': { + char *var, *value; + ++p; + var = p; + if (var == NULL || *var == '\0') + break; + while (*p != '=' && *p != '\0') + ++p; + if (*p == '\0') + break; + *p = '\0'; + ++p; + value = p; + if (*value == '\0') + break; + if (iap->def_c == YAP_MAX_YPP_DEFS) + break; + iap->def_var[iap->def_c] = var; + iap->def_value[iap->def_c] = value; + ++(iap->def_c); + break; + } + /* End preprocessor code */ + default: { + fprintf(stderr, "[ YAP unrecoverable error: unknown switch -%c ]\n", + *p); + print_usage(); + exit(EXIT_FAILURE); + } + } + else { + iap->SavedState = p; } + } + return iap->boot_file_type; +} + +/** + YAP_DelayInit() + + ensures initialization is done after engine creation. + It receives a pointer to function and a string describing + the module. +*/ + +X_API bool YAP_initialized = false; +static int n_mdelays = 0; +static YAP_delaymodule_t *m_delays; + +X_API bool YAP_DelayInit(YAP_ModInit_t f, const char s[]) { + if (m_delays) { + m_delays = realloc(m_delays, (n_mdelays + 1) * sizeof(YAP_delaymodule_t)); + } else { + m_delays = malloc(sizeof(YAP_delaymodule_t)); + } + m_delays[n_mdelays].f = f; + m_delays[n_mdelays].s = s; + n_mdelays++; + return true; +} + +bool Yap_LateInit(const char s[]) { + int i; + for (i = 0; i < n_mdelays; i++) { + if (!strcmp(m_delays[i].s, s)) { + m_delays[i].f(); + return true; + } + } + return false; +} + +static void start_modules(void) { + Term cm = CurrentModule; + size_t i; + for (i = 0; i < n_mdelays; i++) { + CurrentModule = MkAtomTerm(YAP_LookupAtom(m_delays[i].s)); + m_delays[i].f(); + } + CurrentModule = cm; +} + +/// whether Yap is under control of some other system +bool Yap_embedded = true; + +struct ssz_t { + size_t Heap, Stack, Trail; +}; + +static void init_hw(YAP_init_args *yap_init, struct ssz_t *spt) { + Yap_page_size = Yap_InitPageSize(); /* init memory page size, required by + later functions */ +#if defined(YAPOR_COPY) || defined(YAPOR_COW) || defined(YAPOR_SBA) + Yap_init_yapor_global_local_memory(); +#endif /* YAPOR_COPY || YAPOR_COW || YAPOR_SBA */ + if (!yap_init->Embedded) { + GLOBAL_PrologShouldHandleInterrupts = + !yap_init->PrologCannotHandleInterrupts; + Yap_InitSysbits(0); /* init signal handling and time, required by later + functions */ + GLOBAL_argv = yap_init->Argv; + GLOBAL_argc = yap_init->Argc; + } + +#if __ANDROID__ + + // if (yap_init->assetManager) + Yap_InitAssetManager(); + +#endif + + if (yap_init->TrailSize == 0) { + if (spt->Trail == 0) + spt->Trail = DefTrailSpace; + } else { + spt->Trail = yap_init->TrailSize; + } + // Atts = yap_init->AttsSize; + if (yap_init->StackSize == 0) { + spt->Stack = DefStackSpace; + } else { + spt->Stack = yap_init->StackSize; + } +#ifndef USE_SYSTEM_MALLOC + if (yap_init->HeapSize == 0) { + if (spt->Heap == 0) + spt->Heap = DefHeapSpace; + } else { + spt->Heap = yap_init->HeapSize; + } +#endif +} + +static void init_globals(YAP_init_args *yap_init) { + GLOBAL_FAST_BOOT_FLAG = yap_init->FastBoot; +#if defined(YAPOR) || defined(TABLING) + + Yap_init_root_frames(); + +#endif /* YAPOR || TABLING */ +#ifdef YAPOR + Yap_init_yapor_workers(); +#if YAPOR_THREADS + if (Yap_thread_self() != 0) { +#else + if (worker_id != 0) { +#endif +#if defined(YAPOR_COPY) || defined(YAPOR_SBA) + /* + In the SBA we cannot just happily inherit registers + from the other workers + */ + Yap_InitYaamRegs(worker_id); +#endif /* YAPOR_COPY || YAPOR_SBA */ +#ifndef YAPOR_THREADS + Yap_InitPreAllocCodeSpace(0); +#endif /* YAPOR_THREADS */ + /* slaves, waiting for work */ + CurrentModule = USER_MODULE; + P = GETWORK_FIRST_TIME; + Yap_exec_absmi(FALSE, YAP_EXEC_ABSMI); + Yap_Error(SYSTEM_ERROR_INTERNAL, TermNil, + "abstract machine unexpected exit (YAP_Init)"); + } +#endif /* YAPOR */ + RECOVER_MACHINE_REGS(); + /* make sure we do this after restore */ + if (yap_init->MaxStackSize) { + GLOBAL_AllowLocalExpansion = FALSE; + } else { + GLOBAL_AllowLocalExpansion = TRUE; + } + if (yap_init->MaxGlobalSize) { + GLOBAL_AllowGlobalExpansion = FALSE; + } else { + GLOBAL_AllowGlobalExpansion = TRUE; + } + if (yap_init->MaxTrailSize) { + GLOBAL_AllowTrailExpansion = FALSE; + } else { + GLOBAL_AllowTrailExpansion = TRUE; + } + if (yap_init->YapPrologRCFile) { + Yap_PutValue(AtomConsultOnBoot, + MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologRCFile))); + /* + This must be done again after restore, as yap_flags + has been overwritten .... + */ + setBooleanGlobalPrologFlag(HALT_AFTER_CONSULT_FLAG, + yap_init->HaltAfterConsult); + } + if (yap_init->YapPrologTopLevelGoal) { + Yap_PutValue(AtomTopLevelGoal, + MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologTopLevelGoal))); + } + if (yap_init->YapPrologGoal) { + Yap_PutValue(AtomInitGoal, + MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologGoal))); + } + if (yap_init->YapPrologAddPath) { + Yap_PutValue(AtomExtendFileSearchPath, + MkAtomTerm(Yap_LookupAtom(yap_init->YapPrologAddPath))); + } + + if (yap_init->QuietMode) { + setVerbosity(TermSilent); + } +} + +static YAP_file_type_t end_init(YAP_init_args *yap_init, YAP_file_type_t rc) { + init_globals(yap_init); + LOCAL_PrologMode &= ~BootMode; + + start_modules(); + + YAP_initialized = true; + return rc; +} + +/* this routine is supposed to be called from an external program + that wants to control Yap */ + +X_API YAP_file_type_t YAP_Init(YAP_init_args *yap_init) { + YAP_file_type_t restore_result = yap_init->boot_file_type; + bool do_bootstrap = (restore_result & YAP_CONSULT_MODE); + struct ssz_t minfo; + + if (YAP_initialized) + return YAP_FOUND_BOOT_ERROR; + if (!LOCAL_TextBuffer) + LOCAL_TextBuffer = Yap_InitTextAllocator(); + + /* ignore repeated calls to YAP_Init */ + Yap_embedded = yap_init->Embedded; + + minfo.Trail = 0, minfo.Stack = 0, minfo.Trail = 0; + init_hw(yap_init, &minfo); + Yap_InitWorkspace(yap_init, minfo.Heap, minfo.Stack, minfo.Trail, 0, + yap_init->MaxTableSpaceSize, yap_init->NumberWorkers, + yap_init->SchedulerLoop, yap_init->DelayedReleaseLoad); + // + + CACHE_REGS + if (Yap_embedded) + if (yap_init->QuietMode) { + setVerbosity(TermSilent); + } + if (yap_init->YapPrologRCFile != NULL) { + /* + This must be done before restore, otherwise + restore will print out messages .... + */ + setBooleanGlobalPrologFlag(HALT_AFTER_CONSULT_FLAG, + yap_init->HaltAfterConsult); + } + /* tell the system who should cope with interrupts */ + Yap_ExecutionMode = yap_init->ExecutionMode; + Yap_set_locations(yap_init); + if (!do_bootstrap && Yap_STARTUP && yap_init->boot_file_type != YAP_BOOT_PL && + Yap_SavedInfo(Yap_STARTUP, &minfo.Trail, &minfo.Stack, &minfo.Heap) && + Yap_Restore(Yap_STARTUP)) { + setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, true); + CurrentModule = LOCAL_SourceModule = USER_MODULE; + return end_init(yap_init, YAP_QLY); + } else { + do_bootfile(Yap_BOOTFILE PASS_REGS); + setBooleanGlobalPrologFlag(SAVED_PROGRAM_FLAG, false); + return end_init(yap_init, YAP_BOOT_PL); + } +} + +#if (DefTrailSpace < MinTrailSpace) +#undef DefTrailSpace +#define DefTrailSpace MinTrailSpace +#endif + +#if (DefStackSpace < MinStackSpace) +#undef DefStackSpace +#define DefStackSpace MinStackSpace +#endif + +#if (DefHeapSpace < MinHeapSpace) +#undef DefHeapSpace +#define DefHeapSpace MinHeapSpace +#endif + +#define DEFAULT_NUMBERWORKERS 1 +#define DEFAULT_SCHEDULERLOOP 10 +#define DEFAULT_DELAYEDRELEASELOAD 3 + +X_API YAP_file_type_t YAP_FastInit(char *saved_state, int argc, char *argv[]) { + YAP_init_args init_args; + YAP_file_type_t out; + + if ((out = Yap_InitDefaults(&init_args, saved_state, argc, argv)) != + YAP_FOUND_BOOT_ERROR) + out = YAP_Init(&init_args); + if (out == YAP_FOUND_BOOT_ERROR) { + Yap_Error(init_args.ErrorNo, TermNil, init_args.ErrorCause); + } + return out; +} diff --git a/CMakeLists.txt b/CMakeLists.txt index 72dcde353..5df095e63 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,8 +17,8 @@ cmake_policy(VERSION 3.4) set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}" "${CMAKE_SOURCE_DIR}/cmake") - set(ANACONDA $ENV{CONDA_BUILD} CACHE BOOL "Anaconda Environment") - message(STATUS "ANACONDA found: ${ANACONDA}") +set(ANACONDA $ENV{CONDA_BUILD} CACHE BOOL "Anaconda Environment") +message(STATUS "ANACONDA found: ${ANACONDA}") include(CheckIncludeFiles) include(CheckLibraryExists) @@ -222,6 +222,7 @@ if (ANACONDA) #set( CMAKE_INSTALL_FULL_PREFIX $ENV{PREFIX} ) set( PYTHON_LIBRARY $ENV{PREFIX}/lib/libpython$ENV{PY_VER}m$ENV{SHLIB_EXT}) set( PYTHON_INCLUDE_DIR $ENV{PREFIX}/include/python$ENV{PY_VER}m) +set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS CONDA_BUILD=1) set(YAP_IS_MOVABLE 1) endif() @@ -814,7 +815,7 @@ endif(NOT ANDROID) # -install(FILES ${INCLUDE_HEADERS} ${CONFIGURATION_HEADERS} DESTINATION ${YAP_INCLUDEDIR} ) +install(FILES ${INCLUDE_HEADERS} ${CONFIGURATION_HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/Yap ) diff --git a/H/Yap.h b/H/Yap.h index b4a41f99e..aebd59061 100755 --- a/H/Yap.h +++ b/H/Yap.h @@ -151,7 +151,8 @@ typedef void *(*fptr_t)(void); main exports in YapInterface.h *************************************************************************************************/ -extern const char *Yap_BINDIR, *Yap_ROOTDIR, *Yap_SHAREDIR, *Yap_LIBDIR, *Yap_DLLDIR, *Yap_PLDIR; +extern const char *Yap_BINDIR, *Yap_ROOTDIR, *Yap_SHAREDIR, *Yap_LIBDIR, *Yap_DLLDIR, *Yap_PLDIR, *Yap_COMMONSDIR, *Yap_STARTUP, *Yap_BOOTFILE; + /* Basic exports */ diff --git a/H/YapGFlagInfo.h b/H/YapGFlagInfo.h index d5ba9a02b..0bb54e64c 100644 --- a/H/YapGFlagInfo.h +++ b/H/YapGFlagInfo.h @@ -236,7 +236,7 @@ process, namely, on choice-points. YAP_FLAG(GMP_VERSION_FLAG, "gmp_version", false, isatom, "4.8.12", NULL), YAP_FLAG(HALT_AFTER_CONSULT_FLAG, "halt_after_consult", false, booleanFlag, "false", NULL), - /* YAP_FLAG(HOME_FLAG, "home", false, isatom, rootdir, NULL),*/ /**< home ` + YAP_FLAG(HOME_FLAG, "home", false, isatom, rootdir, NULL), /**< home ` the root of the YAP installation, by default `/usr/local` in Unix or `c:\Yap` in Windows system. Can only be set at configure time diff --git a/H/YapTerm.h b/H/YapTerm.h deleted file mode 100644 index eea862360..000000000 --- a/H/YapTerm.h +++ /dev/null @@ -1,169 +0,0 @@ -/************************************************************************* -* * -* YAP Prolog %W% %G% * -* Yap Prolog was developed at NCCUP - Universidade do Porto * -* * -* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 * -* * -************************************************************************** -* * -* File: Yap.h * -* mods: * -* comments: abstract type definitions for YAP * -* version: $Id: Yap.h,v 1.38 2008-06-18 10:02:27 vsc Exp $ * -*************************************************************************/ - -#ifndef YAP_H -#include "YapTermConfig.h" -#include "config.h" - -#endif - -#if HAVE_STDINT_H -#include -#endif -#if HAVE_INTTYPES_H -#include -#endif - -/* truth-values */ -/* stdbool defines the booleam type, bool, - and the constants false and true */ -#if HAVE_STDBOOL_H -#include -#else -#ifndef true -typedef int _Bool; -#define bool _Bool; - -#define false 0 -#define true 1 -#endif -#endif /* HAVE_STDBOOL_H */ - - -#define ALIGN_BY_TYPE(X, TYPE) \ - (((CELL)(X) + (sizeof(TYPE) - 1)) & ~(sizeof(TYPE) - 1)) - -#ifndef EXTERN -#ifdef MSC_VER -#define EXTERN -#else -#define EXTERN extern -#endif -#endif - -/* defines integer types Int and UInt (unsigned) with the same size as a ptr -** and integer types Short and UShort with half the size of a ptr */ - -#if defined(PRIdPTR) - -typedef intptr_t YAP_Int; -typedef uintptr_t YAP_UInt; - -#elif defined(_WIN64) - - -typedef int64_t YAP_Int; -typedef uint64_t YAP_UInt; - -#elif defined(_WIN32) - -typedef int32_t YAP_Int; -typedef uint32_t YAP_UInt; - -#elif SIZEOF_LONG_INT == SIZEOF_INT_P - -typedef long int YAP_Int; -typedef unsigned long int YAP_UInt; - -#elif SIZEOF_INT == SIZEOF_INT_P - -typedef int YAP_Int; -typedef unsigned int YAP_UInt; - -#else -#error Yap require integer types of the same size as a pointer -#endif - -/* */ typedef short int YAP_Short; -/* */ typedef unsigned short int YAP_UShort; - -typedef YAP_UInt YAP_CELL; -typedef YAP_UInt YAP_Term; - -/* Type definitions */ - - -#ifndef TRUE -#define TRUE true -#endif -#ifndef FALSE -#endif - -typedef bool YAP_Bool; -#define FALSE false - -typedef YAP_Int YAP_handle_t; - - -typedef double YAP_Float; - -typedef void *YAP_Atom; - -typedef void *YAP_Functor; - -#ifdef YAP_H - -typedef YAP_Int Int; -typedef YAP_UInt UInt; -typedef YAP_Short Short; -typedef YAP_UShort UShort; - -typedef uint16_t BITS16; -typedef int16_t SBITS16; -typedef uint32_t BITS32; - -typedef YAP_CELL CELL; - -typedef YAP_Term Term; - -#define WordSize sizeof(BITS16) -#define CellSize sizeof(CELL) -#define SmallSize sizeof(SMALLUNSGN) - -typedef YAP_Int Int; -typedef YAP_Float Float; -typedef YAP_handle_t yhandle_t; - -#endif - -#include "YapError.h" - -#include "../os/encoding.h" - -typedef encoding_t YAP_encoding_t; - -#include "YapFormat.h" - -/************************************************************************************************* - type casting macros -*************************************************************************************************/ - -#if SIZEOF_INT < SIZEOF_INT_P -#define SHORT_INTS 1 -#else -#define SHORT_INTS 0 -#endif - -#ifdef __GNUC__ -typedef long long int YAP_LONG_LONG; -typedef unsigned long long int YAP_ULONG_LONG; -#else -typedef long int YAP_LONG_LONG; -typedef unsigned long int YAP_ULONG_LONG; -#endif - -#define Unsigned(V) ((CELL)(V)) -#define Signed(V) ((Int)(V)) - diff --git a/H/Yapproto.h b/H/Yapproto.h index 94c1493b6..e8f8c5791 100755 --- a/H/Yapproto.h +++ b/H/Yapproto.h @@ -354,16 +354,16 @@ extern void Yap_InitReadUtil(void); /* qly.c */ extern void Yap_InitQLY(void); -extern YAP_file_type_t Yap_Restore(const char *, const char *); +extern YAP_file_type_t Yap_Restore(const char *); extern void Yap_InitQLYR(void); /* range.c */ extern void Yap_InitRange(void); /* save.c */ -extern int Yap_SavedInfo(const char *, const char *, CELL *, CELL *, CELL *); -extern int Yap_SavedStateRestore(char *, char *); -extern FILE *Yap_OpenRestore(const char *, const char *); +extern int Yap_SavedInfo(const char *, CELL *, CELL *, CELL *); +extern int Yap_SavedStateRestore(char *); +extern FILE *Yap_OpenRestore(const char *); extern void Yap_InitSavePreds(void); /* scanner.c */ @@ -432,10 +432,10 @@ extern void Yap_WinError(char *); extern const char *Yap_AbsoluteFile(const char *spec, char *obuf, bool ok); extern const char *Yap_AbsoluteFileInBuffer(const char *spec, char *outp, size_t sz, bool ok); -extern const char *Yap_findFile(const char *isource, const char *idef, - const char *root, char *result, bool access, - YAP_file_type_t ftype, bool expand_root, bool in_lib); extern bool Yap_ChDir(const char *path); +bool Yap_isDirectory(const char *FileName); +extern bool Yap_Exists(const char *f); + /* threads.c */ extern void Yap_InitThreadPreds(void); diff --git a/config.h.cmake b/config.h.cmake index 0581f658a..ca33499e0 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -1971,7 +1971,6 @@ significant byte first (like Motorola and SPARC, unlike Intel). */ -#ifndef YAP_IS_MOVABLE /* name of YAP instaii */ #ifndef YAP_ROOTDIR #define YAP_ROOTDIR "${YAP_ROOTDIR}" @@ -2001,13 +2000,14 @@ significant byte first (like Motorola and SPARC, unlike Intel). */ #define YAP_SHAREDIR "${YAP_ROOTDIR}/share" #endif -#else -extern char -*YAP_BINDIR, -*YAP_ROOTDIR, -*YAP_SHAREDIR, -*YAP_LIBDIR, -*YAP_YAPLIB; +/* name of YAP PL library */ +#ifndef YAP_PLDIR +#define YAP_PLDIR "${YAP_SHAREDIR}/Yap" +#endif + +/* name of Commons library */ +#ifndef YAP_COMMONSDIR +#define YAP COMMONSDIR "${YAP_SHAREDIR}/PrologCommmons" #endif diff --git a/os/iopreds.c b/os/iopreds.c index 9bc26dc79..8193b4c8b 100644 --- a/os/iopreds.c +++ b/os/iopreds.c @@ -1370,7 +1370,7 @@ writable. */ -static Int open3(USES_REGS1) { +static Int open3(USES_RfEGS1) { /* '$open'(+File,+Mode,?Stream,-ReturnCode) */ return do_open(Deref(ARG1), Deref(ARG2), TermNil PASS_REGS); } @@ -1465,11 +1465,11 @@ static Int p_file_expansion(USES_REGS1) { /* '$file_expansion'(+File,-Name) */ PlIOError(INSTANTIATION_ERROR, file_name, "absolute_file_name/3"); return (FALSE); } - if (!Yap_findFile(RepAtom(AtomOfTerm(file_name))->StrOfAE, NULL, NULL, - LOCAL_FileNameBuf, true, YAP_ANY_FILE, true, false)) + char tmp[YAP_FILENAME_MAX+1]; + if (!Yap_AbsoluteFile(RepAtom(AtomOfTerm(file_name))->StrOfAE,tmp, false)) return (PlIOError(EXISTENCE_ERROR_SOURCE_SINK, file_name, "absolute_file_name/3")); - return (Yap_unify(ARG2, MkAtomTerm(Yap_LookupAtom(LOCAL_FileNameBuf)))); + return (Yap_unify(ARG2, MkAtomTerm(Yap_LookupAtom(tmp)))); } static Int p_open_null_stream(USES_REGS1) { diff --git a/os/iopreds.h b/os/iopreds.h index 736901836..753df467e 100644 --- a/os/iopreds.h +++ b/os/iopreds.h @@ -273,7 +273,6 @@ extern FILE *Yap_stderr; char *Yap_MemExportStreamPtr(int sno); -extern bool Yap_Exists(const char *f); static inline void freeBuffer(const void *ptr) { CACHE_REGS diff --git a/os/sysbits.c b/os/sysbits.c index fb3bb967e..8697ca0cb 100644 --- a/os/sysbits.c +++ b/os/sysbits.c @@ -34,7 +34,6 @@ static void FileError(yap_error_number type, Term where, const char *format, } } - static Int p_sh(USES_REGS1); static Int p_shell(USES_REGS1); static Int p_system(USES_REGS1); @@ -67,11 +66,11 @@ void Yap_WinError(char *yap_error) { /// is_directory: verifies whether an expanded file name /// points at a readable directory -static bool is_directory(const char *FileName) { +bool Yap_isDirectory(const char *FileName) { VFS_t *vfs; if ((vfs = vfs_owner(FileName))) { - return vfs->isdir(vfs,FileName); + return vfs->isdir(vfs, FileName); } #ifdef _WIN32 DWORD dwAtts = GetFileAttributes(FileName); @@ -94,10 +93,10 @@ static bool is_directory(const char *FileName) { } bool Yap_Exists(const char *f) { - VFS_t *vfs; - f = Yap_VFAlloc(f); - if ((vfs = vfs_owner(f))) { - return vfs->exists(vfs,f); + VFS_t *vfs; + f = Yap_VFAlloc(f); + if ((vfs = vfs_owner(f))) { + return vfs->exists(vfs, f); } #if _WIN32 if (_access(f, 0) == 0) @@ -108,7 +107,7 @@ bool Yap_Exists(const char *f) { return false; #elif HAVE_ACCESS if (access(f, F_OK) == 0) { - return true; + return true; } if (errno == EINVAL) { Yap_Error(SYSTEM_ERROR_INTERNAL, TermNil, "bad flags to access"); @@ -145,9 +144,9 @@ bool Yap_IsAbsolutePath(const char *p0, bool expand) { // verify first if expansion is needed: ~/ or $HOME/ const char *p = p0; bool nrc; - if (expand) { - p = expandVars(p0, LOCAL_FileNameBuf); - } + if (expand) { + p = expandVars(p0, LOCAL_FileNameBuf); + } #if _WIN32 || __MINGW32__ nrc = !PathIsRelative(p); #else @@ -345,7 +344,7 @@ static char *PrologPath(const char *Y, char *X) { return (char *)Y; } char virtual_cwd[YAP_FILENAME_MAX + 1]; - bool Yap_ChDir(const char *path) { +bool Yap_ChDir(const char *path) { bool rc = false; char qp[FILENAME_MAX + 1]; const char *qpath = Yap_AbsoluteFile(path, qp, true); @@ -369,10 +368,9 @@ char virtual_cwd[YAP_FILENAME_MAX + 1]; return rc; } - static const char *myrealpath(const char *path, char *out) { - int lvl = push_text_stack(); - #if _WIN32 + int lvl = push_text_stack(); +#if _WIN32 DWORD retval = 0; // notice that the file does not need to exist @@ -388,13 +386,13 @@ static const char *myrealpath(const char *path, char *out) { char *rc = realpath(path, NULL); if (rc) { - pop_text_stack(lvl); + pop_text_stack(lvl); return rc; } // rc = NULL; if (errno == ENOENT || errno == EACCES) { - char *base= Malloc(YAP_FILENAME_MAX + 1); - strncpy(base, path, YAP_FILENAME_MAX ); + char *base = Malloc(YAP_FILENAME_MAX + 1); + strncpy(base, path, YAP_FILENAME_MAX); rc = realpath(dirname(base), out); if (rc) { @@ -418,7 +416,7 @@ static const char *myrealpath(const char *path, char *out) { } #endif strcat(rc, b); - rc = pop_output_text_stack(lvl, rc); + rc = pop_output_text_stack(lvl, rc); return rc; } } @@ -426,7 +424,7 @@ static const char *myrealpath(const char *path, char *out) { #endif out = malloc(strlen(path) + 1); strcpy(out, path); - pop_text_stack(lvl); + pop_text_stack(lvl); return out; } @@ -957,97 +955,12 @@ static bool initSysPath(Term tlib, Term tcommons, bool dir_done, bool commons_done) { CACHE_REGS int len; - char *dir; + char *dir; -#if __WINDOWS__ - { - if ((dir = Yap_RegistryGetString("library")) && is_directory(dir)) { - dir_done = true; - if (!Yap_unify(tlib, MkAtomTerm(Yap_LookupAtom(dir)))) - return false; - } - if ((dir = Yap_RegistryGetString("prolog_commons")) && is_directory(dir)) { - if (!Yap_unify(tcommons, MkAtomTerm(Yap_LookupAtom(dir)))) - return false; - commons_done = true; - } - } - if (dir_done && commons_done) - return true; -#endif + if (!Yap_unify(tlib, MkAtomTerm(Yap_LookupAtom(Yap_PLDIR)))) + return false; - if (!Yap_unify(tlib, MkAtomTerm(Yap_LookupAtom(Yap_PLDIR)))) - return false; - if (!commons_done) { - LOCAL_FileNameBuf[len] = '\0'; - strncat(LOCAL_FileNameBuf, "PrologCommons", YAP_FILENAME_MAX); - if (is_directory(LOCAL_FileNameBuf)) { - if (!Yap_unify(tcommons, MkAtomTerm(Yap_LookupAtom(LOCAL_FileNameBuf)))) - return FALSE; - } - commons_done = true; - } - if (dir_done && commons_done) - return TRUE; - -#if __WINDOWS__ - { - size_t buflen; - char *pt; - /* couldn't find it where it was supposed to be, - let's try using the executable */ - if (!GetModuleFileName(NULL, LOCAL_FileNameBuf, YAP_FILENAME_MAX)) { - Yap_WinError("could not find executable name"); - /* do nothing */ - return FALSE; - } - buflen = strlen(LOCAL_FileNameBuf); - pt = LOCAL_FileNameBuf + buflen; - while (*--pt != '\\') { - /* skip executable */ - if (pt == LOCAL_FileNameBuf) { - FileError(SYSTEM_ERROR_OPERATING_SYSTEM, TermNil, - "could not find executable name"); - /* do nothing */ - return FALSE; - } - } - while (*--pt != '\\') { - /* skip parent directory "bin\\" */ - if (pt == LOCAL_FileNameBuf) { - FileError(SYSTEM_ERROR_OPERATING_SYSTEM, TermNil, - "could not find executable name"); - /* do nothing */ - return FALSE; - } - } - /* now, this is a possible location for the ROOT_DIR, let's look for a share - * directory here */ - pt[1] = '\0'; - /* grosse */ - strncat(LOCAL_FileNameBuf, "lib\\Yap", YAP_FILENAME_MAX); - libdir = Yap_AllocCodeSpace(strlen(LOCAL_FileNameBuf) + 1); - strncpy(libdir, LOCAL_FileNameBuf, strlen(LOCAL_FileNameBuf) + 1); - pt[1] = '\0'; - strncat(LOCAL_FileNameBuf, "share", YAP_FILENAME_MAX); - } - strncat(LOCAL_FileNameBuf, "\\", YAP_FILENAME_MAX); - len = strlen(LOCAL_FileNameBuf); - strncat(LOCAL_FileNameBuf, "Yap", YAP_FILENAME_MAX); - if (!dir_done && is_directory(LOCAL_FileNameBuf)) { - if (!Yap_unify(tlib, MkAtomTerm(Yap_LookupAtom(LOCAL_FileNameBuf)))) - return FALSE; - dir_done = true; - } - LOCAL_FileNameBuf[len] = '\0'; - strncat(LOCAL_FileNameBuf, "PrologCommons", YAP_FILENAME_MAX); - if (!commons_done && is_directory(LOCAL_FileNameBuf)) { - if (!Yap_unify(tcommons, MkAtomTerm(Yap_LookupAtom(LOCAL_FileNameBuf)))) - return FALSE; - commons_done = true; - } -#endif - return dir_done && commons_done; + return Yap_unify(tcommons, MkAtomTerm(Yap_LookupAtom(Yap_COMMONSDIR))); } static Int libraries_directories(USES_REGS1) { @@ -1133,10 +1046,10 @@ int Yap_volume_header(char *file) { return volume_header(file); } const char *Yap_getcwd(char *cwd, size_t cwdlen) { if (virtual_cwd[0]) { - if (!cwd) { - cwd = malloc(cwdlen+1); + if (!cwd) { + cwd = malloc(cwdlen + 1); } - strcpy( cwd, virtual_cwd); + strcpy(cwd, virtual_cwd); return cwd; } #if _WIN32 || defined(__MINGW32__) @@ -1171,184 +1084,6 @@ static Int working_directory(USES_REGS1) { return Yap_ChDir(RepAtom(AtomOfTerm(t2))->StrOfAE); } -/** Yap_findFile(): tries to locate a file, no expansion should be performed/ - * - * - * @param isource the proper file - * @param idef the default name fothe file, ie, startup.yss - * @param root the prefix - * @param result the output - * @param access verify whether the file has access permission - * @param ftype saved state, object, saved file, prolog file - * @param expand_root expand $ ~, etc - * @param in_lib library file - * - * @return - */ -const char *Yap_findFile(const char *isource, const char *idef, - const char *iroot, char *result, bool access, - YAP_file_type_t ftype, bool expand_root, bool in_lib) { - - char *save_buffer = NULL; - char *root, *source; - int rc = FAIL_RESTORE; - int try = 0; - bool abspath = false; - - int lvl = push_text_stack(); - root = Malloc(YAP_FILENAME_MAX+1); - source= Malloc(YAP_FILENAME_MAX+1); - if (iroot && iroot[0]) - strcpy(root, iroot); - else - root[0] = 0; - if (isource && isource[0]) - strcpy(source, isource); - else - source[0] = 0; - //__android_log_print(ANDROID_LOG_ERROR, "YAPDroid " __FUNCTION__, - // "try=%d %s %s", try, isource, iroot) ; } - while (rc == FAIL_RESTORE) { - // means we failed this iteration - bool done = false; - // { CACHE_REGS - switch (try ++) { - case 0: // path or file name is given; - if (!source[0] && idef && idef[0]) { - strcpy(source, idef); - } - if (source[0]) { - abspath = Yap_IsAbsolutePath(source, expand_root); - } - if (!abspath && !root[0] && ftype == YAP_BOOT_PL) { - strcpy(root, YAP_PL_SRCDIR); - } - break; - case 1: // library directory is given in command line - if (in_lib && ftype == YAP_SAVED_STATE) { - if (iroot && iroot[0]) - strcpy(root, iroot); - else - root[0] = 0; - if (isource && isource[0]) - strcpy(source, isource); - else if (idef && idef[0]) - strcpy(source, idef); - else - source[0] = 0; - } else { - done = true; - } - break; - case 3: // use compilation variable YAPLIBDIR - if (in_lib) { - if (isource && isource[0]) - strcpy(source, isource); - else if (idef && idef[0]) - strcpy(source, idef); - else - source[0] = 0; - if (ftype == YAP_PL) { - strcpy(root,YAP_SHAREDIR); - } else if (ftype == YAP_BOOT_PL) { - strcpy(root, YAP_SHAREDIR); - strcat(root,"/pl"); - } else { - strcpy(root,YAP_LIBDIR); - } - } else - done = true; - break; - - case 4: // WIN stuff: registry -#if __WINDOWS - if (in_lib) { - const char *key = (ftype == YAP_PL || ftype == YAP_QLY ? "library" : "startup"); - strcpy( source, Yap_RegistryGetString(source) ); - root[0] = 0; - } else -#endif - done = true; - break; - - case 5: // search from the binary -#ifndef __ANDROID__ - { - done = true; - } break; -#endif - { - const char *pt = Yap_FindExecutable(); - - if (pt) { - if (ftype == YAP_BOOT_PL) { -#if __ANDROID__ - strcpy(root, "../../../files/Yap/pl"); -#else - root = "../../share/Yap/pl"; -#endif - } else { - strcpy(root, (ftype == YAP_SAVED_STATE || ftype == YAP_OBJ - ? "../../lib/Yap" - : "../../share/Yap")); - } - if (strcmp(root, iroot) == 0) { - done = true; - continue; - } - if (!save_buffer) { - save_buffer = Malloc(YAP_FILENAME_MAX + 1); - - save_buffer[0] = 0; - } - if (Yap_findFile(source, NULL, root, save_buffer, access, ftype, - expand_root, in_lib)) - strcpy(root, save_buffer); - else - done = true; - } else { - done = true; - } - if (isource && isource[0]) - strcpy(source, isource); - else if (idef && idef[0]) - strcpy(source, idef); - else - source[0] = 0; - } - break; - case 6: // default, try current directory - if (!isource && ftype == YAP_SAVED_STATE) - strcpy(source, idef); - root[0] = 0; - break; - default: - pop_text_stack(lvl); - return NULL; - } - - if (done) - continue; - // { CACHE_REGS __android_log_print(ANDROID_LOG_ERROR, __FUNCTION__, - // "root= %s %s ", root, source) ; } - const char *work = PlExpandVars(source, root, result); - - - // expand names in case you have - // to add a prefix - if (!access || Yap_Exists(work)) { - work = pop_output_text_stack(lvl,work); - return work; // done - } else if (abspath) { - pop_text_stack(lvl); - return NULL; - } - } - pop_text_stack(lvl); - - return NULL; -} - static Int true_file_name(USES_REGS1) { Term t = Deref(ARG1); const char *s; @@ -1414,10 +1149,10 @@ static Int true_file_name3(USES_REGS1) { } root = RepAtom(AtomOfTerm(t2))->StrOfAE; } - if (!Yap_findFile(RepAtom(AtomOfTerm(t))->StrOfAE, NULL, root, - LOCAL_FileNameBuf, false, YAP_PL, false, false)) + char tmp[YAP_FILENAME_MAX + 1]; + if (!Yap_AbsoluteFile(RepAtom(AtomOfTerm(t))->StrOfAE, tmp, true)) return FALSE; - return Yap_unify(ARG3, MkAtomTerm(Yap_LookupAtom(LOCAL_FileNameBuf))); + return Yap_unify(ARG3, MkAtomTerm(Yap_LookupAtom(tmp))); } /* Executes $SHELL under Prolog */ @@ -1644,8 +1379,8 @@ static Int p_mv(USES_REGS1) { /* rename(+OldName,+NewName) */ newname = Yap_VFAlloc((RepAtom(AtomOfTerm(t2)))->StrOfAE); if ((r = link(oldname, newname)) == 0 && (r = unlink(oldname)) != 0) unlink(newname); - free(oldname); - free(newname); + free(oldname); + free(newname); if (r != 0) { #if HAVE_STRERROR Yap_Error(SYSTEM_ERROR_OPERATING_SYSTEM, t2, "%s in rename(%s,%s)", @@ -1771,18 +1506,18 @@ static Int p_host_type(USES_REGS1) { } static Int p_yap_home(USES_REGS1) { - Term out; + Term out; - out = MkAtomTerm(Yap_LookupAtom(Yap_ROOTDIR)); - return Yap_unify(out, ARG1); + out = MkAtomTerm(Yap_LookupAtom(Yap_ROOTDIR)); + return Yap_unify(out, ARG1); } static Int p_yap_paths(USES_REGS1) { Term out1, out2, out3; - out1 = MkAtomTerm(Yap_LookupAtom(Yap_LIBDIR)); - out2 = MkAtomTerm(Yap_LookupAtom(Yap_SHAREDIR)); - out3 = MkAtomTerm(Yap_LookupAtom(Yap_BINDIR)); + out1 = MkAtomTerm(Yap_LookupAtom(Yap_LIBDIR)); + out2 = MkAtomTerm(Yap_LookupAtom(Yap_SHAREDIR)); + out3 = MkAtomTerm(Yap_LookupAtom(Yap_BINDIR)); return (Yap_unify(out1, ARG1) && Yap_unify(out2, ARG2) && Yap_unify(out3, ARG3)); @@ -1864,7 +1599,7 @@ static Int p_win32(USES_REGS1) { } static Int p_ld_path(USES_REGS1) { - return Yap_unify(ARG1, MkAtomTerm(Yap_LookupAtom(YAP_DLLDIR))); + return Yap_unify(ARG1, MkAtomTerm(Yap_LookupAtom(Yap_DLLDIR))); } static Int p_address_bits(USES_REGS1) { diff --git a/pl/CMakeLists.txt b/pl/CMakeLists.txt index 01d1ae27d..a89cc0893 100644 --- a/pl/CMakeLists.txt +++ b/pl/CMakeLists.txt @@ -7,6 +7,7 @@ set(PL_BOOT_SOURCES attributes.yap boot.yap bootlists.yap + bootutils.yap callcount.yap checker.yap consult.yap @@ -84,6 +85,9 @@ install(FILES ${CMAKE_TOP_BINARY_DIR}/${YAP_STARTUP} endif() -install(FILES ${PL_SOURCES} +install(FILES ${PL_BOOT_SOURCES} DESTINATION ${libpl}/pl ) +install(FILES ../library/ypp.yap + DESTINATION ${libpl}/library + ) diff --git a/pl/arith.yap b/pl/arith.yap index e78de29c9..a6b5a78d9 100644 --- a/pl/arith.yap +++ b/pl/arith.yap @@ -22,7 +22,7 @@ :- system_module( '$_arith', [compile_expressions/0, expand_exprs/2, plus/3, - succ/2], ['$c_built_in'/3]). + succ/2], ['$c_built_in'/4]). :- private( [do_c_built_in/3, do_c_built_metacall/3, @@ -86,7 +86,6 @@ expand_exprs(Old,New) :- After a call to this predicate, arithmetical expressions will be compiled. (see example below). This is the default behavior. */ - compile_expressions :- set_value('$c_arith',true). /** @pred do_not_compile_expressions diff --git a/pl/boot.yap b/pl/boot.yap index 61dbf470b..437f8cc98 100644 --- a/pl/boot.yap +++ b/pl/boot.yap @@ -1305,10 +1305,10 @@ not(G) :- \+ '$execute'(G). bootstrap(F) :- yap_flag(verbose_load, Old, silent), - open(F, read, Stream), - stream_property(Stream, [file_name(File)]), - '$start_consult'(consult, File, LC), - file_directory_name(File, Dir), + open(F, read, Stream), + stream_property(Stream, [file_name(File)]), + '$start_consult'(consult, File, LC), + file_directory_name(File, Dir), working_directory(OldD, Dir), ( current_prolog_flag(verbose_load, silent) diff --git a/pl/init.yap b/pl/init.yap index 8f744b173..b86d7c006 100644 --- a/pl/init.yap +++ b/pl/init.yap @@ -118,6 +118,7 @@ otherwise. :- compile_expressions. + :- bootstrap('bootutils.yap'). :- bootstrap('bootlists.yap'). :- bootstrap('consult.yap'). diff --git a/pl/load_foreign.yap b/pl/load_foreign.yap index d9a5626ea..0d2b58dbe 100644 --- a/pl/load_foreign.yap +++ b/pl/load_foreign.yap @@ -57,7 +57,7 @@ variable: + YAPLIBDIR if defined, or in the default library. - +available as YAP supports the SWI-Prolog interface to loading foreign code, the shlib package. */ diff --git a/pl/meta.yap b/pl/meta.yap index 77dc0d0f8..5c3691422 100644 --- a/pl/meta.yap +++ b/pl/meta.yap @@ -30,6 +30,9 @@ meta_predicate declaration % directive now meta_predicate Ps :- $meta_predicate(Ps). +:- use_system_module( '$_arith', ['$c_built_in'/4]). + + :- dynamic prolog:'$meta_predicate'/4. :- multifile prolog:'$meta_predicate'/4, From 9a5681b2cb109cb13ea8081ff8ca59861ea803c5 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Sun, 10 Dec 2017 11:42:51 +0000 Subject: [PATCH 12/14] rpath --- C/blobs.c | 6 +- C/errors.c | 2 +- C/stack.c | 2 +- C/yap-args.c | 296 ++++++++++++++++++++++----------------------- CMakeLists.txt | 2 +- H/YapFlags.h | 4 +- H/YapGFlagInfo.h | 2 +- H/Yapproto.h | 3 + include/YapError.h | 8 +- os/sysbits.c | 2 - os/yapio.h | 4 - 11 files changed, 165 insertions(+), 166 deletions(-) diff --git a/C/blobs.c b/C/blobs.c index 54c61e38e..d04b5e083 100644 --- a/C/blobs.c +++ b/C/blobs.c @@ -17,7 +17,11 @@ /* for freeBSD9.1 */ #define _WITH_DPRINTF -#ifdef __APPLE__ +#ifdef CONDA_BUILD +#undef HAVE_FMEMOPEN +#endif + +#ifdef __APPLE__ #include "fmemopen.h" #endif diff --git a/C/errors.c b/C/errors.c index eba50848a..a7ad9b6d2 100755 --- a/C/errors.c +++ b/C/errors.c @@ -310,7 +310,7 @@ void Yap_pushErrorContext(yap_error_descriptor_t *new_error) { } yap_error_descriptor_t *Yap_popErrorContext(void) { - struct yap_error_descriptor_t *new_error = LOCAL_ActiveError; + yap_error_descriptor_t *new_error = LOCAL_ActiveError; LOCAL_ActiveError = LOCAL_ActiveError->top_error; return new_error; } diff --git a/C/stack.c b/C/stack.c index 2a96f5a20..6f3761b66 100644 --- a/C/stack.c +++ b/C/stack.c @@ -1099,7 +1099,7 @@ bool set_clause_info(yamop *codeptr, PredEntry *pp) { } LOCAL_ActiveError->prologPredModule = (pp->ModuleOfPred ? RepAtom(AtomOfTerm(pp->ModuleOfPred))->StrOfAE : "prolog"); - LOCAL_ActiveError->prologPredFile = RepAtom(pp->src.OwnerFile->StrOfAE); + LOCAL_ActiveError->prologPredFile = RepAtom(pp->src.OwnerFile)->StrOfAE; if (codeptr->opc == UNDEF_OPCODE) { LOCAL_ActiveError->prologPredFirstLine = 0; LOCAL_ActiveError->prologPredLine = 0; diff --git a/C/yap-args.c b/C/yap-args.c index dd894c189..70e4769a6 100755 --- a/C/yap-args.c +++ b/C/yap-args.c @@ -9,7 +9,7 @@ ************************************************************************** * * * File: Yap.C * Last - *Rev: + *Rev: * Mods: ** Comments: Yap's Main File: parse arguments * * * @@ -58,7 +58,7 @@ #include #endif -#ifndef YAP_ROOTDIR +#if HAVE_LIBGEN_H #include #endif @@ -67,74 +67,71 @@ const char *Yap_BINDIR, *Yap_ROOTDIR, *Yap_SHAREDIR, *Yap_LIBDIR, *Yap_DLLDIR, *Yap_PLDIR, *Yap_BOOTPLDIR, *Yap_BOOTSTRAPPLDIR, *Yap_COMMONSDIR, *Yap_STARTUP, *Yap_BOOTFILE; - static int yap_lineno = 0; /* do initial boot by consulting the file boot.yap */ static void do_bootfile(const char *b_file USES_REGS) { - Term t; - int boot_stream, osno; - Functor functor_query = Yap_MkFunctor(Yap_LookupAtom("?-"), 1); - Functor functor_command1 = Yap_MkFunctor(Yap_LookupAtom(":-"), 1); + Term t; + int boot_stream, osno; + Functor functor_query = Yap_MkFunctor(Yap_LookupAtom("?-"), 1); + Functor functor_command1 = Yap_MkFunctor(Yap_LookupAtom(":-"), 1); - /* consult boot.pl */ - char *full = malloc(YAP_FILENAME_MAX + 1); - full[0] = '\0'; - /* the consult mode does not matter here, really */ - boot_stream = YAP_InitConsult(YAP_BOOT_MODE, b_file, full, &osno); - if (boot_stream < 0) { - fprintf(stderr, "[ FATAL ERROR: could not open boot_stream %s ]\n", - b_file); - exit(1); + /* consult boot.pl */ + char *full = malloc(YAP_FILENAME_MAX + 1); + full[0] = '\0'; + /* the consult mode does not matter here, really */ + boot_stream = YAP_InitConsult(YAP_BOOT_MODE, b_file, full, &osno); + if (boot_stream < 0) { + fprintf(stderr, "[ FATAL ERROR: could not open boot_stream %s ]\n", b_file); + exit(1); + } + free(full); + setAtomicGlobalPrologFlag(RESOURCE_DATABASE_FLAG, + MkAtomTerm(GLOBAL_Stream[boot_stream].name)); + do { + CACHE_REGS + YAP_Reset(YAP_FULL_RESET); + Yap_StartSlots(); + t = YAP_ReadClauseFromStream(boot_stream); + + // Yap_DebugPlWriteln(t); + if (t == 0) { + fprintf(stderr, + "[ SYNTAX ERROR: while parsing boot_stream %s at line %d ]\n", + b_file, yap_lineno); + } else if (YAP_IsVarTerm(t) || t == TermNil) { + fprintf(stderr, "[ line %d: term cannot be compiled ]", yap_lineno); + } else if (YAP_IsPairTerm(t)) { + fprintf(stderr, "[ SYSTEM ERROR: consult not allowed in boot file ]\n"); + fprintf(stderr, "error found at line %d and pos %d", yap_lineno, + fseek(GLOBAL_Stream[boot_stream].file, 0L, SEEK_CUR)); + } else if (IsApplTerm(t) && (FunctorOfTerm(t) == functor_query || + FunctorOfTerm(t) == functor_command1)) { + YAP_RunGoalOnce(ArgOfTerm(1, t)); + } else { + Term ts[2]; + char *ErrorMessage; + Functor fun = Yap_MkFunctor(Yap_LookupAtom("$prepare_clause"), 2); + PredEntry *pe = RepPredProp(PredPropByFunc(fun, PROLOG_MODULE)); + + if (pe->OpcodeOfPred != UNDEF_OPCODE && pe->OpcodeOfPred != FAIL_OPCODE) { + ts[0] = t; + RESET_VARIABLE(ts + 1); + if (YAP_RunGoal(Yap_MkApplTerm(fun, 2, ts))) + t = ts[1]; + } + ErrorMessage = YAP_CompileClause(t); + if (ErrorMessage) { + fprintf(stderr, "%s", ErrorMessage); + } } - free(full); - setAtomicGlobalPrologFlag( - RESOURCE_DATABASE_FLAG, - MkAtomTerm(GLOBAL_Stream[boot_stream].name)); - do { - CACHE_REGS - YAP_Reset(YAP_FULL_RESET); - Yap_StartSlots(); - t = YAP_ReadClauseFromStream(boot_stream); - - // Yap_DebugPlWriteln(t); - if (t == 0) { - fprintf(stderr, - "[ SYNTAX ERROR: while parsing boot_stream %s at line %d ]\n", - b_file, yap_lineno); - } else if (YAP_IsVarTerm(t) || t == TermNil) { - fprintf(stderr, "[ line %d: term cannot be compiled ]", yap_lineno); - } else if (YAP_IsPairTerm(t)) { - fprintf(stderr, "[ SYSTEM ERROR: consult not allowed in boot file ]\n"); - fprintf(stderr, "error found at line %d and pos %d", yap_lineno, - fseek(GLOBAL_Stream[boot_stream].file, 0L, SEEK_CUR)); - } else if (IsApplTerm(t) && (FunctorOfTerm(t) == functor_query || - FunctorOfTerm(t) == functor_command1)) { - YAP_RunGoalOnce(ArgOfTerm(1, t)); - } else { - Term ts[2]; - char *ErrorMessage; - Functor fun = Yap_MkFunctor(Yap_LookupAtom("$prepare_clause"), 2); - PredEntry *pe = RepPredProp(PredPropByFunc(fun, PROLOG_MODULE)); - - if (pe->OpcodeOfPred != UNDEF_OPCODE && pe->OpcodeOfPred != FAIL_OPCODE) { - ts[0] = t; - RESET_VARIABLE(ts + 1); - if (YAP_RunGoal(Yap_MkApplTerm(fun, 2, ts))) - t = ts[1]; - } - ErrorMessage = YAP_CompileClause(t); - if (ErrorMessage) { - fprintf(stderr, "%s", ErrorMessage); - } - } - } while (t != TermEof); + } while (t != TermEof); BACKUP_MACHINE_REGS(); - - YAP_EndConsult(boot_stream, &osno); + + YAP_EndConsult(boot_stream, &osno); #if DEBUG - if (Yap_output_msg) - fprintf(stderr, "Boot loaded\n"); + if (Yap_output_msg) + fprintf(stderr, "Boot loaded\n"); #endif } @@ -187,52 +184,44 @@ const char *plnames[] = {"@YapPrologBootFile", YAP_BOOTFILE, "boot.yap", NULL}; char *location(YAP_init_args *iap, const char *inp, char *out) { if (inp == NULL || inp[0] == '\0') { return NULL; - } else if (inp[0] == '(') { - if (strstr(inp + 1, "root") == inp + 1) { - if (!Yap_ROOTDIR || Yap_ROOTDIR[0] == '\0') { - return NULL; - } + } + out[0] = '\0'; + if (inp[0] == '(') { + if (strstr(inp + 1, "root") == inp + 1 && Yap_ROOTDIR && + Yap_ROOTDIR[0] != '\0') { strcpy(out, Yap_ROOTDIR); strcat(out, "/"); strcat(out, inp + strlen("(root)")); - } else if (strstr(inp + 1, "bin") == inp + 1) { - if (!Yap_BINDIR || Yap_BINDIR[0] == '\0') { - return NULL; - } + } else if (strstr(inp + 1, "bin") == inp + 1 && Yap_BINDIR && + Yap_BINDIR[0] != '\0') { strcpy(out, Yap_BINDIR); strcat(out, "/"); strcat(out, inp + strlen("(bin)")); - } else if (strstr(inp + 1, "lib") == inp + 1) { - if (!Yap_LIBDIR || Yap_LIBDIR[0] == '\0') { - return NULL; - } + } else if (strstr(inp + 1, "lib") == inp + 1 && Yap_LIBDIR && + Yap_LIBDIR[0] != '\0') { strcpy(out, Yap_LIBDIR); strcat(out, "/"); strcat(out, inp + strlen("(lib)")); - } else if (strstr(inp + 1, "share") == inp + 1) { - if (!Yap_SHAREDIR || Yap_SHAREDIR[0] == '\0') { - return NULL; - } + } else if (strstr(inp + 1, "share") == inp + 1 && Yap_SHAREDIR && + Yap_SHAREDIR[0] != '\0') { strcpy(out, Yap_SHAREDIR); strcat(out, "/"); strcat(out, inp + strlen("(share)")); - } else if (strstr(inp + 1, "pl") == inp + 1) { - if (!Yap_PLDIR || Yap_PLDIR[0] == '\0') { - return NULL; - } + } else if (strstr(inp + 1, "pl") == inp + 1 && Yap_PLDIR && + Yap_PLDIR[0] != '\0') { strcpy(out, Yap_PLDIR); strcat(out, "/"); strcat(out, inp + strlen("(pl)")); - }else if (strstr(inp + 1, "execdir") == inp + 1) { - const char *ex = Yap_FindExecutable(); - if (ex == NULL) - return NULL; - strcpy(out, dirname(ex)); - strcat(out, "/"); - strcat(out, inp + strlen("(execdir)")); - } else - return NULL; - } else if (inp[0] == '@') { + } else if (strstr(inp + 1, "execdir") == inp + 1) { + char *buf = Malloc(YAP_FILENAME_MAX+1); + const char *ex = Yap_AbsoluteFile(Yap_FindExecutable(), buf, false); + if (ex != NULL) { + strcpy(out, dirname((char *)ex)); + strcat(out, "/"); + strcat(out, inp + strlen("(execdir)")); + } + } + } else if (inp[0] == '@') { if (strstr(inp + 1, "YapPrologBootFile") == inp + 1) { const char *tmp; @@ -244,84 +233,75 @@ char *location(YAP_init_args *iap, const char *inp, char *out) { if (tmp && tmp[0]) strcpy(out, tmp); } - return NULL; } else if (inp[0] == '$') { char *e; if ((e = getenv(inp + 1)) != NULL) { strcpy(out, e); } - return NULL; } else if (inp[0] == '?') { #if _WINDOWS_ char *e; if ((e = Yap_RegistryGetString(inp + 1)) != NULL) { strcpy(out, e); - } else + } #endif - return NULL; } else if (inp[0] == '~') { char *e; if ((e = getenv("HOME")) != NULL) { - strcpy(out, e); + if (inp[1] == '\0') { + strcpy(out, e); + } else if (inp[1] == '/') { + strcpy(out, e); + strcat(out, inp + 1); + } } - if (inp[1] != '\0') - strcat(out, inp + 1); } else if (inp[0] == '[') { - char *o = out; - const char *e; - if ((e = getenv("DESTDIR"))) { - strcpy(out, e); - o += strlen(e); - } - if (strstr(inp + 1, "root") == inp + 1) { + char *o = out; + const char *e; + if ((e = getenv("DESTDIR"))) { + strcpy(out, e); + o += strlen(e); + } + if (strstr(inp + 1, "root") == inp + 1) { #ifdef YAP_ROOTDIR - strcpy(o, YAP_ROOTDIR); -#else - return NULL; + strcpy(o, YAP_ROOTDIR); #endif - } else if (strstr(inp + 1, "lib") == inp + 1) { + } else if (strstr(inp + 1, "lib") == inp + 1) { #ifdef YAP_LIBDIR - strcpy(o, YAP_LIBDIR); -#else - return NULL; + strcpy(o, YAP_LIBDIR); #endif - } else if (strstr(inp + 1, "share") == inp + 1) { + } else if (strstr(inp + 1, "share") == inp + 1) { #ifdef YAP_SHAREDIR - strcpy(o, YAP_SHAREDIR); -#else - return NULL; + strcpy(o, YAP_SHAREDIR); #endif - } else if (strstr(inp + 1, "dll") == inp + 1) { + } else if (strstr(inp + 1, "dll") == inp + 1) { #ifdef YAP_DLLDIR - strcpy(o, YAP_DLLDIR); -#else - return NULL; + strcpy(o, YAP_DLLDIR); #endif - } else if (strstr(inp + 1, "pl") == inp + 1) { + } else if (strstr(inp + 1, "pl") == inp + 1) { #ifdef YAP_PLDIR - strcpy(o, YAP_PLDIR); -#else - return NULL; + strcpy(o, YAP_PLDIR); #endif - } else if (strstr(inp + 1, "commons") == inp + 1) { + } else if (strstr(inp + 1, "commons") == inp + 1) { #ifdef YAP_COMMONSDIR - strcpy(o, YAP_COMMONSDIR); -#else - return NULL; + strcpy(o, YAP_COMMONSDIR); #endif + } + } else { + strcpy(out, inp); } - } else { - strcpy(out, inp); + if (out[0]) { + return out; } - return out; + return NULL; } /** * @brief find default paths for main YAP variables * - * This function is called once at boot time to set the main paths; it searches - * a list of paths to instantiate a number of variables. Paths must be - * directories. + * This function is called once at boot time to set the main paths; it + * searches a list of paths to instantiate a number of variables. Paths must + * be directories. * * It treats the following variables as : * ROOTDIR, SHAREDIR, LIBDIR, EXECUTABLE @@ -363,12 +343,28 @@ static const char *find_directory(YAP_init_args *iap, const char *paths[], static void Yap_set_locations(YAP_init_args *iap) { #if CONDA_BUILD if (!getenv("DESTDIR")) { - char buf[YAP_FILENAME_MAX + 1]; + char *buf = Malloc( YAP_FILENAME_MAX + 1); const char *o = Yap_FindExecutable(); if (!o) return; - strcpy(buf, dirname(dirname(o))); - putenv("DESTDIR", buf)k + o = Yap_AbsoluteFile(o, buf, false); + Int i = strlen(o); + while (--i) { + if (Yap_dir_separator((int)o[i])) + break; + } + if (i == 0) { setenv("DESTDIR", "/", 1); } + else { + while (--i) { + if (Yap_dir_separator((int)o[i])) + break; + } + if (i == 0) { setenv("DESTDIR", "/", 1); } + else { setenv("DESTDIR", o, 1); } + } + + + setenv("DESTDIR", buf, 1); } #endif Yap_ROOTDIR = find_directory(iap, rootdirs, NULL); @@ -383,10 +379,14 @@ static void Yap_set_locations(YAP_init_args *iap) { Yap_BOOTFILE = find_directory(iap, bootstrappldirs, plnames); else Yap_BOOTFILE = find_directory(iap, bootpldirs, plnames); - setAtomicGlobalPrologFlag( HOME_FLAG, MkAtomTerm(Yap_LookupAtom(Yap_ROOTDIR))); - setAtomicGlobalPrologFlag( PROLOG_LIBRARY_DIRECTORY_FLAG,MkAtomTerm(Yap_LookupAtom(Yap_PLDIR))); - setAtomicGlobalPrologFlag( PROLOG_FOREIGN_DIRECTORY_FLAG, MkAtomTerm(Yap_LookupAtom(Yap_DLLDIR))); - + if (Yap_ROOTDIR) + setAtomicGlobalPrologFlag(HOME_FLAG, MkAtomTerm(Yap_LookupAtom(Yap_ROOTDIR))); + if (Yap_PLDIR) + setAtomicGlobalPrologFlag(PROLOG_LIBRARY_DIRECTORY_FLAG, + MkAtomTerm(Yap_LookupAtom(Yap_PLDIR))); + if (Yap_DLLDIR) + setAtomicGlobalPrologFlag(PROLOG_FOREIGN_DIRECTORY_FLAG, + MkAtomTerm(Yap_LookupAtom(Yap_DLLDIR))); } static void print_usage(void) { @@ -792,9 +792,8 @@ X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[], else { argc--; if (argc == 0) { - fprintf( - stderr, - " [ YAP unrecoverable error: missing goal for option 'z' ]\n"); + fprintf(stderr, " [ YAP unrecoverable error: missing goal for " + "option 'z' ]\n"); exit(EXIT_FAILURE); } argv++; @@ -851,9 +850,8 @@ X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[], else { argc--; if (argc == 0) { - fprintf( - stderr, - " [ YAP unrecoverable error: missing paths for option 'p' ]\n"); + fprintf(stderr, " [ YAP unrecoverable error: missing paths for " + "option 'p' ]\n"); exit(EXIT_FAILURE); } argv++; diff --git a/CMakeLists.txt b/CMakeLists.txt index 5df095e63..72fbd2158 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -547,7 +547,7 @@ set_property(DIRECTORY PROPERTY CXX_STANDARD 11) # add the automatically determined parts of the RPATH # which point to directories outside the build tree to the install RPATH -# SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) +SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) # the RPATH to be used when installing, but only if it's not a system directory diff --git a/H/YapFlags.h b/H/YapFlags.h index 406d97a77..b9837678a 100644 --- a/H/YapFlags.h +++ b/H/YapFlags.h @@ -193,8 +193,8 @@ static inline Term options(Term inp) { return Yap_IsGroundTerm(inp) ? inp : TermZERO; } -static inline Term rootdir(Term inp) { - return MkAtomTerm(Yap_LookupAtom(Yap_ROOTDIR)); +static inline const char * rootdir(Term inp) { + return Yap_ROOTDIR; } // INLINE_ONLY inline EXTERN Term ok( Term inp ); diff --git a/H/YapGFlagInfo.h b/H/YapGFlagInfo.h index 0bb54e64c..dd2bf501d 100644 --- a/H/YapGFlagInfo.h +++ b/H/YapGFlagInfo.h @@ -236,7 +236,7 @@ process, namely, on choice-points. YAP_FLAG(GMP_VERSION_FLAG, "gmp_version", false, isatom, "4.8.12", NULL), YAP_FLAG(HALT_AFTER_CONSULT_FLAG, "halt_after_consult", false, booleanFlag, "false", NULL), - YAP_FLAG(HOME_FLAG, "home", false, isatom, rootdir, NULL), /**< home ` + YAP_FLAG(HOME_FLAG, "home", false, isatom, YAP_ROOTDIR, NULL), /**< home ` the root of the YAP installation, by default `/usr/local` in Unix or `c:\Yap` in Windows system. Can only be set at configure time diff --git a/H/Yapproto.h b/H/Yapproto.h index e8f8c5791..45a03b0cf 100755 --- a/H/Yapproto.h +++ b/H/Yapproto.h @@ -292,6 +292,9 @@ extern void Yap_InitInlines(void); extern int Yap_eq(Term, Term); /* iopreds.c */ +extern bool Yap_IsAbsolutePath(const char *p, bool); +extern Atom Yap_TemporaryFile(const char *prefix, int *fd); +extern const char *Yap_AbsoluteFile(const char *spec, char *obuf, bool expand); extern void Yap_InitPlIO( struct yap_boot_params *ts ); extern void Yap_InitBackIO(void); extern void Yap_InitIOPreds(void); diff --git a/include/YapError.h b/include/YapError.h index 526956b46..d2e907abb 100644 --- a/include/YapError.h +++ b/include/YapError.h @@ -178,7 +178,7 @@ INLINE_ONLY extern inline Term Yap_ensure_atom__(const char *fu, const char *fi, /// a Prolog goal that caused a bug - typedef struct error_prolog_source { + typedef struct yap_error_prolog_source { intptr_t prologPredCl; uintptr_t prologPredLine; uintptr_t prologPredFirstLine; @@ -189,10 +189,10 @@ INLINE_ONLY extern inline Term Yap_ensure_atom__(const char *fu, const char *fi, const char * prologPredFile; void *errorGoal; struct error_prolog_source *errorParent; - } error_prolog_source_t; + } yap_error_prolog_source_t; /// all we need to know about an error/throw - typedef struct error_descriptor { + typedef struct s_yap_error_descriptor { enum yap_error_status status; yap_error_class_number errorClass; const char * errorAsText; @@ -220,7 +220,7 @@ INLINE_ONLY extern inline Term Yap_ensure_atom__(const char *fu, const char *fi, uintptr_t rawErrorTerm, rawExtraErrorTerm; char *errorMsg; size_t errorMsgLen; - struct yap_error_descriptor *top_error; + struct s_yap_error_descriptor *top_error; } yap_error_descriptor_t; /// compatibility with existing code.. diff --git a/os/sysbits.c b/os/sysbits.c index 8697ca0cb..45d6732c8 100644 --- a/os/sysbits.c +++ b/os/sysbits.c @@ -954,8 +954,6 @@ static Int p_rmdir(USES_REGS1) { static bool initSysPath(Term tlib, Term tcommons, bool dir_done, bool commons_done) { CACHE_REGS - int len; - char *dir; if (!Yap_unify(tlib, MkAtomTerm(Yap_LookupAtom(Yap_PLDIR)))) return false; diff --git a/os/yapio.h b/os/yapio.h index 5a0173876..bd4cb1f9e 100644 --- a/os/yapio.h +++ b/os/yapio.h @@ -103,10 +103,6 @@ extern int Yap_growheap_in_parser(tr_fr_ptr *, TokEntry **, VarEntry **); extern int Yap_growstack_in_parser(tr_fr_ptr *, TokEntry **, VarEntry **); extern int Yap_growtrail_in_parser(tr_fr_ptr *, TokEntry **, VarEntry **); -extern bool Yap_IsAbsolutePath(const char *p, bool); -extern Atom Yap_TemporaryFile(const char *prefix, int *fd); -extern const char *Yap_AbsoluteFile(const char *spec, char *obuf, bool expand); - typedef enum mem_buf_source { MEM_BUF_MALLOC = 1, MEM_BUF_USER = 2 From d348e8c5630c5c5b013446e8ae4e71c955264af7 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Mon, 11 Dec 2017 03:36:21 +0000 Subject: [PATCH 13/14] ldd --- CMakeLists.txt | 51 +++++++++++++++---------- packages/python/swig/CMakeLists.txt | 3 +- packages/python/swig/__init__.py | 6 +++ packages/python/swig/yap4py/__init__.py | 38 ++++++++++-------- packages/swig/yap.i | 4 ++ 5 files changed, 64 insertions(+), 38 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 72fbd2158..1a8b6af40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -384,6 +384,36 @@ if (${C_COMPILER} MATCHES "Intel") set(HAVE_GCC 1) endif () +# rpath stuff, hopefully it works +# use, i.e. don't skip the full RPATH for the build tree +#SET(CMAKE_SKIP_BUILD_RPATH FALSE) + + +# when building, don't use the install RPATH already +# (but later on when installing) +#SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) + +# SET(CMAKE_INSTALL_FULL_RPATH ${CMAKE_TOP_BINARY_DIR}) + +# add the automatically determined parts of the RPATH +# which point to directories outside the build tree to the install RPATH +SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) + + +# the RPATH to be used when installing, but only if it's not a system directory +LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${libdir}" isSystemDir) + IF("${isSystemDir}" STREQUAL "-1") + SET(CMAKE_INSTALL_RPATH ${libdir}) + ENDIF("${isSystemDir}" STREQUAL "-1") + +IF(NOT WIN32 AND NOT APPLE) +LIST(APPEND CMAKE_INSTALL_RPATH \\$ORIGIN/../lib/Yap) +LIST(APPEND CMAKE_INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}) +LIST(APPEND CMAKE_INSTALL_RPATH \\$ORIGIN/../lib) +LIST(APPEND CMAKE_INSTALL_RPATH \\$ORIGIN/../../../lib) + +ENDIF() + # Model Specific if (HAVE_GCC) set_property(DIRECTORY APPEND PROPERTY COMPILE_OPTIONS -Wall) @@ -534,27 +564,6 @@ string(SUBSTRING ${CMAKE_SHARED_LIBRARY_SUFFIX} 1 -1 SO_EXT) set_property(DIRECTORY PROPERTY CXX_STANDARD 11) -# rpath stuff, hopefully it works -# use, i.e. don't skip the full RPATH for the build tree -#SET(CMAKE_SKIP_BUILD_RPATH FALSE) - - -# when building, don't use the install RPATH already -# (but later on when installing) -#SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) - -# SET(CMAKE_INSTALL_FULL_RPATH ${CMAKE_TOP_BINARY_DIR}) - -# add the automatically determined parts of the RPATH -# which point to directories outside the build tree to the install RPATH -SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) - - -# the RPATH to be used when installing, but only if it's not a system directory -LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${libdir}" isSystemDir) - IF("${isSystemDir}" STREQUAL "-1") - SET(CMAKE_INSTALL_RPATH ${libdir}) - ENDIF("${isSystemDir}" STREQUAL "-1") include_directories(H H/generated diff --git a/packages/python/swig/CMakeLists.txt b/packages/python/swig/CMakeLists.txt index 89ed2c122..c14661fea 100644 --- a/packages/python/swig/CMakeLists.txt +++ b/packages/python/swig/CMakeLists.txt @@ -6,7 +6,7 @@ INCLUDE(UseSWIG) include(FindPythonModule) list (APPEND pl_library ${CMAKE_CURRENT_SOURCE_DIR}/prolog/yapi.yap ) -set (PYTHON_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/yap4py/yapi.py ${CMAKE_CURRENT_SOURCE_DIR}/yap4py/__init__.py ${CMAKE_CURRENT_SOURCE_DIR}/yap4py/__main__.py) +set (PYTHON_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/yap4py/yapi.py ${CMAKE_CURRENT_SOURCE_DIR}/yap4py/__main__.py) SET_SOURCE_FILES_PROPERTIES(../../swig/yap.i PROPERTIES CPLUSPLUS ON) @@ -22,6 +22,7 @@ set(YAP4PY_PY yap4py/__init__.py yap4py/__main__.py yap4py/yapi.py) configure_file("setup.py.in" setup.py) configure_file("MANIFEST.in" ${CMAKE_CURRENT_BINARY_DIR}/MANIFEST.in) configure_file("YAP4PY.md" README.md) +configure_file(yap4py/__init__.py.in yap4py/__init__.py) INCLUDE_DIRECTORIES(${PYTHON_INCLUDE_PATH} ${CMAKE_CURRENT_BINARY_DIR}/yap4py/include ) diff --git a/packages/python/swig/__init__.py b/packages/python/swig/__init__.py index 077b47d22..3d74eafde 100644 --- a/packages/python/swig/__init__.py +++ b/packages/python/swig/__init__.py @@ -9,6 +9,8 @@ import platform global yap_lib_path yap_lib_path = os.path.dirname(__file__) +if @CONDA_BUILD@ == "1": + # do not do nothing if platform.system() == 'Windows': def load( dll ): dll = glob.glob(os.path.join(yap_lib_path,dll))[0] @@ -23,3 +25,7 @@ else: if platform.system() == 'Apple': load('libYap.dylib') load('libPy4YAP.dylib' ) + else: + load('libYap.os') + load('libPy4YAP.os' ) + \ No newline at end of file diff --git a/packages/python/swig/yap4py/__init__.py b/packages/python/swig/yap4py/__init__.py index 40fc7ce05..3a6bbafc8 100644 --- a/packages/python/swig/yap4py/__init__.py +++ b/packages/python/swig/yap4py/__init__.py @@ -6,20 +6,26 @@ import os.path import platform import sys -# global yap_lib_path -#yap_lib_path = os.path.dirname(__file__) +global yap_lib_path +yap_lib_path = os.path.dirname(__file__) -# if platform.system() == 'Windows': -# def load( dll ): -# dll = glob.glob(os.path.join(yap_lib_path,dll))[0] -# dll = os.path.abspath(dll) -# ctypes.WinDLL(dll) -# else: -# def load( l0 ): -# for i in ["@libdir@",""]: -# dll = os.path.concat(i,l0) -# dll = glob.glob(os.path.join(yap_lib_path,dll))[0] -# dll = os.path.abspath(dll) -# ctypes.CDLL(dll) -# # load('libYap*') -# # load('libPy4YAP*') +if platform.system() == 'Windows': + def load( dll ): + dll = glob.glob(os.path.join(yap_lib_path,dll))[0] + dll = os.path.abspath(dll) + ctypes.WinDLL(dll) +elseif 
platform.system() == 'Apple': + def load( dll ): + dll = glob.glob(os.path.join(yap_lib_path,dll))[0] + dll = os.path.abspath(dll) + ctypes.CDLL(dll) + load('libYap.dylib') + load('libPy4YAP.dylib') +else: + def load( dll ): + dll = glob.glob(os.path.join(yap_lib_path,dll))[0] + dll = os.path.abspath(dll) + ctypes.CDLL(dll) + load('libYap.so') + load('libPy4YAP.so') + \ No newline at end of file diff --git a/packages/swig/yap.i b/packages/swig/yap.i index ca5af193a..7825edaa0 100644 --- a/packages/swig/yap.i +++ b/packages/swig/yap.i @@ -2,7 +2,11 @@ /* example.i */ +#if PYTHONSWIG +%module(directors = "1", package="yap4py") yap +#else %module(directors = "1") yap +#endif // Language independent exception handler %include exception.i From 5be3fe4555b8479bfeef4150c3eb46b3940b82f5 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Mon, 11 Dec 2017 04:01:11 +0000 Subject: [PATCH 14/14] access to libs --- packages/python/swig/yap4py/__init__.py.in | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 packages/python/swig/yap4py/__init__.py.in diff --git a/packages/python/swig/yap4py/__init__.py.in b/packages/python/swig/yap4py/__init__.py.in new file mode 100644 index 000000000..cb93233af --- /dev/null +++ b/packages/python/swig/yap4py/__init__.py.in @@ -0,0 +1,31 @@ +import imp +import os +import ctypes +import glob +import os.path +import platform +import sys + +global yap_lib_path +yap_lib_path = "@CMAKE_INSTALL_FULL_LIBDIR@" + +if platform.system() == 'Windows': + def load( dll ): + dll = glob.glob(os.path.join(yap_lib_path,dll))[0] + dll = os.path.abspath(dll) + ctypes.WinDLL(dll) +elif platform.system() == 'Apple': + def load( dll ): + dll = glob.glob(os.path.join(yap_lib_path,dll))[0] + dll = os.path.abspath(dll) + ctypes.CDLL(dll) + load('libYap.dylib') + load('libPy4YAP.dylib') +else: + def load( dll ): + dll = glob.glob(os.path.join(yap_lib_path,dll))[0] + dll = os.path.abspath(dll) + ctypes.CDLL(dll) + load('libYap.so') + load('libPy4YAP.so') + \ No newline at end of file